Repository: cytoscape/cytoscape.js Branch: unstable Commit: 816e98077a64 Files: 704 Total size: 86.6 MB Directory structure: gitextract_g4imp50z/ ├── .babelrc ├── .browserslist ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── SECURITY.md │ ├── stale.yml │ └── workflows/ │ ├── feature-release.yml │ ├── md/ │ │ ├── Feature_Release.md │ │ ├── Manual_Release.md │ │ ├── Patch_Backport_Release.md │ │ ├── blog-issue-template.md │ │ └── repo-setup.md │ ├── patch-release.yml │ ├── scripts/ │ │ ├── merge_unstable_to_master.sh │ │ ├── new-feature-version.sh │ │ ├── new-patch-version.sh │ │ └── pre_release_test.sh │ └── tests.yml ├── .gitignore ├── .npmignore ├── .nvmrc ├── .size-snapshot.json ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── benchmark/ │ ├── a-star.js │ ├── add-remove-class.js │ ├── add-remove.js │ ├── add.js │ ├── all/ │ │ └── index.js │ ├── all-are-neighbors.js │ ├── all-are.js │ ├── any-same.js │ ├── bellman-ford.js │ ├── betweenness-centrality.js │ ├── bfs.js │ ├── classes.js │ ├── closeness-centrality.js │ ├── collection-creation.js │ ├── contains.js │ ├── degree-centrality.js │ ├── dfs.js │ ├── dijkstra.js │ ├── floyd-warshall.js │ ├── graphs/ │ │ ├── abcde.json │ │ ├── gal.json │ │ └── random.js │ ├── has-class.js │ ├── id-selector.js │ ├── init.js │ ├── is.js │ ├── karger-stein.js │ ├── kruskal.js │ ├── page-rank.js │ ├── same.js │ ├── selector-filter.js │ ├── single/ │ │ └── index.js │ └── suite/ │ └── index.js ├── bower.json ├── debug/ │ ├── FileSaver.js │ ├── add-remove.js │ ├── bind.js │ ├── compound.js │ ├── filter.js │ ├── gal.json │ ├── index.html │ ├── init.js │ ├── layout.js │ ├── livereload-setup.js │ ├── memory.html │ ├── notify.js │ ├── style.css │ ├── style.js │ ├── tests.js │ ├── toggles.js │ ├── view.js │ └── webgl/ │ ├── index.html │ ├── init.js │ ├── network-compound-nodes.json │ ├── network-curve.json │ ├── network-em-desktop-style.json │ ├── network-em-desktop.json │ ├── network-em-web.json │ ├── network-images.json │ ├── network-ndex-large-style.json │ ├── network-ndex-large.json │ ├── network-ndex-x-large-style.json │ ├── network-styles.json │ ├── network-white-matter-style.json │ ├── network-white-matter.json │ ├── networks.js │ ├── style.css │ └── upscaler.html ├── dist/ │ ├── cytoscape.cjs.js │ ├── cytoscape.esm.min.mjs │ ├── cytoscape.esm.mjs │ └── cytoscape.umd.js ├── documentation/ │ ├── CNAME │ ├── css/ │ │ ├── font-awesome.css │ │ ├── highlight/ │ │ │ ├── arta.css │ │ │ ├── ascetic.css │ │ │ ├── atelier-dune.dark.css │ │ │ ├── atelier-dune.light.css │ │ │ ├── atelier-forest.dark.css │ │ │ ├── atelier-forest.light.css │ │ │ ├── atelier-heath.dark.css │ │ │ ├── atelier-heath.light.css │ │ │ ├── atelier-lakeside.dark.css │ │ │ ├── atelier-lakeside.light.css │ │ │ ├── atelier-seaside.dark.css │ │ │ ├── atelier-seaside.light.css │ │ │ ├── brown_paper.css │ │ │ ├── dark.css │ │ │ ├── default.css │ │ │ ├── docco.css │ │ │ ├── far.css │ │ │ ├── foundation.css │ │ │ ├── github.css │ │ │ ├── googlecode.css │ │ │ ├── idea.css │ │ │ ├── ir_black.css │ │ │ ├── magula.css │ │ │ ├── mono-blue.css │ │ │ ├── monokai.css │ │ │ ├── monokai_sublime.css │ │ │ ├── obsidian.css │ │ │ ├── paraiso.dark.css │ │ │ ├── paraiso.light.css │ │ │ ├── pojoaque.css │ │ │ ├── railscasts.css │ │ │ ├── rainbow.css │ │ │ ├── school_book.css │ │ │ ├── solarized_dark.css │ │ │ ├── solarized_light.css │ │ │ ├── sunburst.css │ │ │ ├── tomorrow-night-blue.css │ │ │ ├── tomorrow-night-bright.css │ │ │ ├── tomorrow-night-eighties.css │ │ │ ├── tomorrow-night.css │ │ │ ├── tomorrow.css │ │ │ ├── vs.css │ │ │ ├── xcode.css │ │ │ └── zenburn.css │ │ ├── reset.css │ │ └── style.css │ ├── demos/ │ │ ├── 6000-elements/ │ │ │ ├── code.js │ │ │ ├── data.json │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── animated-bfs/ │ │ │ ├── code.js │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── architecture/ │ │ │ ├── code.js │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── background-image-containment/ │ │ │ ├── code.js │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── circle-layout/ │ │ │ ├── code.js │ │ │ ├── data.json │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── colajs-graph/ │ │ │ ├── code.js │ │ │ ├── cy-style.json │ │ │ ├── data.json │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── compound-nodes/ │ │ │ ├── code.js │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── concentric-layout/ │ │ │ ├── code.js │ │ │ ├── data.json │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── cose-bilkent-layout/ │ │ │ ├── code.js │ │ │ ├── data.json │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── cose-bilkent-layout-compound/ │ │ │ ├── code.js │ │ │ ├── data.json │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── cose-layout/ │ │ │ ├── code.js │ │ │ ├── cy-style.json │ │ │ ├── data.json │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── dagre-layout/ │ │ │ ├── code.js │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── edge-arrows/ │ │ │ ├── code.js │ │ │ ├── cy-style.json │ │ │ ├── data.json │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── edge-types/ │ │ │ ├── code.js │ │ │ ├── cy-style.json │ │ │ ├── data.json │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── fcose-gene/ │ │ │ ├── code.js │ │ │ ├── cy-style.json │ │ │ ├── data.json │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── genemania-export/ │ │ │ ├── code.js │ │ │ ├── data.json │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── gpu/ │ │ │ ├── code.js │ │ │ ├── data.json │ │ │ ├── enrichment-map.networks.json │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── grid-layout/ │ │ │ ├── code.js │ │ │ ├── data.json │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── images-breadthfirst-layout/ │ │ │ ├── code.js │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── initialisation/ │ │ │ ├── code.js │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── labels/ │ │ │ ├── code.js │ │ │ ├── cy-style.json │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── linkout-example/ │ │ │ ├── code.js │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── multiple-instances/ │ │ │ ├── code.js │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── multiple-windows/ │ │ │ ├── code.js │ │ │ ├── index.html │ │ │ ├── style.css │ │ │ └── windowIndex.html │ │ ├── node-types/ │ │ │ ├── code.js │ │ │ ├── cy-style.json │ │ │ ├── data.json │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── performance-tuning/ │ │ │ ├── code.js │ │ │ ├── data.json │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── pie-style/ │ │ │ ├── code.js │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── qtip-extension/ │ │ │ ├── code.js │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── radius-types/ │ │ │ ├── code.js │ │ │ ├── cy-style.json │ │ │ ├── data.json │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── spread-layout/ │ │ │ ├── code.js │ │ │ ├── data.json │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── stripe-style/ │ │ │ ├── code.js │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── tokyo-railways/ │ │ │ ├── index.html │ │ │ ├── style.css │ │ │ ├── tokyo-railways.cycss │ │ │ ├── tokyo-railways.js │ │ │ └── tokyo-railways.json │ │ ├── visual-style/ │ │ │ ├── code.js │ │ │ ├── index.html │ │ │ └── style.css │ │ └── wine-cheese-map/ │ │ └── index.html │ ├── docmaker.json │ ├── docmaker.mjs │ ├── font/ │ │ └── FontAwesome.otf │ ├── js/ │ │ ├── cytoscape.cjs.js │ │ ├── cytoscape.umd.js │ │ └── script.js │ ├── md/ │ │ ├── animation/ │ │ │ ├── apply.md │ │ │ ├── pause.md │ │ │ ├── play.md │ │ │ ├── progress.md │ │ │ ├── promise.md │ │ │ ├── reverse.md │ │ │ └── stop.md │ │ ├── animations.md │ │ ├── architecture.md │ │ ├── collection/ │ │ │ ├── aStar.md │ │ │ ├── absoluteComplement.md │ │ │ ├── addClass.md │ │ │ ├── affinityPropagation.md │ │ │ ├── algorithms.md │ │ │ ├── allAre.md │ │ │ ├── allAreNeighbors.md │ │ │ ├── animate.md │ │ │ ├── anySame.md │ │ │ ├── bellmanFord.md │ │ │ ├── betweennessCentrality.md │ │ │ ├── boundingBox.md │ │ │ ├── breadthFirstSearch.md │ │ │ ├── classes.md │ │ │ ├── closenessCentrality.md │ │ │ ├── closenessCentralityNormalized.md │ │ │ ├── codirectedEdges.md │ │ │ ├── collection.md │ │ │ ├── commonAncestors.md │ │ │ ├── compoundNodes.md │ │ │ ├── connectedEdges.md │ │ │ ├── connectedNodes.md │ │ │ ├── contains.md │ │ │ ├── controlPoints.md │ │ │ ├── data.md │ │ │ ├── degree.md │ │ │ ├── degreeCentrality.md │ │ │ ├── degreeCentralityNormalized.md │ │ │ ├── delay.md │ │ │ ├── depthFirstSearch.md │ │ │ ├── diff.md │ │ │ ├── difference.md │ │ │ ├── dijkstra.md │ │ │ ├── edgesTo.md │ │ │ ├── edgesWith.md │ │ │ ├── emit.md │ │ │ ├── eq.md │ │ │ ├── every.md │ │ │ ├── filter.md │ │ │ ├── flashClass.md │ │ │ ├── floydWarshall.md │ │ │ ├── forEach.md │ │ │ ├── fuzzyCMeans.md │ │ │ ├── grabify.md │ │ │ ├── group.md │ │ │ ├── hasClass.md │ │ │ ├── hierarchicalClustering.md │ │ │ ├── hierholzer.md │ │ │ ├── hopcroftTarjanBiconnected.md │ │ │ ├── incomers.md │ │ │ ├── intersection.md │ │ │ ├── is.md │ │ │ ├── json.md │ │ │ ├── jsons.md │ │ │ ├── kMeans.md │ │ │ ├── kMedoids.md │ │ │ ├── kargerStein.md │ │ │ ├── kruskal.md │ │ │ ├── layout.md │ │ │ ├── layoutDimensions.md │ │ │ ├── layoutPositions.md │ │ │ ├── lock.md │ │ │ ├── map.md │ │ │ ├── markovClustering.md │ │ │ ├── max.md │ │ │ ├── merge.md │ │ │ ├── midpoint.md │ │ │ ├── min.md │ │ │ ├── move.md │ │ │ ├── neighborhood.md │ │ │ ├── numericStyle.md │ │ │ ├── numericStyleUnits.md │ │ │ ├── on.md │ │ │ ├── once.md │ │ │ ├── one.md │ │ │ ├── outgoers.md │ │ │ ├── pageRank.md │ │ │ ├── panify.md │ │ │ ├── pannable.md │ │ │ ├── parallelEdges.md │ │ │ ├── position.md │ │ │ ├── positions.md │ │ │ ├── predecessors.md │ │ │ ├── promiseOn.md │ │ │ ├── reduce.md │ │ │ ├── remove.md │ │ │ ├── removeClass.md │ │ │ ├── removeCss.md │ │ │ ├── removeData.md │ │ │ ├── removeListener.md │ │ │ ├── removeScratch.md │ │ │ ├── renderedCss.md │ │ │ ├── restore.md │ │ │ ├── same.md │ │ │ ├── scratch.md │ │ │ ├── segmentPoints.md │ │ │ ├── select.md │ │ │ ├── selectify.md │ │ │ ├── shift.md │ │ │ ├── size.md │ │ │ ├── some.md │ │ │ ├── sort.md │ │ │ ├── source.md │ │ │ ├── sources.md │ │ │ ├── stop.md │ │ │ ├── style.md │ │ │ ├── successors.md │ │ │ ├── symmetricDifference.md │ │ │ ├── target.md │ │ │ ├── targets.md │ │ │ ├── tarjanStronglyConnected.md │ │ │ ├── toggleClass.md │ │ │ ├── ungrabify.md │ │ │ ├── union.md │ │ │ ├── unlock.md │ │ │ ├── unmerge.md │ │ │ ├── unpanify.md │ │ │ ├── unselect.md │ │ │ └── unselectify.md │ │ ├── core/ │ │ │ ├── add.md │ │ │ ├── animate.md │ │ │ ├── autolock.md │ │ │ ├── autoungrabify.md │ │ │ ├── autounselectify.md │ │ │ ├── batch.md │ │ │ ├── boxSelectionEnabled.md │ │ │ ├── center.md │ │ │ ├── collection.md │ │ │ ├── core.md │ │ │ ├── delay.md │ │ │ ├── destroy.md │ │ │ ├── elements.md │ │ │ ├── emit.md │ │ │ ├── extent.md │ │ │ ├── fit.md │ │ │ ├── forceRender.md │ │ │ ├── getElementById.md │ │ │ ├── init.md │ │ │ ├── isDestroyed.md │ │ │ ├── jpg.md │ │ │ ├── json.md │ │ │ ├── layout.md │ │ │ ├── load.md │ │ │ ├── mount.md │ │ │ ├── notation.md │ │ │ ├── offRender.md │ │ │ ├── on.md │ │ │ ├── onRender.md │ │ │ ├── one.md │ │ │ ├── pan.md │ │ │ ├── panBy.md │ │ │ ├── panningEnabled.md │ │ │ ├── png.md │ │ │ ├── promiseOn.md │ │ │ ├── remove.md │ │ │ ├── removeListener.md │ │ │ ├── reset.md │ │ │ ├── resize.md │ │ │ ├── stop.md │ │ │ ├── style.md │ │ │ ├── unmount.md │ │ │ ├── userPanningEnabled.md │ │ │ ├── userZoomingEnabled.md │ │ │ ├── viewport.md │ │ │ ├── zoom.md │ │ │ └── zoomingEnabled.md │ │ ├── demos.md │ │ ├── downloads.md │ │ ├── events.md │ │ ├── extensions.md │ │ ├── getting-started.md │ │ ├── intro.md │ │ ├── layout/ │ │ │ ├── emit.md │ │ │ ├── events.md │ │ │ ├── intro.md │ │ │ ├── manipulation.md │ │ │ ├── on.md │ │ │ ├── one.md │ │ │ ├── promiseOn.md │ │ │ ├── removeListener.md │ │ │ ├── run.md │ │ │ └── stop.md │ │ ├── layouts/ │ │ │ ├── breadthfirst.md │ │ │ ├── circle.md │ │ │ ├── concentric.md │ │ │ ├── cose.md │ │ │ ├── grid.md │ │ │ ├── null.md │ │ │ ├── preset.md │ │ │ └── random.md │ │ ├── links.md │ │ ├── notation.md │ │ ├── performance.md │ │ ├── search-question.md │ │ ├── selectors.md │ │ └── style.md │ ├── template.html │ ├── versions.json │ └── webgl.md ├── eslint.config.mjs ├── index.d.ts ├── license-update.mjs ├── package.json ├── playwright-page/ │ └── index.html ├── playwright-tests/ │ └── renderer.spec.js ├── playwright.config.js ├── rollup.config.mjs ├── snippets/ │ ├── animated-bfs.js │ ├── data/ │ │ └── performance-tuning.json │ ├── images.js │ ├── performance-tuning.js │ └── visual.js ├── src/ │ ├── animation.mjs │ ├── cjs.mjs │ ├── collection/ │ │ ├── algorithms/ │ │ │ ├── a-star.mjs │ │ │ ├── affinity-propagation.mjs │ │ │ ├── bellman-ford.mjs │ │ │ ├── betweenness-centrality.mjs │ │ │ ├── bfs-dfs.mjs │ │ │ ├── closeness-centrality.mjs │ │ │ ├── clustering-distances.mjs │ │ │ ├── degree-centrality.mjs │ │ │ ├── dijkstra.mjs │ │ │ ├── floyd-warshall.mjs │ │ │ ├── hierarchical-clustering.mjs │ │ │ ├── hierholzer.mjs │ │ │ ├── hopcroft-tarjan-biconnected.mjs │ │ │ ├── index.mjs │ │ │ ├── k-clustering.mjs │ │ │ ├── karger-stein.mjs │ │ │ ├── kruskal.mjs │ │ │ ├── markov-clustering.mjs │ │ │ ├── page-rank.mjs │ │ │ └── tarjan-strongly-connected.mjs │ │ ├── animation.mjs │ │ ├── cache-traversal-call.mjs │ │ ├── class.mjs │ │ ├── comparators.mjs │ │ ├── compounds.mjs │ │ ├── data.mjs │ │ ├── degree.mjs │ │ ├── dimensions/ │ │ │ ├── bounds.mjs │ │ │ ├── edge-points.mjs │ │ │ ├── index.mjs │ │ │ ├── position.mjs │ │ │ └── width-height.mjs │ │ ├── element.mjs │ │ ├── events.mjs │ │ ├── filter.mjs │ │ ├── group.mjs │ │ ├── index.mjs │ │ ├── iteration.mjs │ │ ├── layout.mjs │ │ ├── style.mjs │ │ ├── switch-functions.mjs │ │ ├── traversing.mjs │ │ └── zsort.mjs │ ├── core/ │ │ ├── add-remove.mjs │ │ ├── animation/ │ │ │ ├── cubic-bezier.mjs │ │ │ ├── ease.mjs │ │ │ ├── easings.mjs │ │ │ ├── index.mjs │ │ │ ├── spring.mjs │ │ │ ├── start.mjs │ │ │ ├── step-all.mjs │ │ │ └── step.mjs │ │ ├── data.mjs │ │ ├── events.mjs │ │ ├── export.mjs │ │ ├── index.mjs │ │ ├── layout.mjs │ │ ├── notification.mjs │ │ ├── renderer.mjs │ │ ├── search.mjs │ │ ├── style.mjs │ │ └── viewport.mjs │ ├── define/ │ │ ├── animation.mjs │ │ ├── data.mjs │ │ ├── events.mjs │ │ └── index.mjs │ ├── emitter.mjs │ ├── event.mjs │ ├── extension.mjs │ ├── extensions/ │ │ ├── index.mjs │ │ ├── layout/ │ │ │ ├── breadthfirst.mjs │ │ │ ├── circle.mjs │ │ │ ├── concentric.mjs │ │ │ ├── cose.mjs │ │ │ ├── grid.mjs │ │ │ ├── index.mjs │ │ │ ├── null.mjs │ │ │ ├── preset.mjs │ │ │ └── random.mjs │ │ └── renderer/ │ │ ├── base/ │ │ │ ├── arrow-shapes.mjs │ │ │ ├── coord-ele-math/ │ │ │ │ ├── coords.mjs │ │ │ │ ├── edge-arrows.mjs │ │ │ │ ├── edge-control-points.mjs │ │ │ │ ├── edge-endpoints.mjs │ │ │ │ ├── edge-projection.mjs │ │ │ │ ├── index.mjs │ │ │ │ ├── labels.mjs │ │ │ │ ├── nodes.mjs │ │ │ │ ├── rendered-style.mjs │ │ │ │ └── z-ordering.mjs │ │ │ ├── images.mjs │ │ │ ├── index.mjs │ │ │ ├── load-listeners.mjs │ │ │ ├── node-shapes.mjs │ │ │ └── redraw.mjs │ │ ├── canvas/ │ │ │ ├── arrow-shapes.mjs │ │ │ ├── drawing-edges.mjs │ │ │ ├── drawing-elements.mjs │ │ │ ├── drawing-images.mjs │ │ │ ├── drawing-label-text.mjs │ │ │ ├── drawing-nodes.mjs │ │ │ ├── drawing-redraw.mjs │ │ │ ├── drawing-shapes.mjs │ │ │ ├── ele-texture-cache-lookup.mjs │ │ │ ├── ele-texture-cache.mjs │ │ │ ├── export-image.mjs │ │ │ ├── index.mjs │ │ │ ├── layered-texture-cache.mjs │ │ │ ├── node-shapes.mjs │ │ │ ├── texture-cache-defs.mjs │ │ │ └── webgl/ │ │ │ ├── atlas.mjs │ │ │ ├── drawing-elements-webgl.mjs │ │ │ ├── drawing-redraw-webgl.mjs │ │ │ ├── fxaa-upscaler.mjs │ │ │ ├── misc-upscaler.js │ │ │ ├── shader-sdf.mjs │ │ │ └── webgl-util.mjs │ │ ├── index.mjs │ │ └── null/ │ │ └── index.mjs │ ├── heap.mjs │ ├── index.mjs │ ├── is.mjs │ ├── map.mjs │ ├── math.mjs │ ├── promise.mjs │ ├── round.mjs │ ├── selector/ │ │ ├── data.mjs │ │ ├── expressions.mjs │ │ ├── index.mjs │ │ ├── matching.mjs │ │ ├── new-query.mjs │ │ ├── parse.mjs │ │ ├── query-type-match.mjs │ │ ├── state.mjs │ │ ├── tokens.mjs │ │ └── type.mjs │ ├── set.mjs │ ├── style/ │ │ ├── apply.mjs │ │ ├── bypass.mjs │ │ ├── container.mjs │ │ ├── get-for-ele.mjs │ │ ├── index.mjs │ │ ├── json.mjs │ │ ├── parse.mjs │ │ ├── properties.mjs │ │ └── string-sheet.mjs │ ├── stylesheet.mjs │ ├── test.mjs │ ├── util/ │ │ ├── colors.mjs │ │ ├── extend.mjs │ │ ├── hash.mjs │ │ ├── index.mjs │ │ ├── maps.mjs │ │ ├── memoize.mjs │ │ ├── position.mjs │ │ ├── regex.mjs │ │ ├── sort.mjs │ │ ├── strings.mjs │ │ └── timing.mjs │ ├── version.mjs │ └── window.mjs ├── test/ │ ├── collection-affinity-propagation.mjs │ ├── collection-algorithms.mjs │ ├── collection-astar-edges.mjs │ ├── collection-astar.mjs │ ├── collection-building-and-filtering.mjs │ ├── collection-comparison.mjs │ ├── collection-compound-nodes.mjs │ ├── collection-data.mjs │ ├── collection-fuzzy-c-means.mjs │ ├── collection-graph-manipulation.mjs │ ├── collection-hierarchical.mjs │ ├── collection-hierholzer.mjs │ ├── collection-hopcroft-tarjan-biconnected.mjs │ ├── collection-iteration.mjs │ ├── collection-k-means.mjs │ ├── collection-k-medoids.mjs │ ├── collection-markov-clustering.mjs │ ├── collection-metadata.mjs │ ├── collection-position-and-dimensions.mjs │ ├── collection-selection.mjs │ ├── collection-style.mjs │ ├── collection-tarjan-strongly-connected.mjs │ ├── collection-traversing.mjs │ ├── core-export.mjs │ ├── core-graph-manipulation.mjs │ ├── core-init.mjs │ ├── events.mjs │ ├── extensions.mjs │ ├── modules/ │ │ ├── emitter.mjs │ │ ├── math.mjs │ │ ├── util.mjs │ │ └── webgl-atlas.mjs │ ├── requires/ │ │ └── foo.mjs │ ├── selectors.mjs │ └── style-string-sheet.mjs ├── tests-examples/ │ └── demo-todo-app.spec.js └── update-imports.mjs ================================================ FILE CONTENTS ================================================ ================================================ FILE: .babelrc ================================================ { "presets": [ ["@babel/preset-env", { "modules": false }] ] } ================================================ FILE: .browserslist ================================================ ie 9-11 firefox >= 4 chrome >= 23 > 1% node >= 0.10 last 2 major versions since 2012 ================================================ FILE: .github/ISSUE_TEMPLATE/bug_report.md ================================================ --- name: Bug report about: Let us know about a bug title: '' labels: bug assignees: '' --- **Before you post** A request for help or a request for a how-to should be directed to [Phind]([url](https://www.phind.com/search?c=I%27m%20using%20the%20Cytoscape.js%20graph%20theory%20JS%20library.&q=How%20do%20I%20create%20a%20graph%20in%20my%20HTML%20page)). If your issue pertains to an extension, your issue should be filed in that extension's repository -- not here. **Environment info** - Cytoscape.js version : - Browser/Node.js & version : **Current (buggy) behaviour** _What does the bug do?_ **Desired behaviour** _What do you expect Cytoscape.js to do instead?_ **Minimum steps to reproduce** _What do you need to do to reproduce the issue?_ _Fork/clone this JSBin demo and reproduce your issue so that your issue can be addressed quickly and effectively:_ 1. Go to our base JSBin: http://jsbin.com/fiqugiq 2. Click the 'Edit in JSBin' button in the top-right corner. 3. Click File > Clone to make your own copy of the demo (with its own unique URL) that you can edit. 4. Click the yellow 'Login or Register' button at the top-right corner so that your JSBin persists longer-term. 5. Log in with your GitHub account. 6. Edit the JSBin to reproduce your issue. 7. When you're finished editing, click 'File > Save snapshot` (command + s) to save your edits. 8. Post the link to your JSBin here. **For reviewers** _Reviewers should ensure that the following tasks are carried out for incorporated issues:_ - [ ] Ensure that the reporter has included a reproducible demo. They can easily fork this JSBin demo: http://jsbin.com/fiqugiq - [ ] The issue has been associated with a corresponding [milestone](https://github.com/cytoscape/cytoscape.js/milestones). - [ ] The commits have been incorporated into the corresponding branches. Bug-fix patches go on - [ ] `master` and - [ ] `unstable`. - [ ] The issue has been labelled as a [`bug`](https://github.com/cytoscape/cytoscape.js/labels/bug), if necessary. ================================================ FILE: .github/ISSUE_TEMPLATE/feature_request.md ================================================ --- name: Feature request about: Suggest an idea for something new title: '' labels: '' assignees: '' --- **Description of new feature** _What should the new feature do? For visual features, include an image/mockup of the expected output._ **Motivation for new feature** _Describe your use case for this new feature._ **For reviewers** _Reviewers should ensure that the following tasks are carried out for incorporated issues:_ - [ ] Ensure that the reporter has adequately described their idea. If not, elicit more information about the use case. You should iteratively build a spec together. - [ ] Ensure that the issue is a good fit for the core library. Some things are best done in extensions (e.g. UI-related features that aren't style-related). Some things are best done by app authors themselves -- instead of in Cytoscape libraries. - [ ] The issue has been associated with a corresponding [milestone](https://github.com/cytoscape/cytoscape.js/milestones). - [ ] The commits have been incorporated into the `unstable` branch via pull request. The corresponding pull request is cross-referenced. ================================================ FILE: .github/PULL_REQUEST_TEMPLATE.md ================================================ **Cross-references to related issues.** If there is no existing issue that describes your bug or feature request, then [create an issue](https://github.com/cytoscape/cytoscape.js/issues/new/choose) before making your pull request. Associated issues: - #X - #Y - #Z **Notes re. the content of the pull request.** Give context to reviewers or serve as a general record of the changes made. Add a screenshot or video to demonstrate your new feature, if possible. - This PR adds this. - This PR does that. - This PR allows us to do some other thing. **Checklist** Author: - [ ] The proper base branch has been selected. New features go on `unstable`. Bug-fix patches can go on either `unstable` or `master`. - [ ] Automated tests have been included in this pull request, if possible, for the new feature(s) or bug fix. Check this box if tests are not pragmatically possible (e.g. rendering features could include screenshots or videos instead of automated tests). - [ ] The associated GitHub issues are included (above). - [ ] Notes have been included (above). - [ ] For new or updated API, the `index.d.ts` Typescript definition file has been appropriately updated. Reviewers: - [ ] All automated checks are passing (green check next to latest commit). - [ ] At least one reviewer has signed off on the pull request. - [ ] For bug fixes: Just after this pull request is merged, it should be applied to both the `master` branch and the `unstable` branch. Normally, this just requires cherry-picking the corresponding merge commit from `master` to `unstable` -- or vice versa. ================================================ FILE: .github/SECURITY.md ================================================ # Reporting security issues in Cytoscape.js Please report security issues to at least one of the following people: - Max Franz: maxkfranz@gmail.com - Dylan Fong: dylanfong.ut@gmail.com - Christian Lopes: chrtannus@gmail.com - Mike Kucera: mikekucera@gmail.com - Alex Pico: alex.pico@gladstone.ucsf.edu ================================================ FILE: .github/stale.yml ================================================ # Number of days of inactivity before an issue becomes stale daysUntilStale: 14 # Number of days of inactivity before a stale issue is closed daysUntilClose: 7 # Issues with these labels will never be considered stale exemptLabels: - pinned # Label to use when marking an issue as stale staleLabel: stale # Comment to post when marking an issue as stale. Set to `false` to disable markComment: > This issue has been automatically marked as stale, because it has not had activity within the past 14 days. It will be closed if no further activity occurs within the next 7 days. If a feature request is important to you, please consider making a pull request. Thank you for your contributions. # Comment to post when closing a stale issue. Set to `false` to disable closeComment: false ================================================ FILE: .github/workflows/feature-release.yml ================================================ name: Feature Release on: workflow_dispatch: inputs: branch: description: 'Branch to run the action on' required: true default: 'unstable' jobs: feature-release: runs-on: ubuntu-latest environment: prod steps: - name: checkout unstable branch uses: actions/checkout@v3 with: ref: 'unstable' fetch-depth: 0 - uses: actions/setup-node@v3 with: node-version: 22 cache: 'npm' registry-url: 'https://registry.npmjs.org' - name: Install dependencies run: npm install - name: Install Playwright Browsers run: npx playwright install --with-deps - name: Run tests run : | npm test - name: Determine version for the release id: get_new_patch_version run: | pwd chmod 777 -R ./* ./.[!.]* . ./.github/workflows/scripts/new-feature-version.sh shell: bash - name: See new master version and jq version run: | echo VERSION ${{ env.VERSION }} jq --version shell: bash - name: Checkout Master Branch uses: actions/checkout@v3 with: ref: master fetch-depth: 0 - name: Update documentation and Merge unstable to master branch run: | . ./.github/workflows/scripts/merge_unstable_to_master.sh - name: Build release and verify changes id: release run: | . .github/workflows/scripts/pre_release_test.sh master - name: Archive code coverage results uses: actions/upload-artifact@v4 if: ${{ failure() && steps.release.conclusion == 'failure' }} with: name: npm-release--failure-report path: /home/runner/.npm/_logs/ - name: Publish Package To npmjs run: npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Publish Package to GitHub Releases run: | curl -L \ -X POST \ -H "Accept: application/vnd.github+json" \ -H "Authorization: Bearer ${{ secrets.MAIN_GH_TOKEN }}" \ -H "X-GitHub-Api-Version: 2022-11-28" \ https://api.github.com/repos/${{ github.repository }}/releases \ -d '{"tag_name":"v${{ env.VERSION }}","target_commitish":"master","name":"v${{ env.VERSION }}","body":"Release version v${{ env.VERSION }}","draft":false,"prerelease":false,"generate_release_notes":false}' - name: Deploy to Github Pages 🚀 uses: JamesIves/github-pages-deploy-action@v4 with: folder: documentation - name: Create Issue run: | TITLE="Create a blog post for release v$VERSION" echo "Issue title: $TITLE" sed ':a;N;$!ba;s/\n/\\n/g' ./.github/workflows/md/blog-issue-template.md > output_file.txt BODY="$(cat output_file.txt)" echo "Body: $BODY" curl -X POST \ -H "Authorization: token ${{ secrets.CYTOSCAPE_JS_BLOG_TOKEN }}" \ -H "Accept: application/vnd.github.v3+json" \ "https://api.github.com/repos/cytoscape/cytoscape.js-blog/issues" \ -d "{\"title\":\"$TITLE\",\"body\":\"$BODY\"}" ================================================ FILE: .github/workflows/md/Feature_Release.md ================================================ # Feature Release GitHub Action - README ## Introduction This GitHub Action, named "Feature Release Test", automates the process of releasing new features for the [Cytoscape.js](https://github.com/cytoscape/cytoscape.js) repository. This action is triggered by a manual workflow_dispatch event, allowing you to specify the version of the new release. The action performs various tasks, including merging changes, running tests, publishing to npmjs and GitHub Releases, deploying to GitHub Pages, and creating a related issue on the repository's blog. ## Prerequisites Before using this GitHub Action, ensure you have the following prerequisites in place: 1. Access to the [Cytoscape.js](https://github.com/cytoscape/cytoscape.js) repository. 2. Necessary access tokens and secrets stored as GitHub repository secrets: - `NPM_TOKEN`: Token for npmjs package publishing. Ref: [How to create legacy token in npm](https://docs.npmjs.com/creating-and-viewing-access-tokens#creating-legacy-tokens-on-the-website) - `MAIN_GH_TOKEN`: Token for accessing GitHub API to publish GitHub Releases on Cytoscape/Cytoscape.js repo. Ref: [Create fine-grained-personal-access-tokens](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens#fine-grained-personal-access-tokens) - `CYTOSCAPE_JS_BLOG_TOKEN`: Token for creating issues on the repository's blog Cytoscape/Cytoscape.js-blog repo. ## Usage 1. Navigate to the [Cytoscape.js](https://github.com/cytoscape/cytoscape.js) repository. 2. Go to the [Actions](https://github.com/cytoscape/cytoscape.js/actions) tab. 3. Click on [Feature-Release](https://github.com/cytoscape/cytoscape.js/actions/workflows/feature-release-test.yml) workflow. 4. Click the "Run workflow" button. 5. DO NOT CHANGE BRANCH FROM `unstable` FOR RELEASE. Provide the desired version for the new release when prompted if you want to do a feature release for a specific version. **Note: This version will used as the version of release.** Otherwise, the github will automatically determine a new version based upon package.json version ## Workflow Steps Below are the steps performed by the "Feature Release Test" GitHub Action: 1. **Checkout Patch Branch**: - Action: Checks out the `unstable` branch. - Uses: `actions/checkout@v3`. 2. **Setup Node.js Environment**: - Action: Sets up Node.js environment. - Uses: `actions/setup-node@v3`. - Node Version: 18. - Caches npm packages. 3. **Get New Version String**: - Action: Determines the new version for the release. - Script: Determines the new version based on user input or a script. - Uses the `github.event.inputs.version` input for the version if provided. 4. **Checkout Master Branch**: - Action: Checks out the `master` branch. - Uses: `actions/checkout@v3`. 5. **Merge Unstable to Master Branch**: - Action: Merges changes from `unstable` to `master` branch. - Custom script: Fetches and merges changes from the `unstable` branch. 6. **Install Dependencies**: - Action: Installs project dependencies. - Command: `npm install`. 7. **Run Tests**: - Action: Runs tests for the project. - Command: `npm test`. 8. **Pre Release Tests**: - Action: Runs pre-release tests. - Custom script: Executes pre-release tests with the `master` branch. 9. **Archive Code Coverage Results**: - Action: Archives code coverage results in case of test failure. - Uses: `actions/upload-artifact@v3`. 10. **Publish Package to npmjs**: - Action: Publishes the package to npmjs. - Command: `npm publish`. 11. **Publish Package to GitHub Releases**: - Action: Publishes the package to GitHub Releases. - Uses GitHub API to create a release with provided information. 12. **Deploy to Github Pages**: - Action: Deploys documentation to GitHub Pages. - Uses: `JamesIves/github-pages-deploy-action@v4`. 13. **Create Issue**: - Action: Creates an issue on the repository's blog. - Creates an issue with a title and body based on a template. ================================================ FILE: .github/workflows/md/Manual_Release.md ================================================ ## Release instructions 1. Add the upcoming release version in [version.json](https://github.com/cytoscape/cytoscape.js/blob/unstable/documentation/versions.json) file. 2. Ensure that [milestones](https://github.com/cytoscape/cytoscape.js/milestones) exist for the releases that you would like to make. Each milestone should contain its corresponding issues and pull requests. 1. For patch releases, do the back-port patch release before the corresponding current release. This ensures that npm lists the current version as the latest one. 1. `git checkout 1.1.x`, e.g. if the previous feature release is 1.1 1. Follow the remaining ordinary release steps (step 5 and onward). 1. Current releases are based on the `master` branch: `git checkout master` 1. If you are making a patch release, you can just release `master` with its new patches. 1. If you are making a feature release, you need to merge `unstable` onto `master`. Since there can be conflicts, it's easiest to use the 'ours' strategy which will allow you to use the state of `unstable` as-is (i.e. no conflict resolution necessary): 1. Make sure your local `master` is up-to-date: `git checkout master && git pull` 1. Make sure your local `unstable` is up-to-date: `git checkout unstable && git pull` 1. Create a merge commit that selects the state of `unstable` and push it: `git merge -s ours master && git push` 1. Fast-forward `master` to the merge commit: `git checkout master && git merge unstable && git push` 1. Update the version number in `package.json` and `package-lock.json` on `unstable` to some provisional new version number, and push it. 1. Update the `VERSION` environment variable for the release number you want to make, e.g. `export VERSION=1.2.3` 1. Confirm all the tests are passing: 1. `npm run test` 1. See also `test/index.html` for browser testing (optional) 1. Confirm all the tests are passing in IE9 (for feature releases): 1. `npm run watch:umd` 1. Open an [IE9 VM](https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/) 1. Open `http://yourip:8081/test/ie.html` in IE 1. Prepare a release: `npm run release` 1. Review the files that were just built in the previous step. 1. There should be a series of updated files in the `dist` directory and the `documentation` directory, identified with `git status`. 1. Try out the newly-built docs and demos in your browser. 1. Add the the release to git: `git add . && git commit -m "Build $VERSION"` 1. Update the package version and tag the release: `npm version $VERSION` 1. Push the release changes: `git push && git push --tags` 1. Publish the release to npm: `npm publish` 1. Run `npm run docs:push` 1. [Create a release](https://github.com/cytoscape/cytoscape.js/releases/new) for Zenodo from the latest tag. Make sure you wait at least 5 minutes since the last time that you made a release in order for Zenodo to work properly. 1. For feature releases: Create a release announcement on the [blog](https://github.com/cytoscape/cytoscape.js-blog). Share the announcement on mailing lists and social media. ================================================ FILE: .github/workflows/md/Patch_Backport_Release.md ================================================ # Patch/Backport Release GitHub Action - README ## Introduction The "Patch Release Test" GitHub Action automates the process of creating a patch release for the [Cytoscape.js](https://github.com/cytoscape/cytoscape.js) repository. This action allows you to define the target branch for the patch release and performs various tasks, including version updating, testing, publishing to npmjs and GitHub Releases, deploying to GitHub Pages, and more. ## Prerequisites Before using the "Patch Release Test" GitHub Action, ensure you have the following prerequisites: 1. Access to the [Cytoscape.js](https://github.com/cytoscape/cytoscape.js) repository. 2. Necessary access tokens and secrets stored as GitHub repository secrets: - `NPM_TOKEN`: Token for npmjs package publishing. Ref: [How to create legacy token in npm](https://docs.npmjs.com/creating-and-viewing-access-tokens#creating-legacy-tokens-on-the-website) - `MAIN_GH_TOKEN`: Token for accessing GitHub API to publish GitHub Releases on Cytoscape/Cytoscape.js repo. Ref: [Create fine-grained-personal-access-tokens](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens#fine-grained-personal-access-tokens) ## Usage 1. Navigate to the [Cytoscape.js](https://github.com/cytoscape/cytoscape.js) repository. 2. Go to the "Actions" tab. 3. Click on the "Patch Release Test" workflow. 4. Click the "Run workflow" button. 5. Provide the target branch name for the patch release when prompted. 6. For backport release: Make a corresponding patch release. ## Workflow Steps The "Patch Release Test" GitHub Action comprises the following steps: 1. **Get Branch**: - Action: Retrieves the target branch for the patch release. - Script: Sets the `BRANCH` environment variable based on user input. - Uses the `github.event.inputs.branch` input for branch selection. 2. **Checkout Patch Branch**: - Action: Checks out the specified patch branch. - Uses: `actions/checkout@v3`. - Branch: The branch specified by the `BRANCH` environment variable. 3. **Setup Node.js Environment**: - Action: Sets up Node.js environment for the workflow. - Uses: `actions/setup-node@v3`. - Node Version: 18. - Caches npm packages. 4. **Get New Version String**: - Action: Determines the new version for the patch release. - Script: Retrieves the new version from a script. - Uses a custom script to calculate the new version. 5. **See Patch Branch**: - Action: Displays the selected branch for the patch release. - Command: Outputs the branch stored in the `BRANCH` environment variable. 6. **See New Patch Version**: - Action: Displays the calculated version for the patch release. - Command: Outputs the calculated version using the `VERSION` environment variable. 7. **Checkout Master Branch**: - Action: Checks out the `master` branch. - Uses: `actions/checkout@v3`. 8. **Update Version on Master**: - Action: Updates the `versions.json` file on the `master` branch. - Script: Uses `jq` to add the new version to the `versions.json` file. - Commits and pushes the updated `versions.json` file. 9. **Checkout Patch Branch Again**: - Action: Checks out the specified patch branch. - Uses: `actions/checkout@v3`. - Branch: The branch specified by the `BRANCH` environment variable. 10. **Update Version on Unstable**: - Action: Updates the `versions.json` file on the `unstable` branch. - Script: Uses `jq` to add the new version to the `versions.json` file. - Commits and pushes the updated `versions.json` file. - Checks out the original patch branch again. 11. **Install Dependencies**: - Action: Installs project dependencies. - Command: `npm install`. 12. **Run Tests**: - Action: Executes tests for the project. - Command: `npm test`. 13. **Set Git Config**: - Action: Configures Git with user information. - Sets the user name and email based on the GitHub actor. 14. **Pre Release Tests**: - Action: Executes pre-release tests. - Uses a custom script to run pre-release tests on the specified branch. 15. **Archive Code Coverage Results**: - Action: Archives code coverage results in case of test failure. - Uses: `actions/upload-artifact@v3`. 16. **Publish Package to npmjs**: - Action: Publishes the package to npmjs. - Command: `npm publish`. 17. **Publish Package to GitHub Releases**: - Action: Publishes the package to GitHub Releases. - Uses GitHub API to create a release with provided information. 18. **Deploy to Github Pages**: - Action: Deploys documentation to GitHub Pages. - Uses: `JamesIves/github-pages-deploy-action@v4`. ================================================ FILE: .github/workflows/md/blog-issue-template.md ================================================ ## Create Issue for new release - Create a file with name YYYY-MM-DD-VERSION-release.md in the [_posts](https://github.com/cytoscape/cytoscape.js-blog/tree/gh-pages/_posts) directory. - Include these main points in the posts - layout - title - subtitle - tags - New important features and who contributed to them. - Full list of changes. - Sample blog post: ``` --- layout: post title: Cytoscape.js $VERSION released subtitle: An overview of what's new in Cytoscape.js $VERSION tags: - news --- Cytoscape.js $VERSION has been released. This version brings with it a [new right-slanting rhomboid shape](https://github.com/cytoscape/cytoscape.js/issues/3123) by [@somaniv](https://github.com/somaniv) and [trusted-types support](https://github.com/cytoscape/cytoscape.js/pull/3118) by [Jakub Vrána](https://github.com/vrana). The full list of changes can be found in the [3.25.0 milestone on GitHub](https://github.com/cytoscape/cytoscape.js/milestone/236?closed=1). ``` ================================================ FILE: .github/workflows/md/repo-setup.md ================================================ ## Instructions to setup repository for automated releases ### Tokens - `NPM_TOKEN`: Token for npmjs package publishing. The token should a automation token with no expiration. Ref: [How to create legacy token in npm](https://docs.npmjs.com/creating-and-viewing-access-tokens#creating-legacy-tokens-on-the-website) - `MAIN_GH_TOKEN`: Token for accessing GitHub API to publish GitHub Releases on Cytoscape/Cytoscape.js repo. The token can be set to expire at 1 year (maximum limit of github PAT is 1 year). Ref: [Create fine-grained-personal-access-tokens](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens#fine-grained-personal-access-tokens) - Permissions Required: - Actions: Read and Write - Contents: Read and Write - `CYTOSCAPE_JS_BLOG_TOKEN`: Token for creating issues on the repository's blog Cytoscape/Cytoscape.js-blog repo. - Permissions Required: - Issues: Read and Write ### Repository Setup - Provide Github Actions permissions to read and write. Ref: [Managing Github Actions](https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository) ================================================ FILE: .github/workflows/patch-release.yml ================================================ name: Patch Release on: workflow_dispatch: inputs: branch: description: 'Branch to run the action on' required: true default: 'master' jobs: patch-release: runs-on: ubuntu-latest environment: prod steps: - name: Extract branch name shell: bash id: extract_branch run: | echo "BRANCH=${{ github.event.inputs.branch }}" >> $GITHUB_ENV echo "Branch: " $BRANCH - name: checkout patch branch uses: actions/checkout@v3 with: ref: ${{ env.BRANCH }} - uses: actions/setup-node@v3 with: node-version: 22 cache: 'npm' registry-url: 'https://registry.npmjs.org' - name: Install dependencies run: npm install - name: Install Playwright Browsers run: npx playwright install --with-deps - name: Run tests run : | npm test - name: Get new version string id: get_new_patch_version run: | chmod +rx ./.github/workflows/scripts/new-patch-version.sh . ./.github/workflows/scripts/new-patch-version.sh shell: bash - name: See patch branch run: echo branch ${{ env.BRANCH }} shell: bash - name: See new patch version run: echo "# version:" ${{ env.VERSION }} shell: bash - name: checkout master branch uses: actions/checkout@v3 with: ref: master fetch-depth: 0 - name: Set Git Config run : | # Set git configs git config --global user.name "${GITHUB_ACTOR}" git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com" - name: Update Version on master id: update_backport_version_master run: | jq --arg ver "${{ env.VERSION }}" '.versions += [$ver]' ./documentation/versions.json >> /tmp/temp.json mv /tmp/temp.json ./documentation/versions.json git add . && git commit -m "Docs: Add ${{ env.VERSION }} to versions.json" git push - name: checkout unstable branch uses: actions/checkout@v3 with: ref: unstable fetch-depth: 0 - name: Update Version on unstable id: update_backport_version_unstable run: | jq --arg ver "${{ env.VERSION }}" '.versions += [$ver]' ./documentation/versions.json >> /tmp/temp.json mv /tmp/temp.json ./documentation/versions.json git add . && git commit -m "Docs: Add ${{ env.VERSION }} to versions.json" git push git checkout ${{ env.BRANCH }} - name: Set Git Config run : | # Set git configs git config --global user.name "${GITHUB_ACTOR}" git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com" - name: Make Release id: release run: | chmod +rx .github/workflows/scripts/pre_release_test.sh . .github/workflows/scripts/pre_release_test.sh ${{ env.BRANCH }} - name: Archive action failure results uses: actions/upload-artifact@v4 if: ${{ failure() && steps.release.conclusion == 'failure' }} with: name: npm-release--failure-report path: /home/runner/.npm/_logs/ - name: Publish Package To npmjs run: npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Publish Package to GitHub Releases run: | curl -L \ -X POST \ -H "Accept: application/vnd.github+json" \ -H "Authorization: Bearer ${{ secrets.MAIN_GH_TOKEN }}" \ -H "X-GitHub-Api-Version: 2022-11-28" \ https://api.github.com/repos/${{ github.repository }}/releases \ -d '{"tag_name":"v${{ env.VERSION }}","target_commitish":"master","name":"v${{ env.VERSION }}","body":"Release version v${{ env.VERSION }}","draft":false,"prerelease":false,"generate_release_notes":false}' - name: Deploy to Github Pages 🚀 if: ${{ env.BRANCH == 'master' }} uses: JamesIves/github-pages-deploy-action@v4 with: folder: documentation ================================================ FILE: .github/workflows/scripts/merge_unstable_to_master.sh ================================================ #!/bin/bash # Make script exit on first failure set -e # Check if VERSION variable is set if [ -z "$VERSION" ]; then echo "VERSION variable is not set." exit 1 else echo "VERSION is set to: $VERSION" fi # Check if NEXT_VERSION variable is set if [ -z "$NEXT_VERSION" ]; then echo "NEXT_VERSION variable is not set." exit 1 else echo "NEXT_VERSION is set to: $NEXT_VERSION" fi # Check if NEXT_BACK_PORT_VERSION variable is set if [ -z "$NEXT_BACK_PORT_VERSION" ]; then echo "NEXT_BACK_PORT_VERSION variable is not set." exit 1 else echo "NEXT_BACK_PORT_VERSION is set to: $NEXT_BACK_PORT_VERSION" fi # See current branch echo "Current Branch: $(git branch --show-current)" # See head of current branch echo "Current Head: " git log -n 1 # See current origin echo "See remotes: " git remote -v # Set git configs git config --global user.name "${GITHUB_ACTOR}" git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com" # Create and push the new backport branch git checkout master git checkout -b "$NEXT_BACK_PORT_VERSION" git push origin "$NEXT_BACK_PORT_VERSION" # Step 2: Make sure local unstable is up-to-date git checkout unstable git pull # Check if current Git branch is named "unstable" current_branch=$(git symbolic-ref --short HEAD 2>/dev/null) if [ "$current_branch" = "unstable" ]; then echo "Current Git branch is unstable." else echo "Current Git branch is not unstable." exit 2 fi echo "Updating documentation" jq --arg ver "$VERSION" '.versions += [$ver]' ./documentation/versions.json > /tmp/temp.json mv /tmp/temp.json ./documentation/versions.json git add . git commit -m "Documentation $VERSION: Append $VERSION to versions.json" echo "Documentation committed" # Step 3: Create a merge commit and push it git merge -s ours master -m "Merge master to unstable" echo "Master merged to unstable" git push origin unstable echo "Unstable pushed to remote" # Step 4: Fast-forward master to the merge commit git checkout master git merge unstable echo "Unstable merged in master" git push echo "Master pushed to remote" # Update package.json jq --arg ver "$VERSION" '.version = $ver' package.json > /tmp/temp.json mv /tmp/temp.json package.json # Update package-lock.json jq --arg ver "$VERSION" '.version = $ver' package-lock.json > /tmp/temp.json mv /tmp/temp.json package-lock.json # Check if version is updated in package.json version_check_package=$(jq -r '.version' package.json) if [ "$version_check_package" != "$VERSION" ]; then echo "Failed to update version in package.json" exit 3 else echo "Version updated in package.json" fi # Check if version is updated in package-lock.json version_check_package_lock=$(jq -r '.version' package-lock.json) if [ "$version_check_package_lock" != "$VERSION" ]; then echo "Failed to update version in package-lock.json" exit 4 else echo "Version updated in package-lock.json" fi # Commit and push the updated version files git add package.json package-lock.json git commit -m "Update version to $VERSION" git push # Update new version in unstable git checkout unstable # Update package.json jq --arg ver "$NEXT_VERSION" '.version = $ver' package.json > /tmp/temp.json mv /tmp/temp.json package.json # Update package-lock.json jq --arg ver "$NEXT_VERSION" '.version = $ver' package-lock.json > /tmp/temp.json mv /tmp/temp.json package-lock.json # Check if version is updated in package.json for unstable version_check_package_unstable=$(jq -r '.version' package.json) if [ "$version_check_package_unstable" != "$NEXT_VERSION" ]; then echo "Failed to update version in package.json for unstable" exit 3 else echo "Version updated in package.json for unstable" fi # Check if version is updated in package-lock.json for unstable version_check_package_lock_unstable=$(jq -r '.version' package-lock.json) if [ "$version_check_package_lock_unstable" != "$NEXT_VERSION" ]; then echo "Failed to update version in package-lock.json for unstable" exit 4 else echo "Version updated in package-lock.json for unstable" fi # Commit and push the updated version files git add package.json package-lock.json git commit -m "Update version to $NEXT_VERSION" git push git checkout master ================================================ FILE: .github/workflows/scripts/new-feature-version.sh ================================================ #!/bin/bash # Get the current version from package.json PREV_VERSION=$(jq -r '.version' package.json) echo "Prev Feature Version $PREV_VERSION" # Extract the version number by removing the "-unstable" suffix VERSION="${PREV_VERSION%-unstable}" echo "New Master Version $VERSION" # Split the version number into major, minor, and patch components IFS='.' read -ra VERSION_ARRAY <<< "$VERSION" # Extract the minor and patch components MINOR_VERSION="${VERSION_ARRAY[1]}" PATCH_VERSION="${VERSION_ARRAY[2]}" # Decrement the minor version for backport branch ((MINOR_VERSION--)) # Increment patch for new backport branch NEXT_BACK_PORT_VERSION="${VERSION_ARRAY[0]}.${MINOR_VERSION}.x" # Increment the minor component for the new unstable version ((MINOR_VERSION++)) ((MINOR_VERSION++)) # Construct the new unstable version NEXT_VERSION="${VERSION_ARRAY[0]}.${MINOR_VERSION}.0-unstable" echo "Next Unstable Version: $NEXT_VERSION" echo "Next Backport Version: $NEXT_BACK_PORT_VERSION" # Export the versions to the GitHub Actions environment echo "VERSION=$VERSION" >> "$GITHUB_ENV" echo "NEXT_VERSION=$NEXT_VERSION" >> "$GITHUB_ENV" echo "NEXT_BACK_PORT_VERSION=$NEXT_BACK_PORT_VERSION" >> "$GITHUB_ENV" ================================================ FILE: .github/workflows/scripts/new-patch-version.sh ================================================ #!/bin/bash # Get the current version from package.json PREV_VERSION=$(jq -r '.version' package.json) echo "Prev Patch Version $PREV_VERSION" # Split the version number into major, minor, and patch components IFS='.' read -a VERSION_ARRAY <<< "$PREV_VERSION" echo "SPLITTING COMPLETED" major="${VERSION_ARRAY[0]}" minor="${VERSION_ARRAY[1]}" patch="${VERSION_ARRAY[2]}" echo "CURRENT PATCH VERSION $patch" # Increment the patch version patch=$((patch + 1)) echo "UPDATED PATCH VERSION $patch" # Form the new version string VERSION="$major.$minor.$patch" # Split the new version number into major, minor, and patch components to validate IFS='.' read -a VERSION_ARRAY_2 <<< "$VERSION" if [[ ${#VERSION_ARRAY_2[@]} -lt 3 ]]; then echo "Error: Invalid new version format" exit 1 fi # Set the branch name if it's not the master branch if [ "$BRANCH" != "refs/heads/master" ]; then BRANCH="${VERSION_ARRAY[0]}.${VERSION_ARRAY[1]}.x" fi echo "Version $VERSION" # Export the new version to the GitHub Actions environment echo "VERSION=$VERSION" >> "$GITHUB_ENV" ================================================ FILE: .github/workflows/scripts/pre_release_test.sh ================================================ #!/bin/bash # Make script exit on first failure set -e # Check if VERSION variable is set if [ -z "$VERSION" ]; then echo "VERSION variable is not set." exit 1 else echo "VERSION is set to: $VERSION" fi # Check if current Git branch is named "master" or the provided branch name current_branch=$(git symbolic-ref --short HEAD 2>/dev/null) if [ "$current_branch" = "$1" ]; then echo "Current Git branch is $1." else echo "Current Git branch is not $1." exit 2 fi FILE=./documentation/versions.json if [ -f "$FILE" ]; then echo "$FILE exists." else echo "$FILE doesn't exist. Exiting..." exit 1 fi npm install npm run release if [ "$current_branch" = "unstable" ] || [ "$current_branch" = "master" ]; then echo "Starting to check changed files" # List the files to check files_to_check=("documentation/index.html" "documentation/js/cytoscape.min.js" "dist/cytoscape.umd.js") echo "Files initialized" git status # Loop through the files for file in "${files_to_check[@]}" do echo "Checking $file" # Check if the file exists in the local FS if [ -e "$file" ]; then echo "The file $file exists in the locally-built files." else echo "The file $file does not exist in the locally-built files." exit 1 fi # Check if the file has changed output="$(git status -s $file)" echo "For $file, $output" # Check if the file has changed if [ -z "$output" ]; then echo "The file $file has not changed." exit 1 else echo "The file $file has changed." fi done fi git add . && git commit -m "Build $VERSION" git log -n 1 npm version "$VERSION" --allow-same-version git push && git push --tags git remote -v git remote set-url origin git@github.com:cytoscape/cytoscape.js.git exit 0 ================================================ FILE: .github/workflows/tests.yml ================================================ name: Automated tests on: [push, pull_request] permissions: contents: read jobs: ci: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: node-version: lts/* - name: Install dependencies run: npm ci - name: Install Playwright Browsers run: npx playwright install --with-deps - name: Run tests run: npm test ================================================ FILE: .gitignore ================================================ .project .DS_Store .buildpath .versions node_modules npm-debug.log build build/* build/** documentation/slimerjs-*/** documentation/api/** documentation/download/*.zip benchmark/suite/cytoscape.js # Playwright /test-results/ /playwright-report/ /blob-report/ /playwright/.cache/ ================================================ FILE: .npmignore ================================================ documentation test debug gulpfile.js bower.json build node_modules snippets benchmark CONTRIBUTING.md .babelrc ================================================ FILE: .nvmrc ================================================ 22 ================================================ FILE: .size-snapshot.json ================================================ { "build/cytoscape.umd.js": { "bundled": 1021871, "minified": 365007, "gzipped": 112477 }, "build/cytoscape.cjs.js": { "bundled": 871227, "minified": 371337, "gzipped": 111837 }, "build/cytoscape.esm.js": { "bundled": 870994, "minified": 371149, "gzipped": 111794, "treeshaked": { "rollup": { "code": 346486, "import_statements": 132 }, "webpack": { "code": 347998 } } }, "build/cytoscape.esm.min.js": { "bundled": 364812, "minified": 364287, "gzipped": 112306, "treeshaked": { "rollup": { "code": 363750, "import_statements": 0 }, "webpack": { "code": 365038 } } }, "build\\cytoscape.umd.js": { "bundled": 942118, "minified": 351104, "gzipped": 109191 }, "build\\cytoscape.esm.min.js": { "bundled": 350909, "minified": 350411, "gzipped": 109012, "treeshaked": { "rollup": { "code": 349903, "import_statements": 0 }, "webpack": { "code": 351193 } } }, "build\\cytoscape.cjs.js": { "bundled": 868703, "minified": 370553, "gzipped": 111528 }, "build\\cytoscape.esm.js": { "bundled": 868530, "minified": 370410, "gzipped": 111491, "treeshaked": { "rollup": { "code": 345754, "import_statements": 51 }, "webpack": { "code": 347140 } } } } ================================================ FILE: .travis.yml ================================================ language: node_js node_js: - "10" - "12" sudo: false script: npm run travis ================================================ FILE: CODE_OF_CONDUCT.md ================================================ # Contributor Covenant Code of Conduct ## Our Pledge We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community. ## Our Standards Examples of behavior that contributes to a positive environment for our community include: * Demonstrating empathy and kindness toward other people * Being respectful of differing opinions, viewpoints, and experiences * Giving and gracefully accepting constructive feedback * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience * Focusing on what is best not just for us as individuals, but for the overall community Examples of unacceptable behavior include: * The use of sexualized language or imagery, and sexual attention or advances of any kind * Trolling, insulting or derogatory comments, and personal or political attacks * Public or private harassment * Publishing others' private information, such as a physical or email address, without their explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting ## Enforcement Responsibilities Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate. ## Scope This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at gary.bader@utoronto.ca (Gary Bader) and max.franz@utoronto.ca (Max Franz). All complaints will be reviewed and investigated promptly and fairly. All community leaders are obligated to respect the privacy and security of the reporter of any incident. ## Enforcement Guidelines Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct: ### 1. Correction **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community. **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested. ### 2. Warning **Community Impact**: A violation through a single incident or series of actions. **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban. ### 3. Temporary Ban **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior. **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban. ### 4. Permanent Ban **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. **Consequence**: A permanent ban from any sort of public interaction within the community. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0, available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity). [homepage]: https://www.contributor-covenant.org For answers to common questions about this code of conduct, see the FAQ at https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations. ================================================ FILE: CONTRIBUTING.md ================================================ # Contributing to Cytoscape.js Cytoscape.js is an open source project, and we greatly appreciate any and all contributions. A blog post is available [on blog.js.cytoscape.org](http://blog.js.cytoscape.org/2017/06/13/contributing/) geared towards first-time code contributors with more in-depth instructions on the project's structure, the process of creating and merging changes to the code, and more. If you'd like to contribute code to Cytoscape.js but you're not sure exactly what you'd like to implement, take a look at our [current milestones](https://github.com/cytoscape/cytoscape.js/milestones) to see what features we have planned in future --- or anything labelled [`help-wanted`](https://github.com/cytoscape/cytoscape.js/issues?q=is%3Aopen+is%3Aissue+label%3Ahelp-wanted). Of course, we also welcome your own ideas. You can discuss new ideas with the community on [GitHub discussions](https://github.com/cytoscape/cytoscape.js/discussions). Our goal is to make Cytoscape.js easy to use and comprehensive. Thank you for taking the time and effort to contribute and to help make that happen! ## Submitting issues The first step towards providing a code contribution is to write [a short, descriptive issue](https://github.com/cytoscape/cytoscape.js/issues). If your issue pertains to an extension, you should file the issue on that extension's issue tracker instead. Describe the bug or feature that you are addressing in your issue. Then, create your issue's corresponding pull request that contains your code changes. ## How to make your changes in a pull request New features go in the `unstable` branch, which is used for the next (breaking/major or feature/minor) version. Bugfixes go in the `master` branch for the next bugfix/patch version. This allows us to follow [semver](http://semver.org/) nicely. To propose a change, [fork](https://help.github.com/articles/fork-a-repo/) the cytoscape.js repository on Github, make a change, and then submit a [pull request](https://help.github.com/articles/creating-a-pull-request/) so that the proposed changes can be reviewed. If this is your first time making a pull request on GitHub, you can refer to [our comprehensive, step-by-step blog post](https://blog.js.cytoscape.org/2017/06/13/contributing/). The source is organised in relatively the same way as the documentation, under `./src`. Try to maintain that organisation as best as you can. You are free to create new files and `require()` them using ESM [`import`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import) and [`export`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/export). Add your new feature to the documentation. Updates to the documentation should go in [`docmaker.json`](https://github.com/cytoscape/cytoscape.js/blob/unstable/documentation/docmaker.json) file or the accompanying md files. The documentation's HTML is generated from a template, and so it should not be edited directly. ## Code style Cytoscape.js is transpiled with Babel, so ES2015/ES6+ language features can be used. Use two spaces for indentation, and single-quoted strings are preferred. The main thing is to try to keep your code neat and readable. There isn't a strict styleguide; it's more important that your code is easily understood and well tested. We do use [eslint](http://eslint.org/), so you can use `eslint` in the terminal or use eslint support in your editor. You can run `eslint --fix` to automatically format the code to more or less match the style we use. It will only catch basic things, though. ## Testing Tests go in the `./test` directory, as Mocha tests usually do. They are just a flat list of `.js` files that Mocha runs. If your change is a bugfix, please add a test case that would fail without your fix. If your change is a new feature, please add tests accordingly. If your change is visual/rendering-related, then Mocha tests are not pragmatic. Use the debug page in the `debug` directory to try out visual changes. That page contains a sidebar with buttons and dropdowns that make visual and interactive testing easy. Please run `npm test` to make sure all the unit tests are passing before you make your pull request. We also have support for running the Mocha tests in IE9+ and other old browsers. You can run the tests in a [Windows IE VM](https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/) while running `npm run watch:umd`. Go to `http://youripaddress:8081/test/ie.html` in IE to open the Mocha test page. ================================================ FILE: LICENSE ================================================ Copyright (c) 2016-2024, The Cytoscape Consortium. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================ [![GitHub repo](https://img.shields.io/badge/Repo-GitHub-yellow.svg)](https://github.com/cytoscape/cytoscape.js) [![Ask a question with Phind](https://img.shields.io/badge/Get%20help-Phind-yellow.svg)](https://www.phind.com/search?q=I%27m%20using%20the%20Cytoscape.js%20graph%20theory%20JS%20library.%20How%20do%20I%20create%20a%20graph%20in%20my%20HTML%20page) [![News and tutorials](https://img.shields.io/badge/News%20%26%20tutorials-Blog-yellow.svg)](https://blog.js.cytoscape.org) [![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://raw.githubusercontent.com/cytoscape/cytoscape.js/master/LICENSE) [![npm](https://img.shields.io/npm/v/cytoscape.svg)](https://www.npmjs.com/package/cytoscape) [![DOI](https://zenodo.org/badge/2255947.svg)](https://zenodo.org/badge/latestdoi/2255947) [![npm installs](https://img.shields.io/npm/dm/cytoscape.svg?label=npm%20installs)](https://www.npmjs.com/package/cytoscape) [![Automated tests](https://github.com/cytoscape/cytoscape.js/actions/workflows/tests.yml/badge.svg)](https://github.com/cytoscape/cytoscape.js/actions/workflows/tests.yml) [![Extensions](https://img.shields.io/badge/Extensions-70-brightgreen.svg)](https://js.cytoscape.org/#extensions) [![Cloudflare](https://img.shields.io/badge/Powered%20by-Cloudflare-orange.svg)](https://cloudflare.com) Created at the [University of Toronto](https://utoronto.ca) and published in [Oxford Bioinformatics](https://js.cytoscape.org/#introduction/citation) ([2016](https://academic.oup.com/bioinformatics/article/32/2/309/1744007), [2023](https://academic.oup.com/bioinformatics/article/39/1/btad031/6988031)).
Authored by: [Max Franz](https://github.com/maxkfranz), [Christian Lopes](https://github.com/chrtannus), [Dylan Fong](https://github.com/d2fong), [Mike Kucera](https://github.com/mikekucera), ..., [Gary Bader](https://baderlab.org) # Cytoscape.js Graph theory (network) library for visualisation and analysis : [https://js.cytoscape.org](https://js.cytoscape.org) ## Description Cytoscape.js is a fully featured [graph theory](https://en.wikipedia.org/wiki/Graph_theory) library. Do you need to model and/or visualise relational data, like biological data or social networks? If so, Cytoscape.js is just what you need. Cytoscape.js contains a graph theory model and an optional renderer to display interactive graphs. This library was designed to make it as easy as possible for programmers and scientists to use graph theory in their apps, whether it's for server-side analysis in a Node.js app or for a rich user interface. You can get started with Cytoscape.js with one line: ```js var cy = cytoscape({ elements: myElements, container: myDiv }); ``` Learn more about the features of Cytoscape.js by reading [its documentation](https://js.cytoscape.org). ## Example The Tokyo railway stations network can be visualised with Cytoscape: A [live demo](https://js.cytoscape.org/demos/tokyo-railways/) and [source code](https://github.com/cytoscape/cytoscape.js/tree/master/documentation/demos/tokyo-railways) are available for the Tokyo railway stations graph. More demos are available in the [documentation](https://js.cytoscape.org/#demos). ## Documentation You can find the documentation and downloads on the [project website](https://js.cytoscape.org). ## Roadmap Future versions of Cytoscape.js are planned in the [milestones of the Github issue tracker](https://github.com/cytoscape/cytoscape.js/milestones). You can use the milestones to see what's currently planned for future releases. ## Contributing to Cytoscape.js Would you like to become a Cytoscape.js contributor? You can contribute in technical roles (e.g. features, testing) or non-technical roles (e.g. documentation, outreach), depending on your interests. [Get in touch with us by posting a GitHub discussion](https://github.com/cytoscape/cytoscape.js/discussions). For the mechanics of contributing a pull request, refer to [CONTRIBUTING.md](CONTRIBUTING.md). Feature releases are made monthly, while patch releases are made weekly. This allows for rapid releases of first- and third-party contributions. ## Citation To cite Cytoscape.js in a paper, please cite the Oxford Bioinformatics issue: *Cytoscape.js: a graph theory library for visualisation and analysis* Franz M, Lopes CT, Huck G, Dong Y, Sumer O, Bader GD [Bioinformatics (2016) 32 (2): 309-311 first published online September 28, 2015 doi:10.1093/bioinformatics/btv557](https://bioinformatics.oxfordjournals.org/content/32/2/309) [(PDF)](http://bioinformatics.oxfordjournals.org/content/32/2/309.full.pdf) - [PubMed abstract for the original 2016 article](http://www.ncbi.nlm.nih.gov/pubmed/26415722) - [PubMed abstract for the 2023 update article](https://pubmed.ncbi.nlm.nih.gov/36645249) ## Build dependencies Install `node` and `npm`. Run `npm install` before using `npm run`. ## Build instructions Run `npm run ` in the console. The main targets are: **Building:** * `build`: do all builds of the library (umd, min, cjs, esm) * `build:min` : do the unminified build with bundled dependencies (for simple html pages, good for novices) * `build:umd` : do the umd (cjs/amd/globals) build * `build:esm` : do the esm (ES 2015 modules) build * `clean` : clean the `build` directory * `docs` : build the docs into `documentation` * `release` : build all release artifacts * `watch` : automatically build lib for debugging (with sourcemap, no babel, very quick) * good for general testing on `debug/index.html` * served on `http://localhost:8080` or the first available port thereafter, with livereload on `debug/index.html` * `watch:babel` : automatically build lib for debugging (with sourcemap, with babel, a bit slower) * good for testing performance or for testing out of date browsers * served on `http://localhost:8080` or the first available port thereafter, with livereload on `debug/index.html` * `watch:umd` : automatically build prod umd bundle (no sourcemap, with babel) * good for testing cytoscape in another project (with a `"cytoscape": "file:./path/to/cytoscape"` reference in your project's `package.json`) * no http server * `dist` : update the distribution js for npm etc. **Testing:** The default test scripts run directly against the source code. Tests can alternatively be run on a built bundle. The library can be built on `node>=6`, but the library's bundle can be tested on `node>=0.10`. * `test` : run all testing & linting * `test:js` : run the mocha tests on the public API of the lib (directly on source files) * `npm run test:js -- -g "my test name"` runs tests on only the matching test cases * `test:build` : run the mocha tests on the public API of the lib (on a built bundle) * `npm run build` should be run beforehand on a recent version of node * `npm run test:build -- -g "my test name"` runs build tests on only the matching test cases * `test:modules` : run unit tests on private, internal API * `npm run test:modules -- -g "my test name"` runs modules tests on only the matching test cases * `lint` : lint the js sources via eslint * `benchmark` : run all benchmarks * `benchmark:single` : run benchmarks only for the suite specified in `benchmark/single` ## Release instructions ### Background - Ensure that a milestone exists for the release you want to make, with all the issues for that release assigned in the milestone. - Bug fixes should be applied to both the `master` and `unstable` branches. PRs can go on either branch, with the patch applied to the other branch after merging. - When a patch release is made concurrently with a feature release, the patch release should be made first. Wait 5 minutes after the patch release completes before starting the feature release -- otherwise Zenodo doesn't pick up releases properly. ### Patch version 1. Go to [Actions > Patch release](https://github.com/cytoscape/cytoscape.js/actions/workflows/patch-release.yml) 1. Go to the 'Run workflow' dropdown 1. [Optional] The 'master' branch should be preselected for you 1. Press the green 'Run workflow' button 1. Close the milestone for the release ### Feature version 1. Go to [Actions > Feature release](https://github.com/cytoscape/cytoscape.js/actions/workflows/feature-release.yml) 1. Go to the 'Run workflow' dropdown 1. [Optional] The 'unstable' branch should be preselected for you 1. Press the green 'Run workflow' button 1. Close the milestone for the release 1. Make the release announcement [on the blog](https://github.com/cytoscape/cytoscape.js-blog) ### Notes on GitHub Actions UI - 'Use workflow from' in the GitHub UI selects the branch from which the workflow YML file is selected. Since the workflow files should usually be the same on the master and unstable branches, it shouldn't matter what's selected. - 'Branch to run the action on' in the GitHub UI is preselected for you. You don't need to change it. ## Tests Mocha tests are found in the [test directory](https://github.com/cytoscape/cytoscape.js/tree/master/test). The tests can be run in the browser or they can be run via Node.js (`npm run test:js`). ================================================ FILE: benchmark/a-star.js ================================================ var eles, root, goal; var Suite = require('./suite'); var suite = new Suite('eles.aStar()', { setup: function( cytoscape ){ var cy = cytoscape({ elements: require('./graphs/gal') }); eles = cy.elements(); root = cy.$('#367'); goal = cy.$('#381'); return cy; } }); suite .add( function( cy ) { eles.aStar({ root: root, goal: goal }); }) ; module.exports = suite; ================================================ FILE: benchmark/add-remove-class.js ================================================ var Suite = require('./suite'); var a; var suite = new Suite('eles.addClass(); ... eles.removeClass();', { setup: function( cytoscape ){ var cy = cytoscape({ elements: require('./graphs/gal'), styleEnabled: false }); a = cy.nodes(); return cy; } }); suite .add( function( cy ) { a.addClass('foo bar'); a.removeClass('foo bar'); }) ; module.exports = suite; ================================================ FILE: benchmark/add-remove.js ================================================ var Suite = require('./suite'); var suite = new Suite('cy.add(); ... cy.remove();'); suite .add( function( cy ){ var N = 1000; var eles = []; for( var i = 0; i < N; i++ ){ eles.push({ group: 'nodes', data: { id: 'node-'+i } }); if( i >= 1 ){ eles.push({ group: 'edges', data: { source: 'node-'+(i-1), target: 'node-'+(i) } }); } } cy.add( eles ); cy.elements().remove(); } ) ; module.exports = suite; ================================================ FILE: benchmark/add.js ================================================ var Suite = require('./suite'); var suite = new Suite('cy.add()'); var eles = []; var N = 100; for( var i = 0; i < N; i++ ){ eles.push({ group: 'nodes', data: { id: 'node-'+i } }); if( i >= 1 ){ eles.push({ group: 'edges', data: { source: 'node-'+(i-1), target: 'node-'+(i) } }); } } global.elesJson = JSON.stringify( eles ); suite .add( function( cy ){ cy.add( eles ); }, { setup: function( cytoscape ){ global.eles = JSON.parse( global.elesJson ); return cytoscape(); } } ) ; module.exports = suite; ================================================ FILE: benchmark/all/index.js ================================================ var fs = require('fs'); var path = require('path'); var isJs = function( name ){ return name.match(/\.js$/) != null; }; var suiteFiles = fs.readdirSync( path.join(__dirname, '..') ).filter( isJs ); suiteFiles.forEach(function( fileName ){ var suite = require('../' + fileName); suite.run(); }); ================================================ FILE: benchmark/all-are-neighbors.js ================================================ var Suite = require('./suite'); var a, b; var suite = new Suite('eles.allAreNeighbors()', { setup: function( cytoscape ){ var cy = cytoscape({ elements: require('./graphs/gal') }); a = cy.nodes(); b = cy.nodes(); return cy; } }); suite .add( function( cy ) { a.allAreNeighbors( b ); }) ; module.exports = suite; ================================================ FILE: benchmark/all-are.js ================================================ var Suite = require('./suite'); var a; var suite = new Suite('eles.allAre()', { setup: function( cytoscape ){ var cy = cytoscape({ elements: require('./graphs/gal') }); a = cy.nodes(); return cy; } }); suite .add( function( cy ) { a.allAre('node'); }) ; module.exports = suite; ================================================ FILE: benchmark/any-same.js ================================================ var Suite = require('./suite'); var a, b; var suite = new Suite('eles.anySame()', { setup: function( cytoscape ){ var cy = cytoscape({ elements: require('./graphs/gal') }); a = cy.nodes(); b = cy.nodes(); return cy; } }); suite .add( function( cy ) { a.anySame(b); }) ; module.exports = suite; ================================================ FILE: benchmark/bellman-ford.js ================================================ var root, eles; var Suite = require('./suite'); var suite = new Suite('eles.bellmanFord()', { setup: function( cytoscape ){ var cy = cytoscape({ elements: require('./graphs/gal') }); eles = cy.elements(); root = cy.$('#367'); return cy; } }); suite .add( function( cy ) { eles.bellmanFord({ root: root }); }) ; module.exports = suite; ================================================ FILE: benchmark/betweenness-centrality.js ================================================ var eles, root; var Suite = require('./suite'); var suite = new Suite('eles.betweennessCentrality()', { setup: function( cytoscape ){ var cy = cytoscape({ elements: require('./graphs/gal') }); eles = cy.elements(); root = cy.$('#269'); return cy; } }); suite .add( function( cy ) { eles.betweennessCentrality({ root: root }); }) ; module.exports = suite; ================================================ FILE: benchmark/bfs.js ================================================ var eles, root; var Suite = require('./suite'); var suite = new Suite('eles.bfs()', { setup: function( cytoscape ){ var cy = cytoscape({ elements: require('./graphs/gal') }); eles = cy.elements(); root = cy.$('#367'); return cy; } }); suite .add( function( cy ) { eles.bfs({ root: root }); }) ; module.exports = suite; ================================================ FILE: benchmark/classes.js ================================================ var Suite = require('./suite'); var a; var suite = new Suite('eles.classes()', { setup: function( cytoscape ){ var cy = cytoscape({ elements: require('./graphs/gal'), styleEnabled: false }); a = cy.nodes(); return cy; } }); suite .add( function( cy ) { a.classes('foo bar'); }) ; module.exports = suite; ================================================ FILE: benchmark/closeness-centrality.js ================================================ var eles, root; var Suite = require('./suite'); var suite = new Suite('eles.closenessCentrality()', { setup: function( cytoscape ){ var cy = cytoscape({ elements: require('./graphs/gal') }); eles = cy.elements(); root = cy.$('#367'); return cy; } }); suite .add( function( cy ) { eles.closenessCentrality({ root: root }); }) ; module.exports = suite; ================================================ FILE: benchmark/collection-creation.js ================================================ var Suite = require('./suite'); var suite = new Suite('new Collection()', { setup: function( cytoscape ){ return cytoscape({ elements: require('./graphs/gal') }); } }); suite .add( function( cy ) { var eles = cy.elements().spawn(); // make sure the collection is used so it's not optimised out var n = 0; for( var i = 0; i < eles.length; i++ ){ n++; } return n; }) ; module.exports = suite; ================================================ FILE: benchmark/contains.js ================================================ var Suite = require('./suite'); var a, b; var suite = new Suite('eles.contains()', { setup: function( cytoscape ){ var cy = cytoscape({ elements: require('./graphs/gal') }); a = cy.nodes(); b = cy.nodes(); return cy; } }); suite .add( function( cy ) { a.contains( b ); }) ; module.exports = suite; ================================================ FILE: benchmark/degree-centrality.js ================================================ var eles, root; var Suite = require('./suite'); var suite = new Suite('eles.degreeCentrality()', { setup: function( cytoscape ){ var cy = cytoscape({ elements: require('./graphs/gal') }); eles = cy.elements(); root = cy.$('#367'); return cy; } }); suite .add( function( cy ) { eles.degreeCentrality({ root: root }); }) ; module.exports = suite; ================================================ FILE: benchmark/dfs.js ================================================ var eles, root; var Suite = require('./suite'); var eles, root; var suite = new Suite('eles.dfs()', { setup: function( cytoscape ){ var cy = cytoscape({ elements: require('./graphs/gal') }); eles = cy.elements(); root = cy.$('#367'); return cy; } }); suite .add( function( cy ) { eles.dfs({ root: root }); }) ; module.exports = suite; ================================================ FILE: benchmark/dijkstra.js ================================================ var eles, root; var Suite = require('./suite'); var suite = new Suite('eles.dijkstra()', { setup: function( cytoscape ){ var cy = cytoscape({ elements: require('./graphs/gal') }); eles = cy.elements(); root = cy.$('#367'); return cy; } }); suite .add( function( cy ) { eles.dijkstra({ root: root }); }) ; module.exports = suite; ================================================ FILE: benchmark/floyd-warshall.js ================================================ var eles; var Suite = require('./suite'); var suite = new Suite('eles.floydWarshall()', { setup: function( cytoscape ){ var cy = cytoscape({ elements: require('./graphs/gal') }); eles = cy.elements(); return cy; } }); suite .add( function( cy ) { eles.floydWarshall(); }) ; module.exports = suite; ================================================ FILE: benchmark/graphs/abcde.json ================================================ { "nodes": [ { "data": { "id": "a" } }, { "data": { "id": "b" } }, { "data": { "id": "c" } }, { "data": { "id": "d" } }, { "data": { "id": "e" } } ], "edges": [ { "data": { "id": "ae", "weight": 1, "source": "a", "target": "e" } }, { "data": { "id": "ab", "weight": 3, "source": "a", "target": "b" } }, { "data": { "id": "be", "weight": 4, "source": "b", "target": "e" } }, { "data": { "id": "bc", "weight": 5, "source": "b", "target": "c" } }, { "data": { "id": "ce", "weight": 6, "source": "c", "target": "e" } }, { "data": { "id": "cd", "weight": 2, "source": "c", "target": "d" } }, { "data": { "id": "de", "weight": 7, "source": "d", "target": "e" } } ] } ================================================ FILE: benchmark/graphs/gal.json ================================================ { "nodes" : [ { "data" : { "id" : "392", "degree_layout" : 1, "gal80Rexp" : 0.292, "gal1RGsig" : 9.1177E-4, "Eccentricity" : 26, "gal4RGsig" : 3.5692E-6, "shared_name" : "YKR026C", "TopologicalCoefficient" : 0.0, "SUID" : 392, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 15.37096774, "selected" : false, "gal80Rsig" : 0.011229, "ClosenessCentrality" : 0.06505771, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.46774194, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.154, "name" : "YKR026C", "COMMON" : "GCN3", "gal4RGexp" : -0.501, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "391", "degree_layout" : 3, "gal80Rexp" : 0.187, "gal1RGsig" : 8.7295E-4, "Eccentricity" : 25, "gal4RGsig" : 0.61707, "shared_name" : "YGL122C", "TopologicalCoefficient" : 0.33333333, "SUID" : 391, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 14.375, "selected" : false, "gal80Rsig" : 0.0059966, "ClosenessCentrality" : 0.06956522, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.50462963, "Stress" : 5902, "BetweennessCentrality" : 0.02406295, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.174, "name" : "YGL122C", "COMMON" : "NAB2", "gal4RGexp" : 0.02, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.66666667 } }, { "data" : { "id" : "390", "degree_layout" : 1, "gal80Rexp" : -0.018, "gal1RGsig" : 0.61381, "Eccentricity" : 2, "gal4RGsig" : 0.9794, "shared_name" : "YGR218W", "TopologicalCoefficient" : 0.0, "SUID" : 390, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.66666667, "selected" : false, "gal80Rsig" : 0.80969, "ClosenessCentrality" : 0.6, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66666667, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.018, "name" : "YGR218W", "COMMON" : "CRM1", "gal4RGexp" : -0.001, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "389", "degree_layout" : 3, "gal80Rexp" : 0.008, "gal1RGsig" : 0.0021913, "Eccentricity" : 1, "gal4RGsig" : 0.0022461, "shared_name" : "YGL097W", "TopologicalCoefficient" : 0.0, "SUID" : 389, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.93826, "ClosenessCentrality" : 1.0, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 6, "BetweennessCentrality" : 1.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.16, "name" : "YGL097W", "COMMON" : "SRM1", "gal4RGexp" : -0.23, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "388", "degree_layout" : 1, "gal80Rexp" : -0.91, "gal1RGsig" : 0.39944, "Eccentricity" : 2, "gal4RGsig" : 0.31268, "shared_name" : "YOR204W", "TopologicalCoefficient" : 0.0, "SUID" : 388, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.66666667, "selected" : false, "gal80Rsig" : 8.349E-16, "ClosenessCentrality" : 0.6, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66666667, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.033, "name" : "YOR204W", "COMMON" : "DED1", "gal4RGexp" : -0.056, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "387", "degree_layout" : 2, "gal80Rexp" : -0.769, "gal1RGsig" : 2.713E-8, "Eccentricity" : 2, "gal4RGsig" : 0.04747, "shared_name" : "YLR249W", "TopologicalCoefficient" : 1.0, "SUID" : 387, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.33333333, "selected" : false, "gal80Rsig" : 0.035939, "ClosenessCentrality" : 0.75, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.83333333, "Stress" : 2, "BetweennessCentrality" : 0.16666667, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.39, "name" : "YLR249W", "COMMON" : "YEF3", "gal4RGexp" : -0.394, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "386", "degree_layout" : 2, "gal80Rexp" : -0.278, "gal1RGsig" : 9.8725E-4, "Eccentricity" : 2, "gal4RGsig" : 0.89728, "shared_name" : "YPR080W", "TopologicalCoefficient" : 1.0, "SUID" : 386, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.33333333, "selected" : false, "gal80Rsig" : 6.7798E-4, "ClosenessCentrality" : 0.75, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.83333333, "Stress" : 2, "BetweennessCentrality" : 0.16666667, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.138, "name" : "YPR080W", "COMMON" : "TEF1", "gal4RGexp" : 0.009, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "385", "degree_layout" : 2, "gal80Rexp" : 0.044, "gal1RGsig" : 0.053125, "Eccentricity" : 2, "gal4RGsig" : 0.15497, "shared_name" : "YBR118W", "TopologicalCoefficient" : 1.0, "SUID" : 385, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.33333333, "selected" : false, "gal80Rsig" : 0.54556, "ClosenessCentrality" : 0.75, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.83333333, "Stress" : 2, "BetweennessCentrality" : 0.16666667, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.074, "name" : "YBR118W", "COMMON" : "TEF2", "gal4RGexp" : -0.063, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "384", "degree_layout" : 1, "gal80Rexp" : -0.128, "gal1RGsig" : 1.7601E-5, "Eccentricity" : 2, "gal4RGsig" : 6.7968E-4, "shared_name" : "YLR293C", "TopologicalCoefficient" : 0.0, "SUID" : 384, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.66666667, "selected" : false, "gal80Rsig" : 0.012703, "ClosenessCentrality" : 0.6, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66666667, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.242, "name" : "YLR293C", "COMMON" : "GSP1", "gal4RGexp" : -0.247, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "383", "degree_layout" : 1, "gal80Rexp" : -0.151, "gal1RGsig" : 0.30844, "Eccentricity" : 19, "gal4RGsig" : 0.0085173, "shared_name" : "YMR146C", "TopologicalCoefficient" : 0.0, "SUID" : 383, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 10.81048387, "selected" : false, "gal80Rsig" : 0.072007, "ClosenessCentrality" : 0.0925028, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.63664875, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.05, "name" : "YMR146C", "COMMON" : "TIF34", "gal4RGexp" : -0.143, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "382", "degree_layout" : 3, "gal80Rexp" : 0.354, "gal1RGsig" : 0.072655, "Eccentricity" : 18, "gal4RGsig" : 0.0011724, "shared_name" : "YDR429C", "TopologicalCoefficient" : 0.33333333, "SUID" : 382, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 9.81451613, "selected" : false, "gal80Rsig" : 1.6643E-5, "ClosenessCentrality" : 0.10188989, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.67353644, "Stress" : 4106, "BetweennessCentrality" : 0.02250902, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.078, "name" : "YDR429C", "COMMON" : "TIF35", "gal4RGexp" : -0.209, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "381", "degree_layout" : 5, "gal80Rexp" : 0.124, "gal1RGsig" : 0.0017854, "Eccentricity" : 19, "gal4RGsig" : 0.0055302, "shared_name" : "YFL017C", "TopologicalCoefficient" : 0.2, "SUID" : 381, "SelfLoops" : 0, "NumberOfDirectedEdges" : 5, "AverageShortestPathLength" : 9.45564516, "selected" : false, "gal80Rsig" : 0.050323, "ClosenessCentrality" : 0.10575693, "Degree" : 5, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.68682796, "Stress" : 6282, "BetweennessCentrality" : 0.0426128, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.131, "name" : "YFL017C", "COMMON" : "GNA1", "gal4RGexp" : 0.122, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.6 } }, { "data" : { "id" : "380", "degree_layout" : 2, "gal80Rexp" : -0.146, "gal1RGsig" : 0.0018696, "Eccentricity" : 2, "gal4RGsig" : 6.2814E-4, "shared_name" : "YAL003W", "TopologicalCoefficient" : 1.0, "SUID" : 380, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.33333333, "selected" : false, "gal80Rsig" : 0.013062, "ClosenessCentrality" : 0.75, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.83333333, "Stress" : 2, "BetweennessCentrality" : 0.16666667, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.157, "name" : "YAL003W", "COMMON" : "EFB1", "gal4RGexp" : -0.2, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "379", "degree_layout" : 2, "gal80Rexp" : -0.036, "gal1RGsig" : 9.8446E-6, "Eccentricity" : 26, "gal4RGsig" : 0.0050114, "shared_name" : "YOL123W", "TopologicalCoefficient" : 0.5, "SUID" : 379, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 15.36290323, "selected" : false, "gal80Rsig" : 0.59496, "ClosenessCentrality" : 0.06509186, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.46804062, "Stress" : 1970, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.245, "name" : "YOL123W", "COMMON" : "HRP1", "gal4RGexp" : 0.126, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "378", "degree_layout" : 1, "gal80Rexp" : 0.281, "gal1RGsig" : 0.0013639, "Eccentricity" : 27, "gal4RGsig" : 0.0040902, "shared_name" : "YGL044C", "TopologicalCoefficient" : 0.0, "SUID" : 378, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 16.35887097, "selected" : false, "gal80Rsig" : 0.0057448, "ClosenessCentrality" : 0.06112891, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.43115293, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.162, "name" : "YGL044C", "COMMON" : "RNA15", "gal4RGexp" : -0.211, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "377", "degree_layout" : 1, "gal80Rexp" : 0.623, "gal1RGsig" : 0.0019352, "Eccentricity" : 3, "gal4RGsig" : 5.2826E-6, "shared_name" : "YPL211W", "TopologicalCoefficient" : 0.0, "SUID" : 377, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.0, "selected" : false, "gal80Rsig" : 1.5609E-4, "ClosenessCentrality" : 0.5, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66666667, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.231, "name" : "YPL211W", "COMMON" : "NIP7", "gal4RGexp" : -0.504, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "376", "degree_layout" : 3, "gal80Rexp" : -0.171, "gal1RGsig" : 0.093717, "Eccentricity" : 2, "gal4RGsig" : 0.01294, "shared_name" : "YGR014W", "TopologicalCoefficient" : 0.66666667, "SUID" : 376, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 1.25, "selected" : false, "gal80Rsig" : 0.031836, "ClosenessCentrality" : 0.8, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.91666667, "Stress" : 10, "BetweennessCentrality" : 0.58333333, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.066, "name" : "YGR014W", "COMMON" : "MSB2", "gal4RGexp" : -0.131, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.66666667 } }, { "data" : { "id" : "375", "degree_layout" : 2, "gal80Rexp" : 0.46, "gal1RGsig" : 0.21701, "Eccentricity" : 2, "gal4RGsig" : 0.0092841, "shared_name" : "YJL030W", "TopologicalCoefficient" : 0.75, "SUID" : 375, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 0.0045437, "ClosenessCentrality" : 0.66666667, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.83333333, "Stress" : 4, "BetweennessCentrality" : 0.16666667, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.08, "name" : "YJL030W", "COMMON" : "MAD2", "gal4RGexp" : -0.271, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "374", "degree_layout" : 2, "gal80Rexp" : -0.208, "gal1RGsig" : 2.3655E-9, "Eccentricity" : 3, "gal4RGsig" : 0.020857, "shared_name" : "YGL229C", "TopologicalCoefficient" : 1.0, "SUID" : 374, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.75, "selected" : false, "gal80Rsig" : 0.28721, "ClosenessCentrality" : 0.57142857, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75, "Stress" : 2, "BetweennessCentrality" : 0.08333333, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.521, "name" : "YGL229C", "COMMON" : "SAP4", "gal4RGexp" : 0.171, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "373", "degree_layout" : 2, "gal80Rexp" : 0.084, "gal1RGsig" : 0.14469, "Eccentricity" : 2, "gal4RGsig" : 0.046575, "shared_name" : "YJL013C", "TopologicalCoefficient" : 0.75, "SUID" : 373, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 0.52778, "ClosenessCentrality" : 0.66666667, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.83333333, "Stress" : 4, "BetweennessCentrality" : 0.16666667, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.072, "name" : "YJL013C", "COMMON" : "MAD3", "gal4RGexp" : -0.154, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "372", "degree_layout" : 1, "gal80Rexp" : -0.34, "gal1RGsig" : 0.039575, "Eccentricity" : 21, "gal4RGsig" : 0.43554, "shared_name" : "YGR203W", "TopologicalCoefficient" : 0.0, "SUID" : 372, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.56854839, "selected" : false, "gal80Rsig" : 0.22451, "ClosenessCentrality" : 0.10450906, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.68264636, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.141, "name" : "YGR203W", "COMMON" : "YGR203W", "gal4RGexp" : -0.085, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "371", "degree_layout" : 5, "gal80Rexp" : 0.181, "gal1RGsig" : 0.013072, "Eccentricity" : 20, "gal4RGsig" : 4.9035E-4, "shared_name" : "YIL061C", "TopologicalCoefficient" : 0.2, "SUID" : 371, "SelfLoops" : 0, "NumberOfDirectedEdges" : 5, "AverageShortestPathLength" : 8.57258065, "selected" : false, "gal80Rsig" : 0.28119, "ClosenessCentrality" : 0.11665099, "Degree" : 5, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71953405, "Stress" : 70312, "BetweennessCentrality" : 0.15820029, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.165, "name" : "YIL061C", "COMMON" : "SNP1", "gal4RGexp" : -0.635, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.8 } }, { "data" : { "id" : "370", "degree_layout" : 2, "gal80Rexp" : -0.091, "gal1RGsig" : 0.28551, "Eccentricity" : 17, "gal4RGsig" : 1.832E-4, "shared_name" : "YCR084C", "TopologicalCoefficient" : 0.5, "SUID" : 370, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.79435484, "selected" : false, "gal80Rsig" : 0.69411, "ClosenessCentrality" : 0.12829798, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74835723, "Stress" : 1038, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.044, "name" : "YCR084C", "COMMON" : "TUP1", "gal4RGexp" : 0.704, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.5 } }, { "data" : { "id" : "369", "degree_layout" : 1, "gal80Rexp" : 0.077, "gal1RGsig" : 0.009167, "Eccentricity" : 18, "gal4RGsig" : 0.92034, "shared_name" : "YBR112C", "TopologicalCoefficient" : 0.0, "SUID" : 369, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.79032258, "selected" : false, "gal80Rsig" : 0.17771, "ClosenessCentrality" : 0.11376147, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71146953, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.108, "name" : "YBR112C", "COMMON" : "SSN6", "gal4RGexp" : -0.004, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "368", "degree_layout" : 6, "gal80Rexp" : 0.301, "gal1RGsig" : 0.0012873, "Eccentricity" : 16, "gal4RGsig" : 0.11481, "shared_name" : "YCL067C", "TopologicalCoefficient" : 0.26315789, "SUID" : 368, "SelfLoops" : 0, "NumberOfDirectedEdges" : 6, "AverageShortestPathLength" : 6.80645161, "selected" : false, "gal80Rsig" : 0.0027555, "ClosenessCentrality" : 0.14691943, "Degree" : 6, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.26666667, "Radiality" : 0.78494624, "Stress" : 2084, "BetweennessCentrality" : 0.01614536, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.169, "name" : "YCL067C", "COMMON" : "ALPHA2", "gal4RGexp" : -0.085, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.16666667 } }, { "data" : { "id" : "367", "degree_layout" : 2, "gal80Rexp" : 0.151, "gal1RGsig" : 7.0527E-5, "Eccentricity" : 26, "gal4RGsig" : 0.0037591, "shared_name" : "YER112W", "TopologicalCoefficient" : 1.0, "SUID" : 367, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 13.09274194, "selected" : false, "gal80Rsig" : 0.13653, "ClosenessCentrality" : 0.0763782, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.55212067, "Stress" : 2, "BetweennessCentrality" : 8.16E-6, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.193, "name" : "YER112W", "COMMON" : "LSM4", "gal4RGexp" : -0.181, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "366", "degree_layout" : 4, "gal80Rexp" : -0.243, "gal1RGsig" : 2.7303E-6, "Eccentricity" : 25, "gal4RGsig" : 1.0533E-4, "shared_name" : "YOR167C", "TopologicalCoefficient" : 0.375, "SUID" : 366, "SelfLoops" : 0, "NumberOfDirectedEdges" : 4, "AverageShortestPathLength" : 12.10483871, "selected" : false, "gal80Rsig" : 4.8633E-5, "ClosenessCentrality" : 0.08261159, "Degree" : 4, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.58870968, "Stress" : 8136, "BetweennessCentrality" : 0.01199882, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.374, "name" : "YOR167C", "COMMON" : "RPS28A", "gal4RGexp" : -0.239, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.25 } }, { "data" : { "id" : "365", "degree_layout" : 7, "gal80Rexp" : 0.294, "gal1RGsig" : 0.6011, "Eccentricity" : 24, "gal4RGsig" : 0.070701, "shared_name" : "YJR022W", "TopologicalCoefficient" : 0.19642857, "SUID" : 365, "SelfLoops" : 0, "NumberOfDirectedEdges" : 7, "AverageShortestPathLength" : 11.13306452, "selected" : false, "gal80Rsig" : 0.14344, "ClosenessCentrality" : 0.08982253, "Degree" : 7, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.62470131, "Stress" : 47386, "BetweennessCentrality" : 0.12017603, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.059, "name" : "YJR022W", "COMMON" : "LSM8", "gal4RGexp" : -0.435, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.57142857 } }, { "data" : { "id" : "364", "degree_layout" : 2, "gal80Rexp" : 0.647, "gal1RGsig" : 1.1825E-5, "Eccentricity" : 25, "gal4RGsig" : 0.0089039, "shared_name" : "YNR050C", "TopologicalCoefficient" : 0.5, "SUID" : 364, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 12.10483871, "selected" : false, "gal80Rsig" : 1.1773E-7, "ClosenessCentrality" : 0.08261159, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.58870968, "Stress" : 8154, "BetweennessCentrality" : 0.02399765, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.223, "name" : "YNR050C", "COMMON" : "LYS9", "gal4RGexp" : -0.131, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "363", "degree_layout" : 1, "gal80Rexp" : 0.594, "gal1RGsig" : 1.425E-5, "Eccentricity" : 25, "gal4RGsig" : 0.0031926, "shared_name" : "YNL050C", "TopologicalCoefficient" : 0.0, "SUID" : 363, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 12.12903226, "selected" : false, "gal80Rsig" : 7.5124E-4, "ClosenessCentrality" : 0.08244681, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.58781362, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.301, "name" : "YNL050C", "COMMON" : "YNL050C", "gal4RGexp" : -0.448, "IsSingleNode" : false, "NeighborhoodConnectivity" : 7.0 } }, { "data" : { "id" : "362", "degree_layout" : 2, "gal80Rexp" : 0.275, "gal1RGsig" : 3.0657E-5, "Eccentricity" : 23, "gal4RGsig" : 0.0052925, "shared_name" : "YEL015W", "TopologicalCoefficient" : 0.5, "SUID" : 362, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 11.18951613, "selected" : false, "gal80Rsig" : 0.032829, "ClosenessCentrality" : 0.08936937, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.62261051, "Stress" : 9804, "BetweennessCentrality" : 0.04554212, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.222, "name" : "YEL015W", "COMMON" : "YEL015W", "gal4RGexp" : -0.171, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.5 } }, { "data" : { "id" : "361", "degree_layout" : 4, "gal80Rexp" : -0.17, "gal1RGsig" : 1.6086E-4, "Eccentricity" : 25, "gal4RGsig" : 2.0632E-4, "shared_name" : "YLR264W", "TopologicalCoefficient" : 0.375, "SUID" : 361, "SelfLoops" : 0, "NumberOfDirectedEdges" : 4, "AverageShortestPathLength" : 12.10483871, "selected" : false, "gal80Rsig" : 0.21059, "ClosenessCentrality" : 0.08261159, "Degree" : 4, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.58870968, "Stress" : 8136, "BetweennessCentrality" : 0.01199882, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.259, "name" : "YLR264W", "COMMON" : "RPS28B", "gal4RGexp" : -0.299, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.25 } }, { "data" : { "id" : "360", "degree_layout" : 3, "gal80Rexp" : -0.012, "gal1RGsig" : 2.1301E-7, "Eccentricity" : 23, "gal4RGsig" : 0.0048783, "shared_name" : "YNR053C", "TopologicalCoefficient" : 0.33333333, "SUID" : 360, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 10.59274194, "selected" : false, "gal80Rsig" : 0.90581, "ClosenessCentrality" : 0.09440426, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.64471326, "Stress" : 50456, "BetweennessCentrality" : 0.11341401, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.352, "name" : "YNR053C", "COMMON" : "YNR053C", "gal4RGexp" : -0.238, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "359", "degree_layout" : 1, "gal80Rexp" : 0.182, "gal1RGsig" : 0.56099, "Eccentricity" : 22, "gal4RGsig" : 0.18379, "shared_name" : "YER116C", "TopologicalCoefficient" : 0.0, "SUID" : 359, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 10.27419355, "selected" : false, "gal80Rsig" : 0.13915, "ClosenessCentrality" : 0.09733124, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.65651135, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.029, "name" : "YER116C", "COMMON" : "YER116C", "gal4RGexp" : -0.11, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "358", "degree_layout" : 3, "gal80Rexp" : 0.593, "gal1RGsig" : 4.0439E-5, "Eccentricity" : 21, "gal4RGsig" : 0.22129, "shared_name" : "YDL013W", "TopologicalCoefficient" : 0.33333333, "SUID" : 358, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 9.27822581, "selected" : false, "gal80Rsig" : 2.0836E-5, "ClosenessCentrality" : 0.10777923, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.69339904, "Stress" : 60158, "BetweennessCentrality" : 0.13296195, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.214, "name" : "YDL013W", "COMMON" : "HEX3", "gal4RGexp" : 0.073, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "357", "degree_layout" : 2, "gal80Rexp" : -0.063, "gal1RGsig" : 0.27844, "Eccentricity" : 18, "gal4RGsig" : 0.029538, "shared_name" : "YNL307C", "TopologicalCoefficient" : 0.5, "SUID" : 357, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.91532258, "selected" : false, "gal80Rsig" : 0.37572, "ClosenessCentrality" : 0.12633724, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74387694, "Stress" : 614, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.046, "name" : "YNL307C", "COMMON" : "MCK1", "gal4RGexp" : 0.094, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "356", "degree_layout" : 3, "gal80Rexp" : -0.453, "gal1RGsig" : 1.3173E-10, "Eccentricity" : 17, "gal4RGsig" : 0.10377, "shared_name" : "YAL038W", "TopologicalCoefficient" : 0.42592593, "SUID" : 356, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 6.92741935, "selected" : false, "gal80Rsig" : 1.5489E-7, "ClosenessCentrality" : 0.1443539, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78046595, "Stress" : 16638, "BetweennessCentrality" : 0.04462853, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.652, "name" : "YAL038W", "COMMON" : "CDC19", "gal4RGexp" : 0.123, "IsSingleNode" : false, "NeighborhoodConnectivity" : 8.66666667 } }, { "data" : { "id" : "355", "degree_layout" : 17, "gal80Rexp" : 0.234, "gal1RGsig" : 0.024692, "Eccentricity" : 16, "gal4RGsig" : 0.93493, "shared_name" : "YNL216W", "TopologicalCoefficient" : 0.09803922, "SUID" : 355, "SelfLoops" : 0, "NumberOfDirectedEdges" : 17, "AverageShortestPathLength" : 6.29032258, "selected" : false, "gal80Rsig" : 0.54155, "ClosenessCentrality" : 0.15897436, "Degree" : 17, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.80406213, "Stress" : 111754, "BetweennessCentrality" : 0.35844736, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.205, "name" : "YNL216W", "COMMON" : "RAP1", "gal4RGexp" : 0.015, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.88235294 } }, { "data" : { "id" : "354", "degree_layout" : 3, "gal80Rexp" : -0.746, "gal1RGsig" : 7.3129E-10, "Eccentricity" : 17, "gal4RGsig" : 2.4163E-5, "shared_name" : "YCR012W", "TopologicalCoefficient" : 0.42592593, "SUID" : 354, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 6.92741935, "selected" : false, "gal80Rsig" : 4.2315E-13, "ClosenessCentrality" : 0.1443539, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78046595, "Stress" : 16638, "BetweennessCentrality" : 0.04462853, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.668, "name" : "YCR012W", "COMMON" : "PGK1", "gal4RGexp" : 0.329, "IsSingleNode" : false, "NeighborhoodConnectivity" : 8.66666667 } }, { "data" : { "id" : "353", "degree_layout" : 2, "gal80Rexp" : -0.171, "gal1RGsig" : 6.5621E-11, "Eccentricity" : 17, "gal4RGsig" : 0.0079977, "shared_name" : "YGR254W", "TopologicalCoefficient" : 0.64705882, "SUID" : 353, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.94354839, "selected" : false, "gal80Rsig" : 0.025056, "ClosenessCentrality" : 0.14401858, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.77986858, "Stress" : 15414, "BetweennessCentrality" : 0.0285648, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.737, "name" : "YGR254W", "COMMON" : "ENO1", "gal4RGexp" : 0.259, "IsSingleNode" : false, "NeighborhoodConnectivity" : 12.0 } }, { "data" : { "id" : "352", "degree_layout" : 2, "gal80Rexp" : -0.217, "gal1RGsig" : 7.175E-11, "Eccentricity" : 17, "gal4RGsig" : 0.011477, "shared_name" : "YHR174W", "TopologicalCoefficient" : 0.64705882, "SUID" : 352, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.94354839, "selected" : false, "gal80Rsig" : 0.0015357, "ClosenessCentrality" : 0.14401858, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.77986858, "Stress" : 15414, "BetweennessCentrality" : 0.0285648, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.816, "name" : "YHR174W", "COMMON" : "ENO2", "gal4RGexp" : 0.241, "IsSingleNode" : false, "NeighborhoodConnectivity" : 12.0 } }, { "data" : { "id" : "351", "degree_layout" : 2, "gal80Rexp" : -0.146, "gal1RGsig" : 4.6153E-8, "Eccentricity" : 17, "gal4RGsig" : 1.1962E-4, "shared_name" : "YIL133C", "TopologicalCoefficient" : 0.52272727, "SUID" : 351, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.22177419, "selected" : false, "gal80Rsig" : 0.012589, "ClosenessCentrality" : 0.13847013, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.76956392, "Stress" : 9108, "BetweennessCentrality" : 0.03121327, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.453, "name" : "YIL133C", "COMMON" : "RPL16A", "gal4RGexp" : -0.311, "IsSingleNode" : false, "NeighborhoodConnectivity" : 12.5 } }, { "data" : { "id" : "350", "degree_layout" : 3, "gal80Rexp" : -0.184, "gal1RGsig" : 6.9512E-11, "Eccentricity" : 15, "gal4RGsig" : 0.23784, "shared_name" : "YLR044C", "TopologicalCoefficient" : 0.33333333, "SUID" : 350, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 6.1733871, "selected" : false, "gal80Rsig" : 0.0064407, "ClosenessCentrality" : 0.16198563, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.80839307, "Stress" : 82528, "BetweennessCentrality" : 0.2780402, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.62, "name" : "YLR044C", "COMMON" : "PDC1", "gal4RGexp" : -0.071, "IsSingleNode" : false, "NeighborhoodConnectivity" : 10.33333333 } }, { "data" : { "id" : "349", "degree_layout" : 1, "gal80Rexp" : -0.62, "gal1RGsig" : 1.7242E-7, "Eccentricity" : 17, "gal4RGsig" : 3.0221E-4, "shared_name" : "YOL120C", "TopologicalCoefficient" : 0.0, "SUID" : 349, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 7.28629032, "selected" : false, "gal80Rsig" : 3.898E-9, "ClosenessCentrality" : 0.13724405, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.76717443, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.409, "name" : "YOL120C", "COMMON" : "RPL18A", "gal4RGexp" : -0.225, "IsSingleNode" : false, "NeighborhoodConnectivity" : 17.0 } }, { "data" : { "id" : "348", "degree_layout" : 1, "gal80Rexp" : -0.271, "gal1RGsig" : 7.3086E-7, "Eccentricity" : 17, "gal4RGsig" : 1.0721E-4, "shared_name" : "YNL301C", "TopologicalCoefficient" : 0.0, "SUID" : 348, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 7.28629032, "selected" : false, "gal80Rsig" : 1.2267E-5, "ClosenessCentrality" : 0.13724405, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.76717443, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.379, "name" : "YNL301C", "COMMON" : "RPL18B", "gal4RGexp" : -0.245, "IsSingleNode" : false, "NeighborhoodConnectivity" : 17.0 } }, { "data" : { "id" : "347", "degree_layout" : 3, "gal80Rexp" : 0.29, "gal1RGsig" : 3.8988E-11, "Eccentricity" : 17, "gal4RGsig" : 2.3894E-7, "shared_name" : "YCL030C", "TopologicalCoefficient" : 0.33333333, "SUID" : 347, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 6.77822581, "selected" : false, "gal80Rsig" : 0.0016438, "ClosenessCentrality" : 0.14753123, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78599164, "Stress" : 18164, "BetweennessCentrality" : 0.09883491, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -1.067, "name" : "YCL030C", "COMMON" : "HIS4", "gal4RGexp" : -0.898, "IsSingleNode" : false, "NeighborhoodConnectivity" : 9.0 } }, { "data" : { "id" : "346", "degree_layout" : 1, "gal80Rexp" : -0.723, "gal1RGsig" : 8.1757E-7, "Eccentricity" : 17, "gal4RGsig" : 8.7039E-6, "shared_name" : "YDR171W", "TopologicalCoefficient" : 0.0, "SUID" : 346, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 7.28629032, "selected" : false, "gal80Rsig" : 1.4287E-12, "ClosenessCentrality" : 0.13724405, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.76717443, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.31, "name" : "YDR171W", "COMMON" : "HSP42", "gal4RGexp" : 0.3, "IsSingleNode" : false, "NeighborhoodConnectivity" : 17.0 } }, { "data" : { "id" : "345", "degree_layout" : 2, "gal80Rexp" : -0.543, "gal1RGsig" : 2.3291E-7, "Eccentricity" : 17, "gal4RGsig" : 0.088763, "shared_name" : "YBR093C", "TopologicalCoefficient" : 0.5, "SUID" : 345, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.27016129, "selected" : false, "gal80Rsig" : 3.6198E-13, "ClosenessCentrality" : 0.13754853, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.7677718, "Stress" : 2092, "BetweennessCentrality" : 0.01606373, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.704, "name" : "YBR093C", "COMMON" : "PHO5", "gal4RGexp" : 0.075, "IsSingleNode" : false, "NeighborhoodConnectivity" : 9.5 } }, { "data" : { "id" : "344", "degree_layout" : 1, "gal80Rexp" : -0.051, "gal1RGsig" : 1.8517E-5, "Eccentricity" : 17, "gal4RGsig" : 2.1168E-6, "shared_name" : "YER074W", "TopologicalCoefficient" : 0.0, "SUID" : 344, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 7.28629032, "selected" : false, "gal80Rsig" : 0.44216, "ClosenessCentrality" : 0.13724405, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.76717443, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.262, "name" : "YER074W", "COMMON" : "RPS24A", "gal4RGexp" : -0.449, "IsSingleNode" : false, "NeighborhoodConnectivity" : 17.0 } }, { "data" : { "id" : "343", "degree_layout" : 1, "gal80Rexp" : -0.018, "gal1RGsig" : 7.7038E-6, "Eccentricity" : 17, "gal4RGsig" : 1.0186E-6, "shared_name" : "YIL069C", "TopologicalCoefficient" : 0.0, "SUID" : 343, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 7.28629032, "selected" : false, "gal80Rsig" : 0.74944, "ClosenessCentrality" : 0.13724405, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.76717443, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.313, "name" : "YIL069C", "COMMON" : "RPS24B", "gal4RGexp" : -0.467, "IsSingleNode" : false, "NeighborhoodConnectivity" : 17.0 } }, { "data" : { "id" : "342", "degree_layout" : 2, "gal80Rexp" : 0.076, "gal1RGsig" : 4.4813E-4, "Eccentricity" : 17, "gal4RGsig" : 9.2415E-7, "shared_name" : "YOL127W", "TopologicalCoefficient" : 0.52272727, "SUID" : 342, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.22177419, "selected" : false, "gal80Rsig" : 0.17224, "ClosenessCentrality" : 0.13847013, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.76956392, "Stress" : 9108, "BetweennessCentrality" : 0.03121327, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.192, "name" : "YOL127W", "COMMON" : "RPL25", "gal4RGexp" : -0.425, "IsSingleNode" : false, "NeighborhoodConnectivity" : 12.5 } }, { "data" : { "id" : "341", "degree_layout" : 2, "gal80Rexp" : -0.728, "gal1RGsig" : 3.6468E-10, "Eccentricity" : 17, "gal4RGsig" : 0.48903, "shared_name" : "YDR050C", "TopologicalCoefficient" : 0.64705882, "SUID" : 341, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.94354839, "selected" : false, "gal80Rsig" : 8.6735E-12, "ClosenessCentrality" : 0.14401858, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.77986858, "Stress" : 15414, "BetweennessCentrality" : 0.0285648, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.584, "name" : "YDR050C", "COMMON" : "TPI1", "gal4RGexp" : 0.053, "IsSingleNode" : false, "NeighborhoodConnectivity" : 12.0 } }, { "data" : { "id" : "340", "degree_layout" : 2, "gal80Rexp" : -0.322, "gal1RGsig" : 0.0039297, "Eccentricity" : 17, "gal4RGsig" : 3.2186E-4, "shared_name" : "YOL086C", "TopologicalCoefficient" : 0.64705882, "SUID" : 340, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.94354839, "selected" : false, "gal80Rsig" : 1.3104E-5, "ClosenessCentrality" : 0.14401858, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.77986858, "Stress" : 15414, "BetweennessCentrality" : 0.0285648, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.113, "name" : "YOL086C", "COMMON" : "ADH1", "gal4RGexp" : 0.245, "IsSingleNode" : false, "NeighborhoodConnectivity" : 12.0 } }, { "data" : { "id" : "339", "degree_layout" : 2, "gal80Rexp" : 0.003, "gal1RGsig" : 0.18782, "Eccentricity" : 20, "gal4RGsig" : 0.55374, "shared_name" : "YAL030W", "TopologicalCoefficient" : 0.625, "SUID" : 339, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 10.64112903, "selected" : false, "gal80Rsig" : 0.95396, "ClosenessCentrality" : 0.09397499, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.64292115, "Stress" : 602, "BetweennessCentrality" : 0.00401593, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.05, "name" : "YAL030W", "COMMON" : "SNC1", "gal4RGexp" : 0.027, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.5 } }, { "data" : { "id" : "338", "degree_layout" : 2, "gal80Rexp" : 0.179, "gal1RGsig" : 5.6125E-6, "Eccentricity" : 21, "gal4RGsig" : 8.6796E-6, "shared_name" : "YER143W", "TopologicalCoefficient" : 1.0, "SUID" : 338, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 11.62903226, "selected" : false, "gal80Rsig" : 0.018361, "ClosenessCentrality" : 0.08599168, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.60633214, "Stress" : 2, "BetweennessCentrality" : 1.632E-5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.282, "name" : "YER143W", "COMMON" : "DDI1", "gal4RGexp" : 0.255, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "337", "degree_layout" : 2, "gal80Rexp" : 0.559, "gal1RGsig" : 6.9534E-6, "Eccentricity" : 20, "gal4RGsig" : 0.06928, "shared_name" : "YOR327C", "TopologicalCoefficient" : 0.625, "SUID" : 337, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 10.64112903, "selected" : false, "gal80Rsig" : 4.4793E-5, "ClosenessCentrality" : 0.09397499, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.64292115, "Stress" : 602, "BetweennessCentrality" : 0.00401593, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.249, "name" : "YOR327C", "COMMON" : "SNC2", "gal4RGexp" : -0.112, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.5 } }, { "data" : { "id" : "336", "degree_layout" : 1, "gal80Rexp" : 0.359, "gal1RGsig" : 3.7312E-10, "Eccentricity" : 1, "gal4RGsig" : 1.2051E-8, "shared_name" : "YER062C", "TopologicalCoefficient" : 0.0, "SUID" : 336, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 5.8643E-6, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.486, "name" : "YER062C", "COMMON" : "HOR2", "gal4RGexp" : -0.942, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "335", "degree_layout" : 1, "gal80Rexp" : 0.597, "gal1RGsig" : 6.0394E-10, "Eccentricity" : 1, "gal4RGsig" : 8.9209E-7, "shared_name" : "YPL201C", "TopologicalCoefficient" : 0.0, "SUID" : 335, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.0043411, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 2.058, "name" : "YPL201C", "COMMON" : "YPL201C", "gal4RGexp" : 1.18, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "334", "degree_layout" : 7, "gal80Rexp" : 0.991, "gal1RGsig" : 0.27226, "Eccentricity" : 17, "gal4RGsig" : 1.6949E-5, "shared_name" : "YDR412W", "TopologicalCoefficient" : 0.14285714, "SUID" : 334, "SelfLoops" : 0, "NumberOfDirectedEdges" : 7, "AverageShortestPathLength" : 7.13306452, "selected" : false, "gal80Rsig" : 2.4711E-5, "ClosenessCentrality" : 0.1401922, "Degree" : 7, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.77284946, "Stress" : 55770, "BetweennessCentrality" : 0.30517827, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.067, "name" : "YDR412W", "COMMON" : "YDR412W", "gal4RGexp" : -0.641, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.85714286 } }, { "data" : { "id" : "333", "degree_layout" : 2, "gal80Rexp" : 0.381, "gal1RGsig" : 0.32121, "Eccentricity" : 18, "gal4RGsig" : 0.080473, "shared_name" : "YCR086W", "TopologicalCoefficient" : 0.5, "SUID" : 333, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.10483871, "selected" : false, "gal80Rsig" : 0.17239, "ClosenessCentrality" : 0.12338308, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.73685783, "Stress" : 3084, "BetweennessCentrality" : 0.02399765, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.081, "name" : "YCR086W", "COMMON" : "YCR086W", "gal4RGexp" : -0.397, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.5 } }, { "data" : { "id" : "332", "degree_layout" : 3, "gal80Rexp" : 0.173, "gal1RGsig" : 1.959E-4, "Eccentricity" : 18, "gal4RGsig" : 0.013422, "shared_name" : "YGL013C", "TopologicalCoefficient" : 0.38095238, "SUID" : 332, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 8.10483871, "selected" : false, "gal80Rsig" : 0.0945, "ClosenessCentrality" : 0.12338308, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.73685783, "Stress" : 4106, "BetweennessCentrality" : 0.02401397, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.185, "name" : "YGL013C", "COMMON" : "PDR1", "gal4RGexp" : -0.152, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.66666667 } }, { "data" : { "id" : "331", "degree_layout" : 2, "gal80Rexp" : 0.712, "gal1RGsig" : 7.6184E-7, "Eccentricity" : 18, "gal4RGsig" : 0.0048407, "shared_name" : "YLR117C", "TopologicalCoefficient" : 0.5, "SUID" : 331, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.12096774, "selected" : false, "gal80Rsig" : 6.8931E-6, "ClosenessCentrality" : 0.12313803, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.73626045, "Stress" : 1032, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.326, "name" : "YLR117C", "COMMON" : "SYF3", "gal4RGexp" : -0.234, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "330", "degree_layout" : 2, "gal80Rexp" : -0.342, "gal1RGsig" : 3.9246E-6, "Eccentricity" : 16, "gal4RGsig" : 6.2635E-4, "shared_name" : "YPR119W", "TopologicalCoefficient" : 0.5, "SUID" : 330, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.48387097, "selected" : false, "gal80Rsig" : 1.6424E-5, "ClosenessCentrality" : 0.15422886, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.79689367, "Stress" : 54840, "BetweennessCentrality" : 0.29306517, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.234, "name" : "YPR119W", "COMMON" : "CLB2", "gal4RGexp" : -0.279, "IsSingleNode" : false, "NeighborhoodConnectivity" : 12.5 } }, { "data" : { "id" : "329", "degree_layout" : 2, "gal80Rexp" : -0.038, "gal1RGsig" : 0.32352, "Eccentricity" : 1, "gal4RGsig" : 0.012945, "shared_name" : "YDL014W", "TopologicalCoefficient" : 1.0, "SUID" : 329, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.62955, "ClosenessCentrality" : 1.0, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.039, "name" : "YDL014W", "COMMON" : "NOP1", "gal4RGexp" : -0.176, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "328", "degree_layout" : 2, "gal80Rexp" : -0.157, "gal1RGsig" : 0.055533, "Eccentricity" : 1, "gal4RGsig" : 1.7322E-6, "shared_name" : "YOR310C", "TopologicalCoefficient" : 1.0, "SUID" : 328, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.041898, "ClosenessCentrality" : 1.0, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.073, "name" : "YOR310C", "COMMON" : "NOP5", "gal4RGexp" : -0.499, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "327", "degree_layout" : 3, "gal80Rexp" : -0.167, "gal1RGsig" : 1.1807E-4, "Eccentricity" : 16, "gal4RGsig" : 0.36733, "shared_name" : "YER179W", "TopologicalCoefficient" : 0.33333333, "SUID" : 327, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 7.07258065, "selected" : false, "gal80Rsig" : 0.13801, "ClosenessCentrality" : 0.14139111, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.77508961, "Stress" : 9276, "BetweennessCentrality" : 0.04783067, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.219, "name" : "YER179W", "COMMON" : "DMC1", "gal4RGexp" : 0.059, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "326", "degree_layout" : 1, "gal80Rexp" : -0.351, "gal1RGsig" : 1.2585E-11, "Eccentricity" : 17, "gal4RGsig" : 0.58514, "shared_name" : "YLR134W", "TopologicalCoefficient" : 0.0, "SUID" : 326, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.06854839, "selected" : false, "gal80Rsig" : 1.2076E-8, "ClosenessCentrality" : 0.12393803, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.73820191, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.645, "name" : "YLR134W", "COMMON" : "PDC5", "gal4RGexp" : 0.027, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "325", "degree_layout" : 2, "gal80Rexp" : 0.197, "gal1RGsig" : 6.9834E-5, "Eccentricity" : 17, "gal4RGsig" : 0.66796, "shared_name" : "YIL105C", "TopologicalCoefficient" : 0.5, "SUID" : 325, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.97983871, "selected" : false, "gal80Rsig" : 0.016148, "ClosenessCentrality" : 0.12531582, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74148746, "Stress" : 7186, "BetweennessCentrality" : 0.03279541, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.196, "name" : "YIL105C", "COMMON" : "YIL105C", "gal4RGexp" : 0.023, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "324", "degree_layout" : 3, "gal80Rexp" : -0.237, "gal1RGsig" : 0.60784, "Eccentricity" : 18, "gal4RGsig" : 0.11638, "shared_name" : "YOR361C", "TopologicalCoefficient" : 0.46666667, "SUID" : 324, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 9.85483871, "selected" : false, "gal80Rsig" : 0.0031451, "ClosenessCentrality" : 0.101473, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.33333333, "Radiality" : 0.67204301, "Stress" : 4108, "BetweennessCentrality" : 0.01710209, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.02, "name" : "YOR361C", "COMMON" : "PRT1", "gal4RGexp" : -0.085, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.66666667 } }, { "data" : { "id" : "323", "degree_layout" : 3, "gal80Rexp" : -0.123, "gal1RGsig" : 0.82076, "Eccentricity" : 19, "gal4RGsig" : 2.0319E-4, "shared_name" : "YMR309C", "TopologicalCoefficient" : 0.5, "SUID" : 323, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 9.78629032, "selected" : false, "gal80Rsig" : 0.1009, "ClosenessCentrality" : 0.10218377, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.33333333, "Radiality" : 0.67458184, "Stress" : 5122, "BetweennessCentrality" : 0.01979124, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.009, "name" : "YMR309C", "COMMON" : "NIP1", "gal4RGexp" : -0.248, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.33333333 } }, { "data" : { "id" : "322", "degree_layout" : 2, "gal80Rexp" : 0.296, "gal1RGsig" : 5.9183E-9, "Eccentricity" : 2, "gal4RGsig" : 8.2407E-8, "shared_name" : "YOR326W", "TopologicalCoefficient" : 0.5, "SUID" : 322, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 1.1583E-4, "ClosenessCentrality" : 0.66666667, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.83333333, "Stress" : 6, "BetweennessCentrality" : 0.5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.51, "name" : "YOR326W", "COMMON" : "MYO2", "gal4RGexp" : 0.432, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "321", "degree_layout" : 1, "gal80Rexp" : -0.059, "gal1RGsig" : 1.3141E-5, "Eccentricity" : 3, "gal4RGsig" : 9.2389E-6, "shared_name" : "YGL106W", "TopologicalCoefficient" : 0.0, "SUID" : 321, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.25, "selected" : false, "gal80Rsig" : 0.29618, "ClosenessCentrality" : 0.44444444, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.58333333, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.262, "name" : "YGL106W", "COMMON" : "MLC1", "gal4RGexp" : -0.327, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "320", "degree_layout" : 2, "gal80Rexp" : -0.608, "gal1RGsig" : 0.52469, "Eccentricity" : 16, "gal4RGsig" : 0.4995, "shared_name" : "YMR186W", "TopologicalCoefficient" : 0.5625, "SUID" : 320, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.85080645, "selected" : false, "gal80Rsig" : 1.6833E-14, "ClosenessCentrality" : 0.12737545, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74626643, "Stress" : 530, "BetweennessCentrality" : 0.00339559, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.032, "name" : "YMR186W", "COMMON" : "HSC82", "gal4RGexp" : -0.032, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.5 } }, { "data" : { "id" : "319", "degree_layout" : 2, "gal80Rexp" : 0.519, "gal1RGsig" : 0.10014, "Eccentricity" : 17, "gal4RGsig" : 1.5959E-5, "shared_name" : "YBR155W", "TopologicalCoefficient" : 0.75, "SUID" : 319, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.54032258, "selected" : false, "gal80Rsig" : 3.7064E-4, "ClosenessCentrality" : 0.1170916, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.72072879, "Stress" : 82, "BetweennessCentrality" : 6.0402E-4, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.082, "name" : "YBR155W", "COMMON" : "CNS1", "gal4RGexp" : -0.479, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "318", "degree_layout" : 7, "gal80Rexp" : -0.031, "gal1RGsig" : 0.33125, "Eccentricity" : 18, "gal4RGsig" : 0.41727, "shared_name" : "YEL009C", "TopologicalCoefficient" : 0.14285714, "SUID" : 318, "SelfLoops" : 0, "NumberOfDirectedEdges" : 7, "AverageShortestPathLength" : 7.62096774, "selected" : false, "gal80Rsig" : 0.55639, "ClosenessCentrality" : 0.13121693, "Degree" : 7, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75477897, "Stress" : 14390, "BetweennessCentrality" : 0.06299561, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.035, "name" : "YEL009C", "COMMON" : "GCN4", "gal4RGexp" : 0.032, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.57142857 } }, { "data" : { "id" : "317", "degree_layout" : 1, "gal80Rexp" : 0.095, "gal1RGsig" : 0.27002, "Eccentricity" : 19, "gal4RGsig" : 9.4314E-4, "shared_name" : "YMR108W", "TopologicalCoefficient" : 0.0, "SUID" : 317, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.61693548, "selected" : false, "gal80Rsig" : 0.14717, "ClosenessCentrality" : 0.11605054, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71789128, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.04, "name" : "YMR108W", "COMMON" : "ILV2", "gal4RGexp" : -0.358, "IsSingleNode" : false, "NeighborhoodConnectivity" : 7.0 } }, { "data" : { "id" : "316", "degree_layout" : 2, "gal80Rexp" : 0.239, "gal1RGsig" : 0.010979, "Eccentricity" : 17, "gal4RGsig" : 1.7979E-4, "shared_name" : "YOR202W", "TopologicalCoefficient" : 0.5, "SUID" : 316, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.78225806, "selected" : false, "gal80Rsig" : 0.0054895, "ClosenessCentrality" : 0.12849741, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74880526, "Stress" : 1810, "BetweennessCentrality" : 0.00612624, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.432, "name" : "YOR202W", "COMMON" : "HIS3", "gal4RGexp" : -0.71, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.5 } }, { "data" : { "id" : "315", "degree_layout" : 1, "gal80Rexp" : 0.898, "gal1RGsig" : 2.3151E-6, "Eccentricity" : 19, "gal4RGsig" : 1.6549E-7, "shared_name" : "YBR248C", "TopologicalCoefficient" : 0.0, "SUID" : 315, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.61693548, "selected" : false, "gal80Rsig" : 3.3047E-5, "ClosenessCentrality" : 0.11605054, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71789128, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.258, "name" : "YBR248C", "COMMON" : "HIS7", "gal4RGexp" : -1.252, "IsSingleNode" : false, "NeighborhoodConnectivity" : 7.0 } }, { "data" : { "id" : "314", "degree_layout" : 2, "gal80Rexp" : -0.815, "gal1RGsig" : 4.9342E-6, "Eccentricity" : 17, "gal4RGsig" : 4.0958E-7, "shared_name" : "YOL058W", "TopologicalCoefficient" : 0.5, "SUID" : 314, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.87096774, "selected" : false, "gal80Rsig" : 5.9432E-10, "ClosenessCentrality" : 0.12704918, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74551971, "Stress" : 6768, "BetweennessCentrality" : 0.02615237, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.652, "name" : "YOL058W", "COMMON" : "ARG1", "gal4RGexp" : -0.541, "IsSingleNode" : false, "NeighborhoodConnectivity" : 6.0 } }, { "data" : { "id" : "313", "degree_layout" : 1, "gal80Rexp" : 1.202, "gal1RGsig" : 1.522E-9, "Eccentricity" : 19, "gal4RGsig" : 1.4734E-8, "shared_name" : "YMR300C", "TopologicalCoefficient" : 0.0, "SUID" : 313, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.61693548, "selected" : false, "gal80Rsig" : 4.7716E-11, "ClosenessCentrality" : 0.11605054, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71789128, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.514, "name" : "YMR300C", "COMMON" : "ADE4", "gal4RGexp" : -1.296, "IsSingleNode" : false, "NeighborhoodConnectivity" : 7.0 } }, { "data" : { "id" : "312", "degree_layout" : 3, "gal80Rexp" : 0.221, "gal1RGsig" : 0.037256, "Eccentricity" : 26, "gal4RGsig" : 0.39944, "shared_name" : "YMR138W", "TopologicalCoefficient" : 0.33333333, "SUID" : 312, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 13.08467742, "selected" : false, "gal80Rsig" : 0.12805, "ClosenessCentrality" : 0.07642527, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.55241935, "Stress" : 5442, "BetweennessCentrality" : 0.01609638, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.414, "name" : "YMR138W", "COMMON" : "CIN4", "gal4RGexp" : -0.0, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.33333333 } }, { "data" : { "id" : "311", "degree_layout" : 1, "gal80Rexp" : -0.139, "gal1RGsig" : 7.7434E-7, "Eccentricity" : 27, "gal4RGsig" : 2.5233E-6, "shared_name" : "YHR141C", "TopologicalCoefficient" : 0.0, "SUID" : 311, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 14.08064516, "selected" : false, "gal80Rsig" : 0.012998, "ClosenessCentrality" : 0.07101947, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.51553166, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.359, "name" : "YHR141C", "COMMON" : "RPL42B", "gal4RGexp" : -0.371, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "310", "degree_layout" : 1, "gal80Rexp" : -0.486, "gal1RGsig" : 1.4814E-9, "Eccentricity" : 27, "gal4RGsig" : 2.5668E-4, "shared_name" : "YLR109W", "TopologicalCoefficient" : 0.0, "SUID" : 310, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 14.08064516, "selected" : false, "gal80Rsig" : 2.3432E-11, "ClosenessCentrality" : 0.07101947, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.51553166, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.603, "name" : "YLR109W", "COMMON" : "AHP1", "gal4RGexp" : 0.466, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "309", "degree_layout" : 4, "gal80Rexp" : 0.284, "gal1RGsig" : 0.003766, "Eccentricity" : 16, "gal4RGsig" : 0.71364, "shared_name" : "YCL032W", "TopologicalCoefficient" : 0.29545455, "SUID" : 309, "SelfLoops" : 0, "NumberOfDirectedEdges" : 4, "AverageShortestPathLength" : 7.82258065, "selected" : false, "gal80Rsig" : 0.015244, "ClosenessCentrality" : 0.12783505, "Degree" : 4, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.16666667, "Radiality" : 0.74731183, "Stress" : 2454, "BetweennessCentrality" : 0.03196422, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.126, "name" : "YCL032W", "COMMON" : "STE50", "gal4RGexp" : 0.02, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.75 } }, { "data" : { "id" : "308", "degree_layout" : 1, "gal80Rexp" : -0.211, "gal1RGsig" : 0.026191, "Eccentricity" : 17, "gal4RGsig" : 2.0333E-6, "shared_name" : "YDR032C", "TopologicalCoefficient" : 0.0, "SUID" : 308, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.81854839, "selected" : false, "gal80Rsig" : 7.1391E-4, "ClosenessCentrality" : 0.11339735, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71042413, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.113, "name" : "YDR032C", "COMMON" : "YDR032C", "gal4RGexp" : 0.331, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "307", "degree_layout" : 9, "gal80Rexp" : 0.374, "gal1RGsig" : 0.023963, "Eccentricity" : 15, "gal4RGsig" : 0.50139, "shared_name" : "YLR362W", "TopologicalCoefficient" : 0.14444444, "SUID" : 307, "SelfLoops" : 0, "NumberOfDirectedEdges" : 9, "AverageShortestPathLength" : 6.86290323, "selected" : false, "gal80Rsig" : 0.0010869, "ClosenessCentrality" : 0.14571093, "Degree" : 9, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.02777778, "Radiality" : 0.78285544, "Stress" : 21270, "BetweennessCentrality" : 0.22363878, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.144, "name" : "YLR362W", "COMMON" : "STE11", "gal4RGexp" : 0.037, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.22222222 } }, { "data" : { "id" : "306", "degree_layout" : 2, "gal80Rexp" : 0.023, "gal1RGsig" : 0.34875, "Eccentricity" : 16, "gal4RGsig" : 0.42858, "shared_name" : "YDR103W", "TopologicalCoefficient" : 0.59090909, "SUID" : 306, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.83870968, "selected" : false, "gal80Rsig" : 0.92304, "ClosenessCentrality" : 0.12757202, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 0.74671446, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.068, "name" : "YDR103W", "COMMON" : "STE5", "gal4RGexp" : -0.121, "IsSingleNode" : false, "NeighborhoodConnectivity" : 6.5 } }, { "data" : { "id" : "305", "degree_layout" : 2, "gal80Rexp" : 0.103, "gal1RGsig" : 0.0013953, "Eccentricity" : 18, "gal4RGsig" : 0.0034755, "shared_name" : "YJR060W", "TopologicalCoefficient" : 0.5, "SUID" : 305, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.91532258, "selected" : false, "gal80Rsig" : 0.43529, "ClosenessCentrality" : 0.12633724, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74387694, "Stress" : 614, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.165, "name" : "YJR060W", "COMMON" : "CBF1", "gal4RGexp" : -0.306, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "304", "degree_layout" : 3, "gal80Rexp" : 2.856, "gal1RGsig" : 0.098603, "Eccentricity" : 15, "gal4RGsig" : 3.3164E-11, "shared_name" : "YBR019C", "TopologicalCoefficient" : 0.50980392, "SUID" : 304, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 6.7983871, "selected" : false, "gal80Rsig" : 3.9398E-18, "ClosenessCentrality" : 0.14709371, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.66666667, "Radiality" : 0.78524492, "Stress" : 818, "BetweennessCentrality" : 0.0021545, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.061, "name" : "YBR019C", "COMMON" : "GAL10", "gal4RGexp" : -1.993, "IsSingleNode" : false, "NeighborhoodConnectivity" : 8.66666667 } }, { "data" : { "id" : "303", "degree_layout" : 5, "gal80Rexp" : 0.111, "gal1RGsig" : 0.001834, "Eccentricity" : 16, "gal4RGsig" : 0.33923, "shared_name" : "YOL051W", "TopologicalCoefficient" : 0.42, "SUID" : 303, "SelfLoops" : 0, "NumberOfDirectedEdges" : 5, "AverageShortestPathLength" : 7.61693548, "selected" : false, "gal80Rsig" : 0.30922, "ClosenessCentrality" : 0.13128639, "Degree" : 5, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.4, "Radiality" : 0.75492832, "Stress" : 12, "BetweennessCentrality" : 9.251E-5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.171, "name" : "YOL051W", "COMMON" : "GAL11", "gal4RGexp" : 0.055, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.2 } }, { "data" : { "id" : "302", "degree_layout" : 11, "gal80Rexp" : -0.28, "gal1RGsig" : 1.102E-7, "Eccentricity" : 14, "gal4RGsig" : 1.7172E-6, "shared_name" : "YGL035C", "TopologicalCoefficient" : 0.14354067, "SUID" : 302, "SelfLoops" : 0, "NumberOfDirectedEdges" : 11, "AverageShortestPathLength" : 5.85483871, "selected" : false, "gal80Rsig" : 0.0070533, "ClosenessCentrality" : 0.1707989, "Degree" : 11, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.05454545, "Radiality" : 0.82019116, "Stress" : 92790, "BetweennessCentrality" : 0.40813644, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.345, "name" : "YGL035C", "COMMON" : "MIG1", "gal4RGexp" : 0.31, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.36363636 } }, { "data" : { "id" : "301", "degree_layout" : 4, "gal80Rexp" : 2.939, "gal1RGsig" : 7.0101E-9, "Eccentricity" : 15, "gal4RGsig" : 2.5038E-9, "shared_name" : "YBR020W", "TopologicalCoefficient" : 0.42647059, "SUID" : 301, "SelfLoops" : 0, "NumberOfDirectedEdges" : 4, "AverageShortestPathLength" : 6.79435484, "selected" : false, "gal80Rsig" : 2.8147E-18, "ClosenessCentrality" : 0.14718101, "Degree" : 4, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.5, "Radiality" : 0.78539427, "Stress" : 1638, "BetweennessCentrality" : 0.00432532, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -2.426, "name" : "YBR020W", "COMMON" : "GAL1", "gal4RGexp" : -2.406, "IsSingleNode" : false, "NeighborhoodConnectivity" : 7.25 } }, { "data" : { "id" : "300", "degree_layout" : 2, "gal80Rexp" : 0.892, "gal1RGsig" : 2.4597E-4, "Eccentricity" : 16, "gal4RGsig" : 1.6652E-7, "shared_name" : "YLR081W", "TopologicalCoefficient" : 0.75, "SUID" : 300, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.62903226, "selected" : false, "gal80Rsig" : 7.3429E-10, "ClosenessCentrality" : 0.13107822, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 0.75448029, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.176, "name" : "YLR081W", "COMMON" : "GAL2", "gal4RGexp" : -0.57, "IsSingleNode" : false, "NeighborhoodConnectivity" : 7.5 } }, { "data" : { "id" : "299", "degree_layout" : 11, "gal80Rexp" : -0.211, "gal1RGsig" : 0.11614, "Eccentricity" : 15, "gal4RGsig" : 1.264E-4, "shared_name" : "YPL248C", "TopologicalCoefficient" : 0.19473684, "SUID" : 299, "SelfLoops" : 0, "NumberOfDirectedEdges" : 11, "AverageShortestPathLength" : 6.63709677, "selected" : false, "gal80Rsig" : 0.088214, "ClosenessCentrality" : 0.15066829, "Degree" : 11, "PartnerOfMultiEdgedNodePairs" : 1, "ClusteringCoefficient" : 0.17777778, "Radiality" : 0.79121864, "Stress" : 10716, "BetweennessCentrality" : 0.05907389, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.1, "name" : "YPL248C", "COMMON" : "GAL4", "gal4RGexp" : -0.758, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.9 } }, { "data" : { "id" : "298", "degree_layout" : 2, "gal80Rexp" : 3.126, "gal1RGsig" : 7.8855E-4, "Eccentricity" : 16, "gal4RGsig" : 3.6284E-11, "shared_name" : "YBR018C", "TopologicalCoefficient" : 0.75, "SUID" : 298, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.62903226, "selected" : false, "gal80Rsig" : 3.9427E-17, "ClosenessCentrality" : 0.13107822, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 0.75448029, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.153, "name" : "YBR018C", "COMMON" : "GAL7", "gal4RGexp" : -1.995, "IsSingleNode" : false, "NeighborhoodConnectivity" : 7.5 } }, { "data" : { "id" : "297", "degree_layout" : 5, "gal80Rexp" : -0.049, "gal1RGsig" : 0.74397, "Eccentricity" : 17, "gal4RGsig" : 0.19987, "shared_name" : "YIR009W", "TopologicalCoefficient" : 0.2, "SUID" : 297, "SelfLoops" : 0, "NumberOfDirectedEdges" : 5, "AverageShortestPathLength" : 6.78629032, "selected" : false, "gal80Rsig" : 0.89526, "ClosenessCentrality" : 0.14735591, "Degree" : 5, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78569295, "Stress" : 12160, "BetweennessCentrality" : 0.12134232, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.044, "name" : "YIR009W", "COMMON" : "MSL1", "gal4RGexp" : -0.337, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.2 } }, { "data" : { "id" : "296", "degree_layout" : 3, "gal80Rexp" : 1.101, "gal1RGsig" : 6.1231E-6, "Eccentricity" : 16, "gal4RGsig" : 7.6476E-6, "shared_name" : "YKR099W", "TopologicalCoefficient" : 0.33333333, "SUID" : 296, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 6.46370968, "selected" : false, "gal80Rsig" : 6.9896E-4, "ClosenessCentrality" : 0.15470992, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.79764038, "Stress" : 12284, "BetweennessCentrality" : 0.10314677, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.466, "name" : "YKR099W", "COMMON" : "BAS1", "gal4RGexp" : -0.936, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.66666667 } }, { "data" : { "id" : "295", "degree_layout" : 2, "gal80Rexp" : 0.264, "gal1RGsig" : 0.019613, "Eccentricity" : 18, "gal4RGsig" : 0.36733, "shared_name" : "YIL143C", "TopologicalCoefficient" : 0.5, "SUID" : 295, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.76612903, "selected" : false, "gal80Rsig" : 0.045357, "ClosenessCentrality" : 0.12876428, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74940263, "Stress" : 1220, "BetweennessCentrality" : 0.01606373, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.124, "name" : "YIL143C", "COMMON" : "SSL2", "gal4RGexp" : 0.069, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.5 } }, { "data" : { "id" : "294", "degree_layout" : 2, "gal80Rexp" : 0.404, "gal1RGsig" : 0.4641, "Eccentricity" : 17, "gal4RGsig" : 9.3996E-7, "shared_name" : "YDR184C", "TopologicalCoefficient" : 0.5, "SUID" : 294, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.12096774, "selected" : false, "gal80Rsig" : 0.10407, "ClosenessCentrality" : 0.14043035, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.77329749, "Stress" : 6204, "BetweennessCentrality" : 0.07028775, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.04, "name" : "YDR184C", "COMMON" : "ATC1", "gal4RGexp" : -0.886, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.5 } }, { "data" : { "id" : "293", "degree_layout" : 3, "gal80Rexp" : 0.723, "gal1RGsig" : 1.9735E-6, "Eccentricity" : 18, "gal4RGsig" : 0.026384, "shared_name" : "YNL091W", "TopologicalCoefficient" : 0.33333333, "SUID" : 293, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 7.47177419, "selected" : false, "gal80Rsig" : 2.3704E-4, "ClosenessCentrality" : 0.13383702, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.76030466, "Stress" : 5154, "BetweennessCentrality" : 0.0436549, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.288, "name" : "YNL091W", "COMMON" : "YNL091W", "gal4RGexp" : 0.154, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.66666667 } }, { "data" : { "id" : "292", "degree_layout" : 2, "gal80Rexp" : -0.141, "gal1RGsig" : 0.018347, "Eccentricity" : 17, "gal4RGsig" : 0.053936, "shared_name" : "YNL236W", "TopologicalCoefficient" : 0.5, "SUID" : 292, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.76209677, "selected" : false, "gal80Rsig" : 0.39009, "ClosenessCentrality" : 0.11412793, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71251493, "Stress" : 1044, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.146, "name" : "YNL236W", "COMMON" : "SIN4", "gal4RGexp" : -0.218, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "291", "degree_layout" : 3, "gal80Rexp" : 0.561, "gal1RGsig" : 4.2719E-4, "Eccentricity" : 16, "gal4RGsig" : 3.5398E-4, "shared_name" : "YKL012W", "TopologicalCoefficient" : 0.33333333, "SUID" : 291, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 7.77419355, "selected" : false, "gal80Rsig" : 8.7173E-5, "ClosenessCentrality" : 0.12863071, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74910394, "Stress" : 4160, "BetweennessCentrality" : 0.03199687, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.21, "name" : "YKL012W", "COMMON" : "PRP40", "gal4RGexp" : -0.277, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "290", "degree_layout" : 2, "gal80Rexp" : 0.363, "gal1RGsig" : 3.3893E-4, "Eccentricity" : 19, "gal4RGsig" : 0.033332, "shared_name" : "YML032C", "TopologicalCoefficient" : 1.0, "SUID" : 290, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 10.77016129, "selected" : false, "gal80Rsig" : 0.0030735, "ClosenessCentrality" : 0.09284912, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.63814217, "Stress" : 2, "BetweennessCentrality" : 1.632E-5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.199, "name" : "YML032C", "COMMON" : "RAD52", "gal4RGexp" : -0.136, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "289", "degree_layout" : 2, "gal80Rexp" : -0.121, "gal1RGsig" : 0.47284, "Eccentricity" : 18, "gal4RGsig" : 0.034589, "shared_name" : "YNL312W", "TopologicalCoefficient" : 0.75, "SUID" : 289, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 9.78225806, "selected" : false, "gal80Rsig" : 0.24786, "ClosenessCentrality" : 0.10222589, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.67473118, "Stress" : 1030, "BetweennessCentrality" : 0.00401593, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.028, "name" : "YNL312W", "COMMON" : "RFA2", "gal4RGexp" : -0.111, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "288", "degree_layout" : 2, "gal80Rexp" : 0.101, "gal1RGsig" : 0.74865, "Eccentricity" : 17, "gal4RGsig" : 0.60558, "shared_name" : "YLR116W", "TopologicalCoefficient" : 0.5, "SUID" : 288, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.76209677, "selected" : false, "gal80Rsig" : 0.35769, "ClosenessCentrality" : 0.11412793, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71251493, "Stress" : 1044, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.015, "name" : "YLR116W", "COMMON" : "MSL5", "gal4RGexp" : -0.03, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "287", "degree_layout" : 2, "gal80Rexp" : 0.307, "gal1RGsig" : 1.939E-8, "Eccentricity" : 19, "gal4RGsig" : 0.016862, "shared_name" : "YOR264W", "TopologicalCoefficient" : 0.5, "SUID" : 287, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 9.08467742, "selected" : false, "gal80Rsig" : 0.011809, "ClosenessCentrality" : 0.11007545, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.7005675, "Stress" : 2060, "BetweennessCentrality" : 0.01606373, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.493, "name" : "YOR264W", "COMMON" : "YOR264W", "gal4RGexp" : 0.237, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "286", "degree_layout" : 1, "gal80Rexp" : -0.798, "gal1RGsig" : 1.6598E-8, "Eccentricity" : 16, "gal4RGsig" : 0.032663, "shared_name" : "YDR309C", "TopologicalCoefficient" : 0.0, "SUID" : 286, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.33870968, "selected" : false, "gal80Rsig" : 1.2554E-13, "ClosenessCentrality" : 0.11992263, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.72819594, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.427, "name" : "YDR309C", "COMMON" : "GIC2", "gal4RGexp" : -0.129, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "285", "degree_layout" : 2, "gal80Rexp" : -0.154, "gal1RGsig" : 0.066961, "Eccentricity" : 15, "gal4RGsig" : 0.031442, "shared_name" : "YLR229C", "TopologicalCoefficient" : 0.5, "SUID" : 285, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.34274194, "selected" : false, "gal80Rsig" : 0.030339, "ClosenessCentrality" : 0.13618891, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.76508363, "Stress" : 750, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.074, "name" : "YLR229C", "COMMON" : "CDC42", "gal4RGexp" : 0.089, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "284", "degree_layout" : 2, "gal80Rexp" : -0.065, "gal1RGsig" : 0.44242, "Eccentricity" : 20, "gal4RGsig" : 0.10763, "shared_name" : "YGR058W", "TopologicalCoefficient" : 0.5, "SUID" : 284, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 10.07258065, "selected" : false, "gal80Rsig" : 0.6708, "ClosenessCentrality" : 0.09927942, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66397849, "Stress" : 1032, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.045, "name" : "YGR058W", "COMMON" : "YGR058W", "gal4RGexp" : -0.16, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.5 } }, { "data" : { "id" : "283", "degree_layout" : 1, "gal80Rexp" : -0.745, "gal1RGsig" : 1.2917E-7, "Eccentricity" : 2, "gal4RGsig" : 0.61381, "shared_name" : "YJR109C", "TopologicalCoefficient" : 0.0, "SUID" : 283, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 0.030981, "ClosenessCentrality" : 0.66666667, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.323, "name" : "YJR109C", "COMMON" : "CPA2", "gal4RGexp" : -0.0, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "282", "degree_layout" : 2, "gal80Rexp" : 0.403, "gal1RGsig" : 0.002137, "Eccentricity" : 1, "gal4RGsig" : 0.15221, "shared_name" : "YOR303W", "TopologicalCoefficient" : 0.0, "SUID" : 282, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 1.5854E-4, "ClosenessCentrality" : 1.0, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 2, "BetweennessCentrality" : 1.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.127, "name" : "YOR303W", "COMMON" : "CPA1", "gal4RGexp" : -0.089, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "281", "degree_layout" : 4, "gal80Rexp" : 0.104, "gal1RGsig" : 0.79725, "Eccentricity" : 17, "gal4RGsig" : 0.063023, "shared_name" : "YLR256W", "TopologicalCoefficient" : 0.25, "SUID" : 281, "SelfLoops" : 0, "NumberOfDirectedEdges" : 4, "AverageShortestPathLength" : 8.53225806, "selected" : false, "gal80Rsig" : 0.2243, "ClosenessCentrality" : 0.11720227, "Degree" : 4, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.72102748, "Stress" : 7130, "BetweennessCentrality" : 0.03202952, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.011, "name" : "YLR256W", "COMMON" : "HAP1", "gal4RGexp" : -0.087, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.25 } }, { "data" : { "id" : "280", "degree_layout" : 2, "gal80Rexp" : -0.091, "gal1RGsig" : 3.5964E-11, "Eccentricity" : 18, "gal4RGsig" : 1.3947E-8, "shared_name" : "YML054C", "TopologicalCoefficient" : 0.5, "SUID" : 280, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 9.52016129, "selected" : false, "gal80Rsig" : 0.25421, "ClosenessCentrality" : 0.10504024, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.68443847, "Stress" : 1786, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.963, "name" : "YML054C", "COMMON" : "CYB2", "gal4RGexp" : 0.856, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "279", "degree_layout" : 5, "gal80Rexp" : -0.643, "gal1RGsig" : 3.3444E-5, "Eccentricity" : 16, "gal4RGsig" : 0.005959, "shared_name" : "YJR048W", "TopologicalCoefficient" : 0.26666667, "SUID" : 279, "SelfLoops" : 0, "NumberOfDirectedEdges" : 5, "AverageShortestPathLength" : 7.56854839, "selected" : false, "gal80Rsig" : 1.6071E-8, "ClosenessCentrality" : 0.13212573, "Degree" : 5, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.2, "Radiality" : 0.75672043, "Stress" : 9044, "BetweennessCentrality" : 0.04079818, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.216, "name" : "YJR048W", "COMMON" : "CYC1", "gal4RGexp" : 0.14, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.4 } }, { "data" : { "id" : "278", "degree_layout" : 1, "gal80Rexp" : -1.373, "gal1RGsig" : 2.8783E-6, "Eccentricity" : 18, "gal4RGsig" : 7.3568E-7, "shared_name" : "YEL039C", "TopologicalCoefficient" : 0.0, "SUID" : 278, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.52822581, "selected" : false, "gal80Rsig" : 4.9668E-7, "ClosenessCentrality" : 0.10495133, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.68413978, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.319, "name" : "YEL039C", "COMMON" : "CYC7", "gal4RGexp" : 0.377, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "277", "degree_layout" : 2, "gal80Rexp" : 0.059, "gal1RGsig" : 0.002588, "Eccentricity" : 16, "gal4RGsig" : 0.22211, "shared_name" : "YGL237C", "TopologicalCoefficient" : 0.75, "SUID" : 277, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.73387097, "selected" : false, "gal80Rsig" : 0.35299, "ClosenessCentrality" : 0.12930136, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 0.75059737, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.127, "name" : "YGL237C", "COMMON" : "HAP2", "gal4RGexp" : 0.05, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.5 } }, { "data" : { "id" : "276", "degree_layout" : 2, "gal80Rexp" : -0.108, "gal1RGsig" : 0.18207, "Eccentricity" : 16, "gal4RGsig" : 0.015004, "shared_name" : "YBL021C", "TopologicalCoefficient" : 0.75, "SUID" : 276, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.73387097, "selected" : false, "gal80Rsig" : 0.497, "ClosenessCentrality" : 0.12930136, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 0.75059737, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.073, "name" : "YBL021C", "COMMON" : "HAP3", "gal4RGexp" : -0.256, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.5 } }, { "data" : { "id" : "275", "degree_layout" : 2, "gal80Rexp" : 0.332, "gal1RGsig" : 0.056092, "Eccentricity" : 19, "gal4RGsig" : 0.60829, "shared_name" : "YDR311W", "TopologicalCoefficient" : 0.5, "SUID" : 275, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.75403226, "selected" : false, "gal80Rsig" : 0.0087786, "ClosenessCentrality" : 0.11423307, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71281362, "Stress" : 612, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.098, "name" : "YDR311W", "COMMON" : "TFB1", "gal4RGexp" : -0.043, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.5 } }, { "data" : { "id" : "274", "degree_layout" : 1, "gal80Rexp" : 0.337, "gal1RGsig" : 3.5042E-5, "Eccentricity" : 20, "gal4RGsig" : 0.025221, "shared_name" : "YKL028W", "TopologicalCoefficient" : 0.0, "SUID" : 274, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.75, "selected" : false, "gal80Rsig" : 4.9898E-5, "ClosenessCentrality" : 0.1025641, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.67592593, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.214, "name" : "YKL028W", "COMMON" : "TFA1", "gal4RGexp" : -0.146, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "273", "degree_layout" : 2, "gal80Rexp" : 0.488, "gal1RGsig" : 0.47027, "Eccentricity" : 19, "gal4RGsig" : 0.043291, "shared_name" : "YPL149W", "TopologicalCoefficient" : 0.75, "SUID" : 273, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 9.09274194, "selected" : false, "gal80Rsig" : 1.5579E-5, "ClosenessCentrality" : 0.10997783, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.70026882, "Stress" : 1028, "BetweennessCentrality" : 0.00401593, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.033, "name" : "YPL149W", "COMMON" : "APG5", "gal4RGexp" : 0.116, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "272", "degree_layout" : 3, "gal80Rexp" : 0.034, "gal1RGsig" : 0.030789, "Eccentricity" : 18, "gal4RGsig" : 2.257E-4, "shared_name" : "YHR171W", "TopologicalCoefficient" : 0.38095238, "SUID" : 272, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 8.10483871, "selected" : false, "gal80Rsig" : 0.7782, "ClosenessCentrality" : 0.12338308, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.73685783, "Stress" : 4106, "BetweennessCentrality" : 0.02401397, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.134, "name" : "YHR171W", "COMMON" : "APG7", "gal4RGexp" : 0.251, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.66666667 } }, { "data" : { "id" : "271", "degree_layout" : 2, "gal80Rexp" : 0.378, "gal1RGsig" : 0.143, "Eccentricity" : 20, "gal4RGsig" : 0.011008, "shared_name" : "YBR217W", "TopologicalCoefficient" : 1.0, "SUID" : 271, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 10.08064516, "selected" : false, "gal80Rsig" : 0.012775, "ClosenessCentrality" : 0.0992, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66367981, "Stress" : 2, "BetweennessCentrality" : 1.632E-5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.088, "name" : "YBR217W", "COMMON" : "APG12", "gal4RGexp" : -0.332, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "270", "degree_layout" : 4, "gal80Rexp" : -0.117, "gal1RGsig" : 0.045375, "Eccentricity" : 15, "gal4RGsig" : 3.1802E-6, "shared_name" : "YKL109W", "TopologicalCoefficient" : 0.33928571, "SUID" : 270, "SelfLoops" : 0, "NumberOfDirectedEdges" : 4, "AverageShortestPathLength" : 6.78629032, "selected" : false, "gal80Rsig" : 0.071395, "ClosenessCentrality" : 0.14735591, "Degree" : 4, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.33333333, "Radiality" : 0.78569295, "Stress" : 6894, "BetweennessCentrality" : 0.03373819, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.084, "name" : "YKL109W", "COMMON" : "HAP4", "gal4RGexp" : 0.295, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "269", "degree_layout" : 18, "gal80Rexp" : 0.457, "gal1RGsig" : 0.0035372, "Eccentricity" : 15, "gal4RGsig" : 4.2514E-6, "shared_name" : "YMR043W", "TopologicalCoefficient" : 0.1010101, "SUID" : 269, "SelfLoops" : 0, "NumberOfDirectedEdges" : 18, "AverageShortestPathLength" : 5.84274194, "selected" : false, "gal80Rsig" : 2.4112E-4, "ClosenessCentrality" : 0.17115252, "Degree" : 18, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.05882353, "Radiality" : 0.82063919, "Stress" : 86646, "BetweennessCentrality" : 0.5264582, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.183, "name" : "YMR043W", "COMMON" : "MCM1", "gal4RGexp" : -0.654, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.66666667 } }, { "data" : { "id" : "268", "degree_layout" : 2, "gal80Rexp" : -1.117, "gal1RGsig" : 7.0996E-11, "Eccentricity" : 16, "gal4RGsig" : 0.0040782, "shared_name" : "YIL015W", "TopologicalCoefficient" : 0.63157895, "SUID" : 268, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.8266129, "selected" : false, "gal80Rsig" : 2.9167E-11, "ClosenessCentrality" : 0.14648553, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 0.78419952, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.622, "name" : "YIL015W", "COMMON" : "BAR1", "gal4RGexp" : -0.207, "IsSingleNode" : false, "NeighborhoodConnectivity" : 12.0 } }, { "data" : { "id" : "267", "degree_layout" : 2, "gal80Rexp" : 0.001, "gal1RGsig" : 6.8879E-8, "Eccentricity" : 16, "gal4RGsig" : 0.041194, "shared_name" : "YJL159W", "TopologicalCoefficient" : 0.5, "SUID" : 267, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.83064516, "selected" : false, "gal80Rsig" : 0.999999, "ClosenessCentrality" : 0.14639906, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78405018, "Stress" : 1032, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.357, "name" : "YJL159W", "COMMON" : "HSP150", "gal4RGexp" : 0.111, "IsSingleNode" : false, "NeighborhoodConnectivity" : 9.5 } }, { "data" : { "id" : "266", "degree_layout" : 2, "gal80Rexp" : 0.123, "gal1RGsig" : 7.092E-13, "Eccentricity" : 16, "gal4RGsig" : 1.8547E-10, "shared_name" : "YKR097W", "TopologicalCoefficient" : 0.5, "SUID" : 266, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.7016129, "selected" : false, "gal80Rsig" : 0.13819, "ClosenessCentrality" : 0.14921781, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78882915, "Stress" : 4434, "BetweennessCentrality" : 0.04542209, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 1.289, "name" : "YKR097W", "COMMON" : "PCK1", "gal4RGexp" : 1.224, "IsSingleNode" : false, "NeighborhoodConnectivity" : 11.0 } }, { "data" : { "id" : "265", "degree_layout" : 3, "gal80Rexp" : 0.101, "gal1RGsig" : 7.5764E-7, "Eccentricity" : 16, "gal4RGsig" : 2.3869E-7, "shared_name" : "YGR108W", "TopologicalCoefficient" : 0.36666667, "SUID" : 265, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 6.74193548, "selected" : false, "gal80Rsig" : 0.1936, "ClosenessCentrality" : 0.14832536, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.33333333, "Radiality" : 0.78733572, "Stress" : 7562, "BetweennessCentrality" : 0.05930986, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.25, "name" : "YGR108W", "COMMON" : "CLB1", "gal4RGexp" : -0.566, "IsSingleNode" : false, "NeighborhoodConnectivity" : 7.66666667 } }, { "data" : { "id" : "264", "degree_layout" : 3, "gal80Rexp" : -0.526, "gal1RGsig" : 2.4721E-10, "Eccentricity" : 16, "gal4RGsig" : 0.011212, "shared_name" : "YDR461W", "TopologicalCoefficient" : 0.49122807, "SUID" : 264, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 6.82258065, "selected" : false, "gal80Rsig" : 5.5223E-10, "ClosenessCentrality" : 0.1465721, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.66666667, "Radiality" : 0.78434886, "Stress" : 6, "BetweennessCentrality" : 2.449E-5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.659, "name" : "YDR461W", "COMMON" : "MFA1", "gal4RGexp" : -0.147, "IsSingleNode" : false, "NeighborhoodConnectivity" : 9.33333333 } }, { "data" : { "id" : "263", "degree_layout" : 3, "gal80Rexp" : -1.237, "gal1RGsig" : 3.148E-11, "Eccentricity" : 16, "gal4RGsig" : 0.05338, "shared_name" : "YNL145W", "TopologicalCoefficient" : 0.49122807, "SUID" : 263, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 6.82258065, "selected" : false, "gal80Rsig" : 1.1916E-10, "ClosenessCentrality" : 0.1465721, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.66666667, "Radiality" : 0.78434886, "Stress" : 6, "BetweennessCentrality" : 2.449E-5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.764, "name" : "YNL145W", "COMMON" : "MFA2", "gal4RGexp" : -0.098, "IsSingleNode" : false, "NeighborhoodConnectivity" : 9.33333333 } }, { "data" : { "id" : "262", "degree_layout" : 4, "gal80Rexp" : 0.972, "gal1RGsig" : 5.9763E-4, "Eccentricity" : 14, "gal4RGsig" : 4.7408E-8, "shared_name" : "YJL157C", "TopologicalCoefficient" : 0.275, "SUID" : 262, "SelfLoops" : 0, "NumberOfDirectedEdges" : 4, "AverageShortestPathLength" : 6.35483871, "selected" : false, "gal80Rsig" : 6.3708E-7, "ClosenessCentrality" : 0.15736041, "Degree" : 4, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.16666667, "Radiality" : 0.80167264, "Stress" : 15458, "BetweennessCentrality" : 0.15125755, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.158, "name" : "YJL157C", "COMMON" : "FAR1", "gal4RGexp" : -0.803, "IsSingleNode" : false, "NeighborhoodConnectivity" : 6.0 } }, { "data" : { "id" : "261", "degree_layout" : 3, "gal80Rexp" : -0.74, "gal1RGsig" : 1.3644E-10, "Eccentricity" : 16, "gal4RGsig" : 4.1738E-6, "shared_name" : "YFL026W", "TopologicalCoefficient" : 0.49122807, "SUID" : 261, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 6.82258065, "selected" : false, "gal80Rsig" : 2.884E-14, "ClosenessCentrality" : 0.1465721, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.66666667, "Radiality" : 0.78434886, "Stress" : 6, "BetweennessCentrality" : 2.449E-5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.653, "name" : "YFL026W", "COMMON" : "STE2", "gal4RGexp" : -0.396, "IsSingleNode" : false, "NeighborhoodConnectivity" : 9.33333333 } }, { "data" : { "id" : "260", "degree_layout" : 2, "gal80Rexp" : 0.161, "gal1RGsig" : 0.061024, "Eccentricity" : 19, "gal4RGsig" : 3.1083E-4, "shared_name" : "YNR007C", "TopologicalCoefficient" : 0.75, "SUID" : 260, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 9.09274194, "selected" : false, "gal80Rsig" : 0.10191, "ClosenessCentrality" : 0.10997783, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.70026882, "Stress" : 1028, "BetweennessCentrality" : 0.00401593, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.078, "name" : "YNR007C", "COMMON" : "AUT1", "gal4RGexp" : 0.196, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "259", "degree_layout" : 2, "gal80Rexp" : 0.401, "gal1RGsig" : 0.13783, "Eccentricity" : 24, "gal4RGsig" : 6.541E-4, "shared_name" : "YJL203W", "TopologicalCoefficient" : 0.5, "SUID" : 259, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 11.58064516, "selected" : false, "gal80Rsig" : 0.0046881, "ClosenessCentrality" : 0.08635097, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.60812425, "Stress" : 2604, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.083, "name" : "YJL203W", "COMMON" : "PRP21", "gal4RGexp" : -0.46, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "258", "degree_layout" : 1, "gal80Rexp" : -0.472, "gal1RGsig" : 1.9054E-8, "Eccentricity" : 25, "gal4RGsig" : 0.39614, "shared_name" : "YOL136C", "TopologicalCoefficient" : 0.0, "SUID" : 258, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 12.5766129, "selected" : false, "gal80Rsig" : 0.0081753, "ClosenessCentrality" : 0.07951266, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.57123656, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.646, "name" : "YOL136C", "COMMON" : "PFK27", "gal4RGexp" : -0.086, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "257", "degree_layout" : 2, "gal80Rexp" : -0.036, "gal1RGsig" : 3.4013E-4, "Eccentricity" : 15, "gal4RGsig" : 0.23036, "shared_name" : "YLL021W", "TopologicalCoefficient" : 0.5, "SUID" : 257, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.3266129, "selected" : false, "gal80Rsig" : 0.62229, "ClosenessCentrality" : 0.13648872, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.765681, "Stress" : 1028, "BetweennessCentrality" : 0.01334058, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.155, "name" : "YLL021W", "COMMON" : "SPA2", "gal4RGexp" : 0.05, "IsSingleNode" : false, "NeighborhoodConnectivity" : 6.5 } }, { "data" : { "id" : "256", "degree_layout" : 2, "gal80Rexp" : -0.162, "gal1RGsig" : 5.6008E-6, "Eccentricity" : 19, "gal4RGsig" : 1.6899E-9, "shared_name" : "YJL219W", "TopologicalCoefficient" : 0.75, "SUID" : 256, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 9.09274194, "selected" : false, "gal80Rsig" : 0.097946, "ClosenessCentrality" : 0.10997783, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.70026882, "Stress" : 1028, "BetweennessCentrality" : 0.00401593, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.298, "name" : "YJL219W", "COMMON" : "HXT9", "gal4RGexp" : 0.592, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "255", "degree_layout" : 2, "gal80Rexp" : 0.105, "gal1RGsig" : 8.1828E-6, "Eccentricity" : 19, "gal4RGsig" : 5.1939E-5, "shared_name" : "YOL156W", "TopologicalCoefficient" : 0.75, "SUID" : 255, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 9.09274194, "selected" : false, "gal80Rsig" : 0.28091, "ClosenessCentrality" : 0.10997783, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.70026882, "Stress" : 1028, "BetweennessCentrality" : 0.00401593, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.298, "name" : "YOL156W", "COMMON" : "HXT11", "gal4RGexp" : 0.462, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "254", "degree_layout" : 1, "gal80Rexp" : 0.439, "gal1RGsig" : 0.96433, "Eccentricity" : 17, "gal4RGsig" : 1.6928E-9, "shared_name" : "YKL101W", "TopologicalCoefficient" : 0.0, "SUID" : 254, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 7.77822581, "selected" : false, "gal80Rsig" : 0.0030233, "ClosenessCentrality" : 0.12856402, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.7489546, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.01, "name" : "YKL101W", "COMMON" : "HSL1", "gal4RGexp" : 0.78, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "253", "degree_layout" : 3, "gal80Rexp" : -0.405, "gal1RGsig" : 0.7432, "Eccentricity" : 16, "gal4RGsig" : 0.32105, "shared_name" : "YBR160W", "TopologicalCoefficient" : 0.36842105, "SUID" : 253, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 6.78225806, "selected" : false, "gal80Rsig" : 0.026081, "ClosenessCentrality" : 0.14744352, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.33333333, "Radiality" : 0.78584229, "Stress" : 1030, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.016, "name" : "YBR160W", "COMMON" : "CDC28", "gal4RGexp" : -0.087, "IsSingleNode" : false, "NeighborhoodConnectivity" : 7.33333333 } }, { "data" : { "id" : "252", "degree_layout" : 2, "gal80Rexp" : 0.0, "gal1RGsig" : 0.64313, "Eccentricity" : 20, "gal4RGsig" : 0.999999, "shared_name" : "YBL005W", "TopologicalCoefficient" : 1.0, "SUID" : 252, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 10.08064516, "selected" : false, "gal80Rsig" : 0.999999, "ClosenessCentrality" : 0.0992, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66367981, "Stress" : 2, "BetweennessCentrality" : 1.632E-5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.0, "name" : "YBL005W", "COMMON" : "PDR3", "gal4RGexp" : 0.0, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "251", "degree_layout" : 2, "gal80Rexp" : 0.052, "gal1RGsig" : 0.10243, "Eccentricity" : 18, "gal4RGsig" : 0.999999, "shared_name" : "YDR323C", "TopologicalCoefficient" : 0.5, "SUID" : 251, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 9.22983871, "selected" : false, "gal80Rsig" : 0.69287, "ClosenessCentrality" : 0.10834426, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.69519116, "Stress" : 618, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.164, "name" : "YDR323C", "COMMON" : "PEP7", "gal4RGexp" : 0.0, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.5 } }, { "data" : { "id" : "250", "degree_layout" : 6, "gal80Rexp" : 0.491, "gal1RGsig" : 0.092135, "Eccentricity" : 17, "gal4RGsig" : 0.43055, "shared_name" : "YOR036W", "TopologicalCoefficient" : 0.22222222, "SUID" : 250, "SelfLoops" : 0, "NumberOfDirectedEdges" : 6, "AverageShortestPathLength" : 8.24193548, "selected" : false, "gal80Rsig" : 1.6313E-6, "ClosenessCentrality" : 0.12133072, "Degree" : 6, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.06666667, "Radiality" : 0.73178017, "Stress" : 13532, "BetweennessCentrality" : 0.13339563, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.071, "name" : "YOR036W", "COMMON" : "PEP12", "gal4RGexp" : 0.037, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "249", "degree_layout" : 2, "gal80Rexp" : -0.573, "gal1RGsig" : 1.0007E-5, "Eccentricity" : 16, "gal4RGsig" : 7.1366E-4, "shared_name" : "YGL008C", "TopologicalCoefficient" : 0.5, "SUID" : 249, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.83064516, "selected" : false, "gal80Rsig" : 1.2622E-6, "ClosenessCentrality" : 0.14639906, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78405018, "Stress" : 1032, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.352, "name" : "YGL008C", "COMMON" : "PMA1", "gal4RGexp" : -0.282, "IsSingleNode" : false, "NeighborhoodConnectivity" : 9.5 } }, { "data" : { "id" : "248", "degree_layout" : 3, "gal80Rexp" : 0.537, "gal1RGsig" : 0.38375, "Eccentricity" : 22, "gal4RGsig" : 0.010321, "shared_name" : "YER040W", "TopologicalCoefficient" : 0.33333333, "SUID" : 248, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 10.34274194, "selected" : false, "gal80Rsig" : 0.0018683, "ClosenessCentrality" : 0.09668616, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.65397252, "Stress" : 5118, "BetweennessCentrality" : 0.01609638, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.098, "name" : "YER040W", "COMMON" : "GLN3", "gal4RGexp" : -0.513, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.66666667 } }, { "data" : { "id" : "247", "degree_layout" : 1, "gal80Rexp" : -0.172, "gal1RGsig" : 2.3885E-5, "Eccentricity" : 23, "gal4RGsig" : 2.9298E-9, "shared_name" : "YPR035W", "TopologicalCoefficient" : 0.0, "SUID" : 247, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 11.33870968, "selected" : false, "gal80Rsig" : 0.036009, "ClosenessCentrality" : 0.08819346, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.61708483, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.197, "name" : "YPR035W", "COMMON" : "GLN1", "gal4RGexp" : -1.06, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "246", "degree_layout" : 1, "gal80Rexp" : -0.258, "gal1RGsig" : 0.0086582, "Eccentricity" : 23, "gal4RGsig" : 0.0011998, "shared_name" : "YGR019W", "TopologicalCoefficient" : 0.0, "SUID" : 246, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 11.33870968, "selected" : false, "gal80Rsig" : 6.2171E-5, "ClosenessCentrality" : 0.08819346, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.61708483, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.163, "name" : "YGR019W", "COMMON" : "UGA1", "gal4RGexp" : 0.234, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "245", "degree_layout" : 1, "gal80Rexp" : 0.293, "gal1RGsig" : 0.20515, "Eccentricity" : 23, "gal4RGsig" : 0.23242, "shared_name" : "YNL098C", "TopologicalCoefficient" : 0.0, "SUID" : 245, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 12.64112903, "selected" : false, "gal80Rsig" : 1.0426E-4, "ClosenessCentrality" : 0.07910686, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.56884707, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.05, "name" : "YNL098C", "COMMON" : "RAS2", "gal4RGexp" : 0.062, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "244", "degree_layout" : 2, "gal80Rexp" : -0.071, "gal1RGsig" : 0.67137, "Eccentricity" : 22, "gal4RGsig" : 0.41028, "shared_name" : "YLR310C", "TopologicalCoefficient" : 0.5, "SUID" : 244, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 11.64516129, "selected" : false, "gal80Rsig" : 0.25519, "ClosenessCentrality" : 0.08587258, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.60573477, "Stress" : 1010, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.015, "name" : "YLR310C", "COMMON" : "CDC25", "gal4RGexp" : -0.037, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.5 } }, { "data" : { "id" : "243", "degree_layout" : 2, "gal80Rexp" : -0.221, "gal1RGsig" : 0.0058541, "Eccentricity" : 1, "gal4RGsig" : 0.011234, "shared_name" : "YGL115W", "TopologicalCoefficient" : 0.0, "SUID" : 243, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.0027535, "ClosenessCentrality" : 1.0, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 2, "BetweennessCentrality" : 1.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.111, "name" : "YGL115W", "COMMON" : "SNF4", "gal4RGexp" : 0.112, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "242", "degree_layout" : 1, "gal80Rexp" : 0.139, "gal1RGsig" : 1.7995E-6, "Eccentricity" : 2, "gal4RGsig" : 1.1069E-6, "shared_name" : "YGL208W", "TopologicalCoefficient" : 0.0, "SUID" : 242, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 0.097498, "ClosenessCentrality" : 0.66666667, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.354, "name" : "YGL208W", "COMMON" : "SIP2", "gal4RGexp" : 0.406, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "241", "degree_layout" : 2, "gal80Rexp" : 0.209, "gal1RGsig" : 0.14513, "Eccentricity" : 15, "gal4RGsig" : 0.47601, "shared_name" : "YPL089C", "TopologicalCoefficient" : 0.5, "SUID" : 241, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.00806452, "selected" : false, "gal80Rsig" : 0.0026491, "ClosenessCentrality" : 0.12487412, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74044205, "Stress" : 746, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.06, "name" : "YPL089C", "COMMON" : "RLM1", "gal4RGexp" : -0.037, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "240", "degree_layout" : 4, "gal80Rexp" : 0.21, "gal1RGsig" : 1.349E-4, "Eccentricity" : 14, "gal4RGsig" : 2.7258E-4, "shared_name" : "YHR030C", "TopologicalCoefficient" : 0.25, "SUID" : 240, "SelfLoops" : 0, "NumberOfDirectedEdges" : 4, "AverageShortestPathLength" : 7.02016129, "selected" : false, "gal80Rsig" : 0.0033506, "ClosenessCentrality" : 0.14244687, "Degree" : 4, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.77703106, "Stress" : 3506, "BetweennessCentrality" : 0.03824806, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.227, "name" : "YHR030C", "COMMON" : "SLT2", "gal4RGexp" : -0.24, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "239", "degree_layout" : 4, "gal80Rexp" : 0.442, "gal1RGsig" : 0.72688, "Eccentricity" : 15, "gal4RGsig" : 0.55601, "shared_name" : "YJL089W", "TopologicalCoefficient" : 0.25, "SUID" : 239, "SelfLoops" : 0, "NumberOfDirectedEdges" : 4, "AverageShortestPathLength" : 6.68145161, "selected" : false, "gal80Rsig" : 0.033306, "ClosenessCentrality" : 0.14966807, "Degree" : 4, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78957587, "Stress" : 7016, "BetweennessCentrality" : 0.05778362, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.037, "name" : "YJL089W", "COMMON" : "SIP4", "gal4RGexp" : 0.169, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.75 } }, { "data" : { "id" : "238", "degree_layout" : 2, "gal80Rexp" : 1.147, "gal1RGsig" : 1.8931E-10, "Eccentricity" : 16, "gal4RGsig" : 4.8501E-9, "shared_name" : "YER065C", "TopologicalCoefficient" : 0.5, "SUID" : 238, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.55645161, "selected" : false, "gal80Rsig" : 3.4625E-8, "ClosenessCentrality" : 0.13233725, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75716846, "Stress" : 4226, "BetweennessCentrality" : 0.04069207, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.65, "name" : "YER065C", "COMMON" : "ICL1", "gal4RGexp" : 0.591, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.5 } }, { "data" : { "id" : "237", "degree_layout" : 2, "gal80Rexp" : 0.371, "gal1RGsig" : 2.1938E-10, "Eccentricity" : 15, "gal4RGsig" : 5.8901E-11, "shared_name" : "YLR377C", "TopologicalCoefficient" : 0.5, "SUID" : 237, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.75403226, "selected" : false, "gal80Rsig" : 0.0037868, "ClosenessCentrality" : 0.1480597, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78688769, "Stress" : 3426, "BetweennessCentrality" : 0.01848502, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.873, "name" : "YLR377C", "COMMON" : "FBP1", "gal4RGexp" : 1.067, "IsSingleNode" : false, "NeighborhoodConnectivity" : 7.5 } }, { "data" : { "id" : "236", "degree_layout" : 2, "gal80Rexp" : 0.066, "gal1RGsig" : 0.6115, "Eccentricity" : 1, "gal4RGsig" : 0.59236, "shared_name" : "YMR021C", "TopologicalCoefficient" : 0.0, "SUID" : 236, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.54119, "ClosenessCentrality" : 1.0, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 2, "BetweennessCentrality" : 1.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.022, "name" : "YMR021C", "COMMON" : "MAC1", "gal4RGexp" : -0.032, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "235", "degree_layout" : 1, "gal80Rexp" : 0.282, "gal1RGsig" : 4.6835E-9, "Eccentricity" : 2, "gal4RGsig" : 0.0018109, "shared_name" : "YLR214W", "TopologicalCoefficient" : 0.0, "SUID" : 235, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 0.039051, "ClosenessCentrality" : 0.66666667, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.518, "name" : "YLR214W", "COMMON" : "FRE1", "gal4RGexp" : -0.279, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "234", "degree_layout" : 2, "gal80Rexp" : 0.272, "gal1RGsig" : 0.8595, "Eccentricity" : 20, "gal4RGsig" : 0.071598, "shared_name" : "YDR335W", "TopologicalCoefficient" : 0.5, "SUID" : 234, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 10.31048387, "selected" : false, "gal80Rsig" : 0.2334, "ClosenessCentrality" : 0.09698866, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.65516726, "Stress" : 7266, "BetweennessCentrality" : 0.05928044, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.028, "name" : "YDR335W", "COMMON" : "MSN5", "gal4RGexp" : 0.189, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "233", "degree_layout" : 3, "gal80Rexp" : -0.356, "gal1RGsig" : 5.1646E-8, "Eccentricity" : 21, "gal4RGsig" : 0.10372, "shared_name" : "YDR174W", "TopologicalCoefficient" : 0.33333333, "SUID" : 233, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 10.81854839, "selected" : false, "gal80Rsig" : 3.4721E-8, "ClosenessCentrality" : 0.09243384, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.63635006, "Stress" : 8006, "BetweennessCentrality" : 0.06016549, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.314, "name" : "YDR174W", "COMMON" : "HMO1", "gal4RGexp" : -0.083, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.66666667 } }, { "data" : { "id" : "232", "degree_layout" : 1, "gal80Rexp" : -0.24, "gal1RGsig" : 1.7163E-4, "Eccentricity" : 23, "gal4RGsig" : 0.27319, "shared_name" : "YLL028W", "TopologicalCoefficient" : 0.0, "SUID" : 232, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 12.63306452, "selected" : false, "gal80Rsig" : 0.0047822, "ClosenessCentrality" : 0.07915736, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.56914576, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.189, "name" : "YLL028W", "COMMON" : "TPO1", "gal4RGexp" : -0.101, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "231", "degree_layout" : 3, "gal80Rexp" : 0.147, "gal1RGsig" : 0.33486, "Eccentricity" : 22, "gal4RGsig" : 0.0012181, "shared_name" : "YGL166W", "TopologicalCoefficient" : 0.66666667, "SUID" : 231, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 11.63709677, "selected" : false, "gal80Rsig" : 0.032147, "ClosenessCentrality" : 0.08593209, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.60603345, "Stress" : 2010, "BetweennessCentrality" : 0.00808084, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.073, "name" : "YGL166W", "COMMON" : "CUP2", "gal4RGexp" : 0.243, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.66666667 } }, { "data" : { "id" : "230", "degree_layout" : 1, "gal80Rexp" : -0.278, "gal1RGsig" : 1.705E-5, "Eccentricity" : 1, "gal4RGsig" : 0.048133, "shared_name" : "YDL081C", "TopologicalCoefficient" : 0.0, "SUID" : 230, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 5.9631E-6, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.429, "name" : "YDL081C", "COMMON" : "RPP1A", "gal4RGexp" : -0.094, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "229", "degree_layout" : 1, "gal80Rexp" : -0.361, "gal1RGsig" : 4.9964E-6, "Eccentricity" : 1, "gal4RGsig" : 0.0063648, "shared_name" : "YLR340W", "TopologicalCoefficient" : 0.0, "SUID" : 229, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 2.0593E-7, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.259, "name" : "YLR340W", "COMMON" : "RPP0", "gal4RGexp" : -0.148, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "228", "degree_layout" : 2, "gal80Rexp" : 0.608, "gal1RGsig" : 0.96433, "Eccentricity" : 15, "gal4RGsig" : 2.8457E-4, "shared_name" : "YKL074C", "TopologicalCoefficient" : 0.5, "SUID" : 228, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.81048387, "selected" : false, "gal80Rsig" : 3.4465E-4, "ClosenessCentrality" : 0.14683245, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78479689, "Stress" : 5180, "BetweennessCentrality" : 0.03966958, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.002, "name" : "YKL074C", "COMMON" : "MUD2", "gal4RGexp" : -0.294, "IsSingleNode" : false, "NeighborhoodConnectivity" : 7.0 } }, { "data" : { "id" : "227", "degree_layout" : 4, "gal80Rexp" : -0.0, "gal1RGsig" : 0.37089, "Eccentricity" : 22, "gal4RGsig" : 0.45319, "shared_name" : "YML064C", "TopologicalCoefficient" : 0.25, "SUID" : 227, "SelfLoops" : 0, "NumberOfDirectedEdges" : 4, "AverageShortestPathLength" : 11.1733871, "selected" : false, "gal80Rsig" : 0.999999, "ClosenessCentrality" : 0.08949838, "Degree" : 4, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.62320789, "Stress" : 9690, "BetweennessCentrality" : 0.05441934, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.218, "name" : "YML064C", "COMMON" : "TEM1", "gal4RGexp" : -0.069, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.75 } }, { "data" : { "id" : "226", "degree_layout" : 2, "gal80Rexp" : 0.119, "gal1RGsig" : 0.037285, "Eccentricity" : 3, "gal4RGsig" : 0.23999, "shared_name" : "YHR135C", "TopologicalCoefficient" : 0.5, "SUID" : 226, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.75, "selected" : false, "gal80Rsig" : 0.037227, "ClosenessCentrality" : 0.57142857, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.8125, "Stress" : 6, "BetweennessCentrality" : 0.5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.082, "name" : "YHR135C", "COMMON" : "YCK1", "gal4RGexp" : -0.049, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.5 } }, { "data" : { "id" : "225", "degree_layout" : 1, "gal80Rexp" : 0.358, "gal1RGsig" : 2.6759E-4, "Eccentricity" : 4, "gal4RGsig" : 0.63152, "shared_name" : "YNL116W", "TopologicalCoefficient" : 0.0, "SUID" : 225, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.5, "selected" : false, "gal80Rsig" : 2.7658E-4, "ClosenessCentrality" : 0.4, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.625, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.165, "name" : "YNL116W", "COMMON" : "YNL116W", "gal4RGexp" : 0.027, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "224", "degree_layout" : 2, "gal80Rexp" : 0.029, "gal1RGsig" : 0.0026155, "Eccentricity" : 18, "gal4RGsig" : 0.19124, "shared_name" : "YNL047C", "TopologicalCoefficient" : 0.5, "SUID" : 224, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.88709677, "selected" : false, "gal80Rsig" : 0.7773, "ClosenessCentrality" : 0.11252269, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.7078853, "Stress" : 6152, "BetweennessCentrality" : 0.02544919, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.14, "name" : "YNL047C", "COMMON" : "YNL047C", "gal4RGexp" : -0.078, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "223", "degree_layout" : 2, "gal80Rexp" : -0.438, "gal1RGsig" : 0.76333, "Eccentricity" : 3, "gal4RGsig" : 0.21924, "shared_name" : "YNL154C", "TopologicalCoefficient" : 0.5, "SUID" : 223, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.75, "selected" : false, "gal80Rsig" : 2.3558E-7, "ClosenessCentrality" : 0.57142857, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.8125, "Stress" : 6, "BetweennessCentrality" : 0.5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.013, "name" : "YNL154C", "COMMON" : "YCK2", "gal4RGexp" : -0.066, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.5 } }, { "data" : { "id" : "222", "degree_layout" : 1, "gal80Rexp" : 0.16, "gal1RGsig" : 6.4944E-6, "Eccentricity" : 4, "gal4RGsig" : 0.9794, "shared_name" : "YKL204W", "TopologicalCoefficient" : 0.0, "SUID" : 222, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.5, "selected" : false, "gal80Rsig" : 0.091109, "ClosenessCentrality" : 0.4, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.625, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.253, "name" : "YKL204W", "COMMON" : "YKL204W", "gal4RGexp" : -0.002, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "221", "degree_layout" : 3, "Eccentricity" : 15, "shared_name" : "?", "TopologicalCoefficient" : 0.40350877, "SUID" : 221, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 6.46370968, "selected" : false, "ClosenessCentrality" : 0.15470992, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.33333333, "Radiality" : 0.79764038, "Stress" : 7092, "BetweennessCentrality" : 0.05357439, "NumberOfUndirectedEdges" : 0, "name" : "?", "COMMON" : "", "IsSingleNode" : false, "NeighborhoodConnectivity" : 8.0 } }, { "data" : { "id" : "220", "degree_layout" : 1, "gal80Rexp" : 0.111, "gal1RGsig" : 0.47775, "Eccentricity" : 18, "gal4RGsig" : 2.5298E-5, "shared_name" : "YJR066W", "TopologicalCoefficient" : 0.0, "SUID" : 220, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.75806452, "selected" : false, "gal80Rsig" : 0.1951, "ClosenessCentrality" : 0.10247934, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.67562724, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.028, "name" : "YJR066W", "COMMON" : "TOR1", "gal4RGexp" : 0.326, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "219", "degree_layout" : 2, "gal80Rexp" : -0.314, "gal1RGsig" : 1.427E-5, "Eccentricity" : 2, "gal4RGsig" : 0.18479, "shared_name" : "YDR382W", "TopologicalCoefficient" : 0.5, "SUID" : 219, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 1.4245E-7, "ClosenessCentrality" : 0.66666667, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.83333333, "Stress" : 6, "BetweennessCentrality" : 0.5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.218, "name" : "YDR382W", "COMMON" : "RPP2B", "gal4RGexp" : -0.058, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "218", "degree_layout" : 1, "gal80Rexp" : -0.24, "gal1RGsig" : 1.0483E-5, "Eccentricity" : 3, "gal4RGsig" : 0.01128, "shared_name" : "YDL130W", "TopologicalCoefficient" : 0.0, "SUID" : 218, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.25, "selected" : false, "gal80Rsig" : 2.1405E-5, "ClosenessCentrality" : 0.44444444, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.58333333, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.3, "name" : "YDL130W", "COMMON" : "RPP1B", "gal4RGexp" : -0.123, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "217", "degree_layout" : 3, "gal80Rexp" : -0.527, "gal1RGsig" : 3.2175E-4, "Eccentricity" : 2, "gal4RGsig" : 1.31E-4, "shared_name" : "YFL039C", "TopologicalCoefficient" : 0.33333333, "SUID" : 217, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 1.25, "selected" : false, "gal80Rsig" : 6.0582E-12, "ClosenessCentrality" : 0.8, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.91666667, "Stress" : 10, "BetweennessCentrality" : 0.83333333, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.16, "name" : "YFL039C", "COMMON" : "ACT1", "gal4RGexp" : 0.192, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.33333333 } }, { "data" : { "id" : "216", "degree_layout" : 1, "gal80Rexp" : -0.221, "gal1RGsig" : 0.0093643, "Eccentricity" : 3, "gal4RGsig" : 1.0508E-6, "shared_name" : "YCL040W", "TopologicalCoefficient" : 0.0, "SUID" : 216, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.0, "selected" : false, "gal80Rsig" : 2.0566E-4, "ClosenessCentrality" : 0.5, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66666667, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.146, "name" : "YCL040W", "COMMON" : "GLK1", "gal4RGexp" : 0.542, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "215", "degree_layout" : 1, "gal80Rexp" : -0.671, "gal1RGsig" : 2.6358E-8, "Eccentricity" : 3, "gal4RGsig" : 0.098356, "shared_name" : "YHR179W", "TopologicalCoefficient" : 0.0, "SUID" : 215, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.0, "selected" : false, "gal80Rsig" : 3.6995E-11, "ClosenessCentrality" : 0.5, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66666667, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.565, "name" : "YHR179W", "COMMON" : "OYE2", "gal4RGexp" : 0.078, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "214", "degree_layout" : 7, "gal80Rexp" : -0.53, "gal1RGsig" : 2.4947E-7, "Eccentricity" : 18, "gal4RGsig" : 0.046834, "shared_name" : "YPL075W", "TopologicalCoefficient" : 0.28571429, "SUID" : 214, "SelfLoops" : 0, "NumberOfDirectedEdges" : 7, "AverageShortestPathLength" : 7.49193548, "selected" : false, "gal80Rsig" : 5.2661E-6, "ClosenessCentrality" : 0.13347686, "Degree" : 7, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75955795, "Stress" : 90670, "BetweennessCentrality" : 0.18002254, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.373, "name" : "YPL075W", "COMMON" : "GCR1", "gal4RGexp" : -0.207, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.42857143 } }, { "data" : { "id" : "213", "degree_layout" : 3, "gal80Rexp" : 0.433, "gal1RGsig" : 0.005054, "Eccentricity" : 19, "gal4RGsig" : 0.0077746, "shared_name" : "YNL199C", "TopologicalCoefficient" : 0.33333333, "SUID" : 213, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 7.87096774, "selected" : false, "gal80Rsig" : 5.6535E-5, "ClosenessCentrality" : 0.12704918, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74551971, "Stress" : 89866, "BetweennessCentrality" : 0.19692135, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.121, "name" : "YNL199C", "COMMON" : "GCR2", "gal4RGexp" : -0.162, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "212", "degree_layout" : 3, "gal80Rexp" : 0.289, "gal1RGsig" : 0.12893, "Eccentricity" : 20, "gal4RGsig" : 0.54556, "shared_name" : "YPR048W", "TopologicalCoefficient" : 0.33333333, "SUID" : 212, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 8.41532258, "selected" : false, "gal80Rsig" : 0.063048, "ClosenessCentrality" : 0.11883086, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.72535842, "Stress" : 19552, "BetweennessCentrality" : 0.07083561, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.113, "name" : "YPR048W", "COMMON" : "TAH18", "gal4RGexp" : -0.191, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.66666667 } }, { "data" : { "id" : "211", "degree_layout" : 2, "gal80Rexp" : 0.427, "gal1RGsig" : 2.6832E-5, "Eccentricity" : 18, "gal4RGsig" : 5.2576E-4, "shared_name" : "YLR321C", "TopologicalCoefficient" : 0.5, "SUID" : 211, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.12096774, "selected" : false, "gal80Rsig" : 0.0047054, "ClosenessCentrality" : 0.12313803, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.73626045, "Stress" : 1032, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.252, "name" : "YLR321C", "COMMON" : "SFH1", "gal4RGexp" : -0.352, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "210", "degree_layout" : 1, "gal80Rexp" : -0.447, "gal1RGsig" : 1.3135E-6, "Eccentricity" : 21, "gal4RGsig" : 2.3868E-5, "shared_name" : "YBR072W", "TopologicalCoefficient" : 0.0, "SUID" : 210, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 10.6733871, "selected" : false, "gal80Rsig" : 3.3493E-11, "ClosenessCentrality" : 0.09369097, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.6417264, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -1.232, "name" : "YBR072W", "COMMON" : "HSP26", "gal4RGexp" : 0.895, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "209", "degree_layout" : 5, "gal80Rexp" : 0.543, "gal1RGsig" : 0.034847, "Eccentricity" : 20, "gal4RGsig" : 0.42981, "shared_name" : "YGL073W", "TopologicalCoefficient" : 0.25, "SUID" : 209, "SelfLoops" : 0, "NumberOfDirectedEdges" : 5, "AverageShortestPathLength" : 9.67741935, "selected" : false, "gal80Rsig" : 6.2254E-4, "ClosenessCentrality" : 0.10333333, "Degree" : 5, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.6786141, "Stress" : 9976, "BetweennessCentrality" : 0.06332441, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.104, "name" : "YGL073W", "COMMON" : "HSF1", "gal4RGexp" : -0.084, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "208", "degree_layout" : 1, "gal80Rexp" : -0.026, "gal1RGsig" : 1.9402E-6, "Eccentricity" : 17, "gal4RGsig" : 7.0045E-6, "shared_name" : "YBL069W", "TopologicalCoefficient" : 0.0, "SUID" : 208, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 7.8266129, "selected" : false, "gal80Rsig" : 0.87354, "ClosenessCentrality" : 0.12776919, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74716249, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.272, "name" : "YBL069W", "COMMON" : "AST1", "gal4RGexp" : -0.487, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "207", "degree_layout" : 5, "gal80Rexp" : -0.573, "gal1RGsig" : 0.045195, "Eccentricity" : 16, "gal4RGsig" : 0.79134, "shared_name" : "YNL189W", "TopologicalCoefficient" : 0.2, "SUID" : 207, "SelfLoops" : 0, "NumberOfDirectedEdges" : 5, "AverageShortestPathLength" : 7.82258065, "selected" : false, "gal80Rsig" : 1.4096E-8, "ClosenessCentrality" : 0.12783505, "Degree" : 5, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74731183, "Stress" : 9016, "BetweennessCentrality" : 0.05593286, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.082, "name" : "YNL189W", "COMMON" : "SRP1", "gal4RGexp" : 0.014, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.8 } }, { "data" : { "id" : "206", "degree_layout" : 1, "gal80Rexp" : -0.258, "gal1RGsig" : 2.9509E-4, "Eccentricity" : 17, "gal4RGsig" : 5.3874E-5, "shared_name" : "YDL236W", "TopologicalCoefficient" : 0.0, "SUID" : 206, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.81854839, "selected" : false, "gal80Rsig" : 8.095E-4, "ClosenessCentrality" : 0.11339735, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71042413, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.223, "name" : "YDL236W", "COMMON" : "PHO13", "gal4RGexp" : -0.311, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "205", "degree_layout" : 3, "gal80Rexp" : 0.957, "gal1RGsig" : 7.2553E-4, "Eccentricity" : 17, "gal4RGsig" : 1.8582E-4, "shared_name" : "YPL111W", "TopologicalCoefficient" : 0.4, "SUID" : 205, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 8.79435484, "selected" : false, "gal80Rsig" : 5.2368E-11, "ClosenessCentrality" : 0.11370931, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71132019, "Stress" : 4114, "BetweennessCentrality" : 0.02401397, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.186, "name" : "YPL111W", "COMMON" : "CAR1", "gal4RGexp" : -0.26, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "204", "degree_layout" : 1, "gal80Rexp" : -0.071, "gal1RGsig" : 0.066907, "Eccentricity" : 17, "gal4RGsig" : 0.006637, "shared_name" : "YPR062W", "TopologicalCoefficient" : 0.0, "SUID" : 204, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.81854839, "selected" : false, "gal80Rsig" : 0.26496, "ClosenessCentrality" : 0.11339735, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71042413, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.07, "name" : "YPR062W", "COMMON" : "FCY1", "gal4RGexp" : -0.145, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "203", "degree_layout" : 2, "gal80Rexp" : 0.21, "gal1RGsig" : 0.18355, "Eccentricity" : 16, "gal4RGsig" : 0.0039398, "shared_name" : "YLR319C", "TopologicalCoefficient" : 0.5, "SUID" : 203, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.09274194, "selected" : false, "gal80Rsig" : 0.072655, "ClosenessCentrality" : 0.1409892, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.77434289, "Stress" : 6196, "BetweennessCentrality" : 0.07052718, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.071, "name" : "YLR319C", "COMMON" : "BUD6", "gal4RGexp" : -0.201, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.5 } }, { "data" : { "id" : "202", "degree_layout" : 2, "gal80Rexp" : -0.169, "gal1RGsig" : 0.3444, "Eccentricity" : 2, "gal4RGsig" : 0.0089606, "shared_name" : "YNL311C", "TopologicalCoefficient" : 0.5, "SUID" : 202, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.33333333, "selected" : false, "gal80Rsig" : 0.12031, "ClosenessCentrality" : 0.75, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.88888889, "Stress" : 4, "BetweennessCentrality" : 0.66666667, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.055, "name" : "YNL311C", "COMMON" : "YNL311C", "gal4RGexp" : -0.388, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.5 } }, { "data" : { "id" : "201", "degree_layout" : 1, "gal80Rexp" : 0.683, "gal1RGsig" : 0.0020562, "Eccentricity" : 3, "gal4RGsig" : 2.7503E-6, "shared_name" : "YKL001C", "TopologicalCoefficient" : 0.0, "SUID" : 201, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.0, "selected" : false, "gal80Rsig" : 2.7054E-7, "ClosenessCentrality" : 0.5, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66666667, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.152, "name" : "YKL001C", "COMMON" : "MET14", "gal4RGexp" : -0.474, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "200", "degree_layout" : 1, "gal80Rexp" : -0.138, "gal1RGsig" : 6.846E-7, "Eccentricity" : 3, "gal4RGsig" : 0.024371, "shared_name" : "YOL016C", "TopologicalCoefficient" : 0.0, "SUID" : 200, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.0, "selected" : false, "gal80Rsig" : 0.027128, "ClosenessCentrality" : 0.5, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66666667, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.365, "name" : "YOL016C", "COMMON" : "CMK2", "gal4RGexp" : -0.108, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "199", "degree_layout" : 3, "gal80Rexp" : -0.163, "gal1RGsig" : 0.024989, "Eccentricity" : 2, "gal4RGsig" : 0.13694, "shared_name" : "YBR109C", "TopologicalCoefficient" : 0.33333333, "SUID" : 199, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 1.25, "selected" : false, "gal80Rsig" : 0.0092082, "ClosenessCentrality" : 0.8, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.91666667, "Stress" : 10, "BetweennessCentrality" : 0.83333333, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.089, "name" : "YBR109C", "COMMON" : "CMD1", "gal4RGexp" : 0.074, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.33333333 } }, { "data" : { "id" : "198", "degree_layout" : 1, "gal80Rexp" : 0.376, "gal1RGsig" : 1.3457E-4, "Eccentricity" : 1, "gal4RGsig" : 0.36812, "shared_name" : "YJL036W", "TopologicalCoefficient" : 0.0, "SUID" : 198, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 9.7735E-4, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.195, "name" : "YJL036W", "COMMON" : "SNX4", "gal4RGexp" : -0.051, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "197", "degree_layout" : 1, "gal80Rexp" : 0.304, "gal1RGsig" : 9.9404E-5, "Eccentricity" : 1, "gal4RGsig" : 0.8523, "shared_name" : "YDL113C", "TopologicalCoefficient" : 0.0, "SUID" : 197, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.0063436, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.189, "name" : "YDL113C", "COMMON" : "YDL113C", "gal4RGexp" : 0.011, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "196", "degree_layout" : 1, "gal80Rexp" : -0.265, "gal1RGsig" : 4.7824E-4, "Eccentricity" : 2, "gal4RGsig" : 3.204E-7, "shared_name" : "YEL041W", "TopologicalCoefficient" : 0.0, "SUID" : 196, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 0.035715, "ClosenessCentrality" : 0.66666667, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.211, "name" : "YEL041W", "COMMON" : "YEL041W", "gal4RGexp" : 0.393, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "195", "degree_layout" : 2, "gal80Rexp" : 0.138, "gal1RGsig" : 0.143, "Eccentricity" : 1, "gal4RGsig" : 0.33678, "shared_name" : "YHR115C", "TopologicalCoefficient" : 0.0, "SUID" : 195, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.079261, "ClosenessCentrality" : 1.0, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 2, "BetweennessCentrality" : 1.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.056, "name" : "YHR115C", "COMMON" : "YHR115C", "gal4RGexp" : 0.044, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "194", "degree_layout" : 2, "gal80Rexp" : -0.18, "gal1RGsig" : 0.024036, "Eccentricity" : 16, "gal4RGsig" : 0.079913, "shared_name" : "YNL167C", "TopologicalCoefficient" : 0.5, "SUID" : 194, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.66129032, "selected" : false, "gal80Rsig" : 0.015501, "ClosenessCentrality" : 0.13052632, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75328554, "Stress" : 1474, "BetweennessCentrality" : 0.00818695, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.095, "name" : "YNL167C", "COMMON" : "SKO1", "gal4RGexp" : 0.1, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "193", "degree_layout" : 1, "gal80Rexp" : 0.971, "gal1RGsig" : 0.055312, "Eccentricity" : 1, "gal4RGsig" : 0.0023991, "shared_name" : "YDL063C", "TopologicalCoefficient" : 0.0, "SUID" : 193, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.0013668, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.093, "name" : "YDL063C", "COMMON" : "YDL063C", "gal4RGexp" : -0.755, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "192", "degree_layout" : 1, "gal80Rexp" : -0.246, "gal1RGsig" : 1.0523E-5, "Eccentricity" : 1, "gal4RGsig" : 0.0049489, "shared_name" : "YPL131W", "TopologicalCoefficient" : 0.0, "SUID" : 192, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 1.4759E-4, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.228, "name" : "YPL131W", "COMMON" : "RPL5", "gal4RGexp" : -0.149, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "191", "degree_layout" : 2, "gal80Rexp" : -0.164, "gal1RGsig" : 0.053915, "Eccentricity" : 18, "gal4RGsig" : 8.9167E-4, "shared_name" : "YGL161C", "TopologicalCoefficient" : 0.66666667, "SUID" : 191, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 9.23387097, "selected" : false, "gal80Rsig" : 0.0065587, "ClosenessCentrality" : 0.10829694, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 0.69504182, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.07, "name" : "YGL161C", "COMMON" : "YGL161C", "gal4RGexp" : 0.172, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "190", "degree_layout" : 2, "gal80Rexp" : -0.415, "gal1RGsig" : 0.86711, "Eccentricity" : 18, "gal4RGsig" : 1.3164E-5, "shared_name" : "YDR100W", "TopologicalCoefficient" : 0.66666667, "SUID" : 190, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 9.23387097, "selected" : false, "gal80Rsig" : 5.7948E-10, "ClosenessCentrality" : 0.10829694, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 0.69504182, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.007, "name" : "YDR100W", "COMMON" : "YDR100W", "gal4RGexp" : 0.275, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "189", "degree_layout" : 1, "gal80Rexp" : -0.825, "gal1RGsig" : 2.1741E-11, "Eccentricity" : 20, "gal4RGsig" : 0.0021146, "shared_name" : "YMR183C", "TopologicalCoefficient" : 0.0, "SUID" : 189, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 10.64919355, "selected" : false, "gal80Rsig" : 1.0306E-16, "ClosenessCentrality" : 0.09390382, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.64262246, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.822, "name" : "YMR183C", "COMMON" : "SSO2", "gal4RGexp" : 0.256, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "188", "degree_layout" : 5, "gal80Rexp" : 0.302, "gal1RGsig" : 2.9579E-5, "Eccentricity" : 19, "gal4RGsig" : 0.017416, "shared_name" : "YGR009C", "TopologicalCoefficient" : 0.26666667, "SUID" : 188, "SelfLoops" : 0, "NumberOfDirectedEdges" : 5, "AverageShortestPathLength" : 9.65322581, "selected" : false, "gal80Rsig" : 4.4067E-4, "ClosenessCentrality" : 0.10359231, "Degree" : 5, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.67951016, "Stress" : 10322, "BetweennessCentrality" : 0.09214253, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.236, "name" : "YGR009C", "COMMON" : "SEC9", "gal4RGexp" : -0.185, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.8 } }, { "data" : { "id" : "187", "degree_layout" : 1, "gal80Rexp" : -0.397, "gal1RGsig" : 7.9783E-8, "Eccentricity" : 2, "gal4RGsig" : 0.012617, "shared_name" : "YMR291W", "TopologicalCoefficient" : 0.0, "SUID" : 187, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 5.3037E-9, "ClosenessCentrality" : 0.66666667, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.363, "name" : "YMR291W", "COMMON" : "YMR291W", "gal4RGexp" : 0.256, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "186", "degree_layout" : 2, "gal80Rexp" : 0.364, "gal1RGsig" : 0.696, "Eccentricity" : 1, "gal4RGsig" : 0.028001, "shared_name" : "YGR048W", "TopologicalCoefficient" : 0.0, "SUID" : 186, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.0043651, "ClosenessCentrality" : 1.0, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 2, "BetweennessCentrality" : 1.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.017, "name" : "YGR048W", "COMMON" : "UFD1", "gal4RGexp" : -0.155, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "185", "degree_layout" : 1, "gal80Rexp" : 0.514, "gal1RGsig" : 6.9654E-7, "Eccentricity" : 2, "gal4RGsig" : 1.3673E-4, "shared_name" : "YPL222W", "TopologicalCoefficient" : 0.0, "SUID" : 185, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 4.6216E-5, "ClosenessCentrality" : 0.66666667, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.344, "name" : "YPL222W", "COMMON" : "YPL222W", "gal4RGexp" : 0.284, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "184", "degree_layout" : 2, "gal80Rexp" : 0.303, "gal1RGsig" : 0.66515, "Eccentricity" : 15, "gal4RGsig" : 0.0017369, "shared_name" : "YAL040C", "TopologicalCoefficient" : 0.55, "SUID" : 184, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.62903226, "selected" : false, "gal80Rsig" : 0.0010074, "ClosenessCentrality" : 0.15085158, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 0.79151732, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.027, "name" : "YAL040C", "COMMON" : "CLN3", "gal4RGexp" : -0.206, "IsSingleNode" : false, "NeighborhoodConnectivity" : 11.0 } }, { "data" : { "id" : "183", "degree_layout" : 2, "gal80Rexp" : 0.348, "gal1RGsig" : 0.099513, "Eccentricity" : 18, "gal4RGsig" : 6.9671E-4, "shared_name" : "YFR034C", "TopologicalCoefficient" : 0.5, "SUID" : 183, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.25806452, "selected" : false, "gal80Rsig" : 0.020802, "ClosenessCentrality" : 0.12109375, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.7311828, "Stress" : 1048, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.121, "name" : "YFR034C", "COMMON" : "PHO4", "gal4RGexp" : -0.336, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.5 } }, { "data" : { "id" : "182", "degree_layout" : 1, "gal80Rexp" : 0.35, "gal1RGsig" : 1.5078E-6, "Eccentricity" : 1, "gal4RGsig" : 0.013849, "shared_name" : "YFR037C", "TopologicalCoefficient" : 0.0, "SUID" : 182, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.0035541, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.297, "name" : "YFR037C", "COMMON" : "RSC8", "gal4RGexp" : -0.226, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "181", "degree_layout" : 1, "gal80Rexp" : -0.577, "gal1RGsig" : 0.0030289, "Eccentricity" : 1, "gal4RGsig" : 0.029664, "shared_name" : "YOR290C", "TopologicalCoefficient" : 0.0, "SUID" : 181, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 3.6284E-13, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.119, "name" : "YOR290C", "COMMON" : "SNF2", "gal4RGexp" : -0.101, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "180", "degree_layout" : 6, "gal80Rexp" : -0.051, "gal1RGsig" : 0.20733, "Eccentricity" : 18, "gal4RGsig" : 0.063996, "shared_name" : "YER133W", "TopologicalCoefficient" : 0.1875, "SUID" : 180, "SelfLoops" : 0, "NumberOfDirectedEdges" : 6, "AverageShortestPathLength" : 7.91935484, "selected" : false, "gal80Rsig" : 0.36616, "ClosenessCentrality" : 0.12627291, "Degree" : 6, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.7437276, "Stress" : 38412, "BetweennessCentrality" : 0.19096905, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.051, "name" : "YER133W", "COMMON" : "GLC7", "gal4RGexp" : -0.085, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "179", "degree_layout" : 3, "gal80Rexp" : -0.187, "gal1RGsig" : 0.0010176, "Eccentricity" : 19, "gal4RGsig" : 1.5883E-6, "shared_name" : "YOR178C", "TopologicalCoefficient" : 0.36666667, "SUID" : 179, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 8.74596774, "selected" : false, "gal80Rsig" : 0.0036854, "ClosenessCentrality" : 0.1143384, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71311231, "Stress" : 22434, "BetweennessCentrality" : 0.11450307, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.137, "name" : "YOR178C", "COMMON" : "GAC1", "gal4RGexp" : 0.462, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.66666667 } }, { "data" : { "id" : "178", "degree_layout" : 1, "gal80Rexp" : -0.063, "gal1RGsig" : 0.13594, "Eccentricity" : 19, "gal4RGsig" : 4.7159E-6, "shared_name" : "YOR315W", "TopologicalCoefficient" : 0.0, "SUID" : 178, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.91532258, "selected" : false, "gal80Rsig" : 0.50938, "ClosenessCentrality" : 0.11216644, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.7068399, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.066, "name" : "YOR315W", "COMMON" : "YOR315W", "gal4RGexp" : -0.462, "IsSingleNode" : false, "NeighborhoodConnectivity" : 6.0 } }, { "data" : { "id" : "177", "degree_layout" : 1, "gal80Rexp" : 0.349, "gal1RGsig" : 0.0015202, "Eccentricity" : 19, "gal4RGsig" : 0.64469, "shared_name" : "YMR311C", "TopologicalCoefficient" : 0.0, "SUID" : 177, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.91532258, "selected" : false, "gal80Rsig" : 6.5604E-6, "ClosenessCentrality" : 0.11216644, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.7068399, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.214, "name" : "YMR311C", "COMMON" : "GLC8", "gal4RGexp" : 0.021, "IsSingleNode" : false, "NeighborhoodConnectivity" : 6.0 } }, { "data" : { "id" : "176", "degree_layout" : 1, "gal80Rexp" : 0.122, "gal1RGsig" : 6.914E-8, "Eccentricity" : 19, "gal4RGsig" : 2.9767E-8, "shared_name" : "YBR050C", "TopologicalCoefficient" : 0.0, "SUID" : 176, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.91532258, "selected" : false, "gal80Rsig" : 0.28411, "ClosenessCentrality" : 0.11216644, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.7068399, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.432, "name" : "YBR050C", "COMMON" : "REG2", "gal4RGexp" : 0.679, "IsSingleNode" : false, "NeighborhoodConnectivity" : 6.0 } }, { "data" : { "id" : "175", "degree_layout" : 2, "gal80Rexp" : -1.131, "gal1RGsig" : 4.1442E-7, "Eccentricity" : 15, "gal4RGsig" : 1.7862E-9, "shared_name" : "YIL162W", "TopologicalCoefficient" : 0.5, "SUID" : 175, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.78629032, "selected" : false, "gal80Rsig" : 1.7403E-20, "ClosenessCentrality" : 0.14735591, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78569295, "Stress" : 2426, "BetweennessCentrality" : 0.01410579, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.318, "name" : "YIL162W", "COMMON" : "SUC2", "gal4RGexp" : 0.688, "IsSingleNode" : false, "NeighborhoodConnectivity" : 6.5 } }, { "data" : { "id" : "174", "degree_layout" : 1, "gal80Rexp" : 0.12, "gal1RGsig" : 0.056883, "Eccentricity" : 18, "gal4RGsig" : 0.44841, "shared_name" : "YFL038C", "TopologicalCoefficient" : 0.0, "SUID" : 174, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.23790323, "selected" : false, "gal80Rsig" : 0.073548, "ClosenessCentrality" : 0.10824967, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.69489247, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.075, "name" : "YFL038C", "COMMON" : "YPT1", "gal4RGexp" : -0.033, "IsSingleNode" : false, "NeighborhoodConnectivity" : 6.0 } }, { "data" : { "id" : "173", "degree_layout" : 2, "gal80Rexp" : 0.43, "gal1RGsig" : 1.6613E-4, "Eccentricity" : 19, "gal4RGsig" : 0.45777, "shared_name" : "YOR355W", "TopologicalCoefficient" : 0.5, "SUID" : 173, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.06854839, "selected" : false, "gal80Rsig" : 0.0062666, "ClosenessCentrality" : 0.12393803, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.73820191, "Stress" : 4248, "BetweennessCentrality" : 0.03283069, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.176, "name" : "YOR355W", "COMMON" : "GDS1", "gal4RGexp" : -0.044, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "172", "degree_layout" : 1, "gal80Rexp" : 0.389, "gal1RGsig" : 0.02495, "Eccentricity" : 1, "gal4RGsig" : 5.2953E-5, "shared_name" : "YML074C", "TopologicalCoefficient" : 0.0, "SUID" : 172, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 3.3233E-5, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.118, "name" : "YML074C", "COMMON" : "NPI46", "gal4RGexp" : -0.38, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "171", "degree_layout" : 1, "gal80Rexp" : -0.184, "gal1RGsig" : 1.0479E-5, "Eccentricity" : 1, "gal4RGsig" : 1.8121E-6, "shared_name" : "YJL190C", "TopologicalCoefficient" : 0.0, "SUID" : 171, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.0020712, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.444, "name" : "YJL190C", "COMMON" : "RPS22A", "gal4RGexp" : -0.443, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "170", "degree_layout" : 1, "gal80Rexp" : 0.64, "gal1RGsig" : 3.6962E-8, "Eccentricity" : 1, "gal4RGsig" : 4.7738E-4, "shared_name" : "YMR058W", "TopologicalCoefficient" : 0.0, "SUID" : 170, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 1.6005E-8, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.449, "name" : "YMR058W", "COMMON" : "FET3", "gal4RGexp" : -0.293, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "169", "degree_layout" : 1, "gal80Rexp" : 0.868, "gal1RGsig" : 6.6247E-9, "Eccentricity" : 1, "gal4RGsig" : 6.332E-5, "shared_name" : "YER145C", "TopologicalCoefficient" : 0.0, "SUID" : 169, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 5.9656E-7, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.647, "name" : "YER145C", "COMMON" : "FTR1", "gal4RGexp" : -0.78, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "168", "degree_layout" : 1, "gal80Rexp" : 0.692, "gal1RGsig" : 0.0015163, "Eccentricity" : 19, "gal4RGsig" : 0.019412, "shared_name" : "YML123C", "TopologicalCoefficient" : 0.0, "SUID" : 168, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.25403226, "selected" : false, "gal80Rsig" : 6.9606E-7, "ClosenessCentrality" : 0.108061, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.6942951, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.283, "name" : "YML123C", "COMMON" : "PHO84", "gal4RGexp" : -0.114, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "167", "degree_layout" : 2, "gal80Rexp" : -0.139, "gal1RGsig" : 0.012838, "Eccentricity" : 24, "gal4RGsig" : 0.0056375, "shared_name" : "YPL031C", "TopologicalCoefficient" : 0.5, "SUID" : 167, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 13.4516129, "selected" : false, "gal80Rsig" : 0.019984, "ClosenessCentrality" : 0.07434053, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.53882915, "Stress" : 1970, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.106, "name" : "YPL031C", "COMMON" : "PHO85", "gal4RGexp" : 0.125, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.5 } }, { "data" : { "id" : "166", "degree_layout" : 1, "gal80Rexp" : -0.499, "gal1RGsig" : 5.0065E-11, "Eccentricity" : 25, "gal4RGsig" : 4.2811E-6, "shared_name" : "YHR071W", "TopologicalCoefficient" : 0.0, "SUID" : 166, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 14.44758065, "selected" : false, "gal80Rsig" : 6.8054E-8, "ClosenessCentrality" : 0.06921574, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.50194146, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.614, "name" : "YHR071W", "COMMON" : "PCL5", "gal4RGexp" : -0.67, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "165", "degree_layout" : 4, "gal80Rexp" : -1.167, "gal1RGsig" : 0.080275, "Eccentricity" : 16, "gal4RGsig" : 4.3863E-8, "shared_name" : "YML051W", "TopologicalCoefficient" : 0.5, "SUID" : 165, "SelfLoops" : 0, "NumberOfDirectedEdges" : 4, "AverageShortestPathLength" : 7.62096774, "selected" : false, "gal80Rsig" : 8.1952E-17, "ClosenessCentrality" : 0.13121693, "Degree" : 4, "PartnerOfMultiEdgedNodePairs" : 1, "ClusteringCoefficient" : 0.33333333, "Radiality" : 0.75477897, "Stress" : 26, "BetweennessCentrality" : 1.5998E-4, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.07, "name" : "YML051W", "COMMON" : "GAL80", "gal4RGexp" : -0.606, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.33333333 } }, { "data" : { "id" : "164", "degree_layout" : 2, "gal80Rexp" : 0.162, "gal1RGsig" : 0.01257, "Eccentricity" : 15, "gal4RGsig" : 6.9834E-8, "shared_name" : "YDR009W", "TopologicalCoefficient" : 0.6, "SUID" : 164, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.84274194, "selected" : false, "gal80Rsig" : 0.16498, "ClosenessCentrality" : 0.14614025, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78360215, "Stress" : 816, "BetweennessCentrality" : 0.00214797, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.111, "name" : "YDR009W", "COMMON" : "GAL3", "gal4RGexp" : -1.004, "IsSingleNode" : false, "NeighborhoodConnectivity" : 7.0 } }, { "data" : { "id" : "163", "degree_layout" : 1, "gal80Rexp" : 0.295, "gal1RGsig" : 1.3809E-5, "Eccentricity" : 16, "gal4RGsig" : 6.085E-5, "shared_name" : "YLL019C", "TopologicalCoefficient" : 0.0, "SUID" : 163, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.00403226, "selected" : false, "gal80Rsig" : 9.3514E-5, "ClosenessCentrality" : 0.11106135, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.70355436, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.258, "name" : "YLL019C", "COMMON" : "KNS1", "gal4RGexp" : 0.215, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "162", "degree_layout" : 2, "gal80Rexp" : -0.137, "gal1RGsig" : 0.002113, "Eccentricity" : 15, "gal4RGsig" : 0.002831, "shared_name" : "YIL113W", "TopologicalCoefficient" : 0.5, "SUID" : 162, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.00806452, "selected" : false, "gal80Rsig" : 0.23739, "ClosenessCentrality" : 0.12487412, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74044205, "Stress" : 746, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.236, "name" : "YIL113W", "COMMON" : "YIL113W", "gal4RGexp" : 0.211, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "161", "degree_layout" : 1, "gal80Rexp" : -0.864, "gal1RGsig" : 6.9725E-11, "Eccentricity" : 17, "gal4RGsig" : 1.5459E-6, "shared_name" : "YML024W", "TopologicalCoefficient" : 0.0, "SUID" : 161, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 7.28629032, "selected" : false, "gal80Rsig" : 1.3115E-12, "ClosenessCentrality" : 0.13724405, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.76717443, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.551, "name" : "YML024W", "COMMON" : "RPS17A", "gal4RGexp" : -0.454, "IsSingleNode" : false, "NeighborhoodConnectivity" : 17.0 } }, { "data" : { "id" : "160", "degree_layout" : 1, "gal80Rexp" : -0.006, "gal1RGsig" : 0.87354, "Eccentricity" : 2, "gal4RGsig" : 0.20402, "shared_name" : "YOR039W", "TopologicalCoefficient" : 0.0, "SUID" : 160, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 0.92034, "ClosenessCentrality" : 0.66666667, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.006, "name" : "YOR039W", "COMMON" : "CKB2", "gal4RGexp" : -0.058, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "159", "degree_layout" : 2, "gal80Rexp" : 0.16, "gal1RGsig" : 5.6134E-4, "Eccentricity" : 15, "gal4RGsig" : 0.33211, "shared_name" : "YER111C", "TopologicalCoefficient" : 0.5, "SUID" : 159, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.59677419, "selected" : false, "gal80Rsig" : 0.15558, "ClosenessCentrality" : 0.15158924, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.79271207, "Stress" : 3188, "BetweennessCentrality" : 0.0323843, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.195, "name" : "YER111C", "COMMON" : "SWI4", "gal4RGexp" : -0.105, "IsSingleNode" : false, "NeighborhoodConnectivity" : 11.0 } }, { "data" : { "id" : "158", "degree_layout" : 2, "gal80Rexp" : -0.027, "gal1RGsig" : 0.0018541, "Eccentricity" : 14, "gal4RGsig" : 0.1065, "shared_name" : "YDR146C", "TopologicalCoefficient" : 0.5, "SUID" : 158, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 5.90322581, "selected" : false, "gal80Rsig" : 0.76249, "ClosenessCentrality" : 0.16939891, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.81839904, "Stress" : 66656, "BetweennessCentrality" : 0.3090621, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.19, "name" : "YDR146C", "COMMON" : "SWI5", "gal4RGexp" : 0.102, "IsSingleNode" : false, "NeighborhoodConnectivity" : 14.5 } }, { "data" : { "id" : "157", "degree_layout" : 1, "gal80Rexp" : 0.358, "gal1RGsig" : 1.6589E-4, "Eccentricity" : 1, "gal4RGsig" : 4.2736E-7, "shared_name" : "YKL211C", "TopologicalCoefficient" : 0.0, "SUID" : 157, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 1.5264E-4, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.183, "name" : "YKL211C", "COMMON" : "TRP3", "gal4RGexp" : -0.6, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "156", "degree_layout" : 1, "gal80Rexp" : 0.231, "gal1RGsig" : 0.079619, "Eccentricity" : 1, "gal4RGsig" : 1.9673E-5, "shared_name" : "YER090W", "TopologicalCoefficient" : 0.0, "SUID" : 156, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.0015768, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.067, "name" : "YER090W", "COMMON" : "TRP2", "gal4RGexp" : -0.38, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "155", "degree_layout" : 1, "gal80Rexp" : -0.253, "gal1RGsig" : 0.0090277, "Eccentricity" : 19, "gal4RGsig" : 0.0028196, "shared_name" : "YDR354W", "TopologicalCoefficient" : 0.0, "SUID" : 155, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.61693548, "selected" : false, "gal80Rsig" : 0.0012089, "ClosenessCentrality" : 0.11605054, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71789128, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.122, "name" : "YDR354W", "COMMON" : "TRP4", "gal4RGexp" : -0.202, "IsSingleNode" : false, "NeighborhoodConnectivity" : 7.0 } }, { "data" : { "id" : "154", "degree_layout" : 1, "gal80Rexp" : 0.789, "gal1RGsig" : 1.0276E-5, "Eccentricity" : 1, "gal4RGsig" : 4.8347E-7, "shared_name" : "YNL113W", "TopologicalCoefficient" : 0.0, "SUID" : 154, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.0028937, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.304, "name" : "YNL113W", "COMMON" : "RPC19", "gal4RGexp" : -0.979, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "153", "degree_layout" : 1, "gal80Rexp" : -0.026, "gal1RGsig" : 0.0019607, "Eccentricity" : 1, "gal4RGsig" : 1.2743E-5, "shared_name" : "YPR110C", "TopologicalCoefficient" : 0.0, "SUID" : 153, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.70564, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.12, "name" : "YPR110C", "COMMON" : "RPC40", "gal4RGexp" : -0.339, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "152", "degree_layout" : 2, "gal80Rexp" : -0.826, "gal1RGsig" : 1.2362E-4, "Eccentricity" : 21, "gal4RGsig" : 0.013281, "shared_name" : "YER103W", "TopologicalCoefficient" : 0.5, "SUID" : 152, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 10.65725806, "selected" : false, "gal80Rsig" : 8.3702E-13, "ClosenessCentrality" : 0.09383277, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.64232378, "Stress" : 2016, "BetweennessCentrality" : 0.01606373, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.405, "name" : "YER103W", "COMMON" : "SSA4", "gal4RGexp" : 0.176, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.5 } }, { "data" : { "id" : "151", "degree_layout" : 1, "gal80Rexp" : 0.07, "gal1RGsig" : 4.514E-5, "Eccentricity" : 19, "gal4RGsig" : 3.8823E-4, "shared_name" : "YBR190W", "TopologicalCoefficient" : 0.0, "SUID" : 151, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.11693548, "selected" : false, "gal80Rsig" : 0.66515, "ClosenessCentrality" : 0.10968598, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.69937276, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.209, "name" : "YBR190W", "COMMON" : "YBR190W", "gal4RGexp" : -0.3, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "150", "degree_layout" : 1, "gal80Rexp" : -0.591, "gal1RGsig" : 3.3837E-8, "Eccentricity" : 20, "gal4RGsig" : 2.3802E-5, "shared_name" : "YOL059W", "TopologicalCoefficient" : 0.0, "SUID" : 150, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 10.4516129, "selected" : false, "gal80Rsig" : 1.5256E-9, "ClosenessCentrality" : 0.09567901, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.64994026, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.499, "name" : "YOL059W", "COMMON" : "GPD2", "gal4RGexp" : -0.29, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "149", "degree_layout" : 2, "gal80Rexp" : -0.135, "gal1RGsig" : 3.2712E-5, "Eccentricity" : 18, "gal4RGsig" : 3.6609E-6, "shared_name" : "YER102W", "TopologicalCoefficient" : 0.5, "SUID" : 149, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.55645161, "selected" : false, "gal80Rsig" : 0.017595, "ClosenessCentrality" : 0.11687088, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.72013142, "Stress" : 5590, "BetweennessCentrality" : 0.04463374, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.249, "name" : "YER102W", "COMMON" : "RPS8B", "gal4RGexp" : -0.364, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.5 } }, { "data" : { "id" : "148", "degree_layout" : 1, "gal80Rexp" : 0.225, "gal1RGsig" : 0.31634, "Eccentricity" : 20, "gal4RGsig" : 0.2984, "shared_name" : "YOR362C", "TopologicalCoefficient" : 0.0, "SUID" : 148, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 10.4516129, "selected" : false, "gal80Rsig" : 0.0013356, "ClosenessCentrality" : 0.09567901, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.64994026, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.036, "name" : "YOR362C", "COMMON" : "PRE10", "gal4RGexp" : -0.043, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "147", "degree_layout" : 1, "gal80Rexp" : 0.357, "gal1RGsig" : 4.4526E-5, "Eccentricity" : 21, "gal4RGsig" : 0.15055, "shared_name" : "YMR044W", "TopologicalCoefficient" : 0.0, "SUID" : 147, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.56854839, "selected" : false, "gal80Rsig" : 8.8242E-4, "ClosenessCentrality" : 0.10450906, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.68264636, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.255, "name" : "YMR044W", "COMMON" : "YMR044W", "gal4RGexp" : -0.093, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "146", "degree_layout" : 2, "gal80Rexp" : 0.254, "gal1RGsig" : 9.0847E-5, "Eccentricity" : 26, "gal4RGsig" : 0.0015911, "shared_name" : "YOL149W", "TopologicalCoefficient" : 1.0, "SUID" : 146, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 13.09274194, "selected" : false, "gal80Rsig" : 0.059331, "ClosenessCentrality" : 0.0763782, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.55212067, "Stress" : 2, "BetweennessCentrality" : 8.16E-6, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.228, "name" : "YOL149W", "COMMON" : "DCP1", "gal4RGexp" : -0.248, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "145", "degree_layout" : 2, "gal80Rexp" : 0.222, "gal1RGsig" : 7.6925E-4, "Eccentricity" : 3, "gal4RGsig" : 0.58305, "shared_name" : "YLR191W", "TopologicalCoefficient" : 0.9, "SUID" : 145, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.83333333, "selected" : false, "gal80Rsig" : 0.097987, "ClosenessCentrality" : 0.54545455, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 0.72222222, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.178, "name" : "YLR191W", "COMMON" : "PEX13", "gal4RGexp" : -0.056, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.5 } }, { "data" : { "id" : "144", "degree_layout" : 4, "gal80Rexp" : 0.627, "gal1RGsig" : 1.2953E-4, "Eccentricity" : 2, "gal4RGsig" : 0.077941, "shared_name" : "YGL153W", "TopologicalCoefficient" : 0.5, "SUID" : 144, "SelfLoops" : 0, "NumberOfDirectedEdges" : 4, "AverageShortestPathLength" : 1.33333333, "selected" : false, "gal80Rsig" : 0.0023167, "ClosenessCentrality" : 0.75, "Degree" : 4, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.5, "Radiality" : 0.88888889, "Stress" : 10, "BetweennessCentrality" : 0.16666667, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.242, "name" : "YGL153W", "COMMON" : "PEX14", "gal4RGexp" : -0.132, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "143", "degree_layout" : 2, "gal80Rexp" : 0.43, "gal1RGsig" : 0.26052, "Eccentricity" : 2, "gal4RGsig" : 2.9645E-4, "shared_name" : "YER110C", "TopologicalCoefficient" : 0.5, "SUID" : 143, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.33333333, "selected" : false, "gal80Rsig" : 3.6344E-7, "ClosenessCentrality" : 0.75, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.88888889, "Stress" : 4, "BetweennessCentrality" : 0.66666667, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.05, "name" : "YER110C", "COMMON" : "KAP123", "gal4RGexp" : -0.233, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.5 } }, { "data" : { "id" : "142", "degree_layout" : 1, "gal80Rexp" : 0.331, "gal1RGsig" : 9.2417E-8, "Eccentricity" : 3, "gal4RGsig" : 0.42858, "shared_name" : "YML007W", "TopologicalCoefficient" : 0.0, "SUID" : 142, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.0, "selected" : false, "gal80Rsig" : 0.0024709, "ClosenessCentrality" : 0.5, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66666667, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.359, "name" : "YML007W", "COMMON" : "YAP1", "gal4RGexp" : -0.039, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "141", "degree_layout" : 2, "gal80Rexp" : 0.057, "gal1RGsig" : 0.0084321, "Eccentricity" : 17, "gal4RGsig" : 0.6558, "shared_name" : "YBR135W", "TopologicalCoefficient" : 0.5, "SUID" : 141, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.64919355, "selected" : false, "gal80Rsig" : 0.34065, "ClosenessCentrality" : 0.13073274, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75373357, "Stress" : 6576, "BetweennessCentrality" : 0.05196364, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.108, "name" : "YBR135W", "COMMON" : "CKS1", "gal4RGexp" : -0.018, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "140", "degree_layout" : 2, "gal80Rexp" : 0.199, "gal1RGsig" : 0.166, "Eccentricity" : 3, "gal4RGsig" : 0.64313, "shared_name" : "YNL214W", "TopologicalCoefficient" : 0.9, "SUID" : 140, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.83333333, "selected" : false, "gal80Rsig" : 0.11918, "ClosenessCentrality" : 0.54545455, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 0.72222222, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.122, "name" : "YNL214W", "COMMON" : "PEX17", "gal4RGexp" : 0.041, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.5 } }, { "data" : { "id" : "139", "degree_layout" : 1, "gal80Rexp" : 0.708, "gal1RGsig" : 0.17278, "Eccentricity" : 19, "gal4RGsig" : 1.3067E-6, "shared_name" : "YPR167C", "TopologicalCoefficient" : 0.0, "SUID" : 139, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.91129032, "selected" : false, "gal80Rsig" : 5.3086E-4, "ClosenessCentrality" : 0.11221719, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.70698925, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.066, "name" : "YPR167C", "COMMON" : "MET16", "gal4RGexp" : -1.034, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "138", "degree_layout" : 1, "gal80Rexp" : 0.378, "gal1RGsig" : 1.1748E-4, "Eccentricity" : 19, "gal4RGsig" : 0.32501, "shared_name" : "YOR089C", "TopologicalCoefficient" : 0.0, "SUID" : 138, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 10.22580645, "selected" : false, "gal80Rsig" : 8.2229E-6, "ClosenessCentrality" : 0.0977918, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.65830346, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.193, "name" : "YOR089C", "COMMON" : "VPS21", "gal4RGexp" : -0.042, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "137", "degree_layout" : 1, "gal80Rexp" : 0.941, "gal1RGsig" : 1.92E-11, "Eccentricity" : 16, "gal4RGsig" : 9.0335E-5, "shared_name" : "YNL117W", "TopologicalCoefficient" : 0.0, "SUID" : 137, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 7.67741935, "selected" : false, "gal80Rsig" : 1.2597E-5, "ClosenessCentrality" : 0.1302521, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75268817, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.973, "name" : "YNL117W", "COMMON" : "MLS1", "gal4RGexp" : 0.452, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "136", "degree_layout" : 1, "gal80Rexp" : 0.498, "gal1RGsig" : 0.47804, "Eccentricity" : 19, "gal4RGsig" : 5.549E-5, "shared_name" : "YLR175W", "TopologicalCoefficient" : 0.0, "SUID" : 136, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.91129032, "selected" : false, "gal80Rsig" : 1.4113E-7, "ClosenessCentrality" : 0.11221719, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.70698925, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.038, "name" : "YLR175W", "COMMON" : "CBF5", "gal4RGexp" : -0.597, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "135", "degree_layout" : 2, "gal80Rexp" : 0.355, "gal1RGsig" : 2.1837E-4, "Eccentricity" : 23, "gal4RGsig" : 0.0039024, "shared_name" : "YDR167W", "TopologicalCoefficient" : 0.5, "SUID" : 135, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 11.33064516, "selected" : false, "gal80Rsig" : 0.01484, "ClosenessCentrality" : 0.08825623, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.61738351, "Stress" : 2560, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.246, "name" : "YDR167W", "COMMON" : "TAF25", "gal4RGexp" : -0.219, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.5 } }, { "data" : { "id" : "134", "degree_layout" : 2, "gal80Rexp" : -0.301, "gal1RGsig" : 6.6826E-5, "Eccentricity" : 22, "gal4RGsig" : 0.36112, "shared_name" : "YLR432W", "TopologicalCoefficient" : 0.5, "SUID" : 134, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 10.34274194, "selected" : false, "gal80Rsig" : 4.8207E-5, "ClosenessCentrality" : 0.09668616, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.65397252, "Stress" : 5116, "BetweennessCentrality" : 0.01606373, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.197, "name" : "YLR432W", "COMMON" : "YLR432W", "gal4RGexp" : -0.054, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "133", "degree_layout" : 5, "gal80Rexp" : 0.483, "gal1RGsig" : 2.7503E-6, "Eccentricity" : 2, "gal4RGsig" : 0.73489, "shared_name" : "YDR244W", "TopologicalCoefficient" : 0.44, "SUID" : 133, "SelfLoops" : 0, "NumberOfDirectedEdges" : 5, "AverageShortestPathLength" : 1.16666667, "selected" : false, "gal80Rsig" : 4.3149E-4, "ClosenessCentrality" : 0.85714286, "Degree" : 5, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.3, "Radiality" : 0.94444444, "Stress" : 20, "BetweennessCentrality" : 0.5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.369, "name" : "YDR244W", "COMMON" : "PEX5", "gal4RGexp" : -0.021, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.4 } }, { "data" : { "id" : "132", "degree_layout" : 3, "gal80Rexp" : -0.069, "gal1RGsig" : 0.016464, "Eccentricity" : 2, "gal4RGsig" : 0.16704, "shared_name" : "YDR142C", "TopologicalCoefficient" : 0.6, "SUID" : 132, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 0.401, "ClosenessCentrality" : 0.66666667, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.33333333, "Radiality" : 0.83333333, "Stress" : 14, "BetweennessCentrality" : 0.33333333, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.101, "name" : "YDR142C", "COMMON" : "PEX7", "gal4RGexp" : 0.112, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.33333333 } }, { "data" : { "id" : "131", "degree_layout" : 1, "gal80Rexp" : -0.08, "gal1RGsig" : 4.0255E-5, "Eccentricity" : 3, "gal4RGsig" : 0.038943, "shared_name" : "YDL078C", "TopologicalCoefficient" : 0.0, "SUID" : 131, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.0, "selected" : false, "gal80Rsig" : 0.16505, "ClosenessCentrality" : 0.5, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66666667, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.217, "name" : "YDL078C", "COMMON" : "MDH3", "gal4RGexp" : 0.102, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "130", "degree_layout" : 1, "gal80Rexp" : 0.92, "gal1RGsig" : 1.071E-6, "Eccentricity" : 3, "gal4RGsig" : 3.103E-8, "shared_name" : "YIL160C", "TopologicalCoefficient" : 0.0, "SUID" : 130, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.33333333, "selected" : false, "gal80Rsig" : 6.0801E-7, "ClosenessCentrality" : 0.42857143, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.55555556, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 1.044, "name" : "YIL160C", "COMMON" : "POT1", "gal4RGexp" : 0.674, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "129", "degree_layout" : 2, "gal80Rexp" : -0.302, "gal1RGsig" : 0.0081844, "Eccentricity" : 18, "gal4RGsig" : 0.91522, "shared_name" : "YAR007C", "TopologicalCoefficient" : 0.75, "SUID" : 129, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 9.78225806, "selected" : false, "gal80Rsig" : 0.0060792, "ClosenessCentrality" : 0.10222589, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.67473118, "Stress" : 1030, "BetweennessCentrality" : 0.00401593, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.2, "name" : "YAR007C", "COMMON" : "RFA1", "gal4RGexp" : -0.007, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "128", "degree_layout" : 1, "gal80Rexp" : 0.202, "gal1RGsig" : 7.5801E-4, "Eccentricity" : 16, "gal4RGsig" : 0.022048, "shared_name" : "YKL161C", "TopologicalCoefficient" : 0.0, "SUID" : 128, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.00403226, "selected" : false, "gal80Rsig" : 0.18731, "ClosenessCentrality" : 0.11106135, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.70355436, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.198, "name" : "YKL161C", "COMMON" : "YKL161C", "gal4RGexp" : -0.319, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "127", "degree_layout" : 2, "gal80Rexp" : -0.002, "gal1RGsig" : 1.7255E-4, "Eccentricity" : 20, "gal4RGsig" : 4.2857E-4, "shared_name" : "YLR075W", "TopologicalCoefficient" : 1.0, "SUID" : 127, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 10.12903226, "selected" : false, "gal80Rsig" : 0.9794, "ClosenessCentrality" : 0.09872611, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66188769, "Stress" : 2, "BetweennessCentrality" : 1.632E-5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.169, "name" : "YLR075W", "COMMON" : "RPL10", "gal4RGexp" : -0.2, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "126", "degree_layout" : 2, "gal80Rexp" : -0.058, "gal1RGsig" : 3.7183E-4, "Eccentricity" : 19, "gal4RGsig" : 1.7424E-6, "shared_name" : "YPR102C", "TopologicalCoefficient" : 0.57142857, "SUID" : 126, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 9.14112903, "selected" : false, "gal80Rsig" : 0.26052, "ClosenessCentrality" : 0.10939568, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.6984767, "Stress" : 2038, "BetweennessCentrality" : 0.00401593, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.177, "name" : "YPR102C", "COMMON" : "RPL11A", "gal4RGexp" : -0.38, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "125", "degree_layout" : 3, "gal80Rexp" : -0.661, "gal1RGsig" : 1.8582E-5, "Eccentricity" : 16, "gal4RGsig" : 0.0024157, "shared_name" : "YPL240C", "TopologicalCoefficient" : 0.35897436, "SUID" : 125, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 7.55241935, "selected" : false, "gal80Rsig" : 6.7688E-11, "ClosenessCentrality" : 0.1324079, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.7573178, "Stress" : 14116, "BetweennessCentrality" : 0.13656267, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.222, "name" : "YPL240C", "COMMON" : "HSP82", "gal4RGexp" : -0.201, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.66666667 } }, { "data" : { "id" : "124", "degree_layout" : 1, "gal80Rexp" : -0.379, "gal1RGsig" : 0.20226, "Eccentricity" : 23, "gal4RGsig" : 1.9253E-7, "shared_name" : "YHR198C", "TopologicalCoefficient" : 0.0, "SUID" : 124, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 12.16935484, "selected" : false, "gal80Rsig" : 5.4324E-8, "ClosenessCentrality" : 0.08217362, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.58632019, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.053, "name" : "YHR198C", "COMMON" : "YHR198C", "gal4RGexp" : 0.401, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "123", "degree_layout" : 1, "gal80Rexp" : 0.716, "gal1RGsig" : 0.0052304, "Eccentricity" : 23, "gal4RGsig" : 0.21531, "shared_name" : "YLR284C", "TopologicalCoefficient" : 0.0, "SUID" : 123, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 12.16935484, "selected" : false, "gal80Rsig" : 3.9241E-4, "ClosenessCentrality" : 0.08217362, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.58632019, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.195, "name" : "YLR284C", "COMMON" : "ECI1", "gal4RGexp" : -0.148, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "122", "degree_layout" : 1, "gal80Rexp" : 0.579, "gal1RGsig" : 4.7628E-9, "Eccentricity" : 23, "gal4RGsig" : 1.9577E-9, "shared_name" : "YER052C", "TopologicalCoefficient" : 0.0, "SUID" : 122, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 12.80241935, "selected" : false, "gal80Rsig" : 1.3742E-5, "ClosenessCentrality" : 0.07811024, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.56287336, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.47, "name" : "YER052C", "COMMON" : "HOM3", "gal4RGexp" : -1.321, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "121", "degree_layout" : 2, "gal80Rexp" : -0.169, "gal1RGsig" : 0.047943, "Eccentricity" : 22, "gal4RGsig" : 0.068027, "shared_name" : "YNL135C", "TopologicalCoefficient" : 0.5, "SUID" : 121, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 11.80645161, "selected" : false, "gal80Rsig" : 0.0016167, "ClosenessCentrality" : 0.08469945, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.59976105, "Stress" : 978, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.071, "name" : "YNL135C", "COMMON" : "FPR1", "gal4RGexp" : 0.08, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "120", "degree_layout" : 1, "gal80Rexp" : -0.462, "gal1RGsig" : 8.4218E-11, "Eccentricity" : 2, "gal4RGsig" : 2.4189E-8, "shared_name" : "YPR124W", "TopologicalCoefficient" : 0.0, "SUID" : 120, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 8.3821E-6, "ClosenessCentrality" : 0.66666667, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.76, "name" : "YPR124W", "COMMON" : "CTR1", "gal4RGexp" : 0.469, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "119", "degree_layout" : 2, "gal80Rexp" : 0.795, "gal1RGsig" : 1.6731E-4, "Eccentricity" : 21, "gal4RGsig" : 8.4638E-4, "shared_name" : "YHR053C", "TopologicalCoefficient" : 0.6, "SUID" : 119, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 10.65725806, "selected" : false, "gal80Rsig" : 1.5187E-10, "ClosenessCentrality" : 0.09383277, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.64232378, "Stress" : 2004, "BetweennessCentrality" : 0.00799922, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.656, "name" : "YHR053C", "COMMON" : "CUP1A", "gal4RGexp" : -0.75, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "118", "degree_layout" : 2, "gal80Rexp" : 0.802, "gal1RGsig" : 2.8813E-6, "Eccentricity" : 21, "gal4RGsig" : 0.026753, "shared_name" : "YHR055C", "TopologicalCoefficient" : 0.6, "SUID" : 118, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 10.65725806, "selected" : false, "gal80Rsig" : 1.9696E-12, "ClosenessCentrality" : 0.09383277, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.64232378, "Stress" : 2004, "BetweennessCentrality" : 0.00799922, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.867, "name" : "YHR055C", "COMMON" : "CUP1B", "gal4RGexp" : -0.416, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "117", "degree_layout" : 2, "gal80Rexp" : 0.839, "gal1RGsig" : 0.0020577, "Eccentricity" : 23, "gal4RGsig" : 3.6977E-7, "shared_name" : "YGL134W", "TopologicalCoefficient" : 0.5, "SUID" : 117, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 12.46370968, "selected" : false, "gal80Rsig" : 3.7595E-7, "ClosenessCentrality" : 0.08023293, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.57541816, "Stress" : 3936, "BetweennessCentrality" : 0.01606373, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.138, "name" : "YGL134W", "COMMON" : "PCL10", "gal4RGexp" : -0.548, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "116", "degree_layout" : 3, "gal80Rexp" : -0.487, "gal1RGsig" : 4.4171E-9, "Eccentricity" : 22, "gal4RGsig" : 1.8329E-6, "shared_name" : "YLR258W", "TopologicalCoefficient" : 0.33333333, "SUID" : 116, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 11.48387097, "selected" : false, "gal80Rsig" : 5.8675E-12, "ClosenessCentrality" : 0.08707865, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.61170848, "Stress" : 17622, "BetweennessCentrality" : 0.07081755, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.405, "name" : "YLR258W", "COMMON" : "GSY2", "gal4RGexp" : 0.4, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "115", "degree_layout" : 2, "gal80Rexp" : 0.525, "gal1RGsig" : 0.83635, "Eccentricity" : 16, "gal4RGsig" : 4.5029E-5, "shared_name" : "YJL194W", "TopologicalCoefficient" : 0.5, "SUID" : 115, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.83064516, "selected" : false, "gal80Rsig" : 0.050004, "ClosenessCentrality" : 0.14639906, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78405018, "Stress" : 1032, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.018, "name" : "YJL194W", "COMMON" : "CDC6", "gal4RGexp" : -0.661, "IsSingleNode" : false, "NeighborhoodConnectivity" : 9.5 } }, { "data" : { "id" : "114", "degree_layout" : 2, "gal80Rexp" : -0.064, "gal1RGsig" : 0.48423, "Eccentricity" : 26, "gal4RGsig" : 0.019199, "shared_name" : "YBL026W", "TopologicalCoefficient" : 1.0, "SUID" : 114, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 13.09274194, "selected" : false, "gal80Rsig" : 0.59933, "ClosenessCentrality" : 0.0763782, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.55212067, "Stress" : 2, "BetweennessCentrality" : 8.16E-6, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.032, "name" : "YBL026W", "COMMON" : "LSM2", "gal4RGexp" : -0.158, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "113", "degree_layout" : 2, "gal80Rexp" : 0.106, "gal1RGsig" : 0.11213, "Eccentricity" : 18, "gal4RGsig" : 0.48722, "shared_name" : "YBL050W", "TopologicalCoefficient" : 0.5, "SUID" : 113, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.95564516, "selected" : false, "gal80Rsig" : 0.23706, "ClosenessCentrality" : 0.11166141, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.70534648, "Stress" : 10384, "BetweennessCentrality" : 0.0932363, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.066, "name" : "YBL050W", "COMMON" : "SEC17", "gal4RGexp" : -0.044, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.5 } }, { "data" : { "id" : "112", "degree_layout" : 4, "gal80Rexp" : 0.057, "gal1RGsig" : 0.014623, "Eccentricity" : 16, "gal4RGsig" : 6.6062E-6, "shared_name" : "YHR084W", "TopologicalCoefficient" : 0.375, "SUID" : 112, "SelfLoops" : 0, "NumberOfDirectedEdges" : 4, "AverageShortestPathLength" : 6.8266129, "selected" : false, "gal80Rsig" : 0.65365, "ClosenessCentrality" : 0.14648553, "Degree" : 4, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.5, "Radiality" : 0.78419952, "Stress" : 6, "BetweennessCentrality" : 3.265E-5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.109, "name" : "YHR084W", "COMMON" : "STE12", "gal4RGexp" : -0.541, "IsSingleNode" : false, "NeighborhoodConnectivity" : 6.75 } }, { "data" : { "id" : "111", "degree_layout" : 2, "gal80Rexp" : -0.052, "gal1RGsig" : 0.35655, "Eccentricity" : 23, "gal4RGsig" : 0.0049782, "shared_name" : "YBR274W", "TopologicalCoefficient" : 0.5, "SUID" : 111, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 12.43951613, "selected" : false, "gal80Rsig" : 0.55148, "ClosenessCentrality" : 0.08038898, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.57631422, "Stress" : 9810, "BetweennessCentrality" : 0.03966958, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.045, "name" : "YBR274W", "COMMON" : "CHK1", "gal4RGexp" : 0.135, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "110", "degree_layout" : 2, "gal80Rexp" : 0.397, "gal1RGsig" : 2.2142E-4, "Eccentricity" : 24, "gal4RGsig" : 0.11742, "shared_name" : "YMR255W", "TopologicalCoefficient" : 0.5, "SUID" : 110, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 13.40322581, "selected" : false, "gal80Rsig" : 0.0029074, "ClosenessCentrality" : 0.0746089, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.54062127, "Stress" : 7856, "BetweennessCentrality" : 0.03186627, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.211, "name" : "YMR255W", "COMMON" : "GFD1", "gal4RGexp" : -0.159, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "109", "degree_layout" : 1, "gal80Rexp" : -0.269, "gal1RGsig" : 2.4276E-7, "Eccentricity" : 17, "gal4RGsig" : 6.6966E-6, "shared_name" : "YLR452C", "TopologicalCoefficient" : 0.0, "SUID" : 109, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.84677419, "selected" : false, "gal80Rsig" : 0.014595, "ClosenessCentrality" : 0.11303555, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.70937873, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.507, "name" : "YLR452C", "COMMON" : "SST2", "gal4RGexp" : -0.393, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "108", "degree_layout" : 2, "gal80Rexp" : 0.33, "gal1RGsig" : 0.64417, "Eccentricity" : 16, "gal4RGsig" : 5.0285E-5, "shared_name" : "YHR005C", "TopologicalCoefficient" : 0.5, "SUID" : 108, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.85080645, "selected" : false, "gal80Rsig" : 0.0031233, "ClosenessCentrality" : 0.12737545, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74626643, "Stress" : 618, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.02, "name" : "YHR005C", "COMMON" : "GPA1", "gal4RGexp" : -0.413, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "107", "degree_layout" : 1, "gal80Rexp" : 0.883, "gal1RGsig" : 1.6082E-7, "Eccentricity" : 17, "gal4RGsig" : 0.20033, "shared_name" : "YDR299W", "TopologicalCoefficient" : 0.0, "SUID" : 107, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 7.8266129, "selected" : false, "gal80Rsig" : 1.0236E-4, "ClosenessCentrality" : 0.12776919, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74716249, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.518, "name" : "YDR299W", "COMMON" : "BFR2", "gal4RGexp" : -0.287, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "106", "degree_layout" : 2, "gal80Rexp" : 0.393, "gal1RGsig" : 4.9389E-9, "Eccentricity" : 2, "gal4RGsig" : 2.6626E-5, "shared_name" : "YIL074C", "TopologicalCoefficient" : 0.5, "SUID" : 106, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.33333333, "selected" : false, "gal80Rsig" : 0.022682, "ClosenessCentrality" : 0.75, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.88888889, "Stress" : 4, "BetweennessCentrality" : 0.66666667, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.444, "name" : "YIL074C", "COMMON" : "SER33", "gal4RGexp" : -0.565, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.5 } }, { "data" : { "id" : "105", "degree_layout" : 1, "gal80Rexp" : 0.576, "gal1RGsig" : 9.0303E-5, "Eccentricity" : 16, "gal4RGsig" : 1.8298E-5, "shared_name" : "YOR120W", "TopologicalCoefficient" : 0.0, "SUID" : 105, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 7.63306452, "selected" : false, "gal80Rsig" : 6.3927E-9, "ClosenessCentrality" : 0.13100898, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75433094, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.194, "name" : "YOR120W", "COMMON" : "GCY1", "gal4RGexp" : -0.349, "IsSingleNode" : false, "NeighborhoodConnectivity" : 10.0 } }, { "data" : { "id" : "104", "degree_layout" : 2, "gal80Rexp" : -0.177, "gal1RGsig" : 0.11203, "Eccentricity" : 19, "gal4RGsig" : 0.0061997, "shared_name" : "YPR041W", "TopologicalCoefficient" : 0.75, "SUID" : 104, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 10.31854839, "selected" : false, "gal80Rsig" : 0.011738, "ClosenessCentrality" : 0.09691286, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 0.65486858, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.059, "name" : "YPR041W", "COMMON" : "TIF5", "gal4RGexp" : -0.243, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "103", "degree_layout" : 2, "gal80Rexp" : -0.134, "gal1RGsig" : 0.056656, "Eccentricity" : 21, "gal4RGsig" : 8.8839E-7, "shared_name" : "YIL045W", "TopologicalCoefficient" : 0.5, "SUID" : 103, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 10.56048387, "selected" : false, "gal80Rsig" : 0.072301, "ClosenessCentrality" : 0.09469263, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.645908, "Stress" : 19520, "BetweennessCentrality" : 0.07770667, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.078, "name" : "YIL045W", "COMMON" : "PIG2", "gal4RGexp" : 0.478, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "102", "degree_layout" : 3, "gal80Rexp" : 0.0, "gal1RGsig" : 9.0717E-9, "Eccentricity" : 21, "gal4RGsig" : 0.21914, "shared_name" : "YDL215C", "TopologicalCoefficient" : 0.33333333, "SUID" : 102, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 9.36290323, "selected" : false, "gal80Rsig" : 0.999999, "ClosenessCentrality" : 0.10680448, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.69026284, "Stress" : 15318, "BetweennessCentrality" : 0.04770145, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.485, "name" : "YDL215C", "COMMON" : "GDH2", "gal4RGexp" : 0.242, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.66666667 } }, { "data" : { "id" : "101", "degree_layout" : 2, "gal80Rexp" : -0.046, "gal1RGsig" : 4.1949E-4, "Eccentricity" : 2, "gal4RGsig" : 4.6903E-5, "shared_name" : "YER079W", "TopologicalCoefficient" : 0.5, "SUID" : 101, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 0.40867, "ClosenessCentrality" : 0.66666667, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.875, "Stress" : 8, "BetweennessCentrality" : 0.66666667, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.174, "name" : "YER079W", "COMMON" : "YER079W", "gal4RGexp" : -0.267, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "100", "degree_layout" : 3, "gal80Rexp" : 0.339, "gal1RGsig" : 2.7658E-4, "Eccentricity" : 22, "gal4RGsig" : 0.25629, "shared_name" : "YDL030W", "TopologicalCoefficient" : 0.33333333, "SUID" : 100, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 9.96774194, "selected" : false, "gal80Rsig" : 0.011822, "ClosenessCentrality" : 0.10032362, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66786141, "Stress" : 55180, "BetweennessCentrality" : 0.12179569, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.244, "name" : "YDL030W", "COMMON" : "PRP9", "gal4RGexp" : -0.119, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.33333333 } }, { "data" : { "id" : "99", "degree_layout" : 1, "gal80Rexp" : 0.571, "gal1RGsig" : 5.0658E-5, "Eccentricity" : 23, "gal4RGsig" : 1.2336E-4, "shared_name" : "YMR005W", "TopologicalCoefficient" : 0.0, "SUID" : 99, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 10.96370968, "selected" : false, "gal80Rsig" : 9.5685E-5, "ClosenessCentrality" : 0.09121, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.63097372, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.218, "name" : "YMR005W", "COMMON" : "MPT1", "gal4RGexp" : -0.419, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "98", "degree_layout" : 1, "gal80Rexp" : -0.022, "gal1RGsig" : 1.8529E-4, "Eccentricity" : 16, "gal4RGsig" : 0.014038, "shared_name" : "YER124C", "TopologicalCoefficient" : 0.0, "SUID" : 98, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 7.85887097, "selected" : false, "gal80Rsig" : 0.76846, "ClosenessCentrality" : 0.12724474, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74596774, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.179, "name" : "YER124C", "COMMON" : "YER124C", "gal4RGexp" : 0.126, "IsSingleNode" : false, "NeighborhoodConnectivity" : 9.0 } }, { "data" : { "id" : "97", "degree_layout" : 2, "gal80Rexp" : -0.084, "gal1RGsig" : 2.639E-4, "Eccentricity" : 19, "gal4RGsig" : 7.4028E-7, "shared_name" : "YGR085C", "TopologicalCoefficient" : 0.57142857, "SUID" : 97, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 9.14112903, "selected" : false, "gal80Rsig" : 0.1613, "ClosenessCentrality" : 0.10939568, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.6984767, "Stress" : 2038, "BetweennessCentrality" : 0.00401593, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.188, "name" : "YGR085C", "COMMON" : "RPL11B", "gal4RGexp" : -0.425, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "96", "degree_layout" : 8, "gal80Rexp" : -0.214, "gal1RGsig" : 0.021972, "Eccentricity" : 18, "gal4RGsig" : 0.5176, "shared_name" : "YDR395W", "TopologicalCoefficient" : 0.25, "SUID" : 96, "SelfLoops" : 0, "NumberOfDirectedEdges" : 8, "AverageShortestPathLength" : 8.15322581, "selected" : false, "gal80Rsig" : 0.40913, "ClosenessCentrality" : 0.12265084, "Degree" : 8, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.73506571, "Stress" : 16272, "BetweennessCentrality" : 0.05570067, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.119, "name" : "YDR395W", "COMMON" : "SXM1", "gal4RGexp" : 0.086, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.5 } }, { "data" : { "id" : "95", "degree_layout" : 1, "gal80Rexp" : -0.394, "gal1RGsig" : 1.6823E-10, "Eccentricity" : 18, "gal4RGsig" : 1.9828E-4, "shared_name" : "YGR088W", "TopologicalCoefficient" : 0.0, "SUID" : 95, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.52822581, "selected" : false, "gal80Rsig" : 3.0726E-6, "ClosenessCentrality" : 0.10495133, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.68413978, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.91, "name" : "YGR088W", "COMMON" : "CTT1", "gal4RGexp" : 0.596, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "94", "degree_layout" : 1, "gal80Rexp" : 0.109, "gal1RGsig" : 2.5284E-10, "Eccentricity" : 3, "gal4RGsig" : 3.0368E-5, "shared_name" : "YER081W", "TopologicalCoefficient" : 0.0, "SUID" : 94, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.0, "selected" : false, "gal80Rsig" : 0.094304, "ClosenessCentrality" : 0.5, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66666667, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.568, "name" : "YER081W", "COMMON" : "SER3", "gal4RGexp" : -0.423, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "93", "degree_layout" : 1, "gal80Rexp" : -0.89, "gal1RGsig" : 1.0456E-9, "Eccentricity" : 16, "gal4RGsig" : 0.54593, "shared_name" : "YPR113W", "TopologicalCoefficient" : 0.0, "SUID" : 93, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 6.83870968, "selected" : false, "gal80Rsig" : 5.6202E-18, "ClosenessCentrality" : 0.14622642, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78375149, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.495, "name" : "YPR113W", "COMMON" : "PIS1", "gal4RGexp" : 0.025, "IsSingleNode" : false, "NeighborhoodConnectivity" : 18.0 } }, { "data" : { "id" : "92", "degree_layout" : 1, "gal80Rexp" : -0.339, "gal1RGsig" : 0.68369, "Eccentricity" : 19, "gal4RGsig" : 0.0033116, "shared_name" : "YIL070C", "TopologicalCoefficient" : 0.0, "SUID" : 92, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 10.51612903, "selected" : false, "gal80Rsig" : 9.0003E-6, "ClosenessCentrality" : 0.09509202, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.64755078, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.033, "name" : "YIL070C", "COMMON" : "MAM33", "gal4RGexp" : 0.146, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "91", "degree_layout" : 1, "gal80Rexp" : -0.172, "gal1RGsig" : 0.24703, "Eccentricity" : 21, "gal4RGsig" : 0.78003, "shared_name" : "YLR153C", "TopologicalCoefficient" : 0.0, "SUID" : 91, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.56854839, "selected" : false, "gal80Rsig" : 0.011567, "ClosenessCentrality" : 0.10450906, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.68264636, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.042, "name" : "YLR153C", "COMMON" : "ACS2", "gal4RGexp" : -0.014, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "90", "degree_layout" : 1, "gal80Rexp" : 0.124, "gal1RGsig" : 0.0020954, "Eccentricity" : 18, "gal4RGsig" : 5.1497E-4, "shared_name" : "YGR046W", "TopologicalCoefficient" : 0.0, "SUID" : 90, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.75806452, "selected" : false, "gal80Rsig" : 0.10073, "ClosenessCentrality" : 0.10247934, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.67562724, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.158, "name" : "YGR046W", "COMMON" : "YGR046W", "gal4RGexp" : 0.177, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "89", "degree_layout" : 1, "gal80Rexp" : 1.345, "gal1RGsig" : 7.3947E-4, "Eccentricity" : 19, "gal4RGsig" : 3.8499E-5, "shared_name" : "YNL164C", "TopologicalCoefficient" : 0.0, "SUID" : 89, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.46774194, "selected" : false, "gal80Rsig" : 5.7872E-6, "ClosenessCentrality" : 0.11809524, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.72341697, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.272, "name" : "YNL164C", "COMMON" : "YNL164C", "gal4RGexp" : -0.949, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "88", "degree_layout" : 1, "gal80Rexp" : -0.089, "gal1RGsig" : 4.6513E-11, "Eccentricity" : 20, "gal4RGsig" : 1.488E-4, "shared_name" : "YDR070C", "TopologicalCoefficient" : 0.0, "SUID" : 88, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 10.4516129, "selected" : false, "gal80Rsig" : 0.1936, "ClosenessCentrality" : 0.09567901, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.64994026, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.915, "name" : "YDR070C", "COMMON" : "YDR070C", "gal4RGexp" : 0.671, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "87", "degree_layout" : 2, "gal80Rexp" : -0.158, "gal1RGsig" : 4.187E-5, "Eccentricity" : 14, "gal4RGsig" : 0.0010135, "shared_name" : "YOR212W", "TopologicalCoefficient" : 0.5, "SUID" : 87, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.71774194, "selected" : false, "gal80Rsig" : 0.023184, "ClosenessCentrality" : 0.14885954, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78823178, "Stress" : 14000, "BetweennessCentrality" : 0.13650914, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.189, "name" : "YOR212W", "COMMON" : "STE4", "gal4RGexp" : -0.256, "IsSingleNode" : false, "NeighborhoodConnectivity" : 6.5 } }, { "data" : { "id" : "86", "degree_layout" : 1, "gal80Rexp" : 0.686, "gal1RGsig" : 4.2628E-11, "Eccentricity" : 18, "gal4RGsig" : 1.601E-8, "shared_name" : "YNL036W", "TopologicalCoefficient" : 0.0, "SUID" : 86, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 7.78225806, "selected" : false, "gal80Rsig" : 3.3349E-7, "ClosenessCentrality" : 0.12849741, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74880526, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.998, "name" : "YNL036W", "COMMON" : "NCE103", "gal4RGexp" : 0.506, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "85", "degree_layout" : 1, "gal80Rexp" : 0.385, "gal1RGsig" : 4.5247E-4, "Eccentricity" : 24, "gal4RGsig" : 0.12134, "shared_name" : "YML114C", "TopologicalCoefficient" : 0.0, "SUID" : 85, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 12.3266129, "selected" : false, "gal80Rsig" : 0.0058304, "ClosenessCentrality" : 0.08112529, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.58049582, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.226, "name" : "YML114C", "COMMON" : "YML114C", "gal4RGexp" : -0.145, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "84", "degree_layout" : 3, "gal80Rexp" : -0.296, "gal1RGsig" : 0.41398, "Eccentricity" : 17, "gal4RGsig" : 5.0622E-5, "shared_name" : "YMR117C", "TopologicalCoefficient" : 0.33333333, "SUID" : 84, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 8.80241935, "selected" : false, "gal80Rsig" : 0.35411, "ClosenessCentrality" : 0.11360513, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71102151, "Stress" : 1234, "BetweennessCentrality" : 0.01609638, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.093, "name" : "YMR117C", "COMMON" : "SPC24", "gal4RGexp" : 0.371, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "83", "degree_layout" : 1, "gal80Rexp" : -0.359, "gal1RGsig" : 0.0032078, "Eccentricity" : 18, "gal4RGsig" : 5.8663E-5, "shared_name" : "YPR010C", "TopologicalCoefficient" : 0.0, "SUID" : 83, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.7983871, "selected" : false, "gal80Rsig" : 0.0061199, "ClosenessCentrality" : 0.10205761, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.67413381, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.129, "name" : "YPR010C", "COMMON" : "RPA135", "gal4RGexp" : -0.394, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "82", "degree_layout" : 1, "gal80Rexp" : 0.335, "gal1RGsig" : 7.0779E-4, "Eccentricity" : 2, "gal4RGsig" : 0.010881, "shared_name" : "YOR215C", "TopologicalCoefficient" : 0.0, "SUID" : 82, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 1.273E-4, "ClosenessCentrality" : 0.66666667, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.151, "name" : "YOR215C", "COMMON" : "YOR215C", "gal4RGexp" : 0.137, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "81", "degree_layout" : 2, "gal80Rexp" : 0.124, "gal1RGsig" : 0.091906, "Eccentricity" : 2, "gal4RGsig" : 0.32752, "shared_name" : "YDL088C", "TopologicalCoefficient" : 0.5, "SUID" : 81, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.33333333, "selected" : false, "gal80Rsig" : 0.081403, "ClosenessCentrality" : 0.75, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.88888889, "Stress" : 4, "BetweennessCentrality" : 0.66666667, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.069, "name" : "YDL088C", "COMMON" : "ASM4", "gal4RGexp" : -0.074, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.5 } }, { "data" : { "id" : "80", "degree_layout" : 2, "gal80Rexp" : 0.49, "gal1RGsig" : 0.70174, "Eccentricity" : 1, "gal4RGsig" : 1.0814E-5, "shared_name" : "YLR197W", "TopologicalCoefficient" : 1.0, "SUID" : 80, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 3.3814E-8, "ClosenessCentrality" : 1.0, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.02, "name" : "YLR197W", "COMMON" : "SIK1", "gal4RGexp" : -0.521, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "79", "degree_layout" : 1, "gal80Rexp" : -0.536, "gal1RGsig" : 4.2677E-7, "Eccentricity" : 2, "gal4RGsig" : 4.2373E-5, "shared_name" : "YGL202W", "TopologicalCoefficient" : 0.0, "SUID" : 79, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 3.8938E-13, "ClosenessCentrality" : 0.66666667, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.305, "name" : "YGL202W", "COMMON" : "ARO8", "gal4RGexp" : -0.286, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "78", "degree_layout" : 2, "gal80Rexp" : 0.029, "gal1RGsig" : 0.11939, "Eccentricity" : 1, "gal4RGsig" : 0.08221, "shared_name" : "YGR074W", "TopologicalCoefficient" : 0.0, "SUID" : 78, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.80755, "ClosenessCentrality" : 1.0, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 2, "BetweennessCentrality" : 1.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.074, "name" : "YGR074W", "COMMON" : "SMD1", "gal4RGexp" : -0.133, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "77", "degree_layout" : 1, "gal80Rexp" : 0.429, "gal1RGsig" : 0.0078298, "Eccentricity" : 2, "gal4RGsig" : 0.13454, "shared_name" : "YBR170C", "TopologicalCoefficient" : 0.0, "SUID" : 77, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 0.0016184, "ClosenessCentrality" : 0.66666667, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.128, "name" : "YBR170C", "COMMON" : "NPL4", "gal4RGexp" : -0.134, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "76", "degree_layout" : 1, "gal80Rexp" : -0.406, "gal1RGsig" : 4.5602E-11, "Eccentricity" : 17, "gal4RGsig" : 1.8858E-5, "shared_name" : "YDL023C", "TopologicalCoefficient" : 0.0, "SUID" : 76, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 7.8266129, "selected" : false, "gal80Rsig" : 1.7119E-8, "ClosenessCentrality" : 0.12776919, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74716249, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.712, "name" : "YDL023C", "COMMON" : "YDL023C", "gal4RGexp" : 0.497, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "75", "degree_layout" : 1, "gal80Rexp" : -0.204, "gal1RGsig" : 2.4958E-4, "Eccentricity" : 21, "gal4RGsig" : 0.0042386, "shared_name" : "YGR136W", "TopologicalCoefficient" : 0.0, "SUID" : 75, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 11.06854839, "selected" : false, "gal80Rsig" : 0.0020376, "ClosenessCentrality" : 0.09034608, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.6270908, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.167, "name" : "YGR136W", "COMMON" : "YGR136W", "gal4RGexp" : -0.163, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "74", "degree_layout" : 1, "gal80Rexp" : 0.047, "gal1RGsig" : 1.1443E-5, "Eccentricity" : 3, "gal4RGsig" : 8.1743E-6, "shared_name" : "YFR014C", "TopologicalCoefficient" : 0.0, "SUID" : 74, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.0, "selected" : false, "gal80Rsig" : 0.64057, "ClosenessCentrality" : 0.5, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66666667, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.229, "name" : "YFR014C", "COMMON" : "CMK1", "gal4RGexp" : 0.304, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "73", "degree_layout" : 1, "gal80Rexp" : 0.056, "gal1RGsig" : 0.0041386, "Eccentricity" : 19, "gal4RGsig" : 1.5697E-6, "shared_name" : "YDL075W", "TopologicalCoefficient" : 0.0, "SUID" : 73, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.14919355, "selected" : false, "gal80Rsig" : 0.38208, "ClosenessCentrality" : 0.10929925, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.69817802, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.218, "name" : "YDL075W", "COMMON" : "RPL31A", "gal4RGexp" : -0.451, "IsSingleNode" : false, "NeighborhoodConnectivity" : 8.0 } }, { "data" : { "id" : "72", "degree_layout" : 1, "gal80Rexp" : -0.124, "gal1RGsig" : 2.6481E-7, "Eccentricity" : 19, "gal4RGsig" : 5.1994E-5, "shared_name" : "YNL069C", "TopologicalCoefficient" : 0.0, "SUID" : 72, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.14919355, "selected" : false, "gal80Rsig" : 0.026888, "ClosenessCentrality" : 0.10929925, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.69817802, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.346, "name" : "YNL069C", "COMMON" : "RPL16B", "gal4RGexp" : -0.284, "IsSingleNode" : false, "NeighborhoodConnectivity" : 8.0 } }, { "data" : { "id" : "71", "degree_layout" : 1, "Eccentricity" : 19, "shared_name" : "YER056CA", "TopologicalCoefficient" : 0.0, "SUID" : 71, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.14919355, "selected" : false, "ClosenessCentrality" : 0.10929925, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.69817802, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "name" : "YER056CA", "COMMON" : "", "IsSingleNode" : false, "NeighborhoodConnectivity" : 8.0 } }, { "data" : { "id" : "70", "degree_layout" : 1, "gal80Rexp" : -0.025, "gal1RGsig" : 3.7855E-5, "Eccentricity" : 19, "gal4RGsig" : 3.4652E-7, "shared_name" : "YIL052C", "TopologicalCoefficient" : 0.0, "SUID" : 70, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.14919355, "selected" : false, "gal80Rsig" : 0.66627, "ClosenessCentrality" : 0.10929925, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.69817802, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.258, "name" : "YIL052C", "COMMON" : "RPL34B", "gal4RGexp" : -0.451, "IsSingleNode" : false, "NeighborhoodConnectivity" : 8.0 } }, { "data" : { "id" : "69", "degree_layout" : 1, "gal80Rexp" : 0.116, "gal1RGsig" : 0.012373, "Eccentricity" : 19, "gal4RGsig" : 7.892E-5, "shared_name" : "YLR345W", "TopologicalCoefficient" : 0.0, "SUID" : 69, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.11693548, "selected" : false, "gal80Rsig" : 0.073789, "ClosenessCentrality" : 0.10968598, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.69937276, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.108, "name" : "YLR345W", "COMMON" : "YLR345W", "gal4RGexp" : 0.234, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "68", "degree_layout" : 1, "gal80Rexp" : -0.42, "gal1RGsig" : 2.5668E-4, "Eccentricity" : 3, "gal4RGsig" : 0.45723, "shared_name" : "YBL079W", "TopologicalCoefficient" : 0.0, "SUID" : 68, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.0, "selected" : false, "gal80Rsig" : 2.9469E-9, "ClosenessCentrality" : 0.5, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66666667, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.186, "name" : "YBL079W", "COMMON" : "NUP170", "gal4RGexp" : -0.032, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "67", "degree_layout" : 3, "gal80Rexp" : 0.94, "gal1RGsig" : 5.5911E-6, "Eccentricity" : 20, "gal4RGsig" : 1.2945E-5, "shared_name" : "YBR045C", "TopologicalCoefficient" : 0.44444444, "SUID" : 67, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 9.64516129, "selected" : false, "gal80Rsig" : 0.016389, "ClosenessCentrality" : 0.10367893, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.67980884, "Stress" : 21474, "BetweennessCentrality" : 0.08528144, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.786, "name" : "YBR045C", "COMMON" : "GIP1", "gal4RGexp" : 1.022, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.33333333 } }, { "data" : { "id" : "66", "degree_layout" : 2, "gal80Rexp" : 0.247, "gal1RGsig" : 0.16958, "Eccentricity" : 19, "gal4RGsig" : 6.2032E-4, "shared_name" : "YER054C", "TopologicalCoefficient" : 0.58333333, "SUID" : 66, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.81854839, "selected" : false, "gal80Rsig" : 0.0043603, "ClosenessCentrality" : 0.11339735, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71042413, "Stress" : 11544, "BetweennessCentrality" : 0.04427321, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.057, "name" : "YER054C", "COMMON" : "GIP2", "gal4RGexp" : 0.206, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.5 } }, { "data" : { "id" : "65", "degree_layout" : 1, "gal80Rexp" : -0.232, "gal1RGsig" : 3.174E-5, "Eccentricity" : 18, "gal4RGsig" : 1.1525E-7, "shared_name" : "YPR145W", "TopologicalCoefficient" : 0.0, "SUID" : 65, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.7983871, "selected" : false, "gal80Rsig" : 0.0011873, "ClosenessCentrality" : 0.10205761, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.67413381, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.195, "name" : "YPR145W", "COMMON" : "ASN1", "gal4RGexp" : -0.614, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "64", "degree_layout" : 1, "gal80Rexp" : 0.0, "gal1RGsig" : 5.373E-8, "Eccentricity" : 2, "gal4RGsig" : 0.94178, "shared_name" : "YBR043C", "TopologicalCoefficient" : 0.0, "SUID" : 64, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 0.999999, "ClosenessCentrality" : 0.66666667, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.454, "name" : "YBR043C", "COMMON" : "YBR043C", "gal4RGexp" : 0.023, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "63", "degree_layout" : 2, "gal80Rexp" : 0.448, "gal1RGsig" : 2.186E-5, "Eccentricity" : 25, "gal4RGsig" : 0.028044, "shared_name" : "YDR277C", "TopologicalCoefficient" : 0.5, "SUID" : 63, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 12.12096774, "selected" : false, "gal80Rsig" : 5.727E-4, "ClosenessCentrality" : 0.08250166, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.58811231, "Stress" : 2722, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.243, "name" : "YDR277C", "COMMON" : "MTH1", "gal4RGexp" : 0.192, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "62", "degree_layout" : 1, "gal80Rexp" : 0.449, "gal1RGsig" : 0.018043, "Eccentricity" : 26, "gal4RGsig" : 0.033961, "shared_name" : "YDL194W", "TopologicalCoefficient" : 0.0, "SUID" : 62, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 13.11693548, "selected" : false, "gal80Rsig" : 0.011348, "ClosenessCentrality" : 0.07623732, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.55122461, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.139, "name" : "YDL194W", "COMMON" : "SNF3", "gal4RGexp" : 0.333, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } } ], "edges" : [ { "data" : { "id" : "754", "source" : "392", "target" : "391", "EdgeBetweenness" : 496.0, "shared_name" : "YKR026C (pp) YGL122C", "shared_interaction" : "pp", "name" : "YKR026C (pp) YGL122C", "interaction" : "pp", "SUID" : 754, "selected" : false } }, { "data" : { "id" : "753", "source" : "391", "target" : "379", "EdgeBetweenness" : 988.0, "shared_name" : "YGL122C (pp) YOL123W", "shared_interaction" : "pp", "name" : "YGL122C (pp) YOL123W", "interaction" : "pp", "SUID" : 753, "selected" : false } }, { "data" : { "id" : "752", "source" : "390", "target" : "389", "EdgeBetweenness" : 6.0, "shared_name" : "YGR218W (pp) YGL097W", "shared_interaction" : "pp", "name" : "YGR218W (pp) YGL097W", "interaction" : "pp", "SUID" : 752, "selected" : false } }, { "data" : { "id" : "751", "source" : "389", "target" : "388", "EdgeBetweenness" : 6.0, "shared_name" : "YGL097W (pp) YOR204W", "shared_interaction" : "pp", "name" : "YGL097W (pp) YOR204W", "interaction" : "pp", "SUID" : 751, "selected" : false } }, { "data" : { "id" : "750", "source" : "387", "target" : "386", "EdgeBetweenness" : 4.0, "shared_name" : "YLR249W (pp) YPR080W", "shared_interaction" : "pp", "name" : "YLR249W (pp) YPR080W", "interaction" : "pp", "SUID" : 750, "selected" : false } }, { "data" : { "id" : "749", "source" : "387", "target" : "385", "EdgeBetweenness" : 4.0, "shared_name" : "YLR249W (pp) YBR118W", "shared_interaction" : "pp", "name" : "YLR249W (pp) YBR118W", "interaction" : "pp", "SUID" : 749, "selected" : false } }, { "data" : { "id" : "748", "source" : "386", "target" : "380", "EdgeBetweenness" : 4.0, "shared_name" : "YPR080W (pp) YAL003W", "shared_interaction" : "pp", "name" : "YPR080W (pp) YAL003W", "interaction" : "pp", "SUID" : 748, "selected" : false } }, { "data" : { "id" : "747", "source" : "385", "target" : "380", "EdgeBetweenness" : 4.0, "shared_name" : "YBR118W (pp) YAL003W", "shared_interaction" : "pp", "name" : "YBR118W (pp) YAL003W", "interaction" : "pp", "SUID" : 747, "selected" : false } }, { "data" : { "id" : "746", "source" : "384", "target" : "389", "EdgeBetweenness" : 6.0, "shared_name" : "YLR293C (pp) YGL097W", "shared_interaction" : "pp", "name" : "YLR293C (pp) YGL097W", "interaction" : "pp", "SUID" : 746, "selected" : false } }, { "data" : { "id" : "745", "source" : "383", "target" : "382", "EdgeBetweenness" : 496.0, "shared_name" : "YMR146C (pp) YDR429C", "shared_interaction" : "pp", "name" : "YMR146C (pp) YDR429C", "interaction" : "pp", "SUID" : 745, "selected" : false } }, { "data" : { "id" : "744", "source" : "382", "target" : "381", "EdgeBetweenness" : 1470.49481074, "shared_name" : "YDR429C (pp) YFL017C", "shared_interaction" : "pp", "name" : "YDR429C (pp) YFL017C", "interaction" : "pp", "SUID" : 744, "selected" : false } }, { "data" : { "id" : "743", "source" : "381", "target" : "150", "EdgeBetweenness" : 496.0, "shared_name" : "YFL017C (pp) YOL059W", "shared_interaction" : "pp", "name" : "YFL017C (pp) YOL059W", "interaction" : "pp", "SUID" : 743, "selected" : false } }, { "data" : { "id" : "742", "source" : "381", "target" : "149", "EdgeBetweenness" : 2758.08455433, "shared_name" : "YFL017C (pp) YER102W", "shared_interaction" : "pp", "name" : "YFL017C (pp) YER102W", "interaction" : "pp", "SUID" : 742, "selected" : false } }, { "data" : { "id" : "741", "source" : "381", "target" : "148", "EdgeBetweenness" : 496.0, "shared_name" : "YFL017C (pp) YOR362C", "shared_interaction" : "pp", "name" : "YFL017C (pp) YOR362C", "interaction" : "pp", "SUID" : 741, "selected" : false } }, { "data" : { "id" : "740", "source" : "379", "target" : "378", "EdgeBetweenness" : 496.0, "shared_name" : "YOL123W (pp) YGL044C", "shared_interaction" : "pp", "name" : "YOL123W (pp) YGL044C", "interaction" : "pp", "SUID" : 740, "selected" : false } }, { "data" : { "id" : "739", "source" : "377", "target" : "376", "EdgeBetweenness" : 8.0, "shared_name" : "YPL211W (pp) YGR014W", "shared_interaction" : "pp", "name" : "YPL211W (pp) YGR014W", "interaction" : "pp", "SUID" : 739, "selected" : false } }, { "data" : { "id" : "738", "source" : "376", "target" : "375", "EdgeBetweenness" : 7.0, "shared_name" : "YGR014W (pp) YJL030W", "shared_interaction" : "pp", "name" : "YGR014W (pp) YJL030W", "interaction" : "pp", "SUID" : 738, "selected" : false } }, { "data" : { "id" : "737", "source" : "376", "target" : "373", "EdgeBetweenness" : 7.0, "shared_name" : "YGR014W (pp) YJL013C", "shared_interaction" : "pp", "name" : "YGR014W (pp) YJL013C", "interaction" : "pp", "SUID" : 737, "selected" : false } }, { "data" : { "id" : "736", "source" : "375", "target" : "374", "EdgeBetweenness" : 5.0, "shared_name" : "YJL030W (pp) YGL229C", "shared_interaction" : "pp", "name" : "YJL030W (pp) YGL229C", "interaction" : "pp", "SUID" : 736, "selected" : false } }, { "data" : { "id" : "735", "source" : "373", "target" : "374", "EdgeBetweenness" : 5.0, "shared_name" : "YJL013C (pp) YGL229C", "shared_interaction" : "pp", "name" : "YJL013C (pp) YGL229C", "interaction" : "pp", "SUID" : 735, "selected" : false } }, { "data" : { "id" : "734", "source" : "372", "target" : "371", "EdgeBetweenness" : 496.0, "shared_name" : "YGR203W (pp) YIL061C", "shared_interaction" : "pp", "name" : "YGR203W (pp) YIL061C", "interaction" : "pp", "SUID" : 734, "selected" : false } }, { "data" : { "id" : "733", "source" : "371", "target" : "358", "EdgeBetweenness" : 8486.71708292, "shared_name" : "YIL061C (pp) YDL013W", "shared_interaction" : "pp", "name" : "YIL061C (pp) YDL013W", "interaction" : "pp", "SUID" : 733, "selected" : false } }, { "data" : { "id" : "732", "source" : "371", "target" : "213", "EdgeBetweenness" : 9902.71708292, "shared_name" : "YIL061C (pp) YNL199C", "shared_interaction" : "pp", "name" : "YIL061C (pp) YNL199C", "interaction" : "pp", "SUID" : 732, "selected" : false } }, { "data" : { "id" : "731", "source" : "371", "target" : "91", "EdgeBetweenness" : 496.0, "shared_name" : "YIL061C (pp) YLR153C", "shared_interaction" : "pp", "name" : "YIL061C (pp) YLR153C", "interaction" : "pp", "SUID" : 731, "selected" : false } }, { "data" : { "id" : "730", "source" : "370", "target" : "369", "EdgeBetweenness" : 496.0, "shared_name" : "YCR084C (pp) YBR112C", "shared_interaction" : "pp", "name" : "YCR084C (pp) YBR112C", "interaction" : "pp", "SUID" : 730, "selected" : false } }, { "data" : { "id" : "729", "source" : "370", "target" : "368", "EdgeBetweenness" : 988.0, "shared_name" : "YCR084C (pp) YCL067C", "shared_interaction" : "pp", "name" : "YCR084C (pp) YCL067C", "interaction" : "pp", "SUID" : 729, "selected" : false } }, { "data" : { "id" : "728", "source" : "368", "target" : "268", "EdgeBetweenness" : 9.0, "shared_name" : "YCL067C (pd) YIL015W", "shared_interaction" : "pd", "name" : "YCL067C (pd) YIL015W", "interaction" : "pd", "SUID" : 728, "selected" : false } }, { "data" : { "id" : "727", "source" : "368", "target" : "269", "EdgeBetweenness" : 1447.5, "shared_name" : "YCL067C (pp) YMR043W", "shared_interaction" : "pp", "name" : "YCL067C (pp) YMR043W", "interaction" : "pp", "SUID" : 727, "selected" : false } }, { "data" : { "id" : "726", "source" : "368", "target" : "264", "EdgeBetweenness" : 9.83333333, "shared_name" : "YCL067C (pd) YDR461W", "shared_interaction" : "pd", "name" : "YCL067C (pd) YDR461W", "interaction" : "pd", "SUID" : 726, "selected" : false } }, { "data" : { "id" : "725", "source" : "368", "target" : "261", "EdgeBetweenness" : 9.83333333, "shared_name" : "YCL067C (pd) YFL026W", "shared_interaction" : "pd", "name" : "YCL067C (pd) YFL026W", "interaction" : "pd", "SUID" : 725, "selected" : false } }, { "data" : { "id" : "724", "source" : "367", "target" : "366", "EdgeBetweenness" : 248.5, "shared_name" : "YER112W (pp) YOR167C", "shared_interaction" : "pp", "name" : "YER112W (pp) YOR167C", "interaction" : "pp", "SUID" : 724, "selected" : false } }, { "data" : { "id" : "723", "source" : "365", "target" : "364", "EdgeBetweenness" : 1960.0, "shared_name" : "YJR022W (pp) YNR050C", "shared_interaction" : "pp", "name" : "YJR022W (pp) YNR050C", "interaction" : "pp", "SUID" : 723, "selected" : false } }, { "data" : { "id" : "722", "source" : "365", "target" : "363", "EdgeBetweenness" : 496.0, "shared_name" : "YJR022W (pp) YNL050C", "shared_interaction" : "pp", "name" : "YJR022W (pp) YNL050C", "interaction" : "pp", "SUID" : 722, "selected" : false } }, { "data" : { "id" : "721", "source" : "365", "target" : "362", "EdgeBetweenness" : 3050.14565435, "shared_name" : "YJR022W (pp) YEL015W", "shared_interaction" : "pp", "name" : "YJR022W (pp) YEL015W", "interaction" : "pp", "SUID" : 721, "selected" : false } }, { "data" : { "id" : "720", "source" : "365", "target" : "366", "EdgeBetweenness" : 1220.5, "shared_name" : "YJR022W (pp) YOR167C", "shared_interaction" : "pp", "name" : "YJR022W (pp) YOR167C", "interaction" : "pp", "SUID" : 720, "selected" : false } }, { "data" : { "id" : "719", "source" : "365", "target" : "361", "EdgeBetweenness" : 1220.5, "shared_name" : "YJR022W (pp) YLR264W", "shared_interaction" : "pp", "name" : "YJR022W (pp) YLR264W", "interaction" : "pp", "SUID" : 719, "selected" : false } }, { "data" : { "id" : "718", "source" : "365", "target" : "360", "EdgeBetweenness" : 6283.85994006, "shared_name" : "YJR022W (pp) YNR053C", "shared_interaction" : "pp", "name" : "YJR022W (pp) YNR053C", "interaction" : "pp", "SUID" : 718, "selected" : false } }, { "data" : { "id" : "717", "source" : "364", "target" : "312", "EdgeBetweenness" : 1476.0, "shared_name" : "YNR050C (pp) YMR138W", "shared_interaction" : "pp", "name" : "YNR050C (pp) YMR138W", "interaction" : "pp", "SUID" : 717, "selected" : false } }, { "data" : { "id" : "716", "source" : "362", "target" : "227", "EdgeBetweenness" : 3025.31048951, "shared_name" : "YEL015W (pp) YML064C", "shared_interaction" : "pp", "name" : "YEL015W (pp) YML064C", "interaction" : "pp", "SUID" : 716, "selected" : false } }, { "data" : { "id" : "715", "source" : "361", "target" : "367", "EdgeBetweenness" : 248.5, "shared_name" : "YLR264W (pp) YER112W", "shared_interaction" : "pp", "name" : "YLR264W (pp) YER112W", "interaction" : "pp", "SUID" : 715, "selected" : false } }, { "data" : { "id" : "714", "source" : "361", "target" : "146", "EdgeBetweenness" : 248.5, "shared_name" : "YLR264W (pp) YOL149W", "shared_interaction" : "pp", "name" : "YLR264W (pp) YOL149W", "interaction" : "pp", "SUID" : 714, "selected" : false } }, { "data" : { "id" : "713", "source" : "361", "target" : "114", "EdgeBetweenness" : 248.5, "shared_name" : "YLR264W (pp) YBL026W", "shared_interaction" : "pp", "name" : "YLR264W (pp) YBL026W", "interaction" : "pp", "SUID" : 713, "selected" : false } }, { "data" : { "id" : "712", "source" : "360", "target" : "259", "EdgeBetweenness" : 988.0, "shared_name" : "YNR053C (pp) YJL203W", "shared_interaction" : "pp", "name" : "YNR053C (pp) YJL203W", "interaction" : "pp", "SUID" : 712, "selected" : false } }, { "data" : { "id" : "711", "source" : "360", "target" : "100", "EdgeBetweenness" : 7118.71708292, "shared_name" : "YNR053C (pp) YDL030W", "shared_interaction" : "pp", "name" : "YNR053C (pp) YDL030W", "interaction" : "pp", "SUID" : 711, "selected" : false } }, { "data" : { "id" : "710", "source" : "359", "target" : "358", "EdgeBetweenness" : 496.0, "shared_name" : "YER116C (pp) YDL013W", "shared_interaction" : "pp", "name" : "YER116C (pp) YDL013W", "interaction" : "pp", "SUID" : 710, "selected" : false } }, { "data" : { "id" : "709", "source" : "357", "target" : "356", "EdgeBetweenness" : 988.0, "shared_name" : "YNL307C (pp) YAL038W", "shared_interaction" : "pp", "name" : "YNL307C (pp) YAL038W", "interaction" : "pp", "SUID" : 709, "selected" : false } }, { "data" : { "id" : "708", "source" : "356", "target" : "214", "EdgeBetweenness" : 2034.76542347, "shared_name" : "YAL038W (pd) YPL075W", "shared_interaction" : "pd", "name" : "YAL038W (pd) YPL075W", "interaction" : "pd", "SUID" : 708, "selected" : false } }, { "data" : { "id" : "707", "source" : "355", "target" : "354", "EdgeBetweenness" : 2940.76542347, "shared_name" : "YNL216W (pd) YCR012W", "shared_interaction" : "pd", "name" : "YNL216W (pd) YCR012W", "interaction" : "pd", "SUID" : 707, "selected" : false } }, { "data" : { "id" : "706", "source" : "355", "target" : "353", "EdgeBetweenness" : 2148.76542347, "shared_name" : "YNL216W (pd) YGR254W", "shared_interaction" : "pd", "name" : "YNL216W (pd) YGR254W", "interaction" : "pd", "SUID" : 706, "selected" : false } }, { "data" : { "id" : "705", "source" : "355", "target" : "352", "EdgeBetweenness" : 2148.76542347, "shared_name" : "YNL216W (pd) YHR174W", "shared_interaction" : "pd", "name" : "YNL216W (pd) YHR174W", "interaction" : "pd", "SUID" : 705, "selected" : false } }, { "data" : { "id" : "704", "source" : "355", "target" : "351", "EdgeBetweenness" : 2391.0, "shared_name" : "YNL216W (pd) YIL133C", "shared_interaction" : "pd", "name" : "YNL216W (pd) YIL133C", "interaction" : "pd", "SUID" : 704, "selected" : false } }, { "data" : { "id" : "703", "source" : "355", "target" : "350", "EdgeBetweenness" : 15620.15017205, "shared_name" : "YNL216W (pd) YLR044C", "shared_interaction" : "pd", "name" : "YNL216W (pd) YLR044C", "interaction" : "pd", "SUID" : 703, "selected" : false } }, { "data" : { "id" : "702", "source" : "355", "target" : "349", "EdgeBetweenness" : 496.0, "shared_name" : "YNL216W (pd) YOL120C", "shared_interaction" : "pd", "name" : "YNL216W (pd) YOL120C", "interaction" : "pd", "SUID" : 702, "selected" : false } }, { "data" : { "id" : "701", "source" : "355", "target" : "348", "EdgeBetweenness" : 496.0, "shared_name" : "YNL216W (pd) YNL301C", "shared_interaction" : "pd", "name" : "YNL216W (pd) YNL301C", "interaction" : "pd", "SUID" : 701, "selected" : false } }, { "data" : { "id" : "700", "source" : "355", "target" : "347", "EdgeBetweenness" : 5079.35982906, "shared_name" : "YNL216W (pd) YCL030C", "shared_interaction" : "pd", "name" : "YNL216W (pd) YCL030C", "interaction" : "pd", "SUID" : 700, "selected" : false } }, { "data" : { "id" : "699", "source" : "355", "target" : "346", "EdgeBetweenness" : 496.0, "shared_name" : "YNL216W (pp) YDR171W", "shared_interaction" : "pp", "name" : "YNL216W (pp) YDR171W", "interaction" : "pp", "SUID" : 699, "selected" : false } }, { "data" : { "id" : "698", "source" : "355", "target" : "345", "EdgeBetweenness" : 1476.0, "shared_name" : "YNL216W (pd) YBR093C", "shared_interaction" : "pd", "name" : "YNL216W (pd) YBR093C", "interaction" : "pd", "SUID" : 698, "selected" : false } }, { "data" : { "id" : "697", "source" : "355", "target" : "344", "EdgeBetweenness" : 496.0, "shared_name" : "YNL216W (pd) YER074W", "shared_interaction" : "pd", "name" : "YNL216W (pd) YER074W", "interaction" : "pd", "SUID" : 697, "selected" : false } }, { "data" : { "id" : "696", "source" : "355", "target" : "343", "EdgeBetweenness" : 496.0, "shared_name" : "YNL216W (pd) YIL069C", "shared_interaction" : "pd", "name" : "YNL216W (pd) YIL069C", "interaction" : "pd", "SUID" : 696, "selected" : false } }, { "data" : { "id" : "695", "source" : "355", "target" : "356", "EdgeBetweenness" : 2940.76542347, "shared_name" : "YNL216W (pd) YAL038W", "shared_interaction" : "pd", "name" : "YNL216W (pd) YAL038W", "interaction" : "pd", "SUID" : 695, "selected" : false } }, { "data" : { "id" : "694", "source" : "355", "target" : "342", "EdgeBetweenness" : 2391.0, "shared_name" : "YNL216W (pd) YOL127W", "shared_interaction" : "pd", "name" : "YNL216W (pd) YOL127W", "interaction" : "pd", "SUID" : 694, "selected" : false } }, { "data" : { "id" : "693", "source" : "355", "target" : "341", "EdgeBetweenness" : 2148.76542347, "shared_name" : "YNL216W (pd) YDR050C", "shared_interaction" : "pd", "name" : "YNL216W (pd) YDR050C", "interaction" : "pd", "SUID" : 693, "selected" : false } }, { "data" : { "id" : "692", "source" : "355", "target" : "340", "EdgeBetweenness" : 2148.76542347, "shared_name" : "YNL216W (pd) YOL086C", "shared_interaction" : "pd", "name" : "YNL216W (pd) YOL086C", "interaction" : "pd", "SUID" : 692, "selected" : false } }, { "data" : { "id" : "691", "source" : "354", "target" : "305", "EdgeBetweenness" : 988.0, "shared_name" : "YCR012W (pd) YJR060W", "shared_interaction" : "pd", "name" : "YCR012W (pd) YJR060W", "interaction" : "pd", "SUID" : 691, "selected" : false } }, { "data" : { "id" : "690", "source" : "347", "target" : "296", "EdgeBetweenness" : 3832.74371184, "shared_name" : "YCL030C (pd) YKR099W", "shared_interaction" : "pd", "name" : "YCL030C (pd) YKR099W", "interaction" : "pd", "SUID" : 690, "selected" : false } }, { "data" : { "id" : "689", "source" : "339", "target" : "338", "EdgeBetweenness" : 249.0, "shared_name" : "YAL030W (pp) YER143W", "shared_interaction" : "pp", "name" : "YAL030W (pp) YER143W", "interaction" : "pp", "SUID" : 689, "selected" : false } }, { "data" : { "id" : "688", "source" : "337", "target" : "338", "EdgeBetweenness" : 249.0, "shared_name" : "YOR327C (pp) YER143W", "shared_interaction" : "pp", "name" : "YOR327C (pp) YER143W", "interaction" : "pp", "SUID" : 688, "selected" : false } }, { "data" : { "id" : "687", "source" : "336", "target" : "335", "EdgeBetweenness" : 2.0, "shared_name" : "YER062C (pp) YPL201C", "shared_interaction" : "pp", "name" : "YER062C (pp) YPL201C", "interaction" : "pp", "SUID" : 687, "selected" : false } }, { "data" : { "id" : "686", "source" : "334", "target" : "333", "EdgeBetweenness" : 1960.0, "shared_name" : "YDR412W (pp) YCR086W", "shared_interaction" : "pp", "name" : "YDR412W (pp) YCR086W", "interaction" : "pp", "SUID" : 686, "selected" : false } }, { "data" : { "id" : "685", "source" : "334", "target" : "332", "EdgeBetweenness" : 1960.0, "shared_name" : "YDR412W (pp) YGL013C", "shared_interaction" : "pp", "name" : "YDR412W (pp) YGL013C", "interaction" : "pp", "SUID" : 685, "selected" : false } }, { "data" : { "id" : "684", "source" : "334", "target" : "331", "EdgeBetweenness" : 988.0, "shared_name" : "YDR412W (pp) YLR117C", "shared_interaction" : "pp", "name" : "YDR412W (pp) YLR117C", "interaction" : "pp", "SUID" : 684, "selected" : false } }, { "data" : { "id" : "683", "source" : "334", "target" : "330", "EdgeBetweenness" : 18040.0, "shared_name" : "YDR412W (pp) YPR119W", "shared_interaction" : "pp", "name" : "YDR412W (pp) YPR119W", "interaction" : "pp", "SUID" : 683, "selected" : false } }, { "data" : { "id" : "682", "source" : "333", "target" : "287", "EdgeBetweenness" : 1476.0, "shared_name" : "YCR086W (pp) YOR264W", "shared_interaction" : "pp", "name" : "YCR086W (pp) YOR264W", "interaction" : "pp", "SUID" : 682, "selected" : false } }, { "data" : { "id" : "681", "source" : "332", "target" : "256", "EdgeBetweenness" : 739.0, "shared_name" : "YGL013C (pd) YJL219W", "shared_interaction" : "pd", "name" : "YGL013C (pd) YJL219W", "interaction" : "pd", "SUID" : 681, "selected" : false } }, { "data" : { "id" : "680", "source" : "332", "target" : "255", "EdgeBetweenness" : 739.0, "shared_name" : "YGL013C (pd) YOL156W", "shared_interaction" : "pd", "name" : "YGL013C (pd) YOL156W", "interaction" : "pd", "SUID" : 680, "selected" : false } }, { "data" : { "id" : "679", "source" : "331", "target" : "151", "EdgeBetweenness" : 496.0, "shared_name" : "YLR117C (pp) YBR190W", "shared_interaction" : "pp", "name" : "YLR117C (pp) YBR190W", "interaction" : "pp", "SUID" : 679, "selected" : false } }, { "data" : { "id" : "678", "source" : "330", "target" : "269", "EdgeBetweenness" : 18360.0, "shared_name" : "YPR119W (pd) YMR043W", "shared_interaction" : "pd", "name" : "YPR119W (pd) YMR043W", "interaction" : "pd", "SUID" : 678, "selected" : false } }, { "data" : { "id" : "677", "source" : "329", "target" : "328", "EdgeBetweenness" : 2.0, "shared_name" : "YDL014W (pp) YOR310C", "shared_interaction" : "pp", "name" : "YDL014W (pp) YOR310C", "interaction" : "pp", "SUID" : 677, "selected" : false } }, { "data" : { "id" : "676", "source" : "327", "target" : "350", "EdgeBetweenness" : 3377.91544567, "shared_name" : "YER179W (pp) YLR044C", "shared_interaction" : "pp", "name" : "YER179W (pp) YLR044C", "interaction" : "pp", "SUID" : 676, "selected" : false } }, { "data" : { "id" : "675", "source" : "327", "target" : "326", "EdgeBetweenness" : 496.0, "shared_name" : "YER179W (pp) YLR134W", "shared_interaction" : "pp", "name" : "YER179W (pp) YLR134W", "interaction" : "pp", "SUID" : 675, "selected" : false } }, { "data" : { "id" : "674", "source" : "327", "target" : "325", "EdgeBetweenness" : 2481.91544567, "shared_name" : "YER179W (pp) YIL105C", "shared_interaction" : "pp", "name" : "YER179W (pp) YIL105C", "interaction" : "pp", "SUID" : 674, "selected" : false } }, { "data" : { "id" : "673", "source" : "324", "target" : "323", "EdgeBetweenness" : 1073.41544567, "shared_name" : "YOR361C (pp) YMR309C", "shared_interaction" : "pp", "name" : "YOR361C (pp) YMR309C", "interaction" : "pp", "SUID" : 673, "selected" : false } }, { "data" : { "id" : "672", "source" : "324", "target" : "382", "EdgeBetweenness" : 1287.12973138, "shared_name" : "YOR361C (pp) YDR429C", "shared_interaction" : "pp", "name" : "YOR361C (pp) YDR429C", "interaction" : "pp", "SUID" : 672, "selected" : false } }, { "data" : { "id" : "671", "source" : "323", "target" : "224", "EdgeBetweenness" : 1581.91544567, "shared_name" : "YMR309C (pp) YNL047C", "shared_interaction" : "pp", "name" : "YMR309C (pp) YNL047C", "interaction" : "pp", "SUID" : 671, "selected" : false } }, { "data" : { "id" : "670", "source" : "322", "target" : "321", "EdgeBetweenness" : 8.0, "shared_name" : "YOR326W (pp) YGL106W", "shared_interaction" : "pp", "name" : "YOR326W (pp) YGL106W", "interaction" : "pp", "SUID" : 670, "selected" : false } }, { "data" : { "id" : "669", "source" : "320", "target" : "319", "EdgeBetweenness" : 247.0, "shared_name" : "YMR186W (pp) YBR155W", "shared_interaction" : "pp", "name" : "YMR186W (pp) YBR155W", "interaction" : "pp", "SUID" : 669, "selected" : false } }, { "data" : { "id" : "668", "source" : "318", "target" : "317", "EdgeBetweenness" : 496.0, "shared_name" : "YEL009C (pd) YMR108W", "shared_interaction" : "pd", "name" : "YEL009C (pd) YMR108W", "interaction" : "pd", "SUID" : 668, "selected" : false } }, { "data" : { "id" : "667", "source" : "318", "target" : "316", "EdgeBetweenness" : 635.26923077, "shared_name" : "YEL009C (pd) YOR202W", "shared_interaction" : "pd", "name" : "YEL009C (pd) YOR202W", "interaction" : "pd", "SUID" : 667, "selected" : false } }, { "data" : { "id" : "666", "source" : "318", "target" : "347", "EdgeBetweenness" : 3692.35897436, "shared_name" : "YEL009C (pd) YCL030C", "shared_interaction" : "pd", "name" : "YEL009C (pd) YCL030C", "interaction" : "pd", "SUID" : 666, "selected" : false } }, { "data" : { "id" : "665", "source" : "318", "target" : "315", "EdgeBetweenness" : 496.0, "shared_name" : "YEL009C (pd) YBR248C", "shared_interaction" : "pd", "name" : "YEL009C (pd) YBR248C", "interaction" : "pd", "SUID" : 665, "selected" : false } }, { "data" : { "id" : "664", "source" : "318", "target" : "314", "EdgeBetweenness" : 1902.08974359, "shared_name" : "YEL009C (pd) YOL058W", "shared_interaction" : "pd", "name" : "YEL009C (pd) YOL058W", "interaction" : "pd", "SUID" : 664, "selected" : false } }, { "data" : { "id" : "663", "source" : "318", "target" : "313", "EdgeBetweenness" : 496.0, "shared_name" : "YEL009C (pd) YMR300C", "shared_interaction" : "pd", "name" : "YEL009C (pd) YMR300C", "interaction" : "pd", "SUID" : 663, "selected" : false } }, { "data" : { "id" : "662", "source" : "314", "target" : "207", "EdgeBetweenness" : 1797.88974359, "shared_name" : "YOL058W (pp) YNL189W", "shared_interaction" : "pp", "name" : "YOL058W (pp) YNL189W", "interaction" : "pp", "SUID" : 662, "selected" : false } }, { "data" : { "id" : "661", "source" : "312", "target" : "311", "EdgeBetweenness" : 496.0, "shared_name" : "YMR138W (pp) YHR141C", "shared_interaction" : "pp", "name" : "YMR138W (pp) YHR141C", "interaction" : "pp", "SUID" : 661, "selected" : false } }, { "data" : { "id" : "660", "source" : "312", "target" : "310", "EdgeBetweenness" : 496.0, "shared_name" : "YMR138W (pp) YLR109W", "shared_interaction" : "pp", "name" : "YMR138W (pp) YLR109W", "interaction" : "pp", "SUID" : 660, "selected" : false } }, { "data" : { "id" : "659", "source" : "309", "target" : "308", "EdgeBetweenness" : 496.0, "shared_name" : "YCL032W (pp) YDR032C", "shared_interaction" : "pp", "name" : "YCL032W (pp) YDR032C", "interaction" : "pp", "SUID" : 659, "selected" : false } }, { "data" : { "id" : "658", "source" : "309", "target" : "307", "EdgeBetweenness" : 2430.0, "shared_name" : "YCL032W (pp) YLR362W", "shared_interaction" : "pp", "name" : "YCL032W (pp) YLR362W", "interaction" : "pp", "SUID" : 658, "selected" : false } }, { "data" : { "id" : "657", "source" : "309", "target" : "306", "EdgeBetweenness" : 10.0, "shared_name" : "YCL032W (pp) YDR103W", "shared_interaction" : "pp", "name" : "YCL032W (pp) YDR103W", "interaction" : "pp", "SUID" : 657, "selected" : false } }, { "data" : { "id" : "656", "source" : "307", "target" : "98", "EdgeBetweenness" : 496.0, "shared_name" : "YLR362W (pp) YER124C", "shared_interaction" : "pp", "name" : "YLR362W (pp) YER124C", "interaction" : "pp", "SUID" : 656, "selected" : false } }, { "data" : { "id" : "655", "source" : "307", "target" : "320", "EdgeBetweenness" : 665.0, "shared_name" : "YLR362W (pp) YMR186W", "shared_interaction" : "pp", "name" : "YLR362W (pp) YMR186W", "interaction" : "pp", "SUID" : 655, "selected" : false } }, { "data" : { "id" : "654", "source" : "307", "target" : "125", "EdgeBetweenness" : 8670.28291708, "shared_name" : "YLR362W (pp) YPL240C", "shared_interaction" : "pp", "name" : "YLR362W (pp) YPL240C", "interaction" : "pp", "SUID" : 654, "selected" : false } }, { "data" : { "id" : "653", "source" : "306", "target" : "307", "EdgeBetweenness" : 486.0, "shared_name" : "YDR103W (pp) YLR362W", "shared_interaction" : "pp", "name" : "YDR103W (pp) YLR362W", "interaction" : "pp", "SUID" : 653, "selected" : false } }, { "data" : { "id" : "652", "source" : "305", "target" : "139", "EdgeBetweenness" : 496.0, "shared_name" : "YJR060W (pd) YPR167C", "shared_interaction" : "pd", "name" : "YJR060W (pd) YPR167C", "interaction" : "pd", "SUID" : 652, "selected" : false } }, { "data" : { "id" : "651", "source" : "304", "target" : "303", "EdgeBetweenness" : 136.64242424, "shared_name" : "YBR019C (pd) YOL051W", "shared_interaction" : "pd", "name" : "YBR019C (pd) YOL051W", "interaction" : "pd", "SUID" : 651, "selected" : false } }, { "data" : { "id" : "650", "source" : "304", "target" : "302", "EdgeBetweenness" : 583.07575758, "shared_name" : "YBR019C (pd) YGL035C", "shared_interaction" : "pd", "name" : "YBR019C (pd) YGL035C", "interaction" : "pd", "SUID" : 650, "selected" : false } }, { "data" : { "id" : "649", "source" : "303", "target" : "301", "EdgeBetweenness" : 138.04242424, "shared_name" : "YOL051W (pd) YBR020W", "shared_interaction" : "pd", "name" : "YOL051W (pd) YBR020W", "interaction" : "pd", "SUID" : 649, "selected" : false } }, { "data" : { "id" : "648", "source" : "303", "target" : "300", "EdgeBetweenness" : 5.0, "shared_name" : "YOL051W (pd) YLR081W", "shared_interaction" : "pd", "name" : "YOL051W (pd) YLR081W", "interaction" : "pd", "SUID" : 648, "selected" : false } }, { "data" : { "id" : "647", "source" : "303", "target" : "299", "EdgeBetweenness" : 222.64848485, "shared_name" : "YOL051W (pp) YPL248C", "shared_interaction" : "pp", "name" : "YOL051W (pp) YPL248C", "interaction" : "pp", "SUID" : 647, "selected" : false } }, { "data" : { "id" : "646", "source" : "303", "target" : "298", "EdgeBetweenness" : 5.0, "shared_name" : "YOL051W (pd) YBR018C", "shared_interaction" : "pd", "name" : "YOL051W (pd) YBR018C", "interaction" : "pd", "SUID" : 646, "selected" : false } }, { "data" : { "id" : "645", "source" : "302", "target" : "350", "EdgeBetweenness" : 15561.19504385, "shared_name" : "YGL035C (pd) YLR044C", "shared_interaction" : "pd", "name" : "YGL035C (pd) YLR044C", "interaction" : "pd", "SUID" : 645, "selected" : false } }, { "data" : { "id" : "644", "source" : "302", "target" : "237", "EdgeBetweenness" : 1488.73498168, "shared_name" : "YGL035C (pd) YLR377C", "shared_interaction" : "pd", "name" : "YGL035C (pd) YLR377C", "interaction" : "pd", "SUID" : 644, "selected" : false } }, { "data" : { "id" : "643", "source" : "302", "target" : "175", "EdgeBetweenness" : 1336.3974359, "shared_name" : "YGL035C (pd) YIL162W", "shared_interaction" : "pd", "name" : "YGL035C (pd) YIL162W", "interaction" : "pd", "SUID" : 643, "selected" : false } }, { "data" : { "id" : "642", "source" : "301", "target" : "302", "EdgeBetweenness" : 713.65151515, "shared_name" : "YBR020W (pd) YGL035C", "shared_interaction" : "pd", "name" : "YBR020W (pd) YGL035C", "interaction" : "pd", "SUID" : 642, "selected" : false } }, { "data" : { "id" : "641", "source" : "299", "target" : "304", "EdgeBetweenness" : 40.23333333, "shared_name" : "YPL248C (pd) YBR019C", "shared_interaction" : "pd", "name" : "YPL248C (pd) YBR019C", "interaction" : "pd", "SUID" : 641, "selected" : false } }, { "data" : { "id" : "640", "source" : "299", "target" : "221", "EdgeBetweenness" : 985.21212121, "shared_name" : "YPL248C (pd) ?", "shared_interaction" : "pd", "name" : "YPL248C (pd) ?", "interaction" : "pd", "SUID" : 640, "selected" : false } }, { "data" : { "id" : "639", "source" : "299", "target" : "279", "EdgeBetweenness" : 1779.33333333, "shared_name" : "YPL248C (pd) YJR048W", "shared_interaction" : "pd", "name" : "YPL248C (pd) YJR048W", "interaction" : "pd", "SUID" : 639, "selected" : false } }, { "data" : { "id" : "638", "source" : "299", "target" : "302", "EdgeBetweenness" : 2953.35151515, "shared_name" : "YPL248C (pd) YGL035C", "shared_interaction" : "pd", "name" : "YPL248C (pd) YGL035C", "interaction" : "pd", "SUID" : 638, "selected" : false } }, { "data" : { "id" : "637", "source" : "299", "target" : "165", "EdgeBetweenness" : 236.24848485, "shared_name" : "YPL248C (pd) YML051W", "shared_interaction" : "pd", "name" : "YPL248C (pd) YML051W", "interaction" : "pd", "SUID" : 637, "selected" : false } }, { "data" : { "id" : "636", "source" : "299", "target" : "165", "EdgeBetweenness" : 236.24848485, "shared_name" : "YPL248C (pp) YML051W", "shared_interaction" : "pp", "name" : "YPL248C (pp) YML051W", "interaction" : "pp", "SUID" : 636, "selected" : false } }, { "data" : { "id" : "635", "source" : "299", "target" : "301", "EdgeBetweenness" : 38.23333333, "shared_name" : "YPL248C (pd) YBR020W", "shared_interaction" : "pd", "name" : "YPL248C (pd) YBR020W", "interaction" : "pd", "SUID" : 635, "selected" : false } }, { "data" : { "id" : "634", "source" : "299", "target" : "300", "EdgeBetweenness" : 491.0, "shared_name" : "YPL248C (pd) YLR081W", "shared_interaction" : "pd", "name" : "YPL248C (pd) YLR081W", "interaction" : "pd", "SUID" : 634, "selected" : false } }, { "data" : { "id" : "633", "source" : "299", "target" : "298", "EdgeBetweenness" : 491.0, "shared_name" : "YPL248C (pd) YBR018C", "shared_interaction" : "pd", "name" : "YPL248C (pd) YBR018C", "interaction" : "pd", "SUID" : 633, "selected" : false } }, { "data" : { "id" : "632", "source" : "297", "target" : "296", "EdgeBetweenness" : 5834.22017982, "shared_name" : "YIR009W (pp) YKR099W", "shared_interaction" : "pp", "name" : "YIR009W (pp) YKR099W", "interaction" : "pp", "SUID" : 632, "selected" : false } }, { "data" : { "id" : "631", "source" : "297", "target" : "295", "EdgeBetweenness" : 1476.0, "shared_name" : "YIR009W (pp) YIL143C", "shared_interaction" : "pp", "name" : "YIR009W (pp) YIL143C", "interaction" : "pp", "SUID" : 631, "selected" : false } }, { "data" : { "id" : "630", "source" : "297", "target" : "294", "EdgeBetweenness" : 4563.54618715, "shared_name" : "YIR009W (pp) YDR184C", "shared_interaction" : "pp", "name" : "YIR009W (pp) YDR184C", "interaction" : "pp", "SUID" : 630, "selected" : false } }, { "data" : { "id" : "629", "source" : "297", "target" : "293", "EdgeBetweenness" : 2992.12454212, "shared_name" : "YIR009W (pp) YNL091W", "shared_interaction" : "pp", "name" : "YIR009W (pp) YNL091W", "interaction" : "pp", "SUID" : 629, "selected" : false } }, { "data" : { "id" : "628", "source" : "295", "target" : "275", "EdgeBetweenness" : 988.0, "shared_name" : "YIL143C (pp) YDR311W", "shared_interaction" : "pp", "name" : "YIL143C (pp) YDR311W", "interaction" : "pp", "SUID" : 628, "selected" : false } }, { "data" : { "id" : "627", "source" : "294", "target" : "203", "EdgeBetweenness" : 4543.54618715, "shared_name" : "YDR184C (pp) YLR319C", "shared_interaction" : "pp", "name" : "YDR184C (pp) YLR319C", "interaction" : "pp", "SUID" : 627, "selected" : false } }, { "data" : { "id" : "626", "source" : "293", "target" : "89", "EdgeBetweenness" : 496.0, "shared_name" : "YNL091W (pp) YNL164C", "shared_interaction" : "pp", "name" : "YNL091W (pp) YNL164C", "interaction" : "pp", "SUID" : 626, "selected" : false } }, { "data" : { "id" : "625", "source" : "292", "target" : "291", "EdgeBetweenness" : 988.0, "shared_name" : "YNL236W (pp) YKL012W", "shared_interaction" : "pp", "name" : "YNL236W (pp) YKL012W", "interaction" : "pp", "SUID" : 625, "selected" : false } }, { "data" : { "id" : "624", "source" : "291", "target" : "228", "EdgeBetweenness" : 2440.0, "shared_name" : "YKL012W (pp) YKL074C", "shared_interaction" : "pp", "name" : "YKL012W (pp) YKL074C", "interaction" : "pp", "SUID" : 624, "selected" : false } }, { "data" : { "id" : "623", "source" : "290", "target" : "289", "EdgeBetweenness" : 249.0, "shared_name" : "YML032C (pp) YNL312W", "shared_interaction" : "pp", "name" : "YML032C (pp) YNL312W", "interaction" : "pp", "SUID" : 623, "selected" : false } }, { "data" : { "id" : "622", "source" : "289", "target" : "205", "EdgeBetweenness" : 739.0, "shared_name" : "YNL312W (pd) YPL111W", "shared_interaction" : "pd", "name" : "YNL312W (pd) YPL111W", "interaction" : "pd", "SUID" : 622, "selected" : false } }, { "data" : { "id" : "621", "source" : "288", "target" : "291", "EdgeBetweenness" : 988.0, "shared_name" : "YLR116W (pp) YKL012W", "shared_interaction" : "pp", "name" : "YLR116W (pp) YKL012W", "interaction" : "pp", "SUID" : 621, "selected" : false } }, { "data" : { "id" : "620", "source" : "286", "target" : "285", "EdgeBetweenness" : 496.0, "shared_name" : "YDR309C (pp) YLR229C", "shared_interaction" : "pp", "name" : "YDR309C (pp) YLR229C", "interaction" : "pp", "SUID" : 620, "selected" : false } }, { "data" : { "id" : "619", "source" : "285", "target" : "262", "EdgeBetweenness" : 988.0, "shared_name" : "YLR229C (pp) YJL157C", "shared_interaction" : "pp", "name" : "YLR229C (pp) YJL157C", "interaction" : "pp", "SUID" : 619, "selected" : false } }, { "data" : { "id" : "618", "source" : "284", "target" : "287", "EdgeBetweenness" : 988.0, "shared_name" : "YGR058W (pp) YOR264W", "shared_interaction" : "pp", "name" : "YGR058W (pp) YOR264W", "interaction" : "pp", "SUID" : 618, "selected" : false } }, { "data" : { "id" : "617", "source" : "283", "target" : "282", "EdgeBetweenness" : 4.0, "shared_name" : "YJR109C (pp) YOR303W", "shared_interaction" : "pp", "name" : "YJR109C (pp) YOR303W", "interaction" : "pp", "SUID" : 617, "selected" : false } }, { "data" : { "id" : "616", "source" : "281", "target" : "280", "EdgeBetweenness" : 988.0, "shared_name" : "YLR256W (pd) YML054C", "shared_interaction" : "pd", "name" : "YLR256W (pd) YML054C", "interaction" : "pd", "SUID" : 616, "selected" : false } }, { "data" : { "id" : "615", "source" : "281", "target" : "279", "EdgeBetweenness" : 2440.0, "shared_name" : "YLR256W (pd) YJR048W", "shared_interaction" : "pd", "name" : "YLR256W (pd) YJR048W", "interaction" : "pd", "SUID" : 615, "selected" : false } }, { "data" : { "id" : "614", "source" : "281", "target" : "278", "EdgeBetweenness" : 496.0, "shared_name" : "YLR256W (pd) YEL039C", "shared_interaction" : "pd", "name" : "YLR256W (pd) YEL039C", "interaction" : "pd", "SUID" : 614, "selected" : false } }, { "data" : { "id" : "613", "source" : "277", "target" : "279", "EdgeBetweenness" : 44.56666667, "shared_name" : "YGL237C (pd) YJR048W", "shared_interaction" : "pd", "name" : "YGL237C (pd) YJR048W", "interaction" : "pd", "SUID" : 613, "selected" : false } }, { "data" : { "id" : "612", "source" : "276", "target" : "279", "EdgeBetweenness" : 44.56666667, "shared_name" : "YBL021C (pd) YJR048W", "shared_interaction" : "pd", "name" : "YBL021C (pd) YJR048W", "interaction" : "pd", "SUID" : 612, "selected" : false } }, { "data" : { "id" : "611", "source" : "275", "target" : "274", "EdgeBetweenness" : 496.0, "shared_name" : "YDR311W (pp) YKL028W", "shared_interaction" : "pp", "name" : "YDR311W (pp) YKL028W", "interaction" : "pp", "SUID" : 611, "selected" : false } }, { "data" : { "id" : "610", "source" : "273", "target" : "272", "EdgeBetweenness" : 739.0, "shared_name" : "YPL149W (pp) YHR171W", "shared_interaction" : "pp", "name" : "YPL149W (pp) YHR171W", "interaction" : "pp", "SUID" : 610, "selected" : false } }, { "data" : { "id" : "609", "source" : "273", "target" : "271", "EdgeBetweenness" : 249.0, "shared_name" : "YPL149W (pp) YBR217W", "shared_interaction" : "pp", "name" : "YPL149W (pp) YBR217W", "interaction" : "pp", "SUID" : 609, "selected" : false } }, { "data" : { "id" : "608", "source" : "272", "target" : "334", "EdgeBetweenness" : 1960.0, "shared_name" : "YHR171W (pp) YDR412W", "shared_interaction" : "pp", "name" : "YHR171W (pp) YDR412W", "interaction" : "pp", "SUID" : 608, "selected" : false } }, { "data" : { "id" : "607", "source" : "272", "target" : "260", "EdgeBetweenness" : 739.0, "shared_name" : "YHR171W (pp) YNR007C", "shared_interaction" : "pp", "name" : "YHR171W (pp) YNR007C", "interaction" : "pp", "SUID" : 607, "selected" : false } }, { "data" : { "id" : "606", "source" : "271", "target" : "260", "EdgeBetweenness" : 249.0, "shared_name" : "YBR217W (pp) YNR007C", "shared_interaction" : "pp", "name" : "YBR217W (pp) YNR007C", "interaction" : "pp", "SUID" : 606, "selected" : false } }, { "data" : { "id" : "605", "source" : "270", "target" : "277", "EdgeBetweenness" : 451.43333333, "shared_name" : "YKL109W (pp) YGL237C", "shared_interaction" : "pp", "name" : "YKL109W (pp) YGL237C", "interaction" : "pp", "SUID" : 605, "selected" : false } }, { "data" : { "id" : "604", "source" : "270", "target" : "276", "EdgeBetweenness" : 451.43333333, "shared_name" : "YKL109W (pp) YBL021C", "shared_interaction" : "pp", "name" : "YKL109W (pp) YBL021C", "interaction" : "pp", "SUID" : 604, "selected" : false } }, { "data" : { "id" : "603", "source" : "270", "target" : "279", "EdgeBetweenness" : 1185.8, "shared_name" : "YKL109W (pd) YJR048W", "shared_interaction" : "pd", "name" : "YKL109W (pd) YJR048W", "interaction" : "pd", "SUID" : 603, "selected" : false } }, { "data" : { "id" : "602", "source" : "270", "target" : "302", "EdgeBetweenness" : 2540.66666667, "shared_name" : "YKL109W (pd) YGL035C", "shared_interaction" : "pd", "name" : "YKL109W (pd) YGL035C", "interaction" : "pd", "SUID" : 602, "selected" : false } }, { "data" : { "id" : "601", "source" : "269", "target" : "268", "EdgeBetweenness" : 487.0, "shared_name" : "YMR043W (pd) YIL015W", "shared_interaction" : "pd", "name" : "YMR043W (pd) YIL015W", "interaction" : "pd", "SUID" : 601, "selected" : false } }, { "data" : { "id" : "600", "source" : "269", "target" : "267", "EdgeBetweenness" : 988.0, "shared_name" : "YMR043W (pd) YJL159W", "shared_interaction" : "pd", "name" : "YMR043W (pd) YJL159W", "interaction" : "pd", "SUID" : 600, "selected" : false } }, { "data" : { "id" : "599", "source" : "269", "target" : "266", "EdgeBetweenness" : 3136.17527473, "shared_name" : "YMR043W (pd) YKR097W", "shared_interaction" : "pd", "name" : "YMR043W (pd) YKR097W", "interaction" : "pd", "SUID" : 599, "selected" : false } }, { "data" : { "id" : "598", "source" : "269", "target" : "265", "EdgeBetweenness" : 4058.08455433, "shared_name" : "YMR043W (pd) YGR108W", "shared_interaction" : "pd", "name" : "YMR043W (pd) YGR108W", "interaction" : "pd", "SUID" : 598, "selected" : false } }, { "data" : { "id" : "597", "source" : "269", "target" : "264", "EdgeBetweenness" : 484.33333333, "shared_name" : "YMR043W (pd) YDR461W", "shared_interaction" : "pd", "name" : "YMR043W (pd) YDR461W", "interaction" : "pd", "SUID" : 597, "selected" : false } }, { "data" : { "id" : "596", "source" : "269", "target" : "263", "EdgeBetweenness" : 484.33333333, "shared_name" : "YMR043W (pd) YNL145W", "shared_interaction" : "pd", "name" : "YMR043W (pd) YNL145W", "interaction" : "pd", "SUID" : 596, "selected" : false } }, { "data" : { "id" : "595", "source" : "269", "target" : "262", "EdgeBetweenness" : 9243.86127206, "shared_name" : "YMR043W (pd) YJL157C", "shared_interaction" : "pd", "name" : "YMR043W (pd) YJL157C", "interaction" : "pd", "SUID" : 595, "selected" : false } }, { "data" : { "id" : "594", "source" : "269", "target" : "261", "EdgeBetweenness" : 484.33333333, "shared_name" : "YMR043W (pd) YFL026W", "shared_interaction" : "pd", "name" : "YMR043W (pd) YFL026W", "interaction" : "pd", "SUID" : 594, "selected" : false } }, { "data" : { "id" : "593", "source" : "265", "target" : "141", "EdgeBetweenness" : 3656.08455433, "shared_name" : "YGR108W (pp) YBR135W", "shared_interaction" : "pp", "name" : "YGR108W (pp) YBR135W", "interaction" : "pp", "SUID" : 593, "selected" : false } }, { "data" : { "id" : "592", "source" : "263", "target" : "368", "EdgeBetweenness" : 9.83333333, "shared_name" : "YNL145W (pd) YCL067C", "shared_interaction" : "pd", "name" : "YNL145W (pd) YCL067C", "interaction" : "pd", "SUID" : 592, "selected" : false } }, { "data" : { "id" : "591", "source" : "263", "target" : "112", "EdgeBetweenness" : 4.83333333, "shared_name" : "YNL145W (pd) YHR084W", "shared_interaction" : "pd", "name" : "YNL145W (pd) YHR084W", "interaction" : "pd", "SUID" : 591, "selected" : false } }, { "data" : { "id" : "590", "source" : "262", "target" : "184", "EdgeBetweenness" : 115.0, "shared_name" : "YJL157C (pp) YAL040C", "shared_interaction" : "pp", "name" : "YJL157C (pp) YAL040C", "interaction" : "pp", "SUID" : 590, "selected" : false } }, { "data" : { "id" : "589", "source" : "262", "target" : "87", "EdgeBetweenness" : 8680.0041292, "shared_name" : "YJL157C (pp) YOR212W", "shared_interaction" : "pp", "name" : "YJL157C (pp) YOR212W", "interaction" : "pp", "SUID" : 589, "selected" : false } }, { "data" : { "id" : "588", "source" : "259", "target" : "258", "EdgeBetweenness" : 496.0, "shared_name" : "YJL203W (pp) YOL136C", "shared_interaction" : "pp", "name" : "YJL203W (pp) YOL136C", "interaction" : "pp", "SUID" : 588, "selected" : false } }, { "data" : { "id" : "587", "source" : "257", "target" : "307", "EdgeBetweenness" : 1026.26739927, "shared_name" : "YLL021W (pp) YLR362W", "shared_interaction" : "pp", "name" : "YLL021W (pp) YLR362W", "interaction" : "pp", "SUID" : 587, "selected" : false } }, { "data" : { "id" : "586", "source" : "255", "target" : "252", "EdgeBetweenness" : 249.0, "shared_name" : "YOL156W (pd) YBL005W", "shared_interaction" : "pd", "name" : "YOL156W (pd) YBL005W", "interaction" : "pd", "SUID" : 586, "selected" : false } }, { "data" : { "id" : "585", "source" : "254", "target" : "253", "EdgeBetweenness" : 496.0, "shared_name" : "YKL101W (pp) YBR160W", "shared_interaction" : "pp", "name" : "YKL101W (pp) YBR160W", "interaction" : "pp", "SUID" : 585, "selected" : false } }, { "data" : { "id" : "584", "source" : "253", "target" : "269", "EdgeBetweenness" : 940.0, "shared_name" : "YBR160W (pd) YMR043W", "shared_interaction" : "pd", "name" : "YBR160W (pd) YMR043W", "interaction" : "pd", "SUID" : 584, "selected" : false } }, { "data" : { "id" : "583", "source" : "253", "target" : "265", "EdgeBetweenness" : 48.0, "shared_name" : "YBR160W (pp) YGR108W", "shared_interaction" : "pp", "name" : "YBR160W (pp) YGR108W", "interaction" : "pp", "SUID" : 583, "selected" : false } }, { "data" : { "id" : "582", "source" : "252", "target" : "256", "EdgeBetweenness" : 249.0, "shared_name" : "YBL005W (pd) YJL219W", "shared_interaction" : "pd", "name" : "YBL005W (pd) YJL219W", "interaction" : "pd", "SUID" : 582, "selected" : false } }, { "data" : { "id" : "581", "source" : "251", "target" : "250", "EdgeBetweenness" : 988.0, "shared_name" : "YDR323C (pp) YOR036W", "shared_interaction" : "pp", "name" : "YDR323C (pp) YOR036W", "interaction" : "pp", "SUID" : 581, "selected" : false } }, { "data" : { "id" : "580", "source" : "250", "target" : "190", "EdgeBetweenness" : 494.0, "shared_name" : "YOR036W (pp) YDR100W", "shared_interaction" : "pp", "name" : "YOR036W (pp) YDR100W", "interaction" : "pp", "SUID" : 580, "selected" : false } }, { "data" : { "id" : "579", "source" : "250", "target" : "191", "EdgeBetweenness" : 494.0, "shared_name" : "YOR036W (pp) YGL161C", "shared_interaction" : "pp", "name" : "YOR036W (pp) YGL161C", "interaction" : "pp", "SUID" : 579, "selected" : false } }, { "data" : { "id" : "578", "source" : "249", "target" : "269", "EdgeBetweenness" : 988.0, "shared_name" : "YGL008C (pd) YMR043W", "shared_interaction" : "pd", "name" : "YGL008C (pd) YMR043W", "interaction" : "pd", "SUID" : 578, "selected" : false } }, { "data" : { "id" : "577", "source" : "248", "target" : "247", "EdgeBetweenness" : 496.0, "shared_name" : "YER040W (pd) YPR035W", "shared_interaction" : "pd", "name" : "YER040W (pd) YPR035W", "interaction" : "pd", "SUID" : 577, "selected" : false } }, { "data" : { "id" : "576", "source" : "248", "target" : "246", "EdgeBetweenness" : 496.0, "shared_name" : "YER040W (pd) YGR019W", "shared_interaction" : "pd", "name" : "YER040W (pd) YGR019W", "interaction" : "pd", "SUID" : 576, "selected" : false } }, { "data" : { "id" : "575", "source" : "245", "target" : "244", "EdgeBetweenness" : 496.0, "shared_name" : "YNL098C (pp) YLR310C", "shared_interaction" : "pp", "name" : "YNL098C (pp) YLR310C", "interaction" : "pp", "SUID" : 575, "selected" : false } }, { "data" : { "id" : "574", "source" : "244", "target" : "152", "EdgeBetweenness" : 988.0, "shared_name" : "YLR310C (pp) YER103W", "shared_interaction" : "pp", "name" : "YLR310C (pp) YER103W", "interaction" : "pp", "SUID" : 574, "selected" : false } }, { "data" : { "id" : "573", "source" : "243", "target" : "242", "EdgeBetweenness" : 4.0, "shared_name" : "YGL115W (pp) YGL208W", "shared_interaction" : "pp", "name" : "YGL115W (pp) YGL208W", "interaction" : "pp", "SUID" : 573, "selected" : false } }, { "data" : { "id" : "572", "source" : "241", "target" : "240", "EdgeBetweenness" : 988.0, "shared_name" : "YPL089C (pp) YHR030C", "shared_interaction" : "pp", "name" : "YPL089C (pp) YHR030C", "interaction" : "pp", "SUID" : 572, "selected" : false } }, { "data" : { "id" : "571", "source" : "240", "target" : "257", "EdgeBetweenness" : 1104.11355311, "shared_name" : "YHR030C (pp) YLL021W", "shared_interaction" : "pp", "name" : "YHR030C (pp) YLL021W", "interaction" : "pp", "SUID" : 571, "selected" : false } }, { "data" : { "id" : "570", "source" : "240", "target" : "159", "EdgeBetweenness" : 2101.73260073, "shared_name" : "YHR030C (pp) YER111C", "shared_interaction" : "pp", "name" : "YHR030C (pp) YER111C", "interaction" : "pp", "SUID" : 570, "selected" : false } }, { "data" : { "id" : "569", "source" : "239", "target" : "238", "EdgeBetweenness" : 2882.71025641, "shared_name" : "YJL089W (pd) YER065C", "shared_interaction" : "pd", "name" : "YJL089W (pd) YER065C", "interaction" : "pd", "SUID" : 569, "selected" : false } }, { "data" : { "id" : "568", "source" : "239", "target" : "266", "EdgeBetweenness" : 2924.57527473, "shared_name" : "YJL089W (pd) YKR097W", "shared_interaction" : "pd", "name" : "YJL089W (pd) YKR097W", "interaction" : "pd", "SUID" : 568, "selected" : false } }, { "data" : { "id" : "567", "source" : "239", "target" : "237", "EdgeBetweenness" : 1271.90164835, "shared_name" : "YJL089W (pd) YLR377C", "shared_interaction" : "pd", "name" : "YJL089W (pd) YLR377C", "interaction" : "pd", "SUID" : 567, "selected" : false } }, { "data" : { "id" : "566", "source" : "236", "target" : "235", "EdgeBetweenness" : 4.0, "shared_name" : "YMR021C (pd) YLR214W", "shared_interaction" : "pd", "name" : "YMR021C (pd) YLR214W", "interaction" : "pd", "SUID" : 566, "selected" : false } }, { "data" : { "id" : "565", "source" : "234", "target" : "233", "EdgeBetweenness" : 3733.28291708, "shared_name" : "YDR335W (pp) YDR174W", "shared_interaction" : "pp", "name" : "YDR335W (pp) YDR174W", "interaction" : "pp", "SUID" : 565, "selected" : false } }, { "data" : { "id" : "564", "source" : "232", "target" : "231", "EdgeBetweenness" : 496.0, "shared_name" : "YLL028W (pp) YGL166W", "shared_interaction" : "pp", "name" : "YLL028W (pp) YGL166W", "interaction" : "pp", "SUID" : 564, "selected" : false } }, { "data" : { "id" : "563", "source" : "231", "target" : "119", "EdgeBetweenness" : 495.0, "shared_name" : "YGL166W (pd) YHR053C", "shared_interaction" : "pd", "name" : "YGL166W (pd) YHR053C", "interaction" : "pd", "SUID" : 563, "selected" : false } }, { "data" : { "id" : "562", "source" : "231", "target" : "118", "EdgeBetweenness" : 495.0, "shared_name" : "YGL166W (pd) YHR055C", "shared_interaction" : "pd", "name" : "YGL166W (pd) YHR055C", "interaction" : "pd", "SUID" : 562, "selected" : false } }, { "data" : { "id" : "561", "source" : "230", "target" : "229", "EdgeBetweenness" : 2.0, "shared_name" : "YDL081C (pp) YLR340W", "shared_interaction" : "pp", "name" : "YDL081C (pp) YLR340W", "interaction" : "pp", "SUID" : 561, "selected" : false } }, { "data" : { "id" : "560", "source" : "228", "target" : "302", "EdgeBetweenness" : 2916.0, "shared_name" : "YKL074C (pp) YGL035C", "shared_interaction" : "pp", "name" : "YKL074C (pp) YGL035C", "interaction" : "pp", "SUID" : 560, "selected" : false } }, { "data" : { "id" : "559", "source" : "227", "target" : "124", "EdgeBetweenness" : 496.0, "shared_name" : "YML064C (pp) YHR198C", "shared_interaction" : "pp", "name" : "YML064C (pp) YHR198C", "interaction" : "pp", "SUID" : 559, "selected" : false } }, { "data" : { "id" : "558", "source" : "227", "target" : "123", "EdgeBetweenness" : 496.0, "shared_name" : "YML064C (pp) YLR284C", "shared_interaction" : "pp", "name" : "YML064C (pp) YLR284C", "interaction" : "pp", "SUID" : 558, "selected" : false } }, { "data" : { "id" : "557", "source" : "227", "target" : "233", "EdgeBetweenness" : 3145.71148851, "shared_name" : "YML064C (pp) YDR174W", "shared_interaction" : "pp", "name" : "YML064C (pp) YDR174W", "interaction" : "pp", "SUID" : 557, "selected" : false } }, { "data" : { "id" : "556", "source" : "226", "target" : "225", "EdgeBetweenness" : 8.0, "shared_name" : "YHR135C (pp) YNL116W", "shared_interaction" : "pp", "name" : "YHR135C (pp) YNL116W", "interaction" : "pp", "SUID" : 556, "selected" : false } }, { "data" : { "id" : "555", "source" : "224", "target" : "325", "EdgeBetweenness" : 2031.91544567, "shared_name" : "YNL047C (pp) YIL105C", "shared_interaction" : "pp", "name" : "YNL047C (pp) YIL105C", "interaction" : "pp", "SUID" : 555, "selected" : false } }, { "data" : { "id" : "554", "source" : "223", "target" : "222", "EdgeBetweenness" : 8.0, "shared_name" : "YNL154C (pp) YKL204W", "shared_interaction" : "pp", "name" : "YNL154C (pp) YKL204W", "interaction" : "pp", "SUID" : 554, "selected" : false } }, { "data" : { "id" : "553", "source" : "221", "target" : "296", "EdgeBetweenness" : 3465.75265845, "shared_name" : "? (pd) YKR099W", "shared_interaction" : "pd", "name" : "? (pd) YKR099W", "interaction" : "pd", "SUID" : 553, "selected" : false } }, { "data" : { "id" : "552", "source" : "221", "target" : "302", "EdgeBetweenness" : 2608.54053724, "shared_name" : "? (pd) YGL035C", "shared_interaction" : "pd", "name" : "? (pd) YGL035C", "interaction" : "pd", "SUID" : 552, "selected" : false } }, { "data" : { "id" : "551", "source" : "220", "target" : "288", "EdgeBetweenness" : 496.0, "shared_name" : "YJR066W (pp) YLR116W", "shared_interaction" : "pp", "name" : "YJR066W (pp) YLR116W", "interaction" : "pp", "SUID" : 551, "selected" : false } }, { "data" : { "id" : "550", "source" : "219", "target" : "218", "EdgeBetweenness" : 8.0, "shared_name" : "YDR382W (pp) YDL130W", "shared_interaction" : "pp", "name" : "YDR382W (pp) YDL130W", "interaction" : "pp", "SUID" : 550, "selected" : false } }, { "data" : { "id" : "549", "source" : "219", "target" : "217", "EdgeBetweenness" : 12.0, "shared_name" : "YDR382W (pp) YFL039C", "shared_interaction" : "pp", "name" : "YDR382W (pp) YFL039C", "interaction" : "pp", "SUID" : 549, "selected" : false } }, { "data" : { "id" : "548", "source" : "217", "target" : "216", "EdgeBetweenness" : 8.0, "shared_name" : "YFL039C (pp) YCL040W", "shared_interaction" : "pp", "name" : "YFL039C (pp) YCL040W", "interaction" : "pp", "SUID" : 548, "selected" : false } }, { "data" : { "id" : "547", "source" : "217", "target" : "215", "EdgeBetweenness" : 8.0, "shared_name" : "YFL039C (pp) YHR179W", "shared_interaction" : "pp", "name" : "YFL039C (pp) YHR179W", "interaction" : "pp", "SUID" : 547, "selected" : false } }, { "data" : { "id" : "546", "source" : "214", "target" : "354", "EdgeBetweenness" : 2034.76542347, "shared_name" : "YPL075W (pd) YCR012W", "shared_interaction" : "pd", "name" : "YPL075W (pd) YCR012W", "interaction" : "pd", "SUID" : 546, "selected" : false } }, { "data" : { "id" : "545", "source" : "214", "target" : "353", "EdgeBetweenness" : 1846.76542347, "shared_name" : "YPL075W (pd) YGR254W", "shared_interaction" : "pd", "name" : "YPL075W (pd) YGR254W", "interaction" : "pd", "SUID" : 545, "selected" : false } }, { "data" : { "id" : "544", "source" : "214", "target" : "352", "EdgeBetweenness" : 1846.76542347, "shared_name" : "YPL075W (pd) YHR174W", "shared_interaction" : "pd", "name" : "YPL075W (pd) YHR174W", "interaction" : "pd", "SUID" : 544, "selected" : false } }, { "data" : { "id" : "543", "source" : "214", "target" : "213", "EdgeBetweenness" : 11094.32880453, "shared_name" : "YPL075W (pp) YNL199C", "shared_interaction" : "pp", "name" : "YPL075W (pp) YNL199C", "interaction" : "pp", "SUID" : 543, "selected" : false } }, { "data" : { "id" : "542", "source" : "214", "target" : "341", "EdgeBetweenness" : 1846.76542347, "shared_name" : "YPL075W (pd) YDR050C", "shared_interaction" : "pd", "name" : "YPL075W (pd) YDR050C", "interaction" : "pd", "SUID" : 542, "selected" : false } }, { "data" : { "id" : "541", "source" : "214", "target" : "340", "EdgeBetweenness" : 1846.76542347, "shared_name" : "YPL075W (pd) YOL086C", "shared_interaction" : "pd", "name" : "YPL075W (pd) YOL086C", "interaction" : "pd", "SUID" : 541, "selected" : false } }, { "data" : { "id" : "540", "source" : "213", "target" : "212", "EdgeBetweenness" : 3624.18315018, "shared_name" : "YNL199C (pp) YPR048W", "shared_interaction" : "pp", "name" : "YNL199C (pp) YPR048W", "interaction" : "pp", "SUID" : 540, "selected" : false } }, { "data" : { "id" : "539", "source" : "212", "target" : "173", "EdgeBetweenness" : 2162.02930403, "shared_name" : "YPR048W (pp) YOR355W", "shared_interaction" : "pp", "name" : "YPR048W (pp) YOR355W", "interaction" : "pp", "SUID" : 539, "selected" : false } }, { "data" : { "id" : "538", "source" : "212", "target" : "102", "EdgeBetweenness" : 3388.0, "shared_name" : "YPR048W (pp) YDL215C", "shared_interaction" : "pp", "name" : "YPR048W (pp) YDL215C", "interaction" : "pp", "SUID" : 538, "selected" : false } }, { "data" : { "id" : "537", "source" : "211", "target" : "334", "EdgeBetweenness" : 988.0, "shared_name" : "YLR321C (pp) YDR412W", "shared_interaction" : "pp", "name" : "YLR321C (pp) YDR412W", "interaction" : "pp", "SUID" : 537, "selected" : false } }, { "data" : { "id" : "536", "source" : "210", "target" : "209", "EdgeBetweenness" : 496.0, "shared_name" : "YBR072W (pd) YGL073W", "shared_interaction" : "pd", "name" : "YBR072W (pd) YGL073W", "interaction" : "pd", "SUID" : 536, "selected" : false } }, { "data" : { "id" : "535", "source" : "209", "target" : "179", "EdgeBetweenness" : 4320.0, "shared_name" : "YGL073W (pp) YOR178C", "shared_interaction" : "pp", "name" : "YGL073W (pp) YOR178C", "interaction" : "pp", "SUID" : 535, "selected" : false } }, { "data" : { "id" : "534", "source" : "209", "target" : "119", "EdgeBetweenness" : 981.0, "shared_name" : "YGL073W (pd) YHR053C", "shared_interaction" : "pd", "name" : "YGL073W (pd) YHR053C", "interaction" : "pd", "SUID" : 534, "selected" : false } }, { "data" : { "id" : "533", "source" : "209", "target" : "118", "EdgeBetweenness" : 981.0, "shared_name" : "YGL073W (pd) YHR055C", "shared_interaction" : "pd", "name" : "YGL073W (pd) YHR055C", "interaction" : "pd", "SUID" : 533, "selected" : false } }, { "data" : { "id" : "532", "source" : "209", "target" : "152", "EdgeBetweenness" : 1476.0, "shared_name" : "YGL073W (pd) YER103W", "shared_interaction" : "pd", "name" : "YGL073W (pd) YER103W", "interaction" : "pd", "SUID" : 532, "selected" : false } }, { "data" : { "id" : "531", "source" : "208", "target" : "249", "EdgeBetweenness" : 496.0, "shared_name" : "YBL069W (pp) YGL008C", "shared_interaction" : "pp", "name" : "YBL069W (pp) YGL008C", "interaction" : "pp", "SUID" : 531, "selected" : false } }, { "data" : { "id" : "530", "source" : "207", "target" : "206", "EdgeBetweenness" : 496.0, "shared_name" : "YNL189W (pp) YDL236W", "shared_interaction" : "pp", "name" : "YNL189W (pp) YDL236W", "interaction" : "pp", "SUID" : 530, "selected" : false } }, { "data" : { "id" : "529", "source" : "207", "target" : "205", "EdgeBetweenness" : 1960.0, "shared_name" : "YNL189W (pp) YPL111W", "shared_interaction" : "pp", "name" : "YNL189W (pp) YPL111W", "interaction" : "pp", "SUID" : 529, "selected" : false } }, { "data" : { "id" : "528", "source" : "207", "target" : "238", "EdgeBetweenness" : 2598.55641026, "shared_name" : "YNL189W (pp) YER065C", "shared_interaction" : "pp", "name" : "YNL189W (pp) YER065C", "interaction" : "pp", "SUID" : 528, "selected" : false } }, { "data" : { "id" : "527", "source" : "207", "target" : "204", "EdgeBetweenness" : 496.0, "shared_name" : "YNL189W (pp) YPR062W", "shared_interaction" : "pp", "name" : "YNL189W (pp) YPR062W", "interaction" : "pp", "SUID" : 527, "selected" : false } }, { "data" : { "id" : "526", "source" : "203", "target" : "307", "EdgeBetweenness" : 4592.87952048, "shared_name" : "YLR319C (pp) YLR362W", "shared_interaction" : "pp", "name" : "YLR319C (pp) YLR362W", "interaction" : "pp", "SUID" : 526, "selected" : false } }, { "data" : { "id" : "525", "source" : "202", "target" : "201", "EdgeBetweenness" : 6.0, "shared_name" : "YNL311C (pp) YKL001C", "shared_interaction" : "pp", "name" : "YNL311C (pp) YKL001C", "interaction" : "pp", "SUID" : 525, "selected" : false } }, { "data" : { "id" : "524", "source" : "200", "target" : "199", "EdgeBetweenness" : 8.0, "shared_name" : "YOL016C (pp) YBR109C", "shared_interaction" : "pp", "name" : "YOL016C (pp) YBR109C", "interaction" : "pp", "SUID" : 524, "selected" : false } }, { "data" : { "id" : "523", "source" : "199", "target" : "322", "EdgeBetweenness" : 12.0, "shared_name" : "YBR109C (pp) YOR326W", "shared_interaction" : "pp", "name" : "YBR109C (pp) YOR326W", "interaction" : "pp", "SUID" : 523, "selected" : false } }, { "data" : { "id" : "522", "source" : "199", "target" : "74", "EdgeBetweenness" : 8.0, "shared_name" : "YBR109C (pp) YFR014C", "shared_interaction" : "pp", "name" : "YBR109C (pp) YFR014C", "interaction" : "pp", "SUID" : 522, "selected" : false } }, { "data" : { "id" : "521", "source" : "198", "target" : "197", "EdgeBetweenness" : 2.0, "shared_name" : "YJL036W (pp) YDL113C", "shared_interaction" : "pp", "name" : "YJL036W (pp) YDL113C", "interaction" : "pp", "SUID" : 521, "selected" : false } }, { "data" : { "id" : "520", "source" : "196", "target" : "195", "EdgeBetweenness" : 4.0, "shared_name" : "YEL041W (pp) YHR115C", "shared_interaction" : "pp", "name" : "YEL041W (pp) YHR115C", "interaction" : "pp", "SUID" : 520, "selected" : false } }, { "data" : { "id" : "519", "source" : "195", "target" : "82", "EdgeBetweenness" : 4.0, "shared_name" : "YHR115C (pp) YOR215C", "shared_interaction" : "pp", "name" : "YHR115C (pp) YOR215C", "interaction" : "pp", "SUID" : 519, "selected" : false } }, { "data" : { "id" : "518", "source" : "194", "target" : "316", "EdgeBetweenness" : 611.26923077, "shared_name" : "YNL167C (pd) YOR202W", "shared_interaction" : "pd", "name" : "YNL167C (pd) YOR202W", "interaction" : "pd", "SUID" : 518, "selected" : false } }, { "data" : { "id" : "517", "source" : "193", "target" : "192", "EdgeBetweenness" : 2.0, "shared_name" : "YDL063C (pp) YPL131W", "shared_interaction" : "pp", "name" : "YDL063C (pp) YPL131W", "interaction" : "pp", "SUID" : 517, "selected" : false } }, { "data" : { "id" : "516", "source" : "191", "target" : "190", "EdgeBetweenness" : 2.0, "shared_name" : "YGL161C (pp) YDR100W", "shared_interaction" : "pp", "name" : "YGL161C (pp) YDR100W", "interaction" : "pp", "SUID" : 516, "selected" : false } }, { "data" : { "id" : "515", "source" : "189", "target" : "188", "EdgeBetweenness" : 496.0, "shared_name" : "YMR183C (pp) YGR009C", "shared_interaction" : "pp", "name" : "YMR183C (pp) YGR009C", "interaction" : "pp", "SUID" : 515, "selected" : false } }, { "data" : { "id" : "514", "source" : "188", "target" : "339", "EdgeBetweenness" : 739.0, "shared_name" : "YGR009C (pp) YAL030W", "shared_interaction" : "pp", "name" : "YGR009C (pp) YAL030W", "interaction" : "pp", "SUID" : 514, "selected" : false } }, { "data" : { "id" : "513", "source" : "188", "target" : "337", "EdgeBetweenness" : 739.0, "shared_name" : "YGR009C (pp) YOR327C", "shared_interaction" : "pp", "name" : "YGR009C (pp) YOR327C", "interaction" : "pp", "SUID" : 513, "selected" : false } }, { "data" : { "id" : "512", "source" : "188", "target" : "234", "EdgeBetweenness" : 4025.28291708, "shared_name" : "YGR009C (pp) YDR335W", "shared_interaction" : "pp", "name" : "YGR009C (pp) YDR335W", "interaction" : "pp", "SUID" : 512, "selected" : false } }, { "data" : { "id" : "511", "source" : "188", "target" : "113", "EdgeBetweenness" : 5785.28291708, "shared_name" : "YGR009C (pp) YBL050W", "shared_interaction" : "pp", "name" : "YGR009C (pp) YBL050W", "interaction" : "pp", "SUID" : 511, "selected" : false } }, { "data" : { "id" : "510", "source" : "187", "target" : "243", "EdgeBetweenness" : 4.0, "shared_name" : "YMR291W (pp) YGL115W", "shared_interaction" : "pp", "name" : "YMR291W (pp) YGL115W", "interaction" : "pp", "SUID" : 510, "selected" : false } }, { "data" : { "id" : "509", "source" : "186", "target" : "185", "EdgeBetweenness" : 4.0, "shared_name" : "YGR048W (pp) YPL222W", "shared_interaction" : "pp", "name" : "YGR048W (pp) YPL222W", "interaction" : "pp", "SUID" : 509, "selected" : false } }, { "data" : { "id" : "508", "source" : "184", "target" : "269", "EdgeBetweenness" : 381.0, "shared_name" : "YAL040C (pd) YMR043W", "shared_interaction" : "pd", "name" : "YAL040C (pd) YMR043W", "interaction" : "pd", "SUID" : 508, "selected" : false } }, { "data" : { "id" : "507", "source" : "183", "target" : "345", "EdgeBetweenness" : 988.0, "shared_name" : "YFR034C (pd) YBR093C", "shared_interaction" : "pd", "name" : "YFR034C (pd) YBR093C", "interaction" : "pd", "SUID" : 507, "selected" : false } }, { "data" : { "id" : "506", "source" : "182", "target" : "181", "EdgeBetweenness" : 2.0, "shared_name" : "YFR037C (pp) YOR290C", "shared_interaction" : "pp", "name" : "YFR037C (pp) YOR290C", "interaction" : "pp", "SUID" : 506, "selected" : false } }, { "data" : { "id" : "505", "source" : "180", "target" : "334", "EdgeBetweenness" : 11988.0, "shared_name" : "YER133W (pp) YDR412W", "shared_interaction" : "pp", "name" : "YER133W (pp) YDR412W", "interaction" : "pp", "SUID" : 505, "selected" : false } }, { "data" : { "id" : "504", "source" : "180", "target" : "179", "EdgeBetweenness" : 7242.0, "shared_name" : "YER133W (pp) YOR178C", "shared_interaction" : "pp", "name" : "YER133W (pp) YOR178C", "interaction" : "pp", "SUID" : 504, "selected" : false } }, { "data" : { "id" : "503", "source" : "180", "target" : "178", "EdgeBetweenness" : 496.0, "shared_name" : "YER133W (pp) YOR315W", "shared_interaction" : "pp", "name" : "YER133W (pp) YOR315W", "interaction" : "pp", "SUID" : 503, "selected" : false } }, { "data" : { "id" : "502", "source" : "180", "target" : "177", "EdgeBetweenness" : 496.0, "shared_name" : "YER133W (pp) YMR311C", "shared_interaction" : "pp", "name" : "YER133W (pp) YMR311C", "interaction" : "pp", "SUID" : 502, "selected" : false } }, { "data" : { "id" : "501", "source" : "180", "target" : "176", "EdgeBetweenness" : 496.0, "shared_name" : "YER133W (pp) YBR050C", "shared_interaction" : "pp", "name" : "YER133W (pp) YBR050C", "interaction" : "pp", "SUID" : 501, "selected" : false } }, { "data" : { "id" : "500", "source" : "175", "target" : "194", "EdgeBetweenness" : 887.73076923, "shared_name" : "YIL162W (pd) YNL167C", "shared_interaction" : "pd", "name" : "YIL162W (pd) YNL167C", "interaction" : "pd", "SUID" : 500, "selected" : false } }, { "data" : { "id" : "499", "source" : "174", "target" : "250", "EdgeBetweenness" : 496.0, "shared_name" : "YFL038C (pp) YOR036W", "shared_interaction" : "pp", "name" : "YFL038C (pp) YOR036W", "interaction" : "pp", "SUID" : 499, "selected" : false } }, { "data" : { "id" : "498", "source" : "173", "target" : "293", "EdgeBetweenness" : 2356.12454212, "shared_name" : "YOR355W (pp) YNL091W", "shared_interaction" : "pp", "name" : "YOR355W (pp) YNL091W", "interaction" : "pp", "SUID" : 498, "selected" : false } }, { "data" : { "id" : "497", "source" : "172", "target" : "171", "EdgeBetweenness" : 2.0, "shared_name" : "YML074C (pp) YJL190C", "shared_interaction" : "pp", "name" : "YML074C (pp) YJL190C", "interaction" : "pp", "SUID" : 497, "selected" : false } }, { "data" : { "id" : "496", "source" : "170", "target" : "169", "EdgeBetweenness" : 2.0, "shared_name" : "YMR058W (pp) YER145C", "shared_interaction" : "pp", "name" : "YMR058W (pp) YER145C", "interaction" : "pp", "SUID" : 496, "selected" : false } }, { "data" : { "id" : "495", "source" : "168", "target" : "183", "EdgeBetweenness" : 496.0, "shared_name" : "YML123C (pd) YFR034C", "shared_interaction" : "pd", "name" : "YML123C (pd) YFR034C", "interaction" : "pd", "SUID" : 495, "selected" : false } }, { "data" : { "id" : "494", "source" : "167", "target" : "166", "EdgeBetweenness" : 496.0, "shared_name" : "YPL031C (pp) YHR071W", "shared_interaction" : "pp", "name" : "YPL031C (pp) YHR071W", "interaction" : "pp", "SUID" : 494, "selected" : false } }, { "data" : { "id" : "493", "source" : "165", "target" : "301", "EdgeBetweenness" : 135.97575758, "shared_name" : "YML051W (pp) YBR020W", "shared_interaction" : "pp", "name" : "YML051W (pp) YBR020W", "interaction" : "pp", "SUID" : 493, "selected" : false } }, { "data" : { "id" : "492", "source" : "165", "target" : "164", "EdgeBetweenness" : 143.37575758, "shared_name" : "YML051W (pp) YDR009W", "shared_interaction" : "pp", "name" : "YML051W (pp) YDR009W", "interaction" : "pp", "SUID" : 492, "selected" : false } }, { "data" : { "id" : "491", "source" : "164", "target" : "302", "EdgeBetweenness" : 615.77575758, "shared_name" : "YDR009W (pd) YGL035C", "shared_interaction" : "pd", "name" : "YDR009W (pd) YGL035C", "interaction" : "pd", "SUID" : 491, "selected" : false } }, { "data" : { "id" : "490", "source" : "163", "target" : "162", "EdgeBetweenness" : 496.0, "shared_name" : "YLL019C (pp) YIL113W", "shared_interaction" : "pp", "name" : "YLL019C (pp) YIL113W", "interaction" : "pp", "SUID" : 490, "selected" : false } }, { "data" : { "id" : "489", "source" : "162", "target" : "240", "EdgeBetweenness" : 988.0, "shared_name" : "YIL113W (pp) YHR030C", "shared_interaction" : "pp", "name" : "YIL113W (pp) YHR030C", "interaction" : "pp", "SUID" : 489, "selected" : false } }, { "data" : { "id" : "488", "source" : "161", "target" : "355", "EdgeBetweenness" : 496.0, "shared_name" : "YML024W (pd) YNL216W", "shared_interaction" : "pd", "name" : "YML024W (pd) YNL216W", "interaction" : "pd", "SUID" : 488, "selected" : false } }, { "data" : { "id" : "487", "source" : "160", "target" : "282", "EdgeBetweenness" : 4.0, "shared_name" : "YOR039W (pp) YOR303W", "shared_interaction" : "pp", "name" : "YOR039W (pp) YOR303W", "interaction" : "pp", "SUID" : 487, "selected" : false } }, { "data" : { "id" : "486", "source" : "159", "target" : "269", "EdgeBetweenness" : 2361.73260073, "shared_name" : "YER111C (pd) YMR043W", "shared_interaction" : "pd", "name" : "YER111C (pd) YMR043W", "interaction" : "pd", "SUID" : 486, "selected" : false } }, { "data" : { "id" : "485", "source" : "158", "target" : "269", "EdgeBetweenness" : 19179.59362859, "shared_name" : "YDR146C (pd) YMR043W", "shared_interaction" : "pd", "name" : "YDR146C (pd) YMR043W", "interaction" : "pd", "SUID" : 485, "selected" : false } }, { "data" : { "id" : "484", "source" : "158", "target" : "302", "EdgeBetweenness" : 19180.22220002, "shared_name" : "YDR146C (pd) YGL035C", "shared_interaction" : "pd", "name" : "YDR146C (pd) YGL035C", "interaction" : "pd", "SUID" : 484, "selected" : false } }, { "data" : { "id" : "483", "source" : "157", "target" : "156", "EdgeBetweenness" : 2.0, "shared_name" : "YKL211C (pp) YER090W", "shared_interaction" : "pp", "name" : "YKL211C (pp) YER090W", "interaction" : "pp", "SUID" : 483, "selected" : false } }, { "data" : { "id" : "482", "source" : "155", "target" : "318", "EdgeBetweenness" : 496.0, "shared_name" : "YDR354W (pd) YEL009C", "shared_interaction" : "pd", "name" : "YDR354W (pd) YEL009C", "interaction" : "pd", "SUID" : 482, "selected" : false } }, { "data" : { "id" : "481", "source" : "154", "target" : "153", "EdgeBetweenness" : 2.0, "shared_name" : "YNL113W (pp) YPR110C", "shared_interaction" : "pp", "name" : "YNL113W (pp) YPR110C", "interaction" : "pp", "SUID" : 481, "selected" : false } }, { "data" : { "id" : "480", "source" : "147", "target" : "371", "EdgeBetweenness" : 496.0, "shared_name" : "YMR044W (pp) YIL061C", "shared_interaction" : "pp", "name" : "YMR044W (pp) YIL061C", "interaction" : "pp", "SUID" : 480, "selected" : false } }, { "data" : { "id" : "479", "source" : "146", "target" : "366", "EdgeBetweenness" : 248.5, "shared_name" : "YOL149W (pp) YOR167C", "shared_interaction" : "pp", "name" : "YOL149W (pp) YOR167C", "interaction" : "pp", "SUID" : 479, "selected" : false } }, { "data" : { "id" : "478", "source" : "145", "target" : "144", "EdgeBetweenness" : 5.0, "shared_name" : "YLR191W (pp) YGL153W", "shared_interaction" : "pp", "name" : "YLR191W (pp) YGL153W", "interaction" : "pp", "SUID" : 478, "selected" : false } }, { "data" : { "id" : "477", "source" : "143", "target" : "142", "EdgeBetweenness" : 6.0, "shared_name" : "YER110C (pp) YML007W", "shared_interaction" : "pp", "name" : "YER110C (pp) YML007W", "interaction" : "pp", "SUID" : 477, "selected" : false } }, { "data" : { "id" : "476", "source" : "141", "target" : "149", "EdgeBetweenness" : 3206.08455433, "shared_name" : "YBR135W (pp) YER102W", "shared_interaction" : "pp", "name" : "YBR135W (pp) YER102W", "interaction" : "pp", "SUID" : 476, "selected" : false } }, { "data" : { "id" : "475", "source" : "140", "target" : "144", "EdgeBetweenness" : 5.0, "shared_name" : "YNL214W (pp) YGL153W", "shared_interaction" : "pp", "name" : "YNL214W (pp) YGL153W", "interaction" : "pp", "SUID" : 475, "selected" : false } }, { "data" : { "id" : "474", "source" : "138", "target" : "251", "EdgeBetweenness" : 496.0, "shared_name" : "YOR089C (pp) YDR323C", "shared_interaction" : "pp", "name" : "YOR089C (pp) YDR323C", "interaction" : "pp", "SUID" : 474, "selected" : false } }, { "data" : { "id" : "473", "source" : "137", "target" : "239", "EdgeBetweenness" : 496.0, "shared_name" : "YNL117W (pd) YJL089W", "shared_interaction" : "pd", "name" : "YNL117W (pd) YJL089W", "interaction" : "pd", "SUID" : 473, "selected" : false } }, { "data" : { "id" : "472", "source" : "136", "target" : "357", "EdgeBetweenness" : 496.0, "shared_name" : "YLR175W (pp) YNL307C", "shared_interaction" : "pp", "name" : "YLR175W (pp) YNL307C", "interaction" : "pp", "SUID" : 472, "selected" : false } }, { "data" : { "id" : "471", "source" : "135", "target" : "134", "EdgeBetweenness" : 988.0, "shared_name" : "YDR167W (pp) YLR432W", "shared_interaction" : "pp", "name" : "YDR167W (pp) YLR432W", "interaction" : "pp", "SUID" : 471, "selected" : false } }, { "data" : { "id" : "470", "source" : "133", "target" : "145", "EdgeBetweenness" : 7.0, "shared_name" : "YDR244W (pp) YLR191W", "shared_interaction" : "pp", "name" : "YDR244W (pp) YLR191W", "interaction" : "pp", "SUID" : 470, "selected" : false } }, { "data" : { "id" : "469", "source" : "133", "target" : "144", "EdgeBetweenness" : 4.0, "shared_name" : "YDR244W (pp) YGL153W", "shared_interaction" : "pp", "name" : "YDR244W (pp) YGL153W", "interaction" : "pp", "SUID" : 469, "selected" : false } }, { "data" : { "id" : "468", "source" : "133", "target" : "140", "EdgeBetweenness" : 7.0, "shared_name" : "YDR244W (pp) YNL214W", "shared_interaction" : "pp", "name" : "YDR244W (pp) YNL214W", "interaction" : "pp", "SUID" : 468, "selected" : false } }, { "data" : { "id" : "467", "source" : "133", "target" : "132", "EdgeBetweenness" : 12.0, "shared_name" : "YDR244W (pp) YDR142C", "shared_interaction" : "pp", "name" : "YDR244W (pp) YDR142C", "interaction" : "pp", "SUID" : 467, "selected" : false } }, { "data" : { "id" : "466", "source" : "133", "target" : "131", "EdgeBetweenness" : 12.0, "shared_name" : "YDR244W (pp) YDL078C", "shared_interaction" : "pp", "name" : "YDR244W (pp) YDL078C", "interaction" : "pp", "SUID" : 466, "selected" : false } }, { "data" : { "id" : "465", "source" : "132", "target" : "144", "EdgeBetweenness" : 8.0, "shared_name" : "YDR142C (pp) YGL153W", "shared_interaction" : "pp", "name" : "YDR142C (pp) YGL153W", "interaction" : "pp", "SUID" : 465, "selected" : false } }, { "data" : { "id" : "464", "source" : "132", "target" : "130", "EdgeBetweenness" : 12.0, "shared_name" : "YDR142C (pp) YIL160C", "shared_interaction" : "pp", "name" : "YDR142C (pp) YIL160C", "interaction" : "pp", "SUID" : 464, "selected" : false } }, { "data" : { "id" : "463", "source" : "129", "target" : "290", "EdgeBetweenness" : 249.0, "shared_name" : "YAR007C (pp) YML032C", "shared_interaction" : "pp", "name" : "YAR007C (pp) YML032C", "interaction" : "pp", "SUID" : 463, "selected" : false } }, { "data" : { "id" : "462", "source" : "129", "target" : "205", "EdgeBetweenness" : 739.0, "shared_name" : "YAR007C (pd) YPL111W", "shared_interaction" : "pd", "name" : "YAR007C (pd) YPL111W", "interaction" : "pd", "SUID" : 462, "selected" : false } }, { "data" : { "id" : "461", "source" : "128", "target" : "241", "EdgeBetweenness" : 496.0, "shared_name" : "YKL161C (pp) YPL089C", "shared_interaction" : "pp", "name" : "YKL161C (pp) YPL089C", "interaction" : "pp", "SUID" : 461, "selected" : false } }, { "data" : { "id" : "460", "source" : "127", "target" : "126", "EdgeBetweenness" : 249.0, "shared_name" : "YLR075W (pp) YPR102C", "shared_interaction" : "pp", "name" : "YLR075W (pp) YPR102C", "interaction" : "pp", "SUID" : 460, "selected" : false } }, { "data" : { "id" : "459", "source" : "125", "target" : "319", "EdgeBetweenness" : 323.0, "shared_name" : "YPL240C (pp) YBR155W", "shared_interaction" : "pp", "name" : "YPL240C (pp) YBR155W", "interaction" : "pp", "SUID" : 459, "selected" : false } }, { "data" : { "id" : "458", "source" : "125", "target" : "250", "EdgeBetweenness" : 8233.28291708, "shared_name" : "YPL240C (pp) YOR036W", "shared_interaction" : "pp", "name" : "YPL240C (pp) YOR036W", "interaction" : "pp", "SUID" : 458, "selected" : false } }, { "data" : { "id" : "457", "source" : "122", "target" : "121", "EdgeBetweenness" : 496.0, "shared_name" : "YER052C (pp) YNL135C", "shared_interaction" : "pp", "name" : "YER052C (pp) YNL135C", "interaction" : "pp", "SUID" : 457, "selected" : false } }, { "data" : { "id" : "456", "source" : "121", "target" : "233", "EdgeBetweenness" : 988.0, "shared_name" : "YNL135C (pp) YDR174W", "shared_interaction" : "pp", "name" : "YNL135C (pp) YDR174W", "interaction" : "pp", "SUID" : 456, "selected" : false } }, { "data" : { "id" : "455", "source" : "120", "target" : "236", "EdgeBetweenness" : 4.0, "shared_name" : "YPR124W (pd) YMR021C", "shared_interaction" : "pd", "name" : "YPR124W (pd) YMR021C", "interaction" : "pd", "SUID" : 455, "selected" : false } }, { "data" : { "id" : "454", "source" : "117", "target" : "167", "EdgeBetweenness" : 988.0, "shared_name" : "YGL134W (pp) YPL031C", "shared_interaction" : "pp", "name" : "YGL134W (pp) YPL031C", "interaction" : "pp", "SUID" : 454, "selected" : false } }, { "data" : { "id" : "453", "source" : "117", "target" : "116", "EdgeBetweenness" : 1476.0, "shared_name" : "YGL134W (pp) YLR258W", "shared_interaction" : "pp", "name" : "YGL134W (pp) YLR258W", "interaction" : "pp", "SUID" : 453, "selected" : false } }, { "data" : { "id" : "452", "source" : "116", "target" : "103", "EdgeBetweenness" : 4780.0, "shared_name" : "YLR258W (pp) YIL045W", "shared_interaction" : "pp", "name" : "YLR258W (pp) YIL045W", "interaction" : "pp", "SUID" : 452, "selected" : false } }, { "data" : { "id" : "451", "source" : "116", "target" : "111", "EdgeBetweenness" : 2916.0, "shared_name" : "YLR258W (pp) YBR274W", "shared_interaction" : "pp", "name" : "YLR258W (pp) YBR274W", "interaction" : "pp", "SUID" : 451, "selected" : false } }, { "data" : { "id" : "450", "source" : "115", "target" : "269", "EdgeBetweenness" : 988.0, "shared_name" : "YJL194W (pd) YMR043W", "shared_interaction" : "pd", "name" : "YJL194W (pd) YMR043W", "interaction" : "pd", "SUID" : 450, "selected" : false } }, { "data" : { "id" : "449", "source" : "114", "target" : "366", "EdgeBetweenness" : 248.5, "shared_name" : "YBL026W (pp) YOR167C", "shared_interaction" : "pp", "name" : "YBL026W (pp) YOR167C", "interaction" : "pp", "SUID" : 449, "selected" : false } }, { "data" : { "id" : "448", "source" : "113", "target" : "250", "EdgeBetweenness" : 6133.28291708, "shared_name" : "YBL050W (pp) YOR036W", "shared_interaction" : "pp", "name" : "YBL050W (pp) YOR036W", "interaction" : "pp", "SUID" : 448, "selected" : false } }, { "data" : { "id" : "447", "source" : "112", "target" : "269", "EdgeBetweenness" : 485.5, "shared_name" : "YHR084W (pp) YMR043W", "shared_interaction" : "pp", "name" : "YHR084W (pp) YMR043W", "interaction" : "pp", "SUID" : 447, "selected" : false } }, { "data" : { "id" : "446", "source" : "112", "target" : "264", "EdgeBetweenness" : 4.83333333, "shared_name" : "YHR084W (pd) YDR461W", "shared_interaction" : "pd", "name" : "YHR084W (pd) YDR461W", "interaction" : "pd", "SUID" : 446, "selected" : false } }, { "data" : { "id" : "445", "source" : "112", "target" : "261", "EdgeBetweenness" : 4.83333333, "shared_name" : "YHR084W (pd) YFL026W", "shared_interaction" : "pd", "name" : "YHR084W (pd) YFL026W", "interaction" : "pd", "SUID" : 445, "selected" : false } }, { "data" : { "id" : "444", "source" : "111", "target" : "110", "EdgeBetweenness" : 2440.0, "shared_name" : "YBR274W (pp) YMR255W", "shared_interaction" : "pp", "name" : "YBR274W (pp) YMR255W", "interaction" : "pp", "SUID" : 444, "selected" : false } }, { "data" : { "id" : "443", "source" : "110", "target" : "391", "EdgeBetweenness" : 1960.0, "shared_name" : "YMR255W (pp) YGL122C", "shared_interaction" : "pp", "name" : "YMR255W (pp) YGL122C", "interaction" : "pp", "SUID" : 443, "selected" : false } }, { "data" : { "id" : "442", "source" : "109", "target" : "108", "EdgeBetweenness" : 496.0, "shared_name" : "YLR452C (pp) YHR005C", "shared_interaction" : "pp", "name" : "YLR452C (pp) YHR005C", "interaction" : "pp", "SUID" : 442, "selected" : false } }, { "data" : { "id" : "441", "source" : "108", "target" : "307", "EdgeBetweenness" : 988.0, "shared_name" : "YHR005C (pp) YLR362W", "shared_interaction" : "pp", "name" : "YHR005C (pp) YLR362W", "interaction" : "pp", "SUID" : 441, "selected" : false } }, { "data" : { "id" : "440", "source" : "107", "target" : "115", "EdgeBetweenness" : 496.0, "shared_name" : "YDR299W (pd) YJL194W", "shared_interaction" : "pd", "name" : "YDR299W (pd) YJL194W", "interaction" : "pd", "SUID" : 440, "selected" : false } }, { "data" : { "id" : "439", "source" : "106", "target" : "202", "EdgeBetweenness" : 8.0, "shared_name" : "YIL074C (pp) YNL311C", "shared_interaction" : "pp", "name" : "YIL074C (pp) YNL311C", "interaction" : "pp", "SUID" : 439, "selected" : false } }, { "data" : { "id" : "438", "source" : "105", "target" : "299", "EdgeBetweenness" : 496.0, "shared_name" : "YOR120W (pd) YPL248C", "shared_interaction" : "pd", "name" : "YOR120W (pd) YPL248C", "interaction" : "pd", "SUID" : 438, "selected" : false } }, { "data" : { "id" : "437", "source" : "104", "target" : "324", "EdgeBetweenness" : 230.66666667, "shared_name" : "YPR041W (pp) YOR361C", "shared_interaction" : "pp", "name" : "YPR041W (pp) YOR361C", "interaction" : "pp", "SUID" : 437, "selected" : false } }, { "data" : { "id" : "436", "source" : "104", "target" : "323", "EdgeBetweenness" : 265.33333333, "shared_name" : "YPR041W (pp) YMR309C", "shared_interaction" : "pp", "name" : "YPR041W (pp) YMR309C", "interaction" : "pp", "SUID" : 436, "selected" : false } }, { "data" : { "id" : "435", "source" : "102", "target" : "248", "EdgeBetweenness" : 1476.0, "shared_name" : "YDL215C (pd) YER040W", "shared_interaction" : "pd", "name" : "YDL215C (pd) YER040W", "interaction" : "pd", "SUID" : 435, "selected" : false } }, { "data" : { "id" : "434", "source" : "102", "target" : "134", "EdgeBetweenness" : 1476.0, "shared_name" : "YDL215C (pp) YLR432W", "shared_interaction" : "pp", "name" : "YDL215C (pp) YLR432W", "interaction" : "pp", "SUID" : 434, "selected" : false } }, { "data" : { "id" : "433", "source" : "101", "target" : "226", "EdgeBetweenness" : 12.0, "shared_name" : "YER079W (pp) YHR135C", "shared_interaction" : "pp", "name" : "YER079W (pp) YHR135C", "interaction" : "pp", "SUID" : 433, "selected" : false } }, { "data" : { "id" : "432", "source" : "101", "target" : "223", "EdgeBetweenness" : 12.0, "shared_name" : "YER079W (pp) YNL154C", "shared_interaction" : "pp", "name" : "YER079W (pp) YNL154C", "interaction" : "pp", "SUID" : 432, "selected" : false } }, { "data" : { "id" : "431", "source" : "100", "target" : "358", "EdgeBetweenness" : 7802.71708292, "shared_name" : "YDL030W (pp) YDL013W", "shared_interaction" : "pp", "name" : "YDL030W (pp) YDL013W", "interaction" : "pp", "SUID" : 431, "selected" : false } }, { "data" : { "id" : "430", "source" : "100", "target" : "99", "EdgeBetweenness" : 496.0, "shared_name" : "YDL030W (pp) YMR005W", "shared_interaction" : "pp", "name" : "YDL030W (pp) YMR005W", "interaction" : "pp", "SUID" : 430, "selected" : false } }, { "data" : { "id" : "429", "source" : "97", "target" : "127", "EdgeBetweenness" : 249.0, "shared_name" : "YGR085C (pp) YLR075W", "shared_interaction" : "pp", "name" : "YGR085C (pp) YLR075W", "interaction" : "pp", "SUID" : 429, "selected" : false } }, { "data" : { "id" : "428", "source" : "97", "target" : "96", "EdgeBetweenness" : 739.0, "shared_name" : "YGR085C (pp) YDR395W", "shared_interaction" : "pp", "name" : "YGR085C (pp) YDR395W", "interaction" : "pp", "SUID" : 428, "selected" : false } }, { "data" : { "id" : "427", "source" : "96", "target" : "73", "EdgeBetweenness" : 496.0, "shared_name" : "YDR395W (pp) YDL075W", "shared_interaction" : "pp", "name" : "YDR395W (pp) YDL075W", "interaction" : "pp", "SUID" : 427, "selected" : false } }, { "data" : { "id" : "426", "source" : "96", "target" : "351", "EdgeBetweenness" : 1929.0, "shared_name" : "YDR395W (pp) YIL133C", "shared_interaction" : "pp", "name" : "YDR395W (pp) YIL133C", "interaction" : "pp", "SUID" : 426, "selected" : false } }, { "data" : { "id" : "425", "source" : "96", "target" : "72", "EdgeBetweenness" : 496.0, "shared_name" : "YDR395W (pp) YNL069C", "shared_interaction" : "pp", "name" : "YDR395W (pp) YNL069C", "interaction" : "pp", "SUID" : 425, "selected" : false } }, { "data" : { "id" : "424", "source" : "96", "target" : "71", "EdgeBetweenness" : 496.0, "shared_name" : "YDR395W (pp) YER056CA", "shared_interaction" : "pp", "name" : "YDR395W (pp) YER056CA", "interaction" : "pp", "SUID" : 424, "selected" : false } }, { "data" : { "id" : "423", "source" : "96", "target" : "70", "EdgeBetweenness" : 496.0, "shared_name" : "YDR395W (pp) YIL052C", "shared_interaction" : "pp", "name" : "YDR395W (pp) YIL052C", "interaction" : "pp", "SUID" : 423, "selected" : false } }, { "data" : { "id" : "422", "source" : "96", "target" : "342", "EdgeBetweenness" : 1929.0, "shared_name" : "YDR395W (pp) YOL127W", "shared_interaction" : "pp", "name" : "YDR395W (pp) YOL127W", "interaction" : "pp", "SUID" : 422, "selected" : false } }, { "data" : { "id" : "421", "source" : "96", "target" : "126", "EdgeBetweenness" : 739.0, "shared_name" : "YDR395W (pp) YPR102C", "shared_interaction" : "pp", "name" : "YDR395W (pp) YPR102C", "interaction" : "pp", "SUID" : 421, "selected" : false } }, { "data" : { "id" : "420", "source" : "95", "target" : "281", "EdgeBetweenness" : 496.0, "shared_name" : "YGR088W (pd) YLR256W", "shared_interaction" : "pd", "name" : "YGR088W (pd) YLR256W", "interaction" : "pd", "SUID" : 420, "selected" : false } }, { "data" : { "id" : "419", "source" : "94", "target" : "106", "EdgeBetweenness" : 6.0, "shared_name" : "YER081W (pp) YIL074C", "shared_interaction" : "pp", "name" : "YER081W (pp) YIL074C", "interaction" : "pp", "SUID" : 419, "selected" : false } }, { "data" : { "id" : "418", "source" : "93", "target" : "269", "EdgeBetweenness" : 496.0, "shared_name" : "YPR113W (pd) YMR043W", "shared_interaction" : "pd", "name" : "YPR113W (pd) YMR043W", "interaction" : "pd", "SUID" : 418, "selected" : false } }, { "data" : { "id" : "417", "source" : "92", "target" : "280", "EdgeBetweenness" : 496.0, "shared_name" : "YIL070C (pp) YML054C", "shared_interaction" : "pp", "name" : "YIL070C (pp) YML054C", "interaction" : "pp", "SUID" : 417, "selected" : false } }, { "data" : { "id" : "416", "source" : "90", "target" : "292", "EdgeBetweenness" : 496.0, "shared_name" : "YGR046W (pp) YNL236W", "shared_interaction" : "pp", "name" : "YGR046W (pp) YNL236W", "interaction" : "pp", "SUID" : 416, "selected" : false } }, { "data" : { "id" : "415", "source" : "88", "target" : "381", "EdgeBetweenness" : 496.0, "shared_name" : "YDR070C (pp) YFL017C", "shared_interaction" : "pp", "name" : "YDR070C (pp) YFL017C", "interaction" : "pp", "SUID" : 415, "selected" : false } }, { "data" : { "id" : "414", "source" : "87", "target" : "307", "EdgeBetweenness" : 8540.0041292, "shared_name" : "YOR212W (pp) YLR362W", "shared_interaction" : "pp", "name" : "YOR212W (pp) YLR362W", "interaction" : "pp", "SUID" : 414, "selected" : false } }, { "data" : { "id" : "413", "source" : "86", "target" : "297", "EdgeBetweenness" : 496.0, "shared_name" : "YNL036W (pp) YIR009W", "shared_interaction" : "pp", "name" : "YNL036W (pp) YIR009W", "interaction" : "pp", "SUID" : 413, "selected" : false } }, { "data" : { "id" : "412", "source" : "85", "target" : "135", "EdgeBetweenness" : 496.0, "shared_name" : "YML114C (pp) YDR167W", "shared_interaction" : "pp", "name" : "YML114C (pp) YDR167W", "interaction" : "pp", "SUID" : 412, "selected" : false } }, { "data" : { "id" : "411", "source" : "84", "target" : "309", "EdgeBetweenness" : 1476.0, "shared_name" : "YMR117C (pp) YCL032W", "shared_interaction" : "pp", "name" : "YMR117C (pp) YCL032W", "interaction" : "pp", "SUID" : 411, "selected" : false } }, { "data" : { "id" : "410", "source" : "84", "target" : "83", "EdgeBetweenness" : 496.0, "shared_name" : "YMR117C (pp) YPR010C", "shared_interaction" : "pp", "name" : "YMR117C (pp) YPR010C", "interaction" : "pp", "SUID" : 410, "selected" : false } }, { "data" : { "id" : "409", "source" : "81", "target" : "143", "EdgeBetweenness" : 8.0, "shared_name" : "YDL088C (pp) YER110C", "shared_interaction" : "pp", "name" : "YDL088C (pp) YER110C", "interaction" : "pp", "SUID" : 409, "selected" : false } }, { "data" : { "id" : "408", "source" : "80", "target" : "329", "EdgeBetweenness" : 2.0, "shared_name" : "YLR197W (pp) YDL014W", "shared_interaction" : "pp", "name" : "YLR197W (pp) YDL014W", "interaction" : "pp", "SUID" : 408, "selected" : false } }, { "data" : { "id" : "407", "source" : "80", "target" : "328", "EdgeBetweenness" : 2.0, "shared_name" : "YLR197W (pp) YOR310C", "shared_interaction" : "pp", "name" : "YLR197W (pp) YOR310C", "interaction" : "pp", "SUID" : 407, "selected" : false } }, { "data" : { "id" : "406", "source" : "79", "target" : "78", "EdgeBetweenness" : 4.0, "shared_name" : "YGL202W (pp) YGR074W", "shared_interaction" : "pp", "name" : "YGL202W (pp) YGR074W", "interaction" : "pp", "SUID" : 406, "selected" : false } }, { "data" : { "id" : "405", "source" : "78", "target" : "64", "EdgeBetweenness" : 4.0, "shared_name" : "YGR074W (pp) YBR043C", "shared_interaction" : "pp", "name" : "YGR074W (pp) YBR043C", "interaction" : "pp", "SUID" : 405, "selected" : false } }, { "data" : { "id" : "404", "source" : "77", "target" : "186", "EdgeBetweenness" : 4.0, "shared_name" : "YBR170C (pp) YGR048W", "shared_interaction" : "pp", "name" : "YBR170C (pp) YGR048W", "interaction" : "pp", "SUID" : 404, "selected" : false } }, { "data" : { "id" : "403", "source" : "76", "target" : "267", "EdgeBetweenness" : 496.0, "shared_name" : "YDL023C (pp) YJL159W", "shared_interaction" : "pp", "name" : "YDL023C (pp) YJL159W", "interaction" : "pp", "SUID" : 403, "selected" : false } }, { "data" : { "id" : "402", "source" : "75", "target" : "284", "EdgeBetweenness" : 496.0, "shared_name" : "YGR136W (pp) YGR058W", "shared_interaction" : "pp", "name" : "YGR136W (pp) YGR058W", "interaction" : "pp", "SUID" : 402, "selected" : false } }, { "data" : { "id" : "401", "source" : "69", "target" : "211", "EdgeBetweenness" : 496.0, "shared_name" : "YLR345W (pp) YLR321C", "shared_interaction" : "pp", "name" : "YLR345W (pp) YLR321C", "interaction" : "pp", "SUID" : 401, "selected" : false } }, { "data" : { "id" : "400", "source" : "68", "target" : "81", "EdgeBetweenness" : 6.0, "shared_name" : "YBL079W (pp) YDL088C", "shared_interaction" : "pp", "name" : "YBL079W (pp) YDL088C", "interaction" : "pp", "SUID" : 400, "selected" : false } }, { "data" : { "id" : "399", "source" : "67", "target" : "103", "EdgeBetweenness" : 5236.0, "shared_name" : "YBR045C (pp) YIL045W", "shared_interaction" : "pp", "name" : "YBR045C (pp) YIL045W", "interaction" : "pp", "SUID" : 399, "selected" : false } }, { "data" : { "id" : "398", "source" : "67", "target" : "179", "EdgeBetweenness" : 2962.0, "shared_name" : "YBR045C (pp) YOR178C", "shared_interaction" : "pp", "name" : "YBR045C (pp) YOR178C", "interaction" : "pp", "SUID" : 398, "selected" : false } }, { "data" : { "id" : "397", "source" : "66", "target" : "180", "EdgeBetweenness" : 3174.0, "shared_name" : "YER054C (pp) YER133W", "shared_interaction" : "pp", "name" : "YER054C (pp) YER133W", "interaction" : "pp", "SUID" : 397, "selected" : false } }, { "data" : { "id" : "396", "source" : "66", "target" : "67", "EdgeBetweenness" : 2746.0, "shared_name" : "YER054C (pp) YBR045C", "shared_interaction" : "pp", "name" : "YER054C (pp) YBR045C", "interaction" : "pp", "SUID" : 396, "selected" : false } }, { "data" : { "id" : "395", "source" : "65", "target" : "84", "EdgeBetweenness" : 496.0, "shared_name" : "YPR145W (pp) YMR117C", "shared_interaction" : "pp", "name" : "YPR145W (pp) YMR117C", "interaction" : "pp", "SUID" : 395, "selected" : false } }, { "data" : { "id" : "394", "source" : "63", "target" : "365", "EdgeBetweenness" : 988.0, "shared_name" : "YDR277C (pp) YJR022W", "shared_interaction" : "pp", "name" : "YDR277C (pp) YJR022W", "interaction" : "pp", "SUID" : 394, "selected" : false } }, { "data" : { "id" : "393", "source" : "63", "target" : "62", "EdgeBetweenness" : 496.0, "shared_name" : "YDR277C (pp) YDL194W", "shared_interaction" : "pp", "name" : "YDR277C (pp) YDL194W", "interaction" : "pp", "SUID" : 393, "selected" : false } } ] } ================================================ FILE: benchmark/graphs/random.js ================================================ var def = function( specdVal, defVal ){ return specdVal !== undefined ? specdVal : defVal; }; module.exports = function( opts ){ opts = opts || {}; var nNodes = def( opts.nodes, 2 ); var nEdges = def( opts.edges, 1 ); var generateNode = def( opts.generateNode, function(){ return {}; } ); var generateEdge = def( opts.generateEdge, function( src, tgt ){ return { data: { source: src.data.id, target: tgt.data.id } }; } ); var nodes = []; var edges = []; var i; var src, tgt; var randNode = function(){ var index = Math.round( Math.random() * ( nNodes - 1 ) ); return nodes[ index ]; }; for( i = 0; i < nNodes; i++ ){ nodes.push( generateNode() ); } for( i = 0; i < nEdges; i++ ){ src = randNode(); tgt = randNode(); edges.push( generateEdge( src, tgt ) ); } return { nodes: nodes, edges: edges }; }; ================================================ FILE: benchmark/has-class.js ================================================ var Suite = require('./suite'); var a; var suite = new Suite('eles.hasClass()', { setup: function( cytoscape ){ var cy = cytoscape({ elements: require('./graphs/gal'), styleEnabled: false }); a = cy.nodes(); return cy; } }); suite .add( function( cy ) { a.hasClass('foo'); }) ; module.exports = suite; ================================================ FILE: benchmark/id-selector.js ================================================ var Suite = require('./suite'); var suite = new Suite('#id selector', { setup: function( cytoscape ){ return cytoscape({ elements: require('./graphs/gal') }); } }); suite .add( function( cy ) { cy.$('#381'); }) ; module.exports = suite; ================================================ FILE: benchmark/init.js ================================================ var Suite = require('./suite'); var Cytoscape; var eles; var suite = new Suite('new Cytoscape()', { setup: function( cytoscapeImpl ){ Cytoscape = cytoscapeImpl; eles = JSON.parse( JSON.stringify( require('./graphs/gal') ) ); } }); suite .add( function() { return new Cytoscape({ elements: eles }); }) ; module.exports = suite; ================================================ FILE: benchmark/is.js ================================================ var Suite = require('./suite'); var a; var suite = new Suite('eles.is()', { setup: function( cytoscape ){ var cy = cytoscape({ elements: require('./graphs/gal') }); a = cy.nodes(); return cy; } }); suite .add( function( cy ) { a.is('node'); }) ; module.exports = suite; ================================================ FILE: benchmark/karger-stein.js ================================================ var eles; var Suite = require('./suite'); var suite = new Suite('eles.kargerStein()', { setup: function( cytoscape ){ var cy = cytoscape({ elements: require('./graphs/gal') }); eles = cy.elements().components()[0]; // Karger-Stein can run only on connected (sub)graphs return cy; } }); suite .add( function( cy ) { eles.kargerStein({}); }) ; module.exports = suite; ================================================ FILE: benchmark/kruskal.js ================================================ var eles; var Suite = require('./suite'); var suite = new Suite('eles.kruskal()', { setup: function( cytoscape ){ var cy = cytoscape({ elements: require('./graphs/gal') }); eles = cy.elements(); return cy; } }); suite .add( function( cy ) { eles.kruskal(); }) ; module.exports = suite; ================================================ FILE: benchmark/page-rank.js ================================================ var eles; var Suite = require('./suite'); var suite = new Suite('eles.pageRank()', { setup: function( cytoscape ){ var cy = cytoscape({ elements: require('./graphs/gal') }); eles = cy.elements(); return cy; } }); suite .add( function( cy ) { eles.pageRank({}); }) ; module.exports = suite; ================================================ FILE: benchmark/same.js ================================================ var Suite = require('./suite'); var a, b; var suite = new Suite('eles.same()', { setup: function( cytoscape ){ var cy = cytoscape({ elements: require('./graphs/gal') }); a = cy.nodes(); b = cy.nodes(); return cy; } }); suite .add( function( cy ) { a.same(b); }) ; module.exports = suite; ================================================ FILE: benchmark/selector-filter.js ================================================ var Suite = require('./suite'); var eles; var suite = new Suite('eles.filter(selector)', { setup: function( cytoscape ){ var cy = cytoscape({ elements: require('./graphs/gal') }); eles = cy.nodes(); return cy; } }); suite .add( function( cy ) { // n.b. // - use a selector that matches all nodes so we really compare the selector matching rather than letting the matches exit early // - only create one selector : compare matching perf, not creation perf eles.filter('node:unselected:grabbable[gal80Rexp > 0][SUID > 0][Stress >= 5][AverageShortestPathLength > 0]'); }) ; module.exports = suite; ================================================ FILE: benchmark/single/index.js ================================================ // set this to run just a single suite via `npm run benchmark:single` // (useful when working on a specific function) var suite = require('../collection-creation'); suite.run({ async: true }); ================================================ FILE: benchmark/suite/index.js ================================================ var Benchmark = require('benchmark'); var newCytoscape = require('../../build/cytoscape.cjs.js'); var oldCytoscape = require('../../build/cytoscape.benchmark.js'); global.newCytoscape = newCytoscape; global.oldCytoscape = oldCytoscape; function Suite( name, suiteOpts ){ suiteOpts = suiteOpts || {}; var suite = new Benchmark.Suite( name, suiteOpts ); var suiteAdd = suite.add; suite.on('start', function(){ console.log('Starting benchmark:', suite.name); // eslint-disable-line no-console }); suite.on('cycle', function(event) { console.log(String(event.target)); // eslint-disable-line no-console }); suite.on('complete', function(){ console.log( 'Fastest is:' ,this.filter('fastest').map('name')[0] ); // eslint-disable-line no-console }); suite.add = function( fn ){ global.setup = suiteOpts.setup || function( cytoscape ){ return cytoscape(); }; global.teardown = suiteOpts.teardown || function( cy ){ if( cy && cy.destroy ){ cy.destroy(); } }; global.fn = fn; suiteAdd.apply( suite, [ name + '::old', function(){ return fn( global.cy ); }, { setup: function(){ global.cy = setup( oldCytoscape ); }, teardown: function(){ teardown( global.cy ); } } ] ); suiteAdd.apply( suite, [ name + '::new', function(){ return fn( global.cy ); }, { setup: function(){ global.cy = setup( newCytoscape ); }, teardown: function(){ teardown( global.cy ); } } ] ); return this; // chaining }; return suite; } module.exports = Suite; ================================================ FILE: bower.json ================================================ { "name": "cytoscape", "license": "MIT", "description": "Graph theory (a.k.a. network) library for analysis and visualisation", "homepage": "http://js.cytoscape.org", "repository": { "type": "git", "url": "https://github.com/cytoscape/cytoscape.js.git" }, "authors": [ { "name": "Max Franz", "email": "maxkfranz@gmail.com", "homepage": "http://maxfranz.com" }, { "name": "Christian Lopes", "email": "chrtannus@gmail.com" }, { "name": "Yue Dong", "email": "oryato@gmail.com" }, { "name": "Onur Sumer", "email": "s.onur.sumer@gmail.com" }, { "name": "Gerardo Huck", "email": "gerardohuck@gmail.com" }, { "name": "Alexandr Truhin (bumbu)", "email": "bmbalex@gmail.com" } ], "keywords": [ "graph", "graph-theory", "network", "node", "edge", "vertex", "link", "analysis", "visualisation", "visualization", "requirejs", "amd", "commonjs", "node", "npm", "nodejs", "bower", "jquery" ], "main": "dist/cytoscape.umd.js", "ignore": [ "documentation", "src", "test", "debug", "gulpfile.js", "package.json", "CONTRIBUTING.md", "build", "node_modules" ] } ================================================ FILE: debug/FileSaver.js ================================================ (function (global, factory) { if (typeof define === "function" && define.amd) { define([], factory); } else if (typeof exports !== "undefined") { factory(); } else { var mod = { exports: {} }; factory(); global.FileSaver = mod.exports; } })(this, function () { "use strict"; /* * FileSaver.js * A saveAs() FileSaver implementation. * * By Eli Grey, http://eligrey.com * * License : https://github.com/eligrey/FileSaver.js/blob/master/LICENSE.md (MIT) * source : http://purl.eligrey.com/github/FileSaver.js */ // The one and only way of getting global scope in all environments // https://stackoverflow.com/q/3277182/1008999 var _global = typeof window === 'object' && window.window === window ? window : typeof self === 'object' && self.self === self ? self : typeof global === 'object' && global.global === global ? global : void 0; function bom(blob, opts) { if (typeof opts === 'undefined') opts = { autoBom: false };else if (typeof opts !== 'object') { console.warn('Deprecated: Expected third argument to be a object'); opts = { autoBom: !opts }; } // prepend BOM for UTF-8 XML and text/* types (including HTML) // note: your browser will automatically convert UTF-16 U+FEFF to EF BB BF if (opts.autoBom && /^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(blob.type)) { return new Blob([String.fromCharCode(0xFEFF), blob], { type: blob.type }); } return blob; } function download(url, name, opts) { var xhr = new XMLHttpRequest(); xhr.open('GET', url); xhr.responseType = 'blob'; xhr.onload = function () { saveAs(xhr.response, name, opts); }; xhr.onerror = function () { console.error('could not download file'); }; xhr.send(); } function corsEnabled(url) { var xhr = new XMLHttpRequest(); // use sync to avoid popup blocker xhr.open('HEAD', url, false); xhr.send(); return xhr.status >= 200 && xhr.status <= 299; } // `a.click()` doesn't work for all browsers (#465) function click(node) { try { node.dispatchEvent(new MouseEvent('click')); } catch (e) { var evt = document.createEvent('MouseEvents'); evt.initMouseEvent('click', true, true, window, 0, 0, 0, 80, 20, false, false, false, false, 0, null); node.dispatchEvent(evt); } } var saveAs = _global.saveAs || // probably in some web worker typeof window !== 'object' || window !== _global ? function saveAs() {} /* noop */ // Use download attribute first if possible (#193 Lumia mobile) : 'download' in HTMLAnchorElement.prototype ? function saveAs(blob, name, opts) { var URL = _global.URL || _global.webkitURL; var a = document.createElement('a'); name = name || blob.name || 'download'; a.download = name; a.rel = 'noopener'; // tabnabbing // TODO: detect chrome extensions & packaged apps // a.target = '_blank' if (typeof blob === 'string') { // Support regular links a.href = blob; if (a.origin !== location.origin) { corsEnabled(a.href) ? download(blob, name, opts) : click(a, a.target = '_blank'); } else { click(a); } } else { // Support blobs a.href = URL.createObjectURL(blob); setTimeout(function () { URL.revokeObjectURL(a.href); }, 4E4); // 40s setTimeout(function () { click(a); }, 0); } } // Use msSaveOrOpenBlob as a second approach : 'msSaveOrOpenBlob' in navigator ? function saveAs(blob, name, opts) { name = name || blob.name || 'download'; if (typeof blob === 'string') { if (corsEnabled(blob)) { download(blob, name, opts); } else { var a = document.createElement('a'); a.href = blob; a.target = '_blank'; setTimeout(function () { click(a); }); } } else { navigator.msSaveOrOpenBlob(bom(blob, opts), name); } } // Fallback to using FileReader and a popup : function saveAs(blob, name, opts, popup) { // Open a popup immediately do go around popup blocker // Mostly only avalible on user interaction and the fileReader is async so... popup = popup || open('', '_blank'); if (popup) { popup.document.title = popup.document.body.innerText = 'downloading...'; } if (typeof blob === 'string') return download(blob, name, opts); var force = blob.type === 'application/octet-stream'; var isSafari = /constructor/i.test(_global.HTMLElement) || _global.safari; var isChromeIOS = /CriOS\/[\d]+/.test(navigator.userAgent); if ((isChromeIOS || force && isSafari) && typeof FileReader === 'object') { // Safari doesn't allow downloading of blob urls var reader = new FileReader(); reader.onloadend = function () { var url = reader.result; url = isChromeIOS ? url : url.replace(/^data:[^;]*;/, 'data:attachment/file;'); if (popup) popup.location.href = url;else location = url; popup = null; // reverse-tabnabbing #460 }; reader.readAsDataURL(blob); } else { var URL = _global.URL || _global.webkitURL; var url = URL.createObjectURL(blob); if (popup) popup.location = url;else location.href = url; popup = null; // reverse-tabnabbing #460 setTimeout(function () { URL.revokeObjectURL(url); }, 4E4); // 40s } }; _global.saveAs = saveAs.saveAs = saveAs; if (typeof module !== 'undefined') { module.exports = saveAs; } }); ================================================ FILE: debug/add-remove.js ================================================ /* global $, cy, */ (function(){ var idCounter = 0; function makeId(){ return 'ele' + ( ++idCounter ); } function number(group){ var input = $('#' + group + '-number'); var val = parseInt( input.value ); if( isNaN(val) ){ return 0; } return val; } function time(callback){ var start = new Date(); callback(); var end = new Date(); $('#add-remove-time').innerHTML = ( (end - start) + ' ms' ); } $('#add-elements-button').addEventListener('click', function(){ var n = number('nodes'); var e = number('edges'); var width = cy.width(); var height = cy.height(); var nodes = []; for(var i = 0; i < n; i++){ nodes.push({ group: 'nodes', data: { id: makeId(), weight: Math.round( Math.random() * 100 ) }, position: { x: Math.random() * width, y: Math.random() * height } }); } function randNodeId(){ return nodes[ Math.round(Math.random() * (nodes.length - 1)) ].data.id; } var edges = []; for(var i = 0; i < e; i++){ edges.push({ group: 'edges', data: { id: makeId(), weight: Math.round( Math.random() * 100 ), source: randNodeId(), target: randNodeId() } }); } var eles = { nodes: nodes, edges: edges }; time(function(){ cy.add( eles ); }); }); $('#remove-selected-button').addEventListener('click', function(){ var eles = cy.elements(':selected'); time(function(){ eles.remove(); }); }); })(); ================================================ FILE: debug/bind.js ================================================ /* global $, notify, cy */ $("#bind-button").addEventListener('click', function(){ var action = $("#bind-type-select").value; var event = $("#bind-event-select").value; var selector = $("#bind-selector").value; var delegate = $("#bind-delegate").value; notify('Binding applied', action + ' on `' + selector + '` for `' + event + '` with delegate `' + delegate + '`' ); var callback = function(){ var title = 'Event triggered for ' + this.data("id"); var text = action + ' on `' + selector + '` for ' + event + '` with delegate `' + delegate + '`'; notify( title, text ); }; if( action == "unbind" || action == "off" ){ callback = undefined; } if( event == "" ){ event = undefined; } var args = []; if( event ){ args.push(event); } if( delegate ){ args.push(delegate); } if( callback ){ args.push(callback); } var eles = cy.elements(selector); eles[action].apply( eles, args ); }); $("#core-bind-button").addEventListener('click', function(){ var action = $("#core-bind-type-select").value; var event = $("#core-bind-event-select").value; var delegate = $("#core-bind-delegate").value; var target = "core"; notify( 'Binding applied', action + ' on ' + target + ' for `' + event + '`' + '` with delegate `' + delegate + '`' ); var callback = function(){ var title = 'Event triggered for core'; var text = '`' + action + '` on ' + target + ' for `' + event + '`' + '` with delegate `' + delegate + '`'; notify( title, text ); }; if( action == "unbind" || action == "off" ){ callback = undefined; } if( event == "" ){ event = undefined; } var args = []; if( event ){ args.push(event); } if( delegate ){ args.push(delegate); } if( callback ){ args.push(callback); } cy[action].apply( cy, args ); }); ================================================ FILE: debug/compound.js ================================================ /* global cy, loadCompoundGraph, $ */ var loadCompoundGraph = function(){ cy.elements().remove(); cy.add({ nodes: [{ data: { id: 'n8', parent: 'n4' } }, { data: { id: 'n9', parent: 'n4' } }, { data: { id: 'n4', parent: 'n1' } }, { data: { id: 'n5', parent: 'n1', shape: 'triangle' } }, { data: { id: 'n1' } }, { data: { id: 'n2' } }, { data: { id: 'node-really-long-name-6', parent: 'n2' } }, { data: { id: 'n7', parent: 'n2', shape: 'square' } }, { data: { id: 'n3', parent: 'non-auto', shape: 'rectangle' } }, { data: { id: 'non-auto'}}], edges: [ { data: { id: 'e1', source: 'n1', target: 'n3' } }, { data: { id: 'e2', source: 'n3', target: 'n7' } }, { data: { id: 'e3', source: 'node-really-long-name-6', target: 'n7' } }, { data: { id: 'e4', source: 'node-really-long-name-6', target: 'n9' } }, { data: { id: 'e5', source: 'n8', target: 'n9' } }, { data: { id: 'e6', source: 'n5', target: 'n8' } }, { data: { id: 'e7', source: 'n2', target: 'n4' } }, { data: { id: 'e8', source: 'n8', target: 'n8' } }, { data: { id: 'e9', source: 'n1', target: 'n1' } }, { data: { id: 'e10', source: 'n1', target: 'n9' } }, { data: { id: 'e11', source: 'n4', target: 'n1' } } ] }); cy.layout({ name: 'grid', cols: 3 }).run(); }; $('#load-compound').addEventListener('click', loadCompoundGraph); ================================================ FILE: debug/filter.js ================================================ /* global $, cy */ (function(){ function selectFromFilter(){ var selector = $("#filter-selector").value; var toSelect = cy.elements(selector); toSelect.select(); cy.elements().not(toSelect).unselect(); } $("#filter-button").addEventListener('click', function(){ selectFromFilter(); }); $("#filter-selector").addEventListener("keydown", function(e){ if( e.which == 13 ){ selectFromFilter(); } }); })(); ================================================ FILE: debug/gal.json ================================================ { "nodes" : [ { "data" : { "id" : "392", "degree_layout" : 1, "gal80Rexp" : 0.292, "gal1RGsig" : 9.1177E-4, "Eccentricity" : 26, "gal4RGsig" : 3.5692E-6, "shared_name" : "YKR026C", "TopologicalCoefficient" : 0.0, "SUID" : 392, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 15.37096774, "selected" : false, "gal80Rsig" : 0.011229, "ClosenessCentrality" : 0.06505771, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.46774194, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.154, "name" : "YKR026C", "COMMON" : "GCN3", "gal4RGexp" : -0.501, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "391", "degree_layout" : 3, "gal80Rexp" : 0.187, "gal1RGsig" : 8.7295E-4, "Eccentricity" : 25, "gal4RGsig" : 0.61707, "shared_name" : "YGL122C", "TopologicalCoefficient" : 0.33333333, "SUID" : 391, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 14.375, "selected" : false, "gal80Rsig" : 0.0059966, "ClosenessCentrality" : 0.06956522, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.50462963, "Stress" : 5902, "BetweennessCentrality" : 0.02406295, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.174, "name" : "YGL122C", "COMMON" : "NAB2", "gal4RGexp" : 0.02, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.66666667 } }, { "data" : { "id" : "390", "degree_layout" : 1, "gal80Rexp" : -0.018, "gal1RGsig" : 0.61381, "Eccentricity" : 2, "gal4RGsig" : 0.9794, "shared_name" : "YGR218W", "TopologicalCoefficient" : 0.0, "SUID" : 390, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.66666667, "selected" : false, "gal80Rsig" : 0.80969, "ClosenessCentrality" : 0.6, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66666667, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.018, "name" : "YGR218W", "COMMON" : "CRM1", "gal4RGexp" : -0.001, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "389", "degree_layout" : 3, "gal80Rexp" : 0.008, "gal1RGsig" : 0.0021913, "Eccentricity" : 1, "gal4RGsig" : 0.0022461, "shared_name" : "YGL097W", "TopologicalCoefficient" : 0.0, "SUID" : 389, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.93826, "ClosenessCentrality" : 1.0, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 6, "BetweennessCentrality" : 1.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.16, "name" : "YGL097W", "COMMON" : "SRM1", "gal4RGexp" : -0.23, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "388", "degree_layout" : 1, "gal80Rexp" : -0.91, "gal1RGsig" : 0.39944, "Eccentricity" : 2, "gal4RGsig" : 0.31268, "shared_name" : "YOR204W", "TopologicalCoefficient" : 0.0, "SUID" : 388, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.66666667, "selected" : false, "gal80Rsig" : 8.349E-16, "ClosenessCentrality" : 0.6, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66666667, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.033, "name" : "YOR204W", "COMMON" : "DED1", "gal4RGexp" : -0.056, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "387", "degree_layout" : 2, "gal80Rexp" : -0.769, "gal1RGsig" : 2.713E-8, "Eccentricity" : 2, "gal4RGsig" : 0.04747, "shared_name" : "YLR249W", "TopologicalCoefficient" : 1.0, "SUID" : 387, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.33333333, "selected" : false, "gal80Rsig" : 0.035939, "ClosenessCentrality" : 0.75, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.83333333, "Stress" : 2, "BetweennessCentrality" : 0.16666667, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.39, "name" : "YLR249W", "COMMON" : "YEF3", "gal4RGexp" : -0.394, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "386", "degree_layout" : 2, "gal80Rexp" : -0.278, "gal1RGsig" : 9.8725E-4, "Eccentricity" : 2, "gal4RGsig" : 0.89728, "shared_name" : "YPR080W", "TopologicalCoefficient" : 1.0, "SUID" : 386, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.33333333, "selected" : false, "gal80Rsig" : 6.7798E-4, "ClosenessCentrality" : 0.75, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.83333333, "Stress" : 2, "BetweennessCentrality" : 0.16666667, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.138, "name" : "YPR080W", "COMMON" : "TEF1", "gal4RGexp" : 0.009, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "385", "degree_layout" : 2, "gal80Rexp" : 0.044, "gal1RGsig" : 0.053125, "Eccentricity" : 2, "gal4RGsig" : 0.15497, "shared_name" : "YBR118W", "TopologicalCoefficient" : 1.0, "SUID" : 385, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.33333333, "selected" : false, "gal80Rsig" : 0.54556, "ClosenessCentrality" : 0.75, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.83333333, "Stress" : 2, "BetweennessCentrality" : 0.16666667, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.074, "name" : "YBR118W", "COMMON" : "TEF2", "gal4RGexp" : -0.063, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "384", "degree_layout" : 1, "gal80Rexp" : -0.128, "gal1RGsig" : 1.7601E-5, "Eccentricity" : 2, "gal4RGsig" : 6.7968E-4, "shared_name" : "YLR293C", "TopologicalCoefficient" : 0.0, "SUID" : 384, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.66666667, "selected" : false, "gal80Rsig" : 0.012703, "ClosenessCentrality" : 0.6, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66666667, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.242, "name" : "YLR293C", "COMMON" : "GSP1", "gal4RGexp" : -0.247, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "383", "degree_layout" : 1, "gal80Rexp" : -0.151, "gal1RGsig" : 0.30844, "Eccentricity" : 19, "gal4RGsig" : 0.0085173, "shared_name" : "YMR146C", "TopologicalCoefficient" : 0.0, "SUID" : 383, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 10.81048387, "selected" : false, "gal80Rsig" : 0.072007, "ClosenessCentrality" : 0.0925028, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.63664875, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.05, "name" : "YMR146C", "COMMON" : "TIF34", "gal4RGexp" : -0.143, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "382", "degree_layout" : 3, "gal80Rexp" : 0.354, "gal1RGsig" : 0.072655, "Eccentricity" : 18, "gal4RGsig" : 0.0011724, "shared_name" : "YDR429C", "TopologicalCoefficient" : 0.33333333, "SUID" : 382, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 9.81451613, "selected" : false, "gal80Rsig" : 1.6643E-5, "ClosenessCentrality" : 0.10188989, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.67353644, "Stress" : 4106, "BetweennessCentrality" : 0.02250902, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.078, "name" : "YDR429C", "COMMON" : "TIF35", "gal4RGexp" : -0.209, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "381", "degree_layout" : 5, "gal80Rexp" : 0.124, "gal1RGsig" : 0.0017854, "Eccentricity" : 19, "gal4RGsig" : 0.0055302, "shared_name" : "YFL017C", "TopologicalCoefficient" : 0.2, "SUID" : 381, "SelfLoops" : 0, "NumberOfDirectedEdges" : 5, "AverageShortestPathLength" : 9.45564516, "selected" : false, "gal80Rsig" : 0.050323, "ClosenessCentrality" : 0.10575693, "Degree" : 5, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.68682796, "Stress" : 6282, "BetweennessCentrality" : 0.0426128, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.131, "name" : "YFL017C", "COMMON" : "GNA1", "gal4RGexp" : 0.122, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.6 } }, { "data" : { "id" : "380", "degree_layout" : 2, "gal80Rexp" : -0.146, "gal1RGsig" : 0.0018696, "Eccentricity" : 2, "gal4RGsig" : 6.2814E-4, "shared_name" : "YAL003W", "TopologicalCoefficient" : 1.0, "SUID" : 380, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.33333333, "selected" : false, "gal80Rsig" : 0.013062, "ClosenessCentrality" : 0.75, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.83333333, "Stress" : 2, "BetweennessCentrality" : 0.16666667, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.157, "name" : "YAL003W", "COMMON" : "EFB1", "gal4RGexp" : -0.2, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "379", "degree_layout" : 2, "gal80Rexp" : -0.036, "gal1RGsig" : 9.8446E-6, "Eccentricity" : 26, "gal4RGsig" : 0.0050114, "shared_name" : "YOL123W", "TopologicalCoefficient" : 0.5, "SUID" : 379, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 15.36290323, "selected" : false, "gal80Rsig" : 0.59496, "ClosenessCentrality" : 0.06509186, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.46804062, "Stress" : 1970, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.245, "name" : "YOL123W", "COMMON" : "HRP1", "gal4RGexp" : 0.126, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "378", "degree_layout" : 1, "gal80Rexp" : 0.281, "gal1RGsig" : 0.0013639, "Eccentricity" : 27, "gal4RGsig" : 0.0040902, "shared_name" : "YGL044C", "TopologicalCoefficient" : 0.0, "SUID" : 378, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 16.35887097, "selected" : false, "gal80Rsig" : 0.0057448, "ClosenessCentrality" : 0.06112891, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.43115293, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.162, "name" : "YGL044C", "COMMON" : "RNA15", "gal4RGexp" : -0.211, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "377", "degree_layout" : 1, "gal80Rexp" : 0.623, "gal1RGsig" : 0.0019352, "Eccentricity" : 3, "gal4RGsig" : 5.2826E-6, "shared_name" : "YPL211W", "TopologicalCoefficient" : 0.0, "SUID" : 377, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.0, "selected" : false, "gal80Rsig" : 1.5609E-4, "ClosenessCentrality" : 0.5, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66666667, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.231, "name" : "YPL211W", "COMMON" : "NIP7", "gal4RGexp" : -0.504, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "376", "degree_layout" : 3, "gal80Rexp" : -0.171, "gal1RGsig" : 0.093717, "Eccentricity" : 2, "gal4RGsig" : 0.01294, "shared_name" : "YGR014W", "TopologicalCoefficient" : 0.66666667, "SUID" : 376, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 1.25, "selected" : false, "gal80Rsig" : 0.031836, "ClosenessCentrality" : 0.8, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.91666667, "Stress" : 10, "BetweennessCentrality" : 0.58333333, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.066, "name" : "YGR014W", "COMMON" : "MSB2", "gal4RGexp" : -0.131, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.66666667 } }, { "data" : { "id" : "375", "degree_layout" : 2, "gal80Rexp" : 0.46, "gal1RGsig" : 0.21701, "Eccentricity" : 2, "gal4RGsig" : 0.0092841, "shared_name" : "YJL030W", "TopologicalCoefficient" : 0.75, "SUID" : 375, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 0.0045437, "ClosenessCentrality" : 0.66666667, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.83333333, "Stress" : 4, "BetweennessCentrality" : 0.16666667, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.08, "name" : "YJL030W", "COMMON" : "MAD2", "gal4RGexp" : -0.271, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "374", "degree_layout" : 2, "gal80Rexp" : -0.208, "gal1RGsig" : 2.3655E-9, "Eccentricity" : 3, "gal4RGsig" : 0.020857, "shared_name" : "YGL229C", "TopologicalCoefficient" : 1.0, "SUID" : 374, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.75, "selected" : false, "gal80Rsig" : 0.28721, "ClosenessCentrality" : 0.57142857, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75, "Stress" : 2, "BetweennessCentrality" : 0.08333333, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.521, "name" : "YGL229C", "COMMON" : "SAP4", "gal4RGexp" : 0.171, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "373", "degree_layout" : 2, "gal80Rexp" : 0.084, "gal1RGsig" : 0.14469, "Eccentricity" : 2, "gal4RGsig" : 0.046575, "shared_name" : "YJL013C", "TopologicalCoefficient" : 0.75, "SUID" : 373, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 0.52778, "ClosenessCentrality" : 0.66666667, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.83333333, "Stress" : 4, "BetweennessCentrality" : 0.16666667, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.072, "name" : "YJL013C", "COMMON" : "MAD3", "gal4RGexp" : -0.154, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "372", "degree_layout" : 1, "gal80Rexp" : -0.34, "gal1RGsig" : 0.039575, "Eccentricity" : 21, "gal4RGsig" : 0.43554, "shared_name" : "YGR203W", "TopologicalCoefficient" : 0.0, "SUID" : 372, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.56854839, "selected" : false, "gal80Rsig" : 0.22451, "ClosenessCentrality" : 0.10450906, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.68264636, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.141, "name" : "YGR203W", "COMMON" : "YGR203W", "gal4RGexp" : -0.085, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "371", "degree_layout" : 5, "gal80Rexp" : 0.181, "gal1RGsig" : 0.013072, "Eccentricity" : 20, "gal4RGsig" : 4.9035E-4, "shared_name" : "YIL061C", "TopologicalCoefficient" : 0.2, "SUID" : 371, "SelfLoops" : 0, "NumberOfDirectedEdges" : 5, "AverageShortestPathLength" : 8.57258065, "selected" : false, "gal80Rsig" : 0.28119, "ClosenessCentrality" : 0.11665099, "Degree" : 5, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71953405, "Stress" : 70312, "BetweennessCentrality" : 0.15820029, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.165, "name" : "YIL061C", "COMMON" : "SNP1", "gal4RGexp" : -0.635, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.8 } }, { "data" : { "id" : "370", "degree_layout" : 2, "gal80Rexp" : -0.091, "gal1RGsig" : 0.28551, "Eccentricity" : 17, "gal4RGsig" : 1.832E-4, "shared_name" : "YCR084C", "TopologicalCoefficient" : 0.5, "SUID" : 370, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.79435484, "selected" : false, "gal80Rsig" : 0.69411, "ClosenessCentrality" : 0.12829798, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74835723, "Stress" : 1038, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.044, "name" : "YCR084C", "COMMON" : "TUP1", "gal4RGexp" : 0.704, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.5 } }, { "data" : { "id" : "369", "degree_layout" : 1, "gal80Rexp" : 0.077, "gal1RGsig" : 0.009167, "Eccentricity" : 18, "gal4RGsig" : 0.92034, "shared_name" : "YBR112C", "TopologicalCoefficient" : 0.0, "SUID" : 369, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.79032258, "selected" : false, "gal80Rsig" : 0.17771, "ClosenessCentrality" : 0.11376147, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71146953, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.108, "name" : "YBR112C", "COMMON" : "SSN6", "gal4RGexp" : -0.004, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "368", "degree_layout" : 6, "gal80Rexp" : 0.301, "gal1RGsig" : 0.0012873, "Eccentricity" : 16, "gal4RGsig" : 0.11481, "shared_name" : "YCL067C", "TopologicalCoefficient" : 0.26315789, "SUID" : 368, "SelfLoops" : 0, "NumberOfDirectedEdges" : 6, "AverageShortestPathLength" : 6.80645161, "selected" : false, "gal80Rsig" : 0.0027555, "ClosenessCentrality" : 0.14691943, "Degree" : 6, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.26666667, "Radiality" : 0.78494624, "Stress" : 2084, "BetweennessCentrality" : 0.01614536, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.169, "name" : "YCL067C", "COMMON" : "ALPHA2", "gal4RGexp" : -0.085, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.16666667 } }, { "data" : { "id" : "367", "degree_layout" : 2, "gal80Rexp" : 0.151, "gal1RGsig" : 7.0527E-5, "Eccentricity" : 26, "gal4RGsig" : 0.0037591, "shared_name" : "YER112W", "TopologicalCoefficient" : 1.0, "SUID" : 367, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 13.09274194, "selected" : false, "gal80Rsig" : 0.13653, "ClosenessCentrality" : 0.0763782, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.55212067, "Stress" : 2, "BetweennessCentrality" : 8.16E-6, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.193, "name" : "YER112W", "COMMON" : "LSM4", "gal4RGexp" : -0.181, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "366", "degree_layout" : 4, "gal80Rexp" : -0.243, "gal1RGsig" : 2.7303E-6, "Eccentricity" : 25, "gal4RGsig" : 1.0533E-4, "shared_name" : "YOR167C", "TopologicalCoefficient" : 0.375, "SUID" : 366, "SelfLoops" : 0, "NumberOfDirectedEdges" : 4, "AverageShortestPathLength" : 12.10483871, "selected" : false, "gal80Rsig" : 4.8633E-5, "ClosenessCentrality" : 0.08261159, "Degree" : 4, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.58870968, "Stress" : 8136, "BetweennessCentrality" : 0.01199882, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.374, "name" : "YOR167C", "COMMON" : "RPS28A", "gal4RGexp" : -0.239, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.25 } }, { "data" : { "id" : "365", "degree_layout" : 7, "gal80Rexp" : 0.294, "gal1RGsig" : 0.6011, "Eccentricity" : 24, "gal4RGsig" : 0.070701, "shared_name" : "YJR022W", "TopologicalCoefficient" : 0.19642857, "SUID" : 365, "SelfLoops" : 0, "NumberOfDirectedEdges" : 7, "AverageShortestPathLength" : 11.13306452, "selected" : false, "gal80Rsig" : 0.14344, "ClosenessCentrality" : 0.08982253, "Degree" : 7, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.62470131, "Stress" : 47386, "BetweennessCentrality" : 0.12017603, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.059, "name" : "YJR022W", "COMMON" : "LSM8", "gal4RGexp" : -0.435, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.57142857 } }, { "data" : { "id" : "364", "degree_layout" : 2, "gal80Rexp" : 0.647, "gal1RGsig" : 1.1825E-5, "Eccentricity" : 25, "gal4RGsig" : 0.0089039, "shared_name" : "YNR050C", "TopologicalCoefficient" : 0.5, "SUID" : 364, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 12.10483871, "selected" : false, "gal80Rsig" : 1.1773E-7, "ClosenessCentrality" : 0.08261159, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.58870968, "Stress" : 8154, "BetweennessCentrality" : 0.02399765, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.223, "name" : "YNR050C", "COMMON" : "LYS9", "gal4RGexp" : -0.131, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "363", "degree_layout" : 1, "gal80Rexp" : 0.594, "gal1RGsig" : 1.425E-5, "Eccentricity" : 25, "gal4RGsig" : 0.0031926, "shared_name" : "YNL050C", "TopologicalCoefficient" : 0.0, "SUID" : 363, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 12.12903226, "selected" : false, "gal80Rsig" : 7.5124E-4, "ClosenessCentrality" : 0.08244681, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.58781362, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.301, "name" : "YNL050C", "COMMON" : "YNL050C", "gal4RGexp" : -0.448, "IsSingleNode" : false, "NeighborhoodConnectivity" : 7.0 } }, { "data" : { "id" : "362", "degree_layout" : 2, "gal80Rexp" : 0.275, "gal1RGsig" : 3.0657E-5, "Eccentricity" : 23, "gal4RGsig" : 0.0052925, "shared_name" : "YEL015W", "TopologicalCoefficient" : 0.5, "SUID" : 362, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 11.18951613, "selected" : false, "gal80Rsig" : 0.032829, "ClosenessCentrality" : 0.08936937, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.62261051, "Stress" : 9804, "BetweennessCentrality" : 0.04554212, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.222, "name" : "YEL015W", "COMMON" : "YEL015W", "gal4RGexp" : -0.171, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.5 } }, { "data" : { "id" : "361", "degree_layout" : 4, "gal80Rexp" : -0.17, "gal1RGsig" : 1.6086E-4, "Eccentricity" : 25, "gal4RGsig" : 2.0632E-4, "shared_name" : "YLR264W", "TopologicalCoefficient" : 0.375, "SUID" : 361, "SelfLoops" : 0, "NumberOfDirectedEdges" : 4, "AverageShortestPathLength" : 12.10483871, "selected" : false, "gal80Rsig" : 0.21059, "ClosenessCentrality" : 0.08261159, "Degree" : 4, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.58870968, "Stress" : 8136, "BetweennessCentrality" : 0.01199882, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.259, "name" : "YLR264W", "COMMON" : "RPS28B", "gal4RGexp" : -0.299, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.25 } }, { "data" : { "id" : "360", "degree_layout" : 3, "gal80Rexp" : -0.012, "gal1RGsig" : 2.1301E-7, "Eccentricity" : 23, "gal4RGsig" : 0.0048783, "shared_name" : "YNR053C", "TopologicalCoefficient" : 0.33333333, "SUID" : 360, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 10.59274194, "selected" : false, "gal80Rsig" : 0.90581, "ClosenessCentrality" : 0.09440426, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.64471326, "Stress" : 50456, "BetweennessCentrality" : 0.11341401, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.352, "name" : "YNR053C", "COMMON" : "YNR053C", "gal4RGexp" : -0.238, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "359", "degree_layout" : 1, "gal80Rexp" : 0.182, "gal1RGsig" : 0.56099, "Eccentricity" : 22, "gal4RGsig" : 0.18379, "shared_name" : "YER116C", "TopologicalCoefficient" : 0.0, "SUID" : 359, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 10.27419355, "selected" : false, "gal80Rsig" : 0.13915, "ClosenessCentrality" : 0.09733124, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.65651135, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.029, "name" : "YER116C", "COMMON" : "YER116C", "gal4RGexp" : -0.11, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "358", "degree_layout" : 3, "gal80Rexp" : 0.593, "gal1RGsig" : 4.0439E-5, "Eccentricity" : 21, "gal4RGsig" : 0.22129, "shared_name" : "YDL013W", "TopologicalCoefficient" : 0.33333333, "SUID" : 358, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 9.27822581, "selected" : false, "gal80Rsig" : 2.0836E-5, "ClosenessCentrality" : 0.10777923, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.69339904, "Stress" : 60158, "BetweennessCentrality" : 0.13296195, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.214, "name" : "YDL013W", "COMMON" : "HEX3", "gal4RGexp" : 0.073, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "357", "degree_layout" : 2, "gal80Rexp" : -0.063, "gal1RGsig" : 0.27844, "Eccentricity" : 18, "gal4RGsig" : 0.029538, "shared_name" : "YNL307C", "TopologicalCoefficient" : 0.5, "SUID" : 357, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.91532258, "selected" : false, "gal80Rsig" : 0.37572, "ClosenessCentrality" : 0.12633724, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74387694, "Stress" : 614, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.046, "name" : "YNL307C", "COMMON" : "MCK1", "gal4RGexp" : 0.094, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "356", "degree_layout" : 3, "gal80Rexp" : -0.453, "gal1RGsig" : 1.3173E-10, "Eccentricity" : 17, "gal4RGsig" : 0.10377, "shared_name" : "YAL038W", "TopologicalCoefficient" : 0.42592593, "SUID" : 356, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 6.92741935, "selected" : false, "gal80Rsig" : 1.5489E-7, "ClosenessCentrality" : 0.1443539, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78046595, "Stress" : 16638, "BetweennessCentrality" : 0.04462853, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.652, "name" : "YAL038W", "COMMON" : "CDC19", "gal4RGexp" : 0.123, "IsSingleNode" : false, "NeighborhoodConnectivity" : 8.66666667 } }, { "data" : { "id" : "355", "degree_layout" : 17, "gal80Rexp" : 0.234, "gal1RGsig" : 0.024692, "Eccentricity" : 16, "gal4RGsig" : 0.93493, "shared_name" : "YNL216W", "TopologicalCoefficient" : 0.09803922, "SUID" : 355, "SelfLoops" : 0, "NumberOfDirectedEdges" : 17, "AverageShortestPathLength" : 6.29032258, "selected" : false, "gal80Rsig" : 0.54155, "ClosenessCentrality" : 0.15897436, "Degree" : 17, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.80406213, "Stress" : 111754, "BetweennessCentrality" : 0.35844736, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.205, "name" : "YNL216W", "COMMON" : "RAP1", "gal4RGexp" : 0.015, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.88235294 } }, { "data" : { "id" : "354", "degree_layout" : 3, "gal80Rexp" : -0.746, "gal1RGsig" : 7.3129E-10, "Eccentricity" : 17, "gal4RGsig" : 2.4163E-5, "shared_name" : "YCR012W", "TopologicalCoefficient" : 0.42592593, "SUID" : 354, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 6.92741935, "selected" : false, "gal80Rsig" : 4.2315E-13, "ClosenessCentrality" : 0.1443539, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78046595, "Stress" : 16638, "BetweennessCentrality" : 0.04462853, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.668, "name" : "YCR012W", "COMMON" : "PGK1", "gal4RGexp" : 0.329, "IsSingleNode" : false, "NeighborhoodConnectivity" : 8.66666667 } }, { "data" : { "id" : "353", "degree_layout" : 2, "gal80Rexp" : -0.171, "gal1RGsig" : 6.5621E-11, "Eccentricity" : 17, "gal4RGsig" : 0.0079977, "shared_name" : "YGR254W", "TopologicalCoefficient" : 0.64705882, "SUID" : 353, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.94354839, "selected" : false, "gal80Rsig" : 0.025056, "ClosenessCentrality" : 0.14401858, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.77986858, "Stress" : 15414, "BetweennessCentrality" : 0.0285648, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.737, "name" : "YGR254W", "COMMON" : "ENO1", "gal4RGexp" : 0.259, "IsSingleNode" : false, "NeighborhoodConnectivity" : 12.0 } }, { "data" : { "id" : "352", "degree_layout" : 2, "gal80Rexp" : -0.217, "gal1RGsig" : 7.175E-11, "Eccentricity" : 17, "gal4RGsig" : 0.011477, "shared_name" : "YHR174W", "TopologicalCoefficient" : 0.64705882, "SUID" : 352, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.94354839, "selected" : false, "gal80Rsig" : 0.0015357, "ClosenessCentrality" : 0.14401858, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.77986858, "Stress" : 15414, "BetweennessCentrality" : 0.0285648, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.816, "name" : "YHR174W", "COMMON" : "ENO2", "gal4RGexp" : 0.241, "IsSingleNode" : false, "NeighborhoodConnectivity" : 12.0 } }, { "data" : { "id" : "351", "degree_layout" : 2, "gal80Rexp" : -0.146, "gal1RGsig" : 4.6153E-8, "Eccentricity" : 17, "gal4RGsig" : 1.1962E-4, "shared_name" : "YIL133C", "TopologicalCoefficient" : 0.52272727, "SUID" : 351, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.22177419, "selected" : false, "gal80Rsig" : 0.012589, "ClosenessCentrality" : 0.13847013, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.76956392, "Stress" : 9108, "BetweennessCentrality" : 0.03121327, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.453, "name" : "YIL133C", "COMMON" : "RPL16A", "gal4RGexp" : -0.311, "IsSingleNode" : false, "NeighborhoodConnectivity" : 12.5 } }, { "data" : { "id" : "350", "degree_layout" : 3, "gal80Rexp" : -0.184, "gal1RGsig" : 6.9512E-11, "Eccentricity" : 15, "gal4RGsig" : 0.23784, "shared_name" : "YLR044C", "TopologicalCoefficient" : 0.33333333, "SUID" : 350, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 6.1733871, "selected" : false, "gal80Rsig" : 0.0064407, "ClosenessCentrality" : 0.16198563, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.80839307, "Stress" : 82528, "BetweennessCentrality" : 0.2780402, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.62, "name" : "YLR044C", "COMMON" : "PDC1", "gal4RGexp" : -0.071, "IsSingleNode" : false, "NeighborhoodConnectivity" : 10.33333333 } }, { "data" : { "id" : "349", "degree_layout" : 1, "gal80Rexp" : -0.62, "gal1RGsig" : 1.7242E-7, "Eccentricity" : 17, "gal4RGsig" : 3.0221E-4, "shared_name" : "YOL120C", "TopologicalCoefficient" : 0.0, "SUID" : 349, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 7.28629032, "selected" : false, "gal80Rsig" : 3.898E-9, "ClosenessCentrality" : 0.13724405, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.76717443, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.409, "name" : "YOL120C", "COMMON" : "RPL18A", "gal4RGexp" : -0.225, "IsSingleNode" : false, "NeighborhoodConnectivity" : 17.0 } }, { "data" : { "id" : "348", "degree_layout" : 1, "gal80Rexp" : -0.271, "gal1RGsig" : 7.3086E-7, "Eccentricity" : 17, "gal4RGsig" : 1.0721E-4, "shared_name" : "YNL301C", "TopologicalCoefficient" : 0.0, "SUID" : 348, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 7.28629032, "selected" : false, "gal80Rsig" : 1.2267E-5, "ClosenessCentrality" : 0.13724405, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.76717443, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.379, "name" : "YNL301C", "COMMON" : "RPL18B", "gal4RGexp" : -0.245, "IsSingleNode" : false, "NeighborhoodConnectivity" : 17.0 } }, { "data" : { "id" : "347", "degree_layout" : 3, "gal80Rexp" : 0.29, "gal1RGsig" : 3.8988E-11, "Eccentricity" : 17, "gal4RGsig" : 2.3894E-7, "shared_name" : "YCL030C", "TopologicalCoefficient" : 0.33333333, "SUID" : 347, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 6.77822581, "selected" : false, "gal80Rsig" : 0.0016438, "ClosenessCentrality" : 0.14753123, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78599164, "Stress" : 18164, "BetweennessCentrality" : 0.09883491, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -1.067, "name" : "YCL030C", "COMMON" : "HIS4", "gal4RGexp" : -0.898, "IsSingleNode" : false, "NeighborhoodConnectivity" : 9.0 } }, { "data" : { "id" : "346", "degree_layout" : 1, "gal80Rexp" : -0.723, "gal1RGsig" : 8.1757E-7, "Eccentricity" : 17, "gal4RGsig" : 8.7039E-6, "shared_name" : "YDR171W", "TopologicalCoefficient" : 0.0, "SUID" : 346, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 7.28629032, "selected" : false, "gal80Rsig" : 1.4287E-12, "ClosenessCentrality" : 0.13724405, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.76717443, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.31, "name" : "YDR171W", "COMMON" : "HSP42", "gal4RGexp" : 0.3, "IsSingleNode" : false, "NeighborhoodConnectivity" : 17.0 } }, { "data" : { "id" : "345", "degree_layout" : 2, "gal80Rexp" : -0.543, "gal1RGsig" : 2.3291E-7, "Eccentricity" : 17, "gal4RGsig" : 0.088763, "shared_name" : "YBR093C", "TopologicalCoefficient" : 0.5, "SUID" : 345, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.27016129, "selected" : false, "gal80Rsig" : 3.6198E-13, "ClosenessCentrality" : 0.13754853, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.7677718, "Stress" : 2092, "BetweennessCentrality" : 0.01606373, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.704, "name" : "YBR093C", "COMMON" : "PHO5", "gal4RGexp" : 0.075, "IsSingleNode" : false, "NeighborhoodConnectivity" : 9.5 } }, { "data" : { "id" : "344", "degree_layout" : 1, "gal80Rexp" : -0.051, "gal1RGsig" : 1.8517E-5, "Eccentricity" : 17, "gal4RGsig" : 2.1168E-6, "shared_name" : "YER074W", "TopologicalCoefficient" : 0.0, "SUID" : 344, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 7.28629032, "selected" : false, "gal80Rsig" : 0.44216, "ClosenessCentrality" : 0.13724405, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.76717443, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.262, "name" : "YER074W", "COMMON" : "RPS24A", "gal4RGexp" : -0.449, "IsSingleNode" : false, "NeighborhoodConnectivity" : 17.0 } }, { "data" : { "id" : "343", "degree_layout" : 1, "gal80Rexp" : -0.018, "gal1RGsig" : 7.7038E-6, "Eccentricity" : 17, "gal4RGsig" : 1.0186E-6, "shared_name" : "YIL069C", "TopologicalCoefficient" : 0.0, "SUID" : 343, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 7.28629032, "selected" : false, "gal80Rsig" : 0.74944, "ClosenessCentrality" : 0.13724405, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.76717443, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.313, "name" : "YIL069C", "COMMON" : "RPS24B", "gal4RGexp" : -0.467, "IsSingleNode" : false, "NeighborhoodConnectivity" : 17.0 } }, { "data" : { "id" : "342", "degree_layout" : 2, "gal80Rexp" : 0.076, "gal1RGsig" : 4.4813E-4, "Eccentricity" : 17, "gal4RGsig" : 9.2415E-7, "shared_name" : "YOL127W", "TopologicalCoefficient" : 0.52272727, "SUID" : 342, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.22177419, "selected" : false, "gal80Rsig" : 0.17224, "ClosenessCentrality" : 0.13847013, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.76956392, "Stress" : 9108, "BetweennessCentrality" : 0.03121327, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.192, "name" : "YOL127W", "COMMON" : "RPL25", "gal4RGexp" : -0.425, "IsSingleNode" : false, "NeighborhoodConnectivity" : 12.5 } }, { "data" : { "id" : "341", "degree_layout" : 2, "gal80Rexp" : -0.728, "gal1RGsig" : 3.6468E-10, "Eccentricity" : 17, "gal4RGsig" : 0.48903, "shared_name" : "YDR050C", "TopologicalCoefficient" : 0.64705882, "SUID" : 341, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.94354839, "selected" : false, "gal80Rsig" : 8.6735E-12, "ClosenessCentrality" : 0.14401858, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.77986858, "Stress" : 15414, "BetweennessCentrality" : 0.0285648, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.584, "name" : "YDR050C", "COMMON" : "TPI1", "gal4RGexp" : 0.053, "IsSingleNode" : false, "NeighborhoodConnectivity" : 12.0 } }, { "data" : { "id" : "340", "degree_layout" : 2, "gal80Rexp" : -0.322, "gal1RGsig" : 0.0039297, "Eccentricity" : 17, "gal4RGsig" : 3.2186E-4, "shared_name" : "YOL086C", "TopologicalCoefficient" : 0.64705882, "SUID" : 340, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.94354839, "selected" : false, "gal80Rsig" : 1.3104E-5, "ClosenessCentrality" : 0.14401858, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.77986858, "Stress" : 15414, "BetweennessCentrality" : 0.0285648, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.113, "name" : "YOL086C", "COMMON" : "ADH1", "gal4RGexp" : 0.245, "IsSingleNode" : false, "NeighborhoodConnectivity" : 12.0 } }, { "data" : { "id" : "339", "degree_layout" : 2, "gal80Rexp" : 0.003, "gal1RGsig" : 0.18782, "Eccentricity" : 20, "gal4RGsig" : 0.55374, "shared_name" : "YAL030W", "TopologicalCoefficient" : 0.625, "SUID" : 339, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 10.64112903, "selected" : false, "gal80Rsig" : 0.95396, "ClosenessCentrality" : 0.09397499, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.64292115, "Stress" : 602, "BetweennessCentrality" : 0.00401593, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.05, "name" : "YAL030W", "COMMON" : "SNC1", "gal4RGexp" : 0.027, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.5 } }, { "data" : { "id" : "338", "degree_layout" : 2, "gal80Rexp" : 0.179, "gal1RGsig" : 5.6125E-6, "Eccentricity" : 21, "gal4RGsig" : 8.6796E-6, "shared_name" : "YER143W", "TopologicalCoefficient" : 1.0, "SUID" : 338, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 11.62903226, "selected" : false, "gal80Rsig" : 0.018361, "ClosenessCentrality" : 0.08599168, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.60633214, "Stress" : 2, "BetweennessCentrality" : 1.632E-5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.282, "name" : "YER143W", "COMMON" : "DDI1", "gal4RGexp" : 0.255, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "337", "degree_layout" : 2, "gal80Rexp" : 0.559, "gal1RGsig" : 6.9534E-6, "Eccentricity" : 20, "gal4RGsig" : 0.06928, "shared_name" : "YOR327C", "TopologicalCoefficient" : 0.625, "SUID" : 337, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 10.64112903, "selected" : false, "gal80Rsig" : 4.4793E-5, "ClosenessCentrality" : 0.09397499, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.64292115, "Stress" : 602, "BetweennessCentrality" : 0.00401593, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.249, "name" : "YOR327C", "COMMON" : "SNC2", "gal4RGexp" : -0.112, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.5 } }, { "data" : { "id" : "336", "degree_layout" : 1, "gal80Rexp" : 0.359, "gal1RGsig" : 3.7312E-10, "Eccentricity" : 1, "gal4RGsig" : 1.2051E-8, "shared_name" : "YER062C", "TopologicalCoefficient" : 0.0, "SUID" : 336, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 5.8643E-6, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.486, "name" : "YER062C", "COMMON" : "HOR2", "gal4RGexp" : -0.942, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "335", "degree_layout" : 1, "gal80Rexp" : 0.597, "gal1RGsig" : 6.0394E-10, "Eccentricity" : 1, "gal4RGsig" : 8.9209E-7, "shared_name" : "YPL201C", "TopologicalCoefficient" : 0.0, "SUID" : 335, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.0043411, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 2.058, "name" : "YPL201C", "COMMON" : "YPL201C", "gal4RGexp" : 1.18, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "334", "degree_layout" : 7, "gal80Rexp" : 0.991, "gal1RGsig" : 0.27226, "Eccentricity" : 17, "gal4RGsig" : 1.6949E-5, "shared_name" : "YDR412W", "TopologicalCoefficient" : 0.14285714, "SUID" : 334, "SelfLoops" : 0, "NumberOfDirectedEdges" : 7, "AverageShortestPathLength" : 7.13306452, "selected" : false, "gal80Rsig" : 2.4711E-5, "ClosenessCentrality" : 0.1401922, "Degree" : 7, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.77284946, "Stress" : 55770, "BetweennessCentrality" : 0.30517827, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.067, "name" : "YDR412W", "COMMON" : "YDR412W", "gal4RGexp" : -0.641, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.85714286 } }, { "data" : { "id" : "333", "degree_layout" : 2, "gal80Rexp" : 0.381, "gal1RGsig" : 0.32121, "Eccentricity" : 18, "gal4RGsig" : 0.080473, "shared_name" : "YCR086W", "TopologicalCoefficient" : 0.5, "SUID" : 333, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.10483871, "selected" : false, "gal80Rsig" : 0.17239, "ClosenessCentrality" : 0.12338308, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.73685783, "Stress" : 3084, "BetweennessCentrality" : 0.02399765, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.081, "name" : "YCR086W", "COMMON" : "YCR086W", "gal4RGexp" : -0.397, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.5 } }, { "data" : { "id" : "332", "degree_layout" : 3, "gal80Rexp" : 0.173, "gal1RGsig" : 1.959E-4, "Eccentricity" : 18, "gal4RGsig" : 0.013422, "shared_name" : "YGL013C", "TopologicalCoefficient" : 0.38095238, "SUID" : 332, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 8.10483871, "selected" : false, "gal80Rsig" : 0.0945, "ClosenessCentrality" : 0.12338308, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.73685783, "Stress" : 4106, "BetweennessCentrality" : 0.02401397, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.185, "name" : "YGL013C", "COMMON" : "PDR1", "gal4RGexp" : -0.152, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.66666667 } }, { "data" : { "id" : "331", "degree_layout" : 2, "gal80Rexp" : 0.712, "gal1RGsig" : 7.6184E-7, "Eccentricity" : 18, "gal4RGsig" : 0.0048407, "shared_name" : "YLR117C", "TopologicalCoefficient" : 0.5, "SUID" : 331, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.12096774, "selected" : false, "gal80Rsig" : 6.8931E-6, "ClosenessCentrality" : 0.12313803, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.73626045, "Stress" : 1032, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.326, "name" : "YLR117C", "COMMON" : "SYF3", "gal4RGexp" : -0.234, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "330", "degree_layout" : 2, "gal80Rexp" : -0.342, "gal1RGsig" : 3.9246E-6, "Eccentricity" : 16, "gal4RGsig" : 6.2635E-4, "shared_name" : "YPR119W", "TopologicalCoefficient" : 0.5, "SUID" : 330, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.48387097, "selected" : false, "gal80Rsig" : 1.6424E-5, "ClosenessCentrality" : 0.15422886, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.79689367, "Stress" : 54840, "BetweennessCentrality" : 0.29306517, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.234, "name" : "YPR119W", "COMMON" : "CLB2", "gal4RGexp" : -0.279, "IsSingleNode" : false, "NeighborhoodConnectivity" : 12.5 } }, { "data" : { "id" : "329", "degree_layout" : 2, "gal80Rexp" : -0.038, "gal1RGsig" : 0.32352, "Eccentricity" : 1, "gal4RGsig" : 0.012945, "shared_name" : "YDL014W", "TopologicalCoefficient" : 1.0, "SUID" : 329, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.62955, "ClosenessCentrality" : 1.0, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.039, "name" : "YDL014W", "COMMON" : "NOP1", "gal4RGexp" : -0.176, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "328", "degree_layout" : 2, "gal80Rexp" : -0.157, "gal1RGsig" : 0.055533, "Eccentricity" : 1, "gal4RGsig" : 1.7322E-6, "shared_name" : "YOR310C", "TopologicalCoefficient" : 1.0, "SUID" : 328, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.041898, "ClosenessCentrality" : 1.0, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.073, "name" : "YOR310C", "COMMON" : "NOP5", "gal4RGexp" : -0.499, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "327", "degree_layout" : 3, "gal80Rexp" : -0.167, "gal1RGsig" : 1.1807E-4, "Eccentricity" : 16, "gal4RGsig" : 0.36733, "shared_name" : "YER179W", "TopologicalCoefficient" : 0.33333333, "SUID" : 327, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 7.07258065, "selected" : false, "gal80Rsig" : 0.13801, "ClosenessCentrality" : 0.14139111, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.77508961, "Stress" : 9276, "BetweennessCentrality" : 0.04783067, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.219, "name" : "YER179W", "COMMON" : "DMC1", "gal4RGexp" : 0.059, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "326", "degree_layout" : 1, "gal80Rexp" : -0.351, "gal1RGsig" : 1.2585E-11, "Eccentricity" : 17, "gal4RGsig" : 0.58514, "shared_name" : "YLR134W", "TopologicalCoefficient" : 0.0, "SUID" : 326, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.06854839, "selected" : false, "gal80Rsig" : 1.2076E-8, "ClosenessCentrality" : 0.12393803, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.73820191, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.645, "name" : "YLR134W", "COMMON" : "PDC5", "gal4RGexp" : 0.027, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "325", "degree_layout" : 2, "gal80Rexp" : 0.197, "gal1RGsig" : 6.9834E-5, "Eccentricity" : 17, "gal4RGsig" : 0.66796, "shared_name" : "YIL105C", "TopologicalCoefficient" : 0.5, "SUID" : 325, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.97983871, "selected" : false, "gal80Rsig" : 0.016148, "ClosenessCentrality" : 0.12531582, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74148746, "Stress" : 7186, "BetweennessCentrality" : 0.03279541, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.196, "name" : "YIL105C", "COMMON" : "YIL105C", "gal4RGexp" : 0.023, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "324", "degree_layout" : 3, "gal80Rexp" : -0.237, "gal1RGsig" : 0.60784, "Eccentricity" : 18, "gal4RGsig" : 0.11638, "shared_name" : "YOR361C", "TopologicalCoefficient" : 0.46666667, "SUID" : 324, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 9.85483871, "selected" : false, "gal80Rsig" : 0.0031451, "ClosenessCentrality" : 0.101473, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.33333333, "Radiality" : 0.67204301, "Stress" : 4108, "BetweennessCentrality" : 0.01710209, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.02, "name" : "YOR361C", "COMMON" : "PRT1", "gal4RGexp" : -0.085, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.66666667 } }, { "data" : { "id" : "323", "degree_layout" : 3, "gal80Rexp" : -0.123, "gal1RGsig" : 0.82076, "Eccentricity" : 19, "gal4RGsig" : 2.0319E-4, "shared_name" : "YMR309C", "TopologicalCoefficient" : 0.5, "SUID" : 323, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 9.78629032, "selected" : false, "gal80Rsig" : 0.1009, "ClosenessCentrality" : 0.10218377, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.33333333, "Radiality" : 0.67458184, "Stress" : 5122, "BetweennessCentrality" : 0.01979124, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.009, "name" : "YMR309C", "COMMON" : "NIP1", "gal4RGexp" : -0.248, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.33333333 } }, { "data" : { "id" : "322", "degree_layout" : 2, "gal80Rexp" : 0.296, "gal1RGsig" : 5.9183E-9, "Eccentricity" : 2, "gal4RGsig" : 8.2407E-8, "shared_name" : "YOR326W", "TopologicalCoefficient" : 0.5, "SUID" : 322, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 1.1583E-4, "ClosenessCentrality" : 0.66666667, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.83333333, "Stress" : 6, "BetweennessCentrality" : 0.5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.51, "name" : "YOR326W", "COMMON" : "MYO2", "gal4RGexp" : 0.432, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "321", "degree_layout" : 1, "gal80Rexp" : -0.059, "gal1RGsig" : 1.3141E-5, "Eccentricity" : 3, "gal4RGsig" : 9.2389E-6, "shared_name" : "YGL106W", "TopologicalCoefficient" : 0.0, "SUID" : 321, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.25, "selected" : false, "gal80Rsig" : 0.29618, "ClosenessCentrality" : 0.44444444, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.58333333, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.262, "name" : "YGL106W", "COMMON" : "MLC1", "gal4RGexp" : -0.327, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "320", "degree_layout" : 2, "gal80Rexp" : -0.608, "gal1RGsig" : 0.52469, "Eccentricity" : 16, "gal4RGsig" : 0.4995, "shared_name" : "YMR186W", "TopologicalCoefficient" : 0.5625, "SUID" : 320, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.85080645, "selected" : false, "gal80Rsig" : 1.6833E-14, "ClosenessCentrality" : 0.12737545, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74626643, "Stress" : 530, "BetweennessCentrality" : 0.00339559, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.032, "name" : "YMR186W", "COMMON" : "HSC82", "gal4RGexp" : -0.032, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.5 } }, { "data" : { "id" : "319", "degree_layout" : 2, "gal80Rexp" : 0.519, "gal1RGsig" : 0.10014, "Eccentricity" : 17, "gal4RGsig" : 1.5959E-5, "shared_name" : "YBR155W", "TopologicalCoefficient" : 0.75, "SUID" : 319, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.54032258, "selected" : false, "gal80Rsig" : 3.7064E-4, "ClosenessCentrality" : 0.1170916, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.72072879, "Stress" : 82, "BetweennessCentrality" : 6.0402E-4, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.082, "name" : "YBR155W", "COMMON" : "CNS1", "gal4RGexp" : -0.479, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "318", "degree_layout" : 7, "gal80Rexp" : -0.031, "gal1RGsig" : 0.33125, "Eccentricity" : 18, "gal4RGsig" : 0.41727, "shared_name" : "YEL009C", "TopologicalCoefficient" : 0.14285714, "SUID" : 318, "SelfLoops" : 0, "NumberOfDirectedEdges" : 7, "AverageShortestPathLength" : 7.62096774, "selected" : false, "gal80Rsig" : 0.55639, "ClosenessCentrality" : 0.13121693, "Degree" : 7, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75477897, "Stress" : 14390, "BetweennessCentrality" : 0.06299561, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.035, "name" : "YEL009C", "COMMON" : "GCN4", "gal4RGexp" : 0.032, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.57142857 } }, { "data" : { "id" : "317", "degree_layout" : 1, "gal80Rexp" : 0.095, "gal1RGsig" : 0.27002, "Eccentricity" : 19, "gal4RGsig" : 9.4314E-4, "shared_name" : "YMR108W", "TopologicalCoefficient" : 0.0, "SUID" : 317, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.61693548, "selected" : false, "gal80Rsig" : 0.14717, "ClosenessCentrality" : 0.11605054, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71789128, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.04, "name" : "YMR108W", "COMMON" : "ILV2", "gal4RGexp" : -0.358, "IsSingleNode" : false, "NeighborhoodConnectivity" : 7.0 } }, { "data" : { "id" : "316", "degree_layout" : 2, "gal80Rexp" : 0.239, "gal1RGsig" : 0.010979, "Eccentricity" : 17, "gal4RGsig" : 1.7979E-4, "shared_name" : "YOR202W", "TopologicalCoefficient" : 0.5, "SUID" : 316, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.78225806, "selected" : false, "gal80Rsig" : 0.0054895, "ClosenessCentrality" : 0.12849741, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74880526, "Stress" : 1810, "BetweennessCentrality" : 0.00612624, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.432, "name" : "YOR202W", "COMMON" : "HIS3", "gal4RGexp" : -0.71, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.5 } }, { "data" : { "id" : "315", "degree_layout" : 1, "gal80Rexp" : 0.898, "gal1RGsig" : 2.3151E-6, "Eccentricity" : 19, "gal4RGsig" : 1.6549E-7, "shared_name" : "YBR248C", "TopologicalCoefficient" : 0.0, "SUID" : 315, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.61693548, "selected" : false, "gal80Rsig" : 3.3047E-5, "ClosenessCentrality" : 0.11605054, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71789128, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.258, "name" : "YBR248C", "COMMON" : "HIS7", "gal4RGexp" : -1.252, "IsSingleNode" : false, "NeighborhoodConnectivity" : 7.0 } }, { "data" : { "id" : "314", "degree_layout" : 2, "gal80Rexp" : -0.815, "gal1RGsig" : 4.9342E-6, "Eccentricity" : 17, "gal4RGsig" : 4.0958E-7, "shared_name" : "YOL058W", "TopologicalCoefficient" : 0.5, "SUID" : 314, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.87096774, "selected" : false, "gal80Rsig" : 5.9432E-10, "ClosenessCentrality" : 0.12704918, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74551971, "Stress" : 6768, "BetweennessCentrality" : 0.02615237, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.652, "name" : "YOL058W", "COMMON" : "ARG1", "gal4RGexp" : -0.541, "IsSingleNode" : false, "NeighborhoodConnectivity" : 6.0 } }, { "data" : { "id" : "313", "degree_layout" : 1, "gal80Rexp" : 1.202, "gal1RGsig" : 1.522E-9, "Eccentricity" : 19, "gal4RGsig" : 1.4734E-8, "shared_name" : "YMR300C", "TopologicalCoefficient" : 0.0, "SUID" : 313, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.61693548, "selected" : false, "gal80Rsig" : 4.7716E-11, "ClosenessCentrality" : 0.11605054, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71789128, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.514, "name" : "YMR300C", "COMMON" : "ADE4", "gal4RGexp" : -1.296, "IsSingleNode" : false, "NeighborhoodConnectivity" : 7.0 } }, { "data" : { "id" : "312", "degree_layout" : 3, "gal80Rexp" : 0.221, "gal1RGsig" : 0.037256, "Eccentricity" : 26, "gal4RGsig" : 0.39944, "shared_name" : "YMR138W", "TopologicalCoefficient" : 0.33333333, "SUID" : 312, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 13.08467742, "selected" : false, "gal80Rsig" : 0.12805, "ClosenessCentrality" : 0.07642527, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.55241935, "Stress" : 5442, "BetweennessCentrality" : 0.01609638, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.414, "name" : "YMR138W", "COMMON" : "CIN4", "gal4RGexp" : -0.0, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.33333333 } }, { "data" : { "id" : "311", "degree_layout" : 1, "gal80Rexp" : -0.139, "gal1RGsig" : 7.7434E-7, "Eccentricity" : 27, "gal4RGsig" : 2.5233E-6, "shared_name" : "YHR141C", "TopologicalCoefficient" : 0.0, "SUID" : 311, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 14.08064516, "selected" : false, "gal80Rsig" : 0.012998, "ClosenessCentrality" : 0.07101947, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.51553166, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.359, "name" : "YHR141C", "COMMON" : "RPL42B", "gal4RGexp" : -0.371, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "310", "degree_layout" : 1, "gal80Rexp" : -0.486, "gal1RGsig" : 1.4814E-9, "Eccentricity" : 27, "gal4RGsig" : 2.5668E-4, "shared_name" : "YLR109W", "TopologicalCoefficient" : 0.0, "SUID" : 310, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 14.08064516, "selected" : false, "gal80Rsig" : 2.3432E-11, "ClosenessCentrality" : 0.07101947, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.51553166, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.603, "name" : "YLR109W", "COMMON" : "AHP1", "gal4RGexp" : 0.466, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "309", "degree_layout" : 4, "gal80Rexp" : 0.284, "gal1RGsig" : 0.003766, "Eccentricity" : 16, "gal4RGsig" : 0.71364, "shared_name" : "YCL032W", "TopologicalCoefficient" : 0.29545455, "SUID" : 309, "SelfLoops" : 0, "NumberOfDirectedEdges" : 4, "AverageShortestPathLength" : 7.82258065, "selected" : false, "gal80Rsig" : 0.015244, "ClosenessCentrality" : 0.12783505, "Degree" : 4, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.16666667, "Radiality" : 0.74731183, "Stress" : 2454, "BetweennessCentrality" : 0.03196422, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.126, "name" : "YCL032W", "COMMON" : "STE50", "gal4RGexp" : 0.02, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.75 } }, { "data" : { "id" : "308", "degree_layout" : 1, "gal80Rexp" : -0.211, "gal1RGsig" : 0.026191, "Eccentricity" : 17, "gal4RGsig" : 2.0333E-6, "shared_name" : "YDR032C", "TopologicalCoefficient" : 0.0, "SUID" : 308, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.81854839, "selected" : false, "gal80Rsig" : 7.1391E-4, "ClosenessCentrality" : 0.11339735, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71042413, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.113, "name" : "YDR032C", "COMMON" : "YDR032C", "gal4RGexp" : 0.331, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "307", "degree_layout" : 9, "gal80Rexp" : 0.374, "gal1RGsig" : 0.023963, "Eccentricity" : 15, "gal4RGsig" : 0.50139, "shared_name" : "YLR362W", "TopologicalCoefficient" : 0.14444444, "SUID" : 307, "SelfLoops" : 0, "NumberOfDirectedEdges" : 9, "AverageShortestPathLength" : 6.86290323, "selected" : false, "gal80Rsig" : 0.0010869, "ClosenessCentrality" : 0.14571093, "Degree" : 9, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.02777778, "Radiality" : 0.78285544, "Stress" : 21270, "BetweennessCentrality" : 0.22363878, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.144, "name" : "YLR362W", "COMMON" : "STE11", "gal4RGexp" : 0.037, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.22222222 } }, { "data" : { "id" : "306", "degree_layout" : 2, "gal80Rexp" : 0.023, "gal1RGsig" : 0.34875, "Eccentricity" : 16, "gal4RGsig" : 0.42858, "shared_name" : "YDR103W", "TopologicalCoefficient" : 0.59090909, "SUID" : 306, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.83870968, "selected" : false, "gal80Rsig" : 0.92304, "ClosenessCentrality" : 0.12757202, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 0.74671446, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.068, "name" : "YDR103W", "COMMON" : "STE5", "gal4RGexp" : -0.121, "IsSingleNode" : false, "NeighborhoodConnectivity" : 6.5 } }, { "data" : { "id" : "305", "degree_layout" : 2, "gal80Rexp" : 0.103, "gal1RGsig" : 0.0013953, "Eccentricity" : 18, "gal4RGsig" : 0.0034755, "shared_name" : "YJR060W", "TopologicalCoefficient" : 0.5, "SUID" : 305, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.91532258, "selected" : false, "gal80Rsig" : 0.43529, "ClosenessCentrality" : 0.12633724, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74387694, "Stress" : 614, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.165, "name" : "YJR060W", "COMMON" : "CBF1", "gal4RGexp" : -0.306, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "304", "degree_layout" : 3, "gal80Rexp" : 2.856, "gal1RGsig" : 0.098603, "Eccentricity" : 15, "gal4RGsig" : 3.3164E-11, "shared_name" : "YBR019C", "TopologicalCoefficient" : 0.50980392, "SUID" : 304, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 6.7983871, "selected" : false, "gal80Rsig" : 3.9398E-18, "ClosenessCentrality" : 0.14709371, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.66666667, "Radiality" : 0.78524492, "Stress" : 818, "BetweennessCentrality" : 0.0021545, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.061, "name" : "YBR019C", "COMMON" : "GAL10", "gal4RGexp" : -1.993, "IsSingleNode" : false, "NeighborhoodConnectivity" : 8.66666667 } }, { "data" : { "id" : "303", "degree_layout" : 5, "gal80Rexp" : 0.111, "gal1RGsig" : 0.001834, "Eccentricity" : 16, "gal4RGsig" : 0.33923, "shared_name" : "YOL051W", "TopologicalCoefficient" : 0.42, "SUID" : 303, "SelfLoops" : 0, "NumberOfDirectedEdges" : 5, "AverageShortestPathLength" : 7.61693548, "selected" : false, "gal80Rsig" : 0.30922, "ClosenessCentrality" : 0.13128639, "Degree" : 5, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.4, "Radiality" : 0.75492832, "Stress" : 12, "BetweennessCentrality" : 9.251E-5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.171, "name" : "YOL051W", "COMMON" : "GAL11", "gal4RGexp" : 0.055, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.2 } }, { "data" : { "id" : "302", "degree_layout" : 11, "gal80Rexp" : -0.28, "gal1RGsig" : 1.102E-7, "Eccentricity" : 14, "gal4RGsig" : 1.7172E-6, "shared_name" : "YGL035C", "TopologicalCoefficient" : 0.14354067, "SUID" : 302, "SelfLoops" : 0, "NumberOfDirectedEdges" : 11, "AverageShortestPathLength" : 5.85483871, "selected" : false, "gal80Rsig" : 0.0070533, "ClosenessCentrality" : 0.1707989, "Degree" : 11, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.05454545, "Radiality" : 0.82019116, "Stress" : 92790, "BetweennessCentrality" : 0.40813644, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.345, "name" : "YGL035C", "COMMON" : "MIG1", "gal4RGexp" : 0.31, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.36363636 } }, { "data" : { "id" : "301", "degree_layout" : 4, "gal80Rexp" : 2.939, "gal1RGsig" : 7.0101E-9, "Eccentricity" : 15, "gal4RGsig" : 2.5038E-9, "shared_name" : "YBR020W", "TopologicalCoefficient" : 0.42647059, "SUID" : 301, "SelfLoops" : 0, "NumberOfDirectedEdges" : 4, "AverageShortestPathLength" : 6.79435484, "selected" : false, "gal80Rsig" : 2.8147E-18, "ClosenessCentrality" : 0.14718101, "Degree" : 4, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.5, "Radiality" : 0.78539427, "Stress" : 1638, "BetweennessCentrality" : 0.00432532, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -2.426, "name" : "YBR020W", "COMMON" : "GAL1", "gal4RGexp" : -2.406, "IsSingleNode" : false, "NeighborhoodConnectivity" : 7.25 } }, { "data" : { "id" : "300", "degree_layout" : 2, "gal80Rexp" : 0.892, "gal1RGsig" : 2.4597E-4, "Eccentricity" : 16, "gal4RGsig" : 1.6652E-7, "shared_name" : "YLR081W", "TopologicalCoefficient" : 0.75, "SUID" : 300, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.62903226, "selected" : false, "gal80Rsig" : 7.3429E-10, "ClosenessCentrality" : 0.13107822, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 0.75448029, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.176, "name" : "YLR081W", "COMMON" : "GAL2", "gal4RGexp" : -0.57, "IsSingleNode" : false, "NeighborhoodConnectivity" : 7.5 } }, { "data" : { "id" : "299", "degree_layout" : 11, "gal80Rexp" : -0.211, "gal1RGsig" : 0.11614, "Eccentricity" : 15, "gal4RGsig" : 1.264E-4, "shared_name" : "YPL248C", "TopologicalCoefficient" : 0.19473684, "SUID" : 299, "SelfLoops" : 0, "NumberOfDirectedEdges" : 11, "AverageShortestPathLength" : 6.63709677, "selected" : false, "gal80Rsig" : 0.088214, "ClosenessCentrality" : 0.15066829, "Degree" : 11, "PartnerOfMultiEdgedNodePairs" : 1, "ClusteringCoefficient" : 0.17777778, "Radiality" : 0.79121864, "Stress" : 10716, "BetweennessCentrality" : 0.05907389, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.1, "name" : "YPL248C", "COMMON" : "GAL4", "gal4RGexp" : -0.758, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.9 } }, { "data" : { "id" : "298", "degree_layout" : 2, "gal80Rexp" : 3.126, "gal1RGsig" : 7.8855E-4, "Eccentricity" : 16, "gal4RGsig" : 3.6284E-11, "shared_name" : "YBR018C", "TopologicalCoefficient" : 0.75, "SUID" : 298, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.62903226, "selected" : false, "gal80Rsig" : 3.9427E-17, "ClosenessCentrality" : 0.13107822, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 0.75448029, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.153, "name" : "YBR018C", "COMMON" : "GAL7", "gal4RGexp" : -1.995, "IsSingleNode" : false, "NeighborhoodConnectivity" : 7.5 } }, { "data" : { "id" : "297", "degree_layout" : 5, "gal80Rexp" : -0.049, "gal1RGsig" : 0.74397, "Eccentricity" : 17, "gal4RGsig" : 0.19987, "shared_name" : "YIR009W", "TopologicalCoefficient" : 0.2, "SUID" : 297, "SelfLoops" : 0, "NumberOfDirectedEdges" : 5, "AverageShortestPathLength" : 6.78629032, "selected" : false, "gal80Rsig" : 0.89526, "ClosenessCentrality" : 0.14735591, "Degree" : 5, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78569295, "Stress" : 12160, "BetweennessCentrality" : 0.12134232, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.044, "name" : "YIR009W", "COMMON" : "MSL1", "gal4RGexp" : -0.337, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.2 } }, { "data" : { "id" : "296", "degree_layout" : 3, "gal80Rexp" : 1.101, "gal1RGsig" : 6.1231E-6, "Eccentricity" : 16, "gal4RGsig" : 7.6476E-6, "shared_name" : "YKR099W", "TopologicalCoefficient" : 0.33333333, "SUID" : 296, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 6.46370968, "selected" : false, "gal80Rsig" : 6.9896E-4, "ClosenessCentrality" : 0.15470992, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.79764038, "Stress" : 12284, "BetweennessCentrality" : 0.10314677, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.466, "name" : "YKR099W", "COMMON" : "BAS1", "gal4RGexp" : -0.936, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.66666667 } }, { "data" : { "id" : "295", "degree_layout" : 2, "gal80Rexp" : 0.264, "gal1RGsig" : 0.019613, "Eccentricity" : 18, "gal4RGsig" : 0.36733, "shared_name" : "YIL143C", "TopologicalCoefficient" : 0.5, "SUID" : 295, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.76612903, "selected" : false, "gal80Rsig" : 0.045357, "ClosenessCentrality" : 0.12876428, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74940263, "Stress" : 1220, "BetweennessCentrality" : 0.01606373, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.124, "name" : "YIL143C", "COMMON" : "SSL2", "gal4RGexp" : 0.069, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.5 } }, { "data" : { "id" : "294", "degree_layout" : 2, "gal80Rexp" : 0.404, "gal1RGsig" : 0.4641, "Eccentricity" : 17, "gal4RGsig" : 9.3996E-7, "shared_name" : "YDR184C", "TopologicalCoefficient" : 0.5, "SUID" : 294, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.12096774, "selected" : false, "gal80Rsig" : 0.10407, "ClosenessCentrality" : 0.14043035, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.77329749, "Stress" : 6204, "BetweennessCentrality" : 0.07028775, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.04, "name" : "YDR184C", "COMMON" : "ATC1", "gal4RGexp" : -0.886, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.5 } }, { "data" : { "id" : "293", "degree_layout" : 3, "gal80Rexp" : 0.723, "gal1RGsig" : 1.9735E-6, "Eccentricity" : 18, "gal4RGsig" : 0.026384, "shared_name" : "YNL091W", "TopologicalCoefficient" : 0.33333333, "SUID" : 293, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 7.47177419, "selected" : false, "gal80Rsig" : 2.3704E-4, "ClosenessCentrality" : 0.13383702, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.76030466, "Stress" : 5154, "BetweennessCentrality" : 0.0436549, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.288, "name" : "YNL091W", "COMMON" : "YNL091W", "gal4RGexp" : 0.154, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.66666667 } }, { "data" : { "id" : "292", "degree_layout" : 2, "gal80Rexp" : -0.141, "gal1RGsig" : 0.018347, "Eccentricity" : 17, "gal4RGsig" : 0.053936, "shared_name" : "YNL236W", "TopologicalCoefficient" : 0.5, "SUID" : 292, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.76209677, "selected" : false, "gal80Rsig" : 0.39009, "ClosenessCentrality" : 0.11412793, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71251493, "Stress" : 1044, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.146, "name" : "YNL236W", "COMMON" : "SIN4", "gal4RGexp" : -0.218, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "291", "degree_layout" : 3, "gal80Rexp" : 0.561, "gal1RGsig" : 4.2719E-4, "Eccentricity" : 16, "gal4RGsig" : 3.5398E-4, "shared_name" : "YKL012W", "TopologicalCoefficient" : 0.33333333, "SUID" : 291, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 7.77419355, "selected" : false, "gal80Rsig" : 8.7173E-5, "ClosenessCentrality" : 0.12863071, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74910394, "Stress" : 4160, "BetweennessCentrality" : 0.03199687, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.21, "name" : "YKL012W", "COMMON" : "PRP40", "gal4RGexp" : -0.277, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "290", "degree_layout" : 2, "gal80Rexp" : 0.363, "gal1RGsig" : 3.3893E-4, "Eccentricity" : 19, "gal4RGsig" : 0.033332, "shared_name" : "YML032C", "TopologicalCoefficient" : 1.0, "SUID" : 290, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 10.77016129, "selected" : false, "gal80Rsig" : 0.0030735, "ClosenessCentrality" : 0.09284912, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.63814217, "Stress" : 2, "BetweennessCentrality" : 1.632E-5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.199, "name" : "YML032C", "COMMON" : "RAD52", "gal4RGexp" : -0.136, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "289", "degree_layout" : 2, "gal80Rexp" : -0.121, "gal1RGsig" : 0.47284, "Eccentricity" : 18, "gal4RGsig" : 0.034589, "shared_name" : "YNL312W", "TopologicalCoefficient" : 0.75, "SUID" : 289, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 9.78225806, "selected" : false, "gal80Rsig" : 0.24786, "ClosenessCentrality" : 0.10222589, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.67473118, "Stress" : 1030, "BetweennessCentrality" : 0.00401593, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.028, "name" : "YNL312W", "COMMON" : "RFA2", "gal4RGexp" : -0.111, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "288", "degree_layout" : 2, "gal80Rexp" : 0.101, "gal1RGsig" : 0.74865, "Eccentricity" : 17, "gal4RGsig" : 0.60558, "shared_name" : "YLR116W", "TopologicalCoefficient" : 0.5, "SUID" : 288, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.76209677, "selected" : false, "gal80Rsig" : 0.35769, "ClosenessCentrality" : 0.11412793, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71251493, "Stress" : 1044, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.015, "name" : "YLR116W", "COMMON" : "MSL5", "gal4RGexp" : -0.03, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "287", "degree_layout" : 2, "gal80Rexp" : 0.307, "gal1RGsig" : 1.939E-8, "Eccentricity" : 19, "gal4RGsig" : 0.016862, "shared_name" : "YOR264W", "TopologicalCoefficient" : 0.5, "SUID" : 287, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 9.08467742, "selected" : false, "gal80Rsig" : 0.011809, "ClosenessCentrality" : 0.11007545, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.7005675, "Stress" : 2060, "BetweennessCentrality" : 0.01606373, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.493, "name" : "YOR264W", "COMMON" : "YOR264W", "gal4RGexp" : 0.237, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "286", "degree_layout" : 1, "gal80Rexp" : -0.798, "gal1RGsig" : 1.6598E-8, "Eccentricity" : 16, "gal4RGsig" : 0.032663, "shared_name" : "YDR309C", "TopologicalCoefficient" : 0.0, "SUID" : 286, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.33870968, "selected" : false, "gal80Rsig" : 1.2554E-13, "ClosenessCentrality" : 0.11992263, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.72819594, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.427, "name" : "YDR309C", "COMMON" : "GIC2", "gal4RGexp" : -0.129, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "285", "degree_layout" : 2, "gal80Rexp" : -0.154, "gal1RGsig" : 0.066961, "Eccentricity" : 15, "gal4RGsig" : 0.031442, "shared_name" : "YLR229C", "TopologicalCoefficient" : 0.5, "SUID" : 285, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.34274194, "selected" : false, "gal80Rsig" : 0.030339, "ClosenessCentrality" : 0.13618891, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.76508363, "Stress" : 750, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.074, "name" : "YLR229C", "COMMON" : "CDC42", "gal4RGexp" : 0.089, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "284", "degree_layout" : 2, "gal80Rexp" : -0.065, "gal1RGsig" : 0.44242, "Eccentricity" : 20, "gal4RGsig" : 0.10763, "shared_name" : "YGR058W", "TopologicalCoefficient" : 0.5, "SUID" : 284, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 10.07258065, "selected" : false, "gal80Rsig" : 0.6708, "ClosenessCentrality" : 0.09927942, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66397849, "Stress" : 1032, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.045, "name" : "YGR058W", "COMMON" : "YGR058W", "gal4RGexp" : -0.16, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.5 } }, { "data" : { "id" : "283", "degree_layout" : 1, "gal80Rexp" : -0.745, "gal1RGsig" : 1.2917E-7, "Eccentricity" : 2, "gal4RGsig" : 0.61381, "shared_name" : "YJR109C", "TopologicalCoefficient" : 0.0, "SUID" : 283, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 0.030981, "ClosenessCentrality" : 0.66666667, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.323, "name" : "YJR109C", "COMMON" : "CPA2", "gal4RGexp" : -0.0, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "282", "degree_layout" : 2, "gal80Rexp" : 0.403, "gal1RGsig" : 0.002137, "Eccentricity" : 1, "gal4RGsig" : 0.15221, "shared_name" : "YOR303W", "TopologicalCoefficient" : 0.0, "SUID" : 282, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 1.5854E-4, "ClosenessCentrality" : 1.0, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 2, "BetweennessCentrality" : 1.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.127, "name" : "YOR303W", "COMMON" : "CPA1", "gal4RGexp" : -0.089, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "281", "degree_layout" : 4, "gal80Rexp" : 0.104, "gal1RGsig" : 0.79725, "Eccentricity" : 17, "gal4RGsig" : 0.063023, "shared_name" : "YLR256W", "TopologicalCoefficient" : 0.25, "SUID" : 281, "SelfLoops" : 0, "NumberOfDirectedEdges" : 4, "AverageShortestPathLength" : 8.53225806, "selected" : false, "gal80Rsig" : 0.2243, "ClosenessCentrality" : 0.11720227, "Degree" : 4, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.72102748, "Stress" : 7130, "BetweennessCentrality" : 0.03202952, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.011, "name" : "YLR256W", "COMMON" : "HAP1", "gal4RGexp" : -0.087, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.25 } }, { "data" : { "id" : "280", "degree_layout" : 2, "gal80Rexp" : -0.091, "gal1RGsig" : 3.5964E-11, "Eccentricity" : 18, "gal4RGsig" : 1.3947E-8, "shared_name" : "YML054C", "TopologicalCoefficient" : 0.5, "SUID" : 280, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 9.52016129, "selected" : false, "gal80Rsig" : 0.25421, "ClosenessCentrality" : 0.10504024, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.68443847, "Stress" : 1786, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.963, "name" : "YML054C", "COMMON" : "CYB2", "gal4RGexp" : 0.856, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "279", "degree_layout" : 5, "gal80Rexp" : -0.643, "gal1RGsig" : 3.3444E-5, "Eccentricity" : 16, "gal4RGsig" : 0.005959, "shared_name" : "YJR048W", "TopologicalCoefficient" : 0.26666667, "SUID" : 279, "SelfLoops" : 0, "NumberOfDirectedEdges" : 5, "AverageShortestPathLength" : 7.56854839, "selected" : false, "gal80Rsig" : 1.6071E-8, "ClosenessCentrality" : 0.13212573, "Degree" : 5, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.2, "Radiality" : 0.75672043, "Stress" : 9044, "BetweennessCentrality" : 0.04079818, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.216, "name" : "YJR048W", "COMMON" : "CYC1", "gal4RGexp" : 0.14, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.4 } }, { "data" : { "id" : "278", "degree_layout" : 1, "gal80Rexp" : -1.373, "gal1RGsig" : 2.8783E-6, "Eccentricity" : 18, "gal4RGsig" : 7.3568E-7, "shared_name" : "YEL039C", "TopologicalCoefficient" : 0.0, "SUID" : 278, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.52822581, "selected" : false, "gal80Rsig" : 4.9668E-7, "ClosenessCentrality" : 0.10495133, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.68413978, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.319, "name" : "YEL039C", "COMMON" : "CYC7", "gal4RGexp" : 0.377, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "277", "degree_layout" : 2, "gal80Rexp" : 0.059, "gal1RGsig" : 0.002588, "Eccentricity" : 16, "gal4RGsig" : 0.22211, "shared_name" : "YGL237C", "TopologicalCoefficient" : 0.75, "SUID" : 277, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.73387097, "selected" : false, "gal80Rsig" : 0.35299, "ClosenessCentrality" : 0.12930136, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 0.75059737, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.127, "name" : "YGL237C", "COMMON" : "HAP2", "gal4RGexp" : 0.05, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.5 } }, { "data" : { "id" : "276", "degree_layout" : 2, "gal80Rexp" : -0.108, "gal1RGsig" : 0.18207, "Eccentricity" : 16, "gal4RGsig" : 0.015004, "shared_name" : "YBL021C", "TopologicalCoefficient" : 0.75, "SUID" : 276, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.73387097, "selected" : false, "gal80Rsig" : 0.497, "ClosenessCentrality" : 0.12930136, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 0.75059737, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.073, "name" : "YBL021C", "COMMON" : "HAP3", "gal4RGexp" : -0.256, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.5 } }, { "data" : { "id" : "275", "degree_layout" : 2, "gal80Rexp" : 0.332, "gal1RGsig" : 0.056092, "Eccentricity" : 19, "gal4RGsig" : 0.60829, "shared_name" : "YDR311W", "TopologicalCoefficient" : 0.5, "SUID" : 275, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.75403226, "selected" : false, "gal80Rsig" : 0.0087786, "ClosenessCentrality" : 0.11423307, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71281362, "Stress" : 612, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.098, "name" : "YDR311W", "COMMON" : "TFB1", "gal4RGexp" : -0.043, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.5 } }, { "data" : { "id" : "274", "degree_layout" : 1, "gal80Rexp" : 0.337, "gal1RGsig" : 3.5042E-5, "Eccentricity" : 20, "gal4RGsig" : 0.025221, "shared_name" : "YKL028W", "TopologicalCoefficient" : 0.0, "SUID" : 274, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.75, "selected" : false, "gal80Rsig" : 4.9898E-5, "ClosenessCentrality" : 0.1025641, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.67592593, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.214, "name" : "YKL028W", "COMMON" : "TFA1", "gal4RGexp" : -0.146, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "273", "degree_layout" : 2, "gal80Rexp" : 0.488, "gal1RGsig" : 0.47027, "Eccentricity" : 19, "gal4RGsig" : 0.043291, "shared_name" : "YPL149W", "TopologicalCoefficient" : 0.75, "SUID" : 273, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 9.09274194, "selected" : false, "gal80Rsig" : 1.5579E-5, "ClosenessCentrality" : 0.10997783, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.70026882, "Stress" : 1028, "BetweennessCentrality" : 0.00401593, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.033, "name" : "YPL149W", "COMMON" : "APG5", "gal4RGexp" : 0.116, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "272", "degree_layout" : 3, "gal80Rexp" : 0.034, "gal1RGsig" : 0.030789, "Eccentricity" : 18, "gal4RGsig" : 2.257E-4, "shared_name" : "YHR171W", "TopologicalCoefficient" : 0.38095238, "SUID" : 272, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 8.10483871, "selected" : false, "gal80Rsig" : 0.7782, "ClosenessCentrality" : 0.12338308, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.73685783, "Stress" : 4106, "BetweennessCentrality" : 0.02401397, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.134, "name" : "YHR171W", "COMMON" : "APG7", "gal4RGexp" : 0.251, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.66666667 } }, { "data" : { "id" : "271", "degree_layout" : 2, "gal80Rexp" : 0.378, "gal1RGsig" : 0.143, "Eccentricity" : 20, "gal4RGsig" : 0.011008, "shared_name" : "YBR217W", "TopologicalCoefficient" : 1.0, "SUID" : 271, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 10.08064516, "selected" : false, "gal80Rsig" : 0.012775, "ClosenessCentrality" : 0.0992, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66367981, "Stress" : 2, "BetweennessCentrality" : 1.632E-5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.088, "name" : "YBR217W", "COMMON" : "APG12", "gal4RGexp" : -0.332, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "270", "degree_layout" : 4, "gal80Rexp" : -0.117, "gal1RGsig" : 0.045375, "Eccentricity" : 15, "gal4RGsig" : 3.1802E-6, "shared_name" : "YKL109W", "TopologicalCoefficient" : 0.33928571, "SUID" : 270, "SelfLoops" : 0, "NumberOfDirectedEdges" : 4, "AverageShortestPathLength" : 6.78629032, "selected" : false, "gal80Rsig" : 0.071395, "ClosenessCentrality" : 0.14735591, "Degree" : 4, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.33333333, "Radiality" : 0.78569295, "Stress" : 6894, "BetweennessCentrality" : 0.03373819, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.084, "name" : "YKL109W", "COMMON" : "HAP4", "gal4RGexp" : 0.295, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "269", "degree_layout" : 18, "gal80Rexp" : 0.457, "gal1RGsig" : 0.0035372, "Eccentricity" : 15, "gal4RGsig" : 4.2514E-6, "shared_name" : "YMR043W", "TopologicalCoefficient" : 0.1010101, "SUID" : 269, "SelfLoops" : 0, "NumberOfDirectedEdges" : 18, "AverageShortestPathLength" : 5.84274194, "selected" : false, "gal80Rsig" : 2.4112E-4, "ClosenessCentrality" : 0.17115252, "Degree" : 18, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.05882353, "Radiality" : 0.82063919, "Stress" : 86646, "BetweennessCentrality" : 0.5264582, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.183, "name" : "YMR043W", "COMMON" : "MCM1", "gal4RGexp" : -0.654, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.66666667 } }, { "data" : { "id" : "268", "degree_layout" : 2, "gal80Rexp" : -1.117, "gal1RGsig" : 7.0996E-11, "Eccentricity" : 16, "gal4RGsig" : 0.0040782, "shared_name" : "YIL015W", "TopologicalCoefficient" : 0.63157895, "SUID" : 268, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.8266129, "selected" : false, "gal80Rsig" : 2.9167E-11, "ClosenessCentrality" : 0.14648553, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 0.78419952, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.622, "name" : "YIL015W", "COMMON" : "BAR1", "gal4RGexp" : -0.207, "IsSingleNode" : false, "NeighborhoodConnectivity" : 12.0 } }, { "data" : { "id" : "267", "degree_layout" : 2, "gal80Rexp" : 0.001, "gal1RGsig" : 6.8879E-8, "Eccentricity" : 16, "gal4RGsig" : 0.041194, "shared_name" : "YJL159W", "TopologicalCoefficient" : 0.5, "SUID" : 267, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.83064516, "selected" : false, "gal80Rsig" : 0.999999, "ClosenessCentrality" : 0.14639906, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78405018, "Stress" : 1032, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.357, "name" : "YJL159W", "COMMON" : "HSP150", "gal4RGexp" : 0.111, "IsSingleNode" : false, "NeighborhoodConnectivity" : 9.5 } }, { "data" : { "id" : "266", "degree_layout" : 2, "gal80Rexp" : 0.123, "gal1RGsig" : 7.092E-13, "Eccentricity" : 16, "gal4RGsig" : 1.8547E-10, "shared_name" : "YKR097W", "TopologicalCoefficient" : 0.5, "SUID" : 266, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.7016129, "selected" : false, "gal80Rsig" : 0.13819, "ClosenessCentrality" : 0.14921781, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78882915, "Stress" : 4434, "BetweennessCentrality" : 0.04542209, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 1.289, "name" : "YKR097W", "COMMON" : "PCK1", "gal4RGexp" : 1.224, "IsSingleNode" : false, "NeighborhoodConnectivity" : 11.0 } }, { "data" : { "id" : "265", "degree_layout" : 3, "gal80Rexp" : 0.101, "gal1RGsig" : 7.5764E-7, "Eccentricity" : 16, "gal4RGsig" : 2.3869E-7, "shared_name" : "YGR108W", "TopologicalCoefficient" : 0.36666667, "SUID" : 265, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 6.74193548, "selected" : false, "gal80Rsig" : 0.1936, "ClosenessCentrality" : 0.14832536, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.33333333, "Radiality" : 0.78733572, "Stress" : 7562, "BetweennessCentrality" : 0.05930986, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.25, "name" : "YGR108W", "COMMON" : "CLB1", "gal4RGexp" : -0.566, "IsSingleNode" : false, "NeighborhoodConnectivity" : 7.66666667 } }, { "data" : { "id" : "264", "degree_layout" : 3, "gal80Rexp" : -0.526, "gal1RGsig" : 2.4721E-10, "Eccentricity" : 16, "gal4RGsig" : 0.011212, "shared_name" : "YDR461W", "TopologicalCoefficient" : 0.49122807, "SUID" : 264, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 6.82258065, "selected" : false, "gal80Rsig" : 5.5223E-10, "ClosenessCentrality" : 0.1465721, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.66666667, "Radiality" : 0.78434886, "Stress" : 6, "BetweennessCentrality" : 2.449E-5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.659, "name" : "YDR461W", "COMMON" : "MFA1", "gal4RGexp" : -0.147, "IsSingleNode" : false, "NeighborhoodConnectivity" : 9.33333333 } }, { "data" : { "id" : "263", "degree_layout" : 3, "gal80Rexp" : -1.237, "gal1RGsig" : 3.148E-11, "Eccentricity" : 16, "gal4RGsig" : 0.05338, "shared_name" : "YNL145W", "TopologicalCoefficient" : 0.49122807, "SUID" : 263, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 6.82258065, "selected" : false, "gal80Rsig" : 1.1916E-10, "ClosenessCentrality" : 0.1465721, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.66666667, "Radiality" : 0.78434886, "Stress" : 6, "BetweennessCentrality" : 2.449E-5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.764, "name" : "YNL145W", "COMMON" : "MFA2", "gal4RGexp" : -0.098, "IsSingleNode" : false, "NeighborhoodConnectivity" : 9.33333333 } }, { "data" : { "id" : "262", "degree_layout" : 4, "gal80Rexp" : 0.972, "gal1RGsig" : 5.9763E-4, "Eccentricity" : 14, "gal4RGsig" : 4.7408E-8, "shared_name" : "YJL157C", "TopologicalCoefficient" : 0.275, "SUID" : 262, "SelfLoops" : 0, "NumberOfDirectedEdges" : 4, "AverageShortestPathLength" : 6.35483871, "selected" : false, "gal80Rsig" : 6.3708E-7, "ClosenessCentrality" : 0.15736041, "Degree" : 4, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.16666667, "Radiality" : 0.80167264, "Stress" : 15458, "BetweennessCentrality" : 0.15125755, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.158, "name" : "YJL157C", "COMMON" : "FAR1", "gal4RGexp" : -0.803, "IsSingleNode" : false, "NeighborhoodConnectivity" : 6.0 } }, { "data" : { "id" : "261", "degree_layout" : 3, "gal80Rexp" : -0.74, "gal1RGsig" : 1.3644E-10, "Eccentricity" : 16, "gal4RGsig" : 4.1738E-6, "shared_name" : "YFL026W", "TopologicalCoefficient" : 0.49122807, "SUID" : 261, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 6.82258065, "selected" : false, "gal80Rsig" : 2.884E-14, "ClosenessCentrality" : 0.1465721, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.66666667, "Radiality" : 0.78434886, "Stress" : 6, "BetweennessCentrality" : 2.449E-5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.653, "name" : "YFL026W", "COMMON" : "STE2", "gal4RGexp" : -0.396, "IsSingleNode" : false, "NeighborhoodConnectivity" : 9.33333333 } }, { "data" : { "id" : "260", "degree_layout" : 2, "gal80Rexp" : 0.161, "gal1RGsig" : 0.061024, "Eccentricity" : 19, "gal4RGsig" : 3.1083E-4, "shared_name" : "YNR007C", "TopologicalCoefficient" : 0.75, "SUID" : 260, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 9.09274194, "selected" : false, "gal80Rsig" : 0.10191, "ClosenessCentrality" : 0.10997783, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.70026882, "Stress" : 1028, "BetweennessCentrality" : 0.00401593, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.078, "name" : "YNR007C", "COMMON" : "AUT1", "gal4RGexp" : 0.196, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "259", "degree_layout" : 2, "gal80Rexp" : 0.401, "gal1RGsig" : 0.13783, "Eccentricity" : 24, "gal4RGsig" : 6.541E-4, "shared_name" : "YJL203W", "TopologicalCoefficient" : 0.5, "SUID" : 259, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 11.58064516, "selected" : false, "gal80Rsig" : 0.0046881, "ClosenessCentrality" : 0.08635097, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.60812425, "Stress" : 2604, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.083, "name" : "YJL203W", "COMMON" : "PRP21", "gal4RGexp" : -0.46, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "258", "degree_layout" : 1, "gal80Rexp" : -0.472, "gal1RGsig" : 1.9054E-8, "Eccentricity" : 25, "gal4RGsig" : 0.39614, "shared_name" : "YOL136C", "TopologicalCoefficient" : 0.0, "SUID" : 258, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 12.5766129, "selected" : false, "gal80Rsig" : 0.0081753, "ClosenessCentrality" : 0.07951266, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.57123656, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.646, "name" : "YOL136C", "COMMON" : "PFK27", "gal4RGexp" : -0.086, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "257", "degree_layout" : 2, "gal80Rexp" : -0.036, "gal1RGsig" : 3.4013E-4, "Eccentricity" : 15, "gal4RGsig" : 0.23036, "shared_name" : "YLL021W", "TopologicalCoefficient" : 0.5, "SUID" : 257, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.3266129, "selected" : false, "gal80Rsig" : 0.62229, "ClosenessCentrality" : 0.13648872, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.765681, "Stress" : 1028, "BetweennessCentrality" : 0.01334058, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.155, "name" : "YLL021W", "COMMON" : "SPA2", "gal4RGexp" : 0.05, "IsSingleNode" : false, "NeighborhoodConnectivity" : 6.5 } }, { "data" : { "id" : "256", "degree_layout" : 2, "gal80Rexp" : -0.162, "gal1RGsig" : 5.6008E-6, "Eccentricity" : 19, "gal4RGsig" : 1.6899E-9, "shared_name" : "YJL219W", "TopologicalCoefficient" : 0.75, "SUID" : 256, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 9.09274194, "selected" : false, "gal80Rsig" : 0.097946, "ClosenessCentrality" : 0.10997783, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.70026882, "Stress" : 1028, "BetweennessCentrality" : 0.00401593, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.298, "name" : "YJL219W", "COMMON" : "HXT9", "gal4RGexp" : 0.592, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "255", "degree_layout" : 2, "gal80Rexp" : 0.105, "gal1RGsig" : 8.1828E-6, "Eccentricity" : 19, "gal4RGsig" : 5.1939E-5, "shared_name" : "YOL156W", "TopologicalCoefficient" : 0.75, "SUID" : 255, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 9.09274194, "selected" : false, "gal80Rsig" : 0.28091, "ClosenessCentrality" : 0.10997783, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.70026882, "Stress" : 1028, "BetweennessCentrality" : 0.00401593, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.298, "name" : "YOL156W", "COMMON" : "HXT11", "gal4RGexp" : 0.462, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "254", "degree_layout" : 1, "gal80Rexp" : 0.439, "gal1RGsig" : 0.96433, "Eccentricity" : 17, "gal4RGsig" : 1.6928E-9, "shared_name" : "YKL101W", "TopologicalCoefficient" : 0.0, "SUID" : 254, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 7.77822581, "selected" : false, "gal80Rsig" : 0.0030233, "ClosenessCentrality" : 0.12856402, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.7489546, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.01, "name" : "YKL101W", "COMMON" : "HSL1", "gal4RGexp" : 0.78, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "253", "degree_layout" : 3, "gal80Rexp" : -0.405, "gal1RGsig" : 0.7432, "Eccentricity" : 16, "gal4RGsig" : 0.32105, "shared_name" : "YBR160W", "TopologicalCoefficient" : 0.36842105, "SUID" : 253, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 6.78225806, "selected" : false, "gal80Rsig" : 0.026081, "ClosenessCentrality" : 0.14744352, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.33333333, "Radiality" : 0.78584229, "Stress" : 1030, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.016, "name" : "YBR160W", "COMMON" : "CDC28", "gal4RGexp" : -0.087, "IsSingleNode" : false, "NeighborhoodConnectivity" : 7.33333333 } }, { "data" : { "id" : "252", "degree_layout" : 2, "gal80Rexp" : 0.0, "gal1RGsig" : 0.64313, "Eccentricity" : 20, "gal4RGsig" : 0.999999, "shared_name" : "YBL005W", "TopologicalCoefficient" : 1.0, "SUID" : 252, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 10.08064516, "selected" : false, "gal80Rsig" : 0.999999, "ClosenessCentrality" : 0.0992, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66367981, "Stress" : 2, "BetweennessCentrality" : 1.632E-5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.0, "name" : "YBL005W", "COMMON" : "PDR3", "gal4RGexp" : 0.0, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "251", "degree_layout" : 2, "gal80Rexp" : 0.052, "gal1RGsig" : 0.10243, "Eccentricity" : 18, "gal4RGsig" : 0.999999, "shared_name" : "YDR323C", "TopologicalCoefficient" : 0.5, "SUID" : 251, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 9.22983871, "selected" : false, "gal80Rsig" : 0.69287, "ClosenessCentrality" : 0.10834426, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.69519116, "Stress" : 618, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.164, "name" : "YDR323C", "COMMON" : "PEP7", "gal4RGexp" : 0.0, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.5 } }, { "data" : { "id" : "250", "degree_layout" : 6, "gal80Rexp" : 0.491, "gal1RGsig" : 0.092135, "Eccentricity" : 17, "gal4RGsig" : 0.43055, "shared_name" : "YOR036W", "TopologicalCoefficient" : 0.22222222, "SUID" : 250, "SelfLoops" : 0, "NumberOfDirectedEdges" : 6, "AverageShortestPathLength" : 8.24193548, "selected" : false, "gal80Rsig" : 1.6313E-6, "ClosenessCentrality" : 0.12133072, "Degree" : 6, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.06666667, "Radiality" : 0.73178017, "Stress" : 13532, "BetweennessCentrality" : 0.13339563, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.071, "name" : "YOR036W", "COMMON" : "PEP12", "gal4RGexp" : 0.037, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "249", "degree_layout" : 2, "gal80Rexp" : -0.573, "gal1RGsig" : 1.0007E-5, "Eccentricity" : 16, "gal4RGsig" : 7.1366E-4, "shared_name" : "YGL008C", "TopologicalCoefficient" : 0.5, "SUID" : 249, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.83064516, "selected" : false, "gal80Rsig" : 1.2622E-6, "ClosenessCentrality" : 0.14639906, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78405018, "Stress" : 1032, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.352, "name" : "YGL008C", "COMMON" : "PMA1", "gal4RGexp" : -0.282, "IsSingleNode" : false, "NeighborhoodConnectivity" : 9.5 } }, { "data" : { "id" : "248", "degree_layout" : 3, "gal80Rexp" : 0.537, "gal1RGsig" : 0.38375, "Eccentricity" : 22, "gal4RGsig" : 0.010321, "shared_name" : "YER040W", "TopologicalCoefficient" : 0.33333333, "SUID" : 248, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 10.34274194, "selected" : false, "gal80Rsig" : 0.0018683, "ClosenessCentrality" : 0.09668616, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.65397252, "Stress" : 5118, "BetweennessCentrality" : 0.01609638, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.098, "name" : "YER040W", "COMMON" : "GLN3", "gal4RGexp" : -0.513, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.66666667 } }, { "data" : { "id" : "247", "degree_layout" : 1, "gal80Rexp" : -0.172, "gal1RGsig" : 2.3885E-5, "Eccentricity" : 23, "gal4RGsig" : 2.9298E-9, "shared_name" : "YPR035W", "TopologicalCoefficient" : 0.0, "SUID" : 247, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 11.33870968, "selected" : false, "gal80Rsig" : 0.036009, "ClosenessCentrality" : 0.08819346, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.61708483, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.197, "name" : "YPR035W", "COMMON" : "GLN1", "gal4RGexp" : -1.06, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "246", "degree_layout" : 1, "gal80Rexp" : -0.258, "gal1RGsig" : 0.0086582, "Eccentricity" : 23, "gal4RGsig" : 0.0011998, "shared_name" : "YGR019W", "TopologicalCoefficient" : 0.0, "SUID" : 246, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 11.33870968, "selected" : false, "gal80Rsig" : 6.2171E-5, "ClosenessCentrality" : 0.08819346, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.61708483, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.163, "name" : "YGR019W", "COMMON" : "UGA1", "gal4RGexp" : 0.234, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "245", "degree_layout" : 1, "gal80Rexp" : 0.293, "gal1RGsig" : 0.20515, "Eccentricity" : 23, "gal4RGsig" : 0.23242, "shared_name" : "YNL098C", "TopologicalCoefficient" : 0.0, "SUID" : 245, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 12.64112903, "selected" : false, "gal80Rsig" : 1.0426E-4, "ClosenessCentrality" : 0.07910686, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.56884707, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.05, "name" : "YNL098C", "COMMON" : "RAS2", "gal4RGexp" : 0.062, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "244", "degree_layout" : 2, "gal80Rexp" : -0.071, "gal1RGsig" : 0.67137, "Eccentricity" : 22, "gal4RGsig" : 0.41028, "shared_name" : "YLR310C", "TopologicalCoefficient" : 0.5, "SUID" : 244, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 11.64516129, "selected" : false, "gal80Rsig" : 0.25519, "ClosenessCentrality" : 0.08587258, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.60573477, "Stress" : 1010, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.015, "name" : "YLR310C", "COMMON" : "CDC25", "gal4RGexp" : -0.037, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.5 } }, { "data" : { "id" : "243", "degree_layout" : 2, "gal80Rexp" : -0.221, "gal1RGsig" : 0.0058541, "Eccentricity" : 1, "gal4RGsig" : 0.011234, "shared_name" : "YGL115W", "TopologicalCoefficient" : 0.0, "SUID" : 243, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.0027535, "ClosenessCentrality" : 1.0, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 2, "BetweennessCentrality" : 1.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.111, "name" : "YGL115W", "COMMON" : "SNF4", "gal4RGexp" : 0.112, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "242", "degree_layout" : 1, "gal80Rexp" : 0.139, "gal1RGsig" : 1.7995E-6, "Eccentricity" : 2, "gal4RGsig" : 1.1069E-6, "shared_name" : "YGL208W", "TopologicalCoefficient" : 0.0, "SUID" : 242, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 0.097498, "ClosenessCentrality" : 0.66666667, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.354, "name" : "YGL208W", "COMMON" : "SIP2", "gal4RGexp" : 0.406, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "241", "degree_layout" : 2, "gal80Rexp" : 0.209, "gal1RGsig" : 0.14513, "Eccentricity" : 15, "gal4RGsig" : 0.47601, "shared_name" : "YPL089C", "TopologicalCoefficient" : 0.5, "SUID" : 241, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.00806452, "selected" : false, "gal80Rsig" : 0.0026491, "ClosenessCentrality" : 0.12487412, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74044205, "Stress" : 746, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.06, "name" : "YPL089C", "COMMON" : "RLM1", "gal4RGexp" : -0.037, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "240", "degree_layout" : 4, "gal80Rexp" : 0.21, "gal1RGsig" : 1.349E-4, "Eccentricity" : 14, "gal4RGsig" : 2.7258E-4, "shared_name" : "YHR030C", "TopologicalCoefficient" : 0.25, "SUID" : 240, "SelfLoops" : 0, "NumberOfDirectedEdges" : 4, "AverageShortestPathLength" : 7.02016129, "selected" : false, "gal80Rsig" : 0.0033506, "ClosenessCentrality" : 0.14244687, "Degree" : 4, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.77703106, "Stress" : 3506, "BetweennessCentrality" : 0.03824806, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.227, "name" : "YHR030C", "COMMON" : "SLT2", "gal4RGexp" : -0.24, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "239", "degree_layout" : 4, "gal80Rexp" : 0.442, "gal1RGsig" : 0.72688, "Eccentricity" : 15, "gal4RGsig" : 0.55601, "shared_name" : "YJL089W", "TopologicalCoefficient" : 0.25, "SUID" : 239, "SelfLoops" : 0, "NumberOfDirectedEdges" : 4, "AverageShortestPathLength" : 6.68145161, "selected" : false, "gal80Rsig" : 0.033306, "ClosenessCentrality" : 0.14966807, "Degree" : 4, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78957587, "Stress" : 7016, "BetweennessCentrality" : 0.05778362, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.037, "name" : "YJL089W", "COMMON" : "SIP4", "gal4RGexp" : 0.169, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.75 } }, { "data" : { "id" : "238", "degree_layout" : 2, "gal80Rexp" : 1.147, "gal1RGsig" : 1.8931E-10, "Eccentricity" : 16, "gal4RGsig" : 4.8501E-9, "shared_name" : "YER065C", "TopologicalCoefficient" : 0.5, "SUID" : 238, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.55645161, "selected" : false, "gal80Rsig" : 3.4625E-8, "ClosenessCentrality" : 0.13233725, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75716846, "Stress" : 4226, "BetweennessCentrality" : 0.04069207, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.65, "name" : "YER065C", "COMMON" : "ICL1", "gal4RGexp" : 0.591, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.5 } }, { "data" : { "id" : "237", "degree_layout" : 2, "gal80Rexp" : 0.371, "gal1RGsig" : 2.1938E-10, "Eccentricity" : 15, "gal4RGsig" : 5.8901E-11, "shared_name" : "YLR377C", "TopologicalCoefficient" : 0.5, "SUID" : 237, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.75403226, "selected" : false, "gal80Rsig" : 0.0037868, "ClosenessCentrality" : 0.1480597, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78688769, "Stress" : 3426, "BetweennessCentrality" : 0.01848502, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.873, "name" : "YLR377C", "COMMON" : "FBP1", "gal4RGexp" : 1.067, "IsSingleNode" : false, "NeighborhoodConnectivity" : 7.5 } }, { "data" : { "id" : "236", "degree_layout" : 2, "gal80Rexp" : 0.066, "gal1RGsig" : 0.6115, "Eccentricity" : 1, "gal4RGsig" : 0.59236, "shared_name" : "YMR021C", "TopologicalCoefficient" : 0.0, "SUID" : 236, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.54119, "ClosenessCentrality" : 1.0, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 2, "BetweennessCentrality" : 1.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.022, "name" : "YMR021C", "COMMON" : "MAC1", "gal4RGexp" : -0.032, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "235", "degree_layout" : 1, "gal80Rexp" : 0.282, "gal1RGsig" : 4.6835E-9, "Eccentricity" : 2, "gal4RGsig" : 0.0018109, "shared_name" : "YLR214W", "TopologicalCoefficient" : 0.0, "SUID" : 235, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 0.039051, "ClosenessCentrality" : 0.66666667, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.518, "name" : "YLR214W", "COMMON" : "FRE1", "gal4RGexp" : -0.279, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "234", "degree_layout" : 2, "gal80Rexp" : 0.272, "gal1RGsig" : 0.8595, "Eccentricity" : 20, "gal4RGsig" : 0.071598, "shared_name" : "YDR335W", "TopologicalCoefficient" : 0.5, "SUID" : 234, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 10.31048387, "selected" : false, "gal80Rsig" : 0.2334, "ClosenessCentrality" : 0.09698866, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.65516726, "Stress" : 7266, "BetweennessCentrality" : 0.05928044, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.028, "name" : "YDR335W", "COMMON" : "MSN5", "gal4RGexp" : 0.189, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "233", "degree_layout" : 3, "gal80Rexp" : -0.356, "gal1RGsig" : 5.1646E-8, "Eccentricity" : 21, "gal4RGsig" : 0.10372, "shared_name" : "YDR174W", "TopologicalCoefficient" : 0.33333333, "SUID" : 233, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 10.81854839, "selected" : false, "gal80Rsig" : 3.4721E-8, "ClosenessCentrality" : 0.09243384, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.63635006, "Stress" : 8006, "BetweennessCentrality" : 0.06016549, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.314, "name" : "YDR174W", "COMMON" : "HMO1", "gal4RGexp" : -0.083, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.66666667 } }, { "data" : { "id" : "232", "degree_layout" : 1, "gal80Rexp" : -0.24, "gal1RGsig" : 1.7163E-4, "Eccentricity" : 23, "gal4RGsig" : 0.27319, "shared_name" : "YLL028W", "TopologicalCoefficient" : 0.0, "SUID" : 232, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 12.63306452, "selected" : false, "gal80Rsig" : 0.0047822, "ClosenessCentrality" : 0.07915736, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.56914576, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.189, "name" : "YLL028W", "COMMON" : "TPO1", "gal4RGexp" : -0.101, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "231", "degree_layout" : 3, "gal80Rexp" : 0.147, "gal1RGsig" : 0.33486, "Eccentricity" : 22, "gal4RGsig" : 0.0012181, "shared_name" : "YGL166W", "TopologicalCoefficient" : 0.66666667, "SUID" : 231, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 11.63709677, "selected" : false, "gal80Rsig" : 0.032147, "ClosenessCentrality" : 0.08593209, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.60603345, "Stress" : 2010, "BetweennessCentrality" : 0.00808084, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.073, "name" : "YGL166W", "COMMON" : "CUP2", "gal4RGexp" : 0.243, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.66666667 } }, { "data" : { "id" : "230", "degree_layout" : 1, "gal80Rexp" : -0.278, "gal1RGsig" : 1.705E-5, "Eccentricity" : 1, "gal4RGsig" : 0.048133, "shared_name" : "YDL081C", "TopologicalCoefficient" : 0.0, "SUID" : 230, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 5.9631E-6, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.429, "name" : "YDL081C", "COMMON" : "RPP1A", "gal4RGexp" : -0.094, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "229", "degree_layout" : 1, "gal80Rexp" : -0.361, "gal1RGsig" : 4.9964E-6, "Eccentricity" : 1, "gal4RGsig" : 0.0063648, "shared_name" : "YLR340W", "TopologicalCoefficient" : 0.0, "SUID" : 229, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 2.0593E-7, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.259, "name" : "YLR340W", "COMMON" : "RPP0", "gal4RGexp" : -0.148, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "228", "degree_layout" : 2, "gal80Rexp" : 0.608, "gal1RGsig" : 0.96433, "Eccentricity" : 15, "gal4RGsig" : 2.8457E-4, "shared_name" : "YKL074C", "TopologicalCoefficient" : 0.5, "SUID" : 228, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.81048387, "selected" : false, "gal80Rsig" : 3.4465E-4, "ClosenessCentrality" : 0.14683245, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78479689, "Stress" : 5180, "BetweennessCentrality" : 0.03966958, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.002, "name" : "YKL074C", "COMMON" : "MUD2", "gal4RGexp" : -0.294, "IsSingleNode" : false, "NeighborhoodConnectivity" : 7.0 } }, { "data" : { "id" : "227", "degree_layout" : 4, "gal80Rexp" : -0.0, "gal1RGsig" : 0.37089, "Eccentricity" : 22, "gal4RGsig" : 0.45319, "shared_name" : "YML064C", "TopologicalCoefficient" : 0.25, "SUID" : 227, "SelfLoops" : 0, "NumberOfDirectedEdges" : 4, "AverageShortestPathLength" : 11.1733871, "selected" : false, "gal80Rsig" : 0.999999, "ClosenessCentrality" : 0.08949838, "Degree" : 4, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.62320789, "Stress" : 9690, "BetweennessCentrality" : 0.05441934, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.218, "name" : "YML064C", "COMMON" : "TEM1", "gal4RGexp" : -0.069, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.75 } }, { "data" : { "id" : "226", "degree_layout" : 2, "gal80Rexp" : 0.119, "gal1RGsig" : 0.037285, "Eccentricity" : 3, "gal4RGsig" : 0.23999, "shared_name" : "YHR135C", "TopologicalCoefficient" : 0.5, "SUID" : 226, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.75, "selected" : false, "gal80Rsig" : 0.037227, "ClosenessCentrality" : 0.57142857, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.8125, "Stress" : 6, "BetweennessCentrality" : 0.5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.082, "name" : "YHR135C", "COMMON" : "YCK1", "gal4RGexp" : -0.049, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.5 } }, { "data" : { "id" : "225", "degree_layout" : 1, "gal80Rexp" : 0.358, "gal1RGsig" : 2.6759E-4, "Eccentricity" : 4, "gal4RGsig" : 0.63152, "shared_name" : "YNL116W", "TopologicalCoefficient" : 0.0, "SUID" : 225, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.5, "selected" : false, "gal80Rsig" : 2.7658E-4, "ClosenessCentrality" : 0.4, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.625, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.165, "name" : "YNL116W", "COMMON" : "YNL116W", "gal4RGexp" : 0.027, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "224", "degree_layout" : 2, "gal80Rexp" : 0.029, "gal1RGsig" : 0.0026155, "Eccentricity" : 18, "gal4RGsig" : 0.19124, "shared_name" : "YNL047C", "TopologicalCoefficient" : 0.5, "SUID" : 224, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.88709677, "selected" : false, "gal80Rsig" : 0.7773, "ClosenessCentrality" : 0.11252269, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.7078853, "Stress" : 6152, "BetweennessCentrality" : 0.02544919, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.14, "name" : "YNL047C", "COMMON" : "YNL047C", "gal4RGexp" : -0.078, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "223", "degree_layout" : 2, "gal80Rexp" : -0.438, "gal1RGsig" : 0.76333, "Eccentricity" : 3, "gal4RGsig" : 0.21924, "shared_name" : "YNL154C", "TopologicalCoefficient" : 0.5, "SUID" : 223, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.75, "selected" : false, "gal80Rsig" : 2.3558E-7, "ClosenessCentrality" : 0.57142857, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.8125, "Stress" : 6, "BetweennessCentrality" : 0.5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.013, "name" : "YNL154C", "COMMON" : "YCK2", "gal4RGexp" : -0.066, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.5 } }, { "data" : { "id" : "222", "degree_layout" : 1, "gal80Rexp" : 0.16, "gal1RGsig" : 6.4944E-6, "Eccentricity" : 4, "gal4RGsig" : 0.9794, "shared_name" : "YKL204W", "TopologicalCoefficient" : 0.0, "SUID" : 222, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.5, "selected" : false, "gal80Rsig" : 0.091109, "ClosenessCentrality" : 0.4, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.625, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.253, "name" : "YKL204W", "COMMON" : "YKL204W", "gal4RGexp" : -0.002, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "221", "degree_layout" : 3, "Eccentricity" : 15, "shared_name" : "?", "TopologicalCoefficient" : 0.40350877, "SUID" : 221, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 6.46370968, "selected" : false, "ClosenessCentrality" : 0.15470992, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.33333333, "Radiality" : 0.79764038, "Stress" : 7092, "BetweennessCentrality" : 0.05357439, "NumberOfUndirectedEdges" : 0, "name" : "?", "COMMON" : "", "IsSingleNode" : false, "NeighborhoodConnectivity" : 8.0 } }, { "data" : { "id" : "220", "degree_layout" : 1, "gal80Rexp" : 0.111, "gal1RGsig" : 0.47775, "Eccentricity" : 18, "gal4RGsig" : 2.5298E-5, "shared_name" : "YJR066W", "TopologicalCoefficient" : 0.0, "SUID" : 220, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.75806452, "selected" : false, "gal80Rsig" : 0.1951, "ClosenessCentrality" : 0.10247934, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.67562724, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.028, "name" : "YJR066W", "COMMON" : "TOR1", "gal4RGexp" : 0.326, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "219", "degree_layout" : 2, "gal80Rexp" : -0.314, "gal1RGsig" : 1.427E-5, "Eccentricity" : 2, "gal4RGsig" : 0.18479, "shared_name" : "YDR382W", "TopologicalCoefficient" : 0.5, "SUID" : 219, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 1.4245E-7, "ClosenessCentrality" : 0.66666667, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.83333333, "Stress" : 6, "BetweennessCentrality" : 0.5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.218, "name" : "YDR382W", "COMMON" : "RPP2B", "gal4RGexp" : -0.058, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "218", "degree_layout" : 1, "gal80Rexp" : -0.24, "gal1RGsig" : 1.0483E-5, "Eccentricity" : 3, "gal4RGsig" : 0.01128, "shared_name" : "YDL130W", "TopologicalCoefficient" : 0.0, "SUID" : 218, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.25, "selected" : false, "gal80Rsig" : 2.1405E-5, "ClosenessCentrality" : 0.44444444, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.58333333, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.3, "name" : "YDL130W", "COMMON" : "RPP1B", "gal4RGexp" : -0.123, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "217", "degree_layout" : 3, "gal80Rexp" : -0.527, "gal1RGsig" : 3.2175E-4, "Eccentricity" : 2, "gal4RGsig" : 1.31E-4, "shared_name" : "YFL039C", "TopologicalCoefficient" : 0.33333333, "SUID" : 217, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 1.25, "selected" : false, "gal80Rsig" : 6.0582E-12, "ClosenessCentrality" : 0.8, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.91666667, "Stress" : 10, "BetweennessCentrality" : 0.83333333, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.16, "name" : "YFL039C", "COMMON" : "ACT1", "gal4RGexp" : 0.192, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.33333333 } }, { "data" : { "id" : "216", "degree_layout" : 1, "gal80Rexp" : -0.221, "gal1RGsig" : 0.0093643, "Eccentricity" : 3, "gal4RGsig" : 1.0508E-6, "shared_name" : "YCL040W", "TopologicalCoefficient" : 0.0, "SUID" : 216, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.0, "selected" : false, "gal80Rsig" : 2.0566E-4, "ClosenessCentrality" : 0.5, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66666667, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.146, "name" : "YCL040W", "COMMON" : "GLK1", "gal4RGexp" : 0.542, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "215", "degree_layout" : 1, "gal80Rexp" : -0.671, "gal1RGsig" : 2.6358E-8, "Eccentricity" : 3, "gal4RGsig" : 0.098356, "shared_name" : "YHR179W", "TopologicalCoefficient" : 0.0, "SUID" : 215, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.0, "selected" : false, "gal80Rsig" : 3.6995E-11, "ClosenessCentrality" : 0.5, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66666667, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.565, "name" : "YHR179W", "COMMON" : "OYE2", "gal4RGexp" : 0.078, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "214", "degree_layout" : 7, "gal80Rexp" : -0.53, "gal1RGsig" : 2.4947E-7, "Eccentricity" : 18, "gal4RGsig" : 0.046834, "shared_name" : "YPL075W", "TopologicalCoefficient" : 0.28571429, "SUID" : 214, "SelfLoops" : 0, "NumberOfDirectedEdges" : 7, "AverageShortestPathLength" : 7.49193548, "selected" : false, "gal80Rsig" : 5.2661E-6, "ClosenessCentrality" : 0.13347686, "Degree" : 7, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75955795, "Stress" : 90670, "BetweennessCentrality" : 0.18002254, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.373, "name" : "YPL075W", "COMMON" : "GCR1", "gal4RGexp" : -0.207, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.42857143 } }, { "data" : { "id" : "213", "degree_layout" : 3, "gal80Rexp" : 0.433, "gal1RGsig" : 0.005054, "Eccentricity" : 19, "gal4RGsig" : 0.0077746, "shared_name" : "YNL199C", "TopologicalCoefficient" : 0.33333333, "SUID" : 213, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 7.87096774, "selected" : false, "gal80Rsig" : 5.6535E-5, "ClosenessCentrality" : 0.12704918, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74551971, "Stress" : 89866, "BetweennessCentrality" : 0.19692135, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.121, "name" : "YNL199C", "COMMON" : "GCR2", "gal4RGexp" : -0.162, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "212", "degree_layout" : 3, "gal80Rexp" : 0.289, "gal1RGsig" : 0.12893, "Eccentricity" : 20, "gal4RGsig" : 0.54556, "shared_name" : "YPR048W", "TopologicalCoefficient" : 0.33333333, "SUID" : 212, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 8.41532258, "selected" : false, "gal80Rsig" : 0.063048, "ClosenessCentrality" : 0.11883086, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.72535842, "Stress" : 19552, "BetweennessCentrality" : 0.07083561, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.113, "name" : "YPR048W", "COMMON" : "TAH18", "gal4RGexp" : -0.191, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.66666667 } }, { "data" : { "id" : "211", "degree_layout" : 2, "gal80Rexp" : 0.427, "gal1RGsig" : 2.6832E-5, "Eccentricity" : 18, "gal4RGsig" : 5.2576E-4, "shared_name" : "YLR321C", "TopologicalCoefficient" : 0.5, "SUID" : 211, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.12096774, "selected" : false, "gal80Rsig" : 0.0047054, "ClosenessCentrality" : 0.12313803, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.73626045, "Stress" : 1032, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.252, "name" : "YLR321C", "COMMON" : "SFH1", "gal4RGexp" : -0.352, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "210", "degree_layout" : 1, "gal80Rexp" : -0.447, "gal1RGsig" : 1.3135E-6, "Eccentricity" : 21, "gal4RGsig" : 2.3868E-5, "shared_name" : "YBR072W", "TopologicalCoefficient" : 0.0, "SUID" : 210, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 10.6733871, "selected" : false, "gal80Rsig" : 3.3493E-11, "ClosenessCentrality" : 0.09369097, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.6417264, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -1.232, "name" : "YBR072W", "COMMON" : "HSP26", "gal4RGexp" : 0.895, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "209", "degree_layout" : 5, "gal80Rexp" : 0.543, "gal1RGsig" : 0.034847, "Eccentricity" : 20, "gal4RGsig" : 0.42981, "shared_name" : "YGL073W", "TopologicalCoefficient" : 0.25, "SUID" : 209, "SelfLoops" : 0, "NumberOfDirectedEdges" : 5, "AverageShortestPathLength" : 9.67741935, "selected" : false, "gal80Rsig" : 6.2254E-4, "ClosenessCentrality" : 0.10333333, "Degree" : 5, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.6786141, "Stress" : 9976, "BetweennessCentrality" : 0.06332441, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.104, "name" : "YGL073W", "COMMON" : "HSF1", "gal4RGexp" : -0.084, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "208", "degree_layout" : 1, "gal80Rexp" : -0.026, "gal1RGsig" : 1.9402E-6, "Eccentricity" : 17, "gal4RGsig" : 7.0045E-6, "shared_name" : "YBL069W", "TopologicalCoefficient" : 0.0, "SUID" : 208, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 7.8266129, "selected" : false, "gal80Rsig" : 0.87354, "ClosenessCentrality" : 0.12776919, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74716249, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.272, "name" : "YBL069W", "COMMON" : "AST1", "gal4RGexp" : -0.487, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "207", "degree_layout" : 5, "gal80Rexp" : -0.573, "gal1RGsig" : 0.045195, "Eccentricity" : 16, "gal4RGsig" : 0.79134, "shared_name" : "YNL189W", "TopologicalCoefficient" : 0.2, "SUID" : 207, "SelfLoops" : 0, "NumberOfDirectedEdges" : 5, "AverageShortestPathLength" : 7.82258065, "selected" : false, "gal80Rsig" : 1.4096E-8, "ClosenessCentrality" : 0.12783505, "Degree" : 5, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74731183, "Stress" : 9016, "BetweennessCentrality" : 0.05593286, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.082, "name" : "YNL189W", "COMMON" : "SRP1", "gal4RGexp" : 0.014, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.8 } }, { "data" : { "id" : "206", "degree_layout" : 1, "gal80Rexp" : -0.258, "gal1RGsig" : 2.9509E-4, "Eccentricity" : 17, "gal4RGsig" : 5.3874E-5, "shared_name" : "YDL236W", "TopologicalCoefficient" : 0.0, "SUID" : 206, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.81854839, "selected" : false, "gal80Rsig" : 8.095E-4, "ClosenessCentrality" : 0.11339735, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71042413, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.223, "name" : "YDL236W", "COMMON" : "PHO13", "gal4RGexp" : -0.311, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "205", "degree_layout" : 3, "gal80Rexp" : 0.957, "gal1RGsig" : 7.2553E-4, "Eccentricity" : 17, "gal4RGsig" : 1.8582E-4, "shared_name" : "YPL111W", "TopologicalCoefficient" : 0.4, "SUID" : 205, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 8.79435484, "selected" : false, "gal80Rsig" : 5.2368E-11, "ClosenessCentrality" : 0.11370931, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71132019, "Stress" : 4114, "BetweennessCentrality" : 0.02401397, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.186, "name" : "YPL111W", "COMMON" : "CAR1", "gal4RGexp" : -0.26, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "204", "degree_layout" : 1, "gal80Rexp" : -0.071, "gal1RGsig" : 0.066907, "Eccentricity" : 17, "gal4RGsig" : 0.006637, "shared_name" : "YPR062W", "TopologicalCoefficient" : 0.0, "SUID" : 204, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.81854839, "selected" : false, "gal80Rsig" : 0.26496, "ClosenessCentrality" : 0.11339735, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71042413, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.07, "name" : "YPR062W", "COMMON" : "FCY1", "gal4RGexp" : -0.145, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "203", "degree_layout" : 2, "gal80Rexp" : 0.21, "gal1RGsig" : 0.18355, "Eccentricity" : 16, "gal4RGsig" : 0.0039398, "shared_name" : "YLR319C", "TopologicalCoefficient" : 0.5, "SUID" : 203, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.09274194, "selected" : false, "gal80Rsig" : 0.072655, "ClosenessCentrality" : 0.1409892, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.77434289, "Stress" : 6196, "BetweennessCentrality" : 0.07052718, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.071, "name" : "YLR319C", "COMMON" : "BUD6", "gal4RGexp" : -0.201, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.5 } }, { "data" : { "id" : "202", "degree_layout" : 2, "gal80Rexp" : -0.169, "gal1RGsig" : 0.3444, "Eccentricity" : 2, "gal4RGsig" : 0.0089606, "shared_name" : "YNL311C", "TopologicalCoefficient" : 0.5, "SUID" : 202, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.33333333, "selected" : false, "gal80Rsig" : 0.12031, "ClosenessCentrality" : 0.75, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.88888889, "Stress" : 4, "BetweennessCentrality" : 0.66666667, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.055, "name" : "YNL311C", "COMMON" : "YNL311C", "gal4RGexp" : -0.388, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.5 } }, { "data" : { "id" : "201", "degree_layout" : 1, "gal80Rexp" : 0.683, "gal1RGsig" : 0.0020562, "Eccentricity" : 3, "gal4RGsig" : 2.7503E-6, "shared_name" : "YKL001C", "TopologicalCoefficient" : 0.0, "SUID" : 201, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.0, "selected" : false, "gal80Rsig" : 2.7054E-7, "ClosenessCentrality" : 0.5, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66666667, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.152, "name" : "YKL001C", "COMMON" : "MET14", "gal4RGexp" : -0.474, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "200", "degree_layout" : 1, "gal80Rexp" : -0.138, "gal1RGsig" : 6.846E-7, "Eccentricity" : 3, "gal4RGsig" : 0.024371, "shared_name" : "YOL016C", "TopologicalCoefficient" : 0.0, "SUID" : 200, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.0, "selected" : false, "gal80Rsig" : 0.027128, "ClosenessCentrality" : 0.5, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66666667, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.365, "name" : "YOL016C", "COMMON" : "CMK2", "gal4RGexp" : -0.108, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "199", "degree_layout" : 3, "gal80Rexp" : -0.163, "gal1RGsig" : 0.024989, "Eccentricity" : 2, "gal4RGsig" : 0.13694, "shared_name" : "YBR109C", "TopologicalCoefficient" : 0.33333333, "SUID" : 199, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 1.25, "selected" : false, "gal80Rsig" : 0.0092082, "ClosenessCentrality" : 0.8, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.91666667, "Stress" : 10, "BetweennessCentrality" : 0.83333333, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.089, "name" : "YBR109C", "COMMON" : "CMD1", "gal4RGexp" : 0.074, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.33333333 } }, { "data" : { "id" : "198", "degree_layout" : 1, "gal80Rexp" : 0.376, "gal1RGsig" : 1.3457E-4, "Eccentricity" : 1, "gal4RGsig" : 0.36812, "shared_name" : "YJL036W", "TopologicalCoefficient" : 0.0, "SUID" : 198, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 9.7735E-4, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.195, "name" : "YJL036W", "COMMON" : "SNX4", "gal4RGexp" : -0.051, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "197", "degree_layout" : 1, "gal80Rexp" : 0.304, "gal1RGsig" : 9.9404E-5, "Eccentricity" : 1, "gal4RGsig" : 0.8523, "shared_name" : "YDL113C", "TopologicalCoefficient" : 0.0, "SUID" : 197, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.0063436, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.189, "name" : "YDL113C", "COMMON" : "YDL113C", "gal4RGexp" : 0.011, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "196", "degree_layout" : 1, "gal80Rexp" : -0.265, "gal1RGsig" : 4.7824E-4, "Eccentricity" : 2, "gal4RGsig" : 3.204E-7, "shared_name" : "YEL041W", "TopologicalCoefficient" : 0.0, "SUID" : 196, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 0.035715, "ClosenessCentrality" : 0.66666667, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.211, "name" : "YEL041W", "COMMON" : "YEL041W", "gal4RGexp" : 0.393, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "195", "degree_layout" : 2, "gal80Rexp" : 0.138, "gal1RGsig" : 0.143, "Eccentricity" : 1, "gal4RGsig" : 0.33678, "shared_name" : "YHR115C", "TopologicalCoefficient" : 0.0, "SUID" : 195, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.079261, "ClosenessCentrality" : 1.0, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 2, "BetweennessCentrality" : 1.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.056, "name" : "YHR115C", "COMMON" : "YHR115C", "gal4RGexp" : 0.044, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "194", "degree_layout" : 2, "gal80Rexp" : -0.18, "gal1RGsig" : 0.024036, "Eccentricity" : 16, "gal4RGsig" : 0.079913, "shared_name" : "YNL167C", "TopologicalCoefficient" : 0.5, "SUID" : 194, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.66129032, "selected" : false, "gal80Rsig" : 0.015501, "ClosenessCentrality" : 0.13052632, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75328554, "Stress" : 1474, "BetweennessCentrality" : 0.00818695, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.095, "name" : "YNL167C", "COMMON" : "SKO1", "gal4RGexp" : 0.1, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "193", "degree_layout" : 1, "gal80Rexp" : 0.971, "gal1RGsig" : 0.055312, "Eccentricity" : 1, "gal4RGsig" : 0.0023991, "shared_name" : "YDL063C", "TopologicalCoefficient" : 0.0, "SUID" : 193, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.0013668, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.093, "name" : "YDL063C", "COMMON" : "YDL063C", "gal4RGexp" : -0.755, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "192", "degree_layout" : 1, "gal80Rexp" : -0.246, "gal1RGsig" : 1.0523E-5, "Eccentricity" : 1, "gal4RGsig" : 0.0049489, "shared_name" : "YPL131W", "TopologicalCoefficient" : 0.0, "SUID" : 192, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 1.4759E-4, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.228, "name" : "YPL131W", "COMMON" : "RPL5", "gal4RGexp" : -0.149, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "191", "degree_layout" : 2, "gal80Rexp" : -0.164, "gal1RGsig" : 0.053915, "Eccentricity" : 18, "gal4RGsig" : 8.9167E-4, "shared_name" : "YGL161C", "TopologicalCoefficient" : 0.66666667, "SUID" : 191, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 9.23387097, "selected" : false, "gal80Rsig" : 0.0065587, "ClosenessCentrality" : 0.10829694, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 0.69504182, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.07, "name" : "YGL161C", "COMMON" : "YGL161C", "gal4RGexp" : 0.172, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "190", "degree_layout" : 2, "gal80Rexp" : -0.415, "gal1RGsig" : 0.86711, "Eccentricity" : 18, "gal4RGsig" : 1.3164E-5, "shared_name" : "YDR100W", "TopologicalCoefficient" : 0.66666667, "SUID" : 190, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 9.23387097, "selected" : false, "gal80Rsig" : 5.7948E-10, "ClosenessCentrality" : 0.10829694, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 0.69504182, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.007, "name" : "YDR100W", "COMMON" : "YDR100W", "gal4RGexp" : 0.275, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "189", "degree_layout" : 1, "gal80Rexp" : -0.825, "gal1RGsig" : 2.1741E-11, "Eccentricity" : 20, "gal4RGsig" : 0.0021146, "shared_name" : "YMR183C", "TopologicalCoefficient" : 0.0, "SUID" : 189, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 10.64919355, "selected" : false, "gal80Rsig" : 1.0306E-16, "ClosenessCentrality" : 0.09390382, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.64262246, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.822, "name" : "YMR183C", "COMMON" : "SSO2", "gal4RGexp" : 0.256, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "188", "degree_layout" : 5, "gal80Rexp" : 0.302, "gal1RGsig" : 2.9579E-5, "Eccentricity" : 19, "gal4RGsig" : 0.017416, "shared_name" : "YGR009C", "TopologicalCoefficient" : 0.26666667, "SUID" : 188, "SelfLoops" : 0, "NumberOfDirectedEdges" : 5, "AverageShortestPathLength" : 9.65322581, "selected" : false, "gal80Rsig" : 4.4067E-4, "ClosenessCentrality" : 0.10359231, "Degree" : 5, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.67951016, "Stress" : 10322, "BetweennessCentrality" : 0.09214253, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.236, "name" : "YGR009C", "COMMON" : "SEC9", "gal4RGexp" : -0.185, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.8 } }, { "data" : { "id" : "187", "degree_layout" : 1, "gal80Rexp" : -0.397, "gal1RGsig" : 7.9783E-8, "Eccentricity" : 2, "gal4RGsig" : 0.012617, "shared_name" : "YMR291W", "TopologicalCoefficient" : 0.0, "SUID" : 187, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 5.3037E-9, "ClosenessCentrality" : 0.66666667, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.363, "name" : "YMR291W", "COMMON" : "YMR291W", "gal4RGexp" : 0.256, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "186", "degree_layout" : 2, "gal80Rexp" : 0.364, "gal1RGsig" : 0.696, "Eccentricity" : 1, "gal4RGsig" : 0.028001, "shared_name" : "YGR048W", "TopologicalCoefficient" : 0.0, "SUID" : 186, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.0043651, "ClosenessCentrality" : 1.0, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 2, "BetweennessCentrality" : 1.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.017, "name" : "YGR048W", "COMMON" : "UFD1", "gal4RGexp" : -0.155, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "185", "degree_layout" : 1, "gal80Rexp" : 0.514, "gal1RGsig" : 6.9654E-7, "Eccentricity" : 2, "gal4RGsig" : 1.3673E-4, "shared_name" : "YPL222W", "TopologicalCoefficient" : 0.0, "SUID" : 185, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 4.6216E-5, "ClosenessCentrality" : 0.66666667, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.344, "name" : "YPL222W", "COMMON" : "YPL222W", "gal4RGexp" : 0.284, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "184", "degree_layout" : 2, "gal80Rexp" : 0.303, "gal1RGsig" : 0.66515, "Eccentricity" : 15, "gal4RGsig" : 0.0017369, "shared_name" : "YAL040C", "TopologicalCoefficient" : 0.55, "SUID" : 184, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.62903226, "selected" : false, "gal80Rsig" : 0.0010074, "ClosenessCentrality" : 0.15085158, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 0.79151732, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.027, "name" : "YAL040C", "COMMON" : "CLN3", "gal4RGexp" : -0.206, "IsSingleNode" : false, "NeighborhoodConnectivity" : 11.0 } }, { "data" : { "id" : "183", "degree_layout" : 2, "gal80Rexp" : 0.348, "gal1RGsig" : 0.099513, "Eccentricity" : 18, "gal4RGsig" : 6.9671E-4, "shared_name" : "YFR034C", "TopologicalCoefficient" : 0.5, "SUID" : 183, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.25806452, "selected" : false, "gal80Rsig" : 0.020802, "ClosenessCentrality" : 0.12109375, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.7311828, "Stress" : 1048, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.121, "name" : "YFR034C", "COMMON" : "PHO4", "gal4RGexp" : -0.336, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.5 } }, { "data" : { "id" : "182", "degree_layout" : 1, "gal80Rexp" : 0.35, "gal1RGsig" : 1.5078E-6, "Eccentricity" : 1, "gal4RGsig" : 0.013849, "shared_name" : "YFR037C", "TopologicalCoefficient" : 0.0, "SUID" : 182, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.0035541, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.297, "name" : "YFR037C", "COMMON" : "RSC8", "gal4RGexp" : -0.226, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "181", "degree_layout" : 1, "gal80Rexp" : -0.577, "gal1RGsig" : 0.0030289, "Eccentricity" : 1, "gal4RGsig" : 0.029664, "shared_name" : "YOR290C", "TopologicalCoefficient" : 0.0, "SUID" : 181, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 3.6284E-13, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.119, "name" : "YOR290C", "COMMON" : "SNF2", "gal4RGexp" : -0.101, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "180", "degree_layout" : 6, "gal80Rexp" : -0.051, "gal1RGsig" : 0.20733, "Eccentricity" : 18, "gal4RGsig" : 0.063996, "shared_name" : "YER133W", "TopologicalCoefficient" : 0.1875, "SUID" : 180, "SelfLoops" : 0, "NumberOfDirectedEdges" : 6, "AverageShortestPathLength" : 7.91935484, "selected" : false, "gal80Rsig" : 0.36616, "ClosenessCentrality" : 0.12627291, "Degree" : 6, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.7437276, "Stress" : 38412, "BetweennessCentrality" : 0.19096905, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.051, "name" : "YER133W", "COMMON" : "GLC7", "gal4RGexp" : -0.085, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "179", "degree_layout" : 3, "gal80Rexp" : -0.187, "gal1RGsig" : 0.0010176, "Eccentricity" : 19, "gal4RGsig" : 1.5883E-6, "shared_name" : "YOR178C", "TopologicalCoefficient" : 0.36666667, "SUID" : 179, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 8.74596774, "selected" : false, "gal80Rsig" : 0.0036854, "ClosenessCentrality" : 0.1143384, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71311231, "Stress" : 22434, "BetweennessCentrality" : 0.11450307, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.137, "name" : "YOR178C", "COMMON" : "GAC1", "gal4RGexp" : 0.462, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.66666667 } }, { "data" : { "id" : "178", "degree_layout" : 1, "gal80Rexp" : -0.063, "gal1RGsig" : 0.13594, "Eccentricity" : 19, "gal4RGsig" : 4.7159E-6, "shared_name" : "YOR315W", "TopologicalCoefficient" : 0.0, "SUID" : 178, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.91532258, "selected" : false, "gal80Rsig" : 0.50938, "ClosenessCentrality" : 0.11216644, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.7068399, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.066, "name" : "YOR315W", "COMMON" : "YOR315W", "gal4RGexp" : -0.462, "IsSingleNode" : false, "NeighborhoodConnectivity" : 6.0 } }, { "data" : { "id" : "177", "degree_layout" : 1, "gal80Rexp" : 0.349, "gal1RGsig" : 0.0015202, "Eccentricity" : 19, "gal4RGsig" : 0.64469, "shared_name" : "YMR311C", "TopologicalCoefficient" : 0.0, "SUID" : 177, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.91532258, "selected" : false, "gal80Rsig" : 6.5604E-6, "ClosenessCentrality" : 0.11216644, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.7068399, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.214, "name" : "YMR311C", "COMMON" : "GLC8", "gal4RGexp" : 0.021, "IsSingleNode" : false, "NeighborhoodConnectivity" : 6.0 } }, { "data" : { "id" : "176", "degree_layout" : 1, "gal80Rexp" : 0.122, "gal1RGsig" : 6.914E-8, "Eccentricity" : 19, "gal4RGsig" : 2.9767E-8, "shared_name" : "YBR050C", "TopologicalCoefficient" : 0.0, "SUID" : 176, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.91532258, "selected" : false, "gal80Rsig" : 0.28411, "ClosenessCentrality" : 0.11216644, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.7068399, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.432, "name" : "YBR050C", "COMMON" : "REG2", "gal4RGexp" : 0.679, "IsSingleNode" : false, "NeighborhoodConnectivity" : 6.0 } }, { "data" : { "id" : "175", "degree_layout" : 2, "gal80Rexp" : -1.131, "gal1RGsig" : 4.1442E-7, "Eccentricity" : 15, "gal4RGsig" : 1.7862E-9, "shared_name" : "YIL162W", "TopologicalCoefficient" : 0.5, "SUID" : 175, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.78629032, "selected" : false, "gal80Rsig" : 1.7403E-20, "ClosenessCentrality" : 0.14735591, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78569295, "Stress" : 2426, "BetweennessCentrality" : 0.01410579, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.318, "name" : "YIL162W", "COMMON" : "SUC2", "gal4RGexp" : 0.688, "IsSingleNode" : false, "NeighborhoodConnectivity" : 6.5 } }, { "data" : { "id" : "174", "degree_layout" : 1, "gal80Rexp" : 0.12, "gal1RGsig" : 0.056883, "Eccentricity" : 18, "gal4RGsig" : 0.44841, "shared_name" : "YFL038C", "TopologicalCoefficient" : 0.0, "SUID" : 174, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.23790323, "selected" : false, "gal80Rsig" : 0.073548, "ClosenessCentrality" : 0.10824967, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.69489247, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.075, "name" : "YFL038C", "COMMON" : "YPT1", "gal4RGexp" : -0.033, "IsSingleNode" : false, "NeighborhoodConnectivity" : 6.0 } }, { "data" : { "id" : "173", "degree_layout" : 2, "gal80Rexp" : 0.43, "gal1RGsig" : 1.6613E-4, "Eccentricity" : 19, "gal4RGsig" : 0.45777, "shared_name" : "YOR355W", "TopologicalCoefficient" : 0.5, "SUID" : 173, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.06854839, "selected" : false, "gal80Rsig" : 0.0062666, "ClosenessCentrality" : 0.12393803, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.73820191, "Stress" : 4248, "BetweennessCentrality" : 0.03283069, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.176, "name" : "YOR355W", "COMMON" : "GDS1", "gal4RGexp" : -0.044, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "172", "degree_layout" : 1, "gal80Rexp" : 0.389, "gal1RGsig" : 0.02495, "Eccentricity" : 1, "gal4RGsig" : 5.2953E-5, "shared_name" : "YML074C", "TopologicalCoefficient" : 0.0, "SUID" : 172, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 3.3233E-5, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.118, "name" : "YML074C", "COMMON" : "NPI46", "gal4RGexp" : -0.38, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "171", "degree_layout" : 1, "gal80Rexp" : -0.184, "gal1RGsig" : 1.0479E-5, "Eccentricity" : 1, "gal4RGsig" : 1.8121E-6, "shared_name" : "YJL190C", "TopologicalCoefficient" : 0.0, "SUID" : 171, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.0020712, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.444, "name" : "YJL190C", "COMMON" : "RPS22A", "gal4RGexp" : -0.443, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "170", "degree_layout" : 1, "gal80Rexp" : 0.64, "gal1RGsig" : 3.6962E-8, "Eccentricity" : 1, "gal4RGsig" : 4.7738E-4, "shared_name" : "YMR058W", "TopologicalCoefficient" : 0.0, "SUID" : 170, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 1.6005E-8, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.449, "name" : "YMR058W", "COMMON" : "FET3", "gal4RGexp" : -0.293, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "169", "degree_layout" : 1, "gal80Rexp" : 0.868, "gal1RGsig" : 6.6247E-9, "Eccentricity" : 1, "gal4RGsig" : 6.332E-5, "shared_name" : "YER145C", "TopologicalCoefficient" : 0.0, "SUID" : 169, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 5.9656E-7, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.647, "name" : "YER145C", "COMMON" : "FTR1", "gal4RGexp" : -0.78, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "168", "degree_layout" : 1, "gal80Rexp" : 0.692, "gal1RGsig" : 0.0015163, "Eccentricity" : 19, "gal4RGsig" : 0.019412, "shared_name" : "YML123C", "TopologicalCoefficient" : 0.0, "SUID" : 168, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.25403226, "selected" : false, "gal80Rsig" : 6.9606E-7, "ClosenessCentrality" : 0.108061, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.6942951, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.283, "name" : "YML123C", "COMMON" : "PHO84", "gal4RGexp" : -0.114, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "167", "degree_layout" : 2, "gal80Rexp" : -0.139, "gal1RGsig" : 0.012838, "Eccentricity" : 24, "gal4RGsig" : 0.0056375, "shared_name" : "YPL031C", "TopologicalCoefficient" : 0.5, "SUID" : 167, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 13.4516129, "selected" : false, "gal80Rsig" : 0.019984, "ClosenessCentrality" : 0.07434053, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.53882915, "Stress" : 1970, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.106, "name" : "YPL031C", "COMMON" : "PHO85", "gal4RGexp" : 0.125, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.5 } }, { "data" : { "id" : "166", "degree_layout" : 1, "gal80Rexp" : -0.499, "gal1RGsig" : 5.0065E-11, "Eccentricity" : 25, "gal4RGsig" : 4.2811E-6, "shared_name" : "YHR071W", "TopologicalCoefficient" : 0.0, "SUID" : 166, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 14.44758065, "selected" : false, "gal80Rsig" : 6.8054E-8, "ClosenessCentrality" : 0.06921574, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.50194146, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.614, "name" : "YHR071W", "COMMON" : "PCL5", "gal4RGexp" : -0.67, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "165", "degree_layout" : 4, "gal80Rexp" : -1.167, "gal1RGsig" : 0.080275, "Eccentricity" : 16, "gal4RGsig" : 4.3863E-8, "shared_name" : "YML051W", "TopologicalCoefficient" : 0.5, "SUID" : 165, "SelfLoops" : 0, "NumberOfDirectedEdges" : 4, "AverageShortestPathLength" : 7.62096774, "selected" : false, "gal80Rsig" : 8.1952E-17, "ClosenessCentrality" : 0.13121693, "Degree" : 4, "PartnerOfMultiEdgedNodePairs" : 1, "ClusteringCoefficient" : 0.33333333, "Radiality" : 0.75477897, "Stress" : 26, "BetweennessCentrality" : 1.5998E-4, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.07, "name" : "YML051W", "COMMON" : "GAL80", "gal4RGexp" : -0.606, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.33333333 } }, { "data" : { "id" : "164", "degree_layout" : 2, "gal80Rexp" : 0.162, "gal1RGsig" : 0.01257, "Eccentricity" : 15, "gal4RGsig" : 6.9834E-8, "shared_name" : "YDR009W", "TopologicalCoefficient" : 0.6, "SUID" : 164, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.84274194, "selected" : false, "gal80Rsig" : 0.16498, "ClosenessCentrality" : 0.14614025, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78360215, "Stress" : 816, "BetweennessCentrality" : 0.00214797, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.111, "name" : "YDR009W", "COMMON" : "GAL3", "gal4RGexp" : -1.004, "IsSingleNode" : false, "NeighborhoodConnectivity" : 7.0 } }, { "data" : { "id" : "163", "degree_layout" : 1, "gal80Rexp" : 0.295, "gal1RGsig" : 1.3809E-5, "Eccentricity" : 16, "gal4RGsig" : 6.085E-5, "shared_name" : "YLL019C", "TopologicalCoefficient" : 0.0, "SUID" : 163, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.00403226, "selected" : false, "gal80Rsig" : 9.3514E-5, "ClosenessCentrality" : 0.11106135, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.70355436, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.258, "name" : "YLL019C", "COMMON" : "KNS1", "gal4RGexp" : 0.215, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "162", "degree_layout" : 2, "gal80Rexp" : -0.137, "gal1RGsig" : 0.002113, "Eccentricity" : 15, "gal4RGsig" : 0.002831, "shared_name" : "YIL113W", "TopologicalCoefficient" : 0.5, "SUID" : 162, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.00806452, "selected" : false, "gal80Rsig" : 0.23739, "ClosenessCentrality" : 0.12487412, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74044205, "Stress" : 746, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.236, "name" : "YIL113W", "COMMON" : "YIL113W", "gal4RGexp" : 0.211, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "161", "degree_layout" : 1, "gal80Rexp" : -0.864, "gal1RGsig" : 6.9725E-11, "Eccentricity" : 17, "gal4RGsig" : 1.5459E-6, "shared_name" : "YML024W", "TopologicalCoefficient" : 0.0, "SUID" : 161, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 7.28629032, "selected" : false, "gal80Rsig" : 1.3115E-12, "ClosenessCentrality" : 0.13724405, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.76717443, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.551, "name" : "YML024W", "COMMON" : "RPS17A", "gal4RGexp" : -0.454, "IsSingleNode" : false, "NeighborhoodConnectivity" : 17.0 } }, { "data" : { "id" : "160", "degree_layout" : 1, "gal80Rexp" : -0.006, "gal1RGsig" : 0.87354, "Eccentricity" : 2, "gal4RGsig" : 0.20402, "shared_name" : "YOR039W", "TopologicalCoefficient" : 0.0, "SUID" : 160, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 0.92034, "ClosenessCentrality" : 0.66666667, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.006, "name" : "YOR039W", "COMMON" : "CKB2", "gal4RGexp" : -0.058, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "159", "degree_layout" : 2, "gal80Rexp" : 0.16, "gal1RGsig" : 5.6134E-4, "Eccentricity" : 15, "gal4RGsig" : 0.33211, "shared_name" : "YER111C", "TopologicalCoefficient" : 0.5, "SUID" : 159, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.59677419, "selected" : false, "gal80Rsig" : 0.15558, "ClosenessCentrality" : 0.15158924, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.79271207, "Stress" : 3188, "BetweennessCentrality" : 0.0323843, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.195, "name" : "YER111C", "COMMON" : "SWI4", "gal4RGexp" : -0.105, "IsSingleNode" : false, "NeighborhoodConnectivity" : 11.0 } }, { "data" : { "id" : "158", "degree_layout" : 2, "gal80Rexp" : -0.027, "gal1RGsig" : 0.0018541, "Eccentricity" : 14, "gal4RGsig" : 0.1065, "shared_name" : "YDR146C", "TopologicalCoefficient" : 0.5, "SUID" : 158, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 5.90322581, "selected" : false, "gal80Rsig" : 0.76249, "ClosenessCentrality" : 0.16939891, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.81839904, "Stress" : 66656, "BetweennessCentrality" : 0.3090621, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.19, "name" : "YDR146C", "COMMON" : "SWI5", "gal4RGexp" : 0.102, "IsSingleNode" : false, "NeighborhoodConnectivity" : 14.5 } }, { "data" : { "id" : "157", "degree_layout" : 1, "gal80Rexp" : 0.358, "gal1RGsig" : 1.6589E-4, "Eccentricity" : 1, "gal4RGsig" : 4.2736E-7, "shared_name" : "YKL211C", "TopologicalCoefficient" : 0.0, "SUID" : 157, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 1.5264E-4, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.183, "name" : "YKL211C", "COMMON" : "TRP3", "gal4RGexp" : -0.6, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "156", "degree_layout" : 1, "gal80Rexp" : 0.231, "gal1RGsig" : 0.079619, "Eccentricity" : 1, "gal4RGsig" : 1.9673E-5, "shared_name" : "YER090W", "TopologicalCoefficient" : 0.0, "SUID" : 156, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.0015768, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.067, "name" : "YER090W", "COMMON" : "TRP2", "gal4RGexp" : -0.38, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "155", "degree_layout" : 1, "gal80Rexp" : -0.253, "gal1RGsig" : 0.0090277, "Eccentricity" : 19, "gal4RGsig" : 0.0028196, "shared_name" : "YDR354W", "TopologicalCoefficient" : 0.0, "SUID" : 155, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.61693548, "selected" : false, "gal80Rsig" : 0.0012089, "ClosenessCentrality" : 0.11605054, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71789128, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.122, "name" : "YDR354W", "COMMON" : "TRP4", "gal4RGexp" : -0.202, "IsSingleNode" : false, "NeighborhoodConnectivity" : 7.0 } }, { "data" : { "id" : "154", "degree_layout" : 1, "gal80Rexp" : 0.789, "gal1RGsig" : 1.0276E-5, "Eccentricity" : 1, "gal4RGsig" : 4.8347E-7, "shared_name" : "YNL113W", "TopologicalCoefficient" : 0.0, "SUID" : 154, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.0028937, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.304, "name" : "YNL113W", "COMMON" : "RPC19", "gal4RGexp" : -0.979, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "153", "degree_layout" : 1, "gal80Rexp" : -0.026, "gal1RGsig" : 0.0019607, "Eccentricity" : 1, "gal4RGsig" : 1.2743E-5, "shared_name" : "YPR110C", "TopologicalCoefficient" : 0.0, "SUID" : 153, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.70564, "ClosenessCentrality" : 1.0, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.12, "name" : "YPR110C", "COMMON" : "RPC40", "gal4RGexp" : -0.339, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "152", "degree_layout" : 2, "gal80Rexp" : -0.826, "gal1RGsig" : 1.2362E-4, "Eccentricity" : 21, "gal4RGsig" : 0.013281, "shared_name" : "YER103W", "TopologicalCoefficient" : 0.5, "SUID" : 152, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 10.65725806, "selected" : false, "gal80Rsig" : 8.3702E-13, "ClosenessCentrality" : 0.09383277, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.64232378, "Stress" : 2016, "BetweennessCentrality" : 0.01606373, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.405, "name" : "YER103W", "COMMON" : "SSA4", "gal4RGexp" : 0.176, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.5 } }, { "data" : { "id" : "151", "degree_layout" : 1, "gal80Rexp" : 0.07, "gal1RGsig" : 4.514E-5, "Eccentricity" : 19, "gal4RGsig" : 3.8823E-4, "shared_name" : "YBR190W", "TopologicalCoefficient" : 0.0, "SUID" : 151, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.11693548, "selected" : false, "gal80Rsig" : 0.66515, "ClosenessCentrality" : 0.10968598, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.69937276, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.209, "name" : "YBR190W", "COMMON" : "YBR190W", "gal4RGexp" : -0.3, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "150", "degree_layout" : 1, "gal80Rexp" : -0.591, "gal1RGsig" : 3.3837E-8, "Eccentricity" : 20, "gal4RGsig" : 2.3802E-5, "shared_name" : "YOL059W", "TopologicalCoefficient" : 0.0, "SUID" : 150, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 10.4516129, "selected" : false, "gal80Rsig" : 1.5256E-9, "ClosenessCentrality" : 0.09567901, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.64994026, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.499, "name" : "YOL059W", "COMMON" : "GPD2", "gal4RGexp" : -0.29, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "149", "degree_layout" : 2, "gal80Rexp" : -0.135, "gal1RGsig" : 3.2712E-5, "Eccentricity" : 18, "gal4RGsig" : 3.6609E-6, "shared_name" : "YER102W", "TopologicalCoefficient" : 0.5, "SUID" : 149, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.55645161, "selected" : false, "gal80Rsig" : 0.017595, "ClosenessCentrality" : 0.11687088, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.72013142, "Stress" : 5590, "BetweennessCentrality" : 0.04463374, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.249, "name" : "YER102W", "COMMON" : "RPS8B", "gal4RGexp" : -0.364, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.5 } }, { "data" : { "id" : "148", "degree_layout" : 1, "gal80Rexp" : 0.225, "gal1RGsig" : 0.31634, "Eccentricity" : 20, "gal4RGsig" : 0.2984, "shared_name" : "YOR362C", "TopologicalCoefficient" : 0.0, "SUID" : 148, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 10.4516129, "selected" : false, "gal80Rsig" : 0.0013356, "ClosenessCentrality" : 0.09567901, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.64994026, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.036, "name" : "YOR362C", "COMMON" : "PRE10", "gal4RGexp" : -0.043, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "147", "degree_layout" : 1, "gal80Rexp" : 0.357, "gal1RGsig" : 4.4526E-5, "Eccentricity" : 21, "gal4RGsig" : 0.15055, "shared_name" : "YMR044W", "TopologicalCoefficient" : 0.0, "SUID" : 147, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.56854839, "selected" : false, "gal80Rsig" : 8.8242E-4, "ClosenessCentrality" : 0.10450906, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.68264636, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.255, "name" : "YMR044W", "COMMON" : "YMR044W", "gal4RGexp" : -0.093, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "146", "degree_layout" : 2, "gal80Rexp" : 0.254, "gal1RGsig" : 9.0847E-5, "Eccentricity" : 26, "gal4RGsig" : 0.0015911, "shared_name" : "YOL149W", "TopologicalCoefficient" : 1.0, "SUID" : 146, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 13.09274194, "selected" : false, "gal80Rsig" : 0.059331, "ClosenessCentrality" : 0.0763782, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.55212067, "Stress" : 2, "BetweennessCentrality" : 8.16E-6, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.228, "name" : "YOL149W", "COMMON" : "DCP1", "gal4RGexp" : -0.248, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "145", "degree_layout" : 2, "gal80Rexp" : 0.222, "gal1RGsig" : 7.6925E-4, "Eccentricity" : 3, "gal4RGsig" : 0.58305, "shared_name" : "YLR191W", "TopologicalCoefficient" : 0.9, "SUID" : 145, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.83333333, "selected" : false, "gal80Rsig" : 0.097987, "ClosenessCentrality" : 0.54545455, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 0.72222222, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.178, "name" : "YLR191W", "COMMON" : "PEX13", "gal4RGexp" : -0.056, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.5 } }, { "data" : { "id" : "144", "degree_layout" : 4, "gal80Rexp" : 0.627, "gal1RGsig" : 1.2953E-4, "Eccentricity" : 2, "gal4RGsig" : 0.077941, "shared_name" : "YGL153W", "TopologicalCoefficient" : 0.5, "SUID" : 144, "SelfLoops" : 0, "NumberOfDirectedEdges" : 4, "AverageShortestPathLength" : 1.33333333, "selected" : false, "gal80Rsig" : 0.0023167, "ClosenessCentrality" : 0.75, "Degree" : 4, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.5, "Radiality" : 0.88888889, "Stress" : 10, "BetweennessCentrality" : 0.16666667, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.242, "name" : "YGL153W", "COMMON" : "PEX14", "gal4RGexp" : -0.132, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "143", "degree_layout" : 2, "gal80Rexp" : 0.43, "gal1RGsig" : 0.26052, "Eccentricity" : 2, "gal4RGsig" : 2.9645E-4, "shared_name" : "YER110C", "TopologicalCoefficient" : 0.5, "SUID" : 143, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.33333333, "selected" : false, "gal80Rsig" : 3.6344E-7, "ClosenessCentrality" : 0.75, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.88888889, "Stress" : 4, "BetweennessCentrality" : 0.66666667, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.05, "name" : "YER110C", "COMMON" : "KAP123", "gal4RGexp" : -0.233, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.5 } }, { "data" : { "id" : "142", "degree_layout" : 1, "gal80Rexp" : 0.331, "gal1RGsig" : 9.2417E-8, "Eccentricity" : 3, "gal4RGsig" : 0.42858, "shared_name" : "YML007W", "TopologicalCoefficient" : 0.0, "SUID" : 142, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.0, "selected" : false, "gal80Rsig" : 0.0024709, "ClosenessCentrality" : 0.5, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66666667, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.359, "name" : "YML007W", "COMMON" : "YAP1", "gal4RGexp" : -0.039, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "141", "degree_layout" : 2, "gal80Rexp" : 0.057, "gal1RGsig" : 0.0084321, "Eccentricity" : 17, "gal4RGsig" : 0.6558, "shared_name" : "YBR135W", "TopologicalCoefficient" : 0.5, "SUID" : 141, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.64919355, "selected" : false, "gal80Rsig" : 0.34065, "ClosenessCentrality" : 0.13073274, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75373357, "Stress" : 6576, "BetweennessCentrality" : 0.05196364, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.108, "name" : "YBR135W", "COMMON" : "CKS1", "gal4RGexp" : -0.018, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "140", "degree_layout" : 2, "gal80Rexp" : 0.199, "gal1RGsig" : 0.166, "Eccentricity" : 3, "gal4RGsig" : 0.64313, "shared_name" : "YNL214W", "TopologicalCoefficient" : 0.9, "SUID" : 140, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.83333333, "selected" : false, "gal80Rsig" : 0.11918, "ClosenessCentrality" : 0.54545455, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 0.72222222, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.122, "name" : "YNL214W", "COMMON" : "PEX17", "gal4RGexp" : 0.041, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.5 } }, { "data" : { "id" : "139", "degree_layout" : 1, "gal80Rexp" : 0.708, "gal1RGsig" : 0.17278, "Eccentricity" : 19, "gal4RGsig" : 1.3067E-6, "shared_name" : "YPR167C", "TopologicalCoefficient" : 0.0, "SUID" : 139, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.91129032, "selected" : false, "gal80Rsig" : 5.3086E-4, "ClosenessCentrality" : 0.11221719, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.70698925, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.066, "name" : "YPR167C", "COMMON" : "MET16", "gal4RGexp" : -1.034, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "138", "degree_layout" : 1, "gal80Rexp" : 0.378, "gal1RGsig" : 1.1748E-4, "Eccentricity" : 19, "gal4RGsig" : 0.32501, "shared_name" : "YOR089C", "TopologicalCoefficient" : 0.0, "SUID" : 138, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 10.22580645, "selected" : false, "gal80Rsig" : 8.2229E-6, "ClosenessCentrality" : 0.0977918, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.65830346, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.193, "name" : "YOR089C", "COMMON" : "VPS21", "gal4RGexp" : -0.042, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "137", "degree_layout" : 1, "gal80Rexp" : 0.941, "gal1RGsig" : 1.92E-11, "Eccentricity" : 16, "gal4RGsig" : 9.0335E-5, "shared_name" : "YNL117W", "TopologicalCoefficient" : 0.0, "SUID" : 137, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 7.67741935, "selected" : false, "gal80Rsig" : 1.2597E-5, "ClosenessCentrality" : 0.1302521, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75268817, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.973, "name" : "YNL117W", "COMMON" : "MLS1", "gal4RGexp" : 0.452, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "136", "degree_layout" : 1, "gal80Rexp" : 0.498, "gal1RGsig" : 0.47804, "Eccentricity" : 19, "gal4RGsig" : 5.549E-5, "shared_name" : "YLR175W", "TopologicalCoefficient" : 0.0, "SUID" : 136, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.91129032, "selected" : false, "gal80Rsig" : 1.4113E-7, "ClosenessCentrality" : 0.11221719, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.70698925, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.038, "name" : "YLR175W", "COMMON" : "CBF5", "gal4RGexp" : -0.597, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "135", "degree_layout" : 2, "gal80Rexp" : 0.355, "gal1RGsig" : 2.1837E-4, "Eccentricity" : 23, "gal4RGsig" : 0.0039024, "shared_name" : "YDR167W", "TopologicalCoefficient" : 0.5, "SUID" : 135, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 11.33064516, "selected" : false, "gal80Rsig" : 0.01484, "ClosenessCentrality" : 0.08825623, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.61738351, "Stress" : 2560, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.246, "name" : "YDR167W", "COMMON" : "TAF25", "gal4RGexp" : -0.219, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.5 } }, { "data" : { "id" : "134", "degree_layout" : 2, "gal80Rexp" : -0.301, "gal1RGsig" : 6.6826E-5, "Eccentricity" : 22, "gal4RGsig" : 0.36112, "shared_name" : "YLR432W", "TopologicalCoefficient" : 0.5, "SUID" : 134, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 10.34274194, "selected" : false, "gal80Rsig" : 4.8207E-5, "ClosenessCentrality" : 0.09668616, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.65397252, "Stress" : 5116, "BetweennessCentrality" : 0.01606373, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.197, "name" : "YLR432W", "COMMON" : "YLR432W", "gal4RGexp" : -0.054, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "133", "degree_layout" : 5, "gal80Rexp" : 0.483, "gal1RGsig" : 2.7503E-6, "Eccentricity" : 2, "gal4RGsig" : 0.73489, "shared_name" : "YDR244W", "TopologicalCoefficient" : 0.44, "SUID" : 133, "SelfLoops" : 0, "NumberOfDirectedEdges" : 5, "AverageShortestPathLength" : 1.16666667, "selected" : false, "gal80Rsig" : 4.3149E-4, "ClosenessCentrality" : 0.85714286, "Degree" : 5, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.3, "Radiality" : 0.94444444, "Stress" : 20, "BetweennessCentrality" : 0.5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.369, "name" : "YDR244W", "COMMON" : "PEX5", "gal4RGexp" : -0.021, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.4 } }, { "data" : { "id" : "132", "degree_layout" : 3, "gal80Rexp" : -0.069, "gal1RGsig" : 0.016464, "Eccentricity" : 2, "gal4RGsig" : 0.16704, "shared_name" : "YDR142C", "TopologicalCoefficient" : 0.6, "SUID" : 132, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 0.401, "ClosenessCentrality" : 0.66666667, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.33333333, "Radiality" : 0.83333333, "Stress" : 14, "BetweennessCentrality" : 0.33333333, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.101, "name" : "YDR142C", "COMMON" : "PEX7", "gal4RGexp" : 0.112, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.33333333 } }, { "data" : { "id" : "131", "degree_layout" : 1, "gal80Rexp" : -0.08, "gal1RGsig" : 4.0255E-5, "Eccentricity" : 3, "gal4RGsig" : 0.038943, "shared_name" : "YDL078C", "TopologicalCoefficient" : 0.0, "SUID" : 131, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.0, "selected" : false, "gal80Rsig" : 0.16505, "ClosenessCentrality" : 0.5, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66666667, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.217, "name" : "YDL078C", "COMMON" : "MDH3", "gal4RGexp" : 0.102, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "130", "degree_layout" : 1, "gal80Rexp" : 0.92, "gal1RGsig" : 1.071E-6, "Eccentricity" : 3, "gal4RGsig" : 3.103E-8, "shared_name" : "YIL160C", "TopologicalCoefficient" : 0.0, "SUID" : 130, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.33333333, "selected" : false, "gal80Rsig" : 6.0801E-7, "ClosenessCentrality" : 0.42857143, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.55555556, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 1.044, "name" : "YIL160C", "COMMON" : "POT1", "gal4RGexp" : 0.674, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "129", "degree_layout" : 2, "gal80Rexp" : -0.302, "gal1RGsig" : 0.0081844, "Eccentricity" : 18, "gal4RGsig" : 0.91522, "shared_name" : "YAR007C", "TopologicalCoefficient" : 0.75, "SUID" : 129, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 9.78225806, "selected" : false, "gal80Rsig" : 0.0060792, "ClosenessCentrality" : 0.10222589, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.67473118, "Stress" : 1030, "BetweennessCentrality" : 0.00401593, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.2, "name" : "YAR007C", "COMMON" : "RFA1", "gal4RGexp" : -0.007, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "128", "degree_layout" : 1, "gal80Rexp" : 0.202, "gal1RGsig" : 7.5801E-4, "Eccentricity" : 16, "gal4RGsig" : 0.022048, "shared_name" : "YKL161C", "TopologicalCoefficient" : 0.0, "SUID" : 128, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.00403226, "selected" : false, "gal80Rsig" : 0.18731, "ClosenessCentrality" : 0.11106135, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.70355436, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.198, "name" : "YKL161C", "COMMON" : "YKL161C", "gal4RGexp" : -0.319, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "127", "degree_layout" : 2, "gal80Rexp" : -0.002, "gal1RGsig" : 1.7255E-4, "Eccentricity" : 20, "gal4RGsig" : 4.2857E-4, "shared_name" : "YLR075W", "TopologicalCoefficient" : 1.0, "SUID" : 127, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 10.12903226, "selected" : false, "gal80Rsig" : 0.9794, "ClosenessCentrality" : 0.09872611, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66188769, "Stress" : 2, "BetweennessCentrality" : 1.632E-5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.169, "name" : "YLR075W", "COMMON" : "RPL10", "gal4RGexp" : -0.2, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "126", "degree_layout" : 2, "gal80Rexp" : -0.058, "gal1RGsig" : 3.7183E-4, "Eccentricity" : 19, "gal4RGsig" : 1.7424E-6, "shared_name" : "YPR102C", "TopologicalCoefficient" : 0.57142857, "SUID" : 126, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 9.14112903, "selected" : false, "gal80Rsig" : 0.26052, "ClosenessCentrality" : 0.10939568, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.6984767, "Stress" : 2038, "BetweennessCentrality" : 0.00401593, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.177, "name" : "YPR102C", "COMMON" : "RPL11A", "gal4RGexp" : -0.38, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "125", "degree_layout" : 3, "gal80Rexp" : -0.661, "gal1RGsig" : 1.8582E-5, "Eccentricity" : 16, "gal4RGsig" : 0.0024157, "shared_name" : "YPL240C", "TopologicalCoefficient" : 0.35897436, "SUID" : 125, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 7.55241935, "selected" : false, "gal80Rsig" : 6.7688E-11, "ClosenessCentrality" : 0.1324079, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.7573178, "Stress" : 14116, "BetweennessCentrality" : 0.13656267, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.222, "name" : "YPL240C", "COMMON" : "HSP82", "gal4RGexp" : -0.201, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.66666667 } }, { "data" : { "id" : "124", "degree_layout" : 1, "gal80Rexp" : -0.379, "gal1RGsig" : 0.20226, "Eccentricity" : 23, "gal4RGsig" : 1.9253E-7, "shared_name" : "YHR198C", "TopologicalCoefficient" : 0.0, "SUID" : 124, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 12.16935484, "selected" : false, "gal80Rsig" : 5.4324E-8, "ClosenessCentrality" : 0.08217362, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.58632019, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.053, "name" : "YHR198C", "COMMON" : "YHR198C", "gal4RGexp" : 0.401, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "123", "degree_layout" : 1, "gal80Rexp" : 0.716, "gal1RGsig" : 0.0052304, "Eccentricity" : 23, "gal4RGsig" : 0.21531, "shared_name" : "YLR284C", "TopologicalCoefficient" : 0.0, "SUID" : 123, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 12.16935484, "selected" : false, "gal80Rsig" : 3.9241E-4, "ClosenessCentrality" : 0.08217362, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.58632019, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.195, "name" : "YLR284C", "COMMON" : "ECI1", "gal4RGexp" : -0.148, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "122", "degree_layout" : 1, "gal80Rexp" : 0.579, "gal1RGsig" : 4.7628E-9, "Eccentricity" : 23, "gal4RGsig" : 1.9577E-9, "shared_name" : "YER052C", "TopologicalCoefficient" : 0.0, "SUID" : 122, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 12.80241935, "selected" : false, "gal80Rsig" : 1.3742E-5, "ClosenessCentrality" : 0.07811024, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.56287336, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.47, "name" : "YER052C", "COMMON" : "HOM3", "gal4RGexp" : -1.321, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "121", "degree_layout" : 2, "gal80Rexp" : -0.169, "gal1RGsig" : 0.047943, "Eccentricity" : 22, "gal4RGsig" : 0.068027, "shared_name" : "YNL135C", "TopologicalCoefficient" : 0.5, "SUID" : 121, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 11.80645161, "selected" : false, "gal80Rsig" : 0.0016167, "ClosenessCentrality" : 0.08469945, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.59976105, "Stress" : 978, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.071, "name" : "YNL135C", "COMMON" : "FPR1", "gal4RGexp" : 0.08, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "120", "degree_layout" : 1, "gal80Rexp" : -0.462, "gal1RGsig" : 8.4218E-11, "Eccentricity" : 2, "gal4RGsig" : 2.4189E-8, "shared_name" : "YPR124W", "TopologicalCoefficient" : 0.0, "SUID" : 120, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 8.3821E-6, "ClosenessCentrality" : 0.66666667, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.76, "name" : "YPR124W", "COMMON" : "CTR1", "gal4RGexp" : 0.469, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "119", "degree_layout" : 2, "gal80Rexp" : 0.795, "gal1RGsig" : 1.6731E-4, "Eccentricity" : 21, "gal4RGsig" : 8.4638E-4, "shared_name" : "YHR053C", "TopologicalCoefficient" : 0.6, "SUID" : 119, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 10.65725806, "selected" : false, "gal80Rsig" : 1.5187E-10, "ClosenessCentrality" : 0.09383277, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.64232378, "Stress" : 2004, "BetweennessCentrality" : 0.00799922, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.656, "name" : "YHR053C", "COMMON" : "CUP1A", "gal4RGexp" : -0.75, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "118", "degree_layout" : 2, "gal80Rexp" : 0.802, "gal1RGsig" : 2.8813E-6, "Eccentricity" : 21, "gal4RGsig" : 0.026753, "shared_name" : "YHR055C", "TopologicalCoefficient" : 0.6, "SUID" : 118, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 10.65725806, "selected" : false, "gal80Rsig" : 1.9696E-12, "ClosenessCentrality" : 0.09383277, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.64232378, "Stress" : 2004, "BetweennessCentrality" : 0.00799922, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.867, "name" : "YHR055C", "COMMON" : "CUP1B", "gal4RGexp" : -0.416, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "117", "degree_layout" : 2, "gal80Rexp" : 0.839, "gal1RGsig" : 0.0020577, "Eccentricity" : 23, "gal4RGsig" : 3.6977E-7, "shared_name" : "YGL134W", "TopologicalCoefficient" : 0.5, "SUID" : 117, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 12.46370968, "selected" : false, "gal80Rsig" : 3.7595E-7, "ClosenessCentrality" : 0.08023293, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.57541816, "Stress" : 3936, "BetweennessCentrality" : 0.01606373, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.138, "name" : "YGL134W", "COMMON" : "PCL10", "gal4RGexp" : -0.548, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "116", "degree_layout" : 3, "gal80Rexp" : -0.487, "gal1RGsig" : 4.4171E-9, "Eccentricity" : 22, "gal4RGsig" : 1.8329E-6, "shared_name" : "YLR258W", "TopologicalCoefficient" : 0.33333333, "SUID" : 116, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 11.48387097, "selected" : false, "gal80Rsig" : 5.8675E-12, "ClosenessCentrality" : 0.08707865, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.61170848, "Stress" : 17622, "BetweennessCentrality" : 0.07081755, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.405, "name" : "YLR258W", "COMMON" : "GSY2", "gal4RGexp" : 0.4, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "115", "degree_layout" : 2, "gal80Rexp" : 0.525, "gal1RGsig" : 0.83635, "Eccentricity" : 16, "gal4RGsig" : 4.5029E-5, "shared_name" : "YJL194W", "TopologicalCoefficient" : 0.5, "SUID" : 115, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.83064516, "selected" : false, "gal80Rsig" : 0.050004, "ClosenessCentrality" : 0.14639906, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78405018, "Stress" : 1032, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.018, "name" : "YJL194W", "COMMON" : "CDC6", "gal4RGexp" : -0.661, "IsSingleNode" : false, "NeighborhoodConnectivity" : 9.5 } }, { "data" : { "id" : "114", "degree_layout" : 2, "gal80Rexp" : -0.064, "gal1RGsig" : 0.48423, "Eccentricity" : 26, "gal4RGsig" : 0.019199, "shared_name" : "YBL026W", "TopologicalCoefficient" : 1.0, "SUID" : 114, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 13.09274194, "selected" : false, "gal80Rsig" : 0.59933, "ClosenessCentrality" : 0.0763782, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.55212067, "Stress" : 2, "BetweennessCentrality" : 8.16E-6, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.032, "name" : "YBL026W", "COMMON" : "LSM2", "gal4RGexp" : -0.158, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "113", "degree_layout" : 2, "gal80Rexp" : 0.106, "gal1RGsig" : 0.11213, "Eccentricity" : 18, "gal4RGsig" : 0.48722, "shared_name" : "YBL050W", "TopologicalCoefficient" : 0.5, "SUID" : 113, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.95564516, "selected" : false, "gal80Rsig" : 0.23706, "ClosenessCentrality" : 0.11166141, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.70534648, "Stress" : 10384, "BetweennessCentrality" : 0.0932363, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.066, "name" : "YBL050W", "COMMON" : "SEC17", "gal4RGexp" : -0.044, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.5 } }, { "data" : { "id" : "112", "degree_layout" : 4, "gal80Rexp" : 0.057, "gal1RGsig" : 0.014623, "Eccentricity" : 16, "gal4RGsig" : 6.6062E-6, "shared_name" : "YHR084W", "TopologicalCoefficient" : 0.375, "SUID" : 112, "SelfLoops" : 0, "NumberOfDirectedEdges" : 4, "AverageShortestPathLength" : 6.8266129, "selected" : false, "gal80Rsig" : 0.65365, "ClosenessCentrality" : 0.14648553, "Degree" : 4, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.5, "Radiality" : 0.78419952, "Stress" : 6, "BetweennessCentrality" : 3.265E-5, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.109, "name" : "YHR084W", "COMMON" : "STE12", "gal4RGexp" : -0.541, "IsSingleNode" : false, "NeighborhoodConnectivity" : 6.75 } }, { "data" : { "id" : "111", "degree_layout" : 2, "gal80Rexp" : -0.052, "gal1RGsig" : 0.35655, "Eccentricity" : 23, "gal4RGsig" : 0.0049782, "shared_name" : "YBR274W", "TopologicalCoefficient" : 0.5, "SUID" : 111, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 12.43951613, "selected" : false, "gal80Rsig" : 0.55148, "ClosenessCentrality" : 0.08038898, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.57631422, "Stress" : 9810, "BetweennessCentrality" : 0.03966958, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.045, "name" : "YBR274W", "COMMON" : "CHK1", "gal4RGexp" : 0.135, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "110", "degree_layout" : 2, "gal80Rexp" : 0.397, "gal1RGsig" : 2.2142E-4, "Eccentricity" : 24, "gal4RGsig" : 0.11742, "shared_name" : "YMR255W", "TopologicalCoefficient" : 0.5, "SUID" : 110, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 13.40322581, "selected" : false, "gal80Rsig" : 0.0029074, "ClosenessCentrality" : 0.0746089, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.54062127, "Stress" : 7856, "BetweennessCentrality" : 0.03186627, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.211, "name" : "YMR255W", "COMMON" : "GFD1", "gal4RGexp" : -0.159, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.5 } }, { "data" : { "id" : "109", "degree_layout" : 1, "gal80Rexp" : -0.269, "gal1RGsig" : 2.4276E-7, "Eccentricity" : 17, "gal4RGsig" : 6.6966E-6, "shared_name" : "YLR452C", "TopologicalCoefficient" : 0.0, "SUID" : 109, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.84677419, "selected" : false, "gal80Rsig" : 0.014595, "ClosenessCentrality" : 0.11303555, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.70937873, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.507, "name" : "YLR452C", "COMMON" : "SST2", "gal4RGexp" : -0.393, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "108", "degree_layout" : 2, "gal80Rexp" : 0.33, "gal1RGsig" : 0.64417, "Eccentricity" : 16, "gal4RGsig" : 5.0285E-5, "shared_name" : "YHR005C", "TopologicalCoefficient" : 0.5, "SUID" : 108, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 7.85080645, "selected" : false, "gal80Rsig" : 0.0031233, "ClosenessCentrality" : 0.12737545, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74626643, "Stress" : 618, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.02, "name" : "YHR005C", "COMMON" : "GPA1", "gal4RGexp" : -0.413, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "107", "degree_layout" : 1, "gal80Rexp" : 0.883, "gal1RGsig" : 1.6082E-7, "Eccentricity" : 17, "gal4RGsig" : 0.20033, "shared_name" : "YDR299W", "TopologicalCoefficient" : 0.0, "SUID" : 107, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 7.8266129, "selected" : false, "gal80Rsig" : 1.0236E-4, "ClosenessCentrality" : 0.12776919, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74716249, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.518, "name" : "YDR299W", "COMMON" : "BFR2", "gal4RGexp" : -0.287, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "106", "degree_layout" : 2, "gal80Rexp" : 0.393, "gal1RGsig" : 4.9389E-9, "Eccentricity" : 2, "gal4RGsig" : 2.6626E-5, "shared_name" : "YIL074C", "TopologicalCoefficient" : 0.5, "SUID" : 106, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.33333333, "selected" : false, "gal80Rsig" : 0.022682, "ClosenessCentrality" : 0.75, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.88888889, "Stress" : 4, "BetweennessCentrality" : 0.66666667, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.444, "name" : "YIL074C", "COMMON" : "SER33", "gal4RGexp" : -0.565, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.5 } }, { "data" : { "id" : "105", "degree_layout" : 1, "gal80Rexp" : 0.576, "gal1RGsig" : 9.0303E-5, "Eccentricity" : 16, "gal4RGsig" : 1.8298E-5, "shared_name" : "YOR120W", "TopologicalCoefficient" : 0.0, "SUID" : 105, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 7.63306452, "selected" : false, "gal80Rsig" : 6.3927E-9, "ClosenessCentrality" : 0.13100898, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75433094, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.194, "name" : "YOR120W", "COMMON" : "GCY1", "gal4RGexp" : -0.349, "IsSingleNode" : false, "NeighborhoodConnectivity" : 10.0 } }, { "data" : { "id" : "104", "degree_layout" : 2, "gal80Rexp" : -0.177, "gal1RGsig" : 0.11203, "Eccentricity" : 19, "gal4RGsig" : 0.0061997, "shared_name" : "YPR041W", "TopologicalCoefficient" : 0.75, "SUID" : 104, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 10.31854839, "selected" : false, "gal80Rsig" : 0.011738, "ClosenessCentrality" : 0.09691286, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 0.65486858, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.059, "name" : "YPR041W", "COMMON" : "TIF5", "gal4RGexp" : -0.243, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "103", "degree_layout" : 2, "gal80Rexp" : -0.134, "gal1RGsig" : 0.056656, "Eccentricity" : 21, "gal4RGsig" : 8.8839E-7, "shared_name" : "YIL045W", "TopologicalCoefficient" : 0.5, "SUID" : 103, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 10.56048387, "selected" : false, "gal80Rsig" : 0.072301, "ClosenessCentrality" : 0.09469263, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.645908, "Stress" : 19520, "BetweennessCentrality" : 0.07770667, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.078, "name" : "YIL045W", "COMMON" : "PIG2", "gal4RGexp" : 0.478, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "102", "degree_layout" : 3, "gal80Rexp" : 0.0, "gal1RGsig" : 9.0717E-9, "Eccentricity" : 21, "gal4RGsig" : 0.21914, "shared_name" : "YDL215C", "TopologicalCoefficient" : 0.33333333, "SUID" : 102, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 9.36290323, "selected" : false, "gal80Rsig" : 0.999999, "ClosenessCentrality" : 0.10680448, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.69026284, "Stress" : 15318, "BetweennessCentrality" : 0.04770145, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.485, "name" : "YDL215C", "COMMON" : "GDH2", "gal4RGexp" : 0.242, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.66666667 } }, { "data" : { "id" : "101", "degree_layout" : 2, "gal80Rexp" : -0.046, "gal1RGsig" : 4.1949E-4, "Eccentricity" : 2, "gal4RGsig" : 4.6903E-5, "shared_name" : "YER079W", "TopologicalCoefficient" : 0.5, "SUID" : 101, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 0.40867, "ClosenessCentrality" : 0.66666667, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.875, "Stress" : 8, "BetweennessCentrality" : 0.66666667, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.174, "name" : "YER079W", "COMMON" : "YER079W", "gal4RGexp" : -0.267, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "100", "degree_layout" : 3, "gal80Rexp" : 0.339, "gal1RGsig" : 2.7658E-4, "Eccentricity" : 22, "gal4RGsig" : 0.25629, "shared_name" : "YDL030W", "TopologicalCoefficient" : 0.33333333, "SUID" : 100, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 9.96774194, "selected" : false, "gal80Rsig" : 0.011822, "ClosenessCentrality" : 0.10032362, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66786141, "Stress" : 55180, "BetweennessCentrality" : 0.12179569, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.244, "name" : "YDL030W", "COMMON" : "PRP9", "gal4RGexp" : -0.119, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.33333333 } }, { "data" : { "id" : "99", "degree_layout" : 1, "gal80Rexp" : 0.571, "gal1RGsig" : 5.0658E-5, "Eccentricity" : 23, "gal4RGsig" : 1.2336E-4, "shared_name" : "YMR005W", "TopologicalCoefficient" : 0.0, "SUID" : 99, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 10.96370968, "selected" : false, "gal80Rsig" : 9.5685E-5, "ClosenessCentrality" : 0.09121, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.63097372, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.218, "name" : "YMR005W", "COMMON" : "MPT1", "gal4RGexp" : -0.419, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "98", "degree_layout" : 1, "gal80Rexp" : -0.022, "gal1RGsig" : 1.8529E-4, "Eccentricity" : 16, "gal4RGsig" : 0.014038, "shared_name" : "YER124C", "TopologicalCoefficient" : 0.0, "SUID" : 98, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 7.85887097, "selected" : false, "gal80Rsig" : 0.76846, "ClosenessCentrality" : 0.12724474, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74596774, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.179, "name" : "YER124C", "COMMON" : "YER124C", "gal4RGexp" : 0.126, "IsSingleNode" : false, "NeighborhoodConnectivity" : 9.0 } }, { "data" : { "id" : "97", "degree_layout" : 2, "gal80Rexp" : -0.084, "gal1RGsig" : 2.639E-4, "Eccentricity" : 19, "gal4RGsig" : 7.4028E-7, "shared_name" : "YGR085C", "TopologicalCoefficient" : 0.57142857, "SUID" : 97, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 9.14112903, "selected" : false, "gal80Rsig" : 0.1613, "ClosenessCentrality" : 0.10939568, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.6984767, "Stress" : 2038, "BetweennessCentrality" : 0.00401593, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.188, "name" : "YGR085C", "COMMON" : "RPL11B", "gal4RGexp" : -0.425, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "96", "degree_layout" : 8, "gal80Rexp" : -0.214, "gal1RGsig" : 0.021972, "Eccentricity" : 18, "gal4RGsig" : 0.5176, "shared_name" : "YDR395W", "TopologicalCoefficient" : 0.25, "SUID" : 96, "SelfLoops" : 0, "NumberOfDirectedEdges" : 8, "AverageShortestPathLength" : 8.15322581, "selected" : false, "gal80Rsig" : 0.40913, "ClosenessCentrality" : 0.12265084, "Degree" : 8, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.73506571, "Stress" : 16272, "BetweennessCentrality" : 0.05570067, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.119, "name" : "YDR395W", "COMMON" : "SXM1", "gal4RGexp" : 0.086, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.5 } }, { "data" : { "id" : "95", "degree_layout" : 1, "gal80Rexp" : -0.394, "gal1RGsig" : 1.6823E-10, "Eccentricity" : 18, "gal4RGsig" : 1.9828E-4, "shared_name" : "YGR088W", "TopologicalCoefficient" : 0.0, "SUID" : 95, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.52822581, "selected" : false, "gal80Rsig" : 3.0726E-6, "ClosenessCentrality" : 0.10495133, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.68413978, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.91, "name" : "YGR088W", "COMMON" : "CTT1", "gal4RGexp" : 0.596, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "94", "degree_layout" : 1, "gal80Rexp" : 0.109, "gal1RGsig" : 2.5284E-10, "Eccentricity" : 3, "gal4RGsig" : 3.0368E-5, "shared_name" : "YER081W", "TopologicalCoefficient" : 0.0, "SUID" : 94, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.0, "selected" : false, "gal80Rsig" : 0.094304, "ClosenessCentrality" : 0.5, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66666667, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.568, "name" : "YER081W", "COMMON" : "SER3", "gal4RGexp" : -0.423, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "93", "degree_layout" : 1, "gal80Rexp" : -0.89, "gal1RGsig" : 1.0456E-9, "Eccentricity" : 16, "gal4RGsig" : 0.54593, "shared_name" : "YPR113W", "TopologicalCoefficient" : 0.0, "SUID" : 93, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 6.83870968, "selected" : false, "gal80Rsig" : 5.6202E-18, "ClosenessCentrality" : 0.14622642, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78375149, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.495, "name" : "YPR113W", "COMMON" : "PIS1", "gal4RGexp" : 0.025, "IsSingleNode" : false, "NeighborhoodConnectivity" : 18.0 } }, { "data" : { "id" : "92", "degree_layout" : 1, "gal80Rexp" : -0.339, "gal1RGsig" : 0.68369, "Eccentricity" : 19, "gal4RGsig" : 0.0033116, "shared_name" : "YIL070C", "TopologicalCoefficient" : 0.0, "SUID" : 92, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 10.51612903, "selected" : false, "gal80Rsig" : 9.0003E-6, "ClosenessCentrality" : 0.09509202, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.64755078, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.033, "name" : "YIL070C", "COMMON" : "MAM33", "gal4RGexp" : 0.146, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "91", "degree_layout" : 1, "gal80Rexp" : -0.172, "gal1RGsig" : 0.24703, "Eccentricity" : 21, "gal4RGsig" : 0.78003, "shared_name" : "YLR153C", "TopologicalCoefficient" : 0.0, "SUID" : 91, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.56854839, "selected" : false, "gal80Rsig" : 0.011567, "ClosenessCentrality" : 0.10450906, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.68264636, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.042, "name" : "YLR153C", "COMMON" : "ACS2", "gal4RGexp" : -0.014, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "90", "degree_layout" : 1, "gal80Rexp" : 0.124, "gal1RGsig" : 0.0020954, "Eccentricity" : 18, "gal4RGsig" : 5.1497E-4, "shared_name" : "YGR046W", "TopologicalCoefficient" : 0.0, "SUID" : 90, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.75806452, "selected" : false, "gal80Rsig" : 0.10073, "ClosenessCentrality" : 0.10247934, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.67562724, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.158, "name" : "YGR046W", "COMMON" : "YGR046W", "gal4RGexp" : 0.177, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "89", "degree_layout" : 1, "gal80Rexp" : 1.345, "gal1RGsig" : 7.3947E-4, "Eccentricity" : 19, "gal4RGsig" : 3.8499E-5, "shared_name" : "YNL164C", "TopologicalCoefficient" : 0.0, "SUID" : 89, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 8.46774194, "selected" : false, "gal80Rsig" : 5.7872E-6, "ClosenessCentrality" : 0.11809524, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.72341697, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.272, "name" : "YNL164C", "COMMON" : "YNL164C", "gal4RGexp" : -0.949, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "88", "degree_layout" : 1, "gal80Rexp" : -0.089, "gal1RGsig" : 4.6513E-11, "Eccentricity" : 20, "gal4RGsig" : 1.488E-4, "shared_name" : "YDR070C", "TopologicalCoefficient" : 0.0, "SUID" : 88, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 10.4516129, "selected" : false, "gal80Rsig" : 0.1936, "ClosenessCentrality" : 0.09567901, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.64994026, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.915, "name" : "YDR070C", "COMMON" : "YDR070C", "gal4RGexp" : 0.671, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "87", "degree_layout" : 2, "gal80Rexp" : -0.158, "gal1RGsig" : 4.187E-5, "Eccentricity" : 14, "gal4RGsig" : 0.0010135, "shared_name" : "YOR212W", "TopologicalCoefficient" : 0.5, "SUID" : 87, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 6.71774194, "selected" : false, "gal80Rsig" : 0.023184, "ClosenessCentrality" : 0.14885954, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.78823178, "Stress" : 14000, "BetweennessCentrality" : 0.13650914, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.189, "name" : "YOR212W", "COMMON" : "STE4", "gal4RGexp" : -0.256, "IsSingleNode" : false, "NeighborhoodConnectivity" : 6.5 } }, { "data" : { "id" : "86", "degree_layout" : 1, "gal80Rexp" : 0.686, "gal1RGsig" : 4.2628E-11, "Eccentricity" : 18, "gal4RGsig" : 1.601E-8, "shared_name" : "YNL036W", "TopologicalCoefficient" : 0.0, "SUID" : 86, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 7.78225806, "selected" : false, "gal80Rsig" : 3.3349E-7, "ClosenessCentrality" : 0.12849741, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74880526, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.998, "name" : "YNL036W", "COMMON" : "NCE103", "gal4RGexp" : 0.506, "IsSingleNode" : false, "NeighborhoodConnectivity" : 5.0 } }, { "data" : { "id" : "85", "degree_layout" : 1, "gal80Rexp" : 0.385, "gal1RGsig" : 4.5247E-4, "Eccentricity" : 24, "gal4RGsig" : 0.12134, "shared_name" : "YML114C", "TopologicalCoefficient" : 0.0, "SUID" : 85, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 12.3266129, "selected" : false, "gal80Rsig" : 0.0058304, "ClosenessCentrality" : 0.08112529, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.58049582, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.226, "name" : "YML114C", "COMMON" : "YML114C", "gal4RGexp" : -0.145, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "84", "degree_layout" : 3, "gal80Rexp" : -0.296, "gal1RGsig" : 0.41398, "Eccentricity" : 17, "gal4RGsig" : 5.0622E-5, "shared_name" : "YMR117C", "TopologicalCoefficient" : 0.33333333, "SUID" : 84, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 8.80241935, "selected" : false, "gal80Rsig" : 0.35411, "ClosenessCentrality" : 0.11360513, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71102151, "Stress" : 1234, "BetweennessCentrality" : 0.01609638, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.093, "name" : "YMR117C", "COMMON" : "SPC24", "gal4RGexp" : 0.371, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "83", "degree_layout" : 1, "gal80Rexp" : -0.359, "gal1RGsig" : 0.0032078, "Eccentricity" : 18, "gal4RGsig" : 5.8663E-5, "shared_name" : "YPR010C", "TopologicalCoefficient" : 0.0, "SUID" : 83, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.7983871, "selected" : false, "gal80Rsig" : 0.0061199, "ClosenessCentrality" : 0.10205761, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.67413381, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.129, "name" : "YPR010C", "COMMON" : "RPA135", "gal4RGexp" : -0.394, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "82", "degree_layout" : 1, "gal80Rexp" : 0.335, "gal1RGsig" : 7.0779E-4, "Eccentricity" : 2, "gal4RGsig" : 0.010881, "shared_name" : "YOR215C", "TopologicalCoefficient" : 0.0, "SUID" : 82, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 1.273E-4, "ClosenessCentrality" : 0.66666667, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.151, "name" : "YOR215C", "COMMON" : "YOR215C", "gal4RGexp" : 0.137, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "81", "degree_layout" : 2, "gal80Rexp" : 0.124, "gal1RGsig" : 0.091906, "Eccentricity" : 2, "gal4RGsig" : 0.32752, "shared_name" : "YDL088C", "TopologicalCoefficient" : 0.5, "SUID" : 81, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.33333333, "selected" : false, "gal80Rsig" : 0.081403, "ClosenessCentrality" : 0.75, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.88888889, "Stress" : 4, "BetweennessCentrality" : 0.66666667, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.069, "name" : "YDL088C", "COMMON" : "ASM4", "gal4RGexp" : -0.074, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.5 } }, { "data" : { "id" : "80", "degree_layout" : 2, "gal80Rexp" : 0.49, "gal1RGsig" : 0.70174, "Eccentricity" : 1, "gal4RGsig" : 1.0814E-5, "shared_name" : "YLR197W", "TopologicalCoefficient" : 1.0, "SUID" : 80, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 3.3814E-8, "ClosenessCentrality" : 1.0, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 1.0, "Radiality" : 1.0, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.02, "name" : "YLR197W", "COMMON" : "SIK1", "gal4RGexp" : -0.521, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "79", "degree_layout" : 1, "gal80Rexp" : -0.536, "gal1RGsig" : 4.2677E-7, "Eccentricity" : 2, "gal4RGsig" : 4.2373E-5, "shared_name" : "YGL202W", "TopologicalCoefficient" : 0.0, "SUID" : 79, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 3.8938E-13, "ClosenessCentrality" : 0.66666667, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.305, "name" : "YGL202W", "COMMON" : "ARO8", "gal4RGexp" : -0.286, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "78", "degree_layout" : 2, "gal80Rexp" : 0.029, "gal1RGsig" : 0.11939, "Eccentricity" : 1, "gal4RGsig" : 0.08221, "shared_name" : "YGR074W", "TopologicalCoefficient" : 0.0, "SUID" : 78, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 1.0, "selected" : false, "gal80Rsig" : 0.80755, "ClosenessCentrality" : 1.0, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 1.0, "Stress" : 2, "BetweennessCentrality" : 1.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.074, "name" : "YGR074W", "COMMON" : "SMD1", "gal4RGexp" : -0.133, "IsSingleNode" : false, "NeighborhoodConnectivity" : 1.0 } }, { "data" : { "id" : "77", "degree_layout" : 1, "gal80Rexp" : 0.429, "gal1RGsig" : 0.0078298, "Eccentricity" : 2, "gal4RGsig" : 0.13454, "shared_name" : "YBR170C", "TopologicalCoefficient" : 0.0, "SUID" : 77, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 0.0016184, "ClosenessCentrality" : 0.66666667, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.128, "name" : "YBR170C", "COMMON" : "NPL4", "gal4RGexp" : -0.134, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "76", "degree_layout" : 1, "gal80Rexp" : -0.406, "gal1RGsig" : 4.5602E-11, "Eccentricity" : 17, "gal4RGsig" : 1.8858E-5, "shared_name" : "YDL023C", "TopologicalCoefficient" : 0.0, "SUID" : 76, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 7.8266129, "selected" : false, "gal80Rsig" : 1.7119E-8, "ClosenessCentrality" : 0.12776919, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.74716249, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.712, "name" : "YDL023C", "COMMON" : "YDL023C", "gal4RGexp" : 0.497, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "75", "degree_layout" : 1, "gal80Rexp" : -0.204, "gal1RGsig" : 2.4958E-4, "Eccentricity" : 21, "gal4RGsig" : 0.0042386, "shared_name" : "YGR136W", "TopologicalCoefficient" : 0.0, "SUID" : 75, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 11.06854839, "selected" : false, "gal80Rsig" : 0.0020376, "ClosenessCentrality" : 0.09034608, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.6270908, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.167, "name" : "YGR136W", "COMMON" : "YGR136W", "gal4RGexp" : -0.163, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "74", "degree_layout" : 1, "gal80Rexp" : 0.047, "gal1RGsig" : 1.1443E-5, "Eccentricity" : 3, "gal4RGsig" : 8.1743E-6, "shared_name" : "YFR014C", "TopologicalCoefficient" : 0.0, "SUID" : 74, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.0, "selected" : false, "gal80Rsig" : 0.64057, "ClosenessCentrality" : 0.5, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66666667, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.229, "name" : "YFR014C", "COMMON" : "CMK1", "gal4RGexp" : 0.304, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "73", "degree_layout" : 1, "gal80Rexp" : 0.056, "gal1RGsig" : 0.0041386, "Eccentricity" : 19, "gal4RGsig" : 1.5697E-6, "shared_name" : "YDL075W", "TopologicalCoefficient" : 0.0, "SUID" : 73, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.14919355, "selected" : false, "gal80Rsig" : 0.38208, "ClosenessCentrality" : 0.10929925, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.69817802, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.218, "name" : "YDL075W", "COMMON" : "RPL31A", "gal4RGexp" : -0.451, "IsSingleNode" : false, "NeighborhoodConnectivity" : 8.0 } }, { "data" : { "id" : "72", "degree_layout" : 1, "gal80Rexp" : -0.124, "gal1RGsig" : 2.6481E-7, "Eccentricity" : 19, "gal4RGsig" : 5.1994E-5, "shared_name" : "YNL069C", "TopologicalCoefficient" : 0.0, "SUID" : 72, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.14919355, "selected" : false, "gal80Rsig" : 0.026888, "ClosenessCentrality" : 0.10929925, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.69817802, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.346, "name" : "YNL069C", "COMMON" : "RPL16B", "gal4RGexp" : -0.284, "IsSingleNode" : false, "NeighborhoodConnectivity" : 8.0 } }, { "data" : { "id" : "71", "degree_layout" : 1, "Eccentricity" : 19, "shared_name" : "YER056CA", "TopologicalCoefficient" : 0.0, "SUID" : 71, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.14919355, "selected" : false, "ClosenessCentrality" : 0.10929925, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.69817802, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "name" : "YER056CA", "COMMON" : "", "IsSingleNode" : false, "NeighborhoodConnectivity" : 8.0 } }, { "data" : { "id" : "70", "degree_layout" : 1, "gal80Rexp" : -0.025, "gal1RGsig" : 3.7855E-5, "Eccentricity" : 19, "gal4RGsig" : 3.4652E-7, "shared_name" : "YIL052C", "TopologicalCoefficient" : 0.0, "SUID" : 70, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.14919355, "selected" : false, "gal80Rsig" : 0.66627, "ClosenessCentrality" : 0.10929925, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.69817802, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.258, "name" : "YIL052C", "COMMON" : "RPL34B", "gal4RGexp" : -0.451, "IsSingleNode" : false, "NeighborhoodConnectivity" : 8.0 } }, { "data" : { "id" : "69", "degree_layout" : 1, "gal80Rexp" : 0.116, "gal1RGsig" : 0.012373, "Eccentricity" : 19, "gal4RGsig" : 7.892E-5, "shared_name" : "YLR345W", "TopologicalCoefficient" : 0.0, "SUID" : 69, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.11693548, "selected" : false, "gal80Rsig" : 0.073789, "ClosenessCentrality" : 0.10968598, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.69937276, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.108, "name" : "YLR345W", "COMMON" : "YLR345W", "gal4RGexp" : 0.234, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "68", "degree_layout" : 1, "gal80Rexp" : -0.42, "gal1RGsig" : 2.5668E-4, "Eccentricity" : 3, "gal4RGsig" : 0.45723, "shared_name" : "YBL079W", "TopologicalCoefficient" : 0.0, "SUID" : 68, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 2.0, "selected" : false, "gal80Rsig" : 2.9469E-9, "ClosenessCentrality" : 0.5, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.66666667, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.186, "name" : "YBL079W", "COMMON" : "NUP170", "gal4RGexp" : -0.032, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "67", "degree_layout" : 3, "gal80Rexp" : 0.94, "gal1RGsig" : 5.5911E-6, "Eccentricity" : 20, "gal4RGsig" : 1.2945E-5, "shared_name" : "YBR045C", "TopologicalCoefficient" : 0.44444444, "SUID" : 67, "SelfLoops" : 0, "NumberOfDirectedEdges" : 3, "AverageShortestPathLength" : 9.64516129, "selected" : false, "gal80Rsig" : 0.016389, "ClosenessCentrality" : 0.10367893, "Degree" : 3, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.67980884, "Stress" : 21474, "BetweennessCentrality" : 0.08528144, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.786, "name" : "YBR045C", "COMMON" : "GIP1", "gal4RGexp" : 1.022, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.33333333 } }, { "data" : { "id" : "66", "degree_layout" : 2, "gal80Rexp" : 0.247, "gal1RGsig" : 0.16958, "Eccentricity" : 19, "gal4RGsig" : 6.2032E-4, "shared_name" : "YER054C", "TopologicalCoefficient" : 0.58333333, "SUID" : 66, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 8.81854839, "selected" : false, "gal80Rsig" : 0.0043603, "ClosenessCentrality" : 0.11339735, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.71042413, "Stress" : 11544, "BetweennessCentrality" : 0.04427321, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.057, "name" : "YER054C", "COMMON" : "GIP2", "gal4RGexp" : 0.206, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.5 } }, { "data" : { "id" : "65", "degree_layout" : 1, "gal80Rexp" : -0.232, "gal1RGsig" : 3.174E-5, "Eccentricity" : 18, "gal4RGsig" : 1.1525E-7, "shared_name" : "YPR145W", "TopologicalCoefficient" : 0.0, "SUID" : 65, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 9.7983871, "selected" : false, "gal80Rsig" : 0.0011873, "ClosenessCentrality" : 0.10205761, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.67413381, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : -0.195, "name" : "YPR145W", "COMMON" : "ASN1", "gal4RGexp" : -0.614, "IsSingleNode" : false, "NeighborhoodConnectivity" : 3.0 } }, { "data" : { "id" : "64", "degree_layout" : 1, "gal80Rexp" : 0.0, "gal1RGsig" : 5.373E-8, "Eccentricity" : 2, "gal4RGsig" : 0.94178, "shared_name" : "YBR043C", "TopologicalCoefficient" : 0.0, "SUID" : 64, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 1.5, "selected" : false, "gal80Rsig" : 0.999999, "ClosenessCentrality" : 0.66666667, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.75, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.454, "name" : "YBR043C", "COMMON" : "YBR043C", "gal4RGexp" : 0.023, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } }, { "data" : { "id" : "63", "degree_layout" : 2, "gal80Rexp" : 0.448, "gal1RGsig" : 2.186E-5, "Eccentricity" : 25, "gal4RGsig" : 0.028044, "shared_name" : "YDR277C", "TopologicalCoefficient" : 0.5, "SUID" : 63, "SelfLoops" : 0, "NumberOfDirectedEdges" : 2, "AverageShortestPathLength" : 12.12096774, "selected" : false, "gal80Rsig" : 5.727E-4, "ClosenessCentrality" : 0.08250166, "Degree" : 2, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.58811231, "Stress" : 2722, "BetweennessCentrality" : 0.00806452, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.243, "name" : "YDR277C", "COMMON" : "MTH1", "gal4RGexp" : 0.192, "IsSingleNode" : false, "NeighborhoodConnectivity" : 4.0 } }, { "data" : { "id" : "62", "degree_layout" : 1, "gal80Rexp" : 0.449, "gal1RGsig" : 0.018043, "Eccentricity" : 26, "gal4RGsig" : 0.033961, "shared_name" : "YDL194W", "TopologicalCoefficient" : 0.0, "SUID" : 62, "SelfLoops" : 0, "NumberOfDirectedEdges" : 1, "AverageShortestPathLength" : 13.11693548, "selected" : false, "gal80Rsig" : 0.011348, "ClosenessCentrality" : 0.07623732, "Degree" : 1, "PartnerOfMultiEdgedNodePairs" : 0, "ClusteringCoefficient" : 0.0, "Radiality" : 0.55122461, "Stress" : 0, "BetweennessCentrality" : 0.0, "NumberOfUndirectedEdges" : 0, "gal1RGexp" : 0.139, "name" : "YDL194W", "COMMON" : "SNF3", "gal4RGexp" : 0.333, "IsSingleNode" : false, "NeighborhoodConnectivity" : 2.0 } } ], "edges" : [ { "data" : { "id" : "754", "source" : "392", "target" : "391", "EdgeBetweenness" : 496.0, "shared_name" : "YKR026C (pp) YGL122C", "shared_interaction" : "pp", "name" : "YKR026C (pp) YGL122C", "interaction" : "pp", "SUID" : 754, "selected" : false } }, { "data" : { "id" : "753", "source" : "391", "target" : "379", "EdgeBetweenness" : 988.0, "shared_name" : "YGL122C (pp) YOL123W", "shared_interaction" : "pp", "name" : "YGL122C (pp) YOL123W", "interaction" : "pp", "SUID" : 753, "selected" : false } }, { "data" : { "id" : "752", "source" : "390", "target" : "389", "EdgeBetweenness" : 6.0, "shared_name" : "YGR218W (pp) YGL097W", "shared_interaction" : "pp", "name" : "YGR218W (pp) YGL097W", "interaction" : "pp", "SUID" : 752, "selected" : false } }, { "data" : { "id" : "751", "source" : "389", "target" : "388", "EdgeBetweenness" : 6.0, "shared_name" : "YGL097W (pp) YOR204W", "shared_interaction" : "pp", "name" : "YGL097W (pp) YOR204W", "interaction" : "pp", "SUID" : 751, "selected" : false } }, { "data" : { "id" : "750", "source" : "387", "target" : "386", "EdgeBetweenness" : 4.0, "shared_name" : "YLR249W (pp) YPR080W", "shared_interaction" : "pp", "name" : "YLR249W (pp) YPR080W", "interaction" : "pp", "SUID" : 750, "selected" : false } }, { "data" : { "id" : "749", "source" : "387", "target" : "385", "EdgeBetweenness" : 4.0, "shared_name" : "YLR249W (pp) YBR118W", "shared_interaction" : "pp", "name" : "YLR249W (pp) YBR118W", "interaction" : "pp", "SUID" : 749, "selected" : false } }, { "data" : { "id" : "748", "source" : "386", "target" : "380", "EdgeBetweenness" : 4.0, "shared_name" : "YPR080W (pp) YAL003W", "shared_interaction" : "pp", "name" : "YPR080W (pp) YAL003W", "interaction" : "pp", "SUID" : 748, "selected" : false } }, { "data" : { "id" : "747", "source" : "385", "target" : "380", "EdgeBetweenness" : 4.0, "shared_name" : "YBR118W (pp) YAL003W", "shared_interaction" : "pp", "name" : "YBR118W (pp) YAL003W", "interaction" : "pp", "SUID" : 747, "selected" : false } }, { "data" : { "id" : "746", "source" : "384", "target" : "389", "EdgeBetweenness" : 6.0, "shared_name" : "YLR293C (pp) YGL097W", "shared_interaction" : "pp", "name" : "YLR293C (pp) YGL097W", "interaction" : "pp", "SUID" : 746, "selected" : false } }, { "data" : { "id" : "745", "source" : "383", "target" : "382", "EdgeBetweenness" : 496.0, "shared_name" : "YMR146C (pp) YDR429C", "shared_interaction" : "pp", "name" : "YMR146C (pp) YDR429C", "interaction" : "pp", "SUID" : 745, "selected" : false } }, { "data" : { "id" : "744", "source" : "382", "target" : "381", "EdgeBetweenness" : 1470.49481074, "shared_name" : "YDR429C (pp) YFL017C", "shared_interaction" : "pp", "name" : "YDR429C (pp) YFL017C", "interaction" : "pp", "SUID" : 744, "selected" : false } }, { "data" : { "id" : "743", "source" : "381", "target" : "150", "EdgeBetweenness" : 496.0, "shared_name" : "YFL017C (pp) YOL059W", "shared_interaction" : "pp", "name" : "YFL017C (pp) YOL059W", "interaction" : "pp", "SUID" : 743, "selected" : false } }, { "data" : { "id" : "742", "source" : "381", "target" : "149", "EdgeBetweenness" : 2758.08455433, "shared_name" : "YFL017C (pp) YER102W", "shared_interaction" : "pp", "name" : "YFL017C (pp) YER102W", "interaction" : "pp", "SUID" : 742, "selected" : false } }, { "data" : { "id" : "741", "source" : "381", "target" : "148", "EdgeBetweenness" : 496.0, "shared_name" : "YFL017C (pp) YOR362C", "shared_interaction" : "pp", "name" : "YFL017C (pp) YOR362C", "interaction" : "pp", "SUID" : 741, "selected" : false } }, { "data" : { "id" : "740", "source" : "379", "target" : "378", "EdgeBetweenness" : 496.0, "shared_name" : "YOL123W (pp) YGL044C", "shared_interaction" : "pp", "name" : "YOL123W (pp) YGL044C", "interaction" : "pp", "SUID" : 740, "selected" : false } }, { "data" : { "id" : "739", "source" : "377", "target" : "376", "EdgeBetweenness" : 8.0, "shared_name" : "YPL211W (pp) YGR014W", "shared_interaction" : "pp", "name" : "YPL211W (pp) YGR014W", "interaction" : "pp", "SUID" : 739, "selected" : false } }, { "data" : { "id" : "738", "source" : "376", "target" : "375", "EdgeBetweenness" : 7.0, "shared_name" : "YGR014W (pp) YJL030W", "shared_interaction" : "pp", "name" : "YGR014W (pp) YJL030W", "interaction" : "pp", "SUID" : 738, "selected" : false } }, { "data" : { "id" : "737", "source" : "376", "target" : "373", "EdgeBetweenness" : 7.0, "shared_name" : "YGR014W (pp) YJL013C", "shared_interaction" : "pp", "name" : "YGR014W (pp) YJL013C", "interaction" : "pp", "SUID" : 737, "selected" : false } }, { "data" : { "id" : "736", "source" : "375", "target" : "374", "EdgeBetweenness" : 5.0, "shared_name" : "YJL030W (pp) YGL229C", "shared_interaction" : "pp", "name" : "YJL030W (pp) YGL229C", "interaction" : "pp", "SUID" : 736, "selected" : false } }, { "data" : { "id" : "735", "source" : "373", "target" : "374", "EdgeBetweenness" : 5.0, "shared_name" : "YJL013C (pp) YGL229C", "shared_interaction" : "pp", "name" : "YJL013C (pp) YGL229C", "interaction" : "pp", "SUID" : 735, "selected" : false } }, { "data" : { "id" : "734", "source" : "372", "target" : "371", "EdgeBetweenness" : 496.0, "shared_name" : "YGR203W (pp) YIL061C", "shared_interaction" : "pp", "name" : "YGR203W (pp) YIL061C", "interaction" : "pp", "SUID" : 734, "selected" : false } }, { "data" : { "id" : "733", "source" : "371", "target" : "358", "EdgeBetweenness" : 8486.71708292, "shared_name" : "YIL061C (pp) YDL013W", "shared_interaction" : "pp", "name" : "YIL061C (pp) YDL013W", "interaction" : "pp", "SUID" : 733, "selected" : false } }, { "data" : { "id" : "732", "source" : "371", "target" : "213", "EdgeBetweenness" : 9902.71708292, "shared_name" : "YIL061C (pp) YNL199C", "shared_interaction" : "pp", "name" : "YIL061C (pp) YNL199C", "interaction" : "pp", "SUID" : 732, "selected" : false } }, { "data" : { "id" : "731", "source" : "371", "target" : "91", "EdgeBetweenness" : 496.0, "shared_name" : "YIL061C (pp) YLR153C", "shared_interaction" : "pp", "name" : "YIL061C (pp) YLR153C", "interaction" : "pp", "SUID" : 731, "selected" : false } }, { "data" : { "id" : "730", "source" : "370", "target" : "369", "EdgeBetweenness" : 496.0, "shared_name" : "YCR084C (pp) YBR112C", "shared_interaction" : "pp", "name" : "YCR084C (pp) YBR112C", "interaction" : "pp", "SUID" : 730, "selected" : false } }, { "data" : { "id" : "729", "source" : "370", "target" : "368", "EdgeBetweenness" : 988.0, "shared_name" : "YCR084C (pp) YCL067C", "shared_interaction" : "pp", "name" : "YCR084C (pp) YCL067C", "interaction" : "pp", "SUID" : 729, "selected" : false } }, { "data" : { "id" : "728", "source" : "368", "target" : "268", "EdgeBetweenness" : 9.0, "shared_name" : "YCL067C (pd) YIL015W", "shared_interaction" : "pd", "name" : "YCL067C (pd) YIL015W", "interaction" : "pd", "SUID" : 728, "selected" : false } }, { "data" : { "id" : "727", "source" : "368", "target" : "269", "EdgeBetweenness" : 1447.5, "shared_name" : "YCL067C (pp) YMR043W", "shared_interaction" : "pp", "name" : "YCL067C (pp) YMR043W", "interaction" : "pp", "SUID" : 727, "selected" : false } }, { "data" : { "id" : "726", "source" : "368", "target" : "264", "EdgeBetweenness" : 9.83333333, "shared_name" : "YCL067C (pd) YDR461W", "shared_interaction" : "pd", "name" : "YCL067C (pd) YDR461W", "interaction" : "pd", "SUID" : 726, "selected" : false } }, { "data" : { "id" : "725", "source" : "368", "target" : "261", "EdgeBetweenness" : 9.83333333, "shared_name" : "YCL067C (pd) YFL026W", "shared_interaction" : "pd", "name" : "YCL067C (pd) YFL026W", "interaction" : "pd", "SUID" : 725, "selected" : false } }, { "data" : { "id" : "724", "source" : "367", "target" : "366", "EdgeBetweenness" : 248.5, "shared_name" : "YER112W (pp) YOR167C", "shared_interaction" : "pp", "name" : "YER112W (pp) YOR167C", "interaction" : "pp", "SUID" : 724, "selected" : false } }, { "data" : { "id" : "723", "source" : "365", "target" : "364", "EdgeBetweenness" : 1960.0, "shared_name" : "YJR022W (pp) YNR050C", "shared_interaction" : "pp", "name" : "YJR022W (pp) YNR050C", "interaction" : "pp", "SUID" : 723, "selected" : false } }, { "data" : { "id" : "722", "source" : "365", "target" : "363", "EdgeBetweenness" : 496.0, "shared_name" : "YJR022W (pp) YNL050C", "shared_interaction" : "pp", "name" : "YJR022W (pp) YNL050C", "interaction" : "pp", "SUID" : 722, "selected" : false } }, { "data" : { "id" : "721", "source" : "365", "target" : "362", "EdgeBetweenness" : 3050.14565435, "shared_name" : "YJR022W (pp) YEL015W", "shared_interaction" : "pp", "name" : "YJR022W (pp) YEL015W", "interaction" : "pp", "SUID" : 721, "selected" : false } }, { "data" : { "id" : "720", "source" : "365", "target" : "366", "EdgeBetweenness" : 1220.5, "shared_name" : "YJR022W (pp) YOR167C", "shared_interaction" : "pp", "name" : "YJR022W (pp) YOR167C", "interaction" : "pp", "SUID" : 720, "selected" : false } }, { "data" : { "id" : "719", "source" : "365", "target" : "361", "EdgeBetweenness" : 1220.5, "shared_name" : "YJR022W (pp) YLR264W", "shared_interaction" : "pp", "name" : "YJR022W (pp) YLR264W", "interaction" : "pp", "SUID" : 719, "selected" : false } }, { "data" : { "id" : "718", "source" : "365", "target" : "360", "EdgeBetweenness" : 6283.85994006, "shared_name" : "YJR022W (pp) YNR053C", "shared_interaction" : "pp", "name" : "YJR022W (pp) YNR053C", "interaction" : "pp", "SUID" : 718, "selected" : false } }, { "data" : { "id" : "717", "source" : "364", "target" : "312", "EdgeBetweenness" : 1476.0, "shared_name" : "YNR050C (pp) YMR138W", "shared_interaction" : "pp", "name" : "YNR050C (pp) YMR138W", "interaction" : "pp", "SUID" : 717, "selected" : false } }, { "data" : { "id" : "716", "source" : "362", "target" : "227", "EdgeBetweenness" : 3025.31048951, "shared_name" : "YEL015W (pp) YML064C", "shared_interaction" : "pp", "name" : "YEL015W (pp) YML064C", "interaction" : "pp", "SUID" : 716, "selected" : false } }, { "data" : { "id" : "715", "source" : "361", "target" : "367", "EdgeBetweenness" : 248.5, "shared_name" : "YLR264W (pp) YER112W", "shared_interaction" : "pp", "name" : "YLR264W (pp) YER112W", "interaction" : "pp", "SUID" : 715, "selected" : false } }, { "data" : { "id" : "714", "source" : "361", "target" : "146", "EdgeBetweenness" : 248.5, "shared_name" : "YLR264W (pp) YOL149W", "shared_interaction" : "pp", "name" : "YLR264W (pp) YOL149W", "interaction" : "pp", "SUID" : 714, "selected" : false } }, { "data" : { "id" : "713", "source" : "361", "target" : "114", "EdgeBetweenness" : 248.5, "shared_name" : "YLR264W (pp) YBL026W", "shared_interaction" : "pp", "name" : "YLR264W (pp) YBL026W", "interaction" : "pp", "SUID" : 713, "selected" : false } }, { "data" : { "id" : "712", "source" : "360", "target" : "259", "EdgeBetweenness" : 988.0, "shared_name" : "YNR053C (pp) YJL203W", "shared_interaction" : "pp", "name" : "YNR053C (pp) YJL203W", "interaction" : "pp", "SUID" : 712, "selected" : false } }, { "data" : { "id" : "711", "source" : "360", "target" : "100", "EdgeBetweenness" : 7118.71708292, "shared_name" : "YNR053C (pp) YDL030W", "shared_interaction" : "pp", "name" : "YNR053C (pp) YDL030W", "interaction" : "pp", "SUID" : 711, "selected" : false } }, { "data" : { "id" : "710", "source" : "359", "target" : "358", "EdgeBetweenness" : 496.0, "shared_name" : "YER116C (pp) YDL013W", "shared_interaction" : "pp", "name" : "YER116C (pp) YDL013W", "interaction" : "pp", "SUID" : 710, "selected" : false } }, { "data" : { "id" : "709", "source" : "357", "target" : "356", "EdgeBetweenness" : 988.0, "shared_name" : "YNL307C (pp) YAL038W", "shared_interaction" : "pp", "name" : "YNL307C (pp) YAL038W", "interaction" : "pp", "SUID" : 709, "selected" : false } }, { "data" : { "id" : "708", "source" : "356", "target" : "214", "EdgeBetweenness" : 2034.76542347, "shared_name" : "YAL038W (pd) YPL075W", "shared_interaction" : "pd", "name" : "YAL038W (pd) YPL075W", "interaction" : "pd", "SUID" : 708, "selected" : false } }, { "data" : { "id" : "707", "source" : "355", "target" : "354", "EdgeBetweenness" : 2940.76542347, "shared_name" : "YNL216W (pd) YCR012W", "shared_interaction" : "pd", "name" : "YNL216W (pd) YCR012W", "interaction" : "pd", "SUID" : 707, "selected" : false } }, { "data" : { "id" : "706", "source" : "355", "target" : "353", "EdgeBetweenness" : 2148.76542347, "shared_name" : "YNL216W (pd) YGR254W", "shared_interaction" : "pd", "name" : "YNL216W (pd) YGR254W", "interaction" : "pd", "SUID" : 706, "selected" : false } }, { "data" : { "id" : "705", "source" : "355", "target" : "352", "EdgeBetweenness" : 2148.76542347, "shared_name" : "YNL216W (pd) YHR174W", "shared_interaction" : "pd", "name" : "YNL216W (pd) YHR174W", "interaction" : "pd", "SUID" : 705, "selected" : false } }, { "data" : { "id" : "704", "source" : "355", "target" : "351", "EdgeBetweenness" : 2391.0, "shared_name" : "YNL216W (pd) YIL133C", "shared_interaction" : "pd", "name" : "YNL216W (pd) YIL133C", "interaction" : "pd", "SUID" : 704, "selected" : false } }, { "data" : { "id" : "703", "source" : "355", "target" : "350", "EdgeBetweenness" : 15620.15017205, "shared_name" : "YNL216W (pd) YLR044C", "shared_interaction" : "pd", "name" : "YNL216W (pd) YLR044C", "interaction" : "pd", "SUID" : 703, "selected" : false } }, { "data" : { "id" : "702", "source" : "355", "target" : "349", "EdgeBetweenness" : 496.0, "shared_name" : "YNL216W (pd) YOL120C", "shared_interaction" : "pd", "name" : "YNL216W (pd) YOL120C", "interaction" : "pd", "SUID" : 702, "selected" : false } }, { "data" : { "id" : "701", "source" : "355", "target" : "348", "EdgeBetweenness" : 496.0, "shared_name" : "YNL216W (pd) YNL301C", "shared_interaction" : "pd", "name" : "YNL216W (pd) YNL301C", "interaction" : "pd", "SUID" : 701, "selected" : false } }, { "data" : { "id" : "700", "source" : "355", "target" : "347", "EdgeBetweenness" : 5079.35982906, "shared_name" : "YNL216W (pd) YCL030C", "shared_interaction" : "pd", "name" : "YNL216W (pd) YCL030C", "interaction" : "pd", "SUID" : 700, "selected" : false } }, { "data" : { "id" : "699", "source" : "355", "target" : "346", "EdgeBetweenness" : 496.0, "shared_name" : "YNL216W (pp) YDR171W", "shared_interaction" : "pp", "name" : "YNL216W (pp) YDR171W", "interaction" : "pp", "SUID" : 699, "selected" : false } }, { "data" : { "id" : "698", "source" : "355", "target" : "345", "EdgeBetweenness" : 1476.0, "shared_name" : "YNL216W (pd) YBR093C", "shared_interaction" : "pd", "name" : "YNL216W (pd) YBR093C", "interaction" : "pd", "SUID" : 698, "selected" : false } }, { "data" : { "id" : "697", "source" : "355", "target" : "344", "EdgeBetweenness" : 496.0, "shared_name" : "YNL216W (pd) YER074W", "shared_interaction" : "pd", "name" : "YNL216W (pd) YER074W", "interaction" : "pd", "SUID" : 697, "selected" : false } }, { "data" : { "id" : "696", "source" : "355", "target" : "343", "EdgeBetweenness" : 496.0, "shared_name" : "YNL216W (pd) YIL069C", "shared_interaction" : "pd", "name" : "YNL216W (pd) YIL069C", "interaction" : "pd", "SUID" : 696, "selected" : false } }, { "data" : { "id" : "695", "source" : "355", "target" : "356", "EdgeBetweenness" : 2940.76542347, "shared_name" : "YNL216W (pd) YAL038W", "shared_interaction" : "pd", "name" : "YNL216W (pd) YAL038W", "interaction" : "pd", "SUID" : 695, "selected" : false } }, { "data" : { "id" : "694", "source" : "355", "target" : "342", "EdgeBetweenness" : 2391.0, "shared_name" : "YNL216W (pd) YOL127W", "shared_interaction" : "pd", "name" : "YNL216W (pd) YOL127W", "interaction" : "pd", "SUID" : 694, "selected" : false } }, { "data" : { "id" : "693", "source" : "355", "target" : "341", "EdgeBetweenness" : 2148.76542347, "shared_name" : "YNL216W (pd) YDR050C", "shared_interaction" : "pd", "name" : "YNL216W (pd) YDR050C", "interaction" : "pd", "SUID" : 693, "selected" : false } }, { "data" : { "id" : "692", "source" : "355", "target" : "340", "EdgeBetweenness" : 2148.76542347, "shared_name" : "YNL216W (pd) YOL086C", "shared_interaction" : "pd", "name" : "YNL216W (pd) YOL086C", "interaction" : "pd", "SUID" : 692, "selected" : false } }, { "data" : { "id" : "691", "source" : "354", "target" : "305", "EdgeBetweenness" : 988.0, "shared_name" : "YCR012W (pd) YJR060W", "shared_interaction" : "pd", "name" : "YCR012W (pd) YJR060W", "interaction" : "pd", "SUID" : 691, "selected" : false } }, { "data" : { "id" : "690", "source" : "347", "target" : "296", "EdgeBetweenness" : 3832.74371184, "shared_name" : "YCL030C (pd) YKR099W", "shared_interaction" : "pd", "name" : "YCL030C (pd) YKR099W", "interaction" : "pd", "SUID" : 690, "selected" : false } }, { "data" : { "id" : "689", "source" : "339", "target" : "338", "EdgeBetweenness" : 249.0, "shared_name" : "YAL030W (pp) YER143W", "shared_interaction" : "pp", "name" : "YAL030W (pp) YER143W", "interaction" : "pp", "SUID" : 689, "selected" : false } }, { "data" : { "id" : "688", "source" : "337", "target" : "338", "EdgeBetweenness" : 249.0, "shared_name" : "YOR327C (pp) YER143W", "shared_interaction" : "pp", "name" : "YOR327C (pp) YER143W", "interaction" : "pp", "SUID" : 688, "selected" : false } }, { "data" : { "id" : "687", "source" : "336", "target" : "335", "EdgeBetweenness" : 2.0, "shared_name" : "YER062C (pp) YPL201C", "shared_interaction" : "pp", "name" : "YER062C (pp) YPL201C", "interaction" : "pp", "SUID" : 687, "selected" : false } }, { "data" : { "id" : "686", "source" : "334", "target" : "333", "EdgeBetweenness" : 1960.0, "shared_name" : "YDR412W (pp) YCR086W", "shared_interaction" : "pp", "name" : "YDR412W (pp) YCR086W", "interaction" : "pp", "SUID" : 686, "selected" : false } }, { "data" : { "id" : "685", "source" : "334", "target" : "332", "EdgeBetweenness" : 1960.0, "shared_name" : "YDR412W (pp) YGL013C", "shared_interaction" : "pp", "name" : "YDR412W (pp) YGL013C", "interaction" : "pp", "SUID" : 685, "selected" : false } }, { "data" : { "id" : "684", "source" : "334", "target" : "331", "EdgeBetweenness" : 988.0, "shared_name" : "YDR412W (pp) YLR117C", "shared_interaction" : "pp", "name" : "YDR412W (pp) YLR117C", "interaction" : "pp", "SUID" : 684, "selected" : false } }, { "data" : { "id" : "683", "source" : "334", "target" : "330", "EdgeBetweenness" : 18040.0, "shared_name" : "YDR412W (pp) YPR119W", "shared_interaction" : "pp", "name" : "YDR412W (pp) YPR119W", "interaction" : "pp", "SUID" : 683, "selected" : false } }, { "data" : { "id" : "682", "source" : "333", "target" : "287", "EdgeBetweenness" : 1476.0, "shared_name" : "YCR086W (pp) YOR264W", "shared_interaction" : "pp", "name" : "YCR086W (pp) YOR264W", "interaction" : "pp", "SUID" : 682, "selected" : false } }, { "data" : { "id" : "681", "source" : "332", "target" : "256", "EdgeBetweenness" : 739.0, "shared_name" : "YGL013C (pd) YJL219W", "shared_interaction" : "pd", "name" : "YGL013C (pd) YJL219W", "interaction" : "pd", "SUID" : 681, "selected" : false } }, { "data" : { "id" : "680", "source" : "332", "target" : "255", "EdgeBetweenness" : 739.0, "shared_name" : "YGL013C (pd) YOL156W", "shared_interaction" : "pd", "name" : "YGL013C (pd) YOL156W", "interaction" : "pd", "SUID" : 680, "selected" : false } }, { "data" : { "id" : "679", "source" : "331", "target" : "151", "EdgeBetweenness" : 496.0, "shared_name" : "YLR117C (pp) YBR190W", "shared_interaction" : "pp", "name" : "YLR117C (pp) YBR190W", "interaction" : "pp", "SUID" : 679, "selected" : false } }, { "data" : { "id" : "678", "source" : "330", "target" : "269", "EdgeBetweenness" : 18360.0, "shared_name" : "YPR119W (pd) YMR043W", "shared_interaction" : "pd", "name" : "YPR119W (pd) YMR043W", "interaction" : "pd", "SUID" : 678, "selected" : false } }, { "data" : { "id" : "677", "source" : "329", "target" : "328", "EdgeBetweenness" : 2.0, "shared_name" : "YDL014W (pp) YOR310C", "shared_interaction" : "pp", "name" : "YDL014W (pp) YOR310C", "interaction" : "pp", "SUID" : 677, "selected" : false } }, { "data" : { "id" : "676", "source" : "327", "target" : "350", "EdgeBetweenness" : 3377.91544567, "shared_name" : "YER179W (pp) YLR044C", "shared_interaction" : "pp", "name" : "YER179W (pp) YLR044C", "interaction" : "pp", "SUID" : 676, "selected" : false } }, { "data" : { "id" : "675", "source" : "327", "target" : "326", "EdgeBetweenness" : 496.0, "shared_name" : "YER179W (pp) YLR134W", "shared_interaction" : "pp", "name" : "YER179W (pp) YLR134W", "interaction" : "pp", "SUID" : 675, "selected" : false } }, { "data" : { "id" : "674", "source" : "327", "target" : "325", "EdgeBetweenness" : 2481.91544567, "shared_name" : "YER179W (pp) YIL105C", "shared_interaction" : "pp", "name" : "YER179W (pp) YIL105C", "interaction" : "pp", "SUID" : 674, "selected" : false } }, { "data" : { "id" : "673", "source" : "324", "target" : "323", "EdgeBetweenness" : 1073.41544567, "shared_name" : "YOR361C (pp) YMR309C", "shared_interaction" : "pp", "name" : "YOR361C (pp) YMR309C", "interaction" : "pp", "SUID" : 673, "selected" : false } }, { "data" : { "id" : "672", "source" : "324", "target" : "382", "EdgeBetweenness" : 1287.12973138, "shared_name" : "YOR361C (pp) YDR429C", "shared_interaction" : "pp", "name" : "YOR361C (pp) YDR429C", "interaction" : "pp", "SUID" : 672, "selected" : false } }, { "data" : { "id" : "671", "source" : "323", "target" : "224", "EdgeBetweenness" : 1581.91544567, "shared_name" : "YMR309C (pp) YNL047C", "shared_interaction" : "pp", "name" : "YMR309C (pp) YNL047C", "interaction" : "pp", "SUID" : 671, "selected" : false } }, { "data" : { "id" : "670", "source" : "322", "target" : "321", "EdgeBetweenness" : 8.0, "shared_name" : "YOR326W (pp) YGL106W", "shared_interaction" : "pp", "name" : "YOR326W (pp) YGL106W", "interaction" : "pp", "SUID" : 670, "selected" : false } }, { "data" : { "id" : "669", "source" : "320", "target" : "319", "EdgeBetweenness" : 247.0, "shared_name" : "YMR186W (pp) YBR155W", "shared_interaction" : "pp", "name" : "YMR186W (pp) YBR155W", "interaction" : "pp", "SUID" : 669, "selected" : false } }, { "data" : { "id" : "668", "source" : "318", "target" : "317", "EdgeBetweenness" : 496.0, "shared_name" : "YEL009C (pd) YMR108W", "shared_interaction" : "pd", "name" : "YEL009C (pd) YMR108W", "interaction" : "pd", "SUID" : 668, "selected" : false } }, { "data" : { "id" : "667", "source" : "318", "target" : "316", "EdgeBetweenness" : 635.26923077, "shared_name" : "YEL009C (pd) YOR202W", "shared_interaction" : "pd", "name" : "YEL009C (pd) YOR202W", "interaction" : "pd", "SUID" : 667, "selected" : false } }, { "data" : { "id" : "666", "source" : "318", "target" : "347", "EdgeBetweenness" : 3692.35897436, "shared_name" : "YEL009C (pd) YCL030C", "shared_interaction" : "pd", "name" : "YEL009C (pd) YCL030C", "interaction" : "pd", "SUID" : 666, "selected" : false } }, { "data" : { "id" : "665", "source" : "318", "target" : "315", "EdgeBetweenness" : 496.0, "shared_name" : "YEL009C (pd) YBR248C", "shared_interaction" : "pd", "name" : "YEL009C (pd) YBR248C", "interaction" : "pd", "SUID" : 665, "selected" : false } }, { "data" : { "id" : "664", "source" : "318", "target" : "314", "EdgeBetweenness" : 1902.08974359, "shared_name" : "YEL009C (pd) YOL058W", "shared_interaction" : "pd", "name" : "YEL009C (pd) YOL058W", "interaction" : "pd", "SUID" : 664, "selected" : false } }, { "data" : { "id" : "663", "source" : "318", "target" : "313", "EdgeBetweenness" : 496.0, "shared_name" : "YEL009C (pd) YMR300C", "shared_interaction" : "pd", "name" : "YEL009C (pd) YMR300C", "interaction" : "pd", "SUID" : 663, "selected" : false } }, { "data" : { "id" : "662", "source" : "314", "target" : "207", "EdgeBetweenness" : 1797.88974359, "shared_name" : "YOL058W (pp) YNL189W", "shared_interaction" : "pp", "name" : "YOL058W (pp) YNL189W", "interaction" : "pp", "SUID" : 662, "selected" : false } }, { "data" : { "id" : "661", "source" : "312", "target" : "311", "EdgeBetweenness" : 496.0, "shared_name" : "YMR138W (pp) YHR141C", "shared_interaction" : "pp", "name" : "YMR138W (pp) YHR141C", "interaction" : "pp", "SUID" : 661, "selected" : false } }, { "data" : { "id" : "660", "source" : "312", "target" : "310", "EdgeBetweenness" : 496.0, "shared_name" : "YMR138W (pp) YLR109W", "shared_interaction" : "pp", "name" : "YMR138W (pp) YLR109W", "interaction" : "pp", "SUID" : 660, "selected" : false } }, { "data" : { "id" : "659", "source" : "309", "target" : "308", "EdgeBetweenness" : 496.0, "shared_name" : "YCL032W (pp) YDR032C", "shared_interaction" : "pp", "name" : "YCL032W (pp) YDR032C", "interaction" : "pp", "SUID" : 659, "selected" : false } }, { "data" : { "id" : "658", "source" : "309", "target" : "307", "EdgeBetweenness" : 2430.0, "shared_name" : "YCL032W (pp) YLR362W", "shared_interaction" : "pp", "name" : "YCL032W (pp) YLR362W", "interaction" : "pp", "SUID" : 658, "selected" : false } }, { "data" : { "id" : "657", "source" : "309", "target" : "306", "EdgeBetweenness" : 10.0, "shared_name" : "YCL032W (pp) YDR103W", "shared_interaction" : "pp", "name" : "YCL032W (pp) YDR103W", "interaction" : "pp", "SUID" : 657, "selected" : false } }, { "data" : { "id" : "656", "source" : "307", "target" : "98", "EdgeBetweenness" : 496.0, "shared_name" : "YLR362W (pp) YER124C", "shared_interaction" : "pp", "name" : "YLR362W (pp) YER124C", "interaction" : "pp", "SUID" : 656, "selected" : false } }, { "data" : { "id" : "655", "source" : "307", "target" : "320", "EdgeBetweenness" : 665.0, "shared_name" : "YLR362W (pp) YMR186W", "shared_interaction" : "pp", "name" : "YLR362W (pp) YMR186W", "interaction" : "pp", "SUID" : 655, "selected" : false } }, { "data" : { "id" : "654", "source" : "307", "target" : "125", "EdgeBetweenness" : 8670.28291708, "shared_name" : "YLR362W (pp) YPL240C", "shared_interaction" : "pp", "name" : "YLR362W (pp) YPL240C", "interaction" : "pp", "SUID" : 654, "selected" : false } }, { "data" : { "id" : "653", "source" : "306", "target" : "307", "EdgeBetweenness" : 486.0, "shared_name" : "YDR103W (pp) YLR362W", "shared_interaction" : "pp", "name" : "YDR103W (pp) YLR362W", "interaction" : "pp", "SUID" : 653, "selected" : false } }, { "data" : { "id" : "652", "source" : "305", "target" : "139", "EdgeBetweenness" : 496.0, "shared_name" : "YJR060W (pd) YPR167C", "shared_interaction" : "pd", "name" : "YJR060W (pd) YPR167C", "interaction" : "pd", "SUID" : 652, "selected" : false } }, { "data" : { "id" : "651", "source" : "304", "target" : "303", "EdgeBetweenness" : 136.64242424, "shared_name" : "YBR019C (pd) YOL051W", "shared_interaction" : "pd", "name" : "YBR019C (pd) YOL051W", "interaction" : "pd", "SUID" : 651, "selected" : false } }, { "data" : { "id" : "650", "source" : "304", "target" : "302", "EdgeBetweenness" : 583.07575758, "shared_name" : "YBR019C (pd) YGL035C", "shared_interaction" : "pd", "name" : "YBR019C (pd) YGL035C", "interaction" : "pd", "SUID" : 650, "selected" : false } }, { "data" : { "id" : "649", "source" : "303", "target" : "301", "EdgeBetweenness" : 138.04242424, "shared_name" : "YOL051W (pd) YBR020W", "shared_interaction" : "pd", "name" : "YOL051W (pd) YBR020W", "interaction" : "pd", "SUID" : 649, "selected" : false } }, { "data" : { "id" : "648", "source" : "303", "target" : "300", "EdgeBetweenness" : 5.0, "shared_name" : "YOL051W (pd) YLR081W", "shared_interaction" : "pd", "name" : "YOL051W (pd) YLR081W", "interaction" : "pd", "SUID" : 648, "selected" : false } }, { "data" : { "id" : "647", "source" : "303", "target" : "299", "EdgeBetweenness" : 222.64848485, "shared_name" : "YOL051W (pp) YPL248C", "shared_interaction" : "pp", "name" : "YOL051W (pp) YPL248C", "interaction" : "pp", "SUID" : 647, "selected" : false } }, { "data" : { "id" : "646", "source" : "303", "target" : "298", "EdgeBetweenness" : 5.0, "shared_name" : "YOL051W (pd) YBR018C", "shared_interaction" : "pd", "name" : "YOL051W (pd) YBR018C", "interaction" : "pd", "SUID" : 646, "selected" : false } }, { "data" : { "id" : "645", "source" : "302", "target" : "350", "EdgeBetweenness" : 15561.19504385, "shared_name" : "YGL035C (pd) YLR044C", "shared_interaction" : "pd", "name" : "YGL035C (pd) YLR044C", "interaction" : "pd", "SUID" : 645, "selected" : false } }, { "data" : { "id" : "644", "source" : "302", "target" : "237", "EdgeBetweenness" : 1488.73498168, "shared_name" : "YGL035C (pd) YLR377C", "shared_interaction" : "pd", "name" : "YGL035C (pd) YLR377C", "interaction" : "pd", "SUID" : 644, "selected" : false } }, { "data" : { "id" : "643", "source" : "302", "target" : "175", "EdgeBetweenness" : 1336.3974359, "shared_name" : "YGL035C (pd) YIL162W", "shared_interaction" : "pd", "name" : "YGL035C (pd) YIL162W", "interaction" : "pd", "SUID" : 643, "selected" : false } }, { "data" : { "id" : "642", "source" : "301", "target" : "302", "EdgeBetweenness" : 713.65151515, "shared_name" : "YBR020W (pd) YGL035C", "shared_interaction" : "pd", "name" : "YBR020W (pd) YGL035C", "interaction" : "pd", "SUID" : 642, "selected" : false } }, { "data" : { "id" : "641", "source" : "299", "target" : "304", "EdgeBetweenness" : 40.23333333, "shared_name" : "YPL248C (pd) YBR019C", "shared_interaction" : "pd", "name" : "YPL248C (pd) YBR019C", "interaction" : "pd", "SUID" : 641, "selected" : false } }, { "data" : { "id" : "640", "source" : "299", "target" : "221", "EdgeBetweenness" : 985.21212121, "shared_name" : "YPL248C (pd) ?", "shared_interaction" : "pd", "name" : "YPL248C (pd) ?", "interaction" : "pd", "SUID" : 640, "selected" : false } }, { "data" : { "id" : "639", "source" : "299", "target" : "279", "EdgeBetweenness" : 1779.33333333, "shared_name" : "YPL248C (pd) YJR048W", "shared_interaction" : "pd", "name" : "YPL248C (pd) YJR048W", "interaction" : "pd", "SUID" : 639, "selected" : false } }, { "data" : { "id" : "638", "source" : "299", "target" : "302", "EdgeBetweenness" : 2953.35151515, "shared_name" : "YPL248C (pd) YGL035C", "shared_interaction" : "pd", "name" : "YPL248C (pd) YGL035C", "interaction" : "pd", "SUID" : 638, "selected" : false } }, { "data" : { "id" : "637", "source" : "299", "target" : "165", "EdgeBetweenness" : 236.24848485, "shared_name" : "YPL248C (pd) YML051W", "shared_interaction" : "pd", "name" : "YPL248C (pd) YML051W", "interaction" : "pd", "SUID" : 637, "selected" : false } }, { "data" : { "id" : "636", "source" : "299", "target" : "165", "EdgeBetweenness" : 236.24848485, "shared_name" : "YPL248C (pp) YML051W", "shared_interaction" : "pp", "name" : "YPL248C (pp) YML051W", "interaction" : "pp", "SUID" : 636, "selected" : false } }, { "data" : { "id" : "635", "source" : "299", "target" : "301", "EdgeBetweenness" : 38.23333333, "shared_name" : "YPL248C (pd) YBR020W", "shared_interaction" : "pd", "name" : "YPL248C (pd) YBR020W", "interaction" : "pd", "SUID" : 635, "selected" : false } }, { "data" : { "id" : "634", "source" : "299", "target" : "300", "EdgeBetweenness" : 491.0, "shared_name" : "YPL248C (pd) YLR081W", "shared_interaction" : "pd", "name" : "YPL248C (pd) YLR081W", "interaction" : "pd", "SUID" : 634, "selected" : false } }, { "data" : { "id" : "633", "source" : "299", "target" : "298", "EdgeBetweenness" : 491.0, "shared_name" : "YPL248C (pd) YBR018C", "shared_interaction" : "pd", "name" : "YPL248C (pd) YBR018C", "interaction" : "pd", "SUID" : 633, "selected" : false } }, { "data" : { "id" : "632", "source" : "297", "target" : "296", "EdgeBetweenness" : 5834.22017982, "shared_name" : "YIR009W (pp) YKR099W", "shared_interaction" : "pp", "name" : "YIR009W (pp) YKR099W", "interaction" : "pp", "SUID" : 632, "selected" : false } }, { "data" : { "id" : "631", "source" : "297", "target" : "295", "EdgeBetweenness" : 1476.0, "shared_name" : "YIR009W (pp) YIL143C", "shared_interaction" : "pp", "name" : "YIR009W (pp) YIL143C", "interaction" : "pp", "SUID" : 631, "selected" : false } }, { "data" : { "id" : "630", "source" : "297", "target" : "294", "EdgeBetweenness" : 4563.54618715, "shared_name" : "YIR009W (pp) YDR184C", "shared_interaction" : "pp", "name" : "YIR009W (pp) YDR184C", "interaction" : "pp", "SUID" : 630, "selected" : false } }, { "data" : { "id" : "629", "source" : "297", "target" : "293", "EdgeBetweenness" : 2992.12454212, "shared_name" : "YIR009W (pp) YNL091W", "shared_interaction" : "pp", "name" : "YIR009W (pp) YNL091W", "interaction" : "pp", "SUID" : 629, "selected" : false } }, { "data" : { "id" : "628", "source" : "295", "target" : "275", "EdgeBetweenness" : 988.0, "shared_name" : "YIL143C (pp) YDR311W", "shared_interaction" : "pp", "name" : "YIL143C (pp) YDR311W", "interaction" : "pp", "SUID" : 628, "selected" : false } }, { "data" : { "id" : "627", "source" : "294", "target" : "203", "EdgeBetweenness" : 4543.54618715, "shared_name" : "YDR184C (pp) YLR319C", "shared_interaction" : "pp", "name" : "YDR184C (pp) YLR319C", "interaction" : "pp", "SUID" : 627, "selected" : false } }, { "data" : { "id" : "626", "source" : "293", "target" : "89", "EdgeBetweenness" : 496.0, "shared_name" : "YNL091W (pp) YNL164C", "shared_interaction" : "pp", "name" : "YNL091W (pp) YNL164C", "interaction" : "pp", "SUID" : 626, "selected" : false } }, { "data" : { "id" : "625", "source" : "292", "target" : "291", "EdgeBetweenness" : 988.0, "shared_name" : "YNL236W (pp) YKL012W", "shared_interaction" : "pp", "name" : "YNL236W (pp) YKL012W", "interaction" : "pp", "SUID" : 625, "selected" : false } }, { "data" : { "id" : "624", "source" : "291", "target" : "228", "EdgeBetweenness" : 2440.0, "shared_name" : "YKL012W (pp) YKL074C", "shared_interaction" : "pp", "name" : "YKL012W (pp) YKL074C", "interaction" : "pp", "SUID" : 624, "selected" : false } }, { "data" : { "id" : "623", "source" : "290", "target" : "289", "EdgeBetweenness" : 249.0, "shared_name" : "YML032C (pp) YNL312W", "shared_interaction" : "pp", "name" : "YML032C (pp) YNL312W", "interaction" : "pp", "SUID" : 623, "selected" : false } }, { "data" : { "id" : "622", "source" : "289", "target" : "205", "EdgeBetweenness" : 739.0, "shared_name" : "YNL312W (pd) YPL111W", "shared_interaction" : "pd", "name" : "YNL312W (pd) YPL111W", "interaction" : "pd", "SUID" : 622, "selected" : false } }, { "data" : { "id" : "621", "source" : "288", "target" : "291", "EdgeBetweenness" : 988.0, "shared_name" : "YLR116W (pp) YKL012W", "shared_interaction" : "pp", "name" : "YLR116W (pp) YKL012W", "interaction" : "pp", "SUID" : 621, "selected" : false } }, { "data" : { "id" : "620", "source" : "286", "target" : "285", "EdgeBetweenness" : 496.0, "shared_name" : "YDR309C (pp) YLR229C", "shared_interaction" : "pp", "name" : "YDR309C (pp) YLR229C", "interaction" : "pp", "SUID" : 620, "selected" : false } }, { "data" : { "id" : "619", "source" : "285", "target" : "262", "EdgeBetweenness" : 988.0, "shared_name" : "YLR229C (pp) YJL157C", "shared_interaction" : "pp", "name" : "YLR229C (pp) YJL157C", "interaction" : "pp", "SUID" : 619, "selected" : false } }, { "data" : { "id" : "618", "source" : "284", "target" : "287", "EdgeBetweenness" : 988.0, "shared_name" : "YGR058W (pp) YOR264W", "shared_interaction" : "pp", "name" : "YGR058W (pp) YOR264W", "interaction" : "pp", "SUID" : 618, "selected" : false } }, { "data" : { "id" : "617", "source" : "283", "target" : "282", "EdgeBetweenness" : 4.0, "shared_name" : "YJR109C (pp) YOR303W", "shared_interaction" : "pp", "name" : "YJR109C (pp) YOR303W", "interaction" : "pp", "SUID" : 617, "selected" : false } }, { "data" : { "id" : "616", "source" : "281", "target" : "280", "EdgeBetweenness" : 988.0, "shared_name" : "YLR256W (pd) YML054C", "shared_interaction" : "pd", "name" : "YLR256W (pd) YML054C", "interaction" : "pd", "SUID" : 616, "selected" : false } }, { "data" : { "id" : "615", "source" : "281", "target" : "279", "EdgeBetweenness" : 2440.0, "shared_name" : "YLR256W (pd) YJR048W", "shared_interaction" : "pd", "name" : "YLR256W (pd) YJR048W", "interaction" : "pd", "SUID" : 615, "selected" : false } }, { "data" : { "id" : "614", "source" : "281", "target" : "278", "EdgeBetweenness" : 496.0, "shared_name" : "YLR256W (pd) YEL039C", "shared_interaction" : "pd", "name" : "YLR256W (pd) YEL039C", "interaction" : "pd", "SUID" : 614, "selected" : false } }, { "data" : { "id" : "613", "source" : "277", "target" : "279", "EdgeBetweenness" : 44.56666667, "shared_name" : "YGL237C (pd) YJR048W", "shared_interaction" : "pd", "name" : "YGL237C (pd) YJR048W", "interaction" : "pd", "SUID" : 613, "selected" : false } }, { "data" : { "id" : "612", "source" : "276", "target" : "279", "EdgeBetweenness" : 44.56666667, "shared_name" : "YBL021C (pd) YJR048W", "shared_interaction" : "pd", "name" : "YBL021C (pd) YJR048W", "interaction" : "pd", "SUID" : 612, "selected" : false } }, { "data" : { "id" : "611", "source" : "275", "target" : "274", "EdgeBetweenness" : 496.0, "shared_name" : "YDR311W (pp) YKL028W", "shared_interaction" : "pp", "name" : "YDR311W (pp) YKL028W", "interaction" : "pp", "SUID" : 611, "selected" : false } }, { "data" : { "id" : "610", "source" : "273", "target" : "272", "EdgeBetweenness" : 739.0, "shared_name" : "YPL149W (pp) YHR171W", "shared_interaction" : "pp", "name" : "YPL149W (pp) YHR171W", "interaction" : "pp", "SUID" : 610, "selected" : false } }, { "data" : { "id" : "609", "source" : "273", "target" : "271", "EdgeBetweenness" : 249.0, "shared_name" : "YPL149W (pp) YBR217W", "shared_interaction" : "pp", "name" : "YPL149W (pp) YBR217W", "interaction" : "pp", "SUID" : 609, "selected" : false } }, { "data" : { "id" : "608", "source" : "272", "target" : "334", "EdgeBetweenness" : 1960.0, "shared_name" : "YHR171W (pp) YDR412W", "shared_interaction" : "pp", "name" : "YHR171W (pp) YDR412W", "interaction" : "pp", "SUID" : 608, "selected" : false } }, { "data" : { "id" : "607", "source" : "272", "target" : "260", "EdgeBetweenness" : 739.0, "shared_name" : "YHR171W (pp) YNR007C", "shared_interaction" : "pp", "name" : "YHR171W (pp) YNR007C", "interaction" : "pp", "SUID" : 607, "selected" : false } }, { "data" : { "id" : "606", "source" : "271", "target" : "260", "EdgeBetweenness" : 249.0, "shared_name" : "YBR217W (pp) YNR007C", "shared_interaction" : "pp", "name" : "YBR217W (pp) YNR007C", "interaction" : "pp", "SUID" : 606, "selected" : false } }, { "data" : { "id" : "605", "source" : "270", "target" : "277", "EdgeBetweenness" : 451.43333333, "shared_name" : "YKL109W (pp) YGL237C", "shared_interaction" : "pp", "name" : "YKL109W (pp) YGL237C", "interaction" : "pp", "SUID" : 605, "selected" : false } }, { "data" : { "id" : "604", "source" : "270", "target" : "276", "EdgeBetweenness" : 451.43333333, "shared_name" : "YKL109W (pp) YBL021C", "shared_interaction" : "pp", "name" : "YKL109W (pp) YBL021C", "interaction" : "pp", "SUID" : 604, "selected" : false } }, { "data" : { "id" : "603", "source" : "270", "target" : "279", "EdgeBetweenness" : 1185.8, "shared_name" : "YKL109W (pd) YJR048W", "shared_interaction" : "pd", "name" : "YKL109W (pd) YJR048W", "interaction" : "pd", "SUID" : 603, "selected" : false } }, { "data" : { "id" : "602", "source" : "270", "target" : "302", "EdgeBetweenness" : 2540.66666667, "shared_name" : "YKL109W (pd) YGL035C", "shared_interaction" : "pd", "name" : "YKL109W (pd) YGL035C", "interaction" : "pd", "SUID" : 602, "selected" : false } }, { "data" : { "id" : "601", "source" : "269", "target" : "268", "EdgeBetweenness" : 487.0, "shared_name" : "YMR043W (pd) YIL015W", "shared_interaction" : "pd", "name" : "YMR043W (pd) YIL015W", "interaction" : "pd", "SUID" : 601, "selected" : false } }, { "data" : { "id" : "600", "source" : "269", "target" : "267", "EdgeBetweenness" : 988.0, "shared_name" : "YMR043W (pd) YJL159W", "shared_interaction" : "pd", "name" : "YMR043W (pd) YJL159W", "interaction" : "pd", "SUID" : 600, "selected" : false } }, { "data" : { "id" : "599", "source" : "269", "target" : "266", "EdgeBetweenness" : 3136.17527473, "shared_name" : "YMR043W (pd) YKR097W", "shared_interaction" : "pd", "name" : "YMR043W (pd) YKR097W", "interaction" : "pd", "SUID" : 599, "selected" : false } }, { "data" : { "id" : "598", "source" : "269", "target" : "265", "EdgeBetweenness" : 4058.08455433, "shared_name" : "YMR043W (pd) YGR108W", "shared_interaction" : "pd", "name" : "YMR043W (pd) YGR108W", "interaction" : "pd", "SUID" : 598, "selected" : false } }, { "data" : { "id" : "597", "source" : "269", "target" : "264", "EdgeBetweenness" : 484.33333333, "shared_name" : "YMR043W (pd) YDR461W", "shared_interaction" : "pd", "name" : "YMR043W (pd) YDR461W", "interaction" : "pd", "SUID" : 597, "selected" : false } }, { "data" : { "id" : "596", "source" : "269", "target" : "263", "EdgeBetweenness" : 484.33333333, "shared_name" : "YMR043W (pd) YNL145W", "shared_interaction" : "pd", "name" : "YMR043W (pd) YNL145W", "interaction" : "pd", "SUID" : 596, "selected" : false } }, { "data" : { "id" : "595", "source" : "269", "target" : "262", "EdgeBetweenness" : 9243.86127206, "shared_name" : "YMR043W (pd) YJL157C", "shared_interaction" : "pd", "name" : "YMR043W (pd) YJL157C", "interaction" : "pd", "SUID" : 595, "selected" : false } }, { "data" : { "id" : "594", "source" : "269", "target" : "261", "EdgeBetweenness" : 484.33333333, "shared_name" : "YMR043W (pd) YFL026W", "shared_interaction" : "pd", "name" : "YMR043W (pd) YFL026W", "interaction" : "pd", "SUID" : 594, "selected" : false } }, { "data" : { "id" : "593", "source" : "265", "target" : "141", "EdgeBetweenness" : 3656.08455433, "shared_name" : "YGR108W (pp) YBR135W", "shared_interaction" : "pp", "name" : "YGR108W (pp) YBR135W", "interaction" : "pp", "SUID" : 593, "selected" : false } }, { "data" : { "id" : "592", "source" : "263", "target" : "368", "EdgeBetweenness" : 9.83333333, "shared_name" : "YNL145W (pd) YCL067C", "shared_interaction" : "pd", "name" : "YNL145W (pd) YCL067C", "interaction" : "pd", "SUID" : 592, "selected" : false } }, { "data" : { "id" : "591", "source" : "263", "target" : "112", "EdgeBetweenness" : 4.83333333, "shared_name" : "YNL145W (pd) YHR084W", "shared_interaction" : "pd", "name" : "YNL145W (pd) YHR084W", "interaction" : "pd", "SUID" : 591, "selected" : false } }, { "data" : { "id" : "590", "source" : "262", "target" : "184", "EdgeBetweenness" : 115.0, "shared_name" : "YJL157C (pp) YAL040C", "shared_interaction" : "pp", "name" : "YJL157C (pp) YAL040C", "interaction" : "pp", "SUID" : 590, "selected" : false } }, { "data" : { "id" : "589", "source" : "262", "target" : "87", "EdgeBetweenness" : 8680.0041292, "shared_name" : "YJL157C (pp) YOR212W", "shared_interaction" : "pp", "name" : "YJL157C (pp) YOR212W", "interaction" : "pp", "SUID" : 589, "selected" : false } }, { "data" : { "id" : "588", "source" : "259", "target" : "258", "EdgeBetweenness" : 496.0, "shared_name" : "YJL203W (pp) YOL136C", "shared_interaction" : "pp", "name" : "YJL203W (pp) YOL136C", "interaction" : "pp", "SUID" : 588, "selected" : false } }, { "data" : { "id" : "587", "source" : "257", "target" : "307", "EdgeBetweenness" : 1026.26739927, "shared_name" : "YLL021W (pp) YLR362W", "shared_interaction" : "pp", "name" : "YLL021W (pp) YLR362W", "interaction" : "pp", "SUID" : 587, "selected" : false } }, { "data" : { "id" : "586", "source" : "255", "target" : "252", "EdgeBetweenness" : 249.0, "shared_name" : "YOL156W (pd) YBL005W", "shared_interaction" : "pd", "name" : "YOL156W (pd) YBL005W", "interaction" : "pd", "SUID" : 586, "selected" : false } }, { "data" : { "id" : "585", "source" : "254", "target" : "253", "EdgeBetweenness" : 496.0, "shared_name" : "YKL101W (pp) YBR160W", "shared_interaction" : "pp", "name" : "YKL101W (pp) YBR160W", "interaction" : "pp", "SUID" : 585, "selected" : false } }, { "data" : { "id" : "584", "source" : "253", "target" : "269", "EdgeBetweenness" : 940.0, "shared_name" : "YBR160W (pd) YMR043W", "shared_interaction" : "pd", "name" : "YBR160W (pd) YMR043W", "interaction" : "pd", "SUID" : 584, "selected" : false } }, { "data" : { "id" : "583", "source" : "253", "target" : "265", "EdgeBetweenness" : 48.0, "shared_name" : "YBR160W (pp) YGR108W", "shared_interaction" : "pp", "name" : "YBR160W (pp) YGR108W", "interaction" : "pp", "SUID" : 583, "selected" : false } }, { "data" : { "id" : "582", "source" : "252", "target" : "256", "EdgeBetweenness" : 249.0, "shared_name" : "YBL005W (pd) YJL219W", "shared_interaction" : "pd", "name" : "YBL005W (pd) YJL219W", "interaction" : "pd", "SUID" : 582, "selected" : false } }, { "data" : { "id" : "581", "source" : "251", "target" : "250", "EdgeBetweenness" : 988.0, "shared_name" : "YDR323C (pp) YOR036W", "shared_interaction" : "pp", "name" : "YDR323C (pp) YOR036W", "interaction" : "pp", "SUID" : 581, "selected" : false } }, { "data" : { "id" : "580", "source" : "250", "target" : "190", "EdgeBetweenness" : 494.0, "shared_name" : "YOR036W (pp) YDR100W", "shared_interaction" : "pp", "name" : "YOR036W (pp) YDR100W", "interaction" : "pp", "SUID" : 580, "selected" : false } }, { "data" : { "id" : "579", "source" : "250", "target" : "191", "EdgeBetweenness" : 494.0, "shared_name" : "YOR036W (pp) YGL161C", "shared_interaction" : "pp", "name" : "YOR036W (pp) YGL161C", "interaction" : "pp", "SUID" : 579, "selected" : false } }, { "data" : { "id" : "578", "source" : "249", "target" : "269", "EdgeBetweenness" : 988.0, "shared_name" : "YGL008C (pd) YMR043W", "shared_interaction" : "pd", "name" : "YGL008C (pd) YMR043W", "interaction" : "pd", "SUID" : 578, "selected" : false } }, { "data" : { "id" : "577", "source" : "248", "target" : "247", "EdgeBetweenness" : 496.0, "shared_name" : "YER040W (pd) YPR035W", "shared_interaction" : "pd", "name" : "YER040W (pd) YPR035W", "interaction" : "pd", "SUID" : 577, "selected" : false } }, { "data" : { "id" : "576", "source" : "248", "target" : "246", "EdgeBetweenness" : 496.0, "shared_name" : "YER040W (pd) YGR019W", "shared_interaction" : "pd", "name" : "YER040W (pd) YGR019W", "interaction" : "pd", "SUID" : 576, "selected" : false } }, { "data" : { "id" : "575", "source" : "245", "target" : "244", "EdgeBetweenness" : 496.0, "shared_name" : "YNL098C (pp) YLR310C", "shared_interaction" : "pp", "name" : "YNL098C (pp) YLR310C", "interaction" : "pp", "SUID" : 575, "selected" : false } }, { "data" : { "id" : "574", "source" : "244", "target" : "152", "EdgeBetweenness" : 988.0, "shared_name" : "YLR310C (pp) YER103W", "shared_interaction" : "pp", "name" : "YLR310C (pp) YER103W", "interaction" : "pp", "SUID" : 574, "selected" : false } }, { "data" : { "id" : "573", "source" : "243", "target" : "242", "EdgeBetweenness" : 4.0, "shared_name" : "YGL115W (pp) YGL208W", "shared_interaction" : "pp", "name" : "YGL115W (pp) YGL208W", "interaction" : "pp", "SUID" : 573, "selected" : false } }, { "data" : { "id" : "572", "source" : "241", "target" : "240", "EdgeBetweenness" : 988.0, "shared_name" : "YPL089C (pp) YHR030C", "shared_interaction" : "pp", "name" : "YPL089C (pp) YHR030C", "interaction" : "pp", "SUID" : 572, "selected" : false } }, { "data" : { "id" : "571", "source" : "240", "target" : "257", "EdgeBetweenness" : 1104.11355311, "shared_name" : "YHR030C (pp) YLL021W", "shared_interaction" : "pp", "name" : "YHR030C (pp) YLL021W", "interaction" : "pp", "SUID" : 571, "selected" : false } }, { "data" : { "id" : "570", "source" : "240", "target" : "159", "EdgeBetweenness" : 2101.73260073, "shared_name" : "YHR030C (pp) YER111C", "shared_interaction" : "pp", "name" : "YHR030C (pp) YER111C", "interaction" : "pp", "SUID" : 570, "selected" : false } }, { "data" : { "id" : "569", "source" : "239", "target" : "238", "EdgeBetweenness" : 2882.71025641, "shared_name" : "YJL089W (pd) YER065C", "shared_interaction" : "pd", "name" : "YJL089W (pd) YER065C", "interaction" : "pd", "SUID" : 569, "selected" : false } }, { "data" : { "id" : "568", "source" : "239", "target" : "266", "EdgeBetweenness" : 2924.57527473, "shared_name" : "YJL089W (pd) YKR097W", "shared_interaction" : "pd", "name" : "YJL089W (pd) YKR097W", "interaction" : "pd", "SUID" : 568, "selected" : false } }, { "data" : { "id" : "567", "source" : "239", "target" : "237", "EdgeBetweenness" : 1271.90164835, "shared_name" : "YJL089W (pd) YLR377C", "shared_interaction" : "pd", "name" : "YJL089W (pd) YLR377C", "interaction" : "pd", "SUID" : 567, "selected" : false } }, { "data" : { "id" : "566", "source" : "236", "target" : "235", "EdgeBetweenness" : 4.0, "shared_name" : "YMR021C (pd) YLR214W", "shared_interaction" : "pd", "name" : "YMR021C (pd) YLR214W", "interaction" : "pd", "SUID" : 566, "selected" : false } }, { "data" : { "id" : "565", "source" : "234", "target" : "233", "EdgeBetweenness" : 3733.28291708, "shared_name" : "YDR335W (pp) YDR174W", "shared_interaction" : "pp", "name" : "YDR335W (pp) YDR174W", "interaction" : "pp", "SUID" : 565, "selected" : false } }, { "data" : { "id" : "564", "source" : "232", "target" : "231", "EdgeBetweenness" : 496.0, "shared_name" : "YLL028W (pp) YGL166W", "shared_interaction" : "pp", "name" : "YLL028W (pp) YGL166W", "interaction" : "pp", "SUID" : 564, "selected" : false } }, { "data" : { "id" : "563", "source" : "231", "target" : "119", "EdgeBetweenness" : 495.0, "shared_name" : "YGL166W (pd) YHR053C", "shared_interaction" : "pd", "name" : "YGL166W (pd) YHR053C", "interaction" : "pd", "SUID" : 563, "selected" : false } }, { "data" : { "id" : "562", "source" : "231", "target" : "118", "EdgeBetweenness" : 495.0, "shared_name" : "YGL166W (pd) YHR055C", "shared_interaction" : "pd", "name" : "YGL166W (pd) YHR055C", "interaction" : "pd", "SUID" : 562, "selected" : false } }, { "data" : { "id" : "561", "source" : "230", "target" : "229", "EdgeBetweenness" : 2.0, "shared_name" : "YDL081C (pp) YLR340W", "shared_interaction" : "pp", "name" : "YDL081C (pp) YLR340W", "interaction" : "pp", "SUID" : 561, "selected" : false } }, { "data" : { "id" : "560", "source" : "228", "target" : "302", "EdgeBetweenness" : 2916.0, "shared_name" : "YKL074C (pp) YGL035C", "shared_interaction" : "pp", "name" : "YKL074C (pp) YGL035C", "interaction" : "pp", "SUID" : 560, "selected" : false } }, { "data" : { "id" : "559", "source" : "227", "target" : "124", "EdgeBetweenness" : 496.0, "shared_name" : "YML064C (pp) YHR198C", "shared_interaction" : "pp", "name" : "YML064C (pp) YHR198C", "interaction" : "pp", "SUID" : 559, "selected" : false } }, { "data" : { "id" : "558", "source" : "227", "target" : "123", "EdgeBetweenness" : 496.0, "shared_name" : "YML064C (pp) YLR284C", "shared_interaction" : "pp", "name" : "YML064C (pp) YLR284C", "interaction" : "pp", "SUID" : 558, "selected" : false } }, { "data" : { "id" : "557", "source" : "227", "target" : "233", "EdgeBetweenness" : 3145.71148851, "shared_name" : "YML064C (pp) YDR174W", "shared_interaction" : "pp", "name" : "YML064C (pp) YDR174W", "interaction" : "pp", "SUID" : 557, "selected" : false } }, { "data" : { "id" : "556", "source" : "226", "target" : "225", "EdgeBetweenness" : 8.0, "shared_name" : "YHR135C (pp) YNL116W", "shared_interaction" : "pp", "name" : "YHR135C (pp) YNL116W", "interaction" : "pp", "SUID" : 556, "selected" : false } }, { "data" : { "id" : "555", "source" : "224", "target" : "325", "EdgeBetweenness" : 2031.91544567, "shared_name" : "YNL047C (pp) YIL105C", "shared_interaction" : "pp", "name" : "YNL047C (pp) YIL105C", "interaction" : "pp", "SUID" : 555, "selected" : false } }, { "data" : { "id" : "554", "source" : "223", "target" : "222", "EdgeBetweenness" : 8.0, "shared_name" : "YNL154C (pp) YKL204W", "shared_interaction" : "pp", "name" : "YNL154C (pp) YKL204W", "interaction" : "pp", "SUID" : 554, "selected" : false } }, { "data" : { "id" : "553", "source" : "221", "target" : "296", "EdgeBetweenness" : 3465.75265845, "shared_name" : "? (pd) YKR099W", "shared_interaction" : "pd", "name" : "? (pd) YKR099W", "interaction" : "pd", "SUID" : 553, "selected" : false } }, { "data" : { "id" : "552", "source" : "221", "target" : "302", "EdgeBetweenness" : 2608.54053724, "shared_name" : "? (pd) YGL035C", "shared_interaction" : "pd", "name" : "? (pd) YGL035C", "interaction" : "pd", "SUID" : 552, "selected" : false } }, { "data" : { "id" : "551", "source" : "220", "target" : "288", "EdgeBetweenness" : 496.0, "shared_name" : "YJR066W (pp) YLR116W", "shared_interaction" : "pp", "name" : "YJR066W (pp) YLR116W", "interaction" : "pp", "SUID" : 551, "selected" : false } }, { "data" : { "id" : "550", "source" : "219", "target" : "218", "EdgeBetweenness" : 8.0, "shared_name" : "YDR382W (pp) YDL130W", "shared_interaction" : "pp", "name" : "YDR382W (pp) YDL130W", "interaction" : "pp", "SUID" : 550, "selected" : false } }, { "data" : { "id" : "549", "source" : "219", "target" : "217", "EdgeBetweenness" : 12.0, "shared_name" : "YDR382W (pp) YFL039C", "shared_interaction" : "pp", "name" : "YDR382W (pp) YFL039C", "interaction" : "pp", "SUID" : 549, "selected" : false } }, { "data" : { "id" : "548", "source" : "217", "target" : "216", "EdgeBetweenness" : 8.0, "shared_name" : "YFL039C (pp) YCL040W", "shared_interaction" : "pp", "name" : "YFL039C (pp) YCL040W", "interaction" : "pp", "SUID" : 548, "selected" : false } }, { "data" : { "id" : "547", "source" : "217", "target" : "215", "EdgeBetweenness" : 8.0, "shared_name" : "YFL039C (pp) YHR179W", "shared_interaction" : "pp", "name" : "YFL039C (pp) YHR179W", "interaction" : "pp", "SUID" : 547, "selected" : false } }, { "data" : { "id" : "546", "source" : "214", "target" : "354", "EdgeBetweenness" : 2034.76542347, "shared_name" : "YPL075W (pd) YCR012W", "shared_interaction" : "pd", "name" : "YPL075W (pd) YCR012W", "interaction" : "pd", "SUID" : 546, "selected" : false } }, { "data" : { "id" : "545", "source" : "214", "target" : "353", "EdgeBetweenness" : 1846.76542347, "shared_name" : "YPL075W (pd) YGR254W", "shared_interaction" : "pd", "name" : "YPL075W (pd) YGR254W", "interaction" : "pd", "SUID" : 545, "selected" : false } }, { "data" : { "id" : "544", "source" : "214", "target" : "352", "EdgeBetweenness" : 1846.76542347, "shared_name" : "YPL075W (pd) YHR174W", "shared_interaction" : "pd", "name" : "YPL075W (pd) YHR174W", "interaction" : "pd", "SUID" : 544, "selected" : false } }, { "data" : { "id" : "543", "source" : "214", "target" : "213", "EdgeBetweenness" : 11094.32880453, "shared_name" : "YPL075W (pp) YNL199C", "shared_interaction" : "pp", "name" : "YPL075W (pp) YNL199C", "interaction" : "pp", "SUID" : 543, "selected" : false } }, { "data" : { "id" : "542", "source" : "214", "target" : "341", "EdgeBetweenness" : 1846.76542347, "shared_name" : "YPL075W (pd) YDR050C", "shared_interaction" : "pd", "name" : "YPL075W (pd) YDR050C", "interaction" : "pd", "SUID" : 542, "selected" : false } }, { "data" : { "id" : "541", "source" : "214", "target" : "340", "EdgeBetweenness" : 1846.76542347, "shared_name" : "YPL075W (pd) YOL086C", "shared_interaction" : "pd", "name" : "YPL075W (pd) YOL086C", "interaction" : "pd", "SUID" : 541, "selected" : false } }, { "data" : { "id" : "540", "source" : "213", "target" : "212", "EdgeBetweenness" : 3624.18315018, "shared_name" : "YNL199C (pp) YPR048W", "shared_interaction" : "pp", "name" : "YNL199C (pp) YPR048W", "interaction" : "pp", "SUID" : 540, "selected" : false } }, { "data" : { "id" : "539", "source" : "212", "target" : "173", "EdgeBetweenness" : 2162.02930403, "shared_name" : "YPR048W (pp) YOR355W", "shared_interaction" : "pp", "name" : "YPR048W (pp) YOR355W", "interaction" : "pp", "SUID" : 539, "selected" : false } }, { "data" : { "id" : "538", "source" : "212", "target" : "102", "EdgeBetweenness" : 3388.0, "shared_name" : "YPR048W (pp) YDL215C", "shared_interaction" : "pp", "name" : "YPR048W (pp) YDL215C", "interaction" : "pp", "SUID" : 538, "selected" : false } }, { "data" : { "id" : "537", "source" : "211", "target" : "334", "EdgeBetweenness" : 988.0, "shared_name" : "YLR321C (pp) YDR412W", "shared_interaction" : "pp", "name" : "YLR321C (pp) YDR412W", "interaction" : "pp", "SUID" : 537, "selected" : false } }, { "data" : { "id" : "536", "source" : "210", "target" : "209", "EdgeBetweenness" : 496.0, "shared_name" : "YBR072W (pd) YGL073W", "shared_interaction" : "pd", "name" : "YBR072W (pd) YGL073W", "interaction" : "pd", "SUID" : 536, "selected" : false } }, { "data" : { "id" : "535", "source" : "209", "target" : "179", "EdgeBetweenness" : 4320.0, "shared_name" : "YGL073W (pp) YOR178C", "shared_interaction" : "pp", "name" : "YGL073W (pp) YOR178C", "interaction" : "pp", "SUID" : 535, "selected" : false } }, { "data" : { "id" : "534", "source" : "209", "target" : "119", "EdgeBetweenness" : 981.0, "shared_name" : "YGL073W (pd) YHR053C", "shared_interaction" : "pd", "name" : "YGL073W (pd) YHR053C", "interaction" : "pd", "SUID" : 534, "selected" : false } }, { "data" : { "id" : "533", "source" : "209", "target" : "118", "EdgeBetweenness" : 981.0, "shared_name" : "YGL073W (pd) YHR055C", "shared_interaction" : "pd", "name" : "YGL073W (pd) YHR055C", "interaction" : "pd", "SUID" : 533, "selected" : false } }, { "data" : { "id" : "532", "source" : "209", "target" : "152", "EdgeBetweenness" : 1476.0, "shared_name" : "YGL073W (pd) YER103W", "shared_interaction" : "pd", "name" : "YGL073W (pd) YER103W", "interaction" : "pd", "SUID" : 532, "selected" : false } }, { "data" : { "id" : "531", "source" : "208", "target" : "249", "EdgeBetweenness" : 496.0, "shared_name" : "YBL069W (pp) YGL008C", "shared_interaction" : "pp", "name" : "YBL069W (pp) YGL008C", "interaction" : "pp", "SUID" : 531, "selected" : false } }, { "data" : { "id" : "530", "source" : "207", "target" : "206", "EdgeBetweenness" : 496.0, "shared_name" : "YNL189W (pp) YDL236W", "shared_interaction" : "pp", "name" : "YNL189W (pp) YDL236W", "interaction" : "pp", "SUID" : 530, "selected" : false } }, { "data" : { "id" : "529", "source" : "207", "target" : "205", "EdgeBetweenness" : 1960.0, "shared_name" : "YNL189W (pp) YPL111W", "shared_interaction" : "pp", "name" : "YNL189W (pp) YPL111W", "interaction" : "pp", "SUID" : 529, "selected" : false } }, { "data" : { "id" : "528", "source" : "207", "target" : "238", "EdgeBetweenness" : 2598.55641026, "shared_name" : "YNL189W (pp) YER065C", "shared_interaction" : "pp", "name" : "YNL189W (pp) YER065C", "interaction" : "pp", "SUID" : 528, "selected" : false } }, { "data" : { "id" : "527", "source" : "207", "target" : "204", "EdgeBetweenness" : 496.0, "shared_name" : "YNL189W (pp) YPR062W", "shared_interaction" : "pp", "name" : "YNL189W (pp) YPR062W", "interaction" : "pp", "SUID" : 527, "selected" : false } }, { "data" : { "id" : "526", "source" : "203", "target" : "307", "EdgeBetweenness" : 4592.87952048, "shared_name" : "YLR319C (pp) YLR362W", "shared_interaction" : "pp", "name" : "YLR319C (pp) YLR362W", "interaction" : "pp", "SUID" : 526, "selected" : false } }, { "data" : { "id" : "525", "source" : "202", "target" : "201", "EdgeBetweenness" : 6.0, "shared_name" : "YNL311C (pp) YKL001C", "shared_interaction" : "pp", "name" : "YNL311C (pp) YKL001C", "interaction" : "pp", "SUID" : 525, "selected" : false } }, { "data" : { "id" : "524", "source" : "200", "target" : "199", "EdgeBetweenness" : 8.0, "shared_name" : "YOL016C (pp) YBR109C", "shared_interaction" : "pp", "name" : "YOL016C (pp) YBR109C", "interaction" : "pp", "SUID" : 524, "selected" : false } }, { "data" : { "id" : "523", "source" : "199", "target" : "322", "EdgeBetweenness" : 12.0, "shared_name" : "YBR109C (pp) YOR326W", "shared_interaction" : "pp", "name" : "YBR109C (pp) YOR326W", "interaction" : "pp", "SUID" : 523, "selected" : false } }, { "data" : { "id" : "522", "source" : "199", "target" : "74", "EdgeBetweenness" : 8.0, "shared_name" : "YBR109C (pp) YFR014C", "shared_interaction" : "pp", "name" : "YBR109C (pp) YFR014C", "interaction" : "pp", "SUID" : 522, "selected" : false } }, { "data" : { "id" : "521", "source" : "198", "target" : "197", "EdgeBetweenness" : 2.0, "shared_name" : "YJL036W (pp) YDL113C", "shared_interaction" : "pp", "name" : "YJL036W (pp) YDL113C", "interaction" : "pp", "SUID" : 521, "selected" : false } }, { "data" : { "id" : "520", "source" : "196", "target" : "195", "EdgeBetweenness" : 4.0, "shared_name" : "YEL041W (pp) YHR115C", "shared_interaction" : "pp", "name" : "YEL041W (pp) YHR115C", "interaction" : "pp", "SUID" : 520, "selected" : false } }, { "data" : { "id" : "519", "source" : "195", "target" : "82", "EdgeBetweenness" : 4.0, "shared_name" : "YHR115C (pp) YOR215C", "shared_interaction" : "pp", "name" : "YHR115C (pp) YOR215C", "interaction" : "pp", "SUID" : 519, "selected" : false } }, { "data" : { "id" : "518", "source" : "194", "target" : "316", "EdgeBetweenness" : 611.26923077, "shared_name" : "YNL167C (pd) YOR202W", "shared_interaction" : "pd", "name" : "YNL167C (pd) YOR202W", "interaction" : "pd", "SUID" : 518, "selected" : false } }, { "data" : { "id" : "517", "source" : "193", "target" : "192", "EdgeBetweenness" : 2.0, "shared_name" : "YDL063C (pp) YPL131W", "shared_interaction" : "pp", "name" : "YDL063C (pp) YPL131W", "interaction" : "pp", "SUID" : 517, "selected" : false } }, { "data" : { "id" : "516", "source" : "191", "target" : "190", "EdgeBetweenness" : 2.0, "shared_name" : "YGL161C (pp) YDR100W", "shared_interaction" : "pp", "name" : "YGL161C (pp) YDR100W", "interaction" : "pp", "SUID" : 516, "selected" : false } }, { "data" : { "id" : "515", "source" : "189", "target" : "188", "EdgeBetweenness" : 496.0, "shared_name" : "YMR183C (pp) YGR009C", "shared_interaction" : "pp", "name" : "YMR183C (pp) YGR009C", "interaction" : "pp", "SUID" : 515, "selected" : false } }, { "data" : { "id" : "514", "source" : "188", "target" : "339", "EdgeBetweenness" : 739.0, "shared_name" : "YGR009C (pp) YAL030W", "shared_interaction" : "pp", "name" : "YGR009C (pp) YAL030W", "interaction" : "pp", "SUID" : 514, "selected" : false } }, { "data" : { "id" : "513", "source" : "188", "target" : "337", "EdgeBetweenness" : 739.0, "shared_name" : "YGR009C (pp) YOR327C", "shared_interaction" : "pp", "name" : "YGR009C (pp) YOR327C", "interaction" : "pp", "SUID" : 513, "selected" : false } }, { "data" : { "id" : "512", "source" : "188", "target" : "234", "EdgeBetweenness" : 4025.28291708, "shared_name" : "YGR009C (pp) YDR335W", "shared_interaction" : "pp", "name" : "YGR009C (pp) YDR335W", "interaction" : "pp", "SUID" : 512, "selected" : false } }, { "data" : { "id" : "511", "source" : "188", "target" : "113", "EdgeBetweenness" : 5785.28291708, "shared_name" : "YGR009C (pp) YBL050W", "shared_interaction" : "pp", "name" : "YGR009C (pp) YBL050W", "interaction" : "pp", "SUID" : 511, "selected" : false } }, { "data" : { "id" : "510", "source" : "187", "target" : "243", "EdgeBetweenness" : 4.0, "shared_name" : "YMR291W (pp) YGL115W", "shared_interaction" : "pp", "name" : "YMR291W (pp) YGL115W", "interaction" : "pp", "SUID" : 510, "selected" : false } }, { "data" : { "id" : "509", "source" : "186", "target" : "185", "EdgeBetweenness" : 4.0, "shared_name" : "YGR048W (pp) YPL222W", "shared_interaction" : "pp", "name" : "YGR048W (pp) YPL222W", "interaction" : "pp", "SUID" : 509, "selected" : false } }, { "data" : { "id" : "508", "source" : "184", "target" : "269", "EdgeBetweenness" : 381.0, "shared_name" : "YAL040C (pd) YMR043W", "shared_interaction" : "pd", "name" : "YAL040C (pd) YMR043W", "interaction" : "pd", "SUID" : 508, "selected" : false } }, { "data" : { "id" : "507", "source" : "183", "target" : "345", "EdgeBetweenness" : 988.0, "shared_name" : "YFR034C (pd) YBR093C", "shared_interaction" : "pd", "name" : "YFR034C (pd) YBR093C", "interaction" : "pd", "SUID" : 507, "selected" : false } }, { "data" : { "id" : "506", "source" : "182", "target" : "181", "EdgeBetweenness" : 2.0, "shared_name" : "YFR037C (pp) YOR290C", "shared_interaction" : "pp", "name" : "YFR037C (pp) YOR290C", "interaction" : "pp", "SUID" : 506, "selected" : false } }, { "data" : { "id" : "505", "source" : "180", "target" : "334", "EdgeBetweenness" : 11988.0, "shared_name" : "YER133W (pp) YDR412W", "shared_interaction" : "pp", "name" : "YER133W (pp) YDR412W", "interaction" : "pp", "SUID" : 505, "selected" : false } }, { "data" : { "id" : "504", "source" : "180", "target" : "179", "EdgeBetweenness" : 7242.0, "shared_name" : "YER133W (pp) YOR178C", "shared_interaction" : "pp", "name" : "YER133W (pp) YOR178C", "interaction" : "pp", "SUID" : 504, "selected" : false } }, { "data" : { "id" : "503", "source" : "180", "target" : "178", "EdgeBetweenness" : 496.0, "shared_name" : "YER133W (pp) YOR315W", "shared_interaction" : "pp", "name" : "YER133W (pp) YOR315W", "interaction" : "pp", "SUID" : 503, "selected" : false } }, { "data" : { "id" : "502", "source" : "180", "target" : "177", "EdgeBetweenness" : 496.0, "shared_name" : "YER133W (pp) YMR311C", "shared_interaction" : "pp", "name" : "YER133W (pp) YMR311C", "interaction" : "pp", "SUID" : 502, "selected" : false } }, { "data" : { "id" : "501", "source" : "180", "target" : "176", "EdgeBetweenness" : 496.0, "shared_name" : "YER133W (pp) YBR050C", "shared_interaction" : "pp", "name" : "YER133W (pp) YBR050C", "interaction" : "pp", "SUID" : 501, "selected" : false } }, { "data" : { "id" : "500", "source" : "175", "target" : "194", "EdgeBetweenness" : 887.73076923, "shared_name" : "YIL162W (pd) YNL167C", "shared_interaction" : "pd", "name" : "YIL162W (pd) YNL167C", "interaction" : "pd", "SUID" : 500, "selected" : false } }, { "data" : { "id" : "499", "source" : "174", "target" : "250", "EdgeBetweenness" : 496.0, "shared_name" : "YFL038C (pp) YOR036W", "shared_interaction" : "pp", "name" : "YFL038C (pp) YOR036W", "interaction" : "pp", "SUID" : 499, "selected" : false } }, { "data" : { "id" : "498", "source" : "173", "target" : "293", "EdgeBetweenness" : 2356.12454212, "shared_name" : "YOR355W (pp) YNL091W", "shared_interaction" : "pp", "name" : "YOR355W (pp) YNL091W", "interaction" : "pp", "SUID" : 498, "selected" : false } }, { "data" : { "id" : "497", "source" : "172", "target" : "171", "EdgeBetweenness" : 2.0, "shared_name" : "YML074C (pp) YJL190C", "shared_interaction" : "pp", "name" : "YML074C (pp) YJL190C", "interaction" : "pp", "SUID" : 497, "selected" : false } }, { "data" : { "id" : "496", "source" : "170", "target" : "169", "EdgeBetweenness" : 2.0, "shared_name" : "YMR058W (pp) YER145C", "shared_interaction" : "pp", "name" : "YMR058W (pp) YER145C", "interaction" : "pp", "SUID" : 496, "selected" : false } }, { "data" : { "id" : "495", "source" : "168", "target" : "183", "EdgeBetweenness" : 496.0, "shared_name" : "YML123C (pd) YFR034C", "shared_interaction" : "pd", "name" : "YML123C (pd) YFR034C", "interaction" : "pd", "SUID" : 495, "selected" : false } }, { "data" : { "id" : "494", "source" : "167", "target" : "166", "EdgeBetweenness" : 496.0, "shared_name" : "YPL031C (pp) YHR071W", "shared_interaction" : "pp", "name" : "YPL031C (pp) YHR071W", "interaction" : "pp", "SUID" : 494, "selected" : false } }, { "data" : { "id" : "493", "source" : "165", "target" : "301", "EdgeBetweenness" : 135.97575758, "shared_name" : "YML051W (pp) YBR020W", "shared_interaction" : "pp", "name" : "YML051W (pp) YBR020W", "interaction" : "pp", "SUID" : 493, "selected" : false } }, { "data" : { "id" : "492", "source" : "165", "target" : "164", "EdgeBetweenness" : 143.37575758, "shared_name" : "YML051W (pp) YDR009W", "shared_interaction" : "pp", "name" : "YML051W (pp) YDR009W", "interaction" : "pp", "SUID" : 492, "selected" : false } }, { "data" : { "id" : "491", "source" : "164", "target" : "302", "EdgeBetweenness" : 615.77575758, "shared_name" : "YDR009W (pd) YGL035C", "shared_interaction" : "pd", "name" : "YDR009W (pd) YGL035C", "interaction" : "pd", "SUID" : 491, "selected" : false } }, { "data" : { "id" : "490", "source" : "163", "target" : "162", "EdgeBetweenness" : 496.0, "shared_name" : "YLL019C (pp) YIL113W", "shared_interaction" : "pp", "name" : "YLL019C (pp) YIL113W", "interaction" : "pp", "SUID" : 490, "selected" : false } }, { "data" : { "id" : "489", "source" : "162", "target" : "240", "EdgeBetweenness" : 988.0, "shared_name" : "YIL113W (pp) YHR030C", "shared_interaction" : "pp", "name" : "YIL113W (pp) YHR030C", "interaction" : "pp", "SUID" : 489, "selected" : false } }, { "data" : { "id" : "488", "source" : "161", "target" : "355", "EdgeBetweenness" : 496.0, "shared_name" : "YML024W (pd) YNL216W", "shared_interaction" : "pd", "name" : "YML024W (pd) YNL216W", "interaction" : "pd", "SUID" : 488, "selected" : false } }, { "data" : { "id" : "487", "source" : "160", "target" : "282", "EdgeBetweenness" : 4.0, "shared_name" : "YOR039W (pp) YOR303W", "shared_interaction" : "pp", "name" : "YOR039W (pp) YOR303W", "interaction" : "pp", "SUID" : 487, "selected" : false } }, { "data" : { "id" : "486", "source" : "159", "target" : "269", "EdgeBetweenness" : 2361.73260073, "shared_name" : "YER111C (pd) YMR043W", "shared_interaction" : "pd", "name" : "YER111C (pd) YMR043W", "interaction" : "pd", "SUID" : 486, "selected" : false } }, { "data" : { "id" : "485", "source" : "158", "target" : "269", "EdgeBetweenness" : 19179.59362859, "shared_name" : "YDR146C (pd) YMR043W", "shared_interaction" : "pd", "name" : "YDR146C (pd) YMR043W", "interaction" : "pd", "SUID" : 485, "selected" : false } }, { "data" : { "id" : "484", "source" : "158", "target" : "302", "EdgeBetweenness" : 19180.22220002, "shared_name" : "YDR146C (pd) YGL035C", "shared_interaction" : "pd", "name" : "YDR146C (pd) YGL035C", "interaction" : "pd", "SUID" : 484, "selected" : false } }, { "data" : { "id" : "483", "source" : "157", "target" : "156", "EdgeBetweenness" : 2.0, "shared_name" : "YKL211C (pp) YER090W", "shared_interaction" : "pp", "name" : "YKL211C (pp) YER090W", "interaction" : "pp", "SUID" : 483, "selected" : false } }, { "data" : { "id" : "482", "source" : "155", "target" : "318", "EdgeBetweenness" : 496.0, "shared_name" : "YDR354W (pd) YEL009C", "shared_interaction" : "pd", "name" : "YDR354W (pd) YEL009C", "interaction" : "pd", "SUID" : 482, "selected" : false } }, { "data" : { "id" : "481", "source" : "154", "target" : "153", "EdgeBetweenness" : 2.0, "shared_name" : "YNL113W (pp) YPR110C", "shared_interaction" : "pp", "name" : "YNL113W (pp) YPR110C", "interaction" : "pp", "SUID" : 481, "selected" : false } }, { "data" : { "id" : "480", "source" : "147", "target" : "371", "EdgeBetweenness" : 496.0, "shared_name" : "YMR044W (pp) YIL061C", "shared_interaction" : "pp", "name" : "YMR044W (pp) YIL061C", "interaction" : "pp", "SUID" : 480, "selected" : false } }, { "data" : { "id" : "479", "source" : "146", "target" : "366", "EdgeBetweenness" : 248.5, "shared_name" : "YOL149W (pp) YOR167C", "shared_interaction" : "pp", "name" : "YOL149W (pp) YOR167C", "interaction" : "pp", "SUID" : 479, "selected" : false } }, { "data" : { "id" : "478", "source" : "145", "target" : "144", "EdgeBetweenness" : 5.0, "shared_name" : "YLR191W (pp) YGL153W", "shared_interaction" : "pp", "name" : "YLR191W (pp) YGL153W", "interaction" : "pp", "SUID" : 478, "selected" : false } }, { "data" : { "id" : "477", "source" : "143", "target" : "142", "EdgeBetweenness" : 6.0, "shared_name" : "YER110C (pp) YML007W", "shared_interaction" : "pp", "name" : "YER110C (pp) YML007W", "interaction" : "pp", "SUID" : 477, "selected" : false } }, { "data" : { "id" : "476", "source" : "141", "target" : "149", "EdgeBetweenness" : 3206.08455433, "shared_name" : "YBR135W (pp) YER102W", "shared_interaction" : "pp", "name" : "YBR135W (pp) YER102W", "interaction" : "pp", "SUID" : 476, "selected" : false } }, { "data" : { "id" : "475", "source" : "140", "target" : "144", "EdgeBetweenness" : 5.0, "shared_name" : "YNL214W (pp) YGL153W", "shared_interaction" : "pp", "name" : "YNL214W (pp) YGL153W", "interaction" : "pp", "SUID" : 475, "selected" : false } }, { "data" : { "id" : "474", "source" : "138", "target" : "251", "EdgeBetweenness" : 496.0, "shared_name" : "YOR089C (pp) YDR323C", "shared_interaction" : "pp", "name" : "YOR089C (pp) YDR323C", "interaction" : "pp", "SUID" : 474, "selected" : false } }, { "data" : { "id" : "473", "source" : "137", "target" : "239", "EdgeBetweenness" : 496.0, "shared_name" : "YNL117W (pd) YJL089W", "shared_interaction" : "pd", "name" : "YNL117W (pd) YJL089W", "interaction" : "pd", "SUID" : 473, "selected" : false } }, { "data" : { "id" : "472", "source" : "136", "target" : "357", "EdgeBetweenness" : 496.0, "shared_name" : "YLR175W (pp) YNL307C", "shared_interaction" : "pp", "name" : "YLR175W (pp) YNL307C", "interaction" : "pp", "SUID" : 472, "selected" : false } }, { "data" : { "id" : "471", "source" : "135", "target" : "134", "EdgeBetweenness" : 988.0, "shared_name" : "YDR167W (pp) YLR432W", "shared_interaction" : "pp", "name" : "YDR167W (pp) YLR432W", "interaction" : "pp", "SUID" : 471, "selected" : false } }, { "data" : { "id" : "470", "source" : "133", "target" : "145", "EdgeBetweenness" : 7.0, "shared_name" : "YDR244W (pp) YLR191W", "shared_interaction" : "pp", "name" : "YDR244W (pp) YLR191W", "interaction" : "pp", "SUID" : 470, "selected" : false } }, { "data" : { "id" : "469", "source" : "133", "target" : "144", "EdgeBetweenness" : 4.0, "shared_name" : "YDR244W (pp) YGL153W", "shared_interaction" : "pp", "name" : "YDR244W (pp) YGL153W", "interaction" : "pp", "SUID" : 469, "selected" : false } }, { "data" : { "id" : "468", "source" : "133", "target" : "140", "EdgeBetweenness" : 7.0, "shared_name" : "YDR244W (pp) YNL214W", "shared_interaction" : "pp", "name" : "YDR244W (pp) YNL214W", "interaction" : "pp", "SUID" : 468, "selected" : false } }, { "data" : { "id" : "467", "source" : "133", "target" : "132", "EdgeBetweenness" : 12.0, "shared_name" : "YDR244W (pp) YDR142C", "shared_interaction" : "pp", "name" : "YDR244W (pp) YDR142C", "interaction" : "pp", "SUID" : 467, "selected" : false } }, { "data" : { "id" : "466", "source" : "133", "target" : "131", "EdgeBetweenness" : 12.0, "shared_name" : "YDR244W (pp) YDL078C", "shared_interaction" : "pp", "name" : "YDR244W (pp) YDL078C", "interaction" : "pp", "SUID" : 466, "selected" : false } }, { "data" : { "id" : "465", "source" : "132", "target" : "144", "EdgeBetweenness" : 8.0, "shared_name" : "YDR142C (pp) YGL153W", "shared_interaction" : "pp", "name" : "YDR142C (pp) YGL153W", "interaction" : "pp", "SUID" : 465, "selected" : false } }, { "data" : { "id" : "464", "source" : "132", "target" : "130", "EdgeBetweenness" : 12.0, "shared_name" : "YDR142C (pp) YIL160C", "shared_interaction" : "pp", "name" : "YDR142C (pp) YIL160C", "interaction" : "pp", "SUID" : 464, "selected" : false } }, { "data" : { "id" : "463", "source" : "129", "target" : "290", "EdgeBetweenness" : 249.0, "shared_name" : "YAR007C (pp) YML032C", "shared_interaction" : "pp", "name" : "YAR007C (pp) YML032C", "interaction" : "pp", "SUID" : 463, "selected" : false } }, { "data" : { "id" : "462", "source" : "129", "target" : "205", "EdgeBetweenness" : 739.0, "shared_name" : "YAR007C (pd) YPL111W", "shared_interaction" : "pd", "name" : "YAR007C (pd) YPL111W", "interaction" : "pd", "SUID" : 462, "selected" : false } }, { "data" : { "id" : "461", "source" : "128", "target" : "241", "EdgeBetweenness" : 496.0, "shared_name" : "YKL161C (pp) YPL089C", "shared_interaction" : "pp", "name" : "YKL161C (pp) YPL089C", "interaction" : "pp", "SUID" : 461, "selected" : false } }, { "data" : { "id" : "460", "source" : "127", "target" : "126", "EdgeBetweenness" : 249.0, "shared_name" : "YLR075W (pp) YPR102C", "shared_interaction" : "pp", "name" : "YLR075W (pp) YPR102C", "interaction" : "pp", "SUID" : 460, "selected" : false } }, { "data" : { "id" : "459", "source" : "125", "target" : "319", "EdgeBetweenness" : 323.0, "shared_name" : "YPL240C (pp) YBR155W", "shared_interaction" : "pp", "name" : "YPL240C (pp) YBR155W", "interaction" : "pp", "SUID" : 459, "selected" : false } }, { "data" : { "id" : "458", "source" : "125", "target" : "250", "EdgeBetweenness" : 8233.28291708, "shared_name" : "YPL240C (pp) YOR036W", "shared_interaction" : "pp", "name" : "YPL240C (pp) YOR036W", "interaction" : "pp", "SUID" : 458, "selected" : false } }, { "data" : { "id" : "457", "source" : "122", "target" : "121", "EdgeBetweenness" : 496.0, "shared_name" : "YER052C (pp) YNL135C", "shared_interaction" : "pp", "name" : "YER052C (pp) YNL135C", "interaction" : "pp", "SUID" : 457, "selected" : false } }, { "data" : { "id" : "456", "source" : "121", "target" : "233", "EdgeBetweenness" : 988.0, "shared_name" : "YNL135C (pp) YDR174W", "shared_interaction" : "pp", "name" : "YNL135C (pp) YDR174W", "interaction" : "pp", "SUID" : 456, "selected" : false } }, { "data" : { "id" : "455", "source" : "120", "target" : "236", "EdgeBetweenness" : 4.0, "shared_name" : "YPR124W (pd) YMR021C", "shared_interaction" : "pd", "name" : "YPR124W (pd) YMR021C", "interaction" : "pd", "SUID" : 455, "selected" : false } }, { "data" : { "id" : "454", "source" : "117", "target" : "167", "EdgeBetweenness" : 988.0, "shared_name" : "YGL134W (pp) YPL031C", "shared_interaction" : "pp", "name" : "YGL134W (pp) YPL031C", "interaction" : "pp", "SUID" : 454, "selected" : false } }, { "data" : { "id" : "453", "source" : "117", "target" : "116", "EdgeBetweenness" : 1476.0, "shared_name" : "YGL134W (pp) YLR258W", "shared_interaction" : "pp", "name" : "YGL134W (pp) YLR258W", "interaction" : "pp", "SUID" : 453, "selected" : false } }, { "data" : { "id" : "452", "source" : "116", "target" : "103", "EdgeBetweenness" : 4780.0, "shared_name" : "YLR258W (pp) YIL045W", "shared_interaction" : "pp", "name" : "YLR258W (pp) YIL045W", "interaction" : "pp", "SUID" : 452, "selected" : false } }, { "data" : { "id" : "451", "source" : "116", "target" : "111", "EdgeBetweenness" : 2916.0, "shared_name" : "YLR258W (pp) YBR274W", "shared_interaction" : "pp", "name" : "YLR258W (pp) YBR274W", "interaction" : "pp", "SUID" : 451, "selected" : false } }, { "data" : { "id" : "450", "source" : "115", "target" : "269", "EdgeBetweenness" : 988.0, "shared_name" : "YJL194W (pd) YMR043W", "shared_interaction" : "pd", "name" : "YJL194W (pd) YMR043W", "interaction" : "pd", "SUID" : 450, "selected" : false } }, { "data" : { "id" : "449", "source" : "114", "target" : "366", "EdgeBetweenness" : 248.5, "shared_name" : "YBL026W (pp) YOR167C", "shared_interaction" : "pp", "name" : "YBL026W (pp) YOR167C", "interaction" : "pp", "SUID" : 449, "selected" : false } }, { "data" : { "id" : "448", "source" : "113", "target" : "250", "EdgeBetweenness" : 6133.28291708, "shared_name" : "YBL050W (pp) YOR036W", "shared_interaction" : "pp", "name" : "YBL050W (pp) YOR036W", "interaction" : "pp", "SUID" : 448, "selected" : false } }, { "data" : { "id" : "447", "source" : "112", "target" : "269", "EdgeBetweenness" : 485.5, "shared_name" : "YHR084W (pp) YMR043W", "shared_interaction" : "pp", "name" : "YHR084W (pp) YMR043W", "interaction" : "pp", "SUID" : 447, "selected" : false } }, { "data" : { "id" : "446", "source" : "112", "target" : "264", "EdgeBetweenness" : 4.83333333, "shared_name" : "YHR084W (pd) YDR461W", "shared_interaction" : "pd", "name" : "YHR084W (pd) YDR461W", "interaction" : "pd", "SUID" : 446, "selected" : false } }, { "data" : { "id" : "445", "source" : "112", "target" : "261", "EdgeBetweenness" : 4.83333333, "shared_name" : "YHR084W (pd) YFL026W", "shared_interaction" : "pd", "name" : "YHR084W (pd) YFL026W", "interaction" : "pd", "SUID" : 445, "selected" : false } }, { "data" : { "id" : "444", "source" : "111", "target" : "110", "EdgeBetweenness" : 2440.0, "shared_name" : "YBR274W (pp) YMR255W", "shared_interaction" : "pp", "name" : "YBR274W (pp) YMR255W", "interaction" : "pp", "SUID" : 444, "selected" : false } }, { "data" : { "id" : "443", "source" : "110", "target" : "391", "EdgeBetweenness" : 1960.0, "shared_name" : "YMR255W (pp) YGL122C", "shared_interaction" : "pp", "name" : "YMR255W (pp) YGL122C", "interaction" : "pp", "SUID" : 443, "selected" : false } }, { "data" : { "id" : "442", "source" : "109", "target" : "108", "EdgeBetweenness" : 496.0, "shared_name" : "YLR452C (pp) YHR005C", "shared_interaction" : "pp", "name" : "YLR452C (pp) YHR005C", "interaction" : "pp", "SUID" : 442, "selected" : false } }, { "data" : { "id" : "441", "source" : "108", "target" : "307", "EdgeBetweenness" : 988.0, "shared_name" : "YHR005C (pp) YLR362W", "shared_interaction" : "pp", "name" : "YHR005C (pp) YLR362W", "interaction" : "pp", "SUID" : 441, "selected" : false } }, { "data" : { "id" : "440", "source" : "107", "target" : "115", "EdgeBetweenness" : 496.0, "shared_name" : "YDR299W (pd) YJL194W", "shared_interaction" : "pd", "name" : "YDR299W (pd) YJL194W", "interaction" : "pd", "SUID" : 440, "selected" : false } }, { "data" : { "id" : "439", "source" : "106", "target" : "202", "EdgeBetweenness" : 8.0, "shared_name" : "YIL074C (pp) YNL311C", "shared_interaction" : "pp", "name" : "YIL074C (pp) YNL311C", "interaction" : "pp", "SUID" : 439, "selected" : false } }, { "data" : { "id" : "438", "source" : "105", "target" : "299", "EdgeBetweenness" : 496.0, "shared_name" : "YOR120W (pd) YPL248C", "shared_interaction" : "pd", "name" : "YOR120W (pd) YPL248C", "interaction" : "pd", "SUID" : 438, "selected" : false } }, { "data" : { "id" : "437", "source" : "104", "target" : "324", "EdgeBetweenness" : 230.66666667, "shared_name" : "YPR041W (pp) YOR361C", "shared_interaction" : "pp", "name" : "YPR041W (pp) YOR361C", "interaction" : "pp", "SUID" : 437, "selected" : false } }, { "data" : { "id" : "436", "source" : "104", "target" : "323", "EdgeBetweenness" : 265.33333333, "shared_name" : "YPR041W (pp) YMR309C", "shared_interaction" : "pp", "name" : "YPR041W (pp) YMR309C", "interaction" : "pp", "SUID" : 436, "selected" : false } }, { "data" : { "id" : "435", "source" : "102", "target" : "248", "EdgeBetweenness" : 1476.0, "shared_name" : "YDL215C (pd) YER040W", "shared_interaction" : "pd", "name" : "YDL215C (pd) YER040W", "interaction" : "pd", "SUID" : 435, "selected" : false } }, { "data" : { "id" : "434", "source" : "102", "target" : "134", "EdgeBetweenness" : 1476.0, "shared_name" : "YDL215C (pp) YLR432W", "shared_interaction" : "pp", "name" : "YDL215C (pp) YLR432W", "interaction" : "pp", "SUID" : 434, "selected" : false } }, { "data" : { "id" : "433", "source" : "101", "target" : "226", "EdgeBetweenness" : 12.0, "shared_name" : "YER079W (pp) YHR135C", "shared_interaction" : "pp", "name" : "YER079W (pp) YHR135C", "interaction" : "pp", "SUID" : 433, "selected" : false } }, { "data" : { "id" : "432", "source" : "101", "target" : "223", "EdgeBetweenness" : 12.0, "shared_name" : "YER079W (pp) YNL154C", "shared_interaction" : "pp", "name" : "YER079W (pp) YNL154C", "interaction" : "pp", "SUID" : 432, "selected" : false } }, { "data" : { "id" : "431", "source" : "100", "target" : "358", "EdgeBetweenness" : 7802.71708292, "shared_name" : "YDL030W (pp) YDL013W", "shared_interaction" : "pp", "name" : "YDL030W (pp) YDL013W", "interaction" : "pp", "SUID" : 431, "selected" : false } }, { "data" : { "id" : "430", "source" : "100", "target" : "99", "EdgeBetweenness" : 496.0, "shared_name" : "YDL030W (pp) YMR005W", "shared_interaction" : "pp", "name" : "YDL030W (pp) YMR005W", "interaction" : "pp", "SUID" : 430, "selected" : false } }, { "data" : { "id" : "429", "source" : "97", "target" : "127", "EdgeBetweenness" : 249.0, "shared_name" : "YGR085C (pp) YLR075W", "shared_interaction" : "pp", "name" : "YGR085C (pp) YLR075W", "interaction" : "pp", "SUID" : 429, "selected" : false } }, { "data" : { "id" : "428", "source" : "97", "target" : "96", "EdgeBetweenness" : 739.0, "shared_name" : "YGR085C (pp) YDR395W", "shared_interaction" : "pp", "name" : "YGR085C (pp) YDR395W", "interaction" : "pp", "SUID" : 428, "selected" : false } }, { "data" : { "id" : "427", "source" : "96", "target" : "73", "EdgeBetweenness" : 496.0, "shared_name" : "YDR395W (pp) YDL075W", "shared_interaction" : "pp", "name" : "YDR395W (pp) YDL075W", "interaction" : "pp", "SUID" : 427, "selected" : false } }, { "data" : { "id" : "426", "source" : "96", "target" : "351", "EdgeBetweenness" : 1929.0, "shared_name" : "YDR395W (pp) YIL133C", "shared_interaction" : "pp", "name" : "YDR395W (pp) YIL133C", "interaction" : "pp", "SUID" : 426, "selected" : false } }, { "data" : { "id" : "425", "source" : "96", "target" : "72", "EdgeBetweenness" : 496.0, "shared_name" : "YDR395W (pp) YNL069C", "shared_interaction" : "pp", "name" : "YDR395W (pp) YNL069C", "interaction" : "pp", "SUID" : 425, "selected" : false } }, { "data" : { "id" : "424", "source" : "96", "target" : "71", "EdgeBetweenness" : 496.0, "shared_name" : "YDR395W (pp) YER056CA", "shared_interaction" : "pp", "name" : "YDR395W (pp) YER056CA", "interaction" : "pp", "SUID" : 424, "selected" : false } }, { "data" : { "id" : "423", "source" : "96", "target" : "70", "EdgeBetweenness" : 496.0, "shared_name" : "YDR395W (pp) YIL052C", "shared_interaction" : "pp", "name" : "YDR395W (pp) YIL052C", "interaction" : "pp", "SUID" : 423, "selected" : false } }, { "data" : { "id" : "422", "source" : "96", "target" : "342", "EdgeBetweenness" : 1929.0, "shared_name" : "YDR395W (pp) YOL127W", "shared_interaction" : "pp", "name" : "YDR395W (pp) YOL127W", "interaction" : "pp", "SUID" : 422, "selected" : false } }, { "data" : { "id" : "421", "source" : "96", "target" : "126", "EdgeBetweenness" : 739.0, "shared_name" : "YDR395W (pp) YPR102C", "shared_interaction" : "pp", "name" : "YDR395W (pp) YPR102C", "interaction" : "pp", "SUID" : 421, "selected" : false } }, { "data" : { "id" : "420", "source" : "95", "target" : "281", "EdgeBetweenness" : 496.0, "shared_name" : "YGR088W (pd) YLR256W", "shared_interaction" : "pd", "name" : "YGR088W (pd) YLR256W", "interaction" : "pd", "SUID" : 420, "selected" : false } }, { "data" : { "id" : "419", "source" : "94", "target" : "106", "EdgeBetweenness" : 6.0, "shared_name" : "YER081W (pp) YIL074C", "shared_interaction" : "pp", "name" : "YER081W (pp) YIL074C", "interaction" : "pp", "SUID" : 419, "selected" : false } }, { "data" : { "id" : "418", "source" : "93", "target" : "269", "EdgeBetweenness" : 496.0, "shared_name" : "YPR113W (pd) YMR043W", "shared_interaction" : "pd", "name" : "YPR113W (pd) YMR043W", "interaction" : "pd", "SUID" : 418, "selected" : false } }, { "data" : { "id" : "417", "source" : "92", "target" : "280", "EdgeBetweenness" : 496.0, "shared_name" : "YIL070C (pp) YML054C", "shared_interaction" : "pp", "name" : "YIL070C (pp) YML054C", "interaction" : "pp", "SUID" : 417, "selected" : false } }, { "data" : { "id" : "416", "source" : "90", "target" : "292", "EdgeBetweenness" : 496.0, "shared_name" : "YGR046W (pp) YNL236W", "shared_interaction" : "pp", "name" : "YGR046W (pp) YNL236W", "interaction" : "pp", "SUID" : 416, "selected" : false } }, { "data" : { "id" : "415", "source" : "88", "target" : "381", "EdgeBetweenness" : 496.0, "shared_name" : "YDR070C (pp) YFL017C", "shared_interaction" : "pp", "name" : "YDR070C (pp) YFL017C", "interaction" : "pp", "SUID" : 415, "selected" : false } }, { "data" : { "id" : "414", "source" : "87", "target" : "307", "EdgeBetweenness" : 8540.0041292, "shared_name" : "YOR212W (pp) YLR362W", "shared_interaction" : "pp", "name" : "YOR212W (pp) YLR362W", "interaction" : "pp", "SUID" : 414, "selected" : false } }, { "data" : { "id" : "413", "source" : "86", "target" : "297", "EdgeBetweenness" : 496.0, "shared_name" : "YNL036W (pp) YIR009W", "shared_interaction" : "pp", "name" : "YNL036W (pp) YIR009W", "interaction" : "pp", "SUID" : 413, "selected" : false } }, { "data" : { "id" : "412", "source" : "85", "target" : "135", "EdgeBetweenness" : 496.0, "shared_name" : "YML114C (pp) YDR167W", "shared_interaction" : "pp", "name" : "YML114C (pp) YDR167W", "interaction" : "pp", "SUID" : 412, "selected" : false } }, { "data" : { "id" : "411", "source" : "84", "target" : "309", "EdgeBetweenness" : 1476.0, "shared_name" : "YMR117C (pp) YCL032W", "shared_interaction" : "pp", "name" : "YMR117C (pp) YCL032W", "interaction" : "pp", "SUID" : 411, "selected" : false } }, { "data" : { "id" : "410", "source" : "84", "target" : "83", "EdgeBetweenness" : 496.0, "shared_name" : "YMR117C (pp) YPR010C", "shared_interaction" : "pp", "name" : "YMR117C (pp) YPR010C", "interaction" : "pp", "SUID" : 410, "selected" : false } }, { "data" : { "id" : "409", "source" : "81", "target" : "143", "EdgeBetweenness" : 8.0, "shared_name" : "YDL088C (pp) YER110C", "shared_interaction" : "pp", "name" : "YDL088C (pp) YER110C", "interaction" : "pp", "SUID" : 409, "selected" : false } }, { "data" : { "id" : "408", "source" : "80", "target" : "329", "EdgeBetweenness" : 2.0, "shared_name" : "YLR197W (pp) YDL014W", "shared_interaction" : "pp", "name" : "YLR197W (pp) YDL014W", "interaction" : "pp", "SUID" : 408, "selected" : false } }, { "data" : { "id" : "407", "source" : "80", "target" : "328", "EdgeBetweenness" : 2.0, "shared_name" : "YLR197W (pp) YOR310C", "shared_interaction" : "pp", "name" : "YLR197W (pp) YOR310C", "interaction" : "pp", "SUID" : 407, "selected" : false } }, { "data" : { "id" : "406", "source" : "79", "target" : "78", "EdgeBetweenness" : 4.0, "shared_name" : "YGL202W (pp) YGR074W", "shared_interaction" : "pp", "name" : "YGL202W (pp) YGR074W", "interaction" : "pp", "SUID" : 406, "selected" : false } }, { "data" : { "id" : "405", "source" : "78", "target" : "64", "EdgeBetweenness" : 4.0, "shared_name" : "YGR074W (pp) YBR043C", "shared_interaction" : "pp", "name" : "YGR074W (pp) YBR043C", "interaction" : "pp", "SUID" : 405, "selected" : false } }, { "data" : { "id" : "404", "source" : "77", "target" : "186", "EdgeBetweenness" : 4.0, "shared_name" : "YBR170C (pp) YGR048W", "shared_interaction" : "pp", "name" : "YBR170C (pp) YGR048W", "interaction" : "pp", "SUID" : 404, "selected" : false } }, { "data" : { "id" : "403", "source" : "76", "target" : "267", "EdgeBetweenness" : 496.0, "shared_name" : "YDL023C (pp) YJL159W", "shared_interaction" : "pp", "name" : "YDL023C (pp) YJL159W", "interaction" : "pp", "SUID" : 403, "selected" : false } }, { "data" : { "id" : "402", "source" : "75", "target" : "284", "EdgeBetweenness" : 496.0, "shared_name" : "YGR136W (pp) YGR058W", "shared_interaction" : "pp", "name" : "YGR136W (pp) YGR058W", "interaction" : "pp", "SUID" : 402, "selected" : false } }, { "data" : { "id" : "401", "source" : "69", "target" : "211", "EdgeBetweenness" : 496.0, "shared_name" : "YLR345W (pp) YLR321C", "shared_interaction" : "pp", "name" : "YLR345W (pp) YLR321C", "interaction" : "pp", "SUID" : 401, "selected" : false } }, { "data" : { "id" : "400", "source" : "68", "target" : "81", "EdgeBetweenness" : 6.0, "shared_name" : "YBL079W (pp) YDL088C", "shared_interaction" : "pp", "name" : "YBL079W (pp) YDL088C", "interaction" : "pp", "SUID" : 400, "selected" : false } }, { "data" : { "id" : "399", "source" : "67", "target" : "103", "EdgeBetweenness" : 5236.0, "shared_name" : "YBR045C (pp) YIL045W", "shared_interaction" : "pp", "name" : "YBR045C (pp) YIL045W", "interaction" : "pp", "SUID" : 399, "selected" : false } }, { "data" : { "id" : "398", "source" : "67", "target" : "179", "EdgeBetweenness" : 2962.0, "shared_name" : "YBR045C (pp) YOR178C", "shared_interaction" : "pp", "name" : "YBR045C (pp) YOR178C", "interaction" : "pp", "SUID" : 398, "selected" : false } }, { "data" : { "id" : "397", "source" : "66", "target" : "180", "EdgeBetweenness" : 3174.0, "shared_name" : "YER054C (pp) YER133W", "shared_interaction" : "pp", "name" : "YER054C (pp) YER133W", "interaction" : "pp", "SUID" : 397, "selected" : false } }, { "data" : { "id" : "396", "source" : "66", "target" : "67", "EdgeBetweenness" : 2746.0, "shared_name" : "YER054C (pp) YBR045C", "shared_interaction" : "pp", "name" : "YER054C (pp) YBR045C", "interaction" : "pp", "SUID" : 396, "selected" : false } }, { "data" : { "id" : "395", "source" : "65", "target" : "84", "EdgeBetweenness" : 496.0, "shared_name" : "YPR145W (pp) YMR117C", "shared_interaction" : "pp", "name" : "YPR145W (pp) YMR117C", "interaction" : "pp", "SUID" : 395, "selected" : false } }, { "data" : { "id" : "394", "source" : "63", "target" : "365", "EdgeBetweenness" : 988.0, "shared_name" : "YDR277C (pp) YJR022W", "shared_interaction" : "pp", "name" : "YDR277C (pp) YJR022W", "interaction" : "pp", "SUID" : 394, "selected" : false } }, { "data" : { "id" : "393", "source" : "63", "target" : "62", "EdgeBetweenness" : 496.0, "shared_name" : "YDR277C (pp) YDL194W", "shared_interaction" : "pp", "name" : "YDR277C (pp) YDL194W", "interaction" : "pp", "SUID" : 393, "selected" : false } } ] } ================================================ FILE: debug/index.html ================================================ cytoscape.js debug page

Testing

View



Panning: User:
Zooming: User:
Autolock:
Autoungrabify:
Autounselectify:
Selected BB:
Debug overlays:
Mounting:

Layout

Time taken:  

Filtering

Add & remove elements


Time taken:  

Element events

to for
with delegate

Core events

to core for
with delegate

Toggles on selected




String stylesheets

================================================ FILE: debug/init.js ================================================ /* eslint-disable no-console, no-unused-vars */ /* global $, cytoscape, options, cy */ var cy, defaultSty, options; (function(){ defaultSty = cytoscape.stylesheet() .selector('node') .style({ 'label': 'data(id)' }) .selector('#b, #c, #f, #i') .style({ 'outline-offset': 5, 'outline-color': 'red', 'outline-opacity': 0.125, 'outline-width': 10, 'outline-style': 'solid', 'border-width': 5, 'border-opacity': 0.25, 'border-color': 'cyan', 'border-position': 'inside', }) .selector('node#c') .style({ 'shape': 'round-rectangle', 'width': 220, 'height': 60, 'corner-radius': 30, "label": "c has a long label over-\u200bflowing its max width,\n but spa\u200bces are ke\u200bpt", "text-max-width": 100, "text-wrap": "wrap", "text-events": "yes", "box-select-labels": "yes", }) .selector('node#d') .style({ "label": "d has a long label over-\u200bflowing and its rotated by 45deg", "text-max-width": 100, "text-wrap": "wrap", "text-events": "yes", "box-select-labels": "yes", "text-rotation": "45deg", }) .selector('node#b') .style({ 'shape': 'round-hexagon', 'width': 60, 'height': 60, 'corner-radius': 10, "label": "b has a long label over-\u200bflowing and its rotated by 38deg", "text-max-width": 100, "text-wrap": "wrap", "text-events": "yes", "box-select-labels": "yes", "text-rotation": "38deg", }) .selector('node#c') .style({ 'shape': 'round-rectangle', 'width': 220, 'height': 60, 'corner-radius': 5 }) .selector('node#f') .style({ 'shape': 'cut-rectangle', 'width': 50, 'corner-radius': 10, }) .selector('edge') .style({ 'source-arrow-shape': 'triangle-backcurve', 'target-arrow-shape': 'triangle', 'mid-target-arrow-shape': 'triangle', 'mid-source-arrow-shape': 'triangle-backcurve', 'label': e => e.data('id'), }) .selector('#ab') .style({ 'curve-style': 'unbundled-bezier', 'control-point-distances': [ 20, -100, 20 ], 'control-point-weights': [ 0.25, 0.5, 0.75 ], 'source-arrow-fill': 'hollow', 'source-arrow-width': 2, 'target-arrow-fill': 'hollow', 'target-arrow-width': 'match-line', }) .selector('#bc') .style({ 'curve-style': 'segments', 'segment-distances': [ 20, -80 ], 'segment-weights': [ 0.25, 0.5 ], 'source-arrow-fill': 'hollow', 'source-arrow-width': '50%', 'target-arrow-fill': 'hollow', }) .selector('#fi') .style({ 'curve-style': 'straight-triangle', 'source-arrow-shape': 'none', 'target-arrow-shape': 'none', 'mid-target-arrow-shape': 'none', 'mid-source-arrow-shape': 'none', 'width': 6, }) .selector('[source = "c"][target = "e"]') .style({ 'curve-style': 'haystack', 'haystack-radius': 0.5 }) .selector('[source = "d"][target = "e"]') .style({ 'curve-style': 'bezier' }) .selector('#ae') .style({ 'curve-style': 'bezier' }) .selector('#be') .style({ 'curve-style': 'bezier' }) .selector('#cf') .style({ 'curve-style': 'bezier' }) .selector('#bf') .style({ 'curve-style': 'taxi' }) .selector('#eg') .style({ 'curve-style': 'round-taxi', "taxi-direction": "downward", // "taxi-turn": 100, "taxi-turn-min-distance": 50, "taxi-radius": 50 }) .selector('#eh') .style({ 'curve-style': 'round-segments', "segment-distances": [-50, -50, -50], "segment-weights": [0.25,0.5,0.75], 'segment-radii': [ 50, 50 , 50] }) .selector('#ed') .style({ 'curve-style': 'segments', 'segment-distances': [ -100 ], 'segment-weights': [ 0.5 ] }) .selector('#ei') .style({ 'curve-style': 'round-taxi' }) .selector('#ep') .style({ 'curve-style': 'round-taxi', }) .selector('#gh') .style({ 'curve-style': 'round-taxi' }) ; options = { container: $('#cytoscape'), renderer: { name: 'canvas', showFps: true }, layout: { name: 'grid', cols: 3 }, style: defaultSty, elements: { nodes: [ { data: { id: 'a', weight: 50 } }, { data: { id: 'b', weight: 30 } }, { data: { id: 'c', weight: 20 } }, { data: { id: 'd', weight: 10 } }, { data: { id: 'e', weight: 75 } }, { data: { id: 'f', weight: 100 } }, { data: { id: 'g', weight: 40 } }, { data: { id: 'h', weight: 16, parent: 'p'} }, { data: { id: 'i', weight: 16, parent: 'p'} }, { data: { id: 'p' } }, ], edges: [ { data: { id: 'ae', weight: 1, source: 'a', target: 'e' } }, { data: { id: 'aa', weight: 2, source: 'a', target: 'a' } }, { data: { id: 'aa2', weight: 2, source: 'a', target: 'a' } }, { data: { id: 'aa3', weight: 2, source: 'a', target: 'a' } }, { data: { id: 'ab', weight: 3, source: 'a', target: 'b' } }, { data: { id: 'be', weight: 4, source: 'b', target: 'e' } }, { data: { id: 'bc', weight: 5, source: 'b', target: 'c' } }, { data: { id: 'ce', weight: 6, source: 'c', target: 'e' } }, { data: { id: 'ce2', weight: 6, source: 'c', target: 'e' } }, { data: { id: 'cf', weight: 2, source: 'c', target: 'f' } }, { data: { id: 'de', weight: 7, source: 'd', target: 'e' } }, { data: { id: 'ed', weight: 7, source: 'e', target: 'd' } }, { data: { id: 'de2', weight: 7, source: 'd', target: 'e' } }, { data: { id: 'de3', weight: 7, source: 'd', target: 'e' } }, { data: { id: 'de4', weight: 7, source: 'd', target: 'e' } }, { data: { id: 'de5', weight: 7, source: 'd', target: 'e' } }, { data: { id: 'bf', weight: 3, source: 'b', target: 'f' } }, { data: { id: 'eg', weight: 3, source: 'e', target: 'g' } }, { data: { id: 'eh', weight: 3, source: 'e', target: 'h' } }, { data: { id: 'ei', weight: 3, source: 'e', target: 'i' } }, { data: { id: 'ep', weight: 3, source: 'e', target: 'p' } }, { data: { id: 'fi', weight: 3, source: 'f', target: 'i' } }, { data: { id: 'gh', weight: 3, source: 'g', target: 'h' } }, ] } }; cy = cytoscape(options); })(); ================================================ FILE: debug/layout.js ================================================ /* global $, cy, cy2 */ (function(){ $("#layout-button").addEventListener("click", function(){ cy.layout({ name: $("#layout-select").value }).run(); }); var start, end; cy.bind("layoutstart", function(){ start = +new Date; }).bind("layoutstop", function(){ end = +new Date; var time = end - start; if( !isNaN(time) ){ $("#layout-time").innerHTML = ( (time) + " ms" ); } }); })(); ================================================ FILE: debug/livereload-setup.js ================================================ /* global document, location, window */ // window.LiveReloadOptions = { // host: location.hostname, // port: 35729 // }; window.addEventListener('DOMContentLoaded', function(){ var script = document.createElement('script'); script.src = 'http://' + location.hostname + ':35729/livereload.js?snipver=1'; document.head.appendChild( script ); }); ================================================ FILE: debug/memory.html ================================================ cytoscape.js memory debug page
================================================ FILE: debug/notify.js ================================================ /* global $ */ /* eslint-disable no-console */ var notify = function( name, descr ){ console.log( name ); console.log( descr ); $('#note-name').innerHTML = ( name ); $('#note-descr').innerHTML = ( descr ); $('#note').style.display = 'block'; clearTimeout( notify.timeout ); notify.timeout = setTimeout( function(){ $('#note').style.display = 'none'; }, 3000 ); }; ================================================ FILE: debug/style.css ================================================ body { font: 14pt helvetica; width: 100%; -webkit-text-size-adjust: 100%; margin: 0; padding: 0; height: 100%; width: 100%;} #cytoscape { position: absolute; left: 0; right: 15.5em; top: 0; bottom: 0; } #commands { padding: 0.25em; width: 20em; z-index: 3; position: absolute; right: 0; top: 0; bottom: 0; overflow: auto; font-size: 0.75em; line-height: 1; background: rgba(200, 200, 200, 0.5); border-radius: 0.333em; } #commands h2 { margin-top: 1em; font-size: 1.25em; } label { position: absolute; margin-top: -0.25em; font-size: 0.65em; margin-left: 0.5em; background: #fff; } #nodes-number, #edges-number, #parent-node { width: 5em; } .ui-tooltip { font-size: 0.75em; max-width: 400px; } #string-stylesheet { display: block; min-height: 7em; width: 22em; } #hide-commands { position: fixed; right: 0; top: 0; } #commands-show-area { z-index: 2; position: absolute; right: 0; top: 0; font-size: 0.75em; } #show-commands { position: fixed; right: 0; top: 0; } #show-commands, #hide-commands { width: 3em; } #bb { position: absolute; left: 0; top: 0; background: rgba(0, 255, 255, 0.333); z-index: 999999999; pointer-events: none; } #note { z-index: 999999; cursor: pointer; display: none; position: fixed; right: 0; top: 0; margin: 1em; padding: 1em; width: 15em; background: rgba(0,0,0,0.8); color: #fff; border-radius: 1em; font-size: 0.8em; } #note-descr { margin-top: 0.5em; font-size: 0.8em; } #cytoscape.full { z-index: 1; position: absolute; left: 0; top: 0; width: 100%; height: 100%; max-width: 100%; max-height: 100%; } @media screen and ( max-width: 889px ){ body:not(.commands-shown) #commands { display: none; } body:not(.commands-shown) #cytoscape { right: 0; } } @media screen and ( min-width: 900px ){ body.commands-hidden #commands { display: none; } body.commands-hidden #cytoscape { right: 0; } } body.commands-shown #commands { display: block !important; } body.commands-shown #cytoscape { right: 15.5em !important; } ================================================ FILE: debug/style.js ================================================ /* global cy, $ */ (function(){ $("#string-stylesheet-apply-button").addEventListener("click", function(){ var stylesheetStr = $('#string-stylesheet').value; cy.style().fromString( stylesheetStr ).update(); }); }()); ================================================ FILE: debug/tests.js ================================================ /* global $, cy, notify, window, document */ (function(){ var assign = function( tgt ){ var args = arguments; for( var i = 1; i < args.length; i++ ){ var obj = args[ i ]; if( obj == null ){ continue; } var keys = Object.keys( obj ); for( var j = 0; j < keys.length; j++ ){ var k = keys[j]; tgt[ k ] = obj[ k ]; } } return tgt; }; var tests = {}; // name => setup function test(options){ var option = document.createElement('option'); option.value = options.name; option.innerHTML = options.displayName; $("#test-type-select").appendChild( option ); tests[options.name] = assign({}, { setup: function(){}, teardown: function(){}, description: "" }, options); } test({ name: "none", displayName: "None", description: "Not currently running any test" }); var currentTest; for(var i in tests){ currentTest = tests[i]; break; } $('#note').addEventListener('click', function(){ $('#note').style.display = 'none'; }); $("#test-type-select").addEventListener('change', function(){ currentTest.teardown(); var name = $("#test-type-select").value; currentTest = tests[name]; notify( currentTest.displayName, currentTest.description ); currentTest.setup(); }); function randomColor(){ function randCh(){ return Math.round( Math.random() * 255 ); } return 'rgb(' + randCh() + ', ' + randCh() + ', ' + randCh() + ')'; } test({ name: 'gal', displayName: 'Load GAL-filtered', description: 'Load an example network', setup: function(){ cy.elements().remove(); ( fetch('./gal.json') .then(function(res){ return res.json(); }).then(function(eleJsons){ cy.add(eleJsons); cy.layout({ name: 'grid' }).run(); cy.fit(); }) ); } }); test({ name: 'outlines', displayName: 'Outlines on all shapes', description: 'Load an example network', setup: function(){ cy.elements().remove(); const rounds = ['triangle', 'rectangle', 'diamond', 'pentagon', 'hexagon', 'heptagon', 'octagon', 'tag'] const shapes = ['ellipse', 'bottom-round-rectangle', 'cut-rectangle', 'barrel', 'rhomboid', 'right-rhomboid', 'concave-hexagon', 'star', 'vee', ...rounds, ...rounds.map(l => 'round-' + l)] shapes.forEach((shape, i) => { cy.add({data: { id: i, weight: 50 }}).style({shape}) }) cy.layout({ name: 'grid' }).run(); cy.fit(); } }); test({ name: "randomEdgeColors", displayName: "Random edge colours", description: "Set each edge to a random colour", setup: function(){ cy.edges().each(function( ele ){ ele.css( 'line-color', randomColor() ); }); }, teardown: function(){ cy.edges().removeCss(); } }); test({ name: "text-background", displayName: "Text Background Styles", description: "Look at labels with different text background styles.", setup: function(){ cy.$('#a').css({ 'text-background-color': '#e5e5e5', 'text-background-opacity': 1 }); cy.$('#b').css({ 'text-background-color': '#e5e5e5', 'text-background-opacity': 1, 'text-background-shape': 'round-rectangle', 'text-background-padding': '2px', }); cy.$('#c').css({ 'text-background-color': '#e5e5e5', 'text-background-opacity': 1, 'text-background-shape': 'round-rectangle', 'text-background-padding': '2px', 'text-border-width': 1, 'text-border-opacity': 1, 'text-border-color': 'red', }); cy.$('#d').css({ 'text-background-color': '#e5e5e5', 'text-background-opacity': 1, 'text-background-shape': 'rectangle', 'text-background-padding': '2px', 'text-border-width': 1, 'text-border-opacity': 1, 'text-border-color': 'red', }); cy.$('#e').css({ 'text-background-color': '#e5e5e5', 'text-background-opacity': 1, 'text-background-shape': 'rectangle', 'text-background-padding': '2px', 'text-border-width': 1, 'text-border-opacity': 1, 'text-border-color': 'red', 'text-border-style': 'dashed', }); cy.$('#f').css({ 'text-background-color': '#e5e5e5', 'text-background-opacity': 1, 'text-background-shape': 'round-rectangle', 'text-background-padding': '10px', 'text-border-width': 5, 'text-border-opacity': 1, 'text-border-color': 'red', 'text-border-style': 'double', }); cy.$('#h').css({ 'text-background-color': '#e5e5e5', 'text-background-opacity': 1, 'font-size': '26px', 'text-background-shape': 'circle', 'text-background-padding': 5, 'text-border-width': 2, 'text-border-opacity': 1, 'text-border-color': 'red', }); }, teardown: function(){ cy.nodes().removeCss(); } }); test({ name: "bypassOnClick", displayName: "Bypass on click", description: "Set nodes to red and edges to orange on click", setup: function(){ cy.elements().bind("click", function(){ this.css("background-color", "red"); this.css({ lineColor: "orange", targetArrowColor: "orange", sourceArrowColor: "orange" }); }); }, teardown: function(){ cy.elements().unbind("click").css("*", ""); } }); test({ name: "shapeOnClick", displayName: "Squares on click", description: "Set nodes to squares and edge arrows to squares on click", setup: function(){ cy.elements().bind("click", function(){ this.css({ shape: "rectangle", targetArrowShape: "square", sourceArrowShape: "square" }); }); }, teardown: function(){ cy.elements().unbind("click").css("*", ""); } }); test({ name: "positionOnClick", displayName: "Random position on click", description: "Put node to random position on click", setup: function(){ var w = cy.width(); var h = cy.height(); cy.nodes().bind("click", function(){ var node = this; var padding = 50; var p2 = { x: Math.random() * (w - padding) + padding, y: Math.random() * (h - padding) + padding }; node.animate({ position: p2 }, { duration: 1000 }); }); }, teardown: function(){ cy.elements().unbind("click"); } }); test({ name: "labelOnClick", displayName: "Label on click", description: "Change label on click", setup: function(){ cy.elements().bind("click", function(){ this.css({ content: "clicked" }); }); }, teardown: function(){ cy.elements().unbind("click").css("*", ""); } }); test({ name: "labelWithWeight", displayName: "Labels with weight", description: "Show weight in element labels", setup: function(){ cy.style() .selector('*') .css({ 'content': 'data(weight)' }) .update() ; }, teardown: function(){ var stylesheet = window.defaultSty; cy.style( stylesheet ); } }); test({ name: "hideOnClick", displayName: "visibility:hidden on click", description: "visibility:hidden on nodes and edges when clicked", setup: function(){ cy.elements().bind("click", function(){ this.style('visibility', 'hidden'); }); }, teardown: function(){ cy.elements().unbind("click").css("*", ""); } }); test({ name: "hideOnClick2", displayName: "display:none on click", description: "display:none on nodes and edges when clicked", setup: function(){ cy.elements().bind("click", function(){ this.css("display", "none"); }); }, teardown: function(){ cy.elements().unbind("click").css("*", ""); } }); test({ name: "hideOnClick3", displayName: "opacity:0 on click", description: "opacity:0 on nodes and edges when clicked", setup: function(){ cy.elements().bind("click", function(){ this.css("opacity", 0); }); }, teardown: function(){ cy.elements().unbind("click").css("*", ""); } }); test({ name: "growOnClick", displayName: "Coloured and sized", description: "Make nodes grow/shrink and change colour on click", setup: function(){ cy.nodes().bind("click", function(){ function rch(){ return Math.round( Math.random() * 255 ); } function rcolor(){ return "rgb(" + rch() + "," + rch() + "," + rch() + ")"; } function rsize(){ return 5 + Math.round( Math.random() * 50 ); } var size = rsize(); this.stop().animate({ css: { backgroundColor: rcolor(), height: size, width: size } }, { duration: 1000 }); }); }, teardown: function(){ cy.elements().unbind("click").removeCss(); } }); test({ name: "colourThenGrow", displayName: "Orange, delay, grow, reset", description: "Click nodes to trigger", setup: function(){ cy.nodes().bind("click", function(){ var self = this; self .stop(true) .animate({ css: { backgroundColor: "orange" } }, { duration: 1000 }) .delay(1000) .animate({ css: { height: 50, width: 50 } }, { duration: 1000 }).delay(1000, function(){ self.removeCss(); }); }); cy.edges().bind("click", function(){ this .stop(true) .animate({ bypass: { lineColor: "orange", targetArrowColor: "orange", sourceArrowColor: "orange" } }, { duration: 1000 }) .delay(1000) .animate({ css: { width: 7 } }, { duration: 1000 }); }); }, teardown: function(){ cy.elements().unbind("click").removeCss(); } }); test({ name: "redAndGrow", displayName: "Blue and grow in parallel", description: "Click nodes to trigger", setup: function(){ cy.nodes().bind("click", function(){ this .stop(true) .animate({ css: { backgroundColor: "blue" } }, { duration: 1000 }) .animate({ css: { height: 50, width: 50 } }, { duration: 1000, queue: false }); }); }, teardown: function(){ cy.nodes().unbind("click").removeCss(); } }); test({ name: "bigRedOnClick", displayName: "Big & red", description: "Click background to toggle", setup: function(){ var on = false; cy.bind("click", function(){ if( !on ){ cy.nodes().stop().animate({ css: { backgroundColor: "red", height: 50, width: 50 } }, { duration: 2000 }); on = true; } else { cy.nodes().stop().removeCss(); on = false; } }); }, teardown: function(){ cy.unbind("click"); cy.nodes().removeCss(); } }); test({ name: "bigRedOnClickE", displayName: "Big & red edges", description: "Click background to toggle", setup: function(){ var on = false; cy.bind("click", function(){ if( !on ){ cy.edges().stop().animate({ css: { lineColor: "red", targetArrowColor: "red", sourceArrowColor: "red", width: 10 } }, { duration: 2000 }); on = true; } else { cy.edges().stop().removeCss(); on = false; } }); }, teardown: function(){ cy.unbind("click"); cy.edges().removeCss(); } }); test({ name: "fancyStyle", displayName: "Set a fancy visual style", description: "Change the visual style and make sure it takes effect", setup: function(){ cy.style() .resetToDefault() .selector("node") .css({ shape: "rectangle", backgroundColor: "lightblue", borderColor: "black", borderWidth: 1, borderStyle: 'dashed', borderCap: 'round', borderDashPattern: [8, 16], width: "mapData(weight, 20, 100, 20, 100)", height: 20, labelFontWeight: "normal", labelFontSize: "0.75em", content: "data(weight)", textValign: "center", textHalign: "center" }) .selector("node#a") .css({ borderWidth: 2, borderCap: 'butt', borderDashPattern: [3, 12, 8, 16], borderPosition: 'inside', shape: "round-hexagon", height: 40 }) .selector("node#b") .css({ borderWidth: 2, borderCap: 'square', borderDashPattern: [4, 12], borderPosition: 'outside', shape: "round-triangle", height: 40 }) .selector("node#c") .css({ borderWidth: 3, borderCap: 'round', borderJoin: 'round', borderDashPattern: [3, 12], borderPosition: 'outside', shape: "polygon", shapePolygonPoints: [ -1, -1, 1, -1, -1, 1, 1, 1 ], height: 40 }) .selector("edge") .css({ lineColor: "mapData(weight, 0, 100, blue, red)", targetArrowShape: "triangle" }) .selector("edge:selected") .css({ width: 3 }) .selector("node:selected") .css({ borderWidth: 3 }) .update() ; cy.on('tap', 'node', function(e){ var n = e.target; var p = n.position(); var a1 = n.animation({ style: { 'border-dash-offset': 10000 }, duration: 1000000 }); a1.play() }); }, teardown: function(){ var stylesheet = window.defaultSty; cy.style( stylesheet ); cy.off('tap', 'node'); } }); test({ name: "strStyle", displayName: "Set a string stylesheet", description: "Change the visual style and make sure it takes effect", setup: function(){ cy.style('node { background-color: blue; }'); }, teardown: function(){ var stylesheet = window.defaultSty; cy.style( stylesheet ); } }); test({ name: "addStyle", displayName: "Add to current stylesheet", description: "Add to the visual style and make sure it takes effect", setup: function(){ cy.style() .selector('node') .css({ 'background-color': 'blue' }) .update() ; }, teardown: function(){ var stylesheet = window.defaultSty; cy.style( stylesheet ); } }); test({ name: "redTap", displayName: "Mouseover nodes to toggle red bypass", description: "..", setup: function(){ var on = {}; // id => true | false cy.on('mouseover', 'node', function(){ if( on[ this.id() ] ){ this.removeCss(); on[ this.id() ] = false; } else { this.css('background-color', 'red'); on[ this.id() ] = true; } }); }, teardown: function(){ cy.off('mouseover', 'node'); } }); test({ name: "multAni", displayName: "Multiple simultaneous animations", description: "Tap node to start", setup: function(){ cy.on('tap', 'node', function(e){ var n = e.target; var p = n.position(); var a1 = n.animation({ style: { 'background-color': 'cyan' }, position: { x: p.x + 100, y: p.y + 100 }, duration: 1000 }); a1.play(); var a2 = n.animation({ style: { 'width': 60, 'height': 60 }, duration: 1000 }); a2.play().promise('complete').then(function(){ return a2.rewind().reverse().play().promise('complete'); }).then(function(){ n.removeStyle(); }); }); }, teardown: function(){ cy.off('tap', 'node'); } }); var faded = false; test({ name: "fadeAni", displayName: "Animate element opacity", description: "Tap background to toggle", setup: function(){ cy.on('tap', function(e){ if( e.target !== cy ){ return; } faded = !faded; cy.elements().animate({ style: { 'opacity': faded ? 0.5 : 1 }, duration: 1000 }); }); }, teardown: function(){ cy.off('tap'); cy.elements().removeStyle(); } }); test({ name: "pngblob", displayName: "Export big PNG image via promise", description: "Tap background to save the file", setup: function(){ cy.on('tap', function(e){ if( e.target !== cy ){ return; } console.time('pngblob'); var save = function(blob){ console.timeEnd('pngblob'); saveAs(blob, 'blob-promise.png'); }; var N = 10000; cy.png({ output: 'blob-promise', maxWidth: N, maxHeight: N }).then(save); }); }, teardown: function(){ cy.off('tap'); } }); test({ name: "png64", displayName: "Export big PNG image via base64 blob", description: "Tap background to save the file", setup: function(){ cy.on('tap', function(e){ if( e.target !== cy ){ return; } console.time('png64'); var save = function(blob){ saveAs(blob, 'base64-blob.png'); }; var N = 10000; var blob = cy.png({ output: 'blob', maxWidth: N, maxHeight: N }); console.timeEnd('png64'); save( blob ); }); }, teardown: function(){ cy.off('tap'); } }); test({ name: "randomLayoutAni", displayName: "Animate random layout", description: "Tap background to run layout", setup: function(){ cy.on('tap', function(e){ if( e.target !== cy ){ return; } cy.layout({ name: 'random', animate: true, animationDuration: 1000 }).run(); }); }, teardown: function(){ cy.off('tap'); } }); var de = cy.$('#de'); var deToggle = false; test({ name: "rmBez", displayName: "Remove bundled bezier", description: "Tap background to toggle removing edge `de`", setup: function(){ deToggle = false; cy.on('tap', function(e){ if( e.target !== cy ){ return; } deToggle = !deToggle; if( deToggle ){ de.remove(); } else { de.restore(); } }); }, teardown: function(){ cy.off('tap'); de.restore(); } }); test({ name: "mvBez", displayName: "Move bundled bezier", description: "Tap background to toggle moving edge `de` to source `e` target `f`", setup: function(){ deToggle = false; cy.on('tap', function(e){ if( e.target !== cy ){ return; } deToggle = !deToggle; if( deToggle ){ de.move({ source: 'e', target: 'f' }); } else { de.move({ source: 'd', target: 'e' }); } }); }, teardown: function(){ cy.off('tap'); de.move({ source: 'd', target: 'e' }); } }); test({ name: "events:no", displayName: "events: no", description: "Apply events:no style to all nodes. Clicking on nodes should no longer affect the node.", setup: function(){ cy.nodes().style( { events: 'no' } ); }, teardown: function(){ cy.nodes().removeStyle(); } }); test({ name: "text-events:yes", displayName: "text-events: yes", description: "Apply text-events:yes style to all nodes. Clicking on node labels should select the node.", setup: function(){ cy.nodes().style( { 'text-events': 'yes' } ); }, teardown: function(){ cy.nodes().removeStyle(); } }); test({ name: "display:none", displayName: "display: none", description: "Apply display:none or display:element to nodes. Check that edge visibility works as expected.", // bug: https://github.com/cytoscape/cytoscape.js/issues/3070 setup: function(){ cy.scratch('prevEles', cy.elements().jsons()); cy.scratch('prevStyle', cy.style().json()); cy.elements().remove(); cy.style() .resetToDefault() .selector('node') .style({ 'background-fit': 'cover', 'background-color': '#8B5050', 'border-color': '#000', 'border-width': 3, 'border-opacity': 0.5 }) .selector('edge') .style({ 'width': 1, 'line-color': '#ffaaaa', 'curve-style': 'bezier', 'target-arrow-shape': 'vee' }) .selector('#bird').style({ 'background-image': 'https://live.staticflickr.com/7272/7633179468_3e19e45a0c_b.jpg' }) .selector('#cat').style({ 'background-image': 'https://live.staticflickr.com/1261/1413379559_412a540d29_b.jpg' }) .selector('#ladybug').style({ 'background-image': 'https://live.staticflickr.com/3063/2751740612_af11fb090b_b.jpg' }) .selector('#aphid').style({ 'background-image': 'https://live.staticflickr.com/8316/8003798443_32d01257c8_b.jpg' }) .selector('#buggy').style({ width: 2, "line-color": "#ff0000", }); cy.add( [ { group: 'nodes', data: { id: 'root' } }, { group: 'nodes', data: { id: 'cat', parent: 'root' } }, { group: 'nodes', data: { id: 'bird', parent: 'root' } }, { group: 'nodes', data: { id: 'ladybug', parent: 'root' } }, { group: 'nodes', data: { id: 'aphid', parent: 'root' } }, { group: 'edges', data: { source: 'bird', target: 'cat' } }, { group: 'edges', data: { source: 'aphid', target: 'cat' } }, { group: 'edges', data: { source: 'bird', target: 'ladybug' } }, { group: 'edges', data: { source: 'ladybug', target: 'aphid', id: 'buggy' } } ] ); cy.layout({ name: 'grid' }).run(); cy.fit(cy.elements(), 120); const buttonIDs = []; cy.nodes().forEach(node=> { var id = node.data().id; var button = document.createElement('button'); button.id = 'button_' + id; buttonIDs.push(button.id); button.innerText = 'hide ' + id; button.onclick = () => { var display = 'element'; var text = 'hide'; if (node.style('display') === 'element') { display = 'none'; text = 'show'; } node.style('display', display); button.innerText = text + ' ' +id; }; button.style.position = 'relative'; document.body.append(button); }); cy.scratch('buttonIDs', buttonIDs); }, teardown: function(){ const buttonIDs = cy.scratch('buttonIDs'); buttonIDs.forEach(id => document.getElementById(id).remove()); cy.removeScratch('buttonIDs'); cy.elements().remove(); cy.style().resetToDefault(); const prevEles = cy.scratch('prevEles'); const prevStyle = cy.scratch('prevStyle'); cy.removeScratch('prevEles'); cy.removeScratch('prevStyle'); cy.add(prevEles); cy.style(prevStyle); } }); })(); ================================================ FILE: debug/toggles.js ================================================ /* global document, $, cy, $$ */ (function(){ $$('button.toggler').forEach(function(el){ el.addEventListener('click', function(){ var name = el.innerText; cy.$(':selected')[name](); }); }); $('#hide-commands').addEventListener('click', function(){ document.body.classList.remove('commands-shown'); document.body.classList.add('commands-hidden'); cy.resize(); }); $('#show-commands').addEventListener('click', function(){ document.body.classList.add('commands-shown'); document.body.classList.remove('commands-hidden'); cy.resize(); }); })(); ================================================ FILE: debug/view.js ================================================ /* global $, cy */ (function(){ $("#zoom-pan-button").addEventListener('click', function(){ cy.reset(); }); $("#fit-button").addEventListener('click', function(){ cy.fit(); }); $("#fit-selected-button").addEventListener('click', function(){ cy.fit( cy.elements(":selected") ); }); $("#center-selected-button").addEventListener('click', function(){ cy.center( cy.elements(":selected") ); }); $("#enable-panning").addEventListener('click', function(){ cy.panningEnabled(true); }); $("#disable-panning").addEventListener('click', function(){ cy.panningEnabled(false); }); $("#enable-user-panning").addEventListener('click', function(){ cy.userPanningEnabled(true); }); $("#disable-user-panning").addEventListener('click', function(){ cy.userPanningEnabled(false); }); $("#enable-zooming").addEventListener('click', function(){ cy.zoomingEnabled(true); }); $("#disable-zooming").addEventListener('click', function(){ cy.zoomingEnabled(false); }); $("#enable-user-zooming").addEventListener('click', function(){ cy.userZoomingEnabled(true); }); $("#disable-user-zooming").addEventListener('click', function(){ cy.userZoomingEnabled(false); }); $("#enable-autolock").addEventListener('click', function(){ cy.autolock(true); }); $("#disable-autolock").addEventListener('click', function(){ cy.autolock(false); }); $("#enable-autoungrabify").addEventListener('click', function(){ cy.autoungrabify(true); }); $("#disable-autoungrabify").addEventListener('click', function(){ cy.autoungrabify(false); }); $("#enable-autounselectify").addEventListener('click', function(){ cy.autounselectify(true); }); $("#disable-autounselectify").addEventListener('click', function(){ cy.autounselectify(false); }); $("#show-debug").addEventListener('click', function(){ cy.renderer().debug = true; // force redraws cy.panBy({ x: 1 }); cy.panBy({ x: -1 }); }); $("#hide-debug").addEventListener('click', function(){ cy.renderer().debug = false; // force redraws cy.panBy({ x: 1 }); cy.panBy({ x: -1 }); }); var showBB = window.showBB = function( eles, opts ){ var bb = eles.renderedBoundingBox(opts); var $bb = $('#bb'); var style = { left: bb.x1 + 'px', top: bb.y1 + 'px', width: (bb.x2 - bb.x1) + 'px', height: (bb.y2 - bb.y1) + 'px', display: 'block' }; Object.keys( style ).forEach(function( key ){ var val = style[key]; $bb.style[ key ] = val; }); }; $("#show-bb").addEventListener('click', function(){ var eles = cy.$(':selected'); if( eles.length === 0 ){ eles = cy.elements(); } showBB( eles ); }); $("#hide-bb").addEventListener('click', function(){ $('#bb').style.display = 'none'; }); $("#show-bb-lbl").addEventListener('click', function(){ var eles = cy.$(':selected'); if( eles.length === 0 ){ eles = cy.elements(); } showBB( eles, { includeNodes: false, includeEdges: false, includeOverlays: false, includeLabels: true } ); }); $("#show-bb-lbl-main").addEventListener('click', function(){ var eles = cy.$(':selected'); if( eles.length === 0 ){ eles = cy.elements(); } showBB( eles, { includeNodes: false, includeEdges: false, includeOverlays: false, includeLabels: true, includeMainLabels: true, includeSourceLabels: false, includeTargetLabels: false } ); }); $("#show-bb-lbl-src").addEventListener('click', function(){ var eles = cy.$(':selected'); if( eles.length === 0 ){ eles = cy.elements(); } showBB( eles, { includeNodes: false, includeEdges: false, includeOverlays: false, includeLabels: true, includeMainLabels: false, includeSourceLabels: true, includeTargetLabels: false } ); }); $("#show-bb-lbl-tgt").addEventListener('click', function(){ var eles = cy.$(':selected'); if( eles.length === 0 ){ eles = cy.elements(); } showBB( eles, { includeNodes: false, includeEdges: false, includeOverlays: false, includeLabels: true, includeMainLabels: false, includeSourceLabels: false, includeTargetLabels: true } ); }); $("#show-bb-body").addEventListener('click', function(){ var eles = cy.$(':selected'); if( eles.length === 0 ){ eles = cy.elements(); } showBB( eles, { includeNodes: true, includeEdges: true, includeOverlays: false, includeLabels: false, includeMainLabels: false, includeSourceLabels: false, includeTargetLabels: false } ); }); $('#mount').addEventListener('click', function(){ cy.mount( $('#cytoscape') ); }); $('#unmount').addEventListener('click', function(){ cy.unmount(); }); })(); ================================================ FILE: debug/webgl/index.html ================================================ Cytoscape.js - WebGL Demo

Cytoscape.js
WebGL Demo

Network



Background Color:





WebGL Settings


Texture Size:  
ℹ️ Texture Size
This size of each dimension of each texture atlas. Affects buffering time and texture quality.

Texture Rows (Labels):  
ℹ️ Texture Rows
Number of rows to divide the texture atlas into. Affects number of textures used and texture quality.

Texture Rows (Node Body):  
ℹ️ Texture Rows
Number of rows to divide the texture atlas into. Affects number of textures used and texture quality.

Max Textures Per Batch:  
ℹ️ Textures Per Batch
Number of texture units to use per batch.

Max Elements Per Batch:  
ℹ️ Elements Per Batch
Number of nodes or edges to draw in a batch. Affects the size of data buffers.


Pan: 0
Zoom: 0

Open the debug console for more info.
(Option + Command + J)




================================================ FILE: debug/webgl/init.js ================================================ /* eslint-disable no-console, no-unused-vars */ /* global $, cytoscape, options, cy, networks */ var cy; const paramDefs = { networkID: { default: 'style_test', control: '#network-select' }, bgcolor: { default: 'white', control: '#bg-color-select' }, webgl: { default: 'true', control: '#webgl-check' }, hover: { default: 'false', control: '#hover-check' }, animate: { default: 'false', control: '#animate-check' }, // webglDebugShowAtlases: { // default: false, // control: '#atlas-checkbox' // }, webglTexSize: { default: 2048, control: '#texture-size-select' }, webglTexRows: { default: 36, control: '#texture-rows-select' }, webglTexRowsNodes: { default: 18, control: '#texture-rows-nodes-select' }, webglBatchSize: { default: 2048, control: '#batch-size-select' }, webglTexPerBatch: { default: 14, control: '#texture-units-select' }, }; (function(){ const params = {}; // Load URL params const urlParams = new URLSearchParams(window.location.search); for(const p of Object.keys(paramDefs)) { const def = paramDefs[p]; params[p] = urlParams.get(p) || def.default; } console.log('params', params); $('#cytoscape').style.backgroundColor = params.bgcolor; // Load network and style function loadNetwork(elements, style) { const options = { container: $('#cytoscape'), renderer: { name: 'canvas', showFps: true, webgl: params.webgl === 'true', webglDebug: true, webglDebugShowAtlases: params.webglDebugShowAtlases === 'true', webglTexSize: params.webglTexSize, webglTexRows: params.webglTexRows, webglTexRowsNodes: params.webglTexRowsNodes, webglBatchSize: params.webglBatchSize, webglTexPerBatch: params.webglTexPerBatch, }, style: style, elements: elements, layout: network.layout }; options.layout.animate = false; cy = cytoscape(options); if(params.animate === 'true' && params.networkID === 'style_test') { cy.ready(() => { var node = cy.getElementById('n8'); var expand = true; var duration = 1000; var timeout = duration + 100; const originalWidth = node.width(); function testAnimate() { if(expand) { node.animate({ style: { width: originalWidth + 50 }, duration: duration, queue: false, }); expand = false; } else { node.animate({ style: { width: originalWidth }, duration: duration, queue: false, }); expand = true; } setTimeout(testAnimate, timeout); } setTimeout(testAnimate, timeout); }); } cy.on('pan zoom', (e) => { const { x, y } = cy.pan(); const zoom = cy.zoom(); const panDiv = document.getElementById('pan'); panDiv.innerHTML = `Pan: x: ${x.toFixed(2)}, y: ${y.toFixed(2)}`; const zoomDiv = document.getElementById('zoom'); zoomDiv.innerHTML = `Zoom: ${zoom.toFixed(4)}`; }); if(params.hover === 'true') { // add hover effect cy.ready(() => { const hoverMapping = { selector: `.hover`, style: { 'underlay-color': 'lightblue', 'underlay-padding': 12, 'underlay-opacity': 0.7, 'underlay-shape': 'roundrectangle', }, }; cy.style().fromJson(cy.style().json().concat(hoverMapping)).update(); let lastHoveredElementID; cy.on('mouseover', 'node, edge', e => { const ele = e.target; ele.addClass('hover'); lastHoveredElementID = ele.data('id'); }); cy.on('mouseout', 'node, edge', e => { const lastEle = cy.getElementById(lastHoveredElementID); if(lastEle !== undefined) { lastEle.removeClass('hover'); } lastHoveredElementID = undefined; }); }); } } const network = networks[params.networkID]; const style = network.style; if(style && style.file) { // style is in a separate file console.log('loading style from file: ', style.file); Promise.all([ fetch(network.url).then(res => res.json()), fetch(style.file).then(res => res.json()) ]).then(([networkJson, styleJson]) => { loadNetwork(networkJson.elements, styleJson.style); }); } else { // style is in the same file as the network fetch(network.url) .then(res => res.json()) .then(networkJson => { loadNetwork(networkJson.elements, networkJson.style); }); } // Initialize controls for(const [networkID, network] of Object.entries(networks)) { const option = document.createElement('option'); option.value = networkID; option.innerHTML = `${network.desc} (${network.nodes} nodes, ${network.edges} edges)`; $("#network-select").appendChild(option); } for(const p of Object.keys(paramDefs)) { const control = $(paramDefs[p].control); if(control.type == 'checkbox') { control.checked = params[p] === 'true'; control.addEventListener('click', () => reloadPage()); } else { control.value = params[p]; control.addEventListener('change', () => reloadPage()); } } // Add listeners to controls function reloadPage(reset = false) { const { origin, pathname } = window.location; if(reset) { window.location.href = origin + pathname; return; } const urlParams = new URLSearchParams(); for(const p of Object.keys(paramDefs)) { console.log(p); const control = $(paramDefs[p].control); const value = control.type == 'checkbox' ? control.checked : control.value; console.log(paramDefs[p], value, paramDefs[p].default); if(String(value) !== String(paramDefs[p].default)) { urlParams.set(p, value); } } window.location.href = origin + pathname + '?' + urlParams.toString(); } $('#hide-commands').addEventListener('click', () => { document.body.classList.remove('commands-shown'); document.body.classList.add('commands-hidden'); if(cy) { cy.resize(); } }); $('#show-commands').addEventListener('click', () => { document.body.classList.add('commands-shown'); document.body.classList.remove('commands-hidden'); if(cy) { cy.resize(); } }); $("#fit-button").addEventListener('click', () => cy.fit()); $("#reset-button").addEventListener('click', () => reloadPage(true)); // $("#delete-button").addEventListener('click', () => { // cy.remove(':selected'); // }); // $("#animate-button").addEventListener('click', () => { // const nodes = cy.nodes(':selected'); // nodes.forEach(n => { // const w = n.width(); // n.animate({ // style: { 'width': w + 100 } // }, { // duration: 1000 // }) // .delay(1000) // .animate({ // style: { 'width': w } // }, { // duration: 1000 // }); // }); // }); // $("#select-button").addEventListener('click', () => { // cy.nodes().select(); // }); // $("#gc-button").addEventListener('click', () => { // cy.gc(); // }); })(); ================================================ FILE: debug/webgl/network-compound-nodes.json ================================================ { "style": [ { "selector": "node", "css": { "shape": "rectangle", "content": "data(id)", "text-valign": "center", "text-halign": "center" } }, { "selector": ":parent", "css": { "text-valign": "top", "text-halign": "center", "shape": "round-rectangle", "corner-radius": "10", "padding": 10, "background-opacity": 0.0 } }, { "selector": "node#e", "css": { "corner-radius": "10", "padding": 0 } }, { "selector": "node#d", "css": { "padding": 10 } }, { "selector": "edge", "css": { "curve-style": "bezier", "target-arrow-shape": "triangle" } } ], "elements": { "nodes": [ { "data": { "id": "a", "parent": "b" }, "position": { "x": 215, "y": 85 } }, { "data": { "id": "b" } }, { "data": { "id": "c", "parent": "b" }, "position": { "x": 300, "y": 85 } }, { "data": { "id": "d" }, "position": { "x": 215, "y": 175 } }, { "data": { "id": "e" } }, { "data": { "id": "f", "parent": "e" }, "position": { "x": 300, "y": 175 } } ], "edges": [ { "data": { "id": "ad", "source": "a", "target": "d" } }, { "data": { "id": "eb", "source": "e", "target": "b" } } ] } } ================================================ FILE: debug/webgl/network-curve.json ================================================ { "elements": { "nodes": [ { "data": { "id": "n1", "weight": 1 }, "position": { "x": 0, "y": 0 } }, { "data": { "id": "n2", "weight": 2 }, "position": { "x": 0, "y": 150 } }, { "data": { "id": "n3", "weight": 3 }, "position": { "x": 150, "y": -25 } } ], "edges": [ { "data": { "id":"n1-n2-0", "source": "n1", "target": "n2", "directed": "false" } }, { "data": { "id":"n1-n2-1", "source": "n1", "target": "n2", "directed": "false" } }, { "data": { "id":"n1-n2-2", "source": "n1", "target": "n2", "directed": "false" } }, { "data": { "id":"n1-n2-3", "source": "n1", "target": "n2", "directed": "false" } }, { "data": { "id":"self-0", "source": "n1", "target": "n1", "directed": "false" } }, { "data": { "id":"self-1", "source": "n1", "target": "n1", "directed": "false" } }, { "data": { "id":"n1-n3", "source": "n1", "target": "n3", "directed": "false" } } ] }, "style": [ { "selector": "node", "style": { "label": "data(id)", "text-valign": "center", "color": "#000000", "background-color": "#3a7ecf", "font-family": "Helvetica" } }, { "selector": "node:selected", "style": { "border-color": "yellow", "border-opacity": 1, "border-width": 2 } }, { "selector": "edge", "style": { "width": 4, "line-color": "#3a7ecf", "opacity": 0.5, "curve-style": "bezier" } }, { "selector": "#n1-n3", "style": { "curve-style": "unbundled-bezier", "control-point-distances": [40, -40], "control-point-weights": [0.250, 0.75], "source-arrow-shape": "triangle", "source-arrow-color": "green", "target-arrow-shape": "triangle", "target-arrow-color": "green", "width": 3 } } ] } ================================================ FILE: debug/webgl/network-em-desktop-style.json ================================================ { "format_version" : "1.0", "generated_by" : "cytoscape-3.10.3", "target_cytoscapejs_version" : "~2.1", "title" : "Enrichment Map TEP-Style", "style" : [ { "selector" : "node", "css" : { "shape" : "ellipse", "width" : 20.0, "background-color" : "rgb(240,240,240)", "color" : "rgb(0,0,0)", "border-width" : 1.0, "background-opacity" : 0.8627450980392157, "border-color" : "rgb(51,51,51)", "height" : 20.0, "font-size" : 12, "border-opacity" : 0.8627450980392157, "text-valign" : "center", "text-halign" : "center", "text-opacity" : 0.8627450980392157, "content" : "data(EM1_GS_DESCR)" } }, { "selector" : "node[EM1_GS_Type = 'SIG']", "css" : { "border-color" : "rgb(239,138,98)" } }, { "selector" : "node", "css" : { "width" : "mapData(EM1_gs_size, 0, 1300, 20, 60)", "height" : "mapData(EM1_gs_size, 0, 1300, 20, 60)" } }, { "selector" : "node[EM1_GS_Type = 'ENR']", "css" : { "border-color" : "rgb(51,51,51)" } }, { "selector" : "node[EM1_GS_Type = 'SIG']", "css" : { "shape" : "diamond" } }, { "selector" : "node[EM1_GS_Type = 'ENR']", "css" : { "shape" : "ellipse" } }, { "selector" : "node[EM1_Colouring_Data_Set_1_ > 1]", "css" : { "background-color" : "rgb(178,24,43)" } }, { "selector" : "node[EM1_Colouring_Data_Set_1_ = 1]", "css" : { "background-color" : "rgb(178,24,43)" } }, { "selector" : "node[EM1_Colouring_Data_Set_1_ > 0.995][EM1_Colouring_Data_Set_1_ < 1]", "css" : { "background-color" : "mapData(EM1_Colouring_Data_Set_1_,0.995,1,rgb(178,24,43),rgb(178,24,43))" } }, { "selector" : "node[EM1_Colouring_Data_Set_1_ > 0.95][EM1_Colouring_Data_Set_1_ < 0.995]", "css" : { "background-color" : "mapData(EM1_Colouring_Data_Set_1_,0.95,0.995,rgb(214,96,77),rgb(214,96,77))" } }, { "selector" : "node[EM1_Colouring_Data_Set_1_ > 0.9][EM1_Colouring_Data_Set_1_ < 0.95]", "css" : { "background-color" : "mapData(EM1_Colouring_Data_Set_1_,0.9,0.95,rgb(244,165,130),rgb(244,165,130))" } }, { "selector" : "node[EM1_Colouring_Data_Set_1_ > 0][EM1_Colouring_Data_Set_1_ < 0.9]", "css" : { "background-color" : "mapData(EM1_Colouring_Data_Set_1_,0,0.9,rgb(247,247,247),rgb(247,247,247))" } }, { "selector" : "node[EM1_Colouring_Data_Set_1_ > -0.9][EM1_Colouring_Data_Set_1_ < 0]", "css" : { "background-color" : "mapData(EM1_Colouring_Data_Set_1_,-0.9,0,rgb(247,247,247),rgb(247,247,247))" } }, { "selector" : "node[EM1_Colouring_Data_Set_1_ > -0.95][EM1_Colouring_Data_Set_1_ < -0.9]", "css" : { "background-color" : "mapData(EM1_Colouring_Data_Set_1_,-0.95,-0.9,rgb(67,147,195),rgb(146,197,222))" } }, { "selector" : "node[EM1_Colouring_Data_Set_1_ > -0.995][EM1_Colouring_Data_Set_1_ < -0.95]", "css" : { "background-color" : "mapData(EM1_Colouring_Data_Set_1_,-0.995,-0.95,rgb(33,102,172),rgb(146,197,222))" } }, { "selector" : "node[EM1_Colouring_Data_Set_1_ > -1][EM1_Colouring_Data_Set_1_ < -0.995]", "css" : { "background-color" : "mapData(EM1_Colouring_Data_Set_1_,-1,-0.995,rgb(33,102,172),rgb(67,147,195))" } }, { "selector" : "node[EM1_Colouring_Data_Set_1_ = -1]", "css" : { "background-color" : "rgb(33,102,172)" } }, { "selector" : "node[EM1_Colouring_Data_Set_1_ < -1]", "css" : { "background-color" : "rgb(33,102,172)" } }, { "selector" : "node:selected", "css" : { "background-color" : "rgb(255,255,0)" } }, { "selector" : "edge", "css" : { "text-opacity" : 0.7843137254901961, "opacity" : 0.7843137254901961, "target-arrow-shape" : "none", "source-arrow-color" : "rgb(0,0,0)", "content" : "", "target-arrow-color" : "rgb(0,0,0)", "width" : 1.0, "color" : "rgb(0,0,0)", "line-color" : "rgb(64,64,64)", "line-style" : "solid", "font-size" : 10, "source-arrow-shape" : "none" } }, { "selector" : "edge[interaction = 'sig']", "css" : { "line-color" : "rgb(252,141,98)", "target-arrow-color" : "rgb(252,141,98)", "source-arrow-color" : "rgb(252,141,98)" } }, { "selector" : "edge[interaction = 'Geneset_Overlap']", "css" : { "line-color" : "rgb(166,206,227)", "target-arrow-color" : "rgb(166,206,227)", "source-arrow-color" : "rgb(166,206,227)" } }, { "selector" : "edge[interaction = 'Data Set 1']", "css" : { "line-color" : "rgb(166,206,227)", "target-arrow-color" : "rgb(166,206,227)", "source-arrow-color" : "rgb(166,206,227)" } }, { "selector" : "edge[interaction = 'sig']", "css" : { "line-style" : "dashed" } }, { "selector" : "edge[interaction = 'compound']", "css" : { "line-style" : "solid" } }, { "selector" : "edge[EM1_similarity_coefficient > 1]", "css" : { "width" : 6.0 } }, { "selector" : "edge[EM1_similarity_coefficient = 1]", "css" : { "width" : 5.0 } }, { "selector" : "edge[EM1_similarity_coefficient > 0.375][EM1_similarity_coefficient < 1]", "css" : { "width" : "mapData(EM1_similarity_coefficient,0.375,1,1.0,5.0)" } }, { "selector" : "edge[EM1_similarity_coefficient = 0.375]", "css" : { "width" : 1.0 } }, { "selector" : "edge[EM1_similarity_coefficient < 0.375]", "css" : { "width" : 0.5 } }, { "selector" : "edge[interaction = 'sig']", "css" : { "line-color" : "rgb(252,141,98)" } }, { "selector" : "edge[interaction = 'Geneset_Overlap']", "css" : { "line-color" : "rgb(166,206,227)" } }, { "selector" : "edge[interaction = 'Data Set 1']", "css" : { "line-color" : "rgb(166,206,227)" } }, { "selector" : "edge:selected", "css" : { "line-color" : "rgb(255,0,0)" } } ] } ================================================ FILE: debug/webgl/network-em-desktop.json ================================================ [File too large to display: 23.4 MB] ================================================ FILE: debug/webgl/network-em-web.json ================================================ { "style": [ { "selector": "node", "style": { "border-width": "12px", "border-opacity": "0", "width": "40px", "height": "40px", "font-size": "8px", "text-valign": "center", "text-wrap": "wrap", "text-max-width": "80px", "z-index": "1", "label": "data(description)", "text-outline-width": 2, "color": "#fff", "background-color": "mapData(NES, -3.14, 3.14, #0571b0, #ca0020)", "text-outline-color": "mapData(NES, -3.14, 3.14, #0571b0, #ca0020)" } }, { "selector": "node:selected", "style": { "border-width": 8, "border-color": "#333333", "border-opacity": 1.0, "text-outline-color": "#333333", "z-index": 99999999 } }, { "selector": "edge", "style": { "label": "data(overlap_size)", "edge-text-rotation": "autorotate", "line-color": "#888", "line-opacity": 0.3, "curve-style": "haystack", "haystack-radius": 0, "width": "mapData(similarity_coefficient, 0, 1.0, 0, 15.0)" } } ], "elements": { "nodes": [ { "data": { "id": "24d0e101-0864-4553-a93d-335729308753", "name": [ "PKR-MEDIATED SIGNALING%REACTOME DATABASE ID RELEASE 81%9833482" ], "description": [ "PKR-mediated signaling" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 56, "padj": 0.0033, "mcode_cluster_id": null, "NES": -1.8618, "genes": [ "ADAR", "ARIH1", "CDK1", "CENPS", "CENPX", "CHUK", "DHX9", "DNAJC3", "DUS2", "EIF2AK2", "EIF2S1", "EIF2S2", "EIF2S3", "FAAP100", "FAAP20", "FAAP24", "FANCA", "FANCB", "FANCC", "FANCE", "FANCF", "FANCG", "FANCL", "FANCM", "HERC5", "HSPA1A", "HSPA1B", "HSPA1L", "HSPA2", "HSPA8", "IKBKB", "IKBKG", "ILF2", "ILF3", "ISG15", "MAP2K6", "MAVS", "NCK1", "NPM1", "PPP2CA", "PPP2CB", "PPP2R1A", "PPP2R1B", "PPP2R5A", "PRKRA", "PTPN2", "SNCA", "SPHK1", "STAT1", "STAT3", "SUMO1", "TARBP2", "TP53", "TRIM25", "UBE2I", "UBE2L6" ] }, "position": { "x": 15, "y": 1331.019477691585, "id": "24d0e101-0864-4553-a93d-335729308753" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "name": [ "PROTEASOME DEGRADATION%WIKIPATHWAYS_20240410%WP183%HOMO SAPIENS" ], "description": [ "Proteasome degradation" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 47, "padj": 0.0014, "mcode_cluster_id": null, "NES": -1.9808, "genes": [ "H2AX", "H2AZ1", "HEL-117", "HEL-S-276", "HEL-S-283", "HEL-S-91n", "HIST1H2AB", "HLA-A", "HLA-B", "HLA-C", "HLA-E", "HLA-F", "HLA-G", "IF2F", "NEDD4", "PSM8", "PSMA2", "PSMA4", "PSMB10", "PSMB2", "PSMB3", "PSMB6", "PSMC1", "PSMC4", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD9", "PSME2", "RPN1", "RPN2", "UBA7", "UBB", "UBC", "UBE2B", "UBE2D1", "UBE2D2", "UBE2D3" ] }, "position": { "x": 387.2409091769474, "y": 805.0635175766329, "id": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "bb5d1ff8-03b6-48df-aabf-0076e0114177", "name": [ "ANTIVIRAL INNATE IMMUNE RESPONSE%GOBP%GO:0140374" ], "description": [ "antiviral innate immune response" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 52, "padj": 0.0015, "mcode_cluster_id": null, "NES": -1.9585, "genes": [ "AKAP1", "ATAD3A", "CARD8", "CLPB", "CXCL10", "DHX15", "DHX16", "DHX58", "DUS2", "EIF2AK2", "IFIH1", "IFIT1", "IFIT2", "IFIT3", "MARCHF2", "MAVS", "MBL2", "MORC3", "MX1", "NCK1", "NLRP1", "NLRP6", "NMB", "NMBR", "OAS1", "PDE12", "PHB1", "PHB2", "PRKRA", "RELA", "RIGI", "RNF135", "RPSA", "SENP7", "SMARCA5", "STING1", "TBK1", "TNF", "TRAF6", "TRIM25", "TRIM31", "TRIM6", "TRIM7", "UAP1", "UBE2N", "UBE2W", "USP18", "USP20", "USP44", "ZBP1", "ZDHHC1", "ZDHHC11" ] }, "position": { "x": 2705.4384460569177, "y": 467.29520599040245, "id": "bb5d1ff8-03b6-48df-aabf-0076e0114177" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "e6d848e3-905e-461a-9175-98e15b3ff0a5", "name": [ "NEGATIVE REGULATORS OF RIG-I MDA5 SIGNALING%REACTOME DATABASE ID RELEASE 81%936440" ], "description": [ "Negative regulators of RIG-I MDA5 signaling" ], "pvalue": 0.0005, "gs_type": null, "gs_size": 35, "padj": 0.0093, "mcode_cluster_id": null, "NES": -1.8298, "genes": [ "ATG12", "ATG5", "CYLD", "HERC5", "IFIH1", "IKBKE", "IRF3", "ISG15", "ITCH", "MAVS", "NLRC5", "NLRX1", "OTUD5", "PCBP2", "PIN1", "RIGI", "RNF125", "RNF135", "RNF216", "RPS27A", "TAX1BP1", "TBK1", "TNFAIP3", "TRAF3", "TRIM25", "TRIM4", "UBA52", "UBA7", "UBB", "UBC", "UBE2D1", "UBE2D2", "UBE2D3", "UBE2K", "UBE2L6" ] }, "position": { "x": 1528.6601190595018, "y": 1801.8587965586644, "id": "e6d848e3-905e-461a-9175-98e15b3ff0a5" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "6af465ff-61a9-4e32-87f4-c7861672032f", "name": [ "PROTEIN SYNTHESIS: ASPARAGINE%SMPDB%SMP0111854" ], "description": [ "Protein Synthesis: Asparagine" ], "pvalue": 2.1936e-17, "gs_type": null, "gs_size": 80, "padj": 4.1161e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7925, "genes": [ "FAU", "NARS1", "RACK1", "RPL10", "RPL10A", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "UBA52" ] }, "position": { "x": 1030.6311824743536, "y": 620.686287912717, "id": "6af465ff-61a9-4e32-87f4-c7861672032f", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "0270ca63-6518-40e4-a878-0eac4795f5b1", "name": [ "REGULATION OF LYMPHOCYTE ACTIVATION%GOBP%GO:0051249" ], "description": [ "regulation of lymphocyte activation" ], "pvalue": 0.0043, "gs_type": null, "gs_size": 378, "padj": 0.0454, "mcode_cluster_id": "Cluster 12", "NES": -1.4093, "genes": [ "ABL1", "ABL2", "ACTB", "ACTL6A", "ACTL6B", "ADAM8", "AGER", "AHR", "AIF1", "AKT1", "AMBRA1", "ANXA1", "ARG1", "ARID1A", "ARID1B", "ARID2", "ATM", "AXL", "B2M", "BANK1", "BATF", "BCL2", "BCL6", "BMP4", "BRD2", "BRD4", "BRD7", "BST1", "BTK", "BTN2A2", "CAMK4", "CARD11", "CAV1", "CBFB", "CCDC88B", "CCL19", "CCL2", "CCL21", "CCL5", "CCR2", "CCR7", "CD160", "CD19", "CD1D", "CD2", "CD209", "CD22", "CD24", "CD27", "CD274", "CD276", "CD28", "CD300A", "CD320", "CD38", "CD3E", "CD4", "CD40LG", "CD46", "CD47", "CD5", "CD55", "CD6", "CD70", "CD74", "CD80", "CD81", "CD86", "CEBPB", "CHRNB2", "CLC", "CLCF1", "CLEC7A", "CLECL1P", "CLPTM1", "CR1", "CRTAM", "CSK", "CTLA4", "CTSG", "CYRIB", "DAPL1", "DCAF15", "DDRGK1", "DLG5", "DOCK8", "DPP4", "DUSP10", "DUSP3", "EBI3", "EP300", "EPHB2", "FADD", "FANCA", "FBXO38", "FCGR2B", "FCGR3A", "FCHO1", "FCRL3", "FGF10", "FGL1", "FLOT2", "FOXJ1", "FOXO3", "FOXP3", "FYN", "GAS6", "GATA3", "GLI2", "GLI3", "GLMN", "GPNMB", "GPR183", "HAVCR2", "HFE", "HHLA2", "HLA-A", "HLA-DMA", "HLA-DMB", "HLA-DOA", "HLA-DOB", "HLA-DPA1", "HLA-DPB1", "HLA-DQA1", "HLA-DQA2", "HLA-DQB1", "HLA-DQB2", "HLA-DRA", "HLA-DRB1", "HLA-DRB3", "HLA-DRB4", "HLA-DRB5", "HLA-E", "HLA-G", "HMCES", "HMGB1", "HSPD1", "HSPH1", "ICOS", "ICOSLG", "ID2", "IDO1", "IFNA2", "IFNB1", "IFNG", "IFNL1", "IGF1", "IGF2", "IGFBP2", "IHH", "IKZF3", "IL10", "IL12A", "IL12B", "IL12RB1", "IL15", "IL18", "IL1A", "IL1B", "IL2", "IL21", "IL23A", "IL23R", "IL27", "IL36B", "IL4", "IL4I1", "IL6", "IL6ST", "IL7", "ILDR2", "INHA", "INHBA", "INPP5D", "IRF1", "IRF4", "IRS2", "JAK2", "JAK3", "JUNB", "KAT2A", "KAT5", "KLHL25", "KLRC1", "KLRC2", "KLRC3", "KLRD1", "KLRK1", "KMT5B", "KMT5C", "LAG3", "LAPTM5", "LAT", "LAX1", "LCK", "LEF1", "LEP", "LGALS3", "LGALS9", "LGALS9B", "LGALS9C", "LILRB1", "LILRB2", "LILRB4", "LOXL3", "LST1", "LYN", "MAD2L2", "MALT1", "MAP3K8", "MAPK8IP1", "MDK", "MEF2C", "METTL3", "MICA", "MIF", "MMP14", "MNDA", "MTOR", "MZB1", "NCK1", "NCK2", "NCKAP1L", "NEDD9", "NFATC2", "NFKBID", "NFKBIZ", "NKAP", "NLRP3", "NOD2", "OPA1", "PAG1", "PARP3", "PAXIP1", "PBRM1", "PCK1", "PDCD1", "PDCD1LG2", "PDPK1", "PHF10", "PIBF1", "PIK3CA", "PLA2G2A", "PLA2G2D", "PLA2G2E", "PLA2G2F", "PLA2G5", "PNP", "PPP2R3C", "PPP3CA", "PRDM1", "PRELID1", "PRKAR1A", "PRKCQ", "PRKCZ", "PRKDC", "PRNP", "PSG9", "PTPN11", "PTPN2", "PTPN22", "PTPN6", "PTPRC", "PYCARD", "RARA", "RASAL3", "RC3H1", "RC3H2", "RHOH", "RIF1", "RIPK3", "RIPOR2", "RPS3", "RUNX1", "RUNX3", "SAMSN1", "SART1", "SASH3", "SCRIB", "SDC4", "SFRP1", "SFTPD", "SH3KBP1", "SH3RF1", "SHH", "SHLD1", "SHLD2", "SHLD3", "SIRPA", "SIRPB1", "SIRPG", "SIT1", "SLAMF8", "SLC15A4", "SLC4A2", "SLC7A1", "SMAD7", "SMARCA2", "SMARCA4", "SMARCB1", "SMARCC1", "SMARCC2", "SMARCD1", "SMARCD2", "SMARCD3", "SMARCE1", "SOCS1", "SOCS5", "SOD1", "SOX11", "SOX12", "SOX4", "SPI1", "SPINK5", "SPN", "SRC", "SUPT6H", "SYK", "TARM1", "TBX21", "TCF7", "TESPA1", "TFRC", "TGFB1", "TGFBR2", "THEMIS2", "THY1", "TIGIT", "TIRAP", "TLR9", "TMEM131L", "TMIGD2", "TNFAIP3", "TNFAIP8L2", "TNFRSF13B", "TNFRSF13C", "TNFRSF14", "TNFRSF1B", "TNFRSF21", "TNFRSF4", "TNFSF11", "TNFSF13", "TNFSF13B", "TNFSF14", "TNFSF18", "TNFSF4", "TNFSF8", "TNFSF9", "TNIP2", "TOX", "TP53BP1", "TWSG1", "TYK2", "TYROBP", "UFL1", "VAV1", "VAV3", "VCAM1", "VNN1", "VSIG4", "VSIR", "VTCN1", "XBP1", "XCL1", "XRCC6", "YES1", "ZAP70", "ZBTB1", "ZBTB7B", "ZC3H12A", "ZC3H8", "ZFP36L1", "ZFP36L2", "ZMIZ1", "ZNF335", "ZNF683", "ZP3", "ZP4" ] }, "position": { "x": 2390.2030171795154, "y": 570.7285489709201, "id": "0270ca63-6518-40e4-a878-0eac4795f5b1", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "ac098499-46ba-4296-a03f-9b11ac60dfaf", "name": [ "GLYCOGENOSIS, TYPE IA. VON GIERKE DISEASE%SMPDB%SMP0000581" ], "description": [ "Glycogenosis, Type IA. Von Gierke Disease" ], "pvalue": 0.0017, "gs_type": null, "gs_size": 22, "padj": 0.0233, "mcode_cluster_id": "Cluster 8", "NES": 1.8347, "genes": [ "ALDOA", "BPGM", "ENO1", "FBP1", "G6PC1", "GALM", "GAPDH", "GPI", "HK2", "LDHA", "MDH2", "MPC1", "PANK1", "PC", "PCK1", "PGAM1", "PGAM2", "PGM1", "SLC25A11", "SLC2A2", "SLC37A4", "TPI1" ] }, "position": { "x": 3897.3763771953545, "y": 1244.3721087634935, "id": "ac098499-46ba-4296-a03f-9b11ac60dfaf" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "14401d8b-b7f0-4300-a60a-80084c2e1e78", "name": [ "RESPONSE TO TYPE I INTERFERON%GOBP%GO:0034340" ], "description": [ "response to type I interferon" ], "pvalue": 4.4238e-7, "gs_type": null, "gs_size": 47, "padj": 0, "mcode_cluster_id": "Cluster 18", "NES": -2.2126, "genes": [ "AZI2", "CH25H", "HDAC4", "IFI27", "IFIT1", "IFITM1", "IFITM2", "IFITM3", "IFNA10", "IFNA13", "IFNA14", "IFNA16", "IFNA17", "IFNA2", "IFNA21", "IFNA4", "IFNA5", "IFNA6", "IFNA7", "IFNA8", "IFNAR1", "IFNAR2", "IFNB1", "IFNE", "IFNK", "IFNW1", "IKBKE", "IRAK1", "ISG15", "JAK1", "MAVS", "MX1", "MYD88", "OAS2", "SETD2", "SHFL", "SHMT2", "SMPD1", "SP100", "STAT1", "STAT2", "TANK", "TBK1", "TBKBP1", "TRAF3", "TRIM56", "TYK2" ] }, "position": { "x": 290.1548314069712, "y": 1534.6932040017446, "id": "14401d8b-b7f0-4300-a60a-80084c2e1e78", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "604873a2-e2c8-43f7-9c84-95a5397f7479", "name": [ "DDX58 IFIH1-MEDIATED INDUCTION OF INTERFERON-ALPHA BETA%REACTOME DATABASE ID RELEASE 81%168928" ], "description": [ "DDX58 IFIH1-mediated induction of interferon-alpha beta" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 80, "padj": 0.0022, "mcode_cluster_id": null, "NES": -1.8503, "genes": [ "AGER", "APP", "ATG12", "ATG5", "CASP10", "CASP8", "CHUK", "CREBBP", "CYLD", "DHX58", "EP300", "FADD", "HERC5", "HMGB1", "HSP90AA1", "HSP90AB1", "IFIH1", "IFNA10", "IFNA13", "IFNA14", "IFNA16", "IFNA17", "IFNA2", "IFNA21", "IFNA4", "IFNA5", "IFNA6", "IFNA7", "IFNA8", "IFNB1", "IKBKB", "IKBKE", "IKBKG", "IRF3", "IRF7", "ISG15", "ITCH", "MAP3K1", "MAVS", "NFKB1", "NFKB2", "NFKBIA", "NFKBIB", "NKIRAS1", "NKIRAS2", "NLRC5", "NLRX1", "OTUD5", "PCBP2", "PIN1", "RELA", "RIGI", "RIPK1", "RNF125", "RNF135", "RNF216", "RPS27A", "S100A12", "S100B", "SAA1", "SIKE1", "TANK", "TAX1BP1", "TBK1", "TKFC", "TNFAIP3", "TOMM70", "TRAF3", "TRAF6", "TRIM25", "TRIM4", "UBA52", "UBA7", "UBB", "UBC", "UBE2D1", "UBE2D2", "UBE2D3", "UBE2K", "UBE2L6" ] }, "position": { "x": 1429.9607170719341, "y": 1859.8794218491862, "id": "604873a2-e2c8-43f7-9c84-95a5397f7479" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "a74c31a9-d0fb-4839-a834-ed09dc2c1641", "name": [ "VIRAL PROTEIN PROCESSING%GOBP%GO:0019082" ], "description": [ "viral protein processing" ], "pvalue": 0.0043, "gs_type": null, "gs_size": 31, "padj": 0.0454, "mcode_cluster_id": null, "NES": -1.6809, "genes": [ "CANX", "CSNK1A1", "EDEM2", "FURIN", "FUT8", "GALNT1", "GSK3A", "GSK3B", "MAN1B1", "MAN2A1", "MGAT1", "MGAT2", "MGAT4A", "MGAT4B", "MGAT4C", "MGAT5", "MOGS", "PARP10", "PARP16", "PARP9", "PRMT1", "SPCS1", "SPCS3", "ST3GAL1", "ST3GAL2", "ST3GAL3", "ST3GAL4", "ST6GAL1", "ST6GALNAC2", "ST6GALNAC3", "ST6GALNAC4" ] }, "position": { "x": 2578.5, "y": 2195.9446642487483, "id": "a74c31a9-d0fb-4839-a834-ed09dc2c1641" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "261c675d-a797-4a9c-ad0c-6332c92104f6", "name": [ "NEURONAL SYSTEM%REACTOME DATABASE ID RELEASE 81%112316" ], "description": [ "Neuronal System" ], "pvalue": 0.0012, "gs_type": null, "gs_size": 383, "padj": 0.019, "mcode_cluster_id": null, "NES": 1.455, "genes": [ "ABAT", "ABCC8", "ABCC9", "ACHE", "ACTN2", "ADCY1", "ADCY2", "ADCY3", "ADCY4", "ADCY5", "ADCY6", "ADCY7", "ADCY8", "ADCY9", "AKAP5", "ALDH2", "ALDH5A1", "AP2A1", "APBA1", "APBA2", "APBA3", "ARHGEF9", "ARL6IP5", "BCHE", "BEGAIN", "CACNA1A", "CACNA1B", "CACNA1E", "CACNA2D1", "CACNA2D2", "CACNA2D3", "CACNB1", "CACNB2", "CACNB3", "CACNB4", "CACNG2", "CACNG3", "CACNG4", "CACNG8", "CALM1", "CAMK1", "CAMK2A", "CAMK2B", "CAMK2D", "CAMK2G", "CAMK4", "CAMKK1", "CAMKK2", "CASK", "CHAT", "CHRNA1", "CHRNA2", "CHRNA3", "CHRNA4", "CHRNA5", "CHRNA6", "CHRNA7", "CHRNA9", "CHRNB2", "CHRNB3", "CHRNB4", "CHRND", "CHRNE", "CHRNG", "COMT", "CPLX1", "DBNL", "DLG1", "DLG2", "DLG3", "DLG4", "DLGAP1", "DLGAP2", "DLGAP3", "DLGAP4", "DNAJC5", "EPB41", "EPB41L1", "EPB41L2", "EPB41L3", "EPB41L5", "FLOT1", "FLOT2", "GABBR1", "GABBR2", "GABRA1", "GABRA2", "GABRA3", "GABRA4", "GABRA5", "GABRA6", "GABRB1", "GABRB2", "GABRB3", "GABRG2", "GABRG3", "GABRQ", "GABRR1", "GABRR2", "GABRR3", "GAD1", "GAD2", "GIT1", "GJA10", "GJC1", "GJD2", "GLRA1", "GLRA2", "GLRA3", "GLRB", "GLS", "GLS2", "GLUL", "GNAI1", "GNAI2", "GNAI3", "GNAL", "GNAT3", "GNB1", "GNB2", "GNB3", "GNB4", "GNB5", "GNG10", "GNG11", "GNG12", "GNG13", "GNG2", "GNG3", "GNG4", "GNG5", "GNG7", "GNG8", "GNGT1", "GNGT2", "GRIA1", "GRIA2", "GRIA3", "GRIA4", "GRIK1", "GRIK2", "GRIK3", "GRIK4", "GRIK5", "GRIN1", "GRIN2A", "GRIN2B", "GRIN2C", "GRIN2D", "GRIN3A", "GRIN3B", "GRIP1", "GRIP2", "GRM1", "GRM5", "HCN1", "HCN2", "HCN3", "HCN4", "HOMER1", "HOMER2", "HOMER3", "HRAS", "HSPA8", "HTR3A", "HTR3B", "HTR3C", "HTR3D", "HTR3E", "IL1RAPL1", "IL1RAPL2", "KCNA1", "KCNA10", "KCNA2", "KCNA3", "KCNA4", "KCNA5", "KCNA6", "KCNA7", "KCNAB1", "KCNAB2", "KCNAB3", "KCNB1", "KCNB2", "KCNC1", "KCNC2", "KCNC3", "KCNC4", "KCND1", "KCND2", "KCND3", "KCNF1", "KCNG1", "KCNG2", "KCNG3", "KCNG4", "KCNH1", "KCNH2", "KCNH3", "KCNH4", "KCNH5", "KCNH6", "KCNH7", "KCNH8", "KCNJ1", "KCNJ10", "KCNJ11", "KCNJ12", "KCNJ14", "KCNJ15", "KCNJ16", "KCNJ2", "KCNJ3", "KCNJ4", "KCNJ5", "KCNJ6", "KCNJ8", "KCNJ9", "KCNK1", "KCNK10", "KCNK13", "KCNK16", "KCNK17", "KCNK18", "KCNK2", "KCNK3", "KCNK4", "KCNK6", "KCNK7", "KCNK9", "KCNMA1", "KCNMB1", "KCNMB2", "KCNMB3", "KCNMB4", "KCNN1", "KCNN2", "KCNN3", "KCNN4", "KCNQ1", "KCNQ2", "KCNQ3", "KCNQ4", "KCNQ5", "KCNS1", "KCNS2", "KCNS3", "KCNV1", "KCNV2", "KIF17", "KPNA2", "LIN7A", "LIN7B", "LIN7C", "LRFN1", "LRFN2", "LRFN3", "LRFN4", "LRRC4B", "LRRC7", "LRRTM1", "LRRTM2", "LRRTM3", "LRRTM4", "MAOA", "MAPK1", "MAPK3", "MDM2", "MYO6", "NAAA", "NBEA", "NCALD", "NEFL", "NLGN1", "NLGN2", "NLGN3", "NLGN4X", "NLGN4Y", "NPTN", "NRAS", "NRG1", "NRGN", "NRXN1", "NRXN2", "NRXN3", "NSF", "NTRK3", "PANX1", "PANX2", "PDLIM5", "PDPK1", "PICK1", "PLCB1", "PLCB2", "PLCB3", "PPFIA1", "PPFIA2", "PPFIA3", "PPFIA4", "PPFIBP1", "PPFIBP2", "PPM1E", "PPM1F", "PRKAA1", "PRKAA2", "PRKAB1", "PRKAB2", "PRKACA", "PRKACB", "PRKACG", "PRKAG1", "PRKAG2", "PRKAG3", "PRKAR1A", "PRKAR1B", "PRKAR2A", "PRKAR2B", "PRKCA", "PRKCB", "PRKCG", "PRKX", "PTPRD", "PTPRF", "PTPRS", "RAB3A", "RAC1", "RASGRF1", "RASGRF2", "RIMS1", "RPS6KA1", "RPS6KA2", "RPS6KA3", "RPS6KA6", "RTN3", "SHANK1", "SHANK2", "SHANK3", "SHARPIN", "SIPA1L1", "SLC17A7", "SLC18A2", "SLC18A3", "SLC1A1", "SLC1A2", "SLC1A3", "SLC1A6", "SLC1A7", "SLC22A1", "SLC22A2", "SLC32A1", "SLC38A1", "SLC38A2", "SLC5A7", "SLC6A1", "SLC6A11", "SLC6A12", "SLC6A13", "SLC6A3", "SLC6A4", "SLITRK1", "SLITRK2", "SLITRK3", "SLITRK4", "SLITRK5", "SLITRK6", "SNAP25", "SRC", "STX1A", "STXBP1", "SYN1", "SYN2", "SYN3", "SYT1", "SYT10", "SYT12", "SYT2", "SYT7", "SYT9", "TOMT", "TSPAN7", "TSPOAP1", "UNC13B", "VAMP2" ] }, "position": { "x": 3841.539072651805, "y": 2272.9446642487483, "id": "261c675d-a797-4a9c-ad0c-6332c92104f6" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "debad6f1-5cfe-4c8b-bdd0-49966c0ff02c", "name": [ "NUCLEAR DNA REPLICATION%GOBP%GO:0033260" ], "description": [ "nuclear DNA replication" ], "pvalue": 0.0029, "gs_type": null, "gs_size": 24, "padj": 0.0349, "mcode_cluster_id": null, "NES": -1.7686, "genes": [ "BLM", "BRCA2", "CDC45", "CDT1", "DNA2", "DONSON", "FEN1", "GINS1", "GINS3", "GMNN", "LIG1", "MCM2", "MCM3", "MCM4", "MCM6", "PCNA", "POLA1", "RECQL5", "RPA4", "RTEL1", "TK1", "UPF1", "WRN", "ZNF830" ] }, "position": { "x": 1071.2749562991075, "y": 1001.9339615004436, "id": "debad6f1-5cfe-4c8b-bdd0-49966c0ff02c" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "beb79ccf-a196-43d0-86ff-773092ba3490", "name": [ "MITOCHONDRIAL DNA DEPLETION SYNDROME-3%SMPDB%SMP0000536" ], "description": [ "Mitochondrial DNA Depletion Syndrome-3" ], "pvalue": 0.0025, "gs_type": null, "gs_size": 37, "padj": 0.031, "mcode_cluster_id": "Cluster 3", "NES": -1.6821, "genes": [ "ADA", "ADCY2", "ADSL", "ADSS2", "AK1", "AMPD1", "APRT", "ATAD1", "ATIC", "DGUOK", "ENTPD5", "ENTPD8", "GART", "GDA", "GMPR", "GMPS", "GUCY1A2", "GUCY1B1", "GUK1", "HPRT1", "IMPDH1", "ITPA", "NME6", "NT5C2", "NUDT2", "NUDT5", "PAICS", "PDE10A", "PDE4D", "PFAS", "PNP", "PPAT", "PRPS1L1", "RRM1", "RRM2", "TXN", "XDH" ] }, "position": { "x": 1489.3214188398863, "y": 1339.8572698402184, "id": "beb79ccf-a196-43d0-86ff-773092ba3490", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "b6fea667-92eb-454f-a567-f6b38784bd26", "name": [ "THE ROLE OF GTSE1 IN G2 M PROGRESSION AFTER G2 CHECKPOINT%REACTOME DATABASE ID RELEASE 81%8852276" ], "description": [ "The role of GTSE1 in G2 M progression after G2 checkpoint" ], "pvalue": 0.0000017439, "gs_type": null, "gs_size": 60, "padj": 0.0001, "mcode_cluster_id": "Cluster 1", "NES": -2.0835, "genes": [ "CCNB1", "CCNB2", "CDK1", "CDKN1A", "FKBPL", "GTSE1", "HSP90AA1", "HSP90AB1", "MAPRE1", "PLK1", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RPS27A", "SEM1", "TP53", "UBA52", "UBB", "UBC" ] }, "position": { "x": 425.4757396252356, "y": 783.7479588806221, "id": "b6fea667-92eb-454f-a567-f6b38784bd26", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "afee7c4b-cffe-4c3d-975e-5f8733564635", "name": [ "PLEURAL MESOTHELIOMA%WIKIPATHWAYS_20240410%WP5087%HOMO SAPIENS" ], "description": [ "Pleural mesothelioma" ], "pvalue": 0.0038, "gs_type": null, "gs_size": 369, "padj": 0.0417, "mcode_cluster_id": null, "NES": -1.3907, "genes": [ "ACTA1", "ACTA2", "ACTG1", "ACTG2", "AJUBA", "AKT1S1", "AKT3", "AMOT", "ANGPT1", "ANGPT2", "ANGPT4", "AREG", "ASXL1", "ATF2", "ATF3", "ATM", "AXIN1", "BAG2", "BAK1", "BAP1", "BARD1", "BAX", "BBC3", "BCL2", "BDNF", "BMI1", "BRCA1", "BTC", "CCL2", "CCL4", "CCL5", "CCND1", "CCND2", "CCND3", "CCNE1", "CD44", "CD47", "CDH10", "CDH11", "CDH12", "CDH15", "CDH16", "CDH17", "CDH18", "CDH19", "CDH2", "CDH24", "CDH4", "CDH6", "CDH8", "CDH9", "CDK2", "CDK4", "CDK7", "CDKN1A", "CDKN2A", "CER1", "CHD8", "CIT", "COL4A1", "COL4A2", "COL4A3", "COL4A4", "COL4A5", "COL4A6", "CREB1", "CSF1", "CSF1R", "CSF2", "CSF3", "CSNK1A1", "CSNK1A1L", "CSNK1E", "CSNK2A1", "CSNK2A2", "CSNK2A3", "CSNK2B", "CTBP1", "CTBP2", "CTGF", "CTHRC1", "CTNNA1", "CTNNA2", "CTNNA3", "CTNNB1", "CXCL1", "CXCL12", "CXCL5", "CXXC4", "CYCS", "DDIT3", "DEPTOR", "DKFZp451J023", "DKFZp451O0517", "DKFZp586H0919", "DKFZp666O0110", "DKFZp686A1782", "DKFZp781N011", "DKK1", "DKK2", "DKK4", "DSC3", "DVL1", "DVL2", "DVL3", "EED", "EFNA1", "EFNA2", "EFNA3", "EFNA4", "EFNA5", "EGF", "EGFR", "EIF4B", "EIF4EBP1", "EIF4G1", "EPHA2", "EZH2", "FABP4", "FGF13", "FGF14", "FGF1A", "FGF2", "FGF22", "FGF23", "FGF4A", "FGF4B", "FGF5A", "FGF5B", "FGF5C", "FGF6A", "FGF6B", "FGF7A", "FGF7B", "FGF8", "FGF8A", "FGF8C", "FGFR1", "FGFR2", "FGFR3", "FGFR4", "FLT1", "FLT3", "FLT3LG", "FLT4", "FOSL1", "FOXM1", "FOXO1", "FRAT1", "FRAT2", "FZD1", "FZD10", "FZD2", "FZD3", "FZD5", "FZD7", "FZD8", "FZD9", "GABPA", "GRB2", "GSK3B", "HBEGF", "HCFC1", "HEL-S-1", "HEL-S-31", "HGF", "HIF1A", "HMGB1", "HMGN1", "HRAS", "IDO1", "IGF1", "IGF1R", "IGF2", "IL10", "IL1B", "IL34", "IL6", "INS", "INSR", "ITGA1", "ITGA2", "ITGA4", "ITGA6", "ITGAV", "ITGB1", "ITGB3", "ITGB4", "JAK1", "JUN", "KDR", "KIF23", "KIT", "KITLG", "KMT2C", "KREMEN1", "LAMA1", "LAMA3", "LAMA4", "LAMA5", "LAMB1", "LAMB2", "LAMB3", "LAMC1", "LAMC2", "LATS1", "LATS2", "LGALS9", "LIMD1", "LIN28B", "LRP5", "LRP6", "MAD1L1", "MAD2L1", "MAP2K1", "MAP2K2", "MAP2K3", "MAP2K4", "MAP2K5", "MAP2K6", "MAP3K1", "MAP3K10", "MAP3K11", "MAP3K2", "MAP3K5", "MAP3K6", "MAP4K1", "MAP4K2", "MAPK1", "MAPK10", "MAPK14", "MAPK3", "MAPK7", "MAPK8", "MAPK9", "MAPKAPK2", "MAX", "MCL1", "MCU", "MDK", "MDM2", "MDM4", "MEF2D", "MET", "MINK1", "MLST8", "MMP14", "MMP2", "MMP3", "MMP9", "MOB1A", "MOBKL1A", "MTOR", "MYC", "NF2", "NFKB1", "NGF", "NGFR", "NLRP3", "NOTUM", "NTF3", "NTF4", "NTRK1", "NTRK2", "OGT", "PAK1", "PAK4", "PAK6", "PDGFA", "PDGFC", "PDGFD", "PDGFRA", "PIGF", "PIK3CD", "PLCB4", "PORCN", "PPARGC1A", "PRB1", "PRB2", "PRKAA1", "PRKAA2", "PRKAB1", "PRKAB2", "PRKAG1", "PRKAG2", "PRKAG3", "PRSS23", "PS1TP5BP1", "PTEN", "RAF1", "RASSF1", "RASSF2", "RASSF3", "RASSF4", "RASSF6", "RASSF7", "RB1CC1", "RBBP4", "RHEB", "RNF2", "ROR1", "ROR2", "RPS6", "RPS6KA1", "RPS6KA3", "RPS6KA5", "RPS6KB1", "RPS6KB2", "RYK", "SELE", "SENP2", "SETD2", "SETD5", "SETDB1", "SFRP1", "SFRP4", "SFRP5", "SHC1", "SLC3A2", "SLC7A5", "SOS1", "SOST", "SOX17", "SP1", "SPARC", "SRC", "STAT1", "STK38L", "SUZ12", "TCF7L1", "TCF7L2", "TEAD2", "TEAD3", "TEAD4", "TERT", "TGFA", "TGFB1", "TNIK", "TNNT1", "TRAF2", "TSC1", "TSC2", "TTI1", "UHRF1", "ULK1", "ULK2", "VEGFA", "VEGFB", "VEGFC", "VEGFD", "VGLL4", "WDR5", "WIF1", "WNT1", "WNT10A", "WNT10B", "WNT11", "WNT16", "WNT2B", "WNT3", "WNT3A", "WNT4", "WNT5B", "WNT7A", "WNT7B", "WWC1", "WWTR1", "YY1", "raptor" ] }, "position": { "x": 653.5, "y": 2195.9446642487483, "id": "afee7c4b-cffe-4c3d-975e-5f8733564635" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "581ea671-bfdc-4c0a-b5e7-c11440d05a47", "name": [ "ANTIMICROBIAL HUMORAL IMMUNE RESPONSE MEDIATED BY ANTIMICROBIAL PEPTIDE%GOBP%GO:0061844" ], "description": [ "antimicrobial humoral immune response mediated by antimicrobial peptide" ], "pvalue": 0.0011, "gs_type": null, "gs_size": 94, "padj": 0.0178, "mcode_cluster_id": null, "NES": -1.7905, "genes": [ "ANG", "BPIFA1", "CAMP", "CCL1", "CCL11", "CCL13", "CCL14", "CCL15", "CCL16", "CCL17", "CCL18", "CCL19", "CCL2", "CCL20", "CCL21", "CCL22", "CCL23", "CCL24", "CCL25", "CCL26", "CCL3", "CCL3L3", "CCL4", "CCL4L2", "CCL5", "CCL7", "CCL8", "CX3CL1", "CXCL1", "CXCL10", "CXCL11", "CXCL13", "CXCL14", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "DEFA1B", "DEFA3", "DEFA4", "DEFA5", "DEFA6", "DEFB1", "DEFB118", "DEFB126", "DEFB127", "DEFB4B", "ELANE", "F2", "FAM3A", "FAU", "GALP", "GAPDH", "GNLY", "H2BC11", "H2BC12", "H2BC12L", "H2BC21", "H2BC8", "HMGN2", "HRG", "KRT6A", "LEAP2", "LTF", "MUC7", "PF4", "PF4V1", "PGLYRP1", "PGLYRP3", "PGLYRP4", "PLA2G1B", "PPBP", "REG1A", "REG1B", "REG3A", "REG3G", "RNASE3", "RNASE6", "RNASE7", "ROMO1", "RPL30", "RPL39", "RPS19", "S100A12", "S100A7", "S100A9", "SEMG1", "SPAG11A", "SPAG11B", "TSLP", "XCL1", "XCL2" ] }, "position": { "x": 3098.552649090908, "y": 519.9846367498322, "id": "581ea671-bfdc-4c0a-b5e7-c11440d05a47" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "2d3d7dae-3699-4787-9e13-578f174297f8", "name": [ "DNA-TEMPLATED DNA REPLICATION%GOBP%GO:0006261" ], "description": [ "DNA-templated DNA replication" ], "pvalue": 0.0004, "gs_type": null, "gs_size": 127, "padj": 0.0081, "mcode_cluster_id": "Cluster 32", "NES": -1.659, "genes": [ "ASF1A", "ATR", "ATRX", "BARD1", "BAZ1A", "BLM", "BOD1L1", "BRCA1", "BRCA2", "CAMSAP3", "CARM1", "CDC34", "CDC45", "CDK2AP1", "CDK9", "CDT1", "CENPS", "CENPX", "CHRAC1", "DDX11", "DNA2", "DONSON", "EME1", "EME2", "ETAA1", "EXD2", "EXO1", "FAM111A", "FANCM", "FBH1", "FEN1", "GEN1", "GINS1", "GINS2", "GINS3", "GINS4", "GMNN", "HELB", "HMGA1", "KHDC3L", "LIG1", "LIG3", "LRWD1", "MCM10", "MCM2", "MCM3", "MCM4", "MCM5", "MCM6", "MCM7", "MCM8", "MCM9", "MCMBP", "MGME1", "MMS22L", "MRE11", "MUS81", "NBN", "NOC3L", "NUCKS1", "OOEP", "ORC1", "ORC2", "ORC3", "ORC4", "ORC5", "ORC6", "PARP1", "PCNA", "PNKP", "POLA1", "POLA2", "POLB", "POLD1", "POLD2", "POLD3", "POLD4", "POLE", "POLE2", "POLE3", "POLE4", "POLG", "POLG2", "POLQ", "PRIM1", "PRIM2", "PRIMPOL", "PURA", "RAD50", "RAD51", "RBBP8", "RECQL", "RECQL4", "RECQL5", "RFC1", "RFC2", "RFC3", "RFC4", "RFC5", "RFWD3", "RPA1", "RPA4", "RRM1", "RRM2B", "RTEL1", "RTF2", "SAMHD1", "SETMAR", "SLFN11", "SMARCAL1", "SSBP1", "TEFM", "TIMELESS", "TIPIN", "TK1", "TONSL", "TOPBP1", "TRAIP", "TWNK", "UPF1", "WDHD1", "WDR18", "WRN", "WRNIP1", "ZNF830", "ZPR1", "ZRANB3" ] }, "position": { "x": 963.5720636142206, "y": 1848.9074057705454, "id": "2d3d7dae-3699-4787-9e13-578f174297f8", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "161e0c49-367f-4271-9b51-73943db8bfe3", "name": [ "PROTEIN SYNTHESIS: LYSINE%SMPDB%SMP0111874" ], "description": [ "Protein Synthesis: Lysine" ], "pvalue": 2.5023e-17, "gs_type": null, "gs_size": 80, "padj": 4.5488e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.79, "genes": [ "FAU", "KARS1", "RACK1", "RPL10", "RPL10A", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "UBA52" ] }, "position": { "x": 783.1549273083001, "y": 618.882003234298, "id": "161e0c49-367f-4271-9b51-73943db8bfe3", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "6189859e-374c-49ef-b16b-48eea47da1f1", "name": [ "GLUCONEOGENESIS%PATHWHIZ%PW000152" ], "description": [ "Gluconeogenesis" ], "pvalue": 0.0017, "gs_type": null, "gs_size": 22, "padj": 0.0233, "mcode_cluster_id": "Cluster 8", "NES": 1.8347, "genes": [ "ALDOA", "BPGM", "ENO1", "FBP1", "G6PC1", "GALM", "GAPDH", "GPI", "HK2", "LDHA", "MDH2", "MPC1", "PANK1", "PC", "PCK1", "PGAM1", "PGAM2", "PGM1", "SLC25A11", "SLC2A2", "SLC37A4", "TPI1" ] }, "position": { "x": 3918.582445605297, "y": 1163.3231121663778, "id": "6189859e-374c-49ef-b16b-48eea47da1f1" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "b1c57765-32d7-4fa9-a14a-47c613afba3e", "name": [ "NEGATIVE REGULATION OF AXONOGENESIS%GOBP%GO:0050771" ], "description": [ "negative regulation of axonogenesis" ], "pvalue": 0.0033, "gs_type": null, "gs_size": 24, "padj": 0.0383, "mcode_cluster_id": null, "NES": 1.7812, "genes": [ "CDKL3", "DCC", "DIP2B", "EFNB3", "FGF13", "GDI1", "KIAA0319", "LRP4", "MAG", "MAP2", "MCF2", "MT3", "PTEN", "PTPRS", "RNF6", "RTN4", "RTN4R", "RUFY3", "SEMA3G", "SEMA5A", "THY1", "TRIM46", "ULK1", "ULK2" ] }, "position": { "x": 3533.539072651805, "y": 2195.9446642487483, "id": "b1c57765-32d7-4fa9-a14a-47c613afba3e" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "name": [ "REGULATION OF APC C ACTIVATORS BETWEEN G1 S AND EARLY ANAPHASE%REACTOME%R-HSA-176408.6" ], "description": [ "Regulation of APC C activators between G1 S and early anaphase" ], "pvalue": 0.0000013676, "gs_type": null, "gs_size": 81, "padj": 0.0001, "mcode_cluster_id": "Cluster 1", "NES": -2.0728, "genes": [ "ANAPC1", "ANAPC10", "ANAPC11", "ANAPC15", "ANAPC16", "ANAPC2", "ANAPC4", "ANAPC5", "ANAPC7", "BTRC", "BUB1B", "BUB3", "CCNA1", "CCNA2", "CCNB1", "CDC16", "CDC20", "CDC23", "CDC26", "CDC27", "CDK1", "CDK2", "CUL1", "FBXO5", "FZR1", "MAD2L1", "PLK1", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RPS27A", "SEM1", "SKP1", "UBA52", "UBB", "UBC", "UBE2C", "UBE2D1", "UBE2E1", "UBE2S" ] }, "position": { "x": 462.88204278441174, "y": 848.2737925682447, "id": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "218e964f-2842-43f5-825a-917591457798", "name": [ "PURINE METABOLISM%PATHWHIZ%PW000052" ], "description": [ "Purine Metabolism" ], "pvalue": 0.0025, "gs_type": null, "gs_size": 37, "padj": 0.031, "mcode_cluster_id": "Cluster 3", "NES": -1.6821, "genes": [ "ADA", "ADCY2", "ADSL", "ADSS2", "AK1", "AMPD1", "APRT", "ATAD1", "ATIC", "DGUOK", "ENTPD5", "ENTPD8", "GART", "GDA", "GMPR", "GMPS", "GUCY1A2", "GUCY1B1", "GUK1", "HPRT1", "IMPDH1", "ITPA", "NME6", "NT5C2", "NUDT2", "NUDT5", "PAICS", "PDE10A", "PDE4D", "PFAS", "PNP", "PPAT", "PRPS1L1", "RRM1", "RRM2", "TXN", "XDH" ] }, "position": { "x": 1543.0475381584793, "y": 1401.6032094683483, "id": "218e964f-2842-43f5-825a-917591457798", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "name": [ "PROTEIN SYNTHESIS: TRYPTOPHAN%PATHWHIZ%PW120526" ], "description": [ "Protein Synthesis: Tryptophan" ], "pvalue": 1.1021e-15, "gs_type": null, "gs_size": 80, "padj": 1.3356e-13, "mcode_cluster_id": "Cluster 2", "NES": 2.7148, "genes": [ "FAU", "RACK1", "RPL10", "RPL10A", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "UBA52", "WARS1" ] }, "position": { "x": 954.8350799756266, "y": 663.7204989119471, "id": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "b3558ad6-a679-4992-9cd8-2db2c4b9e773", "name": [ "POST-TRANSLATIONAL PROTEIN PHOSPHORYLATION%REACTOME%R-HSA-8957275.2" ], "description": [ "Post-translational protein phosphorylation" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 107, "padj": 0.0023, "mcode_cluster_id": null, "NES": -1.8172, "genes": [ "ADAM10", "AFP", "AHSG", "ALB", "AMBN", "AMELX", "AMTN", "ANO8", "APLP2", "APOA1", "APOA2", "APOA5", "APOB", "APOE", "APOL1", "APP", "BMP15", "BMP4", "BPIFB2", "C3", "C4A", "CALU", "CCN1", "CDH2", "CHGB", "CHRDL1", "CKAP4", "CP", "CSF1", "CST3", "DMP1", "DNAJC3", "ENAM", "EVA1A", "F5", "FAM20A", "FAM20C", "FBN1", "FGA", "FGF23", "FGG", "FN1", "FSTL1", "FSTL3", "FUCA2", "GAS6", "GOLM1", "GPC3", "HRC", "HSP90B1", "IGFBP1", "IGFBP3", "IGFBP4", "IGFBP5", "IGFBP7", "IL6", "ITIH2", "KNG1", "KTN1", "LAMB1", "LAMB2", "LAMC1", "LGALS1", "LTBP1", "MATN3", "MBTPS1", "MELTF", "MEN1", "MEPE", "MFGE8", "MGAT4A", "MIA3", "MSLN", "MXRA8", "NOTUM", "NUCB1", "P4HB", "PCSK9", "PDIA6", "PENK", "PNPLA2", "PRKCSH", "PROC", "PRSS23", "QSOX1", "RCN1", "SCG2", "SCG3", "SDC2", "SERPINA1", "SERPINA10", "SERPINC1", "SERPIND1", "SHISA5", "SPARCL1", "SPP1", "SPP2", "STC2", "TF", "TGOLN2", "TIMP1", "TMEM132A", "TNC", "VCAN", "VGF", "VWA1", "WFS1" ] }, "position": { "x": 479.84640329131685, "y": 1991.0653684706153, "id": "b3558ad6-a679-4992-9cd8-2db2c4b9e773" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "name": [ "AUTODEGRADATION OF THE E3 UBIQUITIN LIGASE COP1%REACTOME DATABASE ID RELEASE 81%349425" ], "description": [ "Autodegradation of the E3 ubiquitin ligase COP1" ], "pvalue": 0.0000061723, "gs_type": null, "gs_size": 52, "padj": 0.0002, "mcode_cluster_id": "Cluster 1", "NES": -2.0766, "genes": [ "ATM", "COP1", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RPS27A", "SEM1", "TP53", "UBA52", "UBB", "UBC" ] }, "position": { "x": 423.2904526539449, "y": 793.2238390652218, "id": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "412de8da-b84e-4844-a508-31c916aa1b10", "name": [ "PROGRAMMED CELL DEATH%GOBP%GO:0012501" ], "description": [ "programmed cell death" ], "pvalue": 0.0036, "gs_type": null, "gs_size": 503, "padj": 0.041, "mcode_cluster_id": null, "NES": -1.3425, "genes": [ "ABL1", "ACAA2", "ACIN1", "ACVR1B", "ACVR1C", "ADAM15", "ADORA1", "ADORA2A", "ADRA1A", "AEN", "AHCYL1", "AHR", "AIFM1", "AIFM2", "AIFM3", "AIM2", "AKAP1", "AKT1", "ALKBH7", "ALOX15B", "ANXA6", "APAF1", "APIP", "APP", "ARHGEF6", "ARL6IP5", "ATCAY", "ATF2", "ATF4", "ATG3", "ATG9A", "ATG9B", "ATM", "ATN1", "ATP2A1", "ATP2A3", "BAD", "BAG3", "BAG6", "BAK1", "BAX", "BBC3", "BCL10", "BCL2", "BCL2A1", "BCL2L1", "BCL2L10", "BCL2L11", "BCL2L13", "BCL2L14", "BCL2L2", "BCL3", "BCLAF1", "BID", "BIK", "BLCAP", "BLOC1S2", "BMF", "BMP4", "BMPR2", "BNIP1", "BNIP2", "BNIP3", "BNIP3L", "BNIPL", "BOK", "BRAT1", "BRCA1", "BRSK2", "BTK", "C19orf12", "CAMK2A", "CAPN10", "CAPN3", "CASP1", "CASP10", "CASP12", "CASP14", "CASP2", "CASP3", "CASP4", "CASP5", "CASP6", "CASP7", "CASP8", "CASP8AP2", "CASP9", "CAV1", "CCAR2", "CD14", "CD2", "CD24", "CD27", "CD38", "CD70", "CDIP1", "CDK11A", "CDK11B", "CDK5", "CDK5RAP3", "CDKN1A", "CDKN1B", "CDKN2D", "CEBPB", "CECR2", "CERS3", "CFLAR", "CGB7", "CGB8", "CHAC1", "CHEK1", "CHEK2", "CIB1", "CIDEB", "CIDEC", "CIT", "CLC", "CLU", "COL4A3", "COLEC11", "CRADD", "CRIP1", "CSRNP1", "CTSL", "CUL1", "CUL2", "CUL3", "CUL4A", "CUL5", "CXCR4", "CYCS", "CYFIP2", "CYLD", "CYP1B1", "DAB2IP", "DAP", "DAP3", "DAPK1", "DAPK2", "DAPK3", "DAPL1", "DAXX", "DDIT3", "DDIT4", "DDX3X", "DDX41", "DDX47", "DDX5", "DEDD", "DEDD2", "DELE1", "DFFB", "DHX9", "DIABLO", "DICER1", "DLC1", "DMPK", "DNAJC10", "DNASE1L3", "DNASE2", "DNASE2B", "DNM1L", "DPF1", "DPF2", "DPP9", "DUX4", "DYRK2", "E2F1", "EBF4", "EFNA5", "EGLN3", "ELANE", "ELMO1", "EMP1", "EMP2", "EMP3", "ENDOG", "EP300", "EPHA2", "ERBB3", "ERBB4", "ERCC2", "ERCC3", "ERN1", "ERN2", "ERO1A", "ESPL1", "EXOG", "FADD", "FAM162A", "FAP", "FAS", "FASLG", "FASTK", "FASTKD2", "FEM1B", "FGFR3", "FHIT", "FIS1", "FNIP2", "FOXL2", "FOXO1", "FXR1", "FZD9", "G0S2", "GABARAP", "GADD45A", "GAPDH", "GDF6", "GGCT", "GLI3", "GLRX2", "GML", "GPER1", "GSDMA", "GSDMB", "GSDMC", "GSDMD", "GSDME", "GSK3A", "GSK3B", "GSKIP", "GSN", "GZMA", "GZMB", "GZMH", "GZMM", "HCAR2", "HIC1", "HINT1", "HIP1", "HIPK1", "HIPK2", "HK2", "HSPD1", "HTRA1", "HTRA2", "IAPP", "IER3", "IFI16", "IFI27", "IFI27L1", "IFI27L2", "IFI6", "IFIT2", "IFNA2", "IFNG", "IFT57", "IKBKE", "IKBKG", "IL10", "IL12A", "IL17A", "IL1A", "IL1B", "IL2RA", "IL6", "IL6R", "INHBA", "IPMK", "IRF1", "IRF3", "ITGAV", "ITGB2", "ITPK1", "ITPR1", "JADE1", "JAK2", "JMY", "KLK5", "KREMEN1", "LALBA", "LAMP1", "LGALS12", "LIG4", "LIPK", "LIPM", "LIPN", "LMBR1L", "LOC122513141", "LTA", "MADD", "MAGEH1", "MAGI3", "MAL", "MAP3K10", "MAP3K20", "MAP3K5", "MAP3K7", "MCL1", "MCM2", "MDM2", "MEFV", "MEGF10", "MELK", "MFF", "MLKL", "MLLT11", "MOAP1", "MRPS30", "MSH6", "MTOR", "MTRNR2L5", "MX1", "MYBBP1A", "MYC", "MYD88", "NAE1", "NAIF1", "NAIP", "NCKAP1", "NDUFA13", "NDUFS1", "NGF", "NGFR", "NINJ1", "NKG7", "NLRC4", "NLRP1", "NLRP3", "NLRP9", "NME3", "NOTCH2", "NOX5", "NSG1", "NTRK1", "NUDT2", "OGT", "P2RX4", "P2RX7", "PAEP", "PAK4", "PAK5", "PAK6", "PARP1", "PAWR", "PAX3", "PDCD1", "PDCD10", "PDCD2L", "PDCD6", "PDE3A", "PDK1", "PDK2", "PDPK1", "PGAM5", "PHLDA2", "PHLDA3", "PIDD1", "PIK3CA", "PJVK", "PKM", "PLAGL1", "PLEKHO2", "PLK3", "PLSCR1", "PLSCR3", "PMAIP1", "PML", "PMP22", "POU4F1", "POU4F2", "PPARD", "PPIA", "PPIF", "PPM1F", "PPP1R13B", "PPP1R15A", "PPP2R1B", "PRF1", "PRKCA", "PRKCD", "PRKCE", "PRKDC", "PRODH", "PRUNE2", "PTGIS", "PTH", "PTK2B", "PYCARD", "QRICH1", "RAF1", "RELT", "RFK", "RHOB", "RHOT1", "RHOT2", "RIPK1", "RIPK2", "RIPK3", "RNF130", "RNF152", "RNF186", "RNF41", "ROBO2", "RPS27L", "RRAGC", "RRP8", "RTL10", "RTN4", "RYR2", "SCN2A", "SCRIB", "SELENOK", "SEMA6A", "SENP1", "SEPTIN4", "SFN", "SFRP5", "SGPL1", "SH3GLB1", "SHH", "SIAH1", "SIRT1", "SIVA1", "SIX3", "SLFN12", "SLIT2", "SLIT3", "SMAD3", "SMAD4", "SNW1", "SOD2", "SORT1", "SPG7", "SPI1", "SRGN", "SST", "SSTR3", "ST20", "STK11", "STK24", "STK25", "STK3", "STK4", "STPG1", "TAOK1", "TAOK2", "TBX1", "TCHP", "TFPT", "TGFB1", "TGFB2", "TGFBR2", "THEM4", "TIMM50", "TLR2", "TLR3", "TM2D1", "TMEM109", "TMEM117", "TMEM238L", "TNF", "TNFAIP1", "TNFRSF10A", "TNFRSF10B", "TNFRSF10C", "TNFRSF19", "TNFRSF1A", "TNFRSF1B", "TNFRSF21", "TNFRSF25", "TNFSF12", "TNFSF14", "TOP1", "TOP2A", "TOPORS", "TP53", "TP53AIP1", "TP53BP2", "TP53INP1", "TP63", "TP73", "TRADD", "TRAF2", "TRAF7", "TRAIP", "TREM2", "TRIB3", "TRIM21", "TRPC5", "TRPM7", "TSC2", "UBE4B", "USP28", "VDAC1", "VDAC2", "VPS35", "XKR4", "XKR5", "XKR6", "XKR7", "XKR8", "XKR9", "YARS1", "ZBP1", "ZBTB16", "ZDHHC3", "ZNF385A", "ZNF385B", "ZNF443", "ZNF622", "ZPR1" ] }, "position": { "x": 387.54209740325115, "y": 1981.9975082806777, "id": "412de8da-b84e-4844-a508-31c916aa1b10" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "a71b38d5-6589-4c2c-a24c-7181a1100649", "name": [ "NEGATIVE REGULATION OF LYMPHOCYTE MEDIATED IMMUNITY%GOBP%GO:0002707" ], "description": [ "negative regulation of lymphocyte mediated immunity" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 44, "padj": 0.0018, "mcode_cluster_id": "Cluster 27", "NES": -2.005, "genes": [ "AHR", "ARRB2", "C4BPA", "C4BPB", "CD274", "CD46", "CD80", "CEACAM1", "CLEC12B", "CR1", "CR1L", "CR2", "FCGR2B", "FOXJ1", "FOXP3", "HFE", "HLA-A", "HLA-B", "HLA-E", "HLA-F", "HLA-G", "IFNA2", "IFNB1", "IL4I1", "KIR2DL4", "KLRC1", "KLRD1", "LGALS9", "LILRB1", "LILRB4", "MICA", "NCKAP1L", "PARP3", "PDCD1", "PTPRC", "SERPINB4", "SERPINB9", "SMAD7", "SUSD4", "SVEP1", "TBX21", "TGFB1", "UFL1", "XCL1" ] }, "position": { "x": 2114.5362859625106, "y": 579.9440839690429, "id": "a71b38d5-6589-4c2c-a24c-7181a1100649", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "c9e2f73a-ebca-4b5f-93ca-ff4ea1f622db", "name": [ "REGULATION OF SINGLE STRANDED VIRAL RNA REPLICATION VIA DOUBLE STRANDED DNA INTERMEDIATE%GOBP%GO:0045091" ], "description": [ "regulation of single stranded viral RNA replication via double stranded DNA intermediate" ], "pvalue": 0.0005, "gs_type": null, "gs_size": 18, "padj": 0.0089, "mcode_cluster_id": null, "NES": -1.9062, "genes": [ "AICDA", "APOBEC3A", "APOBEC3B", "APOBEC3C", "APOBEC3D", "APOBEC3F", "APOBEC3G", "APOBEC3H", "CXCL8", "HMGA2", "INPP5K", "MORC2", "MPHOSPH8", "RESF1", "SETDB1", "TASOR", "TOP2A", "TOP2B" ] }, "position": { "x": 1006.1354812902711, "y": 1236.5284173408518, "id": "c9e2f73a-ebca-4b5f-93ca-ff4ea1f622db" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "name": [ "FORMATION OF THE TERNARY COMPLEX, AND SUBSEQUENTLY, THE 43S COMPLEX%REACTOME%R-HSA-72695.4" ], "description": [ "Formation of the ternary complex, and subsequently, the 43S complex" ], "pvalue": 1.7282e-9, "gs_type": null, "gs_size": 52, "padj": 1.3962e-7, "mcode_cluster_id": "Cluster 2", "NES": 2.4629, "genes": [ "EIF1AX", "EIF2S1", "EIF2S2", "EIF2S3", "EIF3A", "EIF3B", "EIF3C", "EIF3D", "EIF3E", "EIF3F", "EIF3G", "EIF3H", "EIF3I", "EIF3J", "EIF3K", "EIF3L", "EIF3M", "FAU", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA" ] }, "position": { "x": 1092.725334896023, "y": 431.2825662288342, "id": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "26a34b5a-7453-430a-9bb8-98e6a9254169", "name": [ "CELLULAR RESPONSE TO DECREASED OXYGEN LEVELS%GOBP%GO:0036294" ], "description": [ "cellular response to decreased oxygen levels" ], "pvalue": 0, "gs_type": null, "gs_size": 78, "padj": 0.0009, "mcode_cluster_id": "Cluster 14", "NES": 1.9059, "genes": [ "ACAA2", "ADAM8", "ADO", "AK4", "ANGPT4", "AQP1", "AQP3", "BAD", "BMP7", "BNIP3", "BNIP3L", "CITED2", "CPEB1", "CPEB2", "CPEB4", "EGLN1", "EGLN2", "EGLN3", "EPAS1", "FABP1", "FAM162A", "FMN2", "GATA6", "HIF1A", "HILPDA", "HIPK2", "HP1BP3", "HYOU1", "KCND2", "LMNA", "MDM2", "MDM4", "MGARP", "MLST8", "MT3", "MTOR", "MYC", "NDNF", "NDRG1", "NFE2L2", "NGB", "NKX3-1", "NOP53", "NOTCH1", "NPEPPS", "OPRD1", "P4HB", "PDK1", "PDK3", "PGK1", "PICK1", "PINK1", "PLK3", "PMAIP1", "PPARG", "PTGIS", "PTGS2", "RGCC", "RORA", "RPTOR", "SCN2A", "SFRP1", "SIRT1", "SIRT2", "SLC8A3", "SUV39H1", "SUV39H2", "TBL2", "TERT", "TGFB1", "TIGAR", "TP53", "TSC1", "TWIST1", "UBQLN1", "VEGFA", "VHL", "ZFP36L1" ] }, "position": { "x": 3588.2439857677473, "y": 1883.470107003397, "id": "26a34b5a-7453-430a-9bb8-98e6a9254169", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "cd17fb8e-e2e9-4ade-a18e-e29fe05fa092", "name": [ "POSITIVE REGULATION OF INFLAMMATORY RESPONSE%GOBP%GO:0050729" ], "description": [ "positive regulation of inflammatory response" ], "pvalue": 0.0012, "gs_type": null, "gs_size": 121, "padj": 0.0186, "mcode_cluster_id": null, "NES": -1.6272, "genes": [ "ABCC1", "ADAM8", "AGT", "AGTR1", "AIM2", "APP", "C2CD4A", "C2CD4B", "CAMK2N1", "CASP1", "CASP12", "CASP4", "CASP5", "CCL1", "CCL3", "CCN4", "CCR2", "CCR7", "CD47", "CD81", "CEBPA", "CREB3L3", "CX3CL1", "DDT", "DEFB114", "DHX9", "ETS1", "FEM1A", "FFAR2", "FFAR3", "GPR4", "GPRC5B", "GPSM3", "GRN", "GSDMD", "HLA-E", "HYAL2", "IFI35", "IFNG", "IL12B", "IL15", "IL16", "IL17RA", "IL18", "IL1B", "IL2", "IL21", "IL23A", "IL33", "IL6", "IL6ST", "KARS1", "LBP", "LGALS1", "LGALS2", "LILRA5", "LPL", "MAPK13", "MDK", "MEFV", "MGST2", "MMP8", "NAIP", "NAPEPLD", "NFKBIA", "NFKBIZ", "NINJ1", "NKG7", "NLRC4", "NLRP1", "NLRP10", "NLRP12", "NLRP3", "NLRP6", "NMI", "NUPR1", "OSM", "OSMR", "PARK7", "PDCD4", "PDE2A", "PLA2G2A", "PLA2G3", "PLA2G7", "PLCG2", "PTGER3", "PTGER4", "PTGS2", "PYCARD", "RIPK1", "RPS19", "S100A12", "S100A8", "S100A9", "SERPINE1", "SETD4", "SNCA", "SNX4", "STAP1", "TAFA3", "TGFB1", "TLR2", "TLR3", "TLR4", "TLR7", "TLR9", "TNF", "TNFRSF11A", "TNFRSF1A", "TNFSF11", "TNFSF4", "TNIP1", "TRADD", "TREM2", "TSLP", "TTBK1", "VAMP7", "VAMP8", "WNT5A", "ZBP1", "ZP3" ] }, "position": { "x": 1970.068576774751, "y": 329.7740155640005, "id": "cd17fb8e-e2e9-4ade-a18e-e29fe05fa092" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "5ec09fc3-ab05-4910-b33f-85f166b978b2", "name": [ "RESPONSE TO INTERFERON-BETA%GOBP%GO:0035456" ], "description": [ "response to interferon-beta" ], "pvalue": 1.0439e-7, "gs_type": null, "gs_size": 30, "padj": 0.00000626, "mcode_cluster_id": null, "NES": -2.2719, "genes": [ "ACOD1", "AIM2", "BST2", "CALM1", "CAMK2A", "CDC34", "HTRA2", "IFI16", "IFITM1", "IFITM2", "IFITM3", "IFNAR1", "IFNAR2", "IFNB1", "IKBKE", "IRF1", "IRGM", "MNDA", "NDUFA13", "OAS1", "PLSCR1", "PNPT1", "PYDC5", "PYHIN1", "SHFL", "STAT1", "TRIM6", "UBE2G2", "UBE2K", "XAF1" ] }, "position": { "x": 1885.5306658166187, "y": 1834.3305777651985, "id": "5ec09fc3-ab05-4910-b33f-85f166b978b2" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "f59c55ff-3a61-402d-84df-8cc060626bbd", "name": [ "GLYCOGENOSIS, TYPE IC%SMPDB%SMP0000574" ], "description": [ "Glycogenosis, Type IC" ], "pvalue": 0.0017, "gs_type": null, "gs_size": 22, "padj": 0.0233, "mcode_cluster_id": "Cluster 8", "NES": 1.8347, "genes": [ "ALDOA", "BPGM", "ENO1", "FBP1", "G6PC1", "GALM", "GAPDH", "GPI", "HK2", "LDHA", "MDH2", "MPC1", "PANK1", "PC", "PCK1", "PGAM1", "PGAM2", "PGM1", "SLC25A11", "SLC2A2", "SLC37A4", "TPI1" ] }, "position": { "x": 3771.175038258124, "y": 1120.433224409137, "id": "f59c55ff-3a61-402d-84df-8cc060626bbd" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "1650d15a-9620-441d-a852-1ce19e3865c9", "name": [ "FRUCTOSE-1,6-DIPHOSPHATASE DEFICIENCY%SMPDB%SMP0000562" ], "description": [ "Fructose-1,6-diphosphatase Deficiency" ], "pvalue": 0.0017, "gs_type": null, "gs_size": 22, "padj": 0.0233, "mcode_cluster_id": "Cluster 8", "NES": 1.8347, "genes": [ "ALDOA", "BPGM", "ENO1", "FBP1", "G6PC1", "GALM", "GAPDH", "GPI", "HK2", "LDHA", "MDH2", "MPC1", "PANK1", "PC", "PCK1", "PGAM1", "PGAM2", "PGM1", "SLC25A11", "SLC2A2", "SLC37A4", "TPI1" ] }, "position": { "x": 3749.9673966163678, "y": 1201.483029512658, "id": "1650d15a-9620-441d-a852-1ce19e3865c9" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "name": [ "APC C-MEDIATED DEGRADATION OF CELL CYCLE PROTEINS%REACTOME DATABASE ID RELEASE 81%174143" ], "description": [ "APC C-mediated degradation of cell cycle proteins" ], "pvalue": 1.3098e-7, "gs_type": null, "gs_size": 87, "padj": 0.0000074634, "mcode_cluster_id": "Cluster 1", "NES": -2.1308, "genes": [ "ANAPC1", "ANAPC10", "ANAPC11", "ANAPC15", "ANAPC16", "ANAPC2", "ANAPC4", "ANAPC5", "ANAPC7", "AURKA", "BTRC", "BUB1B", "BUB3", "CCNA1", "CCNA2", "CCNB1", "CDC14A", "CDC16", "CDC20", "CDC23", "CDC26", "CDC27", "CDK1", "CDK2", "CUL1", "FBXO5", "FZR1", "MAD2L1", "NEK2", "PLK1", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "PTTG1", "RB1", "RPS27A", "SEM1", "SKP1", "SKP2", "UBA52", "UBB", "UBC", "UBE2C", "UBE2D1", "UBE2E1", "UBE2S" ] }, "position": { "x": 444.7964824117592, "y": 828.6929549049694, "id": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "e59b742f-7a21-4a50-8472-3500f07b5395", "name": [ "RESPONSE TO DECREASED OXYGEN LEVELS%GOBP%GO:0036293" ], "description": [ "response to decreased oxygen levels" ], "pvalue": 2.7423e-7, "gs_type": null, "gs_size": 140, "padj": 0, "mcode_cluster_id": "Cluster 14", "NES": 2.0284, "genes": [ "ACAA2", "ADA", "ADAM17", "ADAM8", "ADO", "AJUBA", "AK4", "ALAS2", "ALKBH5", "ANG", "ANGPT4", "ANGPTL4", "AQP1", "AQP3", "ARNT", "ARNT2", "ASCL2", "BAD", "BMP2", "BMP7", "BNIP3", "BNIP3L", "CAV1", "CBFA2T3", "CD24", "CHRNA4", "CHRNA7", "CHRNB2", "CIAO3", "CITED2", "CLDN3", "CPEB1", "CPEB2", "CPEB4", "CREBBP", "CXCR4", "DDIT4", "DPP4", "EGLN1", "EGLN2", "EGLN3", "EGR1", "EP300", "EPAS1", "FABP1", "FAM162A", "FMN2", "FUNDC1", "GATA6", "HIF1A", "HILPDA", "HIPK2", "HMOX2", "HP1BP3", "HSP90B1", "HYOU1", "ITPR1", "ITPR2", "KCND2", "KCNMA1", "LIMD1", "LMNA", "LONP1", "LOXL2", "MDM2", "MDM4", "MGARP", "MLST8", "MMP2", "MT3", "MTOR", "MYC", "MYOCD", "NDNF", "NDRG1", "NF1", "NFE2L2", "NGB", "NKX3-1", "NOP53", "NOS1", "NOTCH1", "NPEPPS", "OPRD1", "P4HB", "PDK1", "PDK3", "PGF", "PGK1", "PICK1", "PIN1", "PINK1", "PLEKHN1", "PLK3", "PLOD1", "PLOD2", "PMAIP1", "PML", "PPARG", "PRKAA1", "PTGIS", "PTGS2", "REST", "RGCC", "RORA", "RPTOR", "RYR1", "RYR2", "SCN2A", "SFRP1", "SIRT1", "SIRT2", "SLC8A3", "SMAD3", "SMAD4", "SRF", "SUV39H1", "SUV39H2", "TBL2", "TERT", "TGFB1", "TGFB2", "TGFB3", "TH", "THBS1", "TIGAR", "TM9SF4", "TP53", "TSC1", "TWIST1", "UBQLN1", "UCP2", "USF1", "VEGFA", "VEGFB", "VEGFC", "VEGFD", "VHL", "WTIP", "ZFP36L1" ] }, "position": { "x": 3604.1424830737474, "y": 1886.0616979615174, "id": "e59b742f-7a21-4a50-8472-3500f07b5395", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "0ab74ab8-46f6-40b9-84a3-f901312bfdd1", "name": [ "POSITIVE REGULATION OF ADAPTIVE IMMUNE RESPONSE BASED ON SOMATIC RECOMBINATION OF IMMUNE RECEPTORS BUILT FROM IMMUNOGLOBULIN SUPERFAMILY DOMAINS%GOBP%GO:0002824" ], "description": [ "positive regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains" ], "pvalue": 0.0044, "gs_type": null, "gs_size": 93, "padj": 0.046, "mcode_cluster_id": "Cluster 5", "NES": -1.5257, "genes": [ "B2M", "BRD2", "BRD4", "C17orf99", "CARD9", "CCR2", "CD1A", "CD1B", "CD1C", "CD1D", "CD1E", "CD226", "CD55", "CD81", "CLCF1", "CLEC6A", "CLEC7A", "CYRIB", "DENND1B", "EP300", "FADD", "FBXO38", "FZD5", "HFE", "HLA-A", "HLA-B", "HLA-C", "HLA-DRA", "HLA-DRB1", "HLA-DRB3", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "HMCES", "HSPD1", "IL12A", "IL12B", "IL12RB1", "IL18", "IL18R1", "IL1B", "IL1R1", "IL23A", "IL23R", "IL4", "IL6", "JAK2", "KMT5B", "KMT5C", "MAD2L2", "MALT1", "MAP3K7", "MICA", "MICB", "MR1", "NECTIN2", "NFKBID", "NFKBIZ", "NLRP10", "NLRP3", "OPA1", "PAXIP1", "PRKCQ", "PRKCZ", "PVR", "RAET1E", "RAET1G", "RAET1L", "RIF1", "RSAD2", "SHLD1", "SHLD2", "SHLD3", "SLC11A1", "SLC22A13", "STX7", "TBX21", "TFRC", "TGFB1", "TNFSF13", "TNFSF4", "TP53BP1", "TRAF2", "TRAF6", "TREM2", "TYK2", "ULBP1", "ULBP2", "ULBP3", "XCL1", "ZBTB1", "ZP3" ] }, "position": { "x": 2298.438372968515, "y": 763.9126137359825, "id": "0ab74ab8-46f6-40b9-84a3-f901312bfdd1", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "name": [ "PROTEIN SYNTHESIS: HISTIDINE%PATHWHIZ%PW112929" ], "description": [ "Protein Synthesis: Histidine" ], "pvalue": 2.0513e-17, "gs_type": null, "gs_size": 80, "padj": 4.1146e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7944, "genes": [ "FAU", "HARS1", "RACK1", "RPL10", "RPL10A", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "UBA52" ] }, "position": { "x": 965.8934498729345, "y": 574.5691214162955, "id": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "name": [ "NONSENSE MEDIATED DECAY (NMD) ENHANCED BY THE EXON JUNCTION COMPLEX (EJC)%REACTOME DATABASE ID RELEASE 81%975957" ], "description": [ "Nonsense Mediated Decay (NMD) enhanced by the Exon Junction Complex (EJC)" ], "pvalue": 2.3006e-13, "gs_type": null, "gs_size": 116, "padj": 2.4332e-11, "mcode_cluster_id": "Cluster 2", "NES": 2.4927, "genes": [ "CASC3", "DCP1A", "EIF4A3", "EIF4G1", "ETF1", "FAU", "GSPT1", "GSPT2", "MAGOH", "MAGOHB", "NCBP1", "NCBP2", "PABPC1", "PNRC2", "PPP2CA", "PPP2R1A", "PPP2R2A", "RBM8A", "RNPS1", "RPL10", "RPL10A", "RPL10L", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL22L1", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL26L1", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL36AL", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL39L", "RPL3L", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "SMG1", "SMG5", "SMG6", "SMG7", "SMG8", "SMG9", "UBA52", "UPF1", "UPF2", "UPF3A", "UPF3B" ] }, "position": { "x": 847.7711936308853, "y": 590.7657726728181, "id": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "cbfeadab-ca27-40a7-8780-4bec2a9b1964", "name": [ "SIGNALING BY NOTCH%REACTOME%R-HSA-157118.7" ], "description": [ "Signaling by NOTCH" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 199, "padj": 0.0056, "mcode_cluster_id": null, "NES": -1.5843, "genes": [ "ACTA2", "ADAM10", "ADAM17", "AGO1", "AGO2", "AGO3", "AGO4", "AKT1", "APH1A", "APH1B", "ARRB1", "ARRB2", "ATP2A1", "ATP2A2", "ATP2A3", "B4GALT1", "CCNC", "CCND1", "CDK8", "CNTN1", "CREBBP", "CUL1", "DLGAP5", "DLK1", "DLL1", "DLL4", "DNER", "DTX1", "DTX2", "DTX4", "E2F1", "E2F3", "EGF", "EGFR", "ELF3", "EP300", "FABP7", "FCER2", "FLT4", "FURIN", "GZMB", "H2AB1", "H2AC14", "H2AC19", "H2AC20", "H2AC7", "H2AC8", "H2AJ", "H2AX", "H2AZ2", "H2BC1", "H2BC11", "H2BC12", "H2BC12L", "H2BC13", "H2BC14", "H2BC15", "H2BC17", "H2BC21", "H2BC26", "H2BC3", "H2BC5", "H2BC8", "H2BC9", "H3-3B", "H3C15", "H3C8", "H4C9", "HDAC1", "HDAC10", "HDAC11", "HDAC2", "HDAC3", "HDAC4", "HDAC5", "HDAC6", "HDAC7", "HDAC8", "HDAC9", "HES1", "HES5", "HEY1", "HEY2", "HEYL", "HIF1A", "ITCH", "JAG1", "JAG2", "JUN", "KAT2A", "KAT2B", "LFNG", "MAML1", "MAML2", "MAML3", "MAMLD1", "MDK", "MFNG", "MIB1", "MIB2", "MOV10", "MYC", "NBEA", "NCOR1", "NCOR2", "NCSTN", "NEURL1", "NEURL1B", "NOTCH1", "NOTCH2", "NOTCH3", "NOTCH4", "NUMB", "PBX1", "PLXND1", "POFUT1", "POGLUT1", "PRKCI", "PSEN1", "PSEN2", "PSENEN", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMB1", "PSMB10", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSMF1", "PTCRA", "RAB6A", "RBPJ", "RBX1", "RFNG", "RPS27A", "RUNX1", "SEL1L", "SEM1", "SIRT6", "SKP1", "SMAD3", "SNW1", "ST3GAL3", "ST3GAL4", "ST3GAL6", "STAT1", "TACC3", "TBL1X", "TBL1XR1", "TFDP1", "TFDP2", "TLE1", "TLE2", "TLE4", "TMED2", "TNRC6A", "TNRC6B", "TNRC6C", "TP53", "UBA52", "UBB", "UBC", "WWC1", "WWP2", "YBX1", "YWHAZ" ] }, "position": { "x": 575.7769908477585, "y": 719.5034177896225, "id": "cbfeadab-ca27-40a7-8780-4bec2a9b1964" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "38ac2a4d-29ef-4182-a817-cc41e9972cc8", "name": [ "REGULATED NECROSIS%REACTOME DATABASE ID RELEASE 81%5218859" ], "description": [ "Regulated Necrosis" ], "pvalue": 0.0004, "gs_type": null, "gs_size": 57, "padj": 0.0078, "mcode_cluster_id": null, "NES": -1.8125, "genes": [ "BAK1", "BAX", "BIRC2", "BIRC3", "CASP1", "CASP3", "CASP4", "CASP5", "CASP8", "CDC37", "CHMP2A", "CHMP2B", "CHMP3", "CHMP4A", "CHMP4B", "CHMP4C", "CHMP6", "CHMP7", "CYCS", "ELANE", "FADD", "FAS", "FASLG", "FLOT1", "FLOT2", "GSDMD", "GSDME", "GZMB", "HMGB1", "HSP90AA1", "IL18", "IL1A", "IL1B", "IRF1", "IRF2", "ITCH", "MLKL", "OGT", "PDCD6IP", "PELI1", "PRKN", "RIPK1", "RIPK3", "RPS27A", "SDCBP", "STUB1", "TNFRSF10A", "TNFRSF10B", "TNFSF10", "TP53", "TP63", "TRADD", "UBA52", "UBB", "UBC", "UBE2L3", "XIAP" ] }, "position": { "x": 308.49092946587103, "y": 300.9589709904128, "id": "38ac2a4d-29ef-4182-a817-cc41e9972cc8" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "8ffc0053-7f56-43b9-ba1e-b4dd79787832", "name": [ "REGULATION OF MORPHOGENESIS OF AN EPITHELIUM%GOBP%GO:1905330" ], "description": [ "regulation of morphogenesis of an epithelium" ], "pvalue": 0.0036, "gs_type": null, "gs_size": 38, "padj": 0.0409, "mcode_cluster_id": null, "NES": -1.6831, "genes": [ "ADAMTS12", "AGT", "BMP4", "BTBD7", "CXCL10", "EGF", "FGF1", "FGF2", "FOXP1", "GATA3", "GDNF", "GJA1", "HGF", "ITGAX", "LBX2", "LHX1", "LIF", "MDK", "MMRN2", "NOG", "PAX2", "PAX8", "PDGFA", "PIK3CD", "RNF207", "SIRT6", "SIX1", "SIX2", "SIX4", "SMO", "SOX8", "SOX9", "SULF1", "TACSTD2", "TBX2", "TNF", "VEGFA", "WNT5B" ] }, "position": { "x": 2655.5, "y": 2195.9446642487483, "id": "8ffc0053-7f56-43b9-ba1e-b4dd79787832" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "4e7d0420-e081-42c4-a98b-1d820ef50cb2", "name": [ "RESPONSE TO CYTOKINE%GOBP%GO:0034097" ], "description": [ "response to cytokine" ], "pvalue": 1.3117e-13, "gs_type": null, "gs_size": 520, "padj": 1.4673e-11, "mcode_cluster_id": "Cluster 33", "NES": -2.0295, "genes": [ "ACKR3", "ACOD1", "ACTN4", "ADAM10", "ADAM9", "ADAMTS12", "ADAMTS7", "ADAR", "ADIPOQ", "ADIPOR1", "ADIPOR2", "AFF3", "AIF1", "AIM2", "AKAP6", "AKT1", "ALDH1A2", "ALOX15", "ANKRD1", "APP", "APPL1", "APPL2", "AQP4", "ARHGEF2", "ASAH1", "ASAH2", "AXL", "AZI2", "BAG4", "BBS2", "BBS4", "BCL2", "BCL2L1", "BIRC2", "BIRC3", "BRCA1", "BST2", "CACTIN", "CALCOCO2", "CALM1", "CAMK2A", "CARD14", "CASP1", "CASP3", "CASP8", "CBL", "CCL1", "CCL11", "CCL13", "CCL14", "CCL15", "CCL16", "CCL17", "CCL18", "CCL19", "CCL2", "CCL20", "CCL21", "CCL22", "CCL23", "CCL24", "CCL25", "CCL26", "CCL3", "CCL3L3", "CCL4", "CCL4L2", "CCL5", "CCL7", "CCL8", "CCR1", "CCR2", "CCR7", "CD274", "CD300LF", "CD4", "CD47", "CD58", "CD74", "CDC34", "CDK9", "CEACAM1", "CEBPA", "CH25H", "CHI3L1", "CHUK", "CIB1", "CIITA", "CITED1", "CLCF1", "CNTF", "CNTFR", "COL3A1", "COMMD7", "CRHBP", "CRIPTO", "CRLF1", "CRLF2", "CRNN", "CSF1R", "CSF2", "CSF2RA", "CSF2RB", "CSF3", "CSF3R", "CSNK2B", "CTR9", "CTSG", "CX3CL1", "CXCL1", "CXCL10", "CXCL11", "CXCL12", "CXCL13", "CXCL16", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "CXCR2", "CXCR4", "CYP27B1", "DAB2IP", "DAPK1", "DAPK3", "DCSTAMP", "DDOST", "DHX9", "DOCK8", "DPYSL3", "DUOX1", "DUOX2", "DUSP1", "EBI3", "EDA", "EDA2R", "EDAR", "EDN2", "EGR1", "EIF2AK2", "EIF5A", "ENTREP1", "EPO", "EPOR", "EPRS1", "ERBIN", "EREG", "F3", "FCER1G", "FER", "FLT3", "FOXA2", "FOXC1", "FOXH1", "FOXO3", "GAPDH", "GAS6", "GATA3", "GBA1", "GBP1", "GBP2", "GBP3", "GBP4", "GBP5", "GBP6", "GBP7", "GCH1", "GH1", "GHR", "GPER1", "GPR35", "GPR75", "GREM2", "GSDME", "GSK3A", "GSK3B", "HAS2", "HAX1", "HCK", "HCLS1", "HDAC4", "HIF1A", "HLA-DPA1", "HMHB1", "HNRNPU", "HTRA2", "HYAL1", "HYAL2", "HYAL3", "IFI16", "IFI27", "IFIT1", "IFITM1", "IFITM2", "IFITM3", "IFNA10", "IFNA13", "IFNA14", "IFNA16", "IFNA17", "IFNA2", "IFNA21", "IFNA4", "IFNA5", "IFNA6", "IFNA7", "IFNA8", "IFNAR1", "IFNAR2", "IFNB1", "IFNE", "IFNG", "IFNGR1", "IFNGR2", "IFNK", "IFNL1", "IFNL2", "IFNL3", "IFNL4", "IFNLR1", "IFNW1", "IGBP1", "IKBKB", "IKBKE", "IL10", "IL10RA", "IL10RB", "IL11", "IL11RA", "IL12A", "IL12B", "IL12RB1", "IL12RB2", "IL13RA1", "IL13RA2", "IL15", "IL15RA", "IL17A", "IL17F", "IL17RA", "IL17RC", "IL18", "IL18R1", "IL18RAP", "IL1A", "IL1B", "IL1F10", "IL1R1", "IL1RAP", "IL1RL1", "IL2", "IL20RA", "IL20RB", "IL21R", "IL22RA1", "IL22RA2", "IL23R", "IL27RA", "IL2RA", "IL2RB", "IL2RG", "IL3", "IL31RA", "IL33", "IL34", "IL36A", "IL36B", "IL36G", "IL37", "IL3RA", "IL4", "IL4R", "IL5", "IL5RA", "IL6", "IL6R", "IL6ST", "IL7", "IL7R", "IL9R", "ILK", "INPP5K", "IRAK1", "IRAK2", "IRAK3", "IRAK4", "IRF1", "IRF5", "IRF8", "IRGM", "IRS1", "ISG15", "ITIH4", "JAGN1", "JAK1", "JAK2", "JAK3", "KHSRP", "KIT", "KLHL20", "KYNU", "LAMP3", "LDLRAP1", "LEF1", "LEP", "LEPR", "LGALS9", "LIFR", "LILRA1", "LILRA2", "LILRA3", "LILRA4", "LILRA5", "LILRB1", "LILRB2", "LILRB4", "LIMS1", "LRCH1", "LRP8", "LYN", "MAP2K7", "MAP3K7", "MAP4K3", "MAPK11", "MAPK13", "MAPK3", "MAPKAPK2", "MAPKAPK3", "MAVS", "MCL1", "MEFV", "MFAP3", "MKKS", "MME", "MNDA", "MPL", "MT1X", "MT2A", "MT3", "MX1", "MX2", "MYD88", "MYLK3", "NDUFA13", "NFAT5", "NFE2L2", "NFKB1", "NFKB2", "NFKBIA", "NKX3-1", "NLRP12", "NLRP7", "NPNT", "NPR2", "NR1D1", "NUB1", "NUMBL", "OAS1", "OAS2", "OASL", "OCSTAMP", "OSM", "OSMR", "OXSR1", "P4HB", "PDE12", "PDE1B", "PDE2A", "PDGFB", "PF4", "PF4V1", "PHB1", "PID1", "PIK3R1", "PIM1", "PLCB1", "PLP2", "PLSCR1", "PLVAP", "PML", "PNPT1", "POU4F1", "POU4F2", "PPBP", "PRKACA", "PRKCA", "PRL", "PRLR", "PTGIS", "PTK2B", "PTPN11", "PTPN6", "PTPRJ", "PTPRT", "PYCARD", "PYDC5", "PYHIN1", "RAF1", "RBM15", "RBMX", "RC3H1", "REL", "RELA", "RELB", "RHEX", "RHOA", "RIPK1", "RIPOR2", "RO60", "RPL13A", "RPS3", "RPS6KA4", "RPS6KA5", "RRAGA", "RUFY4", "SBNO2", "SELE", "SELL", "SELP", "SELPLG", "SETD2", "SFRP1", "SH2B3", "SHFL", "SHMT2", "SHPK", "SIRPA", "SIRT1", "SLC11A1", "SLC12A2", "SLC22A5", "SLC26A6", "SMAD4", "SMPD1", "SMPD4", "SNCA", "SOCS1", "SOCS5", "SOS1", "SOX9", "SP100", "SPHK1", "SPI1", "SRC", "SRF", "ST18", "ST3GAL6", "STAT1", "STAT2", "STAT3", "STAT4", "STAT5A", "STAT5B", "STAT6", "STK39", "SYK", "SYNCRIP", "TAF9", "TANK", "TBK1", "TBKBP1", "TCF7", "TFF2", "THPO", "TIMP1", "TIMP2", "TIMP3", "TIMP4", "TLE5", "TLR2", "TLR4", "TMEM102", "TMSB4X", "TNF", "TNFRSF11A", "TNFRSF1A", "TNFRSF1B", "TNFRSF21", "TNFSF11", "TNFSF18", "TNIP2", "TOLLIP", "TP53", "TPR", "TRADD", "TRAF1", "TRAF2", "TRAF3", "TRAF3IP2", "TRAF5", "TRAF6", "TREM2", "TRIM21", "TRIM32", "TRIM56", "TRIM6", "TSLP", "TXNDC17", "TYK2", "UBD", "UBE2G2", "UBE2K", "UGCG", "UPF1", "USP10", "WNK1", "WNT5A", "XAF1", "XBP1", "XCL1", "XCL2", "YBX3", "YTHDC2", "ZC3H12A", "ZFAND6", "ZFP36", "ZFP36L1", "ZFP36L2" ] }, "position": { "x": 2734.4135858267796, "y": 1300.4486197218225, "id": "4e7d0420-e081-42c4-a98b-1d820ef50cb2", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "3fbb64b3-4512-41e7-8837-bc44bd025067", "name": [ "EPITHELIAL TUBE MORPHOGENESIS%GOBP%GO:0060562" ], "description": [ "epithelial tube morphogenesis" ], "pvalue": 0.0045, "gs_type": null, "gs_size": 142, "padj": 0.0471, "mcode_cluster_id": "Cluster 31", "NES": -1.5388, "genes": [ "ACVR1", "ACVRL1", "AHI1", "APLNR", "BBS4", "BBS5", "BBS7", "BCL10", "BMP2", "BMP4", "BMP5", "BMP7", "CCDC103", "CCDC39", "CCDC40", "CCM2", "CELSR1", "CEP290", "CITED1", "COBL", "COL4A1", "CSF1R", "CSNK2B", "CTNNB1", "CTSH", "DEAF1", "DLC1", "DLL1", "DLL4", "DNAAF1", "DVL1", "DVL1P1", "DVL2", "DVL3", "ENG", "EPHA2", "FGF1", "FGF10", "FGF2", "FGFR2", "FOLR1", "FOXD1", "FOXH1", "FOXN4", "FUZ", "GATA3", "GATA4", "GDF2", "GDNF", "GLI2", "GPC3", "GRHL2", "GRHL3", "HAND1", "HES1", "HOXA11", "HOXD11", "IFT122", "IHH", "KDM2B", "KDR", "KLHL3", "LHX1", "LMO4", "LRP2", "LUZP1", "MEF2C", "MEGF8", "MESP1", "MET", "MICAL2", "MKKS", "MTHFD1", "MTHFD1L", "MTHFR", "MTSS1", "MYC", "NDRG4", "NKX2-1", "NKX2-5", "NKX3-1", "NOTCH1", "NOTCH4", "NPHP3", "NPNT", "NRARP", "NRP1", "OSR1", "PAK1", "PAX2", "PAX8", "PERP", "PHACTR4", "PKD1", "PKD2", "PKHD1", "PLXNB2", "PODXL", "PRICKLE1", "PRKD2", "PRKX", "PROX1", "RASIP1", "RBPJ", "RHOA", "RHOB", "RYR2", "SALL1", "SCRIB", "SEMA3E", "SEMA4C", "SETDB2", "SFRP2", "SHH", "SIX1", "SKI", "SLC39A12", "SLIT2", "SMO", "SOX17", "SOX18", "SOX8", "SOX9", "SRF", "STARD13", "STIL", "TBX2", "TBX20", "TBX6", "TCF21", "TGFB1", "TGFB2", "TGFBR2", "TIE1", "TSC2", "VANGL2", "VASP", "VEGFA", "WNK4", "WNT11", "WT1", "ZIC3" ] }, "position": { "x": 836.8174634819308, "y": 1349.6154260821868, "id": "3fbb64b3-4512-41e7-8837-bc44bd025067", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "2123cb7a-309d-4223-b212-909dd6a855b7", "name": [ "AMINO ACID TRANSPORT ACROSS THE PLASMA MEMBRANE%REACTOME DATABASE ID RELEASE 81%352230" ], "description": [ "Amino acid transport across the plasma membrane" ], "pvalue": 0.002, "gs_type": null, "gs_size": 32, "padj": 0.027, "mcode_cluster_id": null, "NES": 1.7671, "genes": [ "SLC16A10", "SLC1A4", "SLC1A5", "SLC25A29", "SLC36A1", "SLC36A2", "SLC36A4", "SLC38A1", "SLC38A2", "SLC38A3", "SLC38A4", "SLC38A5", "SLC3A1", "SLC3A2", "SLC43A1", "SLC43A2", "SLC6A12", "SLC6A14", "SLC6A15", "SLC6A18", "SLC6A19", "SLC6A20", "SLC6A6", "SLC7A1", "SLC7A10", "SLC7A11", "SLC7A3", "SLC7A5", "SLC7A6", "SLC7A7", "SLC7A8", "SLC7A9" ] }, "position": { "x": 3610.539072651805, "y": 2195.9446642487483, "id": "2123cb7a-309d-4223-b212-909dd6a855b7" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "name": [ "G2 M CHECKPOINTS%REACTOME%R-HSA-69481.5" ], "description": [ "G2 M Checkpoints" ], "pvalue": 1.1062e-8, "gs_type": null, "gs_size": 150, "padj": 8.0432e-7, "mcode_cluster_id": "Cluster 1", "NES": -2.0316, "genes": [ "ABRAXAS1", "ATM", "ATR", "ATRIP", "BABAM1", "BABAM2", "BARD1", "BLM", "BRCA1", "BRCC3", "BRIP1", "CCNB1", "CCNB2", "CDC25A", "CDC25C", "CDC45", "CDC6", "CDC7", "CDK1", "CDK2", "CHEK1", "CHEK2", "CLSPN", "DBF4", "DNA2", "EXO1", "GTSE1", "H2AX", "H2BC1", "H2BC11", "H2BC12", "H2BC12L", "H2BC13", "H2BC14", "H2BC15", "H2BC17", "H2BC21", "H2BC26", "H2BC3", "H2BC5", "H2BC8", "H2BC9", "H3-4", "H4C9", "HERC2", "HUS1", "KAT5", "MCM10", "MCM2", "MCM3", "MCM4", "MCM5", "MCM6", "MCM7", "MCM8", "MDC1", "MRE11", "NBN", "NSD2", "ORC1", "ORC2", "ORC3", "ORC4", "ORC5", "ORC6", "PIAS4", "PKMYT1", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RAD1", "RAD17", "RAD50", "RAD9A", "RAD9B", "RBBP8", "RFC2", "RFC3", "RFC4", "RFC5", "RHNO1", "RMI1", "RMI2", "RNF168", "RNF8", "RPA1", "RPA2", "RPA3", "RPS27A", "SEM1", "SFN", "TOP3A", "TOPBP1", "TP53", "TP53BP1", "UBA52", "UBB", "UBC", "UBE2N", "UBE2V2", "UIMC1", "WEE1", "WRN", "YWHAB", "YWHAE", "YWHAG", "YWHAH", "YWHAQ", "YWHAZ" ] }, "position": { "x": 483.86044561361007, "y": 762.1419047558988, "id": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "68e7a14b-c228-4a18-b837-3f701c4b0045", "name": [ "NEGATIVE REGULATION OF NOTCH4 SIGNALING%REACTOME%R-HSA-9604323.2" ], "description": [ "Negative regulation of NOTCH4 signaling" ], "pvalue": 0.0000054216, "gs_type": null, "gs_size": 53, "padj": 0.0002, "mcode_cluster_id": "Cluster 1", "NES": -2.0656, "genes": [ "AKT1", "CUL1", "NOTCH4", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMB1", "PSMB10", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSMF1", "RBX1", "RPS27A", "SEM1", "SKP1", "TACC3", "UBA52", "UBB", "UBC", "YWHAZ" ] }, "position": { "x": 481.4761969357635, "y": 804.9818741220435, "id": "68e7a14b-c228-4a18-b837-3f701c4b0045", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "2c6012fd-f497-423b-9ab1-8cfc5154f253", "name": [ "MYELOID LEUKOCYTE MIGRATION%GOBP%GO:0097529" ], "description": [ "myeloid leukocyte migration" ], "pvalue": 0, "gs_type": null, "gs_size": 103, "padj": 0.0004, "mcode_cluster_id": "Cluster 7", "NES": -2.0482, "genes": [ "ADGRE2", "ANXA1", "AZU1", "BSG", "CALCA", "CCL1", "CCL11", "CCL13", "CCL14", "CCL15", "CCL16", "CCL18", "CCL19", "CCL2", "CCL22", "CCL23", "CCL24", "CCL25", "CCL26", "CCL3", "CCL3L3", "CCL4", "CCL4L2", "CCL5", "CCL7", "CCL8", "CCR1", "CCR2", "CCR7", "CD177", "CD300H", "CHGA", "CKLF", "CTSG", "CX3CL1", "CXADR", "CXCL1", "CXCL10", "CXCL11", "CXCL13", "CXCL17", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "CXCR1", "CXCR2", "DEFB104B", "EDN1", "EDN2", "EDN3", "EDNRB", "EMP2", "FCER1G", "FLT1", "FOLR2", "GBF1", "GP2", "IL6", "IL6R", "IRAK4", "ITGB2", "JAM3", "JAML", "KIT", "LGALS3", "MSMP", "NCKAP1L", "PDE4B", "PDGFB", "PECAM1", "PF4", "PF4V1", "PIK3CD", "PIK3CG", "PIKFYVE", "PIP5K1C", "PLA2G1B", "PPBP", "PPIA", "PPIB", "PRTN3", "PTPRO", "RPS19", "S100A12", "S100A8", "S100A9", "SAA1", "SCG2", "SFTPD", "SIRPA", "SRP54", "SYK", "TAFA4", "TGFB2", "TNFRSF11A", "TNFSF11", "TREM1", "UMOD", "XCL1", "XCL2" ] }, "position": { "x": 3268.303526817679, "y": 553.7959221388644, "id": "2c6012fd-f497-423b-9ab1-8cfc5154f253", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "name": [ "REGULATION OF MITOTIC CELL CYCLE%REACTOME DATABASE ID RELEASE 81%453276" ], "description": [ "Regulation of mitotic cell cycle" ], "pvalue": 1.3098e-7, "gs_type": null, "gs_size": 87, "padj": 0.0000074634, "mcode_cluster_id": "Cluster 1", "NES": -2.1308, "genes": [ "ANAPC1", "ANAPC10", "ANAPC11", "ANAPC15", "ANAPC16", "ANAPC2", "ANAPC4", "ANAPC5", "ANAPC7", "AURKA", "BTRC", "BUB1B", "BUB3", "CCNA1", "CCNA2", "CCNB1", "CDC14A", "CDC16", "CDC20", "CDC23", "CDC26", "CDC27", "CDK1", "CDK2", "CUL1", "FBXO5", "FZR1", "MAD2L1", "NEK2", "PLK1", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "PTTG1", "RB1", "RPS27A", "SEM1", "SKP1", "SKP2", "UBA52", "UBB", "UBC", "UBE2C", "UBE2D1", "UBE2E1", "UBE2S" ] }, "position": { "x": 446.46943870512524, "y": 840.8337244493154, "id": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "2cd596f4-3461-429e-a594-a3fa378f86eb", "name": [ "RESPONSE TO MOLECULE OF BACTERIAL ORIGIN%GOBP%GO:0002237" ], "description": [ "response to molecule of bacterial origin" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 189, "padj": 0.0019, "mcode_cluster_id": "Cluster 9", "NES": -1.7317, "genes": [ "ACOD1", "ADAM17", "ADAM9", "AHR", "ANKRD1", "AXL", "BCL10", "BPI", "C4B_2", "CACTIN", "CARD16", "CARD17P", "CASP1", "CASP7", "CCL2", "CCR5", "CD14", "CD180", "CD24", "CD274", "CD36", "CD6", "CD68", "CD80", "CD86", "CDC73", "CHMP5", "CITED1", "CPS1", "CTR9", "CTSG", "CX3CR1", "CXCL1", "CXCL10", "CXCL11", "CXCL13", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "CYP27B1", "CYRIB", "DAB2IP", "DEFA1B", "DEFA3", "DEFA4", "DEFA5", "DEFA6", "DEFB124", "ERBIN", "F2R", "FBXO3", "FCGR2B", "FER", "FOXP1", "FZD5", "GBP2", "GBP3", "GCH1", "GFI1", "GIT1", "GPR31", "GSTP1", "HCK", "HMGB1", "HMGB2", "HNRNPA0", "IFNAR1", "IL10", "IL12A", "IL1A", "IL1B", "IL1F10", "IL23R", "IL36A", "IL36B", "IL36G", "IL36RN", "IL37", "IL6", "INAVA", "IRAK1", "IRAK2", "IRAK3", "IRAK4", "IRF5", "IRGM", "JAK2", "LBP", "LDOC1", "LGALS9", "LIAS", "LILRB1", "LILRB2", "LY96", "LYN", "MAPK14", "MAPK8", "MAPKAPK2", "MAPKAPK3", "MEF2C", "MMP3", "MMP8", "MMP9", "MTDH", "MYD88", "NFKB1", "NFKBIB", "NFKBIL1", "NLRP3", "NLRP7", "NOCT", "NOD2", "NOS1", "NOS2", "NOS3", "NR1D1", "NR1H3", "NR4A1", "NUGGC", "OTUD5", "PABPN1", "PAF1", "PALM3", "PDCD1LG2", "PDCD4", "PDE4B", "PELI1", "PF4", "PF4V1", "PLAA", "PLCG2", "PPBP", "PPM1E", "PRDX3", "PRKCE", "PTPN22", "PYCARD", "RELA", "RHOA", "RPS6KA3", "S100A14", "S100A7", "S100A8", "S100A9", "SBNO2", "SCARB1", "SELE", "SELENOS", "SELP", "SERPINE1", "SHPK", "SIRPA", "SLC11A1", "SLPI", "SMAD6", "SNCA", "SRR", "SSC5D", "STAP1", "TAB2", "TICAM1", "TICAM2", "TIRAP", "TLR1", "TLR10", "TLR2", "TLR4", "TLR6", "TLR9", "TNFAIP3", "TNFRSF11A", "TNFRSF1B", "TNFSF4", "TNIP1", "TNIP2", "TNIP3", "TRAF6", "TRIB1", "TRIM41", "TRIM6", "UPF1", "VIM", "WNT5A", "XBP1", "ZC3H12A", "ZFP36" ] }, "position": { "x": 3181.363463632785, "y": 123.12205169471108, "id": "2cd596f4-3461-429e-a594-a3fa378f86eb", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "9f2e5314-9e79-4fa2-8159-07d8cc47d89f", "name": [ "INORGANIC CATION TRANSMEMBRANE TRANSPORT%GOBP%GO:0098662" ], "description": [ "inorganic cation transmembrane transport" ], "pvalue": 0.0015, "gs_type": null, "gs_size": 424, "padj": 0.0217, "mcode_cluster_id": "Cluster 11", "NES": 1.467, "genes": [ "ABCB6", "ABCB7", "ABCB8", "ABCC5", "ABCC8", "ABCC9", "ADRA1A", "AFG3L2", "ANO6", "AP3D1", "AQP1", "AQP8", "ASIC1", "ASIC2", "ASIC3", "ASIC4", "ASIC5", "ATP12A", "ATP1A1", "ATP1A2", "ATP1A3", "ATP1A4", "ATP1B1", "ATP1B2", "ATP1B3", "ATP1B4", "ATP2A1", "ATP2A2", "ATP2A3", "ATP2B1", "ATP2B3", "ATP2B4", "ATP2C1", "ATP2C2", "ATP4A", "ATP4B", "ATP5F1B", "ATP5MF", "ATP5PO", "ATP6AP1", "ATP6AP2", "ATP6V0A1", "ATP6V0A2", "ATP6V0A4", "ATP6V0B", "ATP6V0C", "ATP6V0D1", "ATP6V0E1", "ATP6V0E2", "ATP6V1A", "ATP6V1B1", "ATP6V1B2", "ATP6V1C1", "ATP6V1D", "ATP6V1E1", "ATP6V1F", "ATP6V1G1", "ATP6V1G2", "ATP6V1G3", "ATP6V1H", "ATP7A", "ATP7B", "CACNA1A", "CACNA1B", "CACNA1C", "CACNA1D", "CACNA1E", "CACNA1F", "CACNA1G", "CACNA1H", "CACNA1I", "CACNA1S", "CACNA2D1", "CACNA2D4", "CACNB1", "CACNB2", "CACNB3", "CACNG1", "CCDC51", "CCL19", "CCL21", "CCL3", "CCR5", "CCR7", "CHERP", "DMAC2L", "DRD2", "ERO1A", "F2R", "FASLG", "FGF2", "FKBP1A", "FLNA", "FXYD2", "GAS6", "GHITM", "GP1BA", "GP1BB", "GP5", "GP9", "GRIN1", "GRIN2A", "GRIN2B", "GRIN2C", "GRIN2D", "HCN1", "HCN2", "HCN3", "HCN4", "HPN", "HSPA9", "HTR2A", "HTR2B", "HTR2C", "HTR3A", "HTR3B", "HTR3C", "HTR3D", "HTR3E", "HVCN1", "IBTK", "ITGAV", "ITPR1", "ITPR2", "ITPR3", "JPH1", "JPH2", "JPH3", "JPH4", "KCNA1", "KCNA10", "KCNA2", "KCNA3", "KCNA4", "KCNA5", "KCNA6", "KCNA7", "KCNB1", "KCNB2", "KCNC1", "KCNC2", "KCNC3", "KCNC4", "KCND1", "KCND2", "KCND3", "KCNE1", "KCNE2", "KCNE3", "KCNE4", "KCNE5", "KCNF1", "KCNG1", "KCNG2", "KCNG3", "KCNG4", "KCNH2", "KCNH3", "KCNH4", "KCNH5", "KCNH6", "KCNH7", "KCNH8", "KCNIP2", "KCNJ1", "KCNJ10", "KCNJ11", "KCNJ12", "KCNJ13", "KCNJ14", "KCNJ15", "KCNJ16", "KCNJ18", "KCNJ2", "KCNJ3", "KCNJ4", "KCNJ5", "KCNJ6", "KCNJ8", "KCNJ9", "KCNK1", "KCNK10", "KCNK12", "KCNK13", "KCNK15", "KCNK16", "KCNK17", "KCNK18", "KCNK2", "KCNK3", "KCNK4", "KCNK5", "KCNK6", "KCNK7", "KCNK9", "KCNMA1", "KCNN1", "KCNN2", "KCNN3", "KCNN4", "KCNQ1", "KCNQ2", "KCNQ3", "KCNQ4", "KCNQ5", "KCNS1", "KCNS2", "KCNS3", "KCNT1", "KCNT2", "KCNU1", "KCNV1", "KCNV2", "LCK", "LETM1", "LRRC26", "LRRC38", "LRRC52", "LRRC55", "MAIP1", "MCOLN1", "MCOLN2", "MCOLN3", "MCU", "MCUB", "MCUR1", "MICU1", "MICU2", "MICU3", "MRS2", "MT-CO1", "MT-ND4", "MT-ND5", "NALCN", "NALF1", "NALF2", "NDUFS7", "NNT", "NOL3", "NOX5", "ORAI1", "OTOP1", "OTOP2", "OTOP3", "P2RX1", "P2RX2", "P2RX3", "P2RX4", "P2RX5", "P2RX6", "P2RX7", "PKD1", "PKD2", "PKD2L1", "PLCB1", "PLCB2", "PLCB3", "PLCB4", "PLCD1", "PLCE1", "PLCG1", "PLCG2", "PLCH1", "PLCH2", "PMPCB", "PTPRC", "RHAG", "RHBG", "RHCE", "RHCG", "RHD", "RNASEK", "RYR1", "RYR2", "RYR3", "SCARA5", "SCN10A", "SCN11A", "SCN1A", "SCN1B", "SCN2A", "SCN2B", "SCN3A", "SCN3B", "SCN4A", "SCN4B", "SCN5A", "SCN7A", "SCN8A", "SCN9A", "SCNN1A", "SCNN1B", "SCNN1D", "SCNN1G", "SLC11A1", "SLC11A2", "SLC12A1", "SLC12A2", "SLC12A3", "SLC12A4", "SLC12A5", "SLC12A6", "SLC12A7", "SLC12A8", "SLC1A3", "SLC24A1", "SLC24A2", "SLC24A3", "SLC24A4", "SLC24A5", "SLC25A23", "SLC25A28", "SLC25A37", "SLC30A1", "SLC30A10", "SLC30A2", "SLC30A3", "SLC30A4", "SLC30A5", "SLC30A6", "SLC30A7", "SLC30A8", "SLC31A1", "SLC35G1", "SLC36A1", "SLC36A2", "SLC36A3", "SLC39A1", "SLC39A10", "SLC39A11", "SLC39A12", "SLC39A13", "SLC39A14", "SLC39A2", "SLC39A3", "SLC39A4", "SLC39A5", "SLC39A6", "SLC39A7", "SLC39A8", "SLC39A9", "SLC40A1", "SLC41A1", "SLC41A2", "SLC41A3", "SLC46A1", "SLC4A11", "SLC4A4", "SLC4A8", "SLC4A9", "SLC5A1", "SLC5A2", "SLC6A1", "SLC6A11", "SLC6A12", "SLC6A13", "SLC6A14", "SLC6A15", "SLC6A16", "SLC6A17", "SLC6A18", "SLC6A19", "SLC6A2", "SLC6A20", "SLC6A3", "SLC6A4", "SLC6A5", "SLC6A6", "SLC6A7", "SLC6A8", "SLC6A9", "SLC8A1", "SLC8A2", "SLC8A3", "SLC8B1", "SLC9A1", "SLC9A2", "SLC9A3", "SLC9A4", "SLC9A5", "SLC9A6", "SLC9A7", "SLC9A8", "SLC9A9", "SLC9B1", "SLC9B1P1", "SLC9C1", "SLC9C2", "SMDT1", "TCIRG1", "TMCO1", "TMEM163", "TMEM165", "TMEM175", "TMEM94", "TPCN2", "TRDN", "TRPA1", "TRPC1", "TRPC3", "TRPC4", "TRPC4AP", "TRPC5", "TRPC6", "TRPC7", "TRPM1", "TRPM2", "TRPM3", "TRPM4", "TRPM5", "TRPM6", "TRPM7", "TRPM8", "TRPV1", "TRPV2", "TRPV3", "TRPV4", "TRPV5", "TRPV6", "UCP1", "UCP2", "UCP3", "VDAC1", "XCL1" ] }, "position": { "x": 4207.484447186828, "y": 1607.1132794162493, "id": "9f2e5314-9e79-4fa2-8159-07d8cc47d89f", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "c334d77c-e9ba-42fa-bab6-de43f81e082f", "name": [ "IMMUNE RESPONSE TO TUBERCULOSIS%WIKIPATHWAYS_20240410%WP4197%HOMO SAPIENS" ], "description": [ "Immune response to tuberculosis" ], "pvalue": 2.1146e-8, "gs_type": null, "gs_size": 20, "padj": 0.0000014643, "mcode_cluster_id": null, "NES": -2.3532, "genes": [ "IFI35", "IFIT1", "IFIT3", "IFITM1", "IFNAR1", "IFNAR2", "IFNGR1", "IFNGR2", "IRF1", "IRF9", "JAK1", "MX1", "OAS1", "PIAS1", "PSM8", "SOCS1", "STAT1", "STAT2", "TAP1", "TYK2" ] }, "position": { "x": 1188.8972977847611, "y": 1801.8587965586644, "id": "c334d77c-e9ba-42fa-bab6-de43f81e082f" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "864d29ee-3b91-4c86-ac1d-8b9bbb36ebc6", "name": [ "ROS AND RNS PRODUCTION IN PHAGOCYTES%REACTOME%R-HSA-1222556.11" ], "description": [ "ROS and RNS production in phagocytes" ], "pvalue": 0.0004, "gs_type": null, "gs_size": 36, "padj": 0.0069, "mcode_cluster_id": "Cluster 25", "NES": 1.9947, "genes": [ "ATP6V0A1", "ATP6V0A2", "ATP6V0A4", "ATP6V0B", "ATP6V0C", "ATP6V0D1", "ATP6V0D2", "ATP6V0E1", "ATP6V0E2", "ATP6V1A", "ATP6V1B1", "ATP6V1B2", "ATP6V1C1", "ATP6V1C2", "ATP6V1D", "ATP6V1E1", "ATP6V1E2", "ATP6V1F", "ATP6V1G1", "ATP6V1G2", "ATP6V1G3", "ATP6V1H", "CYBA", "CYBB", "HVCN1", "LPO", "MPO", "NCF1", "NCF2", "NCF4", "NOS1", "NOS2", "NOS3", "RAC2", "SLC11A1", "TCIRG1" ] }, "position": { "x": 1311.8531054270186, "y": 98.57814683569481, "id": "864d29ee-3b91-4c86-ac1d-8b9bbb36ebc6", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "304b3755-2434-4a6f-b5b2-2df6c7309f05", "name": [ "NEGATIVE REGULATION OF IMMUNE SYSTEM PROCESS%GOBP%GO:0002683" ], "description": [ "negative regulation of immune system process" ], "pvalue": 0, "gs_type": null, "gs_size": 386, "padj": 0.0009, "mcode_cluster_id": null, "NES": -1.6629, "genes": [ "A2M", "ABHD17A", "ACOD1", "ADIPOQ", "ADTRP", "AHR", "AKT1", "ALOX15", "AMBP", "ANXA1", "APCS", "APOA1", "APOA2", "APOD", "APPL1", "ARG1", "ARRB2", "ATG12", "ATG5", "ATM", "AURKB", "BANF1", "BANK1", "BMP4", "BMP5", "BPI", "BPIFB1", "BST2", "BTN2A2", "BTRC", "C1QBP", "C1QC", "C4BPA", "C4BPB", "C5", "C5AR2", "CACTIN", "CARD8", "CARTPT", "CBFB", "CCL2", "CCL21", "CCL25", "CCL28", "CCL3", "CCN3", "CCR2", "CD160", "CD200", "CD200R1", "CD22", "CD274", "CD300A", "CD300LF", "CD33", "CD46", "CD55", "CD59", "CD68", "CD80", "CD84", "CDK6", "CEACAM1", "CEBPB", "CEP63", "CGAS", "CLEC12B", "CNOT7", "COL3A1", "CPTP", "CR1", "CR1L", "CR2", "CRTAM", "CSNK1A1", "CST7", "CTLA4", "CTSG", "CUEDC2", "CX3CL1", "CX3CR1", "CXCL12", "DAB2IP", "DAPL1", "DCST1", "DDT", "DGKZ", "DHX58", "DLG5", "DPP4", "DTX4", "DUSP1", "DUSP22", "DUSP3", "EIF4E2", "EMILIN1", "ENPP3", "ERBIN", "ERFE", "EZR", "F2RL1", "FADD", "FAM3A", "FBN1", "FBXL2", "FBXW7", "FCGR2B", "FCRL3", "FER", "FGL1", "FGR", "FN1", "FOXJ1", "FOXP3", "FSTL3", "FURIN", "FYN", "GBP1", "GCSAM", "GIGYF2", "GLI3", "GLMN", "GPATCH3", "GPER1", "GPNMB", "GPR108", "GPR137", "GPR137B", "GPR55", "GPS2", "GRAMD4", "GREM1", "GRN", "HAVCR2", "HCK", "HFE", "HLA-A", "HLA-B", "HLA-DOA", "HLA-DOB", "HLA-DRB1", "HLA-E", "HLA-F", "HLA-G", "HMGB1", "HMOX1", "HOXA7", "ID2", "IFI16", "IFNA2", "IFNB1", "IFNL1", "IHH", "IL10", "IL17D", "IL31RA", "IL4", "IL4I1", "ILDR2", "INHA", "INHBA", "INPP5D", "INS", "IRAK3", "IRF1", "IRGM", "ISG15", "ITCH", "JAK3", "KIR2DL4", "KLRC1", "KLRD1", "KLRK1", "LAG3", "LAPTM5", "LAX1", "LDLR", "LGALS3", "LGALS9", "LGALS9B", "LGALS9C", "LGR4", "LILRA2", "LILRA4", "LILRB1", "LILRB2", "LILRB3", "LILRB4", "LOXL3", "LPXN", "LRCH1", "LRFN5", "LRRC14", "LRRC17", "LST1", "LTF", "LYAR", "LYN", "LYPLAL1", "MAFB", "MAPK14", "MAVS", "MDK", "MEFV", "METTL3", "MFHAS1", "MIA3", "MICA", "MIF", "MILR1", "MIR155HG", "MKRN2", "MNDA", "MT-RNR2", "MUL1", "MYC", "NBL1", "NCKAP1L", "NFKBIL1", "NLRC3", "NLRC5", "NLRP2B", "NLRP4", "NMI", "NPLOC4", "NR1D1", "NR1H2", "NR1H3", "OAS1", "OAS3", "OTOP1", "OTUD4", "PADI2", "PAG1", "PARP1", "PARP14", "PARP3", "PCBP2", "PDCD1", "PDCD1LG2", "PHPT1", "PIBF1", "PIM1", "PLA2G2A", "PLA2G2D", "PLA2G2E", "PLA2G2F", "PLA2G5", "PLCB1", "PLCG1", "PLK2", "PPARG", "PPP6C", "PPT1", "PRKAR1A", "PRKDC", "PRNP", "PTGER4", "PTPN2", "PTPN22", "PTPRC", "PTPRJ", "PTPRS", "PVRIG", "PYDC1", "PYDC2", "PYDC5", "RAB7B", "RARA", "RC3H1", "RC3H2", "RHBDF2", "RIN3", "RIOK3", "RIPOR2", "RNF115", "RNF125", "RNF170", "RPS19", "RUNX1", "RUNX3", "SAMHD1", "SAMSN1", "SCRIB", "SDC4", "SEC14L1", "SELENOS", "SERPINB4", "SERPINB9", "SERPING1", "SFN", "SFRP1", "SFTPD", "SH2D1A", "SLA2", "SLAMF8", "SLC4A2", "SLIT2", "SMAD7", "SMCR8", "SMIM30", "SMPDL3B", "SOCS1", "SOCS5", "SOX11", "SOX9", "SPI1", "SPINK5", "SPN", "SQSTM1", "SRC", "STAP1", "STAT2", "SUSD4", "SVEP1", "SYK", "SYT11", "TAFA3", "TAPBPL", "TARBP2", "TARM1", "TAX1BP1", "TBX21", "TCTA", "TGFB1", "TGFB2", "TGFB3", "THBS1", "THY1", "TIGIT", "TKFC", "TLR3", "TLR4", "TLR6", "TMEM131L", "TMEM176B", "TMEM178A", "TNF", "TNFAIP3", "TNFAIP6", "TNFAIP8L2", "TNFRSF11B", "TNFRSF13B", "TNFRSF14", "TNFRSF21", "TNFSF4", "TRAFD1", "TREM2", "TREX1", "TRIM11", "TRIM21", "TRIM27", "TRIM31", "TRIM32", "TSC22D1", "TSC22D3", "TSPAN6", "TTLL12", "TWSG1", "TYRO3", "TYROBP", "UBASH3A", "UFD1", "UFL1", "USP15", "USP18", "USP38", "VSIG4", "VSIR", "VTCN1", "WASL", "WDR41", "XCL1", "YES1", "YTHDF2", "YTHDF3", "YWHAE", "YWHAZ", "ZBTB7B", "ZC3H12A", "ZC3H8", "ZDHHC12", "ZDHHC18", "ZFPM1", "ZNF675", "ZNRF4" ] }, "position": { "x": 2089.403836469449, "y": 378.76516351872135, "id": "304b3755-2434-4a6f-b5b2-2df6c7309f05" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "2468eaeb-90a8-4b79-bffa-5afd0ef5817a", "name": [ "G-PROTEIN BETA:GAMMA SIGNALLING%REACTOME DATABASE ID RELEASE 81%397795" ], "description": [ "G-protein beta:gamma signalling" ], "pvalue": 0.003, "gs_type": null, "gs_size": 32, "padj": 0.0357, "mcode_cluster_id": null, "NES": 1.7291, "genes": [ "AKT1", "AKT2", "AKT3", "ARHGEF6", "BTK", "CDC42", "GNB1", "GNB2", "GNB3", "GNB4", "GNB5", "GNG10", "GNG11", "GNG12", "GNG13", "GNG2", "GNG3", "GNG4", "GNG5", "GNG7", "GNG8", "GNGT1", "GNGT2", "PAK1", "PDPK1", "PIK3CG", "PIK3R5", "PIK3R6", "PLCB1", "PLCB2", "PLCB3", "RHOA" ] }, "position": { "x": 3841.539072651805, "y": 2195.9446642487483, "id": "2468eaeb-90a8-4b79-bffa-5afd0ef5817a" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "a42e3bbf-642e-4ec5-90e1-85dc05f8caf8", "name": [ "REGULATION OF ALPHA-BETA T CELL PROLIFERATION%GOBP%GO:0046640" ], "description": [ "regulation of alpha-beta T cell proliferation" ], "pvalue": 0.0037, "gs_type": null, "gs_size": 27, "padj": 0.0414, "mcode_cluster_id": null, "NES": -1.7537, "genes": [ "CCR2", "CD274", "CD55", "CD81", "EBI3", "HLA-A", "HLA-E", "IL12B", "IL18", "IL23A", "IRF1", "JAK2", "LGALS9", "LGALS9B", "LGALS9C", "MAPK8IP1", "RASAL3", "SH3RF1", "SLC4A2", "TGFBR2", "TNFRSF14", "TNFSF4", "TWSG1", "TYK2", "VSIR", "XCL1", "ZBTB7B" ] }, "position": { "x": 345.5, "y": 2272.9446642487483, "id": "a42e3bbf-642e-4ec5-90e1-85dc05f8caf8" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "8aea10bd-3c39-46b4-9465-cb411ab247d8", "name": [ "DNA STRAND ELONGATION%REACTOME%R-HSA-69190.4" ], "description": [ "DNA strand elongation" ], "pvalue": 0.0044, "gs_type": null, "gs_size": 32, "padj": 0.0461, "mcode_cluster_id": null, "NES": -1.6277, "genes": [ "CDC45", "DNA2", "FEN1", "GINS1", "GINS2", "GINS3", "GINS4", "LIG1", "MCM2", "MCM3", "MCM4", "MCM5", "MCM6", "MCM7", "MCM8", "PCNA", "POLA1", "POLA2", "POLD1", "POLD2", "POLD3", "POLD4", "PRIM1", "PRIM2", "RFC1", "RFC2", "RFC3", "RFC4", "RFC5", "RPA1", "RPA2", "RPA3" ] }, "position": { "x": 949.0762912126055, "y": 944.0265908921675, "id": "8aea10bd-3c39-46b4-9465-cb411ab247d8" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "ab7810f0-02db-4b8b-8f86-59cea7883939", "name": [ "REGULATION OF ADAPTIVE IMMUNE RESPONSE BASED ON SOMATIC RECOMBINATION OF IMMUNE RECEPTORS BUILT FROM IMMUNOGLOBULIN SUPERFAMILY DOMAINS%GOBP%GO:0002822" ], "description": [ "regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains" ], "pvalue": 0.0016, "gs_type": null, "gs_size": 147, "padj": 0.0233, "mcode_cluster_id": "Cluster 5", "NES": -1.5789, "genes": [ "AGER", "AHR", "ANXA1", "B2M", "BATF", "BCL6", "BRD2", "BRD4", "BTK", "C17orf99", "C4BPA", "C4BPB", "CARD9", "CCL19", "CCR2", "CD1A", "CD1B", "CD1C", "CD1D", "CD1E", "CD226", "CD274", "CD46", "CD55", "CD80", "CD81", "CEACAM1", "CLC", "CLCF1", "CLEC6A", "CLEC7A", "CR1", "CR1L", "CR2", "CYRIB", "DENND1B", "EP300", "FADD", "FBXO38", "FCGR2B", "FOXJ1", "FOXP3", "FUT7", "FZD5", "HFE", "HLA-A", "HLA-B", "HLA-C", "HLA-DRA", "HLA-DRB1", "HLA-DRB3", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "HMCES", "HMGB1", "HSPD1", "IFNA2", "IFNB1", "IL10", "IL12A", "IL12B", "IL12RB1", "IL18", "IL18R1", "IL1B", "IL1R1", "IL23A", "IL23R", "IL27", "IL4", "IL4I1", "IL6", "JAK2", "JAK3", "JUNB", "KLRC1", "KLRD1", "KMT5B", "KMT5C", "LILRB1", "LILRB4", "LOXL3", "MAD2L2", "MALT1", "MAP3K7", "MEF2C", "MICA", "MICB", "MR1", "NCKAP1L", "NECTIN2", "NFKBID", "NFKBIZ", "NLRP10", "NLRP3", "OPA1", "PARP3", "PAXIP1", "PDCD1", "PRKCQ", "PRKCZ", "PTPRC", "PVR", "RAET1E", "RAET1G", "RAET1L", "RC3H1", "RC3H2", "RIF1", "RIPK3", "RSAD2", "SHLD1", "SHLD2", "SHLD3", "SLC11A1", "SLC15A4", "SLC22A13", "SMAD7", "SOCS5", "STX7", "SUPT6H", "SUSD4", "SVEP1", "TBX21", "TFRC", "TGFB1", "TNFAIP3", "TNFRSF1B", "TNFSF13", "TNFSF4", "TP53BP1", "TRAF2", "TRAF6", "TREM2", "TRPM4", "TYK2", "UFL1", "ULBP1", "ULBP2", "ULBP3", "WAS", "XCL1", "ZBTB1", "ZC3H12A", "ZP3" ] }, "position": { "x": 2159.896564620222, "y": 752.366793997951, "id": "ab7810f0-02db-4b8b-8f86-59cea7883939", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "ac3859cf-a372-430f-ab5c-eb419de2b6bc", "name": [ "HALLMARK_COMPLEMENT%MSIGDBHALLMARK%HALLMARK_COMPLEMENT" ], "description": [ "HALLMARK_COMPLEMENT" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 155, "padj": 0.0055, "mcode_cluster_id": null, "NES": -1.7035, "genes": [ "ACTN2", "ADAM9", "ADIC", "ADRA2B", "AKAP10", "APOA4", "APOBEC3F", "APOBEC3G", "APOC1", "ARHG", "ATOX1", "BRPF3", "C1QC", "C1R", "C1S", "C2", "C4BPB", "C9", "CASP10", "CASP3", "CASP4", "CASP5", "CASP9", "CCL5", "CD36", "CD40LG", "CD46", "CD55", "CD59", "CDA", "CDK5R1", "CEBPB", "CFH", "CLU", "COL4A2", "CP", "CPM", "CPQ", "CR1", "CR2", "CTSC", "CTSH", "CTSL", "CTSO", "CTSS", "CXCL1", "DGKG", "DKFZp686N0152", "DOCK10", "DOCK4", "DOCK9", "DPP4", "DUSP5", "DYRK2", "EHD1", "F10", "F2", "F3", "F5", "F7", "F8", "FCER1G", "FCN1", "FDX1", "FYN", "GATA3", "GCA", "GMFB", "GNAI3", "GNB2", "GNB4", "GNG2", "GNGT2", "GP1BA", "GP9", "GPD2", "GRB2", "GZMA", "GZMK", "HEL-76", "HEL-S-130P", "HEL-S-62p", "HEL-S-7", "HEL-S-72", "HEL-S-89n", "HEL110", "HPCAL4", "IL6", "IRF1", "IRF2", "IRF7", "ITGAM", "KCNIP3", "KLKB1", "KLNA1", "KYNU", "L3MBTL4", "LAMP2", "LAP3", "LCK", "LCP2", "LIPA", "LYN", "MAFF", "ME1", "MMP12", "MMP14", "MMP15", "MSRB1", "MT3", "NR2A1", "OLR1", "PCLO", "PCSK9", "PFN1", "PIK3R5", "PIM1", "PLA2G7", "PLAT", "PLAUR", "PLEK", "PLG", "PLSCR1", "PPM2C", "PPP4C", "PRCP", "PSEN1", "RAA1", "RAF1", "RCE1", "RNF4", "S100A12", "S100A13", "S100A9", "SCG3", "SERPINA1", "SERPINB2", "SERPINC1", "SERPINE1", "SERPING1", "SH2B3", "SIRT6", "SPOCK2", "SRC", "STX4A", "TFPI2", "TIMP1", "TMPRSS6", "TNFAIP3", "USP14", "USP15", "USP16", "VCPIP1", "WAS", "XPNPEP1" ] }, "position": { "x": 3194.5, "y": 2195.9446642487483, "id": "ac3859cf-a372-430f-ab5c-eb419de2b6bc" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "bc2a6276-c085-4011-a84b-10e3f2477948", "name": [ "NEGATIVE REGULATION OF IMMUNE EFFECTOR PROCESS%GOBP%GO:0002698" ], "description": [ "negative regulation of immune effector process" ], "pvalue": 0.0000017759, "gs_type": null, "gs_size": 83, "padj": 0.0001, "mcode_cluster_id": "Cluster 27", "NES": -2.1473, "genes": [ "A2M", "AHR", "ANXA1", "APOA1", "APOA2", "APPL1", "ARRB2", "BST2", "C4BPA", "C4BPB", "CCR2", "CD22", "CD274", "CD300A", "CD46", "CD55", "CD59", "CD80", "CD84", "CEACAM1", "CLEC12B", "CR1", "CR1L", "CR2", "CUEDC2", "CX3CR1", "ENPP3", "FCGR2B", "FCRL3", "FER", "FOXJ1", "FOXP3", "GRN", "HAVCR2", "HFE", "HLA-A", "HLA-B", "HLA-E", "HLA-F", "HLA-G", "IFNA2", "IFNB1", "IFNL1", "IL10", "IL4I1", "INS", "IRAK3", "JAK3", "KIR2DL4", "KLRC1", "KLRD1", "LGALS3", "LGALS9", "LILRB1", "LILRB4", "LOXL3", "MICA", "NCKAP1L", "PARP3", "PDCD1", "PTPRC", "RC3H1", "RC3H2", "RPS19", "SERPINB4", "SERPINB9", "SERPING1", "SLAMF8", "SMAD7", "SOCS5", "SPI1", "SUSD4", "SVEP1", "TBX21", "TGFB1", "TGFB2", "TGFB3", "TNF", "TNFSF4", "UFL1", "VSIG4", "XCL1", "ZC3H12A" ] }, "position": { "x": 2128.156319565441, "y": 587.4629597488276, "id": "bc2a6276-c085-4011-a84b-10e3f2477948", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "9181fb51-616b-4f2f-aef4-cf4f5ebc8835", "name": [ "ANTIGEN RECEPTOR-MEDIATED SIGNALING PATHWAY%GOBP%GO:0050851" ], "description": [ "antigen receptor-mediated signaling pathway" ], "pvalue": 0.0015, "gs_type": null, "gs_size": 136, "padj": 0.0217, "mcode_cluster_id": "Cluster 28", "NES": -1.6243, "genes": [ "BANK1", "BAX", "BCAR1", "BCL10", "BCL2", "BLK", "BLNK", "BMX", "BTK", "BTN1A1", "BTN2A1", "BTN2A2", "BTN2A3P", "BTN3A1", "BTN3A2", "BTN3A3", "BTNL10P", "BTNL2", "BTNL3", "BTNL8", "BTNL9", "CD19", "CD247", "CD276", "CD28", "CD38", "CD3D", "CD3E", "CD3G", "CD79A", "CD79B", "CD8A", "CD8B", "CSK", "CTLA4", "DENND1B", "EIF2B1", "EIF2B2", "EIF2B3", "EIF2B4", "EIF2B5", "ERMAP", "FCHO1", "FYB1", "FYB2", "FYN", "GATA3", "HHLA2", "HLA-A", "HLA-DPB1", "HLA-DQB1", "HLA-DRB1", "HLA-DRB3", "ICOSLG", "IGHA1", "IGHA2", "IGHD", "IGHE", "IGHG1", "IGHG2", "IGHG3", "IGHG4", "IGHM", "IGKC", "IGLC1", "IGLC3", "IGLC6", "IGLC7", "IKBKB", "IKBKG", "INPP5D", "ITK", "KHDRBS1", "LAT", "LAT2", "LAX1", "LCK", "LCP2", "LIME1", "MALT1", "MAP3K7", "MEF2C", "MNDA", "MOG", "MS4A1", "NCKAP1L", "NFAM1", "NFATC2", "NFKBID", "NFKBIZ", "PDE4B", "PDE4D", "PIK3CA", "PIK3CD", "PLCG1", "PLCG2", "PLEKHA1", "PRAM1", "PRKCB", "PRKD2", "PTPN22", "PTPRC", "PTPRJ", "RBCK1", "RC3H1", "RC3H2", "RFTN1", "RIPK2", "RNF31", "SH2B2", "SKAP1", "SLA2", "SLC39A6", "SPG21", "SPPL3", "STOML2", "SYK", "TEC", "THEMIS", "THEMIS2", "THY1", "TNFRSF21", "TRAC", "TRAF6", "TRBC1", "TRBC2", "TRDC", "TRGC1", "TRGC2", "TXK", "UBE2N", "VAV3", "VTCN1", "WNK1", "ZAP70", "ZC3H12A" ] }, "position": { "x": 1668.8351797531554, "y": 609.1182564492666, "id": "9181fb51-616b-4f2f-aef4-cf4f5ebc8835", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "72ea6b23-7fe8-4f2c-a476-fb9f42f41177", "name": [ "HOST PATHOGEN INTERACTION OF HUMAN CORONAVIRUSES INTERFERON INDUCTION%WIKIPATHWAYS_20240410%WP4880%HOMO SAPIENS" ], "description": [ "Host pathogen interaction of human coronaviruses interferon induction" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 33, "padj": 0.0025, "mcode_cluster_id": null, "NES": -1.99, "genes": [ "CHUK", "EIF2AK2", "FOS", "IFIH1", "IFNAR1", "IFNAR2", "IKBKB", "IKBKE", "IKBKG", "IRF3", "IRF9", "JAK1", "JUN", "MAP3K7", "MAPK14", "MAPK8", "MAVS", "MYD88", "NFKB1", "NFKBIA", "OAS1", "OAS2", "OAS3", "RIGI", "RIPK1", "STAT1", "STAT2", "TBK1", "TICAM1", "TLR7", "TRAF3", "TRAF6", "TYK2" ] }, "position": { "x": 2461.721023043854, "y": 1325.7825067835533, "id": "72ea6b23-7fe8-4f2c-a476-fb9f42f41177" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "24b8c3ee-e039-4bd6-b2e9-0c0fd1be178e", "name": [ "CELLULAR RESPONSE TO CYTOKINE STIMULUS%GOBP%GO:0071345" ], "description": [ "cellular response to cytokine stimulus" ], "pvalue": 1.615e-9, "gs_type": null, "gs_size": 450, "padj": 1.3231e-7, "mcode_cluster_id": "Cluster 33", "NES": -1.9103, "genes": [ "ACKR3", "ACOD1", "ACTN4", "ADAMTS12", "ADAMTS7", "ADIPOR1", "ADIPOR2", "AIF1", "AIM2", "AKAP6", "AKT1", "ALOX15", "ANKRD1", "APPL1", "APPL2", "AQP4", "ARHGEF2", "ASAH1", "ASAH2", "AXL", "AZI2", "BAG4", "BBS2", "BBS4", "BIRC2", "BIRC3", "BRCA1", "CACTIN", "CALM1", "CAMK2A", "CARD14", "CASP1", "CBL", "CCL1", "CCL11", "CCL13", "CCL14", "CCL15", "CCL16", "CCL17", "CCL18", "CCL19", "CCL2", "CCL20", "CCL21", "CCL22", "CCL23", "CCL24", "CCL25", "CCL26", "CCL3", "CCL3L3", "CCL4", "CCL4L2", "CCL5", "CCL7", "CCL8", "CCR1", "CCR2", "CCR7", "CD300LF", "CD4", "CD47", "CD58", "CDC34", "CDK9", "CEACAM1", "CEBPA", "CHI3L1", "CHUK", "CIB1", "CLCF1", "CNTF", "CNTFR", "COMMD7", "CRHBP", "CRIPTO", "CRLF1", "CRLF2", "CRNN", "CSF1R", "CSF2", "CSF2RA", "CSF2RB", "CSF3", "CSF3R", "CSNK2B", "CTR9", "CTSG", "CX3CL1", "CXCL1", "CXCL10", "CXCL11", "CXCL12", "CXCL13", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "CXCR2", "CXCR4", "DAB2IP", "DAPK1", "DAPK3", "DCSTAMP", "DHX9", "DOCK8", "DPYSL3", "DUOX1", "DUOX2", "DUSP1", "EBI3", "EDA", "EDA2R", "EDAR", "EDN2", "EGR1", "EIF5A", "ENTREP1", "EPO", "EPOR", "EPRS1", "ERBIN", "EREG", "F3", "FCER1G", "FER", "FLT3", "FOXC1", "FOXH1", "FOXO3", "GAPDH", "GAS6", "GATA3", "GBA1", "GBP1", "GBP2", "GBP3", "GBP4", "GBP5", "GBP6", "GBP7", "GH1", "GHR", "GPER1", "GPR35", "GPR75", "GREM2", "GSDME", "GSK3A", "GSK3B", "HAS2", "HAX1", "HCK", "HCLS1", "HDAC4", "HIF1A", "HLA-DPA1", "HMHB1", "HNRNPU", "HTRA2", "HYAL1", "HYAL2", "HYAL3", "IFI16", "IFI27", "IFIT1", "IFITM1", "IFITM2", "IFITM3", "IFNA10", "IFNA13", "IFNA14", "IFNA16", "IFNA17", "IFNA2", "IFNA21", "IFNA4", "IFNA5", "IFNA6", "IFNA7", "IFNA8", "IFNAR1", "IFNAR2", "IFNB1", "IFNE", "IFNG", "IFNGR1", "IFNGR2", "IFNK", "IFNL1", "IFNL2", "IFNL3", "IFNL4", "IFNLR1", "IFNW1", "IKBKB", "IKBKE", "IL10", "IL10RA", "IL10RB", "IL11", "IL11RA", "IL12A", "IL12B", "IL12RB1", "IL12RB2", "IL13RA1", "IL13RA2", "IL15", "IL15RA", "IL17A", "IL17F", "IL17RA", "IL17RC", "IL18", "IL18R1", "IL18RAP", "IL1A", "IL1B", "IL1F10", "IL1R1", "IL1RAP", "IL1RL1", "IL2", "IL20RA", "IL20RB", "IL21R", "IL22RA1", "IL22RA2", "IL23R", "IL27RA", "IL2RA", "IL2RB", "IL2RG", "IL3", "IL31RA", "IL33", "IL34", "IL36A", "IL36B", "IL36G", "IL37", "IL3RA", "IL4", "IL4R", "IL5", "IL5RA", "IL6", "IL6R", "IL6ST", "IL7", "IL7R", "IL9R", "ILK", "INPP5K", "IRAK1", "IRAK2", "IRAK3", "IRAK4", "IRF1", "IRF5", "IRF8", "IRGM", "IRS1", "JAGN1", "JAK1", "JAK2", "JAK3", "KHSRP", "KIT", "LDLRAP1", "LEF1", "LEP", "LEPR", "LGALS9", "LIFR", "LILRA1", "LILRA2", "LILRA3", "LILRA4", "LILRA5", "LILRB1", "LILRB2", "LILRB4", "LIMS1", "LRCH1", "LRP8", "LYN", "MAP3K7", "MAPK11", "MAPK13", "MAPK3", "MAVS", "MFAP3", "MKKS", "MME", "MNDA", "MPL", "MT1X", "MT2A", "MT3", "MX1", "MYD88", "MYLK3", "NDUFA13", "NFAT5", "NFE2L2", "NFKB1", "NFKBIA", "NKX3-1", "NLRP12", "NLRP7", "NPNT", "NPR2", "NR1D1", "NUMBL", "OAS1", "OAS2", "OASL", "OCSTAMP", "OSM", "OSMR", "OXSR1", "P4HB", "PDE12", "PDE1B", "PDE2A", "PDGFB", "PF4", "PF4V1", "PHB1", "PID1", "PIK3R1", "PIM1", "PLCB1", "PLP2", "PLVAP", "PNPT1", "POU4F1", "POU4F2", "PPBP", "PRKACA", "PRL", "PRLR", "PTGIS", "PTK2B", "PTPN11", "PTPN6", "PTPRJ", "PTPRT", "PYCARD", "PYDC5", "PYHIN1", "RAF1", "RBM15", "RBMX", "RC3H1", "RELA", "RHEX", "RHOA", "RIPK1", "RIPOR2", "RO60", "RPL13A", "RPS3", "RPS6KA4", "RPS6KA5", "RRAGA", "RUFY4", "SBNO2", "SELPLG", "SFRP1", "SH2B3", "SHPK", "SIRPA", "SIRT1", "SLC12A2", "SLC26A6", "SMAD4", "SMPD4", "SOCS1", "SOCS5", "SOS1", "SOX9", "SP100", "SPI1", "SRC", "ST18", "ST3GAL6", "STAT1", "STAT2", "STAT3", "STAT4", "STAT5A", "STAT5B", "STAT6", "STK39", "SYK", "SYNCRIP", "TANK", "TBK1", "TBKBP1", "TCF7", "TFF2", "THPO", "TLR2", "TLR4", "TMSB4X", "TNF", "TNFRSF11A", "TNFRSF1A", "TNFRSF1B", "TNFRSF21", "TNFSF11", "TNFSF18", "TNIP2", "TOLLIP", "TP53", "TPR", "TRADD", "TRAF1", "TRAF2", "TRAF3", "TRAF3IP2", "TRAF5", "TRAF6", "TREM2", "TRIM6", "TSLP", "TXNDC17", "TYK2", "UBE2G2", "UBE2K", "UGCG", "UPF1", "USP10", "WNK1", "WNT5A", "XBP1", "XCL1", "XCL2", "YBX3", "ZC3H12A", "ZFAND6", "ZFP36", "ZFP36L1", "ZFP36L2" ] }, "position": { "x": 2839.0617072137425, "y": 1388.026549459165, "id": "24b8c3ee-e039-4bd6-b2e9-0c0fd1be178e", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "8e7cec83-e3ec-443a-bbae-c00ce186dd3b", "name": [ "SPINAL CORD INJURY%WIKIPATHWAYS_20240410%WP2431%HOMO SAPIENS" ], "description": [ "Spinal cord injury" ], "pvalue": 0.0008, "gs_type": null, "gs_size": 103, "padj": 0.0127, "mcode_cluster_id": null, "NES": -1.6589, "genes": [ "ACAN", "ADIA", "AIF1", "ANXA1", "APEX1", "AQP1", "AQP4", "ARG1", "ARHA", "BCAN", "BDNF", "BTG2", "CASP3", "CCL2", "CCND1", "CCNG1", "CCR2", "CD47", "CDC2", "CDC42", "CDK2", "CDK4", "CDKN1B", "CHST11", "COL2A1", "COL4A1", "CSPG4", "CXCL1", "CXCL2", "CXCL8", "CXNK2", "E2F5", "EFNB2", "EGFR", "EGR1", "EPHA4", "FCGR2A", "FKBP1A", "FOS", "FOXO3A", "GADD45A", "GAP43", "GDNF", "GFAP", "GRIN1", "HEL113", "IF2F", "IL1A", "IL1B", "IL1R1", "IL2", "IL4", "IL6", "KLK8", "LEP", "LILRB3", "LTB", "LTB4R", "MAPK1", "MAPK3", "MBP", "MIF", "MMP12", "MMP9", "MYC", "NGFR", "NOS2", "NTN1", "OMG", "PDYN", "PLA2G2A", "PLA2G5", "PLA2G6", "PLXNA2", "PPP3CA", "PRB1", "PRB2", "PRKCA", "PTGS2", "PTPRA", "RAC1", "RB1", "RGMA", "RHOB", "ROCK2", "ROS1", "RTN4", "RTN4R", "SELP", "SEMA6A", "SLIT1", "SLIT2", "SLIT3", "SOX9", "TACR1", "TGFB1", "TLR4", "TNF", "TNFSF13", "TNLG7A", "VCAN", "XYLT1", "ZFP36" ] }, "position": { "x": 2424.5, "y": 2195.9446642487483, "id": "8e7cec83-e3ec-443a-bbae-c00ce186dd3b" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "85446e1b-b536-4525-bd76-a5d08e5812d6", "name": [ "NEGATIVE REGULATION OF LEUKOCYTE MEDIATED IMMUNITY%GOBP%GO:0002704" ], "description": [ "negative regulation of leukocyte mediated immunity" ], "pvalue": 0, "gs_type": null, "gs_size": 51, "padj": 0.0005, "mcode_cluster_id": null, "NES": -2.0999, "genes": [ "AHR", "ARRB2", "BST2", "C4BPA", "C4BPB", "CCR2", "CD274", "CD300A", "CD46", "CD80", "CD84", "CEACAM1", "CLEC12B", "CR1", "CR1L", "CR2", "CX3CR1", "FCGR2B", "FOXJ1", "FOXP3", "HFE", "HLA-A", "HLA-B", "HLA-E", "HLA-F", "HLA-G", "IFNA2", "IFNB1", "IL4I1", "JAK3", "KIR2DL4", "KLRC1", "KLRD1", "LGALS9", "LILRB1", "LILRB4", "MICA", "NCKAP1L", "PARP3", "PDCD1", "PTPRC", "SERPINB4", "SERPINB9", "SMAD7", "SPI1", "SUSD4", "SVEP1", "TBX21", "TGFB1", "UFL1", "XCL1" ] }, "position": { "x": 2054.647448818033, "y": 649.9752695923264, "id": "85446e1b-b536-4525-bd76-a5d08e5812d6" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "316b7b8d-bd3d-45b0-a76e-dba459acda4b", "name": [ "REGULATION OF PLASMA LIPOPROTEIN PARTICLE LEVELS%GOBP%GO:0097006" ], "description": [ "regulation of plasma lipoprotein particle levels" ], "pvalue": 0.0044, "gs_type": null, "gs_size": 55, "padj": 0.0461, "mcode_cluster_id": "Cluster 21", "NES": -1.6464, "genes": [ "ABCA1", "ABCA5", "ABCA7", "ABCG1", "ACSL3", "ADIPOQ", "AGT", "AGTR1", "APOA1", "APOA2", "APOA4", "APOB", "APOC1", "APOC2", "APOC3", "APOE", "APOM", "CD36", "CES3", "CETP", "CIDEB", "DGAT1", "DGAT2", "EHD1", "FURIN", "HMOX1", "LCAT", "LDLR", "LDLRAP1", "LIPA", "LIPC", "LIPG", "LPCAT3", "LPL", "MFSD2A", "MPO", "MSR1", "MTTP", "NCEH1", "PCSK5", "PCSK6", "PLA2G10", "PLA2G2A", "PLA2G3", "PLA2G5", "PLA2G7", "PLTP", "PRKACA", "PRKACB", "PRKACG", "SCARB1", "SOAT1", "SOAT2", "VLDLR", "ZDHHC8" ] }, "position": { "x": 2579.9207498589863, "y": 1368.7658054798649, "id": "316b7b8d-bd3d-45b0-a76e-dba459acda4b", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "ccfee566-a703-46cb-a1d8-7f301a7c681b", "name": [ "HAIR FOLLICLE DEVELOPMENT CYTODIFFERENTIATION PART 3 OF 3%WIKIPATHWAYS_20240410%WP2840%HOMO SAPIENS" ], "description": [ "Hair follicle development cytodifferentiation part 3 of 3" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 82, "padj": 0.0015, "mcode_cluster_id": null, "NES": -1.9604, "genes": [ "ADAM17", "ADAMTS20", "ATL1", "BMP4", "BMP6", "BMPR1A", "CASP14", "CD133", "CD200", "CD34", "CTGF", "CTNNB1", "CXNF", "DKFZp434N181", "DKFZp586H0919", "DKK1", "DKK3", "DKK4", "DLX3", "DSC2", "DSG1", "DSG4", "EGFR", "EGR2", "ELANE", "FOS", "FOSB", "FOXE1", "FOXN1", "FOXQ1", "FST", "FZD1", "GAS1", "GATA3", "GPR49", "GPRC5D", "GSDMA", "GTPBP4", "HOXC12", "HR", "IF2F", "IGF1", "IGFBP5", "JUN", "KITLG", "KLK13", "KLK14", "KLK4", "KLK5", "KLK6", "KRT19", "KRTAP15-1", "KRTAP2-4", "KRTAP3-3", "KRTAP6-1", "KRTAP8-1", "LRIG1", "MSX1", "MSX2", "NFATC1", "NFKB1", "NOTCH1", "NR3C1", "Nbla10317", "PERP", "PHLDA1", "RBPJ", "RUNX3", "S100A4", "SFRP1", "SMAD1", "SMAD4", "SOSTDC1", "SOX2", "SOX9", "SPINK5", "SPINK6", "TCF3", "TCF4", "TP63", "WIF1", "ZBTB16" ] }, "position": { "x": 1885.5, "y": 2272.9446642487483, "id": "ccfee566-a703-46cb-a1d8-7f301a7c681b" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "name": [ "SCF(SKP2)-MEDIATED DEGRADATION OF P27 P21%REACTOME DATABASE ID RELEASE 81%187577" ], "description": [ "SCF(Skp2)-mediated degradation of p27 p21" ], "pvalue": 0, "gs_type": null, "gs_size": 60, "padj": 0.001, "mcode_cluster_id": "Cluster 1", "NES": -1.9587, "genes": [ "CCNA1", "CCNA2", "CCND1", "CCNE1", "CCNE2", "CDK2", "CDK4", "CDKN1A", "CDKN1B", "CKS1B", "CUL1", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMB1", "PSMB10", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSMF1", "PTK6", "RPS27A", "SEM1", "SKP1", "SKP2", "UBA52", "UBB", "UBC" ] }, "position": { "x": 448.74508568673156, "y": 837.8136591857993, "id": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "name": [ "UBIQUITIN–PROTEASOME PATHWAY%SMPDB%SMP0063816" ], "description": [ "Ubiquitin–Proteasome Pathway" ], "pvalue": 0.0013, "gs_type": null, "gs_size": 28, "padj": 0.0194, "mcode_cluster_id": "Cluster 1", "NES": -1.7886, "genes": [ "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMB1", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD13", "PSMD4", "STUB1", "UBA1", "UBB", "UBC", "UBD", "UBE2E1" ] }, "position": { "x": 489.6449426679723, "y": 770.1891725998786, "id": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "2f85499a-8ba5-4b57-81ed-6faab231106e", "name": [ "SRP-DEPENDENT COTRANSLATIONAL PROTEIN TARGETING TO MEMBRANE%REACTOME%R-HSA-1799339.4" ], "description": [ "SRP-dependent cotranslational protein targeting to membrane" ], "pvalue": 3.4781e-12, "gs_type": null, "gs_size": 113, "padj": 3.4883e-10, "mcode_cluster_id": "Cluster 2", "NES": 2.4554, "genes": [ "DDOST", "FAU", "RPL10", "RPL10A", "RPL10L", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL22L1", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL26L1", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL36AL", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL39L", "RPL3L", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPN1", "RPN2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "SEC11A", "SEC11C", "SEC61A1", "SEC61A2", "SEC61B", "SEC61G", "SPCS1", "SPCS2", "SPCS3", "SRP14", "SRP19", "SRP54", "SRP68", "SRP72", "SRP9", "SRPRA", "SRPRB", "SSR1", "SSR2", "SSR3", "SSR4", "TRAM1", "UBA52" ] }, "position": { "x": 895.1742172949971, "y": 604.1833128772846, "id": "2f85499a-8ba5-4b57-81ed-6faab231106e", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "name": [ "FORMATION OF PARAXIAL MESODERM%REACTOME%R-HSA-9793380.5" ], "description": [ "Formation of paraxial mesoderm" ], "pvalue": 0.0036, "gs_type": null, "gs_size": 69, "padj": 0.0409, "mcode_cluster_id": "Cluster 1", "NES": -1.6012, "genes": [ "BMP4", "CREBBP", "CTNNB1", "DLL1", "DLL3", "EP300", "EPHA4", "FGFR1", "HES7", "KAT2A", "KAT2B", "LEF1", "LFNG", "MAML1", "MAML2", "MAML3", "MAMLD1", "MESP2", "MSGN1", "NOG", "NOTCH1", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMB1", "PSMB10", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSMF1", "RBPJ", "RIPPLY2", "SEM1", "SNW1", "TBX6", "TBXT", "WNT3A" ] }, "position": { "x": 499.5734197524507, "y": 816.7410464457264, "id": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "8c583627-83a1-4324-af57-909f27ec93a5", "name": [ "ANIMAL ORGAN MORPHOGENESIS%GOBP%GO:0009887" ], "description": [ "animal organ morphogenesis" ], "pvalue": 0, "gs_type": null, "gs_size": 519, "padj": 0.0012, "mcode_cluster_id": "Cluster 16", "NES": -1.5286, "genes": [ "ABCA12", "ABI2", "ABLIM1", "ACP4", "ACTA1", "ACTA2", "ACTC1", "ACTG2", "ACVR1", "ACVRL1", "ADAMTS19", "ADAMTS5", "ADGRG6", "ADPRHL1", "AGTPBP1", "AHDC1", "AHI1", "ALDH1A3", "ALPK2", "ALX1", "AMELX", "AMELY", "AMTN", "ANKRD1", "ANKRD11", "ANKRD24", "APC", "APLNR", "APLP1", "AQP1", "AQP3", "AQP5", "AQP6", "ASXL1", "ASXL2", "ASXL3", "ATF4", "ATG9A", "ATG9B", "ATP6V1B1", "AXIN2", "BBS2", "BBS4", "BBS5", "BBS7", "BCOR", "BMP1", "BMP10", "BMP2", "BMP4", "BMP5", "BMP7", "BMPR1A", "BMPR1B", "BMPR2", "BRAF", "C12orf57", "CAV1", "CCDC103", "CCDC39", "CCDC40", "CCL2", "CCM2L", "CDSN", "CDX1", "CDX2", "CDX4", "CEBPB", "CELSR1", "CEMP1", "CEP290", "CER1", "CFTR", "CHD7", "CITED1", "CITED2", "CLDN5", "CLRN2", "COL13A1", "COL18A1", "COL1A1", "COL1A2", "COL2A1", "COL5A1", "COL5A2", "COL9A1", "COMP", "CPE", "CRB2", "CRIP1", "CRX", "CSF1R", "CTNNA2", "CTNNB1", "CTSH", "CYP26B1", "DCANP1", "DCHS1", "DCN", "DGCR2", "DGCR6", "DLC1", "DLL1", "DLL4", "DLX5", "DNAAF1", "DSCAM", "DSCAML1", "DSP", "DSPP", "DVL1", "DVL2", "DYNC2I1", "DZANK1", "EDA", "EFEMP1", "EFEMP2", "EFNA1", "EIF4A3", "ELF3", "ELN", "EMP2", "ENAM", "ENG", "EPHA2", "EPHB2", "EPHB4", "EREG", "ERRFI1", "ETV7", "EVL", "EZR", "FAM20A", "FAM20C", "FBN1", "FBN2", "FBXW11", "FGD1", "FGF1", "FGF10", "FGF16", "FGF17", "FGF18", "FGF19", "FGF2", "FGF20", "FGF21", "FGF22", "FGF23", "FGF3", "FGF4", "FGF5", "FGF6", "FGF7", "FGF8", "FGF9", "FGFR1", "FGFR2", "FGFR3", "FGL1", "FHL1", "FKBP1A", "FLRT2", "FOLR1", "FOXC1", "FOXD1", "FOXE1", "FOXE3", "FOXF1", "FOXF2", "FOXH1", "FOXI3", "FOXJ1", "FOXN1", "FOXN4", "FREM1", "FUZ", "FZD3", "FZD6", "GATA3", "GATA4", "GATA5", "GATA6", "GDNF", "GJA5", "GLI2", "GLI3", "GPC3", "GREM1", "GREM2", "GSC", "GSK3A", "HAND1", "HAND2", "HAS2", "HCCS", "HDAC1", "HDAC2", "HES1", "HEY1", "HEY2", "HEYL", "HHIP", "HNF1A", "HNF1B", "HOXA1", "HOXA11", "HOXA3", "HOXA4", "HOXA9", "HOXB3", "HOXB4", "HOXB9", "HOXC4", "HOXC9", "HOXD11", "HOXD3", "HOXD4", "HOXD9", "HPN", "HRAS", "HTR2B", "ID2", "IFITM5", "IFT122", "IHH", "IL6", "IL7", "INHBA", "INPPL1", "INSR", "INTU", "IRX5", "ISL1", "ITGA2", "ITGA6", "ITGAX", "ITGB4", "JAG1", "KDM2B", "KLHL3", "KLK4", "KLK5", "LAMA5", "LAMB1", "LEFTY1", "LFNG", "LHX1", "LHX3", "LRP2", "LRP5", "LRRK2", "LTF", "LY6H", "MDM4", "MEF2C", "MEGF11", "MEGF8", "MEIS1", "MEIS2", "MEIS3", "MEIS3P1", "MEIS3P2", "MESP1", "MESP2", "MFAP2", "MFAP5", "MFSD2A", "MGP", "MICAL2", "MKKS", "MMP13", "MMP20", "MSN", "MSX1", "MSX2", "MTHFD1", "MTHFD1L", "MYBPC3", "MYC", "MYH6", "MYH7", "MYL11", "MYL2", "MYL3", "MYLK", "MYLK2", "MYO3A", "MYO3B", "MYO6", "MYO7A", "NBL1", "NDRG4", "NEK8", "NEUROD1", "NEUROG1", "NF1", "NHERF1", "NIPBL", "NKD1", "NKX2-1", "NKX2-5", "NKX3-1", "NKX6-1", "NOG", "NOS3", "NOTCH1", "NOTCH2", "NPHP3", "NPNT", "NPPC", "NPY1R", "NPY2R", "NPY5R", "NRG1", "NRL", "NRP1", "NRP2", "NTF4", "NTN4", "ODAM", "OLFM1", "ONECUT2", "OSR1", "OSR2", "OTOP1", "OTOR", "PAFAH1B1", "PARVA", "PAX2", "PAX3", "PAX4", "PAX6", "PAX8", "PBX1", "PBX2", "PBX3", "PBX4", "PDCD4", "PDGFA", "PDGFRA", "PDX1", "PDZD7", "PERP", "PHACTR4", "PITX2", "PITX3", "PKD1", "PKD2", "PKP2", "PLS1", "PLXND1", "POU3F4", "PPP1R35", "PPP3CA", "PRKX", "PROM1", "PROX1", "PTCH1", "PTEN", "PTF1A", "PTK2", "PTPRM", "RAB23", "RAB33B", "RARG", "RBM20", "RBP4", "RBPJ", "RBPMS2", "RELT", "RFLNA", "RFLNB", "RFNG", "ROBO1", "ROBO2", "ROGDI", "RORB", "RP1", "RPGRIP1", "RPGRIP1L", "RPS6KA1", "RYR1", "RYR2", "S1PR1", "SALL1", "SAMD11", "SAMD7", "SCN5A", "SCRIB", "SCX", "SDK1", "SDK2", "SEMA3C", "SEMA6A", "SERPINE1", "SETDB2", "SFRP2", "SFRP4", "SFTPB", "SHANK3", "SHH", "SHOX2", "SHROOM2", "SIX1", "SIX2", "SIX3", "SIX4", "SIX6", "SKI", "SLC24A4", "SLC44A4", "SLC4A2", "SLIT1", "SLIT2", "SLIT3", "SMAD2", "SMAD4", "SMAD6", "SMAD7", "SMO", "SNAI1", "SNAI2", "SOBP", "SOD1", "SOX11", "SOX17", "SOX18", "SOX4", "SOX5", "SOX6", "SOX8", "SOX9", "SPEF2", "SPRY1", "SRF", "SSUH2", "STAT3", "STC1", "STIL", "STIM1", "STRA6", "STRC", "STX2", "SYK", "SYNPO2L", "TAFAZZIN", "TBX1", "TBX18", "TBX19", "TBX2", "TBX20", "TBX3", "TBX4", "TBX5", "TBX6", "TBXT", "TCAP", "TCF21", "TDRD7", "TEK", "TENM3", "TFAP2A", "TFAP2B", "TGFB1", "TGFB2", "TGFB3", "TGFBR1", "TGFBR2", "TGFBR3", "TH", "THY1", "TIFAB", "TLE1", "TLE2", "TLE3", "TMEM119", "TMEM176B", "TMIE", "TMT1A", "TNNC1", "TNNI3", "TNNT2", "TPM1", "TPRN", "TRPV4", "TSKU", "TSPAN12", "TSPEAR", "TTC39C", "TTN", "TUFT1", "TULP1", "TWIST1", "USH1C", "VANGL2", "VEGFA", "VPS33B", "VPS51", "WDPCP", "WHRN", "WNK4", "WNT10A", "WNT11", "WNT16", "WNT2", "WNT2B", "WNT5A", "WNT6", "WNT7A", "WNT7B", "WNT9A", "WT1", "WWOX", "ZFPM1", "ZFPM2", "ZIC1", "ZIC3", "ZNF22" ] }, "position": { "x": 683.4582648392428, "y": 1326.0556134910303, "id": "8c583627-83a1-4324-af57-909f27ec93a5", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "3fb8ea43-ca23-42d4-a532-1a73ceb20e98", "name": [ "DIGESTIVE SYSTEM DEVELOPMENT%GOBP%GO:0055123" ], "description": [ "digestive system development" ], "pvalue": 0.0012, "gs_type": null, "gs_size": 59, "padj": 0.0184, "mcode_cluster_id": "Cluster 34", "NES": -1.7295, "genes": [ "AGR2", "AHI1", "BBS7", "CCDC103", "CCDC39", "CCDC40", "CDX2", "CHD8", "CLMP", "COBL", "CXCL8", "DACT1", "DNAAF1", "EDNRB", "EPHB3", "FGFR2", "FOXE1", "FOXF1", "FOXL1", "GATA4", "GATA5", "GATA6", "GLI1", "GLI2", "GLI3", "ID2", "IL6ST", "KIT", "MEGF8", "MIXL1", "NIPBL", "NKX2-6", "NPHP3", "NPY", "PCSK5", "PDGFRA", "PERCC1", "PKD1", "PKDCC", "PTF1A", "PYY", "RARB", "RARRES2", "RBPMS2", "RET", "SALL1", "SFRP5", "SIX2", "SMO", "SOX11", "SOX17", "SRC", "SRP54", "STRA6", "TCF21", "TGFB2", "TNF", "WNT11", "ZIC3" ] }, "position": { "x": 644.0388361250102, "y": 1847.0531674844717, "id": "3fb8ea43-ca23-42d4-a532-1a73ceb20e98", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "512b43b3-5e2c-43d0-9270-d49211ee8e20", "name": [ "MYD88-INDEPENDENT TLR4 CASCADE%REACTOME%R-HSA-166166.4" ], "description": [ "MyD88-independent TLR4 cascade" ], "pvalue": 0.0037, "gs_type": null, "gs_size": 106, "padj": 0.0416, "mcode_cluster_id": "Cluster 13", "NES": -1.4854, "genes": [ "AGER", "ALPK1", "APP", "ATF1", "ATF2", "BIRC2", "BIRC3", "BTRC", "CASP8", "CD14", "CHUK", "CUL1", "DUSP3", "DUSP4", "DUSP6", "DUSP7", "ELK1", "FADD", "FBXW11", "FOS", "HMGB1", "IKBIP", "IKBKB", "IKBKE", "IKBKG", "IRAK1", "IRAK2", "IRF3", "IRF7", "JUN", "LRRC14", "LY96", "MAP2K1", "MAP2K3", "MAP2K4", "MAP2K6", "MAP2K7", "MAP3K7", "MAP3K8", "MAPK1", "MAPK10", "MAPK11", "MAPK14", "MAPK3", "MAPK7", "MAPK8", "MAPK9", "MAPKAPK2", "MAPKAPK3", "MEF2A", "MEF2C", "N4BP1", "NFKB1", "NFKB2", "NFKBIA", "NFKBIB", "NKIRAS1", "NKIRAS2", "NLRC5", "NLRX1", "NOD1", "NOD2", "OPTN", "PPP2CA", "PPP2CB", "PPP2R1A", "PPP2R1B", "PPP2R5D", "PTPN11", "RELA", "RIPK1", "RIPK2", "RIPK3", "RPS27A", "RPS6KA1", "RPS6KA2", "RPS6KA3", "RPS6KA5", "S100A12", "S100B", "SAA1", "SKP1", "TAB1", "TAB2", "TAB3", "TANK", "TBK1", "TICAM1", "TICAM2", "TIFA", "TLR4", "TNIP2", "TP53", "TRAF3", "TRAF6", "UBA52", "UBB", "UBC", "UBE2D1", "UBE2D2", "UBE2D3", "UBE2N", "UBE2V1", "USP14", "USP18", "VRK3" ] }, "position": { "x": 139.70695746700855, "y": 1090.6221145424015, "id": "512b43b3-5e2c-43d0-9270-d49211ee8e20", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "9addc916-184e-474a-b9ed-6a77433bcfb5", "name": [ "DEFENSE RESPONSE TO SYMBIONT%GOBP%GO:0140546" ], "description": [ "defense response to symbiont" ], "pvalue": 5.6805e-23, "gs_type": null, "gs_size": 582, "padj": 8.2608e-20, "mcode_cluster_id": "Cluster 17", "NES": -2.4207, "genes": [ "ABCC9", "ACOD1", "ADAM15", "ADAR", "AGBL4", "AGBL5", "AICDA", "AIF1", "AIM2", "AKAP1", "ALPK1", "ANG", "ANKHD1", "ANKRD17", "APCS", "APOA4", "APOBEC3A", "APOBEC3B", "APOBEC3C", "APOBEC3D", "APOBEC3F", "APOBEC3G", "APOBEC3H", "APOL1", "AQP4", "ARL8B", "ATAD3A", "ATG7", "AZI2", "AZU1", "BCL10", "BCL2", "BCL2L1", "BLK", "BNIP3", "BNIP3L", "BPI", "BPIFA1", "BPIFB1", "BPIFB3", "BST2", "BTK", "CALCOCO2", "CALM1", "CAMK2A", "CAMP", "CARD8", "CARD9", "CASP1", "CCL1", "CCL11", "CCL13", "CCL14", "CCL15", "CCL16", "CCL17", "CCL18", "CCL19", "CCL2", "CCL20", "CCL21", "CCL22", "CCL23", "CCL24", "CCL25", "CCL26", "CCL3", "CCL3L3", "CCL4", "CCL4L2", "CCL5", "CCL7", "CCL8", "CD2", "CD207", "CD47", "CD58", "CD74", "CEBPG", "CFB", "CFD", "CFHR1", "CFHR2", "CFHR5", "CGAS", "CH25H", "CHGA", "CHMP3", "CHUK", "CIITA", "CITED1", "CLEC2A", "CLEC4A", "CLEC4C", "CLEC4D", "CLEC4E", "CLEC5A", "CLEC6A", "CLEC7A", "CLPB", "CNOT7", "COLEC10", "COLEC11", "COLEC12", "CORO1A", "CR1", "CR2", "CRIPTO", "CRISP3", "CRP", "CST9", "CST9L", "CST9LP1", "CTSG", "CX3CL1", "CX3CR1", "CXCL1", "CXCL10", "CXCL11", "CXCL13", "CXCL14", "CXCL16", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "CYBA", "CYBB", "CYBC1", "CYLD", "CYP27B1", "DAO", "DAPK1", "DAPK3", "DCD", "DDIT4", "DDX3X", "DDX56", "DDX60", "DDX60L", "DEFA1B", "DEFA3", "DEFA4", "DEFA5", "DEFA6", "DEFB1", "DEFB103B", "DEFB104B", "DEFB106B", "DEFB114", "DEFB118", "DEFB119", "DEFB126", "DEFB127", "DEFB136", "DEFB4B", "DHX15", "DHX16", "DHX58", "DMBT1", "DUS2", "ECSIT", "EIF2AK2", "ELANE", "EPRS1", "EXOSC4", "EXOSC5", "F12", "F2", "F2RL1", "FADD", "FAM3A", "FAU", "FCER1G", "FCGR3A", "FCN1", "FCN2", "FCN3", "FGA", "FGB", "FGR", "FRK", "FYN", "G3BP1", "GALP", "GAPDH", "GARIN5A", "GBP1", "GBP2", "GBP3", "GBP4", "GBP5", "GBP6", "GBP7", "GCH1", "GNLY", "GRB2", "GZMB", "H2BC11", "H2BC12", "H2BC12L", "H2BC21", "H2BC8", "HCK", "HCST", "HDAC4", "HERC5", "HLA-A", "HLA-DPA1", "HLA-E", "HMGN2", "HRG", "IFI16", "IFI27", "IFI44L", "IFI6", "IFIH1", "IFIT1", "IFIT1B", "IFIT2", "IFIT3", "IFIT5", "IFITM1", "IFITM2", "IFITM3", "IFNA10", "IFNA13", "IFNA14", "IFNA16", "IFNA17", "IFNA2", "IFNA21", "IFNA4", "IFNA5", "IFNA6", "IFNA7", "IFNA8", "IFNAR1", "IFNAR2", "IFNB1", "IFNE", "IFNG", "IFNGR1", "IFNGR2", "IFNK", "IFNL1", "IFNL2", "IFNL3", "IFNL4", "IFNLR1", "IFNW1", "IGHA1", "IGHA2", "IGHE", "IGHG1", "IGHG2", "IGHG3", "IGHG4", "IGHM", "IGKV3-20", "IKBKB", "IKBKE", "IKBKG", "IL10RB", "IL12RB1", "IL21", "IL23R", "IL36RN", "IL6", "INAVA", "IRAK1", "IRAK4", "IRF1", "IRF2", "IRF3", "IRF5", "IRF7", "IRF8", "IRGM", "ISG15", "ISG20", "JAK1", "JAK2", "JCHAIN", "KIF5B", "KIR3DL1", "KLRC2", "KLRD1", "KLRF2", "KLRK1", "KRT1", "KRT16", "KRT6A", "KYNU", "LBP", "LCK", "LCN2", "LEAP2", "LGALS9", "LILRB1", "LTF", "LY86", "LY96", "LYN", "LYST", "LYZ", "MALT1", "MAP3K14", "MARCHF2", "MASP1", "MASP2", "MAVS", "MBL2", "MEFV", "MFHAS1", "MICA", "MID2", "MLKL", "MORC3", "MOV10", "MPEG1", "MSRB1", "MUC7", "MX1", "MX2", "MYD88", "N4BP3", "NCBP1", "NCBP3", "NCF1", "NCF2", "NCK1", "NCR3LG1", "NDUFAF4", "NEDD4", "NFKB1", "NFKB2", "NKG7", "NLRC5", "NLRP1", "NLRP6", "NLRP9", "NMB", "NMBR", "NOD2", "NOS2", "NRROS", "NT5C3A", "NUB1", "OAS1", "OAS2", "OAS3", "OASL", "OPRK1", "OTULIN", "PDE12", "PF4", "PF4V1", "PGLYRP1", "PGLYRP2", "PGLYRP3", "PGLYRP4", "PHB1", "PHB2", "PI3", "PIK3CD", "PIK3CG", "PIK3R1", "PIM1", "PJA2", "PLA2G10", "PLA2G1B", "PLA2G6", "PLCG2", "PLEKHM2", "PLSCR1", "PMAIP1", "PML", "POLR3A", "PPARG", "PPBP", "PPP1R14B", "PQBP1", "PRF1", "PRKRA", "PRSS2", "PRSS3", "PRTN3", "PTK6", "PTPRC", "PTX3", "PYCARD", "PYDC1", "RAB2B", "RAET1E", "RAET1G", "RAF1", "RARRES2", "RASGRP4", "REG1A", "REG1B", "REG3A", "REG3G", "REL", "RELA", "RELB", "RFPL1", "RFPL2", "RFPL3", "RFPL4A", "RFPL4AL1", "RIGI", "RIPK2", "RIPK3", "RNASE1", "RNASE2", "RNASE3", "RNASE4", "RNASE6", "RNASE7", "RNASE8", "RNASEL", "RNF135", "RNF185", "ROMO1", "RPL13A", "RPL30", "RPL39", "RPS19", "RPSA", "RSAD2", "RTP4", "S100A12", "S100A7", "S100A9", "SAMHD1", "SEMG1", "SEMG2", "SENP7", "SERINC3", "SERINC5", "SETD2", "SFTPD", "SHFL", "SHMT2", "SIRPA", "SKP2", "SLAMF7", "SLC11A1", "SLC15A2", "SLC22A5", "SLC26A6", "SLFN11", "SLFN13", "SLPI", "SMARCA5", "SMPD1", "SNCA", "SP100", "SPAG11A", "SPAG11B", "SPRR2A", "SRC", "SRMS", "SRPK1", "SRPK2", "STAT1", "STAT2", "STING1", "SYK", "SYNCRIP", "TANK", "TBK1", "TBKBP1", "TF", "TFEB", "TIFA", "TLR1", "TLR10", "TLR2", "TLR3", "TLR4", "TLR6", "TLR7", "TLR8", "TLR9", "TNF", "TRAF2", "TRAF3", "TRAF6", "TREM1", "TREML1", "TRIM10", "TRIM11", "TRIM13", "TRIM14", "TRIM15", "TRIM21", "TRIM22", "TRIM25", "TRIM26", "TRIM27", "TRIM28", "TRIM31", "TRIM32", "TRIM34", "TRIM35", "TRIM38", "TRIM4", "TRIM40", "TRIM41", "TRIM43", "TRIM43B", "TRIM48", "TRIM49", "TRIM49B", "TRIM49C", "TRIM49D2", "TRIM5", "TRIM51", "TRIM51G", "TRIM52", "TRIM56", "TRIM58", "TRIM59", "TRIM6", "TRIM62", "TRIM64", "TRIM64B", "TRIM64C", "TRIM68", "TRIM7", "TRIM77", "TRIM8", "TRIML1", "TRIML2", "TSLP", "TTC4", "TUBB", "TUBB4B", "TYK2", "UAP1", "UBA7", "UBD", "UBE2L6", "UBE2N", "UBE2W", "ULBP1", "ULBP2", "ULBP3", "UMOD", "USP18", "USP20", "USP27X", "USP29", "USP44", "VAMP2", "VAMP7", "VAV1", "VNN1", "WFDC10A", "WFDC10B", "WFDC11", "WFDC12", "WFDC13", "WFDC2", "WFDC3", "WFDC5", "WFDC9", "WNT5A", "XCL1", "XCL2", "YES1", "ZAP70", "ZBP1", "ZCCHC3", "ZDHHC1", "ZDHHC11", "ZMYND11", "ZNFX1" ] }, "position": { "x": 2875.516577598277, "y": 335.9384916002173, "id": "9addc916-184e-474a-b9ed-6a77433bcfb5", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "e6bdd19b-66e3-45e2-b2b1-92f658ccc62b", "name": [ "LESCH-NYHAN SYNDROME (LNS)%SMPDB%SMP0000364" ], "description": [ "Lesch-Nyhan Syndrome (LNS)" ], "pvalue": 0.0025, "gs_type": null, "gs_size": 37, "padj": 0.031, "mcode_cluster_id": "Cluster 3", "NES": -1.6821, "genes": [ "ADA", "ADCY2", "ADSL", "ADSS2", "AK1", "AMPD1", "APRT", "ATAD1", "ATIC", "DGUOK", "ENTPD5", "ENTPD8", "GART", "GDA", "GMPR", "GMPS", "GUCY1A2", "GUCY1B1", "GUK1", "HPRT1", "IMPDH1", "ITPA", "NME6", "NT5C2", "NUDT2", "NUDT5", "PAICS", "PDE10A", "PDE4D", "PFAS", "PNP", "PPAT", "PRPS1L1", "RRM1", "RRM2", "TXN", "XDH" ] }, "position": { "x": 1516.2255293530588, "y": 1278.3847648300043, "id": "e6bdd19b-66e3-45e2-b2b1-92f658ccc62b", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "70cf6d48-a46e-4604-ad85-12eceacf95b4", "name": [ "INNATE IMMUNE RESPONSE-ACTIVATING SIGNALING PATHWAY%GOBP%GO:0002758" ], "description": [ "innate immune response-activating signaling pathway" ], "pvalue": 2.1923e-7, "gs_type": null, "gs_size": 130, "padj": 0, "mcode_cluster_id": "Cluster 6", "NES": -2.085, "genes": [ "AIM2", "ALPK1", "BCL10", "BECN1", "BTK", "CARD8", "CASP1", "CD14", "CD274", "CD300LF", "CGAS", "CHUK", "CLEC4E", "CLEC6A", "CLEC7A", "CLPB", "COLEC10", "COLEC11", "COLEC12", "CREBBP", "CTSS", "CYLD", "DHX58", "ECSIT", "EP300", "EPG5", "FCN1", "FCN2", "FCN3", "FFAR2", "FYN", "HCK", "HSPD1", "IFIH1", "IKBKB", "INAVA", "IPO5", "IRAK1", "IRAK2", "IRAK3", "IRAK4", "IRF3", "IRF7", "IRGM", "ITCH", "KIR2DS2", "KLRC1", "KLRC2", "KLRC3", "KLRC4", "KLRD1", "LACC1", "LBP", "LGALS9", "LILRA2", "LY96", "LYN", "MAP2K6", "MAP3K7", "MAPKAPK2", "MAPKAPK3", "MAVS", "MBL2", "MEFV", "MYD88", "NAIP", "NFKBIA", "NLRC4", "NLRP1", "NLRP3", "NLRP6", "NMI", "NOD1", "NOD2", "OAS1", "OAS3", "OTULIN", "PAK1", "PAK2", "PAK3", "PHB1", "PHB2", "PIK3AP1", "PLCG2", "PRKCE", "PYCARD", "RAB11FIP2", "REG3G", "RELA", "RFTN1", "RIGI", "RIPK2", "RNF135", "RNF144A", "RNF34", "RPS6KA3", "S100A14", "SCARA3", "SCIMP", "SRC", "STING1", "SYK", "TBK1", "TICAM1", "TICAM2", "TIFA", "TIRAP", "TLR1", "TLR10", "TLR2", "TLR3", "TLR4", "TLR5", "TLR6", "TLR7", "TLR8", "TLR9", "TNFAIP3", "TNIP1", "TNIP2", "TNIP3", "TRAF3", "TRAF3IP3", "TRAF6", "TRIL", "TRIM25", "TYROBP", "UNC93B1", "XIAP", "YWHAE" ] }, "position": { "x": 1817.3665473742212, "y": 454.7651605434984, "id": "70cf6d48-a46e-4604-ad85-12eceacf95b4", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "b2b849b4-17ae-4274-9ee5-6a0910e254ec", "name": [ "CELLULAR RESPONSE TO TYPE II INTERFERON%GOBP%GO:0071346" ], "description": [ "cellular response to type II interferon" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 47, "padj": 0.0028, "mcode_cluster_id": null, "NES": -1.8933, "genes": [ "ACOD1", "AIF1", "AQP4", "CALM1", "CAMK2A", "CASP1", "CCL2", "CCL3", "CCL5", "CD47", "CD58", "CRIPTO", "DAPK1", "DAPK3", "EPRS1", "GAPDH", "GBP1", "GBP2", "GBP3", "GBP4", "GBP5", "GBP6", "GBP7", "HCK", "HLA-DPA1", "IFNG", "IFNGR1", "IFNGR2", "IL12RB1", "IRF1", "IRF8", "JAK1", "JAK2", "LGALS9", "PDE12", "PIM1", "RAF1", "RPL13A", "SIRPA", "SLC26A6", "SP100", "STAT1", "SYNCRIP", "TLR2", "TLR4", "TYK2", "WNT5A" ] }, "position": { "x": 112.44018732784161, "y": 2094.507113142088, "id": "b2b849b4-17ae-4274-9ee5-6a0910e254ec" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "b1f8bc26-b379-46a2-9104-c4aee4fd545d", "name": [ "CELLULAR RESPONSE TO TYPE I INTERFERON%GOBP%GO:0071357" ], "description": [ "cellular response to type I interferon" ], "pvalue": 0, "gs_type": null, "gs_size": 39, "padj": 0.0005, "mcode_cluster_id": "Cluster 18", "NES": -2.1064, "genes": [ "AZI2", "HDAC4", "IFI27", "IFIT1", "IFITM1", "IFITM2", "IFITM3", "IFNA10", "IFNA13", "IFNA14", "IFNA16", "IFNA17", "IFNA2", "IFNA21", "IFNA4", "IFNA5", "IFNA6", "IFNA7", "IFNA8", "IFNAR1", "IFNAR2", "IFNB1", "IFNE", "IFNK", "IFNW1", "IKBKE", "IRAK1", "JAK1", "MAVS", "MYD88", "OAS2", "SP100", "STAT1", "STAT2", "TANK", "TBK1", "TBKBP1", "TRAF3", "TYK2" ] }, "position": { "x": 364.5064446655801, "y": 1449.9863527456278, "id": "b1f8bc26-b379-46a2-9104-c4aee4fd545d", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "b4472d3f-7b1d-4c57-b47a-bffedc4aba98", "name": [ "UB-SPECIFIC PROCESSING PROTEASES%REACTOME DATABASE ID RELEASE 81%5689880" ], "description": [ "Ub-specific processing proteases" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 203, "padj": 0.0043, "mcode_cluster_id": null, "NES": -1.6348, "genes": [ "ADRB2", "ADRM1", "AR", "ARRB1", "ARRB2", "ATXN7", "AXIN1", "AXIN2", "BECN1", "BIRC2", "BIRC3", "CCNA1", "CCNA2", "CCP110", "CDC20", "CDC25A", "CFTR", "CLSPN", "CYLD", "DDB2", "FKBP8", "FOXO4", "GATA3", "H2AC1", "H2AC12", "H2AC14", "H2AC17", "H2AC19", "H2AC20", "H2AC21", "H2AC25", "H2AC7", "H2AC8", "H2BC1", "H2BC11", "H2BC12", "H2BC13", "H2BC14", "H2BC15", "H2BC17", "H2BC18", "H2BC21", "H2BC26", "H2BC3", "H2BC5", "H2BC8", "H2BC9", "HGS", "HIF1A", "IDE", "IFIH1", "IKBKG", "IL33", "KAT2A", "KEAP1", "MAP3K7", "MAT2B", "MDM2", "MDM4", "MUL1", "MYC", "NFKBIA", "OTUB1", "POLB", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "PTEN", "PTRH2", "RCE1", "RHOT1", "RIGI", "RIPK1", "RNF123", "RNF128", "RNF146", "RPS27A", "RUVBL1", "SEM1", "SIAH2", "SKP2", "SMAD1", "SMAD2", "SMAD3", "SMAD4", "SMAD7", "SMURF2", "SNX3", "STAM2", "SUDS3", "TAB1", "TADA2B", "TADA3", "TAF10", "TAF9B", "TGFBR1", "TNKS", "TNKS2", "TOMM20", "TOMM70", "TP53", "TRAF6", "TRRAP", "UBA52", "UBB", "UBC", "UFD1", "USP10", "USP11", "USP12", "USP13", "USP14", "USP15", "USP16", "USP17L1", "USP17L10", "USP17L11", "USP17L12", "USP17L13", "USP17L15", "USP17L17", "USP17L18", "USP17L19", "USP17L2", "USP17L20", "USP17L21", "USP17L22", "USP17L3", "USP17L30", "USP17L4", "USP17L5", "USP17L8", "USP18", "USP19", "USP2", "USP20", "USP21", "USP22", "USP24", "USP25", "USP26", "USP28", "USP3", "USP30", "USP33", "USP34", "USP37", "USP4", "USP42", "USP44", "USP47", "USP48", "USP49", "USP5", "USP7", "USP8", "USP9X", "VDAC1", "VDAC2", "VDAC3", "WDR20", "WDR48" ] }, "position": { "x": 595.2863652347478, "y": 795.3336268003573, "id": "b4472d3f-7b1d-4c57-b47a-bffedc4aba98" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "cc9c6e8e-886e-4b20-a87c-a9e246ac26f2", "name": [ "SARS-COV-2 ACTIVATES MODULATES INNATE AND ADAPTIVE IMMUNE RESPONSES%REACTOME DATABASE ID RELEASE 81%9705671" ], "description": [ "SARS-CoV-2 activates modulates innate and adaptive immune responses" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 117, "padj": 0.0054, "mcode_cluster_id": null, "NES": -1.6931, "genes": [ "AAAS", "ATG14", "B2M", "BECN1", "CHUK", "CNBP", "CREBBP", "G3BP1", "G3BP2", "HLA-A", "HLA-B", "HLA-C", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "HSP90AA1", "HSP90AB1", "IFIH1", "IFNA10", "IFNA13", "IFNA14", "IFNA16", "IFNA17", "IFNA2", "IFNA21", "IFNA4", "IFNA5", "IFNA6", "IFNA7", "IFNA8", "IFNAR1", "IFNB1", "IKBKB", "IKBKE", "IKBKG", "IL17A", "IL17F", "IL17RA", "IL17RC", "IRAK1", "IRAK2", "IRF3", "IRF7", "ISG15", "JAK1", "KPNA2", "LARP1", "MAP3K7", "MASP1", "MAVS", "MBL2", "NDC1", "NLRP12", "NLRP3", "NOD1", "NOD2", "NUP107", "NUP133", "NUP153", "NUP155", "NUP160", "NUP188", "NUP205", "NUP210", "NUP214", "NUP35", "NUP37", "NUP42", "NUP43", "NUP50", "NUP54", "NUP62", "NUP85", "NUP88", "NUP93", "PIK3C3", "PIK3R4", "POM121", "POM121C", "PTPN11", "PTPN6", "RAE1", "RANBP2", "RIGI", "RIPK2", "RNF135", "SAR1B", "SEC13", "SEC23A", "SEC24A", "SEC24B", "SEC24C", "SEC24D", "SFTPD", "SIKE1", "STAT1", "STAT2", "STING1", "TAB1", "TAB2", "TAB3", "TBK1", "TKFC", "TLR1", "TLR2", "TLR7", "TLR8", "TOMM70", "TPR", "TRAF3", "TRAF6", "TRIM25", "TRIM4", "TYK2", "UBE2N", "UBE2V1" ] }, "position": { "x": 2963.5, "y": 2195.9446642487483, "id": "cc9c6e8e-886e-4b20-a87c-a9e246ac26f2" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "f5736009-a954-42de-861b-494d7e1ef269", "name": [ "REGULATION OF VIRAL GENOME REPLICATION%GOBP%GO:0045069" ], "description": [ "regulation of viral genome replication" ], "pvalue": 1.0485e-16, "gs_type": null, "gs_size": 80, "padj": 1.5248e-14, "mcode_cluster_id": "Cluster 29", "NES": -2.6739, "genes": [ "ADAR", "ADARB1", "AICDA", "APOBEC3A", "APOBEC3B", "APOBEC3C", "APOBEC3D", "APOBEC3F", "APOBEC3G", "APOBEC3H", "BANF1", "BST2", "BTBD17", "CCL5", "CD28", "CNOT7", "CXCL8", "DDB1", "DDX3X", "EIF2AK2", "FAM111A", "FKBP6", "GBP7", "HACD3", "HMGA2", "IFI16", "IFIH1", "IFIT1", "IFIT5", "IFITM1", "IFITM2", "IFITM3", "IFNB1", "IFNL3", "ILF3", "INPP5K", "ISG15", "ISG20", "LARP1", "LTF", "MAVS", "MORC2", "MPHOSPH8", "MX1", "N4BP1", "NR5A2", "OAS1", "OAS2", "OAS3", "OASL", "PABPC1", "PDE12", "PKN2", "PLSCR1", "PPIA", "PPID", "PPIE", "PPIH", "PROX1", "RAD23A", "RESF1", "RNASEL", "RSAD2", "SETDB1", "SHFL", "SLPI", "SRPK1", "SRPK2", "STAU1", "TARBP2", "TASOR", "TMEM39A", "TNF", "TNIP1", "TOP2A", "TOP2B", "TRIM6", "VAPB", "ZC3HAV1", "ZNFX1" ] }, "position": { "x": 1169.0488948444186, "y": 1348.3129869907382, "id": "f5736009-a954-42de-861b-494d7e1ef269", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "name": [ "DNA REPLICATION%REACTOME DATABASE ID RELEASE 81%69306" ], "description": [ "DNA Replication" ], "pvalue": 5.4637e-9, "gs_type": null, "gs_size": 155, "padj": 4.1276e-7, "mcode_cluster_id": "Cluster 1", "NES": -2.1067, "genes": [ "ANAPC1", "ANAPC10", "ANAPC11", "ANAPC15", "ANAPC16", "ANAPC2", "ANAPC4", "ANAPC5", "ANAPC7", "CCNA1", "CCNA2", "CCNE1", "CCNE2", "CDC16", "CDC23", "CDC26", "CDC27", "CDC45", "CDC6", "CDC7", "CDK2", "CDT1", "CUL1", "DBF4", "DNA2", "FEN1", "FZR1", "GINS1", "GINS2", "GINS3", "GINS4", "GMNN", "H2AB1", "H2AC14", "H2AC19", "H2AC20", "H2AC7", "H2AC8", "H2AJ", "H2AX", "H2AZ2", "H2BC1", "H2BC11", "H2BC12", "H2BC12L", "H2BC13", "H2BC14", "H2BC15", "H2BC17", "H2BC21", "H2BC26", "H2BC3", "H2BC5", "H2BC8", "H2BC9", "H3-3B", "H3C15", "H3C8", "H4C9", "KPNA1", "KPNA6", "KPNB1", "LIG1", "MCM10", "MCM2", "MCM3", "MCM4", "MCM5", "MCM6", "MCM7", "MCM8", "ORC1", "ORC2", "ORC3", "ORC4", "ORC5", "ORC6", "PCNA", "POLA1", "POLA2", "POLD1", "POLD2", "POLD3", "POLD4", "POLE", "POLE2", "POLE3", "POLE4", "PRIM1", "PRIM2", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RBX1", "RFC1", "RFC2", "RFC3", "RFC4", "RFC5", "RPA1", "RPA2", "RPA3", "RPA4", "RPS27A", "SEM1", "SKP1", "SKP2", "UBA52", "UBB", "UBC", "UBE2C", "UBE2D1", "UBE2E1", "UBE2S" ] }, "position": { "x": 493.3388487264069, "y": 779.6164975583072, "id": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "e682b67b-bd68-4c3b-a704-daf22703d592", "name": [ "MAPK6 MAPK4 SIGNALING%REACTOME DATABASE ID RELEASE 81%5687128" ], "description": [ "MAPK6 MAPK4 signaling" ], "pvalue": 0.0005, "gs_type": null, "gs_size": 89, "padj": 0.0083, "mcode_cluster_id": "Cluster 1", "NES": -1.6979, "genes": [ "AGO1", "AGO2", "AGO3", "AGO4", "CCND3", "CDC14A", "CDC14B", "CDC42", "CDC42EP2", "CDC42EP3", "CDC42EP5", "CDK1", "DNAJB1", "ETV4", "FOXO1", "FOXO3", "HSPB1", "IGF2BP1", "JUN", "KALRN", "MAPK4", "MAPK6", "MAPKAPK5", "MOV10", "MYC", "NCOA3", "PAK1", "PAK2", "PAK3", "PRKACA", "PRKACB", "PRKACG", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RAC1", "RAG1", "RAG2", "RPS27A", "SEM1", "SEPTIN7", "TNRC6A", "TNRC6B", "TNRC6C", "UBA52", "UBB", "UBC", "XPO1" ] }, "position": { "x": 445.8596243303534, "y": 756.2303532321848, "id": "e682b67b-bd68-4c3b-a704-daf22703d592", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "1464dde0-7b27-424c-9e99-43dc975d4ea7", "name": [ "REGULATION OF LEUKOCYTE MEDIATED IMMUNITY%GOBP%GO:0002703" ], "description": [ "regulation of leukocyte mediated immunity" ], "pvalue": 0.0006, "gs_type": null, "gs_size": 184, "padj": 0.01, "mcode_cluster_id": "Cluster 5", "NES": -1.6585, "genes": [ "ADGRE2", "AGER", "AHR", "AP1G1", "ARG1", "ARRB2", "B2M", "BST2", "BTK", "C12orf4", "C17orf99", "C4BPA", "C4BPB", "CADM1", "CAMK4", "CCR2", "CD160", "CD177", "CD1A", "CD1B", "CD1C", "CD1D", "CD1E", "CD226", "CD274", "CD300A", "CD46", "CD55", "CD80", "CD81", "CD84", "CEACAM1", "CLC", "CLCF1", "CLEC12B", "CLEC7A", "CR1", "CR1L", "CR2", "CRTAM", "CX3CR1", "CYRIB", "DENND1B", "DNASE1", "DNASE1L3", "F2RL1", "FADD", "FBXO38", "FCGR2B", "FES", "FGR", "FOXJ1", "FOXP3", "FUT7", "FZD5", "GAB2", "HFE", "HLA-A", "HLA-B", "HLA-C", "HLA-DRA", "HLA-DRB1", "HLA-DRB3", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "HMCES", "HMGB1", "HSPD1", "ICAM1", "IFNA2", "IFNB1", "IL10", "IL12A", "IL12B", "IL12RB1", "IL18", "IL18R1", "IL1B", "IL1R1", "IL21", "IL23A", "IL23R", "IL4", "IL4I1", "IL6", "ITGAM", "ITGB2", "JAK3", "KIR2DL4", "KIT", "KLRB1", "KLRC1", "KLRC2", "KLRC3", "KLRC4", "KLRD1", "KLRK1", "KMT5B", "KMT5C", "LAMP1", "LEP", "LGALS9", "LILRB1", "LILRB4", "LYN", "MAD2L2", "MALT1", "MAP3K7", "MAVS", "MICA", "MICB", "MR1", "NCKAP1L", "NCR1", "NCR3", "NECTIN2", "NLRP3", "NOS2", "PARP3", "PAXIP1", "PDCD1", "PIK3R6", "PLA2G3", "PLCG2", "PRKCZ", "PTPRC", "PVR", "RAET1E", "RAET1G", "RAET1L", "RASGRP1", "RASGRP4", "RIF1", "RIGI", "RIPK3", "RSAD2", "SCIMP", "SERPINB4", "SERPINB9", "SH2D1B", "SHLD1", "SHLD2", "SHLD3", "SLAMF6", "SLC15A4", "SLC22A13", "SMAD7", "SNX4", "SPHK2", "SPI1", "STAP1", "STX4", "STX7", "STXBP2", "SUPT6H", "SUSD4", "SVEP1", "SYK", "TBX21", "TFRC", "TGFB1", "TICAM1", "TNFRSF1B", "TNFSF13", "TNFSF4", "TP53BP1", "TRAF2", "TRAF6", "TREM2", "TRPM4", "TYROBP", "UFL1", "ULBP1", "ULBP2", "ULBP3", "UNC13D", "VAMP7", "VAMP8", "WAS", "XCL1", "ZBTB1", "ZP3" ] }, "position": { "x": 2115.65307549789, "y": 716.6315485195396, "id": "1464dde0-7b27-424c-9e99-43dc975d4ea7", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "name": [ "PROTEIN SYNTHESIS: LEUCINE%SMPDB%SMP0111873" ], "description": [ "Protein Synthesis: Leucine" ], "pvalue": 2.1699e-17, "gs_type": null, "gs_size": 80, "padj": 4.1161e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7928, "genes": [ "FAU", "LARS1", "RACK1", "RPL10", "RPL10A", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "UBA52" ] }, "position": { "x": 1011.2050494700255, "y": 603.9170468544919, "id": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "e9595f2e-7b95-4f92-b829-ff02d867fe3d", "name": [ "EML4 AND NUDC IN MITOTIC SPINDLE FORMATION%REACTOME%R-HSA-9648025.3" ], "description": [ "EML4 and NUDC in mitotic spindle formation" ], "pvalue": 0.0012, "gs_type": null, "gs_size": 95, "padj": 0.0184, "mcode_cluster_id": "Cluster 15", "NES": -1.5744, "genes": [ "AHCTF1", "B9D2", "BIRC5", "BUB1", "BUB1B", "BUB3", "CDC20", "CDCA8", "CENPA", "CENPC", "CENPE", "CENPF", "CENPH", "CENPI", "CENPK", "CENPL", "CENPM", "CENPN", "CENPO", "CENPP", "CENPQ", "CENPS", "CENPT", "CENPU", "CKAP5", "CLASP1", "CLASP2", "CLIP1", "DSN1", "DYNC1H1", "DYNC1I1", "DYNC1I2", "DYNC1LI1", "DYNC1LI2", "DYNLL1", "DYNLL2", "EML4", "ERCC6L", "INCENP", "ITGB3BP", "KIF18A", "KIF2A", "KIF2B", "KIF2C", "KNL1", "KNTC1", "MAD1L1", "MAD2L1", "MAPRE1", "MIS12", "NDC80", "NDE1", "NDEL1", "NEK6", "NEK7", "NEK9", "NSL1", "NUDC", "NUF2", "NUP107", "NUP133", "NUP160", "NUP37", "NUP43", "NUP85", "PAFAH1B1", "PLK1", "PMF1", "PPP1CC", "PPP2CA", "PPP2CB", "PPP2R1A", "PPP2R1B", "PPP2R5A", "PPP2R5B", "PPP2R5C", "PPP2R5D", "PPP2R5E", "RANBP2", "RANGAP1", "RCC2", "RPS27", "SEC13", "SGO1", "SGO2", "SKA1", "SKA2", "SPC24", "SPC25", "SPDL1", "TAOK1", "XPO1", "ZW10", "ZWILCH", "ZWINT" ] }, "position": { "x": 556.7252452277849, "y": 1085.533256564413, "id": "e9595f2e-7b95-4f92-b829-ff02d867fe3d", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "11b58f65-f23a-44f1-b169-1c79f44b4519", "name": [ "RESPONSE TO LIPOPOLYSACCHARIDE%GOBP%GO:0032496" ], "description": [ "response to lipopolysaccharide" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 172, "padj": 0.0032, "mcode_cluster_id": "Cluster 9", "NES": -1.7021, "genes": [ "ACOD1", "ADAM17", "ADAM9", "ANKRD1", "AXL", "BCL10", "BPI", "CACTIN", "CARD16", "CARD17P", "CASP1", "CASP7", "CCL2", "CCR5", "CD14", "CD180", "CD274", "CD6", "CD68", "CD80", "CD86", "CDC73", "CHMP5", "CITED1", "CPS1", "CTR9", "CTSG", "CX3CR1", "CXCL1", "CXCL10", "CXCL11", "CXCL13", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "CYP27B1", "DAB2IP", "DEFA1B", "DEFA3", "DEFA4", "DEFA5", "DEFA6", "ERBIN", "F2R", "FBXO3", "FER", "FOXP1", "GBP2", "GBP3", "GCH1", "GFI1", "GIT1", "GSTP1", "HCK", "HMGB1", "HMGB2", "HNRNPA0", "IFNAR1", "IL10", "IL12A", "IL1A", "IL1B", "IL1F10", "IL23R", "IL36A", "IL36B", "IL36G", "IL36RN", "IL37", "IL6", "IRAK1", "IRAK2", "IRAK3", "IRAK4", "IRGM", "JAK2", "LBP", "LDOC1", "LGALS9", "LIAS", "LILRB1", "LILRB2", "LY96", "LYN", "MAPK14", "MAPK8", "MAPKAPK2", "MAPKAPK3", "MEF2C", "MMP3", "MMP8", "MMP9", "MTDH", "MYD88", "NFKB1", "NFKBIB", "NFKBIL1", "NLRP3", "NLRP7", "NOCT", "NOD2", "NOS1", "NOS2", "NOS3", "NR1D1", "NR1H3", "NR4A1", "NUGGC", "OTUD5", "PABPN1", "PAF1", "PALM3", "PDCD1LG2", "PDCD4", "PDE4B", "PELI1", "PF4", "PF4V1", "PLAA", "PLCG2", "PPBP", "PPM1E", "PRDX3", "PRKCE", "PTPN22", "PYCARD", "RELA", "RHOA", "RPS6KA3", "S100A14", "S100A7", "S100A8", "S100A9", "SBNO2", "SCARB1", "SELE", "SELENOS", "SELP", "SERPINE1", "SHPK", "SIRPA", "SLC11A1", "SLPI", "SMAD6", "SNCA", "SRR", "STAP1", "TAB2", "TICAM1", "TICAM2", "TIRAP", "TLR4", "TNFAIP3", "TNFRSF11A", "TNFRSF1B", "TNFSF4", "TNIP1", "TNIP2", "TNIP3", "TRAF6", "TRIB1", "TRIM41", "TRIM6", "UPF1", "VIM", "WNT5A", "XBP1", "ZC3H12A", "ZFP36" ] }, "position": { "x": 3214.7925547436325, "y": 43.566601261492096, "id": "11b58f65-f23a-44f1-b169-1c79f44b4519", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "22c84cad-f57f-4718-9687-42041195fe68", "name": [ "REGULATION OF LYMPHOCYTE MEDIATED IMMUNITY%GOBP%GO:0002706" ], "description": [ "regulation of lymphocyte mediated immunity" ], "pvalue": 0, "gs_type": null, "gs_size": 144, "padj": 0.001, "mcode_cluster_id": "Cluster 5", "NES": -1.8438, "genes": [ "AGER", "AHR", "AP1G1", "ARRB2", "B2M", "BTK", "C17orf99", "C4BPA", "C4BPB", "CADM1", "CCR2", "CD160", "CD1A", "CD1B", "CD1C", "CD1D", "CD1E", "CD226", "CD274", "CD46", "CD55", "CD80", "CD81", "CEACAM1", "CLC", "CLCF1", "CLEC12B", "CR1", "CR1L", "CR2", "CRTAM", "CYRIB", "DENND1B", "FADD", "FBXO38", "FCGR2B", "FOXJ1", "FOXP3", "FUT7", "FZD5", "HFE", "HLA-A", "HLA-B", "HLA-C", "HLA-DRA", "HLA-DRB1", "HLA-DRB3", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "HMCES", "HMGB1", "HSPD1", "IFNA2", "IFNB1", "IL10", "IL12A", "IL12B", "IL12RB1", "IL18", "IL18R1", "IL1B", "IL1R1", "IL21", "IL23A", "IL23R", "IL4", "IL4I1", "IL6", "KIR2DL4", "KLRB1", "KLRC1", "KLRC2", "KLRC3", "KLRC4", "KLRD1", "KLRK1", "KMT5B", "KMT5C", "LAMP1", "LEP", "LGALS9", "LILRB1", "LILRB4", "MAD2L2", "MALT1", "MAP3K7", "MICA", "MICB", "MR1", "NCKAP1L", "NCR1", "NCR3", "NECTIN2", "NLRP3", "PARP3", "PAXIP1", "PDCD1", "PIK3R6", "PRKCZ", "PTPRC", "PVR", "RAET1E", "RAET1G", "RAET1L", "RASGRP1", "RASGRP4", "RIF1", "RIPK3", "RSAD2", "SERPINB4", "SERPINB9", "SH2D1B", "SHLD1", "SHLD2", "SHLD3", "SLAMF6", "SLC15A4", "SLC22A13", "SMAD7", "STX7", "SUPT6H", "SUSD4", "SVEP1", "TBX21", "TFRC", "TGFB1", "TNFRSF1B", "TNFSF13", "TNFSF4", "TP53BP1", "TRAF2", "TRAF6", "TREM2", "TRPM4", "UFL1", "ULBP1", "ULBP2", "ULBP3", "WAS", "XCL1", "ZBTB1", "ZP3" ] }, "position": { "x": 2192.315729351947, "y": 700.779122597694, "id": "22c84cad-f57f-4718-9687-42041195fe68", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "74066e62-8077-4fa7-b449-64cfecdb075a", "name": [ "VIRAL MRNA TRANSLATION%REACTOME DATABASE ID RELEASE 81%192823" ], "description": [ "Viral mRNA Translation" ], "pvalue": 2.8508e-16, "gs_type": null, "gs_size": 90, "padj": 3.7689e-14, "mcode_cluster_id": "Cluster 2", "NES": 2.7345, "genes": [ "DNAJC3", "FAU", "GRSF1", "RPL10", "RPL10A", "RPL10L", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL22L1", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL26L1", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL36AL", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL39L", "RPL3L", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "UBA52" ] }, "position": { "x": 847.4342379239575, "y": 523.9341457950551, "id": "74066e62-8077-4fa7-b449-64cfecdb075a", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "366dd0a3-3444-47cd-ac20-2a83f4584eda", "name": [ "POSITIVE REGULATION OF CYTOKINE PRODUCTION%GOBP%GO:0001819" ], "description": [ "positive regulation of cytokine production" ], "pvalue": 1.9289e-7, "gs_type": null, "gs_size": 407, "padj": 0, "mcode_cluster_id": null, "NES": -1.7759, "genes": [ "ADAM17", "ADAM8", "ADCYAP1", "ADIPOQ", "ADRA2A", "AFAP1L2", "AGER", "AGPAT1", "AGPAT2", "AGT", "AIF1", "AIM2", "AIRE", "AKIRIN2", "ALOX15B", "ANXA1", "APOA2", "APP", "APPL1", "ARFGEF2", "ARHGEF2", "ARNT", "ARRDC4", "ATF4", "ATP6AP2", "AZU1", "B2M", "BATF", "BCL10", "BMPR1A", "BRCA1", "BTN3A1", "BTN3A2", "C1QTNF3", "C1QTNF4", "C3", "C5", "CADM1", "CAMK4", "CARD11", "CARD8", "CARD9", "CASP1", "CASP8", "CCBE1", "CCDC88B", "CCL1", "CCL19", "CCL3", "CCR2", "CCR7", "CD14", "CD160", "CD2", "CD200", "CD244", "CD274", "CD276", "CD28", "CD34", "CD36", "CD4", "CD40LG", "CD46", "CD55", "CD58", "CD6", "CD74", "CD80", "CD81", "CD84", "CD86", "CEBPB", "CEBPG", "CGAS", "CHI3L1", "CHIA", "CHUK", "CLEC6A", "CLEC7A", "CLEC9A", "CLECL1P", "CLU", "CRLF2", "CRTAM", "CSF1R", "CSF2", "CXCL17", "CYBA", "CYP1B1", "CYRIB", "DDIT3", "DDT", "DDX3X", "DEFA5", "DEFB124", "DENND1B", "DHX33", "DHX36", "DHX58", "DHX9", "DRD2", "EBI3", "EGR1", "EIF2AK2", "EIF2AK3", "ELANE", "EPHB2", "EREG", "F2R", "F2RL1", "F3", "FADD", "FCER1G", "FCGR2A", "FCGR2B", "FCGR2C", "FCGR3A", "FCN1", "FFAR2", "FFAR3", "FGR", "FLOT1", "FLT4", "FOXP1", "FRMD8", "FZD5", "G3BP1", "GAPDH", "GARIN5A", "GATA3", "GATA4", "GBP5", "GDF2", "GLMN", "GPRC5B", "GSDMD", "HAVCR2", "HHLA2", "HIF1A", "HILPDA", "HLA-A", "HLA-DPA1", "HLA-DPB1", "HLA-E", "HLA-F", "HLA-G", "HMGB1", "HMHB1", "HMOX1", "HPSE", "HSP90AA1", "HSPA1A", "HSPA1B", "HSPB1", "HSPD1", "HTR2B", "HYAL2", "IFI16", "IFIH1", "IFNG", "IFNGR1", "IFNL1", "IGHD", "IKBKE", "IL10", "IL12A", "IL12B", "IL12RB1", "IL12RB2", "IL13", "IL15", "IL16", "IL17A", "IL17D", "IL17F", "IL17RA", "IL18", "IL18R1", "IL1A", "IL1B", "IL1R1", "IL2", "IL21", "IL23A", "IL23R", "IL26", "IL27", "IL33", "IL4", "IL6", "IL6R", "IL6ST", "IL7", "IL9", "INAVA", "INS", "IRAK1", "IRF1", "IRF3", "IRF4", "IRF5", "IRF7", "ISG15", "ISL1", "ITK", "JAK2", "KAT2A", "KIR2DL4", "KIT", "KLRF2", "KPNA2", "LACC1", "LAMTOR5", "LAPTM5", "LBP", "LEP", "LGALS9", "LILRA2", "LILRA5", "LILRB1", "LILRB2", "LPL", "LTB", "LURAP1", "LY9", "LY96", "MALT1", "MAP3K7", "MAPK11", "MAPK13", "MAPK14", "MAPK9", "MAVS", "MBP", "MDK", "MEFV", "MIF", "MMP8", "MYD88", "NAIP", "NFAM1", "NLRC4", "NLRP1", "NLRP10", "NLRP12", "NLRP2", "NLRP3", "NLRP9", "NMB", "NMBR", "NOD1", "NOD2", "NODAL", "NOS2", "NOX1", "NOX5", "NR1H4", "NR4A3", "OAS1", "OAS2", "OAS3", "OPA1", "ORM1", "ORM2", "OSM", "P2RX7", "PAEP", "PANX1", "PARK7", "PDE4B", "PDE4D", "PF4", "PHB1", "PIBF1", "PIK3CD", "PIK3CG", "PLA2G1B", "PLA2R1", "PLCB1", "PLCG2", "PNP", "POLR3A", "POLR3B", "POLR3C", "POLR3D", "POLR3F", "POLR3G", "POU2AF1", "POU2F2", "PQBP1", "PRG3", "PRKCQ", "PRKCZ", "PRKD2", "PSEN1", "PTGER4", "PTGS2", "PTPN11", "PTPN22", "PTPRC", "PTPRJ", "PYCARD", "PYDC1", "RAB1A", "RAB2B", "RAB7B", "RAET1G", "RARA", "RASGRP1", "RELA", "RFTN1", "RGCC", "RIGI", "RIOK3", "RIPK1", "RIPK2", "RNF135", "ROCK2", "RORA", "RPS3", "RSAD2", "RUNX1", "S100A13", "SAA1", "SCAMP5", "SCIMP", "SCRIB", "SEMA7A", "SERPINE1", "SERPINF2", "SETD2", "SETD4", "SIGLEC16", "SIRT1", "SLAMF1", "SLAMF6", "SLC11A1", "SLC7A5", "SOD1", "SORL1", "SPHK1", "SPHK2", "SPN", "SPTBN1", "STAT1", "STAT3", "STING1", "STMP1", "STOML2", "SULF1", "SULF2", "SYK", "TANK", "TBK1", "TBX21", "TGFB1", "THBS1", "TICAM1", "TICAM2", "TIGIT", "TIRAP", "TLR1", "TLR2", "TLR3", "TLR4", "TLR5", "TLR6", "TLR7", "TLR8", "TLR9", "TMED10", "TMEM106A", "TMIGD2", "TNF", "TNFRSF14", "TNFRSF8", "TNFSF4", "TOMM70", "TRAF2", "TRAF3", "TRAF3IP3", "TRAF6", "TRIM15", "TRIM16", "TRIM27", "TRIM56", "TRIM6", "TRIM65", "TSLP", "TWIST1", "TXK", "TYK2", "TYROBP", "UAP1", "USP22", "USP50", "WNT5A", "XBP1", "XCL1", "XIAP", "ZBTB7B", "ZC3HAV1", "ZCCHC3", "ZFPM1", "ZNF580", "ZP3" ] }, "position": { "x": 1572.9047674129697, "y": 362.813213467422, "id": "366dd0a3-3444-47cd-ac20-2a83f4584eda" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "25a9a2af-f609-47a7-a75e-59c026281cf8", "name": [ "REGULATION OF VIRAL ENTRY INTO HOST CELL%GOBP%GO:0046596" ], "description": [ "regulation of viral entry into host cell" ], "pvalue": 0, "gs_type": null, "gs_size": 46, "padj": 0.0013, "mcode_cluster_id": "Cluster 30", "NES": -1.9872, "genes": [ "APCS", "CD4", "CD74", "CH25H", "CIITA", "FCN1", "FCN3", "FURIN", "GSN", "HLA-DRB1", "HMGB1", "HS3ST5", "IFITM1", "IFITM2", "IFITM3", "IFNA2", "LGALS1", "LGALS9", "LRRC15", "LY6E", "MID2", "NECTIN2", "P4HB", "PTX3", "RFPL1", "RFPL2", "RFPL3", "RFPL4A", "RFPL4AL1", "SMPD1", "SNX3", "TMPRSS2", "TMPRSS4", "TRIM11", "TRIM21", "TRIM22", "TRIM25", "TRIM26", "TRIM31", "TRIM34", "TRIM38", "TRIM5", "TRIM58", "TRIM6", "TRIM62", "TRIM68" ] }, "position": { "x": 1190.1960106991885, "y": 1555.8108032973391, "id": "25a9a2af-f609-47a7-a75e-59c026281cf8", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "763e4196-95c7-47ff-8ba9-808223cde662", "name": [ "CELLULAR RESPONSE TO BIOTIC STIMULUS%GOBP%GO:0071216" ], "description": [ "cellular response to biotic stimulus" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 157, "padj": 0.0018, "mcode_cluster_id": "Cluster 9", "NES": -1.8071, "genes": [ "ACOD1", "ADAM9", "AHR", "ANKRD1", "APAF1", "ATG10", "AXL", "BCL10", "BPI", "CACTIN", "CARD16", "CARD17P", "CASP1", "CASP7", "CCL2", "CCR5", "CD14", "CD180", "CD274", "CD36", "CD6", "CD68", "CD80", "CD86", "CDC73", "CHMP5", "CLEC7A", "CTR9", "CTSG", "CX3CR1", "CXCL1", "CXCL10", "CXCL11", "CXCL13", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "CYRIB", "DAB2IP", "DDIT3", "DEFA1B", "DEFA3", "DEFA4", "DEFA5", "DEFA6", "DEFB124", "EIF2AK3", "EME1", "FBH1", "FCGR2B", "FZD5", "GBP2", "GBP3", "GFI1", "GIT1", "GSK3B", "GSTP1", "HCK", "HMGB1", "HMGB2", "IGFBPL1", "IL10", "IL1A", "IL1B", "IL1F10", "IL36A", "IL36B", "IL36G", "IL36RN", "IL37", "IL6", "IRAK1", "IRAK2", "IRAK3", "IRAK4", "IRGM", "LBP", "LDOC1", "LILRB1", "LILRB2", "LY96", "LYN", "MAPK14", "MAPK8", "MEF2C", "MMP3", "MMP8", "MMP9", "MTDH", "MUS81", "MYD88", "NFKB1", "NFKBIB", "NFKBIL1", "NLRP3", "NLRP7", "NOD2", "NOTCH1", "NOTCH2", "NR1D1", "NR1H3", "NUGGC", "PABPN1", "PAF1", "PDCD1LG2", "PDCD4", "PDE4B", "PF4", "PF4V1", "PLAA", "PLCG2", "PPBP", "PPM1E", "PRKCE", "PTPN22", "PYCARD", "RELA", "RHOA", "SBNO2", "SCIMP", "SELENOS", "SERPINE1", "SHPK", "SIRPA", "SLX4", "SMC1A", "STAP1", "SYK", "TICAM1", "TICAM2", "TIRAP", "TLR1", "TLR10", "TLR2", "TLR4", "TLR6", "TMCO1", "TNFAIP3", "TNFRSF1B", "TNFSF4", "TNIP1", "TNIP2", "TNIP3", "TP53", "TRAF6", "TRIM41", "TXNIP", "UPF1", "VIM", "WFS1", "WNT5A", "XBP1", "ZC3H12A", "ZFP36" ] }, "position": { "x": 3211.1365026375456, "y": 181.54530758875683, "id": "763e4196-95c7-47ff-8ba9-808223cde662", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "c48684b6-8836-4a81-8160-62d1535f0af8", "name": [ "ORC1 REMOVAL FROM CHROMATIN%REACTOME%R-HSA-68949.5" ], "description": [ "Orc1 removal from chromatin" ], "pvalue": 1.7337e-7, "gs_type": null, "gs_size": 71, "padj": 0.0000094263, "mcode_cluster_id": "Cluster 1", "NES": -2.1078, "genes": [ "CCNA1", "CCNA2", "CDC6", "CDK2", "CDT1", "CUL1", "MCM2", "MCM3", "MCM4", "MCM5", "MCM6", "MCM7", "MCM8", "ORC1", "ORC2", "ORC3", "ORC4", "ORC5", "ORC6", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RBX1", "RPS27A", "SEM1", "SKP1", "SKP2", "UBA52", "UBB", "UBC" ] }, "position": { "x": 466.9786642998138, "y": 837.8161362571228, "id": "c48684b6-8836-4a81-8160-62d1535f0af8", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "b8c06bc3-3367-43b1-8e2d-b6b7ae3498b5", "name": [ "APOPTOSIS MODULATION AND SIGNALING%WIKIPATHWAYS_20240410%WP1772%HOMO SAPIENS" ], "description": [ "Apoptosis modulation and signaling" ], "pvalue": 0.0037, "gs_type": null, "gs_size": 77, "padj": 0.0416, "mcode_cluster_id": "Cluster 35", "NES": -1.5742, "genes": [ "AIFM1", "AIFM2", "APAF1", "BAD", "BAG3", "BAK1", "BAX", "BBC3", "BCL2", "BCL2A1", "BCL2L1", "BCL2L10", "BCL2L11", "BCL2L2", "BIK", "BIRC2", "BIRC3", "BIRC5", "BIRC7", "BLK", "BMF", "BNIP3", "BOK", "CAPNS1", "CASP10", "CASP2", "CASP3", "CASP4", "CASP6", "CASP8", "CASP9", "CDKN2A", "CRADD", "CYCS", "DFFA", "DFFB", "DIABLO", "DKFZp686A24188", "DKFZp686J04131", "FADD", "FAS", "FOS", "HRK", "HTRA2", "IKBKB", "IL1R1", "IL1R2", "IRAK1", "JUN", "MADD", "MAP3K5", "MAPK3", "MAPK8", "MCL1", "MYD88", "NAIP", "NFKB1", "NFKBIA", "PIDD1", "PMAIP1", "PRKD1", "PTPN13", "PTRH2", "RIPK1", "SEPTIN4", "TNFRSF10A", "TNFRSF10C", "TNFRSF10D", "TNFRSF1A", "TNFRSF1B", "TNFRSF25", "TNFRSF6B", "TNFSF10", "TNFSF6", "TRADD", "TRAF3", "TRAF6" ] }, "position": { "x": 295.4371241794049, "y": 1859.9388142589146, "id": "b8c06bc3-3367-43b1-8e2d-b6b7ae3498b5", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "f6891175-5036-4132-a888-19181a4f30e9", "name": [ "DECTIN-1 MEDIATED NONCANONICAL NF-KB SIGNALING%REACTOME%R-HSA-5607761.3" ], "description": [ "Dectin-1 mediated noncanonical NF-kB signaling" ], "pvalue": 0, "gs_type": null, "gs_size": 60, "padj": 0.0007, "mcode_cluster_id": "Cluster 1", "NES": -1.9731, "genes": [ "BTRC", "CHUK", "CUL1", "FBXW11", "MAP3K14", "NFKB2", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RELA", "RELB", "RPS27A", "SEM1", "SKP1", "UBA3", "UBA52", "UBB", "UBC", "UBE2M" ] }, "position": { "x": 471.9319094510318, "y": 842.3363768573828, "id": "f6891175-5036-4132-a888-19181a4f30e9", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "11a77808-6dbd-4489-b974-4b2be36afc05", "name": [ "P53-DEPENDENT G1 DNA DAMAGE RESPONSE%REACTOME%R-HSA-69563.5" ], "description": [ "p53-Dependent G1 DNA Damage Response" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 66, "padj": 0.003, "mcode_cluster_id": "Cluster 1", "NES": -1.8292, "genes": [ "ATM", "CCNA1", "CCNA2", "CCNE1", "CCNE2", "CDK2", "CDKN1A", "CDKN1B", "CDKN2A", "CHEK2", "COP1", "MDM2", "MDM4", "PCBP4", "PHF20", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RPS27A", "SEM1", "TP53", "UBA52", "UBB", "UBC", "ZNF385A" ] }, "position": { "x": 459.90102880569174, "y": 773.7759238421426, "id": "11a77808-6dbd-4489-b974-4b2be36afc05", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "b53e282a-eced-4b33-95e6-d98005e56982", "name": [ "IMMUNOREGULATORY INTERACTIONS BETWEEN A LYMPHOID AND A NON-LYMPHOID CELL%REACTOME%R-HSA-198933.9" ], "description": [ "Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell" ], "pvalue": 0.001, "gs_type": null, "gs_size": 217, "padj": 0.0164, "mcode_cluster_id": null, "NES": -1.7662, "genes": [ "B2M", "C3", "CD160", "CD19", "CD1A", "CD1B", "CD1C", "CD1D", "CD200", "CD200R1", "CD22", "CD226", "CD300A", "CD300C", "CD300E", "CD300LB", "CD300LD", "CD300LF", "CD300LG", "CD33", "CD3D", "CD3E", "CD3G", "CD40LG", "CD81", "CD8A", "CD8B", "CD96", "CD99", "CDH1", "CLEC2B", "CLEC2D", "CLEC4G", "COLEC12", "CRTAM", "CXADR", "FCGR1A", "FCGR2B", "FCGR3A", "GLYCAM1", "HCST", "HLA-A", "HLA-B", "HLA-C", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "ICAM1", "ICAM2", "ICAM3", "ICAM4", "ICAM5", "IFITM1", "IGHV", "IGHV1-2", "IGHV1-46", "IGHV1-69", "IGHV2-5", "IGHV2-70", "IGHV3-11", "IGHV3-13", "IGHV3-23", "IGHV3-30", "IGHV3-33", "IGHV3-48", "IGHV3-53", "IGHV3-7", "IGHV3-9", "IGHV4-34", "IGHV4-39", "IGHV4-59", "IGHV7-81", "IGKC", "IGKV1-12", "IGKV1-16", "IGKV1-17", "IGKV1-33", "IGKV1-39", "IGKV1-5", "IGKV1D-12", "IGKV1D-16", "IGKV1D-33", "IGKV1D-39", "IGKV2-28", "IGKV2-29", "IGKV2-30", "IGKV2D-28", "IGKV2D-30", "IGKV2D-40", "IGKV3-11", "IGKV3-15", "IGKV3-20", "IGKV3D-20", "IGKV4-1", "IGKV5-2", "IGLC1", "IGLC2", "IGLC3", "IGLC6", "IGLC7", "IGLV", "IGLV1-40", "IGLV1-44", "IGLV1-47", "IGLV1-51", "IGLV2-11", "IGLV2-14", "IGLV2-23", "IGLV2-8", "IGLV3-1", "IGLV3-19", "IGLV3-21", "IGLV3-25", "IGLV3-27", "IGLV6-57", "IGLV7-43", "ITGA4", "ITGAL", "ITGB1", "ITGB2", "ITGB7", "JAML", "KIR2DL1", "KIR2DL2", "KIR2DL3", "KIR2DL4", "KIR2DS1", "KIR2DS2", "KIR3DL1", "KIR3DL2", "KLRB1", "KLRC1", "KLRD1", "KLRF1", "KLRG1", "KLRK1", "LAIR1", "LAIR2", "LILRA1", "LILRA2", "LILRA3", "LILRA4", "LILRA5", "LILRA6", "LILRB1", "LILRB2", "LILRB3", "LILRB4", "LILRB5", "MICA", "MICB", "NCR1", "NCR2", "NCR3", "NCR3LG1", "NECTIN2", "NPDC1", "OSCAR", "PIANP", "PILRA", "PILRB", "PVR", "RAET1E", "SELL", "SH2D1A", "SH2D1B", "SIGLEC1", "SIGLEC10", "SIGLEC11", "SIGLEC12", "SIGLEC5", "SIGLEC6", "SIGLEC7", "SIGLEC8", "SIGLEC9", "SLAMF6", "SLAMF7", "TRAC", "TRAV19", "TRAV29DV5", "TRAV8-4", "TRBC1", "TRBV12-3", "TRBV7-9", "TREM1", "TREM2", "TREML1", "TREML2", "TREML4", "TYROBP", "ULBP1", "ULBP3", "V1-11", "V1-13", "V1-16", "V1-20", "V1-3", "V1-5", "V1-7", "V1-9", "V2-11", "V2-15", "V2-17", "V2-19", "V2-8", "V3-2", "V3-3", "V3-4", "V4-1", "V4-2", "V4-6", "V5-1", "V5-4", "V5-6", "VCAM1", "cd21" ] }, "position": { "x": 100.87327324527342, "y": 728.0112580109974, "id": "b53e282a-eced-4b33-95e6-d98005e56982" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "f9b39331-d306-4809-b0c4-ce6e8a9a7e0d", "name": [ "PYRIDINE NUCLEOTIDE CATABOLIC PROCESS%GOBP%GO:0019364" ], "description": [ "pyridine nucleotide catabolic process" ], "pvalue": 0.0012, "gs_type": null, "gs_size": 38, "padj": 0.0183, "mcode_cluster_id": "Cluster 4", "NES": 1.8507, "genes": [ "ADPGK", "ALDOA", "ALDOB", "ALDOC", "ENO1", "ENO2", "ENO3", "ENO4", "FOXK1", "FOXK2", "GAPDH", "GAPDHS", "GCK", "GPI", "HK1", "HK2", "HK3", "HKDC1", "LDHA", "NUDT12", "NUDT13", "NUDT17", "PFKFB1", "PFKFB2", "PFKL", "PFKM", "PFKP", "PGAM1", "PGAM2", "PGAM4", "PGK1", "PGK2", "PGM1", "PKLR", "PKM", "SARM1", "TPI1", "UCP2" ] }, "position": { "x": 3600.4739434911894, "y": 1527.2230333833331, "id": "f9b39331-d306-4809-b0c4-ce6e8a9a7e0d", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "6e735b7d-4008-4a11-8624-76192410cf30", "name": [ "POSITIVE REGULATION OF DEFENSE RESPONSE TO VIRUS BY HOST%GOBP%GO:0002230" ], "description": [ "positive regulation of defense response to virus by host" ], "pvalue": 0, "gs_type": null, "gs_size": 26, "padj": 0.0009, "mcode_cluster_id": "Cluster 36", "NES": -2.0757, "genes": [ "AIM2", "APOBEC3F", "APOBEC3G", "CGAS", "DTX3L", "EIF2AK4", "HSP90AA1", "IL12B", "IL12RB1", "IL23A", "IL23R", "LILRB1", "MAVS", "PARP9", "PQBP1", "RIGI", "STAT1", "STING1", "TOMM70", "TRAF3IP2", "TRIM22", "TRIM44", "TRIM6", "ZC3H12A", "ZDHHC1", "ZDHHC11" ] }, "position": { "x": 449.43728947796825, "y": 1843.5188946631254, "id": "6e735b7d-4008-4a11-8624-76192410cf30", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "name": [ "FCERI MEDIATED NF-KB ACTIVATION%REACTOME DATABASE ID RELEASE 81%2871837" ], "description": [ "FCERI mediated NF-kB activation" ], "pvalue": 0.0014, "gs_type": null, "gs_size": 164, "padj": 0.0211, "mcode_cluster_id": null, "NES": -1.6717, "genes": [ "BCL10", "BTRC", "CARD11", "CDC34", "CHUK", "CUL1", "FBXW11", "IGHE", "IGHV", "IGHV1-2", "IGHV1-46", "IGHV1-69", "IGHV2-5", "IGHV2-70", "IGHV3-11", "IGHV3-13", "IGHV3-23", "IGHV3-30", "IGHV3-33", "IGHV3-48", "IGHV3-53", "IGHV3-7", "IGHV3-9", "IGHV4-34", "IGHV4-39", "IGHV4-59", "IGHV7-81", "IGKC", "IGKV1-12", "IGKV1-16", "IGKV1-17", "IGKV1-33", "IGKV1-39", "IGKV1-5", "IGKV1D-12", "IGKV1D-16", "IGKV1D-33", "IGKV1D-39", "IGKV2-28", "IGKV2-29", "IGKV2-30", "IGKV2D-28", "IGKV2D-30", "IGKV2D-40", "IGKV3-11", "IGKV3-15", "IGKV3-20", "IGKV3D-20", "IGKV4-1", "IGKV5-2", "IGLC1", "IGLC2", "IGLC3", "IGLC6", "IGLC7", "IGLV", "IGLV1-40", "IGLV1-44", "IGLV1-47", "IGLV1-51", "IGLV2-11", "IGLV2-14", "IGLV2-23", "IGLV2-8", "IGLV3-1", "IGLV3-19", "IGLV3-21", "IGLV3-25", "IGLV3-27", "IGLV6-57", "IGLV7-43", "IKBKB", "IKBKG", "LYN", "MALT1", "MAP3K7", "NFKB1", "NFKBIA", "PDPK1", "PRKCQ", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RASGRP1", "RASGRP2", "RASGRP4", "RELA", "RPS27A", "SEM1", "SKP1", "TAB1", "TAB2", "TAB3", "TRAF6", "UBA52", "UBB", "UBC", "UBE2D1", "UBE2D2", "UBE2N", "UBE2V1", "V1-11", "V1-13", "V1-16", "V1-20", "V1-3", "V1-5", "V1-7", "V1-9", "V2-11", "V2-15", "V2-17", "V2-19", "V2-8", "V3-2", "V3-3", "V3-4", "V4-1", "V4-2", "V4-6", "V5-1", "V5-4", "V5-6" ] }, "position": { "x": 390.4516641305198, "y": 853.1092673026728, "id": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "da452f14-6d42-4687-b125-32b599add7dd", "name": [ "STEM CELL PROLIFERATION%GOBP%GO:0072089" ], "description": [ "stem cell proliferation" ], "pvalue": 0.0006, "gs_type": null, "gs_size": 20, "padj": 0.0099, "mcode_cluster_id": null, "NES": -1.9129, "genes": [ "ABCB1", "ARIH2", "CD34", "ETV6", "FGF2", "MECOM", "NES", "RNF43", "RUNX1", "SFRP2", "SIX2", "TRIM71", "WNT10B", "WNT2B", "WNT3", "WNT5A", "WNT7B", "YJEFN3", "YTHDF2", "ZNRF3" ] }, "position": { "x": 1731.5, "y": 2272.9446642487483, "id": "da452f14-6d42-4687-b125-32b599add7dd" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "6bf0e316-511e-47c8-a951-3f240692586a", "name": [ "TCR SIGNALING%REACTOME DATABASE ID RELEASE 81%202403" ], "description": [ "TCR signaling" ], "pvalue": 0.0043, "gs_type": null, "gs_size": 125, "padj": 0.0454, "mcode_cluster_id": "Cluster 1", "NES": -1.4998, "genes": [ "BCL10", "BTRC", "CARD11", "CD101", "CD3D", "CD3E", "CD3G", "CD4", "CDC34", "CHUK", "CSK", "CUL1", "ENAH", "EVL", "FBXW11", "FYB1", "GRAP2", "HLA-DPA1", "HLA-DPB1", "HLA-DQA1", "HLA-DQA2", "HLA-DQB1", "HLA-DQB2", "HLA-DRA", "HLA-DRB1", "HLA-DRB3", "HLA-DRB4", "HLA-DRB5", "IKBKB", "IKBKG", "INPP5D", "ITK", "LAT", "LCK", "LCP2", "MALT1", "MAP3K7", "NCK1", "NFKB1", "NFKBIA", "PAG1", "PAK1", "PAK2", "PAK3", "PDPK1", "PIK3CA", "PIK3CB", "PIK3R1", "PIK3R2", "PLCG1", "PLCG2", "PRKCQ", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "PTEN", "PTPN22", "PTPRC", "PTPRJ", "RELA", "RIPK2", "RPS27A", "SEM1", "SKP1", "TAB2", "TRAC", "TRAF6", "TRAT1", "TRAV19", "TRAV29DV5", "TRAV8-4", "TRBC1", "TRBV12-3", "TRBV7-9", "UBA52", "UBB", "UBC", "UBE2D1", "UBE2D2", "UBE2N", "UBE2V1", "VASP", "WAS", "ZAP70" ] }, "position": { "x": 411.74229500140973, "y": 817.1573847672555, "id": "6bf0e316-511e-47c8-a951-3f240692586a", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "name": [ "GSK3B AND BTRC:CUL1-MEDIATED-DEGRADATION OF NFE2L2%REACTOME%R-HSA-9762114.3" ], "description": [ "GSK3B and BTRC:CUL1-mediated-degradation of NFE2L2" ], "pvalue": 0, "gs_type": null, "gs_size": 52, "padj": 0.0008, "mcode_cluster_id": "Cluster 1", "NES": -1.9992, "genes": [ "BTRC", "CUL1", "GSK3B", "NFE2L2", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMB1", "PSMB10", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSMF1", "RBX1", "RPS27A", "SEM1", "SKP1", "UBA52", "UBB", "UBC" ] }, "position": { "x": 432.0481909857502, "y": 805.4418400814736, "id": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "5db5ed69-b4e2-485d-b78c-1b47eb326935", "name": [ "MYOADENYLATE DEAMINASE DEFICIENCY%PATHWHIZ%PW000513" ], "description": [ "Myoadenylate Deaminase Deficiency" ], "pvalue": 0.0025, "gs_type": null, "gs_size": 37, "padj": 0.031, "mcode_cluster_id": "Cluster 3", "NES": -1.6821, "genes": [ "ADA", "ADCY2", "ADSL", "ADSS2", "AK1", "AMPD1", "APRT", "ATAD1", "ATIC", "DGUOK", "ENTPD5", "ENTPD8", "GART", "GDA", "GMPR", "GMPS", "GUCY1A2", "GUCY1B1", "GUK1", "HPRT1", "IMPDH1", "ITPA", "NME6", "NT5C2", "NUDT2", "NUDT5", "PAICS", "PDE10A", "PDE4D", "PFAS", "PNP", "PPAT", "PRPS1L1", "RRM1", "RRM2", "TXN", "XDH" ] }, "position": { "x": 1427.2249324315592, "y": 1286.831743425267, "id": "5db5ed69-b4e2-485d-b78c-1b47eb326935", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "62d1a2a4-a8b0-4330-9997-0e0c05099ea3", "name": [ "ANTIGEN PROCESSING AND PRESENTATION OF ENDOGENOUS PEPTIDE ANTIGEN VIA MHC CLASS I%GOBP%GO:0019885" ], "description": [ "antigen processing and presentation of endogenous peptide antigen via MHC class I" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 22, "padj": 0.0014, "mcode_cluster_id": "Cluster 10", "NES": -2.047, "genes": [ "B2M", "ERAP1", "ERAP2", "HFE", "HLA-A", "HLA-B", "HLA-C", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "IDE", "MICA", "MICB", "RAET1E", "RAET1G", "RAET1L", "TAP1", "TAP2", "ULBP1", "ULBP2", "ULBP3" ] }, "position": { "x": 1994.2270033679663, "y": 986.000449771109, "id": "62d1a2a4-a8b0-4330-9997-0e0c05099ea3", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "049142b9-19dd-4af1-896a-e365acc9098d", "name": [ "RESPONSE TO LIPID%GOBP%GO:0033993" ], "description": [ "response to lipid" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 446, "padj": 0.0018, "mcode_cluster_id": "Cluster 9", "NES": -1.5458, "genes": [ "ABCA2", "ABCB4", "ABCG1", "ABHD2", "ABL2", "ACER2", "ACOD1", "ADAM15", "ADAM17", "ADAM9", "ADCY1", "ADCY2", "ADCY3", "ADCY5", "ADCY6", "ADCY8", "ADTRP", "AHR", "AKR1C1", "AKR1C2", "AKR1C3", "AKR1C4", "ALAS1", "ALDH1A2", "ALPL", "ANKRD1", "ANXA1", "APOA4", "AQP1", "AQP3", "AR", "ARID1A", "ASCL1", "ASXL1", "ATM", "ATP1A1", "ATP1A2", "ATP1A3", "AXL", "BCL10", "BCL2L11", "BGLAP", "BPI", "BRINP1", "BRINP2", "BRINP3", "CACTIN", "CALCOCO1", "CALCR", "CALR", "CARD16", "CARD17P", "CASP1", "CASP7", "CAV1", "CCDC62", "CCL19", "CCL2", "CCL21", "CCL3", "CCR5", "CCR7", "CD14", "CD180", "CD274", "CD36", "CD6", "CD68", "CD80", "CD86", "CDC73", "CDKN2D", "CES1", "CFTR", "CHMP5", "CITED1", "CPS1", "CREB1", "CRHBP", "CSN1S1", "CST11", "CTNNB1", "CTR9", "CTSG", "CTSH", "CX3CR1", "CXCL1", "CXCL10", "CXCL11", "CXCL13", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "CYP19A1", "CYP24A1", "CYP27B1", "CYP7A1", "DAB2IP", "DAXX", "DDX17", "DDX5", "DDX54", "DEFA1B", "DEFA3", "DEFA4", "DEFA5", "DEFA6", "DEFB104B", "DGAT2", "DYNAP", "EGFR", "EGLN2", "EPHA3", "ERBIN", "ESR1", "ESR2", "ESRRA", "ESRRB", "ESRRG", "F2R", "FAM107A", "FAM210B", "FBXO3", "FER", "FES", "FFAR1", "FFAR2", "FFAR3", "FGFR4", "FOXA1", "FOXO1", "FOXO3", "FOXP1", "FZD10", "FZD4", "FZD7", "GATA6", "GBP2", "GBP3", "GCH1", "GFI1", "GH1", "GHRHR", "GIT1", "GLDC", "GNAI1", "GNB1", "GNG2", "GOT1", "GPBAR1", "GPER1", "GPLD1", "GPR155", "GPX3", "GRAMD1A", "GRAMD1B", "GRAMD1C", "GSK3B", "GSTP1", "H2AZ1", "HCK", "HMGB1", "HMGB2", "HNRNPA0", "HNRNPU", "HSD17B2", "HSD3B1", "HSD3B2", "HSPA1A", "HSPA1B", "HTRA2", "IFNAR1", "IL10", "IL12A", "IL1A", "IL1B", "IL1F10", "IL1RN", "IL23R", "IL36A", "IL36B", "IL36G", "IL36RN", "IL37", "IL6", "ILDR1", "INSIG1", "INSIG2", "IRAK1", "IRAK2", "IRAK3", "IRAK4", "IRGM", "IRS1", "ISL1", "JAK2", "KAT5", "KCNK4", "KDM3A", "KDM4C", "KLF9", "LBP", "LCOR", "LDOC1", "LGALS9", "LIAS", "LILRB1", "LILRB2", "LPL", "LRP6", "LTK", "LY96", "LYN", "MAP4K1", "MAPK1", "MAPK14", "MAPK8", "MAPKAPK2", "MAPKAPK3", "MED1", "MEF2C", "MEIOSIN", "MGARP", "MGST1", "MICB", "MLC1", "MMP3", "MMP8", "MMP9", "MSN", "MTDH", "MYD88", "MYOD1", "MYOG", "NCOA3", "NCOA4", "NDUFA13", "NEDD4", "NFKB1", "NFKBIB", "NFKBIL1", "NKX3-1", "NLRP3", "NLRP7", "NOCT", "NOD2", "NOS1", "NOS2", "NOS3", "NR1D1", "NR1H3", "NR1H4", "NR3C1", "NR3C2", "NR4A1", "NRIP1", "NUGGC", "OR51E2", "OSBPL7", "OTUD5", "OVCA2", "PABPN1", "PADI2", "PAF1", "PALM3", "PAQR7", "PAQR8", "PAX2", "PCK1", "PCK2", "PDCD1LG2", "PDCD4", "PDCD7", "PDE4B", "PDK3", "PDK4", "PELI1", "PF4", "PF4V1", "PGR", "PHB1", "PID1", "PIM1", "PLAA", "PLCG2", "PLPP1", "PMEPA1", "PMVK", "POU4F1", "POU4F2", "PPARG", "PPARGC1B", "PPBP", "PPM1E", "PPP5C", "PRDX3", "PRKCE", "PTCH1", "PTGER2", "PTGER4", "PTGFR", "PTK2B", "PTK6", "PTK7", "PTPN22", "PYCARD", "RAMP3", "RARA", "RARG", "RBFOX2", "RBP4", "RELA", "REST", "RET", "RHOA", "RHOXF1", "RNF14", "ROCK2", "RORA", "RORB", "RORC", "RPS6KA3", "RUVBL2", "RXRA", "RXRB", "RXRG", "S100A14", "S100A7", "S100A8", "S100A9", "SAFB", "SBNO2", "SCARB1", "SCD", "SCGB2A1", "SCGB2A2", "SCNN1A", "SCNN1B", "SCNN1D", "SCNN1G", "SELE", "SELENOS", "SELP", "SERPINE1", "SFRP1", "SHPK", "SIRPA", "SLC11A1", "SLC5A5", "SLIT2", "SLIT3", "SLPI", "SMAD2", "SMAD6", "SMO", "SNCA", "SNW1", "SOCS2", "SOX30", "SOX9", "SPHK2", "SPP1", "SRC", "SRR", "SSTR1", "SSTR2", "SSTR4", "SSTR5", "STAP1", "STAT3", "STAT5B", "STRA8", "STRN3", "SYK", "TAB2", "TADA3", "TBX1", "TESC", "TFPI", "TGFB1", "TGFB2", "TGFB3", "TGFBR1", "TGFBR2", "TGFBR3", "THBS1", "TICAM1", "TICAM2", "TIRAP", "TLR4", "TMEM161A", "TMF1", "TNF", "TNFAIP3", "TNFRSF11A", "TNFRSF1B", "TNFSF4", "TNIP1", "TNIP2", "TNIP3", "TRAF6", "TREM2", "TRERF1", "TRIB1", "TRIM16", "TRIM41", "TRIM6", "TWF2", "UBE2L3", "UBE3A", "UBR5", "UCP1", "UPF1", "URI1", "VDR", "VIM", "VPS4B", "WBP2", "WNT10B", "WNT11", "WNT2", "WNT3", "WNT3A", "WNT5A", "WNT5B", "WNT6", "WNT7B", "WNT8A", "WNT8B", "WNT9A", "WNT9B", "XBP1", "YAP1", "YWHAH", "ZC3H12A", "ZDHHC7", "ZFP36", "ZFP36L1", "ZFP36L2", "ZMIZ1", "ZNF35", "ZNF703", "ZNF764" ] }, "position": { "x": 3158.978630595777, "y": 15.000000000000014, "id": "049142b9-19dd-4af1-896a-e365acc9098d", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "8102549a-740f-4e81-9373-b6d30e8cdc60", "name": [ "MODULATION BY SYMBIONT OF ENTRY INTO HOST%GOBP%GO:0052372" ], "description": [ "modulation by symbiont of entry into host" ], "pvalue": 0.0000056863, "gs_type": null, "gs_size": 53, "padj": 0.0002, "mcode_cluster_id": "Cluster 30", "NES": -2.0752, "genes": [ "APCS", "CAV1", "CD4", "CD74", "CH25H", "CIITA", "CXCL8", "EXOC2", "EXOC7", "FCN1", "FCN3", "FUCA2", "FURIN", "GSN", "HLA-DRB1", "HMGB1", "HS3ST5", "IFITM1", "IFITM2", "IFITM3", "IFNA2", "ITGAV", "KRT6A", "LGALS1", "LGALS9", "LRRC15", "LY6E", "MID2", "NECTIN2", "P4HB", "PTX3", "RFPL1", "RFPL2", "RFPL3", "RFPL4A", "RFPL4AL1", "SMPD1", "SNX3", "TMPRSS2", "TMPRSS4", "TRIM11", "TRIM21", "TRIM22", "TRIM25", "TRIM26", "TRIM31", "TRIM34", "TRIM38", "TRIM5", "TRIM58", "TRIM6", "TRIM62", "TRIM68" ] }, "position": { "x": 1170.459974930596, "y": 1552.082469261576, "id": "8102549a-740f-4e81-9373-b6d30e8cdc60", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "65ac29cf-26d3-4113-b8e7-f352e4a9e047", "name": [ "FOLATE METABOLISM%WIKIPATHWAYS_20240410%WP176%HOMO SAPIENS" ], "description": [ "Folate metabolism" ], "pvalue": 0.0016, "gs_type": null, "gs_size": 58, "padj": 0.0233, "mcode_cluster_id": null, "NES": -1.7335, "genes": [ "ABCA1", "ALB", "APOB", "CCL2", "CRP", "CSF1", "CTH", "DHFR", "DKFZp564M2422", "DKFZp727E011", "F2", "F7", "FGA", "FLAD1", "FOLR1", "FOLR2", "FOLR3", "GPX1", "GPX2", "GPX3", "GPX4", "GPX6", "HBA2", "HBB", "HEL-S-44", "HEL-S-51e", "HEL-S-78p", "IF2F", "IL1B", "IL2", "IL4", "IL6", "INS", "INSR", "IZUMO1R", "LDLR", "MAT1A", "MPO", "MTHFD1", "MTHFD2", "MTHFS", "MTR", "MTRR", "NFKB1", "NFKB2", "PLAT", "PLG", "RELA", "SAA1", "SAA2", "SAA4", "SCARB1", "SERPINA3", "SERPINE1", "SHMT1", "SLC19A1", "SLC46A1", "TNF" ] }, "position": { "x": 2691.4260719253652, "y": 1830.829109987178, "id": "65ac29cf-26d3-4113-b8e7-f352e4a9e047" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "7b2695a3-2011-4bfb-8bfa-369296afeecb", "name": [ "OVERVIEW OF PROINFLAMMATORY AND PROFIBROTIC MEDIATORS%WIKIPATHWAYS_20240410%WP5095%HOMO SAPIENS" ], "description": [ "Overview of proinflammatory and profibrotic mediators" ], "pvalue": 0.0028, "gs_type": null, "gs_size": 126, "padj": 0.0341, "mcode_cluster_id": null, "NES": -1.7267, "genes": [ "AREG", "CCL1", "CCL11", "CCL13", "CCL14", "CCL15-CCL14", "CCL16", "CCL17", "CCL18", "CCL19", "CCL2", "CCL20", "CCL21", "CCL22", "CCL23", "CCL24", "CCL25", "CCL26", "CCL27", "CCL28", "CCL3", "CCL3L3", "CCL4", "CCL4L2", "CCL5", "CCL7", "CCL8", "CNTF", "CSF1", "CSF2", "CSF3", "CTF1", "CX3CL1", "CXCL1", "CXCL11", "CXCL12", "CXCL13", "CXCL14", "CXCL16", "CXCL17", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "EBI3", "EPO", "IF1AA1", "IF1AA3", "IF1AA4", "IF1AA5", "IF1AA6", "IF1AA8", "IF1AA9", "IF1AB1", "IF1AB4", "IF1BA1", "IF1DA1", "IF1IA1", "IF1IB1", "IF2B1", "IF2D", "IF2E", "IF2F", "IF2G", "IFNA1", "IFNA13", "IFNA14", "IFNA4", "IFNK", "IFNL2", "IL-21", "IL10", "IL11", "IL12A", "IL12B", "IL13", "IL15", "IL17A", "IL17B", "IL17C", "IL17D", "IL17F", "IL18", "IL19", "IL1A", "IL1B", "IL1F10", "IL1RN", "IL2", "IL23A", "IL25", "IL27", "IL3", "IL31", "IL33", "IL36A", "IL36B", "IL36G", "IL36RN", "IL37", "IL4", "IL5", "IL6", "IL7", "IL9", "LIF", "LOC728835", "LTA", "MMP3", "MMP9", "NFKB1", "OSM", "PF4", "PF4V1", "PPBP", "SPP1", "TGFB1", "TNF", "TNFSF13", "TNLG7A", "TSLP", "VEGFA", "XCL1", "XCL2" ] }, "position": { "x": 191.5, "y": 2272.9446642487483, "id": "7b2695a3-2011-4bfb-8bfa-369296afeecb" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "69c69d97-3401-431d-87ee-22f72bd12c57", "name": [ "ADP CATABOLIC PROCESS%GOBP%GO:0046032" ], "description": [ "ADP catabolic process" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 34, "padj": 0.0041, "mcode_cluster_id": "Cluster 4", "NES": 1.971, "genes": [ "ADPGK", "ALDOA", "ALDOB", "ALDOC", "ENO1", "ENO2", "ENO3", "ENO4", "FOXK1", "FOXK2", "GAPDH", "GAPDHS", "GCK", "GPI", "HK1", "HK2", "HK3", "HKDC1", "LDHA", "PFKFB1", "PFKFB2", "PFKL", "PFKM", "PFKP", "PGAM1", "PGAM2", "PGAM4", "PGK1", "PGK2", "PGM1", "PKLR", "PKM", "TPI1", "UCP2" ] }, "position": { "x": 3618.1059635399097, "y": 1670.7145706199972, "id": "69c69d97-3401-431d-87ee-22f72bd12c57", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "4c84babd-5ce0-42f8-899d-dfad984c96fb", "name": [ "NEGATIVE REGULATION OF INNATE IMMUNE RESPONSE%GOBP%GO:0045824" ], "description": [ "negative regulation of innate immune response" ], "pvalue": 0.0000032335, "gs_type": null, "gs_size": 79, "padj": 0.0001, "mcode_cluster_id": "Cluster 19", "NES": -2.0398, "genes": [ "A2M", "ACOD1", "ARG1", "ARRB2", "ATG12", "ATG5", "AURKB", "BANF1", "CACTIN", "CEACAM1", "CEP63", "CLEC12B", "CNOT7", "CR1", "DCST1", "DHX58", "DTX4", "EIF4E2", "FAM3A", "GIGYF2", "GRN", "HLA-A", "HLA-B", "HLA-E", "HLA-F", "HLA-G", "IFI16", "INS", "IRAK3", "ISG15", "KIR2DL4", "KLRC1", "KLRD1", "LGALS9", "LILRB1", "LYAR", "MAVS", "METTL3", "MICA", "MUL1", "NLRC3", "NLRC5", "NLRP4", "NMI", "NR1H2", "NR1H3", "OAS1", "OAS3", "OTOP1", "PARP1", "PARP14", "PIM1", "PPARG", "PTPN2", "RPS19", "SAMHD1", "SERPINB4", "SERPINB9", "SERPING1", "SFN", "SLAMF8", "SMIM30", "STAT2", "SUSD4", "TGFB1", "TNFAIP3", "TRAFD1", "TREX1", "TRIM21", "TTLL12", "TYRO3", "USP15", "USP18", "USP38", "VSIG4", "YTHDF2", "YTHDF3", "YWHAZ", "ZDHHC18" ] }, "position": { "x": 2054.899435659974, "y": 265.88219618815947, "id": "4c84babd-5ce0-42f8-899d-dfad984c96fb", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "8cffca08-69ba-4a11-8650-725824ef2372", "name": [ "TOLL-LIKE RECEPTOR 4 SIGNALING PATHWAY%GOBP%GO:0034142" ], "description": [ "toll-like receptor 4 signaling pathway" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 29, "padj": 0.0025, "mcode_cluster_id": "Cluster 20", "NES": -1.9651, "genes": [ "CD14", "CHUK", "ECSIT", "IRAK1", "IRAK2", "IRAK4", "IRF3", "LGALS9", "LY96", "MAP3K7", "MYD88", "NFKBIA", "NMI", "OAS1", "PIK3AP1", "PRKCE", "RAB11FIP2", "RELA", "S100A14", "SCIMP", "TBK1", "TICAM1", "TICAM2", "TIRAP", "TLR4", "TNIP3", "TRAF3", "TRAF6", "TRIL" ] }, "position": { "x": 1660.9151735707028, "y": 308.95578520229134, "id": "8cffca08-69ba-4a11-8650-725824ef2372", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "name": [ "TRANSLATION INITIATION COMPLEX FORMATION%REACTOME%R-HSA-72649.4" ], "description": [ "Translation initiation complex formation" ], "pvalue": 1.0006e-10, "gs_type": null, "gs_size": 59, "padj": 9.5415e-9, "mcode_cluster_id": "Cluster 2", "NES": 2.491, "genes": [ "EIF1AX", "EIF2S1", "EIF2S2", "EIF2S3", "EIF3A", "EIF3B", "EIF3C", "EIF3D", "EIF3E", "EIF3F", "EIF3G", "EIF3H", "EIF3I", "EIF3J", "EIF3K", "EIF3L", "EIF3M", "EIF4A1", "EIF4A2", "EIF4B", "EIF4E", "EIF4G1", "EIF4H", "FAU", "PABPC1", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA" ] }, "position": { "x": 1125.776004977417, "y": 486.6556696883507, "id": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "747b5cd2-7a44-4876-9d89-8464edf00296", "name": [ "CELL-SUBSTRATE ADHESION%GOBP%GO:0031589" ], "description": [ "cell-substrate adhesion" ], "pvalue": 0.0039, "gs_type": null, "gs_size": 141, "padj": 0.0425, "mcode_cluster_id": null, "NES": -1.519, "genes": [ "ACTN1", "ACTN2", "ACTN3", "ADAM15", "ADAM9", "ADAMTS12", "ADAMTS13", "ADAMTS9", "ANGPTL3", "ANTXR1", "ARHGEF7", "ATP1B2", "BCAM", "BCR", "BVES", "CCL21", "CD34", "CD44", "CD63", "CD96", "CDH11", "COL13A1", "COL17A1", "COL3A1", "CORO1A", "CTTN", "DDR1", "DEFB118", "DLC1", "ECM2", "EFNA1", "EMILIN1", "EMP2", "EPHA1", "EPHB1", "EPHB3", "FAT2", "FBLN5", "FER", "FERMT1", "FERMT2", "FERMT3", "FGA", "FGB", "FGG", "FGL1", "FN1", "HOXD3", "HPSE", "ILK", "ITGA1", "ITGA10", "ITGA11", "ITGA2", "ITGA2B", "ITGA3", "ITGA4", "ITGA5", "ITGA6", "ITGA7", "ITGA8", "ITGA9", "ITGAD", "ITGAE", "ITGAL", "ITGAM", "ITGAV", "ITGAX", "ITGB1", "ITGB1BP1", "ITGB2", "ITGB3", "ITGB4", "ITGB5", "ITGB6", "ITGB7", "ITGB8", "KIF14", "L1CAM", "LAMA5", "LAMB1", "LAMC1", "LPXN", "LYVE1", "MADCAM1", "MICALL2", "MKLN1", "MSLN", "MSLNL", "NID2", "NPNT", "NTN4", "OTOA", "PARVA", "PARVB", "PARVG", "PEAK1", "PIK3R1", "PIP5K1A", "PKD1", "PPFIA1", "PPFIA2", "PRKX", "PTPRK", "PXN", "RAC1", "RADIL", "RCC2", "RHOA", "RHOD", "SGCE", "SIGLEC1", "SMAD6", "SORBS1", "SORBS3", "SRC", "SRCIN1", "SRGAP2", "STRC", "STRCP1", "TAOK2", "TEK", "TESK2", "THBS3", "THSD1", "THY1", "TIAM1", "TIMM10B", "TMEM8B", "TNN", "TRIP6", "TSC1", "TYRO3", "VAMP3", "VCAM1", "VCL", "VTN", "VWA2", "VWF", "WHAMM", "ZYX" ] }, "position": { "x": 1115.5, "y": 2195.9446642487483, "id": "747b5cd2-7a44-4876-9d89-8464edf00296" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "e97d3933-d924-4c41-8e4d-ae17bd34263c", "name": [ "ADENOSINE DEAMINASE DEFICIENCY%PATHWHIZ%PW000075" ], "description": [ "Adenosine Deaminase Deficiency" ], "pvalue": 0.0025, "gs_type": null, "gs_size": 37, "padj": 0.031, "mcode_cluster_id": "Cluster 3", "NES": -1.6821, "genes": [ "ADA", "ADCY2", "ADSL", "ADSS2", "AK1", "AMPD1", "APRT", "ATAD1", "ATIC", "DGUOK", "ENTPD5", "ENTPD8", "GART", "GDA", "GMPR", "GMPS", "GUCY1A2", "GUCY1B1", "GUK1", "HPRT1", "IMPDH1", "ITPA", "NME6", "NT5C2", "NUDT2", "NUDT5", "PAICS", "PDE10A", "PDE4D", "PFAS", "PNP", "PPAT", "PRPS1L1", "RRM1", "RRM2", "TXN", "XDH" ] }, "position": { "x": 1473.0697721756476, "y": 1481.1218485869842, "id": "e97d3933-d924-4c41-8e4d-ae17bd34263c", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "name": [ "S PHASE%REACTOME DATABASE ID RELEASE 81%69242" ], "description": [ "S Phase" ], "pvalue": 7.37e-7, "gs_type": null, "gs_size": 163, "padj": 0, "mcode_cluster_id": "Cluster 1", "NES": -1.8627, "genes": [ "AKT1", "AKT2", "AKT3", "ANAPC1", "ANAPC10", "ANAPC11", "ANAPC15", "ANAPC16", "ANAPC2", "ANAPC4", "ANAPC5", "ANAPC7", "CABLES1", "CCNA1", "CCNA2", "CCND1", "CCNE1", "CCNE2", "CCNH", "CDC16", "CDC23", "CDC25A", "CDC25B", "CDC26", "CDC27", "CDC45", "CDC6", "CDCA5", "CDK2", "CDK4", "CDK7", "CDKN1A", "CDKN1B", "CDT1", "CKS1B", "CUL1", "DNA2", "E2F1", "E2F4", "E2F5", "ESCO1", "ESCO2", "FEN1", "FZR1", "GINS1", "GINS2", "GINS3", "GINS4", "GMNN", "GSK3B", "LIG1", "LIN37", "LIN52", "LIN54", "LIN9", "MAX", "MCM2", "MCM3", "MCM4", "MCM5", "MCM6", "MCM7", "MCM8", "MNAT1", "MYC", "ORC1", "ORC2", "ORC3", "ORC4", "ORC5", "ORC6", "PCNA", "PDS5A", "PDS5B", "POLA1", "POLA2", "POLD1", "POLD2", "POLD3", "POLD4", "POLE", "POLE2", "POLE3", "POLE4", "PRIM1", "PRIM2", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "PTK6", "RAD21", "RB1", "RBBP4", "RBL2", "RBX1", "RFC1", "RFC2", "RFC3", "RFC4", "RFC5", "RPA1", "RPA2", "RPA3", "RPS27A", "SEM1", "SKP1", "SKP2", "SMC1A", "SMC3", "STAG1", "STAG2", "TFDP1", "TFDP2", "UBA52", "UBB", "UBC", "UBE2C", "UBE2D1", "UBE2E1", "UBE2S", "WAPL", "WEE1" ] }, "position": { "x": 504.92790518300535, "y": 791.052538350202, "id": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "name": [ "APOPTOSIS%REACTOME DATABASE ID RELEASE 81%109581" ], "description": [ "Apoptosis" ], "pvalue": 0.0000054439, "gs_type": null, "gs_size": 175, "padj": 0.0002, "mcode_cluster_id": null, "NES": -1.7998, "genes": [ "ACIN1", "ADD1", "AKT1", "AKT2", "AKT3", "APAF1", "APC", "APIP", "APPL1", "ARHGAP10", "AVEN", "BAD", "BAK1", "BAX", "BBC3", "BCAP31", "BCL2", "BCL2L1", "BCL2L11", "BID", "BIRC2", "BMF", "BMX", "C1QBP", "CARD8", "CASP3", "CASP6", "CASP7", "CASP8", "CASP9", "CD14", "CDH1", "CDKN2A", "CLSPN", "CTNNB1", "CYCS", "DAPK1", "DAPK2", "DAPK3", "DBNL", "DCC", "DFFA", "DFFB", "DIABLO", "DNM1L", "DSG1", "DSG2", "DSG3", "DSP", "DYNLL1", "DYNLL2", "E2F1", "FADD", "FAS", "FASLG", "FNTA", "GAS2", "GSDMD", "GSDME", "GSN", "GZMB", "H1-0", "H1-1", "H1-2", "H1-3", "H1-4", "H1-5", "HMGB1", "HMGB2", "KPNA1", "KPNB1", "LMNB1", "LY96", "MAGED1", "MAPK1", "MAPK3", "MAPK8", "MAPT", "NMT1", "OCLN", "OMA1", "OPA1", "PAK2", "PKP1", "PLEC", "PMAIP1", "PPP1R13B", "PPP3CC", "PPP3R1", "PRKCD", "PRKCQ", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "PTK2", "RIPK1", "ROCK1", "RPS27A", "SATB1", "SEM1", "SFN", "SPTAN1", "STAT3", "STK24", "STK26", "TFDP1", "TFDP2", "TICAM1", "TICAM2", "TJP1", "TJP2", "TLR4", "TNFRSF10A", "TNFRSF10B", "TNFSF10", "TP53", "TP53BP2", "TP63", "TP73", "TRADD", "UACA", "UBA52", "UBB", "UBC", "UNC5A", "UNC5B", "VIM", "XIAP", "YWHAB", "YWHAE", "YWHAG", "YWHAH", "YWHAQ", "YWHAZ" ] }, "position": { "x": 434.725456576747, "y": 766.1685737401641, "id": "d3de76ec-75a4-4083-8f04-2b47a03dc261" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "be1c3f10-7400-44a0-8852-66332ef61591", "name": [ "SARS-COV INFECTIONS%REACTOME DATABASE ID RELEASE 81%9679506" ], "description": [ "SARS-CoV Infections" ], "pvalue": 0.0028, "gs_type": null, "gs_size": 470, "padj": 0.0341, "mcode_cluster_id": null, "NES": -1.3644, "genes": [ "AAAS", "ACE2", "AGRN", "AKT1", "AKT2", "AKT3", "ANO1", "ANO10", "ANO2", "ANO3", "ANO4", "ANO5", "ANO6", "ANO7", "ANO8", "ANO9", "AP2A1", "AP2A2", "AP2B1", "AP2M1", "AP2S1", "ARID4A", "ARID4B", "ATG14", "ATP1A1", "ATP1A2", "ATP1A3", "ATP1A4", "ATP1B1", "ATP1B2", "ATP1B3", "B2M", "BCL2L1", "BECN1", "BLNK", "BRD4", "BRMS1", "BST2", "BTK", "CANX", "CASP1", "CAV1", "CD79A", "CD79B", "CHD3", "CHD4", "CHMP2A", "CHMP2B", "CHMP3", "CHMP4A", "CHMP4B", "CHMP4C", "CHMP6", "CHMP7", "CHUK", "CNBP", "COMT", "CRB3", "CRBN", "CREBBP", "CSNK1A1", "CTSL", "CUL3", "CYSLTR1", "DAD1", "DDOST", "DDX20", "DDX5", "EDEM2", "EEF1A1", "EP300", "FAU", "FKBP1A", "FKBP4", "FNTA", "FNTB", "FURIN", "FUT8", "FXYD1", "FXYD2", "FXYD3", "FXYD4", "FXYD6", "FXYD7", "G3BP1", "G3BP2", "GALNT1", "GANAB", "GATAD2A", "GATAD2B", "GEMIN2", "GEMIN4", "GEMIN5", "GEMIN6", "GEMIN7", "GEMIN8", "GJA1", "GOLGA7", "GPC1", "GPC2", "GPC3", "GPC4", "GPC5", "GPC6", "GSK3A", "GSK3B", "HAVCR1", "HDAC1", "HDAC2", "HLA-A", "HLA-B", "HLA-C", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "HMG20B", "HNRNPA1", "HSP90AA1", "HSP90AB1", "HSPG2", "IFIH1", "IFNA10", "IFNA13", "IFNA14", "IFNA16", "IFNA17", "IFNA2", "IFNA21", "IFNA4", "IFNA5", "IFNA6", "IFNA7", "IFNA8", "IFNAR1", "IFNB1", "IFNGR1", "IFNGR2", "IGHD", "IGHM", "IGHV", "IGHV1-2", "IGHV1-46", "IGHV1-69", "IGHV2-5", "IGHV2-70", "IGHV3-11", "IGHV3-13", "IGHV3-23", "IGHV3-30", "IGHV3-33", "IGHV3-48", "IGHV3-53", "IGHV3-7", "IGHV3-9", "IGHV4-34", "IGHV4-39", "IGHV4-59", "IGHV7-81", "IGKC", "IGKV1-12", "IGKV1-16", "IGKV1-17", "IGKV1-33", "IGKV1-39", "IGKV1-5", "IGKV1D-12", "IGKV1D-16", "IGKV1D-33", "IGKV1D-39", "IGKV2-28", "IGKV2-29", "IGKV2-30", "IGKV2D-28", "IGKV2D-30", "IGKV2D-40", "IGKV3-11", "IGKV3-15", "IGKV3-20", "IGKV3D-20", "IGKV4-1", "IGKV5-2", "IGLC1", "IGLC2", "IGLC3", "IGLC6", "IGLC7", "IGLV", "IGLV1-40", "IGLV1-44", "IGLV1-47", "IGLV1-51", "IGLV2-11", "IGLV2-14", "IGLV2-23", "IGLV2-8", "IGLV3-1", "IGLV3-19", "IGLV3-21", "IGLV3-25", "IGLV3-27", "IGLV6-57", "IGLV7-43", "IKBKB", "IKBKE", "IKBKG", "IL17A", "IL17F", "IL17RA", "IL17RC", "IL1R1", "IL6R", "IMPDH1", "IMPDH2", "IRAK1", "IRAK2", "IRF3", "IRF7", "ISCU", "ISG15", "ITCH", "ITGA4", "ITGB1", "JAK1", "JAK2", "JAK3", "KDM1A", "KEAP1", "KPNA2", "KPNB1", "LARP1", "MAGT1", "MAN1B1", "MAN2A1", "MAP1LC3B", "MAP3K7", "MASP1", "MAVS", "MBD3", "MBL2", "MGAT1", "MGAT2", "MGAT4A", "MGAT4B", "MGAT4C", "MGAT5", "MOGS", "MTA1", "MTA2", "MTA3", "NCK1", "NDC1", "NFE2L2", "NFKB1", "NFKBIA", "NLRP12", "NLRP3", "NMI", "NOD1", "NOD2", "NPIPB3", "NPM1", "NR3C1", "NRP1", "NUP107", "NUP133", "NUP153", "NUP155", "NUP160", "NUP188", "NUP205", "NUP210", "NUP214", "NUP35", "NUP37", "NUP42", "NUP43", "NUP50", "NUP54", "NUP62", "NUP85", "NUP88", "NUP93", "PALS1", "PARP10", "PARP14", "PARP16", "PARP4", "PARP6", "PARP8", "PARP9", "PATJ", "PCBP2", "PDCD1", "PDPK1", "PHF21A", "PIK3C3", "PIK3R4", "PLCG2", "POM121", "POM121C", "PPIA", "PPIB", "PPIG", "PPIH", "PRKCSH", "PRMT1", "PSMC6", "PTGES3", "PTPN11", "PTPN6", "PYCARD", "RAE1", "RANBP2", "RB1", "RBBP4", "RBBP7", "RBX1", "RCAN3", "RCOR1", "RELA", "REST", "RIGI", "RIPK1", "RIPK2", "RIPK3", "RNF135", "ROCK1", "ROCK2", "RPN1", "RPN2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "RUNX1", "S1PR1", "SAP18", "SAP30", "SAP30L", "SAR1B", "SDC1", "SDC2", "SDC3", "SDC4", "SEC13", "SEC23A", "SEC24A", "SEC24B", "SEC24C", "SEC24D", "SFN", "SFTPD", "SH3KBP1", "SIGMAR1", "SIKE1", "SMAD3", "SMAD4", "SMN2", "SNRPB", "SNRPD1", "SNRPD2", "SNRPD3", "SNRPE", "SNRPF", "SNRPG", "SOS1", "SP1", "SRPK1", "SRPK2", "ST3GAL1", "ST3GAL2", "ST3GAL3", "ST3GAL4", "ST6GAL1", "ST6GALNAC2", "ST6GALNAC3", "ST6GALNAC4", "STAT1", "STAT2", "STING1", "STT3A", "SUDS3", "SUMO1", "SYK", "TAB1", "TAB2", "TAB3", "TBK1", "TJP1", "TKFC", "TLR1", "TLR2", "TLR7", "TLR8", "TLR9", "TMPRSS2", "TOMM70", "TPR", "TRAF3", "TRAF6", "TRIM25", "TRIM4", "TUBB", "TUFM", "TUSC3", "TYK2", "UBA52", "UBB", "UBC", "UBE2I", "UBE2N", "UBE2V1", "UVRAG", "VAV1", "VCP", "VHL", "VPS11", "VPS16", "VPS18", "VPS33A", "VPS33B", "VPS39", "VPS41", "VPS45", "YWHAB", "YWHAE", "YWHAG", "YWHAH", "YWHAQ", "YWHAZ", "ZBP1", "ZCRB1", "ZDHHC11", "ZDHHC2", "ZDHHC20", "ZDHHC3", "ZDHHC5", "ZDHHC8", "ZDHHC9" ] }, "position": { "x": 268.5, "y": 2195.9446642487483, "id": "be1c3f10-7400-44a0-8852-66332ef61591" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "01640c15-05b1-4b18-a421-63309e333eee", "name": [ "HALLMARK_TNFA_SIGNALING_VIA_NFKB%MSIGDBHALLMARK%HALLMARK_TNFA_SIGNALING_VIA_NFKB" ], "description": [ "HALLMARK_TNFA_SIGNALING_VIA_NFKB" ], "pvalue": 0.0012, "gs_type": null, "gs_size": 174, "padj": 0.0191, "mcode_cluster_id": null, "NES": -1.5313, "genes": [ "ABCA1", "ACKR3", "AREG", "ATF3", "ATP2B1", "B4GALT1", "B4GALT5", "BCL2A1", "BCL6", "BHLHB2", "BIRC2", "BIRC3", "BMP2", "BTG1", "BTG2", "BTG3", "CCL2", "CCL20", "CCL4", "CCL5", "CCND1", "CCNL1", "CCRL2", "CD44", "CD69", "CD80", "CD83", "CDKN1A", "CEBPB", "CEBPD", "CLCF1", "CSF1", "CSF2", "CXCL1", "CXCL11", "CXCL2", "CXCL3", "CXCL6", "CYR61", "DENND5A", "DKFZp564M2422", "DNAJB4", "DRAM1", "DUSP2", "DUSP4", "DUSP5", "EDN1", "EFNA1", "EGR1", "EGR2", "EHD1", "ETS2", "F2RL1", "F3", "FJX1", "FOS", "FOSB", "FOSL1", "FOSL2", "FUT4", "G0S2", "GADD45A", "GADD45B", "GEM", "GPR183", "HBEGF", "HES1", "ICOSLG", "ID2", "IER2", "IER5", "IFIH1", "IFIT2", "IFNGR2", "IL12B", "IL15RA", "IL18", "IL1A", "IL1B", "IL23A", "IL6", "IL6ST", "IL7R", "INHBA", "IRF1", "JUN", "JUNB", "KDM6B", "KLF10", "KLF2", "KLF4", "KLF6", "KLF9", "KYNU", "LAMB3", "LDLR", "LIF", "LITAF", "MAFF", "MAP2K3", "MAP3K8", "MARCKS", "MCL1", "MSC", "MXD1", "MYC", "NAMPT", "NFAT5", "NFE2L2", "NFIL3", "NFKB1", "NFKB2", "NFKBIA", "NFKBIE", "NINJ1", "NR4A3", "OLR1", "PANX1", "PDE4B", "PER1", "PHLDA1", "PHLDA2", "PLAUR", "PLEK", "PLK2", "PLPP3", "PNRC1", "PPP1R15A", "PTGER4", "PTGS2", "PTPRE", "PTX3", "RCAN1", "REL", "RELA", "RELB", "RHOB", "RIGI", "RIPK2", "RNF19B", "SDC4", "SERPINB2", "SERPINB8", "SERPINE1", "SGK1", "SIK1", "SLC16A6", "SLC2A3", "SLC2A6", "SNN", "SOCS3", "SPHK1", "SPSB1", "SQSTM1", "SUI1", "TANK", "TAP1", "TGIF1", "TIPARP", "TMEPAI", "TNF", "TNFAIP2", "TNFAIP3", "TNFAIP6", "TNFRSF9", "TNIP2", "TNLG5A", "TRAF1", "TRIB1", "TRIP10", "TUBB2A", "VEGFA", "ZC3H12A", "ZFP36" ] }, "position": { "x": 1192.5, "y": 2195.9446642487483, "id": "01640c15-05b1-4b18-a421-63309e333eee" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "name": [ "APC C:CDH1 MEDIATED DEGRADATION OF CDC20 AND OTHER APC C:CDH1 TARGETED PROTEINS IN LATE MITOSIS EARLY G1%REACTOME%R-HSA-174178.5" ], "description": [ "APC C:Cdh1 mediated degradation of Cdc20 and other APC C:Cdh1 targeted proteins in late mitosis early G1" ], "pvalue": 0.0000024622, "gs_type": null, "gs_size": 73, "padj": 0.0001, "mcode_cluster_id": "Cluster 1", "NES": -2.06, "genes": [ "ANAPC1", "ANAPC10", "ANAPC11", "ANAPC15", "ANAPC16", "ANAPC2", "ANAPC4", "ANAPC5", "ANAPC7", "AURKA", "CDC16", "CDC20", "CDC23", "CDC26", "CDC27", "FZR1", "PLK1", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "PTTG1", "RB1", "RPS27A", "SEM1", "SKP2", "UBA52", "UBB", "UBC", "UBE2C", "UBE2D1", "UBE2E1", "UBE2S" ] }, "position": { "x": 465.61190235483855, "y": 820.6409306008865, "id": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "name": [ "AUTODEGRADATION OF CDH1 BY CDH1:APC C%REACTOME%R-HSA-174084.6" ], "description": [ "Autodegradation of Cdh1 by Cdh1:APC C" ], "pvalue": 0.0000066465, "gs_type": null, "gs_size": 64, "padj": 0.0002, "mcode_cluster_id": "Cluster 1", "NES": -1.9949, "genes": [ "ANAPC1", "ANAPC10", "ANAPC11", "ANAPC15", "ANAPC16", "ANAPC2", "ANAPC4", "ANAPC5", "ANAPC7", "CDC16", "CDC23", "CDC26", "CDC27", "FZR1", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMB1", "PSMB10", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSMF1", "RPS27A", "SEM1", "UBA52", "UBB", "UBC", "UBE2C", "UBE2D1", "UBE2E1", "UBE2S" ] }, "position": { "x": 424.82579603938575, "y": 822.1004495759554, "id": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "d8c14677-8c34-49fe-a1b6-efe7d97c1f19", "name": [ "NEUTROPHIL DEGRANULATION%REACTOME DATABASE ID RELEASE 81%6798695" ], "description": [ "Neutrophil degranulation" ], "pvalue": 0.0022, "gs_type": null, "gs_size": 478, "padj": 0.0292, "mcode_cluster_id": null, "NES": -1.3774, "genes": [ "A1BG", "ABCA13", "ACAA1", "ACLY", "ACP3", "ACTR10", "ACTR1B", "ACTR2", "ADA2", "ADAM10", "ADAM8", "ADGRE3", "ADGRE5", "ADGRG3", "AGA", "AGL", "AGPAT2", "AHSG", "ALAD", "ALDH3B1", "ALDOA", "ALDOC", "ALOX5", "AMPD3", "ANO6", "ANPEP", "ANXA2", "AOC1", "AP1M1", "AP2A2", "APAF1", "APEH", "APRT", "ARG1", "ARHGAP45", "ARHGAP9", "ARL8A", "ARMC8", "ARPC5", "ARSA", "ARSB", "ASAH1", "ATAD3B", "ATG7", "ATP11A", "ATP11B", "ATP6AP2", "ATP6V0A1", "ATP6V0C", "ATP6V1D", "ATP8A1", "ATP8B4", "AZU1", "B2M", "B4GALT1", "BIN2", "BPI", "BRI3", "BST1", "BST2", "C3", "C3AR1", "C5AR1", "C6orf120", "CAB39", "CALML5", "CAMP", "CAND1", "CANT1", "CAP1", "CAPN1", "CAT", "CCT2", "CCT8", "CD14", "CD177", "CD300A", "CD33", "CD36", "CD44", "CD47", "CD53", "CD55", "CD58", "CD59", "CD63", "CD68", "CD93", "CDA", "CDK13", "CEACAM1", "CEACAM3", "CEACAM6", "CEACAM8", "CEP290", "CFD", "CFP", "CHI3L1", "CHIT1", "CHRNB4", "CKAP4", "CLEC12A", "CLEC4C", "CLEC4D", "CLEC5A", "CMTM6", "CNN2", "COMMD3", "COMMD9", "COPB1", "COTL1", "CPNE1", "CPNE3", "CPPED1", "CR1", "CRACR2A", "CREG1", "CRISP3", "CRISPLD2", "CSNK2B", "CST3", "CSTB", "CTSA", "CTSB", "CTSC", "CTSD", "CTSG", "CTSH", "CTSS", "CTSZ", "CXCL1", "CXCR1", "CXCR2", "CYB5R3", "CYBA", "CYBB", "CYFIP1", "CYSTM1", "DBNL", "DDOST", "DDX3X", "DEFA1B", "DEFA4", "DEGS1", "DERA", "DGAT1", "DIAPH1", "DNAJC13", "DNAJC3", "DNAJC5", "DNASE1L1", "DOCK2", "DOK3", "DPP7", "DSC1", "DSG1", "DSN1", "DSP", "DYNC1H1", "DYNC1LI1", "DYNLL1", "DYNLT1", "EEF1A1", "EEF2", "ELANE", "ENPP4", "EPX", "ERP44", "FABP5", "FAF2", "FCAR", "FCER1G", "FCGR2A", "FCGR3B", "FCN1", "FGL2", "FGR", "FLG2", "FOLR3", "FPR1", "FPR2", "FRK", "FRMPD3", "FTH1", "FTL", "FUCA1", "FUCA2", "GAA", "GALNS", "GCA", "GDI2", "GGH", "GHDC", "GLA", "GLB1", "GLIPR1", "GM2A", "GMFG", "GNS", "GOLGA7", "GPI", "GPR84", "GRN", "GSDMD", "GSN", "GSTP1", "GUSB", "GYG1", "HBB", "HEBP2", "HEXB", "HGSNAT", "HK3", "HLA-B", "HLA-C", "HLA-H", "HMGB1", "HMOX2", "HP", "HPSE", "HRNR", "HSP90AA1", "HSP90AB1", "HSPA1A", "HSPA1B", "HSPA6", "HSPA8", "HUWE1", "HVCN1", "IDH1", "IGF2R", "ILF2", "IMPDH1", "IMPDH2", "IQGAP1", "IQGAP2", "IRAG2", "IST1", "ITGAL", "ITGAM", "ITGAV", "ITGAX", "ITGB2", "JUP", "KCMF1", "KCNAB2", "KPNB1", "KRT1", "LAIR1", "LAMP1", "LAMP2", "LAMTOR1", "LAMTOR2", "LAMTOR3", "LCN2", "LGALS3", "LILRA3", "LILRB2", "LILRB3", "LPCAT1", "LRG1", "LRRC7", "LTA4H", "LTF", "LYZ", "MAGT1", "MAN2B1", "MANBA", "MAPK1", "MAPK14", "MCEMP1", "MGAM", "MGST1", "MIF", "MLEC", "MME", "MMP25", "MMP8", "MMP9", "MMTAG2", "MNDA", "MOSPD2", "MPO", "MS4A3", "MVP", "NAPRT", "NBEAL2", "NCKAP1L", "NCSTN", "NDUFC2", "NEU1", "NFAM1", "NFASC", "NFKB1", "NHLRC3", "NIT2", "NME2", "NPC2", "NRAS", "OLFM4", "OLR1", "ORM1", "ORM2", "ORMDL3", "OSCAR", "OSTF1", "P2RX1", "PA2G4", "PADI2", "PAFAH1B2", "PDAP1", "PDXK", "PECAM1", "PFKL", "PGAM1", "PGLYRP1", "PGM1", "PGM2", "PGRMC1", "PIGR", "PKM", "PKP1", "PLAC8", "PLAU", "PLAUR", "PLD1", "PLEKHO2", "PNP", "PPBP", "PPIA", "PPIE", "PRCP", "PRDX4", "PRDX6", "PRG2", "PRG3", "PRKCD", "PRSS2", "PRSS3", "PRTN3", "PSAP", "PSEN1", "PSMA2", "PSMA5", "PSMB1", "PSMB7", "PSMC2", "PSMC3", "PSMD1", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD6", "PSMD7", "PTAFR", "PTGES2", "PTPN6", "PTPRB", "PTPRC", "PTPRJ", "PTPRN2", "PTX3", "PYCARD", "PYGB", "PYGL", "QPCT", "QSOX1", "RAB10", "RAB14", "RAB18", "RAB24", "RAB27A", "RAB31", "RAB37", "RAB3A", "RAB3D", "RAB44", "RAB4B", "RAB5B", "RAB5C", "RAB6A", "RAB7A", "RAB9B", "RAC1", "RAP1A", "RAP1B", "RAP2B", "RAP2C", "RETN", "RHOA", "RHOF", "RHOG", "RNASE2", "RNASE3", "RNASET2", "ROCK1", "S100A11", "S100A12", "S100A7", "S100A8", "S100A9", "S100P", "SCAMP1", "SDCBP", "SELL", "SERPINA1", "SERPINA3", "SERPINB1", "SERPINB10", "SERPINB12", "SERPINB3", "SERPINB6", "SIGLEC14", "SIGLEC5", "SIGLEC9", "SIRPA", "SIRPB1", "SLC11A1", "SLC15A4", "SLC27A2", "SLC2A3", "SLC2A5", "SLC44A2", "SLCO4C1", "SLPI", "SNAP23", "SNAP25", "SNAP29", "SPTAN1", "SRP14", "STBD1", "STING1", "STK10", "STK11IP", "STOM", "SURF4", "SVIP", "SYNGR1", "TARM1", "TBC1D10C", "TCIRG1", "TCN1", "TICAM2", "TIMP2", "TLR2", "TMBIM1", "TMC6", "TMEM179B", "TMEM30A", "TMEM63A", "TMT1A", "TNFAIP6", "TNFRSF1B", "TOLLIP", "TOM1", "TRAPPC1", "TRPM2", "TSPAN14", "TTR", "TUBB", "TUBB4B", "TXNDC5", "TYROBP", "UBR4", "UNC13D", "VAMP8", "VAPA", "VAT1", "VCL", "VCP", "VNN1", "VPS35L", "XRCC5", "XRCC6", "YPEL5" ] }, "position": { "x": 576.5, "y": 2195.9446642487483, "id": "d8c14677-8c34-49fe-a1b6-efe7d97c1f19" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "7110025e-838c-4eb3-a3b4-e50296f8d1d6", "name": [ "MORPHOGENESIS OF AN EPITHELIUM%GOBP%GO:0002009" ], "description": [ "morphogenesis of an epithelium" ], "pvalue": 0.0012, "gs_type": null, "gs_size": 223, "padj": 0.0185, "mcode_cluster_id": null, "NES": -1.5514, "genes": [ "ACTB", "ACTG1", "ACVR1", "ACVRL1", "ADAM17", "AHI1", "AIRE", "APLNR", "ARHGAP12", "ARHGAP24", "ARHGAP35", "ATP7A", "BBS4", "BBS5", "BBS7", "BCL10", "BMP2", "BMP4", "BMP5", "BMP7", "BRSK1", "BRSK2", "CAMSAP3", "CARMIL2", "CCDC103", "CCDC39", "CCDC40", "CCM2", "CCN1", "CD151", "CD44", "CDC42", "CEACAM1", "CELSR1", "CEP290", "CITED1", "COBL", "COL4A1", "COL5A1", "CSF1R", "CSNK2B", "CTNNB1", "CTSH", "DAG1", "DDR1", "DEAF1", "DLC1", "DLL1", "DLL4", "DNAAF1", "DVL1", "DVL1P1", "DVL2", "DVL3", "ENG", "EPHA2", "EZR", "FGF1", "FGF10", "FGF2", "FGFR2", "FLG2", "FLNA", "FLRT3", "FOLR1", "FOXD1", "FOXE1", "FOXH1", "FOXN4", "FUZ", "GATA3", "GATA4", "GDF2", "GDNF", "GLI2", "GPC3", "GRHL2", "GRHL3", "HAND1", "HES1", "HOXA11", "HOXD11", "IFT122", "IHH", "INTU", "ITGA5", "ITGAV", "ITGB1", "ITGB3", "ITGB5", "KDF1", "KDM2B", "KDR", "KLHL3", "KLK14", "KRT12", "KRT16", "KRT17", "KRT25", "KRT27", "KRT28", "KRT6A", "KRT71", "LCP1", "LHX1", "LIN7C", "LMO4", "LRG1", "LRP2", "LUZP1", "MEF2C", "MEGF8", "MESP1", "MET", "MICAL2", "MKKS", "MMP12", "MRTFA", "MSN", "MTHFD1", "MTHFD1L", "MTHFR", "MTSS1", "MYC", "MYO9A", "NDRG4", "NHERF1", "NKX2-1", "NKX2-5", "NKX3-1", "NOTCH1", "NOTCH4", "NPHP1", "NPHP3", "NPNT", "NRARP", "NRP1", "OPHN1", "OSR1", "PAK1", "PALS1", "PAX2", "PAX8", "PDCD10", "PDPN", "PERP", "PHACTR4", "PKD1", "PKD2", "PKHD1", "PLET1", "PLXNB2", "PODXL", "PRICKLE1", "PRKD2", "PRKX", "PROX1", "RAB10", "RAP2A", "RASIP1", "RBPJ", "RHOA", "RHOB", "RHOC", "RIPK4", "RYR2", "SALL1", "SCRIB", "SEMA3E", "SEMA4C", "SETDB2", "SFRP2", "SH3BP1", "SHH", "SIX1", "SIX2", "SKI", "SLC39A12", "SLIT2", "SMO", "SOX10", "SOX11", "SOX17", "SOX18", "SOX8", "SOX9", "SRF", "STARD13", "STIL", "SYNE4", "TBX18", "TBX2", "TBX20", "TBX6", "TCF21", "TFAP2A", "TGFB1", "TGFB2", "TGFBR2", "TGM3", "TIE1", "TIMELESS", "TMEFF2", "TNC", "TOR1A", "TRAF3IP1", "TSC2", "VANGL2", "VASP", "VCL", "VEGFA", "WDPCP", "WNK4", "WNT10A", "WNT11", "WNT16", "WNT5A", "WNT7A", "WNT7B", "WT1", "YAP1", "ZDHHC7", "ZIC3" ] }, "position": { "x": 839.6933671499371, "y": 1489.3295939798559, "id": "7110025e-838c-4eb3-a3b4-e50296f8d1d6" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "a450000b-f013-47c9-a2c2-1c6c86d9edec", "name": [ "ANTIGEN PROCESSING AND PRESENTATION OF PEPTIDE ANTIGEN VIA MHC CLASS IB%GOBP%GO:0002428" ], "description": [ "antigen processing and presentation of peptide antigen via MHC class Ib" ], "pvalue": 0.0024, "gs_type": null, "gs_size": 17, "padj": 0.031, "mcode_cluster_id": "Cluster 10", "NES": -1.7937, "genes": [ "HFE", "HLA-A", "HLA-B", "HLA-C", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "MICA", "MICB", "RAET1E", "RAET1G", "RAET1L", "TAP2", "ULBP1", "ULBP2", "ULBP3" ] }, "position": { "x": 2006.0432563236589, "y": 993.8717831706329, "id": "a450000b-f013-47c9-a2c2-1c6c86d9edec", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "bb10d242-cfdd-4d55-9172-67e20811e740", "name": [ "GPCR LIGAND BINDING%REACTOME DATABASE ID RELEASE 81%500792" ], "description": [ "GPCR ligand binding" ], "pvalue": 0.0036, "gs_type": null, "gs_size": 464, "padj": 0.0409, "mcode_cluster_id": null, "NES": -1.4807, "genes": [ "ACKR1", "ACKR2", "ACKR3", "ACKR4", "ADCYAP1", "ADCYAP1R1", "ADGRE1", "ADGRE2", "ADGRE3", "ADGRE5", "ADM", "ADM2", "ADORA1", "ADORA2A", "ADORA2B", "ADORA3", "ADRA1A", "ADRA1B", "ADRA1D", "ADRA2A", "ADRA2B", "ADRA2C", "ADRB1", "ADRB2", "ADRB3", "AGT", "AGTR1", "AGTR2", "ANXA1", "APLN", "APLNR", "APP", "AVP", "AVPR1A", "AVPR1B", "AVPR2", "BDKRB1", "BDKRB2", "BRS3", "C3", "C3AR1", "C5", "C5AR1", "C5AR2", "CALCA", "CALCB", "CALCR", "CALCRL", "CASR", "CCK", "CCKAR", "CCKBR", "CCL1", "CCL11", "CCL13", "CCL16", "CCL17", "CCL19", "CCL2", "CCL20", "CCL21", "CCL22", "CCL25", "CCL27", "CCL28", "CCL3", "CCL3L3", "CCL4", "CCL5", "CCL7", "CCR1", "CCR10", "CCR2", "CCR3", "CCR4", "CCR5", "CCR6", "CCR7", "CCR8", "CCR9", "CCRL2", "CD55", "CGA", "CHRM1", "CHRM2", "CHRM3", "CHRM4", "CHRM5", "CMKLR1", "CNR1", "CNR2", "CORT", "CRH", "CRHBP", "CRHR1", "CX3CL1", "CX3CR1", "CXCL1", "CXCL10", "CXCL11", "CXCL12", "CXCL13", "CXCL16", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "CXCR1", "CXCR2", "CXCR3", "CXCR4", "CXCR5", "CXCR6", "CYSLTR1", "CYSLTR2", "DHH", "DRD1", "DRD2", "DRD3", "DRD4", "DRD5", "ECE1", "ECE2", "EDN1", "EDN2", "EDN3", "EDNRA", "EDNRB", "F2", "F2R", "F2RL1", "F2RL2", "F2RL3", "FFAR1", "FFAR2", "FFAR3", "FFAR4", "FPR1", "FPR2", "FPR3", "FSHB", "FSHR", "FZD1", "FZD10", "FZD2", "FZD3", "FZD4", "FZD5", "FZD6", "FZD7", "FZD8", "FZD9", "GABBR1", "GABBR2", "GAL", "GALR1", "GALR2", "GALR3", "GCG", "GCGR", "GHRH", "GHRHR", "GHSR", "GIP", "GIPR", "GLP1R", "GLP2R", "GNAS", "GNB1", "GNB2", "GNB3", "GNB4", "GNB5", "GNG10", "GNG11", "GNG12", "GNG13", "GNG2", "GNG3", "GNG4", "GNG5", "GNG7", "GNG8", "GNGT1", "GNGT2", "GNRH1", "GNRH2", "GNRHR", "GNRHR2", "GPBAR1", "GPER1", "GPHA2", "GPHB5", "GPR132", "GPR143", "GPR17", "GPR18", "GPR183", "GPR31", "GPR35", "GPR37", "GPR37L1", "GPR39", "GPR4", "GPR55", "GPR65", "GPR68", "GPRC6A", "GRM1", "GRM2", "GRM3", "GRM4", "GRM5", "GRM6", "GRM7", "GRM8", "GRP", "GRPR", "HCAR1", "HCAR2", "HCAR3", "HCRT", "HCRTR1", "HCRTR2", "HEBP1", "HRH1", "HRH2", "HRH3", "HRH4", "HTR1A", "HTR1B", "HTR1D", "HTR1E", "HTR1F", "HTR2A", "HTR2B", "HTR2C", "HTR4", "HTR5A", "HTR6", "HTR7", "IAPP", "IHH", "INSL3", "INSL5", "KEL", "KISS1", "KISS1R", "KNG1", "LHB", "LHCGR", "LPAR1", "LPAR2", "LPAR3", "LPAR4", "LPAR5", "LPAR6", "LTB4R", "LTB4R2", "MC1R", "MC2R", "MC3R", "MC4R", "MC5R", "MCHR1", "MCHR2", "MLN", "MLNR", "MT-RNR2", "MTNR1A", "MTNR1B", "NLN", "NMB", "NMBR", "NMS", "NMU", "NMUR1", "NMUR2", "NPB", "NPBWR1", "NPBWR2", "NPFF", "NPFFR1", "NPFFR2", "NPS", "NPSR1", "NPW", "NPY", "NPY1R", "NPY2R", "NPY4R", "NPY5R", "NTS", "NTSR1", "NTSR2", "OPN1LW", "OPN1MW", "OPN1SW", "OPN3", "OPN4", "OPN5", "OPRD1", "OPRK1", "OPRL1", "OPRM1", "OXER1", "OXGR1", "OXT", "OXTR", "P2RY1", "P2RY10", "P2RY11", "P2RY12", "P2RY13", "P2RY14", "P2RY2", "P2RY4", "P2RY6", "PDYN", "PENK", "PF4", "PLPPR1", "PLPPR2", "PLPPR3", "PLPPR4", "PLPPR5", "PMCH", "PNOC", "POMC", "PPBP", "PPY", "PRLH", "PRLHR", "PROK1", "PROK2", "PROKR1", "PROKR2", "PSAP", "PTAFR", "PTCH1", "PTCH2", "PTGDR", "PTGDR2", "PTGER1", "PTGER2", "PTGER3", "PTGER4", "PTGFR", "PTGIR", "PTH", "PTH1R", "PTH2", "PTH2R", "PTHLH", "PYY", "QRFP", "QRFPR", "RAMP1", "RAMP2", "RAMP3", "RGR", "RHO", "RLN2", "RLN3", "RRH", "RXFP1", "RXFP2", "RXFP3", "RXFP4", "S1PR1", "S1PR2", "S1PR3", "S1PR4", "S1PR5", "SAA1", "SCT", "SCTR", "SHH", "SMO", "SST", "SSTR1", "SSTR2", "SSTR3", "SSTR4", "SSTR5", "SUCNR1", "TAAR1", "TAAR2", "TAAR3P", "TAAR5", "TAAR6", "TAAR8", "TAAR9", "TAC1", "TAC3", "TACR1", "TACR2", "TACR3", "TAS1R1", "TAS1R2", "TAS1R3", "TAS2R1", "TAS2R10", "TAS2R13", "TAS2R14", "TAS2R16", "TAS2R19", "TAS2R20", "TAS2R3", "TAS2R30", "TAS2R31", "TAS2R38", "TAS2R39", "TAS2R4", "TAS2R40", "TAS2R41", "TAS2R42", "TAS2R43", "TAS2R45", "TAS2R46", "TAS2R5", "TAS2R50", "TAS2R60", "TAS2R7", "TAS2R8", "TAS2R9", "TBXA2R", "TRH", "TRHR", "TSHB", "TSHR", "UCN", "UCN2", "UCN3", "UTS2", "UTS2B", "UTS2R", "VIP", "VIPR1", "VIPR2", "WNT1", "WNT10A", "WNT10B", "WNT11", "WNT16", "WNT2", "WNT2B", "WNT3", "WNT3A", "WNT4", "WNT5A", "WNT6", "WNT7A", "WNT7B", "WNT8A", "WNT8B", "WNT9A", "WNT9B", "XCL1", "XCL2", "XCR1", "XK" ] }, "position": { "x": 884.5, "y": 2195.9446642487483, "id": "bb10d242-cfdd-4d55-9172-67e20811e740" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "bf7933c7-1b3b-45b7-b021-970bb9737d16", "name": [ "CELLULAR RESPONSE TO TUMOR NECROSIS FACTOR%GOBP%GO:0071356" ], "description": [ "cellular response to tumor necrosis factor" ], "pvalue": 0.0026, "gs_type": null, "gs_size": 90, "padj": 0.0324, "mcode_cluster_id": null, "NES": -1.5694, "genes": [ "ACOD1", "ACTN4", "ADAMTS12", "ADAMTS7", "AIM2", "ANKRD1", "ARHGEF2", "ASAH1", "BAG4", "BIRC2", "BIRC3", "BRCA1", "CACTIN", "CARD14", "CCL2", "CCL3", "CCL5", "CD58", "CHI3L1", "CHUK", "CIB1", "COMMD7", "CRHBP", "CRIPTO", "CXCL8", "DAB2IP", "DCSTAMP", "DHX9", "EIF5A", "ERBIN", "FOXO3", "GATA3", "GBA1", "GBP1", "GBP2", "GBP3", "GPER1", "GSDME", "HAS2", "HMHB1", "HYAL1", "HYAL2", "HYAL3", "IKBKB", "ILK", "INPP5K", "JAK2", "LIMS1", "NFE2L2", "NFKBIA", "NKX3-1", "NPNT", "NR1D1", "OCSTAMP", "PID1", "PLVAP", "PTK2B", "PYCARD", "RELA", "RIPK1", "RPS3", "RRAGA", "SFRP1", "SIRT1", "SMPD4", "ST18", "STAT1", "TANK", "TMSB4X", "TNF", "TNFRSF11A", "TNFRSF1A", "TNFRSF1B", "TNFRSF21", "TNFSF11", "TNFSF18", "TP53", "TRADD", "TRAF1", "TRAF2", "TRAF3", "TRAF5", "TRAF6", "TXNDC17", "YBX3", "ZC3H12A", "ZFAND6", "ZFP36", "ZFP36L1", "ZFP36L2" ] }, "position": { "x": 1423.5, "y": 2195.9446642487483, "id": "bf7933c7-1b3b-45b7-b021-970bb9737d16" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "name": [ "REGULATION OF RUNX3 EXPRESSION AND ACTIVITY%REACTOME DATABASE ID RELEASE 81%8941858" ], "description": [ "Regulation of RUNX3 expression and activity" ], "pvalue": 0, "gs_type": null, "gs_size": 55, "padj": 0.0012, "mcode_cluster_id": "Cluster 1", "NES": -1.9684, "genes": [ "CBFB", "CDKN2A", "EP300", "MDM2", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMB1", "PSMB10", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSMF1", "RPS27A", "RUNX3", "SEM1", "SMURF1", "SMURF2", "SRC", "TGFB1", "UBA52", "UBB", "UBC" ] }, "position": { "x": 481.50088054549497, "y": 836.0144416322147, "id": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "b67a97a8-54b7-4306-be3a-d6518f864d8d", "name": [ "MITOTIC METAPHASE AND ANAPHASE%REACTOME DATABASE ID RELEASE 81%2555396" ], "description": [ "Mitotic Metaphase and Anaphase" ], "pvalue": 6.2487e-7, "gs_type": null, "gs_size": 228, "padj": 0, "mcode_cluster_id": "Cluster 26", "NES": -1.7882, "genes": [ "AHCTF1", "ANAPC1", "ANAPC10", "ANAPC11", "ANAPC15", "ANAPC16", "ANAPC2", "ANAPC4", "ANAPC5", "ANAPC7", "ANKLE2", "B9D2", "BANF1", "BIRC5", "BUB1", "BUB1B", "BUB3", "CC2D1B", "CCNB1", "CCNB2", "CDC16", "CDC20", "CDC23", "CDC26", "CDC27", "CDCA5", "CDCA8", "CDK1", "CENPA", "CENPC", "CENPE", "CENPF", "CENPH", "CENPI", "CENPK", "CENPL", "CENPM", "CENPN", "CENPO", "CENPP", "CENPQ", "CENPS", "CENPT", "CENPU", "CHMP2A", "CHMP2B", "CHMP3", "CHMP4A", "CHMP4B", "CHMP4C", "CHMP6", "CHMP7", "CKAP5", "CLASP1", "CLASP2", "CLIP1", "DSN1", "DYNC1H1", "DYNC1I1", "DYNC1I2", "DYNC1LI1", "DYNC1LI2", "DYNLL1", "DYNLL2", "EMD", "ERCC6L", "ESPL1", "FBXO5", "INCENP", "IST1", "ITGB3BP", "KIF18A", "KIF2A", "KIF2B", "KIF2C", "KNL1", "KNTC1", "KPNB1", "LBR", "LEMD2", "LEMD3", "LMNB1", "MAD1L1", "MAD2L1", "MAPRE1", "MIS12", "NDC1", "NDC80", "NDE1", "NDEL1", "NSL1", "NUDC", "NUF2", "NUP107", "NUP133", "NUP155", "NUP160", "NUP188", "NUP205", "NUP35", "NUP37", "NUP43", "NUP54", "NUP62", "NUP85", "NUP93", "PAFAH1B1", "PDS5A", "PDS5B", "PLK1", "PMF1", "POM121", "PPP1CC", "PPP2CA", "PPP2CB", "PPP2R1A", "PPP2R1B", "PPP2R2A", "PPP2R5A", "PPP2R5B", "PPP2R5C", "PPP2R5D", "PPP2R5E", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "PTTG1", "RAD21", "RAN", "RANBP2", "RANGAP1", "RCC1", "RCC2", "RPS27", "RPS27A", "SEC13", "SEM1", "SGO1", "SGO2", "SIRT2", "SKA1", "SKA2", "SMC1A", "SMC3", "SPAST", "SPC24", "SPC25", "SPDL1", "STAG1", "STAG2", "SUMO1", "TAOK1", "TNPO1", "TUBA1A", "TUBA1B", "TUBA1C", "TUBA3C", "TUBA3D", "TUBA3E", "TUBA4A", "TUBA4B", "TUBA8", "TUBAL3", "TUBB1", "TUBB2A", "TUBB2B", "TUBB3", "TUBB4A", "TUBB4B", "TUBB6", "TUBB8", "TUBB8B", "UBA52", "UBB", "UBC", "UBE2C", "UBE2D1", "UBE2E1", "UBE2I", "UBE2S", "VPS4A", "VRK1", "WAPL", "XPO1", "ZW10", "ZWILCH", "ZWINT" ] }, "position": { "x": 483.049827634584, "y": 985.8150515597802, "id": "b67a97a8-54b7-4306-be3a-d6518f864d8d", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "d7008ae4-7699-4f51-975c-49c6a5ff9c69", "name": [ "APOPTOSIS%WIKIPATHWAYS_20240410%WP254%HOMO SAPIENS" ], "description": [ "Apoptosis" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 75, "padj": 0.0064, "mcode_cluster_id": "Cluster 35", "NES": -1.7983, "genes": [ "APAF1", "BAD", "BAK1", "BAX", "BBC3", "BCL2", "BCL2L1", "BCL2L11", "BCL2L2", "BIRC2", "BIRC3", "BIRC5", "BNIP3L", "BOK", "CASP10", "CASP2", "CASP3", "CASP4", "CASP6", "CASP8", "CASP9", "CDKN2A", "CHUK", "CRADD", "CYCS", "DFFA", "DFFB", "DIABLO", "DKFZp686A24188", "FADD", "FAS", "HELLS", "HRK", "IGF1", "IGF1R", "IGF2", "IKBKB", "IKBKG", "IRF1", "IRF2", "IRF3", "IRF4", "IRF6", "IRF7", "JUN", "LTA", "MAP2K4", "MAP3K1", "MAPK10", "MCL1", "MDM2", "MYC", "NFKB1", "NFKBIA", "NFKBIB", "NFKBIE", "PIK3R1", "PMAIP1", "PRF1", "RELA", "RIPK1", "SCAF11", "TNF", "TNFRSF1A", "TNFRSF1B", "TNFRSF21", "TNFRSF25", "TNFSF10", "TNFSF6", "TP63", "TP73", "TRADD", "TRAF1", "TRAF2", "TRAF3" ] }, "position": { "x": 278.7349161500083, "y": 1843.78065370027, "id": "d7008ae4-7699-4f51-975c-49c6a5ff9c69", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "86c74837-80b4-4942-bcaf-24bd44f581e2", "name": [ "HDMS DEMETHYLATE HISTONES%REACTOME%R-HSA-3214842.5" ], "description": [ "HDMs demethylate histones" ], "pvalue": 0.0016, "gs_type": null, "gs_size": 26, "padj": 0.0228, "mcode_cluster_id": null, "NES": 1.8557, "genes": [ "ARID5B", "H3C15", "H3C8", "H4C9", "JMJD6", "KDM1A", "KDM1B", "KDM2A", "KDM2B", "KDM3A", "KDM3B", "KDM4A", "KDM4B", "KDM4C", "KDM4D", "KDM5A", "KDM5B", "KDM5C", "KDM5D", "KDM6A", "KDM6B", "KDM7A", "PHF2", "PHF8", "RIOX2", "UTY" ] }, "position": { "x": 3841.539072651805, "y": 2118.9446642487483, "id": "86c74837-80b4-4942-bcaf-24bd44f581e2" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "3cb8e7fa-0f27-4e5f-bb64-9c35329d928f", "name": [ "CELLULAR RESPONSE TO LIPID%GOBP%GO:0071396" ], "description": [ "cellular response to lipid" ], "pvalue": 0.0005, "gs_type": null, "gs_size": 326, "padj": 0.0083, "mcode_cluster_id": "Cluster 9", "NES": -1.5341, "genes": [ "ABCB4", "ABHD2", "ABL2", "ACOD1", "ADAM15", "ADAM9", "ADCY1", "ADCY2", "ADCY3", "ADCY5", "ADCY6", "ADCY8", "ADTRP", "AHR", "AKR1C1", "AKR1C2", "AKR1C3", "AKR1C4", "ANKRD1", "ANXA1", "AQP1", "AR", "ARID1A", "ATM", "ATP1A1", "ATP1A2", "ATP1A3", "AXL", "BCL10", "BCL2L11", "BPI", "BRINP1", "BRINP2", "BRINP3", "CACTIN", "CALCOCO1", "CALR", "CARD16", "CARD17P", "CASP1", "CASP7", "CCDC62", "CCL2", "CCR5", "CD14", "CD180", "CD274", "CD6", "CD68", "CD80", "CD86", "CDC73", "CES1", "CFTR", "CHMP5", "CREB1", "CRHBP", "CST11", "CTR9", "CTSG", "CX3CR1", "CXCL1", "CXCL10", "CXCL11", "CXCL13", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "CYP24A1", "CYP7A1", "DAB2IP", "DAXX", "DDX17", "DDX5", "DDX54", "DEFA1B", "DEFA3", "DEFA4", "DEFA5", "DEFA6", "DEFB104B", "DGAT2", "DYNAP", "EGFR", "EGLN2", "EPHA3", "ESR1", "ESR2", "ESRRA", "ESRRB", "ESRRG", "FAM107A", "FAM210B", "FES", "FFAR2", "FFAR3", "FZD10", "FZD4", "FZD7", "GBP2", "GBP3", "GFI1", "GIT1", "GNAI1", "GNB1", "GNG2", "GPBAR1", "GPER1", "GPLD1", "GPR155", "GRAMD1A", "GRAMD1B", "GRAMD1C", "GSK3B", "GSTP1", "H2AZ1", "HCK", "HMGB1", "HMGB2", "HNRNPU", "HSPA1A", "HSPA1B", "HTRA2", "IL10", "IL1A", "IL1B", "IL1F10", "IL36A", "IL36B", "IL36G", "IL36RN", "IL37", "IL6", "INSIG1", "INSIG2", "IRAK1", "IRAK2", "IRAK3", "IRAK4", "IRGM", "IRS1", "ISL1", "KAT5", "KCNK4", "KDM3A", "KDM4C", "KLF9", "LBP", "LCOR", "LDOC1", "LILRB1", "LILRB2", "LPL", "LRP6", "LTK", "LY96", "LYN", "MAP4K1", "MAPK1", "MAPK14", "MAPK8", "MED1", "MEF2C", "MEIOSIN", "MGARP", "MGST1", "MLC1", "MMP3", "MMP8", "MMP9", "MSN", "MTDH", "MYD88", "MYOD1", "MYOG", "NCOA3", "NCOA4", "NDUFA13", "NEDD4", "NFKB1", "NFKBIB", "NFKBIL1", "NKX3-1", "NLRP3", "NLRP7", "NOD2", "NR1D1", "NR1H3", "NR1H4", "NR3C1", "NR3C2", "NRIP1", "NUGGC", "OR51E2", "OSBPL7", "PABPN1", "PADI2", "PAF1", "PAX2", "PCK1", "PCK2", "PDCD1LG2", "PDCD4", "PDE4B", "PDK3", "PDK4", "PF4", "PF4V1", "PGR", "PHB1", "PID1", "PIM1", "PLAA", "PLCG2", "PLPP1", "PMEPA1", "POU4F1", "POU4F2", "PPARGC1B", "PPBP", "PPM1E", "PRKCE", "PTCH1", "PTGER2", "PTGER4", "PTGFR", "PTK2B", "PTK6", "PTK7", "PTPN22", "PYCARD", "RAMP3", "RARA", "RBFOX2", "RELA", "REST", "RET", "RHOA", "RHOXF1", "RNF14", "ROCK2", "RORA", "RORB", "RORC", "RUVBL2", "SAFB", "SBNO2", "SCGB2A1", "SCGB2A2", "SCNN1A", "SCNN1B", "SCNN1D", "SCNN1G", "SELENOS", "SERPINE1", "SFRP1", "SHPK", "SIRPA", "SLC5A5", "SMO", "SNW1", "SOX9", "SPHK2", "SPP1", "SRC", "SSTR1", "SSTR2", "SSTR4", "SSTR5", "STAP1", "STRA8", "SYK", "TADA3", "TBX1", "TESC", "TFPI", "TICAM1", "TICAM2", "TLR4", "TMF1", "TNFAIP3", "TNFRSF1B", "TNFSF4", "TNIP1", "TNIP2", "TNIP3", "TRAF6", "TREM2", "TRERF1", "TRIM41", "TWF2", "UBE2L3", "UBE3A", "UBR5", "UCP1", "UPF1", "URI1", "VDR", "VIM", "WBP2", "WNT10B", "WNT11", "WNT2", "WNT3", "WNT3A", "WNT5A", "WNT5B", "WNT6", "WNT7B", "WNT8B", "WNT9A", "WNT9B", "XBP1", "YWHAH", "ZC3H12A", "ZDHHC7", "ZFP36", "ZFP36L1", "ZFP36L2", "ZMIZ1", "ZNF35", "ZNF703", "ZNF764" ] }, "position": { "x": 3292.5237316625653, "y": 146.7549709296055, "id": "3cb8e7fa-0f27-4e5f-bb64-9c35329d928f", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "b8be3ad8-a193-4c64-a2e0-599a201b1402", "name": [ "TYPE II INTERFERON SIGNALING%WIKIPATHWAYS_20240410%WP619%HOMO SAPIENS" ], "description": [ "Type II interferon signaling" ], "pvalue": 2.3726e-7, "gs_type": null, "gs_size": 30, "padj": 0, "mcode_cluster_id": null, "NES": -2.2461, "genes": [ "CXCL9", "EIF2AK2", "GBP1", "HIST1H4L", "HLA-B", "IF1AB4", "IF1DA1", "IF2F", "IFI6", "IFIT2", "IFNGR1", "IFNGR2", "IL1B", "IRF1", "IRF2", "IRF4", "IRF8", "IRF9", "ISG15", "JAK1", "MHC2TA", "NOS2", "OAS1", "PTPN11", "SOCS1", "SOCS3", "SPI1", "STAT1", "STAT2", "TAP1" ] }, "position": { "x": 1092.0950150569033, "y": 1866.667634694631, "id": "b8be3ad8-a193-4c64-a2e0-599a201b1402" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "93a3ee13-43c0-40a1-a31e-90710a1e40e9", "name": [ "REGULATION OF T CELL CYTOKINE PRODUCTION%GOBP%GO:0002724" ], "description": [ "regulation of T cell cytokine production" ], "pvalue": 0.0012, "gs_type": null, "gs_size": 33, "padj": 0.0183, "mcode_cluster_id": null, "NES": -1.8081, "genes": [ "B2M", "CCR2", "CD55", "CD81", "CLC", "DENND1B", "FOXP3", "FZD5", "HFE", "HLA-A", "HLA-F", "IFNA2", "IFNB1", "IL18", "IL18R1", "IL1B", "IL1R1", "IL4", "IL6", "LILRB4", "MALT1", "MAP3K7", "NLRP3", "PRKCZ", "RSAD2", "SMAD7", "TBX21", "TNFRSF1B", "TNFSF4", "TRAF2", "TRAF6", "TRPM4", "XCL1" ] }, "position": { "x": 2191.9543770139653, "y": 969.9966449468022, "id": "93a3ee13-43c0-40a1-a31e-90710a1e40e9" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "ab991d25-c481-4292-b90e-bc8d7e930c3f", "name": [ "MEMBRANE DOCKING%GOBP%GO:0022406" ], "description": [ "membrane docking" ], "pvalue": 0.0015, "gs_type": null, "gs_size": 74, "padj": 0.0221, "mcode_cluster_id": null, "NES": 1.6561, "genes": [ "AHCYL1", "ATG14", "ATP2A2", "BLOC1S6", "CALM1", "CAV2", "CEP290", "CEP83", "CHP1", "CLN3", "CPLX2", "EXOC1", "EXOC2", "EXOC3", "EXOC4", "EXOC5", "EXOC6", "EXOC6B", "EXOC7", "EXOC8", "EZR", "GRAMD2A", "ICAM1", "KCNB1", "MSN", "PACS2", "PDZD8", "PEX16", "PEX26", "PLEK", "PSEN2", "RAB3IP", "RAB7A", "RAB8A", "RABEPK", "ROCK1", "SNAP25", "SNAP29", "SNPH", "SNX3", "STX10", "STX11", "STX12", "STX16", "STX17", "STX19", "STX1A", "STX1B", "STX2", "STX3", "STX4", "STX5", "STX6", "STX7", "STX8", "STXBP1", "STXBP2", "STXBP3", "SYTL2", "TSNARE1", "UNC13A", "UNC13B", "UNC13C", "USO1", "VAMP3", "VAMP8", "VAPA", "VAPB", "VCAM1", "VMP1", "VPS11", "VPS18", "VTI1B", "YKT6" ] }, "position": { "x": 3995.539072651805, "y": 2195.9446642487483, "id": "ab991d25-c481-4292-b90e-bc8d7e930c3f" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "name": [ "DOWNSTREAM TCR SIGNALING%REACTOME%R-HSA-202424.6" ], "description": [ "Downstream TCR signaling" ], "pvalue": 0.0039, "gs_type": null, "gs_size": 103, "padj": 0.0425, "mcode_cluster_id": "Cluster 1", "NES": -1.5681, "genes": [ "BCL10", "BTRC", "CARD11", "CD3D", "CD3E", "CD3G", "CD4", "CDC34", "CHUK", "CUL1", "FBXW11", "HLA-DPA1", "HLA-DPB1", "HLA-DQA1", "HLA-DQA2", "HLA-DQB1", "HLA-DQB2", "HLA-DRA", "HLA-DRB1", "HLA-DRB3", "HLA-DRB4", "HLA-DRB5", "IKBKB", "IKBKG", "INPP5D", "LCK", "MALT1", "MAP3K7", "NFKB1", "NFKBIA", "PDPK1", "PIK3CA", "PIK3CB", "PIK3R1", "PIK3R2", "PRKCQ", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "PTEN", "RELA", "RIPK2", "RPS27A", "SEM1", "SKP1", "TAB2", "TRAC", "TRAF6", "TRAT1", "TRAV19", "TRAV29DV5", "TRAV8-4", "TRBC1", "TRBV12-3", "TRBV7-9", "UBA52", "UBB", "UBC", "UBE2D1", "UBE2D2", "UBE2N", "UBE2V1" ] }, "position": { "x": 438.5902071171453, "y": 846.1687131129128, "id": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "e28bc43f-7116-4972-bf76-e15d1b1cebd5", "name": [ "ANTIGEN PROCESSING AND PRESENTATION%GOBP%GO:0019882" ], "description": [ "antigen processing and presentation" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 91, "padj": 0.0054, "mcode_cluster_id": null, "NES": -1.811, "genes": [ "ABCB9", "ACE", "ARL8B", "B2M", "CALR", "CD1A", "CD1B", "CD1C", "CD1D", "CD1E", "CD209", "CD74", "CD8A", "CLEC4A", "CLEC4M", "CTSD", "CTSE", "CTSF", "CTSH", "CTSL", "CTSS", "CTSV", "DNM2", "ERAP1", "ERAP2", "FCER1G", "FCER2", "FCGR2B", "HFE", "HLA-A", "HLA-B", "HLA-C", "HLA-DMA", "HLA-DMB", "HLA-DOA", "HLA-DOB", "HLA-DPA1", "HLA-DPB1", "HLA-DQA1", "HLA-DQA2", "HLA-DQB1", "HLA-DQB2", "HLA-DRA", "HLA-DRB1", "HLA-DRB3", "HLA-DRB4", "HLA-DRB5", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "IDE", "IFI30", "IKBKB", "LGMN", "LNPEP", "MARCHF1", "MARCHF8", "MFSD6", "MICA", "MICB", "MPEG1", "MR1", "PDIA3", "PIKFYVE", "RAB10", "RAB27A", "RAB32", "RAB33A", "RAB34", "RAB35", "RAB3B", "RAB3C", "RAB4A", "RAB5B", "RAB6A", "RAB8B", "RAET1E", "RAET1G", "RAET1L", "RFTN1", "SAR1B", "SLC11A1", "TAP1", "TAP2", "TAPBP", "TAPBPL", "ULBP1", "ULBP2", "ULBP3", "WDFY4" ] }, "position": { "x": 1819.5351808390706, "y": 993.4062616029262, "id": "e28bc43f-7116-4972-bf76-e15d1b1cebd5" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "ec93dbde-699b-4275-bcdf-a802acfeba4d", "name": [ "REGULATION OF CELL ADHESION%GOBP%GO:0030155" ], "description": [ "regulation of cell adhesion" ], "pvalue": 0, "gs_type": null, "gs_size": 631, "padj": 0.0009, "mcode_cluster_id": null, "NES": -1.4917, "genes": [ "ABCA12", "ABI3BP", "ABL1", "ABL2", "ACER2", "ACTB", "ACTG1", "ACTL6A", "ACTL6B", "ACTN4", "ACVRL1", "ADA", "ADAM10", "ADAM15", "ADAM19", "ADAM22", "ADAM8", "ADAM9", "ADAMDEC1", "ADAMTS18", "ADGRG1", "ADIPOQ", "ADTRP", "AFDN", "AGER", "AGR2", "AIF1", "AJAP1", "AKNA", "AKT1", "ALOX12", "ALOX15", "ALOX5", "AMBRA1", "ANGPT1", "ANK3", "ANXA1", "AP1AR", "APOA1", "APOD", "ARG1", "ARHGAP6", "ARHGDIG", "ARHGEF7", "ARID1A", "ARID1B", "ARID2", "ARL2", "ASS1", "ATM", "ATXN3", "AZU1", "B2M", "B4GALNT2", "BCL6", "BMP2", "BMP4", "BMP6", "BMP7", "BRD2", "BRD4", "BRD7", "BST1", "BTN2A2", "C1QBP", "C1QTNF1", "C2CD4A", "C2CD4B", "CALR", "CAMSAP3", "CARD11", "CARMIL1", "CASK", "CASS4", "CAV1", "CBFB", "CBLL1", "CBLL2", "CCDC80", "CCDC88B", "CCL19", "CCL2", "CCL21", "CCL25", "CCL28", "CCL5", "CCR2", "CCR7", "CD160", "CD164", "CD1D", "CD209", "CD24", "CD274", "CD276", "CD28", "CD300A", "CD36", "CD3E", "CD40LG", "CD44", "CD46", "CD47", "CD5", "CD55", "CD6", "CD70", "CD80", "CD81", "CD86", "CD9", "CDC42", "CDH1", "CDH13", "CDK6", "CDKN2A", "CDSN", "CEACAM1", "CEACAM6", "CEBPB", "CELA2A", "CELSR2", "CHRD", "CHST2", "CHST4", "CIB1", "CITED2", "CLASP1", "CLASP2", "CLECL1P", "COL16A1", "CORO1C", "CORO2B", "CR1", "CRK", "CRKL", "CRTAM", "CSF1", "CSK", "CSPG5", "CTLA4", "CTSG", "CX3CL1", "CXCL12", "CXCL13", "CXCL8", "CXCR3", "CXCR4", "CYP1B1", "CYRIB", "CYTH1", "CYTIP", "DACT2", "DAPK3", "DAPL1", "DEFB118", "DENND6A", "DLC1", "DLG5", "DLL1", "DMTN", "DOCK1", "DOCK5", "DOCK8", "DPP4", "DSCAM", "DUSP1", "DUSP10", "DUSP22", "DUSP26", "DUSP3", "EBI3", "ECM2", "EFEMP2", "EFNA1", "EFNA5", "EMILIN1", "EMILIN2", "EMP2", "EP300", "EPB41L4B", "EPCAM", "EPHA1", "EPHA2", "EPHA3", "EPHA4", "EPHA7", "EPHA8", "EPHB2", "EPHB3", "ERBB2", "ERBB3", "ETS1", "F11R", "FADD", "FAM107A", "FBLN1", "FBLN2", "FBXO38", "FCHO1", "FERMT2", "FERMT3", "FES", "FGA", "FGB", "FGG", "FGL1", "FLNA", "FLOT1", "FLOT2", "FN1", "FOXA1", "FOXA2", "FOXC2", "FOXJ1", "FOXO3", "FOXP3", "FRMD5", "FSTL3", "FUT1", "FUT2", "FUT3", "FUT4", "FUT7", "FUT9", "FXYD5", "FYN", "FZD4", "FZD7", "GATA3", "GBP1", "GCNT2", "GFUS", "GLI2", "GLI3", "GLMN", "GP6", "GPM6B", "GPNMB", "GPR4", "GSK3B", "GTPBP4", "HAS2", "HAVCR2", "HFE", "HHLA2", "HLA-A", "HLA-DMA", "HLA-DMB", "HLA-DOA", "HLA-DOB", "HLA-DPA1", "HLA-DPB1", "HLA-DQA1", "HLA-DQA2", "HLA-DQB1", "HLA-DQB2", "HLA-DRA", "HLA-DRB1", "HLA-DRB3", "HLA-DRB4", "HLA-DRB5", "HLA-E", "HLA-G", "HMGB1", "HOXA7", "HRG", "HSPD1", "HSPH1", "HTN1", "HYAL1", "IBSP", "ICOS", "ICOSLG", "IFNA2", "IFNB1", "IFNG", "IFNL1", "IGF1", "IGF2", "IGFBP2", "IHH", "IL10", "IL12A", "IL12B", "IL12RB1", "IL15", "IL18", "IL1A", "IL1B", "IL1RN", "IL2", "IL21", "IL23A", "IL23R", "IL36B", "IL4", "IL4I1", "IL6", "IL6ST", "IL7", "ILDR2", "ILK", "IRAK1", "IRF1", "ITGAV", "ITGB1BP1", "ITGB2", "JAG1", "JAK1", "JAK2", "JAK3", "JAM3", "JUP", "KANK1", "KAT5", "KDR", "KIF14", "KLF4", "KLHL25", "KLRK1", "KNG1", "LAG3", "LAMA1", "LAMA2", "LAMB1", "LAMB2", "LAMC1", "LAPTM5", "LAX1", "LCK", "LDB1", "LEF1", "LEP", "LGALS3", "LGALS9", "LGALS9B", "LGALS9C", "LIF", "LILRB1", "LILRB2", "LILRB4", "LIMCH1", "LIMS1", "LIMS2", "LOXL3", "LPXN", "LYN", "MACF1", "MAD2L2", "MAGI1", "MALT1", "MAP2K5", "MAP3K8", "MAP4K4", "MAPK7", "MBP", "MDGA1", "MDK", "MEGF10", "MELTF", "METTL3", "MFSD2B", "MIA3", "MINK1", "MIP", "MMP12", "MMRN1", "MTOR", "MUC1", "MUC21", "MYADM", "MYOC", "NCK1", "NCK2", "NCKAP1L", "NDNF", "NEDD9", "NEXMIF", "NF1", "NF2", "NFAT5", "NFKBID", "NFKBIZ", "NID1", "NKAP", "NLRP3", "NOD2", "NODAL", "NOTCH1", "NOTCH4", "NPNT", "NR4A3", "NRP1", "NUAK1", "OLFM4", "OPA1", "P2RY12", "P4HB", "PAG1", "PBRM1", "PCK1", "PDCD1", "PDCD1LG2", "PDE3B", "PDGFB", "PDPK1", "PDPN", "PEAK1", "PHF10", "PHLDB2", "PIEZO1", "PIK3CA", "PIK3CB", "PIK3CG", "PKHD1", "PKP2", "PKP4", "PLA2G2A", "PLA2G2D", "PLA2G2E", "PLA2G2F", "PLA2G5", "PLAU", "PLAUR", "PLEKHA2", "PLET1", "PLG", "PLPP3", "PLXNA1", "PLXNA2", "PLXNA3", "PLXNA4", "PLXNB1", "PLXNB2", "PLXNB3", "PLXNC1", "PLXND1", "PNP", "PODXL", "PPARA", "PPM1F", "PPP1CB", "PPP1R12A", "PPP3CA", "PRKAR1A", "PRKCA", "PRKCD", "PRKCQ", "PRKCZ", "PRKD2", "PRKG1", "PRKX", "PRNP", "PRSS2", "PTEN", "PTK2", "PTK2B", "PTPN11", "PTPN2", "PTPN22", "PTPN23", "PTPN6", "PTPRA", "PTPRC", "PTPRG", "PTPRJ", "PTPRO", "PTPRR", "PTPRU", "PYCARD", "RAC1", "RAC2", "RAC3", "RARA", "RASA1", "RASAL3", "RC3H1", "RC3H2", "RCC2", "RDX", "RELA", "RELL2", "RET", "RGCC", "RHOA", "RHOD", "RHOH", "RIN2", "RIPOR2", "RNASE10", "RND1", "ROCK1", "ROCK2", "RPS3", "RRAS", "RREB1", "RSU1", "RUNX1", "RUNX3", "S100A10", "SAA1", "SART1", "SCRIB", "SDC4", "SELE", "SELP", "SEMA3E", "SEMA4D", "SEMA5A", "SEMA6A", "SERPINE1", "SERPINE2", "SERPINF2", "SFRP1", "SFRP2", "SFTPD", "SH2B3", "SHH", "SIPA1", "SIRPA", "SIRPB1", "SIRPG", "SKAP1", "SLC4A2", "SLC7A1", "SLC9A1", "SLK", "SMAD7", "SMARCA2", "SMARCA4", "SMARCB1", "SMARCC1", "SMARCC2", "SMARCD1", "SMARCD2", "SMARCD3", "SMARCE1", "SNAI2", "SOCS1", "SOCS5", "SOX12", "SOX4", "SPI1", "SPINT2", "SPN", "SPOCK1", "SPRY4", "SRC", "ST3GAL4", "STX3", "STX4", "SYK", "TACSTD2", "TARM1", "TBCD", "TBX21", "TEK", "TENM3", "TESC", "TESK1", "TESPA1", "TFE3", "TFRC", "TGFB1", "TGFB2", "TGFBI", "TGFBR2", "TGM2", "THBS1", "THY1", "TIGIT", "TJP1", "TLN1", "TMEM102", "TMEM131L", "TMIGD2", "TMX1", "TNC", "TNF", "TNFAIP8L2", "TNFRSF13C", "TNFRSF14", "TNFRSF18", "TNFRSF21", "TNFSF11", "TNFSF14", "TNFSF18", "TNFSF4", "TNFSF9", "TNN", "TNR", "TNXB", "TPM1", "TRAF6", "TRIOBP", "TRPV4", "TSC1", "TWSG1", "TYK2", "UFL1", "UTRN", "VAV1", "VCAM1", "VCL", "VEGFA", "VIT", "VNN1", "VSIG4", "VSIR", "VTCN1", "VTN", "WASHC2C", "WNK1", "WNT1", "XBP1", "XCL1", "YES1", "YTHDF2", "ZAP70", "ZBTB1", "ZBTB7B", "ZC3H12A", "ZC3H8", "ZDHHC2", "ZDHHC21", "ZFHX3", "ZMIZ1", "ZNF703", "ZP3", "ZP4" ] }, "position": { "x": 2564.1008629755897, "y": 353.66402128906884, "id": "ec93dbde-699b-4275-bcdf-a802acfeba4d" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "c5754971-03d8-46f2-9be9-087b45cee5d9", "name": [ "CYCLIN A:CDK2-ASSOCIATED EVENTS AT S PHASE ENTRY%REACTOME%R-HSA-69656.6" ], "description": [ "Cyclin A:Cdk2-associated events at S phase entry" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 85, "padj": 0.0014, "mcode_cluster_id": "Cluster 1", "NES": -1.8237, "genes": [ "AKT1", "AKT2", "AKT3", "CABLES1", "CCNA1", "CCNA2", "CCND1", "CCNE1", "CCNE2", "CCNH", "CDC25A", "CDC25B", "CDK2", "CDK4", "CDK7", "CDKN1A", "CDKN1B", "CKS1B", "CUL1", "E2F1", "E2F4", "E2F5", "FZR1", "LIN37", "LIN52", "LIN54", "LIN9", "MAX", "MNAT1", "MYC", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMB1", "PSMB10", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSMF1", "PTK6", "RB1", "RBBP4", "RBL2", "RPS27A", "SEM1", "SKP1", "SKP2", "TFDP1", "TFDP2", "UBA52", "UBB", "UBC", "WEE1" ] }, "position": { "x": 476.09277971891515, "y": 795.4675832682268, "id": "c5754971-03d8-46f2-9be9-087b45cee5d9", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "name": [ "TRANSCRIPTIONAL REGULATION BY RUNX2%REACTOME DATABASE ID RELEASE 81%8878166" ], "description": [ "Transcriptional regulation by RUNX2" ], "pvalue": 0.0013, "gs_type": null, "gs_size": 118, "padj": 0.0195, "mcode_cluster_id": "Cluster 1", "NES": -1.5906, "genes": [ "ABL1", "AKT1", "AKT2", "AKT3", "AR", "BAX", "BGLAP", "BMP2", "CBFB", "CCNB1", "CCND1", "CDK1", "CDK4", "CDKN1A", "COL1A1", "CUL1", "DLX5", "DLX6", "ESR1", "ESRRA", "GLI2", "GLI3", "GSK3B", "HAND2", "HDAC3", "HDAC4", "HDAC6", "HES1", "HEY1", "HEY2", "HIVEP3", "IHH", "ITGA5", "ITGBL1", "LGALS3", "MAF", "MAPK1", "MAPK3", "MMP13", "MSX2", "NKX3-2", "NR3C1", "PPARGC1A", "PPARGC1B", "PPM1D", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RB1", "RBM14", "RBX1", "RPS27A", "RUNX1", "SATB2", "SEM1", "SKP1", "SKP2", "SMAD1", "SMAD4", "SMAD6", "SMURF1", "SOX9", "SP7", "SRC", "STAT1", "STUB1", "TWIST1", "TWIST2", "UBA52", "UBB", "UBC", "UCMA", "WWP1", "WWTR1", "YAP1", "YES1", "ZNF521" ] }, "position": { "x": 495.31995717870404, "y": 773.977810856237, "id": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "name": [ "TNFR2 NON-CANONICAL NF-KB PATHWAY%REACTOME%R-HSA-5668541.5" ], "description": [ "TNFR2 non-canonical NF-kB pathway" ], "pvalue": 0, "gs_type": null, "gs_size": 99, "padj": 0.0004, "mcode_cluster_id": "Cluster 1", "NES": -1.8821, "genes": [ "BIRC2", "BIRC3", "BTRC", "CD27", "CD40LG", "CD70", "CHUK", "CUL1", "EDA", "EDA2R", "EDAR", "EDARADD", "FBXW11", "LTA", "LTB", "LTBR", "MAP3K14", "NFKB2", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RELB", "RPS27A", "SEM1", "SKP1", "TNF", "TNFRSF11A", "TNFRSF11B", "TNFRSF12A", "TNFRSF13B", "TNFRSF13C", "TNFRSF14", "TNFRSF17", "TNFRSF18", "TNFRSF1A", "TNFRSF1B", "TNFRSF25", "TNFRSF4", "TNFRSF6B", "TNFRSF8", "TNFRSF9", "TNFSF11", "TNFSF12", "TNFSF13", "TNFSF13B", "TNFSF14", "TNFSF15", "TNFSF18", "TNFSF4", "TNFSF6", "TNFSF8", "TNFSF9", "TRAF3", "UBA3", "UBA52", "UBB", "UBC", "UBE2M" ] }, "position": { "x": 451.98288648518326, "y": 852.3011021384369, "id": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "493c7a26-6cb5-4390-8705-15d2ee98176c", "name": [ "REGULATION OF MRNA STABILITY BY PROTEINS THAT BIND AU-RICH ELEMENTS%REACTOME DATABASE ID RELEASE 81%450531" ], "description": [ "Regulation of mRNA stability by proteins that bind AU-rich elements" ], "pvalue": 0, "gs_type": null, "gs_size": 86, "padj": 0.0007, "mcode_cluster_id": "Cluster 1", "NES": -1.8657, "genes": [ "AKT1", "ANP32A", "DCP1A", "DCP2", "DIS3", "EIF4G1", "ELAVL1", "EXOSC1", "EXOSC2", "EXOSC3", "EXOSC4", "EXOSC5", "EXOSC6", "EXOSC7", "EXOSC8", "EXOSC9", "HSPA1A", "HSPA8", "HSPB1", "KHSRP", "MAPK11", "MAPK14", "MAPKAPK2", "NUP214", "PABPC1", "PARN", "PRKCA", "PRKCD", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RPS27A", "SEM1", "SET", "TNFSF13", "TNPO1", "UBA52", "UBB", "UBC", "XPO1", "XRN1", "YWHAB", "YWHAZ", "ZFP36", "ZFP36L1" ] }, "position": { "x": 495.7007611514736, "y": 828.1803800274048, "id": "493c7a26-6cb5-4390-8705-15d2ee98176c", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "15df1c59-4b86-4fda-ac8a-220aeb9b4c29", "name": [ "NEGATIVE REGULATION OF CYTOKINE PRODUCTION%GOBP%GO:0001818" ], "description": [ "negative regulation of cytokine production" ], "pvalue": 0.0044, "gs_type": null, "gs_size": 233, "padj": 0.0461, "mcode_cluster_id": null, "NES": -1.4489, "genes": [ "ABCD1", "ABCD2", "ACOD1", "ADCY7", "ADIPOQ", "AGER", "ANXA1", "ANXA4", "APOA1", "APOA2", "APOD", "APPL2", "ARG2", "ARRB1", "ASB1", "ATG12", "ATG5", "ATP2B1", "AXL", "BANF1", "BCL3", "BPI", "BST2", "BTN2A2", "C1QBP", "C1QTNF3", "C5AR2", "CACTIN", "CARD16", "CARD17P", "CARD18", "CARD8", "CASP3", "CCR7", "CD200", "CD200R1", "CD24", "CD274", "CD33", "CD34", "CD84", "CEACAM1", "CHID1", "CHRNA7", "CIDEA", "CLEC4A", "CMKLR1", "CPTP", "CR1", "CUEDC2", "CUL3", "CX3CL1", "CX3CR1", "CYLD", "DDIT3", "DDX56", "DEFB114", "DHX58", "DICER1", "DLL1", "ELANE", "ELF4", "EXTL3", "EZR", "F2", "F2RL1", "FCGR2B", "FFAR1", "FFAR4", "FN1", "FOXJ1", "FOXP3", "FURIN", "FXR1", "GAS6", "GATA6", "GBA1", "GBP1", "GBP7", "GHRL", "GHSR", "GIT1", "GPATCH3", "GPNMB", "GPR174", "GSTP1", "HAVCR2", "HDAC7", "HDAC9", "HFE", "HLA-DRB1", "HLA-F", "HMGB1", "HOMER2", "HOMER3", "IFNA2", "IFNB1", "IFNG", "IFNL1", "IGF1", "IL10", "IL12A", "IL12B", "IL23A", "IL23R", "IL36RN", "IL37", "IL4", "IL6", "ILRUN", "INHA", "INHBA", "INHBB", "IRAK3", "IRGM", "ITCH", "JAK3", "KAT5", "KAT8", "KLF4", "KLHL22", "LAPTM4B", "LAPTM5", "LBP", "LEF1", "LGALS9", "LGALS9B", "LGALS9C", "LGR4", "LILRA4", "LILRA5", "LILRB1", "LILRB4", "LTF", "MACIR", "MAP2K5", "MAPKBP1", "MC1R", "MEFV", "MORC3", "MT-RNR2", "MUL1", "N4BP1", "NAV3", "NCKAP1L", "NFKBIL1", "NLRC3", "NLRP12", "NLRP2B", "NLRP3", "NLRP7", "NMB", "NMBR", "NPLOC4", "NPTN", "NR1H4", "OAS1", "OAS3", "ORM1", "OTUD5", "OTUD7B", "PDCD1LG2", "PDCD4", "PIBF1", "POMC", "PPARA", "PPM1B", "PPP1R11", "PRKACA", "PRNP", "PSG9", "PTGER4", "PTPN11", "PTPN22", "PTPN6", "PTPRC", "PTPRS", "PYCARD", "PYDC1", "PYDC2", "RAC1", "RARA", "RBX1", "REL", "RELB", "RGCC", "RNF125", "RNF216", "RPS6KA4", "RPS6KA5", "SARS1", "SELENOS", "SERPINB1", "SFTPD", "SIGIRR", "SIGLEC1", "SIRPA", "SLAMF1", "SLC11A1", "SLC2A10", "SMAD7", "SRGN", "SSC5D", "SYT11", "TBX21", "TGFB1", "TGFB2", "TGFB3", "THBS1", "TIGIT", "TLR4", "TLR6", "TLR8", "TNF", "TNFAIP3", "TNFRSF21", "TNFSF4", "TRAF3IP1", "TREM2", "TRIB2", "TRIM27", "TSKU", "TWSG1", "TYROBP", "UFD1", "VSIG4", "VSIR", "XAF1", "XCL1", "YY1", "ZC3H12A", "ZFP36", "ZFPM1" ] }, "position": { "x": 1478.9683690431852, "y": 281.77015957596177, "id": "15df1c59-4b86-4fda-ac8a-220aeb9b4c29" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "6df354fa-6e0c-4143-92f3-885bfebeb345", "name": [ "POSITIVE REGULATION OF CELL POPULATION PROLIFERATION%GOBP%GO:0008284" ], "description": [ "positive regulation of cell population proliferation" ], "pvalue": 0.0047, "gs_type": null, "gs_size": 678, "padj": 0.0488, "mcode_cluster_id": null, "NES": -1.3142, "genes": [ "ACAN", "ACER2", "ACER3", "ACTB", "ACTL6A", "ACTL6B", "ADAM10", "ADAM17", "ADAMTS1", "ADRA1D", "ADRA2A", "AGER", "AGGF1", "AGT", "AGTR1", "AIF1", "AKR1C2", "AKR1C3", "AKT1", "AKT3", "ANG", "ANXA1", "APELA", "APLN", "APLNR", "AQP1", "AQP11", "AR", "AREG", "ARNT", "ASH2L", "ATF2", "AVPR1A", "BAD", "BAMBI", "BCAN", "BCAR3", "BCL2", "BCL7A", "BCL7B", "BCL7C", "BICRA", "BICRAL", "BIRC5", "BMI1", "BMP10", "BMP2", "BMP4", "BMP5", "BMP6", "BMPR1A", "BNC1", "BRD9", "BST1", "BST2", "BTC", "C5AR1", "C8orf17", "CACUL1", "CALR", "CAPN1", "CAPNS1", "CCAR1", "CCDC117", "CCDC88B", "CCKBR", "CCL11", "CCL14", "CCL19", "CCL24", "CCL26", "CCL5", "CCN1", "CCN4", "CCND2", "CCNE1", "CCPG1", "CCR2", "CD1D", "CD209", "CD24", "CD274", "CD276", "CD28", "CD320", "CD38", "CD3E", "CD40LG", "CD46", "CD47", "CD55", "CD6", "CD70", "CD74", "CD80", "CD81", "CD86", "CDC25B", "CDC7", "CDCA7L", "CDH13", "CDH3", "CDK2", "CDK4", "CDK6", "CDKN1A", "CEACAM6", "CEP131", "CEP43", "CGA", "CHP2", "CHRD", "CHRNA7", "CHRNB2", "CIAO1", "CIB1", "CITED1", "CLCF1", "CLDN1", "CLDN5", "CLEC11A", "CLEC7A", "CLECL1P", "CNBP", "CNOT6", "CNOT6L", "CNOT7", "CNOT8", "COPS9", "COX17", "CR1", "CRIPTO", "CRKL", "CRLF1", "CRLF2", "CRNN", "CSF1", "CSF1R", "CSF2", "CSF2RA", "CSF2RB", "CSF3", "CSNK2A1", "CSNK2A3", "CTF1", "CTNNB1", "CTSH", "CUL3", "CX3CL1", "CX3CR1", "CXCL5", "CXCR2", "DBF4B", "DCT", "DDR2", "DDRGK1", "DERL2", "DHPS", "DHX9", "DISC1", "DISP3", "DLL1", "DLL4", "DNAJA2", "DNMT1", "DOT1L", "DPP4", "DRD2", "DYNAP", "E2F1", "EAPP", "EBI3", "ECM1", "EDN1", "EDN2", "EDN3", "EFNB2", "EGF", "EGFL7", "EGFR", "EGR1", "EGR3", "EGR4", "ELANE", "EMC10", "EMP2", "EPCAM", "EPGN", "EPHA1", "EPHA4", "EPHB2", "EPO", "EPOR", "ERBB2", "ERBB3", "ERBB4", "EREG", "ERN1", "ESM1", "EXTL3", "EZH2", "F2R", "F3", "FADD", "FAM98A", "FAM98B", "FBXO5", "FCGR3A", "FCRL3", "FER", "FERMT2", "FGF1", "FGF10", "FGF16", "FGF17", "FGF18", "FGF19", "FGF2", "FGF20", "FGF21", "FGF22", "FGF23", "FGF3", "FGF4", "FGF5", "FGF6", "FGF7", "FGF8", "FGF9", "FGFBP1", "FGFR1", "FGFR2", "FGFR3", "FGFR4", "FLT1", "FLT3", "FLT3LG", "FLT4", "FN1", "FOLR2", "FOSL1", "FOXE3", "FOXJ2", "FOXM1", "FOXP1", "FSHB", "FTMT", "FXN", "FZD3", "FZD7", "FZD9", "GAB2", "GAREM1", "GAS6", "GATA2", "GATA6", "GCNT2", "GDF2", "GDF9", "GDNF", "GHRH", "GHRHR", "GID8", "GJA1", "GLI1", "GLP2R", "GNAI2", "GPER1", "GPR183", "GREM1", "GRK5", "GRN", "HAPLN1", "HAPLN2", "HAPLN3", "HAPLN4", "HAS2", "HBEGF", "HCK", "HCLS1", "HDAC1", "HDAC2", "HDAC4", "HES1", "HES5", "HHLA2", "HIF1A", "HILPDA", "HLA-A", "HLA-DMB", "HLA-DPA1", "HLA-DPB1", "HLA-E", "HMGA2", "HMGB1", "HMGB2", "HMGN5", "HMOX1", "HNRNPU", "HOXC10", "HPN", "HPSE", "HRAS", "HTN3", "HTR1A", "HTR1B", "HTR2B", "HYAL1", "ICOSLG", "ID2", "IFNG", "IGF1", "IGF1R", "IGF2", "IGFBP2", "IGFBP5", "IL10", "IL11", "IL11RA", "IL12A", "IL12B", "IL12RB1", "IL12RB2", "IL13RA1", "IL15", "IL18", "IL1A", "IL1B", "IL2", "IL21", "IL23A", "IL23R", "IL3", "IL31RA", "IL34", "IL4", "IL5RA", "IL6", "IL6R", "IL6ST", "IL7", "IL7R", "IL9", "INS", "INSL4", "INSM1", "INSR", "IRS1", "IRS2", "ITGA4", "ITGAV", "ITGAX", "ITGB1BP1", "ITGB3", "JAK2", "JAML", "JCAD", "JUN", "KAT7", "KDM1A", "KDM4C", "KDR", "KIF14", "KIF20B", "KITLG", "KMT2D", "KRT6A", "LACRT", "LAMB1", "LAMC1", "LAMC2", "LDLRAP1", "LEF1", "LEP", "LGALS9", "LGMN", "LHX1", "LIF", "LIFR", "LIG4", "LILRB2", "LRG1", "LRP2", "LRP5", "LTBP3", "LTF", "LYN", "MAP3K3", "MAPK1", "MAPK15", "MAPK3", "MARCHF7", "MATK", "MAZ", "MCTS1", "MDK", "MDM2", "MEF2C", "MEF2D", "MEGF10", "MEIS1", "MEIS2", "MEIS3", "MEIS3P1", "MEIS3P2", "MFN2", "MIF", "MLXIPL", "MMP12", "MMP2", "MMP9", "MST1R", "MVD", "MYC", "MYDGF", "N4BP2L2", "NACC1", "NAMPT", "NANOG", "NANOGP8", "NAP1L1", "NCAN", "NCCRP1", "NCK1", "NCK2", "NCKAP1L", "NDUFS4", "NES", "NFATC2", "NKX2-5", "NKX2-6", "NKX3-1", "NMB", "NMBR", "NME1", "NME2", "NOD2", "NODAL", "NOP2", "NOTCH1", "NOTCH2", "NOX1", "NPM1", "NR4A1", "NR4A3", "NRARP", "NRAS", "NRG1", "NRP1", "NRP2", "NTF3", "NTRK2", "NTRK3", "OCSTAMP", "ODAM", "OSM", "OSMR", "OSR1", "OSR2", "P2RY6", "PAK1", "PAX2", "PDCD10", "PDCD1LG2", "PDCD2", "PDCD6", "PDCL3", "PDF", "PDGFA", "PDGFB", "PDGFC", "PDGFD", "PDGFRA", "PDGFRB", "PDPK1", "PGF", "PHB1", "PHIP", "PID1", "PIK3CD", "PIK3R1", "PIM1", "PITX2", "PKHD1", "PLA2G1B", "PLA2G2C", "PLCG1", "PLXNB3", "PNP", "POU3F2", "POU3F3", "PPP1R16B", "PPP3CA", "PRAME", "PRC1", "PRDX3", "PRKCA", "PRKCH", "PRKCI", "PRKD1", "PRKD2", "PRL", "PRLR", "PRMT1", "PROX1", "PRTN3", "PTEN", "PTGFR", "PTHLH", "PTK2", "PTK2B", "PTN", "PTPN6", "PTPRC", "PTPRN", "PYCARD", "RAB25", "RARA", "RASAL3", "RASSF10", "RBPJ", "RBPMS2", "REG1A", "REG1B", "REG3A", "REG3G", "RELA", "RHOG", "RNF187", "ROMO1", "RPL23", "RPRD1B", "RPS15A", "RPS3", "RPS4X", "RPS6", "RPS9", "RREB1", "RTKN2", "RTN4", "RYK", "S100A13", "S100A6", "S100B", "S1PR2", "S1PR3", "SAAL1", "SAPCD2", "SASH3", "SCAND3", "SCG2", "SCN5A", "SCX", "SDCBP", "SEMA5A", "SERPINB3", "SERPINF2", "SERTAD1", "SFRP1", "SFRP2", "SHANK2", "SHC1", "SHH", "SINHCAF", "SIRPG", "SIRT1", "SIRT6", "SIX2", "SLAMF1", "SLC25A33", "SLC25A5", "SLC35F6", "SLC7A1", "SMAD4", "SMARCA2", "SMARCA4", "SMARCC1", "SMARCD1", "SMARCD3", "SOX11", "SOX15", "SOX4", "SOX8", "SOX9", "SP1", "SPDYA", "SPHK1", "SRPK2", "SRSF6", "SS18", "SSR1", "STAMBP", "STAT1", "STAT5A", "STX3", "STX4", "STXBP4", "TBC1D8", "TBRG4", "TBX1", "TBX2", "TBX20", "TBX3", "TCF7L2", "TCIRG1", "TEK", "TERT", "TFAP2B", "TFRC", "TGFA", "TGFB1", "TGFB2", "TGFB3", "TGFBR1", "TGFBR2", "TGFBR3", "TGM1", "THBS1", "THBS4", "THPO", "TIAM1", "TIMP1", "TIPIN", "TIRAP", "TJP1", "TLR9", "TMEM119", "TMEM250", "TMIGD2", "TNF", "TNFRSF11A", "TNFRSF13C", "TNFRSF4", "TNFSF12", "TNFSF13", "TNFSF13B", "TNFSF4", "TNFSF9", "TNXB", "TOX", "TRPM4", "TSC22D1", "TSHR", "TSLP", "TSPAN31", "TSPYL5", "TTK", "TYK2", "UFL1", "VASH2", "VAV3", "VCAM1", "VCAN", "VEGFA", "VEGFB", "VEGFC", "VEGFD", "VIP", "VIPR1", "VSTM2A", "WNT1", "WNT2", "WNT3A", "WNT5A", "WNT7A", "WWTR1", "XBP1", "XCL1", "YAP1", "ZFPM2", "ZNF16", "ZNF268", "ZNF304", "ZNF335", "ZNF580", "ZNF703", "ZP3", "ZP4" ] }, "position": { "x": 191.5, "y": 2195.9446642487483, "id": "6df354fa-6e0c-4143-92f3-885bfebeb345" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "798cf5c5-8794-4d54-b73e-4b316eb74600", "name": [ "P53-INDEPENDENT DNA DAMAGE RESPONSE%REACTOME%R-HSA-69610.6" ], "description": [ "p53-Independent DNA Damage Response" ], "pvalue": 0, "gs_type": null, "gs_size": 52, "padj": 0.0006, "mcode_cluster_id": "Cluster 1", "NES": -2.0195, "genes": [ "CDC25A", "CHEK1", "CHEK2", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RPS27A", "SEM1", "UBA52", "UBB", "UBC" ] }, "position": { "x": 466.44886011786133, "y": 804.7418609561313, "id": "798cf5c5-8794-4d54-b73e-4b316eb74600", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "name": [ "HH MUTANTS ARE DEGRADED BY ERAD%REACTOME DATABASE ID RELEASE 81%5362768" ], "description": [ "Hh mutants are degraded by ERAD" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 56, "padj": 0.0021, "mcode_cluster_id": "Cluster 1", "NES": -1.9345, "genes": [ "DERL2", "ERLEC1", "OS9", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RPS27A", "SEL1L", "SEM1", "SHH", "SYVN1", "UBA52", "UBB", "UBC", "VCP" ] }, "position": { "x": 478.4098741304315, "y": 817.7016787418937, "id": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "b1207c33-cad5-4151-bb97-bec83ecb7ba0", "name": [ "REGULATION OF DNA-BINDING TRANSCRIPTION FACTOR ACTIVITY%GOBP%GO:0051090" ], "description": [ "regulation of DNA-binding transcription factor activity" ], "pvalue": 0.001, "gs_type": null, "gs_size": 331, "padj": 0.0167, "mcode_cluster_id": "Cluster 37", "NES": -1.4506, "genes": [ "ACOD1", "ADCY1", "ADCY8", "ADGRG3", "ADORA3", "AGER", "AGT", "AIM2", "AKT1", "ALK", "ANXA3", "ANXA4", "AR", "ARHGEF2", "ARHGEF5", "ARID5B", "ARRB1", "ARRB2", "ATF2", "BCL10", "BCL3", "BEX1", "BHLHE40", "BMP2", "BMP7", "BRMS1", "BTK", "BTRC", "BUD31", "C3orf33", "CACTIN", "CAMK1D", "CAMK2A", "CAPN3", "CARD11", "CARD14", "CARD16", "CARD8", "CARD9", "CCDC22", "CD200", "CD40", "CD40LG", "CDK5RAP3", "CDKN2A", "CEBPG", "CFLAR", "CHP1", "CHUK", "CIB1", "CLEC7A", "CLOCK", "CLU", "CMKLR1", "COMMD1", "COMMD6", "COMMD7", "COPS5", "CREBZF", "CRNN", "CRTC1", "CRTC2", "CTNNBIP1", "CYLD", "CYP1B1", "DAB2IP", "DAP", "DDIT3", "DDR2", "DDRGK1", "DHX33", "DHX9", "DVL2", "EDN1", "EGLN1", "EIF2AK2", "EIF2AK4", "ENPP1", "EOMES", "EP300", "EPHA5", "ERBIN", "ERC1", "ESR1", "ESR2", "FAF1", "FANK1", "FER", "FLNA", "FOXA1", "FOXA2", "FOXH1", "FOXJ1", "FOXP3", "FOXS1", "FZD1", "FZD2", "FZD4", "FZD6", "G3BP2", "GFI1", "GLIS2", "HAND1", "HAVCR2", "HCK", "HDAC2", "HDAC4", "HDAC5", "HES1", "HES6", "HEYL", "HIPK2", "HSF1", "HSPA1A", "HSPA1B", "ID1", "ID2", "ID3", "IKBKB", "IKBKE", "IKBKG", "IL10", "IL18", "IL18R1", "IL18RAP", "IL1B", "IL6", "INS", "IRAK1", "IRAK2", "IRAK3", "ITCH", "JUP", "KDM1A", "KDM5A", "KEAP1", "KIT", "KLF4", "LAMTOR5", "LGALS9", "LRP6", "LRRC14", "LTF", "MAD2L2", "MALT1", "MAP2K5", "MAP3K10", "MAP3K13", "MAVS", "MDFI", "MEN1", "MID2", "MTDH", "MTPN", "MTURN", "MYD88", "MYOCD", "NEUROD1", "NEUROD2", "NEUROG1", "NEUROG2", "NFKBIA", "NFKBIE", "NFKBIL1", "NHLH2", "NKX6-1", "NLRC3", "NLRC4", "NLRC5", "NLRP12", "NLRP2B", "NLRP3", "NOD1", "NOD2", "NODAL", "NPM1", "NR0B1", "NR0B2", "NTRK1", "NTS", "NUPR1", "NWD1", "OPRD1", "OTULIN", "PARK7", "PARP10", "PAXIP1", "PEX14", "PHB2", "PIDD1", "PIM1", "PKHD1", "PLA2G10", "PLA2G1B", "PLCG2", "PLPP3", "POU4F1", "POU4F2", "PPARG", "PPARGC1A", "PPIA", "PPP2CB", "PRDX3", "PRKCH", "PRKCI", "PRKCQ", "PRKCZ", "PRKD1", "PRKD2", "PRMT2", "PRNP", "PROX1", "PSMA6", "PSMD10", "PTCH1", "PTEN", "PTGIS", "PYCARD", "PYDC1", "PYDC2", "RAB7B", "RB1", "RBCK1", "RELA", "RGCC", "RHEBL1", "RIPK1", "RIPK2", "RIPK3", "RIPK4", "RNF2", "RNF220", "RNF25", "RNF31", "ROR1", "RPS3", "RPS6KA4", "RPS6KA5", "RTKN2", "RWDD3", "S100A12", "S100A8", "S100A9", "SETD6", "SFRP4", "SGK1", "SGK3", "SIK1", "SIRT1", "SIX6OS1", "SLCO3A1", "SMAD3", "SMARCA4", "SMARCB1", "SP100", "SPHK1", "SPI1", "SRF", "STAT3", "STING1", "STK3", "STK36", "SUFU", "SUMO1", "SYK", "SYT14P1", "TAF1", "TAF3", "TAX1BP1", "TBX6", "TBXT", "TCEAL7", "TCF3", "TCF7L2", "TERF2IP", "TFDP1", "TFDP3", "TFRC", "TIRAP", "TLR2", "TLR4", "TMIGD3", "TNF", "TNFAIP3", "TNFRSF11A", "TNFRSF4", "TNFSF11", "TNFSF18", "TNFSF4", "TP53BP1", "TRADD", "TRAF1", "TRAF2", "TRAF3", "TRAF5", "TRAF6", "TRIB1", "TRIM13", "TRIM14", "TRIM15", "TRIM21", "TRIM22", "TRIM25", "TRIM26", "TRIM27", "TRIM31", "TRIM32", "TRIM34", "TRIM37", "TRIM38", "TRIM40", "TRIM5", "TRIM52", "TRIM62", "TRIM8", "TSSK4", "UBE2N", "UBE2V1", "UFL1", "USP7", "WNT1", "WNT2", "WNT5A", "WWP2", "XCL1", "ZBTB7A", "ZC3H12A", "ZC4H2", "ZIC2", "ZNF431", "ZNF675" ] }, "position": { "x": 93.64412893408061, "y": 1844.565949032226, "id": "b1207c33-cad5-4151-bb97-bec83ecb7ba0", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "b8b63950-eb47-4fe5-b11f-25e87bb344a8", "name": [ "REGULATION OF INTERLEUKIN-12 PRODUCTION%GOBP%GO:0032655" ], "description": [ "regulation of interleukin-12 production" ], "pvalue": 0.0011, "gs_type": null, "gs_size": 50, "padj": 0.018, "mcode_cluster_id": null, "NES": -1.7882, "genes": [ "AGER", "C1QBP", "CCL19", "CCR7", "CD40LG", "CD47", "CLEC7A", "CMKLR1", "FOXP1", "HLA-B", "HLA-G", "HMGB1", "HSPD1", "IFNG", "IL10", "IL12B", "IL16", "IL17A", "IL23A", "IL23R", "IRAK3", "IRF5", "ISL1", "JAK3", "LAPTM5", "LGALS9", "LILRA5", "LILRB1", "LTB", "MAPK11", "MAPK14", "MAST2", "MDK", "MEFV", "PIBF1", "PLCB1", "PLCG2", "RIPK2", "SCIMP", "SLAMF1", "SYK", "THBS1", "TIGIT", "TIRAP", "TLR2", "TLR3", "TLR4", "TLR8", "TLR9", "TNFSF4" ] }, "position": { "x": 961.5, "y": 2272.9446642487483, "id": "b8b63950-eb47-4fe5-b11f-25e87bb344a8" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "b3da0d49-d6da-4944-a26a-074f3750dade", "name": [ "HIPPO MERLIN SIGNALING DYSREGULATION%WIKIPATHWAYS_20240410%WP4541%HOMO SAPIENS" ], "description": [ "Hippo Merlin signaling dysregulation" ], "pvalue": 0.0007, "gs_type": null, "gs_size": 86, "padj": 0.0115, "mcode_cluster_id": null, "NES": -1.7083, "genes": [ "AJUBA", "AMOT", "CCND1", "CD44", "CDH10", "CDH11", "CDH12", "CDH15", "CDH16", "CDH17", "CDH18", "CDH19", "CDH2", "CDH24", "CDH4", "CDH6", "CDH8", "CDH9", "CSF1R", "CTGF", "CTNNA1", "CTNNB1", "CUL4A", "DCAF1", "DDB1", "DKFZp451O0517", "DKFZp666O0110", "EGFR", "EPHA2", "FGFR1", "FGFR2", "FGFR3", "FGFR4", "FLT1", "FLT3", "FLT4", "FOXM1", "HEL-S-80p", "HRAS", "IGF1R", "INSR", "ITGA1", "ITGA2", "ITGA2B", "ITGA4", "ITGA6", "ITGAE", "ITGAM", "ITGAV", "ITGAX", "ITGB1", "ITGB3", "ITGB4", "ITGB5", "ITGB6", "ITGB7", "ITGB8", "KDR", "KIT", "KRAS", "LATS1", "LATS2", "LIN28B", "MET", "MYC", "NF2", "NGFR", "NRAS", "NTRK1", "NTRK2", "PAK1", "PAK4", "PAK6", "PDGFRA", "PLCB4", "PPP1CC", "PPP1R14A", "PRKACG", "PRKAR1A", "PRKAR1B", "RBX1", "TEAD2", "TEAD3", "TEAD4", "VGLL4", "WWTR1" ] }, "position": { "x": 3348.5, "y": 2195.9446642487483, "id": "b3da0d49-d6da-4944-a26a-074f3750dade" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "name": [ "UCH PROTEINASES%REACTOME%R-HSA-5689603.4" ], "description": [ "UCH proteinases" ], "pvalue": 0.0026, "gs_type": null, "gs_size": 95, "padj": 0.032, "mcode_cluster_id": "Cluster 1", "NES": -1.5721, "genes": [ "ACTB", "ACTL6A", "ACTR5", "ACTR8", "ADRM1", "ASXL1", "ASXL2", "BAP1", "BARD1", "FOXK1", "FOXK2", "H2AC1", "H2AC12", "H2AC14", "H2AC17", "H2AC19", "H2AC20", "H2AC21", "H2AC25", "H2AC7", "H2AC8", "HCFC1", "INO80", "INO80B", "INO80C", "INO80D", "INO80E", "KDM1B", "MBD5", "MBD6", "MCRS1", "NEDD8", "NFRKB", "OGT", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RPS27A", "RUVBL1", "SEM1", "SENP8", "SMAD7", "TFPT", "TGFB1", "TGFBR1", "TGFBR2", "UBA52", "UBB", "UBC", "UCHL1", "UCHL3", "UCHL5", "USP15", "YY1" ] }, "position": { "x": 508.7530592366869, "y": 806.674374140483, "id": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "name": [ "DNA REPLICATION PRE-INITIATION%REACTOME DATABASE ID RELEASE 81%69002" ], "description": [ "DNA Replication Pre-Initiation" ], "pvalue": 8.9781e-8, "gs_type": null, "gs_size": 127, "padj": 0.0000055559, "mcode_cluster_id": "Cluster 1", "NES": -2.056, "genes": [ "ANAPC1", "ANAPC10", "ANAPC11", "ANAPC15", "ANAPC16", "ANAPC2", "ANAPC4", "ANAPC5", "ANAPC7", "CDC16", "CDC23", "CDC26", "CDC27", "CDC45", "CDC6", "CDC7", "CDK2", "CDT1", "DBF4", "FZR1", "GMNN", "H2AB1", "H2AC14", "H2AC19", "H2AC20", "H2AC7", "H2AC8", "H2AJ", "H2AX", "H2AZ2", "H2BC1", "H2BC11", "H2BC12", "H2BC12L", "H2BC13", "H2BC14", "H2BC15", "H2BC17", "H2BC21", "H2BC26", "H2BC3", "H2BC5", "H2BC8", "H2BC9", "H3-3B", "H3C15", "H3C8", "H4C9", "KPNA1", "KPNA6", "KPNB1", "MCM10", "MCM2", "MCM3", "MCM4", "MCM5", "MCM6", "MCM7", "MCM8", "ORC1", "ORC2", "ORC3", "ORC4", "ORC5", "ORC6", "POLA1", "POLA2", "POLE", "POLE2", "POLE3", "POLE4", "PRIM1", "PRIM2", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMB1", "PSMB10", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSMF1", "RPA1", "RPA2", "RPA3", "RPA4", "RPS27A", "SEM1", "UBA52", "UBB", "UBC", "UBE2C", "UBE2D1", "UBE2E1", "UBE2S" ] }, "position": { "x": 488.0884891317204, "y": 776.9995863409637, "id": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "f3046fed-8d0a-4992-a2a5-74f967156d06", "name": [ "DIGESTIVE TRACT DEVELOPMENT%GOBP%GO:0048565" ], "description": [ "digestive tract development" ], "pvalue": 0.0012, "gs_type": null, "gs_size": 57, "padj": 0.0184, "mcode_cluster_id": "Cluster 34", "NES": -1.7313, "genes": [ "AGR2", "AHI1", "BBS7", "CCDC103", "CCDC39", "CCDC40", "CDX2", "CHD8", "CLMP", "COBL", "CXCL8", "DACT1", "DNAAF1", "EDNRB", "EPHB3", "FGFR2", "FOXE1", "FOXF1", "FOXL1", "GATA4", "GATA5", "GATA6", "GLI1", "GLI2", "GLI3", "ID2", "IL6ST", "KIT", "MEGF8", "MIXL1", "NIPBL", "NKX2-6", "NPHP3", "NPY", "PCSK5", "PDGFRA", "PERCC1", "PKD1", "PKDCC", "PYY", "RARB", "RARRES2", "RBPMS2", "RET", "SALL1", "SFRP5", "SIX2", "SMO", "SOX11", "SOX17", "SRC", "STRA6", "TCF21", "TGFB2", "TNF", "WNT11", "ZIC3" ] }, "position": { "x": 628.5449028286515, "y": 1864.0295832642191, "id": "f3046fed-8d0a-4992-a2a5-74f967156d06", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "c55475b4-dd25-463a-bb25-1dccccf40a02", "name": [ "ENDOGENOUS TLR SIGNALING%PATHWAY INTERACTION DATABASE NCI-NATURE CURATED DATA%ENDOGENOUS TLR SIGNALING" ], "description": [ "Endogenous TLR signaling" ], "pvalue": 0.0012, "gs_type": null, "gs_size": 25, "padj": 0.0186, "mcode_cluster_id": null, "NES": -1.823, "genes": [ "BGN", "CD14", "CHUK", "HMGB1", "HSPD1", "IKBKB", "IKBKG", "IRAK1", "IRAK2", "IRAK4", "LY96", "MYD88", "RHOA", "S100A8", "S100A9", "SAA2", "SFTPA1", "TICAM1", "TIRAP", "TLR1", "TLR2", "TLR3", "TLR4", "TLR6", "VCAN" ] }, "position": { "x": 1512.770924145319, "y": 15, "id": "c55475b4-dd25-463a-bb25-1dccccf40a02" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "1bdb2d2d-fe7b-4e46-b699-76d58b12344d", "name": [ "PURINE NUCLEOSIDE DIPHOSPHATE METABOLIC PROCESS%GOBP%GO:0009135" ], "description": [ "purine nucleoside diphosphate metabolic process" ], "pvalue": 0.0014, "gs_type": null, "gs_size": 39, "padj": 0.0207, "mcode_cluster_id": "Cluster 4", "NES": 1.8358, "genes": [ "ADPGK", "AK5", "ALDOA", "ALDOB", "ALDOC", "BAD", "ENO1", "ENO2", "ENO3", "ENO4", "ENTPD4", "FOXK1", "FOXK2", "GAPDH", "GAPDHS", "GCK", "GPI", "GUK1", "HK1", "HK2", "HK3", "HKDC1", "LDHA", "NUDT18", "PFKFB1", "PFKFB2", "PFKL", "PFKM", "PFKP", "PGAM1", "PGAM2", "PGAM4", "PGK1", "PGK2", "PGM1", "PKLR", "PKM", "TPI1", "UCP2" ] }, "position": { "x": 3575.860601756946, "y": 1618.806184144686, "id": "1bdb2d2d-fe7b-4e46-b699-76d58b12344d", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "623310f5-8d59-43b9-bdde-0d30cde60c99", "name": [ "LEUKOCYTE MIGRATION%GOBP%GO:0050900" ], "description": [ "leukocyte migration" ], "pvalue": 0.0005, "gs_type": null, "gs_size": 185, "padj": 0.0095, "mcode_cluster_id": "Cluster 7", "NES": -1.6217, "genes": [ "ADAM8", "ADD2", "ADGRE2", "AIMP1", "ALOX5", "ANXA1", "ASB2", "AZU1", "BSG", "CALCA", "CCL1", "CCL11", "CCL13", "CCL14", "CCL15", "CCL16", "CCL18", "CCL19", "CCL2", "CCL20", "CCL21", "CCL22", "CCL23", "CCL24", "CCL25", "CCL26", "CCL3", "CCL3L3", "CCL4", "CCL4L2", "CCL5", "CCL7", "CCL8", "CCR1", "CCR2", "CCR5", "CCR6", "CCR7", "CD177", "CD300H", "CD34", "CD99", "CH25H", "CHGA", "CKLF", "CRTAM", "CTSG", "CX3CL1", "CX3CR1", "CXADR", "CXCL1", "CXCL10", "CXCL11", "CXCL13", "CXCL16", "CXCL17", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "CXCR1", "CXCR2", "CXCR4", "CYP7B1", "DEFA1B", "DEFB104B", "EDN1", "EDN2", "EDN3", "EDNRB", "EMP2", "EPS8", "F11R", "F2RL1", "FCER1G", "FER", "FFAR2", "FLT1", "FOLR2", "FOXJ1", "FUT4", "FUT7", "FYN", "GAS6", "GATA3", "GBF1", "GCNT1", "GOLPH3", "GP2", "GPR15LG", "GPR183", "HCK", "HMGB1", "HSD3B7", "ICAM1", "IL10", "IL16", "IL6", "IL6R", "IRAK4", "ITGA3", "ITGA4", "ITGA6", "ITGA7", "ITGAL", "ITGB1", "ITGB2", "ITGB7", "JAM2", "JAM3", "JAML", "KIT", "LCK", "LGALS3", "LYN", "LYST", "MADCAM1", "MDK", "MSMP", "MSN", "MT-RNR2", "MYH9", "MYO1G", "NCKAP1L", "NEDD9", "NINJ1", "PDE4B", "PDGFB", "PECAM1", "PF4", "PF4V1", "PIK3CD", "PIK3CG", "PIKFYVE", "PIP5K1C", "PLA2G1B", "PODXL2", "PPBP", "PPIA", "PPIB", "PRTN3", "PTN", "PTPRO", "RET", "ROCK1", "RPS19", "S100A12", "S100A8", "S100A9", "S1PR1", "SAA1", "SBDS", "SCG2", "SELE", "SELL", "SELP", "SELPLG", "SFTPD", "SIRPA", "SLAMF8", "SLC12A2", "SOS1", "SPN", "SRC", "SRP54", "SYK", "TAFA4", "TBX21", "TGFB2", "TNF", "TNFRSF11A", "TNFSF11", "TREM1", "TRPM2", "TRPM4", "UMOD", "VCAM1", "WNK1", "XCL1", "XCL2", "XG", "YES1", "ZAP70" ] }, "position": { "x": 3358.45504498931, "y": 648.954563170912, "id": "623310f5-8d59-43b9-bdde-0d30cde60c99", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "3b58d9c9-4804-4257-abc8-a35cae44f9ec", "name": [ "PLASMA LIPOPROTEIN PARTICLE REMODELING%GOBP%GO:0034369" ], "description": [ "plasma lipoprotein particle remodeling" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 29, "padj": 0.0057, "mcode_cluster_id": "Cluster 21", "NES": -1.9326, "genes": [ "ABCA5", "ABCG1", "AGT", "AGTR1", "APOA1", "APOA2", "APOA4", "APOB", "APOC1", "APOC2", "APOC3", "APOE", "APOM", "CETP", "FURIN", "LCAT", "LIPC", "LIPG", "LPL", "MPO", "PCSK5", "PCSK6", "PLA2G10", "PLA2G2A", "PLA2G3", "PLA2G5", "PLA2G7", "PLTP", "SCARB1" ] }, "position": { "x": 2664.4135858267805, "y": 1321.3023697303233, "id": "3b58d9c9-4804-4257-abc8-a35cae44f9ec", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "088f5ff4-e639-46a5-8810-08c348438105", "name": [ "NEGATIVE REGULATION OF RESPONSE TO WOUNDING%GOBP%GO:1903035" ], "description": [ "negative regulation of response to wounding" ], "pvalue": 0.0022, "gs_type": null, "gs_size": 73, "padj": 0.0292, "mcode_cluster_id": null, "NES": -1.7131, "genes": [ "ADAMTS18", "ADTRP", "AJAP1", "ALOX12", "ALOX5", "APCS", "APOE", "APOH", "C1QTNF1", "CASK", "CD109", "CD9", "CEACAM1", "CERS2", "CLASP1", "CLASP2", "CLDN19", "CLDN3", "CPB2", "CRK", "EDN1", "EPHA4", "EPPK1", "EXTL3", "F11", "F12", "F2", "FGA", "FGB", "FGF2", "FGG", "FIGNL2", "GIT1", "GP1BA", "IL33", "INPP5F", "KIAA0319", "KLKB1", "KNG1", "KRT1", "MDK", "MMRN1", "MYOZ1", "NOS3", "PDGFA", "PDGFB", "PDGFRA", "PHLDB2", "PLAT", "PLAU", "PLG", "PRKCD", "PRKG1", "PROC", "PTEN", "PTPN6", "PTPRS", "REG3A", "RTN4R", "RTN4RL1", "SERPINB2", "SERPINE1", "SERPINE2", "SERPINF2", "SH2B3", "SIGLEC10", "SLC12A2", "STAT3", "TFPI", "THBD", "TMX1", "TNF", "VTN" ] }, "position": { "x": 114.5, "y": 2272.9446642487483, "id": "088f5ff4-e639-46a5-8810-08c348438105" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "4a0b61b9-4b5f-4854-888c-d24f120dc0e4", "name": [ "CHEMOTAXIS%GOBP%GO:0006935" ], "description": [ "chemotaxis" ], "pvalue": 0, "gs_type": null, "gs_size": 263, "padj": 0.0007, "mcode_cluster_id": "Cluster 7", "NES": -1.7472, "genes": [ "ABCC1", "ACKR2", "ACKR3", "ACKR4", "ADAM8", "ADGRE2", "AGTR1", "ALOX5", "ANGPT1", "ANXA1", "APOA1", "ARHGEF16", "ARRB2", "AZU1", "BCAR1", "BIN2", "BSG", "C5", "C5AR1", "CALCA", "CCL1", "CCL11", "CCL13", "CCL14", "CCL15", "CCL16", "CCL17", "CCL18", "CCL19", "CCL2", "CCL20", "CCL21", "CCL22", "CCL23", "CCL24", "CCL25", "CCL26", "CCL27", "CCL28", "CCL3", "CCL3L3", "CCL4", "CCL4L2", "CCL5", "CCL7", "CCL8", "CCN3", "CCR1", "CCR10", "CCR2", "CCR3", "CCR4", "CCR5", "CCR6", "CCR7", "CCR8", "CCR9", "CCRL2", "CD300H", "CH25H", "CHGA", "CKLF", "CMKLR1", "CORO1A", "CORO1B", "CTSG", "CX3CL1", "CX3CR1", "CXADR", "CXCL1", "CXCL10", "CXCL11", "CXCL12", "CXCL13", "CXCL14", "CXCL16", "CXCL17", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "CXCR1", "CXCR2", "CXCR3", "CXCR4", "CXCR5", "CXCR6", "CYP7B1", "DEFA1B", "DEFB1", "DEFB103B", "DEFB104B", "DEFB109B", "DEFB110", "DEFB114", "DEFB130A", "DEFB130B", "DEFB133", "DEFB4B", "DOCK4", "EDN1", "EDN2", "EDN3", "EDNRB", "EGR3", "ELMO2", "ENPP2", "EPHA2", "EPHA7", "EPHB1", "FCER1G", "FER", "FES", "FFAR2", "FGF10", "FGF2", "FGF7", "FLT1", "FOLR2", "FOSL1", "FPR2", "GAB1", "GAS6", "GBF1", "GPNMB", "GPR15LG", "GPR183", "HBEGF", "HGF", "HMGB1", "HMGB2", "HOXB9", "HRAS", "HSD3B7", "IL10", "IL16", "IL6", "IL6R", "ITGAV", "ITGB2", "ITGB3", "JAML", "KIT", "L1CAM", "LEF1", "LGALS3", "LGR6", "LPAR1", "LRTM1", "LRTM2", "LTB4R2", "LYST", "MACO1", "MAP2K1", "MAPK1", "MAPK14", "MDK", "MET", "MSMP", "MT-RNR2", "NCKAP1L", "NINJ1", "NR4A1", "NRP1", "NTN1", "OR10J5", "PARVA", "PDE4B", "PDGFA", "PDGFB", "PDGFRA", "PDGFRB", "PF4", "PF4V1", "PIK3CB", "PIK3CD", "PIK3CG", "PIKFYVE", "PIP5K1A", "PIP5K1C", "PLA2G1B", "PLAU", "PLAUR", "PLD1", "PLEKHG5", "PLP2", "PLXNB3", "PPBP", "PPIA", "PPIB", "PRKCD", "PRKCQ", "PROK2", "PTGDR2", "PTN", "PTPRJ", "PTPRO", "RAB13", "RAC1", "RAC2", "RAC3", "RALA", "RALBP1", "RHOA", "RHOG", "RNASE2", "RNASE3", "ROBO1", "RPS19", "RYK", "S100A12", "S100A8", "S100A9", "S1PR1", "SAA1", "SBDS", "SCG2", "SCRIB", "SEMA3A", "SEMA3B", "SEMA3C", "SEMA3D", "SEMA3E", "SEMA3F", "SEMA3G", "SEMA4A", "SEMA4B", "SEMA4C", "SEMA4D", "SEMA4F", "SEMA4G", "SEMA5A", "SEMA6A", "SEMA6B", "SEMA6C", "SEMA6D", "SEMA7A", "SFTPD", "SLAMF8", "SLC12A2", "SLIT1", "SLIT2", "SLIT3", "SPN", "SRP54", "SYK", "TAFA4", "TGFB2", "TNFRSF11A", "TNFSF11", "TREM1", "TRPM2", "TRPM4", "TSC2", "UNC5C", "VEGFA", "WNT5A", "WNT7B", "XCL1", "XCL2", "XCR1" ] }, "position": { "x": 3297.269243987053, "y": 716.2181295188952, "id": "4a0b61b9-4b5f-4854-888c-d24f120dc0e4", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "b1a1c2a0-8eec-4de7-af7b-11db36d4c3d6", "name": [ "REGULATION OF INTERFERON-BETA PRODUCTION%GOBP%GO:0032648" ], "description": [ "regulation of interferon-beta production" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 51, "padj": 0.0056, "mcode_cluster_id": "Cluster 22", "NES": -1.8639, "genes": [ "ARRDC4", "CACTIN", "DDX3X", "DHX9", "FLOT1", "HSP90AA1", "IFIH1", "IRF1", "IRF3", "IRF5", "IRF7", "ISG15", "LILRB1", "MAVS", "MORC3", "NLRC3", "OAS1", "OAS2", "OAS3", "POLR3A", "POLR3B", "POLR3C", "POLR3D", "POLR3F", "POLR3G", "PPM1B", "PTPN11", "PTPRS", "PYCARD", "REL", "RELB", "RIGI", "RIOK3", "RIPK2", "RNF135", "RNF216", "SIRPA", "STING1", "TBK1", "TIRAP", "TLR2", "TLR3", "TLR4", "TLR7", "TLR8", "TLR9", "TOMM70", "TRAF3", "TRIM56", "TRIM65", "YY1" ] }, "position": { "x": 2189.9340720768078, "y": 1295.6134808766, "id": "b1a1c2a0-8eec-4de7-af7b-11db36d4c3d6", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "e7868b74-6295-46aa-9b02-5f2686cebe46", "name": [ "REGULATION OF LEUKOCYTE DIFFERENTIATION%GOBP%GO:1902105" ], "description": [ "regulation of leukocyte differentiation" ], "pvalue": 0.0048, "gs_type": null, "gs_size": 233, "padj": 0.049, "mcode_cluster_id": null, "NES": -1.4493, "genes": [ "ABL1", "ACIN1", "ACTB", "ACTL6A", "ACTL6B", "ADAM8", "ADIPOQ", "AGER", "AMBRA1", "ANXA1", "APCS", "ARID1A", "ARID1B", "ARID2", "AXL", "BATF", "BCL6", "BGLAP", "BMP4", "BRD2", "BRD4", "BRD7", "BTK", "C1QC", "CAMK4", "CARTPT", "CASP8", "CBFB", "CCL19", "CCL3", "CCR1", "CCR2", "CD2", "CD27", "CD4", "CD46", "CD74", "CD80", "CD86", "CDK6", "CEACAM1", "CEBPB", "CLPTM1", "CR1", "CRTAM", "CSF1", "CTLA4", "CTNNBIP1", "DCSTAMP", "DDRGK1", "DUSP10", "EEIG1", "EP300", "ERFE", "EVI2B", "FADD", "FANCA", "FBN1", "FBXW7", "FCGR2B", "FCRL3", "FES", "FOXJ1", "FOXO3", "FOXP1", "FOXP3", "FSTL3", "GAS6", "GATA3", "GLI2", "GLI3", "GPR137", "GPR137B", "GPR55", "HAX1", "HCLS1", "HLA-B", "HLA-DRA", "HLA-DRB1", "HLA-G", "HMGB1", "HOXA7", "HSF1", "ID2", "IFNA2", "IFNB1", "IFNG", "IFNL1", "IHH", "IKZF3", "IL10", "IL12B", "IL12RB1", "IL17A", "IL18", "IL2", "IL23A", "IL23R", "IL27", "IL34", "IL36B", "IL4", "IL4I1", "IL7", "INHA", "INHBA", "INPP5D", "IRF1", "IRF4", "IRF7", "JAK3", "JUNB", "KAT2A", "KAT5", "KLHL25", "LAG3", "LEF1", "LGALS1", "LGALS3", "LGALS9", "LIF", "LILRB1", "LILRB2", "LILRB3", "LILRB4", "LOXL3", "LRRC17", "LTF", "MAFB", "MALT1", "MDK", "METTL3", "MMP14", "MTOR", "MYC", "NCKAP1L", "NEDD9", "NFKBID", "NFKBIZ", "NKAP", "NLRP3", "OCSTAMP", "OPA1", "PBRM1", "PCK1", "PF4", "PHF10", "PNP", "POU4F1", "POU4F2", "PPP2R3C", "PPP3CA", "PRDM1", "PRELID1", "PRKCA", "PRKCZ", "PRKDC", "PRXL2A", "PSG9", "PTPN2", "QKI", "RARA", "RC3H1", "RC3H2", "RHOH", "RIPK1", "RPTOR", "RUNX1", "RUNX3", "SART1", "SFRP1", "SH3RF1", "SHH", "SLAMF8", "SLC4A2", "SMAD7", "SMARCA2", "SMARCA4", "SMARCB1", "SMARCC1", "SMARCC2", "SMARCD1", "SMARCD2", "SMARCD3", "SMARCE1", "SOCS1", "SOCS5", "SOD1", "SOX12", "SOX4", "SPI1", "SPINK5", "SYK", "TBX21", "TCF7", "TCTA", "TESC", "TESPA1", "TGFB1", "TGFBR2", "TLR3", "TLR4", "TLR9", "TMEM131L", "TMEM176B", "TMEM178A", "TMEM64", "TNF", "TNFAIP6", "TNFRSF11A", "TNFRSF11B", "TNFSF11", "TNFSF4", "TNFSF9", "TOX", "TRAF6", "TYROBP", "UBASH3B", "VNN1", "VSIR", "XBP1", "XRCC6", "ZAP70", "ZBTB1", "ZBTB7B", "ZC3H12A", "ZC3H8", "ZFP36L1", "ZFP36L2", "ZFPM1", "ZMIZ1", "ZNF675", "ZNF683" ] }, "position": { "x": 2480.756911018794, "y": 296.146053276309, "id": "e7868b74-6295-46aa-9b02-5f2686cebe46" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "2618dd66-76a4-4e39-88d8-08bcb65b75f1", "name": [ "ESTABLISHMENT OF PROTEIN LOCALIZATION TO VACUOLE%GOBP%GO:0072666" ], "description": [ "establishment of protein localization to vacuole" ], "pvalue": 0.0026, "gs_type": null, "gs_size": 55, "padj": 0.0315, "mcode_cluster_id": "Cluster 23", "NES": 1.7137, "genes": [ "AP3D1", "AP3M1", "AP4M1", "ATG14", "BECN1", "CACNG2", "CACNG3", "CACNG4", "CACNG5", "CACNG7", "CACNG8", "CLU", "GCC2", "GGA3", "GNPTAB", "GNPTG", "HGS", "IRGM", "LAMP2", "LAPTM5", "M6PR", "MVB12A", "NAGPA", "NCOA4", "NEDD4", "PIK3C3", "PIK3R4", "PTPN23", "PXK", "RAB7A", "SCARB2", "SMURF1", "SNF8", "SNX16", "SORL1", "SQSTM1", "STAM", "STAM2", "TSG101", "UBAP1", "VPS13A", "VPS13C", "VPS13D", "VPS25", "VPS28", "VPS36", "VPS37A", "VPS37B", "VPS37C", "VPS37D", "VPS41", "VPS4A", "VPS8", "WASH3P", "ZFYVE16" ] }, "position": { "x": 3817.4067387118534, "y": 1879.1248996291504, "id": "2618dd66-76a4-4e39-88d8-08bcb65b75f1", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "bbc65e8d-c0b7-4320-a1bf-7955afad7f14", "name": [ "HETEROTRIMERIC G-PROTEIN SIGNALING PATHWAY-GQ ALPHA AND GO ALPHA MEDIATED PATHWAY%PANTHER PATHWAY%P00027" ], "description": [ "Heterotrimeric G-protein signaling pathway-Gq alpha and Go alpha mediated pathway" ], "pvalue": 0.0047, "gs_type": null, "gs_size": 88, "padj": 0.0486, "mcode_cluster_id": null, "NES": 1.6371, "genes": [ "ADORA1", "ADORA2A", "ADORA2B", "ADORA3", "ARHGEF1", "BDKRB1", "BDKRB2", "CACNA1A", "CACNA1B", "CACNA1E", "CHRM1", "CHRM2", "CHRM3", "CHRM4", "CHRM5", "CLTA", "CLTB", "CLTC", "CLTCL1", "DNAJC27", "DRD1", "DRD2", "DRD4", "DRD5", "GARNL3", "GNA11", "GNA14", "GNA15", "GNAO1", "GNAQ", "GNB1", "GNB2", "GNB3", "GNB4", "GNG10", "GNG12", "GNG13", "GNG2", "GNG3", "GNG4", "GNG5", "GNG7", "GNG8", "GNGT1", "GNGT2", "GNRHR", "GPR45", "GRM1", "GRM2", "GRM3", "GRM4", "GRM5", "GRM6", "GRM7", "GRM8", "ITPR1", "ITPR2", "ITPR3", "OPRD1", "OPRK1", "OPRL1", "OPRM1", "PLCB1", "PLCB2", "PLCB3", "PLCB4", "PRKCA", "PRKCB", "PRKCD", "PRKCE", "PRKCG", "PRKCH", "PRKCI", "PRKCQ", "PRKCZ", "RAP1A", "RAP1B", "RAP1GAP", "RASGRP1", "RASGRP2", "RASGRP3", "RASGRP4", "RHOA", "SSTR1", "SSTR2", "SSTR3", "SSTR4", "SSTR5" ] }, "position": { "x": 4072.539072651805, "y": 2195.9446642487483, "id": "bbc65e8d-c0b7-4320-a1bf-7955afad7f14" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "a6809a94-176c-4537-ba93-16b38aad9dea", "name": [ "PROTEIN SYNTHESIS: CYSTEINE%PATHWHIZ%PW112918" ], "description": [ "Protein Synthesis: Cysteine" ], "pvalue": 7.3744e-18, "gs_type": null, "gs_size": 80, "padj": 1.8806e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.8127, "genes": [ "CARS1", "FAU", "RACK1", "RPL10", "RPL10A", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "UBA52" ] }, "position": { "x": 935.8559563056641, "y": 645.480358708711, "id": "a6809a94-176c-4537-ba93-16b38aad9dea", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "2bdd5c1c-34ee-4c58-a47e-260e4d1ebd1d", "name": [ "REGULATION OF NON-CANONICAL NF-KAPPAB SIGNAL TRANSDUCTION%GOBP%GO:1901222" ], "description": [ "regulation of non-canonical NF-kappaB signal transduction" ], "pvalue": 0.0013, "gs_type": null, "gs_size": 77, "padj": 0.0196, "mcode_cluster_id": null, "NES": -1.7014, "genes": [ "ACTN4", "ADGRG3", "ADIPOR1", "ADISSP", "AGER", "APP", "BCL3", "BMP7", "C1QTNF3", "C1QTNF4", "CCL19", "CCN3", "CD27", "CD86", "CPNE1", "CYLD", "DDX3X", "DLG1", "EGFR", "EIF2AK2", "EZR", "HDAC7", "IFI35", "IL12B", "IL1B", "IL23A", "LAPTM5", "LGALS9", "LRRC19", "MAP3K7", "MKRN2", "NLRC3", "NLRP12", "NLRP2", "NLRP3", "NMI", "NOD1", "NOD2", "NR3C2", "PDCD4", "PHB1", "PHB2", "PPM1A", "PPM1B", "PTP4A3", "PTPN22", "PYCARD", "PYDC2", "RASSF2", "RELA", "RHOA", "RPS3", "RTKN2", "SASH1", "SPHK1", "SPI1", "TCIM", "TERF2IP", "TLR2", "TLR3", "TLR4", "TLR7", "TLR9", "TNF", "TNFSF14", "TRIM15", "TRIM26", "TRIM40", "TRIM44", "TRIM55", "TRIM56", "TRIM6", "TRIM60", "TRIP6", "UACA", "VCP", "ZC3H12A" ] }, "position": { "x": 2265.7944159445105, "y": 1801.8587965586644, "id": "2bdd5c1c-34ee-4c58-a47e-260e4d1ebd1d" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "7ebb3165-c992-459a-8ea3-6d05d0afb24a", "name": [ "PROTEIN-LIPID COMPLEX REMODELING%GOBP%GO:0034368" ], "description": [ "protein-lipid complex remodeling" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 29, "padj": 0.0057, "mcode_cluster_id": "Cluster 21", "NES": -1.9326, "genes": [ "ABCA5", "ABCG1", "AGT", "AGTR1", "APOA1", "APOA2", "APOA4", "APOB", "APOC1", "APOC2", "APOC3", "APOE", "APOM", "CETP", "FURIN", "LCAT", "LIPC", "LIPG", "LPL", "MPO", "PCSK5", "PCSK6", "PLA2G10", "PLA2G2A", "PLA2G3", "PLA2G5", "PLA2G7", "PLTP", "SCARB1" ] }, "position": { "x": 2531.7210230438536, "y": 1283.890584810879, "id": "7ebb3165-c992-459a-8ea3-6d05d0afb24a", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "07612ff0-0858-4071-bec9-e5e61ab40687", "name": [ "N-GLYCAN ANTENNAE ELONGATION IN THE MEDIAL TRANS-GOLGI%REACTOME DATABASE ID RELEASE 81%975576" ], "description": [ "N-glycan antennae elongation in the medial trans-Golgi" ], "pvalue": 0.0028, "gs_type": null, "gs_size": 26, "padj": 0.0338, "mcode_cluster_id": null, "NES": -1.8111, "genes": [ "B4GALT1", "B4GALT2", "B4GALT3", "B4GALT4", "B4GALT5", "B4GALT6", "CGA", "CHST10", "CHST8", "FUCA1", "FUT3", "FUT8", "LHB", "MAN2A1", "MAN2A2", "MGAT2", "MGAT3", "MGAT4A", "MGAT4B", "MGAT4C", "MGAT5", "ST3GAL4", "ST6GAL1", "ST8SIA2", "ST8SIA3", "ST8SIA6" ] }, "position": { "x": 1115.5, "y": 2272.9446642487483, "id": "07612ff0-0858-4071-bec9-e5e61ab40687" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "b418104c-b2c5-4aac-b268-9ee80bb42582", "name": [ "IMMUNE RESPONSE-ACTIVATING CELL SURFACE RECEPTOR SIGNALING PATHWAY%GOBP%GO:0002429" ], "description": [ "immune response-activating cell surface receptor signaling pathway" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 222, "padj": 0.002, "mcode_cluster_id": "Cluster 28", "NES": -1.7052, "genes": [ "ABL1", "BAG6", "BANK1", "BAX", "BCAR1", "BCL10", "BCL2", "BLK", "BLNK", "BMX", "BTK", "BTN1A1", "BTN2A1", "BTN2A2", "BTN2A3P", "BTN3A1", "BTN3A2", "BTN3A3", "BTNL10P", "BTNL2", "BTNL3", "BTNL8", "BTNL9", "C3AR1", "C5AR1", "C5AR2", "CD14", "CD19", "CD247", "CD276", "CD28", "CD38", "CD3D", "CD3E", "CD3G", "CD79A", "CD79B", "CD8A", "CD8B", "CHUK", "CLEC6A", "CLEC7A", "CMKLR1", "COLEC10", "COLEC11", "CR1", "CREBBP", "CSK", "CTLA4", "DENND1B", "ECSIT", "EIF2B1", "EIF2B2", "EIF2B3", "EIF2B4", "EIF2B5", "EP300", "ERMAP", "FCER1G", "FCHO1", "FCN1", "FCN2", "FCN3", "FFAR2", "FGR", "FPR1", "FPR2", "FPR3", "FYB1", "FYB2", "FYN", "GATA3", "GPLD1", "GPR32", "GPR32P1", "GPR33", "HCK", "HHLA2", "HLA-A", "HLA-DPB1", "HLA-DQB1", "HLA-DRB1", "HLA-DRB3", "ICOSLG", "IGHA1", "IGHA2", "IGHD", "IGHE", "IGHG1", "IGHG2", "IGHG3", "IGHG4", "IGHM", "IGKC", "IGLC1", "IGLC3", "IGLC6", "IGLC7", "IKBKB", "IKBKG", "INPP5D", "IRAK1", "IRAK2", "IRAK4", "IRF3", "ITGAM", "ITK", "KHDRBS1", "KIR2DS2", "KLRC1", "KLRC2", "KLRC3", "KLRC4", "KLRD1", "LAT", "LAT2", "LAX1", "LBP", "LCK", "LCP2", "LGALS9", "LILRA2", "LIME1", "LIMK1", "LY96", "LYN", "MALT1", "MAP3K7", "MBL2", "MEF2C", "MICB", "MNDA", "MOG", "MS4A1", "MYD88", "MYO1G", "NCKAP1L", "NCR3", "NFAM1", "NFATC2", "NFKBIA", "NFKBID", "NFKBIZ", "NMI", "NR4A3", "OAS1", "PAK1", "PAK2", "PAK3", "PDE4B", "PDE4D", "PIK3AP1", "PIK3CA", "PIK3CD", "PLA2G6", "PLCG1", "PLCG2", "PLD2", "PLEKHA1", "PLPP4", "PRAM1", "PRKCB", "PRKCD", "PRKCE", "PRKD2", "PTK2", "PTPN22", "PTPRC", "PTPRJ", "RAB11FIP2", "RBCK1", "RC3H1", "RC3H2", "RELA", "RFTN1", "RIPK2", "RNF31", "S100A14", "SCIMP", "SH2B2", "SKAP1", "SLA2", "SLC39A6", "SPG21", "SPPL3", "SRC", "STOML2", "SYK", "TBK1", "TEC", "THEMIS", "THEMIS2", "THY1", "TICAM1", "TICAM2", "TIRAP", "TLR2", "TLR4", "TLR5", "TNFRSF21", "TNIP2", "TNIP3", "TRAC", "TRAF3", "TRAF6", "TRBC1", "TRBC2", "TRDC", "TRGC1", "TRGC2", "TRIL", "TXK", "TYROBP", "UBE2N", "VAV1", "VAV2", "VAV3", "VTCN1", "WNK1", "YES1", "ZAP70", "ZC3H12A" ] }, "position": { "x": 1683.599657450397, "y": 613.1119163561757, "id": "b418104c-b2c5-4aac-b268-9ee80bb42582", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "name": [ "PROTEIN SYNTHESIS: METHIONINE%PATHWHIZ%PW112933" ], "description": [ "Protein Synthesis: Methionine" ], "pvalue": 9.9159e-17, "gs_type": null, "gs_size": 80, "padj": 1.479e-14, "mcode_cluster_id": "Cluster 2", "NES": 2.7673, "genes": [ "FAU", "MARS1", "RACK1", "RPL10", "RPL10A", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "UBA52" ] }, "position": { "x": 925.4132880486846, "y": 536.7508854764313, "id": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "7cee8a23-c588-4d54-94eb-2f94a787837b", "name": [ "ECTODERM DIFFERENTIATION%WIKIPATHWAYS_20240410%WP2858%HOMO SAPIENS" ], "description": [ "Ectoderm differentiation" ], "pvalue": 0.0014, "gs_type": null, "gs_size": 118, "padj": 0.0207, "mcode_cluster_id": null, "NES": -1.6206, "genes": [ "AHI-1", "ARHGAP10", "ARHGAP15", "ARHGDIG", "ARHGEF9", "ARX", "ASTN1", "BAZ1A", "BCAS3", "BCOR", "BMP4", "BMPR1A", "BOC", "C1GALT1", "CCL2", "CDH6", "CDH8", "CDON", "CELSR2", "CLDN11", "CLVS1", "CTBP1", "CTNNA2", "CTNNB1", "CTNND2", "DKFZp566E044", "DKFZp686D0714", "DMD", "ELOVL2", "ELOVL4", "FGFR2", "FHL2", "FLJ00166", "FOXA2", "FOXL1", "FYN", "FZD4", "FZD5", "FZD8", "GAS2L1", "GATA6", "GLI3", "GREB1", "H2BC9", "HDAC10", "HESX1", "HMGB2", "JUP", "KCNK10", "KIFC3", "KRT6A", "LDB2", "LHX1", "LY6E", "MAFB", "MKS1", "MYC", "MYORG", "MZF1", "NF2", "NFATC1", "NLGN1", "NLK", "NR1C2", "NR2F2", "OGT", "PAN2", "PAX3", "PAX6", "PDE7A", "PIM1", "PLXNA2", "POU2F2", "PP2150", "PPFIBP2", "PRKAG2", "PTPN13", "PTPRB", "RAB8B", "RGMA", "RHPN1", "RIT1", "ROR2", "RRBP1", "RUTBC3", "SCHIP1", "SDCBP", "SERPINB6", "SHH", "SIX6", "SKIL", "SMAD4", "SMURF1", "SNCA", "SOCS2", "SORCS1", "SOX2", "SPRY2", "ST8SIA4", "STC1", "TBL1X", "TCF3", "TCF7L1", "TFAP2A", "TFAP2C", "TNFRSF11B", "TNLG7C", "TOX3", "TRPM2", "UBTF", "VAX2", "WDR44", "WNT1", "ZBTB16", "ZBTB2", "ZBTB7B", "ZFHX4", "ZNF219" ] }, "position": { "x": 1885.5, "y": 2195.9446642487483, "id": "7cee8a23-c588-4d54-94eb-2f94a787837b" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "4c4ef972-57bf-4c6b-9ce7-b594913898aa", "name": [ "GLAND DEVELOPMENT%GOBP%GO:0048732" ], "description": [ "gland development" ], "pvalue": 0.0013, "gs_type": null, "gs_size": 126, "padj": 0.0202, "mcode_cluster_id": null, "NES": -1.6192, "genes": [ "AIRE", "AKT1", "AKT2", "ALOX15B", "APLN", "ARHGAP35", "ARID5B", "AURKA", "BMP2", "CAV1", "CCDC39", "CCDC40", "CDK5RAP3", "CEBPA", "CEBPB", "CEBPG", "CITED2", "COBL", "CRIP1", "CRIPTO", "CSF1R", "CSN2", "CSN3", "DKK3", "DNAAF1", "DRD2", "E2F7", "E2F8", "ELF3", "EPHA2", "EPHB3", "ERBB4", "EZR", "FADD", "FGF10", "FGFR2", "FGL1", "FOXB1", "FOXE1", "FOXI3", "GATA6", "GCM2", "GFER", "GHRH", "GLI2", "GPAT4", "HAND2", "HES1", "HESX1", "HOXD3", "ID2", "IGSF3", "IL6", "INSM1", "IRF6", "JAK2", "LATS1", "LSR", "MDK", "MET", "MSN", "NF1", "NHERF1", "NKX2-1", "NKX2-5", "NKX2-8", "NKX3-1", "NOTCH4", "NPHP3", "NR0B1", "NRG1", "OXTR", "PAX8", "PCK1", "PCK2", "PCSK9", "PERP", "PHF2", "PITX2", "PKD2", "PRKCSH", "PRL", "PROX1", "PSAP", "PSAPL1", "PTF1A", "RIPK3", "RPS6KA1", "SALL1", "SCRIB", "SHH", "SIX1", "SIX3", "SOD1", "SOX2", "SOX3", "SOX9", "SRP54", "STRA6", "TBX1", "TBX3", "TCF21", "TG", "TGFB1", "TGFB2", "TGFB3", "TGFBR1", "TGFBR3", "TNFRSF11A", "UGT1A10", "UGT1A7", "UGT1A8", "UGT1A9", "VEGFA", "WNT10A", "WNT11", "WNT2", "WNT3", "WNT4", "WNT7B", "WT1", "XBP1", "ZBTB1", "ZBTB7B", "ZIC3", "ZNF703" ] }, "position": { "x": 1808.5, "y": 2195.9446642487483, "id": "4c4ef972-57bf-4c6b-9ce7-b594913898aa" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "f718538b-8c4e-4d0c-8505-68da9ee2a319", "name": [ "REGULATION OF TUMOR NECROSIS FACTOR SUPERFAMILY CYTOKINE PRODUCTION%GOBP%GO:1903555" ], "description": [ "regulation of tumor necrosis factor superfamily cytokine production" ], "pvalue": 0.0006, "gs_type": null, "gs_size": 139, "padj": 0.0098, "mcode_cluster_id": "Cluster 24", "NES": -1.6925, "genes": [ "ADAM17", "ADAM8", "ADIPOQ", "AGER", "APP", "ARFGEF2", "ARG2", "ARHGEF2", "AZU1", "BCL10", "BPI", "C1QTNF4", "C5AR2", "CACTIN", "CCL19", "CCL3", "CCR2", "CD14", "CD2", "CD274", "CD33", "CD47", "CD84", "CD86", "CHRNA7", "CIDEA", "CLEC4A", "CLEC7A", "CLU", "CX3CL1", "CX3CR1", "CYBA", "DDT", "DEFB114", "DHX9", "DICER1", "ELF4", "EPHB2", "FADD", "FCGR2A", "FCGR2B", "FCGR2C", "FCGR3A", "FOXP1", "FRMD8", "FXR1", "FZD5", "GAS6", "GHRL", "GHSR", "GSTP1", "HAVCR2", "HLA-E", "HMGB1", "HSPB1", "IFIH1", "IFNG", "IFNGR1", "IGF1", "IL10", "IL12B", "IL17A", "IL17F", "IL1A", "IL23A", "IL33", "IL37", "IL4", "IL6", "ILRUN", "IRAK3", "ISL1", "JAK2", "LBP", "LGALS9", "LILRA2", "LILRA4", "LILRA5", "LILRB1", "LILRB4", "LPL", "LTF", "LY96", "MAPKAPK2", "MAVS", "MC1R", "MIF", "MMP8", "NFKBIL1", "NLRC3", "NOD2", "NR1H4", "OAS1", "OAS2", "OAS3", "ORM1", "ORM2", "PARK7", "PF4", "PLCG2", "POMC", "PSEN1", "PTPN11", "PTPN22", "PTPN6", "PTPRC", "PTPRJ", "PYCARD", "RARA", "RASGRP1", "RIGI", "RIPK1", "SELENOS", "SETD4", "SIRPA", "SLAMF1", "SPHK2", "SPN", "STAT3", "SYK", "SYT11", "TGFB1", "THBS1", "TIRAP", "TLR1", "TLR2", "TLR3", "TLR4", "TLR9", "TMEM106A", "TNFAIP3", "TNFRSF8", "TRIM27", "TWIST1", "TYROBP", "VSIR", "WNT5A", "ZC3H12A", "ZFP36" ] }, "position": { "x": 1846.9894185481141, "y": 1316.0326286044694, "id": "f718538b-8c4e-4d0c-8505-68da9ee2a319", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "758af837-d470-4024-9c26-602ea1a3cf9d", "name": [ "POSITIVE REGULATION OF TYROSINE PHOSPHORYLATION OF STAT PROTEIN%GOBP%GO:0042531" ], "description": [ "positive regulation of tyrosine phosphorylation of STAT protein" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 52, "padj": 0.0031, "mcode_cluster_id": null, "NES": -1.924, "genes": [ "ARL2BP", "CCL5", "CD40", "CLCF1", "CNTF", "CRLF1", "CSF1R", "CSF2", "CSH1", "CSH2", "CSHL1", "CTF1", "EPO", "ERBB4", "FGFR3", "FLT3", "GH1", "GH2", "GHR", "HES1", "HES5", "IFNG", "IFNL1", "IGF1", "IL12A", "IL12B", "IL15", "IL18", "IL2", "IL20", "IL21", "IL23A", "IL23R", "IL3", "IL31RA", "IL4", "IL6", "IL6R", "IL6ST", "JAK2", "KIT", "LIF", "OSM", "PARP14", "PARP9", "PIBF1", "PTK6", "TNF", "TNFRSF18", "TNFRSF1A", "TNFSF18", "TSLP" ] }, "position": { "x": 42.44018732784161, "y": 1981.9975082806777, "id": "758af837-d470-4024-9c26-602ea1a3cf9d" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "0f7b01fe-5b51-40e9-acce-a2292ccc2a52", "name": [ "DNA DAMAGE BYPASS%REACTOME%R-HSA-73893.3" ], "description": [ "DNA Damage Bypass" ], "pvalue": 0.0022, "gs_type": null, "gs_size": 48, "padj": 0.0295, "mcode_cluster_id": null, "NES": -1.6523, "genes": [ "CUL4A", "CUL4B", "DDB1", "DTL", "ISG15", "MAD2L2", "NPLOC4", "PCLAF", "PCNA", "POLD1", "POLD2", "POLD3", "POLD4", "POLE", "POLE2", "POLE3", "POLE4", "POLH", "POLI", "POLK", "RAD18", "RBX1", "RCHY1", "REV1", "REV3L", "RFC1", "RFC2", "RFC3", "RFC4", "RFC5", "RPA1", "RPA2", "RPA3", "RPS27A", "SPRTN", "TRIM25", "UBA52", "UBA7", "UBB", "UBC", "UBE2B", "UBE2L6", "UFD1", "USP1", "USP10", "USP43", "VCP", "WDR48" ] }, "position": { "x": 2335.7944159445105, "y": 1831.3735710162362, "id": "0f7b01fe-5b51-40e9-acce-a2292ccc2a52" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "27a9f866-bb13-4a50-ba51-615e2b2c6b56", "name": [ "REGULATION OF BIOLOGICAL PROCESS INVOLVED IN SYMBIOTIC INTERACTION%GOBP%GO:0043903" ], "description": [ "regulation of biological process involved in symbiotic interaction" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 58, "padj": 0.0014, "mcode_cluster_id": "Cluster 30", "NES": -1.9793, "genes": [ "APCS", "ARG1", "BPIFA1", "CAV1", "CD4", "CD74", "CH25H", "CIITA", "CXCL8", "EXOC2", "EXOC7", "F2RL1", "FCN1", "FCN3", "FUCA2", "FURIN", "GSN", "HLA-DRB1", "HMGB1", "HS3ST5", "IFITM1", "IFITM2", "IFITM3", "IFNA2", "ITGAV", "KRT6A", "LGALS1", "LGALS9", "LRRC15", "LTF", "LY6E", "MID2", "NECTIN2", "P4HB", "PPARA", "PTX3", "RFPL1", "RFPL2", "RFPL3", "RFPL4A", "RFPL4AL1", "SMPD1", "SNX3", "TMPRSS2", "TMPRSS4", "TRIM11", "TRIM21", "TRIM22", "TRIM25", "TRIM26", "TRIM31", "TRIM34", "TRIM38", "TRIM5", "TRIM58", "TRIM6", "TRIM62", "TRIM68" ] }, "position": { "x": 1184.350536061796, "y": 1542.0525998044059, "id": "27a9f866-bb13-4a50-ba51-615e2b2c6b56", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "461f3447-3b67-49c7-a062-dbccf20a8c20", "name": [ "POSITIVE REGULATION OF T CELL MEDIATED IMMUNITY%GOBP%GO:0002711" ], "description": [ "positive regulation of T cell mediated immunity" ], "pvalue": 0.0042, "gs_type": null, "gs_size": 61, "padj": 0.0447, "mcode_cluster_id": "Cluster 5", "NES": -1.6607, "genes": [ "B2M", "CD1A", "CD1B", "CD1C", "CD1D", "CD1E", "CD55", "CD81", "CYRIB", "DENND1B", "FADD", "FBXO38", "FZD5", "HFE", "HLA-A", "HLA-B", "HLA-C", "HLA-DRA", "HLA-DRB1", "HLA-DRB3", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "HSPD1", "IL12A", "IL12B", "IL12RB1", "IL18", "IL18R1", "IL1B", "IL1R1", "IL23A", "IL23R", "IL4", "IL6", "MALT1", "MAP3K7", "MICA", "MICB", "MR1", "NECTIN2", "NLRP3", "PRKCZ", "PVR", "RAET1E", "RAET1G", "RAET1L", "RSAD2", "SLC22A13", "STX7", "TBX21", "TNFSF4", "TRAF2", "TRAF6", "ULBP1", "ULBP2", "ULBP3", "XCL1", "ZBTB1", "ZP3" ] }, "position": { "x": 2109.7576404573038, "y": 889.608714392212, "id": "461f3447-3b67-49c7-a062-dbccf20a8c20", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "67655508-8724-4bec-ae04-0a0ccc497030", "name": [ "POSITIVE REGULATION OF LEUKOCYTE MEDIATED IMMUNITY%GOBP%GO:0002705" ], "description": [ "positive regulation of leukocyte mediated immunity" ], "pvalue": 0.0036, "gs_type": null, "gs_size": 114, "padj": 0.041, "mcode_cluster_id": "Cluster 5", "NES": -1.5691, "genes": [ "AP1G1", "ARG1", "B2M", "C17orf99", "CADM1", "CAMK4", "CD160", "CD177", "CD1A", "CD1B", "CD1C", "CD1D", "CD1E", "CD226", "CD55", "CD81", "CLCF1", "CLEC7A", "CRTAM", "CYRIB", "DENND1B", "F2RL1", "FADD", "FBXO38", "FZD5", "HFE", "HLA-A", "HLA-B", "HLA-C", "HLA-DRA", "HLA-DRB1", "HLA-DRB3", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "HMCES", "HSPD1", "IL12A", "IL12B", "IL12RB1", "IL18", "IL18R1", "IL1B", "IL1R1", "IL21", "IL23A", "IL23R", "IL4", "IL6", "ITGAM", "ITGB2", "KIR2DL4", "KIT", "KLRC1", "KLRC2", "KLRC3", "KLRC4", "KLRD1", "KLRK1", "KMT5B", "KMT5C", "LAMP1", "MAD2L2", "MALT1", "MAP3K7", "MAVS", "MICA", "MICB", "MR1", "NCR3", "NECTIN2", "NLRP3", "NOS2", "PAXIP1", "PLCG2", "PRKCZ", "PVR", "RAET1E", "RAET1G", "RAET1L", "RASGRP1", "RASGRP4", "RIF1", "RIGI", "RSAD2", "SCIMP", "SH2D1B", "SHLD1", "SHLD2", "SHLD3", "SLAMF6", "SLC22A13", "SPI1", "STAP1", "STX4", "STX7", "TBX21", "TFRC", "TGFB1", "TICAM1", "TNFSF13", "TNFSF4", "TP53BP1", "TRAF2", "TRAF6", "TREM2", "TYROBP", "ULBP1", "ULBP2", "ULBP3", "XCL1", "ZBTB1", "ZP3" ] }, "position": { "x": 2222.7292852374903, "y": 869.1791558704552, "id": "67655508-8724-4bec-ae04-0a0ccc497030", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "884b9c04-6683-4d3e-90f3-b0bd69f8a649", "name": [ "MONOATOMIC CATION TRANSPORT%GOBP%GO:0006812" ], "description": [ "monoatomic cation transport" ], "pvalue": 0.0004, "gs_type": null, "gs_size": 544, "padj": 0.0077, "mcode_cluster_id": "Cluster 11", "NES": 1.4506, "genes": [ "ABCB6", "ABCB7", "ABCB8", "ABCC5", "ABCC8", "ABCC9", "ADRA1A", "AFG3L2", "ANK2", "ANO6", "ANXA6", "AP3D1", "AQP1", "ARHGAP1", "ASIC1", "ASIC2", "ASIC3", "ASIC4", "ASIC5", "ATOX1", "ATP10D", "ATP12A", "ATP1A1", "ATP1A2", "ATP1A3", "ATP1A4", "ATP1B1", "ATP1B2", "ATP1B3", "ATP2A1", "ATP2A2", "ATP2A3", "ATP2B1", "ATP2B2", "ATP2B3", "ATP2B4", "ATP2C1", "ATP2C2", "ATP4A", "ATP4B", "ATP5F1B", "ATP5MF", "ATP5PO", "ATP6AP1", "ATP6AP2", "ATP6V0A1", "ATP6V0A2", "ATP6V0A4", "ATP6V0B", "ATP6V0C", "ATP6V0D1", "ATP6V0E1", "ATP6V0E2", "ATP6V1A", "ATP6V1B1", "ATP6V1B2", "ATP6V1C1", "ATP6V1D", "ATP6V1E1", "ATP6V1F", "ATP6V1G1", "ATP6V1G2", "ATP6V1G3", "ATP6V1H", "ATP7A", "ATP7B", "CACNA1A", "CACNA1B", "CACNA1C", "CACNA1D", "CACNA1E", "CACNA1F", "CACNA1G", "CACNA1H", "CACNA1I", "CACNA1S", "CACNA2D1", "CACNA2D4", "CACNB1", "CACNB2", "CACNB3", "CACNG1", "CACNG3", "CACNG6", "CACNG7", "CACNG8", "CALCRL", "CALHM1", "CALHM2", "CAMK2A", "CASR", "CATSPER1", "CATSPER2", "CATSPER3", "CATSPER4", "CAV1", "CCDC51", "CCL19", "CCL21", "CCL3", "CCL5", "CCL8", "CCR1", "CCR5", "CCR7", "CDH23", "CHERP", "CHP1", "CHRNA4", "CHRNA7", "CHRNB1", "CHRNB2", "CLCNKB", "CLDN16", "CLTC", "CNGA1", "CNGA2", "CNGA3", "CNGA4", "CNGB1", "CNGB3", "CNNM4", "COX17", "CP", "CRACR2A", "CRACR2B", "CSN2", "CUTC", "CYBRD1", "CYP27B1", "DMAC2L", "DNM2", "DRD2", "ERO1A", "F2R", "FASLG", "FGF13", "FGF2", "FKBP1A", "FLNA", "FLVCR1", "FLVCR2", "FTH1", "FXYD2", "FYN", "GAS6", "GHITM", "GP1BA", "GP1BB", "GP5", "GP9", "GRIN1", "GRIN2A", "GRIN2B", "GRIN2C", "GRIN2D", "GRIN3A", "HCN1", "HCN2", "HCN3", "HCN4", "HEPH", "HEPHL1", "HPN", "HSPA9", "HTR2A", "HTR2B", "HTR2C", "HVCN1", "IBTK", "ITGAV", "ITPR1", "ITPR2", "ITPR3", "JPH1", "JPH2", "JPH3", "JPH4", "KCNA1", "KCNA10", "KCNA2", "KCNA3", "KCNA4", "KCNA5", "KCNA6", "KCNA7", "KCNAB1", "KCNAB3", "KCNB1", "KCNB2", "KCNC1", "KCNC2", "KCNC3", "KCNC4", "KCND1", "KCND2", "KCND3", "KCNE1", "KCNE2", "KCNE3", "KCNE4", "KCNE5", "KCNF1", "KCNG1", "KCNG2", "KCNG3", "KCNG4", "KCNH2", "KCNH3", "KCNH4", "KCNH5", "KCNH6", "KCNH7", "KCNH8", "KCNIP2", "KCNJ1", "KCNJ10", "KCNJ11", "KCNJ12", "KCNJ13", "KCNJ14", "KCNJ15", "KCNJ16", "KCNJ18", "KCNJ2", "KCNJ3", "KCNJ4", "KCNJ5", "KCNJ6", "KCNJ8", "KCNJ9", "KCNK1", "KCNK10", "KCNK12", "KCNK13", "KCNK15", "KCNK16", "KCNK17", "KCNK18", "KCNK2", "KCNK3", "KCNK4", "KCNK5", "KCNK6", "KCNK7", "KCNK9", "KCNMA1", "KCNMB1", "KCNMB2", "KCNMB3", "KCNMB4", "KCNN1", "KCNN2", "KCNN3", "KCNN4", "KCNQ1", "KCNQ2", "KCNQ3", "KCNQ4", "KCNQ5", "KCNS1", "KCNS2", "KCNS3", "KCNT1", "KCNT2", "KCNU1", "KCNV1", "KCNV2", "KLHL3", "LCK", "LCN2", "LETM1", "LMTK2", "LRP2", "LRRC26", "LRRC38", "LRRC52", "LRRC55", "LTF", "MAGED2", "MAGT1", "MAIP1", "MCOLN1", "MCOLN2", "MCOLN3", "MCU", "MCUB", "MCUR1", "MELTF", "MICU1", "MICU2", "MICU3", "MMGT1", "MRS2", "MS4A1", "MT-CO1", "MT-ND4", "MT-ND5", "MT3", "NALCN", "NALF1", "NALF2", "NDFIP1", "NDFIP2", "NDUFA9", "NDUFS7", "NIPA1", "NIPA2", "NIPAL1", "NIPAL2", "NIPAL3", "NIPAL4", "NNT", "NOL3", "NOX5", "ORAI1", "ORAI2", "ORAI3", "OTOP1", "OTOP2", "OTOP3", "OXSR1", "P2RX1", "P2RX2", "P2RX3", "P2RX4", "P2RX5", "P2RX6", "P2RX7", "PANX1", "PANX2", "PANX3", "PIEZO1", "PIEZO2", "PKD1", "PKD1L3", "PKD2", "PKD2L1", "PLCB1", "PLCB2", "PLCB3", "PLCB4", "PLCD1", "PLCE1", "PLCG1", "PLCG2", "PLCH1", "PLCH2", "PMPCB", "PTPRC", "RAB11B", "RAMP1", "RAMP2", "RAMP3", "REP15", "RNASEK", "ROMO1", "RYR1", "RYR2", "RYR3", "SCARA5", "SCN10A", "SCN11A", "SCN1A", "SCN1B", "SCN2A", "SCN2B", "SCN3A", "SCN3B", "SCN4A", "SCN4B", "SCN5A", "SCN7A", "SCN8A", "SCN9A", "SCNN1A", "SCNN1B", "SCNN1D", "SCNN1G", "SELENOK", "SGK1", "SLC11A1", "SLC11A2", "SLC12A1", "SLC12A2", "SLC12A3", "SLC12A4", "SLC12A5", "SLC12A6", "SLC12A7", "SLC12A8", "SLC13A1", "SLC17A2", "SLC17A3", "SLC17A4", "SLC17A7", "SLC1A3", "SLC22A17", "SLC23A1", "SLC24A1", "SLC24A2", "SLC24A3", "SLC24A4", "SLC24A5", "SLC25A23", "SLC25A28", "SLC25A37", "SLC29A4", "SLC30A1", "SLC30A10", "SLC30A2", "SLC30A3", "SLC30A4", "SLC30A5", "SLC30A6", "SLC30A7", "SLC30A8", "SLC30A9", "SLC31A1", "SLC31A2", "SLC34A3", "SLC35G1", "SLC36A1", "SLC36A2", "SLC36A3", "SLC38A7", "SLC39A1", "SLC39A10", "SLC39A11", "SLC39A12", "SLC39A13", "SLC39A14", "SLC39A2", "SLC39A3", "SLC39A4", "SLC39A5", "SLC39A6", "SLC39A7", "SLC39A8", "SLC39A9", "SLC3A2", "SLC40A1", "SLC41A1", "SLC41A2", "SLC41A3", "SLC46A1", "SLC48A1", "SLC4A11", "SLC4A4", "SLC4A8", "SLC4A9", "SLC5A1", "SLC5A12", "SLC5A2", "SLC5A4", "SLC5A5", "SLC5A6", "SLC5A8", "SLC6A1", "SLC6A11", "SLC6A12", "SLC6A13", "SLC6A14", "SLC6A15", "SLC6A16", "SLC6A17", "SLC6A18", "SLC6A19", "SLC6A2", "SLC6A20", "SLC6A3", "SLC6A4", "SLC6A5", "SLC6A6", "SLC6A7", "SLC6A8", "SLC6A9", "SLC8A1", "SLC8A2", "SLC8A3", "SLC8B1", "SLC9A1", "SLC9A2", "SLC9A3", "SLC9A4", "SLC9A5", "SLC9A6", "SLC9A7", "SLC9A8", "SLC9A9", "SLC9C1", "SLC9C2", "SLN", "SMDT1", "STEAP2", "STEAP3", "STEAP4", "STIM1", "STIM2", "STIMATE", "STK39", "TCIRG1", "TF", "TFR2", "TFRC", "TMCO1", "TMEM163", "TMEM165", "TMEM175", "TMEM63C", "TMEM94", "TPCN2", "TPT1", "TRDN", "TRPA1", "TRPC1", "TRPC3", "TRPC4", "TRPC4AP", "TRPC5", "TRPC6", "TRPC7", "TRPM1", "TRPM2", "TRPM3", "TRPM4", "TRPM5", "TRPM6", "TRPM7", "TRPM8", "TRPV1", "TRPV2", "TRPV3", "TRPV4", "TRPV5", "TRPV6", "TTYH1", "TUSC3", "UCP1", "UCP2", "UCP3", "VDAC1", "WNK4", "XCL1" ] }, "position": { "x": 4072.717154906757, "y": 1659.8949963218565, "id": "884b9c04-6683-4d3e-90f3-b0bd69f8a649", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "40582abf-bf91-41a1-942a-f17b2aee8b72", "name": [ "CELLULAR RESPONSE TO MOLECULE OF BACTERIAL ORIGIN%GOBP%GO:0071219" ], "description": [ "cellular response to molecule of bacterial origin" ], "pvalue": 0, "gs_type": null, "gs_size": 137, "padj": 0.0006, "mcode_cluster_id": "Cluster 9", "NES": -1.8475, "genes": [ "ACOD1", "ADAM9", "AHR", "ANKRD1", "AXL", "BCL10", "BPI", "CACTIN", "CARD16", "CARD17P", "CASP1", "CASP7", "CCL2", "CCR5", "CD14", "CD180", "CD274", "CD36", "CD6", "CD68", "CD80", "CD86", "CDC73", "CHMP5", "CTR9", "CTSG", "CX3CR1", "CXCL1", "CXCL10", "CXCL11", "CXCL13", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "CYRIB", "DAB2IP", "DEFA1B", "DEFA3", "DEFA4", "DEFA5", "DEFA6", "DEFB124", "FCGR2B", "FZD5", "GBP2", "GBP3", "GFI1", "GIT1", "GSTP1", "HCK", "HMGB1", "HMGB2", "IL10", "IL1A", "IL1B", "IL1F10", "IL36A", "IL36B", "IL36G", "IL36RN", "IL37", "IL6", "IRAK1", "IRAK2", "IRAK3", "IRAK4", "IRGM", "LBP", "LDOC1", "LILRB1", "LILRB2", "LY96", "LYN", "MAPK14", "MAPK8", "MEF2C", "MMP3", "MMP8", "MMP9", "MTDH", "MYD88", "NFKB1", "NFKBIB", "NFKBIL1", "NLRP3", "NLRP7", "NOD2", "NR1D1", "NR1H3", "NUGGC", "PABPN1", "PAF1", "PDCD1LG2", "PDCD4", "PDE4B", "PF4", "PF4V1", "PLAA", "PLCG2", "PPBP", "PPM1E", "PRKCE", "PTPN22", "PYCARD", "RELA", "RHOA", "SBNO2", "SELENOS", "SERPINE1", "SHPK", "SIRPA", "STAP1", "TICAM1", "TICAM2", "TIRAP", "TLR1", "TLR10", "TLR2", "TLR4", "TLR6", "TNFAIP3", "TNFRSF1B", "TNFSF4", "TNIP1", "TNIP2", "TNIP3", "TRAF6", "TRIM41", "UPF1", "VIM", "WNT5A", "XBP1", "ZC3H12A", "ZFP36" ] }, "position": { "x": 3257.0369023873054, "y": 90.52125414448221, "id": "40582abf-bf91-41a1-942a-f17b2aee8b72", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "5ed4b3b0-0529-42a4-97a6-871542f5bff7", "name": [ "NEGATIVE REGULATION OF RESPONSE TO EXTERNAL STIMULUS%GOBP%GO:0032102" ], "description": [ "negative regulation of response to external stimulus" ], "pvalue": 0.0000058645, "gs_type": null, "gs_size": 301, "padj": 0.0002, "mcode_cluster_id": "Cluster 19", "NES": -1.736, "genes": [ "A2M", "ACOD1", "ADAMTS18", "ADIPOQ", "ADTRP", "AHR", "AIF1", "AJAP1", "ALOX12", "ALOX5", "ANGPT2", "AOAH", "APCS", "APOA1", "APOE", "APOH", "ARG1", "ARNT", "ARRB2", "ATG12", "ATG5", "AURKB", "BANF1", "C1QBP", "C1QTNF1", "C1QTNF3", "C5", "C5AR2", "CACTIN", "CARD16", "CARD8", "CASK", "CCL2", "CCN3", "CD109", "CD200", "CD200R1", "CD9", "CDH5", "CEACAM1", "CEP63", "CERS2", "CLASP1", "CLASP2", "CLDN19", "CLDN3", "CLEC12B", "CNOT7", "CORO1B", "CPB2", "CR1", "CRK", "CST7", "CTNNA2", "CX3CL1", "CXCL13", "CXCL17", "CYLD", "DCST1", "DDT", "DEFB114", "DEFB118", "DHX58", "DPP4", "DRD1", "DRD2", "DRD3", "DTX4", "DUSP1", "DUSP3", "EDN1", "EIF4E2", "ELANE", "ELF4", "ENPP3", "EPHA4", "EPPK1", "EXTL3", "F11", "F12", "F2", "FAM3A", "FCGR2B", "FEM1A", "FFAR4", "FGA", "FGB", "FGF2", "FGG", "FGR", "FIGNL2", "FNDC4", "FPR2", "FURIN", "FXR1", "FYN", "GATA3", "GBA1", "GHRL", "GHSR", "GIGYF2", "GIT1", "GP1BA", "GPER1", "GPR31", "GPS2", "GREM1", "GRID2", "GRN", "GSTP1", "HCK", "HLA-A", "HLA-B", "HLA-DRB1", "HLA-E", "HLA-F", "HLA-G", "HRG", "IFI16", "IGF1", "IL10", "IL10RA", "IL13", "IL22", "IL22RA1", "IL33", "IL4", "ILRUN", "INPP5F", "INS", "IRAK3", "IRGM", "ISG15", "ISL1", "ITCH", "KIAA0319", "KIR2DL4", "KLF4", "KLKB1", "KLRC1", "KLRD1", "KLRK1", "KNG1", "KRT1", "LACRT", "LDLR", "LGALS9", "LILRA2", "LILRB1", "LPCAT3", "LRFN5", "LTF", "LYAR", "LYN", "MACIR", "MAPK14", "MAPK7", "MAPKBP1", "MAVS", "MDK", "MEFV", "METRNL", "METTL3", "MFHAS1", "MICA", "MICB", "MIF", "MKRN2", "MMP26", "MMRN1", "MT-RNR2", "MUL1", "MVK", "MYOZ1", "NBL1", "NFKBIL1", "NLRC3", "NLRC5", "NLRP12", "NLRP3", "NLRP4", "NMI", "NOS3", "NOTCH1", "NR1D1", "NR1H2", "NR1H3", "NR1H4", "NT5C2", "OAS1", "OAS3", "OTOP1", "OTULIN", "PADI2", "PARP1", "PARP14", "PCBP2", "PDGFA", "PDGFB", "PDGFRA", "PHLDB2", "PIM1", "PLAT", "PLAU", "PLCG1", "PLG", "PLK2", "PPARA", "PPARD", "PPARG", "PPM1B", "PPP1R13L", "PRKCD", "PRKG1", "PROC", "PTEN", "PTGER4", "PTGIS", "PTPN2", "PTPN6", "PTPRC", "PTPRO", "PTPRS", "PYDC2", "RB1", "REG3A", "RHBDF2", "RIN3", "RNF26", "ROBO1", "ROBO2", "RORA", "RPS19", "RTN4R", "RTN4RL1", "SAA1", "SAMHD1", "SELENOS", "SEMA5A", "SERPINB2", "SERPINB4", "SERPINB9", "SERPINE1", "SERPINE2", "SERPINF2", "SERPING1", "SFN", "SH2B3", "SHARPIN", "SIGIRR", "SIGLEC10", "SIRPA", "SLAMF8", "SLC12A2", "SLC39A8", "SLIT2", "SMIM30", "SMPDL3B", "SRC", "STAP1", "STAT2", "STAT3", "SUSD4", "SYK", "SYT11", "TAFA3", "TARBP2", "TEK", "TFPI", "TGFB1", "THBD", "THBS1", "TMSB4X", "TMX1", "TNF", "TNFAIP3", "TNFAIP6", "TNFAIP8L2", "TNFRSF1A", "TNFRSF1B", "TRAF3IP1", "TRAFD1", "TREM2", "TREX1", "TRIB1", "TRIM21", "TRIM45", "TRIM65", "TTLL12", "TYRO3", "USP15", "USP18", "USP38", "VPS35", "VSIG4", "VTN", "YES1", "YTHDF2", "YTHDF3", "YWHAZ", "ZDHHC18" ] }, "position": { "x": 2066.8278943496944, "y": 259.3471080807352, "id": "5ed4b3b0-0529-42a4-97a6-871542f5bff7", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "9e4f8106-d136-45d5-8474-83091f2c249b", "name": [ "ASYMMETRIC LOCALIZATION OF PCP PROTEINS%REACTOME DATABASE ID RELEASE 81%4608870" ], "description": [ "Asymmetric localization of PCP proteins" ], "pvalue": 0, "gs_type": null, "gs_size": 64, "padj": 0.0005, "mcode_cluster_id": "Cluster 1", "NES": -2.0074, "genes": [ "DVL2", "FZD1", "FZD2", "FZD3", "FZD4", "FZD5", "FZD7", "FZD8", "PARD6A", "PRICKLE1", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RPS27A", "SCRIB", "SEM1", "SMURF1", "SMURF2", "UBA52", "UBB", "UBC", "VANGL2", "WNT5A" ] }, "position": { "x": 424.2446875150504, "y": 779.6151713568073, "id": "9e4f8106-d136-45d5-8474-83091f2c249b", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "410cbdfb-78fd-403c-9288-a89feef14111", "name": [ "POSITIVE REGULATION OF EPIDERMIS DEVELOPMENT%GOBP%GO:0045684" ], "description": [ "positive regulation of epidermis development" ], "pvalue": 0.0038, "gs_type": null, "gs_size": 24, "padj": 0.0417, "mcode_cluster_id": null, "NES": -1.7581, "genes": [ "BMP4", "CYP27B1", "ELAPOR2", "ETV4", "FOXC1", "IL20", "KDF1", "KRT10", "KRT2", "MACROH2A1", "MACROH2A2", "MED1", "NCOA3", "NME2", "NUMA1", "PLAAT4", "PRKCH", "SFN", "SFRP4", "SULT2B1", "TMEM79", "TRIM16", "VDR", "ZBED2" ] }, "position": { "x": 499.5, "y": 2272.9446642487483, "id": "410cbdfb-78fd-403c-9288-a89feef14111" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "c59b9ba0-0b63-4930-b1cb-3e784ac046af", "name": [ "ACTIVATION OF IMMUNE RESPONSE%GOBP%GO:0002253" ], "description": [ "activation of immune response" ], "pvalue": 7.4784e-10, "gs_type": null, "gs_size": 338, "padj": 6.4928e-8, "mcode_cluster_id": "Cluster 6", "NES": -2.0195, "genes": [ "ABL1", "AIM2", "ALPK1", "BAG6", "BANK1", "BAX", "BCAR1", "BCL10", "BCL2", "BECN1", "BLK", "BLNK", "BMX", "BTK", "BTN1A1", "BTN2A1", "BTN2A2", "BTN2A3P", "BTN3A1", "BTN3A2", "BTN3A3", "BTNL10P", "BTNL2", "BTNL3", "BTNL8", "BTNL9", "C1QA", "C1QB", "C1QC", "C1R", "C2", "C3", "C3AR1", "C4A", "C4B_2", "C5AR1", "C5AR2", "C6", "C7", "C8A", "C8B", "C9", "CARD8", "CASP1", "CASP6", "CD14", "CD19", "CD247", "CD274", "CD276", "CD28", "CD300LF", "CD38", "CD3D", "CD3E", "CD3G", "CD79A", "CD79B", "CD8A", "CD8B", "CFB", "CFD", "CFH", "CFHR1", "CFHR2", "CFHR3", "CFHR4", "CFHR5", "CFP", "CGAS", "CHUK", "CLEC4E", "CLEC6A", "CLEC7A", "CLPB", "CLU", "CMKLR1", "COLEC10", "COLEC11", "COLEC12", "CR1", "CR2", "CREBBP", "CSK", "CTLA4", "CTSS", "CYLD", "DENND1B", "DHX58", "ECSIT", "EIF2B1", "EIF2B2", "EIF2B3", "EIF2B4", "EIF2B5", "EP300", "EPG5", "ERMAP", "FCER1G", "FCHO1", "FCN1", "FCN2", "FCN3", "FFAR2", "FGR", "FPR1", "FPR2", "FPR3", "FYB1", "FYB2", "FYN", "GATA3", "GBP2", "GPLD1", "GPR32", "GPR32P1", "GPR33", "HCK", "HEXIM1", "HHLA2", "HLA-A", "HLA-DPB1", "HLA-DQB1", "HLA-DRB1", "HLA-DRB3", "HMGB1", "HMSD", "HSP90AA1", "HSPD1", "ICOSLG", "IFI16", "IFIH1", "IGHA1", "IGHA2", "IGHD", "IGHE", "IGHG1", "IGHG2", "IGHG3", "IGHG4", "IGHM", "IGKC", "IGLC1", "IGLC3", "IGLC6", "IGLC7", "IKBKB", "IKBKG", "INAVA", "INPP5D", "IPO5", "IRAK1", "IRAK2", "IRAK3", "IRAK4", "IRF3", "IRF7", "IRGM", "ITCH", "ITGAM", "ITK", "KHDRBS1", "KIR2DS2", "KLRC1", "KLRC2", "KLRC3", "KLRC4", "KLRD1", "KRT1", "LACC1", "LAT", "LAT2", "LAX1", "LBP", "LCK", "LCP2", "LGALS9", "LILRA2", "LIME1", "LIMK1", "LY96", "LYN", "MALT1", "MAP2K6", "MAP3K7", "MAPKAPK2", "MAPKAPK3", "MASP1", "MASP2", "MATR3", "MAVS", "MBL2", "MEF2C", "MEFV", "MICB", "MNDA", "MOG", "MS4A1", "MYD88", "MYO1G", "NAIP", "NCKAP1L", "NCR3", "NCR3LG1", "NFAM1", "NFATC2", "NFKBIA", "NFKBID", "NFKBIZ", "NLRC4", "NLRP1", "NLRP10", "NLRP3", "NLRP6", "NMI", "NOD1", "NOD2", "NONO", "NR4A3", "OAS1", "OAS3", "OTULIN", "PAK1", "PAK2", "PAK3", "PDE4B", "PDE4D", "PHB1", "PHB2", "PIK3AP1", "PIK3CA", "PIK3CD", "PLA2G6", "PLCG1", "PLCG2", "PLD2", "PLEKHA1", "PLPP4", "PQBP1", "PRAM1", "PRKCB", "PRKCD", "PRKCE", "PRKD2", "PRKDC", "PSPC1", "PTK2", "PTPN22", "PTPRC", "PTPRJ", "PYCARD", "PYHIN1", "RAB11FIP2", "RBCK1", "RBM14", "RC3H1", "RC3H2", "REG3G", "RELA", "RFTN1", "RGCC", "RIGI", "RIPK2", "RNF135", "RNF144A", "RNF31", "RNF34", "RPS6KA3", "S100A14", "SCARA3", "SCIMP", "SFPQ", "SH2B2", "SKAP1", "SLA2", "SLC39A6", "SPG21", "SPPL3", "SRC", "STING1", "STOML2", "SYK", "TBK1", "TEC", "THEMIS", "THEMIS2", "THY1", "TICAM1", "TICAM2", "TIFA", "TIRAP", "TLR1", "TLR10", "TLR2", "TLR3", "TLR4", "TLR5", "TLR6", "TLR7", "TLR8", "TLR9", "TNFAIP3", "TNFRSF21", "TNIP1", "TNIP2", "TNIP3", "TOMM70", "TRAC", "TRAF3", "TRAF3IP3", "TRAF6", "TRBC1", "TRBC2", "TRDC", "TRGC1", "TRGC2", "TRIL", "TRIM25", "TRIM5", "TXK", "TYROBP", "UBE2N", "UNC93B1", "VAV1", "VAV2", "VAV3", "VTCN1", "WNK1", "XIAP", "XRCC5", "XRCC6", "YES1", "YWHAE", "ZAP70", "ZBP1", "ZC3H12A", "ZCCHC3", "ZNFX1" ] }, "position": { "x": 1825.4563518361506, "y": 467.76002551912126, "id": "c59b9ba0-0b63-4930-b1cb-3e784ac046af", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "96952ab5-b430-40e2-9898-9c793681a5aa", "name": [ "RESPIRATORY SYNCYTIAL VIRUS INFECTION PATHWAY%REACTOME DATABASE ID RELEASE 81%9820952" ], "description": [ "Respiratory Syncytial Virus Infection Pathway" ], "pvalue": 0.0022, "gs_type": null, "gs_size": 118, "padj": 0.0288, "mcode_cluster_id": null, "NES": -1.547, "genes": [ "AGRN", "ARIH1", "BCAP31", "BECN1", "CCNC", "CD14", "CD209", "CDK19", "CDK8", "CLEC4M", "CREBBP", "CSNK2A1", "CSNK2A2", "CSNK2B", "CUL5", "CX3CR1", "EGFR", "EIF2AK2", "ELOB", "ELOC", "EP300", "FURIN", "GPC1", "GPC2", "GPC3", "GPC4", "GPC5", "GPC6", "H2BC15", "HERC5", "HSP90AA1", "HSP90AB1", "HSPA8", "HSPG2", "IFIH1", "IFNA10", "IFNA13", "IFNA14", "IFNA16", "IFNA17", "IFNA2", "IFNA21", "IFNA4", "IFNA5", "IFNA6", "IFNA7", "IFNA8", "IFNAR1", "IFNB1", "IGF1R", "IRF3", "ISG15", "JAK1", "LY96", "MAP1B", "MAVS", "MED1", "MED10", "MED11", "MED12", "MED13", "MED13L", "MED14", "MED15", "MED16", "MED17", "MED18", "MED19", "MED20", "MED21", "MED22", "MED23", "MED24", "MED25", "MED26", "MED27", "MED28", "MED29", "MED30", "MED31", "MED4", "MED6", "MED7", "MED8", "MED9", "NCL", "OAS2", "PPP1CA", "PPP1CB", "PPP1CC", "RAB5A", "RAB5B", "RAB5C", "RBX1", "RIGI", "RPS27A", "SDC1", "SDC2", "SDC3", "SDC4", "SEC11A", "SEC11C", "SPCS1", "SPCS2", "SPCS3", "STAT2", "TLR2", "TLR3", "TLR4", "TLR6", "TLR7", "TRIM25", "TYK2", "UBA52", "UBB", "UBC", "UBE2L6", "XPO1" ] }, "position": { "x": 1269.5, "y": 2195.9446642487483, "id": "96952ab5-b430-40e2-9898-9c793681a5aa" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "91f8fc64-2a2e-401f-bfa8-f9b99cf0c4e1", "name": [ "HALLMARK_INFLAMMATORY_RESPONSE%MSIGDBHALLMARK%HALLMARK_INFLAMMATORY_RESPONSE" ], "description": [ "HALLMARK_INFLAMMATORY_RESPONSE" ], "pvalue": 0, "gs_type": null, "gs_size": 183, "padj": 0.0004, "mcode_cluster_id": null, "NES": -1.8176, "genes": [ "ABCA1", "ACVR1B", "ACVR2A", "ADM", "ADORA2B", "ADRM1", "AHR", "AQP9", "ARHG", "ATP2A2", "ATP2B1", "ATP2C1", "AXL", "BDKRB1", "BST2", "BTG2", "C3AR1", "C5AR1", "CALCRL", "CCL17", "CCL2", "CCL20", "CCL22", "CCL24", "CCL5", "CCL7", "CCR7", "CCRL2", "CD14", "CD40", "CD48", "CD55", "CD69", "CD82", "CDKN1A", "CLEC5A", "CMKLR1", "CSF1", "CSF3", "CSF3R", "CX3CL1", "CXCL11", "CXCL6", "CXCL8", "CXCL9", "CXCR6", "CYBB", "DCBLD2", "EBI3", "EDG2", "EDN1", "EIF2AK2", "EMP3", "EREG", "F3", "FFAR2", "FPR1", "FZD5", "GABBR1", "GNA15", "GNAI3", "GP1BA", "GPC3", "GPR132", "GPR183", "HAS2", "HBEGF", "HEL-S-75", "HIF1A", "HRH1", "ICAM4", "ICOSLG", "IFITM1", "IFNAR1", "IFNGR2", "IL10", "IL10RA", "IL12B", "IL15", "IL15RA", "IL18", "IL18R1", "IL18RAP", "IL1A", "IL1B", "IL1R1", "IL2RB", "IL6", "IL7R", "INHBA", "IRAK2", "IRF1", "IRF7", "ITGB3", "ITGB8", "KCNA3", "KCNJ2", "KIF1B", "KLF6", "LAMP3", "LCK", "LCP2", "LDLR", "LIF", "LTA", "LY6E", "LYN", "MARCO", "MEFV", "MEP1A", "MET", "MMP14", "MSR1", "MXD1", "MYC", "NAMPT", "NDP", "NFKB1", "NFKBIA", "NLRP3", "NMI", "NMUR1", "NOD2", "NPFFR2", "OLR1", "OPRK1", "OSM", "OSMR", "P2RX4", "P2RX7", "P2RY2", "PCDH7", "PDE4B", "PDPN", "PIK3R5", "PLAUR", "PROK2", "PSEN1", "PTGER2", "PTGER4", "PTGIR", "PTPRE", "RAF1", "RELA", "RGS1", "RGS16", "RIPK2", "RNF144B", "ROS1", "RTP4", "SCN1B", "SELE", "SELL", "SELS", "SEMA4D", "SERPINE1", "SGMS2", "SLAMF1", "SLC11A2", "SLC1A2", "SLC31A1", "SLC31A2", "SLC4A4", "SLC7A1", "SLC7A2", "SPHK1", "SRI", "STAB1", "TACR1", "TACR3", "TAPBP", "TIMP1", "TLR1", "TLR3", "TNFAIP6", "TNFRSF1B", "TNFRSF9", "TNFSF10", "TNLG1B", "TNLG5A", "TNLG8A", "TPBG", "VIP" ] }, "position": { "x": 1192.5, "y": 2272.9446642487483, "id": "91f8fc64-2a2e-401f-bfa8-f9b99cf0c4e1" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "6e025d9d-61da-4ade-81fa-7b8d84b6c60b", "name": [ "REGULATION OF CYTOKINE PRODUCTION%GOBP%GO:0001817" ], "description": [ "regulation of cytokine production" ], "pvalue": 7.8921e-8, "gs_type": null, "gs_size": 645, "padj": 0.0000049364, "mcode_cluster_id": null, "NES": -1.7006, "genes": [ "ABCD1", "ABCD2", "ACE2", "ACKR1", "ACOD1", "ADAM17", "ADAM8", "ADCY7", "ADCYAP1", "ADIPOQ", "ADRA2A", "AFAP1L2", "AGER", "AGPAT1", "AGPAT2", "AGT", "AIF1", "AIM2", "AIRE", "AKIRIN2", "ALOX15B", "ALOX5", "ANXA1", "ANXA4", "APOA1", "APOA2", "APOD", "APP", "APPL1", "APPL2", "ARFGEF2", "ARG2", "ARHGEF2", "ARNT", "ARRB1", "ARRDC4", "ASB1", "ATF4", "ATG12", "ATG5", "ATP2B1", "ATP6AP2", "AXL", "AZU1", "B2M", "BANF1", "BATF", "BCL10", "BCL3", "BCL6", "BCL6B", "BMPR1A", "BPI", "BRCA1", "BST2", "BTK", "BTN1A1", "BTN2A1", "BTN2A2", "BTN2A3P", "BTN3A1", "BTN3A2", "BTN3A3", "BTNL10P", "BTNL2", "BTNL3", "BTNL8", "BTNL9", "C1QBP", "C1QTNF3", "C1QTNF4", "C3", "C5", "C5AR2", "CACTIN", "CADM1", "CAMK4", "CARD11", "CARD16", "CARD17P", "CARD18", "CARD8", "CARD9", "CASP1", "CASP3", "CASP8", "CCBE1", "CCDC88B", "CCL1", "CCL19", "CCL3", "CCN4", "CCR2", "CCR7", "CD14", "CD160", "CD2", "CD200", "CD200R1", "CD24", "CD244", "CD274", "CD276", "CD28", "CD33", "CD34", "CD36", "CD4", "CD40LG", "CD46", "CD47", "CD55", "CD58", "CD6", "CD74", "CD80", "CD81", "CD84", "CD86", "CEACAM1", "CEBPB", "CEBPG", "CGAS", "CHI3L1", "CHIA", "CHID1", "CHRNA7", "CHUK", "CIDEA", "CLC", "CLEC4A", "CLEC6A", "CLEC7A", "CLEC9A", "CLECL1P", "CLU", "CMKLR1", "CPTP", "CR1", "CRLF2", "CRP", "CRTAM", "CSF1R", "CSF2", "CUEDC2", "CUL3", "CX3CL1", "CX3CR1", "CXCL17", "CYBA", "CYLD", "CYP1B1", "CYRIB", "DDIT3", "DDT", "DDX3X", "DDX56", "DEFA5", "DEFB114", "DEFB124", "DENND1B", "DHX33", "DHX36", "DHX58", "DHX9", "DICER1", "DLL1", "DRD2", "DTX4", "EBI3", "EGR1", "EIF2AK2", "EIF2AK3", "ELANE", "ELF4", "EOLA1", "EPHB2", "EREG", "ERMAP", "EXTL3", "EZR", "F2", "F2R", "F2RL1", "F3", "FADD", "FCER1G", "FCGR2A", "FCGR2B", "FCGR2C", "FCGR3A", "FCN1", "FFAR1", "FFAR2", "FFAR3", "FFAR4", "FGR", "FLOT1", "FLT4", "FN1", "FOXJ1", "FOXP1", "FOXP3", "FRMD8", "FURIN", "FXR1", "FZD5", "G3BP1", "GAPDH", "GARIN5A", "GAS6", "GATA3", "GATA4", "GATA6", "GBA1", "GBP1", "GBP5", "GBP7", "GDF2", "GHRL", "GHSR", "GIT1", "GLMN", "GPATCH3", "GPNMB", "GPR174", "GPRC5B", "GSDMD", "GSTP1", "HAVCR2", "HDAC7", "HDAC9", "HFE", "HHLA2", "HIC2", "HIF1A", "HILPDA", "HLA-A", "HLA-B", "HLA-DPA1", "HLA-DPB1", "HLA-DRB1", "HLA-E", "HLA-F", "HLA-G", "HMGB1", "HMHB1", "HMOX1", "HOMER2", "HOMER3", "HPSE", "HSP90AA1", "HSPA1A", "HSPA1B", "HSPB1", "HSPD1", "HTR2B", "HYAL2", "ICOSLG", "IFI16", "IFIH1", "IFNA2", "IFNB1", "IFNG", "IFNGR1", "IFNL1", "IGF1", "IGF2BP1", "IGF2BP2", "IGF2BP3", "IGHD", "IKBKE", "IL10", "IL12A", "IL12B", "IL12RB1", "IL12RB2", "IL13", "IL15", "IL16", "IL17A", "IL17D", "IL17F", "IL17RA", "IL18", "IL18R1", "IL1A", "IL1B", "IL1R1", "IL2", "IL21", "IL23A", "IL23R", "IL26", "IL27", "IL33", "IL36RN", "IL37", "IL4", "IL6", "IL6R", "IL6ST", "IL7", "IL9", "ILRUN", "INAVA", "INHA", "INHBA", "INHBB", "INS", "IRAK1", "IRAK3", "IRF1", "IRF3", "IRF4", "IRF5", "IRF7", "IRF8", "IRGM", "ISG15", "ISL1", "ITCH", "ITK", "JAK2", "JAK3", "KAT2A", "KAT5", "KAT8", "KIR2DL4", "KIT", "KLF4", "KLHL22", "KLRF2", "KPNA2", "LACC1", "LAMTOR5", "LAPTM4B", "LAPTM5", "LBP", "LEF1", "LEP", "LGALS9", "LGALS9B", "LGALS9C", "LGR4", "LILRA2", "LILRA4", "LILRA5", "LILRB1", "LILRB2", "LILRB4", "LITAF", "LITAFD", "LPL", "LRRC19", "LTB", "LTF", "LURAP1", "LY9", "LY96", "LYN", "MACIR", "MALT1", "MAP2K5", "MAP3K7", "MAPK11", "MAPK13", "MAPK14", "MAPK9", "MAPKAPK2", "MAPKBP1", "MAST2", "MAVS", "MBP", "MC1R", "MDK", "MEFV", "MIF", "MMP8", "MOG", "MORC3", "MT-RNR2", "MUL1", "MYD88", "N4BP1", "NAIP", "NAV3", "NCKAP1L", "NFAM1", "NFKBIL1", "NLRC3", "NLRC4", "NLRP1", "NLRP10", "NLRP12", "NLRP2", "NLRP2B", "NLRP3", "NLRP7", "NLRP9", "NMB", "NMBR", "NOD1", "NOD2", "NODAL", "NOS2", "NOX1", "NOX5", "NPLOC4", "NPTN", "NR1H4", "NR4A3", "OAS1", "OAS2", "OAS3", "OPA1", "ORM1", "ORM2", "OSM", "OTUD5", "OTUD7B", "P2RX7", "PAEP", "PANX1", "PARK7", "PATZ1", "PDCD1LG2", "PDCD4", "PDE4B", "PDE4D", "PER1", "PF4", "PHB1", "PIBF1", "PIK3CD", "PIK3CG", "PKP3", "PLA2G1B", "PLA2R1", "PLCB1", "PLCG2", "PLD3", "PLD4", "PNP", "POLA1", "POLR3A", "POLR3B", "POLR3C", "POLR3D", "POLR3F", "POLR3G", "POMC", "POU2AF1", "POU2F2", "PPARA", "PPM1B", "PPP1R11", "PQBP1", "PRG3", "PRKACA", "PRKCQ", "PRKCZ", "PRKD2", "PRNP", "PSEN1", "PSG9", "PTGER4", "PTGS2", "PTPN11", "PTPN22", "PTPN6", "PTPRC", "PTPRJ", "PTPRS", "PYCARD", "PYDC1", "PYDC2", "RAB1A", "RAB2B", "RAB7B", "RAC1", "RAET1G", "RARA", "RASGRP1", "RBX1", "REL", "RELA", "RELB", "RFTN1", "RGCC", "RIGI", "RIOK3", "RIPK1", "RIPK2", "RIPK3", "RNF125", "RNF135", "RNF216", "RNF26", "ROCK2", "RORA", "RPS3", "RPS6KA4", "RPS6KA5", "RSAD2", "RUNX1", "S100A13", "SAA1", "SARS1", "SCAMP5", "SCIMP", "SCRIB", "SELENOS", "SEMA7A", "SERPINB1", "SERPINE1", "SERPINF2", "SETD2", "SETD4", "SFTPD", "SIGIRR", "SIGLEC1", "SIGLEC16", "SIRPA", "SIRT1", "SLAMF1", "SLAMF6", "SLC11A1", "SLC2A10", "SLC7A5", "SMAD3", "SMAD4", "SMAD7", "SNAI2", "SOD1", "SORL1", "SPHK1", "SPHK2", "SPN", "SPTBN1", "SRGN", "SSC5D", "STAT1", "STAT3", "STING1", "STMP1", "STOML2", "SULF1", "SULF2", "SYK", "SYT11", "TANK", "TBK1", "TBX21", "TGFB1", "TGFB2", "TGFB3", "THBS1", "TICAM1", "TICAM2", "TIGIT", "TIRAP", "TLR1", "TLR2", "TLR3", "TLR4", "TLR5", "TLR6", "TLR7", "TLR8", "TLR9", "TMED10", "TMEM106A", "TMIGD2", "TNF", "TNFAIP3", "TNFRSF14", "TNFRSF1B", "TNFRSF21", "TNFRSF8", "TNFSF4", "TOMM70", "TRAF2", "TRAF3", "TRAF3IP1", "TRAF3IP3", "TRAF6", "TREM2", "TRIB2", "TRIL", "TRIM15", "TRIM16", "TRIM21", "TRIM27", "TRIM56", "TRIM6", "TRIM65", "TRPM4", "TSKU", "TSLP", "TWIST1", "TWSG1", "TXK", "TYK2", "TYROBP", "UAP1", "UFC1", "UFD1", "USP22", "USP50", "VSIG4", "VSIR", "VTCN1", "WNT5A", "XAF1", "XBP1", "XCL1", "XIAP", "YY1", "ZBTB1", "ZBTB12", "ZBTB17", "ZBTB2", "ZBTB20", "ZBTB25", "ZBTB26", "ZBTB32", "ZBTB33", "ZBTB34", "ZBTB37", "ZBTB39", "ZBTB45", "ZBTB49", "ZBTB6", "ZBTB7B", "ZC3H12A", "ZC3HAV1", "ZCCHC3", "ZFP36", "ZFPM1", "ZNF131", "ZNF134", "ZNF572", "ZNF580", "ZP3" ] }, "position": { "x": 1653.7248891218478, "y": 313.8964029620745, "id": "6e025d9d-61da-4ade-81fa-7b8d84b6c60b" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "6bed8f20-05d5-41c1-a584-804d0df5a3a0", "name": [ "REGULATION OF MONONUCLEAR CELL PROLIFERATION%GOBP%GO:0032944" ], "description": [ "regulation of mononuclear cell proliferation" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 168, "padj": 0.002, "mcode_cluster_id": "Cluster 12", "NES": -1.7639, "genes": [ "AGER", "AHR", "AIF1", "ANXA1", "ARG1", "ATM", "BCL2", "BMP4", "BST1", "BTN2A2", "CCDC88B", "CCL19", "CCL5", "CCR2", "CD1D", "CD209", "CD22", "CD24", "CD274", "CD276", "CD28", "CD300A", "CD320", "CD38", "CD3E", "CD40LG", "CD46", "CD55", "CD6", "CD70", "CD74", "CD80", "CD81", "CD86", "CEBPB", "CHRNB2", "CLC", "CLCF1", "CLECL1P", "CR1", "CRP", "CRTAM", "CSF1", "CTLA4", "DLG5", "EBI3", "EPHB2", "FADD", "FCGR2B", "FCGR3A", "FCRL3", "FGF10", "FOXP3", "GLMN", "GPNMB", "GPR183", "HHLA2", "HLA-A", "HLA-DMB", "HLA-DPA1", "HLA-DPB1", "HLA-DRB1", "HLA-E", "HLA-G", "HMGB1", "ICOSLG", "IDO1", "IGF1", "IGF2", "IGFBP2", "IHH", "IKZF3", "IL10", "IL12A", "IL12B", "IL12RB1", "IL15", "IL18", "IL1A", "IL1B", "IL2", "IL21", "IL23A", "IL23R", "IL27", "IL4", "IL4I1", "IL6", "IL6ST", "IL7", "IRF1", "IRS2", "JAK2", "LEP", "LGALS3", "LGALS9", "LGALS9B", "LGALS9C", "LILRB1", "LILRB2", "LILRB4", "LST1", "MAPK8IP1", "MEF2C", "MIF", "MNDA", "MZB1", "NCK1", "NCK2", "NCKAP1L", "NFATC2", "PDCD1LG2", "PLA2G2A", "PLA2G2D", "PLA2G2E", "PLA2G2F", "PLA2G5", "PNP", "PPP3CA", "PRKAR1A", "PRNP", "PTPN22", "PTPRC", "PYCARD", "RASAL3", "RC3H1", "RIPK3", "RPS3", "SASH3", "SCRIB", "SDC4", "SFTPD", "SH3RF1", "SHH", "SLC4A2", "SLC7A1", "SOX11", "SPN", "TFRC", "TGFBR2", "TIRAP", "TLR9", "TMEM131L", "TMIGD2", "TNFRSF13B", "TNFRSF13C", "TNFRSF14", "TNFRSF1B", "TNFRSF21", "TNFRSF4", "TNFSF13B", "TNFSF18", "TNFSF4", "TNFSF8", "TNFSF9", "TWSG1", "TYK2", "TYROBP", "VAV3", "VCAM1", "VSIG4", "VSIR", "VTCN1", "XCL1", "ZBTB7B", "ZNF335", "ZP3", "ZP4" ] }, "position": { "x": 2471.3517501151778, "y": 546.5402745056653, "id": "6bed8f20-05d5-41c1-a584-804d0df5a3a0", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "1a39797c-1df7-4aec-8ab0-ce066a56e9ec", "name": [ "POSITIVE REGULATION OF INNATE IMMUNE RESPONSE%GOBP%GO:0045089" ], "description": [ "positive regulation of innate immune response" ], "pvalue": 5.139e-9, "gs_type": null, "gs_size": 262, "padj": 3.9334e-7, "mcode_cluster_id": "Cluster 6", "NES": -1.953, "genes": [ "ADAM8", "AIM2", "AKIRIN2", "ALPK1", "ANKRD17", "AP1G1", "BCL10", "BECN1", "BRCC3", "BTK", "CADM1", "CARD8", "CASP1", "CASP6", "CAV1", "CCL5", "CD14", "CD160", "CD1D", "CD226", "CD274", "CD300LF", "CD36", "CGAS", "CHUK", "CLEC4E", "CLEC6A", "CLEC7A", "CLPB", "COLEC10", "COLEC11", "COLEC12", "CPT1A", "CREBBP", "CRTAM", "CTSS", "CYBA", "CYLD", "DDX3X", "DDX60", "DHX33", "DHX58", "DHX9", "ECSIT", "EP300", "EPG5", "EREG", "F2RL1", "FADD", "FCN1", "FCN2", "FCN3", "FFAR2", "FLOT1", "FPR2", "FYN", "GBP2", "GBP5", "GDI1", "HCK", "HEXIM1", "HLA-E", "HLA-F", "HLA-G", "HMGB1", "HSP90AA1", "HSPA1A", "HSPA1B", "HSPD1", "IFI16", "IFI35", "IFIH1", "IFNB1", "IFNK", "IKBKB", "IKBKE", "IL12A", "IL12B", "IL21", "INAVA", "IPO5", "IRAK1", "IRAK2", "IRAK3", "IRAK4", "IRF3", "IRF7", "IRGM", "ITCH", "KIR2DL4", "KIR2DS2", "KLRC1", "KLRC2", "KLRC3", "KLRC4", "KLRD1", "KLRK1", "LACC1", "LAMP1", "LBP", "LGALS9", "LILRA2", "LRCH4", "LTF", "LY96", "LYN", "MAP2K6", "MAP3K7", "MAPK8", "MAPKAPK2", "MAPKAPK3", "MARK4", "MATR3", "MAVS", "MBL2", "MEFV", "MFHAS1", "MNDA", "MYD88", "NAGK", "NAIP", "NCR3", "NECTIN2", "NEK7", "NFKBIA", "NINJ1", "NLRC4", "NLRC5", "NLRP1", "NLRP10", "NLRP3", "NLRP6", "NMI", "NOD1", "NOD2", "NONO", "NR1H3", "OAS1", "OAS3", "OASL", "OTULIN", "PAK1", "PAK2", "PAK3", "PARP9", "PHB1", "PHB2", "PIK3AP1", "PJA2", "PLA2G5", "PLCG2", "PLSCR1", "POLR3B", "POLR3C", "POLR3D", "POLR3F", "POLR3G", "PQBP1", "PRKCE", "PRKD1", "PRKDC", "PSPC1", "PTPN22", "PUM1", "PUM2", "PVR", "PYCARD", "PYHIN1", "RAB11FIP2", "RAET1E", "RAET1G", "RASGRP1", "RASGRP4", "RBM14", "RBM47", "REG3G", "RELA", "RFTN1", "RIGI", "RIOK3", "RIPK2", "RNF135", "RNF144A", "RNF185", "RNF34", "RPS19", "RPS6KA3", "RSAD2", "RTN4", "S100A14", "SCARA3", "SCIMP", "SFPQ", "SH2D1B", "SLAMF6", "SLC15A3", "SLC15A4", "SLC19A1", "SLC46A2", "SPI1", "SRC", "STING1", "STMP1", "SYK", "TAB1", "TASL", "TBK1", "TICAM1", "TICAM2", "TIFA", "TIRAP", "TLR1", "TLR10", "TLR2", "TLR3", "TLR4", "TLR5", "TLR6", "TLR7", "TLR8", "TLR9", "TNFAIP3", "TNIP1", "TNIP2", "TNIP3", "TOMM70", "TRAF3", "TRAF3IP3", "TRAF6", "TREML4", "TRIL", "TRIM15", "TRIM25", "TRIM3", "TRIM41", "TRIM5", "TRIM56", "TRIM6", "TRIM62", "TXK", "TYROBP", "UBE2K", "UNC93B1", "USP15", "USP17L2", "USP27X", "USP29", "USP50", "WDFY1", "WNT5A", "XIAP", "XRCC5", "XRCC6", "YWHAE", "ZBP1", "ZCCHC3", "ZDHHC3", "ZDHHC4", "ZDHHC5", "ZDHHC9", "ZNFX1", "ZNRF1" ] }, "position": { "x": 1852.4472679293842, "y": 465.4085480509508, "id": "1a39797c-1df7-4aec-8ab0-ce066a56e9ec", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "f3d212cf-452e-4306-a42d-b0d520bcda66", "name": [ "G1 S TRANSITION%REACTOME DATABASE ID RELEASE 81%69206" ], "description": [ "G1 S Transition" ], "pvalue": 1.0862e-7, "gs_type": null, "gs_size": 131, "padj": 0.0000064476, "mcode_cluster_id": "Cluster 1", "NES": -1.9789, "genes": [ "AKT1", "AKT2", "AKT3", "CABLES1", "CCNA1", "CCNA2", "CCNB1", "CCND1", "CCNE1", "CCNE2", "CCNH", "CDC25A", "CDC45", "CDC6", "CDC7", "CDK1", "CDK2", "CDK4", "CDK7", "CDKN1A", "CDKN1B", "CDT1", "CKS1B", "CUL1", "DBF4", "DHFR", "E2F1", "E2F4", "E2F5", "E2F6", "FBXO5", "GMNN", "HDAC1", "LIN37", "LIN52", "LIN54", "LIN9", "MAX", "MCM10", "MCM2", "MCM3", "MCM4", "MCM5", "MCM6", "MCM7", "MCM8", "MNAT1", "MYC", "ORC1", "ORC2", "ORC3", "ORC4", "ORC5", "ORC6", "PCNA", "POLA1", "POLA2", "POLE", "POLE2", "POLE3", "POLE4", "PPP2CA", "PPP2CB", "PPP2R1A", "PPP2R1B", "PPP2R3B", "PRIM1", "PRIM2", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMB1", "PSMB10", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSMF1", "PTK6", "RB1", "RBBP4", "RBL1", "RBL2", "RPA1", "RPA2", "RPA3", "RPA4", "RPS27A", "RRM2", "SEM1", "SKP1", "SKP2", "TFDP1", "TFDP2", "TK1", "TYMS", "UBA52", "UBB", "UBC", "WEE1" ] }, "position": { "x": 494.3660639307088, "y": 792.0356854959139, "id": "f3d212cf-452e-4306-a42d-b0d520bcda66", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "11751e7a-3bd0-431e-b138-ad7cc154f9fb", "name": [ "REGULATION OF TYPE II INTERFERON PRODUCTION%GOBP%GO:0032649" ], "description": [ "regulation of type II interferon production" ], "pvalue": 0.0015, "gs_type": null, "gs_size": 89, "padj": 0.0217, "mcode_cluster_id": null, "NES": -1.7117, "genes": [ "AXL", "BTN3A1", "BTN3A2", "C1QBP", "CCR2", "CCR7", "CD14", "CD2", "CD244", "CD274", "CD276", "CD47", "CEBPG", "CLEC7A", "CR1", "CRTAM", "CYRIB", "DDIT3", "EBI3", "F2RL1", "FADD", "FOXP3", "FZD5", "GAS6", "HAVCR2", "HLA-A", "HLA-DPA1", "HLA-DPB1", "HLA-DRB1", "HMGB1", "HMHB1", "HSPD1", "IFNL1", "IL12A", "IL12B", "IL12RB1", "IL12RB2", "IL18", "IL18R1", "IL1B", "IL1R1", "IL21", "IL23A", "IL23R", "IL27", "IL36RN", "INHA", "INHBA", "IRGM", "ISG15", "ISL1", "JAK2", "LAPTM5", "LGALS9", "LGALS9B", "LGALS9C", "LILRB1", "LILRB4", "NR1H4", "PDCD1LG2", "PDE4B", "PDE4D", "PRNP", "PTPN22", "PYCARD", "RARA", "RASGRP1", "RIPK3", "SCRIB", "SIRPA", "SLAMF1", "SLAMF6", "SLC11A1", "SLC7A5", "TLR3", "TLR4", "TLR7", "TLR8", "TLR9", "TNFSF4", "TRIM27", "TXK", "TYK2", "UFC1", "VSIR", "XCL1", "ZC3H12A", "ZFPM1", "ZP3" ] }, "position": { "x": 37.5, "y": 2272.9446642487483, "id": "11751e7a-3bd0-431e-b138-ad7cc154f9fb" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "ecb8a2c4-6fa9-47ce-8f19-170be961ffe9", "name": [ "REGULATION OF CHONDROCYTE DIFFERENTIATION%GOBP%GO:0032330" ], "description": [ "regulation of chondrocyte differentiation" ], "pvalue": 0.0046, "gs_type": null, "gs_size": 28, "padj": 0.0479, "mcode_cluster_id": null, "NES": -1.6948, "genes": [ "ACVRL1", "ADAMTS12", "ADAMTS7", "BMPR1B", "CHADL", "EFEMP1", "GDF5", "GDF6", "GREM1", "HOXA11", "LOXL2", "MBOAT2", "MDK", "NKX3-2", "PKDCC", "PTHLH", "PTPN11", "RFLNA", "RFLNB", "SCIN", "SNAI2", "SOX5", "SOX6", "SOX9", "TGFBR1", "TRPS1", "WNT9A", "ZBTB16" ] }, "position": { "x": 3117.5, "y": 2195.9446642487483, "id": "ecb8a2c4-6fa9-47ce-8f19-170be961ffe9" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "c7502cba-4ca5-4627-b387-1b683d84c98d", "name": [ "MAJOR PATHWAY OF RRNA PROCESSING IN THE NUCLEOLUS AND CYTOSOL%REACTOME%R-HSA-6791226.5" ], "description": [ "Major pathway of rRNA processing in the nucleolus and cytosol" ], "pvalue": 3.3151e-11, "gs_type": null, "gs_size": 183, "padj": 3.2685e-9, "mcode_cluster_id": "Cluster 2", "NES": 2.2074, "genes": [ "BMS1", "BOP1", "BUD23", "BYSL", "C1D", "CSNK1D", "CSNK1E", "DCAF13", "DDX21", "DDX47", "DDX49", "DDX52", "DHX37", "DIS3", "EBNA1BP2", "EMG1", "ERI1", "EXOSC1", "EXOSC10", "EXOSC2", "EXOSC3", "EXOSC4", "EXOSC5", "EXOSC6", "EXOSC7", "EXOSC8", "EXOSC9", "FAU", "FBL", "FCF1", "FTSJ3", "GNL3", "HEATR1", "IMP3", "IMP4", "ISG20L2", "KRR1", "LAS1L", "LTV1", "MPHOSPH10", "MPHOSPH6", "MTREX", "NCL", "NIP7", "NOB1", "NOC4L", "NOL11", "NOL12", "NOL6", "NOL9", "NOP14", "NOP56", "NOP58", "PDCD11", "PELP1", "PES1", "PNO1", "PWP2", "RBM28", "RCL1", "RIOK1", "RIOK2", "RIOK3", "RPL10", "RPL10A", "RPL10L", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL22L1", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL26L1", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL36AL", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL39L", "RPL3L", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPP14", "RPP21", "RPP25", "RPP30", "RPP38", "RPP40", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "RRP1", "RRP36", "RRP7A", "RRP9", "SENP3", "SNU13", "TBL3", "TEX10", "TSR1", "UBA52", "UTP11", "UTP14A", "UTP14C", "UTP15", "UTP18", "UTP20", "UTP25", "UTP3", "UTP4", "UTP6", "WDR12", "WDR18", "WDR3", "WDR36", "WDR43", "WDR46", "WDR75", "XRN2" ] }, "position": { "x": 1058.9088387244956, "y": 455.89373206606814, "id": "c7502cba-4ca5-4627-b387-1b683d84c98d", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "name": [ "SEPARATION OF SISTER CHROMATIDS%REACTOME DATABASE ID RELEASE 81%2467813" ], "description": [ "Separation of Sister Chromatids" ], "pvalue": 1.5856e-8, "gs_type": null, "gs_size": 168, "padj": 0.0000011387, "mcode_cluster_id": null, "NES": -1.9955, "genes": [ "AHCTF1", "ANAPC1", "ANAPC10", "ANAPC11", "ANAPC15", "ANAPC16", "ANAPC2", "ANAPC4", "ANAPC5", "ANAPC7", "B9D2", "BIRC5", "BUB1", "BUB1B", "BUB3", "CDC16", "CDC20", "CDC23", "CDC26", "CDC27", "CDCA5", "CDCA8", "CENPA", "CENPC", "CENPE", "CENPF", "CENPH", "CENPI", "CENPK", "CENPL", "CENPM", "CENPN", "CENPO", "CENPP", "CENPQ", "CENPS", "CENPT", "CENPU", "CKAP5", "CLASP1", "CLASP2", "CLIP1", "DSN1", "DYNC1H1", "DYNC1I1", "DYNC1I2", "DYNC1LI1", "DYNC1LI2", "DYNLL1", "DYNLL2", "ERCC6L", "ESPL1", "INCENP", "ITGB3BP", "KIF18A", "KIF2A", "KIF2B", "KIF2C", "KNL1", "KNTC1", "MAD1L1", "MAD2L1", "MAPRE1", "MIS12", "NDC80", "NDE1", "NDEL1", "NSL1", "NUDC", "NUF2", "NUP107", "NUP133", "NUP160", "NUP37", "NUP43", "NUP85", "PAFAH1B1", "PDS5A", "PDS5B", "PLK1", "PMF1", "PPP1CC", "PPP2CA", "PPP2CB", "PPP2R1A", "PPP2R1B", "PPP2R5A", "PPP2R5B", "PPP2R5C", "PPP2R5D", "PPP2R5E", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "PTTG1", "RAD21", "RANBP2", "RANGAP1", "RCC2", "RPS27", "RPS27A", "SEC13", "SEM1", "SGO1", "SGO2", "SKA1", "SKA2", "SMC1A", "SMC3", "SPC24", "SPC25", "SPDL1", "STAG1", "STAG2", "TAOK1", "UBA52", "UBB", "UBC", "UBE2C", "UBE2D1", "UBE2E1", "UBE2S", "WAPL", "XPO1", "ZW10", "ZWILCH", "ZWINT" ] }, "position": { "x": 469.64274912409155, "y": 853.510323794163, "id": "1c82b5f4-d98c-4b40-b996-6ff3778937d9" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "name": [ "SIGNALING BY HEDGEHOG%REACTOME DATABASE ID RELEASE 81%5358351" ], "description": [ "Signaling by Hedgehog" ], "pvalue": 0.0011, "gs_type": null, "gs_size": 136, "padj": 0.0173, "mcode_cluster_id": "Cluster 1", "NES": -1.5796, "genes": [ "ADAM17", "ADCY1", "ADCY10", "ADCY2", "ADCY3", "ADCY4", "ADCY5", "ADCY6", "ADCY7", "ADCY8", "ADCY9", "ARRB1", "ARRB2", "BOC", "BTRC", "CDC73", "CDON", "CSNK1A1", "CUL1", "CUL3", "DERL2", "DHH", "DISP2", "DYNC2H1", "DZIP1", "EFCAB7", "ERLEC1", "EVC", "EVC2", "FUZ", "GAS1", "GAS8", "GLI1", "GLI2", "GLI3", "GNAS", "GPC5", "GPR161", "GRK2", "GSK3B", "HHAT", "HHIP", "IFT122", "IFT140", "IFT172", "IFT52", "IFT57", "IFT88", "IHH", "INTU", "IQCE", "ITCH", "KIF3A", "KIF7", "MKS1", "NOTUM", "NUMB", "OFD1", "OS9", "P4HB", "PRKACA", "PRKACB", "PRKACG", "PRKAR1A", "PRKAR1B", "PRKAR2A", "PRKAR2B", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "PTCH1", "RBX1", "RPGRIP1L", "RPS27A", "SCUBE2", "SEL1L", "SEM1", "SHH", "SKP1", "SMO", "SMURF1", "SMURF2", "SPOP", "SPOPL", "SUFU", "SYVN1", "TTC21B", "TULP3", "UBA52", "UBB", "UBC", "ULK3", "VCP", "WDR19", "WDR35" ] }, "position": { "x": 479.19077039488667, "y": 760.4691188841061, "id": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "name": [ "INFLUENZA VIRAL RNA TRANSCRIPTION AND REPLICATION%REACTOME DATABASE ID RELEASE 81%168273" ], "description": [ "Influenza Viral RNA Transcription and Replication" ], "pvalue": 9.1857e-10, "gs_type": null, "gs_size": 134, "padj": 7.8579e-8, "mcode_cluster_id": "Cluster 2", "NES": 2.2308, "genes": [ "AAAS", "DNAJC3", "FAU", "GRSF1", "GTF2F1", "GTF2F2", "HSP90AA1", "IPO5", "NDC1", "NUP107", "NUP133", "NUP153", "NUP155", "NUP160", "NUP188", "NUP205", "NUP210", "NUP214", "NUP35", "NUP37", "NUP42", "NUP43", "NUP50", "NUP54", "NUP62", "NUP85", "NUP88", "NUP93", "PARP1", "POLR2A", "POLR2B", "POLR2C", "POLR2D", "POLR2E", "POLR2F", "POLR2G", "POLR2H", "POLR2I", "POLR2J", "POLR2K", "POLR2L", "POM121", "POM121C", "RAE1", "RANBP2", "RPL10", "RPL10A", "RPL10L", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL22L1", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL26L1", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL36AL", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL39L", "RPL3L", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "SEC13", "TPR", "UBA52" ] }, "position": { "x": 803.7960559564149, "y": 672.5976534422128, "id": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "32436d28-1beb-496b-b8c1-c25ffb5d246b", "name": [ "IMMUNE RESPONSE-REGULATING CELL SURFACE RECEPTOR SIGNALING PATHWAY%GOBP%GO:0002768" ], "description": [ "immune response-regulating cell surface receptor signaling pathway" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 248, "padj": 0.0051, "mcode_cluster_id": "Cluster 28", "NES": -1.6587, "genes": [ "ABL1", "BAG6", "BANK1", "BAX", "BCAR1", "BCL10", "BCL2", "BLK", "BLNK", "BMX", "BTK", "BTLA", "BTN1A1", "BTN2A1", "BTN2A2", "BTN2A3P", "BTN3A1", "BTN3A2", "BTN3A3", "BTNL10P", "BTNL2", "BTNL3", "BTNL8", "BTNL9", "C3AR1", "C5AR1", "C5AR2", "CD14", "CD19", "CD24", "CD247", "CD276", "CD28", "CD33", "CD38", "CD3D", "CD3E", "CD3G", "CD40", "CD79A", "CD79B", "CD8A", "CD8B", "CHUK", "CLEC12B", "CLEC6A", "CLEC7A", "CMKLR1", "COLEC10", "COLEC11", "CR1", "CREBBP", "CSK", "CTLA4", "DENND1B", "ECSIT", "EIF2B1", "EIF2B2", "EIF2B3", "EIF2B4", "EIF2B5", "EP300", "ERMAP", "FCER1G", "FCGR1A", "FCGR2B", "FCGR3A", "FCHO1", "FCN1", "FCN2", "FCN3", "FER", "FFAR2", "FGR", "FPR1", "FPR2", "FPR3", "FYB1", "FYB2", "FYN", "GATA3", "GPLD1", "GPR32", "GPR32P1", "GPR33", "HCK", "HHLA2", "HLA-A", "HLA-DPB1", "HLA-DQB1", "HLA-DRB1", "HLA-DRB3", "HLA-G", "ICOSLG", "IGHA1", "IGHA2", "IGHD", "IGHE", "IGHG1", "IGHG2", "IGHG3", "IGHG4", "IGHM", "IGKC", "IGLC1", "IGLC3", "IGLC6", "IGLC7", "IKBKB", "IKBKG", "INPP5D", "IRAK1", "IRAK2", "IRAK4", "IRF3", "ITGAM", "ITK", "KHDRBS1", "KIR2DL1", "KIR2DS2", "KIT", "KLRC1", "KLRC2", "KLRC3", "KLRC4", "KLRD1", "LAT", "LAT2", "LAX1", "LBP", "LCK", "LCP2", "LGALS9", "LILRA2", "LILRA4", "LILRB1", "LILRB2", "LILRB4", "LIME1", "LIMK1", "LY96", "LYN", "MALT1", "MAP2K4", "MAP2K7", "MAP3K1", "MAP3K7", "MAPK10", "MAPK8", "MAPK9", "MBL2", "MEF2C", "MICB", "MNDA", "MOG", "MS4A1", "MYD88", "MYO1G", "NCKAP1L", "NCR3", "NFAM1", "NFATC2", "NFKBIA", "NFKBID", "NFKBIZ", "NMI", "NR4A3", "OAS1", "PAK1", "PAK2", "PAK3", "PDE4B", "PDE4D", "PIGR", "PIK3AP1", "PIK3CA", "PIK3CD", "PLA2G6", "PLCG1", "PLCG2", "PLD2", "PLEKHA1", "PLPP4", "PRAM1", "PRKCB", "PRKCD", "PRKCE", "PRKCQ", "PRKD2", "PSG9", "PTK2", "PTPN22", "PTPRC", "PTPRJ", "RAB11FIP2", "RBCK1", "RC3H1", "RC3H2", "RELA", "RFTN1", "RIPK2", "RNF31", "S100A14", "SCIMP", "SH2B2", "SKAP1", "SLA2", "SLC39A6", "SOS1", "SPG21", "SPPL3", "SRC", "STOML2", "SYK", "TBK1", "TEC", "THEMIS", "THEMIS2", "THY1", "TICAM1", "TICAM2", "TIRAP", "TLR2", "TLR4", "TLR5", "TNFRSF21", "TNIP2", "TNIP3", "TRAC", "TRAF3", "TRAF6", "TRBC1", "TRBC2", "TRDC", "TRGC1", "TRGC2", "TRIL", "TXK", "TYROBP", "UBE2N", "VAV1", "VAV2", "VAV3", "VTCN1", "WNK1", "YES1", "ZAP70", "ZC3H12A" ] }, "position": { "x": 1676.6095136810632, "y": 593.2176766478788, "id": "32436d28-1beb-496b-b8c1-c25ffb5d246b", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "57643064-d04f-4ab6-beb0-7326008d8656", "name": [ "INTRACELLULAR PH REDUCTION%GOBP%GO:0051452" ], "description": [ "intracellular pH reduction" ], "pvalue": 0.0033, "gs_type": null, "gs_size": 42, "padj": 0.0383, "mcode_cluster_id": "Cluster 25", "NES": 1.6985, "genes": [ "ATP6AP1", "ATP6AP2", "ATP6V0A1", "ATP6V0A2", "ATP6V0A4", "ATP6V0B", "ATP6V0C", "ATP6V0D1", "ATP6V0D2", "ATP6V0E1", "ATP6V0E2", "ATP6V1A", "ATP6V1B1", "ATP6V1B2", "ATP6V1D", "ATP6V1F", "ATP6V1H", "CCDC115", "CLCN3", "CLN3", "CLN5", "CLN6", "DMXL1", "DMXL2", "GPR89A", "GPR89B", "GRN", "LAMP1", "LAMP2", "PPT1", "RAB20", "RAB38", "RAB39A", "RAB7A", "RNASEK", "SLAMF8", "SLC11A1", "SLC4A7", "TCIRG1", "TMEM199", "TMEM9", "TPCN2" ] }, "position": { "x": 1319.2942053076154, "y": 76.78447288443485, "id": "57643064-d04f-4ab6-beb0-7326008d8656", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "name": [ "REGULATION OF PTEN STABILITY AND ACTIVITY%REACTOME DATABASE ID RELEASE 81%8948751" ], "description": [ "Regulation of PTEN stability and activity" ], "pvalue": 0.0047, "gs_type": null, "gs_size": 69, "padj": 0.0488, "mcode_cluster_id": "Cluster 1", "NES": -1.586, "genes": [ "AKT1", "AKT2", "AKT3", "CSNK2A1", "CSNK2A2", "CSNK2B", "FRK", "MKRN1", "NEDD4", "OTUD3", "PREX2", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "PTEN", "RNF146", "RPS27A", "SEM1", "STUB1", "TNKS", "TNKS2", "TRIM27", "UBA52", "UBB", "UBC", "USP13", "WWP2", "XIAP" ] }, "position": { "x": 440.51575139929855, "y": 769.1675227631896, "id": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "98c61e9d-3b1f-4f83-b8de-b03f552fcb71", "name": [ "TRIOSEPHOSPHATE ISOMERASE DEFICIENCY%PATHWHIZ%PW000539" ], "description": [ "Triosephosphate Isomerase Deficiency" ], "pvalue": 0.0017, "gs_type": null, "gs_size": 22, "padj": 0.0233, "mcode_cluster_id": "Cluster 8", "NES": 1.8347, "genes": [ "ALDOA", "BPGM", "ENO1", "FBP1", "G6PC1", "GALM", "GAPDH", "GPI", "HK2", "LDHA", "MDH2", "MPC1", "PANK1", "PC", "PCK1", "PGAM1", "PGAM2", "PGM1", "SLC25A11", "SLC2A2", "SLC37A4", "TPI1" ] }, "position": { "x": 3816.426921718313, "y": 1267.0658857916771, "id": "98c61e9d-3b1f-4f83-b8de-b03f552fcb71" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "c70bcf40-1f05-49f1-b48b-f6d265f4e774", "name": [ "REGULATION OF CELL FATE SPECIFICATION%GOBP%GO:0042659" ], "description": [ "regulation of cell fate specification" ], "pvalue": 0.0036, "gs_type": null, "gs_size": 19, "padj": 0.0409, "mcode_cluster_id": null, "NES": -1.8429, "genes": [ "CHD3", "CHD4", "DKK1", "ESRP1", "FGF2", "FZD7", "GATAD2A", "GATAD2B", "HDAC1", "HDAC2", "MBD3", "MESP1", "MTA1", "MTA2", "MTA3", "RBBP4", "RBBP7", "SOX17", "WNT3A" ] }, "position": { "x": 222.63229477096127, "y": 1981.9975082806777, "id": "c70bcf40-1f05-49f1-b48b-f6d265f4e774" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "4972b393-f94e-4331-9cd4-206ae4786f51", "name": [ "XANTHINURIA TYPE I%SMPDB%SMP0000512" ], "description": [ "Xanthinuria Type I" ], "pvalue": 0.0025, "gs_type": null, "gs_size": 37, "padj": 0.031, "mcode_cluster_id": "Cluster 3", "NES": -1.6821, "genes": [ "ADA", "ADCY2", "ADSL", "ADSS2", "AK1", "AMPD1", "APRT", "ATAD1", "ATIC", "DGUOK", "ENTPD5", "ENTPD8", "GART", "GDA", "GMPR", "GMPS", "GUCY1A2", "GUCY1B1", "GUK1", "HPRT1", "IMPDH1", "ITPA", "NME6", "NT5C2", "NUDT2", "NUDT5", "PAICS", "PDE10A", "PDE4D", "PFAS", "PNP", "PPAT", "PRPS1L1", "RRM1", "RRM2", "TXN", "XDH" ] }, "position": { "x": 1389.6457185953514, "y": 1403.7047360548077, "id": "4972b393-f94e-4331-9cd4-206ae4786f51", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "86486123-1382-45de-a35c-8b2fb38f5917", "name": [ "DOWNSTREAM SIGNALING EVENTS OF B CELL RECEPTOR (BCR)%REACTOME DATABASE ID RELEASE 81%1168372" ], "description": [ "Downstream signaling events of B Cell Receptor (BCR)" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 80, "padj": 0.0019, "mcode_cluster_id": "Cluster 1", "NES": -1.8438, "genes": [ "BCL10", "BTRC", "CALM1", "CARD11", "CHUK", "CUL1", "FBXW11", "FKBP1A", "HRAS", "IKBKB", "IKBKG", "MALT1", "MAP3K7", "NFATC1", "NFATC2", "NFATC3", "NFKB1", "NFKBIA", "NFKBIB", "NFKBIE", "NRAS", "PPIA", "PPP3CA", "PPP3CB", "PPP3R1", "PRKCB", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RASGRP1", "RASGRP3", "REL", "RELA", "RPS27A", "SEM1", "SKP1", "UBA52", "UBB", "UBC" ] }, "position": { "x": 451.9586361710586, "y": 834.4571990416233, "id": "86486123-1382-45de-a35c-8b2fb38f5917", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "84ccf364-4b64-40b0-9f3e-af6e9164b21c", "name": [ "CELLULAR RESPONSE TO INTERFERON-BETA%GOBP%GO:0035458" ], "description": [ "cellular response to interferon-beta" ], "pvalue": 0.0015, "gs_type": null, "gs_size": 23, "padj": 0.022, "mcode_cluster_id": null, "NES": -1.8245, "genes": [ "ACOD1", "AIM2", "CALM1", "CAMK2A", "CDC34", "HTRA2", "IFI16", "IFITM2", "IFNAR1", "IFNAR2", "IFNB1", "IRF1", "IRGM", "MNDA", "NDUFA13", "OAS1", "PNPT1", "PYDC5", "PYHIN1", "STAT1", "TRIM6", "UBE2G2", "UBE2K" ] }, "position": { "x": 1777.068732588266, "y": 1801.8587965586644, "id": "84ccf364-4b64-40b0-9f3e-af6e9164b21c" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "6b2872ec-b5d1-4d96-8dc1-9f3c00cafd79", "name": [ "PID_IL23_PATHWAY%MSIGDB_C2%PID_IL23_PATHWAY" ], "description": [ "PID_IL23_PATHWAY" ], "pvalue": 0.0005, "gs_type": null, "gs_size": 32, "padj": 0.0083, "mcode_cluster_id": null, "NES": -1.9715, "genes": [ "ALOX12B", "CCL2", "CD3E", "CXCL1", "CXCL9", "IF2E", "IF2F", "IL12B", "IL12RB1", "IL17A", "IL17F", "IL18", "IL18R1", "IL18RAP", "IL19", "IL1B", "IL2", "IL23A", "IL23R", "IL6", "MPO", "NFKB1", "NFKBIA", "NOS2", "PIK3R1", "RELA", "SOCS3", "STAT1", "STAT3", "STAT4", "TNF", "TYK2" ] }, "position": { "x": 1258.8972977847611, "y": 1860.5110076424717, "id": "6b2872ec-b5d1-4d96-8dc1-9f3c00cafd79" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "f63f3d19-3430-449b-95e1-efa9cce6e635", "name": [ "INTERFERON SIGNALING%REACTOME%R-HSA-913531.4" ], "description": [ "Interferon Signaling" ], "pvalue": 4.727e-20, "gs_type": null, "gs_size": 248, "padj": 3.4371e-17, "mcode_cluster_id": "Cluster 38", "NES": -2.4884, "genes": [ "AAAS", "ABCE1", "ADAR", "ARIH1", "B2M", "BECN1", "BST2", "CAMK2A", "CAMK2B", "CAMK2D", "CAMK2G", "CD44", "CDK1", "CENPS", "CENPX", "CHUK", "CIITA", "DHX9", "DNAJC3", "DUS2", "EGR1", "EIF2AK2", "EIF2S1", "EIF2S2", "EIF2S3", "EIF4A1", "EIF4A2", "EIF4A3", "EIF4E", "EIF4E2", "EIF4E3", "EIF4G1", "EIF4G2", "EIF4G3", "FAAP100", "FAAP20", "FAAP24", "FANCA", "FANCB", "FANCC", "FANCE", "FANCF", "FANCG", "FANCL", "FANCM", "FCGR1A", "FCGR1BP", "FLNA", "FLNB", "GBP1", "GBP2", "GBP3", "GBP4", "GBP5", "GBP6", "GBP7", "HERC5", "HLA-A", "HLA-B", "HLA-C", "HLA-DPA1", "HLA-DPB1", "HLA-DQA1", "HLA-DQA2", "HLA-DQB1", "HLA-DQB2", "HLA-DRA", "HLA-DRB1", "HLA-DRB3", "HLA-DRB4", "HLA-DRB5", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "HSPA1A", "HSPA1B", "HSPA1L", "HSPA2", "HSPA8", "ICAM1", "IFI27", "IFI30", "IFI35", "IFI6", "IFIT1", "IFIT2", "IFIT3", "IFIT5", "IFITM1", "IFITM2", "IFITM3", "IFNA10", "IFNA13", "IFNA14", "IFNA16", "IFNA17", "IFNA2", "IFNA21", "IFNA4", "IFNA5", "IFNA6", "IFNA7", "IFNA8", "IFNAR1", "IFNB1", "IFNG", "IFNGR1", "IFNGR2", "IKBKB", "IKBKG", "ILF2", "ILF3", "IP6K2", "IRF1", "IRF2", "IRF3", "IRF4", "IRF5", "IRF6", "IRF7", "IRF8", "IRF9", "ISG15", "ISG20", "JAK1", "JAK2", "KPNA1", "KPNA2", "KPNA3", "KPNA4", "KPNA5", "KPNA7", "KPNB1", "MAP2K6", "MAPK1", "MAPK3", "MAVS", "MID1", "MT2A", "MX1", "MX2", "NCAM1", "NCK1", "NDC1", "NEDD4", "NPM1", "NUP107", "NUP133", "NUP153", "NUP155", "NUP160", "NUP188", "NUP205", "NUP210", "NUP214", "NUP35", "NUP37", "NUP42", "NUP43", "NUP50", "NUP54", "NUP62", "NUP85", "NUP88", "NUP93", "OAS1", "OAS2", "OAS3", "OASL", "PDE12", "PIAS1", "PIN1", "PLCG1", "PML", "POM121", "POM121C", "PPM1B", "PPP2CA", "PPP2CB", "PPP2R1A", "PPP2R1B", "PPP2R5A", "PRKCD", "PRKRA", "PSMB8", "PTAFR", "PTPN1", "PTPN11", "PTPN2", "PTPN6", "RAE1", "RAF1", "RANBP2", "RIGI", "RNASEL", "RPS27A", "RSAD2", "SAMHD1", "SEC13", "SMAD7", "SNCA", "SOCS1", "SOCS3", "SP100", "SPHK1", "STAT1", "STAT2", "STAT3", "SUMO1", "TARBP2", "TP53", "TPR", "TRIM10", "TRIM14", "TRIM17", "TRIM2", "TRIM21", "TRIM22", "TRIM25", "TRIM26", "TRIM29", "TRIM3", "TRIM31", "TRIM34", "TRIM35", "TRIM38", "TRIM45", "TRIM46", "TRIM48", "TRIM5", "TRIM6", "TRIM62", "TRIM68", "TRIM8", "TYK2", "UBA52", "UBA7", "UBB", "UBC", "UBE2E1", "UBE2I", "UBE2L6", "UBE2N", "USP18", "VCAM1", "XAF1", "YBX1" ] }, "position": { "x": 115.22654049673329, "y": 1299.6604377498024, "id": "f63f3d19-3430-449b-95e1-efa9cce6e635", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "c62811bd-5d3d-4d55-9ec3-98e2930a0fbc", "name": [ "CHROMOSOME ORGANIZATION%GOBP%GO:0051276" ], "description": [ "chromosome organization" ], "pvalue": 0.0038, "gs_type": null, "gs_size": 392, "padj": 0.0417, "mcode_cluster_id": null, "NES": -1.3691, "genes": [ "AAAS", "ABL1", "ABRAXAS1", "ABRAXAS2", "ACD", "ACIN1", "ACTL6A", "ACTR5", "ACTR8", "AIFM1", "AKAP8L", "ANKRD31", "ANKRD53", "APEX1", "ARHGEF10", "ASCC1", "ASCC2", "ASCC3", "ATM", "ATR", "ATRX", "AURKB", "AURKC", "AXIN2", "BAG6", "BANF1", "BANF2", "BCCIP", "BECN1", "BIRC5", "BLM", "BOD1", "BUB1", "BUB1B", "CCDC61", "CCNB1", "CCNB1IP1", "CDC23", "CDC45", "CDCA5", "CDCA8", "CDK2", "CDT1", "CENPA", "CENPC", "CENPE", "CENPF", "CENPH", "CENPI", "CENPK", "CENPT", "CENPV", "CENPW", "CEP192", "CEP55", "CHAMP1", "CHEK2", "CHMP1A", "CHMP1B", "CHMP2A", "CHMP2B", "CHMP3", "CHMP4A", "CHMP4B", "CHMP4C", "CHMP5", "CHMP6", "CHMP7", "CIP2A", "CLASP1", "CLASP2", "CTC1", "CUL3", "DCLRE1B", "DCLRE1C", "DCTN2", "DDX1", "DDX11", "DDX11L8", "DDX12P", "DFFB", "DHX36", "DHX9", "DIS3L2", "DKC1", "DLGAP5", "DMC1", "DNA2", "DOT1L", "DSCC1", "DTD1", "EML3", "EML4", "ERCC1", "ERCC3", "ERCC4", "ERN2", "ESCO1", "ESCO2", "ESPL1", "EXO1", "EZH1", "EZH2", "FANCD2", "FBXW7", "FEN1", "FLNA", "GAR1", "GEM", "GINS1", "GINS2", "GINS3", "GINS4", "GOLGA2", "GPER1", "H1-0", "H1-1", "H1-10", "H1-2", "H1-3", "H1-4", "H1-5", "H1-6", "H1-7", "H1-8", "H1-9P", "H2BW1", "H3-3B", "H3C8", "H4C9", "HASPIN", "HAT1", "HDAC8", "HHEX", "HJURP", "HMGA1", "HMGB1", "HMGB2", "HMGB3", "HNRNPA2B1", "HORMAD1", "HORMAD2", "HSP90AA1", "HSP90AB1", "HUS1", "HUS1B", "IGHMBP2", "IHO1", "INCENP", "INO80", "INO80B", "INO80C", "INO80D", "INO80E", "KASH5", "KAT6A", "KIF11", "KIF14", "KIF15", "KIF18A", "KIF18B", "KIF22", "KIF23", "KIF25", "KIF2A", "KIF2C", "KIF3B", "KIF4A", "KIF4B", "KIFC1", "KIFC2", "KLHL22", "KMT5A", "KNL1", "KNSTRN", "KNTC1", "KPNB1", "LATS1", "LDB1", "LIG4", "LSM14A", "LTO1", "MAD1L1", "MAD2L2", "MAJIN", "MAP10", "MAP9", "MAPRE1", "MAU2", "MCM2", "MCM3", "MCM4", "MCM5", "MCM6", "MCM7", "MCM8", "MCM9", "MCMBP", "MCRS1", "MEI4", "MEIKIN", "MEIOB", "MEIOC", "MIS12", "MIS18A", "MISP", "MND1", "MRE11", "MSH2", "MSH3", "MSH5", "MSH6", "MTERF1", "MYC", "MZT1", "NAA10", "NAA50", "NASP", "NBN", "NCAPD2", "NCAPD3", "NCAPG", "NCAPG2", "NCAPH", "NCAPH2", "NDC80", "NFRKB", "NHP2", "NIPBL", "NOP10", "NSMCE2", "NUDC", "NUF2", "NUP107", "NUP133", "NUP155", "NUP62", "NUP98", "NUSAP1", "OFD1", "OIP5", "P3H4", "PARP1", "PARP3", "PCID2", "PCNA", "PDCD6IP", "PDS5A", "PDS5B", "PHB2", "PHF13", "PIBF1", "PIF1", "PINX1", "PLK1", "POGZ", "POT1", "PPP1CA", "PRC1", "PRDM9", "PRKDC", "PRM1", "PRM2", "PSMC3IP", "PSRC1", "PTGES3", "PURA", "RAB11A", "RACGAP1", "RAD21", "RAD21L1", "RAD50", "RAD51", "RAD51C", "RAD51D", "RAE1", "RAN", "RANGRF", "RB1", "REC8", "RECQL", "RECQL4", "RECQL5", "RFC1", "RHOA", "RIF1", "RMDN1", "RMI2", "RNF212", "RNF212B", "RPA1", "RPA2", "RPA3", "RRS1", "RTEL1", "RUVBL1", "RUVBL2", "SEH1L", "SGO1", "SGO2", "SHLD1", "SHLD2", "SHLD3", "SHOC1", "SIRT2", "SIRT6", "SIRT7", "SIX6OS1", "SKA1", "SKA2", "SKA3", "SLX1B", "SLX4", "SMARCAL1", "SMC1A", "SMC1B", "SMC2", "SMC3", "SMC4", "SMC5", "SMC6", "SP100", "SPAG5", "SPDL1", "SPICE1", "SPO16", "SSBP1", "STAG1", "STAG2", "STAG3", "STN1", "SUGT1", "SUPV3L1", "SYCE1", "SYCE2", "SYCE3", "SYCP1", "SYCP2", "TCF7L2", "TEN1", "TENT4A", "TEP1", "TERB1", "TERB2", "TERF1", "TERF2", "TERF2IP", "TERT", "TEX11", "TEX12", "TEX14", "TEX15", "TFIP11", "TFPT", "TINF2", "TNKS1BP1", "TOP1", "TOP1MT", "TOP2A", "TOP2B", "TOP3A", "TOP3B", "TOPBP1", "TPX2", "TRIP13", "TTN", "TUBG1", "TUBG2", "TWNK", "UCHL5", "UHRF1", "UPF1", "VPS4A", "VPS4B", "WAPL", "WRAP53", "WRAP73", "WRN", "XPA", "XRCC3", "XRCC5", "XRCC6", "YY1", "ZBTB48", "ZCWPW1", "ZNF207", "ZNF365", "ZNF827", "ZRANB3", "ZSCAN4", "ZW10", "ZWINT" ] }, "position": { "x": 345.5, "y": 2195.9446642487483, "id": "c62811bd-5d3d-4d55-9ec3-98e2930a0fbc" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "f43c9ccd-e7e0-4f61-add5-23a61fcdc9ce", "name": [ "REGULATION OF IMMUNE EFFECTOR PROCESS%GOBP%GO:0002697" ], "description": [ "regulation of immune effector process" ], "pvalue": 0.0004, "gs_type": null, "gs_size": 286, "padj": 0.0073, "mcode_cluster_id": "Cluster 5", "NES": -1.6115, "genes": [ "A2M", "ADGRE2", "AGER", "AHR", "ANKRD17", "ANXA1", "AP1G1", "APOA1", "APOA2", "APPL1", "APPL2", "ARG1", "ARRB2", "B2M", "BATF", "BCL10", "BRD2", "BRD4", "BST2", "BTK", "C12orf4", "C17orf99", "C1QBP", "C4BPA", "C4BPB", "CADM1", "CAMK4", "CCL19", "CCR2", "CD160", "CD177", "CD1A", "CD1B", "CD1C", "CD1D", "CD1E", "CD22", "CD226", "CD244", "CD274", "CD300A", "CD46", "CD55", "CD59", "CD74", "CD80", "CD81", "CD84", "CD86", "CEACAM1", "CFH", "CFP", "CLC", "CLCF1", "CLEC12B", "CLEC7A", "COLEC10", "COLEC11", "CR1", "CR1L", "CR2", "CRTAM", "CUEDC2", "CX3CR1", "CYRIB", "DDRGK1", "DDX60", "DENND1B", "DHX58", "DNAJB9", "DNASE1", "DNASE1L3", "ENPP3", "EP300", "EPHB2", "F2RL1", "FADD", "FBXO38", "FCGR2B", "FCN1", "FCN2", "FCN3", "FCRL3", "FER", "FES", "FFAR2", "FFAR3", "FGR", "FOXJ1", "FOXP3", "FUT7", "FZD5", "GAB2", "GPI", "GPRC5B", "GRN", "HAVCR2", "HFE", "HLA-A", "HLA-B", "HLA-C", "HLA-DMB", "HLA-DRA", "HLA-DRB1", "HLA-DRB3", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "HMCES", "HMGB1", "HSPD1", "ICAM1", "IFNA2", "IFNB1", "IFNG", "IFNL1", "IL10", "IL12A", "IL12B", "IL12RB1", "IL18", "IL18R1", "IL1B", "IL1R1", "IL2", "IL21", "IL23A", "IL23R", "IL27", "IL4", "IL4I1", "IL6", "INAVA", "INS", "IRAK3", "IRF4", "IRF5", "ITGAM", "ITGB2", "JAK3", "JUNB", "KIR2DL4", "KIT", "KLK3", "KLK5", "KLK7", "KLRB1", "KLRC1", "KLRC2", "KLRC3", "KLRC4", "KLRD1", "KLRK1", "KMT5B", "KMT5C", "LACC1", "LAMP1", "LAPTM5", "LBP", "LEP", "LGALS3", "LGALS9", "LILRB1", "LILRB4", "LOXL3", "LYN", "MAD2L2", "MALT1", "MAP3K7", "MAVS", "MBL2", "MICA", "MICB", "MR1", "MYO18A", "MZB1", "NCKAP1L", "NCR1", "NCR3", "NECTIN2", "NFKBID", "NFKBIZ", "NLRP3", "NOD2", "NOS2", "NR4A3", "OPA1", "PARP3", "PAXIP1", "PCK1", "PDCD1", "PGC", "PHB1", "PHB2", "PIK3R6", "PKP3", "PLA2G3", "PLA2G5", "PLCG2", "PRKCZ", "PTPRC", "PVR", "RAET1E", "RAET1G", "RAET1L", "RARA", "RASGRP1", "RASGRP4", "RBP4", "RC3H1", "RC3H2", "RIF1", "RIGI", "RIPK3", "RPS19", "RSAD2", "S100A9", "SASH3", "SCIMP", "SEMA7A", "SERPINB4", "SERPINB9", "SERPING1", "SH2D1B", "SHLD1", "SHLD2", "SHLD3", "SIRT1", "SLAMF6", "SLAMF8", "SLC15A4", "SLC22A13", "SLC7A5", "SMAD7", "SNX4", "SOCS5", "SPHK2", "SPI1", "STAP1", "STX4", "STX7", "STXBP2", "SUPT6H", "SUSD4", "SVEP1", "SYK", "TBX21", "TFRC", "TGFB1", "TGFB2", "TGFB3", "TICAM1", "TLR9", "TNF", "TNFRSF14", "TNFRSF1B", "TNFRSF4", "TNFSF13", "TNFSF4", "TP53BP1", "TRAF2", "TRAF6", "TREM2", "TRIL", "TRIM6", "TRPM4", "TYROBP", "UFL1", "ULBP1", "ULBP2", "ULBP3", "UNC13D", "USP17L2", "VAMP3", "VAMP7", "VAMP8", "VSIG4", "WAS", "WNT5A", "XBP1", "XCL1", "ZBTB1", "ZC3H12A", "ZNF683", "ZP3" ] }, "position": { "x": 2215.527721127144, "y": 640.504963242284, "id": "f43c9ccd-e7e0-4f61-add5-23a61fcdc9ce", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "286ebe19-7e02-4dc8-a06f-fd8b9cbd8a7c", "name": [ "HALLMARK_EPITHELIAL_MESENCHYMAL_TRANSITION%MSIGDBHALLMARK%HALLMARK_EPITHELIAL_MESENCHYMAL_TRANSITION" ], "description": [ "HALLMARK_EPITHELIAL_MESENCHYMAL_TRANSITION" ], "pvalue": 0.0007, "gs_type": null, "gs_size": 165, "padj": 0.0121, "mcode_cluster_id": null, "NES": 1.5768, "genes": [ "ABI3BP", "ACTA2", "ADAM12", "APLP1", "AREG", "BASP1", "BDNF", "BMP1", "BPGF-1", "CADM1", "CALD1", "CALU", "CD44", "CD59", "CDH11", "CDH2", "CDH6", "COL12A1", "COL16A1", "COL1A1", "COL1A2", "COL3A1", "COL4A1", "COL4A2", "COL5A2", "COL5A3", "COL8A2", "COLGALT1", "COPA", "CRLF1", "CTGF", "CTHRC1", "CXCL1", "CXCL12", "CXCL6", "CXCL8", "CXNK2", "CYR61", "DCN", "DKFZp434N181", "DKFZp564O1822", "DKFZp586A1519", "DKFZp686D0714", "DKFZp686P11128", "DKK1", "DPYSL3", "DST", "ECM2", "EDIL3", "EMP3", "ENO2", "FAP", "FAS", "FBN1", "FBN2", "FERMT2", "FGF2", "FLNA", "FOXC2", "FSTL1", "FSTL3", "FUCA1", "FZD8", "GADD45A", "GADD45B", "GAS1", "GEM", "GLIPR1", "GPX7", "GREM1", "HEL-S-108", "HEL-S-273", "HEL-S-45", "HEL-S-66", "HEL113", "HTRA1", "ID2", "IGFBP2", "IGFBP4", "IL15", "IL32", "IL6", "INHBA", "ITGA2", "ITGAV", "ITGB1", "ITGB3", "ITGB5", "JUN", "LAMA1", "LAMA3", "LAMC1", "LAMC2", "LOX", "LOXL1", "LOXL2", "MAGEE1", "MATN3", "MCM7", "MFAP5", "MGP", "MMP14", "MMP2", "MMP3", "MSX1", "MXRA5", "MYLK", "NID2", "NNMT", "NT5E", "NTM", "OXTR", "P3H1", "PCOLCE", "PCOLCE2", "PDLIM4", "PFN2", "PLAUR", "PLOD1", "PLOD2", "PMP22", "POSTN", "PPIB", "PRRX1", "PRSS2", "PTHLH", "PTX3", "RGS4", "RHOB", "SCG2", "SDC1", "SDC4", "SERPINE1", "SERPINE2", "SFRP1", "SFRP4", "SGCB", "SGCD", "SGCG", "SLC6A8", "SLIT2", "SLIT3", "SNAI2", "SNTB1", "SPARC", "SPOCK1", "SPP1", "TFPI2", "TGFB1", "TGFBI", "TGFBR3", "THBS1", "THBS2", "THY1", "TIMP1", "TIMP3", "TMEPAI", "TNFAIP3", "TNFRSF11B", "TNFRSF12A", "VCAM1", "VCAN", "VEGFA", "VEGFC", "WIPF1" ] }, "position": { "x": 4149.539072651805, "y": 2195.9446642487483, "id": "286ebe19-7e02-4dc8-a06f-fd8b9cbd8a7c" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "e28908cc-29cd-43d2-a973-766019ad5a3b", "name": [ "PROTEIN-PROTEIN INTERACTIONS AT SYNAPSES%REACTOME DATABASE ID RELEASE 81%6794362" ], "description": [ "Protein-protein interactions at synapses" ], "pvalue": 0, "gs_type": null, "gs_size": 87, "padj": 0.0006, "mcode_cluster_id": null, "NES": 2.0165, "genes": [ "APBA1", "APBA2", "APBA3", "BEGAIN", "CASK", "DBNL", "DLG1", "DLG2", "DLG3", "DLG4", "DLGAP1", "DLGAP2", "DLGAP3", "DLGAP4", "EPB41", "EPB41L1", "EPB41L2", "EPB41L3", "EPB41L5", "FLOT1", "FLOT2", "GRIA1", "GRIA3", "GRIA4", "GRIN1", "GRIN2A", "GRIN2B", "GRIN2C", "GRIN2D", "GRM1", "GRM5", "HOMER1", "HOMER2", "HOMER3", "IL1RAPL1", "IL1RAPL2", "LIN7A", "LIN7B", "LIN7C", "LRFN1", "LRFN2", "LRFN3", "LRFN4", "LRRC4B", "LRRTM1", "LRRTM2", "LRRTM3", "LRRTM4", "NLGN1", "NLGN2", "NLGN3", "NLGN4X", "NLGN4Y", "NRXN1", "NRXN2", "NRXN3", "NTRK3", "PDLIM5", "PPFIA1", "PPFIA2", "PPFIA3", "PPFIA4", "PPFIBP1", "PPFIBP2", "PTPRD", "PTPRF", "PTPRS", "RTN3", "SHANK1", "SHANK2", "SHANK3", "SHARPIN", "SIPA1L1", "SLITRK1", "SLITRK2", "SLITRK3", "SLITRK4", "SLITRK5", "SLITRK6", "STX1A", "STXBP1", "SYT1", "SYT10", "SYT12", "SYT2", "SYT7", "SYT9" ] }, "position": { "x": 4118.5901090120715, "y": 1920.6106172080513, "id": "e28908cc-29cd-43d2-a973-766019ad5a3b" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "8e240300-9c7e-4412-a085-4314945210b7", "name": [ "PROTEIN SYNTHESIS: ASPARTIC ACID%SMPDB%SMP0111858" ], "description": [ "Protein Synthesis: Aspartic Acid" ], "pvalue": 7.3744e-18, "gs_type": null, "gs_size": 80, "padj": 1.8806e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.8127, "genes": [ "DARS1", "FAU", "RACK1", "RPL10", "RPL10A", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "UBA52" ] }, "position": { "x": 867.9422890050042, "y": 659.5441976621985, "id": "8e240300-9c7e-4412-a085-4314945210b7", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "546ec70e-4642-4a9a-a442-3ac0871db18c", "name": [ "CELL FATE COMMITMENT%GOBP%GO:0045165" ], "description": [ "cell fate commitment" ], "pvalue": 0.0033, "gs_type": null, "gs_size": 147, "padj": 0.0385, "mcode_cluster_id": null, "NES": -1.5887, "genes": [ "ACVR1", "APC", "APC2", "ARHGEF2", "ASCL1", "ATOH1", "ATOH7", "BATF", "BHLHA15", "BHLHE22", "BHLHE23", "BMP2", "CDC73", "CTR9", "CTSL", "CYP26B1", "DHH", "DLL1", "DLL4", "DOCK7", "DSCAML1", "EOMES", "EPAS1", "EPOP", "EYA2", "FGF13", "FGFR2", "FOXA2", "FOXI3", "FOXN4", "FOXP3", "GAS1", "GATA1", "GATA2", "GATA3", "GATA4", "GATA5", "GATA6", "GLI2", "GSC", "HES5", "HOXA11", "ID2", "IFRD1", "IHH", "IL6", "IRF4", "ISL1", "ISL2", "JAG1", "JAG2", "JAK1", "KLF4", "LEO1", "LY9", "MCL1", "MEF2C", "MESP1", "MGA", "MNX1", "MYF5", "MYF6", "MYL2", "MYOD1", "MYOG", "MYT1L", "NANOG", "NOTCH2", "NOTCH4", "NR2F2", "NRP1", "NTF4", "PAF1", "PAX2", "PAX6", "PDPN", "POU3F2", "POU4F1", "POU5F1", "POU6F2", "PPARG", "PRDM1", "PRDM4", "PROX1", "RAB10", "RBPJ", "RTF1", "SHH", "SIX2", "SLAMF6", "SLAMF8", "SMAD2", "SMAD4", "SOCS3", "SOX13", "SOX17", "SOX2", "SOX5", "SOX6", "SOX8", "SOX9", "SPN", "STAT3", "TAL1", "TBR1", "TBX1", "TBX10", "TBX15", "TBX18", "TBX19", "TBX2", "TBX20", "TBX21", "TBX22", "TBX3", "TBX4", "TBX5", "TBX6", "TBXT", "TCF3", "TCF7L2", "TEAD3", "TGFBR1", "TM2D3", "TOX", "TRIM15", "WNT1", "WNT10A", "WNT10B", "WNT11", "WNT16", "WNT2", "WNT2B", "WNT3", "WNT3A", "WNT4", "WNT5A", "WNT5B", "WNT6", "WNT7A", "WNT7B", "WNT8A", "WNT8B", "WNT9A", "WNT9B", "WT1", "ZFPM1" ] }, "position": { "x": 1577.5, "y": 2195.9446642487483, "id": "546ec70e-4642-4a9a-a442-3ac0871db18c" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "3e8dd08d-a111-414e-905a-faeed681e3f5", "name": [ "XANTHINURIA TYPE II%PATHWHIZ%PW000489" ], "description": [ "Xanthinuria Type II" ], "pvalue": 0.0025, "gs_type": null, "gs_size": 37, "padj": 0.031, "mcode_cluster_id": "Cluster 3", "NES": -1.6821, "genes": [ "ADA", "ADCY2", "ADSL", "ADSS2", "AK1", "AMPD1", "APRT", "ATAD1", "ATIC", "DGUOK", "ENTPD5", "ENTPD8", "GART", "GDA", "GMPR", "GMPS", "GUCY1A2", "GUCY1B1", "GUK1", "HPRT1", "IMPDH1", "ITPA", "NME6", "NT5C2", "NUDT2", "NUDT5", "PAICS", "PDE10A", "PDE4D", "PFAS", "PNP", "PPAT", "PRPS1L1", "RRM1", "RRM2", "TXN", "XDH" ] }, "position": { "x": 1551.3371803718715, "y": 1313.0743212527655, "id": "3e8dd08d-a111-414e-905a-faeed681e3f5", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "name": [ "REGULATION OF ACTIVATED PAK-2P34 BY PROTEASOME MEDIATED DEGRADATION%REACTOME DATABASE ID RELEASE 81%211733" ], "description": [ "Regulation of activated PAK-2p34 by proteasome mediated degradation" ], "pvalue": 0, "gs_type": null, "gs_size": 50, "padj": 0.0006, "mcode_cluster_id": "Cluster 1", "NES": -2.0428, "genes": [ "PAK2", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RPS27A", "SEM1", "UBA52", "UBB", "UBC" ] }, "position": { "x": 429.90247084088594, "y": 772.2683690559332, "id": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "dbf87f13-0aa3-4a21-9ca8-e8f640b6202c", "name": [ "REGIONALIZATION%GOBP%GO:0003002" ], "description": [ "regionalization" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 208, "padj": 0.0025, "mcode_cluster_id": null, "NES": -1.6956, "genes": [ "ACVR1", "ACVR2B", "ACVRL1", "AHI1", "AIDA", "APLNR", "ARL13B", "ARL6", "ASCL1", "ATP6AP2", "BASP1", "BBS5", "BBS7", "BHLHE40", "BHLHE41", "BMI1", "BMP1", "BMP2", "BMP4", "BMPR1A", "BMPR1B", "BMPR2", "C1QA", "C3", "CAPRIN2", "CCDC103", "CCDC39", "CCDC40", "CDX1", "CDX2", "CDX4", "CELSR2", "CER1", "CFAP45", "CFAP52", "CFAP53", "CFC1", "CFC1B", "CHRD", "CIROP", "CITED2", "COBL", "CRB2", "CRIPTO", "CRIPTO3", "CXXC4", "CYP26B1", "CYP26C1", "DAND5", "DCANP1", "DDIT3", "DLL1", "DLL4", "DNAAF1", "DNAAF11", "DNAAF4", "DNAH11", "DNAH5", "DNAI1", "DNAI2", "DSCAML1", "DVL1", "DVL2", "ENG", "ENKUR", "FBXL15", "FGF8", "FGFR2", "FOLR1", "FOXA2", "FOXB1", "FOXD1", "FOXH1", "FOXJ1", "FOXN4", "FZD5", "GALNT11", "GATA4", "GLI2", "GREM1", "HAND1", "HELT", "HES1", "HES2", "HES3", "HES4", "HES5", "HES6", "HES7", "HEY1", "HEY2", "HEYL", "HHEX", "HOXA11", "HOXA3", "HOXA4", "HOXA5", "HOXA6", "HOXA7", "HOXA9", "HOXB3", "HOXB4", "HOXB5", "HOXB6", "HOXB7", "HOXB9", "HOXC4", "HOXC5", "HOXC6", "HOXC9", "HOXD11", "HOXD3", "HOXD4", "HOXD8", "HOXD9", "IFT122", "IHH", "ISL1", "ITGAM", "KDM2B", "KIF3B", "LEFTY1", "LEFTY2", "LFNG", "LHX1", "LMX1B", "LRP2", "MDFI", "MEF2C", "MEGF8", "MESP1", "MESP2", "MICAL2", "MKKS", "MMP21", "MTF2", "NBL1", "NCLN", "NDRG4", "NEUROG1", "NKX2-5", "NODAL", "NOG", "NOMO3", "NOTCH1", "NPHP3", "NTF4", "ODAD2", "ODAD3", "ODAD4", "OFD1", "OSR1", "OTX2", "PAX2", "PAX8", "PBX3", "PCSK5", "PIERCE1", "PIERCE2", "PITX2", "PKD1L1", "PKD2", "PLD6", "PTCH1", "RELN", "RFX3", "RIPPLY1", "RIPPLY2", "SETDB2", "SFRP1", "SHH", "SIX2", "SIX3", "SKI", "SMAD2", "SMAD6", "SMO", "SOX17", "SOX18", "SRF", "STIL", "TASOR", "TBX1", "TBX18", "TBX2", "TBX20", "TBX3", "TBX6", "TBXT", "TDRD1", "TDRD5", "TDRD6", "TDRD7", "TDRKH", "TGFBR1", "TGFBR2", "TIFAB", "TLL1", "TLL2", "VANGL2", "WIF1", "WLS", "WNT2B", "WNT7B", "WNT8A", "WNT8B", "WT1", "ZIC3" ] }, "position": { "x": 485.2623453147952, "y": 1463.4679147208144, "id": "dbf87f13-0aa3-4a21-9ca8-e8f640b6202c" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "ff142123-42da-474f-aabe-17ebaf430321", "name": [ "TYPE I INTERFERON INDUCTION AND SIGNALING DURING SARS COV 2 INFECTION%WIKIPATHWAYS_20240410%WP4868%HOMO SAPIENS" ], "description": [ "Type I interferon induction and signaling during SARS CoV 2 infection" ], "pvalue": 8.0709e-9, "gs_type": null, "gs_size": 29, "padj": 5.9428e-7, "mcode_cluster_id": null, "NES": -2.3634, "genes": [ "ACE2", "EIF2AK2", "IFIH1", "IFNAR1", "IFNAR2", "IKBKE", "IRAK4", "IRF3", "IRF7", "IRF9", "JAK1", "MAVS", "MYD88", "OAS1", "OAS2", "OAS3", "RIGI", "STAT1", "STAT2", "TBK1", "TLR3", "TLR4", "TLR7", "TLR9", "TMPRSS2", "TRAF3", "TRAF6", "TREML4", "TYK2" ] }, "position": { "x": 2371.3698475310666, "y": 1236.5284173408518, "id": "ff142123-42da-474f-aabe-17ebaf430321" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "5718f08c-7494-4720-99b2-9b21153525db", "name": [ "CARBOHYDRATE DERIVATIVE BIOSYNTHETIC PROCESS%GOBP%GO:1901137" ], "description": [ "carbohydrate derivative biosynthetic process" ], "pvalue": 0.0039, "gs_type": null, "gs_size": 520, "padj": 0.0427, "mcode_cluster_id": null, "NES": -1.3124, "genes": [ "A4GALT", "A4GNT", "ABCC5", "ACACA", "ACAT1", "ACLY", "ACOT7", "ACSBG1", "ACSBG2", "ACSF3", "ACSL1", "ACSL3", "ACSL4", "ACSL5", "ACSL6", "ACSS1", "ACSS2", "ADA", "ADA2", "ADAL", "ADCY1", "ADCY10", "ADCY2", "ADCY3", "ADCY4", "ADCY5", "ADCY6", "ADCY7", "ADCY8", "ADCY9", "ADSL", "ADSS1", "ADSS2", "AK5", "AKR1A1", "ALDOA", "ALG1", "ALG10", "ALG10B", "ALG11", "ALG12", "ALG13", "ALG14", "ALG1L2", "ALG2", "ALG3", "ALG5", "ALG6", "ALG8", "ALG9", "AMDHD2", "AMPD1", "AMPD2", "AMPD3", "ANGPT1", "APRT", "AQP11", "ARFGEF1", "ATIC", "ATP5F1A", "ATP5F1B", "ATP5F1C", "ATP5F1D", "ATP5F1E", "ATP5F1EP2", "ATP5MC1", "ATP5MC2", "ATP5MC3", "ATP5ME", "ATP5MF", "ATP5MG", "ATP5MGL", "ATP5MJ", "ATP5MK", "ATP5PB", "ATP5PD", "ATP5PF", "ATP5PO", "ATP7A", "B3GALNT1", "B3GALNT2", "B3GALT1", "B3GALT2", "B3GALT4", "B3GALT5", "B3GALT6", "B3GALT9", "B3GAT1", "B3GAT2", "B3GAT3", "B3GLCT", "B3GNT2", "B3GNT3", "B3GNT4", "B3GNT5", "B3GNT6", "B3GNT7", "B3GNT8", "B3GNT9", "B4GALNT1", "B4GALNT2", "B4GALT1", "B4GALT3", "B4GALT4", "B4GALT5", "B4GALT6", "B4GALT7", "B4GAT1", "BMPR1B", "BMPR2", "C1GALT1C1", "C20orf173", "CAD", "CANT1", "CEMIP", "CERK", "CHPF", "CHPF2", "CHST1", "CHST10", "CHST11", "CHST12", "CHST13", "CHST14", "CHST15", "CHST2", "CHST3", "CHST4", "CHST5", "CHST6", "CHST7", "CHST8", "CHST9", "CHSY1", "CHSY3", "CMPK1", "CMPK2", "COASY", "COG7", "COX11", "CRPPA", "CSGALNACT1", "CSGALNACT2", "CTPS1", "CTPS2", "CWH43", "DAD1", "DCAKD", "DCTD", "DDOST", "DERL3", "DGUOK", "DHDDS", "DHFR2", "DHODH", "DIP2A", "DLAT", "DLD", "DNPH1", "DOLK", "DOLPP1", "DPAGT1", "DPM1", "DPM2", "DPM3", "DSE", "DSEL", "DTYMK", "DUT", "ELOVL1", "ELOVL2", "ELOVL3", "ELOVL5", "ELOVL6", "ELOVL7", "ENTPD5", "EOGT", "EXT1", "EXT2", "EXTL1", "EXTL3", "FA2H", "FAM20B", "FCSK", "FKRP", "FKTN", "FOXL1", "FUT1", "FUT10", "FUT2", "FUT3", "FUT4", "FUT5", "FUT6", "FUT7", "FUT8", "FUT9", "G6PD", "GAL3ST1", "GAL3ST2", "GAL3ST3", "GAL3ST4", "GALNT1", "GALNT10", "GALNT11", "GALNT12", "GALNT13", "GALNT14", "GALNT15", "GALNT16", "GALNT17", "GALNT18", "GALNT2", "GALNT3", "GALNT4", "GALNT5", "GALNT6", "GALNT7", "GALNT8", "GALNT9", "GALNTL5", "GALNTL6", "GART", "GBGT1", "GCDH", "GCNT1", "GCNT2", "GCNT3", "GCNT4", "GFPT1", "GFPT2", "GFUS", "GK", "GK2", "GK3", "GK5", "GLCE", "GMDS", "GMPPB", "GMPS", "GNE", "GNPDA1", "GNPDA2", "GOLGA2", "GOLPH3", "GPAA1", "GUCY1A1", "GUCY1B1", "GUCY2C", "GUCY2D", "GUCY2F", "GUK1", "GXYLT1", "GXYLT2", "HACD1", "HACD2", "HAS1", "HAS2", "HAS3", "HEXA", "HPRT1", "HS2ST1", "HS3ST1", "HS3ST2", "HS3ST3A1", "HS3ST3B1", "HS3ST5", "HS3ST6", "HS6ST1", "HS6ST2", "HS6ST3", "HSD17B12", "HTD2", "HYAL1", "IGF1", "IL1B", "IMPDH1", "IMPDH2", "KRTCAP2", "LARGE1", "LARGE2", "LCMT2", "MAGT1", "MAN1C1", "MGAT1", "MGAT2", "MGAT3", "MGAT4A", "MGAT4B", "MGAT4C", "MGAT4D", "MGAT5", "MGAT5B", "MLEC", "MLYCD", "MOGS", "MPDU1", "MPI", "MPPE1", "MT-ATP6", "MT-ATP8", "MT-ND1", "MT-ND2", "MT-ND3", "MT-ND4", "MT-ND4L", "MT-ND5", "MT-ND6", "NANP", "NANS", "NDST1", "NDST2", "NDST3", "NDST4", "NDUFA1", "NDUFA10", "NDUFA11", "NDUFA12", "NDUFA13", "NDUFA2", "NDUFA3", "NDUFA5", "NDUFA6", "NDUFA7", "NDUFA8", "NDUFA9", "NDUFAB1", "NDUFB1", "NDUFB10", "NDUFB11", "NDUFB2", "NDUFB3", "NDUFB4", "NDUFB5", "NDUFB6", "NDUFB7", "NDUFB8", "NDUFB9", "NDUFC1", "NDUFC2", "NDUFS1", "NDUFS2", "NDUFS3", "NDUFS4", "NDUFS5", "NDUFS6", "NDUFS7", "NDUFS8", "NDUFV1", "NDUFV2", "NDUFV3", "NPC1", "NPPA", "NPPB", "NPPC", "NPR1", "NPR2", "NUDT14", "NUDT2", "NUS1", "OGA", "OGT", "OST4", "OSTC", "PAICS", "PANK1", "PANK2", "PANK3", "PANK4", "PAPSS1", "PAPSS2", "PDHA1", "PDHA2", "PDHB", "PDHX", "PFAS", "PGAP1", "PGAP2", "PGAP3", "PGAP4", "PGM2", "PGM3", "PIGA", "PIGB", "PIGC", "PIGF", "PIGG", "PIGH", "PIGK", "PIGL", "PIGM", "PIGN", "PIGO", "PIGP", "PIGQ", "PIGS", "PIGT", "PIGU", "PIGV", "PIGW", "PIGY", "PIGZ", "PLOD1", "PLOD2", "PLOD3", "PMM1", "PMM2", "POFUT1", "POFUT2", "POGLUT1", "POGLUT2", "POGLUT3", "POMGNT1", "POMGNT2", "POMK", "POMT1", "POMT2", "PPCDC", "PPCS", "PPT1", "PPT2", "PRKAG2", "PRPS1", "PRPS1L1", "PRPS2", "PRPSAP1", "PRPSAP2", "PXYLP1", "QNG1", "RFK", "RFT1", "RPN1", "RPN2", "RRM1", "RRM2", "RRM2B", "RXYLT1", "SCCPDH", "SDHA", "SDHB", "SDHC", "SDHD", "SERP1", "SLC10A7", "SLC25A1", "SLC25A13", "SLC27A2", "SLC30A5", "SLC35B2", "SLC35C1", "SLC35D2", "SLC39A8", "SRD5A3", "ST3GAL1", "ST3GAL2", "ST3GAL3", "ST3GAL4", "ST3GAL5", "ST3GAL6", "ST6GAL1", "ST6GALNAC1", "ST6GALNAC2", "ST6GALNAC3", "ST6GALNAC4", "ST6GALNAC5", "ST6GALNAC6", "ST8SIA1", "ST8SIA2", "ST8SIA3", "ST8SIA4", "ST8SIA5", "ST8SIA6", "STT3A", "STT3B", "TECR", "TET1", "TET2", "TET3", "TGFB1", "TK1", "TK2", "TKT", "TM9SF2", "TMEM106A", "TMEM165", "TMEM258", "TMEM59", "TMTC1", "TMTC2", "TMTC3", "TMTC4", "TNIP1", "TPI1", "TRAK1", "TRMT12", "TUSC3", "TYMS", "TYW1", "TYW1B", "TYW3", "TYW5", "UAP1", "UAP1L1", "UBE2J1", "UCK1", "UCK2", "UCKL1", "UGCG", "UGDH", "UGGT1", "UGGT2", "UGT8", "UMPS", "UST", "UXS1", "VPS9D1", "XXYLT1", "XYLB", "XYLT1", "XYLT2" ] }, "position": { "x": 114.5, "y": 2195.9446642487483, "id": "5718f08c-7494-4720-99b2-9b21153525db" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "1ad6cd13-595f-4b9d-baef-b8f85065bb90", "name": [ "CELL MORPHOGENESIS%GOBP%GO:0000902" ], "description": [ "cell morphogenesis" ], "pvalue": 0.0048, "gs_type": null, "gs_size": 435, "padj": 0.0492, "mcode_cluster_id": null, "NES": -1.3734, "genes": [ "ABI2", "ABITRAM", "ACTB", "ACTBL2", "ACTG1", "ACTL9", "ACTN1", "ADAM17", "ADAM7", "ADAM8", "ADGRB1", "AFG3L2", "ALCAM", "ALS2", "ANK3", "ANKRD24", "ANKRD27", "ANO1", "ANOS1", "APBB1", "APLP1", "APLP2", "APP", "ARC", "ARHGAP35", "ARHGEF2", "ARHGEF25", "ARHGEF28", "ARHGEF40", "ARK2C", "ARL13B", "ATF4", "ATL1", "ATP7A", "ATP9A", "AUTS2", "B4GALT5", "B4GALT6", "BAIAP2", "BDNF", "BIN3", "BMP7", "BOC", "BRSK1", "BRSK2", "BTBD3", "C12orf57", "C9orf72", "CAP1", "CAP2", "CAPZB", "CASP3", "CASP9", "CCDC88C", "CCK", "CDC42", "CDH1", "CDH10", "CDH11", "CDH12", "CDH13", "CDH15", "CDH17", "CDH18", "CDH19", "CDH2", "CDH20", "CDH22", "CDH24", "CDH26", "CDH3", "CDH4", "CDH5", "CDH6", "CDH7", "CDH8", "CDH9", "CDHR1", "CDHR3", "CDK5", "CDK5R1", "CDK5R2", "CDKL3", "CELSR2", "CELSR3", "CFAP418", "CHN1", "CHRNA7", "CHRNB2", "CIB1", "CLDN3", "CLEC1B", "CLRN2", "CLU", "CNTN1", "CNTN2", "CNTN4", "CNTN5", "CNTN6", "CNTNAP1", "CNTNAP2", "COBL", "COL18A1", "COL27A1", "CPNE1", "CSPG5", "CTNNA2", "CTNNB1", "CTNND2", "CTTN", "CXCL12", "CYFIP1", "CYFIP2", "DAB2IP", "DACT2", "DAG1", "DBNL", "DCC", "DCDC2", "DCLK1", "DICER1", "DIP2A", "DLG4", "DNM2", "DOCK10", "DOCK7", "DPYSL5", "DRAXIN", "DRD2", "DSCAM", "DSCAML1", "DTNBP1", "DVL1", "EFNA1", "EFNA2", "EFNA3", "EFNA4", "EFNA5", "EFNB1", "EFNB2", "EFNB3", "EIF2AK4", "EMB", "ENAH", "EPB41L3", "EPHA10", "EPHA2", "EPHA3", "EPHA4", "EPHA5", "EPHA6", "EPHA7", "EPHA8", "EPHB1", "EPHB2", "EPHB3", "EPHB6", "FARP1", "FEZ1", "FEZ2", "FGFR2", "FLRT1", "FLRT3", "FOXB1", "FRY", "FRYL", "FYN", "FZD3", "GAP43", "GAS7", "GATA1", "GDNF", "GLI2", "GPM6A", "GREM1", "GRHL2", "IGSF9", "ILK", "IMPACT", "IQGAP1", "ISL1", "ISL2", "KALRN", "KIAA1755", "KIF20B", "KIF5A", "KIF5B", "KIF5C", "KIFBP", "KLF7", "KLK8", "L1CAM", "LGI1", "LGR6", "LHX1", "LHX9", "LLGL1", "LLPH", "LRATD1", "LRP2", "LRP4", "LRRK2", "LRTM1", "LRTM2", "LYPLA2", "MAP1A", "MAP1B", "MAP1S", "MAP2", "MAP4K4", "MAP6", "MAPK8IP2", "MDK", "MED1", "MEF2A", "MEF2C", "MET", "METTL3", "MFSD2A", "MINK1", "MNX1", "MPIG6B", "MSX1", "MYCBP2", "MYH9", "MYO16", "MYO9B", "MYPN", "NBEAL2", "NBL1", "NCAM1", "NCKAP1", "NCKAP1L", "NEFH", "NELL2", "NEO1", "NEXN", "NFASC", "NFIB", "NGF", "NIBAN2", "NLGN1", "NLGN3", "NOTCH1", "NOTCH2", "NOTCH3", "NOX4", "NPTX1", "NRCAM", "NRN1", "NRN1L", "NRP1", "NRP2", "NRXN1", "NRXN3", "NTF3", "NTF4", "NTN1", "NTN3", "NTN4", "NTNG1", "NTNG2", "NTRK1", "NYAP1", "NYAP2", "OPHN1", "OTX2", "PACSIN1", "PACSIN2", "PAFAH1B1", "PAK1", "PAK3", "PALLD", "PARD3", "PARD6B", "PAX2", "PDZD7", "PHACTR1", "PHOX2B", "PKHD1", "PLA2G10", "PLEKHG4", "PLEKHG4B", "PLPPR4", "PLS1", "PLXNA3", "PLXNA4", "PLXNB1", "POF1B", "POTEE", "POTEF", "POTEI", "POTEJ", "POTEKP", "POU4F1", "POU4F2", "PPP3CB", "PRKCQ", "PROX1", "PTEN", "PTK2", "PTN", "PTPRJ", "PTPRM", "PTPRO", "RAB10", "RAB25", "RAB3A", "RAB8A", "RAC1", "RAC3", "RB1", "RELN", "RET", "RILPL1", "RILPL2", "ROBO1", "ROBO2", "ROBO3", "ROBO4", "ROCK1", "RPS6KA5", "RYK", "S100A6", "S100B", "SCFD1", "SCN1B", "SDC2", "SEMA3A", "SEMA3B", "SEMA3C", "SEMA3D", "SEMA3E", "SEMA3F", "SEMA3G", "SEMA4A", "SEMA4B", "SEMA4C", "SEMA4D", "SEMA4F", "SEMA4G", "SEMA5A", "SEMA5B", "SEMA6A", "SEMA6B", "SEMA6C", "SEMA6D", "SEMA7A", "SGK1", "SH3GL2", "SHANK1", "SHANK3", "SHH", "SHROOM1", "SHROOM2", "SHROOM3", "SHROOM4", "SHTN1", "SIAH1", "SIPA1", "SIPA1L3", "SLC39A12", "SLC9A6", "SLIT1", "SLIT2", "SLIT3", "SLITRK1", "SLITRK2", "SLITRK3", "SLITRK4", "SLITRK5", "SLITRK6", "SMO", "SNX1", "SNX2", "SOD1", "SOS1", "SPAG6", "SPG11", "SPI1", "SPTBN4", "SRGAP2", "SSH1", "SSNA1", "STC1", "STK4", "STRC", "STXBP1", "SZT2", "TAOK2", "TAOK3", "TBCD", "TGFB2", "TMEM106B", "TMEM108", "TNIK", "TNN", "TNR", "TPM4", "TPRN", "TRIM46", "TRIO", "TSC22D4", "TSKU", "TUBB3", "TUNAR", "UBB", "ULK1", "ULK2", "UNC5A", "UNC5B", "UNC5C", "UNC5D", "UNK", "USH1C", "USP33", "USP9X", "VANGL2", "VASP", "VDR", "VEGFA", "VHL", "VPS33A", "WASF1", "WASL", "WHRN", "WNT3", "WNT5A", "WNT7A", "WNT7B", "YTHDF2", "ZDHHC17", "ZFPM1", "ZNF335", "ZNF365" ] }, "position": { "x": 422.5, "y": 2195.9446642487483, "id": "1ad6cd13-595f-4b9d-baef-b8f85065bb90" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "05351587-7c68-4db8-8761-3ac815da5f69", "name": [ "REGULATION OF EXPRESSION OF SLITS AND ROBOS%REACTOME DATABASE ID RELEASE 81%9010553" ], "description": [ "Regulation of expression of SLITs and ROBOs" ], "pvalue": 0.002, "gs_type": null, "gs_size": 171, "padj": 0.0268, "mcode_cluster_id": "Cluster 2", "NES": 1.5046, "genes": [ "CASC3", "COL4A5", "CUL2", "DAG1", "EIF4A3", "EIF4G1", "ELOB", "ELOC", "ETF1", "FAU", "GSPT1", "GSPT2", "HOXA2", "ISL1", "LDB1", "LHX2", "LHX3", "LHX4", "LHX9", "MAGOH", "MAGOHB", "MSI1", "NCBP1", "NCBP2", "PABPC1", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RBM8A", "RBX1", "RNPS1", "ROBO1", "ROBO2", "RPL10", "RPL10A", "RPL10L", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL22L1", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL26L1", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL36AL", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL39L", "RPL3L", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "SEM1", "SLIT1", "SLIT2", "UBA52", "UBB", "UBC", "UPF2", "UPF3A", "UPF3B", "USP33", "ZSWIM8" ] }, "position": { "x": 571.7579125642518, "y": 702.4957029588498, "id": "05351587-7c68-4db8-8761-3ac815da5f69", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "bf3c5db6-d54a-4e27-a6b0-be788ae9b904", "name": [ "IMMUNE RESPONSE-ACTIVATING SIGNALING PATHWAY%GOBP%GO:0002757" ], "description": [ "immune response-activating signaling pathway" ], "pvalue": 1.5267e-7, "gs_type": null, "gs_size": 286, "padj": 0.0000085393, "mcode_cluster_id": "Cluster 6", "NES": -1.9128, "genes": [ "ABL1", "AIM2", "ALPK1", "BAG6", "BANK1", "BAX", "BCAR1", "BCL10", "BCL2", "BECN1", "BLK", "BLNK", "BMX", "BTK", "BTN1A1", "BTN2A1", "BTN2A2", "BTN2A3P", "BTN3A1", "BTN3A2", "BTN3A3", "BTNL10P", "BTNL2", "BTNL3", "BTNL8", "BTNL9", "C3AR1", "C5AR1", "C5AR2", "CARD8", "CASP1", "CD14", "CD19", "CD247", "CD274", "CD276", "CD28", "CD300LF", "CD38", "CD3D", "CD3E", "CD3G", "CD79A", "CD79B", "CD8A", "CD8B", "CGAS", "CHUK", "CLEC4E", "CLEC6A", "CLEC7A", "CLPB", "CMKLR1", "COLEC10", "COLEC11", "COLEC12", "CR1", "CREBBP", "CSK", "CTLA4", "CTSS", "CYLD", "DENND1B", "DHX58", "ECSIT", "EIF2B1", "EIF2B2", "EIF2B3", "EIF2B4", "EIF2B5", "EP300", "EPG5", "ERMAP", "FCER1G", "FCHO1", "FCN1", "FCN2", "FCN3", "FFAR2", "FGR", "FPR1", "FPR2", "FPR3", "FYB1", "FYB2", "FYN", "GATA3", "GPLD1", "GPR32", "GPR32P1", "GPR33", "HCK", "HHLA2", "HLA-A", "HLA-DPB1", "HLA-DQB1", "HLA-DRB1", "HLA-DRB3", "HSPD1", "ICOSLG", "IFIH1", "IGHA1", "IGHA2", "IGHD", "IGHE", "IGHG1", "IGHG2", "IGHG3", "IGHG4", "IGHM", "IGKC", "IGLC1", "IGLC3", "IGLC6", "IGLC7", "IKBKB", "IKBKG", "INAVA", "INPP5D", "IPO5", "IRAK1", "IRAK2", "IRAK3", "IRAK4", "IRF3", "IRF7", "IRGM", "ITCH", "ITGAM", "ITK", "KHDRBS1", "KIR2DS2", "KLRC1", "KLRC2", "KLRC3", "KLRC4", "KLRD1", "LACC1", "LAT", "LAT2", "LAX1", "LBP", "LCK", "LCP2", "LGALS9", "LILRA2", "LIME1", "LIMK1", "LY96", "LYN", "MALT1", "MAP2K6", "MAP3K7", "MAPKAPK2", "MAPKAPK3", "MAVS", "MBL2", "MEF2C", "MEFV", "MICB", "MNDA", "MOG", "MS4A1", "MYD88", "MYO1G", "NAIP", "NCKAP1L", "NCR3", "NFAM1", "NFATC2", "NFKBIA", "NFKBID", "NFKBIZ", "NLRC4", "NLRP1", "NLRP3", "NLRP6", "NMI", "NOD1", "NOD2", "NR4A3", "OAS1", "OAS3", "OTULIN", "PAK1", "PAK2", "PAK3", "PDE4B", "PDE4D", "PHB1", "PHB2", "PIK3AP1", "PIK3CA", "PIK3CD", "PLA2G6", "PLCG1", "PLCG2", "PLD2", "PLEKHA1", "PLPP4", "PRAM1", "PRKCB", "PRKCD", "PRKCE", "PRKD2", "PTK2", "PTPN22", "PTPRC", "PTPRJ", "PYCARD", "RAB11FIP2", "RBCK1", "RC3H1", "RC3H2", "REG3G", "RELA", "RFTN1", "RIGI", "RIPK2", "RNF135", "RNF144A", "RNF31", "RNF34", "RPS6KA3", "S100A14", "SCARA3", "SCIMP", "SH2B2", "SKAP1", "SLA2", "SLC39A6", "SPG21", "SPPL3", "SRC", "STING1", "STOML2", "SYK", "TBK1", "TEC", "THEMIS", "THEMIS2", "THY1", "TICAM1", "TICAM2", "TIFA", "TIRAP", "TLR1", "TLR10", "TLR2", "TLR3", "TLR4", "TLR5", "TLR6", "TLR7", "TLR8", "TLR9", "TNFAIP3", "TNFRSF21", "TNIP1", "TNIP2", "TNIP3", "TRAC", "TRAF3", "TRAF3IP3", "TRAF6", "TRBC1", "TRBC2", "TRDC", "TRGC1", "TRGC2", "TRIL", "TRIM25", "TXK", "TYROBP", "UBE2N", "UNC93B1", "VAV1", "VAV2", "VAV3", "VTCN1", "WNK1", "XIAP", "YES1", "YWHAE", "ZAP70", "ZC3H12A" ] }, "position": { "x": 1833.7985493812216, "y": 479.5001197231829, "id": "bf3c5db6-d54a-4e27-a6b0-be788ae9b904", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "name": [ "PROTEIN SYNTHESIS: TYROSINE%PATHWHIZ%PW120527" ], "description": [ "Protein Synthesis: Tyrosine" ], "pvalue": 1.909e-17, "gs_type": null, "gs_size": 80, "padj": 3.966e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7956, "genes": [ "FAU", "RACK1", "RPL10", "RPL10A", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "UBA52", "YARS1" ] }, "position": { "x": 903.811780640926, "y": 481.01775625439535, "id": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "354ec532-56fa-4d39-91bb-f26b629c0824", "name": [ "REGULATION OF INFLAMMATORY RESPONSE%GOBP%GO:0050727" ], "description": [ "regulation of inflammatory response" ], "pvalue": 0, "gs_type": null, "gs_size": 304, "padj": 0.0008, "mcode_cluster_id": null, "NES": -1.6708, "genes": [ "ABCC1", "ACE2", "ACOD1", "ADAM8", "ADAMTS12", "ADIPOQ", "AGER", "AGT", "AGTR1", "AHR", "AHSG", "AIM2", "AKNA", "ALOX15", "ALOX5", "ANXA1", "AOAH", "APCS", "APOA1", "APOE", "APP", "AREL1", "ARMH4", "ARNT", "BCL6", "BIRC2", "BIRC3", "BRD4", "BST1", "C1QTNF3", "C2CD4A", "C2CD4B", "CALHM2", "CAMK2N1", "CARD16", "CASP1", "CASP12", "CASP4", "CASP5", "CCL1", "CCL3", "CCL5", "CCN3", "CCN4", "CCR2", "CCR7", "CD200", "CD200R1", "CD47", "CD81", "CDH5", "CEBPA", "CELF1", "CMA1", "CREB3L3", "CST7", "CX3CL1", "CXCL17", "CYLD", "DAGLA", "DAGLB", "DDT", "DEFB114", "DHX9", "DNASE1", "DNASE1L3", "ELANE", "ELF4", "ENPP3", "ETS1", "EXTL3", "F12", "FBXL2", "FCGR2B", "FEM1A", "FFAR2", "FFAR3", "FFAR4", "FGR", "FNDC4", "FOXP1", "FPR2", "FURIN", "FUT7", "FXR1", "FYN", "GATA3", "GBA1", "GGT1", "GGT2P", "GGT3P", "GHRL", "GHSR", "GIT1", "GPER1", "GPR31", "GPR4", "GPRC5B", "GPS2", "GPSM3", "GRN", "GSDMD", "GSTP1", "HCK", "HLA-DRB1", "HLA-E", "HYAL2", "IFI35", "IFNG", "IGF1", "IL10", "IL10RA", "IL12B", "IL13", "IL15", "IL16", "IL17RA", "IL18", "IL1B", "IL1R1", "IL1RL2", "IL2", "IL20", "IL21", "IL22", "IL22RA1", "IL23A", "IL33", "IL37", "IL4", "IL6", "IL6ST", "INS", "IRGM", "ISL1", "JAK2", "KARS1", "KLF4", "KLKB1", "LACC1", "LBP", "LDLR", "LETMD1", "LGALS1", "LGALS2", "LILRA5", "LPCAT3", "LPL", "LRFN5", "LRRC19", "LYN", "MACIR", "MAPK13", "MAPK14", "MAPK7", "MDK", "MEFV", "METRNL", "MFHAS1", "MGLL", "MGST2", "MKRN2", "MMP26", "MMP3", "MMP8", "MMP9", "MT-RNR2", "MVK", "MYD88", "NAIP", "NAPEPLD", "NFKBIA", "NFKBIZ", "NINJ1", "NKG7", "NLRC3", "NLRC4", "NLRP1", "NLRP10", "NLRP11", "NLRP12", "NLRP13", "NLRP14", "NLRP2", "NLRP3", "NLRP4", "NLRP5", "NLRP6", "NLRP7", "NLRP8", "NLRP9", "NMI", "NOD2", "NR1D1", "NR1D2", "NR1H3", "NR1H4", "NUPR1", "OSM", "OSMR", "OTULIN", "PARK7", "PDCD4", "PDE2A", "PIK3AP1", "PLA2G2A", "PLA2G2D", "PLA2G3", "PLA2G7", "PLCG1", "PLCG2", "PLK2", "PPARA", "PPARD", "PPARG", "PPP1R13L", "PRKCD", "PROC", "PSMA6", "PTGER3", "PTGER4", "PTGES", "PTGIS", "PTGS2", "PTPN2", "PTPN6", "PTPRC", "PYCARD", "PYDC2", "RB1", "REG3A", "RELA", "RHBDF2", "RIPK1", "RORA", "RPS19", "S100A12", "S100A8", "S100A9", "SAA1", "SBNO2", "SELE", "SELENOS", "SEMA7A", "SERPINE1", "SETD4", "SETD6", "SHARPIN", "SHPK", "SIGLEC10", "SIRPA", "SLAMF8", "SLC39A8", "SMPDL3B", "SNCA", "SNX4", "SNX6", "SPATA2", "SPHK1", "SRC", "STAP1", "STAT3", "SYK", "SYT11", "TAFA3", "TEK", "TGFB1", "TLR2", "TLR3", "TLR4", "TLR7", "TLR9", "TMSB4X", "TNC", "TNF", "TNFAIP3", "TNFAIP6", "TNFAIP8L2", "TNFRSF11A", "TNFRSF1A", "TNFRSF1B", "TNFSF11", "TNFSF4", "TNIP1", "TRADD", "TREM2", "TRIM45", "TRIM65", "TSLP", "TTBK1", "TYRO3", "UFL1", "USP18", "VAMP2", "VAMP3", "VAMP7", "VAMP8", "VPS35", "WNT5A", "XCL1", "XIAP", "YES1", "ZBP1", "ZP3" ] }, "position": { "x": 1942.3367272911692, "y": 213.92660607165215, "id": "354ec532-56fa-4d39-91bb-f26b629c0824" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "ff8df9a9-f99a-4719-a96a-d64e1b3fc6f8", "name": [ "PURINE RIBONUCLEOSIDE DIPHOSPHATE CATABOLIC PROCESS%GOBP%GO:0009181" ], "description": [ "purine ribonucleoside diphosphate catabolic process" ], "pvalue": 0.0004, "gs_type": null, "gs_size": 36, "padj": 0.0078, "mcode_cluster_id": "Cluster 4", "NES": 1.9456, "genes": [ "ADPGK", "ALDOA", "ALDOB", "ALDOC", "ENO1", "ENO2", "ENO3", "ENO4", "ENTPD4", "FOXK1", "FOXK2", "GAPDH", "GAPDHS", "GCK", "GPI", "HK1", "HK2", "HK3", "HKDC1", "LDHA", "NUDT18", "PFKFB1", "PFKFB2", "PFKL", "PFKM", "PFKP", "PGAM1", "PGAM2", "PGAM4", "PGK1", "PGK2", "PGM1", "PKLR", "PKM", "TPI1", "UCP2" ] }, "position": { "x": 3690.5776042704033, "y": 1724.4493651989674, "id": "ff8df9a9-f99a-4719-a96a-d64e1b3fc6f8", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "4ccfd54f-82c0-4843-899b-f393bec5824b", "name": [ "VIF-MEDIATED DEGRADATION OF APOBEC3G%REACTOME%R-HSA-180585.3" ], "description": [ "Vif-mediated degradation of APOBEC3G" ], "pvalue": 0.0000044573, "gs_type": null, "gs_size": 53, "padj": 0.0002, "mcode_cluster_id": "Cluster 1", "NES": -2.0682, "genes": [ "CUL5", "ELOB", "ELOC", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RBX1", "RPS27A", "SEM1", "UBA52", "UBB", "UBC" ] }, "position": { "x": 448.9609478922661, "y": 786.0504794690823, "id": "4ccfd54f-82c0-4843-899b-f393bec5824b", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "97e48061-3195-4977-a676-8ba94cb75b04", "name": [ "NUCLEOTIDE CATABOLISM%REACTOME%R-HSA-8956319.4" ], "description": [ "Nucleotide catabolism" ], "pvalue": 0.0024, "gs_type": null, "gs_size": 31, "padj": 0.031, "mcode_cluster_id": null, "NES": -1.7587, "genes": [ "ADPRM", "AGXT2", "DNPH1", "DPYD", "DPYS", "ENTPD1", "ENTPD2", "ENTPD3", "ENTPD4", "ENTPD5", "ENTPD6", "ENTPD7", "ENTPD8", "GDA", "ITPA", "NT5C", "NT5C1A", "NT5C1B", "NT5C2", "NT5E", "NT5M", "NUDT15", "NUDT16", "NUDT5", "PNP", "SAMHD1", "TYMP", "UPB1", "UPP1", "UPP2", "XDH" ] }, "position": { "x": 576.5, "y": 2272.9446642487483, "id": "97e48061-3195-4977-a676-8ba94cb75b04" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "f8f8bb80-c971-4c78-868d-14b163a98028", "name": [ "INTERLEUKIN-1 FAMILY SIGNALING%REACTOME%R-HSA-446652.9" ], "description": [ "Interleukin-1 family signaling" ], "pvalue": 1.1122e-7, "gs_type": null, "gs_size": 150, "padj": 0.0000065352, "mcode_cluster_id": "Cluster 1", "NES": -2.0332, "genes": [ "AGER", "ALOX5", "ALPK1", "APP", "BTRC", "CASP1", "CASP8", "CHUK", "CTSG", "CUL1", "FBXW11", "GSDMD", "HMGB1", "IKBIP", "IKBKB", "IKBKG", "IL13", "IL18", "IL18BP", "IL18R1", "IL18RAP", "IL1A", "IL1B", "IL1F10", "IL1R1", "IL1R2", "IL1RAPL1", "IL1RL1", "IL1RL2", "IL1RN", "IL33", "IL36A", "IL36B", "IL36G", "IL36RN", "IL37", "IL4", "IRAK1", "IRAK2", "IRAK3", "IRAK4", "LRRC14", "MAP2K1", "MAP2K4", "MAP2K6", "MAP3K3", "MAP3K7", "MAP3K8", "MAPK8", "MYD88", "N4BP1", "NFKB1", "NFKB2", "NFKBIA", "NFKBIB", "NKIRAS1", "NKIRAS2", "NLRC5", "NLRX1", "NOD1", "NOD2", "PELI1", "PELI2", "PELI3", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "PTPN11", "PTPN12", "PTPN13", "PTPN14", "PTPN18", "PTPN2", "PTPN20", "PTPN23", "PTPN4", "PTPN5", "PTPN6", "PTPN7", "PTPN9", "RBX1", "RELA", "RIPK2", "RPS27A", "S100A12", "S100B", "SAA1", "SEM1", "SIGIRR", "SKP1", "SMAD3", "SQSTM1", "STAT3", "TAB1", "TAB2", "TAB3", "TBK1", "TIFA", "TNIP2", "TOLLIP", "TP53", "TRAF6", "UBA52", "UBB", "UBC", "UBE2N", "UBE2V1", "USP14", "USP18" ] }, "position": { "x": 412.59751336458135, "y": 832.3107082409217, "id": "f8f8bb80-c971-4c78-868d-14b163a98028", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "264adbfb-edda-4bc7-a8b3-74edd95909e2", "name": [ "GLYCOGEN STORAGE DISEASE TYPE 1A (GSD1A) OR VON GIERKE DISEASE%SMPDB%SMP0000374" ], "description": [ "Glycogen Storage Disease Type 1A (GSD1A) or Von Gierke Disease" ], "pvalue": 0.0017, "gs_type": null, "gs_size": 22, "padj": 0.0233, "mcode_cluster_id": "Cluster 8", "NES": 1.8347, "genes": [ "ALDOA", "BPGM", "ENO1", "FBP1", "G6PC1", "GALM", "GAPDH", "GPI", "HK2", "LDHA", "MDH2", "MPC1", "PANK1", "PC", "PCK1", "PGAM1", "PGAM2", "PGM1", "SLC25A11", "SLC2A2", "SLC37A4", "TPI1" ] }, "position": { "x": 3843.9580075974222, "y": 1172.1788101603386, "id": "264adbfb-edda-4bc7-a8b3-74edd95909e2" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "21195091-2c98-4fd5-8996-4a7e13ecabb7", "name": [ "CELLULAR RESPONSE TO ALCOHOL%GOBP%GO:0097306" ], "description": [ "cellular response to alcohol" ], "pvalue": 0.0016, "gs_type": null, "gs_size": 55, "padj": 0.0231, "mcode_cluster_id": null, "NES": -1.7031, "genes": [ "ADAM15", "ADCY1", "ADCY2", "ADCY3", "ADCY5", "ADCY6", "ADCY7", "ADCY8", "AHR", "AKR1C2", "AKR1C3", "BLM", "BRCA1", "CDH1", "CES1", "CFTR", "CREB1", "CTNNA1", "CTNNB1", "CYP7A1", "DEFB104B", "DYNAP", "GLRA1", "GLRA2", "GNAI1", "GNB1", "GNG2", "GOLPH3", "GPLD1", "GPR155", "GRAMD1A", "GRAMD1B", "GRAMD1C", "JUP", "KLF9", "LARP1", "LRP6", "MAP4K1", "MLC1", "OSBPL7", "PTCH1", "PTGER2", "PTGER4", "PTGFR", "RAD51", "SCNN1A", "SCNN1B", "SCNN1D", "SCNN1G", "SFRP1", "SLC5A5", "SMO", "SPHK2", "SPIDR", "TNFSF4" ] }, "position": { "x": 2621.4260719253652, "y": 1831.8147327666784, "id": "21195091-2c98-4fd5-8996-4a7e13ecabb7" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "7e03d4d7-65fa-4240-a8aa-1a96413f5ac6", "name": [ "TROP2 REGULATORY SIGNALING%WIKIPATHWAYS_20240410%WP5300%HOMO SAPIENS" ], "description": [ "TROP2 regulatory signaling" ], "pvalue": 0.0047, "gs_type": null, "gs_size": 38, "padj": 0.0488, "mcode_cluster_id": null, "NES": -1.6282, "genes": [ "ABCC1", "ACVRL1", "BAX", "BCL2", "CCND1", "CCNE1", "CDK2", "CDK4", "CDKN1B", "CDKN2A", "CHEK1", "CLDN1", "CLDN7", "CTNNB1", "DKFZp666O0110", "EGFR", "HEL113", "IGF1", "IGF1R", "IGF2", "IGF2R", "ITGB1", "JUN", "MDK", "NFKB1", "NOTCH1", "PAK4", "PECAM1", "PIK3R1", "PRKCA", "PSEN2", "PTEN", "RAC1", "RB1", "SRC", "STAT1", "TACSTD2", "TLN1" ] }, "position": { "x": 2039.5, "y": 2195.9446642487483, "id": "7e03d4d7-65fa-4240-a8aa-1a96413f5ac6" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "7f22376c-1798-4ebf-811f-e11344296c4f", "name": [ "NEUTROPHIL MIGRATION%GOBP%GO:1990266" ], "description": [ "neutrophil migration" ], "pvalue": 0, "gs_type": null, "gs_size": 53, "padj": 0.0013, "mcode_cluster_id": null, "NES": -2.0337, "genes": [ "BSG", "CCL3", "CD177", "CD300H", "CKLF", "CXADR", "CXCL1", "CXCL10", "CXCL11", "CXCL13", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "CXCR1", "CXCR2", "EDN1", "EDN2", "EDN3", "EMP2", "FCER1G", "GBF1", "GP2", "IRAK4", "ITGB2", "JAML", "LGALS3", "NCKAP1L", "PDE4B", "PECAM1", "PF4", "PF4V1", "PIK3CD", "PIK3CG", "PIKFYVE", "PIP5K1C", "PLA2G1B", "PPBP", "PPIA", "PPIB", "PRTN3", "S100A12", "S100A8", "S100A9", "SAA1", "SRP54", "SYK", "TGFB2", "TREM1", "UMOD", "XCL1" ] }, "position": { "x": 3325.519996950594, "y": 485.3832555225546, "id": "7f22376c-1798-4ebf-811f-e11344296c4f" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "a77d2ae1-e81f-46a0-810c-038611327b6b", "name": [ "REGULATION OF LYMPHOCYTE PROLIFERATION%GOBP%GO:0050670" ], "description": [ "regulation of lymphocyte proliferation" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 166, "padj": 0.0063, "mcode_cluster_id": "Cluster 12", "NES": -1.7269, "genes": [ "AGER", "AHR", "AIF1", "ANXA1", "ARG1", "ATM", "BCL2", "BMP4", "BST1", "BTN2A2", "CCDC88B", "CCL19", "CCL5", "CCR2", "CD1D", "CD209", "CD22", "CD24", "CD274", "CD276", "CD28", "CD300A", "CD320", "CD38", "CD3E", "CD40LG", "CD46", "CD55", "CD6", "CD70", "CD74", "CD80", "CD81", "CD86", "CEBPB", "CHRNB2", "CLC", "CLCF1", "CLECL1P", "CR1", "CRTAM", "CTLA4", "DLG5", "EBI3", "EPHB2", "FADD", "FCGR2B", "FCGR3A", "FCRL3", "FGF10", "FOXP3", "GLMN", "GPNMB", "GPR183", "HHLA2", "HLA-A", "HLA-DMB", "HLA-DPA1", "HLA-DPB1", "HLA-DRB1", "HLA-E", "HLA-G", "HMGB1", "ICOSLG", "IDO1", "IGF1", "IGF2", "IGFBP2", "IHH", "IKZF3", "IL10", "IL12A", "IL12B", "IL12RB1", "IL15", "IL18", "IL1A", "IL1B", "IL2", "IL21", "IL23A", "IL23R", "IL27", "IL4", "IL4I1", "IL6", "IL6ST", "IL7", "IRF1", "IRS2", "JAK2", "LEP", "LGALS3", "LGALS9", "LGALS9B", "LGALS9C", "LILRB1", "LILRB2", "LILRB4", "LST1", "MAPK8IP1", "MEF2C", "MIF", "MNDA", "MZB1", "NCK1", "NCK2", "NCKAP1L", "NFATC2", "PDCD1LG2", "PLA2G2A", "PLA2G2D", "PLA2G2E", "PLA2G2F", "PLA2G5", "PNP", "PPP3CA", "PRKAR1A", "PRNP", "PTPN22", "PTPRC", "PYCARD", "RASAL3", "RC3H1", "RIPK3", "RPS3", "SASH3", "SCRIB", "SDC4", "SFTPD", "SH3RF1", "SHH", "SLC4A2", "SLC7A1", "SOX11", "SPN", "TFRC", "TGFBR2", "TIRAP", "TLR9", "TMEM131L", "TMIGD2", "TNFRSF13B", "TNFRSF13C", "TNFRSF14", "TNFRSF1B", "TNFRSF21", "TNFRSF4", "TNFSF13B", "TNFSF18", "TNFSF4", "TNFSF8", "TNFSF9", "TWSG1", "TYK2", "TYROBP", "VAV3", "VCAM1", "VSIG4", "VSIR", "VTCN1", "XCL1", "ZBTB7B", "ZNF335", "ZP3", "ZP4" ] }, "position": { "x": 2356.703918121714, "y": 628.1966788873793, "id": "a77d2ae1-e81f-46a0-810c-038611327b6b", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "9e3e86bf-2025-4b63-b74b-cb1efab9886e", "name": [ "CELL JUNCTION ORGANIZATION%REACTOME%R-HSA-446728.4" ], "description": [ "Cell junction organization" ], "pvalue": 0.0021, "gs_type": null, "gs_size": 110, "padj": 0.0284, "mcode_cluster_id": "Cluster 39", "NES": -1.5848, "genes": [ "ACTN1", "ADAM19", "ADAM33", "AGO1", "AGO2", "AGO3", "AGO4", "ANG", "ANGPTL4", "ARHGEF6", "BHLHE22", "CADM1", "CADM2", "CADM3", "CD151", "CDH1", "CDH10", "CDH11", "CDH12", "CDH13", "CDH15", "CDH17", "CDH18", "CDH19", "CDH2", "CDH24", "CDH3", "CDH4", "CDH5", "CDH6", "CDH7", "CDH8", "CDH9", "CLDN1", "CLDN10", "CLDN11", "CLDN12", "CLDN14", "CLDN15", "CLDN16", "CLDN17", "CLDN18", "CLDN19", "CLDN2", "CLDN20", "CLDN22", "CLDN23", "CLDN3", "CLDN4", "CLDN5", "CLDN6", "CLDN7", "CLDN8", "CLDN9", "COL17A1", "CRB3", "CTNNA1", "CTNNB1", "CTNND1", "DST", "F11R", "FBLIM1", "FERMT2", "FLNA", "FLNC", "FOXF1", "HEYL", "HOXC8", "ILF3", "ILK", "ITGA6", "ITGB1", "ITGB4", "JUP", "LAMA3", "LAMB3", "LAMC2", "LIMS1", "LIMS2", "MOV10", "NECTIN1", "NECTIN2", "NECTIN3", "NECTIN4", "PALS1", "PARD3", "PARD6A", "PARD6B", "PARD6G", "PARVA", "PARVB", "PATJ", "PLEC", "PRDM8", "PRKCI", "PVR", "PXN", "RSU1", "SDK1", "SDK2", "SNAI1", "SOX10", "SP1", "TESK1", "TNRC6A", "TNRC6B", "TNRC6C", "VASP", "ZC3H12A", "ZEB2" ] }, "position": { "x": 1673.3012399919635, "y": 1575.8738975289275, "id": "9e3e86bf-2025-4b63-b74b-cb1efab9886e", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "e44305cc-a5b7-4cc3-9422-f3a68964ef17", "name": [ "INORGANIC ION TRANSMEMBRANE TRANSPORT%GOBP%GO:0098660" ], "description": [ "inorganic ion transmembrane transport" ], "pvalue": 0.0025, "gs_type": null, "gs_size": 481, "padj": 0.0314, "mcode_cluster_id": "Cluster 11", "NES": 1.3974, "genes": [ "ABCB6", "ABCB7", "ABCB8", "ABCC5", "ABCC8", "ABCC9", "ADRA1A", "AFG3L2", "ANO1", "ANO10", "ANO2", "ANO3", "ANO4", "ANO5", "ANO6", "ANO7", "ANO8", "ANO9", "AP3D1", "APOL1", "AQP1", "AQP8", "ASIC1", "ASIC2", "ASIC3", "ASIC4", "ASIC5", "ATP12A", "ATP1A1", "ATP1A2", "ATP1A3", "ATP1A4", "ATP1B1", "ATP1B2", "ATP1B3", "ATP1B4", "ATP2A1", "ATP2A2", "ATP2A3", "ATP2B1", "ATP2B3", "ATP2B4", "ATP2C1", "ATP2C2", "ATP4A", "ATP4B", "ATP5F1B", "ATP5MF", "ATP5PO", "ATP6AP1", "ATP6AP2", "ATP6V0A1", "ATP6V0A2", "ATP6V0A4", "ATP6V0B", "ATP6V0C", "ATP6V0D1", "ATP6V0E1", "ATP6V0E2", "ATP6V1A", "ATP6V1B1", "ATP6V1B2", "ATP6V1C1", "ATP6V1D", "ATP6V1E1", "ATP6V1F", "ATP6V1G1", "ATP6V1G2", "ATP6V1G3", "ATP6V1H", "ATP7A", "ATP7B", "CACNA1A", "CACNA1B", "CACNA1C", "CACNA1D", "CACNA1E", "CACNA1F", "CACNA1G", "CACNA1H", "CACNA1I", "CACNA1S", "CACNA2D1", "CACNA2D4", "CACNB1", "CACNB2", "CACNB3", "CACNG1", "CCDC51", "CCL19", "CCL21", "CCL3", "CCR5", "CCR7", "CFTR", "CHERP", "CLCN1", "CLCN3", "DMAC2L", "DRD2", "ERO1A", "F2R", "FASLG", "FGF2", "FKBP1A", "FLNA", "FXYD2", "GABRA1", "GABRA2", "GABRA3", "GABRA4", "GABRA5", "GABRA6", "GABRB1", "GABRB2", "GABRB3", "GABRD", "GABRE", "GABRG1", "GABRG2", "GABRG3", "GABRP", "GABRQ", "GABRR1", "GABRR2", "GABRR3", "GAS6", "GHITM", "GLRA1", "GLRA2", "GLRA3", "GLRB", "GP1BA", "GP1BB", "GP5", "GP9", "GRIN1", "GRIN2A", "GRIN2B", "GRIN2C", "GRIN2D", "HCN1", "HCN2", "HCN3", "HCN4", "HPN", "HSPA9", "HTR2A", "HTR2B", "HTR2C", "HTR3A", "HTR3B", "HTR3C", "HTR3D", "HTR3E", "HVCN1", "IBTK", "ITGAV", "ITPR1", "ITPR2", "ITPR3", "JPH1", "JPH2", "JPH3", "JPH4", "KCNA1", "KCNA10", "KCNA2", "KCNA3", "KCNA4", "KCNA5", "KCNA6", "KCNA7", "KCNB1", "KCNB2", "KCNC1", "KCNC2", "KCNC3", "KCNC4", "KCND1", "KCND2", "KCND3", "KCNE1", "KCNE2", "KCNE3", "KCNE4", "KCNE5", "KCNF1", "KCNG1", "KCNG2", "KCNG3", "KCNG4", "KCNH2", "KCNH3", "KCNH4", "KCNH5", "KCNH6", "KCNH7", "KCNH8", "KCNIP2", "KCNJ1", "KCNJ10", "KCNJ11", "KCNJ12", "KCNJ13", "KCNJ14", "KCNJ15", "KCNJ16", "KCNJ18", "KCNJ2", "KCNJ3", "KCNJ4", "KCNJ5", "KCNJ6", "KCNJ8", "KCNJ9", "KCNK1", "KCNK10", "KCNK12", "KCNK13", "KCNK15", "KCNK16", "KCNK17", "KCNK18", "KCNK2", "KCNK3", "KCNK4", "KCNK5", "KCNK6", "KCNK7", "KCNK9", "KCNMA1", "KCNN1", "KCNN2", "KCNN3", "KCNN4", "KCNQ1", "KCNQ2", "KCNQ3", "KCNQ4", "KCNQ5", "KCNS1", "KCNS2", "KCNS3", "KCNT1", "KCNT2", "KCNU1", "KCNV1", "KCNV2", "LCK", "LETM1", "LRRC26", "LRRC38", "LRRC52", "LRRC55", "LRRC8A", "MAIP1", "MCOLN1", "MCOLN2", "MCOLN3", "MCU", "MCUB", "MCUR1", "MICU1", "MICU2", "MICU3", "MRS2", "MT-CO1", "MT-ND4", "MT-ND5", "NALCN", "NALF1", "NALF2", "NDUFS7", "NNT", "NOL3", "NOX5", "ORAI1", "OTOP1", "OTOP2", "OTOP3", "P2RX1", "P2RX2", "P2RX3", "P2RX4", "P2RX5", "P2RX6", "P2RX7", "PKD1", "PKD2", "PKD2L1", "PLCB1", "PLCB2", "PLCB3", "PLCB4", "PLCD1", "PLCE1", "PLCG1", "PLCG2", "PLCH1", "PLCH2", "PMPCB", "PTPRC", "RHAG", "RHBG", "RHCE", "RHCG", "RHD", "RNASEK", "RYR1", "RYR2", "RYR3", "SCARA5", "SCN10A", "SCN11A", "SCN1A", "SCN1B", "SCN2A", "SCN2B", "SCN3A", "SCN3B", "SCN4A", "SCN4B", "SCN5A", "SCN7A", "SCN8A", "SCN9A", "SCNN1A", "SCNN1B", "SCNN1D", "SCNN1G", "SLC11A1", "SLC11A2", "SLC12A1", "SLC12A2", "SLC12A3", "SLC12A4", "SLC12A5", "SLC12A6", "SLC12A7", "SLC12A8", "SLC12A9", "SLC1A1", "SLC1A3", "SLC1A7", "SLC20A1", "SLC20A2", "SLC24A1", "SLC24A2", "SLC24A3", "SLC24A4", "SLC24A5", "SLC25A10", "SLC25A11", "SLC25A23", "SLC25A28", "SLC25A3", "SLC25A37", "SLC26A2", "SLC26A9", "SLC30A1", "SLC30A10", "SLC30A2", "SLC30A3", "SLC30A4", "SLC30A5", "SLC30A6", "SLC30A7", "SLC30A8", "SLC31A1", "SLC35G1", "SLC36A1", "SLC36A2", "SLC36A3", "SLC37A1", "SLC37A2", "SLC37A3", "SLC37A4", "SLC39A1", "SLC39A10", "SLC39A11", "SLC39A12", "SLC39A13", "SLC39A14", "SLC39A2", "SLC39A3", "SLC39A4", "SLC39A5", "SLC39A6", "SLC39A7", "SLC39A8", "SLC39A9", "SLC40A1", "SLC41A1", "SLC41A2", "SLC41A3", "SLC46A1", "SLC4A1", "SLC4A11", "SLC4A4", "SLC4A8", "SLC4A9", "SLC5A1", "SLC5A2", "SLC5A5", "SLC5A6", "SLC5A8", "SLC6A1", "SLC6A11", "SLC6A12", "SLC6A13", "SLC6A14", "SLC6A15", "SLC6A16", "SLC6A17", "SLC6A18", "SLC6A19", "SLC6A2", "SLC6A20", "SLC6A3", "SLC6A4", "SLC6A5", "SLC6A6", "SLC6A7", "SLC6A8", "SLC6A9", "SLC8A1", "SLC8A2", "SLC8A3", "SLC8B1", "SLC9A1", "SLC9A2", "SLC9A3", "SLC9A4", "SLC9A5", "SLC9A6", "SLC9A7", "SLC9A8", "SLC9A9", "SLC9B1", "SLC9B1P1", "SLC9C1", "SLC9C2", "SMDT1", "TCIRG1", "TMCO1", "TMEM163", "TMEM165", "TMEM175", "TMEM94", "TPCN2", "TRDN", "TRPA1", "TRPC1", "TRPC3", "TRPC4", "TRPC4AP", "TRPC5", "TRPC6", "TRPC7", "TRPM1", "TRPM2", "TRPM3", "TRPM4", "TRPM5", "TRPM6", "TRPM7", "TRPM8", "TRPV1", "TRPV2", "TRPV3", "TRPV4", "TRPV5", "TRPV6", "UCP1", "UCP2", "UCP3", "VDAC1", "VDR", "XCL1", "XPR1" ] }, "position": { "x": 4185.950274466871, "y": 1529.6012070917568, "id": "e44305cc-a5b7-4cc3-9422-f3a68964ef17", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "1cd8c8a0-7921-46cb-b5c5-5be2eef5efff", "name": [ "NEGATIVE REGULATION OF VIRAL LIFE CYCLE%GOBP%GO:1903901" ], "description": [ "negative regulation of viral life cycle" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 24, "padj": 0.0042, "mcode_cluster_id": null, "NES": -1.9513, "genes": [ "APCS", "ARK2N", "BST2", "CH25H", "CIITA", "CSNK2B", "FCN1", "FCN3", "GSN", "IFITM1", "IFITM2", "IFITM3", "IFNA2", "LRRC15", "LY6E", "MID2", "PPIA", "PTX3", "SNX3", "TRIM11", "TRIM15", "TRIM26", "TRIM31", "TRIM5" ] }, "position": { "x": 1277.2490285904646, "y": 1470.982467589544, "id": "1cd8c8a0-7921-46cb-b5c5-5be2eef5efff" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "d078c60c-b5d5-42cd-a5d7-a780f23a8090", "name": [ "XANTHINE DEHYDROGENASE DEFICIENCY (XANTHINURIA)%SMPDB%SMP0000220" ], "description": [ "Xanthine Dehydrogenase Deficiency (Xanthinuria)" ], "pvalue": 0.0025, "gs_type": null, "gs_size": 37, "padj": 0.031, "mcode_cluster_id": "Cluster 3", "NES": -1.6821, "genes": [ "ADA", "ADCY2", "ADSL", "ADSS2", "AK1", "AMPD1", "APRT", "ATAD1", "ATIC", "DGUOK", "ENTPD5", "ENTPD8", "GART", "GDA", "GMPR", "GMPS", "GUCY1A2", "GUCY1B1", "GUK1", "HPRT1", "IMPDH1", "ITPA", "NME6", "NT5C2", "NUDT2", "NUDT5", "PAICS", "PDE10A", "PDE4D", "PFAS", "PNP", "PPAT", "PRPS1L1", "RRM1", "RRM2", "TXN", "XDH" ] }, "position": { "x": 1424.54116558965, "y": 1439.0769844302345, "id": "d078c60c-b5d5-42cd-a5d7-a780f23a8090", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "69c4b4b7-c9e4-478e-997c-da4e05c3d7ee", "name": [ "CELL CYCLE CHECKPOINTS%REACTOME DATABASE ID RELEASE 81%69620" ], "description": [ "Cell Cycle Checkpoints" ], "pvalue": 4.6283e-9, "gs_type": null, "gs_size": 271, "padj": 3.5897e-7, "mcode_cluster_id": "Cluster 26", "NES": -1.9279, "genes": [ "ABRAXAS1", "AHCTF1", "ANAPC1", "ANAPC10", "ANAPC11", "ANAPC15", "ANAPC16", "ANAPC2", "ANAPC4", "ANAPC5", "ANAPC7", "ATM", "ATR", "ATRIP", "B9D2", "BABAM1", "BABAM2", "BARD1", "BIRC5", "BLM", "BRCA1", "BRCC3", "BRIP1", "BUB1", "BUB1B", "BUB3", "CCNA1", "CCNA2", "CCNB1", "CCNB2", "CCNE1", "CCNE2", "CDC16", "CDC20", "CDC23", "CDC25A", "CDC25C", "CDC26", "CDC27", "CDC45", "CDC6", "CDC7", "CDCA8", "CDK1", "CDK2", "CDKN1A", "CDKN1B", "CDKN2A", "CENPA", "CENPC", "CENPE", "CENPF", "CENPH", "CENPI", "CENPK", "CENPL", "CENPM", "CENPN", "CENPO", "CENPP", "CENPQ", "CENPS", "CENPT", "CENPU", "CHEK1", "CHEK2", "CKAP5", "CLASP1", "CLASP2", "CLIP1", "CLSPN", "COP1", "DBF4", "DNA2", "DSN1", "DYNC1H1", "DYNC1I1", "DYNC1I2", "DYNC1LI1", "DYNC1LI2", "DYNLL1", "DYNLL2", "ERCC6L", "EXO1", "GTSE1", "H2AX", "H2BC1", "H2BC11", "H2BC12", "H2BC12L", "H2BC13", "H2BC14", "H2BC15", "H2BC17", "H2BC21", "H2BC26", "H2BC3", "H2BC5", "H2BC8", "H2BC9", "H3-4", "H4C9", "HERC2", "HUS1", "INCENP", "ITGB3BP", "KAT5", "KIF18A", "KIF2A", "KIF2B", "KIF2C", "KNL1", "KNTC1", "MAD1L1", "MAD2L1", "MAPRE1", "MCM10", "MCM2", "MCM3", "MCM4", "MCM5", "MCM6", "MCM7", "MCM8", "MDC1", "MDM2", "MDM4", "MIS12", "MRE11", "NBN", "NDC80", "NDE1", "NDEL1", "NSD2", "NSL1", "NUDC", "NUF2", "NUP107", "NUP133", "NUP160", "NUP37", "NUP43", "NUP85", "ORC1", "ORC2", "ORC3", "ORC4", "ORC5", "ORC6", "PAFAH1B1", "PCBP4", "PHF20", "PIAS4", "PKMYT1", "PLK1", "PMF1", "PPP1CC", "PPP2CA", "PPP2CB", "PPP2R1A", "PPP2R1B", "PPP2R5A", "PPP2R5B", "PPP2R5C", "PPP2R5D", "PPP2R5E", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RAD1", "RAD17", "RAD50", "RAD9A", "RAD9B", "RANBP2", "RANGAP1", "RBBP8", "RCC2", "RFC2", "RFC3", "RFC4", "RFC5", "RHNO1", "RMI1", "RMI2", "RNF168", "RNF8", "RPA1", "RPA2", "RPA3", "RPS27", "RPS27A", "SEC13", "SEM1", "SFN", "SGO1", "SGO2", "SKA1", "SKA2", "SPC24", "SPC25", "SPDL1", "TAOK1", "TOP3A", "TOPBP1", "TP53", "TP53BP1", "UBA52", "UBB", "UBC", "UBE2C", "UBE2D1", "UBE2E1", "UBE2N", "UBE2S", "UBE2V2", "UIMC1", "WEE1", "WRN", "XPO1", "YWHAB", "YWHAE", "YWHAG", "YWHAH", "YWHAQ", "YWHAZ", "ZNF385A", "ZW10", "ZWILCH", "ZWINT" ] }, "position": { "x": 500.54617784665714, "y": 965.3570449487283, "id": "69c4b4b7-c9e4-478e-997c-da4e05c3d7ee", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "cc9f38d2-0dd3-459b-b55f-44e01fcf9dc9", "name": [ "MONOATOMIC ION TRANSPORT%GOBP%GO:0006811" ], "description": [ "monoatomic ion transport" ], "pvalue": 0.0013, "gs_type": null, "gs_size": 670, "padj": 0.0194, "mcode_cluster_id": "Cluster 11", "NES": 1.3658, "genes": [ "ABCB6", "ABCB7", "ABCB8", "ABCC5", "ABCC8", "ABCC9", "ADRA1A", "AFG3L2", "ANK2", "ANO1", "ANO10", "ANO2", "ANO3", "ANO4", "ANO5", "ANO6", "ANO7", "ANO8", "ANO9", "ANXA6", "AP3D1", "APOL1", "AQP1", "AQP11", "ARHGAP1", "ASIC1", "ASIC2", "ASIC3", "ASIC4", "ASIC5", "ATOX1", "ATP10A", "ATP10D", "ATP11B", "ATP11C", "ATP12A", "ATP13A1", "ATP13A2", "ATP13A4", "ATP13A5", "ATP1A1", "ATP1A2", "ATP1A3", "ATP1A4", "ATP1B1", "ATP1B2", "ATP1B3", "ATP2A1", "ATP2A2", "ATP2A3", "ATP2B1", "ATP2B2", "ATP2B3", "ATP2B4", "ATP2C1", "ATP2C2", "ATP4A", "ATP4B", "ATP5F1B", "ATP5MF", "ATP5PO", "ATP6AP1", "ATP6AP2", "ATP6V0A1", "ATP6V0A2", "ATP6V0A4", "ATP6V0B", "ATP6V0C", "ATP6V0D1", "ATP6V0E1", "ATP6V0E2", "ATP6V1A", "ATP6V1B1", "ATP6V1B2", "ATP6V1C1", "ATP6V1D", "ATP6V1E1", "ATP6V1F", "ATP6V1G1", "ATP6V1G2", "ATP6V1G3", "ATP6V1H", "ATP7A", "ATP7B", "ATP8A1", "ATP8B1", "ATP8B2", "BAK1", "BAX", "BEST1", "BSND", "CACNA1A", "CACNA1B", "CACNA1C", "CACNA1D", "CACNA1E", "CACNA1F", "CACNA1G", "CACNA1H", "CACNA1I", "CACNA1S", "CACNA2D1", "CACNA2D4", "CACNB1", "CACNB2", "CACNB3", "CACNG1", "CACNG3", "CACNG6", "CACNG7", "CACNG8", "CALCRL", "CALHM1", "CALHM2", "CAMK2A", "CASR", "CATSPER1", "CATSPER2", "CATSPER3", "CATSPER4", "CAV1", "CCDC51", "CCL19", "CCL21", "CCL3", "CCL5", "CCL8", "CCR1", "CCR5", "CCR7", "CDH23", "CFTR", "CHERP", "CHP1", "CHRNA2", "CHRNA3", "CHRNA4", "CHRNA7", "CHRNB1", "CHRNB2", "CHRNB4", "CLCA1", "CLCA2", "CLCA3P", "CLCA4", "CLCN1", "CLCN2", "CLCN3", "CLCN4", "CLCN5", "CLCN6", "CLCN7", "CLCNKA", "CLCNKB", "CLDN16", "CLIC1", "CLIC2", "CLIC3", "CLIC4", "CLIC5", "CLTC", "CNGA1", "CNGA2", "CNGA3", "CNGA4", "CNGB1", "CNGB3", "CNNM4", "COX17", "CP", "CRACR2A", "CRACR2B", "CSN2", "CTNS", "CUTC", "CYBRD1", "CYP27B1", "DMAC2L", "DNM2", "DRD2", "ERO1A", "F2R", "FASLG", "FGF13", "FGF2", "FKBP1A", "FLNA", "FLVCR1", "FLVCR2", "FTH1", "FXYD1", "FXYD2", "FXYD3", "FYN", "GABRA1", "GABRA2", "GABRA3", "GABRA4", "GABRA5", "GABRA6", "GABRB1", "GABRB2", "GABRB3", "GABRD", "GABRE", "GABRG1", "GABRG2", "GABRG3", "GABRP", "GABRQ", "GABRR1", "GABRR2", "GABRR3", "GAS6", "GHITM", "GJA1", "GLRA1", "GLRA2", "GLRA3", "GLRB", "GP1BA", "GP1BB", "GP5", "GP9", "GRIN1", "GRIN2A", "GRIN2B", "GRIN2C", "GRIN2D", "GRIN3A", "HCN1", "HCN2", "HCN3", "HCN4", "HEPH", "HEPHL1", "HPN", "HSPA9", "HTR2A", "HTR2B", "HTR2C", "HVCN1", "IBTK", "ITGAV", "ITPR1", "ITPR2", "ITPR3", "JPH1", "JPH2", "JPH3", "JPH4", "KCNA1", "KCNA10", "KCNA2", "KCNA3", "KCNA4", "KCNA5", "KCNA6", "KCNA7", "KCNAB1", "KCNAB3", "KCNB1", "KCNB2", "KCNC1", "KCNC2", "KCNC3", "KCNC4", "KCND1", "KCND2", "KCND3", "KCNE1", "KCNE2", "KCNE3", "KCNE4", "KCNE5", "KCNF1", "KCNG1", "KCNG2", "KCNG3", "KCNG4", "KCNH2", "KCNH3", "KCNH4", "KCNH5", "KCNH6", "KCNH7", "KCNH8", "KCNIP2", "KCNJ1", "KCNJ10", "KCNJ11", "KCNJ12", "KCNJ13", "KCNJ14", "KCNJ15", "KCNJ16", "KCNJ18", "KCNJ2", "KCNJ3", "KCNJ4", "KCNJ5", "KCNJ6", "KCNJ8", "KCNJ9", "KCNK1", "KCNK10", "KCNK12", "KCNK13", "KCNK15", "KCNK16", "KCNK17", "KCNK18", "KCNK2", "KCNK3", "KCNK4", "KCNK5", "KCNK6", "KCNK7", "KCNK9", "KCNMA1", "KCNMB1", "KCNMB2", "KCNMB3", "KCNMB4", "KCNN1", "KCNN2", "KCNN3", "KCNN4", "KCNQ1", "KCNQ2", "KCNQ3", "KCNQ4", "KCNQ5", "KCNS1", "KCNS2", "KCNS3", "KCNT1", "KCNT2", "KCNU1", "KCNV1", "KCNV2", "KLHL3", "LASP1", "LCK", "LCN2", "LETM1", "LMTK2", "LRP2", "LRRC26", "LRRC38", "LRRC52", "LRRC55", "LRRC8A", "LRRC8B", "LRRC8C", "LRRC8D", "LRRC8E", "LTF", "MAGED2", "MAGT1", "MAIP1", "MCOLN1", "MCOLN2", "MCOLN3", "MCU", "MCUB", "MCUR1", "MELTF", "MICU1", "MICU2", "MICU3", "MMGT1", "MRS2", "MS4A1", "MT-CO1", "MT-ND4", "MT-ND5", "MT3", "NALCN", "NALF1", "NALF2", "NDFIP1", "NDFIP2", "NDUFA9", "NDUFS7", "NEDD4L", "NHERF4", "NIPA1", "NIPA2", "NIPAL1", "NIPAL2", "NIPAL3", "NIPAL4", "NMUR1", "NNT", "NOL3", "NOX5", "ORAI1", "ORAI2", "ORAI3", "OSTM1", "OTOP1", "OTOP2", "OTOP3", "OXSR1", "P2RX1", "P2RX2", "P2RX3", "P2RX4", "P2RX5", "P2RX6", "P2RX7", "PACC1", "PANX1", "PANX2", "PANX3", "PIEZO1", "PIEZO2", "PKD1", "PKD1L3", "PKD2", "PKD2L1", "PLCB1", "PLCB2", "PLCB3", "PLCB4", "PLCD1", "PLCE1", "PLCG1", "PLCG2", "PLCH1", "PLCH2", "PLP2", "PMPCB", "PTPRC", "RAB11B", "RAMP1", "RAMP2", "RAMP3", "REP15", "RNASEK", "ROMO1", "RYR1", "RYR2", "RYR3", "SCARA5", "SCN10A", "SCN11A", "SCN1A", "SCN1B", "SCN2A", "SCN2B", "SCN3A", "SCN3B", "SCN4A", "SCN4B", "SCN5A", "SCN7A", "SCN8A", "SCN9A", "SCNN1A", "SCNN1B", "SCNN1D", "SCNN1G", "SELENOK", "SGK1", "SLC11A1", "SLC11A2", "SLC12A1", "SLC12A2", "SLC12A3", "SLC12A4", "SLC12A5", "SLC12A6", "SLC12A7", "SLC12A8", "SLC12A9", "SLC13A1", "SLC15A1", "SLC15A2", "SLC15A3", "SLC15A4", "SLC17A1", "SLC17A2", "SLC17A3", "SLC17A4", "SLC17A5", "SLC17A6", "SLC17A7", "SLC17A8", "SLC1A1", "SLC1A2", "SLC1A3", "SLC1A6", "SLC1A7", "SLC20A1", "SLC20A2", "SLC22A17", "SLC23A1", "SLC24A1", "SLC24A2", "SLC24A3", "SLC24A4", "SLC24A5", "SLC25A10", "SLC25A18", "SLC25A22", "SLC25A23", "SLC25A26", "SLC25A28", "SLC25A37", "SLC26A1", "SLC26A11", "SLC26A3", "SLC26A4", "SLC26A5", "SLC26A6", "SLC26A7", "SLC26A8", "SLC26A9", "SLC29A4", "SLC30A1", "SLC30A10", "SLC30A2", "SLC30A3", "SLC30A4", "SLC30A5", "SLC30A6", "SLC30A7", "SLC30A8", "SLC30A9", "SLC31A1", "SLC31A2", "SLC32A1", "SLC34A3", "SLC35G1", "SLC36A1", "SLC36A2", "SLC36A3", "SLC38A7", "SLC39A1", "SLC39A10", "SLC39A11", "SLC39A12", "SLC39A13", "SLC39A14", "SLC39A2", "SLC39A3", "SLC39A4", "SLC39A5", "SLC39A6", "SLC39A7", "SLC39A8", "SLC39A9", "SLC3A2", "SLC40A1", "SLC41A1", "SLC41A2", "SLC41A3", "SLC46A1", "SLC48A1", "SLC4A1", "SLC4A10", "SLC4A11", "SLC4A2", "SLC4A4", "SLC4A8", "SLC4A9", "SLC5A1", "SLC5A12", "SLC5A2", "SLC5A4", "SLC5A5", "SLC5A6", "SLC5A8", "SLC6A1", "SLC6A11", "SLC6A12", "SLC6A13", "SLC6A14", "SLC6A15", "SLC6A16", "SLC6A17", "SLC6A18", "SLC6A19", "SLC6A2", "SLC6A20", "SLC6A3", "SLC6A4", "SLC6A5", "SLC6A6", "SLC6A7", "SLC6A8", "SLC6A9", "SLC8A1", "SLC8A2", "SLC8A3", "SLC8B1", "SLC9A1", "SLC9A2", "SLC9A3", "SLC9A4", "SLC9A5", "SLC9A6", "SLC9A7", "SLC9A8", "SLC9A9", "SLC9B1", "SLC9C1", "SLC9C2", "SLN", "SMDT1", "STEAP2", "STEAP3", "STEAP4", "STIM1", "STIM2", "STIMATE", "STK39", "TCIRG1", "TF", "TFR2", "TFRC", "TMCO1", "TMEM120A", "TMEM163", "TMEM165", "TMEM175", "TMEM63C", "TMEM94", "TPCN1", "TPCN2", "TPT1", "TRDN", "TRPA1", "TRPC1", "TRPC3", "TRPC4", "TRPC4AP", "TRPC5", "TRPC6", "TRPC7", "TRPM1", "TRPM2", "TRPM3", "TRPM4", "TRPM5", "TRPM6", "TRPM7", "TRPM8", "TRPV1", "TRPV2", "TRPV3", "TRPV4", "TRPV5", "TRPV6", "TSPO", "TTYH1", "TTYH3", "TUSC3", "UCP1", "UCP2", "UCP3", "VDAC1", "VDAC2", "WNK1", "WNK4", "WWP1", "XCL1", "ZACN" ] }, "position": { "x": 4106.44824870509, "y": 1517.200005114051, "id": "cc9f38d2-0dd3-459b-b55f-44e01fcf9dc9", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "e921ec18-89d3-48c9-aa6a-87acffde047b", "name": [ "NONSENSE MEDIATED DECAY (NMD) INDEPENDENT OF THE EXON JUNCTION COMPLEX (EJC)%REACTOME DATABASE ID RELEASE 81%975956" ], "description": [ "Nonsense Mediated Decay (NMD) independent of the Exon Junction Complex (EJC)" ], "pvalue": 7.1658e-16, "gs_type": null, "gs_size": 96, "padj": 9.0616e-14, "mcode_cluster_id": "Cluster 2", "NES": 2.6549, "genes": [ "EIF4G1", "ETF1", "FAU", "GSPT1", "GSPT2", "NCBP1", "NCBP2", "PABPC1", "RPL10", "RPL10A", "RPL10L", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL22L1", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL26L1", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL36AL", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL39L", "RPL3L", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "UBA52", "UPF1" ] }, "position": { "x": 979.2364892780389, "y": 474.3770158018814, "id": "e921ec18-89d3-48c9-aa6a-87acffde047b", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "650733ba-765c-4817-b183-e6b7035512aa", "name": [ "IMPORT INTO CELL%GOBP%GO:0098657" ], "description": [ "import into cell" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 547, "padj": 0.0029, "mcode_cluster_id": null, "NES": 1.4683, "genes": [ "ABCC8", "ABCC9", "ABL1", "ACE2", "ACKR3", "ACSL1", "ACSL3", "ADGRB1", "ADM", "ADORA1", "ADORA2A", "ADRB2", "ADRB3", "AHSG", "AIF1", "ALOX15", "AMN", "AMPH", "ANXA1", "ANXA11", "ANXA3", "AP1S1", "AP2A1", "AP2A2", "AP2B1", "AP2M1", "AP2S1", "AP3B2", "AP3D1", "AP3M1", "AP3M2", "AP3S1", "AP3S2", "APOE", "APP", "AQP8", "ARHGAP12", "ARHGAP25", "ARHGAP27", "ARL8B", "ARR3", "ARRB1", "ARRB2", "ASGR1", "ATP12A", "ATP1A1", "ATP1A2", "ATP1A3", "ATP1A4", "ATP1B1", "ATP1B2", "ATP1B3", "ATP2B4", "ATP4A", "ATP4B", "ATP6V1H", "ATP9A", "ATP9B", "AXL", "BIN1", "BIN2", "BIN3", "BLTP1", "C1orf43", "C9orf72", "CACNA1A", "CACNA1B", "CACNA1C", "CACNA1D", "CACNA1E", "CACNA1F", "CACNA1G", "CACNA1H", "CACNA1I", "CACNA1S", "CACNA2D1", "CACNG2", "CACNG3", "CACNG4", "CACNG5", "CACNG7", "CACNG8", "CALCRL", "CANX", "CARMIL1", "CAV1", "CAV2", "CAV3", "CD14", "CD302", "CD36", "CD81", "CD9", "CD93", "CDC42", "CDK5", "CEACAM1", "CEACAM4", "CLCN2", "CLEC4M", "CLEC7A", "CLEC9A", "CLINT1", "CLN3", "CLTA", "CLTB", "CLTC", "CLTCL1", "COLEC12", "CORO1A", "CORO1C", "CSNK1D", "CSNK1E", "CSNK1G1", "CSNK1G2", "CSNK1G3", "CTSL", "CTTN", "CUBN", "CXCL16", "CXCL8", "CXCR1", "CXCR2", "CYTH2", "DAB2", "DENND1A", "DENND1B", "DENND1C", "DLL1", "DNAJC13", "DNAJC6", "DNER", "DNM1", "DNM1L", "DNM2", "DNM3", "DOCK1", "DOCK2", "DPP4", "DPYSL2", "DRD3", "EEA1", "EHD1", "EHD2", "EHD3", "EHD4", "ELANE", "ELMO1", "ENTHD1", "ENTREP1", "EPN1", "EPN2", "EPN3", "EPS15", "EPS15L1", "EQTN", "FCER1G", "FCER2", "FCGR2B", "FCHO1", "FCHO2", "FCHSD2", "FCMR", "FCN1", "FCN2", "FCN3", "FGR", "FNBP1L", "FOLR1", "FXYD2", "FYN", "GAK", "GAS6", "GPR107", "GRB2", "GRK2", "GRK3", "GRK4", "GSN", "GTF2H2", "GULP1", "HAVCR1", "HCK", "HCN2", "HCN4", "HEATR5A", "HEATR5B", "HGS", "HIP1", "HIP1R", "HMGB1", "HOOK2", "HSPG2", "IGF2R", "IL10RA", "INPP5F", "INPPL1", "INSR", "ITCH", "ITGAM", "ITGAV", "ITGB1", "ITGB2", "ITGB3", "ITSN1", "ITSN2", "JMJD6", "JPT2", "KCNE2", "KCNH2", "KCNJ1", "KCNJ10", "KCNJ11", "KCNJ12", "KCNJ13", "KCNJ14", "KCNJ15", "KCNJ16", "KCNJ18", "KCNJ2", "KCNJ3", "KCNJ4", "KCNJ5", "KCNJ6", "KCNJ8", "KCNJ9", "KCNK9", "LDLR", "LDLRAD3", "LDLRAP1", "LILRB1", "LILRB4", "LIMK1", "LMBR1L", "LMBRD1", "LRP1", "LRP12", "LRP1B", "LRP2", "LRP3", "LRP8", "LRRC8A", "LRRC8B", "LRRC8C", "LRRC8D", "LRRC8E", "LRRK2", "LRSAM1", "LYN", "M6PR", "MAGI2", "MAPK1", "MAPK3", "MAPKAPK2", "MAPKAPK3", "MARCO", "MEGF10", "MERTK", "MESD", "MET", "MIB1", "MICALL1", "MLC1", "MRC1", "MSR1", "MST1R", "MYCBPAP", "MYD88", "MYH9", "MYO15A", "MYO1A", "MYO1B", "MYO1C", "MYO1D", "MYO1E", "MYO1F", "MYO1G", "MYO1H", "MYO6", "MYO7A", "MYO7B", "NALF1", "NALF2", "NCKIPSD", "NECAP2", "NEDD4", "NEURL1B", "NEURL3", "NHERF1", "NLGN1", "NLGN2", "NLGN3", "NLGN4X", "NLGN4Y", "NR1H3", "OCIAD1", "OCIAD2", "OPHN1", "P2RY6", "PACSIN1", "PACSIN2", "PAK1", "PDLIM7", "PECAM1", "PI4KB", "PICALM", "PIK3C2A", "PIK3C3", "PIKFYVE", "PIP5K1A", "PIP5K1C", "PLA2G5", "PLA2G6", "PLD2", "PLD4", "PLPP4", "PPT1", "PRKCD", "PRKCE", "PTK2", "PYCARD", "RAB11FIP2", "RAB14", "RAB17", "RAB1A", "RAB20", "RAB22A", "RAB31", "RAB34", "RAB39A", "RAB5A", "RAB5B", "RAB5C", "RAB7A", "RAB7B", "RABEPK", "RAC1", "RAC3", "RALA", "RALB", "RALBP1", "RAMP1", "RAMP2", "RAMP3", "RARA", "REPS1", "REPS2", "RHOBTB1", "RHOBTB2", "RHOJ", "RHOQ", "RHOU", "RHOV", "RIN3", "RINL", "RNASEK", "RPS6KB1", "SAG", "SCARA5", "SCARB1", "SCARB2", "SCARF1", "SCNN1A", "SCNN1B", "SCNN1D", "SCNN1G", "SCYL2", "SFTPD", "SH3BP1", "SH3GL1", "SH3GL2", "SH3GL3", "SHOC2", "SIGLEC1", "SLC11A1", "SLC12A1", "SLC12A2", "SLC12A3", "SLC12A4", "SLC12A5", "SLC12A6", "SLC12A7", "SLC12A8", "SLC15A1", "SLC15A2", "SLC15A3", "SLC15A4", "SLC16A2", "SLC18A1", "SLC18A2", "SLC18A3", "SLC18B1", "SLC19A1", "SLC1A1", "SLC1A2", "SLC1A3", "SLC1A4", "SLC1A5", "SLC1A6", "SLC1A7", "SLC22A1", "SLC22A2", "SLC22A3", "SLC22A4", "SLC24A1", "SLC24A2", "SLC24A4", "SLC27A1", "SLC27A2", "SLC27A4", "SLC27A5", "SLC27A6", "SLC28A1", "SLC29A1", "SLC29A2", "SLC29A4", "SLC2A1", "SLC2A10", "SLC2A3", "SLC2A5", "SLC30A8", "SLC36A1", "SLC36A4", "SLC38A1", "SLC38A2", "SLC38A3", "SLC38A4", "SLC38A5", "SLC39A10", "SLC39A12", "SLC39A14", "SLC39A4", "SLC39A5", "SLC39A6", "SLC39A8", "SLC3A2", "SLC46A1", "SLC46A2", "SLC47A1", "SLC5A1", "SLC5A2", "SLC5A3", "SLC5A6", "SLC6A1", "SLC6A11", "SLC6A12", "SLC6A13", "SLC6A14", "SLC6A2", "SLC6A20", "SLC6A3", "SLC6A4", "SLC6A5", "SLC6A6", "SLC6A7", "SLC6A9", "SLC7A1", "SLC7A2", "SLC7A3", "SLC7A5", "SLC7A8", "SLC8A1", "SLC8A2", "SLC8A3", "SLC9A1", "SLC9A2", "SLC9A3", "SLC9A4", "SLC9A5", "SLC9A6", "SLC9A7", "SLC9A9", "SLC9C1", "SLC9C2", "SNAP25", "SNAP91", "SNCA", "SNCB", "SNCG", "SNX1", "SNX18", "SNX33", "SNX5", "SNX9", "SORL1", "SORT1", "SPX", "SRC", "SRPX", "STAB1", "STAB2", "STEAP2", "STON1", "STON2", "STRA6", "STX1A", "SYK", "SYNJ1", "SYNJ2", "SYP", "SYT1", "SYT2", "SYT5", "SYT7", "SYT8", "TAFA4", "TBC1D2B", "TFR2", "TFRC", "TGM2", "THBS1", "TICAM2", "TIMD4", "TLR4", "TM9SF4", "TMEM108", "TOM1", "TPCN1", "TPCN2", "TREM2", "TRPM1", "TRPM2", "TRPM4", "TRPV1", "TRPV5", "TRPV6", "TSC2", "TSPO2", "TYRO3", "TYROBP", "VAMP2", "VAMP7", "VAV1", "VAV2", "VAV3", "VIPAS39", "VLDLR", "VPS33B", "WASF1", "XKR4", "XKR5", "XKR6", "XKR7", "XKR8", "XKR9", "YES1", "ZFYVE9" ] }, "position": { "x": 3764.539072651805, "y": 2272.9446642487483, "id": "650733ba-765c-4817-b183-e6b7035512aa" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "c813804a-d0e7-423b-a28b-689f94ff466a", "name": [ "ASSEMBLY OF THE PRE-REPLICATIVE COMPLEX%REACTOME%R-HSA-68867.10" ], "description": [ "Assembly of the pre-replicative complex" ], "pvalue": 6.8164e-7, "gs_type": null, "gs_size": 110, "padj": 0, "mcode_cluster_id": "Cluster 1", "NES": -2.0382, "genes": [ "ANAPC1", "ANAPC10", "ANAPC11", "ANAPC15", "ANAPC16", "ANAPC2", "ANAPC4", "ANAPC5", "ANAPC7", "CDC16", "CDC23", "CDC26", "CDC27", "CDC6", "CDT1", "FZR1", "GMNN", "H2AB1", "H2AC14", "H2AC19", "H2AC20", "H2AC7", "H2AC8", "H2AJ", "H2AX", "H2AZ2", "H2BC1", "H2BC11", "H2BC12", "H2BC12L", "H2BC13", "H2BC14", "H2BC15", "H2BC17", "H2BC21", "H2BC26", "H2BC3", "H2BC5", "H2BC8", "H2BC9", "H3-3B", "H3C15", "H3C8", "H4C9", "KPNA1", "KPNA6", "KPNB1", "MCM2", "MCM3", "MCM4", "MCM5", "MCM6", "MCM7", "MCM8", "ORC1", "ORC2", "ORC3", "ORC4", "ORC5", "ORC6", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMB1", "PSMB10", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSMF1", "RPS27A", "SEM1", "UBA52", "UBB", "UBC", "UBE2C", "UBE2D1", "UBE2E1", "UBE2S" ] }, "position": { "x": 473.62387200219143, "y": 771.3102831590384, "id": "c813804a-d0e7-423b-a28b-689f94ff466a", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "536cea90-ddae-4dd4-a936-9846245ac987", "name": [ "INNATE IMMUNE RESPONSE ACTIVATING CELL SURFACE RECEPTOR SIGNALING PATHWAY%GOBP%GO:0002220" ], "description": [ "innate immune response activating cell surface receptor signaling pathway" ], "pvalue": 0.0004, "gs_type": null, "gs_size": 62, "padj": 0.0071, "mcode_cluster_id": "Cluster 20", "NES": -1.8289, "genes": [ "CD14", "CHUK", "CLEC6A", "CLEC7A", "COLEC10", "COLEC11", "CREBBP", "ECSIT", "EP300", "FCN1", "FCN2", "FCN3", "FFAR2", "FYN", "IKBKB", "IRAK1", "IRAK2", "IRAK4", "IRF3", "KIR2DS2", "KLRC1", "KLRC2", "KLRC3", "KLRC4", "KLRD1", "LBP", "LGALS9", "LILRA2", "LY96", "LYN", "MAP3K7", "MBL2", "MYD88", "NFKBIA", "NMI", "OAS1", "PAK1", "PAK2", "PAK3", "PIK3AP1", "PLCG2", "PRKCE", "RAB11FIP2", "RELA", "RIPK2", "S100A14", "SCIMP", "SRC", "SYK", "TBK1", "TICAM1", "TICAM2", "TIRAP", "TLR2", "TLR4", "TLR5", "TNIP2", "TNIP3", "TRAF3", "TRAF6", "TRIL", "TYROBP" ] }, "position": { "x": 1669.166550760698, "y": 342.7675239492624, "id": "536cea90-ddae-4dd4-a936-9846245ac987", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "58322784-4ff6-48e8-bb62-0bbc20a06950", "name": [ "NEGATIVE REGULATION OF IMMUNE RESPONSE%GOBP%GO:0050777" ], "description": [ "negative regulation of immune response" ], "pvalue": 1.7339e-7, "gs_type": null, "gs_size": 148, "padj": 0.0000094263, "mcode_cluster_id": null, "NES": -2.0097, "genes": [ "A2M", "ACOD1", "AHR", "ALOX15", "AMBP", "ANXA1", "ARG1", "ARRB2", "ATG12", "ATG5", "AURKB", "BANF1", "C4BPA", "C4BPB", "CACTIN", "CCR2", "CD160", "CD274", "CD300A", "CD46", "CD55", "CD59", "CD80", "CEACAM1", "CEP63", "CLEC12B", "CNOT7", "COL3A1", "CR1", "CR1L", "CR2", "DCST1", "DHX58", "DTX4", "EIF4E2", "ENPP3", "FAM3A", "FCGR2B", "FER", "FGR", "FOXJ1", "FOXP3", "FURIN", "FYN", "GIGYF2", "GRN", "HAVCR2", "HCK", "HFE", "HLA-A", "HLA-B", "HLA-DRB1", "HLA-E", "HLA-F", "HLA-G", "IFI16", "IFNA2", "IFNB1", "IFNL1", "IL4I1", "INS", "IRAK3", "ISG15", "JAK3", "KIR2DL4", "KLRC1", "KLRD1", "LGALS3", "LGALS9", "LILRB1", "LILRB4", "LOXL3", "LYAR", "LYN", "MAPK14", "MAVS", "METTL3", "MICA", "MKRN2", "MUL1", "NCKAP1L", "NLRC3", "NLRC5", "NLRP4", "NMI", "NR1H2", "NR1H3", "OAS1", "OAS3", "OTOP1", "PARP1", "PARP14", "PARP3", "PDCD1", "PIM1", "PLCG1", "PLK2", "PPARG", "PTPN2", "PTPRC", "RC3H1", "RC3H2", "RHBDF2", "RPS19", "SAMHD1", "SAMSN1", "SELENOS", "SERPINB4", "SERPINB9", "SERPING1", "SFN", "SLAMF8", "SMAD7", "SMCR8", "SMIM30", "SOCS5", "SPI1", "SPINK5", "SRC", "STAT2", "SUSD4", "SVEP1", "SYK", "TBX21", "TGFB1", "TNFAIP3", "TNFRSF14", "TNFSF4", "TRAFD1", "TREM2", "TREX1", "TRIM21", "TRIM27", "TTLL12", "TYRO3", "UFL1", "USP15", "USP18", "USP38", "VSIG4", "WDR41", "XCL1", "YES1", "YTHDF2", "YTHDF3", "YWHAZ", "ZC3H12A", "ZDHHC18" ] }, "position": { "x": 2083.878645370708, "y": 446.30459045731675, "id": "58322784-4ff6-48e8-bb62-0bbc20a06950" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "46c8c456-5def-4584-9833-812316564cc4", "name": [ "PROTEIN TARGETING TO VACUOLE%GOBP%GO:0006623" ], "description": [ "protein targeting to vacuole" ], "pvalue": 0.0009, "gs_type": null, "gs_size": 39, "padj": 0.0148, "mcode_cluster_id": "Cluster 23", "NES": 1.9105, "genes": [ "AP3D1", "AP3M1", "AP4M1", "ATG14", "BECN1", "CLU", "GCC2", "GGA3", "GNPTAB", "GNPTG", "HGS", "IRGM", "LAMP2", "LAPTM5", "M6PR", "NAGPA", "NCOA4", "NEDD4", "PIK3C3", "PIK3R4", "PXK", "RAB7A", "SCARB2", "SMURF1", "SNX16", "SORL1", "SQSTM1", "VPS13A", "VPS13C", "VPS13D", "VPS37A", "VPS37B", "VPS37C", "VPS37D", "VPS41", "VPS4A", "VPS8", "WASH3P", "ZFYVE16" ] }, "position": { "x": 3806.879324698069, "y": 1862.5872085239976, "id": "46c8c456-5def-4584-9833-812316564cc4", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "name": [ "REGULATION OF APOPTOSIS%REACTOME DATABASE ID RELEASE 81%169911" ], "description": [ "Regulation of Apoptosis" ], "pvalue": 0, "gs_type": null, "gs_size": 53, "padj": 0.0004, "mcode_cluster_id": "Cluster 1", "NES": -2.008, "genes": [ "ARHGAP10", "OMA1", "OPA1", "PAK2", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RPS27A", "SEM1", "UBA52", "UBB", "UBC" ] }, "position": { "x": 460.4387291361194, "y": 782.2473200672755, "id": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "88ecc602-cca5-455e-bc02-3d57566d1f39", "name": [ "PID_IL12_2PATHWAY%MSIGDB_C2%PID_IL12_2PATHWAY" ], "description": [ "PID_IL12_2PATHWAY" ], "pvalue": 0.0017, "gs_type": null, "gs_size": 53, "padj": 0.0237, "mcode_cluster_id": null, "NES": -1.7874, "genes": [ "ATF2", "B2M", "CCL3", "CCL4", "CCR5", "CD247", "CD3D", "CD3E", "CD3G", "CD8A", "CD8B1", "FOS", "GADD45G", "GZMA", "HLA-A", "HLA-DRA", "HLX", "IF2F", "IL12A", "IL12B", "IL12RB1", "IL18", "IL18R1", "IL18RAP", "IL1B", "IL1R1", "IL2", "IL2RA", "IL2RB", "IL2RG", "IL4", "LCK", "MAP2K3", "MAP2K6", "MAPK14", "MTOR", "NFKB1", "NFKB2", "NOS2", "PPP3CA", "PPP3R1", "RAB7A", "RELA", "RELB", "RIPK2", "SOCS1", "SPHK2", "STAT1", "STAT3", "STAT4", "TBX21", "TNFSF6", "TYK2" ] }, "position": { "x": 292.63229477096127, "y": 2087.656384797314, "id": "88ecc602-cca5-455e-bc02-3d57566d1f39" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "74d79616-6400-4439-83c7-0371e0b30d34", "name": [ "SELENOAMINO ACID METABOLISM%REACTOME DATABASE ID RELEASE 81%2408522" ], "description": [ "Selenoamino acid metabolism" ], "pvalue": 1.1552e-12, "gs_type": null, "gs_size": 117, "padj": 1.1789e-10, "mcode_cluster_id": "Cluster 2", "NES": 2.4538, "genes": [ "AHCY", "AIMP1", "AIMP2", "CBS", "CTH", "DARS1", "EEF1E1", "EEFSEC", "EPRS1", "FAU", "GNMT", "HNMT", "IARS1", "INMT", "KARS1", "LARS1", "MARS1", "MAT1A", "NNMT", "PAPSS1", "PAPSS2", "PSTK", "QARS1", "RARS1", "RPL10", "RPL10A", "RPL10L", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL22L1", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL26L1", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL36AL", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL39L", "RPL3L", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "SARS1", "SCLY", "SECISBP2", "SEPHS2", "SEPSECS", "TXNRD1", "UBA52" ] }, "position": { "x": 726.7951085401685, "y": 571.9296521579583, "id": "74d79616-6400-4439-83c7-0371e0b30d34", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "e45b8507-21ba-4ed2-88e7-49bea133780d", "name": [ "CAP-DEPENDENT TRANSLATION INITIATION%REACTOME%R-HSA-72737.4" ], "description": [ "Cap-dependent Translation Initiation" ], "pvalue": 5.4386e-19, "gs_type": null, "gs_size": 120, "padj": 2.876e-16, "mcode_cluster_id": "Cluster 2", "NES": 2.754, "genes": [ "EIF1AX", "EIF2B1", "EIF2B2", "EIF2B3", "EIF2B4", "EIF2B5", "EIF2S1", "EIF2S2", "EIF2S3", "EIF3A", "EIF3B", "EIF3C", "EIF3D", "EIF3E", "EIF3F", "EIF3G", "EIF3H", "EIF3I", "EIF3J", "EIF3K", "EIF3L", "EIF3M", "EIF4A1", "EIF4A2", "EIF4B", "EIF4E", "EIF4EBP1", "EIF4G1", "EIF4H", "EIF5", "EIF5B", "FAU", "PABPC1", "RPL10", "RPL10A", "RPL10L", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL22L1", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL26L1", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL36AL", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL39L", "RPL3L", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "UBA52" ] }, "position": { "x": 719.0416983686551, "y": 517.1256621754058, "id": "e45b8507-21ba-4ed2-88e7-49bea133780d", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "name": [ "ACTIVATION OF THE MRNA UPON BINDING OF THE CAP-BINDING COMPLEX AND EIFS, AND SUBSEQUENT BINDING TO 43S%REACTOME DATABASE ID RELEASE 81%72662" ], "description": [ "Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S" ], "pvalue": 8.8524e-11, "gs_type": null, "gs_size": 60, "padj": 8.5824e-9, "mcode_cluster_id": "Cluster 2", "NES": 2.5097, "genes": [ "EIF1AX", "EIF2S1", "EIF2S2", "EIF2S3", "EIF3A", "EIF3B", "EIF3C", "EIF3D", "EIF3E", "EIF3F", "EIF3G", "EIF3H", "EIF3I", "EIF3J", "EIF3K", "EIF3L", "EIF3M", "EIF4A1", "EIF4A2", "EIF4B", "EIF4E", "EIF4EBP1", "EIF4G1", "EIF4H", "FAU", "PABPC1", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA" ] }, "position": { "x": 1135.2322796276799, "y": 396.9328622194053, "id": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "97f6e981-51b7-4e43-9ab6-97c629eb86ce", "name": [ "NAD BIOSYNTHETIC PROCESS%GOBP%GO:0009435" ], "description": [ "NAD biosynthetic process" ], "pvalue": 0.0035, "gs_type": null, "gs_size": 20, "padj": 0.0399, "mcode_cluster_id": null, "NES": -1.757, "genes": [ "HAAO", "IDO1", "IDO2", "KYNU", "NADSYN1", "NAMPT", "NAPRT", "NAXD", "NMNAT1", "NMNAT2", "NMNAT3", "NNMT", "NUDT12", "PARP10", "PARP16", "PARP9", "PTGIS", "QPRT", "SLC22A13", "SLC5A8" ] }, "position": { "x": 422.5, "y": 2272.9446642487483, "id": "97f6e981-51b7-4e43-9ab6-97c629eb86ce" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "6b221283-c77c-42da-84e1-a571f4b878ff", "name": [ "INNATE IMMUNE RESPONSE%GOBP%GO:0045087" ], "description": [ "innate immune response" ], "pvalue": 2.1128e-15, "gs_type": null, "gs_size": 418, "padj": 2.4581e-13, "mcode_cluster_id": "Cluster 17", "NES": -2.2615, "genes": [ "ACOD1", "ADAM15", "ADAR", "AIF1", "AKAP1", "ALPK1", "ANG", "ANKHD1", "ANKRD17", "APCS", "APOA4", "APOBEC3A", "APOBEC3F", "APOBEC3G", "APOL1", "AQP4", "ARL8B", "ATAD3A", "AZI2", "BCL10", "BLK", "BPI", "BPIFA1", "BPIFB1", "BPIFB3", "BST2", "BTK", "CALCOCO2", "CALM1", "CAMK2A", "CAMP", "CARD8", "CARD9", "CASP1", "CCL2", "CCL3", "CCL5", "CD2", "CD47", "CD58", "CD74", "CEBPG", "CFB", "CFD", "CFHR5", "CGAS", "CH25H", "CHGA", "CHUK", "CIITA", "CITED1", "CLEC2A", "CLEC4A", "CLEC4C", "CLEC4D", "CLEC4E", "CLEC5A", "CLEC6A", "CLEC7A", "CLPB", "COLEC10", "COLEC11", "COLEC12", "CORO1A", "CR1", "CR2", "CRIPTO", "CRISP3", "CRP", "CX3CR1", "CXCL10", "CXCL16", "CYBA", "CYBB", "CYBC1", "CYLD", "CYP27B1", "DAPK1", "DAPK3", "DDX3X", "DEFA1B", "DEFA3", "DEFA4", "DEFA5", "DEFA6", "DEFB1", "DEFB104B", "DEFB106B", "DEFB114", "DEFB118", "DEFB119", "DEFB127", "DEFB136", "DEFB4B", "DHX15", "DHX16", "DHX58", "DMBT1", "DUS2", "ECSIT", "EIF2AK2", "EPRS1", "F12", "FAU", "FCER1G", "FCGR3A", "FCN1", "FCN2", "FCN3", "FGR", "FRK", "FYN", "GAPDH", "GARIN5A", "GBP1", "GBP2", "GBP3", "GBP4", "GBP5", "GBP6", "GBP7", "GCH1", "GRB2", "GZMB", "H2BC11", "H2BC12", "H2BC12L", "H2BC21", "H2BC8", "HCK", "HCST", "HDAC4", "HERC5", "HLA-DPA1", "IFI27", "IFI6", "IFIH1", "IFIT1", "IFIT2", "IFIT3", "IFITM1", "IFITM2", "IFITM3", "IFNA10", "IFNA13", "IFNA14", "IFNA16", "IFNA17", "IFNA2", "IFNA21", "IFNA4", "IFNA5", "IFNA6", "IFNA7", "IFNA8", "IFNAR1", "IFNAR2", "IFNB1", "IFNE", "IFNG", "IFNGR1", "IFNGR2", "IFNK", "IFNL1", "IFNL2", "IFNL3", "IFNL4", "IFNLR1", "IFNW1", "IGHM", "IKBKB", "IKBKE", "IKBKG", "IL10RB", "IL12RB1", "IL23R", "INAVA", "IRAK1", "IRAK4", "IRF1", "IRF3", "IRF5", "IRF7", "IRF8", "IRGM", "ISG15", "JAK1", "JAK2", "JCHAIN", "KIF5B", "KIR3DL1", "KLRC2", "KLRD1", "KLRF2", "KLRK1", "KRT1", "KRT16", "KYNU", "LBP", "LCK", "LCN2", "LGALS9", "LTF", "LY86", "LY96", "LYN", "LYST", "MALT1", "MARCHF2", "MASP1", "MASP2", "MAVS", "MBL2", "MEFV", "MFHAS1", "MICA", "MID2", "MORC3", "MPEG1", "MSRB1", "MX1", "MYD88", "N4BP3", "NCF1", "NCF2", "NCK1", "NEDD4", "NFKB1", "NFKB2", "NKG7", "NLRC5", "NLRP1", "NLRP6", "NLRP9", "NMB", "NMBR", "NOD2", "NOS2", "NRROS", "NUB1", "OAS1", "OAS2", "OTULIN", "PDE12", "PGLYRP1", "PGLYRP2", "PGLYRP3", "PGLYRP4", "PHB1", "PHB2", "PI3", "PIK3CD", "PIK3CG", "PIK3R1", "PIM1", "PJA2", "PLA2G1B", "PLCG2", "PLEKHM2", "PML", "POLR3A", "PPARG", "PPP1R14B", "PRKRA", "PTK6", "PTX3", "PYDC1", "RAB2B", "RAET1E", "RAET1G", "RAF1", "RARRES2", "RASGRP4", "REL", "RELA", "RELB", "RFPL1", "RFPL2", "RFPL3", "RFPL4A", "RFPL4AL1", "RIGI", "RIPK2", "RNASE2", "RNASE3", "RNASE6", "RNASE7", "RNASE8", "RNF135", "RPL13A", "RPL39", "RPSA", "S100A12", "SENP7", "SERINC3", "SERINC5", "SETD2", "SFTPD", "SHFL", "SHMT2", "SIRPA", "SKP2", "SLAMF7", "SLC11A1", "SLC15A2", "SLC22A5", "SLC26A6", "SLPI", "SMARCA5", "SMPD1", "SNCA", "SP100", "SRC", "SRMS", "SRPK1", "SRPK2", "STAT1", "STAT2", "STING1", "SYK", "SYNCRIP", "TANK", "TBK1", "TBKBP1", "TFEB", "TIFA", "TLR1", "TLR10", "TLR2", "TLR3", "TLR4", "TLR6", "TLR7", "TLR8", "TLR9", "TNF", "TRAF2", "TRAF3", "TRAF6", "TREML1", "TRIM10", "TRIM11", "TRIM13", "TRIM14", "TRIM15", "TRIM21", "TRIM22", "TRIM25", "TRIM26", "TRIM27", "TRIM28", "TRIM31", "TRIM32", "TRIM34", "TRIM35", "TRIM38", "TRIM4", "TRIM40", "TRIM43", "TRIM43B", "TRIM48", "TRIM49", "TRIM49B", "TRIM49C", "TRIM49D2", "TRIM5", "TRIM51", "TRIM51G", "TRIM56", "TRIM58", "TRIM59", "TRIM6", "TRIM62", "TRIM64", "TRIM64B", "TRIM64C", "TRIM68", "TRIM7", "TRIM77", "TRIM8", "TRIML1", "TRIML2", "TTC4", "TUBB", "TUBB4B", "TYK2", "UAP1", "UBA7", "UBD", "UBE2L6", "UBE2N", "UBE2W", "ULBP1", "ULBP2", "ULBP3", "UMOD", "USP18", "USP20", "USP44", "VAMP2", "VAMP7", "VAV1", "VNN1", "WFDC10A", "WFDC10B", "WFDC11", "WFDC12", "WFDC13", "WFDC2", "WFDC3", "WFDC5", "WFDC9", "WNT5A", "YES1", "ZAP70", "ZBP1", "ZDHHC1", "ZDHHC11" ] }, "position": { "x": 2828.5540599228366, "y": 262.9836578305119, "id": "6b221283-c77c-42da-84e1-a571f4b878ff", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "1520902d-bab4-4f2a-8b21-1600ee8de4e3", "name": [ "EPITHELIUM DEVELOPMENT%GOBP%GO:0060429" ], "description": [ "epithelium development" ], "pvalue": 0, "gs_type": null, "gs_size": 583, "padj": 0.0012, "mcode_cluster_id": null, "NES": -1.5376, "genes": [ "ABCA12", "ABI2", "ACADVL", "ACER1", "ACTA2", "ACTB", "ACTG1", "ACTL8", "ACVR1", "ACVR2B", "ACVRL1", "ADAM17", "ADAM7", "ADAM9", "AFDN", "AHI1", "AIRE", "AKR1C1", "AKR1C2", "AKR1C3", "AKT1", "AKT2", "ALDH1A2", "ALDOC", "ALOX12", "ALOX12B", "ALOXE3", "ALX4", "ANKRD24", "ANXA1", "ANXA4", "ANXA7", "APCDD1", "APELA", "APLNR", "AQP11", "ARHGAP12", "ARHGAP24", "ARHGAP35", "ARL13B", "ASAH1", "ASCL1", "ATF4", "ATP6AP2", "ATP7A", "BASP1", "BBS4", "BBS5", "BBS7", "BCCIP", "BCL10", "BCR", "BDH2", "BFSP1", "BMP2", "BMP4", "BMP5", "BMP6", "BMP7", "BMPR2", "BRSK1", "BRSK2", "CAMSAP3", "CARMIL2", "CASP14", "CASP3", "CASP6", "CBR1", "CCDC103", "CCDC39", "CCDC40", "CCDC78", "CCDC88C", "CCM2", "CCN1", "CCNO", "CD151", "CD24", "CD34", "CD44", "CDC42", "CDH2", "CDH3", "CDHR2", "CDK1", "CDK6", "CDSN", "CDX2", "CEACAM1", "CELSR1", "CEP152", "CEP290", "CEP63", "CER1", "CERS3", "CES1", "CFLAR", "CHRD", "CITED1", "CITED2", "CLDN1", "CLDN3", "CLDN4", "CLIC4", "CLRN2", "CNN3", "COBL", "COL18A1", "COL27A1", "COL4A1", "COL5A1", "CPT1A", "CRB2", "CRYGD", "CSF1R", "CSNK2B", "CSTA", "CTNNB1", "CTSB", "CTSH", "CYSRT1", "DAB2", "DACT1", "DACT2", "DAG1", "DDR1", "DEAF1", "DEUP1", "DHRS9", "DLC1", "DLL1", "DLL4", "DLX3", "DMBT1", "DMRT1", "DNAAF1", "DNPH1", "DSP", "DSPP", "DVL1", "DVL1P1", "DVL2", "DVL3", "E2F4", "E2F7", "E2F8", "EDF1", "EHF", "ENAM", "ENG", "EPHA2", "ERBB4", "ERCC2", "ERCC3", "EREG", "ERRFI1", "EVPL", "EXPH5", "EZR", "F11R", "F2RL1", "FA2H", "FGF1", "FGF10", "FGF2", "FGF8", "FGFR2", "FLG", "FLG2", "FLNA", "FLRT3", "FN3K", "FOLR1", "FOXB1", "FOXC1", "FOXD1", "FOXE1", "FOXH1", "FOXI3", "FOXJ1", "FOXN4", "FSTL1", "FUZ", "FZD7", "GATA3", "GATA4", "GATA5", "GATA6", "GDF2", "GDNF", "GLI1", "GLI2", "GPC3", "GRHL2", "GRHL3", "GRXCR1", "GSTA1", "GSTA2", "GSTK1", "GSTM3", "HAND1", "HDAC1", "HDAC2", "HES1", "HES5", "HEY1", "HEY2", "HNF1B", "HNRNPH3", "HOXA11", "HOXD11", "HRNR", "HSF4", "ICAM1", "ID2", "IFT122", "IHH", "IL18", "IL6ST", "INHBA", "INSM1", "INTU", "IQGAP1", "IRF6", "ITGA5", "ITGAV", "ITGB1", "ITGB3", "ITGB5", "IVL", "JAG1", "JAG2", "JAK2", "KANK2", "KDF1", "KDM2B", "KDM6B", "KDR", "KLF15", "KLHL3", "KLK14", "KLK5", "KRIT1", "KRT1", "KRT10", "KRT12", "KRT13", "KRT14", "KRT15", "KRT16", "KRT17", "KRT19", "KRT2", "KRT20", "KRT23", "KRT24", "KRT25", "KRT26", "KRT27", "KRT28", "KRT3", "KRT31", "KRT32", "KRT33A", "KRT33B", "KRT34", "KRT35", "KRT36", "KRT37", "KRT38", "KRT39", "KRT4", "KRT40", "KRT5", "KRT6A", "KRT6B", "KRT6C", "KRT7", "KRT71", "KRT72", "KRT73", "KRT74", "KRT75", "KRT76", "KRT77", "KRT78", "KRT79", "KRT80", "KRT81", "KRT82", "KRT83", "KRT84", "KRT85", "KRT86", "KRT9", "LATS1", "LCP1", "LFNG", "LGALS3", "LHX1", "LIN7C", "LIPK", "LIPM", "LIPN", "LMO4", "LOC100653049", "LOC112267897", "LOC647264", "LORICRIN", "LOXL3", "LRG1", "LRP2", "LSR", "LUZP1", "MAF", "MAGI2", "MANSC4", "MAP1B", "MARVELD2", "MCIDAS", "MED1", "MEF2C", "MEGF8", "MEOX1", "MEOX2", "MESP1", "MESP2", "MET", "MFSD2A", "MICAL2", "MKKS", "MMP12", "MRTFA", "MSN", "MTHFD1", "MTHFD1L", "MTHFR", "MTSS1", "MYADM", "MYC", "MYO1E", "MYO6", "MYO9A", "NDRG4", "NEUROD1", "NFIB", "NHERF1", "NKX2-1", "NKX2-5", "NKX2-6", "NKX3-1", "NKX6-1", "NOTCH1", "NOTCH4", "NPHP1", "NPHP3", "NPHS1", "NPHS2", "NPNT", "NPY", "NR2F2", "NRARP", "NRG1", "NRP1", "NSUN2", "OPHN1", "OPN3", "OSR1", "OVOL1", "OVOL2", "OVOL3", "PAK1", "PALS1", "PAX2", "PAX6", "PAX8", "PCK1", "PCK2", "PCNA", "PDCD10", "PDE2A", "PDE4D", "PDGFA", "PDGFB", "PDPN", "PDX1", "PDZD7", "PECAM1", "PERCC1", "PERP", "PGK1", "PHACTR4", "PIH1D1", "PIP5K1A", "PITX2", "PKD1", "PKD2", "PKHD1", "PLAAT1", "PLAAT3", "PLET1", "PLK4", "PLS1", "PLXNB2", "PODXL", "POF1B", "POU2F3", "POU3F3", "PPARG", "PPP1R16B", "PPP2R3A", "PPP3CA", "PRICKLE1", "PRKD2", "PRKX", "PROM1", "PROX1", "PSAP", "PSAPL1", "PTCH1", "PTER", "PTPRO", "PYY", "RAB10", "RAB13", "RAB1A", "RAB1B", "RAB25", "RAP1A", "RAP1B", "RAP2A", "RAP2B", "RAP2C", "RAPGEF1", "RAPGEF2", "RAPGEF3", "RAPGEF6", "RASIP1", "RBPJ", "RCN3", "RDX", "RFX6", "RHCG", "RHOA", "RHOB", "RHOC", "RILPL1", "RILPL2", "RIPK4", "RIPPLY1", "RIPPLY2", "ROBO2", "ROBO4", "ROS1", "RYR2", "S100A7", "SALL1", "SCEL", "SCRIB", "SCUBE1", "SCX", "SEMA3E", "SEMA4C", "SETDB2", "SETSIP", "SFN", "SFRP2", "SH3BP1", "SHH", "SIPA1", "SIPA1L3", "SIX1", "SIX2", "SIX3", "SIX4", "SKI", "SLC39A12", "SLC44A4", "SLC4A7", "SLIT2", "SMAD2", "SMAD4", "SMO", "SNAI2", "SOD1", "SOX10", "SOX11", "SOX17", "SOX18", "SOX4", "SOX8", "SOX9", "SPINK5", "SPINT1", "SPRR1A", "SPRR1B", "SPRR2B", "SPRR2F", "SPRR2G", "SPRR3", "SRC", "SRF", "ST14", "STARD13", "STAT1", "STC1", "STIL", "STMN1", "STRA6", "STRC", "SULT1B1", "SYNE4", "TAGLN", "TAGLN2", "TBX1", "TBX18", "TBX2", "TBX20", "TBX5", "TBX6", "TBXT", "TCF21", "TDRD7", "TFAP2A", "TFAP2B", "TGFB1", "TGFB2", "TGFBR2", "TGM1", "TGM3", "TIE1", "TIMELESS", "TJP1", "TJP2", "TJP3", "TMEFF2", "TMEM132E", "TMEM79", "TNC", "TOLLIP", "TOMT", "TOR1A", "TP63", "TPP1", "TPRN", "TRAF3IP1", "TRIM71", "TSC2", "TST", "TUBB", "TXNIP", "UGCG", "UPK1A", "UPK1B", "UPK2", "UPK3A", "USH1C", "USH2A", "VANGL2", "VASP", "VCL", "VDAC1", "VEGFA", "VIL1", "WDPCP", "WHRN", "WNK4", "WNT10A", "WNT11", "WNT16", "WNT2", "WNT3", "WNT4", "WNT5A", "WNT5B", "WNT7A", "WNT7B", "WT1", "YAP1", "ZDHHC7", "ZIC3", "ZNF358", "ZNF703" ] }, "position": { "x": 936.1354812902712, "y": 1433.6765149915404, "id": "1520902d-bab4-4f2a-8b21-1600ee8de4e3" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "9cb17d00-b403-4965-949e-03ef64b0c9a3", "name": [ "POSITIVE REGULATION OF RESPONSE TO BIOTIC STIMULUS%GOBP%GO:0002833" ], "description": [ "positive regulation of response to biotic stimulus" ], "pvalue": 6.9373e-8, "gs_type": null, "gs_size": 285, "padj": 0.0000044345, "mcode_cluster_id": "Cluster 6", "NES": -1.8905, "genes": [ "ACOD1", "ADAM8", "AIM2", "AKIRIN2", "ALPK1", "ANKRD17", "AP1G1", "ARG1", "BCL10", "BECN1", "BMP6", "BRCC3", "BTK", "CADM1", "CARD8", "CASP1", "CASP6", "CAV1", "CCL5", "CD14", "CD160", "CD180", "CD1D", "CD226", "CD274", "CD300LF", "CD36", "CGAS", "CHUK", "CLEC4E", "CLEC6A", "CLEC7A", "CLPB", "COLEC10", "COLEC11", "COLEC12", "CPT1A", "CREBBP", "CRTAM", "CTSS", "CYBA", "CYLD", "DDX3X", "DDX60", "DHX33", "DHX58", "DHX9", "ECSIT", "EMILIN1", "EMILIN2", "EP300", "EPG5", "EREG", "F2RL1", "FADD", "FBXO38", "FCN1", "FCN2", "FCN3", "FFAR2", "FLOT1", "FPR2", "FYN", "GBP2", "GBP5", "GDI1", "GRN", "GSDME", "HCK", "HEXIM1", "HLA-DRB1", "HLA-DRB3", "HLA-E", "HLA-F", "HLA-G", "HMGB1", "HRG", "HSP90AA1", "HSPA1A", "HSPA1B", "HSPD1", "IFI16", "IFI35", "IFIH1", "IFNB1", "IFNK", "IKBKB", "IKBKE", "IL12A", "IL12B", "IL21", "INAVA", "IPO5", "IRAK1", "IRAK2", "IRAK3", "IRAK4", "IRF3", "IRF7", "IRGM", "ITCH", "KIR2DL4", "KIR2DS2", "KLK3", "KLK5", "KLK7", "KLRC1", "KLRC2", "KLRC3", "KLRC4", "KLRD1", "KLRK1", "LACC1", "LAMP1", "LBP", "LGALS9", "LILRA2", "LRCH4", "LTF", "LY86", "LY96", "LYN", "MAP2K6", "MAP3K7", "MAPK8", "MAPKAPK2", "MAPKAPK3", "MARK4", "MATR3", "MAVS", "MBL2", "MEFV", "MFHAS1", "MMRN2", "MNDA", "MR1", "MYD88", "NAGK", "NAIP", "NCR3", "NECTIN2", "NEK7", "NFKBIA", "NINJ1", "NLRC4", "NLRC5", "NLRP1", "NLRP10", "NLRP3", "NLRP6", "NMI", "NOD1", "NOD2", "NONO", "NR1H3", "OAS1", "OAS3", "OASL", "OTULIN", "PAK1", "PAK2", "PAK3", "PARP9", "PGC", "PHB1", "PHB2", "PIK3AP1", "PJA2", "PLA2G5", "PLCG2", "PLSCR1", "POLR3B", "POLR3C", "POLR3D", "POLR3F", "POLR3G", "PQBP1", "PRKCA", "PRKCE", "PRKD1", "PRKDC", "PSPC1", "PTPN22", "PUM1", "PUM2", "PVR", "PYCARD", "PYHIN1", "RAB11FIP2", "RAET1E", "RAET1G", "RASGRP1", "RASGRP4", "RBM14", "RBM47", "REG3G", "RELA", "RFTN1", "RIGI", "RIOK3", "RIPK2", "RNF135", "RNF144A", "RNF185", "RNF34", "RPS19", "RPS6KA3", "RSAD2", "RTN4", "S100A14", "SASH1", "SCARA3", "SCIMP", "SFPQ", "SH2D1B", "SIGLEC16", "SLAMF6", "SLC15A3", "SLC15A4", "SLC19A1", "SLC22A13", "SLC46A2", "SPI1", "SRC", "STING1", "STMP1", "SYK", "TAB1", "TASL", "TBK1", "TICAM1", "TICAM2", "TIFA", "TIRAP", "TLR1", "TLR10", "TLR2", "TLR3", "TLR4", "TLR5", "TLR6", "TLR7", "TLR8", "TLR9", "TNFAIP3", "TNIP1", "TNIP2", "TNIP3", "TOMM70", "TRAF3", "TRAF3IP3", "TRAF6", "TREML4", "TRIL", "TRIM15", "TRIM25", "TRIM3", "TRIM41", "TRIM5", "TRIM56", "TRIM6", "TRIM62", "TXK", "TYROBP", "UBE2K", "UNC93B1", "USP15", "USP17L2", "USP27X", "USP29", "USP50", "WDFY1", "WNT5A", "XIAP", "XRCC5", "XRCC6", "YWHAE", "ZBP1", "ZCCHC3", "ZDHHC3", "ZDHHC4", "ZDHHC5", "ZDHHC9", "ZNFX1", "ZNRF1" ] }, "position": { "x": 1839.3075207198872, "y": 462.20811850594885, "id": "9cb17d00-b403-4965-949e-03ef64b0c9a3", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "name": [ "PROTEIN SYNTHESIS: THREONINE%PATHWHIZ%PW120525" ], "description": [ "Protein Synthesis: Threonine" ], "pvalue": 1.5692e-16, "gs_type": null, "gs_size": 80, "padj": 2.1228e-14, "mcode_cluster_id": "Cluster 2", "NES": 2.7573, "genes": [ "FAU", "RACK1", "RPL10", "RPL10A", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "TARS1", "UBA52" ] }, "position": { "x": 1070.1321103044804, "y": 556.7519873668957, "id": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "5966a1fd-cee7-459c-905d-1e978366afa2", "name": [ "TRAIL%IOB%TRAIL" ], "description": [ "TRAIL" ], "pvalue": 0.0038, "gs_type": null, "gs_size": 44, "padj": 0.0419, "mcode_cluster_id": null, "NES": -1.6223, "genes": [ "AIFM1", "APAF1", "ATM", "BAK1", "BAX", "BCL10", "BEX3", "CASP10", "CASP2", "CASP3", "CASP8", "CBL", "CHEK2", "CREB1", "CSNK2A1", "CTNNB1", "CYCS", "DAP3", "DIABLO", "DKFZp686A24188", "DKFZp686N0152", "FADD", "H2AX", "IKBKG", "MAP3K7", "MAPK1", "MAPK14", "MAPK3", "MCL1", "NFKB1", "NFKBIA", "PARP1", "PRKAA1", "PRKDC", "RELA", "RIPK1", "SRC", "TNFRSF10A", "TNFRSF10C", "TNFRSF10D", "TNFRSF11B", "TNFSF10", "TRADD", "TRAF2" ] }, "position": { "x": 1962.5, "y": 2195.9446642487483, "id": "5966a1fd-cee7-459c-905d-1e978366afa2" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "ed852b58-9ecc-4c4e-aa04-d50a951c9801", "name": [ "ANTIGEN PROCESSING AND PRESENTATION OF PEPTIDE ANTIGEN VIA MHC CLASS I%GOBP%GO:0002474" ], "description": [ "antigen processing and presentation of peptide antigen via MHC class I" ], "pvalue": 0.000003366, "gs_type": null, "gs_size": 36, "padj": 0.0001, "mcode_cluster_id": "Cluster 10", "NES": -2.1099, "genes": [ "ABCB9", "ACE", "B2M", "CALR", "CLEC4A", "ERAP1", "ERAP2", "FCER1G", "HFE", "HLA-A", "HLA-B", "HLA-C", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "IDE", "IFI30", "IKBKB", "LNPEP", "MFSD6", "MICA", "MICB", "MPEG1", "PDIA3", "RAET1E", "RAET1G", "RAET1L", "SAR1B", "TAP1", "TAP2", "TAPBP", "TAPBPL", "ULBP1", "ULBP2", "ULBP3" ] }, "position": { "x": 1979.767405767899, "y": 993.5394631833029, "id": "ed852b58-9ecc-4c4e-aa04-d50a951c9801", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "3c8ea93e-6ad3-4e3a-8a6a-b3e0167e1c69", "name": [ "MONOATOMIC CATION TRANSMEMBRANE TRANSPORT%GOBP%GO:0098655" ], "description": [ "monoatomic cation transmembrane transport" ], "pvalue": 0.0015, "gs_type": null, "gs_size": 417, "padj": 0.0216, "mcode_cluster_id": "Cluster 11", "NES": 1.4518, "genes": [ "ABCB6", "ABCB7", "ABCB8", "ABCC5", "ABCC8", "ABCC9", "ADRA1A", "AFG3L2", "ANO6", "AP3D1", "ASIC1", "ASIC2", "ASIC3", "ASIC4", "ASIC5", "ATP12A", "ATP1A1", "ATP1A2", "ATP1A3", "ATP1A4", "ATP1B1", "ATP1B2", "ATP1B3", "ATP2A1", "ATP2A2", "ATP2A3", "ATP2B1", "ATP2B3", "ATP2B4", "ATP2C1", "ATP2C2", "ATP4A", "ATP4B", "ATP5F1B", "ATP5MF", "ATP5PO", "ATP6AP1", "ATP6AP2", "ATP6V0A1", "ATP6V0A2", "ATP6V0A4", "ATP6V0B", "ATP6V0C", "ATP6V0D1", "ATP6V0E1", "ATP6V0E2", "ATP6V1A", "ATP6V1B1", "ATP6V1B2", "ATP6V1C1", "ATP6V1D", "ATP6V1E1", "ATP6V1F", "ATP6V1G1", "ATP6V1G2", "ATP6V1G3", "ATP6V1H", "ATP7A", "ATP7B", "CACNA1A", "CACNA1B", "CACNA1C", "CACNA1D", "CACNA1E", "CACNA1F", "CACNA1G", "CACNA1H", "CACNA1I", "CACNA1S", "CACNA2D1", "CACNA2D4", "CACNB1", "CACNB2", "CACNB3", "CACNG1", "CCDC51", "CCL19", "CCL21", "CCL3", "CCR5", "CCR7", "CHERP", "CNGA1", "CNGA2", "CNGA3", "CNGA4", "CNGB1", "CNGB3", "DMAC2L", "DRD2", "ERO1A", "F2R", "FASLG", "FGF2", "FKBP1A", "FLNA", "FXYD2", "GAS6", "GHITM", "GP1BA", "GP1BB", "GP5", "GP9", "GRIN1", "GRIN2A", "GRIN2B", "GRIN2C", "GRIN2D", "HCN1", "HCN2", "HCN3", "HCN4", "HPN", "HSPA9", "HTR2A", "HTR2B", "HTR2C", "HVCN1", "IBTK", "ITGAV", "ITPR1", "ITPR2", "ITPR3", "JPH1", "JPH2", "JPH3", "JPH4", "KCNA1", "KCNA10", "KCNA2", "KCNA3", "KCNA4", "KCNA5", "KCNA6", "KCNA7", "KCNB1", "KCNB2", "KCNC1", "KCNC2", "KCNC3", "KCNC4", "KCND1", "KCND2", "KCND3", "KCNE1", "KCNE2", "KCNE3", "KCNE4", "KCNE5", "KCNF1", "KCNG1", "KCNG2", "KCNG3", "KCNG4", "KCNH2", "KCNH3", "KCNH4", "KCNH5", "KCNH6", "KCNH7", "KCNH8", "KCNIP2", "KCNJ1", "KCNJ10", "KCNJ11", "KCNJ12", "KCNJ13", "KCNJ14", "KCNJ15", "KCNJ16", "KCNJ18", "KCNJ2", "KCNJ3", "KCNJ4", "KCNJ5", "KCNJ6", "KCNJ8", "KCNJ9", "KCNK1", "KCNK10", "KCNK12", "KCNK13", "KCNK15", "KCNK16", "KCNK17", "KCNK18", "KCNK2", "KCNK3", "KCNK4", "KCNK5", "KCNK6", "KCNK7", "KCNK9", "KCNMA1", "KCNN1", "KCNN2", "KCNN3", "KCNN4", "KCNQ1", "KCNQ2", "KCNQ3", "KCNQ4", "KCNQ5", "KCNS1", "KCNS2", "KCNS3", "KCNT1", "KCNT2", "KCNU1", "KCNV1", "KCNV2", "LCK", "LETM1", "LRRC26", "LRRC38", "LRRC52", "LRRC55", "MAIP1", "MCOLN1", "MCOLN2", "MCOLN3", "MCU", "MCUB", "MCUR1", "MICU1", "MICU2", "MICU3", "MRS2", "MT-CO1", "MT-ND4", "MT-ND5", "NALCN", "NALF1", "NALF2", "NDUFS7", "NNT", "NOL3", "NOX5", "ORAI1", "OTOP1", "OTOP2", "OTOP3", "P2RX1", "P2RX2", "P2RX3", "P2RX4", "P2RX5", "P2RX6", "P2RX7", "PKD1", "PKD2", "PKD2L1", "PLCB1", "PLCB2", "PLCB3", "PLCB4", "PLCD1", "PLCE1", "PLCG1", "PLCG2", "PLCH1", "PLCH2", "PMPCB", "PTPRC", "RNASEK", "ROMO1", "RYR1", "RYR2", "RYR3", "SCARA5", "SCN10A", "SCN11A", "SCN1A", "SCN1B", "SCN2A", "SCN2B", "SCN3A", "SCN3B", "SCN4A", "SCN4B", "SCN5A", "SCN7A", "SCN8A", "SCN9A", "SCNN1A", "SCNN1B", "SCNN1D", "SCNN1G", "SLC11A1", "SLC11A2", "SLC12A1", "SLC12A2", "SLC12A3", "SLC12A4", "SLC12A5", "SLC12A6", "SLC12A7", "SLC12A8", "SLC1A3", "SLC24A1", "SLC24A2", "SLC24A3", "SLC24A4", "SLC24A5", "SLC25A23", "SLC25A28", "SLC25A37", "SLC29A4", "SLC30A1", "SLC30A10", "SLC30A2", "SLC30A3", "SLC30A4", "SLC30A5", "SLC30A6", "SLC30A7", "SLC30A8", "SLC31A1", "SLC35G1", "SLC36A1", "SLC36A2", "SLC36A3", "SLC39A1", "SLC39A10", "SLC39A11", "SLC39A12", "SLC39A13", "SLC39A14", "SLC39A2", "SLC39A3", "SLC39A4", "SLC39A5", "SLC39A6", "SLC39A7", "SLC39A8", "SLC39A9", "SLC40A1", "SLC41A1", "SLC41A2", "SLC41A3", "SLC46A1", "SLC4A11", "SLC4A4", "SLC4A8", "SLC4A9", "SLC5A1", "SLC5A2", "SLC6A1", "SLC6A11", "SLC6A12", "SLC6A13", "SLC6A14", "SLC6A15", "SLC6A16", "SLC6A17", "SLC6A18", "SLC6A19", "SLC6A2", "SLC6A20", "SLC6A3", "SLC6A4", "SLC6A5", "SLC6A6", "SLC6A7", "SLC6A8", "SLC6A9", "SLC8A1", "SLC8A2", "SLC8A3", "SLC8B1", "SLC9A1", "SLC9A2", "SLC9A3", "SLC9A4", "SLC9A5", "SLC9A6", "SLC9A7", "SLC9A8", "SLC9A9", "SLC9C1", "SLC9C2", "SMDT1", "TCIRG1", "TMCO1", "TMEM163", "TMEM165", "TMEM175", "TMEM94", "TPCN2", "TRDN", "TRPA1", "TRPC1", "TRPC3", "TRPC4", "TRPC4AP", "TRPC5", "TRPC6", "TRPC7", "TRPM1", "TRPM2", "TRPM3", "TRPM4", "TRPM5", "TRPM6", "TRPM7", "TRPM8", "TRPV1", "TRPV2", "TRPV3", "TRPV4", "TRPV5", "TRPV6", "UCP1", "UCP2", "UCP3", "VDAC1", "XCL1" ] }, "position": { "x": 4152.37539247916, "y": 1672.0056674627638, "id": "3c8ea93e-6ad3-4e3a-8a6a-b3e0167e1c69", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "e0400955-65ba-4451-b139-42c19937c411", "name": [ "GASTRULATION%REACTOME DATABASE ID RELEASE 81%9758941" ], "description": [ "Gastrulation" ], "pvalue": 0.0016, "gs_type": null, "gs_size": 125, "padj": 0.0231, "mcode_cluster_id": null, "NES": -1.6096, "genes": [ "BMP4", "CDH1", "CREBBP", "CTNNB1", "CXCR4", "DLL1", "DLL3", "DLX5", "EOMES", "EP300", "EPHA4", "FGF2", "FGF4", "FGF8", "FGFR1", "FOXA1", "FOXA2", "FOXC1", "FOXC2", "FOXF1", "FOXH1", "GATA4", "GATA6", "GBX2", "GSC", "HES7", "IHH", "KAT2A", "KAT2B", "LEF1", "LFNG", "LHX1", "MAML1", "MAML2", "MAML3", "MAMLD1", "MESP2", "MIXL1", "MSGN1", "MSX1", "MYB", "NANOG", "NOG", "NOTCH1", "NOTO", "OSR1", "OTX2", "PAX2", "PAX3", "PAX6", "PAX7", "PAX8", "POU3F1", "POU5F1", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMB1", "PSMB10", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSMF1", "RBPJ", "RIPPLY2", "SEM1", "SHH", "SMAD2", "SMAD3", "SMAD4", "SNAI1", "SNW1", "SOX1", "SOX17", "SOX2", "TBPL2", "TBX6", "TBXT", "TCF7", "TCF7L1", "TCF7L2", "TEAD2", "TEAD4", "TFAP2A", "TFAP2B", "TFAP2C", "TRIM33", "WNT3A", "YAP1", "ZEB2", "ZIC1", "ZIC2", "ZNF521" ] }, "position": { "x": 452.9935045649173, "y": 790.8919174071395, "id": "e0400955-65ba-4451-b139-42c19937c411" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "aef043d6-6af4-4d4c-9e31-2884e806c160", "name": [ "POSITIVE REGULATION OF CHEMOKINE PRODUCTION%GOBP%GO:0032722" ], "description": [ "positive regulation of chemokine production" ], "pvalue": 0.004, "gs_type": null, "gs_size": 55, "padj": 0.0432, "mcode_cluster_id": null, "NES": -1.6921, "genes": [ "ADAM17", "ADCYAP1", "ADIPOQ", "AGER", "AIF1", "AIRE", "ALOX15B", "APP", "AZU1", "C5", "CD74", "CD84", "CHIA", "CLEC7A", "CSF1R", "DDX3X", "DEFB124", "EGR1", "EIF2AK2", "F2RL1", "FFAR2", "FFAR3", "HIF1A", "HMGB1", "HMOX1", "IFNG", "IL17A", "IL17F", "IL17RA", "IL18", "IL1B", "IL33", "IL6", "IL6R", "IL7", "LGALS9", "LPL", "MAVS", "MBP", "OAS1", "OAS3", "PYCARD", "SYK", "TGFB1", "TIRAP", "TLR2", "TLR3", "TLR4", "TLR7", "TLR9", "TNF", "TNFSF4", "TSLP", "TWIST1", "WNT5A" ] }, "position": { "x": 2886.5, "y": 2195.9446642487483, "id": "aef043d6-6af4-4d4c-9e31-2884e806c160" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "26fdcb67-674e-4f51-8950-f5ca307f91c6", "name": [ "POSITIVE REGULATION OF NF-KAPPAB TRANSCRIPTION FACTOR ACTIVITY%GOBP%GO:0051092" ], "description": [ "positive regulation of NF-kappaB transcription factor activity" ], "pvalue": 0.0039, "gs_type": null, "gs_size": 122, "padj": 0.0425, "mcode_cluster_id": "Cluster 37", "NES": -1.5091, "genes": [ "AGER", "AGT", "AIM2", "ALK", "AR", "ARHGEF2", "BCL10", "BTK", "CAMK2A", "CAPN3", "CARD11", "CARD14", "CARD16", "CARD9", "CD40", "CD40LG", "CFLAR", "CHUK", "CIB1", "CLEC7A", "CLOCK", "CLU", "CRNN", "DDRGK1", "DHX33", "DHX9", "EIF2AK2", "ERC1", "FER", "HSPA1A", "HSPA1B", "IKBKB", "IKBKG", "IL18", "IL18R1", "IL18RAP", "IL1B", "IL6", "INS", "IRAK1", "IRAK2", "IRAK3", "LAMTOR5", "LGALS9", "LTF", "MALT1", "MAP3K13", "MID2", "MTDH", "MTPN", "MYD88", "NLRC4", "NLRP3", "NOD1", "NOD2", "NPM1", "NTRK1", "NTS", "PIDD1", "PLA2G1B", "PLCG2", "PPIA", "PRDX3", "PRKCH", "PRKCI", "PRKCQ", "PRKCZ", "PRKD1", "PRKD2", "PSMA6", "PYCARD", "RAB7B", "RBCK1", "RELA", "RHEBL1", "RIPK1", "RIPK2", "RIPK3", "RIPK4", "RNF25", "RNF31", "ROR1", "RPS3", "RPS6KA4", "RPS6KA5", "RTKN2", "S100A12", "S100A8", "S100A9", "SLCO3A1", "SPHK1", "STAT3", "TERF2IP", "TFRC", "TIRAP", "TLR2", "TLR4", "TNF", "TNFRSF11A", "TNFSF11", "TNFSF18", "TRADD", "TRAF1", "TRAF2", "TRAF5", "TRAF6", "TRIM13", "TRIM14", "TRIM15", "TRIM22", "TRIM25", "TRIM32", "TRIM37", "TRIM38", "TRIM5", "TRIM52", "TRIM62", "TRIM8", "UBE2N", "UBE2V1", "WNT5A", "ZBTB7A" ] }, "position": { "x": 103.18205089845355, "y": 1865.919525269007, "id": "26fdcb67-674e-4f51-8950-f5ca307f91c6", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "18b00d92-4a43-4119-9308-7cda71464408", "name": [ "HALLMARK_E2F_TARGETS%MSIGDBHALLMARK%HALLMARK_E2F_TARGETS" ], "description": [ "HALLMARK_E2F_TARGETS" ], "pvalue": 0.0000056591, "gs_type": null, "gs_size": 167, "padj": 0.0002, "mcode_cluster_id": null, "NES": -1.8291, "genes": [ "AK2", "ANP32E", "ASF1A", "ASF1B", "ATAD2", "AURKA", "AURKB", "BARD1", "BIRC5", "BRCA1", "BRCA2", "BRMS1L", "BUB1B", "CCNB2", "CCNE1", "CCP110", "CDC2", "CDC20", "CDC25A", "CDCA3", "CDCA8", "CDK4", "CDKN1A", "CDKN1B", "CDKN2A", "CDKN2C", "CDKN3", "CENPE", "CENPM", "CHEK1", "CHEK2", "CIT", "CKS1B", "CKS2", "CROP", "CTCF", "CTPS1", "DCLRE1B", "DCTPP1", "DDX39A", "DEK", "DEPDC1", "DKFZp686G14213", "DKFZp686J1569", "DKFZp686O0451", "DLGAP5", "DONSON", "DSCC1", "DUT", "E2F8", "EED", "EIF2S1", "ESPL1", "EXOSC8", "EZH2", "GINS1", "GINS3", "GINS4", "H2AX", "H2AZ1", "HEL-S-97n", "HEL25", "HELLS", "HMGA1", "HMGB2", "HMGB3", "HMMR", "HNRNPD", "HUS1", "ILF3", "ING3", "JPT1", "KIF18B", "KPNA2", "LBR", "LIG1", "LYAR", "MAD2L1", "MCM2", "MCM5", "MCM6", "MCM7", "MKI67", "MMS22L", "MRE11A", "MSH2", "MTHFD2", "MXD3", "MYBL2", "MYC", "NAA38", "NASP", "NBN", "NOLC1", "NOP56", "NUDT21", "NUP107", "NUP153", "NUP205", "ORC2", "ORC6", "PA2G4", "PAICS", "PAN2", "PCNA", "PDS5B", "PHF5A", "PLK1", "PLK4", "PNN", "POLA2", "POLD2", "POLD3", "POLE", "POLE4", "POP7", "PPM1D", "PPP1R8", "PRIM2", "PRKDC", "PSIP1", "PSMC3IP", "PTTG1", "RAD1", "RAD21", "RAD50", "RAD51AP1", "RAD51C", "RAN", "RANBP1", "RBBP7", "RFC1", "RFC2", "RFC3", "RNASEH2A", "RPA1", "RPA3", "RQCD1", "RRM2", "SHMT1", "SLBP", "SMC1A", "SMC3", "SMC4", "SMC6", "SNRPB", "SPAG5", "SPC24", "SPC25", "SSRP1", "SUV39H1", "TACC3", "TIMELESS", "TK1", "TOP2A", "TRA2B", "TRIP13", "TUBB", "TUBG1", "UBE2S", "UBE2T", "UBR7", "UNG", "USP1", "WDR90", "WEE1", "ZW10" ] }, "position": { "x": 1269.5, "y": 2272.9446642487483, "id": "18b00d92-4a43-4119-9308-7cda71464408" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "144b7933-86c1-43a2-9769-7e1736c62125", "name": [ "REGULATION OF LEUKOCYTE PROLIFERATION%GOBP%GO:0070663" ], "description": [ "regulation of leukocyte proliferation" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 188, "padj": 0.002, "mcode_cluster_id": "Cluster 12", "NES": -1.7687, "genes": [ "AGER", "AHR", "AIF1", "ANXA1", "ARG1", "ATM", "BCL2", "BMP4", "BST1", "BST2", "BTN2A2", "CCDC88B", "CCL19", "CCL5", "CCR2", "CD1D", "CD209", "CD22", "CD24", "CD274", "CD276", "CD28", "CD300A", "CD320", "CD38", "CD3E", "CD40LG", "CD46", "CD55", "CD6", "CD70", "CD74", "CD80", "CD81", "CD86", "CEBPB", "CHRNB2", "CLC", "CLCF1", "CLECL1P", "CR1", "CRP", "CRTAM", "CSF1", "CSF1R", "CSF2", "CSF2RA", "CSF2RB", "CTLA4", "DLG5", "EBI3", "ENPP3", "EPHB2", "FADD", "FCGR2B", "FCGR3A", "FCRL3", "FGF10", "FOXP3", "GLMN", "GPNMB", "GPR183", "GREM1", "GSTP1", "HHEX", "HHLA2", "HLA-A", "HLA-DMB", "HLA-DPA1", "HLA-DPB1", "HLA-DRB1", "HLA-E", "HLA-G", "HMGB1", "ICOSLG", "IDO1", "IGF1", "IGF2", "IGFBP2", "IHH", "IKZF3", "IL10", "IL12A", "IL12B", "IL12RB1", "IL15", "IL18", "IL1A", "IL1B", "IL2", "IL21", "IL23A", "IL23R", "IL27", "IL33", "IL34", "IL4", "IL4I1", "IL5RA", "IL6", "IL6ST", "IL7", "IRF1", "IRS2", "JAK2", "LEP", "LGALS3", "LGALS9", "LGALS9B", "LGALS9C", "LILRB1", "LILRB2", "LILRB4", "LST1", "LYN", "MAPK1", "MAPK3", "MAPK8IP1", "MEF2C", "MIF", "MNDA", "MZB1", "NCK1", "NCK2", "NCKAP1L", "NFATC2", "NMB", "NMBR", "OCSTAMP", "PDCD1LG2", "PLA2G2A", "PLA2G2D", "PLA2G2E", "PLA2G2F", "PLA2G5", "PNP", "PPP3CA", "PRKAR1A", "PRNP", "PTK2", "PTPN22", "PTPRC", "PYCARD", "RASAL3", "RC3H1", "RIPK3", "RPS3", "SASH3", "SCRIB", "SDC4", "SFTPD", "SH3RF1", "SHH", "SLC4A2", "SLC7A1", "SOX11", "SPN", "TFRC", "TGFBR2", "TIRAP", "TLR9", "TMEM131L", "TMIGD2", "TNFAIP3", "TNFRSF13B", "TNFRSF13C", "TNFRSF14", "TNFRSF1B", "TNFRSF21", "TNFRSF4", "TNFSF13B", "TNFSF18", "TNFSF4", "TNFSF8", "TNFSF9", "TWSG1", "TYK2", "TYROBP", "VAV3", "VCAM1", "VSIG4", "VSIR", "VTCN1", "XCL1", "ZBTB7B", "ZNF335", "ZP3", "ZP4" ] }, "position": { "x": 2373.9529618581087, "y": 498.9416703804701, "id": "144b7933-86c1-43a2-9769-7e1736c62125", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "e6bb490e-f542-4313-ba97-b4a675132dc9", "name": [ "REGULATION OF CELL KILLING%GOBP%GO:0031341" ], "description": [ "regulation of cell killing" ], "pvalue": 0.0037, "gs_type": null, "gs_size": 97, "padj": 0.0414, "mcode_cluster_id": "Cluster 5", "NES": -1.6411, "genes": [ "AGER", "AP1G1", "ARG1", "ARRB2", "CADM1", "CD160", "CD1A", "CD1B", "CD1C", "CD1D", "CD1E", "CD226", "CD55", "CD59", "CEACAM1", "CFH", "CLEC12B", "CLEC7A", "CR1", "CR1L", "CRTAM", "CX3CR1", "CYRIB", "DNASE1", "DNASE1L3", "F2RL1", "FADD", "FCER2", "FCGR2B", "HFE", "HLA-A", "HLA-B", "HLA-C", "HLA-DRA", "HLA-DRB1", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "ICAM1", "IFNG", "IL10", "IL11", "IL12A", "IL12B", "IL12RB1", "IL13", "IL21", "IL23A", "IL23R", "IL4", "ITGAM", "KIR2DL4", "KLRB1", "KLRC1", "KLRC2", "KLRC3", "KLRC4", "KLRD1", "KLRK1", "LAMP1", "LEP", "LGALS9", "LILRB1", "MAPK8", "MICA", "MICB", "MR1", "NCKAP1L", "NCR1", "NCR3", "NECTIN2", "NOS2", "PIK3R6", "PRF1", "PTPRC", "PVR", "RAET1E", "RAET1G", "RAET1L", "RASGRP1", "RIPK3", "SERPINB4", "SERPINB9", "SLAMF6", "SLC22A13", "SPI1", "STAP1", "STX7", "SYK", "TGFB1", "TGFB2", "TYROBP", "ULBP1", "ULBP2", "ULBP3", "XCL1" ] }, "position": { "x": 2284.367297842096, "y": 833.4857533476862, "id": "e6bb490e-f542-4313-ba97-b4a675132dc9", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "name": [ "RIBOSOMAL SCANNING AND START CODON RECOGNITION%REACTOME DATABASE ID RELEASE 81%72702" ], "description": [ "Ribosomal scanning and start codon recognition" ], "pvalue": 3.6002e-10, "gs_type": null, "gs_size": 59, "padj": 3.1731e-8, "mcode_cluster_id": "Cluster 2", "NES": 2.4584, "genes": [ "EIF1AX", "EIF2S1", "EIF2S2", "EIF2S3", "EIF3A", "EIF3B", "EIF3C", "EIF3D", "EIF3E", "EIF3F", "EIF3G", "EIF3H", "EIF3I", "EIF3J", "EIF3K", "EIF3L", "EIF3M", "EIF4A1", "EIF4A2", "EIF4B", "EIF4E", "EIF4G1", "EIF4H", "EIF5", "FAU", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA" ] }, "position": { "x": 1108.3825019233793, "y": 336.76796416631566, "id": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "b0347db5-2777-46d3-97cc-0a03e208977f", "name": [ "SIGNALING BY NOTCH4%REACTOME DATABASE ID RELEASE 81%9013694" ], "description": [ "Signaling by NOTCH4" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 81, "padj": 0.0021, "mcode_cluster_id": "Cluster 1", "NES": -1.845, "genes": [ "ACTA2", "ADAM10", "AKT1", "APH1A", "APH1B", "CREBBP", "CUL1", "DLL4", "EP300", "FLT4", "HES1", "HES5", "HEY1", "HEY2", "JAG1", "KAT2A", "KAT2B", "MAML1", "MAML2", "MAML3", "MAMLD1", "NCSTN", "NOTCH1", "NOTCH2", "NOTCH4", "PSEN1", "PSEN2", "PSENEN", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMB1", "PSMB10", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSMF1", "RBPJ", "RBX1", "RPS27A", "SEM1", "SKP1", "SMAD3", "SNW1", "TACC3", "UBA52", "UBB", "UBC", "YWHAZ" ] }, "position": { "x": 454.08527085540584, "y": 759.9143294072445, "id": "b0347db5-2777-46d3-97cc-0a03e208977f", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "b06c44e2-b4c4-41c8-89aa-75e9f63e4d5b", "name": [ "PURINE NUCLEOSIDE DIPHOSPHATE CATABOLIC PROCESS%GOBP%GO:0009137" ], "description": [ "purine nucleoside diphosphate catabolic process" ], "pvalue": 0.0004, "gs_type": null, "gs_size": 36, "padj": 0.0078, "mcode_cluster_id": "Cluster 4", "NES": 1.9456, "genes": [ "ADPGK", "ALDOA", "ALDOB", "ALDOC", "ENO1", "ENO2", "ENO3", "ENO4", "ENTPD4", "FOXK1", "FOXK2", "GAPDH", "GAPDHS", "GCK", "GPI", "HK1", "HK2", "HK3", "HKDC1", "LDHA", "NUDT18", "PFKFB1", "PFKFB2", "PFKL", "PFKM", "PFKP", "PGAM1", "PGAM2", "PGAM4", "PGK1", "PGK2", "PGM1", "PKLR", "PKM", "TPI1", "UCP2" ] }, "position": { "x": 3538.7648842155286, "y": 1559.3241951884547, "id": "b06c44e2-b4c4-41c8-89aa-75e9f63e4d5b", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "14f17c28-8038-49f6-a4ab-311c487adfa6", "name": [ "PURINE RIBONUCLEOSIDE DIPHOSPHATE METABOLIC PROCESS%GOBP%GO:0009179" ], "description": [ "purine ribonucleoside diphosphate metabolic process" ], "pvalue": 0.0042, "gs_type": null, "gs_size": 38, "padj": 0.0453, "mcode_cluster_id": "Cluster 4", "NES": 1.7866, "genes": [ "ADPGK", "AK5", "ALDOA", "ALDOB", "ALDOC", "BAD", "ENO1", "ENO2", "ENO3", "ENO4", "ENTPD4", "FOXK1", "FOXK2", "GAPDH", "GAPDHS", "GCK", "GPI", "HK1", "HK2", "HK3", "HKDC1", "LDHA", "NUDT18", "PFKFB1", "PFKFB2", "PFKL", "PFKM", "PFKP", "PGAM1", "PGAM2", "PGAM4", "PGK1", "PGK2", "PGM1", "PKLR", "PKM", "TPI1", "UCP2" ] }, "position": { "x": 3717.727122191931, "y": 1580.5323728306441, "id": "14f17c28-8038-49f6-a4ab-311c487adfa6", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "65022cea-7483-4689-8ce5-ee987795bedc", "name": [ "DEFENSE RESPONSE TO OTHER ORGANISM%GOBP%GO:0098542" ], "description": [ "defense response to other organism" ], "pvalue": 1.3809e-21, "gs_type": null, "gs_size": 674, "padj": 1.3388e-18, "mcode_cluster_id": "Cluster 17", "NES": -2.3296, "genes": [ "ABCC9", "ACOD1", "ADAM15", "ADAM17", "ADAR", "ADGRB1", "AGBL4", "AGBL5", "AICDA", "AIF1", "AIM2", "AKAP1", "AKIRIN2", "ALPK1", "ANG", "ANKHD1", "ANKRD17", "ANXA3", "APCS", "APOA4", "APOBEC3A", "APOBEC3B", "APOBEC3C", "APOBEC3D", "APOBEC3F", "APOBEC3G", "APOBEC3H", "APOL1", "AQP1", "AQP4", "ARL8B", "ATAD3A", "ATG7", "AZI2", "AZU1", "BATF", "BATF2", "BCL10", "BCL2", "BCL2L1", "BLK", "BNIP3", "BNIP3L", "BPI", "BPIFA1", "BPIFB1", "BPIFB3", "BST2", "BTK", "CALCOCO2", "CALM1", "CAMK2A", "CAMP", "CARD8", "CARD9", "CASP1", "CASP4", "CCL1", "CCL11", "CCL13", "CCL14", "CCL15", "CCL16", "CCL17", "CCL18", "CCL19", "CCL2", "CCL20", "CCL21", "CCL22", "CCL23", "CCL24", "CCL25", "CCL26", "CCL3", "CCL3L3", "CCL4", "CCL4L2", "CCL5", "CCL7", "CCL8", "CD2", "CD207", "CD47", "CD58", "CD74", "CEBPB", "CEBPG", "CFB", "CFD", "CFHR1", "CFHR2", "CFHR5", "CFP", "CGAS", "CH25H", "CHGA", "CHMP3", "CHUK", "CIITA", "CITED1", "CLEC2A", "CLEC4A", "CLEC4C", "CLEC4D", "CLEC4E", "CLEC5A", "CLEC6A", "CLEC7A", "CLPB", "CNOT7", "COLEC10", "COLEC11", "COLEC12", "CORO1A", "CR1", "CR2", "CRIPTO", "CRISP3", "CRP", "CST11", "CST9", "CST9L", "CST9LP1", "CTSG", "CX3CL1", "CX3CR1", "CXCL1", "CXCL10", "CXCL11", "CXCL13", "CXCL14", "CXCL16", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "CYBA", "CYBB", "CYBC1", "CYLD", "CYP27B1", "DAO", "DAPK1", "DAPK3", "DCD", "DDIT4", "DDX3X", "DDX56", "DDX60", "DDX60L", "DEFA1B", "DEFA3", "DEFA4", "DEFA5", "DEFA6", "DEFB1", "DEFB103B", "DEFB104B", "DEFB106B", "DEFB107B", "DEFB109B", "DEFB110", "DEFB114", "DEFB118", "DEFB119", "DEFB126", "DEFB127", "DEFB128", "DEFB130A", "DEFB130B", "DEFB132", "DEFB133", "DEFB136", "DEFB4B", "DHX15", "DHX16", "DHX58", "DMBT1", "DROSHA", "DUS2", "ECSIT", "EIF2AK2", "ELANE", "EPPIN", "EPRS1", "EPX", "EXOSC4", "EXOSC5", "F12", "F2", "F2RL1", "FADD", "FAM3A", "FAU", "FCER1G", "FCGR3A", "FCN1", "FCN2", "FCN3", "FGA", "FGB", "FGR", "FPR2", "FRK", "FYN", "G3BP1", "GALP", "GAPDH", "GARIN5A", "GBP1", "GBP2", "GBP3", "GBP4", "GBP5", "GBP6", "GBP7", "GCH1", "GNLY", "GPR15LG", "GRB2", "GSDMA", "GSDMB", "GSDMC", "GSDMD", "GZMB", "H2BC11", "H2BC12", "H2BC12L", "H2BC21", "H2BC8", "HAMP", "HCK", "HCST", "HDAC4", "HERC5", "HLA-A", "HLA-DPA1", "HLA-E", "HMGB2", "HMGN2", "HRG", "HTN1", "HTN3", "IFI16", "IFI27", "IFI44L", "IFI6", "IFIH1", "IFIT1", "IFIT1B", "IFIT2", "IFIT3", "IFIT5", "IFITM1", "IFITM2", "IFITM3", "IFNA10", "IFNA13", "IFNA14", "IFNA16", "IFNA17", "IFNA2", "IFNA21", "IFNA4", "IFNA5", "IFNA6", "IFNA7", "IFNA8", "IFNAR1", "IFNAR2", "IFNB1", "IFNE", "IFNG", "IFNGR1", "IFNGR2", "IFNK", "IFNL1", "IFNL2", "IFNL3", "IFNL4", "IFNLR1", "IFNW1", "IGHA1", "IGHA2", "IGHE", "IGHG1", "IGHG2", "IGHG3", "IGHG4", "IGHM", "IGKV3-20", "IKBKB", "IKBKE", "IKBKG", "IL10RB", "IL12A", "IL12B", "IL12RB1", "IL18", "IL1B", "IL21", "IL23A", "IL23R", "IL36RN", "IL6", "IL6R", "INAVA", "IRAK1", "IRAK4", "IRF1", "IRF2", "IRF3", "IRF4", "IRF5", "IRF7", "IRF8", "IRGM", "ISG15", "ISG20", "JAK1", "JAK2", "JCHAIN", "KIF5B", "KIR3DL1", "KLRC2", "KLRD1", "KLRF2", "KLRK1", "KRT1", "KRT16", "KRT6A", "KYNU", "LACRT", "LALBA", "LBP", "LCE3A", "LCE3B", "LCE3C", "LCK", "LCN2", "LEAP2", "LGALS8", "LGALS9", "LILRB1", "LPO", "LTF", "LY86", "LY96", "LYG1", "LYG2", "LYN", "LYPD8", "LYST", "LYZ", "LYZL4", "LYZL6", "MALT1", "MAP3K14", "MAP3K7", "MARCHF2", "MASP1", "MASP2", "MAVS", "MBL2", "MEFV", "MFHAS1", "MICA", "MID2", "MLKL", "MORC3", "MOV10", "MPEG1", "MPO", "MR1", "MSRB1", "MUC7", "MX1", "MX2", "MYD88", "N4BP3", "NAGK", "NAIP", "NCBP1", "NCBP3", "NCF1", "NCF2", "NCK1", "NCR3LG1", "NDUFAF4", "NEDD4", "NFKB1", "NFKB2", "NKG7", "NLRC4", "NLRC5", "NLRP1", "NLRP10", "NLRP6", "NLRP9", "NMB", "NMBR", "NOD1", "NOD2", "NOS2", "NRROS", "NT5C3A", "NUB1", "OAS1", "OAS2", "OAS3", "OASL", "OPRK1", "OPTN", "OTULIN", "PDE12", "PF4", "PF4V1", "PGLYRP1", "PGLYRP2", "PGLYRP3", "PGLYRP4", "PHB1", "PHB2", "PI3", "PIK3CD", "PIK3CG", "PIK3R1", "PIM1", "PJA2", "PLA2G10", "PLA2G1B", "PLA2G2A", "PLA2G6", "PLCG2", "PLEKHM2", "PLSCR1", "PMAIP1", "PML", "POLR3A", "PPARG", "PPBP", "PPP1R11", "PPP1R14B", "PQBP1", "PRB3", "PRF1", "PRKCD", "PRKRA", "PRSS2", "PRSS3", "PRTN3", "PTK6", "PTPRC", "PTX3", "PYCARD", "PYDC1", "RAB1A", "RAB2B", "RAET1E", "RAET1G", "RAF1", "RARRES2", "RASGRP4", "RBCK1", "REG1A", "REG1B", "REG3A", "REG3G", "REL", "RELA", "RELB", "RFPL1", "RFPL2", "RFPL3", "RFPL4A", "RFPL4AL1", "RIGI", "RIPK2", "RIPK3", "RNASE1", "RNASE10", "RNASE11", "RNASE12", "RNASE13", "RNASE2", "RNASE3", "RNASE4", "RNASE6", "RNASE7", "RNASE8", "RNASE9", "RNASEL", "RNF135", "RNF185", "RNF213", "RNF31", "ROMO1", "RPL13A", "RPL30", "RPL39", "RPS19", "RPSA", "RSAD2", "RTP4", "S100A12", "S100A14", "S100A7", "S100A8", "S100A9", "SAMHD1", "SELP", "SEMG1", "SEMG2", "SENP7", "SERINC3", "SERINC5", "SERPINE1", "SETD2", "SFTPD", "SHARPIN", "SHC1", "SHFL", "SHMT2", "SIRPA", "SKP2", "SLAMF7", "SLAMF8", "SLC11A1", "SLC15A2", "SLC22A5", "SLC26A6", "SLC30A1", "SLFN11", "SLFN13", "SLPI", "SMARCA5", "SMPD1", "SNCA", "SP100", "SPAG11A", "SPAG11B", "SPN", "SPRR2A", "SRC", "SRMS", "SRPK1", "SRPK2", "STAB1", "STAB2", "STAT1", "STAT2", "STING1", "SYK", "SYNCRIP", "TAB2", "TAB3", "TANK", "TBK1", "TBKBP1", "TF", "TFEB", "TIFA", "TIRAP", "TLR1", "TLR10", "TLR2", "TLR3", "TLR4", "TLR6", "TLR7", "TLR8", "TLR9", "TNF", "TNFRSF14", "TNFSF4", "TRAF2", "TRAF3", "TRAF6", "TRAV27", "TREM1", "TREM2", "TREML1", "TRIM10", "TRIM11", "TRIM13", "TRIM14", "TRIM15", "TRIM21", "TRIM22", "TRIM25", "TRIM26", "TRIM27", "TRIM28", "TRIM31", "TRIM32", "TRIM34", "TRIM35", "TRIM38", "TRIM4", "TRIM40", "TRIM41", "TRIM43", "TRIM43B", "TRIM48", "TRIM49", "TRIM49B", "TRIM49C", "TRIM49D2", "TRIM5", "TRIM51", "TRIM51G", "TRIM52", "TRIM56", "TRIM58", "TRIM59", "TRIM6", "TRIM62", "TRIM64", "TRIM64B", "TRIM64C", "TRIM68", "TRIM7", "TRIM77", "TRIM8", "TRIML1", "TRIML2", "TSLP", "TTC4", "TUBB", "TUBB4B", "TYK2", "UAP1", "UBA7", "UBD", "UBE2L6", "UBE2N", "UBE2W", "ULBP1", "ULBP2", "ULBP3", "UMOD", "USP18", "USP20", "USP27X", "USP29", "USP44", "VAMP2", "VAMP7", "VAV1", "VNN1", "WFDC10A", "WFDC10B", "WFDC11", "WFDC12", "WFDC13", "WFDC2", "WFDC3", "WFDC5", "WFDC9", "WNT5A", "XCL1", "XCL2", "XIAP", "YES1", "ZAP70", "ZBP1", "ZCCHC3", "ZDHHC1", "ZDHHC11", "ZMYND11", "ZNFX1" ] }, "position": { "x": 2918.327119195075, "y": 242.80168443719697, "id": "65022cea-7483-4689-8ce5-ee987795bedc", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "b81d8d56-c41a-4508-a1ca-9590780583eb", "name": [ "NEUTROPHIL CHEMOTAXIS%GOBP%GO:0030593" ], "description": [ "neutrophil chemotaxis" ], "pvalue": 0, "gs_type": null, "gs_size": 46, "padj": 0.0006, "mcode_cluster_id": null, "NES": -2.0734, "genes": [ "BSG", "CCL3", "CD300H", "CKLF", "CXADR", "CXCL1", "CXCL10", "CXCL11", "CXCL13", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "CXCR1", "CXCR2", "EDN1", "EDN2", "EDN3", "FCER1G", "GBF1", "ITGB2", "JAML", "LGALS3", "NCKAP1L", "PDE4B", "PF4", "PF4V1", "PIK3CD", "PIK3CG", "PIKFYVE", "PIP5K1C", "PLA2G1B", "PPBP", "PPIA", "PPIB", "S100A12", "S100A8", "S100A9", "SAA1", "SRP54", "SYK", "TGFB2", "TREM1", "XCL1" ] }, "position": { "x": 3235.3788843957777, "y": 474.81012219436127, "id": "b81d8d56-c41a-4508-a1ca-9590780583eb" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "057f60df-f570-4015-a108-537ddd9c9013", "name": [ "CROSS-PRESENTATION OF SOLUBLE EXOGENOUS ANTIGENS (ENDOSOMES)%REACTOME%R-HSA-1236978.3" ], "description": [ "Cross-presentation of soluble exogenous antigens (endosomes)" ], "pvalue": 0.0000048062, "gs_type": null, "gs_size": 50, "padj": 0.0002, "mcode_cluster_id": "Cluster 1", "NES": -2.0838, "genes": [ "CD207", "FCGR1A", "FCGR1BP", "MRC1", "MRC2", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "SEM1" ] }, "position": { "x": 488.3864698363741, "y": 831.8601744198406, "id": "057f60df-f570-4015-a108-537ddd9c9013", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "04397f25-76a5-44ed-a268-ddea1236b245", "name": [ "REGULATION OF PEPTIDASE ACTIVITY%GOBP%GO:0052547" ], "description": [ "regulation of peptidase activity" ], "pvalue": 0.0018, "gs_type": null, "gs_size": 227, "padj": 0.025, "mcode_cluster_id": "Cluster 40", "NES": -1.4635, "genes": [ "A2ML1", "ACER2", "ACVR1C", "AGER", "AIFM1", "AIM2", "AKT1", "ANP32B", "ANXA8", "APAF1", "APH1A", "APH1B", "AQP1", "ARL6IP1", "ARL6IP5", "ASPH", "ATP13A2", "ATP2A3", "AVP", "BAD", "BAK1", "BCL10", "BCL2L10", "BCL2L12", "BCL2L13", "BIN1", "BIRC2", "BIRC3", "BLID", "BOK", "CAAP1", "CARD16", "CARD18", "CARD8", "CARD9", "CASC2", "CASP1", "CASP8", "CASP8AP2", "CASP9", "CAST", "CAV1", "CD44", "CDKN2D", "CLDN3", "CLDN4", "CLEC7A", "COL4A3", "CR1", "CRB2", "CSN2", "CSNK2A1", "CST3", "CST7", "CSTA", "CSTB", "CTSD", "CTSH", "CYFIP2", "DAP", "DAPK1", "DDRGK1", "DDX3X", "DIABLO", "DLC1", "DNAJB6", "DPEP1", "ECM1", "EFNA1", "EFNA3", "EGLN3", "EIF2AK3", "EPHA4", "EPHA7", "EPPIN", "F2R", "F3", "FABP1", "FADD", "FAM162A", "FAS", "FASLG", "FETUB", "FNIP1", "FOXL2", "FURIN", "FYN", "GAPDH", "GAS6", "GPER1", "GPX1", "GRAMD4", "GRIN2A", "GRIN2B", "GRN", "GSN", "HIP1", "HIP1R", "HMGB1", "HSPD1", "HSPE1", "HTRA2", "IFI16", "IFI6", "IFT57", "IGBP1", "JAK2", "KLF4", "LAMP3", "LAMTOR5", "LAPTM5", "LCK", "LGALS9", "LGMN", "LRP1", "LTF", "LYN", "MAGEA3", "MALT1", "MAP2K5", "MAP3K5", "MAPK12", "MAPT", "MBP", "MEFV", "MMP9", "MTCH1", "MUL1", "MYC", "NAIP", "NCSTN", "NGFR", "NKX3-1", "NLRC4", "NLRP1", "NLRP12", "NOD1", "NODAL", "NOL3", "NRDC", "PAK2", "PARK7", "PAX2", "PCID2", "PDCD2", "PDCD5", "PDCD6", "PERP", "PIDD1", "PIH1D1", "PINK1", "PLAUR", "PMAIP1", "PPARG", "PPM1F", "PRELID1", "PRR7", "PRSS22", "PSENEN", "PSMA3", "PSMB8", "PSMB9", "PYCARD", "RACK1", "RAF1", "RCN3", "RECK", "REST", "RFFL", "RFPL1", "RIPK2", "RNF34", "ROBO1", "RPS27L", "RPS3", "RPS6KA1", "RPS6KA3", "S100A8", "S100A9", "SEMG1", "SEMG2", "SENP1", "SERPINB1", "SERPINB13", "SERPINB3", "SERPINB4", "SERPINB6", "SERPINB8", "SERPINB9", "SERPINE1", "SH3RF1", "SIAH2", "SIRT1", "SLC22A2", "SMAD3", "SNCA", "SOX2", "SOX7", "SPOCK1", "SPOCK2", "SPOCK3", "SRC", "ST18", "ST20", "STAT3", "SVBP", "SYK", "TANK", "TBC1D10A", "THBS1", "TIMP1", "TIMP2", "TIMP3", "TNF", "TNFSF10", "TNFSF15", "TRIAP1", "TTBK1", "UBXN1", "USP47", "USP50", "VCP", "VEGFA", "VSIR", "VTN", "XDH", "XIAP" ] }, "position": { "x": 814.9011488542224, "y": 1847.1526157301066, "id": "04397f25-76a5-44ed-a268-ddea1236b245", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "8a8f1e9c-bcae-4260-96fb-0005785f76ff", "name": [ "ANTIMICROBIAL HUMORAL RESPONSE%GOBP%GO:0019730" ], "description": [ "antimicrobial humoral response" ], "pvalue": 0.0037, "gs_type": null, "gs_size": 140, "padj": 0.0414, "mcode_cluster_id": null, "NES": -1.6396, "genes": [ "ANG", "AZU1", "BPIFA1", "CAMP", "CCL1", "CCL11", "CCL13", "CCL14", "CCL15", "CCL16", "CCL17", "CCL18", "CCL19", "CCL2", "CCL20", "CCL21", "CCL22", "CCL23", "CCL24", "CCL25", "CCL26", "CCL3", "CCL3L3", "CCL4", "CCL4L2", "CCL5", "CCL7", "CCL8", "COLEC11", "CST9", "CST9L", "CST9LP1", "CTSG", "CX3CL1", "CXCL1", "CXCL10", "CXCL11", "CXCL13", "CXCL14", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "DEFA1B", "DEFA3", "DEFA4", "DEFA5", "DEFA6", "DEFB1", "DEFB118", "DEFB126", "DEFB127", "DEFB4B", "DMBT1", "ELANE", "F2", "FAM3A", "FAU", "FGA", "FGB", "GALP", "GAPDH", "GNLY", "H2BC11", "H2BC12", "H2BC12L", "H2BC21", "H2BC8", "HLA-A", "HLA-E", "HMGN2", "HRG", "IGHA1", "IGHA2", "IGHE", "IGHG1", "IGHG2", "IGHG3", "IGHG4", "IGHM", "IGKV3-20", "IL36RN", "JCHAIN", "KRT6A", "LEAP2", "LTF", "LYZ", "MUC7", "NCR3LG1", "PF4", "PF4V1", "PGLYRP1", "PGLYRP3", "PGLYRP4", "PI3", "PLA2G1B", "PLA2G6", "PPBP", "PRSS2", "PRSS3", "PRTN3", "RARRES2", "REG1A", "REG1B", "REG3A", "REG3G", "RNASE2", "RNASE3", "RNASE4", "RNASE6", "RNASE7", "ROMO1", "RPL30", "RPL39", "RPS19", "S100A12", "S100A7", "S100A9", "SEMG1", "SEMG2", "SLC11A1", "SLPI", "SPAG11A", "SPAG11B", "SPRR2A", "TF", "TSLP", "WFDC10A", "WFDC10B", "WFDC11", "WFDC12", "WFDC13", "WFDC2", "WFDC3", "WFDC5", "WFDC9", "XCL1", "XCL2" ] }, "position": { "x": 3048.397162833783, "y": 398.3051314999831, "id": "8a8f1e9c-bcae-4260-96fb-0005785f76ff" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "0270a159-5a6c-455b-80f5-1f5481e92c2d", "name": [ "HALLMARK_GLYCOLYSIS%MSIGDBHALLMARK%HALLMARK_GLYCOLYSIS" ], "description": [ "HALLMARK_GLYCOLYSIS" ], "pvalue": 0, "gs_type": null, "gs_size": 169, "padj": 0.0012, "mcode_cluster_id": null, "NES": 1.7419, "genes": [ "ABCB6", "ADORA2B", "AGL", "AGRN", "AK3", "AK4", "ALDH7A1", "ALDH9A1", "ALDOB", "ALG1", "ANGPTL4", "ANKZF1", "ARPP19", "ARTN", "AURKA", "B3GALT6", "B3GAT1", "B3GAT3", "B3GNT3", "B4GALT1", "B4GALT2", "BIK", "BPGF-1", "CAPN5", "CASP6", "CD44", "CDC2", "CENPA", "CHPF", "CHPF2", "CHST1", "CHST12", "CHST4", "CHST6", "CITED2", "CLDN3", "CLDN9", "CLN6", "COG2", "COPB2", "CTH", "CXCR4", "DCN", "DDIT4", "DEPDC1", "DLD", "DPYSL4", "DSC2", "ECD", "EFNA3", "EGFR", "EGLN3", "ELF3", "ENO2", "ERO1A", "EXT1", "EXT2", "FBP2", "FKBP4", "FUT8", "GALK2", "GCLC", "GFPT1", "GLCE", "GLRX", "GMPPB", "GNE", "GNPDA1", "GOT2", "GPC3", "GPC4", "GPR87", "GUSB", "GYS1", "GYS2", "HAX1", "HEL-S-133P", "HEL-S-165mP", "HEL-S-17", "HEL-S-19", "HEL-S-26", "HEL-S-278", "HEL-S-30", "HEL-S-304", "HEL-S-32", "HEL-S-44", "HEL-S-49", "HEL-S-68p", "HEL-S-69p", "HEL-S-75", "HEL-S-87p", "HEL-S-89n", "HEL20", "HK2", "HMMR", "HOMER1", "HS2ST1", "HS6ST2", "IDUA", "IL13RA1", "ISG20", "KDELR3", "KIF20A", "LCT", "LHPP", "LHX9", "MDH2", "ME1", "ME2", "MED24", "MERTK", "MET", "MIF", "MIOX", "MXI1", "NANP", "NASP", "NDST3", "NDUFV3", "NOL3", "NT5E", "P4HA1", "P4HA2", "PAXIP1", "PC", "PDK3", "PFKFB1", "PFKP", "PGAM1", "PGAM2", "PGM2", "PHKA2", "PKP2", "PLOD1", "PLOD2", "POLR3K", "PSMC4", "PYGB", "PYGL", "RAA1", "RARS1", "RBCK1", "RPE", "RRAGD", "SAP30", "SDC1", "SDC2", "SDC3", "SDHC", "SLC16A3", "SLC25A10", "SLC25A13", "SLC35A3", "SOX9", "SPAG4", "SRD5A3", "STC1", "STC2", "TFF3", "TGFA", "TGFBI", "TPBG", "TPST1", "TXN", "VCAN", "VEGFA", "VLDLR", "XYLT2", "ZNF292" ] }, "position": { "x": 3687.539072651805, "y": 2195.9446642487483, "id": "0270a159-5a6c-455b-80f5-1f5481e92c2d" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "f45e0bc4-6f9f-417b-b48f-de0017b4ee5a", "name": [ "MOLYBDENUM COFACTOR DEFICIENCY%SMPDB%SMP0000203" ], "description": [ "Molybdenum Cofactor Deficiency" ], "pvalue": 0.0025, "gs_type": null, "gs_size": 37, "padj": 0.031, "mcode_cluster_id": "Cluster 3", "NES": -1.6821, "genes": [ "ADA", "ADCY2", "ADSL", "ADSS2", "AK1", "AMPD1", "APRT", "ATAD1", "ATIC", "DGUOK", "ENTPD5", "ENTPD8", "GART", "GDA", "GMPR", "GMPS", "GUCY1A2", "GUCY1B1", "GUK1", "HPRT1", "IMPDH1", "ITPA", "NME6", "NT5C2", "NUDT2", "NUDT5", "PAICS", "PDE10A", "PDE4D", "PFAS", "PNP", "PPAT", "PRPS1L1", "RRM1", "RRM2", "TXN", "XDH" ] }, "position": { "x": 1466.7968456251165, "y": 1236.5284173408515, "id": "f45e0bc4-6f9f-417b-b48f-de0017b4ee5a", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "5a8deea3-cc0a-4701-a9fa-f9e7a8d7caa5", "name": [ "NEGATIVE REGULATION OF LEUKOCYTE PROLIFERATION%GOBP%GO:0070664" ], "description": [ "negative regulation of leukocyte proliferation" ], "pvalue": 0.0036, "gs_type": null, "gs_size": 62, "padj": 0.0409, "mcode_cluster_id": "Cluster 12", "NES": -1.6555, "genes": [ "ARG1", "ATM", "BMP4", "BTN2A2", "CD274", "CD300A", "CEBPB", "CR1", "CRP", "CRTAM", "CTLA4", "DLG5", "ENPP3", "FCGR2B", "FOXP3", "GLMN", "GPNMB", "GREM1", "GSTP1", "HLA-DRB1", "HLA-E", "HLA-G", "IHH", "IL10", "IL33", "IL4I1", "LGALS9", "LGALS9B", "LGALS9C", "LILRB1", "LILRB2", "LILRB4", "LST1", "LYN", "MNDA", "PDCD1LG2", "PLA2G2A", "PLA2G2D", "PLA2G2E", "PLA2G2F", "PLA2G5", "PRKAR1A", "PRNP", "RC3H1", "SCRIB", "SDC4", "SFTPD", "SLC4A2", "SOX11", "SPN", "TMEM131L", "TNFAIP3", "TNFRSF13B", "TNFRSF14", "TNFRSF21", "TWSG1", "TYROBP", "VSIG4", "VSIR", "VTCN1", "XCL1", "ZBTB7B" ] }, "position": { "x": 2309.960069717377, "y": 533.225147966718, "id": "5a8deea3-cc0a-4701-a9fa-f9e7a8d7caa5", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "name": [ "UBIQUITIN-DEPENDENT DEGRADATION OF CYCLIN D%REACTOME DATABASE ID RELEASE 81%75815" ], "description": [ "Ubiquitin-dependent degradation of Cyclin D" ], "pvalue": 0.0000061723, "gs_type": null, "gs_size": 52, "padj": 0.0002, "mcode_cluster_id": "Cluster 1", "NES": -2.0761, "genes": [ "CCND1", "CDK4", "GSK3B", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RPS27A", "SEM1", "UBA52", "UBB", "UBC" ] }, "position": { "x": 426.846658198278, "y": 808.4424239528765, "id": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "name": [ "DEGRADATION OF BETA-CATENIN BY THE DESTRUCTION COMPLEX%REACTOME%R-HSA-195253.4" ], "description": [ "Degradation of beta-catenin by the destruction complex" ], "pvalue": 0.0000028499, "gs_type": null, "gs_size": 83, "padj": 0.0001, "mcode_cluster_id": "Cluster 1", "NES": -2.0437, "genes": [ "AMER1", "APC", "AXIN1", "BTRC", "CSNK1A1", "CTBP1", "CTBP2", "CTNNB1", "CUL1", "FRAT1", "FRAT2", "GSK3B", "HDAC1", "LEF1", "PPP2CA", "PPP2CB", "PPP2R1A", "PPP2R1B", "PPP2R5A", "PPP2R5B", "PPP2R5C", "PPP2R5D", "PPP2R5E", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RBX1", "RPS27A", "SEM1", "SKP1", "TCF7", "TCF7L1", "TCF7L2", "TLE1", "TLE2", "TLE3", "TLE4", "TLE5", "UBA52", "UBB", "UBC", "ZRANB1" ] }, "position": { "x": 468.4856799912934, "y": 819.2868073246622, "id": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "5915b056-e646-42a3-80e7-2deef8a98dec", "name": [ "POSITIVE REGULATION OF IMMUNE RESPONSE%GOBP%GO:0050778" ], "description": [ "positive regulation of immune response" ], "pvalue": 3.2747e-10, "gs_type": null, "gs_size": 569, "padj": 2.9306e-8, "mcode_cluster_id": null, "NES": -1.8623, "genes": [ "ABL1", "ACOD1", "ADAM8", "AIM2", "AKIRIN2", "ALPK1", "ANKRD17", "ANXA1", "AP1G1", "APPL2", "B2M", "BAG6", "BANK1", "BAX", "BCAR1", "BCL10", "BCL2", "BECN1", "BLK", "BLNK", "BMX", "BRCC3", "BRD2", "BRD4", "BTK", "BTN1A1", "BTN2A1", "BTN2A2", "BTN2A3P", "BTN3A1", "BTN3A2", "BTN3A3", "BTNL10P", "BTNL2", "BTNL3", "BTNL8", "BTNL9", "C17orf99", "C1QA", "C1QB", "C1QC", "C1R", "C2", "C3", "C3AR1", "C4A", "C4B_2", "C5AR1", "C5AR2", "C6", "C7", "C8A", "C8B", "C8G", "C9", "CADM1", "CARD11", "CARD8", "CARD9", "CASP1", "CASP6", "CAV1", "CCL19", "CCL5", "CCR2", "CCR7", "CD14", "CD160", "CD177", "CD19", "CD1A", "CD1B", "CD1C", "CD1D", "CD1E", "CD226", "CD247", "CD274", "CD276", "CD28", "CD300LF", "CD36", "CD38", "CD3D", "CD3E", "CD3G", "CD46", "CD55", "CD74", "CD79A", "CD79B", "CD80", "CD81", "CD86", "CD8A", "CD8B", "CFB", "CFD", "CFH", "CFHR1", "CFHR2", "CFHR3", "CFHR4", "CFHR5", "CFP", "CGAS", "CHUK", "CLCF1", "CLEC4E", "CLEC6A", "CLEC7A", "CLPB", "CLU", "CMKLR1", "COLEC10", "COLEC11", "COLEC12", "CPT1A", "CR1", "CR2", "CREBBP", "CRTAM", "CSK", "CTLA4", "CTSS", "CYBA", "CYLD", "CYRIB", "DDRGK1", "DDX3X", "DDX60", "DENND1B", "DHX33", "DHX58", "DHX9", "ECSIT", "EIF2AK4", "EIF2B1", "EIF2B2", "EIF2B3", "EIF2B4", "EIF2B5", "EP300", "EPG5", "EREG", "ERMAP", "F2RL1", "FADD", "FBXO38", "FCER1G", "FCGR2B", "FCHO1", "FCN1", "FCN2", "FCN3", "FFAR2", "FGR", "FLOT1", "FOXP1", "FPR1", "FPR2", "FPR3", "FYB1", "FYB2", "FYN", "FZD5", "GATA3", "GBP2", "GBP5", "GDI1", "GPLD1", "GPR151", "GPR32", "GPR32P1", "GPR33", "GSDME", "HCK", "HEXIM1", "HFE", "HHLA2", "HLA-A", "HLA-B", "HLA-C", "HLA-DMA", "HLA-DMB", "HLA-DOA", "HLA-DOB", "HLA-DPA1", "HLA-DPB1", "HLA-DQA1", "HLA-DQA2", "HLA-DQB1", "HLA-DQB2", "HLA-DRA", "HLA-DRB1", "HLA-DRB3", "HLA-DRB4", "HLA-DRB5", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "HMCES", "HMGB1", "HMSD", "HRG", "HSP90AA1", "HSPA1A", "HSPA1B", "HSPD1", "ICOSLG", "IFI16", "IFI35", "IFIH1", "IFNB1", "IFNG", "IFNK", "IFNL1", "IGHA1", "IGHA2", "IGHD", "IGHE", "IGHG1", "IGHG2", "IGHG3", "IGHG4", "IGHM", "IGKC", "IGLC1", "IGLC3", "IGLC6", "IGLC7", "IKBKB", "IKBKE", "IKBKG", "IL10", "IL12A", "IL12B", "IL12RB1", "IL15", "IL18", "IL18R1", "IL1B", "IL1R1", "IL2", "IL21", "IL23A", "IL23R", "IL4", "IL6", "IL6ST", "INAVA", "INPP5D", "IPO5", "IRAK1", "IRAK2", "IRAK3", "IRAK4", "IRF3", "IRF7", "IRGM", "ITCH", "ITGAM", "ITGB2", "ITK", "JAK2", "KARS1", "KCNN4", "KHDRBS1", "KIR2DL4", "KIR2DS2", "KLK3", "KLK5", "KLK7", "KLRC1", "KLRC2", "KLRC3", "KLRC4", "KLRD1", "KLRK1", "KMT5B", "KMT5C", "KRT1", "LACC1", "LAMP1", "LAT", "LAT2", "LAX1", "LBP", "LCK", "LCP2", "LGALS9", "LILRA2", "LILRB1", "LIME1", "LIMK1", "LRCH4", "LTF", "LY96", "LYN", "MAD2L2", "MALT1", "MAP2K6", "MAP3K7", "MAPK8", "MAPKAPK2", "MAPKAPK3", "MARK4", "MASP1", "MASP2", "MATR3", "MAVS", "MBL2", "MEF2C", "MEFV", "MFHAS1", "MICA", "MICB", "MNDA", "MOG", "MR1", "MS4A1", "MYD88", "MYO1G", "NAGK", "NAIP", "NCKAP1L", "NCR3", "NCR3LG1", "NECTIN2", "NEK7", "NFAM1", "NFATC2", "NFKBIA", "NFKBID", "NFKBIZ", "NINJ1", "NLRC4", "NLRC5", "NLRP1", "NLRP10", "NLRP3", "NLRP6", "NMI", "NOD1", "NOD2", "NONO", "NR1H3", "NR4A3", "OAS1", "OAS3", "OASL", "OPA1", "OTULIN", "PAK1", "PAK2", "PAK3", "PARK7", "PARP9", "PAXIP1", "PCK1", "PDE4B", "PDE4D", "PGC", "PHB1", "PHB2", "PIK3AP1", "PIK3CA", "PIK3CD", "PJA2", "PLA2G1B", "PLA2G5", "PLA2G6", "PLCG1", "PLCG2", "PLD2", "PLEKHA1", "PLPP4", "PLSCR1", "POLR3B", "POLR3C", "POLR3D", "POLR3F", "POLR3G", "PQBP1", "PRAM1", "PRKCB", "PRKCD", "PRKCE", "PRKCH", "PRKCQ", "PRKCZ", "PRKD1", "PRKD2", "PRKDC", "PSPC1", "PTK2", "PTPN22", "PTPRC", "PTPRJ", "PUM1", "PUM2", "PVR", "PYCARD", "PYHIN1", "RAB11FIP2", "RAB29", "RAET1E", "RAET1G", "RAET1L", "RARA", "RASGRP1", "RASGRP4", "RBCK1", "RBM14", "RBM47", "RC3H1", "RC3H2", "REG3G", "RELA", "RFTN1", "RGCC", "RIF1", "RIGI", "RIOK3", "RIPK2", "RNF135", "RNF144A", "RNF185", "RNF31", "RNF34", "RPS19", "RPS3", "RPS6KA3", "RSAD2", "RTN4", "S100A14", "SASH3", "SCARA3", "SCIMP", "SFPQ", "SH2B2", "SH2D1B", "SHLD1", "SHLD2", "SHLD3", "SIRT1", "SKAP1", "SLA2", "SLAMF6", "SLC11A1", "SLC15A3", "SLC15A4", "SLC19A1", "SLC22A13", "SLC39A6", "SLC46A2", "SOCS5", "SPG21", "SPHK2", "SPI1", "SPPL3", "SRC", "STAP1", "STING1", "STMP1", "STOML2", "STX4", "STX7", "SYK", "TAB1", "TASL", "TBK1", "TBX21", "TEC", "TESPA1", "TFRC", "TGFB1", "TGFB2", "THEMIS", "THEMIS2", "THY1", "TICAM1", "TICAM2", "TIFA", "TIRAP", "TLR1", "TLR10", "TLR2", "TLR3", "TLR4", "TLR5", "TLR6", "TLR7", "TLR8", "TLR9", "TNFAIP3", "TNFRSF21", "TNFSF13", "TNFSF4", "TNIP1", "TNIP2", "TNIP3", "TOMM70", "TP53BP1", "TRAC", "TRAF2", "TRAF3", "TRAF3IP3", "TRAF6", "TRAT1", "TRBC1", "TRBC2", "TRDC", "TREM2", "TREML4", "TRGC1", "TRGC2", "TRIL", "TRIM15", "TRIM25", "TRIM3", "TRIM41", "TRIM5", "TRIM56", "TRIM6", "TRIM62", "TXK", "TYK2", "TYROBP", "UBE2K", "UBE2N", "UBR2", "ULBP1", "ULBP2", "ULBP3", "UNC93B1", "USP15", "USP17L2", "USP27X", "USP29", "USP50", "VAV1", "VAV2", "VAV3", "VTCN1", "WDFY1", "WNK1", "WNT5A", "XBP1", "XCL1", "XIAP", "XRCC5", "XRCC6", "YES1", "YWHAE", "ZAP70", "ZBP1", "ZBTB1", "ZC3H12A", "ZCCHC3", "ZDHHC3", "ZDHHC4", "ZDHHC5", "ZDHHC9", "ZNFX1", "ZNRF1", "ZP3", "ZP4" ] }, "position": { "x": 1876.2260922714563, "y": 556.2108233079193, "id": "5915b056-e646-42a3-80e7-2deef8a98dec" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "f8a5f9ff-fb62-48b4-ad61-1e4f868172cb", "name": [ "MITOTIC ANAPHASE%REACTOME DATABASE ID RELEASE 81%68882" ], "description": [ "Mitotic Anaphase" ], "pvalue": 7.7679e-7, "gs_type": null, "gs_size": 227, "padj": 0, "mcode_cluster_id": "Cluster 26", "NES": -1.7791, "genes": [ "AHCTF1", "ANAPC1", "ANAPC10", "ANAPC11", "ANAPC15", "ANAPC16", "ANAPC2", "ANAPC4", "ANAPC5", "ANAPC7", "ANKLE2", "B9D2", "BANF1", "BIRC5", "BUB1", "BUB1B", "BUB3", "CC2D1B", "CCNB1", "CCNB2", "CDC16", "CDC20", "CDC23", "CDC26", "CDC27", "CDCA5", "CDCA8", "CDK1", "CENPA", "CENPC", "CENPE", "CENPF", "CENPH", "CENPI", "CENPK", "CENPL", "CENPM", "CENPN", "CENPO", "CENPP", "CENPQ", "CENPS", "CENPT", "CENPU", "CHMP2A", "CHMP2B", "CHMP3", "CHMP4A", "CHMP4B", "CHMP4C", "CHMP6", "CHMP7", "CKAP5", "CLASP1", "CLASP2", "CLIP1", "DSN1", "DYNC1H1", "DYNC1I1", "DYNC1I2", "DYNC1LI1", "DYNC1LI2", "DYNLL1", "DYNLL2", "EMD", "ERCC6L", "ESPL1", "INCENP", "IST1", "ITGB3BP", "KIF18A", "KIF2A", "KIF2B", "KIF2C", "KNL1", "KNTC1", "KPNB1", "LBR", "LEMD2", "LEMD3", "LMNB1", "MAD1L1", "MAD2L1", "MAPRE1", "MIS12", "NDC1", "NDC80", "NDE1", "NDEL1", "NSL1", "NUDC", "NUF2", "NUP107", "NUP133", "NUP155", "NUP160", "NUP188", "NUP205", "NUP35", "NUP37", "NUP43", "NUP54", "NUP62", "NUP85", "NUP93", "PAFAH1B1", "PDS5A", "PDS5B", "PLK1", "PMF1", "POM121", "PPP1CC", "PPP2CA", "PPP2CB", "PPP2R1A", "PPP2R1B", "PPP2R2A", "PPP2R5A", "PPP2R5B", "PPP2R5C", "PPP2R5D", "PPP2R5E", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "PTTG1", "RAD21", "RAN", "RANBP2", "RANGAP1", "RCC1", "RCC2", "RPS27", "RPS27A", "SEC13", "SEM1", "SGO1", "SGO2", "SIRT2", "SKA1", "SKA2", "SMC1A", "SMC3", "SPAST", "SPC24", "SPC25", "SPDL1", "STAG1", "STAG2", "SUMO1", "TAOK1", "TNPO1", "TUBA1A", "TUBA1B", "TUBA1C", "TUBA3C", "TUBA3D", "TUBA3E", "TUBA4A", "TUBA4B", "TUBA8", "TUBAL3", "TUBB1", "TUBB2A", "TUBB2B", "TUBB3", "TUBB4A", "TUBB4B", "TUBB6", "TUBB8", "TUBB8B", "UBA52", "UBB", "UBC", "UBE2C", "UBE2D1", "UBE2E1", "UBE2I", "UBE2S", "VPS4A", "VRK1", "WAPL", "XPO1", "ZW10", "ZWILCH", "ZWINT" ] }, "position": { "x": 486.7996420984312, "y": 982.2688532638247, "id": "f8a5f9ff-fb62-48b4-ad61-1e4f868172cb", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "989c1208-cca3-4434-a015-67163bcf2567", "name": [ "MONOATOMIC ION TRANSMEMBRANE TRANSPORT%GOBP%GO:0034220" ], "description": [ "monoatomic ion transmembrane transport" ], "pvalue": 0.0024, "gs_type": null, "gs_size": 500, "padj": 0.0307, "mcode_cluster_id": "Cluster 11", "NES": 1.4076, "genes": [ "ABCB6", "ABCB7", "ABCB8", "ABCC5", "ABCC8", "ABCC9", "ADRA1A", "AFG3L2", "ANO1", "ANO10", "ANO2", "ANO3", "ANO4", "ANO5", "ANO6", "ANO7", "ANO8", "ANO9", "ANXA6", "AP3D1", "APOL1", "ASIC1", "ASIC2", "ASIC3", "ASIC4", "ASIC5", "ATP10A", "ATP10D", "ATP11B", "ATP11C", "ATP12A", "ATP13A1", "ATP13A2", "ATP13A4", "ATP13A5", "ATP1A1", "ATP1A2", "ATP1A3", "ATP1A4", "ATP1B1", "ATP1B2", "ATP1B3", "ATP2A1", "ATP2A2", "ATP2A3", "ATP2B1", "ATP2B2", "ATP2B3", "ATP2B4", "ATP2C1", "ATP2C2", "ATP4A", "ATP4B", "ATP5F1B", "ATP5MF", "ATP5PO", "ATP6AP1", "ATP6AP2", "ATP6V0A1", "ATP6V0A2", "ATP6V0A4", "ATP6V0B", "ATP6V0C", "ATP6V0D1", "ATP6V0E1", "ATP6V0E2", "ATP6V1A", "ATP6V1B1", "ATP6V1B2", "ATP6V1C1", "ATP6V1D", "ATP6V1E1", "ATP6V1F", "ATP6V1G1", "ATP6V1G2", "ATP6V1G3", "ATP6V1H", "ATP7A", "ATP7B", "ATP8A1", "ATP8B1", "ATP8B2", "BAK1", "BAX", "BEST1", "CACNA1A", "CACNA1B", "CACNA1C", "CACNA1D", "CACNA1E", "CACNA1F", "CACNA1G", "CACNA1H", "CACNA1I", "CACNA1S", "CACNA2D1", "CACNA2D4", "CACNB1", "CACNB2", "CACNB3", "CACNG1", "CCDC51", "CCL19", "CCL21", "CCL3", "CCR5", "CCR7", "CFTR", "CHERP", "CHRNA7", "CLCA1", "CLCA2", "CLCA3P", "CLCA4", "CLCN1", "CLCN3", "CLCN4", "CLCN5", "CLCN6", "CNGA1", "CNGA2", "CNGA3", "CNGA4", "CNGB1", "CNGB3", "DMAC2L", "DRD2", "ERO1A", "F2R", "FASLG", "FGF2", "FKBP1A", "FLNA", "FXYD2", "GABRA1", "GABRA2", "GABRA3", "GABRA4", "GABRA5", "GABRA6", "GABRB1", "GABRB2", "GABRB3", "GABRD", "GABRE", "GABRG1", "GABRG2", "GABRG3", "GABRP", "GABRQ", "GABRR1", "GABRR2", "GABRR3", "GAS6", "GHITM", "GJA1", "GLRA1", "GLRA2", "GLRA3", "GLRB", "GP1BA", "GP1BB", "GP5", "GP9", "GRIN1", "GRIN2A", "GRIN2B", "GRIN2C", "GRIN2D", "HCN1", "HCN2", "HCN3", "HCN4", "HPN", "HSPA9", "HTR2A", "HTR2B", "HTR2C", "HVCN1", "IBTK", "ITGAV", "ITPR1", "ITPR2", "ITPR3", "JPH1", "JPH2", "JPH3", "JPH4", "KCNA1", "KCNA10", "KCNA2", "KCNA3", "KCNA4", "KCNA5", "KCNA6", "KCNA7", "KCNB1", "KCNB2", "KCNC1", "KCNC2", "KCNC3", "KCNC4", "KCND1", "KCND2", "KCND3", "KCNE1", "KCNE2", "KCNE3", "KCNE4", "KCNE5", "KCNF1", "KCNG1", "KCNG2", "KCNG3", "KCNG4", "KCNH2", "KCNH3", "KCNH4", "KCNH5", "KCNH6", "KCNH7", "KCNH8", "KCNIP2", "KCNJ1", "KCNJ10", "KCNJ11", "KCNJ12", "KCNJ13", "KCNJ14", "KCNJ15", "KCNJ16", "KCNJ18", "KCNJ2", "KCNJ3", "KCNJ4", "KCNJ5", "KCNJ6", "KCNJ8", "KCNJ9", "KCNK1", "KCNK10", "KCNK12", "KCNK13", "KCNK15", "KCNK16", "KCNK17", "KCNK18", "KCNK2", "KCNK3", "KCNK4", "KCNK5", "KCNK6", "KCNK7", "KCNK9", "KCNMA1", "KCNN1", "KCNN2", "KCNN3", "KCNN4", "KCNQ1", "KCNQ2", "KCNQ3", "KCNQ4", "KCNQ5", "KCNS1", "KCNS2", "KCNS3", "KCNT1", "KCNT2", "KCNU1", "KCNV1", "KCNV2", "LCK", "LETM1", "LRRC26", "LRRC38", "LRRC52", "LRRC55", "LRRC8A", "LRRC8B", "LRRC8C", "LRRC8D", "LRRC8E", "MAIP1", "MCOLN1", "MCOLN2", "MCOLN3", "MCU", "MCUB", "MCUR1", "MICU1", "MICU2", "MICU3", "MRS2", "MT-CO1", "MT-ND4", "MT-ND5", "NALCN", "NALF1", "NALF2", "NDUFS7", "NEDD4L", "NNT", "NOL3", "NOX5", "ORAI1", "OTOP1", "OTOP2", "OTOP3", "P2RX1", "P2RX2", "P2RX3", "P2RX4", "P2RX5", "P2RX6", "P2RX7", "PANX1", "PKD1", "PKD2", "PKD2L1", "PLCB1", "PLCB2", "PLCB3", "PLCB4", "PLCD1", "PLCE1", "PLCG1", "PLCG2", "PLCH1", "PLCH2", "PMPCB", "PTPRC", "RNASEK", "ROMO1", "RYR1", "RYR2", "RYR3", "SCARA5", "SCN10A", "SCN11A", "SCN1A", "SCN1B", "SCN2A", "SCN2B", "SCN3A", "SCN3B", "SCN4A", "SCN4B", "SCN5A", "SCN7A", "SCN8A", "SCN9A", "SCNN1A", "SCNN1B", "SCNN1D", "SCNN1G", "SLC11A1", "SLC11A2", "SLC12A1", "SLC12A2", "SLC12A3", "SLC12A4", "SLC12A5", "SLC12A6", "SLC12A7", "SLC12A8", "SLC12A9", "SLC17A3", "SLC1A1", "SLC1A3", "SLC1A7", "SLC24A1", "SLC24A2", "SLC24A3", "SLC24A4", "SLC24A5", "SLC25A23", "SLC25A28", "SLC25A37", "SLC26A9", "SLC29A4", "SLC30A1", "SLC30A10", "SLC30A2", "SLC30A3", "SLC30A4", "SLC30A5", "SLC30A6", "SLC30A7", "SLC30A8", "SLC31A1", "SLC35G1", "SLC36A1", "SLC36A2", "SLC36A3", "SLC39A1", "SLC39A10", "SLC39A11", "SLC39A12", "SLC39A13", "SLC39A14", "SLC39A2", "SLC39A3", "SLC39A4", "SLC39A5", "SLC39A6", "SLC39A7", "SLC39A8", "SLC39A9", "SLC40A1", "SLC41A1", "SLC41A2", "SLC41A3", "SLC46A1", "SLC4A1", "SLC4A11", "SLC4A4", "SLC4A8", "SLC4A9", "SLC5A1", "SLC5A2", "SLC5A5", "SLC5A6", "SLC6A1", "SLC6A11", "SLC6A12", "SLC6A13", "SLC6A14", "SLC6A15", "SLC6A16", "SLC6A17", "SLC6A18", "SLC6A19", "SLC6A2", "SLC6A20", "SLC6A3", "SLC6A4", "SLC6A5", "SLC6A6", "SLC6A7", "SLC6A8", "SLC6A9", "SLC8A1", "SLC8A2", "SLC8A3", "SLC8B1", "SLC9A1", "SLC9A2", "SLC9A3", "SLC9A4", "SLC9A5", "SLC9A6", "SLC9A7", "SLC9A8", "SLC9A9", "SLC9B1", "SLC9C1", "SLC9C2", "SMDT1", "TCIRG1", "TMCO1", "TMEM120A", "TMEM163", "TMEM165", "TMEM175", "TMEM94", "TPCN1", "TPCN2", "TRDN", "TRPA1", "TRPC1", "TRPC3", "TRPC4", "TRPC4AP", "TRPC5", "TRPC6", "TRPC7", "TRPM1", "TRPM2", "TRPM3", "TRPM4", "TRPM5", "TRPM6", "TRPM7", "TRPM8", "TRPV1", "TRPV2", "TRPV3", "TRPV4", "TRPV5", "TRPV6", "TTYH1", "TTYH3", "UCP1", "UCP2", "UCP3", "VDAC1", "WWP1", "XCL1", "ZACN" ] }, "position": { "x": 4128.228438625636, "y": 1594.5999290447419, "id": "989c1208-cca3-4434-a015-67163bcf2567", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "name": [ "B CELL ACTIVATION%REACTOME%R-HSA-983705.3" ], "description": [ "B Cell Activation" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 173, "padj": 0.0024, "mcode_cluster_id": null, "NES": -1.7475, "genes": [ "AHCYL1", "BCL10", "BLK", "BLNK", "BTK", "BTRC", "CALM1", "CARD11", "CD19", "CD22", "CD79A", "CD79B", "CHUK", "CUL1", "DAPP1", "FBXW11", "FKBP1A", "FYN", "HRAS", "IGHD", "IGHM", "IGHV", "IGHV1-2", "IGHV1-46", "IGHV1-69", "IGHV2-5", "IGHV2-70", "IGHV3-11", "IGHV3-13", "IGHV3-23", "IGHV3-30", "IGHV3-33", "IGHV3-48", "IGHV3-53", "IGHV3-7", "IGHV3-9", "IGHV4-34", "IGHV4-39", "IGHV4-59", "IGHV7-81", "IGKC", "IGKV1-12", "IGKV1-16", "IGKV1-17", "IGKV1-33", "IGKV1-39", "IGKV1-5", "IGKV1D-12", "IGKV1D-16", "IGKV1D-33", "IGKV1D-39", "IGKV2-28", "IGKV2-29", "IGKV2-30", "IGKV2D-28", "IGKV2D-30", "IGKV2D-40", "IGKV3-11", "IGKV3-15", "IGKV3-20", "IGKV3D-20", "IGKV4-1", "IGKV5-2", "IGLC1", "IGLC2", "IGLC3", "IGLC6", "IGLC7", "IGLV", "IGLV1-40", "IGLV1-44", "IGLV1-47", "IGLV1-51", "IGLV2-11", "IGLV2-14", "IGLV2-23", "IGLV2-8", "IGLV3-1", "IGLV3-19", "IGLV3-21", "IGLV3-25", "IGLV3-27", "IGLV6-57", "IGLV7-43", "IKBKB", "IKBKG", "ITPR1", "ITPR2", "ITPR3", "LYN", "MALT1", "MAP3K7", "NCK1", "NFATC1", "NFATC2", "NFATC3", "NFKB1", "NFKBIA", "NFKBIB", "NFKBIE", "NRAS", "ORAI1", "ORAI2", "PIK3AP1", "PIK3CD", "PIK3R1", "PLCG2", "PPIA", "PPP3CA", "PPP3CB", "PPP3R1", "PRKCB", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "PTPN6", "RASGRP1", "RASGRP3", "REL", "RELA", "RPS27A", "SEM1", "SH3KBP1", "SKP1", "SOS1", "STIM1", "SYK", "TRPC1", "UBA52", "UBB", "UBC", "VAV1" ] }, "position": { "x": 400.7945647689836, "y": 816.7684612529533, "id": "b6328d2d-f76b-4635-b83c-6ebff3e850b3" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "89ef528a-6736-4b29-9138-7a11a722353d", "name": [ "ADENINE PHOSPHORIBOSYLTRANSFERASE DEFICIENCY (APRT)%PATHWHIZ%PW000511" ], "description": [ "Adenine Phosphoribosyltransferase Deficiency (APRT)" ], "pvalue": 0.0025, "gs_type": null, "gs_size": 37, "padj": 0.031, "mcode_cluster_id": "Cluster 3", "NES": -1.6821, "genes": [ "ADA", "ADCY2", "ADSL", "ADSS2", "AK1", "AMPD1", "APRT", "ATAD1", "ATIC", "DGUOK", "ENTPD5", "ENTPD8", "GART", "GDA", "GMPR", "GMPS", "GUCY1A2", "GUCY1B1", "GUK1", "HPRT1", "IMPDH1", "ITPA", "NME6", "NT5C2", "NUDT2", "NUDT5", "PAICS", "PDE10A", "PDE4D", "PFAS", "PNP", "PPAT", "PRPS1L1", "RRM1", "RRM2", "TXN", "XDH" ] }, "position": { "x": 1514.0599416340515, "y": 1430.129421214029, "id": "89ef528a-6736-4b29-9138-7a11a722353d", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "c5c21995-2a86-43f4-93b6-485f0af0fc67", "name": [ "REGULATION OF AMYLOID FIBRIL FORMATION%GOBP%GO:1905906" ], "description": [ "regulation of amyloid fibril formation" ], "pvalue": 0.0026, "gs_type": null, "gs_size": 17, "padj": 0.0318, "mcode_cluster_id": null, "NES": 1.8161, "genes": [ "APOE", "APP", "CHRNA7", "CLU", "CRYAB", "IAPP", "LDLR", "MT-RNR2", "PFDN1", "PFDN2", "PFDN4", "PFDN5", "PFDN6", "PSEN1", "TREM2", "USP8", "VBP1" ] }, "position": { "x": 3918.539072651805, "y": 2118.9446642487483, "id": "c5c21995-2a86-43f4-93b6-485f0af0fc67" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "1b29ac15-1955-4435-89c7-f084fba4553b", "name": [ "CELL ADHESION%GOBP%GO:0007155" ], "description": [ "cell adhesion" ], "pvalue": 0.0047, "gs_type": null, "gs_size": 699, "padj": 0.0484, "mcode_cluster_id": null, "NES": -1.3043, "genes": [ "ACHE", "ACTB", "ACTG1", "ACTN1", "ACTN2", "ACTN3", "ACVR1", "ADAM15", "ADAM17", "ADAM18", "ADAM2", "ADAM32", "ADAM9", "ADAMTS12", "ADAMTS13", "ADAMTS9", "ADD2", "ADGRB1", "ADGRE1", "ADGRE2", "ADGRG1", "ADGRL1", "ADGRL3", "ADGRV1", "AFDN", "AGGF1", "ALCAM", "AMBN", "AMBP", "AMELX", "AMIGO1", "AMIGO2", "AMIGO3", "ANGPTL3", "ANTXR1", "ANXA9", "AOC3", "APBA1", "APC", "APOA4", "ARF6", "ARHGAP5", "ARHGEF7", "ARVCF", "ASTL", "ASTN1", "ASTN2", "ATP1B2", "ATP2A2", "ATP2C1", "AZGP1", "BCAM", "BCR", "BGLAP", "BMP5", "BMP7", "BOC", "BVES", "CADM1", "CADM2", "CADM3", "CADM4", "CAMSAP3", "CASK", "CBLL1", "CBLN1", "CCL11", "CCL2", "CCL21", "CCL4", "CCL5", "CCN1", "CCN2", "CCN3", "CCN4", "CCN5", "CCN6", "CCR1", "CCR3", "CCR8", "CD151", "CD164", "CD177", "CD1D", "CD2", "CD200", "CD200R1", "CD209", "CD24", "CD33", "CD34", "CD40LG", "CD44", "CD58", "CD6", "CD63", "CD72", "CD84", "CD9", "CD93", "CD96", "CD99", "CDH1", "CDH10", "CDH11", "CDH12", "CDH13", "CDH15", "CDH16", "CDH17", "CDH18", "CDH19", "CDH2", "CDH20", "CDH22", "CDH23", "CDH24", "CDH26", "CDH3", "CDH4", "CDH5", "CDH6", "CDH7", "CDH8", "CDH9", "CDHR1", "CDHR2", "CDHR3", "CDHR4", "CDHR5", "CDK5R1", "CDON", "CDSN", "CEACAM1", "CEACAM19", "CEACAM5", "CEACAM6", "CEACAM8", "CELSR1", "CELSR2", "CELSR3", "CERCAM", "CHST10", "CHST4", "CLDN1", "CLDN10", "CLDN11", "CLDN12", "CLDN14", "CLDN15", "CLDN16", "CLDN17", "CLDN18", "CLDN19", "CLDN2", "CLDN20", "CLDN22", "CLDN23", "CLDN24", "CLDN25", "CLDN3", "CLDN34", "CLDN4", "CLDN5", "CLDN6", "CLDN7", "CLDN8", "CLDN9", "CLEC4A", "CLEC4M", "CLECL1P", "CLIC1", "CLSTN1", "CNTN1", "CNTN2", "CNTN4", "CNTN5", "CNTN6", "COL13A1", "COL14A1", "COL16A1", "COL17A1", "COL19A1", "COL28A1", "COL3A1", "COL5A1", "COL8A2", "CORO1A", "CRB1", "CRB2", "CRNN", "CRTAM", "CSRP1", "CSTA", "CTNNA1", "CTNNA2", "CTNNA3", "CTNNB1", "CTNND1", "CTNND2", "CTTN", "CX3CL1", "CX3CR1", "CXADR", "CXCL12", "CXCR3", "CYFIP2", "CYP1B1", "DCC", "DCHS1", "DCHS2", "DDR1", "DDR2", "DEFB118", "DGCR6", "DLC1", "DLG1", "DLG2", "DLG3", "DLG4", "DLG5", "DSC1", "DSC2", "DSC3", "DSCAM", "DSCAML1", "DSG1", "DSG2", "DSG3", "DSG4", "DSP", "ECM2", "EFNA1", "EFNB1", "EFNB2", "EGFR", "EMB", "EMILIN1", "EMILIN2", "EMP2", "ENTPD1", "EPHA1", "EPHB1", "EPHB3", "EPHB4", "ERBIN", "ESAM", "EZR", "F11R", "FARP2", "FAT1", "FAT2", "FAT3", "FAT4", "FBLIM1", "FBLN5", "FBN1", "FER", "FERMT1", "FERMT2", "FERMT3", "FES", "FEZ1", "FGA", "FGB", "FGFRL1", "FGG", "FGL1", "FIBP", "FLG2", "FLNA", "FLRT2", "FLRT3", "FN1", "FOLR1", "FOLR2", "FOLR3", "FPR2", "FREM2", "FREM3", "FYB2", "GATA1", "GATA5", "GCNT1", "GFUS", "GNAS", "GOLPH3", "GP1BA", "GPC4", "GPNMB", "GRHL2", "GRID2", "HABP2", "HAS1", "HBB", "HCK", "HES5", "HMCN1", "HMCN2", "HOXD3", "HPSE", "HSPB1", "IBSP", "ICAM1", "ICAM2", "ICAM3", "ICAM4", "ICAM5", "ICOS", "IGDCC3", "IGDCC4", "IGFBP7", "IGSF11", "IGSF21", "IGSF5", "IGSF9", "IL1B", "IL1RAPL1", "IL2", "IL32", "ILK", "INPPL1", "ISLR", "ITGA1", "ITGA10", "ITGA11", "ITGA2", "ITGA2B", "ITGA3", "ITGA4", "ITGA5", "ITGA6", "ITGA7", "ITGA8", "ITGA9", "ITGAD", "ITGAE", "ITGAL", "ITGAM", "ITGAV", "ITGAX", "ITGB1", "ITGB1BP1", "ITGB2", "ITGB3", "ITGB3BP", "ITGB4", "ITGB5", "ITGB6", "ITGB7", "ITGB8", "ITGBL1", "IZUMO1", "IZUMO1R", "JAM2", "JAM3", "JAML", "JUP", "KIF14", "KIFC3", "KIRREL1", "KIRREL2", "KIRREL3", "KIT", "L1CAM", "LAMA5", "LAMB1", "LAMC1", "LGALS1", "LGALS2", "LGALS4", "LGALS7B", "LILRB2", "LIMS1", "LIMS2", "LPP", "LPXN", "LRFN4", "LRFN5", "LRG1", "LRRC4", "LRRC4B", "LRRC4C", "LRRC7", "LRRN2", "LYVE1", "MADCAM1", "MAEA", "MAG", "MAGI1", "MEGF10", "MEGF11", "METAP1", "MICALL2", "MKLN1", "MMP24", "MMRN1", "MMRN2", "MPZ", "MPZL2", "MSLN", "MSLNL", "MSN", "MTSS1", "MUC16", "MYH9", "MYL12A", "MYL9", "MYOT", "MYPN", "NCAM2", "NECTIN1", "NECTIN2", "NECTIN3", "NECTIN4", "NEO1", "NEXN", "NFASC", "NID2", "NINJ1", "NINJ2", "NLGN1", "NLGN2", "NLGN3", "NLGN4X", "NLGN4Y", "NME2", "NPHP1", "NPHP4", "NPHS1", "NPNT", "NPTN", "NRCAM", "NRP2", "NRXN1", "NRXN2", "NRXN3", "NT5E", "NTN4", "NTNG1", "OLR1", "OTOA", "P2RY12", "PALLD", "PARD3", "PARD3B", "PARVA", "PARVB", "PARVG", "PCDH1", "PCDH10", "PCDH11X", "PCDH11Y", "PCDH12", "PCDH15", "PCDH17", "PCDH18", "PCDH19", "PCDH20", "PCDH7", "PCDH8", "PCDH9", "PCDHA1", "PCDHA10", "PCDHA11", "PCDHA12", "PCDHA13", "PCDHA2", "PCDHA3", "PCDHA4", "PCDHA5", "PCDHA6", "PCDHA7", "PCDHA8", "PCDHA9", "PCDHAC1", "PCDHAC2", "PCDHB1", "PCDHB10", "PCDHB11", "PCDHB12", "PCDHB13", "PCDHB14", "PCDHB15", "PCDHB16", "PCDHB18P", "PCDHB2", "PCDHB3", "PCDHB4", "PCDHB5", "PCDHB6", "PCDHB7", "PCDHB8", "PCDHB9", "PCDHGA1", "PCDHGA10", "PCDHGA11", "PCDHGA12", "PCDHGA2", "PCDHGA3", "PCDHGA4", "PCDHGA5", "PCDHGA6", "PCDHGA7", "PCDHGA8", "PCDHGA9", "PCDHGB1", "PCDHGB2", "PCDHGB3", "PCDHGB4", "PCDHGB5", "PCDHGB6", "PCDHGB7", "PCDHGC3", "PCDHGC4", "PCDHGC5", "PDGFRA", "PDPN", "PEAK1", "PECAM1", "PERP", "PIK3CB", "PIK3CG", "PIK3R1", "PIP5K1A", "PIP5K1C", "PKD1", "PKD1L1", "PKHD1", "PKP1", "PKP2", "PKP3", "PKP4", "PLEK", "PLEKHA7", "PLEKHG4B", "PLPP3", "PLXNB2", "PLXNB3", "PLXNC1", "PNN", "PODXL2", "POSTN", "PPFIA1", "PPFIA2", "PPFIBP1", "PPIA", "PRKX", "PRTG", "PSEN1", "PSG11", "PSG2", "PSG5", "PTK7", "PTPRD", "PTPRF", "PTPRK", "PTPRM", "PTPRS", "PTPRT", "PTPRU", "PVR", "PXDN", "PXN", "RAC1", "RAC2", "RADIL", "RAP2B", "RCC2", "REG3A", "RET", "RGMB", "RHOA", "RHOB", "RHOD", "RNASE10", "RND3", "ROBO1", "ROBO2", "ROBO3", "ROBO4", "ROCK1", "ROPN1B", "S100A8", "S100A9", "S1PR1", "SCARF1", "SCARF2", "SCRIB", "SDK1", "SDK2", "SELE", "SELL", "SELP", "SELPLG", "SEMA4D", "SEMA5A", "SERPINB8", "SGCE", "SIGLEC1", "SIGLEC10", "SIGLEC11", "SIGLEC12", "SIGLEC14", "SIGLEC16", "SIGLEC5", "SIGLEC6", "SIGLEC7", "SIGLEC8", "SIGLEC9", "SIRPA", "SLAMF7", "SLC39A8", "SLC6A4", "SLITRK1", "SLITRK2", "SLITRK3", "SLITRK5", "SLURP1", "SMAD6", "SORBS1", "SORBS3", "SPECC1L", "SPN", "SPOCK1", "SPON1", "SPON2", "SPP1", "SRC", "SRCIN1", "SRGAP2", "SRPX2", "SSPN", "STAB1", "STAB2", "STRC", "STRCP1", "STXBP1", "STXBP3", "SYK", "TAOK2", "TEK", "TENM1", "TENM2", "TENM3", "TENM4", "TESK2", "TGFB1I1", "TGFB2", "TGFBI", "TGFBR2", "THBS1", "THBS3", "THBS4", "THEMIS2", "THSD1", "THY1", "TIAM1", "TIMM10B", "TINAG", "TJP1", "TJP2", "TJP3", "TLN1", "TLN2", "TM9SF4", "TMEM47", "TMEM8B", "TNF", "TNIP1", "TNN", "TNR", "TNXB", "TOR1A", "TPBG", "TRIP6", "TRO", "TSC1", "TYRO3", "UBASH3B", "UMOD", "UNC5D", "VAMP3", "VCAM1", "VCL", "VEZT", "VMP1", "VNN1", "VSIG10", "VSIG10L2", "VTN", "VWA2", "VWF", "WHAMM", "WNT7B", "XG", "ZAN", "ZAP70", "ZYX" ] }, "position": { "x": 37.5, "y": 2195.9446642487483, "id": "1b29ac15-1955-4435-89c7-f084fba4553b" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "108d256d-7db9-4794-8ed0-a0dac632f44d", "name": [ "REGULATION OF T CELL APOPTOTIC PROCESS%GOBP%GO:0070232" ], "description": [ "regulation of T cell apoptotic process" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 21, "padj": 0.0035, "mcode_cluster_id": null, "NES": -1.9641, "genes": [ "ADAM8", "BMP4", "CCL5", "CD274", "FADD", "IDO1", "JAK3", "LGALS16", "LGALS3", "LGALS9", "PDCD1", "PERP", "PIP", "PRELID1", "PRKCQ", "PRKD2", "PTCRA", "RIPK3", "TP53", "TSC22D3", "ZC3H8" ] }, "position": { "x": 1962.5, "y": 2272.9446642487483, "id": "108d256d-7db9-4794-8ed0-a0dac632f44d" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "4368440a-6df8-4ed8-aaf8-4a419aa9eb42", "name": [ "BRANCHING MORPHOGENESIS OF AN EPITHELIAL TUBE%GOBP%GO:0048754" ], "description": [ "branching morphogenesis of an epithelial tube" ], "pvalue": 0.003, "gs_type": null, "gs_size": 47, "padj": 0.0357, "mcode_cluster_id": "Cluster 31", "NES": -1.6637, "genes": [ "BMP2", "BMP4", "CELSR1", "CITED1", "COL4A1", "CTNNB1", "CTSH", "DLL4", "ENG", "EPHA2", "FGF1", "FGF10", "FGF2", "FGFR2", "FOXD1", "GDF2", "GDNF", "GLI2", "HOXA11", "HOXD11", "KDR", "MET", "MYC", "NKX2-1", "NKX3-1", "NOTCH4", "NPNT", "NRARP", "NRP1", "PAK1", "PAX2", "PAX8", "PKD1", "PKD2", "PKHD1", "RASIP1", "SALL1", "SEMA3E", "SFRP2", "SHH", "SIX1", "SLIT2", "TCF21", "TGFBR2", "TIE1", "VEGFA", "WT1" ] }, "position": { "x": 863.3393330083017, "y": 1331.4037064623922, "id": "4368440a-6df8-4ed8-aaf8-4a419aa9eb42", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "name": [ "MITOTIC G1 PHASE AND G1 S TRANSITION%REACTOME DATABASE ID RELEASE 81%453279" ], "description": [ "Mitotic G1 phase and G1 S transition" ], "pvalue": 0, "gs_type": null, "gs_size": 148, "padj": 0.0005, "mcode_cluster_id": "Cluster 1", "NES": -1.7749, "genes": [ "ABL1", "AKT1", "AKT2", "AKT3", "CABLES1", "CCNA1", "CCNA2", "CCNB1", "CCND1", "CCND2", "CCND3", "CCNE1", "CCNE2", "CCNH", "CDC25A", "CDC45", "CDC6", "CDC7", "CDK1", "CDK2", "CDK4", "CDK6", "CDK7", "CDKN1A", "CDKN1B", "CDKN1C", "CDKN2A", "CDKN2B", "CDKN2C", "CDKN2D", "CDT1", "CKS1B", "CUL1", "DBF4", "DHFR", "DYRK1A", "E2F1", "E2F2", "E2F3", "E2F4", "E2F5", "E2F6", "FBXO5", "GMNN", "HDAC1", "JAK2", "LIN37", "LIN52", "LIN54", "LIN9", "LYN", "MAX", "MCM10", "MCM2", "MCM3", "MCM4", "MCM5", "MCM6", "MCM7", "MCM8", "MNAT1", "MYBL2", "MYC", "ORC1", "ORC2", "ORC3", "ORC4", "ORC5", "ORC6", "PCNA", "POLA1", "POLA2", "POLE", "POLE2", "POLE3", "POLE4", "PPP2CA", "PPP2CB", "PPP2R1A", "PPP2R1B", "PPP2R2A", "PPP2R3B", "PRIM1", "PRIM2", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMB1", "PSMB10", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSMF1", "PTK6", "RB1", "RBBP4", "RBL1", "RBL2", "RPA1", "RPA2", "RPA3", "RPA4", "RPS27A", "RRM2", "SEM1", "SKP1", "SKP2", "TFDP1", "TFDP2", "TK1", "TOP2A", "TYMS", "UBA52", "UBB", "UBC", "WEE1" ] }, "position": { "x": 505.6611576571265, "y": 798.3609994324349, "id": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "df0cf914-b040-48b9-a651-958f8d369fc3", "name": [ "BIOCARTA_HIVNEF_PATHWAY%MSIGDB_C2%BIOCARTA_HIVNEF_PATHWAY" ], "description": [ "BIOCARTA_HIVNEF_PATHWAY" ], "pvalue": 0.0043, "gs_type": null, "gs_size": 42, "padj": 0.0454, "mcode_cluster_id": "Cluster 35", "NES": -1.6153, "genes": [ "ACTG1", "APAF1", "ARHGDIB", "BAG4", "BCL2", "BIRC2", "BIRC3", "CASP2", "CASP3", "CASP6", "CASP8", "CASP9", "CDK11A", "CHUK", "CRADD", "DFFA", "DFFB", "DKFZp686J04131", "FADD", "FAS", "LMNA", "LMNB2", "MAP3K1", "MAP3K5", "MAPK8", "MDM2", "NFKB1", "NFKBIA", "PARP1", "PRKDC", "PSEN1", "PSEN2", "RB1", "RELA", "RIPK1", "TNF", "TNFRSF1A", "TNFRSF1B", "TNFSF6", "TRADD", "TRAF1", "TRAF2" ] }, "position": { "x": 274.2814443965219, "y": 1864.741582271073, "id": "df0cf914-b040-48b9-a651-958f8d369fc3", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "1dd7fb96-6b26-46d2-9c0f-6725041d9cc8", "name": [ "HIF-1-ALPHA TRANSCRIPTION FACTOR NETWORK%PATHWAY INTERACTION DATABASE NCI-NATURE CURATED DATA%HIF-1-ALPHA TRANSCRIPTION FACTOR NETWORK" ], "description": [ "HIF-1-alpha transcription factor network" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 66, "padj": 0.0021, "mcode_cluster_id": null, "NES": 1.9226, "genes": [ "ABCB1", "ABCG2", "ADM", "AKT1", "ALDOA", "ARNT", "BHLHE40", "BHLHE41", "BNIP3", "CA9", "CITED2", "COPS5", "CP", "CREB1", "CREBBP", "CXCL12", "CXCR4", "EDN1", "EGLN1", "EGLN3", "ENG", "ENO1", "EP300", "EPO", "ETS1", "FECH", "FOS", "FURIN", "GATA2", "GCK", "HDAC7", "HIF1A", "HK1", "HK2", "HMOX1", "HNF4A", "ID2", "IGFBP1", "ITGB2", "JUN", "LDHA", "LEP", "MCL1", "NCOA1", "NCOA2", "NDRG1", "NOS2", "NPM1", "NT5E", "PFKFB3", "PFKL", "PGK1", "PGM1", "PKM", "PLIN2", "RORA", "SERPINE1", "SLC2A1", "SMAD3", "SMAD4", "SP1", "TERT", "TF", "TFF3", "TFRC", "VEGFA" ] }, "position": { "x": 3610.539072651805, "y": 2118.9446642487483, "id": "1dd7fb96-6b26-46d2-9c0f-6725041d9cc8" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "name": [ "APC C:CDC20 MEDIATED DEGRADATION OF SECURIN%REACTOME%R-HSA-174154.4" ], "description": [ "APC C:Cdc20 mediated degradation of Securin" ], "pvalue": 0.0000016701, "gs_type": null, "gs_size": 68, "padj": 0.0001, "mcode_cluster_id": "Cluster 1", "NES": -2.0341, "genes": [ "ANAPC1", "ANAPC10", "ANAPC11", "ANAPC15", "ANAPC16", "ANAPC2", "ANAPC4", "ANAPC5", "ANAPC7", "CDC16", "CDC20", "CDC23", "CDC26", "CDC27", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "PTTG1", "RPS27A", "SEM1", "UBA52", "UBB", "UBC", "UBE2C", "UBE2D1", "UBE2E1", "UBE2S" ] }, "position": { "x": 439.7198780705578, "y": 791.2931063052968, "id": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "724b736d-2cbf-4933-8e53-32614c9a7d66", "name": [ "TYPE I INTERFERON-MEDIATED SIGNALING PATHWAY%GOBP%GO:0060337" ], "description": [ "type I interferon-mediated signaling pathway" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 38, "padj": 0.0016, "mcode_cluster_id": "Cluster 18", "NES": -2.0344, "genes": [ "AZI2", "HDAC4", "IFI27", "IFITM1", "IFITM2", "IFITM3", "IFNA10", "IFNA13", "IFNA14", "IFNA16", "IFNA17", "IFNA2", "IFNA21", "IFNA4", "IFNA5", "IFNA6", "IFNA7", "IFNA8", "IFNAR1", "IFNAR2", "IFNB1", "IFNE", "IFNK", "IFNW1", "IKBKE", "IRAK1", "JAK1", "MAVS", "MYD88", "OAS2", "SP100", "STAT1", "STAT2", "TANK", "TBK1", "TBKBP1", "TRAF3", "TYK2" ] }, "position": { "x": 399.04833669466177, "y": 1522.2381962663626, "id": "724b736d-2cbf-4933-8e53-32614c9a7d66", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "cde86e54-05fe-4896-9fe5-29601fdda15c", "name": [ "HUMORAL IMMUNE RESPONSE%GOBP%GO:0006959" ], "description": [ "humoral immune response" ], "pvalue": 0.0009, "gs_type": null, "gs_size": 224, "padj": 0.014, "mcode_cluster_id": null, "NES": -1.6702, "genes": [ "AIRE", "ALOX5", "ANG", "AZU1", "BCL2", "BLNK", "BPIFA1", "BST1", "C1QA", "C1QB", "C1QC", "C1R", "C2", "C3", "C4A", "C4B_2", "C6", "C7", "C8A", "C8B", "C9", "CAMP", "CCL1", "CCL11", "CCL13", "CCL14", "CCL15", "CCL16", "CCL17", "CCL18", "CCL19", "CCL2", "CCL20", "CCL21", "CCL22", "CCL23", "CCL24", "CCL25", "CCL26", "CCL3", "CCL3L3", "CCL4", "CCL4L2", "CCL5", "CCL7", "CCL8", "CCR6", "CD28", "CD81", "CD83", "CFB", "CFD", "CFH", "CFHR1", "CFHR2", "CFHR3", "CFHR4", "CFHR5", "CFP", "CLU", "COLEC10", "COLEC11", "CR1", "CR2", "CST9", "CST9L", "CST9LP1", "CTSG", "CX3CL1", "CXCL1", "CXCL10", "CXCL11", "CXCL13", "CXCL14", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "DEFA1B", "DEFA3", "DEFA4", "DEFA5", "DEFA6", "DEFB1", "DEFB118", "DEFB126", "DEFB127", "DEFB4B", "DMBT1", "EBI3", "ELANE", "F2", "FAM3A", "FAU", "FCMR", "FCN1", "FCN2", "FCN3", "FGA", "FGB", "FOXJ1", "GALP", "GAPDH", "GNLY", "GPI", "GPR183", "H2BC11", "H2BC12", "H2BC12L", "H2BC21", "H2BC8", "HLA-A", "HLA-DQB1", "HLA-DRB1", "HLA-E", "HMGN2", "HRG", "IFNA10", "IFNA13", "IFNA14", "IFNA16", "IFNA17", "IFNA2", "IFNA21", "IFNA4", "IFNA5", "IFNA6", "IFNA7", "IFNA8", "IFNB1", "IFNE", "IFNG", "IFNK", "IFNW1", "IGHA1", "IGHA2", "IGHE", "IGHG1", "IGHG2", "IGHG3", "IGHG4", "IGHM", "IGKV3-20", "IL36RN", "IL6", "IL7", "JCHAIN", "KRT1", "KRT6A", "LEAP2", "LTF", "LYZ", "MASP1", "MASP2", "MBL2", "MEF2C", "MS4A1", "MUC7", "NCR3LG1", "PDCD1", "PF4", "PF4V1", "PGLYRP1", "PGLYRP3", "PGLYRP4", "PI3", "PLA2G1B", "PLA2G6", "POU2AF1", "POU2F2", "PPBP", "PRSS2", "PRSS3", "PRTN3", "PSMB10", "RARRES2", "REG1A", "REG1B", "REG3A", "REG3G", "RGCC", "RNASE2", "RNASE3", "RNASE4", "RNASE6", "RNASE7", "ROMO1", "RPL30", "RPL39", "RPS19", "S100A12", "S100A7", "S100A9", "SEMG1", "SEMG2", "SLC11A1", "SLPI", "SPAG11A", "SPAG11B", "SPRR2A", "ST6GAL1", "TF", "TFE3", "TFEB", "TNFRSF21", "TRAF3IP2", "TREM1", "TREM2", "TSLP", "WFDC10A", "WFDC10B", "WFDC11", "WFDC12", "WFDC13", "WFDC2", "WFDC3", "WFDC5", "WFDC9", "XCL1", "XCL2", "YTHDF2", "ZP3" ] }, "position": { "x": 2955.6597578695214, "y": 468.1345625087748, "id": "cde86e54-05fe-4896-9fe5-29601fdda15c" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "name": [ "SCF-BETA-TRCP MEDIATED DEGRADATION OF EMI1%REACTOME%R-HSA-174113.5" ], "description": [ "SCF-beta-TrCP mediated degradation of Emi1" ], "pvalue": 0.0000061567, "gs_type": null, "gs_size": 55, "padj": 0.0002, "mcode_cluster_id": "Cluster 1", "NES": -2.0544, "genes": [ "BTRC", "CDC20", "CUL1", "FBXO5", "FZR1", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RPS27A", "SEM1", "SKP1", "UBA52", "UBB", "UBC" ] }, "position": { "x": 431.22919632910026, "y": 792.4508464450834, "id": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "7b97fe84-d7d6-4d93-a1cf-f13ab3c752ad", "name": [ "ANTIGEN PRESENTATION: FOLDING, ASSEMBLY AND PEPTIDE LOADING OF CLASS I MHC%REACTOME%R-HSA-983170.5" ], "description": [ "Antigen Presentation: Folding, assembly and peptide loading of class I MHC" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 29, "padj": 0.0056, "mcode_cluster_id": null, "NES": -1.9083, "genes": [ "ATG14", "B2M", "BECN1", "CALR", "CANX", "ERAP1", "ERAP2", "HLA-A", "HLA-B", "HLA-C", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "HSPA5", "PDIA3", "PIK3C3", "PIK3R4", "SAR1B", "SEC13", "SEC23A", "SEC24A", "SEC24B", "SEC24C", "SEC24D", "SEC31A", "TAP1", "TAP2", "TAPBP" ] }, "position": { "x": 1871.5734108223783, "y": 879.6821061345615, "id": "7b97fe84-d7d6-4d93-a1cf-f13ab3c752ad" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "5f92025b-69e4-49c0-928a-b39cf6a415ba", "name": [ "PID_TOLL_ENDOGENOUS_PATHWAY%MSIGDB_C2%PID_TOLL_ENDOGENOUS_PATHWAY" ], "description": [ "PID_TOLL_ENDOGENOUS_PATHWAY" ], "pvalue": 0.0004, "gs_type": null, "gs_size": 20, "padj": 0.0075, "mcode_cluster_id": null, "NES": -1.9826, "genes": [ "ARHA", "CD14", "CHUK", "HMGB1", "HSPD1", "IKBKB", "IKBKG", "IRAK1", "IRAK2", "IRAK4", "LY96", "MYD88", "S100A8", "S100A9", "TICAM1", "TIRAP", "TLR1", "TLR3", "TLR4", "VCAN" ] }, "position": { "x": 1512.801983648566, "y": 125.72979231743864, "id": "5f92025b-69e4-49c0-928a-b39cf6a415ba" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "f51d131b-43b5-4d51-9f96-badcdf70b67a", "name": [ "FIBRIN COMPLEMENT RECEPTOR 3 SIGNALING PATHWAY%WIKIPATHWAYS_20240410%WP4136%HOMO SAPIENS" ], "description": [ "Fibrin complement receptor 3 signaling pathway" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 36, "padj": 0.0027, "mcode_cluster_id": null, "NES": -1.9781, "genes": [ "ARHA", "CCL2", "CD14", "CHUK", "CXCL3", "FGA", "HEL-S-78p", "IF1DA1", "IKBKB", "IKBKG", "IL12B", "IL6", "IRAK1", "IRAK2", "IRAK4", "IRF3", "ITGAM", "LBP", "LY96", "MYD88", "NFKB1", "NOS2", "PLAT", "PLG", "REL", "RELA", "SRC", "SYK", "TICAM1", "TICAM2", "TIRAP", "TLR3", "TLR4", "TNF", "TRAF6", "TYROBP" ] }, "position": { "x": 1616.5365541615388, "y": 111.27938838882949, "id": "f51d131b-43b5-4d51-9f96-badcdf70b67a" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "f708fea1-8d4a-401f-84f2-32434b3fb235", "name": [ "MITOTIC SPINDLE CHECKPOINT%REACTOME%R-HSA-69618.4" ], "description": [ "Mitotic Spindle Checkpoint" ], "pvalue": 0.0024, "gs_type": null, "gs_size": 108, "padj": 0.031, "mcode_cluster_id": "Cluster 15", "NES": -1.5543, "genes": [ "AHCTF1", "ANAPC1", "ANAPC10", "ANAPC11", "ANAPC15", "ANAPC16", "ANAPC2", "ANAPC4", "ANAPC5", "ANAPC7", "B9D2", "BIRC5", "BUB1", "BUB1B", "BUB3", "CDC16", "CDC20", "CDC23", "CDC26", "CDC27", "CDCA8", "CENPA", "CENPC", "CENPE", "CENPF", "CENPH", "CENPI", "CENPK", "CENPL", "CENPM", "CENPN", "CENPO", "CENPP", "CENPQ", "CENPS", "CENPT", "CENPU", "CKAP5", "CLASP1", "CLASP2", "CLIP1", "DSN1", "DYNC1H1", "DYNC1I1", "DYNC1I2", "DYNC1LI1", "DYNC1LI2", "DYNLL1", "DYNLL2", "ERCC6L", "INCENP", "ITGB3BP", "KIF18A", "KIF2A", "KIF2B", "KIF2C", "KNL1", "KNTC1", "MAD1L1", "MAD2L1", "MAPRE1", "MIS12", "NDC80", "NDE1", "NDEL1", "NSL1", "NUDC", "NUF2", "NUP107", "NUP133", "NUP160", "NUP37", "NUP43", "NUP85", "PAFAH1B1", "PLK1", "PMF1", "PPP1CC", "PPP2CA", "PPP2CB", "PPP2R1A", "PPP2R1B", "PPP2R5A", "PPP2R5B", "PPP2R5C", "PPP2R5D", "PPP2R5E", "RANBP2", "RANGAP1", "RCC2", "RPS27", "SEC13", "SGO1", "SGO2", "SKA1", "SKA2", "SPC24", "SPC25", "SPDL1", "TAOK1", "UBE2C", "UBE2D1", "UBE2E1", "UBE2S", "XPO1", "ZW10", "ZWILCH", "ZWINT" ] }, "position": { "x": 606.7246705387801, "y": 1130.0745842238086, "id": "f708fea1-8d4a-401f-84f2-32434b3fb235", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "1ba7100c-b28c-4c35-80c8-e65013448d79", "name": [ "HH MUTANTS ABROGATE LIGAND SECRETION%REACTOME DATABASE ID RELEASE 81%5387390" ], "description": [ "Hh mutants abrogate ligand secretion" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 59, "padj": 0.0023, "mcode_cluster_id": "Cluster 1", "NES": -1.8797, "genes": [ "DERL2", "DHH", "ERLEC1", "HHAT", "IHH", "OS9", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RPS27A", "SEL1L", "SEM1", "SHH", "SYVN1", "UBA52", "UBB", "UBC", "VCP" ] }, "position": { "x": 443.24692784589087, "y": 768.5341387663242, "id": "1ba7100c-b28c-4c35-80c8-e65013448d79", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "1cc7f11e-1487-4f79-955d-9148f19ad171", "name": [ "RESPONSE TO TYPE II INTERFERON%GOBP%GO:0034341" ], "description": [ "response to type II interferon" ], "pvalue": 1.018e-7, "gs_type": null, "gs_size": 68, "padj": 0.0000061683, "mcode_cluster_id": null, "NES": -2.2421, "genes": [ "ACOD1", "AIF1", "AQP4", "BST2", "CALCOCO2", "CALM1", "CAMK2A", "CASP1", "CCL2", "CCL3", "CCL5", "CD47", "CD58", "CD74", "CIITA", "CITED1", "CRIPTO", "CXCL16", "CYP27B1", "DAPK1", "DAPK3", "EPRS1", "GAPDH", "GBP1", "GBP2", "GBP3", "GBP4", "GBP5", "GBP6", "GBP7", "GCH1", "HCK", "HLA-DPA1", "IFITM1", "IFITM2", "IFITM3", "IFNG", "IFNGR1", "IFNGR2", "IL12RB1", "IL23R", "IRF1", "IRF8", "JAK1", "JAK2", "KYNU", "LGALS9", "MEFV", "NUB1", "PDE12", "PIM1", "RAF1", "RPL13A", "SHFL", "SIRPA", "SLC11A1", "SLC22A5", "SLC26A6", "SNCA", "SP100", "STAT1", "SYNCRIP", "TLR2", "TLR4", "TRIM21", "TYK2", "UBD", "WNT5A" ] }, "position": { "x": 135.61309053232208, "y": 1981.9975082806777, "id": "1cc7f11e-1487-4f79-955d-9148f19ad171" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "c3828778-9b35-432c-b1e9-9483a29fb80e", "name": [ "M PHASE%REACTOME%R-HSA-68886.5" ], "description": [ "M Phase" ], "pvalue": 0.0000023867, "gs_type": null, "gs_size": 374, "padj": 0.0001, "mcode_cluster_id": "Cluster 15", "NES": -1.6477, "genes": [ "AAAS", "ACTR1A", "AHCTF1", "AKAP9", "ALMS1", "ANAPC1", "ANAPC10", "ANAPC11", "ANAPC15", "ANAPC16", "ANAPC2", "ANAPC4", "ANAPC5", "ANAPC7", "ANKLE2", "ARPP19", "B9D2", "BANF1", "BIRC5", "BLZF1", "BUB1", "BUB1B", "BUB3", "CC2D1B", "CCNB1", "CCNB2", "CCP110", "CDC16", "CDC20", "CDC23", "CDC26", "CDC27", "CDCA5", "CDCA8", "CDK1", "CDK5RAP2", "CENPA", "CENPC", "CENPE", "CENPF", "CENPH", "CENPI", "CENPJ", "CENPK", "CENPL", "CENPM", "CENPN", "CENPO", "CENPP", "CENPQ", "CENPS", "CENPT", "CENPU", "CEP131", "CEP135", "CEP152", "CEP164", "CEP192", "CEP250", "CEP290", "CEP41", "CEP43", "CEP57", "CEP63", "CEP70", "CEP72", "CEP76", "CEP78", "CETN2", "CHMP2A", "CHMP2B", "CHMP3", "CHMP4A", "CHMP4B", "CHMP4C", "CHMP6", "CHMP7", "CKAP5", "CLASP1", "CLASP2", "CLIP1", "CNEP1R1", "CNTRL", "CSNK1D", "CSNK1E", "CSNK2A1", "CSNK2A2", "CSNK2B", "CTDNEP1", "DCTN2", "DCTN3", "DSN1", "DYNC1H1", "DYNC1I1", "DYNC1I2", "DYNC1LI1", "DYNC1LI2", "DYNLL1", "DYNLL2", "EMD", "EML4", "ENSA", "ERCC6L", "ESPL1", "FBXO5", "FIRRM", "GOLGA2", "GORASP1", "GORASP2", "H2AB1", "H2AC14", "H2AC19", "H2AC20", "H2AC7", "H2AC8", "H2AJ", "H2AX", "H2AZ2", "H2BC1", "H2BC11", "H2BC12", "H2BC12L", "H2BC13", "H2BC14", "H2BC15", "H2BC17", "H2BC21", "H2BC26", "H2BC3", "H2BC5", "H2BC8", "H2BC9", "H3-3B", "H3-4", "H3C15", "H3C8", "H4C9", "HAUS1", "HAUS2", "HAUS3", "HAUS4", "HAUS5", "HAUS6", "HAUS7", "HAUS8", "HSP90AA1", "INCENP", "IST1", "ITGB3BP", "KIF18A", "KIF20A", "KIF23", "KIF2A", "KIF2B", "KIF2C", "KMT5A", "KNL1", "KNTC1", "KPNB1", "LBR", "LEMD2", "LEMD3", "LMNB1", "LPIN1", "LPIN2", "LPIN3", "MAD1L1", "MAD2L1", "MAPK1", "MAPRE1", "MASTL", "MAU2", "MCPH1", "MIS12", "MZT1", "MZT2A", "MZT2B", "NCAPD2", "NCAPD3", "NCAPG", "NCAPG2", "NCAPH", "NCAPH2", "NDC1", "NDC80", "NDE1", "NDEL1", "NEDD1", "NEK2", "NEK6", "NEK7", "NEK9", "NINL", "NIPBL", "NME7", "NSL1", "NUDC", "NUF2", "NUMA1", "NUP107", "NUP133", "NUP153", "NUP155", "NUP160", "NUP188", "NUP205", "NUP210", "NUP214", "NUP35", "NUP37", "NUP42", "NUP43", "NUP50", "NUP54", "NUP62", "NUP85", "NUP88", "NUP93", "ODF2", "OFD1", "PAFAH1B1", "PCM1", "PCNT", "PDS5A", "PDS5B", "PLK1", "PLK4", "PMF1", "POM121", "POM121C", "PPP1CC", "PPP2CA", "PPP2CB", "PPP2R1A", "PPP2R1B", "PPP2R2A", "PPP2R2D", "PPP2R5A", "PPP2R5B", "PPP2R5C", "PPP2R5D", "PPP2R5E", "PRKACA", "PRKAR2B", "PRKCA", "PRKCB", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "PTTG1", "RAB1A", "RAB1B", "RAB2A", "RAD21", "RAE1", "RAN", "RANBP2", "RANGAP1", "RB1", "RCC1", "RCC2", "RPS27", "RPS27A", "SDCCAG8", "SEC13", "SEM1", "SET", "SFI1", "SGO1", "SGO2", "SIRT2", "SKA1", "SKA2", "SMC1A", "SMC2", "SMC3", "SMC4", "SPAST", "SPC24", "SPC25", "SPDL1", "SSNA1", "STAG1", "STAG2", "SUMO1", "TAOK1", "TNPO1", "TPR", "TUBA1A", "TUBA1B", "TUBA1C", "TUBA3C", "TUBA3D", "TUBA3E", "TUBA4A", "TUBA4B", "TUBA8", "TUBAL3", "TUBB", "TUBB1", "TUBB2A", "TUBB2B", "TUBB3", "TUBB4A", "TUBB4B", "TUBB6", "TUBB8", "TUBB8B", "TUBG1", "TUBG2", "TUBGCP2", "TUBGCP3", "TUBGCP4", "TUBGCP5", "TUBGCP6", "UBA52", "UBB", "UBC", "UBE2C", "UBE2D1", "UBE2E1", "UBE2I", "UBE2S", "USO1", "VPS4A", "VRK1", "WAPL", "XPO1", "YWHAE", "YWHAG", "ZW10", "ZWILCH", "ZWINT" ] }, "position": { "x": 622.6648488102235, "y": 1045.8795276989201, "id": "c3828778-9b35-432c-b1e9-9483a29fb80e", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "name": [ "PROTEIN SYNTHESIS: VALINE%PATHWHIZ%PW120528" ], "description": [ "Protein Synthesis: Valine" ], "pvalue": 8.0823e-18, "gs_type": null, "gs_size": 80, "padj": 1.8806e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.8109, "genes": [ "FAU", "RACK1", "RPL10", "RPL10A", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "UBA52", "VARS1" ] }, "position": { "x": 1022.0433056993616, "y": 525.3951298482298, "id": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "name": [ "APC:CDC20 MEDIATED DEGRADATION OF CELL CYCLE PROTEINS PRIOR TO SATISFATION OF THE CELL CYCLE CHECKPOINT%REACTOME%R-HSA-179419.4" ], "description": [ "APC:Cdc20 mediated degradation of cell cycle proteins prior to satisfation of the cell cycle checkpoint" ], "pvalue": 0.0000011821, "gs_type": null, "gs_size": 74, "padj": 0.0001, "mcode_cluster_id": "Cluster 1", "NES": -2.0679, "genes": [ "ANAPC1", "ANAPC10", "ANAPC11", "ANAPC15", "ANAPC16", "ANAPC2", "ANAPC4", "ANAPC5", "ANAPC7", "BUB1B", "BUB3", "CCNA1", "CCNA2", "CDC16", "CDC20", "CDC23", "CDC26", "CDC27", "CDK1", "MAD2L1", "NEK2", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RPS27A", "SEM1", "UBA52", "UBB", "UBC", "UBE2C", "UBE2D1", "UBE2E1", "UBE2S" ] }, "position": { "x": 475.7876485262168, "y": 808.8141402460354, "id": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "b04fa36f-a0b1-4875-b150-645a41433dec", "name": [ "CELL SURFACE TOLL-LIKE RECEPTOR SIGNALING PATHWAY%GOBP%GO:0140895" ], "description": [ "cell surface toll-like receptor signaling pathway" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 33, "padj": 0.0056, "mcode_cluster_id": "Cluster 20", "NES": -1.9268, "genes": [ "CD14", "CHUK", "ECSIT", "IRAK1", "IRAK2", "IRAK4", "IRF3", "LGALS9", "LY96", "MAP3K7", "MYD88", "NFKBIA", "NMI", "OAS1", "PIK3AP1", "PRKCE", "RAB11FIP2", "RELA", "RIPK2", "S100A14", "SCIMP", "TBK1", "TICAM1", "TICAM2", "TIRAP", "TLR2", "TLR4", "TLR5", "TNIP2", "TNIP3", "TRAF3", "TRAF6", "TRIL" ] }, "position": { "x": 1677.5316381764578, "y": 308.15329769637316, "id": "b04fa36f-a0b1-4875-b150-645a41433dec", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "766be637-c201-4e9d-824b-6272fd58cd21", "name": [ "BETA-CATENIN INDEPENDENT WNT SIGNALING%REACTOME%R-HSA-3858494.5" ], "description": [ "Beta-catenin independent WNT signaling" ], "pvalue": 0.0025, "gs_type": null, "gs_size": 143, "padj": 0.0315, "mcode_cluster_id": "Cluster 1", "NES": -1.5205, "genes": [ "AGO1", "AGO2", "AGO3", "AGO4", "AP2A1", "AP2A2", "AP2B1", "AP2M1", "AP2S1", "ARRB2", "CALM1", "CAMK2A", "CLTA", "CLTB", "CLTC", "CTNNB1", "DAAM1", "DVL1", "DVL2", "DVL3", "FZD1", "FZD2", "FZD3", "FZD4", "FZD5", "FZD6", "FZD7", "FZD8", "GNAO1", "GNAT2", "GNB1", "GNB2", "GNB3", "GNB4", "GNB5", "GNG10", "GNG11", "GNG12", "GNG13", "GNG2", "GNG3", "GNG4", "GNG5", "GNG7", "GNG8", "GNGT1", "GNGT2", "ITPR1", "ITPR2", "ITPR3", "LEF1", "MAP3K7", "MOV10", "NFATC1", "NLK", "PARD6A", "PDE6A", "PDE6B", "PDE6G", "PFN1", "PLCB1", "PLCB2", "PLCB3", "PPP3CA", "PPP3CB", "PPP3R1", "PRICKLE1", "PRKCA", "PRKCB", "PRKCG", "PRKG1", "PRKG2", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RAC1", "RAC2", "RAC3", "RHOA", "ROR1", "ROR2", "RPS27A", "RYK", "SCRIB", "SEM1", "SMURF1", "SMURF2", "TCF7", "TCF7L1", "TCF7L2", "TNRC6A", "TNRC6B", "TNRC6C", "UBA52", "UBB", "UBC", "VANGL2", "WNT1", "WNT11", "WNT4", "WNT5A", "WNT5B" ] }, "position": { "x": 498.6437827110558, "y": 781.6961060796132, "id": "766be637-c201-4e9d-824b-6272fd58cd21", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "name": [ "UBIQUITIN MEDIATED DEGRADATION OF PHOSPHORYLATED CDC25A%REACTOME%R-HSA-69601.5" ], "description": [ "Ubiquitin Mediated Degradation of Phosphorylated Cdc25A" ], "pvalue": 0, "gs_type": null, "gs_size": 52, "padj": 0.0006, "mcode_cluster_id": "Cluster 1", "NES": -2.0195, "genes": [ "CDC25A", "CHEK1", "CHEK2", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RPS27A", "SEM1", "UBA52", "UBB", "UBC" ] }, "position": { "x": 439.1898642939015, "y": 801.144203132833, "id": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "name": [ "RRNA PROCESSING%REACTOME DATABASE ID RELEASE 81%72312" ], "description": [ "rRNA processing" ], "pvalue": 1.4992e-9, "gs_type": null, "gs_size": 203, "padj": 1.2458e-7, "mcode_cluster_id": "Cluster 2", "NES": 2.012, "genes": [ "BMS1", "BOP1", "BUD23", "BYSL", "C1D", "CSNK1D", "CSNK1E", "DCAF13", "DDX21", "DDX47", "DDX49", "DDX52", "DHX37", "DIMT1", "DIS3", "DKC1", "EBNA1BP2", "ELAC2", "EMG1", "ERI1", "EXOSC1", "EXOSC10", "EXOSC2", "EXOSC3", "EXOSC4", "EXOSC5", "EXOSC6", "EXOSC7", "EXOSC8", "EXOSC9", "FAU", "FBL", "FCF1", "FTSJ3", "GAR1", "GNL3", "HEATR1", "HSD17B10", "IMP3", "IMP4", "ISG20L2", "KRR1", "LAS1L", "LTV1", "MPHOSPH10", "MPHOSPH6", "MRM1", "MRM2", "MRM3", "MTERF4", "MTREX", "NAT10", "NCL", "NHP2", "NIP7", "NOB1", "NOC4L", "NOL11", "NOL12", "NOL6", "NOL9", "NOP10", "NOP14", "NOP2", "NOP56", "NOP58", "NSUN4", "PDCD11", "PELP1", "PES1", "PNO1", "PRORP", "PWP2", "RBM28", "RCL1", "RIOK1", "RIOK2", "RIOK3", "RPL10", "RPL10A", "RPL10L", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL22L1", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL26L1", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL36AL", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL39L", "RPL3L", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPP14", "RPP21", "RPP25", "RPP30", "RPP38", "RPP40", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "RRP1", "RRP36", "RRP7A", "RRP9", "SENP3", "SNU13", "TBL3", "TEX10", "TFB1M", "THUMPD1", "TRMT10C", "TRMT112", "TSR1", "TSR3", "UBA52", "UTP11", "UTP14A", "UTP14C", "UTP15", "UTP18", "UTP20", "UTP25", "UTP3", "UTP4", "UTP6", "WDR12", "WDR18", "WDR3", "WDR36", "WDR43", "WDR46", "WDR75", "XRN2" ] }, "position": { "x": 1067.9995944291873, "y": 393.3527739038377, "id": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "name": [ "CYTOPLASMIC TRANSLATION%GOBP%GO:0002181" ], "description": [ "cytoplasmic translation" ], "pvalue": 3.2351e-16, "gs_type": null, "gs_size": 126, "padj": 4.182e-14, "mcode_cluster_id": "Cluster 2", "NES": 2.5862, "genes": [ "DENR", "DHX29", "DRG1", "DRG2", "EIF2B1", "EIF2B2", "EIF2B3", "EIF2B4", "EIF2B5", "EIF2D", "EIF2S2", "EIF2S3", "EIF2S3B", "EIF3A", "EIF3B", "EIF3C", "EIF3D", "EIF3E", "EIF3F", "EIF3G", "EIF3H", "EIF3I", "EIF3J", "EIF3K", "EIF3L", "EIF3M", "EIF4A1", "EIF4A2", "EIF4G1", "ETF1", "FAU", "FTSJ1", "GTPBP1", "MCTS1", "MCTS2", "MIF4GD", "NCBP1", "NCBP2", "NEMF", "RACK1", "RBM4", "RPL10", "RPL10A", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL22L1", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL26L1", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP0P6", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "RWDD1", "SARS1", "SLBP", "UBA52", "ZC3H15" ] }, "position": { "x": 981.1781788875751, "y": 361.7082906223198, "id": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "fb423d6b-dc3c-400a-8cb4-cfcf5aea4500", "name": [ "LOCOMOTION%GOBP%GO:0040011" ], "description": [ "locomotion" ], "pvalue": 0, "gs_type": null, "gs_size": 267, "padj": 0.0008, "mcode_cluster_id": "Cluster 7", "NES": -1.7506, "genes": [ "ABCC1", "ACKR2", "ACKR3", "ACKR4", "ADAM8", "ADGRE2", "AGTR1", "ALOX5", "ANGPT1", "ANXA1", "APOA1", "ARHGEF16", "ARPIN", "ARRB2", "ATP1A2", "AZU1", "BCAR1", "BIN2", "BSG", "C5", "C5AR1", "CALCA", "CCL1", "CCL11", "CCL13", "CCL14", "CCL15", "CCL16", "CCL17", "CCL18", "CCL19", "CCL2", "CCL20", "CCL21", "CCL22", "CCL23", "CCL24", "CCL25", "CCL26", "CCL27", "CCL28", "CCL3", "CCL3L3", "CCL4", "CCL4L2", "CCL5", "CCL7", "CCL8", "CCN3", "CCR1", "CCR10", "CCR2", "CCR3", "CCR4", "CCR5", "CCR6", "CCR7", "CCR8", "CCR9", "CCRL2", "CD300H", "CH25H", "CHGA", "CKLF", "CMKLR1", "CORO1A", "CORO1B", "CTSG", "CX3CL1", "CX3CR1", "CXADR", "CXCL1", "CXCL10", "CXCL11", "CXCL12", "CXCL13", "CXCL14", "CXCL16", "CXCL17", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "CXCR1", "CXCR2", "CXCR3", "CXCR4", "CXCR5", "CXCR6", "CYP7B1", "DEFA1B", "DEFB1", "DEFB103B", "DEFB104B", "DEFB109B", "DEFB110", "DEFB114", "DEFB130A", "DEFB130B", "DEFB133", "DEFB4B", "DOCK4", "EDN1", "EDN2", "EDN3", "EDNRB", "EGR3", "ELMO2", "ENPP2", "EPHA2", "EPHA7", "EPHB1", "FCER1G", "FER", "FES", "FFAR2", "FGF10", "FGF2", "FGF7", "FLT1", "FOLR2", "FOSL1", "FPR2", "GAB1", "GAS6", "GBF1", "GPNMB", "GPR15LG", "GPR183", "HBEGF", "HGF", "HMGB1", "HMGB2", "HOXB9", "HRAS", "HSD3B7", "IL10", "IL16", "IL6", "IL6R", "ITGAV", "ITGB2", "ITGB3", "JAML", "KIT", "L1CAM", "LEF1", "LGALS3", "LGR6", "LPAR1", "LRTM1", "LRTM2", "LTB4R2", "LYST", "MACO1", "MAP2K1", "MAPK1", "MAPK14", "MDK", "MET", "MSMP", "MT-RNR2", "NCKAP1L", "NINJ1", "NR4A1", "NRP1", "NTN1", "OR10J5", "PARVA", "PDE4B", "PDGFA", "PDGFB", "PDGFRA", "PDGFRB", "PF4", "PF4V1", "PIK3CB", "PIK3CD", "PIK3CG", "PIKFYVE", "PIP5K1A", "PIP5K1C", "PLA2G1B", "PLAU", "PLAUR", "PLD1", "PLEKHG5", "PLP2", "PLXNB3", "PPBP", "PPIA", "PPIB", "PRKCD", "PRKCQ", "PROK2", "PTGDR2", "PTN", "PTPRJ", "PTPRO", "RAB13", "RAC1", "RAC2", "RAC3", "RALA", "RALBP1", "RHOA", "RHOG", "RNASE2", "RNASE3", "ROBO1", "RPS19", "RYK", "S100A12", "S100A8", "S100A9", "S1PR1", "SAA1", "SBDS", "SCG2", "SCN1B", "SCRIB", "SEMA3A", "SEMA3B", "SEMA3C", "SEMA3D", "SEMA3E", "SEMA3F", "SEMA3G", "SEMA4A", "SEMA4B", "SEMA4C", "SEMA4D", "SEMA4F", "SEMA4G", "SEMA5A", "SEMA6A", "SEMA6B", "SEMA6C", "SEMA6D", "SEMA7A", "SFTPD", "SLAMF8", "SLC12A2", "SLIT1", "SLIT2", "SLIT3", "SPN", "SRP54", "SYK", "TAFA4", "TGFB2", "TNFRSF11A", "TNFSF11", "TREM1", "TRPM2", "TRPM4", "TSC2", "UNC5C", "VEGFA", "WDR1", "WNT5A", "WNT7B", "XCL1", "XCL2", "XCR1" ] }, "position": { "x": 3209.4974892587725, "y": 707.6249827618989, "id": "fb423d6b-dc3c-400a-8cb4-cfcf5aea4500", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "f599ae1c-4d20-4500-989d-7b17731a61e7", "name": [ "LNCRNA IN CANONICAL WNT SIGNALING AND COLORECTAL CANCER%WIKIPATHWAYS_20240410%WP4258%HOMO SAPIENS" ], "description": [ "lncRNA in canonical Wnt signaling and colorectal cancer" ], "pvalue": 0.0036, "gs_type": null, "gs_size": 83, "padj": 0.0409, "mcode_cluster_id": null, "NES": -1.5823, "genes": [ "APC2", "ATF3", "AXIN1", "AXIN2", "CCND1", "CCND2", "CCND3", "CDK6", "CDK8", "CER1", "CHD8", "CSNK1A1", "CSNK1A1L", "CSNK1E", "CSNK2A1", "CSNK2A2", "CSNK2A3", "CSNK2B", "CTBP1", "CTBP2", "CTNNB1", "CTNNBIP1", "CXXC4", "DKFZp586H0919", "DKK1", "DKK2", "DKK4", "DVL1", "DVL2", "DVL3", "EZH2", "FOSL1", "FRAT1", "FRAT2", "FZD1", "FZD10", "FZD2", "FZD3", "FZD5", "FZD7", "FZD8", "FZD9", "GSK3B", "HNRNPK", "JUN", "KREMEN1", "LRP5", "LRP6", "MACROH2A2", "MAP3K7", "MYC", "NKD1", "NKD2", "NLK", "NOTUM", "PORCN", "ROR1", "ROR2", "RUVBL1", "RYK", "SENP2", "SFRP1", "SFRP4", "SFRP5", "SOST", "SOX17", "TCF3", "TCF7L1", "TCF7L2", "TFAP2A", "WIF1", "WNT1", "WNT10A", "WNT10B", "WNT11", "WNT16", "WNT2B", "WNT3", "WNT3A", "WNT4", "WNT5B", "WNT7A", "WNT7B" ] }, "position": { "x": 1500.5, "y": 2195.9446642487483, "id": "f599ae1c-4d20-4500-989d-7b17731a61e7" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "acadba02-9785-4847-8c7f-2e729f4dc48a", "name": [ "REGULATION OF STEM CELL DIFFERENTIATION%GOBP%GO:2000736" ], "description": [ "regulation of stem cell differentiation" ], "pvalue": 0.0005, "gs_type": null, "gs_size": 62, "padj": 0.0089, "mcode_cluster_id": null, "NES": -1.7709, "genes": [ "ABL1", "BMPR1A", "CHD3", "CHD4", "DHX36", "EIF2AK2", "ESRRB", "FOXC1", "FZD1", "GATAD2A", "GATAD2B", "GDNF", "GSK3B", "HDAC1", "HDAC2", "HES1", "HES5", "HNRNPU", "HOXB4", "ITCH", "JAG1", "KAT5", "LTBP3", "MBD3", "METTL3", "MTA1", "MTA2", "MTA3", "MTCH2", "N4BP2L2", "NELFB", "NKX2-5", "NOTCH1", "NSUN2", "NUDT21", "OCIAD1", "OSM", "PDGFRA", "PRICKLE1", "PRKDC", "PTN", "PUS7", "RBBP4", "RBBP7", "RBM24", "REST", "SETD1A", "SIRT6", "SLC4A11", "SMYD5", "SOX5", "SOX6", "SOX9", "SP7", "TACSTD2", "TBX5", "TCF15", "TGFB2", "TGFBR2", "WNT3", "YTHDF2", "ZFP36L2" ] }, "position": { "x": 730.5, "y": 2272.9446642487483, "id": "acadba02-9785-4847-8c7f-2e729f4dc48a" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "0a98c49d-d1c0-46f9-9b40-1998ea452849", "name": [ "TAXIS%GOBP%GO:0042330" ], "description": [ "taxis" ], "pvalue": 0, "gs_type": null, "gs_size": 263, "padj": 0.0007, "mcode_cluster_id": "Cluster 7", "NES": -1.7472, "genes": [ "ABCC1", "ACKR2", "ACKR3", "ACKR4", "ADAM8", "ADGRE2", "AGTR1", "ALOX5", "ANGPT1", "ANXA1", "APOA1", "ARHGEF16", "ARRB2", "AZU1", "BCAR1", "BIN2", "BSG", "C5", "C5AR1", "CALCA", "CCL1", "CCL11", "CCL13", "CCL14", "CCL15", "CCL16", "CCL17", "CCL18", "CCL19", "CCL2", "CCL20", "CCL21", "CCL22", "CCL23", "CCL24", "CCL25", "CCL26", "CCL27", "CCL28", "CCL3", "CCL3L3", "CCL4", "CCL4L2", "CCL5", "CCL7", "CCL8", "CCN3", "CCR1", "CCR10", "CCR2", "CCR3", "CCR4", "CCR5", "CCR6", "CCR7", "CCR8", "CCR9", "CCRL2", "CD300H", "CH25H", "CHGA", "CKLF", "CMKLR1", "CORO1A", "CORO1B", "CTSG", "CX3CL1", "CX3CR1", "CXADR", "CXCL1", "CXCL10", "CXCL11", "CXCL12", "CXCL13", "CXCL14", "CXCL16", "CXCL17", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "CXCR1", "CXCR2", "CXCR3", "CXCR4", "CXCR5", "CXCR6", "CYP7B1", "DEFA1B", "DEFB1", "DEFB103B", "DEFB104B", "DEFB109B", "DEFB110", "DEFB114", "DEFB130A", "DEFB130B", "DEFB133", "DEFB4B", "DOCK4", "EDN1", "EDN2", "EDN3", "EDNRB", "EGR3", "ELMO2", "ENPP2", "EPHA2", "EPHA7", "EPHB1", "FCER1G", "FER", "FES", "FFAR2", "FGF10", "FGF2", "FGF7", "FLT1", "FOLR2", "FOSL1", "FPR2", "GAB1", "GAS6", "GBF1", "GPNMB", "GPR15LG", "GPR183", "HBEGF", "HGF", "HMGB1", "HMGB2", "HOXB9", "HRAS", "HSD3B7", "IL10", "IL16", "IL6", "IL6R", "ITGAV", "ITGB2", "ITGB3", "JAML", "KIT", "L1CAM", "LEF1", "LGALS3", "LGR6", "LPAR1", "LRTM1", "LRTM2", "LTB4R2", "LYST", "MACO1", "MAP2K1", "MAPK1", "MAPK14", "MDK", "MET", "MSMP", "MT-RNR2", "NCKAP1L", "NINJ1", "NR4A1", "NRP1", "NTN1", "OR10J5", "PARVA", "PDE4B", "PDGFA", "PDGFB", "PDGFRA", "PDGFRB", "PF4", "PF4V1", "PIK3CB", "PIK3CD", "PIK3CG", "PIKFYVE", "PIP5K1A", "PIP5K1C", "PLA2G1B", "PLAU", "PLAUR", "PLD1", "PLEKHG5", "PLP2", "PLXNB3", "PPBP", "PPIA", "PPIB", "PRKCD", "PRKCQ", "PROK2", "PTGDR2", "PTN", "PTPRJ", "PTPRO", "RAB13", "RAC1", "RAC2", "RAC3", "RALA", "RALBP1", "RHOA", "RHOG", "RNASE2", "RNASE3", "ROBO1", "RPS19", "RYK", "S100A12", "S100A8", "S100A9", "S1PR1", "SAA1", "SBDS", "SCG2", "SCRIB", "SEMA3A", "SEMA3B", "SEMA3C", "SEMA3D", "SEMA3E", "SEMA3F", "SEMA3G", "SEMA4A", "SEMA4B", "SEMA4C", "SEMA4D", "SEMA4F", "SEMA4G", "SEMA5A", "SEMA6A", "SEMA6B", "SEMA6C", "SEMA6D", "SEMA7A", "SFTPD", "SLAMF8", "SLC12A2", "SLIT1", "SLIT2", "SLIT3", "SPN", "SRP54", "SYK", "TAFA4", "TGFB2", "TNFRSF11A", "TNFSF11", "TREM1", "TRPM2", "TRPM4", "TSC2", "UNC5C", "VEGFA", "WNT5A", "WNT7B", "XCL1", "XCL2", "XCR1" ] }, "position": { "x": 3255.622780404604, "y": 667.7209171328138, "id": "0a98c49d-d1c0-46f9-9b40-1998ea452849", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "68cf66f9-244d-463b-9077-ffa9d4e6032a", "name": [ "HALLMARK_ESTROGEN_RESPONSE_LATE%MSIGDBHALLMARK%HALLMARK_ESTROGEN_RESPONSE_LATE" ], "description": [ "HALLMARK_ESTROGEN_RESPONSE_LATE" ], "pvalue": 0.0023, "gs_type": null, "gs_size": 176, "padj": 0.03, "mcode_cluster_id": null, "NES": -1.5141, "genes": [ "ABHD2", "ACOX2", "ADD3", "AFF1", "AGR2", "ALDH3A2", "ALDH3B1", "AMFR", "ANXA9", "AREG", "ARL3", "ASCL1", "ASS1", "ATP2B4", "BAG1", "BATF", "BCL2", "BTG3", "CA12", "CACNA2D2", "CALCR", "CCN5", "CCND1", "CD44", "CDC20", "CDC6", "CELSR2", "CHPT1", "CHST8", "CISH", "CLIC3", "CXCL12", "CXCL14", "CXNC", "CYP26B1", "CYP4F11", "DCXR", "DHCR7", "DHRS2", "DLG5", "DNAJC1", "DUSP2", "DYNLT3", "EEIG1", "ELOVL5", "ETFB", "FABP5", "FARP1", "FDFT1", "FGFR3", "FKBP4", "FKBP5", "FLNB", "FOS", "FOXC1", "FRK", "GAL", "GINS2", "GLA", "GPER", "HEL-76", "HEL-S-10", "HEL-S-29", "HEL110", "HOMER2", "HPRT1", "HR", "HSPA4L", "HSPB8", "ID2", "IGFBP4", "IGSF1", "IL17RB", "IL6ST", "IMPA2", "ISG20", "ITPK1", "JAK1", "JDP1", "KCNK5b", "KIF20A", "KLF4", "KLK10", "KLNG", "KRT13", "KRT19", "LAMC2", "LARGE", "LLGL2", "LSR", "MAPK13", "MDK", "METTL3", "MICB", "MOCS2", "MST160", "MYB", "MYOF", "NAB2", "NBL1", "NCOR2", "NHERF1", "NMU", "NPY1R", "NXT1", "OLFM1", "OPN3", "OVOL2", "PAPSS2", "PCP4", "PDLIM3", "PDZK1", "PERP", "PGR", "PKP3", "PLAAT3", "PLAC1", "PLK4", "PLXNB1", "PPIF", "PRLR", "PRSS23", "PTGER3", "PTGES", "PTPN6", "RAB31", "RAPGEFL1", "RBBP8", "RET", "RNASEH2A", "RPS6KA2", "S100A9", "SCARB1", "SCNN1A", "SEMA3B", "SERPINA1", "SERPINA3", "SFN", "SGK1", "SIAH2", "SLC1A4", "SLC22A5", "SLC24A3", "SLC26A2", "SLC27A2", "SLC29A1", "SLC2A8", "SLC7A5", "SNX10", "SORD", "SOX3", "ST14", "ST6GALNAC2", "STIL", "SULT2B1", "TFAP2C", "TFF1", "TFF3", "TFPI2", "TH", "TIAM1", "TJP3", "TM4SF13", "TMPRSS3", "TNNC1", "TOB1", "TOP2A", "TPBG", "TPSAB1", "TRIM29", "UGDH", "WFS1", "XBP1", "XRCC3", "ZFP36", "hD53" ] }, "position": { "x": 1038.5, "y": 2195.9446642487483, "id": "68cf66f9-244d-463b-9077-ffa9d4e6032a" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "4f7e7bef-c5c4-4859-885c-568a3116ce05", "name": [ "ENDOLYSOSOMAL TOLL-LIKE RECEPTOR SIGNALING PATHWAY%GOBP%GO:0140894" ], "description": [ "endolysosomal toll-like receptor signaling pathway" ], "pvalue": 0.0043, "gs_type": null, "gs_size": 20, "padj": 0.0454, "mcode_cluster_id": null, "NES": -1.7782, "genes": [ "COLEC12", "EPG5", "IKBKB", "IRAK1", "IRAK4", "MAP3K7", "MYD88", "OAS1", "PIK3AP1", "RFTN1", "SCARA3", "SCIMP", "TICAM1", "TLR3", "TLR7", "TLR8", "TLR9", "TNIP2", "TRAF6", "UNC93B1" ] }, "position": { "x": 1455.0755090944085, "y": 538.4484062077311, "id": "4f7e7bef-c5c4-4859-885c-568a3116ce05" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "name": [ "EUKARYOTIC TRANSLATION TERMINATION%REACTOME%R-HSA-72764.6" ], "description": [ "Eukaryotic Translation Termination" ], "pvalue": 9.242e-16, "gs_type": null, "gs_size": 94, "padj": 1.1438e-13, "mcode_cluster_id": "Cluster 2", "NES": 2.6597, "genes": [ "APEH", "ETF1", "FAU", "GSPT1", "GSPT2", "N6AMT1", "RPL10", "RPL10A", "RPL10L", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL22L1", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL26L1", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL36AL", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL39L", "RPL3L", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "TRMT112", "UBA52" ] }, "position": { "x": 944.5539390639348, "y": 424.27082978824336, "id": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "868604a2-809b-43bf-97f8-7d956608ccae", "name": [ "NONSENSE-MEDIATED DECAY (NMD)%REACTOME%R-HSA-927802.4" ], "description": [ "Nonsense-Mediated Decay (NMD)" ], "pvalue": 2.3006e-13, "gs_type": null, "gs_size": 116, "padj": 2.4332e-11, "mcode_cluster_id": "Cluster 2", "NES": 2.4927, "genes": [ "CASC3", "DCP1A", "EIF4A3", "EIF4G1", "ETF1", "FAU", "GSPT1", "GSPT2", "MAGOH", "MAGOHB", "NCBP1", "NCBP2", "PABPC1", "PNRC2", "PPP2CA", "PPP2R1A", "PPP2R2A", "RBM8A", "RNPS1", "RPL10", "RPL10A", "RPL10L", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL22L1", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL26L1", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL36AL", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL39L", "RPL3L", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "SMG1", "SMG5", "SMG6", "SMG7", "SMG8", "SMG9", "UBA52", "UPF1", "UPF2", "UPF3A", "UPF3B" ] }, "position": { "x": 784.3362286632557, "y": 495.7665997760808, "id": "868604a2-809b-43bf-97f8-7d956608ccae", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "3555fae9-d98f-40ee-8932-0dd5b6cb5b3a", "name": [ "AMINO ACIDS REGULATE MTORC1%REACTOME%R-HSA-9639288.3" ], "description": [ "Amino acids regulate mTORC1" ], "pvalue": 0.0006, "gs_type": null, "gs_size": 55, "padj": 0.0097, "mcode_cluster_id": "Cluster 25", "NES": 1.8276, "genes": [ "ATP6V0B", "ATP6V0C", "ATP6V0D1", "ATP6V0D2", "ATP6V0E1", "ATP6V0E2", "ATP6V1A", "ATP6V1B1", "ATP6V1B2", "ATP6V1C1", "ATP6V1C2", "ATP6V1D", "ATP6V1E1", "ATP6V1E2", "ATP6V1F", "ATP6V1G1", "ATP6V1G2", "ATP6V1G3", "ATP6V1H", "BMT2", "CASTOR1", "CASTOR2", "DEPDC5", "FLCN", "FNIP1", "FNIP2", "ITFG2", "KICS2", "KPTN", "LAMTOR1", "LAMTOR2", "LAMTOR3", "LAMTOR4", "LAMTOR5", "MIOS", "MLST8", "MTOR", "NPRL2", "NPRL3", "RHEB", "RPTOR", "RRAGA", "RRAGB", "RRAGC", "RRAGD", "SEC13", "SEH1L", "SESN1", "SESN2", "SH3BP4", "SLC38A9", "SZT2", "TCIRG1", "WDR24", "WDR59" ] }, "position": { "x": 1286.4035534142185, "y": 107.67670932665229, "id": "3555fae9-d98f-40ee-8932-0dd5b6cb5b3a", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "df713d36-9b29-4758-98a5-5b6f138c3de6", "name": [ "POSITIVE REGULATION OF DEFENSE RESPONSE%GOBP%GO:0031349" ], "description": [ "positive regulation of defense response" ], "pvalue": 1.8365e-8, "gs_type": null, "gs_size": 369, "padj": 0.0000012871, "mcode_cluster_id": "Cluster 6", "NES": -1.8717, "genes": [ "ABCC1", "ACOD1", "ADAM8", "AGT", "AGTR1", "AIM2", "AKIRIN2", "ALPK1", "ANKRD17", "AP1G1", "APP", "ARG1", "BCL10", "BECN1", "BRCC3", "BTK", "C2CD4A", "C2CD4B", "CADM1", "CAMK2N1", "CARD8", "CASP1", "CASP12", "CASP4", "CASP5", "CASP6", "CAV1", "CCL1", "CCL3", "CCL5", "CCN4", "CCR2", "CCR7", "CD14", "CD160", "CD1D", "CD226", "CD274", "CD300LF", "CD36", "CD47", "CD81", "CEBPA", "CGAS", "CHUK", "CLEC4E", "CLEC6A", "CLEC7A", "CLPB", "COLEC10", "COLEC11", "COLEC12", "CPT1A", "CREB3L3", "CREBBP", "CRTAM", "CTSS", "CX3CL1", "CYBA", "CYLD", "DDT", "DDX3X", "DDX60", "DEFB114", "DHX33", "DHX58", "DHX9", "ECSIT", "EMILIN1", "EMILIN2", "EP300", "EPG5", "EREG", "ETS1", "F2RL1", "FADD", "FCN1", "FCN2", "FCN3", "FEM1A", "FFAR2", "FFAR3", "FLOT1", "FPR2", "FYN", "GBP2", "GBP5", "GDI1", "GPR4", "GPRC5B", "GPSM3", "GRN", "GRP", "GRPR", "GSDMD", "HCK", "HEXIM1", "HLA-E", "HLA-F", "HLA-G", "HMGB1", "HSP90AA1", "HSPA1A", "HSPA1B", "HSPD1", "HYAL2", "IFI16", "IFI35", "IFIH1", "IFNB1", "IFNG", "IFNK", "IKBKB", "IKBKE", "IL12A", "IL12B", "IL15", "IL16", "IL17RA", "IL18", "IL1B", "IL2", "IL21", "IL23A", "IL33", "IL6", "IL6ST", "INAVA", "IPO5", "IRAK1", "IRAK2", "IRAK3", "IRAK4", "IRF3", "IRF7", "IRGM", "ITCH", "KARS1", "KIR2DL4", "KIR2DS2", "KLK3", "KLK5", "KLK7", "KLRC1", "KLRC2", "KLRC3", "KLRC4", "KLRD1", "KLRK1", "LACC1", "LAMP1", "LBP", "LGALS1", "LGALS2", "LGALS9", "LILRA2", "LILRA5", "LPL", "LRCH4", "LRSAM1", "LTF", "LY96", "LYN", "MAP2K6", "MAP3K7", "MAPK13", "MAPK8", "MAPKAPK2", "MAPKAPK3", "MARK4", "MATR3", "MAVS", "MBL2", "MDK", "MEF2C", "MEFV", "MFHAS1", "MGST2", "MMP8", "MMRN2", "MNDA", "MYD88", "NAGK", "NAIP", "NAPEPLD", "NCR3", "NECTIN2", "NEK7", "NFKBIA", "NFKBIZ", "NINJ1", "NKG7", "NLRC4", "NLRC5", "NLRP1", "NLRP10", "NLRP12", "NLRP3", "NLRP6", "NMI", "NOD1", "NOD2", "NONO", "NPAS2", "NR1H3", "NUPR1", "OAS1", "OAS3", "OASL", "OPTN", "OSM", "OSMR", "OTULIN", "PAK1", "PAK2", "PAK3", "PARK7", "PARP9", "PDCD4", "PDE2A", "PGC", "PHB1", "PHB2", "PIK3AP1", "PJA2", "PLA2G2A", "PLA2G3", "PLA2G5", "PLA2G7", "PLCG2", "PLSCR1", "POLR3B", "POLR3C", "POLR3D", "POLR3F", "POLR3G", "PQBP1", "PRKCE", "PRKD1", "PRKDC", "PSPC1", "PTGER3", "PTGER4", "PTGS2", "PTPN22", "PUM1", "PUM2", "PVR", "PYCARD", "PYHIN1", "RAB11FIP2", "RAET1E", "RAET1G", "RASGRP1", "RASGRP4", "RBM14", "RBM47", "REG3G", "RELA", "RFTN1", "RIGI", "RIOK3", "RIPK1", "RIPK2", "RNF135", "RNF144A", "RNF185", "RNF31", "RNF34", "RPS19", "RPS6KA3", "RSAD2", "RTN4", "S100A12", "S100A14", "S100A8", "S100A9", "SCARA3", "SCIMP", "SERPINE1", "SETD4", "SFPQ", "SH2D1B", "SIGLEC16", "SLAMF6", "SLC15A3", "SLC15A4", "SLC19A1", "SLC46A2", "SNCA", "SNX4", "SPI1", "SRC", "STAP1", "STING1", "STMP1", "SYK", "TAB1", "TAFA3", "TASL", "TBK1", "TGFB1", "TICAM1", "TICAM2", "TIFA", "TIRAP", "TLR1", "TLR10", "TLR2", "TLR3", "TLR4", "TLR5", "TLR6", "TLR7", "TLR8", "TLR9", "TNF", "TNFAIP3", "TNFRSF11A", "TNFRSF1A", "TNFSF11", "TNFSF4", "TNIP1", "TNIP2", "TNIP3", "TOMM70", "TRADD", "TRAF3", "TRAF3IP3", "TRAF6", "TREM2", "TREML4", "TRIL", "TRIM15", "TRIM25", "TRIM3", "TRIM41", "TRIM5", "TRIM56", "TRIM6", "TRIM62", "TSLP", "TTBK1", "TXK", "TYROBP", "UBE2K", "UNC93B1", "USP15", "USP17L2", "USP27X", "USP29", "USP50", "VAMP7", "VAMP8", "WDFY1", "WNT5A", "XIAP", "XRCC5", "XRCC6", "YWHAE", "ZBP1", "ZCCHC3", "ZDHHC3", "ZDHHC4", "ZDHHC5", "ZDHHC9", "ZNFX1", "ZNRF1", "ZP3" ] }, "position": { "x": 1836.8433102806882, "y": 437.665235279241, "id": "df713d36-9b29-4758-98a5-5b6f138c3de6", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "df5b2c70-571f-4202-bb0f-8287cbeb8877", "name": [ "ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY%WIKIPATHWAYS_20240410%WP2118%HOMO SAPIENS" ], "description": [ "Arrhythmogenic right ventricular cardiomyopathy" ], "pvalue": 0.0033, "gs_type": null, "gs_size": 61, "padj": 0.0386, "mcode_cluster_id": null, "NES": -1.6946, "genes": [ "ACTG1", "ACTN1", "ACTN2", "ACTN4", "ATP2A2", "CACNA1C", "CACNA1F", "CACNA1S", "CACNA2D1", "CACNA2D2", "CACNA2D3", "CACNA2D4", "CACNB1", "CACNB3", "CACNB4", "CACNG1", "CACNG2", "CACNG3", "CACNG4", "CACNG5", "CACNG6", "CACNG7", "CACNG8", "CDH2", "CTNNA1", "CTNNA2", "CTNNA3", "CTNNB1", "CXNK2", "DAG1", "DKFZp586H0919", "DMD", "DSC2", "DSG2", "EMD", "ITGA1", "ITGA2", "ITGA2B", "ITGA4", "ITGA6", "ITGAV", "ITGB1", "ITGB3", "ITGB4", "ITGB5", "ITGB6", "ITGB7", "ITGB8", "JUP", "LMNA", "PKP2", "PS1TP5BP1", "RYR2", "SGCA", "SGCB", "SGCD", "SGCG", "SLC8A1", "TCF7L1", "TCF7L2", "tmp_locus_29" ] }, "position": { "x": 3040.5, "y": 2195.9446642487483, "id": "df5b2c70-571f-4202-bb0f-8287cbeb8877" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "7e298194-58ad-45b5-b229-6d116611b483", "name": [ "REGULATION OF CELL FATE COMMITMENT%GOBP%GO:0010453" ], "description": [ "regulation of cell fate commitment" ], "pvalue": 0.0022, "gs_type": null, "gs_size": 31, "padj": 0.0292, "mcode_cluster_id": null, "NES": -1.7922, "genes": [ "BMP4", "BRD2", "BRD4", "CHD3", "CHD4", "DKK1", "EP300", "ESRP1", "FGF2", "FZD7", "GATAD2A", "GATAD2B", "GDF3", "HDAC1", "HDAC2", "IL12B", "IL12RB1", "IL23A", "IL23R", "LOXL3", "MBD3", "MESP1", "MTA1", "MTA2", "MTA3", "OPA1", "RBBP4", "RBBP7", "SOX17", "TBX21", "WNT3A" ] }, "position": { "x": 205.61309053232208, "y": 2111.4446642487483, "id": "7e298194-58ad-45b5-b229-6d116611b483" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "27c263f6-1142-4b92-a30c-6f73616e7568", "name": [ "CELLULAR RESPONSE TO VIRUS%GOBP%GO:0098586" ], "description": [ "cellular response to virus" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 65, "padj": 0.0051, "mcode_cluster_id": null, "NES": -1.8667, "genes": [ "ARF1", "BAX", "CCL19", "CCL5", "CHUK", "CXCL10", "DDX3X", "EIF5A", "FMR1", "GBF1", "GSDME", "HIF1A", "HSP90AA1", "IFI6", "IFIH1", "IFNA10", "IFNA13", "IFNA14", "IFNA16", "IFNA17", "IFNA2", "IFNA21", "IFNA4", "IFNA5", "IFNA6", "IFNA7", "IFNA8", "IFNAR1", "IFNAR2", "IFNB1", "IFNE", "IFNG", "IFNGR1", "IFNGR2", "IFNK", "IFNL1", "IFNL2", "IFNL3", "IFNL4", "IFNLR1", "IFNW1", "IL10RB", "IL12A", "IL21", "IL6", "IRF3", "IRF5", "IRGM", "JAK1", "JAK2", "LGALS8", "LGALS9", "MAPK11", "MAPK14", "NLRP3", "OAS1", "POU2AF1", "POU2F2", "PYDC5", "RIOK3", "RRP1B", "TOMM70", "TYK2", "VWCE", "ZC3H12A" ] }, "position": { "x": 382.0552344084325, "y": 1731.8587965586644, "id": "27c263f6-1142-4b92-a30c-6f73616e7568" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "name": [ "PROTEIN SYNTHESIS: SERINE%PATHWHIZ%PW120517" ], "description": [ "Protein Synthesis: Serine" ], "pvalue": 7.3744e-18, "gs_type": null, "gs_size": 80, "padj": 1.8806e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.8129, "genes": [ "FAU", "RACK1", "RPL10", "RPL10A", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "SARS1", "UBA52" ] }, "position": { "x": 847.987358325287, "y": 361.1697591988139, "id": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "fe4479be-f924-48ff-805f-4beff3c1af98", "name": [ "FOREBRAIN GENERATION OF NEURONS%GOBP%GO:0021872" ], "description": [ "forebrain generation of neurons" ], "pvalue": 0.0041, "gs_type": null, "gs_size": 18, "padj": 0.0438, "mcode_cluster_id": null, "NES": 1.7823, "genes": [ "ATP7A", "DCT", "FGFR2", "HES1", "INHBA", "LHX6", "LHX8", "METTL14", "METTL3", "NDNF", "PLXNA3", "RAPGEF2", "SCYL2", "SEMA3E", "SHANK3", "TBR1", "ZMIZ1", "ZSWIM6" ] }, "position": { "x": 4149.539072651805, "y": 2118.9446642487483, "id": "fe4479be-f924-48ff-805f-4beff3c1af98" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "5342eef5-e3f3-4ed5-8155-200dd0997fbd", "name": [ "HALLMARK_ALLOGRAFT_REJECTION%MSIGDBHALLMARK%HALLMARK_ALLOGRAFT_REJECTION" ], "description": [ "HALLMARK_ALLOGRAFT_REJECTION" ], "pvalue": 0, "gs_type": null, "gs_size": 175, "padj": 0.0005, "mcode_cluster_id": null, "NES": -1.8378, "genes": [ "AARS1", "ABCE1", "ACHE", "ACVR2A", "B2M", "BCAT1", "BCL10", "BRCA1", "C2", "CARTPT", "CCL11", "CCL13", "CCL19", "CCL2", "CCL22", "CCL4", "CCL5", "CCL7", "CCND2", "CCND3", "CCR1", "CCR2", "CCR5", "CD1D", "CD2", "CD247", "CD3D", "CD3E", "CD3G", "CD40", "CD40LG", "CD47", "CD7", "CD74", "CD79A", "CD80", "CD8A", "CD8B1", "CD96", "CDKN2A", "CFP", "CRTAM", "CSF1", "CSK", "CTSS", "CXCL13", "CXCL9", "CXCR3", "DEGS1", "DKFZp451M2318", "DYRK3", "EGFR", "EIF3A", "EIF3D", "EIF3J", "EIF5A", "ELANE", "ELF4", "EREG", "F2", "F2R", "FAS", "FCGR2B", "FLNA", "FYB1", "GALNT1", "GBP2", "GPR65", "GZMA", "HCLS1", "HDAC9", "HEL-S-66", "HEL-S-71", "HIF1A", "HLA-A", "HLA-DMA", "HLA-DMB", "HLA-DOA", "HLA-DOB", "HLA-DQA1", "HLA-DRA", "HLA-E", "HLA-G", "ICOSLG", "IF2F", "IFNAR2", "IFNGR1", "IFNGR2", "IGSF6", "IKBKB", "IL10", "IL11", "IL12A", "IL12B", "IL12RB1", "IL13", "IL15", "IL16", "IL18", "IL18RAP", "IL1B", "IL2", "IL27RA", "IL2RA", "IL2RB", "IL2RG", "IL4", "IL6", "IL7", "IL9", "INHBA", "INHBB", "IRF4", "IRF7", "IRF8", "ITK", "KLRD1", "KRT1", "LCK", "LCP2", "LIF", "LTB", "LY86", "LYN", "MAP3K7", "MAP4K1", "MBL2", "MMP9", "MRPL3", "MTIF2", "NCF4", "NCK1", "NCR1", "NLRP3", "NOS2", "PF4", "PRF1", "PRKCB", "PSMB10", "PTPN6", "PTPRC", "RARS1", "RIPK2", "RPL39", "RPL3L", "RPL9", "RPS19", "RPS3A", "RPS9", "SIT1", "SOCS1", "SOCS5", "SPI1", "SRGN", "ST8SIA4", "STAB1", "STAT1", "STAT4", "TAP1", "TAP2", "TAPBP", "TGFB1", "THY1", "TIMP1", "TLR1", "TLR3", "TNF", "TNFSF6", "TPD52", "TRAF2", "TRAT1", "UBE2D1", "WAS", "ZAP70", "c-fgr" ] }, "position": { "x": 1423.5, "y": 2272.9446642487483, "id": "5342eef5-e3f3-4ed5-8155-200dd0997fbd" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "name": [ "PEPTIDE CHAIN ELONGATION%REACTOME%R-HSA-156902.4" ], "description": [ "Peptide chain elongation" ], "pvalue": 1.4377e-16, "gs_type": null, "gs_size": 90, "padj": 1.9912e-14, "mcode_cluster_id": "Cluster 2", "NES": 2.752, "genes": [ "EEF1A1", "EEF2", "FAU", "RPL10", "RPL10A", "RPL10L", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL22L1", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL26L1", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL36AL", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL39L", "RPL3L", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "UBA52" ] }, "position": { "x": 934.3658087603827, "y": 313.8846583180456, "id": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "256d4349-41ff-4f8d-84cf-712bd1e91eae", "name": [ "CARBOHYDRATE CATABOLIC PROCESS%GOBP%GO:0016052" ], "description": [ "carbohydrate catabolic process" ], "pvalue": 0, "gs_type": null, "gs_size": 89, "padj": 0.0013, "mcode_cluster_id": "Cluster 4", "NES": 1.8944, "genes": [ "ADPGK", "AGL", "ALDOA", "ALDOB", "ALDOC", "AMY2A", "ATG12", "ATG2A", "ATG2B", "ATG3", "CTBS", "DERA", "DHDH", "ENO1", "ENO2", "ENO3", "ENO4", "ENOSF1", "FOXK1", "FOXK2", "FUT1", "FUT10", "FUT2", "FUT4", "FUT5", "FUT6", "FUT7", "FUT8", "FUT9", "GAA", "GALE", "GALK1", "GALM", "GALT", "GAPDH", "GAPDHS", "GBA3", "GCK", "GLYCTK", "GPI", "HK1", "HK2", "HK3", "HKDC1", "IDNK", "LCT", "LDHA", "LRP5", "MAN2C1", "MANBA", "MGAM", "MPI", "NAGA", "NEU1", "NEU2", "NEU3", "NEU4", "NUDT5", "PFKFB1", "PFKFB2", "PFKL", "PFKM", "PFKP", "PGAM1", "PGAM2", "PGAM4", "PGD", "PGK1", "PGK2", "PGM1", "PKLR", "PKM", "PYGB", "PYGL", "PYGM", "RB1CC1", "SI", "SORD", "STBD1", "TKFC", "TKTL1", "TPI1", "TREH", "UCP2", "WDR45", "WDR45B", "WIPI1", "WIPI2", "XYLB" ] }, "position": { "x": 3634.8102076228442, "y": 1600.0787391419058, "id": "256d4349-41ff-4f8d-84cf-712bd1e91eae", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "6e0d16f0-901c-4970-a541-74fefb710b7c", "name": [ "SIGNALING BY WNT%REACTOME DATABASE ID RELEASE 81%195721" ], "description": [ "Signaling by WNT" ], "pvalue": 0, "gs_type": null, "gs_size": 296, "padj": 0.0006, "mcode_cluster_id": null, "NES": -1.6606, "genes": [ "AGO1", "AGO2", "AGO3", "AGO4", "AKT1", "AKT2", "AMER1", "AP2A1", "AP2A2", "AP2B1", "AP2M1", "AP2S1", "APC", "ARRB2", "ASH2L", "AXIN1", "AXIN2", "BCL9", "BCL9L", "BTRC", "CALM1", "CAMK2A", "CAV1", "CBY1", "CCDC88C", "CDC73", "CHD8", "CLTA", "CLTB", "CLTC", "CREBBP", "CSNK1A1", "CSNK1E", "CSNK1G2", "CSNK2A1", "CSNK2A2", "CSNK2B", "CTBP1", "CTBP2", "CTNNB1", "CTNNBIP1", "CUL1", "CUL3", "CXXC4", "DAAM1", "DACT1", "DKK1", "DKK2", "DKK4", "DVL1", "DVL2", "DVL3", "EP300", "FRAT1", "FRAT2", "FZD1", "FZD2", "FZD3", "FZD4", "FZD5", "FZD6", "FZD7", "FZD8", "GNAO1", "GNAT2", "GNB1", "GNB2", "GNB3", "GNB4", "GNB5", "GNG10", "GNG11", "GNG12", "GNG13", "GNG2", "GNG3", "GNG4", "GNG5", "GNG7", "GNG8", "GNGT1", "GNGT2", "GSK3B", "H2AB1", "H2AC14", "H2AC19", "H2AC20", "H2AC7", "H2AC8", "H2AJ", "H2AX", "H2AZ2", "H2BC1", "H2BC11", "H2BC12", "H2BC12L", "H2BC13", "H2BC14", "H2BC15", "H2BC17", "H2BC21", "H2BC26", "H2BC3", "H2BC5", "H2BC8", "H2BC9", "H3-3B", "H3-4", "H3C15", "H3C8", "H4C9", "HDAC1", "HECW1", "ITPR1", "ITPR2", "ITPR3", "KAT5", "KLHL12", "KMT2D", "KREMEN1", "KREMEN2", "LEF1", "LEO1", "LGR4", "LGR5", "LGR6", "LRP5", "LRP6", "MAP3K7", "MEN1", "MOV10", "MYC", "NFATC1", "NLK", "PARD6A", "PDE6A", "PDE6B", "PDE6G", "PFN1", "PIP5K1B", "PLCB1", "PLCB2", "PLCB3", "PORCN", "PPP2CA", "PPP2CB", "PPP2R1A", "PPP2R1B", "PPP2R5A", "PPP2R5B", "PPP2R5C", "PPP2R5D", "PPP2R5E", "PPP3CA", "PPP3CB", "PPP3R1", "PRICKLE1", "PRKCA", "PRKCB", "PRKCG", "PRKG1", "PRKG2", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "PYGO1", "PYGO2", "RAC1", "RAC2", "RAC3", "RBBP5", "RBX1", "RHOA", "RNF146", "RNF43", "ROR1", "ROR2", "RPS27A", "RSPO1", "RSPO2", "RSPO3", "RSPO4", "RUNX3", "RUVBL1", "RYK", "SCRIB", "SEM1", "SFRP1", "SFRP2", "SKP1", "SMARCA4", "SMURF1", "SMURF2", "SNX3", "SOST", "SOX13", "SOX17", "SOX2", "SOX3", "SOX4", "SOX6", "SOX7", "SOX9", "SRY", "TCF7", "TCF7L1", "TCF7L2", "TERT", "TLE1", "TLE2", "TLE3", "TLE4", "TLE5", "TMED5", "TNKS", "TNKS2", "TNRC6A", "TNRC6B", "TNRC6C", "TRRAP", "UBA52", "UBB", "UBC", "USP34", "USP8", "VANGL2", "VPS26A", "VPS29", "VPS35", "WIF1", "WLS", "WNT1", "WNT10A", "WNT10B", "WNT11", "WNT16", "WNT2", "WNT2B", "WNT3", "WNT3A", "WNT4", "WNT5A", "WNT5B", "WNT6", "WNT7A", "WNT7B", "WNT8A", "WNT8B", "WNT9A", "WNT9B", "XIAP", "XPO1", "YWHAZ", "ZNRF3", "ZRANB1" ] }, "position": { "x": 772.8660474804259, "y": 879.8548402128773, "id": "6e0d16f0-901c-4970-a541-74fefb710b7c" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "ea08f366-4fcf-42db-9327-d240798fbafc", "name": [ "DEGRADATION OF GLI1 BY THE PROTEASOME%REACTOME DATABASE ID RELEASE 81%5610780" ], "description": [ "Degradation of GLI1 by the proteasome" ], "pvalue": 0, "gs_type": null, "gs_size": 60, "padj": 0.0007, "mcode_cluster_id": "Cluster 1", "NES": -1.9581, "genes": [ "BTRC", "CUL1", "GLI1", "ITCH", "NUMB", "PRKACA", "PRKACB", "PRKACG", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RBX1", "RPS27A", "SEM1", "SKP1", "SUFU", "UBA52", "UBB", "UBC" ] }, "position": { "x": 481.8851463652338, "y": 838.5526899734172, "id": "ea08f366-4fcf-42db-9327-d240798fbafc", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "13b8588c-61ed-4f34-99fa-8913a2d70119", "name": [ "INFLAMMATORY RESPONSE%GOBP%GO:0006954" ], "description": [ "inflammatory response" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 304, "padj": 0.0017, "mcode_cluster_id": null, "NES": -1.6862, "genes": [ "ABCF1", "ACKR1", "ADAM8", "ADCY1", "ADCY8", "ADGRE5", "ADM", "ADORA1", "ADORA2A", "ADORA3", "AFAP1L2", "AGER", "AGTR1", "AGTR2", "AHSG", "AIF1", "ALOX15", "ALOX5", "ANO6", "ANXA1", "AOC3", "APCS", "APOL2", "APOL3", "APP", "AZU1", "BDKRB2", "BLNK", "BMP2", "C1QA", "C2CD4A", "C2CD4B", "C3AR1", "C5AR1", "C5AR2", "CARD18", "CARD8", "CCL1", "CCL11", "CCL13", "CCL14", "CCL15", "CCL16", "CCL17", "CCL18", "CCL19", "CCL2", "CCL20", "CCL21", "CCL22", "CCL23", "CCL24", "CCL25", "CCL26", "CCL3", "CCL3L3", "CCL4", "CCL4L2", "CCL5", "CCL7", "CCL8", "CCR1", "CCR2", "CCR3", "CCR5", "CCR6", "CCR7", "CCRL2", "CD36", "CD40", "CD40LG", "CD44", "CD6", "CD68", "CD96", "CDO1", "CEBPB", "CHI3L1", "CHIA", "CHUK", "CLU", "CMKLR1", "CNTF", "CRH", "CRHBP", "CRP", "CSF1R", "CTNNBIP1", "CX3CL1", "CX3CR1", "CXCL1", "CXCL10", "CXCL11", "CXCL13", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "CXCR2", "CXCR4", "CYBA", "CYBB", "ELANE", "ELF3", "F11R", "F12", "F2R", "F3", "FCER1A", "FCGR1A", "FCGR1BP", "FCGR2A", "FCGR2B", "FCGR2C", "FCGR3A", "FCGR3B", "FFAR2", "FOLR2", "FOS", "FPR1", "FPR2", "FPR3", "FUT7", "GATA3", "GGT5", "GPR32", "GPR32P1", "GPR33", "GPR68", "GRN", "HDAC4", "HDAC5", "HDAC9", "HIF1A", "HLA-DRB1", "HMGB1", "HMGB2", "HMOX1", "HNRNPA0", "HRH1", "HSPG2", "HYAL1", "HYAL3", "IFNA2", "IFNG", "IFNGR1", "IGHG1", "IKBKB", "IKBKG", "IL10RB", "IL13", "IL17D", "IL1A", "IL1B", "IL1F10", "IL1RL1", "IL1RN", "IL22", "IL2RA", "IL36A", "IL36B", "IL36G", "IL36RN", "IL37", "IL4", "IL5", "IL6", "IL6R", "IL9", "INS", "IRAK2", "ITCH", "ITGAL", "ITGAM", "ITGB1", "ITGB2", "ITIH4", "JAK2", "KDM4D", "KIT", "KLKB1", "KLRG1", "KRT16", "LAT", "LBP", "LGALS9", "LIAS", "LOXL3", "LRP1", "LTB4R", "LY75", "LYZ", "MAP3K20", "MAP3K7", "MAPK9", "MAPKAPK2", "MAPT", "MBL2", "MDK", "MEFV", "MFHAS1", "MGLL", "MMP25", "MYLK3", "NAIP", "NCR3", "NFAM1", "NFATC3", "NFATC4", "NFKB1", "NFKB2", "NFX1", "NINJ1", "NLRC4", "NLRP1", "NLRP3", "NLRP6", "NOD1", "NOS2", "NOX1", "NOX4", "NRROS", "ODAM", "ORM1", "PARP4", "PF4", "PF4V1", "PIK3CD", "PIK3CG", "PJA2", "PLA2G2D", "PLA2G4B", "PLA2G4C", "PLSCR1", "PNMA1", "PPBP", "PRDX5", "PROK2", "PSEN1", "PTGDR", "PTGER1", "PTGER2", "PTGER3", "PTGER4", "PTGFR", "PTGIR", "PTN", "PTX3", "PXK", "PYCARD", "RAC1", "REL", "RELA", "RELB", "RIPK2", "S100A8", "S100A9", "SCG2", "SCUBE1", "SELE", "SERPINA3", "SIGIRR", "SIGLEC1", "SLAMF8", "SLC11A1", "SNAP23", "SNCA", "STAT3", "SYK", "TAB2", "TAC1", "TAC4", "TACR1", "TBK1", "TBXA2R", "TGFB1", "THBS1", "TLR1", "TLR10", "TLR2", "TLR3", "TLR4", "TLR5", "TLR6", "TMIGD3", "TNF", "TNFAIP6", "TNFRSF1A", "TNFRSF4", "TNFSF4", "TRAF3IP2", "TREM2", "TRIM14", "TUSC2", "TXNIP", "TYROBP", "VCAM1", "VNN1", "WNT5A", "XCL1", "XCL2", "XCR1" ] }, "position": { "x": 2732.5, "y": 2195.9446642487483, "id": "13b8588c-61ed-4f34-99fa-8913a2d70119" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "38fcc406-d8ea-4899-8aba-08c8cb9d70f8", "name": [ "IMMUNE RESPONSE%GOBP%GO:0006955" ], "description": [ "immune response" ], "pvalue": 5.5974e-22, "gs_type": null, "gs_size": 1094, "padj": 6.512e-19, "mcode_cluster_id": null, "NES": -2.2362, "genes": [ "ACKR2", "ACKR3", "ACKR4", "ACOD1", "ADAM15", "ADAM17", "ADAMDEC1", "ADAR", "ADGRE5", "AIF1", "AIM2", "AIRE", "AKAP1", "ALOX5", "ALPK1", "ANG", "ANKHD1", "ANKRD17", "ANXA3", "APCS", "APLN", "APOA4", "APOBEC3A", "APOBEC3F", "APOBEC3G", "APOL1", "APP", "AQP4", "ARL8B", "ATAD3A", "ATP6V0A2", "ATP7A", "AZGP1", "AZI2", "AZU1", "BACH2", "BATF", "BCL10", "BCL2", "BCL6", "BLK", "BLNK", "BMP6", "BMPR1A", "BMX", "BPI", "BPIFA1", "BPIFB1", "BPIFB3", "BST1", "BST2", "BTK", "BTN3A2", "BTN3A3", "C17orf99", "C1QA", "C1QB", "C1QBP", "C1QC", "C1R", "C2", "C3", "C4A", "C4BPA", "C4B_2", "C5AR1", "C6", "C7", "C8A", "C8B", "C9", "CADM1", "CALCOCO2", "CALM1", "CAMK2A", "CAMP", "CARD8", "CARD9", "CASP1", "CCL1", "CCL11", "CCL13", "CCL14", "CCL15", "CCL16", "CCL17", "CCL18", "CCL19", "CCL2", "CCL20", "CCL21", "CCL22", "CCL23", "CCL24", "CCL25", "CCL26", "CCL3", "CCL3L3", "CCL4", "CCL4L2", "CCL5", "CCL7", "CCL8", "CCR1", "CCR10", "CCR2", "CCR3", "CCR4", "CCR5", "CCR6", "CCR7", "CCR8", "CCR9", "CCRL2", "CD164", "CD180", "CD19", "CD1A", "CD1B", "CD1C", "CD1D", "CD1E", "CD2", "CD209", "CD244", "CD247", "CD27", "CD274", "CD28", "CD3D", "CD3E", "CD3G", "CD4", "CD40LG", "CD46", "CD47", "CD58", "CD6", "CD68", "CD7", "CD70", "CD74", "CD79B", "CD80", "CD81", "CD83", "CD86", "CD8A", "CD8B", "CD96", "CEACAM8", "CEBPB", "CEBPG", "CERT1", "CFB", "CFD", "CFH", "CFHR1", "CFHR2", "CFHR3", "CFHR4", "CFHR5", "CFP", "CGAS", "CH25H", "CHGA", "CHIT1", "CHST4", "CHUK", "CIITA", "CITED1", "CLEC2A", "CLEC4A", "CLEC4C", "CLEC4D", "CLEC4E", "CLEC4G", "CLEC4M", "CLEC5A", "CLEC6A", "CLEC7A", "CLPB", "CLU", "CMKLR1", "CNIH1", "CNR2", "COLEC10", "COLEC11", "COLEC12", "CORO1A", "CR1", "CR1L", "CR2", "CRHR1", "CRIP1", "CRIPTO", "CRISP3", "CRP", "CRTAM", "CSF2RB", "CST9", "CST9L", "CST9LP1", "CTLA4", "CTSC", "CTSG", "CTSH", "CTSK", "CTSL", "CTSS", "CTSV", "CTSW", "CX3CL1", "CX3CR1", "CXCL1", "CXCL10", "CXCL11", "CXCL13", "CXCL14", "CXCL16", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "CXCR1", "CXCR2", "CXCR3", "CXCR4", "CXCR5", "CXCR6", "CYBA", "CYBB", "CYBC1", "CYLD", "CYP11B1", "CYP27B1", "CYSLTR2", "DAPK1", "DAPK3", "DDX3X", "DEFA1B", "DEFA3", "DEFA4", "DEFA5", "DEFA6", "DEFB1", "DEFB104B", "DEFB106B", "DEFB114", "DEFB118", "DEFB119", "DEFB126", "DEFB127", "DEFB136", "DEFB4B", "DHX15", "DHX16", "DHX58", "DLL1", "DMBT1", "DNASE1", "DNASE1L3", "DOCK10", "DOCK11", "DOCK2", "DPP8", "DUS2", "DYSF", "EBI3", "ECSIT", "EIF2AK2", "EIF2AK4", "ELANE", "EMP2", "ENPP3", "EOMES", "EPRS1", "ETS1", "EXOSC3", "EXOSC6", "EXOSC9", "F12", "F2", "F2RL1", "FAM3A", "FAU", "FCAR", "FCER1A", "FCER1G", "FCER2", "FCGR1A", "FCGR1BP", "FCGR2A", "FCGR2B", "FCGR2C", "FCGR3A", "FCGR3B", "FCGRT", "FCMR", "FCN1", "FCN2", "FCN3", "FCRL2", "FCRL3", "FCRL4", "FCRL5", "FCRL6", "FCRLA", "FCRLB", "FFAR2", "FFAR3", "FGA", "FGB", "FGR", "FOXJ1", "FOXP1", "FRK", "FTH1", "FYB1", "FYN", "GALP", "GAPDH", "GAPT", "GARIN5A", "GATA3", "GBF1", "GBP1", "GBP2", "GBP3", "GBP4", "GBP5", "GBP6", "GBP7", "GCH1", "GEM", "GNL1", "GNLY", "GP2", "GPI", "GPR15LG", "GPR183", "GPR65", "GRB2", "GRN", "GRP", "GTPBP1", "GZMA", "GZMB", "H2BC11", "H2BC12", "H2BC12L", "H2BC21", "H2BC8", "HAMP", "HCK", "HCST", "HDAC4", "HERC5", "HLA-A", "HLA-B", "HLA-C", "HLA-DPA1", "HLA-DQA1", "HLA-DQA2", "HLA-DQB1", "HLA-DQB2", "HLA-DRA", "HLA-DRB1", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "HMGB1", "HMGB2", "HMGN2", "HRG", "HRH2", "HSPD1", "ICAM1", "ICOS", "IFI27", "IFI35", "IFI44", "IFI44L", "IFI6", "IFIH1", "IFIT1", "IFIT2", "IFIT3", "IFITM1", "IFITM2", "IFITM3", "IFNA10", "IFNA13", "IFNA14", "IFNA16", "IFNA17", "IFNA2", "IFNA21", "IFNA4", "IFNA5", "IFNA6", "IFNA7", "IFNA8", "IFNAR1", "IFNAR2", "IFNB1", "IFNE", "IFNG", "IFNGR1", "IFNGR2", "IFNK", "IFNL1", "IFNL2", "IFNL3", "IFNL4", "IFNLR1", "IFNW1", "IGF1R", "IGHA1", "IGHA2", "IGHD", "IGHE", "IGHG1", "IGHG2", "IGHG3", "IGHG4", "IGHM", "IGHV1-18", "IGHV1-2", "IGHV1-24", "IGHV1-3", "IGHV1-38-4", "IGHV1-45", "IGHV1-46", "IGHV1-58", "IGHV1-69", "IGHV1-69-2", "IGHV1-69D", "IGHV1-8", "IGHV1OR15-1", "IGHV1OR15-9", "IGHV1OR21-1", "IGHV2-26", "IGHV2-5", "IGHV2-70", "IGHV2-70D", "IGHV2OR16-5", "IGHV3-11", "IGHV3-13", "IGHV3-15", "IGHV3-16", "IGHV3-20", "IGHV3-21", "IGHV3-23", "IGHV3-30", "IGHV3-30-3", "IGHV3-30-5", "IGHV3-33", "IGHV3-35", "IGHV3-38", "IGHV3-38-3", "IGHV3-43", "IGHV3-43D", "IGHV3-48", "IGHV3-49", "IGHV3-53", "IGHV3-64", "IGHV3-64D", "IGHV3-66", "IGHV3-7", "IGHV3-72", "IGHV3-73", "IGHV3-74", "IGHV3-9", "IGHV3OR15-7", "IGHV3OR16-10", "IGHV3OR16-12", "IGHV3OR16-13", "IGHV3OR16-17", "IGHV3OR16-8", "IGHV4-28", "IGHV4-30-2", "IGHV4-30-4", "IGHV4-31", "IGHV4-34", "IGHV4-38-2", "IGHV4-39", "IGHV4-4", "IGHV4-59", "IGHV4-61", "IGHV4OR15-8", "IGHV5-10-1", "IGHV5-51", "IGHV6-1", "IGHV7-4-1", "IGHV7-81", "IGHV8-51-1", "IGKC", "IGKV1-12", "IGKV1-13", "IGKV1-16", "IGKV1-17", "IGKV1-27", "IGKV1-33", "IGKV1-37", "IGKV1-39", "IGKV1-5", "IGKV1-6", "IGKV1-8", "IGKV1-9", "IGKV1D-12", "IGKV1D-13", "IGKV1D-16", "IGKV1D-17", "IGKV1D-33", "IGKV1D-37", "IGKV1D-39", "IGKV1D-42", "IGKV1D-43", "IGKV1D-8", "IGKV1OR2-108", "IGKV2-24", "IGKV2-28", "IGKV2-29", "IGKV2-30", "IGKV2-40", "IGKV2D-24", "IGKV2D-26", "IGKV2D-28", "IGKV2D-29", "IGKV2D-30", "IGKV2D-40", "IGKV3-11", "IGKV3-15", "IGKV3-20", "IGKV3-7", "IGKV3D-11", "IGKV3D-15", "IGKV3D-20", "IGKV3D-7", "IGKV3OR2-268", "IGKV4-1", "IGKV5-2", "IGKV6-21", "IGKV6D-21", "IGKV6D-41", "IGLC1", "IGLC2", "IGLC3", "IGLC6", "IGLC7", "IGLL1", "IGLL5", "IGLV1-36", "IGLV1-40", "IGLV1-44", "IGLV1-47", "IGLV1-50", "IGLV1-51", "IGLV10-54", "IGLV11-55", "IGLV2-11", "IGLV2-14", "IGLV2-18", "IGLV2-23", "IGLV2-33", "IGLV2-8", "IGLV3-1", "IGLV3-10", "IGLV3-12", "IGLV3-16", "IGLV3-19", "IGLV3-21", "IGLV3-22", "IGLV3-25", "IGLV3-27", "IGLV3-32", "IGLV3-9", "IGLV4-3", "IGLV4-60", "IGLV4-69", "IGLV5-37", "IGLV5-39", "IGLV5-45", "IGLV5-48", "IGLV5-52", "IGLV6-57", "IGLV7-43", "IGLV7-46", "IGLV8-61", "IGLV9-49", "IGSF6", "IKBKB", "IKBKE", "IKBKG", "IL10", "IL10RB", "IL12A", "IL12B", "IL12RB1", "IL16", "IL17A", "IL17B", "IL18", "IL18BP", "IL18R1", "IL18RAP", "IL19", "IL1F10", "IL1R1", "IL1R2", "IL1RAP", "IL1RL1", "IL1RN", "IL2", "IL21", "IL21R", "IL23R", "IL27RA", "IL2RA", "IL2RB", "IL2RG", "IL36A", "IL36B", "IL36G", "IL36RN", "IL37", "IL4", "IL4R", "IL6", "IL6R", "IL7", "IL7R", "IL9R", "INAVA", "IRAK1", "IRAK4", "IRF1", "IRF3", "IRF4", "IRF5", "IRF7", "IRF8", "IRGM", "ISG15", "ITGA4", "ITGAD", "ITGAL", "ITGB7", "ITK", "JAG1", "JAK1", "JAK2", "JCHAIN", "KAAG1", "KARS1", "KIF5B", "KIR2DL1", "KIR2DL3", "KIR2DS1", "KIR2DS2", "KIR2DS5", "KIR3DL1", "KIR3DS1", "KIT", "KLRC2", "KLRD1", "KLRF2", "KLRK1", "KMT2A", "KRT1", "KRT16", "KRT6A", "KYNU", "LAT", "LAX1", "LBP", "LCK", "LCN2", "LCP1", "LCP2", "LEAP2", "LEF1", "LFNG", "LGALS9", "LIG4", "LILRA2", "LILRB1", "LILRB2", "LRP1", "LST1", "LTB4R", "LTF", "LY75", "LY86", "LY9", "LY96", "LYN", "LYST", "LYZ", "MAD2L2", "MADCAM1", "MALT1", "MAP3K14", "MAP3K7", "MAP4K2", "MARCHF1", "MARCHF2", "MARCHF8", "MASP1", "MASP2", "MAVS", "MBL2", "MBP", "MDK", "MEF2C", "MEFV", "MEN1", "MFHAS1", "MFNG", "MICA", "MICB", "MID2", "MILR1", "MORC3", "MPEG1", "MPL", "MR1", "MRGPRX2", "MS4A1", "MS4A2", "MSH2", "MSH6", "MSRB1", "MUC7", "MX1", "MYB", "MYD88", "MYO1G", "N4BP3", "NCF1", "NCF2", "NCK1", "NCR3", "NCR3LG1", "NECTIN1", "NEDD4", "NFKB1", "NFKB2", "NKG7", "NLRC5", "NLRP1", "NLRP6", "NLRP9", "NMB", "NMBR", "NMI", "NOD2", "NOS2", "NOTCH1", "NOTCH2", "NR4A3", "NRROS", "NUB1", "OAS1", "OAS2", "OPRD1", "OPRK1", "OTUD7B", "OTULIN", "PDCD1", "PDCD1LG2", "PDE12", "PDP2", "PECAM1", "PF4", "PF4V1", "PGLYRP1", "PGLYRP2", "PGLYRP3", "PGLYRP4", "PHB1", "PHB2", "PHF14", "PI3", "PIGR", "PIK3CD", "PIK3CG", "PIK3R1", "PIK3R2", "PIK3R3", "PIK3R5", "PIK3R6", "PIM1", "PJA2", "PKHD1L1", "PLA2G1B", "PLA2G6", "PLCG2", "PLEKHM2", "PML", "PNMA1", "PNP", "POLR3A", "POU2AF1", "POU2F2", "PPARG", "PPBP", "PPP1R14B", "PRF1", "PRKRA", "PRSS2", "PRSS3", "PRTN3", "PSEN1", "PSG9", "PSMB10", "PTAFR", "PTGDR2", "PTGER4", "PTK2B", "PTK6", "PTX3", "PXDN", "PYCARD", "PYDC1", "RAB17", "RAB2B", "RAET1E", "RAET1G", "RAET1L", "RAF1", "RAG1", "RAP1GAP", "RAP1GAP2", "RAPGEF3", "RAPGEF4", "RARRES2", "RASGRP4", "REG1A", "REG1B", "REG3A", "REG3G", "REL", "RELA", "RELB", "RFPL1", "RFPL2", "RFPL3", "RFPL4A", "RFPL4AL1", "RFTN1", "RFX1", "RGCC", "RGS1", "RIGI", "RIPK2", "RNASE2", "RNASE3", "RNASE4", "RNASE6", "RNASE7", "RNASE8", "RNF135", "RNF168", "RNF8", "ROMO1", "RORC", "RPL13A", "RPL30", "RPL39", "RPS19", "RPSA", "S100A12", "S100A13", "S100A7", "S100A9", "S1PR4", "SAMHD1", "SANBR", "SBNO2", "SCART1", "SEMA3C", "SEMA4D", "SEMA7A", "SEMG1", "SEMG2", "SENP7", "SERINC3", "SERINC5", "SERPINB9", "SETD2", "SFTPD", "SH2D1B", "SHFL", "SHLD1", "SHLD2", "SHLD3", "SHMT2", "SIPA1", "SIRPA", "SKP2", "SLA2", "SLAMF1", "SLAMF6", "SLAMF7", "SLC11A1", "SLC15A2", "SLC22A5", "SLC26A6", "SLPI", "SMAD3", "SMAD6", "SMARCA5", "SMPD1", "SNAP23", "SNCA", "SOCS3", "SP100", "SP2", "SPAG11A", "SPAG11B", "SPN", "SPRR2A", "SRC", "SRMS", "SRPK1", "SRPK2", "ST6GAL1", "STAT1", "STAT2", "STAT3", "STAT4", "STING1", "STXBP2", "STXBP3", "SYK", "SYNCRIP", "TANK", "TBK1", "TBKBP1", "TBX21", "TCF12", "TCF7", "TCIM", "TEC", "TENM1", "TF", "TFE3", "TFEB", "TGFBR3", "THBS1", "TIFA", "TLR1", "TLR10", "TLR2", "TLR3", "TLR4", "TLR6", "TLR7", "TLR8", "TLR9", "TMEM98", "TNF", "TNFAIP1", "TNFRSF11A", "TNFRSF14", "TNFRSF21", "TNFRSF4", "TNFSF11", "TNFSF18", "TRA", "TRAC", "TRAF2", "TRAF3", "TRAF3IP2", "TRAF6", "TRAV14DV4", "TRAV19", "TRAV2", "TRAV27", "TRAV29DV5", "TRAV38-1", "TRAV38-2DV8", "TRAV8-4", "TRB", "TRBC1", "TRBC2", "TRBV12-3", "TRBV7-9", "TRDC", "TRDV1", "TRDV3", "TREM1", "TREM2", "TREML1", "TRGC1", "TRGC2", "TRGV3", "TRIM10", "TRIM11", "TRIM13", "TRIM14", "TRIM15", "TRIM21", "TRIM22", "TRIM25", "TRIM26", "TRIM27", "TRIM28", "TRIM31", "TRIM32", "TRIM34", "TRIM35", "TRIM38", "TRIM4", "TRIM40", "TRIM43", "TRIM43B", "TRIM48", "TRIM49", "TRIM49B", "TRIM49C", "TRIM49D2", "TRIM5", "TRIM51", "TRIM51G", "TRIM56", "TRIM58", "TRIM59", "TRIM6", "TRIM62", "TRIM64", "TRIM64B", "TRIM64C", "TRIM68", "TRIM7", "TRIM77", "TRIM8", "TRIML1", "TRIML2", "TSLP", "TTC4", "TUBB", "TUBB4B", "TXK", "TYK2", "TYROBP", "UAP1", "UBA7", "UBD", "UBE2L6", "UBE2N", "UBE2W", "ULBP1", "ULBP2", "ULBP3", "UMOD", "USP18", "USP20", "USP44", "VAMP2", "VAMP7", "VAMP8", "VAV1", "VNN1", "VPREB1", "VPREB3", "WAS", "WFDC10A", "WFDC10B", "WFDC11", "WFDC12", "WFDC13", "WFDC2", "WFDC3", "WFDC5", "WFDC9", "WNT5A", "XBP1", "XCL1", "XCL2", "XCR1", "YES1", "YTHDF2", "ZAP70", "ZBP1", "ZDHHC1", "ZDHHC11", "ZFPM1", "ZP3" ] }, "position": { "x": 2848.984430155863, "y": 164.47257330151308, "id": "38fcc406-d8ea-4899-8aba-08c8cb9d70f8" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "3e2e64d7-b551-484f-a5be-f003aa055788", "name": [ "REGULATION OF ACTIVATED T CELL PROLIFERATION%GOBP%GO:0046006" ], "description": [ "regulation of activated T cell proliferation" ], "pvalue": 0.0006, "gs_type": null, "gs_size": 34, "padj": 0.0102, "mcode_cluster_id": null, "NES": -1.8821, "genes": [ "AGER", "BTN2A2", "CD24", "CD274", "CLC", "CRTAM", "FADD", "FOXP3", "HHLA2", "HMGB1", "ICOSLG", "IDO1", "IGF1", "IGF2", "IGFBP2", "IL12B", "IL12RB1", "IL18", "IL2", "IL23A", "IL23R", "LGALS9", "LILRB4", "PDCD1LG2", "PPP3CA", "PRKAR1A", "PRNP", "PYCARD", "RC3H1", "RIPK3", "RPS3", "SCRIB", "TMIGD2", "TNFSF9" ] }, "position": { "x": 2600.810304394322, "y": 511.3260641958655, "id": "3e2e64d7-b551-484f-a5be-f003aa055788" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "2e429329-ef4a-4af2-bf8d-73ecd2d53c95", "name": [ "NETWORK MAP OF SARS COV 2 SIGNALING PATHWAY%WIKIPATHWAYS_20240410%WP5115%HOMO SAPIENS" ], "description": [ "Network map of SARS CoV 2 signaling pathway" ], "pvalue": 2.5473e-9, "gs_type": null, "gs_size": 199, "padj": 2.0024e-7, "mcode_cluster_id": null, "NES": -2.199, "genes": [ "ACE2", "ACTG1", "AHR", "AKT1S1", "ALB", "APOA2", "APOC1", "APOD", "APOH", "APOL1", "BIRC5", "BST2", "C1QBP", "C1R", "C1S", "C8A", "CAMK4", "CASP3", "CASP5", "CASP8", "CASP9", "CCL1", "CCL11", "CCL15-CCL14", "CCL2", "CCL20", "CCL21", "CCL22", "CCL26", "CCL27", "CCL3", "CCL4", "CCL5", "CCL8", "CCNB1", "CCNB2", "CCR5", "CCR6", "CD14", "CD163", "CD2", "CD226", "CD247", "CD3E", "CD3G", "CD8A", "CD8B1", "CDC2", "CEBPB", "CFH", "CFI", "CFP", "CPN1", "CRP", "CTSL", "CTSZ", "CXCL1", "CXCL12", "CXCL13", "CXCL16", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "CXCR1", "DDIT4", "DEPTOR", "DKFZp686N0152", "DKFZp762B153", "DKFZp781O1323", "EGR1", "EIF4A2", "EIF4E", "EIF4EBP1", "FAM83A", "FGA", "FGF2", "FLJ00120", "FOS", "FYN", "GABARAPL2", "GP1BA", "GTSE1", "HBB", "HBD", "HEL-S-130P", "HEL-S-72p", "HEL-S-78p", "HEL-S-81p", "HIF1A", "HLA-DRA", "HLA-DRB1", "HLA-DRB5", "HMFT1766", "HP", "HRG", "IF1DA1", "IF2B1", "IF2F", "IFI27", "IFI44L", "IFI6", "IFIH1", "IFIT1", "IFITM1", "IFITM3", "IGLL1", "IKBKG", "IL-21", "IL10", "IL12A", "IL13", "IL16", "IL17A", "IL18", "IL18RAP", "IL1A", "IL1B", "IL1R2", "IL33", "IL4", "IL5", "IL6", "IL7", "IL8RB", "IL9", "IRAK1", "IRF3", "IRF9", "ITCH", "ITIH3", "ITIH4", "JAK1", "JUN", "JUNB", "LARP1", "LBP", "LCK", "LGALS3BP", "MAPK8", "MAVS", "MLST8", "MMP25", "MTOR", "MX1", "MYD88", "NFATC3", "NFKB2", "NLRP1", "NLRP3", "NRF", "NTRK1", "OAS2", "PARP2", "PF4", "PIAS1", "PRG3", "PRKCQ", "PS1TP5BP1", "PTGS2", "PTPN6", "RAC1", "RHEB", "RIGI", "RPS6", "RRAS", "RRM2", "SAA1", "SAA2", "SELP", "SERPINA10", "SERPINE1", "SMAD1", "STAT1", "STEAP3", "TBK1", "TF", "TGFBR2", "TNF", "TNFSF10", "TP53I3", "TPO", "TRAF2", "TRAF3", "TRAF6", "TRO", "TRPM2", "ULK1", "VPS11", "VPS16", "VPS18", "VPS33A", "VPS36", "VPS41", "WDR74", "ZAP70", "raptor" ] }, "position": { "x": 2116.5, "y": 2272.9446642487483, "id": "2e429329-ef4a-4af2-bf8d-73ecd2d53c95" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "a4828a94-536b-4435-9faa-b69c04af47ff", "name": [ "HEDGEHOG 'ON' STATE%REACTOME%R-HSA-5632684.2" ], "description": [ "Hedgehog 'on' state" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 85, "padj": 0.0035, "mcode_cluster_id": "Cluster 1", "NES": -1.7898, "genes": [ "ARRB1", "ARRB2", "BOC", "CDC73", "CDON", "CSNK1A1", "CUL3", "DHH", "DZIP1", "EFCAB7", "EVC", "EVC2", "GAS1", "GAS8", "GLI1", "GLI2", "GLI3", "GPR161", "GRK2", "HHIP", "IHH", "IQCE", "ITCH", "KIF3A", "KIF7", "NUMB", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "PTCH1", "RBX1", "RPS27A", "SEM1", "SHH", "SMO", "SMURF1", "SMURF2", "SPOP", "SPOPL", "SUFU", "UBA52", "UBB", "UBC", "ULK3" ] }, "position": { "x": 500.7103471124348, "y": 815.2287929284554, "id": "a4828a94-536b-4435-9faa-b69c04af47ff", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "03c93fdd-8eaa-4fc8-bacd-e4fa266253d4", "name": [ "PATHWAYS IN CANCER%WIKIPATHWAYS_20240410%WP5434%HOMO SAPIENS" ], "description": [ "Pathways in cancer" ], "pvalue": 0.0015, "gs_type": null, "gs_size": 419, "padj": 0.0223, "mcode_cluster_id": null, "NES": -1.4148, "genes": [ "ADCY1", "ADCY3", "ADCY6", "ADCY8", "ADCY9", "AGTR1", "AKT3", "ALK", "APAF1", "APC2", "APPL1", "ARAF", "ARHA", "ARHGEF1", "ARHGEF11", "ARHGEF12", "ARNT2", "AXIN1", "AXIN2", "BAD", "BAK1", "BAX", "BBC3", "BCL2", "BCL2L1", "BCL2L11", "BCR", "BDKRB1", "BDKRB2", "BIRC2", "BIRC3", "BIRC5", "BIRC7", "BMP2", "BMP4", "BRAF", "BRCA2", "CALML3", "CALML4", "CALML6", "CAMK2A", "CAMK2D", "CAMK2G", "CASP3", "CASP8", "CASP9", "CBL", "CCDC42", "CCDC6", "CCNA2", "CCND1", "CCND2", "CCND3", "CCNE1", "CCNE2", "CDK2", "CDK4", "CDK6", "CDKN1A", "CDKN1B", "CDKN2A", "CDKN2B", "CEBPA", "CHUK", "CKS1B", "COL4A1", "COL4A2", "COL4A3", "COL4A4", "COL4A5", "COL4A6", "CREBBP", "CRK", "CRKL", "CSF1R", "CSF2RA", "CSF2RB", "CSF3R", "CTBP1", "CTBP2", "CTNNA1", "CTNNA2", "CTNNA3", "CTNNB1", "CXCL12", "CXCL8", "CXCR4", "CYCS", "DAPK2", "DCC", "DDB2", "DKFZp434N101", "DKFZp434N181", "DKFZp586H0919", "DKFZp666O0110", "DLL3", "DLL4", "DVL1", "DVL2", "DVL3", "E2F2", "E2F3", "EDG2", "EDN1", "EDNRA", "EDNRB", "EGF", "EGFR", "EGLN1", "EGLN2", "EGLN3", "ELOC", "EML4", "EP300", "EPO", "EPOR", "ERBB2", "EVI1", "F2", "F2R", "F2RL3", "FADD", "FAS", "FGFR1", "FGFR2", "FGFR3", "FGFR4", "FH", "FLT3", "FLT3LG", "FLT4", "FOS", "FOXO1", "FRAT1", "FRAT2", "FZD1", "FZD10", "FZD2", "FZD3", "FZD4", "FZD5", "FZD7", "FZD8", "FZD9", "GADD45A", "GADD45B", "GADD45G", "GLI3", "GNA11", "GNA13", "GNAI1", "GNAI3", "GNAS", "GNB1", "GNB2", "GNB3", "GNB4", "GNB5", "GNG10", "GNG11", "GNG12", "GNG13", "GNG2", "GNG3", "GNG4", "GNG5", "GNG7", "GNG8", "GNGT1", "GNGT2", "GRB2", "GSK3B", "GSTA3", "GSTA4", "GSTM1", "GSTM2", "GSTM3", "GSTM5", "GSTO2", "GSTT2", "HDAC1", "HDAC2", "HEL-S-125m", "HEL-S-21", "HEL-S-22", "HES1", "HES5", "HEY2", "HEYL", "HGF", "HHIP", "HIF1A", "HMOX1", "HRAS", "HSP90AB1", "IF1AA1", "IF1AA3", "IF1AA4", "IF1AA5", "IF1AA6", "IF1AA8", "IF1AA9", "IF1AB1", "IF1AB4", "IF2F", "IFNA1", "IFNA13", "IFNA14", "IFNA4", "IFNAR1", "IFNAR2", "IFNGR1", "IFNGR2", "IGF1", "IGF1R", "IGF2", "IKBKB", "IKBKG", "IL12A", "IL12B", "IL12RB1", "IL13", "IL13RA1", "IL15", "IL15RA", "IL2", "IL23A", "IL2RA", "IL2RB", "IL2RG", "IL3", "IL3RA", "IL4", "IL5", "IL5RA", "IL6", "IL6R", "IL6ST", "IL7", "IL7R", "ITGA2", "ITGA2B", "ITGA6", "ITGAV", "ITGB1", "JAG2", "JAK1", "JAK3", "JUN", "JUP", "KEAP1", "KIF7", "KIT", "KITLG", "KLK3", "KNG1", "KPG_010", "KRAS", "LAMA1", "LAMA3", "LAMA4", "LAMA5", "LAMB1", "LAMB2", "LAMB3", "LAMB4", "LAMC1", "LAMC2", "LPAR3", "LPAR4", "LRP5", "LRP6", "MAP2K1", "MAP2K2", "MAPK1", "MAPK10", "MAPK3", "MAPK8", "MAPK9", "MAX", "MDM2", "MET", "MGST1", "MGST2", "MGST3", "MITF-C", "MMP2", "MMP3", "MSH2", "MSH3", "MSH6", "MTOR", "MYC", "NCOA1", "NFE2L2", "NFKB1", "NFKB2", "NFKBIA", "NKX3-1", "NOS2", "NOTCH1", "NOTCH3", "NQO1", "NR1C2", "NR3A2", "NRAS", "NTRK1", "PAX8", "PDGFA", "PDGFRA", "PIK3CD", "PIK3R1", "PIK3R2", "PIK3R3", "PIM1", "PIM2", "PLCB1", "PLCB2", "PLCB3", "PLCB4", "PLCG2", "PLD2", "PLEKHG5", "PMAIP1", "PML", "POLK", "PPARG", "PRKACG", "PRKCA", "PRKCB", "PTCH1", "PTCH2", "PTEN", "PTGER1", "PTGER2", "PTGER3", "PTGER4", "PTGS2", "RAC1", "RAC3", "RAD51", "RAF1", "RALA", "RALB", "RALBP1", "RARA", "RARB", "RASGRP3", "RASGRP4", "RASSF1", "RB1", "RBX1", "RELA", "RET", "ROCK1", "ROCK2", "RPS6KA5", "RPS6KB1", "RPS6KB2", "RUNX1", "RUNX1T1", "RXRA", "RXRB", "RXRG", "SHH", "SKP1", "SKP2", "SMAD2", "SMAD4", "SMO", "SOS1", "SOS2", "SP1", "SPI1", "STAT1", "STAT2", "STAT3", "STAT4", "STAT5B", "SUFU", "TCF7L1", "TCF7L2", "TERT", "TFG", "TGFA", "TGFB1", "TGFBR1", "TGFBR2", "TNFSF6", "TPR", "TRAF1", "TRAF2", "TRAF3", "TRAF4", "TRAF5", "TRAF6", "TXNRD2", "VEGFA", "VEGFB", "VEGFC", "VEGFD", "VHL", "WNT1", "WNT10A", "WNT10B", "WNT11", "WNT16", "WNT2B", "WNT3", "WNT3A", "WNT4", "WNT5B", "WNT7A", "WNT7B", "WNT8A", "WNT8B", "WNT9A", "WNT9B", "ZBTB16" ] }, "position": { "x": 730.5, "y": 2195.9446642487483, "id": "03c93fdd-8eaa-4fc8-bacd-e4fa266253d4" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "7bf5f46b-ab13-4683-80ec-a33df53d5b2f", "name": [ "HALLMARK_UV_RESPONSE_DN%MSIGDBHALLMARK%HALLMARK_UV_RESPONSE_DN" ], "description": [ "HALLMARK_UV_RESPONSE_DN" ], "pvalue": 0.003, "gs_type": null, "gs_size": 118, "padj": 0.0356, "mcode_cluster_id": null, "NES": 1.5612, "genes": [ "ABCC1", "ACVR2A", "ADD3", "ADGRL2", "ADORA2B", "AGGF1", "AKT3", "AMPH", "ANXA2", "ANXA4", "APBB2", "ARHGEF9", "ATP2B1", "ATP2B4", "ATP2C1", "ATXN1", "BDNF", "BHLHB2", "BMPR1A", "CACNA1A", "CDC42BPA", "CDKN1B", "CDON", "CELF2", "CITED2", "COL1A1", "COL1A2", "COL3A1", "COL5A2", "CXNK2", "CYR61", "DBP", "DKFZp434N181", "DKFZp451M2318", "DKFZp686A1195", "DKFZp686D0714", "DMAC2L", "DYRK1A", "EDG2", "ERBB2", "F3", "FAM179B", "FHL2", "FYN", "FZD2", "GRK5", "HAS2", "ID1", "IGF1R", "IGFBP5", "INPP4B", "INSIG1", "IRS1", "ITGB3", "KALRN", "KCNMA1", "KIT", "LAMC1", "LDLR", "LTBP1", "MAP1B", "MAP2K5", "MAPK14", "MET", "MGLL", "MGMT", "MIOS", "MMP16", "MRPS31", "MT1E", "MYC", "NFIB", "NFKB1", "NIPBL", "NR1D2", "NR3C1", "NRP1", "PEX14", "PHF3", "PIK3CD", "PIK3R3", "PLCB4", "PLPP3", "PMP22", "POLS", "PPARG", "PRDM2", "PRKCA", "PRKCE", "PTEN", "PTGFR", "PTPN21", "PTPRM", "RASA2", "RBPMS", "RGS4", "RUNX1", "RXRA", "SCHIP1", "SCN8A", "SDC2", "SERPINE1", "SFMBT1", "SIPA1L1", "SLC22A18", "SLC7A1", "SNAI2", "SPOP", "SRI", "SYNE1", "TFPI", "TGFBR2", "TGFBR3", "VAV2", "VLDLR", "WDR37", "YTHDC1", "ZMIZ1" ] }, "position": { "x": 3533.539072651805, "y": 2272.9446642487483, "id": "7bf5f46b-ab13-4683-80ec-a33df53d5b2f" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "9b6b9423-ac94-4636-9f16-0332d7da5f6e", "name": [ "HALLMARK_INTERFERON_GAMMA_RESPONSE%MSIGDBHALLMARK%HALLMARK_INTERFERON_GAMMA_RESPONSE" ], "description": [ "HALLMARK_INTERFERON_GAMMA_RESPONSE" ], "pvalue": 1.524e-24, "gs_type": null, "gs_size": 173, "padj": 4.4325e-21, "mcode_cluster_id": null, "NES": -2.7885, "genes": [ "ADAR", "ARID5B", "ARL4A", "AUTS2", "ApoL6", "B2M", "BANK1", "BATF2", "BST2", "BTG1", "C1R", "C1S", "CASP3", "CASP4", "CASP8", "CCL2", "CCL5", "CCL7", "CD40", "CD69", "CD74", "CDKN1A", "CFH", "CMKLR1", "CMPK2", "CMTR1", "CSF2RB", "CXCL11", "CXCL9", "DHX58", "DKFZp564M2422", "EIF2AK2", "EIF4E3", "EPSTI1", "FAS", "FCGR1A", "FGL2", "FPR1", "GBP4", "GZMA", "HEL-S-156an", "HELZ2", "HERC6", "HIF1A", "HLA-A", "HLA-B", "HLA-DMA", "HLA-DQA1", "HLA-DRB1", "HLA-G", "IDO1", "IFI27", "IFI30", "IFI35", "IFI44", "IFI44L", "IFIH1", "IFIT1", "IFIT2", "IFIT3", "IFITM2", "IFITM3", "IFNAR2", "IL10RA", "IL15", "IL15RA", "IL18BP", "IL2RB", "IL6", "IL7", "IRF1", "IRF2", "IRF4", "IRF7", "IRF8", "IRF9", "ISG15", "ISG20", "ISOC1", "ITGB7", "KLRK1", "LAP3", "LATS2", "LCP2", "LGALS3BP", "LY6E", "LYSMD2", "MHC2TA", "MT2A", "MTHFD2", "MVP", "MX1", "MX2", "MYD88", "NAMPT", "NFKB1", "NFKBIA", "NMI", "NOD1", "NUP93", "OAS2", "OAS3", "OASL", "OGFR", "P2RY14", "PARP12", "PARP14", "PDE4B", "PELI1", "PFKP", "PIM1", "PLSCR1", "PML", "PNPT1", "PSM8", "PSMA2", "PSMB10", "PSMB2", "PSME2", "PTGS2", "PTPN1", "PTPN6", "RAPGEF6", "RBCK1", "RIGI", "RIPK1", "RIPK2", "RNF213", "RNF31", "RSAD2", "RTP4", "SAMD9L", "SECTM1", "SELP", "SERPING1", "SLAMF7", "SLC25A28", "SOCS1", "SOCS3", "SP110", "SPPL2A", "SRI", "SSPN", "ST3GAL5", "ST8SIA4", "STAT1", "STAT2", "STAT3", "STAT4", "TAP1", "TAPBP", "TDRD7", "TMT1B", "TNFAIP2", "TNFAIP3", "TNFAIP6", "TNFSF10", "TOR1B", "TRAFD1", "TRIM14", "TRIM21", "TRIM25", "TXNIP", "UBE2L6", "USP18", "VAMP5", "VAMP8", "VCAM1", "XAF1", "XCL1", "ZBP1", "ZNFX1", "hCG_1644110" ] }, "position": { "x": 2898.6148348822694, "y": 1801.8587965586644, "id": "9b6b9423-ac94-4636-9f16-0332d7da5f6e" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "name": [ "CYTOPLASMIC RIBOSOMAL PROTEINS%WIKIPATHWAYS_20240410%WP477%HOMO SAPIENS" ], "description": [ "Cytoplasmic ribosomal proteins" ], "pvalue": 1.2339e-16, "gs_type": null, "gs_size": 87, "padj": 1.7506e-14, "mcode_cluster_id": "Cluster 2", "NES": 2.7464, "genes": [ "FAU", "HEL-S-310", "MRPL19", "RPL10", "RPL10A", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL23", "RPL23A", "RPL26", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL3L", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS5", "RPS6", "RPS6KA1", "RPS6KA2", "RPS6KA3", "RPS6KA6", "RPS6KB1", "RPS6KB2", "RPS7", "RPS8", "RPS9", "RPSA", "hCG_1994130" ] }, "position": { "x": 897.0901795833756, "y": 385.50751767890296, "id": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "058f5994-073f-48c4-bcb9-e1fef63a8bbc", "name": [ "NEGATIVE REGULATION OF CELL DIFFERENTIATION%GOBP%GO:0045596" ], "description": [ "negative regulation of cell differentiation" ], "pvalue": 0.0037, "gs_type": null, "gs_size": 402, "padj": 0.0414, "mcode_cluster_id": null, "NES": -1.3771, "genes": [ "ABCA1", "ABCA5", "ABCG1", "ACTB", "ACTL6A", "ACTL6B", "ADAMTS12", "ADAMTS7", "ADGRV1", "ADIPOQ", "ADIPOR1", "AKIRIN1", "ANKRD2", "ANKRD26", "ANP32B", "ANXA1", "APCS", "APPL2", "ASCL1", "ASXL1", "B2M", "BAMBI", "BBS12", "BCL7A", "BCL7B", "BCL7C", "BDNF", "BHLHA15", "BHLHE41", "BICRA", "BICRAL", "BMAL1", "BMP2", "BMP4", "BMP5", "BMP7", "BRD9", "C1QC", "CALR", "CARTPT", "CAV1", "CAV3", "CBFB", "CCDC85B", "CCL11", "CCL3", "CCN3", "CDC73", "CDK6", "CDKL3", "CEACAM1", "CEACAM5", "CERS2", "CETP", "CHADL", "CHRD", "CIB1", "CITED1", "CNTN4", "COL5A1", "COL5A2", "CR1", "CRIM1", "CRP", "CTLA4", "CTR9", "DAAM2", "DAB2IP", "DCC", "DICER1", "DIP2B", "DISP3", "DKK1", "DLL1", "DLX1", "DLX2", "DNMT1", "DPF2", "DPYSL5", "DRD3", "DTX1", "DYNLT1", "E2F1", "EDNRB", "EFEMP1", "EFNA1", "EFNB3", "EGFR", "EID2B", "EIF2AK4", "ENPP1", "EPHA4", "EPHB1", "EREG", "ERFE", "ESRRB", "EXTL3", "F2", "FBN1", "FBXW7", "FCGR2B", "FERMT2", "FGF13", "FGF23", "FGF9", "FLCN", "FOXA1", "FOXA2", "FOXE3", "FOXJ1", "FOXJ2", "FOXO1", "FOXO4", "FOXP3", "FRS2", "FSTL3", "FUZ", "FZD7", "GATA3", "GDF3", "GDF5", "GDI1", "GLI3", "GORASP1", "GPER1", "GPR137", "GPR137B", "GPR55", "GPS2", "GREM1", "GSK3A", "GSK3B", "H4C9", "HDAC1", "HDAC3", "HDAC4", "HDAC5", "HDAC7", "HES1", "HES5", "HEY1", "HEY2", "HLA-G", "HMGB1", "HNRNPU", "HOOK3", "HOPX", "HOXA5", "HOXA7", "HOXA9", "HOXB8", "HPN", "HSPA9", "ID2", "IFNA2", "IFNB1", "IFNG", "IFNL1", "IGF1", "IGF2", "IHH", "IL13", "IL17D", "IL17RD", "IL1B", "IL4", "IL6", "INHA", "INHBA", "INPP5D", "IPO7", "IQCB1", "IRF1", "ITGAV", "ITGB3", "JAG1", "JAK3", "KAT8", "KIAA0319", "LAG3", "LDB1", "LDLR", "LDLRAD4", "LEO1", "LILRB1", "LILRB3", "LILRB4", "LIMD1", "LOXL3", "LRP3", "LRP4", "LRP5", "LRRC17", "LTF", "MAD2L2", "MAFB", "MAG", "MAP2", "MARK1", "MCF2", "MDK", "MED1", "MEIS1", "MEIS2", "MEN1", "MESP1", "METTL14", "MIXL1", "MMP9", "MSTN", "MSX1", "MT3", "MYB", "MYC", "MYOCD", "N4BP2L2", "NBR1", "NELFB", "NEPRO", "NF1", "NFATC1", "NFATC2", "NFATC3", "NFKBIA", "NKX2-1", "NKX2-5", "NKX3-2", "NOCT", "NOG", "NOTCH1", "NOTCH4", "NPHP3", "NPPC", "NR1D1", "NR1H2", "NR1H3", "OSR1", "OVOL2", "PAEP", "PAF1", "PAX6", "PCID2", "PCM1", "PDCD4", "PDGFB", "PF4", "PKP2", "POU4F2", "PPARA", "PPARG", "PRAME", "PRICKLE1", "PRMT1", "PTBP1", "PTCH1", "PTEN", "PTGR3", "PTHLH", "PTK2B", "PTN", "PTPN11", "PTPN2", "PTPRS", "RANBP3L", "RAPGEF2", "RARA", "RB1", "RBPMS2", "RC3H1", "RC3H2", "REG3A", "REG3G", "REST", "RFLNA", "RFLNB", "RIOX1", "RNF10", "RNF6", "RORA", "RORB", "RTN4", "RTN4R", "RUFY3", "RUNX1", "RUNX1T1", "RUNX3", "S1PR3", "SDHAF2", "SEMA3G", "SEMA4D", "SEMA5A", "SFRP1", "SFRP2", "SHH", "SINHCAF", "SIRT1", "SIRT2", "SIX3", "SIX4", "SKI", "SKIC8", "SLC4A2", "SMAD3", "SMAD4", "SMAD6", "SMAD7", "SMARCA2", "SMARCA4", "SMARCC1", "SMARCD1", "SNAI2", "SOCS1", "SOCS5", "SORL1", "SOSTDC1", "SOX11", "SOX2", "SOX3", "SOX4", "SOX6", "SOX8", "SOX9", "SPRED1", "SPRED2", "SPRED3", "SPRY1", "SPRY2", "SRA1", "SRSF6", "SS18", "STAT1", "SUFU", "SUZ12", "TBX1", "TBX21", "TBX3", "TBX5", "TCF15", "TCF23", "TCTA", "TENT5C", "TGFB1", "TGFB2", "TGFBR1", "THY1", "TLR3", "TLR4", "TMEM119", "TMEM131L", "TMEM176B", "TMEM178A", "TMEM182", "TMEM53", "TMEM64", "TMEM98", "TNF", "TNFAIP6", "TNFRSF11B", "TNFSF4", "TNN", "TREM2", "TRIB2", "TRIB3", "TRIM46", "TRIO", "TRPM4", "TSC22D1", "TSKU", "TUNAR", "TWIST1", "TWIST2", "ULK1", "ULK2", "USF3", "USH2A", "VASN", "VEGFA", "WEE2", "WNT1", "WNT10B", "WNT3A", "WNT5A", "WNT7A", "WNT9A", "WWTR1", "XBP1", "XDH", "YAP1", "YTHDF2", "YWHAH", "ZBED6", "ZBTB16", "ZBTB7B", "ZC3H12A", "ZC3H8", "ZEB1", "ZFP36", "ZFP36L1", "ZFP36L2", "ZFPM1", "ZNF675", "ZNF750" ] }, "position": { "x": 499.5, "y": 2195.9446642487483, "id": "058f5994-073f-48c4-bcb9-e1fef63a8bbc" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "9d67ed9b-fc8b-44ae-be26-85d636c27b87", "name": [ "HEXOSE CATABOLIC PROCESS%GOBP%GO:0019320" ], "description": [ "hexose catabolic process" ], "pvalue": 0.0036, "gs_type": null, "gs_size": 34, "padj": 0.0409, "mcode_cluster_id": "Cluster 4", "NES": 1.7591, "genes": [ "ENO1", "ENO2", "ENO3", "FOXK1", "FOXK2", "FUT1", "FUT10", "FUT2", "FUT4", "FUT5", "FUT6", "FUT7", "FUT8", "FUT9", "GALE", "GALK1", "GALM", "GALT", "GCK", "GLYCTK", "HK1", "HK2", "HK3", "LRP5", "MPI", "PFKL", "PFKM", "PFKP", "PGAM1", "PGAM2", "PGK1", "PGK2", "PGM1", "TKTL1" ] }, "position": { "x": 3549.623916463378, "y": 1705.5091362090072, "id": "9d67ed9b-fc8b-44ae-be26-85d636c27b87", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "f127255f-9ab3-4cc9-80ae-d598f0105419", "name": [ "CELL CHEMOTAXIS%GOBP%GO:0060326" ], "description": [ "cell chemotaxis" ], "pvalue": 0.0009, "gs_type": null, "gs_size": 184, "padj": 0.0149, "mcode_cluster_id": "Cluster 7", "NES": -1.6353, "genes": [ "ABCC1", "ACKR2", "ACKR3", "ACKR4", "ADAM8", "ADGRE2", "AGTR1", "ALOX5", "ANXA1", "ARHGEF16", "ARRB2", "AZU1", "BCAR1", "BIN2", "BSG", "CALCA", "CCL1", "CCL11", "CCL13", "CCL14", "CCL15", "CCL16", "CCL17", "CCL18", "CCL19", "CCL2", "CCL20", "CCL21", "CCL22", "CCL23", "CCL24", "CCL25", "CCL26", "CCL28", "CCL3", "CCL3L3", "CCL4", "CCL4L2", "CCL5", "CCL7", "CCL8", "CCN3", "CCR1", "CCR10", "CCR2", "CCR3", "CCR4", "CCR5", "CCR6", "CCR7", "CCR8", "CCR9", "CCRL2", "CD300H", "CH25H", "CHGA", "CKLF", "CORO1B", "CTSG", "CX3CL1", "CX3CR1", "CXADR", "CXCL1", "CXCL10", "CXCL11", "CXCL12", "CXCL13", "CXCL16", "CXCL17", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "CXCR1", "CXCR2", "CXCR3", "CXCR4", "CXCR5", "CXCR6", "CYP7B1", "DEFA1B", "DEFB103B", "DEFB104B", "DEFB109B", "DEFB110", "DEFB114", "DEFB130A", "DEFB130B", "DEFB133", "DEFB4B", "DOCK4", "EDN1", "EDN2", "EDN3", "EDNRB", "EGR3", "ELMO2", "EPHA2", "EPHB1", "FCER1G", "FFAR2", "FLT1", "FOLR2", "GAB1", "GAS6", "GBF1", "GPR15LG", "GPR183", "HBEGF", "HGF", "HMGB1", "HMGB2", "HOXB9", "HSD3B7", "IL10", "IL16", "IL6", "IL6R", "ITGB2", "JAML", "KIT", "LEF1", "LGALS3", "LPAR1", "LYST", "MDK", "MSMP", "MT-RNR2", "NCKAP1L", "NINJ1", "NR4A1", "NRP1", "PARVA", "PDE4B", "PDGFB", "PDGFRA", "PDGFRB", "PF4", "PF4V1", "PIK3CD", "PIK3CG", "PIKFYVE", "PIP5K1A", "PIP5K1C", "PLA2G1B", "PLEKHG5", "PLXNB3", "PPBP", "PPIA", "PPIB", "PRKCD", "PRKCQ", "PTN", "PTPRO", "RAB13", "RAC1", "RAC3", "RHOG", "RPS19", "S100A12", "S100A8", "S100A9", "SAA1", "SBDS", "SCG2", "SEMA5A", "SFTPD", "SLAMF8", "SLC12A2", "SRP54", "SYK", "TAFA4", "TGFB2", "TNFRSF11A", "TNFSF11", "TREM1", "TRPM2", "TRPM4", "VEGFA", "XCL1", "XCL2", "XCR1" ] }, "position": { "x": 3300.8519095641104, "y": 619.9669402433119, "id": "f127255f-9ab3-4cc9-80ae-d598f0105419", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "a9a38d38-b0bb-4c25-a938-b31f9d702712", "name": [ "PATTERN SPECIFICATION PROCESS%GOBP%GO:0007389" ], "description": [ "pattern specification process" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 235, "padj": 0.0036, "mcode_cluster_id": null, "NES": -1.6206, "genes": [ "ACVR1", "ACVR2B", "ACVRL1", "AHI1", "AIDA", "APC", "APC2", "APLNR", "ARL13B", "ARL6", "ASCL1", "ATP6AP2", "BASP1", "BBS5", "BBS7", "BCOR", "BHLHE40", "BHLHE41", "BMI1", "BMP1", "BMP2", "BMP4", "BMPR1A", "BMPR1B", "BMPR2", "C1QA", "C3", "CAPRIN2", "CCDC103", "CCDC39", "CCDC40", "CDX1", "CDX2", "CDX4", "CELSR2", "CER1", "CFAP45", "CFAP52", "CFAP53", "CFC1", "CFC1B", "CHRD", "CIROP", "CITED2", "COBL", "CRAMP1", "CRB2", "CRIPTO", "CRIPTO3", "CXXC4", "CYP26B1", "CYP26C1", "DAND5", "DCANP1", "DDIT3", "DLL1", "DLL4", "DNAAF1", "DNAAF11", "DNAAF4", "DNAH11", "DNAH5", "DNAI1", "DNAI2", "DOP1B", "DSCAML1", "DVL1", "DVL2", "ENG", "ENKUR", "ERBB4", "FBXL15", "FGF8", "FGFR2", "FOLR1", "FOXA2", "FOXB1", "FOXD1", "FOXH1", "FOXJ1", "FOXN4", "FUT6", "FZD5", "GALNT11", "GATA4", "GLI2", "GREM1", "HAND1", "HELT", "HES1", "HES2", "HES3", "HES4", "HES5", "HES6", "HES7", "HEY1", "HEY2", "HEYL", "HHEX", "HOXA11", "HOXA3", "HOXA4", "HOXA5", "HOXA6", "HOXA7", "HOXA9", "HOXB1", "HOXB3", "HOXB4", "HOXB5", "HOXB6", "HOXB7", "HOXB9", "HOXC4", "HOXC5", "HOXC6", "HOXC9", "HOXD11", "HOXD3", "HOXD4", "HOXD8", "HOXD9", "IFT122", "IHH", "ISL1", "ITGAM", "KDM2B", "KIF3B", "LEFTY1", "LEFTY2", "LFNG", "LHX1", "LMX1B", "LRP2", "MDFI", "MEF2C", "MEGF8", "MEIS1", "MEIS2", "MEIS3", "MEIS3P1", "MEIS3P2", "MESP1", "MESP2", "MICAL2", "MID1", "MKKS", "MMP21", "MTF2", "NBL1", "NCLN", "NDRG4", "NEUROG1", "NKX2-5", "NODAL", "NOG", "NOMO3", "NOTCH1", "NPHP3", "NTF4", "ODAD2", "ODAD3", "ODAD4", "OFD1", "OOEP", "OSR1", "OTX2", "PAX2", "PAX8", "PBX3", "PCSK5", "PIERCE1", "PIERCE2", "PITX2", "PKD1L1", "PKD2", "PLD6", "PTCH1", "RELN", "RFX3", "RIPPLY1", "RIPPLY2", "RIPPLY3", "SETDB2", "SFRP1", "SHH", "SHROOM3", "SIX1", "SIX2", "SIX3", "SKI", "SMAD1", "SMAD2", "SMAD5", "SMAD6", "SMO", "SOX17", "SOX18", "SRF", "STC1", "STIL", "TASOR", "TBX1", "TBX18", "TBX2", "TBX20", "TBX3", "TBX5", "TBX6", "TBXT", "TDRD1", "TDRD5", "TDRD6", "TDRD7", "TDRKH", "TGFBR1", "TGFBR2", "TIFAB", "TLL1", "TLL2", "TTC8", "VANGL2", "WDR77", "WIF1", "WLS", "WNT1", "WNT2B", "WNT7A", "WNT7B", "WNT8A", "WNT8B", "WT1", "ZIC1", "ZIC3" ] }, "position": { "x": 551.4797782698795, "y": 1561.3485018138267, "id": "a9a38d38-b0bb-4c25-a938-b31f9d702712" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "name": [ "STABILIZATION OF P53%REACTOME DATABASE ID RELEASE 81%69541" ], "description": [ "Stabilization of p53" ], "pvalue": 0, "gs_type": null, "gs_size": 57, "padj": 0.0009, "mcode_cluster_id": "Cluster 1", "NES": -1.9474, "genes": [ "ATM", "CDKN2A", "CHEK2", "COP1", "MDM2", "MDM4", "PHF20", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RPS27A", "SEM1", "TP53", "UBA52", "UBB", "UBC" ] }, "position": { "x": 461.13923201189806, "y": 826.8043965014303, "id": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "name": [ "ABC TRANSPORTER DISORDERS%REACTOME DATABASE ID RELEASE 81%5619084" ], "description": [ "ABC transporter disorders" ], "pvalue": 0.0021, "gs_type": null, "gs_size": 78, "padj": 0.0287, "mcode_cluster_id": "Cluster 1", "NES": -1.5838, "genes": [ "ABCA1", "ABCA12", "ABCA3", "ABCB11", "ABCB4", "ABCB6", "ABCC2", "ABCC6", "ABCC8", "ABCC9", "ABCD1", "ABCD4", "ABCG5", "ABCG8", "APOA1", "CFTR", "DERL1", "DERL2", "DERL3", "ERLEC1", "ERLIN1", "ERLIN2", "KCNJ11", "LMBRD1", "OS9", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RNF185", "RNF5", "RPS27A", "SEL1L", "SEM1", "UBA52", "UBB", "UBC", "VCP" ] }, "position": { "x": 415.06616826794624, "y": 793.5747795789479, "id": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "93bb5f8a-51a6-4222-9790-2b87e4216040", "name": [ "DEFENSE RESPONSE TO BACTERIUM%GOBP%GO:0042742" ], "description": [ "defense response to bacterium" ], "pvalue": 0.0008, "gs_type": null, "gs_size": 229, "padj": 0.0126, "mcode_cluster_id": null, "NES": -1.632, "genes": [ "ADAM17", "ADGRB1", "AKIRIN2", "ANG", "ANKRD17", "ANXA3", "AQP1", "AZU1", "BPI", "BPIFA1", "CAMP", "CASP1", "CASP4", "CEBPB", "CFP", "CHGA", "COLEC12", "CRP", "CST11", "CTSG", "CXCL13", "DAO", "DCD", "DEFA1B", "DEFA3", "DEFA4", "DEFA5", "DEFA6", "DEFB1", "DEFB103B", "DEFB104B", "DEFB106B", "DEFB107B", "DEFB109B", "DEFB110", "DEFB114", "DEFB118", "DEFB119", "DEFB126", "DEFB127", "DEFB128", "DEFB130A", "DEFB130B", "DEFB132", "DEFB133", "DEFB136", "DEFB4B", "DMBT1", "DROSHA", "ELANE", "EPPIN", "EPX", "F2", "FAU", "FCER1G", "FCN2", "FGA", "FGB", "FGR", "FPR2", "GALP", "GBP1", "GBP2", "GBP3", "GBP4", "GBP6", "GBP7", "GNLY", "GPR15LG", "GSDMA", "GSDMB", "GSDMC", "GSDMD", "H2BC11", "H2BC12", "H2BC12L", "H2BC21", "H2BC8", "HAMP", "HLA-A", "HLA-E", "HMGB2", "HTN1", "HTN3", "IFNE", "IGHA1", "IGHA2", "IGHE", "IGHG1", "IGHG2", "IGHG3", "IGHG4", "IGHM", "IGKV3-20", "IKBKG", "IL12A", "IL12B", "IL18", "IL1B", "IL23A", "IL23R", "IL6", "IL6R", "IRGM", "ISG15", "JCHAIN", "KRT6A", "LACRT", "LALBA", "LBP", "LCE3A", "LCE3B", "LCE3C", "LCN2", "LPO", "LTF", "LYG1", "LYG2", "LYPD8", "LYST", "LYZ", "LYZL4", "LYZL6", "MAP3K7", "MARCHF2", "MAVS", "MBL2", "MICA", "MPEG1", "MPO", "MR1", "MYD88", "NAGK", "NAIP", "NCR3LG1", "NFKB1", "NLRC4", "NLRP1", "NLRP6", "NOD1", "NOD2", "NOS2", "OAS1", "OAS2", "OAS3", "OPTN", "PGLYRP1", "PGLYRP2", "PGLYRP3", "PGLYRP4", "PI3", "PLA2G1B", "PLA2G2A", "PLA2G6", "PPP1R11", "PRB3", "PRKCD", "PYCARD", "RAB1A", "RARRES2", "RASGRP4", "RBCK1", "REG3G", "RIPK2", "RNASE1", "RNASE10", "RNASE11", "RNASE12", "RNASE13", "RNASE2", "RNASE3", "RNASE4", "RNASE6", "RNASE7", "RNASE8", "RNASE9", "RNF213", "RNF31", "ROMO1", "RPL30", "RPL39", "RPS19", "S100A12", "S100A14", "S100A8", "S100A9", "SELP", "SEMG1", "SEMG2", "SERPINE1", "SFTPD", "SHARPIN", "SHC1", "SLAMF8", "SLC11A1", "SLC15A2", "SLC30A1", "SLPI", "SPN", "SPRR2A", "STAB1", "STAB2", "SYK", "TAB2", "TAB3", "TF", "TFEB", "TIRAP", "TLR2", "TLR3", "TLR4", "TLR6", "TLR9", "TNFRSF14", "TRAV27", "TREM1", "TREM2", "UMOD", "WFDC10A", "WFDC10B", "WFDC11", "WFDC12", "WFDC13", "WFDC2", "WFDC3", "WFDC5", "WFDC9", "XIAP", "ZNFX1" ] }, "position": { "x": 3033.5711576645913, "y": 270.191749386439, "id": "93bb5f8a-51a6-4222-9790-2b87e4216040" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "name": [ "GTP HYDROLYSIS AND JOINING OF THE 60S RIBOSOMAL SUBUNIT%REACTOME%R-HSA-72706.4" ], "description": [ "GTP hydrolysis and joining of the 60S ribosomal subunit" ], "pvalue": 2.1322e-18, "gs_type": null, "gs_size": 113, "padj": 8.8593e-16, "mcode_cluster_id": "Cluster 2", "NES": 2.7536, "genes": [ "EIF1AX", "EIF2S1", "EIF2S2", "EIF2S3", "EIF3A", "EIF3B", "EIF3C", "EIF3D", "EIF3E", "EIF3F", "EIF3G", "EIF3H", "EIF3I", "EIF3J", "EIF3K", "EIF3L", "EIF3M", "EIF4A1", "EIF4A2", "EIF4B", "EIF4E", "EIF4G1", "EIF4H", "EIF5", "EIF5B", "FAU", "RPL10", "RPL10A", "RPL10L", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL22L1", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL26L1", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL36AL", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL39L", "RPL3L", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "UBA52" ] }, "position": { "x": 874.3885384095815, "y": 304.90037669258334, "id": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "3e0e02c9-697c-4958-92c6-755f9726945b", "name": [ "REGULATION OF TYROSINE PHOSPHORYLATION OF STAT PROTEIN%GOBP%GO:0042509" ], "description": [ "regulation of tyrosine phosphorylation of STAT protein" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 58, "padj": 0.0024, "mcode_cluster_id": null, "NES": -1.9324, "genes": [ "ARL2BP", "CCL5", "CD40", "CLCF1", "CNOT7", "CNTF", "CRLF1", "CSF1R", "CSF2", "CSH1", "CSH2", "CSHL1", "CTF1", "EPO", "ERBB4", "FGFR3", "FLT3", "GH1", "GH2", "GHR", "HES1", "HES5", "IFNG", "IFNL1", "IGF1", "IL12A", "IL12B", "IL15", "IL18", "IL2", "IL20", "IL21", "IL22RA2", "IL23A", "IL23R", "IL3", "IL31RA", "IL4", "IL6", "IL6R", "IL6ST", "INPP5F", "JAK2", "KIT", "LIF", "NF2", "OSM", "PARP14", "PARP9", "PIBF1", "PTK6", "SOCS1", "SOCS3", "TNF", "TNFRSF18", "TNFRSF1A", "TNFSF18", "TSLP" ] }, "position": { "x": 15, "y": 2092.0155512683864, "id": "3e0e02c9-697c-4958-92c6-755f9726945b" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "530eec32-fab4-492a-abce-39f3ecda5689", "name": [ "MYELOID LEUKOCYTE ACTIVATION%GOBP%GO:0002274" ], "description": [ "myeloid leukocyte activation" ], "pvalue": 0.0043, "gs_type": null, "gs_size": 98, "padj": 0.0454, "mcode_cluster_id": null, "NES": -1.5902, "genes": [ "ADAM10", "ADAM9", "AGER", "AIF1", "ANXA1", "ANXA3", "APP", "AZU1", "BATF", "BATF2", "BATF3", "C1QA", "C5AR1", "CAMK4", "CAMP", "CCL3", "CCL5", "CD93", "CHGA", "CLU", "CRTC3", "CSF1", "CSF2", "CTSG", "CX3CL1", "CX3CR1", "CXCL6", "CXCL8", "CXCR2", "DCSTAMP", "DHRS2", "DNASE1", "DNASE1L3", "DOCK2", "DYSF", "EDN2", "ENPP3", "F2RL1", "FCER1A", "FCER1G", "FCER2", "FCGR2B", "FCGR3A", "FOXP1", "GPR15LG", "GRN", "GRP", "HMGB1", "HYAL2", "IFI35", "IFNG", "IFNGR1", "IL13", "IL15", "IL4", "ITGAM", "ITGB2", "JAK2", "KARS1", "KIT", "KMT2E", "LBP", "LILRA2", "MAPT", "MILR1", "MRGPRX2", "MT1G", "NMI", "NR4A3", "PIK3CD", "PIK3CG", "PLCG2", "PREX1", "PRG3", "PRKCD", "PYCARD", "S100A12", "S100A13", "SBNO2", "SLAMF1", "SLC11A1", "SNAP23", "SNCA", "SPACA3", "STXBP2", "STXBP3", "SYK", "TGFBR2", "TLR1", "TLR4", "TMEM106A", "TNF", "TREM2", "TYROBP", "UBD", "VAMP2", "VAMP7", "VAMP8" ] }, "position": { "x": 1654.5, "y": 2195.9446642487483, "id": "530eec32-fab4-492a-abce-39f3ecda5689" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "34e491a2-88ea-4d07-8f26-597638ce6d2f", "name": [ "NEGATIVE REGULATION OF VIRAL GENOME REPLICATION%GOBP%GO:0045071" ], "description": [ "negative regulation of viral genome replication" ], "pvalue": 1.2501e-15, "gs_type": null, "gs_size": 54, "padj": 1.484e-13, "mcode_cluster_id": "Cluster 29", "NES": -2.714, "genes": [ "AICDA", "APOBEC3A", "APOBEC3B", "APOBEC3C", "APOBEC3D", "APOBEC3F", "APOBEC3G", "APOBEC3H", "BANF1", "BST2", "BTBD17", "CCL5", "EIF2AK2", "FAM111A", "HMGA2", "IFI16", "IFIH1", "IFIT1", "IFIT5", "IFITM1", "IFITM2", "IFITM3", "IFNB1", "IFNL3", "ILF3", "INPP5K", "ISG15", "ISG20", "LTF", "MAVS", "MORC2", "MPHOSPH8", "MX1", "N4BP1", "OAS1", "OAS2", "OAS3", "OASL", "PLSCR1", "PROX1", "RESF1", "RNASEL", "RSAD2", "SETDB1", "SHFL", "SLPI", "SRPK1", "SRPK2", "TASOR", "TNF", "TNIP1", "TRIM6", "ZC3HAV1", "ZNFX1" ] }, "position": { "x": 1138.7317529835336, "y": 1346.728190473622, "id": "34e491a2-88ea-4d07-8f26-597638ce6d2f", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "1c4c351c-b31f-42ba-902e-5c7078a9fc98", "name": [ "MEASLES VIRUS INFECTION%WIKIPATHWAYS_20240410%WP4630%HOMO SAPIENS" ], "description": [ "Measles virus infection" ], "pvalue": 0.0000076142, "gs_type": null, "gs_size": 123, "padj": 0.0003, "mcode_cluster_id": null, "NES": -1.9189, "genes": [ "ADAR", "APAF1", "BAD", "BAK1", "BAX", "BBC3", "BCL2", "BCL2L1", "CASP3", "CASP8", "CASP9", "CCND1", "CCND2", "CCND3", "CCNE1", "CCNE2", "CD209", "CD3D", "CD3E", "CD3G", "CD46", "CDK2", "CDK4", "CDK6", "CDKN1B", "CHUK", "CLEC4M", "CSNK2A1", "CSNK2A2", "CSNK2A3", "CSNK2B", "CYCS", "DKFZp781H1925", "EIF2AK1", "EIF2AK2", "EIF2AK4", "EIF2S1", "EIF3S3", "FADD", "FAS", "FCGR2B", "FOS", "HEL-S-103", "HEL-S-72p", "HEL70", "HSPA2", "IF1AA1", "IF1AA3", "IF1AA4", "IF1AA5", "IF1AA6", "IF1AA8", "IF1AA9", "IF1AB1", "IF1AB4", "IF1DA1", "IFIH1", "IFNA1", "IFNA13", "IFNA14", "IFNA4", "IFNAR1", "IFNAR2", "IKBKB", "IKBKE", "IKBKG", "IL12A", "IL12B", "IL1A", "IL1B", "IL2", "IL2RA", "IL2RB", "IL2RG", "IL6", "IRAK1", "IRAK4", "IRF3", "IRF7", "IRF9", "JAK1", "JAK3", "JUN", "LNIR", "MAP3K7", "MAPK10", "MAPK8", "MAPK9", "MAVS", "MX1", "MYD88", "NFKB1", "NFKB2", "NFKBIA", "NFKBIB", "OAS1", "OAS2", "OAS3", "PIK3CD", "PIK3R1", "PIK3R2", "PIK3R3", "RAB9A", "RAB9B", "RCHY1", "RELA", "RIGI", "SLAMF1", "STAT1", "STAT2", "STAT3", "STAT5B", "TBK1", "TLR4", "TLR7", "TLR9", "TNFAIP3", "TNFSF6", "TP73", "TRADD", "TRAF3", "TRAF6", "TYK2" ] }, "position": { "x": 1598.6601190595018, "y": 1801.8587965586644, "id": "1c4c351c-b31f-42ba-902e-5c7078a9fc98" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "58278b87-f7c8-4544-aa45-b17322914faf", "name": [ "POSITIVE REGULATION OF CELL DEVELOPMENT%GOBP%GO:0010720" ], "description": [ "positive regulation of cell development" ], "pvalue": 0.0031, "gs_type": null, "gs_size": 287, "padj": 0.0363, "mcode_cluster_id": null, "NES": -1.4141, "genes": [ "ACAN", "ACIN1", "ACTB", "ACTL6A", "ACTL6B", "ADAM7", "ADAM8", "ADD1", "ADIPOQ", "AGER", "AMBRA1", "AMIGO1", "ANXA1", "ARID1A", "ARID1B", "ARID2", "AXL", "BAD", "BCAN", "BCL6", "BDNF", "BIN1", "BMP2", "BMP4", "BNC1", "BRD2", "BRD4", "BRD7", "BTK", "CAMK2B", "CAPRIN1", "CAPRIN2", "CASP8", "CBFB", "CCL19", "CCR1", "CD27", "CD4", "CD46", "CD74", "CD80", "CD86", "CDH5", "CDKL3", "CDKL5", "CHODL", "CLCF1", "CLDN5", "CLEC7A", "CR1", "CSF1", "CTNNB1", "CTNNBIP1", "CUL7", "CUX1", "CUX2", "CX3CL1", "CX3CR1", "CXCR4", "DBN1", "DCSTAMP", "DCT", "DDRGK1", "DHX36", "DICER1", "DISC1", "DRD2", "DSCAM", "DUSP10", "EEIG1", "EGR2", "EP300", "EVI2B", "F11R", "FADD", "FBXW8", "FES", "FMR1", "FOXO3", "FOXP3", "FXR1", "FXR2", "FZD3", "GAS6", "GATA3", "GLI2", "GLI3", "GOLGA4", "GPER1", "GPRASP3", "HAPLN1", "HAPLN2", "HAPLN3", "HAPLN4", "HAX1", "HCLS1", "HES1", "HLA-DRA", "HLA-DRB1", "HLA-G", "HMGB1", "HOXA11", "HSF1", "ID2", "IFNG", "IHH", "IL10", "IL12B", "IL12RB1", "IL17A", "IL18", "IL1B", "IL1RAPL1", "IL2", "IL23A", "IL23R", "IL34", "IL36B", "IL4", "IL4I1", "IL6", "IL7", "INPP5D", "ISLR2", "KAT5", "KDM1A", "KHDC3L", "KLHL25", "L1CAM", "LEF1", "LGALS1", "LGALS3", "LGALS9", "LIF", "LIG4", "LILRB2", "LILRB4", "LIMK1", "LMOD3", "LRP2", "LRP8", "MACF1", "MALT1", "MAP3K13", "MAP6", "MAPT", "MDK", "MEGF8", "METRN", "MME", "MMP14", "MYF5", "MYF6", "MYOD1", "MYOG", "NAP1L1", "NCAN", "NCKAP1L", "NEDD9", "NEURL1", "NFKBID", "NFKBIZ", "NIBAN2", "NKAP", "NKX6-1", "NLRP3", "NOTCH1", "NPTN", "NRDC", "NRP1", "NTN1", "NTRK2", "NUMB", "NUMBL", "OBSL1", "OCSTAMP", "OPA1", "OPRM1", "PBRM1", "PCK1", "PF4", "PHF10", "PLXNA1", "PLXNA2", "PLXNA3", "PLXNA4", "PLXNB1", "PLXNB2", "PLXNB3", "PLXNC1", "PLXND1", "PNP", "POU4F1", "POU4F2", "PPP2R3C", "PPP3CA", "PRKCA", "PRKCH", "PRKCI", "PRKCZ", "PRKDC", "PROC", "PTN", "PTPRD", "PTPRZ1", "RARA", "RASSF10", "RELN", "RFX3", "RGS14", "RHOH", "RIPK1", "ROBO1", "ROBO2", "RPTOR", "RUFY3", "RUNX1", "RUNX3", "S1PR2", "SART1", "SEMA4D", "SEMA5A", "SEMA7A", "SERPINE2", "SERPINF1", "SHANK3", "SHH", "SHTN1", "SIRT2", "SLIT2", "SLITRK1", "SMARCA2", "SMARCA4", "SMARCB1", "SMARCC1", "SMARCC2", "SMARCD1", "SMARCD2", "SMARCD3", "SMARCE1", "SNW1", "SOCS1", "SOCS5", "SOX11", "SOX12", "SOX4", "SOX8", "SPEN", "SPI1", "SS18L1", "SYK", "TENM4", "TESC", "TESPA1", "TGFB1", "TGFBR2", "TGM2", "TIAM1", "TIAM2", "TLR9", "TMEM64", "TMPRSS12", "TNF", "TNFRSF11A", "TNFRSF1B", "TNFSF11", "TNFSF4", "TNFSF9", "TRAF6", "TRIM32", "TTBK1", "TWF2", "TYROBP", "VCAN", "VEGFA", "VNN1", "VSIR", "XBP1", "XRCC6", "ZAP70", "ZBTB1", "ZBTB7B", "ZFP36L1", "ZFYVE27", "ZMIZ1", "ZNF335", "ZNF365" ] }, "position": { "x": 2598.2337976438234, "y": 169.9135651771835, "id": "58278b87-f7c8-4544-aa45-b17322914faf" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "fa233ae1-349f-4830-91aa-77eaeb7bd001", "name": [ "NEGATIVE REGULATION OF CELL-CELL ADHESION%GOBP%GO:0022408" ], "description": [ "negative regulation of cell-cell adhesion" ], "pvalue": 0.0006, "gs_type": null, "gs_size": 150, "padj": 0.0103, "mcode_cluster_id": null, "NES": -1.6453, "genes": [ "ABCA12", "ADAMTS18", "ADIPOQ", "ADTRP", "AKNA", "AKT1", "ALOX12", "ANXA1", "APOA1", "ARG1", "ASS1", "B4GALNT2", "BMP2", "BMP4", "BMP6", "BTN2A2", "C1QTNF1", "CBFB", "CCL21", "CCL25", "CCL28", "CD274", "CD300A", "CD9", "CDH1", "CDSN", "CEACAM1", "CEBPB", "CR1", "CRTAM", "CTLA4", "CTSG", "CXCL12", "DAPL1", "DLG5", "DUSP3", "EPCAM", "FGL1", "FOXJ1", "FOXP3", "FXYD5", "GLI3", "GLMN", "GPNMB", "GTPBP4", "HAVCR2", "HFE", "HLA-DRB1", "HLA-E", "HLA-G", "HMGB1", "IFNA2", "IFNB1", "IFNL1", "IHH", "IL10", "IL1RN", "IL4I1", "ILDR2", "IRF1", "JAG1", "JAK3", "KLF4", "LAG3", "LAPTM5", "LAX1", "LGALS3", "LGALS9", "LGALS9B", "LGALS9C", "LILRB1", "LILRB2", "LILRB4", "LOXL3", "MAD2L2", "MAP2K5", "MAPK7", "MBP", "MDK", "METTL3", "MIA3", "MUC21", "MYADM", "NEXMIF", "NF2", "NOTCH1", "NOTCH4", "PAG1", "PDCD1", "PDCD1LG2", "PLA2G2A", "PLA2G2D", "PLA2G2E", "PLA2G2F", "PLA2G5", "PLG", "PODXL", "PPARA", "PPM1F", "PRKAR1A", "PRKCD", "PRKG1", "PRNP", "PTK2", "PTPN2", "PTPN22", "RC3H1", "RC3H2", "RDX", "RGCC", "RIPOR2", "RUNX1", "RUNX3", "SCRIB", "SDC4", "SERPINE2", "SFTPD", "SH2B3", "SLC4A2", "SMAD7", "SOCS1", "SOCS5", "SPI1", "SPINT2", "SPN", "TARM1", "TBX21", "TGFB1", "TIGIT", "TMEM131L", "TMX1", "TNFAIP8L2", "TNFRSF14", "TNFRSF21", "TNFSF4", "TRPV4", "TWSG1", "UFL1", "VEGFA", "VSIG4", "VSIR", "VTCN1", "WNK1", "WNT1", "XCL1", "YTHDF2", "ZBTB7B", "ZC3H12A", "ZC3H8", "ZNF703" ] }, "position": { "x": 2372.8566453658427, "y": 278.11777749795044, "id": "fa233ae1-349f-4830-91aa-77eaeb7bd001" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "a43c5c6e-b75a-46eb-ad38-bf93f14d030c", "name": [ "PURINE NUCLEOSIDE PHOSPHORYLASE DEFICIENCY%SMPDB%SMP0000210" ], "description": [ "Purine Nucleoside Phosphorylase Deficiency" ], "pvalue": 0.0025, "gs_type": null, "gs_size": 37, "padj": 0.031, "mcode_cluster_id": "Cluster 3", "NES": -1.6821, "genes": [ "ADA", "ADCY2", "ADSL", "ADSS2", "AK1", "AMPD1", "APRT", "ATAD1", "ATIC", "DGUOK", "ENTPD5", "ENTPD8", "GART", "GDA", "GMPR", "GMPS", "GUCY1A2", "GUCY1B1", "GUK1", "HPRT1", "IMPDH1", "ITPA", "NME6", "NT5C2", "NUDT2", "NUDT5", "PAICS", "PDE10A", "PDE4D", "PFAS", "PNP", "PPAT", "PRPS1L1", "RRM1", "RRM2", "TXN", "XDH" ] }, "position": { "x": 1451.6982000079363, "y": 1377.561236566998, "id": "a43c5c6e-b75a-46eb-ad38-bf93f14d030c", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "8f4712ea-2e89-4712-a648-476a4a49de85", "name": [ "REGULATION OF HYDROLASE ACTIVITY%GOBP%GO:0051336" ], "description": [ "regulation of hydrolase activity" ], "pvalue": 0.0008, "gs_type": null, "gs_size": 538, "padj": 0.0136, "mcode_cluster_id": "Cluster 40", "NES": -1.3972, "genes": [ "A2ML1", "ABCE1", "ABL1", "ABL2", "ABR", "ACER2", "ACVR1C", "ADAP1", "ADCYAP1", "ADRA1A", "AGER", "AGRN", "AGTR1", "AGTR2", "AIFM1", "AIM2", "AKT1", "ALS2", "ANG", "ANGPTL3", "ANGPTL4", "ANP32B", "ANXA8", "APAF1", "APC2", "APCS", "APH1A", "APH1B", "APOA1", "APOA2", "APOA4", "APOA5", "APOC1", "APOC2", "APOC3", "APOH", "AQP1", "ARAP1", "ARFGEF1", "ARHGAP11A", "ARHGAP11B", "ARHGAP42", "ARHGAP44", "ARHGEF10", "ARHGEF16", "ARHGEF5", "ARHGEF7", "ARL2", "ARL6IP1", "ARL6IP5", "ASAP3", "ASPH", "ATP13A2", "ATP2A3", "ATP5IF1", "AVP", "AVPR1A", "AVPR1B", "BAD", "BAK1", "BARGIN", "BCAR3", "BCL10", "BCL2L10", "BCL2L12", "BCL2L13", "BCR", "BICD1", "BIN1", "BIRC2", "BIRC3", "BLID", "BMP2", "BOD1", "BOK", "BVES", "C5AR1", "C9orf72", "CAAP1", "CALM1", "CALM2", "CALM3", "CAMK2A", "CARD16", "CARD18", "CARD8", "CARD9", "CASC2", "CASP1", "CASP8", "CASP8AP2", "CASP9", "CAST", "CAV1", "CAV2", "CCDC125", "CCL11", "CCL19", "CCL24", "CCL26", "CCL5", "CD200", "CD300A", "CD40", "CD44", "CD86", "CDK5RAP3", "CDKL5", "CDKN2D", "CHP1", "CHP2", "CLDN3", "CLDN4", "CLEC7A", "COL4A3", "CORO1C", "CR1", "CRB2", "CRK", "CRY2", "CSN2", "CSNK2A1", "CST3", "CST7", "CSTA", "CSTB", "CTSD", "CTSH", "CXCL13", "CYFIP2", "DAB2IP", "DAP", "DAPK1", "DDRGK1", "DDX11", "DDX3X", "DFFA", "DIABLO", "DLC1", "DNAJB6", "DOCK10", "DOCK11", "DOCK7", "DOCK8", "DOCK9", "DPEP1", "DVL3", "ECM1", "ECT2", "EFNA1", "EFNA3", "EFNA5", "EGFR", "EGLN1", "EGLN3", "EIF2AK3", "EPHA1", "EPHA2", "EPHA3", "EPHA4", "EPHA5", "EPHA7", "EPHB3", "EPPIN", "ESR1", "EVI5", "EVI5L", "EZH2", "F2R", "F2RL1", "F3", "FABP1", "FADD", "FAM162A", "FAS", "FASLG", "FCRL3", "FERMT2", "FETUB", "FGD1", "FGD2", "FGD3", "FGD4", "FGD5", "FGD6", "FGFR1", "FGFR2", "FGFR3", "FICD", "FLT1", "FNIP1", "FNTA", "FOXJ1", "FOXL2", "FURIN", "FYN", "GAPDH", "GAS6", "GBA3", "GMIP", "GNA12", "GNA15", "GNAQ", "GNAT1", "GNB5", "GPER1", "GPIHBP1", "GPLD1", "GPR137B", "GPR55", "GPR65", "GPSM1", "GPX1", "GRAMD4", "GRIN2A", "GRIN2B", "GRN", "GSK3B", "GSN", "GZMA", "HIP1", "HIP1R", "HMGB1", "HRAS", "HSP90AB1", "HSP90B1", "HSPA1A", "HSPD1", "HSPE1", "HTR2A", "HTR2B", "HTRA2", "HTT", "IFI16", "IFI6", "IFNG", "IFT57", "IGBP1", "IKBKB", "ITGA1", "ITGA6", "ITGB1", "ITGB1BP1", "ITK", "JAK2", "KIT", "KLF4", "KLRK1", "LAMP3", "LAMTOR5", "LAPTM5", "LARS1", "LCK", "LGALS3", "LGALS9", "LGMN", "LIMS1", "LPAR1", "LPAR2", "LRCH1", "LRP1", "LRRK2", "LTF", "LYN", "MAGEA3", "MAGI2", "MALT1", "MAP2K5", "MAP3K5", "MAP4K4", "MAPK12", "MAPRE2", "MAPT", "MASTL", "MBP", "MEF2C", "MEFV", "MET", "MGAT5", "MMP9", "MMUT", "MT-RNR1", "MTCH1", "MTMR9", "MTOR", "MTSS2", "MUL1", "MYC", "NAIP", "NCKAP1L", "NCSTN", "NDEL1", "NEIL1", "NET1", "NF1", "NGEF", "NGFR", "NKX3-1", "NLRC4", "NLRP1", "NLRP12", "NOD1", "NODAL", "NOL3", "NOS1", "NPM1", "NR1H2", "NR1H3", "NRDC", "NTF3", "NTRK1", "NTRK2", "NTRK3", "NUAK1", "OAS1", "OAS3", "ODAM", "P2RY6", "PAK2", "PARK7", "PAX2", "PCID2", "PCNA", "PDCD2", "PDCD5", "PDCD6", "PDE3A", "PDGFRA", "PDGFRB", "PDPK1", "PERP", "PHB1", "PHB2", "PIDD1", "PIH1D1", "PIN1", "PINK1", "PIP5K1A", "PKP4", "PLA2G1B", "PLA2G5", "PLA2R1", "PLAA", "PLAUR", "PLCB2", "PLEK", "PLIN5", "PLXNB1", "PLXNB2", "PLXNB3", "PMAIP1", "PNLIP", "PPARG", "PPM1F", "PPP1R12A", "PPP1R14D", "PPP1R15A", "PPP1R17", "PPP1R1B", "PPP4R4", "PPP6R1", "PPP6R3", "PRELID1", "PRKCD", "PRKG1", "PROM2", "PRR7", "PRSS22", "PRTN3", "PSAP", "PSENEN", "PSMA3", "PSMB8", "PSMB9", "PTH", "PTK2", "PTPA", "PTX3", "PYCARD", "RAB11FIP2", "RAB3GAP1", "RAB3GAP2", "RABGAP1", "RACK1", "RAF1", "RALBP1", "RALGAPA1", "RALGAPA2", "RALGAPB", "RANGAP1", "RAP1A", "RAP1GAP", "RAPGEF1", "RAPGEF2", "RAPGEF3", "RAPGEF6", "RASA4", "RASGRF1", "RASGRP1", "RASGRP2", "RASIP1", "RCC2", "RCN3", "RDX", "RECK", "REST", "RFFL", "RFPL1", "RGP1", "RGS1", "RGS10", "RGS16", "RGS2", "RGS6", "RGS7", "RGS8", "RHOA", "RHOC", "RHOG", "RIC1", "RIPK2", "RIPK3", "RIPOR2", "RNF34", "ROBO1", "ROCK1", "ROCK2", "RPS27L", "RPS3", "RPS6KA1", "RPS6KA3", "RRP1B", "RSU1", "RTN4R", "S100A10", "S100A8", "S100A9", "S1PR4", "SCRIB", "SELE", "SEMA4D", "SEMG1", "SEMG2", "SENP1", "SERPINA5", "SERPINB1", "SERPINB13", "SERPINB3", "SERPINB4", "SERPINB6", "SERPINB8", "SERPINB9", "SERPINE1", "SFRP1", "SGSM2", "SGSM3", "SH3BP1", "SH3BP4", "SH3RF1", "SIAH2", "SIPA1L1", "SIRT1", "SLC22A2", "SLC27A4", "SLC39A14", "SMAD3", "SMCR8", "SNCA", "SNX13", "SNX18", "SNX9", "SOD1", "SORT1", "SOX2", "SOX7", "SPOCK1", "SPOCK2", "SPOCK3", "SRC", "SRGAP2", "ST18", "ST20", "STAT3", "STMN1", "STMN3", "STYXL1", "SVBP", "SYDE1", "SYDE2", "SYK", "TANK", "TAX1BP3", "TBC1D10A", "TBC1D10B", "TBC1D15", "TBC1D2", "TBC1D20", "TBC1D30", "TBC1D7", "TERF1", "TERF2", "TGM2", "THBS1", "THY1", "TIAM1", "TIMP1", "TIMP2", "TIMP3", "TIPRL", "TMBIM6", "TMED2", "TNF", "TNFSF10", "TNFSF15", "TRIAP1", "TSC1", "TTBK1", "TXK", "UBXN1", "URI1", "USP17L2", "USP47", "USP50", "USP6NL", "VAV1", "VAV2", "VAV3", "VCP", "VEGFA", "VSIR", "VTN", "WDR41", "WNK1", "WNT11", "WRN", "XDH", "XIAP", "ZC3H15" ] }, "position": { "x": 801.1165881285282, "y": 1864.774005568344, "id": "8f4712ea-2e89-4712-a648-476a4a49de85", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "name": [ "KEAP1-NFE2L2 PATHWAY%REACTOME DATABASE ID RELEASE 81%9755511" ], "description": [ "KEAP1-NFE2L2 pathway" ], "pvalue": 0.0006, "gs_type": null, "gs_size": 124, "padj": 0.0105, "mcode_cluster_id": "Cluster 1", "NES": -1.6422, "genes": [ "ABCC1", "ABCC3", "ABCF2", "ABCG2", "AKT1", "AKT2", "AKT3", "AMER1", "AREG", "ATF4", "BACH1", "BCL2", "BCL2L1", "BRCA1", "BTRC", "CCL2", "CDKN1A", "CDKN2A", "CREBBP", "CSNK2A1", "CSNK2A2", "CSNK2B", "CUL1", "CUL3", "DPP3", "EGF", "EIF2AK3", "EP300", "FBXL17", "G6PD", "GCLC", "GCLM", "GSK3B", "GSTA1", "GSTA3", "HMOX1", "IDH1", "KEAP1", "MAFG", "MAFK", "MAP1LC3B", "ME1", "MUL1", "MYC", "NFE2L2", "NFKB1", "NOTCH1", "NPLOC4", "NQO1", "PALB2", "PDGFA", "PGD", "PRDX1", "PRKAA2", "PRKCD", "PRKCI", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RBX1", "RELA", "RPS27A", "SEM1", "SESN1", "SESN2", "SKP1", "SKP2", "SLC7A11", "SOD3", "SP1", "SQSTM1", "SRXN1", "TALDO1", "TKT", "TRIM21", "TXN", "TXNRD1", "UBA52", "UBB", "UBC", "UBXN7", "UFD1", "VCP" ] }, "position": { "x": 478.19960797172837, "y": 772.7772714208094, "id": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "1d095a2d-3ae2-4ac0-887d-56713f8f4961", "name": [ "A6B1 AND A6B4 INTEGRIN SIGNALING%PATHWAY INTERACTION DATABASE NCI-NATURE CURATED DATA%A6B1 AND A6B4 INTEGRIN SIGNALING" ], "description": [ "a6b1 and a6b4 Integrin signaling" ], "pvalue": 0.0017, "gs_type": null, "gs_size": 45, "padj": 0.0233, "mcode_cluster_id": null, "NES": -1.6878, "genes": [ "AKT1", "CASP7", "CD9", "CDH1", "COL17A1", "EGF", "EGFR", "ERBB2", "ERBB3", "GRB2", "HRAS", "IL1A", "ITGA6", "ITGB1", "ITGB4", "LAMA1", "LAMA2", "LAMA3", "LAMA4", "LAMA5", "LAMB1", "LAMB2", "LAMB3", "LAMC1", "LAMC2", "MET", "MST1", "MST1R", "PIK3CA", "PIK3R1", "PMP22", "PRKCA", "RAC1", "RPS6KB1", "RXRA", "RXRB", "RXRG", "SFN", "SHC1", "YWHAB", "YWHAE", "YWHAG", "YWHAH", "YWHAQ", "YWHAZ" ] }, "position": { "x": 2809.5, "y": 2195.9446642487483, "id": "1d095a2d-3ae2-4ac0-887d-56713f8f4961" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "85937333-3f44-4ef0-af10-f315b562f032", "name": [ "POSITIVE REGULATION OF DNA-BINDING TRANSCRIPTION FACTOR ACTIVITY%GOBP%GO:0051091" ], "description": [ "positive regulation of DNA-binding transcription factor activity" ], "pvalue": 0.0007, "gs_type": null, "gs_size": 199, "padj": 0.0121, "mcode_cluster_id": "Cluster 37", "NES": -1.5493, "genes": [ "ADCY1", "ADCY8", "AGER", "AGT", "AIM2", "AKT1", "ALK", "ANXA3", "AR", "ARHGEF2", "ARHGEF5", "ARID5B", "ATF2", "BCL10", "BEX1", "BMP2", "BTK", "BUD31", "CAMK1D", "CAMK2A", "CAPN3", "CARD11", "CARD14", "CARD16", "CARD9", "CD200", "CD40", "CD40LG", "CEBPG", "CFLAR", "CHUK", "CIB1", "CLEC7A", "CLOCK", "CLU", "COPS5", "CRNN", "CRTC1", "CRTC2", "DDIT3", "DDR2", "DDRGK1", "DHX33", "DHX9", "DVL2", "EDN1", "EIF2AK2", "EP300", "EPHA5", "ERC1", "ESR1", "ESR2", "FANK1", "FER", "FOXA1", "FZD1", "FZD2", "FZD4", "HDAC4", "HDAC5", "HIPK2", "HSF1", "HSPA1A", "HSPA1B", "IKBKB", "IKBKE", "IKBKG", "IL10", "IL18", "IL18R1", "IL18RAP", "IL1B", "IL6", "INS", "IRAK1", "IRAK2", "IRAK3", "JUP", "KIT", "LAMTOR5", "LGALS9", "LRP6", "LTF", "MALT1", "MAP3K13", "MAVS", "MID2", "MTDH", "MTPN", "MYD88", "MYOCD", "NEUROD1", "NEUROD2", "NEUROG1", "NEUROG2", "NHLH2", "NKX6-1", "NLRC4", "NLRP3", "NOD1", "NOD2", "NODAL", "NPM1", "NTRK1", "NTS", "OPRD1", "PARK7", "PHB2", "PIDD1", "PLA2G1B", "PLCG2", "PLPP3", "PPARG", "PPARGC1A", "PPIA", "PRDX3", "PRKCH", "PRKCI", "PRKCQ", "PRKCZ", "PRKD1", "PRKD2", "PSMA6", "PTEN", "PYCARD", "RAB7B", "RBCK1", "RELA", "RGCC", "RHEBL1", "RIPK1", "RIPK2", "RIPK3", "RIPK4", "RNF220", "RNF25", "RNF31", "ROR1", "RPS3", "RPS6KA4", "RPS6KA5", "RTKN2", "S100A12", "S100A8", "S100A9", "SLCO3A1", "SMAD3", "SMARCA4", "SMARCB1", "SPHK1", "SRF", "STAT3", "STING1", "STK3", "SYT14P1", "TAF1", "TCF3", "TERF2IP", "TFDP1", "TFRC", "TIRAP", "TLR2", "TLR4", "TNF", "TNFRSF11A", "TNFSF11", "TNFSF18", "TP53BP1", "TRADD", "TRAF1", "TRAF2", "TRAF5", "TRAF6", "TRIM13", "TRIM14", "TRIM15", "TRIM21", "TRIM22", "TRIM25", "TRIM26", "TRIM27", "TRIM31", "TRIM32", "TRIM34", "TRIM37", "TRIM38", "TRIM5", "TRIM52", "TRIM62", "TRIM8", "TSSK4", "UBE2N", "UBE2V1", "WNT1", "WNT2", "WNT5A", "ZBTB7A", "ZC4H2", "ZIC2" ] }, "position": { "x": 73.78803393230237, "y": 1865.0805053387394, "id": "85937333-3f44-4ef0-af10-f315b562f032", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "2fbf60f2-400f-46dd-9a0c-75ecf6cf3bf5", "name": [ "MYD88 DEPENDENT CASCADE INITIATED ON ENDOSOME%REACTOME DATABASE ID RELEASE 81%975155" ], "description": [ "MyD88 dependent cascade initiated on endosome" ], "pvalue": 0.0041, "gs_type": null, "gs_size": 100, "padj": 0.0438, "mcode_cluster_id": "Cluster 13", "NES": -1.5243, "genes": [ "AGER", "ALPK1", "APP", "ATF1", "ATF2", "BTRC", "CASP8", "CD14", "CHUK", "CUL1", "DUSP3", "DUSP4", "DUSP6", "DUSP7", "ECSIT", "ELK1", "FBXW11", "FOS", "HMGB1", "IKBIP", "IKBKB", "IKBKG", "IRAK1", "IRAK2", "IRAK4", "IRF7", "JUN", "LRRC14", "LY96", "MAP2K1", "MAP2K3", "MAP2K4", "MAP2K6", "MAP2K7", "MAP3K1", "MAP3K7", "MAP3K8", "MAPK1", "MAPK10", "MAPK11", "MAPK14", "MAPK3", "MAPK7", "MAPK8", "MAPK9", "MAPKAPK2", "MAPKAPK3", "MEF2A", "MEF2C", "MYD88", "N4BP1", "NFKB1", "NFKB2", "NFKBIA", "NFKBIB", "NKIRAS1", "NKIRAS2", "NLRC5", "NLRX1", "NOD1", "NOD2", "PELI1", "PELI2", "PELI3", "PPP2CA", "PPP2CB", "PPP2R1A", "PPP2R1B", "PPP2R5D", "RELA", "RIPK2", "RPS27A", "RPS6KA1", "RPS6KA2", "RPS6KA3", "RPS6KA5", "S100A12", "S100B", "SAA1", "SKP1", "TAB1", "TAB2", "TAB3", "TICAM1", "TICAM2", "TIFA", "TLR4", "TLR7", "TLR9", "TNIP2", "TP53", "TRAF6", "UBA52", "UBB", "UBC", "UBE2N", "UBE2V1", "USP14", "USP18", "VRK3" ] }, "position": { "x": 126.77051339452305, "y": 1084.5302529246121, "id": "2fbf60f2-400f-46dd-9a0c-75ecf6cf3bf5", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "22b8b7ad-1c2f-4d8d-a4de-249e80b45aa5", "name": [ "MAMMARY GLAND EPITHELIUM DEVELOPMENT%GOBP%GO:0061180" ], "description": [ "mammary gland epithelium development" ], "pvalue": 0.0013, "gs_type": null, "gs_size": 18, "padj": 0.02, "mcode_cluster_id": null, "NES": -1.8372, "genes": [ "AKT1", "AKT2", "CSF1R", "EPHA2", "ERBB4", "FGFR2", "FOXB1", "ID2", "IRF6", "JAK2", "LATS1", "PERP", "SCRIB", "WNT2", "WNT3", "WNT4", "WNT7B", "ZNF703" ] }, "position": { "x": 1346.5, "y": 2272.9446642487483, "id": "22b8b7ad-1c2f-4d8d-a4de-249e80b45aa5" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "f71cb3b6-c7e0-4a22-b9d5-e64e1c7579fd", "name": [ "EMBRYONIC SKELETAL SYSTEM DEVELOPMENT%GOBP%GO:0048706" ], "description": [ "embryonic skeletal system development" ], "pvalue": 0.001, "gs_type": null, "gs_size": 50, "padj": 0.0156, "mcode_cluster_id": null, "NES": -1.7487, "genes": [ "ALX1", "COL1A1", "COL2A1", "CTNNB1", "DEAF1", "DSCAML1", "DYNC2I1", "EIF4A3", "FGFR2", "FUZ", "HOXA1", "HOXA3", "HOXA4", "HOXA9", "HOXB3", "HOXB4", "HOXB9", "HOXC4", "HOXC9", "HOXD3", "HOXD4", "HOXD9", "IRX5", "KIAA1217", "LHX1", "MEGF8", "MTHFD1", "MTHFD1L", "NIPBL", "NOG", "OSR1", "OSR2", "PCSK5", "PDGFRA", "RBP4", "SIX1", "SLC2A10", "SOX11", "SULF1", "SULF2", "TBX1", "TFAP2A", "TGFBR1", "TGFBR2", "TWIST1", "UCMA", "WNT11", "WNT5A", "WNT9A", "XYLT1" ] }, "position": { "x": 547.8524008363796, "y": 1236.5284173408518, "id": "f71cb3b6-c7e0-4a22-b9d5-e64e1c7579fd" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "64d7c015-c260-4724-bd99-69ee54c28eed", "name": [ "ADP METABOLIC PROCESS%GOBP%GO:0046031" ], "description": [ "ADP metabolic process" ], "pvalue": 0.0014, "gs_type": null, "gs_size": 36, "padj": 0.0209, "mcode_cluster_id": "Cluster 4", "NES": 1.8011, "genes": [ "ADPGK", "AK5", "ALDOA", "ALDOB", "ALDOC", "BAD", "ENO1", "ENO2", "ENO3", "ENO4", "FOXK1", "FOXK2", "GAPDH", "GAPDHS", "GCK", "GPI", "HK1", "HK2", "HK3", "HKDC1", "LDHA", "PFKFB1", "PFKFB2", "PFKL", "PFKM", "PFKP", "PGAM1", "PGAM2", "PGAM4", "PGK1", "PGK2", "PGM1", "PKLR", "PKM", "TPI1", "UCP2" ] }, "position": { "x": 3740.8300978070965, "y": 1644.0518047851415, "id": "64d7c015-c260-4724-bd99-69ee54c28eed", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "cf5b2c91-a143-44f5-a248-9063b55a2ada", "name": [ "TOLL LIKE RECEPTOR 9 (TLR9) CASCADE%REACTOME%R-HSA-168138.5" ], "description": [ "Toll Like Receptor 9 (TLR9) Cascade" ], "pvalue": 0.0035, "gs_type": null, "gs_size": 104, "padj": 0.0407, "mcode_cluster_id": "Cluster 13", "NES": -1.5061, "genes": [ "AGER", "ALPK1", "APP", "ATF1", "ATF2", "BTRC", "CASP8", "CD14", "CHUK", "CUL1", "DUSP3", "DUSP4", "DUSP6", "DUSP7", "ECSIT", "EEA1", "ELK1", "FBXW11", "FOS", "HMGB1", "IKBIP", "IKBKB", "IKBKG", "IRAK1", "IRAK2", "IRAK4", "IRF7", "JUN", "LRRC14", "LY96", "MAP2K1", "MAP2K3", "MAP2K4", "MAP2K6", "MAP2K7", "MAP3K1", "MAP3K7", "MAP3K8", "MAPK1", "MAPK10", "MAPK11", "MAPK14", "MAPK3", "MAPK7", "MAPK8", "MAPK9", "MAPKAPK2", "MAPKAPK3", "MEF2A", "MEF2C", "MYD88", "N4BP1", "NFKB1", "NFKB2", "NFKBIA", "NFKBIB", "NKIRAS1", "NKIRAS2", "NLRC5", "NLRX1", "NOD1", "NOD2", "PELI1", "PELI2", "PELI3", "PIK3C3", "PIK3R4", "PPP2CA", "PPP2CB", "PPP2R1A", "PPP2R1B", "PPP2R5D", "RBSN", "RELA", "RIPK2", "RPS27A", "RPS6KA1", "RPS6KA2", "RPS6KA3", "RPS6KA5", "S100A12", "S100B", "SAA1", "SKP1", "TAB1", "TAB2", "TAB3", "TICAM1", "TICAM2", "TIFA", "TLR4", "TLR7", "TLR9", "TNIP2", "TP53", "TRAF6", "UBA52", "UBB", "UBC", "UBE2N", "UBE2V1", "USP14", "USP18", "VRK3" ] }, "position": { "x": 150.85686397309547, "y": 1079.83615112861, "id": "cf5b2c91-a143-44f5-a248-9063b55a2ada", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "32ddd129-0049-4ec9-ac33-77282161c8ff", "name": [ "REGULATION OF DEFENSE RESPONSE TO VIRUS%GOBP%GO:0050688" ], "description": [ "regulation of defense response to virus" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 49, "padj": 0.0047, "mcode_cluster_id": "Cluster 36", "NES": -1.8685, "genes": [ "AIM2", "APOBEC3F", "APOBEC3G", "ATG12", "ATG5", "C1QBP", "CGAS", "DHX9", "DTX3L", "EIF2AK4", "ELMOD2", "HERC5", "HSP90AA1", "IFNLR1", "IL12B", "IL12RB1", "IL23A", "IL23R", "ILRUN", "IRGM", "ITCH", "LILRB1", "MAVS", "MICB", "MUL1", "NT5C2", "PARP9", "PCBP2", "PPM1B", "PQBP1", "RIGI", "RNF216", "RNF26", "STAT1", "STING1", "TARBP2", "TNFAIP3", "TOMM70", "TRAF3", "TRAF3IP1", "TRAF3IP2", "TRIM22", "TRIM44", "TRIM6", "USP17L2", "ZC3H12A", "ZDHHC1", "ZDHHC11", "ZMPSTE24" ] }, "position": { "x": 470.2816923443669, "y": 1848.6538841701754, "id": "32ddd129-0049-4ec9-ac33-77282161c8ff", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "6636c556-58d0-4383-9345-2b8ad558460c", "name": [ "RETINOBLASTOMA GENE IN CANCER%WIKIPATHWAYS_20240410%WP2446%HOMO SAPIENS" ], "description": [ "Retinoblastoma gene in cancer" ], "pvalue": 0.0028, "gs_type": null, "gs_size": 72, "padj": 0.0341, "mcode_cluster_id": null, "NES": -1.6017, "genes": [ "BARD1", "CCDC6", "CCNA2", "CCNB1", "CCNB2", "CCND1", "CCND3", "CCNE1", "CCNE2", "CDC2", "CDC25A", "CDC45", "CDK2", "CDK4", "CDK6", "CDKN1A", "CDKN1B", "CDT1", "CHEK1", "DHFR", "DKFZp686G14213", "DKFZp686M1631", "E2F2", "E2F3", "FAF1", "FANCG", "H2AZ1", "HDAC1", "HLTF", "HMGB1", "HMGB2", "MAPK13", "MCM6", "MCM7", "MDM2", "MSH6", "MYC", "NPAT", "ORC1L", "PCNA", "PLK4", "POLA1", "POLD3", "POLE", "POLE2", "PRIM1", "PRKDC", "PRMT2", "RAF1", "RB1", "RBBP4", "RBBP7", "RBP1", "RFC3", "RFC4", "RPA1", "RPA3", "RRM1", "RRM2", "SAP30", "SIN3A", "SKP2", "SMC1A", "SMC2", "SMC3", "SUV39H1", "TFDP1", "TFDP2", "TOP2A", "TTK", "TYMS", "WEE1" ] }, "position": { "x": 1731.5, "y": 2195.9446642487483, "id": "6636c556-58d0-4383-9345-2b8ad558460c" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "213d9e53-df5c-45af-98b3-ff3bed3160aa", "name": [ "HALLMARK_IL2_STAT5_SIGNALING%MSIGDBHALLMARK%HALLMARK_IL2_STAT5_SIGNALING" ], "description": [ "HALLMARK_IL2_STAT5_SIGNALING" ], "pvalue": 0.0019, "gs_type": null, "gs_size": 177, "padj": 0.0263, "mcode_cluster_id": null, "NES": -1.549, "genes": [ "ABCB1", "ADAM19", "ADFP", "AHNAK", "AHR", "AMACR", "ANXA4", "APLP1", "ARHH", "ARL4A", "BATF", "BATF3", "BCL2", "BCL2L1", "BHLHB2", "BMP2", "BMPR2", "CAPN3", "CASP3", "CCND2", "CCND3", "CCNE1", "CCR4", "CD44", "CD48", "CD79B", "CD81", "CD83", "CDC42SE2", "CDC6", "CDCP1", "CDKN1C", "CISH", "CKAP4", "COCH", "COL6A1", "CSF1", "CSF2", "CST7", "CTLA4", "CTSZ", "CYFIP1", "DCPS", "DENND5A", "DHRS3", "DRC1", "EEF1AKMT1", "EMP1", "ENO3", "ENPP1", "ETFBKMT", "ETV4", "F2RL2", "FGL2", "FLT3LG", "FURIN", "GABARAPL1", "GADD45B", "GATA1", "GBP4", "GLIPR2", "GPR65", "GPR83", "GPX4", "GUCY1B1", "HEL-76", "HEL-S-156an", "HEL-S-21", "HEL-S-45", "HEL-S-66", "HIPK2", "HK2", "HOPX", "HUWE1", "ICOS", "IFITM3", "IFNGR1", "IGF1R", "IGF2R", "IKZF2", "IKZF4", "IL10", "IL10RA", "IL13", "IL18R1", "IL1R2", "IL1RL1", "IL2RA", "IL2RB", "IL3RA", "IRF4", "IRF6", "IRF8", "ITGA6", "ITGAE", "ITGAV", "KLF6", "LIF", "LRIG1", "LRRC8C", "LTB", "MAFF", "MAP3K8", "MAP6", "MAPKAPK2", "MUC1", "MXD1", "MYC", "MYO1C", "MYO1E", "NCS1", "NFIL3", "NFKBIZ", "NOP2", "NRP1", "NT5E", "P2RX4", "P4HA1", "PDCD2L", "PENK", "PHLDA1", "PHTF2", "PIM1", "PLAGL1", "PLEC", "PLPP1", "PLSCR1", "POU2F1", "PRAF2", "PRKCH", "PRNP", "PTCH1", "PTGER2", "PTH1R", "PTRH2", "RGS16", "RHOB", "RORA", "RRAGD", "S100A1", "SCN9A", "SELL", "SELP", "SERPINB6", "SERPINC1", "SH3BGRL2", "SHE", "SIAT4C", "SLC2A3", "SLC39A8", "SMPDL3A", "SNX14", "SNX9", "SOCS1", "SOCS2", "SPP1", "SPRY4", "SWAP70", "SYNGR2", "SYT11", "TIAM1", "TLR7", "TNFRSF18", "TNFRSF1B", "TNFRSF21", "TNFRSF4", "TNFRSF8", "TNFRSF9", "TNFSF10", "TNFSF11", "TRAF1", "TTC39B", "TWSG1", "UCK2", "UMPS", "WLS", "XBP1" ] }, "position": { "x": 1346.5, "y": 2195.9446642487483, "id": "213d9e53-df5c-45af-98b3-ff3bed3160aa" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "b41086ab-9be9-400b-9b8f-21e6cefdf170", "name": [ "RENAL SYSTEM DEVELOPMENT%GOBP%GO:0072001" ], "description": [ "renal system development" ], "pvalue": 0.001, "gs_type": null, "gs_size": 145, "padj": 0.0167, "mcode_cluster_id": null, "NES": -1.6143, "genes": [ "ACE", "ACTA2", "AGT", "AGTR1", "AHI1", "ANGPT1", "ANGPT2", "AQP11", "ARL3", "BAG6", "BASP1", "BMP2", "BMP4", "BMP7", "C1GALT1", "CD24", "CD34", "CENPF", "CEP290", "CER1", "CITED1", "COL4A1", "COL4A3", "COL4A4", "CTSH", "CYP4A11", "CYP4A22", "DACT2", "DLL1", "EGR1", "ENPEP", "FGF1", "FGF10", "FGF2", "FGF8", "FGFR2", "FOXC1", "FOXD1", "FOXF1", "FOXJ1", "GATA3", "GDF6", "GDNF", "GLI2", "GPC3", "GREB1L", "HAS2", "HELLS", "HNF1A", "HNF1B", "HOXA11", "HOXD11", "HYAL2", "IFT25", "IFT27", "IFT88", "IQGAP1", "ITGA3", "ITGA8", "JAG1", "KANK2", "KLF15", "KLHL3", "LHX1", "LRP4", "LRRK2", "MAGI2", "MEF2C", "MME", "MPV17", "MTSS1", "MYC", "MYO1E", "MYOCD", "NF1", "NIPBL", "NPHP3", "NPHS1", "NPHS2", "NPNT", "NUP107", "NUP133", "NUP160", "NUP85", "OSR1", "OSR2", "PAX2", "PAX8", "PCSK5", "PCSK9", "PDGFB", "PDGFRA", "PDGFRB", "PECAM1", "PKD1", "PKD2", "PLCE1", "PODXL", "POU3F3", "PPP3CA", "PRKX", "PROM1", "PROX1", "PTCH1", "PTPRO", "PYGO1", "PYGO2", "RBP4", "REN", "RET", "ROBO2", "SALL1", "SEC61A1", "SHH", "SIX1", "SIX2", "SIX4", "SLIT2", "SMO", "SOX17", "SOX4", "SOX8", "SOX9", "STAT1", "STRA6", "SULF1", "SULF2", "TBX18", "TCF21", "TEK", "TFAP2A", "TFAP2B", "TGFB2", "TGFBR1", "TRAF3IP1", "VANGL2", "VEGFA", "WFS1", "WNK4", "WNT11", "WNT4", "WNT7B", "WT1", "ZBTB16", "ZNG1A" ] }, "position": { "x": 2063.706004465657, "y": 1833.4284750464574, "id": "b41086ab-9be9-400b-9b8f-21e6cefdf170" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "4ff6cb11-638e-4fd7-aa70-6b09447fa291", "name": [ "MORPHOGENESIS OF A BRANCHING EPITHELIUM%GOBP%GO:0061138" ], "description": [ "morphogenesis of a branching epithelium" ], "pvalue": 0.0036, "gs_type": null, "gs_size": 49, "padj": 0.0409, "mcode_cluster_id": "Cluster 31", "NES": -1.6881, "genes": [ "BMP2", "BMP4", "CELSR1", "CITED1", "COL4A1", "CTNNB1", "CTSH", "DLL4", "ENG", "EPHA2", "FGF1", "FGF10", "FGF2", "FGFR2", "FOXD1", "GDF2", "GDNF", "GLI2", "HOXA11", "HOXD11", "KDR", "MET", "MYC", "NKX2-1", "NKX3-1", "NOTCH4", "NPNT", "NRARP", "NRP1", "PAK1", "PAX2", "PAX8", "PKD1", "PKD2", "PKHD1", "RASIP1", "SALL1", "SEMA3E", "SFRP2", "SHH", "SIX1", "SLIT2", "SOX8", "SOX9", "TCF21", "TGFBR2", "TIE1", "VEGFA", "WT1" ] }, "position": { "x": 846.6890810682388, "y": 1317.9495827687997, "id": "4ff6cb11-638e-4fd7-aa70-6b09447fa291", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "9a7016d8-c02a-4546-9c63-8a56fa582768", "name": [ "OXYGEN-DEPENDENT PROLINE HYDROXYLATION OF HYPOXIA-INDUCIBLE FACTOR ALPHA%REACTOME%R-HSA-1234176.5" ], "description": [ "Oxygen-dependent proline hydroxylation of Hypoxia-inducible Factor Alpha" ], "pvalue": 0.0026, "gs_type": null, "gs_size": 66, "padj": 0.0316, "mcode_cluster_id": "Cluster 1", "NES": -1.6276, "genes": [ "AJUBA", "CUL2", "EGLN1", "EGLN2", "EGLN3", "ELOB", "ELOC", "EPAS1", "HIF1A", "HIF3A", "LIMD1", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RBX1", "RPS27A", "SEM1", "UBA52", "UBB", "UBC", "UBE2D1", "UBE2D2", "UBE2D3", "VHL", "WTIP" ] }, "position": { "x": 426.4843048281467, "y": 797.7013543281531, "id": "9a7016d8-c02a-4546-9c63-8a56fa582768", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "1d8cf59f-ab95-4b0c-a43a-70d1ddaa5686", "name": [ "REGULATION OF ADAPTIVE IMMUNE RESPONSE%GOBP%GO:0002819" ], "description": [ "regulation of adaptive immune response" ], "pvalue": 0.0019, "gs_type": null, "gs_size": 162, "padj": 0.026, "mcode_cluster_id": "Cluster 5", "NES": -1.6103, "genes": [ "ADCY7", "AGER", "AHR", "AKIRIN2", "ALOX15", "ANXA1", "B2M", "BATF", "BCL6", "BRD2", "BRD4", "BTK", "C17orf99", "C4BPA", "C4BPB", "CARD9", "CCL19", "CCR2", "CD160", "CD1A", "CD1B", "CD1C", "CD1D", "CD1E", "CD226", "CD274", "CD46", "CD55", "CD80", "CD81", "CEACAM1", "CLC", "CLCF1", "CLEC6A", "CLEC7A", "CR1", "CR1L", "CR2", "CYRIB", "DENND1B", "EIF2AK4", "EP300", "FADD", "FBXO38", "FCGR2B", "FOXJ1", "FOXP3", "FUT7", "FZD5", "HFE", "HLA-A", "HLA-B", "HLA-C", "HLA-DRA", "HLA-DRB1", "HLA-DRB3", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "HMCES", "HMGB1", "HSPD1", "IFNA2", "IFNB1", "IL10", "IL12A", "IL12B", "IL12RB1", "IL18", "IL18R1", "IL1B", "IL1R1", "IL23A", "IL23R", "IL27", "IL4", "IL4I1", "IL6", "IL6ST", "IRF1", "IRF7", "JAK2", "JAK3", "JUNB", "KLRC1", "KLRD1", "KMT5B", "KMT5C", "LILRB1", "LILRB4", "LOXL3", "MAD2L2", "MALT1", "MAP3K7", "MEF2C", "MICA", "MICB", "MR1", "NCKAP1L", "NECTIN2", "NFKBID", "NFKBIZ", "NLRP10", "NLRP3", "OPA1", "PARP3", "PAXIP1", "PDCD1", "PRKCQ", "PRKCZ", "PTPRC", "PVR", "PYCARD", "RAET1E", "RAET1G", "RAET1L", "RC3H1", "RC3H2", "RIF1", "RIPK3", "RSAD2", "SAMSN1", "SASH3", "SHLD1", "SHLD2", "SHLD3", "SIRT1", "SKAP1", "SLC11A1", "SLC15A4", "SLC22A13", "SMAD7", "SOCS5", "STX7", "SUPT6H", "SUSD4", "SVEP1", "TBX21", "TFRC", "TGFB1", "TNFAIP3", "TNFRSF14", "TNFRSF1B", "TNFSF13", "TNFSF4", "TP53BP1", "TRAF2", "TRAF6", "TREM2", "TRIM27", "TRPM4", "TYK2", "UFL1", "ULBP1", "ULBP2", "ULBP3", "WAS", "XCL1", "ZBTB1", "ZC3H12A", "ZP3" ] }, "position": { "x": 2275.0119733028787, "y": 695.4513560502671, "id": "1d8cf59f-ab95-4b0c-a43a-70d1ddaa5686", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "50d6250e-edea-47ad-bd2a-8c019c4d0c1d", "name": [ "CELLULAR HOMEOSTASIS%GOBP%GO:0019725" ], "description": [ "cellular homeostasis" ], "pvalue": 0.0017, "gs_type": null, "gs_size": 537, "padj": 0.0233, "mcode_cluster_id": null, "NES": 1.3762, "genes": [ "ABCA12", "ABCA2", "ABCB6", "ABCB7", "ABCB8", "ADCY8", "AFG3L2", "AGER", "AIM2", "ALAS2", "ALDOA", "ANK2", "ANKRD9", "ANO6", "ANXA6", "APP", "AQP1", "AQP11", "AQP4", "ARF1", "ATP12A", "ATP13A1", "ATP13A2", "ATP13A3", "ATP13A4", "ATP13A5", "ATP1A1", "ATP1A2", "ATP1A3", "ATP1A4", "ATP1B1", "ATP1B2", "ATP1B3", "ATP2A1", "ATP2A2", "ATP2A3", "ATP2B1", "ATP2B2", "ATP2B3", "ATP2B4", "ATP2C1", "ATP2C2", "ATP4A", "ATP4B", "ATP5F1B", "ATP6AP1", "ATP6AP1L", "ATP6AP2", "ATP6V0A1", "ATP6V0A2", "ATP6V0A4", "ATP6V0B", "ATP6V0C", "ATP6V0D1", "ATP6V0D2", "ATP6V0E1", "ATP6V0E2", "ATP6V1A", "ATP6V1B1", "ATP6V1B2", "ATP6V1D", "ATP6V1F", "ATP6V1G1", "ATP6V1G2", "ATP6V1G3", "ATP6V1H", "ATP7A", "ATP7B", "B2M", "BAG3", "BAK1", "BAX", "BCL2", "BDH2", "BMP6", "BOLA1", "BOLA2B", "BOLA3", "C19orf12", "C1QTNF3", "CA2", "CA7", "CALB1", "CALB2", "CALCA", "CALCB", "CALR", "CAMK2D", "CAPN3", "CARTPT", "CASQ2", "CASR", "CAV1", "CAV2", "CAV3", "CCDC115", "CCDC22", "CCDC47", "CCDC51", "CCL1", "CCL11", "CCL13", "CCL14", "CCL15", "CCL19", "CCL2", "CCL23", "CCL3", "CCL5", "CCL7", "CCL8", "CCR1", "CCR2", "CD40", "CDH23", "CDH5", "CFTR", "CHD6", "CHERP", "CHMP2B", "CHP1", "CHRNA1", "CHRNA7", "CIAO3", "CLCN3", "CLCN6", "CLDN16", "CLN3", "CLN5", "CLN6", "CLTRN", "CNNM4", "COX11", "COX19", "CP", "CSRP3", "CTRC", "CX3CL1", "CXCL12", "CYB561A3", "CYBRD1", "CYP7A1", "DCTN1", "DDIT3", "DEDD2", "DGAT2", "DHRS7C", "DMD", "DMPK", "DMTN", "DMXL1", "DMXL2", "DNAJB2", "DRD3", "DRD4", "DRD5", "EDN1", "EDN2", "EDN3", "EDNRA", "EGLN1", "EGLN2", "ELANE", "ENPP1", "ERFE", "ERN1", "ERO1A", "ERP44", "F2", "FATE1", "FBXL5", "FBXW7", "FGGY", "FITM2", "FLVCR1", "FOXA3", "FOXK1", "FOXK2", "FOXO1", "FRRS1", "FTH1", "FTH1P19", "FTHL17", "FTL", "FTMT", "FUNDC2", "FXN", "FXYD2", "FZD9", "GAS6", "GCK", "GCLC", "GCM2", "GDF2", "GIT1", "GLRX2", "GLRX3", "GLRX5", "GLS", "GNB3", "GPER1", "GPR89A", "GPR89B", "GPRC5B", "GPX1", "GRN", "GSR", "GSTP1", "HAAO", "HAMP", "HCRTR1", "HCRTR2", "HEPHL1", "HERPUD1", "HFE", "HIF1A", "HJV", "HK1", "HK2", "HK3", "HKDC1", "HMOX1", "HRC", "HSP90B1", "HTR2A", "HTR2B", "HTR2C", "HVCN1", "IDE", "IFNB1", "IGF1R", "IL2RG", "IL6", "IL7R", "IREB2", "ISCU", "ITPR1", "KCNB1", "KCNJ2", "KCNMA1", "KCTD17", "KCTD7", "KRIT1", "LACC1", "LAMP1", "LAMP2", "LARGE1", "LARGE2", "LCK", "LDAH", "LETM1", "LETM2", "LETMD1", "LGSN", "LIN28A", "LRRC8A", "LRRC8D", "LRRC8E", "LRRK2", "MAIP1", "MAP1A", "MCL1", "MCU", "MCUB", "MCUR1", "MICU1", "MICU2", "MICU3", "MINPP1", "MLXIPL", "MSTN", "MT-RNR2", "MT1A", "MT1B", "MT1DP", "MT1E", "MT1F", "MT1G", "MT1H", "MT1HL1", "MT1L", "MT1M", "MT1X", "MT2A", "MT3", "MT4", "MTM1", "MUC17", "MYC", "NDFIP1", "NELL2", "NFE2L2", "NGFR", "NKX6-1", "NOS1", "NOS2", "NOS3", "NPTN", "NQO1", "NR1D1", "NR1H4", "NUBP1", "NUCKS1", "OCA2", "OGT", "ORMDL1", "ORMDL2", "ORMDL3", "OXSR1", "P2RX7", "P2RY2", "PACS2", "PAX2", "PCK1", "PCK2", "PDX1", "PDZD8", "PFKM", "PICALM", "PIK3R1", "PIK3R2", "PKHD1", "PLAA", "PLN", "PML", "PNPLA2", "PPARGC1A", "PPT1", "PRDX1", "PRDX2", "PRDX3", "PRDX4", "PRDX5", "PRDX6", "PRKAA1", "PRKAA2", "PRKACA", "PRKN", "PRND", "PRNP", "PSEN1", "PTH1R", "PTPRN", "PTPRN2", "RAB11B", "RAB11FIP2", "RAB11FIP5", "RAB20", "RAB38", "RAB39A", "RAB7A", "RACK1", "RAP1GDS1", "RGN", "RHAG", "RHCG", "RHOT1", "RHOT2", "RMDN3", "RNASEK", "RNF135", "RPTOR", "RYR1", "RYR2", "S100A8", "S100A9", "SCARA5", "SCGN", "SCNN1A", "SCNN1B", "SCNN1D", "SCNN1G", "SCT", "SCTR", "SELENOK", "SELENOS", "SELENOT", "SGCZ", "SHANK3", "SIRT1", "SLAMF8", "SLC10A7", "SLC11A1", "SLC11A2", "SLC12A1", "SLC12A2", "SLC12A3", "SLC12A4", "SLC12A5", "SLC12A6", "SLC12A7", "SLC12A8", "SLC12A9", "SLC22A12", "SLC22A17", "SLC24A1", "SLC24A2", "SLC24A3", "SLC24A4", "SLC24A5", "SLC25A23", "SLC26A3", "SLC26A6", "SLC2A10", "SLC30A1", "SLC30A10", "SLC30A2", "SLC30A5", "SLC30A7", "SLC30A8", "SLC30A9", "SLC34A1", "SLC34A2", "SLC34A3", "SLC35G1", "SLC38A3", "SLC39A10", "SLC39A12", "SLC39A13", "SLC39A14", "SLC39A4", "SLC39A5", "SLC39A6", "SLC39A7", "SLC39A8", "SLC39A9", "SLC40A1", "SLC41A1", "SLC45A2", "SLC46A1", "SLC4A1", "SLC4A10", "SLC4A11", "SLC4A2", "SLC4A3", "SLC4A4", "SLC4A5", "SLC4A7", "SLC4A8", "SLC4A9", "SLC66A1", "SLC6A2", "SLC8A1", "SLC8A2", "SLC8A3", "SLC8B1", "SLC9A1", "SLC9A2", "SLC9A3", "SLC9A4", "SLC9A5", "SLC9A6", "SLC9A7", "SLC9A8", "SLC9A9", "SLC9B1", "SLC9C1", "SLC9C2", "SMAD4", "SMDT1", "SOD1", "SOD2", "SOX4", "SPPL2C", "SRF", "SRI", "STC1", "STC2", "STIM1", "STIM2", "STK39", "STOML2", "TAOK1", "TASL", "TCIRG1", "TESMIN", "TF", "TFR2", "TFRC", "TGM2", "THADA", "TM9SF4", "TMC8", "TMCO1", "TMEM165", "TMEM175", "TMEM178A", "TMEM199", "TMEM203", "TMEM64", "TMEM9", "TMEM94", "TMPRSS3", "TMPRSS6", "TNNI3", "TPCN2", "TPP2", "TPT1", "TRA2B", "TRDN", "TRIM32", "TRIM6", "TRPA1", "TRPC1", "TRPC3", "TRPC4", "TRPC5", "TRPC6", "TRPC7", "TRPV4", "TSC22D4", "TUNAR", "TXN", "TXN2", "TXNDC2", "TXNRD1", "TXNRD2", "TXNRD3", "TYRO3", "UBE2C", "UBE2K", "UBE2S", "UCP2", "UNC13B", "VAPB", "VPS33A", "WBP2NL", "WFS1", "WNK1", "WNK3", "WNT5A", "WNT7B", "XBP1", "XPR1", "YWHAE", "ZBTB20", "ZNF236" ] }, "position": { "x": 3995.539072651805, "y": 2272.9446642487483, "id": "50d6250e-edea-47ad-bd2a-8c019c4d0c1d" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "f7507f96-9e93-4751-bd0a-5d2409a9f865", "name": [ "RESPONSE TO HYPOXIA%GOBP%GO:0001666" ], "description": [ "response to hypoxia" ], "pvalue": 9.2643e-8, "gs_type": null, "gs_size": 137, "padj": 0.0000056727, "mcode_cluster_id": "Cluster 14", "NES": 2.0518, "genes": [ "ACAA2", "ADA", "ADAM17", "ADAM8", "ADO", "AJUBA", "AK4", "ALAS2", "ALKBH5", "ANG", "ANGPT4", "ANGPTL4", "AQP1", "AQP3", "ARNT", "ARNT2", "ASCL2", "BAD", "BMP2", "BMP7", "BNIP3", "BNIP3L", "CAV1", "CBFA2T3", "CD24", "CHRNA4", "CHRNA7", "CHRNB2", "CIAO3", "CITED2", "CLDN3", "CPEB1", "CPEB2", "CREBBP", "CXCR4", "DDIT4", "DPP4", "EGLN1", "EGLN2", "EGLN3", "EGR1", "EP300", "EPAS1", "FABP1", "FAM162A", "FMN2", "FUNDC1", "GATA6", "HIF1A", "HILPDA", "HIPK2", "HMOX2", "HP1BP3", "HSP90B1", "HYOU1", "ITPR1", "ITPR2", "KCND2", "KCNMA1", "LIMD1", "LMNA", "LONP1", "LOXL2", "MDM2", "MDM4", "MGARP", "MLST8", "MMP2", "MT3", "MTOR", "MYC", "MYOCD", "NDNF", "NDRG1", "NF1", "NFE2L2", "NGB", "NKX3-1", "NOP53", "NOS1", "NOTCH1", "NPEPPS", "OPRD1", "P4HB", "PDK1", "PDK3", "PGF", "PGK1", "PIN1", "PINK1", "PLEKHN1", "PLK3", "PLOD1", "PLOD2", "PMAIP1", "PML", "PPARG", "PRKAA1", "PTGIS", "PTGS2", "REST", "RGCC", "RORA", "RPTOR", "RYR1", "RYR2", "SCN2A", "SFRP1", "SIRT1", "SIRT2", "SLC8A3", "SMAD3", "SMAD4", "SRF", "SUV39H1", "SUV39H2", "TBL2", "TERT", "TGFB1", "TGFB2", "TGFB3", "TH", "THBS1", "TIGAR", "TM9SF4", "TP53", "TWIST1", "UBQLN1", "UCP2", "USF1", "VEGFA", "VEGFB", "VEGFC", "VEGFD", "VHL", "WTIP", "ZFP36L1" ] }, "position": { "x": 3580.685146618108, "y": 1868.5224071450311, "id": "f7507f96-9e93-4751-bd0a-5d2409a9f865", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "1a0622b8-4328-4c5c-bc2e-ece6cda08863", "name": [ "REGULATION OF TYPE I INTERFERON PRODUCTION%GOBP%GO:0032479" ], "description": [ "regulation of type I interferon production" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 113, "padj": 0.002, "mcode_cluster_id": "Cluster 22", "NES": -1.7413, "genes": [ "ACOD1", "ARRDC4", "ATG12", "ATG5", "BANF1", "CACTIN", "CGAS", "CHUK", "CUL3", "CYLD", "DDX3X", "DDX56", "DHX33", "DHX36", "DHX58", "DHX9", "DTX4", "FLOT1", "G3BP1", "GAPDH", "GARIN5A", "GBP7", "GPATCH3", "HAVCR2", "HSP90AA1", "HSPD1", "IFIH1", "IKBKE", "IL10", "ILRUN", "IRAK1", "IRF1", "IRF3", "IRF5", "IRF7", "IRF8", "IRGM", "ISG15", "ITCH", "KAT8", "KLHL22", "KPNA2", "LILRA4", "LILRB1", "MAVS", "MORC3", "MYD88", "NLRC3", "NMB", "NMBR", "NPLOC4", "OAS1", "OAS2", "OAS3", "OTUD5", "POLA1", "POLR3A", "POLR3B", "POLR3C", "POLR3D", "POLR3F", "POLR3G", "PPM1B", "PQBP1", "PTPN11", "PTPN22", "PTPRS", "PYCARD", "RAB2B", "RBX1", "REL", "RELB", "RIGI", "RIOK3", "RIPK2", "RNF125", "RNF135", "RNF216", "RNF26", "SETD2", "SIGLEC1", "SIRPA", "STAT1", "STING1", "TANK", "TBK1", "TICAM1", "TICAM2", "TIRAP", "TLR2", "TLR3", "TLR4", "TLR7", "TLR8", "TLR9", "TOMM70", "TRAF3", "TRAF3IP1", "TRAF3IP3", "TRIM15", "TRIM21", "TRIM27", "TRIM56", "TRIM65", "TYROBP", "UAP1", "UFD1", "USP22", "XAF1", "XIAP", "YY1", "ZC3HAV1", "ZCCHC3" ] }, "position": { "x": 2055.452966750495, "y": 1315.4917828523332, "id": "1a0622b8-4328-4c5c-bc2e-ece6cda08863", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "10740011-adbe-4860-8ab2-5207b6a96998", "name": [ "RIBONUCLEOSIDE DIPHOSPHATE METABOLIC PROCESS%GOBP%GO:0009185" ], "description": [ "ribonucleoside diphosphate metabolic process" ], "pvalue": 0.0032, "gs_type": null, "gs_size": 47, "padj": 0.0381, "mcode_cluster_id": "Cluster 4", "NES": 1.7992, "genes": [ "ADPGK", "AK4", "AK5", "ALDOA", "ALDOB", "ALDOC", "BAD", "CAD", "CMPK1", "ENO1", "ENO2", "ENO3", "ENO4", "ENTPD4", "ENTPD5", "ENTPD7", "FOXK1", "FOXK2", "GAPDH", "GAPDHS", "GCK", "GPI", "HK1", "HK2", "HK3", "HKDC1", "LDHA", "NUDT18", "NUDT5", "PFKFB1", "PFKFB2", "PFKL", "PFKM", "PFKP", "PGAM1", "PGAM2", "PGAM4", "PGK1", "PGK2", "PGM1", "PKLR", "PKM", "RRM1", "RRM2", "RRM2B", "TPI1", "UCP2" ] }, "position": { "x": 3511.0390726518053, "y": 1642.4117534347388, "id": "10740011-adbe-4860-8ab2-5207b6a96998", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "3f183e16-d1d6-4ead-9e1e-f9bb3cbd837f", "name": [ "DEOXYRIBONUCLEOTIDE METABOLIC PROCESS%GOBP%GO:0009262" ], "description": [ "deoxyribonucleotide metabolic process" ], "pvalue": 0.0048, "gs_type": null, "gs_size": 30, "padj": 0.0492, "mcode_cluster_id": null, "NES": -1.6537, "genes": [ "AK5", "CMPK2", "DCTPP1", "DERA", "DGUOK", "DTYMK", "DUT", "GUK1", "MBD4", "NEIL1", "NEIL2", "NT5C", "NT5C1A", "NT5C2", "NT5M", "NTHL1", "NUDT15", "NUDT16", "NUDT18", "OGG1", "PNP", "RRM1", "RRM2", "RRM2B", "SAMHD1", "SMUG1", "TDG", "TYMS", "UNG", "UPP2" ] }, "position": { "x": 2347.5, "y": 2195.9446642487483, "id": "3f183e16-d1d6-4ead-9e1e-f9bb3cbd837f" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "fa183792-34fc-4acf-bfca-d1c76db29c64", "name": [ "AUF1 (HNRNP D0) BINDS AND DESTABILIZES MRNA%REACTOME DATABASE ID RELEASE 81%450408" ], "description": [ "AUF1 (hnRNP D0) binds and destabilizes mRNA" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 54, "padj": 0.0023, "mcode_cluster_id": "Cluster 1", "NES": -1.9244, "genes": [ "EIF4G1", "HSPA1A", "HSPA8", "HSPB1", "PABPC1", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RPS27A", "SEM1", "UBA52", "UBB", "UBC" ] }, "position": { "x": 436.87781727976375, "y": 819.7174743977793, "id": "fa183792-34fc-4acf-bfca-d1c76db29c64", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "57d94b89-2690-4568-a2e6-54350ce7270c", "name": [ "DEGRADATION OF DVL%REACTOME DATABASE ID RELEASE 81%4641258" ], "description": [ "Degradation of DVL" ], "pvalue": 0, "gs_type": null, "gs_size": 57, "padj": 0.0008, "mcode_cluster_id": "Cluster 1", "NES": -1.9965, "genes": [ "CUL3", "DACT1", "DVL1", "DVL2", "DVL3", "HECW1", "KLHL12", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RBX1", "RPS27A", "SEM1", "UBA52", "UBB", "UBC" ] }, "position": { "x": 442.38084721945955, "y": 794.4631359681088, "id": "57d94b89-2690-4568-a2e6-54350ce7270c", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "8a3a941c-4596-4073-8813-7e93e326c4f9", "name": [ "GLYCOLYSIS%BIOCYC%PWY66-400" ], "description": [ "glycolysis" ], "pvalue": 0.0012, "gs_type": null, "gs_size": 25, "padj": 0.0183, "mcode_cluster_id": "Cluster 4", "NES": 1.8706, "genes": [ "ALDOA", "ALDOB", "ALDOC", "BPGM", "ENO1", "ENO2", "ENO3", "GAPDH", "GAPDHS", "GCK", "GPI", "HK1", "HK2", "HK3", "HKDC1", "PFKL", "PFKM", "PFKP", "PGAM1", "PGAM2", "PGK1", "PGK2", "PKLR", "PKM", "TPI1" ] }, "position": { "x": 3647.487556340692, "y": 1592.0645135403608, "id": "8a3a941c-4596-4073-8813-7e93e326c4f9", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "06d062e3-d596-43d5-95b5-8ac20e8a9da1", "name": [ "CELL-CELL COMMUNICATION%REACTOME%R-HSA-1500931.8" ], "description": [ "Cell-Cell communication" ], "pvalue": 0.0034, "gs_type": null, "gs_size": 142, "padj": 0.039, "mcode_cluster_id": "Cluster 39", "NES": -1.5218, "genes": [ "ACTN1", "ACTN2", "ACTN3", "ACTN4", "ADAM19", "ADAM33", "AGO1", "AGO2", "AGO3", "AGO4", "ANG", "ANGPTL4", "ARHGEF6", "BHLHE22", "CADM1", "CADM2", "CADM3", "CASK", "CD151", "CD2AP", "CD47", "CDH1", "CDH10", "CDH11", "CDH12", "CDH13", "CDH15", "CDH17", "CDH18", "CDH19", "CDH2", "CDH24", "CDH3", "CDH4", "CDH5", "CDH6", "CDH7", "CDH8", "CDH9", "CLDN1", "CLDN10", "CLDN11", "CLDN12", "CLDN14", "CLDN15", "CLDN16", "CLDN17", "CLDN18", "CLDN19", "CLDN2", "CLDN20", "CLDN22", "CLDN23", "CLDN3", "CLDN4", "CLDN5", "CLDN6", "CLDN7", "CLDN8", "CLDN9", "COL17A1", "CRB3", "CTNNA1", "CTNNB1", "CTNND1", "DST", "F11R", "FBLIM1", "FERMT2", "FLNA", "FLNC", "FOXF1", "FYB1", "FYN", "HEYL", "HOXC8", "ILF3", "ILK", "IQGAP1", "ITGA6", "ITGB1", "ITGB4", "JUP", "KIRREL1", "KIRREL2", "KIRREL3", "LAMA3", "LAMB3", "LAMC2", "LIMS1", "LIMS2", "MAGI2", "MOV10", "NCK1", "NCK2", "NECTIN1", "NECTIN2", "NECTIN3", "NECTIN4", "NPHS1", "PALS1", "PARD3", "PARD6A", "PARD6B", "PARD6G", "PARVA", "PARVB", "PATJ", "PIK3CA", "PIK3CB", "PIK3R1", "PIK3R2", "PLEC", "PRDM8", "PRKCI", "PTK2", "PTK2B", "PTPN11", "PTPN6", "PVR", "PXN", "RSU1", "SDK1", "SDK2", "SIRPA", "SIRPB1", "SIRPG", "SKAP2", "SNAI1", "SOX10", "SP1", "SPTAN1", "SPTBN1", "TESK1", "TNRC6A", "TNRC6B", "TNRC6C", "TYROBP", "VASP", "WASL", "ZC3H12A", "ZEB2" ] }, "position": { "x": 1776.9894185481148, "y": 1554.0107480053784, "id": "06d062e3-d596-43d5-95b5-8ac20e8a9da1", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "412c2f5e-80df-4720-b071-d87cc4617b5b", "name": [ "REGULATION OF ORNITHINE DECARBOXYLASE (ODC)%REACTOME%R-HSA-350562.4" ], "description": [ "Regulation of ornithine decarboxylase (ODC)" ], "pvalue": 0.0000010484, "gs_type": null, "gs_size": 51, "padj": 0, "mcode_cluster_id": "Cluster 1", "NES": -2.1208, "genes": [ "AZIN1", "NQO1", "OAZ1", "OAZ2", "OAZ3", "ODC1", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "SEM1" ] }, "position": { "x": 443.92165596553906, "y": 765.4521408579345, "id": "412c2f5e-80df-4720-b071-d87cc4617b5b", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "name": [ "CLEC7A (DECTIN-1) SIGNALING%REACTOME%R-HSA-5607764.3" ], "description": [ "CLEC7A (Dectin-1) signaling" ], "pvalue": 0.0006, "gs_type": null, "gs_size": 97, "padj": 0.011, "mcode_cluster_id": "Cluster 1", "NES": -1.6493, "genes": [ "AHCYL1", "BCL10", "BTRC", "CALM1", "CARD11", "CARD9", "CASP8", "CDC34", "CHUK", "CLEC7A", "CUL1", "FBXW11", "IKBKB", "IKBKG", "IL1B", "ITPR1", "ITPR2", "ITPR3", "MALT1", "MAP3K14", "MAP3K7", "NFATC1", "NFATC2", "NFATC3", "NFKB1", "NFKB2", "NFKBIA", "PDPK1", "PLCG2", "PPP3CA", "PPP3CB", "PPP3R1", "PRKCD", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "PYCARD", "RELA", "RELB", "RPS27A", "SEM1", "SKP1", "SYK", "TAB1", "TAB2", "TAB3", "TRAF6", "UBA3", "UBA52", "UBB", "UBC", "UBE2D1", "UBE2D2", "UBE2M", "UBE2N", "UBE2V1" ] }, "position": { "x": 412.67632967107147, "y": 802.6624810833197, "id": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "a8aef0ec-aa2f-49d5-8433-fa9fde46516a", "name": [ "ANTIGEN PROCESSING AND PRESENTATION OF ENDOGENOUS PEPTIDE ANTIGEN VIA MHC CLASS IB%GOBP%GO:0002476" ], "description": [ "antigen processing and presentation of endogenous peptide antigen via MHC class Ib" ], "pvalue": 0.0024, "gs_type": null, "gs_size": 17, "padj": 0.031, "mcode_cluster_id": "Cluster 10", "NES": -1.7937, "genes": [ "HFE", "HLA-A", "HLA-B", "HLA-C", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "MICA", "MICB", "RAET1E", "RAET1G", "RAET1L", "TAP2", "ULBP1", "ULBP2", "ULBP3" ] }, "position": { "x": 1990.5448855701738, "y": 1001.4601298909387, "id": "a8aef0ec-aa2f-49d5-8433-fa9fde46516a", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "c06a9173-9c53-4b4e-b8e3-6869d4ef68b7", "name": [ "GLYCOLYTIC PROCESS%GOBP%GO:0006096" ], "description": [ "glycolytic process" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 34, "padj": 0.0041, "mcode_cluster_id": "Cluster 4", "NES": 1.971, "genes": [ "ADPGK", "ALDOA", "ALDOB", "ALDOC", "ENO1", "ENO2", "ENO3", "ENO4", "FOXK1", "FOXK2", "GAPDH", "GAPDHS", "GCK", "GPI", "HK1", "HK2", "HK3", "HKDC1", "LDHA", "PFKFB1", "PFKFB2", "PFKL", "PFKM", "PFKP", "PGAM1", "PGAM2", "PGAM4", "PGK1", "PGK2", "PGM1", "PKLR", "PKM", "TPI1", "UCP2" ] }, "position": { "x": 3681.430707060996, "y": 1657.2458118662203, "id": "c06a9173-9c53-4b4e-b8e3-6869d4ef68b7", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "f1fbedd4-b26e-4021-b093-cd75de2e906d", "name": [ "COMPLEMENT SYSTEM IN NEURONAL DEVELOPMENT AND PLASTICITY%WIKIPATHWAYS_20240410%WP5090%HOMO SAPIENS" ], "description": [ "Complement system in neuronal development and plasticity" ], "pvalue": 0.0022, "gs_type": null, "gs_size": 90, "padj": 0.0293, "mcode_cluster_id": null, "NES": -1.6518, "genes": [ "ADIA", "ADIC", "APAF1", "ATP10A", "ATP11A", "ATP11C", "ATP8B1", "ATP8B2", "ATP8B3", "AXL", "BAK1", "BAX", "C1QC", "C1R", "C1S", "C2", "C3AR1", "C4A", "C4BPA", "C4BPB", "C4B_2", "C5AR1", "C5AR2", "C6", "C7", "C8A", "C8G", "C9", "CAP1", "CASP10", "CASP3", "CASP8", "CASP9", "CD46", "CD55", "CD59", "CFD", "CFH", "CFI", "CFP", "CLU", "COLEC10", "COLEC11", "COLEC12", "CR2", "CRB1", "CRB2", "CX3CL1", "CX3CR1", "CYCS", "DEDD", "DIABLO", "DKFZp666F1010", "DLGAP5", "FAS", "FCN1", "FCN2", "GAS6", "HEL-S-62p", "HTRA2", "IF2F", "ITGAM", "ITGAV", "ITGAX", "ITGB3", "LLGL2", "MARK1", "MASP1", "MASP2", "MBL2", "MBP", "MERTK", "MFGE8", "PARD3", "PARD6A", "PARD6B", "PARD6G", "PLSCR1", "PLSCR3", "PLSCR4", "PRKCI", "PRKCZ", "PROS1", "SCRIB", "SERPING1", "TGFB1", "TNFSF6", "TYRO3", "UNQ172", "VTN" ] }, "position": { "x": 2270.5, "y": 2195.9446642487483, "id": "f1fbedd4-b26e-4021-b093-cd75de2e906d" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "ea795ff2-a61a-4bd6-9894-09cfcb204ea5", "name": [ "REGULATION OF VIRAL PROCESS%GOBP%GO:0050792" ], "description": [ "regulation of viral process" ], "pvalue": 6.5584e-17, "gs_type": null, "gs_size": 156, "padj": 1.0222e-14, "mcode_cluster_id": null, "NES": -2.5549, "genes": [ "ADAR", "ADARB1", "AICDA", "APCS", "APOBEC3A", "APOBEC3B", "APOBEC3C", "APOBEC3D", "APOBEC3F", "APOBEC3G", "APOBEC3H", "ARK2N", "ATG12", "ATG5", "AXL", "BANF1", "BST2", "BTBD17", "CCL5", "CD209", "CD28", "CD4", "CD74", "CH25H", "CIITA", "CLEC4G", "CNOT7", "CSNK2B", "CXCL8", "DDB1", "DDX3X", "DHX9", "DYNLT1", "EIF2AK2", "FAM111A", "FCN1", "FCN3", "FKBP6", "FMR1", "FURIN", "GBP7", "GSN", "HACD3", "HEXIM1", "HLA-DRB1", "HMGA2", "HMGB1", "HS3ST5", "IFI16", "IFIH1", "IFIT1", "IFIT5", "IFITM1", "IFITM2", "IFITM3", "IFNA2", "IFNB1", "IFNL3", "ILF3", "INPP5K", "ISG15", "ISG20", "KPNA2", "KPNA6", "LAMP3", "LARP1", "LARP7", "LGALS1", "LGALS9", "LRRC15", "LTF", "LY6E", "MAVS", "MBL2", "MDFIC", "MID2", "MORC2", "MPHOSPH8", "MX1", "N4BP1", "NECTIN2", "NR5A2", "OAS1", "OAS2", "OAS3", "OASL", "P4HB", "PABPC1", "PDE12", "PKN2", "PLSCR1", "PPARA", "PPIA", "PPID", "PPIE", "PPIH", "PROX1", "PTX3", "RAB7A", "RAD23A", "RESF1", "RFPL1", "RFPL2", "RFPL3", "RFPL4A", "RFPL4AL1", "RNASEL", "RSAD2", "RSF1", "SETDB1", "SHFL", "SLPI", "SMPD1", "SNX3", "SRPK1", "SRPK2", "STAT1", "STAU1", "TARBP2", "TASOR", "TBC1D20", "TMEM250", "TMEM39A", "TMPRSS2", "TMPRSS4", "TNF", "TNIP1", "TOP2A", "TOP2B", "TRIM11", "TRIM13", "TRIM14", "TRIM15", "TRIM21", "TRIM22", "TRIM25", "TRIM26", "TRIM27", "TRIM31", "TRIM32", "TRIM34", "TRIM38", "TRIM5", "TRIM58", "TRIM6", "TRIM62", "TRIM68", "TSG101", "TYRO3", "UBP1", "VAPB", "VPS37B", "VPS4A", "ZC3HAV1", "ZFP36", "ZNFX1" ] }, "position": { "x": 1103.2914974211649, "y": 1462.4911809613488, "id": "ea795ff2-a61a-4bd6-9894-09cfcb204ea5" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "04ea30a0-7312-41f6-b859-9e304fe95c67", "name": [ "REGULATION OF RUNX2 EXPRESSION AND ACTIVITY%REACTOME%R-HSA-8939902.4" ], "description": [ "Regulation of RUNX2 expression and activity" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 71, "padj": 0.0044, "mcode_cluster_id": "Cluster 1", "NES": -1.7879, "genes": [ "BMP2", "CBFB", "CUL1", "DLX5", "DLX6", "ESR1", "ESRRA", "GSK3B", "HIVEP3", "MSX2", "NKX3-2", "NR3C1", "PPARGC1A", "PPARGC1B", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RBX1", "RPS27A", "SEM1", "SKP1", "SKP2", "SMURF1", "STAT1", "STUB1", "TWIST1", "UBA52", "UBB", "UBC", "WWP1" ] }, "position": { "x": 456.15443629671336, "y": 770.9132808810119, "id": "04ea30a0-7312-41f6-b859-9e304fe95c67", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "bc280fd1-a6bb-4cf7-9b2f-d34311076e45", "name": [ "POSITIVE REGULATION OF CELL DIFFERENTIATION%GOBP%GO:0045597" ], "description": [ "positive regulation of cell differentiation" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 621, "padj": 0.0017, "mcode_cluster_id": null, "NES": -1.4887, "genes": [ "AAMDC", "ABCB10", "ACAN", "ACIN1", "ACTB", "ACTL6A", "ACTL6B", "ACVR1", "ACVR1B", "ACVR2A", "ACVR2B", "ACVRL1", "ADAM7", "ADAM8", "ADD1", "ADIG", "ADIPOQ", "ADIRF", "ADRA2B", "ADRA2C", "AGER", "AGT", "AGTR1", "AHI1", "AKAP6", "AKIRIN1", "AKT1", "ALOX15B", "ALX1", "AMBRA1", "AMIGO1", "ANKRD54", "ANXA1", "APOB", "AR", "ARHGEF2", "ARID1A", "ARID1B", "ARID2", "ARNT", "ASCL1", "ASXL2", "ATOH1", "ATOH8", "ATP11A", "ATRAID", "AXIN2", "AXL", "BAD", "BAMBI", "BCAN", "BCL6", "BCL9L", "BDNF", "BEND6", "BIN1", "BLOC1S5", "BLOC1S6", "BMAL1", "BMP10", "BMP2", "BMP4", "BMP6", "BMP7", "BMPR1A", "BMPR1B", "BMPR2", "BNC1", "BOC", "BRD1", "BRD2", "BRD4", "BRD7", "BTG1", "BTK", "CAMK1", "CAMK2B", "CAPRIN1", "CAPRIN2", "CARM1", "CASP8", "CBFB", "CCL19", "CCN1", "CCN2", "CCN3", "CCN4", "CCN5", "CCN6", "CCR1", "CD24", "CD27", "CD34", "CD36", "CD4", "CD46", "CD74", "CD80", "CD86", "CDH5", "CDKL3", "CDKL5", "CDS1", "CEACAM1", "CEBPB", "CHODL", "CLCF1", "CLDN5", "CLEC7A", "CMKLR1", "COL1A1", "CPNE1", "CR1", "CRB2", "CREB1", "CREBL2", "CSF1", "CSF2", "CSF3", "CTH", "CTNNB1", "CTNNBIP1", "CUL7", "CUX1", "CUX2", "CX3CL1", "CX3CR1", "CXCR4", "CYP27B1", "DAB2", "DBN1", "DCSTAMP", "DCT", "DDR2", "DDRGK1", "DHX36", "DICER1", "DISC1", "DLX1", "DLX2", "DNAI3", "DPF1", "DPF3", "DRD2", "DSCAM", "DUSP10", "ECT2", "EDN1", "EDN3", "EEIG1", "EFEMP2", "EFNB2", "EGR2", "EMP2", "ENG", "EP300", "ETS1", "ETV4", "EVI2B", "EZH2", "F11R", "FADD", "FAM210B", "FAXDC2", "FBN2", "FBXO5", "FBXW8", "FERMT2", "FES", "FFAR4", "FGF2", "FGF20", "FGF8", "FGFR1", "FMR1", "FNDC5", "FOXC1", "FOXJ1", "FOXN1", "FOXO3", "FOXP3", "FRZB", "FXR1", "FXR2", "FZD1", "FZD3", "GAS6", "GATA1", "GATA3", "GATA5", "GCNT2", "GDF10", "GDF2", "GDF3", "GDF5", "GDF6", "GDNF", "GDPD5", "GJA1", "GLI2", "GLI3", "GLIPR2", "GOLGA4", "GPC1", "GPER1", "GPRASP3", "GPRC5B", "GSK3B", "HAPLN1", "HAPLN2", "HAPLN3", "HAPLN4", "HAX1", "HCLS1", "HES1", "HEYL", "HGF", "HIF1A", "HIF1AN", "HLA-DRA", "HLA-DRB1", "HLA-G", "HMGB1", "HMGB2", "HNRNPU", "HOXA11", "HOXA5", "HOXB4", "HOXD3", "HSF1", "HSP90AB1", "HSPA1A", "HSPA1B", "ID2", "IFITM1", "IFNG", "IGF1", "IGFBP3", "IHH", "IL10", "IL12B", "IL12RB1", "IL13", "IL17A", "IL18", "IL1B", "IL1RAPL1", "IL2", "IL20", "IL23A", "IL23R", "IL34", "IL36B", "IL4", "IL4I1", "IL6", "IL6R", "IL6ST", "IL7", "IMPACT", "INHBA", "INPP5D", "INS", "INSM1", "IPO7", "ISL1", "ISLR2", "JAG1", "KAT5", "KAT8", "KCTD11", "KDF1", "KDM1A", "KDR", "KHDC3L", "KIT", "KITLG", "KLHL25", "L1CAM", "LAMA1", "LAMA2", "LAMB1", "LAMB2", "LAMC1", "LEF1", "LGALS1", "LGALS3", "LGALS9", "LHX1", "LIF", "LIG4", "LILRB2", "LILRB4", "LIMK1", "LMO3", "LMOD3", "LOXL2", "LPL", "LRG1", "LRP2", "LRP3", "LRP5", "LRP8", "LRRC8A", "LTBP3", "LTF", "MACF1", "MACROH2A1", "MACROH2A2", "MALT1", "MAML1", "MAP3K13", "MAP6", "MAPK11", "MAPK12", "MAPK14", "MAPK9", "MAPT", "MCUB", "MDK", "MED1", "MEDAG", "MEF2C", "MEGF8", "MESP1", "METRN", "METRNL", "MMD", "MMD2", "MME", "MMP14", "MSR1", "MTCH2", "MTOR", "MTURN", "MUSTN1", "MYF5", "MYF6", "MYLK3", "MYOCD", "MYOD1", "MYOG", "NAP1L1", "NAPEPLD", "NBL1", "NCAN", "NCKAP1L", "NCOA3", "NEDD9", "NELL1", "NEURL1", "NEUROD1", "NEUROD2", "NEUROD4", "NEUROG1", "NFKB1", "NFKBID", "NFKBIZ", "NGF", "NIBAN2", "NID1", "NKAP", "NKX2-5", "NKX6-1", "NLRP3", "NME2", "NOCT", "NOTCH1", "NOTCH2", "NOTCH4", "NPNT", "NPTN", "NRCAM", "NRDC", "NRG1", "NRP1", "NTN1", "NTRK2", "NUDT21", "NUMA1", "NUMB", "NUMBL", "OBSL1", "OCSTAMP", "OLFM1", "OLFM2", "OPA1", "OPRM1", "PA2G4", "PAX2", "PAX8", "PBRM1", "PCK1", "PCP4", "PDPN", "PF4", "PHF10", "PIEZO1", "PIM1", "PITHD1", "PKDCC", "PLA2G10", "PLA2G2A", "PLA2G3", "PLA2G5", "PLAAT4", "PLCB1", "PLXNA1", "PLXNA2", "PLXNA3", "PLXNA4", "PLXNB1", "PLXNB2", "PLXNB3", "PLXNC1", "PLXND1", "PNP", "POU4F1", "POU4F2", "PPARD", "PPARG", "PPP1R13L", "PPP2R3C", "PPP3CA", "PRKCA", "PRKCH", "PRKCI", "PRKCZ", "PRKD1", "PRKDC", "PRMT1", "PROC", "PROM1", "PROX1", "PTGS2", "PTK2", "PTN", "PTPRD", "PTPRZ1", "RAB7B", "RANBP3L", "RAP1A", "RAPGEF2", "RARA", "RARRES2", "RASSF10", "RBM24", "RBM4", "RELN", "REST", "RFX3", "RGCC", "RGS14", "RHEX", "RHOA", "RHOH", "RIN2", "RIPK1", "RIPOR2", "ROBO1", "ROBO2", "RPS6KA1", "RPS6KA3", "RPTOR", "RRAS", "RREB1", "RUFY3", "RUNX1", "RUNX2", "RUNX3", "S1PR2", "SART1", "SCIN", "SCUBE3", "SDCBP", "SEMA4D", "SEMA5A", "SEMA7A", "SERPINB3", "SERPINE1", "SERPINE2", "SERPINF1", "SERPINF2", "SFN", "SFRP1", "SFRP2", "SFRP4", "SHANK3", "SHH", "SHTN1", "SIRT2", "SIRT6", "SIX1", "SLC6A6", "SLIT2", "SLITRK1", "SMAD2", "SMAD3", "SMAD4", "SMAD5", "SMARCA2", "SMARCA4", "SMARCB1", "SMARCC1", "SMARCC2", "SMARCD1", "SMARCD2", "SMARCD3", "SMARCE1", "SMYD1", "SNAI1", "SNW1", "SOCS1", "SOCS5", "SOD2", "SOX11", "SOX12", "SOX13", "SOX4", "SOX5", "SOX6", "SOX8", "SOX9", "SP7", "SPEN", "SPI1", "SRF", "SS18L1", "STAT1", "STAT3", "STAT5B", "SUCO", "SULT1E1", "SULT2B1", "SYAP1", "SYK", "TACSTD2", "TAL1", "TBX1", "TBX5", "TCF15", "TCF3", "TCF4", "TCF7L2", "TENM4", "TENT5A", "TESC", "TESPA1", "TFE3", "TGFB1", "TGFB1I1", "TGFB2", "TGFB3", "TGFBR1", "TGFBR2", "TGM2", "THPO", "TIAM1", "TIAM2", "TLR9", "TMEM100", "TMEM119", "TMEM64", "TMPRSS12", "TNF", "TNFRSF11A", "TNFRSF1B", "TNFSF11", "TNFSF4", "TNFSF9", "TNXB", "TP63", "TP73", "TRAF6", "TRIM16", "TRIM32", "TRPM4", "TTBK1", "TWF2", "TWIST1", "TYROBP", "VCAN", "VDR", "VEGFA", "VEZF1", "VHL", "VNN1", "VSIR", "VSTM2A", "VWC2", "WDFY2", "WNT3", "WNT3A", "WNT4", "WNT7B", "WWTR1", "XBP1", "XKR8", "XRCC6", "YAP1", "ZAP70", "ZBED2", "ZBTB1", "ZBTB16", "ZBTB7B", "ZC3H12A", "ZC4H2", "ZEB1", "ZEB2", "ZFP36", "ZFP36L1", "ZFYVE27", "ZHX3", "ZMIZ1", "ZNF16", "ZNF268", "ZNF335", "ZNF365", "ZNF385A", "ZNF703", "ZNHIT1" ] }, "position": { "x": 2635.4384460569177, "y": 56.72527975630567, "id": "bc280fd1-a6bb-4cf7-9b2f-d34311076e45" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "2d554273-a987-41e3-af33-9574e5ea062e", "name": [ "HALLMARK_HYPOXIA%MSIGDBHALLMARK%HALLMARK_HYPOXIA" ], "description": [ "HALLMARK_HYPOXIA" ], "pvalue": 1.079e-13, "gs_type": null, "gs_size": 159, "padj": 1.2307e-11, "mcode_cluster_id": null, "NES": 2.4669, "genes": [ "ACKR3", "ADFP", "ADM", "ADORA2B", "AK4", "AKAP12", "ALDOB", "AMPD3", "ANGPTL4", "ANKZF1", "ANXA2", "ATF3", "ATP7A", "B3GALT6", "B4GALNT2", "BCAN", "BCL2", "BHLHB2", "BNIP3L", "BRS3", "BTG1", "CA12", "CASP6", "CAVIN1", "CAVIN3", "CCN5", "CCNG2", "CDKN1A", "CDKN1B", "CDKN1C", "CHST3", "CITED2", "CP", "CSRP2", "CTGF", "CXCR4", "CYR61", "DCN", "DDIT3", "DDIT4", "DGIC", "DPYSL4", "EDN2", "EFNA1", "EFNA3", "EGFR", "ENO2", "ENO3", "ERO1A", "ERRFI1", "EXT1", "F3", "FBP1", "FOS", "FOSL2", "FOXO3A", "GAA", "GCK", "GCNT2", "GLRX", "GPC3", "GPC4", "GYS1", "HAS1", "HEL-S-133P", "HEL-S-134P", "HEL-S-162eP", "HEL-S-17", "HEL-S-19", "HEL-S-278", "HEL-S-45", "HEL-S-49", "HEL-S-68p", "HEL-S-75", "HEL-S-87p", "HEL-S-89n", "HEXA", "HK2", "HMOX1", "HS3ST1", "IGFBP1", "IL6", "ILVBL", "INHA", "ISG20", "JMJD6", "JUN", "KDELR3", "KDM3A", "KIF5A", "KLF6", "KLF7", "KLHL24", "LARGE", "LOX", "LXN", "LYZG", "MAFF", "MAP3K1", "MIF", "MT1E", "MT2A", "MXI1", "MYH9", "NAGK", "NFIL3", "NOCT", "NR3C1", "P4HA1", "P4HA2", "PCK1", "PDK3", "PFKL", "PFKP", "PGAM2", "PGM2", "PIM1", "PKLR", "PKP1", "PLAUR", "PNRC1", "PPARGC1A", "PPP1R15A", "PPP1R3C", "PRDX5", "PRKCA", "PYGM", "RBPJ", "RORA", "RRAGD", "S100A4", "SAP30", "SCARB1", "SDC2", "SDC3", "SDC4", "SERPINE1", "SIAH2", "SLC25A1", "SLC2A3", "SRPX", "STBD1", "STC1", "STC2", "SULT2B1", "TES", "TGFBI", "TIPARP", "TMEM45A", "TNFAIP3", "TPBG", "TPD52", "TPST2", "VEGFA", "VHL", "VLDLR", "XPNPEP1", "ZFP36", "ZNF292" ] }, "position": { "x": 3533.539072651805, "y": 2118.9446642487483, "id": "2d554273-a987-41e3-af33-9574e5ea062e" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "a8e9823f-492f-4be4-9285-500b1804fc4e", "name": [ "HALLMARK_INTERFERON_ALPHA_RESPONSE%MSIGDBHALLMARK%HALLMARK_INTERFERON_ALPHA_RESPONSE" ], "description": [ "HALLMARK_INTERFERON_ALPHA_RESPONSE" ], "pvalue": 6.7332e-33, "gs_type": null, "gs_size": 86, "padj": 3.9167e-29, "mcode_cluster_id": null, "NES": -3.1404, "genes": [ "ADAR", "B2M", "BATF2", "BST2", "C1S", "CASP8", "CCRL2", "CD47", "CD74", "CMPK2", "CMTR1", "CNP", "CSF1", "CXCL11", "DHX58", "DKFZp686H0575", "DKFZp761B2210", "EIF2AK2", "EPSTI1", "GBP2", "GBP4", "GMPR", "HELZ2", "HERC6", "HLA-C", "IFI27", "IFI30", "IFI35", "IFI44", "IFI44L", "IFIH1", "IFIT2", "IFIT3", "IFITM1", "IFITM2", "IFITM3", "IL15", "IL7", "IRF1", "IRF2", "IRF7", "IRF9", "ISG15", "ISG20", "LAMP3", "LAP3", "LGALS3BP", "LY6E", "MOV10", "MVB12A", "MX1", "NMI", "NUB1", "OAS1", "OASL", "OGFR", "PARP12", "PARP14", "PLSCR1", "PNPT1", "PROCR", "PSM8", "PSME2", "RIPK2", "RNF31", "RSAD2", "RTP4", "SAMD9", "SAMD9L", "SELL", "SLC25A28", "SP110", "STAT2", "TAP1", "TDRD7", "TENT5A", "TMEM140", "TRAFD1", "TRIM14", "TRIM21", "TRIM25", "TRIM5", "TXNIP", "UBA7", "UBE2L6", "USP18" ] }, "position": { "x": 2870.5968164406077, "y": 1911.9975082806777, "id": "a8e9823f-492f-4be4-9285-500b1804fc4e" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "f3358a1c-52b7-4c28-a843-8bebf924604c", "name": [ "RESPONSE TO INTERFERON-ALPHA%GOBP%GO:0035455" ], "description": [ "response to interferon-alpha" ], "pvalue": 1.1057e-9, "gs_type": null, "gs_size": 18, "padj": 9.3216e-8, "mcode_cluster_id": null, "NES": -2.4214, "genes": [ "ADAR", "AXL", "BST2", "EIF2AK2", "GAS6", "GATA3", "IFITM1", "IFITM2", "IFITM3", "IFNAR1", "IFNAR2", "KLHL20", "LAMP3", "MX2", "PDE12", "PYHIN1", "RO60", "TPR" ] }, "position": { "x": 2270.5, "y": 2272.9446642487483, "id": "f3358a1c-52b7-4c28-a843-8bebf924604c" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "a621af3e-84e2-40c3-8971-2cc382647573", "name": [ "INTERFERON ALPHA BETA SIGNALING%REACTOME DATABASE ID RELEASE 81%909733" ], "description": [ "Interferon alpha beta signaling" ], "pvalue": 3.9437e-24, "gs_type": null, "gs_size": 76, "padj": 7.6468e-21, "mcode_cluster_id": "Cluster 18", "NES": -2.9691, "genes": [ "ABCE1", "ADAR", "BST2", "EGR1", "EIF2AK2", "GBP2", "HLA-A", "HLA-B", "HLA-C", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "IFI27", "IFI35", "IFI6", "IFIT1", "IFIT2", "IFIT3", "IFIT5", "IFITM1", "IFITM2", "IFITM3", "IFNA10", "IFNA13", "IFNA14", "IFNA16", "IFNA17", "IFNA2", "IFNA21", "IFNA4", "IFNA5", "IFNA6", "IFNA7", "IFNA8", "IFNAR1", "IFNB1", "IP6K2", "IRF1", "IRF2", "IRF3", "IRF4", "IRF5", "IRF6", "IRF7", "IRF8", "IRF9", "ISG15", "ISG20", "JAK1", "KPNA1", "KPNB1", "MX1", "MX2", "OAS1", "OAS2", "OAS3", "OASL", "PSMB8", "PTPN1", "PTPN11", "PTPN6", "RNASEL", "RPS27A", "RSAD2", "SAMHD1", "SOCS1", "SOCS3", "STAT1", "STAT2", "TYK2", "UBA52", "UBB", "UBC", "USP18", "XAF1" ] }, "position": { "x": 273.24355199378977, "y": 1428.9310131955715, "id": "a621af3e-84e2-40c3-8971-2cc382647573", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "7436d07c-5519-4cba-b1e6-9911da634955", "name": [ "RESPONSE TO VIRUS%GOBP%GO:0009615" ], "description": [ "response to virus" ], "pvalue": 5.9188e-20, "gs_type": null, "gs_size": 304, "padj": 3.8255e-17, "mcode_cluster_id": "Cluster 17", "NES": -2.452, "genes": [ "ABCC9", "ACOD1", "ACTA2", "ADAR", "AGBL4", "AGBL5", "AICDA", "AIM2", "AKAP1", "AP1S1", "APOB", "APOBEC3A", "APOBEC3B", "APOBEC3C", "APOBEC3D", "APOBEC3F", "APOBEC3G", "APOBEC3H", "ARF1", "ATAD3A", "ATG7", "AUP1", "AZI2", "AZU1", "BANF1", "BATF3", "BAX", "BCL2", "BCL2L1", "BCL3", "BNIP3", "BNIP3L", "BPIFA1", "BST2", "BTBD17", "CARD8", "CASP1", "CCL11", "CCL19", "CCL22", "CCL4", "CCL5", "CCL8", "CCT5", "CD207", "CDK6", "CFL1", "CGAS", "CHMP3", "CHRM2", "CHUK", "CLPB", "CLU", "CNOT7", "CREBZF", "CXCL10", "CXCL12", "CXCR4", "DCLK1", "DDIT4", "DDX3X", "DDX56", "DDX60", "DDX60L", "DHX15", "DHX16", "DHX58", "DUOX2", "DUS2", "EEF1G", "EIF2AK2", "EIF5A", "ENO1", "EXOSC4", "EXOSC5", "F2RL1", "FADD", "FCN3", "FGR", "FMR1", "FOSL1", "FOXP3", "G3BP1", "GARIN5A", "GATA3", "GBF1", "GBP2", "GBP5", "GBP7", "GSDME", "GTF2F1", "HIF1A", "HMGA2", "HNRNPUL1", "HSP90AA1", "HSPB1", "HYAL1", "HYAL2", "HYAL3", "IFI16", "IFI27", "IFI44", "IFI44L", "IFI6", "IFIH1", "IFIT1", "IFIT1B", "IFIT2", "IFIT3", "IFIT5", "IFITM1", "IFITM2", "IFITM3", "IFNA10", "IFNA13", "IFNA14", "IFNA16", "IFNA17", "IFNA2", "IFNA21", "IFNA4", "IFNA5", "IFNA6", "IFNA7", "IFNA8", "IFNAR1", "IFNAR2", "IFNB1", "IFNE", "IFNG", "IFNGR1", "IFNGR2", "IFNK", "IFNL1", "IFNL2", "IFNL3", "IFNL4", "IFNLR1", "IFNW1", "IKBKB", "IKBKE", "IKBKG", "IL10RB", "IL12A", "IL17RA", "IL21", "IL6", "IRAK3", "IRF1", "IRF2", "IRF3", "IRF5", "IRF7", "IRGM", "ISG15", "ISG20", "IVNS1ABP", "JAK1", "JAK2", "LAMTOR5", "LGALS8", "LGALS9", "LILRB1", "LYST", "MAP3K14", "MAPK11", "MAPK14", "MARCHF2", "MAVS", "MBL2", "MICA", "MID2", "MLKL", "MORC3", "MOV10", "MST1R", "MX1", "MX2", "MYD88", "NCBP1", "NCBP3", "NCK1", "NDUFAF4", "NLRC5", "NLRP1", "NLRP3", "NLRP6", "NLRP9", "NMB", "NMBR", "NMI", "NPC2", "NT5C3A", "OAS1", "OAS2", "OAS3", "OASL", "ODC1", "OPRK1", "PDE12", "PHB1", "PHB2", "PIM2", "PLA2G10", "PLSCR1", "PMAIP1", "PML", "POU2AF1", "POU2F2", "PQBP1", "PRF1", "PRKRA", "PSMA2", "PTPRC", "PYCARD", "PYDC5", "RAB2B", "RELA", "RIGI", "RIOK3", "RIPK3", "RNASE1", "RNASE2", "RNASE6", "RNASEL", "RNF135", "RNF185", "RPS15A", "RPSA", "RRP1B", "RSAD2", "RTP4", "SAMHD1", "SAP30BP", "SEC11A", "SENP7", "SERINC3", "SERINC5", "SETD2", "SHFL", "SKP2", "SLFN11", "SLFN13", "SMARCA5", "SMPD1", "STAT1", "STAT2", "STING1", "STMN1", "TANK", "TBK1", "TBKBP1", "TBX21", "TLR2", "TLR3", "TLR7", "TLR8", "TLR9", "TNF", "TNFSF4", "TOMM70", "TPT1", "TRAF3", "TRAF6", "TRIM11", "TRIM13", "TRIM15", "TRIM21", "TRIM22", "TRIM25", "TRIM26", "TRIM28", "TRIM31", "TRIM32", "TRIM35", "TRIM41", "TRIM5", "TRIM52", "TRIM56", "TRIM6", "TRIM7", "TRIM8", "TTC4", "TYK2", "UAP1", "UBE2N", "UBE2W", "URI1", "USP18", "USP20", "USP27X", "USP29", "USP44", "VWCE", "XCL1", "YJU2B", "ZBP1", "ZC3H12A", "ZC3HAV1", "ZCCHC3", "ZDHHC1", "ZDHHC11", "ZMYND11", "ZNFX1" ] }, "position": { "x": 2757.968930409303, "y": 251.0650979661619, "id": "7436d07c-5519-4cba-b1e6-9911da634955", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "21c31d81-62f6-42c1-ba53-643af41e99a5", "name": [ "BIOCARTA_ARENRF2_PATHWAY%MSIGDB_C2%BIOCARTA_ARENRF2_PATHWAY" ], "description": [ "BIOCARTA_ARENRF2_PATHWAY" ], "pvalue": 0.0048, "gs_type": null, "gs_size": 18, "padj": 0.049, "mcode_cluster_id": null, "NES": 1.7862, "genes": [ "CREB1", "CRYZ", "FOS", "FXYD2", "HEL-S-166mP", "HMOX1", "JUN", "KEAP1", "MAFF", "MAFG", "MAFK", "MAPK1", "MAPK14", "MAPK8", "NFE2L2", "POR", "PRKCA", "PRKCB" ] }, "position": { "x": 3995.539072651805, "y": 2118.9446642487483, "id": "21c31d81-62f6-42c1-ba53-643af41e99a5" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "8c62d23a-e9c6-43e0-bd9a-536f1f486194", "name": [ "GOUT OR KELLEY-SEEGMILLER SYNDROME%SMPDB%SMP0000365" ], "description": [ "Gout or Kelley-Seegmiller Syndrome" ], "pvalue": 0.0025, "gs_type": null, "gs_size": 37, "padj": 0.031, "mcode_cluster_id": "Cluster 3", "NES": -1.6821, "genes": [ "ADA", "ADCY2", "ADSL", "ADSS2", "AK1", "AMPD1", "APRT", "ATAD1", "ATIC", "DGUOK", "ENTPD5", "ENTPD8", "GART", "GDA", "GMPR", "GMPS", "GUCY1A2", "GUCY1B1", "GUK1", "HPRT1", "IMPDH1", "ITPA", "NME6", "NT5C2", "NUDT2", "NUDT5", "PAICS", "PDE10A", "PDE4D", "PFAS", "PNP", "PPAT", "PRPS1L1", "RRM1", "RRM2", "TXN", "XDH" ] }, "position": { "x": 1398.341872988424, "y": 1315.364937035426, "id": "8c62d23a-e9c6-43e0-bd9a-536f1f486194", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "7d2294ef-daaa-4789-a914-58ae7a93dc6c", "name": [ "TRANSLESION SYNTHESIS BY Y FAMILY DNA POLYMERASES BYPASSES LESIONS ON DNA TEMPLATE%REACTOME%R-HSA-110313.3" ], "description": [ "Translesion synthesis by Y family DNA polymerases bypasses lesions on DNA template" ], "pvalue": 0.0028, "gs_type": null, "gs_size": 39, "padj": 0.0338, "mcode_cluster_id": null, "NES": -1.6515, "genes": [ "ISG15", "MAD2L2", "NPLOC4", "PCLAF", "PCNA", "POLD1", "POLD2", "POLD3", "POLD4", "POLE", "POLE2", "POLE3", "POLE4", "POLH", "POLI", "POLK", "RCHY1", "REV1", "REV3L", "RFC1", "RFC2", "RFC3", "RFC4", "RFC5", "RPA1", "RPA2", "RPA3", "RPS27A", "SPRTN", "TRIM25", "UBA52", "UBA7", "UBB", "UBC", "UBE2L6", "UFD1", "USP10", "USP43", "VCP" ] }, "position": { "x": 2444.4373486742247, "y": 1801.8587965586644, "id": "7d2294ef-daaa-4789-a914-58ae7a93dc6c" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "ecd13a27-b554-4d13-a59f-375356cde55c", "name": [ "OLIGODENDROCYTE SPECIFICATION AND DIFFERENTIATION LEADING TO MYELIN COMPONENTS FOR CNS%WIKIPATHWAYS_20240410%WP4304%HOMO SAPIENS" ], "description": [ "Oligodendrocyte specification and differentiation leading to myelin components for CNS" ], "pvalue": 0.0031, "gs_type": null, "gs_size": 26, "padj": 0.0373, "mcode_cluster_id": null, "NES": -1.7618, "genes": [ "ASCL1", "BMP2", "BMP4", "CNP", "CNTF", "CXCL1", "CXCL2", "FGF2", "IGF1", "IL1B", "LIF", "MBP", "MOG", "MYT1", "NKX2-2", "NKX2-6", "OLIG1", "OLIG2", "OMG", "SHH", "SOX10", "SOX5", "SOX6", "SOX8", "SOX9", "TNF" ] }, "position": { "x": 653.5, "y": 2272.9446642487483, "id": "ecd13a27-b554-4d13-a59f-375356cde55c" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "97242c8d-dd1c-43d3-b795-c8546fb204aa", "name": [ "RESPONSE TO BACTERIUM%GOBP%GO:0009617" ], "description": [ "response to bacterium" ], "pvalue": 7.187e-8, "gs_type": null, "gs_size": 422, "padj": 0.0000045442, "mcode_cluster_id": "Cluster 9", "NES": -1.8358, "genes": [ "ACOD1", "ADAM17", "ADAM9", "ADGRB1", "ADH7", "AHR", "AKIRIN2", "ANG", "ANKRD1", "ANKRD17", "ANXA3", "AQP1", "AXL", "AZU1", "BCL10", "BPI", "BPIFA1", "C2", "C4BPA", "C4BPB", "C4B_2", "CACTIN", "CAMP", "CARD16", "CARD17P", "CASP1", "CASP4", "CASP7", "CAV1", "CCL2", "CCR5", "CD14", "CD180", "CD1D", "CD24", "CD274", "CD36", "CD6", "CD68", "CD80", "CD86", "CDC73", "CEBPB", "CFB", "CFP", "CHGA", "CHIT1", "CHMP5", "CITED1", "COLEC12", "CPS1", "CRP", "CST11", "CTR9", "CTSG", "CX3CR1", "CXCL1", "CXCL10", "CXCL11", "CXCL13", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "CYP27B1", "CYRIB", "DAB2IP", "DAO", "DCD", "DEFA1B", "DEFA3", "DEFA4", "DEFA5", "DEFA6", "DEFB1", "DEFB103B", "DEFB104B", "DEFB106B", "DEFB107B", "DEFB109B", "DEFB110", "DEFB114", "DEFB118", "DEFB119", "DEFB124", "DEFB126", "DEFB127", "DEFB128", "DEFB130A", "DEFB130B", "DEFB132", "DEFB133", "DEFB136", "DEFB4B", "DMBT1", "DROSHA", "ELANE", "EPPIN", "EPX", "ERAP1", "ERBIN", "F2", "F2R", "FAU", "FBXO3", "FCER1G", "FCGR2B", "FCN2", "FER", "FGA", "FGB", "FGR", "FOXP1", "FPR2", "FUCA2", "FZD5", "GALP", "GBP1", "GBP2", "GBP3", "GBP4", "GBP6", "GBP7", "GCH1", "GFI1", "GIT1", "GNLY", "GPR15LG", "GPR31", "GSDMA", "GSDMB", "GSDMC", "GSDMD", "GSTP1", "H2BC11", "H2BC12", "H2BC12L", "H2BC21", "H2BC8", "HAMP", "HCK", "HLA-A", "HLA-B", "HLA-DRB1", "HLA-E", "HMGB1", "HMGB2", "HNRNPA0", "HTN1", "HTN3", "IFNAR1", "IFNE", "IGHA1", "IGHA2", "IGHE", "IGHG1", "IGHG2", "IGHG3", "IGHG4", "IGHM", "IGKV3-20", "IKBKG", "IL10", "IL12A", "IL12B", "IL18", "IL1A", "IL1B", "IL1F10", "IL23A", "IL23R", "IL36A", "IL36B", "IL36G", "IL36RN", "IL37", "IL6", "IL6R", "INAVA", "IRAK1", "IRAK2", "IRAK3", "IRAK4", "IRF5", "IRGM", "ISG15", "JAK2", "JCHAIN", "KRT6A", "LACRT", "LALBA", "LBP", "LCE3A", "LCE3B", "LCE3C", "LCN2", "LDOC1", "LGALS9", "LIAS", "LILRB1", "LILRB2", "LPO", "LTF", "LY96", "LYG1", "LYG2", "LYN", "LYPD8", "LYST", "LYZ", "LYZL4", "LYZL6", "MAP3K7", "MAPK14", "MAPK8", "MAPKAPK2", "MAPKAPK3", "MARCHF2", "MAVS", "MBL2", "MEF2C", "MICA", "MMP3", "MMP8", "MMP9", "MPEG1", "MPO", "MR1", "MTDH", "MYD88", "NAGK", "NAIP", "NCR3LG1", "NFKB1", "NFKBIB", "NFKBIL1", "NLRC4", "NLRP1", "NLRP3", "NLRP6", "NLRP7", "NOCT", "NOD1", "NOD2", "NOS1", "NOS2", "NOS3", "NR1D1", "NR1H3", "NR4A1", "NUGGC", "OAS1", "OAS2", "OAS3", "OPTN", "OTUD5", "PABPN1", "PAF1", "PALM3", "PDCD1LG2", "PDCD4", "PDE4B", "PELI1", "PF4", "PF4V1", "PGLYRP1", "PGLYRP2", "PGLYRP3", "PGLYRP4", "PI3", "PLA2G1B", "PLA2G2A", "PLA2G6", "PLAA", "PLCG2", "PPBP", "PPM1E", "PPP1R11", "PRB3", "PRDX3", "PRKCD", "PRKCE", "PTPN22", "PYCARD", "RAB1A", "RAB29", "RAB7A", "RARRES2", "RASGRP4", "RBCK1", "REG3A", "REG3G", "RELA", "RHOA", "RIPK2", "RNASE1", "RNASE10", "RNASE11", "RNASE12", "RNASE13", "RNASE2", "RNASE3", "RNASE4", "RNASE6", "RNASE7", "RNASE8", "RNASE9", "RNF213", "RNF31", "ROMO1", "RPL30", "RPL39", "RPS19", "RPS6KA3", "S100A12", "S100A14", "S100A7", "S100A8", "S100A9", "SBNO2", "SCARB1", "SELE", "SELENOS", "SELP", "SEMG1", "SEMG2", "SERPINE1", "SFTPD", "SHARPIN", "SHC1", "SHPK", "SIRPA", "SLAMF8", "SLC11A1", "SLC15A2", "SLC22A5", "SLC30A1", "SLPI", "SMAD6", "SNCA", "SNX3", "SPN", "SPRR2A", "SRR", "SSC5D", "STAB1", "STAB2", "STAP1", "SYK", "TAB2", "TAB3", "TF", "TFEB", "TICAM1", "TICAM2", "TIRAP", "TLR1", "TLR10", "TLR2", "TLR3", "TLR4", "TLR6", "TLR9", "TNFAIP3", "TNFRSF11A", "TNFRSF14", "TNFRSF1B", "TNFSF4", "TNIP1", "TNIP2", "TNIP3", "TRA", "TRAC", "TRAF6", "TRAV1-1", "TRAV1-2", "TRAV10", "TRAV13-1", "TRAV13-2", "TRAV17", "TRAV20", "TRAV21", "TRAV24", "TRAV25", "TRAV26-1", "TRAV26-2", "TRAV27", "TRAV30", "TRAV34", "TRAV35", "TRAV36DV7", "TRAV39", "TRAV4", "TRAV5", "TRAV6", "TRAV7", "TREM1", "TREM2", "TRIB1", "TRIM41", "TRIM6", "UMOD", "UPF1", "VIL1", "VIM", "WFDC10A", "WFDC10B", "WFDC11", "WFDC12", "WFDC13", "WFDC2", "WFDC3", "WFDC5", "WFDC9", "WNT5A", "XBP1", "XIAP", "ZC3H12A", "ZFP36", "ZNFX1" ] }, "position": { "x": 3096.206407303718, "y": 156.02057989705247, "id": "97242c8d-dd1c-43d3-b795-c8546fb204aa", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "e29e5a88-b753-4a0e-802f-9785a3f344a3", "name": [ "CELL MIGRATION%GOBP%GO:0016477" ], "description": [ "cell migration" ], "pvalue": 0.0000047818, "gs_type": null, "gs_size": 670, "padj": 0.0002, "mcode_cluster_id": null, "NES": -1.554, "genes": [ "AAMP", "ABCC1", "ABI1", "ABI2", "ABI3", "ABL1", "ACKR2", "ACKR3", "ACKR4", "ACVRL1", "ADAM17", "ADAM8", "ADAM9", "ADAMTS12", "ADD2", "ADGRA2", "ADGRE2", "ADGRG1", "ADGRL3", "ADTRP", "AGTR1", "AIMP1", "AKIRIN1", "AKT1", "ALOX5", "AMOT", "AMOTL1", "AMOTL2", "ANG", "ANKS1A", "ANLN", "ANXA1", "APC", "APC2", "APELA", "ARC", "ARF4", "ARHGAP24", "ARHGAP35", "ARHGEF16", "ARL13B", "ARPC5", "ARPC5L", "ARRB2", "ARSB", "ASAP3", "ASB2", "ASTN1", "ASTN2", "ATP1B2", "AUTS2", "AVL9", "AXL", "AZU1", "BAMBI", "BCAR1", "BCL11B", "BIN2", "BRAT1", "BSG", "BTG1", "CALCA", "CARMIL1", "CARMIL2", "CARMIL3", "CASS4", "CCDC88A", "CCK", "CCL1", "CCL11", "CCL13", "CCL14", "CCL15", "CCL16", "CCL17", "CCL18", "CCL19", "CCL2", "CCL20", "CCL21", "CCL22", "CCL23", "CCL24", "CCL25", "CCL26", "CCL28", "CCL3", "CCL3L3", "CCL4", "CCL4L2", "CCL5", "CCL7", "CCL8", "CCN1", "CCN3", "CCR1", "CCR10", "CCR2", "CCR3", "CCR4", "CCR5", "CCR6", "CCR7", "CCR8", "CCR9", "CCRL2", "CD151", "CD177", "CD24", "CD248", "CD2AP", "CD300H", "CD34", "CD44", "CD47", "CD63", "CD9", "CD99", "CDC42BPA", "CDC42BPB", "CDH1", "CDH10", "CDH11", "CDH12", "CDH13", "CDH15", "CDH17", "CDH18", "CDH19", "CDH2", "CDH20", "CDH22", "CDH23", "CDH24", "CDH26", "CDH3", "CDH4", "CDH5", "CDH6", "CDH7", "CDH8", "CDH9", "CDHR3", "CDK1", "CDK5", "CDK5R1", "CDKL5", "CEACAM1", "CELSR1", "CEND1", "CENPV", "CEP85", "CEP85L", "CER1", "CH25H", "CHGA", "CKLF", "CLEC14A", "COL5A1", "CORO1A", "CORO1B", "CORO1C", "CORO6", "CRB2", "CRIPTO", "CRK", "CRKL", "CRTAM", "CTNNA1", "CTNNA2", "CTNNA3", "CTSG", "CUL3", "CX3CL1", "CX3CR1", "CXADR", "CXCL1", "CXCL10", "CXCL11", "CXCL12", "CXCL13", "CXCL16", "CXCL17", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "CXCR1", "CXCR2", "CXCR3", "CXCR4", "CXCR5", "CXCR6", "CYP1B1", "CYP7B1", "DAAM2", "DAB1", "DAB2IP", "DCC", "DCDC2", "DCHS1", "DCX", "DDIT4", "DDR1", "DEFA1B", "DEFB103B", "DEFB104B", "DEFB109B", "DEFB110", "DEFB114", "DEFB130A", "DEFB130B", "DEFB133", "DEFB4B", "DEPDC1B", "DGKZ", "DISC1", "DNAAF4", "DNER", "DOCK1", "DOCK2", "DOCK4", "DOCK5", "DPP4", "DRD1", "DRD2", "EDN1", "EDN2", "EDN3", "EDNRB", "EFHC1", "EFNA1", "EFNB2", "EFS", "EGR3", "ELMO2", "ELP3", "EMILIN1", "EMP2", "ENG", "ENPEP", "EPHA2", "EPHA3", "EPHA8", "EPHB1", "EPHB3", "EPHB4", "EPS8", "ERBB4", "F11R", "F2RL1", "FAM83D", "FAP", "FAT1", "FAT2", "FCER1G", "FER", "FERMT1", "FFAR2", "FGF13", "FGF2", "FGFR1", "FGFR4", "FLNA", "FLRT3", "FLT1", "FMN2", "FMNL1", "FMNL2", "FMNL3", "FN1", "FOLR1", "FOLR2", "FOXB1", "FOXC1", "FOXE1", "FOXJ1", "FSCN1", "FSCN2", "FSCN3", "FSTL1", "FUT4", "FUT7", "FYN", "GAB1", "GAS6", "GATA3", "GBF1", "GCNT1", "GDNF", "GIPC1", "GOLPH3", "GP2", "GPC1", "GPC2", "GPC3", "GPC4", "GPC5", "GPC6", "GPLD1", "GPM6A", "GPR15LG", "GPR183", "GRAPL", "GREM1", "HBEGF", "HCK", "HGF", "HMGB1", "HMGB2", "HOXB9", "HSD3B7", "HTR2B", "HTR6", "ICAM1", "ID1", "IGFBP6", "IL10", "IL12A", "IL12B", "IL16", "IL6", "IL6R", "IQGAP1", "IRAK4", "ITGA11", "ITGA2", "ITGA3", "ITGA4", "ITGA5", "ITGA6", "ITGA7", "ITGAL", "ITGAV", "ITGB1", "ITGB1BP1", "ITGB2", "ITGB3", "ITGB5", "ITGB7", "JAM2", "JAM3", "JAML", "JUP", "KANK1", "KANK2", "KCTD13", "KDR", "KIAA0319", "KIAA0319L", "KIT", "KNSTRN", "KRT16", "KRT2", "L1CAM", "LAMA5", "LAMB1", "LAMC1", "LCK", "LCP1", "LEF1", "LGALS3", "LGALS8", "LHX1", "LHX6", "LIMA1", "LIMD1", "LOXL2", "LPAR1", "LPXN", "LRG1", "LRP12", "LRRK2", "LYN", "LYST", "MADCAM1", "MAP1B", "MAPRE1", "MARK1", "MARK2", "MBOAT7", "MDGA1", "MDK", "MEF2C", "MEGF10", "MEGF8", "MERTK", "MESP1", "MET", "MIA3", "MISP", "MMP12", "MMP9", "MRTFA", "MSMP", "MSN", "MST1R", "MSTN", "MT-RNR2", "MYH9", "MYO18A", "MYO1G", "NANOS1", "NARS1", "NAV1", "NCK1", "NCK2", "NCKAP1", "NCKAP1L", "NDE1", "NDEL1", "NDNF", "NEDD9", "NEO1", "NFATC2", "NINJ1", "NOS3", "NOSTRIN", "NOTCH1", "NOX1", "NR4A1", "NR4A2", "NRCAM", "NRP1", "NRTN", "NTN1", "NTN4", "NTRK2", "OPHN1", "OR51E2", "P2RY12", "PAFAH1B1", "PAK1", "PAK4", "PAK5", "PARP9", "PARVA", "PDCD10", "PDE4B", "PDGFB", "PDGFRA", "PDGFRB", "PDLIM1", "PDPK1", "PDPN", "PEAK1", "PECAM1", "PEX13", "PF4", "PF4V1", "PHACTR4", "PHB2", "PHOX2B", "PIK3CA", "PIK3CB", "PIK3CD", "PIK3CG", "PIK3R3", "PIKFYVE", "PIP5K1A", "PIP5K1C", "PITX2", "PKN1", "PKN2", "PKN3", "PLA2G1B", "PLAT", "PLCG1", "PLEKHG5", "PLET1", "PLXNB1", "PLXNB3", "PLXND1", "PODXL", "PODXL2", "POMGNT2", "PPBP", "PPIA", "PPIB", "PPP1R9B", "PRAG1", "PRKCD", "PRKCQ", "PRKX", "PRPF40A", "PRSS3", "PRSS37", "PRSS3P2", "PRTN3", "PSG2", "PTEN", "PTK2", "PTK6", "PTK7", "PTN", "PTP4A3", "PTPRC", "PTPRF", "PTPRK", "PTPRO", "PXN", "RAB13", "RAB1A", "RAC1", "RAC3", "RADIL", "RAPGEF2", "RASGEF1A", "RELN", "RET", "RHBDF1", "RHOA", "RHOC", "RHOD", "RHOF", "RHOG", "RND1", "RND2", "RND3", "RNH1", "ROBO1", "ROCK1", "RPS19", "RTN4", "S100A12", "S100A2", "S100A8", "S100A9", "S100P", "S1PR1", "SAA1", "SBDS", "SCG2", "SCRIB", "SCYL3", "SDC1", "SDC2", "SDC3", "SDC4", "SDCBP", "SDCCAG8", "SELE", "SELL", "SELP", "SELPLG", "SEMA3A", "SEMA3B", "SEMA3C", "SEMA3D", "SEMA3E", "SEMA3F", "SEMA3G", "SEMA4A", "SEMA4B", "SEMA4C", "SEMA4D", "SEMA4F", "SEMA4G", "SEMA5A", "SEMA5B", "SEMA6A", "SEMA6B", "SEMA6C", "SEMA6D", "SEMA7A", "SEPTIN14", "SEPTIN4", "SFTPD", "SH3BP1", "SH3D21", "SH3KBP1", "SH3RF1", "SHH", "SHROOM2", "SHTN1", "SIRPA", "SIX1", "SIX2", "SIX3", "SLAMF8", "SLC12A2", "SLC9A1", "SLIT1", "SLIT2", "SLIT3", "SMAD4", "SNAI2", "SOS1", "SOX1", "SOX10", "SOX18", "SOX8", "SPATA13", "SPDL1", "SPEF1", "SPN", "SPOCK1", "SRC", "SRF", "SRGAP2", "SRGAP2C", "SRP54", "STARD13", "STAT1", "STRIP2", "SYDE1", "SYDE2", "SYK", "TAFA4", "TAOK2", "TBX1", "TBX21", "TBX5", "TCP11L2", "TESK1", "TGFB2", "TGFBR1", "TGFBR3", "TGFBR3L", "THBS1", "THBS4", "TIAM1", "TMEFF2", "TMEM18", "TNF", "TNFAIP1", "TNFAIP3", "TNFRSF11A", "TNFSF11", "TNFSF12", "TNS1", "TOR1A", "TREM1", "TRIM46", "TRPM2", "TRPM4", "TTBK2", "TUBB2B", "TUBGCP2", "TYRO3", "UMOD", "USP33", "USP45", "USP9X", "USP9Y", "VANGL2", "VAV1", "VAV2", "VAV3", "VCAM1", "VEGFA", "VEGFC", "VTN", "WNK1", "WNT7A", "WWC1", "WWC2", "WWC3", "XCL1", "XCL2", "XCR1", "XG", "YES1", "ZAP70", "ZEB2", "ZG16B", "ZMIZ1", "ZRANB1" ] }, "position": { "x": 3365.8635355854144, "y": 758.4194285559253, "id": "e29e5a88-b753-4a0e-802f-9785a3f344a3" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "57fe1863-184d-45be-85f7-d5b9b0780955", "name": [ "IL12-MEDIATED SIGNALING EVENTS%PATHWAY INTERACTION DATABASE NCI-NATURE CURATED DATA%IL12-MEDIATED SIGNALING EVENTS" ], "description": [ "IL12-mediated signaling events" ], "pvalue": 0.004, "gs_type": null, "gs_size": 60, "padj": 0.0432, "mcode_cluster_id": null, "NES": -1.6448, "genes": [ "ATF2", "B2M", "CCL3", "CCL4", "CCR5", "CD247", "CD3D", "CD3E", "CD3G", "CD4", "CD8A", "CD8B", "EOMES", "FASLG", "FOS", "GADD45B", "GADD45G", "GZMA", "GZMB", "HLA-A", "HLA-DRA", "HLA-DRB1", "HLX", "IFNG", "IL12A", "IL12B", "IL12RB1", "IL12RB2", "IL18", "IL18R1", "IL18RAP", "IL1B", "IL1R1", "IL2", "IL2RA", "IL2RB", "IL2RG", "IL4", "JAK2", "LCK", "MAP2K3", "MAP2K6", "MAPK14", "MTOR", "NFKB1", "NFKB2", "NOS2", "RAB7A", "RELA", "RELB", "RIPK2", "SOCS1", "SPHK2", "STAT1", "STAT3", "STAT4", "STAT5A", "STAT6", "TBX21", "TYK2" ] }, "position": { "x": 317.5420974032512, "y": 1981.9975082806777, "id": "57fe1863-184d-45be-85f7-d5b9b0780955" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "d13d294e-d144-42b1-93b4-924e605c2903", "name": [ "NEGATIVE REGULATION OF VIRAL PROCESS%GOBP%GO:0048525" ], "description": [ "negative regulation of viral process" ], "pvalue": 4.9461e-18, "gs_type": null, "gs_size": 86, "padj": 1.7617e-15, "mcode_cluster_id": "Cluster 29", "NES": -2.728, "genes": [ "AICDA", "APCS", "APOBEC3A", "APOBEC3B", "APOBEC3C", "APOBEC3D", "APOBEC3F", "APOBEC3G", "APOBEC3H", "ARK2N", "BANF1", "BST2", "BTBD17", "CCL5", "CH25H", "CIITA", "CSNK2B", "EIF2AK2", "FAM111A", "FCN1", "FCN3", "GSN", "HEXIM1", "HMGA2", "IFI16", "IFIH1", "IFIT1", "IFIT5", "IFITM1", "IFITM2", "IFITM3", "IFNA2", "IFNB1", "IFNL3", "ILF3", "INPP5K", "ISG15", "ISG20", "LARP7", "LRRC15", "LTF", "LY6E", "MAVS", "MBL2", "MID2", "MORC2", "MPHOSPH8", "MX1", "N4BP1", "OAS1", "OAS2", "OAS3", "OASL", "PLSCR1", "PPIA", "PROX1", "PTX3", "RESF1", "RNASEL", "RSAD2", "SETDB1", "SHFL", "SLPI", "SNX3", "SRPK1", "SRPK2", "STAT1", "TASOR", "TNF", "TNIP1", "TRIM11", "TRIM13", "TRIM14", "TRIM15", "TRIM21", "TRIM26", "TRIM27", "TRIM31", "TRIM32", "TRIM5", "TRIM6", "TRIM62", "UBP1", "ZC3HAV1", "ZFP36", "ZNFX1" ] }, "position": { "x": 1154.9531622895324, "y": 1343.5513403874868, "id": "d13d294e-d144-42b1-93b4-924e605c2903", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "203837ef-155a-41f5-88ce-17e447837c86", "name": [ "ANTIGEN PROCESSING AND PRESENTATION OF PEPTIDE ANTIGEN%GOBP%GO:0048002" ], "description": [ "antigen processing and presentation of peptide antigen" ], "pvalue": 0.0000090393, "gs_type": null, "gs_size": 66, "padj": 0.0003, "mcode_cluster_id": "Cluster 10", "NES": -2.0554, "genes": [ "ABCB9", "ACE", "B2M", "CALR", "CD209", "CLEC4A", "CLEC4M", "CTSD", "CTSE", "CTSF", "CTSL", "CTSS", "CTSV", "DNM2", "ERAP1", "ERAP2", "FCER1G", "FCGR2B", "HFE", "HLA-A", "HLA-B", "HLA-C", "HLA-DMA", "HLA-DMB", "HLA-DOA", "HLA-DOB", "HLA-DPA1", "HLA-DPB1", "HLA-DQA1", "HLA-DQA2", "HLA-DQB1", "HLA-DQB2", "HLA-DRA", "HLA-DRB1", "HLA-DRB3", "HLA-DRB4", "HLA-DRB5", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "IDE", "IFI30", "IKBKB", "LGMN", "LNPEP", "MARCHF1", "MARCHF8", "MFSD6", "MICA", "MICB", "MPEG1", "PDIA3", "PIKFYVE", "RAET1E", "RAET1G", "RAET1L", "SAR1B", "SLC11A1", "TAP1", "TAP2", "TAPBP", "TAPBPL", "ULBP1", "ULBP2", "ULBP3" ] }, "position": { "x": 1973.661542853319, "y": 1006.5924920335186, "id": "203837ef-155a-41f5-88ce-17e447837c86", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "name": [ "PROTEIN SYNTHESIS: ALANINE%PATHWHIZ%PW101384" ], "description": [ "Protein Synthesis: Alanine" ], "pvalue": 2.8836e-17, "gs_type": null, "gs_size": 80, "padj": 4.9887e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7871, "genes": [ "AARS1", "FAU", "RACK1", "RPL10", "RPL10A", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "UBA52" ] }, "position": { "x": 952.0757440041089, "y": 238.12556931009289, "id": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "72911cb8-04f8-4a6d-95a9-845ffe95d894", "name": [ "EMBRYONIC SKELETAL SYSTEM MORPHOGENESIS%GOBP%GO:0048704" ], "description": [ "embryonic skeletal system morphogenesis" ], "pvalue": 0.0004, "gs_type": null, "gs_size": 37, "padj": 0.0074, "mcode_cluster_id": null, "NES": -1.8271, "genes": [ "ALX1", "COL2A1", "CTNNB1", "DSCAML1", "DYNC2I1", "EIF4A3", "FGFR2", "FUZ", "HOXA1", "HOXA3", "HOXA4", "HOXA9", "HOXB3", "HOXB4", "HOXB9", "HOXC4", "HOXC9", "HOXD3", "HOXD4", "HOXD9", "IRX5", "LHX1", "MEGF8", "MTHFD1", "MTHFD1L", "NIPBL", "NOG", "OSR1", "OSR2", "PDGFRA", "SIX1", "SOX11", "TBX1", "TFAP2A", "TGFBR1", "TGFBR2", "TWIST1" ] }, "position": { "x": 469.04833669466177, "y": 1319.9544262402474, "id": "72911cb8-04f8-4a6d-95a9-845ffe95d894" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "f1c5a3ee-3b3b-4d91-812e-470942318a73", "name": [ "BETA3 INTEGRIN CELL SURFACE INTERACTIONS%PATHWAY INTERACTION DATABASE NCI-NATURE CURATED DATA%BETA3 INTEGRIN CELL SURFACE INTERACTIONS" ], "description": [ "Beta3 integrin cell surface interactions" ], "pvalue": 0.0029, "gs_type": null, "gs_size": 43, "padj": 0.0345, "mcode_cluster_id": null, "NES": 1.7399, "genes": [ "CCN1", "CD47", "COL1A1", "COL1A2", "COL4A1", "COL4A3", "COL4A4", "COL4A5", "COL4A6", "EDIL3", "F11R", "FBN1", "FGA", "FGB", "FGG", "FN1", "HMGB1", "IBSP", "ITGA2B", "ITGAV", "ITGB3", "KDR", "L1CAM", "LAMA4", "LAMB1", "LAMC1", "PDGFB", "PDGFRB", "PECAM1", "PLAU", "PLAUR", "PVR", "SDC1", "SDC4", "SPHK1", "SPP1", "TGFBI", "TGFBR2", "THBS1", "THY1", "TNC", "VEGFA", "VTN" ] }, "position": { "x": 3764.539072651805, "y": 2195.9446642487483, "id": "f1c5a3ee-3b3b-4d91-812e-470942318a73" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "44e853cd-d32d-428d-873d-0278f45a1c18", "name": [ "MITOTIC G2-G2 M PHASES%REACTOME%R-HSA-453274.4" ], "description": [ "Mitotic G2-G2 M phases" ], "pvalue": 0.001, "gs_type": null, "gs_size": 183, "padj": 0.0164, "mcode_cluster_id": null, "NES": -1.5421, "genes": [ "ACTR1A", "AJUBA", "AKAP9", "ALMS1", "AURKA", "BORA", "BTRC", "CCNA1", "CCNA2", "CCNB1", "CCNB2", "CCNH", "CCP110", "CDC25A", "CDC25B", "CDC25C", "CDK1", "CDK11A", "CDK11B", "CDK2", "CDK5RAP2", "CDK7", "CDKN1A", "CENPF", "CENPJ", "CEP131", "CEP135", "CEP152", "CEP164", "CEP192", "CEP250", "CEP290", "CEP41", "CEP43", "CEP57", "CEP63", "CEP70", "CEP72", "CEP76", "CEP78", "CETN2", "CKAP5", "CLASP1", "CNTRL", "CSNK1D", "CSNK1E", "CUL1", "DCTN2", "DCTN3", "DYNC1H1", "DYNC1I2", "DYNLL1", "E2F1", "E2F3", "EP300", "FBXL18", "FBXL7", "FBXW11", "FKBPL", "FOXM1", "GTSE1", "HAUS1", "HAUS2", "HAUS3", "HAUS4", "HAUS5", "HAUS6", "HAUS7", "HAUS8", "HMMR", "HSP90AA1", "HSP90AB1", "LCMT1", "LIN37", "LIN52", "LIN54", "LIN9", "MAPRE1", "MNAT1", "MYBL2", "MZT1", "MZT2A", "MZT2B", "NDE1", "NEDD1", "NEK2", "NINL", "NME7", "ODF2", "OFD1", "OPTN", "PAFAH1B1", "PCM1", "PCNT", "PHLDA1", "PKMYT1", "PLK1", "PLK4", "PPME1", "PPP1CB", "PPP1R12A", "PPP2CA", "PPP2CB", "PPP2R1A", "PPP2R1B", "PPP2R2A", "PPP2R3B", "PRKACA", "PRKAR2B", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RAB8A", "RBBP4", "RBX1", "RPS27A", "SDCCAG8", "SEM1", "SFI1", "SKP1", "SSNA1", "TP53", "TPX2", "TUBA1A", "TUBA4A", "TUBB", "TUBB4A", "TUBB4B", "TUBG1", "TUBG2", "TUBGCP2", "TUBGCP3", "TUBGCP4", "TUBGCP5", "TUBGCP6", "UBA52", "UBB", "UBC", "WEE1", "XPO1", "YWHAE", "YWHAG" ] }, "position": { "x": 462.8958999405778, "y": 837.7206401745798, "id": "44e853cd-d32d-428d-873d-0278f45a1c18" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "ff74cec2-2157-4a6f-818c-220e440cef80", "name": [ "RESPONSE TO OXYGEN LEVELS%GOBP%GO:0070482" ], "description": [ "response to oxygen levels" ], "pvalue": 7.9697e-7, "gs_type": null, "gs_size": 156, "padj": 0, "mcode_cluster_id": "Cluster 14", "NES": 1.9132, "genes": [ "ACAA2", "ADA", "ADAM17", "ADAM8", "ADO", "AJUBA", "AK4", "ALAS2", "ALKBH5", "ANG", "ANGPT4", "ANGPTL4", "AQP1", "AQP3", "ARNT", "ARNT2", "ASCL2", "ATG7", "ATP6AP1", "ATP6V0A2", "ATP6V0D1", "ATP6V1A", "ATP6V1G1", "BAD", "BMP2", "BMP7", "BNIP3", "BNIP3L", "CAV1", "CBFA2T3", "CCDC115", "CD24", "CHRNA4", "CHRNA7", "CHRNB2", "CIAO3", "CITED2", "CLDN3", "CPEB1", "CPEB2", "CPEB4", "CREBBP", "CXCR4", "CYB5R4", "DDIT4", "DPP4", "EGLN1", "EGLN2", "EGLN3", "EGR1", "EP300", "EPAS1", "FABP1", "FAM162A", "FAS", "FMN2", "FOXO1", "FUNDC1", "GATA6", "GUCY1A1", "GUCY1A2", "GUCY1B1", "GUCY1B2", "HIF1A", "HILPDA", "HIPK2", "HMOX2", "HP1BP3", "HSP90B1", "HYOU1", "ITPR1", "ITPR2", "KCND2", "KCNMA1", "LIMD1", "LMNA", "LONP1", "LOXL2", "MDM2", "MDM4", "MGARP", "MLST8", "MMP2", "MT3", "MTOR", "MYC", "MYOCD", "NDNF", "NDRG1", "NDUFS2", "NF1", "NFE2L2", "NGB", "NKX3-1", "NOP53", "NOS1", "NOTCH1", "NPEPPS", "OPRD1", "P4HB", "PDK1", "PDK3", "PGF", "PGK1", "PICK1", "PIN1", "PINK1", "PLEKHN1", "PLK3", "PLOD1", "PLOD2", "PMAIP1", "PML", "PPARG", "PRKAA1", "PTGIS", "PTGS2", "REST", "RGCC", "RORA", "RPTOR", "RYR1", "RYR2", "SCN2A", "SFRP1", "SIRT1", "SIRT2", "SLC8A3", "SMAD3", "SMAD4", "SRF", "SUV39H1", "SUV39H2", "TBL2", "TERT", "TGFB1", "TGFB2", "TGFB3", "TH", "THBS1", "TIGAR", "TM9SF4", "TMEM199", "TP53", "TSC1", "TWIST1", "UBQLN1", "UCP2", "USF1", "VEGFA", "VEGFB", "VEGFC", "VEGFD", "VHL", "WTIP", "ZFP36L1" ] }, "position": { "x": 3598.5296220703685, "y": 1869.0527047598014, "id": "ff74cec2-2157-4a6f-818c-220e440cef80", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "7b557c97-ae99-4d68-8911-24a37bf4ee92", "name": [ "EMBRYONIC MORPHOGENESIS%GOBP%GO:0048598" ], "description": [ "embryonic morphogenesis" ], "pvalue": 0.0043, "gs_type": null, "gs_size": 284, "padj": 0.0454, "mcode_cluster_id": "Cluster 16", "NES": -1.4265, "genes": [ "ACVR1", "AFF3", "AHDC1", "AHI1", "ALDH1A3", "ALX1", "ANKRD24", "APELA", "APLNR", "ATOH8", "ATP6V1B1", "BBS4", "BBS5", "BBS7", "BCL10", "BMP4", "BMP5", "BMP7", "BMPR2", "BRD3", "CACNA1C", "CCDC103", "CCDC39", "CCDC40", "CDC73", "CELSR1", "CEP290", "CER1", "CHD7", "CLRN2", "COBL", "COL11A1", "COL12A1", "COL2A1", "COL4A2", "COL6A1", "COL7A1", "COL8A1", "CRB2", "CREBBP", "CTNNB1", "CTR9", "CYP26B1", "DACT1", "DCANP1", "DEAF1", "DLC1", "DLL1", "DLL4", "DNAAF1", "DSCAML1", "DUSP1", "DUSP2", "DUSP4", "DUSP5", "DVL1", "DVL1P1", "DVL2", "DVL3", "DYNC2I1", "ECE1", "EFEMP1", "EIF4A3", "ENG", "EOMES", "EPHB2", "EYA2", "FBN1", "FBN2", "FBXW4", "FGF2", "FGF8", "FGFR2", "FLRT3", "FLT1", "FN1", "FOLR1", "FOXA2", "FOXE1", "FOXF1", "FOXH1", "FOXN4", "FUZ", "GATA3", "GATA4", "GLI2", "GLI3", "GPC3", "GREM2", "GRHL2", "GRHL3", "GSC", "HAND1", "HDAC1", "HDAC2", "HES1", "HMGA2", "HOXA1", "HOXA11", "HOXA3", "HOXA4", "HOXA9", "HOXB3", "HOXB4", "HOXB9", "HOXC4", "HOXC9", "HOXD3", "HOXD4", "HOXD9", "HPN", "HTR2B", "ID2", "IFT122", "IGF2", "IHH", "INHBA", "INTU", "IRX5", "ITGA2", "ITGA3", "ITGA4", "ITGA5", "ITGA7", "ITGA8", "ITGAV", "ITGB1", "ITGB2", "ITGB3", "ITGB4", "ITGB5", "KDF1", "KDM2B", "KDM6B", "KIF16B", "KLF4", "LAMA3", "LAMB1", "LAMB3", "LEO1", "LHX1", "LMBRD1", "LMO4", "LRP2", "LUZP1", "MAP3K20", "MBNL1", "MEF2C", "MEGF8", "MESP1", "MESP2", "MFAP2", "MFAP5", "MICAL2", "MIXL1", "MKKS", "MMP14", "MMP15", "MMP2", "MMP8", "MMP9", "MSGN1", "MSX1", "MSX2", "MTHFD1", "MTHFD1L", "MTHFR", "MYH3", "MYO3A", "MYO3B", "MYO6", "NANOG", "NAT8B", "NDRG4", "NEUROD1", "NEUROG1", "NIPBL", "NKX2-5", "NODAL", "NOG", "NOTCH1", "NPHP3", "NR4A3", "OSR1", "OSR2", "OTOP1", "OTX2", "PAF1", "PALS1", "PAX2", "PAX8", "PDGFRA", "PDZD7", "PHACTR4", "PKD2", "PLS1", "PLXNB2", "POU3F4", "POU5F1", "PPP1R35", "PRICKLE1", "PROX1", "PTCH1", "RARG", "RBP4", "RBPMS2", "ROCK1", "ROCK2", "RTF1", "RYR2", "SALL1", "SCRIB", "SCX", "SEMA4C", "SETD2", "SETDB2", "SHH", "SIX1", "SIX2", "SIX3", "SIX4", "SKI", "SLC39A12", "SLC44A4", "SMAD2", "SMO", "SNAI1", "SOBP", "SOD1", "SOX11", "SOX17", "SOX18", "SOX2", "SOX7", "SOX8", "SOX9", "SRF", "STIL", "STRA6", "STRC", "TASOR", "TBX1", "TBX18", "TBX19", "TBX2", "TBX20", "TBX3", "TBX4", "TBX5", "TBX6", "TBXT", "TCF21", "TFAP2A", "TGFB1", "TGFB2", "TGFBR1", "TGFBR2", "TH", "TIFAB", "TMIE", "TPRN", "TRIM15", "TSC2", "TTC39C", "TWIST1", "UGDH", "USH1C", "VANGL2", "VASP", "VTN", "WDPCP", "WHRN", "WNT16", "WNT5A", "WNT7A", "WNT7B", "WNT8B", "YBX1", "YTHDF2", "ZIC1", "ZIC3", "ZNF281", "ZNF358", "ZNF568" ] }, "position": { "x": 713.7935206971157, "y": 1399.3540465346587, "id": "7b557c97-ae99-4d68-8911-24a37bf4ee92", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "171e0e5b-ee37-4508-a139-85ff67a866f3", "name": [ "EMBRYONIC ORGAN DEVELOPMENT%GOBP%GO:0048568" ], "description": [ "embryonic organ development" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 212, "padj": 0.0018, "mcode_cluster_id": "Cluster 16", "NES": -1.6745, "genes": [ "ACVR1", "AHI1", "ALDH1A3", "ALX1", "ANKRD24", "APELA", "APLNR", "ASCL2", "ATF4", "ATP6V1B1", "BBS5", "BBS7", "BMP5", "BMP7", "BMPR1A", "CASP8", "CCDC103", "CCDC39", "CCDC40", "CDC40", "CEP290", "CHD7", "CITED2", "CLRN2", "COBL", "COL18A1", "COL27A1", "COL2A1", "CRB2", "CTNNB1", "CXCL8", "DCANP1", "DLL1", "DNAAF1", "DSCAML1", "DVL1", "DVL2", "DYNC2I1", "E2F7", "E2F8", "EFEMP1", "EIF4A3", "ENG", "EOMES", "EPHB2", "ERCC3", "ESRRB", "FBN1", "FBN2", "FGFR2", "FLT3LG", "FOLR1", "FOXE1", "FOXF1", "FOXH1", "FOXN4", "FUZ", "GATA3", "GATA4", "GCM1", "GDNF", "GLI2", "GLI3", "GSC", "HAND1", "HES1", "HEY1", "HEY2", "HOXA1", "HOXA3", "HOXA4", "HOXA9", "HOXB3", "HOXB4", "HOXB7", "HOXB9", "HOXC4", "HOXC9", "HOXD3", "HOXD4", "HOXD9", "HPN", "HSCB", "ID2", "IFT122", "IGF2", "IHH", "IL3", "IRX5", "KDM2B", "KDR", "KIT", "KITLG", "KMT2A", "LHX1", "MEF2C", "MEGF8", "MESP1", "MFAP2", "MFAP5", "MFSD2A", "MICAL2", "MKKS", "MTHFD1", "MTHFD1L", "MYO3A", "MYO3B", "MYO6", "NDRG4", "NES", "NEUROD1", "NEUROG1", "NIPBL", "NKX2-5", "NKX2-6", "NOG", "NOTCH1", "NPHP3", "OSR1", "OSR2", "OTOP1", "PAX2", "PAX8", "PBX1", "PBX2", "PBX3", "PBX4", "PCSK5", "PDGFA", "PDGFB", "PDGFRA", "PDZD7", "PHACTR4", "PITX2", "PKD1", "PKD2", "PKDCC", "PLK4", "PLS1", "POU3F4", "PPIL1", "PPP1R35", "PROX1", "RARB", "RARG", "RARRES2", "RBP4", "RBPJ", "RBPMS2", "RNF112", "RPL10", "RYR2", "SALL1", "SETDB2", "SH2B3", "SHH", "SIX1", "SIX2", "SIX3", "SLC44A4", "SMO", "SOBP", "SOD1", "SOX11", "SOX15", "SOX17", "SOX18", "SOX9", "SRF", "STIL", "STRA6", "STRC", "TAL1", "TBC1D23", "TBX1", "TBX18", "TBX2", "TBX20", "TBX4", "TBX6", "TCF21", "TEAD1", "TEAD2", "TEAD3", "TEAD4", "TFAP2A", "TFEB", "TGFB1", "TGFB2", "TGFBR1", "TGFBR2", "TH", "THOC5", "TIFAB", "TMIE", "TNF", "TPO", "TPRN", "TTC39C", "TWIST1", "USH1C", "UTP25", "VANGL2", "VEGFA", "WHRN", "WNT16", "WNT5A", "WNT7B", "ZFPM1", "ZIC1", "ZIC3", "ZNF568" ] }, "position": { "x": 697.7387498931774, "y": 1483.9838299042276, "id": "171e0e5b-ee37-4508-a139-85ff67a866f3", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "76d489ff-e898-453e-b7ce-95cac772556c", "name": [ "NEGATIVE REGULATION OF ADAPTIVE IMMUNE RESPONSE BASED ON SOMATIC RECOMBINATION OF IMMUNE RECEPTORS BUILT FROM IMMUNOGLOBULIN SUPERFAMILY DOMAINS%GOBP%GO:0002823" ], "description": [ "negative regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains" ], "pvalue": 0.0022, "gs_type": null, "gs_size": 39, "padj": 0.0288, "mcode_cluster_id": "Cluster 27", "NES": -1.805, "genes": [ "AHR", "C4BPA", "C4BPB", "CD274", "CD46", "CD80", "CEACAM1", "CR1", "CR1L", "CR2", "FCGR2B", "FOXJ1", "FOXP3", "HFE", "HLA-F", "HLA-G", "IFNA2", "IFNB1", "IL4I1", "JAK3", "KLRC1", "KLRD1", "LILRB1", "LILRB4", "LOXL3", "NCKAP1L", "PARP3", "PDCD1", "PTPRC", "RC3H1", "RC3H2", "SMAD7", "SUSD4", "SVEP1", "TBX21", "TNFSF4", "UFL1", "XCL1", "ZC3H12A" ] }, "position": { "x": 2133.368191990387, "y": 573.2725607517457, "id": "76d489ff-e898-453e-b7ce-95cac772556c", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "41c41709-2c8b-4b0e-b4e0-8e9108a563d8", "name": [ "METAL ION TRANSPORT%GOBP%GO:0030001" ], "description": [ "metal ion transport" ], "pvalue": 0.0034, "gs_type": null, "gs_size": 487, "padj": 0.0397, "mcode_cluster_id": "Cluster 11", "NES": 1.4091, "genes": [ "ABCB6", "ABCB7", "ABCB8", "ABCC5", "ABCC8", "ABCC9", "ADRA1A", "AFG3L2", "ANK2", "ANO6", "ANXA6", "AP3D1", "AQP1", "ARHGAP1", "ASIC1", "ASIC2", "ASIC3", "ASIC4", "ASIC5", "ATOX1", "ATP12A", "ATP1A1", "ATP1A2", "ATP1A3", "ATP1A4", "ATP1B1", "ATP1B2", "ATP1B3", "ATP2A1", "ATP2A2", "ATP2A3", "ATP2B1", "ATP2B2", "ATP2B3", "ATP2B4", "ATP2C1", "ATP2C2", "ATP4A", "ATP4B", "ATP7A", "ATP7B", "CACNA1A", "CACNA1B", "CACNA1C", "CACNA1D", "CACNA1E", "CACNA1F", "CACNA1G", "CACNA1H", "CACNA1I", "CACNA1S", "CACNA2D1", "CACNA2D4", "CACNB1", "CACNB2", "CACNB3", "CACNG1", "CACNG3", "CACNG6", "CACNG7", "CACNG8", "CALCRL", "CALHM2", "CAMK2A", "CASR", "CATSPER1", "CATSPER2", "CATSPER3", "CATSPER4", "CAV1", "CCDC51", "CCL19", "CCL21", "CCL3", "CCL5", "CCL8", "CCR1", "CCR5", "CCR7", "CDH23", "CHERP", "CHP1", "CHRNA4", "CHRNA7", "CHRNB2", "CLCNKB", "CLDN16", "CLTC", "CNGA1", "CNGA2", "CNGA4", "CNGB1", "CNNM4", "COX17", "CP", "CRACR2A", "CRACR2B", "CSN2", "CUTC", "CYBRD1", "CYP27B1", "DNM2", "DRD2", "ERO1A", "F2R", "FASLG", "FGF13", "FGF2", "FKBP1A", "FLNA", "FLVCR1", "FLVCR2", "FTH1", "FXYD2", "FYN", "GAS6", "GHITM", "GP1BA", "GP1BB", "GP5", "GP9", "GRIN1", "GRIN2A", "GRIN2B", "GRIN2C", "GRIN2D", "GRIN3A", "HCN1", "HCN2", "HCN3", "HCN4", "HEPH", "HEPHL1", "HPN", "HSPA9", "HTR2A", "HTR2B", "HTR2C", "IBTK", "ITGAV", "ITPR1", "ITPR2", "ITPR3", "JPH1", "JPH2", "JPH3", "JPH4", "KCNA1", "KCNA10", "KCNA2", "KCNA3", "KCNA4", "KCNA5", "KCNA6", "KCNA7", "KCNAB1", "KCNAB3", "KCNB1", "KCNB2", "KCNC1", "KCNC2", "KCNC3", "KCNC4", "KCND1", "KCND2", "KCND3", "KCNE1", "KCNE2", "KCNE3", "KCNE4", "KCNE5", "KCNF1", "KCNG1", "KCNG2", "KCNG3", "KCNG4", "KCNH2", "KCNH3", "KCNH4", "KCNH5", "KCNH6", "KCNH7", "KCNH8", "KCNIP2", "KCNJ1", "KCNJ10", "KCNJ11", "KCNJ12", "KCNJ13", "KCNJ14", "KCNJ15", "KCNJ16", "KCNJ18", "KCNJ2", "KCNJ3", "KCNJ4", "KCNJ5", "KCNJ6", "KCNJ8", "KCNJ9", "KCNK1", "KCNK10", "KCNK12", "KCNK13", "KCNK15", "KCNK16", "KCNK17", "KCNK18", "KCNK2", "KCNK3", "KCNK4", "KCNK5", "KCNK6", "KCNK7", "KCNK9", "KCNMA1", "KCNMB1", "KCNMB2", "KCNMB3", "KCNMB4", "KCNN1", "KCNN2", "KCNN3", "KCNN4", "KCNQ1", "KCNQ2", "KCNQ3", "KCNQ4", "KCNQ5", "KCNS1", "KCNS2", "KCNS3", "KCNT1", "KCNT2", "KCNU1", "KCNV1", "KCNV2", "KLHL3", "LCK", "LCN2", "LETM1", "LMTK2", "LRP2", "LRRC26", "LRRC38", "LRRC52", "LRRC55", "LTF", "MAGED2", "MAGT1", "MAIP1", "MCOLN1", "MCOLN2", "MCOLN3", "MCU", "MCUB", "MCUR1", "MELTF", "MICU1", "MICU2", "MICU3", "MMGT1", "MRS2", "MS4A1", "MT3", "NALCN", "NALF1", "NALF2", "NDFIP1", "NDFIP2", "NDUFA9", "NIPA1", "NIPA2", "NIPAL1", "NIPAL2", "NIPAL3", "NIPAL4", "NOL3", "ORAI1", "ORAI2", "ORAI3", "OXSR1", "P2RX1", "P2RX2", "P2RX3", "P2RX4", "P2RX5", "P2RX6", "P2RX7", "PANX1", "PKD1", "PKD2", "PKD2L1", "PLCB1", "PLCB2", "PLCB3", "PLCB4", "PLCD1", "PLCE1", "PLCG1", "PLCG2", "PLCH1", "PLCH2", "PMPCB", "PTPRC", "RAB11B", "RAMP1", "RAMP2", "RAMP3", "REP15", "RYR1", "RYR2", "RYR3", "SCARA5", "SCN10A", "SCN11A", "SCN1A", "SCN1B", "SCN2A", "SCN2B", "SCN3A", "SCN3B", "SCN4A", "SCN4B", "SCN5A", "SCN7A", "SCN8A", "SCN9A", "SCNN1A", "SCNN1B", "SCNN1D", "SCNN1G", "SELENOK", "SGK1", "SLC11A1", "SLC11A2", "SLC12A1", "SLC12A2", "SLC12A3", "SLC12A4", "SLC12A5", "SLC12A6", "SLC12A7", "SLC12A8", "SLC13A1", "SLC17A2", "SLC17A3", "SLC17A4", "SLC17A7", "SLC1A3", "SLC22A17", "SLC23A1", "SLC24A1", "SLC24A2", "SLC24A3", "SLC24A4", "SLC24A5", "SLC25A23", "SLC25A28", "SLC25A37", "SLC30A1", "SLC30A10", "SLC30A2", "SLC30A3", "SLC30A4", "SLC30A5", "SLC30A6", "SLC30A7", "SLC30A8", "SLC30A9", "SLC31A1", "SLC31A2", "SLC34A3", "SLC35G1", "SLC38A7", "SLC39A1", "SLC39A10", "SLC39A11", "SLC39A12", "SLC39A13", "SLC39A14", "SLC39A2", "SLC39A3", "SLC39A4", "SLC39A5", "SLC39A6", "SLC39A7", "SLC39A8", "SLC39A9", "SLC3A2", "SLC40A1", "SLC41A1", "SLC41A2", "SLC41A3", "SLC48A1", "SLC4A11", "SLC4A4", "SLC4A8", "SLC4A9", "SLC5A1", "SLC5A12", "SLC5A2", "SLC5A4", "SLC5A5", "SLC5A6", "SLC5A8", "SLC6A1", "SLC6A11", "SLC6A12", "SLC6A13", "SLC6A14", "SLC6A15", "SLC6A16", "SLC6A17", "SLC6A18", "SLC6A19", "SLC6A2", "SLC6A20", "SLC6A3", "SLC6A4", "SLC6A5", "SLC6A6", "SLC6A7", "SLC6A8", "SLC6A9", "SLC8A1", "SLC8A2", "SLC8A3", "SLC8B1", "SLC9A1", "SLC9A2", "SLC9A3", "SLC9A4", "SLC9A5", "SLC9A6", "SLC9A7", "SLC9A8", "SLC9A9", "SLC9C1", "SLC9C2", "SLN", "SMDT1", "STEAP2", "STEAP3", "STEAP4", "STIM1", "STIM2", "STIMATE", "STK39", "TF", "TFR2", "TFRC", "TMCO1", "TMEM163", "TMEM165", "TMEM175", "TMEM94", "TPCN2", "TPT1", "TRDN", "TRPA1", "TRPC1", "TRPC3", "TRPC4", "TRPC4AP", "TRPC5", "TRPC6", "TRPC7", "TRPM1", "TRPM2", "TRPM3", "TRPM4", "TRPM5", "TRPM6", "TRPM7", "TRPM8", "TRPV1", "TRPV2", "TRPV3", "TRPV4", "TRPV5", "TRPV6", "TTYH1", "TUSC3", "VDAC1", "WNK4", "XCL1" ] }, "position": { "x": 4049.445146796027, "y": 1581.980547237103, "id": "41c41709-2c8b-4b0e-b4e0-8e9108a563d8", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "d9692b57-896a-486f-b6a3-d4ac2d79566e", "name": [ "HEAD DEVELOPMENT%GOBP%GO:0060322" ], "description": [ "head development" ], "pvalue": 0.0011, "gs_type": null, "gs_size": 405, "padj": 0.0175, "mcode_cluster_id": null, "NES": 1.4098, "genes": [ "AATK", "ABCB6", "ACTB", "ADGRG1", "AFF2", "AFG2A", "AGTPBP1", "AGTR2", "AHI1", "AIM2", "AKIRIN2", "AKNA", "AMIGO1", "AMIGO2", "AMIGO3", "ANAPC7", "ANKRD11", "APLP1", "APOD", "AQP1", "ARHGAP11B", "ARL13B", "ARNT2", "ASCL1", "ATF5", "ATP1A2", "ATP1B2", "ATP5PB", "ATP5PF", "ATP6AP2", "ATP7A", "ATXN1", "BAG6", "BASP1", "BBS2", "BBS4", "BGLAP", "BMP2", "BMP4", "BMP5", "BMP7", "BPTF", "BTBD3", "C12orf57", "CA10", "CALM1", "CALM2", "CALM3", "CASP5", "CBLN1", "CCDC14", "CCDC32", "CCDC85C", "CDC42", "CDK5R1", "CDK5R2", "CDK5RAP1", "CDK5RAP2", "CDK5RAP3", "CDK6", "CEND1", "CENPF", "CEP120", "CEP290", "CHD5", "CHD7", "CHD8", "CHRNB2", "CIC", "CKB", "CLDN5", "CLN5", "CLP1", "CNP", "CNTN1", "CNTN4", "CNTN5", "CNTNAP2", "COL3A1", "COL4A1", "COQ8B", "COX6B1", "CRISPLD1", "CRISPLD2", "CSNK1D", "CTNNA2", "CTNNB1", "CTNS", "CX3CR1", "CXCR4", "DAB2IP", "DCT", "DDIT4", "DHX37", "DLC1", "DLL1", "DLX2", "DMBX1", "DNAJC30", "DOCK7", "DRAXIN", "DRD1", "DRD2", "DSCAML1", "DYNLL1", "EEF1AKMT4-ECE2", "EFHC1", "EGR2", "EML1", "EMX1", "EMX2", "EOMES", "EPHA5", "EPHA7", "EPHB2", "EPHB3", "ERBB4", "EURL", "FAIM2", "FAT4", "FBXW11", "FCGR2B", "FGF13", "FGF9", "FGFR2", "FLRT3", "FOXB1", "FOXC1", "FOXG1", "FOXJ1", "FOXP2", "FOXR1", "FUT1", "FXR1", "FXR2", "FZD1", "FZD3", "FZD6", "G6PD", "GHRH", "GIT1", "GIT2", "GLI2", "GLUD1", "GNB4", "GPR158", "GRHL2", "GRID2", "GRIN1", "GRIN2A", "GRIN2B", "GRIN2C", "GRIN2D", "GSK3B", "H2BC12L", "HAP1", "HES1", "HES5", "HESX1", "HOOK3", "HSD3B1", "HSD3B2", "HSPA5", "HSPG2", "HTR6", "ID2", "IER3IP1", "IL11RA", "INA", "INHBA", "ITGAM", "JHY", "KDM2B", "KDM4B", "KDM7A", "KIF14", "KIF26A", "KIRREL3", "KNDC1", "LAMB1", "LHX1", "LHX6", "LHX8", "LMX1A", "LRP6", "LRP8", "LRRK2", "MACROH2A2", "MAOB", "MAP1S", "MAPKAP1", "MAST1", "MATCAP1", "MBOAT7", "MBP", "MDGA1", "MEIS1", "MEIS2", "MEIS3", "MEIS3P1", "MEIS3P2", "METTL14", "METTL3", "MFSD2A", "MGARP", "MINK1", "MKKS", "MSX1", "MYH3", "MYO16", "NARS1", "NCOA6", "NDE1", "NDNF", "NDRG2", "NDUFS3", "NDUFS4", "NES", "NEUROD1", "NEUROD2", "NEUROG1", "NEUROG2", "NEUROG3", "NF1", "NFASC", "NFIB", "NIPBL", "NKX2-1", "NKX2-2", "NKX2-6", "NLGN4X", "NOG", "NOTCH2NLA", "NOTCH2NLB", "NOTCH2NLC", "NPY", "NR0B1", "NR4A2", "NRCAM", "NSUN5", "NTRK2", "NUMB", "NUMBL", "OPHN1", "OSR2", "OTX2", "P2RY12", "PADI2", "PAFAH1B1", "PALS1", "PAX2", "PBX1", "PBX2", "PBX3", "PBX4", "PCDH18", "PCM1", "PDSS2", "PEX13", "PHACTR1", "PHF8", "PHGDH", "PHOX2B", "PITPNM1", "PITX2", "PITX3", "PLCB1", "PLP1", "PLXNA3", "PLXNB2", "POMK", "POTEE", "POU6F1", "PPT1", "PROX1", "PTCH1", "PTCHD1", "PTEN", "PTF1A", "PTPN11", "QARS1", "RAB18", "RAB3GAP1", "RAD1", "RAPGEF2", "RBBP4", "RBBP7", "RELN", "RHOA", "ROBO1", "ROBO2", "ROGDI", "RORA", "RRAS", "RTN1", "RTN3", "RTN4", "RTN4R", "RYK", "S100A1", "SALL1", "SCN5A", "SCT", "SCYL2", "SDF4", "SEC16A", "SEMA3A", "SEMA3E", "SEMA4C", "SEMA5A", "SEMA6B", "SETD1A", "SHANK3", "SHH", "SHROOM2", "SHROOM4", "SIRT2", "SIX3", "SKI", "SLC23A1", "SLC6A17", "SLIT1", "SLIT2", "SLIT3", "SMARCA1", "SMG9", "SMO", "SOX1", "SOX11", "SOX12", "SOX14", "SOX15", "SOX2", "SOX21", "SOX3", "SOX4", "SOX6", "SPEF2", "SRGAP2", "SRGAP2C", "SRY", "STIL", "STRA6", "SUDS3", "SYNGR3", "SYPL2", "SZT2", "TACC1", "TACC2", "TACC3", "TAF1", "TBC1D23", "TBR1", "TBX1", "TGFB3", "TGFBR2", "TMEM108", "TMEM14B", "TMX2", "TOX", "TRABD2A", "TRAPPC9", "TRNP1", "TSKU", "TTBK1", "TTBK2", "TUBGCP2", "TYRO3", "TYROBP", "UBE3A", "UFC1", "UFM1", "UGP2", "UTP3", "VAX1", "VAX2", "VCX", "VCX2", "VCX3A", "VCX3B", "VCY1B", "VPS51", "WDR11", "WDR62", "WNT1", "WNT2", "WNT2B", "WNT3", "WNT3A", "WNT5A", "WNT7A", "WNT7B", "WNT9B", "YWHAE", "YWHAH", "YWHAQ", "ZDHHC16", "ZIC1", "ZIC2", "ZMIZ1", "ZNF148", "ZNF335", "ZNF365", "ZNF430", "ZSWIM6" ] }, "position": { "x": 3623.450277631837, "y": 2028.6205204333928, "id": "d9692b57-896a-486f-b6a3-d4ac2d79566e" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "e2ee1e2d-b55a-4a19-9214-7f5058461161", "name": [ "AMPLIFICATION OF SIGNAL FROM THE KINETOCHORES%REACTOME DATABASE ID RELEASE 81%141424" ], "description": [ "Amplification of signal from the kinetochores" ], "pvalue": 0.0024, "gs_type": null, "gs_size": 91, "padj": 0.031, "mcode_cluster_id": "Cluster 15", "NES": -1.5716, "genes": [ "AHCTF1", "B9D2", "BIRC5", "BUB1", "BUB1B", "BUB3", "CDC20", "CDCA8", "CENPA", "CENPC", "CENPE", "CENPF", "CENPH", "CENPI", "CENPK", "CENPL", "CENPM", "CENPN", "CENPO", "CENPP", "CENPQ", "CENPS", "CENPT", "CENPU", "CKAP5", "CLASP1", "CLASP2", "CLIP1", "DSN1", "DYNC1H1", "DYNC1I1", "DYNC1I2", "DYNC1LI1", "DYNC1LI2", "DYNLL1", "DYNLL2", "ERCC6L", "INCENP", "ITGB3BP", "KIF18A", "KIF2A", "KIF2B", "KIF2C", "KNL1", "KNTC1", "MAD1L1", "MAD2L1", "MAPRE1", "MIS12", "NDC80", "NDE1", "NDEL1", "NSL1", "NUDC", "NUF2", "NUP107", "NUP133", "NUP160", "NUP37", "NUP43", "NUP85", "PAFAH1B1", "PLK1", "PMF1", "PPP1CC", "PPP2CA", "PPP2CB", "PPP2R1A", "PPP2R1B", "PPP2R5A", "PPP2R5B", "PPP2R5C", "PPP2R5D", "PPP2R5E", "RANBP2", "RANGAP1", "RCC2", "RPS27", "SEC13", "SGO1", "SGO2", "SKA1", "SKA2", "SPC24", "SPC25", "SPDL1", "TAOK1", "XPO1", "ZW10", "ZWILCH", "ZWINT" ] }, "position": { "x": 446.4286505618186, "y": 1148.4516958098209, "id": "e2ee1e2d-b55a-4a19-9214-7f5058461161", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "5e615950-d559-4b21-940a-f65e4236cd08", "name": [ "NERVOUS SYSTEM DEVELOPMENT%REACTOME DATABASE ID RELEASE 81%9675108" ], "description": [ "Nervous system development" ], "pvalue": 0.0023, "gs_type": null, "gs_size": 546, "padj": 0.03, "mcode_cluster_id": null, "NES": 1.3345, "genes": [ "ABL1", "ABL2", "ABLIM1", "ABLIM2", "ABLIM3", "ACTB", "ACTG1", "ACTR2", "ACTR3", "ADAM10", "ADGRG6", "ADGRV1", "AGAP2", "AGRN", "AKAP5", "ALCAM", "ANK1", "ANK2", "ANK3", "AP2A1", "AP2A2", "AP2B1", "AP2M1", "AP2S1", "APH1A", "APH1B", "ARHGAP35", "ARHGAP39", "ARHGEF11", "ARHGEF12", "ARHGEF28", "ARHGEF7", "ARPC1A", "ARPC1B", "ARPC2", "ARPC3", "ARPC4", "ARPC5", "ARTN", "CACNA1C", "CACNA1D", "CACNA1G", "CACNA1H", "CACNA1I", "CACNA1S", "CACNB1", "CACNB2", "CACNB3", "CACNB4", "CAP1", "CAP2", "CASC3", "CD24", "CD72", "CDC42", "CDK5", "CDK5R1", "CFL1", "CHL1", "CLASP1", "CLASP2", "CLTA", "CLTB", "CLTC", "CLTCL1", "CNTN1", "CNTN2", "CNTN6", "CNTNAP1", "COL4A1", "COL4A2", "COL4A3", "COL4A4", "COL4A5", "COL6A1", "COL6A2", "COL6A3", "COL6A5", "COL6A6", "COL9A1", "COL9A2", "COL9A3", "CRMP1", "CSNK2A1", "CSNK2A2", "CSNK2B", "CUL2", "CXCL12", "CXCR4", "CYP51A1", "DAB1", "DAG1", "DCC", "DCX", "DLG1", "DLG3", "DLG4", "DNM1", "DNM2", "DNM3", "DOCK1", "DOK1", "DOK2", "DOK4", "DOK5", "DOK6", "DPYSL2", "DPYSL3", "DPYSL4", "DPYSL5", "DRP2", "DSCAM", "DSCAML1", "EFNA1", "EFNA2", "EFNA3", "EFNA4", "EFNA5", "EFNB1", "EFNB2", "EFNB3", "EGFR", "EGR2", "EIF4A3", "EIF4G1", "ELOB", "ELOC", "ENAH", "EPHA1", "EPHA10", "EPHA2", "EPHA3", "EPHA4", "EPHA5", "EPHA6", "EPHA7", "EPHA8", "EPHB1", "EPHB2", "EPHB3", "EPHB4", "EPHB6", "ERBB2", "ETF1", "EVL", "EZR", "FARP2", "FAU", "FES", "FLRT3", "FRS2", "FYN", "GAB1", "GAB2", "GAP43", "GDNF", "GFRA1", "GFRA2", "GFRA3", "GFRA4", "GIT1", "GPC1", "GRB10", "GRB7", "GRIN1", "GRIN2B", "GSK3B", "GSPT1", "GSPT2", "HDAC2", "HJV", "HMGCR", "HOXA2", "HRAS", "HSP90AA1", "HSP90AB1", "HSPA8", "IRS2", "ISL1", "ITGA1", "ITGA10", "ITGA2", "ITGA2B", "ITGA5", "ITGA9", "ITGAV", "ITGB1", "ITGB3", "ITSN1", "KALRN", "KCNQ2", "KCNQ3", "KIF4A", "KIF4B", "L1CAM", "LAMA1", "LAMA2", "LAMB1", "LAMC1", "LDB1", "LHX2", "LHX3", "LHX4", "LHX9", "LIMK1", "LIMK2", "LYN", "LYPLA2", "MAG", "MAGOH", "MAGOHB", "MAP2K1", "MAP2K2", "MAPK1", "MAPK3", "MAPK7", "MBP", "MET", "MMP2", "MMP9", "MPZ", "MSI1", "MSN", "MYH10", "MYH11", "MYH14", "MYH9", "MYL12A", "MYL12B", "MYL6", "MYL9", "MYO10", "MYO9B", "NAB1", "NAB2", "NCAM1", "NCAN", "NCBP1", "NCBP2", "NCK1", "NCK2", "NCSTN", "NELL2", "NEO1", "NFASC", "NGEF", "NRAS", "NRCAM", "NRP1", "NRP2", "NRTN", "NTN1", "NTN4", "NUMB", "PABPC1", "PAK1", "PAK2", "PAK3", "PAK4", "PAK5", "PAK6", "PDLIM7", "PFN1", "PFN2", "PIK3CA", "PIK3CB", "PIK3CD", "PIK3R1", "PIK3R2", "PIK3R3", "PIP5K1C", "PITPNA", "PLCG1", "PLXNA1", "PLXNA2", "PLXNA3", "PLXNA4", "PLXNB1", "PLXNB3", "PLXNC1", "PLXND1", "PMP22", "POU3F1", "POU3F2", "PPP3CB", "PRKACA", "PRKACB", "PRKACG", "PRKAR2A", "PRKCA", "PRKCQ", "PRNP", "PRX", "PSEN1", "PSEN2", "PSENEN", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "PSPN", "PTK2", "PTPN11", "PTPRA", "PTPRC", "RAC1", "RANBP9", "RAP1GAP", "RASA1", "RBM8A", "RBX1", "RDX", "RELN", "RET", "RGMA", "RGMB", "RHOA", "RHOB", "RHOC", "RND1", "RNPS1", "ROBO1", "ROBO2", "ROCK1", "ROCK2", "RPL10", "RPL10A", "RPL10L", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL22L1", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL26L1", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL36AL", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL39L", "RPL3L", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS6KA1", "RPS6KA2", "RPS6KA3", "RPS6KA4", "RPS6KA5", "RPS6KA6", "RPS7", "RPS8", "RPS9", "RPSA", "RRAS", "SCD5", "SCN10A", "SCN11A", "SCN1A", "SCN1B", "SCN2A", "SCN2B", "SCN3A", "SCN3B", "SCN4A", "SCN4B", "SCN5A", "SCN7A", "SCN8A", "SCN9A", "SDC2", "SDCBP", "SEM1", "SEMA3A", "SEMA3E", "SEMA4A", "SEMA4D", "SEMA5A", "SEMA6A", "SEMA6D", "SEMA7A", "SH3GL2", "SH3KBP1", "SHANK3", "SHC1", "SHC3", "SHTN1", "SIAH1", "SIAH2", "SLIT1", "SLIT2", "SLIT3", "SMARCA4", "SOS1", "SOS2", "SOX10", "SPTA1", "SPTAN1", "SPTB", "SPTBN1", "SPTBN2", "SPTBN4", "SPTBN5", "SRC", "SREBF2", "SRGAP1", "SRGAP2", "SRGAP3", "ST8SIA2", "ST8SIA4", "TEAD1", "TIAM1", "TLN1", "TREM2", "TRIO", "TRPC1", "TRPC3", "TRPC4", "TRPC5", "TRPC6", "TRPC7", "TYROBP", "UBA52", "UBB", "UBC", "UNC5A", "UNC5B", "UNC5C", "UNC5D", "UPF2", "UPF3A", "UPF3B", "USP33", "UTRN", "VASP", "VAV2", "VAV3", "VLDLR", "WASL", "WWTR1", "YAP1", "YES1", "ZSWIM8" ] }, "position": { "x": 873.6530753784364, "y": 805.1985066741598, "id": "5e615950-d559-4b21-940a-f65e4236cd08" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "97e3781a-4de1-4225-a0f2-6b73d004f3f3", "name": [ "REGULATION OF CELLULAR CATABOLIC PROCESS%GOBP%GO:0031329" ], "description": [ "regulation of cellular catabolic process" ], "pvalue": 0.0039, "gs_type": null, "gs_size": 410, "padj": 0.0428, "mcode_cluster_id": "Cluster 41", "NES": 1.3216, "genes": [ "AADAC", "ABCA2", "ABCB11", "ABCD1", "ABCD2", "ABHD5", "ABL1", "ABL2", "ACER2", "ADAM8", "ADAM9", "ADRA2A", "ADRB2", "AKT1", "AKT2", "AMBRA1", "ANXA2", "APOA4", "APOA5", "APOC1", "APOC2", "APOC3", "APOE", "APP", "ARNT", "ATF6", "ATG101", "ATG12", "ATG13", "ATG14", "ATG2A", "ATG5", "ATM", "ATP13A2", "ATP2B4", "ATP6V0A1", "ATP6V0A2", "ATP6V0B", "ATP6V0C", "ATP6V0D1", "ATP6V0D2", "ATP6V0E1", "ATP6V0E2", "ATP6V1A", "ATP6V1B1", "ATP6V1B2", "ATP6V1C1", "ATP6V1C2", "ATP6V1D", "ATP6V1E1", "ATP6V1E2", "ATP6V1G1", "ATP6V1G2", "ATP6V1H", "BAD", "BAG3", "BCL2", "BECN1", "BMF", "BNIP3", "BNIP3L", "BOK", "C9orf72", "CALCOCO2", "CAMKK2", "CAPN1", "CAPNS1", "CASP3", "CCNY", "CDK16", "CDK5", "CDK5R1", "CDK5RAP3", "CERS1", "CISD2", "CLEC16A", "CLN3", "CPTP", "CSNK2A1", "CSNK2A2", "CTSA", "DAGLB", "DAP", "DAPK1", "DAPK2", "DAPK3", "DAPL1", "DCAF12", "DCN", "DDIT3", "DDRGK1", "DELE1", "DEPDC5", "DEPP1", "DEPTOR", "DHRSX", "DNM1L", "DRAM1", "DRAM2", "DTX3L", "EEF1A1", "EEF1A2", "EIF2AK1", "EIF4E", "EIF4G1", "EIF4G2", "EIF4G3", "ELAPOR1", "ENDOG", "ENPP7", "EP300", "EPM2A", "ERFE", "ERN1", "ETFBKMT", "EXOC1", "EXOC4", "EXOC7", "EXOC8", "FBXL2", "FBXO7", "FBXW7", "FEZ1", "FEZ2", "FKBP8", "FLCN", "FOXK1", "FOXK2", "FOXO1", "FOXO3", "FURIN", "FYCO1", "FZD5", "GAPDH", "GAPDHS", "GBA1", "GFAP", "GNAI3", "GOLGA2", "GPLD1", "GPR137", "GPR137B", "GPSM1", "GSK3A", "GSK3B", "HAX1", "HDAC6", "HGF", "HIF1A", "HMGB1", "HP", "HSPB1", "HSPB8", "HTRA2", "HTT", "IFI16", "IFNB1", "IFNG", "IGF1", "IKBKG", "IL10", "IL10RA", "IL1B", "IL4", "INS", "INSR", "IRGM", "IRS1", "IRS2", "ITCH", "ITPR1", "KAT5", "KAT8", "KDM4A", "KDR", "KEAP1", "KIF25", "KLHL22", "LACRT", "LAMP3", "LAPTM5", "LARP1", "LDLR", "LEP", "LEPR", "LONP2", "LRRK2", "LRSAM1", "LYPLA1", "LZTS1", "MAGEA3", "MAGEA6", "MAP3K7", "MAPK15", "MAPK8", "MAPT", "MCL1", "MEFV", "MET", "MFSD2A", "MID2", "MLST8", "MLXIPL", "MOAP1", "MTCL2", "MTDH", "MTLN", "MTM1", "MTMR2", "MTMR3", "MTMR4", "MTMR8", "MTMR9", "MTOR", "NEDD4", "NOD2", "NPRL2", "NPRL3", "NRBP2", "NRDC", "NUPR1", "OPTN", "ORMDL3", "OSBPL7", "P2RX7", "PACSIN3", "PAFAH1B2", "PARK7", "PARL", "PCSK9", "PHF23", "PHKA1", "PHKG2", "PIK3C2A", "PIK3C3", "PIK3CA", "PIK3CB", "PIK3R2", "PIK3R4", "PIM2", "PINK1", "PIP4K2A", "PIP4K2B", "PIP4K2C", "PLEKHF1", "PLIN5", "PLK2", "PLK3", "PNPLA2", "PPARA", "PRKAA1", "PRKAA2", "PRKACA", "PRKCD", "PRKD1", "PRKN", "PRXL2C", "PSAP", "PSEN1", "PTPN1", "PTPN22", "PTPN3", "QSOX1", "RAB39B", "RAB3GAP1", "RAB3GAP2", "RAB8A", "RALB", "RASIP1", "RB1CC1", "RFPL1", "RFPL2", "RFPL3", "RFPL4A", "RFPL4AL1", "RHEB", "RMC1", "RNF152", "RNF31", "ROCK1", "RPTOR", "RRAGA", "RRAGB", "RRAGC", "RRAGD", "RUBCN", "RUFY4", "SCARB1", "SCARB2", "SCFD1", "SCOC", "SEC22B", "SESN1", "SESN2", "SESN3", "SETD2", "SH3BP4", "SH3D19", "SH3GLB1", "SIRT1", "SIRT2", "SLC25A4", "SLC25A5", "SLC35D3", "SLC4A4", "SMCR8", "SNCA", "SNRNP70", "SNX18", "SNX30", "SNX32", "SNX33", "SNX4", "SNX5", "SNX6", "SNX7", "SNX9", "SORL1", "SPTLC1", "SPTLC2", "SQSTM1", "SREBF1", "SREBF2", "STAT3", "STING1", "STK11", "STK38L", "STUB1", "SUPT5H", "SVIP", "TAB2", "TAB3", "TBC1D14", "TBC1D25", "TBK1", "TECPR1", "TFEB", "TICAM1", "TIMP1", "TIMP2", "TIMP3", "TIMP4", "TLK2", "TMEM39A", "TMEM59", "TNF", "TNFRSF1B", "TOM1", "TP53INP1", "TPCN1", "TPCN2", "TREM2", "TRIB3", "TRIM13", "TRIM21", "TRIM22", "TRIM23", "TRIM27", "TRIM32", "TRIM34", "TRIM38", "TRIM5", "TRIM58", "TRIM6", "TRIM65", "TRIM68", "TRIM8", "TSC1", "TSC2", "TSPAN15", "TSPAN17", "TSPAN5", "TWIST1", "TYSND1", "UBE2A", "UBQLN1", "UBQLN2", "UBQLN4", "UBR4", "UCHL1", "UFL1", "ULK1", "ULK2", "ULK3", "USP10", "USP13", "USP20", "USP33", "USP36", "UVRAG", "VDAC1", "VHL", "VPS13C", "VPS13D", "VPS26A", "VPS26B", "VPS29", "VPS35", "WAC", "WASHC1", "WDR24", "WDR41", "WDR45", "WDR6", "WIPI1", "WNK1", "ZBTB20", "ZC3H12A", "ZDHHC19", "ZKSCAN3" ] }, "position": { "x": 3993.194715842873, "y": 1869.0156961706225, "id": "97e3781a-4de1-4225-a0f2-6b73d004f3f3", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "030718c7-da46-4d5c-96e5-b8882062f2f7", "name": [ "REGULATION OF DEFENSE RESPONSE TO VIRUS BY HOST%GOBP%GO:0050691" ], "description": [ "regulation of defense response to virus by host" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 35, "padj": 0.0031, "mcode_cluster_id": "Cluster 36", "NES": -1.9438, "genes": [ "AIM2", "APOBEC3F", "APOBEC3G", "CGAS", "DHX9", "DTX3L", "EIF2AK4", "HSP90AA1", "IFNLR1", "IL12B", "IL12RB1", "IL23A", "IL23R", "LILRB1", "MAVS", "MICB", "MUL1", "NT5C2", "PARP9", "PQBP1", "RIGI", "RNF216", "STAT1", "STING1", "TARBP2", "TNFAIP3", "TOMM70", "TRAF3IP2", "TRIM22", "TRIM44", "TRIM6", "USP17L2", "ZC3H12A", "ZDHHC1", "ZDHHC11" ] }, "position": { "x": 453.6394442768227, "y": 1864.348943715356, "id": "030718c7-da46-4d5c-96e5-b8882062f2f7", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "name": [ "PROTEIN SYNTHESIS: PHENYLALANINE%PATHWHIZ%PW112934" ], "description": [ "Protein Synthesis: Phenylalanine" ], "pvalue": 3.295e-17, "gs_type": null, "gs_size": 81, "padj": 5.4763e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7934, "genes": [ "FARSA", "FARSB", "FAU", "RACK1", "RPL10", "RPL10A", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "UBA52" ] }, "position": { "x": 793.9253381902008, "y": 560.065452028924, "id": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "e4cabb52-87fa-46a7-b178-1e258678e921", "name": [ "CELLULAR RESPONSE TO STARVATION%REACTOME%R-HSA-9711097.4" ], "description": [ "Cellular response to starvation" ], "pvalue": 1.1768e-17, "gs_type": null, "gs_size": 157, "padj": 2.6329e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.5982, "genes": [ "ASNS", "ATF2", "ATF3", "ATF4", "ATP6V0B", "ATP6V0C", "ATP6V0D1", "ATP6V0D2", "ATP6V0E1", "ATP6V0E2", "ATP6V1A", "ATP6V1B1", "ATP6V1B2", "ATP6V1C1", "ATP6V1C2", "ATP6V1D", "ATP6V1E1", "ATP6V1E2", "ATP6V1F", "ATP6V1G1", "ATP6V1G2", "ATP6V1G3", "ATP6V1H", "BMT2", "CASTOR1", "CASTOR2", "CEBPB", "CEBPG", "DDIT3", "DEPDC5", "EIF2AK4", "EIF2S1", "EIF2S2", "EIF2S3", "FAU", "FLCN", "FNIP1", "FNIP2", "GCN1", "IMPACT", "ITFG2", "KICS2", "KPTN", "LAMTOR1", "LAMTOR2", "LAMTOR3", "LAMTOR4", "LAMTOR5", "MIOS", "MLST8", "MTOR", "NPRL2", "NPRL3", "RHEB", "RPL10", "RPL10A", "RPL10L", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL22L1", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL26L1", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL36AL", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL39L", "RPL3L", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "RPTOR", "RRAGA", "RRAGB", "RRAGC", "RRAGD", "SEC13", "SEH1L", "SESN1", "SESN2", "SH3BP4", "SLC38A9", "SZT2", "TCIRG1", "TRIB3", "UBA52", "WDR24", "WDR59" ] }, "position": { "x": 1036.570731325958, "y": 340.35125585154594, "id": "e4cabb52-87fa-46a7-b178-1e258678e921", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "2aff35cf-0454-4568-aeef-dd421391a0af", "name": [ "HALLMARK_APOPTOSIS%MSIGDBHALLMARK%HALLMARK_APOPTOSIS" ], "description": [ "HALLMARK_APOPTOSIS" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 134, "padj": 0.0016, "mcode_cluster_id": null, "NES": -1.7746, "genes": [ "ADD1", "ANKH", "ANXA1", "APP", "ATF3", "AVPR1A", "BAX", "BCAP31", "BCL10", "BCL2L1", "BCL2L10", "BCL2L11", "BCL2L2", "BIK", "BIRC3", "BMF", "BMP2", "BNIP3L", "BRCA1", "BTG2", "BTG3", "CASP2", "CASP3", "CASP4", "CASP6", "CASP8", "CASP9", "CCND1", "CCND2", "CD14", "CD2", "CD44", "CD69", "CDK2", "CDKN1A", "CDKN1B", "CLU", "CREBBP", "CTH", "CTNNB1", "CYLD", "DAP", "DAP3", "DCN", "DDIT3", "DFFA", "DIABLO", "DKFZp564M2422", "DKFZp586H0919", "DKFZp666O0110", "DKFZp686G14213", "DNAJC3", "DPYD", "EBP", "EMP1", "ENO2", "ERBB2", "ERBB3", "EREG", "ETF1", "F2", "F2R", "FAS", "FDXR", "FEZ1", "GADD45A", "GADD45B", "GNA15", "GPX1", "GPX3", "GPX4", "GSTM1", "GUCY2D", "H1-0", "HEL-75", "HEL-S-102", "HEL-S-44", "HGF", "HMGB2", "HMOX1", "IF1DA1", "IFITM3", "IFNGR1", "IGF2R", "IGFBP6", "IL18", "IL1A", "IL1B", "IL6", "IRF1", "ISG20", "JUN", "KRT18", "LMNA", "MADD", "MCL1", "MGMT", "MMP2", "NEDD9", "NEFH", "PAK1", "PBR", "PLAT", "PLCB2", "PLPPR4", "PMAIP1", "PPP2R5B", "PPP3R1", "PPT1", "PRF1", "PSEN1", "PSEN2", "RARA", "RELA", "RETSAT", "RHOB", "RHOT2", "RNASEL", "ROCK1", "SATB1", "SC5D", "SLC20A1", "SQSTM1", "TAP1", "TGFBR3", "TIMP1", "TIMP3", "TNF", "TNFRSF12A", "TNFSF10", "TNFSF6", "TOP2A", "TXNIP", "WEE1" ] }, "position": { "x": 807.5, "y": 2272.9446642487483, "id": "2aff35cf-0454-4568-aeef-dd421391a0af" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "29f32c4c-30c4-4179-be50-96e6d92b8451", "name": [ "REGULATION OF VIRAL LIFE CYCLE%GOBP%GO:1903900" ], "description": [ "regulation of viral life cycle" ], "pvalue": 8.5816e-19, "gs_type": null, "gs_size": 136, "padj": 4.1599e-16, "mcode_cluster_id": null, "NES": -2.6679, "genes": [ "ADAR", "ADARB1", "AICDA", "APCS", "APOBEC3A", "APOBEC3B", "APOBEC3C", "APOBEC3D", "APOBEC3F", "APOBEC3G", "APOBEC3H", "ARK2N", "AXL", "BANF1", "BST2", "BTBD17", "CCL5", "CD209", "CD28", "CD4", "CD74", "CH25H", "CIITA", "CLEC4G", "CNOT7", "CSNK2B", "CXCL8", "DDB1", "DDX3X", "EIF2AK2", "FAM111A", "FCN1", "FCN3", "FKBP6", "FMR1", "FURIN", "GBP7", "GSN", "HACD3", "HLA-DRB1", "HMGA2", "HMGB1", "HS3ST5", "IFI16", "IFIH1", "IFIT1", "IFIT5", "IFITM1", "IFITM2", "IFITM3", "IFNA2", "IFNB1", "IFNL3", "ILF3", "INPP5K", "ISG15", "ISG20", "KPNA2", "KPNA6", "LAMP3", "LARP1", "LGALS1", "LGALS9", "LRRC15", "LTF", "LY6E", "MAVS", "MID2", "MORC2", "MPHOSPH8", "MX1", "N4BP1", "NECTIN2", "NR5A2", "OAS1", "OAS2", "OAS3", "OASL", "P4HB", "PABPC1", "PDE12", "PKN2", "PLSCR1", "PPIA", "PPID", "PPIE", "PPIH", "PROX1", "PTX3", "RAD23A", "RESF1", "RFPL1", "RFPL2", "RFPL3", "RFPL4A", "RFPL4AL1", "RNASEL", "RSAD2", "SETDB1", "SHFL", "SLPI", "SMPD1", "SNX3", "SRPK1", "SRPK2", "STAU1", "TARBP2", "TASOR", "TMEM39A", "TMPRSS2", "TMPRSS4", "TNF", "TNIP1", "TOP2A", "TOP2B", "TRIM11", "TRIM15", "TRIM21", "TRIM22", "TRIM25", "TRIM26", "TRIM31", "TRIM34", "TRIM38", "TRIM5", "TRIM58", "TRIM6", "TRIM62", "TRIM68", "TSG101", "TYRO3", "VAPB", "VPS37B", "VPS4A", "ZC3HAV1", "ZNFX1" ] }, "position": { "x": 1175.5740418414057, "y": 1437.661451414368, "id": "29f32c4c-30c4-4179-be50-96e6d92b8451" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "5f7c7a64-b1de-45c0-ad59-42836ec07604", "name": [ "POSITIVE REGULATION OF ADAPTIVE IMMUNE RESPONSE%GOBP%GO:0002821" ], "description": [ "positive regulation of adaptive immune response" ], "pvalue": 0.0044, "gs_type": null, "gs_size": 100, "padj": 0.0462, "mcode_cluster_id": "Cluster 5", "NES": -1.5375, "genes": [ "AKIRIN2", "B2M", "BRD2", "BRD4", "C17orf99", "CARD9", "CCR2", "CD1A", "CD1B", "CD1C", "CD1D", "CD1E", "CD226", "CD55", "CD81", "CLCF1", "CLEC6A", "CLEC7A", "CYRIB", "DENND1B", "EIF2AK4", "EP300", "FADD", "FBXO38", "FZD5", "HFE", "HLA-A", "HLA-B", "HLA-C", "HLA-DRA", "HLA-DRB1", "HLA-DRB3", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "HMCES", "HSPD1", "IL12A", "IL12B", "IL12RB1", "IL18", "IL18R1", "IL1B", "IL1R1", "IL23A", "IL23R", "IL4", "IL6", "IL6ST", "JAK2", "KMT5B", "KMT5C", "MAD2L2", "MALT1", "MAP3K7", "MICA", "MICB", "MR1", "NECTIN2", "NFKBID", "NFKBIZ", "NLRP10", "NLRP3", "OPA1", "PAXIP1", "PRKCQ", "PRKCZ", "PVR", "PYCARD", "RAET1E", "RAET1G", "RAET1L", "RIF1", "RSAD2", "SASH3", "SHLD1", "SHLD2", "SHLD3", "SIRT1", "SKAP1", "SLC11A1", "SLC22A13", "STX7", "TBX21", "TFRC", "TGFB1", "TNFSF13", "TNFSF4", "TP53BP1", "TRAF2", "TRAF6", "TREM2", "TYK2", "ULBP1", "ULBP2", "ULBP3", "XCL1", "ZBTB1", "ZP3" ] }, "position": { "x": 2168.5262765589237, "y": 817.874060434183, "id": "5f7c7a64-b1de-45c0-ad59-42836ec07604", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "name": [ "PROTEIN SYNTHESIS: GLUTAMIC ACID%PATHWHIZ%PW112922" ], "description": [ "Protein Synthesis: Glutamic Acid" ], "pvalue": 8.0823e-18, "gs_type": null, "gs_size": 80, "padj": 1.8806e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.8107, "genes": [ "EPRS1", "FAU", "RACK1", "RPL10", "RPL10A", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "UBA52" ] }, "position": { "x": 911.9135243171635, "y": 253.5174624202387, "id": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "b401cb25-9626-4bf4-9dc9-a102b829189a", "name": [ "PROTEIN SYNTHESIS: ARGININE%SMPDB%SMP0111853" ], "description": [ "Protein Synthesis: Arginine" ], "pvalue": 8.0823e-18, "gs_type": null, "gs_size": 80, "padj": 1.8806e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.8106, "genes": [ "FAU", "RACK1", "RARS1", "RPL10", "RPL10A", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "UBA52" ] }, "position": { "x": 841.1857718875015, "y": 449.65357568261743, "id": "b401cb25-9626-4bf4-9dc9-a102b829189a", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "9704340b-a2d9-4c3a-9254-03262a2052f8", "name": [ "GLYCOGENOSIS, TYPE IB%SMPDB%SMP0000573" ], "description": [ "Glycogenosis, Type IB" ], "pvalue": 0.0017, "gs_type": null, "gs_size": 22, "padj": 0.0233, "mcode_cluster_id": "Cluster 8", "NES": 1.8347, "genes": [ "ALDOA", "BPGM", "ENO1", "FBP1", "G6PC1", "GALM", "GAPDH", "GPI", "HK2", "LDHA", "MDH2", "MPC1", "PANK1", "PC", "PCK1", "PGAM1", "PGAM2", "PGM1", "SLC25A11", "SLC2A2", "SLC37A4", "TPI1" ] }, "position": { "x": 3852.123974198836, "y": 1097.7408482590306, "id": "9704340b-a2d9-4c3a-9254-03262a2052f8" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "name": [ "VPU MEDIATED DEGRADATION OF CD4%REACTOME%R-HSA-180534.3" ], "description": [ "Vpu mediated degradation of CD4" ], "pvalue": 0, "gs_type": null, "gs_size": 52, "padj": 0.0005, "mcode_cluster_id": "Cluster 1", "NES": -2.0424, "genes": [ "BTRC", "CD4", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RPS27A", "SEM1", "SKP1", "UBA52", "UBB", "UBC" ] }, "position": { "x": 481.25805786413764, "y": 816.0838911873756, "id": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "9af1a5ea-0ad8-42cf-b199-e33ecfd7c35e", "name": [ "NEUREXINS AND NEUROLIGINS%REACTOME%R-HSA-6794361.6" ], "description": [ "Neurexins and neuroligins" ], "pvalue": 0.0025, "gs_type": null, "gs_size": 57, "padj": 0.031, "mcode_cluster_id": null, "NES": 1.7959, "genes": [ "APBA1", "APBA2", "APBA3", "BEGAIN", "CASK", "DBNL", "DLG2", "DLG3", "DLG4", "DLGAP1", "DLGAP2", "DLGAP3", "DLGAP4", "EPB41", "EPB41L1", "EPB41L2", "EPB41L3", "EPB41L5", "GRIN1", "GRIN2A", "GRIN2B", "GRIN2C", "GRIN2D", "GRM1", "GRM5", "HOMER1", "HOMER2", "HOMER3", "LIN7A", "LIN7B", "LIN7C", "LRRTM1", "LRRTM2", "LRRTM3", "LRRTM4", "NLGN1", "NLGN2", "NLGN3", "NLGN4X", "NLGN4Y", "NRXN1", "NRXN2", "NRXN3", "PDLIM5", "SHANK1", "SHANK2", "SHANK3", "SHARPIN", "SIPA1L1", "STX1A", "STXBP1", "SYT1", "SYT10", "SYT12", "SYT2", "SYT7", "SYT9" ] }, "position": { "x": 4130.079659261881, "y": 1808.4569982861235, "id": "9af1a5ea-0ad8-42cf-b199-e33ecfd7c35e" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "name": [ "DEFECTIVE CFTR CAUSES CYSTIC FIBROSIS%REACTOME%R-HSA-5678895.5" ], "description": [ "Defective CFTR causes cystic fibrosis" ], "pvalue": 0.0005, "gs_type": null, "gs_size": 61, "padj": 0.0089, "mcode_cluster_id": "Cluster 1", "NES": -1.7978, "genes": [ "CFTR", "DERL1", "DERL2", "DERL3", "ERLEC1", "ERLIN1", "ERLIN2", "OS9", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RNF185", "RNF5", "RPS27A", "SEL1L", "SEM1", "UBA52", "UBB", "UBC", "VCP" ] }, "position": { "x": 457.05381774958187, "y": 785.9081066107188, "id": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "ea3edfc3-afa8-416a-a3e9-61a1edf017b2", "name": [ "RIBONUCLEOSIDE DIPHOSPHATE CATABOLIC PROCESS%GOBP%GO:0009191" ], "description": [ "ribonucleoside diphosphate catabolic process" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 39, "padj": 0.003, "mcode_cluster_id": "Cluster 4", "NES": 1.9985, "genes": [ "ADPGK", "ALDOA", "ALDOB", "ALDOC", "ENO1", "ENO2", "ENO3", "ENO4", "ENTPD4", "ENTPD5", "ENTPD7", "FOXK1", "FOXK2", "GAPDH", "GAPDHS", "GCK", "GPI", "HK1", "HK2", "HK3", "HKDC1", "LDHA", "NUDT18", "NUDT5", "PFKFB1", "PFKFB2", "PFKL", "PFKM", "PFKP", "PGAM1", "PGAM2", "PGAM4", "PGK1", "PGK2", "PGM1", "PKLR", "PKM", "TPI1", "UCP2" ] }, "position": { "x": 3614.3807855110676, "y": 1738.456998286123, "id": "ea3edfc3-afa8-416a-a3e9-61a1edf017b2", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "name": [ "CYCLIN E ASSOCIATED EVENTS DURING G1 S TRANSITION%REACTOME DATABASE ID RELEASE 81%69202" ], "description": [ "Cyclin E associated events during G1 S transition" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 83, "padj": 0.0013, "mcode_cluster_id": "Cluster 1", "NES": -1.8104, "genes": [ "AKT1", "AKT2", "AKT3", "CABLES1", "CCNA1", "CCNA2", "CCND1", "CCNE1", "CCNE2", "CCNH", "CDC25A", "CDK2", "CDK4", "CDK7", "CDKN1A", "CDKN1B", "CKS1B", "CUL1", "E2F1", "E2F4", "E2F5", "LIN37", "LIN52", "LIN54", "LIN9", "MAX", "MNAT1", "MYC", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMB1", "PSMB10", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSMF1", "PTK6", "RB1", "RBBP4", "RBL2", "RPS27A", "SEM1", "SKP1", "SKP2", "TFDP1", "TFDP2", "UBA52", "UBB", "UBC", "WEE1" ] }, "position": { "x": 491.61751701033666, "y": 810.5210315054744, "id": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "4b373646-8031-440b-8748-56f50289c686", "name": [ "MONONUCLEAR CELL MIGRATION%GOBP%GO:0071674" ], "description": [ "mononuclear cell migration" ], "pvalue": 0.0017, "gs_type": null, "gs_size": 83, "padj": 0.0233, "mcode_cluster_id": null, "NES": -1.7119, "genes": [ "ADAM8", "ALOX5", "ANXA1", "ASB2", "AZU1", "CALCA", "CCL19", "CCL2", "CCL20", "CCL21", "CCL23", "CCL26", "CCL3", "CCL5", "CCL7", "CCR1", "CCR2", "CCR5", "CCR6", "CCR7", "CD99", "CH25H", "CKLF", "CRTAM", "CTSG", "CXCL10", "CXCL11", "CXCL13", "CXCL16", "CXCL17", "CXCR1", "CXCR2", "CXCR4", "CYP7B1", "DEFA1B", "DEFB104B", "EDN2", "EDNRB", "EPS8", "F11R", "FLT1", "FOLR2", "FUT4", "FUT7", "GAS6", "GATA3", "GPR15LG", "GPR183", "HMGB1", "HSD3B7", "IL6", "IL6R", "ITGAL", "JAML", "LGALS3", "MSMP", "MSN", "MYO1G", "NEDD9", "PDGFB", "PECAM1", "PF4", "PIK3CD", "PIK3CG", "PTPRO", "RET", "RPS19", "S100A12", "S1PR1", "SAA1", "SFTPD", "SIRPA", "SLC12A2", "TAFA4", "TBX21", "TNFRSF11A", "TNFSF11", "TRPM2", "TRPM4", "WNK1", "XCL1", "XG", "ZAP70" ] }, "position": { "x": 3429.039072651805, "y": 551.8190168560624, "id": "4b373646-8031-440b-8748-56f50289c686" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "6f500156-fee8-48f9-92a1-285527a6b72b", "name": [ "REGULATION OF CELL-CELL ADHESION%GOBP%GO:0022407" ], "description": [ "regulation of cell-cell adhesion" ], "pvalue": 0.0015, "gs_type": null, "gs_size": 399, "padj": 0.0217, "mcode_cluster_id": "Cluster 12", "NES": -1.4324, "genes": [ "ABCA12", "ABL1", "ABL2", "ACTB", "ACTL6A", "ACTL6B", "ADA", "ADAM19", "ADAM8", "ADAMTS18", "ADIPOQ", "ADTRP", "AFDN", "AGER", "AIF1", "AKNA", "AKT1", "ALOX12", "ALOX5", "AMBRA1", "ANK3", "ANXA1", "APOA1", "ARG1", "ARID1A", "ARID1B", "ARID2", "ASS1", "B2M", "B4GALNT2", "BCL6", "BMP2", "BMP4", "BMP6", "BMP7", "BRD2", "BRD4", "BRD7", "BTN2A2", "C1QTNF1", "CARD11", "CAV1", "CBFB", "CCDC88B", "CCL19", "CCL2", "CCL21", "CCL25", "CCL28", "CCL5", "CCR2", "CCR7", "CD160", "CD1D", "CD209", "CD24", "CD274", "CD276", "CD28", "CD300A", "CD3E", "CD40LG", "CD44", "CD46", "CD47", "CD5", "CD55", "CD6", "CD70", "CD80", "CD81", "CD86", "CD9", "CDH1", "CDSN", "CEACAM1", "CEACAM6", "CEBPB", "CELA2A", "CELSR2", "CHST2", "CHST4", "CITED2", "CLECL1P", "CR1", "CRTAM", "CSK", "CTLA4", "CTSG", "CX3CL1", "CXCL12", "CXCL13", "CYRIB", "DAPL1", "DENND6A", "DLG5", "DOCK8", "DPP4", "DUSP10", "DUSP3", "EBI3", "EFNA5", "EMILIN1", "EMILIN2", "EP300", "EPCAM", "EPHA7", "EPHB3", "ETS1", "F11R", "FADD", "FBXO38", "FCHO1", "FERMT3", "FGA", "FGB", "FGG", "FGL1", "FLOT1", "FLOT2", "FOXA1", "FOXA2", "FOXJ1", "FOXO3", "FOXP3", "FSTL3", "FUT3", "FUT4", "FUT7", "FUT9", "FXYD5", "FYN", "GATA3", "GCNT2", "GLI2", "GLI3", "GLMN", "GP6", "GPNMB", "GTPBP4", "HAS2", "HAVCR2", "HFE", "HHLA2", "HLA-A", "HLA-DMA", "HLA-DMB", "HLA-DOA", "HLA-DOB", "HLA-DPA1", "HLA-DPB1", "HLA-DQA1", "HLA-DQA2", "HLA-DQB1", "HLA-DQB2", "HLA-DRA", "HLA-DRB1", "HLA-DRB3", "HLA-DRB4", "HLA-DRB5", "HLA-E", "HLA-G", "HMGB1", "HSPD1", "HSPH1", "HTN1", "ICOS", "ICOSLG", "IFNA2", "IFNB1", "IFNG", "IFNL1", "IGF1", "IGF2", "IGFBP2", "IHH", "IL10", "IL12A", "IL12B", "IL12RB1", "IL15", "IL18", "IL1A", "IL1B", "IL1RN", "IL2", "IL21", "IL23A", "IL23R", "IL36B", "IL4", "IL4I1", "IL6", "IL6ST", "IL7", "ILDR2", "IRAK1", "IRF1", "ITGB2", "JAG1", "JAK1", "JAK2", "JAK3", "KAT5", "KLF4", "KLHL25", "KLRK1", "LAG3", "LAPTM5", "LAX1", "LCK", "LEF1", "LEP", "LGALS3", "LGALS9", "LGALS9B", "LGALS9C", "LILRB1", "LILRB2", "LILRB4", "LOXL3", "LYN", "MAD2L2", "MAGI1", "MALT1", "MAP2K5", "MAP3K8", "MAPK7", "MBP", "MDGA1", "MDK", "MEGF10", "METTL3", "MFSD2B", "MIA3", "MINK1", "MMRN1", "MTOR", "MUC21", "MYADM", "NCK1", "NCK2", "NCKAP1L", "NEXMIF", "NF2", "NFAT5", "NFKBID", "NFKBIZ", "NKAP", "NLRP3", "NOD2", "NODAL", "NOTCH1", "NOTCH4", "NR4A3", "OPA1", "PAG1", "PBRM1", "PCK1", "PDCD1", "PDCD1LG2", "PDPK1", "PDPN", "PHF10", "PIEZO1", "PIK3CA", "PKHD1", "PLA2G2A", "PLA2G2D", "PLA2G2E", "PLA2G2F", "PLA2G5", "PLAUR", "PLG", "PLPP3", "PNP", "PODXL", "PPARA", "PPM1F", "PPP3CA", "PRKAR1A", "PRKCA", "PRKCD", "PRKCQ", "PRKCZ", "PRKG1", "PRNP", "PTK2", "PTPN11", "PTPN2", "PTPN22", "PTPN23", "PTPN6", "PTPRC", "PTPRG", "PTPRR", "PTPRU", "PYCARD", "RARA", "RASAL3", "RC3H1", "RC3H2", "RDX", "RELA", "RGCC", "RHOA", "RHOH", "RIPOR2", "RNASE10", "RPS3", "RUNX1", "RUNX3", "SART1", "SCRIB", "SDC4", "SELE", "SELP", "SERPINE2", "SERPINF2", "SFTPD", "SH2B3", "SHH", "SIRPA", "SIRPB1", "SIRPG", "SKAP1", "SLC4A2", "SLC7A1", "SMAD7", "SMARCA2", "SMARCA4", "SMARCB1", "SMARCC1", "SMARCC2", "SMARCD1", "SMARCD2", "SMARCD3", "SMARCE1", "SOCS1", "SOCS5", "SOX12", "SOX4", "SPI1", "SPINT2", "SPN", "SRC", "ST3GAL4", "SYK", "TARM1", "TBX21", "TENM3", "TESPA1", "TFRC", "TGFB1", "TGFBR2", "THY1", "TIGIT", "TJP1", "TMEM131L", "TMIGD2", "TMX1", "TNF", "TNFAIP8L2", "TNFRSF13C", "TNFRSF14", "TNFRSF21", "TNFSF11", "TNFSF14", "TNFSF4", "TNFSF9", "TRAF6", "TRPV4", "TWSG1", "TYK2", "UFL1", "VAV1", "VCAM1", "VEGFA", "VNN1", "VSIG4", "VSIR", "VTCN1", "WNK1", "WNT1", "XBP1", "XCL1", "YES1", "YTHDF2", "ZAP70", "ZBTB1", "ZBTB7B", "ZC3H12A", "ZC3H8", "ZDHHC2", "ZDHHC21", "ZMIZ1", "ZNF703", "ZP3", "ZP4" ] }, "position": { "x": 2442.8707428083458, "y": 472.13800720509676, "id": "6f500156-fee8-48f9-92a1-285527a6b72b", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "name": [ "ANTIGEN PROCESSING-CROSS PRESENTATION%REACTOME DATABASE ID RELEASE 81%1236975" ], "description": [ "Antigen processing-Cross presentation" ], "pvalue": 9.8283e-7, "gs_type": null, "gs_size": 107, "padj": 0, "mcode_cluster_id": "Cluster 1", "NES": -2.0221, "genes": [ "B2M", "BTK", "CALR", "CD14", "CD207", "CD36", "CHUK", "CTSL", "CTSS", "CTSV", "CYBA", "CYBB", "FCGR1A", "FCGR1BP", "FGA", "FGB", "FGG", "HLA-A", "HLA-B", "HLA-C", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "HMGB1", "IKBKB", "IKBKG", "ITGAV", "ITGB5", "LNPEP", "LY96", "MRC1", "MRC2", "MYD88", "NCF1", "NCF2", "NCF4", "PDIA3", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RPS27A", "S100A1", "S100A8", "S100A9", "SEC22B", "SEC61A1", "SEC61A2", "SEC61B", "SEC61G", "SEM1", "SNAP23", "STX4", "TAP1", "TAP2", "TAPBP", "TIRAP", "TLR1", "TLR2", "TLR4", "TLR6", "UBA52", "UBB", "UBC", "VAMP3", "VAMP8" ] }, "position": { "x": 500.8221786251123, "y": 785.8677140108214, "id": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "name": [ "PROTEIN SYNTHESIS: ISOLEUCINE%SMPDB%SMP0111872" ], "description": [ "Protein Synthesis: Isoleucine" ], "pvalue": 3.4079e-17, "gs_type": null, "gs_size": 80, "padj": 5.5066e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7835, "genes": [ "FAU", "IARS1", "RACK1", "RPL10", "RPL10A", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "UBA52" ] }, "position": { "x": 779.5313855831196, "y": 262.73472544142754, "id": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "name": [ "NIK-->NONCANONICAL NF-KB SIGNALING%REACTOME DATABASE ID RELEASE 81%5676590" ], "description": [ "NIK-->noncanonical NF-kB signaling" ], "pvalue": 0.0000063866, "gs_type": null, "gs_size": 59, "padj": 0.0002, "mcode_cluster_id": "Cluster 1", "NES": -2.0252, "genes": [ "BTRC", "CHUK", "CUL1", "FBXW11", "MAP3K14", "NFKB2", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RELB", "RPS27A", "SEM1", "SKP1", "UBA3", "UBA52", "UBB", "UBC", "UBE2M" ] }, "position": { "x": 450.8077265887665, "y": 783.1232096999505, "id": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "cc5a06e2-5526-400d-920f-c569990290f7", "name": [ "PHOSPHOENOLPYRUVATE CARBOXYKINASE DEFICIENCY 1 (PEPCK1)%SMPDB%SMP0000560" ], "description": [ "Phosphoenolpyruvate Carboxykinase Deficiency 1 (PEPCK1)" ], "pvalue": 0.0017, "gs_type": null, "gs_size": 22, "padj": 0.0233, "mcode_cluster_id": "Cluster 8", "NES": 1.8347, "genes": [ "ALDOA", "BPGM", "ENO1", "FBP1", "G6PC1", "GALM", "GAPDH", "GPI", "HK2", "LDHA", "MDH2", "MPC1", "PANK1", "PC", "PCK1", "PGAM1", "PGAM2", "PGM1", "SLC25A11", "SLC2A2", "SLC37A4", "TPI1" ] }, "position": { "x": 3824.5914321858586, "y": 1192.6283778525499, "id": "cc5a06e2-5526-400d-920f-c569990290f7" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "e077548b-b603-4d14-a989-3ab530ea95de", "name": [ "MITOCHONDRIAL IMMUNE RESPONSE TO SARS COV 2%WIKIPATHWAYS_20240410%WP5038%HOMO SAPIENS" ], "description": [ "Mitochondrial immune response to SARS CoV 2" ], "pvalue": 0.0015, "gs_type": null, "gs_size": 29, "padj": 0.0217, "mcode_cluster_id": null, "NES": -1.8047, "genes": [ "ACAD9", "ACE2", "AGTR1", "AGTR2", "CGAS", "CTSL", "ECSIT", "IFIH1", "IKBKE", "IRF3", "IRF7", "MAVS", "MITA", "NDUFAF1", "NDUFB9", "NFKB1", "NFKB2", "NLRX1", "PHB2", "REN", "RIGI", "TBK1", "TICAM1", "TLR3", "TLR7", "TMPRSS2", "TOMM70", "TRAF3", "TRAF6" ] }, "position": { "x": 2259.9340720768078, "y": 1259.5076416229645, "id": "e077548b-b603-4d14-a989-3ab530ea95de" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "cadeeaf0-7b4c-48d6-a533-1357e319b01e", "name": [ "NEGATIVE REGULATION OF DEFENSE RESPONSE%GOBP%GO:0031348" ], "description": [ "negative regulation of defense response" ], "pvalue": 0.0000038948, "gs_type": null, "gs_size": 201, "padj": 0.0002, "mcode_cluster_id": "Cluster 19", "NES": -1.8266, "genes": [ "A2M", "ACOD1", "ADIPOQ", "AHR", "ALOX5", "AOAH", "APCS", "APOA1", "APOE", "ARG1", "ARNT", "ARRB2", "ATG12", "ATG5", "AURKB", "BANF1", "C1QBP", "C1QTNF3", "CACTIN", "CCN3", "CD200", "CD200R1", "CDH5", "CEACAM1", "CEP63", "CLEC12B", "CNOT7", "CR1", "CST7", "CX3CL1", "CXCL17", "CYLD", "DCST1", "DHX58", "DTX4", "EIF4E2", "ELANE", "ELF4", "ENPP3", "EXTL3", "FAM3A", "FCGR2B", "FEM1A", "FFAR4", "FGR", "FNDC4", "FPR2", "FURIN", "FXR1", "FYN", "GATA3", "GBA1", "GHRL", "GHSR", "GIGYF2", "GIT1", "GPER1", "GPR31", "GPS2", "GRN", "GSTP1", "HCK", "HLA-A", "HLA-B", "HLA-DRB1", "HLA-E", "HLA-F", "HLA-G", "IFI16", "IGF1", "IL10", "IL10RA", "IL13", "IL22", "IL22RA1", "IL33", "IL4", "ILRUN", "INS", "IRAK3", "IRGM", "ISG15", "ISL1", "ITCH", "KIR2DL4", "KLF4", "KLRC1", "KLRD1", "LDLR", "LGALS9", "LILRB1", "LPCAT3", "LRFN5", "LYAR", "LYN", "MACIR", "MAPK14", "MAPK7", "MAPKBP1", "MAVS", "MDK", "MEFV", "METRNL", "METTL3", "MFHAS1", "MICA", "MICB", "MKRN2", "MMP26", "MT-RNR2", "MUL1", "MVK", "NLRC3", "NLRC5", "NLRP12", "NLRP3", "NLRP4", "NMI", "NR1D1", "NR1H2", "NR1H3", "NR1H4", "NT5C2", "OAS1", "OAS3", "OTOP1", "OTULIN", "PARP1", "PARP14", "PCBP2", "PIM1", "PLCG1", "PLK2", "PPARA", "PPARD", "PPARG", "PPM1B", "PPP1R13L", "PRKCD", "PROC", "PTGER4", "PTGIS", "PTPN2", "PTPN6", "PTPRC", "PYDC2", "RB1", "REG3A", "RHBDF2", "RNF26", "RORA", "RPS19", "SAA1", "SAMHD1", "SELENOS", "SERPINB4", "SERPINB9", "SERPING1", "SFN", "SHARPIN", "SIGLEC10", "SIRPA", "SLAMF8", "SLC39A8", "SMIM30", "SMPDL3B", "SRC", "STAT2", "STAT3", "SUSD4", "SYK", "SYT11", "TAFA3", "TARBP2", "TEK", "TGFB1", "TMSB4X", "TNFAIP3", "TNFAIP6", "TNFAIP8L2", "TNFRSF1A", "TNFRSF1B", "TRAF3IP1", "TRAFD1", "TREM2", "TREX1", "TRIM21", "TRIM45", "TRIM65", "TTLL12", "TYRO3", "USP15", "USP18", "USP38", "VPS35", "VSIG4", "YES1", "YTHDF2", "YTHDF3", "YWHAZ", "ZDHHC18" ] }, "position": { "x": 2074.588735868625, "y": 272.78472806526804, "id": "cadeeaf0-7b4c-48d6-a533-1357e319b01e", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "name": [ "ER-PHAGOSOME PATHWAY%REACTOME DATABASE ID RELEASE 81%1236974" ], "description": [ "ER-Phagosome pathway" ], "pvalue": 4.6991e-7, "gs_type": null, "gs_size": 91, "padj": 0, "mcode_cluster_id": "Cluster 1", "NES": -2.1104, "genes": [ "B2M", "BTK", "CALR", "CD14", "CD36", "CHUK", "FGA", "FGB", "FGG", "HLA-A", "HLA-B", "HLA-C", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "HMGB1", "IKBKB", "IKBKG", "LY96", "MYD88", "PDIA3", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RPS27A", "S100A1", "S100A8", "S100A9", "SEC22B", "SEC61A1", "SEC61A2", "SEC61B", "SEC61G", "SEM1", "SNAP23", "STX4", "TAP1", "TAP2", "TAPBP", "TIRAP", "TLR1", "TLR2", "TLR4", "TLR6", "UBA52", "UBB", "UBC", "VAMP3", "VAMP8" ] }, "position": { "x": 415.36758975245056, "y": 805.8126940409809, "id": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "7cf31bf3-1726-4eb1-9696-c3f1e071c7f2", "name": [ "PROSTAGLANDIN SIGNALING%WIKIPATHWAYS_20240410%WP5088%HOMO SAPIENS" ], "description": [ "Prostaglandin signaling" ], "pvalue": 0.0015, "gs_type": null, "gs_size": 29, "padj": 0.0217, "mcode_cluster_id": null, "NES": -1.8047, "genes": [ "AHR", "AREG", "CCL2", "CCL3", "CCR2", "CSF1", "CXCL1", "CXCL8", "CXCL9", "IF2F", "IFNA1", "IL12A", "IL17A", "IL17F", "IL1A", "IL1B", "IL6", "IRF7", "KLRD1", "MMP9", "NFKB1", "NLRP3", "PTGER2", "PTGER4", "PTGES", "PYCARD", "TGFB1", "TNF", "VEGFA" ] }, "position": { "x": 1038.5, "y": 2272.9446642487483, "id": "7cf31bf3-1726-4eb1-9696-c3f1e071c7f2" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "33c9bcde-076b-467a-8783-02f39f19c5c0", "name": [ "CDK-MEDIATED PHOSPHORYLATION AND REMOVAL OF CDC6%REACTOME%R-HSA-69017.4" ], "description": [ "CDK-mediated phosphorylation and removal of Cdc6" ], "pvalue": 0.0000027039, "gs_type": null, "gs_size": 73, "padj": 0.0001, "mcode_cluster_id": "Cluster 1", "NES": -2.0531, "genes": [ "ANAPC1", "ANAPC10", "ANAPC11", "ANAPC15", "ANAPC16", "ANAPC2", "ANAPC4", "ANAPC5", "ANAPC7", "CCNA1", "CCNA2", "CCNE1", "CCNE2", "CDC16", "CDC23", "CDC26", "CDC27", "CDC6", "CDK2", "FZR1", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RPS27A", "SEM1", "UBA52", "UBB", "UBC", "UBE2C", "UBE2D1", "UBE2E1", "UBE2S" ] }, "position": { "x": 440.6711275490706, "y": 817.9711903401711, "id": "33c9bcde-076b-467a-8783-02f39f19c5c0", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "name": [ "DEGRADATION OF AXIN%REACTOME DATABASE ID RELEASE 81%4641257" ], "description": [ "Degradation of AXIN" ], "pvalue": 0, "gs_type": null, "gs_size": 55, "padj": 0.0011, "mcode_cluster_id": "Cluster 1", "NES": -1.9551, "genes": [ "AXIN1", "AXIN2", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RNF146", "RPS27A", "SEM1", "SMURF2", "TNKS", "TNKS2", "UBA52", "UBB", "UBC" ] }, "position": { "x": 451.75340960102994, "y": 796.7440901578412, "id": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "f86403d8-4d02-492c-ad8b-13e10dae4101", "name": [ "ISG15 ANTIVIRAL MECHANISM%REACTOME%R-HSA-1169408.4" ], "description": [ "ISG15 antiviral mechanism" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 71, "padj": 0.0052, "mcode_cluster_id": "Cluster 38", "NES": -1.7294, "genes": [ "AAAS", "ARIH1", "BECN1", "EIF2AK2", "EIF4A1", "EIF4A2", "EIF4A3", "EIF4E", "EIF4E2", "EIF4E3", "EIF4G1", "EIF4G2", "EIF4G3", "FLNB", "HERC5", "IFIT1", "IRF3", "ISG15", "JAK1", "KPNA1", "KPNA2", "KPNA3", "KPNA4", "KPNA5", "KPNA7", "KPNB1", "MAPK3", "MX1", "MX2", "NDC1", "NEDD4", "NUP107", "NUP133", "NUP153", "NUP155", "NUP160", "NUP188", "NUP205", "NUP210", "NUP214", "NUP35", "NUP37", "NUP42", "NUP43", "NUP50", "NUP54", "NUP62", "NUP85", "NUP88", "NUP93", "PIN1", "PLCG1", "POM121", "POM121C", "PPM1B", "RAE1", "RANBP2", "RIGI", "RPS27A", "SEC13", "STAT1", "TPR", "TRIM25", "UBA52", "UBA7", "UBB", "UBC", "UBE2E1", "UBE2L6", "UBE2N", "USP18" ] }, "position": { "x": 94.29991591380221, "y": 1279.5293694642576, "id": "f86403d8-4d02-492c-ad8b-13e10dae4101", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "3cdfcef3-3bc3-4abe-b8ba-a1eb0dcddc06", "name": [ "REGULATION OF MACROAUTOPHAGY%GOBP%GO:0016241" ], "description": [ "regulation of macroautophagy" ], "pvalue": 0, "gs_type": null, "gs_size": 168, "padj": 0.0011, "mcode_cluster_id": "Cluster 41", "NES": 1.7241, "genes": [ "ADRB2", "AKT1", "AMBRA1", "ATG12", "ATG14", "ATG2A", "ATG5", "ATP13A2", "ATP6V0A1", "ATP6V0A2", "ATP6V0B", "ATP6V0C", "ATP6V0D1", "ATP6V0D2", "ATP6V0E1", "ATP6V0E2", "ATP6V1A", "ATP6V1B1", "ATP6V1B2", "ATP6V1C1", "ATP6V1C2", "ATP6V1D", "ATP6V1E1", "ATP6V1E2", "ATP6V1G1", "ATP6V1G2", "ATP6V1H", "BAG3", "BECN1", "BNIP3", "BNIP3L", "C9orf72", "CALCOCO2", "CAPN1", "CAPNS1", "CASP3", "CDK5", "CDK5R1", "CDK5RAP3", "CERS1", "CLEC16A", "CLN3", "CSNK2A1", "CSNK2A2", "DCN", "DDRGK1", "DELE1", "DNM1L", "EIF2AK1", "ELAPOR1", "EPM2A", "ERN1", "EXOC1", "EXOC4", "EXOC7", "EXOC8", "FBXO7", "FBXW7", "FEZ1", "FEZ2", "FKBP8", "FYCO1", "FZD5", "GAPDH", "GBA1", "GNAI3", "GPSM1", "GSK3A", "HDAC6", "HSPB8", "HTT", "IKBKG", "IL4", "IRGM", "KAT5", "KDR", "LACRT", "LARP1", "LRRK2", "LRSAM1", "LYPLA1", "LZTS1", "MAP3K7", "MAPK8", "MOAP1", "MTM1", "MTMR8", "MTOR", "NEDD4", "NOD2", "NRBP2", "NUPR1", "OPTN", "PAFAH1B2", "PARL", "PHF23", "PIK3C3", "PIK3CA", "PIK3R4", "PINK1", "PIP4K2A", "PIP4K2B", "PIP4K2C", "PRKAA2", "PRKACA", "PRKN", "QSOX1", "RAB3GAP1", "RAB3GAP2", "RALB", "RHEB", "RNF31", "RUBCN", "RUFY4", "SCFD1", "SCOC", "SEC22B", "SESN1", "SESN2", "SESN3", "SH3GLB1", "SIRT1", "SLC25A4", "SLC25A5", "SMCR8", "SNX18", "SNX30", "SNX32", "SNX4", "SNX5", "SNX6", "SNX7", "SPTLC1", "SPTLC2", "SREBF1", "SREBF2", "STING1", "STUB1", "SUPT5H", "TBC1D25", "TBK1", "TECPR1", "TMEM39A", "TOM1", "TRIM13", "TRIM32", "TSC1", "TSC2", "UBE2A", "UBQLN1", "UBQLN2", "UBQLN4", "UCHL1", "UFL1", "ULK1", "USP36", "UVRAG", "VDAC1", "VPS13C", "VPS13D", "VPS26A", "VPS26B", "VPS35", "WAC", "WDR24", "WDR45", "WIPI1", "ZDHHC19" ] }, "position": { "x": 3984.3582129746646, "y": 1848.8294635424563, "id": "3cdfcef3-3bc3-4abe-b8ba-a1eb0dcddc06", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "8edc22d5-456d-46b8-abe6-c74649ed0114", "name": [ "ADHERENS JUNCTION ORGANIZATION%GOBP%GO:0034332" ], "description": [ "adherens junction organization" ], "pvalue": 0.0004, "gs_type": null, "gs_size": 40, "padj": 0.0078, "mcode_cluster_id": null, "NES": -1.885, "genes": [ "ACTB", "CAMSAP3", "CDH1", "CDH10", "CDH11", "CDH12", "CDH13", "CDH15", "CDH17", "CDH18", "CDH19", "CDH2", "CDH20", "CDH22", "CDH24", "CDH26", "CDH3", "CDH4", "CDH5", "CDH6", "CDH7", "CDH8", "CDH9", "CDHR3", "CSK", "CTNNB1", "FERMT2", "INAVA", "JAM3", "KIFC3", "MTSS1", "PAK2", "PIP5K1C", "PLEKHA7", "RAMP2", "SMAD7", "TBCD", "TJP1", "VCL", "ZNF703" ] }, "position": { "x": 1683.5296374546779, "y": 1236.5284173408518, "id": "8edc22d5-456d-46b8-abe6-c74649ed0114" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "3e25f569-00e8-43f9-a3b1-1ad7434aaf4b", "name": [ "KIDNEY DEVELOPMENT%GOBP%GO:0001822" ], "description": [ "kidney development" ], "pvalue": 0.0031, "gs_type": null, "gs_size": 140, "padj": 0.0367, "mcode_cluster_id": null, "NES": -1.5304, "genes": [ "ACE", "ACTA2", "AGT", "AGTR1", "AHI1", "ANGPT1", "ANGPT2", "AQP11", "ARL3", "BAG6", "BASP1", "BMP2", "BMP4", "BMP7", "C1GALT1", "CD24", "CD34", "CENPF", "CEP290", "CER1", "CITED1", "COL4A3", "COL4A4", "CTSH", "CYP4A11", "CYP4A22", "DACT2", "DLL1", "EGR1", "ENPEP", "FGF1", "FGF10", "FGF2", "FGF8", "FGFR2", "FOXC1", "FOXD1", "FOXJ1", "GATA3", "GDF6", "GDNF", "GLI2", "GPC3", "GREB1L", "HAS2", "HELLS", "HNF1A", "HNF1B", "HOXA11", "HOXD11", "HYAL2", "IFT25", "IFT27", "IFT88", "IQGAP1", "ITGA3", "ITGA8", "JAG1", "KANK2", "KLF15", "KLHL3", "LHX1", "LRP4", "LRRK2", "MAGI2", "MEF2C", "MME", "MPV17", "MTSS1", "MYC", "MYO1E", "NF1", "NIPBL", "NPHP3", "NPHS1", "NPHS2", "NPNT", "NUP107", "NUP133", "NUP160", "NUP85", "OSR1", "OSR2", "PAX2", "PAX8", "PCSK5", "PCSK9", "PDGFB", "PDGFRA", "PDGFRB", "PECAM1", "PKD1", "PKD2", "PLCE1", "PODXL", "POU3F3", "PPP3CA", "PRKX", "PROM1", "PROX1", "PTCH1", "PTPRO", "PYGO1", "PYGO2", "REN", "RET", "ROBO2", "SALL1", "SEC61A1", "SHH", "SIX1", "SIX2", "SIX4", "SLIT2", "SMO", "SOX17", "SOX4", "SOX8", "SOX9", "STAT1", "STRA6", "SULF1", "SULF2", "TCF21", "TEK", "TFAP2A", "TFAP2B", "TGFB2", "TGFBR1", "TRAF3IP1", "VANGL2", "VEGFA", "WFS1", "WNK4", "WNT11", "WNT4", "WNT7B", "WT1", "ZBTB16", "ZNG1A" ] }, "position": { "x": 1955.5306658166187, "y": 1801.8587965586644, "id": "3e25f569-00e8-43f9-a3b1-1ad7434aaf4b" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "636909c1-eb2c-48af-a5f1-691b8680834a", "name": [ "APOPTOTIC PROCESS%GOBP%GO:0006915" ], "description": [ "apoptotic process" ], "pvalue": 0.0033, "gs_type": null, "gs_size": 452, "padj": 0.0384, "mcode_cluster_id": null, "NES": -1.3566, "genes": [ "ABL1", "ACAA2", "ACIN1", "ACVR1B", "ACVR1C", "ADAM15", "ADORA1", "ADORA2A", "ADRA1A", "AEN", "AHCYL1", "AHR", "AIFM1", "AIFM2", "AIFM3", "AKAP1", "AKT1", "ALOX15B", "ANXA6", "APAF1", "APP", "ARHGEF6", "ARL6IP5", "ATCAY", "ATF2", "ATF4", "ATG3", "ATM", "ATN1", "ATP2A1", "ATP2A3", "BAD", "BAG3", "BAG6", "BAK1", "BAX", "BBC3", "BCL2", "BCL2A1", "BCL2L1", "BCL2L10", "BCL2L11", "BCL2L13", "BCL2L14", "BCL2L2", "BCL3", "BCLAF1", "BID", "BIK", "BLCAP", "BLOC1S2", "BMF", "BMP4", "BMPR2", "BNIP1", "BNIP2", "BNIP3", "BNIP3L", "BNIPL", "BOK", "BRAT1", "BRCA1", "BRSK2", "BTK", "C19orf12", "CAMK2A", "CAPN10", "CAPN3", "CASP10", "CASP12", "CASP2", "CASP3", "CASP4", "CASP5", "CASP6", "CASP7", "CASP8", "CASP8AP2", "CASP9", "CAV1", "CCAR2", "CD14", "CD2", "CD24", "CD27", "CD38", "CD70", "CDIP1", "CDK11A", "CDK11B", "CDK5", "CDK5RAP3", "CDKN1A", "CEBPB", "CECR2", "CFLAR", "CGB7", "CGB8", "CHAC1", "CHEK1", "CHEK2", "CIB1", "CIDEB", "CIDEC", "CIT", "CLC", "CLU", "COL4A3", "COLEC11", "CRADD", "CRIP1", "CSRNP1", "CTSL", "CUL1", "CUL2", "CUL3", "CUL4A", "CUL5", "CXCR4", "CYCS", "CYFIP2", "CYP1B1", "DAB2IP", "DAP", "DAP3", "DAPK1", "DAPK2", "DAPK3", "DAPL1", "DAXX", "DDIT3", "DDIT4", "DDX3X", "DDX41", "DDX47", "DDX5", "DEDD", "DEDD2", "DELE1", "DFFB", "DIABLO", "DICER1", "DLC1", "DMPK", "DNAJC10", "DNASE1L3", "DNASE2", "DNASE2B", "DNM1L", "DPF1", "DPF2", "DUX4", "DYRK2", "E2F1", "EBF4", "EFNA5", "EGLN3", "ELMO1", "EMP1", "EMP2", "EMP3", "ENDOG", "EP300", "EPHA2", "ERBB3", "ERBB4", "ERCC2", "ERCC3", "ERN1", "ERN2", "ERO1A", "ESPL1", "EXOG", "FADD", "FAM162A", "FAP", "FAS", "FASLG", "FASTK", "FASTKD2", "FEM1B", "FGFR3", "FHIT", "FIS1", "FNIP2", "FOXL2", "FOXO1", "FXR1", "FZD9", "G0S2", "GABARAP", "GADD45A", "GAPDH", "GDF6", "GGCT", "GLI3", "GLRX2", "GML", "GPER1", "GSK3A", "GSK3B", "GSKIP", "GSN", "GZMA", "GZMB", "GZMH", "GZMM", "HCAR2", "HIC1", "HINT1", "HIP1", "HIPK1", "HIPK2", "HK2", "HSPD1", "HTRA2", "IAPP", "IER3", "IFI16", "IFI27", "IFI27L1", "IFI27L2", "IFI6", "IFIT2", "IFNA2", "IFNG", "IFT57", "IKBKE", "IKBKG", "IL10", "IL12A", "IL17A", "IL1A", "IL1B", "IL2RA", "IL6", "IL6R", "INHBA", "IRF1", "IRF3", "ITGAV", "ITGB2", "ITPR1", "JADE1", "JAK2", "JMY", "KREMEN1", "LALBA", "LGALS12", "LIG4", "LMBR1L", "LOC122513141", "LTA", "MADD", "MAGEH1", "MAGI3", "MAL", "MAP3K10", "MAP3K5", "MAP3K7", "MCL1", "MCM2", "MDM2", "MEGF10", "MELK", "MFF", "MLLT11", "MOAP1", "MRPS30", "MSH6", "MTOR", "MTRNR2L5", "MX1", "MYBBP1A", "MYC", "MYD88", "NAE1", "NAIF1", "NCKAP1", "NDUFA13", "NDUFS1", "NGF", "NGFR", "NLRP1", "NLRP3", "NME3", "NOTCH2", "NOX5", "NSG1", "NUDT2", "OGT", "P2RX4", "P2RX7", "PAEP", "PAK4", "PAK5", "PAK6", "PARP1", "PAWR", "PAX3", "PDCD1", "PDCD10", "PDCD2L", "PDCD6", "PDE3A", "PDK1", "PDK2", "PDPK1", "PHLDA2", "PHLDA3", "PIDD1", "PIK3CA", "PLAGL1", "PLEKHO2", "PLK3", "PLSCR1", "PLSCR3", "PMAIP1", "PML", "PMP22", "POU4F1", "POU4F2", "PPARD", "PPIA", "PPM1F", "PPP1R13B", "PPP1R15A", "PPP2R1B", "PRF1", "PRKCA", "PRKCD", "PRKCE", "PRKDC", "PRODH", "PRUNE2", "PTGIS", "PTH", "PTK2B", "PYCARD", "QRICH1", "RAF1", "RELT", "RFK", "RHOB", "RHOT1", "RHOT2", "RIPK1", "RIPK2", "RIPK3", "RNF152", "RNF186", "RNF41", "ROBO2", "RPS27L", "RRAGC", "RRP8", "RTL10", "RTN4", "RYR2", "SCN2A", "SCRIB", "SELENOK", "SEMA6A", "SENP1", "SEPTIN4", "SFN", "SFRP5", "SGPL1", "SHH", "SIAH1", "SIRT1", "SIVA1", "SIX3", "SLFN12", "SLIT2", "SLIT3", "SMAD3", "SMAD4", "SNW1", "SOD2", "SORT1", "SPI1", "SST", "SSTR3", "ST20", "STK11", "STK24", "STK25", "STK3", "STK4", "STPG1", "TAOK1", "TAOK2", "TBX1", "TCHP", "TFPT", "TGFB1", "TGFB2", "TGFBR2", "THEM4", "TIMM50", "TLR2", "TLR3", "TM2D1", "TMEM109", "TMEM117", "TMEM238L", "TNF", "TNFAIP1", "TNFRSF10A", "TNFRSF10B", "TNFRSF10C", "TNFRSF19", "TNFRSF1A", "TNFRSF1B", "TNFRSF21", "TNFRSF25", "TNFSF12", "TNFSF14", "TOP2A", "TOPORS", "TP53", "TP53AIP1", "TP53BP2", "TP63", "TP73", "TRADD", "TRAF2", "TRAF7", "TRAIP", "TRIB3", "TRPC5", "TSC2", "UBE4B", "USP28", "VDAC1", "VDAC2", "VPS35", "XKR4", "XKR5", "XKR6", "XKR7", "XKR8", "XKR9", "YARS1", "ZBTB16", "ZDHHC3", "ZNF385A", "ZNF385B", "ZNF443", "ZNF622", "ZPR1" ] }, "position": { "x": 409.84640329131685, "y": 2089.0778240253444, "id": "636909c1-eb2c-48af-a5f1-691b8680834a" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "28206aab-808d-44e8-ac77-aae952d8f7b2", "name": [ "POSITIVE REGULATION OF TUMOR NECROSIS FACTOR SUPERFAMILY CYTOKINE PRODUCTION%GOBP%GO:1903557" ], "description": [ "positive regulation of tumor necrosis factor superfamily cytokine production" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 88, "padj": 0.0038, "mcode_cluster_id": "Cluster 24", "NES": -1.8481, "genes": [ "ADAM17", "ADAM8", "AGER", "APP", "ARFGEF2", "ARHGEF2", "AZU1", "BCL10", "C1QTNF4", "CCL19", "CCL3", "CCR2", "CD14", "CD2", "CD84", "CD86", "CLEC7A", "CLU", "CYBA", "DDT", "DHX9", "EPHB2", "FADD", "FCGR2A", "FCGR2B", "FCGR2C", "FCGR3A", "FRMD8", "FZD5", "HAVCR2", "HLA-E", "HMGB1", "HSPB1", "IFIH1", "IFNG", "IFNGR1", "IL12B", "IL17A", "IL17F", "IL1A", "IL23A", "IL33", "IL6", "ISL1", "JAK2", "LBP", "LGALS9", "LILRA2", "LILRA5", "LPL", "LY96", "MAVS", "MIF", "MMP8", "NOD2", "OAS1", "OAS2", "OAS3", "ORM1", "ORM2", "PF4", "PLCG2", "PSEN1", "PTPN11", "PTPRC", "PTPRJ", "PYCARD", "RASGRP1", "RIGI", "RIPK1", "SETD4", "SPHK2", "SPN", "STAT3", "SYK", "TGFB1", "THBS1", "TIRAP", "TLR1", "TLR2", "TLR3", "TLR4", "TLR9", "TMEM106A", "TNFRSF8", "TWIST1", "TYROBP", "WNT5A" ] }, "position": { "x": 1927.4537508867352, "y": 1372.8911112368958, "id": "28206aab-808d-44e8-ac77-aae952d8f7b2", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "e15e930f-af85-4402-99a6-a57c9368b631", "name": [ "EUKARYOTIC TRANSLATION INITIATION%REACTOME%R-HSA-72613.5" ], "description": [ "Eukaryotic Translation Initiation" ], "pvalue": 5.4386e-19, "gs_type": null, "gs_size": 120, "padj": 2.876e-16, "mcode_cluster_id": "Cluster 2", "NES": 2.754, "genes": [ "EIF1AX", "EIF2B1", "EIF2B2", "EIF2B3", "EIF2B4", "EIF2B5", "EIF2S1", "EIF2S2", "EIF2S3", "EIF3A", "EIF3B", "EIF3C", "EIF3D", "EIF3E", "EIF3F", "EIF3G", "EIF3H", "EIF3I", "EIF3J", "EIF3K", "EIF3L", "EIF3M", "EIF4A1", "EIF4A2", "EIF4B", "EIF4E", "EIF4EBP1", "EIF4G1", "EIF4H", "EIF5", "EIF5B", "FAU", "PABPC1", "RPL10", "RPL10A", "RPL10L", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL22L1", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL26L1", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL36AL", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL39L", "RPL3L", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "UBA52" ] }, "position": { "x": 699.0407209933809, "y": 363.4851132844782, "id": "e15e930f-af85-4402-99a6-a57c9368b631", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "name": [ "G1 S DNA DAMAGE CHECKPOINTS%REACTOME%R-HSA-69615.4" ], "description": [ "G1 S DNA Damage Checkpoints" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 68, "padj": 0.0021, "mcode_cluster_id": "Cluster 1", "NES": -1.8335, "genes": [ "ATM", "CCNA1", "CCNA2", "CCNE1", "CCNE2", "CDC25A", "CDK2", "CDKN1A", "CDKN1B", "CDKN2A", "CHEK1", "CHEK2", "COP1", "MDM2", "MDM4", "PCBP4", "PHF20", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RPS27A", "SEM1", "TP53", "UBA52", "UBB", "UBC", "ZNF385A" ] }, "position": { "x": 464.55130321751153, "y": 793.2039555714548, "id": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "a0a1943b-60df-40e6-8e54-0852991dd573", "name": [ "HOST INTERACTIONS OF HIV FACTORS%REACTOME%R-HSA-162909.3" ], "description": [ "Host Interactions of HIV factors" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 126, "padj": 0.0023, "mcode_cluster_id": "Cluster 1", "NES": -1.7531, "genes": [ "AAAS", "AP1B1", "AP1G1", "AP1M1", "AP1M2", "AP1S1", "AP1S2", "AP1S3", "AP2A1", "AP2A2", "AP2B1", "AP2M1", "AP2S1", "ARF1", "ATP6V1H", "B2M", "BANF1", "BTRC", "CCNT1", "CD28", "CD4", "CD8B", "CDK9", "CUL5", "DOCK2", "ELMO1", "ELOB", "ELOC", "FYN", "HCK", "HLA-A", "HMGA1", "KPNA1", "KPNB1", "LCK", "NDC1", "NPM1", "NUP107", "NUP133", "NUP153", "NUP155", "NUP160", "NUP188", "NUP205", "NUP210", "NUP214", "NUP35", "NUP37", "NUP42", "NUP43", "NUP50", "NUP54", "NUP62", "NUP85", "NUP88", "NUP93", "PACS1", "PAK2", "POM121", "POM121C", "PPIA", "PSIP1", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RAC1", "RAE1", "RAN", "RANBP1", "RANBP2", "RANGAP1", "RBX1", "RCC1", "RPS27A", "SEC13", "SEM1", "SKP1", "SLC25A4", "SLC25A5", "SLC25A6", "TPR", "UBA52", "UBB", "UBC", "XPO1" ] }, "position": { "x": 490.762834481962, "y": 794.9762333109439, "id": "a0a1943b-60df-40e6-8e54-0852991dd573", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "21bf578e-30d1-4fd3-95d2-727025363526", "name": [ "AICA-RIBOSIDURIA%PATHWHIZ%PW000082" ], "description": [ "AICA-Ribosiduria" ], "pvalue": 0.0025, "gs_type": null, "gs_size": 37, "padj": 0.031, "mcode_cluster_id": "Cluster 3", "NES": -1.6821, "genes": [ "ADA", "ADCY2", "ADSL", "ADSS2", "AK1", "AMPD1", "APRT", "ATAD1", "ATIC", "DGUOK", "ENTPD5", "ENTPD8", "GART", "GDA", "GMPR", "GMPS", "GUCY1A2", "GUCY1B1", "GUK1", "HPRT1", "IMPDH1", "ITPA", "NME6", "NT5C2", "NUDT2", "NUDT5", "PAICS", "PDE10A", "PDE4D", "PFAS", "PNP", "PPAT", "PRPS1L1", "RRM1", "RRM2", "TXN", "XDH" ] }, "position": { "x": 1594.1171751738252, "y": 1361.3029182584746, "id": "21bf578e-30d1-4fd3-95d2-727025363526", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "a9a093b8-8d00-47eb-910e-37c45c9e4cf2", "name": [ "RESPONSE TO ALCOHOL%GOBP%GO:0097305" ], "description": [ "response to alcohol" ], "pvalue": 0.0014, "gs_type": null, "gs_size": 87, "padj": 0.0206, "mcode_cluster_id": null, "NES": -1.7008, "genes": [ "ABCA2", "ADAM15", "ADCY1", "ADCY2", "ADCY3", "ADCY5", "ADCY6", "ADCY7", "ADCY8", "ADH7", "AHR", "AKR1C2", "AKR1C3", "BLM", "BRCA1", "CCL19", "CCL21", "CCL3", "CCR5", "CCR7", "CDH1", "CES1", "CFTR", "CHRNB2", "CREB1", "CRHBP", "CSN1S1", "CTNNA1", "CTNNB1", "CYP7A1", "DEFB104B", "DRD2", "DRD3", "DRD4", "DYNAP", "GLRA1", "GLRA2", "GNAI1", "GNB1", "GNG2", "GOLPH3", "GOT2", "GPLD1", "GPR155", "GRAMD1A", "GRAMD1B", "GRAMD1C", "GRIN1", "GRIN2A", "GRIN2B", "GRIN3A", "HSD3B1", "HSD3B2", "JUP", "KLF9", "LARP1", "LRP6", "MAP4K1", "MLC1", "OPRM1", "OSBPL7", "PMVK", "PTCH1", "PTGER2", "PTGER4", "PTGFR", "RAD51", "SCNN1A", "SCNN1B", "SCNN1D", "SCNN1G", "SDF4", "SFRP1", "SLC5A5", "SLIT2", "SLIT3", "SMAD2", "SMO", "SOD1", "SPHK2", "SPIDR", "TGFB1", "TGFBR1", "TGFBR2", "TGFBR3", "TH", "TNFSF4" ] }, "position": { "x": 2514.4373486742247, "y": 1801.8587965586644, "id": "a9a093b8-8d00-47eb-910e-37c45c9e4cf2" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "41e51785-b6a5-4926-93a8-93e756e15ca6", "name": [ "ANTIGEN PROCESSING AND PRESENTATION OF ENDOGENOUS PEPTIDE ANTIGEN%GOBP%GO:0002483" ], "description": [ "antigen processing and presentation of endogenous peptide antigen" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 24, "padj": 0.0014, "mcode_cluster_id": "Cluster 10", "NES": -2.047, "genes": [ "B2M", "ERAP1", "ERAP2", "HFE", "HLA-A", "HLA-B", "HLA-C", "HLA-DRA", "HLA-DRB1", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "IDE", "MICA", "MICB", "RAET1E", "RAET1G", "RAET1L", "TAP1", "TAP2", "ULBP1", "ULBP2", "ULBP3" ] }, "position": { "x": 1974.3299638441922, "y": 984.6216614768865, "id": "41e51785-b6a5-4926-93a8-93e756e15ca6", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "name": [ "HEDGEHOG LIGAND BIOGENESIS%REACTOME DATABASE ID RELEASE 81%5358346" ], "description": [ "Hedgehog ligand biogenesis" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 65, "padj": 0.0056, "mcode_cluster_id": "Cluster 1", "NES": -1.8121, "genes": [ "ADAM17", "DERL2", "DHH", "DISP2", "ERLEC1", "GPC5", "HHAT", "IHH", "NOTUM", "OS9", "P4HB", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RPS27A", "SCUBE2", "SEL1L", "SEM1", "SHH", "SYVN1", "UBA52", "UBB", "UBC", "VCP" ] }, "position": { "x": 469.83350834226303, "y": 781.099054774361, "id": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "6436a9b9-9418-4b09-8d7e-1168794a0d4a", "name": [ "REGULATION OF TUMOR NECROSIS FACTOR PRODUCTION%GOBP%GO:0032680" ], "description": [ "regulation of tumor necrosis factor production" ], "pvalue": 0.0006, "gs_type": null, "gs_size": 133, "padj": 0.0097, "mcode_cluster_id": "Cluster 24", "NES": -1.6923, "genes": [ "ADAM17", "ADIPOQ", "AGER", "APP", "ARFGEF2", "ARG2", "ARHGEF2", "AZU1", "BPI", "C1QTNF4", "C5AR2", "CACTIN", "CCL19", "CCL3", "CCR2", "CD14", "CD2", "CD33", "CD47", "CD84", "CHRNA7", "CIDEA", "CLEC4A", "CLEC7A", "CLU", "CX3CL1", "CX3CR1", "CYBA", "DDT", "DEFB114", "DHX9", "DICER1", "ELF4", "EPHB2", "FADD", "FCGR2A", "FCGR2B", "FCGR2C", "FCGR3A", "FOXP1", "FRMD8", "FXR1", "FZD5", "GAS6", "GHRL", "GHSR", "GSTP1", "HAVCR2", "HLA-E", "HMGB1", "HSPB1", "IFIH1", "IFNG", "IFNGR1", "IGF1", "IL10", "IL12B", "IL17A", "IL1A", "IL23A", "IL33", "IL37", "IL4", "IL6", "ILRUN", "IRAK3", "ISL1", "JAK2", "LBP", "LGALS9", "LILRA2", "LILRA4", "LILRA5", "LILRB1", "LILRB4", "LPL", "LTF", "LY96", "MAPKAPK2", "MAVS", "MC1R", "MIF", "MMP8", "NFKBIL1", "NLRC3", "NOD2", "NR1H4", "OAS1", "OAS2", "OAS3", "ORM1", "ORM2", "PF4", "PLCG2", "POMC", "PSEN1", "PTPN11", "PTPN22", "PTPN6", "PTPRC", "PTPRJ", "PYCARD", "RARA", "RASGRP1", "RIGI", "RIPK1", "SELENOS", "SETD4", "SIRPA", "SLAMF1", "SPHK2", "SPN", "STAT3", "SYK", "SYT11", "TGFB1", "THBS1", "TIRAP", "TLR1", "TLR2", "TLR3", "TLR4", "TLR9", "TMEM106A", "TNFAIP3", "TNFRSF8", "TRIM27", "TWIST1", "TYROBP", "VSIR", "WNT5A", "ZC3H12A", "ZFP36" ] }, "position": { "x": 1905.0284637383331, "y": 1236.5284173408515, "id": "6436a9b9-9418-4b09-8d7e-1168794a0d4a", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "374d76b1-e4d5-4516-b105-410699dc6050", "name": [ "SARS-COV-2 MODULATES HOST TRANSLATION MACHINERY%REACTOME DATABASE ID RELEASE 81%9754678" ], "description": [ "SARS-CoV-2 modulates host translation machinery" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 50, "padj": 0.0044, "mcode_cluster_id": "Cluster 2", "NES": 1.9279, "genes": [ "DDX20", "FAU", "GEMIN2", "GEMIN4", "GEMIN5", "GEMIN6", "GEMIN7", "GEMIN8", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "SMN2", "SNRPB", "SNRPD1", "SNRPD2", "SNRPD3", "SNRPE", "SNRPF", "SNRPG" ] }, "position": { "x": 1063.2283433093678, "y": 304.2340665373343, "id": "374d76b1-e4d5-4516-b105-410699dc6050", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "name": [ "PCP CE PATHWAY%REACTOME DATABASE ID RELEASE 81%4086400" ], "description": [ "PCP CE pathway" ], "pvalue": 0, "gs_type": null, "gs_size": 92, "padj": 0.0009, "mcode_cluster_id": "Cluster 1", "NES": -1.8657, "genes": [ "AP2A1", "AP2A2", "AP2B1", "AP2M1", "AP2S1", "ARRB2", "CLTA", "CLTB", "CLTC", "DAAM1", "DVL1", "DVL2", "DVL3", "FZD1", "FZD2", "FZD3", "FZD4", "FZD5", "FZD6", "FZD7", "FZD8", "PARD6A", "PFN1", "PRICKLE1", "PRKCA", "PRKCB", "PRKCG", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RAC1", "RAC2", "RAC3", "RHOA", "ROR1", "ROR2", "RPS27A", "RYK", "SCRIB", "SEM1", "SMURF1", "SMURF2", "UBA52", "UBB", "UBC", "VANGL2", "WNT1", "WNT11", "WNT4", "WNT5A", "WNT5B" ] }, "position": { "x": 498.6954406546291, "y": 801.0961260053639, "id": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "6c02baf6-4938-42c0-b332-71998a685040", "name": [ "TCF DEPENDENT SIGNALING IN RESPONSE TO WNT%REACTOME%R-HSA-201681.3" ], "description": [ "TCF dependent signaling in response to WNT" ], "pvalue": 1.7827e-7, "gs_type": null, "gs_size": 200, "padj": 0.0000096019, "mcode_cluster_id": null, "NES": -1.9315, "genes": [ "AKT1", "AKT2", "AMER1", "APC", "ASH2L", "AXIN1", "AXIN2", "BCL9", "BCL9L", "BTRC", "CAV1", "CBY1", "CCDC88C", "CDC73", "CHD8", "CREBBP", "CSNK1A1", "CSNK1E", "CSNK1G2", "CSNK2A1", "CSNK2A2", "CSNK2B", "CTBP1", "CTNNB1", "CTNNBIP1", "CUL3", "CXXC4", "DACT1", "DKK1", "DKK2", "DKK4", "DVL1", "DVL2", "DVL3", "EP300", "FRAT1", "FRAT2", "FZD1", "FZD2", "FZD4", "FZD5", "FZD6", "FZD8", "GSK3B", "H2AB1", "H2AC14", "H2AC19", "H2AC20", "H2AC7", "H2AC8", "H2AJ", "H2AX", "H2AZ2", "H2BC1", "H2BC11", "H2BC12", "H2BC12L", "H2BC13", "H2BC14", "H2BC15", "H2BC17", "H2BC21", "H2BC26", "H2BC3", "H2BC5", "H2BC8", "H2BC9", "H3-3B", "H3-4", "H3C15", "H3C8", "H4C9", "HDAC1", "HECW1", "KAT5", "KLHL12", "KMT2D", "KREMEN1", "KREMEN2", "LEF1", "LEO1", "LGR4", "LGR5", "LGR6", "LRP5", "LRP6", "MEN1", "MYC", "PIP5K1B", "PPP2CA", "PPP2CB", "PPP2R1A", "PPP2R1B", "PPP2R5A", "PPP2R5B", "PPP2R5C", "PPP2R5D", "PPP2R5E", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "PYGO1", "PYGO2", "RBBP5", "RBX1", "RNF146", "RNF43", "RPS27A", "RSPO1", "RSPO2", "RSPO3", "RSPO4", "RUNX3", "RUVBL1", "RYK", "SEM1", "SFRP1", "SFRP2", "SMARCA4", "SMURF2", "SOST", "SOX13", "SOX17", "SOX2", "SOX3", "SOX4", "SOX6", "SOX7", "SOX9", "SRY", "TCF7", "TCF7L1", "TCF7L2", "TERT", "TLE1", "TLE2", "TLE3", "TLE4", "TNKS", "TNKS2", "TRRAP", "UBA52", "UBB", "UBC", "USP34", "USP8", "WIF1", "WNT1", "WNT3", "WNT3A", "WNT4", "WNT5A", "WNT8A", "WNT8B", "WNT9A", "XIAP", "XPO1", "YWHAZ", "ZNRF3" ] }, "position": { "x": 510.95440244488884, "y": 727.3839397518398, "id": "6c02baf6-4938-42c0-b332-71998a685040" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "e317d95d-7299-42da-9e5d-030e294dbe75", "name": [ "TRANSLATION%REACTOME%R-HSA-72766.6" ], "description": [ "Translation" ], "pvalue": 2.162e-7, "gs_type": null, "gs_size": 294, "padj": 0, "mcode_cluster_id": "Cluster 2", "NES": 1.7561, "genes": [ "AARS1", "AARS2", "AIMP1", "AIMP2", "APEH", "AURKAIP1", "CARS1", "CARS2", "CHCHD1", "DAP3", "DARS1", "DARS2", "DDOST", "EARS2", "EEF1A1", "EEF1A1P5", "EEF1A2", "EEF1B2", "EEF1D", "EEF1E1", "EEF1G", "EEF2", "EIF1AX", "EIF2B1", "EIF2B2", "EIF2B3", "EIF2B4", "EIF2B5", "EIF2S1", "EIF2S2", "EIF2S3", "EIF3A", "EIF3B", "EIF3C", "EIF3D", "EIF3E", "EIF3F", "EIF3G", "EIF3H", "EIF3I", "EIF3J", "EIF3K", "EIF3L", "EIF3M", "EIF4A1", "EIF4A2", "EIF4B", "EIF4E", "EIF4EBP1", "EIF4G1", "EIF4H", "EIF5", "EIF5B", "EPRS1", "ERAL1", "ETF1", "FARS2", "FARSA", "FARSB", "FAU", "GADD45GIP1", "GARS1", "GFM1", "GFM2", "GSPT1", "GSPT2", "HARS1", "HARS2", "IARS1", "IARS2", "KARS1", "KGD4", "LARS1", "LARS2", "MARS1", "MARS2", "MRPL1", "MRPL10", "MRPL11", "MRPL12", "MRPL13", "MRPL14", "MRPL15", "MRPL16", "MRPL17", "MRPL18", "MRPL19", "MRPL2", "MRPL20", "MRPL21", "MRPL22", "MRPL23", "MRPL24", "MRPL27", "MRPL28", "MRPL3", "MRPL30", "MRPL32", "MRPL33", "MRPL34", "MRPL35", "MRPL36", "MRPL37", "MRPL38", "MRPL39", "MRPL4", "MRPL40", "MRPL41", "MRPL42", "MRPL43", "MRPL44", "MRPL45", "MRPL46", "MRPL47", "MRPL48", "MRPL49", "MRPL50", "MRPL51", "MRPL52", "MRPL53", "MRPL54", "MRPL55", "MRPL57", "MRPL58", "MRPL9", "MRPS10", "MRPS11", "MRPS12", "MRPS14", "MRPS15", "MRPS16", "MRPS17", "MRPS18A", "MRPS18B", "MRPS18C", "MRPS2", "MRPS21", "MRPS22", "MRPS23", "MRPS24", "MRPS25", "MRPS26", "MRPS27", "MRPS28", "MRPS30", "MRPS31", "MRPS33", "MRPS34", "MRPS35", "MRPS5", "MRPS6", "MRPS7", "MRPS9", "MRRF", "MTFMT", "MTIF2", "MTIF3", "MTRF1L", "N6AMT1", "NARS1", "NARS2", "OXA1L", "PABPC1", "PARS2", "PPA1", "PPA2", "PTCD3", "QARS1", "RARS1", "RARS2", "RPL10", "RPL10A", "RPL10L", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL22L1", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL26L1", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL36AL", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL39L", "RPL3L", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPN1", "RPN2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "SARS1", "SARS2", "SEC11A", "SEC11C", "SEC61A1", "SEC61A2", "SEC61B", "SEC61G", "SPCS1", "SPCS2", "SPCS3", "SRP14", "SRP19", "SRP54", "SRP68", "SRP72", "SRP9", "SRPRA", "SRPRB", "SSR1", "SSR2", "SSR3", "SSR4", "TARS1", "TARS2", "TRAM1", "TRMT112", "TSFM", "TUFM", "UBA52", "VARS1", "VARS2", "WARS1", "WARS2", "YARS1", "YARS2" ] }, "position": { "x": 619.0591168019048, "y": 450.76337208229666, "id": "e317d95d-7299-42da-9e5d-030e294dbe75", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "name": [ "G2 M TRANSITION%REACTOME DATABASE ID RELEASE 81%69275" ], "description": [ "G2 M Transition" ], "pvalue": 0.0009, "gs_type": null, "gs_size": 181, "padj": 0.0143, "mcode_cluster_id": null, "NES": -1.554, "genes": [ "ACTR1A", "AJUBA", "AKAP9", "ALMS1", "AURKA", "BORA", "BTRC", "CCNA1", "CCNA2", "CCNB1", "CCNB2", "CCNH", "CCP110", "CDC25A", "CDC25B", "CDC25C", "CDK1", "CDK11A", "CDK11B", "CDK2", "CDK5RAP2", "CDK7", "CDKN1A", "CENPF", "CENPJ", "CEP131", "CEP135", "CEP152", "CEP164", "CEP192", "CEP250", "CEP290", "CEP41", "CEP43", "CEP57", "CEP63", "CEP70", "CEP72", "CEP76", "CEP78", "CETN2", "CKAP5", "CLASP1", "CNTRL", "CSNK1D", "CSNK1E", "CUL1", "DCTN2", "DCTN3", "DYNC1H1", "DYNC1I2", "DYNLL1", "EP300", "FBXL18", "FBXL7", "FBXW11", "FKBPL", "FOXM1", "GTSE1", "HAUS1", "HAUS2", "HAUS3", "HAUS4", "HAUS5", "HAUS6", "HAUS7", "HAUS8", "HMMR", "HSP90AA1", "HSP90AB1", "LCMT1", "LIN37", "LIN52", "LIN54", "LIN9", "MAPRE1", "MNAT1", "MYBL2", "MZT1", "MZT2A", "MZT2B", "NDE1", "NEDD1", "NEK2", "NINL", "NME7", "ODF2", "OFD1", "OPTN", "PAFAH1B1", "PCM1", "PCNT", "PHLDA1", "PKMYT1", "PLK1", "PLK4", "PPME1", "PPP1CB", "PPP1R12A", "PPP2CA", "PPP2CB", "PPP2R1A", "PPP2R1B", "PPP2R2A", "PPP2R3B", "PRKACA", "PRKAR2B", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RAB8A", "RBBP4", "RBX1", "RPS27A", "SDCCAG8", "SEM1", "SFI1", "SKP1", "SSNA1", "TP53", "TPX2", "TUBA1A", "TUBA4A", "TUBB", "TUBB4A", "TUBB4B", "TUBG1", "TUBG2", "TUBGCP2", "TUBGCP3", "TUBGCP4", "TUBGCP5", "TUBGCP6", "UBA52", "UBB", "UBC", "WEE1", "XPO1", "YWHAE", "YWHAG" ] }, "position": { "x": 439.2195942047684, "y": 845.4658610763104, "id": "76c05e50-04a9-439d-99a3-211a0b1d6fa3" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "4e3e8d48-0291-4161-ace9-86e5b691f708", "name": [ "MEIOSIS%REACTOME DATABASE ID RELEASE 81%1500620" ], "description": [ "Meiosis" ], "pvalue": 0.0021, "gs_type": null, "gs_size": 84, "padj": 0.0287, "mcode_cluster_id": null, "NES": -1.6506, "genes": [ "ACD", "ATM", "ATR", "BLM", "BRCA1", "BRCA2", "CDK2", "CDK4", "DMC1", "FKBP6", "H2AB1", "H2AC14", "H2AC19", "H2AC20", "H2AC7", "H2AC8", "H2AJ", "H2AX", "H2AZ2", "H2BC1", "H2BC11", "H2BC12", "H2BC12L", "H2BC13", "H2BC14", "H2BC15", "H2BC17", "H2BC21", "H2BC26", "H2BC3", "H2BC5", "H2BC8", "H2BC9", "H3-3B", "H3-4", "H3C15", "H3C8", "H4C9", "HSPA2", "LMNB1", "MLH1", "MLH3", "MND1", "MRE11", "MSH4", "MSH5", "NBN", "POT1", "PRDM9", "PSMC3IP", "RAD21", "RAD50", "RAD51", "RAD51C", "RBBP8", "REC8", "RPA1", "RPA2", "RPA3", "SMC1A", "SMC1B", "SMC3", "SPO11", "STAG1", "STAG2", "STAG3", "SUN1", "SUN2", "SYCE1", "SYCE2", "SYCE3", "SYCP1", "SYCP2", "SYCP3", "SYNE1", "SYNE2", "TERF1", "TERF2", "TERF2IP", "TEX12", "TEX15", "TINF2", "TOP3A", "UBE2I" ] }, "position": { "x": 2193.5, "y": 2195.9446642487483, "id": "4e3e8d48-0291-4161-ace9-86e5b691f708" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "a9922200-db44-4066-b545-f8b586b276b0", "name": [ "CELLULAR RESPONSE TO HYPOXIA%GOBP%GO:0071456" ], "description": [ "cellular response to hypoxia" ], "pvalue": 0, "gs_type": null, "gs_size": 75, "padj": 0.0007, "mcode_cluster_id": "Cluster 14", "NES": 1.9321, "genes": [ "ACAA2", "ADAM8", "ADO", "AK4", "ANGPT4", "AQP1", "AQP3", "BAD", "BMP7", "BNIP3", "BNIP3L", "CITED2", "CPEB1", "CPEB2", "EGLN1", "EGLN2", "EGLN3", "EPAS1", "FABP1", "FAM162A", "FMN2", "GATA6", "HIF1A", "HILPDA", "HIPK2", "HP1BP3", "HYOU1", "KCND2", "LMNA", "MDM2", "MDM4", "MGARP", "MLST8", "MT3", "MTOR", "MYC", "NDNF", "NDRG1", "NFE2L2", "NGB", "NKX3-1", "NOP53", "NOTCH1", "NPEPPS", "OPRD1", "P4HB", "PDK1", "PDK3", "PGK1", "PINK1", "PLK3", "PMAIP1", "PPARG", "PTGIS", "PTGS2", "RGCC", "RORA", "RPTOR", "SCN2A", "SFRP1", "SIRT1", "SIRT2", "SLC8A3", "SUV39H1", "SUV39H2", "TBL2", "TERT", "TGFB1", "TIGAR", "TP53", "TWIST1", "UBQLN1", "VEGFA", "VHL", "ZFP36L1" ] }, "position": { "x": 3573.1080129331, "y": 1885.7095118448592, "id": "a9922200-db44-4066-b545-f8b586b276b0", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "535a82d8-5c10-4a4c-9a20-09541374ee3b", "name": [ "GRANULOCYTE MIGRATION%GOBP%GO:0097530" ], "description": [ "granulocyte migration" ], "pvalue": 0, "gs_type": null, "gs_size": 78, "padj": 0.0007, "mcode_cluster_id": "Cluster 7", "NES": -2.0141, "genes": [ "ADGRE2", "ANXA1", "BSG", "CCL1", "CCL11", "CCL13", "CCL14", "CCL15", "CCL16", "CCL18", "CCL2", "CCL22", "CCL23", "CCL24", "CCL25", "CCL26", "CCL3", "CCL3L3", "CCL4", "CCL4L2", "CCL5", "CCL7", "CCL8", "CD177", "CD300H", "CKLF", "CX3CL1", "CXADR", "CXCL1", "CXCL10", "CXCL11", "CXCL13", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "CXCR1", "CXCR2", "EDN1", "EDN2", "EDN3", "EMP2", "FCER1G", "GBF1", "GP2", "IRAK4", "ITGB2", "JAM3", "JAML", "LGALS3", "NCKAP1L", "PDE4B", "PECAM1", "PF4", "PF4V1", "PIK3CD", "PIK3CG", "PIKFYVE", "PIP5K1C", "PLA2G1B", "PPBP", "PPIA", "PPIB", "PRTN3", "S100A12", "S100A8", "S100A9", "SAA1", "SCG2", "SRP54", "SYK", "TGFB2", "TREM1", "UMOD", "XCL1", "XCL2" ] }, "position": { "x": 3220.0169194523623, "y": 613.4664734264339, "id": "535a82d8-5c10-4a4c-9a20-09541374ee3b", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "3f4eedfb-536c-4748-a3c7-d3c372aa59e7", "name": [ "REGULATION OF T CELL PROLIFERATION%GOBP%GO:0042129" ], "description": [ "regulation of T cell proliferation" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 127, "padj": 0.0016, "mcode_cluster_id": "Cluster 12", "NES": -1.8565, "genes": [ "AGER", "AIF1", "ANXA1", "ARG1", "BMP4", "BTN2A2", "CCDC88B", "CCL19", "CCL5", "CCR2", "CD1D", "CD209", "CD24", "CD274", "CD276", "CD28", "CD3E", "CD40LG", "CD46", "CD55", "CD6", "CD70", "CD80", "CD81", "CD86", "CEBPB", "CLC", "CLECL1P", "CR1", "CRTAM", "DLG5", "EBI3", "FADD", "FOXP3", "GLMN", "GPNMB", "HHLA2", "HLA-A", "HLA-DMB", "HLA-DPA1", "HLA-DPB1", "HLA-DRB1", "HLA-E", "HLA-G", "HMGB1", "ICOSLG", "IDO1", "IGF1", "IGF2", "IGFBP2", "IHH", "IL10", "IL12B", "IL12RB1", "IL15", "IL18", "IL1A", "IL1B", "IL2", "IL21", "IL23A", "IL23R", "IL27", "IL4", "IL4I1", "IL6", "IL6ST", "IRF1", "JAK2", "LEP", "LGALS3", "LGALS9", "LGALS9B", "LGALS9C", "LILRB1", "LILRB2", "LILRB4", "MAPK8IP1", "NCK1", "NCK2", "NCKAP1L", "PDCD1LG2", "PLA2G2A", "PLA2G2D", "PLA2G2E", "PLA2G2F", "PLA2G5", "PNP", "PPP3CA", "PRKAR1A", "PRNP", "PTPRC", "PYCARD", "RASAL3", "RC3H1", "RIPK3", "RPS3", "SCRIB", "SDC4", "SFTPD", "SH3RF1", "SHH", "SLC4A2", "SLC7A1", "SPN", "TFRC", "TGFBR2", "TMEM131L", "TMIGD2", "TNFRSF13C", "TNFRSF14", "TNFRSF1B", "TNFRSF21", "TNFSF18", "TNFSF4", "TNFSF8", "TNFSF9", "TWSG1", "TYK2", "VCAM1", "VSIG4", "VSIR", "VTCN1", "XCL1", "ZBTB7B", "ZP3", "ZP4" ] }, "position": { "x": 2454.4485993556127, "y": 617.6555360455378, "id": "3f4eedfb-536c-4748-a3c7-d3c372aa59e7", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "9c6f1df0-2d01-4920-aff8-3fa744c1f786", "name": [ "VITAMIN B12 METABOLISM%WIKIPATHWAYS_20240410%WP1533%HOMO SAPIENS" ], "description": [ "Vitamin B12 metabolism" ], "pvalue": 0.0042, "gs_type": null, "gs_size": 44, "padj": 0.0447, "mcode_cluster_id": null, "NES": -1.7012, "genes": [ "ABCA1", "ALB", "APOB", "APOE", "CBLIF", "CCL2", "CCL5", "CRP", "CTH", "CUBN", "DKFZp564M2422", "DKFZp727E011", "F2", "F7", "HBA2", "HBB", "HEL-S-44", "HEL-S-51e", "IF2F", "IL1B", "IL6", "INS", "INSR", "LDLR", "MAT1A", "MCEE", "MMAB", "MPO", "MTR", "MTRR", "NFKB1", "NFKB2", "PLAT", "PLG", "RELA", "SAA1", "SAA2", "SAA4", "SCARB1", "SERPINA3", "SERPINE1", "TCN1", "TCN2", "TNF" ] }, "position": { "x": 2800.596816440608, "y": 1801.8587965586644, "id": "9c6f1df0-2d01-4920-aff8-3fa744c1f786" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "75f7200b-bbf1-4975-a815-1a040bc2b804", "name": [ "ANTIGEN PROCESSING AND PRESENTATION VIA MHC CLASS IB%GOBP%GO:0002475" ], "description": [ "antigen processing and presentation via MHC class Ib" ], "pvalue": 0.0024, "gs_type": null, "gs_size": 22, "padj": 0.031, "mcode_cluster_id": "Cluster 10", "NES": -1.7937, "genes": [ "CD1A", "CD1B", "CD1C", "CD1D", "CD1E", "HFE", "HLA-A", "HLA-B", "HLA-C", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "MICA", "MICB", "RAET1E", "RAET1G", "RAET1L", "TAP2", "ULBP1", "ULBP2", "ULBP3" ] }, "position": { "x": 2001.6069030808687, "y": 1007.4140306763023, "id": "75f7200b-bbf1-4975-a815-1a040bc2b804", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "e318a8ac-a4b4-43c9-8261-8c4f01b48e0d", "name": [ "TRANSFERRIN ENDOCYTOSIS AND RECYCLING%REACTOME DATABASE ID RELEASE 81%917977" ], "description": [ "Transferrin endocytosis and recycling" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 31, "padj": 0.0051, "mcode_cluster_id": "Cluster 25", "NES": 1.9754, "genes": [ "ATP6AP1", "ATP6V0A1", "ATP6V0A2", "ATP6V0A4", "ATP6V0B", "ATP6V0C", "ATP6V0D1", "ATP6V0D2", "ATP6V0E1", "ATP6V0E2", "ATP6V1A", "ATP6V1B1", "ATP6V1B2", "ATP6V1C1", "ATP6V1C2", "ATP6V1D", "ATP6V1E1", "ATP6V1E2", "ATP6V1F", "ATP6V1G1", "ATP6V1G2", "ATP6V1G3", "ATP6V1H", "HFE", "MCOLN1", "STEAP3", "STEAP4", "TCIRG1", "TF", "TFR2", "TFRC" ] }, "position": { "x": 1297.2241574958484, "y": 82.55651427548867, "id": "e318a8ac-a4b4-43c9-8261-8c4f01b48e0d", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "d2dd6367-2a41-4ac8-af45-50fe5a97d220", "name": [ "REGULATION OF DEFENSE RESPONSE%GOBP%GO:0031347" ], "description": [ "regulation of defense response" ], "pvalue": 1.9629e-13, "gs_type": null, "gs_size": 671, "padj": 2.1544e-11, "mcode_cluster_id": "Cluster 6", "NES": -1.9207, "genes": [ "A2M", "ABCC1", "ABHD17A", "ACE2", "ACOD1", "ADAM8", "ADAMTS12", "ADIPOQ", "AGER", "AGT", "AGTR1", "AHR", "AHSG", "AIM2", "AKIRIN2", "AKNA", "AKT1", "ALOX15", "ALOX5", "ALPK1", "ANKRD17", "ANXA1", "AOAH", "AP1G1", "APCS", "APOA1", "APOBEC3F", "APOBEC3G", "APOE", "APP", "APPL1", "APPL2", "AREL1", "ARG1", "ARMH4", "ARNT", "ARRB2", "ATG12", "ATG5", "AURKB", "BANF1", "BCL10", "BCL6", "BECN1", "BIRC2", "BIRC3", "BPIFB1", "BRCC3", "BRD4", "BST1", "BTK", "C1QBP", "C1QTNF3", "C2CD4A", "C2CD4B", "CACTIN", "CADM1", "CALHM2", "CAMK2N1", "CARD16", "CARD8", "CASP1", "CASP12", "CASP4", "CASP5", "CASP6", "CASP8", "CAV1", "CCL1", "CCL3", "CCL5", "CCN3", "CCN4", "CCR2", "CCR7", "CD14", "CD160", "CD1D", "CD200", "CD200R1", "CD226", "CD274", "CD300A", "CD300LF", "CD36", "CD47", "CD81", "CDC37", "CDH5", "CEACAM1", "CEBPA", "CELF1", "CEP63", "CFH", "CGAS", "CHUK", "CLEC12B", "CLEC4E", "CLEC6A", "CLEC7A", "CLPB", "CMA1", "CNOT7", "COLEC10", "COLEC11", "COLEC12", "CPT1A", "CPTP", "CR1", "CREB3L3", "CREBBP", "CRTAM", "CSNK1A1", "CST7", "CTSS", "CX3CL1", "CXCL17", "CYBA", "CYLD", "DAB2IP", "DAGLA", "DAGLB", "DCST1", "DDT", "DDX3X", "DDX60", "DEFB114", "DHX33", "DHX58", "DHX9", "DNASE1", "DNASE1L3", "DTX3L", "DTX4", "ECSIT", "EIF2AK2", "EIF2AK4", "EIF4E2", "ELANE", "ELF4", "ELMOD2", "EMILIN1", "EMILIN2", "ENPP3", "EP300", "EPG5", "ERAP1", "ERBIN", "EREG", "ETS1", "EXTL3", "F12", "F2RL1", "FADD", "FAM3A", "FBXL2", "FCGR2B", "FCN1", "FCN2", "FCN3", "FCRL3", "FEM1A", "FFAR2", "FFAR3", "FFAR4", "FGR", "FLOT1", "FLOT2", "FNDC4", "FOXP1", "FPR2", "FURIN", "FUT7", "FXR1", "FYN", "GATA3", "GATA6", "GBA1", "GBP2", "GBP5", "GDI1", "GFI1", "GGT1", "GGT2P", "GGT3P", "GHRL", "GHSR", "GIGYF2", "GIT1", "GPATCH3", "GPER1", "GPR108", "GPR31", "GPR4", "GPRC5B", "GPS2", "GPSM3", "GRAMD4", "GRN", "GRP", "GRPR", "GSDMD", "GSTP1", "HCK", "HERC5", "HEXIM1", "HLA-A", "HLA-B", "HLA-DRB1", "HLA-E", "HLA-F", "HLA-G", "HMGB1", "HSP90AA1", "HSPA1A", "HSPA1B", "HSPD1", "HYAL2", "IFI16", "IFI35", "IFIH1", "IFNB1", "IFNG", "IFNK", "IFNLR1", "IGF1", "IKBKB", "IKBKE", "IL10", "IL10RA", "IL12A", "IL12B", "IL12RB1", "IL13", "IL15", "IL16", "IL17RA", "IL18", "IL1B", "IL1R1", "IL1RL2", "IL2", "IL20", "IL21", "IL22", "IL22RA1", "IL23A", "IL23R", "IL33", "IL37", "IL4", "IL6", "IL6ST", "ILRUN", "INAVA", "INS", "IPO5", "IRAK1", "IRAK2", "IRAK3", "IRAK4", "IRF1", "IRF3", "IRF7", "IRGM", "ISG15", "ISL1", "ITCH", "JAK2", "KARS1", "KIR2DL4", "KIR2DS2", "KLF4", "KLK3", "KLK5", "KLK7", "KLKB1", "KLRB1", "KLRC1", "KLRC2", "KLRC3", "KLRC4", "KLRD1", "KLRK1", "LACC1", "LAMP1", "LBP", "LDLR", "LEP", "LETMD1", "LGALS1", "LGALS2", "LGALS9", "LGR4", "LILRA2", "LILRA4", "LILRA5", "LILRB1", "LPCAT3", "LPL", "LRCH4", "LRFN5", "LRP8", "LRRC14", "LRRC19", "LRSAM1", "LTF", "LY96", "LYAR", "LYN", "LYPLAL1", "MACIR", "MAP2K6", "MAP3K7", "MAPK13", "MAPK14", "MAPK7", "MAPK8", "MAPKAPK2", "MAPKAPK3", "MAPKBP1", "MARK4", "MATR3", "MAVS", "MBL2", "MDK", "MEF2C", "MEFV", "METRNL", "METTL3", "MFHAS1", "MGLL", "MGST2", "MICA", "MICB", "MKRN2", "MMP26", "MMP3", "MMP8", "MMP9", "MMRN2", "MNDA", "MT-RNR2", "MUL1", "MVK", "MYD88", "N4BP1", "NAGK", "NAIP", "NAPEPLD", "NCR1", "NCR3", "NECTIN2", "NEK7", "NFE2L2", "NFKBIA", "NFKBIL1", "NFKBIZ", "NINJ1", "NKG7", "NLRC3", "NLRC4", "NLRC5", "NLRP1", "NLRP10", "NLRP11", "NLRP12", "NLRP13", "NLRP14", "NLRP2", "NLRP2B", "NLRP3", "NLRP4", "NLRP5", "NLRP6", "NLRP7", "NLRP8", "NLRP9", "NMI", "NOD1", "NOD2", "NONO", "NOP53", "NPAS2", "NPLOC4", "NR1D1", "NR1D2", "NR1H2", "NR1H3", "NR1H4", "NT5C2", "NUPR1", "OAS1", "OAS3", "OASL", "OPTN", "OSM", "OSMR", "OTOP1", "OTUD4", "OTULIN", "PAK1", "PAK2", "PAK3", "PARK7", "PARP1", "PARP14", "PARP9", "PCBP2", "PDCD4", "PDE2A", "PGC", "PHB1", "PHB2", "PIK3AP1", "PIK3R1", "PIK3R6", "PIM1", "PJA2", "PLA2G2A", "PLA2G2D", "PLA2G3", "PLA2G5", "PLA2G7", "PLCG1", "PLCG2", "PLK2", "PLSCR1", "POLR3B", "POLR3C", "POLR3D", "POLR3F", "POLR3G", "PPARA", "PPARD", "PPARG", "PPM1B", "PPP1R13L", "PPP6C", "PPT1", "PQBP1", "PRKCD", "PRKCE", "PRKD1", "PRKDC", "PROC", "PSMA6", "PSPC1", "PTGER3", "PTGER4", "PTGES", "PTGIS", "PTGS2", "PTPN1", "PTPN11", "PTPN2", "PTPN22", "PTPN6", "PTPRC", "PTPRS", "PUM1", "PUM2", "PVR", "PYCARD", "PYDC1", "PYDC2", "PYDC5", "PYHIN1", "RAB11FIP2", "RAB7B", "RAET1E", "RAET1G", "RASGRP1", "RASGRP4", "RB1", "RBM14", "RBM47", "REG3A", "REG3G", "RELA", "RFTN1", "RHBDF2", "RIGI", "RIOK3", "RIPK1", "RIPK2", "RNF115", "RNF125", "RNF135", "RNF144A", "RNF170", "RNF185", "RNF216", "RNF26", "RNF31", "RNF34", "RORA", "RPS19", "RPS6KA3", "RSAD2", "RTN4", "S100A12", "S100A14", "S100A8", "S100A9", "SAA1", "SAMHD1", "SBNO2", "SCARA3", "SCIMP", "SEC14L1", "SELE", "SELENOS", "SEMA7A", "SERPINB4", "SERPINB9", "SERPINE1", "SERPING1", "SETD4", "SETD6", "SFN", "SFPQ", "SH2D1B", "SHARPIN", "SHPK", "SIGLEC10", "SIGLEC16", "SIRPA", "SLAMF6", "SLAMF8", "SLC15A2", "SLC15A3", "SLC15A4", "SLC19A1", "SLC39A8", "SLC46A2", "SMIM30", "SMPDL3B", "SNCA", "SNX4", "SNX6", "SPATA2", "SPHK1", "SPI1", "SQSTM1", "SRC", "STAP1", "STAT1", "STAT2", "STAT3", "STING1", "STMP1", "SUSD4", "SYK", "SYT11", "TAB1", "TAFA3", "TARBP2", "TASL", "TAX1BP1", "TBK1", "TEK", "TGFB1", "TICAM1", "TICAM2", "TIFA", "TIRAP", "TKFC", "TLR1", "TLR10", "TLR2", "TLR3", "TLR4", "TLR5", "TLR6", "TLR7", "TLR8", "TLR9", "TMSB4X", "TNC", "TNF", "TNFAIP3", "TNFAIP6", "TNFAIP8L2", "TNFRSF11A", "TNFRSF1A", "TNFRSF1B", "TNFSF11", "TNFSF4", "TNIP1", "TNIP2", "TNIP3", "TOMM70", "TRADD", "TRAF3", "TRAF3IP1", "TRAF3IP2", "TRAF3IP3", "TRAF6", "TRAFD1", "TREM2", "TREML4", "TREX1", "TRIL", "TRIM11", "TRIM15", "TRIM21", "TRIM22", "TRIM25", "TRIM3", "TRIM31", "TRIM32", "TRIM41", "TRIM44", "TRIM45", "TRIM5", "TRIM56", "TRIM6", "TRIM62", "TRIM65", "TSLP", "TSPAN6", "TTBK1", "TTLL12", "TXK", "TYRO3", "TYROBP", "UBE2K", "UFD1", "UFL1", "UNC93B1", "USP15", "USP17L2", "USP18", "USP27X", "USP29", "USP38", "USP50", "VAMP2", "VAMP3", "VAMP7", "VAMP8", "VPS35", "VSIG4", "WDFY1", "WNT5A", "XCL1", "XIAP", "XRCC5", "XRCC6", "YES1", "YTHDF2", "YTHDF3", "YWHAE", "YWHAZ", "ZBP1", "ZC3H12A", "ZCCHC3", "ZDHHC1", "ZDHHC11", "ZDHHC12", "ZDHHC18", "ZDHHC3", "ZDHHC4", "ZDHHC5", "ZDHHC9", "ZMPSTE24", "ZNFX1", "ZNRF1", "ZNRF4", "ZP3" ] }, "position": { "x": 1852.150901174018, "y": 427.7395453321687, "id": "d2dd6367-2a41-4ac8-af45-50fe5a97d220", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "e275df20-5d0c-43e1-ac7a-4f1e1ab7a717", "name": [ "INTERLEUKIN-10 SIGNALING%REACTOME DATABASE ID RELEASE 81%6783783" ], "description": [ "Interleukin-10 signaling" ], "pvalue": 0.0005, "gs_type": null, "gs_size": 45, "padj": 0.0089, "mcode_cluster_id": null, "NES": -1.8713, "genes": [ "CCL19", "CCL2", "CCL20", "CCL22", "CCL3", "CCL3L3", "CCL4", "CCL5", "CCR1", "CCR2", "CCR5", "CD80", "CD86", "CSF1", "CSF2", "CSF3", "CXCL1", "CXCL10", "CXCL2", "CXCL8", "FCER2", "FPR1", "ICAM1", "IL10", "IL10RA", "IL10RB", "IL12A", "IL12B", "IL18", "IL1A", "IL1B", "IL1R1", "IL1R2", "IL1RN", "IL6", "JAK1", "LIF", "PTAFR", "PTGS2", "STAT3", "TIMP1", "TNF", "TNFRSF1A", "TNFRSF1B", "TYK2" ] }, "position": { "x": 1654.5, "y": 2272.9446642487483, "id": "e275df20-5d0c-43e1-ac7a-4f1e1ab7a717" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "1a3f3678-704d-440c-be34-e0baa9b67300", "name": [ "HALLMARK_IL6_JAK_STAT3_SIGNALING%MSIGDBHALLMARK%HALLMARK_IL6_JAK_STAT3_SIGNALING" ], "description": [ "HALLMARK_IL6_JAK_STAT3_SIGNALING" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 79, "padj": 0.0017, "mcode_cluster_id": null, "NES": -1.9185, "genes": [ "A2M", "ACVR1B", "ACVRL1", "BAK1", "CBL", "CCL7", "CCR1", "CD14", "CD36", "CD44", "CNTFR", "CSF1", "CSF2", "CSF2RA", "CSF2RB", "CSF3R", "CXCL1", "CXCL11", "CXCL13", "CXCL3", "CXCL9", "DNTT", "EBI3", "FAS", "GRB2", "HAX1", "HMOX1", "IFNAR1", "IFNGR1", "IFNGR2", "IL10RB", "IL12RB1", "IL13RA1", "IL15RA", "IL17RA", "IL17RB", "IL18R1", "IL1B", "IL1R1", "IL1R2", "IL2RA", "IL2RG", "IL3RA", "IL6", "IL6ST", "IL7", "IL9R", "INHBE", "IRF1", "IRF9", "ITGA4", "ITGB3", "JUN", "LEPR", "LTB", "LTBR", "MAP3K8", "MYD88", "OSMR", "PDGFC", "PF4", "PIK3R5", "PIM1", "PLA2G2A", "PTPN1", "PTPN11", "SOCS1", "SOCS3", "STAM2", "STAT1", "STAT2", "STAT3", "TGFB1", "TNF", "TNFRSF12A", "TNFRSF1A", "TNFRSF1B", "TNFRSF21", "TYK2" ] }, "position": { "x": 1808.5, "y": 2272.9446642487483, "id": "1a3f3678-704d-440c-be34-e0baa9b67300" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "8b3cc6ed-57e2-4668-a15d-530a3ad55212", "name": [ "REGULATION OF ENDOPEPTIDASE ACTIVITY%GOBP%GO:0052548" ], "description": [ "regulation of endopeptidase activity" ], "pvalue": 0.0007, "gs_type": null, "gs_size": 205, "padj": 0.0119, "mcode_cluster_id": "Cluster 40", "NES": -1.5132, "genes": [ "A2ML1", "ACER2", "ACVR1C", "AGER", "AIFM1", "AIM2", "AKT1", "ANP32B", "ANXA8", "APAF1", "APH1A", "APH1B", "AQP1", "ARL6IP1", "ARL6IP5", "ASPH", "ATP13A2", "ATP2A3", "AVP", "BAD", "BAK1", "BCL10", "BCL2L10", "BCL2L12", "BCL2L13", "BIN1", "BIRC2", "BIRC3", "BLID", "BOK", "CAAP1", "CARD16", "CARD18", "CARD8", "CARD9", "CASC2", "CASP1", "CASP8", "CASP8AP2", "CASP9", "CAST", "CD44", "CDKN2D", "CLEC7A", "COL4A3", "CR1", "CRB2", "CSN2", "CSNK2A1", "CTSD", "CYFIP2", "DAP", "DAPK1", "DDX3X", "DIABLO", "DLC1", "DNAJB6", "DPEP1", "EFNA1", "EFNA3", "EGLN3", "EIF2AK3", "EPHA4", "EPHA7", "F2R", "F3", "FABP1", "FADD", "FAM162A", "FAS", "FASLG", "FETUB", "FNIP1", "FOXL2", "FURIN", "FYN", "GAPDH", "GAS6", "GPER1", "GPX1", "GRAMD4", "GRIN2A", "GRIN2B", "GSN", "HIP1", "HIP1R", "HMGB1", "HSPD1", "HSPE1", "HTRA2", "IFI16", "IFI6", "IFT57", "IGBP1", "JAK2", "KLF4", "LAMP3", "LAMTOR5", "LAPTM5", "LCK", "LGALS9", "LGMN", "LTF", "LYN", "MAGEA3", "MALT1", "MAP2K5", "MAP3K5", "MAPT", "MBP", "MEFV", "MMP9", "MTCH1", "MUL1", "MYC", "NAIP", "NCSTN", "NGFR", "NKX3-1", "NLRC4", "NLRP1", "NLRP12", "NOD1", "NODAL", "NOL3", "NRDC", "PAK2", "PARK7", "PAX2", "PCID2", "PDCD2", "PDCD5", "PDCD6", "PERP", "PIDD1", "PIH1D1", "PLAUR", "PMAIP1", "PPARG", "PPM1F", "PRELID1", "PRR7", "PSENEN", "PSMA3", "PSMB8", "PSMB9", "PYCARD", "RACK1", "RAF1", "RECK", "REST", "RFFL", "RFPL1", "RIPK2", "RNF34", "ROBO1", "RPS27L", "RPS3", "RPS6KA1", "RPS6KA3", "S100A8", "S100A9", "SEMG1", "SEMG2", "SENP1", "SERPINB1", "SERPINB13", "SERPINB3", "SERPINB6", "SERPINB8", "SERPINB9", "SERPINE1", "SH3RF1", "SIAH2", "SIRT1", "SLC22A2", "SMAD3", "SNCA", "SOX2", "SOX7", "SPOCK1", "SPOCK2", "SPOCK3", "SRC", "ST18", "ST20", "STAT3", "SYK", "TBC1D10A", "THBS1", "TIMP1", "TIMP3", "TNF", "TNFSF10", "TNFSF15", "TRIAP1", "TTBK1", "USP47", "USP50", "VCP", "VEGFA", "VSIR", "VTN", "XDH", "XIAP" ] }, "position": { "x": 795.0733419551175, "y": 1843.802269231784, "id": "8b3cc6ed-57e2-4668-a15d-530a3ad55212", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "ba75adcc-af38-421e-9edc-c60a2aff0de9", "name": [ "RESOLUTION OF SISTER CHROMATID COHESION%REACTOME%R-HSA-2500257.5" ], "description": [ "Resolution of Sister Chromatid Cohesion" ], "pvalue": 0.0007, "gs_type": null, "gs_size": 104, "padj": 0.0117, "mcode_cluster_id": "Cluster 15", "NES": -1.6187, "genes": [ "AHCTF1", "B9D2", "BIRC5", "BUB1", "BUB1B", "BUB3", "CCNB1", "CCNB2", "CDC20", "CDCA5", "CDCA8", "CDK1", "CENPA", "CENPC", "CENPE", "CENPF", "CENPH", "CENPI", "CENPK", "CENPL", "CENPM", "CENPN", "CENPO", "CENPP", "CENPQ", "CENPS", "CENPT", "CENPU", "CKAP5", "CLASP1", "CLASP2", "CLIP1", "DSN1", "DYNC1H1", "DYNC1I1", "DYNC1I2", "DYNC1LI1", "DYNC1LI2", "DYNLL1", "DYNLL2", "ERCC6L", "FIRRM", "INCENP", "ITGB3BP", "KIF18A", "KIF2A", "KIF2B", "KIF2C", "KNL1", "KNTC1", "MAD1L1", "MAD2L1", "MAPRE1", "MIS12", "NDC80", "NDE1", "NDEL1", "NSL1", "NUDC", "NUF2", "NUP107", "NUP133", "NUP160", "NUP37", "NUP43", "NUP85", "PAFAH1B1", "PDS5A", "PDS5B", "PLK1", "PMF1", "PPP1CC", "PPP2CA", "PPP2CB", "PPP2R1A", "PPP2R1B", "PPP2R5A", "PPP2R5B", "PPP2R5C", "PPP2R5D", "PPP2R5E", "RAD21", "RANBP2", "RANGAP1", "RCC2", "RPS27", "SEC13", "SGO1", "SGO2", "SKA1", "SKA2", "SMC1A", "SMC3", "SPC24", "SPC25", "SPDL1", "STAG1", "STAG2", "TAOK1", "WAPL", "XPO1", "ZW10", "ZWILCH", "ZWINT" ] }, "position": { "x": 501.84114608703635, "y": 1113.4016766462537, "id": "ba75adcc-af38-421e-9edc-c60a2aff0de9", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "17e913a2-8ddf-43d0-b36d-f6ddd9c4624e", "name": [ "REGULATION OF AUTOPHAGY%GOBP%GO:0010506" ], "description": [ "regulation of autophagy" ], "pvalue": 0.0008, "gs_type": null, "gs_size": 334, "padj": 0.0138, "mcode_cluster_id": "Cluster 41", "NES": 1.4047, "genes": [ "ABL1", "ABL2", "ACER2", "ADRB2", "AKT1", "AMBRA1", "ATF6", "ATG101", "ATG12", "ATG13", "ATG14", "ATG2A", "ATG5", "ATM", "ATP13A2", "ATP6V0A1", "ATP6V0A2", "ATP6V0B", "ATP6V0C", "ATP6V0D1", "ATP6V0D2", "ATP6V0E1", "ATP6V0E2", "ATP6V1A", "ATP6V1B1", "ATP6V1B2", "ATP6V1C1", "ATP6V1C2", "ATP6V1D", "ATP6V1E1", "ATP6V1E2", "ATP6V1G1", "ATP6V1G2", "ATP6V1H", "BAD", "BAG3", "BCL2", "BECN1", "BMF", "BNIP3", "BNIP3L", "BOK", "C9orf72", "CALCOCO2", "CAMKK2", "CAPN1", "CAPNS1", "CASP3", "CCNY", "CDK16", "CDK5", "CDK5R1", "CDK5RAP3", "CERS1", "CISD2", "CLEC16A", "CLN3", "CPTP", "CSNK2A1", "CSNK2A2", "CTSA", "DAP", "DAPK1", "DAPK2", "DAPK3", "DAPL1", "DCAF12", "DCN", "DDIT3", "DDRGK1", "DELE1", "DEPDC5", "DEPP1", "DEPTOR", "DHRSX", "DNM1L", "DRAM1", "DRAM2", "EEF1A1", "EEF1A2", "EIF2AK1", "EIF4E", "EIF4G1", "EIF4G2", "EIF4G3", "ELAPOR1", "ENDOG", "EP300", "EPM2A", "ERFE", "ERN1", "EXOC1", "EXOC4", "EXOC7", "EXOC8", "FBXL2", "FBXO7", "FBXW7", "FEZ1", "FEZ2", "FKBP8", "FLCN", "FOXK1", "FOXK2", "FOXO1", "FOXO3", "FYCO1", "FZD5", "GAPDH", "GBA1", "GFAP", "GNAI3", "GOLGA2", "GPR137", "GPR137B", "GPSM1", "GSK3A", "GSK3B", "HAX1", "HDAC6", "HGF", "HMGB1", "HSPB1", "HSPB8", "HTRA2", "HTT", "IFI16", "IFNB1", "IFNG", "IKBKG", "IL10", "IL10RA", "IL4", "IRGM", "ITPR1", "KAT5", "KAT8", "KDM4A", "KDR", "KEAP1", "KIF25", "KLHL22", "LACRT", "LAMP3", "LARP1", "LEP", "LEPR", "LRRK2", "LRSAM1", "LYPLA1", "LZTS1", "MAGEA3", "MAGEA6", "MAP3K7", "MAPK15", "MAPK8", "MAPT", "MCL1", "MEFV", "MET", "MID2", "MLST8", "MOAP1", "MTCL2", "MTDH", "MTM1", "MTMR3", "MTMR4", "MTMR8", "MTMR9", "MTOR", "NEDD4", "NOD2", "NPRL2", "NPRL3", "NRBP2", "NUPR1", "OPTN", "ORMDL3", "OSBPL7", "PAFAH1B2", "PARK7", "PARL", "PHF23", "PIK3C2A", "PIK3C3", "PIK3CA", "PIK3CB", "PIK3R2", "PIK3R4", "PIM2", "PINK1", "PIP4K2A", "PIP4K2B", "PIP4K2C", "PLEKHF1", "PLK2", "PLK3", "PRKAA1", "PRKAA2", "PRKACA", "PRKD1", "PRKN", "PSAP", "PTPN22", "QSOX1", "RAB39B", "RAB3GAP1", "RAB3GAP2", "RAB8A", "RALB", "RASIP1", "RB1CC1", "RFPL1", "RFPL2", "RFPL3", "RFPL4A", "RFPL4AL1", "RHEB", "RMC1", "RNF152", "RNF31", "ROCK1", "RPTOR", "RRAGA", "RRAGB", "RRAGC", "RRAGD", "RUBCN", "RUFY4", "SCFD1", "SCOC", "SEC22B", "SESN1", "SESN2", "SESN3", "SETD2", "SH3BP4", "SH3GLB1", "SIRT1", "SIRT2", "SLC25A4", "SLC25A5", "SLC35D3", "SMCR8", "SNCA", "SNRNP70", "SNX18", "SNX30", "SNX32", "SNX4", "SNX5", "SNX6", "SNX7", "SPTLC1", "SPTLC2", "SQSTM1", "SREBF1", "SREBF2", "STAT3", "STING1", "STK11", "STK38L", "STUB1", "SUPT5H", "SVIP", "TAB2", "TAB3", "TBC1D14", "TBC1D25", "TBK1", "TECPR1", "TFEB", "TICAM1", "TLK2", "TMEM39A", "TMEM59", "TOM1", "TP53INP1", "TPCN1", "TPCN2", "TREM2", "TRIB3", "TRIM13", "TRIM21", "TRIM22", "TRIM23", "TRIM27", "TRIM32", "TRIM34", "TRIM38", "TRIM5", "TRIM58", "TRIM6", "TRIM65", "TRIM68", "TRIM8", "TSC1", "TSC2", "UBE2A", "UBQLN1", "UBQLN2", "UBQLN4", "UBR4", "UCHL1", "UFL1", "ULK1", "ULK2", "ULK3", "USP10", "USP13", "USP20", "USP33", "USP36", "UVRAG", "VDAC1", "VHL", "VPS13C", "VPS13D", "VPS26A", "VPS26B", "VPS29", "VPS35", "WAC", "WASHC1", "WDR24", "WDR41", "WDR45", "WDR6", "WIPI1", "WNK1", "ZC3H12A", "ZDHHC19", "ZKSCAN3" ] }, "position": { "x": 4005.768844987134, "y": 1850.2039452345598, "id": "17e913a2-8ddf-43d0-b36d-f6ddd9c4624e", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "name": [ "NUCLEAR EVENTS MEDIATED BY NFE2L2%REACTOME DATABASE ID RELEASE 81%9759194" ], "description": [ "Nuclear events mediated by NFE2L2" ], "pvalue": 0.0007, "gs_type": null, "gs_size": 95, "padj": 0.012, "mcode_cluster_id": "Cluster 1", "NES": -1.6638, "genes": [ "ABCC1", "ABCC3", "ABCF2", "ABCG2", "AREG", "ATF4", "BACH1", "BCL2", "BCL2L1", "BTRC", "CCL2", "CDKN2A", "CREBBP", "CUL1", "EGF", "EP300", "G6PD", "GCLC", "GCLM", "GSK3B", "GSTA1", "GSTA3", "HMOX1", "IDH1", "KEAP1", "MAFG", "MAFK", "ME1", "MYC", "NFE2L2", "NFKB1", "NOTCH1", "NQO1", "PDGFA", "PGD", "PRDX1", "PRKAA2", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMB1", "PSMB10", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSMF1", "RBX1", "RELA", "RPS27A", "SEM1", "SKP1", "SLC7A11", "SOD3", "SP1", "SQSTM1", "SRXN1", "TALDO1", "TKT", "TXN", "TXNRD1", "UBA52", "UBB", "UBC" ] }, "position": { "x": 470.61118035265366, "y": 764.6416955357599, "id": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "a70316a5-8829-494c-b5fd-ac0c30d48383", "name": [ "POSITIVE REGULATION OF LYMPHOCYTE MEDIATED IMMUNITY%GOBP%GO:0002708" ], "description": [ "positive regulation of lymphocyte mediated immunity" ], "pvalue": 0.0021, "gs_type": null, "gs_size": 96, "padj": 0.0284, "mcode_cluster_id": "Cluster 5", "NES": -1.6317, "genes": [ "AP1G1", "B2M", "C17orf99", "CADM1", "CD160", "CD1A", "CD1B", "CD1C", "CD1D", "CD1E", "CD226", "CD55", "CD81", "CLCF1", "CRTAM", "CYRIB", "DENND1B", "FADD", "FBXO38", "FZD5", "HFE", "HLA-A", "HLA-B", "HLA-C", "HLA-DRA", "HLA-DRB1", "HLA-DRB3", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "HMCES", "HSPD1", "IL12A", "IL12B", "IL12RB1", "IL18", "IL18R1", "IL1B", "IL1R1", "IL21", "IL23A", "IL23R", "IL4", "IL6", "KIR2DL4", "KLRC1", "KLRC2", "KLRC3", "KLRC4", "KLRD1", "KLRK1", "KMT5B", "KMT5C", "LAMP1", "MAD2L2", "MALT1", "MAP3K7", "MICA", "MICB", "MR1", "NCR3", "NECTIN2", "NLRP3", "PAXIP1", "PRKCZ", "PVR", "RAET1E", "RAET1G", "RAET1L", "RASGRP1", "RASGRP4", "RIF1", "RSAD2", "SH2D1B", "SHLD1", "SHLD2", "SHLD3", "SLAMF6", "SLC22A13", "STX7", "TBX21", "TFRC", "TGFB1", "TNFSF13", "TNFSF4", "TP53BP1", "TRAF2", "TRAF6", "TREM2", "ULBP1", "ULBP2", "ULBP3", "XCL1", "ZBTB1", "ZP3" ] }, "position": { "x": 2231.3160323270567, "y": 777.6752135121906, "id": "a70316a5-8829-494c-b5fd-ac0c30d48383", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "d8540c26-26c9-4f3c-91da-5db659f587c1", "name": [ "TRANSLATION%GOBP%GO:0006412" ], "description": [ "translation" ], "pvalue": 2.7803e-8, "gs_type": null, "gs_size": 345, "padj": 0.0000019027, "mcode_cluster_id": null, "NES": 1.7655, "genes": [ "AARS1", "AARS2", "ABCE1", "ABCF1", "AGO2", "ANKZF1", "APEH", "ASCC2", "ASCC3", "ASMT", "AURKAIP1", "C6orf52", "CARS1", "CARS2", "CDK5RAP3", "CHCHD1", "COPS5", "DAP3", "DARS1", "DARS2", "DDRGK1", "DDX3X", "DENR", "DHPS", "DHX29", "DIO2", "DRG1", "DRG2", "EARS2", "EEF1A1", "EEF1A1P5", "EEF1A2", "EEF1B2", "EEF1D", "EEF1G", "EEF2", "EEF2K", "EEFSEC", "EIF1", "EIF1AX", "EIF1AY", "EIF2A", "EIF2B1", "EIF2B2", "EIF2B3", "EIF2B4", "EIF2B5", "EIF2D", "EIF2S1", "EIF2S2", "EIF2S3", "EIF2S3B", "EIF3A", "EIF3B", "EIF3C", "EIF3CL", "EIF3D", "EIF3E", "EIF3F", "EIF3G", "EIF3H", "EIF3I", "EIF3J", "EIF3K", "EIF3L", "EIF3M", "EIF4A1", "EIF4A2", "EIF4E", "EIF4E1B", "EIF4E2", "EIF4E3", "EIF4EBP2", "EIF4G1", "EIF4G2", "EIF4G3", "EIF5A", "EIF5A2", "EIF5AL1", "EIF5B", "ELAC1", "EPRS1", "ETF1", "FARS2", "FARSA", "FARSB", "FASTKD2", "FAU", "FTSJ1", "GADD45GIP1", "GARS1", "GATB", "GATC", "GCN1", "GFM1", "GFM2", "GIGYF2", "GSPT1", "GSPT2", "GTPBP1", "GTPBP2", "HARS1", "HARS2", "HBS1L", "IARS1", "IARS2", "IGF2BP3", "KARS1", "KLHDC10", "LARP1", "LARS1", "LARS2", "LTN1", "LTO1", "MARS1", "MARS2", "MCTS1", "MCTS2", "MIF4GD", "MRPL1", "MRPL10", "MRPL11", "MRPL12", "MRPL13", "MRPL14", "MRPL15", "MRPL16", "MRPL17", "MRPL18", "MRPL19", "MRPL2", "MRPL20", "MRPL21", "MRPL22", "MRPL23", "MRPL24", "MRPL27", "MRPL28", "MRPL3", "MRPL30", "MRPL32", "MRPL33", "MRPL34", "MRPL35", "MRPL36", "MRPL37", "MRPL38", "MRPL39", "MRPL4", "MRPL40", "MRPL41", "MRPL42", "MRPL43", "MRPL44", "MRPL45", "MRPL46", "MRPL47", "MRPL48", "MRPL49", "MRPL50", "MRPL51", "MRPL52", "MRPL53", "MRPL54", "MRPL55", "MRPL57", "MRPL58", "MRPL9", "MRPS10", "MRPS11", "MRPS12", "MRPS14", "MRPS15", "MRPS16", "MRPS17", "MRPS18A", "MRPS18B", "MRPS18C", "MRPS2", "MRPS21", "MRPS22", "MRPS23", "MRPS24", "MRPS25", "MRPS26", "MRPS27", "MRPS28", "MRPS30", "MRPS31", "MRPS33", "MRPS34", "MRPS35", "MRPS5", "MRPS6", "MRPS7", "MRPS9", "MRRF", "MTG1", "MTIF2", "MTIF3", "MTRES1", "MTRF1", "MTRF1L", "MTRFR", "NARS1", "NARS2", "NCBP1", "NCBP2", "NDUFA7", "NEMF", "PABPC4", "PAIP1", "PARS2", "PELO", "PTCD3", "PTRH1", "QARS1", "QRSL1", "RACK1", "RARS1", "RARS2", "RBM4", "RCHY1", "RNF14", "RNF25", "RPL10", "RPL10A", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL22L1", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL26L1", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL3L", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP0P6", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS6KB2", "RPS7", "RPS8", "RPS9", "RPSA", "RRBP1", "RWDD1", "SARS1", "SARS2", "SAYSD1", "SECISBP2", "SECISBP2L", "SELENOT", "SEPSECS", "SKIC2", "SKIC3", "SKIC8", "SLBP", "SRBD1", "TARS1", "TARS2", "TARS3", "TCF25", "TNIP1", "TRNAU1AP", "TRNT1", "TSFM", "TUFM", "UBA52", "UFL1", "USP10", "VARS1", "VARS2", "WARS1", "WARS2", "YARS1", "YARS2", "ZAR1", "ZAR1L", "ZC3H15", "ZNF598" ] }, "position": { "x": 807.0138228584213, "y": 406.63618189604756, "id": "d8540c26-26c9-4f3c-91da-5db659f587c1" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "43717905-a39c-428a-8cb1-813cf4dd0447", "name": [ "PYRUVATE METABOLIC PROCESS%GOBP%GO:0006090" ], "description": [ "pyruvate metabolic process" ], "pvalue": 0.0038, "gs_type": null, "gs_size": 54, "padj": 0.0417, "mcode_cluster_id": "Cluster 4", "NES": 1.6818, "genes": [ "ADPGK", "ALDOA", "ALDOB", "ALDOC", "DLAT", "DLD", "ENO1", "ENO2", "ENO3", "ENO4", "FOXK1", "FOXK2", "GAPDH", "GAPDHS", "GCK", "GPI", "HK1", "HK2", "HK3", "HKDC1", "HOGA1", "LDHA", "LDHAL6A", "LDHAL6B", "LDHB", "LDHC", "ME1", "ME2", "ME3", "PC", "PCK1", "PCK2", "PDHA1", "PDHA2", "PDHB", "PDHX", "PFKFB1", "PFKFB2", "PFKL", "PFKM", "PFKP", "PGAM1", "PGAM2", "PGAM4", "PGK1", "PGK2", "PGM1", "PKLR", "PKM", "SDS", "SRR", "TPI1", "UCP2", "VDAC1" ] }, "position": { "x": 3674.2704350702993, "y": 1517.2000051140517, "id": "43717905-a39c-428a-8cb1-813cf4dd0447", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "f3872ef4-52f8-4ad8-b1bc-319721e3d0c3", "name": [ "VASCULATURE DEVELOPMENT%GOBP%GO:0001944" ], "description": [ "vasculature development" ], "pvalue": 0.0023, "gs_type": null, "gs_size": 268, "padj": 0.03, "mcode_cluster_id": null, "NES": 1.4285, "genes": [ "AAMP", "ACTA2", "ACTG1", "ACVR2B", "ACVRL1", "ADAM8", "ADAMTS9", "ADGRA2", "ADGRG1", "ADIPOR2", "ADM", "ADM2", "ADTRP", "AGGF1", "AHR", "AKT1", "AMHR2", "AMOT", "AMOTL1", "AMOTL2", "ANG", "ANGPT1", "ANGPT2", "ANGPTL3", "ANXA2", "APELA", "APLN", "APLNR", "APOD", "APOLD1", "ATP5F1B", "ATP5IF1", "ATP7A", "BMP2", "BMP4", "BMPER", "BMPR1A", "BMPR2", "C1GALT1", "CALCRL", "CALD1", "CASP8", "CAV1", "CCBE1", "CCL2", "CCM2", "CCN3", "CD34", "CDH13", "CEACAM1", "CFC1", "CFC1B", "COL18A1", "COL1A1", "COL1A2", "COL27A1", "COL4A1", "CRIPTO", "CRIPTO3", "CTNNB1", "CUL7", "CXCL8", "CYP1B1", "DLL1", "DLL4", "E2F7", "E2F8", "EFEMP2", "EFNB2", "EGF", "EGFL7", "EGR1", "EGR3", "EIF2AK3", "ENG", "ENPEP", "EPGN", "EPHA1", "EPHB1", "EPHB2", "EPHB3", "EPHB4", "ERAP1", "ERRFI1", "ESM1", "FBXW7", "FGF2", "FGFR2", "FLT1", "FLT4", "FOLR1", "FOXC2", "FOXF1", "FOXH1", "FOXS1", "FZD4", "GAB1", "GATA2", "GATA6", "GDF2", "GJA5", "GLMN", "GPC3", "GPLD1", "GPR15", "GREM1", "HAND1", "HAS2", "HECTD1", "HES1", "HEY1", "HEY2", "HMOX1", "HOXA1", "HOXA3", "HOXA7", "HOXB13", "HOXB3", "HPGD", "HPSE", "ID1", "IL18", "ITGA2B", "ITGA5", "ITGAV", "ITGB1BP1", "ITGB3", "ITGB8", "JAG1", "JAM3", "JMJD6", "KDR", "LEP", "LEPR", "LGALS8", "LOX", "LOXL2", "LRP1", "LRP2", "LRP5", "LYL1", "MCAM", "MED1", "MEF2C", "MEIS1", "MESP1", "MIA3", "MINAR2", "MYH9", "MYLK", "MYOCD", "NAXE", "NCL", "NDNF", "NF1", "NKX2-5", "NOG", "NOTCH1", "NOTCH4", "NOX1", "NR2F2", "NR4A1", "NRARP", "NRCAM", "NRP1", "NRP2", "OSR1", "OTULIN", "PANK2", "PARVA", "PAX6", "PDCL3", "PDE2A", "PDGFA", "PDGFB", "PDGFRA", "PDGFRB", "PDPN", "PECAM1", "PGF", "PIK3CA", "PIK3R3", "PKD1", "PKD2", "PKNOX1", "PLXDC1", "PLXND1", "PRCP", "PRKX", "PROK2", "PROX1", "PTK2", "PTK2B", "PTPN14", "PTPRB", "PXDN", "QKI", "RAMP1", "RAMP2", "RAPGEF2", "RASA1", "RASIP1", "RBPJ", "RECK", "RNF213", "ROBO1", "ROBO2", "RORA", "RSPO3", "S100A7", "S1PR1", "SAT1", "SCG2", "SEMA3E", "SEMA5A", "SERPINE1", "SERPINF2", "SFRP2", "SHH", "SIRT1", "SLC12A6", "SLC1A1", "SLC2A10", "SLC31A1", "SLIT2", "SMAD7", "SOX17", "SOX18", "SOX4", "SPRED1", "SRF", "SRPK2", "STAB2", "STK11", "STRA6", "SVEP1", "SYK", "TBX1", "TBX2", "TBX20", "TBX4", "TBX5", "TBX6", "TCF21", "TCF7L2", "TEK", "TFAP2B", "TGFB1", "TGFB2", "TGFBI", "TGFBR1", "TGFBR2", "TGFBR3", "THBS1", "THY1", "TIE1", "TMEM204", "TNNI3", "VASH1", "VEGFA", "VEGFB", "VEGFC", "VEGFD", "WIF1", "WNT7B", "WT1", "XBP1", "YJEFN3" ] }, "position": { "x": 3918.539072651805, "y": 2272.9446642487483, "id": "f3872ef4-52f8-4ad8-b1bc-319721e3d0c3" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "17f32632-a94e-49a6-841e-f4a3c079d439", "name": [ "CELL SURFACE PATTERN RECOGNITION RECEPTOR SIGNALING PATHWAY%GOBP%GO:0002752" ], "description": [ "cell surface pattern recognition receptor signaling pathway" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 41, "padj": 0.0056, "mcode_cluster_id": "Cluster 20", "NES": -1.9268, "genes": [ "CD14", "CHUK", "COLEC10", "COLEC11", "ECSIT", "FCN1", "FCN2", "FCN3", "FFAR2", "IRAK1", "IRAK2", "IRAK4", "IRF3", "LBP", "LGALS9", "LY96", "MAP3K7", "MBL2", "MYD88", "NFKBIA", "NMI", "OAS1", "PIK3AP1", "PRKCE", "RAB11FIP2", "RELA", "RIPK2", "S100A14", "SCIMP", "TBK1", "TICAM1", "TICAM2", "TIRAP", "TLR2", "TLR4", "TLR5", "TNIP2", "TNIP3", "TRAF3", "TRAF6", "TRIL" ] }, "position": { "x": 1687.3886540036751, "y": 321.5105881167908, "id": "17f32632-a94e-49a6-841e-f4a3c079d439", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "c59a5518-a5fd-427f-b890-3aebc2bab518", "name": [ "DEACTIVATION OF THE BETA-CATENIN TRANSACTIVATING COMPLEX%REACTOME DATABASE ID RELEASE 81%3769402" ], "description": [ "Deactivation of the beta-catenin transactivating complex" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 42, "padj": 0.0051, "mcode_cluster_id": null, "NES": -1.866, "genes": [ "AKT1", "AKT2", "APC", "ASH2L", "BCL9", "BCL9L", "BTRC", "CBY1", "CHD8", "CTBP1", "CTNNB1", "CTNNBIP1", "HDAC1", "KMT2D", "LEF1", "MEN1", "PYGO1", "PYGO2", "RBBP5", "RPS27A", "SOX13", "SOX17", "SOX2", "SOX3", "SOX4", "SOX6", "SOX7", "SOX9", "SRY", "TCF7", "TCF7L1", "TCF7L2", "TLE1", "TLE2", "TLE3", "TLE4", "UBA52", "UBB", "UBC", "XIAP", "XPO1", "YWHAZ" ] }, "position": { "x": 1577.5, "y": 2272.9446642487483, "id": "c59a5518-a5fd-427f-b890-3aebc2bab518" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "1ff0c0ea-d31f-4da9-b8e3-cfdb97606fb4", "name": [ "POSITIVE REGULATION OF INTERFERON-BETA PRODUCTION%GOBP%GO:0032728" ], "description": [ "positive regulation of interferon-beta production" ], "pvalue": 0, "gs_type": null, "gs_size": 37, "padj": 0.0004, "mcode_cluster_id": "Cluster 22", "NES": -2.0529, "genes": [ "ARRDC4", "DDX3X", "DHX9", "FLOT1", "HSP90AA1", "IFIH1", "IRF1", "IRF3", "IRF5", "IRF7", "ISG15", "MAVS", "OAS1", "OAS2", "OAS3", "POLR3A", "POLR3B", "POLR3C", "POLR3D", "POLR3F", "POLR3G", "PTPN11", "RIGI", "RIOK3", "RIPK2", "RNF135", "STING1", "TBK1", "TLR2", "TLR3", "TLR4", "TLR7", "TLR8", "TLR9", "TOMM70", "TRIM56", "TRIM65" ] }, "position": { "x": 2133.736633898984, "y": 1375.121219412357, "id": "1ff0c0ea-d31f-4da9-b8e3-cfdb97606fb4", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "a830d5f3-4b66-4adb-94d3-fa5742eae724", "name": [ "TRIF (TICAM1)-MEDIATED TLR4 SIGNALING%REACTOME DATABASE ID RELEASE 81%937061" ], "description": [ "TRIF (TICAM1)-mediated TLR4 signaling" ], "pvalue": 0.0037, "gs_type": null, "gs_size": 106, "padj": 0.0416, "mcode_cluster_id": "Cluster 13", "NES": -1.4854, "genes": [ "AGER", "ALPK1", "APP", "ATF1", "ATF2", "BIRC2", "BIRC3", "BTRC", "CASP8", "CD14", "CHUK", "CUL1", "DUSP3", "DUSP4", "DUSP6", "DUSP7", "ELK1", "FADD", "FBXW11", "FOS", "HMGB1", "IKBIP", "IKBKB", "IKBKE", "IKBKG", "IRAK1", "IRAK2", "IRF3", "IRF7", "JUN", "LRRC14", "LY96", "MAP2K1", "MAP2K3", "MAP2K4", "MAP2K6", "MAP2K7", "MAP3K7", "MAP3K8", "MAPK1", "MAPK10", "MAPK11", "MAPK14", "MAPK3", "MAPK7", "MAPK8", "MAPK9", "MAPKAPK2", "MAPKAPK3", "MEF2A", "MEF2C", "N4BP1", "NFKB1", "NFKB2", "NFKBIA", "NFKBIB", "NKIRAS1", "NKIRAS2", "NLRC5", "NLRX1", "NOD1", "NOD2", "OPTN", "PPP2CA", "PPP2CB", "PPP2R1A", "PPP2R1B", "PPP2R5D", "PTPN11", "RELA", "RIPK1", "RIPK2", "RIPK3", "RPS27A", "RPS6KA1", "RPS6KA2", "RPS6KA3", "RPS6KA5", "S100A12", "S100B", "SAA1", "SKP1", "TAB1", "TAB2", "TAB3", "TANK", "TBK1", "TICAM1", "TICAM2", "TIFA", "TLR4", "TNIP2", "TP53", "TRAF3", "TRAF6", "UBA52", "UBB", "UBC", "UBE2D1", "UBE2D2", "UBE2D3", "UBE2N", "UBE2V1", "USP14", "USP18", "VRK3" ] }, "position": { "x": 120.90896125378156, "y": 1071.6207115320822, "id": "a830d5f3-4b66-4adb-94d3-fa5742eae724", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "71374259-9d97-4671-bcbe-b272ae09ad95", "name": [ "POSITIVE REGULATION OF RESPONSE TO EXTERNAL STIMULUS%GOBP%GO:0032103" ], "description": [ "positive regulation of response to external stimulus" ], "pvalue": 5.0719e-8, "gs_type": null, "gs_size": 475, "padj": 0.000003315, "mcode_cluster_id": "Cluster 6", "NES": -1.7775, "genes": [ "ABCC1", "ACOD1", "ADAM10", "ADAM17", "ADAM8", "AGT", "AGTR1", "AIF1", "AIM2", "AKIRIN1", "AKIRIN2", "ALPK1", "ANKRD17", "ANO6", "AP1G1", "APOH", "APP", "ARG1", "AZU1", "BCL10", "BECN1", "BMP6", "BRCC3", "BTK", "C1QBP", "C2CD4A", "C2CD4B", "CADM1", "CALR", "CAMK1D", "CAMK2N1", "CARD8", "CASP1", "CASP12", "CASP4", "CASP5", "CASP6", "CAV1", "CCL1", "CCL19", "CCL21", "CCL26", "CCL3", "CCL4", "CCL5", "CCL7", "CCN4", "CCR1", "CCR2", "CCR6", "CCR7", "CD14", "CD160", "CD180", "CD1D", "CD226", "CD274", "CD300LF", "CD36", "CD47", "CD74", "CD81", "CDH13", "CEBPA", "CGAS", "CHUK", "CLEC4E", "CLEC6A", "CLEC7A", "CLPB", "CMKLR1", "CNTF", "COLEC10", "COLEC11", "COLEC12", "CPT1A", "CREB3", "CREB3L3", "CREBBP", "CRTAM", "CSF1", "CSF1R", "CTSS", "CX3CL1", "CXCL10", "CXCL12", "CXCL13", "CXCL17", "CXCL8", "CYBA", "CYLD", "DAPK2", "DDT", "DDX3X", "DDX60", "DEFB114", "DEFB124", "DHX33", "DHX58", "DHX9", "DNM1L", "DSCAM", "ECSIT", "EDN2", "EDN3", "EMILIN1", "EMILIN2", "EP300", "EPG5", "EREG", "ETS1", "F2", "F2RL1", "F3", "F7", "FADD", "FCN1", "FCN2", "FCN3", "FEM1A", "FFAR2", "FFAR3", "FGF16", "FGF18", "FGF2", "FGFR1", "FLOT1", "FPR2", "FYN", "GAS6", "GBP2", "GBP5", "GDI1", "GPR4", "GPRC5B", "GPSM3", "GRN", "GSDMD", "HCK", "HEXIM1", "HLA-E", "HLA-F", "HLA-G", "HMGB1", "HRG", "HSP90AA1", "HSPA1A", "HSPA1B", "HSPB1", "HSPD1", "HYAL2", "IFI16", "IFI35", "IFIH1", "IFNB1", "IFNG", "IFNK", "IKBKB", "IKBKE", "IL12A", "IL12B", "IL15", "IL16", "IL17RA", "IL18", "IL1B", "IL2", "IL21", "IL23A", "IL33", "IL34", "IL6", "IL6R", "IL6ST", "INAVA", "IPO5", "IRAK1", "IRAK2", "IRAK3", "IRAK4", "IRF3", "IRF7", "IRGM", "ITCH", "KARS1", "KDR", "KIR2DL4", "KIR2DS2", "KLK3", "KLK5", "KLK7", "KLRC1", "KLRC2", "KLRC3", "KLRC4", "KLRD1", "KLRK1", "LACC1", "LAMP1", "LBP", "LGALS1", "LGALS2", "LGALS9", "LGMN", "LILRA2", "LILRA5", "LPL", "LRCH4", "LRSAM1", "LTF", "LY86", "LY96", "LYN", "MAP2K6", "MAP3K7", "MAPK1", "MAPK13", "MAPK3", "MAPK8", "MAPKAPK2", "MAPKAPK3", "MARK4", "MATR3", "MAVS", "MBL2", "MCU", "MDK", "MEFV", "MEGF8", "MET", "MFHAS1", "MGST2", "MMP8", "MMRN2", "MNDA", "MOSPD2", "MSTN", "MYD88", "NAGK", "NAIP", "NAPEPLD", "NCKAP1L", "NCR3", "NECTIN2", "NEDD9", "NEK7", "NFKBIA", "NFKBIZ", "NINJ1", "NKG7", "NLRC4", "NLRC5", "NLRP1", "NLRP10", "NLRP12", "NLRP3", "NLRP6", "NMI", "NOD1", "NOD2", "NONO", "NR1H3", "NRP1", "NTF3", "NTRK3", "NUPR1", "OAS1", "OAS3", "OASL", "OPTN", "OSM", "OSMR", "OTULIN", "OXSR1", "P2RX4", "P2RY12", "PAK1", "PAK2", "PAK3", "PARK7", "PARP9", "PDCD4", "PDE2A", "PDGFB", "PDGFRA", "PDGFRB", "PERP", "PGC", "PGF", "PHB1", "PHB2", "PIK3AP1", "PJA2", "PLA2G2A", "PLA2G3", "PLA2G5", "PLA2G7", "PLAT", "PLAU", "PLCG2", "PLG", "PLSCR1", "POLR3B", "POLR3C", "POLR3D", "POLR3F", "POLR3G", "PPM1F", "PQBP1", "PRKCA", "PRKCE", "PRKD1", "PRKD2", "PRKDC", "PRSS56", "PSPC1", "PTGER3", "PTGER4", "PTGS2", "PTK2", "PTK2B", "PTN", "PTPN22", "PUM1", "PUM2", "PVR", "PYCARD", "PYHIN1", "RAB11FIP2", "RAC1", "RAC2", "RAET1E", "RAET1G", "RARRES2", "RASGRP1", "RASGRP4", "RBM14", "RBM47", "REG3G", "RELA", "RFTN1", "RIGI", "RIOK3", "RIPK1", "RIPK2", "RIPOR2", "RNF135", "RNF144A", "RNF185", "RNF31", "RNF34", "RPS19", "RPS6KA3", "RSAD2", "RTN4", "S100A12", "S100A14", "S100A7", "S100A8", "S100A9", "SASH1", "SCARA3", "SCARF1", "SCG2", "SCIMP", "SEMA5A", "SERPINE1", "SERPINF2", "SETD4", "SFPQ", "SH2D1B", "SIGLEC16", "SLAMF6", "SLC15A3", "SLC15A4", "SLC19A1", "SLC46A2", "SLIT2", "SMOC2", "SNCA", "SNX4", "SPI1", "SRC", "STAP1", "STING1", "STK39", "STMP1", "STX3", "STX4", "SYK", "TAB1", "TAFA3", "TASL", "TBK1", "TGFB1", "THBD", "THBS1", "THBS4", "TICAM1", "TICAM2", "TIFA", "TIRAP", "TLR1", "TLR10", "TLR2", "TLR3", "TLR4", "TLR5", "TLR6", "TLR7", "TLR8", "TLR9", "TMSB4X", "TNF", "TNFAIP3", "TNFRSF11A", "TNFRSF1A", "TNFSF11", "TNFSF4", "TNIP1", "TNIP2", "TNIP3", "TOMM70", "TRADD", "TRAF3", "TRAF3IP3", "TRAF6", "TREM2", "TREML4", "TRIL", "TRIM15", "TRIM25", "TRIM3", "TRIM41", "TRIM5", "TRIM56", "TRIM6", "TRIM62", "TSLP", "TTBK1", "TXK", "TYROBP", "UBE2K", "UNC93B1", "USF1", "USP15", "USP17L2", "USP27X", "USP29", "USP50", "VAMP7", "VAMP8", "VEGFA", "VEGFB", "VEGFC", "VEGFD", "VTN", "WDFY1", "WNK1", "WNT5A", "XCL1", "XIAP", "XRCC5", "XRCC6", "YWHAE", "ZBP1", "ZCCHC3", "ZDHHC3", "ZDHHC4", "ZDHHC5", "ZDHHC9", "ZNF580", "ZNFX1", "ZNRF1", "ZP3" ] }, "position": { "x": 1863.6587171434444, "y": 455.5369585548773, "id": "71374259-9d97-4671-bcbe-b272ae09ad95", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "name": [ "METABOLISM OF POLYAMINES%REACTOME%R-HSA-351202.5" ], "description": [ "Metabolism of polyamines" ], "pvalue": 0.0000025741, "gs_type": null, "gs_size": 58, "padj": 0.0001, "mcode_cluster_id": "Cluster 1", "NES": -2.0792, "genes": [ "AGMAT", "AMD1", "AZIN1", "AZIN2", "NQO1", "OAZ1", "OAZ2", "OAZ3", "ODC1", "PAOX", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "SAT1", "SEM1", "SMS", "SRM" ] }, "position": { "x": 430.9309867793246, "y": 830.60859849266, "id": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "fba653df-f3e4-45e3-bf71-739986879ea9", "name": [ "SARS-COV-1 MODULATES HOST TRANSLATION MACHINERY%REACTOME DATABASE ID RELEASE 81%9735869" ], "description": [ "SARS-CoV-1 modulates host translation machinery" ], "pvalue": 2.7367e-7, "gs_type": null, "gs_size": 37, "padj": 0, "mcode_cluster_id": "Cluster 2", "NES": 2.3052, "genes": [ "EEF1A1", "FAU", "HNRNPA1", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA" ] }, "position": { "x": 1016.7612180784018, "y": 279.5650567215032, "id": "fba653df-f3e4-45e3-bf71-739986879ea9", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "name": [ "REGULATION OF RAS BY GAPS%REACTOME DATABASE ID RELEASE 81%5658442" ], "description": [ "Regulation of RAS by GAPs" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 67, "padj": 0.0042, "mcode_cluster_id": "Cluster 1", "NES": -1.8019, "genes": [ "CUL3", "DAB2IP", "HRAS", "KBTBD7", "NF1", "NRAS", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RASA1", "RASA2", "RASA3", "RASA4", "RASAL1", "RASAL2", "RASAL3", "RBX1", "RPS27A", "SEM1", "SPRED1", "SPRED2", "SPRED3", "SYNGAP1", "UBA52", "UBB", "UBC" ] }, "position": { "x": 434.85257753881984, "y": 780.9576181718379, "id": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "name": [ "SYNTHESIS OF DNA%REACTOME DATABASE ID RELEASE 81%69239" ], "description": [ "Synthesis of DNA" ], "pvalue": 3.7219e-8, "gs_type": null, "gs_size": 121, "padj": 0.0000025175, "mcode_cluster_id": "Cluster 1", "NES": -2.088, "genes": [ "ANAPC1", "ANAPC10", "ANAPC11", "ANAPC15", "ANAPC16", "ANAPC2", "ANAPC4", "ANAPC5", "ANAPC7", "CCNA1", "CCNA2", "CCNE1", "CCNE2", "CDC16", "CDC23", "CDC26", "CDC27", "CDC45", "CDC6", "CDK2", "CDT1", "CUL1", "DNA2", "FEN1", "FZR1", "GINS1", "GINS2", "GINS3", "GINS4", "GMNN", "LIG1", "MCM2", "MCM3", "MCM4", "MCM5", "MCM6", "MCM7", "MCM8", "ORC1", "ORC2", "ORC3", "ORC4", "ORC5", "ORC6", "PCNA", "POLA1", "POLA2", "POLD1", "POLD2", "POLD3", "POLD4", "POLE", "POLE2", "POLE3", "POLE4", "PRIM1", "PRIM2", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RBX1", "RFC1", "RFC2", "RFC3", "RFC4", "RFC5", "RPA1", "RPA2", "RPA3", "RPS27A", "SEM1", "SKP1", "SKP2", "UBA52", "UBB", "UBC", "UBE2C", "UBE2D1", "UBE2E1", "UBE2S" ] }, "position": { "x": 507.78154694906004, "y": 806.0324423342139, "id": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "name": [ "PROTEIN SYNTHESIS: GLUTAMINE%SMPDB%SMP0111862" ], "description": [ "Protein Synthesis: Glutamine" ], "pvalue": 1.909e-17, "gs_type": null, "gs_size": 80, "padj": 3.966e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7957, "genes": [ "FAU", "QARS1", "RACK1", "RPL10", "RPL10A", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "UBA52" ] }, "position": { "x": 722.6790126768432, "y": 459.975326560213, "id": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "9f961081-673f-4b2b-b4e4-1ab4b4b8d1b6", "name": [ "POSITIVE REGULATION OF TUMOR NECROSIS FACTOR PRODUCTION%GOBP%GO:0032760" ], "description": [ "positive regulation of tumor necrosis factor production" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 84, "padj": 0.0059, "mcode_cluster_id": "Cluster 24", "NES": -1.8699, "genes": [ "ADAM17", "AGER", "APP", "ARFGEF2", "ARHGEF2", "AZU1", "C1QTNF4", "CCL19", "CCL3", "CCR2", "CD14", "CD2", "CD84", "CLEC7A", "CLU", "CYBA", "DDT", "DHX9", "EPHB2", "FADD", "FCGR2A", "FCGR2B", "FCGR2C", "FCGR3A", "FRMD8", "FZD5", "HAVCR2", "HLA-E", "HMGB1", "HSPB1", "IFIH1", "IFNG", "IFNGR1", "IL12B", "IL17A", "IL1A", "IL23A", "IL33", "IL6", "ISL1", "JAK2", "LBP", "LGALS9", "LILRA2", "LILRA5", "LPL", "LY96", "MAVS", "MIF", "MMP8", "NOD2", "OAS1", "OAS2", "OAS3", "ORM1", "ORM2", "PF4", "PLCG2", "PSEN1", "PTPN11", "PTPRC", "PTPRJ", "PYCARD", "RASGRP1", "RIGI", "RIPK1", "SETD4", "SPHK2", "SPN", "STAT3", "SYK", "TGFB1", "THBS1", "TIRAP", "TLR1", "TLR2", "TLR3", "TLR4", "TLR9", "TMEM106A", "TNFRSF8", "TWIST1", "TYROBP", "WNT5A" ] }, "position": { "x": 1985.4529667504946, "y": 1293.3897814738505, "id": "9f961081-673f-4b2b-b4e4-1ab4b4b8d1b6", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "6f94caff-fa63-4a67-b307-921d10fdac59", "name": [ "TOLL LIKE RECEPTOR SIGNALING PATHWAY%WIKIPATHWAYS_20240410%WP75%HOMO SAPIENS" ], "description": [ "Toll like receptor signaling pathway" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 90, "padj": 0.0031, "mcode_cluster_id": null, "NES": -1.8271, "genes": [ "AKT3", "CASP8", "CCL3", "CCL4", "CCL5", "CD14", "CD40", "CD80", "CHUK", "CXCL11", "CXCL8", "CXCL9", "DKFZp686M02159", "FADD", "FOS", "IF1AA1", "IF1AA3", "IF1AA4", "IF1AA5", "IF1AA6", "IF1AA8", "IF1AA9", "IF1AB1", "IF1AB4", "IF1DA1", "IFNA1", "IFNA13", "IFNA14", "IFNA4", "IFNAR1", "IFNAR2", "IKBKB", "IKBKE", "IKBKG", "IL12A", "IL12B", "IL1B", "IL6", "IRAK1", "IRAK4", "IRF3", "IRF7", "JUN", "LBP", "LY96", "MAP2K1", "MAP2K2", "MAP2K3", "MAP2K4", "MAP2K6", "MAP3K7", "MAP3K7IP1", "MAP3K8", "MAPK1", "MAPK10", "MAPK11", "MAPK13", "MAPK14", "MAPK3", "MAPK8", "MAPK9", "MYD88", "NFKB1", "NFKBIA", "NFKBIB", "PIK3CD", "PIK3R1", "PIK3R2", "PIK3R3", "PIK3R5", "RAC1", "RELA", "RIPK1", "SPP1", "STAT1", "TAB3", "TBK1", "TICAM1", "TICAM2", "TIRAP", "TLR1", "TLR3", "TLR4", "TLR5", "TLR7", "TLR8", "TLR9", "TNF", "TRAF3", "TRAF6" ] }, "position": { "x": 1707.0687325882661, "y": 1836.600583825441, "id": "6f94caff-fa63-4a67-b307-921d10fdac59" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "f019a822-f9ed-4f22-85a7-e4f4633d7ac3", "name": [ "ANTIGEN PROCESSING AND PRESENTATION OF ENDOGENOUS ANTIGEN%GOBP%GO:0019883" ], "description": [ "antigen processing and presentation of endogenous antigen" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 30, "padj": 0.0048, "mcode_cluster_id": "Cluster 10", "NES": -1.9443, "genes": [ "B2M", "CD1A", "CD1B", "CD1C", "CD1D", "CD1E", "CD74", "ERAP1", "ERAP2", "HFE", "HLA-A", "HLA-B", "HLA-C", "HLA-DRA", "HLA-DRB1", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "IDE", "MICA", "MICB", "RAET1E", "RAET1G", "RAET1L", "TAP1", "TAP2", "ULBP1", "ULBP2", "ULBP3" ] }, "position": { "x": 1986.7474256739106, "y": 974.8527430569608, "id": "f019a822-f9ed-4f22-85a7-e4f4633d7ac3", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "a8e8f341-9192-4eac-b75b-e18b4f03a169", "name": [ "DNA-TEMPLATED DNA REPLICATION MAINTENANCE OF FIDELITY%GOBP%GO:0045005" ], "description": [ "DNA-templated DNA replication maintenance of fidelity" ], "pvalue": 0.003, "gs_type": null, "gs_size": 57, "padj": 0.0357, "mcode_cluster_id": "Cluster 32", "NES": -1.6476, "genes": [ "ASF1A", "ATR", "ATRX", "BARD1", "BLM", "BOD1L1", "BRCA1", "BRCA2", "CAMSAP3", "CARM1", "CDK9", "CENPS", "CENPX", "DDX11", "DNA2", "DONSON", "EME1", "EME2", "ETAA1", "EXD2", "EXO1", "FAM111A", "FANCM", "FBH1", "GEN1", "KHDC3L", "MCM8", "MCM9", "MMS22L", "MRE11", "MUS81", "NBN", "NUCKS1", "OOEP", "PARP1", "PCNA", "POLD1", "POLE", "POLG", "POLQ", "PRIMPOL", "RAD50", "RAD51", "RBBP8", "RECQL", "RFWD3", "RTEL1", "SAMHD1", "SETMAR", "SLFN11", "SMARCAL1", "TIMELESS", "TIPIN", "TONSL", "TRAIP", "WRN", "ZRANB3" ] }, "position": { "x": 978.9399327195939, "y": 1865.4047336527715, "id": "a8e8f341-9192-4eac-b75b-e18b4f03a169", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "a0029cb0-d65e-4a73-9d7f-a1a2a5d76456", "name": [ "HIF-2-ALPHA TRANSCRIPTION FACTOR NETWORK%PATHWAY INTERACTION DATABASE NCI-NATURE CURATED DATA%HIF-2-ALPHA TRANSCRIPTION FACTOR NETWORK" ], "description": [ "HIF-2-alpha transcription factor network" ], "pvalue": 0.0004, "gs_type": null, "gs_size": 34, "padj": 0.0068, "mcode_cluster_id": null, "NES": 1.9065, "genes": [ "ABCG2", "ADORA2A", "APEX1", "ARNT", "BHLHE40", "CITED2", "CREBBP", "EFNA1", "EGLN1", "EGLN2", "EGLN3", "EIF3E", "ELK1", "ELOB", "ELOC", "EP300", "EPAS1", "EPO", "ETS1", "FLT1", "FXN", "HIF1AN", "KDR", "MMP14", "PGK1", "POU5F1", "SERPINE1", "SIRT1", "SLC11A2", "SLC2A1", "SP1", "TWIST1", "VEGFA", "VHL" ] }, "position": { "x": 3687.539072651805, "y": 2118.9446642487483, "id": "a0029cb0-d65e-4a73-9d7f-a1a2a5d76456" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "26ab1a9f-2702-4763-b141-ed0c39f9b80d", "name": [ "PROTEIN LOCALIZATION TO VACUOLE%GOBP%GO:0072665" ], "description": [ "protein localization to vacuole" ], "pvalue": 0.0015, "gs_type": null, "gs_size": 72, "padj": 0.0218, "mcode_cluster_id": "Cluster 23", "NES": 1.6823, "genes": [ "AP3D1", "AP3M1", "AP4M1", "ATG14", "ATP13A2", "BECN1", "CACNG2", "CACNG3", "CACNG4", "CACNG5", "CACNG7", "CACNG8", "CD81", "CLU", "GBP1", "GCC2", "GGA3", "GLMP", "GNPTAB", "GNPTG", "HGS", "IRGM", "KICS2", "KPTN", "LAMP2", "LAMTOR4", "LAMTOR5", "LAPTM5", "LMBRD1", "M6PR", "MFSD1", "MVB12A", "NAGPA", "NCOA4", "NEDD4", "PIK3C3", "PIK3R4", "PTPN23", "PXK", "RAB7A", "RNF128", "RRAGA", "RRAGC", "RTN4", "SCARB2", "SH3BP4", "SH3GLB1", "SMURF1", "SNF8", "SNX16", "SORL1", "SQSTM1", "STAM", "STAM2", "SZT2", "TSG101", "UBAP1", "VPS13A", "VPS13C", "VPS13D", "VPS25", "VPS28", "VPS36", "VPS37A", "VPS37B", "VPS37C", "VPS37D", "VPS41", "VPS4A", "VPS8", "WASH3P", "ZFYVE16" ] }, "position": { "x": 3800.8690476067004, "y": 1889.6523136429346, "id": "26ab1a9f-2702-4763-b141-ed0c39f9b80d", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "341f894e-1461-4011-8b23-be258a6c9d84", "name": [ "P53-DEPENDENT G1 S DNA DAMAGE CHECKPOINT%REACTOME%R-HSA-69580.5" ], "description": [ "p53-Dependent G1 S DNA damage checkpoint" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 66, "padj": 0.003, "mcode_cluster_id": "Cluster 1", "NES": -1.8292, "genes": [ "ATM", "CCNA1", "CCNA2", "CCNE1", "CCNE2", "CDK2", "CDKN1A", "CDKN1B", "CDKN2A", "CHEK2", "COP1", "MDM2", "MDM4", "PCBP4", "PHF20", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RPS27A", "SEM1", "TP53", "UBA52", "UBB", "UBC", "ZNF385A" ] }, "position": { "x": 454.98653797892473, "y": 823.0339520008067, "id": "341f894e-1461-4011-8b23-be258a6c9d84", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "name": [ "INTERLEUKIN-1 SIGNALING%REACTOME DATABASE ID RELEASE 81%9020702" ], "description": [ "Interleukin-1 signaling" ], "pvalue": 1.3215e-7, "gs_type": null, "gs_size": 112, "padj": 0.0000074634, "mcode_cluster_id": "Cluster 1", "NES": -2.0193, "genes": [ "AGER", "ALPK1", "APP", "BTRC", "CASP8", "CHUK", "CUL1", "FBXW11", "HMGB1", "IKBIP", "IKBKB", "IKBKG", "IL1A", "IL1B", "IL1R1", "IL1R2", "IL1RN", "IRAK1", "IRAK2", "IRAK3", "IRAK4", "LRRC14", "MAP2K1", "MAP2K4", "MAP2K6", "MAP3K3", "MAP3K7", "MAP3K8", "MYD88", "N4BP1", "NFKB1", "NFKB2", "NFKBIA", "NFKBIB", "NKIRAS1", "NKIRAS2", "NLRC5", "NLRX1", "NOD1", "NOD2", "PELI1", "PELI2", "PELI3", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RBX1", "RELA", "RIPK2", "RPS27A", "S100A12", "S100B", "SAA1", "SEM1", "SKP1", "SQSTM1", "TAB1", "TAB2", "TAB3", "TIFA", "TNIP2", "TOLLIP", "TP53", "TRAF6", "UBA52", "UBB", "UBC", "UBE2N", "UBE2V1", "USP14", "USP18" ] }, "position": { "x": 421.735706701397, "y": 836.6386646891694, "id": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "9c8f9b6b-28fe-41fc-8358-70bd8ea5d214", "name": [ "ADENYLOSUCCINATE LYASE DEFICIENCY%SMPDB%SMP0000167" ], "description": [ "Adenylosuccinate Lyase Deficiency" ], "pvalue": 0.0025, "gs_type": null, "gs_size": 37, "padj": 0.031, "mcode_cluster_id": "Cluster 3", "NES": -1.6821, "genes": [ "ADA", "ADCY2", "ADSL", "ADSS2", "AK1", "AMPD1", "APRT", "ATAD1", "ATIC", "DGUOK", "ENTPD5", "ENTPD8", "GART", "GDA", "GMPR", "GMPS", "GUCY1A2", "GUCY1B1", "GUK1", "HPRT1", "IMPDH1", "ITPA", "NME6", "NT5C2", "NUDT2", "NUDT5", "PAICS", "PDE10A", "PDE4D", "PFAS", "PNP", "PPAT", "PRPS1L1", "RRM1", "RRM2", "TXN", "XDH" ] }, "position": { "x": 1347.2490285904646, "y": 1355.5052033608406, "id": "9c8f9b6b-28fe-41fc-8358-70bd8ea5d214", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "name": [ "PROTEIN SYNTHESIS: PROLINE%PATHWHIZ%PW113695" ], "description": [ "Protein Synthesis: Proline" ], "pvalue": 8.0823e-18, "gs_type": null, "gs_size": 80, "padj": 1.8806e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.8107, "genes": [ "EPRS1", "FAU", "RACK1", "RPL10", "RPL10A", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "UBA52" ] }, "position": { "x": 829.9000207445575, "y": 244.87924795596234, "id": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "a5b4ea87-c775-4190-8251-dddda84aad0d", "name": [ "TRANSCRIPTIONAL REGULATION BY RUNX3%REACTOME DATABASE ID RELEASE 81%8878159" ], "description": [ "Transcriptional regulation by RUNX3" ], "pvalue": 0, "gs_type": null, "gs_size": 95, "padj": 0.0008, "mcode_cluster_id": "Cluster 1", "NES": -1.8729, "genes": [ "BCL2L11", "BRD2", "CBFB", "CCN2", "CCND1", "CDKN1A", "CDKN2A", "CREBBP", "CTNNB1", "EP300", "FOXO3", "HDAC4", "HES1", "ITGA4", "ITGAL", "JAG1", "KAT2A", "KAT2B", "KRAS", "LEF1", "MAML1", "MAML2", "MAML3", "MAMLD1", "MDM2", "MYC", "NOTCH1", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMB1", "PSMB10", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSMF1", "RBPJ", "RPS27A", "RUNX1", "RUNX3", "SEM1", "SMAD3", "SMAD4", "SMURF1", "SMURF2", "SNW1", "SPP1", "SRC", "TCF7", "TCF7L1", "TCF7L2", "TEAD1", "TEAD2", "TEAD3", "TEAD4", "TGFB1", "TP53", "UBA52", "UBB", "UBC", "WWTR1", "YAP1", "ZFHX3" ] }, "position": { "x": 490.1021209609313, "y": 766.6003726063979, "id": "a5b4ea87-c775-4190-8251-dddda84aad0d", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "39188ce2-e76c-446a-bf2d-04349ab280d0", "name": [ "CARBOHYDRATE DERIVATIVE CATABOLIC PROCESS%GOBP%GO:1901136" ], "description": [ "carbohydrate derivative catabolic process" ], "pvalue": 0.0032, "gs_type": null, "gs_size": 170, "padj": 0.0375, "mcode_cluster_id": null, "NES": 1.4972, "genes": [ "ABCD1", "ABHD10", "ACAT1", "ACOT7", "ADA", "ADA2", "ADAL", "ADAMTS12", "ADPGK", "ALDH1A1", "ALDOA", "ALDOB", "ALDOC", "AMDHD2", "AMPD3", "AOAH", "APOBEC3C", "APOBEC3G", "BPGM", "CD44", "CDA", "CDADC1", "CEMIP", "CHI3L1", "CHI3L2", "CHIA", "CHIT1", "CTBS", "CTSL", "DCTD", "DCTPP1", "DERA", "DPYD", "DUT", "EDEM1", "EDEM2", "EDEM3", "ENO1", "ENO2", "ENO3", "ENO4", "ENPP4", "ENPP7", "ENTPD4", "ENTPD5", "ENTPD7", "FBXO17", "FBXO2", "FBXO27", "FBXO44", "FBXO6", "FGF2", "FITM2", "FOXK1", "FOXK2", "FUCA1", "FUCA2", "GALC", "GAPDH", "GAPDHS", "GBA1", "GBA2", "GBA3", "GCK", "GLA", "GLB1", "GM2A", "GNPDA1", "GNPDA2", "GNS", "GPC1", "GPI", "GUSB", "HEXA", "HEXB", "HINT1", "HK1", "HK2", "HK3", "HKDC1", "HOGA1", "HPRT1", "HPSE", "HYAL1", "HYAL2", "HYAL3", "HYAL4", "IDS", "IDUA", "LCT", "LDHA", "M6PR", "MAN1A1", "MAN1B1", "MANBA", "MBD4", "MLYCD", "MMP12", "MTAP", "NAGA", "NAGK", "NAGLU", "NCCRP1", "NEIL1", "NEIL2", "NEU1", "NEU2", "NEU3", "NEU4", "NGLY1", "NPL", "NT5C", "NT5C1A", "NT5C2", "NT5E", "NT5M", "NTHL1", "NUDT1", "NUDT10", "NUDT11", "NUDT15", "NUDT16", "NUDT18", "NUDT19", "NUDT3", "NUDT4", "NUDT4B", "NUDT7", "NUDT8", "OGA", "OGG1", "OVGP1", "PDE2A", "PDE9A", "PFKFB1", "PFKFB2", "PFKL", "PFKM", "PFKP", "PGAM1", "PGAM2", "PGAM4", "PGK1", "PGK2", "PGM1", "PKLR", "PKM", "PNLIPRP2", "PNP", "PRTFDC1", "RENBP", "SAMHD1", "SGSH", "SMPD1", "SMUG1", "SPAM1", "STT3B", "SUCLA2", "SUCLG1", "SUCLG2", "SUMF1", "TDG", "TGFB1", "TPI1", "UCP2", "UNG", "UPB1", "UPP1", "UPP2", "XDH" ] }, "position": { "x": 3687.539072651805, "y": 2272.9446642487483, "id": "39188ce2-e76c-446a-bf2d-04349ab280d0" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "4be85023-05ad-43c2-b6c9-3daf674c5a95", "name": [ "PYROPTOSIS%REACTOME DATABASE ID RELEASE 81%5620971" ], "description": [ "Pyroptosis" ], "pvalue": 0.0024, "gs_type": null, "gs_size": 27, "padj": 0.031, "mcode_cluster_id": null, "NES": -1.7558, "genes": [ "BAK1", "BAX", "CASP1", "CASP3", "CASP4", "CASP5", "CHMP2A", "CHMP2B", "CHMP3", "CHMP4A", "CHMP4B", "CHMP4C", "CHMP6", "CHMP7", "CYCS", "ELANE", "GSDMD", "GSDME", "GZMB", "HMGB1", "IL18", "IL1A", "IL1B", "IRF1", "IRF2", "TP53", "TP63" ] }, "position": { "x": 340.82625765229153, "y": 180.83144829745333, "id": "4be85023-05ad-43c2-b6c9-3daf674c5a95" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "name": [ "ACTIVATION OF APC C AND APC C:CDC20 MEDIATED DEGRADATION OF MITOTIC PROTEINS%REACTOME%R-HSA-176814.5" ], "description": [ "Activation of APC C and APC C:Cdc20 mediated degradation of mitotic proteins" ], "pvalue": 4.5119e-7, "gs_type": null, "gs_size": 77, "padj": 0, "mcode_cluster_id": "Cluster 1", "NES": -2.1109, "genes": [ "ANAPC1", "ANAPC10", "ANAPC11", "ANAPC15", "ANAPC16", "ANAPC2", "ANAPC4", "ANAPC5", "ANAPC7", "BUB1B", "BUB3", "CCNA1", "CCNA2", "CCNB1", "CDC16", "CDC20", "CDC23", "CDC26", "CDC27", "CDK1", "MAD2L1", "NEK2", "PLK1", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "PTTG1", "RPS27A", "SEM1", "UBA52", "UBB", "UBC", "UBE2C", "UBE2D1", "UBE2E1", "UBE2S" ] }, "position": { "x": 428.86127974603505, "y": 813.6723232883553, "id": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "92149791-7576-4773-aa06-34bfdb2171b0", "name": [ "TOLL-LIKE RECEPTOR CASCADES%REACTOME%R-HSA-168898.9" ], "description": [ "Toll-like Receptor Cascades" ], "pvalue": 0.0021, "gs_type": null, "gs_size": 161, "padj": 0.0284, "mcode_cluster_id": "Cluster 13", "NES": -1.5238, "genes": [ "AGER", "ALPK1", "APOB", "APP", "ATF1", "ATF2", "BIRC2", "BIRC3", "BPI", "BTK", "BTRC", "CASP8", "CD14", "CD180", "CD36", "CHUK", "CNPY3", "CTSB", "CTSK", "CTSL", "CTSS", "CTSV", "CUL1", "DNM1", "DNM2", "DNM3", "DUSP3", "DUSP4", "DUSP6", "DUSP7", "ECSIT", "EEA1", "ELK1", "FADD", "FBXW11", "FGA", "FGB", "FGG", "FOS", "GSDMD", "GSDME", "HMGB1", "HSP90B1", "IKBIP", "IKBKB", "IKBKE", "IKBKG", "IRAK1", "IRAK2", "IRAK3", "IRAK4", "IRF3", "IRF7", "ITGAM", "ITGB2", "JUN", "LBP", "LGMN", "LRRC14", "LY86", "LY96", "MAP2K1", "MAP2K3", "MAP2K4", "MAP2K6", "MAP2K7", "MAP3K1", "MAP3K7", "MAP3K8", "MAPK1", "MAPK10", "MAPK11", "MAPK14", "MAPK3", "MAPK7", "MAPK8", "MAPK9", "MAPKAPK2", "MAPKAPK3", "MEF2A", "MEF2C", "MYD88", "N4BP1", "NFKB1", "NFKB2", "NFKBIA", "NFKBIB", "NKIRAS1", "NKIRAS2", "NLRC5", "NLRX1", "NOD1", "NOD2", "OPTN", "PELI1", "PELI2", "PELI3", "PIK3C3", "PIK3R4", "PLCG2", "PPP2CA", "PPP2CB", "PPP2R1A", "PPP2R1B", "PPP2R5D", "PTPN11", "PTPN4", "RBSN", "RELA", "RIPK1", "RIPK2", "RIPK3", "RPS27A", "RPS6KA1", "RPS6KA2", "RPS6KA3", "RPS6KA5", "S100A1", "S100A12", "S100A8", "S100A9", "S100B", "SAA1", "SIGIRR", "SKP1", "SOCS1", "TAB1", "TAB2", "TAB3", "TANK", "TBK1", "TICAM1", "TICAM2", "TIFA", "TIRAP", "TLR1", "TLR10", "TLR2", "TLR3", "TLR4", "TLR5", "TLR6", "TLR7", "TLR8", "TLR9", "TNIP2", "TP53", "TRAF3", "TRAF6", "UBA52", "UBB", "UBC", "UBE2D1", "UBE2D2", "UBE2D3", "UBE2N", "UBE2V1", "UNC93B1", "USP14", "USP18", "VRK3" ] }, "position": { "x": 131.65786005065107, "y": 1060.2562749062863, "id": "92149791-7576-4773-aa06-34bfdb2171b0", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "name": [ "EUKARYOTIC TRANSLATION ELONGATION%REACTOME%R-HSA-156842.4" ], "description": [ "Eukaryotic Translation Elongation" ], "pvalue": 5.1485e-18, "gs_type": null, "gs_size": 95, "padj": 1.7617e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.753, "genes": [ "EEF1A1", "EEF1A1P5", "EEF1A2", "EEF1B2", "EEF1D", "EEF1G", "EEF2", "FAU", "RPL10", "RPL10A", "RPL10L", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL22L1", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL26L1", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL36AL", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL39L", "RPL3L", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "UBA52" ] }, "position": { "x": 805.0130474997482, "y": 322.20427595581873, "id": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "4a6bc1f4-6c66-4489-8a8a-d7d17ac1a228", "name": [ "LEUKOCYTE CHEMOTAXIS%GOBP%GO:0030595" ], "description": [ "leukocyte chemotaxis" ], "pvalue": 0.0000096655, "gs_type": null, "gs_size": 123, "padj": 0.0004, "mcode_cluster_id": "Cluster 7", "NES": -2.0318, "genes": [ "ADAM8", "ADGRE2", "ALOX5", "ANXA1", "AZU1", "BSG", "CALCA", "CCL1", "CCL11", "CCL13", "CCL14", "CCL15", "CCL16", "CCL18", "CCL19", "CCL2", "CCL21", "CCL22", "CCL23", "CCL24", "CCL25", "CCL26", "CCL3", "CCL3L3", "CCL4", "CCL4L2", "CCL5", "CCL7", "CCL8", "CCR1", "CCR2", "CCR5", "CCR6", "CCR7", "CD300H", "CH25H", "CHGA", "CKLF", "CTSG", "CX3CL1", "CX3CR1", "CXADR", "CXCL1", "CXCL10", "CXCL11", "CXCL13", "CXCL16", "CXCL17", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "CXCR1", "CXCR2", "CXCR4", "CYP7B1", "DEFA1B", "DEFB104B", "EDN1", "EDN2", "EDN3", "EDNRB", "FCER1G", "FFAR2", "FLT1", "FOLR2", "GAS6", "GBF1", "GPR15LG", "GPR183", "HMGB1", "HSD3B7", "IL10", "IL16", "IL6", "IL6R", "ITGB2", "JAML", "KIT", "LGALS3", "LYST", "MDK", "MSMP", "MT-RNR2", "NCKAP1L", "NINJ1", "PDE4B", "PDGFB", "PF4", "PF4V1", "PIK3CD", "PIK3CG", "PIKFYVE", "PIP5K1C", "PLA2G1B", "PPBP", "PPIA", "PPIB", "PTN", "PTPRO", "RPS19", "S100A12", "S100A8", "S100A9", "SAA1", "SBDS", "SCG2", "SFTPD", "SLAMF8", "SLC12A2", "SRP54", "SYK", "TAFA4", "TGFB2", "TNFRSF11A", "TNFSF11", "TREM1", "TRPM2", "TRPM4", "XCL1", "XCL2" ] }, "position": { "x": 3341.5516161823375, "y": 570.066164986128, "id": "4a6bc1f4-6c66-4489-8a8a-d7d17ac1a228", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "name": [ "SELENOCYSTEINE SYNTHESIS%REACTOME%R-HSA-2408557.4" ], "description": [ "Selenocysteine synthesis" ], "pvalue": 2.9159e-17, "gs_type": null, "gs_size": 94, "padj": 4.9887e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7285, "genes": [ "EEFSEC", "FAU", "PSTK", "RPL10", "RPL10A", "RPL10L", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL22L1", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL26L1", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL36AL", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL39L", "RPL3L", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "SARS1", "SECISBP2", "SEPHS2", "SEPSECS", "UBA52" ] }, "position": { "x": 763.3537026250368, "y": 376.54235047782925, "id": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "name": [ "FBXL7 DOWN-REGULATES AURKA DURING MITOTIC ENTRY AND IN EARLY MITOSIS%REACTOME%R-HSA-8854050.4" ], "description": [ "FBXL7 down-regulates AURKA during mitotic entry and in early mitosis" ], "pvalue": 0, "gs_type": null, "gs_size": 55, "padj": 0.0006, "mcode_cluster_id": "Cluster 1", "NES": -2.0063, "genes": [ "AURKA", "CUL1", "FBXL18", "FBXL7", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RBX1", "RPS27A", "SEM1", "SKP1", "UBA52", "UBB", "UBC" ] }, "position": { "x": 485.5975762398718, "y": 819.4235377425741, "id": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "c7dbd9ae-6d51-4c74-9b24-d8cdf56d9381", "name": [ "GRANULOCYTE CHEMOTAXIS%GOBP%GO:0071621" ], "description": [ "granulocyte chemotaxis" ], "pvalue": 0, "gs_type": null, "gs_size": 70, "padj": 0.0009, "mcode_cluster_id": "Cluster 7", "NES": -2.004, "genes": [ "ADGRE2", "ANXA1", "BSG", "CCL1", "CCL11", "CCL13", "CCL14", "CCL15", "CCL16", "CCL18", "CCL2", "CCL22", "CCL23", "CCL24", "CCL25", "CCL26", "CCL3", "CCL3L3", "CCL4", "CCL4L2", "CCL5", "CCL7", "CCL8", "CD300H", "CKLF", "CX3CL1", "CXADR", "CXCL1", "CXCL10", "CXCL11", "CXCL13", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "CXCR1", "CXCR2", "EDN1", "EDN2", "EDN3", "FCER1G", "GBF1", "ITGB2", "JAML", "LGALS3", "NCKAP1L", "PDE4B", "PF4", "PF4V1", "PIK3CD", "PIK3CG", "PIKFYVE", "PIP5K1C", "PLA2G1B", "PPBP", "PPIA", "PPIB", "S100A12", "S100A8", "S100A9", "SAA1", "SCG2", "SRP54", "SYK", "TGFB2", "TREM1", "XCL1", "XCL2" ] }, "position": { "x": 3194.433405207847, "y": 573.3231906340956, "id": "c7dbd9ae-6d51-4c74-9b24-d8cdf56d9381", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "7cc99d30-c022-4c99-998d-95c988484f7c", "name": [ "OSTEOARTHRITIC CHONDROCYTE HYPERTROPHY%WIKIPATHWAYS_20240410%WP5373%HOMO SAPIENS" ], "description": [ "Osteoarthritic chondrocyte hypertrophy" ], "pvalue": 0.0033, "gs_type": null, "gs_size": 42, "padj": 0.0385, "mcode_cluster_id": null, "NES": 1.7846, "genes": [ "ACAN", "AKT3", "CEBPB", "CNMD", "COL10A1", "COL1A1", "COL2A1", "COL3A1", "CTGF", "DDR2", "FGF23", "FGFR1", "FGFR2", "FGFR3", "FGFR4", "FOS", "FOSB", "FOSL1", "FOSL2", "GANC", "HIF1A", "IBSP", "JUN", "JUNB", "JUND", "KDR", "LAMTOR1", "MAPK1", "MAPK3", "NFKB1", "NGF", "NTRK1", "P4HTM", "PRKCA", "RELA", "RELB", "RUNX2", "SOX9", "SPP1", "STAT3", "VEGFA", "VHL" ] }, "position": { "x": 4072.539072651805, "y": 2118.9446642487483, "id": "7cc99d30-c022-4c99-998d-95c988484f7c" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "5ef26419-f8a7-4e53-b7b3-370680eab6a1", "name": [ "NEGATIVE REGULATION OF RESPONSE TO BIOTIC STIMULUS%GOBP%GO:0002832" ], "description": [ "negative regulation of response to biotic stimulus" ], "pvalue": 0.0000012596, "gs_type": null, "gs_size": 106, "padj": 0.0001, "mcode_cluster_id": "Cluster 19", "NES": -2.0405, "genes": [ "A2M", "ACOD1", "AHR", "ARG1", "ARRB2", "ATG12", "ATG5", "AURKB", "BANF1", "C1QBP", "CACTIN", "CARD16", "CARD8", "CD274", "CEACAM1", "CEP63", "CLEC12B", "CNOT7", "CR1", "DCST1", "DEFB114", "DEFB118", "DHX58", "DTX4", "EIF4E2", "FAM3A", "GIGYF2", "GRN", "HLA-A", "HLA-B", "HLA-E", "HLA-F", "HLA-G", "IFI16", "IL4I1", "ILRUN", "INS", "IRAK3", "IRGM", "ISG15", "ITCH", "KIR2DL4", "KLRC1", "KLRD1", "LACRT", "LGALS9", "LILRA2", "LILRB1", "LTF", "LYAR", "MAPKBP1", "MAVS", "METTL3", "MICA", "MICB", "MUL1", "NFKBIL1", "NLRC3", "NLRC5", "NLRP4", "NMI", "NR1H2", "NR1H3", "NT5C2", "OAS1", "OAS3", "OTOP1", "PARP1", "PARP14", "PCBP2", "PDCD1", "PIM1", "PPARG", "PPM1B", "PTPN2", "RNF26", "RPS19", "SAMHD1", "SERPINB4", "SERPINB9", "SERPING1", "SFN", "SIGIRR", "SLAMF8", "SMIM30", "STAT2", "SUSD4", "TARBP2", "TGFB1", "TNFAIP3", "TRAF3IP1", "TRAFD1", "TREX1", "TRIB1", "TRIM21", "TTLL12", "TYRO3", "UFL1", "USP15", "USP18", "USP38", "VSIG4", "YTHDF2", "YTHDF3", "YWHAZ", "ZDHHC18" ] }, "position": { "x": 2061.7086211872183, "y": 279.2560200989881, "id": "5ef26419-f8a7-4e53-b7b3-370680eab6a1", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "b107dfa6-f840-4dc9-8701-8fc1fb6b2c13", "name": [ "CELL CYCLE, MITOTIC%REACTOME DATABASE ID RELEASE 81%69278" ], "description": [ "Cell Cycle, Mitotic" ], "pvalue": 4.4565e-8, "gs_type": null, "gs_size": 516, "padj": 0.0000029459, "mcode_cluster_id": null, "NES": -1.6657, "genes": [ "AAAS", "ABL1", "ACTR1A", "AHCTF1", "AJUBA", "AKAP9", "AKT1", "AKT2", "AKT3", "ALMS1", "ANAPC1", "ANAPC10", "ANAPC11", "ANAPC15", "ANAPC16", "ANAPC2", "ANAPC4", "ANAPC5", "ANAPC7", "ANKLE2", "ARPP19", "AURKA", "B9D2", "BANF1", "BIRC5", "BLZF1", "BORA", "BTRC", "BUB1", "BUB1B", "BUB3", "CABLES1", "CC2D1B", "CCNA1", "CCNA2", "CCNB1", "CCNB2", "CCND1", "CCND2", "CCND3", "CCNE1", "CCNE2", "CCNH", "CCP110", "CDC14A", "CDC16", "CDC20", "CDC23", "CDC25A", "CDC25B", "CDC25C", "CDC26", "CDC27", "CDC45", "CDC6", "CDC7", "CDCA5", "CDCA8", "CDK1", "CDK11A", "CDK11B", "CDK2", "CDK4", "CDK5RAP2", "CDK6", "CDK7", "CDKN1A", "CDKN1B", "CDKN1C", "CDKN2A", "CDKN2B", "CDKN2C", "CDKN2D", "CDT1", "CENPA", "CENPC", "CENPE", "CENPF", "CENPH", "CENPI", "CENPJ", "CENPK", "CENPL", "CENPM", "CENPN", "CENPO", "CENPP", "CENPQ", "CENPS", "CENPT", "CENPU", "CEP131", "CEP135", "CEP152", "CEP164", "CEP192", "CEP250", "CEP290", "CEP41", "CEP43", "CEP57", "CEP63", "CEP70", "CEP72", "CEP76", "CEP78", "CETN2", "CHMP2A", "CHMP2B", "CHMP3", "CHMP4A", "CHMP4B", "CHMP4C", "CHMP6", "CHMP7", "CKAP5", "CKS1B", "CLASP1", "CLASP2", "CLIP1", "CNEP1R1", "CNTRL", "CSNK1D", "CSNK1E", "CSNK2A1", "CSNK2A2", "CSNK2B", "CTDNEP1", "CUL1", "DBF4", "DCTN2", "DCTN3", "DHFR", "DNA2", "DSN1", "DYNC1H1", "DYNC1I1", "DYNC1I2", "DYNC1LI1", "DYNC1LI2", "DYNLL1", "DYNLL2", "DYRK1A", "E2F1", "E2F2", "E2F3", "E2F4", "E2F5", "E2F6", "EMD", "EML4", "ENSA", "EP300", "ERCC6L", "ESCO1", "ESCO2", "ESPL1", "FBXL18", "FBXL7", "FBXO5", "FBXW11", "FEN1", "FIRRM", "FKBPL", "FOXM1", "FZR1", "GINS1", "GINS2", "GINS3", "GINS4", "GMNN", "GOLGA2", "GORASP1", "GORASP2", "GSK3B", "GTSE1", "H2AB1", "H2AC14", "H2AC19", "H2AC20", "H2AC7", "H2AC8", "H2AJ", "H2AX", "H2AZ2", "H2BC1", "H2BC11", "H2BC12", "H2BC12L", "H2BC13", "H2BC14", "H2BC15", "H2BC17", "H2BC21", "H2BC26", "H2BC3", "H2BC5", "H2BC8", "H2BC9", "H3-3B", "H3-4", "H3C15", "H3C8", "H4C9", "HAUS1", "HAUS2", "HAUS3", "HAUS4", "HAUS5", "HAUS6", "HAUS7", "HAUS8", "HDAC1", "HMMR", "HSP90AA1", "HSP90AB1", "INCENP", "IST1", "ITGB3BP", "JAK2", "KIF18A", "KIF20A", "KIF23", "KIF2A", "KIF2B", "KIF2C", "KMT5A", "KNL1", "KNTC1", "KPNB1", "LBR", "LCMT1", "LEMD2", "LEMD3", "LIG1", "LIN37", "LIN52", "LIN54", "LIN9", "LMNB1", "LPIN1", "LPIN2", "LPIN3", "LYN", "MAD1L1", "MAD2L1", "MAPK1", "MAPRE1", "MASTL", "MAU2", "MAX", "MCM10", "MCM2", "MCM3", "MCM4", "MCM5", "MCM6", "MCM7", "MCM8", "MCPH1", "MIS12", "MNAT1", "MYBL2", "MYC", "MZT1", "MZT2A", "MZT2B", "NCAPD2", "NCAPD3", "NCAPG", "NCAPG2", "NCAPH", "NCAPH2", "NDC1", "NDC80", "NDE1", "NDEL1", "NEDD1", "NEK2", "NEK6", "NEK7", "NEK9", "NINL", "NIPBL", "NME7", "NSL1", "NUDC", "NUF2", "NUMA1", "NUP107", "NUP133", "NUP153", "NUP155", "NUP160", "NUP188", "NUP205", "NUP210", "NUP214", "NUP35", "NUP37", "NUP42", "NUP43", "NUP50", "NUP54", "NUP62", "NUP85", "NUP88", "NUP93", "ODF2", "OFD1", "OPTN", "ORC1", "ORC2", "ORC3", "ORC4", "ORC5", "ORC6", "PAFAH1B1", "PCM1", "PCNA", "PCNT", "PDS5A", "PDS5B", "PHLDA1", "PKMYT1", "PLK1", "PLK4", "PMF1", "POLA1", "POLA2", "POLD1", "POLD2", "POLD3", "POLD4", "POLE", "POLE2", "POLE3", "POLE4", "POM121", "POM121C", "PPME1", "PPP1CB", "PPP1CC", "PPP1R12A", "PPP2CA", "PPP2CB", "PPP2R1A", "PPP2R1B", "PPP2R2A", "PPP2R2D", "PPP2R3B", "PPP2R5A", "PPP2R5B", "PPP2R5C", "PPP2R5D", "PPP2R5E", "PRIM1", "PRIM2", "PRKACA", "PRKAR2B", "PRKCA", "PRKCB", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "PTK6", "PTTG1", "RAB1A", "RAB1B", "RAB2A", "RAB8A", "RAD21", "RAE1", "RAN", "RANBP2", "RANGAP1", "RB1", "RBBP4", "RBL1", "RBL2", "RBX1", "RCC1", "RCC2", "RFC1", "RFC2", "RFC3", "RFC4", "RFC5", "RPA1", "RPA2", "RPA3", "RPA4", "RPS27", "RPS27A", "RRM2", "SDCCAG8", "SEC13", "SEM1", "SET", "SFI1", "SGO1", "SGO2", "SIRT2", "SKA1", "SKA2", "SKP1", "SKP2", "SMC1A", "SMC2", "SMC3", "SMC4", "SPAST", "SPC24", "SPC25", "SPDL1", "SSNA1", "STAG1", "STAG2", "SUMO1", "TAOK1", "TFDP1", "TFDP2", "TK1", "TNPO1", "TOP2A", "TP53", "TPR", "TPX2", "TUBA1A", "TUBA1B", "TUBA1C", "TUBA3C", "TUBA3D", "TUBA3E", "TUBA4A", "TUBA4B", "TUBA8", "TUBAL3", "TUBB", "TUBB1", "TUBB2A", "TUBB2B", "TUBB3", "TUBB4A", "TUBB4B", "TUBB6", "TUBB8", "TUBB8B", "TUBG1", "TUBG2", "TUBGCP2", "TUBGCP3", "TUBGCP4", "TUBGCP5", "TUBGCP6", "TYMS", "UBA52", "UBB", "UBC", "UBE2C", "UBE2D1", "UBE2E1", "UBE2I", "UBE2S", "USO1", "VPS4A", "VRK1", "WAPL", "WEE1", "XPO1", "YWHAE", "YWHAG", "ZW10", "ZWILCH", "ZWINT" ] }, "position": { "x": 695.2472831997342, "y": 917.6912652366562, "id": "b107dfa6-f840-4dc9-8701-8fc1fb6b2c13" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "4fcd8d93-c20b-43b3-8e69-7496c92a8df3", "name": [ "AMPLIFICATION OF SIGNAL FROM UNATTACHED KINETOCHORES VIA A MAD2 INHIBITORY SIGNAL%REACTOME DATABASE ID RELEASE 81%141444" ], "description": [ "Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal" ], "pvalue": 0.0024, "gs_type": null, "gs_size": 91, "padj": 0.031, "mcode_cluster_id": "Cluster 15", "NES": -1.5716, "genes": [ "AHCTF1", "B9D2", "BIRC5", "BUB1", "BUB1B", "BUB3", "CDC20", "CDCA8", "CENPA", "CENPC", "CENPE", "CENPF", "CENPH", "CENPI", "CENPK", "CENPL", "CENPM", "CENPN", "CENPO", "CENPP", "CENPQ", "CENPS", "CENPT", "CENPU", "CKAP5", "CLASP1", "CLASP2", "CLIP1", "DSN1", "DYNC1H1", "DYNC1I1", "DYNC1I2", "DYNC1LI1", "DYNC1LI2", "DYNLL1", "DYNLL2", "ERCC6L", "INCENP", "ITGB3BP", "KIF18A", "KIF2A", "KIF2B", "KIF2C", "KNL1", "KNTC1", "MAD1L1", "MAD2L1", "MAPRE1", "MIS12", "NDC80", "NDE1", "NDEL1", "NSL1", "NUDC", "NUF2", "NUP107", "NUP133", "NUP160", "NUP37", "NUP43", "NUP85", "PAFAH1B1", "PLK1", "PMF1", "PPP1CC", "PPP2CA", "PPP2CB", "PPP2R1A", "PPP2R1B", "PPP2R5A", "PPP2R5B", "PPP2R5C", "PPP2R5D", "PPP2R5E", "RANBP2", "RANGAP1", "RCC2", "RPS27", "SEC13", "SGO1", "SGO2", "SKA1", "SKA2", "SPC24", "SPC25", "SPDL1", "TAOK1", "XPO1", "ZW10", "ZWILCH", "ZWINT" ] }, "position": { "x": 536.6291469681711, "y": 1166.528417340852, "id": "4fcd8d93-c20b-43b3-8e69-7496c92a8df3", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "45a27bfb-4f1f-4536-a478-b438139fafd5", "name": [ "CELLULAR RESPONSE TO LIPOPOLYSACCHARIDE%GOBP%GO:0071222" ], "description": [ "cellular response to lipopolysaccharide" ], "pvalue": 0, "gs_type": null, "gs_size": 126, "padj": 0.0012, "mcode_cluster_id": "Cluster 9", "NES": -1.8181, "genes": [ "ACOD1", "ADAM9", "ANKRD1", "AXL", "BCL10", "BPI", "CACTIN", "CARD16", "CARD17P", "CASP1", "CASP7", "CCL2", "CCR5", "CD14", "CD180", "CD274", "CD6", "CD68", "CD80", "CD86", "CDC73", "CHMP5", "CTR9", "CTSG", "CX3CR1", "CXCL1", "CXCL10", "CXCL11", "CXCL13", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "DAB2IP", "DEFA1B", "DEFA3", "DEFA4", "DEFA5", "DEFA6", "GBP2", "GBP3", "GFI1", "GIT1", "GSTP1", "HCK", "HMGB1", "HMGB2", "IL10", "IL1A", "IL1B", "IL1F10", "IL36A", "IL36B", "IL36G", "IL36RN", "IL37", "IL6", "IRAK1", "IRAK2", "IRAK3", "IRAK4", "IRGM", "LBP", "LDOC1", "LILRB1", "LILRB2", "LY96", "LYN", "MAPK14", "MAPK8", "MEF2C", "MMP3", "MMP8", "MMP9", "MTDH", "MYD88", "NFKB1", "NFKBIB", "NFKBIL1", "NLRP3", "NLRP7", "NOD2", "NR1D1", "NR1H3", "NUGGC", "PABPN1", "PAF1", "PDCD1LG2", "PDCD4", "PDE4B", "PF4", "PF4V1", "PLAA", "PLCG2", "PPBP", "PPM1E", "PRKCE", "PTPN22", "PYCARD", "RELA", "RHOA", "SBNO2", "SELENOS", "SERPINE1", "SHPK", "SIRPA", "STAP1", "TICAM1", "TICAM2", "TLR4", "TNFAIP3", "TNFRSF1B", "TNFSF4", "TNIP1", "TNIP2", "TNIP3", "TRAF6", "TRIM41", "UPF1", "VIM", "WNT5A", "XBP1", "ZC3H12A", "ZFP36" ] }, "position": { "x": 3121.087761575015, "y": 80.6429608772684, "id": "45a27bfb-4f1f-4536-a478-b438139fafd5", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "952816d8-b779-4e6e-bb9b-a4dce9e781dc", "name": [ "TOLL LIKE RECEPTOR 7 8 (TLR7 8) CASCADE%REACTOME%R-HSA-168181.8" ], "description": [ "Toll Like Receptor 7 8 (TLR7 8) Cascade" ], "pvalue": 0.0041, "gs_type": null, "gs_size": 101, "padj": 0.0438, "mcode_cluster_id": "Cluster 13", "NES": -1.5243, "genes": [ "AGER", "ALPK1", "APP", "ATF1", "ATF2", "BTRC", "CASP8", "CD14", "CHUK", "CUL1", "DUSP3", "DUSP4", "DUSP6", "DUSP7", "ECSIT", "ELK1", "FBXW11", "FOS", "HMGB1", "IKBIP", "IKBKB", "IKBKG", "IRAK1", "IRAK2", "IRAK4", "IRF7", "JUN", "LRRC14", "LY96", "MAP2K1", "MAP2K3", "MAP2K4", "MAP2K6", "MAP2K7", "MAP3K1", "MAP3K7", "MAP3K8", "MAPK1", "MAPK10", "MAPK11", "MAPK14", "MAPK3", "MAPK7", "MAPK8", "MAPK9", "MAPKAPK2", "MAPKAPK3", "MEF2A", "MEF2C", "MYD88", "N4BP1", "NFKB1", "NFKB2", "NFKBIA", "NFKBIB", "NKIRAS1", "NKIRAS2", "NLRC5", "NLRX1", "NOD1", "NOD2", "PELI1", "PELI2", "PELI3", "PPP2CA", "PPP2CB", "PPP2R1A", "PPP2R1B", "PPP2R5D", "RELA", "RIPK2", "RPS27A", "RPS6KA1", "RPS6KA2", "RPS6KA3", "RPS6KA5", "S100A12", "S100B", "SAA1", "SKP1", "TAB1", "TAB2", "TAB3", "TICAM1", "TICAM2", "TIFA", "TLR4", "TLR7", "TLR8", "TLR9", "TNIP2", "TP53", "TRAF6", "UBA52", "UBB", "UBC", "UBE2N", "UBE2V1", "USP14", "USP18", "VRK3" ] }, "position": { "x": 138.23752120749984, "y": 1073.02531214299, "id": "952816d8-b779-4e6e-bb9b-a4dce9e781dc", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "50a01d24-188a-423c-a85c-bf70dca751ff", "name": [ "REGULATION OF IGF ACTIVITY BY IGFBP%REACTOME%R-HSA-381426.4" ], "description": [ "Regulation of IGF Activity by IGFBP" ], "pvalue": 0, "gs_type": null, "gs_size": 124, "padj": 0.0007, "mcode_cluster_id": null, "NES": -1.8674, "genes": [ "ADAM10", "AFP", "AHSG", "ALB", "AMBN", "AMELX", "AMTN", "ANO8", "APLP2", "APOA1", "APOA2", "APOA5", "APOB", "APOE", "APOL1", "APP", "BMP15", "BMP4", "BPIFB2", "C3", "C4A", "CALU", "CCN1", "CDH2", "CHGB", "CHRDL1", "CKAP4", "CP", "CSF1", "CST3", "CTSG", "DMP1", "DNAJC3", "ENAM", "EVA1A", "F2", "F5", "FAM20A", "FAM20C", "FBN1", "FGA", "FGF23", "FGG", "FN1", "FSTL1", "FSTL3", "FUCA2", "GAS6", "GOLM1", "GPC3", "GZMH", "HRC", "HSP90B1", "IGF1", "IGF2", "IGFALS", "IGFBP1", "IGFBP2", "IGFBP3", "IGFBP4", "IGFBP5", "IGFBP6", "IGFBP7", "IL6", "ITIH2", "KLK1", "KLK13", "KLK2", "KLK3", "KNG1", "KTN1", "LAMB1", "LAMB2", "LAMC1", "LGALS1", "LTBP1", "MATN3", "MBTPS1", "MELTF", "MEN1", "MEPE", "MFGE8", "MGAT4A", "MIA3", "MMP1", "MMP2", "MSLN", "MXRA8", "NOTUM", "NUCB1", "P4HB", "PAPPA", "PAPPA2", "PCSK9", "PDIA6", "PENK", "PLG", "PNPLA2", "PRKCSH", "PROC", "PRSS23", "QSOX1", "RCN1", "SCG2", "SCG3", "SDC2", "SERPINA1", "SERPINA10", "SERPINC1", "SERPIND1", "SHISA5", "SPARCL1", "SPP1", "SPP2", "STC2", "TF", "TGOLN2", "TIMP1", "TMEM132A", "TNC", "VCAN", "VGF", "VWA1", "WFS1" ] }, "position": { "x": 611.1082912442114, "y": 1981.9975082806777, "id": "50a01d24-188a-423c-a85c-bf70dca751ff" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "ad525c41-f059-4514-991f-8380b2a9fd96", "name": [ "PROGRAMMED CELL DEATH%REACTOME DATABASE ID RELEASE 81%5357801" ], "description": [ "Programmed Cell Death" ], "pvalue": 1.2969e-7, "gs_type": null, "gs_size": 207, "padj": 0.0000074634, "mcode_cluster_id": null, "NES": -1.8581, "genes": [ "ACIN1", "ADD1", "AKT1", "AKT2", "AKT3", "APAF1", "APC", "APIP", "APPL1", "ARHGAP10", "AVEN", "BAD", "BAK1", "BAX", "BBC3", "BCAP31", "BCL2", "BCL2L1", "BCL2L11", "BID", "BIRC2", "BIRC3", "BMF", "BMX", "C1QBP", "CARD8", "CASP1", "CASP3", "CASP4", "CASP5", "CASP6", "CASP7", "CASP8", "CASP9", "CD14", "CDC37", "CDH1", "CDKN2A", "CHMP2A", "CHMP2B", "CHMP3", "CHMP4A", "CHMP4B", "CHMP4C", "CHMP6", "CHMP7", "CLSPN", "CTNNB1", "CYCS", "DAPK1", "DAPK2", "DAPK3", "DBNL", "DCC", "DFFA", "DFFB", "DIABLO", "DNM1L", "DSG1", "DSG2", "DSG3", "DSP", "DYNLL1", "DYNLL2", "E2F1", "ELANE", "FADD", "FAS", "FASLG", "FLOT1", "FLOT2", "FNTA", "GAS2", "GSDMD", "GSDME", "GSN", "GZMB", "H1-0", "H1-1", "H1-2", "H1-3", "H1-4", "H1-5", "HMGB1", "HMGB2", "HSP90AA1", "IL18", "IL1A", "IL1B", "IRF1", "IRF2", "ITCH", "KPNA1", "KPNB1", "LMNB1", "LY96", "MAGED1", "MAPK1", "MAPK3", "MAPK8", "MAPT", "MLKL", "NMT1", "OCLN", "OGT", "OMA1", "OPA1", "PAK2", "PDCD6IP", "PELI1", "PKP1", "PLEC", "PMAIP1", "PPP1R13B", "PPP3CC", "PPP3R1", "PRKCD", "PRKCQ", "PRKN", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "PTK2", "RIPK1", "RIPK3", "ROCK1", "RPS27A", "SATB1", "SDCBP", "SEM1", "SFN", "SPTAN1", "STAT3", "STK24", "STK26", "STUB1", "TFDP1", "TFDP2", "TICAM1", "TICAM2", "TJP1", "TJP2", "TLR4", "TNFRSF10A", "TNFRSF10B", "TNFSF10", "TP53", "TP53BP2", "TP63", "TP73", "TRADD", "UACA", "UBA52", "UBB", "UBC", "UBE2L3", "UNC5A", "UNC5B", "VIM", "XIAP", "YWHAB", "YWHAE", "YWHAG", "YWHAH", "YWHAQ", "YWHAZ" ] }, "position": { "x": 332.8105111626183, "y": 470.6120917661343, "id": "ad525c41-f059-4514-991f-8380b2a9fd96" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "b8d7130a-86b7-4114-aba2-a385bac0857e", "name": [ "PROTEIN LOCALIZATION TO LYSOSOME%GOBP%GO:0061462" ], "description": [ "protein localization to lysosome" ], "pvalue": 0.0036, "gs_type": null, "gs_size": 48, "padj": 0.0409, "mcode_cluster_id": "Cluster 23", "NES": 1.6772, "genes": [ "AP3D1", "AP3M1", "AP4M1", "ATG14", "ATP13A2", "BECN1", "CACNG2", "CACNG3", "CACNG4", "CACNG5", "CACNG7", "CACNG8", "CD81", "CLU", "GCC2", "GGA3", "GLMP", "GNPTAB", "GNPTG", "HGS", "KICS2", "KPTN", "LAMP2", "LAMTOR4", "LAMTOR5", "LAPTM5", "LMBRD1", "M6PR", "MFSD1", "NAGPA", "NCOA4", "NEDD4", "PIK3C3", "PIK3R4", "PXK", "RAB7A", "RNF128", "RRAGA", "RRAGC", "RTN4", "SCARB2", "SH3BP4", "SNX16", "SORL1", "SZT2", "VPS4A", "WASH3P", "ZFYVE16" ] }, "position": { "x": 3790.3416335929164, "y": 1873.1146225377818, "id": "b8d7130a-86b7-4114-aba2-a385bac0857e", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "name": [ "RESPONSE OF EIF2AK4 (GCN2) TO AMINO ACID DEFICIENCY%REACTOME%R-HSA-9633012.4" ], "description": [ "Response of EIF2AK4 (GCN2) to amino acid deficiency" ], "pvalue": 6.6775e-17, "gs_type": null, "gs_size": 102, "padj": 1.0222e-14, "mcode_cluster_id": "Cluster 2", "NES": 2.706, "genes": [ "ASNS", "ATF2", "ATF3", "ATF4", "CEBPB", "CEBPG", "DDIT3", "EIF2AK4", "EIF2S1", "EIF2S2", "EIF2S3", "FAU", "GCN1", "IMPACT", "RPL10", "RPL10A", "RPL10L", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL22L1", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL26L1", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL36AL", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL39L", "RPL3L", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "TRIB3", "UBA52" ] }, "position": { "x": 713.8572176669825, "y": 320.06445268321875, "id": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "1d6c39cb-5c28-4140-a4e0-0ebe92e64bbd", "name": [ "PROTEIN-CONTAINING COMPLEX REMODELING%GOBP%GO:0034367" ], "description": [ "protein-containing complex remodeling" ], "pvalue": 0.0027, "gs_type": null, "gs_size": 31, "padj": 0.0327, "mcode_cluster_id": "Cluster 21", "NES": -1.8384, "genes": [ "ABCA5", "ABCG1", "AGT", "AGTR1", "APOA1", "APOA2", "APOA4", "APOB", "APOC1", "APOC2", "APOC3", "APOE", "APOM", "CETP", "FURIN", "GTF2E1", "LCAT", "LIPC", "LIPG", "LPL", "MPO", "PCSK5", "PCSK6", "PLA2G10", "PLA2G2A", "PLA2G3", "PLA2G5", "PLA2G7", "PLTP", "SCARB1", "TAF8" ] }, "position": { "x": 2616.3865870595464, "y": 1236.5284173408522, "id": "1d6c39cb-5c28-4140-a4e0-0ebe92e64bbd", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "a2e31996-d3bf-4020-9f25-afd00d14d20f", "name": [ "RUNX2 REGULATES OSTEOBLAST DIFFERENTIATION%REACTOME DATABASE ID RELEASE 81%8940973" ], "description": [ "RUNX2 regulates osteoblast differentiation" ], "pvalue": 0.0012, "gs_type": null, "gs_size": 23, "padj": 0.019, "mcode_cluster_id": null, "NES": 1.8731, "genes": [ "ABL1", "AR", "BGLAP", "CBFB", "COL1A1", "GLI3", "HDAC3", "HDAC6", "HES1", "HEY1", "HEY2", "MAF", "MAPK1", "MAPK3", "RB1", "SATB2", "SP7", "SRC", "UCMA", "WWTR1", "YAP1", "YES1", "ZNF521" ] }, "position": { "x": 3764.539072651805, "y": 2118.9446642487483, "id": "a2e31996-d3bf-4020-9f25-afd00d14d20f" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "62bfb3a3-bddc-4afb-abdd-b4c049d03d35", "name": [ "DIGESTIVE TRACT MORPHOGENESIS%GOBP%GO:0048546" ], "description": [ "digestive tract morphogenesis" ], "pvalue": 0.0006, "gs_type": null, "gs_size": 22, "padj": 0.0103, "mcode_cluster_id": "Cluster 34", "NES": -1.8927, "genes": [ "AGR2", "AHI1", "BBS7", "DACT1", "EPHB3", "FGFR2", "FOXF1", "GATA4", "GLI1", "GLI2", "ID2", "NIPBL", "PDGFRA", "PERCC1", "RBPMS2", "SFRP5", "SIX2", "SOX11", "SOX17", "STRA6", "TCF21", "WNT11" ] }, "position": { "x": 623.3493901090615, "y": 1843.3059876957009, "id": "62bfb3a3-bddc-4afb-abdd-b4c049d03d35", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "091f1214-97f7-456a-b701-2dd44d937d24", "name": [ "CELLULAR RESPONSE TO OXYGEN LEVELS%GOBP%GO:0071453" ], "description": [ "cellular response to oxygen levels" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 90, "padj": 0.0043, "mcode_cluster_id": "Cluster 14", "NES": 1.8211, "genes": [ "ACAA2", "ADAM8", "ADO", "AK4", "ANGPT4", "AQP1", "AQP3", "ATG7", "ATP6AP1", "ATP6V0A2", "ATP6V0D1", "ATP6V1A", "ATP6V1G1", "BAD", "BMP7", "BNIP3", "BNIP3L", "CAV1", "CCDC115", "CITED2", "CPEB1", "CPEB2", "CPEB4", "EGLN1", "EGLN2", "EGLN3", "EPAS1", "FABP1", "FAM162A", "FAS", "FMN2", "FOXO1", "GATA6", "HIF1A", "HILPDA", "HIPK2", "HP1BP3", "HYOU1", "KCND2", "LMNA", "MDM2", "MDM4", "MGARP", "MLST8", "MT3", "MTOR", "MYC", "NDNF", "NDRG1", "NDUFS2", "NFE2L2", "NGB", "NKX3-1", "NOP53", "NOTCH1", "NPEPPS", "OPRD1", "P4HB", "PDK1", "PDK3", "PGK1", "PICK1", "PINK1", "PLK3", "PMAIP1", "PPARG", "PTGIS", "PTGS2", "RGCC", "RORA", "RPTOR", "SCN2A", "SFRP1", "SIRT1", "SIRT2", "SLC8A3", "SUV39H1", "SUV39H2", "TBL2", "TERT", "TGFB1", "TIGAR", "TMEM199", "TP53", "TSC1", "TWIST1", "UBQLN1", "VEGFA", "VHL", "ZFP36L1" ] }, "position": { "x": 3589.049003966163, "y": 1898.5551115744852, "id": "091f1214-97f7-456a-b701-2dd44d937d24", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "name": [ "RUNX1 REGULATES TRANSCRIPTION OF GENES INVOLVED IN DIFFERENTIATION OF HSCS%REACTOME DATABASE ID RELEASE 81%8939236" ], "description": [ "RUNX1 regulates transcription of genes involved in differentiation of HSCs" ], "pvalue": 0.0005, "gs_type": null, "gs_size": 97, "padj": 0.009, "mcode_cluster_id": "Cluster 1", "NES": -1.6999, "genes": [ "ABL1", "CBFB", "CCNH", "CDK7", "GATA1", "GATA2", "GATA3", "H2AB1", "H2AC14", "H2AC19", "H2AC20", "H2AC7", "H2AC8", "H2AJ", "H2AX", "H2AZ2", "H2BC1", "H2BC11", "H2BC12", "H2BC12L", "H2BC13", "H2BC14", "H2BC15", "H2BC17", "H2BC21", "H2BC26", "H2BC3", "H2BC5", "H2BC8", "H2BC9", "H3-3B", "H3C15", "H3C8", "H4C9", "ITCH", "KMT2A", "LDB1", "LMO1", "LMO2", "MNAT1", "MYB", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RPS27A", "RUNX1", "SEM1", "SPI1", "TAL1", "TCF12", "TCF3", "TP73", "UBA52", "UBB", "UBC", "YAP1" ] }, "position": { "x": 493.9824781142835, "y": 829.9770645538853, "id": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "a0942c7c-3240-4f5e-8f88-d2e519f5314e", "name": [ "CYTOKINE-MEDIATED SIGNALING PATHWAY%GOBP%GO:0019221" ], "description": [ "cytokine-mediated signaling pathway" ], "pvalue": 3.6827e-7, "gs_type": null, "gs_size": 310, "padj": 0, "mcode_cluster_id": "Cluster 33", "NES": -1.8736, "genes": [ "ACKR3", "ACTN4", "ADIPOR1", "ADIPOR2", "AIM2", "AKT1", "APPL1", "APPL2", "AZI2", "BBS2", "BBS4", "BIRC2", "BIRC3", "CARD14", "CBL", "CCL1", "CCL11", "CCL13", "CCL14", "CCL15", "CCL16", "CCL17", "CCL18", "CCL19", "CCL2", "CCL20", "CCL21", "CCL22", "CCL23", "CCL24", "CCL25", "CCL26", "CCL3", "CCL3L3", "CCL4", "CCL4L2", "CCL5", "CCL7", "CCL8", "CCR1", "CCR2", "CD300LF", "CD4", "CEACAM1", "CEBPA", "CHUK", "CIB1", "CLCF1", "CNTF", "CNTFR", "COMMD7", "CRLF1", "CRLF2", "CSF1R", "CSF2", "CSF2RA", "CSF2RB", "CSF3", "CSF3R", "CSNK2B", "CTR9", "CTSG", "CX3CL1", "CXCL1", "CXCL10", "CXCL11", "CXCL12", "CXCL13", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "CXCR2", "CXCR4", "DUOX1", "DUOX2", "EBI3", "EDA", "EDA2R", "EDAR", "EDN2", "EGR1", "EIF5A", "ENTREP1", "EPO", "EPOR", "EREG", "F3", "FCER1G", "FER", "FLT3", "FOXC1", "FOXO3", "GH1", "GHR", "GPR35", "GPR75", "GREM2", "HAX1", "HCK", "HCLS1", "HDAC4", "IFI27", "IFITM1", "IFITM2", "IFITM3", "IFNA10", "IFNA13", "IFNA14", "IFNA16", "IFNA17", "IFNA2", "IFNA21", "IFNA4", "IFNA5", "IFNA6", "IFNA7", "IFNA8", "IFNAR1", "IFNAR2", "IFNB1", "IFNE", "IFNG", "IFNGR1", "IFNGR2", "IFNK", "IFNL1", "IFNL2", "IFNL3", "IFNL4", "IFNLR1", "IFNW1", "IKBKB", "IKBKE", "IL10", "IL10RA", "IL10RB", "IL11", "IL11RA", "IL12A", "IL12B", "IL12RB1", "IL12RB2", "IL13RA1", "IL13RA2", "IL15", "IL15RA", "IL17A", "IL17F", "IL17RA", "IL17RC", "IL18", "IL18R1", "IL18RAP", "IL1A", "IL1B", "IL1F10", "IL1R1", "IL1RAP", "IL1RL1", "IL2", "IL20RA", "IL20RB", "IL21R", "IL22RA1", "IL22RA2", "IL23R", "IL27RA", "IL2RA", "IL2RB", "IL2RG", "IL3", "IL31RA", "IL33", "IL34", "IL36A", "IL36B", "IL36G", "IL37", "IL3RA", "IL4", "IL4R", "IL5", "IL5RA", "IL6", "IL6R", "IL6ST", "IL7", "IL7R", "IL9R", "ILK", "IRAK1", "IRAK2", "IRAK3", "IRAK4", "IRF1", "IRF5", "IRS1", "JAGN1", "JAK1", "JAK2", "JAK3", "KIT", "LEP", "LEPR", "LIFR", "LILRA1", "LILRA2", "LILRA3", "LILRA4", "LILRA5", "LILRB1", "LILRB2", "LILRB4", "LIMS1", "LRP8", "LYN", "MAP3K7", "MAPK3", "MAVS", "MFAP3", "MKKS", "MPL", "MT3", "MX1", "MYD88", "NFKBIA", "NUMBL", "OAS1", "OAS2", "OASL", "OSM", "OSMR", "OXSR1", "P4HB", "PDGFB", "PF4", "PF4V1", "PIK3R1", "PLCB1", "PLP2", "PLVAP", "PPBP", "PRKACA", "PRL", "PRLR", "PTK2B", "PTPN11", "PTPN6", "PTPRJ", "PYCARD", "RAF1", "RBM15", "RELA", "RHEX", "RIPK1", "RPS6KA4", "RPS6KA5", "RRAGA", "SH2B3", "SIRT1", "SMAD4", "SOCS1", "SOCS5", "SOS1", "SP100", "SPI1", "SRC", "ST18", "STAT1", "STAT2", "STAT3", "STAT4", "STAT5A", "STAT5B", "STAT6", "STK39", "SYK", "TANK", "TBK1", "TBKBP1", "TFF2", "THPO", "TMSB4X", "TNF", "TNFRSF11A", "TNFRSF1A", "TNFRSF1B", "TNFSF11", "TNFSF18", "TNIP2", "TOLLIP", "TP53", "TRADD", "TRAF1", "TRAF2", "TRAF3", "TRAF3IP2", "TRAF5", "TRAF6", "TREM2", "TSLP", "TXNDC17", "TYK2", "UGCG", "WNK1", "XCL1", "XCL2" ] }, "position": { "x": 2840.969170289042, "y": 1236.5284173408518, "id": "a0942c7c-3240-4f5e-8f88-d2e519f5314e", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "e7cab3f9-f8ee-4a12-9694-bb728cda0ca7", "name": [ "SIGNALING BY INTERLEUKINS%REACTOME%R-HSA-449147.13" ], "description": [ "Signaling by Interleukins" ], "pvalue": 0, "gs_type": null, "gs_size": 458, "padj": 0.0007, "mcode_cluster_id": null, "NES": -1.5665, "genes": [ "AGER", "AIP", "AKT1", "ALOX15", "ALOX5", "ALPK1", "ANXA1", "ANXA2", "APP", "ARF1", "ATF1", "ATF2", "BATF", "BCL2", "BCL2L1", "BCL6", "BIRC5", "BLNK", "BOLA2B", "BRWD1", "BTRC", "CA1", "CANX", "CAPZA1", "CASP1", "CASP3", "CASP8", "CBL", "CCL11", "CCL19", "CCL2", "CCL20", "CCL22", "CCL3", "CCL3L3", "CCL4", "CCL5", "CCND1", "CCR1", "CCR2", "CCR5", "CD36", "CD4", "CD80", "CD86", "CDC42", "CDKN1A", "CEBPD", "CFL1", "CHUK", "CISH", "CLCF1", "CNN2", "CNTF", "CNTFR", "COL1A2", "CRK", "CRKL", "CRLF1", "CRLF2", "CSF1", "CSF1R", "CSF2", "CSF2RA", "CSF2RB", "CSF3", "CSF3R", "CTF1", "CTSG", "CUL1", "CXCL1", "CXCL10", "CXCL2", "CXCL8", "DUSP3", "DUSP4", "DUSP6", "DUSP7", "EBI3", "ELK1", "F13A1", "FASLG", "FBXW11", "FCER2", "FGF2", "FN1", "FOS", "FOXO1", "FOXO3", "FPR1", "FSCN1", "FYN", "GAB2", "GATA3", "GRB2", "GSDMD", "GSTA2", "GSTO1", "H3C15", "H3C8", "HAVCR2", "HCK", "HGF", "HIF1A", "HMGB1", "HMOX1", "HNRNPA2B1", "HNRNPDL", "HNRNPF", "HSP90AA1", "HSP90B1", "HSPA8", "HSPA9", "ICAM1", "IFNG", "IFNL1", "IFNL2", "IFNL3", "IFNLR1", "IGHE", "IGHG1", "IGHG4", "IKBIP", "IKBKB", "IKBKG", "IL10", "IL10RA", "IL10RB", "IL11", "IL11RA", "IL12A", "IL12B", "IL12RB1", "IL12RB2", "IL13", "IL13RA1", "IL13RA2", "IL15", "IL15RA", "IL16", "IL17A", "IL17C", "IL17F", "IL17RA", "IL17RB", "IL17RC", "IL17RE", "IL18", "IL18BP", "IL18R1", "IL18RAP", "IL19", "IL1A", "IL1B", "IL1F10", "IL1R1", "IL1R2", "IL1RAPL1", "IL1RL1", "IL1RL2", "IL1RN", "IL2", "IL20", "IL20RA", "IL20RB", "IL21", "IL21R", "IL22", "IL22RA1", "IL22RA2", "IL23A", "IL23R", "IL24", "IL25", "IL26", "IL27", "IL27RA", "IL2RA", "IL2RB", "IL2RG", "IL3", "IL31", "IL31RA", "IL32", "IL33", "IL34", "IL36A", "IL36B", "IL36G", "IL36RN", "IL37", "IL3RA", "IL4", "IL4R", "IL5", "IL5RA", "IL6", "IL6R", "IL6ST", "IL7", "IL7R", "IL9", "IL9R", "INPP5D", "INPPL1", "IRAK1", "IRAK2", "IRAK3", "IRAK4", "IRF4", "IRS1", "IRS2", "ITGAM", "ITGAX", "ITGB1", "ITGB2", "JAK1", "JAK2", "JAK3", "JUN", "JUNB", "LAMA5", "LBP", "LCK", "LCN2", "LCP1", "LGALS9", "LIF", "LIFR", "LMNB1", "LRRC14", "LYN", "MAOA", "MAP2K1", "MAP2K3", "MAP2K4", "MAP2K6", "MAP2K7", "MAP3K3", "MAP3K7", "MAP3K8", "MAPK1", "MAPK10", "MAPK11", "MAPK14", "MAPK3", "MAPK7", "MAPK8", "MAPK9", "MAPKAPK2", "MAPKAPK3", "MCL1", "MEF2A", "MEF2C", "MIF", "MMP1", "MMP2", "MMP3", "MMP9", "MSN", "MTAP", "MUC1", "MYC", "MYD88", "N4BP1", "NANOG", "NDN", "NFKB1", "NFKB2", "NFKBIA", "NFKBIB", "NKIRAS1", "NKIRAS2", "NLRC5", "NLRX1", "NOD1", "NOD2", "NOS2", "OPRD1", "OPRM1", "OSM", "OSMR", "P4HB", "PAK2", "PDCD4", "PELI1", "PELI2", "PELI3", "PIK3CA", "PIK3CB", "PIK3CD", "PIK3R1", "PIK3R2", "PIK3R3", "PIM1", "PITPNA", "POMC", "POU2F1", "PPIA", "PPP2CA", "PPP2CB", "PPP2R1A", "PPP2R1B", "PPP2R5D", "PRKACA", "PRTN3", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "PTAFR", "PTGS2", "PTK2B", "PTPN11", "PTPN12", "PTPN13", "PTPN14", "PTPN18", "PTPN2", "PTPN20", "PTPN23", "PTPN4", "PTPN5", "PTPN6", "PTPN7", "PTPN9", "PTPRZ1", "RAG1", "RAG2", "RALA", "RAP1B", "RAPGEF1", "RBX1", "RELA", "RHOU", "RIPK2", "RORA", "RORC", "RPLP0", "RPS27A", "RPS6KA1", "RPS6KA2", "RPS6KA3", "RPS6KA5", "S100A12", "S100B", "S1PR1", "SAA1", "SDC1", "SEM1", "SERPINB2", "SHC1", "SIGIRR", "SKP1", "SMAD3", "SMARCA4", "SNAP25", "SNRPA1", "SOCS1", "SOCS2", "SOCS3", "SOCS5", "SOD1", "SOD2", "SOS1", "SOS2", "SOX2", "SQSTM1", "STAT1", "STAT2", "STAT3", "STAT4", "STAT5A", "STAT5B", "STAT6", "STX1A", "STX3", "STX4", "STXBP2", "SYK", "TAB1", "TAB2", "TAB3", "TALDO1", "TBK1", "TCP1", "TEC", "TGFB1", "TIFA", "TIMP1", "TNF", "TNFRSF1A", "TNFRSF1B", "TNIP2", "TOLLIP", "TP53", "TRAF6", "TSLP", "TWIST1", "TXLNA", "TYK2", "UBA52", "UBB", "UBC", "UBE2N", "UBE2V1", "USP14", "USP18", "VAMP2", "VAMP7", "VAV1", "VCAM1", "VEGFA", "VIM", "VRK3", "YES1", "YWHAZ", "ZEB1" ] }, "position": { "x": 15, "y": 934.412493715861, "id": "e7cab3f9-f8ee-4a12-9694-bb728cda0ca7" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "069cb5a6-40b6-4158-9982-7974eca2835a", "name": [ "ANTIVIRAL MECHANISM BY IFN-STIMULATED GENES%REACTOME%R-HSA-1169410.7" ], "description": [ "Antiviral mechanism by IFN-stimulated genes" ], "pvalue": 0.0000038422, "gs_type": null, "gs_size": 128, "padj": 0.0002, "mcode_cluster_id": "Cluster 38", "NES": -1.8622, "genes": [ "AAAS", "ABCE1", "ADAR", "ARIH1", "BECN1", "CDK1", "CENPS", "CENPX", "CHUK", "DHX9", "DNAJC3", "DUS2", "EIF2AK2", "EIF2S1", "EIF2S2", "EIF2S3", "EIF4A1", "EIF4A2", "EIF4A3", "EIF4E", "EIF4E2", "EIF4E3", "EIF4G1", "EIF4G2", "EIF4G3", "FAAP100", "FAAP20", "FAAP24", "FANCA", "FANCB", "FANCC", "FANCE", "FANCF", "FANCG", "FANCL", "FANCM", "FLNA", "FLNB", "HERC5", "HSPA1A", "HSPA1B", "HSPA1L", "HSPA2", "HSPA8", "IFIT1", "IKBKB", "IKBKG", "ILF2", "ILF3", "IRF3", "ISG15", "JAK1", "KPNA1", "KPNA2", "KPNA3", "KPNA4", "KPNA5", "KPNA7", "KPNB1", "MAP2K6", "MAPK3", "MAVS", "MX1", "MX2", "NCK1", "NDC1", "NEDD4", "NPM1", "NUP107", "NUP133", "NUP153", "NUP155", "NUP160", "NUP188", "NUP205", "NUP210", "NUP214", "NUP35", "NUP37", "NUP42", "NUP43", "NUP50", "NUP54", "NUP62", "NUP85", "NUP88", "NUP93", "OAS1", "OAS2", "OAS3", "OASL", "PDE12", "PIN1", "PLCG1", "POM121", "POM121C", "PPM1B", "PPP2CA", "PPP2CB", "PPP2R1A", "PPP2R1B", "PPP2R5A", "PRKRA", "PTPN2", "RAE1", "RANBP2", "RIGI", "RNASEL", "RPS27A", "SEC13", "SNCA", "SPHK1", "STAT1", "STAT3", "SUMO1", "TARBP2", "TP53", "TPR", "TRIM25", "UBA52", "UBA7", "UBB", "UBC", "UBE2E1", "UBE2I", "UBE2L6", "UBE2N", "USP18" ] }, "position": { "x": 110.97707480909817, "y": 1278.616430946819, "id": "069cb5a6-40b6-4158-9982-7974eca2835a", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "529ebb5f-f6b7-40a7-a304-1c4dbdbe67a5", "name": [ "DEFENSE RESPONSE TO VIRUS%GOBP%GO:0051607" ], "description": [ "defense response to virus" ], "pvalue": 8.6214e-21, "gs_type": null, "gs_size": 193, "padj": 7.1644e-18, "mcode_cluster_id": "Cluster 17", "NES": -2.6581, "genes": [ "ABCC9", "ACOD1", "AGBL4", "AGBL5", "AICDA", "AIM2", "AKAP1", "APOBEC3A", "APOBEC3B", "APOBEC3C", "APOBEC3D", "APOBEC3F", "APOBEC3G", "APOBEC3H", "ATAD3A", "ATG7", "AZI2", "AZU1", "BCL2", "BCL2L1", "BNIP3", "BNIP3L", "BPIFA1", "BST2", "CARD8", "CASP1", "CD207", "CGAS", "CHMP3", "CLPB", "CNOT7", "CXCL10", "DDIT4", "DDX56", "DDX60", "DDX60L", "DHX15", "DHX16", "DHX58", "DUS2", "EIF2AK2", "EXOSC4", "EXOSC5", "F2RL1", "FADD", "FCN3", "G3BP1", "GARIN5A", "GBP2", "GBP5", "GBP7", "IFI16", "IFI27", "IFI44L", "IFI6", "IFIH1", "IFIT1", "IFIT1B", "IFIT2", "IFIT3", "IFIT5", "IFITM1", "IFITM2", "IFITM3", "IFNA2", "IFNAR2", "IFNB1", "IFNE", "IFNL1", "IFNL2", "IFNL3", "IFNL4", "IFNLR1", "IKBKE", "IL21", "IL6", "IRF1", "IRF2", "IRF3", "IRF7", "ISG15", "ISG20", "LILRB1", "LYST", "MAP3K14", "MARCHF2", "MAVS", "MBL2", "MICA", "MID2", "MLKL", "MORC3", "MOV10", "MX1", "MX2", "MYD88", "NCBP1", "NCBP3", "NCK1", "NDUFAF4", "NLRC5", "NLRP1", "NLRP6", "NLRP9", "NMB", "NMBR", "NT5C3A", "OAS1", "OAS2", "OAS3", "OASL", "OPRK1", "PDE12", "PHB1", "PHB2", "PLA2G10", "PLSCR1", "PMAIP1", "PML", "PQBP1", "PRF1", "PRKRA", "PTPRC", "PYCARD", "RAB2B", "RELA", "RIGI", "RIPK3", "RNASE1", "RNASE2", "RNASE6", "RNASEL", "RNF135", "RNF185", "RPSA", "RSAD2", "RTP4", "SAMHD1", "SENP7", "SERINC3", "SERINC5", "SETD2", "SHFL", "SKP2", "SLFN11", "SLFN13", "SMARCA5", "STAT1", "STAT2", "STING1", "TANK", "TBK1", "TBKBP1", "TLR2", "TLR3", "TLR7", "TLR8", "TLR9", "TNF", "TRAF3", "TRAF6", "TRIM11", "TRIM13", "TRIM15", "TRIM21", "TRIM25", "TRIM26", "TRIM28", "TRIM31", "TRIM32", "TRIM35", "TRIM41", "TRIM5", "TRIM52", "TRIM56", "TRIM6", "TRIM7", "TRIM8", "TTC4", "UAP1", "UBE2N", "UBE2W", "USP18", "USP20", "USP27X", "USP29", "USP44", "ZBP1", "ZCCHC3", "ZDHHC1", "ZDHHC11", "ZMYND11", "ZNFX1" ] }, "position": { "x": 2782.8973040015208, "y": 355.8061051525507, "id": "529ebb5f-f6b7-40a7-a304-1c4dbdbe67a5", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "402cb73e-6374-4476-abf3-2f964cdcdcfd", "name": [ "SKELETAL SYSTEM DEVELOPMENT%GOBP%GO:0001501" ], "description": [ "skeletal system development" ], "pvalue": 0.0044, "gs_type": null, "gs_size": 263, "padj": 0.0465, "mcode_cluster_id": null, "NES": -1.4406, "genes": [ "ACAN", "ADAMTS4", "AHSG", "AKAP13", "ALPL", "ALX1", "ALX4", "AMELX", "ANKH", "ANKRD11", "ANXA2", "ARSL", "ATG9A", "ATG9B", "ATP6AP1", "ATP7A", "BCAN", "BGLAP", "BMP1", "BMP2", "BMP3", "BMP4", "BMP5", "BMP6", "BMP7", "BMP8B", "BMPR1B", "BMPR2", "BPNT2", "CCDC154", "CCN3", "CD44", "CDH11", "CER1", "CHD7", "CHI3L1", "CHRD", "CLEC3A", "CMKLR1", "CNMD", "COL10A1", "COL11A2", "COL13A1", "COL18A1", "COL19A1", "COL1A1", "COL1A2", "COL27A1", "COL2A1", "COL9A2", "COMP", "CREB3L2", "CTNNB1", "CYP26B1", "DCANP1", "DDR2", "DDRGK1", "DEAF1", "DLL3", "DLX5", "DLX6", "DSCAML1", "DYM", "DYNC2I1", "EBP", "EIF2AK3", "EIF4A3", "EN1", "EPYC", "ETS2", "EVC", "EXTL1", "FBN1", "FBN2", "FGF2", "FGF4", "FGF8", "FGFR1", "FGFR2", "FGFR3", "FOXC1", "FOXP1", "FREM1", "FRZB", "FUZ", "GDF10", "GDF11", "GDF2", "GDF3", "GDF5", "GH1", "GHRL", "GJA1", "GLI2", "GNAS", "GPLD1", "GUSBP1", "HAPLN1", "HAPLN2", "HAPLN3", "HAPLN4", "HES5", "HHIP", "HMGA2", "HOXA1", "HOXA11", "HOXA13", "HOXA3", "HOXA4", "HOXA9", "HOXB3", "HOXB4", "HOXB9", "HOXC4", "HOXC9", "HOXD3", "HOXD4", "HOXD9", "HYAL1", "HYAL2", "HYAL3", "IFITM5", "IGF1", "IHH", "IL17F", "INHA", "INPPL1", "IRX5", "ITGB8", "KIAA1217", "LAMA5", "LECT2", "LEP", "LEPR", "LHX1", "LRP5", "LRRC17", "LTF", "MATN3", "MBTPS2", "MEF2C", "MEGF8", "MEPE", "MGP", "MMP13", "MMP14", "MMP16", "MSX2", "MTHFD1", "MTHFD1L", "MYOC", "NCAN", "NEUROG1", "NFATC2", "NFIB", "NIPBL", "NKX3-2", "NOG", "NOTUM", "NPPC", "NPR3", "OGN", "OPTC", "OSR1", "OSR2", "OTOR", "P2RX5", "P3H1", "PAPSS1", "PAX1", "PCSK5", "PDGFRA", "PHEX", "PHOSPHO1", "PITX1", "PITX2", "PKD1", "PKDCC", "PLS3", "PLXNB1", "PPIB", "PRDX1", "PRELP", "PTGER4", "PTH", "PTH1R", "PTHLH", "PTPRC", "RAB23", "RAB33B", "RANBP3L", "RBP4", "RFLNA", "RFLNB", "RHOA", "RPL13", "RPS6KA3", "RUNX1", "RUNX2", "RUNX3", "RYR1", "SBDS", "SCX", "SEMA4D", "SFRP4", "SH3PXD2B", "SHOX", "SHOX2", "SIX1", "SKI", "SLC10A7", "SLC26A2", "SLC2A10", "SLC39A14", "SNORC", "SNX19", "SOX11", "SOX5", "SOX6", "SOX9", "SPEF2", "SPP2", "STC1", "SULF1", "SULF2", "TBX1", "TBX3", "TBX4", "TCOF1", "TEAD4", "TFAP2A", "TGFB1", "TGFB2", "TGFBR1", "TGFBR2", "TGM2", "TIFAB", "TLL1", "TMEM119", "TNFRSF11B", "TP53", "TRAPPC2", "TRIP11", "TRPS1", "TRPV4", "TSKU", "TWIST1", "UCMA", "UFD1", "VCAN", "VKORC1", "WNT1", "WNT10B", "WNT11", "WNT2B", "WNT5A", "WNT5B", "WNT7A", "WNT7B", "WNT9A", "WWOX", "XYLT1", "ZBTB16" ] }, "position": { "x": 807.5, "y": 2195.9446642487483, "id": "402cb73e-6374-4476-abf3-2f964cdcdcfd" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "dffe03dc-c1ae-46e1-97f4-f0dfb4d44880", "name": [ "NEGATIVE REGULATION OF CELL POPULATION PROLIFERATION%GOBP%GO:0008285" ], "description": [ "negative regulation of cell population proliferation" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 489, "padj": 0.0017, "mcode_cluster_id": null, "NES": -1.5068, "genes": [ "ABI1", "ACVR1C", "ACVRL1", "ADAMTS1", "ADAMTS8", "ADARB1", "ADGRB1", "ADGRG1", "ADIPOQ", "ADORA3", "ADRA1A", "AIF1", "AIMP1", "AKIRIN1", "ALDH1A2", "ALOX15B", "ALOX5", "ANG", "APC", "APLN", "APOD", "APOE", "APOH", "APP", "APPL2", "AQP11", "AR", "ARG1", "ARID2", "ATF5", "ATG101", "ATG13", "ATM", "ATOH8", "ATP5F1A", "ATP5IF1", "ATP8A2", "ATRAID", "AVPR2", "AZGP1", "B2M", "B4GALT7", "BAP1", "BMP2", "BMP4", "BMP5", "BMP7", "BMPR1B", "BMPR2", "BNIPL", "BRCA2", "BTG1", "BTG2", "BTG3", "BTG4", "BTN2A2", "CASK", "CAV1", "CAV2", "CBFA2T3", "CCL2", "CCL23", "CCL3L3", "CCN3", "CCN6", "CD200", "CD274", "CD300A", "CD33", "CDC6", "CDC73", "CDH13", "CDK10", "CDK6", "CDKN1A", "CDKN1B", "CDKN1C", "CDKN2A", "CDKN2B", "CDKN2C", "CDKN2D", "CDKN3", "CEACAM1", "CEBPA", "CEBPB", "CELF1", "CER1", "CERS2", "CGREF1", "CGRRF1", "CHD5", "CHERP", "CIB1", "CLDN19", "CLDN3", "CLMN", "CNMD", "CNN1", "CNOT7", "COL18A1", "COL4A3", "COPS8", "CR1", "CRP", "CRTAM", "CSNK2B", "CTBP1", "CTBP2", "CTCF", "CTLA4", "CTNNB1", "CTNNBIP1", "CXCL1", "CXCL8", "CYP1B1", "CYP27B1", "DAB2IP", "DDAH1", "DELEC1", "DHRS2", "DICER1", "DIS3L2", "DLC1", "DLG3", "DLG5", "DLL1", "DLL4", "DNAJA3", "DNAJB2", "DRD2", "DUSP10", "DUX4", "E2F1", "E2F3", "EEF1E1", "EFEMP2", "EIF2AK2", "EMD", "ENPP3", "ENPP7", "EPHB1", "EPPK1", "ERBB4", "EREG", "ETS1", "F2R", "FABP3", "FABP6", "FABP7", "FAP", "FBLN1", "FBXW7", "FCGR2B", "FGFBP1", "FGFR2", "FKTN", "FLCN", "FLT1", "FOXO4", "FOXP3", "FRZB", "FTH1", "FUZ", "GAS8", "GATA2", "GATA3", "GATA6", "GDF2", "GDF5", "GHRL", "GLMN", "GML", "GPER1", "GPLD1", "GPNMB", "GREM1", "GSDME", "GSTP1", "GTPBP4", "H2AC6", "H2AC8", "HES1", "HGS", "HLA-DRB1", "HLA-E", "HLA-G", "HMGA1", "HMOX1", "HNF4A", "HPN", "HRAS", "HRG", "HSPA1A", "HSPA1B", "IFI35", "IFIT3", "IFITM1", "IFNG", "IFNK", "IFNL1", "IFNLR1", "IGFBP3", "IGFBP5", "IGFBP6", "IGFBP7", "IHH", "IL10", "IL12A", "IL12B", "IL1A", "IL1B", "IL26", "IL33", "IL4I1", "IL6", "INCA1", "ING1", "ING4", "ING5", "INHBA", "INSM1", "IRF1", "IRF6", "ITGA1", "ITGB1BP1", "JAK2", "KANK2", "KAT2B", "KDF1", "KDM2B", "KLF10", "KLF11", "KLF4", "KLF9", "KRIT1", "KRT4", "LDOC1", "LGALS9", "LGALS9B", "LGALS9C", "LILRB1", "LILRB2", "LILRB4", "LMNA", "LST1", "LYN", "MAGED1", "MAGI2", "MAP2K1", "MARVELD3", "MCC", "MDM4", "MED1", "MED25", "MEF2C", "MEN1", "MFN2", "MINAR1", "MMRN2", "MN1", "MNDA", "MORC3", "MSTN", "MTSS1", "MYC", "MYO16", "MYOCD", "MYOG", "NACC2", "NCK2", "NDRG4", "NELL1", "NEURL1", "NF1", "NF2", "NFIB", "NGF", "NGFR", "NHERF1", "NIBAN2", "NKX3-1", "NLRC3", "NME1", "NMI", "NODAL", "NOG", "NOS3", "NOTCH1", "NOX4", "NPM1", "NR2F2", "NTRK1", "NUDT6", "NUP62", "NUPR1", "NUPR2", "OGN", "OPRM1", "OSM", "P3H1", "P3H2", "P3H3", "PAK1", "PARP10", "PBRM1", "PDCD10", "PDCD1LG2", "PDCD4", "PDCD5", "PDPN", "PDS5B", "PER2", "PEX2", "PHB1", "PHF14", "PIM2", "PINX1", "PKD2", "PLA2G2A", "PLA2G2D", "PLA2G2E", "PLA2G2F", "PLA2G5", "PLAAT4", "PLG", "PLPP1", "PLXNB1", "PML", "PODN", "POU1F1", "PPARG", "PPARGC1A", "PPM1D", "PPP2R5C", "PRKAR1A", "PRKG1", "PRKRA", "PRL", "PRNP", "PROX1", "PTEN", "PTGIR", "PTHLH", "PTK2B", "PTN", "PTPN14", "PTPN2", "PTPN6", "PTPRJ", "PTPRK", "PTPRM", "PTPRU", "RAF1", "RAPGEF2", "RARG", "RB1CC1", "RBBP4", "RBM5", "RBP4", "RC3H1", "RERG", "REST", "RFPL1", "RGCC", "RNF10", "RNF139", "RNF41", "ROBO1", "RPS6KA2", "RUNX3", "S100A11", "SAV1", "SCG2", "SCIN", "SCRIB", "SDC4", "SFRP1", "SFRP2", "SFRP4", "SFRP5", "SFTPD", "SH2B3", "SH3BP4", "SIRPG", "SIRT2", "SKI", "SLC16A2", "SLC4A2", "SLURP1", "SMAD3", "SMAD6", "SMARCA2", "SMYD2", "SNAI2", "SOD2", "SOX11", "SOX2", "SOX4", "SOX7", "SOX9", "SPARC", "SPEG", "SPIN4", "SPN", "SST", "ST18", "STAT1", "STK11", "STRN", "SULF1", "SULT2B1", "SYNJ2BP", "TAFA5", "TBRG1", "TBX3", "TBX5", "TENM1", "TENT5B", "TES", "TESC", "TFAP2A", "TFAP2B", "TFAP4", "TFDP1", "TGFB1", "TGFB1I1", "TGFB2", "TGFB3", "TGFBR3", "THAP12", "THBS1", "TIAL1", "TINF2", "TMEM115", "TMEM127", "TMEM131L", "TMEM196", "TMIGD3", "TNFAIP3", "TNFRSF13B", "TNFRSF14", "TNFRSF21", "TNFRSF8", "TNMD", "TNN", "TNS2", "TOB1", "TOB2", "TP53", "TP53I11", "TP53INP1", "TP73", "TPM1", "TREM2", "TRIB1", "TRIM32", "TSC1", "TSC2", "TSC22D1", "TWSG1", "TYROBP", "ULK1", "UMOD", "UTP20", "VASH1", "VDR", "VGLL4", "VHL", "VSIG4", "VSIR", "VTCN1", "WARS1", "WDR6", "WNK2", "WNT5A", "WNT9A", "WT1", "WWC1", "WWC2", "WWC3", "XCL1", "XDH", "ZBTB17", "ZBTB49", "ZBTB7B", "ZBTB7C", "ZNF268", "ZNF503", "ZNF777" ] }, "position": { "x": 961.5, "y": 2195.9446642487483, "id": "dffe03dc-c1ae-46e1-97f4-f0dfb4d44880" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "8b06d6c4-6034-48fd-944d-05ed7b8a625a", "name": [ "ACTIVATION OF INNATE IMMUNE RESPONSE%GOBP%GO:0002218" ], "description": [ "activation of innate immune response" ], "pvalue": 2.8142e-10, "gs_type": null, "gs_size": 153, "padj": 2.5579e-8, "mcode_cluster_id": "Cluster 6", "NES": -2.1915, "genes": [ "AIM2", "ALPK1", "BCL10", "BECN1", "BTK", "CARD8", "CASP1", "CASP6", "CD14", "CD274", "CD300LF", "CGAS", "CHUK", "CLEC4E", "CLEC6A", "CLEC7A", "CLPB", "COLEC10", "COLEC11", "COLEC12", "CREBBP", "CTSS", "CYLD", "DHX58", "ECSIT", "EP300", "EPG5", "FCN1", "FCN2", "FCN3", "FFAR2", "FYN", "GBP2", "HCK", "HEXIM1", "HMGB1", "HSP90AA1", "HSPD1", "IFI16", "IFIH1", "IKBKB", "INAVA", "IPO5", "IRAK1", "IRAK2", "IRAK3", "IRAK4", "IRF3", "IRF7", "IRGM", "ITCH", "KIR2DS2", "KLRC1", "KLRC2", "KLRC3", "KLRC4", "KLRD1", "LACC1", "LBP", "LGALS9", "LILRA2", "LY96", "LYN", "MAP2K6", "MAP3K7", "MAPKAPK2", "MAPKAPK3", "MATR3", "MAVS", "MBL2", "MEFV", "MNDA", "MYD88", "NAIP", "NFKBIA", "NLRC4", "NLRP1", "NLRP10", "NLRP3", "NLRP6", "NMI", "NOD1", "NOD2", "NONO", "OAS1", "OAS3", "OTULIN", "PAK1", "PAK2", "PAK3", "PHB1", "PHB2", "PIK3AP1", "PLCG2", "PQBP1", "PRKCE", "PRKDC", "PSPC1", "PYCARD", "PYHIN1", "RAB11FIP2", "RBM14", "REG3G", "RELA", "RFTN1", "RIGI", "RIPK2", "RNF135", "RNF144A", "RNF34", "RPS6KA3", "S100A14", "SCARA3", "SCIMP", "SFPQ", "SRC", "STING1", "SYK", "TBK1", "TICAM1", "TICAM2", "TIFA", "TIRAP", "TLR1", "TLR10", "TLR2", "TLR3", "TLR4", "TLR5", "TLR6", "TLR7", "TLR8", "TLR9", "TNFAIP3", "TNIP1", "TNIP2", "TNIP3", "TOMM70", "TRAF3", "TRAF3IP3", "TRAF6", "TRIL", "TRIM25", "TRIM5", "TYROBP", "UNC93B1", "XIAP", "XRCC5", "XRCC6", "YWHAE", "ZBP1", "ZCCHC3", "ZNFX1" ] }, "position": { "x": 1829.423253648961, "y": 451.50630025577294, "id": "8b06d6c4-6034-48fd-944d-05ed7b8a625a", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "887c2f8f-497a-4aaf-b8d0-9b6ed162afd8", "name": [ "REGULATION OF T CELL MEDIATED IMMUNITY%GOBP%GO:0002709" ], "description": [ "regulation of T cell mediated immunity" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 88, "padj": 0.0018, "mcode_cluster_id": "Cluster 5", "NES": -1.9001, "genes": [ "AGER", "AHR", "B2M", "CCR2", "CD1A", "CD1B", "CD1C", "CD1D", "CD1E", "CD274", "CD55", "CD80", "CD81", "CEACAM1", "CLC", "CYRIB", "DENND1B", "FADD", "FBXO38", "FCGR2B", "FOXP3", "FUT7", "FZD5", "HFE", "HLA-A", "HLA-B", "HLA-C", "HLA-DRA", "HLA-DRB1", "HLA-DRB3", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "HMGB1", "HSPD1", "IFNA2", "IFNB1", "IL12A", "IL12B", "IL12RB1", "IL18", "IL18R1", "IL1B", "IL1R1", "IL23A", "IL23R", "IL4", "IL4I1", "IL6", "KLRC1", "KLRD1", "LILRB1", "LILRB4", "MALT1", "MAP3K7", "MICA", "MICB", "MR1", "NCKAP1L", "NECTIN2", "NLRP3", "PDCD1", "PRKCZ", "PTPRC", "PVR", "RAET1E", "RAET1G", "RAET1L", "RIPK3", "RSAD2", "SLC22A13", "SMAD7", "STX7", "TBX21", "TNFRSF1B", "TNFSF4", "TRAF2", "TRAF6", "TRPM4", "UFL1", "ULBP1", "ULBP2", "ULBP3", "WAS", "XCL1", "ZBTB1", "ZP3" ] }, "position": { "x": 2095.6752521475646, "y": 791.6978644662397, "id": "887c2f8f-497a-4aaf-b8d0-9b6ed162afd8", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "01e1e504-0eda-4928-a906-5a3796aa4b08", "name": [ "SWITCHING OF ORIGINS TO A POST-REPLICATIVE STATE%REACTOME%R-HSA-69052.6" ], "description": [ "Switching of origins to a post-replicative state" ], "pvalue": 6.0017e-8, "gs_type": null, "gs_size": 92, "padj": 0.0000038791, "mcode_cluster_id": "Cluster 1", "NES": -2.0889, "genes": [ "ANAPC1", "ANAPC10", "ANAPC11", "ANAPC15", "ANAPC16", "ANAPC2", "ANAPC4", "ANAPC5", "ANAPC7", "CCNA1", "CCNA2", "CCNE1", "CCNE2", "CDC16", "CDC23", "CDC26", "CDC27", "CDC6", "CDK2", "CDT1", "CUL1", "FZR1", "GMNN", "MCM2", "MCM3", "MCM4", "MCM5", "MCM6", "MCM7", "MCM8", "ORC1", "ORC2", "ORC3", "ORC4", "ORC5", "ORC6", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RBX1", "RPS27A", "SEM1", "SKP1", "SKP2", "UBA52", "UBB", "UBC", "UBE2C", "UBE2D1", "UBE2E1", "UBE2S" ] }, "position": { "x": 435.5634178372409, "y": 835.0450473505184, "id": "01e1e504-0eda-4928-a906-5a3796aa4b08", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "338011f0-985e-411e-afc1-8c26f6d05c21", "name": [ "INTERFERON GAMMA SIGNALING%REACTOME%R-HSA-877300.7" ], "description": [ "Interferon gamma signaling" ], "pvalue": 2.3584e-10, "gs_type": null, "gs_size": 96, "padj": 2.1775e-8, "mcode_cluster_id": null, "NES": -2.3669, "genes": [ "B2M", "CAMK2A", "CAMK2B", "CAMK2D", "CAMK2G", "CD44", "CIITA", "FCGR1A", "FCGR1BP", "GBP1", "GBP2", "GBP3", "GBP4", "GBP5", "GBP6", "GBP7", "HLA-A", "HLA-B", "HLA-C", "HLA-DPA1", "HLA-DPB1", "HLA-DQA1", "HLA-DQA2", "HLA-DQB1", "HLA-DQB2", "HLA-DRA", "HLA-DRB1", "HLA-DRB3", "HLA-DRB4", "HLA-DRB5", "HLA-E", "HLA-F", "HLA-G", "HLA-H", "ICAM1", "IFI30", "IFNG", "IFNGR1", "IFNGR2", "IRF1", "IRF2", "IRF3", "IRF4", "IRF5", "IRF6", "IRF7", "IRF8", "IRF9", "JAK1", "JAK2", "MAPK1", "MAPK3", "MID1", "MT2A", "NCAM1", "OAS1", "OAS2", "OAS3", "OASL", "PIAS1", "PML", "PRKCD", "PTAFR", "PTPN1", "PTPN11", "PTPN6", "RAF1", "SMAD7", "SOCS1", "SOCS3", "SP100", "SUMO1", "TRIM10", "TRIM14", "TRIM17", "TRIM2", "TRIM21", "TRIM22", "TRIM25", "TRIM26", "TRIM29", "TRIM3", "TRIM31", "TRIM34", "TRIM35", "TRIM38", "TRIM45", "TRIM46", "TRIM48", "TRIM5", "TRIM6", "TRIM62", "TRIM68", "TRIM8", "VCAM1", "YBX1" ] }, "position": { "x": 104.8466215138144, "y": 1455.8921782055631, "id": "338011f0-985e-411e-afc1-8c26f6d05c21" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "f822ee81-d0fe-4552-b0ad-d86f8d391f3b", "name": [ "SARS COV 2 INNATE IMMUNITY EVASION AND CELL SPECIFIC IMMUNE RESPONSE%WIKIPATHWAYS_20240410%WP5039%HOMO SAPIENS" ], "description": [ "SARS CoV 2 innate immunity evasion and cell specific immune response" ], "pvalue": 1.8192e-8, "gs_type": null, "gs_size": 64, "padj": 0.0000012871, "mcode_cluster_id": null, "NES": -2.3308, "genes": [ "ACE2", "AP1G1", "CASP8", "CCL2", "CCL3", "CCL4", "CCL5", "CD160", "CSF2", "CXCL1", "CXCL11", "CXCL12", "CXCL13", "CXCL17", "CXCL2", "CXCL3", "CXCL5", "CXCL6", "CXCL8", "CXCL9", "DHX58", "EP300", "FADD", "HAVCR2", "HDAC2", "IF1DA1", "IFIT2", "IFITM1", "IFNAR1", "IFNAR2", "IL10", "IL6", "IL6R", "IL8RB", "IRF3", "IRF7", "JAK1", "LAG3", "LARP1", "MAVS", "MX1", "NFKB1", "NUP98", "PF4", "PPBP", "RAE1", "RIGI", "RIPK1", "STAT1", "STAT2", "TANK", "TBK1", "TFAP2A", "TGFB1", "TLR7", "TNF", "TP53I3", "TRADD", "TRAF2", "TRAF3", "TRAF5", "TRAF6", "TRIM25", "hEMMPRIN" ] }, "position": { "x": 2193.5, "y": 2272.9446642487483, "id": "f822ee81-d0fe-4552-b0ad-d86f8d391f3b" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "de57a25a-a652-44c2-a797-e61c000fd4c1", "name": [ "TISSUE MORPHOGENESIS%GOBP%GO:0048729" ], "description": [ "tissue morphogenesis" ], "pvalue": 0.0016, "gs_type": null, "gs_size": 298, "padj": 0.0228, "mcode_cluster_id": null, "NES": -1.4723, "genes": [ "ACTA1", "ACTA2", "ACTB", "ACTC1", "ACTG1", "ACTG2", "ACVR1", "ACVRL1", "ADAM17", "ADAMTS5", "AHDC1", "AHI1", "AIRE", "ANKRD1", "APC", "APELA", "APLNR", "ARHGAP12", "ARHGAP24", "ARHGAP35", "ATP7A", "BBS4", "BBS5", "BBS7", "BCL10", "BMP10", "BMP2", "BMP4", "BMP5", "BMP7", "BMPR1A", "BMPR2", "BRSK1", "BRSK2", "CAMSAP3", "CARMIL2", "CCDC103", "CCDC39", "CCDC40", "CCM2", "CCN1", "CD151", "CD44", "CDC42", "CEACAM1", "CELSR1", "CEP290", "CITED1", "COBL", "COL4A1", "COL5A1", "CRB2", "CSF1R", "CSNK2B", "CTNNB1", "CTSH", "DAG1", "DCHS1", "DDR1", "DEAF1", "DLC1", "DLL1", "DLL4", "DNAAF1", "DSP", "DVL1", "DVL1P1", "DVL2", "DVL3", "EFEMP2", "ENG", "EOMES", "EPHA2", "EYA2", "EZR", "FGF1", "FGF10", "FGF2", "FGF8", "FGFR2", "FKBP1A", "FLG2", "FLNA", "FLRT3", "FOLR1", "FOXD1", "FOXE1", "FOXF1", "FOXH1", "FOXN4", "FUZ", "GATA3", "GATA4", "GATA5", "GDF2", "GDNF", "GLI2", "GPC3", "GRHL2", "GRHL3", "HAND1", "HES1", "HEY1", "HEY2", "HEYL", "HMGA2", "HOXA11", "HOXD11", "IFT122", "IHH", "INTU", "ISL1", "ITGA2", "ITGA3", "ITGA5", "ITGA8", "ITGAV", "ITGB1", "ITGB3", "ITGB4", "ITGB5", "KDF1", "KDM2B", "KDM6B", "KDR", "KLF4", "KLHL3", "KLK14", "KRT12", "KRT16", "KRT17", "KRT25", "KRT27", "KRT28", "KRT6A", "KRT71", "LCP1", "LHX1", "LIN7C", "LMO4", "LRG1", "LRP2", "LUZP1", "MDM4", "MEF2C", "MEGF8", "MESP1", "MESP2", "MET", "MICAL2", "MKKS", "MMP12", "MRTFA", "MSGN1", "MSN", "MTHFD1", "MTHFD1L", "MTHFR", "MTSS1", "MYBPC3", "MYC", "MYH6", "MYH7", "MYL11", "MYL2", "MYL3", "MYLK", "MYLK2", "MYO9A", "NDRG4", "NHERF1", "NKX2-1", "NKX2-5", "NKX3-1", "NOG", "NOS3", "NOTCH1", "NOTCH4", "NPHP1", "NPHP3", "NPNT", "NRARP", "NRG1", "NRP1", "OPHN1", "OSR1", "PAK1", "PALS1", "PAX2", "PAX8", "PDCD10", "PDPN", "PERP", "PHACTR4", "PKD1", "PKD2", "PKHD1", "PKP2", "PLET1", "PLXNB2", "PODXL", "PRICKLE1", "PRKD2", "PRKX", "PROX1", "RAB10", "RAP2A", "RASIP1", "RBPJ", "RET", "RHOA", "RHOB", "RHOC", "RIPK4", "ROBO1", "ROBO2", "RYR2", "S1PR1", "SALL1", "SCRIB", "SCX", "SEMA3E", "SEMA4C", "SETDB2", "SFRP2", "SH3BP1", "SHH", "SIX1", "SIX2", "SIX3", "SKI", "SLC39A12", "SLIT2", "SMAD2", "SMAD4", "SMAD7", "SMO", "SNAI1", "SNAI2", "SOX10", "SOX11", "SOX17", "SOX18", "SOX8", "SOX9", "SRF", "STARD13", "STC1", "STIL", "SYNE4", "TBX1", "TBX18", "TBX19", "TBX2", "TBX20", "TBX3", "TBX6", "TBXT", "TCAP", "TCF21", "TFAP2A", "TGFB1", "TGFB2", "TGFBR1", "TGFBR2", "TGFBR3", "TGM3", "TIE1", "TIMELESS", "TMEFF2", "TNC", "TNNC1", "TNNI3", "TNNT2", "TOR1A", "TPM1", "TRAF3IP1", "TRIM15", "TSC2", "TTN", "VANGL2", "VASP", "VCL", "VEGFA", "WDPCP", "WNK4", "WNT10A", "WNT11", "WNT16", "WNT5A", "WNT7A", "WNT7B", "WT1", "YAP1", "ZDHHC7", "ZFPM1", "ZFPM2", "ZIC3" ] }, "position": { "x": 810.9856171263114, "y": 1351.7755091233012, "id": "de57a25a-a652-44c2-a797-e61c000fd4c1" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "0ca4acf6-7af3-4da0-aa48-0e50fe7fdd75", "name": [ "IMMUNE RESPONSE-REGULATING SIGNALING PATHWAY%GOBP%GO:0002764" ], "description": [ "immune response-regulating signaling pathway" ], "pvalue": 4.2017e-8, "gs_type": null, "gs_size": 345, "padj": 0.0000028093, "mcode_cluster_id": "Cluster 6", "NES": -1.8972, "genes": [ "A1BG", "ABL1", "AIM2", "ALPK1", "BAG6", "BANK1", "BAX", "BCAR1", "BCL10", "BCL2", "BECN1", "BLK", "BLNK", "BMX", "BTK", "BTLA", "BTN1A1", "BTN2A1", "BTN2A2", "BTN2A3P", "BTN3A1", "BTN3A2", "BTN3A3", "BTNL10P", "BTNL2", "BTNL3", "BTNL8", "BTNL9", "C3AR1", "C5AR1", "C5AR2", "CARD8", "CASP1", "CD14", "CD19", "CD24", "CD247", "CD274", "CD276", "CD28", "CD300LF", "CD33", "CD38", "CD3D", "CD3E", "CD3G", "CD40", "CD79A", "CD79B", "CD8A", "CD8B", "CGAS", "CHUK", "CLEC12B", "CLEC4E", "CLEC6A", "CLEC7A", "CLPB", "CMKLR1", "COLEC10", "COLEC11", "COLEC12", "CR1", "CREBBP", "CSK", "CTLA4", "CTSH", "CTSS", "CYLD", "DENND1B", "DHX58", "ECSIT", "EIF2B1", "EIF2B2", "EIF2B3", "EIF2B4", "EIF2B5", "EP300", "EPG5", "ERMAP", "FCAR", "FCER1G", "FCGR1A", "FCGR2B", "FCGR3A", "FCHO1", "FCN1", "FCN2", "FCN3", "FER", "FFAR2", "FGR", "FPR1", "FPR2", "FPR3", "FYB1", "FYB2", "FYN", "GATA3", "GP6", "GPLD1", "GPR32", "GPR32P1", "GPR33", "HCK", "HHLA2", "HLA-A", "HLA-DPB1", "HLA-DQB1", "HLA-DRB1", "HLA-DRB3", "HLA-G", "HSPD1", "ICOSLG", "IFIH1", "IGHA1", "IGHA2", "IGHD", "IGHE", "IGHG1", "IGHG2", "IGHG3", "IGHG4", "IGHM", "IGKC", "IGLC1", "IGLC3", "IGLC6", "IGLC7", "IGSF1", "IKBKB", "IKBKG", "INAVA", "INPP5D", "IPO5", "IRAK1", "IRAK2", "IRAK3", "IRAK4", "IRF3", "IRF7", "IRGM", "ITCH", "ITGAM", "ITK", "KHDRBS1", "KIR2DL1", "KIR2DL2", "KIR2DL3", "KIR2DL4", "KIR2DL5A", "KIR2DL5B", "KIR2DP1", "KIR2DS1", "KIR2DS2", "KIR2DS3", "KIR2DS4", "KIR2DS5", "KIR3DL1", "KIR3DL2", "KIR3DL3", "KIR3DP1", "KIR3DS1", "KIR3DX1", "KIT", "KLRC1", "KLRC2", "KLRC3", "KLRC4", "KLRD1", "LACC1", "LAIR1", "LAIR2", "LAT", "LAT2", "LAX1", "LBP", "LCK", "LCP2", "LGALS9", "LILRA1", "LILRA2", "LILRA3", "LILRA4", "LILRA5", "LILRA6", "LILRB1", "LILRB2", "LILRB3", "LILRB4", "LILRB5", "LIME1", "LIMK1", "LY96", "LYN", "MALT1", "MAP2K4", "MAP2K6", "MAP2K7", "MAP3K1", "MAP3K7", "MAPK10", "MAPK8", "MAPK9", "MAPKAPK2", "MAPKAPK3", "MAVS", "MBL2", "MEF2C", "MEFV", "MICB", "MNDA", "MOG", "MS4A1", "MYD88", "MYO1G", "NAIP", "NCKAP1L", "NCR1", "NCR3", "NFAM1", "NFATC2", "NFKBIA", "NFKBID", "NFKBIZ", "NLRC4", "NLRP1", "NLRP3", "NLRP6", "NMI", "NOD1", "NOD2", "NR4A3", "OAS1", "OAS3", "OSCAR", "OTULIN", "PAK1", "PAK2", "PAK3", "PDE4B", "PDE4D", "PHB1", "PHB2", "PIGR", "PIK3AP1", "PIK3CA", "PIK3CD", "PLA2G6", "PLCG1", "PLCG2", "PLD2", "PLEKHA1", "PLPP4", "PRAM1", "PRKCB", "PRKCD", "PRKCE", "PRKCQ", "PRKD2", "PSG9", "PTK2", "PTPN22", "PTPRC", "PTPRJ", "PYCARD", "RAB11FIP2", "RBCK1", "RC3H1", "RC3H2", "REG3G", "RELA", "RFTN1", "RIGI", "RIPK2", "RNF135", "RNF144A", "RNF31", "RNF34", "RPS6KA3", "S100A14", "SCARA3", "SCIMP", "SH2B2", "SKAP1", "SLA2", "SLC39A6", "SOS1", "SPG21", "SPPL3", "SRC", "STING1", "STOML2", "SYK", "TARM1", "TBK1", "TEC", "THEMIS", "THEMIS2", "THY1", "TICAM1", "TICAM2", "TIFA", "TIRAP", "TLR1", "TLR10", "TLR2", "TLR3", "TLR4", "TLR5", "TLR6", "TLR7", "TLR8", "TLR9", "TNFAIP3", "TNFRSF21", "TNIP1", "TNIP2", "TNIP3", "TRAC", "TRAF3", "TRAF3IP3", "TRAF6", "TRBC1", "TRBC2", "TRDC", "TRGC1", "TRGC2", "TRIL", "TRIM25", "TXK", "TYROBP", "UBE2N", "UNC93B1", "VAV1", "VAV2", "VAV3", "VSTM1", "VTCN1", "WNK1", "XIAP", "YES1", "YWHAE", "ZAP70", "ZC3H12A" ] }, "position": { "x": 1822.3479956970868, "y": 482.8635046360143, "id": "0ca4acf6-7af3-4da0-aa48-0e50fe7fdd75", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "fb9a31df-5a36-4942-9b2e-5c6ded677d5a", "name": [ "CELL-CELL JUNCTION ORGANIZATION%REACTOME%R-HSA-421270.8" ], "description": [ "Cell-cell junction organization" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 85, "padj": 0.0044, "mcode_cluster_id": "Cluster 39", "NES": -1.7861, "genes": [ "ADAM19", "ADAM33", "AGO1", "AGO2", "AGO3", "AGO4", "ANG", "ANGPTL4", "BHLHE22", "CADM1", "CADM2", "CADM3", "CDH1", "CDH10", "CDH11", "CDH12", "CDH13", "CDH15", "CDH17", "CDH18", "CDH19", "CDH2", "CDH24", "CDH3", "CDH4", "CDH5", "CDH6", "CDH7", "CDH8", "CDH9", "CLDN1", "CLDN10", "CLDN11", "CLDN12", "CLDN14", "CLDN15", "CLDN16", "CLDN17", "CLDN18", "CLDN19", "CLDN2", "CLDN20", "CLDN22", "CLDN23", "CLDN3", "CLDN4", "CLDN5", "CLDN6", "CLDN7", "CLDN8", "CLDN9", "CRB3", "CTNNA1", "CTNNB1", "CTNND1", "F11R", "FOXF1", "HEYL", "HOXC8", "ILF3", "JUP", "MOV10", "NECTIN1", "NECTIN2", "NECTIN3", "NECTIN4", "PALS1", "PARD3", "PARD6A", "PARD6B", "PARD6G", "PATJ", "PRDM8", "PRKCI", "PVR", "SDK1", "SDK2", "SNAI1", "SOX10", "SP1", "TNRC6A", "TNRC6B", "TNRC6C", "ZC3H12A", "ZEB2" ] }, "position": { "x": 1694.4749588400673, "y": 1466.9927770568988, "id": "fb9a31df-5a36-4942-9b2e-5c6ded677d5a", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "13b2a0b7-01d4-456c-8127-b83526231171", "name": [ "PROTEIN SYNTHESIS: GLYCINE%PATHWHIZ%PW112928" ], "description": [ "Protein Synthesis: Glycine" ], "pvalue": 7.8463e-18, "gs_type": null, "gs_size": 80, "padj": 1.8806e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.8118, "genes": [ "FAU", "GARS1", "RACK1", "RPL10", "RPL10A", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "UBA52" ] }, "position": { "x": 745.0062825275907, "y": 423.95621623675373, "id": "13b2a0b7-01d4-456c-8127-b83526231171", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "00636427-ec78-4a10-9a9d-345b19e599fb", "name": [ "SARS-COV-1 ACTIVATES MODULATES INNATE IMMUNE RESPONSES%REACTOME%R-HSA-9692916.2" ], "description": [ "SARS-CoV-1 activates modulates innate immune responses" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 41, "padj": 0.0031, "mcode_cluster_id": null, "NES": -1.9705, "genes": [ "BST2", "CASP1", "FKBP1A", "IFIH1", "IKBKE", "IRAK2", "IRF3", "ITCH", "KPNA2", "KPNB1", "MAVS", "NFKB1", "NFKBIA", "NLRP3", "NMI", "NPIPB3", "PCBP2", "PPIA", "PPIB", "PPIG", "PPIH", "PYCARD", "RCAN3", "RELA", "RIGI", "RIPK3", "RPS27A", "RUNX1", "SFTPD", "SIKE1", "STING1", "TBK1", "TKFC", "TLR7", "TOMM70", "TRAF3", "TRAF6", "TRIM25", "UBA52", "UBB", "UBC" ] }, "position": { "x": 2039.5, "y": 2272.9446642487483, "id": "00636427-ec78-4a10-9a9d-345b19e599fb" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "name": [ "DEGRADATION OF GLI2 BY THE PROTEASOME%REACTOME DATABASE ID RELEASE 81%5610783" ], "description": [ "Degradation of GLI2 by the proteasome" ], "pvalue": 0.0000062009, "gs_type": null, "gs_size": 60, "padj": 0.0002, "mcode_cluster_id": "Cluster 1", "NES": -2.0269, "genes": [ "BTRC", "CSNK1A1", "CUL1", "GLI2", "GSK3B", "PRKACA", "PRKACB", "PRKACG", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RBX1", "RPS27A", "SEM1", "SKP1", "SUFU", "UBA52", "UBB", "UBC" ] }, "position": { "x": 442.19592911376407, "y": 820.876602433988, "id": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "06b80be2-e2a4-4a12-ab43-c71d4b004d4f", "name": [ "REGULATION OF INNATE IMMUNE RESPONSE%GOBP%GO:0045088" ], "description": [ "regulation of innate immune response" ], "pvalue": 2.2985e-9, "gs_type": null, "gs_size": 401, "padj": 1.8315e-7, "mcode_cluster_id": "Cluster 6", "NES": -1.8974, "genes": [ "A2M", "ABHD17A", "ACOD1", "ADAM8", "AIM2", "AKIRIN2", "AKT1", "ALPK1", "ANKRD17", "AP1G1", "APPL1", "APPL2", "ARG1", "ARRB2", "ATG12", "ATG5", "AURKB", "BANF1", "BCL10", "BECN1", "BIRC2", "BIRC3", "BPIFB1", "BRCC3", "BTK", "C1QBP", "CACTIN", "CADM1", "CARD8", "CASP1", "CASP6", "CASP8", "CAV1", "CCL5", "CD14", "CD160", "CD1D", "CD226", "CD274", "CD300A", "CD300LF", "CD36", "CDC37", "CEACAM1", "CEP63", "CFH", "CGAS", "CHUK", "CLEC12B", "CLEC4E", "CLEC6A", "CLEC7A", "CLPB", "CNOT7", "COLEC10", "COLEC11", "COLEC12", "CPT1A", "CPTP", "CR1", "CREBBP", "CRTAM", "CSNK1A1", "CTSS", "CYBA", "CYLD", "DAB2IP", "DCST1", "DDX3X", "DDX60", "DHX33", "DHX58", "DHX9", "DTX4", "ECSIT", "EIF2AK2", "EIF4E2", "EP300", "EPG5", "ERAP1", "ERBIN", "EREG", "F2RL1", "FADD", "FAM3A", "FBXL2", "FCGR2B", "FCN1", "FCN2", "FCN3", "FCRL3", "FFAR2", "FGR", "FLOT1", "FLOT2", "FPR2", "FYN", "GBP2", "GBP5", "GDI1", "GFI1", "GIGYF2", "GPATCH3", "GPR108", "GPS2", "GRAMD4", "GRN", "HCK", "HEXIM1", "HLA-A", "HLA-B", "HLA-E", "HLA-F", "HLA-G", "HMGB1", "HSP90AA1", "HSPA1A", "HSPA1B", "HSPD1", "IFI16", "IFI35", "IFIH1", "IFNB1", "IFNK", "IKBKB", "IKBKE", "IL12A", "IL12B", "IL21", "INAVA", "INS", "IPO5", "IRAK1", "IRAK2", "IRAK3", "IRAK4", "IRF1", "IRF3", "IRF7", "IRGM", "ISG15", "ITCH", "KIR2DL4", "KIR2DS2", "KLRB1", "KLRC1", "KLRC2", "KLRC3", "KLRC4", "KLRD1", "KLRK1", "LACC1", "LAMP1", "LBP", "LEP", "LGALS9", "LGR4", "LILRA2", "LILRA4", "LILRB1", "LRCH4", "LRP8", "LRRC14", "LTF", "LY96", "LYAR", "LYN", "LYPLAL1", "MAP2K6", "MAP3K7", "MAPK8", "MAPKAPK2", "MAPKAPK3", "MARK4", "MATR3", "MAVS", "MBL2", "MEFV", "METTL3", "MFHAS1", "MICA", "MNDA", "MT-RNR2", "MUL1", "MYD88", "N4BP1", "NAGK", "NAIP", "NCR1", "NCR3", "NECTIN2", "NEK7", "NFE2L2", "NFKBIA", "NFKBIL1", "NINJ1", "NLRC3", "NLRC4", "NLRC5", "NLRP1", "NLRP10", "NLRP2B", "NLRP3", "NLRP4", "NLRP6", "NMI", "NOD1", "NOD2", "NONO", "NOP53", "NPLOC4", "NR1D1", "NR1H2", "NR1H3", "OAS1", "OAS3", "OASL", "OTOP1", "OTUD4", "OTULIN", "PAK1", "PAK2", "PAK3", "PARP1", "PARP14", "PARP9", "PCBP2", "PHB1", "PHB2", "PIK3AP1", "PIK3R1", "PIK3R6", "PIM1", "PJA2", "PLA2G5", "PLCG2", "PLSCR1", "POLR3B", "POLR3C", "POLR3D", "POLR3F", "POLR3G", "PPARG", "PPP6C", "PPT1", "PQBP1", "PRKCE", "PRKD1", "PRKDC", "PSPC1", "PTPN1", "PTPN11", "PTPN2", "PTPN22", "PTPN6", "PTPRS", "PUM1", "PUM2", "PVR", "PYCARD", "PYDC1", "PYDC2", "PYDC5", "PYHIN1", "RAB11FIP2", "RAB7B", "RAET1E", "RAET1G", "RASGRP1", "RASGRP4", "RBM14", "RBM47", "REG3G", "RELA", "RFTN1", "RIGI", "RIOK3", "RIPK2", "RNF115", "RNF125", "RNF135", "RNF144A", "RNF170", "RNF185", "RNF34", "RPS19", "RPS6KA3", "RSAD2", "RTN4", "S100A14", "S100A8", "S100A9", "SAMHD1", "SCARA3", "SCIMP", "SEC14L1", "SERPINB4", "SERPINB9", "SERPING1", "SFN", "SFPQ", "SH2D1B", "SLAMF6", "SLAMF8", "SLC15A2", "SLC15A3", "SLC15A4", "SLC19A1", "SLC46A2", "SMIM30", "SMPDL3B", "SPI1", "SQSTM1", "SRC", "STAT2", "STING1", "STMP1", "SUSD4", "SYK", "TAB1", "TARBP2", "TASL", "TAX1BP1", "TBK1", "TGFB1", "TICAM1", "TICAM2", "TIFA", "TIRAP", "TKFC", "TLR1", "TLR10", "TLR2", "TLR3", "TLR4", "TLR5", "TLR6", "TLR7", "TLR8", "TLR9", "TNFAIP3", "TNIP1", "TNIP2", "TNIP3", "TOMM70", "TRAF3", "TRAF3IP3", "TRAF6", "TRAFD1", "TREM2", "TREML4", "TREX1", "TRIL", "TRIM11", "TRIM15", "TRIM21", "TRIM25", "TRIM3", "TRIM31", "TRIM32", "TRIM41", "TRIM5", "TRIM56", "TRIM6", "TRIM62", "TSPAN6", "TTLL12", "TXK", "TYRO3", "TYROBP", "UBE2K", "UFD1", "UNC93B1", "USP15", "USP17L2", "USP18", "USP27X", "USP29", "USP38", "USP50", "VSIG4", "WDFY1", "WNT5A", "XIAP", "XRCC5", "XRCC6", "YTHDF2", "YTHDF3", "YWHAE", "YWHAZ", "ZBP1", "ZCCHC3", "ZDHHC12", "ZDHHC18", "ZDHHC3", "ZDHHC4", "ZDHHC5", "ZDHHC9", "ZNFX1", "ZNRF1", "ZNRF4" ] }, "position": { "x": 1846.8252769601227, "y": 450.9766441466909, "id": "06b80be2-e2a4-4a12-ab43-c71d4b004d4f", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "7d40f5e4-1244-4933-baf2-73c0fca158ea", "name": [ "PATTERN RECOGNITION RECEPTOR SIGNALING PATHWAY%GOBP%GO:0002221" ], "description": [ "pattern recognition receptor signaling pathway" ], "pvalue": 1.5514e-7, "gs_type": null, "gs_size": 110, "padj": 0.0000085945, "mcode_cluster_id": "Cluster 6", "NES": -2.1189, "genes": [ "AIM2", "ALPK1", "BCL10", "BECN1", "BTK", "CARD8", "CASP1", "CD14", "CD274", "CD300LF", "CGAS", "CHUK", "CLEC4E", "CLPB", "COLEC10", "COLEC11", "COLEC12", "CTSS", "CYLD", "DHX58", "ECSIT", "EPG5", "FCN1", "FCN2", "FCN3", "FFAR2", "HSPD1", "IFIH1", "IKBKB", "INAVA", "IPO5", "IRAK1", "IRAK2", "IRAK3", "IRAK4", "IRF3", "IRF7", "IRGM", "ITCH", "LACC1", "LBP", "LGALS9", "LY96", "MAP2K6", "MAP3K7", "MAPKAPK2", "MAPKAPK3", "MAVS", "MBL2", "MEFV", "MYD88", "NAIP", "NFKBIA", "NLRC4", "NLRP1", "NLRP3", "NLRP6", "NMI", "NOD1", "NOD2", "OAS1", "OAS3", "OTULIN", "PHB1", "PHB2", "PIK3AP1", "PLCG2", "PRKCE", "PYCARD", "RAB11FIP2", "REG3G", "RELA", "RFTN1", "RIGI", "RIPK2", "RNF135", "RNF144A", "RNF34", "RPS6KA3", "S100A14", "SCARA3", "SCIMP", "STING1", "TBK1", "TICAM1", "TICAM2", "TIFA", "TIRAP", "TLR1", "TLR10", "TLR2", "TLR3", "TLR4", "TLR5", "TLR6", "TLR7", "TLR8", "TLR9", "TNFAIP3", "TNIP1", "TNIP2", "TNIP3", "TRAF3", "TRAF3IP3", "TRAF6", "TRIL", "TRIM25", "UNC93B1", "XIAP", "YWHAE" ] }, "position": { "x": 1817.4951475814494, "y": 441.3694819549252, "id": "7d40f5e4-1244-4933-baf2-73c0fca158ea", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "18541f06-8d59-4bf6-ad61-5301bb1a768a", "name": [ "REGULATION OF RESPONSE TO BIOTIC STIMULUS%GOBP%GO:0002831" ], "description": [ "regulation of response to biotic stimulus" ], "pvalue": 5.9704e-13, "gs_type": null, "gs_size": 466, "padj": 6.2018e-11, "mcode_cluster_id": "Cluster 6", "NES": -2.0195, "genes": [ "A2M", "ABHD17A", "ACOD1", "ADAM8", "AHR", "AIM2", "AKIRIN2", "AKT1", "ALPK1", "ANKRD17", "AP1G1", "APOBEC3F", "APOBEC3G", "APPL1", "APPL2", "ARG1", "ARRB2", "ATG12", "ATG5", "AURKB", "BANF1", "BCL10", "BECN1", "BIRC2", "BIRC3", "BMP6", "BPIFB1", "BRCC3", "BTK", "C1QBP", "CACTIN", "CADM1", "CARD16", "CARD8", "CASP1", "CASP6", "CASP8", "CAV1", "CCL5", "CD14", "CD160", "CD180", "CD1D", "CD226", "CD274", "CD300A", "CD300LF", "CD36", "CD55", "CDC37", "CEACAM1", "CEP63", "CFH", "CGAS", "CHUK", "CLEC12B", "CLEC4E", "CLEC6A", "CLEC7A", "CLPB", "CNOT7", "COLEC10", "COLEC11", "COLEC12", "CPT1A", "CPTP", "CR1", "CREBBP", "CRTAM", "CSNK1A1", "CTSS", "CX3CL1", "CYBA", "CYLD", "DAB2IP", "DAPK1", "DCST1", "DDX3X", "DDX60", "DEFB114", "DEFB118", "DHX33", "DHX58", "DHX9", "DTX3L", "DTX4", "ECSIT", "EIF2AK2", "EIF2AK4", "EIF4E2", "ELMOD2", "EMILIN1", "EMILIN2", "EP300", "EPG5", "ERAP1", "ERBIN", "EREG", "F2RL1", "FADD", "FAM3A", "FBXL2", "FBXO38", "FCGR2B", "FCN1", "FCN2", "FCN3", "FCRL3", "FFAR2", "FGR", "FLOT1", "FLOT2", "FOXP1", "FPR2", "FYN", "GATA6", "GBP2", "GBP5", "GDI1", "GFI1", "GIGYF2", "GPATCH3", "GPR108", "GPS2", "GRAMD4", "GRN", "GSDME", "HCK", "HERC5", "HEXIM1", "HLA-A", "HLA-B", "HLA-DRB1", "HLA-DRB3", "HLA-E", "HLA-F", "HLA-G", "HMGB1", "HRG", "HSP90AA1", "HSPA1A", "HSPA1B", "HSPD1", "IFI16", "IFI35", "IFIH1", "IFNB1", "IFNK", "IFNLR1", "IKBKB", "IKBKE", "IL12A", "IL12B", "IL12RB1", "IL21", "IL23A", "IL23R", "IL4I1", "ILRUN", "INAVA", "INS", "IPO5", "IRAK1", "IRAK2", "IRAK3", "IRAK4", "IRF1", "IRF3", "IRF7", "IRGM", "ISG15", "ITCH", "KIR2DL4", "KIR2DS2", "KLK3", "KLK5", "KLK7", "KLRB1", "KLRC1", "KLRC2", "KLRC3", "KLRC4", "KLRD1", "KLRK1", "LACC1", "LACRT", "LAMP1", "LBP", "LEP", "LGALS9", "LGR4", "LILRA2", "LILRA4", "LILRB1", "LRCH4", "LRP8", "LRRC14", "LRSAM1", "LTF", "LY86", "LY96", "LYAR", "LYN", "LYPLAL1", "MAP2K6", "MAP3K7", "MAPK8", "MAPKAPK2", "MAPKAPK3", "MAPKBP1", "MARK4", "MATR3", "MAVS", "MBL2", "MEFV", "METTL3", "MFHAS1", "MICA", "MICB", "MMRN2", "MNDA", "MR1", "MT-RNR2", "MUL1", "MYD88", "N4BP1", "NAGK", "NAIP", "NCR1", "NCR3", "NECTIN2", "NEK7", "NFE2L2", "NFKBIA", "NFKBIL1", "NINJ1", "NLRC3", "NLRC4", "NLRC5", "NLRP1", "NLRP10", "NLRP2B", "NLRP3", "NLRP4", "NLRP6", "NMI", "NOD1", "NOD2", "NONO", "NOP53", "NPLOC4", "NR1D1", "NR1H2", "NR1H3", "NT5C2", "OAS1", "OAS3", "OASL", "OPTN", "OTOP1", "OTUD4", "OTULIN", "PAK1", "PAK2", "PAK3", "PARP1", "PARP14", "PARP9", "PCBP2", "PDCD1", "PGC", "PHB1", "PHB2", "PIK3AP1", "PIK3R1", "PIK3R6", "PIM1", "PJA2", "PLA2G5", "PLCG2", "PLSCR1", "POLR3B", "POLR3C", "POLR3D", "POLR3F", "POLR3G", "PPARG", "PPM1B", "PPP6C", "PPT1", "PQBP1", "PRKCA", "PRKCE", "PRKD1", "PRKDC", "PSPC1", "PTPN1", "PTPN11", "PTPN2", "PTPN22", "PTPN6", "PTPRS", "PUM1", "PUM2", "PVR", "PYCARD", "PYDC1", "PYDC2", "PYDC5", "PYHIN1", "RAB11FIP2", "RAB7B", "RAET1E", "RAET1G", "RASGRP1", "RASGRP4", "RBM14", "RBM47", "REG3G", "RELA", "RFTN1", "RIGI", "RIOK3", "RIPK2", "RNF115", "RNF125", "RNF135", "RNF144A", "RNF170", "RNF185", "RNF216", "RNF26", "RNF31", "RNF34", "RPS19", "RPS6KA3", "RSAD2", "RTN4", "S100A14", "S100A8", "S100A9", "SAMHD1", "SASH1", "SCARA3", "SCIMP", "SEC14L1", "SERPINB4", "SERPINB9", "SERPING1", "SFN", "SFPQ", "SH2D1B", "SIGIRR", "SIGLEC16", "SLAMF6", "SLAMF8", "SLC15A2", "SLC15A3", "SLC15A4", "SLC19A1", "SLC22A13", "SLC46A2", "SMIM30", "SMPDL3B", "SPI1", "SQSTM1", "SRC", "STAT1", "STAT2", "STING1", "STMP1", "SUSD4", "SYK", "TAB1", "TARBP2", "TASL", "TAX1BP1", "TBK1", "TGFB1", "TICAM1", "TICAM2", "TIFA", "TIGAR", "TIRAP", "TKFC", "TLR1", "TLR10", "TLR2", "TLR3", "TLR4", "TLR5", "TLR6", "TLR7", "TLR8", "TLR9", "TNFAIP3", "TNIP1", "TNIP2", "TNIP3", "TOMM70", "TRAF3", "TRAF3IP1", "TRAF3IP2", "TRAF3IP3", "TRAF6", "TRAFD1", "TREM2", "TREML4", "TREX1", "TRIB1", "TRIL", "TRIM11", "TRIM15", "TRIM21", "TRIM22", "TRIM25", "TRIM3", "TRIM31", "TRIM32", "TRIM41", "TRIM44", "TRIM5", "TRIM56", "TRIM6", "TRIM62", "TSPAN6", "TTLL12", "TXK", "TYRO3", "TYROBP", "UBE2K", "UFD1", "UFL1", "UNC93B1", "USP15", "USP17L2", "USP18", "USP27X", "USP29", "USP38", "USP50", "VSIG4", "WDFY1", "WNT5A", "XIAP", "XRCC5", "XRCC6", "YTHDF2", "YTHDF3", "YWHAE", "YWHAZ", "ZBP1", "ZC3H12A", "ZCCHC3", "ZDHHC1", "ZDHHC11", "ZDHHC12", "ZDHHC18", "ZDHHC3", "ZDHHC4", "ZDHHC5", "ZDHHC9", "ZMPSTE24", "ZNFX1", "ZNRF1", "ZNRF4" ] }, "position": { "x": 1857.240365854561, "y": 442.9479432042029, "id": "18541f06-8d59-4bf6-ad61-5301bb1a768a", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "name": [ "GLI3 IS PROCESSED TO GLI3R BY THE PROTEASOME%REACTOME%R-HSA-5610785.2" ], "description": [ "GLI3 is processed to GLI3R by the proteasome" ], "pvalue": 0, "gs_type": null, "gs_size": 60, "padj": 0.0009, "mcode_cluster_id": "Cluster 1", "NES": -1.9278, "genes": [ "BTRC", "CSNK1A1", "CUL1", "GLI3", "GSK3B", "PRKACA", "PRKACB", "PRKACG", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RBX1", "RPS27A", "SEM1", "SKP1", "SUFU", "UBA52", "UBB", "UBC" ] }, "position": { "x": 471.44247513455286, "y": 798.8105013130512, "id": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "1294e420-1782-4eb9-ba64-bb66dc2f5150", "name": [ "AUTOPHAGY%REACTOME%R-HSA-9612973.4" ], "description": [ "Autophagy" ], "pvalue": 0.004, "gs_type": null, "gs_size": 130, "padj": 0.0436, "mcode_cluster_id": null, "NES": 1.5124, "genes": [ "AMBRA1", "ARL13B", "ATG10", "ATG101", "ATG12", "ATG13", "ATG14", "ATG16L1", "ATG3", "ATG4A", "ATG4B", "ATG4C", "ATG4D", "ATG5", "ATG7", "ATG9A", "ATG9B", "ATM", "BECN1", "CETN1", "CFTR", "CHMP2A", "CHMP2B", "CHMP3", "CHMP4A", "CHMP4B", "CHMP4C", "CHMP6", "CHMP7", "CSNK2A1", "CSNK2A2", "CSNK2B", "DYNC1H1", "DYNC1I1", "DYNC1I2", "DYNC1LI1", "DYNC1LI2", "DYNLL1", "DYNLL2", "EEF1A1", "EPAS1", "FUNDC1", "GABARAP", "GABARAPL1", "GABARAPL2", "GABARAPL3", "GFAP", "HBB", "HDAC6", "HSF1", "HSP90AA1", "HSP90AB1", "HSPA8", "IFT88", "LAMP2", "LAMTOR1", "LAMTOR2", "LAMTOR3", "LAMTOR4", "LAMTOR5", "MAP1LC3A", "MAP1LC3B", "MAP1LC3C", "MFN1", "MFN2", "MLST8", "MTERF3", "MTMR14", "MTMR3", "MTOR", "MVB12A", "MVB12B", "NBR1", "PARK7", "PCNT", "PEX5", "PIK3C3", "PIK3R4", "PINK1", "PLIN2", "PLIN3", "PRKAA1", "PRKAA2", "PRKAB1", "PRKAB2", "PRKAG1", "PRKAG2", "PRKAG3", "PRKN", "RB1CC1", "RHEB", "RNASE1", "RPS27A", "RPTOR", "RRAGA", "RRAGB", "RRAGC", "RRAGD", "SLC38A9", "SQSTM1", "TOMM20", "TOMM22", "TOMM40", "TOMM5", "TOMM6", "TOMM7", "TOMM70", "TSC1", "TSC2", "TSG101", "UBA52", "UBAP1", "UBB", "UBC", "UBE2N", "UBE2V1", "ULK1", "USP30", "UVRAG", "VCP", "VDAC1", "VPS28", "VPS37A", "VPS37B", "VPS37C", "VPS37D", "WDR45", "WDR45B", "WIPI1", "WIPI2" ] }, "position": { "x": 3610.539072651805, "y": 2272.9446642487483, "id": "1294e420-1782-4eb9-ba64-bb66dc2f5150" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "9e586326-e945-4df1-94e5-befba1a293f6", "name": [ "AURORA B SIGNALING%PATHWAY INTERACTION DATABASE NCI-NATURE CURATED DATA%AURORA B SIGNALING" ], "description": [ "Aurora B signaling" ], "pvalue": 0.0013, "gs_type": null, "gs_size": 40, "padj": 0.0193, "mcode_cluster_id": null, "NES": -1.7927, "genes": [ "AURKA", "AURKB", "AURKC", "BIRC5", "BUB1", "CBX5", "CDCA8", "CENPA", "CUL3", "DES", "EVI5", "H3-3B", "INCENP", "KIF20A", "KIF23", "KIF2C", "KLHL13", "KLHL9", "MYLK", "NCAPD2", "NCAPG", "NCAPH", "NCL", "NDC80", "NPM1", "NSUN2", "PEBP1", "PPP1CC", "PPP2R5D", "PSMA3", "RACGAP1", "RASA1", "RHOA", "SEPTIN1", "SGO1", "SMC2", "SMC4", "STMN1", "TACC1", "VIM" ] }, "position": { "x": 2165.4679460868697, "y": 1801.8587965586644, "id": "9e586326-e945-4df1-94e5-befba1a293f6" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "337793ee-c6bc-42bd-b62a-2adb13713155", "name": [ "EMBRYONIC ORGAN MORPHOGENESIS%GOBP%GO:0048562" ], "description": [ "embryonic organ morphogenesis" ], "pvalue": 0.0008, "gs_type": null, "gs_size": 136, "padj": 0.0139, "mcode_cluster_id": "Cluster 16", "NES": -1.6204, "genes": [ "ACVR1", "AHI1", "ALDH1A3", "ALX1", "ANKRD24", "APLNR", "ATP6V1B1", "BBS5", "BBS7", "CCDC103", "CCDC39", "CCDC40", "CEP290", "CHD7", "CLRN2", "COL2A1", "CRB2", "CTNNB1", "DCANP1", "DLL1", "DNAAF1", "DSCAML1", "DVL1", "DVL2", "DYNC2I1", "EFEMP1", "EIF4A3", "ENG", "EPHB2", "FBN1", "FBN2", "FGFR2", "FOLR1", "FOXE1", "FOXF1", "FOXH1", "FOXN4", "FUZ", "GATA4", "GSC", "HAND1", "HES1", "HOXA1", "HOXA3", "HOXA4", "HOXA9", "HOXB3", "HOXB4", "HOXB9", "HOXC4", "HOXC9", "HOXD3", "HOXD4", "HOXD9", "HPN", "ID2", "IHH", "IRX5", "KDM2B", "LHX1", "MEF2C", "MEGF8", "MESP1", "MFAP2", "MFAP5", "MICAL2", "MKKS", "MTHFD1", "MTHFD1L", "MYO3A", "MYO3B", "MYO6", "NDRG4", "NEUROD1", "NEUROG1", "NIPBL", "NKX2-5", "NOG", "NOTCH1", "NPHP3", "OSR1", "OSR2", "OTOP1", "PAX2", "PAX8", "PDGFRA", "PDZD7", "PHACTR4", "PKD2", "PLS1", "POU3F4", "PPP1R35", "PROX1", "RARG", "RBP4", "RBPMS2", "RYR2", "SETDB2", "SHH", "SIX1", "SIX2", "SIX3", "SLC44A4", "SMO", "SOBP", "SOD1", "SOX11", "SOX17", "SOX18", "SOX9", "SRF", "STIL", "STRA6", "STRC", "TBX1", "TBX18", "TBX2", "TBX20", "TBX6", "TCF21", "TFAP2A", "TGFBR1", "TGFBR2", "TH", "TIFAB", "TMIE", "TPRN", "TTC39C", "TWIST1", "USH1C", "VANGL2", "WHRN", "WNT16", "WNT5A", "ZIC1", "ZIC3" ] }, "position": { "x": 598.4106270139968, "y": 1365.2425305527265, "id": "337793ee-c6bc-42bd-b62a-2adb13713155", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "575e5fc2-cbec-4131-832a-111221f1b6d7", "name": [ "2Q13 COPY NUMBER VARIATION SYNDROME%WIKIPATHWAYS_20240410%WP5222%HOMO SAPIENS" ], "description": [ "2q13 copy number variation syndrome" ], "pvalue": 0.0016, "gs_type": null, "gs_size": 53, "padj": 0.0231, "mcode_cluster_id": null, "NES": -1.7758, "genes": [ "ANAPC1", "ARF6", "ARL14", "BCL2L11", "CHTM1", "CKAP2L", "CSF1", "CSF2", "CXCL13", "DKFZp666O0110", "FBLN7", "GAS6", "GATA3", "GRB2", "IL1A", "IL1B", "IL1F10", "IL1R1", "IL1RL2", "IL1RN", "IL2", "IL23A", "IL36A", "IL36B", "IL36G", "IL36RN", "IL37", "IL6", "MAPK1", "MERTK", "NT5DC4", "PLCG2", "POLR1A", "POLR1C", "POLR1D", "POLR1F", "POLR1G", "POLR2F", "POLR2H", "POLR2K", "POLR2L", "PSD4", "RAC1", "RGPD8", "SLC20A1", "SOCS1", "SOCS3", "STAT1", "TMEM87B", "TTL", "TULP1", "ZC3H8", "ZNRD1" ] }, "position": { "x": 884.5, "y": 2272.9446642487483, "id": "575e5fc2-cbec-4131-832a-111221f1b6d7" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "ae07b621-cb65-4d74-a495-4cd3d9ab8aff", "name": [ "CYTOPLASMIC PATTERN RECOGNITION RECEPTOR SIGNALING PATHWAY%GOBP%GO:0002753" ], "description": [ "cytoplasmic pattern recognition receptor signaling pathway" ], "pvalue": 0, "gs_type": null, "gs_size": 60, "padj": 0.0004, "mcode_cluster_id": null, "NES": -2.0452, "genes": [ "ALPK1", "BECN1", "CARD8", "CGAS", "CLPB", "COLEC12", "CYLD", "DHX58", "EPG5", "IFIH1", "IKBKB", "INAVA", "IPO5", "IRAK1", "IRAK4", "IRF3", "IRF7", "IRGM", "ITCH", "LACC1", "MAP2K6", "MAP3K7", "MAVS", "MYD88", "NLRP1", "NLRP3", "NLRP6", "NOD1", "NOD2", "OAS1", "OAS3", "OTULIN", "PHB1", "PHB2", "PIK3AP1", "PYCARD", "RELA", "RFTN1", "RIGI", "RIPK2", "RNF135", "RNF34", "SCARA3", "SCIMP", "STING1", "TBK1", "TICAM1", "TIFA", "TLR3", "TLR7", "TLR8", "TLR9", "TNFAIP3", "TNIP2", "TRAF3IP3", "TRAF6", "TRIM25", "UNC93B1", "XIAP", "YWHAE" ] }, "position": { "x": 1595.7348424140118, "y": 487.39974000421716, "id": "ae07b621-cb65-4d74-a495-4cd3d9ab8aff" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "2b6b3d64-d726-43fb-8ef0-22bc42e5d7c0", "name": [ "DNA REPLICATION%GOBP%GO:0006260" ], "description": [ "DNA replication" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 152, "padj": 0.0022, "mcode_cluster_id": "Cluster 32", "NES": -1.6954, "genes": [ "ASF1A", "ATR", "ATRX", "BARD1", "BAZ1A", "BLM", "BOD1L1", "BRCA1", "BRCA2", "CAMSAP3", "CARM1", "CDC34", "CDC45", "CDK1", "CDK2", "CDK2AP1", "CDK9", "CDT1", "CENPS", "CENPX", "CHEK1", "CHRAC1", "DDX11", "DNA2", "DONSON", "DUT", "EME1", "EME2", "ETAA1", "EXD2", "EXO1", "FAM111A", "FAM111B", "FANCM", "FBH1", "FEN1", "GEN1", "GINS1", "GINS2", "GINS3", "GINS4", "GMNN", "GRWD1", "HELB", "HMGA1", "KHDC3L", "KIN", "LIG1", "LIG3", "LRWD1", "MCM10", "MCM2", "MCM3", "MCM4", "MCM5", "MCM6", "MCM7", "MCM8", "MCM9", "MCMBP", "MGME1", "MMS22L", "MRE11", "MUS81", "NAP1L1", "NBN", "NOC3L", "NT5M", "NUCKS1", "OOEP", "ORC1", "ORC2", "ORC3", "ORC4", "ORC5", "ORC6", "PARP1", "PCLAF", "PCNA", "PIF1", "PNKP", "POLA1", "POLA2", "POLB", "POLD1", "POLD2", "POLD3", "POLD4", "POLE", "POLE2", "POLE3", "POLE4", "POLG", "POLG2", "POLL", "POLQ", "PRIM1", "PRIM2", "PRIMPOL", "PTMS", "PURA", "RAD50", "RAD51", "RBBP8", "RBMS1", "RECQL", "RECQL4", "RECQL5", "REV1", "RFC1", "RFC2", "RFC3", "RFC4", "RFC5", "RFWD3", "RNASEH1", "RNASEH2A", "RPA1", "RPA2", "RPA3", "RPA4", "RRM1", "RRM2B", "RTEL1", "RTF2", "SAMHD1", "SET", "SETMAR", "SLFN11", "SMARCAL1", "SSBP1", "TBRG1", "TEFM", "TICRR", "TIMELESS", "TIPIN", "TK1", "TONSL", "TOP1", "TOP1MT", "TOPBP1", "TRAIP", "TREX1", "TWNK", "UPF1", "WDHD1", "WDR18", "WRN", "WRNIP1", "ZNF830", "ZPR1", "ZRANB3" ] }, "position": { "x": 983.0797140951148, "y": 1844.2227546214026, "id": "2b6b3d64-d726-43fb-8ef0-22bc42e5d7c0", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "9d969202-1d89-4fb6-add4-5afea7648735", "name": [ "INTERFERON-MEDIATED SIGNALING PATHWAY%GOBP%GO:0140888" ], "description": [ "interferon-mediated signaling pathway" ], "pvalue": 0.0000012973, "gs_type": null, "gs_size": 51, "padj": 0.0001, "mcode_cluster_id": "Cluster 18", "NES": -2.1895, "genes": [ "AZI2", "HCK", "HDAC4", "IFI27", "IFITM1", "IFITM2", "IFITM3", "IFNA10", "IFNA13", "IFNA14", "IFNA16", "IFNA17", "IFNA2", "IFNA21", "IFNA4", "IFNA5", "IFNA6", "IFNA7", "IFNA8", "IFNAR1", "IFNAR2", "IFNB1", "IFNE", "IFNG", "IFNGR1", "IFNGR2", "IFNK", "IFNL1", "IFNL2", "IFNL3", "IFNL4", "IFNLR1", "IFNW1", "IKBKE", "IL10RB", "IRAK1", "IRF1", "JAK1", "JAK2", "MAVS", "MYD88", "OAS2", "RAF1", "SP100", "STAT1", "STAT2", "TANK", "TBK1", "TBKBP1", "TRAF3", "TYK2" ] }, "position": { "x": 370.4073620700456, "y": 1609.4865735698947, "id": "9d969202-1d89-4fb6-add4-5afea7648735", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "76140370-9a3b-4c65-b512-a7af4fac5c30", "name": [ "INTERSTRAND CROSS-LINK REPAIR%GOBP%GO:0036297" ], "description": [ "interstrand cross-link repair" ], "pvalue": 0.0029, "gs_type": null, "gs_size": 40, "padj": 0.0354, "mcode_cluster_id": null, "NES": -1.6464, "genes": [ "ATR", "CENPS", "CENPX", "DCLRE1A", "DCLRE1B", "DCLRE1C", "ERCC4", "ERCC6L2", "EXO5", "FAAP100", "FAAP20", "FAAP24", "FAN1", "FANCA", "FANCB", "FANCC", "FANCD2", "FANCE", "FANCF", "FANCG", "FANCI", "FANCL", "FANCM", "FIRRM", "HMCES", "HROB", "MCM8", "MCM9", "NEIL3", "NUCKS1", "POLN", "RAD51", "RAD51AP1", "RFWD3", "RNF168", "RNF8", "SPRTN", "VCP", "XPA", "XRCC3" ] }, "position": { "x": 2116.5, "y": 2195.9446642487483, "id": "76140370-9a3b-4c65-b512-a7af4fac5c30" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "429ae00a-7704-4bdb-b42a-d3c8b0e20579", "name": [ "BRAIN DEVELOPMENT%GOBP%GO:0007420" ], "description": [ "brain development" ], "pvalue": 0.0033, "gs_type": null, "gs_size": 387, "padj": 0.0386, "mcode_cluster_id": null, "NES": 1.3922, "genes": [ "AATK", "ABCB6", "ACTB", "ADGRG1", "AFF2", "AFG2A", "AGTPBP1", "AGTR2", "AHI1", "AIM2", "AKIRIN2", "AKNA", "AMIGO1", "AMIGO2", "AMIGO3", "ANAPC7", "APLP1", "APOD", "AQP1", "ARHGAP11B", "ARL13B", "ARNT2", "ASCL1", "ATF5", "ATP1A2", "ATP1B2", "ATP5PB", "ATP5PF", "ATP7A", "ATXN1", "BAG6", "BASP1", "BBS2", "BBS4", "BGLAP", "BMP2", "BMP4", "BMP5", "BMP7", "BPTF", "BTBD3", "C12orf57", "CA10", "CALM1", "CALM2", "CALM3", "CASP5", "CBLN1", "CCDC14", "CCDC85C", "CDC42", "CDK5R1", "CDK5R2", "CDK5RAP1", "CDK5RAP2", "CDK5RAP3", "CDK6", "CEND1", "CENPF", "CEP120", "CEP290", "CHD5", "CHD8", "CHRNB2", "CIC", "CKB", "CLN5", "CLP1", "CNP", "CNTN1", "CNTN4", "CNTN5", "CNTNAP2", "COL3A1", "COL4A1", "COQ8B", "COX6B1", "CSNK1D", "CTNNA2", "CTNNB1", "CTNS", "CX3CR1", "CXCR4", "DAB2IP", "DCT", "DDIT4", "DHX37", "DLC1", "DLL1", "DLX2", "DMBX1", "DNAJC30", "DOCK7", "DRAXIN", "DRD1", "DRD2", "DSCAML1", "DYNLL1", "EEF1AKMT4-ECE2", "EFHC1", "EGR2", "EML1", "EMX1", "EMX2", "EOMES", "EPHA5", "EPHA7", "EPHB2", "EPHB3", "ERBB4", "EURL", "FAIM2", "FAT4", "FBXW11", "FCGR2B", "FGF13", "FGF9", "FGFR2", "FOXB1", "FOXC1", "FOXG1", "FOXJ1", "FOXP2", "FOXR1", "FUT1", "FXR1", "FXR2", "FZD1", "FZD3", "FZD6", "G6PD", "GHRH", "GIT1", "GIT2", "GLI2", "GLUD1", "GNB4", "GPR158", "GRHL2", "GRID2", "GRIN1", "GRIN2A", "GRIN2B", "GRIN2C", "GRIN2D", "GSK3B", "H2BC12L", "HAP1", "HES1", "HES5", "HESX1", "HOOK3", "HSD3B1", "HSD3B2", "HSPA5", "HSPG2", "HTR6", "ID2", "IER3IP1", "INA", "INHBA", "ITGAM", "JHY", "KDM2B", "KDM4B", "KDM7A", "KIF14", "KIF26A", "KIRREL3", "KNDC1", "LAMB1", "LHX1", "LHX6", "LHX8", "LMX1A", "LRP6", "LRP8", "LRRK2", "MACROH2A2", "MAOB", "MAP1S", "MAPKAP1", "MAST1", "MATCAP1", "MBOAT7", "MBP", "MDGA1", "MEIS1", "MEIS2", "MEIS3", "MEIS3P1", "MEIS3P2", "METTL14", "METTL3", "MFSD2A", "MGARP", "MINK1", "MKKS", "MYO16", "NARS1", "NCOA6", "NDE1", "NDNF", "NDRG2", "NDUFS3", "NDUFS4", "NES", "NEUROD1", "NEUROD2", "NEUROG1", "NEUROG2", "NEUROG3", "NF1", "NFASC", "NFIB", "NIPBL", "NKX2-1", "NKX2-2", "NKX2-6", "NLGN4X", "NOG", "NOTCH2NLA", "NOTCH2NLB", "NOTCH2NLC", "NPY", "NR0B1", "NR4A2", "NRCAM", "NSUN5", "NTRK2", "NUMB", "NUMBL", "OPHN1", "OTX2", "P2RY12", "PADI2", "PAFAH1B1", "PALS1", "PAX2", "PBX1", "PBX2", "PBX3", "PBX4", "PCDH18", "PCM1", "PDSS2", "PEX13", "PHACTR1", "PHF8", "PHGDH", "PHOX2B", "PITPNM1", "PITX2", "PITX3", "PLCB1", "PLP1", "PLXNA3", "PLXNB2", "POMK", "POTEE", "POU6F1", "PPT1", "PROX1", "PTCH1", "PTCHD1", "PTEN", "PTF1A", "PTPN11", "QARS1", "RAB18", "RAB3GAP1", "RAD1", "RAPGEF2", "RBBP4", "RBBP7", "RELN", "RHOA", "ROBO1", "ROBO2", "ROGDI", "RORA", "RTN1", "RTN3", "RTN4", "RTN4R", "RYK", "S100A1", "SALL1", "SCN5A", "SCT", "SCYL2", "SDF4", "SEC16A", "SEMA3A", "SEMA3E", "SEMA4C", "SEMA5A", "SEMA6B", "SETD1A", "SHANK3", "SHH", "SHROOM2", "SHROOM4", "SIRT2", "SIX3", "SKI", "SLC23A1", "SLC6A17", "SLIT1", "SLIT2", "SLIT3", "SMARCA1", "SMG9", "SMO", "SOX1", "SOX11", "SOX12", "SOX14", "SOX15", "SOX2", "SOX21", "SOX3", "SOX4", "SOX6", "SPEF2", "SRGAP2", "SRGAP2C", "SRY", "STIL", "SUDS3", "SYNGR3", "SYPL2", "SZT2", "TACC1", "TACC2", "TACC3", "TAF1", "TBC1D23", "TBR1", "TGFBR2", "TMEM108", "TMEM14B", "TMX2", "TOX", "TRAPPC9", "TRNP1", "TSKU", "TTBK1", "TTBK2", "TUBGCP2", "TYRO3", "TYROBP", "UBE3A", "UFC1", "UFM1", "UGP2", "UTP3", "VAX1", "VAX2", "VCX", "VCX2", "VCX3A", "VCX3B", "VCY1B", "VPS51", "WDR62", "WNT1", "WNT2", "WNT2B", "WNT3", "WNT3A", "WNT5A", "WNT7A", "WNT7B", "WNT9B", "YWHAE", "YWHAH", "YWHAQ", "ZDHHC16", "ZIC1", "ZIC2", "ZMIZ1", "ZNF148", "ZNF335", "ZNF365", "ZNF430", "ZSWIM6" ] }, "position": { "x": 3511.039072651805, "y": 2034.4446642487483, "id": "429ae00a-7704-4bdb-b42a-d3c8b0e20579" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "891c7880-a77a-4d36-9208-f2c6710e8f73", "name": [ "CDC20:PHOSPHO-APC C MEDIATED DEGRADATION OF CYCLIN A%REACTOME%R-HSA-174184.3" ], "description": [ "Cdc20:Phospho-APC C mediated degradation of Cyclin A" ], "pvalue": 0.0000019184, "gs_type": null, "gs_size": 73, "padj": 0.0001, "mcode_cluster_id": "Cluster 1", "NES": -2.07, "genes": [ "ANAPC1", "ANAPC10", "ANAPC11", "ANAPC15", "ANAPC16", "ANAPC2", "ANAPC4", "ANAPC5", "ANAPC7", "BUB1B", "BUB3", "CCNA1", "CCNA2", "CDC16", "CDC20", "CDC23", "CDC26", "CDC27", "CDK1", "MAD2L1", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RPS27A", "SEM1", "UBA52", "UBB", "UBC", "UBE2C", "UBE2D1", "UBE2E1", "UBE2S" ] }, "position": { "x": 470.29075764467245, "y": 840.9527496424269, "id": "891c7880-a77a-4d36-9208-f2c6710e8f73", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "4a78eb0b-8180-4968-a443-024a3248d99d", "name": [ "BARD1 SIGNALING EVENTS%PATHWAY INTERACTION DATABASE NCI-NATURE CURATED DATA%BARD1 SIGNALING EVENTS" ], "description": [ "BARD1 signaling events" ], "pvalue": 0.0043, "gs_type": null, "gs_size": 28, "padj": 0.0458, "mcode_cluster_id": null, "NES": -1.7039, "genes": [ "ATM", "ATR", "BARD1", "BRCA1", "CCNE1", "CDK2", "CSTF1", "EWSR1", "FANCA", "FANCC", "FANCD2", "FANCE", "FANCF", "FANCG", "FANCL", "MRE11", "NBN", "PCNA", "PRKDC", "RAD50", "RAD51", "RBBP8", "TOPBP1", "TP53", "UBE2D3", "UBE2L3", "XRCC5", "XRCC6" ] }, "position": { "x": 3271.5, "y": 2195.9446642487483, "id": "4a78eb0b-8180-4968-a443-024a3248d99d" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "5a961c87-d858-45ce-865f-e96f3251f7d8", "name": [ "NEGATIVE REGULATION OF CELL ADHESION%GOBP%GO:0007162" ], "description": [ "negative regulation of cell adhesion" ], "pvalue": 0, "gs_type": null, "gs_size": 235, "padj": 0.0008, "mcode_cluster_id": null, "NES": -1.6852, "genes": [ "ABCA12", "ACER2", "ACTN4", "ACVRL1", "ADAM10", "ADAM15", "ADAM22", "ADAMDEC1", "ADAMTS18", "ADIPOQ", "ADTRP", "AJAP1", "AKNA", "AKT1", "ALOX12", "ANGPT1", "ANXA1", "AP1AR", "APOA1", "APOD", "ARG1", "ARHGAP6", "ARHGDIG", "ASS1", "B4GALNT2", "BMP2", "BMP4", "BMP6", "BTN2A2", "C1QTNF1", "CASK", "CBFB", "CBLL1", "CCL21", "CCL25", "CCL28", "CD164", "CD274", "CD300A", "CD9", "CDH1", "CDH13", "CDKN2A", "CDSN", "CEACAM1", "CEBPB", "CLASP2", "CORO1C", "CORO2B", "CR1", "CRTAM", "CTLA4", "CTSG", "CX3CL1", "CXCL12", "CYP1B1", "DACT2", "DAPL1", "DEFB118", "DLC1", "DLG5", "DMTN", "DSCAM", "DUSP1", "DUSP22", "DUSP3", "EFNA5", "EPCAM", "EPHA4", "EPHB2", "ERBB3", "FAM107A", "FBLN1", "FGL1", "FOXJ1", "FOXP3", "FXYD5", "FZD4", "FZD7", "GBP1", "GCNT2", "GLI3", "GLMN", "GPNMB", "GTPBP4", "HAVCR2", "HFE", "HLA-DRB1", "HLA-E", "HLA-G", "HMGB1", "HOXA7", "HRG", "IFNA2", "IFNB1", "IFNL1", "IHH", "IL10", "IL1RN", "IL4I1", "ILDR2", "IRF1", "ITGB1BP1", "JAG1", "JAK3", "JAM3", "KANK1", "KLF4", "KNG1", "LAG3", "LAPTM5", "LAX1", "LGALS3", "LGALS9", "LGALS9B", "LGALS9C", "LILRB1", "LILRB2", "LILRB4", "LOXL3", "LPXN", "MAD2L2", "MAP2K5", "MAP4K4", "MAPK7", "MBP", "MDK", "MELTF", "METTL3", "MIA3", "MMP12", "MUC1", "MUC21", "MYADM", "MYOC", "NEXMIF", "NF2", "NOTCH1", "NOTCH4", "PAG1", "PDCD1", "PDCD1LG2", "PDE3B", "PHLDB2", "PLA2G2A", "PLA2G2D", "PLA2G2E", "PLA2G2F", "PLA2G5", "PLET1", "PLG", "PLXNA1", "PLXNA2", "PLXNA3", "PLXNA4", "PLXNB1", "PLXNB2", "PLXNB3", "PLXNC1", "PLXND1", "PODXL", "PPARA", "PPM1F", "PRKAR1A", "PRKCD", "PRKG1", "PRNP", "PTEN", "PTK2", "PTPN2", "PTPN22", "PTPRC", "PTPRO", "RASA1", "RC3H1", "RC3H2", "RCC2", "RDX", "RGCC", "RHOA", "RIPOR2", "RND1", "RUNX1", "RUNX3", "SCRIB", "SDC4", "SEMA3E", "SEMA4D", "SEMA5A", "SEMA6A", "SERPINE1", "SERPINE2", "SFTPD", "SH2B3", "SIPA1", "SLC4A2", "SMAD7", "SNAI2", "SOCS1", "SOCS5", "SPI1", "SPINT2", "SPN", "SPOCK1", "SPRY4", "SRC", "TACSTD2", "TARM1", "TBCD", "TBX21", "TGFB1", "TGFBI", "THBS1", "TIGIT", "TMEM131L", "TMX1", "TNFAIP8L2", "TNFRSF14", "TNFRSF21", "TNFSF4", "TRPV4", "TWSG1", "UFL1", "VEGFA", "VSIG4", "VSIR", "VTCN1", "WNK1", "WNT1", "XCL1", "YTHDF2", "ZBTB7B", "ZC3H12A", "ZC3H8", "ZNF703" ] }, "position": { "x": 2503.2964816440985, "y": 227.56716140394258, "id": "5a961c87-d858-45ce-865f-e96f3251f7d8" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "80d50397-c435-4d5f-af0d-1bb0145eae5c", "name": [ "POSITIVE REGULATION OF NON-CANONICAL NF-KAPPAB SIGNAL TRANSDUCTION%GOBP%GO:1901224" ], "description": [ "positive regulation of non-canonical NF-kappaB signal transduction" ], "pvalue": 0.001, "gs_type": null, "gs_size": 51, "padj": 0.0165, "mcode_cluster_id": null, "NES": -1.7412, "genes": [ "ACTN4", "ADISSP", "AGER", "APP", "C1QTNF4", "CCL19", "CD27", "CD86", "DDX3X", "EGFR", "EIF2AK2", "IFI35", "IL12B", "IL1B", "IL23A", "LAPTM5", "LGALS9", "LRRC19", "MAP3K7", "NLRP12", "NLRP3", "NMI", "NOD1", "NOD2", "NR3C2", "PDCD4", "PHB1", "PHB2", "PTP4A3", "PYCARD", "RELA", "RHOA", "RPS3", "RTKN2", "SASH1", "SPHK1", "TCIM", "TERF2IP", "TLR2", "TLR3", "TLR4", "TLR7", "TLR9", "TNF", "TNFSF14", "TRIM26", "TRIM44", "TRIM55", "TRIM56", "TRIP6", "VCP" ] }, "position": { "x": 2235.4679460868697, "y": 1910.8542356888897, "id": "80d50397-c435-4d5f-af0d-1bb0145eae5c" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "41ca07c0-f35c-4d35-8022-0bffa878dea3", "name": [ "AXON GUIDANCE%REACTOME DATABASE ID RELEASE 81%422475" ], "description": [ "Axon guidance" ], "pvalue": 0.001, "gs_type": null, "gs_size": 521, "padj": 0.0167, "mcode_cluster_id": null, "NES": 1.3636, "genes": [ "ABL1", "ABL2", "ABLIM1", "ABLIM2", "ABLIM3", "ACTB", "ACTG1", "ACTR2", "ACTR3", "ADAM10", "AGAP2", "AGRN", "AKAP5", "ALCAM", "ANK1", "ANK2", "ANK3", "AP2A1", "AP2A2", "AP2B1", "AP2M1", "AP2S1", "APH1A", "APH1B", "ARHGAP35", "ARHGAP39", "ARHGEF11", "ARHGEF12", "ARHGEF28", "ARHGEF7", "ARPC1A", "ARPC1B", "ARPC2", "ARPC3", "ARPC4", "ARPC5", "ARTN", "CACNA1C", "CACNA1D", "CACNA1G", "CACNA1H", "CACNA1I", "CACNA1S", "CACNB1", "CACNB2", "CACNB3", "CACNB4", "CAP1", "CAP2", "CASC3", "CD24", "CD72", "CDC42", "CDK5", "CDK5R1", "CFL1", "CHL1", "CLASP1", "CLASP2", "CLTA", "CLTB", "CLTC", "CLTCL1", "CNTN1", "CNTN2", "CNTN6", "CNTNAP1", "COL4A1", "COL4A2", "COL4A3", "COL4A4", "COL4A5", "COL6A1", "COL6A2", "COL6A3", "COL6A5", "COL6A6", "COL9A1", "COL9A2", "COL9A3", "CRMP1", "CSNK2A1", "CSNK2A2", "CSNK2B", "CUL2", "CXCL12", "CXCR4", "DAB1", "DAG1", "DCC", "DCX", "DLG1", "DLG3", "DLG4", "DNM1", "DNM2", "DNM3", "DOCK1", "DOK1", "DOK2", "DOK4", "DOK5", "DOK6", "DPYSL2", "DPYSL3", "DPYSL4", "DPYSL5", "DSCAM", "DSCAML1", "EFNA1", "EFNA2", "EFNA3", "EFNA4", "EFNA5", "EFNB1", "EFNB2", "EFNB3", "EGFR", "EIF4A3", "EIF4G1", "ELOB", "ELOC", "ENAH", "EPHA1", "EPHA10", "EPHA2", "EPHA3", "EPHA4", "EPHA5", "EPHA6", "EPHA7", "EPHA8", "EPHB1", "EPHB2", "EPHB3", "EPHB4", "EPHB6", "ERBB2", "ETF1", "EVL", "EZR", "FARP2", "FAU", "FES", "FLRT3", "FRS2", "FYN", "GAB1", "GAB2", "GAP43", "GDNF", "GFRA1", "GFRA2", "GFRA3", "GFRA4", "GIT1", "GPC1", "GRB10", "GRB7", "GRIN1", "GRIN2B", "GSK3B", "GSPT1", "GSPT2", "HJV", "HOXA2", "HRAS", "HSP90AA1", "HSP90AB1", "HSPA8", "IRS2", "ISL1", "ITGA1", "ITGA10", "ITGA2", "ITGA2B", "ITGA5", "ITGA9", "ITGAV", "ITGB1", "ITGB3", "ITSN1", "KALRN", "KCNQ2", "KCNQ3", "KIF4A", "KIF4B", "L1CAM", "LAMA1", "LAMB1", "LAMC1", "LDB1", "LHX2", "LHX3", "LHX4", "LHX9", "LIMK1", "LIMK2", "LYN", "LYPLA2", "MAGOH", "MAGOHB", "MAP2K1", "MAP2K2", "MAPK1", "MAPK3", "MAPK7", "MET", "MMP2", "MMP9", "MSI1", "MSN", "MYH10", "MYH11", "MYH14", "MYH9", "MYL12A", "MYL12B", "MYL6", "MYL9", "MYO10", "MYO9B", "NCAM1", "NCAN", "NCBP1", "NCBP2", "NCK1", "NCK2", "NCSTN", "NELL2", "NEO1", "NFASC", "NGEF", "NRAS", "NRCAM", "NRP1", "NRP2", "NRTN", "NTN1", "NTN4", "NUMB", "PABPC1", "PAK1", "PAK2", "PAK3", "PAK4", "PAK5", "PAK6", "PDLIM7", "PFN1", "PFN2", "PIK3CA", "PIK3CB", "PIK3CD", "PIK3R1", "PIK3R2", "PIK3R3", "PIP5K1C", "PITPNA", "PLCG1", "PLXNA1", "PLXNA2", "PLXNA3", "PLXNA4", "PLXNB1", "PLXNB3", "PLXNC1", "PLXND1", "PPP3CB", "PRKACA", "PRKACB", "PRKACG", "PRKAR2A", "PRKCA", "PRKCQ", "PRNP", "PSEN1", "PSEN2", "PSENEN", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "PSPN", "PTK2", "PTPN11", "PTPRA", "PTPRC", "RAC1", "RANBP9", "RAP1GAP", "RASA1", "RBM8A", "RBX1", "RDX", "RELN", "RET", "RGMA", "RGMB", "RHOA", "RHOB", "RHOC", "RND1", "RNPS1", "ROBO1", "ROBO2", "ROCK1", "ROCK2", "RPL10", "RPL10A", "RPL10L", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL22L1", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL26L1", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL36AL", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL39L", "RPL3L", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS6KA1", "RPS6KA2", "RPS6KA3", "RPS6KA4", "RPS6KA5", "RPS6KA6", "RPS7", "RPS8", "RPS9", "RPSA", "RRAS", "SCN10A", "SCN11A", "SCN1A", "SCN1B", "SCN2A", "SCN2B", "SCN3A", "SCN3B", "SCN4A", "SCN4B", "SCN5A", "SCN7A", "SCN8A", "SCN9A", "SDC2", "SDCBP", "SEM1", "SEMA3A", "SEMA3E", "SEMA4A", "SEMA4D", "SEMA5A", "SEMA6A", "SEMA6D", "SEMA7A", "SH3GL2", "SH3KBP1", "SHANK3", "SHC1", "SHC3", "SHTN1", "SIAH1", "SIAH2", "SLIT1", "SLIT2", "SLIT3", "SOS1", "SOS2", "SPTA1", "SPTAN1", "SPTB", "SPTBN1", "SPTBN2", "SPTBN4", "SPTBN5", "SRC", "SRGAP1", "SRGAP2", "SRGAP3", "ST8SIA2", "ST8SIA4", "TIAM1", "TLN1", "TREM2", "TRIO", "TRPC1", "TRPC3", "TRPC4", "TRPC5", "TRPC6", "TRPC7", "TYROBP", "UBA52", "UBB", "UBC", "UNC5A", "UNC5B", "UNC5C", "UNC5D", "UPF2", "UPF3A", "UPF3B", "USP33", "VASP", "VAV2", "VAV3", "VLDLR", "WASL", "YES1", "ZSWIM8" ] }, "position": { "x": 854.783985295194, "y": 898.6769967905003, "id": "41ca07c0-f35c-4d35-8022-0bffa878dea3" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "name": [ "RRNA PROCESSING IN THE NUCLEUS AND CYTOSOL%REACTOME DATABASE ID RELEASE 81%8868773" ], "description": [ "rRNA processing in the nucleus and cytosol" ], "pvalue": 2.1354e-10, "gs_type": null, "gs_size": 193, "padj": 2.0035e-8, "mcode_cluster_id": "Cluster 2", "NES": 2.1271, "genes": [ "BMS1", "BOP1", "BUD23", "BYSL", "C1D", "CSNK1D", "CSNK1E", "DCAF13", "DDX21", "DDX47", "DDX49", "DDX52", "DHX37", "DIMT1", "DIS3", "DKC1", "EBNA1BP2", "EMG1", "ERI1", "EXOSC1", "EXOSC10", "EXOSC2", "EXOSC3", "EXOSC4", "EXOSC5", "EXOSC6", "EXOSC7", "EXOSC8", "EXOSC9", "FAU", "FBL", "FCF1", "FTSJ3", "GAR1", "GNL3", "HEATR1", "IMP3", "IMP4", "ISG20L2", "KRR1", "LAS1L", "LTV1", "MPHOSPH10", "MPHOSPH6", "MTREX", "NAT10", "NCL", "NHP2", "NIP7", "NOB1", "NOC4L", "NOL11", "NOL12", "NOL6", "NOL9", "NOP10", "NOP14", "NOP2", "NOP56", "NOP58", "PDCD11", "PELP1", "PES1", "PNO1", "PWP2", "RBM28", "RCL1", "RIOK1", "RIOK2", "RIOK3", "RPL10", "RPL10A", "RPL10L", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL22L1", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL26L1", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL36AL", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL39L", "RPL3L", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPP14", "RPP21", "RPP25", "RPP30", "RPP38", "RPP40", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "RRP1", "RRP36", "RRP7A", "RRP9", "SENP3", "SNU13", "TBL3", "TEX10", "THUMPD1", "TRMT112", "TSR1", "TSR3", "UBA52", "UTP11", "UTP14A", "UTP14C", "UTP15", "UTP18", "UTP20", "UTP25", "UTP3", "UTP4", "UTP6", "WDR12", "WDR18", "WDR3", "WDR36", "WDR43", "WDR46", "WDR75", "XRN2" ] }, "position": { "x": 649.4618836311579, "y": 499.8542451933003, "id": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "11def844-8b04-432a-965b-c1848476126a", "name": [ "ENERGY RESERVE METABOLIC PROCESS%GOBP%GO:0006112" ], "description": [ "energy reserve metabolic process" ], "pvalue": 0.0036, "gs_type": null, "gs_size": 39, "padj": 0.0409, "mcode_cluster_id": null, "NES": 1.6978, "genes": [ "ADGRF1", "ADGRF5", "ADRB3", "AGL", "ATG12", "ATG2A", "ATG2B", "ATG3", "G6PC1", "GAA", "GBE1", "GFPT1", "GFPT2", "GSK3B", "GYG1", "GYG2", "GYS1", "GYS2", "LEP", "LEPR", "MRAP2", "MT3", "NHLRC1", "NR1D1", "PER2", "PHKG2", "PID1", "PPP1R3C", "PRKAG2", "PYGB", "PYGL", "PYGM", "RB1CC1", "STBD1", "UGP2", "WDR45", "WDR45B", "WIPI1", "WIPI2" ] }, "position": { "x": 3918.539072651805, "y": 2195.9446642487483, "id": "11def844-8b04-432a-965b-c1848476126a" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "1f9449a0-c261-484f-b98d-9d09fbc83246", "name": [ "EMBRYO DEVELOPMENT%GOBP%GO:0009790" ], "description": [ "embryo development" ], "pvalue": 0.0022, "gs_type": null, "gs_size": 443, "padj": 0.0296, "mcode_cluster_id": "Cluster 16", "NES": -1.419, "genes": [ "ACVR1", "ACVR1C", "ADAM10", "AFF3", "AHDC1", "AHI1", "ALDH1A2", "ALDH1A3", "ALX1", "ANKRD24", "APELA", "APLNR", "ARL13B", "ARNT2", "ASCL2", "ATF4", "ATOH8", "ATP6AP2", "ATP6V1B1", "BASP1", "BBS4", "BBS5", "BBS7", "BCL10", "BMP2", "BMP4", "BMP5", "BMP7", "BMPR1A", "BMPR2", "BRCA1", "BRD3", "CACNA1C", "CAMSAP3", "CASP8", "CCDC103", "CCDC39", "CCDC40", "CDC40", "CDC73", "CELF1", "CELF4", "CELSR1", "CEP290", "CER1", "CHD7", "CHRD", "CITED2", "CLRN2", "COBL", "COL11A1", "COL12A1", "COL18A1", "COL1A1", "COL27A1", "COL2A1", "COL4A2", "COL6A1", "COL7A1", "COL8A1", "CRB2", "CREBBP", "CRIPTO", "CTNNB1", "CTR9", "CUL3", "CXCL8", "CXXC4", "CYP26B1", "DACT1", "DCANP1", "DEAF1", "DLC1", "DLL1", "DLL4", "DNAAF1", "DOP1B", "DSCAML1", "DUSP1", "DUSP2", "DUSP4", "DUSP5", "DVL1", "DVL1P1", "DVL2", "DVL3", "DYNC2I1", "E2F7", "E2F8", "ECE1", "EFEMP1", "EGFL8", "EIF4A3", "EMP2", "ENG", "EOMES", "EPHB2", "ERBB4", "ERCC3", "ESRRB", "EYA2", "FBN1", "FBN2", "FBXW4", "FGF2", "FGF8", "FGFR1", "FGFR2", "FLCN", "FLRT3", "FLT1", "FLT3LG", "FN1", "FOLR1", "FOXA2", "FOXB1", "FOXD3", "FOXE1", "FOXF1", "FOXH1", "FOXI1", "FOXI3", "FOXN4", "FUT8", "FUZ", "FZD5", "GATA3", "GATA4", "GCM1", "GDNF", "GLI2", "GLI3", "GPC3", "GREM2", "GRHL2", "GRHL3", "GSC", "HAND1", "HDAC1", "HDAC2", "HES1", "HES5", "HEY1", "HEY2", "HINFP", "HMGA2", "HOPX", "HORMAD1", "HOXA1", "HOXA11", "HOXA3", "HOXA4", "HOXA9", "HOXB3", "HOXB4", "HOXB7", "HOXB9", "HOXC4", "HOXC9", "HOXD3", "HOXD4", "HOXD8", "HOXD9", "HPN", "HSCB", "HTR2B", "ID2", "IFT122", "IGF2", "IHH", "IL3", "INHBA", "INTU", "IRX5", "ISL1", "ITGA2", "ITGA3", "ITGA4", "ITGA5", "ITGA7", "ITGA8", "ITGAV", "ITGB1", "ITGB2", "ITGB3", "ITGB4", "ITGB5", "KBTBD8", "KDF1", "KDM2B", "KDM6B", "KDR", "KIAA1217", "KIF16B", "KIT", "KITLG", "KLF4", "KLHL12", "KMT2A", "LAMA3", "LAMB1", "LAMB3", "LEO1", "LFNG", "LHX1", "LIG4", "LMBRD1", "LMO4", "LOXL3", "LRP2", "LRP6", "LUZP1", "MAP3K20", "MBNL1", "MEF2C", "MEGF8", "MEIS1", "MEIS2", "MEIS3", "MEIS3P1", "MEIS3P2", "MEOX1", "MEOX2", "MESP1", "MESP2", "MFAP2", "MFAP5", "MFRP", "MFSD2A", "MICAL2", "MIXL1", "MKKS", "MMP14", "MMP15", "MMP2", "MMP8", "MMP9", "MSGN1", "MSX1", "MSX2", "MTHFD1", "MTHFD1L", "MTHFR", "MYH3", "MYH6", "MYO3A", "MYO3B", "MYO6", "NANOG", "NASP", "NAT8B", "NDRG4", "NES", "NEUROD1", "NEUROG1", "NIPBL", "NKX2-5", "NKX2-6", "NODAL", "NOG", "NOLC1", "NOTCH1", "NPHP3", "NPM2", "NR4A3", "NR5A2", "OOEP", "OSR1", "OSR2", "OTOP1", "OTX2", "PADI6", "PAF1", "PALS1", "PAX2", "PAX8", "PBX1", "PBX2", "PBX3", "PBX4", "PCSK5", "PDCD6", "PDGFA", "PDGFB", "PDGFRA", "PDZD7", "PEF1", "PHACTR4", "PITX2", "PKD1", "PKD2", "PKDCC", "PLD6", "PLK4", "PLS1", "PLXNB2", "POLR1B", "POU3F4", "POU5F1", "PPIL1", "PPP1R35", "PPP2R3A", "PRICKLE1", "PROX1", "PTCH1", "PTPRR", "RAI2", "RARB", "RARG", "RARRES2", "RBP4", "RBPJ", "RBPMS2", "RICTOR", "RIPPLY1", "RIPPLY2", "RIPPLY3", "RNF112", "ROCK1", "ROCK2", "RPL10", "RTF1", "RYR2", "SALL1", "SCEL", "SCRIB", "SCX", "SEMA4C", "SETD2", "SETDB2", "SFRP2", "SH2B3", "SHH", "SIX1", "SIX2", "SIX3", "SIX4", "SKI", "SLC2A10", "SLC39A12", "SLC44A4", "SMAD1", "SMAD2", "SMAD5", "SMAD6", "SMO", "SNAI1", "SOBP", "SOD1", "SOX11", "SOX15", "SOX17", "SOX18", "SOX2", "SOX7", "SOX8", "SOX9", "SRF", "STIL", "STOX2", "STRA6", "STRC", "SULF1", "SULF2", "TAL1", "TASOR", "TBC1D23", "TBX1", "TBX18", "TBX19", "TBX2", "TBX20", "TBX3", "TBX4", "TBX5", "TBX6", "TBXT", "TCF21", "TCOF1", "TDRD1", "TDRD5", "TDRD6", "TDRD7", "TDRKH", "TEAD1", "TEAD2", "TEAD3", "TEAD4", "TET1", "TFAP2A", "TFEB", "TGFB1", "TGFB2", "TGFB3", "TGFBR1", "TGFBR2", "TH", "THOC5", "TIFAB", "TLE6", "TMIE", "TNF", "TPO", "TPRN", "TRIM15", "TRIM71", "TSC2", "TTC39C", "TWIST1", "UBR3", "UCMA", "UGDH", "USH1C", "USP22", "UTP25", "VANGL2", "VASP", "VEGFA", "VTN", "WDPCP", "WDR74", "WHRN", "WNT1", "WNT11", "WNT16", "WNT5A", "WNT7A", "WNT7B", "WNT8A", "WNT8B", "WNT9A", "WT1", "XYLT1", "YBX1", "YTHDF2", "ZFPM1", "ZIC1", "ZIC3", "ZNF281", "ZNF358", "ZNF568", "ZP3", "ZPR1" ] }, "position": { "x": 629.7146128083427, "y": 1441.1685340703684, "id": "1f9449a0-c261-484f-b98d-9d09fbc83246", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "b7d9e97e-c16e-4a94-8d08-e3869e95320f", "name": [ "DAP12 INTERACTIONS%REACTOME DATABASE ID RELEASE 81%2172127" ], "description": [ "DAP12 interactions" ], "pvalue": 0.0018, "gs_type": null, "gs_size": 40, "padj": 0.0249, "mcode_cluster_id": null, "NES": -1.8385, "genes": [ "B2M", "BTK", "CD300E", "CD300LB", "CLEC5A", "FYN", "GRAP2", "HLA-B", "HLA-C", "HLA-E", "HRAS", "KIR2DS2", "KIR2DS4", "KIR2DS5", "KIR3DS1", "KLRC2", "KLRD1", "KLRK1", "LCK", "LCP2", "NCR2", "NRAS", "PIK3CA", "PIK3CB", "PIK3R1", "PIK3R2", "PLCG1", "PLCG2", "RAC1", "SIGLEC14", "SIGLEC15", "SIGLEC16", "SIRPB1", "SOS1", "SYK", "TREM1", "TREM2", "TYROBP", "VAV2", "VAV3" ] }, "position": { "x": 1500.5, "y": 2272.9446642487483, "id": "b7d9e97e-c16e-4a94-8d08-e3869e95320f" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "5fad820d-6345-4761-a2d5-c43052a31a36", "name": [ "FORMATION OF A POOL OF FREE 40S SUBUNITS%REACTOME%R-HSA-72689.3" ], "description": [ "Formation of a pool of free 40S subunits" ], "pvalue": 3.6277e-18, "gs_type": null, "gs_size": 102, "padj": 1.4068e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7666, "genes": [ "EIF1AX", "EIF3A", "EIF3B", "EIF3C", "EIF3D", "EIF3E", "EIF3F", "EIF3G", "EIF3H", "EIF3I", "EIF3J", "EIF3K", "EIF3L", "EIF3M", "FAU", "RPL10", "RPL10A", "RPL10L", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL22L1", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL26L1", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL36AL", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL39L", "RPL3L", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "UBA52" ] }, "position": { "x": 745.3204204951779, "y": 286.72356522970836, "id": "5fad820d-6345-4761-a2d5-c43052a31a36", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "7151a713-c289-49f0-aa66-c156dbd1c164", "name": [ "HEDGEHOG 'OFF' STATE%REACTOME%R-HSA-5610787.3" ], "description": [ "Hedgehog 'off' state" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 100, "padj": 0.0032, "mcode_cluster_id": "Cluster 1", "NES": -1.7239, "genes": [ "ADCY1", "ADCY10", "ADCY2", "ADCY3", "ADCY4", "ADCY5", "ADCY6", "ADCY7", "ADCY8", "ADCY9", "BTRC", "CSNK1A1", "CUL1", "DYNC2H1", "FUZ", "GLI1", "GLI2", "GLI3", "GNAS", "GPR161", "GSK3B", "IFT122", "IFT140", "IFT172", "IFT52", "IFT57", "IFT88", "INTU", "ITCH", "KIF3A", "KIF7", "MKS1", "NUMB", "OFD1", "PRKACA", "PRKACB", "PRKACG", "PRKAR1A", "PRKAR1B", "PRKAR2A", "PRKAR2B", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "PTCH1", "RBX1", "RPGRIP1L", "RPS27A", "SEM1", "SKP1", "SMO", "SUFU", "TTC21B", "TULP3", "UBA52", "UBB", "UBC", "WDR19", "WDR35" ] }, "position": { "x": 460.91543095657335, "y": 754.9740893921904, "id": "7151a713-c289-49f0-aa66-c156dbd1c164", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "60120542-70b3-4439-85bc-e7386bc2c1bc", "name": [ "POSITIVE REGULATION OF TYPE I INTERFERON PRODUCTION%GOBP%GO:0032481" ], "description": [ "positive regulation of type I interferon production" ], "pvalue": 0, "gs_type": null, "gs_size": 68, "padj": 0.0006, "mcode_cluster_id": "Cluster 22", "NES": -1.9415, "genes": [ "ARRDC4", "CGAS", "CHUK", "DDX3X", "DHX33", "DHX36", "DHX58", "DHX9", "FLOT1", "G3BP1", "GAPDH", "GARIN5A", "HSP90AA1", "HSPD1", "IFIH1", "IKBKE", "IRAK1", "IRF1", "IRF3", "IRF5", "IRF7", "ISG15", "KPNA2", "MAVS", "MYD88", "NMB", "NMBR", "OAS1", "OAS2", "OAS3", "POLR3A", "POLR3B", "POLR3C", "POLR3D", "POLR3F", "POLR3G", "PQBP1", "PTPN11", "PTPN22", "RAB2B", "RIGI", "RIOK3", "RIPK2", "RNF135", "SETD2", "STAT1", "STING1", "TANK", "TBK1", "TICAM1", "TICAM2", "TLR2", "TLR3", "TLR4", "TLR7", "TLR8", "TLR9", "TOMM70", "TRAF3", "TRAF3IP3", "TRIM15", "TRIM56", "TRIM65", "UAP1", "USP22", "XIAP", "ZC3HAV1", "ZCCHC3" ] }, "position": { "x": 2113.3367936147056, "y": 1236.528417340852, "id": "60120542-70b3-4439-85bc-e7386bc2c1bc", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "30c08040-f18e-416c-ab53-b2de203ae759", "name": [ "CELL-CELL JUNCTION ORGANIZATION%GOBP%GO:0045216" ], "description": [ "cell-cell junction organization" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 147, "padj": 0.0049, "mcode_cluster_id": null, "NES": -1.6637, "genes": [ "ACTB", "ACTG1", "AFDN", "AJM1", "APC", "ARL2", "CAMSAP3", "CD177", "CD9", "CDH1", "CDH10", "CDH11", "CDH12", "CDH13", "CDH15", "CDH17", "CDH18", "CDH19", "CDH2", "CDH20", "CDH22", "CDH24", "CDH26", "CDH3", "CDH4", "CDH5", "CDH6", "CDH7", "CDH8", "CDH9", "CDHR3", "CLDN1", "CLDN10", "CLDN11", "CLDN12", "CLDN14", "CLDN15", "CLDN16", "CLDN17", "CLDN18", "CLDN19", "CLDN2", "CLDN20", "CLDN22", "CLDN23", "CLDN24", "CLDN25", "CLDN3", "CLDN34", "CLDN4", "CLDN5", "CLDN6", "CLDN7", "CLDN8", "CLDN9", "CNTNAP1", "CSF1R", "CSK", "CTNNA1", "CTNNB1", "CXADR", "DLG1", "DSG1", "DSG2", "DSP", "ECT2", "EPB41L3", "ESAM", "F2R", "F2RL1", "FBF1", "FERMT2", "FLCN", "FRMPD2", "FSCN1", "GJA1", "GJA4", "GJA5", "GJB1", "GJB2", "GJB6", "GJC1", "GJD3", "GRHL2", "ILDR1", "INAVA", "JAM3", "JUP", "KIFC3", "KIRREL1", "LIM2", "LIMS1", "LIMS2", "LSR", "MARVELD2", "MARVELD3", "MICALL2", "MPDZ", "MPP7", "MTSS1", "MYADM", "NLGN2", "NLGN4X", "NPHS1", "OCEL1", "OCLN", "PAK2", "PARD3", "PARD6A", "PARD6B", "PATJ", "PDCD6IP", "PECAM1", "PIP5K1C", "PKHD1", "PKN2", "PKP2", "PKP3", "PKP4", "PLEKHA7", "POF1B", "PRKCA", "PRKCI", "PRTN3", "PTPRO", "RAB13", "RAMP2", "RHOA", "RHOC", "SLC39A9", "SMAD3", "SMAD7", "SNAI2", "STRN", "TBCD", "TGFB1", "TGFB2", "TGFB3", "TJP1", "TJP2", "TJP3", "TLN1", "TLN2", "TRPV4", "VCL", "WDR1", "ZNF703" ] }, "position": { "x": 1664.1171751738252, "y": 1349.3885417325018, "id": "30c08040-f18e-416c-ab53-b2de203ae759" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "name": [ "INFLUENZA INFECTION%REACTOME DATABASE ID RELEASE 81%168255" ], "description": [ "Influenza Infection" ], "pvalue": 7.9446e-9, "gs_type": null, "gs_size": 154, "padj": 5.9248e-7, "mcode_cluster_id": "Cluster 2", "NES": 2.0892, "genes": [ "AAAS", "CALR", "CANX", "CLTA", "CLTC", "CPSF4", "DNAJC3", "EIF2AK2", "FAU", "GRSF1", "GTF2F1", "GTF2F2", "HSP90AA1", "HSPA1A", "IPO5", "ISG15", "KPNA1", "KPNA2", "KPNA3", "KPNA4", "KPNA5", "KPNA7", "KPNB1", "NDC1", "NUP107", "NUP133", "NUP153", "NUP155", "NUP160", "NUP188", "NUP205", "NUP210", "NUP214", "NUP35", "NUP37", "NUP42", "NUP43", "NUP50", "NUP54", "NUP62", "NUP85", "NUP88", "NUP93", "PABPN1", "PARP1", "POLR2A", "POLR2B", "POLR2C", "POLR2D", "POLR2E", "POLR2F", "POLR2G", "POLR2H", "POLR2I", "POLR2J", "POLR2K", "POLR2L", "POM121", "POM121C", "RAE1", "RAN", "RANBP2", "RPL10", "RPL10A", "RPL10L", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL22L1", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL26L1", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL36AL", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL39L", "RPL3L", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "SEC13", "SLC25A6", "TGFB1", "TPR", "UBA52", "XPO1" ] }, "position": { "x": 639.0169989091467, "y": 411.45060552396393, "id": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "2f2e970c-d039-4dd2-af40-f00bd9a7bdd1", "name": [ "PID_AURORA_B_PATHWAY%MSIGDB_C2%PID_AURORA_B_PATHWAY" ], "description": [ "PID_AURORA_B_PATHWAY" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 27, "padj": 0.0023, "mcode_cluster_id": null, "NES": -2.0183, "genes": [ "ARHA", "AURKA", "AURKB", "AURKC", "BIRC5", "CDCA8", "CENPA", "DKFZp686K18126", "HEL-S-34", "HEL113", "HEL25", "INCENP", "KIF20A", "KIF23", "KLHL13", "KLHL9", "KNTC2", "MYLK", "NCAPG", "NCL", "NSUN2", "PPP1CC", "PPP2R5D", "SGOL1", "SMC2", "SMC4", "tmp_locus_29" ] }, "position": { "x": 2133.7060044656573, "y": 1908.7918971667332, "id": "2f2e970c-d039-4dd2-af40-f00bd9a7bdd1" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "64e3fce0-8233-4644-90df-094c8ecd6aee", "name": [ "SOMITOGENESIS%REACTOME%R-HSA-9824272.2" ], "description": [ "Somitogenesis" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 55, "padj": 0.0019, "mcode_cluster_id": "Cluster 1", "NES": -1.9043, "genes": [ "CTNNB1", "DLL1", "DLL3", "EPHA4", "HES7", "LEF1", "LFNG", "MESP2", "MSGN1", "NOTCH1", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMB1", "PSMB10", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSMF1", "RBPJ", "RIPPLY2", "SEM1", "TBX6" ] }, "position": { "x": 462.2476897188163, "y": 757.6661796833203, "id": "64e3fce0-8233-4644-90df-094c8ecd6aee", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "48679781-296a-4c43-a57b-b7352fd6b81b", "name": [ "CYTOSOLIC DNA SENSING PATHWAY%WIKIPATHWAYS_20240410%WP4655%HOMO SAPIENS" ], "description": [ "Cytosolic DNA sensing pathway" ], "pvalue": 0.0038, "gs_type": null, "gs_size": 71, "padj": 0.0421, "mcode_cluster_id": null, "NES": -1.6592, "genes": [ "ADAR", "AIM2", "ATG12", "ATG5", "CASP10", "CASP8", "CCL4", "CCL4L2", "CCL5", "CGAS", "CHUK", "CYLD", "DKFZp686D10173", "FADD", "IF1AA1", "IF1AA3", "IF1AA4", "IF1AA5", "IF1AA6", "IF1AA8", "IF1AA9", "IF1AB1", "IF1AB4", "IF1DA1", "IFNA1", "IFNA13", "IFNA14", "IFNA4", "IKBKB", "IKBKE", "IKBKG", "IL18", "IL1B", "IL33", "IL6", "IRF3", "IRF7", "ISG15", "LOC728835", "MAVS", "MITA", "NFKB1", "NFKBIA", "NFKBIB", "NLRX1", "POLR1C", "POLR1D", "POLR2F", "POLR2H", "POLR2K", "POLR2L", "POLR3A", "POLR3C", "POLR3D", "POLR3E", "POLR3F", "POLR3G", "POLR3GL", "POLR3H", "POLR3K", "PYCARD", "RELA", "RIGI", "RIPK1", "RIPK3", "RNF125", "TBK1", "TRADD", "TREX1", "TRIM25", "ZBP1" ] }, "position": { "x": 2501.5, "y": 2195.9446642487483, "id": "48679781-296a-4c43-a57b-b7352fd6b81b" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "ef062941-f404-4409-ad95-58e2b23392c5", "name": [ "APC C:CDC20 MEDIATED DEGRADATION OF MITOTIC PROTEINS%REACTOME%R-HSA-176409.5" ], "description": [ "APC C:Cdc20 mediated degradation of mitotic proteins" ], "pvalue": 2.4658e-7, "gs_type": null, "gs_size": 76, "padj": 0, "mcode_cluster_id": "Cluster 1", "NES": -2.0939, "genes": [ "ANAPC1", "ANAPC10", "ANAPC11", "ANAPC15", "ANAPC16", "ANAPC2", "ANAPC4", "ANAPC5", "ANAPC7", "BUB1B", "BUB3", "CCNA1", "CCNA2", "CCNB1", "CDC16", "CDC20", "CDC23", "CDC26", "CDC27", "CDK1", "MAD2L1", "NEK2", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "PTTG1", "RPS27A", "SEM1", "UBA52", "UBB", "UBC", "UBE2C", "UBE2D1", "UBE2E1", "UBE2S" ] }, "position": { "x": 458.6550853012034, "y": 831.2073438910942, "id": "ef062941-f404-4409-ad95-58e2b23392c5", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "3a69b174-442a-4611-968c-804619a665a5", "name": [ "TP53 REGULATES TRANSCRIPTION OF GENES INVOLVED IN G2 CELL CYCLE ARREST%REACTOME%R-HSA-6804114.3" ], "description": [ "TP53 Regulates Transcription of Genes Involved in G2 Cell Cycle Arrest" ], "pvalue": 0.0046, "gs_type": null, "gs_size": 18, "padj": 0.0479, "mcode_cluster_id": null, "NES": -1.7302, "genes": [ "AURKA", "BAX", "CARM1", "CCNB1", "CDC25C", "CDK1", "E2F4", "EP300", "GADD45A", "PCNA", "PRMT1", "RBL1", "RBL2", "SFN", "TFDP1", "TFDP2", "TP53", "ZNF385A" ] }, "position": { "x": 268.5, "y": 2272.9446642487483, "id": "3a69b174-442a-4611-968c-804619a665a5" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "name": [ "L13A-MEDIATED TRANSLATIONAL SILENCING OF CERULOPLASMIN EXPRESSION%REACTOME DATABASE ID RELEASE 81%156827" ], "description": [ "L13a-mediated translational silencing of Ceruloplasmin expression" ], "pvalue": 1.6436e-18, "gs_type": null, "gs_size": 112, "padj": 7.3544e-16, "mcode_cluster_id": "Cluster 2", "NES": 2.7721, "genes": [ "EIF1AX", "EIF2S1", "EIF2S2", "EIF2S3", "EIF3A", "EIF3B", "EIF3C", "EIF3D", "EIF3E", "EIF3F", "EIF3G", "EIF3H", "EIF3I", "EIF3J", "EIF3K", "EIF3L", "EIF3M", "EIF4A1", "EIF4A2", "EIF4B", "EIF4E", "EIF4G1", "EIF4H", "FAU", "PABPC1", "RPL10", "RPL10A", "RPL10L", "RPL11", "RPL12", "RPL13", "RPL13A", "RPL14", "RPL15", "RPL17", "RPL18", "RPL18A", "RPL19", "RPL21", "RPL22", "RPL22L1", "RPL23", "RPL23A", "RPL24", "RPL26", "RPL26L1", "RPL27", "RPL27A", "RPL28", "RPL29", "RPL3", "RPL30", "RPL31", "RPL32", "RPL34", "RPL35", "RPL35A", "RPL36", "RPL36A", "RPL36AL", "RPL37", "RPL37A", "RPL38", "RPL39", "RPL39L", "RPL3L", "RPL4", "RPL41", "RPL5", "RPL6", "RPL7", "RPL7A", "RPL8", "RPL9P9", "RPLP0", "RPLP1", "RPLP2", "RPS10", "RPS11", "RPS12", "RPS13", "RPS14", "RPS15", "RPS15A", "RPS16", "RPS17", "RPS18", "RPS19", "RPS2", "RPS20", "RPS21", "RPS23", "RPS24", "RPS25", "RPS26", "RPS27", "RPS27A", "RPS27L", "RPS28", "RPS29", "RPS3", "RPS3A", "RPS4X", "RPS4Y1", "RPS4Y2", "RPS5", "RPS6", "RPS7", "RPS8", "RPS9", "RPSA", "UBA52" ] }, "position": { "x": 853.8082131086647, "y": 230.74072677224854, "id": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "collapsed": false }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "384c2df2-df70-4202-868a-0a3f136b7ee8", "name": [ "IL23-MEDIATED SIGNALING EVENTS%PATHWAY INTERACTION DATABASE NCI-NATURE CURATED DATA%IL23-MEDIATED SIGNALING EVENTS" ], "description": [ "IL23-mediated signaling events" ], "pvalue": 0.0009, "gs_type": null, "gs_size": 37, "padj": 0.0148, "mcode_cluster_id": null, "NES": -1.8595, "genes": [ "ALOX12B", "CCL2", "CD3E", "CD4", "CXCL1", "CXCL9", "IFNG", "IL12B", "IL12RB1", "IL17A", "IL17F", "IL18", "IL18R1", "IL18RAP", "IL19", "IL1B", "IL2", "IL23A", "IL23R", "IL24", "IL6", "ITGA3", "JAK2", "MPO", "NFKB1", "NFKBIA", "NOS2", "PIK3CA", "PIK3R1", "RELA", "SOCS3", "STAT1", "STAT3", "STAT4", "STAT5A", "TNF", "TYK2" ] }, "position": { "x": 1359.9607170719341, "y": 1801.8587965586644, "id": "384c2df2-df70-4202-868a-0a3f136b7ee8" }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "name": [ "P53-INDEPENDENT G1 S DNA DAMAGE CHECKPOINT%REACTOME DATABASE ID RELEASE 81%69613" ], "description": [ "p53-Independent G1 S DNA damage checkpoint" ], "pvalue": 0, "gs_type": null, "gs_size": 52, "padj": 0.0006, "mcode_cluster_id": "Cluster 1", "NES": -2.0195, "genes": [ "CDC25A", "CHEK1", "CHEK2", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "RPS27A", "SEM1", "UBA52", "UBB", "UBC" ] }, "position": { "x": 436.4714170039478, "y": 777.6533889975254, "id": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" }, { "data": { "id": "95936832-b64d-492e-9e46-98c1393697fa", "name": [ "ACTIVATION OF NF-KAPPAB IN B CELLS%REACTOME%R-HSA-1169091.2" ], "description": [ "Activation of NF-kappaB in B cells" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 67, "padj": 0.0041, "mcode_cluster_id": "Cluster 1", "NES": -1.8077, "genes": [ "BCL10", "BTRC", "CARD11", "CHUK", "CUL1", "FBXW11", "IKBKB", "IKBKG", "MALT1", "MAP3K7", "NFKB1", "NFKBIA", "NFKBIB", "NFKBIE", "PRKCB", "PSMA1", "PSMA2", "PSMA3", "PSMA4", "PSMA5", "PSMA6", "PSMA7", "PSMA8", "PSMB1", "PSMB10", "PSMB11", "PSMB2", "PSMB3", "PSMB4", "PSMB5", "PSMB6", "PSMB7", "PSMB8", "PSMB9", "PSMC1", "PSMC2", "PSMC3", "PSMC4", "PSMC5", "PSMC6", "PSMD1", "PSMD10", "PSMD11", "PSMD12", "PSMD13", "PSMD14", "PSMD2", "PSMD3", "PSMD4", "PSMD5", "PSMD6", "PSMD7", "PSMD8", "PSMD9", "PSME1", "PSME2", "PSME3", "PSME4", "PSMF1", "REL", "RELA", "RPS27A", "SEM1", "SKP1", "UBA52", "UBB", "UBC" ] }, "position": { "x": 474.2463677395993, "y": 830.4632131117578, "id": "95936832-b64d-492e-9e46-98c1393697fa", "collapsed": true }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": false, "classes": "" } ], "edges": [ { "data": { "id": "5ca48d8b-5f3e-4c9e-a981-7f525ffe91a4", "source": "604873a2-e2c8-43f7-9c84-95a5397f7479", "target": "e6d848e3-905e-461a-9175-98e15b3ff0a5", "similarity_coefficient": 0.4375, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c5b306f4-f330-4404-bb1e-06b27463499f", "source": "b6fea667-92eb-454f-a567-f6b38784bd26", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.2891566265060241, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f81d7135-d53c-499e-af57-0b9716299240", "source": "161e0c49-367f-4271-9b51-73943db8bfe3", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9fbae05d-0daa-4d1d-93e8-0b3f68dd005e", "source": "6189859e-374c-49ef-b16b-48eea47da1f1", "target": "f59c55ff-3a61-402d-84df-8cc060626bbd", "similarity_coefficient": 1, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aea64ed0-3ad7-4646-8716-13b11d7d1613", "source": "6189859e-374c-49ef-b16b-48eea47da1f1", "target": "ac098499-46ba-4296-a03f-9b11ac60dfaf", "similarity_coefficient": 1, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1eba3d13-cf5b-4b38-84d8-45c9625b09ab", "source": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.5842696629213483, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e83c49bc-ec21-4dae-bb54-123525483434", "source": "218e964f-2842-43f5-825a-917591457798", "target": "beb79ccf-a196-43d0-86ff-773092ba3490", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f15fde6d-1a99-4113-9514-3f1af4ef0ff1", "source": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c15cb5aa-1eba-422d-8564-613ee54d0dca", "source": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5a409d4b-f379-4a3e-aa8d-7d7bf3359f93", "source": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.32, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e1d7d4a4-71c1-4911-9567-b7e4691c22fd", "source": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.8064516129032258, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "072c3a6f-1fa6-42ee-a816-caac61f782b2", "source": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ed8d6d0f-40e8-49a9-b910-17bd1c2f86a4", "source": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b3f54930-b52a-47c8-a338-315d5c002e91", "source": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f97d02b1-f184-49db-b3e7-ba57a38e9843", "source": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "98e1fa4a-b810-4ab9-a001-a9e28d161360", "source": "f59c55ff-3a61-402d-84df-8cc060626bbd", "target": "ac098499-46ba-4296-a03f-9b11ac60dfaf", "similarity_coefficient": 1, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0be38f0f-eb99-4638-a804-cf6b81881a9c", "source": "1650d15a-9620-441d-a852-1ce19e3865c9", "target": "6189859e-374c-49ef-b16b-48eea47da1f1", "similarity_coefficient": 1, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "337a965c-adf5-46ca-9391-15c3316f0483", "source": "1650d15a-9620-441d-a852-1ce19e3865c9", "target": "ac098499-46ba-4296-a03f-9b11ac60dfaf", "similarity_coefficient": 1, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ee5c3743-063f-454c-82bf-ce3dd63ac8df", "source": "1650d15a-9620-441d-a852-1ce19e3865c9", "target": "f59c55ff-3a61-402d-84df-8cc060626bbd", "similarity_coefficient": 1, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "24be52e2-10ef-4818-8d0d-91d6a5176ab8", "source": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d2540df2-03e9-4342-b7da-13406c433a39", "source": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.9310344827586207, "overlap_size": 81, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "89a0e473-6c93-4098-9910-6a71093b3244", "source": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.5473684210526316, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "864db90e-b363-4646-8dd7-0f8e3fb3f499", "source": "e59b742f-7a21-4a50-8472-3500f07b5395", "target": "26a34b5a-7453-430a-9bb8-98e6a9254169", "similarity_coefficient": 0.5571428571428572, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "170d7859-d10b-40cb-88ac-9d0543c1d533", "source": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "746dd0f9-9c98-4150-bac8-7db5aa5d0eb3", "source": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4d2592c5-333e-4412-8feb-f792065d7854", "source": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "35085420-0159-4bd2-911c-c3862c5fe228", "source": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "44e7ec6e-066b-4217-87a8-09e15ad4c4f5", "source": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "99a5747d-ee12-4afd-9c92-ff765fed6cf8", "source": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "91eb4b08-b8ff-4f6c-9b6e-b6e84fd7161d", "source": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d0944a71-0110-4d13-8a81-ff099d2ff04c", "source": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e27edb34-af2c-42c4-af80-fb41c3e6e656", "source": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.2631578947368421, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "10206619-1ab9-4228-960d-957e69a68e7b", "source": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.2905027932960894, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "36d54b72-9973-40e7-8d1f-05a22c6dc217", "source": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.34615384615384615, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "83665964-1f8e-4711-94d7-7a015a3a24d6", "source": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.33774834437086093, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c8532c15-cac5-4253-af56-2fb085ae3bc6", "source": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.2810810810810811, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "efded701-8ec7-4942-9efd-6d702729800f", "source": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.2810810810810811, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "223e8f35-d18d-43df-b487-06f9f39b5731", "source": "68e7a14b-c228-4a18-b837-3f701c4b0045", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.30128205128205127, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a8170290-b227-4398-919e-974bdb312211", "source": "68e7a14b-c228-4a18-b837-3f701c4b0045", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.3157894736842105, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "49633c9f-669d-4eae-8bc9-3baeb3a87ebd", "source": "68e7a14b-c228-4a18-b837-3f701c4b0045", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.6865671641791045, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "251fc5e6-575b-4275-adc7-c93e795a3b7f", "source": "68e7a14b-c228-4a18-b837-3f701c4b0045", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.5217391304347826, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a99e1176-da3d-473a-8717-a9c0ddd458f3", "source": "68e7a14b-c228-4a18-b837-3f701c4b0045", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5581395348837209, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d570bf70-dad1-4faf-866d-5412ca4f71ca", "source": "68e7a14b-c228-4a18-b837-3f701c4b0045", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.7796610169491526, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9cab2877-21a4-413b-90fd-b141f8fe5b09", "source": "68e7a14b-c228-4a18-b837-3f701c4b0045", "target": "cbfeadab-ca27-40a7-8780-4bec2a9b1964", "similarity_coefficient": 0.2663316582914573, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9f279c16-4513-4c09-af0e-b46dfd1a2065", "source": "68e7a14b-c228-4a18-b837-3f701c4b0045", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.5217391304347826, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "68c7181b-2c9f-4a50-a329-afa27a3463d3", "source": "2c6012fd-f497-423b-9ab1-8cfc5154f253", "target": "581ea671-bfdc-4c0a-b5e7-c11440d05a47", "similarity_coefficient": 0.26282051282051283, "overlap_size": 41, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d4881a66-ea8e-4700-a825-d1548570a7e8", "source": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.9310344827586207, "overlap_size": 81, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f0686f19-285f-4b96-b1d6-d81c0e3660dd", "source": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 1, "overlap_size": 87, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "05fbeebc-8a66-41b5-91a5-70c4242d3044", "source": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c366c44c-518f-447b-bf8a-fc8a02f8e6e0", "source": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.5473684210526316, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "72308405-aee0-4996-9688-b92ef9d22df4", "source": "8aea10bd-3c39-46b4-9465-cb411ab247d8", "target": "debad6f1-5cfe-4c8b-bdd0-49966c0ff02c", "similarity_coefficient": 0.2727272727272727, "overlap_size": 12, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "98e07d3a-83c0-4f09-ad9c-df7bdb352069", "source": "ab7810f0-02db-4b8b-8f86-59cea7883939", "target": "0ab74ab8-46f6-40b9-84a3-f901312bfdd1", "similarity_coefficient": 0.6326530612244898, "overlap_size": 93, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3b801292-6b00-4871-bde7-b7c74ded8c5b", "source": "bc2a6276-c085-4011-a84b-10e3f2477948", "target": "ab7810f0-02db-4b8b-8f86-59cea7883939", "similarity_coefficient": 0.27071823204419887, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fc2c8b71-85a8-44ce-bfe2-58ec4e006775", "source": "bc2a6276-c085-4011-a84b-10e3f2477948", "target": "a71b38d5-6589-4c2c-a24c-7181a1100649", "similarity_coefficient": 0.5301204819277109, "overlap_size": 44, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1ae00040-cf99-4a14-998e-7f6f7dddf881", "source": "24b8c3ee-e039-4bd6-b2e9-0c0fd1be178e", "target": "4e7d0420-e081-42c4-a98b-1d820ef50cb2", "similarity_coefficient": 0.8653846153846154, "overlap_size": 450, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "233df1ee-d737-4966-b94d-f7e70ad7b06d", "source": "85446e1b-b536-4525-bd76-a5d08e5812d6", "target": "a71b38d5-6589-4c2c-a24c-7181a1100649", "similarity_coefficient": 0.8627450980392157, "overlap_size": 44, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "03f4400b-b08d-4835-98f1-ce48e07357ea", "source": "85446e1b-b536-4525-bd76-a5d08e5812d6", "target": "bc2a6276-c085-4011-a84b-10e3f2477948", "similarity_coefficient": 0.6144578313253012, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6494f9a7-fdf0-4374-921d-536f342ad081", "source": "85446e1b-b536-4525-bd76-a5d08e5812d6", "target": "ab7810f0-02db-4b8b-8f86-59cea7883939", "similarity_coefficient": 0.25316455696202533, "overlap_size": 40, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "13ae7a8f-e79e-489b-a641-f3a59bccd595", "source": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.5473684210526316, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "db58b182-3cd0-4bf5-8414-02c8fc605c1f", "source": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.696969696969697, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "be7703e8-e689-4acc-ab28-0c4baf6696d2", "source": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.5473684210526316, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e6398dcf-1c3e-4dcd-b04e-3be53bf5e5cb", "source": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5666666666666667, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "02faf103-ed9d-4688-8146-2822a0cbb159", "source": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.7384615384615385, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c6a836ca-9478-4568-8708-5000ffbcc17d", "source": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.2883435582822086, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9d3dde8b-41d3-4892-beb1-c86980b3358d", "source": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.2891566265060241, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a16ce88d-f55e-4c32-b71e-3e5d1c5fe7ab", "source": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.6438356164383562, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f2f4bf40-3179-450b-b802-9c26baf282cc", "source": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.375, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2955b8c0-5919-417f-8aa7-2f6628a33cb7", "source": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.2777777777777778, "overlap_size": 25, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "79a9ca26-cd12-4033-971c-40c07f80a80c", "source": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.2976190476190476, "overlap_size": 25, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e22f98f0-05b1-4efb-9176-27a7824d89ee", "source": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.42857142857142855, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bccd49bb-965b-40ba-9028-5f84d4e731ac", "source": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.375, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d5fb1ab8-bd57-48e5-8c98-2db19a81d15b", "source": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.42105263157894735, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "546e7e2c-ddc2-45e4-bac8-abdf92c50bd6", "source": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.2777777777777778, "overlap_size": 25, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bdf51973-5737-4cd4-8bca-d3a06c21d57c", "source": "2f85499a-8ba5-4b57-81ed-6faab231106e", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3fa20a68-d5c4-48a2-973a-72189dd105c4", "source": "2f85499a-8ba5-4b57-81ed-6faab231106e", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4c8a4f10-1daa-4708-b676-6a9739e7fabf", "source": "2f85499a-8ba5-4b57-81ed-6faab231106e", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9669079e-9570-4635-adb4-a5fc14bf9380", "source": "2f85499a-8ba5-4b57-81ed-6faab231106e", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b4b8c3d7-65ff-44b1-93df-a2f0e395150c", "source": "2f85499a-8ba5-4b57-81ed-6faab231106e", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fd29e885-76d2-44a7-89e6-de218464c46f", "source": "2f85499a-8ba5-4b57-81ed-6faab231106e", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.624113475177305, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1d9138a5-33e9-49f2-8ba7-9a739d9a5fa5", "source": "2f85499a-8ba5-4b57-81ed-6faab231106e", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.2692307692307692, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "225a7027-93af-4b91-9760-eca1d8e306d2", "source": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.4827586206896552, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6c446519-8bec-497c-bdaf-a966d16b5f4f", "source": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.3684210526315789, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6faf2225-5ac1-46f2-9d32-fa3bb2eb4cea", "source": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.3888888888888889, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "87b6d199-efac-4eff-becf-89aa8c78d649", "source": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.4827586206896552, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1ea2beb0-cdc6-4005-99bc-0a6b2abb407a", "source": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.5316455696202531, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0962b598-40c8-4955-ae55-d9a6a9877c65", "source": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "target": "cbfeadab-ca27-40a7-8780-4bec2a9b1964", "similarity_coefficient": 0.25821596244131456, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f49a595c-0512-4698-941e-459ae5c9fa13", "source": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.3684210526315789, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ef61bc6f-b65e-459c-b98d-842aee1ca7e4", "source": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.525, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ad5b5517-301d-4a05-8d04-2ce9a99aa186", "source": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.29333333333333333, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "32fd60c8-005c-47c6-b4f8-fec8a3a932ee", "source": "e6bdd19b-66e3-45e2-b2b1-92f658ccc62b", "target": "218e964f-2842-43f5-825a-917591457798", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "edb3f3eb-d04d-47e5-a85b-4fc08ad4a1e3", "source": "e6bdd19b-66e3-45e2-b2b1-92f658ccc62b", "target": "beb79ccf-a196-43d0-86ff-773092ba3490", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8b63492b-7280-4855-8e38-63f59b67e863", "source": "b1f8bc26-b379-46a2-9104-c4aee4fd545d", "target": "14401d8b-b7f0-4300-a60a-80084c2e1e78", "similarity_coefficient": 0.8297872340425532, "overlap_size": 39, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e1570d38-66c7-4700-9350-175087d02e64", "source": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.3081761006289308, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1b8f3ef5-0f41-4052-bc96-380f8283f8b4", "source": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.29518072289156627, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5e5db6c3-48cc-434f-85a6-c1d91dd5a351", "source": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.431924882629108, "overlap_size": 92, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2257bce4-342f-428e-8fec-93aeeeac8488", "source": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "target": "cbfeadab-ca27-40a7-8780-4bec2a9b1964", "similarity_coefficient": 0.2733812949640288, "overlap_size": 76, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "beb521b8-5266-4a0c-8c7f-10b8b66c3090", "source": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.4319526627218935, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b0fc47ac-b175-49b9-a1d3-2778ca9b4d1c", "source": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.4319526627218935, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "716fc9c0-c336-4cdc-8900-4c6a7457810f", "source": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.33540372670807456, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2ccfea79-87ff-4853-9a31-da921e0a37ba", "source": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.310126582278481, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "59920584-2f10-455f-a285-f0f7aecf9e23", "source": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.43902439024390244, "overlap_size": 72, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d10c6442-3f64-47ae-8710-68c9e56ded78", "source": "e682b67b-bd68-4c3b-a704-daf22703d592", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.44660194174757284, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "47b700f0-b65c-44cf-a3f2-4dafa9e14e60", "source": "e682b67b-bd68-4c3b-a704-daf22703d592", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.532608695652174, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a7f34f1b-88af-4262-8b2c-fe0abba8df2a", "source": "e682b67b-bd68-4c3b-a704-daf22703d592", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.25806451612903225, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e8958eb1-d663-45d5-a9fa-bc1b927502e6", "source": "e682b67b-bd68-4c3b-a704-daf22703d592", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.4166666666666667, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b26e5e42-3d3c-4f9b-acb0-87e4a5eb5930", "source": "e682b67b-bd68-4c3b-a704-daf22703d592", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.4791666666666667, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a84619bb-2a65-4ad3-a19d-bf3a388f4121", "source": "e682b67b-bd68-4c3b-a704-daf22703d592", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.3620689655172414, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2bde4a41-21ce-46fb-ace9-bf477a77ffbb", "source": "e682b67b-bd68-4c3b-a704-daf22703d592", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.408, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "82197c4b-364e-4891-8938-0fdc430742cd", "source": "e682b67b-bd68-4c3b-a704-daf22703d592", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.408, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8d5c0955-ef67-42f9-8cbd-ebdaee57d9f7", "source": "e682b67b-bd68-4c3b-a704-daf22703d592", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.26455026455026454, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7bb30413-a688-4773-b4b9-874ebadf1aa0", "source": "e682b67b-bd68-4c3b-a704-daf22703d592", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.5050505050505051, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5ab373ac-1410-4800-801b-16399a516a5b", "source": "e682b67b-bd68-4c3b-a704-daf22703d592", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.2512820512820513, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "df2ae2e2-5b46-4417-ac4c-68d7744ce5f9", "source": "1464dde0-7b27-424c-9e99-43dc975d4ea7", "target": "85446e1b-b536-4525-bd76-a5d08e5812d6", "similarity_coefficient": 0.27717391304347827, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0dffc818-26c0-4384-b0d7-0459e763e702", "source": "1464dde0-7b27-424c-9e99-43dc975d4ea7", "target": "0ab74ab8-46f6-40b9-84a3-f901312bfdd1", "similarity_coefficient": 0.40609137055837563, "overlap_size": 80, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2ad8e824-68ca-4f08-abf9-d056f8693361", "source": "1464dde0-7b27-424c-9e99-43dc975d4ea7", "target": "ab7810f0-02db-4b8b-8f86-59cea7883939", "similarity_coefficient": 0.5761904761904761, "overlap_size": 121, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b8cf74c4-90c0-44b4-a312-d4830c816d18", "source": "1464dde0-7b27-424c-9e99-43dc975d4ea7", "target": "bc2a6276-c085-4011-a84b-10e3f2477948", "similarity_coefficient": 0.2535211267605634, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "055eeefa-95b2-4ff8-b59f-594d7b38079d", "source": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5d803644-0e50-4583-bd87-deca2416b41a", "source": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "32473ed6-3b4a-41a2-bdfc-e73ab91b4e4f", "source": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "280e03f3-b8b2-4e4f-9f63-af29931f3a95", "source": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fde8ffdb-02fa-409a-bf3e-436684db97b5", "source": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0b0fee2c-d0a8-4025-97e9-c9f56924dc77", "source": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8855d2f7-8793-4306-8d3b-f3e673354fea", "source": "11b58f65-f23a-44f1-b169-1c79f44b4519", "target": "2cd596f4-3461-429e-a594-a3fa378f86eb", "similarity_coefficient": 0.91005291005291, "overlap_size": 172, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8d3f843c-197f-4199-845f-5744d5b86d46", "source": "22c84cad-f57f-4718-9687-42041195fe68", "target": "0ab74ab8-46f6-40b9-84a3-f901312bfdd1", "similarity_coefficient": 0.5, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "161a16a2-a46c-4271-9472-660cbcd67797", "source": "22c84cad-f57f-4718-9687-42041195fe68", "target": "bc2a6276-c085-4011-a84b-10e3f2477948", "similarity_coefficient": 0.2681564245810056, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "592ea83a-89ba-4f33-8d69-ccd42c64e645", "source": "22c84cad-f57f-4718-9687-42041195fe68", "target": "1464dde0-7b27-424c-9e99-43dc975d4ea7", "similarity_coefficient": 0.782608695652174, "overlap_size": 144, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8e15971b-c7c9-4401-8622-376e3462d44c", "source": "22c84cad-f57f-4718-9687-42041195fe68", "target": "a71b38d5-6589-4c2c-a24c-7181a1100649", "similarity_coefficient": 0.3055555555555556, "overlap_size": 44, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ba555df2-97c3-4fd0-8a41-3ae9ed3f3baf", "source": "22c84cad-f57f-4718-9687-42041195fe68", "target": "85446e1b-b536-4525-bd76-a5d08e5812d6", "similarity_coefficient": 0.3, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "591074d3-6f56-4cd9-b6a5-fc718cfe2a73", "source": "22c84cad-f57f-4718-9687-42041195fe68", "target": "ab7810f0-02db-4b8b-8f86-59cea7883939", "similarity_coefficient": 0.6918604651162791, "overlap_size": 119, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "136995ea-09bf-4828-810b-7c9e27151291", "source": "74066e62-8077-4fa7-b449-64cfecdb075a", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "11c1baee-fe49-4cff-a2a1-d656d53d7f56", "source": "74066e62-8077-4fa7-b449-64cfecdb075a", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.7652173913043478, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a1a7506c-57c7-4933-a96e-ca0f85f2b675", "source": "74066e62-8077-4fa7-b449-64cfecdb075a", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "13990711-227a-470e-be39-829b58e5e09c", "source": "74066e62-8077-4fa7-b449-64cfecdb075a", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "97e5f407-5a86-4b4e-b4d0-ee311ae30db1", "source": "74066e62-8077-4fa7-b449-64cfecdb075a", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "092ea5bd-e05e-467f-b4f5-13195e27ea01", "source": "74066e62-8077-4fa7-b449-64cfecdb075a", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "32230e63-f5a6-47ce-91ff-ec5d89adc2dd", "source": "74066e62-8077-4fa7-b449-64cfecdb075a", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.7457627118644068, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7b3cc06c-e910-40ca-9071-9d97c867e38b", "source": "74066e62-8077-4fa7-b449-64cfecdb075a", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.32710280373831774, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e2b7f5c7-f2a6-44d3-a8fa-1f218e1ede0a", "source": "763e4196-95c7-47ff-8ba9-808223cde662", "target": "11b58f65-f23a-44f1-b169-1c79f44b4519", "similarity_coefficient": 0.6287128712871287, "overlap_size": 127, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7d374088-3ccf-45eb-8cd8-f9701aa53b8a", "source": "763e4196-95c7-47ff-8ba9-808223cde662", "target": "2cd596f4-3461-429e-a594-a3fa378f86eb", "similarity_coefficient": 0.6555023923444976, "overlap_size": 137, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "abbb5cb8-4275-4fc5-a3ba-a25f7c0bcf24", "source": "c48684b6-8836-4a81-8160-62d1535f0af8", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.44144144144144143, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dba02f23-e61e-4c34-8940-4a0e0ccbe6f9", "source": "c48684b6-8836-4a81-8160-62d1535f0af8", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.5339805825242718, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "be230d6f-d91b-4951-bab2-49f2faef8ce6", "source": "c48684b6-8836-4a81-8160-62d1535f0af8", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.5339805825242718, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6277e03e-84b5-4aa2-93ca-337e88ddd66a", "source": "c48684b6-8836-4a81-8160-62d1535f0af8", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.6582278481012658, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a2df5f02-6e10-4863-9620-ee9188bd3d42", "source": "c48684b6-8836-4a81-8160-62d1535f0af8", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.45806451612903226, "overlap_size": 71, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "631e474f-6406-4814-be5a-bd5681b2e557", "source": "c48684b6-8836-4a81-8160-62d1535f0af8", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5cd16a0a-7a87-4db5-aece-7d8cc12e92b3", "source": "c48684b6-8836-4a81-8160-62d1535f0af8", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5510204081632653, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "315d12ab-b413-4cc5-b522-9d4ba01cf8c1", "source": "c48684b6-8836-4a81-8160-62d1535f0af8", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.42857142857142855, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e00d4dee-1cd7-4c58-a75c-ff8e6d2db142", "source": "c48684b6-8836-4a81-8160-62d1535f0af8", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9ade9e8e-68ef-4d50-b3f7-87af2dcda441", "source": "c48684b6-8836-4a81-8160-62d1535f0af8", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.40764331210191085, "overlap_size": 64, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c8a2f795-6d97-48bb-a314-dd3ca58ea402", "source": "c48684b6-8836-4a81-8160-62d1535f0af8", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "59d905eb-cdeb-4676-aaf5-82239c53342b", "source": "c48684b6-8836-4a81-8160-62d1535f0af8", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.2553191489361702, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "34afcf6f-da7d-46ec-be8b-10f6e4e0a87b", "source": "c48684b6-8836-4a81-8160-62d1535f0af8", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.32, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7e2a8c92-325e-4cbe-87b9-4df2ac6d9f8d", "source": "f6891175-5036-4132-a888-19181a4f30e9", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.30434782608695654, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dbaca8af-c4bd-4ca2-befd-63e947420e49", "source": "f6891175-5036-4132-a888-19181a4f30e9", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "64fe06e7-8204-4fcc-8cf0-3b438c58bca7", "source": "f6891175-5036-4132-a888-19181a4f30e9", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.31097560975609756, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "578c2154-d9a8-46bc-b214-b37aa9a7e458", "source": "f6891175-5036-4132-a888-19181a4f30e9", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.49, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dd6a281a-7bc3-4c57-94e2-bd8da585b866", "source": "f6891175-5036-4132-a888-19181a4f30e9", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.5473684210526316, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "23a5bed9-dc94-4b33-b11d-03a58253bacc", "source": "f6891175-5036-4132-a888-19181a4f30e9", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5842696629213483, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c77932ee-c0e0-49c6-a92a-dca917836dec", "source": "f6891175-5036-4132-a888-19181a4f30e9", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.6375, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b99a6d09-60a7-4d19-af2e-d1a59558b369", "source": "f6891175-5036-4132-a888-19181a4f30e9", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.6666666666666666, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f285bc6b-de02-477f-90c6-711e9a310065", "source": "f6891175-5036-4132-a888-19181a4f30e9", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7565f5b0-f964-4757-9237-073d6c0bc2a7", "source": "f6891175-5036-4132-a888-19181a4f30e9", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.4827586206896552, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "10625516-2b61-48a9-aa29-3ef8cab0986f", "source": "f6891175-5036-4132-a888-19181a4f30e9", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.5473684210526316, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "568ab110-bd6b-4298-bc07-c9621b9db80c", "source": "f6891175-5036-4132-a888-19181a4f30e9", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.7384615384615385, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3f12139b-bee1-479d-98e0-4d737aa6c7d7", "source": "f6891175-5036-4132-a888-19181a4f30e9", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.2891566265060241, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9002447a-64b8-4a8c-9463-cbec802c3ad8", "source": "f6891175-5036-4132-a888-19181a4f30e9", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.375, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7bc5ce99-2083-4af0-b2a3-bc6b511c38f5", "source": "11a77808-6dbd-4489-b974-4b2be36afc05", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5473684210526316, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "233fb3a1-163c-4cbc-ae30-b15be0517646", "source": "11a77808-6dbd-4489-b974-4b2be36afc05", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.2696629213483146, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "04e6da32-b976-4a9f-9866-3c002ed46c9a", "source": "11a77808-6dbd-4489-b974-4b2be36afc05", "target": "b4472d3f-7b1d-4c57-b47a-bffedc4aba98", "similarity_coefficient": 0.25116279069767444, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "03778ca3-efb3-4a1f-8176-092fca7c6370", "source": "11a77808-6dbd-4489-b974-4b2be36afc05", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.726027397260274, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8392546b-72cd-43e1-847b-c04905c2f6f7", "source": "11a77808-6dbd-4489-b974-4b2be36afc05", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.34285714285714286, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "330acd20-0c0e-4663-8219-ca115730e351", "source": "11a77808-6dbd-4489-b974-4b2be36afc05", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.45161290322580644, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2256ff1c-04bb-40de-9b0a-d4926093d399", "source": "11a77808-6dbd-4489-b974-4b2be36afc05", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.611764705882353, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b8986c83-d796-441a-aa5f-a1eb2bab11df", "source": "11a77808-6dbd-4489-b974-4b2be36afc05", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3d86a786-a896-476d-87c6-9bb3e015d791", "source": "11a77808-6dbd-4489-b974-4b2be36afc05", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.5148514851485149, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "01557b7f-7b8f-4d31-97e3-0c912cc66c09", "source": "11a77808-6dbd-4489-b974-4b2be36afc05", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.6301369863013698, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d1ab58ab-2886-491c-9e5d-ba11ae2fca20", "source": "11a77808-6dbd-4489-b974-4b2be36afc05", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.5148514851485149, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4f49fcbd-ca95-465e-9ba5-6db8693067a6", "source": "11a77808-6dbd-4489-b974-4b2be36afc05", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.32515337423312884, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "725d4994-0164-42ad-9b41-991cb6886bde", "source": "11a77808-6dbd-4489-b974-4b2be36afc05", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e5840bdd-ca7f-4f64-98fd-7ead55ca23c0", "source": "11a77808-6dbd-4489-b974-4b2be36afc05", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.68, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bcb59c54-c986-43be-8b5a-1c88869cb4e2", "source": "11a77808-6dbd-4489-b974-4b2be36afc05", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.32335329341317365, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "94768359-96fe-45d1-ae55-0f0fc1822f07", "source": "11a77808-6dbd-4489-b974-4b2be36afc05", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.7878787878787878, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d594329d-8474-4a6a-817b-508d78f23a1a", "source": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.28402366863905326, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f8dc573c-97c5-47e3-abb5-3bcd81f0fc83", "source": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "target": "b53e282a-eced-4b33-95e6-d98005e56982", "similarity_coefficient": 0.28716216216216217, "overlap_size": 85, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3bbc46d0-a048-4fbb-a854-3fb36fab3f04", "source": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.3254437869822485, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e41f38e1-1e39-4c4e-930a-4fb97b586146", "source": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.27071823204419887, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "260a6eac-aba4-4653-b54a-7cd6e8a2197b", "source": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.2727272727272727, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "653998bc-2dea-4f6d-993c-e809a804e769", "source": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.2760416666666667, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "44de7cfe-f3df-42ea-95c9-2b95ff4a7c92", "source": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.2676767676767677, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "294325ed-e628-436d-92a1-76f9d440837f", "source": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.2676767676767677, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e9ac0534-6c23-4e4d-9056-12f474de10f3", "source": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.27717391304347827, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8a409e0c-0310-4d8b-aceb-ba2086f3be3c", "source": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.2934131736526946, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b137eb26-ceb2-445b-8ad0-532efb596e16", "source": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.28, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bcd76e25-65ea-43b5-baee-c6a883b231f1", "source": "6bf0e316-511e-47c8-a951-3f240692586a", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.27631578947368424, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e1daf772-c75e-4dc0-8232-3518e64b81c6", "source": "6bf0e316-511e-47c8-a951-3f240692586a", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.36923076923076925, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "595d9cc2-8438-44f8-afa7-800bc0e15f44", "source": "6bf0e316-511e-47c8-a951-3f240692586a", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.4230769230769231, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "18d7fd71-18c5-4224-bad0-f47d4d8fa966", "source": "6bf0e316-511e-47c8-a951-3f240692586a", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.35172413793103446, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2f0ef7ea-9440-4e4a-b15e-a319fd589eb0", "source": "6bf0e316-511e-47c8-a951-3f240692586a", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.3602941176470588, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4425b16e-8951-448d-8458-b59b9bdc071b", "source": "6bf0e316-511e-47c8-a951-3f240692586a", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.32098765432098764, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "752dbec1-a45b-44c2-bd2e-7094fbebd10b", "source": "6bf0e316-511e-47c8-a951-3f240692586a", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.3333333333333333, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "90da89bf-7c95-44bc-9ec4-a8fb1a244965", "source": "6bf0e316-511e-47c8-a951-3f240692586a", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.3828125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1867cd7a-54a0-4728-aa0a-bbe1a5c528fb", "source": "6bf0e316-511e-47c8-a951-3f240692586a", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.3317972350230415, "overlap_size": 72, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "88b947cc-ef29-4c57-88a2-8682861655c4", "source": "6bf0e316-511e-47c8-a951-3f240692586a", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.35036496350364965, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1215f87b-c48f-4e7a-bcdd-c51ff7ac586d", "source": "6bf0e316-511e-47c8-a951-3f240692586a", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.34507042253521125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "299e831a-b9a6-4fbc-82fa-7b4263e610dd", "source": "6bf0e316-511e-47c8-a951-3f240692586a", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.3333333333333333, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a636b1f8-673f-4b58-afab-3239bcefac87", "source": "6bf0e316-511e-47c8-a951-3f240692586a", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.3464052287581699, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8aea90b8-d4da-4e5b-b4a3-54e52112617e", "source": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f1188405-c777-4bf0-80c9-7e690c377beb", "source": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.7931034482758621, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0e6a40e6-0165-4ebf-844f-4dcf6d5c41bd", "source": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.75, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d31c87dc-03f5-455e-beb0-5c95b3f942c0", "source": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.875, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "61563a5c-dcee-46a7-a563-54dcf84c51e2", "source": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e56cb8b1-c3f2-410b-a3e6-d9383a73204a", "source": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.5316455696202531, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "89a7d7c1-ce31-412d-be99-fc0de7c37166", "source": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6dbcb15d-82a9-400d-97a6-a5c8abf798c8", "source": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.42857142857142855, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a747723f-229a-458d-897f-92653b161a9d", "source": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.2934131736526946, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eb313d67-0f54-4b39-9ea8-1d4736b8f366", "source": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.3828125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "755dc97b-a0f1-4469-a193-7b719697395d", "source": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.310126582278481, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f32ceb73-91da-4eec-9cb3-cda7cf25a04b", "source": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.32, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e2042ae0-ebbe-4090-8c02-2808fc963c01", "source": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.2948717948717949, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9316ffc1-a4ac-4159-9066-6231daa5dcf6", "source": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.696969696969697, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7c8e4b77-6113-4ea1-b431-ed24fd201477", "source": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4f04edb6-50d2-431b-8afc-accb6447fd73", "source": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "534d55cb-ac36-42dc-b6d9-469f8f43a74d", "source": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.4842105263157895, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ac84f0e0-ec76-4f24-be84-dd014964ec54", "source": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.6388888888888888, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0eb272b6-6671-4ab6-acf8-5b7eb9466c91", "source": "5db5ed69-b4e2-485d-b78c-1b47eb326935", "target": "e6bdd19b-66e3-45e2-b2b1-92f658ccc62b", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "157a1e46-337e-45e8-a6ad-43acfc139b6d", "source": "5db5ed69-b4e2-485d-b78c-1b47eb326935", "target": "beb79ccf-a196-43d0-86ff-773092ba3490", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c06c19d1-522c-41dd-87b5-423904e59110", "source": "5db5ed69-b4e2-485d-b78c-1b47eb326935", "target": "218e964f-2842-43f5-825a-917591457798", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5889c825-4610-49b3-9eb7-4c46de373377", "source": "049142b9-19dd-4af1-896a-e365acc9098d", "target": "763e4196-95c7-47ff-8ba9-808223cde662", "similarity_coefficient": 0.2775423728813559, "overlap_size": 131, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "994ef16a-a90a-47f0-9af3-4ebdc45c8716", "source": "049142b9-19dd-4af1-896a-e365acc9098d", "target": "2cd596f4-3461-429e-a594-a3fa378f86eb", "similarity_coefficient": 0.3774403470715835, "overlap_size": 174, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4992814f-b092-4b2d-a073-b9137ba087a4", "source": "049142b9-19dd-4af1-896a-e365acc9098d", "target": "11b58f65-f23a-44f1-b169-1c79f44b4519", "similarity_coefficient": 0.38565022421524664, "overlap_size": 172, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "15398868-a28c-4fe1-89a2-a084ef959b88", "source": "8102549a-740f-4e81-9373-b6d30e8cdc60", "target": "25a9a2af-f609-47a7-a75e-59c026281cf8", "similarity_coefficient": 0.8679245283018868, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "465296d7-2783-4cbb-b66c-34f61d85b727", "source": "69c69d97-3401-431d-87ee-22f72bd12c57", "target": "f9b39331-d306-4809-b0c4-ce6e8a9a7e0d", "similarity_coefficient": 0.8947368421052632, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2ec20ef7-bfc7-45db-9676-2a11f36a8695", "source": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.26811594202898553, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "915e3b77-8800-442d-bcf4-5f880ca2c808", "source": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2d98a679-b89b-45e1-88aa-e6447127c636", "source": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ea08c239-d165-449c-8c25-4b795da1d13f", "source": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ad13a11f-87bd-4bd4-a881-fe7fb8eafbca", "source": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.25547445255474455, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "22f0f50c-dfd7-4737-9796-aa44043348e6", "source": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1ffad45b-448f-4d71-bc01-b7e87e0a723e", "source": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4e99b262-cfbc-4e7d-9732-f704e705fa4f", "source": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.8813559322033898, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "af406416-a8a3-478b-b250-97c686ad1a12", "source": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.30701754385964913, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b4a76428-fc2e-4e65-9339-91dc57790caa", "source": "e97d3933-d924-4c41-8e4d-ae17bd34263c", "target": "e6bdd19b-66e3-45e2-b2b1-92f658ccc62b", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "32d3690b-84e6-408c-bfe0-cef0e15fd3c4", "source": "e97d3933-d924-4c41-8e4d-ae17bd34263c", "target": "5db5ed69-b4e2-485d-b78c-1b47eb326935", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "68b9e069-667f-4380-a2d0-719b0050d8ae", "source": "e97d3933-d924-4c41-8e4d-ae17bd34263c", "target": "218e964f-2842-43f5-825a-917591457798", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3771aa65-9e0e-42ff-8ef5-0199d3a8bbcc", "source": "e97d3933-d924-4c41-8e4d-ae17bd34263c", "target": "beb79ccf-a196-43d0-86ff-773092ba3490", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "966169f6-fb19-41fe-b61d-97a463d2f243", "source": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.42045454545454547, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7e7a19d0-39de-4fcb-b282-312d9a3d8fdb", "source": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.30303030303030304, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0d4fc9dc-0f83-4e2e-8272-fb364b8e921c", "source": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.42045454545454547, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ad3875a4-d538-40ff-bd96-fa740942bbd3", "source": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.3236994219653179, "overlap_size": 56, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7b9ff20c-828e-4ba4-8ec9-1ea74a43f1d5", "source": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.28901734104046245, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cb499dfb-87ee-4401-9a5d-c65a69af1810", "source": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.31512605042016806, "overlap_size": 75, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bb04ce9d-926a-4287-a0a2-f50879000a6c", "source": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.29518072289156627, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3bce2dde-2a2d-4460-99ca-fbc87f7d9d14", "source": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.6142131979695431, "overlap_size": 121, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "31c86e7f-729a-4fb9-a155-2592b673b52c", "source": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.29651162790697677, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "14ff8410-d96d-44e0-8228-538dd2aeeda6", "source": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.30120481927710846, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eaf55445-0b94-4b8d-819d-9f89e56a3129", "source": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.4186046511627907, "overlap_size": 72, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b72c312c-52e7-4dbd-a73d-c5991829202a", "source": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.43558282208588955, "overlap_size": 71, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9c576017-d3e5-49b5-b3ea-6a50effd9315", "source": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.36809815950920244, "overlap_size": 60, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e5a28660-9ba4-4c42-81ba-45ea9a04635b", "source": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.26842105263157895, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1d732705-c171-4686-9e09-9708724ce4ca", "source": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.2702702702702703, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2e506ba7-c686-444d-a86e-2d65a46b99a4", "source": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.2824858757062147, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ec3a39e8-3963-4572-b5d7-496f4a44171f", "source": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.2541436464088398, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "358680b7-7b93-4de4-9912-8f7465f94d04", "source": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.26344086021505375, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1a1a6c1b-da6b-4438-a097-300d1a2e2f42", "source": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.26666666666666666, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "819c6333-4399-4beb-bc4e-e7d073f225f9", "source": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.5465116279069767, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "224a2f8d-0966-401e-a1db-e2d98708bddc", "source": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "614ec705-3b27-4362-a3af-fa9af583c3a5", "source": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d85e1331-fdf4-4140-b731-4ca19fd3f5b2", "source": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.5319148936170213, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c258d4f4-3734-41ad-885a-4829aca1b60d", "source": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.42, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f361823f-9417-4fd8-8ac5-413e871673d7", "source": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.5822784810126582, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5ccf6322-f19f-4fe8-b4fe-7fe216d83412", "source": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.8117647058823529, "overlap_size": 69, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a4feb88f-02c2-49f9-a342-f86fbb484d3a", "source": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.8390804597701149, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4c8d1706-fba5-433d-9428-827ef9edee43", "source": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.4336283185840708, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "180dc1be-c213-470f-8e8e-edaa97969542", "source": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "98e1defe-f8b6-4b5a-94b6-1a5da3813b96", "source": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.28160919540229884, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b6b9d9b1-e993-4279-b6b9-f2608c4a0610", "source": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.425, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "41ec334a-47e6-4d0a-96a5-7089927f340a", "source": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.6024096385542169, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e2dd3a2f-17d2-40d9-a7ce-d87d92245d36", "source": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.8390804597701149, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b19e2303-8af9-4c50-ab34-653a8866c9fe", "source": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.26737967914438504, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cf9396a5-8ae2-498e-b62d-a32f6a66772f", "source": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.33783783783783783, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5bff70e2-958c-40b4-999a-e92a4e1d9cc1", "source": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.575, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7767aeb5-de93-4e2c-ba94-c9c13577be8a", "source": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.2631578947368421, "overlap_size": 25, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0891e7bc-8809-43ff-ab70-a9c07b0b0c09", "source": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.41317365269461076, "overlap_size": 69, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dc125b83-fd25-406d-b1a1-92089d87a424", "source": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.32894736842105265, "overlap_size": 25, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d9dca969-f522-4d5a-9948-7000ad7f0b72", "source": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.42990654205607476, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a6a2f9cc-a31f-47b8-be7f-18f8d74ff840", "source": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.8767123287671232, "overlap_size": 64, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0c52b0cb-4405-488d-ab8e-f4b84af212f7", "source": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.735632183908046, "overlap_size": 64, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bfbdc40e-3738-4491-9279-08d2efa429fc", "source": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.6571428571428571, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "26eb1af0-6037-4c2e-b3e5-3a0d41dda7ed", "source": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.735632183908046, "overlap_size": 64, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2c9c3081-3be3-440f-b266-9a4a35f3aa96", "source": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.5476190476190477, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cc7aa518-8879-4afa-a399-cc32aab43691", "source": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.373134328358209, "overlap_size": 25, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f2380147-7220-4086-aaef-dab15e2a8529", "source": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.33098591549295775, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f0d9c81f-8698-4910-9c5b-4012156165d2", "source": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.5897435897435898, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d61656f7-4069-4531-8e86-4f4329cf768f", "source": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.27380952380952384, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c03534ef-3bd4-4616-a413-2c20fff2e14b", "source": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "target": "b67a97a8-54b7-4306-be3a-d6518f864d8d", "similarity_coefficient": 0.27510917030567683, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d731cd47-c7de-463c-890a-9378c4d7148c", "source": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.39263803680981596, "overlap_size": 64, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fb819bf8-12ce-4459-9bc7-933c71d637b5", "source": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.29069767441860467, "overlap_size": 25, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5e8b5f37-ae5f-4ec2-b337-af28d19a0b62", "source": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.6571428571428571, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "18e9d630-e79e-4df1-a857-41ce73159137", "source": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.4129032258064516, "overlap_size": 64, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "59c66a6c-09f2-48ac-9a8c-d8f3a173ea69", "source": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.5897435897435898, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "83c09d73-caef-4710-af8a-2416220cf6ce", "source": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.46153846153846156, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "47baeb4b-6ae0-44fd-870e-ff8fa4e8fd25", "source": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.647887323943662, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "56a79790-2248-4370-a3e5-e1f0ed3c2df9", "source": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.7901234567901234, "overlap_size": 64, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "57f2888e-a183-4545-8aba-b56ad216fa8e", "source": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.2596685082872928, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e969dae7-e6e5-4ea7-96dd-5c39f542684b", "source": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.5897435897435898, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ec5fe0b0-fe87-4a61-a9c3-23085bae9f9b", "source": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.5168539325842697, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7df43477-1995-4eda-81e0-f4afaedd4c2f", "source": "7110025e-838c-4eb3-a3b4-e50296f8d1d6", "target": "3fbb64b3-4512-41e7-8837-bc44bd025067", "similarity_coefficient": 0.6367713004484304, "overlap_size": 142, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6d519777-e1c7-469f-b1e0-8ca14347f34b", "source": "a450000b-f013-47c9-a2c2-1c6c86d9edec", "target": "62d1a2a4-a8b0-4330-9997-0e0c05099ea3", "similarity_coefficient": 0.7727272727272727, "overlap_size": 17, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3642c2cb-abfa-4239-9f06-0e7754c4959f", "source": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.6575342465753424, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3117f135-552e-4bd4-af0f-c9825928dd43", "source": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.5609756097560976, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6eebbecd-7dde-4314-bbf7-74f42162f4d7", "source": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.34328358208955223, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9f581786-dd07-46f7-a797-8f5080b83734", "source": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.2658959537572254, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "595a7adc-e891-4bd2-bafd-146275b118f1", "source": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.46938775510204084, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8eb64f4a-3524-49b1-8268-703c957962a4", "source": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.4791666666666667, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5443eeb7-893d-493d-b502-6fb0c68908b9", "source": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.6666666666666666, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "19505b5b-c120-44d9-ae7b-2633a55dd49d", "source": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.2893081761006289, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "15f2ffd9-c71b-4ee3-8788-1a62371731c6", "source": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.7540983606557377, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "91e0eb00-8f62-4f06-abf5-9547aed4252f", "source": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.2804878048780488, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "41e5c3b3-bc4c-4091-a11d-3441203da044", "source": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.7540983606557377, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5e1bbb37-5b58-44fb-8490-ed89b811a77a", "source": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.2568306010928962, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e05aceba-9ab8-4fb0-a91a-3bccdde9493a", "source": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5111111111111111, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5ad457a0-ca84-4898-bd0d-a38d54170f9e", "source": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.6301369863013698, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "69f92e26-a8d7-460d-a093-ada2aaebe1a6", "source": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.6666666666666666, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6cfee04d-aa25-40aa-9387-7af3365540bb", "source": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.26744186046511625, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8f545954-4576-4955-bf62-1ac0a64db857", "source": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.4067796610169492, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "57b64081-a0ab-42a1-b309-b8c5db1e0e08", "source": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.3076923076923077, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e4a82b74-979c-439a-afed-e9b6501f7ee8", "source": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.5308641975308642, "overlap_size": 43, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4e80fcbf-8a4e-419b-9ac2-cf1ca48da8c4", "source": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.575, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6da528f5-0b44-4d8d-9f9a-e36d1c2a7f70", "source": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.4791666666666667, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5f6d7bed-4f35-49c5-9c06-6fd3e079f3a8", "source": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.6666666666666666, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b8db0e6e-a723-4933-b211-3efdb719e7d5", "source": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.7419354838709677, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d37d41cc-60f8-4ccb-8fa7-77d65724f55c", "source": "b67a97a8-54b7-4306-be3a-d6518f864d8d", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.3148936170212766, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "65705dea-1b8d-4f2d-84e4-00d6aadcdc91", "source": "b67a97a8-54b7-4306-be3a-d6518f864d8d", "target": "e9595f2e-7b95-4f92-b829-ff02d867fe3d", "similarity_coefficient": 0.3922413793103448, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e6748e94-80b0-429b-8443-936c47f49b6b", "source": "b67a97a8-54b7-4306-be3a-d6518f864d8d", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.3125, "overlap_size": 75, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c460a4d1-0722-412b-a206-635309d2dfad", "source": "b67a97a8-54b7-4306-be3a-d6518f864d8d", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.3125, "overlap_size": 75, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "edec15bf-9efb-413f-8701-3a1cd0cc52ee", "source": "b67a97a8-54b7-4306-be3a-d6518f864d8d", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.2974137931034483, "overlap_size": 69, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d88ac035-2c98-4e89-b6d9-cb38f26b233f", "source": "d7008ae4-7699-4f51-975c-49c6a5ff9c69", "target": "b8c06bc3-3367-43b1-8e2d-b6b7ae3498b5", "similarity_coefficient": 0.4074074074074074, "overlap_size": 44, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "15cb52e7-2490-40e3-8902-e9f08c7f20d0", "source": "3cb8e7fa-0f27-4e5f-bb64-9c35329d928f", "target": "049142b9-19dd-4af1-896a-e365acc9098d", "similarity_coefficient": 0.7309417040358744, "overlap_size": 326, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0e79182a-28b8-4103-b1c5-10a8661db4af", "source": "3cb8e7fa-0f27-4e5f-bb64-9c35329d928f", "target": "11b58f65-f23a-44f1-b169-1c79f44b4519", "similarity_coefficient": 0.3387096774193548, "overlap_size": 126, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dd4a8430-51c6-483b-835e-d845d9f9440e", "source": "3cb8e7fa-0f27-4e5f-bb64-9c35329d928f", "target": "2cd596f4-3461-429e-a594-a3fa378f86eb", "similarity_coefficient": 0.327319587628866, "overlap_size": 127, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "66851eb6-301b-4f83-bc9b-9aa8be1160f0", "source": "3cb8e7fa-0f27-4e5f-bb64-9c35329d928f", "target": "763e4196-95c7-47ff-8ba9-808223cde662", "similarity_coefficient": 0.3644067796610169, "overlap_size": 129, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "44a55da1-fa4c-4871-9af9-c37f6dfbe776", "source": "b8be3ad8-a193-4c64-a2e0-599a201b1402", "target": "c334d77c-e9ba-42fa-bab6-de43f81e082f", "similarity_coefficient": 0.25, "overlap_size": 10, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cfffb27a-c88b-432d-b65c-dceb4793839d", "source": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.39166666666666666, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8288bf31-4fd2-4c20-8ad3-165e425cf6c5", "source": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.4146341463414634, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0395d29c-4001-4aac-9870-64eefc67bb54", "source": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "693d8b84-26e1-41cf-ba7c-c3e34b5aabee", "source": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.35, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e8398c6e-e8b5-4469-be89-bf3a3425b539", "source": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.4107142857142857, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "303145dc-5870-40ce-9a15-37657b6deaa8", "source": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.40458015267175573, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c911bc26-f65f-4687-b8b4-285d3edf5cb5", "source": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.34265734265734266, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7eba80e1-2191-4295-a072-acfe98fe448b", "source": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.5092592592592593, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6171acd4-ff85-4982-b0a4-6aab66df9324", "source": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.3230769230769231, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a5441d9b-3056-46fc-b84e-f5375de8dcbe", "source": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.38686131386861317, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5b83187c-7994-4629-ac8b-613b7184e95e", "source": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.38686131386861317, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "63d26523-be15-42ee-8519-c65af7957b93", "source": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.4444444444444444, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2e096fbf-3fd5-427a-ab6d-4c010433bfd9", "source": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.3968253968253968, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "26ca30c4-70a0-42ac-988c-c441f58763a6", "source": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.41739130434782606, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "de0b69d9-769f-47b5-8b2f-8fb7bb8dfa15", "source": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.36923076923076925, "overlap_size": 72, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aa1483c2-ee72-47e6-ac8b-78f6652605e9", "source": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.824, "overlap_size": 103, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e15983dd-72d1-40c0-a634-39e6f118c883", "source": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.2524271844660194, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f3bc0bc8-49fc-4bcb-8786-a1f2cb933d32", "source": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.4083333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "41cf6149-c060-4a1f-8ecc-44b32a36f387", "source": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cee9e91b-d918-4430-bd6f-e1138fad221c", "source": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.4298245614035088, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "88701452-7429-464f-9658-91195c1e0e8f", "source": "ec93dbde-699b-4275-bcdf-a802acfeba4d", "target": "0270ca63-6518-40e4-a878-0eac4795f5b1", "similarity_coefficient": 0.3765347885402456, "overlap_size": 276, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "78d97e02-65e7-43e3-972f-0635f3984d9f", "source": "c5754971-03d8-46f2-9be9-087b45cee5d9", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.47959183673469385, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "edb7767e-3b4a-4e34-98a4-b58701de2ee2", "source": "c5754971-03d8-46f2-9be9-087b45cee5d9", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.26344086021505375, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aa4d33fd-eeca-48f1-a264-23b507479a10", "source": "c5754971-03d8-46f2-9be9-087b45cee5d9", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.5, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4edfae0e-8299-44aa-9a65-7fa0f2cb0b07", "source": "c5754971-03d8-46f2-9be9-087b45cee5d9", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5bb86430-a528-40f3-8747-2e753d85e62d", "source": "c5754971-03d8-46f2-9be9-087b45cee5d9", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.4948453608247423, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "313cb50e-4f2f-4154-8955-df9ad67b2841", "source": "c5754971-03d8-46f2-9be9-087b45cee5d9", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.25, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "58b2d5d1-8530-41cc-b141-946465d43e43", "source": "c5754971-03d8-46f2-9be9-087b45cee5d9", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.48936170212765956, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a489ffaa-6cc3-4401-b98e-8e168c5aef93", "source": "c5754971-03d8-46f2-9be9-087b45cee5d9", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.375, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d5b4c341-e942-4247-b4d4-6df3938fb9b3", "source": "c5754971-03d8-46f2-9be9-087b45cee5d9", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.3790322580645161, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b6bb3e31-0797-4c8d-88ed-88a10c129eb7", "source": "c5754971-03d8-46f2-9be9-087b45cee5d9", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.4576271186440678, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1433a5b4-96d8-4745-9664-a61d436e5042", "source": "c5754971-03d8-46f2-9be9-087b45cee5d9", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.550561797752809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5134b76b-628b-43fc-8aa6-a4a810b8a47d", "source": "c5754971-03d8-46f2-9be9-087b45cee5d9", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.2696629213483146, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0ba79eca-3ae0-4e98-a5c0-6849b974634a", "source": "c5754971-03d8-46f2-9be9-087b45cee5d9", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.7058823529411765, "overlap_size": 60, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f7b55833-72b7-410a-9d19-4d8b1a7be59f", "source": "c5754971-03d8-46f2-9be9-087b45cee5d9", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.34285714285714286, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "298c4f46-a9b1-45a6-ad90-411797d60720", "source": "c5754971-03d8-46f2-9be9-087b45cee5d9", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.46078431372549017, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d3717722-6945-4f34-a192-2c0094ba4ff8", "source": "c5754971-03d8-46f2-9be9-087b45cee5d9", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.3700787401574803, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a389ee18-dd8e-4ed0-843e-f390fc648fca", "source": "c5754971-03d8-46f2-9be9-087b45cee5d9", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.5214723926380368, "overlap_size": 85, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "83606055-21bb-4202-b5c7-6a1172dbe699", "source": "c5754971-03d8-46f2-9be9-087b45cee5d9", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.4576271186440678, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3e2ea327-e52b-4b3e-8ae2-0f2974fa984e", "source": "c5754971-03d8-46f2-9be9-087b45cee5d9", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.5408163265306123, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7d03ce3d-b1e3-4a1a-8f79-6ca0baa957de", "source": "c5754971-03d8-46f2-9be9-087b45cee5d9", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.38095238095238093, "overlap_size": 56, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3a5359e1-88a6-4721-af46-c564e2a1ea7e", "source": "c5754971-03d8-46f2-9be9-087b45cee5d9", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.45614035087719296, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2ffa54e0-4f60-4559-aa04-fa5f18a8172a", "source": "c5754971-03d8-46f2-9be9-087b45cee5d9", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.5054945054945055, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "18f58bca-0d99-422c-bfc2-7eae16d61622", "source": "c5754971-03d8-46f2-9be9-087b45cee5d9", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.2962962962962963, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "31cf1e6c-3ecc-4547-a793-d3a90bb45ed4", "source": "c5754971-03d8-46f2-9be9-087b45cee5d9", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.5393258426966292, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "15e048bf-3d3b-4da8-8cd3-5d74851f95a8", "source": "c5754971-03d8-46f2-9be9-087b45cee5d9", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.2972972972972973, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8dbf42fa-ab5c-4643-b29e-7edef875192c", "source": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.36666666666666664, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b606593e-a8f8-4741-b09f-a06166f0e201", "source": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.36666666666666664, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dea13c19-e8ca-448c-8477-46d37fef4111", "source": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.373134328358209, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "01955260-8b7d-49fc-a01f-cc160fe7b0d3", "source": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.4166666666666667, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8589eb90-52fb-4a34-ac44-f223a2472939", "source": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.3, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5dbc0867-9d8b-43b8-b684-255fd515fdca", "source": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.3184713375796178, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c3db8aba-79eb-4d6b-8bfc-128aef434539", "source": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.4126984126984127, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "09f185d0-0dc9-45c0-928c-7a5b520ad7ad", "source": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.3246753246753247, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ba5db304-88d1-4c33-9a1c-12ffddb5304e", "source": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.2896551724137931, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "89298272-6b18-4f71-909f-c2021ac3e353", "source": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.4015748031496063, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "abd856b9-0dba-40ed-a9bf-fb8a25f03d51", "source": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.3897058823529412, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6cd8871d-cd9e-4ef1-8caa-ba3be0d8f1e4", "source": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.36428571428571427, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "670f8b1f-369a-4c1b-979b-f70774ebd1cf", "source": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.363013698630137, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "07d7d207-255d-4903-9434-73e57e03b212", "source": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.4132231404958678, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5ac5a333-e1fc-4a0e-a30b-60c9c166a48d", "source": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "610d9fcb-2c23-4482-ab0d-040954d3ec7b", "source": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.3382352941176471, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b614fee8-1b92-4fd9-9087-e421ee069f7e", "source": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.2772727272727273, "overlap_size": 61, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bb6c9922-d0ed-42ff-b09a-b4aaf49703b8", "source": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.4126984126984127, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "16ee6579-6975-4ba2-afe1-dd8cca1ae35c", "source": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.4049586776859504, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "34f2f2af-2964-44d1-8adb-432d656683bd", "source": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.265625, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "046e2b3e-1eaf-45fe-80e9-f411654053a2", "source": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.3983739837398374, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "62021a18-c5de-4475-b6d1-584d76516aa7", "source": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.3880597014925373, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0a60409c-c846-48f1-aeba-085aa1b8eebd", "source": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.3880597014925373, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cd0d3f2f-6d7c-4201-a05d-7f9c09160516", "source": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.36486486486486486, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ddf43457-c385-477e-a07c-3688c1102770", "source": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a1c498f2-28c8-467c-9c64-9da9f0adafcd", "source": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.4224137931034483, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8c45d7f1-1470-4151-b6df-cf45a9f0697f", "source": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.35251798561151076, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "389777b1-11c2-4f82-ae96-c7168a1a9b1d", "source": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.2583732057416268, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c03d2ba2-5d66-4585-9a6f-ed94685693f9", "source": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.43243243243243246, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d72ca568-63e5-4d2e-826b-235709fc333f", "source": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.37037037037037035, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "327b7ddf-099e-4a25-83e8-354ac347f6f8", "source": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.3333333333333333, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "03ee7b98-4991-4d4e-94db-16eeedbedec4", "source": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.59, "overlap_size": 59, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f3a95594-9467-4242-88ef-13dfec10a4a3", "source": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.25555555555555554, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "14de3fcb-8a6e-4f1c-8b09-44ada9b874b3", "source": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.42857142857142855, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cb18064a-f875-4683-bfb5-1bbe955ee830", "source": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.40625, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9d1b71bb-d138-4b08-ae6c-1c90dd762e20", "source": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.42592592592592593, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0223a80e-7931-4af1-ade4-ad4b497c3852", "source": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.46153846153846156, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0351a183-5fe1-4949-b439-3ca664ddd185", "source": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.39316239316239315, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "19ccb05b-09d0-4006-9476-0470ca4f7055", "source": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.3072289156626506, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e2c5b02a-4eb7-4911-bd36-440ca561d79d", "source": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.2512315270935961, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "090ef53a-9848-4f9a-94c5-540d242689d5", "source": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "387647f7-5d6a-4cc7-9d72-6dc4d317cefb", "source": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4af43323-0586-409d-8baa-1410523a8fc7", "source": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.35294117647058826, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "89269468-e073-44b8-bf4f-8358279641b7", "source": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.3176470588235294, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "194613d8-2ac4-4bf8-938f-8f42a9537281", "source": "493c7a26-6cb5-4390-8705-15d2ee98176c", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "efa8bb3f-0110-4ed3-9a6f-94ceac90ac21", "source": "493c7a26-6cb5-4390-8705-15d2ee98176c", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5668373c-1ab5-4793-a290-d831fa5cc2f4", "source": "493c7a26-6cb5-4390-8705-15d2ee98176c", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.4112903225806452, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2a617223-9426-4335-adc1-ea59ef55bb66", "source": "493c7a26-6cb5-4390-8705-15d2ee98176c", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bd0a5175-6954-4ed2-8425-629baa1cd19a", "source": "493c7a26-6cb5-4390-8705-15d2ee98176c", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.2756756756756757, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "90fde253-dca1-4df8-ad27-20288395ca98", "source": "493c7a26-6cb5-4390-8705-15d2ee98176c", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fa9e99af-f257-44d7-b27d-6e898c4a6a46", "source": "493c7a26-6cb5-4390-8705-15d2ee98176c", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.550561797752809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8b8922ae-b644-48e8-8e89-f39d9b423023", "source": "493c7a26-6cb5-4390-8705-15d2ee98176c", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.2552083333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c0381fb9-cdc9-48d9-8507-cdcf465a302a", "source": "493c7a26-6cb5-4390-8705-15d2ee98176c", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.30246913580246915, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6e1d50c8-4c90-46e6-8a3f-7c9c47fafa2c", "source": "493c7a26-6cb5-4390-8705-15d2ee98176c", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8bf5097e-0c76-4a75-b9f5-f268830b841c", "source": "493c7a26-6cb5-4390-8705-15d2ee98176c", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.5, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f0856604-a837-44b7-8cbc-623cef79dff1", "source": "493c7a26-6cb5-4390-8705-15d2ee98176c", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.5274725274725275, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d7fc0258-456a-4f8a-98d7-87ddca8b96bf", "source": "493c7a26-6cb5-4390-8705-15d2ee98176c", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.4152542372881356, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "52f356b4-2659-4b4f-8132-6a66b813dc69", "source": "493c7a26-6cb5-4390-8705-15d2ee98176c", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.37168141592920356, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ec1323c0-f7be-4550-a857-98ff74f29e57", "source": "493c7a26-6cb5-4390-8705-15d2ee98176c", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.2548076923076923, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8380f849-7fd2-46ab-8100-e89573b79798", "source": "493c7a26-6cb5-4390-8705-15d2ee98176c", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9afa6ef6-aa1b-491c-9cf3-88e9cc19bd00", "source": "493c7a26-6cb5-4390-8705-15d2ee98176c", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.46, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5644d13b-9375-4371-bbed-72c5d01238fc", "source": "493c7a26-6cb5-4390-8705-15d2ee98176c", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.25125628140703515, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "37d4b0d7-9b73-40bf-9e48-369be6cee54e", "source": "493c7a26-6cb5-4390-8705-15d2ee98176c", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.4423076923076923, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3b47f2f3-35d4-426e-baff-6af338662483", "source": "493c7a26-6cb5-4390-8705-15d2ee98176c", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b6966176-777e-4d81-a136-4b75bd904965", "source": "493c7a26-6cb5-4390-8705-15d2ee98176c", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.26666666666666666, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "99b77afb-edba-4079-853c-6d76e9082f77", "source": "493c7a26-6cb5-4390-8705-15d2ee98176c", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.4842105263157895, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "55dcb0ee-83cd-4e41-b86d-28c09d802622", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e9542f5b-cf36-4434-9b99-d0d7c7c18718", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.7540983606557377, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "317054e7-b972-4109-9e69-d21d4046f168", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.2752808988764045, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9cf0b7e8-1e0c-497d-91df-26b1c867099b", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.7796610169491526, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a04b7beb-b437-423d-9cb8-2062e15cf0ca", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f556848b-42fb-4ca5-82b1-8f638bf2aa95", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.5316455696202531, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f9e79abf-a069-444a-910e-450d9717e80a", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.696969696969697, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c234d2c8-c7db-4da5-91ec-6f69d7edf104", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.5222222222222223, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f1e3cacf-b05e-4879-a305-c796aa9570a5", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.8909090909090909, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7b0dc266-48f8-4603-80f9-e2e5026772a9", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.310126582278481, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6c9839f8-4ef5-43e2-b4dd-a41f4ae35bc6", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.4049586776859504, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "344dd62b-3ff0-475d-a142-c9cdf80d262d", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5b462ecb-4851-49a5-94bc-722bc8c95dd3", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.7352941176470589, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a61fbedb-6edd-4fb0-a158-f5f8ef86a9a6", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fdc6ebfb-1380-4822-8a2a-ba5abaca2d18", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "73db8214-9b6f-4dae-b89a-b679f8067a19", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5ab1a630-d979-4396-8030-be81044e87aa", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "98278343-c7e4-4387-b427-6e74d2d280ec", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.532608695652174, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f8b30f24-936a-4320-ba6a-a1d463b356f6", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.7931034482758621, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2c460935-91d2-4927-b2f6-2f4180db9cc7", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.3466666666666667, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9ad20afb-5a89-4d7e-b029-064dfe3e4962", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.2934131736526946, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f3a9582e-b57c-4e07-a266-52335e1d2f56", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.3828125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7abff1e8-291f-45b7-b6a8-92c34329b6ee", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.3458646616541353, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b9bff026-2df9-4638-816b-28151888623d", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "38c19a43-389d-454a-832d-8e07dd374a67", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5d78400a-d7b3-45d3-90ce-a7ba773340ba", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.32, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6a8c8ecb-b7eb-4bee-a78e-109c3911dbc4", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.30303030303030304, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2f90a8ee-3e47-4775-965b-894e9c6b87e9", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.6571428571428571, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a6e6074e-a72e-4949-9316-841602ffedd9", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.550561797752809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "092b0709-613c-4c9e-96a1-61560b79c9ea", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.8305084745762712, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4841f03f-1f4d-4ce0-8419-5001868509be", "source": "798cf5c5-8794-4d54-b73e-4b316eb74600", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.42857142857142855, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "38a19b4c-1516-4bc7-b702-b986f53b04b3", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.3712121212121212, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "00f04f68-14ea-4eba-becf-351b724b64e5", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.28654970760233917, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ac6f7eea-288d-4c44-9023-a26791a6aa06", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "60027215-3798-4a98-afd0-87fa729d36c4", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.3357664233576642, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "773600e5-51b9-4228-8610-7ecbfe5b8f4f", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.3037974683544304, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fd890081-b6db-4632-b6ec-d54d5e4ca61e", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.5212765957446809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a48a2dc4-0c76-4ee2-a01b-cbd6270e579a", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.31210191082802546, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4eda59e0-2dd7-4c0e-9787-12dffc651d09", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6a499bdb-4b72-4acc-94f1-35dd9e86af15", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e911d62b-195c-407b-b3aa-08bf37399982", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "effce0ad-f178-4292-90d9-c1f315ed3251", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.6712328767123288, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "78a05532-7964-4c24-a38e-8e552ea93de0", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.4842105263157895, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7f55b722-51bf-4fcf-8386-841b8b60fd2b", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.30246913580246915, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "79fdd45b-4637-4dd3-b392-daf9a60b1b3f", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.7419354838709677, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7822aa6f-b6c4-4206-ace7-c6b38fbd21af", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1e808677-96bd-4862-92ec-c62c09dbce76", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.28823529411764703, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b97e6465-3070-47fc-b791-7ad0478643af", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.8305084745762712, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "951aaadc-fdea-4f1d-b528-2b81fcae1e18", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.6571428571428571, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "decb3951-967c-4fdd-a819-7e7ebaf79d28", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.6216216216216216, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "12008647-2374-444b-85c0-d2dfaccf04d1", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7bc4de53-377e-4b18-8d1e-f9193a60b278", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.392, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "171f3bbd-ba6e-4832-b91f-b9b5e1794dd2", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.7301587301587301, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "438b8658-5b95-441b-9f4f-0da81bc631cd", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.5212765957446809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bb5ce543-27cc-4c1b-9b54-4da7fce1aa79", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.5060240963855421, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d15499cc-a77d-4132-bbdc-3029da2697fa", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d18efb72-88fb-49dd-8f60-224e8b34549e", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.6125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "01d36068-21de-4395-a478-97e17a05eb3e", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.4, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ab3e8464-e4b2-44c9-8b83-5eb21efb1212", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.2692307692307692, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fdce562a-3c20-4e2d-9c95-560b4571257a", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c7b37c1a-607c-4ae7-a915-26e56f34567b", "source": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.7076923076923077, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e62b38d4-e4b0-4370-b41b-9b1087045d45", "source": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.4563106796116505, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a77fe152-f1cd-4c21-93a3-19ba22dcacc9", "source": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.45098039215686275, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b1a484c7-fdf7-4447-8463-b3b407e30bf1", "source": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.3712121212121212, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1e30f6f0-710a-4568-af2c-bbb24c0107d0", "source": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f5f18f86-1e3f-41a0-832b-031411b06961", "source": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.42201834862385323, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e75c2c08-8cb6-4f56-8338-c6e3fab16caa", "source": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.3442622950819672, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "62b51263-acf3-4ee7-a11c-0add226f5dcc", "source": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "706b2fef-eea7-4b0c-b68a-d5268118767d", "source": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.34328358208955223, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "651d5317-cdb0-4149-a45a-29e41ee33b93", "source": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.5, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "907816ee-a7e6-4661-8556-0add71d27d83", "source": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.2755102040816326, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "54236399-164f-4258-8949-4dd070186f9d", "source": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.362962962962963, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a8a6adb6-4dc0-4bbe-8dff-25c1b64515a9", "source": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.3288590604026846, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "89f074a0-20da-4543-9750-f8a6ce6cbd32", "source": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.29878048780487804, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bc01bfdc-f21d-48e8-8305-6efd47fcef84", "source": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.33793103448275863, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b3bd613e-1b35-430c-a3a3-467075e452ab", "source": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.3858267716535433, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "989c2f12-3c1e-407f-ab3d-cbc9113b8ed8", "source": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.4375, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c35cb5e7-790a-4ab2-8a7f-3c86e76f3798", "source": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.5, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "20698801-cc5b-4c2f-96b5-346567ec6b1a", "source": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.3684210526315789, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c96154d1-dae5-4e1d-92aa-070a8bb7d96d", "source": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.3684210526315789, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "60960fad-c47e-4b66-809a-57275d43de04", "source": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.45544554455445546, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "81246362-6f62-454a-8306-9aa28024bdff", "source": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.2982456140350877, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d009c18d-e2ca-4f9d-a60c-46193a575e10", "source": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.28654970760233917, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f89a9a69-3c8d-49b5-806b-10e6ff9a1556", "source": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.2564102564102564, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9d8745b0-6806-40f1-8e83-7813919516e7", "source": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.4117647058823529, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f63b082f-42a0-4c45-8763-8f1ff3301116", "source": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "target": "b4472d3f-7b1d-4c57-b47a-bffedc4aba98", "similarity_coefficient": 0.27350427350427353, "overlap_size": 64, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4d835a6a-fd63-4be1-b115-28007056fd8d", "source": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a2747281-e3fa-42f3-961b-5341c9ac8b5c", "source": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "15eecc50-1d12-4592-9d5e-dab699b188c9", "source": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.40707964601769914, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b7853490-f960-472c-96cc-2d7b99543ee9", "source": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.34328358208955223, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "31dc3690-d168-486e-b73f-b39767a44e0a", "source": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.3262411347517731, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "76e49d88-24d1-4ed0-a94f-7a8d110e73e6", "source": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.3382352941176471, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d8097082-1a55-4200-8897-00644ad297f3", "source": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.8193548387096774, "overlap_size": 127, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e547e337-ce3e-4222-b062-75fa8c3ab935", "source": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.2727272727272727, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "829c0032-b768-4bd6-b13b-191e8b7b26a7", "source": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.2926829268292683, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d1223f63-c47f-4f82-90d8-024fc264f87f", "source": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.3219178082191781, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "db8f1a01-1e25-4d55-ae2f-0fbe50784cc3", "source": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.3357142857142857, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "02a5b0e2-e5cd-4768-b356-5759b47f774e", "source": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.436241610738255, "overlap_size": 65, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d2ee5ecd-a1f2-4a7f-ac89-66d7a24e6591", "source": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.45454545454545453, "overlap_size": 65, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aa7c53cc-c1f2-4e7f-9d86-eef6dd8a69f2", "source": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.3458646616541353, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2e9def52-4ebd-4e43-9a40-e65394e3e1fd", "source": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.27058823529411763, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "13352d6f-a7ea-4930-aa42-847aef60ce55", "source": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.2568306010928962, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "daac35ef-b915-42a1-8228-d2665b8f0588", "source": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.436241610738255, "overlap_size": 65, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3fca9d16-e6df-4cbf-9fe4-e175e15aacae", "source": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "target": "cbfeadab-ca27-40a7-8780-4bec2a9b1964", "similarity_coefficient": 0.2885375494071146, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c78f0a8f-04d5-437f-a58d-d7667c922298", "source": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.3458646616541353, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6c2a889d-7366-400a-855d-0cc2dccf2d8e", "source": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.47058823529411764, "overlap_size": 64, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7e60809b-d6c7-4233-b759-f4be7429c280", "source": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.45588235294117646, "overlap_size": 62, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eeace00e-afbb-46b5-a287-1d3cd896174b", "source": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.4720812182741117, "overlap_size": 93, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "21e671f9-4c41-4c1f-95a1-b6b6a0baba20", "source": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.5039370078740157, "overlap_size": 64, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3bd81ace-43bb-439b-98fe-2985c51d3c14", "source": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.2754491017964072, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "170e92bd-bde1-41f3-a8a4-1367e08092e6", "source": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.43523316062176165, "overlap_size": 84, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7c97105e-0e37-4cf2-a7ec-dfb7e0f71fc0", "source": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.3262411347517731, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0b50ac8b-2218-4226-b8a3-e9107c9b0664", "source": "f3046fed-8d0a-4992-a2a5-74f967156d06", "target": "3fb8ea43-ca23-42d4-a532-1a73ceb20e98", "similarity_coefficient": 0.9661016949152542, "overlap_size": 57, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "deca617e-39a4-4c7b-893a-600163eabe1a", "source": "1bdb2d2d-fe7b-4e46-b699-76d58b12344d", "target": "f9b39331-d306-4809-b0c4-ce6e8a9a7e0d", "similarity_coefficient": 0.7906976744186046, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "72cbbcae-806e-4703-8b69-462715994e47", "source": "1bdb2d2d-fe7b-4e46-b699-76d58b12344d", "target": "69c69d97-3401-431d-87ee-22f72bd12c57", "similarity_coefficient": 0.8717948717948718, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a0ecdd44-4abd-4c20-abbc-5d375f58ec70", "source": "623310f5-8d59-43b9-bdde-0d30cde60c99", "target": "2c6012fd-f497-423b-9ab1-8cfc5154f253", "similarity_coefficient": 0.5567567567567567, "overlap_size": 103, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2c6f5d22-68dd-418b-a385-e6e61ff401cc", "source": "3b58d9c9-4804-4257-abc8-a35cae44f9ec", "target": "316b7b8d-bd3d-45b0-a76e-dba459acda4b", "similarity_coefficient": 0.5272727272727272, "overlap_size": 29, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "100e5bb6-c83e-4437-946d-d8392bf90c73", "source": "4a0b61b9-4b5f-4854-888c-d24f120dc0e4", "target": "623310f5-8d59-43b9-bdde-0d30cde60c99", "similarity_coefficient": 0.3956386292834891, "overlap_size": 127, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d89c2ba1-597a-4b74-a18c-82fef7f9ba0b", "source": "4a0b61b9-4b5f-4854-888c-d24f120dc0e4", "target": "2c6012fd-f497-423b-9ab1-8cfc5154f253", "similarity_coefficient": 0.34558823529411764, "overlap_size": 94, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aa0b5556-72f2-460e-ac8f-0f52575e3a96", "source": "e7868b74-6295-46aa-9b02-5f2686cebe46", "target": "0270ca63-6518-40e4-a878-0eac4795f5b1", "similarity_coefficient": 0.38235294117647056, "overlap_size": 169, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f4a56f83-2e83-4713-85e4-36c52fcc7e18", "source": "a6809a94-176c-4537-ba93-16b38aad9dea", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "71f26676-3d4a-494c-9149-6ed5c8afee74", "source": "a6809a94-176c-4537-ba93-16b38aad9dea", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "88dd0825-ab41-4c2f-b6f4-6f224f4f57ab", "source": "a6809a94-176c-4537-ba93-16b38aad9dea", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "87e81b72-a8ca-4e21-8a09-f90f69f7b7dd", "source": "a6809a94-176c-4537-ba93-16b38aad9dea", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bf90176e-25c1-40a5-ac54-b7c3e0deeb50", "source": "a6809a94-176c-4537-ba93-16b38aad9dea", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c6861536-b524-4628-ae99-968c7a2c0823", "source": "a6809a94-176c-4537-ba93-16b38aad9dea", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8755b4a9-38b6-416a-816b-fdf6c8830663", "source": "a6809a94-176c-4537-ba93-16b38aad9dea", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a6d95c04-d1d0-42cf-b882-07cd158e5e16", "source": "a6809a94-176c-4537-ba93-16b38aad9dea", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8a82bfad-42a3-4403-8b78-0d299fd3c725", "source": "a6809a94-176c-4537-ba93-16b38aad9dea", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "439ef190-7b63-4aa7-9afc-dee80ad61707", "source": "a6809a94-176c-4537-ba93-16b38aad9dea", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2d5fd634-6665-4d00-bebe-a6ab5e4f0137", "source": "7ebb3165-c992-459a-8ea3-6d05d0afb24a", "target": "316b7b8d-bd3d-45b0-a76e-dba459acda4b", "similarity_coefficient": 0.5272727272727272, "overlap_size": 29, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1b6e10de-746d-47ce-b828-0979eb930850", "source": "7ebb3165-c992-459a-8ea3-6d05d0afb24a", "target": "3b58d9c9-4804-4257-abc8-a35cae44f9ec", "similarity_coefficient": 1, "overlap_size": 29, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f8adb678-9227-4a76-aa31-1b4dd7a6492d", "source": "b418104c-b2c5-4aac-b268-9ee80bb42582", "target": "9181fb51-616b-4f2f-aef4-cf4f5ebc8835", "similarity_coefficient": 0.6126126126126126, "overlap_size": 136, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1bc3c2a2-f804-4319-93bc-20cd160852eb", "source": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b9e39ca9-eae6-464b-9f23-6fb44cab2c72", "source": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "edde0ac4-99ff-443a-b296-7ae13f681817", "source": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f251e9a2-defe-4686-aa81-ad96808769a8", "source": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7487225c-96d0-43cb-b0d4-3edf508e5851", "source": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "21121eb9-c0e7-48dd-b6ce-1c824a8bdd71", "source": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "94944dec-7768-4e3a-aa27-e635773c636a", "source": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "89df689c-2c79-49e3-94d8-88628c4fdc52", "source": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cc1bb564-977d-47ec-9401-e4923f767a5c", "source": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f6059343-af60-469d-bc0f-0abf38dd25ea", "source": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "258a7d67-7b8e-4fc2-a86c-c60c63772c85", "source": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "de51aeed-cd17-4538-8a01-9d801ddc16bb", "source": "27a9f866-bb13-4a50-ba51-615e2b2c6b56", "target": "8102549a-740f-4e81-9373-b6d30e8cdc60", "similarity_coefficient": 0.9137931034482759, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4f4a160d-5a9c-4c2f-9f6b-0bebb82e8665", "source": "27a9f866-bb13-4a50-ba51-615e2b2c6b56", "target": "25a9a2af-f609-47a7-a75e-59c026281cf8", "similarity_coefficient": 0.7931034482758621, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "548a15a1-35ca-498b-8086-080e4d1f95f3", "source": "461f3447-3b67-49c7-a062-dbccf20a8c20", "target": "0ab74ab8-46f6-40b9-84a3-f901312bfdd1", "similarity_coefficient": 0.6559139784946236, "overlap_size": 61, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0f1f4338-5cc0-4ce8-924c-9ad46b844ac9", "source": "461f3447-3b67-49c7-a062-dbccf20a8c20", "target": "ab7810f0-02db-4b8b-8f86-59cea7883939", "similarity_coefficient": 0.41496598639455784, "overlap_size": 61, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a0f0e9e5-ed95-40b4-ac46-666c8377c422", "source": "461f3447-3b67-49c7-a062-dbccf20a8c20", "target": "a450000b-f013-47c9-a2c2-1c6c86d9edec", "similarity_coefficient": 0.25806451612903225, "overlap_size": 16, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8217752e-268c-41b7-a1a8-0c86d6c4bbb7", "source": "461f3447-3b67-49c7-a062-dbccf20a8c20", "target": "62d1a2a4-a8b0-4330-9997-0e0c05099ea3", "similarity_coefficient": 0.25757575757575757, "overlap_size": 17, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b1906bf7-cdc4-4114-820b-727dd2c1921b", "source": "461f3447-3b67-49c7-a062-dbccf20a8c20", "target": "22c84cad-f57f-4718-9687-42041195fe68", "similarity_coefficient": 0.4236111111111111, "overlap_size": 61, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7f40c581-f8bc-4fec-b34a-c18cde754405", "source": "461f3447-3b67-49c7-a062-dbccf20a8c20", "target": "67655508-8724-4bec-ae04-0a0ccc497030", "similarity_coefficient": 0.5350877192982456, "overlap_size": 61, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c854864a-224c-461a-84a6-213767b25ef6", "source": "461f3447-3b67-49c7-a062-dbccf20a8c20", "target": "1464dde0-7b27-424c-9e99-43dc975d4ea7", "similarity_coefficient": 0.33152173913043476, "overlap_size": 61, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a4418acb-bd79-4af1-b47e-bbbf93005438", "source": "461f3447-3b67-49c7-a062-dbccf20a8c20", "target": "93a3ee13-43c0-40a1-a31e-90710a1e40e9", "similarity_coefficient": 0.34285714285714286, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b6b61dbd-afef-426e-b4ae-032598eae2e0", "source": "67655508-8724-4bec-ae04-0a0ccc497030", "target": "22c84cad-f57f-4718-9687-42041195fe68", "similarity_coefficient": 0.5925925925925926, "overlap_size": 96, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "65e64a78-9757-463d-b5c0-5e0e70b31c7e", "source": "67655508-8724-4bec-ae04-0a0ccc497030", "target": "ab7810f0-02db-4b8b-8f86-59cea7883939", "similarity_coefficient": 0.45, "overlap_size": 81, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7ce86ea7-9fe9-43ba-97f1-60d49a7fd950", "source": "67655508-8724-4bec-ae04-0a0ccc497030", "target": "1464dde0-7b27-424c-9e99-43dc975d4ea7", "similarity_coefficient": 0.6195652173913043, "overlap_size": 114, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4675aaa1-c06e-4d3a-a84d-785f0e876558", "source": "67655508-8724-4bec-ae04-0a0ccc497030", "target": "0ab74ab8-46f6-40b9-84a3-f901312bfdd1", "similarity_coefficient": 0.6171875, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8e15452b-d3ae-4408-9a7c-7224c94c8b3b", "source": "884b9c04-6683-4d3e-90f3-b0bd69f8a649", "target": "9f2e5314-9e79-4fa2-8159-07d8cc47d89f", "similarity_coefficient": 0.7347670250896058, "overlap_size": 410, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3f72a01e-5f21-4202-bf5a-e5c747c5d68d", "source": "40582abf-bf91-41a1-942a-f17b2aee8b72", "target": "3cb8e7fa-0f27-4e5f-bb64-9c35329d928f", "similarity_coefficient": 0.37797619047619047, "overlap_size": 127, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "243514f9-5151-49da-b46a-50e3ed82fcbe", "source": "40582abf-bf91-41a1-942a-f17b2aee8b72", "target": "049142b9-19dd-4af1-896a-e365acc9098d", "similarity_coefficient": 0.2841409691629956, "overlap_size": 129, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1ffed42c-1008-4148-b4a3-dd59bc102590", "source": "40582abf-bf91-41a1-942a-f17b2aee8b72", "target": "11b58f65-f23a-44f1-b169-1c79f44b4519", "similarity_coefficient": 0.6978021978021978, "overlap_size": 127, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7963e947-3c64-4f84-9987-1627f05bd6e1", "source": "40582abf-bf91-41a1-942a-f17b2aee8b72", "target": "763e4196-95c7-47ff-8ba9-808223cde662", "similarity_coefficient": 0.8726114649681529, "overlap_size": 137, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fbf18b13-2f5e-439b-97bc-512dd191501a", "source": "40582abf-bf91-41a1-942a-f17b2aee8b72", "target": "2cd596f4-3461-429e-a594-a3fa378f86eb", "similarity_coefficient": 0.7248677248677249, "overlap_size": 137, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "830115ca-a521-496f-af4b-63fe5afc5836", "source": "5ed4b3b0-0529-42a4-97a6-871542f5bff7", "target": "4c84babd-5ce0-42f8-899d-dfad984c96fb", "similarity_coefficient": 0.26245847176079734, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6aff719b-c6fe-48bd-bf4b-b1dd40836d3d", "source": "5ed4b3b0-0529-42a4-97a6-871542f5bff7", "target": "304b3755-2434-4a6f-b5b2-2df6c7309f05", "similarity_coefficient": 0.28651685393258425, "overlap_size": 153, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2c59a1fb-942c-406f-80cd-129bb334e1de", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.5609756097560976, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9570cf5a-6fce-4bb4-97e6-86f657c33eec", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.2752808988764045, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "45b41207-e347-4c37-9c62-4fbba7e438ae", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.5897435897435898, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a4c01d5c-149d-4b60-9de1-88ff8d377541", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4845c279-a685-477a-82d5-492e9822a006", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.3787878787878788, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fc532c31-acbe-48c2-8860-062d3f4e66af", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.4298245614035088, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "06ec4b2d-260f-4058-8cdc-a87e61ac4e45", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.35294117647058826, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3caa2c46-d7d9-4a40-aad8-16d290b67f2d", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.676056338028169, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6a81b408-ff03-4c41-8fcf-9635f01435ef", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.2578947368421053, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c0c9a2de-a2f9-4e3d-b82a-7dce1f19fd2b", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9c39b8df-46f5-47b8-88a9-9fe9be4772d1", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.48514851485148514, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7094def9-e217-4cbe-aa27-6627fce099ec", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.647887323943662, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6b17d192-e8c7-4899-8da4-ca9bf935ca5a", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.6571428571428571, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8fe35586-1ed6-4b06-b167-65cb4a4975fd", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8e757f17-8faa-4424-ae9e-f20b2a346480", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.27586206896551724, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6433fc80-20f0-426f-9315-20dc2e7cbff0", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.3422818791946309, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e4c3458b-21c6-49c8-be96-2376ca537562", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.31724137931034485, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0c5f2b3c-dbb7-4233-8bd6-8a4329ad0bfe", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.35, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7ced27c6-8178-4b43-b9e5-9f7f243281a8", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.296969696969697, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "38f385ad-2f76-47f0-a2a2-58aeb0807149", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.2737430167597765, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fe8d7ba8-9773-4736-9032-bd14b8dd59c0", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5b6d00c4-5926-43e9-94d0-6323d8f00c49", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e3cae3df-51b3-4bbb-bcdb-d17815833ad1", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8c6c497d-1e1d-4155-be9a-2d7858d661fd", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.44660194174757284, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8654a8d5-e97b-48aa-bafd-7699ccccbb0d", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.28823529411764703, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3a43b6a6-0485-44d8-9ed7-c9470af1e26d", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bcb964a6-5415-44bd-abad-25d8e70733b2", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4349e7cf-4822-4cff-ac2d-7b8babf6bb59", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.4152542372881356, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0557eb8b-c494-4c99-a8fd-bc5db657b756", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b6e27efb-c674-4096-8cdc-0d6aaf56232c", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ed9442cb-b9e9-4ce1-accc-3e01e73daa61", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.46153846153846156, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "de41ce96-f815-4c5f-b68e-0baeab7e0e23", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "512dc0dd-3768-4653-9d28-69f01de55a1b", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e04a8db6-25bc-461e-a69f-ade20d0256d7", "source": "9e4f8106-d136-45d5-8474-83091f2c249b", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e5fe4aba-e7a6-42aa-8986-6a4c48aa80ab", "source": "c59b9ba0-0b63-4930-b1cb-3e784ac046af", "target": "70cf6d48-a46e-4604-ad85-12eceacf95b4", "similarity_coefficient": 0.38461538461538464, "overlap_size": 130, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "716eee02-9934-47a1-bb06-80cc869fa128", "source": "c59b9ba0-0b63-4930-b1cb-3e784ac046af", "target": "b418104c-b2c5-4aac-b268-9ee80bb42582", "similarity_coefficient": 0.6568047337278107, "overlap_size": 222, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ee8dd722-9fe6-4ffc-b8e5-e4af303590f3", "source": "c59b9ba0-0b63-4930-b1cb-3e784ac046af", "target": "9181fb51-616b-4f2f-aef4-cf4f5ebc8835", "similarity_coefficient": 0.40236686390532544, "overlap_size": 136, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5c7bcad5-1877-411c-a453-207837e64bc1", "source": "6e025d9d-61da-4ade-81fa-7b8d84b6c60b", "target": "15df1c59-4b86-4fda-ac8a-220aeb9b4c29", "similarity_coefficient": 0.3612403100775194, "overlap_size": 233, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0ae266fa-ccb6-4aa9-acc1-ceae889477b0", "source": "6e025d9d-61da-4ade-81fa-7b8d84b6c60b", "target": "366dd0a3-3444-47cd-ac20-2a83f4584eda", "similarity_coefficient": 0.6310077519379845, "overlap_size": 407, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b1dcae4f-8755-4f95-9c7d-aad63fbaf1d5", "source": "6bed8f20-05d5-41c1-a584-804d0df5a3a0", "target": "0270ca63-6518-40e4-a878-0eac4795f5b1", "similarity_coefficient": 0.4368421052631579, "overlap_size": 166, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5d5115c6-64fa-462d-b715-1b405ed86d8a", "source": "1a39797c-1df7-4aec-8ab0-ce066a56e9ec", "target": "70cf6d48-a46e-4604-ad85-12eceacf95b4", "similarity_coefficient": 0.4961832061068702, "overlap_size": 130, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "15643176-ef0e-4ed5-bf43-8e2c7b257e90", "source": "1a39797c-1df7-4aec-8ab0-ce066a56e9ec", "target": "c59b9ba0-0b63-4930-b1cb-3e784ac046af", "similarity_coefficient": 0.3544018058690745, "overlap_size": 157, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7fd48c1b-60aa-4287-99de-c4c72abfc285", "source": "f3d212cf-452e-4306-a42d-b0d520bcda66", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.34558823529411764, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "383db828-6638-4bf7-9d56-f25d6f4dd393", "source": "f3d212cf-452e-4306-a42d-b0d520bcda66", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.441340782122905, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "32beedf7-22fe-46e2-9693-04d116bb245c", "source": "f3d212cf-452e-4306-a42d-b0d520bcda66", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.25555555555555554, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "36a0ebf4-d701-4cd4-b0d9-619ccf28b7f7", "source": "f3d212cf-452e-4306-a42d-b0d520bcda66", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.345679012345679, "overlap_size": 56, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c5ad9d5a-5f9d-4efe-950e-edbb901a0b17", "source": "f3d212cf-452e-4306-a42d-b0d520bcda66", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.3076923076923077, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "02fd1379-7302-4d84-aca8-e7aca8ec4618", "source": "f3d212cf-452e-4306-a42d-b0d520bcda66", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.3087248322147651, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "acab1245-a4d0-4ec6-b5c7-784891011472", "source": "f3d212cf-452e-4306-a42d-b0d520bcda66", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.3444976076555024, "overlap_size": 72, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "08ea227e-db95-4bc1-b5d9-fad569b773f5", "source": "f3d212cf-452e-4306-a42d-b0d520bcda66", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.34507042253521125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e65e8e81-8e1d-4d03-b431-ea963eeab549", "source": "f3d212cf-452e-4306-a42d-b0d520bcda66", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.35555555555555557, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a2a131cb-95a1-46dd-9588-9eeee86f0324", "source": "f3d212cf-452e-4306-a42d-b0d520bcda66", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.25806451612903225, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8650e017-07ff-4f23-ae03-4eccf179c265", "source": "f3d212cf-452e-4306-a42d-b0d520bcda66", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.27906976744186046, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cfd07ebc-b90e-43be-8c57-037ecf66c170", "source": "f3d212cf-452e-4306-a42d-b0d520bcda66", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.4371859296482412, "overlap_size": 87, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b5d8b5b6-5476-494d-8ae5-654603cae767", "source": "f3d212cf-452e-4306-a42d-b0d520bcda66", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.3357664233576642, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "453d3b05-ad08-4d93-8c1b-dd2587fbdf53", "source": "f3d212cf-452e-4306-a42d-b0d520bcda66", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.34177215189873417, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "75b886a9-825b-449a-bedd-c0e39ee6d918", "source": "f3d212cf-452e-4306-a42d-b0d520bcda66", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.3680555555555556, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "12afbc4d-7686-4305-a6ce-114493264095", "source": "f3d212cf-452e-4306-a42d-b0d520bcda66", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.6240601503759399, "overlap_size": 83, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ad806c1d-a6aa-4825-a2e6-7271728060f0", "source": "f3d212cf-452e-4306-a42d-b0d520bcda66", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.3036649214659686, "overlap_size": 58, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2282a272-b01e-41d8-98a0-62af43f2854a", "source": "f3d212cf-452e-4306-a42d-b0d520bcda66", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.26373626373626374, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9792389d-794d-48ca-bc31-eb27705b9696", "source": "f3d212cf-452e-4306-a42d-b0d520bcda66", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.27647058823529413, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a4cc09b3-b7cb-4788-b056-94accedfad13", "source": "f3d212cf-452e-4306-a42d-b0d520bcda66", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.3087248322147651, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ac38923b-b3a4-4bb1-8933-b8370270507b", "source": "f3d212cf-452e-4306-a42d-b0d520bcda66", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.6153846153846154, "overlap_size": 112, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0f7d2aa9-0f2e-4a71-b38d-35d4d04a437d", "source": "f3d212cf-452e-4306-a42d-b0d520bcda66", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.4962962962962963, "overlap_size": 67, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0e556f85-94da-4a87-b682-bb303a1824bc", "source": "f3d212cf-452e-4306-a42d-b0d520bcda66", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.4580152671755725, "overlap_size": 60, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "71d32f34-1c94-4dc8-8d0f-9131eef928fc", "source": "f3d212cf-452e-4306-a42d-b0d520bcda66", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.362962962962963, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f6724b6c-db04-4d21-aeac-e3cff2975f04", "source": "f3d212cf-452e-4306-a42d-b0d520bcda66", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.3356643356643357, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "38d1c9aa-5f43-41b5-a593-8736d72d27b9", "source": "f3d212cf-452e-4306-a42d-b0d520bcda66", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.26582278481012656, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2fc48ea9-f4dc-4979-9fc7-91416576ef01", "source": "f3d212cf-452e-4306-a42d-b0d520bcda66", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.345679012345679, "overlap_size": 56, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "acdab45e-b43a-449c-9257-68d42bfbf80f", "source": "f3d212cf-452e-4306-a42d-b0d520bcda66", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.3262411347517731, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3648643b-a81e-469e-a069-36e16a9ece5e", "source": "f3d212cf-452e-4306-a42d-b0d520bcda66", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.32857142857142857, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6068f907-32df-48f8-89af-0c3b81234433", "source": "c7502cba-4ca5-4627-b387-1b683d84c98d", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8f47e7eb-1a8d-4797-9939-9daef565ed94", "source": "c7502cba-4ca5-4627-b387-1b683d84c98d", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.41706161137440756, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6b31e655-1c3b-4673-aa3c-0187d77384f4", "source": "c7502cba-4ca5-4627-b387-1b683d84c98d", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c866b212-ceec-4177-9d43-8a4121c60b51", "source": "c7502cba-4ca5-4627-b387-1b683d84c98d", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3aec83bb-c38e-4510-8e8f-883b4b657795", "source": "c7502cba-4ca5-4627-b387-1b683d84c98d", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "40b6d588-37bd-433a-8ad9-83d5fdec42b8", "source": "c7502cba-4ca5-4627-b387-1b683d84c98d", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3069e1c6-0f2d-4924-9c59-36c5f865543e", "source": "c7502cba-4ca5-4627-b387-1b683d84c98d", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.4756756756756757, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e3c1fafc-7f00-4e15-97d0-1d71f163934a", "source": "c7502cba-4ca5-4627-b387-1b683d84c98d", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.4230769230769231, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "451ecb32-52d3-4d82-9126-7d59362b3f3c", "source": "c7502cba-4ca5-4627-b387-1b683d84c98d", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "81946683-7785-4e07-9102-7762dfa32c47", "source": "c7502cba-4ca5-4627-b387-1b683d84c98d", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "16438b8b-8a20-4027-9451-cc8011a84077", "source": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.2578947368421053, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "65ce76d9-ebb3-4851-9882-1f0a5490d07e", "source": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.25274725274725274, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f3a381c2-5f9f-4f53-929e-ef1aa7fa53a2", "source": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.28654970760233917, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d29c1c35-afaf-4af2-8a18-4f2558119fa6", "source": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.29296875, "overlap_size": 75, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2ce542f6-8e82-4313-92b2-f85880741a3d", "source": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.3727810650887574, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cd332540-9146-4c7a-ae6f-2b4949e581fc", "source": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.39344262295081966, "overlap_size": 72, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "caab5bf7-eaf2-4d04-b35d-dfb9f8f29c4f", "source": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.26285714285714284, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9fa5e6d8-1057-41f9-928e-8077e5cf9112", "source": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.2677595628415301, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e3eafe40-64d1-4667-ad87-af87b6fd6b6c", "source": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.2737430167597765, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e5a6735a-db2c-4554-addb-03ee5bd334fa", "source": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "target": "e9595f2e-7b95-4f92-b829-ff02d867fe3d", "similarity_coefficient": 0.5290697674418605, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dc6215c6-7286-4ffe-9da5-4d0a32b3b52f", "source": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.28, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6e858996-e07a-4b04-81e5-dafca071130b", "source": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.2598870056497175, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eae81ba9-661a-4d49-b75b-dbe1c22bb83d", "source": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.288135593220339, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2a3caaeb-fc54-45b7-a7ea-1a612e1bfa11", "source": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.25680933852140075, "overlap_size": 66, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "20bf64ac-cc83-443e-bda4-d6bca29d926b", "source": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "target": "b67a97a8-54b7-4306-be3a-d6518f864d8d", "similarity_coefficient": 0.7368421052631579, "overlap_size": 168, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3a969e6d-d866-4e8e-80cb-90419ad264a4", "source": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.28654970760233917, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "58ddc5c4-bfef-436f-8f22-13aac4d24234", "source": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.27155172413793105, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8d20d7dc-1216-458f-9ff7-f713462e4fe5", "source": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.4011627906976744, "overlap_size": 69, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4ab6e3ca-bbfa-4320-8668-5fc39b470ab3", "source": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.39344262295081966, "overlap_size": 72, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6141797e-8913-4926-aae2-0e1d01a34a67", "source": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.26436781609195403, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b29ae9c2-0b5f-499e-8a6d-1b71914811db", "source": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.2648648648648649, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "93915626-5ac5-491b-9743-71cc1892422f", "source": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.398876404494382, "overlap_size": 71, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "73f75d10-cfe6-4f9d-9b9b-3ac691921b34", "source": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.35251798561151076, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6b9782ca-0905-4d83-86c4-93bdc44ea5f5", "source": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.3202614379084967, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6ca82e75-96dd-48cc-a5e4-0c83c3b6c78b", "source": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.2692307692307692, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ea061f2a-fadb-435c-a15a-4d573b6e76b2", "source": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.30625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "18170bcd-d57d-41f8-91d7-1eff1e6d521f", "source": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.30409356725146197, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bc1bb590-e8df-450a-a486-a983c298f161", "source": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.3722627737226277, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ceae9307-dab5-4258-8dfe-c3dddbce3459", "source": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.2987012987012987, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "99e230ae-ed25-4daf-8efe-3b6f7562f643", "source": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.3333333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "33f18163-a5ac-46d4-b0b2-767adb9d3ba2", "source": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.3356643356643357, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "26d19f60-ef6f-44b3-a2c3-580bfe6a3907", "source": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.28415300546448086, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "79398e77-efcc-4b4f-bca7-dc4c4166b8bc", "source": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.2893401015228426, "overlap_size": 57, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f0f01ff4-05d0-4561-b17a-2ba449427bca", "source": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.3151515151515151, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f061644a-c1f6-4522-bb90-0af103c5f5a2", "source": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.33548387096774196, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e249acda-d36c-4a6b-816c-96926cb777cb", "source": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.4117647058823529, "overlap_size": 56, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7599c08e-bbe9-4ad2-8ab0-6f38d306e5e7", "source": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.3611111111111111, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5058bdba-1bae-450d-901f-0e47afd12b5d", "source": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.25766871165644173, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eca852ca-d888-45a2-abb1-30c249df1893", "source": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.2832369942196532, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eeb3a6e9-da87-4d51-9beb-c77cb237b068", "source": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.35251798561151076, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "58c09c34-4a16-4d5e-9f22-1d9c7cd36541", "source": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.35, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "42af85d7-9277-43da-b045-a742ed68e09c", "source": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.2774566473988439, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7c49f4a5-d57d-4c1e-8a80-edadf64e78fc", "source": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.27807486631016043, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "90029bd0-960a-460c-ad99-634779eff0dc", "source": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.32432432432432434, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "91d9adb0-ca4e-4e95-8f8e-d30fa8e15821", "source": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.30057803468208094, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "867c36d2-6f46-4620-8a47-2d9364296607", "source": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.30409356725146197, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6171542e-fef8-4d42-b8f1-4868a8ef2a77", "source": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "72a94d0d-e82d-427e-8942-043b91ff0922", "source": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.38427947598253276, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4b2dceec-5e40-4eeb-93d4-9fc5186c3427", "source": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e62dc246-b6fd-4c22-970e-8f5519e1b11a", "source": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7791b2cb-c244-4322-a6b0-226bb6d843fa", "source": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.5432098765432098, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "58e3d5ed-491e-408d-a1c6-a4ccc5c1fb82", "source": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.5534591194968553, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "87156f5f-6779-4391-ae76-454db898996b", "source": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.6716417910447762, "overlap_size": 90, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "efc67aeb-c1e0-46ff-930e-afabfd4242c5", "source": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f9e8566c-828d-4981-8cbe-73652274856d", "source": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e5aad9c3-dd76-49c7-9971-b13e33d09039", "source": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8a6d4cd8-0584-47e2-b446-96d4971ef686", "source": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "91c12f39-a3dd-4694-8964-7ddff98c0867", "source": "32436d28-1beb-496b-b8c1-c25ffb5d246b", "target": "b418104c-b2c5-4aac-b268-9ee80bb42582", "similarity_coefficient": 0.8951612903225806, "overlap_size": 222, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "97404b99-9ab4-4c78-b8d7-a32387c8ffaf", "source": "32436d28-1beb-496b-b8c1-c25ffb5d246b", "target": "9181fb51-616b-4f2f-aef4-cf4f5ebc8835", "similarity_coefficient": 0.5483870967741935, "overlap_size": 136, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c42e049c-df8e-4d48-9c77-cce6ccbd09d4", "source": "32436d28-1beb-496b-b8c1-c25ffb5d246b", "target": "c59b9ba0-0b63-4930-b1cb-3e784ac046af", "similarity_coefficient": 0.6098901098901099, "overlap_size": 222, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a24d50d0-c7d5-497e-8e73-b8b665bd1d7f", "source": "57643064-d04f-4ab6-beb0-7326008d8656", "target": "864d29ee-3b91-4c86-ac1d-8b9bbb36ebc6", "similarity_coefficient": 0.2786885245901639, "overlap_size": 17, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e295635f-17cb-43c9-b8f6-471201953c5a", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.5897435897435898, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "084862a3-8b19-4970-8a4e-f067be067b7a", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.32450331125827814, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4df1949c-8f28-46aa-95ac-d19949e5b644", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.48514851485148514, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1d886466-8a9a-4d24-aa14-3ad63fd5090b", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.6266666666666667, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d590db05-596e-4c11-bdfa-e92796430097", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.6125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d229b789-4976-404f-9fd7-b9eac560e8e0", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.2774869109947644, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d6a1d87d-5649-4280-9f6d-d14b859309c7", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.4375, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "42a06894-6fb3-4bea-a2e9-782750711cd8", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.4117647058823529, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ca95f4d5-bae4-43d6-93d9-097d7e6ba469", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "11dc1456-2580-44c7-a374-3c98e97263c0", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.39552238805970147, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f42258d0-c87d-4a2e-847d-dce520b5aeb2", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.47619047619047616, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "547a9951-3201-439f-806b-486b9c242d2f", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.28, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9bfeed83-0a7b-485a-8189-4c04f2a39b35", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.3472222222222222, "overlap_size": 25, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e1dedcd7-93ed-405d-8ccc-d216f2cb3c68", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.3472222222222222, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c83de666-b4ed-4201-a231-93d4f29e1aba", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.27472527472527475, "overlap_size": 25, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "28000024-ae98-454f-8532-d629c99f6139", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a95af714-10c5-4627-8dde-b06742fd9522", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.5287356321839081, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "556d8fdb-7089-4c43-9209-c1bff3f72bb8", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.28888888888888886, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "12b9e6ed-7788-418e-b0b5-19d9492c4ad4", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.28823529411764703, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c16695fd-f985-43c8-9ab2-8a19ce813c61", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.26063829787234044, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8f71adf8-83e8-45c1-9647-1a843834918e", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.3141025641025641, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "600b3e6a-130c-43d9-b868-a3de42a11052", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.6125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f08abc46-c93e-4ac1-b3c3-06e0d127d1d5", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a9ebe8d0-380b-4cd3-b52d-32425ca73605", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "600ddf6b-59eb-4aa2-9335-07dd1c0d7eac", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1b04e39c-2132-44f9-85fa-a1c4c469d95f", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "36384caa-99f9-4a2e-9ba3-53cab9e0e76d", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b25cfd23-9531-48aa-8987-81e21f0723e4", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a0c340e2-779f-49f6-b0ee-f76ff79a86b4", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cc98e36c-3240-4ab4-9767-83e52f893626", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.4098360655737705, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "79cbed49-e9de-487d-9380-030033013beb", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.6133333333333333, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "48edc835-6cbc-4a9e-8d2c-4158796102ac", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "85bfac9d-7652-4f7c-b6e4-4cd63f1400e6", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7588156c-78d9-412e-9691-ef15f0f37ea8", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e6022a2a-e63e-47e2-ab05-aa0483a03e72", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.30666666666666664, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3c2807ce-39ea-4b19-9062-01497576fc5f", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.266304347826087, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d4df560d-0e8b-4125-894b-ef1f42c79791", "source": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.5542168674698795, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c62b5a41-970a-486a-b31f-c00b4a37ea37", "source": "98c61e9d-3b1f-4f83-b8de-b03f552fcb71", "target": "1650d15a-9620-441d-a852-1ce19e3865c9", "similarity_coefficient": 1, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "68db151f-6657-49e2-9c49-cb8282b9b6c1", "source": "98c61e9d-3b1f-4f83-b8de-b03f552fcb71", "target": "f59c55ff-3a61-402d-84df-8cc060626bbd", "similarity_coefficient": 1, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1762ab09-5c2e-449a-9e33-1c24a53c6ca8", "source": "98c61e9d-3b1f-4f83-b8de-b03f552fcb71", "target": "ac098499-46ba-4296-a03f-9b11ac60dfaf", "similarity_coefficient": 1, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2f56d9cd-43b1-4764-a6a3-02d90d87a971", "source": "98c61e9d-3b1f-4f83-b8de-b03f552fcb71", "target": "6189859e-374c-49ef-b16b-48eea47da1f1", "similarity_coefficient": 1, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e648a52b-67bc-44cd-b283-00dd6e430308", "source": "4972b393-f94e-4331-9cd4-206ae4786f51", "target": "218e964f-2842-43f5-825a-917591457798", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6440c626-8fa5-449c-a807-3e885b58f928", "source": "4972b393-f94e-4331-9cd4-206ae4786f51", "target": "e6bdd19b-66e3-45e2-b2b1-92f658ccc62b", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e2b11c2d-ebf2-40de-a7a7-7a0cb8a7389f", "source": "4972b393-f94e-4331-9cd4-206ae4786f51", "target": "e97d3933-d924-4c41-8e4d-ae17bd34263c", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "af2b2804-442d-4909-b212-d205e3069d17", "source": "4972b393-f94e-4331-9cd4-206ae4786f51", "target": "5db5ed69-b4e2-485d-b78c-1b47eb326935", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d4d6a329-34e3-4fba-88a3-679ecb714698", "source": "4972b393-f94e-4331-9cd4-206ae4786f51", "target": "beb79ccf-a196-43d0-86ff-773092ba3490", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3f033edd-483a-4b83-acd0-811d30b92149", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.2857142857142857, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6e4ee53c-d670-41f3-bced-2fb27f445f1f", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "972b9c22-e4d6-4f9c-9735-2e010d94ac71", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.5217391304347826, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "077ae81c-ccd7-4c54-b27c-2933235eed4d", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.432, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5d6e6862-9566-414a-b4fd-53d5c04ed7ea", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.45217391304347826, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "84814fca-5e21-4740-98bb-1f47023e4a51", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.4083333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c132f3d5-34a2-4a9b-9afd-8b4396ad3c71", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.46938775510204084, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d4f81380-615e-4f3e-a2eb-8e859949ba21", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.525, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d7d03086-4c71-41b4-b1e9-adac7a805d7a", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.265625, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5e0420f3-bcc1-49f5-816c-b6b714155352", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.3888888888888889, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9df2ba4e-c1a5-41e5-b5ff-287091f7e793", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.5168539325842697, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "95bcd62e-8556-4b4b-a415-c58b1d0d2fe8", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6bf606ef-de6f-424d-83c9-5fcd1757429c", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.35555555555555557, "overlap_size": 64, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "68695b97-1901-42d4-bcd8-62cfbc64dc5a", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.45217391304347826, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "11e1d57f-d366-4c43-afca-cb7210d46308", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.294478527607362, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "556d15c4-91d4-484e-8d55-791e5cb5361f", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.5647058823529412, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "357a9f53-205f-40ca-ac3a-ba7c7281ba42", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.2857142857142857, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e91a644b-d637-4b44-8e77-75d601be0d2d", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bde4374d-41e1-4edb-b380-62f09fb650fc", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.6470588235294118, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6448f3c9-839c-4624-bed0-fd2317cd3c2b", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.51, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "980d3f32-4f01-4693-84bd-5b5259bb5049", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ab49f868-b49d-4b62-947a-182bec92bee4", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.3925233644859813, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c72dfdcc-8b17-4a9b-90eb-6fa50d6191df", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6ca1804c-b9e7-476c-a8aa-baf31d59cae0", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cedbc86d-365e-4796-90b2-d0647cdf8799", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.41025641025641024, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1f292bc3-105e-4bb8-8f95-1750528eb287", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.47706422018348627, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fc1d979e-ce4a-4155-8bc9-abadd853b2f4", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.49, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1322d36d-420f-49bc-bb4f-820e773472c7", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.3469387755102041, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "23bf73e6-f860-49d6-9833-e49854dddbfd", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.27071823204419887, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ae9ee4a3-0834-404c-92c7-d5019643e0f7", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.3170731707317073, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0b4e937d-42f7-4780-84dc-ecce1fe5457d", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4904b51a-9c3a-48cf-955f-98cd58ac3296", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.44366197183098594, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2215d79a-fa99-478c-82f5-b19cffffb1e4", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cb0e6bee-a355-4ca4-a9d8-6ce8b6feed93", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.27717391304347827, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bd2c52c6-0cfb-497a-b2c1-7f69669788b6", "source": "86486123-1382-45de-a35c-8b2fb38f5917", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "568cc44c-68df-4973-a326-8ce1715aa9e8", "source": "84ccf364-4b64-40b0-9f3e-af6e9164b21c", "target": "5ec09fc3-ab05-4910-b33f-85f166b978b2", "similarity_coefficient": 0.7666666666666667, "overlap_size": 23, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7eaa10a5-42be-40f8-ab5a-6b027c1a6abc", "source": "f43c9ccd-e7e0-4f61-add5-23a61fcdc9ce", "target": "67655508-8724-4bec-ae04-0a0ccc497030", "similarity_coefficient": 0.3986013986013986, "overlap_size": 114, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "05d8691e-c978-497f-8516-e3f3c4e92382", "source": "f43c9ccd-e7e0-4f61-add5-23a61fcdc9ce", "target": "0ab74ab8-46f6-40b9-84a3-f901312bfdd1", "similarity_coefficient": 0.2935153583617747, "overlap_size": 86, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d1704de3-aeed-4b29-9ece-87202308941b", "source": "f43c9ccd-e7e0-4f61-add5-23a61fcdc9ce", "target": "ab7810f0-02db-4b8b-8f86-59cea7883939", "similarity_coefficient": 0.46283783783783783, "overlap_size": 137, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b45cf1aa-19fe-4dd3-8a49-3594cb9740c3", "source": "f43c9ccd-e7e0-4f61-add5-23a61fcdc9ce", "target": "bc2a6276-c085-4011-a84b-10e3f2477948", "similarity_coefficient": 0.2902097902097902, "overlap_size": 83, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5a24ff03-617d-4db7-baa8-5fa1653d1505", "source": "f43c9ccd-e7e0-4f61-add5-23a61fcdc9ce", "target": "1464dde0-7b27-424c-9e99-43dc975d4ea7", "similarity_coefficient": 0.6433566433566433, "overlap_size": 184, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "97290fd9-2152-4109-9d00-21c57987b5a5", "source": "f43c9ccd-e7e0-4f61-add5-23a61fcdc9ce", "target": "0270ca63-6518-40e4-a878-0eac4795f5b1", "similarity_coefficient": 0.2623574144486692, "overlap_size": 138, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "549eed3c-2f39-4b9e-b9d9-010e506b95af", "source": "f43c9ccd-e7e0-4f61-add5-23a61fcdc9ce", "target": "22c84cad-f57f-4718-9687-42041195fe68", "similarity_coefficient": 0.5034965034965035, "overlap_size": 144, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bde75fbe-1ce7-42ca-9ae4-12c8896825df", "source": "8e240300-9c7e-4412-a085-4314945210b7", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e86f80da-f095-41f7-9df9-6d66627e3444", "source": "8e240300-9c7e-4412-a085-4314945210b7", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "faa7e6ce-40ba-4d9a-985a-8f5929097ffc", "source": "8e240300-9c7e-4412-a085-4314945210b7", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "65c93d24-61e9-46ec-b308-5a6e4f75cffe", "source": "8e240300-9c7e-4412-a085-4314945210b7", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "978884fb-fbad-4baa-ac6f-dd0e9078c12d", "source": "8e240300-9c7e-4412-a085-4314945210b7", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "27a31bd9-df7f-451c-84c6-abc4882a7a8e", "source": "8e240300-9c7e-4412-a085-4314945210b7", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5b3ece77-4b5d-4ffa-a5c8-f1090fd799a8", "source": "8e240300-9c7e-4412-a085-4314945210b7", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "07e05dbf-874b-47e8-9716-a5afea47e48c", "source": "8e240300-9c7e-4412-a085-4314945210b7", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "990f5538-fcf5-4732-9428-334e6784fed8", "source": "8e240300-9c7e-4412-a085-4314945210b7", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d018bc8f-c3a9-4209-9a3e-bb7eaa962b85", "source": "8e240300-9c7e-4412-a085-4314945210b7", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "82826f57-7d2a-4887-8245-f16da81552c2", "source": "8e240300-9c7e-4412-a085-4314945210b7", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6ca1ca65-723a-4fe4-8061-352e048fd0d1", "source": "8e240300-9c7e-4412-a085-4314945210b7", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "30c2cbf5-6198-477a-aa3a-f1f01669510f", "source": "8e240300-9c7e-4412-a085-4314945210b7", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "542fdfbb-d70b-4b1a-9a1f-acc69071e46b", "source": "8e240300-9c7e-4412-a085-4314945210b7", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "661c000b-6d17-4f65-b718-89ab660dd7e4", "source": "3e8dd08d-a111-414e-905a-faeed681e3f5", "target": "e6bdd19b-66e3-45e2-b2b1-92f658ccc62b", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e40d5844-531b-4eab-9cbb-e2b5900a4aac", "source": "3e8dd08d-a111-414e-905a-faeed681e3f5", "target": "e97d3933-d924-4c41-8e4d-ae17bd34263c", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "975794ea-1bd7-43ef-a24e-4f347261a88d", "source": "3e8dd08d-a111-414e-905a-faeed681e3f5", "target": "5db5ed69-b4e2-485d-b78c-1b47eb326935", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c85ea38b-66d8-4636-b104-dcc0ae02d9e7", "source": "3e8dd08d-a111-414e-905a-faeed681e3f5", "target": "beb79ccf-a196-43d0-86ff-773092ba3490", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f24e2123-3c94-4170-ba13-e9197cbfaf67", "source": "3e8dd08d-a111-414e-905a-faeed681e3f5", "target": "218e964f-2842-43f5-825a-917591457798", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "09d19cc1-e56e-4191-8fe3-feab4534e440", "source": "3e8dd08d-a111-414e-905a-faeed681e3f5", "target": "4972b393-f94e-4331-9cd4-206ae4786f51", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8dce1939-d931-4ffd-94d5-3aa285de809c", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.8032786885245902, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "85ea9181-866c-4c62-b06e-74593560980d", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.8596491228070176, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "06e7c81e-6779-49ec-a521-bfe046e10497", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.5454545454545454, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cf6e22c1-285c-4cf1-8ddf-10b4fcb46b49", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a5e1df25-078b-4861-9da9-aeb547b11b01", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.5168539325842697, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cd967f7d-7454-4164-b56b-0e1799399440", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.7796610169491526, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c302d8a7-b35c-476a-af70-3ee6a59e6aa4", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.2857142857142857, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "23f2ed57-e170-480b-9cd3-92fd89b4284f", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.3141025641025641, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "feaafcc3-e383-44d4-902a-a9798a818252", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "44962785-89a0-482f-89a4-50e91165a290", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.34074074074074073, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "87b286d0-369f-4f36-a7d1-5ab4292e3fc6", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.8070175438596491, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "82f3d2fb-e61c-4186-8567-59d302ec5b3d", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.6764705882352942, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a94e12b6-ba58-45d0-b480-2c6a01f1d889", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.32450331125827814, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c2407163-8d7a-475a-b653-9c7e7e689f7a", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.29878048780487804, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4b82e4aa-cad9-41cf-857c-4ec19494c1c4", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.4, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "638b2e92-97a7-45b9-8068-56e2c30c6723", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.3287671232876712, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "10fec04d-067c-4089-96ec-8e38bd3ba9ca", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.8032786885245902, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "017de391-6a2f-4580-9545-2d49f9ac2474", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.35766423357664234, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0328e976-de3a-4316-a58a-b058462dc06e", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.7, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a8d28b83-d1f8-47b0-b752-433278ccbe87", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.28994082840236685, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4802f52e-40a4-42d5-b1a6-e8cdb4c53b68", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.5617977528089888, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9f011d4e-4690-4b1e-9236-8c6f6690a0b9", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5d07100e-bdf4-4893-9b08-1baee3cbf5ba", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.7538461538461538, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "896f8a55-1145-4b6b-892d-b0ee1a7ddf22", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.4444444444444444, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "46ba25c9-8507-44b0-8ac5-a71e3db466bc", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bd4afd96-9025-4bc8-acc3-0ae3e69ab123", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c08ef69d-da74-4b55-a221-f99f6f17c766", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.9245283018867925, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7940040e-0522-4a27-9230-2e8a81ce5fef", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1fc7f148-b932-4206-97d5-0efd9f51ff2e", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d732f68e-9046-4992-a3fc-2dbab76e4e4c", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.9245283018867925, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "950a5132-d6fb-4c24-9a86-9bbdb64d5647", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.8214285714285714, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cd04cd99-47f3-4cd3-90bf-fa021941506b", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.49, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c096354a-96be-412c-afc0-6cf1c46be1f1", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "81cd2e33-25f4-4e30-b13f-a3e0c1efb04d", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2abf4291-755c-49f3-83f3-90042c0bf8d1", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.296969696969697, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2aa78ab1-e86d-4037-8628-fd3fc158758b", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.4117647058823529, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6e2bb14c-1aab-4cb9-98d4-1e5bf9893696", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.3511450381679389, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "10080cc2-5cf9-4f51-8ff0-cb188b619847", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aca7c28b-7f68-4bd8-ad10-b04f03571f5c", "source": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.71875, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4bfb1f19-757b-484c-8e9b-dccc7e73d0b0", "source": "ff142123-42da-474f-aabe-17ebaf430321", "target": "72ea6b23-7fe8-4f2c-a476-fb9f42f41177", "similarity_coefficient": 0.5121951219512195, "overlap_size": 21, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0af3db0c-f0e7-433e-aa43-cc006305fe54", "source": "05351587-7c68-4db8-8761-3ac815da5f69", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.25555555555555554, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bc65fed0-6e80-410e-9ab9-0ab5ee5c698c", "source": "05351587-7c68-4db8-8761-3ac815da5f69", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d0c6c006-3caa-4abc-8107-5e20bb3ccfc6", "source": "05351587-7c68-4db8-8761-3ac815da5f69", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d3f9de1b-e907-42fc-9021-4f6f189efbf2", "source": "05351587-7c68-4db8-8761-3ac815da5f69", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.2604166666666667, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "61e0227a-7b0a-4fb3-b972-a836b1ade711", "source": "05351587-7c68-4db8-8761-3ac815da5f69", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.2655367231638418, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bee121d7-635e-42e0-8caf-c89279d2ec18", "source": "05351587-7c68-4db8-8761-3ac815da5f69", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e10ce9d1-2ef1-4172-ba60-cbafb35d0452", "source": "05351587-7c68-4db8-8761-3ac815da5f69", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fffc2e02-a2fb-4100-8148-381a0ada2283", "source": "05351587-7c68-4db8-8761-3ac815da5f69", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.28160919540229884, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dcd8c5af-11ca-425d-8306-438f873b89a6", "source": "05351587-7c68-4db8-8761-3ac815da5f69", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.4489795918367347, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7d296854-273f-409e-a0bf-05c4ee76d40d", "source": "05351587-7c68-4db8-8761-3ac815da5f69", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.2692307692307692, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "23ca23a2-4ead-4d63-b5f6-093d88be8884", "source": "05351587-7c68-4db8-8761-3ac815da5f69", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.4055299539170507, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4ffbc15d-643f-4122-b59e-9b846bedeb09", "source": "05351587-7c68-4db8-8761-3ac815da5f69", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "924cae6e-8fac-44f3-9de2-e636674507f6", "source": "05351587-7c68-4db8-8761-3ac815da5f69", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "be261181-65d5-4eac-b6ca-0bd992d6f3f5", "source": "05351587-7c68-4db8-8761-3ac815da5f69", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.25654450261780104, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2b82559d-dc32-4c45-b0fc-4244e8c00d20", "source": "05351587-7c68-4db8-8761-3ac815da5f69", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.26063829787234044, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4128f6ac-16e3-4033-9e82-516e659e2572", "source": "05351587-7c68-4db8-8761-3ac815da5f69", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.5683060109289617, "overlap_size": 104, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e1db148d-1ece-48aa-8f40-53494b90dd57", "source": "05351587-7c68-4db8-8761-3ac815da5f69", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.26704545454545453, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b8a4c7ba-2f7d-4ad6-a54a-f088318d53d1", "source": "05351587-7c68-4db8-8761-3ac815da5f69", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.3308270676691729, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f104a1f3-ea3c-4345-adb7-01a5ec30e798", "source": "05351587-7c68-4db8-8761-3ac815da5f69", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.2512820512820513, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "38d5c591-fb9d-4197-ae4f-d05b97a59d04", "source": "05351587-7c68-4db8-8761-3ac815da5f69", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ab3697d1-3d85-431b-a613-cf94d22f8183", "source": "05351587-7c68-4db8-8761-3ac815da5f69", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.5086705202312138, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f2a6702e-dfc4-4f22-a122-5c96fe001563", "source": "05351587-7c68-4db8-8761-3ac815da5f69", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.28160919540229884, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "063fb690-49ed-4ab1-a084-50f63c5c8fdf", "source": "05351587-7c68-4db8-8761-3ac815da5f69", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "58122f94-999d-4834-b843-b9e6501e5aec", "source": "05351587-7c68-4db8-8761-3ac815da5f69", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.28488372093023256, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a1276a0b-d15c-4052-9689-c0fc453e7751", "source": "05351587-7c68-4db8-8761-3ac815da5f69", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.2752808988764045, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8e2bcda5-4610-40a8-b45a-a8220f61d77f", "source": "05351587-7c68-4db8-8761-3ac815da5f69", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.2692307692307692, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a35b32ed-6dd9-4f3a-ab4c-c1df2d9546b0", "source": "05351587-7c68-4db8-8761-3ac815da5f69", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.26344086021505375, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "de727a95-f757-4eb2-881c-2ad4b80b61c1", "source": "05351587-7c68-4db8-8761-3ac815da5f69", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "435c4b35-95a3-4f3a-9d5f-e28d96b8b752", "source": "bf3c5db6-d54a-4e27-a6b0-be788ae9b904", "target": "c59b9ba0-0b63-4930-b1cb-3e784ac046af", "similarity_coefficient": 0.8461538461538461, "overlap_size": 286, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1c5efddb-9a40-4124-b18d-5af0a6bd43d5", "source": "bf3c5db6-d54a-4e27-a6b0-be788ae9b904", "target": "70cf6d48-a46e-4604-ad85-12eceacf95b4", "similarity_coefficient": 0.45454545454545453, "overlap_size": 130, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b328f7bd-2bb9-4d66-969f-32ccf7d3d574", "source": "bf3c5db6-d54a-4e27-a6b0-be788ae9b904", "target": "9181fb51-616b-4f2f-aef4-cf4f5ebc8835", "similarity_coefficient": 0.4755244755244755, "overlap_size": 136, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9a029c58-42d5-46a8-a27d-711903dd5157", "source": "bf3c5db6-d54a-4e27-a6b0-be788ae9b904", "target": "b418104c-b2c5-4aac-b268-9ee80bb42582", "similarity_coefficient": 0.7762237762237763, "overlap_size": 222, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b0a0b984-1641-421d-a8e7-87d66f9c7576", "source": "bf3c5db6-d54a-4e27-a6b0-be788ae9b904", "target": "1a39797c-1df7-4aec-8ab0-ce066a56e9ec", "similarity_coefficient": 0.3268765133171913, "overlap_size": 135, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "72a9171a-0e5b-4230-8e65-dd162400be92", "source": "bf3c5db6-d54a-4e27-a6b0-be788ae9b904", "target": "32436d28-1beb-496b-b8c1-c25ffb5d246b", "similarity_coefficient": 0.7115384615384616, "overlap_size": 222, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7db07a77-b6eb-45ef-8e1d-3bd35c1c87c7", "source": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d9662a91-30f1-4237-80a5-025f7dee2a4e", "source": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "65dc946e-17d1-4818-8de9-c9963912dc59", "source": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b4296683-9761-48c9-b01d-8fd59895695b", "source": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7ad90b51-586c-42ce-922e-f9ec0d140ef2", "source": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "98142a42-954c-415a-bf11-96d77589c945", "source": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cd7b8a00-d780-47f1-847f-8b59ca53a560", "source": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c2b0d950-6f2e-42a9-9be3-b7a53525e6a0", "source": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "52839973-3ec7-4b55-a6d8-78fff8ac84dd", "source": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "52afb2fb-c511-449a-b464-46425291ddbe", "source": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "527b1513-9ccc-4938-ac64-d60804141311", "source": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b179725c-e05f-4121-bfef-b3077ff2fef2", "source": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f8bf02fe-728f-435a-8db2-2e1cd61cdcf6", "source": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "66a1a526-840c-4af9-a181-e2fca9fe841d", "source": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "608c7b1c-3c6b-46c5-ad97-8ef13b57fe2a", "source": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3786ff90-240c-487f-87a6-04bd195aba92", "source": "354ec532-56fa-4d39-91bb-f26b629c0824", "target": "cd17fb8e-e2e9-4ade-a18e-e29fe05fa092", "similarity_coefficient": 0.3980263157894737, "overlap_size": 121, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e39d40ae-c958-408b-a8d0-2e3924d8ca4f", "source": "354ec532-56fa-4d39-91bb-f26b629c0824", "target": "5ed4b3b0-0529-42a4-97a6-871542f5bff7", "similarity_coefficient": 0.2872340425531915, "overlap_size": 135, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "65a6beb0-f143-4104-936f-56b62642f352", "source": "ff8df9a9-f99a-4719-a96a-d64e1b3fc6f8", "target": "f9b39331-d306-4809-b0c4-ce6e8a9a7e0d", "similarity_coefficient": 0.85, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1fd8d28b-2f71-407a-892b-deea2678a783", "source": "ff8df9a9-f99a-4719-a96a-d64e1b3fc6f8", "target": "1bdb2d2d-fe7b-4e46-b699-76d58b12344d", "similarity_coefficient": 0.9230769230769231, "overlap_size": 36, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "295d58f9-29c1-45c6-8688-74fda5759de2", "source": "ff8df9a9-f99a-4719-a96a-d64e1b3fc6f8", "target": "69c69d97-3401-431d-87ee-22f72bd12c57", "similarity_coefficient": 0.9444444444444444, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "05f856d9-0559-42a7-b2df-cdbd65c02cc4", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.6865671641791045, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "792d81f3-7b36-4af3-8eda-33f9d2c7c385", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.875, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "43740ca0-4584-4ca9-b967-9cc33eb329d7", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "de212658-4e00-4cb4-b2d0-157f027cd26d", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "78266f45-bc12-483d-9441-764a127a56eb", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.2737430167597765, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b5d97164-7b7a-46ad-abb8-527ead8cb92c", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.28488372093023256, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3de46ec5-ec87-4c28-96bf-5d886e031d0f", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.6756756756756757, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "72fee446-3aea-4406-a6ef-9e315451e9b7", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c887f591-7c19-401e-92a1-380463c3cbdc", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "46688f5a-2a81-425a-8629-0d840f8f9f33", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.8103448275862069, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "70ff672f-9269-4e27-8e7e-74a5459b820b", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.4132231404958678, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "78d88c90-c49c-406b-a8d7-56af36c9b45b", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.7, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "42c7e73f-31e8-4c20-aedb-0520517279bd", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "79dcb4a1-7211-4c55-9da0-2b3bde854a91", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6564c738-4ad4-4527-812a-1d33e97ed949", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3c8e8db1-60d8-4f03-a5f5-e0621ccf1ef5", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.765625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fc7b0990-9303-4cd2-9a64-26d467e1c878", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.9074074074074074, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3b7bb458-e114-4aa4-936a-599aa9dd4810", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.2916666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8ce81986-1892-43f3-aa4d-de168fda1c97", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.31645569620253167, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "60a3493c-bc81-46ad-b824-1a33d7aa6f8e", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.3181818181818182, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "585d3792-1bb1-4c9e-bd89-5b1a2da442a4", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.32679738562091504, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9cd9a545-e073-4896-8d0a-5d05992fd12a", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.5, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "08452b14-66db-4ec8-be6d-0e181670daa1", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.875, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4e268f81-7083-45e6-9125-b5da6b47ea00", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.3023255813953488, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "66541065-9dbf-4deb-8dfb-3736568f9b12", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.525, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e521db4f-f455-402d-85d5-77a9bbf37abd", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.765625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "16733b54-55fc-4be4-89fd-c5d72de2bef0", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.34328358208955223, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d06e34b6-93a0-4d77-9bf3-afef67f890ca", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "22d2f728-fc8d-4842-8164-38c4c9e68822", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5ad6d4e1-ee05-4e1d-bbae-078f41983d9c", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.494949494949495, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ae1a77a2-122f-414f-8181-9939540f1b25", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.3333333333333333, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2c314fac-1f75-4f7f-9093-b3101a40ec10", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "41e5bcc0-09f7-426c-be79-11177bd5d568", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.7966101694915254, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3b17022c-c77e-4ae8-9eb1-9a4c7c26f101", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.7419354838709677, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "64aae486-ecae-4e16-a47e-84bf1a92432b", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.3597122302158273, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1ba231bf-c357-47f3-a6e4-0a65698dd827", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "493f46e8-beb5-4785-b5ff-e9f89989cd11", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "66bbcfe5-583c-4b8d-97f2-e39708c3aa25", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.42105263157894735, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9d29fec1-64c8-4f77-a658-4f5d11b0a3e7", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.6712328767123288, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a3b6ca2f-7064-4eb4-9128-4f804d605e33", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.30120481927710846, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4fb8df54-ea12-4b63-a1f4-de062fba9aa7", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.3157894736842105, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "45429f26-83e6-4ba6-91f3-017cb6118c96", "source": "4ccfd54f-82c0-4843-899b-f393bec5824b", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.647887323943662, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5468e112-9807-4add-a22a-001d7091c0da", "source": "f8f8bb80-c971-4c78-868d-14b163a98028", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.31210191082802546, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4e957445-8cbb-46e6-b50c-021f81af8a4f", "source": "f8f8bb80-c971-4c78-868d-14b163a98028", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.36363636363636365, "overlap_size": 56, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "003939ec-4609-4298-be90-b8e53a358e42", "source": "f8f8bb80-c971-4c78-868d-14b163a98028", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.2905027932960894, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "300a2f54-4278-4a20-a3a7-48417771aaff", "source": "f8f8bb80-c971-4c78-868d-14b163a98028", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.2893081761006289, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "71705f32-406a-4f05-b4ee-38a3103a3dc1", "source": "f8f8bb80-c971-4c78-868d-14b163a98028", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.25668449197860965, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8cd3d21e-9a4e-455d-be3b-6ef603740e55", "source": "f8f8bb80-c971-4c78-868d-14b163a98028", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.2620320855614973, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2b839035-89aa-4953-93e5-9de4a5f2fe37", "source": "f8f8bb80-c971-4c78-868d-14b163a98028", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.3181818181818182, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4ff3d929-76e4-4fd1-9646-e4ef64bf1267", "source": "f8f8bb80-c971-4c78-868d-14b163a98028", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.30952380952380953, "overlap_size": 65, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "460e6ca7-2994-4c09-b064-b9d0346c8a45", "source": "f8f8bb80-c971-4c78-868d-14b163a98028", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.27380952380952384, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f9cdac43-f483-4baa-8f09-241227c8a180", "source": "f8f8bb80-c971-4c78-868d-14b163a98028", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.32450331125827814, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a315ced9-ed44-471c-b840-6d1bc80f5a2a", "source": "f8f8bb80-c971-4c78-868d-14b163a98028", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.3125, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f70c2dc2-22b5-41c6-9c00-d5d1d05e313d", "source": "f8f8bb80-c971-4c78-868d-14b163a98028", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.28823529411764703, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "88676ce0-8ed9-4178-8d1f-09a34e4f86c7", "source": "f8f8bb80-c971-4c78-868d-14b163a98028", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.32894736842105265, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ec61d9bc-8927-46fe-9b69-3688d1b95dce", "source": "f8f8bb80-c971-4c78-868d-14b163a98028", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.2578947368421053, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e212288b-fe61-4248-89aa-ef922fd7b998", "source": "f8f8bb80-c971-4c78-868d-14b163a98028", "target": "512b43b3-5e2c-43d0-9270-d49211ee8e20", "similarity_coefficient": 0.2736318407960199, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "93a32e6a-cb59-4fd7-bd76-6d18ad4c7618", "source": "f8f8bb80-c971-4c78-868d-14b163a98028", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.34574468085106386, "overlap_size": 65, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7e21c5ea-0bbb-4d0f-9015-7f05db345adc", "source": "f8f8bb80-c971-4c78-868d-14b163a98028", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.296969696969697, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "96b63429-159b-4fe2-9f99-317535b9b06f", "source": "f8f8bb80-c971-4c78-868d-14b163a98028", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.28160919540229884, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "06efd0ac-071d-4574-8f72-7993ba818c00", "source": "f8f8bb80-c971-4c78-868d-14b163a98028", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.30120481927710846, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8483d999-6fbc-4575-93ac-ab443a0202d8", "source": "f8f8bb80-c971-4c78-868d-14b163a98028", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.25, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f74b4233-8299-43bb-afb6-c19f685d5b5d", "source": "f8f8bb80-c971-4c78-868d-14b163a98028", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.3202614379084967, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fc462278-3587-46e7-8d90-131b760981f5", "source": "f8f8bb80-c971-4c78-868d-14b163a98028", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.32894736842105265, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b122c5e6-e146-4ee7-a8db-bee2096c8805", "source": "f8f8bb80-c971-4c78-868d-14b163a98028", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.2810810810810811, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e02d4da2-6a9c-42a9-a567-a874c580ff87", "source": "f8f8bb80-c971-4c78-868d-14b163a98028", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.3076923076923077, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "504a9e9b-93ba-477e-b52a-7db6e7357585", "source": "f8f8bb80-c971-4c78-868d-14b163a98028", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.2962962962962963, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "af9f40e0-80b2-4ba4-bd0c-e86d6c0b725f", "source": "f8f8bb80-c971-4c78-868d-14b163a98028", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.28350515463917525, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "06b9032f-c5e8-4107-9cbf-853cb9626ea8", "source": "f8f8bb80-c971-4c78-868d-14b163a98028", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.2661290322580645, "overlap_size": 66, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "46c6397f-2ac3-4bed-8220-69bc0414aa8c", "source": "f8f8bb80-c971-4c78-868d-14b163a98028", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.3609467455621302, "overlap_size": 61, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "07a14266-5a56-4bf6-a87a-0e0643601ba6", "source": "f8f8bb80-c971-4c78-868d-14b163a98028", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.2810810810810811, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "60962951-456d-4868-8b1e-1eca01817d2a", "source": "264adbfb-edda-4bc7-a8b3-74edd95909e2", "target": "ac098499-46ba-4296-a03f-9b11ac60dfaf", "similarity_coefficient": 1, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "26af5a26-a1b3-4eb5-adfe-19cea7e10601", "source": "264adbfb-edda-4bc7-a8b3-74edd95909e2", "target": "f59c55ff-3a61-402d-84df-8cc060626bbd", "similarity_coefficient": 1, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "200b0420-44d5-4d2c-abe8-f59a913eeb2d", "source": "264adbfb-edda-4bc7-a8b3-74edd95909e2", "target": "6189859e-374c-49ef-b16b-48eea47da1f1", "similarity_coefficient": 1, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "50093c5f-39ae-45e9-9e43-221bb145319b", "source": "264adbfb-edda-4bc7-a8b3-74edd95909e2", "target": "1650d15a-9620-441d-a852-1ce19e3865c9", "similarity_coefficient": 1, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e3b9257d-ba49-4637-b27e-2ea4b2af47e9", "source": "264adbfb-edda-4bc7-a8b3-74edd95909e2", "target": "98c61e9d-3b1f-4f83-b8de-b03f552fcb71", "similarity_coefficient": 1, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1a9c71b8-5951-4798-91a1-6a268c75b5e8", "source": "7f22376c-1798-4ebf-811f-e11344296c4f", "target": "2c6012fd-f497-423b-9ab1-8cfc5154f253", "similarity_coefficient": 0.5145631067961165, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "81b01dec-6dfb-4cde-afa3-395e499746af", "source": "7f22376c-1798-4ebf-811f-e11344296c4f", "target": "623310f5-8d59-43b9-bdde-0d30cde60c99", "similarity_coefficient": 0.2864864864864865, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6fd40cb4-7799-4f29-a6b9-34a279039f76", "source": "a77d2ae1-e81f-46a0-810c-038611327b6b", "target": "0270ca63-6518-40e4-a878-0eac4795f5b1", "similarity_coefficient": 0.43915343915343913, "overlap_size": 166, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0d2d302a-f2fc-4485-a6d0-b94b76e8fa62", "source": "a77d2ae1-e81f-46a0-810c-038611327b6b", "target": "6bed8f20-05d5-41c1-a584-804d0df5a3a0", "similarity_coefficient": 0.9880952380952381, "overlap_size": 166, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "45784cc0-93e7-40a9-a399-73c17a4722ad", "source": "e44305cc-a5b7-4cc3-9422-f3a68964ef17", "target": "884b9c04-6683-4d3e-90f3-b0bd69f8a649", "similarity_coefficient": 0.6748366013071896, "overlap_size": 413, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "22f0633f-0126-473e-aa94-e94aa486aff5", "source": "e44305cc-a5b7-4cc3-9422-f3a68964ef17", "target": "9f2e5314-9e79-4fa2-8159-07d8cc47d89f", "similarity_coefficient": 0.8814968814968815, "overlap_size": 424, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dc911f6c-b437-434c-bacb-5573c06efad7", "source": "1cd8c8a0-7921-46cb-b5c5-5be2eef5efff", "target": "25a9a2af-f609-47a7-a75e-59c026281cf8", "similarity_coefficient": 0.37254901960784315, "overlap_size": 19, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f34966d5-b7a1-43e7-9fba-78775c74a661", "source": "1cd8c8a0-7921-46cb-b5c5-5be2eef5efff", "target": "27a9f866-bb13-4a50-ba51-615e2b2c6b56", "similarity_coefficient": 0.30158730158730157, "overlap_size": 19, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3a43dd97-58f1-4492-a332-dece2f697453", "source": "1cd8c8a0-7921-46cb-b5c5-5be2eef5efff", "target": "8102549a-740f-4e81-9373-b6d30e8cdc60", "similarity_coefficient": 0.3275862068965517, "overlap_size": 19, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "842c8e41-33f7-4119-8add-3836d7af5b5b", "source": "d078c60c-b5d5-42cd-a5d7-a780f23a8090", "target": "218e964f-2842-43f5-825a-917591457798", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8271ce13-8c9e-4add-9877-09461b09b211", "source": "d078c60c-b5d5-42cd-a5d7-a780f23a8090", "target": "beb79ccf-a196-43d0-86ff-773092ba3490", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b16e9989-0acb-4445-9615-6c0ded4aa4e4", "source": "d078c60c-b5d5-42cd-a5d7-a780f23a8090", "target": "4972b393-f94e-4331-9cd4-206ae4786f51", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "11e77c82-0972-4404-b896-75810a8ed438", "source": "d078c60c-b5d5-42cd-a5d7-a780f23a8090", "target": "e6bdd19b-66e3-45e2-b2b1-92f658ccc62b", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1de323f3-5da5-4228-9bb3-a3841675e9f1", "source": "d078c60c-b5d5-42cd-a5d7-a780f23a8090", "target": "e97d3933-d924-4c41-8e4d-ae17bd34263c", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a49fe072-e914-4fe1-82d8-fc412a640ea2", "source": "d078c60c-b5d5-42cd-a5d7-a780f23a8090", "target": "3e8dd08d-a111-414e-905a-faeed681e3f5", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7149897c-35e8-48ae-b20d-fe47bd960034", "source": "d078c60c-b5d5-42cd-a5d7-a780f23a8090", "target": "5db5ed69-b4e2-485d-b78c-1b47eb326935", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2d736207-cbc4-4834-b2e6-2493eb318e48", "source": "69c4b4b7-c9e4-478e-997c-da4e05c3d7ee", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.5535055350553506, "overlap_size": 150, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7c556f90-2786-47e1-ad63-bfdafe8fdb66", "source": "69c4b4b7-c9e4-478e-997c-da4e05c3d7ee", "target": "b67a97a8-54b7-4306-be3a-d6518f864d8d", "similarity_coefficient": 0.471976401179941, "overlap_size": 160, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "24c4ba4d-5642-4387-89ce-7e684d736130", "source": "69c4b4b7-c9e4-478e-997c-da4e05c3d7ee", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.3610223642172524, "overlap_size": 113, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "89954e66-84ce-4ce7-a265-19a36960e44b", "source": "69c4b4b7-c9e4-478e-997c-da4e05c3d7ee", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.3400673400673401, "overlap_size": 101, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8c90774b-5611-4d03-b31b-74a715d5ff96", "source": "69c4b4b7-c9e4-478e-997c-da4e05c3d7ee", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.5567375886524822, "overlap_size": 157, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "98fd1607-6e1f-410a-9172-a8b59cf52e25", "source": "69c4b4b7-c9e4-478e-997c-da4e05c3d7ee", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.2695035460992908, "overlap_size": 76, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b21f2fc1-3c8e-459f-8064-23422efdd616", "source": "69c4b4b7-c9e4-478e-997c-da4e05c3d7ee", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.2753623188405797, "overlap_size": 76, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bc85ce11-3c0f-4767-a7e0-ecdd19b4c654", "source": "69c4b4b7-c9e4-478e-997c-da4e05c3d7ee", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.2916666666666667, "overlap_size": 98, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1e9787ac-623e-4c48-92fc-17ac726a0311", "source": "69c4b4b7-c9e4-478e-997c-da4e05c3d7ee", "target": "e9595f2e-7b95-4f92-b829-ff02d867fe3d", "similarity_coefficient": 0.33090909090909093, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "237b51ed-c884-4037-85bb-bd351a2f4a69", "source": "69c4b4b7-c9e4-478e-997c-da4e05c3d7ee", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.2695035460992908, "overlap_size": 76, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5162778f-9dba-41e8-a1e8-0142728e8868", "source": "69c4b4b7-c9e4-478e-997c-da4e05c3d7ee", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.25625, "overlap_size": 82, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "400de327-e830-4f9f-9ae1-cf0e4519d3fe", "source": "cc9f38d2-0dd3-459b-b55f-44e01fcf9dc9", "target": "9f2e5314-9e79-4fa2-8159-07d8cc47d89f", "similarity_coefficient": 0.6017569546120058, "overlap_size": 411, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d4d06c69-9324-4f0b-8448-bffd81acf6a4", "source": "cc9f38d2-0dd3-459b-b55f-44e01fcf9dc9", "target": "e44305cc-a5b7-4cc3-9422-f3a68964ef17", "similarity_coefficient": 0.6632947976878613, "overlap_size": 459, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5701f690-3916-4650-a693-6478ea2b3a95", "source": "cc9f38d2-0dd3-459b-b55f-44e01fcf9dc9", "target": "884b9c04-6683-4d3e-90f3-b0bd69f8a649", "similarity_coefficient": 0.8119402985074626, "overlap_size": 544, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b9af3ec2-09cc-44f5-92df-b6da518ff4fe", "source": "e921ec18-89d3-48c9-aa6a-87acffde047b", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8a48123a-fb74-4a8e-8f24-18873ea24a93", "source": "e921ec18-89d3-48c9-aa6a-87acffde047b", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dc45ac70-23ac-49b4-bf51-b2a5d178e0b2", "source": "e921ec18-89d3-48c9-aa6a-87acffde047b", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a3127d05-6c04-4147-a5dd-e46d25316e9b", "source": "e921ec18-89d3-48c9-aa6a-87acffde047b", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.5523255813953488, "overlap_size": 95, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1eae0f0c-4233-4da5-8bbd-259d9d9566ac", "source": "e921ec18-89d3-48c9-aa6a-87acffde047b", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e2203a2b-7e76-4761-92b0-ca7474c172eb", "source": "e921ec18-89d3-48c9-aa6a-87acffde047b", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.8979591836734694, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b3c23d51-4312-4dc3-b6e5-9e8cb8ea9653", "source": "e921ec18-89d3-48c9-aa6a-87acffde047b", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.7272727272727273, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "019df810-0b48-4806-a986-46aded435c41", "source": "e921ec18-89d3-48c9-aa6a-87acffde047b", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.4607329842931937, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2bd922ec-b553-43ef-bb2f-ff387fae8325", "source": "e921ec18-89d3-48c9-aa6a-87acffde047b", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.8275862068965517, "overlap_size": 96, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d5968403-3dd6-4a1c-ab36-9ec6254b04c8", "source": "e921ec18-89d3-48c9-aa6a-87acffde047b", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a6d21c91-bab4-491b-8a2c-f27799b610c6", "source": "e921ec18-89d3-48c9-aa6a-87acffde047b", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.6197183098591549, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c00a8386-dbdc-4058-b4e4-b0d182a72087", "source": "e921ec18-89d3-48c9-aa6a-87acffde047b", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "17fb5a7a-113b-4ef1-aa5e-e82e34871095", "source": "e921ec18-89d3-48c9-aa6a-87acffde047b", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.3135593220338983, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "28540bce-0542-4b2e-b0a1-aaa063b94e4f", "source": "e921ec18-89d3-48c9-aa6a-87acffde047b", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.30973451327433627, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3d762c86-1896-42f0-86cf-41d2ffcd0791", "source": "e921ec18-89d3-48c9-aa6a-87acffde047b", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ce6e99c1-5740-4a68-ad26-d56a2ed56879", "source": "e921ec18-89d3-48c9-aa6a-87acffde047b", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c1ffa2f6-3c0b-4641-adaa-efddb658fe48", "source": "e921ec18-89d3-48c9-aa6a-87acffde047b", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0a5b33b7-ca1e-4b75-98d9-4ce25927d280", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.48120300751879697, "overlap_size": 64, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7c3cf31c-3cae-4a51-a047-9c3df0c15a13", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.5378151260504201, "overlap_size": 64, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b4027f5f-b951-4e59-a99d-95c69605773e", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.28313253012048195, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9619c14a-a5cc-4bca-8f6c-1ace61688a6e", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.33116883116883117, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "53d999cf-6851-499a-bec5-be1bffc92db1", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.3458646616541353, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "af534c03-6e80-40ef-ace1-6e301693d5e7", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.48120300751879697, "overlap_size": 64, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c63a6c5a-86d0-49ba-a8b1-562939578fa2", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.39655172413793105, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b8112237-b89a-46d8-a738-6a3f648a20bb", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.3006535947712418, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "16d6acbd-b2fa-4442-a555-0818689eb92c", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.39655172413793105, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9fedb2ea-fd3b-46b5-bb3a-04e66ca2ca74", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.35384615384615387, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "72e2c9fa-8633-48e8-83e6-b38b277404e0", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.31756756756756754, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d948ec27-8bfc-4eaf-a57d-8971261839ef", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.7096774193548387, "overlap_size": 110, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e840d96d-b207-4e18-806c-c55a4a093e3d", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.25, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "524c7a13-11fb-479b-bea7-fc2fe0e7845a", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.41450777202072536, "overlap_size": 80, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4703d028-f43a-4686-96d7-4436d39c5e0a", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.39655172413793105, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "61999487-4edf-42e9-aaef-e10eefe7058f", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.5818181818181818, "overlap_size": 64, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dac2fd21-bdf5-4836-bba4-18cf3f3f31c0", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.41304347826086957, "overlap_size": 76, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9d30fe33-35ac-4064-bab3-aa93c7ee64f8", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.2930232558139535, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a6ca6b2a-c1b6-4bbb-a0ad-d6b58f18460d", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.359375, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f4d4dd51-e792-4306-9c58-d2a495e56f28", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.40350877192982454, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7ca17412-b8a5-4508-85a5-d234073ef94d", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.3709677419354839, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "df95f2f0-532f-4357-bee1-67271b6a2a17", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5039370078740157, "overlap_size": 64, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b8d94dff-e568-4522-a5e8-6beb3f8ef778", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.3463687150837989, "overlap_size": 62, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2c75e57c-9b97-4753-8986-05b8c7c9f7de", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.3865546218487395, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "af26c10a-4038-48c0-a5ec-65fbbd04668a", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.39316239316239315, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "690cbe87-a2cf-4a2f-a5a9-cf01d59e58c6", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "69c4b4b7-c9e4-478e-997c-da4e05c3d7ee", "similarity_coefficient": 0.3229166666666667, "overlap_size": 93, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b6d89604-109f-41de-aa0c-ca591d65f948", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.3709677419354839, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "de51a864-2950-454c-ba2e-57c547f6d944", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.30656934306569344, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "19aa0554-9686-4df2-b2a1-2d256429426d", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.30666666666666664, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5ed70c29-f701-406a-a895-6215f116877b", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.2822085889570552, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "27799f4c-c216-46f7-a23a-5c8f81ed6477", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.25274725274725274, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ae61fc54-4fb6-4eee-83c4-757340947cbf", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.39316239316239315, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8ecdd156-13e5-486e-907c-6fddb89fdfc8", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.38333333333333336, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ec521c90-19a9-4d2f-9b1b-28149ce940d6", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.3194444444444444, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2ed9bb1e-36f2-4704-a12e-229a1bec61a9", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "b4472d3f-7b1d-4c57-b47a-bffedc4aba98", "similarity_coefficient": 0.2570281124497992, "overlap_size": 64, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "94f9c293-ced5-4f9c-8685-364b3d0060a0", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.5083333333333333, "overlap_size": 61, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a86e991a-18e1-4177-9115-49f31e91ac3b", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.39316239316239315, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9a6d8f4e-8030-4e81-b17b-2f64ab09519a", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.8661417322834646, "overlap_size": 110, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ca027009-8300-425c-87ae-0175f5dabc88", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "cbfeadab-ca27-40a7-8780-4bec2a9b1964", "similarity_coefficient": 0.3093220338983051, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f63d1c44-b48d-44bf-91a8-2d0c452ca040", "source": "c813804a-d0e7-423b-a28b-689f94ff466a", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.3709677419354839, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c04f25f2-1176-4858-be9d-cea9fa9b5fe2", "source": "536cea90-ddae-4dd4-a936-9846245ac987", "target": "b418104c-b2c5-4aac-b268-9ee80bb42582", "similarity_coefficient": 0.27927927927927926, "overlap_size": 62, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9f875c70-370c-4fac-8653-f2983e75514f", "source": "536cea90-ddae-4dd4-a936-9846245ac987", "target": "32436d28-1beb-496b-b8c1-c25ffb5d246b", "similarity_coefficient": 0.25, "overlap_size": 62, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f04cbe64-87a7-4503-b4dd-b8b06d20f692", "source": "536cea90-ddae-4dd4-a936-9846245ac987", "target": "70cf6d48-a46e-4604-ad85-12eceacf95b4", "similarity_coefficient": 0.47692307692307695, "overlap_size": 62, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4993b9e8-c033-44c6-b423-f6b1405bbce1", "source": "536cea90-ddae-4dd4-a936-9846245ac987", "target": "8cffca08-69ba-4a11-8650-725824ef2372", "similarity_coefficient": 0.46774193548387094, "overlap_size": 29, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2acb1424-150f-451f-87ae-74d4316e95fc", "source": "58322784-4ff6-48e8-bb62-0bbc20a06950", "target": "bc2a6276-c085-4011-a84b-10e3f2477948", "similarity_coefficient": 0.43478260869565216, "overlap_size": 70, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "35b9d859-c425-4299-b03b-cc722c78925e", "source": "58322784-4ff6-48e8-bb62-0bbc20a06950", "target": "5ed4b3b0-0529-42a4-97a6-871542f5bff7", "similarity_coefficient": 0.28285714285714286, "overlap_size": 99, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2dccd30c-83cc-45bc-8e90-a1125bd2b2e5", "source": "58322784-4ff6-48e8-bb62-0bbc20a06950", "target": "85446e1b-b536-4525-bd76-a5d08e5812d6", "similarity_coefficient": 0.31788079470198677, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2d10152e-da19-422d-8f26-3e7351dea36d", "source": "58322784-4ff6-48e8-bb62-0bbc20a06950", "target": "4c84babd-5ce0-42f8-899d-dfad984c96fb", "similarity_coefficient": 0.5337837837837838, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7f080c2c-2ece-455c-b3be-17b1c0ef85ae", "source": "58322784-4ff6-48e8-bb62-0bbc20a06950", "target": "a71b38d5-6589-4c2c-a24c-7181a1100649", "similarity_coefficient": 0.2972972972972973, "overlap_size": 44, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d59ba151-da77-46b0-9572-5c87d2415741", "source": "58322784-4ff6-48e8-bb62-0bbc20a06950", "target": "304b3755-2434-4a6f-b5b2-2df6c7309f05", "similarity_coefficient": 0.38341968911917096, "overlap_size": 148, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "57c83e0e-2f18-4df2-90fe-bff7a14cb9fc", "source": "46c8c456-5def-4584-9833-812316564cc4", "target": "2618dd66-76a4-4e39-88d8-08bcb65b75f1", "similarity_coefficient": 0.7090909090909091, "overlap_size": 39, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "abca6cbf-b28b-4304-a9d4-ca3ef0c893e4", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "09d5352b-f385-432b-8c3d-b9f37706c51d", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6d7f51cc-da9d-4d0d-8b94-1c3eee7fd65d", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2d6a076f-9ced-45d7-bee3-49ec4f5eaa4e", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.28, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "633beebb-f63e-443e-91a5-342362ef8fee", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.494949494949495, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "30c91b96-9eec-494b-bf1e-fa29975a71f9", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c01919d1-3aef-41ba-b244-72f1024062bc", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.28488372093023256, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bc1fc5c6-6768-46a3-969e-924701a7783f", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.5434782608695652, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bf8cadf8-df69-40a3-a37e-2a8d49e3ee5e", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.8596491228070176, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a1c8dcc3-b726-45fa-8e9b-04844f782ebc", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.6712328767123288, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "172bc0e2-27e7-4ef7-b82f-b18a415aae6f", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "20b11b6c-7a30-40cd-bb97-d85217d6baef", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.3181818181818182, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "525d37de-89dd-4466-8dd0-238795d408be", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.9433962264150944, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "48d9d6e5-9ae2-45eb-82c5-6c3d44a5e383", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.3181818181818182, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4a68e406-41c5-4c81-af27-6a7565867eaf", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.765625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2e494e53-d936-4fdb-89fd-f266d06539e4", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.2916666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ae93258b-dc85-4fd2-a9be-83510c87e743", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.42105263157894735, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "72932df2-b617-40fb-8c5e-fff00543b650", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.34328358208955223, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f158326b-b754-46d0-b6f7-d7d54c2eb04a", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5d3ad635-f45d-4837-9e39-d65d608314e4", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.3157894736842105, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5c719671-c4f2-4e15-aafd-0d75b363a396", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.647887323943662, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2bcb987f-41b4-4cdd-a6f0-160b014424b2", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.2934131736526946, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "85b5d29f-5006-43a1-a914-6d2c897b0f90", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ed80d6c5-38fe-46fe-916a-1a86db6ab6ab", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.875, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a51e5f9a-e4e6-480a-94f8-e354d2e53acc", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.7666666666666667, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5ff62ad4-98ed-4536-bb34-007527f9c473", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.7419354838709677, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "62110dac-5c2c-4da7-9eaa-12dcc6d62abe", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9d2e85de-b054-4d3f-adec-861144ded651", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "83a27a9b-9d32-4272-956c-93b2bf265fb1", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.3333333333333333, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a7056fa3-faf1-4331-819e-81aef9e28616", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.765625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ba143d6f-9b5f-4e41-a69b-1621f27a60fd", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.525, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "726edad6-4e52-4c29-8649-64ef9e829b94", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.3028571428571429, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "201b6e40-6467-40f7-a1fc-41a88e56afd6", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.3088235294117647, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0fb86d95-041e-4b12-9c23-653e8c88d3d1", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.6865671641791045, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "11d7fbd4-6dbf-4e7e-93f2-5a57c63a76be", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.35, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eb01e8b2-2449-4a61-b064-1fc5d748a059", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.3081761006289308, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "58da7d0b-9843-42f3-8183-7fd193c302b1", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.5, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2ea13c83-df41-4f4d-9d30-9819b5c2e10f", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.875, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "82c08957-550b-4802-b0d8-babcc3e26a32", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e8bf1da8-0305-40be-b02a-2fbfa3cdcde3", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.390625, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3914d351-8519-4ee0-bf7c-1dd4baa59047", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fec3d22f-9443-49c6-819a-1cff5ede8ba2", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.4016393442622951, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c6f1580f-64c8-4922-9afd-fbc270e045f6", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.7796610169491526, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9aff648a-b372-4353-b1fa-58a4c9db4136", "source": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.7, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "25f89274-a8b0-4bde-bd4a-6f13702c57a1", "source": "74d79616-6400-4439-83c7-0371e0b30d34", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.6068965517241379, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "08317c67-ca8c-4a2b-9096-ae363f70775c", "source": "74d79616-6400-4439-83c7-0371e0b30d34", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.41509433962264153, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d901ba9e-71b1-4a3f-9a38-b8dad1617609", "source": "74d79616-6400-4439-83c7-0371e0b30d34", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.6554621848739496, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5b4ef8b8-6d33-4630-9f17-3e3f31f05c59", "source": "74d79616-6400-4439-83c7-0371e0b30d34", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.6554621848739496, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6396e993-7ac1-4bd6-96c8-deef5441daa1", "source": "74d79616-6400-4439-83c7-0371e0b30d34", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.6694915254237288, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "520c758d-3343-405d-ae50-74e5e04fbf18", "source": "74d79616-6400-4439-83c7-0371e0b30d34", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.26119402985074625, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "216b42ad-be7c-49dc-8d74-e26d0749c64c", "source": "74d79616-6400-4439-83c7-0371e0b30d34", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.44, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6d4bb4c2-ef1b-4857-94b2-3657e46b12f4", "source": "74d79616-6400-4439-83c7-0371e0b30d34", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.7394957983193278, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "baa6cb9b-55e7-4de4-a558-9a0363724228", "source": "74d79616-6400-4439-83c7-0371e0b30d34", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.6554621848739496, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f4b06beb-43ae-49aa-a60c-c22a3fd5ebe5", "source": "74d79616-6400-4439-83c7-0371e0b30d34", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.6197183098591549, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7ae5aaea-a9bd-429f-9f0d-c21e3f3c1656", "source": "74d79616-6400-4439-83c7-0371e0b30d34", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.6554621848739496, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "07e97567-c756-4ab2-94e1-fcb41211feb4", "source": "74d79616-6400-4439-83c7-0371e0b30d34", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.6694915254237288, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7a42f780-5957-4b9f-bd45-c90b4fda03d3", "source": "74d79616-6400-4439-83c7-0371e0b30d34", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.6694915254237288, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b1de345d-7ba3-41db-a681-2a817ab8a05e", "source": "74d79616-6400-4439-83c7-0371e0b30d34", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.704, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "52cd8caa-883f-46f7-8a40-148b328229ad", "source": "74d79616-6400-4439-83c7-0371e0b30d34", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.5398773006134969, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "be18c337-aab9-458e-a916-51d2f24be4f6", "source": "74d79616-6400-4439-83c7-0371e0b30d34", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.6694915254237288, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cb5b1004-375c-473d-a2b4-7955edb371d9", "source": "74d79616-6400-4439-83c7-0371e0b30d34", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.6554621848739496, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a3b5ab34-1ec6-48b3-999e-9a8da61758ab", "source": "e45b8507-21ba-4ed2-88e7-49bea133780d", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.40930232558139534, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b14917a2-ebac-4230-9715-e971e37bc9dd", "source": "e45b8507-21ba-4ed2-88e7-49bea133780d", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fe1f28ea-af2d-4938-bec8-eda3b909431b", "source": "e45b8507-21ba-4ed2-88e7-49bea133780d", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e3a16837-8559-4278-baa2-30413330bccf", "source": "e45b8507-21ba-4ed2-88e7-49bea133780d", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c0f1bc2d-ab18-4e8c-859a-d270af31d5a2", "source": "e45b8507-21ba-4ed2-88e7-49bea133780d", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.43333333333333335, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "716d5a69-96d9-445b-b5f7-a906dc5cd82e", "source": "e45b8507-21ba-4ed2-88e7-49bea133780d", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.5906040268456376, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9633508b-24ee-451e-8b47-7f6ba1bf7c30", "source": "e45b8507-21ba-4ed2-88e7-49bea133780d", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.5301204819277109, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "23ba3fc2-5322-49d6-ba28-0e11f4f29664", "source": "e45b8507-21ba-4ed2-88e7-49bea133780d", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.49166666666666664, "overlap_size": 59, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9f19fd87-a056-4d1a-aafe-d4de8a0142b7", "source": "e45b8507-21ba-4ed2-88e7-49bea133780d", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.7213114754098361, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "15ba5449-2f64-49a5-aab1-1f9ff90fd5c4", "source": "e45b8507-21ba-4ed2-88e7-49bea133780d", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.44776119402985076, "overlap_size": 90, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1982be72-5862-45f2-a13f-4d45a8782fa3", "source": "e45b8507-21ba-4ed2-88e7-49bea133780d", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.6164383561643836, "overlap_size": 90, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "800c9270-c28d-44e9-b076-a071531e0ce4", "source": "e45b8507-21ba-4ed2-88e7-49bea133780d", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d6c5e786-e7bb-4aab-9ca0-dd61965671ee", "source": "e45b8507-21ba-4ed2-88e7-49bea133780d", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ffed7961-a105-45f1-b886-6466becc2ba0", "source": "e45b8507-21ba-4ed2-88e7-49bea133780d", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.7142857142857143, "overlap_size": 90, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9effac53-c0bb-401c-8274-9d7fba343984", "source": "e45b8507-21ba-4ed2-88e7-49bea133780d", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0ceb8091-a7b7-4113-ba2f-cc7275a98c8a", "source": "e45b8507-21ba-4ed2-88e7-49bea133780d", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.6068965517241379, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "40da3dfd-d782-4f6d-8879-482f1e074fb3", "source": "e45b8507-21ba-4ed2-88e7-49bea133780d", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "98b74484-63b4-42e0-92a9-9d22d7c9f748", "source": "e45b8507-21ba-4ed2-88e7-49bea133780d", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "59393dc3-9bdd-41ab-8dcf-cf53824ab6b4", "source": "e45b8507-21ba-4ed2-88e7-49bea133780d", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "23b259eb-a27d-4039-b601-56f24d762fbb", "source": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c36c3d47-cd19-4ea4-970a-489e0beaafa8", "source": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.31092436974789917, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "55bd7ad8-0914-4a98-a430-75e7f46fe4f5", "source": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ebe88c28-50d1-4439-9c7d-8704e85ea1a3", "source": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a8baec1a-177e-471e-8c9b-a115c755c442", "source": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1f37f05f-2d49-4b63-96af-0083bdb60b5f", "source": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "664cbe44-4150-4164-a8b6-bbc4f4b05fe4", "source": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "abff3ae3-825a-465a-997a-11a06dc2eedf", "source": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "631a57a2-55f1-450e-ac7a-87259d82f596", "source": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cacd3345-7fec-4b7e-a4dc-7c9f64686abf", "source": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0b227dfa-720a-448b-8630-00e53eca8cbc", "source": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.5, "overlap_size": 60, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1388684d-c1c5-4e72-a718-7689562c7a44", "source": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.8666666666666667, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "386bd4fd-4d07-4cfa-9b8e-780d425e6664", "source": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.26618705035971224, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d1d2bb19-24e4-468f-9e04-c5866c6ee540", "source": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.9833333333333333, "overlap_size": 59, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "366093e3-5c08-4e57-b2a9-7897a9cf30f2", "source": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.2536231884057971, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "abf1d572-dd9c-4a7f-ba2c-fdff0f669beb", "source": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.30434782608695654, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f4dfc997-4dc0-4989-832d-a332ca3811b0", "source": "6b221283-c77c-42da-84e1-a571f4b878ff", "target": "9addc916-184e-474a-b9ed-6a77433bcfb5", "similarity_coefficient": 0.718213058419244, "overlap_size": 418, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "51edb5f4-27c7-478f-b462-e6c0833e712a", "source": "1520902d-bab4-4f2a-8b21-1600ee8de4e3", "target": "7110025e-838c-4eb3-a3b4-e50296f8d1d6", "similarity_coefficient": 0.38250428816466553, "overlap_size": 223, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a9b72a4a-0199-4e7e-9605-f5dd7e0dad5a", "source": "9cb17d00-b403-4965-949e-03ef64b0c9a3", "target": "1a39797c-1df7-4aec-8ab0-ce066a56e9ec", "similarity_coefficient": 0.9192982456140351, "overlap_size": 262, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "48f664bd-9560-474d-862f-05c2ab1cd9b5", "source": "9cb17d00-b403-4965-949e-03ef64b0c9a3", "target": "70cf6d48-a46e-4604-ad85-12eceacf95b4", "similarity_coefficient": 0.45614035087719296, "overlap_size": 130, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "193ccf75-1a14-4a0f-a5f5-5a312c6eded8", "source": "9cb17d00-b403-4965-949e-03ef64b0c9a3", "target": "bf3c5db6-d54a-4e27-a6b0-be788ae9b904", "similarity_coefficient": 0.315668202764977, "overlap_size": 137, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5f658e47-832e-4f02-8fee-7936d9752234", "source": "9cb17d00-b403-4965-949e-03ef64b0c9a3", "target": "c59b9ba0-0b63-4930-b1cb-3e784ac046af", "similarity_coefficient": 0.3426724137931034, "overlap_size": 159, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6f8b7b92-d654-418b-9527-b9533b075028", "source": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f11a523e-f017-4872-afcf-e1747c4c05c1", "source": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a3ec5b01-d3c2-441f-b9d4-75f170baded6", "source": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9798fcef-cfb2-49ec-a41d-87972338657a", "source": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f8981779-bfa7-406c-91c3-5c0fdf087d66", "source": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "863c2997-d39a-411e-88d7-e9434e950a21", "source": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4068748b-ff4e-45ae-97c1-4c37baf98f06", "source": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2c44c068-5dc4-45b5-a908-af150be2c83d", "source": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "95d8aaea-c4a8-46ba-91bf-4e21ecf8fecc", "source": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "target": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3584a666-6e40-4ca1-94c5-fb975d7467fb", "source": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6f69ccc4-a146-4b48-96b0-d41d2f512ff1", "source": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b62b27f0-b9f1-402b-a93f-7e17fd311dbf", "source": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9746b354-569f-40ce-9454-2d3f97016b97", "source": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a0186942-00e1-4d94-9cc3-69c09957e7d2", "source": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3e633f05-086c-455a-8ed3-7adde01fe59b", "source": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0326611c-a314-4c15-a886-d8b1a1863265", "source": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "516b6183-e4c6-4b3c-acc7-cef6e8e86f48", "source": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.6554621848739496, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3f0de708-340b-468b-9dd3-10de8cae4670", "source": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aaf067bd-e0d8-43e1-a4db-3d421e2ff866", "source": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c32c44f0-86ef-47fb-9707-772344787483", "source": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b3c469e0-6343-4e59-9199-704c3933ea7c", "source": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1e468855-3199-414e-8ceb-43eb2648b79d", "source": "ed852b58-9ecc-4c4e-aa04-d50a951c9801", "target": "e28bc43f-7116-4972-bf76-e15d1b1cebd5", "similarity_coefficient": 0.3956043956043956, "overlap_size": 36, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bd039fdc-0a08-414c-bc30-62d5208d5145", "source": "ed852b58-9ecc-4c4e-aa04-d50a951c9801", "target": "a450000b-f013-47c9-a2c2-1c6c86d9edec", "similarity_coefficient": 0.4722222222222222, "overlap_size": 17, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1008fcd1-2265-4482-8212-4b6f2b6955e3", "source": "ed852b58-9ecc-4c4e-aa04-d50a951c9801", "target": "62d1a2a4-a8b0-4330-9997-0e0c05099ea3", "similarity_coefficient": 0.6111111111111112, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "58291de7-bb70-4c9a-b46e-a123a833621d", "source": "3c8ea93e-6ad3-4e3a-8a6a-b3e0167e1c69", "target": "884b9c04-6683-4d3e-90f3-b0bd69f8a649", "similarity_coefficient": 0.7665441176470589, "overlap_size": 417, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "482218e1-8c49-44a7-a89c-3b27f3098e3d", "source": "3c8ea93e-6ad3-4e3a-8a6a-b3e0167e1c69", "target": "e44305cc-a5b7-4cc3-9422-f3a68964ef17", "similarity_coefficient": 0.83640081799591, "overlap_size": 409, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "65baba8d-71c3-4c45-85e3-34c65356eb07", "source": "3c8ea93e-6ad3-4e3a-8a6a-b3e0167e1c69", "target": "cc9f38d2-0dd3-459b-b55f-44e01fcf9dc9", "similarity_coefficient": 0.6223880597014926, "overlap_size": 417, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0a1cbd48-937c-4955-9faf-f465730a7e19", "source": "3c8ea93e-6ad3-4e3a-8a6a-b3e0167e1c69", "target": "9f2e5314-9e79-4fa2-8159-07d8cc47d89f", "similarity_coefficient": 0.9467592592592593, "overlap_size": 409, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1311d1af-c646-4aaa-8386-78bae6394213", "source": "e0400955-65ba-4451-b139-42c19937c411", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.2857142857142857, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4075221d-7aa5-4af0-9447-0e996ceb7a2e", "source": "e0400955-65ba-4451-b139-42c19937c411", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.3111111111111111, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eb7224f5-e724-41c8-add3-bebe490b7007", "source": "e0400955-65ba-4451-b139-42c19937c411", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.2692307692307692, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "679ea4ad-264e-4030-96c0-b4ab87b427c5", "source": "e0400955-65ba-4451-b139-42c19937c411", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.3088235294117647, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a4ab7e92-948d-48ac-a400-56034270a4a5", "source": "e0400955-65ba-4451-b139-42c19937c411", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.25766871165644173, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b1cf14cd-a279-4b28-9a60-7b467d6c42d7", "source": "e0400955-65ba-4451-b139-42c19937c411", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.28187919463087246, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a1e3fe7f-ceb7-4ab2-be89-48e808e2956e", "source": "e0400955-65ba-4451-b139-42c19937c411", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.2727272727272727, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "949ed0ba-223c-4108-9c54-d4065f29de06", "source": "e0400955-65ba-4451-b139-42c19937c411", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.3111111111111111, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5c30a941-aaac-43f9-8da1-bb169c17ab36", "source": "e0400955-65ba-4451-b139-42c19937c411", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.2937062937062937, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "87535375-9068-4291-b8fd-e95c2a4af768", "source": "e0400955-65ba-4451-b139-42c19937c411", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.3088235294117647, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7ed45748-2703-4e4d-b303-2c7a07a45364", "source": "e0400955-65ba-4451-b139-42c19937c411", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.2937062937062937, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6c9fcb62-5d41-4f47-a7fc-2f2f8bfce417", "source": "e0400955-65ba-4451-b139-42c19937c411", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.25609756097560976, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c48f33e6-3c5c-4ca2-9646-a2333b63c30d", "source": "e0400955-65ba-4451-b139-42c19937c411", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.552, "overlap_size": 69, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "931772bf-2150-4e65-92ac-d5cb0d35f041", "source": "e0400955-65ba-4451-b139-42c19937c411", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.31386861313868614, "overlap_size": 43, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "72f12df8-1a79-4846-bded-b916602d12ab", "source": "e0400955-65ba-4451-b139-42c19937c411", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.25, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fc8586bd-b22b-45e1-9404-0ccce8aa5b3a", "source": "e0400955-65ba-4451-b139-42c19937c411", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.3115942028985507, "overlap_size": 43, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d78125fa-4db0-491e-bbc9-989a0db5c655", "source": "e0400955-65ba-4451-b139-42c19937c411", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.2857142857142857, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ae10a388-9f3f-49fc-80b5-d811129979c7", "source": "e0400955-65ba-4451-b139-42c19937c411", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.3111111111111111, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dc864b5d-72bc-404f-b566-6e09e1fa2279", "source": "e0400955-65ba-4451-b139-42c19937c411", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.27631578947368424, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7d7d4e2a-6335-4c61-959d-7c3e10ceba24", "source": "e0400955-65ba-4451-b139-42c19937c411", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.3157894736842105, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ec147f62-cda8-4677-bde2-36f0f96d4813", "source": "e0400955-65ba-4451-b139-42c19937c411", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.2937062937062937, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "186ba6a8-8c8b-4d75-a630-9cc53b636b48", "source": "26fdcb67-674e-4f51-8950-f5ca307f91c6", "target": "b1207c33-cad5-4151-bb97-bec83ecb7ba0", "similarity_coefficient": 0.3685800604229607, "overlap_size": 122, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6812e397-cd58-4872-871b-d8449df0ddb4", "source": "144b7933-86c1-43a2-9769-7e1736c62125", "target": "6bed8f20-05d5-41c1-a584-804d0df5a3a0", "similarity_coefficient": 0.8936170212765957, "overlap_size": 168, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8ce40c13-6c9a-4c57-9751-ae5c88c20fc4", "source": "144b7933-86c1-43a2-9769-7e1736c62125", "target": "0270ca63-6518-40e4-a878-0eac4795f5b1", "similarity_coefficient": 0.4221105527638191, "overlap_size": 168, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6513646d-2d39-49ea-a9bc-5d06cdcd69e3", "source": "144b7933-86c1-43a2-9769-7e1736c62125", "target": "a77d2ae1-e81f-46a0-810c-038611327b6b", "similarity_coefficient": 0.8829787234042553, "overlap_size": 166, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2748b1fd-ad89-4408-94e7-9347fccd1b65", "source": "e6bb490e-f542-4313-ba97-b4a675132dc9", "target": "461f3447-3b67-49c7-a062-dbccf20a8c20", "similarity_coefficient": 0.31666666666666665, "overlap_size": 38, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "18850ec0-5287-49a1-a66a-d5e6c3378f7d", "source": "e6bb490e-f542-4313-ba97-b4a675132dc9", "target": "0ab74ab8-46f6-40b9-84a3-f901312bfdd1", "similarity_coefficient": 0.2751677852348993, "overlap_size": 41, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c709ff49-b6b9-4117-b524-b1fdc6126c39", "source": "e6bb490e-f542-4313-ba97-b4a675132dc9", "target": "f43c9ccd-e7e0-4f61-add5-23a61fcdc9ce", "similarity_coefficient": 0.3161512027491409, "overlap_size": 92, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "73fae6f4-fb32-4efe-aed7-1b9ae8fcd77b", "source": "e6bb490e-f542-4313-ba97-b4a675132dc9", "target": "ab7810f0-02db-4b8b-8f86-59cea7883939", "similarity_coefficient": 0.2774869109947644, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eb9d834c-881f-4ee1-bf8c-ad84a4dc6537", "source": "e6bb490e-f542-4313-ba97-b4a675132dc9", "target": "1464dde0-7b27-424c-9e99-43dc975d4ea7", "similarity_coefficient": 0.45595854922279794, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6f0a3276-d69f-419d-a97e-2e0d2dd885e0", "source": "e6bb490e-f542-4313-ba97-b4a675132dc9", "target": "67655508-8724-4bec-ae04-0a0ccc497030", "similarity_coefficient": 0.43537414965986393, "overlap_size": 64, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ab8885eb-7666-4d49-bd42-63b464d3ef8f", "source": "e6bb490e-f542-4313-ba97-b4a675132dc9", "target": "22c84cad-f57f-4718-9687-42041195fe68", "similarity_coefficient": 0.45180722891566266, "overlap_size": 75, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b5305443-ba12-4fd8-8dc7-201993761374", "source": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.8813559322033898, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "88a16c07-9eb3-42c4-b4a2-e3648a3adeed", "source": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ce093b51-06fc-4e70-bd72-8385180a48f8", "source": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "73d17fb1-2a50-4323-877c-8e626053f923", "source": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.49166666666666664, "overlap_size": 59, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b014763b-5484-4e14-a87b-1751a032ff4d", "source": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "72e42853-7a61-4853-9394-d499acd6de0f", "source": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e5517cf6-f93d-4883-9ec4-70f05e78ed15", "source": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f1ccb1a9-e3dd-4573-aba3-f32d049015b0", "source": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "target": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "similarity_coefficient": 0.9508196721311475, "overlap_size": 58, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1589625b-25a6-486a-907b-06a366d9845e", "source": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.9666666666666667, "overlap_size": 58, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0379db32-7e5a-450a-aa53-9b443ee962e9", "source": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.2589928057553957, "overlap_size": 36, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f1a4a907-3c70-42fe-8422-810be943d443", "source": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.30701754385964913, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "84f5bf6d-0053-4404-a6cc-32c2336ade4f", "source": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.25547445255474455, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1f0d98d4-3907-4005-b16c-2e737a84e15e", "source": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.3025210084033613, "overlap_size": 36, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "35ba48e7-97da-4935-b0b0-c76ea26f309d", "source": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d8b68096-451f-4e9c-aa78-3caf72c9d440", "source": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0d46d123-0731-4811-b734-05081e181696", "source": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1d25409c-55d4-45e7-9184-79ed2cf2d5cd", "source": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a3ca3ed4-c8b5-4c4c-9cb1-fb3e6a033f41", "source": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ff11fb2e-f8fe-4f8d-8225-5c9864ade9fa", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.35384615384615387, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "56805f0f-1821-4418-9cb9-99f6fd61a328", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.45544554455445546, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4641eba6-85de-4fca-bdad-c1acc71e5b11", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.5287356321839081, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "95d53f44-ae8e-43f4-b932-e4043cb86040", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.4563106796116505, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "afaf92c0-8cce-42ed-acd9-918e79736e05", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.4, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7f76eab6-83c6-4ad8-81ac-c2e7d942b6fb", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.4, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8ba69735-1fbd-4c2c-8e3c-d5db917156c9", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.35294117647058826, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c06138e2-2cf2-46f9-a09c-148e63f9d400", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "72fd4726-0ed9-457a-aee6-cfd174a5b90b", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.3709677419354839, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "43347961-927b-41b3-8ce6-a67bc712749c", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f0853857-4c1b-4e35-a725-9bb2c274f557", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.2823529411764706, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8b54561d-61e6-49be-b9f9-d02bd46e5d74", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.2620320855614973, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "704efecd-54a3-46ca-b421-d65f8350b545", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.5287356321839081, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "79099eb4-3290-4937-971e-9a0f99e6ef02", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.3037974683544304, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c4e30018-16e8-4da7-a34b-771305d73ddb", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.27624309392265195, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1fc626fa-6572-40a1-b2ce-aa83c62e6821", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.46464646464646464, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a1b7abda-1254-44a0-90c2-5a436a95fe5c", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.5411764705882353, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2035b3b9-3c5c-4806-8a5a-d8827c6b14c6", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.4842105263157895, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "125c609e-8653-4402-9831-ca42fd27ff24", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.2554347826086957, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cc5b03e2-fdfc-4793-a9e6-0ba9d4a892c6", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.2916666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0251db6b-78b1-4dcb-a936-580a12677d4c", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.363013698630137, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f818406b-b8ec-43e8-9da7-12628c54c108", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.36363636363636365, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8459308f-d20e-4937-ab39-595452615065", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.5280898876404494, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6c4d03bd-8252-4081-ad86-843b3f0854aa", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.40336134453781514, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b2a2cf50-257b-4929-8800-c760d58e7a79", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.5227272727272727, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "473abb08-768d-442b-a3b9-abd25585a107", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.3006134969325153, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4fc48934-f611-40cb-a496-ed3ea1395222", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.31724137931034485, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b2b1b32e-d2cf-4d75-b990-9721edf85bfa", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.25773195876288657, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "673e5cf1-b908-4ce7-ac9d-594a01b2d9bf", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.46464646464646464, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "654db91d-c7a2-4519-836d-91b35f92549b", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.654320987654321, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f9ccd816-2cba-44c0-81d4-810b370793d1", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.5054945054945055, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8b8d28b2-4f53-4184-98ea-cd28c5ee51eb", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.42105263157894735, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "11c7a670-3eea-4002-855c-bcc5857425bf", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.4247787610619469, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ea01ea01-b7d4-446b-a1f8-203d0c1e577b", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "cbfeadab-ca27-40a7-8780-4bec2a9b1964", "similarity_coefficient": 0.40703517587939697, "overlap_size": 81, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cb9c5a93-7f50-4e70-9f21-f5863a33e11b", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.5463917525773195, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6349d90a-2f29-4809-ac81-86230c43f1d5", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.2839506172839506, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "15d12bd1-647c-41ec-beed-48d603349bb4", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.35526315789473684, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6c6edb8c-6194-476b-8ac9-c49887f71fce", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.5161290322580645, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "579f9b43-33b3-4338-a64e-3b4d9638f8ae", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.5161290322580645, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fb9b8088-45a7-47b5-85c3-c2be41be14fe", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e182f20c-a480-4f0b-a796-a49f3e7c6d09", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.42592592592592593, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eb37e89e-d7e3-4969-917c-a49546d2425f", "source": "b0347db5-2777-46d3-97cc-0a03e208977f", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.5402298850574713, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "28e18afa-fcb3-4340-b974-6797623cbb27", "source": "b06c44e2-b4c4-41c8-89aa-75e9f63e4d5b", "target": "1bdb2d2d-fe7b-4e46-b699-76d58b12344d", "similarity_coefficient": 0.9230769230769231, "overlap_size": 36, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3295db0e-c83c-40db-920a-2791aedd3e65", "source": "b06c44e2-b4c4-41c8-89aa-75e9f63e4d5b", "target": "ff8df9a9-f99a-4719-a96a-d64e1b3fc6f8", "similarity_coefficient": 1, "overlap_size": 36, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "65ef8c81-93dd-46a3-b353-fca2b74d0c9c", "source": "b06c44e2-b4c4-41c8-89aa-75e9f63e4d5b", "target": "f9b39331-d306-4809-b0c4-ce6e8a9a7e0d", "similarity_coefficient": 0.85, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5bab1cb0-4ba9-4444-964e-4b9fa7fe3c6e", "source": "b06c44e2-b4c4-41c8-89aa-75e9f63e4d5b", "target": "14f17c28-8038-49f6-a4ab-311c487adfa6", "similarity_coefficient": 0.9473684210526315, "overlap_size": 36, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f0a17490-ca76-4527-a98a-c530385e0530", "source": "b06c44e2-b4c4-41c8-89aa-75e9f63e4d5b", "target": "69c69d97-3401-431d-87ee-22f72bd12c57", "similarity_coefficient": 0.9444444444444444, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9055b836-67db-4fce-a7d2-988ff69044d1", "source": "14f17c28-8038-49f6-a4ab-311c487adfa6", "target": "f9b39331-d306-4809-b0c4-ce6e8a9a7e0d", "similarity_coefficient": 0.8095238095238095, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4b67d5c4-32fd-4469-8228-2731dc68843e", "source": "14f17c28-8038-49f6-a4ab-311c487adfa6", "target": "ff8df9a9-f99a-4719-a96a-d64e1b3fc6f8", "similarity_coefficient": 0.9473684210526315, "overlap_size": 36, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aa6a05d4-055f-4555-943a-b77a69b2b73a", "source": "14f17c28-8038-49f6-a4ab-311c487adfa6", "target": "1bdb2d2d-fe7b-4e46-b699-76d58b12344d", "similarity_coefficient": 0.9743589743589743, "overlap_size": 38, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8f310c27-9e94-46cd-a6a5-555bb4163ff8", "source": "14f17c28-8038-49f6-a4ab-311c487adfa6", "target": "69c69d97-3401-431d-87ee-22f72bd12c57", "similarity_coefficient": 0.8947368421052632, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "82738f5e-dcbe-4b57-be1d-3b2b77b1914c", "source": "65022cea-7483-4689-8ce5-ee987795bedc", "target": "9addc916-184e-474a-b9ed-6a77433bcfb5", "similarity_coefficient": 0.8635014836795252, "overlap_size": 582, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d630dd1f-84d2-4aa4-bb48-bb94fab830d1", "source": "65022cea-7483-4689-8ce5-ee987795bedc", "target": "6b221283-c77c-42da-84e1-a571f4b878ff", "similarity_coefficient": 0.6201780415430267, "overlap_size": 418, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "85c57587-e6af-4352-881e-f660a49788aa", "source": "b81d8d56-c41a-4508-a1ca-9590780583eb", "target": "2c6012fd-f497-423b-9ab1-8cfc5154f253", "similarity_coefficient": 0.44660194174757284, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "75ad3dc7-f029-49aa-ab3b-d78d6a43cb7d", "source": "b81d8d56-c41a-4508-a1ca-9590780583eb", "target": "7f22376c-1798-4ebf-811f-e11344296c4f", "similarity_coefficient": 0.8679245283018868, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b78d9f5a-4574-4b1e-905f-8ac2c564e984", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.3111111111111111, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a5426e2f-e457-4724-9552-1c39524aa050", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.2903225806451613, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ff611afe-ee9a-46fe-96bb-c3985a6050a1", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.26627218934911245, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "91a5f35e-1d46-417e-a35a-1f91cfbf7142", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.6923076923076923, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6a7b6f3c-a62e-48bf-8fc0-4a000428ba51", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.6081081081081081, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "069751d7-aa48-49a4-9bed-0b4a0eabc49c", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.6338028169014085, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5b9bf42b-474b-4a9e-a6d6-f58e7993c242", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.8181818181818182, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3f2af167-442d-4349-b8ec-d4855119ccc4", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.2903225806451613, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "69731248-985e-42cf-a04c-160da13aaf27", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.2556818181818182, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eda7ee21-9786-48ec-9455-15f3c6a03c67", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.28125, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8523b8c8-58ed-4549-b2ba-7527cf68e3b9", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.7894736842105263, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "876bfe31-0063-48d6-b513-bd5b0f00b216", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.34615384615384615, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "381a6db5-0560-4e79-9270-c35e99f4f27a", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.45, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3ccd232e-b666-4ea7-a990-d7ed5bff9a7d", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.5769230769230769, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f6e26797-8667-4799-b6b3-f6a2a41346a8", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.7, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "85ca5218-05a7-4478-82db-f9c7370d01e3", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.4787234042553192, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a83da53e-3331-4805-b6c0-86b0f5c376d9", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.4166666666666667, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2df099d5-c4c7-458e-8316-c5edabb9e8d7", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.5294117647058824, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f9f3868b-48a7-48c2-b313-e297852bbe89", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.45161290322580644, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eb397ddb-954f-44a6-a5dd-d2537392a5b6", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5232558139534884, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8b406bab-fe31-43a1-b87f-b040d8e6c980", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.4891304347826087, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5fe5c74e-e469-48d8-bfd4-4fa3e504827a", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.36585365853658536, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eabd51a4-c046-46bc-a9a8-c0b14cf0353b", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.4326923076923077, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ad8a8f58-7a38-4f53-876a-4e206344f466", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.26785714285714285, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "30d375c7-6227-47ec-a3d4-ba03bf431154", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.5833333333333334, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "caf774d4-e826-4950-a53a-fecf9c807309", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.3157894736842105, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "df3db168-2ced-4c09-b32b-712ce83b5ee3", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.5921052631578947, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "54d2619e-3e04-470b-adf2-d1c6a2ad7fb7", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.3559322033898305, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dff903b2-fe20-447c-b018-9129e91c7ac7", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.6176470588235294, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d15baacd-58a4-4926-89c5-648214b3f9d5", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.7758620689655172, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "78d8ce79-c676-4d5e-a783-4e961dc8e86c", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.4945054945054945, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ce6bad2c-3b14-46f2-a62f-d8178b34587f", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.6666666666666666, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ea0bfcdd-4b5e-4514-b028-ee232b7d1c7b", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.3191489361702128, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6e73a3b2-5b2a-4917-8519-4d1aa51278b5", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.25, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3d20e8fa-dae4-41fa-ad02-c33639eb0155", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.7894736842105263, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "33c3cf11-03ad-4862-8b88-3604770f91b3", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.7758620689655172, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "92f2c239-521c-4abb-a76d-5a5e5736d4e8", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.26011560693641617, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d6537c67-7b82-4879-90e8-c51333f892f4", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.7377049180327869, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d6ab7faf-f931-47d2-be99-6aea57241be2", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.6521739130434783, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2aba0920-ad94-4974-8194-82b871ab8385", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.6923076923076923, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d86d49fd-4b53-4914-b1d6-bc7830853602", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.5454545454545454, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f8222d1d-bed2-4644-9317-77a3f4540f25", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.6885245901639344, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "db0d9a0d-f927-4eb1-a730-df9354cc7b7e", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.4891304347826087, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c941f6a6-7705-41bd-96a0-be8b80ad1128", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.302158273381295, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "50a6ab76-7821-4a0c-9469-870d4ea2012b", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.47191011235955055, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "49d300f4-d18b-417c-bb51-fe151e1f1f0f", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.29333333333333333, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d5f208de-d6cf-4b09-81c3-956d6fddced1", "source": "057f60df-f570-4015-a108-537ddd9c9013", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.39285714285714285, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d70400c8-2aa0-42bc-a08a-428224b4fc3e", "source": "8a8f1e9c-bcae-4260-96fb-0005785f76ff", "target": "581ea671-bfdc-4c0a-b5e7-c11440d05a47", "similarity_coefficient": 0.6714285714285714, "overlap_size": 94, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9b40786c-afbf-462f-9cf3-63c6bcf867dc", "source": "f45e0bc4-6f9f-417b-b48f-de0017b4ee5a", "target": "4972b393-f94e-4331-9cd4-206ae4786f51", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7cbe3dec-6cf2-467c-ad01-00a53536c4c6", "source": "f45e0bc4-6f9f-417b-b48f-de0017b4ee5a", "target": "218e964f-2842-43f5-825a-917591457798", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f8a32498-ae89-4258-b366-07fb281ada0c", "source": "f45e0bc4-6f9f-417b-b48f-de0017b4ee5a", "target": "e6bdd19b-66e3-45e2-b2b1-92f658ccc62b", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "032e6f14-fbb1-4dca-9ce2-e9ebd154fa1b", "source": "f45e0bc4-6f9f-417b-b48f-de0017b4ee5a", "target": "e97d3933-d924-4c41-8e4d-ae17bd34263c", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c283c0af-5382-477b-b082-4e50b434a2ae", "source": "f45e0bc4-6f9f-417b-b48f-de0017b4ee5a", "target": "beb79ccf-a196-43d0-86ff-773092ba3490", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ab2e62fc-234c-4dc7-86cd-608183e75ef7", "source": "f45e0bc4-6f9f-417b-b48f-de0017b4ee5a", "target": "d078c60c-b5d5-42cd-a5d7-a780f23a8090", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "456266c2-1497-4527-9721-26b902563725", "source": "f45e0bc4-6f9f-417b-b48f-de0017b4ee5a", "target": "3e8dd08d-a111-414e-905a-faeed681e3f5", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c363cf4f-5849-46a3-b2ac-fbb8601ef4e4", "source": "f45e0bc4-6f9f-417b-b48f-de0017b4ee5a", "target": "5db5ed69-b4e2-485d-b78c-1b47eb326935", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b17bf4d4-b56f-4ac6-9a49-507dfd3f6916", "source": "5a8deea3-cc0a-4701-a9fa-f9e7a8d7caa5", "target": "144b7933-86c1-43a2-9769-7e1736c62125", "similarity_coefficient": 0.32978723404255317, "overlap_size": 62, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5f956a6e-b5d6-4e14-b3e3-4617a707a19d", "source": "5a8deea3-cc0a-4701-a9fa-f9e7a8d7caa5", "target": "6bed8f20-05d5-41c1-a584-804d0df5a3a0", "similarity_coefficient": 0.3218390804597701, "overlap_size": 56, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8e91e93d-2ab7-4375-90a0-d14c1efad09d", "source": "5a8deea3-cc0a-4701-a9fa-f9e7a8d7caa5", "target": "a77d2ae1-e81f-46a0-810c-038611327b6b", "similarity_coefficient": 0.3179190751445087, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "05940649-81d9-4d7a-8873-2c9c8e5c2520", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.3111111111111111, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "44985c0a-9fe5-464d-ab15-a4573fdfb7c3", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d4e4186b-ee39-4ef9-91c1-8d4afba9fdd7", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.6571428571428571, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "636db4d9-ba95-422f-96ff-b0d569fcba87", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.75, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e71f8539-fa7c-45bc-ab04-80d5aa385b8e", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.31901840490797545, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2c111f0b-03b5-4bd7-8fcc-e04cec6201ee", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.550561797752809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "696a251b-4d2e-4ffa-a700-152f7b9c47d5", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.875, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4fba9414-1117-4b6c-93f5-a8bf8a081ad6", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.8909090909090909, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f01cf6ff-6380-45e8-9b9f-a78dd39e853a", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.39655172413793105, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "095844ca-d02b-4560-84df-46bd69097ec7", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.2752808988764045, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6e794108-f700-432b-b8e3-47e47bbe4285", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.36231884057971014, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "309ae2be-69df-400b-952b-9048e1c4ae9b", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.875, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9a83e1c2-08e0-412a-8759-a45ff33710c3", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.7796610169491526, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1e4d4fd2-3c63-484d-8076-e74ef46d8a7b", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ba0ae03f-7280-46a3-8921-39ceee4b4e17", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8bcd7467-2d95-4558-be61-e488bb6728a8", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.7894736842105263, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9d88c92c-b38c-4f6b-8522-9861af72b89e", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.5316455696202531, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bd7d2e68-4629-4b8f-8ccb-f6bf1fefa043", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.8305084745762712, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "81b5404a-7a3e-4ea8-97a6-f066aa08f8a3", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "539c419a-c26b-442f-b988-86b1e7f461ba", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.35555555555555557, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c71d1415-d276-4ddf-bf61-bc35bd1a2302", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.32, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3c717de2-1293-424a-8b5b-2764226ae741", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.7540983606557377, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "627a7f06-a2b9-4d80-bc42-9c226dd70461", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.5287356321839081, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a3559b11-f560-4597-8b1f-e63c0928955d", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.42857142857142855, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1e71a866-82fd-4c33-bbb9-698ec42cab01", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.3828125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9f6bbcce-9d24-42ab-b46c-81549ce59339", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.3458646616541353, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "81b8ef2c-cf06-48e9-9274-f6e3b607e9c2", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.3202614379084967, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "475a6458-2294-4008-ab9c-5058e08d4e31", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.9245283018867925, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "de086e59-75d6-4387-b5bc-964a76c3fa9b", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.3202614379084967, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d51bc411-bd3b-4bd2-b5b2-68b0fd5a6f80", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cc85b5e0-22f6-4bbb-8eb0-dc136f24fcbd", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.310126582278481, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f8cf104b-01d7-41ea-9793-3d8c850590cc", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.8909090909090909, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "914cc4e3-2a3e-454c-9e96-f8448ca4d9a9", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b0da08b5-df9c-4d80-a6d9-c7b96f366d46", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.5, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7e30ffe7-6508-4ab5-be15-8ecd2ea1208d", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0fbff087-ddc9-425a-a093-43626f4aaad7", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.2934131736526946, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b4416cd1-8e89-4f13-9e75-6839c5d28558", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.28160919540229884, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8d6c45a6-ba7a-4f7d-b28a-a6b759beca3f", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eac4166f-e3cd-4799-878d-46710485afd6", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.28654970760233917, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "86fbdadb-4587-4cad-9d33-0b3b2d7bf90e", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.532608695652174, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f25f4b62-c333-44ce-8fd9-42960e997459", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cde210b6-0ec8-4e07-ad02-24e73ba36391", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.8245614035087719, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e0894b90-9ca7-4a48-a6c3-6b82a8a80929", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8ab8a98c-38b6-4c2a-9883-bec4c2ba0588", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "609b9f83-7c3d-451c-bc3a-5705b920deac", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "20bc00e4-40c6-4e0b-a07f-a13d0662b702", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.4406779661016949, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cdd059fe-c874-4187-8b68-9f60601feaf7", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.5393258426966292, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d77b4f5c-f131-40a1-a408-695333660d6d", "source": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "62abed53-5841-46fa-be64-5f427f6c0fdd", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.26666666666666666, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "adf96c78-d83d-4e8b-90b0-6d42b08b11d6", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.3333333333333333, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "10954560-7a1f-4732-a574-f9c350497981", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.29444444444444445, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "051a2484-d705-4545-a0e7-2de3ad3e9657", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.2804878048780488, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ef48a2b6-9bc8-4d4a-a0df-a44e749ef0ad", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.5212765957446809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f6281793-2dbc-4971-9da8-141450f7e5be", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.266304347826087, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f25608ed-1c1b-4f23-96fa-510a49498354", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "99c38dc0-a18a-4401-b8b6-1b77bb4c54cc", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.27956989247311825, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6bbbb99c-4580-42be-8b3f-7c2eac46ba07", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "93c1175a-8c1c-4068-9cc9-1da8225cbbda", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "31cd7e57-2d66-4f6d-9ce9-b0a4e9e528fb", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bcfb6de8-d1de-44c2-a649-17b4a77514e7", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d9550aeb-6433-4962-8592-8fb9227e4de6", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.5113636363636364, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6d3481eb-63dd-4eb3-b45b-def7011d8d1e", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.4074074074074074, "overlap_size": 44, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "850df802-fc79-449d-a080-d2b5388df2be", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.5714285714285714, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e9c328c5-5aea-4d96-bc82-88818d4246f5", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.5, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6ab6f9d4-edd2-48e7-bec7-63d89c54bff6", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c3df32dc-5610-41ce-a1d2-4892800e64ad", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1538b775-3ef2-44a6-bf3a-04bdc9006ee1", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.32919254658385094, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0e3738e4-193f-4180-8337-b78fbe37d40a", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4d18b747-6da2-4146-aec0-46a39b10f34c", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.4406779661016949, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4211a123-5b45-4ee7-9ada-0a2c294eb58c", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.5, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d1c1288d-0e0d-42ca-8b8d-f7a476f26330", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.27586206896551724, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "81adae27-d0bc-4be6-98dd-5af26d09d98a", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.5098039215686274, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e4ab0a2c-7f93-4674-8366-534f749f2669", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.2919254658385093, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b4e81ff3-5a3f-4d04-8d9c-ab98117119b5", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.27461139896373055, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "148c0a73-e9b9-4671-95eb-2e425be56186", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.5052631578947369, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ca77df2d-29fc-4d7d-bae7-8762da8969e5", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.4083333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4a6e3b85-4bdd-4509-8367-697749268884", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "88425484-c54c-4d54-8aa4-0cfe0e8333b6", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.45544554455445546, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "10ebf31d-aa38-4f31-b39f-541a26cd468e", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.3129251700680272, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a7ba1a73-c6d2-4e3b-8860-56cba68a3294", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fb95e3c8-6e6b-416e-a374-eb27e940f112", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.3353658536585366, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3ec6a3cd-48e3-4ff7-b369-e5f45cf3e904", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.5813953488372093, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e9c563f8-f8f0-4279-84ae-b19e5cb85068", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.3005181347150259, "overlap_size": 58, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "54ab38b1-f72e-409f-94f0-c41007bb370d", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.3880597014925373, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2e80172d-d68b-4911-818c-aef59577edc3", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.5882352941176471, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9af10bdb-3341-4214-9a3f-31c458fda41e", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.3983739837398374, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ff453aa0-69fd-4149-8d59-f17f5911ac38", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.4406779661016949, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b4b08ccf-fe1f-45bc-8c0f-7384944b27cc", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.6071428571428571, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d74f4ca4-11c4-48ff-a04d-b0e7c011bb8d", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.49, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5a01b3c6-7a82-4316-b113-2a8bfa7bc7e8", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.3581081081081081, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ee2d8b4b-fda6-4072-b53a-a95cb4c92551", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.4, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e05e0d7d-ed09-4d91-8e44-5cf6b58f0ef6", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.4, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "28951611-bacf-480d-b2c6-268b0bf895d5", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.4642857142857143, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c5fe3205-5417-466b-912b-df811e9ebee9", "source": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.46846846846846846, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9e90f12b-d3f3-438c-ae5e-08ce55da6bd8", "source": "5915b056-e646-42a3-80e7-2deef8a98dec", "target": "1a39797c-1df7-4aec-8ab0-ce066a56e9ec", "similarity_coefficient": 0.46045694200351495, "overlap_size": 262, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "29a578c6-e96b-4577-a644-8e95ff175011", "source": "5915b056-e646-42a3-80e7-2deef8a98dec", "target": "b418104c-b2c5-4aac-b268-9ee80bb42582", "similarity_coefficient": 0.39015817223198596, "overlap_size": 222, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "72d42e91-d4bc-4e52-9e6d-29a45ca8594a", "source": "5915b056-e646-42a3-80e7-2deef8a98dec", "target": "f43c9ccd-e7e0-4f61-add5-23a61fcdc9ce", "similarity_coefficient": 0.2818590704647676, "overlap_size": 188, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "71102185-4a7c-45e0-b0dc-9a989261a759", "source": "5915b056-e646-42a3-80e7-2deef8a98dec", "target": "c59b9ba0-0b63-4930-b1cb-3e784ac046af", "similarity_coefficient": 0.5940246045694201, "overlap_size": 338, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fe654eac-15f7-4d4c-b92a-14a452b82167", "source": "5915b056-e646-42a3-80e7-2deef8a98dec", "target": "9cb17d00-b403-4965-949e-03ef64b0c9a3", "similarity_coefficient": 0.4724137931034483, "overlap_size": 274, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "584d36b1-080f-4fe2-b1d1-49b718252fc0", "source": "5915b056-e646-42a3-80e7-2deef8a98dec", "target": "bf3c5db6-d54a-4e27-a6b0-be788ae9b904", "similarity_coefficient": 0.5026362038664324, "overlap_size": 286, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6dbcef4f-2b5a-45bf-b664-f5ca01417685", "source": "5915b056-e646-42a3-80e7-2deef8a98dec", "target": "32436d28-1beb-496b-b8c1-c25ffb5d246b", "similarity_coefficient": 0.3847457627118644, "overlap_size": 227, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "96c7c103-a0b8-486c-81b8-5403df3d669a", "source": "f8a5f9ff-fb62-48b4-ad61-1e4f868172cb", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.31063829787234043, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8d5b61d4-c5ea-47da-8120-427efb451412", "source": "f8a5f9ff-fb62-48b4-ad61-1e4f868172cb", "target": "e9595f2e-7b95-4f92-b829-ff02d867fe3d", "similarity_coefficient": 0.3939393939393939, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7a7906b1-3c77-400d-b712-5fbdba1f2fe9", "source": "f8a5f9ff-fb62-48b4-ad61-1e4f868172cb", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.27631578947368424, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ad26340b-ceb0-4bf7-9812-a55f851e5e19", "source": "f8a5f9ff-fb62-48b4-ad61-1e4f868172cb", "target": "b67a97a8-54b7-4306-be3a-d6518f864d8d", "similarity_coefficient": 0.9956140350877193, "overlap_size": 227, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "53af21a4-95c4-4486-b019-b97b7d6cd811", "source": "f8a5f9ff-fb62-48b4-ad61-1e4f868172cb", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.7400881057268722, "overlap_size": 168, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "80e509e6-746b-4d66-afbc-de76c06bead0", "source": "f8a5f9ff-fb62-48b4-ad61-1e4f868172cb", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.30833333333333335, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "786b7810-abdd-41ae-87df-1167153c7310", "source": "f8a5f9ff-fb62-48b4-ad61-1e4f868172cb", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.30833333333333335, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fa993967-3290-4aff-adee-42c2ab27ff7a", "source": "f8a5f9ff-fb62-48b4-ad61-1e4f868172cb", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.2987012987012987, "overlap_size": 69, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "84b0f453-9a93-4100-b71f-932f04d225ea", "source": "f8a5f9ff-fb62-48b4-ad61-1e4f868172cb", "target": "69c4b4b7-c9e4-478e-997c-da4e05c3d7ee", "similarity_coefficient": 0.47337278106508873, "overlap_size": 160, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c32dd348-ccb3-4655-9da1-00a314ae26e6", "source": "989c1208-cca3-4434-a015-67163bcf2567", "target": "3c8ea93e-6ad3-4e3a-8a6a-b3e0167e1c69", "similarity_coefficient": 0.834, "overlap_size": 417, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c7a88c38-3c2c-4a04-b5a6-f8157261370b", "source": "989c1208-cca3-4434-a015-67163bcf2567", "target": "884b9c04-6683-4d3e-90f3-b0bd69f8a649", "similarity_coefficient": 0.6893203883495146, "overlap_size": 426, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1bcb0aa5-ce47-4c90-9e6e-099d14af37e9", "source": "989c1208-cca3-4434-a015-67163bcf2567", "target": "e44305cc-a5b7-4cc3-9422-f3a68964ef17", "similarity_coefficient": 0.8614800759013282, "overlap_size": 454, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fcdff948-7e01-4821-a6f5-e77b187b707e", "source": "989c1208-cca3-4434-a015-67163bcf2567", "target": "cc9f38d2-0dd3-459b-b55f-44e01fcf9dc9", "similarity_coefficient": 0.746268656716418, "overlap_size": 500, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e366179b-7f07-448b-b7be-e695cdfca08d", "source": "989c1208-cca3-4434-a015-67163bcf2567", "target": "9f2e5314-9e79-4fa2-8159-07d8cc47d89f", "similarity_coefficient": 0.7976653696498055, "overlap_size": 410, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "613dc9ea-91eb-4755-96df-d5a173ece7d0", "source": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.25280898876404495, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "66ebc391-3595-412f-8f5f-797712418ba0", "source": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.25742574257425743, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ba92f257-bbe0-49a0-bc84-587698a0ac20", "source": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.2594594594594595, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c0f5232e-4e4c-4232-ab17-70fa2e694c23", "source": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.6124401913875598, "overlap_size": 128, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d0d19524-1a3d-4d8b-988d-5f22dd83ed59", "source": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.2768361581920904, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7f2d8c13-e7ad-40ec-8d27-99824c45855f", "source": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.2722222222222222, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "659cba02-325e-4ada-8a5e-fe75cda4c82f", "source": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.2784090909090909, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "489feccc-d1c2-48c2-88c6-ae742970d888", "source": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.26424870466321243, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2a8c761d-5a8d-4c5e-8329-01976d455784", "source": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.3089887640449438, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "db65cea7-848f-4a62-ae6d-b4f12c552631", "source": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.2696629213483146, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "43dc8a5d-0200-47d3-ac56-24f8e294664d", "source": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.25, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6c490783-4c69-4ab5-a91b-295a6b6aed02", "source": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.25274725274725274, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b4f2ff59-5200-4d47-b6b2-0dee001ae93f", "source": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.25, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6a1da22c-7a03-4e9d-8eee-294bf4a6ff3a", "source": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.26063829787234044, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "efb049af-f35c-46a6-bb45-0c0b23728918", "source": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.3018867924528302, "overlap_size": 64, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e889e12e-3f46-4fa6-9df8-eb8d05ac8070", "source": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.2538860103626943, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "09a2a28b-dca6-4403-a734-2458505b1ccd", "source": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.2784090909090909, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4ccb51f3-96c3-42cb-85df-8b26ef5f0d27", "source": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.266304347826087, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "57db053d-0baf-43f1-9cd9-40a5dae8f995", "source": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.28160919540229884, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f73c1442-c52e-431d-b83e-5cffbda6e5b6", "source": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.28448275862068967, "overlap_size": 66, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "921cf372-f30f-4aa2-9c50-327783cea3f4", "source": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.4624277456647399, "overlap_size": 80, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e4e4da26-3ec9-4b08-8dc4-8f17c5b1443c", "source": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.2549019607843137, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "02c10da0-5b63-4c4e-b685-ed254d3cf61a", "source": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.2578947368421053, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bf0a701d-9f31-4001-93db-a4bef1ee9f24", "source": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.2784090909090909, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "16315501-71bd-4120-9a09-cbe69cfab661", "source": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.2784090909090909, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "37cee276-07dd-4a38-aada-5d5a5b4ea5e4", "source": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.2768361581920904, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a507f48f-a8a7-4a24-a2a1-7e4df68f5893", "source": "89ef528a-6736-4b29-9138-7a11a722353d", "target": "5db5ed69-b4e2-485d-b78c-1b47eb326935", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e1d5b41a-c3c3-4a3f-8b9e-83fff06f7bff", "source": "89ef528a-6736-4b29-9138-7a11a722353d", "target": "beb79ccf-a196-43d0-86ff-773092ba3490", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9b5f6af3-832d-4410-8fa7-9bdc7e336723", "source": "89ef528a-6736-4b29-9138-7a11a722353d", "target": "218e964f-2842-43f5-825a-917591457798", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b96507bb-f41d-4c18-a68a-963538b683bd", "source": "89ef528a-6736-4b29-9138-7a11a722353d", "target": "3e8dd08d-a111-414e-905a-faeed681e3f5", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fb86c8c5-8b72-4c5c-9746-f0d9bb529fc6", "source": "89ef528a-6736-4b29-9138-7a11a722353d", "target": "d078c60c-b5d5-42cd-a5d7-a780f23a8090", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4ce9aec8-6688-4fea-8077-710118501b59", "source": "89ef528a-6736-4b29-9138-7a11a722353d", "target": "e97d3933-d924-4c41-8e4d-ae17bd34263c", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4ce2711e-ffea-425a-812f-961a220e3a63", "source": "89ef528a-6736-4b29-9138-7a11a722353d", "target": "e6bdd19b-66e3-45e2-b2b1-92f658ccc62b", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5451606e-7b3b-4e71-af21-bd941bf305cb", "source": "89ef528a-6736-4b29-9138-7a11a722353d", "target": "f45e0bc4-6f9f-417b-b48f-de0017b4ee5a", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "44158c06-89b7-4327-a66d-3056f2ab8d7d", "source": "89ef528a-6736-4b29-9138-7a11a722353d", "target": "4972b393-f94e-4331-9cd4-206ae4786f51", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ebd6e1c8-6d5c-4e30-bb31-37a09dad35aa", "source": "4368440a-6df8-4ed8-aaf8-4a419aa9eb42", "target": "3fbb64b3-4512-41e7-8837-bc44bd025067", "similarity_coefficient": 0.33098591549295775, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3a5ab82b-b4fb-4218-94f3-26fb142b2ccf", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.2722222222222222, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ca2a8efd-c083-4b80-acb9-d40ccb3153d0", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.30857142857142855, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "583f01d8-5498-488b-93a8-4733e00b695c", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.28502415458937197, "overlap_size": 59, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "29fb12d0-3663-456e-9841-6443459c8375", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.2692307692307692, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "82428f40-5bbd-42cc-96b5-a73a13a8b0e0", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.40540540540540543, "overlap_size": 60, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "464b2c7f-04f1-44e0-81ea-7df41c66c4d5", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.27710843373493976, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c4333ca8-00f6-4838-a238-3e80cbe416e4", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.5628140703517588, "overlap_size": 112, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "612c5dca-01cd-4911-9b25-d93d20f09ac1", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.3163265306122449, "overlap_size": 62, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cf781f21-cd69-467b-b0ae-129da7931e5c", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.2967741935483871, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "897f51d2-8d5c-4198-b03b-0d51d58bccd8", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.3223684210526316, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e1b00ba6-6564-4fc0-94f7-31b4ce589fa2", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.4407894736842105, "overlap_size": 67, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0cbf2aad-99e1-4e15-be78-1a4c87df87e1", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.3, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bad26ad5-93bb-440d-a5d0-abe1bd96c90d", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.3128491620111732, "overlap_size": 56, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0f78cb7c-a19c-476b-8995-04209e30ae28", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.25133689839572193, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7430a5da-1aa4-43e6-9e94-607d673bc36d", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.8851351351351351, "overlap_size": 131, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2d383dc2-75bc-4560-a4e2-f559c8b3000a", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.2911392405063291, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8cd4d125-5e5b-400e-977f-aa89bee51a7e", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.30128205128205127, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7a72f165-bbed-4db5-82c9-6b2d904c6174", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.2916666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6dda0380-0a15-4aaa-a6c3-d711047b4a89", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.3375, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4e5e5ae3-041f-4b56-95a2-2ce27b8ad9e7", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.30718954248366015, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a64ae8b5-67ea-4ea9-bfa4-25565c0e1daf", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.2774566473988439, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d533315d-c55b-4b47-99b2-f4294a4740bf", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.4030612244897959, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "75404712-96bb-4f52-9f99-4c14b32049e0", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.26063829787234044, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a5ff9b46-695b-4da9-b615-bf08c240815a", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.27710843373493976, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "177ca488-e0a2-4607-bb71-3faaa1d70618", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.3026315789473684, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d8e865de-9e25-4fd6-bbeb-a25f96a4416c", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.3128491620111732, "overlap_size": 56, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d0f7840b-7cdf-46a7-8894-6a2a82cbb4c5", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.3081761006289308, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f6c03dd6-cc7d-4410-90d0-1e1e93d4ca97", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.3185840707964602, "overlap_size": 72, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "36bbef04-d898-459f-89ae-710c7ca40a59", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.26666666666666666, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "94a15cc4-8440-4494-ada9-23462622c587", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.3157894736842105, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "905f9191-4305-41cd-a951-756ae7cde9e1", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.3157894736842105, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "194c22de-bf7d-405a-b43f-ba01a8a8cd0b", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.29775280898876405, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7b6e0047-deff-4fc5-9f6e-87bd09911149", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.2987012987012987, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "244d836a-4209-4616-9fa3-b4e231a48709", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.2967741935483871, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1783dbbe-1b5d-4251-a764-64cd00f9de6e", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.5533333333333333, "overlap_size": 83, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c3959ed5-6fcb-459f-96a8-0fe173c1847e", "source": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.4027777777777778, "overlap_size": 87, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "654d09bb-8703-4fd3-b4bf-51d5c963cb35", "source": "df0cf914-b040-48b9-a651-958f8d369fc3", "target": "b8c06bc3-3367-43b1-8e2d-b6b7ae3498b5", "similarity_coefficient": 0.25263157894736843, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8a3c30b6-8939-4fd3-aa9c-fdab6450aab8", "source": "df0cf914-b040-48b9-a651-958f8d369fc3", "target": "d7008ae4-7699-4f51-975c-49c6a5ff9c69", "similarity_coefficient": 0.3146067415730337, "overlap_size": 28, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a3785479-e4f4-4e5b-99de-36d4335003f3", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.44660194174757284, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "98a111d6-1684-4f3b-8cde-9b01f5748a67", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.5974025974025974, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6400a704-ebde-4ed8-a853-b773cf45a944", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b5b949a4-0d2e-43b5-bb50-0486f87ba7db", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.3006535947712418, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9eb8b8c3-a8e6-44ff-bf0e-8aa61a65b857", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.35766423357664234, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5aa2db79-7bb5-4ec2-8cff-afd241a399e1", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.5478260869565217, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "abfe66c8-22ab-497a-883b-0c10505a2565", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.4152542372881356, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d35d023b-99b0-44f2-828f-13bb49b4668b", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.9130434782608695, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "77aa3fcd-3ad5-4a54-927a-1a805d795e5d", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.4, "overlap_size": 66, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2c9aa7ce-cfec-4877-9cf6-1bacfe1b398a", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.25257731958762886, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f4006fc4-657b-436a-9569-961c11d67918", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.2781456953642384, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "70919c8d-c055-4c94-a85b-f93c38a07409", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.6164383561643836, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "67deff36-a100-482d-9f9c-3407d10835d0", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.3161290322580645, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "52939d1c-a8ec-466f-baef-533b143f1806", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.5609756097560976, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b8e3ca47-579e-461a-85d3-78b2b7c3a249", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.494949494949495, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "90685a51-0cb0-4ee2-9a2f-4183f0b3d4c5", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "034b108f-daca-4cb0-9744-645c262f01a6", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.42038216560509556, "overlap_size": 66, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dc2e2e45-3b94-4bbf-89ac-df652fb2546b", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "63642d2a-0818-479b-af98-0000572fc6e9", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8ee0793a-7dfa-42db-9fe3-67199fc47780", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c6241c73-41e4-45e6-8a9e-d81ce109cd25", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.6216216216216216, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "45a1d2df-15a5-4eab-866e-dd45bb20d1ba", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.8170731707317073, "overlap_size": 67, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1cda273d-4145-40d5-8221-17b35913c319", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "similarity_coefficient": 0.2552083333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5fb0dd7d-b29d-44c8-9a43-8ea47476bbab", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "28fdf736-7235-4e47-bf82-858dfd6a7711", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.42990654205607476, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9ea39cc4-8088-47be-83e6-8825d7b5f228", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.4298245614035088, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "295fa71b-f688-48df-a4b0-68e7c6f6b176", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.27058823529411763, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8fe4ca63-c7c0-497d-b0ce-733b10272706", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f4d46929-8fb0-411d-bfe6-7141f0eccf37", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.2578947368421053, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "90dd8b7f-d170-4a95-81fb-6003bd4eb1bc", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.7816091954022989, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "290ea0ef-49e6-47f1-a3d9-c15909733e72", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.9315068493150684, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7044b781-cdb1-4ad9-beb8-853dcba46f10", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "61f92dd8-6ea0-465c-b04d-37755b0248b9", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.4132231404958678, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "81e6176c-b08d-4b6d-890d-f45af91df3c1", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "755a058b-62ff-4b84-a9b1-d0821c0bee89", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.4772727272727273, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "81c663e9-8e14-4933-952e-39620f4f7166", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.34965034965034963, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a0072d42-72ab-4a79-bf0c-a37d544db845", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.27472527472527475, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0da873ad-3a2b-46f2-913d-449dd1ce81b2", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.28994082840236685, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e0d5d9ae-fc1f-47b3-ad07-e287b3bbc689", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.40476190476190477, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1bc535d6-a5d2-4bbc-99b0-c65f8ff83fde", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.30246913580246915, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f54a7f95-faad-42eb-b7a1-3177b4187f74", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5bd50315-c45a-4e81-9ece-e8459f51da14", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "b67a97a8-54b7-4306-be3a-d6518f864d8d", "similarity_coefficient": 0.2982456140350877, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cdfd1f6c-88e2-4eed-955d-d57086ba4fba", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0eb3d144-4525-460e-8b59-354ed4737f5a", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.620253164556962, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6b52d5b7-4796-4c98-bb09-439f6d987b1b", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.28994082840236685, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f2dd8b79-e58d-4dda-8a8e-55f076956a56", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.352112676056338, "overlap_size": 25, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d7e444db-761d-4cd7-848c-476a22c4eae9", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.4421052631578947, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "39bbdad9-40b6-442d-834e-601db94859f3", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.2777777777777778, "overlap_size": 25, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "35791779-015b-46fa-b4b2-53e12ce4c4d4", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d44926f4-8e89-4704-a73a-34b07b9c1670", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.620253164556962, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0631563a-537e-40ea-97b7-70f58d6819d3", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.6133333333333333, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "55da4954-9bcd-478f-a61a-3070117d89f6", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5b69bb88-8982-4886-8a45-74c1d1260b92", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.7816091954022989, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c70b25b4-9258-45b8-9fda-8e300358141f", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "f8a5f9ff-fb62-48b4-ad61-1e4f868172cb", "similarity_coefficient": 0.29955947136563876, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4ea0ef7c-20bc-456a-8331-1bebca4fdc10", "source": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0442a974-92c8-46f8-9968-7aa21048131b", "source": "724b736d-2cbf-4933-8e53-32614c9a7d66", "target": "14401d8b-b7f0-4300-a60a-80084c2e1e78", "similarity_coefficient": 0.8085106382978723, "overlap_size": 38, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "16f6b714-6d71-4944-84be-89c4409f7b0e", "source": "724b736d-2cbf-4933-8e53-32614c9a7d66", "target": "b1f8bc26-b379-46a2-9104-c4aee4fd545d", "similarity_coefficient": 0.9743589743589743, "overlap_size": 38, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "79ba589a-1f34-49e3-b355-69c122f183cd", "source": "cde86e54-05fe-4896-9fe5-29601fdda15c", "target": "8a8f1e9c-bcae-4260-96fb-0005785f76ff", "similarity_coefficient": 0.625, "overlap_size": 140, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1364fa26-ef22-48ef-8bb1-b0b7fce77ce3", "source": "cde86e54-05fe-4896-9fe5-29601fdda15c", "target": "581ea671-bfdc-4c0a-b5e7-c11440d05a47", "similarity_coefficient": 0.41964285714285715, "overlap_size": 94, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "26dc78fc-b828-4491-a641-8a4fda01c848", "source": "cde86e54-05fe-4896-9fe5-29601fdda15c", "target": "9addc916-184e-474a-b9ed-6a77433bcfb5", "similarity_coefficient": 0.27936507936507937, "overlap_size": 176, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "181b658c-d9a6-490b-b094-34881dfc4fb0", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.28901734104046245, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a2396ae6-912d-4aab-b45c-44aa8a2461ad", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.8305084745762712, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9b8a158b-a673-486c-bc04-384d6fe7cbba", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "12fa9105-3d44-4ab6-91c8-796b20a33856", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.3288590604026846, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "af8daf1a-6a2a-4d4f-8295-1c0e89ea8fe7", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.7, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "20d7e723-a9ab-4709-b72c-d509133ae18f", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.6265060240963856, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "337aa6a5-0d2f-4a0a-8734-c8a7c5b26446", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.632183908045977, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "19794986-a6a4-4f08-aed0-29b28bcbbbbe", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.4067796610169492, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0faf98ac-9dc0-48af-82fc-efc4011060ff", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0ae26ffb-7cc5-4c04-9b6f-7097159a613c", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.49056603773584906, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d58923fe-a633-4bd4-b0b9-f3e2e23a7261", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2108a460-c613-4767-84ed-4432f7a19e87", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.3132530120481928, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6ec02242-5698-4446-8e9e-75ef28361d91", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.34814814814814815, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c7a2ac7e-552d-4a68-a474-72bc92ddf4b9", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.30434782608695654, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2a0642bc-906b-4cdb-96ed-50b82e41ad92", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.532608695652174, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ec94f847-1066-4787-a96b-204a236e8493", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.7164179104477612, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "69856b97-a134-46c9-90d1-dbbb3099e5af", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.31137724550898205, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b7500c26-c760-4fc7-80fd-f30a96629ee2", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.71875, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1ee17caa-f557-4980-99d3-c8e0552211c8", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.684931506849315, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6f64c5e9-3818-4e60-af5f-f7c5b142b797", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.35766423357664234, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "785d155c-9bb0-4dd5-9708-7576871d65f6", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.2768361581920904, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "60636e98-f88f-4aca-be10-ee9c66b2eec5", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.632183908045977, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3107d905-93e9-4100-9fda-446099131b8e", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.75, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e274c97b-83a3-4633-9a4a-b3b0a397ddff", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ace640a1-cf64-48fd-9855-ac7d0ba33414", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.48514851485148514, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4654ef52-9eb1-4dfa-9629-75f6f08aea95", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.6623376623376623, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "176243c7-ae52-4bb8-a1c9-c76acfe86d8d", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.68, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "786d936d-2980-413e-99aa-f7b1760afdac", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.27071823204419887, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "11a14769-98ae-48db-b75d-f8b0690e7882", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.8253968253968254, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8b37756f-9234-4a8a-853c-af71e8b73210", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.5121951219512195, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "32ef3c7e-efd8-4dd0-90b0-314538c67859", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "724d29bc-d634-4249-87ff-e199ed2d104e", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.6046511627906976, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "df465674-7fa9-4f0d-8c1d-0e39013123ff", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.8, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f53a0c46-b40a-4ddd-b291-d02fefb6f171", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.3076923076923077, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3c65197a-5c87-412b-a37f-f6d76470c486", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.5454545454545454, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0ea0fde8-bb0a-4348-9db4-88b276513e20", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.6790123456790124, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cb6e96c0-8d42-4ff9-9298-546bb35c56a0", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.3983050847457627, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "14ef6a62-eb9b-4cd6-8a0b-acb1000842a9", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.4180327868852459, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a8c2e558-62b7-4d7e-a621-81142f0d47ba", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.5098039215686274, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6f541505-f9cd-4010-91a3-51e78211f43b", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.3141025641025641, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e7b5f77a-ff67-4c90-a350-e6cb65947a06", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.6527777777777778, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "858688fd-225c-4871-b579-de0bb5c3b1b0", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.8305084745762712, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "545dcab9-ef3e-489c-92a6-7fa883375276", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "87ca4929-9ef3-4df9-bf6f-a56393ca6bcc", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.33986928104575165, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ef8f2031-c6c3-43f6-94b6-a0c551aaeb80", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.37410071942446044, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9caa3919-f414-46c1-a304-ab281ff27301", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.7424242424242424, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5028c67c-db2c-459e-838b-774c35dcf93c", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "523ec167-808d-4fbc-9618-18648e48d9ae", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "similarity_coefficient": 0.29545454545454547, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6e50a82e-90fd-4328-9088-c54b872d17cd", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.875, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0edea090-6a5d-4fa3-a839-473aa05d0a7c", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.3181818181818182, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6d6d4a16-59c2-47df-afd8-af5497fd5909", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.3291139240506329, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6606831d-cc5c-40cd-9aa5-ed1064615b46", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.40625, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e499bb74-bf47-4691-9ba9-8e4e72c03bd1", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e7329a0e-11f9-4922-962e-9b7acf03ad96", "source": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a2dafe89-9252-4c08-bede-f3f686742b4c", "source": "7b97fe84-d7d6-4d93-a1cf-f13ab3c752ad", "target": "62d1a2a4-a8b0-4330-9997-0e0c05099ea3", "similarity_coefficient": 0.3076923076923077, "overlap_size": 12, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e8e55411-5b86-43f6-a9c4-c4f5a71a2d51", "source": "7b97fe84-d7d6-4d93-a1cf-f13ab3c752ad", "target": "ed852b58-9ecc-4c4e-aa04-d50a951c9801", "similarity_coefficient": 0.32653061224489793, "overlap_size": 16, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5da17533-3618-4537-b1a8-c6701ceea6e8", "source": "5f92025b-69e4-49c0-928a-b39cf6a415ba", "target": "c55475b4-dd25-463a-bb25-1dccccf40a02", "similarity_coefficient": 0.7307692307692307, "overlap_size": 19, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f05017d3-b7a2-45ed-8d97-e10c343c0622", "source": "5f92025b-69e4-49c0-928a-b39cf6a415ba", "target": "8cffca08-69ba-4a11-8650-725824ef2372", "similarity_coefficient": 0.2564102564102564, "overlap_size": 10, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "508c65fe-adba-4615-9758-30464d1b17ce", "source": "f51d131b-43b5-4d51-9f96-badcdf70b67a", "target": "c55475b4-dd25-463a-bb25-1dccccf40a02", "similarity_coefficient": 0.2708333333333333, "overlap_size": 13, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1899d55b-3402-4cab-bb5d-ef2515904ac8", "source": "f51d131b-43b5-4d51-9f96-badcdf70b67a", "target": "8cffca08-69ba-4a11-8650-725824ef2372", "similarity_coefficient": 0.27450980392156865, "overlap_size": 14, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8d0371bf-0654-40b6-a038-5c386a5fe1b5", "source": "f51d131b-43b5-4d51-9f96-badcdf70b67a", "target": "5f92025b-69e4-49c0-928a-b39cf6a415ba", "similarity_coefficient": 0.3333333333333333, "overlap_size": 14, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a46bc41a-b760-44ac-a85e-69544e9c0cee", "source": "f708fea1-8d4a-401f-84f2-32434b3fb235", "target": "e9595f2e-7b95-4f92-b829-ff02d867fe3d", "similarity_coefficient": 0.8125, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b08ace48-4192-4487-a109-61b67194fd38", "source": "f708fea1-8d4a-401f-84f2-32434b3fb235", "target": "69c4b4b7-c9e4-478e-997c-da4e05c3d7ee", "similarity_coefficient": 0.3985239852398524, "overlap_size": 108, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4c62e39c-556c-405a-86ff-4390cea07d7b", "source": "f708fea1-8d4a-401f-84f2-32434b3fb235", "target": "f8a5f9ff-fb62-48b4-ad61-1e4f868172cb", "similarity_coefficient": 0.47577092511013214, "overlap_size": 108, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "97a1b7ad-4caa-4ccd-a16d-7db56e0ea75f", "source": "f708fea1-8d4a-401f-84f2-32434b3fb235", "target": "b67a97a8-54b7-4306-be3a-d6518f864d8d", "similarity_coefficient": 0.47368421052631576, "overlap_size": 108, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3463be1f-fd3f-4a88-b718-4bbeebf4f597", "source": "f708fea1-8d4a-401f-84f2-32434b3fb235", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.6428571428571429, "overlap_size": 108, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0b94ae65-8864-42e3-bc90-7f991429a42d", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b34f765e-3073-49d3-b00f-876303a9b8cf", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a4d55a00-d3a4-477a-8b4c-b7ee01681aa8", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e7aceb17-557c-4280-962c-fd699491d7a0", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.3937007874015748, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f3fea787-acb4-427b-8b61-7fe6f0f99605", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.7538461538461538, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fba66b9b-fecb-4090-b5a1-283c5e5097ac", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "733b3fe9-8043-4080-87a3-927cc49eceef", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.6301369863013698, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fcdf0bd4-0aed-49b5-880b-b0338f914a3b", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.4338235294117647, "overlap_size": 59, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0dc66680-9bf4-4140-a92b-beaaf2970c96", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.3142857142857143, "overlap_size": 44, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "30ac0200-31c9-4160-a191-3090bcc97443", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.2832369942196532, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "648e3a7c-47ff-4165-a342-fd63b61d80b6", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.48936170212765956, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c9816058-624c-4f94-8693-9419135a554d", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.5974025974025974, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4cd54316-6e76-46e5-8924-64b7c2a4ff1b", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.37398373983739835, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a616a331-042d-4c8a-83bd-76486e7668bd", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.2752808988764045, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d0269d88-dc16-4b11-a1d2-56c33c457351", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f904e19d-5f86-4f3f-a6f3-c89ba7aa3f5c", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "650193e5-ea1e-4c46-b943-1db35d8d16d1", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "77e0f590-2c27-454e-a516-87283e0ec9ea", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.296969696969697, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e2524179-eb96-4e2b-b519-441b4e36348b", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5d52839d-6471-418d-a0e9-2851cabfb995", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.46938775510204084, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "39757397-b887-4b3f-977e-ce1c3a146917", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.2857142857142857, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1c03092f-c3cc-4002-a692-12ca89a4d451", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.7076923076923077, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8f88d326-c7fb-4518-8f27-dca563a3181d", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a504cf2a-a4ed-43f8-b91e-73f8e8597375", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e5f1570d-ee61-498d-b383-b5c1279ead5b", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.30625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3787c831-c187-4539-a9ac-ebec0ee1172b", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "044450c7-58fa-4d21-9b92-274affec8343", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "similarity_coefficient": 0.2677595628415301, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dbecdae0-9eec-4bbb-b7ee-07a57011c2f8", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f10277de-c32f-4eea-98cf-e8c55942f138", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.32857142857142857, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2a20fa06-bdae-4086-b99a-acb7dcfbcdad", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.27071823204419887, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d55ef1e9-9d1d-43b7-b87b-fbad2f9c2d1e", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.30625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7438ad67-a7b3-46bd-a357-db54ef34f646", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.362962962962963, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "24aecce1-5e52-4763-92e6-0a466f304d69", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.28160919540229884, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f7dd1df5-517c-4cb6-ac20-7657fc575946", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d18b4113-7d82-401b-a287-d380cb539886", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ae11a135-be23-4024-8eea-ae08ecd08903", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.7, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2c556d18-0a65-433c-ab18-efdbe012c387", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.494949494949495, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4a5a59ab-5980-42d6-874d-313c46115f5a", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.4336283185840708, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "04a177a1-8f71-4350-9708-db1cae170647", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.2926829268292683, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dee3b97d-f4ce-47d2-909f-0d93bf6003ff", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.3202614379084967, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1939e3a6-e44e-4785-be08-9ed19a86c33d", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.620253164556962, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "456e9543-b788-4c27-b728-2e84e69bc5e7", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "133b9758-0d68-462d-bd5d-c68fda4e7b60", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.4883720930232558, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b5b592b5-c4eb-49d9-9a60-7cf0dab4ce3d", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.9491525423728814, "overlap_size": 56, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bef7f398-c39e-4bae-a9c9-b5681dadbc9e", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.703125, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0728bedd-1f31-44ba-af87-fad59225a991", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.38095238095238093, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d73f8c63-d09c-4f7a-ac93-86dee98f9dd0", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.3194444444444444, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "124542a9-6c53-4e22-ae7f-1b0dd54f2b72", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "24f9b004-f252-4cbd-b655-bc3a7c2b42b8", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.2648648648648649, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "928d827b-d09a-479e-99ad-2f8456329a1c", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5d434b86-d5f1-4fab-ad94-6efb0641cba7", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.7, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "64b0e180-ae70-4e73-bf11-c09c5382af7a", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.6764705882352942, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "55769315-4d2f-4a50-b8cf-4499229377c5", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "796697cb-6a16-4584-9ac7-98c7df26df93", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.696969696969697, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "88119137-6397-43f7-b654-fbe444acd515", "source": "1ba7100c-b28c-4c35-80c8-e65013448d79", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a0f67147-03b2-4613-be43-7fde862614e4", "source": "1cc7f11e-1487-4f79-955d-9148f19ad171", "target": "b2b849b4-17ae-4274-9ee5-6a0910e254ec", "similarity_coefficient": 0.6911764705882353, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "249d0e7d-ae5a-4478-8bf1-9650a51e41db", "source": "c3828778-9b35-432c-b1e9-9483a29fb80e", "target": "69c4b4b7-c9e4-478e-997c-da4e05c3d7ee", "similarity_coefficient": 0.38412017167381973, "overlap_size": 179, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5e6194ee-fa3f-4f0f-a134-5af528294f13", "source": "c3828778-9b35-432c-b1e9-9483a29fb80e", "target": "e9595f2e-7b95-4f92-b829-ff02d867fe3d", "similarity_coefficient": 0.2540106951871658, "overlap_size": 95, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bf2afcf9-4057-4bc6-a8a3-7e2b2b93cbe7", "source": "c3828778-9b35-432c-b1e9-9483a29fb80e", "target": "f8a5f9ff-fb62-48b4-ad61-1e4f868172cb", "similarity_coefficient": 0.606951871657754, "overlap_size": 227, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f8e0b78c-f769-403a-92e3-3304f059b50a", "source": "c3828778-9b35-432c-b1e9-9483a29fb80e", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.44919786096256686, "overlap_size": 168, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2561bfa9-d8cf-4393-8a01-48c7fa729972", "source": "c3828778-9b35-432c-b1e9-9483a29fb80e", "target": "b67a97a8-54b7-4306-be3a-d6518f864d8d", "similarity_coefficient": 0.6096256684491979, "overlap_size": 228, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8962ed86-0390-49e7-b2b4-94cdb4f5734f", "source": "c3828778-9b35-432c-b1e9-9483a29fb80e", "target": "f708fea1-8d4a-401f-84f2-32434b3fb235", "similarity_coefficient": 0.2887700534759358, "overlap_size": 108, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6e8a2aa5-b38e-4981-bbae-ba33863501d9", "source": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.6554621848739496, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "421e8bae-ec4c-46b5-a12a-4f8e0076c782", "source": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "04a55327-4ceb-4e52-8eda-881500b06222", "source": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6f719351-d419-4437-87db-92f22cda6522", "source": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "target": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e0a00f22-dfe2-470f-99a0-89b67710d68a", "source": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "080247b2-f99c-4c71-ba4b-6a19785e69d0", "source": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ed5b095c-1603-4355-9b21-ffd180bb8d7c", "source": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5548664a-275d-49e1-894e-e91d76996841", "source": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e2322a52-b04f-468f-96b3-af6ece73f35b", "source": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d5930940-5fd7-43c1-9668-3f1cee3437cf", "source": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "target": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0209e984-73bc-4c68-a2b0-58c11833291f", "source": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "15fd88f3-cde3-4db5-b425-283b01e557d2", "source": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d110383d-c6e7-4f6c-9d04-78b1342aab90", "source": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6c433842-231f-4905-8e34-864fa3b8081d", "source": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0ba0b84b-b09e-454d-827f-e768b2421b11", "source": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8c313ac6-0637-42b2-b1af-a2ac43fe153e", "source": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7aa86111-1aa6-4cdf-af7c-ec12e204c2d1", "source": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "39214fbc-11fe-4546-9e47-91572e6ed987", "source": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3fd4abe6-2af9-4f7b-b89c-d4ba81baa01e", "source": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9dd221dc-ef2b-44c2-b87a-c0c2c41df09f", "source": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5f5d9d20-7bb9-40fc-95bd-fb7970086a30", "source": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "072eb35c-2aeb-4b0e-9a2d-096857af66d6", "source": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2b23e529-86a1-434d-aa8e-a39698db974f", "source": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d224f776-9e1b-4c09-b5d6-fdacbec3e1be", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.43243243243243246, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e12e4750-745e-414e-a446-3575109e4cf5", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.2604166666666667, "overlap_size": 25, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6dbeac0b-e5a9-4872-9351-c83aa9d31fcf", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "64ffde94-3424-4420-89c6-29995c188240", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.5952380952380952, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eb8f0b64-7ff2-466a-b45f-c56d3da5d8a8", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.26595744680851063, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6ccc11a0-3b88-48b8-bbe5-439b01bd043f", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.33557046979865773, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "05f8d3bb-07ee-4c8c-a06f-76ecf8cd2a30", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.45652173913043476, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "41edfd05-4da3-479e-87b0-3e0b3c09d5fe", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "f8a5f9ff-fb62-48b4-ad61-1e4f868172cb", "similarity_coefficient": 0.30869565217391304, "overlap_size": 71, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b31ff5a9-dd64-41b2-a582-16f0cfa685c6", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.28735632183908044, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "db6b198b-6106-4b4d-9071-f36530004f2d", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.28, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9512722c-b62d-41c9-befe-ddb4914cbb28", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.5212765957446809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "557dc0f9-fad7-4c85-b2dc-f5d2ad7daa36", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "b67a97a8-54b7-4306-be3a-d6518f864d8d", "similarity_coefficient": 0.30735930735930733, "overlap_size": 71, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "59ba2b1e-867c-4387-997b-cf05e3fbac23", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.8505747126436781, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f9513721-1249-48bd-8168-3587a50c02ef", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.2832369942196532, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fe25b10a-df8d-4bbf-892d-d03e5390d43b", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.30434782608695654, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "79e1be93-b72e-4426-b3d9-c8258a865d91", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.5730337078651685, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3d296661-cea5-441c-8a21-1471203ba3f3", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.352112676056338, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a463d57c-931b-47e8-8adc-d99bb587c8b1", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.8902439024390244, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "75b8fa88-c1f2-47c2-9aa7-56e705c3ffe2", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.4069767441860465, "overlap_size": 70, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "80631d97-f41a-4189-8860-c39a749d368a", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "73bf6e93-056a-48d1-8eeb-97b5e03f85df", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cd0bc832-6903-4746-87b7-bc9d62d679d5", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.422360248447205, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "18d8748d-d1aa-427d-bfa9-1c19a79fa31e", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "989e2c13-3adb-424e-a04e-3e2a2f1a4d60", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.575, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f7ef58f9-19ef-4c6c-a055-86685560253d", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8d329061-499c-4750-b13c-b104e9c5586a", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1c1baaf0-f12c-4ea8-ba26-9eef4a313cb9", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.5581395348837209, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "89851cbe-dc82-4dfd-a966-98d5641c0950", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.3246753246753247, "overlap_size": 25, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a1ab6847-7e80-4728-8193-2a715881a656", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.6329113924050633, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d655b4e5-b45c-4ca9-92cd-16b43738f9db", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.84, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "47b37795-6761-4830-9276-55c5f53359de", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8f71bb3e-c41c-4dbc-80f9-e7a02e40cdbb", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.3937007874015748, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0e662c0e-4b4b-46e0-9de5-45ab23cd938c", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.40236686390532544, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3e53cb0d-e8c9-40d5-9218-f35f81e9cd60", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.4424778761061947, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eb6e334b-c17d-4bb5-a601-9e8cee72cb67", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.550561797752809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1f5dbc2f-6e45-429f-90d1-424c1b93acef", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.2916666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3d558577-038c-45dd-8721-c29918d01b9d", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.5206611570247934, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "87b002b1-1b97-40f4-8532-85194a92de39", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.267515923566879, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4a8c0e9a-5a07-4274-aaa7-23f6c2280ed6", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.8375, "overlap_size": 67, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bc5f9bf9-ea6b-4bac-a9cb-307353da0b44", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.5542168674698795, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f4a8ce08-6ebb-4f0b-973e-cb2915715d3a", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.42201834862385323, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8cb7d2e0-d6dd-41a1-8b99-14c9ef56b05c", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "859e6449-51ae-4259-8c27-1592fdcd09b8", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.4083333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c77d2abf-9b06-4413-ac94-7ddad973ca2d", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "69c4b4b7-c9e4-478e-997c-da4e05c3d7ee", "similarity_coefficient": 0.26838235294117646, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7a405c39-c41c-4d3b-a58e-2929c4cf2930", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.569620253164557, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f2b747da-4f74-4171-aa89-f7df972eec9c", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.25, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bfd56602-411d-45d4-8893-e24082126c94", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e5fe6660-d79f-434e-b529-c4ea55a08b58", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fd24564b-a045-4540-bc34-a4722c516dcd", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "adb3aa6e-202f-4608-a0b4-b025e22adc3c", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.5425531914893617, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9c54d351-4a9a-4585-af51-a65eb8e62d9e", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.4158415841584158, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3b7d74c0-49c8-4923-a7b2-9369a46ca44e", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.8505747126436781, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9846c596-8cb7-48c9-9aac-620e678859b8", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6431645c-5589-41b1-8a2a-6bb02be60180", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.3141025641025641, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4068bedf-2713-4f37-a69c-32b7b60d1174", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.8933333333333333, "overlap_size": 67, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bc81222a-7c2d-42f8-bd54-0f7ff442934f", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.44144144144144143, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "541e1cc7-577f-4be6-a6fa-13fe191af421", "source": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.5679012345679012, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "51853874-439f-4f07-be11-4976b9133050", "source": "b04fa36f-a0b1-4875-b150-645a41433dec", "target": "f51d131b-43b5-4d51-9f96-badcdf70b67a", "similarity_coefficient": 0.2545454545454545, "overlap_size": 14, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cdf12246-febb-4262-8767-cfb637b6c8c8", "source": "b04fa36f-a0b1-4875-b150-645a41433dec", "target": "8cffca08-69ba-4a11-8650-725824ef2372", "similarity_coefficient": 0.8787878787878788, "overlap_size": 29, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d46098fd-281c-4b15-8a84-b2dff8376b20", "source": "b04fa36f-a0b1-4875-b150-645a41433dec", "target": "70cf6d48-a46e-4604-ad85-12eceacf95b4", "similarity_coefficient": 0.25384615384615383, "overlap_size": 33, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0b50f570-6365-4224-8aeb-9deb0ae18d28", "source": "b04fa36f-a0b1-4875-b150-645a41433dec", "target": "536cea90-ddae-4dd4-a936-9846245ac987", "similarity_coefficient": 0.532258064516129, "overlap_size": 33, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ac950896-d2c4-45da-9309-0fcb500ff166", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.2857142857142857, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0a579822-7e2c-4097-9902-b72026b872e3", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.27932960893854747, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ef61d0f8-e6e6-4170-b80d-4907412043d4", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.296969696969697, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cb9d5d46-92a2-4eaa-8d7d-fb5fc89aa4cb", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.2538860103626943, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5a97ab60-e9b0-47d9-8f3a-3a4b02ed15a8", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.33532934131736525, "overlap_size": 56, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bd795fcc-d424-4e0f-bc59-f581f23cd491", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.28, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3772b4b7-1141-4764-a1ef-e9ecf60defcd", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.3356164383561644, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "39e47787-dad0-4f5f-8a9e-9f3594783857", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.3333333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c3207c7c-0790-4091-a1a1-519ee7de45de", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.32, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9cc8aadd-3778-422d-97b5-0f79deabb035", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.3333333333333333, "overlap_size": 58, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "db383c7f-a4e5-47b6-a281-18ea4541239e", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.2619047619047619, "overlap_size": 44, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "257b45b7-55f5-4f06-9358-5b8b42ee723a", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.3181818181818182, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c0c8eb0e-315c-41dd-a9f2-c030c5e0dbe0", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.25510204081632654, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2f7f8e71-127e-44ec-b2cd-5513fe9fc274", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.30666666666666664, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6a49ebcd-3f3f-4b1d-a236-a6212af66755", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.27071823204419887, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5faf1008-5f92-4695-803a-3dc94691de5e", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.3333333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4dab8540-bc42-4e16-9e67-c68b344355f2", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.30405405405405406, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9ed5820f-a9f7-405b-9cca-335f67385ca0", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.2934131736526946, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9d83af21-2ecc-4100-a348-8c78940ae4a7", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.27071823204419887, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "64316f19-2101-4c63-bcac-7e14d73b6f17", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.2929936305732484, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "970ebc29-ce20-4e18-ab23-442b4b6005ec", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.3356164383561644, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "05b20f55-85b4-4d20-9ae1-5b7843fc4e81", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.25925925925925924, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "03c5d23f-e1ab-4521-af16-77f032bfcfc4", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.25274725274725274, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "98d846e4-881e-432f-91c5-f597e2b1fd24", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.30625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "80a2812d-e15e-4645-a15d-a0001ef159fe", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.313953488372093, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c31dc064-69c8-45e3-8ae7-bd05e4fcc62d", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.32666666666666666, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d0617684-204e-4e7b-b14e-85f9a2d23aa5", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.3356164383561644, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "88c404ab-c28a-4560-acd0-0af8c1c2d20b", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.3087248322147651, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9f184357-ec72-4c94-9280-8be6eaee0cbd", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.25842696629213485, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5e705705-37f9-40b9-a858-d7d147c9b1f7", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.3006134969325153, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "651e0327-398c-4d72-83ee-d71a0dcbedb0", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.3181818181818182, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8535d5b8-e9cd-4629-aee0-05cd80405b8e", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.3402777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "90c994d3-d91e-456c-be03-bbba12343009", "source": "766be637-c201-4e9d-824b-6272fd58cd21", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.44755244755244755, "overlap_size": 64, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e1cf0480-0cbd-46c9-85e6-c937853bd003", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.30303030303030304, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3edc2b5c-f2bb-4d74-a979-562b247d496d", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.3111111111111111, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c6e59e37-3e8c-4417-8d4d-137f12d10bd4", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.6571428571428571, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2149eb41-30fb-44e0-9409-823a50285e49", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f30f28fd-2641-4ccf-bd44-5e47808e4466", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c32c19a1-b7ea-4bc8-859c-a0998fc52571", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.8909090909090909, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ffd2973c-316e-4559-b723-2d20853c77d6", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.550561797752809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d2c51659-8329-4577-b1ad-efc2217d4868", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.875, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6d9fedcc-654c-4538-8f2c-c54701d5a7f6", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.39655172413793105, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5998bee6-78f4-4489-be09-7086a42d5b9b", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.2752808988764045, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d55d6619-084a-4d6d-908e-62901c84f3a0", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.35251798561151076, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "50cb0752-d514-4f4f-b004-0f76f70d2650", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.696969696969697, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "888a4686-8a43-498c-8da0-4490558857c8", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.7894736842105263, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "79e5c2c0-fe5d-4f86-bdf2-fd686090a093", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.28654970760233917, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "405bfe11-b40f-4192-affe-9b8dec75574f", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "efaae58b-2183-4b0f-99ba-d8d0677c0e0c", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "277f7e99-70f3-4a4a-827b-c05360e88073", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.8909090909090909, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dc3374ac-8ea8-4c2f-883c-b008f9dc2990", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.532608695652174, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c756e8d0-04f6-44c7-be33-a849e7227b04", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.3356164383561644, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "186ee0d5-7d7b-4b92-b976-a6e7f02f4d0e", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.7931034482758621, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0963db33-4165-4035-a418-e5a203dd4616", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b43202f3-95ca-4df2-8f8c-b080dfe22fa4", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6ddaae2a-39ef-47b4-90c6-cc9ed1e46884", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.5222222222222223, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d570f69e-124b-43dc-806f-bd4cf718fc57", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.30718954248366015, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a1a00db4-69fd-4680-af6b-4a3265e87b0c", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.7352941176470589, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8a9394df-3c65-4aa8-b1b6-a6cc734bab48", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.4049586776859504, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7cd07077-333d-4b10-bc99-6ad7025a952a", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8b78986e-b0e2-419c-89e1-ed6ddb2d1b85", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "68ddeb99-c14a-4e62-aa99-15f66b6e80a6", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.3466666666666667, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5fdd9d47-bad8-4ce0-b760-3dfe7e31c8e8", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.3828125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dc4e7517-b2dd-4254-9bed-a182b5bd6618", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.3202614379084967, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0237bf17-f2e1-430a-b65b-7e826876e064", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "similarity_coefficient": 0.2784090909090909, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b657f5cf-1c05-4706-8ce0-811fac4ac67b", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 1, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "35ac0a74-6e49-4a81-8e6f-fc54d1255fce", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.310126582278481, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ae37f6a3-88fb-4822-a324-ec704ce69878", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0244376d-6a02-4835-95b3-62131cbaf4c4", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "63817ca3-74a1-419d-bf29-891ff52720fe", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aa994178-ce6a-4638-97a0-cb411859d866", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.5, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6cba9156-c08f-475b-b029-4b5fe54b675e", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fb1e6834-64b8-4d94-a05d-8166fd6de0b5", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.9245283018867925, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "81fdbf2e-9365-48e1-b540-79a794076744", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.3458646616541353, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "48911ffa-127e-48d6-86ab-c534607dfa69", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.28160919540229884, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4624abdb-3d67-4102-9406-ae925c8f1af3", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.2934131736526946, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cc1bc389-5ed6-4716-848c-a682ee275e89", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.5316455696202531, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "34e6fecf-95a0-4f23-9200-2e72b0cdf954", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.875, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "041ddde9-8a93-4acf-93f2-94d42e5b5725", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c6d0fc9f-6be9-4fdf-badd-84ffb5f3c443", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "656b6282-8329-414f-98a1-977a703be3dc", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.8305084745762712, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1c7d2cdf-43f8-46a4-9fcb-9f0f66f443d7", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.7796610169491526, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "450af795-5c11-42bb-8a6b-ea591e794832", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.34558823529411764, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "afd7375a-b814-4786-9617-cec33f509329", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c9a402ef-6d7d-4300-854c-bde5bd8b78f3", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.7540983606557377, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "40d892f9-030a-4ac0-a92f-0122bb0b2e86", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.5287356321839081, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7fd8995a-e4cf-41e5-83cf-9bd33042dad0", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.32, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d320d828-eea9-4528-9d66-3c7ab168c10f", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7a777366-4e10-4438-9144-17dd155eb825", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "04b0ff67-5330-47b2-b70d-252f02d671c1", "source": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.42857142857142855, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "07380243-ef62-4fb5-ab10-260e67c37ce4", "source": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.41706161137440756, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5e6e8553-c0fa-444a-a24a-53f962acbc65", "source": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.38596491228070173, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fef3d6d7-44b5-49cc-b863-f0d5eb77de79", "source": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3053cf24-f623-4e40-bda7-7cba741687e8", "source": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0aa29c8f-e59e-4b63-828f-3ab335863cfe", "source": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.3076923076923077, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f29a4da0-3780-43f8-af5d-134faac4be13", "source": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.4292682926829268, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a22f7d9a-6322-4721-a36a-a16a8ee063b5", "source": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.38095238095238093, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fb8176ae-4984-4407-85b9-64e876df6fbb", "source": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.37446808510638296, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aaa86443-35d2-4021-84cf-ea5bb92e868b", "source": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "87cdfc05-a892-454f-b930-bc3a668ef6b1", "source": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.3534136546184739, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1a2c1320-e42a-457c-bb64-010e9e6be018", "source": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c93e80eb-e8f5-4181-a080-aeda24822686", "source": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.9014778325123153, "overlap_size": 183, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7eacd0c9-0b01-446a-a011-6ec5854f19a3", "source": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.3793103448275862, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "28433d61-4391-4c42-8759-ec608270366e", "source": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1757ab07-abd8-4a63-a9f9-ca1d97997c21", "source": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "target": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b87322c7-1083-46b7-be1d-56c041b8cedc", "source": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f297e615-0948-4beb-a7c1-d4aa960ba01a", "source": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c0ff16a0-59d3-4e93-b8e3-23d519c89a74", "source": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c3831107-4cd0-40bb-9030-4be0beafd827", "source": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "abad01ec-f933-4bf4-9382-184c5789bf18", "source": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "15987b3f-01bd-461c-b008-4a451531c745", "source": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.4009433962264151, "overlap_size": 85, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9d1511e5-99b9-408a-a521-3f81e8ad8d23", "source": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.6220472440944882, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a3d2fde6-d4a2-41a0-b44c-3e28326082e3", "source": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "target": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "similarity_coefficient": 0.32661290322580644, "overlap_size": 81, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b3c14e32-4edd-43f8-8e9c-30453be41489", "source": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.6220472440944882, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dd45464b-ee73-40e2-bd91-51bc5f70f84c", "source": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.6204379562043796, "overlap_size": 85, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d3b79246-e57f-45b7-b99f-9c9b174953af", "source": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.35526315789473684, "overlap_size": 81, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f47851f8-69ad-47cb-8ca6-9e7194c69321", "source": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.35877862595419846, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f8d6a1b8-c8ed-4f3e-85d1-19c63786d70e", "source": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.5414012738853503, "overlap_size": 85, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "16370408-3683-4879-9cb5-2f0bc5924bd6", "source": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.5126582278481012, "overlap_size": 81, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0cdae7a9-40de-4dca-af48-41db4ef941e6", "source": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.6, "overlap_size": 81, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "321ce161-c6be-420a-bb2b-39a07d0e6aee", "source": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.6220472440944882, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "77ce666b-3f58-4914-b44b-700132f1014a", "source": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "target": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "similarity_coefficient": 0.36764705882352944, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "93e0d5ae-c220-4080-a2ad-2e07f28f0dd8", "source": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "target": "868604a2-809b-43bf-97f8-7d956608ccae", "similarity_coefficient": 0.5414012738853503, "overlap_size": 85, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1c402375-c3f3-4990-9885-f07cd7d5c56d", "source": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.37037037037037035, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b77ae5f4-c397-4515-8c41-98ef6fb714a7", "source": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.5093167701863354, "overlap_size": 82, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "23765ddd-4cca-4028-933c-b3636f3a4589", "source": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.6220472440944882, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ae160431-8a02-4262-a1b1-b910837f5ff6", "source": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.6220472440944882, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "377889be-1cda-442a-afde-a64da9833613", "source": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.7323943661971831, "overlap_size": 104, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "da41c7c0-ca1a-4a74-b386-2f60045d701d", "source": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.45251396648044695, "overlap_size": 81, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "07ade8ef-25ad-4de6-b50f-203a1ff79f2f", "source": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "target": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "similarity_coefficient": 0.6220472440944882, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4bca51ce-31d4-40b3-ba7e-985b18385d19", "source": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.6220472440944882, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0ba5dc56-bc1c-41b5-b881-f9d7b39caaae", "source": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.6220472440944882, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "da13821f-4e4e-43f4-8d55-28d4dee298e6", "source": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "target": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "similarity_coefficient": 0.37037037037037035, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4f82eac2-fe60-4221-8d20-2fc802ba725d", "source": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.6220472440944882, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "648da1eb-d2b6-400e-be96-4df38935e3ec", "source": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.6220472440944882, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cfac4977-f295-4f32-8b28-65e34c4677ba", "source": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.6220472440944882, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e1413808-41a7-47cb-9889-3a08de36b4f1", "source": "fb423d6b-dc3c-400a-8cb4-cfcf5aea4500", "target": "4a0b61b9-4b5f-4854-888c-d24f120dc0e4", "similarity_coefficient": 0.9850187265917603, "overlap_size": 263, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e2bffe7d-c0b4-47d8-afd9-6f9b1d8fe64b", "source": "fb423d6b-dc3c-400a-8cb4-cfcf5aea4500", "target": "2c6012fd-f497-423b-9ab1-8cfc5154f253", "similarity_coefficient": 0.34057971014492755, "overlap_size": 94, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ac03e9ff-37b4-4482-8807-baddec68db8a", "source": "fb423d6b-dc3c-400a-8cb4-cfcf5aea4500", "target": "623310f5-8d59-43b9-bdde-0d30cde60c99", "similarity_coefficient": 0.39076923076923076, "overlap_size": 127, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "26a7df67-b53a-4e87-8885-742efb00fe2e", "source": "0a98c49d-d1c0-46f9-9b40-1998ea452849", "target": "fb423d6b-dc3c-400a-8cb4-cfcf5aea4500", "similarity_coefficient": 0.9850187265917603, "overlap_size": 263, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "246f8a69-cebe-4c7d-ad7d-c456db88e671", "source": "0a98c49d-d1c0-46f9-9b40-1998ea452849", "target": "4a0b61b9-4b5f-4854-888c-d24f120dc0e4", "similarity_coefficient": 1, "overlap_size": 263, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9463b0bc-226c-41bb-96f7-bbd940847d74", "source": "0a98c49d-d1c0-46f9-9b40-1998ea452849", "target": "623310f5-8d59-43b9-bdde-0d30cde60c99", "similarity_coefficient": 0.3956386292834891, "overlap_size": 127, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5505506f-b34e-4b66-b724-6de4f0bfaa11", "source": "0a98c49d-d1c0-46f9-9b40-1998ea452849", "target": "2c6012fd-f497-423b-9ab1-8cfc5154f253", "similarity_coefficient": 0.34558823529411764, "overlap_size": 94, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "50b01a97-7a17-4a49-9ada-2e1acbedd07f", "source": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "target": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "similarity_coefficient": 0.5942028985507246, "overlap_size": 82, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b2a6ca0c-460e-408f-ae72-72144afdfc95", "source": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "target": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "similarity_coefficient": 0.29411764705882354, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5b63f57b-a7b5-4221-b3e5-d77763fed51c", "source": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "851b4415-9b20-4b95-bdf5-c9cd6399e6c6", "source": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d804daee-9c92-4918-90d0-ff910feff61b", "source": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "806d3f66-270d-40a4-b117-64d8512c1be0", "source": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.9191919191919192, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4379792d-fdd4-4b3e-b700-4b17d5aa1ecc", "source": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "target": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "similarity_coefficient": 0.42788461538461536, "overlap_size": 89, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3e65d8ce-ecd5-4776-8f5a-a5b5da10eaef", "source": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.3153153153153153, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "109f461c-9167-4363-9798-3c6abddab0be", "source": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "target": "868604a2-809b-43bf-97f8-7d956608ccae", "similarity_coefficient": 0.7647058823529411, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5575bda0-56d6-4fd6-bc58-9a351cc73c08", "source": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.4656084656084656, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c5e61c61-d863-464e-a667-9011edd18a30", "source": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.7394957983193278, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "df6517f3-1cf2-4893-a8f8-63d99e9dbaf8", "source": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.2966101694915254, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8f3af0a3-0f8a-44c8-81d8-cdf6787e35c3", "source": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.9166666666666666, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8696bd40-4aad-486a-959d-dec5785e8868", "source": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "68928b31-35ec-46ee-9f28-54a243b8cc4e", "source": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.7647058823529411, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5bf83df8-f31a-42b7-8d6c-57feee9e9f45", "source": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.5229885057471264, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b5b5e1d0-d300-4227-84c3-98031ab66a77", "source": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9f3e0755-ebd7-4f3f-962e-9e7d21a7a50a", "source": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ba262366-12be-48ce-9fed-a7e439f6e04c", "source": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.6984126984126984, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f306a17b-e180-496f-8b70-1bea2985ab03", "source": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "315e1773-bd1c-4d06-bc14-2d3ac0105a89", "source": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.7154471544715447, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ea777e55-f3f6-4b29-a16d-e14829c2985a", "source": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "target": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "similarity_coefficient": 0.2966101694915254, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a02bd043-8c03-4109-ba6c-b569bab45875", "source": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3ddcea30-a833-4b33-8749-c7fd2cbe0692", "source": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d4ce59f6-43c2-400c-88f2-1ddc4d473851", "source": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "target": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "654ec8f9-9dd7-4b43-bf9e-686b48c51858", "source": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.6285714285714286, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ae161306-9a56-420c-9955-72ae902fb962", "source": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a7341621-4eec-4d30-9e83-01f156701c39", "source": "868604a2-809b-43bf-97f8-7d956608ccae", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 1, "overlap_size": 116, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "12d4788f-17a2-47cb-aa64-d3138da07561", "source": "868604a2-809b-43bf-97f8-7d956608ccae", "target": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5ac81f31-6e05-4d62-b1e8-3cfcaf030fb3", "source": "868604a2-809b-43bf-97f8-7d956608ccae", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.41706161137440756, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8467b619-d2f8-4ea2-9217-3a5ae8d1377d", "source": "868604a2-809b-43bf-97f8-7d956608ccae", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2a0776dd-590b-4f75-9acc-0a29d5d27ae8", "source": "868604a2-809b-43bf-97f8-7d956608ccae", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.5683060109289617, "overlap_size": 104, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eefeeb39-7e0d-41d7-95f7-1eb3689af4c8", "source": "868604a2-809b-43bf-97f8-7d956608ccae", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "19297348-85da-4984-8947-0416fa4c60ea", "source": "868604a2-809b-43bf-97f8-7d956608ccae", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "420e9091-fb5a-42d7-b49d-9feebb4062e8", "source": "868604a2-809b-43bf-97f8-7d956608ccae", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.6164383561643836, "overlap_size": 90, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a3db2455-5284-4b09-9179-e98aff2d50a2", "source": "868604a2-809b-43bf-97f8-7d956608ccae", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.6068965517241379, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8191e068-75c5-45a5-8473-4fe88dec13eb", "source": "868604a2-809b-43bf-97f8-7d956608ccae", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4d33710a-15ab-45e2-8237-b73aec434f24", "source": "868604a2-809b-43bf-97f8-7d956608ccae", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c5a13ee3-b64a-472a-a1b8-5c6bc8e680f1", "source": "868604a2-809b-43bf-97f8-7d956608ccae", "target": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "similarity_coefficient": 0.2589928057553957, "overlap_size": 36, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "37cdc5d7-0bb6-46b9-8a48-d89cd34da789", "source": "868604a2-809b-43bf-97f8-7d956608ccae", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.5432098765432098, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "504c1348-7ca0-4ace-9d87-60ef8e41e285", "source": "868604a2-809b-43bf-97f8-7d956608ccae", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "465bc57c-bc14-41d3-a19f-41a3ca18feef", "source": "868604a2-809b-43bf-97f8-7d956608ccae", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "89cf8f51-b977-4603-839a-5b164fb0d10a", "source": "868604a2-809b-43bf-97f8-7d956608ccae", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.624113475177305, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "37a95dc6-cd61-4205-aec4-29a423fd6272", "source": "868604a2-809b-43bf-97f8-7d956608ccae", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1dd95991-1498-4d16-9f2f-5ee30c8f024c", "source": "868604a2-809b-43bf-97f8-7d956608ccae", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dbda39a5-f22d-4bc1-944f-1ba9a0556a58", "source": "868604a2-809b-43bf-97f8-7d956608ccae", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.8275862068965517, "overlap_size": 96, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8d1aaa64-06fc-4a16-9eeb-9d9ad7f16e3d", "source": "868604a2-809b-43bf-97f8-7d956608ccae", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1f61bb16-4f10-4c61-b9ce-c5848b2ede0a", "source": "868604a2-809b-43bf-97f8-7d956608ccae", "target": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "similarity_coefficient": 0.38095238095238093, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1db53eb8-9567-4dcd-835c-b856fcacb1a6", "source": "868604a2-809b-43bf-97f8-7d956608ccae", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.26811594202898553, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "62b2cb25-56ec-4427-b11b-6ead4e7bb040", "source": "868604a2-809b-43bf-97f8-7d956608ccae", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.2631578947368421, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "19658a17-65ca-4da0-bdb9-5e770badfc74", "source": "868604a2-809b-43bf-97f8-7d956608ccae", "target": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "similarity_coefficient": 0.26618705035971224, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ec2991c9-e9c6-4608-a5fb-a552abf55bef", "source": "868604a2-809b-43bf-97f8-7d956608ccae", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.7457627118644068, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1cc72d9b-8168-4e84-bc61-120100370223", "source": "3555fae9-d98f-40ee-8932-0dd5b6cb5b3a", "target": "864d29ee-3b91-4c86-ac1d-8b9bbb36ebc6", "similarity_coefficient": 0.28169014084507044, "overlap_size": 20, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5e9ef14f-1fe0-4864-8034-28e0f25a068a", "source": "df713d36-9b29-4758-98a5-5b6f138c3de6", "target": "366dd0a3-3444-47cd-ac20-2a83f4584eda", "similarity_coefficient": 0.25363489499192243, "overlap_size": 157, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "687ea3b9-31b8-4a88-ba56-464921894c40", "source": "df713d36-9b29-4758-98a5-5b6f138c3de6", "target": "1a39797c-1df7-4aec-8ab0-ce066a56e9ec", "similarity_coefficient": 0.7100271002710027, "overlap_size": 262, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3198bede-d1a8-4306-bdb7-571a55dcd3dc", "source": "df713d36-9b29-4758-98a5-5b6f138c3de6", "target": "cd17fb8e-e2e9-4ade-a18e-e29fe05fa092", "similarity_coefficient": 0.32791327913279134, "overlap_size": 121, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aa175286-a084-40f9-a2d8-46ed38c4861f", "source": "df713d36-9b29-4758-98a5-5b6f138c3de6", "target": "bf3c5db6-d54a-4e27-a6b0-be788ae9b904", "similarity_coefficient": 0.26692456479690524, "overlap_size": 138, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "441a35bc-8c96-47c9-a38b-5a5e12327c61", "source": "df713d36-9b29-4758-98a5-5b6f138c3de6", "target": "70cf6d48-a46e-4604-ad85-12eceacf95b4", "similarity_coefficient": 0.3523035230352303, "overlap_size": 130, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "de08fc2a-4375-429d-b925-e6d05971239f", "source": "df713d36-9b29-4758-98a5-5b6f138c3de6", "target": "5915b056-e646-42a3-80e7-2deef8a98dec", "similarity_coefficient": 0.4430769230769231, "overlap_size": 288, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "15d0c7f8-374e-40f0-9dd2-208e3af2045c", "source": "df713d36-9b29-4758-98a5-5b6f138c3de6", "target": "354ec532-56fa-4d39-91bb-f26b629c0824", "similarity_coefficient": 0.2650375939849624, "overlap_size": 141, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e2c187f6-df0a-4fa1-b102-786365cf35b0", "source": "df713d36-9b29-4758-98a5-5b6f138c3de6", "target": "c59b9ba0-0b63-4930-b1cb-3e784ac046af", "similarity_coefficient": 0.29250457038391225, "overlap_size": 160, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "32a7f4e8-1c8d-440a-9064-2666429ab8de", "source": "df713d36-9b29-4758-98a5-5b6f138c3de6", "target": "9cb17d00-b403-4965-949e-03ef64b0c9a3", "similarity_coefficient": 0.7165354330708661, "overlap_size": 273, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "443a1184-4760-4106-b8ec-5a36b3ba9c73", "source": "7e298194-58ad-45b5-b229-6d116611b483", "target": "c70bcf40-1f05-49f1-b48b-f6d265f4e774", "similarity_coefficient": 0.6129032258064516, "overlap_size": 19, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "60bb5bcf-9482-4beb-a315-a487984823ac", "source": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bae64f62-c129-49fe-ae47-49cdc6b0776e", "source": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "221156b1-ffad-40d1-802e-42a688bb0368", "source": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "83bf5c73-1460-4e20-8a9f-c70208b13916", "source": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b154c66a-fa0d-4f22-846b-ab333640eb09", "source": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "target": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "44ea4e20-0ac9-4a84-b073-7e16988397c9", "source": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "target": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d753334b-4afe-4a50-a3d2-02c152f8f898", "source": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f1cefa19-1161-4951-8532-0ab48f65672f", "source": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "target": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e737e03f-92c2-4b50-b13b-d7a38b815847", "source": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.6694915254237288, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0e70931c-51e5-46b6-8002-c0b19345b80e", "source": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4800472b-c45a-4413-a664-cf35d11b06a9", "source": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "730ec34f-728d-4cf7-8c2e-19588e7cf376", "source": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f57e16a7-d846-440f-9edc-a2528524367e", "source": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a58d84e8-4bab-4a62-b02b-c271d6a64090", "source": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fa610c9d-3c89-45ce-9c52-c5aab9923edf", "source": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "24af24e8-7b17-4bf8-a9d8-eea2c075d180", "source": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8fbb23aa-4410-46ae-833e-e6f2234d69f0", "source": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "target": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f42c5dbb-28b7-4731-8707-f69b6b086226", "source": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c0498296-3385-42b6-89b1-5af00223ce13", "source": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "target": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "similarity_coefficient": 0.6349206349206349, "overlap_size": 80, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9a26bc96-7b7b-48bd-bf28-5261e58f13a8", "source": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ba624b23-0ecb-4aeb-9b78-229f0c6a1f29", "source": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "target": "868604a2-809b-43bf-97f8-7d956608ccae", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "95ae2cc6-c14c-4b74-9042-6b5709336a33", "source": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "664f8866-4dcf-46a7-93c0-0def2253ecaa", "source": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3b9247df-5496-4057-a1da-9e427e69cb60", "source": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "45102d65-e867-405e-b158-0a89b733fb23", "source": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ad65f00a-0845-492b-9c62-1b31a1ec2095", "source": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e1ccdf18-0b13-412b-8369-ad2f9c6585df", "source": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "target": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3265444a-7ebf-4562-a07e-854b9a60aade", "source": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dfb50b8b-5683-42a5-83d4-6d3e551a28f4", "source": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "target": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "similarity_coefficient": 0.9166666666666666, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "af9491b3-1aa3-44dd-b7bf-149ab9d3bdc6", "source": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.9565217391304348, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "faad06bf-5d0e-483b-b4d6-bf259404caa9", "source": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.5086705202312138, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "215b8601-fff0-457e-8a7d-77a14d8d7886", "source": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a418b327-4f01-4bcf-984d-44f1466ccbda", "source": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "861330ef-7f74-4af5-a9fa-083e1dc3f131", "source": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.8979591836734694, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8389bc85-d394-46f1-8d8a-2efd8f742e66", "source": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "target": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "similarity_coefficient": 0.4292682926829268, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7612ec1e-3624-4702-89fa-1e4eb93fb731", "source": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.4756756756756757, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "82022501-b60a-48c5-8220-ed9fe02b13c8", "source": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.7652173913043478, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6c2e1b01-3d86-4145-a8ee-e93e9581f007", "source": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.7457627118644068, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fda7edf7-2f90-4cc6-b799-21f5d474cc90", "source": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.32710280373831774, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "31e5fc85-8e7a-4f63-9424-9094f956c852", "source": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9549a71f-eacf-4b5d-967b-d7d1cfeba075", "source": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "target": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "similarity_coefficient": 0.30434782608695654, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "75d5e738-c4de-4439-8df2-1a06420d7d74", "source": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "target": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3816598d-fe17-4037-838d-8b7fd75a0b37", "source": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.7394957983193278, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0ea537f8-5db9-4fef-a5d7-da6022302168", "source": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.30701754385964913, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dbaa4bc5-bdfb-4781-ad15-9c2ffab47165", "source": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "target": "868604a2-809b-43bf-97f8-7d956608ccae", "similarity_coefficient": 0.7457627118644068, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9c55076a-dc0f-4a8d-b7d2-bb79bddf3d9a", "source": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f3f5de76-68dc-471e-8557-3460e7b1a183", "source": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "76a83580-599a-414f-9df6-a76223a85846", "source": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.7213114754098361, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b2ea36e8-4535-4a92-949d-e84eef3785fc", "source": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "80056ab3-6e77-4128-b891-ed8f8fb5f773", "source": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "target": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3b31d001-f782-4d56-a637-03046017c4a5", "source": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ca5cabf9-8d5f-44cb-9118-c80e2e5dacfc", "source": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a640502b-5d25-4e66-9a3e-38e6492192b7", "source": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "218e53db-d316-4236-83e5-cd743dc15d75", "source": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "target": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "similarity_coefficient": 0.6, "overlap_size": 81, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "75b576d2-003c-4c46-979d-ad818bc5d3d9", "source": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "target": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "similarity_coefficient": 0.30701754385964913, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aa692e7e-2447-4e71-8bd3-54a8094b4624", "source": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.6470588235294118, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3a7bd0c5-6c80-4185-a7b9-14e27ad4d68c", "source": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "55a3ea4a-c1b7-41a2-8358-39ec2c61220f", "source": "256d4349-41ff-4f8d-84cf-712bd1e91eae", "target": "ff8df9a9-f99a-4719-a96a-d64e1b3fc6f8", "similarity_coefficient": 0.37362637362637363, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "42dac399-7d55-4b63-ba45-e4e750ac2854", "source": "256d4349-41ff-4f8d-84cf-712bd1e91eae", "target": "69c69d97-3401-431d-87ee-22f72bd12c57", "similarity_coefficient": 0.38202247191011235, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9983fba0-829d-4648-a241-1836c5ecf96a", "source": "256d4349-41ff-4f8d-84cf-712bd1e91eae", "target": "14f17c28-8038-49f6-a4ab-311c487adfa6", "similarity_coefficient": 0.3655913978494624, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4363652b-0261-4461-95d7-94de29f4f464", "source": "256d4349-41ff-4f8d-84cf-712bd1e91eae", "target": "b06c44e2-b4c4-41c8-89aa-75e9f63e4d5b", "similarity_coefficient": 0.37362637362637363, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d8bcc723-d919-4fe6-b165-1a2df3d5ff88", "source": "256d4349-41ff-4f8d-84cf-712bd1e91eae", "target": "f9b39331-d306-4809-b0c4-ce6e8a9a7e0d", "similarity_coefficient": 0.3655913978494624, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9f7276cb-e424-4338-9564-dd8918234374", "source": "256d4349-41ff-4f8d-84cf-712bd1e91eae", "target": "1bdb2d2d-fe7b-4e46-b699-76d58b12344d", "similarity_coefficient": 0.3617021276595745, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2361f852-5c59-46a5-9b3b-56cc03171c49", "source": "6e0d16f0-901c-4970-a541-74fefb710b7c", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.28040540540540543, "overlap_size": 83, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a8147b41-f975-4e80-958e-28e7c0fa0d92", "source": "6e0d16f0-901c-4970-a541-74fefb710b7c", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.4831081081081081, "overlap_size": 143, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f4e48e8c-5e5e-476c-a8e4-aabe9188d19f", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.4948453608247423, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "572adaed-a8a5-427c-8752-4a9816453df3", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "161bec00-9c20-432a-a4ab-e86bb180ea6a", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.39097744360902253, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4f8e9eba-8825-48f0-ac8f-f6f2d989f450", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.3375796178343949, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "10f7f41e-888c-4fa8-b9ed-5a85b1aefa8d", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.3262411347517731, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2254473e-41f9-4756-bae9-b7cb66a4011d", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ea11aefe-f6cd-4d6b-a5e1-34ff6fd786ee", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.8032786885245902, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1e81c420-bf44-43e0-80d7-bb9a29acf6d3", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.3023255813953488, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "32c6e784-dc8f-4582-b6b9-933e9a863d03", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.30434782608695654, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "02d983bd-4032-4818-a696-e77d99077485", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.6125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3c967d3c-fd0d-4393-9de5-54dedbd4f195", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.2891566265060241, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c97f2f55-9ce2-43c5-8629-d6c8e8a49aa8", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.5473684210526316, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bdc13f0e-9d76-423d-8413-2db4845e382c", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5842696629213483, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0e8ed98f-0a89-4dd5-a91b-cf6897b2f0fe", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.3, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fa740c76-802b-44ed-a2a3-7ba8536148a7", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cfd3f173-4fa6-46db-bc2f-2b87cc53f808", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.4411764705882353, "overlap_size": 60, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "af7c8ece-531b-430d-99e8-afeeb7b77216", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "272190e0-0ee1-442f-80b4-70ddaec77a40", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.765625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "21f68ea9-2017-42f4-8902-49e92c44ad22", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "similarity_coefficient": 0.287292817679558, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2f653324-f8fa-46f7-b0de-9eccf464f301", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.2737430167597765, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "811f2cad-2e5b-4a09-9203-5596be742604", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "24ea9edd-7da1-48c4-a6d2-a8737cd00bf4", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.8064516129032258, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e91c2b4b-23cd-4738-aae4-277a7967d334", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.5888888888888889, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fcf75fd0-2308-46a8-a587-69443fc001e6", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.31901840490797545, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7388b9b0-e8e1-45d6-9190-a2d585808987", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9358c7fc-2ace-448b-860f-14545bc47d67", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.8253968253968254, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a64852e3-dbfe-4674-ae2e-1ceaa8685533", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.375, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1cd9b36d-b5b3-4788-97cf-462be3157720", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.6666666666666666, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a2a1722c-bef4-4169-8b90-2e39d60f8c42", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.5909090909090909, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2f45a567-7a2b-4c7f-b66d-79849bd80fda", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.48598130841121495, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f6f822f4-905a-46e9-89f3-f9bd8105e55e", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.4126984126984127, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "85eaf0b5-c760-4bbf-9659-732fd124331c", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.46846846846846846, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "73db991b-d7f3-48e3-ba3a-31204a978a30", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.2937062937062937, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6b608ef5-eb20-40bc-8888-8e108728520e", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.5360824742268041, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bcfa3d61-daa5-41d4-8c58-599349eeef1a", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.5897435897435898, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b5a345d5-3554-41bc-b666-ecf0a4f8e017", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.30409356725146197, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2830d35f-0b1e-4d74-abdc-298a12a85256", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.3709677419354839, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c2771040-12d0-4d66-b000-450d8006ce23", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.532608695652174, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "34a86fae-07b6-46ba-8916-d42d5a9cea92", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "326ab248-fe98-49ec-9dfc-2f327b74c3d3", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.7, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "afb17277-ba58-4761-a863-68a37807a38f", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.3356643356643357, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7f50d0c2-5ad1-4876-bca8-dad742abab02", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.6923076923076923, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "add7e992-e22f-4061-a44d-752df4953ab3", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.6666666666666666, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8a6bf3d0-fe44-469f-a9f6-025953331179", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.3181818181818182, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c3c86bb1-987d-43d7-b1c5-f6e87f3b2ec1", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.27624309392265195, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c2b602d6-5d55-4fe0-bfa0-f21b70a81977", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "71774ac0-0653-4ef5-b5d6-a9195b8cf2f9", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.7936507936507936, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c6d9ea79-2a8c-4d19-b870-bf728a19d20c", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.4827586206896552, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "30d61b13-49ca-4a8c-9c50-dcbad81a10fe", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ea40dad2-d212-4be4-a2b3-17e52a061b25", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.765625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0d3460c6-68ba-4584-820f-3ec44c88b23b", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.6582278481012658, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7058e9e0-982a-40dc-a907-ca9b21cd5e38", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a38e7b8b-52e2-4e7a-b4ad-c4825a6b0d98", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0d5f23bd-31cb-4c58-9d45-9822edc5fe99", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.620253164556962, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f5ffffc3-ea60-4437-8248-c0fbc80fee58", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.7647058823529411, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "517ced76-efe7-4307-872a-b717f9077f98", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.26344086021505375, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "53fe8a68-505c-40f3-b1f3-78073fde53dd", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5e671132-eb54-49e0-a3ac-7d655a7a9ddd", "source": "ea08f366-4fcf-42db-9327-d240798fbafc", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.5473684210526316, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6375bf86-5809-4fb3-9c76-61afb864156d", "source": "38fcc406-d8ea-4899-8aba-08c8cb9d70f8", "target": "9addc916-184e-474a-b9ed-6a77433bcfb5", "similarity_coefficient": 0.45233968804159447, "overlap_size": 522, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "814b56b1-e553-4901-8c0e-fd68561f64fb", "source": "38fcc406-d8ea-4899-8aba-08c8cb9d70f8", "target": "6b221283-c77c-42da-84e1-a571f4b878ff", "similarity_coefficient": 0.3820840950639854, "overlap_size": 418, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "78354af9-e597-46b6-ac1b-84042dffab0a", "source": "38fcc406-d8ea-4899-8aba-08c8cb9d70f8", "target": "65022cea-7483-4689-8ce5-ee987795bedc", "similarity_coefficient": 0.4409127954360228, "overlap_size": 541, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6701b9c7-7b05-44a4-a113-9f627c74bd20", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.30434782608695654, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "836749cb-3dee-415d-b741-d8b6a38251ac", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cec2e78a-14c4-4347-a36b-887f80f6125d", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "40f39c38-eef6-4b94-a7c2-187251a12701", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.2702702702702703, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2b7243ce-c1aa-4fd7-8b0a-a0b3fe3569fa", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.27710843373493976, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6a869124-c146-48fb-a726-cb87f2229958", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1182ceda-f1dc-46a0-8bab-4e32e2861252", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.3983739837398374, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e6df8d8a-9104-4dc2-9d08-0b9cee0f73f8", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.26344086021505375, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "85f77ed3-c4e1-4ae0-9cba-7c5704777456", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.392, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dcdb08ac-a49f-4fc8-a250-c6f15fdae354", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "979fc611-e485-4540-b4e2-0a56b4689c7a", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.5204081632653061, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6d6dbda6-c6e2-4b6f-acb9-e4fc6cdae093", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.35251798561151076, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e74fdb29-9a91-4bde-9767-a0390225d8bf", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.4358974358974359, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b8b94695-c8d1-444c-b579-7e68306d7cd6", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "54f1fc67-2e73-4c00-b039-61356f35b8f9", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "14c612f6-be70-463a-af73-e0ba711c487b", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.3709677419354839, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4b1ec68a-3f0a-4a31-9955-86f2715f2700", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.2631578947368421, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "006198fd-ea49-498c-adac-aae9273a8ca7", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.5222222222222223, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a2cba245-9978-48cc-88c8-229f1be3bf79", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.550561797752809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "347de032-0e8c-4a17-874c-3de0c7fb94cd", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f3e6179a-f2b0-4e33-ae06-57fdb28cead2", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "07e2c61f-ca32-4ee0-ac1f-d6c6a0f3a701", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.4716981132075472, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c388b78b-831b-4b76-b39c-dabdfd02a47e", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.44660194174757284, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3dc8cd59-e885-44ae-b833-8e255bea606f", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.46464646464646464, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "85e8e656-4371-429c-a455-4f1a3b24110a", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.25252525252525254, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "43aa9bf2-f986-4d91-b812-cafe35a20964", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.4224137931034483, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b6ee2a01-dac0-41b0-8f4e-bfb474a977d8", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.362962962962963, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "31a601d2-5f5e-43ef-bb1f-f890fa844e77", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.2696629213483146, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c650ffee-3f99-4b3d-80be-c292670faefe", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.3624161073825503, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b571d25b-2e7e-4ef0-8b12-6e65719b5145", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.3087248322147651, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "585e682e-6efb-4a1f-aae0-d583c2aa99af", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.625, "overlap_size": 85, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a734ca12-0c4a-43c2-80b2-cffdf15c4e61", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.3949579831932773, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f77a3673-7768-4201-bc99-103b99ad6e9b", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.26506024096385544, "overlap_size": 44, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "82003fc9-02b0-4420-8b16-d4cbcf0846a3", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.5, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cb02c96c-38b5-4adc-a5c0-9653f1ebf4f4", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.29545454545454547, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b836d44d-bb17-4a69-9807-99d6d53c3fad", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.5164835164835165, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "578d126b-fc77-41c8-8de9-fe41c870d77b", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.3983739837398374, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "08afc82a-fb96-4b10-8885-0e634c48c40f", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eb8e07de-1721-4ce6-9330-8d7ff37e9328", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.375, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6ed26048-739d-441a-9815-a8ffc58455a5", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.5652173913043478, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e1a20248-6d74-42ae-be40-9f21a2101deb", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7c9223df-13fc-4cb6-ac00-0253d0e54640", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "30089b87-c152-4344-86bf-81d020f0017a", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.5681818181818182, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6853e255-a328-4a5d-8152-02cba10f1651", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0167eaea-08c0-4af5-8cc8-5b806e3a5aa2", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.37404580152671757, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c18753e7-2801-4881-b497-7539f5257ef3", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.5934065934065934, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e173e836-237f-4f5a-a190-1f0b72f1c410", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "67852e20-4b0f-4e6a-a4c0-6c1a5d6d10ab", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.5494505494505495, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "61016a4a-bf7f-43cc-875f-24c7c0200dec", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "03796aeb-1272-440a-9e86-f8b8cf3983a6", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.27058823529411763, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "45d5f40c-6660-459b-87a0-e34e2a465316", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.5217391304347826, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0d34908f-d525-4384-9d80-6318dfa1e167", "source": "a4828a94-536b-4435-9faa-b69c04af47ff", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.4016393442622951, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a9d059e9-beae-4fbd-b56a-193c9271865c", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.7956989247311828, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2582277b-9d47-46b8-8a84-383aef746c37", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.425414364640884, "overlap_size": 77, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bd86e2d4-c761-4b9a-807c-3559c0688237", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.6111111111111112, "overlap_size": 77, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "34794d6f-874c-4972-93c3-76791eac77b8", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.39896373056994816, "overlap_size": 77, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2d99ae4f-13f4-4605-9aa8-ae7c4507a486", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.7956989247311828, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a08b98d0-28f6-47c1-a630-e58d59e0eaa0", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.7956989247311828, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "12899661-f0bd-4d86-aad0-4b88e73a9a15", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.5923076923076923, "overlap_size": 77, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8a8ee72e-e41b-4bca-9107-cd6466ce9c1c", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.7956989247311828, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ceed3c2a-bc72-4400-8cd7-27d32341207c", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "similarity_coefficient": 0.2807017543859649, "overlap_size": 32, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6c13bbe6-ace6-4c13-bb77-ad1d5bd14cd7", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.7264150943396226, "overlap_size": 77, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f0f7993c-7079-47d5-96fd-ec859aec44f3", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.7956989247311828, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8901e53f-740c-46b0-a6b5-efc884af3d9b", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.7956989247311828, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "76cd8234-dc69-4cde-9518-5a0ae1c63aed", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "similarity_coefficient": 0.7403846153846154, "overlap_size": 77, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2aeb218c-41ff-445c-934f-c275d273afe0", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "similarity_coefficient": 0.7956989247311828, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3fcc985e-ddfc-4562-82ce-7c7d1cfeb5f0", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.7956989247311828, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b8f35c65-c9e7-4a78-8039-6fcf12a0e98a", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.5347222222222222, "overlap_size": 77, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4e514c53-8dff-4c08-ba38-7458f1fbc287", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.6062992125984252, "overlap_size": 77, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b4f004ac-e19c-43e6-b37f-6623fc6421c8", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "similarity_coefficient": 0.77, "overlap_size": 77, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "051c82b0-f5dd-4abb-ae7d-318e6dc9f743", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "similarity_coefficient": 0.5434782608695652, "overlap_size": 75, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a7bc3932-1f94-4de9-b652-f7653026950b", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "similarity_coefficient": 0.2782608695652174, "overlap_size": 32, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8f73eb2e-604f-4922-9a63-d32cf1c52add", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.7956989247311828, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c7e8f11a-b41a-4bca-91f2-977e354d5dbd", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.7956989247311828, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "051e8323-197d-44b6-bc1b-8193cdbaca44", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.6260162601626016, "overlap_size": 77, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "caa7fd21-6687-4f33-bfc3-d37654cc4c3c", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "similarity_coefficient": 0.7956989247311828, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3f63fd26-b055-4bdd-9246-22784b6060f8", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "similarity_coefficient": 0.3615023474178404, "overlap_size": 77, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c15051e3-e99f-4e40-8480-f021052a0f26", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.7956989247311828, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4fe67df0-99ae-4b34-aced-7af94cc3147c", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.29906542056074764, "overlap_size": 32, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "18f7bf5e-e902-4d14-b5c2-1c144892f27b", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.77, "overlap_size": 77, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b0590205-55c0-4633-b891-ddb1f94cdaaa", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.2807017543859649, "overlap_size": 32, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2b939eb1-ac30-41fa-a554-cc0e1af2b5da", "source": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "target": "868604a2-809b-43bf-97f8-7d956608ccae", "similarity_coefficient": 0.6111111111111112, "overlap_size": 77, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8d62b676-0d8a-4b6f-9836-6eab0749799a", "source": "9d67ed9b-fc8b-44ae-be26-85d636c27b87", "target": "ff8df9a9-f99a-4719-a96a-d64e1b3fc6f8", "similarity_coefficient": 0.32075471698113206, "overlap_size": 17, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a485bca7-14c2-494c-af16-0e4251ddbd35", "source": "9d67ed9b-fc8b-44ae-be26-85d636c27b87", "target": "69c69d97-3401-431d-87ee-22f72bd12c57", "similarity_coefficient": 0.3333333333333333, "overlap_size": 17, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "09a2a60c-8f63-4622-9826-62c9f7c63de3", "source": "9d67ed9b-fc8b-44ae-be26-85d636c27b87", "target": "256d4349-41ff-4f8d-84cf-712bd1e91eae", "similarity_coefficient": 0.38202247191011235, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "75cab8e6-522f-41ef-91e3-cc1d78c6beeb", "source": "9d67ed9b-fc8b-44ae-be26-85d636c27b87", "target": "b06c44e2-b4c4-41c8-89aa-75e9f63e4d5b", "similarity_coefficient": 0.32075471698113206, "overlap_size": 17, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f49a6bab-4147-49be-a52d-b0c8b7fc68ab", "source": "9d67ed9b-fc8b-44ae-be26-85d636c27b87", "target": "14f17c28-8038-49f6-a4ab-311c487adfa6", "similarity_coefficient": 0.3090909090909091, "overlap_size": 17, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f2b8d277-09bb-420a-afb4-7e5c97d77d21", "source": "9d67ed9b-fc8b-44ae-be26-85d636c27b87", "target": "1bdb2d2d-fe7b-4e46-b699-76d58b12344d", "similarity_coefficient": 0.30357142857142855, "overlap_size": 17, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ab936e38-071a-44c0-bd7c-f42c910c1678", "source": "9d67ed9b-fc8b-44ae-be26-85d636c27b87", "target": "f9b39331-d306-4809-b0c4-ce6e8a9a7e0d", "similarity_coefficient": 0.3090909090909091, "overlap_size": 17, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "29fc7574-765d-43ca-a347-8578f7c5b0bf", "source": "f127255f-9ab3-4cc9-80ae-d598f0105419", "target": "fb423d6b-dc3c-400a-8cb4-cfcf5aea4500", "similarity_coefficient": 0.6891385767790262, "overlap_size": 184, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "29208868-567b-4efb-a076-bbec97368fd9", "source": "f127255f-9ab3-4cc9-80ae-d598f0105419", "target": "623310f5-8d59-43b9-bdde-0d30cde60c99", "similarity_coefficient": 0.5061224489795918, "overlap_size": 124, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ddb0428b-7cf0-4119-9829-16a887524fce", "source": "f127255f-9ab3-4cc9-80ae-d598f0105419", "target": "b81d8d56-c41a-4508-a1ca-9590780583eb", "similarity_coefficient": 0.25, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bc78a653-1f44-4c3f-891a-5c7846f1dad6", "source": "f127255f-9ab3-4cc9-80ae-d598f0105419", "target": "2c6012fd-f497-423b-9ab1-8cfc5154f253", "similarity_coefficient": 0.48704663212435234, "overlap_size": 94, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a2641503-0c2b-4ef8-9d3d-2fe09fea2fd7", "source": "f127255f-9ab3-4cc9-80ae-d598f0105419", "target": "0a98c49d-d1c0-46f9-9b40-1998ea452849", "similarity_coefficient": 0.6996197718631179, "overlap_size": 184, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6c3c3fb4-2243-4264-ad76-7a9d86de68a1", "source": "f127255f-9ab3-4cc9-80ae-d598f0105419", "target": "4a0b61b9-4b5f-4854-888c-d24f120dc0e4", "similarity_coefficient": 0.6996197718631179, "overlap_size": 184, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "afd5de6f-37b6-47bb-a092-63e8c6a1ce25", "source": "a9a38d38-b0bb-4c25-a938-b31f9d702712", "target": "dbf87f13-0aa3-4a21-9ca8-e8f640b6202c", "similarity_coefficient": 0.8851063829787233, "overlap_size": 208, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4b0b636f-11fb-4697-b58a-5ac53f5a9b02", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.323943661971831, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "72d8b037-f178-441d-aaa9-d9f1674a9043", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.7258064516129032, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cb551a5e-0a68-470a-b572-d0cbba7085f4", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.71875, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6457db51-9ddf-4500-927d-3fb30e24f69f", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.550561797752809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8c90fec8-f0de-48c1-be3a-013f71c9107d", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cdf2af34-73c4-47a3-9538-00b428e96088", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.281767955801105, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "59cfde03-2ec1-423d-929d-ac7e293e7bf2", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.5, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b51d4008-0291-4ca6-b907-8734e10397c3", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.5, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "763022b1-d684-4b9e-a096-8d81bf640483", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5c69ce27-c67b-483f-b84d-16c7705d58f1", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.3888888888888889, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "52c46015-9bd6-43e0-8daf-c75f6f88105b", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f9fd926f-8e05-473b-9ee5-45bdcf959e43", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "712b8f3f-9dfb-4590-b4d1-187ac72e1a86", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.5212765957446809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bab0a005-31d5-47ee-8e76-ee94759e48ec", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "716dbad2-9da1-48bc-82c0-04f1f8b2226c", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.8032786885245902, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "952d8edf-3bfb-45f2-9e45-8d9d4af3729c", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.75, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "10dc9124-a23b-49b7-b0f4-5063b9fdcd7a", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4dd30e8c-51e8-4529-8c90-61c4367e09e3", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.765625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "32d0fc3e-06f4-40fc-876f-096278f1e866", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.4791666666666667, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8d69dd3d-11d3-44a7-9025-665191b8511a", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.647887323943662, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f9ab40bc-9f8f-4f3c-a095-a2ac5be9ba06", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.28488372093023256, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ada41a86-8daa-490d-a0c0-5d810428fdc0", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "b4472d3f-7b1d-4c57-b47a-bffedc4aba98", "similarity_coefficient": 0.25, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2cc8aafa-bb94-4c65-8f0e-407cb472d583", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "905e4119-1f62-4cdc-bc1c-10bdf4a08177", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.3, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "85bf15c8-0493-4a65-972d-67310d11331e", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.3333333333333333, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ce76dfc2-4142-4caf-b542-c320a0273673", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.620253164556962, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "04684b30-1ae4-4d0f-a962-4a6d8c3a83c0", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.8032786885245902, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "12006934-fb6a-483a-b76e-160c8aea1217", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.2737430167597765, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d70f28de-b28b-4b48-b21b-acbbada55f01", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1741cc10-b4e1-4f6d-9526-e9c81391dd03", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "78157c15-0ccc-4be0-9b61-c384c90adcb8", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.32450331125827814, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c27f37eb-4c58-4cc0-b93a-ce3c359375f5", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "56f95ed6-89d9-492c-a070-5d2173ebff0a", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.7301587301587301, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7be6773c-6456-4e53-b31b-e1f8337dd84a", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.2784090909090909, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4cc1e5d3-a7a3-49ca-80ca-c57dfcd90379", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2a7d469a-9dbe-46b4-b2ad-f967b55e47f6", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "15cb4fa9-e589-4913-97ac-2c5c48e684ae", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.44144144144144143, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "652b4e00-e67d-4886-bd2a-77b728e8c054", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c1337441-20db-49ad-9f31-81700449d34a", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.847457627118644, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "846ab036-50ce-4b71-b541-3db1b914fb11", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b8a153fa-8fba-48b4-af89-d2af5bd15e6a", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.847457627118644, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "79af316d-13d2-4073-89fa-6d7dda94a202", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "similarity_coefficient": 0.27071823204419887, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a83f2f5d-d746-4052-a3b3-fb83bbcdddae", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.2974683544303797, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2151c735-fcb0-4186-baa4-29b1b2c6d4e2", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.39344262295081966, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "11b38adc-af68-4bfb-8cfc-641a8754fbfc", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "75d5566d-bc85-46b7-9853-cc4d20812e57", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a207322c-5799-4993-84a6-84f0dd6d796f", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.8636363636363636, "overlap_size": 57, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a6c5919b-d0fa-46b5-804d-b08e45482510", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.746268656716418, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b41ad7a2-0510-4f87-8546-ba9eebfde4aa", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "02292442-bc1f-4c23-919b-8cde0ca33068", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.3006134969325153, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b657f482-615a-472d-b5fd-bad4bbfab283", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.3684210526315789, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "17c55213-b17f-4166-a7e1-cefc853507cb", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.6133333333333333, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0c349f4f-0108-4770-aede-ac7a69a17fed", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.28654970760233917, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "59e5ff1c-fc08-4705-b893-6adcce54b264", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.9122807017543859, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "739d070c-ca10-4bb0-bff2-a3c7c4bbab7b", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.3, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6ee3a192-7390-45b7-849e-a8cacc369695", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6c0ebb07-7890-4936-b14e-05c8ebac812d", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.38016528925619836, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2632b1df-2d81-407f-8d4a-70a477b80e23", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.3402777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6fe4e197-cb73-4af3-8930-ebd6ff480933", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.33548387096774196, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1758b68b-5a95-4fe6-a90f-ed68164491e1", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.3184713375796178, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9881a298-0df9-47a7-8aac-c14a3f18d0bb", "source": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d4b92805-c70c-429e-9769-dbb3e6c7f4a5", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "845ffe8f-e8d5-4348-8cf2-c3620f7bd89f", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.2926829268292683, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "75f60d5c-6c27-4052-b61e-00a4979082d0", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ddab429b-de66-47e1-b033-7f8f8eade4ae", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b0f72a4f-1870-4ad1-87f7-182fb9663a53", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.4224137931034483, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "35c7c3ea-186c-45ff-85c8-fbf01dde9fe1", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a5a420c7-a40d-4c0e-a733-1086e9b835c3", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bd5f5d48-1744-450d-a0e3-796883126b12", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.5476190476190477, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e360b8d9-48b2-43c3-9a9f-69f5276426e4", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "96c28356-3f52-4010-938d-6d0393bbcfbe", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d01dda59-2ed7-4157-aba1-72546b346ebb", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.49, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d2324728-cf68-43de-b5bd-4ecfc88b6d47", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9750796f-c406-4b9a-9203-bf85d300dfc4", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "413ee966-93ca-4a4c-ac4f-938506e434bb", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.323943661971831, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6b9c59aa-de55-4d98-9e9e-9ddf5c889b7b", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bb8934f7-138f-443f-808c-723656516137", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.5, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1b7c2b59-c541-475c-a048-7e05bce71ffa", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2b73a164-d08f-47f8-ac7d-24537416653f", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.5287356321839081, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4af07945-9680-43f3-893a-bdbe72d5f85e", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.2737430167597765, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2f10e25b-4b8f-41f6-9b47-45b0060240eb", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.3375, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5c743645-c99e-47ce-9b95-dc1921e54a50", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.2737430167597765, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "34e698a7-dc20-471f-806a-31ba256525f8", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.6506024096385542, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "937d857a-7e64-48e6-b46a-926c62a84183", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.550561797752809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "06eab2b0-6dcd-4338-9dae-ee0cb9b1206d", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.620253164556962, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "592889a0-c6f5-4094-9cfc-39d87cf51531", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.2552083333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e73937de-3522-4428-9f58-d2257279cb3e", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.40707964601769914, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ec4a8e1b-b8a7-4bc0-84c2-891d49b029f4", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.4791666666666667, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9a420ea4-e951-47dd-aab8-150cfa1a5028", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.550561797752809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a8c64f4e-ba0a-4da2-81ce-b481d1a4c79d", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e39fd49f-72ec-49b7-9db5-4114b768878f", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.675, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "72dc71cb-2920-4051-baa5-f305d9ec67a3", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.4298245614035088, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b90336eb-79e2-4169-80f0-9253ca8b9492", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.39316239316239315, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "44a92f15-1137-443c-9ec3-acfccbc40d31", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.2822085889570552, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "305f9bd3-1da2-4230-83d0-4258c850d5b5", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.266304347826087, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1ab7cec3-fcc0-4301-bde3-5585f293ce9e", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.5421686746987951, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7d9d22d2-2bab-4601-9ee0-143176f1165c", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.3181818181818182, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "25090c92-7807-4dbc-85cf-2bf45eaa9cd9", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.2893081761006289, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "303c4c2d-899c-4e22-b008-1d61bab8416b", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.4375, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2ce987f1-58df-468c-88c4-761910b582e6", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.550561797752809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "48d79621-3647-4840-9ed9-2c4a34979fa9", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.4, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ef288ecf-4513-4fe5-9436-eedbfbbd7216", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.5411764705882353, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "51319c61-cd29-472f-9a66-7359b56962e1", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.3333333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7b442e6f-967d-4b85-ab9c-16e96592e842", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6f6e7446-781e-424a-bf44-e874d0015ed3", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.3828125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7ee11fb7-0ab6-4271-8006-da663b096c43", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.25555555555555554, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "887e1c3c-7e0c-4a15-bd7d-e7d9f0540407", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.2538860103626943, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "169fe8a9-72de-4832-af88-8746224b2467", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "088d63e0-e904-4cc6-8c49-302473f9a555", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.5, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6e8dfda6-6f79-435d-9306-99d93c7800d9", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f5922d6b-90cc-45bb-9a56-e16ecc63de47", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.28488372093023256, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4da0e04f-aea5-4dba-8205-8dafc2ca9950", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e28cc3a7-18b3-4b02-8ea2-d81fb4428567", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.2608695652173913, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c018c9ec-5cbb-475c-a0f7-9b43e1c6d282", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.4152542372881356, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "04791a46-2bfc-4c49-b3e4-5500f0be77ba", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.4224137931034483, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "99a243ae-5b28-4221-bef1-406a39e69547", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fe7746b3-a649-4535-a828-b650508cd0b2", "source": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.3712121212121212, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "52b25902-83b0-4f6f-81fb-b18ec5ee835d", "source": "93bb5f8a-51a6-4222-9790-2b87e4216040", "target": "8a8f1e9c-bcae-4260-96fb-0005785f76ff", "similarity_coefficient": 0.27241379310344827, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "02de1924-ade0-4ccf-9910-21218752c8c7", "source": "93bb5f8a-51a6-4222-9790-2b87e4216040", "target": "65022cea-7483-4689-8ce5-ee987795bedc", "similarity_coefficient": 0.3397626112759644, "overlap_size": 229, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b36776a0-d392-431a-98b9-535f7b68b5c4", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.6376811594202898, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4ef97676-ea13-4d5a-b9fc-725c9b6ba262", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "similarity_coefficient": 0.38596491228070173, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a2c34daa-efe2-4097-a88c-d69a2f2089b8", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.7416666666666667, "overlap_size": 89, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "66a85403-9d1c-4560-9b8b-94cd156d763d", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "41bca830-2ac8-4e42-a1ee-88eae829b332", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "60b4795a-b991-4c4a-9834-368846e91c60", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "771b5a52-eba4-4edb-8631-43a6b95fce31", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "similarity_coefficient": 0.6260162601626016, "overlap_size": 77, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0d80b14f-d3a1-4fb2-89ee-3188705426a1", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9ddedbcd-2298-4897-a953-2dce8bbd7c1a", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "86053630-5ee9-4170-8b47-0199ff742005", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.7652173913043478, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ea384200-bfcd-4b08-96d0-1098825530c8", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.5087719298245614, "overlap_size": 58, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d8b8b15c-fc0c-459e-9c6e-7050fc841db4", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "similarity_coefficient": 0.5043478260869565, "overlap_size": 58, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8ea8d896-c6fe-4ee2-b946-92afd441c24b", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "868604a2-809b-43bf-97f8-7d956608ccae", "similarity_coefficient": 0.6357142857142857, "overlap_size": 89, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "753c624c-95d4-45c9-b068-81087ab7f56b", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ed0af0b9-186b-40e6-8231-f3709fb4aab9", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.46017699115044247, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d75cdf3e-549a-4536-afb2-e6177f69dc67", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.4230769230769231, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "93768d56-f9a9-4d9c-87f7-6794fc685436", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.5534591194968553, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9c1a1d50-f780-41d4-96f8-75fefb2cc414", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5df374a7-3083-4b95-86ca-dd90aa16e4ae", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.9416666666666667, "overlap_size": 113, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3f4c3f02-69ce-4932-b7a2-c1e64ac75514", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "985bbac5-7736-43db-9877-ebf737e49da6", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.6357142857142857, "overlap_size": 89, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3aa3cbd4-56a1-4350-bf86-584bf78b0083", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "25ac0f5c-d7d5-4e54-9236-38c7bbf2e016", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.4564102564102564, "overlap_size": 89, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "866fecde-37e0-4834-94e3-5a6e1006aded", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "similarity_coefficient": 0.7394957983193278, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3841f15d-0516-474c-b115-0ad7746d4ac4", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c16d4b2c-0cce-48e9-bec2-f36283037d96", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.6197183098591549, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aa3f93e7-3cda-494c-a40d-21409646f9d4", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "similarity_coefficient": 0.7652173913043478, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f5da89ba-8a7d-44d3-8504-cdd977b78fb8", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "similarity_coefficient": 0.7071428571428572, "overlap_size": 99, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2575a566-f353-442a-8910-01abf2ad9b1b", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "42b4096f-f180-4e90-bcf0-5e7b27712a45", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1e7e0264-6c6a-471f-8f1b-3219fbb095b6", "source": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "target": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "similarity_coefficient": 0.5221238938053098, "overlap_size": 59, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fb292fce-c30e-4b59-bf54-b873fee50d54", "source": "3e0e02c9-697c-4958-92c6-755f9726945b", "target": "758af837-d470-4024-9c26-602ea1a3cf9d", "similarity_coefficient": 0.896551724137931, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "27b98ef4-e1d9-4082-a799-8abf24a2fc53", "source": "34e491a2-88ea-4d07-8f26-597638ce6d2f", "target": "c9e2f73a-ebca-4b5f-93ca-ff4ea1f622db", "similarity_coefficient": 0.2631578947368421, "overlap_size": 15, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6f14b098-6d5d-4da9-8c03-299a66d7c77f", "source": "34e491a2-88ea-4d07-8f26-597638ce6d2f", "target": "f5736009-a954-42de-861b-494d7e1ef269", "similarity_coefficient": 0.675, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d1e2f584-f236-4574-96a3-9d7e4715e66e", "source": "58278b87-f7c8-4544-aa45-b17322914faf", "target": "e7868b74-6295-46aa-9b02-5f2686cebe46", "similarity_coefficient": 0.3941018766756032, "overlap_size": 147, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fc3677a7-0779-455a-a34c-01595ee3e37d", "source": "fa233ae1-349f-4830-91aa-77eaeb7bd001", "target": "5a8deea3-cc0a-4701-a9fa-f9e7a8d7caa5", "similarity_coefficient": 0.2926829268292683, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3aa3d039-a37f-4683-bc10-add2bcce65d8", "source": "a43c5c6e-b75a-46eb-ad38-bf93f14d030c", "target": "3e8dd08d-a111-414e-905a-faeed681e3f5", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "113a0dc9-f79b-4ce6-9bf9-86d3108c5a2a", "source": "a43c5c6e-b75a-46eb-ad38-bf93f14d030c", "target": "f45e0bc4-6f9f-417b-b48f-de0017b4ee5a", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6de8aff5-ab6c-4cfb-933f-aabf1f575e52", "source": "a43c5c6e-b75a-46eb-ad38-bf93f14d030c", "target": "89ef528a-6736-4b29-9138-7a11a722353d", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "13a2241f-b4fb-4ad2-8631-7c819da8c974", "source": "a43c5c6e-b75a-46eb-ad38-bf93f14d030c", "target": "5db5ed69-b4e2-485d-b78c-1b47eb326935", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "59a3effd-f9bb-44da-a86c-bc560a3c0198", "source": "a43c5c6e-b75a-46eb-ad38-bf93f14d030c", "target": "4972b393-f94e-4331-9cd4-206ae4786f51", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "97e6ca1a-ee60-416d-ad99-aaca4375a769", "source": "a43c5c6e-b75a-46eb-ad38-bf93f14d030c", "target": "218e964f-2842-43f5-825a-917591457798", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "289717d8-cf31-4414-bf15-4583629e6b3e", "source": "a43c5c6e-b75a-46eb-ad38-bf93f14d030c", "target": "d078c60c-b5d5-42cd-a5d7-a780f23a8090", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4ce72807-f652-4c8f-b1a0-b18f60b55ccf", "source": "a43c5c6e-b75a-46eb-ad38-bf93f14d030c", "target": "e97d3933-d924-4c41-8e4d-ae17bd34263c", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "40e47b5e-b5f7-4d61-a0eb-d8722f9c32cf", "source": "a43c5c6e-b75a-46eb-ad38-bf93f14d030c", "target": "e6bdd19b-66e3-45e2-b2b1-92f658ccc62b", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4a5efc15-7a79-4ad8-ad65-87b1a887c912", "source": "a43c5c6e-b75a-46eb-ad38-bf93f14d030c", "target": "beb79ccf-a196-43d0-86ff-773092ba3490", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cc6c6088-f568-4d28-a8b7-d9e6b65dfbcb", "source": "8f4712ea-2e89-4712-a648-476a4a49de85", "target": "04397f25-76a5-44ed-a268-ddea1236b245", "similarity_coefficient": 0.42193308550185876, "overlap_size": 227, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "796d7248-95db-4734-961b-53328d6d47ec", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.32894736842105265, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "662a27d4-fe8c-4b5f-847a-5416d27dc47a", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.36, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "36c4601e-7d60-4073-b0bf-ed39d6dd65c4", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.3858267716535433, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5b2a704b-b820-447b-8252-b2a6ff69611f", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.373134328358209, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "133aef55-d7f1-43bd-a586-3cca13b81988", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.3937007874015748, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "babd860f-ddf8-41d1-84ee-d81cceeae1df", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.32075471698113206, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9027b22a-b6c3-4618-b75f-2def1f484969", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.3968253968253968, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7c2b8332-c43f-49d0-b3b3-005a702b5c25", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.3858267716535433, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aad37477-d58e-4e2c-abf2-ba08688ff98a", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.3732394366197183, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dc29b55f-1ba7-42fb-a884-b1a34f2b1cc4", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.3401360544217687, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dcf6f85b-fe55-4906-b0b2-0a1467293f2f", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.33544303797468356, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "60d15c09-c141-4dfb-96b9-d4d1b4e440cf", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.33986928104575165, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4f1931e6-1c8c-44ec-949f-c88452b05ba7", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.3669064748201439, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f27e5e7f-47c0-4247-b573-c96e49b40242", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.2534562211981567, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8a67e6c2-af93-43da-9d57-d1cd002937af", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.3828125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1be81b76-3a23-41fa-870a-9d8ff39dfce5", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.41935483870967744, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ed677dac-0e88-4739-ba3e-106c91f7f1ba", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.3816793893129771, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "da25e7b5-8125-46dd-97e4-4a7d94b35c90", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.3067484662576687, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d7dd1dee-ad21-45ee-9fd6-fb642f5fe89b", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.4094488188976378, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a39401a6-6e9e-45c2-b7aa-49d04d855c28", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.31213872832369943, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bcfb2658-66af-4255-a846-c5d438262e5d", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.30409356725146197, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f7884548-c625-4ea4-8e68-a2f3bf9923fb", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.31521739130434784, "overlap_size": 58, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3a5c59fc-1736-4730-bf83-ddd35fc4528f", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.34838709677419355, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "86bfe5e9-505f-41a6-ad37-a19df4c2ea41", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.25688073394495414, "overlap_size": 56, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "81e39099-e6ca-4d1d-bf64-86cbc8fba851", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.392, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ee6bedb0-4ae8-474f-b3a3-0ea93c11ace7", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.3288590604026846, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fd6be035-568a-40d6-9a53-338f2582b8cd", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.373134328358209, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1fa5a361-2f33-461f-9123-6ec34ef3da4f", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.30405405405405406, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2ff50f2a-43f3-42a5-9767-377a022c8fa3", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.40458015267175573, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e5ff1374-1f69-4343-8ddb-612372c32f80", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.3618421052631579, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "687028eb-0d5e-4181-9d2b-a81c1628b458", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.3858267716535433, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6043db3f-c110-4041-b8f1-204bc7adb04b", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.28823529411764703, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b6556c4b-2153-45bc-bf4a-622fb8244b94", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.3488372093023256, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "27c15e47-9b05-4644-a429-8cc4b66693cd", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.27692307692307694, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c3655cfa-a22a-4c6c-aca4-fb114fe8be70", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.26865671641791045, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "30b8cb9b-de17-478a-a346-decde4d74baa", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.27450980392156865, "overlap_size": 56, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2aa8f154-d33a-4908-b1a9-ec589fdda18b", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.37593984962406013, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e0595cf6-5330-4d94-b867-c6cb1231c803", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.34868421052631576, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "10e7aa42-42e2-4d99-a05f-8048e649d4b4", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.33544303797468356, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "68bda6e7-9e03-47d4-97c8-597ce88d050c", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.39855072463768115, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "88c8eff6-7fbe-4d40-9571-cf043416f589", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.34265734265734266, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "52f12b8d-88b4-47fe-97ba-3fc438b5b65a", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.35251798561151076, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5d0844c9-4c96-44c3-a7a4-ee9621143fd0", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.3937007874015748, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2eb6bc9d-9a29-4ada-b484-dbe73f738619", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.366412213740458, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ea72750b-7a56-40dd-afe7-c2dfee363b9a", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.38461538461538464, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3981a10e-3307-43ec-ac4f-27cf490a8fce", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.3227848101265823, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b261e7ed-1385-43f3-ad7e-a72f2243a783", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.40458015267175573, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "858174f8-d05b-4145-bb93-6e4dfd2d49a2", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.25877192982456143, "overlap_size": 59, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b1f6e40c-34df-44d7-8be5-1079eb8b204e", "source": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.323943661971831, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b7af95d7-386c-417a-9256-f02a5808bf4f", "source": "85937333-3f44-4ef0-af10-f315b562f032", "target": "26fdcb67-674e-4f51-8950-f5ca307f91c6", "similarity_coefficient": 0.6130653266331658, "overlap_size": 122, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5f894711-69e4-4ac3-9cbd-96ba5a284b2a", "source": "85937333-3f44-4ef0-af10-f315b562f032", "target": "b1207c33-cad5-4151-bb97-bec83ecb7ba0", "similarity_coefficient": 0.6012084592145015, "overlap_size": 199, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7bdf6d38-91bb-4659-b4c4-d84ec8bb272d", "source": "2fbf60f2-400f-46dd-9a0c-75ecf6cf3bf5", "target": "512b43b3-5e2c-43d0-9270-d49211ee8e20", "similarity_coefficient": 0.7913043478260869, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e4348eeb-ede7-4e7e-b0a4-c7c0eff55278", "source": "2fbf60f2-400f-46dd-9a0c-75ecf6cf3bf5", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.3020833333333333, "overlap_size": 58, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5f9ba53b-2d11-4d84-a432-9b88621c104e", "source": "64d7c015-c260-4724-bd99-69ee54c28eed", "target": "f9b39331-d306-4809-b0c4-ce6e8a9a7e0d", "similarity_coefficient": 0.85, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a8da77bc-dd2f-489f-8282-06dbb9316987", "source": "64d7c015-c260-4724-bd99-69ee54c28eed", "target": "b06c44e2-b4c4-41c8-89aa-75e9f63e4d5b", "similarity_coefficient": 0.8947368421052632, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6f413cc1-0735-4ffa-addf-ba16797ff0ae", "source": "64d7c015-c260-4724-bd99-69ee54c28eed", "target": "1bdb2d2d-fe7b-4e46-b699-76d58b12344d", "similarity_coefficient": 0.9230769230769231, "overlap_size": 36, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "95cca235-efac-4620-a41f-24774d470cba", "source": "64d7c015-c260-4724-bd99-69ee54c28eed", "target": "14f17c28-8038-49f6-a4ab-311c487adfa6", "similarity_coefficient": 0.9473684210526315, "overlap_size": 36, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4739f293-5a99-478c-a894-f570be8c8255", "source": "64d7c015-c260-4724-bd99-69ee54c28eed", "target": "ff8df9a9-f99a-4719-a96a-d64e1b3fc6f8", "similarity_coefficient": 0.8947368421052632, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "075f6833-60f2-4dbc-9834-d6258ac87023", "source": "64d7c015-c260-4724-bd99-69ee54c28eed", "target": "9d67ed9b-fc8b-44ae-be26-85d636c27b87", "similarity_coefficient": 0.32075471698113206, "overlap_size": 17, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b4c8d703-8462-473a-9a5f-db4987bed9f3", "source": "64d7c015-c260-4724-bd99-69ee54c28eed", "target": "69c69d97-3401-431d-87ee-22f72bd12c57", "similarity_coefficient": 0.9444444444444444, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8a4e65b7-a41c-486e-a31f-28b273fabadb", "source": "64d7c015-c260-4724-bd99-69ee54c28eed", "target": "256d4349-41ff-4f8d-84cf-712bd1e91eae", "similarity_coefficient": 0.37362637362637363, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "49aad4be-d709-4d6b-88d8-03c319dbee6c", "source": "cf5b2c91-a143-44f5-a248-9063b55a2ada", "target": "2fbf60f2-400f-46dd-9a0c-75ecf6cf3bf5", "similarity_coefficient": 0.9615384615384616, "overlap_size": 100, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "caca5486-2ae4-446a-9a47-7af7b3e497fd", "source": "cf5b2c91-a143-44f5-a248-9063b55a2ada", "target": "512b43b3-5e2c-43d0-9270-d49211ee8e20", "similarity_coefficient": 0.7647058823529411, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e05dddbf-3ff4-4dab-a123-50aa737f6206", "source": "cf5b2c91-a143-44f5-a248-9063b55a2ada", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.29591836734693877, "overlap_size": 58, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "05a978d5-0cdb-4f02-8130-8f7c40374b38", "source": "32ddd129-0049-4ec9-ac33-77282161c8ff", "target": "6e735b7d-4008-4a11-8624-76192410cf30", "similarity_coefficient": 0.5306122448979592, "overlap_size": 26, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aa2e3e68-fcb7-4446-8969-6ea18b8c1655", "source": "4ff6cb11-638e-4fd7-aa70-6b09447fa291", "target": "4368440a-6df8-4ed8-aaf8-4a419aa9eb42", "similarity_coefficient": 0.9591836734693877, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "647c6ed2-0873-452c-8d50-967c275c9269", "source": "4ff6cb11-638e-4fd7-aa70-6b09447fa291", "target": "3fbb64b3-4512-41e7-8837-bc44bd025067", "similarity_coefficient": 0.34507042253521125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "62f05612-2cf5-48a0-bae1-52d198de0d08", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1890bf17-a1f6-4f70-9a1d-93bfcd621ae7", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.7, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d02f09de-8663-42d8-8680-2b46dd0608dd", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.4224137931034483, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d21ef0ef-efbb-4763-869b-1e1146421b6a", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.373134328358209, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "23ffd48f-f7b8-4d94-a661-c80f17ee8ed6", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.575, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "52cac108-2831-490d-a1d8-a694bf0c4214", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0a4df42e-a2d8-4a89-bf6d-ada8333773ed", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.32894736842105265, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "295966a2-fdaa-4f83-9503-de9412f6089e", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5154639175257731, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fd295a6d-cf8b-47d8-9835-e31c5b7ac797", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.28187919463087246, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "55555aa6-2801-4293-8b9f-d4f02aedf966", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.47, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0fecec87-3d3f-4229-bab3-921de51ce04a", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.28651685393258425, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d07c77bc-bf9c-4ad9-a003-2926f96db788", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.5662650602409639, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8fb0a64c-f115-4445-8751-c68da0ebbcbc", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.3643410852713178, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "78135af9-c00e-4b6f-8c96-dd7267fce8a3", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.2717391304347826, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9acd1428-3829-4005-b289-5e71c9ce40b8", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "32f801e7-d372-4551-8577-87005912451a", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "30b98cbd-4513-4829-9e1d-8e56ccf07363", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ea392043-4322-4e28-9050-09d70760a03f", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.4380952380952381, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "72ea23c1-c5a0-4965-8e2a-83675e91d1f1", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.27380952380952384, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3949ebed-fddd-4924-b75b-b4d0b6802e9d", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f4a4f389-7935-40ec-85ec-55a078025c58", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.6619718309859155, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3b24b9f1-6a13-42d5-98e8-2a7ecdfb369c", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.5050505050505051, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "11eb0fe9-b6f0-4568-9820-83ccaa965646", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.3, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b35b739b-2bd9-4b2b-b36f-57b3f813c167", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f9ea8348-7c5d-48ba-b0fb-a4833ddde1bd", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "99ce0cf5-0712-4d77-8330-3d4f37e4772a", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "similarity_coefficient": 0.2578947368421053, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a124e466-1406-4f98-8059-f7d344985e7b", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.2934131736526946, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "88ee8c3f-f344-48d3-8f12-d917eec6b5ce", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.36428571428571427, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "88a9a6df-a7ea-4c5d-a407-c38c08ba8abb", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.30120481927710846, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c5e87cf9-85c3-4de5-b30a-219a91233e06", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.2849162011173184, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1ddd4bf4-faf0-4422-9b1d-aeec88325356", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7289fc65-f3af-421c-8598-b4363c9a9256", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.3219178082191781, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "27028f1f-c293-4dff-8500-42f0f722c512", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c73ea3e1-26a6-4d05-ae86-0668ea3471d8", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.28804347826086957, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7402a2bc-732e-41a8-97c3-9fbace5a3de3", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.4854368932038835, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "82e84355-7dd4-476f-822d-71546dc21607", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ec9db0ec-2b45-4369-aadb-90db4bc8777b", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.30625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "33730b88-4075-4479-9bad-59376631b12e", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.4322033898305085, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ef705ec9-ecb3-4a1f-904c-67c7ca779fdb", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "460badf3-d96c-404d-bb3d-e5fdc941ef80", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.313953488372093, "overlap_size": 27, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5b1da781-b932-4546-85c9-fbcda20a6aea", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9ec36ec5-973f-412e-8bdc-8c9cc15ba01b", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.7761194029850746, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b611fe56-6f69-4140-ac12-b0df914a6c31", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.45161290322580644, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "19a16ea2-bae7-4b1c-9537-3ff8631aba0f", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.49504950495049505, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8bc41f3d-d18f-4786-8416-fff987c3d3f5", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.6712328767123288, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "983c507e-f315-4c07-921a-105ffcb7101c", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.35714285714285715, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1efdac27-cbc6-487e-97bc-d56a8c8ff02b", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.6338028169014085, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e37ac0f6-8030-4b96-8558-4474c141c175", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.34285714285714286, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7ccc0da9-cee7-46eb-823b-7053bf243b2e", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.5555555555555556, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ad3c00a6-0eda-4ba9-a434-50f07cfc7f17", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.6578947368421053, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c37780ad-6532-4de7-be2d-122d71557e37", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.304635761589404, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a7091087-0c02-47ef-9343-3f7bb80d5c5c", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "340c7830-100b-405f-91f9-cf80c992d328", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.5617977528089888, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2eee3c18-4710-4521-bac5-c5ffeb0c8396", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.6133333333333333, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "36f3d2b5-2a44-4685-b1c8-5eb78d3bdccb", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.4854368932038835, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cf18b1bc-7197-46a9-b4bc-5dcc5f79dff8", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "09005c4b-dd93-4a3a-8b9a-29dfa6a96c81", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.5952380952380952, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "65c1855d-8ded-4040-9998-d255c249b20e", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.6527777777777778, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "12eee62b-5ad9-49b5-9c0c-45d992495249", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.4375, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8d85bf34-0162-4552-855b-35e2c361c380", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.5747126436781609, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a639c0be-99bc-4cc9-a39c-a1d356885077", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4347bf8a-69fb-4af3-8986-04a2104625e7", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.2552083333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ddc312fc-e780-4292-b170-1b5d73899a69", "source": "9a7016d8-c02a-4546-9c63-8a56fa582768", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f12e868f-b9e7-4d7a-a409-5fd06c4b9c3e", "source": "1d8cf59f-ab95-4b0c-a43a-70d1ddaa5686", "target": "0ab74ab8-46f6-40b9-84a3-f901312bfdd1", "similarity_coefficient": 0.5740740740740741, "overlap_size": 93, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ba77d403-7b86-438e-8167-52e969490637", "source": "1d8cf59f-ab95-4b0c-a43a-70d1ddaa5686", "target": "bc2a6276-c085-4011-a84b-10e3f2477948", "similarity_coefficient": 0.25, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "710fb3d1-7f72-4edd-b3de-8c6b1a8bfef9", "source": "1d8cf59f-ab95-4b0c-a43a-70d1ddaa5686", "target": "f43c9ccd-e7e0-4f61-add5-23a61fcdc9ce", "similarity_coefficient": 0.4592833876221498, "overlap_size": 141, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b4a9afb0-6ab8-4d4f-9eb9-307d38b85fb6", "source": "1d8cf59f-ab95-4b0c-a43a-70d1ddaa5686", "target": "22c84cad-f57f-4718-9687-42041195fe68", "similarity_coefficient": 0.6451612903225806, "overlap_size": 120, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "113867e4-a828-426b-ba97-3cc19369f865", "source": "1d8cf59f-ab95-4b0c-a43a-70d1ddaa5686", "target": "0270ca63-6518-40e4-a878-0eac4795f5b1", "similarity_coefficient": 0.2529002320185615, "overlap_size": 109, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dcead7b5-8b0f-43d6-8bd5-aff335b6181e", "source": "1d8cf59f-ab95-4b0c-a43a-70d1ddaa5686", "target": "ab7810f0-02db-4b8b-8f86-59cea7883939", "similarity_coefficient": 0.9074074074074074, "overlap_size": 147, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3bfa61d4-3381-4292-87e9-42717343fbb9", "source": "1d8cf59f-ab95-4b0c-a43a-70d1ddaa5686", "target": "e6bb490e-f542-4313-ba97-b4a675132dc9", "similarity_coefficient": 0.2634146341463415, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "21c3c63e-a7c9-4499-85aa-d638e723973a", "source": "1d8cf59f-ab95-4b0c-a43a-70d1ddaa5686", "target": "461f3447-3b67-49c7-a062-dbccf20a8c20", "similarity_coefficient": 0.3765432098765432, "overlap_size": 61, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "effb73a2-accc-4ed0-bc1c-74de9ee561b0", "source": "1d8cf59f-ab95-4b0c-a43a-70d1ddaa5686", "target": "1464dde0-7b27-424c-9e99-43dc975d4ea7", "similarity_coefficient": 0.5446428571428571, "overlap_size": 122, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9f4a3497-bfdd-4c29-933f-3aec553d8e68", "source": "1d8cf59f-ab95-4b0c-a43a-70d1ddaa5686", "target": "67655508-8724-4bec-ae04-0a0ccc497030", "similarity_coefficient": 0.422680412371134, "overlap_size": 82, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "38510c86-2269-4662-892d-a3916b50ddce", "source": "f7507f96-9e93-4751-bd0a-5d2409a9f865", "target": "e59b742f-7a21-4a50-8472-3500f07b5395", "similarity_coefficient": 0.9785714285714285, "overlap_size": 137, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ee9f6357-e560-4d3b-ae5b-af70ca3cd8f5", "source": "f7507f96-9e93-4751-bd0a-5d2409a9f865", "target": "26a34b5a-7453-430a-9bb8-98e6a9254169", "similarity_coefficient": 0.5357142857142857, "overlap_size": 75, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b509b52a-c8ca-4ac4-a78b-7cc5e561fcf4", "source": "1a0622b8-4328-4c5c-bc2e-ece6cda08863", "target": "b1a1c2a0-8eec-4de7-af7b-11db36d4c3d6", "similarity_coefficient": 0.45132743362831856, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "93776332-cc67-4414-872d-09bacb8ec83e", "source": "10740011-adbe-4860-8ab2-5207b6a96998", "target": "69c69d97-3401-431d-87ee-22f72bd12c57", "similarity_coefficient": 0.723404255319149, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c5b09f07-2b04-44af-8c12-17fc84c6dd79", "source": "10740011-adbe-4860-8ab2-5207b6a96998", "target": "ff8df9a9-f99a-4719-a96a-d64e1b3fc6f8", "similarity_coefficient": 0.7659574468085106, "overlap_size": 36, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a7be7bd8-a2c4-43e3-b59e-573902cca062", "source": "10740011-adbe-4860-8ab2-5207b6a96998", "target": "b06c44e2-b4c4-41c8-89aa-75e9f63e4d5b", "similarity_coefficient": 0.7659574468085106, "overlap_size": 36, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "09f6a636-6125-4650-9a54-f16e865bb575", "source": "10740011-adbe-4860-8ab2-5207b6a96998", "target": "256d4349-41ff-4f8d-84cf-712bd1e91eae", "similarity_coefficient": 0.3465346534653465, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "55c092f5-5397-49a0-a08c-b93f61d7731f", "source": "10740011-adbe-4860-8ab2-5207b6a96998", "target": "9d67ed9b-fc8b-44ae-be26-85d636c27b87", "similarity_coefficient": 0.265625, "overlap_size": 17, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f8fc6151-74aa-4014-ab65-8db1ec4ce578", "source": "10740011-adbe-4860-8ab2-5207b6a96998", "target": "f9b39331-d306-4809-b0c4-ce6e8a9a7e0d", "similarity_coefficient": 0.6666666666666666, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "71812c1b-e608-483f-9063-68dabba29caa", "source": "10740011-adbe-4860-8ab2-5207b6a96998", "target": "14f17c28-8038-49f6-a4ab-311c487adfa6", "similarity_coefficient": 0.8085106382978723, "overlap_size": 38, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3e4752af-5397-410d-b3d1-ca80a75d02f9", "source": "10740011-adbe-4860-8ab2-5207b6a96998", "target": "1bdb2d2d-fe7b-4e46-b699-76d58b12344d", "similarity_coefficient": 0.7916666666666666, "overlap_size": 38, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4bb04ada-fbaa-4696-8a90-47496300b60d", "source": "10740011-adbe-4860-8ab2-5207b6a96998", "target": "64d7c015-c260-4724-bd99-69ee54c28eed", "similarity_coefficient": 0.7659574468085106, "overlap_size": 36, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d054cdd5-e795-4fee-bfcb-37f3985a2f90", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0a982804-4359-4d17-9bd7-8540b6734c0e", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.30656934306569344, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "001a907f-f735-436a-bf9f-1748e8045550", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ddf760e4-ce6e-47d5-b34e-59b05143c2d8", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.8596491228070176, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "902031e4-a88a-4b51-adca-89a95007e4ca", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.6388888888888888, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f0729da5-7325-4007-af73-06dd7b10a149", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7d07030c-ba09-4e10-ab57-3045af3ede22", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.2916666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e1b86d81-2f6e-4de4-a587-ccf45395bf95", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "752e13e2-be0d-4e0b-ab64-ffaa1a041c8c", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.3898305084745763, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5bd28461-8c21-4a27-b4be-eb6f2cf43628", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7af3d84a-7f25-48db-9a0b-21ead678f70f", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "79c814f9-7ee2-4f6d-a36c-20e021a81332", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.3475177304964539, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bfa8571a-cea7-4d7c-8816-7163b2859bd1", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a8ff2db9-a725-4992-947c-36b88eb16f3b", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.6764705882352942, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "67938540-6f00-4bd4-a9e4-5fbf1e6a088f", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.3310810810810811, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cb65c9ce-2c07-4df2-bafb-ea704d485fa1", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.7666666666666667, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e1fc59a8-0a68-4f02-a1d8-6c574ef33cd3", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2dcd1dde-f9cc-4e46-a8db-c51700223c1e", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.2832369942196532, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7f4e18ab-d38a-4bd7-9c4f-c15110f4e1a3", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.532608695652174, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dc9f6645-3819-4ef5-b439-8a9ba7e98b05", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.5376344086021505, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7619e556-3de7-4b01-a12d-3214025fce2c", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c57cbe28-693e-442a-85c3-29e1ce3211d5", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.8596491228070176, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c40a80ce-5b25-4814-b3b3-97717d75e7eb", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "20c617bb-69f1-4acf-92c0-b429c0db1e11", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.2948717948717949, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2b8e0e10-aa56-49b1-99f4-1917e0ad8637", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.3983739837398374, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bc5c39eb-4022-40af-996b-40da98bcb456", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d2d3769f-67fe-46b7-9113-ee6907dd62de", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3c61ac06-ef30-4245-af6e-c1453b7365df", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "similarity_coefficient": 0.2752808988764045, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d0991198-bc10-439d-ab3a-dc9aa79eea1c", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e028182d-5cf1-485b-8a19-671026dc4d98", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.4946236559139785, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6d94304e-0efd-4565-b77a-7cd40d3a00ab", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.3769230769230769, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0fa43c0f-f2ac-4325-837b-39579b61102d", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.28994082840236685, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bffbadae-6416-405f-bb82-3c6cefd9cf11", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.34074074074074073, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "02822f06-2b78-483a-bd48-91e29a0457c3", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a7a5513c-3a69-494b-9a12-6fd1b1cca17a", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.30625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0479accf-d455-4eb2-8cb2-103110b79ba6", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.3116883116883117, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a01ab5e6-3420-499b-a8e4-df84f9c5750a", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.8596491228070176, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "75ef5e12-722c-470d-98cc-513321f54011", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "98fc3d36-d677-438f-99fb-37cfadf6dc88", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.29310344827586204, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9c42d3bd-3ca6-4511-b2d1-5936f74027c3", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.3161290322580645, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9a771aa4-96e3-4215-9813-af911de2234f", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.7538461538461538, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f46ddeea-8a09-4415-8feb-437bca485cf1", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.8909090909090909, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0fc46505-a1fa-4b27-a82d-75d6c0c098ad", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.3161290322580645, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b6b38125-6f12-40aa-9ca0-3616d59b2390", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.7627118644067796, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "924c96e4-2171-4083-9553-65f4176a2b53", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.532608695652174, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "850c7911-821d-47b8-9dcd-c02a60d91ad0", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.33093525179856115, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "69e2731a-2be2-40d7-a553-e9ec546b203c", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.7540983606557377, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2b1f83f3-cc05-4fa4-bd9f-da1d028e789d", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "36f1211d-df04-4a96-8c8a-2cf310bf1962", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.7538461538461538, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "61022dca-4c6f-4fa5-af2d-9da8d352564d", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.2722222222222222, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e2a0d008-f14d-4caa-b091-e35d90ef086f", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.5168539325842697, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b25af08e-016d-4ead-9621-f2adc1c44801", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.49, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c40e4e6e-2fb2-45e2-a7c5-397e1b1fd97f", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.5185185185185185, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d11df884-8696-4736-8822-7f9637a6e548", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.8596491228070176, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c8eabef9-4baa-46ab-aa9b-a3bfe173484e", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.7301587301587301, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1e720bd4-5c4d-4e99-8237-4f6fdc77cce3", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.6712328767123288, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "58d701b9-2404-4ecf-9bab-50b5ba8bfb43", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.41379310344827586, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8f21a3da-53b5-407b-b82c-fbfe78964ff2", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.627906976744186, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "29aec20a-b3b6-4fbd-8f50-2d3e6d1a934a", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.8032786885245902, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "266833d7-4bbc-4789-9108-e17de359a3c4", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9b83f666-0c72-4d0f-89d3-2b8bf82e48aa", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.7538461538461538, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ec44e189-c2d5-4a8b-adf2-2187e8249e61", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c25f5f20-f5b5-4442-98e9-e95dcfb0e5e8", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.620253164556962, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1a26b493-1b00-4bf6-ba0d-c0cbcf855a72", "source": "fa183792-34fc-4acf-bfca-d1c76db29c64", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.765625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "94e39838-10ff-42eb-86e3-e9a1036a96cd", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.4, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1e3cc3c4-bc7f-41a5-9393-db5b8b04e8e6", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.8032786885245902, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e425ca34-963e-4047-b52d-f651f918043f", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.5212765957446809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "20cae550-74c6-48a1-9f94-ab7ff69e3585", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.38016528925619836, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ff11a788-804f-461c-9051-bf94035a9bbf", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.3591549295774648, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4ebce1b5-4bde-45f3-896c-9f7d4dccdde1", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.696969696969697, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e6406ef7-f301-4abc-b4f8-47e930a4860b", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.3, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9e008857-0b94-4453-8186-06353821e909", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "469903c2-d923-4d7c-a56d-a93a44a43f18", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.550561797752809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1a525b29-2de1-42ce-9b6d-52a27137b9c0", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4f200058-b91a-4d49-9aad-636c861e7166", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.29411764705882354, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "62267889-b61d-42b1-81d2-18ea090946a2", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.5164835164835165, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "19ff7a4b-3884-4326-b6cf-8c14309e33ba", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.6133333333333333, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "47872919-0e8b-4156-8086-b296d31e20fd", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "feb90912-1089-4cc8-b687-047dab4e01b9", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.746268656716418, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fc0074ac-181a-4bc3-98b1-cdadc8d3a122", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.3923076923076923, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "46c22c35-1992-40f6-8aac-c75184b741c2", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.8333333333333334, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b40a4817-a6fd-452b-9d25-b83497ca4f11", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.39344262295081966, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "91c154a2-5bd5-40fa-bcae-cb0423068760", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "282f188a-7700-4485-8565-9fafa59db9d8", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.35135135135135137, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7ae21ffd-d16b-45ab-8cf0-d5664f80156e", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5c6735f0-b36b-4df6-bdeb-5490992c075b", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.765625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4ff54c9a-cc5f-4084-a574-72e7085a4eca", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.5604395604395604, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0697f90d-8e46-48da-a8be-9f9f888da4f6", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.647887323943662, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eafe1d80-ef9e-4455-bb92-9c9eef1c9b15", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.28488372093023256, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3a8be218-eaa4-413d-a901-967ad8359b60", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.323943661971831, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aafd8fa1-f429-4162-a86e-a7552c0a2ab6", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.746031746031746, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "49ceaf8b-f2cc-4a13-991e-b0c04e92eb1c", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6b0739c7-33b2-4db1-a3d4-6158316c4092", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.2677595628415301, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9f9d8994-0298-4031-9294-a1f01063c009", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "daedd646-0db5-4721-ae6c-a390a182d8e0", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.2808988764044944, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dacf0070-5c4c-40f5-a4aa-20d9cc147fad", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.5, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e3616019-4664-4aee-9a98-7e520d096516", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.3333333333333333, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "df452a7e-bb34-4c22-b1b2-826bd39d6335", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.7258064516129032, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "051e4e20-a062-4e8d-a5c1-768b39c1e23e", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ee49de2e-8814-4c22-b80d-64a19afa6442", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.6410256410256411, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7448078c-1798-498f-9bed-c5ce822b94b2", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e8843e85-6448-4be2-8961-949e25f91910", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "32c6999b-2bd4-4629-977d-a1a36e0d546b", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "similarity_coefficient": 0.27071823204419887, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "def84f55-567b-4f20-b0d9-97e1a985c1f6", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4e07b401-b6b2-42c3-a7c3-9c99381fcb03", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5f99fd51-b96f-4939-9258-10567c968d65", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.7538461538461538, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b0c56868-4f73-4e7e-9857-e57adae75e96", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1adf2705-4c69-47e1-bdf4-016cb0362970", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "26573a24-20be-45fd-ab88-7308e34735ec", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.2893081761006289, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "31562093-983b-4cbd-973b-6878c1b20563", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.3184713375796178, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "823d5ea6-1394-44e1-9de4-16eefa4426da", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.310126582278481, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f21e02a3-e685-45e9-9fd9-de1f8d6ba49a", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6419e3f6-74e3-413b-aa15-11d98c5d75f4", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.684931506849315, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d8cf50b5-ea91-4534-9424-8b636bb7c28e", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aea3af35-e69f-4f7a-9efa-c7906e337b5b", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3fa20d79-a5eb-4798-9580-71ab81c3a72b", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6fc95903-6526-434e-bbbe-0e345b120a68", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.3, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0f7503c1-e23b-4b2f-9b08-3a5ddec0c5e8", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.44144144144144143, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1ac01f33-42e6-4957-afbd-8c8a361ff0e8", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.7580645161290323, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "04be9320-41b4-4f80-87c2-008201dd69f7", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.4791666666666667, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7533dfa1-e754-4ab7-81c8-1e1cd41363a5", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.704225352112676, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "707b024b-e169-49f8-9ce0-ab9dd15b92aa", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ad16330c-e254-433d-aa39-f780c19ad940", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f4ad1bc2-d663-4597-bf58-de666c2e6b64", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "63d1be2a-5963-442a-bbd3-a3db01a72ab2", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.30864197530864196, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "281ec7aa-ce22-4a88-b98d-e2b70d8099d7", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.5555555555555556, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0b9cce92-d39e-413b-8027-140067733d4a", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b30bc3b2-e7b4-4e14-811f-19c417a96fde", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.2784090909090909, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a3792de1-8882-4f83-bba5-736256704885", "source": "57d94b89-2690-4568-a2e6-54350ce7270c", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.3684210526315789, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "68d2d802-d225-4ca1-a61c-79fd40b9775e", "source": "8a3a941c-4596-4073-8813-7e93e326c4f9", "target": "ff8df9a9-f99a-4719-a96a-d64e1b3fc6f8", "similarity_coefficient": 0.6486486486486487, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2b7055d5-761f-44cb-b956-1a27678ceb1e", "source": "8a3a941c-4596-4073-8813-7e93e326c4f9", "target": "256d4349-41ff-4f8d-84cf-712bd1e91eae", "similarity_coefficient": 0.26666666666666666, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "256241f7-c6bb-4b6a-8b91-57dd2fbd2f51", "source": "8a3a941c-4596-4073-8813-7e93e326c4f9", "target": "9d67ed9b-fc8b-44ae-be26-85d636c27b87", "similarity_coefficient": 0.3111111111111111, "overlap_size": 14, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e73ff8ca-38cb-4cc5-9004-a93061d86a18", "source": "8a3a941c-4596-4073-8813-7e93e326c4f9", "target": "1bdb2d2d-fe7b-4e46-b699-76d58b12344d", "similarity_coefficient": 0.6, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b0b057e0-be4c-44f0-be6d-aff2ca976fea", "source": "8a3a941c-4596-4073-8813-7e93e326c4f9", "target": "f9b39331-d306-4809-b0c4-ce6e8a9a7e0d", "similarity_coefficient": 0.6153846153846154, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "de8af5de-7827-4aa1-81e6-894bea0adc34", "source": "8a3a941c-4596-4073-8813-7e93e326c4f9", "target": "10740011-adbe-4860-8ab2-5207b6a96998", "similarity_coefficient": 0.5, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cb257142-be69-45c6-9d74-764b3848ab29", "source": "8a3a941c-4596-4073-8813-7e93e326c4f9", "target": "14f17c28-8038-49f6-a4ab-311c487adfa6", "similarity_coefficient": 0.6153846153846154, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eb416745-a3dc-4337-8f04-d5c12c69510d", "source": "8a3a941c-4596-4073-8813-7e93e326c4f9", "target": "64d7c015-c260-4724-bd99-69ee54c28eed", "similarity_coefficient": 0.6486486486486487, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "77369536-5ac1-4185-99cc-cbfc34d41a62", "source": "8a3a941c-4596-4073-8813-7e93e326c4f9", "target": "b06c44e2-b4c4-41c8-89aa-75e9f63e4d5b", "similarity_coefficient": 0.6486486486486487, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5273829e-100a-4d17-a7bb-0e54e75bbf64", "source": "8a3a941c-4596-4073-8813-7e93e326c4f9", "target": "69c69d97-3401-431d-87ee-22f72bd12c57", "similarity_coefficient": 0.6857142857142857, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3d083487-a3de-45a1-9115-590eb7f01b8c", "source": "06d062e3-d596-43d5-95b5-8ac20e8a9da1", "target": "9e3e86bf-2025-4b63-b74b-cb1efab9886e", "similarity_coefficient": 0.7746478873239436, "overlap_size": 110, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "12e7779b-7481-4837-afeb-5e5931cf693f", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.3629032258064516, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c52219b7-2a30-49f2-9edd-4a76c429800e", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.42857142857142855, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5dfa0b3c-05f6-41ec-91dc-25a89f4c2153", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.31690140845070425, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7d2f6d97-b106-4962-ac55-3cf3b326f0be", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5172413793103449, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dfd75b18-f996-40f4-adb9-f1274a94a28e", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.7377049180327869, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4a462689-ba44-4e64-8eab-bc9145b23227", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.6086956521739131, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9febe57c-a7c8-4405-b1c9-9d20008337f7", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.26627218934911245, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c873b192-fe15-4b84-a52d-51ea89680990", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.4666666666666667, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c11ad1b1-e8af-419f-8e4c-302fe36aaaa0", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.5753424657534246, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c2a96c8c-714d-4ff8-a806-0d863118391a", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.31343283582089554, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "72b1cd92-5859-45a0-b5c6-45f500e80f46", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.35294117647058826, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1de41249-cb0d-402c-be66-988d897a7af0", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.25862068965517243, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dcc6b087-8aee-4ccd-a1ab-6ac3419a0b1f", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.5232558139534884, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f4354ec0-11e0-4e6b-a6d4-a26e59276bfc", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.5357142857142857, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c0183089-1549-4f54-b022-5b241d853aba", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.7758620689655172, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e5cd1008-9da2-494d-b996-550ba80847fc", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.3435114503816794, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "43cc6bfa-5ef3-4e05-96db-c65499b5037f", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.7758620689655172, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ed5413e4-62f4-4cb7-9626-28d13387d686", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.44680851063829785, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ca7b0ba3-8730-4d47-86af-bf6212616bdd", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.5056179775280899, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "06139e9e-6aaa-4cf7-b44d-2a0ea66acc5c", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.2795031055900621, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cc451343-a832-43b0-b2f3-85314db336c2", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.7627118644067796, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ae954ae8-8319-4a3a-81a7-01b2373c925b", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.6885245901639344, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "288deffa-3e3e-499b-85ad-1e68c702fb46", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.6, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "43d3c8f7-1d7f-4e6f-a8cd-cb49a06f0df5", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.625, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "55679e0f-b4e1-4fb0-a21f-d5d2f6e7cf20", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.7758620689655172, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a09b34ab-b94a-4087-a427-a4e6127aab59", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.44554455445544555, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d2c1de30-c7e9-48e5-a02d-54a3958a5255", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.267515923566879, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a46af23e-4243-4345-a5ed-bc1d94437008", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "similarity_coefficient": 0.25139664804469275, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8a67190b-9e7c-4aa9-a555-027087ec7798", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.7142857142857143, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "08365a6b-8b80-4cc9-bf01-c1a0cff100e4", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.3088235294117647, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "775e8bd0-212b-4104-9426-5b6792f0f77f", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.2647058823529412, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6e50c0e6-7a03-4464-8e12-812a07ccc950", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.2542372881355932, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "149c37e3-0ab1-4547-9213-0b46fbe2c71b", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.8035714285714286, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7fdb1f38-839e-44f4-8ee8-c50d44e76018", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.30201342281879195, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b7ba2c8c-f8ac-46f5-8bba-586beeaa1894", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.6428571428571429, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7d40c86f-a393-41e0-a5e4-179c8d7f9d6d", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.41284403669724773, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e387dec6-25d4-43c0-8843-9230eedc0f6e", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.28846153846153844, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "378c5789-bfff-4886-9596-7f2ee2fe5f29", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.6818181818181818, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b28ecd8a-3908-4e7c-873f-662bbd09d6fa", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.47368421052631576, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "73d49915-cda6-47ce-a994-f000a73f4588", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.28846153846153844, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0f800c71-9fbe-47cc-8909-63936691a2d4", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.2894736842105263, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b6884e98-c4ed-4c3b-8d01-4d31a6557aa7", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.4838709677419355, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7abf75fb-17a2-4f68-add5-2e74f387caf9", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.7142857142857143, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f22c6124-f916-47c4-8941-e683c8c41ed4", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.35658914728682173, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "183c858e-8f1e-42e0-9d12-1e1629b611eb", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.5625, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "edd9025d-1547-4eee-90bc-ce9a04f291b4", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.6818181818181818, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f141511b-b821-4a83-9fd9-f74413fc6753", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.7627118644067796, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5a801380-473d-482e-99a2-9a11061dc15f", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.38596491228070173, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cf4b3522-e25d-4990-8b4e-1c3d96c8d881", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.7758620689655172, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "32d165e9-3780-49b6-a2f5-86b603c272f0", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.625, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d973999f-4ea9-4539-b210-e6791f310c45", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.8035714285714286, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "744c9488-2608-4b6a-beb5-b1767b81cdfd", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.569620253164557, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a3a21640-fbea-4f59-94aa-daa721a221b6", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.5844155844155844, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "506c4357-dc99-41db-b3d1-9cef1be90932", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.6923076923076923, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b87d0c62-a6b4-4efb-a97e-b01759fff58b", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.6818181818181818, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aa7513bd-795e-46c8-97e0-45878ab7d553", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.7258064516129032, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c2248b36-9399-4485-b892-6ddac4f74f86", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.75, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b5921060-f396-40f4-8214-2bc16d11bf67", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.5384615384615384, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f2c8786c-8cd6-436a-a11a-ee7082c45a7d", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.4945054945054945, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "94520a5a-dbe5-47d7-ad73-d9a75cbbe60e", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.65625, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e1e7052a-e694-4755-851c-ebf5b9c1b5cb", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.6774193548387096, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aab87790-76a4-4151-a2a3-71de3b1c9264", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.4891304347826087, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e45b663e-f541-4512-ae98-c5fe56c916e7", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.6081081081081081, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5eb6ac42-0ca8-4f00-88e8-f1230e039b18", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.4838709677419355, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "75f9f5cb-1014-49d3-bdc4-66c7eaae2a17", "source": "412c2f5e-80df-4720-b071-d87cc4617b5b", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.3, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9a6b83ff-dbd9-4743-9179-28ee7e675586", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.3387096774193548, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b3ed3f96-31cc-4cce-936b-d3155c7c76de", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.3684210526315789, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "61cd20f0-44b1-4c86-9bdc-cf4fdc882da6", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c10b4269-1b6c-4218-a97d-484054be3b84", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.4411764705882353, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "98599cad-9e46-4335-a4da-84b6e56a2ff5", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.4132231404958678, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8cfda2fd-79e6-418d-a2a4-dd47565a4175", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.49523809523809526, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "07a6ca18-7619-4615-b382-fcb1fdd5790d", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.3582089552238806, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ff44caae-1c79-4547-9324-17080a6a28a7", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.26666666666666666, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c750e287-d35e-4995-bd38-0a826f1d65b6", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.4339622641509434, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "599c685e-aa4f-4a0d-ad5d-d13a11535c0b", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.47058823529411764, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8369aae1-90bd-4861-98c2-955ee51c5655", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.6185567010309279, "overlap_size": 60, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "126d08a6-9a2c-433a-9295-179874f941d4", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.40625, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "71a9a9a4-ecb2-4cbd-a5e4-8fb0e569f18b", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.26, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2b3dd7f0-3102-46aa-bef1-2511f964a658", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.37593984962406013, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "85c309de-0094-44a9-ac33-22ee472b52ed", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.25380710659898476, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6adfa73f-8992-47b8-a67c-b0bf26cdd4ce", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.48, "overlap_size": 72, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1ac0b6d3-9020-42de-83a4-790c079b849b", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.38764044943820225, "overlap_size": 69, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eb1fa9d6-ca14-4038-b9d0-42d51e3009ea", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.287292817679558, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "20cf5dc5-3b10-42ea-89b1-5dbf829e9c1c", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.5, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5d898e86-3cff-42d8-906e-503fb7014d55", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1506ed33-6b87-4d87-985d-f6c35436c47d", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.36923076923076925, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a956757d-fb11-47b5-bdf4-fc6f20b3c3e0", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.25, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "54c83e0c-14e5-407a-8066-9d622dc97c58", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d416c84e-c484-4729-ae93-d4bac7b5d839", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.41228070175438597, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d2bbb07d-2d8f-4145-8a1a-475d0e2af419", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.29375, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "72053fc2-5da5-46a7-a30b-458c4023e49f", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.48514851485148514, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8951220d-50aa-4483-8a25-22284c26f5f7", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.3313253012048193, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "02dafdd6-958a-4b18-9948-874b99434544", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.4375, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c65d8376-a947-4564-8d6b-956a298ca13a", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.45535714285714285, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c1ca1442-d58a-4809-a67b-596fc0e26508", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.6542056074766355, "overlap_size": 70, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3d50fd05-cdc6-45b9-a4fd-ef10498d50c8", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.3888888888888889, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ab3de6c9-5000-48e9-af02-2f50c57a2c27", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b07843e5-9997-4f88-ba5d-e918ccbe5f71", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.4368932038834951, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9900a5b2-c470-408e-b191-50518bd0df09", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.4166666666666667, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dec5c139-bdfd-4889-a028-867428c79254", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.40458015267175573, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eafec852-2b6a-47a0-8642-5b6c79a29a7a", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.43478260869565216, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e16a0592-dcf0-4d25-90d3-470ec7676171", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.49, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6e1f558e-6df8-4782-941a-75df2ab05379", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.49, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2d949c7f-b8c5-4627-b6d3-2a3e0530205f", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.34265734265734266, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9579182b-8c6c-41ca-94da-9cce3033fe65", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.4358974358974359, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "09621460-eaa1-470e-8bac-0d0079b954cc", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.49, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "168471d6-2c2b-4ea9-9417-395529b42499", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.49, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "34161d24-11e4-4ece-a026-2009aee38bdf", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b645cb06-582a-493a-98aa-1ad7d9864d9f", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.49, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e66a107d-a701-4c32-acf6-112718aa36eb", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3e65ece7-36c8-4006-a0f3-4814b5a19a6d", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.48514851485148514, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9f3f8f8a-20db-480a-bf4c-8be02abb35c4", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "similarity_coefficient": 0.3917525773195876, "overlap_size": 76, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "512c0459-d607-42a0-8273-926a682433b4", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.4306569343065693, "overlap_size": 59, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a77d79e7-edd2-4544-8b41-e2f70f8b0bfc", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.31097560975609756, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "341f064a-ea75-470c-995d-4a5ecf8a4588", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.3882978723404255, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "37673985-a0b5-47da-b231-d792dc3e1369", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.4298245614035088, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1784aee6-6489-48f1-a3c5-1762551993df", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.2655367231638418, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "323986a3-3070-40f8-bd1b-b317fb16a04f", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.44036697247706424, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "331724a7-f7d5-47ee-8c41-d8dae3383970", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.52, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8f4f9434-89d3-4ce1-9dae-9bddaec9c3c4", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.40458015267175573, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9377de0a-fbc5-40ab-83fd-85cadfb18b81", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2b97b3bd-7833-4261-8f4b-87c27490c882", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.424, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d3117bc4-635b-4b9f-8d10-a668266cc94a", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.31868131868131866, "overlap_size": 58, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bda56a6a-5b6a-47ba-a3e4-63cc23d9aa76", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.5503875968992248, "overlap_size": 71, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ad45a77c-9407-48f3-9098-17289cd5dcdc", "source": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.35766423357664234, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b3a4cbe3-8625-4c38-9ad4-b6935222657d", "source": "a8aef0ec-aa2f-49d5-8433-fa9fde46516a", "target": "461f3447-3b67-49c7-a062-dbccf20a8c20", "similarity_coefficient": 0.25806451612903225, "overlap_size": 16, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "06c47329-151f-43f1-9aff-f64fe4fcd16b", "source": "a8aef0ec-aa2f-49d5-8433-fa9fde46516a", "target": "62d1a2a4-a8b0-4330-9997-0e0c05099ea3", "similarity_coefficient": 0.7727272727272727, "overlap_size": 17, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "27a02ae7-d4e9-49e1-90f1-5431cf43f160", "source": "a8aef0ec-aa2f-49d5-8433-fa9fde46516a", "target": "a450000b-f013-47c9-a2c2-1c6c86d9edec", "similarity_coefficient": 1, "overlap_size": 17, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dc73bf9c-87c6-4318-a550-9e1c056e199d", "source": "a8aef0ec-aa2f-49d5-8433-fa9fde46516a", "target": "ed852b58-9ecc-4c4e-aa04-d50a951c9801", "similarity_coefficient": 0.4722222222222222, "overlap_size": 17, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bd672388-f321-4f07-9f63-bb01daaa6bb0", "source": "c06a9173-9c53-4b4e-b8e3-6869d4ef68b7", "target": "f9b39331-d306-4809-b0c4-ce6e8a9a7e0d", "similarity_coefficient": 0.8947368421052632, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2dd0a13f-0e8f-47d3-bc7a-93d7180be10b", "source": "c06a9173-9c53-4b4e-b8e3-6869d4ef68b7", "target": "69c69d97-3401-431d-87ee-22f72bd12c57", "similarity_coefficient": 1, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "73be1d88-e725-4aaf-9a91-6cb1e72a57ba", "source": "c06a9173-9c53-4b4e-b8e3-6869d4ef68b7", "target": "b06c44e2-b4c4-41c8-89aa-75e9f63e4d5b", "similarity_coefficient": 0.9444444444444444, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b0190dd9-d962-4fcf-b6c1-d14591efa7a8", "source": "c06a9173-9c53-4b4e-b8e3-6869d4ef68b7", "target": "14f17c28-8038-49f6-a4ab-311c487adfa6", "similarity_coefficient": 0.8947368421052632, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b419b8d3-8ad5-4edb-946d-6853780e7857", "source": "c06a9173-9c53-4b4e-b8e3-6869d4ef68b7", "target": "ff8df9a9-f99a-4719-a96a-d64e1b3fc6f8", "similarity_coefficient": 0.9444444444444444, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bb3616d0-f983-4f32-979c-c50e87bdab02", "source": "c06a9173-9c53-4b4e-b8e3-6869d4ef68b7", "target": "8a3a941c-4596-4073-8813-7e93e326c4f9", "similarity_coefficient": 0.6857142857142857, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bc4eff60-6899-4b69-9e88-7496bb85079b", "source": "c06a9173-9c53-4b4e-b8e3-6869d4ef68b7", "target": "64d7c015-c260-4724-bd99-69ee54c28eed", "similarity_coefficient": 0.9444444444444444, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "90a7b312-5d58-45ba-adde-817c721eb498", "source": "c06a9173-9c53-4b4e-b8e3-6869d4ef68b7", "target": "1bdb2d2d-fe7b-4e46-b699-76d58b12344d", "similarity_coefficient": 0.8717948717948718, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "21a52d09-26bb-424b-8c70-d9737257870a", "source": "c06a9173-9c53-4b4e-b8e3-6869d4ef68b7", "target": "9d67ed9b-fc8b-44ae-be26-85d636c27b87", "similarity_coefficient": 0.3333333333333333, "overlap_size": 17, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "516ed21a-75db-4067-a366-117f666c0958", "source": "c06a9173-9c53-4b4e-b8e3-6869d4ef68b7", "target": "10740011-adbe-4860-8ab2-5207b6a96998", "similarity_coefficient": 0.723404255319149, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bc63cbf3-08a8-42d3-babc-1a1253644330", "source": "c06a9173-9c53-4b4e-b8e3-6869d4ef68b7", "target": "256d4349-41ff-4f8d-84cf-712bd1e91eae", "similarity_coefficient": 0.38202247191011235, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e26f5047-199f-48b7-888e-c52ce294fd07", "source": "ea795ff2-a61a-4bd6-9894-09cfcb204ea5", "target": "8102549a-740f-4e81-9373-b6d30e8cdc60", "similarity_coefficient": 0.29012345679012347, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "377503b4-fadd-4b6c-9920-d68a037e9924", "source": "ea795ff2-a61a-4bd6-9894-09cfcb204ea5", "target": "25a9a2af-f609-47a7-a75e-59c026281cf8", "similarity_coefficient": 0.2948717948717949, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "be7b50af-2e7c-40eb-931e-8a8bb777ccca", "source": "ea795ff2-a61a-4bd6-9894-09cfcb204ea5", "target": "27a9f866-bb13-4a50-ba51-615e2b2c6b56", "similarity_coefficient": 0.296969696969697, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f449b120-b0ab-4f62-8371-ba3fd61f7f74", "source": "ea795ff2-a61a-4bd6-9894-09cfcb204ea5", "target": "34e491a2-88ea-4d07-8f26-597638ce6d2f", "similarity_coefficient": 0.34615384615384615, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d237b06d-401f-4706-bffd-9dc5d44a61da", "source": "ea795ff2-a61a-4bd6-9894-09cfcb204ea5", "target": "f5736009-a954-42de-861b-494d7e1ef269", "similarity_coefficient": 0.5128205128205128, "overlap_size": 80, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "66597d89-8b3f-4f72-b526-e8b99a636a55", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.33783783783783783, "overlap_size": 25, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "be777a01-756e-4456-98ed-1b9ce24b14fe", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.51, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a900b210-d360-4ef3-958d-fb1813c2e3c1", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.3829787234042553, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "69e7af54-139f-41fc-8f52-49158576a613", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.49, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "066d8665-1b2c-4463-abf0-547e1e4820a0", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.68, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e22360ba-af93-4954-ab53-ba12d4ddba1e", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.6756756756756757, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "92e56e7d-3510-43d4-9b94-cc3d10bc4882", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.28104575163398693, "overlap_size": 43, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c17c063f-8c8b-42b7-90c8-e8e2f5db289d", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.44144144144144143, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "559b60ef-18f7-4e1b-929d-ddbb582e5a6a", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.5882352941176471, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "74d12fa2-d3b9-4965-9fe6-fd20dc8118f0", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.5168539325842697, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "67177823-c5b6-439a-89f8-2f14330dd706", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.3, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ed50abe4-84d5-4098-abfb-70392d648ed7", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.4146341463414634, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9fb6b352-3332-4d5a-a974-3dd831fd01dd", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b41ac239-02ac-4118-97d1-ebd426ade24a", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.34074074074074073, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fed49d52-fc4a-4c73-b8a4-24a9d9fa399c", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.49056603773584906, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f83b0a74-0da0-4c6e-9535-c95c8af02fe5", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.3048780487804878, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "27808ecc-4070-4cfd-b7fe-e012facea098", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.2604166666666667, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "92c99c41-72af-4104-b34b-c033e0fcf7fd", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "757015ea-6a15-419b-af72-b5cedc09c5c6", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.6153846153846154, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "22d052d4-5afc-4142-8545-de1a5463bf59", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0ecc0f0c-a818-416c-842f-e62562d40797", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4646f1e9-621e-4cc5-bee4-48cfb6663a0b", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.5844155844155844, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ff87ebb6-ed18-46aa-80ef-1b8dc356e9a2", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e1c74d06-87ba-4070-96f0-9608bb347d22", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.5747126436781609, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ebee69da-c5fb-41e7-9999-46225446cf43", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.5319148936170213, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3b33a52e-02b4-490d-a382-61ac355e79f3", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.5921052631578947, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0dd716bd-aa11-4b58-8228-5e96db6142ba", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.6375, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "35fd8f18-d7ba-4957-a740-cd4187969b6a", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5e0c63fc-7dfc-4f0a-b542-34ff3a05de20", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e7cfbc3c-cc39-463d-80b5-5dcd29fc5b85", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a35545f4-96cd-4a7b-936b-bad82d9fbd98", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.4857142857142857, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ec01dcc9-414f-4b2f-9863-490b3e9241f0", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2e13e124-f019-4405-a660-2c91447cd5ac", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.42857142857142855, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "40dd4114-e69a-4106-9b75-098d6740b1d9", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.5955056179775281, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cbd76599-1936-4758-9c69-89c79c1bb139", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.3202614379084967, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "22c0a231-8a7e-4972-ab29-62c0c55513a5", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a638e8a3-9b8c-4408-ae6c-03f57bec95e7", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.49056603773584906, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "12dc6abd-2e48-4926-b6ec-aaee9444d0fd", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b9dd9a56-5f66-49b8-96ce-231442865d7d", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.2553191489361702, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d668b73e-cd04-41cc-a748-db87f633f1e4", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "55637353-f78f-4274-8212-6c95888264f3", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cc9b47bd-4644-4281-a395-aa2e78a5da7a", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.6582278481012658, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c07accfb-1b58-4982-94a0-ba46b69671b0", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.4358974358974359, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "87c7d53f-d8dc-463e-8472-a1147ee306d3", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.3026315789473684, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "19d3cd1e-8d2e-4353-8698-bd3f681e62f2", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.28488372093023256, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c5821240-341e-47d4-9159-e92ed8ddf116", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.27717391304347827, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "79ed9272-932c-4475-97da-3bf77ebeb302", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.3076923076923077, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b353a3f0-4e1e-4a69-b775-5257dba9a511", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ed50d8d8-9aca-4fdf-9fb3-b59bfc710967", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cee4f8ed-4d59-4cf3-a693-dbd7f670d785", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.5555555555555556, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e8a8d910-40a0-4210-b584-cced6f30bd55", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.620253164556962, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2e2edf6d-71a6-4321-ac5a-3b5269523711", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.28823529411764703, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2671e014-30db-4fb8-b336-4965f3965487", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.35294117647058826, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fd8af1e0-2a5a-4dad-a0a0-8c45e35b20ad", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dc7e78b6-feb8-4392-b263-a73c201ef9e4", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.6016949152542372, "overlap_size": 71, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d16e8aa0-5d3a-4d48-9045-b9b49f8bac85", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.504950495049505, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "03118e39-9a21-4c4c-9cb3-97b6c67a271c", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.42857142857142855, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6794fcd4-fd50-4c4b-b68c-ed79c5cf2c21", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.6410256410256411, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b7ccffb2-9dd4-4c4b-8cd7-c9ded7ce006f", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.684931506849315, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6dfe2b46-1ca2-4342-8740-96f4865ef80e", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.684931506849315, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e56167dc-d751-4bd0-8b31-d12fa3173a8b", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.35172413793103446, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "00b288fd-1a31-476a-8505-0781522ae821", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.2578947368421053, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "842ba1a4-b418-46bb-a1a0-0a729f361016", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.5247524752475248, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9ad1be23-4d30-4eb4-b676-5f455d554783", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "895a845e-0c53-403b-8f1e-a11ed04aed55", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "similarity_coefficient": 0.26424870466321243, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5af0a4b2-7d1d-4cd6-9b63-55ed075358ff", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "63cec606-182f-4e5e-a29e-f04ba6f7d48c", "source": "04ea30a0-7312-41f6-b859-9e304fe95c67", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.3063583815028902, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b98c1052-34f3-440f-9d59-cfe63c2c92e1", "source": "bc280fd1-a6bb-4cf7-9b2f-d34311076e45", "target": "58278b87-f7c8-4544-aa45-b17322914faf", "similarity_coefficient": 0.46215780998389694, "overlap_size": 287, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "718ff7f5-9f00-4aa0-bd18-43e374c3e582", "source": "a8e9823f-492f-4be4-9285-500b1804fc4e", "target": "9b6b9423-ac94-4636-9f16-0332d7da5f6e", "similarity_coefficient": 0.3282051282051282, "overlap_size": 64, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "498945e0-07f6-48ba-9ac9-a1e49db96b01", "source": "a621af3e-84e2-40c3-8971-2cc382647573", "target": "14401d8b-b7f0-4300-a60a-80084c2e1e78", "similarity_coefficient": 0.26804123711340205, "overlap_size": 26, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e76d1fd9-5c1e-4ba6-9f59-f0e05517282d", "source": "a621af3e-84e2-40c3-8971-2cc382647573", "target": "f63f3d19-3430-449b-95e1-efa9cce6e635", "similarity_coefficient": 0.3064516129032258, "overlap_size": 76, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4dbdc7b9-1097-4ad7-8567-5bdb9b9e8b09", "source": "a621af3e-84e2-40c3-8971-2cc382647573", "target": "724b736d-2cbf-4933-8e53-32614c9a7d66", "similarity_coefficient": 0.25274725274725274, "overlap_size": 23, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4a5f4a47-09d9-4959-9d77-7a6302588741", "source": "a621af3e-84e2-40c3-8971-2cc382647573", "target": "b1f8bc26-b379-46a2-9104-c4aee4fd545d", "similarity_coefficient": 0.26373626373626374, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c8d0491a-234b-428e-8404-c8242dc17a83", "source": "7436d07c-5519-4cba-b1e6-9911da634955", "target": "9addc916-184e-474a-b9ed-6a77433bcfb5", "similarity_coefficient": 0.3547400611620795, "overlap_size": 232, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8e6e2c96-1f5b-4d0e-9126-763e28d52141", "source": "7436d07c-5519-4cba-b1e6-9911da634955", "target": "6b221283-c77c-42da-84e1-a571f4b878ff", "similarity_coefficient": 0.2756183745583039, "overlap_size": 156, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "df9749a6-08b9-4a9a-9e4f-5f68b81943c6", "source": "7436d07c-5519-4cba-b1e6-9911da634955", "target": "65022cea-7483-4689-8ce5-ee987795bedc", "similarity_coefficient": 0.3162853297442799, "overlap_size": 235, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1ada1df8-b3ae-41ea-a94e-bfb89d17e26e", "source": "8c62d23a-e9c6-43e0-bd9a-536f1f486194", "target": "d078c60c-b5d5-42cd-a5d7-a780f23a8090", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f58bf859-5c85-4b45-9365-a47bb3aa71c3", "source": "8c62d23a-e9c6-43e0-bd9a-536f1f486194", "target": "e97d3933-d924-4c41-8e4d-ae17bd34263c", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "decf0dc3-0655-4a51-a199-583624ae3b31", "source": "8c62d23a-e9c6-43e0-bd9a-536f1f486194", "target": "a43c5c6e-b75a-46eb-ad38-bf93f14d030c", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5ab41ea5-fde6-4b32-9072-faab06dd77bb", "source": "8c62d23a-e9c6-43e0-bd9a-536f1f486194", "target": "3e8dd08d-a111-414e-905a-faeed681e3f5", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2917d4f2-e0ee-4eae-a548-eb480bb3f609", "source": "8c62d23a-e9c6-43e0-bd9a-536f1f486194", "target": "e6bdd19b-66e3-45e2-b2b1-92f658ccc62b", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "010c1c28-671b-4cfc-857b-8439d6c13f81", "source": "8c62d23a-e9c6-43e0-bd9a-536f1f486194", "target": "beb79ccf-a196-43d0-86ff-773092ba3490", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f144c05a-ed89-4785-a236-dd4482c74684", "source": "8c62d23a-e9c6-43e0-bd9a-536f1f486194", "target": "89ef528a-6736-4b29-9138-7a11a722353d", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "277fad8b-3794-47b7-b9f8-3b6133feeafa", "source": "8c62d23a-e9c6-43e0-bd9a-536f1f486194", "target": "5db5ed69-b4e2-485d-b78c-1b47eb326935", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "649c61d5-21c9-423d-9ba6-3ed42e51f10d", "source": "8c62d23a-e9c6-43e0-bd9a-536f1f486194", "target": "f45e0bc4-6f9f-417b-b48f-de0017b4ee5a", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "743612a7-b42a-4c14-b261-3e09b0d18910", "source": "8c62d23a-e9c6-43e0-bd9a-536f1f486194", "target": "4972b393-f94e-4331-9cd4-206ae4786f51", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c498b760-8185-431b-82d7-70b7fcb16269", "source": "8c62d23a-e9c6-43e0-bd9a-536f1f486194", "target": "218e964f-2842-43f5-825a-917591457798", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3948b81e-1caf-461f-8299-9ab38bbc9afc", "source": "7d2294ef-daaa-4789-a914-58ae7a93dc6c", "target": "0f7b01fe-5b51-40e9-acce-a2292ccc2a52", "similarity_coefficient": 0.8125, "overlap_size": 39, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8fe5f8fd-e665-4295-868e-bd0c51b50fe8", "source": "97242c8d-dd1c-43d3-b795-c8546fb204aa", "target": "763e4196-95c7-47ff-8ba9-808223cde662", "similarity_coefficient": 0.3129251700680272, "overlap_size": 138, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d1d1a5c4-a090-45de-bee6-ff69855f8ea8", "source": "97242c8d-dd1c-43d3-b795-c8546fb204aa", "target": "2cd596f4-3461-429e-a594-a3fa378f86eb", "similarity_coefficient": 0.44786729857819907, "overlap_size": 189, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b52eb926-6394-4028-b7a2-a36bedcb6cf6", "source": "97242c8d-dd1c-43d3-b795-c8546fb204aa", "target": "40582abf-bf91-41a1-942a-f17b2aee8b72", "similarity_coefficient": 0.3246445497630332, "overlap_size": 137, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d585a230-2679-498b-ba1f-db6eff3368c9", "source": "97242c8d-dd1c-43d3-b795-c8546fb204aa", "target": "65022cea-7483-4689-8ce5-ee987795bedc", "similarity_coefficient": 0.33495736906211937, "overlap_size": 275, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d1024b96-3f84-4912-80fb-009828f1375f", "source": "97242c8d-dd1c-43d3-b795-c8546fb204aa", "target": "11b58f65-f23a-44f1-b169-1c79f44b4519", "similarity_coefficient": 0.4075829383886256, "overlap_size": 172, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "36d5d9a8-5870-4998-bbf6-0b21925c4200", "source": "97242c8d-dd1c-43d3-b795-c8546fb204aa", "target": "93bb5f8a-51a6-4222-9790-2b87e4216040", "similarity_coefficient": 0.542654028436019, "overlap_size": 229, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2b8bcae9-c425-492d-8a3c-ce3c9bfec86c", "source": "97242c8d-dd1c-43d3-b795-c8546fb204aa", "target": "049142b9-19dd-4af1-896a-e365acc9098d", "similarity_coefficient": 0.2616279069767442, "overlap_size": 180, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "88d9d9d4-b748-4370-b47f-ff226959635d", "source": "e29e5a88-b753-4a0e-802f-9785a3f344a3", "target": "4a0b61b9-4b5f-4854-888c-d24f120dc0e4", "similarity_coefficient": 0.3067226890756303, "overlap_size": 219, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1720c1c9-422b-45a4-b7e7-eff6d38f75ee", "source": "e29e5a88-b753-4a0e-802f-9785a3f344a3", "target": "fb423d6b-dc3c-400a-8cb4-cfcf5aea4500", "similarity_coefficient": 0.3050139275766017, "overlap_size": 219, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d8378cd4-a95b-4cbd-9268-737b6fd1d3f8", "source": "e29e5a88-b753-4a0e-802f-9785a3f344a3", "target": "0a98c49d-d1c0-46f9-9b40-1998ea452849", "similarity_coefficient": 0.3067226890756303, "overlap_size": 219, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2dc39172-1f45-4d81-98f8-8a23836dde03", "source": "e29e5a88-b753-4a0e-802f-9785a3f344a3", "target": "f127255f-9ab3-4cc9-80ae-d598f0105419", "similarity_coefficient": 0.2746268656716418, "overlap_size": 184, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7c7b2f8c-ca3e-4669-b35d-0e8856dd9404", "source": "e29e5a88-b753-4a0e-802f-9785a3f344a3", "target": "623310f5-8d59-43b9-bdde-0d30cde60c99", "similarity_coefficient": 0.27611940298507465, "overlap_size": 185, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1c803461-45c3-4c4d-8427-f847931da15a", "source": "57fe1863-184d-45be-85f7-d5b9b0780955", "target": "88ecc602-cca5-455e-bc02-3d57566d1f39", "similarity_coefficient": 0.7384615384615385, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b575c273-6bdc-4130-9d43-2d4148a01c61", "source": "d13d294e-d144-42b1-93b4-924e605c2903", "target": "1cd8c8a0-7921-46cb-b5c5-5be2eef5efff", "similarity_coefficient": 0.27906976744186046, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "13bf76ba-9e6f-4265-8295-62683ecdd888", "source": "d13d294e-d144-42b1-93b4-924e605c2903", "target": "34e491a2-88ea-4d07-8f26-597638ce6d2f", "similarity_coefficient": 0.627906976744186, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "127d7a50-100d-455f-8ba1-277f7ba0de5b", "source": "d13d294e-d144-42b1-93b4-924e605c2903", "target": "ea795ff2-a61a-4bd6-9894-09cfcb204ea5", "similarity_coefficient": 0.5512820512820513, "overlap_size": 86, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c4df6537-8250-4749-a151-229b7abf279c", "source": "d13d294e-d144-42b1-93b4-924e605c2903", "target": "f5736009-a954-42de-861b-494d7e1ef269", "similarity_coefficient": 0.4954954954954955, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2e87bda5-af81-4fb9-9198-35fdcb75527f", "source": "203837ef-155a-41f5-88ce-17e447837c86", "target": "e28bc43f-7116-4972-bf76-e15d1b1cebd5", "similarity_coefficient": 0.7252747252747253, "overlap_size": 66, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4f7858c6-9fa6-4f35-a094-44b735485b13", "source": "203837ef-155a-41f5-88ce-17e447837c86", "target": "a450000b-f013-47c9-a2c2-1c6c86d9edec", "similarity_coefficient": 0.25757575757575757, "overlap_size": 17, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c4564d64-1763-418f-9462-7a3f2b7062b3", "source": "203837ef-155a-41f5-88ce-17e447837c86", "target": "a8aef0ec-aa2f-49d5-8433-fa9fde46516a", "similarity_coefficient": 0.25757575757575757, "overlap_size": 17, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a34f2461-5f2d-477e-a6ff-680e40b9a789", "source": "203837ef-155a-41f5-88ce-17e447837c86", "target": "ed852b58-9ecc-4c4e-aa04-d50a951c9801", "similarity_coefficient": 0.5454545454545454, "overlap_size": 36, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7a385237-2473-4923-bcbf-7882fe764f68", "source": "203837ef-155a-41f5-88ce-17e447837c86", "target": "62d1a2a4-a8b0-4330-9997-0e0c05099ea3", "similarity_coefficient": 0.3333333333333333, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ebde8afb-6450-4809-9a24-6142dbaff0b5", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0c580230-cc7d-47c6-a93c-a4619613dd7f", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "da6747d6-e150-406e-b9f1-81765a0ac735", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e3e37874-acc7-4a24-9fc2-ced22eda59fc", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f970711e-8c56-4a37-b6b6-b693e530cc85", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "similarity_coefficient": 0.7956989247311828, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "653dfc62-224b-4984-a044-587232abee98", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cc547573-256f-4d7a-a3b8-d7956859d28d", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "19135f7a-cbbf-42ce-b597-3aa710f81fd7", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "902118a0-5172-4f18-9f97-132c54a29939", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "868604a2-809b-43bf-97f8-7d956608ccae", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6ad0cec1-ce48-4578-947c-88fabfdf7167", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "da25d61f-4f4c-48fa-88c1-9686f00607a2", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.6554621848739496, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "09c7ae84-b165-4349-a165-0e9d4e8bed45", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "similarity_coefficient": 0.6220472440944882, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b0244d31-cff8-4fe8-b1da-cb08615ca0a7", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2622be46-5793-4c67-ba9a-bbf5256fdd1f", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "305173f1-75bd-47fb-82ff-deee41f15d7a", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dd2b11a4-4412-43cb-8167-0c98d8613221", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "62c6994e-206a-4a4e-a0df-fdcb658e8716", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0cf69f55-902c-4096-b568-d9db85434f48", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "094e5e6f-678c-4ae9-8443-c468ffd9a738", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "27d7cf7e-3b1b-47d1-b5c4-db8e85982d29", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "da89a79f-6f03-491e-a8bd-2d859392ee46", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2f77491f-51d1-4aaa-aae2-cf81f1d6eb4b", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "75002afc-2910-450e-9430-a43577e4a1c4", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b699540d-f358-4cc3-a79a-73f9b21d4455", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "93923562-eaf7-4002-9191-c1a1a3a08e53", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "535efb1c-961f-4dee-a6a8-e17093b66a15", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "92fa480e-31c3-4669-95e7-3d2bb01cfc98", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e0b20916-d466-4bc2-a9c5-acc83d823773", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4302377e-f644-4bd2-94a3-2c04642dec78", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7f5d1ec3-ddea-4e2b-83ab-77534e7854af", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "06561770-802e-4440-a996-2f96c170a992", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f2abb0b5-1c46-437e-9d54-17fa0837921b", "source": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "847be70b-c01a-4b0e-9dc9-485ffe8e3a47", "source": "72911cb8-04f8-4a6d-95a9-845ffe95d894", "target": "f71cb3b6-c7e0-4a22-b9d5-e64e1c7579fd", "similarity_coefficient": 0.74, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9b9a4a65-7fa7-4e41-ad43-058ce561e90c", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.27692307692307694, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "371ee1f9-c8bf-467f-a0ac-7300ca0682e8", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.2631578947368421, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f2fbba8e-fdb1-4c2c-a83e-2a7a9c67eb37", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.2702702702702703, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "296a4e43-c68e-43dd-9c6f-1473fba6c98e", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "c3828778-9b35-432c-b1e9-9483a29fb80e", "similarity_coefficient": 0.31990521327014215, "overlap_size": 135, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "76ab1c7e-6486-4fc7-bf11-26d33d821869", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.28294573643410853, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9124ec12-59bd-4dd9-b188-17f01b84f75b", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.32786885245901637, "overlap_size": 60, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "80850927-e3f3-4144-bdee-ef458687f882", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.266304347826087, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7963c0f6-de25-4f8c-883f-e4041a0b66b7", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.2702702702702703, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2c63cfac-ed70-4a7a-a7e4-f8ebdcd3051f", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.2857142857142857, "overlap_size": 60, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "027e60b7-f054-4e62-9333-5b82cd5e5128", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.26344086021505375, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dcd19d45-e397-482a-9b05-f6fe8a05729d", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.26881720430107525, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9569b60f-c266-43af-983e-cfa9755dcd9e", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.25742574257425743, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d1741be9-1e17-4ac6-8971-b9a3b2246db1", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.2702702702702703, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "faab18e2-5323-4c67-aeb3-e5ee3ef63f5e", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.2815533980582524, "overlap_size": 58, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "91dd5bc9-1b22-448a-a3f7-78cd43be8716", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.27956989247311825, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d9cab6c9-65c6-4df5-938a-9c710e87df53", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.3137254901960784, "overlap_size": 64, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7aeff769-9896-409e-a421-cb32cac775fa", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.2857142857142857, "overlap_size": 60, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "56b71afe-31a9-4e97-ba3a-522ec7d0b898", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.2523809523809524, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8c69376b-0060-4f8c-b73b-11ba316c8369", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.2631578947368421, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5cfa2627-4e75-4ea1-bc05-378545529213", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.2620320855614973, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e78bbd4d-60d5-465f-a40c-11e1f359757b", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.28688524590163933, "overlap_size": 70, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3f00c219-4ad9-4018-8656-e175980e5a61", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.27225130890052357, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9d2b2946-8eda-4e32-b661-ac3c8f109afe", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.2702702702702703, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3cae22ee-5cbb-4884-a314-79732a78378d", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.2727272727272727, "overlap_size": 57, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2fd58875-a134-425f-98ca-27ad991860f2", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.2789473684210526, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5af8ea10-9e44-4469-807b-ea4faf76e0b9", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.27638190954773867, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4771014e-83f5-47e1-bccb-beedec7968d0", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.25980392156862747, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a15e39fc-e9f3-48d8-8490-4de29c515314", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.2857142857142857, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3dc3abcc-1db9-41da-9d05-e86c05afec0f", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.2578947368421053, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c69b3ae3-862c-490a-b3f3-56aae265c06e", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.26063829787234044, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3f6e5290-2363-4391-acca-fdc56b249707", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.2620320855614973, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2547a679-289d-47cc-9529-c0af9c16ce3d", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.2538860103626943, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a34e45fb-e475-4e14-b3d1-fc1a5f67a6e2", "source": "44e853cd-d32d-428d-873d-0278f45a1c18", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.25757575757575757, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ed44de3d-cc09-418a-9ced-dc18cb643f0e", "source": "ff74cec2-2157-4a6f-818c-220e440cef80", "target": "e59b742f-7a21-4a50-8472-3500f07b5395", "similarity_coefficient": 0.8974358974358975, "overlap_size": 140, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "60657647-73f1-4085-bbf6-0184da868c61", "source": "ff74cec2-2157-4a6f-818c-220e440cef80", "target": "26a34b5a-7453-430a-9bb8-98e6a9254169", "similarity_coefficient": 0.5, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a62c5a0d-4083-4034-af36-d3b593dcffdf", "source": "ff74cec2-2157-4a6f-818c-220e440cef80", "target": "f7507f96-9e93-4751-bd0a-5d2409a9f865", "similarity_coefficient": 0.8782051282051282, "overlap_size": 137, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "97d1e667-fade-4fd9-8613-dd3a2e38b1da", "source": "7b557c97-ae99-4d68-8911-24a37bf4ee92", "target": "8c583627-83a1-4324-af57-909f27ec93a5", "similarity_coefficient": 0.30357142857142855, "overlap_size": 187, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "984acfba-79a6-44e2-b1b8-6fb75b3779ff", "source": "7b557c97-ae99-4d68-8911-24a37bf4ee92", "target": "7110025e-838c-4eb3-a3b4-e50296f8d1d6", "similarity_coefficient": 0.29336734693877553, "overlap_size": 115, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2b246c96-1e43-4ca6-9b10-5b101c1ce277", "source": "7b557c97-ae99-4d68-8911-24a37bf4ee92", "target": "3fbb64b3-4512-41e7-8837-bc44bd025067", "similarity_coefficient": 0.2909090909090909, "overlap_size": 96, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "946a935c-3700-4fd8-b805-02af1869d202", "source": "171e0e5b-ee37-4508-a139-85ff67a866f3", "target": "3fbb64b3-4512-41e7-8837-bc44bd025067", "similarity_coefficient": 0.2642857142857143, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fe3c9c7f-c034-45ad-a6b3-eb70eb5b6915", "source": "171e0e5b-ee37-4508-a139-85ff67a866f3", "target": "8c583627-83a1-4324-af57-909f27ec93a5", "similarity_coefficient": 0.2915194346289753, "overlap_size": 165, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "144ce0f1-8b57-4f22-b537-686f720871ad", "source": "171e0e5b-ee37-4508-a139-85ff67a866f3", "target": "7b557c97-ae99-4d68-8911-24a37bf4ee92", "similarity_coefficient": 0.4418604651162791, "overlap_size": 152, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d40ddb54-0f9c-4f9c-aacb-f431f65a1ec2", "source": "76d489ff-e898-453e-b7ce-95cac772556c", "target": "ab7810f0-02db-4b8b-8f86-59cea7883939", "similarity_coefficient": 0.2653061224489796, "overlap_size": 39, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e4a482af-f9d3-444a-87a6-ff01170541e0", "source": "76d489ff-e898-453e-b7ce-95cac772556c", "target": "bc2a6276-c085-4011-a84b-10e3f2477948", "similarity_coefficient": 0.46987951807228917, "overlap_size": 39, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6a0ee210-c3b8-4a9b-a7ed-b09021c78c86", "source": "76d489ff-e898-453e-b7ce-95cac772556c", "target": "58322784-4ff6-48e8-bb62-0bbc20a06950", "similarity_coefficient": 0.2635135135135135, "overlap_size": 39, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b8b9aa3e-9e73-47db-b628-bd51482691d7", "source": "76d489ff-e898-453e-b7ce-95cac772556c", "target": "85446e1b-b536-4525-bd76-a5d08e5812d6", "similarity_coefficient": 0.6071428571428571, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f6ecb2c2-c2e3-4407-b9e0-138ec7c334bf", "source": "76d489ff-e898-453e-b7ce-95cac772556c", "target": "a71b38d5-6589-4c2c-a24c-7181a1100649", "similarity_coefficient": 0.66, "overlap_size": 33, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fc73c4c0-9daf-4466-ab7f-f72064c0e394", "source": "41c41709-2c8b-4b0e-b4e0-8e9108a563d8", "target": "cc9f38d2-0dd3-459b-b55f-44e01fcf9dc9", "similarity_coefficient": 0.7268656716417911, "overlap_size": 487, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a306a774-4129-4740-bec1-151d888c54f0", "source": "41c41709-2c8b-4b0e-b4e0-8e9108a563d8", "target": "9f2e5314-9e79-4fa2-8159-07d8cc47d89f", "similarity_coefficient": 0.671559633027523, "overlap_size": 366, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5a55056e-2a28-4c5c-a2c6-abb27ad0a42f", "source": "41c41709-2c8b-4b0e-b4e0-8e9108a563d8", "target": "e44305cc-a5b7-4cc3-9422-f3a68964ef17", "similarity_coefficient": 0.6160267111853088, "overlap_size": 369, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2c2f4cfc-1821-401d-bf83-ba40528b4db5", "source": "41c41709-2c8b-4b0e-b4e0-8e9108a563d8", "target": "884b9c04-6683-4d3e-90f3-b0bd69f8a649", "similarity_coefficient": 0.8952205882352942, "overlap_size": 487, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4d35b154-e137-4641-aa87-ee9aae66d24b", "source": "41c41709-2c8b-4b0e-b4e0-8e9108a563d8", "target": "989c1208-cca3-4434-a015-67163bcf2567", "similarity_coefficient": 0.6180327868852459, "overlap_size": 377, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "784ec0f5-c7b3-4fb0-951a-11169bdf2f6b", "source": "41c41709-2c8b-4b0e-b4e0-8e9108a563d8", "target": "3c8ea93e-6ad3-4e3a-8a6a-b3e0167e1c69", "similarity_coefficient": 0.6897196261682244, "overlap_size": 369, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "550f6ca9-2c69-44d2-af22-b65ec4a03e3b", "source": "e2ee1e2d-b55a-4a19-9214-7f5058461161", "target": "69c4b4b7-c9e4-478e-997c-da4e05c3d7ee", "similarity_coefficient": 0.33579335793357934, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6219c9e7-459b-4a0d-afb6-32ab29d36ae9", "source": "e2ee1e2d-b55a-4a19-9214-7f5058461161", "target": "e9595f2e-7b95-4f92-b829-ff02d867fe3d", "similarity_coefficient": 0.9578947368421052, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "370f1a16-f736-4d4b-8e04-26a424efea02", "source": "e2ee1e2d-b55a-4a19-9214-7f5058461161", "target": "f8a5f9ff-fb62-48b4-ad61-1e4f868172cb", "similarity_coefficient": 0.4008810572687225, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cee505d4-7ef0-468b-b467-122688d469b9", "source": "e2ee1e2d-b55a-4a19-9214-7f5058461161", "target": "b67a97a8-54b7-4306-be3a-d6518f864d8d", "similarity_coefficient": 0.3991228070175439, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "960effed-4a49-4af3-ba33-59e40607dee7", "source": "e2ee1e2d-b55a-4a19-9214-7f5058461161", "target": "f708fea1-8d4a-401f-84f2-32434b3fb235", "similarity_coefficient": 0.8425925925925926, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9b28881c-a8a9-4d43-976f-f6835f3b20b1", "source": "e2ee1e2d-b55a-4a19-9214-7f5058461161", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.5416666666666666, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "21a883c0-6b50-4abf-8817-3a307230d475", "source": "5e615950-d559-4b21-940a-f65e4236cd08", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.3131868131868132, "overlap_size": 171, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "adb05b32-95b7-4254-9d7e-5b9ec831d78d", "source": "030718c7-da46-4d5c-96e5-b8882062f2f7", "target": "32ddd129-0049-4ec9-ac33-77282161c8ff", "similarity_coefficient": 0.7142857142857143, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7be9e884-3747-4b48-a708-5dcf30b8d111", "source": "030718c7-da46-4d5c-96e5-b8882062f2f7", "target": "6e735b7d-4008-4a11-8624-76192410cf30", "similarity_coefficient": 0.7428571428571429, "overlap_size": 26, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "61e8e18a-758f-40a8-9d5e-e489ffd81ebb", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.6554621848739496, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "88e71d74-08b2-448b-8d28-77d148491086", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9b6b3c0e-4768-4c5b-962e-fca4b70e5889", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "efe1432d-e2b1-4a12-a574-2e6e4a31fc6f", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "488bdbbf-230c-41a7-b9de-399b37dd1ece", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.41935483870967744, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7f96822f-9036-4a12-8039-9c06c770a193", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0539bb90-25dc-4894-8a6d-5bca2001c1b8", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c8e23349-4823-4568-a319-4a22978f9c2a", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dac2e4b6-4fbd-4336-84a2-cfa379f0b2ac", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.5693430656934306, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2ddde5df-3971-4b27-980c-661945bd19d0", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8edb6883-dbf9-4ea4-82fe-7290a2954efa", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "868604a2-809b-43bf-97f8-7d956608ccae", "similarity_coefficient": 0.6554621848739496, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7e875038-5296-4e6b-a83d-e30b9ae3c3b4", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "217a8a72-64fb-4749-bd78-7809737c9a51", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "243e5629-1546-4986-b816-0957d90ef885", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.30392156862745096, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f7c278c0-a088-4e09-9457-fcc32291c725", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "521771ba-fbb1-4daa-a751-aa6d3efb7d8a", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5265133a-0b0f-44de-ae86-b80290965df9", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8245b652-c16a-48a7-bd2d-5ee77899ffe8", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "62dec236-c337-4767-b427-6fc3bb067e7f", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.6724137931034483, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6aa39755-2a44-4905-9f37-12c2d5b75e93", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "similarity_coefficient": 0.2818181818181818, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "38631d8d-2de7-4e7c-a199-7321c247c58c", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "similarity_coefficient": 0.6724137931034483, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1362156d-cbad-4d40-92c7-0476723964d8", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "similarity_coefficient": 0.6171875, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a6cb981f-6841-4c7c-81e4-4a320781ea03", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1f1cda11-fe81-455a-b77d-01aaecbed592", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "similarity_coefficient": 0.8387096774193549, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "42c5b34f-5aed-40d9-a297-38f5b403d917", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "similarity_coefficient": 0.7872340425531915, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "42d9cd41-fcb4-489f-98a9-9cacc09ba41d", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.65, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2a618939-0bc9-4712-a249-3360a34fbf30", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.8387096774193549, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "509c81fa-56c4-4918-be07-57a1d2716726", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3bbfc2ad-a4a5-4c5f-b340-2689083d3b23", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "similarity_coefficient": 0.3786407766990291, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "447ece00-b170-4549-ae76-99c17b467261", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.4482758620689655, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b4de8992-13df-48f9-9353-4594129a7ff8", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.7878787878787878, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aaed6c65-cfe5-4cde-934d-3f4b05338227", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b5132d43-c498-4df4-80db-ca5f85e5a6f1", "source": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.6341463414634146, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cba59bd7-bcf7-4212-9c89-bf67dfd93b7a", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.5534591194968553, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "67cf104a-88e1-427e-8ab7-644f09fb2f01", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "similarity_coefficient": 0.5398773006134969, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fbd21a21-9897-435d-a059-e3273d1f7725", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "53f5d43a-4bee-4df5-abda-d2b84999d3ba", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.36666666666666664, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e1c49711-2fd2-47e0-929d-fa477cd5931e", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "similarity_coefficient": 0.5083798882681564, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "08353784-11f3-4c8d-a6ad-2c44e21e5fba", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "3555fae9-d98f-40ee-8932-0dd5b6cb5b3a", "similarity_coefficient": 0.3503184713375796, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5d5b06a5-b37b-443f-8bad-fc576414e7b6", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b7aa1e56-c7a4-4dc4-8bb3-659fd81468bc", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.3492063492063492, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6f4122a7-4df5-4050-8492-415e1c2be689", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8df23e9f-f25a-4589-a7bc-2f39171b5507", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.4835164835164835, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "feb9507b-51b2-4ae3-b689-5d45fb324e98", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.4756756756756757, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7fc91260-2d74-42be-a0d4-81facf066f62", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "722e5ca5-0cd8-49c1-bba8-7bb07885cb8d", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "745cd9f0-54fc-45e8-be53-7431b0375615", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.5333333333333333, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "58be9359-0835-4bd2-b86b-1be41349e882", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fc5a1f44-5b28-4296-9edd-6bb7b876d42d", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "similarity_coefficient": 0.3235294117647059, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b8d14b67-5ccd-4b5f-94b8-312436986fdf", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.489247311827957, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c848c70b-e65b-416c-b8db-916348c0c72d", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "868604a2-809b-43bf-97f8-7d956608ccae", "similarity_coefficient": 0.4756756756756757, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d33b4809-bd76-4ed0-83ec-52e60d1e21af", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "similarity_coefficient": 0.4875, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8b996221-4e43-4a57-8211-ff05ea2f0178", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.4731182795698925, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8d40d8b7-24dd-4d63-9645-5439b2d48f05", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "similarity_coefficient": 0.415, "overlap_size": 83, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c47b22df-64da-4e33-b1e9-d10d9e4cc130", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "similarity_coefficient": 0.5534591194968553, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1decb529-fb5d-485a-bcfa-dbac40de77e7", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.4405940594059406, "overlap_size": 89, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ad0d1c7e-4ee4-45eb-8d78-289279a39296", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "similarity_coefficient": 0.46107784431137727, "overlap_size": 77, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ff06f271-76b8-41ba-9f9d-f345a4233f25", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7a4a3b34-f714-4157-9343-c85713de4507", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6b3c9b2a-f6a3-4c06-92d5-b54afb5e47e5", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "81c41820-7edc-4308-8ef7-b4b9c7bc1c56", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8cf4271a-3974-41fd-9cf6-463a0948b219", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6603c0a4-4fe8-4940-b7fe-42d4dc4c64bb", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2fb0c7e6-97af-4352-abc0-b96f6ebe265c", "source": "e4cabb52-87fa-46a7-b178-1e258678e921", "target": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a59fef6c-36b4-4f33-b536-4c44861bdd30", "source": "29f32c4c-30c4-4179-be50-96e6d92b8451", "target": "27a9f866-bb13-4a50-ba51-615e2b2c6b56", "similarity_coefficient": 0.3287671232876712, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e6c970c9-1c7f-4f11-88de-d34b789c828b", "source": "29f32c4c-30c4-4179-be50-96e6d92b8451", "target": "d13d294e-d144-42b1-93b4-924e605c2903", "similarity_coefficient": 0.5205479452054794, "overlap_size": 76, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dd9659cc-d24f-4dca-91d1-460e65c0dcf2", "source": "29f32c4c-30c4-4179-be50-96e6d92b8451", "target": "34e491a2-88ea-4d07-8f26-597638ce6d2f", "similarity_coefficient": 0.39705882352941174, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "47705a09-80e8-49d8-b25d-8fe6760df259", "source": "29f32c4c-30c4-4179-be50-96e6d92b8451", "target": "f5736009-a954-42de-861b-494d7e1ef269", "similarity_coefficient": 0.5882352941176471, "overlap_size": 80, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "78951461-77a7-47da-a2d3-06b76c2740df", "source": "29f32c4c-30c4-4179-be50-96e6d92b8451", "target": "ea795ff2-a61a-4bd6-9894-09cfcb204ea5", "similarity_coefficient": 0.8717948717948718, "overlap_size": 136, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d3298a16-25e1-49bf-a70e-e819c93fe294", "source": "29f32c4c-30c4-4179-be50-96e6d92b8451", "target": "25a9a2af-f609-47a7-a75e-59c026281cf8", "similarity_coefficient": 0.3382352941176471, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dc4756fa-e252-4a93-b641-14ac1daaccb9", "source": "29f32c4c-30c4-4179-be50-96e6d92b8451", "target": "8102549a-740f-4e81-9373-b6d30e8cdc60", "similarity_coefficient": 0.33098591549295775, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bae6ab0f-518a-4f3a-8207-9d5d10e1770f", "source": "5f7c7a64-b1de-45c0-ad59-42836ec07604", "target": "67655508-8724-4bec-ae04-0a0ccc497030", "similarity_coefficient": 0.5851851851851851, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "35e34d9c-8b34-4150-a05e-4c637ae82cb9", "source": "5f7c7a64-b1de-45c0-ad59-42836ec07604", "target": "e6bb490e-f542-4313-ba97-b4a675132dc9", "similarity_coefficient": 0.26282051282051283, "overlap_size": 41, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6a53b561-0b47-4e10-9636-3d837d6b0e9e", "source": "5f7c7a64-b1de-45c0-ad59-42836ec07604", "target": "f43c9ccd-e7e0-4f61-add5-23a61fcdc9ce", "similarity_coefficient": 0.2953020134228188, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b14b6e3f-380e-4564-aa59-331bbdbba74d", "source": "5f7c7a64-b1de-45c0-ad59-42836ec07604", "target": "ab7810f0-02db-4b8b-8f86-59cea7883939", "similarity_coefficient": 0.6038961038961039, "overlap_size": 93, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "11af5491-7ca0-4bb0-afeb-8d227c7da1e5", "source": "5f7c7a64-b1de-45c0-ad59-42836ec07604", "target": "1d8cf59f-ab95-4b0c-a43a-70d1ddaa5686", "similarity_coefficient": 0.6172839506172839, "overlap_size": 100, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c5702adc-c6c2-4812-bd61-4c06eaa7faee", "source": "5f7c7a64-b1de-45c0-ad59-42836ec07604", "target": "22c84cad-f57f-4718-9687-42041195fe68", "similarity_coefficient": 0.47878787878787876, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cc53aa46-05a0-401b-9625-8a03bcb57180", "source": "5f7c7a64-b1de-45c0-ad59-42836ec07604", "target": "0ab74ab8-46f6-40b9-84a3-f901312bfdd1", "similarity_coefficient": 0.93, "overlap_size": 93, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "22bcbb9a-b9c3-46fe-b4f9-e3839713602d", "source": "5f7c7a64-b1de-45c0-ad59-42836ec07604", "target": "1464dde0-7b27-424c-9e99-43dc975d4ea7", "similarity_coefficient": 0.39215686274509803, "overlap_size": 80, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dbbcf0fe-e8aa-4f66-be8a-3546bdd3715d", "source": "5f7c7a64-b1de-45c0-ad59-42836ec07604", "target": "461f3447-3b67-49c7-a062-dbccf20a8c20", "similarity_coefficient": 0.61, "overlap_size": 61, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f4841088-613e-4603-9ca5-1c5ff82a882f", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "397229e7-a094-491b-867a-e14394e775d5", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "565a9088-6e5b-490b-b397-d8a26f78ff43", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0cf988c8-8d70-4a3d-86d7-caeb334469a8", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d2376cc7-e1be-4577-a250-787090ccba42", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "892b7da3-ffe7-4a34-a292-61249153d008", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "similarity_coefficient": 0.6220472440944882, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "633a26e5-98e3-4724-b29e-5b0770207ba6", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.6694915254237288, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f2ecffd0-9863-4274-af0b-0450301e1691", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c61c2ff9-8d5d-40b7-9808-4b5e42c2f6e2", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "98eaab65-d821-4076-ac52-50caef655413", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "05cbe919-3bcc-4ddc-a64f-2fc09f4dc6a4", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f4714dda-ee8d-4603-8507-7d890169ae79", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0bbdd95c-eb7c-4fd0-8ca4-5c99c083481d", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7ecc9584-b061-427d-8601-f89000576b41", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f1cd586c-54f2-469c-8ccc-a68072aef1ba", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d99d1677-e81b-4202-b727-73be6017aa9c", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d9198248-5be9-40fe-b60e-d843041488ad", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2e8a256d-8ea3-4d68-9840-09555cfb2c6a", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "55eb7129-fd2b-48c8-9c36-5990962dece5", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2d265c5e-ade0-4337-8d7c-ce48ab3bb603", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "856107d3-b91d-47b7-819c-c7957b5d234d", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "304c856d-421e-4e70-b593-7dc888739cc0", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3520e8f7-ac9b-4494-8553-a6c2fd37c643", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6805b5f7-3173-4651-9c7e-bf9746f48616", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7b5c6d67-4ed7-4d6f-bed0-46f0096d5867", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a5fb3f2e-5242-404a-aa66-fa4fabc6ea49", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "similarity_coefficient": 0.7956989247311828, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "685b9227-cc55-4efa-9753-5faacefaf563", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "010b1f55-5634-4758-9490-3cc76ed6dd86", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "e4cabb52-87fa-46a7-b178-1e258678e921", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "905a6b40-fe60-414c-b002-8f043db3c5c0", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7caa5311-6e9e-46b6-8089-0baf85d1c5b6", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f4d40823-9427-4f20-9390-454416741fa6", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "868604a2-809b-43bf-97f8-7d956608ccae", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ee8fe94b-38fb-4e14-8379-7d09b1024bbb", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6b7f6ef9-f1e7-47c4-8f66-e6e7c0e0f43c", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "61197b75-5457-4c1f-a7dd-f8f1ce2dd012", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b8fb63ab-605a-431d-b42b-a645e79f895c", "source": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "50894788-22a9-44ed-a22b-ccdc2d980c77", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "700c711a-6e03-4bee-8def-70b3072788d1", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "29c6052a-462d-4bbf-8d6f-560c04664eda", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7589de68-063d-4ca4-9fe3-ae38f311e290", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ea46f977-b814-44cb-9a27-7daf4c1f0419", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1b3acb97-bc81-4185-87da-9468a4265395", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ecadeb1f-66c0-4b43-a77d-da1e80fb8ba8", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f01c2020-1435-4883-8a69-90f9a5f14656", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cee69177-4dae-44b1-9d89-033b29c17a4a", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "20d076df-fa42-4383-9b1f-0dc01d726d0d", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "966b88f4-1904-4c06-b005-efbcc632de1e", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fd444e3a-c561-44ea-9bd6-869f4d670523", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "e4cabb52-87fa-46a7-b178-1e258678e921", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d8466de9-5b98-419b-ba40-0dca06c8ed8a", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "51515e37-65a8-4c3d-a061-345ccf025a51", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d007e5d3-6631-4809-8ff0-3d3a5e9b16c3", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "918c8ba1-8871-4eb1-96b7-df0d49a367e2", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "similarity_coefficient": 0.7956989247311828, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "68bfd2e8-2193-4fcd-81ff-d86ef3853541", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bfc5ebee-c709-41aa-b5ff-f4c72be90c76", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7cb811c1-8770-4674-82da-c359b3a610a5", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aa5f1ae7-8bee-4816-84ea-ed4b3a8ea9b5", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b87cedfa-7c73-4fe5-90b8-710a14298ce6", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "683fa16c-19c1-4964-8791-28590737f3f4", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "868604a2-809b-43bf-97f8-7d956608ccae", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1eb328f4-25d3-4711-8358-342949ab5c5d", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b0a5db4c-03cc-4beb-80fa-7aad1e0c3d58", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ecac5ec5-80be-4e68-80e9-c4269ff44dfd", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "similarity_coefficient": 0.6220472440944882, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d0df3942-267b-4abb-b008-ecc69be52f67", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e823c7bb-d95a-4012-9aed-1e9d13d725c7", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.6694915254237288, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0ab7447b-4d18-4b3e-8f95-e6454862603a", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f8428396-4433-4896-9a5c-74f97234c72d", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ce6cc5c6-5de4-44c4-915b-da23a70e13e4", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7e32397f-3682-48bb-8e76-33cbb809cab4", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "27b14ead-9066-4636-86bf-50f46719f2aa", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7661b6bd-dfc7-485f-80ac-1d47ed330775", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f436b497-8ffb-42b9-80e2-1ca08d5400f9", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8616e81d-80ad-448b-9c2e-372886b4e747", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5abc3a05-d0e2-4e7c-8050-eb096eff680f", "source": "b401cb25-9626-4bf4-9dc9-a102b829189a", "target": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cc1bd2b8-638a-4c3e-9cf1-eaf9297bcf8e", "source": "9704340b-a2d9-4c3a-9254-03262a2052f8", "target": "264adbfb-edda-4bc7-a8b3-74edd95909e2", "similarity_coefficient": 1, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e36cf7f1-d6c3-4b71-9060-967567de0f4a", "source": "9704340b-a2d9-4c3a-9254-03262a2052f8", "target": "6189859e-374c-49ef-b16b-48eea47da1f1", "similarity_coefficient": 1, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cb3e61d6-417a-4005-9136-fc6baf8b1bbf", "source": "9704340b-a2d9-4c3a-9254-03262a2052f8", "target": "1650d15a-9620-441d-a852-1ce19e3865c9", "similarity_coefficient": 1, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c67836b8-38dc-431c-b787-d60c85ae540f", "source": "9704340b-a2d9-4c3a-9254-03262a2052f8", "target": "ac098499-46ba-4296-a03f-9b11ac60dfaf", "similarity_coefficient": 1, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "091148b1-22c4-491d-9a79-daf13a7c0f01", "source": "9704340b-a2d9-4c3a-9254-03262a2052f8", "target": "f59c55ff-3a61-402d-84df-8cc060626bbd", "similarity_coefficient": 1, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3d890ca9-10d6-4bd6-8709-1e61326fe567", "source": "9704340b-a2d9-4c3a-9254-03262a2052f8", "target": "98c61e9d-3b1f-4f83-b8de-b03f552fcb71", "similarity_coefficient": 1, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ba2f76e7-4df4-4c4b-86b3-a9760186b15c", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.28160919540229884, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "99071714-4990-45f0-b5ac-41ea7cac550c", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.30718954248366015, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "87e35ed3-dc7f-4f74-a446-4e3fb347a1be", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "99577fbc-edf7-4129-b8db-3e197c67f404", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.5, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "39b6e075-1288-4601-bdee-cf92eb099436", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1a8e042c-7bb9-4c53-99cf-5606a878c355", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5c8d0cc2-db92-4db5-9b44-e4e496ba51c2", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "similarity_coefficient": 0.29310344827586204, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ab6e655c-72f4-4885-8317-e45f00d5a241", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "13782ae2-aa97-45c0-931e-7646ba7f40b3", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "da06eeaf-dbc4-4532-8aa9-670f0233f12d", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.7758620689655172, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ce0fd58f-0c8a-4aa9-8905-29f24a379733", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.532608695652174, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ad376b3f-8dcc-4ee4-858b-458ebcbb563e", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "192e9dab-d4f2-45dd-ab83-8a31e00988de", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.3202614379084967, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b3ee8cbb-08b5-4623-b0eb-e97b0e11afad", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.3356164383561644, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5622b65d-5ae7-4189-a2ae-b1e0fd4fdd7d", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "df85b8ca-5e48-4f41-b230-e74fb15ed558", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9b9df468-bf0e-4288-87c6-6b3a73ac56f6", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.5795454545454546, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e2c18efc-0bd4-4acd-815c-11403be4fc62", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.5048543689320388, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9b1725a1-ba7d-4871-b177-3b4f1f92a545", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.42857142857142855, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "613d5072-5bc0-4659-910d-cf60d5555540", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.8360655737704918, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "73014551-ad8d-48f9-9458-3dc0d2644583", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.3090909090909091, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c11a626e-2da9-4423-affc-90e3e275fdb3", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.7230769230769231, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ab05511d-e7bd-43f2-9e8d-fc140333f7c3", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f7c178a3-2f2c-4f53-9121-5369e3f52550", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.8360655737704918, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b983113d-a98d-4a76-ac84-ba70c72b857b", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.8103448275862069, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "20a5e9bf-596b-4469-82c1-4e21c7da98dd", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fd1e7ba7-6287-48c1-ac24-69c147f5bf72", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.8596491228070176, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "82bc09f7-fdd0-4bfb-9e86-5e7da0482b17", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.8305084745762712, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "17892b79-39e3-45ea-8226-66e4208baa1a", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.7894736842105263, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0b08cd8f-fcce-4c82-84f9-24cd73f33333", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.765625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cf5f7987-ebc0-4f34-b1c8-c166d4c0fa9e", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.3458646616541353, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "98fa47f9-fce6-4d64-addb-72995d8cbcb9", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.550561797752809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "56557047-d1f6-42b2-b715-093b4ef434b0", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.875, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6796a55e-e6aa-4485-b1bc-80276e02fe23", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.8909090909090909, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6475457c-82ad-492c-ad9e-0d23c83603e1", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.34558823529411764, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b72997e4-99ac-401d-89ab-fa4d6785cd55", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.408, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "26d01514-93e5-49c4-a1b6-0163d8010c47", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3d444527-7346-4315-9bce-6d9952f92359", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.5795454545454546, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d646dddc-e6ae-483e-8e7f-38358b232051", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.684931506849315, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "398afc1f-2915-433f-9ac6-253e078c32b0", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.5316455696202531, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7e41cdf5-bd26-41ed-b711-d1f1d1454a56", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.8909090909090909, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d25f215c-e353-4fce-bfd9-33228fe512a2", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.3722627737226277, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a61c69c3-6fa5-444c-a78b-cb0410624f0b", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.7540983606557377, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3a051a69-9903-458e-a3dd-12318bcbe667", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.2752808988764045, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "559bf5eb-ac31-441f-97ce-5496959f9dd0", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.5465116279069767, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "712ef863-47dd-4844-a7e2-fe7ab77fc926", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "44e853cd-d32d-428d-873d-0278f45a1c18", "similarity_coefficient": 0.27717391304347827, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "45a44f39-63e3-4c6b-a89c-81f1298fca6e", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.6219512195121951, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "60d12d7b-ac96-4729-ae0b-5c7d7aa344e4", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.9107142857142857, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1c89a832-b1bd-470c-a41d-1583eb445524", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.3111111111111111, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9a85c75b-818b-4cdf-8ee6-0437e6ae7129", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.4166666666666667, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2a753958-16fc-4fdb-8c5a-7352dc54853a", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.51, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9a43079c-0ea5-43fe-9434-78905ab21b03", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.39655172413793105, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1f2edc9e-47a1-4661-b4cb-5c404e82acbe", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.6571428571428571, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1f3f756f-59df-4dbd-8019-eb6a89ef8380", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.30303030303030304, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "91a0cc09-e7aa-445b-8965-3fe82ca4285e", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.32, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "76c7424d-4af6-48cb-8d42-761df2491d09", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.6296296296296297, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "69083d6c-6542-4dd3-afbd-8b5103040d38", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.684931506849315, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "711437fc-b8f5-43cc-b0fb-7ac6fdb13e8d", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.5204081632653061, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6886ff94-ea91-4df1-9d68-12708f6ac3cf", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5da3882c-f38e-4e9a-8aae-e9850c5b6f62", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "76997692-5748-4b06-9bc2-03322cb65918", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.5222222222222223, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c6240ae1-70f0-4382-8cd6-f4c69ca556bb", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.9245283018867925, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "72488f33-6108-4a45-8686-a4da472340f4", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.33774834437086093, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "01e3abf0-6e57-4c08-a58b-6b821a7697e7", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.8571428571428571, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "646b37c1-e36c-4063-b92f-12472020f1ee", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.28654970760233917, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "92da3f86-8e41-4b19-94ef-82e6ff8b942f", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.416, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d06389a9-2c06-4caf-b0b1-dec55c0e2edc", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.875, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dc70d9ef-fdcb-4020-8945-ea9ad46edcc3", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.8909090909090909, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "01ece87c-1c90-464b-9b14-4137076fdbd2", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.3184713375796178, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a546d896-e9d4-4d54-8a20-c0d9d9a1fa17", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.6071428571428571, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1dd614ca-a570-4614-813b-65bf263623bc", "source": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.8909090909090909, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e36ab394-0950-41e0-b3df-ee15b1f14419", "source": "9af1a5ea-0ad8-42cf-b199-e33ecfd7c35e", "target": "e28908cc-29cd-43d2-a973-766019ad5a3b", "similarity_coefficient": 0.6551724137931034, "overlap_size": 57, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a77f4ff0-ff02-4e01-96c3-cf2759c7dfe1", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aa08ddb2-73c0-44fe-b3a9-bed78e6d3ef9", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.30246913580246915, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cd2f43cc-57ee-4e41-8652-80cfa0fba7ca", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.323943661971831, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1d4b269e-0f1b-493f-a121-9ce9688ab1c9", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "90d8e483-8ec8-42d9-812b-a67165585aa2", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.2784090909090909, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ec136fbb-93d5-4d9f-a6db-095cba58e388", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.30246913580246915, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "421196a5-84c9-4ee4-9bd4-0becb68f8910", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e1162747-0d03-4212-bdcc-a6da496d6c25", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5231a297-04c5-4cef-8370-be3a2f53f2cb", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5edcfce0-02f5-482c-aa44-a44b5e85c650", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.2822085889570552, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c2def1bc-1b9c-45fe-ad96-19a07dbc7c3a", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b8a14560-2258-4a06-9eaf-f2dcc82147a0", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "similarity_coefficient": 0.2648648648648649, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "40af684e-91be-48bd-8db7-70f97a6a4ebb", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ce86fbf9-9da7-4d72-8cac-fe7c77c50191", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.2677595628415301, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9c9905a9-8a63-40b8-8beb-a7e5a842ab43", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.2934131736526946, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "762c5e32-b6d9-4e3d-85b4-7ab9e7d121e7", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.6125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ceefbeb7-cb72-414c-afd3-d1fe33063bac", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.494949494949495, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7cb8bf36-b5f2-4376-ab15-4b6f9a8fb7ee", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.765625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c9040256-4dbf-4d99-9fc9-a4887779818f", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.35766423357664234, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b884141f-6391-4511-a612-8e1dcfa1e475", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.765625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d98cae6b-445a-4077-a8ca-f716115b3dfd", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.765625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9965cfe8-e386-4938-babb-b26712fb87f7", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bb209b8f-5964-4674-8246-bf220da85da6", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.7538461538461538, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bd68617b-2fa9-4ccd-b561-dd540895f1fb", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.6865671641791045, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1d13a2f1-c39a-4940-a91a-92c032440cba", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.3161290322580645, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ca355615-4ade-4983-bca8-e0df14ee1275", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5cd8d7bf-e897-4210-9744-ed6dda9c623b", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e22902c9-c2bb-4630-b363-d80bbda63deb", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.494949494949495, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "96c0fb26-e2af-43cd-a321-6ac1df40c165", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.46, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "13732fa3-da72-4432-8ee4-ef046ff3903e", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.532608695652174, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "780b3b55-f80a-4f38-b36b-9ef472d38640", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "057b5307-a74e-4ea3-b288-675675590c20", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bec5a615-99bc-4048-87be-b49b02732ea2", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7b266e16-f1dc-479c-86ec-91bb3bcce431", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.48514851485148514, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6182d90b-224e-46df-8f6d-fefb0b0fb191", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.3769230769230769, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1992fb8b-b010-4bfb-8303-40dd06c233f8", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.44144144144144143, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "913fce27-4007-4c36-a532-ba8a5e5a90c3", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.5, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4f70078a-7327-4ba6-b9a8-f2b06eb1a888", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.5822784810126582, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f11fe86e-f0ef-49f3-8b5f-359ae80cee1d", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.368, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b62c43a8-0ce7-4688-89c8-99f6324cc703", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.2916666666666667, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a8e4dda7-acbd-4ec8-8c4a-4d6f61010008", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.7538461538461538, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "502dca2c-7534-43b2-9773-f46cef7b2eb8", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.6133333333333333, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "80ac5615-72d6-421a-9355-b0ee1e7bf479", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.3776223776223776, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "066e8008-f364-435d-b411-b834534380bf", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.6571428571428571, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "33b9c02d-07e6-4f92-b589-193a566cd9ca", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.782051282051282, "overlap_size": 61, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1b1b07ff-845b-4fc4-881a-0d039c2ed700", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "44e853cd-d32d-428d-873d-0278f45a1c18", "similarity_coefficient": 0.2512820512820513, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2e68ce50-d8d6-40b2-aa86-531b2e42aee7", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.765625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bb63ba0e-01dc-410a-a0b0-41da0ae70058", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.3150684931506849, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "df5f3033-ac70-4ff6-9d91-ef411471f0ab", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.37037037037037035, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "96d3e714-f792-4767-a2bd-c14680648514", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.6818181818181818, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2100aebd-e404-4a0c-b926-41b46971da80", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.2620320855614973, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0e1cf804-6b48-42ff-bbc4-bf8627c82286", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "237502a0-42fb-4882-804e-d0d1419b2821", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3119a0c3-897d-4c96-bfcb-9c35c61c6251", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.4772727272727273, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d079b0c7-d638-4f0b-aa49-527a4b4acbc4", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b4a5da20-2de1-4c41-ad82-d64e819a2109", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.2722222222222222, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dfe51d3d-222a-41ac-86d0-30b55e562245", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aae0dac6-91e4-4616-8ca4-a25915776021", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.6764705882352942, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a6dfe267-bb6a-40b5-9bbe-d4de9e75fbc9", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.7424242424242424, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "703ea6e9-c80a-4acb-8d5d-2c0ecce2ffda", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b8c14383-cb53-4e0e-8f91-aa5a2ce5d6ae", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.8181818181818182, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0b3a5aa6-c24b-4db8-8b46-6aaf74212b31", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d4f72166-d603-48c5-82ce-382e1dccc24c", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d5659b82-176c-4e45-956e-87ecd5eb9562", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e2d6070f-2839-42fd-ab36-a3ed75c2df55", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.8571428571428571, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f5b6f008-c2cf-47c4-a9e7-586840fceee0", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.6716417910447762, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "817a377b-b423-4570-80f5-8937a728c4bb", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.4791666666666667, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b45fa89b-3a55-44ea-82eb-5b62a5b26d9e", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.36923076923076925, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1d8c188d-747e-4943-aa2b-9641836e0cfc", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.2857142857142857, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "341b0866-b5fb-4802-b53d-ddb959fc9bfc", "source": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.28, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "40a7e5e8-0a9a-4347-9f4b-ef1a066ed5fa", "source": "ea3edfc3-afa8-416a-a3e9-61a1edf017b2", "target": "ff8df9a9-f99a-4719-a96a-d64e1b3fc6f8", "similarity_coefficient": 0.9230769230769231, "overlap_size": 36, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "22f48f8c-13cc-4bc8-9122-d6a897d99f6a", "source": "ea3edfc3-afa8-416a-a3e9-61a1edf017b2", "target": "1bdb2d2d-fe7b-4e46-b699-76d58b12344d", "similarity_coefficient": 0.8571428571428571, "overlap_size": 36, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5d05ce5f-df9e-4c13-8af4-f42cd7c4add1", "source": "ea3edfc3-afa8-416a-a3e9-61a1edf017b2", "target": "64d7c015-c260-4724-bd99-69ee54c28eed", "similarity_coefficient": 0.8292682926829268, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "48e2a8b6-6efa-44f8-a967-350fb211e352", "source": "ea3edfc3-afa8-416a-a3e9-61a1edf017b2", "target": "f9b39331-d306-4809-b0c4-ce6e8a9a7e0d", "similarity_coefficient": 0.7906976744186046, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ed4d9f80-ed35-417e-b602-dedbe65f27df", "source": "ea3edfc3-afa8-416a-a3e9-61a1edf017b2", "target": "256d4349-41ff-4f8d-84cf-712bd1e91eae", "similarity_coefficient": 0.3763440860215054, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4868ffe9-8bd9-4965-acde-32b037b4c4a1", "source": "ea3edfc3-afa8-416a-a3e9-61a1edf017b2", "target": "9d67ed9b-fc8b-44ae-be26-85d636c27b87", "similarity_coefficient": 0.30357142857142855, "overlap_size": 17, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "902f264d-a45a-4cfc-9ebf-3817c0824817", "source": "ea3edfc3-afa8-416a-a3e9-61a1edf017b2", "target": "10740011-adbe-4860-8ab2-5207b6a96998", "similarity_coefficient": 0.8297872340425532, "overlap_size": 39, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c2ece57c-e1cd-47dc-9f48-e24907e76847", "source": "ea3edfc3-afa8-416a-a3e9-61a1edf017b2", "target": "c06a9173-9c53-4b4e-b8e3-6869d4ef68b7", "similarity_coefficient": 0.8717948717948718, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "75b1b162-9b18-4ace-8e92-977c80e22fe2", "source": "ea3edfc3-afa8-416a-a3e9-61a1edf017b2", "target": "69c69d97-3401-431d-87ee-22f72bd12c57", "similarity_coefficient": 0.8717948717948718, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b420fadf-c63d-494a-a736-8337746d4736", "source": "ea3edfc3-afa8-416a-a3e9-61a1edf017b2", "target": "14f17c28-8038-49f6-a4ab-311c487adfa6", "similarity_coefficient": 0.8780487804878049, "overlap_size": 36, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ca3b84fc-465b-449c-8846-38d810305158", "source": "ea3edfc3-afa8-416a-a3e9-61a1edf017b2", "target": "b06c44e2-b4c4-41c8-89aa-75e9f63e4d5b", "similarity_coefficient": 0.9230769230769231, "overlap_size": 36, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3f18cc3b-c6f8-43c6-8091-6affe8f37e0a", "source": "ea3edfc3-afa8-416a-a3e9-61a1edf017b2", "target": "8a3a941c-4596-4073-8813-7e93e326c4f9", "similarity_coefficient": 0.6, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2edd794f-18b5-4c9c-8ec5-b665fc2b0b1a", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.4, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "26ba4be8-6643-45c8-91b5-3e76ccd12794", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b6a0d3e7-0892-4fa7-abc0-a3fc84a58102", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.7228915662650602, "overlap_size": 60, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c1d7bd91-abdf-4322-b7fe-8dcfeee854de", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.27586206896551724, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "833f89cf-70fe-4554-ac70-9448a93b1161", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.5333333333333333, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9d7ed216-27cb-49d5-b2a0-99fdba4ec0e4", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.41739130434782606, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e852d691-f24d-483d-b109-02da07851192", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.38620689655172413, "overlap_size": 56, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e83fc0ad-63fa-49ec-aad6-c120862d11c7", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.25301204819277107, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bcf2d513-6119-49a6-a4cb-5d0eecf11e2f", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.3582089552238806, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "da9fd0ef-e490-40f3-a05a-917e0123ef7b", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.25555555555555554, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e2dc9d1e-cc56-49f9-b7e2-9621bb0ca72b", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.34782608695652173, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "345a9c7b-a965-4dae-8349-f2d899f875ec", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.376, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6a132237-1a7a-4ee9-9f30-fd0072a08946", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2bb3f0f4-8402-4619-a393-13b891b4c09c", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.50920245398773, "overlap_size": 83, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "924c6469-2360-4263-85de-a71aadfe1f61", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.45544554455445546, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "56495918-63cf-4f06-9b5f-6aecd28fde7f", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.3129251700680272, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "84a1ea47-20ac-4633-aebb-4d5544435dba", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.452991452991453, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5af9e775-54c9-466f-b247-1b1f0b23c366", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.45652173913043476, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a37975c8-2a58-496a-ac73-f27b7b29fa84", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.6335877862595419, "overlap_size": 83, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "baa5dda2-b76d-4b5d-93ba-d9568cc6dcc9", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.4791666666666667, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4bdffe37-c813-4257-b0a4-36e3e53cc637", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.5, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9b9343ae-9dad-4638-9f1a-1cfdab02189c", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.4444444444444444, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ec078ae7-8b11-4d72-bbb7-313319f63377", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "44e853cd-d32d-428d-873d-0278f45a1c18", "similarity_coefficient": 0.3103448275862069, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "34a794ac-bedb-49ad-9e4f-1e5a3c3529a8", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.46153846153846156, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a515488c-6c57-4fd2-9512-73df97749f87", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.46938775510204084, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "10cb79ab-bab8-4ab7-9677-cd0d70b18342", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.44660194174757284, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f760a6dc-021a-4ca8-974e-ed5eadbba4b0", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.5111111111111111, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fe5e28c2-a983-40f2-8a8d-60bf8b2591d0", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.38524590163934425, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4eb21b60-0a86-42d5-aced-94b5e1f7f246", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.38181818181818183, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9f8aa93a-4e84-494c-bba9-41e88996b891", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.2883435582822086, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "61a21292-72c0-4a7f-b75f-629aabeb9c85", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.3770491803278688, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1ea1a5c0-606e-43e2-a5b3-bd7c101a237c", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.4946236559139785, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a4d6265c-61c3-4747-8060-416f305d5328", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.35294117647058826, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "43770bdd-5da7-42d4-90ac-c3f610b91355", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.5340909090909091, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cd275b1f-3bc7-43eb-996d-535bdac5aba1", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.452991452991453, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e3b9a9fe-b9e1-4bd4-88b3-d0f524dc9d18", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b12e4777-8f5d-4e04-b15b-298d8e94af96", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.4380952380952381, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b344c316-9590-44d6-80cb-82a1a9ef8bfe", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.3484848484848485, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "68054cb6-b4ed-4651-a3af-1d512c12fc5d", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.5052631578947369, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "44aff2b3-5686-4227-b2ab-dc67a0b3c260", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.5098039215686274, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9d279448-6f0e-4606-ae0f-643ad0f1c553", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.2524271844660194, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dd130a31-e103-4c04-afe4-e6c71b0c3e39", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.5054945054945055, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3f1e8435-b9a3-45ac-8901-e6ec0a8e5bac", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.5340909090909091, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4fd8299a-8a95-457c-9072-74d5c02a0aab", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.9764705882352941, "overlap_size": 83, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "26895e53-3fb6-4b02-a37f-87bffd44289a", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.4895833333333333, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "138272a2-d3aa-4de2-9a4e-80fed8adb5a5", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.2594594594594595, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "931859cb-00c4-476b-89f9-6bc48a9018b0", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.5287356321839081, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "91a5771a-644e-4929-8612-070bf98a3726", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.44036697247706424, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dc7f2f62-12ef-4866-9a4c-4b61537677fa", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.36363636363636365, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7785e6f2-11a6-416c-b55e-a470592fbff2", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.5052631578947369, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a7e77744-b42e-4462-beb7-a909fc1826e0", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.48936170212765956, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "838763af-1a6a-454a-98da-af1ca1a2229e", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.266304347826087, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "66fea7bc-a7ee-4328-91cb-f6d0b8527c4c", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "be5fad36-f0fc-4bf2-afcb-35b5c326929e", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.48936170212765956, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a76dcd8b-5996-40bd-8d6a-4cf7095e3847", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.45132743362831856, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e165d5da-b9bc-4b86-bfe1-69feda1aaafb", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.5608108108108109, "overlap_size": 83, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ee0e818a-373b-4c66-a12e-186d16bd8784", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.5340909090909091, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4a01f509-0809-4f5a-bd5a-b66b1c0fc446", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.45544554455445546, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "414d924f-b906-4c27-a0c0-739209820d66", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.5520833333333334, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "09ba45ec-6b7d-453f-96f2-862dbb25b03a", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.2807017543859649, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a21d4b4a-c41a-492d-bac4-a236271228e0", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.5111111111111111, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cbcc0beb-1908-44fb-b38b-cdd805ee85fc", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.3, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a4c8566f-08bd-4516-a245-0b05b6ee0483", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.5517241379310345, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7d914585-c093-424d-9ac4-b95cda475c48", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.4067796610169492, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8c01eb8c-56a8-4dc8-9f8e-d490caf2f014", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.5517241379310345, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a1417ed9-f7bb-4753-b8b2-9021316092e8", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.29347826086956524, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e462c181-0ca5-4b45-8ad4-8431e43d3b37", "source": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.5168539325842697, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "df5cc345-dd24-44b6-aaa4-5e1425b6973d", "source": "4b373646-8031-440b-8748-56f50289c686", "target": "f127255f-9ab3-4cc9-80ae-d598f0105419", "similarity_coefficient": 0.3088235294117647, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1d349e23-81e3-4998-8787-229fbf2c675b", "source": "4b373646-8031-440b-8748-56f50289c686", "target": "2c6012fd-f497-423b-9ab1-8cfc5154f253", "similarity_coefficient": 0.32857142857142857, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "25a5cd0f-d7ca-4ad1-9187-715b74adfaa2", "source": "4b373646-8031-440b-8748-56f50289c686", "target": "623310f5-8d59-43b9-bdde-0d30cde60c99", "similarity_coefficient": 0.4486486486486487, "overlap_size": 83, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a59ad31b-4b7a-46f1-bc8b-3cc6f0e36bcd", "source": "6f500156-fee8-48f9-92a1-285527a6b72b", "target": "e7868b74-6295-46aa-9b02-5f2686cebe46", "similarity_coefficient": 0.264, "overlap_size": 132, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "565a9ffa-296b-4bed-90b9-a6dd73d10e05", "source": "6f500156-fee8-48f9-92a1-285527a6b72b", "target": "fa233ae1-349f-4830-91aa-77eaeb7bd001", "similarity_coefficient": 0.37593984962406013, "overlap_size": 150, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "333acc3b-f7f2-4342-b37b-9b109e3eb27f", "source": "6f500156-fee8-48f9-92a1-285527a6b72b", "target": "0270ca63-6518-40e4-a878-0eac4795f5b1", "similarity_coefficient": 0.5325443786982249, "overlap_size": 270, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dabdbdf9-1acf-4c9c-ba7c-0bfd7b683e54", "source": "6f500156-fee8-48f9-92a1-285527a6b72b", "target": "144b7933-86c1-43a2-9769-7e1736c62125", "similarity_coefficient": 0.27056277056277056, "overlap_size": 125, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "da9a8925-0657-4a40-8f80-12ba94468aae", "source": "6f500156-fee8-48f9-92a1-285527a6b72b", "target": "6bed8f20-05d5-41c1-a584-804d0df5a3a0", "similarity_coefficient": 0.27702702702702703, "overlap_size": 123, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1b329c12-db4f-480b-9a61-f02d1d3a788d", "source": "6f500156-fee8-48f9-92a1-285527a6b72b", "target": "ec93dbde-699b-4275-bcdf-a802acfeba4d", "similarity_coefficient": 0.6323296354992076, "overlap_size": 399, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a9dd32b3-f645-4881-81af-2529a7c13496", "source": "6f500156-fee8-48f9-92a1-285527a6b72b", "target": "a77d2ae1-e81f-46a0-810c-038611327b6b", "similarity_coefficient": 0.27828054298642535, "overlap_size": 123, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9d47b203-9194-4894-ba5c-ff45695f32c0", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.4117647058823529, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2f6589de-c72d-4009-8642-f24c0064e8e9", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.35251798561151076, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "79ff2f85-b061-424b-ae66-3998cc9028e1", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.39655172413793105, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b050dae5-c373-4193-a58d-0ec07c28df6d", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.25257731958762886, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "01c83f93-a653-45ba-883e-fb10b846ff0c", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.323943661971831, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b4f3feff-a825-4386-ba2c-814066e4717c", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.40350877192982454, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4640fe2e-06dd-44d5-8d3e-972413076ddd", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.34265734265734266, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0b2a164c-c2d7-4c75-b97e-6f59b5e7823d", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.4298245614035088, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ea383d7b-e234-49b9-bc1a-524244318f54", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.4152542372881356, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3a7d90ef-7878-45a6-9a5b-80c029a3ab2b", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.26900584795321636, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6f3b923f-ab75-41b2-8747-4069f63fa7db", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.2784090909090909, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "164ce084-7533-450d-978e-4ba1d79d5904", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.32051282051282054, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "721d0701-844e-4a44-9e39-66c389cb2ecc", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.3712121212121212, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "41f85c20-b9ad-4acf-8ba2-afad6aa4f468", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.368, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7be4c02f-be65-4ee5-bd96-68ecd81e0768", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "794855ca-771d-41cf-85ad-9c69c46fa7be", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.4336283185840708, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6ed15490-9bd0-4de0-bb20-141e4150c644", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bbe39760-3226-4eb2-ae8d-48b9cd762193", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.38016528925619836, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "39dcc771-ae82-4b62-9486-21314ec041c2", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.3402777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "79f1be8b-04e3-4e59-8a6f-b2b5d7f13d5f", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.2692307692307692, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b9aa5ea3-2f59-42f2-877b-933cd5f067c1", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8d417b12-fd26-47b0-b1ff-451cd53e549e", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.42735042735042733, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5204f1a3-c4c3-4753-a716-7c44b3a3f228", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.31343283582089554, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "42b64980-2c2a-41c0-9a99-dedbb7779213", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.3202614379084967, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d5dc94f0-adb6-4279-a36e-8e1155b6cf31", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.4672897196261682, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aa979573-2c6c-4a66-9985-d6838824c0d7", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.44144144144144143, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a862fa50-64ca-4769-acfe-d689f057db9c", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.37404580152671757, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "40a12f1d-4ccb-4b18-a948-b56773b27e6c", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "81baf64f-4800-4efd-b62a-6ee80a8350df", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c5a5f980-8582-4551-a143-b96abecf2909", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.33793103448275863, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "482248fb-9262-466b-bfd4-109af2369bff", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.33793103448275863, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "38427795-ba1e-4ade-835d-c535976408d7", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b6a5c888-6ed4-4786-b814-0041d9a97e23", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.39823008849557523, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8330b1e2-0181-41d1-a531-1def5566e232", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.3291139240506329, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c0a3bab4-179d-4612-b107-dbd31b785b13", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.40707964601769914, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "32a4a5ce-f562-4f41-96bc-77a09c09edce", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.4016393442622951, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "178b10ad-3ba2-4e59-a5b1-ade30e791df3", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.4375, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7fe03f76-eeac-4414-8933-5ef3cf8e0fb8", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.3888888888888889, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d2a5fe15-0b13-444b-91f7-3c440e702bec", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "similarity_coefficient": 0.3194444444444444, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "193e148f-37d0-47b2-9156-2fb2862609fe", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.3858267716535433, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c7b3c36b-0163-4bed-a20e-7436cde436fd", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5d7adaad-d6eb-439e-96f7-65d30aa6bf5e", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e86ae8f7-cf4a-4344-9f24-1a9101e7cb34", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.3333333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0d195e61-e28c-493a-979a-33df60f2e3c4", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.3851851851851852, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b76311fc-b4f7-45ac-b688-136e51eabdd3", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dcdcf4fb-e5c4-489c-9c73-6c85a48f6068", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.34210526315789475, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "371684f0-e1fb-4a9a-867d-754ff2afd223", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.4152542372881356, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cab5eded-c88a-4354-9230-aef5e4bb8726", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f9fa580b-c79f-41db-9f30-91f91f4b3254", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.3150684931506849, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "14e9d781-b41f-4489-a463-f996c3436a81", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.3602941176470588, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2a02f914-dac1-4c71-a198-d8f0d52c2a55", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.2660098522167488, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "162b1117-e74e-4264-a459-7a85ffc4a03e", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a73b3801-a970-48d0-b764-62f4526237fe", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "14787bb3-2f53-465e-bffd-fb0ade17282f", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.44144144144144143, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5c084463-4d4e-4d51-bd77-00164eebcf33", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.3475177304964539, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5dcce89d-0498-4bc7-baea-d16433e6b854", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6bf6c769-f638-419c-b995-b1640c85d90b", "source": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.28888888888888886, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1b46af5b-7a8f-4834-ba61-ed663d1e98f0", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1463878d-8392-4093-a5d3-50d52f3970f3", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "22f52342-e88e-49cd-a5b7-43e5497d455c", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d49269c0-38dc-425b-93b0-63d92ea951f1", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e6cfa593-1a33-4827-a675-db7e2ed4a822", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e3dada2b-1394-40e3-a224-c53862072adc", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b68a5323-23f1-477b-a249-884833aae9ac", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "77d9f347-6a51-40cc-af9a-36295474d843", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ff830b92-bc79-4bfb-ae33-938eec549ac5", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f4139fb8-1f38-44f8-ad2f-938a97feb1e4", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0cad1558-0585-4593-bf74-cd6cf91a1bb6", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e9a2ca4f-38f1-47be-ad2f-68aba332d223", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f8c6b4b4-f110-42ef-b2bc-9a68a0becc2a", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4c687ab4-bce2-48e5-8a6c-4b043ff3a6cd", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6c0046b2-6875-4c91-bef0-cd0bbb20522f", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c723aa24-85b1-4f60-b9fa-1405a640f7d4", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.6694915254237288, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "38fecf29-2802-4f42-872e-7d94498ea3c4", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fb077cd7-a790-403d-925d-62d82527cdd3", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "868604a2-809b-43bf-97f8-7d956608ccae", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6178d1d1-9a34-4ca7-948e-7903afea8137", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f0cba656-9d51-4b25-bba9-213077121b99", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8ee51989-ccf0-456a-a61e-4a7c1afd8706", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "965ea5ee-db7c-4ad4-8444-193e8b7baddd", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "similarity_coefficient": 0.7956989247311828, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4da78aff-2f4c-49f8-839a-d35f6e0cf97a", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7e5a9926-0392-4e91-b518-23b78093e3af", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d87bc1a1-1b07-453b-9f69-296a4469dddd", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a4b88d43-558b-4f68-a0a8-7e6b7c389d66", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2531e8b4-0159-4eff-a6c3-281fa64108fb", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4ab30762-9a25-4d0a-b7fe-501fd645a323", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "e4cabb52-87fa-46a7-b178-1e258678e921", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9a6ca221-700b-4d09-b36a-486ed360d2eb", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "b401cb25-9626-4bf4-9dc9-a102b829189a", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cc61315d-5842-4146-afa8-b391373b824e", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7c365e70-1cd7-40a7-adda-78d01d2f783f", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7349af09-f3c2-4987-ad08-2aa86b93f182", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "52a514f5-cea1-4604-acd0-7bdd8a9c06ac", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "590a9c43-7682-49a4-88a7-82f8a4133740", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "06c5041b-68fa-4601-bf37-e1f7fa6f8678", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "similarity_coefficient": 0.6220472440944882, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4288663e-a5a9-40c5-8565-2d6a4b2abcc6", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0d531e94-9087-485d-bffd-b369abc9c1c0", "source": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5e34e8a5-858a-48cb-973a-16405b12c128", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.6764705882352942, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "823b615a-7ac2-45c3-b75f-b0e59f11e348", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.5217391304347826, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "813ac9fc-73b9-4183-9979-ff0b85f87109", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "44e853cd-d32d-428d-873d-0278f45a1c18", "similarity_coefficient": 0.2804232804232804, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "71d776fe-9f32-443a-a638-8e5c081e7e4b", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.85, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a924ab4a-a0f4-44ae-928d-a04769cc44ba", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b993e7c9-827c-4ea4-a93e-5a657fbf955b", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.3380281690140845, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0a5368cd-8b88-44bc-944e-ec299a5dbd96", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5909090909090909, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1b5b120a-aa64-4a3e-b3ad-a0ea4d6e8e2a", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.703125, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bfdbaf3c-70d5-408b-93da-8db847ae7378", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.40476190476190477, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cb5b61a3-dd7d-4179-a22f-c952fb42212e", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.9833333333333333, "overlap_size": 59, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3dd3b5df-4d1b-4d8f-8964-b136f3429000", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.5959595959595959, "overlap_size": 59, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "132c475f-0a58-4218-92a2-b4187bb146d1", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.5777777777777777, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c31da72d-6d6f-4429-b308-efe74442a2c0", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.2648648648648649, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e5f79118-4031-4a0c-aa6a-15aceb0bf2c1", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.5974025974025974, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b8b4d489-4b38-4679-be3e-14ab4ad09199", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.29577464788732394, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1ec89015-01d6-453e-b68b-4df589df4508", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.37398373983739835, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6cd508ea-1841-4e15-a660-18e05eb99f56", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.676056338028169, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "761733b5-8b16-401d-90a8-1884871342c5", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.36363636363636365, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1b20fc9b-b110-483e-8dfb-9db994221263", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.2926829268292683, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a8132e82-63a9-4846-96ab-fbb883d5e7a4", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.38095238095238093, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fb5e01fb-7d8d-438a-a22a-2b494368ca6c", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.3969465648854962, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c4d4a292-c7bc-4214-b691-794f7a4f4cd8", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.2982456140350877, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "182c3baa-82a0-481b-982e-474c1d40d487", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.6455696202531646, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bbf08798-299b-44f8-9230-f5a22d5c02d0", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.4883720930232558, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "861e6d06-5cd4-4b4a-aa3c-08fc2df64669", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3c26e927-cc66-4e5c-9ecd-83445c43d31a", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.765625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4443a800-9587-4e9b-9d56-20a1e2a69479", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.75, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fdf5ef1a-c7e5-4623-a3c7-03d24eecab73", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c6eee2b5-22a6-4f59-8a26-739a0a43f05a", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3987accc-d752-44fc-8184-6e8f0bf6a0d0", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.7761194029850746, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9ee343fd-4d11-48f7-85a9-3fc50fc4dca1", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4caee9f4-a252-4a77-a4fa-32f70db75dcc", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.7424242424242424, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7d90fa97-e480-43b4-abce-648e5125e41e", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c72b31ae-b624-4a7a-8674-acf0aa31d659", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.6923076923076923, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "68279e40-7fb8-4aae-bbb5-7192b2fe9c9c", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.5531914893617021, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fab4a01c-a53f-4b1f-a29d-844c61571e9e", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e7bbd80e-09b4-410a-a9fd-6c2abdcb595b", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.27071823204419887, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6f326d63-aaa3-45b8-9fc6-0dd218012190", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c09da2ff-eeb5-495e-a3ae-de3d34054a92", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.5531914893617021, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bae91b6b-5977-4d68-9563-3e0b20f593c2", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6f81390a-9c3a-4b1f-a0fd-a255685fc276", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e74af3db-8237-4a87-9843-6db6df3d7a54", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.494949494949495, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eb7f5c43-602a-41f6-bbed-e4eec752d54b", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c2efcfa8-18ec-4ad6-a872-c1b63884e456", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "57742fda-1a2f-43c4-b756-a84fe7731aee", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "similarity_coefficient": 0.43103448275862066, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9b400c19-327c-4b11-8987-5130e8a0ef1f", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.5, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7ac31b77-27c5-43cd-a08f-8f2ce9804374", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e32a9c78-91dc-47bf-8409-546746913001", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.30625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3578e597-a925-4657-a0d4-bb4ee731825a", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "09f1f306-a47a-4939-905e-fbef65d7a7c0", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "79f7f717-7314-46ec-b471-afe6f023c43c", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.2752808988764045, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "76d05b17-d95f-43f1-b3ae-9834c8f01b22", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.32857142857142857, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b83355b9-26f7-4bb9-a3ae-7392bf292b85", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.620253164556962, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "903e11c7-a916-41a0-a92e-9ffffbc28c1d", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.31952662721893493, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1adb1795-9cb6-4810-93d0-2803a2c428ff", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.6082474226804123, "overlap_size": 59, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6fe47a12-ad60-48dd-9ee6-baf311e1fa9b", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.3202614379084967, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8f32e1e5-472d-4bf5-a854-88c7e06902b0", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.35714285714285715, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "acf80172-8848-4fbd-adf3-5abb48fbdcd1", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3ff4c953-f99b-4adf-a424-1be054201604", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.7, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ef1873cc-bc40-4d79-b5df-cd583880e873", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "13d3ff70-092d-4a49-a64a-d90e75c22fa5", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.6352941176470588, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e7e63c0a-7e94-4b66-b605-79d9bc37539e", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.5, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7d65166a-607e-444b-b78d-3a2b6671fe29", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "58c2b8a6-e005-4c29-9a5e-355d40240765", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ed47b611-55a5-4bdc-a23a-ed7bb1c5691f", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.3128834355828221, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "330e5df1-1aa3-47ad-b397-0c18ec032cb1", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.4153846153846154, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dddeec15-f881-455a-ad89-a2e47fb99027", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5641bf30-1b5a-4b1c-8e33-566ff849d3c3", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dcf7058d-ab4f-4f06-8239-100f77c9c6af", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.8387096774193549, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8f07116b-2a31-4b4e-a295-f30caa8571a5", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "69a2cf31-6047-4cc6-9dd9-6f4286ca474d", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "similarity_coefficient": 0.5106382978723404, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "44bd91de-808e-4e8b-b77d-10deae155eaa", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.3018867924528302, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5a51363e-9c39-40a8-b94e-210ab1e6aadd", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "similarity_coefficient": 0.30337078651685395, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4c7e413f-9b4f-451f-95fd-3f3e0eac7b47", "source": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.6455696202531646, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6617aa3e-de35-4d7d-9937-5b7802fe4af3", "source": "cc5a06e2-5526-400d-920f-c569990290f7", "target": "6189859e-374c-49ef-b16b-48eea47da1f1", "similarity_coefficient": 1, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bd316231-10b9-4b11-904b-31eab2439463", "source": "cc5a06e2-5526-400d-920f-c569990290f7", "target": "9704340b-a2d9-4c3a-9254-03262a2052f8", "similarity_coefficient": 1, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7217172a-f249-49d6-80c8-77e84c21843e", "source": "cc5a06e2-5526-400d-920f-c569990290f7", "target": "ac098499-46ba-4296-a03f-9b11ac60dfaf", "similarity_coefficient": 1, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "63185bcd-5759-43ce-944e-e6a7ed27ffd0", "source": "cc5a06e2-5526-400d-920f-c569990290f7", "target": "f59c55ff-3a61-402d-84df-8cc060626bbd", "similarity_coefficient": 1, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "09d68cf6-f042-4fa3-8d0e-0e7b696ec6c0", "source": "cc5a06e2-5526-400d-920f-c569990290f7", "target": "1650d15a-9620-441d-a852-1ce19e3865c9", "similarity_coefficient": 1, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1c7d9be7-86ef-4dd3-a3ab-ffbb8e38c36b", "source": "cc5a06e2-5526-400d-920f-c569990290f7", "target": "98c61e9d-3b1f-4f83-b8de-b03f552fcb71", "similarity_coefficient": 1, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "987ab48e-a27c-445f-b6eb-11e406e6ff49", "source": "cc5a06e2-5526-400d-920f-c569990290f7", "target": "264adbfb-edda-4bc7-a8b3-74edd95909e2", "similarity_coefficient": 1, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3d907dd7-547c-4e17-8eec-03314603a08d", "source": "e077548b-b603-4d14-a989-3ab530ea95de", "target": "ff142123-42da-474f-aabe-17ebaf430321", "similarity_coefficient": 0.28888888888888886, "overlap_size": 13, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "96902b2a-5f73-47f7-83cd-2f65c7a2167f", "source": "cadeeaf0-7b4c-48d6-a533-1357e319b01e", "target": "58322784-4ff6-48e8-bb62-0bbc20a06950", "similarity_coefficient": 0.396, "overlap_size": 99, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "46829cd1-bc6d-4a97-b540-153d99986697", "source": "cadeeaf0-7b4c-48d6-a533-1357e319b01e", "target": "304b3755-2434-4a6f-b5b2-2df6c7309f05", "similarity_coefficient": 0.2844638949671772, "overlap_size": 130, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fd8b9281-9f0e-4a17-8a3a-b37c857c46bf", "source": "cadeeaf0-7b4c-48d6-a533-1357e319b01e", "target": "4c84babd-5ce0-42f8-899d-dfad984c96fb", "similarity_coefficient": 0.39303482587064675, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0d4b7589-6dee-46e4-82c7-964c045be045", "source": "cadeeaf0-7b4c-48d6-a533-1357e319b01e", "target": "5ed4b3b0-0529-42a4-97a6-871542f5bff7", "similarity_coefficient": 0.6677740863787376, "overlap_size": 201, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e6477e5b-6ce1-444d-83f2-f7a138301dba", "source": "cadeeaf0-7b4c-48d6-a533-1357e319b01e", "target": "354ec532-56fa-4d39-91bb-f26b629c0824", "similarity_coefficient": 0.335978835978836, "overlap_size": 127, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "db4b4a3d-bb25-4169-88d3-c3e1cdeac92b", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "similarity_coefficient": 0.359375, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c40ecbc6-63f9-49ab-87bd-8c8e35d3843f", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.29518072289156627, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b16488a6-fa89-4491-8815-e9ab370c92d1", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "25c47aa5-5255-4e06-9811-94086f2f67d9", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.25263157894736843, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2b5e46db-f2f9-4911-b4b8-2919aea31843", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "53b42a94-38d3-479a-8dad-9e81db336b2a", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.37404580152671757, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ca881058-5db6-4752-9e70-cc9192952067", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.5212765957446809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5022b731-f3ea-4ecf-bc54-403b6d9a94ee", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.36619718309859156, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "80c99a85-27f2-4107-8acb-4eb9f7384dd9", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "243207d1-737f-4d37-81d8-c3a346154567", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.5212765957446809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dd875a06-1683-44f7-bef2-ce5900bcaa6d", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.5212765957446809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cd85d53b-c534-416f-9a7e-021c3bcf2a57", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.494949494949495, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ab88943d-c80a-42fc-abf4-60cd741e377c", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "318a1fe8-2d5a-4b2c-b806-ec786b8deee9", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1da4baa7-5ea8-460f-84f9-739a35f05d2a", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.4369747899159664, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8848be7d-7418-4ac9-bd50-51f4edaab8e5", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.4742268041237113, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f2a6a37e-23a1-4da6-bab4-f0095c11244c", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.4639175257731959, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a6ca076f-e5e7-4692-b02f-57808d5046e8", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.48514851485148514, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5826dae1-c330-465c-ae9b-daf6590169f0", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.4336283185840708, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0e082f43-50c3-4964-b85e-67ae4627df12", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.2967741935483871, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f9794391-1539-4ee5-a12d-b6e792c72587", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "similarity_coefficient": 0.5, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3850f21c-0fd4-407e-9727-45bd0a880b5b", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fa5507fd-3e87-4ba3-89a1-548d6a107aa8", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.44144144144144143, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9ffaa89f-d560-4941-adec-cc1e94f28668", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.42201834862385323, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d2ce6be6-69c7-452e-a2ef-2965b7cc48ef", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "33c9bcde-076b-467a-8783-02f39f19c5c0", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7145c582-938d-4ddc-9d02-ef46623dd676", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.36507936507936506, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "622801ca-e820-4370-94b1-24a731f7e89f", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.3170731707317073, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cc50fa0c-1e87-41de-9725-c6cf2260151a", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.38235294117647056, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "29c1f059-2a75-46ee-8e5a-13f2ac33312f", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.532608695652174, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6000c52f-236e-484b-90fc-c7e3211efcb5", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.4083333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aa6ecc62-2889-44eb-832d-339db311f9bc", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "10561a70-46db-4fc5-a209-e2dd582e3f53", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.2752808988764045, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2fa886c5-628b-4262-ae7e-64f5204e0928", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.2552083333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6726e8e7-ea05-4090-a1ed-328ff4194798", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.2887700534759358, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2690c047-f39f-4b43-bc70-90ff5e1ce8a1", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "253ff290-f685-44e1-95da-edb9cacf3525", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fd6e866b-6aa7-4004-b224-c04ec8a0b4be", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.4224137931034483, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4f28b08c-b49a-462f-906d-8ff082b7f587", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3e6f8c4d-267d-4470-a53a-7fd4c61ef05a", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.392, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "90974631-71c1-4847-9f1b-fd7f09f3d253", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.3559322033898305, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "83b06a60-44e2-428e-83c3-196cc3647fe2", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.2777777777777778, "overlap_size": 30, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "92291c57-f0c9-479e-ab20-236feda3e1c2", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.49504950495049505, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6a38c9ee-e646-4c98-a269-1a3d33ca33ac", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.3983739837398374, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fdf4ab1d-b47f-44a6-bbbf-cc0debdf78a6", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.46938775510204084, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3256deb8-55b2-4c2b-aa45-02e4f02a56f1", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.26136363636363635, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8f1f9e34-7afe-451f-a702-22907dbf557b", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.5, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "24aa5431-08a5-4d05-ada1-271617abf68a", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.3858267716535433, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c458b5ff-c9d4-4938-ac4a-351ad156a02d", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.46, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5146876e-7c8c-4abb-809f-7c4cd23fcadb", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.35384615384615387, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a6d1b2aa-ce9f-4897-9904-5b7398cdb4bf", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "similarity_coefficient": 0.25118483412322273, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8c8f759b-b334-4ced-a2d3-e56e068359cb", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.5212765957446809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "93cd29cb-5280-41c8-b931-4dfa781f1c13", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "00a26449-c128-47df-a336-9b0ba97c0c82", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.30625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fe89f813-f36b-46ce-a6a6-3a6f397d8f38", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.5212765957446809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bfd1f79b-4f32-49c9-b863-bf9436d38b47", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.494949494949495, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9bddf6b4-b838-4e21-b705-716f9a594467", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.3828125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7cab965d-25a6-4b02-874d-a8d907b17e10", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6a11d5be-d366-48c4-8001-bfa06d04c6da", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.26744186046511625, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "394be143-09d5-4e91-82a1-ce3a18632f5f", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.4336283185840708, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cc96a360-2520-4bc3-9777-7b99b32dcd69", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "similarity_coefficient": 0.8504672897196262, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9add5cb0-36c5-45a4-8814-eed86be57743", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.35714285714285715, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eb4f37bb-9a6f-44ba-ac88-4d2e0509f8a2", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b4fc1091-d10a-4602-b167-f8ba3d1aec53", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.35766423357664234, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e936c43b-894e-4181-b85a-7cbe55976a29", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.4380952380952381, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "884817ee-0662-45bd-99c1-e5be253e0f79", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9d82cd1c-e18a-40ea-88a0-4d1cc12fdc3f", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.2648648648648649, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b42955d4-912d-4380-8e8c-9eda0e497403", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.46875, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "07d8bbe3-e0b0-4b90-a3c1-5b305066a47a", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.2561576354679803, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "99de8e33-f9a2-4cb9-8c22-4c0b882a6489", "source": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3eda58fb-7344-497b-a76c-23979fff2cbb", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.34507042253521125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d2f79c0a-52bd-40c0-8382-8b34b6d1b803", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.3983739837398374, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8462646f-5097-45ac-8cea-ac0da72d1dde", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.30625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ed863168-3fc8-4609-9888-f539aa8093a2", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8f314f8e-8a49-4002-b1e3-d8593693fac4", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.42592592592592593, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "71c120cc-9e3b-4c8f-a27d-6a8b61053757", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.5609756097560976, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d01c4aef-53b8-4375-9182-f3900ae26c71", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.44785276073619634, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f50cb93d-7c86-4af0-8f61-169bce9d0a59", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.8767123287671232, "overlap_size": 64, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a63b0c04-ca31-401a-9123-1596ce39adf4", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.34210526315789475, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "563b4610-a370-4e43-84d7-3dddd57ea547", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.2692307692307692, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "414c7d2e-7ca8-4b5d-b84d-31e1cb2fc7fe", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "26433219-8fbb-44d5-893b-c9cb3c32c1d5", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.5508474576271186, "overlap_size": 65, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "64fd1823-92c8-44dd-852c-17c59e4bac93", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.6410256410256411, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3146bce2-159d-460b-a5ce-acaeb707b35c", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.6125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8a5e3fa1-6a24-4937-aaf7-09e4665ace6a", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1ed1bfc8-a155-4c8e-ad0e-960bb3fb784a", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.32894736842105265, "overlap_size": 25, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "18cab41b-1926-43ca-8e7d-d019adc03047", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.8333333333333334, "overlap_size": 70, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b55b6e70-f36e-4ae8-a8ae-ed485ce48569", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0c55c985-b04a-4673-a87f-5e76618c246a", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2f0356fd-5d3c-4f47-a019-48510821a6dd", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0fd547e4-4b51-4e56-af19-974316b27a29", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "similarity_coefficient": 0.4857142857142857, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "39b024ac-3e2d-4d08-a9d6-bedf46acb1f8", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "718a1f42-1013-4a9c-8998-e8c95bc80eaa", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "95823b12-d36b-48d4-90b7-42808bf3ba03", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.2631578947368421, "overlap_size": 25, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e6392cd8-8f73-404c-a942-76b374f46a44", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.47096774193548385, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "80c0d5c0-88b6-4ff8-9f8a-aadbfebe2f16", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "42b72c7e-677f-4557-8e47-a450f4038023", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.5822784810126582, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "893bc397-a21b-485a-8ac9-2d9d13f02776", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f1e80081-821d-4cce-804b-f4bafcce20a0", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.4166666666666667, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ba21bb2c-f9c9-4085-925e-aadfa9ebb37c", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.33783783783783783, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ceae7ecd-18df-4584-a482-fd317866c9fe", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "248ea038-9ae1-482f-a46c-b689e40ce9a2", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d8648832-e60a-4c35-83cd-0d0a954170e2", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.28160919540229884, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "628946cd-5609-4199-9040-a03703ad10c0", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d50a4fc7-07c7-4345-a38f-90c5ac9bc8a4", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.37714285714285717, "overlap_size": 66, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3159ec31-6d9e-4a04-ab87-f9cd693590ae", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7b289d6a-a568-42f1-8fd0-723cdab5a1ca", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.6352941176470588, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5046c059-efc0-4aba-b4ba-434b91ed91c0", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b5ced6d0-4d51-47ae-87a9-989fa027bc64", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f257e77f-79c0-4fc3-bc11-21812554be4b", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.3076923076923077, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e1b8b981-d252-453c-8295-aa9f6fa8eb62", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "similarity_coefficient": 0.37404580152671757, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d4f6a735-4821-4086-9976-56bf0b51de0a", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.4117647058823529, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "793528f8-8ec4-4d33-bb6e-2c53c961c2ce", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "b67a97a8-54b7-4306-be3a-d6518f864d8d", "similarity_coefficient": 0.28085106382978725, "overlap_size": 66, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "54246b62-f7c5-4d54-9259-36dd43b8ea4b", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.7777777777777778, "overlap_size": 70, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d03dfda5-268b-4694-8e74-57f6525f437c", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.29651162790697677, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dbe80f66-31b7-47d8-97e1-a424fd900d36", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "636275c2-362c-4856-be93-d0fe898a5655", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "85445a90-83a0-49e6-8342-c3c51ab396ba", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.88, "overlap_size": 66, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0f7c15df-09ce-4ffb-a290-8d080a266e5d", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "similarity_coefficient": 0.550561797752809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "51a9294f-8192-41b3-bd2b-07546345707e", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.3968253968253968, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e8c48a19-ede0-49ee-a95f-7cf03b8bf2a1", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.5617977528089888, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9bf678e7-8a50-4497-a578-adc682571018", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8fd2c8d6-73a6-46d2-9055-59d028d81461", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.4336283185840708, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dfa6b487-653f-4447-b81f-2454bbc17ce6", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.569620253164557, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c2fcdc56-70e9-439a-8b70-da4e5c7a2032", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.49056603773584906, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e19308e0-5d55-4c6e-9004-86095074649e", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "f8a5f9ff-fb62-48b4-ad61-1e4f868172cb", "similarity_coefficient": 0.28205128205128205, "overlap_size": 66, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6537449c-67f7-4901-914b-7786391ecf66", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a1d2366f-9033-464f-8b9d-bf080026669c", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.8607594936708861, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8463e4e8-2646-4e5b-9754-e2dc6a305aaa", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.3310810810810811, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "08814553-2345-494f-94b4-f6b5822fd843", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.42, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bcd6115f-8237-433f-997d-5fab98f31747", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.575, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dc618578-fbf5-4829-8748-d7f8d871ca19", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4a0572db-85f0-4aa3-ace9-96d1e6c0e671", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fc8fa6df-5785-4ff5-8b49-56817aced85c", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.7777777777777778, "overlap_size": 70, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dadd1d04-2229-4460-917e-fd0cdacec938", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e9a336fe-b058-4edb-85dd-87596e9c5686", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.6219512195121951, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "76218e91-6c62-4dbb-a4c9-8ee20e148729", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.26737967914438504, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6f7dd606-ea20-4821-b157-e6b0dfe6388f", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.5769230769230769, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f78c837d-2497-4bb3-945c-f253b0282ad2", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.2934131736526946, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6a2b0d5a-effd-4a91-828d-2542ab57a6cd", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.5824175824175825, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "384d8bf0-7910-4a9b-98aa-b8f5a40315bf", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.8481012658227848, "overlap_size": 67, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1acb8a6d-97f6-441b-88c6-460a13e3effc", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5edbde5d-2057-4be5-be7b-697b45a6e49f", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "69c4b4b7-c9e4-478e-997c-da4e05c3d7ee", "similarity_coefficient": 0.2647058823529412, "overlap_size": 72, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "90e2510a-3c38-4162-952a-d8200bb82853", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4bb40c3c-4239-41fd-aed9-e361dc92d3b5", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "44e853cd-d32d-428d-873d-0278f45a1c18", "similarity_coefficient": 0.2549019607843137, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "02d8fb0b-9680-406d-9766-5fd8b152c756", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.4925373134328358, "overlap_size": 66, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "840361f6-f476-4cdf-9e14-25de44513d7e", "source": "33c9bcde-076b-467a-8783-02f39f19c5c0", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.2512820512820513, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "77c78ff1-cd70-45b1-8be6-ccb03019cc3c", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.6666666666666666, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "36188e35-ecaf-4c98-a577-375ea8d167ca", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "b4472d3f-7b1d-4c57-b47a-bffedc4aba98", "similarity_coefficient": 0.270935960591133, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9f3fdc30-76f4-4637-92d8-3f734dc3fef9", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.8032786885245902, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a5ee16d7-c273-4f88-83f5-99263fd9e367", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4e735d4e-8d52-434d-8cff-e671c6764f61", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "50c187dd-27b2-4168-99a8-5e36cfb3e99e", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f9ee17e4-cf9f-440e-8c60-d6a9e58c9ec9", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b0e286ea-5829-4b74-adad-8c196f864c51", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "94533e57-98f8-4f68-ac0b-5c69a5702b39", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.532608695652174, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8ce2e9dc-b8bb-46a7-b36b-43e411dfaa27", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.8305084745762712, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "27d141fa-cb3a-48a3-8237-d16515329957", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.30434782608695654, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c5af0557-15ca-41cd-9070-ab79c47aaa68", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.3769230769230769, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f5bcf3be-1c47-4805-af8c-2f2ca6fe8a05", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.28160919540229884, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0c812ff7-78bc-46a6-bdd9-7ee1ddbb248f", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.27071823204419887, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4b7114fa-81ef-435e-a298-9fba58f705ea", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.8305084745762712, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c115d6dc-0304-4151-8987-d8a20c106d63", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "44e853cd-d32d-428d-873d-0278f45a1c18", "similarity_coefficient": 0.25925925925925924, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a7bf52d6-faf9-4837-ac4e-8b850a5632a8", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5da6b6c5-2e4c-467a-a1fe-2c4e23907958", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9014d10c-209e-4bed-8855-aa7fe6b0b096", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f1d044b7-6ec9-4a6b-b201-d2324dd2ba8e", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c8ee61ea-ff95-4897-b33b-f5af659eb6e1", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.7540983606557377, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7c159b19-1c62-4340-8be5-aa4ca0f7de60", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.2929936305732484, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "926b7177-0c97-4e7a-99b9-b6bc74934a9b", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.33783783783783783, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "22d7d253-ddcc-4f73-9f5a-5021946fc9d6", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "similarity_coefficient": 0.5, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3ca136a9-5b01-4603-b035-f2a04b1efe9e", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fbfaacd3-e23f-4565-9f64-593a939a9f5c", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "similarity_coefficient": 0.2737430167597765, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "83c20d0e-0970-4c25-963e-f421507c626c", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "747f2ed2-138a-443a-9416-1f6164142e3e", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5a61a4a2-d259-467a-9d87-3aade898befe", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e0217dd1-e384-4f52-958f-240a20f80a64", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aa9cda41-f1e5-4ebb-9b85-e3a07534698c", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "similarity_coefficient": 0.4336283185840708, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "02a9e4ff-9731-4181-a087-ccb6d0896db3", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "483476c1-ec01-4dba-a5af-ea4f6d562af8", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b76e23f1-bd9a-4398-bc33-18bab25acf9f", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e180d45a-f25f-4928-aea8-50308486ac42", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7251c15a-478e-4e3f-978a-5001a0f82d27", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.875, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d439a531-c02c-4822-ac73-1062499c9f50", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.28823529411764703, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "802c40d0-151c-4c8f-ab3e-1800c7c48f28", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.30434782608695654, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "73576e57-70fb-420b-af80-79840f082f3b", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.7424242424242424, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ba99d5b0-3de7-4435-9e15-6f52602ae86b", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.3141025641025641, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d028cd4f-47e5-46a0-bd02-984280c6da14", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.48936170212765956, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5e5fd7a1-dede-4f4e-a0e3-210d434123d6", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.3141025641025641, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "344a1735-5c92-4249-bc53-61ecaeb77654", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ae6b611d-5fc0-40b5-9095-4399c5084cc7", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "906e8e88-3867-4606-aa4c-373d3c3a6fca", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "86f7479f-69b2-446c-b686-482686bdd2ba", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "similarity_coefficient": 0.7538461538461538, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fff2a6be-5fa9-43d4-87b5-53a577288403", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.48514851485148514, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "83a38793-3a20-4d29-99c5-66b179a666c4", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.5681818181818182, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cde4c57e-9bb5-4242-a0e8-1a82b4b4690b", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.5121951219512195, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "17a91862-197c-469c-a4c6-76618976edba", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.2768361581920904, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9687a5cf-324a-4d15-b4b8-be1c8c7d4dd3", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.37404580152671757, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "878b554d-0028-4b8f-92be-d513483cef6d", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.620253164556962, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "605d0205-dc42-46c6-ab82-96c4d8b1c8ba", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.3382352941176471, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ad06d13e-450b-4352-84ed-c6520b7b34cc", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.75, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fbd00b86-4007-4153-9980-bbf567992a86", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "077ffefe-680b-4893-a2af-fbb8f6e41ea5", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6603dfed-cabf-435f-973c-2d30b2327ad3", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.32857142857142857, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6df20442-a144-4932-8174-07007bb8b76f", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.7538461538461538, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "692f81b4-4775-42b3-a298-6e154ec5c94e", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.7424242424242424, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9bac74e5-071c-427d-8002-37a1a4534c06", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.7377049180327869, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "43d8f8f2-984e-4fec-8080-63fc05f11c47", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f21fcf3e-3239-485f-a327-82b5e6a68b4d", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.5555555555555556, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bce055ea-d33d-453a-bd15-0f3e33b4b8a4", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.3546099290780142, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "68d4b4a0-168a-44fe-934a-d66201d14210", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.746031746031746, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e5d57f3b-249f-4009-865d-1b3258b932c0", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.7246376811594203, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "665ab488-dacb-49c3-8665-d005db5a6453", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "53e708bb-2e5f-44af-ba58-6d6da5c6384e", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "20b87cb7-7813-4155-80e5-6877a84383f1", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "19a2599e-7571-47c8-914e-a47ca53b9c9f", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.7419354838709677, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c86c3303-5a5b-478f-b546-8a3426e03cd5", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.7424242424242424, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a34ce37a-4b05-4aa9-bbf8-cc4e7ff9efae", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.6125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "489ab346-115c-4561-b94f-253aef909ec9", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.3865546218487395, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "15d47f79-f119-485c-8a9d-68b07fb3dbae", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.7222222222222222, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "97c83838-09a4-47f5-8e1f-6cd8e2cb70be", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.5111111111111111, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "977a3b3a-3fac-4ec9-8e27-8766803b0611", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.3076923076923077, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ed3b080c-a094-4f80-9b58-281da2fbf965", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.6301369863013698, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "51a63f9d-4091-4af8-ab29-b555830b5867", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "33c9bcde-076b-467a-8783-02f39f19c5c0", "similarity_coefficient": 0.620253164556962, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8da2b982-9410-49c1-8f68-0e826b6d145f", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.28994082840236685, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "740db49c-bb36-49f2-8528-4b69205654bb", "source": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.4067796610169492, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "898263d1-3820-4b22-9bcb-f79b6211ba99", "source": "f86403d8-4d02-492c-ad8b-13e10dae4101", "target": "f63f3d19-3430-449b-95e1-efa9cce6e635", "similarity_coefficient": 0.2862903225806452, "overlap_size": 71, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "21f9d1ee-2b7d-452b-bf55-935ecfade0c4", "source": "3cdfcef3-3bc3-4abe-b8ba-a1eb0dcddc06", "target": "97e3781a-4de1-4225-a0f2-6b73d004f3f3", "similarity_coefficient": 0.4097560975609756, "overlap_size": 168, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e3936c4b-801b-45be-84d8-09a9ab3aec53", "source": "3e25f569-00e8-43f9-a3b1-1ad7434aaf4b", "target": "b41086ab-9be9-400b-9b8f-21e6cefdf170", "similarity_coefficient": 0.9655172413793104, "overlap_size": 140, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2fadad26-8efc-48a4-9d00-540d2b4bcf3a", "source": "636909c1-eb2c-48af-a5f1-691b8680834a", "target": "412de8da-b84e-4844-a508-31c916aa1b10", "similarity_coefficient": 0.8986083499005965, "overlap_size": 452, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "df7986c1-acad-446c-8d5d-34d0a98c8da5", "source": "28206aab-808d-44e8-ac77-aae952d8f7b2", "target": "f718538b-8c4e-4d0c-8505-68da9ee2a319", "similarity_coefficient": 0.6330935251798561, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "41ab3ac0-f2ed-4416-944e-52a408a64af9", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "similarity_coefficient": 0.6341463414634146, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bb64408f-b55d-42d7-a74d-95cbf8f4a567", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "similarity_coefficient": 0.5923076923076923, "overlap_size": 77, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a2f49c1a-82b2-4951-9af5-160487526a39", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "37470ba0-c29d-4ed5-8f4c-f9c4b383cf9d", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "similarity_coefficient": 0.5, "overlap_size": 60, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2483353f-6801-4492-befb-1d8521400f60", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.5906040268456376, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "320c3543-221f-4dec-bdda-30f1701050de", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "868604a2-809b-43bf-97f8-7d956608ccae", "similarity_coefficient": 0.6164383561643836, "overlap_size": 90, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4a45bf9d-2474-4a6f-9e18-9f7b96b2a255", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.49166666666666664, "overlap_size": 59, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3a6d1bfa-0246-4681-9358-12fde2d26483", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "similarity_coefficient": 0.7323943661971831, "overlap_size": 104, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0940a79b-cd31-4256-9365-fea690b287c7", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "similarity_coefficient": 0.49166666666666664, "overlap_size": 59, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8278f1ea-ee99-4630-9897-c9b6450fa62d", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.43333333333333335, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3c89749f-1d57-435d-a4dd-96d2d20dda07", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "37e647cc-a74c-4d85-b0b1-acd8afa35d16", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "b401cb25-9626-4bf4-9dc9-a102b829189a", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "32360277-e6ac-4e49-848a-ebc35e3817ff", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 1, "overlap_size": 120, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e45eabd6-30b1-458b-8fbd-91d80459a36b", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c90e03f4-3aba-4345-8431-f3c8a6315b0c", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1e8b044d-e694-4fd5-af5d-81b902a6efb4", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a533856f-d6d3-4c4a-b990-16fb0ca9a309", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "917f68ad-d32c-4b43-b550-42d70da91a8c", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d7fb05a4-f726-4117-a960-5accc4ffce8d", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "57c3ead7-c3cc-4194-807a-6426ef732666", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.5301204819277109, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e8ccabfc-9fcf-4666-aea3-54e24df556fd", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "similarity_coefficient": 0.7213114754098361, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ad775761-cdc7-4395-89f0-e2ced546c39b", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a1b3eecd-94f4-4af5-bdf6-660886cefa11", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "09d5affc-80cd-49b5-be15-112a2e7bf3ab", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "similarity_coefficient": 0.9416666666666667, "overlap_size": 113, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1222e272-53fe-4ccd-b2e4-c59a2ab47f64", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "93b65c73-23ac-486a-a7fc-f914e49fe917", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "caca0faa-8e9f-4299-a6fc-4d35ff9ab451", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.7213114754098361, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "40c7d73b-0595-42d5-b46f-d639d73c6938", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "654c8ed3-2e6d-4362-897e-7dffb9de2658", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "similarity_coefficient": 0.6984126984126984, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c4a108da-cc3d-4fb7-a2a4-bbf1ee674a8d", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2ab78327-26ba-4d14-9492-bacffaad95b7", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "similarity_coefficient": 0.37446808510638296, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "85a33d1f-a314-4f0c-ac2f-01d01652b8b0", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.7142857142857143, "overlap_size": 90, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e99a18a4-b14e-4c70-ac44-36d00a000935", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.6068965517241379, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "962b6f84-9379-4b8f-9552-5226f6140469", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.40930232558139534, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dae19f96-be72-40e8-9e1e-6922d62a07a0", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cd91600b-245a-420e-a28e-a3459e8301b1", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "e4cabb52-87fa-46a7-b178-1e258678e921", "similarity_coefficient": 0.489247311827957, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "194e0fbc-3cf9-4ee5-9d12-9ba106453e47", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.44776119402985076, "overlap_size": 90, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fa3bb026-80ce-45ce-a0f5-8309b031e33f", "source": "e15e930f-af85-4402-99a6-a57c9368b631", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.6164383561643836, "overlap_size": 90, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8af082e4-8d29-4ad7-a13f-4719dc7b9a23", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.5048543689320388, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "45467030-03ed-4810-9f8f-04637151ef87", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.532608695652174, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4ee946ba-7d59-4cd0-9e83-d57117f05b32", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.3416149068322981, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bc6c038b-c0ac-4d7e-9325-f3f1fb0060fb", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.2578947368421053, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "38ed95a1-0566-4bf3-8317-4d3ea02b6a26", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ffce3f68-ced8-4cb1-b9d1-76ef777ad78e", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e3b25894-af81-48e3-b5d6-a51543d0a285", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.4298245614035088, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "000d376b-385d-48d0-b2cc-769da018745f", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f19834a8-9207-4c1e-a0c4-1639f396f83b", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.5048543689320388, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4dcb566d-6ff4-45c3-95bb-4b2a1b0e3ee2", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8f5f2bb4-0355-4105-8904-13eb77252265", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.7647058823529411, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1a54a4e3-14be-4ead-a2df-f2ed2e840104", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.4016393442622951, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "73d6ec21-8599-4b6a-b38d-e534208f3a67", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c7a5722d-1052-425d-8858-75223070f78d", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.7647058823529411, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fdcc88d3-0a11-4f46-8745-dfa690b3ed74", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "33c9bcde-076b-467a-8783-02f39f19c5c0", "similarity_coefficient": 0.6206896551724138, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f05b656b-a0f6-4996-a9dc-dc4dfd3c813f", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.6712328767123288, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5a06f566-7db4-4cd2-af66-c396e36b03c6", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "similarity_coefficient": 0.3888888888888889, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0514e381-6e29-4810-9149-fb8dfbabecaa", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.6216216216216216, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "25470d9d-913c-41e2-b397-a0694ddf68da", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7fb67542-6818-46cf-b6f0-0e36f10c2653", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5763339c-5677-4bb2-89e9-557cdcc3e159", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "similarity_coefficient": 0.5567010309278351, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5e06b5d1-51e2-46e2-b951-d17ee4349633", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "72674aa1-43e8-434d-8e55-bbc0c59728c3", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "similarity_coefficient": 0.2552083333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c26806e3-c6e1-47e3-9d0f-2cd93d40be58", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d4ae1940-4473-49c0-954b-29a7602349a4", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.9705882352941176, "overlap_size": 66, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8bd6fe4e-225d-46c8-adb1-9016f42103cd", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.6081081081081081, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bcd7abf0-278c-4883-aeb2-47579a71f4e3", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.494949494949495, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c8267b2a-3dba-438d-bf8e-a9b1d383c912", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.3617021276595745, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9fd63ca9-a4ef-4be1-a409-45d1b72dd0b0", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.5977011494252874, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "671c43cd-5c61-4ec0-b818-82ec7a99026f", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.8382352941176471, "overlap_size": 57, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "77fc9e23-e457-49ea-bf1e-75e6a59422f1", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ba0eb7fe-92ad-4797-9eac-7b9584192f36", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "a0a1943b-60df-40e6-8e54-0852991dd573", "similarity_coefficient": 0.33793103448275863, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eeacfce9-ebdb-413f-8cef-5cbd1217a612", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.2781456953642384, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "85c44b9e-e78e-4538-ae2d-b05c16fe1631", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.31756756756756754, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "29f79f54-b4f3-400c-8ad4-6158875ff7a2", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a96537dc-ae07-4cf7-be4e-13c93d5a2b07", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.30246913580246915, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d88bd5e6-f5b2-48de-a891-8699313899d2", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.2677595628415301, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "835060f9-eb63-4906-8126-641a5f7b2bb7", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.7066666666666667, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "db40fee7-d90e-4a4a-a155-d2dd8adf7e19", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "44e853cd-d32d-428d-873d-0278f45a1c18", "similarity_coefficient": 0.28061224489795916, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2eff579c-56d5-4575-af0e-c63aed20e13b", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.64, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b61e23bb-eee5-452d-bbb9-0d07ab667664", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.3724137931034483, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ca805366-6b42-42c5-8558-3365d5abba4b", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5360824742268041, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "102f4b93-b331-44d2-a489-47c88bea4f58", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.6125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "72a826b9-7a66-443e-87e2-97e004349d69", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.6164383561643836, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bb0acf27-41bf-4a2e-a968-ed4c5c767c94", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.6133333333333333, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a58b0c22-9024-4dcd-9366-965ab71cee71", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.265625, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0047eefc-3ef6-469b-bed2-5bb770f75a3d", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "69c4b4b7-c9e4-478e-997c-da4e05c3d7ee", "similarity_coefficient": 0.25092250922509224, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7cb0ef06-6225-4f64-997e-b8df8c959bbb", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.44660194174757284, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "02842bd8-1eb1-43f5-9b2d-a00c624d4168", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.4421052631578947, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "99647474-4e6a-47e9-abf2-59d6bb203211", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "69be8d37-4890-41f8-8616-e738fb3515b6", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.620253164556962, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f120421c-81aa-4b2d-878b-a67966a07fd3", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.4152542372881356, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4d2dc4ba-9220-480d-a247-9aa214c80935", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fab8f17c-fd5e-4bea-95f6-f4efc15c2bcd", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.36764705882352944, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1b47afaf-98ff-4495-97a4-022cd19a1997", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0ba35664-3ce9-4332-abbb-ba497692d2b9", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fa3585b4-6505-4092-aee8-7c634284ba98", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d2a702e0-1d32-45c5-bb1c-6e55085780f0", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ea2b31f8-3525-43aa-8dcd-430747e44ef5", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.620253164556962, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "239da935-d67a-48af-8207-3aa103c24685", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "b4472d3f-7b1d-4c57-b47a-bffedc4aba98", "similarity_coefficient": 0.25462962962962965, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "584d423c-79a8-40cf-a559-24658ddd10ce", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0af27299-cb73-42f7-a9dd-756cad37a633", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.5604395604395604, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d921cfb2-c8ae-4b16-b0e1-f5f18dbcf1bc", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "17746781-29a6-43cf-b51c-7d801628c1c6", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.5454545454545454, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "789659c2-0d78-45bf-81b0-478cb6937e88", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.31952662721893493, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "06a153ad-e081-4d39-ba84-96ccf0b5a209", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a4a2caf2-66bb-4c6c-b3a8-79b09890c72d", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.3333333333333333, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c550dae8-9cfa-4b1a-8be5-9e7d2e5a9cce", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.3402777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b7748761-30f1-4a0a-b703-8bee12951be6", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.26373626373626374, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "07bb87af-066f-4f60-80f4-2f6d5ff275a8", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.7647058823529411, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3a34a4fc-a96a-4d16-bd12-d7a4aed824db", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.5348837209302325, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4c9daab6-ed42-44ad-bc39-c93dae094295", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.3275862068965517, "overlap_size": 57, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "acbe9e7b-82fa-4741-8a25-be49508d5047", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.3374233128834356, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cec2ae6d-430c-4fdc-a413-79946520a471", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.2620320855614973, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "39776162-18ec-4d77-a3d3-6e27f5ab6355", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.3484848484848485, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5f0af892-a5aa-4994-a378-30e183bf45f7", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a28eaefa-bf3d-45d2-9556-36dbd5a8a9ca", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.3161290322580645, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f5cb0c3b-f1eb-4c32-b111-97052ba39985", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.6623376623376623, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dcc07ae7-3801-47eb-b2f6-097be9d4e3ae", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.4224137931034483, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0e953800-f8f7-4f64-a212-da9ce8d244ae", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e650df09-f427-4d70-8018-04018f20a57e", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4daa1db6-368c-46aa-b148-a037ec592b4d", "source": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.2976190476190476, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2d37631e-88ca-4379-80a1-2098eaaad221", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.31901840490797545, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d83512b7-a107-4623-bc88-9e6a4ea8b1b6", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f7523c0f-df33-494b-be5f-07388ac51b6c", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.3475177304964539, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "981059b5-1759-4c62-90e9-aba4cf596092", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.30113636363636365, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a34f46f5-cd05-4434-8924-75d3e2e41788", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7c7ee7d9-6355-4566-9e31-a91122bdfa38", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.37404580152671757, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eebc3ceb-1f3b-4c96-af18-c8076b5f0d38", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.3148148148148148, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "791b4e8b-e528-40a7-be37-90127f84233f", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.37142857142857144, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6c604946-6659-40a7-b549-4bbfa40edf33", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "similarity_coefficient": 0.29012345679012347, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "98f567ea-4379-4b4f-8ed4-1b582d1c69c6", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.3602941176470588, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d00ebe3e-17ff-466c-b746-f18f5191e439", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.3409090909090909, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c00cfa68-681e-45f6-a0c6-9827f65af2f1", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.2570093457943925, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "971181cc-ba49-4eb1-9c6e-822bf9fb3be4", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.3493150684931507, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1ca5ffbe-6f5f-4d91-8436-12498d206eaa", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.33793103448275863, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8df5cad7-860e-4fa2-9847-11bda5d90cda", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.3161290322580645, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "13969e99-68f9-4d61-8c83-28a43bebd0b8", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a281731a-d620-408e-9ebd-10e645edfb1a", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f387a7c2-396f-41b9-b10b-00fe0fed0198", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.42063492063492064, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4ce230c9-8036-4129-b0c2-884d9b3b2d90", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b9f8f14e-4312-4cf5-b17e-8f200b060e5f", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.26262626262626265, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "74fed70c-f49e-45d3-8005-d64441a76492", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.28488372093023256, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a3fa407d-a506-42ee-95ab-f3fa980560c5", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.32666666666666666, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "39ae5189-d573-455e-a480-aee4df4d0aab", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.251063829787234, "overlap_size": 59, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7f8f4962-0ed0-4444-9586-323be889057e", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "similarity_coefficient": 0.3712121212121212, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6c31fe87-3c55-401b-aac7-b47903e16289", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.3923076923076923, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8cb56192-bfb2-40a6-a668-072833b1e4bb", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.3656716417910448, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ad826437-2af7-42ea-bfce-13a9c4363824", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.3381294964028777, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "95d1408e-2ed7-4979-888f-6cbb4ee6d005", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "similarity_coefficient": 0.3805970149253731, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "306038cd-ab53-432b-bd29-3c185043bad3", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.34265734265734266, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9de76f3a-5bf7-4338-8476-1d596b823fcf", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.3875968992248062, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bd9e02da-27fa-477c-8b8f-b59b8daf8a51", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.2865853658536585, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6d6b2709-80ff-4c76-bf25-a47aaaf0dfb2", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.3148148148148148, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5f17217b-24f2-4684-abce-251572fc65c5", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.4126984126984127, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7fde819e-d17d-478c-a1e4-13bcb6682c9e", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.33766233766233766, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e2f072aa-1790-4f76-a3f0-6feda6e136af", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.26424870466321243, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e676568f-300f-493c-93c5-25337b8e6f03", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.3269230769230769, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d3717dd0-3c28-480a-b1cd-0824cfb31cc1", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.37593984962406013, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "93d0957b-e138-4d70-afa6-57eba0b92271", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.29310344827586204, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2c274bef-9d0a-4408-ab95-dd33555e7670", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "similarity_coefficient": 0.2802197802197802, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ff2d7250-7dea-45ae-97c2-edb45b1f9890", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.37777777777777777, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "02e2129c-bdc6-4617-b3a2-13f08436b1e6", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.27450980392156865, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a8b63437-ba74-4596-ac87-6654f3948bcc", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.33121019108280253, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5918ae04-ee14-46b7-bb4d-da8d21013d04", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.366412213740458, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d78cc893-34b0-4ad3-bcd8-bf09457a6a61", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.3880597014925373, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "659fd958-2209-4fa1-85bd-e5712fdbb8c7", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.32450331125827814, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f8b95e56-f151-4b1c-bd79-46231214828e", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.3105590062111801, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b8409c02-b71c-4e7e-bb9e-e74047982766", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.3684210526315789, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c04d49c4-c818-4c97-a9d8-1300e82a327a", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.34074074074074073, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6a2dbb96-2347-4cba-90f0-553d4f299d7d", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.35507246376811596, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a08e6bbd-2557-4046-8c21-caacc61e9eba", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.3435114503816794, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dcebe76e-3b8f-44ce-bb55-5d6a31b5dfe2", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.27411167512690354, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ae9e79af-128c-432c-a193-796eb0ed11ac", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "similarity_coefficient": 0.34507042253521125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1d04bd63-5e9e-42cc-8dc5-6f3b5f9dd425", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "b67a97a8-54b7-4306-be3a-d6518f864d8d", "similarity_coefficient": 0.2553191489361702, "overlap_size": 72, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a6cb9afd-b629-4a67-9056-aa54aff13e7f", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.3493150684931507, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d9aac0f7-f467-41dc-b837-09ada5a3cc8f", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.3194444444444444, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9f482785-9e4a-41b2-ba87-568bec1ec751", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "f8a5f9ff-fb62-48b4-ad61-1e4f868172cb", "similarity_coefficient": 0.25622775800711745, "overlap_size": 72, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "65670da5-9d62-4101-80cd-882bbbfab8ec", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.29651162790697677, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "48558e20-10be-41d7-a47c-7bc75f8b001f", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.35766423357664234, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8d90f385-ee41-4f30-b62b-d186649b3c34", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.3968253968253968, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8393434a-a603-4e49-b2d6-0ebf5db5fa01", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.3167701863354037, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "490bc772-cb40-45a7-8b39-af9e86c6e051", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "similarity_coefficient": 0.3072289156626506, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "21df62a2-cf1e-40df-88b8-715d06c87c29", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.3018867924528302, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "62e1ad1e-7d24-453a-91d2-d61091293706", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "33c9bcde-076b-467a-8783-02f39f19c5c0", "similarity_coefficient": 0.32666666666666666, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "93203fd6-62f2-4e6d-a96d-29d2276cba8c", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.3356164383561644, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "193b1364-c764-4b62-98a2-aecee8657fe7", "source": "a0a1943b-60df-40e6-8e54-0852991dd573", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.2553191489361702, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b10e4b08-e908-4495-bfc7-756dc678df78", "source": "21bf578e-30d1-4fd3-95d2-727025363526", "target": "beb79ccf-a196-43d0-86ff-773092ba3490", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0ad89b46-0122-40fa-9ad9-401b71c660b7", "source": "21bf578e-30d1-4fd3-95d2-727025363526", "target": "3e8dd08d-a111-414e-905a-faeed681e3f5", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5814e1ea-27a5-4ee2-9334-c81ed0afa309", "source": "21bf578e-30d1-4fd3-95d2-727025363526", "target": "8c62d23a-e9c6-43e0-bd9a-536f1f486194", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1b6a9165-4d74-440c-8b7f-efda338f000e", "source": "21bf578e-30d1-4fd3-95d2-727025363526", "target": "89ef528a-6736-4b29-9138-7a11a722353d", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "96cbf753-7f15-4537-a99d-871ea5bd5d31", "source": "21bf578e-30d1-4fd3-95d2-727025363526", "target": "a43c5c6e-b75a-46eb-ad38-bf93f14d030c", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0c50c885-da7c-45ac-a464-2c4947b50dd8", "source": "21bf578e-30d1-4fd3-95d2-727025363526", "target": "d078c60c-b5d5-42cd-a5d7-a780f23a8090", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "da5aba58-5e29-479e-8605-3e6ac5b2ed85", "source": "21bf578e-30d1-4fd3-95d2-727025363526", "target": "e97d3933-d924-4c41-8e4d-ae17bd34263c", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "72589f60-877a-407a-87ad-8a6b5c109ded", "source": "21bf578e-30d1-4fd3-95d2-727025363526", "target": "e6bdd19b-66e3-45e2-b2b1-92f658ccc62b", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0415af6a-73a3-4a6e-a492-10f930c84129", "source": "21bf578e-30d1-4fd3-95d2-727025363526", "target": "5db5ed69-b4e2-485d-b78c-1b47eb326935", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "28e5f980-d219-43be-99f9-1224e39a7b33", "source": "21bf578e-30d1-4fd3-95d2-727025363526", "target": "f45e0bc4-6f9f-417b-b48f-de0017b4ee5a", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "811c6e25-efb9-4dae-8f13-929835aea354", "source": "21bf578e-30d1-4fd3-95d2-727025363526", "target": "4972b393-f94e-4331-9cd4-206ae4786f51", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d45a2f0d-ee65-427f-b52b-4aa60b0dac6b", "source": "21bf578e-30d1-4fd3-95d2-727025363526", "target": "218e964f-2842-43f5-825a-917591457798", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d76e2e05-8a5c-4eed-b1e5-97e750ef62f4", "source": "a9a093b8-8d00-47eb-910e-37c45c9e4cf2", "target": "21195091-2c98-4fd5-8996-4a7e13ecabb7", "similarity_coefficient": 0.632183908045977, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4b50516a-26b1-45b8-b78d-236f77e33b8c", "source": "41e51785-b6a5-4926-93a8-93e756e15ca6", "target": "ed852b58-9ecc-4c4e-aa04-d50a951c9801", "similarity_coefficient": 0.5789473684210527, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1ff18b38-a332-49a5-9866-dc5f66d21c87", "source": "41e51785-b6a5-4926-93a8-93e756e15ca6", "target": "62d1a2a4-a8b0-4330-9997-0e0c05099ea3", "similarity_coefficient": 0.9166666666666666, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5e52692a-3528-408c-8fb4-77d2ad3d2543", "source": "41e51785-b6a5-4926-93a8-93e756e15ca6", "target": "461f3447-3b67-49c7-a062-dbccf20a8c20", "similarity_coefficient": 0.2878787878787879, "overlap_size": 19, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1586be30-471f-4e82-8514-494c38a9414d", "source": "41e51785-b6a5-4926-93a8-93e756e15ca6", "target": "a8aef0ec-aa2f-49d5-8433-fa9fde46516a", "similarity_coefficient": 0.7083333333333334, "overlap_size": 17, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8bcab183-7910-4b2b-b0a0-2ec75c6f4cb5", "source": "41e51785-b6a5-4926-93a8-93e756e15ca6", "target": "a450000b-f013-47c9-a2c2-1c6c86d9edec", "similarity_coefficient": 0.7083333333333334, "overlap_size": 17, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6c454763-92d4-4059-a140-f00353408bb8", "source": "41e51785-b6a5-4926-93a8-93e756e15ca6", "target": "e28bc43f-7116-4972-bf76-e15d1b1cebd5", "similarity_coefficient": 0.26373626373626374, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ee52f612-f0f4-4a05-b215-97838a328c6c", "source": "41e51785-b6a5-4926-93a8-93e756e15ca6", "target": "203837ef-155a-41f5-88ce-17e447837c86", "similarity_coefficient": 0.36363636363636365, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bdb5ba5f-1deb-4538-9355-a6e06e56c39c", "source": "41e51785-b6a5-4926-93a8-93e756e15ca6", "target": "7b97fe84-d7d6-4d93-a1cf-f13ab3c752ad", "similarity_coefficient": 0.2926829268292683, "overlap_size": 12, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5069df8f-15fc-4a36-bd5d-338d4c02e210", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.6388888888888888, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c66e079a-708e-404c-9cc2-131f107aebca", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.6428571428571429, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cce27818-ecb7-472a-b388-8fa8a4a2985b", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.75, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a414ea2d-5a31-4ecb-9538-721abbaf4258", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.30666666666666664, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4d816727-a5a2-40a2-a338-824b76dc9b0e", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.45652173913043476, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "67d86250-bbf4-44de-8030-57232fd34b28", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.46, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3630bf72-cbac-4157-a59e-21f47e7bdec0", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.25654450261780104, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8160502b-7a4d-4071-a567-653251ba890f", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.494949494949495, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a60dc4aa-c936-40cd-af10-f48d92b8fde4", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9854ba42-d52b-4322-b661-2d0c9cf94473", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f2207b21-f4a0-456a-b922-66556903091d", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.6216216216216216, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ab5357e1-34c3-4142-bb51-1a48197f4072", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8c0fc7dc-821c-4eb8-8600-4aec612c071c", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7fccde70-184a-4080-9b18-557053a51771", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "47976f29-2992-46d9-9aa9-78471bd50783", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.5306122448979592, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eb6f8726-6a49-4562-81b6-e7abdbc67ae5", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3c2a2bb9-db30-453d-aec9-2fd5eb0ed24b", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.8615384615384616, "overlap_size": 56, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "79969900-ed79-4e17-b41b-34c6a8451df9", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.4423076923076923, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4514af8c-e725-4a91-90a3-8c7fd3dd9c42", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.3475177304964539, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c64e6957-8b81-4ba0-ac92-1318db3fb84a", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.29518072289156627, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9c80465f-894b-4bd9-b7fb-e40bd3d2e70a", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3e3b6a4a-6983-4b91-9e2f-05dbe1aa45de", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.35658914728682173, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ce878df7-49cf-456d-a3a2-746bc6803885", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.28654970760233917, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "77e222d7-97e7-48eb-b773-27586d9a4b1b", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.5542168674698795, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d660994c-7423-4310-b35d-42c94335c1f5", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.2727272727272727, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "169f33e6-7e17-4f25-a77a-b542f413c1a9", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.2737430167597765, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "01a82254-aa90-4baf-9763-e415ff890d52", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "90bc4f9a-b06e-4ac6-9d46-0a4acc7935aa", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.6067415730337079, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7e34f063-695d-45ff-8710-050191a61110", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.7424242424242424, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5639310e-c2ef-429c-a45c-895b0f302beb", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.4336283185840708, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3031d2cc-ba18-4cbe-a19a-a795a56f242f", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.47794117647058826, "overlap_size": 65, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "425d5f2c-8268-45c9-9c47-7da61ac7e873", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "60e490d5-7899-4d22-b8bc-004e44a81377", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.29518072289156627, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "26d13ab4-8050-49f9-8397-953dbaafeed2", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.6125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "19deec96-a74a-4ea3-8115-001b481345d1", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.3081761006289308, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4f9e96a5-f79c-48f5-b5f1-aa01ec31fe7b", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2802bd63-1f77-404c-a76a-6f5da4bc77b0", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.266304347826087, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eb7a127e-9a87-429c-a83f-102d883ff572", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.7, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1af0c07d-2b41-4dbd-890d-503ee49024d0", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.647887323943662, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8bbaaf60-1c70-4bd9-a84e-1e04600b0f2c", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "23116f49-aad4-4d45-846e-afaece906763", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.550561797752809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "66071cea-5219-4cc5-89c1-598d9802fcdf", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5ff596cf-6c39-4a18-ab21-7342538a2c68", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e167c704-28c3-4b31-ac9c-98dfe7211059", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d5df80d3-1832-4109-bff7-3ca7d11e1038", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.4117647058823529, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a4e90e41-72b9-4224-b380-e899a9c226da", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3fc56fca-e3f2-472d-83d3-c9865526b22e", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f56dd666-92f3-4645-889a-5a9eee6b360c", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.34782608695652173, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7ffc3098-20ca-4f65-a6e8-86818b7b9370", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "271f4988-18fd-44db-b7cf-76dbb3cd6fef", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.2754491017964072, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "441ce6a5-8a59-43e1-88e5-e151573d0c69", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "90ea3513-3ee7-4141-914e-ca0116a7e1e9", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cfa86d1a-ec9c-4dca-9ae7-22284e647123", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.6712328767123288, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7608a1ce-422b-40f5-a7f8-35ef40215b28", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "similarity_coefficient": 0.45098039215686275, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1d1aec6f-a957-413e-882c-c160261050f5", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "86693783-f9c5-430f-8c2e-d3dd9af7b4e6", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "similarity_coefficient": 0.25925925925925924, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1b1d2297-258b-4515-90cd-d69acbf01be3", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.6338028169014085, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dde21499-00f5-4018-9d1f-1951a06e9e14", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.9076923076923077, "overlap_size": 59, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "165c4eba-014a-412e-a86b-d29e30396781", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1e3b0a50-bce5-41a5-9483-d1089cfc0ad6", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cdea5adf-545d-43a1-8ebc-9ebb28280bad", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.2722222222222222, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7c562f15-a046-4317-870e-f100d127fcfc", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3cc86b2e-d322-4e75-9513-78beef7671f6", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.3013698630136986, "overlap_size": 44, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0083536b-c2e9-40a3-bd52-d30cbab4612e", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.3150684931506849, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c2154fd3-851c-44c1-8d54-3e252e6d2564", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fb3fad18-1675-455d-86cc-b6d7b00701b8", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a0067b09-9875-45ee-bac5-8531d98afe7a", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.37593984962406013, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "936bf31a-aeb0-41b1-a787-1d75dd913aca", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.6712328767123288, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fdfe6ec9-befc-454f-90d0-10ee1fbd7b4a", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "similarity_coefficient": 0.3983739837398374, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "43070452-c45f-4834-96f3-ed461ec80696", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "66d957eb-1700-4424-8d34-ae6311af60d5", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.44144144144144143, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6869d3c6-0062-465d-a729-5a9e2ce7d58f", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.3597122302158273, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "99e30c92-72b5-48f6-8847-b0c074acaa1c", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.2620320855614973, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "703415d7-258a-4bc4-91bc-ad5fcff4154b", "source": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.5822784810126582, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6f205db4-ddcb-4501-98c8-d23b692cf151", "source": "6436a9b9-9418-4b09-8d7e-1168794a0d4a", "target": "28206aab-808d-44e8-ac77-aae952d8f7b2", "similarity_coefficient": 0.6131386861313869, "overlap_size": 84, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c04122a0-7c20-4844-8d51-5928b59abfd0", "source": "6436a9b9-9418-4b09-8d7e-1168794a0d4a", "target": "f718538b-8c4e-4d0c-8505-68da9ee2a319", "similarity_coefficient": 0.9568345323741008, "overlap_size": 133, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5bc99d2e-2a6c-4763-976e-b1e062a320de", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "similarity_coefficient": 0.4666666666666667, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8181be6b-2f31-4fb7-b744-6f95f839fcd9", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5dcc105f-126f-413e-b99a-9283de4e75c6", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d04be208-21c7-4c25-89f4-4c0b1c64fa90", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "b401cb25-9626-4bf4-9dc9-a102b829189a", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0eccabb8-fdb0-44b2-85e8-c9113d67a128", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.25925925925925924, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9b2b93fa-9e58-4042-a653-3fc8bea1faec", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0f1b9d14-92bd-458a-b13c-e5990b2c59e9", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "similarity_coefficient": 0.31, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "915f3154-b30b-4f17-a61c-23e3bf20d745", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.3153153153153153, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "69245b8d-f2e9-482d-a5b4-d5b8b059b605", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "similarity_coefficient": 0.47297297297297297, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cf31625c-3f8f-404a-8959-70381ef5fcca", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "db174cda-f0b8-4d03-8480-6d7a8fceb5c0", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8526879a-a402-4637-b8dc-433d23d3386c", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "47b3fb4f-ad50-4bf1-8ce0-cfc780418a31", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "similarity_coefficient": 0.2734375, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7d514a21-abce-4a23-9b6e-dcef6698822d", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "10e4f163-6a16-4793-8f78-705f1e8f3168", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "903c9e4e-eb96-4454-b5f5-e0672af3660e", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "84f6bd65-59b3-45a2-ae31-b966cfea3c4d", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "similarity_coefficient": 0.3333333333333333, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ca7bf181-6a33-4b9b-b16a-2aaa03eec38e", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.26515151515151514, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1d318210-5ca7-4488-aafb-defacdfce308", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8fc93a15-764f-4746-ba88-2b276c39eb7c", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "similarity_coefficient": 0.3211009174311927, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "38f1cddb-3b29-4813-94ff-e890b4abf12d", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6939037e-e14a-4804-8ca9-e3ef533cc84c", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "df98e82f-b33b-432f-8f50-5f679961b5cc", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.26717557251908397, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "326e7ecd-eb3b-49f2-bcb2-5972f2201207", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ab91c2de-e63f-4d99-82e3-8612b962d6d7", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "be880ad0-6725-4ea8-a9d2-0d545f8abb16", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ccf28fe2-16a1-4e38-b9c3-23529d2a7c4d", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.2734375, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4a92a143-cad6-424a-bf20-51ccc3105b36", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "e15e930f-af85-4402-99a6-a57c9368b631", "similarity_coefficient": 0.25925925925925924, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "74311078-11a4-47cc-b177-944338649612", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "868604a2-809b-43bf-97f8-7d956608ccae", "similarity_coefficient": 0.26717557251908397, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a59ed42a-6059-4c2b-895e-5bc53bf418f8", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.5223880597014925, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ece91ab9-bfda-4835-9c3b-b471524f4071", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.3333333333333333, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3d293fad-924a-43d9-b1eb-fc2ac236fa4c", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.47297297297297297, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ff407444-53b2-410d-8436-00e20d9b55cb", "source": "374d76b1-e4d5-4516-b105-410699dc6050", "target": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "similarity_coefficient": 0.3047619047619048, "overlap_size": 32, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "71fe751c-d18a-43d4-8c98-e61a3a6abe61", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.3511450381679389, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6d0c10a4-f9d2-45ff-af1d-c7a031dbb340", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3b7eeeee-816f-456c-87d9-d0f6c614fdf1", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f4d8a360-4957-49f5-9c66-62f77593cbf1", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.49, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e19a5620-24d7-4b27-b95b-672b8144ff65", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.35294117647058826, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "91274687-a651-41bd-9f6c-3fd2458dd7e3", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.2538860103626943, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "88aed0c5-633c-43fb-b8f1-8f2e403be57d", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.2916666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "53e58212-8515-40fa-8dae-a7303b44a6f6", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.2538860103626943, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a54473cf-52ba-4ec4-8c45-3251051d8c38", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.4639175257731959, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6e2514ef-4d46-4bd6-b4b9-bf6f15fefc62", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.2658959537572254, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f51a03ad-5c8c-4e99-9675-9f902e4d4045", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0fc7679d-1d4b-469e-bdef-4d7a7a7f9b63", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.35, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b9032164-2a88-4e2c-9a51-808d09ad47c8", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "33c9bcde-076b-467a-8783-02f39f19c5c0", "similarity_coefficient": 0.4224137931034483, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6a92b3fc-c7f9-48ca-bd48-7eaabe08b1ef", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "79d37a21-a370-48e2-b30a-d678a1e6b10d", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.2598870056497175, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "11096595-63cd-409b-ba84-a94d388f5435", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.45918367346938777, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "656b1df5-734e-4d0d-96fc-24cd02acda5a", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b6e946bd-fa9a-442f-a2c1-ab793d6818ff", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.4224137931034483, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4c27f15a-50ac-4982-891d-3847e8e3bf94", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.48484848484848486, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9b514e03-c4ea-40c2-a836-f94ea860e24b", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.44144144144144143, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aabdb65e-9d1d-4d0e-ad17-bfc783e5456e", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aff7889a-3772-4b92-957b-6d0fa2196842", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "981ade82-d449-4bb5-b107-c9f058b54fd5", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.35507246376811596, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "00e8acc9-d38d-47f1-a715-78a9b0f510e1", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.46464646464646464, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b82a16b3-8232-4aa3-9189-81af09f79a99", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.36220472440944884, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "616d8000-f532-4948-b03d-46b1fb321292", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1e32dd0f-6c5b-4264-a1a2-c71b69e6a585", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.4375, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5058f6ae-87ab-4392-93c7-40537a9e5799", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "00d4a280-5986-482f-b43f-599c91b28960", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.2948717948717949, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6306afc7-1f67-4eaa-8b76-559008e1a070", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.3769230769230769, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a9591da4-0ff2-428f-904c-3b8248bf0678", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.390625, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cee1bbd1-d5bf-4223-9902-d56d6363aad2", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.416, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ccc01a81-aa75-4401-8aeb-fd752d07593d", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.494949494949495, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7713a086-72b1-4417-afb6-c7876a622615", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "6e0d16f0-901c-4970-a541-74fefb710b7c", "similarity_coefficient": 0.3108108108108108, "overlap_size": 92, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f20c132d-daf4-4b6c-9a8b-44c415b16945", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.25, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5af3a513-dd53-4dbe-bbb3-f2d075a2156a", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e333c64a-3577-43a0-be84-1e7b4f3003dd", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1c4ace36-4ebc-442e-9ae3-d27d6cc6c6c7", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b97fcd18-7cb1-4b9a-a874-1b7e58b2e17b", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.4049586776859504, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b700b31a-0ec2-45e9-9f04-a5329b932ceb", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "similarity_coefficient": 0.3656716417910448, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "11c2e35f-37c5-44fb-8bd6-49cbee9ad75e", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.4298245614035088, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "28ccac45-040a-44da-9e72-17bad149247a", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.41818181818181815, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "68e688ae-dbbc-48f8-9b7d-3faaa0b096d0", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "03158ebd-e67d-4c21-bc20-ff7b8bf4ba5e", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7ac58723-adc3-4608-ae8c-abfee6218150", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "similarity_coefficient": 0.5154639175257731, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cbbf0521-57f5-43b1-a072-435df207e1aa", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.2934131736526946, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "99658f3e-4edf-4261-837d-bd54b7d3ebc7", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "a0a1943b-60df-40e6-8e54-0852991dd573", "similarity_coefficient": 0.3374233128834356, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e5f2f8af-9f8f-4490-a526-736ef1360048", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.6956521739130435, "overlap_size": 64, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8ac42027-66c5-496c-9760-59b11e8ccf07", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.4339622641509434, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6dcecdf6-317a-4c8c-9f6b-a2dbfffe88e3", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.29545454545454547, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4501845e-0687-4a91-be33-bb5b70b4d839", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.3769230769230769, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "887fda2e-ff60-4c4c-9a9d-0d65af209fb4", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.5360824742268041, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b2a411a2-24a9-400e-8b24-ee96603f0fb9", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6df50947-a699-4a54-9ddc-551623ee2abe", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.6433566433566433, "overlap_size": 92, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2948182c-1a6c-418c-be06-aa743af3d657", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.3356164383561644, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f1395011-0258-458b-ac5d-a1b90d7de30f", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f53a5ceb-10fe-4ed0-9017-61d60104fdc9", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.3816793893129771, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ee5d0fd1-edb3-4f28-98e4-33e37a53f6c5", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.46938775510204084, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4d00bcb0-0c8a-49cc-a86a-6be4a32a536b", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c08553d4-dfea-443a-80c9-bd0a5c772832", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.3888888888888889, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7cf95ceb-90c3-4410-8b72-0cb0b7f1e5da", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "similarity_coefficient": 0.44144144144144143, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6d2e2d98-e034-43bc-b06a-9bb81d6bd781", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "similarity_coefficient": 0.32666666666666666, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "08fcd014-81cb-4f05-9712-a2639325a52b", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5728ef97-b002-4916-a2d1-3b25afab0a5e", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.34507042253521125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7e468df5-f32e-4441-89c0-e952368664f5", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.3125, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "be2c692e-2023-469b-9580-ac6ba81a71e0", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.4424778761061947, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2517c3ed-8e7b-4417-bd18-cf3e24c14f4c", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5dab5733-e0eb-4d2b-9287-91b351a25d4e", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4bb798c0-ffc5-458c-9b63-52341e16b35a", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.5, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "84c64e0e-4604-4577-bdf0-cec9fc54b5d1", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "similarity_coefficient": 0.35658914728682173, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0f63a1ee-3c76-4d28-88e0-a0ed144a6b72", "source": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.4098360655737705, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a3e7eb48-0e62-487f-adfe-1e54b79630f0", "source": "6c02baf6-4938-42c0-b332-71998a685040", "target": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "similarity_coefficient": 0.275, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "515cfb0c-1b0e-41e9-834c-f0b6fb589179", "source": "6c02baf6-4938-42c0-b332-71998a685040", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.2753623188405797, "overlap_size": 57, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8c6d3aa3-04e0-43b1-91b0-23a681f67521", "source": "6c02baf6-4938-42c0-b332-71998a685040", "target": "6e0d16f0-901c-4970-a541-74fefb710b7c", "similarity_coefficient": 0.6756756756756757, "overlap_size": 200, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2b62c0a7-9147-4540-a6d3-f812c4c38cfb", "source": "6c02baf6-4938-42c0-b332-71998a685040", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.3080168776371308, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a9d01ffd-90e2-41c5-96ab-a5afb600ce76", "source": "6c02baf6-4938-42c0-b332-71998a685040", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.27488151658767773, "overlap_size": 58, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "60aa5d2d-a7d8-4869-93ab-7de1faa54c50", "source": "6c02baf6-4938-42c0-b332-71998a685040", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7f90eaa3-c3b0-4a56-a050-e42f3e490bce", "source": "6c02baf6-4938-42c0-b332-71998a685040", "target": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "similarity_coefficient": 0.27510917030567683, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3d43d78f-a598-43d7-ba6d-10fb66f67b97", "source": "6c02baf6-4938-42c0-b332-71998a685040", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.27697841726618705, "overlap_size": 77, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "72eda349-0529-4366-815e-7ac34f436920", "source": "6c02baf6-4938-42c0-b332-71998a685040", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.2874015748031496, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a5f657d9-83ad-42e6-8948-9c6faf7797fa", "source": "6c02baf6-4938-42c0-b332-71998a685040", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.285, "overlap_size": 57, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d269d7c6-9d14-4027-a02e-5066a06b49bc", "source": "6c02baf6-4938-42c0-b332-71998a685040", "target": "cbfeadab-ca27-40a7-8780-4bec2a9b1964", "similarity_coefficient": 0.2626582278481013, "overlap_size": 83, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9913ac19-46cd-4324-9212-d38aaa67904b", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3ba4010b-555c-4987-8033-55a141f37c6e", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c8dd97ac-15cf-4748-b95b-0809f2e95cfc", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.2972972972972973, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c9c1614c-d519-45c7-8d53-1c6dc0bd825c", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "similarity_coefficient": 0.3843537414965986, "overlap_size": 113, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e7e0f850-b14b-41cb-b544-c68a31b9078d", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "82dee5d8-96b3-473c-8478-63cb485ce0bc", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "similarity_coefficient": 0.3197278911564626, "overlap_size": 94, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f59f7528-8f90-4447-ae6e-c5a17376da79", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0ac29172-0707-4755-8b4b-aa8a93e7855d", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7bf1082c-ce98-4419-a37d-75a111df5569", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bdadfbfd-3a7d-44c0-a481-d8c4d6895aea", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "e15e930f-af85-4402-99a6-a57c9368b631", "similarity_coefficient": 0.40816326530612246, "overlap_size": 120, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4bbcf21f-5efc-4ee2-9437-456caca2c362", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7d0324c6-810b-4676-b0d9-492a2a911458", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "55a94ba7-33fb-4442-82a4-e4d004eb22c7", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "60fe82c3-3a64-4be1-9483-b1ea8d85a0ef", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6001e8e4-bca8-4ca3-8048-77af8a5a1798", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "similarity_coefficient": 0.2711864406779661, "overlap_size": 80, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2dbb508f-de81-40de-92a1-282fc759a705", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.40816326530612246, "overlap_size": 120, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "797e9b45-bcf6-4fc6-9182-a0d9e651efc6", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d6f8a933-5f92-4eb1-bedf-8fdfb37aa5fe", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.25882352941176473, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b81c3216-cfe7-4669-a26f-114d52e1e71c", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "similarity_coefficient": 0.25742574257425743, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "607b1bc1-9f7c-4c78-80f2-48d79a1a5b58", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8a12c2ff-90a4-41fc-be74-3eece4f39bcf", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "similarity_coefficient": 0.30612244897959184, "overlap_size": 90, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c091370b-73ba-4636-abdf-97468a2f2edd", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "similarity_coefficient": 0.3375796178343949, "overlap_size": 106, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2191cd9a-c25d-4dd0-a56b-8d255a58e84e", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "868604a2-809b-43bf-97f8-7d956608ccae", "similarity_coefficient": 0.29337539432176657, "overlap_size": 93, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3f5b5b07-5d4a-4948-bf57-35606cc0730a", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "645ae5a1-4b3d-4b89-a0be-d7a9c15ddbba", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.3215434083601286, "overlap_size": 100, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a8017bf1-0ec9-4756-bc7e-289efb78609e", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.29337539432176657, "overlap_size": 93, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d08937e2-9ae4-4fce-bdaf-8a13a26098ee", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "b401cb25-9626-4bf4-9dc9-a102b829189a", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2c803d17-2d61-4d62-ab13-f40b60b57896", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.3843537414965986, "overlap_size": 113, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "58c95b30-0d08-4562-89e3-b9090dcee499", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bd9c276a-168f-40e1-ab19-fd8c7695e07d", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a7ee4996-5489-40ee-9ab9-fb6b5fe0ce6f", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.31313131313131315, "overlap_size": 93, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cc90638f-b2fc-403b-bbaa-f122771a2b94", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.25, "overlap_size": 93, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ca174bc7-1ec4-4f45-abc1-713b12516ae8", "source": "e317d95d-7299-42da-9e5d-030e294dbe75", "target": "e4cabb52-87fa-46a7-b178-1e258678e921", "similarity_coefficient": 0.25277777777777777, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b1c318cb-23c2-415c-b016-969734ee08a5", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.26063829787234044, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "02f3008a-5512-4260-ae65-d7c966865801", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.2753623188405797, "overlap_size": 57, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b6277dd8-2745-4ad5-a812-1c1b6b0aee8d", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.28191489361702127, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "327c7fb3-2ffc-4b12-877e-3189e24766f8", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.2887700534759358, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aa99e513-92ac-4c4e-b98e-464773a1ba04", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.28431372549019607, "overlap_size": 58, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "66d32194-109c-4d91-823d-0d8f8dac2b37", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.2538860103626943, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "22ee3d0a-bf32-463c-a548-40878922ef96", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.3314917127071823, "overlap_size": 60, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bdd88ad4-98b9-4a89-9e84-4f7504817b51", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.2692307692307692, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "70bbd5e3-ded5-4257-992f-05edf789fe45", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "similarity_coefficient": 0.28350515463917525, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ffd01c19-8c19-461f-9a4f-b50ae6354615", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "c3828778-9b35-432c-b1e9-9483a29fb80e", "similarity_coefficient": 0.32142857142857145, "overlap_size": 135, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2c3b8540-7586-4a15-8ece-64858b22f706", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.26595744680851063, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2b2f8a66-eaf0-4c30-a164-63ac3e2280dd", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.27979274611398963, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ff892582-1a3c-4cc6-bd14-8a1782e4b0cf", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.2802197802197802, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "08b7ed9d-5a88-4a46-a10d-59ae31dbb342", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.2826086956521739, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "36359930-5a27-45e3-8b54-1defa262b2ca", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.2548076923076923, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "84c49b6f-cc25-4b73-aa8b-cedcc4aaf594", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.2751937984496124, "overlap_size": 71, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a0181606-6100-4e82-9458-9d7f0a78e664", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.26, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2aed6a9f-4ad2-4829-91ba-e421418be62a", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.273224043715847, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d93be5c4-68c6-4033-9bb1-ad6f254063ab", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.3103448275862069, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d3a9aa32-145d-42da-8c02-318b4555f077", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.2648648648648649, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "30f1d146-7be1-49f9-badc-814c3930ff38", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.273224043715847, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7916cb6c-752a-46f0-b581-dc25bcfec209", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "similarity_coefficient": 0.28342245989304815, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "53314492-113c-4d2e-83c8-1df17c522b7b", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.26344086021505375, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f10d7a64-eaa4-42e6-864c-b673a3a1cedd", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "similarity_coefficient": 0.2620320855614973, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c4c7c7c9-2c73-4a47-9827-707f2ee61eb9", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.25, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "da6cc49f-6deb-4e02-8ea3-8b452a634a68", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.266304347826087, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f9e4b7fd-528a-4532-a79c-c21ab421472b", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.2602040816326531, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "33102fe5-36ec-494d-af49-08f2fee940e6", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "similarity_coefficient": 0.3069306930693069, "overlap_size": 62, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7636a199-8f30-4897-a231-d3b84e2ce8e0", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.26595744680851063, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bf287a52-97f8-45f8-b614-12a04fa43a56", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.2717391304347826, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "86ed0e8c-f355-4501-b3dc-3fd1a75d6781", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "33c9bcde-076b-467a-8783-02f39f19c5c0", "similarity_coefficient": 0.25742574257425743, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6b0a737b-4bba-463d-bf2c-d492b59eb5a1", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.28846153846153844, "overlap_size": 60, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5c035d8c-d898-44bc-837f-766e643f26fb", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.27918781725888325, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7d32b9ae-2f21-41b4-bf7b-f8993b72bbdd", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.2751322751322751, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ed6b4865-5783-4dd8-b306-89ad789a865b", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "44e853cd-d32d-428d-873d-0278f45a1c18", "similarity_coefficient": 0.9890710382513661, "overlap_size": 181, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "53741071-c3c4-41e3-a93e-0ad6e38153fe", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.2512315270935961, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4e45dcab-ff06-4fc5-ad2d-3f77fbf92d5e", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.25654450261780104, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2a27a755-5368-4b4e-8cc7-622623367ec4", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.2623762376237624, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "647b0555-5d07-4f79-911f-c82b262666b7", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.273224043715847, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "39f315b1-3625-4aab-a181-f568c002ff0c", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.28846153846153844, "overlap_size": 60, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b428df3f-273d-42d7-87ef-4b1447802120", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.273224043715847, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a30e12b1-86e5-4312-8eab-df64c4cb5858", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.2648648648648649, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "307057c6-efec-4af5-8360-8145f5f9deaa", "source": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.2839506172839506, "overlap_size": 69, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "05df936f-4758-44d8-b5f5-bf8de5908103", "source": "a9922200-db44-4066-b545-f8b586b276b0", "target": "f7507f96-9e93-4751-bd0a-5d2409a9f865", "similarity_coefficient": 0.5474452554744526, "overlap_size": 75, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "95e14e67-f637-4d9f-8940-079f83a4161e", "source": "a9922200-db44-4066-b545-f8b586b276b0", "target": "e59b742f-7a21-4a50-8472-3500f07b5395", "similarity_coefficient": 0.5357142857142857, "overlap_size": 75, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "67fc5ead-8b06-4773-b30d-5928c1bf82d0", "source": "a9922200-db44-4066-b545-f8b586b276b0", "target": "26a34b5a-7453-430a-9bb8-98e6a9254169", "similarity_coefficient": 0.9615384615384616, "overlap_size": 75, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "74a18d61-1c27-4ff3-91c2-7d8b125d3afe", "source": "a9922200-db44-4066-b545-f8b586b276b0", "target": "ff74cec2-2157-4a6f-818c-220e440cef80", "similarity_coefficient": 0.4807692307692308, "overlap_size": 75, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ae61fbdd-5365-4c43-bc46-8fdb1d32ad43", "source": "535a82d8-5c10-4a4c-9a20-09541374ee3b", "target": "b81d8d56-c41a-4508-a1ca-9590780583eb", "similarity_coefficient": 0.5897435897435898, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "220a20f3-9808-4a33-8a8a-d2a0d39c1165", "source": "535a82d8-5c10-4a4c-9a20-09541374ee3b", "target": "4a0b61b9-4b5f-4854-888c-d24f120dc0e4", "similarity_coefficient": 0.25830258302583026, "overlap_size": 70, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "87486fd6-1f0a-45b4-bf42-3a2f44573c26", "source": "535a82d8-5c10-4a4c-9a20-09541374ee3b", "target": "0a98c49d-d1c0-46f9-9b40-1998ea452849", "similarity_coefficient": 0.25830258302583026, "overlap_size": 70, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "34bab8b9-2d6d-4ea9-b3b6-75d584baf100", "source": "535a82d8-5c10-4a4c-9a20-09541374ee3b", "target": "fb423d6b-dc3c-400a-8cb4-cfcf5aea4500", "similarity_coefficient": 0.2545454545454545, "overlap_size": 70, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9a6cdca6-2b71-4568-9bf1-9f2dda6ad031", "source": "535a82d8-5c10-4a4c-9a20-09541374ee3b", "target": "581ea671-bfdc-4c0a-b5e7-c11440d05a47", "similarity_coefficient": 0.2932330827067669, "overlap_size": 39, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e63948a7-94dc-470e-b946-bde7cbf5eba3", "source": "535a82d8-5c10-4a4c-9a20-09541374ee3b", "target": "f127255f-9ab3-4cc9-80ae-d598f0105419", "similarity_coefficient": 0.3645833333333333, "overlap_size": 70, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "33fda5f7-4dda-4d9e-ab7a-2f13a83a54b9", "source": "535a82d8-5c10-4a4c-9a20-09541374ee3b", "target": "7f22376c-1798-4ebf-811f-e11344296c4f", "similarity_coefficient": 0.6794871794871795, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "57ae26f0-5235-4aa4-b2ef-a5017620fb1d", "source": "535a82d8-5c10-4a4c-9a20-09541374ee3b", "target": "2c6012fd-f497-423b-9ab1-8cfc5154f253", "similarity_coefficient": 0.7572815533980582, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4cc46c4e-7e4f-4e5d-ac59-88523d5b79a7", "source": "535a82d8-5c10-4a4c-9a20-09541374ee3b", "target": "623310f5-8d59-43b9-bdde-0d30cde60c99", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "00de1931-398c-437e-8565-eaef7f975f55", "source": "3f4eedfb-536c-4748-a3c7-d3c372aa59e7", "target": "0270ca63-6518-40e4-a878-0eac4795f5b1", "similarity_coefficient": 0.335978835978836, "overlap_size": 127, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e218222b-3adb-42de-a936-eca11efbec9f", "source": "3f4eedfb-536c-4748-a3c7-d3c372aa59e7", "target": "144b7933-86c1-43a2-9769-7e1736c62125", "similarity_coefficient": 0.675531914893617, "overlap_size": 127, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6480675d-ddd3-4f77-be10-fdcf8648a5a0", "source": "3f4eedfb-536c-4748-a3c7-d3c372aa59e7", "target": "5a8deea3-cc0a-4701-a9fa-f9e7a8d7caa5", "similarity_coefficient": 0.32167832167832167, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "72c5016a-0e82-468c-8206-d273964ce317", "source": "3f4eedfb-536c-4748-a3c7-d3c372aa59e7", "target": "6f500156-fee8-48f9-92a1-285527a6b72b", "similarity_coefficient": 0.28921568627450983, "overlap_size": 118, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "470dddb6-ad30-4f16-9da4-f0ad44fd8ef2", "source": "3f4eedfb-536c-4748-a3c7-d3c372aa59e7", "target": "3e2e64d7-b551-484f-a5be-f003aa055788", "similarity_coefficient": 0.2677165354330709, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c274bf0d-6e2b-4a50-b982-bf27ce7268dd", "source": "3f4eedfb-536c-4748-a3c7-d3c372aa59e7", "target": "6bed8f20-05d5-41c1-a584-804d0df5a3a0", "similarity_coefficient": 0.7559523809523809, "overlap_size": 127, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "01fefc94-7bad-4938-be46-0de048d9651b", "source": "3f4eedfb-536c-4748-a3c7-d3c372aa59e7", "target": "a77d2ae1-e81f-46a0-810c-038611327b6b", "similarity_coefficient": 0.7650602409638554, "overlap_size": 127, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "85c01780-4de5-4bdb-8cfe-f3dcc62c4621", "source": "9c6f1df0-2d01-4920-aff8-3fa744c1f786", "target": "65ac29cf-26d3-4113-b8e7-f352e4a9e047", "similarity_coefficient": 0.5454545454545454, "overlap_size": 36, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b32b227f-e5c0-4141-a326-90b44f700a23", "source": "75f7200b-bbf1-4975-a815-1a040bc2b804", "target": "ed852b58-9ecc-4c4e-aa04-d50a951c9801", "similarity_coefficient": 0.4146341463414634, "overlap_size": 17, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "44948992-b7e1-452f-b2fe-eb865e2379c2", "source": "75f7200b-bbf1-4975-a815-1a040bc2b804", "target": "461f3447-3b67-49c7-a062-dbccf20a8c20", "similarity_coefficient": 0.3387096774193548, "overlap_size": 21, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "96058d1b-3ecb-4a1a-aa13-330e1ff41674", "source": "75f7200b-bbf1-4975-a815-1a040bc2b804", "target": "a8aef0ec-aa2f-49d5-8433-fa9fde46516a", "similarity_coefficient": 0.7727272727272727, "overlap_size": 17, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a19055e3-ad8b-4edf-ab3f-49d8b70e2964", "source": "75f7200b-bbf1-4975-a815-1a040bc2b804", "target": "62d1a2a4-a8b0-4330-9997-0e0c05099ea3", "similarity_coefficient": 0.6296296296296297, "overlap_size": 17, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1da2b92b-5807-47e2-904d-97e9011db3b8", "source": "75f7200b-bbf1-4975-a815-1a040bc2b804", "target": "41e51785-b6a5-4926-93a8-93e756e15ca6", "similarity_coefficient": 0.5862068965517241, "overlap_size": 17, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f6b338bd-93d1-4c54-8103-908432d69d56", "source": "75f7200b-bbf1-4975-a815-1a040bc2b804", "target": "a450000b-f013-47c9-a2c2-1c6c86d9edec", "similarity_coefficient": 0.7727272727272727, "overlap_size": 17, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9d535651-4f74-46fc-abaa-8e9adde52d9a", "source": "e318a8ac-a4b4-43c9-8261-8c4f01b48e0d", "target": "57643064-d04f-4ab6-beb0-7326008d8656", "similarity_coefficient": 0.30357142857142855, "overlap_size": 17, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a9dcfc71-10f0-41a9-8592-38786037ab72", "source": "e318a8ac-a4b4-43c9-8261-8c4f01b48e0d", "target": "864d29ee-3b91-4c86-ac1d-8b9bbb36ebc6", "similarity_coefficient": 0.5227272727272727, "overlap_size": 23, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4d747a62-8030-4cd6-81f2-bf3c51a59837", "source": "e318a8ac-a4b4-43c9-8261-8c4f01b48e0d", "target": "3555fae9-d98f-40ee-8932-0dd5b6cb5b3a", "similarity_coefficient": 0.30303030303030304, "overlap_size": 20, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4bb864ab-468a-4d67-8f81-98a82ac8ee11", "source": "d2dd6367-2a41-4ac8-af45-50fe5a97d220", "target": "df713d36-9b29-4758-98a5-5b6f138c3de6", "similarity_coefficient": 0.5499254843517138, "overlap_size": 369, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7179bc9b-edda-422f-bd9c-3badc770a0dd", "source": "d2dd6367-2a41-4ac8-af45-50fe5a97d220", "target": "5915b056-e646-42a3-80e7-2deef8a98dec", "similarity_coefficient": 0.341991341991342, "overlap_size": 316, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "37869d2b-c884-4212-9a32-e470d63f01fb", "source": "d2dd6367-2a41-4ac8-af45-50fe5a97d220", "target": "354ec532-56fa-4d39-91bb-f26b629c0824", "similarity_coefficient": 0.45305514157973176, "overlap_size": 304, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f447b673-e73c-484a-8cfc-b8cf871fdd11", "source": "d2dd6367-2a41-4ac8-af45-50fe5a97d220", "target": "9cb17d00-b403-4965-949e-03ef64b0c9a3", "similarity_coefficient": 0.40175953079178883, "overlap_size": 274, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e71a44dc-3c46-4803-8fd3-3eea0ed45e83", "source": "d2dd6367-2a41-4ac8-af45-50fe5a97d220", "target": "6e025d9d-61da-4ade-81fa-7b8d84b6c60b", "similarity_coefficient": 0.2751937984496124, "overlap_size": 284, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cc1ca4a9-3854-44fe-9c08-98e719261f27", "source": "d2dd6367-2a41-4ac8-af45-50fe5a97d220", "target": "cadeeaf0-7b4c-48d6-a533-1357e319b01e", "similarity_coefficient": 0.2995529061102832, "overlap_size": 201, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a1c42638-8a99-4132-acd5-dada3af1295b", "source": "d2dd6367-2a41-4ac8-af45-50fe5a97d220", "target": "1a39797c-1df7-4aec-8ab0-ce066a56e9ec", "similarity_coefficient": 0.39046199701937406, "overlap_size": 262, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fd38be79-4e4b-4dc0-b47d-3c6c1fb614b0", "source": "d2dd6367-2a41-4ac8-af45-50fe5a97d220", "target": "5ed4b3b0-0529-42a4-97a6-871542f5bff7", "similarity_coefficient": 0.28401585204755614, "overlap_size": 215, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ced60890-dc2c-4546-8763-171663949215", "source": "8b3cc6ed-57e2-4668-a15d-530a3ad55212", "target": "8f4712ea-2e89-4712-a648-476a4a49de85", "similarity_coefficient": 0.38104089219330856, "overlap_size": 205, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e0510f9c-1e9f-425b-adbf-b314155efbc1", "source": "8b3cc6ed-57e2-4668-a15d-530a3ad55212", "target": "04397f25-76a5-44ed-a268-ddea1236b245", "similarity_coefficient": 0.9030837004405287, "overlap_size": 205, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8d14ff5e-7304-4426-a47e-0c02b4046389", "source": "ba75adcc-af38-421e-9edc-c60a2aff0de9", "target": "f708fea1-8d4a-401f-84f2-32434b3fb235", "similarity_coefficient": 0.7520661157024794, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "57122b99-3232-437e-bf5e-2cbf9e5f1009", "source": "ba75adcc-af38-421e-9edc-c60a2aff0de9", "target": "f8a5f9ff-fb62-48b4-ad61-1e4f868172cb", "similarity_coefficient": 0.4517543859649123, "overlap_size": 103, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f8ca11e6-ed36-406f-b85c-45c54c3e104d", "source": "ba75adcc-af38-421e-9edc-c60a2aff0de9", "target": "b67a97a8-54b7-4306-be3a-d6518f864d8d", "similarity_coefficient": 0.4497816593886463, "overlap_size": 103, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d7cbfb27-d5f2-4298-9cc6-2020c6823fc3", "source": "ba75adcc-af38-421e-9edc-c60a2aff0de9", "target": "69c4b4b7-c9e4-478e-997c-da4e05c3d7ee", "similarity_coefficient": 0.33451957295373663, "overlap_size": 94, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "369197df-334f-4a8c-9d3d-36b4ec58054f", "source": "ba75adcc-af38-421e-9edc-c60a2aff0de9", "target": "e9595f2e-7b95-4f92-b829-ff02d867fe3d", "similarity_coefficient": 0.8425925925925926, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "015fa9af-61c9-4214-8744-f039311e5440", "source": "ba75adcc-af38-421e-9edc-c60a2aff0de9", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.5813953488372093, "overlap_size": 100, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eb97535f-7e88-4f78-ae4c-768b59921a79", "source": "ba75adcc-af38-421e-9edc-c60a2aff0de9", "target": "e2ee1e2d-b55a-4a19-9214-7f5058461161", "similarity_coefficient": 0.875, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "03de1584-81c4-42f1-8a7f-4e170af113be", "source": "ba75adcc-af38-421e-9edc-c60a2aff0de9", "target": "c3828778-9b35-432c-b1e9-9483a29fb80e", "similarity_coefficient": 0.27807486631016043, "overlap_size": 104, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8e4c7423-3e6b-44a9-9554-6c38452b1649", "source": "17e913a2-8ddf-43d0-b36d-f6ddd9c4624e", "target": "3cdfcef3-3bc3-4abe-b8ba-a1eb0dcddc06", "similarity_coefficient": 0.5029940119760479, "overlap_size": 168, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "28296901-e612-4409-97af-6bedc8f81fbb", "source": "17e913a2-8ddf-43d0-b36d-f6ddd9c4624e", "target": "97e3781a-4de1-4225-a0f2-6b73d004f3f3", "similarity_coefficient": 0.8146341463414634, "overlap_size": 334, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "200f55b4-2e5c-4739-8b4f-cfe1cec9cb53", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.25906735751295334, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9048a215-5e0a-4173-b45c-b73e6e57401e", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.39316239316239315, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "839d3867-0ae2-477a-b309-070799cf5107", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.4174757281553398, "overlap_size": 43, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7e5f4015-0f36-494d-8aca-730fbc6e1499", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.41228070175438597, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0f8fdca5-65db-406c-8534-461662564dd1", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "33c9bcde-076b-467a-8783-02f39f19c5c0", "similarity_coefficient": 0.3770491803278688, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fbee84cd-b503-4cff-9424-1b1389cdce1b", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.3194444444444444, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0d4f11d8-10b1-41db-94b9-c117eeb26a39", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.45544554455445546, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a6f78ef8-b6b3-44f2-817f-756fb5471158", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.3684210526315789, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fabc0abc-47a6-420c-8de6-6910565c43a1", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.3684210526315789, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "43e24387-a60d-49d5-a6ab-d3f051a5c818", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.44761904761904764, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ea64553c-1e04-45d6-bd0d-996457def36f", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.3898305084745763, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dd41e355-0e25-459c-8183-b82d4d5c4626", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "32d140a7-850d-4710-a7c4-88d4a19c3d91", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "similarity_coefficient": 0.40350877192982454, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "496a55af-bc17-4eb1-a33e-bee1b0e9fa6d", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.5473684210526316, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bc7dc6da-67f1-4992-b1f5-a407fd5d2a53", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.34306569343065696, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "744862ee-3073-4f4c-a353-a30616cd1a7f", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.3469387755102041, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2f399326-e00b-4218-8a4b-8b75621881fe", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.42592592592592593, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "338c3bdc-cbba-4150-bb09-a5712b2f11a3", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "similarity_coefficient": 0.2948717948717949, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ae7f308e-e35b-45ed-81ef-3bbab7f0fda0", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.41228070175438597, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "003b7947-3066-4aa7-87f0-0d269c8ac73e", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c3748c9e-0203-40a7-9d26-bf2223ab9cd4", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.44761904761904764, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8ba9edda-8621-4d64-9d1e-84ed07dbc08c", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.37404580152671757, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a8d86ea8-c33a-4b78-8fd3-605a2e81ecdf", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.43103448275862066, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bf734a1f-06f0-45ff-9600-17b15a286201", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.45544554455445546, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "67370f9b-c342-4d83-a881-c233951fe4f8", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "similarity_coefficient": 0.3262411347517731, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2fa0d3cb-5058-4b3f-b8d1-c1c9d258d954", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "similarity_coefficient": 0.32857142857142857, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a9ce0567-545b-47ab-8a64-75f889fea21f", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.47, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1155d49d-f041-4d6f-8535-f74c2491e228", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.30177514792899407, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2ba51d8c-e380-4ca8-8c36-166186cff2c0", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.4015748031496063, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d6e1e984-3cc8-4735-8ba3-59ee36df19ed", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.2760416666666667, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c150aedb-d07f-4164-8a35-4aa2b738d3cb", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.40707964601769914, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bbc24f32-4b5b-469b-9335-e2f4935b2248", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.42201834862385323, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e717b7f2-2a1d-4383-8752-49a6c63c6d79", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.46464646464646464, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c7bb944d-9b55-4cfd-972d-997b970e285d", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.3617021276595745, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "52b461d6-4fb9-47c3-8b52-04cfc75b1b87", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.36220472440944884, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0d0ab8c2-70d2-43ee-b8af-3c7a2885060b", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.47058823529411764, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "64dac4b6-9ef6-4e01-9c60-8d785ae9d01c", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.41935483870967744, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d6b18891-b549-4834-afa5-4c4faae92a61", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.2833333333333333, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6bd144e7-3afd-4311-8dea-c9eea9e86329", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.45098039215686275, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "98a2749c-0362-49f1-b31d-38c5ee0e3727", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.2893081761006289, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d16cf488-325f-481a-bd12-16cd87bb4444", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "similarity_coefficient": 0.4051724137931034, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "79b8a8a3-a62a-479c-9b70-36ff228f13fe", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.494949494949495, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "17fee71a-5904-434f-b895-4e742dbf6034", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.34074074074074073, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ec569352-079a-4008-b571-1433344654d6", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.2768361581920904, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bc064306-9145-4596-9f74-b5141099ec0c", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.4380952380952381, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "98a38de9-8701-49fd-b37e-335986fb27d3", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.40707964601769914, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "159eb719-7e36-4d67-8d6c-045f9d903768", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.3533834586466165, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dc7fb10e-f3c3-4163-98d5-c1c7a4fd35c7", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.33793103448275863, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "324346d5-7c1f-45bd-ae45-482d4f5d74e0", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.47619047619047616, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9ec4a2be-4ebe-4a9e-b01b-316fab2a75b1", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.3067484662576687, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fd1e74eb-e29a-4448-99ef-96b4c82ce3e3", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.4112903225806452, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6c69253a-a444-4466-bf72-c9f233ac7bda", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.48484848484848486, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "566a3285-651f-42da-9403-038a7c125e2c", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.3858267716535433, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5441bf3a-1a68-4c73-83f1-05eeaa122175", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.48514851485148514, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4653433c-2ad8-4445-a9e3-8cf90ce62122", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.37398373983739835, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "26b4c07a-1748-400d-b547-bb599fe15578", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.44660194174757284, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "74529c60-6a47-400a-a948-df6d14bc27c1", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.47619047619047616, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2148756d-5b33-4964-ac76-7aac867a0fc7", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.2571428571428571, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c1aca7b5-6cff-44ad-bf56-dfb1f0b1c0c0", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.26136363636363635, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "babb5399-d1ad-45ec-b3fa-2969e9653ce8", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "a0a1943b-60df-40e6-8e54-0852991dd573", "similarity_coefficient": 0.28488372093023256, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9a6f9d5b-399f-414f-af58-08e65280b886", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.4077669902912621, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9ca5c0a4-4410-4b0d-8dbc-0a902cdd5777", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.45544554455445546, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "70e23427-582b-4d53-b712-ebc2738aa6d3", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "similarity_coefficient": 0.4423076923076923, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "88c9a8b7-58f0-4e9d-81a8-8abee740c81e", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ec6b084d-9454-45e6-b25d-bb15891add43", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.4485981308411215, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f3c417c1-1ac4-437e-affb-b7941b3d89f2", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.37815126050420167, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "54f0dafe-77fc-47df-a387-bb5b3a21ae17", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.7661290322580645, "overlap_size": 95, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7e2833d1-8056-4de5-952c-031e456fdbbe", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.3770491803278688, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "223adffc-0b0a-4129-aa3a-8ef715448070", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.46534653465346537, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "891c60e3-9353-40d2-a956-c0144016495b", "source": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.41818181818181815, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "34b829ce-f2ca-45b9-8c3d-dc8443120e44", "source": "a70316a5-8829-494c-b5fd-ac0c30d48383", "target": "ab7810f0-02db-4b8b-8f86-59cea7883939", "similarity_coefficient": 0.49079754601226994, "overlap_size": 80, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "84f7eb4a-6d94-4970-a05f-d1ddace870aa", "source": "a70316a5-8829-494c-b5fd-ac0c30d48383", "target": "f43c9ccd-e7e0-4f61-add5-23a61fcdc9ce", "similarity_coefficient": 0.3356643356643357, "overlap_size": 96, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2f1dc075-9d7f-4518-84b9-eb08b49b9d6b", "source": "a70316a5-8829-494c-b5fd-ac0c30d48383", "target": "1d8cf59f-ab95-4b0c-a43a-70d1ddaa5686", "similarity_coefficient": 0.4576271186440678, "overlap_size": 81, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5a7a89bb-f3b3-4848-a527-98d585529ae3", "source": "a70316a5-8829-494c-b5fd-ac0c30d48383", "target": "1464dde0-7b27-424c-9e99-43dc975d4ea7", "similarity_coefficient": 0.5217391304347826, "overlap_size": 96, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ab9fff19-b73c-48a8-afe9-749962260f77", "source": "a70316a5-8829-494c-b5fd-ac0c30d48383", "target": "e6bb490e-f542-4313-ba97-b4a675132dc9", "similarity_coefficient": 0.40875912408759124, "overlap_size": 56, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "88d8b6ed-fbc0-4ca6-b165-3024b2084368", "source": "a70316a5-8829-494c-b5fd-ac0c30d48383", "target": "67655508-8724-4bec-ae04-0a0ccc497030", "similarity_coefficient": 0.8421052631578947, "overlap_size": 96, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ef0b6479-8656-4380-a4c5-d4cfcfce4783", "source": "a70316a5-8829-494c-b5fd-ac0c30d48383", "target": "22c84cad-f57f-4718-9687-42041195fe68", "similarity_coefficient": 0.6666666666666666, "overlap_size": 96, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "56ec2f9d-d558-495f-8abc-7a52ed3ea75a", "source": "a70316a5-8829-494c-b5fd-ac0c30d48383", "target": "461f3447-3b67-49c7-a062-dbccf20a8c20", "similarity_coefficient": 0.6354166666666666, "overlap_size": 61, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a4ae9ea0-fbde-4df5-8c57-ba266e3041d3", "source": "a70316a5-8829-494c-b5fd-ac0c30d48383", "target": "0ab74ab8-46f6-40b9-84a3-f901312bfdd1", "similarity_coefficient": 0.7027027027027027, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5011722d-dc84-43ef-bf61-0bda1ca6605f", "source": "a70316a5-8829-494c-b5fd-ac0c30d48383", "target": "5f7c7a64-b1de-45c0-ad59-42836ec07604", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6813ccea-5ac9-4eef-be18-aeb7f51975f1", "source": "d8540c26-26c9-4f3c-91da-5db659f587c1", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.26229508196721313, "overlap_size": 96, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f46992ca-e6cd-4593-9ba1-0fcb53d997ef", "source": "d8540c26-26c9-4f3c-91da-5db659f587c1", "target": "e15e930f-af85-4402-99a6-a57c9368b631", "similarity_coefficient": 0.3135593220338983, "overlap_size": 111, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a9d4b5fa-efd0-4a86-8df3-a7bfa310d136", "source": "d8540c26-26c9-4f3c-91da-5db659f587c1", "target": "e317d95d-7299-42da-9e5d-030e294dbe75", "similarity_coefficient": 0.6384615384615384, "overlap_size": 249, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a6936e57-e62f-4af5-9847-345005394a47", "source": "d8540c26-26c9-4f3c-91da-5db659f587c1", "target": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "similarity_coefficient": 0.30113636363636365, "overlap_size": 106, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "81fc2847-8dcf-454e-9ba0-87fe3c8cb9ae", "source": "d8540c26-26c9-4f3c-91da-5db659f587c1", "target": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "similarity_coefficient": 0.25071225071225073, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "567f43e9-3c5c-4c6d-b9c2-b6da7e5bc297", "source": "d8540c26-26c9-4f3c-91da-5db659f587c1", "target": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "similarity_coefficient": 0.3652173913043478, "overlap_size": 126, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0bc6c04c-390c-4427-a211-94a3480b149a", "source": "d8540c26-26c9-4f3c-91da-5db659f587c1", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.3135593220338983, "overlap_size": 111, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9f0826f3-6bcb-4fef-9520-bdcdf6756f0e", "source": "d8540c26-26c9-4f3c-91da-5db659f587c1", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.2564102564102564, "overlap_size": 90, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b9ef82e8-a09f-4de0-9d0d-6d03de4dbc02", "source": "43717905-a39c-428a-8cb1-813cf4dd0447", "target": "f9b39331-d306-4809-b0c4-ce6e8a9a7e0d", "similarity_coefficient": 0.5862068965517241, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eac8d540-0f32-45fa-ac88-cca0a233feea", "source": "43717905-a39c-428a-8cb1-813cf4dd0447", "target": "ea3edfc3-afa8-416a-a3e9-61a1edf017b2", "similarity_coefficient": 0.576271186440678, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7aab52bf-d3bc-4a5d-977e-015c1f59e2bc", "source": "43717905-a39c-428a-8cb1-813cf4dd0447", "target": "ff8df9a9-f99a-4719-a96a-d64e1b3fc6f8", "similarity_coefficient": 0.6071428571428571, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5cbad47c-123d-4fd2-bd34-ce3a14d1fd33", "source": "43717905-a39c-428a-8cb1-813cf4dd0447", "target": "b06c44e2-b4c4-41c8-89aa-75e9f63e4d5b", "similarity_coefficient": 0.6071428571428571, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bfd4c778-9635-4b86-b0fb-de57f2694c77", "source": "43717905-a39c-428a-8cb1-813cf4dd0447", "target": "8a3a941c-4596-4073-8813-7e93e326c4f9", "similarity_coefficient": 0.43636363636363634, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5d64d54e-e8b0-400f-a04c-575d0b42ac95", "source": "43717905-a39c-428a-8cb1-813cf4dd0447", "target": "14f17c28-8038-49f6-a4ab-311c487adfa6", "similarity_coefficient": 0.5862068965517241, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d281d945-2064-49fb-a524-893b1720e2f5", "source": "43717905-a39c-428a-8cb1-813cf4dd0447", "target": "64d7c015-c260-4724-bd99-69ee54c28eed", "similarity_coefficient": 0.6071428571428571, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "206462c5-1cc7-424b-a16e-b187cc380d39", "source": "43717905-a39c-428a-8cb1-813cf4dd0447", "target": "69c69d97-3401-431d-87ee-22f72bd12c57", "similarity_coefficient": 0.6296296296296297, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6a8cab35-0eb3-4c47-9f53-b2ff115b9467", "source": "43717905-a39c-428a-8cb1-813cf4dd0447", "target": "1bdb2d2d-fe7b-4e46-b699-76d58b12344d", "similarity_coefficient": 0.576271186440678, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b767fb49-9581-439c-a8ee-7576c6767d54", "source": "43717905-a39c-428a-8cb1-813cf4dd0447", "target": "c06a9173-9c53-4b4e-b8e3-6869d4ef68b7", "similarity_coefficient": 0.6296296296296297, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1ad48fe9-a044-4880-b033-cde9a8097883", "source": "43717905-a39c-428a-8cb1-813cf4dd0447", "target": "10740011-adbe-4860-8ab2-5207b6a96998", "similarity_coefficient": 0.5074626865671642, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "501de6c3-f45f-4b35-92ab-14239e50d7d8", "source": "43717905-a39c-428a-8cb1-813cf4dd0447", "target": "256d4349-41ff-4f8d-84cf-712bd1e91eae", "similarity_coefficient": 0.3119266055045872, "overlap_size": 34, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "df6d11c0-155b-43ca-8431-57ac9272362a", "source": "17f32632-a94e-49a6-841e-f4a3c079d439", "target": "b04fa36f-a0b1-4875-b150-645a41433dec", "similarity_coefficient": 0.8048780487804879, "overlap_size": 33, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5949fddd-a8d3-4210-bbfe-2aeacdab0720", "source": "17f32632-a94e-49a6-841e-f4a3c079d439", "target": "536cea90-ddae-4dd4-a936-9846245ac987", "similarity_coefficient": 0.6612903225806451, "overlap_size": 41, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6683f491-5f13-452f-905b-bd9372a2da81", "source": "17f32632-a94e-49a6-841e-f4a3c079d439", "target": "70cf6d48-a46e-4604-ad85-12eceacf95b4", "similarity_coefficient": 0.3153846153846154, "overlap_size": 41, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b78ec012-c85f-429c-acf1-dd5aa7894085", "source": "17f32632-a94e-49a6-841e-f4a3c079d439", "target": "8cffca08-69ba-4a11-8650-725824ef2372", "similarity_coefficient": 0.7073170731707317, "overlap_size": 29, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0d81aab0-55e8-404e-87bc-87ac44899f78", "source": "1ff0c0ea-d31f-4da9-b8e3-cfdb97606fb4", "target": "b1a1c2a0-8eec-4de7-af7b-11db36d4c3d6", "similarity_coefficient": 0.7254901960784313, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d3928d85-235d-4316-bee1-cf8b88412566", "source": "1ff0c0ea-d31f-4da9-b8e3-cfdb97606fb4", "target": "1a0622b8-4328-4c5c-bc2e-ece6cda08863", "similarity_coefficient": 0.3274336283185841, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1bcbc946-39ad-4fbc-8467-cc761a96a061", "source": "a830d5f3-4b66-4adb-94d3-fa5742eae724", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.2736318407960199, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "98a797a0-9f2a-4e5b-8343-86a5b9e8c9bf", "source": "a830d5f3-4b66-4adb-94d3-fa5742eae724", "target": "512b43b3-5e2c-43d0-9270-d49211ee8e20", "similarity_coefficient": 1, "overlap_size": 106, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1f4e5b54-a98f-42b4-afdf-5a01f16d6fd3", "source": "a830d5f3-4b66-4adb-94d3-fa5742eae724", "target": "cf5b2c91-a143-44f5-a248-9063b55a2ada", "similarity_coefficient": 0.7647058823529411, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "44f73dcc-7756-44b5-a7eb-965b73f802c4", "source": "a830d5f3-4b66-4adb-94d3-fa5742eae724", "target": "2fbf60f2-400f-46dd-9a0c-75ecf6cf3bf5", "similarity_coefficient": 0.7913043478260869, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5df4c182-e11a-4a0c-a250-ce72ced9dc26", "source": "71374259-9d97-4671-bcbe-b272ae09ad95", "target": "9cb17d00-b403-4965-949e-03ef64b0c9a3", "similarity_coefficient": 0.58004158004158, "overlap_size": 279, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dd918ebb-1f9e-4809-8c9a-f13b8bc729fb", "source": "71374259-9d97-4671-bcbe-b272ae09ad95", "target": "df713d36-9b29-4758-98a5-5b6f138c3de6", "similarity_coefficient": 0.7620041753653445, "overlap_size": 365, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9adc0dcc-adf4-48ca-9f46-9d3bcf8541d0", "source": "71374259-9d97-4671-bcbe-b272ae09ad95", "target": "c59b9ba0-0b63-4930-b1cb-3e784ac046af", "similarity_coefficient": 0.2526964560862866, "overlap_size": 164, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "705a161a-c0dc-46c3-90d6-31eb1ccd8785", "source": "71374259-9d97-4671-bcbe-b272ae09ad95", "target": "cd17fb8e-e2e9-4ade-a18e-e29fe05fa092", "similarity_coefficient": 0.25473684210526315, "overlap_size": 121, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "88d128f6-b2f5-4f08-84ad-7afed0f1d961", "source": "71374259-9d97-4671-bcbe-b272ae09ad95", "target": "5915b056-e646-42a3-80e7-2deef8a98dec", "similarity_coefficient": 0.39759036144578314, "overlap_size": 297, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a8f8ff42-b060-4fe9-89da-88cfcc31e168", "source": "71374259-9d97-4671-bcbe-b272ae09ad95", "target": "1a39797c-1df7-4aec-8ab0-ce066a56e9ec", "similarity_coefficient": 0.5515789473684211, "overlap_size": 262, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4c6df7d8-bf69-4a83-94f3-b6997e916dd7", "source": "71374259-9d97-4671-bcbe-b272ae09ad95", "target": "70cf6d48-a46e-4604-ad85-12eceacf95b4", "similarity_coefficient": 0.2736842105263158, "overlap_size": 130, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "24a454b9-65db-4fa2-b47b-462e98a5aa69", "source": "71374259-9d97-4671-bcbe-b272ae09ad95", "target": "d2dd6367-2a41-4ac8-af45-50fe5a97d220", "similarity_coefficient": 0.4749034749034749, "overlap_size": 369, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "78f41e7b-cc69-4bdf-a57b-248ab1e345b9", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.5844155844155844, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "10c96219-2627-4f7c-9dd7-e7a28a8e790c", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.6923076923076923, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f6322de7-c30d-43a6-8054-c2e1b42ee0bf", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.3879310344827586, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e0c7c4a2-2a68-49c4-b993-8c9088c009cf", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.28846153846153844, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2fdec62e-235e-4d2b-9fbd-c851fabf8b65", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.6923076923076923, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "64f4daac-5173-441b-96ca-383cbc56c0d9", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "similarity_coefficient": 0.6617647058823529, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "827a1060-8260-478e-ae97-1b5f4c440021", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.4411764705882353, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dc519f6b-9f92-4804-9881-21037c7afad5", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.6428571428571429, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8a695cf0-339e-4bcc-b7b7-9f3a5a9c2284", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.625, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "88b0c0c9-e2b3-48f9-a7ee-3c66e41383ea", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.5232558139534884, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9ba95194-99bb-4fad-b6f5-c17e27ada7da", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.6818181818181818, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "00d4b268-a544-44d2-85f5-dc361c0d50da", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.569620253164557, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cb25fe7a-eb4f-4a42-b6a5-5437ec0332be", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "similarity_coefficient": 0.42424242424242425, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9d8dbc50-e8a9-4400-a5c7-b4779354b934", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "33c9bcde-076b-467a-8783-02f39f19c5c0", "similarity_coefficient": 0.5232558139534884, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "44d7ec73-27be-4811-b1e3-8ef0a438b360", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.45, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e846fa79-0b8c-42fc-9a40-75c39d8ecd14", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "similarity_coefficient": 0.4326923076923077, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "64cfd266-4e31-4434-937d-030689d53829", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.6428571428571429, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3a575283-88c8-4c37-9a84-74376fc6b947", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "similarity_coefficient": 0.5769230769230769, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "35fe651b-be76-4d67-850a-8fed4e54651f", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.5487804878048781, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "83c5bd09-c44f-4a97-9f76-fb5ea73990ea", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.2937062937062937, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e548a0dd-7700-447f-8c64-8bdbead23e4b", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.2978723404255319, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f01f9b92-9826-4219-ad12-01af0b4f9bd3", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.5357142857142857, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7e6f8399-b830-4bb3-adba-de124bef4c39", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.525, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "38af9c37-4ddc-4a2b-ae3e-0172ec18d3c3", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "a0a1943b-60df-40e6-8e54-0852991dd573", "similarity_coefficient": 0.3237410071942446, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "06a7ccdd-0fc4-4c8f-adc5-a11387a6d51b", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.5526315789473685, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f851a45d-a692-446a-97f3-d47070980132", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.2556818181818182, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "18bce18c-f84d-4387-aab4-fa7881e96b51", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.2542372881355932, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d2358259-8ca9-48af-8656-b70176c0e2cd", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.34375, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9a54ba6a-fa22-4988-9703-86941b13fe62", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.5915492957746479, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "db4c3557-c050-454b-9e42-7e07c18760a9", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.5172413793103449, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "79a29730-fc40-4e0f-886a-6ae600b484eb", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.3382352941176471, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "daea2926-3706-4471-8009-48d5b919462b", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.8793103448275862, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9a768c85-ea93-4993-bad1-08ea3b9fbc74", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.4166666666666667, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0811cd1c-888a-4201-a8aa-524781d74559", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.45454545454545453, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "827233fd-7d7c-4d87-8eed-b9bb35882f7e", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.6923076923076923, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a481fe3c-0a94-4b5f-90d9-3576dd23264c", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.45, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d52fed0f-89da-4dc7-85c2-5881c4698306", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.6086956521739131, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8abf33b3-3688-4dd9-b25e-9ab2b0a4311f", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.5555555555555556, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9131a123-8b99-4b6b-a491-ad0ca0dd65bb", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.6716417910447762, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2a211b6d-1997-4ecd-8064-21b025fe404c", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.2857142857142857, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7d62144e-b963-457c-8e17-27a05556b8be", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.6164383561643836, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "29bdff73-5c0e-4455-af76-85aa3b6eb74b", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.7142857142857143, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "96949ca6-7a6e-4125-8215-9a5477d0eec0", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.49411764705882355, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fd17f7d5-b3a8-402f-9861-c2a92e8e7b08", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.45918367346938777, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6896958c-c478-4f7d-a6e1-91d31850a498", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.46875, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a961a26a-c633-4d3a-a922-80b46b1459c8", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.6521739130434783, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2d716f1e-fa57-43f8-860a-f251acf63ca4", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.4787234042553192, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "67e82688-1ac4-4a35-abe2-bff91f6f5ca7", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.6164383561643836, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2bd79aeb-3461-468c-8b7f-3e34c555b9e5", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.6081081081081081, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "692f424d-1410-4d03-ab4d-57db5e71ce19", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "similarity_coefficient": 0.39090909090909093, "overlap_size": 43, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7626caf8-e149-41d7-8b65-bd15fa0b2021", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.4329896907216495, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b16b76f7-8595-4de1-9613-51ce8a7a96bd", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.26506024096385544, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eb95a2cc-f12e-4521-b1a7-fa8abcc1ad97", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.30201342281879195, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cab962ac-f927-40ef-8612-22e73744d179", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.3333333333333333, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "08ab026f-2b7f-4eed-bcbd-7b41f1c83e89", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "similarity_coefficient": 0.5555555555555556, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c8449893-f938-41c6-af18-cdb6b5e2451e", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.27607361963190186, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d7356d08-7084-4c7e-911a-ff1fb824b998", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.32608695652173914, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "44390a04-e433-436d-a13b-3d81c55dae52", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.27607361963190186, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cd1d56d1-fb4a-492c-82b4-65c3cccec79a", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.7142857142857143, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "94a2041f-87da-47db-99de-f78a4c32c6f5", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.6164383561643836, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2541285b-38aa-40ed-ba02-1861d98193b1", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "similarity_coefficient": 0.375, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "50a8bce0-b67e-4c51-8a54-5139a8faf8cc", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.4945054945054945, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d4a815cc-2149-43f0-80ee-80ebd1d00b76", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.4017857142857143, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cc49dee1-45d0-4b6a-82e6-3c88d89bddd2", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.3435114503816794, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a30d9339-ab63-4aa5-96ac-acc9c27063de", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.4090909090909091, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6a3f3838-7fa4-45b6-8c43-b1f2370fd24b", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.4838709677419355, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "156b8f83-442b-48d3-b452-ea48495b117e", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.6617647058823529, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1d97aa76-7d74-48c8-b3fc-77a497c11afc", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.6923076923076923, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4f63b389-840a-4bb0-8851-48f78397d430", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.5357142857142857, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "80b385b2-f215-440a-9570-5e5a109fd918", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.25609756097560976, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a26d0313-ec2e-411f-86e2-e80334ed0129", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.569620253164557, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5cce7c36-383c-4347-b152-dcd9d09ec464", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.4158415841584158, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fab40bbe-c60e-44e6-ae1e-8f3c01df6295", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.26785714285714285, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9d7f0203-8234-445c-90cf-e790f5abd404", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.6818181818181818, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "76d89630-0660-4fdb-bdb0-8d0fb418d788", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "similarity_coefficient": 0.42857142857142855, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1438d408-24db-4ea0-a44e-077610cbb524", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.6923076923076923, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "556dfa3d-0d27-4697-b553-2ccf22f1ff8e", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "similarity_coefficient": 0.625, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ddb8ab5c-c909-4c80-9b4a-91feb067e805", "source": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.6176470588235294, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cd64a282-345a-4226-bdd2-ca609e96e536", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.30434782608695654, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9506c066-d9a1-4ee5-88f7-83d05ca9099f", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.36046511627906974, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5505f1e4-f589-4280-8010-744fa9c1025a", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.36046511627906974, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b75c6eac-f38c-4c94-babf-cad4015cca61", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.36046511627906974, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0fe2ea25-9e5a-4748-9509-3fae940f568a", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "similarity_coefficient": 0.36046511627906974, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9e7baacb-e90d-4dfb-a41d-2c6899ea9fcd", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.36046511627906974, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "432c0d10-fb1d-4a6a-8e70-71afb387873d", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.35714285714285715, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "41ac1e2a-8cfd-412a-9856-a66c4c78eef2", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "b401cb25-9626-4bf4-9dc9-a102b829189a", "similarity_coefficient": 0.36046511627906974, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "07c59a19-aec0-4233-8507-5777742f1890", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.29411764705882354, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7603dbb2-8276-4193-9234-93e90a8deee9", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "similarity_coefficient": 0.3645833333333333, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dcc18c98-c48c-49be-a044-6eeea43109e6", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.36046511627906974, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dd52f8b9-c948-41a1-95db-48de2ee71b5e", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "similarity_coefficient": 0.5737704918032787, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fcb84f66-6127-4bc9-a650-389282e4a669", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.36046511627906974, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5749fb8e-ff0a-41c1-96bd-9febcd17c318", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "similarity_coefficient": 0.30434782608695654, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c9e34598-f9ba-42d8-b5ee-b36f9f9e439c", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "similarity_coefficient": 0.3956043956043956, "overlap_size": 36, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "47fd0d36-95c3-40e2-a87c-f2168cd6de56", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.36046511627906974, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fe1c7120-88d3-492c-8927-14b6685fa06e", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.25735294117647056, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e6a94533-5d05-47e9-932c-ffa2f9a7eb0f", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "similarity_coefficient": 0.36046511627906974, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0a62937a-f2bf-4dc9-ae04-ef2fe4f61291", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.36046511627906974, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bd2cfa02-f867-4b75-854f-c5552ad08f61", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "similarity_coefficient": 0.36046511627906974, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "486fe7d2-d0d3-4241-85be-08510e789eee", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "e15e930f-af85-4402-99a6-a57c9368b631", "similarity_coefficient": 0.28688524590163933, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "45117ca1-5bfb-4c15-ab8e-5d73198582e7", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.2966101694915254, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1f269d62-4aba-4612-91ea-1ce46006af5c", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.36046511627906974, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9b0d165c-0e01-4757-84dd-97324220d322", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.36046511627906974, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8001d3af-a5e2-4d2a-b66f-e8bfb663b3d8", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.28688524590163933, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f7cdf384-6474-49dd-b9f1-29cf1cef959d", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "similarity_coefficient": 0.3563218390804598, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b038f71a-4ebd-4c43-bce8-83fb7e4b2ce2", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.5737704918032787, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "58d1e8f2-b03d-4c46-918a-006082d28677", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.3804347826086957, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f5776a0d-4c40-4eb8-bc83-3a18945cd388", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "868604a2-809b-43bf-97f8-7d956608ccae", "similarity_coefficient": 0.2966101694915254, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5f64a59e-eec1-4632-a97f-7301e2182fda", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "similarity_coefficient": 0.36046511627906974, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a2060ff7-5654-470a-b07a-b2b2b954cc2a", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "374d76b1-e4d5-4516-b105-410699dc6050", "similarity_coefficient": 0.6730769230769231, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b6472c9b-7552-4be3-bfd2-3a516e95f2d1", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "similarity_coefficient": 0.36046511627906974, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ae0596a2-5a6b-4c7e-add8-bd694bb7d8c3", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.6481481481481481, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ca251bbb-ffbb-45c1-b0f1-5981287c8cce", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "similarity_coefficient": 0.5645161290322581, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6bae3415-493b-4a24-b6f9-2200d98afb25", "source": "fba653df-f3e4-45e3-bf71-739986879ea9", "target": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "similarity_coefficient": 0.34782608695652173, "overlap_size": 32, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ca7ca8ad-62bd-44ae-9e27-eacbc5c897ca", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.6712328767123288, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c3c2f4d4-a8bd-45c0-a734-a22cc901b83c", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "a0a1943b-60df-40e6-8e54-0852991dd573", "similarity_coefficient": 0.34965034965034963, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "606c441f-95c3-4f92-9c9f-5ca0bd2a6b8c", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "similarity_coefficient": 0.5625, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "813f8918-3f70-42b0-bf98-1badd64614aa", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.2777777777777778, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2475435d-bc36-4166-b260-fa28c4ca4e76", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.5679012345679012, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6be07daf-a7b6-4df1-bc24-8a4e65aef811", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.5681818181818182, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b85ba0b1-d990-4a0a-856e-cb53891560e3", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d97365bf-c1ad-4f3d-b759-2666a4dc0df2", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.53125, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7b516efa-ae70-47cb-9016-537e86107498", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.3380281690140845, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8a1b6288-e1fd-45c7-93f7-909208d472fc", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.36428571428571427, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cb0582dd-f46f-4dca-9476-3f39f0c78136", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "similarity_coefficient": 0.4423076923076923, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eca65848-ffe5-4210-9bf9-119279975303", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.6052631578947368, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6b6a2298-1bd3-47bc-849b-2f04665dc3b0", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.2538860103626943, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "55208b39-e8d2-4886-8959-a55b60864b08", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.5681818181818182, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fc1f9c72-238d-4d27-9ab4-1d718002da5d", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2ff17846-e087-4790-b72b-fe87abc3b3d8", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.7, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d4743432-4f5f-471b-8c5d-9a8503842b0d", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.6527777777777778, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c2e27eb7-5d85-4bba-85ab-067e335fd3d2", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "88680987-b3b3-48ce-9ef3-dc2943273b42", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "87ad7c52-3615-4ab9-af9c-8e5ffa48448f", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.3026315789473684, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8c13154c-47d5-4bf3-b4f7-70af2d0ef9a0", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.6024096385542169, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6f453ba0-3fec-410d-bd53-0d9d92690adc", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b5ec9874-482d-44c4-b15c-a3015b75928f", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.7, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5472f442-4583-426b-9bfa-636458e31ef0", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.5, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e842cadd-2ced-4d02-8871-a8b523fbcc5d", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.504950495049505, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1fb0aada-bae5-4fc0-901b-d71cd2ce0674", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2d3649bb-6a5f-44cc-99ed-87af04fd8faf", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4aa33923-3cbe-463c-8153-87c677c867b1", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.6164383561643836, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "752f545a-2fc9-4668-a6ca-3c954f4997a6", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.26344086021505375, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "56016578-ecd5-4d2f-ab01-4f0e211403c8", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.6493506493506493, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "59aee01c-8cf8-4231-9e7f-25737e817c18", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.26666666666666666, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e321f92e-2834-4671-9b7c-ae6418a6a90e", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.3355263157894737, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "23c01d1e-51cb-4cd3-8a17-ba2e8bf30513", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "similarity_coefficient": 0.40869565217391307, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bef7cccb-4fb3-4fc2-85ec-770b71c8ff4c", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6f871f8b-287b-4cf6-9a1f-e27977065c9c", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "33c9bcde-076b-467a-8783-02f39f19c5c0", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a5d0a961-45e4-481f-94de-48549d4a0bef", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.2916666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "39438373-ecc4-4bbd-af45-e9d4205662d7", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.5411764705882353, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bf893105-2b6b-45a3-9d25-7dde8d9dd815", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.46534653465346537, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "af220592-f69c-428e-b07a-1d72e0b5d962", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7da85430-9b3c-4503-b7e9-d37a4145ddef", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.3511450381679389, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "98292ab2-3015-4c9f-bff5-7425f5e963ce", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3ee333e4-6efb-418d-bae6-495aebf42d63", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.2994011976047904, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6fc282d8-be80-4ea0-9f13-b9fd4dfe5f42", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.2692307692307692, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c128c657-4eb5-4f1f-aa62-b2b246fafa1c", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.34265734265734266, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c7d68ed2-f2fd-4869-ae22-4c968d6b99b9", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "96286c6f-b18d-4f0e-b252-4282fbb1d7eb", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "af3cde9e-91d4-4d06-b287-d5d21bc5eeac", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "similarity_coefficient": 0.25252525252525254, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "17b89f04-5e4e-4cba-a60b-a3f0a2401f7a", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8a09744d-d676-4b62-acb7-37b72faa035f", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.4339622641509434, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bd37579d-a02b-45d6-b848-73ae2a1dadbb", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "similarity_coefficient": 0.392, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bf1724a3-6f95-427b-b54c-b08880033472", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.3108108108108108, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "71d69de3-e38c-4920-8d6b-88f34aca028a", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "62ef7e1b-8b19-49b6-b2ab-ed9ad6eca960", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3baa5274-5b9d-437c-a34b-cf97e87f5e09", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.7, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "31162931-eb4a-49d9-a64e-13a85c528d82", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.27218934911242604, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "200d7d76-0f77-4522-b8c9-126a7e219747", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.532608695652174, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e5dc44f6-d9fd-4667-b8fa-e3ba54fb71d7", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "similarity_coefficient": 0.2698412698412698, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c4e93bcc-ba61-4338-96a1-c39046741c7a", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.4336283185840708, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6c826366-d3e0-4cf4-9e76-5b2e0ff38df3", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.29069767441860467, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1e9715a2-a2d6-41c3-938e-7aa60c591d07", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.6438356164383562, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "25e9afcf-4044-4a57-a62c-4945033c88c8", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6f4ca3da-8b5b-4049-97d7-e15ff0a9adc3", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0a3b0d49-63a0-437e-8a06-1fa8052a82b0", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.4049586776859504, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "43a13cce-3581-4535-a077-423bee452794", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7d35fc85-40b8-4ef6-964d-449239f28bab", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.7, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "28f7f578-3295-4aae-bd4a-4ccca5d6e504", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.625, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fe024e55-2c20-46c0-87c4-f9a6f42e68b6", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.30434782608695654, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6ca4e66d-2532-4125-870b-94d979591ead", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ff2c92b2-b681-43db-bc59-1f2309f408a9", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e5be4ce5-4ecc-48ef-b434-a3e3c632341e", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.44680851063829785, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "976481b3-05ef-436c-a866-7ba5e769bc5d", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.7142857142857143, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "42dfd386-474b-4059-a88a-b46cc4eff0aa", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.6986301369863014, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a4f79f0e-3c09-40dd-bb40-e7a2f714605b", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "similarity_coefficient": 0.6712328767123288, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c4a064d9-d170-44b5-a368-079f97ac9923", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f52a44a4-c8e0-4bae-ac45-724a2b793830", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "44e853cd-d32d-428d-873d-0278f45a1c18", "similarity_coefficient": 0.25, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ad8d9e74-8939-4da8-9738-b94e23f970bb", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.26595744680851063, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cce91f68-c0d3-4e7f-b858-063140f9a9b8", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.620253164556962, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "966096dd-9b22-4c5c-a69c-5845aef10d58", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.7, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "51c78387-7440-45ba-89c8-ef9e5c28e724", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.494949494949495, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ced5b6d0-1bcf-484e-a4e2-67d870f97b90", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.37037037037037035, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0389078a-e4f8-435a-8739-2016ff2f30d3", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1becdf4b-d0b5-41af-9a9e-bc6ef26dda02", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dc055276-1a93-4243-bead-fa89a4479a9a", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a76dec54-c6fb-4ee9-bb78-9e8123e160eb", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.28, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "03e3c558-a88f-4bd4-b685-03849c38cb5c", "source": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "target": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f771f154-a1c4-444d-ad05-c172fea2ec6f", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "a0a1943b-60df-40e6-8e54-0852991dd573", "similarity_coefficient": 0.2602040816326531, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ca8e6a05-670c-43b8-bab4-482551f42ca3", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.5867768595041323, "overlap_size": 71, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c83806c2-3171-4bd5-b74d-05ea13639be7", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.7423312883435583, "overlap_size": 121, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d96eca0c-6b26-4cae-975f-00e1a80f0024", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "similarity_coefficient": 0.3358208955223881, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "707ed5d6-de17-44c5-8dd6-9d1990333f51", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.5289256198347108, "overlap_size": 64, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c9914a58-30c6-40ca-8313-e5d92389d35a", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.4251968503937008, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cb155be2-48df-4351-b360-09e39f7f8656", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.30177514792899407, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "58224b28-2b48-4cda-8eff-2d593cd4c7ba", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.2849462365591398, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3c369c70-53c1-4438-9693-36924a251d29", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.41935483870967744, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e4ee93b4-4cd3-4d04-8cac-6457e5e6001a", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.32666666666666666, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ba24bb0a-7109-41e1-9e26-8815c29a7788", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.34, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fa2feda5-d481-4358-8912-f85ec86544cc", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.4065040650406504, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5e8c1cfb-8ac6-4ef6-bd32-579dae7c84a9", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "similarity_coefficient": 0.2934131736526946, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "be29c87e-d78a-4286-919e-d3dce66ce31f", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.25365853658536586, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "03067407-110e-4f0f-9744-2f379f5fc51c", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "similarity_coefficient": 0.3006134969325153, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "75a9cc0d-3ddc-444e-b57a-7f602f148ed4", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "similarity_coefficient": 0.4, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "35ca6256-cc99-4450-85d4-dc479d681aeb", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.3202614379084967, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "39216030-8702-483c-ac3a-77120ee8bdd4", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.5298013245033113, "overlap_size": 80, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cc51b6a9-adb2-4f8d-851a-d585ac859c6b", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.3602941176470588, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "68ff374c-bd90-40d1-bf8b-541447589039", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.3023255813953488, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "be0cb363-0e2c-4489-bf10-7d5550977b27", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "72e711fe-6f53-4817-bbfd-daa0f981d60f", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.30434782608695654, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "273b70ba-f666-4681-897c-7502961468aa", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "84c420f0-3272-41aa-a788-f6788914c213", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "similarity_coefficient": 0.36231884057971014, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4ff874b5-81d8-485a-90bb-1b9a88d4a5df", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.34210526315789475, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "55cc09c5-63f3-4a2f-85c3-a91870b308f7", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.29596412556053814, "overlap_size": 66, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "89757e55-1494-4d5e-b1b7-52bc177725f0", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5538461538461539, "overlap_size": 72, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "388b42ce-7391-4c5c-94f3-9e9bf29b22c3", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.390625, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3a68bc50-8370-4019-af2a-aa2e28597f53", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "similarity_coefficient": 0.36, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cd78c85c-81aa-481d-a9c0-4e0c00722387", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.381294964028777, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f22303d8-2e79-498e-ac68-135c5f9ee6a2", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.40601503759398494, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7bfbdc03-93d7-4190-b0f4-c3b67cdfaef2", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.44623655913978494, "overlap_size": 83, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "48366b31-ab9f-4452-9c17-2ae758b0faa3", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cc4157f1-2193-4b7d-890b-914498a7e552", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.392, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b8c1121b-29f2-4d5f-9762-c482790c0ff0", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "similarity_coefficient": 0.29878048780487804, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b28687ec-dee6-4854-817f-3aa818444004", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "similarity_coefficient": 0.3953488372093023, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "74324d27-c7db-4170-9e11-a1390f46b626", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.7806451612903226, "overlap_size": 121, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2f76160f-4dbb-4d86-bb02-4b646e82b85f", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.26804123711340205, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a64c6069-c259-4cad-8958-d0704a84fe0a", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.6, "overlap_size": 93, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "12995533-bc20-456d-8e66-4e81e50638ec", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.3686868686868687, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cf422d89-6a68-4a4b-a2bd-b0e57acd8f0b", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.4016393442622951, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d03b2187-350c-4ccf-836f-edd70f143fdd", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.3712121212121212, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5683e957-b13b-4da6-bd0c-6e98a0ff31fd", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "similarity_coefficient": 0.2737430167597765, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "249502e0-ac8e-4b2b-a0a9-3b0bb408dd05", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.36423841059602646, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eda07135-2ab9-46f7-8866-7a0e6d5ee953", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.3132530120481928, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bb32100d-522d-42aa-be45-e8dd0e51dcbe", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "33c9bcde-076b-467a-8783-02f39f19c5c0", "similarity_coefficient": 0.6033057851239669, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bb1df688-0782-4fb1-a52c-d66f7b24d140", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.3475177304964539, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "36f17374-7ae5-4959-98a0-3600fa1250dc", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.5407407407407407, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "32c3aa2e-1234-4d05-ba9b-5c77327bfc4c", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "similarity_coefficient": 0.35766423357664234, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "10afe958-177a-4bd8-8979-8b24d97121e4", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "652e048c-6860-405e-841f-14d97a60252c", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.392, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ff77c95d-c8a1-4c40-91aa-93244cca4f90", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.3923076923076923, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "abdcf7cf-99b8-4ca8-b2dc-02d51e0306e0", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "78f3e1d0-b074-4809-b094-2d4c37c4e0df", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.35714285714285715, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3b58755a-72ce-45dd-850e-d20082f71b67", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.32051282051282054, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "926c5521-7897-40c0-ae02-e880d055b2c1", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.28378378378378377, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e80ea8b5-4d6b-4588-8c63-e71b391839c5", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "69c4b4b7-c9e4-478e-997c-da4e05c3d7ee", "similarity_coefficient": 0.31543624161073824, "overlap_size": 94, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e3db9954-9b3a-4f38-aa7d-da8f327c7eb0", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "similarity_coefficient": 0.3858267716535433, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c6be5f58-3b72-4e79-945d-45aa25d9980c", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.3828125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d8eac6cf-7154-4e67-9725-3b7c7001780b", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.5396825396825397, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3d89b2d7-785b-4e20-ad45-abc445faf7f2", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.37404580152671757, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "97dac0f9-a3c7-4dc1-baaa-c11933c50d88", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.3543307086614173, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ca23e1ee-a267-4d67-80a9-8c545c161bfc", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.4032258064516129, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "66d22a6a-2be4-49be-acdb-653bf01b23ed", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.3684210526315789, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "56688228-b37d-4d9a-8448-4dd9b294329d", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.375, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "db44eb97-b1bb-403f-a05d-de9d14c36bf3", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.40310077519379844, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dde00cf8-69ca-4691-afd0-d543b1983bab", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.2934131736526946, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "54820629-fec8-44cf-bbbb-75ef543f2c46", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.2760416666666667, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2466a465-f3cf-4946-b6be-a99e7fe834f1", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.35384615384615387, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4b9fcaca-e662-4024-8271-f0aa959fc541", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.5354330708661418, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "237c759f-e9ee-47c5-a398-6dd09edbcbe3", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.310126582278481, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "063756ba-ec90-457f-82de-13db7366d916", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.4911242603550296, "overlap_size": 83, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5c29af65-b663-4921-9e0c-3db49079ae46", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.3888888888888889, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "89c2336f-4795-4028-b864-dcb4092fa07f", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "68e54ae5-8b8a-42a2-96a0-5fc29f3120b9", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "8aea10bd-3c39-46b4-9465-cb411ab247d8", "similarity_coefficient": 0.2644628099173554, "overlap_size": 32, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d0cbddc9-2e6e-4164-a24f-a5467d3793bb", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.5365853658536586, "overlap_size": 66, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f5c3f788-5cfc-4c64-82b1-2ff651f2e37c", "source": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.5407407407407407, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4e0316af-37a5-4382-a9fd-deb58f367e26", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d32cc579-b3fa-44ee-bc3f-b755ca349a59", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fc93bd90-b5f3-40fc-bdc6-3c7ad2cf295f", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "62a04120-7943-4b82-87e9-ed8b46c8f575", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "51d7cdc9-782e-4063-8e7e-28cf3f473681", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c07e473c-f8d4-4dbb-a5d9-960c699ffe4c", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6955d9ad-0b8b-42d6-a716-d4f559ab2f4d", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1ceb39b4-9f38-42b7-9a74-a5dfc0ea1a9a", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e37980a1-1aec-4993-8e16-005f31c65113", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "e4cabb52-87fa-46a7-b178-1e258678e921", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "224672a8-bf80-4716-8ad8-09b26937ed7a", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "82734f5e-5bb3-4d21-9acb-727bfbc44880", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cbfe559a-f9ce-4eba-add2-04f90bc95b85", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "374d76b1-e4d5-4516-b105-410699dc6050", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "73808ee0-f787-4b0b-9e10-54b07ad47b25", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2f4a92ca-4c93-48cf-9907-130892ec8f08", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "similarity_coefficient": 0.7956989247311828, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9544fa1f-5bf7-4846-832d-8e03074f3c48", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ac78e4f1-431f-4db1-8a5d-a5a8e1cc4cfe", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "e317d95d-7299-42da-9e5d-030e294dbe75", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c124d748-049d-40d2-905c-ba31c6ce8d61", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "868604a2-809b-43bf-97f8-7d956608ccae", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "46359d70-831b-48b0-bbe9-e61850c065b9", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "54a5e3dc-e866-46c1-8a22-3f3ebfa6d2e7", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f928c71f-6948-4bab-99a5-9c1389bf1e95", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9b730146-7f83-454e-91d5-f9402b54a6f1", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "fba653df-f3e4-45e3-bf71-739986879ea9", "similarity_coefficient": 0.36046511627906974, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "41583b18-d48a-4059-ba46-e3ea3de4304e", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "e15e930f-af85-4402-99a6-a57c9368b631", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0d8d8a64-bf6d-4705-96d2-d7977155b622", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1e6afc02-34b7-4f4c-ac86-ca063bf1dbad", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2ab18bc6-4ea8-4e5b-95fc-782356ee2d42", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b8d8a64f-9e78-460c-aa96-c984f23a37b2", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b04e88da-ce49-4ab5-bfe0-1817dcc0fdc0", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cb29a79b-e303-4012-983e-357ac94a90e5", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c0f0ac99-ca07-46be-ac51-c74015e384fc", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "481d26b0-be42-40c3-abdb-180ff18a5f9d", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7fe76ec2-8bbe-4dbf-b939-d862a2de8af0", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "757730c3-9c82-4a5b-95cd-93ac57f78836", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "69f3711c-6262-41f5-ad2c-339864cbb7e2", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ad2a5378-9fd0-4ec6-b999-ce7d34a1c508", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0ca3b5d3-aa88-4a4f-97f9-679cbc87d823", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "similarity_coefficient": 0.6220472440944882, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a8c2432b-5215-4af7-b525-baf973233612", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f2cf89ee-5350-4901-ad1f-f4a9e239ceab", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2b997d71-f554-425e-8301-1a050643c640", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "b401cb25-9626-4bf4-9dc9-a102b829189a", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "35ad9706-d370-45a6-8a50-8232ae33bea4", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "84179f8a-4bc9-40ad-b6a2-90efb131eba4", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.6694915254237288, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8f65054a-c3da-49a9-9eca-c214f4f8fe7c", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "90e23856-f0b8-4ff8-b7b5-40e6f386a7ba", "source": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "410f62d3-0aeb-4dca-af53-eb5c203a49e6", "source": "9f961081-673f-4b2b-b4e4-1ab4b4b8d1b6", "target": "6436a9b9-9418-4b09-8d7e-1168794a0d4a", "similarity_coefficient": 0.631578947368421, "overlap_size": 84, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c7175f49-8b84-48f4-a0da-5e98bcdc0010", "source": "9f961081-673f-4b2b-b4e4-1ab4b4b8d1b6", "target": "28206aab-808d-44e8-ac77-aae952d8f7b2", "similarity_coefficient": 0.9545454545454546, "overlap_size": 84, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0d0e7e27-a863-461e-99e5-b3d748ef0835", "source": "9f961081-673f-4b2b-b4e4-1ab4b4b8d1b6", "target": "f718538b-8c4e-4d0c-8505-68da9ee2a319", "similarity_coefficient": 0.60431654676259, "overlap_size": 84, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6593f926-4cbf-4606-9e34-18ce1a9f70f9", "source": "6f94caff-fa63-4a67-b307-921d10fdac59", "target": "1c4c351c-b31f-42ba-902e-5c7078a9fc98", "similarity_coefficient": 0.32298136645962733, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "41bd6392-14b7-455e-8af3-0a466a23483c", "source": "f019a822-f9ed-4f22-85a7-e4f4633d7ac3", "target": "ed852b58-9ecc-4c4e-aa04-d50a951c9801", "similarity_coefficient": 0.5, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9239e2b3-3c36-4cc6-ba24-c17a6d035ccf", "source": "f019a822-f9ed-4f22-85a7-e4f4633d7ac3", "target": "41e51785-b6a5-4926-93a8-93e756e15ca6", "similarity_coefficient": 0.8, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ace8a7b9-740e-45e4-a1ce-7b2e36ecb381", "source": "f019a822-f9ed-4f22-85a7-e4f4633d7ac3", "target": "62d1a2a4-a8b0-4330-9997-0e0c05099ea3", "similarity_coefficient": 0.7333333333333333, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b1142e05-cc2b-4160-b340-420afe1d939e", "source": "f019a822-f9ed-4f22-85a7-e4f4633d7ac3", "target": "e28bc43f-7116-4972-bf76-e15d1b1cebd5", "similarity_coefficient": 0.32967032967032966, "overlap_size": 30, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aa60bc0b-650c-495d-b6a0-c52ceb22d271", "source": "f019a822-f9ed-4f22-85a7-e4f4633d7ac3", "target": "a450000b-f013-47c9-a2c2-1c6c86d9edec", "similarity_coefficient": 0.5666666666666667, "overlap_size": 17, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "be24a0ff-1a3c-42d8-9d29-1f30a6526d0d", "source": "f019a822-f9ed-4f22-85a7-e4f4633d7ac3", "target": "a8aef0ec-aa2f-49d5-8433-fa9fde46516a", "similarity_coefficient": 0.5666666666666667, "overlap_size": 17, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1a6b83d7-d027-42be-bed0-cafd06e38fa1", "source": "f019a822-f9ed-4f22-85a7-e4f4633d7ac3", "target": "75f7200b-bbf1-4975-a815-1a040bc2b804", "similarity_coefficient": 0.7333333333333333, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e50de115-7937-43a7-ab24-cfe9405df7f5", "source": "f019a822-f9ed-4f22-85a7-e4f4633d7ac3", "target": "461f3447-3b67-49c7-a062-dbccf20a8c20", "similarity_coefficient": 0.3582089552238806, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f3054a9c-9ba9-45b9-a378-3a91aa3dfdb2", "source": "f019a822-f9ed-4f22-85a7-e4f4633d7ac3", "target": "203837ef-155a-41f5-88ce-17e447837c86", "similarity_coefficient": 0.3333333333333333, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "767a92d9-97fc-4f06-8144-2516d4d1413c", "source": "f019a822-f9ed-4f22-85a7-e4f4633d7ac3", "target": "7b97fe84-d7d6-4d93-a1cf-f13ab3c752ad", "similarity_coefficient": 0.2553191489361702, "overlap_size": 12, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2c8e7a18-b087-4cc3-9f1d-087dd8cd1a75", "source": "a8e8f341-9192-4eac-b75b-e18b4f03a169", "target": "2d3d7dae-3699-4787-9e13-578f174297f8", "similarity_coefficient": 0.44881889763779526, "overlap_size": 57, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0c75c70b-2799-41b7-921f-c45cf4e28cb0", "source": "26ab1a9f-2702-4763-b141-ed0c39f9b80d", "target": "46c8c456-5def-4584-9833-812316564cc4", "similarity_coefficient": 0.5416666666666666, "overlap_size": 39, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "071fb0f7-5ffd-41be-96a6-2868175ef347", "source": "26ab1a9f-2702-4763-b141-ed0c39f9b80d", "target": "2618dd66-76a4-4e39-88d8-08bcb65b75f1", "similarity_coefficient": 0.7638888888888888, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d755da50-66ce-46f4-96ea-57424819f150", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.35384615384615387, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6407c4f2-fd9e-49a3-aa0b-d2dec03a70e7", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "similarity_coefficient": 0.9705882352941176, "overlap_size": 66, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3eb04e70-d3c6-4fa4-a22d-b5fa447ea1d4", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.373134328358209, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a82a0628-1fa4-4b40-9021-e89ce8215b21", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.4224137931034483, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f3a3f980-6c05-4bcd-93f7-5ec9bdf7fba9", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "similarity_coefficient": 0.41228070175438597, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6ec67910-6315-4ea9-9102-578339b4e059", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.3202614379084967, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b9a404e4-a51b-41f6-a28d-fe1954068bd5", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.26842105263157895, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3978bd48-ef98-4a01-aa31-9cd8dd46bf2e", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.5476190476190477, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "57fe09a0-7543-46ac-aab6-8d8dd5c991df", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.6575342465753424, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "363c4762-7136-4332-86cd-74ab10f8556c", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.45544554455445546, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6c58c7fc-dfe3-46e1-b433-bece91eb3cba", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.3680555555555556, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "670c40f6-d9a0-4260-9c81-dd464beb5b33", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.28187919463087246, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "442caaaf-e23f-46b4-803e-857faad594bb", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d9563f7b-c2ea-4868-a1ab-b2cd33888272", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.7, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fbe75834-a8bb-408b-be42-93693ed75bef", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.726027397260274, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "17e16566-8939-4c0c-9cb9-3f886abce5a4", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.611764705882353, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "af8ead48-d753-4797-8747-dd8d49797078", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.7878787878787878, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fdbeccd9-065f-4fb3-83d5-d27dba668a16", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.49, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0420b31a-f516-4493-b0ef-057cd7b728c0", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "20ea2769-0148-4486-8a17-730543f76b11", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.45161290322580644, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "945865c7-57d8-462a-a81b-5076621b321f", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3f853ca9-f9bf-4445-acfa-bad2b05d4ce5", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "a0a1943b-60df-40e6-8e54-0852991dd573", "similarity_coefficient": 0.34265734265734266, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fbb3cfe4-c746-446b-b895-55789c2c736d", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "44e853cd-d32d-428d-873d-0278f45a1c18", "similarity_coefficient": 0.27692307692307694, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f3ec23e8-fdd9-4ca3-8145-8d7ef4b35506", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.6338028169014085, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "de277073-8334-4b07-961d-6f71d8d5372d", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "82059d4e-0329-4015-bfdd-6df007756e21", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "similarity_coefficient": 0.5520833333333334, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "80850edf-cb65-44fb-a568-a3cffb0e2637", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "afe7390e-62c6-41b1-956c-76fa2aba30aa", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "00db4341-3d44-4474-b8b1-63a8595dbfda", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.6388888888888888, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "405844de-1e46-4b9e-97c3-6f1f7d696da4", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.5408163265306123, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a931948d-1c2d-4db4-8340-64f8e1309497", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f8bbb058-e8e1-41d9-be2f-f5a3ea522493", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.4083333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d0319df9-6e52-401a-99eb-a5c6dfd09472", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "similarity_coefficient": 0.569620253164557, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "265f2c9c-e09b-460f-bc05-8e3996d7f210", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "59ab55da-9c10-48dd-ad3a-86396068f62b", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6d677e1c-d68a-460c-8957-283818c8fe9c", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5473684210526316, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7159d33b-8b83-4d3c-bad2-ac362767d324", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0cee1277-c361-433e-ad2d-cc210f34e142", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d71e426b-d0ea-4162-a243-2ed64f39af82", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3628972e-4ac8-4ffe-98c0-0cc67755f876", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "521e6c26-900e-4e08-b1a6-09f6466434ee", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "similarity_coefficient": 0.2578947368421053, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d291cf4e-2576-469f-b883-919213a5f860", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.7352941176470589, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "74b5d3bb-c26b-41d7-937b-137964b966a9", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.4375, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6cbf605f-2d00-49a5-9158-05c9698334f3", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 1, "overlap_size": 66, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6610d7d7-5a89-4144-9a30-d323d42ca295", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.8636363636363636, "overlap_size": 57, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c236f24a-ff4e-4d1b-ba72-1e1ea1135e0d", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.32515337423312884, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "264473e5-f918-493a-8ba2-12f4034041f0", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.3375, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "46daeba0-d6af-449c-9b40-2dd1dc943a14", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.5148514851485149, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "054f34c1-65f8-40ba-8166-f41b5678a3b3", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fbf3c2cf-9706-4d35-b001-86ab4b3774a4", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bbb6d05d-d31b-4dfb-af18-7a6681264c67", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d0679405-69ab-46db-a20d-8dc542f1b36a", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8ea51637-e0e4-4491-8bd3-abfb2662e128", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.5148514851485149, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f00d02e8-0a22-424c-9c42-058cd99ca1e3", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.30625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0d1d693b-58b0-4a3a-9d01-0be826896ceb", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.27071823204419887, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2355b2b5-d437-4d4a-9595-4d8eecba36c5", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.4298245614035088, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5e61f24f-9d6b-4c23-a794-47c681bc0073", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.32335329341317365, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0783c3e6-637c-4b96-a44a-a4c54448f06d", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2b0daf48-c09b-434c-88f4-ac7a91457d8d", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.68, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "222b733f-4411-4c98-951f-599ca0b7adda", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.7352941176470589, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a4feff6b-fbe9-4aee-ab44-89791db100d8", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f4f265dc-92be-48ce-978e-28ee613d6568", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.30120481927710846, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ebe61e46-877c-4206-85fa-da6cd213bc28", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "377a6eef-e1a4-4e97-a9ff-63f67b3c10bd", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.2648648648648649, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eda887fe-5411-4fef-a789-1b42b57d85d2", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "056c51f2-0cbf-4472-99b3-9b9f80f0ad0d", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "68706537-cd80-471c-92dd-e6deadddc507", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.34507042253521125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8016012f-376c-4dc5-afb2-9d7452c1c1ef", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.26063829787234044, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3edd23b2-3b25-459f-9a95-755ecd8be265", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.7, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f39b1724-7547-4f79-b605-8ff075245553", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.3219178082191781, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "abf4cea2-cc34-4b3e-b696-a7531bcc711e", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.3669064748201439, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6fbb0ae5-6221-4e66-9535-0e423f0073c8", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.5730337078651685, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "538d020c-9215-4a69-a875-600e847d9fdd", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "34725cf3-e0fb-4055-bc7b-c1540e6dd319", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "960e243b-031c-47a2-9cb7-e7d2468661a1", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "09c9a207-ed9d-4882-bf3d-258294daff65", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.6712328767123288, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dc3149ec-cc72-4216-b01a-ccf94bdf1474", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.2696629213483146, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c72d256b-7d87-40ab-8082-e3ec6a9fb504", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.6301369863013698, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "62a3e529-8eac-4599-b97e-d8d15e4ac97e", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1d335f90-8354-4492-b52f-531c63250572", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "b4472d3f-7b1d-4c57-b47a-bffedc4aba98", "similarity_coefficient": 0.25116279069767444, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c9b3d1d6-4e48-496b-9e94-1c9478580b86", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4c8ea95c-fbed-4f18-9429-ede18b59c0b2", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "similarity_coefficient": 0.27979274611398963, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "03abf8bb-ff50-404e-aa06-b51bbd0dec45", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "similarity_coefficient": 0.40601503759398494, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7be76849-722b-41ca-84a2-fcd56db923b0", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "46aa5f0c-d158-47c6-b781-75f1c657e268", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "33c9bcde-076b-467a-8783-02f39f19c5c0", "similarity_coefficient": 0.6352941176470588, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "288a76bd-1795-40d5-9347-cf0b4d802c00", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.625, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d666b7da-3383-4c14-9b24-264ad963150e", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.3236994219653179, "overlap_size": 56, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7d40a45e-6ba3-4bce-bd2a-112e08e09a87", "source": "341f894e-1461-4011-8b23-be258a6c9d84", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.34285714285714286, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4e13517c-3bc0-47df-8be3-6b1f2b982737", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "512b43b3-5e2c-43d0-9270-d49211ee8e20", "similarity_coefficient": 0.3132530120481928, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "244ebc8a-5b7b-49c4-9e82-514cb504da36", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "similarity_coefficient": 0.32653061224489793, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e1355ae5-7f52-4f56-945e-607bdc611a17", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.3111111111111111, "overlap_size": 56, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e96fcee1-d5c1-44b6-b4be-7941a7b3a07a", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.43478260869565216, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7fb4067c-cca6-4e82-a9e9-119a6b0d23fe", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a8675d81-905f-42e0-bad3-aaf8878cd874", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "similarity_coefficient": 0.287292817679558, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f7bc5df3-0039-4bcc-b78b-350b60e19ff7", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.43859649122807015, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ef5ce0d8-aafb-4746-801e-43a094b1ccd6", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "similarity_coefficient": 0.3875968992248062, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "057c7834-ac4c-4626-991a-bf4e01eac46c", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.3969465648854962, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ce3abba4-1cf6-48a7-916e-3e0f15ccf6e4", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.3858267716535433, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7a41b702-f40b-407d-8755-6a2dddde18d9", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "cf5b2c91-a143-44f5-a248-9063b55a2ada", "similarity_coefficient": 0.3584905660377358, "overlap_size": 57, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c060ca4e-e618-4c75-b936-13170045217e", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.4016393442622951, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2952bc38-55f7-4602-a2ea-8e4c3d0d9dd6", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.390625, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6ec959dc-c42f-4a6a-847d-76e621804903", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.45217391304347826, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e37ca367-a844-4104-93e8-b11f1d984f71", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "similarity_coefficient": 0.3624161073825503, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "01c5194f-5559-4f43-b10d-368a364b9e1d", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.35374149659863946, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3f3990c0-a36a-46f7-8da3-9d55765792a4", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.42016806722689076, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "21fb668d-7b19-4b76-81cf-c11ff247da43", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.46564885496183206, "overlap_size": 61, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "07a99b4c-d12c-45df-b51d-db6c3614bb18", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.3223684210526316, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cf3d4a36-4fde-4535-bce1-8c214764307a", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.35384615384615387, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ceb84d62-6a5e-4642-aec0-71af4941bd9e", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.43333333333333335, "overlap_size": 65, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "79026523-2c2f-436f-8439-48a480d5d72a", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "33c9bcde-076b-467a-8783-02f39f19c5c0", "similarity_coefficient": 0.3602941176470588, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d10779ef-ba5b-431c-ada4-c2fbad912775", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.4224137931034483, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2a809f68-f389-4444-ae3f-6a8bf0a7128c", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.26136363636363635, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "308dfed7-93ef-4532-b364-4c9f3619d081", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.3525641025641026, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4c9a6387-ad58-4a77-baaa-5d7a58a32102", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.29213483146067415, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e29e409c-e5e5-4bf2-9a40-95f57cb7d3f5", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.3712121212121212, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "497acbf3-f7af-4c15-8baa-1e4233ed27b2", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "similarity_coefficient": 0.47413793103448276, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cafe8b34-ecd6-474a-a515-05035b5ac504", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.45132743362831856, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0195da46-01d0-4cc8-8bd3-d920ef3f2f26", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "similarity_coefficient": 0.36, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2c90bda8-255f-4bb9-ba9c-c7929748c3ba", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.2717948717948718, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "24ad143e-96fc-4122-8597-b7dd48f103e9", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.390625, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ebcef184-d65b-40be-afde-94a0733cda47", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.7466666666666667, "overlap_size": 112, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "79832e9c-a669-4ac9-9b8a-9b4185b02022", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.4336283185840708, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "885d18f1-a8f4-425e-9154-8ca8a6532a7e", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.4098360655737705, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "399ca445-143e-4bbc-a616-dbe8a449b55b", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "similarity_coefficient": 0.27232142857142855, "overlap_size": 61, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "75e55add-0d1a-45c8-b590-185dfde81554", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.4928571428571429, "overlap_size": 69, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ce402a2b-1140-4796-82b2-d35d8e7999ed", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.43859649122807015, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "63bc404a-a5d8-4255-9b80-530c0f95beb0", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.3475177304964539, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c678fda8-fd8f-48ff-acd4-edcdb671d17c", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c8582c72-d59f-4612-acf3-6c704654c2aa", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.3732394366197183, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "17d7686f-4214-4f18-bae8-cb2643f8b7f5", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.37790697674418605, "overlap_size": 65, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b75e9535-2514-481a-bb0b-1ba8c2519d2d", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.44537815126050423, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "67bc0ee9-a8de-48ee-a8bd-635ea4b6175d", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "similarity_coefficient": 0.3161290322580645, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f980f082-3f41-4317-b9aa-747df223d407", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.3221476510067114, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c690a552-62bf-4bc6-8fee-c285d8e1dc38", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.4117647058823529, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "caaccd3d-e7aa-4085-aa8a-0d1ea264960a", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.3401360544217687, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "83dfadf5-5eaa-4770-b0f3-b426dafb7e0b", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.35766423357664234, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "06813b07-bfbd-493b-a3c6-c0c8c52b9ca3", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.36879432624113473, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d3b4aff0-d944-4729-b9ae-d967e4567717", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "similarity_coefficient": 0.3828125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c6a25f43-057f-4707-bda1-41786f6d678f", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.3402777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "043230dc-730b-4561-bc97-d11d4955f4dc", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "2fbf60f2-400f-46dd-9a0c-75ecf6cf3bf5", "similarity_coefficient": 0.36774193548387096, "overlap_size": 57, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "16c3f705-8615-441d-8960-8b27aff0eb5f", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "similarity_coefficient": 0.32727272727272727, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4a95be5f-35aa-4ee9-8f31-2c1eefbc79df", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "similarity_coefficient": 0.34415584415584416, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aa8a7f91-fc71-42ac-bde5-cd0e3fc36523", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "20568a5d-c7b7-40a0-9656-894b823361cd", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.42016806722689076, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "676c7998-5635-4b7f-bbd4-125daa42a6e0", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.3288590604026846, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cc927372-d012-494d-9ade-bf919a968f1d", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "similarity_coefficient": 0.38461538461538464, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8c7e489b-a2bb-4255-a0a0-11255e2c2f5f", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.37404580152671757, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "69bf30fe-e17b-49ed-afc2-269dec96d7f3", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.38016528925619836, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ddbb8f01-9eb5-4fd7-9c0b-0b030f1832f8", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.3813559322033898, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9c31d27c-7dd2-4471-bbf8-f0696c5eb4ca", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.3870967741935484, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c5c3a465-62d4-4016-814d-8a2d1fcd3d9f", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.3602941176470588, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7ef94482-abb3-4e07-ac3b-aa73aeec0755", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "a830d5f3-4b66-4adb-94d3-fa5742eae724", "similarity_coefficient": 0.3132530120481928, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9b771822-45f3-434c-8193-c1b2ce3152b8", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.35374149659863946, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b825f933-0b3b-47b9-9cc6-7988e888c8bf", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.3142857142857143, "overlap_size": 66, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c87b9d69-c115-4760-94e8-fb03b555e53c", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "32efcdc5-2d8c-4c55-b8b6-df71c9187f4a", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.4224137931034483, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ba415318-3f88-4dca-b63c-000c53dbde27", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.4827586206896552, "overlap_size": 56, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fd895de9-56bf-4501-ba32-c14b867eed39", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "a0a1943b-60df-40e6-8e54-0852991dd573", "similarity_coefficient": 0.27956989247311825, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3d316a21-54a1-4d2b-ae74-38fbc79740d1", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.38461538461538464, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b5b61d7b-08e4-4ba8-b7eb-34ee3abf3665", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "341f894e-1461-4011-8b23-be258a6c9d84", "similarity_coefficient": 0.390625, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8a0bd39e-a1e7-4856-b792-21149564d9e8", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "similarity_coefficient": 0.4152542372881356, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aefcc8fb-c8a7-4e37-9ac0-60501dd47570", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "71b2d457-ccad-486f-be40-eed031215d36", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.302158273381295, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "82756dbb-4da0-4248-bb2a-e1e9a5822cd3", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.3969465648854962, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7b868568-7704-4b5c-9525-5f6f712a32f0", "source": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.310126582278481, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "025e64ba-dc76-4b79-897e-8352a85dfb4e", "source": "9c8f9b6b-28fe-41fc-8358-70bd8ea5d214", "target": "a43c5c6e-b75a-46eb-ad38-bf93f14d030c", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "21ff6783-20e6-4419-941c-0cf9d2d8db89", "source": "9c8f9b6b-28fe-41fc-8358-70bd8ea5d214", "target": "89ef528a-6736-4b29-9138-7a11a722353d", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "52a27999-dd43-41a5-9d38-eb594289e93f", "source": "9c8f9b6b-28fe-41fc-8358-70bd8ea5d214", "target": "3e8dd08d-a111-414e-905a-faeed681e3f5", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ffe949eb-d7c5-4931-a634-a55fb19ac028", "source": "9c8f9b6b-28fe-41fc-8358-70bd8ea5d214", "target": "f45e0bc4-6f9f-417b-b48f-de0017b4ee5a", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "094c312e-b494-4789-b275-1addb54d0c0a", "source": "9c8f9b6b-28fe-41fc-8358-70bd8ea5d214", "target": "218e964f-2842-43f5-825a-917591457798", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "746b8a73-e312-4148-8b4f-8371e88ef6f5", "source": "9c8f9b6b-28fe-41fc-8358-70bd8ea5d214", "target": "5db5ed69-b4e2-485d-b78c-1b47eb326935", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "77e61434-127a-4c6f-98ec-e743cd1d7bdd", "source": "9c8f9b6b-28fe-41fc-8358-70bd8ea5d214", "target": "4972b393-f94e-4331-9cd4-206ae4786f51", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "23737a57-910b-49f6-af40-c4ac07155025", "source": "9c8f9b6b-28fe-41fc-8358-70bd8ea5d214", "target": "8c62d23a-e9c6-43e0-bd9a-536f1f486194", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5a762fa6-4c1b-4fa3-9483-526c43201730", "source": "9c8f9b6b-28fe-41fc-8358-70bd8ea5d214", "target": "beb79ccf-a196-43d0-86ff-773092ba3490", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "80d25ceb-fa34-48e7-80da-9b7ed7206871", "source": "9c8f9b6b-28fe-41fc-8358-70bd8ea5d214", "target": "21bf578e-30d1-4fd3-95d2-727025363526", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e56170c6-0bc3-4cc9-80ea-80634aa88d83", "source": "9c8f9b6b-28fe-41fc-8358-70bd8ea5d214", "target": "e97d3933-d924-4c41-8e4d-ae17bd34263c", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dba6d2af-1d07-4f5a-a4b3-47db0cddedf9", "source": "9c8f9b6b-28fe-41fc-8358-70bd8ea5d214", "target": "e6bdd19b-66e3-45e2-b2b1-92f658ccc62b", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "760d6882-9c9a-45ce-832a-cb0998bc704b", "source": "9c8f9b6b-28fe-41fc-8358-70bd8ea5d214", "target": "d078c60c-b5d5-42cd-a5d7-a780f23a8090", "similarity_coefficient": 1, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c407b7cc-ea38-4a92-a465-d86b49a0f767", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1bdbafcf-23d3-4522-986a-283f195990a4", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "374d76b1-e4d5-4516-b105-410699dc6050", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "97309953-0886-4306-a67a-621288a6dea1", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1909bbd2-4a0d-4f58-abf3-71de78b81d0d", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1448005e-95f6-4432-a925-9abfd8b2a154", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7c763d53-a582-4d5a-9c85-c166159af454", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "83c275ef-302a-4cd5-baf7-9a95d7af695a", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "567777d1-9568-4844-898e-f660490fff11", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "717afa5f-06ad-4036-88f0-320b9313a293", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e2f6d0b6-6577-4565-b464-33671dea1cdf", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "868604a2-809b-43bf-97f8-7d956608ccae", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3d3e795d-9d3b-4412-924a-84d78d3ae0c3", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "993c8582-0d6f-4ec4-adeb-7f20dc1f72d3", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c3c32f67-c96a-45be-a237-57f2dfd22978", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "fba653df-f3e4-45e3-bf71-739986879ea9", "similarity_coefficient": 0.36046511627906974, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8c1cb027-aa95-4ac4-a3ea-390a9c91c4d5", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b8fb5f79-3be0-4032-9187-c5944da9efdb", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "e15e930f-af85-4402-99a6-a57c9368b631", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "033a37d7-8247-4843-a609-b3232ef2d97c", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "similarity_coefficient": 1, "overlap_size": 80, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8f549571-3563-44d7-a9d6-56952f421f70", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "39e24d57-14aa-437e-b4ca-f865dc6739d0", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e87fd067-2e13-490e-ad8c-ad8e483bb786", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "similarity_coefficient": 0.6220472440944882, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d4e17df4-ac90-48f5-942f-dff72201e660", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f6baddf6-f4d3-46f6-b0ad-9b3154a997fb", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "similarity_coefficient": 0.7956989247311828, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aa175d9a-bb79-4056-872d-83b3b1a8f9e3", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "b401cb25-9626-4bf4-9dc9-a102b829189a", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8881b49c-14cd-419c-886a-9ec1adcf9009", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "e317d95d-7299-42da-9e5d-030e294dbe75", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "83140acb-4f93-4562-8c22-8b06a80590d1", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ca28be95-5200-4d91-9bb4-5e3fdbe418af", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4b8b539c-29e3-463b-917a-620e244cab44", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e139a89f-94fa-4b97-a6ef-384b3e3f081e", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f4041b28-06e5-425e-8262-c7d47ced8258", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "e4cabb52-87fa-46a7-b178-1e258678e921", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "979b4745-0440-4b47-9114-70f6f2a20891", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f98cc9f2-249b-42b1-ba24-fce29103b9f8", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d4efd46f-f895-4db3-9149-fa1214c10719", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a0edc908-c8c9-482f-a029-f09aa335ba1c", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3e691b7d-17ce-4280-b28a-084c1590ca62", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1e561cb2-54b5-48b0-be49-702ddadea945", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5a5767c5-a9a1-44a4-9880-481ad7af832c", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0f3886ca-df9b-4e57-9ef0-54a068677a65", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b9c218b5-b4c2-4257-9075-d107faeb1c63", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7b8c756c-5514-4894-af54-906ec5a9080c", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "06d2126e-f885-43c5-b989-a351120f34c9", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.6694915254237288, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0d68a9fc-5768-455b-8195-de64b034822b", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "005524ee-4fd3-4d1d-9f35-4eaca151154f", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "548643d8-1343-4984-8252-65b0ded89235", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e94566f4-7a9b-4d5f-918c-f5a1fcacc283", "source": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "61e0dc11-fc7b-4a8a-9381-5a3cf1a46025", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "similarity_coefficient": 0.3783783783783784, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "219259c3-d546-4ea5-992e-192747ec9d75", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.4012738853503185, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "729aa51e-cf5b-4105-930e-654913c1bd79", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.38333333333333336, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "65e7436e-3fb6-4f1b-98ee-331c5fcd62c0", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.40707964601769914, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a36705f4-9c0b-4899-900f-d4c25472b2c5", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.45098039215686275, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "50b74225-4727-4ded-8d3c-152a22a32d31", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.2893081761006289, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3f1f86f2-0e6c-42e6-9171-8f4b2ec83613", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.4485981308411215, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1afa1af2-d5b5-424d-b539-d4457fc197af", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "similarity_coefficient": 0.4424778761061947, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "21a865e6-1ed1-42a3-ab42-badec321143b", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "similarity_coefficient": 0.32857142857142857, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c45991ba-24a0-4b8f-8f26-8f449dbcfd79", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.34074074074074073, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "07e0bd79-9be1-4004-b783-8cec008f3a8a", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.5789473684210527, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "44fc2297-41d7-40d2-9c7a-16ae404414c5", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.45544554455445546, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "34e4455d-5901-49d1-8a0b-a0b2da8fc2a6", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.4067796610169492, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a1813878-00d1-46d6-acbe-f05ca669611a", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "similarity_coefficient": 0.3669064748201439, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4f142ca8-a77b-45c7-9113-bce60b1d72a0", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.35658914728682173, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f78b3131-c9b1-4898-bcdb-60b2316656ea", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.5172413793103449, "overlap_size": 60, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "383fc876-82a6-4ddb-b8ef-25fe6692ec0f", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9dd305a9-9a49-4b66-89a4-c546e533134b", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.3108108108108108, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "183259c1-d3d9-4e3f-8b06-b370dfacba6b", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "similarity_coefficient": 0.29375, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e7a07dd2-ebcb-4af5-a681-7cec44fb9d7c", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.35384615384615387, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2c7caa3a-bb75-4dec-8b4b-7802dc9ba2c9", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.4423076923076923, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cd232244-6552-45e6-86a7-44b05502debc", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.36538461538461536, "overlap_size": 57, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "738967fe-ad0c-49c4-9604-9eeba0dd05e1", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.47, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "46b07305-8558-4a9d-aeb8-147c6cc9cfba", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.45544554455445546, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "590d4883-9096-4375-8a39-e5efdd1ac3f1", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.4015748031496063, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e18a4b23-4a00-4f2e-b64b-a8ec2be70c39", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "similarity_coefficient": 0.39655172413793105, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b807f3e8-1261-408e-933f-cddae1f6c2a7", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.43243243243243246, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "43fda117-cbcb-42cb-8fcf-debeb9fdcfac", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.26229508196721313, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "629808d0-805b-40ea-baa6-7a85a5737b22", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.36220472440944884, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a6f88fc8-d429-4bb4-9500-bf0c8416ae9f", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "similarity_coefficient": 0.34532374100719426, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "55792bae-03d5-4d23-b213-6eeafbb72a4e", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.47, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5fd68ee3-d28a-4509-8203-9819279d64d0", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.26436781609195403, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dee521d7-cd47-4356-9f93-f3b337632007", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "similarity_coefficient": 0.40350877192982454, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fd54cb90-3e0f-4cf8-a7f7-461249f875d7", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.26136363636363635, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a2106215-824f-4197-b207-b315cbda295f", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a0bb8974-2322-4b6f-8c9b-8c712dc590d6", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.3150684931506849, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8d47df1f-0028-4637-b3bb-4566271a2478", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.46464646464646464, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4529ccc6-0254-4fb5-be82-a4643d833b2b", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "similarity_coefficient": 0.42592592592592593, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e2cd1691-db76-4a24-9829-e9009130b8de", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.3898305084745763, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7f513ba1-a86a-4a40-871b-dc9a97650dfe", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.4485981308411215, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7818f4b2-42e9-4a15-9aea-4f2e67ef04fd", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.25906735751295334, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8de8597b-8b78-44cd-94fb-1af14583639f", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.40384615384615385, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dd84cc60-0898-4916-a758-79d54c82d9a1", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.45045045045045046, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "88281ae0-be20-4c8b-bcd6-a210c3afee5f", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "33c9bcde-076b-467a-8783-02f39f19c5c0", "similarity_coefficient": 0.3770491803278688, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e2200c42-30e2-4720-8d06-2da9c2adc439", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.3382352941176471, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d5d8af08-612c-4502-86cf-a4b8be809f3b", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.37404580152671757, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ad4a3258-3ae9-4a86-8087-16d7b1b03af2", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.42201834862385323, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7d72385b-a988-4d6a-8028-aa501b076e76", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "similarity_coefficient": 0.2948717948717949, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b4610ce5-7de5-4304-9bac-8314bb04ad22", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.4339622641509434, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b2c5ac23-92f8-4a76-91d5-d066d11734c7", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "similarity_coefficient": 0.27058823529411763, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "85ae0da0-daa6-44db-b487-c39ec6d4e545", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.42201834862385323, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a3f2ad4d-2315-4cc3-b6c5-c8a56c017f7d", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.35294117647058826, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2d0a165c-7691-4271-a1b2-9dd63218ffa9", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.36363636363636365, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "17f73919-93da-44f3-8356-ba42f1ea8fbf", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.4380952380952381, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "09626129-add1-404c-a9e5-143678c4720e", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.44660194174757284, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "df1c3b76-673c-487d-a7d3-2c6e569a0b02", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.5045871559633027, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c6d11e6e-ffe6-4e68-8a4d-60f02b2527a0", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.45098039215686275, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5b215e3e-2435-4af5-9c4b-ffca50ea7916", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.3026315789473684, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "609d76c3-738f-4020-9592-d79591c073f9", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.3382352941176471, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "01906f9b-72ed-4bbb-bbcf-cbb23afd5bd7", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.45544554455445546, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ded20011-5a4e-4d93-a823-5352bb5c3821", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.4, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3b74514c-608f-459b-a4be-962a1ef6e83b", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.42592592592592593, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e125a4aa-c4d4-4dc2-8b50-7fefba7497f5", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.2768361581920904, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e00e22f4-afcd-41e4-a487-eec783743c3b", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.37398373983739835, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "58590aef-2637-4d2f-8d7b-036313068f72", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "cbfeadab-ca27-40a7-8780-4bec2a9b1964", "similarity_coefficient": 0.2838427947598253, "overlap_size": 65, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "34b6716f-0a28-4038-95b8-3013eb4d9d82", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.2864864864864865, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "849be714-8ef3-404d-ad39-6c2af998c441", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.39316239316239315, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "76627edb-1303-43ee-a63f-59d69c1886bc", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.32867132867132864, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f5cbdff4-c915-4b48-a1c8-c91d645cf423", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.45544554455445546, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "13ff54b3-35f4-4587-bd32-1dfe817df7bd", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.41818181818181815, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8c1d3c8c-75fc-40f3-aeae-00ad6a213d7f", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "341f894e-1461-4011-8b23-be258a6c9d84", "similarity_coefficient": 0.45045045045045046, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "39174ecf-aacc-4412-963d-1290cfa48969", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "similarity_coefficient": 0.4563106796116505, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cd49862b-4216-4333-8ccb-6e0741ba0cb1", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.45098039215686275, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "28ef41a7-f8a9-43fd-b0d7-5473a0a6009c", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.3770491803278688, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a06844f1-624c-43a3-92d8-d78c0e8aca0d", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.31137724550898205, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5ac9307d-3f9e-46a5-bb6f-9e2d024204f3", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "a0a1943b-60df-40e6-8e54-0852991dd573", "similarity_coefficient": 0.26285714285714284, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "33d481a0-f085-456d-a98f-c6fa02663e56", "source": "a5b4ea87-c775-4190-8251-dddda84aad0d", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.4077669902912621, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0cd19457-e895-41c4-8e7f-31da0bb48b8a", "source": "4be85023-05ad-43c2-b6c9-3daf674c5a95", "target": "38ac2a4d-29ef-4182-a817-cc41e9972cc8", "similarity_coefficient": 0.47368421052631576, "overlap_size": 27, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "06529f3c-4cbc-4d9d-a85b-c6be80f739bf", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5f010847-7974-41cb-bc43-cb46ae43a789", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "similarity_coefficient": 0.4083333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8a7c6671-8631-40ba-bd14-b7e28d47fad7", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.961038961038961, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cd5c0499-5db8-43d1-a064-ed0df7f81991", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.5476190476190477, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a036a30b-cb7b-4429-8e70-52eb1fa4e837", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.4336283185840708, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7d6ea9d6-952e-49ea-a891-b1f4716e064f", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "da6bc833-6703-4dad-83ed-1828973d81ef", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.611764705882353, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0f51e86c-3d8b-421e-8855-c1ffcccabdea", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.4032258064516129, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f3157af0-8622-45c1-af36-a8ae94a4fdf3", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "69c4b4b7-c9e4-478e-997c-da4e05c3d7ee", "similarity_coefficient": 0.27472527472527475, "overlap_size": 75, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b282f087-fcca-4dfe-8b5e-1047d8e41e27", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.31645569620253167, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2d87a415-6cfa-4aa6-b3b3-b5f4e4081748", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dc0547bb-9a30-4286-86bd-67ffea2b4221", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.550561797752809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "972d0a9b-aa30-492f-9e2b-71595f6e40a7", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.2617801047120419, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3ca1d4c7-9b6e-4e9c-a8e5-36c27348ec8b", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.4146341463414634, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "319bbdb2-3ea1-41a7-8039-feafa12699d0", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.40384615384615385, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d2299a18-e60f-41be-8004-2bc76a6e2936", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.44680851063829785, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b026d832-e73b-40c5-83d5-49e1365fe953", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3cf91e4a-9afe-4572-9101-8b7ff81c97b6", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.44144144144144143, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1a26b3c6-8fc6-42f6-84cc-48ead8505a21", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.32894736842105265, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "031a7676-9fc7-4e85-aa05-8e3664798e79", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.5487804878048781, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1deea48e-36d0-4c71-884f-48deb801980f", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "44e853cd-d32d-428d-873d-0278f45a1c18", "similarity_coefficient": 0.2682926829268293, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7c6cc201-5449-41fb-b388-3c88dbedc233", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.5080645161290323, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "da6ae5c0-43e8-4fce-97ce-c36947581d25", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.6125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a7271ecc-6412-4619-9207-8e9054cde718", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.4298245614035088, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "460fd280-cb4b-43b1-87b6-558dd56e1bdf", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "f8a5f9ff-fb62-48b4-ad61-1e4f868172cb", "similarity_coefficient": 0.3217391304347826, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aa8e1cba-d876-4c5b-850b-93cf66bfef5a", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9cce0c29-0783-46da-8eea-94bda1c912a7", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.29878048780487804, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fd8b8970-df67-4035-b5ad-b2c474a6ca0f", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.5348837209302325, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1f6eab5a-8c6d-4b2c-9aa4-6f7817034b3b", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.8831168831168831, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "38f1e132-906d-4f18-9f0e-49a6c5747721", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0528a3b7-246f-4214-a1a8-61b1f0963bc0", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "b67a97a8-54b7-4306-be3a-d6518f864d8d", "similarity_coefficient": 0.3203463203463203, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "47f6d66c-71bc-4eee-af09-7cbd0ec72e08", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.2752808988764045, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fde63fad-e5c9-4357-81b0-d5e3aebbe1d6", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.5421686746987951, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3b7d2468-70bd-46d6-8921-9db5ef128c87", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "similarity_coefficient": 0.270935960591133, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9ee9fc71-5a9a-4a5b-baab-05199f0e06c9", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.2897727272727273, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4cefef59-6424-4768-9ab9-a28f8de634b0", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.5376344086021505, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bb5a9249-1008-41b0-8c6c-aa33d0f0e020", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "similarity_coefficient": 0.35, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "98b05b24-fa02-421d-b705-ff6b132f77fa", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "89dc7cc6-6b0e-49ed-a42a-6b7d7cade2a1", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "similarity_coefficient": 0.4117647058823529, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0de2b487-5e05-4a3e-bbb1-4c3d8e839370", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.25252525252525254, "overlap_size": 25, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3e98a276-9fec-41f4-926d-0bb076979a0d", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.4107142857142857, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2cb89e10-c8b6-43fa-ae7e-56d42908f6ad", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.3125, "overlap_size": 25, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "474aebe5-b6f1-493c-befe-fb347558ff74", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.8076923076923077, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ad24e81c-f8d4-40c0-890c-7bab75e5f62d", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "similarity_coefficient": 0.36507936507936506, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "27ec4869-5931-4d24-8d83-fee619623cfc", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "33c9bcde-076b-467a-8783-02f39f19c5c0", "similarity_coefficient": 0.8292682926829268, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3833d44f-4f09-4c60-b454-1ed7726674dd", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.3953488372093023, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "216771f9-e106-468d-94f1-0a55266b9540", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "a5b4ea87-c775-4190-8251-dddda84aad0d", "similarity_coefficient": 0.36507936507936506, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0ab700f7-2f5a-4bdc-a41a-7a066e3ee7f8", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "similarity_coefficient": 0.42857142857142855, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c65c311e-2662-4811-baaa-3e3e27f0fcba", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c4f50805-9f6d-44be-8d84-bafdfc5ac0ec", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9ae88f62-38dc-4ce2-8c85-5d2a6bd5ebad", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.5542168674698795, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ce7da85f-b02b-4c6a-979b-9440bdcd29d1", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "similarity_coefficient": 0.5230769230769231, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "950e64ac-26ca-4646-870d-16935ccff8a6", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.532608695652174, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "88480044-f54d-4f10-8808-b957328ab282", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ef6ca8ef-6110-48c5-9b0e-5ba925a7b45d", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.28654970760233917, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9289e4fa-3506-457b-ba51-57164e5109df", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.494949494949495, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d342314a-400b-4130-b5c5-4b46f756cae6", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.6125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "58f1a283-08a0-4a1d-8e46-98d7807ada37", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.5393258426966292, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4bd9ca94-18fd-4bb3-a93b-e3c540bff6e1", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.6125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a9a7f21a-084d-4c04-948d-223169f89ace", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d248083a-47ec-483e-8d59-0efe15651e90", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.8850574712643678, "overlap_size": 77, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3a29cc2c-7d40-4939-bcc4-e71c486c3f59", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.3983739837398374, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "85cce222-f9a6-490c-abc9-e922bec68b67", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "a0a1943b-60df-40e6-8e54-0852991dd573", "similarity_coefficient": 0.3181818181818182, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d1388d30-ae5a-4d84-8d97-05f65150c79d", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.5257731958762887, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "98c8eeb3-ed2b-4179-97c4-0ac9ddbf9f65", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.6125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4b39f83c-6daa-41c5-9c85-ac611601fa71", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b3c3928d-2ad8-4d66-8baf-768a049ab7b9", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "341f894e-1461-4011-8b23-be258a6c9d84", "similarity_coefficient": 0.5543478260869565, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d97f443c-9e3d-427b-9d23-2f19be8680e2", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.3223684210526316, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a5e21abd-8ce2-42f2-abdd-ed46c1ce527d", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.8518518518518519, "overlap_size": 69, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ee15a0eb-2440-4502-a20b-acd1047828bd", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.4161849710982659, "overlap_size": 72, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1040f330-337d-4a15-b8ed-0308d97d745a", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.3541666666666667, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dab94fc0-86e0-4480-8b34-7905e376fd4e", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "similarity_coefficient": 0.5425531914893617, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0c791318-d072-452c-acd5-9beedcdfaca3", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f524ecb2-ea80-450c-ace3-84df52284987", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "496b2468-0b38-4c1f-ba00-1a86e318b8e5", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.5543478260869565, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f93499d5-5ca8-4233-b2ff-04c9d3794a04", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "58b0eda0-2fee-43f8-a3a2-43c0eeb30348", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.6125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b366aed1-dce4-4c77-b378-63e7528f1a01", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.2857142857142857, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "41e5d981-a602-42e2-9613-4cedf985a114", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.2625, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f7ad137c-29e2-4130-98f5-48e5d2d7a33f", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "similarity_coefficient": 0.5, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4f40f87f-3f9a-47ac-ae28-e591b64431ac", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.9036144578313253, "overlap_size": 75, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "274e6de7-4f98-4ca8-bb70-da3e920b10ee", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b963b307-9550-4e4d-8fa7-63a7df31fc6f", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.42105263157894735, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5d1cc1e3-5e6c-44dc-b9d8-a51e7172633a", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.6097560975609756, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "957678c9-1d35-4096-afdf-d2b3e5638190", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2683232f-909d-4598-b509-dda5a101e7d8", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.8850574712643678, "overlap_size": 77, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bc4b66f4-6aaf-46e9-9d35-237e2884813c", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.43103448275862066, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "77b9c757-a09c-4ef2-9647-7f2d1d815327", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.38461538461538464, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fb2b76e7-e670-4b6f-90b7-d8afe9bb522b", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "similarity_coefficient": 0.362962962962963, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7a6f778d-4104-4c48-bea2-825b50534582", "source": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.3858267716535433, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b0b5d10c-94dc-474d-bf26-74ab84e51926", "source": "92149791-7576-4773-aa06-34bfdb2171b0", "target": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "similarity_coefficient": 0.26976744186046514, "overlap_size": 58, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3e61ca97-3227-4aa9-8f81-5bc2d304affc", "source": "92149791-7576-4773-aa06-34bfdb2171b0", "target": "a830d5f3-4b66-4adb-94d3-fa5742eae724", "similarity_coefficient": 0.6583850931677019, "overlap_size": 106, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c20b510c-100c-40ab-8249-1f3a0f48713c", "source": "92149791-7576-4773-aa06-34bfdb2171b0", "target": "2fbf60f2-400f-46dd-9a0c-75ecf6cf3bf5", "similarity_coefficient": 0.6211180124223602, "overlap_size": 100, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ffc0c2a8-720c-4e90-8230-587db2a67137", "source": "92149791-7576-4773-aa06-34bfdb2171b0", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.2591093117408907, "overlap_size": 64, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "82e274f2-ed01-4c2a-8b06-b6e10dd6de7b", "source": "92149791-7576-4773-aa06-34bfdb2171b0", "target": "cf5b2c91-a143-44f5-a248-9063b55a2ada", "similarity_coefficient": 0.6459627329192547, "overlap_size": 104, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5ac9097c-08ca-4d7a-9f6b-8b5ba029c04b", "source": "92149791-7576-4773-aa06-34bfdb2171b0", "target": "512b43b3-5e2c-43d0-9270-d49211ee8e20", "similarity_coefficient": 0.6583850931677019, "overlap_size": 106, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7124f973-787d-4678-a1c5-a8faebc5d545", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1afcfa12-1e51-4967-bbaa-90d0b436b0c4", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5c37555d-59f1-4a42-a344-f05f35998e08", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b65c5923-2f31-4dd3-aa2b-1adb17de9cf1", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.8543689320388349, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "db51f2c2-5d53-44ee-b35e-c012e81e80cc", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b1e127fa-1f27-4065-8f55-4cb24d25132b", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dcf9c6f9-62ac-4f59-a040-359694375b41", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.7333333333333333, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0cfd3160-c562-4df9-8e9b-333b8ffa7656", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "56301014-9373-4ff6-b5f2-679db5618988", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7007daa2-d6fa-454d-af11-d9f2c93f28a4", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "similarity_coefficient": 0.9473684210526315, "overlap_size": 90, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d8dfe99b-2f49-4bdf-9b3a-dae69d93e082", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "similarity_coefficient": 0.7333333333333333, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2fe2059a-f5bd-4675-8d99-00b2da30915f", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "similarity_coefficient": 0.5785714285714286, "overlap_size": 81, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "46f15e1f-cfbc-4c26-af05-ed0a45b93426", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "similarity_coefficient": 0.2916666666666667, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fb057126-a0ba-4b0c-b57c-1d8e1954dfe5", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "fba653df-f3e4-45e3-bf71-739986879ea9", "similarity_coefficient": 0.375, "overlap_size": 36, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e4147c3a-a943-4f5b-b4a2-080b819b4e5e", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e5b31289-f619-44bd-9898-64cbb517b90a", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c4a7a47a-1768-4684-8cb7-7c010e4a7aab", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8f56e8c8-5f33-435c-a9e3-cb4d47384afd", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2287dba7-3feb-4950-bc93-8ed5b6a3e4a8", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "e317d95d-7299-42da-9e5d-030e294dbe75", "similarity_coefficient": 0.3231292517006803, "overlap_size": 95, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3daa85ff-dafb-47e9-88cd-0beeb4677a42", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "d8540c26-26c9-4f3c-91da-5db659f587c1", "similarity_coefficient": 0.2607449856733524, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2773bb6a-0a3f-4a52-b33b-3e6925116861", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ea9d5cc8-d56e-4578-baf0-7cc34d98a523", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "138ac02f-f0ee-47b9-989b-57402c25c8cb", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5d11c60d-61bc-4c90-8c2c-5ea0fcc5ad1e", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "25c19c1b-5cf0-4bc5-a86f-dc0a26f88696", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.7154471544715447, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c0077e79-bf6d-45a0-b46e-b06a6abae5e2", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.4631578947368421, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "30c9ed53-6841-460e-97e3-7a635182cc3f", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "177d6c47-c02f-43d3-9f1a-9099b6f7458d", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "e15e930f-af85-4402-99a6-a57c9368b631", "similarity_coefficient": 0.6929133858267716, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "46a620f6-3130-4ac6-85d9-0199f13a00e5", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "similarity_coefficient": 0.29411764705882354, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2789e26b-0f5a-48aa-b274-0f31b5530199", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.3125, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7c390107-9f65-4a53-bbd9-c126f1d3c6b8", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b36656a1-269e-42b5-a719-81b0749cce47", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.7096774193548387, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a4f93c0e-4a58-4680-80cf-e081cdfb2604", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "868604a2-809b-43bf-97f8-7d956608ccae", "similarity_coefficient": 0.7154471544715447, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6a3a2b3f-aeff-44d9-92fc-b4500e12bafb", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.29411764705882354, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "06f3a7b0-ded2-4a9a-a7dd-e42ffc3abcde", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.624113475177305, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d0b1161a-1b9f-4372-809d-fafd002628ed", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "374d76b1-e4d5-4516-b105-410699dc6050", "similarity_coefficient": 0.3181818181818182, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e56e6ee0-4800-40c3-8ee0-ff41ec19314f", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "similarity_coefficient": 0.7333333333333333, "overlap_size": 77, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "40256f25-0eb5-40f6-b650-66d8a937e9e4", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "similarity_coefficient": 0.8712871287128713, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0be3b373-8e45-4be4-8bfa-87a8d2df468f", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.9072164948453608, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "254e833e-cd14-4df6-ac9a-5eda842a3103", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.4943820224719101, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "602fa474-2e2e-40ef-90a4-a17fd162f3c4", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "b401cb25-9626-4bf4-9dc9-a102b829189a", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "83006013-a75a-4f37-99a2-6e4e89fc5442", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "e4cabb52-87fa-46a7-b178-1e258678e921", "similarity_coefficient": 0.5365853658536586, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ccce92f3-8f71-4dd1-b6f4-fb60538ca3fd", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.6929133858267716, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "982e058a-5098-461a-b896-ff987fb7a263", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7e905d27-0ae7-4df8-b078-205d859af990", "source": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "target": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "similarity_coefficient": 0.41904761904761906, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eafff292-2ed9-4326-9468-8b1bbda02a9d", "source": "4a6bc1f4-6c66-4489-8a8a-d7d17ac1a228", "target": "7f22376c-1798-4ebf-811f-e11344296c4f", "similarity_coefficient": 0.35384615384615387, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "435fc9c7-bd6e-4a37-8a50-39ce47f06acc", "source": "4a6bc1f4-6c66-4489-8a8a-d7d17ac1a228", "target": "4b373646-8031-440b-8748-56f50289c686", "similarity_coefficient": 0.4305555555555556, "overlap_size": 62, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e384363f-ed1c-48fe-9dbb-f6a5bd8c3996", "source": "4a6bc1f4-6c66-4489-8a8a-d7d17ac1a228", "target": "535a82d8-5c10-4a4c-9a20-09541374ee3b", "similarity_coefficient": 0.5343511450381679, "overlap_size": 70, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ca1958d1-f6d7-4aa9-896f-f37dfab14cbc", "source": "4a6bc1f4-6c66-4489-8a8a-d7d17ac1a228", "target": "fb423d6b-dc3c-400a-8cb4-cfcf5aea4500", "similarity_coefficient": 0.4606741573033708, "overlap_size": 123, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f7c0d2c8-329a-4451-87a0-644a6fba0899", "source": "4a6bc1f4-6c66-4489-8a8a-d7d17ac1a228", "target": "623310f5-8d59-43b9-bdde-0d30cde60c99", "similarity_coefficient": 0.6648648648648648, "overlap_size": 123, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "35bc9e31-a55b-476c-909d-31445de45252", "source": "4a6bc1f4-6c66-4489-8a8a-d7d17ac1a228", "target": "b81d8d56-c41a-4508-a1ca-9590780583eb", "similarity_coefficient": 0.37398373983739835, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "296b5360-62fb-4502-a101-4fa5ec943aca", "source": "4a6bc1f4-6c66-4489-8a8a-d7d17ac1a228", "target": "2c6012fd-f497-423b-9ab1-8cfc5154f253", "similarity_coefficient": 0.7121212121212122, "overlap_size": 94, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "71a476b9-200d-4781-9054-b89e33f356eb", "source": "4a6bc1f4-6c66-4489-8a8a-d7d17ac1a228", "target": "0a98c49d-d1c0-46f9-9b40-1998ea452849", "similarity_coefficient": 0.467680608365019, "overlap_size": 123, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "211c2a4f-d9cb-41e1-8eae-3370a66456ed", "source": "4a6bc1f4-6c66-4489-8a8a-d7d17ac1a228", "target": "4a0b61b9-4b5f-4854-888c-d24f120dc0e4", "similarity_coefficient": 0.467680608365019, "overlap_size": 123, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d740404e-ef84-4af9-92d3-c1c73165acfe", "source": "4a6bc1f4-6c66-4489-8a8a-d7d17ac1a228", "target": "f127255f-9ab3-4cc9-80ae-d598f0105419", "similarity_coefficient": 0.6684782608695652, "overlap_size": 123, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bc580e78-6f12-4ba8-a212-9a219d491873", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8dbb1bff-fde7-4a23-8909-214e63f424f5", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9a8bb171-c352-4129-8507-2bee29fee5a4", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7dd3f4a0-5bb9-480a-b7ba-1f1a1bd36c12", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.8627450980392157, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eb5903ed-b42e-4fd1-b8d7-3703773b85ac", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.7394957983193278, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d142f09d-a073-4386-b196-5b3762c6a002", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e6484295-ecc4-4daf-9a3a-b669268aabeb", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e0fded4c-9fd8-4969-b33b-b8439722c2ae", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2d12599f-969c-4874-bd23-9469fa20b4a6", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "similarity_coefficient": 0.9166666666666666, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e4b92075-aae6-46dc-a942-5dfcce789351", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "similarity_coefficient": 0.7394957983193278, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "daeb2783-3dd8-44dd-aedc-103b0ed1f12c", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8e4e6d22-82fa-45b4-8870-da4310c1d3b8", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "similarity_coefficient": 0.5942028985507246, "overlap_size": 82, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a7e92ea7-f95a-4e50-a75e-5eec36596e12", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "similarity_coefficient": 0.29411764705882354, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "db17626e-f188-4ace-92ba-6fa1756f65bc", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "similarity_coefficient": 0.88, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "04b88df5-9b52-4d05-930e-4b645f034336", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "fba653df-f3e4-45e3-bf71-739986879ea9", "similarity_coefficient": 0.3645833333333333, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c1b3a8d1-4842-4053-8016-fa1d851d8972", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "similarity_coefficient": 0.7403846153846154, "overlap_size": 77, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2fd76880-36f8-45c5-9e82-93ba21e4ad98", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.9166666666666666, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "45e4d743-552f-4630-af5e-159c276965cf", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.4971751412429379, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "72aabee1-5d65-43bc-a796-149aeef0999d", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "e4cabb52-87fa-46a7-b178-1e258678e921", "similarity_coefficient": 0.5398773006134969, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5ad99e7c-578b-4223-a7f9-19ad61f6abd8", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.6984126984126984, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c12e76b9-e022-4509-af80-6979318f65d5", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "b401cb25-9626-4bf4-9dc9-a102b829189a", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "db604ad6-7c96-4c36-a44d-9ab957032271", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ab9ce9a7-c4cf-4b97-ba67-1b86b517bc55", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "similarity_coefficient": 0.42105263157894735, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e4108582-9368-43b1-ab72-d30c68804171", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "195252b0-0c37-4d45-b7fd-64870b52d730", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f0bf5900-7f0d-466d-8923-377dfeb9a677", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e890db3e-764d-42ad-adae-c98245259a4e", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "similarity_coefficient": 0.2966101694915254, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fff7f8b7-895a-4b1d-877e-424154ad61ee", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.7213114754098361, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9122e91e-313d-466a-a5fb-524722378e02", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.4656084656084656, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "184ee07c-afa7-4619-a136-6f022d346e88", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "e15e930f-af85-4402-99a6-a57c9368b631", "similarity_coefficient": 0.6984126984126984, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "59360cd8-29ce-4fe0-90fd-1b70f2b42c24", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7d963232-384b-4a94-8ea4-2b17e66535b4", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.3153153153153153, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3f0a0f5c-90b9-4753-8730-853274d07ee5", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1479dfd7-7657-49e6-84e0-cab8899f90c9", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.8034188034188035, "overlap_size": 94, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0b6742c8-b46c-4d0c-87da-9798fa1f99e5", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.2966101694915254, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6b0156aa-39cc-4b8e-a572-28a957340feb", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "868604a2-809b-43bf-97f8-7d956608ccae", "similarity_coefficient": 0.7213114754098361, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9840591f-4f7d-47ff-a485-18a028dbe78e", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.6285714285714286, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3c12cb1f-5143-415b-bd6a-9ae245677e73", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "374d76b1-e4d5-4516-b105-410699dc6050", "similarity_coefficient": 0.3211009174311927, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0e02389e-0965-4689-b33a-95e2facbff7f", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b0c03f23-ad9e-4ecd-8e28-525f4c232f88", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "similarity_coefficient": 0.8315789473684211, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b995c8eb-c408-4d9c-9eaa-ab1ffa298999", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "826bb050-741a-4a2e-9911-7f33b5d31f32", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fb93406a-44b0-49a5-b5fd-715d0ad047ae", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "e317d95d-7299-42da-9e5d-030e294dbe75", "similarity_coefficient": 0.2976588628762542, "overlap_size": 89, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3daae553-076b-4ad0-8278-537aa06820c5", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "d8540c26-26c9-4f3c-91da-5db659f587c1", "similarity_coefficient": 0.25071225071225073, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9bbf5f59-961e-452e-ad93-963642f18a79", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "similarity_coefficient": 0.8712871287128713, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "38da69d0-317b-45b3-ae30-10e4a41b048b", "source": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "target": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3beded91-34f8-41e1-a8c6-3b7225436726", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.3953488372093023, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9b90bef7-47d3-4f04-8088-14b29d6c0514", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.33986928104575165, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "26c35f52-b234-4620-ae82-9eac7b65e9c9", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.30357142857142855, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "242d9723-b782-45ff-a5c1-6501188add62", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.3382352941176471, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c4d9647c-d325-40d3-ad0b-c471dc0c1492", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1d8ddd24-e060-4b70-a78a-838e6a2faa3d", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.5217391304347826, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "961cc980-9755-4cde-ae4f-1afe7121ba30", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.3141025641025641, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "14e05f27-04b0-43e8-88d3-eebeb7aa08bc", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.504950495049505, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "38f9add0-04dd-4ae8-a90b-a7811c2c7dda", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "similarity_coefficient": 0.288135593220339, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "de55f2b7-9097-4de3-acbc-ac835157a309", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "similarity_coefficient": 0.30386740331491713, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "97896423-9b43-4e0d-bbf6-0d3ac6badc43", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "30c888a9-f5ed-4df3-9dc5-93d3c6c0255b", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.875, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e57f2091-0767-4620-806b-231bd377dded", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.7424242424242424, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7e724a69-da3e-457f-9c25-d2b80bc20265", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.3096774193548387, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cac9d751-4d86-4938-90d0-08733527e983", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e61a4890-72b9-42ed-bd6b-87d98ea67ec2", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "similarity_coefficient": 0.8095238095238095, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b5f1272a-7c08-4d33-ba30-caaec7e2e3b6", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.2840909090909091, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "44d7ce32-a314-40ed-8af9-40fe0bb0aa0c", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a5501c95-4148-4dd2-93cd-1f1538ebcfa4", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.6410256410256411, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c454756c-57fd-4f8d-b715-07659f8badbc", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.3291139240506329, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2bef7396-fef2-4e59-b622-c17658c671dc", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "similarity_coefficient": 0.5, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eb016d86-18d2-429c-bdf6-d85644c40905", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c39f553e-dd9d-4515-9e0f-7b948f93c60f", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.6046511627906976, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7df584af-72aa-432c-9808-d56a1b058d2b", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.796875, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ad198aee-d3df-4e98-9035-644434f35d08", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "91a2c4f8-1071-4306-b52c-8e3ad3fc509f", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "341f894e-1461-4011-8b23-be258a6c9d84", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ad021faa-87a4-4dc0-818f-0dba33fb2ddd", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.5121951219512195, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "afb372b5-87cd-4166-9228-24b7d8ed1738", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.48514851485148514, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "85c5d6cf-a9b7-4cc4-b3b4-949f2f888c7d", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.4766355140186916, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e492d580-c8fe-4475-9c53-2adf5eef953e", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.75, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "89c57a6b-9617-4a12-bf81-b799952f62d8", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.3288590604026846, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d13183c0-c7bb-402b-8ab5-0cfd632c0b64", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "274e5ae4-1be7-45c3-ae9d-a2a3fe4155ff", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.6, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5f385fa4-92b0-4116-8280-43049b263e52", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "baa7b66c-c5c2-4c22-a6fd-d2a0c0fcd13e", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.8771929824561403, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fe53b9ec-d713-4227-847d-d280f7b98875", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "similarity_coefficient": 0.5333333333333333, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7428b00a-e404-4c77-be11-55d6a5422861", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2bb6ad31-2ee3-49ed-8d84-d6e2d1a6aedd", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.6071428571428571, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d36d14d8-e26b-4e80-8b8d-45ab98b4ed63", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "similarity_coefficient": 0.4336283185840708, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e23b04da-29d4-41f4-ac81-3170392f4f92", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.8064516129032258, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3e4cef8a-44c7-4e08-8fd5-574ffc182bb6", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.5777777777777777, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "31ef0b22-743b-4ba3-b0da-0a91c5da66de", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b5245776-ae15-4b54-a4e1-9b32c3732aae", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.49514563106796117, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1bde7af6-805b-4e3b-8407-4a28f43e4d96", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.4297520661157025, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "80e17a37-bfd6-42f0-9e6e-9a3b7e8751b3", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8a1180eb-e404-48f8-9540-950ec968839b", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.7027027027027027, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3a92124d-13f7-4d15-b555-08be394d7a77", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "a0a1943b-60df-40e6-8e54-0852991dd573", "similarity_coefficient": 0.3923076923076923, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5b7249fc-0edc-48a9-aa1b-b8f954822a1f", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.30434782608695654, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "978c141c-e386-4389-a48f-779d7af26c69", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "similarity_coefficient": 0.45217391304347826, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3843cb61-daeb-48a8-b00b-e8c00e6de609", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.864406779661017, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "efeaea70-509a-445b-905b-a8835999e64d", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d41b1ed7-aab9-4ea2-924f-d29ceb47bfc1", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.532608695652174, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8e79e0ef-ae9f-48ff-9ab1-bceb51143e9c", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d5d35c6d-89e9-4aa4-82f0-b520a0468cb9", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.7164179104477612, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dbd74c7d-a821-4fbe-82ab-20f5e83be725", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "similarity_coefficient": 0.6617647058823529, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4d6f8100-1123-47f1-a8fd-0c8a7ca23ad4", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.7027027027027027, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d7324346-2e59-4d63-bb90-584b954aafae", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.71875, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f9cd3979-7f37-4e90-9b17-c8ed3da9ae8a", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.8305084745762712, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dd5a614a-f67a-4722-a494-8de04dad0b74", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "similarity_coefficient": 0.8032786885245902, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a86b45cc-c87a-472e-8a1a-72f4892c34f9", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.8620689655172413, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6f4bed68-2083-4e94-8782-94c7a6728df9", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e2ceb27c-e2b5-47cb-8235-146f3cba4488", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.28160919540229884, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c021bfe3-6ad2-4cfa-96dd-2ae3060e5960", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "44e853cd-d32d-428d-873d-0278f45a1c18", "similarity_coefficient": 0.3005464480874317, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cc9a00fe-1b42-4287-9aff-9f92c10eebf1", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.4094488188976378, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0b1806ec-c084-4c8a-8a47-2aaa312d4a94", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "00180960-09f6-4ba4-a89b-ca5babeb23e6", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.27071823204419887, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ca3a4ece-65ef-42ee-8e60-b9f399b46559", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "a5b4ea87-c775-4190-8251-dddda84aad0d", "similarity_coefficient": 0.4423076923076923, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f780e45f-6368-491f-b192-9d815c4c6902", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9e075bc0-d42d-4a79-b7e0-b312c6591d1a", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.5777777777777777, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1372fe0e-784a-4395-93bc-06cbadb915ff", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.34782608695652173, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a16b0f7a-27fd-4f06-a978-c25c6cf1131b", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.8305084745762712, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ae9f4da7-7917-4f28-994d-e9b4ce7f014f", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.8253968253968254, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4d317dcb-4027-4c13-9eac-a562d59ec45f", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.704225352112676, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e3263688-e674-4896-9584-232a03738aef", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c44dba16-ad21-4b85-a9f7-345f0274adab", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "similarity_coefficient": 0.6944444444444444, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a29ca8d0-f6aa-4be6-b56b-989bfd183b90", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.5555555555555556, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "361ab3c0-1a6b-4f2a-b54a-8811c94f8aa3", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "similarity_coefficient": 0.41935483870967744, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "265d772f-013f-483c-8db7-d64667051f9b", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.7377049180327869, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d87a906c-debf-4b04-a665-688dd72f366c", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.7538461538461538, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "54eef571-934a-4db3-a274-142c58341484", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.37410071942446044, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9d1e9458-1607-49fc-b49a-8c23ba31b2e2", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.6125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e53c9f86-50f3-4154-afe6-c85ed5d501f1", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.7, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a76c07e3-373f-45f2-b51a-47e4aba4d4f2", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9c9de42f-d3b1-4f79-8544-c650c467e287", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "41935ac2-a897-4984-bb59-dc703b2c5905", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.3865546218487395, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e3547c85-f891-4b41-ae7b-19a11dfbacb3", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.4067796610169492, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d6638642-db97-49f9-aba1-314ca03174c8", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.6301369863013698, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6e7d2d91-45be-4b26-8e32-8a59147a2e89", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.3132530120481928, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bad396ed-be31-4ad5-ac0c-76796e101fdd", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.3076923076923077, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0044dab1-e3a2-4dfa-ad40-cfa6bc2827cc", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "33c9bcde-076b-467a-8783-02f39f19c5c0", "similarity_coefficient": 0.620253164556962, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "90bed366-4b21-466b-a43d-3fe2cea0120d", "source": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "target": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "similarity_coefficient": 0.48514851485148514, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f0de6e0a-433d-4408-b4f8-001818fde4d8", "source": "c7dbd9ae-6d51-4c74-9b24-d8cdf56d9381", "target": "2c6012fd-f497-423b-9ab1-8cfc5154f253", "similarity_coefficient": 0.6796116504854369, "overlap_size": 70, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "720435fc-07cb-4fc0-a690-4706da7272d2", "source": "c7dbd9ae-6d51-4c74-9b24-d8cdf56d9381", "target": "fb423d6b-dc3c-400a-8cb4-cfcf5aea4500", "similarity_coefficient": 0.26217228464419473, "overlap_size": 70, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ca9e6e95-bde0-4e14-9f11-862e8f4e19d1", "source": "c7dbd9ae-6d51-4c74-9b24-d8cdf56d9381", "target": "535a82d8-5c10-4a4c-9a20-09541374ee3b", "similarity_coefficient": 0.8974358974358975, "overlap_size": 70, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "372a96c1-e1d7-4d78-a431-354e3f584f43", "source": "c7dbd9ae-6d51-4c74-9b24-d8cdf56d9381", "target": "581ea671-bfdc-4c0a-b5e7-c11440d05a47", "similarity_coefficient": 0.312, "overlap_size": 39, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4563514a-96bf-489d-9fd3-6d9854a56de8", "source": "c7dbd9ae-6d51-4c74-9b24-d8cdf56d9381", "target": "623310f5-8d59-43b9-bdde-0d30cde60c99", "similarity_coefficient": 0.3783783783783784, "overlap_size": 70, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1754cbfb-6c1f-4295-96e0-9f376493ad64", "source": "c7dbd9ae-6d51-4c74-9b24-d8cdf56d9381", "target": "f127255f-9ab3-4cc9-80ae-d598f0105419", "similarity_coefficient": 0.3804347826086957, "overlap_size": 70, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0ac0288f-20ba-4f06-adc9-7381ad3f09de", "source": "c7dbd9ae-6d51-4c74-9b24-d8cdf56d9381", "target": "7f22376c-1798-4ebf-811f-e11344296c4f", "similarity_coefficient": 0.5974025974025974, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9838d414-d3d1-4ab5-81a1-fbb26420e92f", "source": "c7dbd9ae-6d51-4c74-9b24-d8cdf56d9381", "target": "4a6bc1f4-6c66-4489-8a8a-d7d17ac1a228", "similarity_coefficient": 0.5691056910569106, "overlap_size": 70, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5d365d0a-250c-480a-8bf0-39b0eff6ad1b", "source": "c7dbd9ae-6d51-4c74-9b24-d8cdf56d9381", "target": "b81d8d56-c41a-4508-a1ca-9590780583eb", "similarity_coefficient": 0.6571428571428571, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d8e3392a-2179-4b24-a956-af61b5fc152f", "source": "c7dbd9ae-6d51-4c74-9b24-d8cdf56d9381", "target": "0a98c49d-d1c0-46f9-9b40-1998ea452849", "similarity_coefficient": 0.2661596958174905, "overlap_size": 70, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0cce5a52-039c-4ef4-b49b-88e40f73260e", "source": "c7dbd9ae-6d51-4c74-9b24-d8cdf56d9381", "target": "4a0b61b9-4b5f-4854-888c-d24f120dc0e4", "similarity_coefficient": 0.2661596958174905, "overlap_size": 70, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e22715f0-9f44-4efe-91a2-6ab889a7e5b0", "source": "5ef26419-f8a7-4e53-b7b3-370680eab6a1", "target": "cadeeaf0-7b4c-48d6-a533-1357e319b01e", "similarity_coefficient": 0.42790697674418604, "overlap_size": 92, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ae5fb350-5525-4f1d-8ac6-578c4fb82544", "source": "5ef26419-f8a7-4e53-b7b3-370680eab6a1", "target": "4c84babd-5ce0-42f8-899d-dfad984c96fb", "similarity_coefficient": 0.7452830188679245, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "10a56c18-a88e-44f5-82aa-5f19995bb6d5", "source": "5ef26419-f8a7-4e53-b7b3-370680eab6a1", "target": "5ed4b3b0-0529-42a4-97a6-871542f5bff7", "similarity_coefficient": 0.3344262295081967, "overlap_size": 102, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c7052843-8660-4bad-b4ef-8e74b4ed64d4", "source": "5ef26419-f8a7-4e53-b7b3-370680eab6a1", "target": "58322784-4ff6-48e8-bb62-0bbc20a06950", "similarity_coefficient": 0.49411764705882355, "overlap_size": 84, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3de23c2a-1551-44ab-bd03-17fe556130c2", "source": "b107dfa6-f840-4dc9-8701-8fc1fb6b2c13", "target": "44e853cd-d32d-428d-873d-0278f45a1c18", "similarity_coefficient": 0.3546511627906977, "overlap_size": 183, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "92bf9417-b298-4aaf-bdac-fc4bb2062c0c", "source": "b107dfa6-f840-4dc9-8701-8fc1fb6b2c13", "target": "69c4b4b7-c9e4-478e-997c-da4e05c3d7ee", "similarity_coefficient": 0.3855633802816901, "overlap_size": 219, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f2b6d727-badf-411f-9865-90dde07d5504", "source": "b107dfa6-f840-4dc9-8701-8fc1fb6b2c13", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.25387596899224807, "overlap_size": 131, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "62e53661-f35e-4b55-911b-dd043f4f5062", "source": "b107dfa6-f840-4dc9-8701-8fc1fb6b2c13", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.2868217054263566, "overlap_size": 148, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3968c782-0e1b-4966-b3cd-567744373920", "source": "b107dfa6-f840-4dc9-8701-8fc1fb6b2c13", "target": "f8a5f9ff-fb62-48b4-ad61-1e4f868172cb", "similarity_coefficient": 0.43992248062015504, "overlap_size": 227, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9c639c98-5f38-453a-8918-90e80c09515e", "source": "b107dfa6-f840-4dc9-8701-8fc1fb6b2c13", "target": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "similarity_coefficient": 0.3507751937984496, "overlap_size": 181, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7e5a3c0d-a648-4ac3-80de-8983405aeb58", "source": "b107dfa6-f840-4dc9-8701-8fc1fb6b2c13", "target": "c3828778-9b35-432c-b1e9-9483a29fb80e", "similarity_coefficient": 0.7248062015503876, "overlap_size": 374, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ad1e16a6-bbdd-47da-a806-85b9215ad994", "source": "b107dfa6-f840-4dc9-8701-8fc1fb6b2c13", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.2953667953667954, "overlap_size": 153, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4e7c4d5d-2caf-48d4-9df3-4420225a3b07", "source": "b107dfa6-f840-4dc9-8701-8fc1fb6b2c13", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.32558139534883723, "overlap_size": 168, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a7bb92bf-6e7d-4bf9-bdcf-65a1701b65d6", "source": "b107dfa6-f840-4dc9-8701-8fc1fb6b2c13", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.31589147286821706, "overlap_size": 163, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "16f79f62-b3d4-4a75-b023-94eacf8c8d82", "source": "b107dfa6-f840-4dc9-8701-8fc1fb6b2c13", "target": "b67a97a8-54b7-4306-be3a-d6518f864d8d", "similarity_coefficient": 0.4418604651162791, "overlap_size": 228, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4f2da51b-8852-4194-a26b-2aea93adaa59", "source": "4fcd8d93-c20b-43b3-8e69-7496c92a8df3", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.5416666666666666, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e895ab29-3fee-429c-9ca4-07bfeb70fa84", "source": "4fcd8d93-c20b-43b3-8e69-7496c92a8df3", "target": "b67a97a8-54b7-4306-be3a-d6518f864d8d", "similarity_coefficient": 0.3991228070175439, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fed3df64-f8e2-454b-8384-4210805774c3", "source": "4fcd8d93-c20b-43b3-8e69-7496c92a8df3", "target": "f708fea1-8d4a-401f-84f2-32434b3fb235", "similarity_coefficient": 0.8425925925925926, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a8857905-0c56-4909-8bfa-aea0c9679353", "source": "4fcd8d93-c20b-43b3-8e69-7496c92a8df3", "target": "e2ee1e2d-b55a-4a19-9214-7f5058461161", "similarity_coefficient": 1, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e8ec470a-a41c-4a51-a680-6df8753e0e5b", "source": "4fcd8d93-c20b-43b3-8e69-7496c92a8df3", "target": "ba75adcc-af38-421e-9edc-c60a2aff0de9", "similarity_coefficient": 0.875, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0abd413e-370e-4545-a2f7-6663c731260b", "source": "4fcd8d93-c20b-43b3-8e69-7496c92a8df3", "target": "e9595f2e-7b95-4f92-b829-ff02d867fe3d", "similarity_coefficient": 0.9578947368421052, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8758e089-728d-4bd6-99e6-2bd138163b95", "source": "4fcd8d93-c20b-43b3-8e69-7496c92a8df3", "target": "f8a5f9ff-fb62-48b4-ad61-1e4f868172cb", "similarity_coefficient": 0.4008810572687225, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7aeeaaec-da24-4b39-9de8-6f6462ecc182", "source": "4fcd8d93-c20b-43b3-8e69-7496c92a8df3", "target": "69c4b4b7-c9e4-478e-997c-da4e05c3d7ee", "similarity_coefficient": 0.33579335793357934, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "32dc4370-6f29-4089-967e-66fa14473198", "source": "45a27bfb-4f1f-4536-a478-b438139fafd5", "target": "2cd596f4-3461-429e-a594-a3fa378f86eb", "similarity_coefficient": 0.6666666666666666, "overlap_size": 126, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "729fd1b9-07eb-4c3a-8d84-08ec7a70ab8c", "source": "45a27bfb-4f1f-4536-a478-b438139fafd5", "target": "11b58f65-f23a-44f1-b169-1c79f44b4519", "similarity_coefficient": 0.7325581395348837, "overlap_size": 126, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "94bcf553-3c91-4e1e-81fc-ece6cfa53ff5", "source": "45a27bfb-4f1f-4536-a478-b438139fafd5", "target": "97242c8d-dd1c-43d3-b795-c8546fb204aa", "similarity_coefficient": 0.2985781990521327, "overlap_size": 126, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cf59af79-cd64-4fbe-9ec7-757c94a73357", "source": "45a27bfb-4f1f-4536-a478-b438139fafd5", "target": "763e4196-95c7-47ff-8ba9-808223cde662", "similarity_coefficient": 0.802547770700637, "overlap_size": 126, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0a81c925-e94a-4e5d-8cbd-4bf44746d186", "source": "45a27bfb-4f1f-4536-a478-b438139fafd5", "target": "3cb8e7fa-0f27-4e5f-bb64-9c35329d928f", "similarity_coefficient": 0.38650306748466257, "overlap_size": 126, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b0451ba0-4c89-4025-a888-e3bdae467436", "source": "45a27bfb-4f1f-4536-a478-b438139fafd5", "target": "40582abf-bf91-41a1-942a-f17b2aee8b72", "similarity_coefficient": 0.9197080291970803, "overlap_size": 126, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "45cff5a8-1df8-4d06-999c-dcc5052128a3", "source": "45a27bfb-4f1f-4536-a478-b438139fafd5", "target": "049142b9-19dd-4af1-896a-e365acc9098d", "similarity_coefficient": 0.2825112107623318, "overlap_size": 126, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "71c1d78a-8403-4a09-8235-b9afab25a838", "source": "952816d8-b779-4e6e-bb9b-a4dce9e781dc", "target": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "similarity_coefficient": 0.36538461538461536, "overlap_size": 57, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aa3e3f5c-28a8-4200-8c18-4caa150d832b", "source": "952816d8-b779-4e6e-bb9b-a4dce9e781dc", "target": "92149791-7576-4773-aa06-34bfdb2171b0", "similarity_coefficient": 0.6273291925465838, "overlap_size": 101, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "14abb9b2-ad2e-4256-8887-2de904651e6f", "source": "952816d8-b779-4e6e-bb9b-a4dce9e781dc", "target": "512b43b3-5e2c-43d0-9270-d49211ee8e20", "similarity_coefficient": 0.7844827586206896, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8fe9826a-c8ca-4baf-aa93-e6a2db55dab3", "source": "952816d8-b779-4e6e-bb9b-a4dce9e781dc", "target": "a830d5f3-4b66-4adb-94d3-fa5742eae724", "similarity_coefficient": 0.7844827586206896, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4617096c-18c0-4db1-8444-d460c760cba2", "source": "952816d8-b779-4e6e-bb9b-a4dce9e781dc", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.3005181347150259, "overlap_size": 58, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3e600870-845d-45bf-9bb0-c32be2306bb0", "source": "952816d8-b779-4e6e-bb9b-a4dce9e781dc", "target": "cf5b2c91-a143-44f5-a248-9063b55a2ada", "similarity_coefficient": 0.9523809523809523, "overlap_size": 100, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e8937b18-eb07-4740-99d4-4a9484af9fb3", "source": "952816d8-b779-4e6e-bb9b-a4dce9e781dc", "target": "2fbf60f2-400f-46dd-9a0c-75ecf6cf3bf5", "similarity_coefficient": 0.9900990099009901, "overlap_size": 100, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "71a9b152-91a3-4e12-bd76-e0358ce8b9af", "source": "50a01d24-188a-423c-a85c-bf70dca751ff", "target": "b3558ad6-a679-4992-9cd8-2db2c4b9e773", "similarity_coefficient": 0.8629032258064516, "overlap_size": 107, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a86e5ca2-ae66-45a3-8d05-0b1152ac8a2f", "source": "ad525c41-f059-4514-991f-8380b2a9fd96", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.8454106280193237, "overlap_size": 175, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9d451f1f-7a46-4867-9483-6c68b9461523", "source": "ad525c41-f059-4514-991f-8380b2a9fd96", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.2560386473429952, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5cbcad16-4bf5-4790-8e7c-5f54c667fc8f", "source": "ad525c41-f059-4514-991f-8380b2a9fd96", "target": "38ac2a4d-29ef-4182-a817-cc41e9972cc8", "similarity_coefficient": 0.2753623188405797, "overlap_size": 57, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d596af2e-8009-4c84-b5a8-a7150c992991", "source": "b8d7130a-86b7-4114-aba2-a385bac0857e", "target": "26ab1a9f-2702-4763-b141-ed0c39f9b80d", "similarity_coefficient": 0.6666666666666666, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5e96bc0f-fc30-4d22-bcce-a79fdf8f54f8", "source": "b8d7130a-86b7-4114-aba2-a385bac0857e", "target": "2618dd66-76a4-4e39-88d8-08bcb65b75f1", "similarity_coefficient": 0.4714285714285714, "overlap_size": 33, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "05cee2b4-5305-4d91-9fab-d253844ab763", "source": "b8d7130a-86b7-4114-aba2-a385bac0857e", "target": "46c8c456-5def-4584-9833-812316564cc4", "similarity_coefficient": 0.45, "overlap_size": 27, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4ffaa612-e2e1-4e1a-ba95-993e2819fe1c", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "similarity_coefficient": 0.5724137931034483, "overlap_size": 83, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "36137598-2b9a-47c7-948a-34a32c9d9ab6", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "b401cb25-9626-4bf4-9dc9-a102b829189a", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4c082b00-a422-4be8-90cf-5a8cc28ea3fa", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9e865905-e10f-47bc-932b-e160ca7429e1", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "similarity_coefficient": 0.3064516129032258, "overlap_size": 38, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b1643b4e-1712-4f8b-94d7-d2b5c0587705", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dd5df658-f505-4a72-845a-0ddf3f7a5e0e", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a8650724-8b19-46a4-b2d6-c7db93300e7b", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "94cbd9ad-23fe-497f-805d-df781f6ea3fd", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "00a508ad-9b2b-40cd-a855-b6c0f2cf2957", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "e317d95d-7299-42da-9e5d-030e294dbe75", "similarity_coefficient": 0.2983606557377049, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "87db06d8-2bbe-4ac3-b43c-b419331e34c3", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.8, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "de3a0319-1e29-4b38-946a-6c8088c47da1", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "e4cabb52-87fa-46a7-b178-1e258678e921", "similarity_coefficient": 0.6496815286624203, "overlap_size": 102, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "542018de-cf70-4fd5-a320-449ad94526da", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "06b04167-e75f-4e28-a638-09a1c1ee3b22", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "similarity_coefficient": 0.4055299539170507, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "41e2bab4-0679-4b32-9fb7-4b6588ae5260", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "similarity_coefficient": 0.7428571428571429, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f3f16742-c4f0-4351-998d-a4b906673088", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "similarity_coefficient": 0.7338709677419355, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "347cc1ba-323e-4bb3-a234-d136fda9e83f", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "da3485e5-29ab-4cf4-b311-92b0a3fcc952", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.6946564885496184, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ce1e85b7-3ab9-41b9-afbc-4771c4bc4909", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "similarity_coefficient": 0.3089430894308943, "overlap_size": 38, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7043632a-3e54-484b-90c5-729c442c383f", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "576f548a-b609-4565-a6b5-7ce98a277dd2", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9465e29a-d06a-45ab-a97c-25ee2081b5d9", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "20bc5e9b-51b7-4f77-b1ab-804e1044c2e2", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9b1585c2-6515-4e01-94e8-872ab5a23393", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "similarity_coefficient": 0.8148148148148148, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fab8af91-66f2-4e38-9826-b65ae1e90ffd", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.6717557251908397, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6fb260dc-8cfd-4ac9-839d-f3205d9fd593", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c064b80f-25bc-48ba-9004-20e0977f7173", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "similarity_coefficient": 0.8461538461538461, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "568bae03-72ee-47e8-965c-fd49f9485ae8", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fb6281f1-2e6b-4e58-9252-ce3b82eda447", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.5945945945945946, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "da01f91c-bc61-4169-ab46-d1d840ae9b48", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.4756756756756757, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0d3c65f0-efb9-4a65-b9fd-08fc48b40b1d", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "acff711d-f303-40f3-a153-7e5f6ed94531", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.676923076923077, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "01173a61-29f4-4c97-b986-9cc69beb3bc2", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "e15e930f-af85-4402-99a6-a57c9368b631", "similarity_coefficient": 0.6946564885496184, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "630a2149-17ed-4661-ad47-8a95c70ee18a", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6d28361c-ff65-4eae-b724-4d5c104dcc5a", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dd295f19-313d-42ff-917d-3c08f4389a66", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "similarity_coefficient": 0.8073394495412844, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ec8659ff-5442-457a-9261-d17d2ff319a3", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "similarity_coefficient": 0.8148148148148148, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4ada2a7c-b06e-4b96-b669-7ba9c2dba93e", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "951c22d8-dfc2-47e8-8a7d-8360a997eede", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.3275862068965517, "overlap_size": 38, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0792e35f-5a0a-4639-9c53-984fdf0c31d8", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.4467005076142132, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8f88c289-f0f2-4808-a0a6-eecdf365a6d2", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.8461538461538461, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bd62afee-239f-40ed-b122-19c19e4a7402", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.6929133858267716, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "88ae03b2-122e-43aa-8852-24c63970724e", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "868604a2-809b-43bf-97f8-7d956608ccae", "similarity_coefficient": 0.676923076923077, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "797cdb6a-7d03-49eb-b8df-c5e288a8be9d", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.3089430894308943, "overlap_size": 38, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "54e2ae2f-435a-4570-bbd6-2c7179eb252c", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "fba653df-f3e4-45e3-bf71-739986879ea9", "similarity_coefficient": 0.33653846153846156, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1a5b49cc-cc9a-40f3-83d3-1301d9ff5451", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "similarity_coefficient": 0.6875, "overlap_size": 77, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0aee5013-c286-4b41-8d7d-9ad4e1c2e1de", "source": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "target": "374d76b1-e4d5-4516-b105-410699dc6050", "similarity_coefficient": 0.29914529914529914, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b271b8d9-52fd-4f15-a277-a9592fc215a5", "source": "1d6c39cb-5c28-4140-a4e0-0ebe92e64bbd", "target": "316b7b8d-bd3d-45b0-a76e-dba459acda4b", "similarity_coefficient": 0.5087719298245614, "overlap_size": 29, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1751a1b6-af93-4bc4-b17d-ca6633bdd507", "source": "1d6c39cb-5c28-4140-a4e0-0ebe92e64bbd", "target": "7ebb3165-c992-459a-8ea3-6d05d0afb24a", "similarity_coefficient": 0.9354838709677419, "overlap_size": 29, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a1e3db99-0861-474c-a281-5104741025fc", "source": "1d6c39cb-5c28-4140-a4e0-0ebe92e64bbd", "target": "3b58d9c9-4804-4257-abc8-a35cae44f9ec", "similarity_coefficient": 0.9354838709677419, "overlap_size": 29, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2f132c7b-7b99-447c-a55c-1cb829ed0b1b", "source": "62bfb3a3-bddc-4afb-abdd-b4c049d03d35", "target": "3fb8ea43-ca23-42d4-a532-1a73ceb20e98", "similarity_coefficient": 0.3728813559322034, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "302cdc61-6449-498a-8607-fbfb9fafbbd6", "source": "62bfb3a3-bddc-4afb-abdd-b4c049d03d35", "target": "f3046fed-8d0a-4992-a2a5-74f967156d06", "similarity_coefficient": 0.38596491228070173, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "15fdcde0-90fa-4ce9-820a-bdf0544ead07", "source": "091f1214-97f7-456a-b701-2dd44d937d24", "target": "ff74cec2-2157-4a6f-818c-220e440cef80", "similarity_coefficient": 0.5769230769230769, "overlap_size": 90, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4e7dcba9-2ec1-4534-bd11-99e63df2e91c", "source": "091f1214-97f7-456a-b701-2dd44d937d24", "target": "e59b742f-7a21-4a50-8472-3500f07b5395", "similarity_coefficient": 0.5231788079470199, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6ba2eff9-4dc4-4d03-975b-59841e8bcd2a", "source": "091f1214-97f7-456a-b701-2dd44d937d24", "target": "26a34b5a-7453-430a-9bb8-98e6a9254169", "similarity_coefficient": 0.8666666666666667, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5e8a1a80-5d97-48b1-980a-403355776a90", "source": "091f1214-97f7-456a-b701-2dd44d937d24", "target": "f7507f96-9e93-4751-bd0a-5d2409a9f865", "similarity_coefficient": 0.5033112582781457, "overlap_size": 76, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6646525b-72a9-4b92-8a77-51e9a3f90430", "source": "091f1214-97f7-456a-b701-2dd44d937d24", "target": "a9922200-db44-4066-b545-f8b586b276b0", "similarity_coefficient": 0.8333333333333334, "overlap_size": 75, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f3d4e0da-cfed-41c5-aa73-735507811790", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.35714285714285715, "overlap_size": 65, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "453980cd-a16e-42b4-826b-158af565216f", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "similarity_coefficient": 0.4336283185840708, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "debee201-b93e-42b6-ad7d-7d60bbb821e4", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "91430c79-8880-4e93-854b-374e31c68c58", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.49, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "25f35809-3588-44f6-80bc-d60d25ccf43b", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.4298245614035088, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "543f2fba-b287-40a2-87e5-840146fa13fd", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.4318181818181818, "overlap_size": 76, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a1c3ae32-f979-4866-8324-e6713a081ee2", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d6c86c8d-1d48-4e21-8e7e-a00d5db40fa7", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.5, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2156d6a4-3201-414b-a1ca-5988ab9b1ab5", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f53a1431-33e4-45fc-926f-44baeda76b15", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "40de5568-403e-491f-86ad-cd25ed5ca2b7", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.2564102564102564, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a4b16d36-c381-4d4c-9074-041d32f7f598", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.4368932038834951, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a1f15df8-9434-4c23-8275-32bd60d074d4", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.362962962962963, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "febd79a2-4812-4c7d-8950-f6b1760d4c8e", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.3684210526315789, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e528dc27-8f49-4b7c-80ee-99de397dd75d", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "33c9bcde-076b-467a-8783-02f39f19c5c0", "similarity_coefficient": 0.4049586776859504, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7f758b20-fd23-45d8-81e9-e3576e20e7de", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.4298245614035088, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3e8fcdaa-6d44-41cd-9a7f-47e080f48077", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.4672897196261682, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "560dcb51-a5e2-4914-a76d-a76cedaf7d74", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c4e5b08f-fdb7-45a1-b342-b75924a74638", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "similarity_coefficient": 0.3161290322580645, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "56b3d9b1-0fbb-4414-8056-de2035801029", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "a5b4ea87-c775-4190-8251-dddda84aad0d", "similarity_coefficient": 0.34265734265734266, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2212c270-54a0-4f00-9f0b-c63bb37355b8", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.37404580152671757, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "52fe4133-4b74-4d4f-b93f-2801dbb37774", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "99a4d835-bd67-4852-b75a-a610ae3c3e48", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.44660194174757284, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b6435aff-54b4-421a-ac01-508aa9bcb3c1", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.49, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f76a3ab8-ee33-4ef5-9fd7-44a1c6b1d19f", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.4375, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9d82cd1b-321a-4305-8cc6-f691d966e563", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "similarity_coefficient": 0.35, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1a6f86a6-0bdb-4905-b4b3-03a3f5105c3d", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.273224043715847, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0c14278d-9d5c-4c00-942e-4cd63498cf73", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.3888888888888889, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "50744b96-659d-4412-949a-7378be6d1fdf", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.49, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "16881462-39cc-40a7-b971-9c8848988d7a", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.33793103448275863, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a0b64208-5d45-4411-bbc0-4e4dd151fca3", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.2832369942196532, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d8b91e52-d1fb-420e-af85-483574058f65", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "similarity_coefficient": 0.392, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2d691344-b753-4ea6-a4d8-fd62c2bd1999", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.4, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2988d4c3-5b7c-4ab1-8b44-a0388a7ccb82", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.25, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6f4e3bb9-58cf-4369-938c-fce1b36ebe92", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "similarity_coefficient": 0.4090909090909091, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d32c9a95-1451-4883-8e56-a9ed3dab0ae2", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.4117647058823529, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c08b0d25-07f8-4a37-982d-640de88b153c", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "6c02baf6-4938-42c0-b332-71998a685040", "similarity_coefficient": 0.3438914027149321, "overlap_size": 76, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "be12c5ed-17da-4840-9971-84f6f8fd14fd", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "similarity_coefficient": 0.4224137931034483, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "73cb903e-0174-494c-a6be-4049df485c05", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.5447761194029851, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "35850283-cce5-4029-8564-4d62b380dd98", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.4144144144144144, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "60309943-3192-45cf-a409-d0de1ec61c18", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.48514851485148514, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a4a68063-cb4a-4333-a55f-64de14b8ef41", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "b4472d3f-7b1d-4c57-b47a-bffedc4aba98", "similarity_coefficient": 0.29310344827586204, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "86b7df09-a64e-465d-b6e4-5e3192f6ded5", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "similarity_coefficient": 0.35251798561151076, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fbc0f12c-9873-40e1-b2f8-92c1e1369042", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.3656716417910448, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d534a09d-11cb-4d33-86f0-2be9ec38ea64", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.3484848484848485, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e52d3d95-c2c7-4727-94b6-c3a0128edefa", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.44761904761904764, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "20430213-cb47-4e68-92ed-6067d2df4964", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "similarity_coefficient": 0.3150684931506849, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8e1e4819-f500-43cb-adac-508858fa76bd", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.3828125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "18d19560-c761-4bb9-8b19-08bd249fa929", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.423728813559322, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6ab25225-b9c5-48f5-b367-aa76089dd4ad", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.49, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "181a2a60-3d93-4132-b00b-d6d083d4ac3b", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "similarity_coefficient": 0.37404580152671757, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0d862b0a-4d9f-466a-b97c-bb01d4285a9e", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d33c150c-3a41-4341-91e8-2168d79da90a", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "77008256-18e9-431f-b237-da299ade046b", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "similarity_coefficient": 0.30625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6fea9959-c6bf-4a85-89ce-319e30efc0d4", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.3333333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "188bc76b-027e-4dc5-a527-655f11018a3c", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.3271604938271605, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "60d81ddb-d055-40ab-9375-35dbf9d216a2", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b64df4b3-8f9f-48b5-b47e-5ca48ff3410e", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0d220af4-c447-4ac3-a404-b11e6a7de621", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.35766423357664234, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "39d36355-d784-4412-9aed-f5dd6b9ca410", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.3387096774193548, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "948884e3-af1d-4edb-b50f-731644f22374", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2b6e15bc-4c25-495e-b288-a33915a407fd", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.4423076923076923, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "af18689d-6135-4317-ac73-d42036c2b547", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.3787878787878788, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f09b7fa5-84f2-4fca-bc91-029053b17331", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0338dd77-d636-45c7-8419-e12c517f2522", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.32450331125827814, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d2421765-dd83-427e-b62c-8befd67d2840", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.49, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "00ede325-dcc4-4a9f-b9b9-e2c13e8f6c04", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "similarity_coefficient": 0.28994082840236685, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3dc74964-d9eb-4562-8527-85e561c61705", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.362962962962963, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c7fe3d97-7c7a-4002-846f-74b81630cbad", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "abc55764-aa1d-4c3e-80f6-66927dde5c6a", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.4016393442622951, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f5e7fe9b-bdac-4f36-b6d8-dc10fad3d4a0", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.2737430167597765, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "557a54a4-8380-4fde-9898-227150439d8b", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.25654450261780104, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "79ef267f-b087-474f-aac6-fdb17c342e8f", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "cbfeadab-ca27-40a7-8780-4bec2a9b1964", "similarity_coefficient": 0.3393665158371041, "overlap_size": 75, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "34121b62-bd20-4ae4-b2f9-c4f7be902bc7", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.4224137931034483, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b45d624d-08c6-4716-a179-9990f1443924", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.391304347826087, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bed509bb-f18b-4d02-b85d-f72058c469d1", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "341f894e-1461-4011-8b23-be258a6c9d84", "similarity_coefficient": 0.4298245614035088, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "51a9cf0c-2a23-4018-838a-be273d87130c", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.28488372093023256, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d9947d49-26ab-45a6-93b5-a1f30e81c4f7", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "81e6859f-e954-4334-a2ac-b813db1936fa", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.48514851485148514, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f312ddef-d2e0-4cb2-a0c4-38683395c781", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.4049586776859504, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3434aebb-3dd6-40c2-bf85-8115e611a117", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "676b53c3-25ca-4a55-b1e2-d3317556f7fe", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.48344370860927155, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bd311c5d-1150-4629-9d64-1e58a5cc87f1", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "a0a1943b-60df-40e6-8e54-0852991dd573", "similarity_coefficient": 0.28160919540229884, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "70a27152-55e4-4b51-b876-49342293fd76", "source": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.4411764705882353, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "968bf40a-cb5c-4900-b1a6-d87867dd1de9", "source": "a0942c7c-3240-4f5e-8f88-d2e519f5314e", "target": "24b8c3ee-e039-4bd6-b2e9-0c0fd1be178e", "similarity_coefficient": 0.6888888888888889, "overlap_size": 310, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4589eb51-5699-4b6c-a240-c91cedbf59ff", "source": "a0942c7c-3240-4f5e-8f88-d2e519f5314e", "target": "4e7d0420-e081-42c4-a98b-1d820ef50cb2", "similarity_coefficient": 0.5961538461538461, "overlap_size": 310, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c52859b2-95c5-4e25-bdec-c8b8154f6f72", "source": "e7cab3f9-f8ee-4a12-9694-bb728cda0ca7", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.32751091703056767, "overlap_size": 150, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f951b1de-1d27-41c3-81a7-6eb18abaa2ad", "source": "069cb5a6-40b6-4158-9982-7974eca2835a", "target": "f86403d8-4d02-492c-ad8b-13e10dae4101", "similarity_coefficient": 0.5546875, "overlap_size": 71, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "53678227-0ce6-497b-9c0e-ec36b04c7f7e", "source": "069cb5a6-40b6-4158-9982-7974eca2835a", "target": "24d0e101-0864-4553-a93d-335729308753", "similarity_coefficient": 0.4375, "overlap_size": 56, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c564dcd8-4923-4c90-ab23-6ff7ff335fd6", "source": "069cb5a6-40b6-4158-9982-7974eca2835a", "target": "f63f3d19-3430-449b-95e1-efa9cce6e635", "similarity_coefficient": 0.5161290322580645, "overlap_size": 128, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6708f195-b91a-4af2-a4cb-42c6b5f7d08c", "source": "529ebb5f-f6b7-40a7-a304-1c4dbdbe67a5", "target": "bb5d1ff8-03b6-48df-aabf-0076e0114177", "similarity_coefficient": 0.2694300518134715, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b681093e-00b0-4897-bd21-d28e4985c6e2", "source": "529ebb5f-f6b7-40a7-a304-1c4dbdbe67a5", "target": "6b221283-c77c-42da-84e1-a571f4b878ff", "similarity_coefficient": 0.2520491803278688, "overlap_size": 123, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a3db7a3f-1d7e-4e41-9bdf-99c701fa6830", "source": "529ebb5f-f6b7-40a7-a304-1c4dbdbe67a5", "target": "65022cea-7483-4689-8ce5-ee987795bedc", "similarity_coefficient": 0.28635014836795253, "overlap_size": 193, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c7885ea1-6fb3-4ce2-9fcf-1e722dbfbba2", "source": "529ebb5f-f6b7-40a7-a304-1c4dbdbe67a5", "target": "7436d07c-5519-4cba-b1e6-9911da634955", "similarity_coefficient": 0.6348684210526315, "overlap_size": 193, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "88035c57-eb8a-4592-b591-9bc66bf8594c", "source": "529ebb5f-f6b7-40a7-a304-1c4dbdbe67a5", "target": "9addc916-184e-474a-b9ed-6a77433bcfb5", "similarity_coefficient": 0.3316151202749141, "overlap_size": 193, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "70953176-8642-42b2-93ca-8d2bc6c94e6f", "source": "8b06d6c4-6034-48fd-944d-05ed7b8a625a", "target": "bf3c5db6-d54a-4e27-a6b0-be788ae9b904", "similarity_coefficient": 0.4253246753246753, "overlap_size": 131, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2f34c6eb-02c4-47f7-8c24-5a4477977c6f", "source": "8b06d6c4-6034-48fd-944d-05ed7b8a625a", "target": "5915b056-e646-42a3-80e7-2deef8a98dec", "similarity_coefficient": 0.2688927943760984, "overlap_size": 153, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5e2f7185-0754-40da-9a1c-b4bda30b3149", "source": "8b06d6c4-6034-48fd-944d-05ed7b8a625a", "target": "1a39797c-1df7-4aec-8ab0-ce066a56e9ec", "similarity_coefficient": 0.583969465648855, "overlap_size": 153, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d918bc8e-fd14-4877-bc18-ace2d1f8d136", "source": "8b06d6c4-6034-48fd-944d-05ed7b8a625a", "target": "70cf6d48-a46e-4604-ad85-12eceacf95b4", "similarity_coefficient": 0.8496732026143791, "overlap_size": 130, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "90d4ff55-5686-4bd1-a921-a53f3f614c7e", "source": "8b06d6c4-6034-48fd-944d-05ed7b8a625a", "target": "17f32632-a94e-49a6-841e-f4a3c079d439", "similarity_coefficient": 0.2679738562091503, "overlap_size": 41, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bdbaab90-e284-486f-92f5-49ec72d93974", "source": "8b06d6c4-6034-48fd-944d-05ed7b8a625a", "target": "536cea90-ddae-4dd4-a936-9846245ac987", "similarity_coefficient": 0.40522875816993464, "overlap_size": 62, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e0c74919-fddc-46ec-9e39-1cecc5d24722", "source": "8b06d6c4-6034-48fd-944d-05ed7b8a625a", "target": "9cb17d00-b403-4965-949e-03ef64b0c9a3", "similarity_coefficient": 0.5368421052631579, "overlap_size": 153, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "45b4e517-3483-4469-be0a-f19e236e469a", "source": "8b06d6c4-6034-48fd-944d-05ed7b8a625a", "target": "c59b9ba0-0b63-4930-b1cb-3e784ac046af", "similarity_coefficient": 0.4526627218934911, "overlap_size": 153, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e7714cd0-e3a5-42fa-8789-55102f57dff5", "source": "8b06d6c4-6034-48fd-944d-05ed7b8a625a", "target": "71374259-9d97-4671-bcbe-b272ae09ad95", "similarity_coefficient": 0.32210526315789473, "overlap_size": 153, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7d641b62-62ae-46d6-b4c0-3b3a7ca4ab77", "source": "8b06d6c4-6034-48fd-944d-05ed7b8a625a", "target": "df713d36-9b29-4758-98a5-5b6f138c3de6", "similarity_coefficient": 0.4146341463414634, "overlap_size": 153, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c4c5c411-b4f9-4879-809c-2e9a24c0a881", "source": "887c2f8f-497a-4aaf-b8d0-9b6ed162afd8", "target": "461f3447-3b67-49c7-a062-dbccf20a8c20", "similarity_coefficient": 0.6931818181818182, "overlap_size": 61, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "203dcad2-5894-49d8-95cd-9254486a73db", "source": "887c2f8f-497a-4aaf-b8d0-9b6ed162afd8", "target": "67655508-8724-4bec-ae04-0a0ccc497030", "similarity_coefficient": 0.45323741007194246, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "08f13a53-a858-4d77-9dd1-3d172e33add2", "source": "887c2f8f-497a-4aaf-b8d0-9b6ed162afd8", "target": "0ab74ab8-46f6-40b9-84a3-f901312bfdd1", "similarity_coefficient": 0.5210084033613446, "overlap_size": 62, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6d066149-4b7b-416d-802e-7cda61b51f70", "source": "887c2f8f-497a-4aaf-b8d0-9b6ed162afd8", "target": "22c84cad-f57f-4718-9687-42041195fe68", "similarity_coefficient": 0.6111111111111112, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "67de3bc7-4bae-4ab7-86d7-e677ec25475b", "source": "887c2f8f-497a-4aaf-b8d0-9b6ed162afd8", "target": "93a3ee13-43c0-40a1-a31e-90710a1e40e9", "similarity_coefficient": 0.375, "overlap_size": 33, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6a526093-ed0d-4000-868f-a6c3c0cad882", "source": "887c2f8f-497a-4aaf-b8d0-9b6ed162afd8", "target": "ab7810f0-02db-4b8b-8f86-59cea7883939", "similarity_coefficient": 0.5986394557823129, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6a9f068e-3793-46da-b44c-756069a287bf", "source": "887c2f8f-497a-4aaf-b8d0-9b6ed162afd8", "target": "f43c9ccd-e7e0-4f61-add5-23a61fcdc9ce", "similarity_coefficient": 0.3076923076923077, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8b1342a9-3a6b-4ab8-aa59-7e40c3b6eb9c", "source": "887c2f8f-497a-4aaf-b8d0-9b6ed162afd8", "target": "e6bb490e-f542-4313-ba97-b4a675132dc9", "similarity_coefficient": 0.34057971014492755, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e56e0767-bb97-4d35-aca4-9920a627809c", "source": "887c2f8f-497a-4aaf-b8d0-9b6ed162afd8", "target": "1d8cf59f-ab95-4b0c-a43a-70d1ddaa5686", "similarity_coefficient": 0.5432098765432098, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "45b4ac53-6285-4d6d-a1a9-60954ba8b533", "source": "887c2f8f-497a-4aaf-b8d0-9b6ed162afd8", "target": "a71b38d5-6589-4c2c-a24c-7181a1100649", "similarity_coefficient": 0.2571428571428571, "overlap_size": 27, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "20559097-d2c5-4927-ad7a-095c29fbdeae", "source": "887c2f8f-497a-4aaf-b8d0-9b6ed162afd8", "target": "85446e1b-b536-4525-bd76-a5d08e5812d6", "similarity_coefficient": 0.25225225225225223, "overlap_size": 28, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "98f14a51-ce32-4462-b66e-d129653cafd4", "source": "887c2f8f-497a-4aaf-b8d0-9b6ed162afd8", "target": "5f7c7a64-b1de-45c0-ad59-42836ec07604", "similarity_coefficient": 0.49206349206349204, "overlap_size": 62, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d2794748-adec-44e3-8a87-74bde5b14211", "source": "887c2f8f-497a-4aaf-b8d0-9b6ed162afd8", "target": "a70316a5-8829-494c-b5fd-ac0c30d48383", "similarity_coefficient": 0.5206611570247934, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1357dc2c-c3e2-46ce-b8f1-6c2e02caa8e8", "source": "887c2f8f-497a-4aaf-b8d0-9b6ed162afd8", "target": "f019a822-f9ed-4f22-85a7-e4f4633d7ac3", "similarity_coefficient": 0.2553191489361702, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "db98b0d4-a2ce-4470-b19f-b1f96c49698f", "source": "887c2f8f-497a-4aaf-b8d0-9b6ed162afd8", "target": "1464dde0-7b27-424c-9e99-43dc975d4ea7", "similarity_coefficient": 0.4782608695652174, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3c4578e6-e4f8-4e16-a228-93cc1804a0e6", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "similarity_coefficient": 0.4462809917355372, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7443bb30-926b-4231-ba53-38a6c8eaffdf", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.32515337423312884, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "517d4413-73f0-472a-b620-618ee0792c3b", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.2631578947368421, "overlap_size": 25, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "34972dd6-57d5-476c-a07a-6be8fdb12d45", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.5263157894736842, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7ad474b7-c366-4d77-bec6-fa1ca9115f39", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.4214876033057851, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4f48ed72-ab91-4b16-b529-21e88963bf18", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.4049586776859504, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1aafe4a6-119d-419a-accd-4f2076cb0c94", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.4818181818181818, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d946f32c-6654-4b12-a347-314fd871e0d8", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b9b74672-1e75-4278-8bee-8d4f5def6c25", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "similarity_coefficient": 0.45871559633027525, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ec805e6a-d2e7-4d74-b70e-3b7886647b12", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "similarity_coefficient": 0.7603305785123967, "overlap_size": 92, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "deaf4db6-b029-47bb-a46b-b216d9f19b6f", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.5510204081632653, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e3d358cc-1078-461f-9d37-83dfbe58636d", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.6886792452830188, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "67c228ae-d4f4-482e-bb7f-a11462bfa307", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "a0a1943b-60df-40e6-8e54-0852991dd573", "similarity_coefficient": 0.30538922155688625, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "864d07ae-7815-4192-b04b-e97a3dcce69f", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ac893847-d51c-4fb6-ac66-41438d5eb759", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.3402061855670103, "overlap_size": 66, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9206705c-9922-4671-adb8-90e2773df06f", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "27524b5b-019b-4fc8-9521-45cea0fa56d8", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "341f894e-1461-4011-8b23-be258a6c9d84", "similarity_coefficient": 0.5192307692307693, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3ebea080-1d37-4116-a908-6d1309a98644", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.7010309278350515, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "009d526f-42e7-4b2c-84b1-0e0aebefebff", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "similarity_coefficient": 0.5, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b7970d03-8305-433b-abbf-1eb0f2cc22ab", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "77425072-4795-4d5b-a834-8ee39a24cd1e", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.35507246376811596, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "95895219-d005-48cb-94f8-db6c0765907f", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.7717391304347826, "overlap_size": 71, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c807c750-2218-4351-bad8-0de1e512b954", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "33992b03-9cbd-4d3a-8bff-4a3f478bd3db", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c8fea105-bc6e-4a29-899c-e23b87808186", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.5192307692307693, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "65f7cbda-f039-43a6-89a2-808c8d249332", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "similarity_coefficient": 0.51, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ff658176-ef0b-4b0a-9eca-1e59058a655f", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "similarity_coefficient": 0.5094339622641509, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cb826c89-436a-4b31-8147-1ff2f9c60705", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.5319148936170213, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b95e86bb-f81c-43de-89a2-d8a48126bbc1", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.3375796178343949, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e18daa6c-79ce-43e6-b366-3fc872526594", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fcdf46ae-b356-4cc0-8099-e4d9059d57ed", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.4117647058823529, "overlap_size": 70, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2186c9b7-4dd4-4c71-b6f6-cd4a11e02165", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "similarity_coefficient": 0.42857142857142855, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d4546bba-3026-429b-806a-8f13e77356db", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.5473684210526316, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0e441e1d-9beb-4983-92b7-88e11752ca60", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.26344086021505375, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c52ebc03-fd73-4a68-9fb9-d1edf0df4d8f", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.7128712871287128, "overlap_size": 72, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9254ab4a-2233-4326-9d43-4d96eefd1830", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.5050505050505051, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3f58d9b9-82e8-4efb-839e-944c8d56d04b", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.6886792452830188, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "caaba9d8-6006-4e27-99fe-a19c410d679e", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.49, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4e488b14-1a6a-476a-9122-0516b37a01c7", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "similarity_coefficient": 0.32666666666666666, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7cee82fc-3452-4063-a890-e5d0d34a99a0", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.36428571428571427, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "87cae9b6-ab9f-49d0-a01a-7b17baad3f58", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.3712121212121212, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "970cc546-6f1c-4672-82a7-9aae322bfd53", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.36363636363636365, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9b79d2b4-0e5e-48d2-a2bd-2526dd85f117", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.6938775510204082, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e603c6e4-af64-4efa-a1d3-afb28b1fe09a", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "similarity_coefficient": 0.362962962962963, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4dc2ef1b-2dc2-4068-9a83-c646b42dd45b", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.52, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a6373eca-9d72-4de4-9d44-442a686fcef8", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.3937007874015748, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e54987a1-0d6f-4d9a-9cd4-3e1a866d6da8", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.494949494949495, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dddebc3b-9277-400a-8f12-f4d6868e247b", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "562fd1bf-6781-4462-9e9c-dff8c7eb2efb", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.45081967213114754, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d3fe3fcf-4fc4-4f7a-8af7-488c46bc1874", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "similarity_coefficient": 0.25229357798165136, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b83914ec-a93a-4cc1-bc49-9ea39308b231", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.3795620437956204, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9e0cd346-9dbe-41cd-81c6-c17c51036d0e", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.5935483870967742, "overlap_size": 92, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ac01b7b4-f0e5-4335-b68b-7f132aa1e15f", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.2549019607843137, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "703d9544-ab74-43ca-b68c-37c72a8de986", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.5869565217391305, "overlap_size": 81, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1910eef3-0bfc-4356-9fe6-ae44724722e8", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "44e853cd-d32d-428d-873d-0278f45a1c18", "similarity_coefficient": 0.25, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "74f0d843-f602-44b8-b878-4fa546237bae", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "similarity_coefficient": 0.6732673267326733, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "30997f7e-33ae-494f-b144-98bd6845a0db", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.3151515151515151, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f9e99fc7-706e-4e33-99e6-6ef4ede9a62e", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "314b01a5-87f8-4421-8796-cf2371c75901", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.45751633986928103, "overlap_size": 70, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "70ee5147-bb84-4ffa-bb1e-97a90444534c", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.4639175257731959, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0801d367-e1a3-4cce-aced-5d648f3a1a56", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "similarity_coefficient": 0.5473684210526316, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fedd4126-e201-4e7a-82d3-548dd3e1edce", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "62652f82-6225-461c-8401-9b1eb5bf2c98", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.35294117647058826, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1e3afbe3-bcc7-41b5-97cf-edd3431f6055", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "69c4b4b7-c9e4-478e-997c-da4e05c3d7ee", "similarity_coefficient": 0.3057553956834532, "overlap_size": 85, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e4a2c138-d0f3-455c-8682-a79a7080c764", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.504950495049505, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "14e423fe-8ed1-40bb-b403-80601a3f8ec6", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.42276422764227645, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3ac1524f-3266-46b8-baa6-44a48d4f35a5", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.4375, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4b33a861-762c-4ca3-818f-eef73afa711a", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f9d7ad61-c49b-4eed-a546-9d2fa33726f4", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.6557377049180327, "overlap_size": 80, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1ad4ad34-df4e-41f5-b8b4-4ce9f4c1865c", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.7021276595744681, "overlap_size": 66, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "44cf72ef-10b0-48fc-963b-2c6c1c404932", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9343506e-2473-4e7d-8f63-54827c30f9d4", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "f8a5f9ff-fb62-48b4-ad61-1e4f868172cb", "similarity_coefficient": 0.2608695652173913, "overlap_size": 66, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "81906747-7363-4421-8441-c1965a64c4b9", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.3595505617977528, "overlap_size": 64, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c8df8234-9d61-4b18-9339-ef8f4760464c", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.45544554455445546, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "25d22c71-94f1-480c-b759-6539d7faa169", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "727afa35-fe54-4882-8f4b-286892967089", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.29545454545454547, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8974ee0e-4ebc-46b4-a7fb-1a8f8d5b9c05", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.2736842105263158, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "89554c5c-f5df-4900-9bdb-f1c700c4d15f", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.45918367346938777, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d73cecb4-7aa5-43d1-9dd0-e9b86ab72213", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "549beed3-7d46-4faf-acf2-4d0d3298d7e9", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "similarity_coefficient": 0.35, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7d9f1ddd-8b87-463c-ae59-445aa4cb16a2", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.4766355140186916, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3ea5484d-f465-4e30-9b15-cd47f04f1ed8", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "similarity_coefficient": 0.34210526315789475, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f8776dd7-0321-4ab9-95a6-49073744bf7a", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "a5b4ea87-c775-4190-8251-dddda84aad0d", "similarity_coefficient": 0.3262411347517731, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "11d065c7-9dc0-46c2-b03f-074f2686f10a", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "502f3d0e-30d3-47de-9d63-62a0d12acf6b", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "b67a97a8-54b7-4306-be3a-d6518f864d8d", "similarity_coefficient": 0.25984251968503935, "overlap_size": 66, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d1cfa077-74d6-4202-9b89-c97be1eaceb5", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "similarity_coefficient": 0.3656716417910448, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "46059b8b-261c-45ec-abe4-211c35cb6304", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "601d55f5-26b7-44b9-9785-bf0681b3ecfa", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "similarity_coefficient": 0.35507246376811596, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "782a778e-5caf-4a5f-9b24-5d93235b7b6b", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.5644171779141104, "overlap_size": 92, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ab5325d7-7a82-49e4-a447-5dd62c82751e", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.6956521739130435, "overlap_size": 64, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4ac82861-b522-471b-8094-279150d443a5", "source": "01e1e504-0eda-4928-a906-5a3796aa4b08", "target": "33c9bcde-076b-467a-8783-02f39f19c5c0", "similarity_coefficient": 0.7934782608695652, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "97245c18-b7ac-425f-b3c8-2c4e2e8148d2", "source": "338011f0-985e-411e-afc1-8c26f6d05c21", "target": "f63f3d19-3430-449b-95e1-efa9cce6e635", "similarity_coefficient": 0.3870967741935484, "overlap_size": 96, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6f2ffd28-2c3d-4324-97cc-71a1f400d9f4", "source": "de57a25a-a652-44c2-a797-e61c000fd4c1", "target": "1520902d-bab4-4f2a-8b21-1600ee8de4e3", "similarity_coefficient": 0.38304552590266877, "overlap_size": 244, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3456d129-a2a2-4ea6-ac0f-1704350c2ca1", "source": "de57a25a-a652-44c2-a797-e61c000fd4c1", "target": "7b557c97-ae99-4d68-8911-24a37bf4ee92", "similarity_coefficient": 0.32574031890660593, "overlap_size": 143, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0736f200-efe6-4fd7-9681-5ef6d474fe60", "source": "de57a25a-a652-44c2-a797-e61c000fd4c1", "target": "7110025e-838c-4eb3-a3b4-e50296f8d1d6", "similarity_coefficient": 0.7483221476510067, "overlap_size": 223, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7ac8fa09-a800-4856-bcaf-c3cf32392c14", "source": "de57a25a-a652-44c2-a797-e61c000fd4c1", "target": "8c583627-83a1-4324-af57-909f27ec93a5", "similarity_coefficient": 0.2968253968253968, "overlap_size": 187, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cceb6835-0e0d-40a0-9aa7-02f6c1637ca5", "source": "de57a25a-a652-44c2-a797-e61c000fd4c1", "target": "3fbb64b3-4512-41e7-8837-bc44bd025067", "similarity_coefficient": 0.47651006711409394, "overlap_size": 142, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9fe84742-d07e-4e27-9160-d1f98c54cca6", "source": "0ca4acf6-7af3-4da0-aa48-0e50fe7fdd75", "target": "b418104c-b2c5-4aac-b268-9ee80bb42582", "similarity_coefficient": 0.6434782608695652, "overlap_size": 222, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "10864d85-de76-42ec-a41d-b350e4cfe0a2", "source": "0ca4acf6-7af3-4da0-aa48-0e50fe7fdd75", "target": "9cb17d00-b403-4965-949e-03ef64b0c9a3", "similarity_coefficient": 0.2857142857142857, "overlap_size": 140, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "05ff3713-4e43-4e4f-a5da-d93e43ff92b0", "source": "0ca4acf6-7af3-4da0-aa48-0e50fe7fdd75", "target": "9181fb51-616b-4f2f-aef4-cf4f5ebc8835", "similarity_coefficient": 0.39420289855072466, "overlap_size": 136, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "63b9a6b3-a951-4991-ac4b-00f844761b07", "source": "0ca4acf6-7af3-4da0-aa48-0e50fe7fdd75", "target": "c59b9ba0-0b63-4930-b1cb-3e784ac046af", "similarity_coefficient": 0.7204030226700252, "overlap_size": 286, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "376e2248-cb36-46b8-81f0-34e8118e9401", "source": "0ca4acf6-7af3-4da0-aa48-0e50fe7fdd75", "target": "1a39797c-1df7-4aec-8ab0-ce066a56e9ec", "similarity_coefficient": 0.2942430703624733, "overlap_size": 138, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e2923e66-a31b-404c-a3f9-ea443dfc324f", "source": "0ca4acf6-7af3-4da0-aa48-0e50fe7fdd75", "target": "5915b056-e646-42a3-80e7-2deef8a98dec", "similarity_coefficient": 0.4694533762057878, "overlap_size": 292, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b18d03e2-8458-4e75-903f-2c9d453f1737", "source": "0ca4acf6-7af3-4da0-aa48-0e50fe7fdd75", "target": "70cf6d48-a46e-4604-ad85-12eceacf95b4", "similarity_coefficient": 0.37681159420289856, "overlap_size": 130, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1d2ee204-215f-4971-af60-d713e1dc2517", "source": "0ca4acf6-7af3-4da0-aa48-0e50fe7fdd75", "target": "bf3c5db6-d54a-4e27-a6b0-be788ae9b904", "similarity_coefficient": 0.8289855072463768, "overlap_size": 286, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4037f477-a964-4e25-883d-d3b42d2c1b16", "source": "0ca4acf6-7af3-4da0-aa48-0e50fe7fdd75", "target": "8b06d6c4-6034-48fd-944d-05ed7b8a625a", "similarity_coefficient": 0.3569482288828338, "overlap_size": 131, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bb12738a-5dfa-435e-afce-f2d6712042d5", "source": "0ca4acf6-7af3-4da0-aa48-0e50fe7fdd75", "target": "32436d28-1beb-496b-b8c1-c25ffb5d246b", "similarity_coefficient": 0.7188405797101449, "overlap_size": 248, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0bafd65e-1035-44cf-ba33-d5bd2386a7df", "source": "fb9a31df-5a36-4942-9b2e-5c6ded677d5a", "target": "9e3e86bf-2025-4b63-b74b-cb1efab9886e", "similarity_coefficient": 0.7727272727272727, "overlap_size": 85, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "663b5e83-26cd-4bb2-a18e-b5660ffe2f8d", "source": "fb9a31df-5a36-4942-9b2e-5c6ded677d5a", "target": "06d062e3-d596-43d5-95b5-8ac20e8a9da1", "similarity_coefficient": 0.5985915492957746, "overlap_size": 85, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ed1ebc10-bd3d-406e-a282-13dc8824a6e8", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2e42f122-dea2-4cba-9596-4180cb6c975f", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "67c6084d-35e4-48c6-ab9a-e52509349b2e", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "374d76b1-e4d5-4516-b105-410699dc6050", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d8f7b0ce-cd0f-473a-bd40-d84627a665e5", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "31385700-4d55-4c70-b382-c9489f5b13f1", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6820e621-1abe-4c65-9184-4b12910679f8", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2f8243ca-a08c-4615-982c-2fc7bbf86f94", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "19636bab-dedc-4742-8e00-491b1315a889", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9666a584-3fa3-4422-adc5-0ea0f3af98e2", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "fba653df-f3e4-45e3-bf71-739986879ea9", "similarity_coefficient": 0.36046511627906974, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e9e387f3-377f-4fbb-a92a-4bf60d162edd", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2d52acfa-eac7-4234-ad26-48b4f71fe624", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "868604a2-809b-43bf-97f8-7d956608ccae", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1512dc0a-4d1d-4b08-8ca9-257ab76f800c", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ff315aea-d2fe-4599-8064-c71e9b4343e5", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1583d56b-e294-43a8-8138-5e8deab41268", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5a1df747-1350-4b7a-9efb-e1589c9b9be7", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "46a99c13-ad0a-4618-a9e5-25d07c59b346", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "similarity_coefficient": 0.7956989247311828, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9f484eb8-57c8-4d21-be36-783f7c0a92b6", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7c95a606-ce89-492e-b034-c8a61bad4a7c", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "21178157-f04c-4f4d-8b76-25270e2cecb9", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "65d09704-1a0e-4c5a-80af-7fd00359eeb7", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3ce2ec40-1cbe-462e-bd50-68984de7f07e", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "053b195a-0ec3-4581-8175-26dc4d88b564", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "e15e930f-af85-4402-99a6-a57c9368b631", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e82d6777-e214-433d-bad1-fb63e6001373", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ea4c377f-e860-46a7-9702-534ee5c08894", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c4856180-169b-4653-8290-9b33e80aee50", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "e4cabb52-87fa-46a7-b178-1e258678e921", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fce6e680-8b21-4ee2-b9ec-580a5d1cdce8", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "21a59b03-2136-4cab-ab8d-71f455f467e1", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8fc64bae-9dce-43a6-b795-ac0172c17572", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "b401cb25-9626-4bf4-9dc9-a102b829189a", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "296d5734-20d4-46b4-bb57-8c1961e29df5", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "e317d95d-7299-42da-9e5d-030e294dbe75", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "07b9f2c9-ffed-4c15-b578-0e337333d6ef", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4bc4a2ce-2396-424d-8739-be5eed44a79f", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5fea183d-efe2-49db-8c9d-d080c05b442b", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e51f1873-035a-4a3d-981f-b03acd66f04c", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.6554621848739496, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "effc1b21-0c6c-4489-ae2e-68a90acc3058", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a4dd1b17-d564-4378-8432-6a66e62a55cf", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "daeef060-3321-4d09-bbd8-9df2841ed206", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "721184b8-7c3b-4265-8827-1ad9eee9e2c8", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.639344262295082, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cad3563b-f612-47ee-9f14-7e1c14a1bf7b", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e4e5bf5d-393a-4ddb-a18b-73e4b2d60e44", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b651c253-f964-4b9c-83a8-be9fa7b9d81e", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6526f5fa-a42d-4cb5-a0a7-93c5f717f3c9", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "af442434-8596-49b2-b477-7ef99885d318", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "635dcde9-7e14-4a1b-bb05-ce0b4e34787e", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "similarity_coefficient": 0.8125, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f529bbb8-5191-4a82-aabf-b0339e08ff06", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "similarity_coefficient": 0.6220472440944882, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1ef050a6-e894-48e0-baeb-55311f5f45de", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e06b5102-c090-4b1a-b8eb-59b5d233712d", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9d2126c8-af29-48eb-92df-3847fafb1931", "source": "13b2a0b7-01d4-456c-8127-b83526231171", "target": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2514d1e3-0e90-4a05-91d8-631703d5d195", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "similarity_coefficient": 0.5052631578947369, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8782e32e-6755-4c1f-a5dc-686d49856bc0", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.4153846153846154, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "15c1ac23-4d2d-4bf7-aaf9-349932dcb85e", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.7936507936507936, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "54a2f8d9-8435-4f33-9a5a-86be421f27fe", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.5909090909090909, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6fd5d664-1e20-4401-8214-7996ab1c489f", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.375, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "393d8723-eba7-4c2f-add4-73de29019953", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "01e1e504-0eda-4928-a906-5a3796aa4b08", "similarity_coefficient": 0.52, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b168998a-4551-45d6-8d3d-77c0feb37f51", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.6794871794871795, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "43994fff-ab26-4bc5-85ee-6b9a02623ff9", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1d3efdf3-9e8e-4210-9034-850eb25d329a", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "similarity_coefficient": 0.40310077519379844, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b00852b0-63e9-4213-85f1-62b2823cd67c", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "similarity_coefficient": 0.6493506493506493, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "20b29ba6-ffdd-4342-8f37-04cbf2c8baf8", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "6c02baf6-4938-42c0-b332-71998a685040", "similarity_coefficient": 0.2560386473429952, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1c1da75f-3ec2-497f-9db1-395dc006c9de", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cfa5818e-ae53-4e12-aff8-2be0c3fc21c0", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.5473684210526316, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "412fe405-4bb1-4bf6-925f-4917e8b37842", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "edaec21b-20f4-4a9a-89bb-2757fcb16d4f", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.550561797752809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "424382c5-0f5f-4ec9-88f8-c9db5ea66fe6", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "a0a1943b-60df-40e6-8e54-0852991dd573", "similarity_coefficient": 0.3880597014925373, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d377d46b-93ec-4882-bccc-369abe267c83", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.8360655737704918, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4085dc01-0d46-424b-83e9-b8157df23c68", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.7538461538461538, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "869a850b-1306-4c21-9e4d-4f60cdd590a7", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.620253164556962, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0d3690ff-b9c9-49bf-8033-f516e58d7ed0", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.2737430167597765, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b6f79ee7-1ab0-451b-9ff4-eb09a3176391", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "similarity_coefficient": 0.7424242424242424, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "281c918f-8ba6-4b2f-9799-f1538f78e00f", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.6582278481012658, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "adcdbb46-137e-41d5-9f58-36f4adce1407", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "341f894e-1461-4011-8b23-be258a6c9d84", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b9f85fde-9975-4989-b336-f58fcecc7469", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3a235be9-f98b-46a2-b7b5-2cc33c5da7a5", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.8064516129032258, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a486f075-26ab-4e7c-88e0-a35e0f8ab1c9", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e4b93253-3662-4779-8b89-05176e8f9524", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "similarity_coefficient": 0.620253164556962, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ac889230-1f88-498c-9a91-d23b2fc04e70", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.43548387096774194, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "36099695-239b-49cc-a55a-6eda92e72680", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "similarity_coefficient": 0.287292817679558, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b122c357-d5fd-4511-9807-c488709cbc5f", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.48598130841121495, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9f7932e6-7ae4-44a4-b9b2-5758ec0a75a4", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.8360655737704918, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7f16d580-5c1d-4436-83da-f945bb8500e8", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.27624309392265195, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0d7c9dfa-5161-4836-80ff-7bdf2c6483a2", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "similarity_coefficient": 0.7761194029850746, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ce2be5fa-ad4b-44d6-b4c4-fb276049d823", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.765625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f6dd3f13-1f4b-45fa-9b7a-efd97f634215", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.3, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d4709fcc-f5cb-49f4-a4b6-9f95bdd3180d", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "similarity_coefficient": 0.6164383561643836, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c4bea313-d70f-4018-95e3-a94354191187", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.6666666666666666, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1d50f446-3bc1-4fce-9cf6-a52b10e8b00c", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e0ece7c4-f730-4515-8e76-7ea95fa5c04b", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.746268656716418, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b5261a70-3158-4093-bc0a-7ab7e42b572e", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5842696629213483, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "718e7dda-be0a-4f37-b78a-8cf35187b5dd", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.3181818181818182, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bd2bdf9a-df76-4e3a-ace2-ac823c9898b5", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.2937062937062937, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5a9e1ca9-c805-4ac2-bf54-0c304522b3fd", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.8253968253968254, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "184a03a2-6d24-4688-a6f0-aef04c249407", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "170215b3-5ccf-4b09-836e-3745b696c5a2", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.5473684210526316, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c9418fb7-f961-4088-bfe9-0ec2019681ee", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.46846846846846846, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bc77e206-5463-476b-8382-8e42f9e7382e", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "similarity_coefficient": 0.4152542372881356, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "42d8db20-0edb-426d-8749-e9ba0d775d11", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.5360824742268041, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "181a5c55-7baf-4f4a-9ee0-b216c7a09f51", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8099c395-a5c0-4017-b947-4a15df794d2e", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.9047619047619048, "overlap_size": 57, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5b37a54c-4554-4492-a176-97f612eae584", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.5760869565217391, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5de037e5-bded-4544-ba8d-3ac5df5918cf", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "similarity_coefficient": 0.8253968253968254, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e4497afd-c70c-4505-84da-5a0d53f77fd1", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "47480572-e5ca-4498-a5ab-7019521071d8", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "150e7828-ce91-4fa9-8de7-3bae0c1f7346", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.4948453608247423, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f320ffb3-291d-4899-b5fa-6d5d335c0ff1", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.49523809523809526, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "40ab395b-c10b-4015-9647-713c5c706a1a", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.31901840490797545, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7b5b00dd-6158-4fed-b01a-18d70d69fa88", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.3023255813953488, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0d5d8af9-25d3-47ac-8e45-896ba5459f08", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.39097744360902253, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "09910ac4-ecc7-4d3d-8543-57b5e1f7fcc6", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "44e853cd-d32d-428d-873d-0278f45a1c18", "similarity_coefficient": 0.2857142857142857, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b9587488-1fe2-4ef4-bb2f-2f3087bb2a0f", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6dddbb79-d611-44fa-a9db-55f2f2601861", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.6923076923076923, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b6fe93db-3a28-4ff8-974e-2933c5852029", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.3356643356643357, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fc76f04a-7c30-4166-942f-9788a5997f03", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.765625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c624be01-97a9-46c3-bcf3-b3fd77b39c8f", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.3262411347517731, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "53f48abb-7339-4660-9208-2c1a03446dae", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5453c9b5-ee54-4f48-952d-1afaaacbf7bd", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.7647058823529411, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6aac3c85-9dd0-4aad-8e27-984854e5c6bd", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.4827586206896552, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "671d303e-334c-4f56-ba4d-862fc44ee4b7", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.26344086021505375, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3731fc37-c827-41f1-baec-7aa2ee131b5a", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.625, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "105b5ea7-0ec6-4095-b004-0c93d93a8258", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.3709677419354839, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9ea765fa-6068-4aba-9d4f-4d4087116766", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.6125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a8105347-9f65-494d-8e30-e5aa9f55227e", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eaf127a2-b67d-48f5-bac1-38b77fb97b92", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f4c2112b-25a5-4234-b341-57e1014e1e71", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.4411764705882353, "overlap_size": 60, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2589c88a-f7c4-42d6-9339-00860eb038b0", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.6666666666666666, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f4f3f384-5e70-4f62-af2c-668d5f6c5866", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.30434782608695654, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3d016f50-4f73-4fd5-877f-3a7c15f2cfa4", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.7, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0467ecde-8aa9-420e-8021-3926cbe525fb", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "similarity_coefficient": 0.2887700534759358, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fc5cbee1-c47d-4e15-b8e1-f7aa0aa37530", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.8032786885245902, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f689084c-8b2c-4b2f-b2ea-7b6eb2a735ec", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.6818181818181818, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0fff0bc7-b61f-4d31-9948-976ed9450840", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.3375796178343949, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9986abaa-d6b1-4188-b9b8-c05adcb090ba", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.6578947368421053, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "69eacfcc-7576-46d3-b283-297a2fdb5d6d", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "125c753e-4cb4-46dd-b606-bf44303c6f4a", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cf2bebaa-0989-4bb4-8ab3-e290e22ded85", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "similarity_coefficient": 0.44537815126050423, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5016e724-10e8-475a-9d16-d04722c8ab2d", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a09bff7b-951f-4a9a-bda1-a9ccec8ca47f", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.5897435897435898, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "94b78e7d-2ab8-4b17-9a90-bfd99ca9e193", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.2891566265060241, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e6488b89-f6ac-4ecd-80e1-b2987cf1fdef", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.532608695652174, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "40b7162b-edf7-43cc-ae0b-1a9990d7ff75", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9bc04f0b-05a7-411b-b1b6-451fc138882f", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "a5b4ea87-c775-4190-8251-dddda84aad0d", "similarity_coefficient": 0.42201834862385323, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "55b7eb29-0058-49f2-a3cf-2c07dab08658", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "similarity_coefficient": 0.49038461538461536, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "de6c0054-833a-410d-b8ee-3a43b7cc015b", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.31176470588235294, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "25ed1789-a0d7-4737-8cfe-0dfb25d6ed91", "source": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "target": "33c9bcde-076b-467a-8783-02f39f19c5c0", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c19b8390-4a6f-42a9-85e9-e1343ebfddff", "source": "06b80be2-e2a4-4a12-ab43-c71d4b004d4f", "target": "9cb17d00-b403-4965-949e-03ef64b0c9a3", "similarity_coefficient": 0.6294536817102138, "overlap_size": 265, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b95ae554-ef6c-4b3c-ac14-f8655f8a8d1b", "source": "06b80be2-e2a4-4a12-ab43-c71d4b004d4f", "target": "d2dd6367-2a41-4ac8-af45-50fe5a97d220", "similarity_coefficient": 0.5976154992548435, "overlap_size": 401, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aa3a8595-fffa-47b1-b9ff-39a84b4cfa43", "source": "06b80be2-e2a4-4a12-ab43-c71d4b004d4f", "target": "71374259-9d97-4671-bcbe-b272ae09ad95", "similarity_coefficient": 0.44554455445544555, "overlap_size": 270, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "93d5c674-8a40-4c0a-bad4-c65d84282adf", "source": "06b80be2-e2a4-4a12-ab43-c71d4b004d4f", "target": "304b3755-2434-4a6f-b5b2-2df6c7309f05", "similarity_coefficient": 0.2673107890499195, "overlap_size": 166, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1e28a3e0-38a0-4d73-a4af-156f7c66fc8c", "source": "06b80be2-e2a4-4a12-ab43-c71d4b004d4f", "target": "70cf6d48-a46e-4604-ad85-12eceacf95b4", "similarity_coefficient": 0.32418952618453867, "overlap_size": 130, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a1da1582-eeae-4697-8360-fcf743e00cb9", "source": "06b80be2-e2a4-4a12-ab43-c71d4b004d4f", "target": "1a39797c-1df7-4aec-8ab0-ce066a56e9ec", "similarity_coefficient": 0.6533665835411472, "overlap_size": 262, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6bb25aa7-c2ae-4440-b5fb-bcd9d7f83d62", "source": "06b80be2-e2a4-4a12-ab43-c71d4b004d4f", "target": "c59b9ba0-0b63-4930-b1cb-3e784ac046af", "similarity_coefficient": 0.27854671280276816, "overlap_size": 161, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7d34b97f-a4e2-4a64-badb-7c3ecc9b5459", "source": "06b80be2-e2a4-4a12-ab43-c71d4b004d4f", "target": "8b06d6c4-6034-48fd-944d-05ed7b8a625a", "similarity_coefficient": 0.38154613466334164, "overlap_size": 153, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cd65839e-123e-4c1e-9fe2-e522ff7e3b93", "source": "06b80be2-e2a4-4a12-ab43-c71d4b004d4f", "target": "5915b056-e646-42a3-80e7-2deef8a98dec", "similarity_coefficient": 0.3936781609195402, "overlap_size": 274, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b0dee943-a0de-4ffd-b7c2-5f83ec36f2f9", "source": "06b80be2-e2a4-4a12-ab43-c71d4b004d4f", "target": "df713d36-9b29-4758-98a5-5b6f138c3de6", "similarity_coefficient": 0.5369261477045908, "overlap_size": 269, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a20f92fd-8ae1-45f4-b94b-047a68c8597b", "source": "06b80be2-e2a4-4a12-ab43-c71d4b004d4f", "target": "bf3c5db6-d54a-4e27-a6b0-be788ae9b904", "similarity_coefficient": 0.25136612021857924, "overlap_size": 138, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dec65dfc-2537-404b-b141-5b7ea364c5b8", "source": "7d40f5e4-1244-4933-baf2-73c0fca158ea", "target": "b04fa36f-a0b1-4875-b150-645a41433dec", "similarity_coefficient": 0.3, "overlap_size": 33, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "efbae9f1-f407-4789-bb5a-fdbbd7e95761", "source": "7d40f5e4-1244-4933-baf2-73c0fca158ea", "target": "0ca4acf6-7af3-4da0-aa48-0e50fe7fdd75", "similarity_coefficient": 0.3188405797101449, "overlap_size": 110, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5838bcb8-d890-4f15-92a9-ff1ea94008e4", "source": "7d40f5e4-1244-4933-baf2-73c0fca158ea", "target": "70cf6d48-a46e-4604-ad85-12eceacf95b4", "similarity_coefficient": 0.8461538461538461, "overlap_size": 110, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aed83f55-eada-4c3e-a53a-bcadca075f34", "source": "7d40f5e4-1244-4933-baf2-73c0fca158ea", "target": "df713d36-9b29-4758-98a5-5b6f138c3de6", "similarity_coefficient": 0.2981029810298103, "overlap_size": 110, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a471e9bd-d8fc-4efa-993b-f82a5d65a8f3", "source": "7d40f5e4-1244-4933-baf2-73c0fca158ea", "target": "8b06d6c4-6034-48fd-944d-05ed7b8a625a", "similarity_coefficient": 0.7189542483660131, "overlap_size": 110, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f81c1091-8c98-42f1-8d9f-19b02a2294ef", "source": "7d40f5e4-1244-4933-baf2-73c0fca158ea", "target": "06b80be2-e2a4-4a12-ab43-c71d4b004d4f", "similarity_coefficient": 0.2743142144638404, "overlap_size": 110, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e96ddc7c-ee71-4ed9-83d5-7e3cef0b1d28", "source": "7d40f5e4-1244-4933-baf2-73c0fca158ea", "target": "bf3c5db6-d54a-4e27-a6b0-be788ae9b904", "similarity_coefficient": 0.38461538461538464, "overlap_size": 110, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e626eccc-2615-403c-8849-b3d18afb2b2e", "source": "7d40f5e4-1244-4933-baf2-73c0fca158ea", "target": "1a39797c-1df7-4aec-8ab0-ce066a56e9ec", "similarity_coefficient": 0.4198473282442748, "overlap_size": 110, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a15ab671-2ba8-4f41-8873-cd4d710f2af1", "source": "7d40f5e4-1244-4933-baf2-73c0fca158ea", "target": "17f32632-a94e-49a6-841e-f4a3c079d439", "similarity_coefficient": 0.37272727272727274, "overlap_size": 41, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7ab5f062-6eda-46b5-b7f3-975f3d3ada54", "source": "7d40f5e4-1244-4933-baf2-73c0fca158ea", "target": "9cb17d00-b403-4965-949e-03ef64b0c9a3", "similarity_coefficient": 0.38596491228070173, "overlap_size": 110, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b0bc40e2-e088-4654-b9e8-0db0b238effb", "source": "7d40f5e4-1244-4933-baf2-73c0fca158ea", "target": "8cffca08-69ba-4a11-8650-725824ef2372", "similarity_coefficient": 0.2636363636363636, "overlap_size": 29, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eab3f6a2-e80a-4037-b9ab-690d1c268614", "source": "7d40f5e4-1244-4933-baf2-73c0fca158ea", "target": "c59b9ba0-0b63-4930-b1cb-3e784ac046af", "similarity_coefficient": 0.3254437869822485, "overlap_size": 110, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cc1170a0-5e55-4c9e-9f7f-1df454a4e189", "source": "7d40f5e4-1244-4933-baf2-73c0fca158ea", "target": "536cea90-ddae-4dd4-a936-9846245ac987", "similarity_coefficient": 0.3333333333333333, "overlap_size": 43, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "85d7e2b1-eba4-4f4e-89ac-f79add992046", "source": "18541f06-8d59-4bf6-ad61-5301bb1a768a", "target": "c59b9ba0-0b63-4930-b1cb-3e784ac046af", "similarity_coefficient": 0.2601880877742947, "overlap_size": 166, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4334ee8f-f381-4c5a-bc40-dbea28cbb482", "source": "18541f06-8d59-4bf6-ad61-5301bb1a768a", "target": "8b06d6c4-6034-48fd-944d-05ed7b8a625a", "similarity_coefficient": 0.3283261802575107, "overlap_size": 153, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2a179b83-bbdb-4663-be32-8ff8ffe96cd4", "source": "18541f06-8d59-4bf6-ad61-5301bb1a768a", "target": "1a39797c-1df7-4aec-8ab0-ce066a56e9ec", "similarity_coefficient": 0.5622317596566524, "overlap_size": 262, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9f4e10bb-6b1e-45c8-93d0-2ecb29fe14a7", "source": "18541f06-8d59-4bf6-ad61-5301bb1a768a", "target": "70cf6d48-a46e-4604-ad85-12eceacf95b4", "similarity_coefficient": 0.27896995708154504, "overlap_size": 130, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b9a0a9a2-b163-4a9f-85e8-c23dee94d5c6", "source": "18541f06-8d59-4bf6-ad61-5301bb1a768a", "target": "304b3755-2434-4a6f-b5b2-2df6c7309f05", "similarity_coefficient": 0.258493353028065, "overlap_size": 175, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0d46458d-dc38-4ad9-b2e5-03ae65f56def", "source": "18541f06-8d59-4bf6-ad61-5301bb1a768a", "target": "d2dd6367-2a41-4ac8-af45-50fe5a97d220", "similarity_coefficient": 0.6454413892908828, "overlap_size": 446, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "32f1cd72-2edc-4171-b224-c1a02ea0e7d5", "source": "18541f06-8d59-4bf6-ad61-5301bb1a768a", "target": "71374259-9d97-4671-bcbe-b272ae09ad95", "similarity_coefficient": 0.445468509984639, "overlap_size": 290, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1c240bb0-4c55-4c82-a64f-bf5ffe31abaa", "source": "18541f06-8d59-4bf6-ad61-5301bb1a768a", "target": "5915b056-e646-42a3-80e7-2deef8a98dec", "similarity_coefficient": 0.3967611336032389, "overlap_size": 294, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "303a681f-4c11-424e-8c3a-deabe0acbe54", "source": "18541f06-8d59-4bf6-ad61-5301bb1a768a", "target": "df713d36-9b29-4758-98a5-5b6f138c3de6", "similarity_coefficient": 0.5126811594202898, "overlap_size": 283, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "08997469-da28-4dd4-ae00-4ff0497f202e", "source": "18541f06-8d59-4bf6-ad61-5301bb1a768a", "target": "06b80be2-e2a4-4a12-ab43-c71d4b004d4f", "similarity_coefficient": 0.8605150214592274, "overlap_size": 401, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d3fed0dd-8ce0-40a7-ab75-d86d405e0688", "source": "18541f06-8d59-4bf6-ad61-5301bb1a768a", "target": "9cb17d00-b403-4965-949e-03ef64b0c9a3", "similarity_coefficient": 0.6115879828326181, "overlap_size": 285, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1ae0b0b9-991a-4e9f-9a32-cae3040cc756", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "similarity_coefficient": 0.6493506493506493, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "00aedccb-160f-4288-a7e7-bd6112f6baad", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.2737430167597765, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6307049f-d888-4ee7-93f0-1402662598d8", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.8360655737704918, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ecfeafad-d8b5-4870-95f6-2c074afd1686", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.5360824742268041, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "37fc3275-0e40-4da7-8120-794b16197b16", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.8064516129032258, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "515c41ca-e04f-4d56-bd59-c172c3d20362", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "similarity_coefficient": 0.40310077519379844, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0ea946fd-07a8-46b7-a945-7478f86fcd05", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.7936507936507936, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "97c3d260-11d2-42fe-8c77-f8d0a60f588b", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.5473684210526316, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a0dde643-8a4c-44dc-a490-84eb69cb8651", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.7538461538461538, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "338a1b7d-ef68-4d10-aef1-20c9d70b81dd", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.4153846153846154, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "953c593f-e979-4ce0-aef2-24232c6d9e85", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b4363d82-d70a-4a12-8d4d-cdfb9977710b", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.46846846846846846, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2e8557e4-7422-4569-80ec-82e7ab605a66", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "similarity_coefficient": 0.7424242424242424, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e9bae37c-3996-4445-b620-540d875d9e2d", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b6b25641-7f65-4194-a4db-3c20c3674bc6", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "a5b4ea87-c775-4190-8251-dddda84aad0d", "similarity_coefficient": 0.42201834862385323, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2888dc2e-5045-42f8-a376-4f4723549b7e", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "341f894e-1461-4011-8b23-be258a6c9d84", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4a91f130-1514-4f18-8691-066a228a5904", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.3, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "81ecc8a0-ab1c-4ff1-90c3-9a463ab845f2", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.746268656716418, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8a9527ff-60bf-452d-afa8-10367b8d233a", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "similarity_coefficient": 0.44537815126050423, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a3742050-8035-436a-859a-e89c5a5aae7e", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.620253164556962, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "af20444b-302f-448d-96a7-94bfb5fc5321", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.375, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b6cd3cd5-b24a-4a4f-bcf3-d74731bec43a", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.5909090909090909, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6b8c0e8d-9378-4327-b8da-ffdc6a45b5e6", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "similarity_coefficient": 0.287292817679558, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "06a3c0c6-267d-42f2-a861-0a2fce8d3a9a", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.6578947368421053, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b827cb62-d0f6-4f69-b32f-757e66b5f614", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "similarity_coefficient": 0.5052631578947369, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d5c13bbd-cd62-4a5a-90aa-688033103cf1", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "similarity_coefficient": 0.7761194029850746, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "53f4c43c-227d-4d43-b351-1bc6290c4ab7", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0b315183-a972-435b-9414-b607246cebeb", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.7, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3e1c2872-f8ae-43d2-b55c-cc57fd7f8488", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.6818181818181818, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9b11dbec-9680-4c4b-95c3-4cbf16aa0cfe", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.6794871794871795, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b9b105ea-e60a-4355-a2fd-79c7e6ec3803", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.2937062937062937, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ae765f0f-efcb-4c03-b6e6-26bc9117e177", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "similarity_coefficient": 0.6164383561643836, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0e0dca69-068c-40db-b06f-92823e7c0b5f", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.3262411347517731, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "284340ed-19ba-4d6b-8d9b-245ddd257aac", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "a0a1943b-60df-40e6-8e54-0852991dd573", "similarity_coefficient": 0.3880597014925373, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bd8fb437-3008-4d1b-b6e2-3a14f5b621f5", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d0567bb6-2628-498d-8382-3f0e68d939dd", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2f770f50-27cc-468c-bec5-73feace9a240", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.3023255813953488, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "89808c7c-9842-42fc-9aad-1f453a23e604", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.8253968253968254, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "688f2d97-6c79-4d1b-837e-9b6e1f4911a3", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "67a50da8-9b03-4de4-9ef3-00d78dbb2bec", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.43548387096774194, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a06fbe0f-16cb-4560-9858-cfef67640a6b", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "similarity_coefficient": 0.4152542372881356, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "719f7fb7-2ab4-470c-b358-412590ee86fc", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.6582278481012658, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7f2bcba6-aca3-4f05-b452-9c3ed0ae5cd1", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.48598130841121495, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e4c211db-77c2-49b1-b9d1-7d25fc0b8c80", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e0786877-a009-4dbb-bb69-eca29863d22e", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.27624309392265195, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "58a21bc0-9cf0-4782-ab82-5d4ee7b65ceb", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "similarity_coefficient": 0.9672131147540983, "overlap_size": 59, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f18b3f98-80d2-4289-964f-a19e2b0ab49f", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.5473684210526316, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "65adf09e-1261-44c2-b53b-15e4d9c7c8fc", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "01e1e504-0eda-4928-a906-5a3796aa4b08", "similarity_coefficient": 0.52, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "32fd5ba1-cb8d-4a22-bd46-fa22a3796e6b", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "similarity_coefficient": 0.620253164556962, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "26d74982-312c-4c9e-901f-48dcbf37d2a4", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.6666666666666666, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8770e3e5-414c-45a6-a73b-be0ecdf67bfd", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.3181818181818182, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "89233baf-2667-4816-9c7d-5d7e45b9bcc8", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.625, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4335fa38-f8e9-452f-bed0-43e1fda14f6a", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.4827586206896552, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "043e81e8-bb2b-49c9-933d-21cbccff874a", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.7647058823529411, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fd4b61ec-1274-4def-8d18-7d7181d627d7", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "similarity_coefficient": 0.8253968253968254, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2c16b92a-816a-4551-acf4-32ae47abaa91", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.765625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "74406a58-cdac-40b1-a20e-01b9db12b049", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a146cc49-83fe-4910-a186-e633a95c9044", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f2046893-65f2-409c-9a7e-9bb33c1de698", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.6923076923076923, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0bcb0aac-21f9-41da-9374-86bddf909792", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "709389cc-1a72-4da9-b38e-583d40ee5775", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "44e853cd-d32d-428d-873d-0278f45a1c18", "similarity_coefficient": 0.2857142857142857, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ca172aae-e3ae-4a2d-923b-73faa159eb37", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.26344086021505375, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "826678c3-f25b-43e7-b4a8-7c98c4f27186", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.6666666666666666, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "96725124-5813-4e96-8a23-fc8f5f059224", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.3356643356643357, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a7812c5f-e84d-40a4-afd9-a0323abd3748", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.31901840490797545, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d93dd747-0b9c-4e04-9773-5dffaca9666e", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5842696629213483, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c9ef6861-1353-42c4-a136-dbb1ff32fae1", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.8360655737704918, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7803e370-b280-47eb-9b5f-360ccb4527f3", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.9047619047619048, "overlap_size": 57, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "785a4e69-8e1d-4d01-824d-1d459b1de227", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4acb0f88-4b9d-402e-981d-8bfee441fff2", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.765625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "82d3ad31-7e7f-4fea-8270-a71c6fc14119", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.4948453608247423, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4179b3c2-b1c0-4b75-9cea-dda3b3f7ecd1", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "similarity_coefficient": 0.2887700534759358, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3362f80e-a898-49c7-a3dd-0e60830c3490", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fd6b0179-0665-4b97-a955-241ffc7173f0", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.5760869565217391, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "48421de7-20a8-49db-a322-e544800b7285", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.31176470588235294, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ecab5300-0413-4552-8ca7-8878fa00c067", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.30434782608695654, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "78977936-5624-40fc-8c77-1a87e8bde012", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.5897435897435898, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1281059d-a2a0-4b45-b5bc-4fae3d87ea1a", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b6dbf218-f326-4530-94bf-92e9cbbf7fae", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.3709677419354839, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d6318ed4-34ee-4ed0-815a-7f565f49ab5d", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fdf9465a-6293-4e59-bae4-b8730fe4b56d", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "31dbe7b8-c010-4364-a939-edd2bffc9778", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.39097744360902253, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "19637e73-4b19-4a3f-ae87-53c011fedb7a", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "similarity_coefficient": 0.49038461538461536, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "be711bb4-cd4c-4820-a64e-5c48901b5f74", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.532608695652174, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ca957756-3c32-41d7-9bff-41d0881da206", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.4411764705882353, "overlap_size": 60, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ed23204a-fa25-4bbc-a591-4353b8da56de", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "33c9bcde-076b-467a-8783-02f39f19c5c0", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5456c73e-d3f2-4d47-a47b-270f89f61a8f", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.2891566265060241, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cacbe964-f322-46df-ac34-d9ff84dc18db", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1874a2d7-7d31-4379-abc2-8d64070774e5", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.550561797752809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "50df24bc-812d-4ce3-86d7-17116feaaea9", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.6125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "17374b92-b65f-4e90-970f-5a4a46e119c5", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "6c02baf6-4938-42c0-b332-71998a685040", "similarity_coefficient": 0.2560386473429952, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f35b7e37-1ca8-4375-a05b-08240beef1b1", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.49523809523809526, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "edc93bab-455d-433d-b695-0c999847b9fd", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5068bf41-a0df-4dd1-9f38-c966cc30481c", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.8032786885245902, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5a831231-0f4f-4f97-9338-6f75bdfb5553", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.3375796178343949, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a28b7931-3b70-4631-8280-5cec64888dcb", "source": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "94e974c8-ff68-48ee-8b08-56f03093ee31", "source": "337793ee-c6bc-42bd-b62a-2adb13713155", "target": "171e0e5b-ee37-4508-a139-85ff67a866f3", "similarity_coefficient": 0.6415094339622641, "overlap_size": 136, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "de527153-daec-4c80-a9e9-89a5441f8e24", "source": "337793ee-c6bc-42bd-b62a-2adb13713155", "target": "72911cb8-04f8-4a6d-95a9-845ffe95d894", "similarity_coefficient": 0.27205882352941174, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e56ed69d-d1df-4a2b-987c-8909749840fb", "source": "337793ee-c6bc-42bd-b62a-2adb13713155", "target": "3fbb64b3-4512-41e7-8837-bc44bd025067", "similarity_coefficient": 0.27522935779816515, "overlap_size": 60, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "17d9288c-ff33-473f-9945-53bb9879122b", "source": "337793ee-c6bc-42bd-b62a-2adb13713155", "target": "7b557c97-ae99-4d68-8911-24a37bf4ee92", "similarity_coefficient": 0.4788732394366197, "overlap_size": 136, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9d8e0b2d-d86e-454c-a162-d4f64829f1c4", "source": "337793ee-c6bc-42bd-b62a-2adb13713155", "target": "8c583627-83a1-4324-af57-909f27ec93a5", "similarity_coefficient": 0.26204238921001927, "overlap_size": 136, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5fdd9cda-e4aa-4e22-9663-55ad61b9c021", "source": "337793ee-c6bc-42bd-b62a-2adb13713155", "target": "f71cb3b6-c7e0-4a22-b9d5-e64e1c7579fd", "similarity_coefficient": 0.2653061224489796, "overlap_size": 39, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6cfa219a-035d-4caa-bf91-b96721a93998", "source": "337793ee-c6bc-42bd-b62a-2adb13713155", "target": "dbf87f13-0aa3-4a21-9ca8-e8f640b6202c", "similarity_coefficient": 0.2600732600732601, "overlap_size": 71, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7765af2a-5a81-4ed2-9e53-6c24c36da9e8", "source": "ae07b621-cb65-4d74-a495-4cd3d9ab8aff", "target": "4f7e7bef-c5c4-4859-885c-568a3116ce05", "similarity_coefficient": 0.3333333333333333, "overlap_size": 20, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "18ab2e43-0dba-43da-a9d3-28509edaa18f", "source": "ae07b621-cb65-4d74-a495-4cd3d9ab8aff", "target": "7d40f5e4-1244-4933-baf2-73c0fca158ea", "similarity_coefficient": 0.5454545454545454, "overlap_size": 60, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "155b6922-eef5-4e68-8259-bf8ed81dd40f", "source": "ae07b621-cb65-4d74-a495-4cd3d9ab8aff", "target": "70cf6d48-a46e-4604-ad85-12eceacf95b4", "similarity_coefficient": 0.46153846153846156, "overlap_size": 60, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fe447ff2-45ea-4538-9fe5-a9cf4a797860", "source": "ae07b621-cb65-4d74-a495-4cd3d9ab8aff", "target": "8b06d6c4-6034-48fd-944d-05ed7b8a625a", "similarity_coefficient": 0.39215686274509803, "overlap_size": 60, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a85bd3d2-a3bb-4a80-b5de-454868b06fed", "source": "2b6b3d64-d726-43fb-8ef0-22bc42e5d7c0", "target": "a8e8f341-9192-4eac-b75b-e18b4f03a169", "similarity_coefficient": 0.375, "overlap_size": 57, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "941f53b0-fe83-437e-96b8-919fdb6e5cbe", "source": "2b6b3d64-d726-43fb-8ef0-22bc42e5d7c0", "target": "2d3d7dae-3699-4787-9e13-578f174297f8", "similarity_coefficient": 0.8355263157894737, "overlap_size": 127, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3ccc19ec-11d6-4449-8611-f3114cc41c92", "source": "9d969202-1d89-4fb6-add4-5afea7648735", "target": "724b736d-2cbf-4933-8e53-32614c9a7d66", "similarity_coefficient": 0.7450980392156863, "overlap_size": 38, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3a271712-5bc9-46da-bbaa-267a8bd907b9", "source": "9d969202-1d89-4fb6-add4-5afea7648735", "target": "b1f8bc26-b379-46a2-9104-c4aee4fd545d", "similarity_coefficient": 0.7307692307692307, "overlap_size": 38, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f55a2f09-ca16-4ba5-a61a-4b9b73aaef20", "source": "9d969202-1d89-4fb6-add4-5afea7648735", "target": "14401d8b-b7f0-4300-a60a-80084c2e1e78", "similarity_coefficient": 0.6333333333333333, "overlap_size": 38, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0c3b99df-0321-4195-9454-7c2ba42c64c6", "source": "9d969202-1d89-4fb6-add4-5afea7648735", "target": "27c263f6-1142-4b92-a30c-6f73616e7568", "similarity_coefficient": 0.3488372093023256, "overlap_size": 30, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dd2f8e21-0160-4254-a312-ffff5a1685a2", "source": "429ae00a-7704-4bdb-b42a-d3c8b0e20579", "target": "d9692b57-896a-486f-b6a3-d4ac2d79566e", "similarity_coefficient": 0.9555555555555556, "overlap_size": 387, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6ccd8bf0-df07-443b-a04e-cf5f19cc4d4d", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.425, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9e3cbeba-30c6-45f4-87eb-a4d35a48d5ef", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.6024096385542169, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f34e5620-09ad-4869-afc4-43f0eb532aa8", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.4166666666666667, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "205e6a4c-ed67-4128-b22b-2a108089c1ec", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "similarity_coefficient": 0.948051948051948, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "23f577d7-2382-497f-99e6-a323eba738bf", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.26737967914438504, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cc810d85-4ee1-4108-a534-a093decd23ae", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.45985401459854014, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "991439c4-440c-42c4-a733-492cd7d9436b", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.33783783783783783, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "37553d05-90f8-449f-9718-0276ca5a742e", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.2631578947368421, "overlap_size": 25, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b6488442-0e99-460a-b7b2-eb7244ad8b63", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "similarity_coefficient": 0.37404580152671757, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "21c96b58-21f1-4384-b452-450540f58acc", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "similarity_coefficient": 0.4224137931034483, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5ba34bee-8ad5-45a4-98e2-039398865ef8", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8fb7471b-217f-4ace-ae08-795aec39b8ae", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "611ddee8-bae3-45cb-8acb-348123126153", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "797ab699-66c6-4a80-862c-b141cbb8f3b3", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "f8a5f9ff-fb62-48b4-ad61-1e4f868172cb", "similarity_coefficient": 0.31004366812227074, "overlap_size": 71, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "71f3b294-afa6-4b8a-96c8-80d64bb42fc7", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.28488372093023256, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8a55431a-ac61-4b2b-b821-d02aec76b510", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.9054054054054054, "overlap_size": 67, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9d451f85-2be1-4e51-b906-7ffa2cfd1df9", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "similarity_coefficient": 0.25742574257425743, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a3eb984d-c025-40c9-9aea-abbe98d5062d", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.5795454545454546, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "76086e13-1022-477f-b33f-256ffcc62641", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.43636363636363634, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8d2a4e44-99d2-4bfa-926e-1baa34d4eb16", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.569620253164557, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "70b85673-8a89-4324-a77d-9b0e9b0d0366", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.9864864864864865, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4d0bcac9-0731-4c4b-a4a6-5adbea0d8794", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b513a32f-1f58-4ec1-a17e-8b6f9b8e6be5", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.6125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "64706f1b-5ef7-4e54-b033-e88d874392ed", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ff611852-1141-4b60-bb7c-0759036caee7", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.5617977528089888, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6e073b9d-295a-4900-a3a2-6c32f8e3ccfe", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4fdfd574-563e-4f06-a8d1-b8d59f8f1a36", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.42592592592592593, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f5171879-f03d-4017-8999-c9eb60206b94", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "a5b4ea87-c775-4190-8251-dddda84aad0d", "similarity_coefficient": 0.3770491803278688, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c896bc60-9f61-456a-9c91-1b1947b53309", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "similarity_coefficient": 0.3770491803278688, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6999928d-2ba8-4eaf-b48a-025fbf33b4f8", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dd4ea7ee-a2e5-4fa0-917c-a131e8251347", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "33c9bcde-076b-467a-8783-02f39f19c5c0", "similarity_coefficient": 0.8717948717948718, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a3cb7cb8-e199-4107-97f2-0f28c1d2cd3d", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "similarity_coefficient": 0.4049586776859504, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e7870dca-2778-47ce-b576-a2053046b133", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.4093567251461988, "overlap_size": 70, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "efcfc0c6-75ef-4025-acbe-0c1fb2c5f2ff", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c5f9c79c-c59a-48fc-af0d-2515cba95905", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.525, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4fc5f100-7841-4d6d-852f-9f28790f1638", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "similarity_coefficient": 0.550561797752809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dd05575a-4ea4-46b9-a007-651cf2889e56", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c48f127e-1430-4d68-b4b3-3cb9a017940d", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.30625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "817db9ab-ef2d-42d1-b6df-c08e2b0b433b", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.28160919540229884, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ec94be50-080c-4351-97d6-e23429cd2226", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "b67a97a8-54b7-4306-be3a-d6518f864d8d", "similarity_coefficient": 0.30869565217391304, "overlap_size": 71, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ca645956-a09b-40be-ae34-5dcf794eeed4", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "48340089-ab2a-4c1f-8c8f-ed964f86235a", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.28901734104046245, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "168c7882-76d1-4a72-b926-9dab93462ac6", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a6376464-7e5b-4daa-8506-7f3417be8d44", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fd90c0e6-8e1c-48f4-a96f-13fb87749793", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "similarity_coefficient": 0.3602941176470588, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "25413504-7724-431f-9faa-197c675ec27c", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.5647058823529412, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7314e1d1-212f-458b-997e-1f50d97c90f5", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.6410256410256411, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c96614b7-602a-42d9-9381-03a3634e1715", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bea91e05-3857-46fe-8f25-118ca8374e17", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cb56a0ce-d7e4-4175-a403-5cb3e4b2d55b", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8c974665-0a8b-4bc8-b265-6f51cc31ed88", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "01e1e504-0eda-4928-a906-5a3796aa4b08", "similarity_coefficient": 0.7010309278350515, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e926e3ff-db3e-479c-b5f9-56c5aeaab687", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f08ea007-b512-43b6-a8a5-b184c1eccfe3", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.32894736842105265, "overlap_size": 25, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f4f95248-4701-4096-9993-6c88d8df0761", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.5483870967741935, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f6f37dd1-e9fe-44c4-82f3-33aa0e647918", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.8513513513513513, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "65427a47-25ca-4cc7-a2f3-9a1a0bab82f3", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.40476190476190477, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1ee72c11-f9ee-43ea-8ee5-e87155d77544", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "a0a1943b-60df-40e6-8e54-0852991dd573", "similarity_coefficient": 0.32666666666666666, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "864e02e3-9c82-41b7-ba98-9d7897a9b367", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.3310810810810811, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "30af9504-a67a-4ba1-80c3-05cf5cc27569", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1eeaf094-0e6c-4ff7-9881-84b48e8663e3", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.3983739837398374, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "13c6a590-28f6-4c39-8c00-e86c3b80eadb", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.3546099290780142, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cff587e5-854b-4d1e-a940-7ffa818bbdb9", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "similarity_coefficient": 0.4444444444444444, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a4174bf9-8dd8-4adf-80d5-edf7ffb910c2", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3d2cbc7e-4842-47c2-9015-64bfb9147697", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "483e4fad-9e1e-4020-b9f9-22bee132d8d2", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "91491485-fb73-4d9b-bcf8-f694aed374ae", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "similarity_coefficient": 0.5396825396825397, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4732f1e6-9db7-4eea-a2a3-b38243a1fca8", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "similarity_coefficient": 0.5232558139534884, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "df05a877-7820-4d78-8d51-04043a89cedb", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.5822784810126582, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9b60d677-9346-4479-b6f3-97a19843f52a", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.5609756097560976, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "93abcfd5-8840-4cc8-9067-066f313fd263", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "edfbb1eb-b822-4290-aa8f-5016a6488330", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.3161290322580645, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a27fb6dd-dd66-41d7-b3b7-6b2d9307d56f", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "69c4b4b7-c9e4-478e-997c-da4e05c3d7ee", "similarity_coefficient": 0.2693726937269373, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "32b89e4e-0fda-4505-b13a-982c426e6453", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.8481012658227848, "overlap_size": 67, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c39389ed-676d-4576-9e03-976c606037d3", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "44e853cd-d32d-428d-873d-0278f45a1c18", "similarity_coefficient": 0.2549019607843137, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3125f8c8-237c-43b8-8431-cdd657befa17", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "33441f60-6924-4e18-bb04-b56b3e2153f4", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0d9c14e8-ba66-4d91-9ea8-20c0dd2a758b", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.8390804597701149, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f0a220dd-37f2-41a3-a65c-ec5ab5e936fc", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.575, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4859ce44-fa62-4617-bb76-899ba1a6056a", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.9012345679012346, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8d11806c-76bb-48c7-a75c-cd9cfb1f1232", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.8390804597701149, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1012bcaf-155c-4b38-9f3d-ab80387f16b6", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "717543f3-45cc-431b-baa1-ffa2c95957d0", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "similarity_coefficient": 0.620253164556962, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8c6ddb48-ba4e-4c62-81ee-e60939a3d46a", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.44642857142857145, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "07e9dc87-051c-4fe4-898d-ba5a7b59a51b", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.2512820512820513, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "46472089-1c97-40fc-8e91-6dcb21e818fa", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.3968253968253968, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8b9c51b0-6f4c-4bae-8b18-7a0958fea99e", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.5769230769230769, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6d59f040-0f23-4da8-8cdd-e63327ca5081", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bb1d91ad-eeaf-4571-9367-717466d76217", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "similarity_coefficient": 0.620253164556962, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a7d9f89a-305d-4afb-a61f-89d86fac45eb", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "341f894e-1461-4011-8b23-be258a6c9d84", "similarity_coefficient": 0.5795454545454546, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "67309f70-bd6b-45aa-be2f-f39cd33aa36b", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.42, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cf3172e3-90d9-422f-8109-68e2c78eb123", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.4117647058823529, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5f72ea0a-92be-4a78-9663-3404e10e3030", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0c409f40-cb6f-4659-8c44-904a2f74d1b7", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "similarity_coefficient": 0.5666666666666667, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "86aba0bd-b725-4688-a730-3f1801fdd0ca", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c1c137e3-1113-42bb-8aa3-8e70bd42c83d", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.2692307692307692, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "06a4a53a-2d28-4670-8a1c-5ad6d895247f", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a7de2024-b3eb-4bc6-996d-931994f6f28f", "source": "891c7880-a77a-4d36-9208-f2c6710e8f73", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.2934131736526946, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e940e185-211c-4a38-98a2-af461018ae04", "source": "5a961c87-d858-45ce-865f-e96f3251f7d8", "target": "ec93dbde-699b-4275-bcdf-a802acfeba4d", "similarity_coefficient": 0.3724247226624406, "overlap_size": 235, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d0cf4cac-df34-4465-86fe-a9fc1b54823e", "source": "5a961c87-d858-45ce-865f-e96f3251f7d8", "target": "6f500156-fee8-48f9-92a1-285527a6b72b", "similarity_coefficient": 0.3263598326359833, "overlap_size": 156, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e4e1267c-a90f-45e6-aaf1-1a4ccffcbe0a", "source": "5a961c87-d858-45ce-865f-e96f3251f7d8", "target": "fa233ae1-349f-4830-91aa-77eaeb7bd001", "similarity_coefficient": 0.6382978723404256, "overlap_size": 150, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "be26f844-ffb9-4859-89e9-c0a9f2251927", "source": "80d50397-c435-4d5f-af0d-1bb0145eae5c", "target": "2bdd5c1c-34ee-4c58-a47e-260e4d1ebd1d", "similarity_coefficient": 0.6623376623376623, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6ed68fd7-96da-49ab-9563-28cadfc1182c", "source": "41ca07c0-f35c-4d35-8022-0bffa878dea3", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.32821497120921306, "overlap_size": 171, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f06584f1-c6fb-4316-a96a-386fce10773b", "source": "41ca07c0-f35c-4d35-8022-0bffa878dea3", "target": "5e615950-d559-4b21-940a-f65e4236cd08", "similarity_coefficient": 0.9542124542124543, "overlap_size": 521, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a05dcb29-651b-4ac9-88b3-38d3bec9f9af", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "e4cabb52-87fa-46a7-b178-1e258678e921", "similarity_coefficient": 0.33587786259541985, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "060f5385-2c26-44af-a381-c5b5bac9d4d8", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.4, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6cb30ab2-30ce-4151-a670-aea2726f9325", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "similarity_coefficient": 0.4, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4c45ee73-fc8f-46bf-887c-50b2bdf30117", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.4036697247706422, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fb471cc5-311b-4b31-9ba9-447b2ed41d01", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "similarity_coefficient": 0.4512820512820513, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1fb95096-e839-4190-85cf-1e7010fcace1", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "b401cb25-9626-4bf4-9dc9-a102b829189a", "similarity_coefficient": 0.4, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f65020ea-5d0f-4edf-9892-94188d96fb93", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.43781094527363185, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8403d630-7cf7-4bae-865f-77769e5f39e1", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "similarity_coefficient": 0.3793103448275862, "overlap_size": 77, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "be6e873b-dd10-4005-b44a-21b5ad7a59bd", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "similarity_coefficient": 0.3403361344537815, "overlap_size": 81, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cfd163cc-eb3a-4480-af99-3f019f692434", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "868604a2-809b-43bf-97f8-7d956608ccae", "similarity_coefficient": 0.39819004524886875, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5dae676e-4749-4cc3-992f-96c63b4f7c4a", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.4, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9395385f-5fb8-4267-bdc1-a7d2da4e5763", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.4, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e46fba48-bdd9-44b8-a2a7-b5460413db0f", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "similarity_coefficient": 0.4, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e9fd3068-b2ea-4dee-916b-43fa8dc40759", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.3963963963963964, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "411d491d-2bc0-4a9f-a414-c7afe1249928", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "similarity_coefficient": 0.44, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6c5c3db2-bbc9-4000-b5d0-5fd6294393e8", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "similarity_coefficient": 0.3979591836734694, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3e693995-9191-449e-bd57-563667e72269", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.4, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6e38d924-0d7e-448c-8c85-2da3236fbbcc", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "similarity_coefficient": 0.4036697247706422, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3fdd5c45-5be6-4527-bb41-aced2c879ed3", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "13b2a0b7-01d4-456c-8127-b83526231171", "similarity_coefficient": 0.4, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6414fd3b-eaf2-4072-91cd-414af20d2cb0", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.4, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8a8f702d-21dc-4a72-a31f-46d7cc1d277e", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "similarity_coefficient": 0.4, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eba922b9-8229-4e02-ba36-f5a3c558526f", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "similarity_coefficient": 0.4, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "808d613f-3282-4ae9-8c6f-691088f90c1c", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "similarity_coefficient": 0.4, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "10f5df3d-1e92-4e3b-a4db-1b031d38f621", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.4, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "16196929-d35b-4055-8bea-e100e6fc385b", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.4, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cdb12f67-0351-4867-a1b2-95ae66d61c88", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "e15e930f-af85-4402-99a6-a57c9368b631", "similarity_coefficient": 0.39111111111111113, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "92df8f35-e092-4fe1-9e70-56f57ebd4612", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.39819004524886875, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1dfe1d09-f4ba-4658-bceb-7ff2e3c32b93", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.4, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "16adcafc-e8d0-4c04-aa93-99b52daa8dbb", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "similarity_coefficient": 0.4, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9ed9cc4d-9510-4c39-86e9-2631608cf92a", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "similarity_coefficient": 0.4251207729468599, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "583c4389-c8c3-46d2-a5c7-0e33fec07338", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "similarity_coefficient": 0.4494949494949495, "overlap_size": 89, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b1aa67ac-aa0b-482f-884c-7efa2fbd83f2", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.3682008368200837, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "21b6536b-31bf-4b65-9c99-43ec51d76201", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "similarity_coefficient": 0.4, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "398f6ddd-44c1-4ec0-920c-5d9b61b97ec7", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.4512820512820513, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a0a1f424-da19-4460-ae95-a69eca3440bb", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "similarity_coefficient": 0.44221105527638194, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "26ff154e-d5d7-4163-b4ad-c58bd5a85849", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "similarity_coefficient": 0.9507389162561576, "overlap_size": 193, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "180277c7-2531-4fbb-b25e-6682fc2b62ca", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.4, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1fecc5d1-7576-4721-a029-f81960041d01", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.39111111111111113, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "74b1b661-49b5-45ca-9884-65d9f7cba59a", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.4, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "44796c5c-8b2c-4759-b885-cc2202a6a63b", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.9481865284974094, "overlap_size": 183, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3e0e860e-cc47-4ea6-b3a6-d5f201ec0820", "source": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.3188405797101449, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ec456f96-74f7-4992-b373-4cdad9623748", "source": "1f9449a0-c261-484f-b98d-9d09fbc83246", "target": "8c583627-83a1-4324-af57-909f27ec93a5", "similarity_coefficient": 0.30529172320217096, "overlap_size": 225, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d5cb9805-b691-4cbe-85c9-001d052bae3b", "source": "1f9449a0-c261-484f-b98d-9d09fbc83246", "target": "de57a25a-a652-44c2-a797-e61c000fd4c1", "similarity_coefficient": 0.27319587628865977, "overlap_size": 159, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "de8ab04b-0c69-441f-b9b7-8f6f69ef3a31", "source": "1f9449a0-c261-484f-b98d-9d09fbc83246", "target": "7b557c97-ae99-4d68-8911-24a37bf4ee92", "similarity_coefficient": 0.6410835214446953, "overlap_size": 284, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "870e92da-e21c-436c-829c-749a83250ff8", "source": "1f9449a0-c261-484f-b98d-9d09fbc83246", "target": "337793ee-c6bc-42bd-b62a-2adb13713155", "similarity_coefficient": 0.30699774266365687, "overlap_size": 136, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3cc90e07-61b2-4b17-9821-07fcf6ed0cd0", "source": "1f9449a0-c261-484f-b98d-9d09fbc83246", "target": "a9a38d38-b0bb-4c25-a938-b31f9d702712", "similarity_coefficient": 0.26492537313432835, "overlap_size": 142, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f76d0c52-f493-4a9d-b1ac-aee944a74674", "source": "1f9449a0-c261-484f-b98d-9d09fbc83246", "target": "171e0e5b-ee37-4508-a139-85ff67a866f3", "similarity_coefficient": 0.4785553047404063, "overlap_size": 212, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f2cfb673-ce71-446d-81bd-bdbe58304eba", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.6717557251908397, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b887d5bd-397d-4bb7-8fec-0bba7b3ab758", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "868604a2-809b-43bf-97f8-7d956608ccae", "similarity_coefficient": 0.676923076923077, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "11f7c2f3-8f96-4284-aa81-5555b48ba531", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "similarity_coefficient": 0.7428571428571429, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "52fa2d05-d4e0-47a4-9a16-47b8271b4c05", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "40164cc6-5b02-4f2a-b39e-212f28630bfa", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7e55ad75-7c1b-40a1-9341-beea3f8181b7", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.85, "overlap_size": 102, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "46d5a8b1-f56c-4663-bba2-7a12741ec8bf", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dd428b30-705a-4653-966a-b9736f45a3cd", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "similarity_coefficient": 0.6875, "overlap_size": 77, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9d04451a-e81f-4565-8cfa-084924c3a34c", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.4375, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9e6135cc-87c0-40e4-8711-73e3a2ec37ad", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "d8540c26-26c9-4f3c-91da-5db659f587c1", "similarity_coefficient": 0.2808022922636103, "overlap_size": 98, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7ba95416-5155-4104-ab80-b6223e296ff5", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.5945945945945946, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "106ee8d0-1f3e-4463-9526-b4059679950d", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "26af119a-c63d-44b4-b58d-bd747f3f73c8", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.4467005076142132, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a4c7584c-c7d0-4032-a90e-74922fd4ce01", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "13b2a0b7-01d4-456c-8127-b83526231171", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b386bfb7-f842-4b84-b81f-9407b0beee9c", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "e317d95d-7299-42da-9e5d-030e294dbe75", "similarity_coefficient": 0.3469387755102041, "overlap_size": 102, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2c59af0c-d780-4b83-8500-88e0855c3369", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c03a9f13-6360-4ade-a022-23df70e948fb", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "34a3231c-883d-4ca2-be32-f12f6f929840", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "e15e930f-af85-4402-99a6-a57c9368b631", "similarity_coefficient": 0.85, "overlap_size": 102, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1750f544-e47f-44e3-8fa5-e9f316b70535", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aea43df7-14e2-4525-a4aa-8a11bc2bbd0d", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "374d76b1-e4d5-4516-b105-410699dc6050", "similarity_coefficient": 0.29914529914529914, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8f0a4134-a309-439e-9a8a-7f638399fcc7", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9811e90f-2406-4090-b884-852f9d9a064d", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "similarity_coefficient": 0.4336283185840708, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5e8836ae-9e67-4b57-9f72-072399f9b117", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b735c131-a5cc-4ea6-8d61-a49e1695e278", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e77c5d82-19d7-4a8f-941d-748728fdb247", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "39ff2d13-6857-4e3c-803f-1391715dde5a", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "similarity_coefficient": 0.4251207729468599, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e6c95ca8-7e30-4851-b6d5-d4217f6c83c6", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "97fc5641-8ff5-4af9-9860-3adcf5d6a0a2", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.8461538461538461, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cb9fe305-77c4-4fa2-a63c-0511856b0eb6", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "similarity_coefficient": 0.8148148148148148, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e73695db-4ad0-4d23-b117-9adb960f7552", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "similarity_coefficient": 0.8073394495412844, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0d5ad458-ab78-409d-8bfd-0a705e6bcb0e", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "fba653df-f3e4-45e3-bf71-739986879ea9", "similarity_coefficient": 0.33653846153846156, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "df29c46d-59b8-481f-935d-75bea2141820", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "similarity_coefficient": 0.7586206896551724, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2b67f5e6-b955-4303-8126-0293003417bb", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "similarity_coefficient": 0.8148148148148148, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "373862d5-9ebc-49b9-9c2e-8dd8a1b2a5d1", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.4756756756756757, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d28f719f-8301-4280-8173-0e26a72b9559", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "similarity_coefficient": 0.9026548672566371, "overlap_size": 102, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "688a4fba-e0a1-432f-8fb1-4231003f969a", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "21892706-a1ce-430a-aa09-8094d8f27f4d", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0002ea93-57ec-476f-b363-27dc38e708aa", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.6929133858267716, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "af9e5f5c-cb15-4ac8-8c2d-d76ae463dd42", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "49ca5a03-b5f6-41c4-a585-4703edbb9afc", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.676923076923077, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1f514e02-820a-4167-a416-0fd08e3afa80", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f20ad9d5-981b-4ecf-907f-358554c28137", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "similarity_coefficient": 0.7014925373134329, "overlap_size": 94, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3d02981d-f573-46d3-ade9-ae4cad12d52b", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "e4cabb52-87fa-46a7-b178-1e258678e921", "similarity_coefficient": 0.5146198830409356, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ac571c93-2467-41dc-b68f-9183373ff2bc", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "similarity_coefficient": 0.8461538461538461, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5797710d-048c-44ba-9902-385063d327b3", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f995e00d-9053-4ba0-9e47-1a019a959690", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "similarity_coefficient": 0.4055299539170507, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2f7a3719-fe54-49b9-9f89-e54cbb227b6f", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dd2b5cd9-fb43-40cd-a883-988e2cbb3cef", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.8, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ebe0d4f3-e9dc-42a9-8a15-662b2df16659", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "similarity_coefficient": 0.4375, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "56d02c71-fd34-4d31-beb9-5c12e5345992", "source": "5fad820d-6345-4761-a2d5-c43052a31a36", "target": "b401cb25-9626-4bf4-9dc9-a102b829189a", "similarity_coefficient": 0.75, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "559b1079-608b-4724-a879-6c1cb9c4ed12", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "similarity_coefficient": 0.4224137931034483, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1aedc514-da6e-45a8-9b5e-340d604ef20e", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.2541436464088398, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "edbba977-d191-49e2-81e9-19a4c66a157f", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8bbbb32b-1f91-4924-8b32-2f9036920794", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.4083333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ffba9cfe-39bb-48a2-806e-809d282b766d", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "26ccfcda-6b63-49e1-939a-9baf20938ba4", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.48514851485148514, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0de5dd4d-0dc8-462b-aec7-110dd357e304", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "similarity_coefficient": 0.48598130841121495, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "15ae099f-58af-4bbf-8cfd-a2f929157b47", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.3586206896551724, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "78778788-7c81-44fb-bc2b-e4c1057d9897", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.26903553299492383, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7e3fd7a0-9213-46aa-8e97-22cbfa210902", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.44144144144144143, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e161830f-408e-49dc-80cf-471b05955fa0", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "341f894e-1461-4011-8b23-be258a6c9d84", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2142e580-1a0e-4e61-a554-f782e173a0e5", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "similarity_coefficient": 0.3828125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ebfff41f-785e-4aff-9358-86e61ca2dbb6", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.2561576354679803, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "45f8a9c2-8589-4727-986c-478d060ec0a4", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.4117647058823529, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5e3d99b8-de27-46e2-801f-a99599c22cb7", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.3851851851851852, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5fe078b9-0f68-4437-b310-d8a2de96f0b8", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "03cf5b7b-58fb-458c-8bc0-4d93f584c242", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a17cf95c-1223-4335-b182-2eb8e5624b34", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.30057803468208094, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d96d523c-416f-443d-b6d1-944417d2f1d3", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "similarity_coefficient": 0.34265734265734266, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5e083ccf-888b-4907-9674-d9af370b4b5c", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.49019607843137253, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7934be26-97be-42dd-a9b0-35dd463c56c9", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ff6932c5-237e-4098-92ed-624ca533705f", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.3356164383561644, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bdc0094d-d3e7-4944-9d77-55da473d17b1", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dbca5525-7ad1-4dae-af2a-954b1d692267", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.4296875, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "862fb6af-6e9b-448d-b65a-8a558d93454c", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.4854368932038835, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "356f889b-2ab2-45cf-9fc3-caf5e57702ff", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "similarity_coefficient": 0.5048543689320388, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "79a88652-5af6-4eff-9008-1548927ff4c4", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.504950495049505, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3065ab4c-ee02-4230-a0f2-bdb73283dfb1", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.25257731958762886, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "35a06678-5dd8-4cf5-a47a-0c0c9beb38da", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "similarity_coefficient": 0.35555555555555557, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "60c08641-3ef2-4bcc-89c4-0f895564017f", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.4491525423728814, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "18eef144-5ac2-4849-a03c-7e7c40609466", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.35036496350364965, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "af4e5419-b1af-4163-9947-9f344bee57b9", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.3851851851851852, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5302f79d-9ba5-4e51-acb7-2c7ee5d6bf58", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.4672897196261682, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "25d1c3e8-c508-4a97-b07a-dd3f2407fb1b", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.40310077519379844, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9223e9ef-7b51-4754-9538-b3bcafcf264d", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.40625, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b2b177d9-6253-476b-9f53-504ac4492ecc", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.504950495049505, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8aefa27b-960f-4da5-91d0-9e7b16d06f7b", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.5048543689320388, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c96d9ac8-1c5d-41cd-b3b7-d893ed3dc52c", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.3443708609271523, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "38d62862-3066-4ebe-bc2a-7663f69de1f9", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.3374233128834356, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f28b7ec8-7e87-40e0-83be-0984548d6bb0", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.35374149659863946, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9d3d782c-f51c-44b8-8d3e-80555b6d07ee", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.3795620437956204, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "79d466f4-06b5-4f63-acdf-720356032d64", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "similarity_coefficient": 0.310126582278481, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b8a993a5-d899-421a-b6ea-87eecc9cc566", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.35766423357664234, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0667f261-dbd6-4df9-b802-a0b7f5507255", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.2523809523809524, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "274642f9-b534-45b6-a73b-ae14a8d13d1e", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.3898305084745763, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7a4d031d-4171-4820-a7c8-ae6bf4cfd255", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "799805c0-2d8f-423a-a11f-8bead576e4b2", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "similarity_coefficient": 0.4117647058823529, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "43fea019-3400-4143-ba69-b7a314d530f7", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.2804878048780488, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "86667771-5e66-415e-9a9c-09230d80528a", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.42857142857142855, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bdf926a1-b10a-414b-b00e-963079f05b67", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "similarity_coefficient": 0.6, "overlap_size": 60, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ccd8ad03-565c-4f21-b744-803bc7d00a95", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "similarity_coefficient": 0.39823008849557523, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3d70b509-34c3-40ca-b315-bf9204e7b938", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.7352941176470589, "overlap_size": 100, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ac14eaa8-6b1a-4c0a-8b2a-2ea1587034d5", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.42201834862385323, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "33c1b6cc-0c42-448b-8d25-aedbc0e8efa0", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.26229508196721313, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2bcd89fe-7403-4203-9a5e-b5bfbc77c2df", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "410c712d-43e2-45c9-a24d-3a174c4ddafa", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b0aab094-e81b-4c78-9916-01f23f5c8c86", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "similarity_coefficient": 0.6, "overlap_size": 60, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "07f8a4b7-217e-4900-b2dd-23c6de6b0c24", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "01e1e504-0eda-4928-a906-5a3796aa4b08", "similarity_coefficient": 0.37142857142857144, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7b6b6656-893b-4e59-9403-0b8024362470", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.3176470588235294, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "40c65ccf-ddda-450a-9853-a321a7523f19", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.4375, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d06e0552-cc00-491a-8524-22e58a1e0e0e", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.42857142857142855, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "61a7509b-5571-4fa3-834e-866dd9e86428", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "a0a1943b-60df-40e6-8e54-0852991dd573", "similarity_coefficient": 0.2988505747126437, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b21fb7f1-8588-4e7a-a143-175945dcc3f6", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.48148148148148145, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ebd12a47-8d40-428a-b0ab-53c9072e6f9a", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.4369747899159664, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c174d8f8-5d79-4172-89ef-664af8c31467", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.33070866141732286, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "63801672-0d37-419b-bb59-dd835ab82ab4", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "similarity_coefficient": 0.42735042735042733, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ea2cae46-4b1a-4a07-8c20-cc5fb9b7cdca", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "891c7880-a77a-4d36-9208-f2c6710e8f73", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "db03d8ee-b0ad-473f-82ab-28428d7bfdd9", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.6, "overlap_size": 60, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a13844b3-4545-44a6-8b42-d28d9087197c", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c4146e66-7487-411d-9e78-84296c1395d4", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0ccc92e3-01ae-46e2-ab54-356f6911a991", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.392, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5ef3871a-be38-4ff1-85ab-c66161b99f6d", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.43103448275862066, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "937f9378-1fd5-4980-b97b-786c8daa85c4", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c0b3ede1-c3fe-46f0-82a3-41c624784e8c", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "similarity_coefficient": 0.3076923076923077, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ca337a21-04b0-4cd5-9861-eab7e4c103a7", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d9cc193f-d8dc-4343-99c8-3cd052fefaed", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7f726e41-3785-4532-aa39-c25b25a4a148", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.5040650406504065, "overlap_size": 62, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "82ba9bfc-0e44-40d9-8aee-0dfa88fce63c", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.42452830188679247, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6188583b-de93-4b10-b13c-80ba54b0c5e7", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "33c9bcde-076b-467a-8783-02f39f19c5c0", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f3c405b1-a7b8-4944-aef6-ed795956c789", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "similarity_coefficient": 0.34507042253521125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b45e6c18-c5ce-453f-83bf-58c71198458c", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.3712121212121212, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c59ffda9-c55a-43b6-b942-83798809fcd9", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "similarity_coefficient": 0.3333333333333333, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f0b9024f-ec76-4c75-95c3-2dc113c5f58d", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "similarity_coefficient": 0.3401360544217687, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "51b3515f-2346-4f50-9996-30e08ac0309a", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "similarity_coefficient": 0.3541666666666667, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2673ac67-bd9b-41a8-aef1-85ed7c1b3419", "source": "7151a713-c289-49f0-aa66-c156dbd1c164", "target": "a5b4ea87-c775-4190-8251-dddda84aad0d", "similarity_coefficient": 0.3087248322147651, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d181d968-e681-4bdd-b49b-2d3e2989380b", "source": "60120542-70b3-4439-85bc-e7386bc2c1bc", "target": "1ff0c0ea-d31f-4da9-b8e3-cfdb97606fb4", "similarity_coefficient": 0.5441176470588235, "overlap_size": 37, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "42749771-57ba-43e6-9277-f2073bb628d9", "source": "60120542-70b3-4439-85bc-e7386bc2c1bc", "target": "b1a1c2a0-8eec-4de7-af7b-11db36d4c3d6", "similarity_coefficient": 0.4691358024691358, "overlap_size": 38, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5b9554a0-2b9c-4e22-ac9a-991cf6b7e6da", "source": "60120542-70b3-4439-85bc-e7386bc2c1bc", "target": "1a0622b8-4328-4c5c-bc2e-ece6cda08863", "similarity_coefficient": 0.6017699115044248, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9012ffcc-d26c-46da-a64c-4d8170d944ba", "source": "30c08040-f18e-416c-ab53-b2de203ae759", "target": "fb9a31df-5a36-4942-9b2e-5c6ded677d5a", "similarity_coefficient": 0.25405405405405407, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e4448f7f-96fe-462b-b76c-691c82999f13", "source": "30c08040-f18e-416c-ab53-b2de203ae759", "target": "8edc22d5-456d-46b8-abe6-c74649ed0114", "similarity_coefficient": 0.272108843537415, "overlap_size": 40, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3fae1556-3e07-4ffe-b722-55e807934175", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "e15e930f-af85-4402-99a6-a57c9368b631", "similarity_coefficient": 0.4731182795698925, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1620b366-c031-4f3c-82c2-192c5443691f", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.5, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f804091c-955f-4ec1-bf3b-761053ec1f30", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "similarity_coefficient": 0.5, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "19eb13a7-439f-47ca-99d1-639baaa68dc6", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.5, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2a395171-9aa2-427e-96ef-65a4130d08ba", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "5fad820d-6345-4761-a2d5-c43052a31a36", "similarity_coefficient": 0.5238095238095238, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fd436d72-46bb-4fc8-b72b-fb40afc9b45e", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.37130801687763715, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fb430f1f-9ed0-431d-b912-16b3ce1d895f", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.3534136546184739, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "62b9353f-6c51-40da-a202-5b81e3aed9bc", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.4835164835164835, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d6181a16-8448-4eff-af3b-cfdb0fd92e21", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "similarity_coefficient": 0.5238095238095238, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b304f4f6-9e75-4121-98c9-1227e13384ab", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.8701298701298701, "overlap_size": 134, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fdd6cc58-cb9c-494f-a5d7-aec6657d300a", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "similarity_coefficient": 0.55, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f142fec5-d5d6-4fee-aad5-009088cb9eb6", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.5844155844155844, "overlap_size": 90, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "76c239f1-d94b-4b57-b2f2-37e775b11088", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.5, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "60ff162e-d75c-402d-aaba-b8c6ca36163b", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.4808743169398907, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9ce8fd52-46a4-4286-bb78-f0e764c6b250", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.5432098765432098, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c1ac245f-a5fd-4524-93b9-5f8842b70e65", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.5, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "86f0c183-036d-48f2-a7ac-413b8342af9c", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.5, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a1410454-c3cc-44fc-8323-f6bc31a6ebae", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.4731182795698925, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7918cc5d-3368-43d4-804e-a9ebe045505f", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "similarity_coefficient": 0.3271375464684015, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "68fa2041-960f-44aa-96b3-3766f95a7143", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "b401cb25-9626-4bf4-9dc9-a102b829189a", "similarity_coefficient": 0.5, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dbf3c38e-f261-4742-b7b9-d91bf5023129", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "similarity_coefficient": 0.55, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1445cf78-149a-4975-aada-7f43df4b204c", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "similarity_coefficient": 0.5641025641025641, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8a22622b-7077-4f0d-9672-6e799125c72a", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "e4cabb52-87fa-46a7-b178-1e258678e921", "similarity_coefficient": 0.4009009009009009, "overlap_size": 89, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e10efefc-9d1e-4949-a84b-699f6eefd3c3", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.49162011173184356, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a2f89b74-d2b0-4ac0-a59a-2e452e9dd987", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "similarity_coefficient": 0.40703517587939697, "overlap_size": 81, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "58a66bd0-dc5e-437e-b9ce-29b31174a4cc", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.5, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "16830845-0aa4-49d5-81e0-9a2be86a054c", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.5, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0aff64c4-1e71-4efe-9af9-74eed058c6ff", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "similarity_coefficient": 0.5, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4dd8ba90-3025-4239-a504-cab4fff74b9c", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "similarity_coefficient": 0.5, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9da75a89-e9cc-4d5d-b7d2-bf5d7a30babe", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.5, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1e6c16a1-7ddf-4cc3-a6ca-2b2853eb6ffe", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "similarity_coefficient": 0.5, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c5a587b0-af01-4a33-bcab-a4a9f06a2517", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "similarity_coefficient": 0.5, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "240c81a7-605e-4ff5-a0df-3f74200e8ce3", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "similarity_coefficient": 0.4695121951219512, "overlap_size": 77, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1de04990-e0e7-4492-9709-a1114bb48e30", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "868604a2-809b-43bf-97f8-7d956608ccae", "similarity_coefficient": 0.4835164835164835, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "64230267-b56f-493a-98b7-882be8bdd467", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "similarity_coefficient": 0.5, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c02dba80-6179-4b54-8d58-7cac5e164d56", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "similarity_coefficient": 0.49162011173184356, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e6ba9611-44c8-44f3-97c2-865e27ae9814", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "13b2a0b7-01d4-456c-8127-b83526231171", "similarity_coefficient": 0.5, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ed66a80b-7bb8-4202-9301-dd638c89055a", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.5, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bd10d2c0-e713-4c7d-ab02-95bbf230ba08", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.5, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "734c6938-a761-4735-9429-88f44c718667", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "similarity_coefficient": 0.5, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a36190ed-ed42-4f6d-b6ae-071484c358ee", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "similarity_coefficient": 0.33976833976833976, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e3dec3ec-e63d-4bc0-bbee-ac071be7f4a7", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "similarity_coefficient": 0.546583850931677, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0717f975-7c75-4a7b-b38d-21983f2cdf8e", "source": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "target": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "similarity_coefficient": 0.4968152866242038, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "288e75e4-3a39-47a4-ae3b-0d431f809bc1", "source": "2f2e970c-d039-4dd2-af40-f00bd9a7bdd1", "target": "9e586326-e945-4df1-94e5-befba1a293f6", "similarity_coefficient": 0.3958333333333333, "overlap_size": 19, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5ebe859c-dd10-4527-87a4-b1eacb46cb0b", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "01e1e504-0eda-4928-a906-5a3796aa4b08", "similarity_coefficient": 0.4, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c660c945-f5a5-4d4a-beee-815d853e4987", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.45161290322580644, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3cbded03-ab02-4d9e-9c47-722e216e17be", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "similarity_coefficient": 0.336, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e6436a3d-0463-4cd2-b767-5a146328b010", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "similarity_coefficient": 0.40384615384615385, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6980d20a-dd02-4467-8bfb-d14478e11da9", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.6461538461538462, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0be8478e-ee5a-41ad-961b-c0d8c390c50a", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.36065573770491804, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fe61c435-fb02-488e-9995-0112a8f6edf4", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.46153846153846156, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3c3dac02-2bea-44a2-ab21-14c343380971", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "similarity_coefficient": 0.5753424657534246, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5744ea91-a3e9-4a0d-9fd1-bb0f948e25a9", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "similarity_coefficient": 0.5753424657534246, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d92c3122-852a-45ce-9d1f-7bc0e8fa0bb9", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.5753424657534246, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b6116487-2c66-4b1e-a59b-9c55cffc4a3b", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.44, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8d4e62ca-94e9-4799-b408-c869e1a8e5b7", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.5, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "478790aa-654a-4e7d-95e2-d4d415e3a7b1", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.5454545454545454, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8ad0884f-1add-40ca-a44d-fc59a1c43c66", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "similarity_coefficient": 0.31343283582089554, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f30ecf47-9036-477b-84f7-50558ecff53e", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.4117647058823529, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a47c26e8-3f83-4562-a624-bf85e8831ff8", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "similarity_coefficient": 0.5915492957746479, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2a57c1fb-6e3b-4554-ab12-d1d7b18b5fca", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "similarity_coefficient": 0.4375, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c41588ba-c265-4858-af5a-8225b2d47007", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.34146341463414637, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "44b08f0e-8c33-42e4-897b-97341aa46f09", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.6176470588235294, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8cbf33a2-b724-46eb-98e7-2767ce0bec05", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.3620689655172414, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f2254433-f0c7-4455-852c-94ce993a75f8", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "similarity_coefficient": 0.40186915887850466, "overlap_size": 43, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b9c08ef0-9c2b-4eed-b06e-ca971f7e36d7", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.32061068702290074, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c4c3966e-0b84-41e1-8e1e-49f734f45539", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "a5b4ea87-c775-4190-8251-dddda84aad0d", "similarity_coefficient": 0.4423076923076923, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a3cc4dbb-58e7-4e14-a052-211d4e10ab13", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.375, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1b551a70-a99c-428f-973a-454196113d5e", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "33c9bcde-076b-467a-8783-02f39f19c5c0", "similarity_coefficient": 0.4883720930232558, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4907ac43-24b1-4dd9-a041-50553c39f5ee", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.28187919463087246, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ec1d8987-49da-4ee8-ba8f-c07fa881ec68", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.6, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fd0056b2-21cd-42c5-a6bd-ca725ec5f9d2", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.44680851063829785, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ace5f5af-a409-4ad6-8c0d-e1601b60ebc9", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.6461538461538462, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f4d9eba2-12a6-4b0a-b655-8aa2609aed94", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.4782608695652174, "overlap_size": 44, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "70ed432f-b0fc-490b-9240-a5a080957b1c", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "similarity_coefficient": 0.5833333333333334, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "abac3b67-22a5-49c0-a5e5-d7d900d6eb3c", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.5121951219512195, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b1aa324a-c69f-496d-919e-aaf8f2b4f6f1", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.6363636363636364, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "83688d7f-a969-40a7-a4d8-c9cfe5be94ee", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.5316455696202531, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b31a5f2c-0f85-4bc4-81ee-206c687d4fa3", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.5454545454545454, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7f040041-2e1b-4db9-a71d-08eb9961220a", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.2608695652173913, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "47fe3228-0e7e-4e23-b1ff-50f5f98d5ccf", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.6461538461538462, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "60d2dd28-e386-46c2-97f6-eaa693880f0e", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "similarity_coefficient": 0.525, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "43402f36-10f4-4813-8f74-80fc7fa89bc2", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.46808510638297873, "overlap_size": 44, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3de0f851-d2dc-4697-a584-a3287d02a730", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.6461538461538462, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ee85092f-5ffe-43f3-a59b-7424a5b88da2", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "similarity_coefficient": 0.4, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fac0d36b-2ba7-44f6-81f9-b1b2632da804", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "similarity_coefficient": 0.4666666666666667, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7c6c1002-cd1e-4fa9-b2a7-00dc20d70909", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.30434782608695654, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1a4a3831-9901-4957-a567-c3460ff85107", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.275, "overlap_size": 22, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b31e2e87-7b34-4c8c-912a-7e5480a69210", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.42857142857142855, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4b0258e1-b4c5-4059-8934-1e59f2c3d172", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.38181818181818183, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c29e01d5-95e9-41dc-8d2f-3be73f8c8c2b", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.25, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2757962e-2fae-458b-91cb-917f12e932fd", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.4827586206896552, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f96d03b6-cbb3-47d8-88b1-38d8fda5e9d1", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.6666666666666666, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a0c89d18-bd5b-4783-aae0-5f17b861eb65", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.25766871165644173, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8adca3bf-b68f-470c-a145-ffb7764bda80", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.5753424657534246, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "986c02cb-f873-41c0-bcb7-434a6e34b080", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.25766871165644173, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "156a266e-27e3-4921-a16d-da025b3ad5fb", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.42857142857142855, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7b2b951b-01c6-46eb-a037-512711a36d23", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "891c7880-a77a-4d36-9208-f2c6710e8f73", "similarity_coefficient": 0.4883720930232558, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f169de3f-fc2e-4698-9a85-ae22a6139d70", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "similarity_coefficient": 0.5384615384615384, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "352e6369-ed3e-4244-805d-ce11dd62a0c2", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.6, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cc23aeb3-4057-4f65-916c-56928a42129d", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.5753424657534246, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7915a932-509c-4f24-8d00-cf788e304402", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "similarity_coefficient": 0.35, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c31f6e05-3b42-4020-bc95-141414cbab28", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "similarity_coefficient": 0.38181818181818183, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "36271e80-bbcc-4b1e-98c6-0f228690d3f0", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "341f894e-1461-4011-8b23-be258a6c9d84", "similarity_coefficient": 0.5316455696202531, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "45131746-99f9-4dd9-85cf-745abea3f5b9", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.65625, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b742be20-0553-46ec-a649-4bd2eb8f1412", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.2916666666666667, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c8e6a97c-965e-4188-a8bb-e69553d51142", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.5185185185185185, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a29237d0-016d-42c5-8cc9-dbf3ac0036fc", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.5316455696202531, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "62c3ea9e-ea74-4254-81f8-aa220ee496e3", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.42, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9a590053-6395-41bd-845c-446d02477965", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.42, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ec44862f-9470-4a43-a477-d8fb37a3f79f", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.2857142857142857, "overlap_size": 44, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "79cd9be0-88bc-448e-be87-d4a6da8d6188", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "similarity_coefficient": 0.5185185185185185, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6cdf4348-3ac2-4d15-898f-39e1f2b1c878", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.5833333333333334, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "48d46dea-f59e-416d-b96d-a1651210d83b", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.6176470588235294, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c21d0080-bce2-421a-8e9f-9015e0bcc66e", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.6086956521739131, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fa219b03-9bce-4b60-97c9-93ebf6532903", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.7971014492753623, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "36818410-16ae-4eef-a7f1-5e4be25762e4", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.6268656716417911, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e41fbbd6-a6b5-4868-bb89-239431b055b3", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.6363636363636364, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4118e62f-22ba-4240-a5e2-bba33514cb33", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.42424242424242425, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "76c0df3b-60c7-4eef-bd92-6b3027afde68", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "similarity_coefficient": 0.6176470588235294, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "78abb49d-538f-46ae-8bb6-0eb2fa7c4565", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.5753424657534246, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5c2dc135-8e80-405a-8011-1018fb142983", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.6363636363636364, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "843add6a-c223-4b01-9f59-9edf1f6adac1", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.6461538461538462, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3e923ea9-cd4f-469b-bf62-fab52ab31a3d", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.6666666666666666, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ddc5fec8-376c-46ab-a35b-94758613b8b1", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.5, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a3b125c3-4587-46ea-8a46-25476cc66236", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "7151a713-c289-49f0-aa66-c156dbd1c164", "similarity_coefficient": 0.37168141592920356, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b161e5d4-2382-4b84-9d1f-e312408705ab", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.6461538461538462, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "96bfd5e3-eb1c-4b89-b01a-29885bd966d0", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.5675675675675675, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1ef3a9b5-1f9b-419a-b2b3-bb047e547f85", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.3, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5166ca62-2609-4d76-a987-2899298e201f", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "a0a1943b-60df-40e6-8e54-0852991dd573", "similarity_coefficient": 0.302158273381295, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5ce69b22-7554-4f26-a836-370735188d7e", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.3888888888888889, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8005d7e4-96a5-43af-ba0d-269c965d29cb", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.4883720930232558, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "88d5b1ce-b5ea-4152-9b9f-8850617159ad", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.3161764705882353, "overlap_size": 43, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "85424973-989d-4756-a7c8-7a4bf30b9290", "source": "64e3fce0-8233-4644-90df-094c8ecd6aee", "target": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "similarity_coefficient": 0.6176470588235294, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "58f53a4b-e15d-45a4-8938-04a332047d76", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7bd7d3c2-573c-495f-9b99-2b53b9d98e40", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "similarity_coefficient": 0.4117647058823529, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2ac97c7a-00ee-40ff-9853-6c21ad197200", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "similarity_coefficient": 0.987012987012987, "overlap_size": 76, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "321e8432-34bb-4e30-987f-a68d6bb41932", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.25510204081632654, "overlap_size": 25, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "066d6d2e-7941-4128-9759-c216d9c340e7", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2a871e94-5f79-4b95-b22e-49e9cff33a6c", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f07047ac-06c9-4a6f-bd73-4e0ae416826c", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.4077669902912621, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b40f4486-e9f5-4da0-bbbd-3314a9b0e347", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "similarity_coefficient": 0.2660098522167488, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e9da89c5-4a9f-403e-9bac-cb4b8e84c66a", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4b5e37e1-cef2-494f-9b16-7fac3516c90a", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.4171779141104294, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "28bd0d62-ff29-4e7f-9a0d-83a09ce2426b", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.891566265060241, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dea3fde1-f398-40be-a3db-3fb53840b971", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.5542168674698795, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7f996131-7f05-4382-8059-cc4768dbca2f", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.3184713375796178, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "300b6b77-e2b4-44f8-8e6b-7662b9e9d6f4", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.4247787610619469, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4b2dc392-239d-4464-b569-b748bfddd0d7", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.5411764705882353, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "464d74a0-a939-4702-96a1-fba1993dbb70", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.9736842105263158, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "970a8d24-fdeb-4cd3-ac4d-40fb01b4363d", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.4375, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b04b74f1-90d3-4122-94de-3ad0d70aa194", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2eba2620-55f3-441e-a6e3-d6f604cbadcd", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.5604395604395604, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5ce15b24-9054-45d5-a3f1-68374b12a65e", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.620253164556962, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9a551a6d-37f8-417a-9866-0eb8d2deff62", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.8947368421052632, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6027ca82-3237-4e3f-b02d-d17c4dc2531a", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.620253164556962, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cea72d1d-8eb7-4d73-81c8-2167d0fdd345", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "similarity_coefficient": 0.5483870967741935, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "97e99e63-be47-41f6-9f9b-a9e10e1cadba", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3b14926b-4c6d-4a25-890f-5075d6bbfb2c", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "similarity_coefficient": 0.3656716417910448, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "76f76e82-144b-41c6-aad0-77ac96bba847", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6cfc5571-e768-4b74-aa31-858b58d6a192", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.8735632183908046, "overlap_size": 76, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c6fc1d30-e3a3-4d71-860c-d269d1de9585", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.8395061728395061, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "410616a9-32fb-465e-93c7-21a1ec062801", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "44e853cd-d32d-428d-873d-0278f45a1c18", "similarity_coefficient": 0.2634146341463415, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5ff464b9-6b37-4e65-91cb-08ed4390a315", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "69c4b4b7-c9e4-478e-997c-da4e05c3d7ee", "similarity_coefficient": 0.27106227106227104, "overlap_size": 74, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6053d0c5-aaab-4e17-83d0-16a38306b499", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.35664335664335667, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eafab2fc-b858-4b02-b22b-cb6aab45e50c", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.3888888888888889, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2164b0bf-2f44-4d51-b405-6e0d9c28dc2d", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.4016393442622951, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "98fe6edb-2d28-490e-acc2-65229fd5d88c", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "341f894e-1461-4011-8b23-be258a6c9d84", "similarity_coefficient": 0.5604395604395604, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "66f996f5-5dec-4f15-aafc-41385bc11f9e", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.28823529411764703, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "023a4c69-1e5a-4a20-8d89-57f57d457d53", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.2631578947368421, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7e7d2340-4e79-441b-bd68-7dd2055565e1", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6174819d-bc7c-4f14-99d2-32e8cee08d71", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.3875968992248062, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "42044513-ca11-4db4-a8ba-0ef58ac4d3b2", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.5454545454545454, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "68b1be67-77e0-490c-969c-cccd45b8c75a", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "7151a713-c289-49f0-aa66-c156dbd1c164", "similarity_coefficient": 0.3858267716535433, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "380ed1c5-084a-407f-8c9f-a0a3368fb8cd", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.2641509433962264, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "49bf727f-2af1-4d0f-96d3-0afd2c059a6c", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.45, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "38d91f8b-19b4-46d2-8947-a4e1e4b2f649", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.5555555555555556, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ef06a6c3-0ae1-4e80-b885-d11e49a1121e", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "a0a1943b-60df-40e6-8e54-0852991dd573", "similarity_coefficient": 0.3202614379084967, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b65971af-7501-4d4b-b943-460fd3628e36", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eedcac87-83ee-4b22-8bcd-2d8d5f79c189", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bc8109d0-be54-4486-8f5e-f75caee03580", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f3f5cd7b-2b9e-482b-a4c6-5f5a8def06f9", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "64e3fce0-8233-4644-90df-094c8ecd6aee", "similarity_coefficient": 0.47191011235955055, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "948aa6a7-9187-4dbc-a7c2-258517912ab9", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "similarity_coefficient": 0.43243243243243246, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6d91a039-496f-476f-81ab-33d1d079d85f", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6f79182f-f7e7-45e2-bde3-5b112442bb06", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.31645569620253167, "overlap_size": 25, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "152f3a1b-e26d-488c-8b94-b4cd26c63a11", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "01e1e504-0eda-4928-a906-5a3796aa4b08", "similarity_coefficient": 0.68, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d015e083-00c8-4b00-b92d-6d8467cb6a25", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "56a5bb18-f0f8-4196-99c2-f14f5bdb3a90", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.6125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d1138048-ea1e-46ec-a421-5efb89bd3c0b", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "similarity_coefficient": 0.35251798561151076, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3aeadf65-b3bc-4b40-b6fd-a2e52dcb5671", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.41040462427745666, "overlap_size": 71, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eba39071-5288-4789-8b10-5ba6dfe55b5b", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.620253164556962, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "808814eb-5f05-45b9-8f2c-c2aff34b49bf", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.43478260869565216, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5098b5e4-e53b-4f11-9485-68c16d362043", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.620253164556962, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cb12bf09-37bf-4bd9-96aa-840cc6baab62", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.32450331125827814, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ccf28691-ea83-4319-b5e2-3880d5dcd620", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.6172839506172839, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "370a5399-483d-4aa2-a242-4a5a4a2b16c2", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.620253164556962, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dadbe5f0-08e8-4a96-abcf-8497e2613ccc", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.53125, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2f88b749-fd08-45ed-9181-78ba9d0f34b9", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "a5b4ea87-c775-4190-8251-dddda84aad0d", "similarity_coefficient": 0.368, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "329039fa-2a5f-4922-ae2b-d0839d856741", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.5434782608695652, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "97786d9e-9cca-47bb-8309-9b78c9daad1f", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.5609756097560976, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1f8e4bf0-8906-4f21-91ad-36ff575d545f", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.8735632183908046, "overlap_size": 76, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5e376878-ecad-48d3-83ce-62c2c9c8c490", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3b31a73f-51f1-47d7-ba21-9c74a95d6506", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.4336283185840708, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eeca6bc6-841b-4077-9765-ec3a53247786", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.5487804878048781, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "42e3ca9a-7d58-425e-b4a7-471959f33001", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "similarity_coefficient": 0.5271317829457365, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "565f3b1d-28d5-47d9-b4cb-f72b2ecf6c4d", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "similarity_coefficient": 0.5056179775280899, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fd5aedf3-b369-4db1-863a-ad7a7570f35e", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.28735632183908044, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c9353c25-a2d4-4dca-90c4-55156d1cd093", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "167785ef-1af7-4d03-95ae-15ae50443df0", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.5, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "236b4241-1b2a-4bf2-baed-5ac210be43b5", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4c1d1cd4-818d-4372-a862-8d6be5d1216a", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.4144144144144144, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "275a3cce-4aef-4bd6-8cc8-ef683bb4c064", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.6125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6c1e98af-bdea-41d2-821c-51ca9cbd3393", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.5121951219512195, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1c50d680-3461-4b91-8c8e-a438543644d9", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "89f9b55b-b9f9-4833-af32-5c720c203425", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "33c9bcde-076b-467a-8783-02f39f19c5c0", "similarity_coefficient": 0.8395061728395061, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d160bd5f-52f3-4a6a-a4fb-1e8875b5aa74", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "f8a5f9ff-fb62-48b4-ad61-1e4f868172cb", "similarity_coefficient": 0.3173913043478261, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "891152c3-ab74-4f73-952d-be20d3fb80ac", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.8181818181818182, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a592f726-7ab6-459e-a8d6-9030adf63259", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.39766081871345027, "overlap_size": 68, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5f4eb1a2-121a-4459-9681-50aa2dcca2f7", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "similarity_coefficient": 0.368, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bab9546b-f4ca-4a37-8bfb-57590c267fe4", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.33112582781456956, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "08cb71fb-34fe-49df-beef-75639c6bf588", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.2768361581920904, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "75be152b-7ab9-4349-a435-0b639b1ad1ae", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.4065040650406504, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ca67c423-c411-41de-877d-946eb0972557", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "b67a97a8-54b7-4306-be3a-d6518f864d8d", "similarity_coefficient": 0.31601731601731603, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "76286fa0-c8f7-489f-acbb-303f5ebfc47c", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "similarity_coefficient": 0.532608695652174, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6da68bfa-1cdc-4c58-9e68-99bbe7c1e508", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "similarity_coefficient": 0.4152542372881356, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4f331848-fc49-40bd-b114-2f9273227f92", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ecf68b13-fe73-4bb1-92bb-4032faf7b24c", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "891c7880-a77a-4d36-9208-f2c6710e8f73", "similarity_coefficient": 0.9605263157894737, "overlap_size": 73, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ca916a2b-256c-44c2-80d1-6d4c759dcab5", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.6, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "45918fd7-db67-4deb-b639-130377a34704", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.3006134969325153, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "450a3001-f090-43a2-a009-644d38e2ab26", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "similarity_coefficient": 0.5212765957446809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "04b84614-e359-495a-8a81-ed2ef7ef6303", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7af76793-b133-414c-8b8f-24ea11d4b363", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.2914285714285714, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "534a8092-0712-4d67-b089-ec7f9b012155", "source": "ef062941-f404-4409-ad95-58e2b23392c5", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "40e12fa6-0acd-41f2-8375-51e4d62fb8c9", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "5113ac37-1fc0-49eb-9079-857d8c6de83b", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b9a0dff8-741d-49e5-b72c-e449d0bfb72c", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "8ef53438-18a2-407e-b8ec-88e9d0f1ae71", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "20922413-e7d9-4e37-beac-6aa19a56de5a", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "34c676d2-0abd-4a5a-a2df-9ae0361e5354", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d5db173f-b377-45fc-b958-30360120158a", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "e4cabb52-87fa-46a7-b178-1e258678e921", "similarity_coefficient": 0.5112359550561798, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2c4926fe-5af9-4db0-a257-50c26da21b38", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "63486b2d-403f-4323-a4e6-5eb5d73ddc84", "similarity_coefficient": 0.7394957983193278, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "45fa9e19-a0b8-4ea7-bd13-7a5e7e236d6d", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "55ab24e7-ada2-425a-9229-4c3b0a8dbaf8", "similarity_coefficient": 0.7457627118644068, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "151899eb-edda-4e7b-850d-7a509a4a272b", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "45a86eee-2486-4cdc-a743-acc7f1f9ba8f", "similarity_coefficient": 0.4055299539170507, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "70ffc693-6d3d-4d95-b73c-e513f7f4e74c", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "c9191376-38e6-4044-88fd-b5a4c10f24bc", "similarity_coefficient": 0.3876651982378855, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8123e1a4-566a-48c8-a026-bc73b1795ea6", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "b401cb25-9626-4bf4-9dc9-a102b829189a", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b704bf2b-730d-4398-a9a4-d12747a546bb", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "e921ec18-89d3-48c9-aa6a-87acffde047b", "similarity_coefficient": 0.7627118644067796, "overlap_size": 90, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f2802199-a587-4e88-b0ba-eac5b06201f4", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "e317d95d-7299-42da-9e5d-030e294dbe75", "similarity_coefficient": 0.38095238095238093, "overlap_size": 112, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "378decb9-cd63-4b26-aafe-c9071344cdd7", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "fc9e17a0-da5f-418d-818f-47acd87b62b2", "similarity_coefficient": 0.7398373983739838, "overlap_size": 91, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e429015d-3ffd-4176-b2fd-f359c7e2fb65", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "c958df35-81dd-4c14-a692-ac32a8ca50d0", "similarity_coefficient": 0.6311475409836066, "overlap_size": 77, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "820f2b63-ed7a-41f2-93b8-f4f16b72a14d", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "4cebe703-0fa4-4ecd-a6b7-bfd4fecc6391", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e0f5680d-e089-45c0-8837-44e1c8b32098", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "d32818ae-c2e8-42f6-a5e1-39b9e93c95b9", "similarity_coefficient": 0.4943820224719101, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bf62981c-6f58-4a53-8646-1dcb6af2ace8", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "0e8164e5-0430-4cc7-b6a3-37cee7e71126", "similarity_coefficient": 0.5267857142857143, "overlap_size": 59, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "877a752a-a2fb-456e-add9-d6b5a4127070", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "868604a2-809b-43bf-97f8-7d956608ccae", "similarity_coefficient": 0.6521739130434783, "overlap_size": 90, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bc6a30f1-bd6e-4c34-bd26-bd069c8a11cf", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.46632124352331605, "overlap_size": 90, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "af721c63-b935-4694-8cd9-a7efb62ae744", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "afc9d955-c177-42bf-b21d-2b575bd3a89f", "similarity_coefficient": 0.5221238938053098, "overlap_size": 59, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "994c4dd1-467e-4ef7-a5aa-daf97b7feb44", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "8e240300-9c7e-4412-a085-4314945210b7", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b18f06b2-7977-4c5e-aecc-f30167c9ba17", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "e116c0a2-2802-40f8-add9-77d8e5b6abca", "similarity_coefficient": 0.6521739130434783, "overlap_size": 90, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "23cdf130-8bcb-40cb-a37f-7316bcaf6fa4", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "fba653df-f3e4-45e3-bf71-739986879ea9", "similarity_coefficient": 0.30701754385964913, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f1c4e30b-4f82-4560-bf24-f97735f3bf35", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "2f85499a-8ba5-4b57-81ed-6faab231106e", "similarity_coefficient": 0.6423357664233577, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "550849ec-296e-41d2-9ab3-1437e80de4d4", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "374d76b1-e4d5-4516-b105-410699dc6050", "similarity_coefficient": 0.2755905511811024, "overlap_size": 35, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "04193bb4-7a8c-4183-9050-19f3a6934c8c", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "74066e62-8077-4fa7-b449-64cfecdb075a", "similarity_coefficient": 0.7719298245614035, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fb7ed89f-a8fa-4059-9a80-78b06dc1ad56", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "c7502cba-4ca5-4627-b387-1b683d84c98d", "similarity_coefficient": 0.4251207729468599, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0314545a-bd83-4adf-a5f8-9e214e45316b", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "72ef93c3-5d4e-4aa2-81a3-cd2cfca78d54", "similarity_coefficient": 0.5569620253164557, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "57d072f5-7eb8-432e-81f2-700614e9e4ec", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "6f4b0941-ec0f-42c5-b29e-32cc92b35c79", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "05bd52e5-d8ec-4f3b-abdc-1795815fad2b", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "d8540c26-26c9-4f3c-91da-5db659f587c1", "similarity_coefficient": 0.29829545454545453, "overlap_size": 105, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9b6aacf3-521c-43ff-a038-caaea829db74", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "d8ad193d-d926-44e6-90ef-8e8091edbae7", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "23d12ab3-e6e0-4bb0-8ea7-9e2b6a29b63a", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "5fad820d-6345-4761-a2d5-c43052a31a36", "similarity_coefficient": 0.9107142857142857, "overlap_size": 102, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b853788e-3e51-4724-bbe8-90b474f6edba", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "b3b28e76-0b07-46e5-95fa-bf95a6b16197", "similarity_coefficient": 0.4642857142857143, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "503f7ed3-da38-4fa7-ab2b-4cc32d9d9a99", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "a93e32d3-7d38-4409-9061-f2d0cf6f3917", "similarity_coefficient": 0.5132743362831859, "overlap_size": 58, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0ba464ad-dd5d-4f01-a99f-a3aa274f80c9", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "e15e930f-af85-4402-99a6-a57c9368b631", "similarity_coefficient": 0.9333333333333333, "overlap_size": 112, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f3ee781b-980a-4a95-b315-7716db3b3228", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "6846d60f-ba2d-4abf-969f-1e1223cb23d9", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "83cbb3ff-741a-4ae0-aa68-5c7b5ceb232e", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "d541f580-5ddd-482b-ab5f-f2f45d2421c6", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4290af11-0eb6-4547-bdc3-b3c90e325676", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "6af465ff-61a9-4e32-87f4-c7861672032f", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "04a50c9f-c346-4be1-99cc-a4ce07c330b3", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "e45b8507-21ba-4ed2-88e7-49bea133780d", "similarity_coefficient": 0.9333333333333333, "overlap_size": 112, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ef2189ef-0e94-4b6b-a6c2-2e4e0571c453", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "7cbeaede-115c-4f29-b851-e9e01a24f27d", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a76bd5ec-7c61-46bc-ad5c-23d5f9f9ea38", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "f8c4bebd-02db-444a-b35f-8e46a9c85fce", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2b3e6072-fa13-4abb-937b-fa01d0dbb196", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "97063b17-6ecc-4b60-94a5-3f3aa966080d", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9e271556-a198-4115-8fa2-6c22cdbbc12d", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "7ccbc96a-d102-4fbc-a33a-f4ffc6fa643a", "similarity_coefficient": 0.7457627118644068, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "db19a447-e338-40c3-8835-ab48c497a2d6", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "1c7419e2-48df-4a44-a48b-7e04cba4bd09", "similarity_coefficient": 0.7122302158273381, "overlap_size": 99, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b0d2c21a-81a8-4e59-ba7e-6b515a39e0ba", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "0c6d616e-ae9f-43d4-80b1-ae82044ee993", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "45885ab1-7f1b-46c3-b1a9-6bc8fb3f2e3a", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "74d79616-6400-4439-83c7-0371e0b30d34", "similarity_coefficient": 0.624113475177305, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "57469ddd-2d9a-40b6-870b-12c335cee307", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "161e0c49-367f-4271-9b51-73943db8bfe3", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f250c98b-3aa2-4e5b-be4c-95bc365cceba", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "0f76bf3d-441c-41f0-8b5f-0626a2439d13", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c6ebbde5-c553-4227-8d22-43eff75fa0fc", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "fddb7f0f-60cf-41d2-a773-e1939c38d2d0", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9510b3d6-30f0-464b-82a4-48c8bae1c87e", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "042e9d5b-edfd-47bd-beae-ee50a4d57e20", "similarity_coefficient": 0.7719298245614035, "overlap_size": 88, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "544b7774-09e9-44e5-82d9-809219acbcb5", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "2331c39d-cad8-4b4e-aa4f-bf647258c6c6", "similarity_coefficient": 0.9736842105263158, "overlap_size": 111, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9c5eaa81-f82a-48bc-a06a-3bf8742595b5", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "13b2a0b7-01d4-456c-8127-b83526231171", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b5db9129-4f4b-4e78-a9a3-6c0ba78ac1ce", "source": "bf8de42c-6932-48e7-ada9-6619e5c79ce1", "target": "a6809a94-176c-4537-ba93-16b38aad9dea", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2eb2a869-76f5-402b-9d3b-3e1e3f4eaad0", "source": "384c2df2-df70-4202-868a-0a3f136b7ee8", "target": "6b2872ec-b5d1-4d96-8dc1-9f3c00cafd79", "similarity_coefficient": 0.7692307692307693, "overlap_size": 30, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "558ccbf6-12eb-4efd-b6f0-abb3f5039a22", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.7352941176470589, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9576b753-40f4-4f9c-a9c8-c0156fbf0dd9", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 1, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e1a769b9-885a-4019-a7fc-8a4b468ed3b6", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.30718954248366015, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c096c684-a7e9-43e1-9526-61b926871683", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "similarity_coefficient": 0.2784090909090909, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4f607b3c-a416-437b-9475-86a1be98a851", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "341f894e-1461-4011-8b23-be258a6c9d84", "similarity_coefficient": 0.7352941176470589, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b13ffdda-13a8-4e54-9e61-7d9c0e03125f", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.5, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8c303df2-be57-4ad1-90f0-cb748e365d42", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.847457627118644, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "980679f4-0fc1-42d4-b4d6-76acca7fe88a", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "33c9bcde-076b-467a-8783-02f39f19c5c0", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1a0e879b-5928-4b90-bf32-8426e9b91593", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4db9c3a6-6c9f-48b5-93b1-d2cd9b155444", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.3466666666666667, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c64aa198-88cf-4fcf-9e86-e4a5450e8ed6", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ebabe385-57f4-4f18-b629-2773fcd8e4b1", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5b5a3903-f8e1-4903-90d2-8aba1572dbbb", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "22f34cdd-85de-4148-9ad3-7323a097f9fe", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3968f792-27e2-4f86-b935-ed97466aceed", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b4358e51-5489-428c-9634-0385333f461f", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "a5b4ea87-c775-4190-8251-dddda84aad0d", "similarity_coefficient": 0.45544554455445546, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7cadf6a7-2f66-4e83-b2ed-284e2bca5e3c", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "757d2f1e-4729-4a21-914f-a13e0285b888", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "717242fe-3a3f-4c04-99a1-046b85ac9b89", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.532608695652174, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "67f7c216-e148-444f-a69d-174311552087", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8d7c3e2d-00c8-4d4c-a1f8-7c52fb3e9bd4", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "similarity_coefficient": 0.273224043715847, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9607f03b-74a2-4264-83af-517c5d35e5ef", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eb4aa2ea-aee8-464a-a021-7bc0188bcec1", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fdb1c731-8d24-4913-94f8-cd680a9b9292", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.5222222222222223, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0e86b811-06e2-45a5-b2f8-05e680b498f2", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.7758620689655172, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e8ee8b87-2f8c-43ba-abaa-8eb14809bfdc", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "similarity_coefficient": 0.5340909090909091, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dfbf6107-50a3-466a-aeb1-01c16627668a", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "64e3fce0-8233-4644-90df-094c8ecd6aee", "similarity_coefficient": 0.6461538461538462, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "af326dd1-68d7-45f2-a201-2ca7829faf9f", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4dc3970b-fd3f-48cd-8b11-7d6837aee428", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.32, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "64ee6bd3-523c-4e5f-ad9d-ed549f286d35", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3b8c6581-1de4-43dc-a561-79138a3359de", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "similarity_coefficient": 0.5212765957446809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "bf36da24-d853-493a-ab52-45d88dc35d37", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "891c7880-a77a-4d36-9208-f2c6710e8f73", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b24ee4bb-af51-48d5-8102-09037873acda", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.8909090909090909, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "881d78d3-deb4-4c56-bc2d-f269e89c28d2", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.7931034482758621, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5bd26f38-21fb-4516-aae8-e7ff448743e7", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.310126582278481, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f217725a-87fb-4559-9aaa-f8f55ed0b912", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.3202614379084967, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9d14c14a-8351-4108-b79b-bd600c7928ea", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.3828125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "48346498-603d-4576-94c3-1d466c3991c4", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.49, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "abe02ca0-7c28-488c-9593-bfec69124164", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.8909090909090909, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "67781609-6fc3-4806-9972-f47398e27372", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f9f08419-d53c-4050-af37-4b39baad2d58", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "similarity_coefficient": 0.7, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aa7f6b16-43c4-49b4-85a1-6c09a0de40c6", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.9245283018867925, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "32a1bb61-9afc-42c6-be99-d711febc2196", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "afbf9cba-8543-4b1e-9b55-401e63745e05", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a36c73a8-5aa8-4a52-9f85-30ebf63fa8a6", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "abc978e3-9d5a-477d-ba1d-ae641e251807", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "similarity_coefficient": 0.6125, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b71d1a0c-2252-409a-9f7f-cf68479dad70", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.28654970760233917, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a4f1a4c5-c374-414f-baa7-805ef393529f", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.4049586776859504, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a1a24f48-9188-440e-84c4-dc3c005752df", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.7540983606557377, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2577297a-631d-4d0d-b4b8-c8edc133ea36", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.2752808988764045, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5a6551d3-c704-4171-8267-2dc381797797", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.35251798561151076, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "531aec71-3e4d-4644-ba82-e61641a5297e", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cf3e436d-188a-4adc-84bc-81851d7209e0", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "similarity_coefficient": 0.45544554455445546, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "56040268-eeb3-4ce4-a53e-471c23ecbebf", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.550561797752809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "16114540-df78-4f43-9a66-52ea94e3fe5a", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.6571428571428571, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9f7238c3-be03-4431-842c-762681294402", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.5287356321839081, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5172dc64-b698-4014-adfb-20ecd876e528", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.39655172413793105, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f439ad72-661c-4f27-aec9-2c2c2c8d2967", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.3111111111111111, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d2825d0c-d047-4964-9d88-9e168c4ded93", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.875, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2baff0b9-97b3-4965-b354-20be4fd81457", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "similarity_coefficient": 0.7647058823529411, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7f4a984d-d86d-4fa7-910c-62058c2ee15b", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.34558823529411764, "overlap_size": 47, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fc237933-7cda-4f2a-9b3d-05b0bae89684", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2b73c027-b4cc-4933-802e-3441d3a9520f", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "similarity_coefficient": 0.49, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b627bfab-36c4-4d72-9232-29aa84664b70", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "similarity_coefficient": 0.6923076923076923, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "690a718f-ef13-4476-8b44-4725b009cdb1", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.30303030303030304, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a6a90f32-15ac-45f3-8527-3eda8b5833e2", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.8305084745762712, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ba78f882-684e-4c7e-b1f0-b7f0a843f408", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "69edc268-a10a-4db1-b028-769211f5b7b1", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ff5e78e4-a749-4ab4-997d-806d89aa32ba", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "721aea2f-a6de-434b-a053-446b525562da", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.8909090909090909, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5717108f-fecf-4b46-8b50-6f059c95b6f6", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5b520d6b-3d94-48a8-8d27-967867b0829c", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.42857142857142855, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "733b3a68-40f6-4019-aca0-fe4a3ac896b3", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5addf7ce-d0b5-4f79-aeec-ecb31e762145", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.3858267716535433, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ff021be8-d980-4ce2-834e-338255eadc90", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7921d7c7-31a3-4c7d-a24d-88714d744162", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "ef062941-f404-4409-ad95-58e2b23392c5", "similarity_coefficient": 0.620253164556962, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3dc2814b-da65-49ad-b650-fee206b6c80e", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.8596491228070176, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a4598bbb-9b42-4399-ad7f-4f5f9ad0c0a5", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.7796610169491526, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ca9b3c33-130a-49a0-84c3-999766a61213", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8a3218e4-3374-4e4f-aecc-1c6e66b2019e", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "350e0d45-dd69-42a7-9111-7cb967cde674", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 1, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "70c0c50d-4507-4f2d-a468-472ebcbeecee", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "7151a713-c289-49f0-aa66-c156dbd1c164", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "29e6f058-dd55-457c-b820-32985c6e6a86", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.2934131736526946, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "438e4e95-b8da-4277-a385-0d7751dfc1c1", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "a0a1943b-60df-40e6-8e54-0852991dd573", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "fd761888-e87c-404e-9f96-6c048700925e", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.7894736842105263, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f851d003-f1a3-439c-b533-e91295e406a3", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.3356164383561644, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "440321dd-5320-4d6f-ac2a-ecc606950ba6", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "25bcf8ba-0800-4778-9ebb-7953dd8b24f6", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.696969696969697, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "49a54a83-07fa-4fff-890e-f1de6411d45b", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.5316455696202531, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5f90df56-1234-455f-962b-1e72c6194c3b", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f4d82c8d-d4c4-4c42-80bb-a98b3c90a007", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.875, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9e441b0b-d05b-41c4-b243-e4e988fd976a", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "343745ea-9912-4394-bbc6-7ce362883594", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "44e853cd-d32d-428d-873d-0278f45a1c18", "similarity_coefficient": 0.2702702702702703, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d16a55a7-fb3d-46f1-a259-354ab92ab82b", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "59432e97-cd03-4134-b361-c4617c0207ec", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ee219f64-395c-4d57-82f7-f21ed7ce828f", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.28160919540229884, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f568ea94-eae2-495c-9c6d-1ff81f90bbf6", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.3458646616541353, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "275af08f-4545-41ba-9451-9512f9a746f4", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.765625, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5c496d10-18fa-4794-bfd1-6f97753bcd6c", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "01e1e504-0eda-4928-a906-5a3796aa4b08", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "617d0b51-26f1-4d73-ba2a-f59375293b2f", "source": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "target": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "76ef8081-be81-45a2-a789-846c6005fb2a", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "891c7880-a77a-4d36-9208-f2c6710e8f73", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3748362d-5ee3-40c0-88da-9be8ca645441", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "0060546d-05ec-433c-8ca8-fe9550f0d4e3", "similarity_coefficient": 0.45871559633027525, "overlap_size": 50, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "facb2a60-dca6-4e7a-94e1-cb74bc67ce72", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "ea08f366-4fcf-42db-9327-d240798fbafc", "similarity_coefficient": 0.6933333333333334, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b8a00d9f-47da-4c35-b0b3-939e2712d26e", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "d5f7d20a-07a2-4cd6-aeeb-ac3e3e70908b", "similarity_coefficient": 0.7183098591549296, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "81c365e0-72eb-4436-bc86-feb843e36f8d", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "68e7a14b-c228-4a18-b837-3f701c4b0045", "similarity_coefficient": 0.6666666666666666, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "1de8928d-f2ef-4798-b202-77870589e7e6", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "589eb51a-a49b-47e8-8874-1d4ba5a3d29c", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "67f18895-4df2-44b8-8427-c8110e54f6ab", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "d603bd43-39df-46a4-a6d6-57b7c7d7f39d", "similarity_coefficient": 0.26666666666666666, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "589cd909-40ff-4da1-a972-eafb99b473ed", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "057f60df-f570-4015-a108-537ddd9c9013", "similarity_coefficient": 0.625, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5fd39c76-fc37-4f69-aa8b-0bac76f6d784", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "4ec46ee2-fa64-42cf-8539-f1144cf3f3d5", "similarity_coefficient": 0.44680851063829785, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "88c718db-81d3-444f-a109-821e9d2f36bb", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "93a36bc3-a1ff-4155-b4de-d79a69a7a99b", "similarity_coefficient": 0.5306122448979592, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "14cb480b-9070-4f1f-93ad-f3e4b4bea71a", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "f6891175-5036-4132-a888-19181a4f30e9", "similarity_coefficient": 0.7638888888888888, "overlap_size": 55, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "862b109f-cd0f-42bc-a04c-89f124683947", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "c5754971-03d8-46f2-9be9-087b45cee5d9", "similarity_coefficient": 0.46153846153846156, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "541bd275-1bb7-46cd-b1de-f4421fd59a55", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "9c773cdf-5b4c-4087-b47d-7d911fe100c6", "similarity_coefficient": 0.2982456140350877, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "129e950a-2d54-4e88-bdf2-ccc9b996fb15", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "f3d212cf-452e-4306-a42d-b0d520bcda66", "similarity_coefficient": 0.32, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3e220c96-6037-4422-8a18-82d7ba0226e4", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "17001ca0-082f-4154-b4a2-ba7c768a56f3", "similarity_coefficient": 0.5416666666666666, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f9a40938-bf61-4b35-b7e4-e30df1515bed", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "81d5f9de-f51a-4c84-8d39-be1d4b4f7aff", "similarity_coefficient": 0.75, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f238bb65-f8a0-4b1a-9072-58b98bb7ad23", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "b0956e69-6ab5-4c99-ad00-f68529ce85fb", "similarity_coefficient": 0.6052631578947368, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c78a1a19-a25b-453a-ae59-23877bd97069", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "60fcbd33-a668-413b-bd1e-77c9045b3e39", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "490ba6ff-e72f-4fc7-a9f7-310bcc2c4ab0", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "a4828a94-536b-4435-9faa-b69c04af47ff", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "50e9eab6-d7b4-4889-9c70-0c59be8c6751", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "76c05e50-04a9-439d-99a3-211a0b1d6fa3", "similarity_coefficient": 0.2717948717948718, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5d330e17-61eb-4e56-a3c2-c0925412d986", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "cf4240e9-23d6-4a0f-a7f0-b06468c1311a", "similarity_coefficient": 0.532608695652174, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2c837d0d-8e61-4de5-9726-c95cb2b76b8c", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "3e5a21f8-49f3-4cc6-be4b-07469f77da0e", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d3e74f09-1249-4736-b358-a4867520c689", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "9383fc17-bd38-40f2-992f-ffb5181d3bb4", "similarity_coefficient": 0.48214285714285715, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "36ded5db-a70e-4331-a5e0-210a35cf6bbb", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "493c7a26-6cb5-4390-8705-15d2ee98176c", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aaf2dd15-5a61-46d4-a08e-097186b10af1", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "9a562141-c5ce-4385-863e-2c4bd5f95b2c", "similarity_coefficient": 0.4262295081967213, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "be68a561-dbc5-484d-8774-b9d805b9a7f3", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "798cf5c5-8794-4d54-b73e-4b316eb74600", "similarity_coefficient": 0.7, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b1a49249-a7b1-4087-bf27-044dcbcd4cb9", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "fd57832e-5176-4c7e-91e1-eed71dac8b57", "similarity_coefficient": 0.3805970149253731, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f638a03e-770c-4264-bc6c-869712bd4865", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "80017d4c-1ae4-4828-a58f-22bd5e3aa28d", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "30a056bc-aee1-4f81-b162-bd3e68957a6d", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "c48684b6-8836-4a81-8160-62d1535f0af8", "similarity_coefficient": 0.5862068965517241, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f2840e47-5040-44bc-9522-582dd72969da", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "a0a1943b-60df-40e6-8e54-0852991dd573", "similarity_coefficient": 0.3591549295774648, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "53e04c50-bfb0-4129-8580-57a63541147e", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "67b492ed-0fbe-4c89-8666-a7eb4573a1f3", "similarity_coefficient": 0.3108108108108108, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ec85dfc5-f59f-4877-b9a8-2240b10a4fa5", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "341f894e-1461-4011-8b23-be258a6c9d84", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cca70534-8eb7-4d2f-a7c9-9a17917e7dda", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "d3de76ec-75a4-4083-8f04-2b47a03dc261", "similarity_coefficient": 0.2538860103626943, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0d35f266-6e26-4992-a85e-a2af6828a886", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "dd4ca5a3-adbd-475e-b729-d36ab81e4277", "similarity_coefficient": 0.4336283185840708, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "f44cf6c6-1235-41bc-823a-9cd5c8230a78", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "44e853cd-d32d-428d-873d-0278f45a1c18", "similarity_coefficient": 0.26903553299492383, "overlap_size": 53, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b3f52b3b-aa05-4b89-a246-5c2b10c70a8f", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "45a52a44-1bb7-4514-b7b7-9c62dad329f5", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "7c5ae7ef-afa8-43df-a006-ee0787e27578", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "d38c5d0c-ff95-4f3e-bc17-6ba445756cf0", "similarity_coefficient": 0.5098039215686274, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e507ade2-67f8-435a-ac9c-61191cdb3510", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "ef062941-f404-4409-ad95-58e2b23392c5", "similarity_coefficient": 0.5212765957446809, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "59a2974e-475d-4931-b3f6-69a6d855fc30", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "0b5d6aea-e3a1-4246-9dfe-d5964f204c96", "similarity_coefficient": 0.620253164556962, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dbbcd869-c6d7-4eb5-b819-26f231e04dd4", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "7151a713-c289-49f0-aa66-c156dbd1c164", "similarity_coefficient": 0.45217391304347826, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9c200806-6274-4de7-bf7c-7759ae31faac", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "05351587-7c68-4db8-8761-3ac815da5f69", "similarity_coefficient": 0.25925925925925924, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0ead3aca-80b6-4f8f-9c07-9ccd9af272ac", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "01e1e504-0eda-4928-a906-5a3796aa4b08", "similarity_coefficient": 0.4722222222222222, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "00f68e0a-e9e3-42bc-b8d6-ff7dac144a87", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "1ca02c10-6b2c-46ab-9d44-9a85b6d37f01", "similarity_coefficient": 0.6933333333333334, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "24bebc57-0b23-428b-a788-e8286d279ce5", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "f5469753-e87e-4b2e-ad3a-b445ec5dbcfe", "similarity_coefficient": 0.6933333333333334, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "88cf4f7c-6902-4374-878a-36628755662e", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "e0400955-65ba-4451-b139-42c19937c411", "similarity_coefficient": 0.28, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "aa3896de-5d5a-4a16-96ea-c66907240024", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "3c59a604-6f3d-4e66-b8ad-e4d4f03f3900", "similarity_coefficient": 0.375, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9306e748-a7df-4ca4-87ec-d43aae22669f", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "766be637-c201-4e9d-824b-6272fd58cd21", "similarity_coefficient": 0.32075471698113206, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5e179765-7fc4-4909-a385-5e035ae7e7ce", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "011e69bf-1a09-48b4-9772-b4a5ad9cd769", "similarity_coefficient": 0.6075949367088608, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8df3b2e0-b7e5-4b31-93dc-37a8620fd277", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "a8fae829-ebb7-4f7f-9d69-47e4ae73615e", "similarity_coefficient": 0.6712328767123288, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "85e1e8f2-3840-4852-a796-e96ef7bff994", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "4ccfd54f-82c0-4843-899b-f393bec5824b", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "d5d6cbbb-bde8-4d86-ad3b-f2a1b9a7920e", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "1c82b5f4-d98c-4b40-b996-6ff3778937d9", "similarity_coefficient": 0.26344086021505375, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4e2bae74-8850-42de-969e-ca658241bd3a", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "db12c2ef-ee48-4f98-914c-6fb843ffd964", "similarity_coefficient": 0.47058823529411764, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3248b0cc-12d9-459c-85bc-b0e2ecb12965", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "fa183792-34fc-4acf-bfca-d1c76db29c64", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "828ae3fc-73ae-4782-a32d-d2b4174048fd", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "93dff373-c8ed-4123-b36d-807e22ed4dd3", "similarity_coefficient": 0.7, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eb47af93-1b60-4baf-afe7-d80adec147d2", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "a5b4ea87-c775-4190-8251-dddda84aad0d", "similarity_coefficient": 0.39655172413793105, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2b217fff-e76a-47d1-a1ad-551644c21c9e", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "2802f388-3dd8-4306-9072-34d23d7d9ac9", "similarity_coefficient": 0.5887850467289719, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3fef97b9-91ed-4242-b6db-3ea50fa40e0c", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "64e3fce0-8233-4644-90df-094c8ecd6aee", "similarity_coefficient": 0.525, "overlap_size": 42, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "855afac7-e2de-412a-b7a4-69fa3dcd4173", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "29148747-c3e3-43fc-88c8-596eda7dcfc9", "similarity_coefficient": 0.39416058394160586, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c41d54b0-5ff8-4d5d-89fe-2f46f1d56b32", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "73f2368e-828b-4156-bd7f-8e07bc3a1c67", "similarity_coefficient": 0.7, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "25504cf8-fc75-4274-b8ef-6a88266ac727", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "6e924a83-3b8c-4c0b-91a8-24a3f3ed8f1a", "similarity_coefficient": 0.7, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "96cbceea-63db-47db-aa13-0f5f80c68447", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "e682b67b-bd68-4c3b-a704-daf22703d592", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e700e2e3-8b3d-4745-aa90-41f17afe3659", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "eb59fb66-6ef3-40e0-ab5e-8de49da63d89", "similarity_coefficient": 0.5169491525423728, "overlap_size": 61, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "09a9adc3-f6fe-478f-bd47-75747f62708a", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "57d94b89-2690-4568-a2e6-54350ce7270c", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "01264b0c-3e2a-4b90-a2c4-d3369860d78d", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "9a7016d8-c02a-4546-9c63-8a56fa582768", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5ac40c36-8b34-4670-8d10-7901db201794", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "839a9a42-9c7b-4e92-b701-f5757d067e6f", "similarity_coefficient": 0.7, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "9e759f61-0b65-48f4-901d-c7dd0f36a258", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "86486123-1382-45de-a35c-8b2fb38f5917", "similarity_coefficient": 0.8375, "overlap_size": 67, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cdfc8f7a-faf0-4582-a4d3-34c984187387", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "5d63ca4c-f2f0-4b24-92fa-6794f07a38c2", "similarity_coefficient": 0.7428571428571429, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8a856b60-0a7d-4baa-9ed2-8521fcd57e41", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "5cd3a9d3-1a38-4e39-b35e-b578f19effb2", "similarity_coefficient": 0.3380281690140845, "overlap_size": 24, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "67575dd9-dbcb-4bd9-aeef-6349d9c6889c", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "4e28369f-a01f-4d75-8b48-34ed4982ebac", "similarity_coefficient": 0.5098039215686274, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "5a5e2854-b55f-45d9-adc0-90b1920bbac0", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "1204f999-dac0-42fb-8576-91fe9be9c2d3", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3244d380-f09d-4c7c-a5a1-479a36dea121", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "04ea30a0-7312-41f6-b859-9e304fe95c67", "similarity_coefficient": 0.5862068965517241, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a3279fb1-5f99-45ec-a937-6c7d0a3f3528", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "dc2ee0ea-26c8-4e4a-8108-3d6ac6a0f7b9", "similarity_coefficient": 0.3722627737226277, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "e7f99ece-a131-42dc-b86b-ff2a6c86870c", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "b2d317e7-8483-46f8-b719-f9fdedc1f2f8", "similarity_coefficient": 0.2874251497005988, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "a6d9b074-e029-40da-a615-24e156fc8145", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "11a77808-6dbd-4489-b974-4b2be36afc05", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "453a0e78-70a4-459f-b4f8-14faadd7a26a", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "3aa6389f-1c06-410b-a2af-9280a9c8bb60", "similarity_coefficient": 0.5625, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8100df01-0b1b-48cb-96df-ae43f1a7a875", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "412c2f5e-80df-4720-b071-d87cc4617b5b", "similarity_coefficient": 0.6164383561643836, "overlap_size": 45, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eb55f407-37c0-4a77-a5b7-2ebc213f00a5", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "1ba7100c-b28c-4c35-80c8-e65013448d79", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "eb61644f-6111-4f14-ab07-860b56c6c5e7", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "b6328d2d-f76b-4635-b83c-6ebff3e850b3", "similarity_coefficient": 0.3872832369942196, "overlap_size": 67, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "10b10424-6e78-4e60-ba8a-9b44bde6cb9a", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "e190190f-e833-4b39-88d0-1b84b8bae8ed", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "cd25821d-0c42-4ed4-97a7-79885af10f1f", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "c813804a-d0e7-423b-a28b-689f94ff466a", "similarity_coefficient": 0.3511450381679389, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c02f0bbf-1fc9-4329-8882-4a4ce3f2ac14", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "0858b3f8-c7b6-4c4b-8fe8-9886e3af4c80", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "09537b40-c2f2-4d3f-8d18-476f2cea5012", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "3d5e2ff0-3b0f-4cc1-a80b-f07f4dc817ba", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "53df32ac-f3fe-422f-bcb4-c245fec316a0", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "94e038b8-a88d-44dd-b1ed-71c7c16436a7", "similarity_coefficient": 0.75, "overlap_size": 54, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "2545c725-3add-4bf7-aaa2-d117ccde2c0a", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "6bf0e316-511e-47c8-a951-3f240692586a", "similarity_coefficient": 0.4883720930232558, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "22cbeccc-f6d8-4850-ac94-4e9e49c9e9a7", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "b0347db5-2777-46d3-97cc-0a03e208977f", "similarity_coefficient": 0.48, "overlap_size": 48, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6227590b-a50c-4719-9388-68415ce204e8", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "38280cb7-b6bd-41de-8e80-ed310a3524fc", "similarity_coefficient": 0.7, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "b1c82d8a-5f17-4eac-bc03-d19e116026dd", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "a3de4a0b-732a-4f42-bb4f-aca4484a6be1", "similarity_coefficient": 0.5411764705882353, "overlap_size": 46, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8691a55d-d9de-44fe-bf11-49f1092dc1ce", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "da36b1db-5cf9-45cc-a85a-1e4da4e58096", "similarity_coefficient": 0.2849162011173184, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "6d6b79aa-1fbd-4dfd-882d-8c480c2485fd", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "33c9bcde-076b-467a-8783-02f39f19c5c0", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "4ee9e9b1-a975-48f7-a17d-8e32f4188c0c", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "7ffcaa0f-072f-4626-9681-43fa571dd10b", "similarity_coefficient": 0.4594594594594595, "overlap_size": 51, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "8cf0d273-ed65-4770-91a4-d19f96901237", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "ee5b18da-f9b0-4793-8eb3-0122c3786fca", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "55a5beca-74e1-4a3c-ba7c-feaeede17f31", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "0f1bc04c-de8e-40ee-b29f-94fb05ff2994", "similarity_coefficient": 0.49056603773584906, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "3b46e7ac-ab8a-450d-aba5-ba637778ef3e", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "0ee6967a-c36c-459c-b57a-eb1db5497e74", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "744e92e1-43e9-4dd6-9c50-25e4378b1091", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "4d56bc84-8798-41e4-8497-d9cb0cb9ff6f", "similarity_coefficient": 0.6237623762376238, "overlap_size": 63, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "c728a4df-12aa-4ad0-9f00-a51b97e056df", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "f8f8bb80-c971-4c78-868d-14b163a98028", "similarity_coefficient": 0.391025641025641, "overlap_size": 61, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "ccdf53fc-13ed-428b-99b6-9635806ef5a8", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "1ddfbc6f-9740-4ee0-ae01-0d9b1d8e29a3", "similarity_coefficient": 0.2916666666666667, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "76746c75-37da-4dc6-bbea-90107d7fb77c", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "cc7bf335-a96a-4b96-9719-3b9ca357007b", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "0a56b862-ded1-4077-8c12-5d5c2fe9dba8", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "fb4394c2-d29c-46d1-a240-bc9a64a49168", "similarity_coefficient": 0.3443708609271523, "overlap_size": 52, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "88286fcb-1d1e-46d1-ae27-8d19c39213e8", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "6c8c49fc-7455-40a6-b878-baba5a9df39b", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "25252df1-a239-4493-93a6-02af3f222428", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "b6fea667-92eb-454f-a567-f6b38784bd26", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" }, { "data": { "id": "dee3c261-e688-4800-9eb1-9f9389c328f3", "source": "95936832-b64d-492e-9e46-98c1393697fa", "target": "9e4f8106-d136-45d5-8474-83091f2c249b", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49, "collapsed": true }, "position": { "x": 0, "y": 0 }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "pannable": true, "classes": "" } ] }, "data": { "id": "9200cbef-0895-460f-a352-fff52b2128ed", "name": "GSE129943_rsem_counts_ENS_expr", "parameters": { "pvalue": 1, "qvalue": 0.05, "filterByExpressions": false, "similarityMetric": "JACCARD", "similarityCutoff": 0.25, "combinedConstant": 0.5, "fdr": true, "edgeStrategy": "AUTOMATIC", "enrichmentEdgeType": "Geneset_Overlap" }, "geneSetCollection": "Human_GOBP_AllPathways_noPFOCR_no_GO_iea_May_01_2024_symbol.gmt", "demo": false, "loaded": true }, "zoomingEnabled": true, "userZoomingEnabled": true, "zoom": 0.1998582535000118, "minZoom": 0.04996456337500295, "maxZoom": 2, "panningEnabled": true, "userPanningEnabled": true, "pan": { "x": 15.795889351500364, "y": 115.86768764928715 }, "boxSelectionEnabled": true, "renderer": { "name": "null" } } ================================================ FILE: debug/webgl/network-images.json ================================================ { "elements": { "nodes": [ { "data": { "id": "n1", "weight": 1 }, "position": { "x": -29, "y": 26 } }, { "data": { "id": "n2", "weight": 2 }, "position": { "x": 77, "y": -15 } }, { "data": { "id": "n3", "weight": 3 }, "position": { "x": 178, "y": 36 } }, { "data": { "id": "n4", "weight": 4 }, "position": { "x": -17, "y": 146 } }, { "data": { "id": "n5", "weight": 5 }, "position": { "x": 134, "y": 157 } } ], "edges": [ { "data": { "id":"n1-n2", "source": "n1", "target": "n2", "directed": "false" } }, { "data": { "id":"n1-n3", "source": "n1", "target": "n3", "directed": "false" } }, { "data": { "id":"n1-n4", "source": "n1", "target": "n4", "directed": "false" } }, { "data": { "id":"n1-n5", "source": "n1", "target": "n5", "directed": "false" } }, { "data": { "id":"n2-n3", "source": "n2", "target": "n3", "directed": "false" } }, { "data": { "id":"n2-n4", "source": "n2", "target": "n4", "directed": "false" } }, { "data": { "id":"n2-n5", "source": "n2", "target": "n5", "directed": "false" } }, { "data": { "id":"n3-n4", "source": "n3", "target": "n4", "directed": "false" } }, { "data": { "id":"n3-n5", "source": "n3", "target": "n5", "directed": "false" } }, { "data": { "id":"n4-n5", "source": "n4", "target": "n5", "directed": "false" } } ] }, "style": [ { "selector": "node", "style": { "label": "data(id)", "text-valign": "top", "color": "#000000", "background-color": "#3a7ecf", "font-family": "Helvetica", "background-fit": "cover", "font-size": "8px", "border-color": "darkblue", "border-width": 2 } }, { "selector": "#n1", "style": { "background-image": "https://picsum.photos/601" } }, { "selector": "#n2", "style": { "background-image": "https://picsum.photos/602" } }, { "selector": "#n3", "style": { "background-image": "https://picsum.photos/603" } }, { "selector": "#n4", "style": { "background-image": "https://picsum.photos/604" } }, { "selector": "#n5", "style": { "background-image": "https://picsum.photos/605" } } ] } ================================================ FILE: debug/webgl/network-ndex-large-style.json ================================================ { "format_version" : "1.0", "generated_by" : "cytoscape-3.10.3", "target_cytoscapejs_version" : "~2.1", "title" : "Coessentiality Network Avana-Style", "style" : [ { "selector" : "node", "style" : { "shape" : "rectangle", "background-opacity" : 1.0, "border-color" : "rgb(0,0,0)", "border-opacity" : 1.0, "font-size" : 14, "font-family" : "Dialog", "font-weight" : "normal", "height" : 40.0, "border-width" : 0.0, "color" : "rgb(0,0,0)", "width" : 40.0, "text-valign" : "center", "text-halign" : "center", "background-color" : "rgb(102,102,102)", "text-opacity" : 1.0, "content" : "data(name)" } }, { "selector" : "node[MCL = 1]", "style" : { "background-color" : "rgb(197,37,49)" } }, { "selector" : "node[MCL = 2]", "style" : { "background-color" : "rgb(98,10,133)" } }, { "selector" : "node[MCL = 3]", "style" : { "background-color" : "rgb(118,38,48)" } }, { "selector" : "node[MCL = 4]", "style" : { "background-color" : "rgb(223,165,170)" } }, { "selector" : "node[MCL = 5]", "style" : { "background-color" : "rgb(72,87,141)" } }, { "selector" : "node[MCL = 6]", "style" : { "background-color" : "rgb(109,122,243)" } }, { "selector" : "node[MCL = 7]", "style" : { "background-color" : "rgb(53,137,159)" } }, { "selector" : "node[MCL = 8]", "style" : { "background-color" : "rgb(178,240,191)" } }, { "selector" : "node[MCL = 9]", "style" : { "background-color" : "rgb(100,192,19)" } }, { "selector" : "node[MCL = 10]", "style" : { "background-color" : "rgb(225,164,119)" } }, { "selector" : "node[MCL = 11]", "style" : { "background-color" : "rgb(33,3,237)" } }, { "selector" : "node[MCL = 12]", "style" : { "background-color" : "rgb(74,59,107)" } }, { "selector" : "node[MCL = 13]", "style" : { "background-color" : "rgb(76,252,252)" } }, { "selector" : "node[MCL = 14]", "style" : { "background-color" : "rgb(64,50,197)" } }, { "selector" : "node[MCL = 15]", "style" : { "background-color" : "rgb(94,141,192)" } }, { "selector" : "node[MCL = 16]", "style" : { "background-color" : "rgb(166,247,140)" } }, { "selector" : "node[MCL = 17]", "style" : { "background-color" : "rgb(201,250,144)" } }, { "selector" : "node[MCL = 18]", "style" : { "background-color" : "rgb(156,254,199)" } }, { "selector" : "node[MCL = 19]", "style" : { "background-color" : "rgb(195,85,79)" } }, { "selector" : "node[MCL = 20]", "style" : { "background-color" : "rgb(160,14,217)" } }, { "selector" : "node[MCL = 21]", "style" : { "background-color" : "rgb(35,191,93)" } }, { "selector" : "node[MCL = 22]", "style" : { "background-color" : "rgb(63,236,129)" } }, { "selector" : "node[MCL = 23]", "style" : { "background-color" : "rgb(123,59,244)" } }, { "selector" : "node[MCL = 24]", "style" : { "background-color" : "rgb(4,22,64)" } }, { "selector" : "node[MCL = 25]", "style" : { "background-color" : "rgb(8,212,129)" } }, { "selector" : "node[MCL = 26]", "style" : { "background-color" : "rgb(173,59,163)" } }, { "selector" : "node[MCL = 27]", "style" : { "background-color" : "rgb(206,207,54)" } }, { "selector" : "node[MCL = 28]", "style" : { "background-color" : "rgb(243,182,239)" } }, { "selector" : "node[MCL = 29]", "style" : { "background-color" : "rgb(33,150,126)" } }, { "selector" : "node[MCL = 30]", "style" : { "background-color" : "rgb(76,119,10)" } }, { "selector" : "node:selected", "style" : { "background-color" : "rgb(255,255,0)" } }, { "selector" : "edge", "style" : { "line-style" : "solid", "opacity" : 1.0, "target-arrow-shape" : "none", "target-arrow-color" : "rgb(0,0,0)", "width" : 12.0, "font-family" : "Dialog", "font-weight" : "normal", "text-opacity" : 1.0, "source-arrow-color" : "rgb(0,0,0)", "font-size" : 10, "color" : "rgb(0,0,0)", "line-color" : "rgb(204,204,204)", "source-arrow-shape" : "none", "content" : "data(interaction)" } }, { "selector" : "edge:selected", "style" : { "line-color" : "rgb(255,0,0)" } } ] } ================================================ FILE: debug/webgl/network-ndex-large.json ================================================ [File too large to display: 31.6 MB] ================================================ FILE: debug/webgl/network-ndex-x-large-style.json ================================================ { "format_version" : "1.0", "generated_by" : "cytoscape-3.10.3", "target_cytoscapejs_version" : "~2.1", "title" : "Regulon LIHC - Liver Hepatocellular Carcinoma-Style", "style" : [ { "selector" : "node", "css" : { "height" : 40.0, "border-width" : 2.0, "font-family" : "Dialog", "font-weight" : "normal", "background-opacity" : 1.0, "background-color" : "rgb(102,204,255)", "color" : "rgb(0,0,0)", "font-size" : 14, "border-opacity" : 1.0, "text-opacity" : 1.0, "border-color" : "rgb(0,102,255)", "shape" : "vee", "width" : 75.0, "text-valign" : "bottom", "text-halign" : "center", "content" : "data(name)" } }, { "selector" : "node[Node_Type = 'TF']", "css" : { "height" : 55.0 } }, { "selector" : "node[Node_Type = 'TF']", "css" : { "background-color" : "rgb(51,102,255)" } }, { "selector" : "node[Node_Type = 'TF']", "css" : { "width" : 95.0 } }, { "selector" : "node[Node_Type = 'TF']", "css" : { "color" : "rgb(255,255,255)" } }, { "selector" : "node[Node_Type = 'TF']", "css" : { "text-valign" : "center" } }, { "selector" : "node[Node_Type = 'TF']", "css" : { "shape" : "diamond" } }, { "selector" : "node[Node_Type = 'TF']", "css" : { "border-color" : "rgb(0,0,153)" } }, { "selector" : "node:selected", "css" : { "background-color" : "rgb(255,153,51)" } }, { "selector" : "edge", "css" : { "text-opacity" : 1.0, "line-color" : "rgb(132,132,132)", "source-arrow-color" : "rgb(0,0,0)", "font-family" : "Dialog", "font-weight" : "normal", "target-arrow-color" : "rgb(0,0,0)", "content" : "", "opacity" : 1.0, "width" : 1.0, "line-style" : "solid", "font-size" : 10, "source-arrow-shape" : "none", "color" : "rgb(0,0,0)", "target-arrow-shape" : "none" } }, { "selector" : "edge[Mechanism_of_Action > 1]", "css" : { "line-color" : "rgb(0,153,102)" } }, { "selector" : "edge[Mechanism_of_Action = 1]", "css" : { "line-color" : "rgb(0,153,102)" } }, { "selector" : "edge[Mechanism_of_Action > 0][Mechanism_of_Action < 1]", "css" : { "line-color" : "mapData(Mechanism_of_Action,0,1,rgb(247,247,247),rgb(0,153,102))" } }, { "selector" : "edge[Mechanism_of_Action > -1][Mechanism_of_Action < 0]", "css" : { "line-color" : "mapData(Mechanism_of_Action,-1,0,rgb(204,0,51),rgb(247,247,247))" } }, { "selector" : "edge[Mechanism_of_Action = -1]", "css" : { "line-color" : "rgb(204,0,51)" } }, { "selector" : "edge[Mechanism_of_Action < -1]", "css" : { "line-color" : "rgb(204,0,51)" } }, { "selector" : "edge[Likelihood > 1]", "css" : { "width" : 1.0 } }, { "selector" : "edge[Likelihood = 1]", "css" : { "width" : 10.0 } }, { "selector" : "edge[Likelihood > 0][Likelihood < 1]", "css" : { "width" : "mapData(Likelihood,0,1,1.0,10.0)" } }, { "selector" : "edge[Likelihood = 0]", "css" : { "width" : 1.0 } }, { "selector" : "edge[Likelihood < 0]", "css" : { "width" : 1.0 } }, { "selector" : "edge:selected", "css" : { "line-color" : "rgb(255,0,0)" } } ] } ================================================ FILE: debug/webgl/network-styles.json ================================================ { "elements": { "nodes": [ { "data": { "id": "n1", "weight": 1 }, "position": { "x": -29, "y": 26 } }, { "data": { "id": "n2", "weight": 2 }, "position": { "x": 77, "y": -15 } }, { "data": { "id": "n3", "weight": 3 }, "position": { "x": 178, "y": 36 } }, { "data": { "id": "n4", "weight": 4 }, "position": { "x": -17, "y": 146 } }, { "data": { "id": "n5", "weight": 5 }, "position": { "x": 134, "y": 160 } }, { "data": { "id": "n6", "weight": 5 }, "position": { "x": 134, "y": 195 } }, { "data": { "id": "n7", "weight": 5 }, "position": { "x": 134, "y": 225 } }, { "data": { "id": "n7i", "weight": 5 }, "position": { "x": 20, "y": 225 } }, { "data": { "id": "n7o", "weight": 5 }, "position": { "x": 250, "y": 225 } }, { "data": { "id": "n8", "weight": 5 }, "position": { "x": 134, "y": 275 } }, { "data": { "id": "n9", "weight": 5 }, "position": { "x": 134, "y": 315 } } ], "edges": [ { "data": { "id":"n1-n2", "source": "n1", "target": "n2", "directed": "false" } }, { "data": { "id":"n1-n3", "source": "n1", "target": "n3", "directed": "false" } }, { "data": { "id":"n1-n4", "source": "n1", "target": "n4", "directed": "false" } }, { "data": { "id":"n1-n5", "source": "n1", "target": "n5", "directed": "false" } }, { "data": { "id":"n2-n3", "source": "n2", "target": "n3", "directed": "false" } }, { "data": { "id":"n2-n4", "source": "n2", "target": "n4", "directed": "false" } }, { "data": { "id":"n2-n5", "source": "n2", "target": "n5", "directed": "false" } }, { "data": { "id":"n3-n4", "source": "n3", "target": "n4", "directed": "false" } }, { "data": { "id":"n3-n5", "source": "n3", "target": "n5", "directed": "false" } }, { "data": { "id":"n4-n5", "source": "n4", "target": "n5", "directed": "false" } }, { "data": { "id":"n1-n2-2", "source": "n1", "target": "n2", "directed": "false" } }, { "data": { "id":"n1-n2-3", "source": "n1", "target": "n2", "directed": "false" } }, { "data": { "id":"n1-n2-4", "source": "n1", "target": "n2", "directed": "false" } } ] }, "style": [ { "selector": "node", "style": { "label": "data(id)", "text-valign": "center", "color": "#000000", "background-color": "#3a7ecf", "font-family": "Helvetica" } }, { "selector": "#n1", "style": { "background-fill": "linear-gradient", "background-gradient-stop-colors": "cyan magenta yellow", "underlay-color": "red", "underlay-shape": "round-rectangle", "underlay-opacity": 0.5 } }, { "selector": "#n2", "style": { "border-color": "black", "border-width": 2, "background-image": "https://picsum.photos/600", "background-fit": "cover", "text-valign": "top", "label": "n2 (random image)", "font-size": "8px" } }, { "selector": "#n3", "style": { "background-fill": "radial-gradient", "background-gradient-stop-colors": "cyan magenta yellow", "text-valign": "top", "text-rotation": 0.7853981633974483, "label": "n3 - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod", "text-events": "yes" } }, { "selector": "#n4", "style": { "border-color": "black", "border-style": "dashed", "border-width": 2, "background-opacity": 0.0 } }, { "selector": "#n5", "style": { "width": 100, "border-color": "red", "border-style": "dotted", "border-width": 4, "background-opacity": 0.5, "label": "n5\nsecond line\nthird line\nfourth line", "font-size": 10, "text-valign": "top", "text-wrap": "wrap", "text-rotation": 0.0 } }, { "selector": "#n6", "style": { "shape": "rectangle", "border-width": 0, "width": 100, "background-opacity": 0.5, "background-color": "green", "padding": 0 } }, { "selector": "#n7", "style": { "shape": "ellipse", "border-width": 5, "border-opacity": 0.5, "width": 100, "background-opacity": 0.5, "background-color": "orange" } }, { "selector": "#n7i", "style": { "shape": "ellipse", "border-width": 5, "border-opacity": 0.5, "width": 100, "background-opacity": 0.5, "background-color": "orange", "border-position": "inside" } }, { "selector": "#n7o", "style": { "shape": "ellipse", "border-width": 5, "border-opacity": 0.5, "width": 100, "background-opacity": 0.5, "background-color": "orange", "border-position": "outside" } }, { "selector": "#n8", "style": { "shape": "roundrectangle", "corner-radius": 10, "border-width": 0, "width": 100, "height": 30, "background-opacity": 0.5, "background-color": "purple" } }, { "selector": "#n9", "style": { "shape": "bottom-round-rectangle", "corner-radius": 20, "border-width": 0, "width": 100, "height": 30, "background-opacity": 0.5, "background-color": "mediumpurple" } }, { "selector": "node:selected", "style": { "border-color": "yellow", "border-opacity": 1, "border-width": 2 } }, { "selector": "edge", "style": { "width": 2, "line-color": "#3a7ecf", "opacity": 0.5, "curve-style": "bezier" } }, { "selector": "#n1-n2", "style": { "line-style": "solid" } }, { "selector": "#n1-n3", "style": { "line-style": "dotted" } }, { "selector": "#n1-n4", "style": { "line-style": "dashed" } }, { "selector": "#n1-n5", "style": { "line-style": "dashed", "line-dash-pattern": [1, 1, 4, 1] } }, { "selector": "#n2-n3", "style": { "line-fill": "linear-gradient", "line-gradient-stop-colors": "lawngreen red" } }, { "selector": "#n2-n4", "style": { "label": "normal label", "font-size": "6px", "edge-text-rotation": "autorotate" } }, { "selector": "#n2-n5", "style": { "label": "bold label", "font-size": "6px", "edge-text-rotation": "autorotate", "font-weight": "bold" } }, { "selector": "#n3-n4", "style": { "source-arrow-shape": "triangle", "source-arrow-color": "red", "target-arrow-shape": "triangle", "target-arrow-color": "green", "curve-style": "straight", "label": "mid", "source-label": "source", "target-label": "target", "edge-text-rotation": "autorotate", "font-size": "10px", "source-text-offset": "20px", "target-text-offset": "20px" } } ] } ================================================ FILE: debug/webgl/network-white-matter-style.json ================================================ { "format_version" : "1.0", "generated_by" : "cytoscape-3.11.0-SNAPSHOT", "target_cytoscapejs_version" : "~2.1", "title" : "Copy of Genetic white matter disorders expanded network-Style", "style" : [ { "selector" : "node", "css" : { "text-valign" : "bottom", "text-halign" : "right", "color" : "rgb(0,0,0)", "border-width" : 0.0, "text-opacity" : 1.0, "width" : 15.0, "font-size" : 8, "background-color" : "rgb(255,255,255)", "shape" : "ellipse", "height" : 15.0, "border-opacity" : 1.0, "font-family" : "Dialog", "font-weight" : "normal", "border-color" : "rgb(0,153,0)", "background-opacity" : 1.0, "content" : "data(alias)" } }, { "selector" : "node[Classification = 'candidate']", "css" : { "background-color" : "rgb(0,153,255)" } }, { "selector" : "node[Classification = 'WM']", "css" : { "background-color" : "rgb(255,255,51)" } }, { "selector" : "node[Classification = 'WMexpanded']", "css" : { "background-color" : "rgb(0,204,153)" } }, { "selector" : "node:selected", "css" : { "background-color" : "rgb(255,255,0)" } }, { "selector" : "edge", "css" : { "content" : "", "target-arrow-color" : "rgb(0,0,0)", "font-size" : 10, "line-color" : "rgb(0,153,0)", "opacity" : 0.19607843137254902, "font-family" : "Dialog", "font-weight" : "normal", "source-arrow-color" : "rgb(0,0,0)", "line-style" : "solid", "width" : 2.0, "text-opacity" : 1.0, "source-arrow-shape" : "none", "target-arrow-shape" : "none", "color" : "rgb(0,0,0)" } }, { "selector" : "edge:selected", "css" : { "line-color" : "rgb(255,0,0)" } } ] } ================================================ FILE: debug/webgl/network-white-matter.json ================================================ { "format_version" : "1.0", "generated_by" : "cytoscape-3.11.0-SNAPSHOT", "target_cytoscapejs_version" : "~2.1", "data" : { "rightsHolder" : "Agatha Schlüter", "disease" : "Genetic white matter disorders", "organism" : "Homo Sapiens", "Blue" : "GWMD Candidate", "author" : "Agatha Schlüter", "__Annotations" : [ ], "shared_name" : "Copy of Genetic white matter disorders expanded network", "reference" : "Agatha Schlüter, Agustí Rodríguez-Palmero, Edgard Verdura, Valentina Vélez-Santamaría, Montserrat Ruiz, Stéphane Fourcade, Laura Planas-Serra, Juan José Martínez, Cristina Guilera, Marisa Girós, Rafael Artuch, María Eugenia Yoldi, Mar O'Callaghan, Angels García-Cazorla, Judith Armstrong, Itxaso Marti, Elisabet Mondragón Rezola, Claire Redin, Jean Louis Mandel, David Conejo, Concepción Sierra-Córcoles, Sergi Beltran, Marta Gut, Elida Vázquez, Mireia del Toro, Mónica Troncoso, Luis A. Pérez-Jurado, Luis G. Gutiérrez-Solana, Adolfo López de Munain, Carlos Casasnovas, Sergio Aguilera-Albesa, Alfons Macaya, Aurora Pujol
Diagnosis of Genetic White Matter Disorders by Singleton Whole-Exome and Genome Sequencing Using Interactome-Driven Prioritization
Neurology Publish Ahead of Print, (2022)
10.1212/WNL.0000000000013278", "Yellow" : "GWMD seed", "rights" : "GNU General Public License (GPL)", "name" : "Copy of Genetic white matter disorders expanded network", "SUID" : 128, "Green" : "GWMD expanded", "selected" : true }, "elements" : { "nodes" : [ { "data" : { "id" : "6189", "shared_name" : "54676", "Matching_Attribute" : [ "54676" ], "Classification" : "WMexpanded", "name" : "54676", "alias" : "GTPBP2", "SUID" : 6189, "selected" : false }, "position" : { "x" : -147.12460760277804, "y" : 370.5030020013344 }, "selected" : false }, { "data" : { "id" : "6185", "shared_name" : "4035", "Matching_Attribute" : [ "4035" ], "Classification" : "WMexpanded", "name" : "4035", "alias" : "LRP1", "SUID" : 6185, "selected" : false }, "position" : { "x" : -126.12460760277804, "y" : -12.49699799866562 }, "selected" : false }, { "data" : { "id" : "6181", "shared_name" : "84987", "degree_layout" : 113, "Matching_Attribute" : [ "84987" ], "Classification" : "WM", "name" : "84987", "alias" : "COX14", "SUID" : 6181, "selected" : false }, "position" : { "x" : -385.12460760277804, "y" : 230.50300200133438 }, "selected" : false }, { "data" : { "id" : "6177", "shared_name" : "50628", "Matching_Attribute" : [ "50628" ], "Classification" : "WM", "name" : "50628", "alias" : "GEMIN4", "SUID" : 6177, "selected" : false }, "position" : { "x" : 140.87539239722196, "y" : 197.50300200133438 }, "selected" : false }, { "data" : { "id" : "6173", "shared_name" : "23732", "Matching_Attribute" : [ "23732" ], "Classification" : "WMexpanded", "name" : "23732", "alias" : "FRRS1L", "SUID" : 6173, "selected" : false }, "position" : { "x" : 960.875392397222, "y" : -854.4969979986656 }, "selected" : false }, { "data" : { "id" : "6169", "shared_name" : "4088", "Matching_Attribute" : [ "4088" ], "Classification" : "WMexpanded", "name" : "4088", "alias" : "SMAD3", "SUID" : 6169, "selected" : false }, "position" : { "x" : -6.124607602778042, "y" : -58.49699799866562 }, "selected" : false }, { "data" : { "id" : "6165", "shared_name" : "2629", "degree_layout" : 53, "Matching_Attribute" : [ "2629" ], "Classification" : "WMexpanded", "name" : "2629", "alias" : "GBA", "SUID" : 6165, "selected" : false }, "position" : { "x" : -317.12460760277804, "y" : -212.49699799866562 }, "selected" : false }, { "data" : { "id" : "6161", "shared_name" : "6663", "degree_layout" : 4, "Matching_Attribute" : [ "6663" ], "Classification" : "WM", "name" : "6663", "alias" : "SOX10", "SUID" : 6161, "selected" : false }, "position" : { "x" : 425.87539239722196, "y" : -289.4969979986656 }, "selected" : false }, { "data" : { "id" : "6157", "shared_name" : "3735", "degree_layout" : 124, "Matching_Attribute" : [ "3735" ], "Classification" : "WM", "name" : "3735", "alias" : "KARS1", "SUID" : 6157, "selected" : false }, "position" : { "x" : -218.12460760277804, "y" : 193.50300200133438 }, "selected" : false }, { "data" : { "id" : "6153", "shared_name" : "9915", "Matching_Attribute" : [ "9915" ], "Classification" : "WM", "name" : "9915", "alias" : "ARNT2", "SUID" : 6153, "selected" : false }, "position" : { "x" : 50.87539239722196, "y" : 389.5030020013344 }, "selected" : false }, { "data" : { "id" : "6149", "shared_name" : "335", "degree_layout" : 68, "Matching_Attribute" : [ "335" ], "Classification" : "WMexpanded", "name" : "335", "alias" : "APOA1", "SUID" : 6149, "selected" : false }, "position" : { "x" : -260.12460760277804, "y" : -103.49699799866562 }, "selected" : false }, { "data" : { "id" : "6145", "shared_name" : "93627", "Matching_Attribute" : [ "93627" ], "Classification" : "WM", "name" : "93627", "alias" : "TBCK", "SUID" : 6145, "selected" : false }, "position" : { "x" : 148.87539239722196, "y" : 213.50300200133438 }, "selected" : false }, { "data" : { "id" : "6141", "shared_name" : "6792", "Matching_Attribute" : [ "6792" ], "Classification" : "WMexpanded", "name" : "6792", "alias" : "CDKL5", "SUID" : 6141, "selected" : false }, "position" : { "x" : 364.87539239722196, "y" : -330.4969979986656 }, "selected" : false }, { "data" : { "id" : "6137", "shared_name" : "29954", "Matching_Attribute" : [ "29954" ], "Classification" : "WM", "name" : "29954", "alias" : "POMT2", "SUID" : 6137, "selected" : false }, "position" : { "x" : -203.12460760277804, "y" : -386.4969979986656 }, "selected" : false }, { "data" : { "id" : "6133", "shared_name" : "54658", "Matching_Attribute" : [ "54658" ], "Classification" : "WMexpanded", "name" : "54658", "alias" : "UGT1A1", "SUID" : 6133, "selected" : false }, "position" : { "x" : -246.12460760277804, "y" : 65.50300200133438 }, "selected" : false }, { "data" : { "id" : "6129", "shared_name" : "2263", "Matching_Attribute" : [ "2263" ], "Classification" : "WM", "name" : "2263", "alias" : "FGFR2", "SUID" : 6129, "selected" : false }, "position" : { "x" : -28.124607602778042, "y" : -74.49699799866562 }, "selected" : false }, { "data" : { "id" : "6125", "shared_name" : "22907", "degree_layout" : 109, "Matching_Attribute" : [ "22907" ], "Classification" : "WM", "name" : "22907", "alias" : "DHX30", "SUID" : 6125, "selected" : false }, "position" : { "x" : -331.12460760277804, "y" : 255.50300200133438 }, "selected" : false }, { "data" : { "id" : "6121", "shared_name" : "2260", "Matching_Attribute" : [ "2260" ], "Classification" : "WM", "name" : "2260", "alias" : "FGFR1", "SUID" : 6121, "selected" : false }, "position" : { "x" : 66.87539239722196, "y" : -194.49699799866562 }, "selected" : false }, { "data" : { "id" : "6117", "shared_name" : "9131", "degree_layout" : 33, "Matching_Attribute" : [ "9131" ], "Classification" : "WM", "name" : "9131", "alias" : "AIFM1", "SUID" : 6117, "selected" : false }, "position" : { "x" : 136.87539239722196, "y" : 37.50300200133438 }, "selected" : false }, { "data" : { "id" : "6113", "shared_name" : "388962", "degree_layout" : 1, "Matching_Attribute" : [ "388962" ], "Classification" : "WM", "name" : "388962", "alias" : "BOLA3", "SUID" : 6113, "selected" : false }, "position" : { "x" : -605.124607602778, "y" : 39.50300200133438 }, "selected" : false }, { "data" : { "id" : "6109", "shared_name" : "2688", "Matching_Attribute" : [ "2688" ], "Classification" : "WMexpanded", "name" : "2688", "alias" : "GH1", "SUID" : 6109, "selected" : false }, "position" : { "x" : 57.87539239722196, "y" : -130.49699799866562 }, "selected" : false }, { "data" : { "id" : "6105", "shared_name" : "28996", "Matching_Attribute" : [ "28996" ], "Classification" : "WM", "name" : "28996", "alias" : "HIPK2", "SUID" : 6105, "selected" : false }, "position" : { "x" : 267.87539239722196, "y" : 48.50300200133438 }, "selected" : false }, { "data" : { "id" : "6101", "shared_name" : "5582", "degree_layout" : 65, "Matching_Attribute" : [ "5582" ], "Classification" : "WMexpanded", "name" : "5582", "alias" : "PRKCG", "SUID" : 6101, "selected" : false }, "position" : { "x" : -6.124607602778042, "y" : -154.49699799866562 }, "selected" : false }, { "data" : { "id" : "6097", "shared_name" : "1756", "Matching_Attribute" : [ "1756" ], "Classification" : "WM", "name" : "1756", "alias" : "DMD", "SUID" : 6097, "selected" : false }, "position" : { "x" : 120.87539239722196, "y" : 13.50300200133438 }, "selected" : false }, { "data" : { "id" : "6093", "shared_name" : "953", "degree_layout" : 136, "Matching_Attribute" : [ "953" ], "Classification" : "WMexpanded", "name" : "953", "alias" : "ENTPD1", "SUID" : 6093, "selected" : false }, "position" : { "x" : -246.12460760277804, "y" : 17.50300200133438 }, "selected" : false }, { "data" : { "id" : "6089", "shared_name" : "3145", "degree_layout" : 66, "Matching_Attribute" : [ "3145" ], "Classification" : "WM", "name" : "3145", "alias" : "HMBS", "SUID" : 6089, "selected" : false }, "position" : { "x" : -395.12460760277804, "y" : -13.49699799866562 }, "selected" : false }, { "data" : { "id" : "6085", "shared_name" : "23516", "Matching_Attribute" : [ "23516" ], "Classification" : "WM", "name" : "23516", "alias" : "SLC39A14", "SUID" : 6085, "selected" : false }, "position" : { "x" : 223.87539239722196, "y" : -515.4969979986656 }, "selected" : false }, { "data" : { "id" : "6081", "shared_name" : "10128", "degree_layout" : 238, "Matching_Attribute" : [ "10128" ], "Classification" : "WM", "name" : "10128", "alias" : "LRPPRC", "SUID" : 6081, "selected" : false }, "position" : { "x" : -424.12460760277804, "y" : 175.50300200133438 }, "selected" : false }, { "data" : { "id" : "6077", "shared_name" : "10963", "Matching_Attribute" : [ "10963" ], "Classification" : "WM", "name" : "10963", "alias" : "STIP1", "SUID" : 6077, "selected" : false }, "position" : { "x" : 259.87539239722196, "y" : -197.49699799866562 }, "selected" : false }, { "data" : { "id" : "6073", "shared_name" : "92170", "degree_layout" : 243, "Matching_Attribute" : [ "92170" ], "Classification" : "candidate", "name" : "92170", "alias" : "MTG1", "SUID" : 6073, "selected" : false }, "position" : { "x" : -208.12460760277804, "y" : 257.5030020013344 }, "selected" : false }, { "data" : { "id" : "6069", "shared_name" : "84525", "Matching_Attribute" : [ "84525" ], "Classification" : "WM", "name" : "84525", "alias" : "HOPX", "SUID" : 6069, "selected" : false }, "position" : { "x" : -38.12460760277804, "y" : 587.5030020013344 }, "selected" : false }, { "data" : { "id" : "6065", "shared_name" : "5813", "Matching_Attribute" : [ "5813" ], "Classification" : "WM", "name" : "5813", "alias" : "PURA", "SUID" : 6065, "selected" : false }, "position" : { "x" : 898.875392397222, "y" : -737.4969979986656 }, "selected" : false }, { "data" : { "id" : "6061", "shared_name" : "2733", "Matching_Attribute" : [ "2733" ], "Classification" : "WMexpanded", "name" : "2733", "alias" : "GLE1", "SUID" : 6061, "selected" : false }, "position" : { "x" : 417.87539239722196, "y" : 282.5030020013344 }, "selected" : false }, { "data" : { "id" : "6057", "shared_name" : "3162", "Matching_Attribute" : [ "3162" ], "Classification" : "WMexpanded", "name" : "3162", "alias" : "HMOX1", "SUID" : 6057, "selected" : false }, "position" : { "x" : -204.12460760277804, "y" : -87.49699799866562 }, "selected" : false }, { "data" : { "id" : "6053", "shared_name" : "1041", "degree_layout" : 1, "Matching_Attribute" : [ "1041" ], "Classification" : "WM", "name" : "1041", "alias" : "CDSN", "SUID" : 6053, "selected" : false }, "position" : { "x" : 281.87539239722196, "y" : 335.5030020013344 }, "selected" : false }, { "data" : { "id" : "6049", "shared_name" : "25973", "degree_layout" : 243, "Matching_Attribute" : [ "25973" ], "Classification" : "WM", "name" : "25973", "alias" : "PARS2", "SUID" : 6049, "selected" : false }, "position" : { "x" : -428.12460760277804, "y" : 139.50300200133438 }, "selected" : false }, { "data" : { "id" : "6045", "shared_name" : "701", "Matching_Attribute" : [ "701" ], "Classification" : "WMexpanded", "name" : "701", "alias" : "BUB1B", "SUID" : 6045, "selected" : false }, "position" : { "x" : 327.87539239722196, "y" : 154.50300200133438 }, "selected" : false }, { "data" : { "id" : "6041", "shared_name" : "9217", "degree_layout" : 12, "Matching_Attribute" : [ "9217" ], "Classification" : "WMexpanded", "name" : "9217", "alias" : "VAPB", "SUID" : 6041, "selected" : false }, "position" : { "x" : -14.124607602778042, "y" : -2.49699799866562 }, "selected" : false }, { "data" : { "id" : "6037", "shared_name" : "374654", "Matching_Attribute" : [ "374654" ], "Classification" : "WMexpanded", "name" : "374654", "alias" : "KIF7", "SUID" : 6037, "selected" : false }, "position" : { "x" : 340.87539239722196, "y" : 198.50300200133438 }, "selected" : false }, { "data" : { "id" : "6033", "shared_name" : "11160", "Matching_Attribute" : [ "11160" ], "Classification" : "WMexpanded", "name" : "11160", "alias" : "ERLIN2", "SUID" : 6033, "selected" : false }, "position" : { "x" : 289.87539239722196, "y" : -20.49699799866562 }, "selected" : false }, { "data" : { "id" : "6029", "shared_name" : "54892", "Matching_Attribute" : [ "54892" ], "Classification" : "WMexpanded", "name" : "54892", "alias" : "NCAPG2", "SUID" : 6029, "selected" : false }, "position" : { "x" : 505.87539239722196, "y" : 279.5030020013344 }, "selected" : false }, { "data" : { "id" : "6025", "shared_name" : "80704", "Matching_Attribute" : [ "80704" ], "Classification" : "WM", "name" : "80704", "alias" : "SLC19A3", "SUID" : 6025, "selected" : false }, "position" : { "x" : -474.12460760277804, "y" : -188.49699799866562 }, "selected" : false }, { "data" : { "id" : "6021", "shared_name" : "26999", "Matching_Attribute" : [ "26999" ], "Classification" : "WMexpanded", "name" : "26999", "alias" : "CYFIP2", "SUID" : 6021, "selected" : false }, "position" : { "x" : 226.87539239722196, "y" : -116.49699799866562 }, "selected" : false }, { "data" : { "id" : "6017", "shared_name" : "79796", "Matching_Attribute" : [ "79796" ], "Classification" : "WM", "name" : "79796", "alias" : "ALG9", "SUID" : 6017, "selected" : false }, "position" : { "x" : -193.12460760277804, "y" : -447.4969979986656 }, "selected" : false }, { "data" : { "id" : "6013", "shared_name" : "3574", "Matching_Attribute" : [ "3574" ], "Classification" : "WMexpanded", "name" : "3574", "alias" : "IL7", "SUID" : 6013, "selected" : false }, "position" : { "x" : 274.87539239722196, "y" : -117.49699799866562 }, "selected" : false }, { "data" : { "id" : "6009", "shared_name" : "64849", "degree_layout" : 114, "Matching_Attribute" : [ "64849" ], "Classification" : "WM", "name" : "64849", "alias" : "SLC13A3", "SUID" : 6009, "selected" : false }, "position" : { "x" : -108.12460760277804, "y" : -72.49699799866562 }, "selected" : false }, { "data" : { "id" : "6005", "shared_name" : "4988", "Matching_Attribute" : [ "4988" ], "Classification" : "candidate", "name" : "4988", "alias" : "OPRM1", "SUID" : 6005, "selected" : false }, "position" : { "x" : -58.12460760277804, "y" : -226.49699799866562 }, "selected" : false }, { "data" : { "id" : "6001", "shared_name" : "55157", "degree_layout" : 255, "Matching_Attribute" : [ "55157" ], "Classification" : "WM", "name" : "55157", "alias" : "DARS2", "SUID" : 6001, "selected" : false }, "position" : { "x" : -303.12460760277804, "y" : 195.50300200133438 }, "selected" : false }, { "data" : { "id" : "5997", "shared_name" : "84334", "Matching_Attribute" : [ "84334" ], "Classification" : "WM", "name" : "84334", "alias" : "COA8", "SUID" : 5997, "selected" : false }, "position" : { "x" : 959.875392397222, "y" : -737.4969979986656 }, "selected" : false }, { "data" : { "id" : "5993", "shared_name" : "6611", "Matching_Attribute" : [ "6611" ], "Classification" : "WMexpanded", "name" : "6611", "alias" : "SMS", "SUID" : 5993, "selected" : false }, "position" : { "x" : -376.12460760277804, "y" : 264.5030020013344 }, "selected" : false }, { "data" : { "id" : "5989", "shared_name" : "7273", "Matching_Attribute" : [ "7273" ], "Classification" : "WMexpanded", "name" : "7273", "alias" : "TTN", "SUID" : 5989, "selected" : false }, "position" : { "x" : 120.87539239722196, "y" : 29.50300200133438 }, "selected" : false }, { "data" : { "id" : "5985", "shared_name" : "27235", "degree_layout" : 171, "Matching_Attribute" : [ "27235" ], "Classification" : "WM", "name" : "27235", "alias" : "COQ2", "SUID" : 5985, "selected" : false }, "position" : { "x" : -369.12460760277804, "y" : 231.50300200133438 }, "selected" : false }, { "data" : { "id" : "5981", "shared_name" : "1917", "Matching_Attribute" : [ "1917" ], "Classification" : "WMexpanded", "name" : "1917", "alias" : "EEF1A2", "SUID" : 5981, "selected" : false }, "position" : { "x" : -121.12460760277804, "y" : 171.50300200133438 }, "selected" : false }, { "data" : { "id" : "5977", "shared_name" : "1915", "degree_layout" : 68, "Matching_Attribute" : [ "1915" ], "Classification" : "WM", "name" : "1915", "alias" : "EEF1A1", "SUID" : 5977, "selected" : false }, "position" : { "x" : -45.12460760277804, "y" : 208.50300200133438 }, "selected" : false }, { "data" : { "id" : "5973", "shared_name" : "5155", "degree_layout" : 42, "Matching_Attribute" : [ "5155" ], "Classification" : "WMexpanded", "name" : "5155", "alias" : "PDGFB", "SUID" : 5973, "selected" : false }, "position" : { "x" : 95.87539239722196, "y" : -224.49699799866562 }, "selected" : false }, { "data" : { "id" : "5969", "shared_name" : "10382", "degree_layout" : 22, "Matching_Attribute" : [ "10382" ], "Classification" : "WM", "name" : "10382", "alias" : "TUBB4A", "SUID" : 5969, "selected" : false }, "position" : { "x" : 254.87539239722196, "y" : -145.49699799866562 }, "selected" : false }, { "data" : { "id" : "5965", "shared_name" : "596", "degree_layout" : 155, "Matching_Attribute" : [ "596" ], "Classification" : "WM", "name" : "596", "alias" : "BCL2", "SUID" : 5965, "selected" : false }, "position" : { "x" : 129.87539239722196, "y" : -2.49699799866562 }, "selected" : false }, { "data" : { "id" : "5961", "shared_name" : "10682", "degree_layout" : 11, "Matching_Attribute" : [ "10682" ], "Classification" : "WM", "name" : "10682", "alias" : "EBP", "SUID" : 5961, "selected" : false }, "position" : { "x" : -54.12460760277804, "y" : -178.49699799866562 }, "selected" : false }, { "data" : { "id" : "5957", "shared_name" : "7052", "Matching_Attribute" : [ "7052" ], "Classification" : "candidate", "name" : "7052", "alias" : "TGM2", "SUID" : 5957, "selected" : false }, "position" : { "x" : 234.87539239722196, "y" : -194.49699799866562 }, "selected" : false }, { "data" : { "id" : "5953", "shared_name" : "283989", "Matching_Attribute" : [ "283989" ], "Classification" : "WM", "name" : "283989", "alias" : "TSEN54", "SUID" : 5953, "selected" : false }, "position" : { "x" : -59.12460760277804, "y" : 841.5030020013344 }, "selected" : false }, { "data" : { "id" : "5949", "shared_name" : "672", "degree_layout" : 125, "Matching_Attribute" : [ "672" ], "Classification" : "WMexpanded", "name" : "672", "alias" : "BRCA1", "SUID" : 5949, "selected" : false }, "position" : { "x" : 204.87539239722196, "y" : 190.50300200133438 }, "selected" : false }, { "data" : { "id" : "5945", "shared_name" : "55750", "Matching_Attribute" : [ "55750" ], "Classification" : "WMexpanded", "name" : "55750", "alias" : "AGK", "SUID" : 5945, "selected" : false }, "position" : { "x" : 121.87539239722196, "y" : -18.49699799866562 }, "selected" : false }, { "data" : { "id" : "5941", "shared_name" : "5914", "Matching_Attribute" : [ "5914" ], "Classification" : "WM", "name" : "5914", "alias" : "RARA", "SUID" : 5941, "selected" : false }, "position" : { "x" : 62.87539239722196, "y" : 184.50300200133438 }, "selected" : false }, { "data" : { "id" : "5937", "shared_name" : "8120", "Matching_Attribute" : [ "8120" ], "Classification" : "WMexpanded", "name" : "8120", "alias" : "AP3B2", "SUID" : 5937, "selected" : false }, "position" : { "x" : -167.12460760277804, "y" : -417.4969979986656 }, "selected" : false }, { "data" : { "id" : "5933", "shared_name" : "23474", "Matching_Attribute" : [ "23474" ], "Classification" : "WMexpanded", "name" : "23474", "alias" : "ETHE1", "SUID" : 5933, "selected" : false }, "position" : { "x" : -269.12460760277804, "y" : 616.5030020013344 }, "selected" : false }, { "data" : { "id" : "5929", "shared_name" : "6616", "degree_layout" : 73, "Matching_Attribute" : [ "6616" ], "Classification" : "WMexpanded", "name" : "6616", "alias" : "SNAP25", "SUID" : 5929, "selected" : false }, "position" : { "x" : -7.124607602778042, "y" : 61.50300200133438 }, "selected" : false }, { "data" : { "id" : "5925", "shared_name" : "51569", "degree_layout" : 2, "Matching_Attribute" : [ "51569" ], "Classification" : "WM", "name" : "51569", "alias" : "UFM1", "SUID" : 5925, "selected" : false }, "position" : { "x" : -252.12460760277804, "y" : 613.5030020013344 }, "selected" : false }, { "data" : { "id" : "5921", "shared_name" : "57570", "Matching_Attribute" : [ "57570" ], "Classification" : "WM", "name" : "57570", "alias" : "TRMT5", "SUID" : 5921, "selected" : false }, "position" : { "x" : 206.87539239722196, "y" : 399.5030020013344 }, "selected" : false }, { "data" : { "id" : "5917", "shared_name" : "4287", "Matching_Attribute" : [ "4287" ], "Classification" : "WMexpanded", "name" : "4287", "alias" : "ATXN3", "SUID" : 5917, "selected" : false }, "position" : { "x" : 124.87539239722196, "y" : 109.50300200133438 }, "selected" : false }, { "data" : { "id" : "5913", "shared_name" : "3767", "Matching_Attribute" : [ "3767" ], "Classification" : "WMexpanded", "name" : "3767", "alias" : "KCNJ11", "SUID" : 5913, "selected" : false }, "position" : { "x" : 40.87539239722196, "y" : 234.50300200133438 }, "selected" : false }, { "data" : { "id" : "5909", "shared_name" : "1374", "Matching_Attribute" : [ "1374" ], "Classification" : "WMexpanded", "name" : "1374", "alias" : "CPT1A", "SUID" : 5909, "selected" : false }, "position" : { "x" : -156.12460760277804, "y" : -82.49699799866562 }, "selected" : false }, { "data" : { "id" : "5905", "shared_name" : "10560", "Matching_Attribute" : [ "10560" ], "Classification" : "WMexpanded", "name" : "10560", "alias" : "SLC19A2", "SUID" : 5905, "selected" : false }, "position" : { "x" : -387.12460760277804, "y" : -227.49699799866562 }, "selected" : false }, { "data" : { "id" : "5901", "shared_name" : "11277", "degree_layout" : 12, "Matching_Attribute" : [ "11277" ], "Classification" : "WM", "name" : "11277", "alias" : "TREX1", "SUID" : 5901, "selected" : false }, "position" : { "x" : -6.124607602778042, "y" : -106.49699799866562 }, "selected" : false }, { "data" : { "id" : "5897", "shared_name" : "64374", "Matching_Attribute" : [ "64374" ], "Classification" : "WMexpanded", "name" : "64374", "alias" : "SIL1", "SUID" : 5897, "selected" : false }, "position" : { "x" : 213.87539239722196, "y" : -493.4969979986656 }, "selected" : false }, { "data" : { "id" : "5893", "shared_name" : "6309", "Matching_Attribute" : [ "6309" ], "Classification" : "WMexpanded", "name" : "6309", "alias" : "SC5D", "SUID" : 5893, "selected" : false }, "position" : { "x" : -324.12460760277804, "y" : -270.4969979986656 }, "selected" : false }, { "data" : { "id" : "5889", "shared_name" : "9780", "Matching_Attribute" : [ "9780" ], "Classification" : "WM", "name" : "9780", "alias" : "PIEZO1", "SUID" : 5889, "selected" : false }, "position" : { "x" : -603.124607602778, "y" : -533.4969979986656 }, "selected" : false }, { "data" : { "id" : "5885", "shared_name" : "4540", "degree_layout" : 53, "Matching_Attribute" : [ "4540" ], "Classification" : "WMexpanded", "name" : "4540", "alias" : "ND5", "SUID" : 5885, "selected" : false }, "position" : { "x" : -397.12460760277804, "y" : 268.5030020013344 }, "selected" : false }, { "data" : { "id" : "5881", "shared_name" : "23435", "Matching_Attribute" : [ "23435" ], "Classification" : "WMexpanded", "name" : "23435", "alias" : "TARDBP", "SUID" : 5881, "selected" : false }, "position" : { "x" : 459.87539239722196, "y" : -538.4969979986656 }, "selected" : false }, { "data" : { "id" : "5877", "shared_name" : "6535", "degree_layout" : 93, "Matching_Attribute" : [ "6535" ], "Classification" : "WM", "name" : "6535", "alias" : "SLC6A8", "SUID" : 5877, "selected" : false }, "position" : { "x" : 72.87539239722196, "y" : 59.50300200133438 }, "selected" : false }, { "data" : { "id" : "5873", "shared_name" : "5827", "degree_layout" : 63, "Matching_Attribute" : [ "5827" ], "Classification" : "WM", "name" : "5827", "alias" : "PXMP2", "SUID" : 5873, "selected" : false }, "position" : { "x" : -286.12460760277804, "y" : 14.50300200133438 }, "selected" : false }, { "data" : { "id" : "5869", "shared_name" : "59", "degree_layout" : 63, "Matching_Attribute" : [ "59" ], "Classification" : "WM", "name" : "59", "alias" : "ACTA2", "SUID" : 5869, "selected" : false }, "position" : { "x" : -54.12460760277804, "y" : -131.49699799866562 }, "selected" : false }, { "data" : { "id" : "5865", "shared_name" : "5192", "degree_layout" : 78, "Matching_Attribute" : [ "5192" ], "Classification" : "WM", "name" : "5192", "alias" : "PEX10", "SUID" : 5865, "selected" : false }, "position" : { "x" : -270.12460760277804, "y" : -17.49699799866562 }, "selected" : false }, { "data" : { "id" : "5861", "shared_name" : "5435", "degree_layout" : 143, "Matching_Attribute" : [ "5435" ], "Classification" : "WM", "name" : "5435", "alias" : "POLR2F", "SUID" : 5861, "selected" : false }, "position" : { "x" : 20.875392397221958, "y" : 299.5030020013344 }, "selected" : false }, { "data" : { "id" : "5857", "shared_name" : "4694", "degree_layout" : 105, "Matching_Attribute" : [ "4694" ], "Classification" : "WM", "name" : "4694", "alias" : "NDUFA1", "SUID" : 5857, "selected" : false }, "position" : { "x" : -297.12460760277804, "y" : 283.5030020013344 }, "selected" : false }, { "data" : { "id" : "5853", "shared_name" : "4709", "degree_layout" : 250, "Matching_Attribute" : [ "4709" ], "Classification" : "WM", "name" : "4709", "alias" : "NDUFB3", "SUID" : 5853, "selected" : false }, "position" : { "x" : -387.12460760277804, "y" : 107.50300200133438 }, "selected" : false }, { "data" : { "id" : "5849", "shared_name" : "6613", "Matching_Attribute" : [ "6613" ], "Classification" : "WM", "name" : "6613", "alias" : "SUMO2", "SUID" : 5849, "selected" : false }, "position" : { "x" : 220.87539239722196, "y" : 295.5030020013344 }, "selected" : false }, { "data" : { "id" : "5845", "shared_name" : "4714", "degree_layout" : 270, "Matching_Attribute" : [ "4714" ], "Classification" : "WM", "name" : "4714", "alias" : "NDUFB8", "SUID" : 5845, "selected" : false }, "position" : { "x" : -209.12460760277804, "y" : 149.50300200133438 }, "selected" : false }, { "data" : { "id" : "5841", "shared_name" : "10846", "Matching_Attribute" : [ "10846" ], "Classification" : "WM", "name" : "10846", "alias" : "PDE10A", "SUID" : 5841, "selected" : false }, "position" : { "x" : -65.12460760277804, "y" : 242.50300200133438 }, "selected" : false }, { "data" : { "id" : "5837", "shared_name" : "113179", "Matching_Attribute" : [ "113179" ], "Classification" : "WM", "name" : "113179", "alias" : "ADAT3", "SUID" : 5837, "selected" : false }, "position" : { "x" : 286.87539239722196, "y" : 396.5030020013344 }, "selected" : false }, { "data" : { "id" : "5833", "shared_name" : "4726", "degree_layout" : 91, "Matching_Attribute" : [ "4726" ], "Classification" : "WM", "name" : "4726", "alias" : "NDUFS6", "SUID" : 5833, "selected" : false }, "position" : { "x" : -242.12460760277804, "y" : 305.5030020013344 }, "selected" : false }, { "data" : { "id" : "5829", "shared_name" : "4538", "degree_layout" : 53, "Matching_Attribute" : [ "4538" ], "Classification" : "WMexpanded", "name" : "4538", "alias" : "ND4", "SUID" : 5829, "selected" : false }, "position" : { "x" : -335.12460760277804, "y" : 336.5030020013344 }, "selected" : false }, { "data" : { "id" : "5825", "shared_name" : "4594", "Matching_Attribute" : [ "4594" ], "Classification" : "WM", "name" : "4594", "alias" : "MMUT", "SUID" : 5825, "selected" : false }, "position" : { "x" : -441.12460760277804, "y" : 79.50300200133438 }, "selected" : false }, { "data" : { "id" : "5821", "shared_name" : "4724", "degree_layout" : 94, "Matching_Attribute" : [ "4724" ], "Classification" : "WM", "name" : "4724", "alias" : "NDUFS4", "SUID" : 5821, "selected" : false }, "position" : { "x" : -154.12460760277804, "y" : 195.50300200133438 }, "selected" : false }, { "data" : { "id" : "5817", "shared_name" : "1950", "Matching_Attribute" : [ "1950" ], "Classification" : "WM", "name" : "1950", "alias" : "EGF", "SUID" : 5817, "selected" : false }, "position" : { "x" : 210.87539239722196, "y" : -100.49699799866562 }, "selected" : false }, { "data" : { "id" : "5813", "shared_name" : "128240", "degree_layout" : 5, "Matching_Attribute" : [ "128240" ], "Classification" : "WM", "name" : "128240", "alias" : "NAXE", "SUID" : 5813, "selected" : false }, "position" : { "x" : -275.12460760277804, "y" : -288.4969979986656 }, "selected" : false }, { "data" : { "id" : "5809", "shared_name" : "140691", "Matching_Attribute" : [ "140691" ], "Classification" : "WM", "name" : "140691", "alias" : "TRIM69", "SUID" : 5809, "selected" : false }, "position" : { "x" : -44.12460760277804, "y" : 283.5030020013344 }, "selected" : false }, { "data" : { "id" : "5805", "shared_name" : "6575", "Matching_Attribute" : [ "6575" ], "Classification" : "WM", "name" : "6575", "alias" : "SLC20A2", "SUID" : 5805, "selected" : false }, "position" : { "x" : 74.87539239722196, "y" : -226.49699799866562 }, "selected" : false }, { "data" : { "id" : "5801", "shared_name" : "960", "Matching_Attribute" : [ "960" ], "Classification" : "WM", "name" : "960", "alias" : "CD44", "SUID" : 5801, "selected" : false }, "position" : { "x" : 71.87539239722196, "y" : -285.4969979986656 }, "selected" : false }, { "data" : { "id" : "5797", "shared_name" : "3030", "degree_layout" : 109, "Matching_Attribute" : [ "3030" ], "Classification" : "WMexpanded", "name" : "3030", "alias" : "HADHA", "SUID" : 5797, "selected" : false }, "position" : { "x" : -270.12460760277804, "y" : 57.50300200133438 }, "selected" : false }, { "data" : { "id" : "5793", "shared_name" : "51251", "Matching_Attribute" : [ "51251" ], "Classification" : "WM", "name" : "51251", "alias" : "NT5C3A", "SUID" : 5793, "selected" : false }, "position" : { "x" : -408.12460760277804, "y" : -149.49699799866562 }, "selected" : false }, { "data" : { "id" : "5789", "shared_name" : "3759", "Matching_Attribute" : [ "3759" ], "Classification" : "WM", "name" : "3759", "alias" : "KCNJ2", "SUID" : 5789, "selected" : false }, "position" : { "x" : 301.87539239722196, "y" : 181.50300200133438 }, "selected" : false }, { "data" : { "id" : "5785", "shared_name" : "6857", "Matching_Attribute" : [ "6857" ], "Classification" : "WM", "name" : "6857", "alias" : "SYT1", "SUID" : 5785, "selected" : false }, "position" : { "x" : -124.12460760277804, "y" : -67.49699799866562 }, "selected" : false }, { "data" : { "id" : "5781", "shared_name" : "6672", "Matching_Attribute" : [ "6672" ], "Classification" : "WM", "name" : "6672", "alias" : "SP100", "SUID" : 5781, "selected" : false }, "position" : { "x" : 364.87539239722196, "y" : 79.50300200133438 }, "selected" : false }, { "data" : { "id" : "5777", "shared_name" : "383", "degree_layout" : 48, "Matching_Attribute" : [ "383" ], "Classification" : "WMexpanded", "name" : "383", "alias" : "ARG1", "SUID" : 5777, "selected" : false }, "position" : { "x" : -302.12460760277804, "y" : -17.49699799866562 }, "selected" : false }, { "data" : { "id" : "5773", "shared_name" : "9181", "Matching_Attribute" : [ "9181" ], "Classification" : "WM", "name" : "9181", "alias" : "ARHGEF2", "SUID" : 5773, "selected" : false }, "position" : { "x" : 292.87539239722196, "y" : -160.49699799866562 }, "selected" : false }, { "data" : { "id" : "5769", "shared_name" : "5081", "Matching_Attribute" : [ "5081" ], "Classification" : "WMexpanded", "name" : "5081", "alias" : "PAX7", "SUID" : 5769, "selected" : false }, "position" : { "x" : 48.87539239722196, "y" : 27.50300200133438 }, "selected" : false }, { "data" : { "id" : "5765", "shared_name" : "2290", "Matching_Attribute" : [ "2290" ], "Classification" : "WM", "name" : "2290", "alias" : "FOXG1", "SUID" : 5765, "selected" : false }, "position" : { "x" : -89.12460760277804, "y" : -299.4969979986656 }, "selected" : false }, { "data" : { "id" : "5761", "shared_name" : "4208", "Matching_Attribute" : [ "4208" ], "Classification" : "WM", "name" : "4208", "alias" : "MEF2C", "SUID" : 5761, "selected" : false }, "position" : { "x" : 168.87539239722196, "y" : 21.50300200133438 }, "selected" : false }, { "data" : { "id" : "5757", "shared_name" : "4311", "Matching_Attribute" : [ "4311" ], "Classification" : "WM", "name" : "4311", "alias" : "MME", "SUID" : 5757, "selected" : false }, "position" : { "x" : -169.12460760277804, "y" : -251.49699799866562 }, "selected" : false }, { "data" : { "id" : "5753", "shared_name" : "2581", "degree_layout" : 52, "Matching_Attribute" : [ "2581" ], "Classification" : "WM", "name" : "2581", "alias" : "GALC", "SUID" : 5753, "selected" : false }, "position" : { "x" : -255.12460760277804, "y" : -256.4969979986656 }, "selected" : false }, { "data" : { "id" : "5749", "shared_name" : "10959", "Matching_Attribute" : [ "10959" ], "Classification" : "WM", "name" : "10959", "alias" : "TMED2", "SUID" : 5749, "selected" : false }, "position" : { "x" : 145.87539239722196, "y" : -10.49699799866562 }, "selected" : false }, { "data" : { "id" : "5745", "shared_name" : "7471", "Matching_Attribute" : [ "7471" ], "Classification" : "WMexpanded", "name" : "7471", "alias" : "WNT1", "SUID" : 5745, "selected" : false }, "position" : { "x" : 57.87539239722196, "y" : -66.49699799866562 }, "selected" : false }, { "data" : { "id" : "5741", "shared_name" : "9150", "Matching_Attribute" : [ "9150" ], "Classification" : "WM", "name" : "9150", "alias" : "CTDP1", "SUID" : 5741, "selected" : false }, "position" : { "x" : 284.87539239722196, "y" : 259.5030020013344 }, "selected" : false }, { "data" : { "id" : "5737", "shared_name" : "84340", "degree_layout" : 254, "Matching_Attribute" : [ "84340" ], "Classification" : "WM", "name" : "84340", "alias" : "GFM2", "SUID" : 5737, "selected" : false }, "position" : { "x" : -309.12460760277804, "y" : 212.50300200133438 }, "selected" : false }, { "data" : { "id" : "5733", "shared_name" : "57017", "degree_layout" : 4, "Matching_Attribute" : [ "57017" ], "Classification" : "WM", "name" : "57017", "alias" : "COQ9", "SUID" : 5733, "selected" : false }, "position" : { "x" : -576.124607602778, "y" : 65.50300200133438 }, "selected" : false }, { "data" : { "id" : "5729", "shared_name" : "861", "degree_layout" : 107, "Matching_Attribute" : [ "861" ], "Classification" : "WM", "name" : "861", "alias" : "RUNX1", "SUID" : 5729, "selected" : false }, "position" : { "x" : 184.87539239722196, "y" : 5.50300200133438 }, "selected" : false }, { "data" : { "id" : "5725", "shared_name" : "9711", "Matching_Attribute" : [ "9711" ], "Classification" : "WM", "name" : "9711", "alias" : "RUBCN", "SUID" : 5725, "selected" : false }, "position" : { "x" : -194.12460760277804, "y" : -723.4969979986656 }, "selected" : false }, { "data" : { "id" : "5721", "shared_name" : "11128", "degree_layout" : 39, "Matching_Attribute" : [ "11128" ], "Classification" : "WM", "name" : "11128", "alias" : "POLR3A", "SUID" : 5721, "selected" : false }, "position" : { "x" : -111.12460760277804, "y" : 326.5030020013344 }, "selected" : false }, { "data" : { "id" : "5717", "shared_name" : "29925", "Matching_Attribute" : [ "29925" ], "Classification" : "WMexpanded", "name" : "29925", "alias" : "GMPPB", "SUID" : 5717, "selected" : false }, "position" : { "x" : -379.12460760277804, "y" : -96.49699799866562 }, "selected" : false }, { "data" : { "id" : "5713", "shared_name" : "7531", "Matching_Attribute" : [ "7531" ], "Classification" : "candidate", "name" : "7531", "alias" : "YWHAE", "SUID" : 5713, "selected" : false }, "position" : { "x" : 357.87539239722196, "y" : -28.49699799866562 }, "selected" : false }, { "data" : { "id" : "5709", "shared_name" : "55703", "degree_layout" : 31, "Matching_Attribute" : [ "55703" ], "Classification" : "WM", "name" : "55703", "alias" : "POLR3B", "SUID" : 5709, "selected" : false }, "position" : { "x" : -56.12460760277804, "y" : 374.5030020013344 }, "selected" : false }, { "data" : { "id" : "5705", "shared_name" : "55858", "Matching_Attribute" : [ "55858" ], "Classification" : "WM", "name" : "55858", "alias" : "TMEM165", "SUID" : 5705, "selected" : false }, "position" : { "x" : 898.875392397222, "y" : -676.4969979986656 }, "selected" : false }, { "data" : { "id" : "5701", "shared_name" : "6767", "Matching_Attribute" : [ "6767" ], "Classification" : "WM", "name" : "6767", "alias" : "ST13", "SUID" : 5701, "selected" : false }, "position" : { "x" : 98.87539239722196, "y" : -192.49699799866562 }, "selected" : false }, { "data" : { "id" : "5697", "shared_name" : "8517", "degree_layout" : 54, "Matching_Attribute" : [ "8517" ], "Classification" : "WM", "name" : "8517", "alias" : "IKBKG", "SUID" : 5697, "selected" : false }, "position" : { "x" : 217.87539239722196, "y" : -47.49699799866562 }, "selected" : false }, { "data" : { "id" : "5693", "shared_name" : "92335", "Matching_Attribute" : [ "92335" ], "Classification" : "WMexpanded", "name" : "92335", "alias" : "STRADA", "SUID" : 5693, "selected" : false }, "position" : { "x" : 270.87539239722196, "y" : -78.49699799866562 }, "selected" : false }, { "data" : { "id" : "5689", "shared_name" : "27089", "degree_layout" : 173, "Matching_Attribute" : [ "27089" ], "Classification" : "WMexpanded", "name" : "27089", "alias" : "UQCRQ", "SUID" : 5689, "selected" : false }, "position" : { "x" : -402.12460760277804, "y" : 223.50300200133438 }, "selected" : false }, { "data" : { "id" : "5685", "shared_name" : "1340", "degree_layout" : 228, "Matching_Attribute" : [ "1340" ], "Classification" : "WM", "name" : "1340", "alias" : "COX6B1", "SUID" : 5685, "selected" : false }, "position" : { "x" : -318.12460760277804, "y" : 62.50300200133438 }, "selected" : false }, { "data" : { "id" : "5681", "shared_name" : "3315", "degree_layout" : 40, "Matching_Attribute" : [ "3315" ], "Classification" : "WMexpanded", "name" : "3315", "alias" : "HSPB1", "SUID" : 5681, "selected" : false }, "position" : { "x" : 135.87539239722196, "y" : 93.50300200133438 }, "selected" : false }, { "data" : { "id" : "5677", "shared_name" : "5189", "degree_layout" : 97, "Matching_Attribute" : [ "5189" ], "Classification" : "WM", "name" : "5189", "alias" : "PEX1", "SUID" : 5677, "selected" : false }, "position" : { "x" : -122.12460760277804, "y" : 187.50300200133438 }, "selected" : false }, { "data" : { "id" : "5673", "shared_name" : "6497", "Matching_Attribute" : [ "6497" ], "Classification" : "WMexpanded", "name" : "6497", "alias" : "SKI", "SUID" : 5673, "selected" : false }, "position" : { "x" : 138.87539239722196, "y" : -178.49699799866562 }, "selected" : false }, { "data" : { "id" : "5669", "shared_name" : "10087", "Matching_Attribute" : [ "10087" ], "Classification" : "WMexpanded", "name" : "10087", "alias" : "CERT1", "SUID" : 5669, "selected" : false }, "position" : { "x" : -319.12460760277804, "y" : -156.49699799866562 }, "selected" : false }, { "data" : { "id" : "5665", "shared_name" : "55181", "Matching_Attribute" : [ "55181" ], "Classification" : "WM", "name" : "55181", "alias" : "SMG8", "SUID" : 5665, "selected" : false }, "position" : { "x" : -93.12460760277804, "y" : 533.5030020013344 }, "selected" : false }, { "data" : { "id" : "5661", "shared_name" : "2717", "degree_layout" : 37, "Matching_Attribute" : [ "2717" ], "Classification" : "WM", "name" : "2717", "alias" : "GLA", "SUID" : 5661, "selected" : false }, "position" : { "x" : -238.12460760277804, "y" : -219.49699799866562 }, "selected" : false }, { "data" : { "id" : "5657", "shared_name" : "4668", "Matching_Attribute" : [ "4668" ], "Classification" : "WM", "name" : "4668", "alias" : "NAGA", "SUID" : 5657, "selected" : false }, "position" : { "x" : -446.12460760277804, "y" : -423.4969979986656 }, "selected" : false }, { "data" : { "id" : "5653", "shared_name" : "22930", "Matching_Attribute" : [ "22930" ], "Classification" : "WMexpanded", "name" : "22930", "alias" : "RAB3GAP1", "SUID" : 5653, "selected" : false }, "position" : { "x" : 421.87539239722196, "y" : -78.49699799866562 }, "selected" : false }, { "data" : { "id" : "5649", "shared_name" : "5265", "Matching_Attribute" : [ "5265" ], "Classification" : "WMexpanded", "name" : "5265", "alias" : "SERPINA1", "SUID" : 5649, "selected" : false }, "position" : { "x" : -190.12460760277804, "y" : -47.49699799866562 }, "selected" : false }, { "data" : { "id" : "5645", "shared_name" : "9420", "degree_layout" : 32, "Matching_Attribute" : [ "9420" ], "Classification" : "WM", "name" : "9420", "alias" : "CYP7B1", "SUID" : 5645, "selected" : false }, "position" : { "x" : -63.12460760277804, "y" : 210.50300200133438 }, "selected" : false }, { "data" : { "id" : "5641", "shared_name" : "5518", "degree_layout" : 75, "Matching_Attribute" : [ "5518" ], "Classification" : "WM", "name" : "5518", "alias" : "PPP2R1A", "SUID" : 5641, "selected" : false }, "position" : { "x" : 257.87539239722196, "y" : -15.49699799866562 }, "selected" : false }, { "data" : { "id" : "5637", "shared_name" : "6609", "degree_layout" : 62, "Matching_Attribute" : [ "6609" ], "Classification" : "WM", "name" : "6609", "alias" : "SMPD1", "SUID" : 5637, "selected" : false }, "position" : { "x" : -83.12460760277804, "y" : -242.49699799866562 }, "selected" : false }, { "data" : { "id" : "5633", "shared_name" : "102724560", "Matching_Attribute" : [ "102724560" ], "Classification" : "WM", "name" : "102724560", "alias" : "CBSL", "SUID" : 5633, "selected" : false }, "position" : { "x" : 68.87539239722196, "y" : 442.5030020013344 }, "selected" : false }, { "data" : { "id" : "5629", "shared_name" : "1959", "degree_layout" : 81, "Matching_Attribute" : [ "1959" ], "Classification" : "WM", "name" : "1959", "alias" : "EGR2", "SUID" : 5629, "selected" : false }, "position" : { "x" : 300.87539239722196, "y" : 125.50300200133438 }, "selected" : false }, { "data" : { "id" : "5625", "shared_name" : "595", "degree_layout" : 107, "Matching_Attribute" : [ "595" ], "Classification" : "WM", "name" : "595", "alias" : "CCND1", "SUID" : 5625, "selected" : false }, "position" : { "x" : 108.87539239722196, "y" : 127.50300200133438 }, "selected" : false }, { "data" : { "id" : "5621", "shared_name" : "25885", "degree_layout" : 95, "Matching_Attribute" : [ "25885" ], "Classification" : "WM", "name" : "25885", "alias" : "POLR1A", "SUID" : 5621, "selected" : false }, "position" : { "x" : 16.875392397221958, "y" : 225.50300200133438 }, "selected" : false }, { "data" : { "id" : "5617", "shared_name" : "4852", "Matching_Attribute" : [ "4852" ], "Classification" : "candidate", "name" : "4852", "alias" : "NPY", "SUID" : 5617, "selected" : false }, "position" : { "x" : 115.46548982052468, "y" : -408.509187220917 }, "selected" : false }, { "data" : { "id" : "5613", "shared_name" : "5119", "Matching_Attribute" : [ "5119" ], "Classification" : "WM", "name" : "5119", "alias" : "CHMP1A", "SUID" : 5613, "selected" : false }, "position" : { "x" : 135.87539239722196, "y" : 181.50300200133438 }, "selected" : false }, { "data" : { "id" : "5609", "shared_name" : "4519", "Matching_Attribute" : [ "4519" ], "Classification" : "candidate", "name" : "4519", "alias" : "CYTB", "SUID" : 5609, "selected" : false }, "position" : { "x" : -697.124607602778, "y" : 398.5030020013344 }, "selected" : false }, { "data" : { "id" : "5605", "shared_name" : "51601", "degree_layout" : 105, "Matching_Attribute" : [ "51601" ], "Classification" : "WM", "name" : "51601", "alias" : "LIPT1", "SUID" : 5605, "selected" : false }, "position" : { "x" : -159.12460760277804, "y" : 216.50300200133438 }, "selected" : false }, { "data" : { "id" : "5601", "shared_name" : "84833", "Matching_Attribute" : [ "84833" ], "Classification" : "WMexpanded", "name" : "84833", "alias" : "ATP5MD", "SUID" : 5601, "selected" : false }, "position" : { "x" : -504.12460760277804, "y" : 111.50300200133438 }, "selected" : false }, { "data" : { "id" : "5597", "shared_name" : "22934", "degree_layout" : 46, "Matching_Attribute" : [ "22934" ], "Classification" : "WM", "name" : "22934", "alias" : "RPIA", "SUID" : 5597, "selected" : false }, "position" : { "x" : -129.12460760277804, "y" : 136.50300200133438 }, "selected" : false }, { "data" : { "id" : "5593", "shared_name" : "875", "degree_layout" : 66, "Matching_Attribute" : [ "875" ], "Classification" : "WM", "name" : "875", "alias" : "CBS", "SUID" : 5593, "selected" : false }, "position" : { "x" : -143.12460760277804, "y" : 219.50300200133438 }, "selected" : false }, { "data" : { "id" : "5589", "shared_name" : "4513", "Matching_Attribute" : [ "4513" ], "Classification" : "WMexpanded", "name" : "4513", "alias" : "COX2", "SUID" : 5589, "selected" : false }, "position" : { "x" : -621.124607602778, "y" : 84.50300200133438 }, "selected" : false }, { "data" : { "id" : "5585", "shared_name" : "4512", "Matching_Attribute" : [ "4512" ], "Classification" : "WMexpanded", "name" : "4512", "alias" : "COX1", "SUID" : 5585, "selected" : false }, "position" : { "x" : -485.12460760277804, "y" : -60.49699799866562 }, "selected" : false }, { "data" : { "id" : "5581", "shared_name" : "64116", "Matching_Attribute" : [ "64116" ], "Classification" : "WMexpanded", "name" : "64116", "alias" : "SLC39A8", "SUID" : 5581, "selected" : false }, "position" : { "x" : 25.875392397221958, "y" : -373.4969979986656 }, "selected" : false }, { "data" : { "id" : "5577", "shared_name" : "3091", "degree_layout" : 59, "Matching_Attribute" : [ "3091" ], "Classification" : "WM", "name" : "3091", "alias" : "HIF1A", "SUID" : 5577, "selected" : false }, "position" : { "x" : -30.124607602778042, "y" : -12.49699799866562 }, "selected" : false }, { "data" : { "id" : "5573", "shared_name" : "84061", "Matching_Attribute" : [ "84061" ], "Classification" : "WM", "name" : "84061", "alias" : "MAGT1", "SUID" : 5573, "selected" : false }, "position" : { "x" : -98.12460760277804, "y" : -452.4969979986656 }, "selected" : false }, { "data" : { "id" : "5569", "shared_name" : "59345", "Matching_Attribute" : [ "59345" ], "Classification" : "WM", "name" : "59345", "alias" : "GNB4", "SUID" : 5569, "selected" : false }, "position" : { "x" : 146.07209153832287, "y" : -355.4969979986656 }, "selected" : false }, { "data" : { "id" : "5565", "shared_name" : "217", "degree_layout" : 164, "Matching_Attribute" : [ "217" ], "Classification" : "candidate", "name" : "217", "alias" : "ALDH2", "SUID" : 5565, "selected" : false }, "position" : { "x" : -303.12460760277804, "y" : 175.50300200133438 }, "selected" : false }, { "data" : { "id" : "5561", "shared_name" : "4247", "Matching_Attribute" : [ "4247" ], "Classification" : "WMexpanded", "name" : "4247", "alias" : "MGAT2", "SUID" : 5561, "selected" : false }, "position" : { "x" : -257.12460760277804, "y" : -314.4969979986656 }, "selected" : false }, { "data" : { "id" : "5557", "shared_name" : "9254", "Matching_Attribute" : [ "9254" ], "Classification" : "WMexpanded", "name" : "9254", "alias" : "CACNA2D2", "SUID" : 5557, "selected" : false }, "position" : { "x" : 116.87539239722196, "y" : -144.49699799866562 }, "selected" : false }, { "data" : { "id" : "5553", "shared_name" : "55967", "degree_layout" : 96, "Matching_Attribute" : [ "55967" ], "Classification" : "WM", "name" : "55967", "alias" : "NDUFA12", "SUID" : 5553, "selected" : false }, "position" : { "x" : -281.12460760277804, "y" : 301.5030020013344 }, "selected" : false }, { "data" : { "id" : "5549", "shared_name" : "928", "Matching_Attribute" : [ "928" ], "Classification" : "WM", "name" : "928", "alias" : "CD9", "SUID" : 5549, "selected" : false }, "position" : { "x" : -274.12460760277804, "y" : 526.5030020013344 }, "selected" : false }, { "data" : { "id" : "5545", "shared_name" : "5195", "degree_layout" : 79, "Matching_Attribute" : [ "5195" ], "Classification" : "WMexpanded", "name" : "5195", "alias" : "PEX14", "SUID" : 5545, "selected" : false }, "position" : { "x" : -220.12460760277804, "y" : -83.49699799866562 }, "selected" : false }, { "data" : { "id" : "5541", "shared_name" : "2775", "Matching_Attribute" : [ "2775" ], "Classification" : "WM", "name" : "2775", "alias" : "GNAO1", "SUID" : 5541, "selected" : false }, "position" : { "x" : 23.875392397221958, "y" : -301.4969979986656 }, "selected" : false }, { "data" : { "id" : "5537", "shared_name" : "5653", "Matching_Attribute" : [ "5653" ], "Classification" : "WM", "name" : "5653", "alias" : "KLK6", "SUID" : 5537, "selected" : false }, "position" : { "x" : -389.12460760277804, "y" : -370.4969979986656 }, "selected" : false }, { "data" : { "id" : "5533", "shared_name" : "9894", "Matching_Attribute" : [ "9894" ], "Classification" : "WMexpanded", "name" : "9894", "alias" : "TELO2", "SUID" : 5533, "selected" : false }, "position" : { "x" : 289.87539239722196, "y" : -4.49699799866562 }, "selected" : false }, { "data" : { "id" : "5529", "shared_name" : "2875", "degree_layout" : 111, "Matching_Attribute" : [ "2875" ], "Classification" : "candidate", "name" : "2875", "alias" : "GPT", "SUID" : 5529, "selected" : false }, "position" : { "x" : -265.12460760277804, "y" : 159.50300200133438 }, "selected" : false }, { "data" : { "id" : "5525", "shared_name" : "84260", "Matching_Attribute" : [ "84260" ], "Classification" : "WM", "name" : "84260", "alias" : "TCHP", "SUID" : 5525, "selected" : false }, "position" : { "x" : -12.124607602778042, "y" : 293.5030020013344 }, "selected" : false }, { "data" : { "id" : "5521", "shared_name" : "7518", "Matching_Attribute" : [ "7518" ], "Classification" : "WMexpanded", "name" : "7518", "alias" : "XRCC4", "SUID" : 5521, "selected" : false }, "position" : { "x" : 98.87539239722196, "y" : 261.5030020013344 }, "selected" : false }, { "data" : { "id" : "5517", "shared_name" : "8514", "Matching_Attribute" : [ "8514" ], "Classification" : "candidate", "name" : "8514", "alias" : "KCNAB2", "SUID" : 5517, "selected" : false }, "position" : { "x" : -113.12460760277804, "y" : 139.50300200133438 }, "selected" : false }, { "data" : { "id" : "5513", "shared_name" : "2132", "Matching_Attribute" : [ "2132" ], "Classification" : "WMexpanded", "name" : "2132", "alias" : "EXT2", "SUID" : 5513, "selected" : false }, "position" : { "x" : -252.12460760277804, "y" : 735.5030020013344 }, "selected" : false }, { "data" : { "id" : "5509", "shared_name" : "207", "degree_layout" : 183, "Matching_Attribute" : [ "207" ], "Classification" : "WMexpanded", "name" : "207", "alias" : "AKT1", "SUID" : 5509, "selected" : false }, "position" : { "x" : 1.8753923972219582, "y" : -10.49699799866562 }, "selected" : false }, { "data" : { "id" : "5505", "shared_name" : "29078", "degree_layout" : 238, "Matching_Attribute" : [ "29078" ], "Classification" : "WM", "name" : "29078", "alias" : "NDUFAF4", "SUID" : 5505, "selected" : false }, "position" : { "x" : -313.12460760277804, "y" : 292.5030020013344 }, "selected" : false }, { "data" : { "id" : "5501", "shared_name" : "51083", "Matching_Attribute" : [ "51083" ], "Classification" : "WMexpanded", "name" : "51083", "alias" : "GAL", "SUID" : 5501, "selected" : false }, "position" : { "x" : -19.124607602778042, "y" : -535.4969979986656 }, "selected" : false }, { "data" : { "id" : "5497", "shared_name" : "91137", "Matching_Attribute" : [ "91137" ], "Classification" : "WM", "name" : "91137", "alias" : "SLC25A46", "SUID" : 5497, "selected" : false }, "position" : { "x" : -299.12460760277804, "y" : -152.49699799866562 }, "selected" : false }, { "data" : { "id" : "5493", "shared_name" : "2678", "Matching_Attribute" : [ "2678" ], "Classification" : "WMexpanded", "name" : "2678", "alias" : "GGT1", "SUID" : 5493, "selected" : false }, "position" : { "x" : -78.12460760277804, "y" : -21.49699799866562 }, "selected" : false }, { "data" : { "id" : "5489", "shared_name" : "2259", "degree_layout" : 50, "Matching_Attribute" : [ "2259" ], "Classification" : "WMexpanded", "name" : "2259", "alias" : "FGF14", "SUID" : 5489, "selected" : false }, "position" : { "x" : 151.87539239722196, "y" : 90.50300200133438 }, "selected" : false }, { "data" : { "id" : "5485", "shared_name" : "57688", "Matching_Attribute" : [ "57688" ], "Classification" : "WM", "name" : "57688", "alias" : "ZSWIM6", "SUID" : 5485, "selected" : false }, "position" : { "x" : 959.875392397222, "y" : -676.4969979986656 }, "selected" : false }, { "data" : { "id" : "5481", "shared_name" : "116228", "Matching_Attribute" : [ "116228" ], "Classification" : "WM", "name" : "116228", "alias" : "COX20", "SUID" : 5481, "selected" : false }, "position" : { "x" : -64.12460760277804, "y" : 279.5030020013344 }, "selected" : false }, { "data" : { "id" : "5477", "shared_name" : "54872", "Matching_Attribute" : [ "54872" ], "Classification" : "WMexpanded", "name" : "54872", "alias" : "PIGG", "SUID" : 5477, "selected" : false }, "position" : { "x" : 111.87539239722196, "y" : -80.49699799866562 }, "selected" : false }, { "data" : { "id" : "5473", "shared_name" : "6095", "Matching_Attribute" : [ "6095" ], "Classification" : "WMexpanded", "name" : "6095", "alias" : "RORA", "SUID" : 5473, "selected" : false }, "position" : { "x" : -76.12460760277804, "y" : -94.49699799866562 }, "selected" : false }, { "data" : { "id" : "5469", "shared_name" : "10978", "Matching_Attribute" : [ "10978" ], "Classification" : "WM", "name" : "10978", "alias" : "CLP1", "SUID" : 5469, "selected" : false }, "position" : { "x" : 62.87539239722196, "y" : 573.5030020013344 }, "selected" : false }, { "data" : { "id" : "5465", "shared_name" : "112939", "Matching_Attribute" : [ "112939" ], "Classification" : "WM", "name" : "112939", "alias" : "NACC1", "SUID" : 5465, "selected" : false }, "position" : { "x" : 191.87539239722196, "y" : 440.5030020013344 }, "selected" : false }, { "data" : { "id" : "5461", "shared_name" : "4665", "Matching_Attribute" : [ "4665" ], "Classification" : "WM", "name" : "4665", "alias" : "NAB2", "SUID" : 5461, "selected" : false }, "position" : { "x" : 105.87539239722196, "y" : 229.50300200133438 }, "selected" : false }, { "data" : { "id" : "5457", "shared_name" : "9440", "Matching_Attribute" : [ "9440" ], "Classification" : "WM", "name" : "9440", "alias" : "MED17", "SUID" : 5457, "selected" : false }, "position" : { "x" : -124.12460760277804, "y" : -87.49699799866562 }, "selected" : false }, { "data" : { "id" : "5453", "shared_name" : "4204", "Matching_Attribute" : [ "4204" ], "Classification" : "WMexpanded", "name" : "4204", "alias" : "MECP2", "SUID" : 5453, "selected" : false }, "position" : { "x" : -22.124607602778042, "y" : -44.49699799866562 }, "selected" : false }, { "data" : { "id" : "5449", "shared_name" : "923", "Matching_Attribute" : [ "923" ], "Classification" : "WM", "name" : "923", "alias" : "CD6", "SUID" : 5449, "selected" : false }, "position" : { "x" : 332.87539239722196, "y" : 107.50300200133438 }, "selected" : false }, { "data" : { "id" : "5445", "shared_name" : "8021", "degree_layout" : 12, "Matching_Attribute" : [ "8021" ], "Classification" : "WMexpanded", "name" : "8021", "alias" : "NUP214", "SUID" : 5445, "selected" : false }, "position" : { "x" : 316.87539239722196, "y" : 115.50300200133438 }, "selected" : false }, { "data" : { "id" : "5441", "shared_name" : "8864", "Matching_Attribute" : [ "8864" ], "Classification" : "WMexpanded", "name" : "8864", "alias" : "PER2", "SUID" : 5441, "selected" : false }, "position" : { "x" : 358.87539239722196, "y" : 236.50300200133438 }, "selected" : false }, { "data" : { "id" : "5437", "shared_name" : "10733", "Matching_Attribute" : [ "10733" ], "Classification" : "WMexpanded", "name" : "10733", "alias" : "PLK4", "SUID" : 5437, "selected" : false }, "position" : { "x" : 398.87539239722196, "y" : -36.49699799866562 }, "selected" : false }, { "data" : { "id" : "5433", "shared_name" : "7461", "Matching_Attribute" : [ "7461" ], "Classification" : "candidate", "name" : "7461", "alias" : "CLIP2", "SUID" : 5433, "selected" : false }, "position" : { "x" : 898.875392397222, "y" : -615.4969979986656 }, "selected" : false }, { "data" : { "id" : "5429", "shared_name" : "5048", "degree_layout" : 49, "Matching_Attribute" : [ "5048" ], "Classification" : "WM", "name" : "5048", "alias" : "PAFAH1B1", "SUID" : 5429, "selected" : false }, "position" : { "x" : 232.87539239722196, "y" : 13.50300200133438 }, "selected" : false }, { "data" : { "id" : "5425", "shared_name" : "627", "Matching_Attribute" : [ "627" ], "Classification" : "candidate", "name" : "627", "alias" : "BDNF", "SUID" : 5425, "selected" : false }, "position" : { "x" : -37.12460760277804, "y" : -255.49699799866562 }, "selected" : false }, { "data" : { "id" : "5421", "shared_name" : "213", "degree_layout" : 17, "Matching_Attribute" : [ "213" ], "Classification" : "WM", "name" : "213", "alias" : "ALB", "SUID" : 5421, "selected" : false }, "position" : { "x" : -542.690606584043, "y" : 195.17800174145307 }, "selected" : false }, { "data" : { "id" : "5417", "shared_name" : "56997", "degree_layout" : 4, "Matching_Attribute" : [ "56997" ], "Classification" : "WM", "name" : "56997", "alias" : "COQ8A", "SUID" : 5417, "selected" : false }, "position" : { "x" : -863.124607602778, "y" : 98.50300200133438 }, "selected" : false }, { "data" : { "id" : "5413", "shared_name" : "10717", "Matching_Attribute" : [ "10717" ], "Classification" : "WM", "name" : "10717", "alias" : "AP4B1", "SUID" : 5413, "selected" : false }, "position" : { "x" : -198.12460760277804, "y" : -370.4969979986656 }, "selected" : false }, { "data" : { "id" : "5409", "shared_name" : "9734", "Matching_Attribute" : [ "9734" ], "Classification" : "WM", "name" : "9734", "alias" : "HDAC9", "SUID" : 5409, "selected" : false }, "position" : { "x" : 40.87539239722196, "y" : 85.50300200133438 }, "selected" : false }, { "data" : { "id" : "5405", "shared_name" : "57572", "Matching_Attribute" : [ "57572" ], "Classification" : "WMexpanded", "name" : "57572", "alias" : "DOCK6", "SUID" : 5405, "selected" : false }, "position" : { "x" : 332.87539239722196, "y" : -52.49699799866562 }, "selected" : false }, { "data" : { "id" : "5401", "shared_name" : "5373", "Matching_Attribute" : [ "5373" ], "Classification" : "WMexpanded", "name" : "5373", "alias" : "PMM2", "SUID" : 5401, "selected" : false }, "position" : { "x" : -513.124607602778, "y" : -61.49699799866562 }, "selected" : false }, { "data" : { "id" : "5397", "shared_name" : "85378", "Matching_Attribute" : [ "85378" ], "Classification" : "WMexpanded", "name" : "85378", "alias" : "TUBGCP6", "SUID" : 5397, "selected" : false }, "position" : { "x" : 426.87539239722196, "y" : -128.49699799866562 }, "selected" : false }, { "data" : { "id" : "5393", "shared_name" : "2395", "Matching_Attribute" : [ "2395" ], "Classification" : "WMexpanded", "name" : "2395", "alias" : "FXN", "SUID" : 5393, "selected" : false }, "position" : { "x" : -491.12460760277804, "y" : 79.50300200133438 }, "selected" : false }, { "data" : { "id" : "5389", "shared_name" : "551", "degree_layout" : 48, "Matching_Attribute" : [ "551" ], "Classification" : "WMexpanded", "name" : "551", "alias" : "AVP", "SUID" : 5389, "selected" : false }, "position" : { "x" : -34.12460760277804, "y" : -97.49699799866562 }, "selected" : false }, { "data" : { "id" : "5385", "shared_name" : "1349", "Matching_Attribute" : [ "1349" ], "Classification" : "WM", "name" : "1349", "alias" : "COX7B", "SUID" : 5385, "selected" : false }, "position" : { "x" : -496.12460760277804, "y" : 32.50300200133438 }, "selected" : false }, { "data" : { "id" : "5381", "shared_name" : "10229", "degree_layout" : 213, "Matching_Attribute" : [ "10229" ], "Classification" : "WM", "name" : "10229", "alias" : "COQ7", "SUID" : 5381, "selected" : false }, "position" : { "x" : -416.12460760277804, "y" : 76.50300200133438 }, "selected" : false }, { "data" : { "id" : "5377", "shared_name" : "6638", "Matching_Attribute" : [ "6638" ], "Classification" : "WMexpanded", "name" : "6638", "alias" : "SNRPN", "SUID" : 5377, "selected" : false }, "position" : { "x" : 172.87539239722196, "y" : 543.5030020013344 }, "selected" : false }, { "data" : { "id" : "5373", "shared_name" : "28962", "Matching_Attribute" : [ "28962" ], "Classification" : "WMexpanded", "name" : "28962", "alias" : "OSTM1", "SUID" : 5373, "selected" : false }, "position" : { "x" : -22.124607602778042, "y" : -169.49699799866562 }, "selected" : false }, { "data" : { "id" : "5369", "shared_name" : "473", "Matching_Attribute" : [ "473" ], "Classification" : "WM", "name" : "473", "alias" : "RERE", "SUID" : 5369, "selected" : false }, "position" : { "x" : 90.87539239722196, "y" : 408.5030020013344 }, "selected" : false }, { "data" : { "id" : "5365", "shared_name" : "2893", "degree_layout" : 99, "Matching_Attribute" : [ "2893" ], "Classification" : "WMexpanded", "name" : "2893", "alias" : "GRIA4", "SUID" : 5365, "selected" : false }, "position" : { "x" : -86.12460760277804, "y" : -172.49699799866562 }, "selected" : false }, { "data" : { "id" : "5361", "shared_name" : "5604", "degree_layout" : 119, "Matching_Attribute" : [ "5604" ], "Classification" : "WMexpanded", "name" : "5604", "alias" : "MAP2K1", "SUID" : 5361, "selected" : false }, "position" : { "x" : -60.12460760277804, "y" : -95.49699799866562 }, "selected" : false }, { "data" : { "id" : "5357", "shared_name" : "114034", "Matching_Attribute" : [ "114034" ], "Classification" : "WMexpanded", "name" : "114034", "alias" : "TOE1", "SUID" : 5357, "selected" : false }, "position" : { "x" : 275.87539239722196, "y" : 835.5030020013344 }, "selected" : false }, { "data" : { "id" : "5353", "shared_name" : "2026", "Matching_Attribute" : [ "2026" ], "Classification" : "candidate", "name" : "2026", "alias" : "ENO2", "SUID" : 5353, "selected" : false }, "position" : { "x" : -366.12460760277804, "y" : 159.50300200133438 }, "selected" : false }, { "data" : { "id" : "5349", "shared_name" : "440", "degree_layout" : 173, "Matching_Attribute" : [ "440" ], "Classification" : "WM", "name" : "440", "alias" : "ASNS", "SUID" : 5349, "selected" : false }, "position" : { "x" : -329.12460760277804, "y" : 94.50300200133438 }, "selected" : false }, { "data" : { "id" : "5345", "shared_name" : "9213", "Matching_Attribute" : [ "9213" ], "Classification" : "WM", "name" : "9213", "alias" : "XPR1", "SUID" : 5345, "selected" : false }, "position" : { "x" : 1.8753923972219582, "y" : -350.4969979986656 }, "selected" : false }, { "data" : { "id" : "5341", "shared_name" : "91647", "degree_layout" : 37, "Matching_Attribute" : [ "91647" ], "Classification" : "WM", "name" : "91647", "alias" : "ATPAF2", "SUID" : 5341, "selected" : false }, "position" : { "x" : -388.12460760277804, "y" : 125.50300200133438 }, "selected" : false }, { "data" : { "id" : "5337", "shared_name" : "84876", "Matching_Attribute" : [ "84876" ], "Classification" : "WMexpanded", "name" : "84876", "alias" : "ORAI1", "SUID" : 5337, "selected" : false }, "position" : { "x" : -106.12460760277804, "y" : -115.49699799866562 }, "selected" : false }, { "data" : { "id" : "5333", "shared_name" : "5591", "degree_layout" : 84, "Matching_Attribute" : [ "5591" ], "Classification" : "WM", "name" : "5591", "alias" : "PRKDC", "SUID" : 5333, "selected" : false }, "position" : { "x" : 78.87539239722196, "y" : 148.50300200133438 }, "selected" : false }, { "data" : { "id" : "5329", "shared_name" : "4907", "Matching_Attribute" : [ "4907" ], "Classification" : "WMexpanded", "name" : "4907", "alias" : "NT5E", "SUID" : 5329, "selected" : false }, "position" : { "x" : -254.12460760277804, "y" : -33.49699799866562 }, "selected" : false }, { "data" : { "id" : "5325", "shared_name" : "140767", "Matching_Attribute" : [ "140767" ], "Classification" : "WM", "name" : "140767", "alias" : "NRSN1", "SUID" : 5325, "selected" : false }, "position" : { "x" : -75.12460760277804, "y" : -363.4969979986656 }, "selected" : false }, { "data" : { "id" : "5321", "shared_name" : "5743", "Matching_Attribute" : [ "5743" ], "Classification" : "WM", "name" : "5743", "alias" : "PTGS2", "SUID" : 5321, "selected" : false }, "position" : { "x" : -70.12460760277804, "y" : -131.49699799866562 }, "selected" : false }, { "data" : { "id" : "5317", "shared_name" : "25939", "degree_layout" : 8, "Matching_Attribute" : [ "25939" ], "Classification" : "WM", "name" : "25939", "alias" : "SAMHD1", "SUID" : 5317, "selected" : false }, "position" : { "x" : 466.87539239722196, "y" : -82.49699799866562 }, "selected" : false }, { "data" : { "id" : "5313", "shared_name" : "6197", "Matching_Attribute" : [ "6197" ], "Classification" : "WMexpanded", "name" : "6197", "alias" : "RPS6KA3", "SUID" : 5313, "selected" : false }, "position" : { "x" : 273.87539239722196, "y" : -11.49699799866562 }, "selected" : false }, { "data" : { "id" : "5309", "shared_name" : "10280", "Matching_Attribute" : [ "10280" ], "Classification" : "WMexpanded", "name" : "10280", "alias" : "SIGMAR1", "SUID" : 5309, "selected" : false }, "position" : { "x" : 959.875392397222, "y" : -615.4969979986656 }, "selected" : false }, { "data" : { "id" : "5305", "shared_name" : "6901", "degree_layout" : 76, "Matching_Attribute" : [ "6901" ], "Classification" : "WMexpanded", "name" : "6901", "alias" : "TAZ", "SUID" : 5305, "selected" : false }, "position" : { "x" : -283.12460760277804, "y" : -152.49699799866562 }, "selected" : false }, { "data" : { "id" : "5301", "shared_name" : "54806", "Matching_Attribute" : [ "54806" ], "Classification" : "WMexpanded", "name" : "54806", "alias" : "AHI1", "SUID" : 5301, "selected" : false }, "position" : { "x" : 273.87539239722196, "y" : -27.49699799866562 }, "selected" : false }, { "data" : { "id" : "5297", "shared_name" : "6775", "Matching_Attribute" : [ "6775" ], "Classification" : "candidate", "name" : "6775", "alias" : "STAT4", "SUID" : 5297, "selected" : false }, "position" : { "x" : 124.87539239722196, "y" : 125.50300200133438 }, "selected" : false }, { "data" : { "id" : "5293", "shared_name" : "54476", "degree_layout" : 2, "Matching_Attribute" : [ "54476" ], "Classification" : "WM", "name" : "54476", "alias" : "RNF216", "SUID" : 5293, "selected" : false }, "position" : { "x" : 278.87539239722196, "y" : -261.4969979986656 }, "selected" : false }, { "data" : { "id" : "5289", "shared_name" : "9526", "Matching_Attribute" : [ "9526" ], "Classification" : "WMexpanded", "name" : "9526", "alias" : "MPDU1", "SUID" : 5289, "selected" : false }, "position" : { "x" : -388.12460760277804, "y" : -550.4969979986656 }, "selected" : false }, { "data" : { "id" : "5285", "shared_name" : "10133", "Matching_Attribute" : [ "10133" ], "Classification" : "WMexpanded", "name" : "10133", "alias" : "OPTN", "SUID" : 5285, "selected" : false }, "position" : { "x" : 122.87539239722196, "y" : -162.49699799866562 }, "selected" : false }, { "data" : { "id" : "5281", "shared_name" : "10084", "Matching_Attribute" : [ "10084" ], "Classification" : "WMexpanded", "name" : "10084", "alias" : "PQBP1", "SUID" : 5281, "selected" : false }, "position" : { "x" : 108.87539239722196, "y" : 520.5030020013344 }, "selected" : false }, { "data" : { "id" : "5277", "shared_name" : "55154", "Matching_Attribute" : [ "55154" ], "Classification" : "WM", "name" : "55154", "alias" : "MSTO1", "SUID" : 5277, "selected" : false }, "position" : { "x" : 316.87539239722196, "y" : -485.4969979986656 }, "selected" : false }, { "data" : { "id" : "5273", "shared_name" : "2048", "Matching_Attribute" : [ "2048" ], "Classification" : "WMexpanded", "name" : "2048", "alias" : "EPHB2", "SUID" : 5273, "selected" : false }, "position" : { "x" : 281.87539239722196, "y" : -133.49699799866562 }, "selected" : false }, { "data" : { "id" : "5269", "shared_name" : "8270", "Matching_Attribute" : [ "8270" ], "Classification" : "WM", "name" : "8270", "alias" : "LAGE3", "SUID" : 5269, "selected" : false }, "position" : { "x" : -567.124607602778, "y" : 172.50300200133438 }, "selected" : false }, { "data" : { "id" : "5265", "shared_name" : "1436", "degree_layout" : 28, "Matching_Attribute" : [ "1436" ], "Classification" : "WM", "name" : "1436", "alias" : "CSF1R", "SUID" : 5265, "selected" : false }, "position" : { "x" : 153.87539239722196, "y" : -218.49699799866562 }, "selected" : false }, { "data" : { "id" : "5261", "shared_name" : "132", "degree_layout" : 81, "Matching_Attribute" : [ "132" ], "Classification" : "WMexpanded", "name" : "132", "alias" : "ADK", "SUID" : 5261, "selected" : false }, "position" : { "x" : -95.12460760277804, "y" : 206.50300200133438 }, "selected" : false }, { "data" : { "id" : "5257", "shared_name" : "136647", "degree_layout" : 1, "Matching_Attribute" : [ "136647" ], "Classification" : "WM", "name" : "136647", "alias" : "MPLKIP", "SUID" : 5257, "selected" : false }, "position" : { "x" : 898.875392397222, "y" : -554.4969979986656 }, "selected" : false }, { "data" : { "id" : "5253", "shared_name" : "56006", "Matching_Attribute" : [ "56006" ], "Classification" : "WM", "name" : "56006", "alias" : "SMG9", "SUID" : 5253, "selected" : false }, "position" : { "x" : 22.875392397221958, "y" : 427.5030020013344 }, "selected" : false }, { "data" : { "id" : "5249", "shared_name" : "8643", "Matching_Attribute" : [ "8643" ], "Classification" : "WM", "name" : "8643", "alias" : "PTCH2", "SUID" : 5249, "selected" : false }, "position" : { "x" : 259.87539239722196, "y" : 245.50300200133438 }, "selected" : false }, { "data" : { "id" : "5245", "shared_name" : "1201", "degree_layout" : 27, "Matching_Attribute" : [ "1201" ], "Classification" : "WMexpanded", "name" : "1201", "alias" : "CLN3", "SUID" : 5245, "selected" : false }, "position" : { "x" : -307.12460760277804, "y" : -437.4969979986656 }, "selected" : false }, { "data" : { "id" : "5241", "shared_name" : "128869", "Matching_Attribute" : [ "128869" ], "Classification" : "WM", "name" : "128869", "alias" : "PIGU", "SUID" : 5241, "selected" : false }, "position" : { "x" : -6.124607602778042, "y" : -443.4969979986656 }, "selected" : false }, { "data" : { "id" : "5237", "shared_name" : "5830", "degree_layout" : 81, "Matching_Attribute" : [ "5830" ], "Classification" : "WMexpanded", "name" : "5830", "alias" : "PEX5", "SUID" : 5237, "selected" : false }, "position" : { "x" : -222.12460760277804, "y" : -18.49699799866562 }, "selected" : false }, { "data" : { "id" : "5233", "shared_name" : "79068", "Matching_Attribute" : [ "79068" ], "Classification" : "WMexpanded", "name" : "79068", "alias" : "FTO", "SUID" : 5233, "selected" : false }, "position" : { "x" : -99.12460760277804, "y" : 731.5030020013344 }, "selected" : false }, { "data" : { "id" : "5229", "shared_name" : "6335", "Matching_Attribute" : [ "6335" ], "Classification" : "WM", "name" : "6335", "alias" : "SCN9A", "SUID" : 5229, "selected" : false }, "position" : { "x" : 137.87539239722196, "y" : -66.49699799866562 }, "selected" : false }, { "data" : { "id" : "5225", "shared_name" : "5290", "degree_layout" : 182, "Matching_Attribute" : [ "5290" ], "Classification" : "WM", "name" : "5290", "alias" : "PIK3CA", "SUID" : 5225, "selected" : false }, "position" : { "x" : 57.87539239722196, "y" : -2.49699799866562 }, "selected" : false }, { "data" : { "id" : "5221", "shared_name" : "285362", "degree_layout" : 59, "Matching_Attribute" : [ "285362" ], "Classification" : "WM", "name" : "285362", "alias" : "SUMF1", "SUID" : 5221, "selected" : false }, "position" : { "x" : -300.12460760277804, "y" : -316.4969979986656 }, "selected" : false }, { "data" : { "id" : "5217", "shared_name" : "54902", "Matching_Attribute" : [ "54902" ], "Classification" : "WM", "name" : "54902", "alias" : "TTC19", "SUID" : 5217, "selected" : false }, "position" : { "x" : -166.12460760277804, "y" : 414.5030020013344 }, "selected" : false }, { "data" : { "id" : "5213", "shared_name" : "2271", "degree_layout" : 62, "Matching_Attribute" : [ "2271" ], "Classification" : "WM", "name" : "2271", "alias" : "FH", "SUID" : 5213, "selected" : false }, "position" : { "x" : -214.12460760277804, "y" : 307.5030020013344 }, "selected" : false }, { "data" : { "id" : "5209", "shared_name" : "23162", "Matching_Attribute" : [ "23162" ], "Classification" : "WM", "name" : "23162", "alias" : "MAPK8IP3", "SUID" : 5209, "selected" : false }, "position" : { "x" : 684.8818788309758, "y" : 3.9220288736791313 }, "selected" : false }, { "data" : { "id" : "5205", "shared_name" : "5828", "degree_layout" : 78, "Matching_Attribute" : [ "5828" ], "Classification" : "WMexpanded", "name" : "5828", "alias" : "PEX2", "SUID" : 5205, "selected" : false }, "position" : { "x" : -238.12460760277804, "y" : -18.49699799866562 }, "selected" : false }, { "data" : { "id" : "5201", "shared_name" : "353", "degree_layout" : 82, "Matching_Attribute" : [ "353" ], "Classification" : "WMexpanded", "name" : "353", "alias" : "APRT", "SUID" : 5201, "selected" : false }, "position" : { "x" : -254.12460760277804, "y" : 49.50300200133438 }, "selected" : false }, { "data" : { "id" : "5197", "shared_name" : "7156", "degree_layout" : 68, "Matching_Attribute" : [ "7156" ], "Classification" : "WMexpanded", "name" : "7156", "alias" : "TOP3A", "SUID" : 5197, "selected" : false }, "position" : { "x" : -24.124607602778042, "y" : 268.5030020013344 }, "selected" : false }, { "data" : { "id" : "5193", "shared_name" : "5725", "Matching_Attribute" : [ "5725" ], "Classification" : "candidate", "name" : "5725", "alias" : "PTBP1", "SUID" : 5193, "selected" : false }, "position" : { "x" : 176.87539239722196, "y" : 412.5030020013344 }, "selected" : false }, { "data" : { "id" : "5189", "shared_name" : "57176", "degree_layout" : 237, "Matching_Attribute" : [ "57176" ], "Classification" : "WM", "name" : "57176", "alias" : "VARS2", "SUID" : 5189, "selected" : false }, "position" : { "x" : -225.12460760277804, "y" : 257.5030020013344 }, "selected" : false }, { "data" : { "id" : "5185", "shared_name" : "1499", "Matching_Attribute" : [ "1499" ], "Classification" : "WMexpanded", "name" : "1499", "alias" : "CTNNB1", "SUID" : 5185, "selected" : false }, "position" : { "x" : 221.87539239722196, "y" : 102.50300200133438 }, "selected" : false }, { "data" : { "id" : "5181", "shared_name" : "170825", "Matching_Attribute" : [ "170825" ], "Classification" : "WM", "name" : "170825", "alias" : "GSX2", "SUID" : 5181, "selected" : false }, "position" : { "x" : 385.87539239722196, "y" : 491.5030020013344 }, "selected" : false }, { "data" : { "id" : "5177", "shared_name" : "7097", "degree_layout" : 5, "Matching_Attribute" : [ "7097" ], "Classification" : "WM", "name" : "7097", "alias" : "TLR2", "SUID" : 5177, "selected" : false }, "position" : { "x" : 262.87539239722196, "y" : -485.4969979986656 }, "selected" : false }, { "data" : { "id" : "5173", "shared_name" : "1718", "Matching_Attribute" : [ "1718" ], "Classification" : "WM", "name" : "1718", "alias" : "DHCR24", "SUID" : 5173, "selected" : false }, "position" : { "x" : -249.12460760277804, "y" : -87.49699799866562 }, "selected" : false }, { "data" : { "id" : "5169", "shared_name" : "1355", "degree_layout" : 180, "Matching_Attribute" : [ "1355" ], "Classification" : "WM", "name" : "1355", "alias" : "COX15", "SUID" : 5169, "selected" : false }, "position" : { "x" : -448.12460760277804, "y" : 194.50300200133438 }, "selected" : false }, { "data" : { "id" : "5165", "shared_name" : "3704", "degree_layout" : 75, "Matching_Attribute" : [ "3704" ], "Classification" : "WM", "name" : "3704", "alias" : "ITPA", "SUID" : 5165, "selected" : false }, "position" : { "x" : -199.12460760277804, "y" : 96.50300200133438 }, "selected" : false }, { "data" : { "id" : "5161", "shared_name" : "1786", "Matching_Attribute" : [ "1786" ], "Classification" : "WM", "name" : "1786", "alias" : "DNMT1", "SUID" : 5161, "selected" : false }, "position" : { "x" : -119.12460760277804, "y" : 91.50300200133438 }, "selected" : false }, { "data" : { "id" : "5157", "shared_name" : "1600", "Matching_Attribute" : [ "1600" ], "Classification" : "WMexpanded", "name" : "1600", "alias" : "DAB1", "SUID" : 5157, "selected" : false }, "position" : { "x" : 99.87539239722196, "y" : -240.49699799866562 }, "selected" : false }, { "data" : { "id" : "5153", "shared_name" : "10522", "Matching_Attribute" : [ "10522" ], "Classification" : "WM", "name" : "10522", "alias" : "DEAF1", "SUID" : 5153, "selected" : false }, "position" : { "x" : 959.875392397222, "y" : -554.4969979986656 }, "selected" : false }, { "data" : { "id" : "5149", "shared_name" : "5058", "degree_layout" : 100, "Matching_Attribute" : [ "5058" ], "Classification" : "WM", "name" : "5058", "alias" : "PAK1", "SUID" : 5149, "selected" : false }, "position" : { "x" : 41.87539239722196, "y" : -58.49699799866562 }, "selected" : false }, { "data" : { "id" : "5145", "shared_name" : "23236", "Matching_Attribute" : [ "23236" ], "Classification" : "WMexpanded", "name" : "23236", "alias" : "PLCB1", "SUID" : 5145, "selected" : false }, "position" : { "x" : 169.87539239722196, "y" : -42.49699799866562 }, "selected" : false }, { "data" : { "id" : "5141", "shared_name" : "11261", "Matching_Attribute" : [ "11261" ], "Classification" : "WM", "name" : "11261", "alias" : "CHP1", "SUID" : 5141, "selected" : false }, "position" : { "x" : -103.12460760277804, "y" : -487.4969979986656 }, "selected" : false }, { "data" : { "id" : "5137", "shared_name" : "25782", "Matching_Attribute" : [ "25782" ], "Classification" : "WMexpanded", "name" : "25782", "alias" : "RAB3GAP2", "SUID" : 5137, "selected" : false }, "position" : { "x" : 449.87539239722196, "y" : -34.49699799866562 }, "selected" : false }, { "data" : { "id" : "5133", "shared_name" : "51", "degree_layout" : 119, "Matching_Attribute" : [ "51" ], "Classification" : "WM", "name" : "51", "alias" : "ACOX1", "SUID" : 5133, "selected" : false }, "position" : { "x" : -222.12460760277804, "y" : -36.49699799866562 }, "selected" : false }, { "data" : { "id" : "5129", "shared_name" : "57465", "Matching_Attribute" : [ "57465" ], "Classification" : "WM", "name" : "57465", "alias" : "TBC1D24", "SUID" : 5129, "selected" : false }, "position" : { "x" : 220.87539239722196, "y" : 188.50300200133438 }, "selected" : false }, { "data" : { "id" : "5125", "shared_name" : "5979", "Matching_Attribute" : [ "5979" ], "Classification" : "WMexpanded", "name" : "5979", "alias" : "RET", "SUID" : 5125, "selected" : false }, "position" : { "x" : 350.87539239722196, "y" : -67.49699799866562 }, "selected" : false }, { "data" : { "id" : "5121", "shared_name" : "1496", "Matching_Attribute" : [ "1496" ], "Classification" : "WM", "name" : "1496", "alias" : "CTNNA2", "SUID" : 5121, "selected" : false }, "position" : { "x" : 201.87539239722196, "y" : 85.50300200133438 }, "selected" : false }, { "data" : { "id" : "5117", "shared_name" : "25897", "Matching_Attribute" : [ "25897" ], "Classification" : "candidate", "name" : "25897", "alias" : "RNF19A", "SUID" : 5117, "selected" : false }, "position" : { "x" : -21.124607602778042, "y" : -266.4969979986656 }, "selected" : false }, { "data" : { "id" : "5113", "shared_name" : "7084", "Matching_Attribute" : [ "7084" ], "Classification" : "WMexpanded", "name" : "7084", "alias" : "TK2", "SUID" : 5113, "selected" : false }, "position" : { "x" : -251.12460760277804, "y" : 277.5030020013344 }, "selected" : false }, { "data" : { "id" : "5109", "shared_name" : "790", "degree_layout" : 125, "Matching_Attribute" : [ "790" ], "Classification" : "WMexpanded", "name" : "790", "alias" : "CAD", "SUID" : 5109, "selected" : false }, "position" : { "x" : -225.12460760277804, "y" : 129.50300200133438 }, "selected" : false }, { "data" : { "id" : "5105", "shared_name" : "1487", "Matching_Attribute" : [ "1487" ], "Classification" : "WMexpanded", "name" : "1487", "alias" : "CTBP1", "SUID" : 5105, "selected" : false }, "position" : { "x" : 30.875392397221958, "y" : 181.50300200133438 }, "selected" : false }, { "data" : { "id" : "5101", "shared_name" : "8678", "Matching_Attribute" : [ "8678" ], "Classification" : "candidate", "name" : "8678", "alias" : "BECN1", "SUID" : 5101, "selected" : false }, "position" : { "x" : -130.12460760277804, "y" : -398.4969979986656 }, "selected" : false }, { "data" : { "id" : "5097", "shared_name" : "8831", "Matching_Attribute" : [ "8831" ], "Classification" : "WMexpanded", "name" : "8831", "alias" : "SYNGAP1", "SUID" : 5097, "selected" : false }, "position" : { "x" : 454.87539239722196, "y" : -111.49699799866562 }, "selected" : false }, { "data" : { "id" : "5093", "shared_name" : "113612", "degree_layout" : 28, "Matching_Attribute" : [ "113612" ], "Classification" : "WM", "name" : "113612", "alias" : "CYP2U1", "SUID" : 5093, "selected" : false }, "position" : { "x" : -49.12460760277804, "y" : 139.50300200133438 }, "selected" : false }, { "data" : { "id" : "5089", "shared_name" : "1373", "degree_layout" : 85, "Matching_Attribute" : [ "1373" ], "Classification" : "WMexpanded", "name" : "1373", "alias" : "CPS1", "SUID" : 5089, "selected" : false }, "position" : { "x" : -191.12460760277804, "y" : 236.50300200133438 }, "selected" : false }, { "data" : { "id" : "5085", "shared_name" : "56652", "degree_layout" : 236, "Matching_Attribute" : [ "56652" ], "Classification" : "WM", "name" : "56652", "alias" : "TWNK", "SUID" : 5085, "selected" : false }, "position" : { "x" : -222.12460760277804, "y" : 177.50300200133438 }, "selected" : false }, { "data" : { "id" : "5081", "shared_name" : "5594", "degree_layout" : 161, "Matching_Attribute" : [ "5594" ], "Classification" : "WMexpanded", "name" : "5594", "alias" : "MAPK1", "SUID" : 5081, "selected" : false }, "position" : { "x" : 120.87539239722196, "y" : 45.50300200133438 }, "selected" : false }, { "data" : { "id" : "5077", "shared_name" : "8239", "degree_layout" : 6, "Matching_Attribute" : [ "8239" ], "Classification" : "WMexpanded", "name" : "8239", "alias" : "USP9X", "SUID" : 5077, "selected" : false }, "position" : { "x" : 209.87539239722196, "y" : -26.49699799866562 }, "selected" : false }, { "data" : { "id" : "5073", "shared_name" : "7305", "degree_layout" : 51, "Matching_Attribute" : [ "7305" ], "Classification" : "WM", "name" : "7305", "alias" : "TYROBP", "SUID" : 5073, "selected" : false }, "position" : { "x" : -70.12460760277804, "y" : -175.49699799866562 }, "selected" : false }, { "data" : { "id" : "5069", "shared_name" : "374354", "Matching_Attribute" : [ "374354" ], "Classification" : "WMexpanded", "name" : "374354", "alias" : "NHLRC2", "SUID" : 5069, "selected" : false }, "position" : { "x" : -352.12460760277804, "y" : 519.5030020013344 }, "selected" : false }, { "data" : { "id" : "5065", "shared_name" : "3117", "Matching_Attribute" : [ "3117" ], "Classification" : "WMexpanded", "name" : "3117", "alias" : "HLA-DQA1", "SUID" : 5065, "selected" : false }, "position" : { "x" : 44.87539239722196, "y" : -257.4969979986656 }, "selected" : false }, { "data" : { "id" : "5061", "shared_name" : "6285", "degree_layout" : 12, "Matching_Attribute" : [ "6285" ], "Classification" : "candidate", "name" : "6285", "alias" : "S100B", "SUID" : 5061, "selected" : false }, "position" : { "x" : 201.87539239722196, "y" : 224.50300200133438 }, "selected" : false }, { "data" : { "id" : "5057", "shared_name" : "10730", "Matching_Attribute" : [ "10730" ], "Classification" : "WM", "name" : "10730", "alias" : "YME1L1", "SUID" : 5057, "selected" : false }, "position" : { "x" : -353.12460760277804, "y" : 240.50300200133438 }, "selected" : false }, { "data" : { "id" : "5053", "shared_name" : "857", "degree_layout" : 56, "Matching_Attribute" : [ "857" ], "Classification" : "WMexpanded", "name" : "857", "alias" : "CAV1", "SUID" : 5053, "selected" : false }, "position" : { "x" : 137.87539239722196, "y" : -114.49699799866562 }, "selected" : false }, { "data" : { "id" : "5049", "shared_name" : "6697", "Matching_Attribute" : [ "6697" ], "Classification" : "WMexpanded", "name" : "6697", "alias" : "SPR", "SUID" : 5049, "selected" : false }, "position" : { "x" : -300.12460760277804, "y" : -55.49699799866562 }, "selected" : false }, { "data" : { "id" : "5045", "shared_name" : "51008", "Matching_Attribute" : [ "51008" ], "Classification" : "WMexpanded", "name" : "51008", "alias" : "ASCC1", "SUID" : 5045, "selected" : false }, "position" : { "x" : 433.87539239722196, "y" : -110.49699799866562 }, "selected" : false }, { "data" : { "id" : "5041", "shared_name" : "2067", "Matching_Attribute" : [ "2067" ], "Classification" : "WMexpanded", "name" : "2067", "alias" : "ERCC1", "SUID" : 5041, "selected" : false }, "position" : { "x" : 79.87539239722196, "y" : 376.5030020013344 }, "selected" : false }, { "data" : { "id" : "5037", "shared_name" : "5515", "degree_layout" : 149, "Matching_Attribute" : [ "5515" ], "Classification" : "WM", "name" : "5515", "alias" : "PPP2CA", "SUID" : 5037, "selected" : false }, "position" : { "x" : 104.87539239722196, "y" : 13.50300200133438 }, "selected" : false }, { "data" : { "id" : "5033", "shared_name" : "1565", "Matching_Attribute" : [ "1565" ], "Classification" : "WMexpanded", "name" : "1565", "alias" : "CYP2D6", "SUID" : 5033, "selected" : false }, "position" : { "x" : -93.12460760277804, "y" : 284.5030020013344 }, "selected" : false }, { "data" : { "id" : "5029", "shared_name" : "4842", "Matching_Attribute" : [ "4842" ], "Classification" : "candidate", "name" : "4842", "alias" : "NOS1", "SUID" : 5029, "selected" : false }, "position" : { "x" : -39.12460760277804, "y" : 94.50300200133438 }, "selected" : false }, { "data" : { "id" : "5025", "shared_name" : "6389", "degree_layout" : 102, "Matching_Attribute" : [ "6389" ], "Classification" : "WM", "name" : "6389", "alias" : "SDHA", "SUID" : 5025, "selected" : false }, "position" : { "x" : -238.12460760277804, "y" : 49.50300200133438 }, "selected" : false }, { "data" : { "id" : "5021", "shared_name" : "10617", "Matching_Attribute" : [ "10617" ], "Classification" : "WM", "name" : "10617", "alias" : "STAMBP", "SUID" : 5021, "selected" : false }, "position" : { "x" : 201.87539239722196, "y" : -122.49699799866562 }, "selected" : false }, { "data" : { "id" : "5017", "shared_name" : "3417", "degree_layout" : 159, "Matching_Attribute" : [ "3417" ], "Classification" : "WM", "name" : "3417", "alias" : "IDH1", "SUID" : 5017, "selected" : false }, "position" : { "x" : -145.12460760277804, "y" : 124.50300200133438 }, "selected" : false }, { "data" : { "id" : "5013", "shared_name" : "23411", "Matching_Attribute" : [ "23411" ], "Classification" : "WM", "name" : "23411", "alias" : "SIRT1", "SUID" : 5013, "selected" : false }, "position" : { "x" : 128.87539239722196, "y" : 61.50300200133438 }, "selected" : false }, { "data" : { "id" : "5009", "shared_name" : "5241", "Matching_Attribute" : [ "5241" ], "Classification" : "WMexpanded", "name" : "5241", "alias" : "PGR", "SUID" : 5009, "selected" : false }, "position" : { "x" : 172.87539239722196, "y" : 133.50300200133438 }, "selected" : false }, { "data" : { "id" : "5005", "shared_name" : "79868", "Matching_Attribute" : [ "79868" ], "Classification" : "WM", "name" : "79868", "alias" : "ALG13", "SUID" : 5005, "selected" : false }, "position" : { "x" : -311.12460760277804, "y" : -297.4969979986656 }, "selected" : false }, { "data" : { "id" : "5001", "shared_name" : "132158", "Matching_Attribute" : [ "132158" ], "Classification" : "WM", "name" : "132158", "alias" : "GLYCTK", "SUID" : 5001, "selected" : false }, "position" : { "x" : -142.12460760277804, "y" : 40.50300200133438 }, "selected" : false }, { "data" : { "id" : "4997", "shared_name" : "54820", "Matching_Attribute" : [ "54820" ], "Classification" : "WMexpanded", "name" : "54820", "alias" : "NDE1", "SUID" : 4997, "selected" : false }, "position" : { "x" : 310.87539239722196, "y" : -62.49699799866562 }, "selected" : false }, { "data" : { "id" : "4993", "shared_name" : "8622", "Matching_Attribute" : [ "8622" ], "Classification" : "WMexpanded", "name" : "8622", "alias" : "PDE8B", "SUID" : 4993, "selected" : false }, "position" : { "x" : -70.12460760277804, "y" : 162.50300200133438 }, "selected" : false }, { "data" : { "id" : "4989", "shared_name" : "51227", "Matching_Attribute" : [ "51227" ], "Classification" : "WM", "name" : "51227", "alias" : "PIGP", "SUID" : 4989, "selected" : false }, "position" : { "x" : -121.12460760277804, "y" : -272.4969979986656 }, "selected" : false }, { "data" : { "id" : "4985", "shared_name" : "3798", "degree_layout" : 10, "Matching_Attribute" : [ "3798" ], "Classification" : "WM", "name" : "3798", "alias" : "KIF5A", "SUID" : 4985, "selected" : false }, "position" : { "x" : 325.87539239722196, "y" : -20.49699799866562 }, "selected" : false }, { "data" : { "id" : "4981", "shared_name" : "6774", "Matching_Attribute" : [ "6774" ], "Classification" : "WMexpanded", "name" : "6774", "alias" : "STAT3", "SUID" : 4981, "selected" : false }, "position" : { "x" : 225.87539239722196, "y" : -13.49699799866562 }, "selected" : false }, { "data" : { "id" : "4977", "shared_name" : "8481", "degree_layout" : 18, "Matching_Attribute" : [ "8481" ], "Classification" : "WMexpanded", "name" : "8481", "alias" : "OFD1", "SUID" : 4977, "selected" : false }, "position" : { "x" : 417.87539239722196, "y" : -6.49699799866562 }, "selected" : false }, { "data" : { "id" : "4973", "shared_name" : "1910", "degree_layout" : 16, "Matching_Attribute" : [ "1910" ], "Classification" : "WM", "name" : "1910", "alias" : "EDNRB", "SUID" : 4973, "selected" : false }, "position" : { "x" : 167.87539239722196, "y" : -170.49699799866562 }, "selected" : false }, { "data" : { "id" : "4969", "shared_name" : "9725", "Matching_Attribute" : [ "9725" ], "Classification" : "WM", "name" : "9725", "alias" : "TMEM63A", "SUID" : 4969, "selected" : false }, "position" : { "x" : -402.12460760277804, "y" : -521.4969979986656 }, "selected" : false }, { "data" : { "id" : "4965", "shared_name" : "2668", "Matching_Attribute" : [ "2668" ], "Classification" : "WMexpanded", "name" : "2668", "alias" : "GDNF", "SUID" : 4965, "selected" : false }, "position" : { "x" : 325.87539239722196, "y" : -4.49699799866562 }, "selected" : false }, { "data" : { "id" : "4961", "shared_name" : "5132", "Matching_Attribute" : [ "5132" ], "Classification" : "candidate", "name" : "5132", "alias" : "PDC", "SUID" : 4961, "selected" : false }, "position" : { "x" : 104.87539239722196, "y" : -511.4969979986656 }, "selected" : false }, { "data" : { "id" : "4957", "shared_name" : "5071", "Matching_Attribute" : [ "5071" ], "Classification" : "WM", "name" : "5071", "alias" : "PRKN", "SUID" : 4957, "selected" : false }, "position" : { "x" : 257.87539239722196, "y" : 83.50300200133438 }, "selected" : false }, { "data" : { "id" : "4953", "shared_name" : "644096", "degree_layout" : 1, "Matching_Attribute" : [ "644096" ], "Classification" : "WM", "name" : "644096", "alias" : "SDHAF1", "SUID" : 4953, "selected" : false }, "position" : { "x" : -479.12460760277804, "y" : 207.50300200133438 }, "selected" : false }, { "data" : { "id" : "4949", "shared_name" : "5970", "degree_layout" : 156, "Matching_Attribute" : [ "5970" ], "Classification" : "WMexpanded", "name" : "5970", "alias" : "RELA", "SUID" : 4949, "selected" : false }, "position" : { "x" : 57.87539239722196, "y" : -106.49699799866562 }, "selected" : false }, { "data" : { "id" : "4945", "shared_name" : "4722", "degree_layout" : 195, "Matching_Attribute" : [ "4722" ], "Classification" : "WM", "name" : "4722", "alias" : "NDUFS3", "SUID" : 4945, "selected" : false }, "position" : { "x" : -351.12460760277804, "y" : 205.50300200133438 }, "selected" : false }, { "data" : { "id" : "4941", "shared_name" : "6342", "degree_layout" : 180, "Matching_Attribute" : [ "6342" ], "Classification" : "WM", "name" : "6342", "alias" : "SCP2", "SUID" : 4941, "selected" : false }, "position" : { "x" : -126.12460760277804, "y" : -28.49699799866562 }, "selected" : false }, { "data" : { "id" : "4937", "shared_name" : "1555", "degree_layout" : 54, "Matching_Attribute" : [ "1555" ], "Classification" : "candidate", "name" : "1555", "alias" : "CYP2B6", "SUID" : 4937, "selected" : false }, "position" : { "x" : -53.12460760277804, "y" : 192.50300200133438 }, "selected" : false }, { "data" : { "id" : "4933", "shared_name" : "7355", "Matching_Attribute" : [ "7355" ], "Classification" : "WM", "name" : "7355", "alias" : "SLC35A2", "SUID" : 4933, "selected" : false }, "position" : { "x" : -613.124607602778, "y" : -373.4969979986656 }, "selected" : false }, { "data" : { "id" : "4929", "shared_name" : "84504", "degree_layout" : 3, "Matching_Attribute" : [ "84504" ], "Classification" : "WM", "name" : "84504", "alias" : "NKX6-2", "SUID" : 4929, "selected" : false }, "position" : { "x" : 898.875392397222, "y" : -493.4969979986656 }, "selected" : false }, { "data" : { "id" : "4925", "shared_name" : "246243", "degree_layout" : 47, "Matching_Attribute" : [ "246243" ], "Classification" : "WM", "name" : "246243", "alias" : "RNASEH1", "SUID" : 4925, "selected" : false }, "position" : { "x" : -234.12460760277804, "y" : 340.5030020013344 }, "selected" : false }, { "data" : { "id" : "4921", "shared_name" : "6311", "Matching_Attribute" : [ "6311" ], "Classification" : "WMexpanded", "name" : "6311", "alias" : "ATXN2", "SUID" : 4921, "selected" : false }, "position" : { "x" : 0.8753923972219582, "y" : 229.50300200133438 }, "selected" : false }, { "data" : { "id" : "4917", "shared_name" : "10243", "Matching_Attribute" : [ "10243" ], "Classification" : "WM", "name" : "10243", "alias" : "GPHN", "SUID" : 4917, "selected" : false }, "position" : { "x" : -334.12460760277804, "y" : -5.49699799866562 }, "selected" : false }, { "data" : { "id" : "4913", "shared_name" : "23394", "Matching_Attribute" : [ "23394" ], "Classification" : "WMexpanded", "name" : "23394", "alias" : "ADNP", "SUID" : 4913, "selected" : false }, "position" : { "x" : -17.124607602778042, "y" : 361.5030020013344 }, "selected" : false }, { "data" : { "id" : "4909", "shared_name" : "823", "Matching_Attribute" : [ "823" ], "Classification" : "WMexpanded", "name" : "823", "alias" : "CAPN1", "SUID" : 4909, "selected" : false }, "position" : { "x" : 216.87539239722196, "y" : 18.50300200133438 }, "selected" : false }, { "data" : { "id" : "4905", "shared_name" : "440275", "degree_layout" : 10, "Matching_Attribute" : [ "440275" ], "Classification" : "WM", "name" : "440275", "alias" : "EIF2AK4", "SUID" : 4905, "selected" : false }, "position" : { "x" : -124.12460760277804, "y" : -47.49699799866562 }, "selected" : false }, { "data" : { "id" : "4901", "shared_name" : "22983", "Matching_Attribute" : [ "22983" ], "Classification" : "WMexpanded", "name" : "22983", "alias" : "MAST1", "SUID" : 4901, "selected" : false }, "position" : { "x" : 393.87539239722196, "y" : -251.49699799866562 }, "selected" : false }, { "data" : { "id" : "4897", "shared_name" : "55149", "degree_layout" : 223, "Matching_Attribute" : [ "55149" ], "Classification" : "WMexpanded", "name" : "55149", "alias" : "MTPAP", "SUID" : 4897, "selected" : false }, "position" : { "x" : -328.12460760277804, "y" : 223.50300200133438 }, "selected" : false }, { "data" : { "id" : "4893", "shared_name" : "10815", "Matching_Attribute" : [ "10815" ], "Classification" : "WMexpanded", "name" : "10815", "alias" : "CPLX1", "SUID" : 4893, "selected" : false }, "position" : { "x" : -155.12460760277804, "y" : -158.49699799866562 }, "selected" : false }, { "data" : { "id" : "4889", "shared_name" : "7295", "degree_layout" : 18, "Matching_Attribute" : [ "7295" ], "Classification" : "candidate", "name" : "7295", "alias" : "TXN", "SUID" : 4889, "selected" : false }, "position" : { "x" : -30.124607602778042, "y" : 34.50300200133438 }, "selected" : false }, { "data" : { "id" : "4885", "shared_name" : "5340", "Matching_Attribute" : [ "5340" ], "Classification" : "WMexpanded", "name" : "5340", "alias" : "PLG", "SUID" : 4885, "selected" : false }, "position" : { "x" : -148.12460760277804, "y" : -191.49699799866562 }, "selected" : false }, { "data" : { "id" : "4881", "shared_name" : "6833", "Matching_Attribute" : [ "6833" ], "Classification" : "WMexpanded", "name" : "6833", "alias" : "ABCC8", "SUID" : 4881, "selected" : false }, "position" : { "x" : -25.124607602778042, "y" : 188.50300200133438 }, "selected" : false }, { "data" : { "id" : "4877", "shared_name" : "1965", "degree_layout" : 66, "Matching_Attribute" : [ "1965" ], "Classification" : "WM", "name" : "1965", "alias" : "EIF2S1", "SUID" : 4877, "selected" : false }, "position" : { "x" : 60.87539239722196, "y" : 115.50300200133438 }, "selected" : false }, { "data" : { "id" : "4873", "shared_name" : "4644", "Matching_Attribute" : [ "4644" ], "Classification" : "WMexpanded", "name" : "4644", "alias" : "MYO5A", "SUID" : 4873, "selected" : false }, "position" : { "x" : 185.87539239722196, "y" : -122.49699799866562 }, "selected" : false }, { "data" : { "id" : "4869", "shared_name" : "92935", "degree_layout" : 275, "Matching_Attribute" : [ "92935" ], "Classification" : "WM", "name" : "92935", "alias" : "MARS2", "SUID" : 4869, "selected" : false }, "position" : { "x" : -278.12460760277804, "y" : 78.50300200133438 }, "selected" : false }, { "data" : { "id" : "4865", "shared_name" : "55690", "Matching_Attribute" : [ "55690" ], "Classification" : "WM", "name" : "55690", "alias" : "PACS1", "SUID" : 4865, "selected" : false }, "position" : { "x" : -3.124607602778042, "y" : -170.49699799866562 }, "selected" : false }, { "data" : { "id" : "4861", "shared_name" : "4771", "Matching_Attribute" : [ "4771" ], "Classification" : "WMexpanded", "name" : "4771", "alias" : "NF2", "SUID" : 4861, "selected" : false }, "position" : { "x" : 322.87539239722196, "y" : -122.49699799866562 }, "selected" : false }, { "data" : { "id" : "4857", "shared_name" : "5573", "degree_layout" : 117, "Matching_Attribute" : [ "5573" ], "Classification" : "WMexpanded", "name" : "5573", "alias" : "PRKAR1A", "SUID" : 4857, "selected" : false }, "position" : { "x" : 32.87539239722196, "y" : 37.50300200133438 }, "selected" : false }, { "data" : { "id" : "4853", "shared_name" : "545", "degree_layout" : 95, "Matching_Attribute" : [ "545" ], "Classification" : "WMexpanded", "name" : "545", "alias" : "ATR", "SUID" : 4853, "selected" : false }, "position" : { "x" : 158.87539239722196, "y" : 159.50300200133438 }, "selected" : false }, { "data" : { "id" : "4849", "shared_name" : "11154", "Matching_Attribute" : [ "11154" ], "Classification" : "WMexpanded", "name" : "11154", "alias" : "AP4S1", "SUID" : 4849, "selected" : false }, "position" : { "x" : -237.12460760277804, "y" : -427.4969979986656 }, "selected" : false }, { "data" : { "id" : "4845", "shared_name" : "259232", "Matching_Attribute" : [ "259232" ], "Classification" : "WMexpanded", "name" : "259232", "alias" : "NALCN", "SUID" : 4845, "selected" : false }, "position" : { "x" : -125.12460760277804, "y" : -197.49699799866562 }, "selected" : false }, { "data" : { "id" : "4841", "shared_name" : "6334", "Matching_Attribute" : [ "6334" ], "Classification" : "WMexpanded", "name" : "6334", "alias" : "SCN8A", "SUID" : 4841, "selected" : false }, "position" : { "x" : 249.87539239722196, "y" : 6.50300200133438 }, "selected" : false }, { "data" : { "id" : "4837", "shared_name" : "8891", "degree_layout" : 47, "Matching_Attribute" : [ "8891" ], "Classification" : "WM", "name" : "8891", "alias" : "EIF2B3", "SUID" : 4837, "selected" : false }, "position" : { "x" : -55.12460760277804, "y" : 93.50300200133438 }, "selected" : false }, { "data" : { "id" : "4833", "shared_name" : "2593", "degree_layout" : 54, "Matching_Attribute" : [ "2593" ], "Classification" : "WMexpanded", "name" : "2593", "alias" : "GAMT", "SUID" : 4833, "selected" : false }, "position" : { "x" : -121.12460760277804, "y" : 260.5030020013344 }, "selected" : false }, { "data" : { "id" : "4829", "shared_name" : "64919", "Matching_Attribute" : [ "64919" ], "Classification" : "WM", "name" : "64919", "alias" : "BCL11B", "SUID" : 4829, "selected" : false }, "position" : { "x" : 77.87539239722196, "y" : 259.5030020013344 }, "selected" : false }, { "data" : { "id" : "4825", "shared_name" : "6445", "Matching_Attribute" : [ "6445" ], "Classification" : "WMexpanded", "name" : "6445", "alias" : "SGCG", "SUID" : 4825, "selected" : false }, "position" : { "x" : 390.87539239722196, "y" : 459.5030020013344 }, "selected" : false }, { "data" : { "id" : "4821", "shared_name" : "28982", "Matching_Attribute" : [ "28982" ], "Classification" : "WM", "name" : "28982", "alias" : "FLVCR1", "SUID" : 4821, "selected" : false }, "position" : { "x" : -353.12460760277804, "y" : -203.49699799866562 }, "selected" : false }, { "data" : { "id" : "4817", "shared_name" : "23111", "Matching_Attribute" : [ "23111" ], "Classification" : "WM", "name" : "23111", "alias" : "SPART", "SUID" : 4817, "selected" : false }, "position" : { "x" : 170.87539239722196, "y" : 327.5030020013344 }, "selected" : false }, { "data" : { "id" : "4813", "shared_name" : "23431", "Matching_Attribute" : [ "23431" ], "Classification" : "WM", "name" : "23431", "alias" : "AP4E1", "SUID" : 4813, "selected" : false }, "position" : { "x" : -130.12460760277804, "y" : -320.4969979986656 }, "selected" : false }, { "data" : { "id" : "4809", "shared_name" : "3481", "Matching_Attribute" : [ "3481" ], "Classification" : "WMexpanded", "name" : "3481", "alias" : "IGF2", "SUID" : 4809, "selected" : false }, "position" : { "x" : -55.12460760277804, "y" : -257.4969979986656 }, "selected" : false }, { "data" : { "id" : "4805", "shared_name" : "18", "degree_layout" : 168, "Matching_Attribute" : [ "18" ], "Classification" : "WM", "name" : "18", "alias" : "ABAT", "SUID" : 4805, "selected" : false }, "position" : { "x" : -396.12460760277804, "y" : 141.50300200133438 }, "selected" : false }, { "data" : { "id" : "4801", "shared_name" : "51053", "Matching_Attribute" : [ "51053" ], "Classification" : "WM", "name" : "51053", "alias" : "GMNN", "SUID" : 4801, "selected" : false }, "position" : { "x" : 290.87539239722196, "y" : 528.5030020013344 }, "selected" : false }, { "data" : { "id" : "4797", "shared_name" : "10735", "Matching_Attribute" : [ "10735" ], "Classification" : "WM", "name" : "10735", "alias" : "STAG2", "SUID" : 4797, "selected" : false }, "position" : { "x" : 220.87539239722196, "y" : 158.50300200133438 }, "selected" : false }, { "data" : { "id" : "4793", "shared_name" : "478", "degree_layout" : 82, "Matching_Attribute" : [ "478" ], "Classification" : "WMexpanded", "name" : "478", "alias" : "ATP1A3", "SUID" : 4793, "selected" : false }, "position" : { "x" : 8.875392397221958, "y" : 98.50300200133438 }, "selected" : false }, { "data" : { "id" : "4789", "shared_name" : "1284", "Matching_Attribute" : [ "1284" ], "Classification" : "WM", "name" : "1284", "alias" : "COL4A2", "SUID" : 4789, "selected" : false }, "position" : { "x" : 123.87539239722196, "y" : -250.49699799866562 }, "selected" : false }, { "data" : { "id" : "4785", "shared_name" : "1282", "degree_layout" : 29, "Matching_Attribute" : [ "1282" ], "Classification" : "WM", "name" : "1282", "alias" : "COL4A1", "SUID" : 4785, "selected" : false }, "position" : { "x" : 55.87539239722196, "y" : -286.4969979986656 }, "selected" : false }, { "data" : { "id" : "4781", "shared_name" : "80781", "Matching_Attribute" : [ "80781" ], "Classification" : "WMexpanded", "name" : "80781", "alias" : "COL18A1", "SUID" : 4781, "selected" : false }, "position" : { "x" : 47.87539239722196, "y" : -317.4969979986656 }, "selected" : false }, { "data" : { "id" : "4777", "shared_name" : "2632", "degree_layout" : 23, "Matching_Attribute" : [ "2632" ], "Classification" : "WM", "name" : "2632", "alias" : "GBE1", "SUID" : 4777, "selected" : false }, "position" : { "x" : -314.12460760277804, "y" : -106.49699799866562 }, "selected" : false }, { "data" : { "id" : "4773", "shared_name" : "90624", "Matching_Attribute" : [ "90624" ], "Classification" : "WM", "name" : "90624", "alias" : "LYRM7", "SUID" : 4773, "selected" : false }, "position" : { "x" : -167.12460760277804, "y" : 239.50300200133438 }, "selected" : false }, { "data" : { "id" : "4769", "shared_name" : "7132", "degree_layout" : 74, "Matching_Attribute" : [ "7132" ], "Classification" : "WM", "name" : "7132", "alias" : "TNFRSF1A", "SUID" : 4769, "selected" : false }, "position" : { "x" : 216.87539239722196, "y" : 36.50300200133438 }, "selected" : false }, { "data" : { "id" : "4765", "shared_name" : "7015", "Matching_Attribute" : [ "7015" ], "Classification" : "WM", "name" : "7015", "alias" : "TERT", "SUID" : 4765, "selected" : false }, "position" : { "x" : -109.12460760277804, "y" : -191.49699799866562 }, "selected" : false }, { "data" : { "id" : "4761", "shared_name" : "9907", "Matching_Attribute" : [ "9907" ], "Classification" : "WM", "name" : "9907", "alias" : "AP5Z1", "SUID" : 4761, "selected" : false }, "position" : { "x" : -217.12460760277804, "y" : 751.5030020013344 }, "selected" : false }, { "data" : { "id" : "4757", "shared_name" : "9997", "degree_layout" : 229, "Matching_Attribute" : [ "9997" ], "Classification" : "WM", "name" : "9997", "alias" : "SCO2", "SUID" : 4757, "selected" : false }, "position" : { "x" : -294.12460760277804, "y" : 46.50300200133438 }, "selected" : false }, { "data" : { "id" : "4753", "shared_name" : "2314", "Matching_Attribute" : [ "2314" ], "Classification" : "candidate", "name" : "2314", "alias" : "FLII", "SUID" : 4753, "selected" : false }, "position" : { "x" : 665.2836085466434, "y" : 217.41002978419527 }, "selected" : false }, { "data" : { "id" : "4749", "shared_name" : "3028", "degree_layout" : 76, "Matching_Attribute" : [ "3028" ], "Classification" : "WMexpanded", "name" : "3028", "alias" : "HSD17B10", "SUID" : 4749, "selected" : false }, "position" : { "x" : -175.12460760277804, "y" : 223.50300200133438 }, "selected" : false }, { "data" : { "id" : "4745", "shared_name" : "35", "degree_layout" : 131, "Matching_Attribute" : [ "35" ], "Classification" : "WM", "name" : "35", "alias" : "ACADS", "SUID" : 4745, "selected" : false }, "position" : { "x" : -286.12460760277804, "y" : 62.50300200133438 }, "selected" : false }, { "data" : { "id" : "4741", "shared_name" : "79147", "Matching_Attribute" : [ "79147" ], "Classification" : "WM", "name" : "79147", "alias" : "FKRP", "SUID" : 4741, "selected" : false }, "position" : { "x" : -201.12460760277804, "y" : -526.4969979986656 }, "selected" : false }, { "data" : { "id" : "4737", "shared_name" : "445", "degree_layout" : 125, "Matching_Attribute" : [ "445" ], "Classification" : "WMexpanded", "name" : "445", "alias" : "ASS1", "SUID" : 4737, "selected" : false }, "position" : { "x" : -368.12460760277804, "y" : -1.4969979986656199 }, "selected" : false }, { "data" : { "id" : "4733", "shared_name" : "23404", "Matching_Attribute" : [ "23404" ], "Classification" : "WM", "name" : "23404", "alias" : "EXOSC2", "SUID" : 4733, "selected" : false }, "position" : { "x" : -235.12460760277804, "y" : 273.5030020013344 }, "selected" : false }, { "data" : { "id" : "4729", "shared_name" : "5216", "Matching_Attribute" : [ "5216" ], "Classification" : "WMexpanded", "name" : "5216", "alias" : "PFN1", "SUID" : 4729, "selected" : false }, "position" : { "x" : 201.87539239722196, "y" : 101.50300200133438 }, "selected" : false }, { "data" : { "id" : "4725", "shared_name" : "7010", "Matching_Attribute" : [ "7010" ], "Classification" : "WMexpanded", "name" : "7010", "alias" : "TEK", "SUID" : 4725, "selected" : false }, "position" : { "x" : 387.87539239722196, "y" : -52.49699799866562 }, "selected" : false }, { "data" : { "id" : "4721", "shared_name" : "5805", "Matching_Attribute" : [ "5805" ], "Classification" : "WMexpanded", "name" : "5805", "alias" : "PTS", "SUID" : 4721, "selected" : false }, "position" : { "x" : -157.12460760277804, "y" : -123.49699799866562 }, "selected" : false }, { "data" : { "id" : "4717", "shared_name" : "51204", "degree_layout" : 13, "Matching_Attribute" : [ "51204" ], "Classification" : "WM", "name" : "51204", "alias" : "TACO1", "SUID" : 4717, "selected" : false }, "position" : { "x" : -500.12460760277804, "y" : 263.5030020013344 }, "selected" : false }, { "data" : { "id" : "4713", "shared_name" : "80816", "Matching_Attribute" : [ "80816" ], "Classification" : "WM", "name" : "80816", "alias" : "ASXL3", "SUID" : 4713, "selected" : false }, "position" : { "x" : 959.875392397222, "y" : -432.4969979986656 }, "selected" : false }, { "data" : { "id" : "4709", "shared_name" : "8635", "Matching_Attribute" : [ "8635" ], "Classification" : "WM", "name" : "8635", "alias" : "RNASET2", "SUID" : 4709, "selected" : false }, "position" : { "x" : 898.875392397222, "y" : -432.4969979986656 }, "selected" : false }, { "data" : { "id" : "4705", "shared_name" : "10664", "Matching_Attribute" : [ "10664" ], "Classification" : "WMexpanded", "name" : "10664", "alias" : "CTCF", "SUID" : 4705, "selected" : false }, "position" : { "x" : 54.87539239722196, "y" : 149.50300200133438 }, "selected" : false }, { "data" : { "id" : "4701", "shared_name" : "9896", "degree_layout" : 4, "Matching_Attribute" : [ "9896" ], "Classification" : "WM", "name" : "9896", "alias" : "FIG4", "SUID" : 4701, "selected" : false }, "position" : { "x" : -134.12460760277804, "y" : -479.4969979986656 }, "selected" : false }, { "data" : { "id" : "4697", "shared_name" : "7534", "degree_layout" : 18, "Matching_Attribute" : [ "7534" ], "Classification" : "WM", "name" : "7534", "alias" : "YWHAZ", "SUID" : 4697, "selected" : false }, "position" : { "x" : 241.87539239722196, "y" : 102.50300200133438 }, "selected" : false }, { "data" : { "id" : "4693", "shared_name" : "6301", "degree_layout" : 96, "Matching_Attribute" : [ "6301" ], "Classification" : "WMexpanded", "name" : "6301", "alias" : "SARS1", "SUID" : 4693, "selected" : false }, "position" : { "x" : -236.12460760277804, "y" : 113.50300200133438 }, "selected" : false }, { "data" : { "id" : "4689", "shared_name" : "291", "degree_layout" : 56, "Matching_Attribute" : [ "291" ], "Classification" : "WM", "name" : "291", "alias" : "SLC25A4", "SUID" : 4689, "selected" : false }, "position" : { "x" : -350.12460760277804, "y" : 2.50300200133438 }, "selected" : false }, { "data" : { "id" : "4685", "shared_name" : "2218", "Matching_Attribute" : [ "2218" ], "Classification" : "WM", "name" : "2218", "alias" : "FKTN", "SUID" : 4685, "selected" : false }, "position" : { "x" : -94.12460760277804, "y" : -510.4969979986656 }, "selected" : false }, { "data" : { "id" : "4681", "shared_name" : "4843", "degree_layout" : 80, "Matching_Attribute" : [ "4843" ], "Classification" : "WMexpanded", "name" : "4843", "alias" : "NOS2", "SUID" : 4681, "selected" : false }, "position" : { "x" : -94.12460760277804, "y" : -23.49699799866562 }, "selected" : false }, { "data" : { "id" : "4677", "shared_name" : "116448", "degree_layout" : 7, "Matching_Attribute" : [ "116448" ], "Classification" : "WM", "name" : "116448", "alias" : "OLIG1", "SUID" : 4677, "selected" : false }, "position" : { "x" : -41.12460760277804, "y" : -432.4969979986656 }, "selected" : false }, { "data" : { "id" : "4673", "shared_name" : "1186", "Matching_Attribute" : [ "1186" ], "Classification" : "WM", "name" : "1186", "alias" : "CLCN7", "SUID" : 4673, "selected" : false }, "position" : { "x" : -143.12460760277804, "y" : -248.49699799866562 }, "selected" : false }, { "data" : { "id" : "4669", "shared_name" : "2521", "Matching_Attribute" : [ "2521" ], "Classification" : "WMexpanded", "name" : "2521", "alias" : "FUS", "SUID" : 4669, "selected" : false }, "position" : { "x" : 208.87539239722196, "y" : 422.5030020013344 }, "selected" : false }, { "data" : { "id" : "4665", "shared_name" : "538", "degree_layout" : 40, "Matching_Attribute" : [ "538" ], "Classification" : "WM", "name" : "538", "alias" : "ATP7A", "SUID" : 4665, "selected" : false }, "position" : { "x" : -262.12460760277804, "y" : 33.50300200133438 }, "selected" : false }, { "data" : { "id" : "4661", "shared_name" : "6813", "degree_layout" : 2, "Matching_Attribute" : [ "6813" ], "Classification" : "WM", "name" : "6813", "alias" : "STXBP2", "SUID" : 4661, "selected" : false }, "position" : { "x" : 308.87539239722196, "y" : -36.49699799866562 }, "selected" : false }, { "data" : { "id" : "4657", "shared_name" : "64837", "Matching_Attribute" : [ "64837" ], "Classification" : "WM", "name" : "64837", "alias" : "KLC2", "SUID" : 4657, "selected" : false }, "position" : { "x" : 382.87539239722196, "y" : -32.49699799866562 }, "selected" : false }, { "data" : { "id" : "4653", "shared_name" : "51062", "Matching_Attribute" : [ "51062" ], "Classification" : "WM", "name" : "51062", "alias" : "ATL1", "SUID" : 4653, "selected" : false }, "position" : { "x" : 959.875392397222, "y" : -493.4969979986656 }, "selected" : false }, { "data" : { "id" : "4649", "shared_name" : "3479", "degree_layout" : 68, "Matching_Attribute" : [ "3479" ], "Classification" : "WM", "name" : "3479", "alias" : "IGF1", "SUID" : 4649, "selected" : false }, "position" : { "x" : -54.12460760277804, "y" : -147.49699799866562 }, "selected" : false }, { "data" : { "id" : "4645", "shared_name" : "84231", "Matching_Attribute" : [ "84231" ], "Classification" : "WMexpanded", "name" : "84231", "alias" : "TRAF7", "SUID" : 4645, "selected" : false }, "position" : { "x" : 17.875392397221958, "y" : -26.49699799866562 }, "selected" : false }, { "data" : { "id" : "4641", "shared_name" : "55331", "degree_layout" : 45, "Matching_Attribute" : [ "55331" ], "Classification" : "WM", "name" : "55331", "alias" : "ACER3", "SUID" : 4641, "selected" : false }, "position" : { "x" : -267.12460760277804, "y" : -184.49699799866562 }, "selected" : false }, { "data" : { "id" : "4637", "shared_name" : "25839", "Matching_Attribute" : [ "25839" ], "Classification" : "WMexpanded", "name" : "25839", "alias" : "COG4", "SUID" : 4637, "selected" : false }, "position" : { "x" : 252.87539239722196, "y" : -161.49699799866562 }, "selected" : false }, { "data" : { "id" : "4633", "shared_name" : "84942", "Matching_Attribute" : [ "84942" ], "Classification" : "WM", "name" : "84942", "alias" : "WDR73", "SUID" : 4633, "selected" : false }, "position" : { "x" : -733.124607602778, "y" : -462.4969979986656 }, "selected" : false }, { "data" : { "id" : "4629", "shared_name" : "6605", "Matching_Attribute" : [ "6605" ], "Classification" : "WMexpanded", "name" : "6605", "alias" : "SMARCE1", "SUID" : 4629, "selected" : false }, "position" : { "x" : 266.87539239722196, "y" : 22.50300200133438 }, "selected" : false }, { "data" : { "id" : "4625", "shared_name" : "6785", "Matching_Attribute" : [ "6785" ], "Classification" : "WM", "name" : "6785", "alias" : "ELOVL4", "SUID" : 4625, "selected" : false }, "position" : { "x" : 56.87539239722196, "y" : 43.50300200133438 }, "selected" : false }, { "data" : { "id" : "4621", "shared_name" : "57038", "degree_layout" : 280, "Matching_Attribute" : [ "57038" ], "Classification" : "WMexpanded", "name" : "57038", "alias" : "RARS2", "SUID" : 4621, "selected" : false }, "position" : { "x" : -370.12460760277804, "y" : 107.50300200133438 }, "selected" : false }, { "data" : { "id" : "4617", "shared_name" : "26227", "degree_layout" : 69, "Matching_Attribute" : [ "26227" ], "Classification" : "WM", "name" : "26227", "alias" : "PHGDH", "SUID" : 4617, "selected" : false }, "position" : { "x" : -134.12460760277804, "y" : 238.50300200133438 }, "selected" : false }, { "data" : { "id" : "4613", "shared_name" : "84896", "Matching_Attribute" : [ "84896" ], "Classification" : "WM", "name" : "84896", "alias" : "ATAD1", "SUID" : 4613, "selected" : false }, "position" : { "x" : -460.12460760277804, "y" : 133.50300200133438 }, "selected" : false }, { "data" : { "id" : "4609", "shared_name" : "84153", "degree_layout" : 18, "Matching_Attribute" : [ "84153" ], "Classification" : "WM", "name" : "84153", "alias" : "RNASEH2C", "SUID" : 4609, "selected" : false }, "position" : { "x" : -129.12460760277804, "y" : 291.5030020013344 }, "selected" : false }, { "data" : { "id" : "4605", "shared_name" : "7276", "Matching_Attribute" : [ "7276" ], "Classification" : "WMexpanded", "name" : "7276", "alias" : "TTR", "SUID" : 4605, "selected" : false }, "position" : { "x" : -268.12460760277804, "y" : -168.49699799866562 }, "selected" : false }, { "data" : { "id" : "4601", "shared_name" : "7504", "Matching_Attribute" : [ "7504" ], "Classification" : "WMexpanded", "name" : "7504", "alias" : "XK", "SUID" : 4601, "selected" : false }, "position" : { "x" : 898.875392397222, "y" : -371.4969979986656 }, "selected" : false }, { "data" : { "id" : "4597", "shared_name" : "3376", "degree_layout" : 119, "Matching_Attribute" : [ "3376" ], "Classification" : "WMexpanded", "name" : "3376", "alias" : "IARS1", "SUID" : 4597, "selected" : false }, "position" : { "x" : -419.12460760277804, "y" : 23.50300200133438 }, "selected" : false }, { "data" : { "id" : "4593", "shared_name" : "2058", "degree_layout" : 108, "Matching_Attribute" : [ "2058" ], "Classification" : "WM", "name" : "2058", "alias" : "EPRS1", "SUID" : 4593, "selected" : false }, "position" : { "x" : -222.12460760277804, "y" : 40.50300200133438 }, "selected" : false }, { "data" : { "id" : "4589", "shared_name" : "8431", "degree_layout" : 59, "Matching_Attribute" : [ "8431" ], "Classification" : "WM", "name" : "8431", "alias" : "NR0B2", "SUID" : 4589, "selected" : false }, "position" : { "x" : -64.12460760277804, "y" : -114.49699799866562 }, "selected" : false }, { "data" : { "id" : "4585", "shared_name" : "11041", "Matching_Attribute" : [ "11041" ], "Classification" : "WMexpanded", "name" : "11041", "alias" : "B4GAT1", "SUID" : 4585, "selected" : false }, "position" : { "x" : -179.12460760277804, "y" : -277.4969979986656 }, "selected" : false }, { "data" : { "id" : "4581", "shared_name" : "29110", "Matching_Attribute" : [ "29110" ], "Classification" : "WMexpanded", "name" : "29110", "alias" : "TBK1", "SUID" : 4581, "selected" : false }, "position" : { "x" : 209.87539239722196, "y" : -181.49699799866562 }, "selected" : false }, { "data" : { "id" : "4577", "shared_name" : "7167", "degree_layout" : 37, "Matching_Attribute" : [ "7167" ], "Classification" : "WMexpanded", "name" : "7167", "alias" : "TPI1", "SUID" : 4577, "selected" : false }, "position" : { "x" : -348.12460760277804, "y" : 127.50300200133438 }, "selected" : false }, { "data" : { "id" : "4573", "shared_name" : "23261", "Matching_Attribute" : [ "23261" ], "Classification" : "WMexpanded", "name" : "23261", "alias" : "CAMTA1", "SUID" : 4573, "selected" : false }, "position" : { "x" : -493.12460760277804, "y" : -537.4969979986656 }, "selected" : false }, { "data" : { "id" : "4569", "shared_name" : "2548", "Matching_Attribute" : [ "2548" ], "Classification" : "WM", "name" : "2548", "alias" : "GAA", "SUID" : 4569, "selected" : false }, "position" : { "x" : -578.124607602778, "y" : -116.49699799866562 }, "selected" : false }, { "data" : { "id" : "4565", "shared_name" : "57498", "Matching_Attribute" : [ "57498" ], "Classification" : "WM", "name" : "57498", "alias" : "KIDINS220", "SUID" : 4565, "selected" : false }, "position" : { "x" : 154.87539239722196, "y" : -186.49699799866562 }, "selected" : false }, { "data" : { "id" : "4561", "shared_name" : "4976", "Matching_Attribute" : [ "4976" ], "Classification" : "WMexpanded", "name" : "4976", "alias" : "OPA1", "SUID" : 4561, "selected" : false }, "position" : { "x" : -565.124607602778, "y" : 462.5030020013344 }, "selected" : false }, { "data" : { "id" : "4557", "shared_name" : "57410", "Matching_Attribute" : [ "57410" ], "Classification" : "WMexpanded", "name" : "57410", "alias" : "SCYL1", "SUID" : 4557, "selected" : false }, "position" : { "x" : -455.12460760277804, "y" : -144.49699799866562 }, "selected" : false }, { "data" : { "id" : "4553", "shared_name" : "10102", "degree_layout" : 12, "Matching_Attribute" : [ "10102" ], "Classification" : "WMexpanded", "name" : "10102", "alias" : "TSFM", "SUID" : 4553, "selected" : false }, "position" : { "x" : -496.12460760277804, "y" : 295.5030020013344 }, "selected" : false }, { "data" : { "id" : "4549", "shared_name" : "5903", "Matching_Attribute" : [ "5903" ], "Classification" : "WM", "name" : "5903", "alias" : "RANBP2", "SUID" : 4549, "selected" : false }, "position" : { "x" : 236.87539239722196, "y" : 188.50300200133438 }, "selected" : false }, { "data" : { "id" : "4545", "shared_name" : "9895", "Matching_Attribute" : [ "9895" ], "Classification" : "WMexpanded", "name" : "9895", "alias" : "TECPR2", "SUID" : 4545, "selected" : false }, "position" : { "x" : 757.875392397222, "y" : -273.4969979986656 }, "selected" : false }, { "data" : { "id" : "4541", "shared_name" : "65018", "Matching_Attribute" : [ "65018" ], "Classification" : "WMexpanded", "name" : "65018", "alias" : "PINK1", "SUID" : 4541, "selected" : false }, "position" : { "x" : 331.87539239722196, "y" : 90.50300200133438 }, "selected" : false }, { "data" : { "id" : "4537", "shared_name" : "2697", "degree_layout" : 26, "Matching_Attribute" : [ "2697" ], "Classification" : "WM", "name" : "2697", "alias" : "GJA1", "SUID" : 4537, "selected" : false }, "position" : { "x" : 129.87539239722196, "y" : -98.49699799866562 }, "selected" : false }, { "data" : { "id" : "4533", "shared_name" : "4089", "Matching_Attribute" : [ "4089" ], "Classification" : "WMexpanded", "name" : "4089", "alias" : "SMAD4", "SUID" : 4533, "selected" : false }, "position" : { "x" : 185.87539239722196, "y" : 85.50300200133438 }, "selected" : false }, { "data" : { "id" : "4529", "shared_name" : "54941", "Matching_Attribute" : [ "54941" ], "Classification" : "WM", "name" : "54941", "alias" : "RNF125", "SUID" : 4529, "selected" : false }, "position" : { "x" : 959.875392397222, "y" : -371.4969979986656 }, "selected" : false }, { "data" : { "id" : "4525", "shared_name" : "1666", "Matching_Attribute" : [ "1666" ], "Classification" : "candidate", "name" : "1666", "alias" : "DECR1", "SUID" : 4525, "selected" : false }, "position" : { "x" : -271.12460760277804, "y" : 191.50300200133438 }, "selected" : false }, { "data" : { "id" : "4521", "shared_name" : "5894", "degree_layout" : 133, "Matching_Attribute" : [ "5894" ], "Classification" : "WMexpanded", "name" : "5894", "alias" : "RAF1", "SUID" : 4521, "selected" : false }, "position" : { "x" : 17.875392397221958, "y" : -146.49699799866562 }, "selected" : false }, { "data" : { "id" : "4517", "shared_name" : "55704", "Matching_Attribute" : [ "55704" ], "Classification" : "WM", "name" : "55704", "alias" : "CCDC88A", "SUID" : 4517, "selected" : false }, "position" : { "x" : 329.87539239722196, "y" : 70.50300200133438 }, "selected" : false }, { "data" : { "id" : "4513", "shared_name" : "6904", "Matching_Attribute" : [ "6904" ], "Classification" : "WM", "name" : "6904", "alias" : "TBCD", "SUID" : 4513, "selected" : false }, "position" : { "x" : -55.12460760277804, "y" : -324.4969979986656 }, "selected" : false }, { "data" : { "id" : "4509", "shared_name" : "2902", "degree_layout" : 117, "Matching_Attribute" : [ "2902" ], "Classification" : "WMexpanded", "name" : "2902", "alias" : "GRIN1", "SUID" : 4509, "selected" : false }, "position" : { "x" : 104.87539239722196, "y" : 29.50300200133438 }, "selected" : false }, { "data" : { "id" : "4505", "shared_name" : "5190", "degree_layout" : 82, "Matching_Attribute" : [ "5190" ], "Classification" : "WM", "name" : "5190", "alias" : "PEX6", "SUID" : 4505, "selected" : false }, "position" : { "x" : -310.12460760277804, "y" : 46.50300200133438 }, "selected" : false }, { "data" : { "id" : "4501", "shared_name" : "25821", "degree_layout" : 92, "Matching_Attribute" : [ "25821" ], "Classification" : "WM", "name" : "25821", "alias" : "MTO1", "SUID" : 4501, "selected" : false }, "position" : { "x" : -348.12460760277804, "y" : 273.5030020013344 }, "selected" : false }, { "data" : { "id" : "4497", "shared_name" : "8243", "Matching_Attribute" : [ "8243" ], "Classification" : "WMexpanded", "name" : "8243", "alias" : "SMC1A", "SUID" : 4497, "selected" : false }, "position" : { "x" : 240.87539239722196, "y" : 238.50300200133438 }, "selected" : false }, { "data" : { "id" : "4493", "shared_name" : "5727", "Matching_Attribute" : [ "5727" ], "Classification" : "WM", "name" : "5727", "alias" : "PTCH1", "SUID" : 4493, "selected" : false }, "position" : { "x" : 306.87539239722196, "y" : 64.50300200133438 }, "selected" : false }, { "data" : { "id" : "4489", "shared_name" : "2222", "degree_layout" : 28, "Matching_Attribute" : [ "2222" ], "Classification" : "WM", "name" : "2222", "alias" : "FDFT1", "SUID" : 4489, "selected" : false }, "position" : { "x" : -326.12460760277804, "y" : -131.49699799866562 }, "selected" : false }, { "data" : { "id" : "4485", "shared_name" : "54496", "Matching_Attribute" : [ "54496" ], "Classification" : "WM", "name" : "54496", "alias" : "PRMT7", "SUID" : 4485, "selected" : false }, "position" : { "x" : -70.12460760277804, "y" : -51.49699799866562 }, "selected" : false }, { "data" : { "id" : "4481", "shared_name" : "55624", "Matching_Attribute" : [ "55624" ], "Classification" : "WM", "name" : "55624", "alias" : "POMGNT1", "SUID" : 4481, "selected" : false }, "position" : { "x" : -190.12460760277804, "y" : -463.4969979986656 }, "selected" : false }, { "data" : { "id" : "4477", "shared_name" : "5354", "degree_layout" : 3, "Matching_Attribute" : [ "5354" ], "Classification" : "WM", "name" : "5354", "alias" : "PLP1", "SUID" : 4477, "selected" : false }, "position" : { "x" : 250.87539239722196, "y" : -278.4969979986656 }, "selected" : false }, { "data" : { "id" : "4473", "shared_name" : "54888", "Matching_Attribute" : [ "54888" ], "Classification" : "WMexpanded", "name" : "54888", "alias" : "NSUN2", "SUID" : 4473, "selected" : false }, "position" : { "x" : 91.87539239722196, "y" : 494.5030020013344 }, "selected" : false }, { "data" : { "id" : "4469", "shared_name" : "8295", "Matching_Attribute" : [ "8295" ], "Classification" : "WM", "name" : "8295", "alias" : "TRRAP", "SUID" : 4469, "selected" : false }, "position" : { "x" : 293.87539239722196, "y" : 80.50300200133438 }, "selected" : false }, { "data" : { "id" : "4465", "shared_name" : "6314", "Matching_Attribute" : [ "6314" ], "Classification" : "WMexpanded", "name" : "6314", "alias" : "ATXN7", "SUID" : 4465, "selected" : false }, "position" : { "x" : 527.875392397222, "y" : -100.49699799866562 }, "selected" : false }, { "data" : { "id" : "4461", "shared_name" : "79947", "Matching_Attribute" : [ "79947" ], "Classification" : "WMexpanded", "name" : "79947", "alias" : "DHDDS", "SUID" : 4461, "selected" : false }, "position" : { "x" : -537.124607602778, "y" : 39.50300200133438 }, "selected" : false }, { "data" : { "id" : "4457", "shared_name" : "3082", "Matching_Attribute" : [ "3082" ], "Classification" : "WMexpanded", "name" : "3082", "alias" : "HGF", "SUID" : 4457, "selected" : false }, "position" : { "x" : 49.87539239722196, "y" : -34.49699799866562 }, "selected" : false }, { "data" : { "id" : "4453", "shared_name" : "4744", "Matching_Attribute" : [ "4744" ], "Classification" : "WMexpanded", "name" : "4744", "alias" : "NEFH", "SUID" : 4453, "selected" : false }, "position" : { "x" : 189.87539239722196, "y" : 53.50300200133438 }, "selected" : false }, { "data" : { "id" : "4449", "shared_name" : "55210", "Matching_Attribute" : [ "55210" ], "Classification" : "WMexpanded", "name" : "55210", "alias" : "ATAD3A", "SUID" : 4449, "selected" : false }, "position" : { "x" : 442.87539239722196, "y" : 417.5030020013344 }, "selected" : false }, { "data" : { "id" : "4445", "shared_name" : "80208", "degree_layout" : 3, "Matching_Attribute" : [ "80208" ], "Classification" : "WM", "name" : "80208", "alias" : "SPG11", "SUID" : 4445, "selected" : false }, "position" : { "x" : -148.12460760277804, "y" : 459.5030020013344 }, "selected" : false }, { "data" : { "id" : "4441", "shared_name" : "1213", "Matching_Attribute" : [ "1213" ], "Classification" : "WMexpanded", "name" : "1213", "alias" : "CLTC", "SUID" : 4441, "selected" : false }, "position" : { "x" : -5.124607602778042, "y" : -255.49699799866562 }, "selected" : false }, { "data" : { "id" : "4437", "shared_name" : "84168", "Matching_Attribute" : [ "84168" ], "Classification" : "WM", "name" : "84168", "alias" : "ANTXR1", "SUID" : 4437, "selected" : false }, "position" : { "x" : 268.87539239722196, "y" : 140.50300200133438 }, "selected" : false }, { "data" : { "id" : "4433", "shared_name" : "6239", "Matching_Attribute" : [ "6239" ], "Classification" : "candidate", "name" : "6239", "alias" : "RREB1", "SUID" : 4433, "selected" : false }, "position" : { "x" : 316.87539239722196, "y" : 242.50300200133438 }, "selected" : false }, { "data" : { "id" : "4429", "shared_name" : "65250", "Matching_Attribute" : [ "65250" ], "Classification" : "WMexpanded", "name" : "65250", "alias" : "CPLANE1", "SUID" : 4429, "selected" : false }, "position" : { "x" : 383.87539239722196, "y" : 475.5030020013344 }, "selected" : false }, { "data" : { "id" : "4425", "shared_name" : "6884", "Matching_Attribute" : [ "6884" ], "Classification" : "WM", "name" : "6884", "alias" : "TAF13", "SUID" : 4425, "selected" : false }, "position" : { "x" : 151.87539239722196, "y" : 448.5030020013344 }, "selected" : false }, { "data" : { "id" : "4421", "shared_name" : "2551", "degree_layout" : 13, "Matching_Attribute" : [ "2551" ], "Classification" : "candidate", "name" : "2551", "alias" : "GABPA", "SUID" : 4421, "selected" : false }, "position" : { "x" : -277.12460760277804, "y" : -104.49699799866562 }, "selected" : false }, { "data" : { "id" : "4417", "shared_name" : "1656", "degree_layout" : 24, "Matching_Attribute" : [ "1656" ], "Classification" : "WM", "name" : "1656", "alias" : "DDX6", "SUID" : 4417, "selected" : false }, "position" : { "x" : -177.12460760277804, "y" : 128.50300200133438 }, "selected" : false }, { "data" : { "id" : "4413", "shared_name" : "6612", "Matching_Attribute" : [ "6612" ], "Classification" : "WM", "name" : "6612", "alias" : "SUMO3", "SUID" : 4413, "selected" : false }, "position" : { "x" : 211.87539239722196, "y" : 359.5030020013344 }, "selected" : false }, { "data" : { "id" : "4409", "shared_name" : "6341", "degree_layout" : 205, "Matching_Attribute" : [ "6341" ], "Classification" : "WM", "name" : "6341", "alias" : "SCO1", "SUID" : 4409, "selected" : false }, "position" : { "x" : -359.12460760277804, "y" : 257.5030020013344 }, "selected" : false }, { "data" : { "id" : "4405", "shared_name" : "10667", "degree_layout" : 254, "Matching_Attribute" : [ "10667" ], "Classification" : "WM", "name" : "10667", "alias" : "FARS2", "SUID" : 4405, "selected" : false }, "position" : { "x" : -225.12460760277804, "y" : 145.50300200133438 }, "selected" : false }, { "data" : { "id" : "4401", "shared_name" : "55526", "Matching_Attribute" : [ "55526" ], "Classification" : "WMexpanded", "name" : "55526", "alias" : "DHTKD1", "SUID" : 4401, "selected" : false }, "position" : { "x" : -445.12460760277804, "y" : 154.50300200133438 }, "selected" : false }, { "data" : { "id" : "4397", "shared_name" : "10058", "degree_layout" : 39, "Matching_Attribute" : [ "10058" ], "Classification" : "WM", "name" : "10058", "alias" : "ABCB6", "SUID" : 4397, "selected" : false }, "position" : { "x" : -406.12460760277804, "y" : 157.50300200133438 }, "selected" : false }, { "data" : { "id" : "4393", "shared_name" : "950", "degree_layout" : 54, "Matching_Attribute" : [ "950" ], "Classification" : "WM", "name" : "950", "alias" : "SCARB2", "SUID" : 4393, "selected" : false }, "position" : { "x" : -122.12460760277804, "y" : -304.4969979986656 }, "selected" : false }, { "data" : { "id" : "4389", "shared_name" : "81846", "Matching_Attribute" : [ "81846" ], "Classification" : "WM", "name" : "81846", "alias" : "SBF2", "SUID" : 4389, "selected" : false }, "position" : { "x" : -35.12460760277804, "y" : -233.49699799866562 }, "selected" : false }, { "data" : { "id" : "4385", "shared_name" : "3084", "Matching_Attribute" : [ "3084" ], "Classification" : "candidate", "name" : "3084", "alias" : "NRG1", "SUID" : 4385, "selected" : false }, "position" : { "x" : 33.87539239722196, "y" : -4.49699799866562 }, "selected" : false }, { "data" : { "id" : "4381", "shared_name" : "2517", "degree_layout" : 10, "Matching_Attribute" : [ "2517" ], "Classification" : "WM", "name" : "2517", "alias" : "FUCA1", "SUID" : 4381, "selected" : false }, "position" : { "x" : -458.12460760277804, "y" : -349.4969979986656 }, "selected" : false }, { "data" : { "id" : "4377", "shared_name" : "64207", "Matching_Attribute" : [ "64207" ], "Classification" : "WMexpanded", "name" : "64207", "alias" : "IRF2BPL", "SUID" : 4377, "selected" : false }, "position" : { "x" : 898.875392397222, "y" : -310.4969979986656 }, "selected" : false }, { "data" : { "id" : "4373", "shared_name" : "4922", "Matching_Attribute" : [ "4922" ], "Classification" : "candidate", "name" : "4922", "alias" : "NTS", "SUID" : 4373, "selected" : false }, "position" : { "x" : 252.87539239722196, "y" : -754.4969979986656 }, "selected" : false }, { "data" : { "id" : "4369", "shared_name" : "54982", "Matching_Attribute" : [ "54982" ], "Classification" : "WM", "name" : "54982", "alias" : "CLN6", "SUID" : 4369, "selected" : false }, "position" : { "x" : 72.87539239722196, "y" : -854.4969979986656 }, "selected" : false }, { "data" : { "id" : "4365", "shared_name" : "58497", "Matching_Attribute" : [ "58497" ], "Classification" : "WM", "name" : "58497", "alias" : "PRUNE1", "SUID" : 4365, "selected" : false }, "position" : { "x" : -626.124607602778, "y" : -76.49699799866562 }, "selected" : false }, { "data" : { "id" : "4361", "shared_name" : "22906", "Matching_Attribute" : [ "22906" ], "Classification" : "WMexpanded", "name" : "22906", "alias" : "TRAK1", "SUID" : 4361, "selected" : false }, "position" : { "x" : 220.87539239722196, "y" : -140.49699799866562 }, "selected" : false }, { "data" : { "id" : "4357", "shared_name" : "196528", "Matching_Attribute" : [ "196528" ], "Classification" : "WMexpanded", "name" : "196528", "alias" : "ARID2", "SUID" : 4357, "selected" : false }, "position" : { "x" : 201.87539239722196, "y" : -53.49699799866562 }, "selected" : false }, { "data" : { "id" : "4353", "shared_name" : "9512", "degree_layout" : 12, "Matching_Attribute" : [ "9512" ], "Classification" : "WM", "name" : "9512", "alias" : "PMPCB", "SUID" : 4353, "selected" : false }, "position" : { "x" : -462.12460760277804, "y" : 53.50300200133438 }, "selected" : false }, { "data" : { "id" : "4349", "shared_name" : "5859", "Matching_Attribute" : [ "5859" ], "Classification" : "WM", "name" : "5859", "alias" : "QARS1", "SUID" : 4349, "selected" : false }, "position" : { "x" : -231.12460760277804, "y" : 97.50300200133438 }, "selected" : false }, { "data" : { "id" : "4345", "shared_name" : "4854", "degree_layout" : 13, "Matching_Attribute" : [ "4854" ], "Classification" : "WM", "name" : "4854", "alias" : "NOTCH3", "SUID" : 4345, "selected" : false }, "position" : { "x" : 370.87539239722196, "y" : -121.49699799866562 }, "selected" : false }, { "data" : { "id" : "4341", "shared_name" : "2729", "Matching_Attribute" : [ "2729" ], "Classification" : "WMexpanded", "name" : "2729", "alias" : "GCLC", "SUID" : 4341, "selected" : false }, "position" : { "x" : -302.12460760277804, "y" : 62.50300200133438 }, "selected" : false }, { "data" : { "id" : "4337", "shared_name" : "84197", "Matching_Attribute" : [ "84197" ], "Classification" : "WM", "name" : "84197", "alias" : "POMK", "SUID" : 4337, "selected" : false }, "position" : { "x" : -209.12460760277804, "y" : -444.4969979986656 }, "selected" : false }, { "data" : { "id" : "4333", "shared_name" : "54968", "Matching_Attribute" : [ "54968" ], "Classification" : "WM", "name" : "54968", "alias" : "TMEM70", "SUID" : 4333, "selected" : false }, "position" : { "x" : -277.12460760277804, "y" : 394.5030020013344 }, "selected" : false }, { "data" : { "id" : "4329", "shared_name" : "11315", "Matching_Attribute" : [ "11315" ], "Classification" : "WMexpanded", "name" : "11315", "alias" : "PARK7", "SUID" : 4329, "selected" : false }, "position" : { "x" : -111.12460760277804, "y" : 208.50300200133438 }, "selected" : false }, { "data" : { "id" : "4325", "shared_name" : "55275", "Matching_Attribute" : [ "55275" ], "Classification" : "WMexpanded", "name" : "55275", "alias" : "VPS53", "SUID" : 4325, "selected" : false }, "position" : { "x" : 426.87539239722196, "y" : -185.49699799866562 }, "selected" : false }, { "data" : { "id" : "4321", "shared_name" : "132320", "degree_layout" : 15, "Matching_Attribute" : [ "132320" ], "Classification" : "WM", "name" : "132320", "alias" : "SCLT1", "SUID" : 4321, "selected" : false }, "position" : { "x" : 366.87539239722196, "y" : -172.49699799866562 }, "selected" : false }, { "data" : { "id" : "4317", "shared_name" : "3178", "Matching_Attribute" : [ "3178" ], "Classification" : "WMexpanded", "name" : "3178", "alias" : "HNRNPA1", "SUID" : 4317, "selected" : false }, "position" : { "x" : 19.875392397221958, "y" : 319.5030020013344 }, "selected" : false }, { "data" : { "id" : "4313", "shared_name" : "3508", "Matching_Attribute" : [ "3508" ], "Classification" : "WM", "name" : "3508", "alias" : "IGHMBP2", "SUID" : 4313, "selected" : false }, "position" : { "x" : -543.124607602778, "y" : -170.49699799866562 }, "selected" : false }, { "data" : { "id" : "4309", "shared_name" : "5654", "degree_layout" : 19, "Matching_Attribute" : [ "5654" ], "Classification" : "WM", "name" : "5654", "alias" : "HTRA1", "SUID" : 4309, "selected" : false }, "position" : { "x" : 16.875392397221958, "y" : 114.50300200133438 }, "selected" : false }, { "data" : { "id" : "4305", "shared_name" : "9639", "Matching_Attribute" : [ "9639" ], "Classification" : "WM", "name" : "9639", "alias" : "ARHGEF10", "SUID" : 4305, "selected" : false }, "position" : { "x" : -80.12460760277804, "y" : -115.49699799866562 }, "selected" : false }, { "data" : { "id" : "4301", "shared_name" : "8799", "degree_layout" : 63, "Matching_Attribute" : [ "8799" ], "Classification" : "WM", "name" : "8799", "alias" : "PEX11B", "SUID" : 4301, "selected" : false }, "position" : { "x" : -270.12460760277804, "y" : 17.50300200133438 }, "selected" : false }, { "data" : { "id" : "4297", "shared_name" : "5193", "degree_layout" : 78, "Matching_Attribute" : [ "5193" ], "Classification" : "WM", "name" : "5193", "alias" : "PEX12", "SUID" : 4297, "selected" : false }, "position" : { "x" : -251.12460760277804, "y" : -135.49699799866562 }, "selected" : false }, { "data" : { "id" : "4293", "shared_name" : "5156", "Matching_Attribute" : [ "5156" ], "Classification" : "WMexpanded", "name" : "5156", "alias" : "PDGFRA", "SUID" : 4293, "selected" : false }, "position" : { "x" : 28.875392397221958, "y" : -263.4969979986656 }, "selected" : false }, { "data" : { "id" : "4289", "shared_name" : "90678", "Matching_Attribute" : [ "90678" ], "Classification" : "WM", "name" : "90678", "alias" : "LRSAM1", "SUID" : 4289, "selected" : false }, "position" : { "x" : -140.12460760277804, "y" : -107.49699799866562 }, "selected" : false }, { "data" : { "id" : "4285", "shared_name" : "8450", "degree_layout" : 65, "Matching_Attribute" : [ "8450" ], "Classification" : "WM", "name" : "8450", "alias" : "CUL4B", "SUID" : 4285, "selected" : false }, "position" : { "x" : 73.87539239722196, "y" : 348.5030020013344 }, "selected" : false }, { "data" : { "id" : "4281", "shared_name" : "3077", "Matching_Attribute" : [ "3077" ], "Classification" : "WMexpanded", "name" : "3077", "alias" : "HFE", "SUID" : 4281, "selected" : false }, "position" : { "x" : 61.87539239722196, "y" : -360.4969979986656 }, "selected" : false }, { "data" : { "id" : "4277", "shared_name" : "23729", "Matching_Attribute" : [ "23729" ], "Classification" : "WM", "name" : "23729", "alias" : "SHPK", "SUID" : 4277, "selected" : false }, "position" : { "x" : 149.87539239722196, "y" : -536.4969979986656 }, "selected" : false }, { "data" : { "id" : "4273", "shared_name" : "4548", "Matching_Attribute" : [ "4548" ], "Classification" : "WM", "name" : "4548", "alias" : "MTR", "SUID" : 4273, "selected" : false }, "position" : { "x" : -399.12460760277804, "y" : 8.50300200133438 }, "selected" : false }, { "data" : { "id" : "4269", "shared_name" : "3832", "Matching_Attribute" : [ "3832" ], "Classification" : "WMexpanded", "name" : "3832", "alias" : "KIF11", "SUID" : 4269, "selected" : false }, "position" : { "x" : 245.87539239722196, "y" : 171.50300200133438 }, "selected" : false }, { "data" : { "id" : "4265", "shared_name" : "4541", "degree_layout" : 53, "Matching_Attribute" : [ "4541" ], "Classification" : "WMexpanded", "name" : "4541", "alias" : "ND6", "SUID" : 4265, "selected" : false }, "position" : { "x" : -308.12460760277804, "y" : 343.5030020013344 }, "selected" : false }, { "data" : { "id" : "4261", "shared_name" : "124454", "degree_layout" : 335, "Matching_Attribute" : [ "124454" ], "Classification" : "WM", "name" : "124454", "alias" : "EARS2", "SUID" : 4261, "selected" : false }, "position" : { "x" : -412.12460760277804, "y" : 135.50300200133438 }, "selected" : false }, { "data" : { "id" : "4257", "shared_name" : "8573", "Matching_Attribute" : [ "8573" ], "Classification" : "WMexpanded", "name" : "8573", "alias" : "CASK", "SUID" : 4257, "selected" : false }, "position" : { "x" : 89.87539239722196, "y" : -48.49699799866562 }, "selected" : false }, { "data" : { "id" : "4253", "shared_name" : "84706", "degree_layout" : 114, "Matching_Attribute" : [ "84706" ], "Classification" : "WMexpanded", "name" : "84706", "alias" : "GPT2", "SUID" : 4253, "selected" : false }, "position" : { "x" : -215.12460760277804, "y" : 96.50300200133438 }, "selected" : false }, { "data" : { "id" : "4249", "shared_name" : "4331", "degree_layout" : 83, "Matching_Attribute" : [ "4331" ], "Classification" : "WM", "name" : "4331", "alias" : "MNAT1", "SUID" : 4249, "selected" : false }, "position" : { "x" : 171.87539239722196, "y" : 302.5030020013344 }, "selected" : false }, { "data" : { "id" : "4245", "shared_name" : "91147", "Matching_Attribute" : [ "91147" ], "Classification" : "WMexpanded", "name" : "91147", "alias" : "TMEM67", "SUID" : 4245, "selected" : false }, "position" : { "x" : 382.87539239722196, "y" : -174.49699799866562 }, "selected" : false }, { "data" : { "id" : "4241", "shared_name" : "1356", "Matching_Attribute" : [ "1356" ], "Classification" : "WMexpanded", "name" : "1356", "alias" : "CP", "SUID" : 4241, "selected" : false }, "position" : { "x" : -352.12460760277804, "y" : 73.50300200133438 }, "selected" : false }, { "data" : { "id" : "4237", "shared_name" : "4914", "Matching_Attribute" : [ "4914" ], "Classification" : "WM", "name" : "4914", "alias" : "NTRK1", "SUID" : 4237, "selected" : false }, "position" : { "x" : 223.87539239722196, "y" : -84.49699799866562 }, "selected" : false }, { "data" : { "id" : "4233", "shared_name" : "367", "degree_layout" : 66, "Matching_Attribute" : [ "367" ], "Classification" : "WMexpanded", "name" : "367", "alias" : "AR", "SUID" : 4233, "selected" : false }, "position" : { "x" : 142.87539239722196, "y" : 149.50300200133438 }, "selected" : false }, { "data" : { "id" : "4229", "shared_name" : "3035", "degree_layout" : 54, "Matching_Attribute" : [ "3035" ], "Classification" : "WM", "name" : "3035", "alias" : "HARS1", "SUID" : 4229, "selected" : false }, "position" : { "x" : -450.12460760277804, "y" : 111.50300200133438 }, "selected" : false }, { "data" : { "id" : "4225", "shared_name" : "55621", "Matching_Attribute" : [ "55621" ], "Classification" : "WMexpanded", "name" : "55621", "alias" : "TRMT1", "SUID" : 4225, "selected" : false }, "position" : { "x" : -122.12460760277804, "y" : 447.5030020013344 }, "selected" : false }, { "data" : { "id" : "4221", "shared_name" : "1644", "Matching_Attribute" : [ "1644" ], "Classification" : "WMexpanded", "name" : "1644", "alias" : "DDC", "SUID" : 4221, "selected" : false }, "position" : { "x" : -84.12460760277804, "y" : 268.5030020013344 }, "selected" : false }, { "data" : { "id" : "4217", "shared_name" : "51112", "Matching_Attribute" : [ "51112" ], "Classification" : "WMexpanded", "name" : "51112", "alias" : "TRAPPC12", "SUID" : 4217, "selected" : false }, "position" : { "x" : -9.124607602778042, "y" : 136.50300200133438 }, "selected" : false }, { "data" : { "id" : "4213", "shared_name" : "5295", "degree_layout" : 182, "Matching_Attribute" : [ "5295" ], "Classification" : "WMexpanded", "name" : "5295", "alias" : "PIK3R1", "SUID" : 4213, "selected" : false }, "position" : { "x" : 121.87539239722196, "y" : -128.49699799866562 }, "selected" : false }, { "data" : { "id" : "4209", "shared_name" : "4915", "Matching_Attribute" : [ "4915" ], "Classification" : "WM", "name" : "4915", "alias" : "NTRK2", "SUID" : 4209, "selected" : false }, "position" : { "x" : 273.87539239722196, "y" : -172.49699799866562 }, "selected" : false }, { "data" : { "id" : "4205", "shared_name" : "23503", "degree_layout" : 1, "Matching_Attribute" : [ "23503" ], "Classification" : "WM", "name" : "23503", "alias" : "ZFYVE26", "SUID" : 4205, "selected" : false }, "position" : { "x" : -150.12460760277804, "y" : -585.4969979986656 }, "selected" : false }, { "data" : { "id" : "4201", "shared_name" : "10985", "Matching_Attribute" : [ "10985" ], "Classification" : "WM", "name" : "10985", "alias" : "GCN1", "SUID" : 4201, "selected" : false }, "position" : { "x" : 541.875392397222, "y" : -180.49699799866562 }, "selected" : false }, { "data" : { "id" : "4197", "shared_name" : "1398", "Matching_Attribute" : [ "1398" ], "Classification" : "candidate", "name" : "1398", "alias" : "CRK", "SUID" : 4197, "selected" : false }, "position" : { "x" : 113.87539239722196, "y" : -112.49699799866562 }, "selected" : false }, { "data" : { "id" : "4193", "shared_name" : "2720", "degree_layout" : 64, "Matching_Attribute" : [ "2720" ], "Classification" : "WM", "name" : "2720", "alias" : "GLB1", "SUID" : 4193, "selected" : false }, "position" : { "x" : -285.12460760277804, "y" : -244.49699799866562 }, "selected" : false }, { "data" : { "id" : "4189", "shared_name" : "2744", "degree_layout" : 71, "Matching_Attribute" : [ "2744" ], "Classification" : "WM", "name" : "2744", "alias" : "GLS", "SUID" : 4189, "selected" : false }, "position" : { "x" : -127.12460760277804, "y" : 215.50300200133438 }, "selected" : false }, { "data" : { "id" : "4185", "shared_name" : "29968", "degree_layout" : 111, "Matching_Attribute" : [ "29968" ], "Classification" : "WM", "name" : "29968", "alias" : "PSAT1", "SUID" : 4185, "selected" : false }, "position" : { "x" : -354.12460760277804, "y" : 111.50300200133438 }, "selected" : false }, { "data" : { "id" : "4181", "shared_name" : "154", "degree_layout" : 51, "Matching_Attribute" : [ "154" ], "Classification" : "candidate", "name" : "154", "alias" : "ADRB2", "SUID" : 4181, "selected" : false }, "position" : { "x" : -5.124607602778042, "y" : -271.4969979986656 }, "selected" : false }, { "data" : { "id" : "4177", "shared_name" : "2068", "degree_layout" : 75, "Matching_Attribute" : [ "2068" ], "Classification" : "WM", "name" : "2068", "alias" : "ERCC2", "SUID" : 4177, "selected" : false }, "position" : { "x" : 154.87539239722196, "y" : 333.5030020013344 }, "selected" : false }, { "data" : { "id" : "4173", "shared_name" : "23499", "Matching_Attribute" : [ "23499" ], "Classification" : "WMexpanded", "name" : "23499", "alias" : "MACF1", "SUID" : 4173, "selected" : false }, "position" : { "x" : 132.87539239722196, "y" : 213.50300200133438 }, "selected" : false }, { "data" : { "id" : "4169", "shared_name" : "10993", "Matching_Attribute" : [ "10993" ], "Classification" : "WM", "name" : "10993", "alias" : "SDS", "SUID" : 4169, "selected" : false }, "position" : { "x" : -206.12460760277804, "y" : -11.49699799866562 }, "selected" : false }, { "data" : { "id" : "4165", "shared_name" : "3119", "Matching_Attribute" : [ "3119" ], "Classification" : "WMexpanded", "name" : "3119", "alias" : "HLA-DQB1", "SUID" : 4165, "selected" : false }, "position" : { "x" : 92.87539239722196, "y" : 122.50300200133438 }, "selected" : false }, { "data" : { "id" : "4161", "shared_name" : "4318", "Matching_Attribute" : [ "4318" ], "Classification" : "WM", "name" : "4318", "alias" : "MMP9", "SUID" : 4161, "selected" : false }, "position" : { "x" : 52.87539239722196, "y" : -340.4969979986656 }, "selected" : false }, { "data" : { "id" : "4157", "shared_name" : "85021", "Matching_Attribute" : [ "85021" ], "Classification" : "WMexpanded", "name" : "85021", "alias" : "REPS1", "SUID" : 4157, "selected" : false }, "position" : { "x" : -46.12460760277804, "y" : -289.4969979986656 }, "selected" : false }, { "data" : { "id" : "4153", "shared_name" : "2566", "Matching_Attribute" : [ "2566" ], "Classification" : "WM", "name" : "2566", "alias" : "GABRG2", "SUID" : 4153, "selected" : false }, "position" : { "x" : -74.12460760277804, "y" : -226.49699799866562 }, "selected" : false }, { "data" : { "id" : "4149", "shared_name" : "8893", "degree_layout" : 36, "Matching_Attribute" : [ "8893" ], "Classification" : "WM", "name" : "8893", "alias" : "EIF2B5", "SUID" : 4149, "selected" : false }, "position" : { "x" : 17.875392397221958, "y" : 5.50300200133438 }, "selected" : false }, { "data" : { "id" : "4145", "shared_name" : "120892", "Matching_Attribute" : [ "120892" ], "Classification" : "WMexpanded", "name" : "120892", "alias" : "LRRK2", "SUID" : 4145, "selected" : false }, "position" : { "x" : 203.87539239722196, "y" : -208.49699799866562 }, "selected" : false }, { "data" : { "id" : "4141", "shared_name" : "617", "degree_layout" : 223, "Matching_Attribute" : [ "617" ], "Classification" : "WM", "name" : "617", "alias" : "BCS1L", "SUID" : 4141, "selected" : false }, "position" : { "x" : -351.12460760277804, "y" : 189.50300200133438 }, "selected" : false }, { "data" : { "id" : "4137", "shared_name" : "9419", "Matching_Attribute" : [ "9419" ], "Classification" : "WM", "name" : "9419", "alias" : "CRIPT", "SUID" : 4137, "selected" : false }, "position" : { "x" : 898.875392397222, "y" : -249.49699799866562 }, "selected" : false }, { "data" : { "id" : "4133", "shared_name" : "427", "degree_layout" : 103, "Matching_Attribute" : [ "427" ], "Classification" : "WMexpanded", "name" : "427", "alias" : "ASAH1", "SUID" : 4133, "selected" : false }, "position" : { "x" : -46.12460760277804, "y" : -14.49699799866562 }, "selected" : false }, { "data" : { "id" : "4129", "shared_name" : "80210", "Matching_Attribute" : [ "80210" ], "Classification" : "WMexpanded", "name" : "80210", "alias" : "ARMC9", "SUID" : 4129, "selected" : false }, "position" : { "x" : 959.875392397222, "y" : -249.49699799866562 }, "selected" : false }, { "data" : { "id" : "4125", "shared_name" : "51360", "Matching_Attribute" : [ "51360" ], "Classification" : "WM", "name" : "51360", "alias" : "MBTPS2", "SUID" : 4125, "selected" : false }, "position" : { "x" : -291.12460760277804, "y" : -375.4969979986656 }, "selected" : false }, { "data" : { "id" : "4121", "shared_name" : "201163", "Matching_Attribute" : [ "201163" ], "Classification" : "WM", "name" : "201163", "alias" : "FLCN", "SUID" : 4121, "selected" : false }, "position" : { "x" : 959.875392397222, "y" : -310.4969979986656 }, "selected" : false }, { "data" : { "id" : "4117", "shared_name" : "7345", "Matching_Attribute" : [ "7345" ], "Classification" : "WMexpanded", "name" : "7345", "alias" : "UCHL1", "SUID" : 4117, "selected" : false }, "position" : { "x" : 273.87539239722196, "y" : -443.4969979986656 }, "selected" : false }, { "data" : { "id" : "4113", "shared_name" : "60528", "Matching_Attribute" : [ "60528" ], "Classification" : "WM", "name" : "60528", "alias" : "ELAC2", "SUID" : 4113, "selected" : false }, "position" : { "x" : -141.12460760277804, "y" : 621.5030020013344 }, "selected" : false }, { "data" : { "id" : "4109", "shared_name" : "6696", "Matching_Attribute" : [ "6696" ], "Classification" : "WM", "name" : "6696", "alias" : "SPP1", "SUID" : 4109, "selected" : false }, "position" : { "x" : 176.87539239722196, "y" : -514.4969979986656 }, "selected" : false }, { "data" : { "id" : "4105", "shared_name" : "347733", "Matching_Attribute" : [ "347733" ], "Classification" : "WMexpanded", "name" : "347733", "alias" : "TUBB2B", "SUID" : 4105, "selected" : false }, "position" : { "x" : 124.87539239722196, "y" : -445.4969979986656 }, "selected" : false }, { "data" : { "id" : "4101", "shared_name" : "65260", "degree_layout" : 231, "Matching_Attribute" : [ "65260" ], "Classification" : "WM", "name" : "65260", "alias" : "COA7", "SUID" : 4101, "selected" : false }, "position" : { "x" : -171.12460760277804, "y" : 276.5030020013344 }, "selected" : false }, { "data" : { "id" : "4097", "shared_name" : "9611", "degree_layout" : 95, "Matching_Attribute" : [ "9611" ], "Classification" : "WM", "name" : "9611", "alias" : "NCOR1", "SUID" : 4097, "selected" : false }, "position" : { "x" : 56.87539239722196, "y" : 91.50300200133438 }, "selected" : false }, { "data" : { "id" : "4093", "shared_name" : "2752", "degree_layout" : 104, "Matching_Attribute" : [ "2752" ], "Classification" : "WM", "name" : "2752", "alias" : "GLUL", "SUID" : 4093, "selected" : false }, "position" : { "x" : -255.12460760277804, "y" : 208.50300200133438 }, "selected" : false }, { "data" : { "id" : "4089", "shared_name" : "5173", "Matching_Attribute" : [ "5173" ], "Classification" : "WM", "name" : "5173", "alias" : "PDYN", "SUID" : 4089, "selected" : false }, "position" : { "x" : 1.8753923972219582, "y" : -564.4969979986656 }, "selected" : false }, { "data" : { "id" : "4085", "shared_name" : "55699", "Matching_Attribute" : [ "55699" ], "Classification" : "WM", "name" : "55699", "alias" : "IARS2", "SUID" : 4085, "selected" : false }, "position" : { "x" : -333.12460760277804, "y" : 239.50300200133438 }, "selected" : false }, { "data" : { "id" : "4081", "shared_name" : "148789", "Matching_Attribute" : [ "148789" ], "Classification" : "WM", "name" : "148789", "alias" : "B3GALNT2", "SUID" : 4081, "selected" : false }, "position" : { "x" : -116.12460760277804, "y" : -288.4969979986656 }, "selected" : false }, { "data" : { "id" : "4077", "shared_name" : "71", "degree_layout" : 88, "Matching_Attribute" : [ "71" ], "Classification" : "WMexpanded", "name" : "71", "alias" : "ACTG1", "SUID" : 4077, "selected" : false }, "position" : { "x" : 73.87539239722196, "y" : -122.49699799866562 }, "selected" : false }, { "data" : { "id" : "4073", "shared_name" : "29760", "Matching_Attribute" : [ "29760" ], "Classification" : "WM", "name" : "29760", "alias" : "BLNK", "SUID" : 4073, "selected" : false }, "position" : { "x" : 161.87539239722196, "y" : -58.49699799866562 }, "selected" : false }, { "data" : { "id" : "4069", "shared_name" : "374291", "degree_layout" : 254, "Matching_Attribute" : [ "374291" ], "Classification" : "WM", "name" : "374291", "alias" : "NDUFS7", "SUID" : 4069, "selected" : false }, "position" : { "x" : -239.12460760277804, "y" : 197.50300200133438 }, "selected" : false }, { "data" : { "id" : "4065", "shared_name" : "7124", "degree_layout" : 117, "Matching_Attribute" : [ "7124" ], "Classification" : "WM", "name" : "7124", "alias" : "TNF", "SUID" : 4065, "selected" : false }, "position" : { "x" : 152.87539239722196, "y" : 15.50300200133438 }, "selected" : false }, { "data" : { "id" : "4061", "shared_name" : "4705", "degree_layout" : 275, "Matching_Attribute" : [ "4705" ], "Classification" : "WM", "name" : "4705", "alias" : "NDUFA10", "SUID" : 4061, "selected" : false }, "position" : { "x" : -372.12460760277804, "y" : 125.50300200133438 }, "selected" : false }, { "data" : { "id" : "4057", "shared_name" : "10598", "Matching_Attribute" : [ "10598" ], "Classification" : "candidate", "name" : "10598", "alias" : "AHSA1", "SUID" : 4057, "selected" : false }, "position" : { "x" : -222.12460760277804, "y" : 548.5030020013344 }, "selected" : false }, { "data" : { "id" : "4053", "shared_name" : "79621", "degree_layout" : 18, "Matching_Attribute" : [ "79621" ], "Classification" : "WM", "name" : "79621", "alias" : "RNASEH2B", "SUID" : 4053, "selected" : false }, "position" : { "x" : -92.12460760277804, "y" : 517.5030020013344 }, "selected" : false }, { "data" : { "id" : "4049", "shared_name" : "27436", "Matching_Attribute" : [ "27436" ], "Classification" : "WM", "name" : "27436", "alias" : "EML4", "SUID" : 4049, "selected" : false }, "position" : { "x" : -2.124607602778042, "y" : -390.4969979986656 }, "selected" : false }, { "data" : { "id" : "4045", "shared_name" : "29920", "degree_layout" : 173, "Matching_Attribute" : [ "29920" ], "Classification" : "WM", "name" : "29920", "alias" : "PYCR2", "SUID" : 4045, "selected" : false }, "position" : { "x" : -220.12460760277804, "y" : 113.50300200133438 }, "selected" : false }, { "data" : { "id" : "4041", "shared_name" : "847", "degree_layout" : 78, "Matching_Attribute" : [ "847" ], "Classification" : "WM", "name" : "847", "alias" : "CAT", "SUID" : 4041, "selected" : false }, "position" : { "x" : -214.12460760277804, "y" : -130.49699799866562 }, "selected" : false }, { "data" : { "id" : "4037", "shared_name" : "2073", "Matching_Attribute" : [ "2073" ], "Classification" : "WM", "name" : "2073", "alias" : "ERCC5", "SUID" : 4037, "selected" : false }, "position" : { "x" : 209.87539239722196, "y" : 343.5030020013344 }, "selected" : false }, { "data" : { "id" : "4033", "shared_name" : "613", "degree_layout" : 71, "Matching_Attribute" : [ "613" ], "Classification" : "WM", "name" : "613", "alias" : "BCR", "SUID" : 4033, "selected" : false }, "position" : { "x" : 136.87539239722196, "y" : 13.50300200133438 }, "selected" : false }, { "data" : { "id" : "4029", "shared_name" : "57178", "Matching_Attribute" : [ "57178" ], "Classification" : "WM", "name" : "57178", "alias" : "ZMIZ1", "SUID" : 4029, "selected" : false }, "position" : { "x" : 270.87539239722196, "y" : 400.5030020013344 }, "selected" : false }, { "data" : { "id" : "4025", "shared_name" : "284111", "degree_layout" : 94, "Matching_Attribute" : [ "284111" ], "Classification" : "WM", "name" : "284111", "alias" : "SLC13A5", "SUID" : 4025, "selected" : false }, "position" : { "x" : -94.12460760277804, "y" : -39.49699799866562 }, "selected" : false }, { "data" : { "id" : "4021", "shared_name" : "203068", "Matching_Attribute" : [ "203068" ], "Classification" : "WMexpanded", "name" : "203068", "alias" : "TUBB", "SUID" : 4021, "selected" : false }, "position" : { "x" : 188.87539239722196, "y" : -138.49699799866562 }, "selected" : false }, { "data" : { "id" : "4017", "shared_name" : "4719", "degree_layout" : 289, "Matching_Attribute" : [ "4719" ], "Classification" : "WM", "name" : "4719", "alias" : "NDUFS1", "SUID" : 4017, "selected" : false }, "position" : { "x" : -219.12460760277804, "y" : 273.5030020013344 }, "selected" : false }, { "data" : { "id" : "4013", "shared_name" : "6622", "degree_layout" : 23, "Matching_Attribute" : [ "6622" ], "Classification" : "WM", "name" : "6622", "alias" : "SNCA", "SUID" : 4013, "selected" : false }, "position" : { "x" : 172.87539239722196, "y" : -138.49699799866562 }, "selected" : false }, { "data" : { "id" : "4009", "shared_name" : "10588", "Matching_Attribute" : [ "10588" ], "Classification" : "WM", "name" : "10588", "alias" : "MTHFS", "SUID" : 4009, "selected" : false }, "position" : { "x" : -506.12460760277804, "y" : -6.49699799866562 }, "selected" : false }, { "data" : { "id" : "4005", "shared_name" : "23636", "Matching_Attribute" : [ "23636" ], "Classification" : "WMexpanded", "name" : "23636", "alias" : "NUP62", "SUID" : 4005, "selected" : false }, "position" : { "x" : 351.87539239722196, "y" : 41.50300200133438 }, "selected" : false }, { "data" : { "id" : "4001", "shared_name" : "79709", "Matching_Attribute" : [ "79709" ], "Classification" : "WM", "name" : "79709", "alias" : "COLGALT1", "SUID" : 4001, "selected" : false }, "position" : { "x" : 34.87539239722196, "y" : -194.49699799866562 }, "selected" : false }, { "data" : { "id" : "3997", "shared_name" : "1890", "degree_layout" : 19, "Matching_Attribute" : [ "1890" ], "Classification" : "WM", "name" : "1890", "alias" : "TYMP", "SUID" : 3997, "selected" : false }, "position" : { "x" : -478.12460760277804, "y" : 115.50300200133438 }, "selected" : false }, { "data" : { "id" : "3993", "shared_name" : "3683", "Matching_Attribute" : [ "3683" ], "Classification" : "WM", "name" : "3683", "alias" : "ITGAL", "SUID" : 3993, "selected" : false }, "position" : { "x" : 340.87539239722196, "y" : -91.49699799866562 }, "selected" : false }, { "data" : { "id" : "3989", "shared_name" : "2523", "degree_layout" : 7, "Matching_Attribute" : [ "2523" ], "Classification" : "WM", "name" : "2523", "alias" : "FUT1", "SUID" : 3989, "selected" : false }, "position" : { "x" : -358.12460760277804, "y" : -134.49699799866562 }, "selected" : false }, { "data" : { "id" : "3985", "shared_name" : "274", "degree_layout" : 37, "Matching_Attribute" : [ "274" ], "Classification" : "WMexpanded", "name" : "274", "alias" : "BIN1", "SUID" : 3985, "selected" : false }, "position" : { "x" : 52.87539239722196, "y" : -147.49699799866562 }, "selected" : false }, { "data" : { "id" : "3981", "shared_name" : "1785", "Matching_Attribute" : [ "1785" ], "Classification" : "WM", "name" : "1785", "alias" : "DNM2", "SUID" : 3981, "selected" : false }, "position" : { "x" : -29.124607602778042, "y" : -185.49699799866562 }, "selected" : false }, { "data" : { "id" : "3977", "shared_name" : "51477", "Matching_Attribute" : [ "51477" ], "Classification" : "candidate", "name" : "51477", "alias" : "ISYNA1", "SUID" : 3977, "selected" : false }, "position" : { "x" : -259.12460760277804, "y" : -216.49699799866562 }, "selected" : false }, { "data" : { "id" : "3973", "shared_name" : "55572", "degree_layout" : 251, "Matching_Attribute" : [ "55572" ], "Classification" : "WM", "name" : "55572", "alias" : "FOXRED1", "SUID" : 3973, "selected" : false }, "position" : { "x" : -311.12460760277804, "y" : 229.50300200133438 }, "selected" : false }, { "data" : { "id" : "3969", "shared_name" : "57468", "Matching_Attribute" : [ "57468" ], "Classification" : "WM", "name" : "57468", "alias" : "SLC12A5", "SUID" : 3969, "selected" : false }, "position" : { "x" : -78.12460760277804, "y" : 38.50300200133438 }, "selected" : false }, { "data" : { "id" : "3965", "shared_name" : "9373", "Matching_Attribute" : [ "9373" ], "Classification" : "WM", "name" : "9373", "alias" : "PLAA", "SUID" : 3965, "selected" : false }, "position" : { "x" : 28.875392397221958, "y" : 566.5030020013344 }, "selected" : false }, { "data" : { "id" : "3961", "shared_name" : "3897", "Matching_Attribute" : [ "3897" ], "Classification" : "WMexpanded", "name" : "3897", "alias" : "L1CAM", "SUID" : 3961, "selected" : false }, "position" : { "x" : 212.87539239722196, "y" : -157.49699799866562 }, "selected" : false }, { "data" : { "id" : "3957", "shared_name" : "23114", "Matching_Attribute" : [ "23114" ], "Classification" : "WM", "name" : "23114", "alias" : "NFASC", "SUID" : 3957, "selected" : false }, "position" : { "x" : 242.87539239722196, "y" : -113.49699799866562 }, "selected" : false }, { "data" : { "id" : "3953", "shared_name" : "8731", "Matching_Attribute" : [ "8731" ], "Classification" : "WM", "name" : "8731", "alias" : "RNMT", "SUID" : 3953, "selected" : false }, "position" : { "x" : 166.87539239722196, "y" : 506.5030020013344 }, "selected" : false }, { "data" : { "id" : "3949", "shared_name" : "26090", "Matching_Attribute" : [ "26090" ], "Classification" : "WM", "name" : "26090", "alias" : "ABHD12", "SUID" : 3949, "selected" : false }, "position" : { "x" : -252.12460760277804, "y" : -67.49699799866562 }, "selected" : false }, { "data" : { "id" : "3945", "shared_name" : "846", "degree_layout" : 12, "Matching_Attribute" : [ "846" ], "Classification" : "WMexpanded", "name" : "846", "alias" : "CASR", "SUID" : 3945, "selected" : false }, "position" : { "x" : 250.87539239722196, "y" : -331.4969979986656 }, "selected" : false }, { "data" : { "id" : "3941", "shared_name" : "1435", "Matching_Attribute" : [ "1435" ], "Classification" : "WM", "name" : "1435", "alias" : "CSF1", "SUID" : 3941, "selected" : false }, "position" : { "x" : 204.87539239722196, "y" : -140.49699799866562 }, "selected" : false }, { "data" : { "id" : "3937", "shared_name" : "4001", "degree_layout" : 100, "Matching_Attribute" : [ "4001" ], "Classification" : "WM", "name" : "4001", "alias" : "LMNB1", "SUID" : 3937, "selected" : false }, "position" : { "x" : 236.87539239722196, "y" : 155.50300200133438 }, "selected" : false }, { "data" : { "id" : "3933", "shared_name" : "10524", "Matching_Attribute" : [ "10524" ], "Classification" : "WM", "name" : "10524", "alias" : "KAT5", "SUID" : 3933, "selected" : false }, "position" : { "x" : 164.87539239722196, "y" : 203.50300200133438 }, "selected" : false }, { "data" : { "id" : "3929", "shared_name" : "5860", "degree_layout" : 35, "Matching_Attribute" : [ "5860" ], "Classification" : "WMexpanded", "name" : "5860", "alias" : "QDPR", "SUID" : 3929, "selected" : false }, "position" : { "x" : -255.12460760277804, "y" : -119.49699799866562 }, "selected" : false }, { "data" : { "id" : "3925", "shared_name" : "1051", "Matching_Attribute" : [ "1051" ], "Classification" : "WM", "name" : "1051", "alias" : "CEBPB", "SUID" : 3925, "selected" : false }, "position" : { "x" : 184.87539239722196, "y" : 37.50300200133438 }, "selected" : false }, { "data" : { "id" : "3921", "shared_name" : "10367", "Matching_Attribute" : [ "10367" ], "Classification" : "WMexpanded", "name" : "10367", "alias" : "MICU1", "SUID" : 3921, "selected" : false }, "position" : { "x" : -101.12460760277804, "y" : 266.5030020013344 }, "selected" : false }, { "data" : { "id" : "3917", "shared_name" : "22978", "Matching_Attribute" : [ "22978" ], "Classification" : "WM", "name" : "22978", "alias" : "NT5C2", "SUID" : 3917, "selected" : false }, "position" : { "x" : -146.12460760277804, "y" : 175.50300200133438 }, "selected" : false }, { "data" : { "id" : "3913", "shared_name" : "128989", "Matching_Attribute" : [ "128989" ], "Classification" : "WMexpanded", "name" : "128989", "alias" : "TANGO2", "SUID" : 3913, "selected" : false }, "position" : { "x" : 898.875392397222, "y" : -188.49699799866562 }, "selected" : false }, { "data" : { "id" : "3909", "shared_name" : "10908", "Matching_Attribute" : [ "10908" ], "Classification" : "WMexpanded", "name" : "10908", "alias" : "PNPLA6", "SUID" : 3909, "selected" : false }, "position" : { "x" : -63.12460760277804, "y" : -379.4969979986656 }, "selected" : false }, { "data" : { "id" : "3905", "shared_name" : "5455", "Matching_Attribute" : [ "5455" ], "Classification" : "WM", "name" : "5455", "alias" : "POU3F3", "SUID" : 3905, "selected" : false }, "position" : { "x" : -767.124607602778, "y" : 207.50300200133438 }, "selected" : false }, { "data" : { "id" : "3901", "shared_name" : "19", "degree_layout" : 75, "Matching_Attribute" : [ "19" ], "Classification" : "WM", "name" : "19", "alias" : "ABCA1", "SUID" : 3901, "selected" : false }, "position" : { "x" : -113.12460760277804, "y" : 109.50300200133438 }, "selected" : false }, { "data" : { "id" : "3897", "shared_name" : "10763", "Matching_Attribute" : [ "10763" ], "Classification" : "candidate", "name" : "10763", "alias" : "NES", "SUID" : 3897, "selected" : false }, "position" : { "x" : 252.87539239722196, "y" : -315.4969979986656 }, "selected" : false }, { "data" : { "id" : "3893", "shared_name" : "151056", "degree_layout" : 99, "Matching_Attribute" : [ "151056" ], "Classification" : "WM", "name" : "151056", "alias" : "PLB1", "SUID" : 3893, "selected" : false }, "position" : { "x" : -268.12460760277804, "y" : -67.49699799866562 }, "selected" : false }, { "data" : { "id" : "3889", "shared_name" : "1605", "degree_layout" : 18, "Matching_Attribute" : [ "1605" ], "Classification" : "WM", "name" : "1605", "alias" : "DAG1", "SUID" : 3889, "selected" : false }, "position" : { "x" : -6.124607602778042, "y" : -317.4969979986656 }, "selected" : false }, { "data" : { "id" : "3885", "shared_name" : "54840", "Matching_Attribute" : [ "54840" ], "Classification" : "WM", "name" : "54840", "alias" : "APTX", "SUID" : 3885, "selected" : false }, "position" : { "x" : 308.87539239722196, "y" : 164.50300200133438 }, "selected" : false }, { "data" : { "id" : "3881", "shared_name" : "1654", "degree_layout" : 23, "Matching_Attribute" : [ "1654" ], "Classification" : "WMexpanded", "name" : "1654", "alias" : "DDX3X", "SUID" : 3881, "selected" : false }, "position" : { "x" : -190.12460760277804, "y" : -16.49699799866562 }, "selected" : false }, { "data" : { "id" : "3877", "shared_name" : "1130", "Matching_Attribute" : [ "1130" ], "Classification" : "WMexpanded", "name" : "1130", "alias" : "LYST", "SUID" : 3877, "selected" : false }, "position" : { "x" : 959.875392397222, "y" : -188.49699799866562 }, "selected" : false }, { "data" : { "id" : "3873", "shared_name" : "387521", "Matching_Attribute" : [ "387521" ], "Classification" : "candidate", "name" : "387521", "alias" : "TMEM189", "SUID" : 3873, "selected" : false }, "position" : { "x" : 512.875392397222, "y" : 109.50300200133438 }, "selected" : false }, { "data" : { "id" : "3869", "shared_name" : "8742", "Matching_Attribute" : [ "8742" ], "Classification" : "candidate", "name" : "8742", "alias" : "TNFSF12", "SUID" : 3869, "selected" : false }, "position" : { "x" : 92.87539239722196, "y" : 360.5030020013344 }, "selected" : false }, { "data" : { "id" : "3865", "shared_name" : "7080", "Matching_Attribute" : [ "7080" ], "Classification" : "WMexpanded", "name" : "7080", "alias" : "NKX2-1", "SUID" : 3865, "selected" : false }, "position" : { "x" : -41.12460760277804, "y" : -399.4969979986656 }, "selected" : false }, { "data" : { "id" : "3861", "shared_name" : "23646", "Matching_Attribute" : [ "23646" ], "Classification" : "WM", "name" : "23646", "alias" : "PLD3", "SUID" : 3861, "selected" : false }, "position" : { "x" : -95.12460760277804, "y" : -258.4969979986656 }, "selected" : false }, { "data" : { "id" : "3857", "shared_name" : "65062", "Matching_Attribute" : [ "65062" ], "Classification" : "WMexpanded", "name" : "65062", "alias" : "TMEM237", "SUID" : 3857, "selected" : false }, "position" : { "x" : 29.875392397221958, "y" : -541.4969979986656 }, "selected" : false }, { "data" : { "id" : "3853", "shared_name" : "6786", "Matching_Attribute" : [ "6786" ], "Classification" : "WMexpanded", "name" : "6786", "alias" : "STIM1", "SUID" : 3853, "selected" : false }, "position" : { "x" : 84.87539239722196, "y" : -154.49699799866562 }, "selected" : false }, { "data" : { "id" : "3849", "shared_name" : "103", "degree_layout" : 10, "Matching_Attribute" : [ "103" ], "Classification" : "WM", "name" : "103", "alias" : "ADAR", "SUID" : 3849, "selected" : false }, "position" : { "x" : 525.875392397222, "y" : -28.49699799866562 }, "selected" : false }, { "data" : { "id" : "3845", "shared_name" : "10479", "Matching_Attribute" : [ "10479" ], "Classification" : "WMexpanded", "name" : "10479", "alias" : "SLC9A6", "SUID" : 3845, "selected" : false }, "position" : { "x" : -111.12460760277804, "y" : -248.49699799866562 }, "selected" : false }, { "data" : { "id" : "3841", "shared_name" : "9444", "Matching_Attribute" : [ "9444" ], "Classification" : "WM", "name" : "9444", "alias" : "QKI", "SUID" : 3841, "selected" : false }, "position" : { "x" : 251.87539239722196, "y" : 49.50300200133438 }, "selected" : false }, { "data" : { "id" : "3837", "shared_name" : "6098", "Matching_Attribute" : [ "6098" ], "Classification" : "candidate", "name" : "6098", "alias" : "ROS1", "SUID" : 3837, "selected" : false }, "position" : { "x" : 296.87539239722196, "y" : -203.49699799866562 }, "selected" : false }, { "data" : { "id" : "3833", "shared_name" : "9138", "Matching_Attribute" : [ "9138" ], "Classification" : "WM", "name" : "9138", "alias" : "ARHGEF1", "SUID" : 3833, "selected" : false }, "position" : { "x" : 132.87539239722196, "y" : -146.49699799866562 }, "selected" : false }, { "data" : { "id" : "3829", "shared_name" : "83636", "Matching_Attribute" : [ "83636" ], "Classification" : "WMexpanded", "name" : "83636", "alias" : "C19orf12", "SUID" : 3829, "selected" : false }, "position" : { "x" : 498.87539239722196, "y" : -271.4969979986656 }, "selected" : false }, { "data" : { "id" : "3825", "shared_name" : "5915", "degree_layout" : 82, "Matching_Attribute" : [ "5915" ], "Classification" : "WM", "name" : "5915", "alias" : "RARB", "SUID" : 3825, "selected" : false }, "position" : { "x" : -7.124607602778042, "y" : 82.50300200133438 }, "selected" : false }, { "data" : { "id" : "3821", "shared_name" : "10891", "degree_layout" : 78, "Matching_Attribute" : [ "10891" ], "Classification" : "WM", "name" : "10891", "alias" : "PPARGC1A", "SUID" : 3821, "selected" : false }, "position" : { "x" : -94.12460760277804, "y" : -7.49699799866562 }, "selected" : false }, { "data" : { "id" : "3817", "shared_name" : "3663", "Matching_Attribute" : [ "3663" ], "Classification" : "candidate", "name" : "3663", "alias" : "IRF5", "SUID" : 3817, "selected" : false }, "position" : { "x" : 279.87539239722196, "y" : -193.49699799866562 }, "selected" : false }, { "data" : { "id" : "3813", "shared_name" : "3483", "Matching_Attribute" : [ "3483" ], "Classification" : "WMexpanded", "name" : "3483", "alias" : "IGFALS", "SUID" : 3813, "selected" : false }, "position" : { "x" : -59.12460760277804, "y" : -343.4969979986656 }, "selected" : false }, { "data" : { "id" : "3809", "shared_name" : "81704", "Matching_Attribute" : [ "81704" ], "Classification" : "WM", "name" : "81704", "alias" : "DOCK8", "SUID" : 3809, "selected" : false }, "position" : { "x" : 186.87539239722196, "y" : 202.50300200133438 }, "selected" : false }, { "data" : { "id" : "3805", "shared_name" : "5621", "Matching_Attribute" : [ "5621" ], "Classification" : "WM", "name" : "5621", "alias" : "PRNP", "SUID" : 3805, "selected" : false }, "position" : { "x" : -6.124607602778042, "y" : -122.49699799866562 }, "selected" : false }, { "data" : { "id" : "3801", "shared_name" : "10195", "Matching_Attribute" : [ "10195" ], "Classification" : "WMexpanded", "name" : "10195", "alias" : "ALG3", "SUID" : 3801, "selected" : false }, "position" : { "x" : -182.12460760277804, "y" : -371.4969979986656 }, "selected" : false }, { "data" : { "id" : "3797", "shared_name" : "149420", "Matching_Attribute" : [ "149420" ], "Classification" : "WM", "name" : "149420", "alias" : "PDIK1L", "SUID" : 3797, "selected" : false }, "position" : { "x" : 444.87539239722196, "y" : -50.49699799866562 }, "selected" : false }, { "data" : { "id" : "3793", "shared_name" : "28965", "degree_layout" : 74, "Matching_Attribute" : [ "28965" ], "Classification" : "WM", "name" : "28965", "alias" : "SLC27A6", "SUID" : 3793, "selected" : false }, "position" : { "x" : -156.12460760277804, "y" : -63.49699799866562 }, "selected" : false }, { "data" : { "id" : "3789", "shared_name" : "23345", "Matching_Attribute" : [ "23345" ], "Classification" : "WMexpanded", "name" : "23345", "alias" : "SYNE1", "SUID" : 3789, "selected" : false }, "position" : { "x" : 390.87539239722196, "y" : 236.50300200133438 }, "selected" : false }, { "data" : { "id" : "3785", "shared_name" : "1781", "Matching_Attribute" : [ "1781" ], "Classification" : "WMexpanded", "name" : "1781", "alias" : "DYNC1I2", "SUID" : 3785, "selected" : false }, "position" : { "x" : 292.87539239722196, "y" : -36.49699799866562 }, "selected" : false }, { "data" : { "id" : "3781", "shared_name" : "9152", "degree_layout" : 102, "Matching_Attribute" : [ "9152" ], "Classification" : "WMexpanded", "name" : "9152", "alias" : "SLC6A5", "SUID" : 3781, "selected" : false }, "position" : { "x" : -44.12460760277804, "y" : -81.49699799866562 }, "selected" : false }, { "data" : { "id" : "3777", "shared_name" : "6571", "Matching_Attribute" : [ "6571" ], "Classification" : "WMexpanded", "name" : "6571", "alias" : "SLC18A2", "SUID" : 3777, "selected" : false }, "position" : { "x" : -100.12460760277804, "y" : -55.49699799866562 }, "selected" : false }, { "data" : { "id" : "3773", "shared_name" : "540", "degree_layout" : 40, "Matching_Attribute" : [ "540" ], "Classification" : "WM", "name" : "540", "alias" : "ATP7B", "SUID" : 3773, "selected" : false }, "position" : { "x" : -190.12460760277804, "y" : 80.50300200133438 }, "selected" : false }, { "data" : { "id" : "3769", "shared_name" : "8085", "Matching_Attribute" : [ "8085" ], "Classification" : "WMexpanded", "name" : "8085", "alias" : "KMT2D", "SUID" : 3769, "selected" : false }, "position" : { "x" : 24.875392397221958, "y" : 90.50300200133438 }, "selected" : false }, { "data" : { "id" : "3765", "shared_name" : "774", "degree_layout" : 52, "Matching_Attribute" : [ "774" ], "Classification" : "WMexpanded", "name" : "774", "alias" : "CACNA1B", "SUID" : 3765, "selected" : false }, "position" : { "x" : 194.87539239722196, "y" : -106.49699799866562 }, "selected" : false }, { "data" : { "id" : "3761", "shared_name" : "25915", "degree_layout" : 214, "Matching_Attribute" : [ "25915" ], "Classification" : "WM", "name" : "25915", "alias" : "NDUFAF3", "SUID" : 3761, "selected" : false }, "position" : { "x" : -380.12460760277804, "y" : 141.50300200133438 }, "selected" : false }, { "data" : { "id" : "3757", "shared_name" : "215", "degree_layout" : 147, "Matching_Attribute" : [ "215" ], "Classification" : "WM", "name" : "215", "alias" : "ABCD1", "SUID" : 3757, "selected" : false }, "position" : { "x" : -268.12460760277804, "y" : -51.49699799866562 }, "selected" : false }, { "data" : { "id" : "3753", "shared_name" : "8888", "Matching_Attribute" : [ "8888" ], "Classification" : "WM", "name" : "8888", "alias" : "MCM3AP", "SUID" : 3753, "selected" : false }, "position" : { "x" : 375.87539239722196, "y" : 130.50300200133438 }, "selected" : false }, { "data" : { "id" : "3749", "shared_name" : "8518", "Matching_Attribute" : [ "8518" ], "Classification" : "WM", "name" : "8518", "alias" : "ELP1", "SUID" : 3749, "selected" : false }, "position" : { "x" : 293.87539239722196, "y" : -277.4969979986656 }, "selected" : false }, { "data" : { "id" : "3745", "shared_name" : "4803", "degree_layout" : 41, "Matching_Attribute" : [ "4803" ], "Classification" : "WM", "name" : "4803", "alias" : "NGF", "SUID" : 3745, "selected" : false }, "position" : { "x" : 241.87539239722196, "y" : -13.49699799866562 }, "selected" : false }, { "data" : { "id" : "3741", "shared_name" : "51633", "Matching_Attribute" : [ "51633" ], "Classification" : "WMexpanded", "name" : "51633", "alias" : "OTUD6B", "SUID" : 3741, "selected" : false }, "position" : { "x" : -200.12460760277804, "y" : -427.4969979986656 }, "selected" : false }, { "data" : { "id" : "3737", "shared_name" : "3064", "Matching_Attribute" : [ "3064" ], "Classification" : "WMexpanded", "name" : "3064", "alias" : "HTT", "SUID" : 3737, "selected" : false }, "position" : { "x" : 36.87539239722196, "y" : -178.49699799866562 }, "selected" : false }, { "data" : { "id" : "3733", "shared_name" : "2760", "degree_layout" : 30, "Matching_Attribute" : [ "2760" ], "Classification" : "WMexpanded", "name" : "2760", "alias" : "GM2A", "SUID" : 3733, "selected" : false }, "position" : { "x" : -300.12460760277804, "y" : -332.4969979986656 }, "selected" : false }, { "data" : { "id" : "3729", "shared_name" : "7319", "Matching_Attribute" : [ "7319" ], "Classification" : "WM", "name" : "7319", "alias" : "UBE2A", "SUID" : 3729, "selected" : false }, "position" : { "x" : 70.87539239722196, "y" : 164.50300200133438 }, "selected" : false }, { "data" : { "id" : "3725", "shared_name" : "10159", "Matching_Attribute" : [ "10159" ], "Classification" : "WMexpanded", "name" : "10159", "alias" : "ATP6AP2", "SUID" : 3725, "selected" : false }, "position" : { "x" : -10.124607602778042, "y" : -369.4969979986656 }, "selected" : false }, { "data" : { "id" : "3721", "shared_name" : "2934", "degree_layout" : 59, "Matching_Attribute" : [ "2934" ], "Classification" : "WMexpanded", "name" : "2934", "alias" : "GSN", "SUID" : 3721, "selected" : false }, "position" : { "x" : 34.87539239722196, "y" : 133.50300200133438 }, "selected" : false }, { "data" : { "id" : "3717", "shared_name" : "3593", "Matching_Attribute" : [ "3593" ], "Classification" : "WMexpanded", "name" : "3593", "alias" : "IL12B", "SUID" : 3717, "selected" : false }, "position" : { "x" : 390.87539239722196, "y" : -112.49699799866562 }, "selected" : false }, { "data" : { "id" : "3713", "shared_name" : "203228", "Matching_Attribute" : [ "203228" ], "Classification" : "WM", "name" : "203228", "alias" : "C9orf72", "SUID" : 3713, "selected" : false }, "position" : { "x" : 48.87539239722196, "y" : 372.5030020013344 }, "selected" : false }, { "data" : { "id" : "3709", "shared_name" : "9757", "Matching_Attribute" : [ "9757" ], "Classification" : "WMexpanded", "name" : "9757", "alias" : "KMT2B", "SUID" : 3709, "selected" : false }, "position" : { "x" : 127.87539239722196, "y" : 77.50300200133438 }, "selected" : false }, { "data" : { "id" : "3705", "shared_name" : "87178", "degree_layout" : 210, "Matching_Attribute" : [ "87178" ], "Classification" : "WM", "name" : "87178", "alias" : "PNPT1", "SUID" : 3705, "selected" : false }, "position" : { "x" : -318.12460760277804, "y" : -9.49699799866562 }, "selected" : false }, { "data" : { "id" : "3701", "shared_name" : "4664", "Matching_Attribute" : [ "4664" ], "Classification" : "WM", "name" : "4664", "alias" : "NAB1", "SUID" : 3701, "selected" : false }, "position" : { "x" : 420.87539239722196, "y" : 266.5030020013344 }, "selected" : false }, { "data" : { "id" : "3697", "shared_name" : "7099", "Matching_Attribute" : [ "7099" ], "Classification" : "candidate", "name" : "7099", "alias" : "TLR4", "SUID" : 3697, "selected" : false }, "position" : { "x" : 334.87539239722196, "y" : -163.49699799866562 }, "selected" : false }, { "data" : { "id" : "3693", "shared_name" : "8943", "Matching_Attribute" : [ "8943" ], "Classification" : "WM", "name" : "8943", "alias" : "AP3D1", "SUID" : 3693, "selected" : false }, "position" : { "x" : -274.12460760277804, "y" : -373.4969979986656 }, "selected" : false }, { "data" : { "id" : "3689", "shared_name" : "7054", "Matching_Attribute" : [ "7054" ], "Classification" : "WMexpanded", "name" : "7054", "alias" : "TH", "SUID" : 3689, "selected" : false }, "position" : { "x" : -1.1246076027780418, "y" : 153.50300200133438 }, "selected" : false }, { "data" : { "id" : "3685", "shared_name" : "3265", "degree_layout" : 164, "Matching_Attribute" : [ "3265" ], "Classification" : "WMexpanded", "name" : "3265", "alias" : "HRAS", "SUID" : 3685, "selected" : false }, "position" : { "x" : 127.87539239722196, "y" : -82.49699799866562 }, "selected" : false }, { "data" : { "id" : "3681", "shared_name" : "1892", "degree_layout" : 143, "Matching_Attribute" : [ "1892" ], "Classification" : "WM", "name" : "1892", "alias" : "ECHS1", "SUID" : 3681, "selected" : false }, "position" : { "x" : -190.12460760277804, "y" : 18.50300200133438 }, "selected" : false }, { "data" : { "id" : "3677", "shared_name" : "673", "degree_layout" : 29, "Matching_Attribute" : [ "673" ], "Classification" : "WMexpanded", "name" : "673", "alias" : "BRAF", "SUID" : 3677, "selected" : false }, "position" : { "x" : 225.87539239722196, "y" : -31.49699799866562 }, "selected" : false }, { "data" : { "id" : "3673", "shared_name" : "79648", "Matching_Attribute" : [ "79648" ], "Classification" : "WMexpanded", "name" : "79648", "alias" : "MCPH1", "SUID" : 3673, "selected" : false }, "position" : { "x" : 771.875392397222, "y" : 427.5030020013344 }, "selected" : false }, { "data" : { "id" : "3669", "shared_name" : "55975", "Matching_Attribute" : [ "55975" ], "Classification" : "WMexpanded", "name" : "55975", "alias" : "KLHL7", "SUID" : 3669, "selected" : false }, "position" : { "x" : 471.87539239722196, "y" : 127.50300200133438 }, "selected" : false }, { "data" : { "id" : "3665", "shared_name" : "29081", "Matching_Attribute" : [ "29081" ], "Classification" : "WM", "name" : "29081", "alias" : "METTL5", "SUID" : 3665, "selected" : false }, "position" : { "x" : 155.87539239722196, "y" : -501.4969979986656 }, "selected" : false }, { "data" : { "id" : "3661", "shared_name" : "1134", "degree_layout" : 92, "Matching_Attribute" : [ "1134" ], "Classification" : "WMexpanded", "name" : "1134", "alias" : "CHRNA1", "SUID" : 3661, "selected" : false }, "position" : { "x" : 31.875392397221958, "y" : -82.49699799866562 }, "selected" : false }, { "data" : { "id" : "3657", "shared_name" : "2895", "Matching_Attribute" : [ "2895" ], "Classification" : "WMexpanded", "name" : "2895", "alias" : "GRID2", "SUID" : 3657, "selected" : false }, "position" : { "x" : 111.87539239722196, "y" : -464.4969979986656 }, "selected" : false }, { "data" : { "id" : "3653", "shared_name" : "8898", "Matching_Attribute" : [ "8898" ], "Classification" : "WM", "name" : "8898", "alias" : "MTMR2", "SUID" : 3653, "selected" : false }, "position" : { "x" : -79.12460760277804, "y" : -267.4969979986656 }, "selected" : false }, { "data" : { "id" : "3649", "shared_name" : "51520", "degree_layout" : 87, "Matching_Attribute" : [ "51520" ], "Classification" : "WMexpanded", "name" : "51520", "alias" : "LARS1", "SUID" : 3649, "selected" : false }, "position" : { "x" : -912.0557778781059, "y" : -64.25836998766268 }, "selected" : false }, { "data" : { "id" : "3645", "shared_name" : "4758", "Matching_Attribute" : [ "4758" ], "Classification" : "WMexpanded", "name" : "4758", "alias" : "NEU1", "SUID" : 3645, "selected" : false }, "position" : { "x" : -235.12460760277804, "y" : -161.49699799866562 }, "selected" : false }, { "data" : { "id" : "3641", "shared_name" : "4141", "degree_layout" : 136, "Matching_Attribute" : [ "4141" ], "Classification" : "WMexpanded", "name" : "4141", "alias" : "MARS1", "SUID" : 3641, "selected" : false }, "position" : { "x" : -364.12460760277804, "y" : 141.50300200133438 }, "selected" : false }, { "data" : { "id" : "3637", "shared_name" : "6712", "Matching_Attribute" : [ "6712" ], "Classification" : "WMexpanded", "name" : "6712", "alias" : "SPTBN2", "SUID" : 3637, "selected" : false }, "position" : { "x" : 181.87539239722196, "y" : 117.50300200133438 }, "selected" : false }, { "data" : { "id" : "3633", "shared_name" : "51067", "degree_layout" : 261, "Matching_Attribute" : [ "51067" ], "Classification" : "WMexpanded", "name" : "51067", "alias" : "YARS2", "SUID" : 3633, "selected" : false }, "position" : { "x" : -255.12460760277804, "y" : 229.50300200133438 }, "selected" : false }, { "data" : { "id" : "3629", "shared_name" : "2066", "Matching_Attribute" : [ "2066" ], "Classification" : "WMexpanded", "name" : "2066", "alias" : "ERBB4", "SUID" : 3629, "selected" : false }, "position" : { "x" : 174.87539239722196, "y" : -106.49699799866562 }, "selected" : false }, { "data" : { "id" : "3625", "shared_name" : "121512", "Matching_Attribute" : [ "121512" ], "Classification" : "WM", "name" : "121512", "alias" : "FGD4", "SUID" : 3625, "selected" : false }, "position" : { "x" : -47.12460760277804, "y" : -368.4969979986656 }, "selected" : false }, { "data" : { "id" : "3621", "shared_name" : "6834", "degree_layout" : 26, "Matching_Attribute" : [ "6834" ], "Classification" : "WM", "name" : "6834", "alias" : "SURF1", "SUID" : 3621, "selected" : false }, "position" : { "x" : -523.124607602778, "y" : 119.50300200133438 }, "selected" : false }, { "data" : { "id" : "3617", "shared_name" : "4704", "degree_layout" : 230, "Matching_Attribute" : [ "4704" ], "Classification" : "WM", "name" : "4704", "alias" : "NDUFA9", "SUID" : 3617, "selected" : false }, "position" : { "x" : -176.12460760277804, "y" : 256.5030020013344 }, "selected" : false }, { "data" : { "id" : "3613", "shared_name" : "50640", "Matching_Attribute" : [ "50640" ], "Classification" : "WMexpanded", "name" : "50640", "alias" : "PNPLA8", "SUID" : 3613, "selected" : false }, "position" : { "x" : -342.12460760277804, "y" : -138.49699799866562 }, "selected" : false }, { "data" : { "id" : "3609", "shared_name" : "10297", "Matching_Attribute" : [ "10297" ], "Classification" : "WMexpanded", "name" : "10297", "alias" : "APC2", "SUID" : 3609, "selected" : false }, "position" : { "x" : 560.875392397222, "y" : 82.50300200133438 }, "selected" : false }, { "data" : { "id" : "3605", "shared_name" : "7841", "degree_layout" : 15, "Matching_Attribute" : [ "7841" ], "Classification" : "WMexpanded", "name" : "7841", "alias" : "MOGS", "SUID" : 3605, "selected" : false }, "position" : { "x" : -215.12460760277804, "y" : -306.4969979986656 }, "selected" : false }, { "data" : { "id" : "3601", "shared_name" : "6531", "degree_layout" : 91, "Matching_Attribute" : [ "6531" ], "Classification" : "WM", "name" : "6531", "alias" : "SLC6A3", "SUID" : 3601, "selected" : false }, "position" : { "x" : 18.875392397221958, "y" : -194.49699799866562 }, "selected" : false }, { "data" : { "id" : "3597", "shared_name" : "10749", "Matching_Attribute" : [ "10749" ], "Classification" : "WM", "name" : "10749", "alias" : "KIF1C", "SUID" : 3597, "selected" : false }, "position" : { "x" : 180.87539239722196, "y" : 218.50300200133438 }, "selected" : false }, { "data" : { "id" : "3593", "shared_name" : "5530", "degree_layout" : 132, "Matching_Attribute" : [ "5530" ], "Classification" : "WM", "name" : "5530", "alias" : "PPP3CA", "SUID" : 3593, "selected" : false }, "position" : { "x" : 104.87539239722196, "y" : 53.50300200133438 }, "selected" : false }, { "data" : { "id" : "3589", "shared_name" : "6567", "degree_layout" : 4, "Matching_Attribute" : [ "6567" ], "Classification" : "WM", "name" : "6567", "alias" : "SLC16A2", "SUID" : 3589, "selected" : false }, "position" : { "x" : -17.124607602778042, "y" : 152.50300200133438 }, "selected" : false }, { "data" : { "id" : "3585", "shared_name" : "3908", "Matching_Attribute" : [ "3908" ], "Classification" : "WM", "name" : "3908", "alias" : "LAMA2", "SUID" : 3585, "selected" : false }, "position" : { "x" : 60.87539239722196, "y" : -269.4969979986656 }, "selected" : false }, { "data" : { "id" : "3581", "shared_name" : "2185", "Matching_Attribute" : [ "2185" ], "Classification" : "candidate", "name" : "2185", "alias" : "PTK2B", "SUID" : 3581, "selected" : false }, "position" : { "x" : 73.87539239722196, "y" : -66.49699799866562 }, "selected" : false }, { "data" : { "id" : "3577", "shared_name" : "5605", "Matching_Attribute" : [ "5605" ], "Classification" : "WMexpanded", "name" : "5605", "alias" : "MAP2K2", "SUID" : 3577, "selected" : false }, "position" : { "x" : -54.12460760277804, "y" : 18.50300200133438 }, "selected" : false }, { "data" : { "id" : "3573", "shared_name" : "3845", "Matching_Attribute" : [ "3845" ], "Classification" : "WMexpanded", "name" : "3845", "alias" : "KRAS", "SUID" : 3573, "selected" : false }, "position" : { "x" : 230.87539239722196, "y" : -68.49699799866562 }, "selected" : false }, { "data" : { "id" : "3569", "shared_name" : "4893", "degree_layout" : 55, "Matching_Attribute" : [ "4893" ], "Classification" : "WMexpanded", "name" : "4893", "alias" : "NRAS", "SUID" : 3569, "selected" : false }, "position" : { "x" : 278.87539239722196, "y" : -53.49699799866562 }, "selected" : false }, { "data" : { "id" : "3565", "shared_name" : "4774", "Matching_Attribute" : [ "4774" ], "Classification" : "WMexpanded", "name" : "4774", "alias" : "NFIA", "SUID" : 3565, "selected" : false }, "position" : { "x" : 6.875392397221958, "y" : 525.5030020013344 }, "selected" : false }, { "data" : { "id" : "3561", "shared_name" : "27445", "Matching_Attribute" : [ "27445" ], "Classification" : "WMexpanded", "name" : "27445", "alias" : "PCLO", "SUID" : 3561, "selected" : false }, "position" : { "x" : 284.87539239722196, "y" : 125.50300200133438 }, "selected" : false }, { "data" : { "id" : "3557", "shared_name" : "2911", "Matching_Attribute" : [ "2911" ], "Classification" : "WMexpanded", "name" : "2911", "alias" : "GRM1", "SUID" : 3557, "selected" : false }, "position" : { "x" : 171.87539239722196, "y" : -211.49699799866562 }, "selected" : false }, { "data" : { "id" : "3553", "shared_name" : "3592", "Matching_Attribute" : [ "3592" ], "Classification" : "candidate", "name" : "3592", "alias" : "IL12A", "SUID" : 3553, "selected" : false }, "position" : { "x" : 225.87539239722196, "y" : -243.49699799866562 }, "selected" : false }, { "data" : { "id" : "3549", "shared_name" : "760", "degree_layout" : 41, "Matching_Attribute" : [ "760" ], "Classification" : "WMexpanded", "name" : "760", "alias" : "CA2", "SUID" : 3549, "selected" : false }, "position" : { "x" : -223.12460760277804, "y" : 225.50300200133438 }, "selected" : false }, { "data" : { "id" : "3545", "shared_name" : "708", "degree_layout" : 178, "Matching_Attribute" : [ "708" ], "Classification" : "WMexpanded", "name" : "708", "alias" : "C1QBP", "SUID" : 3545, "selected" : false }, "position" : { "x" : -284.12460760277804, "y" : 164.50300200133438 }, "selected" : false }, { "data" : { "id" : "3541", "shared_name" : "4191", "degree_layout" : 81, "Matching_Attribute" : [ "4191" ], "Classification" : "WM", "name" : "4191", "alias" : "MDH2", "SUID" : 3541, "selected" : false }, "position" : { "x" : -158.12460760277804, "y" : 44.50300200133438 }, "selected" : false }, { "data" : { "id" : "3537", "shared_name" : "501", "degree_layout" : 187, "Matching_Attribute" : [ "501" ], "Classification" : "WMexpanded", "name" : "501", "alias" : "ALDH7A1", "SUID" : 3537, "selected" : false }, "position" : { "x" : -241.12460760277804, "y" : 150.50300200133438 }, "selected" : false }, { "data" : { "id" : "3533", "shared_name" : "9853", "Matching_Attribute" : [ "9853" ], "Classification" : "WMexpanded", "name" : "9853", "alias" : "RUSC2", "SUID" : 3533, "selected" : false }, "position" : { "x" : 898.875392397222, "y" : -127.49699799866562 }, "selected" : false }, { "data" : { "id" : "3529", "shared_name" : "7965", "Matching_Attribute" : [ "7965" ], "Classification" : "WM", "name" : "7965", "alias" : "AIMP2", "SUID" : 3529, "selected" : false }, "position" : { "x" : -134.12460760277804, "y" : 16.50300200133438 }, "selected" : false }, { "data" : { "id" : "3525", "shared_name" : "23410", "Matching_Attribute" : [ "23410" ], "Classification" : "candidate", "name" : "23410", "alias" : "SIRT3", "SUID" : 3525, "selected" : false }, "position" : { "x" : -286.12460760277804, "y" : -33.49699799866562 }, "selected" : false }, { "data" : { "id" : "3521", "shared_name" : "85440", "Matching_Attribute" : [ "85440" ], "Classification" : "WM", "name" : "85440", "alias" : "DOCK7", "SUID" : 3521, "selected" : false }, "position" : { "x" : 315.87539239722196, "y" : 40.50300200133438 }, "selected" : false }, { "data" : { "id" : "3517", "shared_name" : "2033", "degree_layout" : 226, "Matching_Attribute" : [ "2033" ], "Classification" : "WMexpanded", "name" : "2033", "alias" : "EP300", "SUID" : 3517, "selected" : false }, "position" : { "x" : 140.87539239722196, "y" : 114.50300200133438 }, "selected" : false }, { "data" : { "id" : "3513", "shared_name" : "5075", "Matching_Attribute" : [ "5075" ], "Classification" : "WM", "name" : "5075", "alias" : "PAX1", "SUID" : 3513, "selected" : false }, "position" : { "x" : 505.87539239722196, "y" : 143.50300200133438 }, "selected" : false }, { "data" : { "id" : "3509", "shared_name" : "4061", "Matching_Attribute" : [ "4061" ], "Classification" : "candidate", "name" : "4061", "alias" : "LY6E", "SUID" : 3509, "selected" : false }, "position" : { "x" : 395.87539239722196, "y" : -292.4969979986656 }, "selected" : false }, { "data" : { "id" : "3505", "shared_name" : "160418", "Matching_Attribute" : [ "160418" ], "Classification" : "WM", "name" : "160418", "alias" : "TMTC3", "SUID" : 3505, "selected" : false }, "position" : { "x" : 332.87539239722196, "y" : -427.4969979986656 }, "selected" : false }, { "data" : { "id" : "3501", "shared_name" : "5831", "degree_layout" : 175, "Matching_Attribute" : [ "5831" ], "Classification" : "WMexpanded", "name" : "5831", "alias" : "PYCR1", "SUID" : 3501, "selected" : false }, "position" : { "x" : -202.12460760277804, "y" : 181.50300200133438 }, "selected" : false }, { "data" : { "id" : "3497", "shared_name" : "9699", "Matching_Attribute" : [ "9699" ], "Classification" : "WMexpanded", "name" : "9699", "alias" : "RIMS2", "SUID" : 3497, "selected" : false }, "position" : { "x" : 82.87539239722196, "y" : 392.5030020013344 }, "selected" : false }, { "data" : { "id" : "3493", "shared_name" : "348", "degree_layout" : 26, "Matching_Attribute" : [ "348" ], "Classification" : "WM", "name" : "348", "alias" : "APOE", "SUID" : 3493, "selected" : false }, "position" : { "x" : -183.12460760277804, "y" : -229.49699799866562 }, "selected" : false }, { "data" : { "id" : "3489", "shared_name" : "54344", "Matching_Attribute" : [ "54344" ], "Classification" : "WM", "name" : "54344", "alias" : "DPM3", "SUID" : 3489, "selected" : false }, "position" : { "x" : -307.12460760277804, "y" : -378.4969979986656 }, "selected" : false }, { "data" : { "id" : "3485", "shared_name" : "54704", "Matching_Attribute" : [ "54704" ], "Classification" : "WMexpanded", "name" : "54704", "alias" : "PDP1", "SUID" : 3485, "selected" : false }, "position" : { "x" : -62.12460760277804, "y" : 258.5030020013344 }, "selected" : false }, { "data" : { "id" : "3481", "shared_name" : "6513", "Matching_Attribute" : [ "6513" ], "Classification" : "WM", "name" : "6513", "alias" : "SLC2A1", "SUID" : 3481, "selected" : false }, "position" : { "x" : -126.12460760277804, "y" : 56.50300200133438 }, "selected" : false }, { "data" : { "id" : "3477", "shared_name" : "5744", "degree_layout" : 8, "Matching_Attribute" : [ "5744" ], "Classification" : "WM", "name" : "5744", "alias" : "PTHLH", "SUID" : 3477, "selected" : false }, "position" : { "x" : 207.28529497391924, "y" : -355.4969979986656 }, "selected" : false }, { "data" : { "id" : "3473", "shared_name" : "6528", "Matching_Attribute" : [ "6528" ], "Classification" : "WMexpanded", "name" : "6528", "alias" : "SLC5A5", "SUID" : 3473, "selected" : false }, "position" : { "x" : -86.12460760277804, "y" : 14.50300200133438 }, "selected" : false }, { "data" : { "id" : "3469", "shared_name" : "2896", "degree_layout" : 3, "Matching_Attribute" : [ "2896" ], "Classification" : "WM", "name" : "2896", "alias" : "GRN", "SUID" : 3469, "selected" : false }, "position" : { "x" : 89.87539239722196, "y" : 229.50300200133438 }, "selected" : false }, { "data" : { "id" : "3465", "shared_name" : "5296", "Matching_Attribute" : [ "5296" ], "Classification" : "WMexpanded", "name" : "5296", "alias" : "PIK3R2", "SUID" : 3465, "selected" : false }, "position" : { "x" : 105.87539239722196, "y" : -24.49699799866562 }, "selected" : false }, { "data" : { "id" : "3461", "shared_name" : "5538", "degree_layout" : 81, "Matching_Attribute" : [ "5538" ], "Classification" : "WM", "name" : "5538", "alias" : "PPT1", "SUID" : 3461, "selected" : false }, "position" : { "x" : -289.12460760277804, "y" : -87.49699799866562 }, "selected" : false }, { "data" : { "id" : "3457", "shared_name" : "22914", "Matching_Attribute" : [ "22914" ], "Classification" : "candidate", "name" : "22914", "alias" : "KLRK1", "SUID" : 3457, "selected" : false }, "position" : { "x" : 89.87539239722196, "y" : -114.49699799866562 }, "selected" : false }, { "data" : { "id" : "3453", "shared_name" : "3394", "Matching_Attribute" : [ "3394" ], "Classification" : "WM", "name" : "3394", "alias" : "IRF8", "SUID" : 3453, "selected" : false }, "position" : { "x" : 232.87539239722196, "y" : -259.4969979986656 }, "selected" : false }, { "data" : { "id" : "3449", "shared_name" : "9568", "Matching_Attribute" : [ "9568" ], "Classification" : "WMexpanded", "name" : "9568", "alias" : "GABBR2", "SUID" : 3449, "selected" : false }, "position" : { "x" : 265.87539239722196, "y" : 107.50300200133438 }, "selected" : false }, { "data" : { "id" : "3445", "shared_name" : "5091", "degree_layout" : 103, "Matching_Attribute" : [ "5091" ], "Classification" : "WM", "name" : "5091", "alias" : "PC", "SUID" : 3445, "selected" : false }, "position" : { "x" : -390.12460760277804, "y" : 55.50300200133438 }, "selected" : false }, { "data" : { "id" : "3441", "shared_name" : "4210", "Matching_Attribute" : [ "4210" ], "Classification" : "WMexpanded", "name" : "4210", "alias" : "MEFV", "SUID" : 3441, "selected" : false }, "position" : { "x" : -223.12460760277804, "y" : 209.50300200133438 }, "selected" : false }, { "data" : { "id" : "3437", "shared_name" : "4312", "Matching_Attribute" : [ "4312" ], "Classification" : "WMexpanded", "name" : "4312", "alias" : "MMP1", "SUID" : 3437, "selected" : false }, "position" : { "x" : 41.87539239722196, "y" : -384.4969979986656 }, "selected" : false }, { "data" : { "id" : "3433", "shared_name" : "26503", "degree_layout" : 41, "Matching_Attribute" : [ "26503" ], "Classification" : "WM", "name" : "26503", "alias" : "SLC17A5", "SUID" : 3433, "selected" : false }, "position" : { "x" : -293.12460760277804, "y" : -213.49699799866562 }, "selected" : false }, { "data" : { "id" : "3429", "shared_name" : "3674", "degree_layout" : 74, "Matching_Attribute" : [ "3674" ], "Classification" : "WM", "name" : "3674", "alias" : "ITGA2B", "SUID" : 3429, "selected" : false }, "position" : { "x" : 22.875392397221958, "y" : -242.49699799866562 }, "selected" : false }, { "data" : { "id" : "3425", "shared_name" : "8803", "degree_layout" : 165, "Matching_Attribute" : [ "8803" ], "Classification" : "WM", "name" : "8803", "alias" : "SUCLA2", "SUID" : 3425, "selected" : false }, "position" : { "x" : -254.12460760277804, "y" : -14.49699799866562 }, "selected" : false }, { "data" : { "id" : "3421", "shared_name" : "4967", "degree_layout" : 183, "Matching_Attribute" : [ "4967" ], "Classification" : "WMexpanded", "name" : "4967", "alias" : "OGDH", "SUID" : 3421, "selected" : false }, "position" : { "x" : -113.12460760277804, "y" : 155.50300200133438 }, "selected" : false }, { "data" : { "id" : "3417", "shared_name" : "5371", "Matching_Attribute" : [ "5371" ], "Classification" : "WM", "name" : "5371", "alias" : "PML", "SUID" : 3417, "selected" : false }, "position" : { "x" : 97.87539239722196, "y" : -8.49699799866562 }, "selected" : false }, { "data" : { "id" : "3413", "shared_name" : "1337", "Matching_Attribute" : [ "1337" ], "Classification" : "WM", "name" : "1337", "alias" : "COX6A1", "SUID" : 3413, "selected" : false }, "position" : { "x" : -531.124607602778, "y" : 157.50300200133438 }, "selected" : false }, { "data" : { "id" : "3409", "shared_name" : "7043", "Matching_Attribute" : [ "7043" ], "Classification" : "WMexpanded", "name" : "7043", "alias" : "TGFB3", "SUID" : 3409, "selected" : false }, "position" : { "x" : 248.87539239722196, "y" : 31.50300200133438 }, "selected" : false }, { "data" : { "id" : "3405", "shared_name" : "4535", "degree_layout" : 53, "Matching_Attribute" : [ "4535" ], "Classification" : "WMexpanded", "name" : "4535", "alias" : "ND1", "SUID" : 3405, "selected" : false }, "position" : { "x" : -351.12460760277804, "y" : 331.5030020013344 }, "selected" : false }, { "data" : { "id" : "3401", "shared_name" : "3659", "Matching_Attribute" : [ "3659" ], "Classification" : "WMexpanded", "name" : "3659", "alias" : "IRF1", "SUID" : 3401, "selected" : false }, "position" : { "x" : 258.87539239722196, "y" : -117.49699799866562 }, "selected" : false }, { "data" : { "id" : "3397", "shared_name" : "4669", "Matching_Attribute" : [ "4669" ], "Classification" : "WMexpanded", "name" : "4669", "alias" : "NAGLU", "SUID" : 3397, "selected" : false }, "position" : { "x" : -474.12460760277804, "y" : -358.4969979986656 }, "selected" : false }, { "data" : { "id" : "3393", "shared_name" : "9402", "Matching_Attribute" : [ "9402" ], "Classification" : "candidate", "name" : "9402", "alias" : "GRAP2", "SUID" : 3393, "selected" : false }, "position" : { "x" : 161.87539239722196, "y" : -19.49699799866562 }, "selected" : false }, { "data" : { "id" : "3389", "shared_name" : "2562", "Matching_Attribute" : [ "2562" ], "Classification" : "WM", "name" : "2562", "alias" : "GABRB3", "SUID" : 3389, "selected" : false }, "position" : { "x" : -44.12460760277804, "y" : -273.4969979986656 }, "selected" : false }, { "data" : { "id" : "3385", "shared_name" : "10716", "Matching_Attribute" : [ "10716" ], "Classification" : "WMexpanded", "name" : "10716", "alias" : "TBR1", "SUID" : 3385, "selected" : false }, "position" : { "x" : 407.87539239722196, "y" : -119.49699799866562 }, "selected" : false }, { "data" : { "id" : "3381", "shared_name" : "2214", "Matching_Attribute" : [ "2214" ], "Classification" : "WMexpanded", "name" : "2214", "alias" : "FCGR3A", "SUID" : 3381, "selected" : false }, "position" : { "x" : 100.87539239722196, "y" : -144.49699799866562 }, "selected" : false }, { "data" : { "id" : "3377", "shared_name" : "4761", "Matching_Attribute" : [ "4761" ], "Classification" : "WM", "name" : "4761", "alias" : "NEUROD2", "SUID" : 3377, "selected" : false }, "position" : { "x" : 959.875392397222, "y" : -127.49699799866562 }, "selected" : false }, { "data" : { "id" : "3373", "shared_name" : "2530", "Matching_Attribute" : [ "2530" ], "Classification" : "WMexpanded", "name" : "2530", "alias" : "FUT8", "SUID" : 3373, "selected" : false }, "position" : { "x" : -261.12460760277804, "y" : -408.4969979986656 }, "selected" : false }, { "data" : { "id" : "3369", "shared_name" : "2005", "degree_layout" : 4, "Matching_Attribute" : [ "2005" ], "Classification" : "WM", "name" : "2005", "alias" : "ELK4", "SUID" : 3369, "selected" : false }, "position" : { "x" : -215.12460760277804, "y" : -322.4969979986656 }, "selected" : false }, { "data" : { "id" : "3365", "shared_name" : "29843", "Matching_Attribute" : [ "29843" ], "Classification" : "WM", "name" : "29843", "alias" : "SENP1", "SUID" : 3365, "selected" : false }, "position" : { "x" : 126.87539239722196, "y" : 149.50300200133438 }, "selected" : false }, { "data" : { "id" : "3361", "shared_name" : "4000", "degree_layout" : 119, "Matching_Attribute" : [ "4000" ], "Classification" : "WM", "name" : "4000", "alias" : "LMNA", "SUID" : 3361, "selected" : false }, "position" : { "x" : 202.87539239722196, "y" : 133.50300200133438 }, "selected" : false }, { "data" : { "id" : "3357", "shared_name" : "23152", "Matching_Attribute" : [ "23152" ], "Classification" : "WM", "name" : "23152", "alias" : "CIC", "SUID" : 3357, "selected" : false }, "position" : { "x" : 424.87539239722196, "y" : 67.50300200133438 }, "selected" : false }, { "data" : { "id" : "3353", "shared_name" : "1203", "Matching_Attribute" : [ "1203" ], "Classification" : "WMexpanded", "name" : "1203", "alias" : "CLN5", "SUID" : 3353, "selected" : false }, "position" : { "x" : -287.12460760277804, "y" : -391.4969979986656 }, "selected" : false }, { "data" : { "id" : "3349", "shared_name" : "8878", "Matching_Attribute" : [ "8878" ], "Classification" : "WM", "name" : "8878", "alias" : "SQSTM1", "SUID" : 3349, "selected" : false }, "position" : { "x" : 355.87539239722196, "y" : -153.49699799866562 }, "selected" : false }, { "data" : { "id" : "3345", "shared_name" : "221927", "Matching_Attribute" : [ "221927" ], "Classification" : "WM", "name" : "221927", "alias" : "BRAT1", "SUID" : 3345, "selected" : false }, "position" : { "x" : -457.12460760277804, "y" : -291.4969979986656 }, "selected" : false }, { "data" : { "id" : "3341", "shared_name" : "8504", "degree_layout" : 69, "Matching_Attribute" : [ "8504" ], "Classification" : "WM", "name" : "8504", "alias" : "PEX3", "SUID" : 3341, "selected" : false }, "position" : { "x" : -262.12460760277804, "y" : 84.50300200133438 }, "selected" : false }, { "data" : { "id" : "3337", "shared_name" : "2639", "degree_layout" : 109, "Matching_Attribute" : [ "2639" ], "Classification" : "WM", "name" : "2639", "alias" : "GCDH", "SUID" : 3337, "selected" : false }, "position" : { "x" : -97.12460760277804, "y" : 144.50300200133438 }, "selected" : false }, { "data" : { "id" : "3333", "shared_name" : "9409", "degree_layout" : 63, "Matching_Attribute" : [ "9409" ], "Classification" : "WM", "name" : "9409", "alias" : "PEX16", "SUID" : 3333, "selected" : false }, "position" : { "x" : -158.12460760277804, "y" : 8.50300200133438 }, "selected" : false }, { "data" : { "id" : "3329", "shared_name" : "5824", "degree_layout" : 70, "Matching_Attribute" : [ "5824" ], "Classification" : "WM", "name" : "5824", "alias" : "PEX19", "SUID" : 3329, "selected" : false }, "position" : { "x" : -140.12460760277804, "y" : -87.49699799866562 }, "selected" : false }, { "data" : { "id" : "3325", "shared_name" : "9517", "degree_layout" : 95, "Matching_Attribute" : [ "9517" ], "Classification" : "WM", "name" : "9517", "alias" : "SPTLC2", "SUID" : 3325, "selected" : false }, "position" : { "x" : -353.12460760277804, "y" : -59.49699799866562 }, "selected" : false }, { "data" : { "id" : "3321", "shared_name" : "79876", "Matching_Attribute" : [ "79876" ], "Classification" : "WM", "name" : "79876", "alias" : "UBA5", "SUID" : 3321, "selected" : false }, "position" : { "x" : -260.12460760277804, "y" : 293.5030020013344 }, "selected" : false }, { "data" : { "id" : "3317", "shared_name" : "10966", "Matching_Attribute" : [ "10966" ], "Classification" : "WM", "name" : "10966", "alias" : "RAB40B", "SUID" : 3317, "selected" : false }, "position" : { "x" : -28.124607602778042, "y" : 284.5030020013344 }, "selected" : false }, { "data" : { "id" : "3313", "shared_name" : "84314", "Matching_Attribute" : [ "84314" ], "Classification" : "WMexpanded", "name" : "84314", "alias" : "TMEM107", "SUID" : 3313, "selected" : false }, "position" : { "x" : 9.875392397221958, "y" : -371.4969979986656 }, "selected" : false }, { "data" : { "id" : "3309", "shared_name" : "5896", "Matching_Attribute" : [ "5896" ], "Classification" : "WM", "name" : "5896", "alias" : "RAG1", "SUID" : 3309, "selected" : false }, "position" : { "x" : -115.12460760277804, "y" : -557.4969979986656 }, "selected" : false }, { "data" : { "id" : "3305", "shared_name" : "7040", "degree_layout" : 95, "Matching_Attribute" : [ "7040" ], "Classification" : "WM", "name" : "7040", "alias" : "TGFB1", "SUID" : 3305, "selected" : false }, "position" : { "x" : 168.87539239722196, "y" : 5.50300200133438 }, "selected" : false }, { "data" : { "id" : "3301", "shared_name" : "91949", "Matching_Attribute" : [ "91949" ], "Classification" : "WM", "name" : "91949", "alias" : "COG7", "SUID" : 3301, "selected" : false }, "position" : { "x" : 297.87539239722196, "y" : -85.49699799866562 }, "selected" : false }, { "data" : { "id" : "3297", "shared_name" : "3383", "Matching_Attribute" : [ "3383" ], "Classification" : "candidate", "name" : "3383", "alias" : "ICAM1", "SUID" : 3297, "selected" : false }, "position" : { "x" : 307.87539239722196, "y" : -0.4969979986656199 }, "selected" : false }, { "data" : { "id" : "3293", "shared_name" : "1832", "Matching_Attribute" : [ "1832" ], "Classification" : "WM", "name" : "1832", "alias" : "DSP", "SUID" : 3293, "selected" : false }, "position" : { "x" : 218.87539239722196, "y" : 226.50300200133438 }, "selected" : false }, { "data" : { "id" : "3289", "shared_name" : "5913", "Matching_Attribute" : [ "5913" ], "Classification" : "WMexpanded", "name" : "5913", "alias" : "RAPSN", "SUID" : 3289, "selected" : false }, "position" : { "x" : 9.875392397221958, "y" : -66.49699799866562 }, "selected" : false }, { "data" : { "id" : "3285", "shared_name" : "8302", "Matching_Attribute" : [ "8302" ], "Classification" : "candidate", "name" : "8302", "alias" : "KLRC4", "SUID" : 3285, "selected" : false }, "position" : { "x" : 63.87539239722196, "y" : -322.4969979986656 }, "selected" : false }, { "data" : { "id" : "3281", "shared_name" : "283", "Matching_Attribute" : [ "283" ], "Classification" : "WMexpanded", "name" : "283", "alias" : "ANG", "SUID" : 3281, "selected" : false }, "position" : { "x" : 898.875392397222, "y" : -66.49699799866562 }, "selected" : false }, { "data" : { "id" : "3277", "shared_name" : "9423", "Matching_Attribute" : [ "9423" ], "Classification" : "WMexpanded", "name" : "9423", "alias" : "NTN1", "SUID" : 3277, "selected" : false }, "position" : { "x" : 286.87539239722196, "y" : -328.4969979986656 }, "selected" : false }, { "data" : { "id" : "3273", "shared_name" : "351", "degree_layout" : 64, "Matching_Attribute" : [ "351" ], "Classification" : "WM", "name" : "351", "alias" : "APP", "SUID" : 3273, "selected" : false }, "position" : { "x" : -0.12460760277804184, "y" : -218.49699799866562 }, "selected" : false }, { "data" : { "id" : "3269", "shared_name" : "2108", "degree_layout" : 93, "Matching_Attribute" : [ "2108" ], "Classification" : "WMexpanded", "name" : "2108", "alias" : "ETFA", "SUID" : 3269, "selected" : false }, "position" : { "x" : -300.12460760277804, "y" : 120.50300200133438 }, "selected" : false }, { "data" : { "id" : "3265", "shared_name" : "23259", "Matching_Attribute" : [ "23259" ], "Classification" : "WM", "name" : "23259", "alias" : "DDHD2", "SUID" : 3265, "selected" : false }, "position" : { "x" : -290.12460760277804, "y" : -136.49699799866562 }, "selected" : false }, { "data" : { "id" : "3261", "shared_name" : "54463", "Matching_Attribute" : [ "54463" ], "Classification" : "WM", "name" : "54463", "alias" : "RETREG1", "SUID" : 3261, "selected" : false }, "position" : { "x" : -78.12460760277804, "y" : -591.4969979986656 }, "selected" : false }, { "data" : { "id" : "3257", "shared_name" : "80746", "Matching_Attribute" : [ "80746" ], "Classification" : "WMexpanded", "name" : "80746", "alias" : "TSEN2", "SUID" : 3257, "selected" : false }, "position" : { "x" : 15.875392397221958, "y" : 838.5030020013344 }, "selected" : false }, { "data" : { "id" : "3253", "shared_name" : "4297", "Matching_Attribute" : [ "4297" ], "Classification" : "WMexpanded", "name" : "4297", "alias" : "KMT2A", "SUID" : 3253, "selected" : false }, "position" : { "x" : -118.12460760277804, "y" : 27.50300200133438 }, "selected" : false }, { "data" : { "id" : "3249", "shared_name" : "10075", "Matching_Attribute" : [ "10075" ], "Classification" : "WMexpanded", "name" : "10075", "alias" : "HUWE1", "SUID" : 3249, "selected" : false }, "position" : { "x" : 6.875392397221958, "y" : 137.50300200133438 }, "selected" : false }, { "data" : { "id" : "3245", "shared_name" : "1760", "Matching_Attribute" : [ "1760" ], "Classification" : "WM", "name" : "1760", "alias" : "DMPK", "SUID" : 3245, "selected" : false }, "position" : { "x" : 215.87539239722196, "y" : 2.50300200133438 }, "selected" : false }, { "data" : { "id" : "3241", "shared_name" : "51506", "Matching_Attribute" : [ "51506" ], "Classification" : "WM", "name" : "51506", "alias" : "UFC1", "SUID" : 3241, "selected" : false }, "position" : { "x" : -33.12460760277804, "y" : 461.5030020013344 }, "selected" : false }, { "data" : { "id" : "3237", "shared_name" : "95", "degree_layout" : 70, "Matching_Attribute" : [ "95" ], "Classification" : "WM", "name" : "95", "alias" : "ACY1", "SUID" : 3237, "selected" : false }, "position" : { "x" : -129.12460760277804, "y" : 152.50300200133438 }, "selected" : false }, { "data" : { "id" : "3233", "shared_name" : "57724", "Matching_Attribute" : [ "57724" ], "Classification" : "WM", "name" : "57724", "alias" : "EPG5", "SUID" : 3233, "selected" : false }, "position" : { "x" : 898.875392397222, "y" : -5.49699799866562 }, "selected" : false }, { "data" : { "id" : "3229", "shared_name" : "5794", "degree_layout" : 2, "Matching_Attribute" : [ "5794" ], "Classification" : "WM", "name" : "5794", "alias" : "PTPRH", "SUID" : 3229, "selected" : false }, "position" : { "x" : 488.87539239722196, "y" : 537.5030020013344 }, "selected" : false }, { "data" : { "id" : "3225", "shared_name" : "1268", "Matching_Attribute" : [ "1268" ], "Classification" : "candidate", "name" : "1268", "alias" : "CNR1", "SUID" : 3225, "selected" : false }, "position" : { "x" : 63.87539239722196, "y" : -555.4969979986656 }, "selected" : false }, { "data" : { "id" : "3221", "shared_name" : "284403", "Matching_Attribute" : [ "284403" ], "Classification" : "WMexpanded", "name" : "284403", "alias" : "WDR62", "SUID" : 3221, "selected" : false }, "position" : { "x" : 510.87539239722196, "y" : 262.5030020013344 }, "selected" : false }, { "data" : { "id" : "3217", "shared_name" : "8139", "Matching_Attribute" : [ "8139" ], "Classification" : "WM", "name" : "8139", "alias" : "GAN", "SUID" : 3217, "selected" : false }, "position" : { "x" : 279.87539239722196, "y" : 161.50300200133438 }, "selected" : false }, { "data" : { "id" : "3213", "shared_name" : "220296", "Matching_Attribute" : [ "220296" ], "Classification" : "WM", "name" : "220296", "alias" : "HEPACAM", "SUID" : 3213, "selected" : false }, "position" : { "x" : 959.875392397222, "y" : -66.49699799866562 }, "selected" : false }, { "data" : { "id" : "3209", "shared_name" : "166378", "Matching_Attribute" : [ "166378" ], "Classification" : "WM", "name" : "166378", "alias" : "SPATA5", "SUID" : 3209, "selected" : false }, "position" : { "x" : -316.12460760277804, "y" : 132.50300200133438 }, "selected" : false }, { "data" : { "id" : "3205", "shared_name" : "862", "Matching_Attribute" : [ "862" ], "Classification" : "WM", "name" : "862", "alias" : "RUNX1T1", "SUID" : 3205, "selected" : false }, "position" : { "x" : 205.87539239722196, "y" : 271.5030020013344 }, "selected" : false }, { "data" : { "id" : "3201", "shared_name" : "1277", "Matching_Attribute" : [ "1277" ], "Classification" : "WMexpanded", "name" : "1277", "alias" : "COL1A1", "SUID" : 3201, "selected" : false }, "position" : { "x" : 146.87539239722196, "y" : -250.49699799866562 }, "selected" : false }, { "data" : { "id" : "3197", "shared_name" : "64135", "degree_layout" : 23, "Matching_Attribute" : [ "64135" ], "Classification" : "WM", "name" : "64135", "alias" : "IFIH1", "SUID" : 3197, "selected" : false }, "position" : { "x" : 257.87539239722196, "y" : -40.49699799866562 }, "selected" : false }, { "data" : { "id" : "3193", "shared_name" : "197258", "Matching_Attribute" : [ "197258" ], "Classification" : "WM", "name" : "197258", "alias" : "FCSK", "SUID" : 3193, "selected" : false }, "position" : { "x" : -406.12460760277804, "y" : -127.49699799866562 }, "selected" : false }, { "data" : { "id" : "3189", "shared_name" : "2799", "Matching_Attribute" : [ "2799" ], "Classification" : "WMexpanded", "name" : "2799", "alias" : "GNS", "SUID" : 3189, "selected" : false }, "position" : { "x" : -226.12460760277804, "y" : -401.4969979986656 }, "selected" : false }, { "data" : { "id" : "3185", "shared_name" : "5053", "Matching_Attribute" : [ "5053" ], "Classification" : "WMexpanded", "name" : "5053", "alias" : "PAH", "SUID" : 3185, "selected" : false }, "position" : { "x" : -334.12460760277804, "y" : 50.50300200133438 }, "selected" : false }, { "data" : { "id" : "3181", "shared_name" : "54664", "degree_layout" : 1, "Matching_Attribute" : [ "54664" ], "Classification" : "WM", "name" : "54664", "alias" : "TMEM106B", "SUID" : 3181, "selected" : false }, "position" : { "x" : -348.12460760277804, "y" : 638.5030020013344 }, "selected" : false }, { "data" : { "id" : "3177", "shared_name" : "5321", "degree_layout" : 181, "Matching_Attribute" : [ "5321" ], "Classification" : "WMexpanded", "name" : "5321", "alias" : "PLA2G4A", "SUID" : 3177, "selected" : false }, "position" : { "x" : -84.12460760277804, "y" : -67.49699799866562 }, "selected" : false }, { "data" : { "id" : "3173", "shared_name" : "3558", "Matching_Attribute" : [ "3558" ], "Classification" : "WM", "name" : "3558", "alias" : "IL2", "SUID" : 3173, "selected" : false }, "position" : { "x" : 188.87539239722196, "y" : -154.49699799866562 }, "selected" : false }, { "data" : { "id" : "3169", "shared_name" : "1615", "degree_layout" : 123, "Matching_Attribute" : [ "1615" ], "Classification" : "WM", "name" : "1615", "alias" : "DARS1", "SUID" : 3169, "selected" : false }, "position" : { "x" : -368.12460760277804, "y" : 76.50300200133438 }, "selected" : false }, { "data" : { "id" : "3165", "shared_name" : "23209", "Matching_Attribute" : [ "23209" ], "Classification" : "WM", "name" : "23209", "alias" : "MLC1", "SUID" : 3165, "selected" : false }, "position" : { "x" : -45.12460760277804, "y" : -495.4969979986656 }, "selected" : false }, { "data" : { "id" : "3161", "shared_name" : "2821", "Matching_Attribute" : [ "2821" ], "Classification" : "WMexpanded", "name" : "2821", "alias" : "GPI", "SUID" : 3161, "selected" : false }, "position" : { "x" : -382.12460760277804, "y" : 35.50300200133438 }, "selected" : false }, { "data" : { "id" : "3157", "shared_name" : "9255", "degree_layout" : 64, "Matching_Attribute" : [ "9255" ], "Classification" : "WM", "name" : "9255", "alias" : "AIMP1", "SUID" : 3157, "selected" : false }, "position" : { "x" : -262.12460760277804, "y" : 1.5030020013343801 }, "selected" : false }, { "data" : { "id" : "3153", "shared_name" : "3684", "Matching_Attribute" : [ "3684" ], "Classification" : "candidate", "name" : "3684", "alias" : "ITGAM", "SUID" : 3153, "selected" : false }, "position" : { "x" : 272.87539239722196, "y" : -229.49699799866562 }, "selected" : false }, { "data" : { "id" : "3149", "shared_name" : "3630", "Matching_Attribute" : [ "3630" ], "Classification" : "WMexpanded", "name" : "3630", "alias" : "INS", "SUID" : 3149, "selected" : false }, "position" : { "x" : 143.87539239722196, "y" : -82.49699799866562 }, "selected" : false }, { "data" : { "id" : "3145", "shared_name" : "8493", "Matching_Attribute" : [ "8493" ], "Classification" : "WMexpanded", "name" : "8493", "alias" : "PPM1D", "SUID" : 3145, "selected" : false }, "position" : { "x" : 275.87539239722196, "y" : 242.50300200133438 }, "selected" : false }, { "data" : { "id" : "3141", "shared_name" : "10456", "Matching_Attribute" : [ "10456" ], "Classification" : "WMexpanded", "name" : "10456", "alias" : "HAX1", "SUID" : 3141, "selected" : false }, "position" : { "x" : 127.87539239722196, "y" : -218.49699799866562 }, "selected" : false }, { "data" : { "id" : "3137", "shared_name" : "9786", "Matching_Attribute" : [ "9786" ], "Classification" : "WM", "name" : "9786", "alias" : "KIAA0586", "SUID" : 3137, "selected" : false }, "position" : { "x" : 959.875392397222, "y" : -5.49699799866562 }, "selected" : false }, { "data" : { "id" : "3133", "shared_name" : "2006", "Matching_Attribute" : [ "2006" ], "Classification" : "WMexpanded", "name" : "2006", "alias" : "ELN", "SUID" : 3133, "selected" : false }, "position" : { "x" : -89.12460760277804, "y" : -283.4969979986656 }, "selected" : false }, { "data" : { "id" : "3129", "shared_name" : "4125", "Matching_Attribute" : [ "4125" ], "Classification" : "WM", "name" : "4125", "alias" : "MAN2B1", "SUID" : 3129, "selected" : false }, "position" : { "x" : -478.12460760277804, "y" : -313.4969979986656 }, "selected" : false }, { "data" : { "id" : "3125", "shared_name" : "5376", "Matching_Attribute" : [ "5376" ], "Classification" : "WM", "name" : "5376", "alias" : "PMP22", "SUID" : 3125, "selected" : false }, "position" : { "x" : 182.87539239722196, "y" : -454.4969979986656 }, "selected" : false }, { "data" : { "id" : "3121", "shared_name" : "3356", "Matching_Attribute" : [ "3356" ], "Classification" : "WM", "name" : "3356", "alias" : "HTR2A", "SUID" : 3121, "selected" : false }, "position" : { "x" : 115.46548982052468, "y" : -302.4848087764142 }, "selected" : false }, { "data" : { "id" : "3117", "shared_name" : "84668", "degree_layout" : 1, "Matching_Attribute" : [ "84668" ], "Classification" : "WM", "name" : "84668", "alias" : "FAM126A", "SUID" : 3117, "selected" : false }, "position" : { "x" : -31.124607602778042, "y" : -307.4969979986656 }, "selected" : false }, { "data" : { "id" : "3113", "shared_name" : "4338", "Matching_Attribute" : [ "4338" ], "Classification" : "WM", "name" : "4338", "alias" : "MOCS2", "SUID" : 3113, "selected" : false }, "position" : { "x" : -490.12460760277804, "y" : -9.49699799866562 }, "selected" : false }, { "data" : { "id" : "3109", "shared_name" : "5450", "Matching_Attribute" : [ "5450" ], "Classification" : "WM", "name" : "5450", "alias" : "POU2AF1", "SUID" : 3109, "selected" : false }, "position" : { "x" : -23.124607602778042, "y" : 66.50300200133438 }, "selected" : false }, { "data" : { "id" : "3105", "shared_name" : "8289", "Matching_Attribute" : [ "8289" ], "Classification" : "WMexpanded", "name" : "8289", "alias" : "ARID1A", "SUID" : 3105, "selected" : false }, "position" : { "x" : 49.87539239722196, "y" : -18.49699799866562 }, "selected" : false }, { "data" : { "id" : "3101", "shared_name" : "1822", "degree_layout" : 2, "Matching_Attribute" : [ "1822" ], "Classification" : "WM", "name" : "1822", "alias" : "ATN1", "SUID" : 3101, "selected" : false }, "position" : { "x" : 174.87539239722196, "y" : 165.50300200133438 }, "selected" : false }, { "data" : { "id" : "3097", "shared_name" : "11340", "Matching_Attribute" : [ "11340" ], "Classification" : "WM", "name" : "11340", "alias" : "EXOSC8", "SUID" : 3097, "selected" : false }, "position" : { "x" : -235.12460760277804, "y" : 289.5030020013344 }, "selected" : false }, { "data" : { "id" : "3093", "shared_name" : "6597", "Matching_Attribute" : [ "6597" ], "Classification" : "WMexpanded", "name" : "6597", "alias" : "SMARCA4", "SUID" : 3093, "selected" : false }, "position" : { "x" : 76.87539239722196, "y" : -98.49699799866562 }, "selected" : false }, { "data" : { "id" : "3089", "shared_name" : "51002", "Matching_Attribute" : [ "51002" ], "Classification" : "WM", "name" : "51002", "alias" : "TPRKB", "SUID" : 3089, "selected" : false }, "position" : { "x" : -585.124607602778, "y" : 164.50300200133438 }, "selected" : false }, { "data" : { "id" : "3085", "shared_name" : "57026", "degree_layout" : 4, "Matching_Attribute" : [ "57026" ], "Classification" : "WM", "name" : "57026", "alias" : "PDXP", "SUID" : 3085, "selected" : false }, "position" : { "x" : -205.12460760277804, "y" : 396.5030020013344 }, "selected" : false }, { "data" : { "id" : "3081", "shared_name" : "546", "degree_layout" : 2, "Matching_Attribute" : [ "546" ], "Classification" : "WMexpanded", "name" : "546", "alias" : "ATRX", "SUID" : 3081, "selected" : false }, "position" : { "x" : 239.87539239722196, "y" : 261.5030020013344 }, "selected" : false }, { "data" : { "id" : "3077", "shared_name" : "6506", "degree_layout" : 119, "Matching_Attribute" : [ "6506" ], "Classification" : "WM", "name" : "6506", "alias" : "SLC1A2", "SUID" : 3077, "selected" : false }, "position" : { "x" : -94.12460760277804, "y" : 45.50300200133438 }, "selected" : false }, { "data" : { "id" : "3073", "shared_name" : "182", "degree_layout" : 23, "Matching_Attribute" : [ "182" ], "Classification" : "WMexpanded", "name" : "182", "alias" : "JAG1", "SUID" : 3073, "selected" : false }, "position" : { "x" : 182.87539239722196, "y" : -74.49699799866562 }, "selected" : false }, { "data" : { "id" : "3069", "shared_name" : "57492", "Matching_Attribute" : [ "57492" ], "Classification" : "WMexpanded", "name" : "57492", "alias" : "ARID1B", "SUID" : 3069, "selected" : false }, "position" : { "x" : 105.87539239722196, "y" : -128.49699799866562 }, "selected" : false }, { "data" : { "id" : "3065", "shared_name" : "25828", "degree_layout" : 97, "Matching_Attribute" : [ "25828" ], "Classification" : "WM", "name" : "25828", "alias" : "TXN2", "SUID" : 3065, "selected" : false }, "position" : { "x" : -137.12460760277804, "y" : 274.5030020013344 }, "selected" : false }, { "data" : { "id" : "3061", "shared_name" : "4155", "Matching_Attribute" : [ "4155" ], "Classification" : "WM", "name" : "4155", "alias" : "MBP", "SUID" : 3061, "selected" : false }, "position" : { "x" : 183.87539239722196, "y" : -247.49699799866562 }, "selected" : false }, { "data" : { "id" : "3057", "shared_name" : "5592", "degree_layout" : 18, "Matching_Attribute" : [ "5592" ], "Classification" : "WM", "name" : "5592", "alias" : "PRKG1", "SUID" : 3057, "selected" : false }, "position" : { "x" : 309.87539239722196, "y" : 84.50300200133438 }, "selected" : false }, { "data" : { "id" : "3053", "shared_name" : "23299", "Matching_Attribute" : [ "23299" ], "Classification" : "WMexpanded", "name" : "23299", "alias" : "BICD2", "SUID" : 3053, "selected" : false }, "position" : { "x" : 345.87539239722196, "y" : 11.50300200133438 }, "selected" : false }, { "data" : { "id" : "3049", "shared_name" : "142", "degree_layout" : 106, "Matching_Attribute" : [ "142" ], "Classification" : "candidate", "name" : "142", "alias" : "PARP1", "SUID" : 3049, "selected" : false }, "position" : { "x" : 171.87539239722196, "y" : 186.50300200133438 }, "selected" : false }, { "data" : { "id" : "3045", "shared_name" : "1493", "Matching_Attribute" : [ "1493" ], "Classification" : "WMexpanded", "name" : "1493", "alias" : "CTLA4", "SUID" : 3045, "selected" : false }, "position" : { "x" : -154.12460760277804, "y" : -175.49699799866562 }, "selected" : false }, { "data" : { "id" : "3041", "shared_name" : "5663", "Matching_Attribute" : [ "5663" ], "Classification" : "WM", "name" : "5663", "alias" : "PSEN1", "SUID" : 3041, "selected" : false }, "position" : { "x" : 253.87539239722196, "y" : -72.49699799866562 }, "selected" : false }, { "data" : { "id" : "3037", "shared_name" : "8813", "Matching_Attribute" : [ "8813" ], "Classification" : "WM", "name" : "8813", "alias" : "DPM1", "SUID" : 3037, "selected" : false }, "position" : { "x" : -324.12460760277804, "y" : -184.49699799866562 }, "selected" : false }, { "data" : { "id" : "3033", "shared_name" : "1020", "degree_layout" : 79, "Matching_Attribute" : [ "1020" ], "Classification" : "WMexpanded", "name" : "1020", "alias" : "CDK5", "SUID" : 3033, "selected" : false }, "position" : { "x" : -22.124607602778042, "y" : -120.49699799866562 }, "selected" : false }, { "data" : { "id" : "3029", "shared_name" : "84947", "Matching_Attribute" : [ "84947" ], "Classification" : "WMexpanded", "name" : "84947", "alias" : "SERAC1", "SUID" : 3029, "selected" : false }, "position" : { "x" : 76.87539239722196, "y" : -757.4969979986656 }, "selected" : false }, { "data" : { "id" : "3025", "shared_name" : "55627", "degree_layout" : 37, "Matching_Attribute" : [ "55627" ], "Classification" : "WM", "name" : "55627", "alias" : "SMPD4", "SUID" : 3025, "selected" : false }, "position" : { "x" : -251.12460760277804, "y" : -277.4969979986656 }, "selected" : false }, { "data" : { "id" : "3021", "shared_name" : "84823", "degree_layout" : 52, "Matching_Attribute" : [ "84823" ], "Classification" : "WM", "name" : "84823", "alias" : "LMNB2", "SUID" : 3021, "selected" : false }, "position" : { "x" : 49.87539239722196, "y" : 212.50300200133438 }, "selected" : false }, { "data" : { "id" : "3017", "shared_name" : "4790", "degree_layout" : 144, "Matching_Attribute" : [ "4790" ], "Classification" : "WMexpanded", "name" : "4790", "alias" : "NFKB1", "SUID" : 3017, "selected" : false }, "position" : { "x" : 153.87539239722196, "y" : -35.49699799866562 }, "selected" : false }, { "data" : { "id" : "3013", "shared_name" : "50814", "Matching_Attribute" : [ "50814" ], "Classification" : "WMexpanded", "name" : "50814", "alias" : "NSDHL", "SUID" : 3013, "selected" : false }, "position" : { "x" : -264.12460760277804, "y" : -200.49699799866562 }, "selected" : false }, { "data" : { "id" : "3009", "shared_name" : "2917", "Matching_Attribute" : [ "2917" ], "Classification" : "WM", "name" : "2917", "alias" : "GRM7", "SUID" : 3009, "selected" : false }, "position" : { "x" : -114.12460760277804, "y" : -409.4969979986656 }, "selected" : false }, { "data" : { "id" : "3005", "shared_name" : "10785", "Matching_Attribute" : [ "10785" ], "Classification" : "WMexpanded", "name" : "10785", "alias" : "WDR4", "SUID" : 3005, "selected" : false }, "position" : { "x" : 898.875392397222, "y" : 55.50300200133438 }, "selected" : false }, { "data" : { "id" : "3001", "shared_name" : "27152", "Matching_Attribute" : [ "27152" ], "Classification" : "WM", "name" : "27152", "alias" : "INTU", "SUID" : 3001, "selected" : false }, "position" : { "x" : 406.87539239722196, "y" : 242.50300200133438 }, "selected" : false }, { "data" : { "id" : "2997", "shared_name" : "4982", "Matching_Attribute" : [ "4982" ], "Classification" : "WMexpanded", "name" : "4982", "alias" : "TNFRSF11B", "SUID" : 2997, "selected" : false }, "position" : { "x" : 509.87539239722196, "y" : -29.49699799866562 }, "selected" : false }, { "data" : { "id" : "2993", "shared_name" : "51132", "Matching_Attribute" : [ "51132" ], "Classification" : "WM", "name" : "51132", "alias" : "RLIM", "SUID" : 2993, "selected" : false }, "position" : { "x" : 98.87539239722196, "y" : 293.5030020013344 }, "selected" : false }, { "data" : { "id" : "2989", "shared_name" : "224", "degree_layout" : 240, "Matching_Attribute" : [ "224" ], "Classification" : "WM", "name" : "224", "alias" : "ALDH3A2", "SUID" : 2989, "selected" : false }, "position" : { "x" : -286.12460760277804, "y" : 30.50300200133438 }, "selected" : false }, { "data" : { "id" : "2985", "shared_name" : "1394", "Matching_Attribute" : [ "1394" ], "Classification" : "candidate", "name" : "1394", "alias" : "CRHR1", "SUID" : 2985, "selected" : false }, "position" : { "x" : -35.12460760277804, "y" : -736.4969979986656 }, "selected" : false }, { "data" : { "id" : "2981", "shared_name" : "4508", "Matching_Attribute" : [ "4508" ], "Classification" : "WM", "name" : "4508", "alias" : "ATP6", "SUID" : 2981, "selected" : false }, "position" : { "x" : -555.124607602778, "y" : 538.5030020013344 }, "selected" : false }, { "data" : { "id" : "2977", "shared_name" : "4747", "Matching_Attribute" : [ "4747" ], "Classification" : "WM", "name" : "4747", "alias" : "NEFL", "SUID" : 2977, "selected" : false }, "position" : { "x" : 105.87539239722196, "y" : -160.49699799866562 }, "selected" : false }, { "data" : { "id" : "2973", "shared_name" : "57716", "Matching_Attribute" : [ "57716" ], "Classification" : "WM", "name" : "57716", "alias" : "PRX", "SUID" : 2973, "selected" : false }, "position" : { "x" : 898.875392397222, "y" : 116.50300200133438 }, "selected" : false }, { "data" : { "id" : "2969", "shared_name" : "8867", "Matching_Attribute" : [ "8867" ], "Classification" : "WMexpanded", "name" : "8867", "alias" : "SYNJ1", "SUID" : 2969, "selected" : false }, "position" : { "x" : -21.124607602778042, "y" : -250.49699799866562 }, "selected" : false }, { "data" : { "id" : "2965", "shared_name" : "22880", "Matching_Attribute" : [ "22880" ], "Classification" : "WM", "name" : "22880", "alias" : "MORC2", "SUID" : 2965, "selected" : false }, "position" : { "x" : -310.12460760277804, "y" : -122.49699799866562 }, "selected" : false }, { "data" : { "id" : "2961", "shared_name" : "4314", "Matching_Attribute" : [ "4314" ], "Classification" : "WM", "name" : "4314", "alias" : "MMP3", "SUID" : 2961, "selected" : false }, "position" : { "x" : 49.87539239722196, "y" : -406.4969979986656 }, "selected" : false }, { "data" : { "id" : "2957", "shared_name" : "5465", "degree_layout" : 79, "Matching_Attribute" : [ "5465" ], "Classification" : "WMexpanded", "name" : "5465", "alias" : "PPARA", "SUID" : 2957, "selected" : false }, "position" : { "x" : -206.12460760277804, "y" : 32.50300200133438 }, "selected" : false }, { "data" : { "id" : "2953", "shared_name" : "63925", "Matching_Attribute" : [ "63925" ], "Classification" : "WM", "name" : "63925", "alias" : "ZNF335", "SUID" : 2953, "selected" : false }, "position" : { "x" : 959.875392397222, "y" : 55.50300200133438 }, "selected" : false }, { "data" : { "id" : "2949", "shared_name" : "8036", "Matching_Attribute" : [ "8036" ], "Classification" : "WM", "name" : "8036", "alias" : "SHOC2", "SUID" : 2949, "selected" : false }, "position" : { "x" : 99.87539239722196, "y" : -493.4969979986656 }, "selected" : false }, { "data" : { "id" : "2945", "shared_name" : "471", "degree_layout" : 67, "Matching_Attribute" : [ "471" ], "Classification" : "WMexpanded", "name" : "471", "alias" : "ATIC", "SUID" : 2945, "selected" : false }, "position" : { "x" : -471.12460760277804, "y" : -12.49699799866562 }, "selected" : false }, { "data" : { "id" : "2941", "shared_name" : "3778", "degree_layout" : 12, "Matching_Attribute" : [ "3778" ], "Classification" : "WMexpanded", "name" : "3778", "alias" : "KCNMA1", "SUID" : 2941, "selected" : false }, "position" : { "x" : 225.87539239722196, "y" : 337.5030020013344 }, "selected" : false }, { "data" : { "id" : "2937", "shared_name" : "1457", "degree_layout" : 95, "Matching_Attribute" : [ "1457" ], "Classification" : "WM", "name" : "1457", "alias" : "CSNK2A1", "SUID" : 2937, "selected" : false }, "position" : { "x" : 152.87539239722196, "y" : 37.50300200133438 }, "selected" : false }, { "data" : { "id" : "2933", "shared_name" : "10585", "Matching_Attribute" : [ "10585" ], "Classification" : "WM", "name" : "10585", "alias" : "POMT1", "SUID" : 2933, "selected" : false }, "position" : { "x" : -126.12460760277804, "y" : -336.4969979986656 }, "selected" : false }, { "data" : { "id" : "2929", "shared_name" : "6310", "Matching_Attribute" : [ "6310" ], "Classification" : "WMexpanded", "name" : "6310", "alias" : "ATXN1", "SUID" : 2929, "selected" : false }, "position" : { "x" : 246.87539239722196, "y" : 65.50300200133438 }, "selected" : false }, { "data" : { "id" : "2925", "shared_name" : "8802", "degree_layout" : 175, "Matching_Attribute" : [ "8802" ], "Classification" : "WMexpanded", "name" : "8802", "alias" : "SUCLG1", "SUID" : 2925, "selected" : false }, "position" : { "x" : -142.12460760277804, "y" : 64.50300200133438 }, "selected" : false }, { "data" : { "id" : "2921", "shared_name" : "5981", "degree_layout" : 79, "Matching_Attribute" : [ "5981" ], "Classification" : "WM", "name" : "5981", "alias" : "RFC1", "SUID" : 2921, "selected" : false }, "position" : { "x" : 59.87539239722196, "y" : 262.5030020013344 }, "selected" : false }, { "data" : { "id" : "2917", "shared_name" : "5451", "degree_layout" : 76, "Matching_Attribute" : [ "5451" ], "Classification" : "WM", "name" : "5451", "alias" : "POU2F1", "SUID" : 2917, "selected" : false }, "position" : { "x" : 79.87539239722196, "y" : 294.5030020013344 }, "selected" : false }, { "data" : { "id" : "2913", "shared_name" : "27107", "Matching_Attribute" : [ "27107" ], "Classification" : "WMexpanded", "name" : "27107", "alias" : "ZBTB11", "SUID" : 2913, "selected" : false }, "position" : { "x" : 439.87539239722196, "y" : 179.50300200133438 }, "selected" : false }, { "data" : { "id" : "2909", "shared_name" : "23126", "Matching_Attribute" : [ "23126" ], "Classification" : "WMexpanded", "name" : "23126", "alias" : "POGZ", "SUID" : 2909, "selected" : false }, "position" : { "x" : -174.12460760277804, "y" : -23.49699799866562 }, "selected" : false }, { "data" : { "id" : "2905", "shared_name" : "5664", "Matching_Attribute" : [ "5664" ], "Classification" : "WMexpanded", "name" : "5664", "alias" : "PSEN2", "SUID" : 2905, "selected" : false }, "position" : { "x" : 169.87539239722196, "y" : -90.49699799866562 }, "selected" : false }, { "data" : { "id" : "2901", "shared_name" : "6647", "Matching_Attribute" : [ "6647" ], "Classification" : "WMexpanded", "name" : "6647", "alias" : "SOD1", "SUID" : 2901, "selected" : false }, "position" : { "x" : -23.124607602778042, "y" : 50.50300200133438 }, "selected" : false }, { "data" : { "id" : "2897", "shared_name" : "1737", "degree_layout" : 123, "Matching_Attribute" : [ "1737" ], "Classification" : "WMexpanded", "name" : "1737", "alias" : "DLAT", "SUID" : 2897, "selected" : false }, "position" : { "x" : -145.12460760277804, "y" : 154.50300200133438 }, "selected" : false }, { "data" : { "id" : "2893", "shared_name" : "79152", "degree_layout" : 16, "Matching_Attribute" : [ "79152" ], "Classification" : "WM", "name" : "79152", "alias" : "FA2H", "SUID" : 2893, "selected" : false }, "position" : { "x" : -189.12460760277804, "y" : -261.4969979986656 }, "selected" : false }, { "data" : { "id" : "2889", "shared_name" : "889", "Matching_Attribute" : [ "889" ], "Classification" : "WM", "name" : "889", "alias" : "KRIT1", "SUID" : 2889, "selected" : false }, "position" : { "x" : 959.875392397222, "y" : 116.50300200133438 }, "selected" : false }, { "data" : { "id" : "2885", "shared_name" : "1437", "degree_layout" : 36, "Matching_Attribute" : [ "1437" ], "Classification" : "WM", "name" : "1437", "alias" : "CSF2", "SUID" : 2885, "selected" : false }, "position" : { "x" : 170.87539239722196, "y" : -194.49699799866562 }, "selected" : false }, { "data" : { "id" : "2881", "shared_name" : "5160", "degree_layout" : 84, "Matching_Attribute" : [ "5160" ], "Classification" : "WMexpanded", "name" : "5160", "alias" : "PDHA1", "SUID" : 2881, "selected" : false }, "position" : { "x" : -366.12460760277804, "y" : 18.50300200133438 }, "selected" : false }, { "data" : { "id" : "2877", "shared_name" : "340024", "Matching_Attribute" : [ "340024" ], "Classification" : "WMexpanded", "name" : "340024", "alias" : "SLC6A19", "SUID" : 2877, "selected" : false }, "position" : { "x" : 41.87539239722196, "y" : -112.49699799866562 }, "selected" : false }, { "data" : { "id" : "2873", "shared_name" : "6261", "Matching_Attribute" : [ "6261" ], "Classification" : "WMexpanded", "name" : "6261", "alias" : "RYR1", "SUID" : 2873, "selected" : false }, "position" : { "x" : 208.87539239722196, "y" : 52.50300200133438 }, "selected" : false }, { "data" : { "id" : "2869", "shared_name" : "43", "degree_layout" : 28, "Matching_Attribute" : [ "43" ], "Classification" : "candidate", "name" : "43", "alias" : "ACHE", "SUID" : 2869, "selected" : false }, "position" : { "x" : -206.12460760277804, "y" : -50.49699799866562 }, "selected" : false }, { "data" : { "id" : "2865", "shared_name" : "175", "degree_layout" : 15, "Matching_Attribute" : [ "175" ], "Classification" : "WMexpanded", "name" : "175", "alias" : "AGA", "SUID" : 2865, "selected" : false }, "position" : { "x" : -480.12460760277804, "y" : -44.49699799866562 }, "selected" : false }, { "data" : { "id" : "2861", "shared_name" : "284217", "Matching_Attribute" : [ "284217" ], "Classification" : "WM", "name" : "284217", "alias" : "LAMA1", "SUID" : 2861, "selected" : false }, "position" : { "x" : 144.87539239722196, "y" : -234.49699799866562 }, "selected" : false }, { "data" : { "id" : "2857", "shared_name" : "56947", "Matching_Attribute" : [ "56947" ], "Classification" : "WMexpanded", "name" : "56947", "alias" : "MFF", "SUID" : 2857, "selected" : false }, "position" : { "x" : 135.87539239722196, "y" : -557.4969979986656 }, "selected" : false }, { "data" : { "id" : "2853", "shared_name" : "8398", "degree_layout" : 97, "Matching_Attribute" : [ "8398" ], "Classification" : "WM", "name" : "8398", "alias" : "PLA2G6", "SUID" : 2853, "selected" : false }, "position" : { "x" : -174.12460760277804, "y" : -39.49699799866562 }, "selected" : false }, { "data" : { "id" : "2849", "shared_name" : "9326", "Matching_Attribute" : [ "9326" ], "Classification" : "WM", "name" : "9326", "alias" : "ZNHIT3", "SUID" : 2849, "selected" : false }, "position" : { "x" : 170.87539239722196, "y" : 382.5030020013344 }, "selected" : false }, { "data" : { "id" : "2845", "shared_name" : "400916", "Matching_Attribute" : [ "400916" ], "Classification" : "WMexpanded", "name" : "400916", "alias" : "CHCHD10", "SUID" : 2845, "selected" : false }, "position" : { "x" : -593.124607602778, "y" : 351.5030020013344 }, "selected" : false }, { "data" : { "id" : "2841", "shared_name" : "7098", "Matching_Attribute" : [ "7098" ], "Classification" : "WMexpanded", "name" : "7098", "alias" : "TLR3", "SUID" : 2841, "selected" : false }, "position" : { "x" : 276.87539239722196, "y" : -149.49699799866562 }, "selected" : false }, { "data" : { "id" : "2837", "shared_name" : "123263", "degree_layout" : 224, "Matching_Attribute" : [ "123263" ], "Classification" : "WM", "name" : "123263", "alias" : "MTFMT", "SUID" : 2837, "selected" : false }, "position" : { "x" : -249.12460760277804, "y" : 166.50300200133438 }, "selected" : false }, { "data" : { "id" : "2833", "shared_name" : "25978", "Matching_Attribute" : [ "25978" ], "Classification" : "WM", "name" : "25978", "alias" : "CHMP2B", "SUID" : 2833, "selected" : false }, "position" : { "x" : 306.87539239722196, "y" : 355.5030020013344 }, "selected" : false }, { "data" : { "id" : "2829", "shared_name" : "10577", "degree_layout" : 30, "Matching_Attribute" : [ "10577" ], "Classification" : "WM", "name" : "10577", "alias" : "NPC2", "SUID" : 2829, "selected" : false }, "position" : { "x" : -361.12460760277804, "y" : -298.4969979986656 }, "selected" : false }, { "data" : { "id" : "2825", "shared_name" : "126328", "degree_layout" : 268, "Matching_Attribute" : [ "126328" ], "Classification" : "WM", "name" : "126328", "alias" : "NDUFA11", "SUID" : 2825, "selected" : false }, "position" : { "x" : -408.12460760277804, "y" : 181.50300200133438 }, "selected" : false }, { "data" : { "id" : "2821", "shared_name" : "55159", "Matching_Attribute" : [ "55159" ], "Classification" : "WM", "name" : "55159", "alias" : "RFWD3", "SUID" : 2821, "selected" : false }, "position" : { "x" : 898.875392397222, "y" : 177.50300200133438 }, "selected" : false }, { "data" : { "id" : "2817", "shared_name" : "91869", "Matching_Attribute" : [ "91869" ], "Classification" : "WMexpanded", "name" : "91869", "alias" : "RFT1", "SUID" : 2817, "selected" : false }, "position" : { "x" : -324.12460760277804, "y" : -684.4969979986656 }, "selected" : false }, { "data" : { "id" : "2813", "shared_name" : "5079", "Matching_Attribute" : [ "5079" ], "Classification" : "WM", "name" : "5079", "alias" : "PAX5", "SUID" : 2813, "selected" : false }, "position" : { "x" : 283.87539239722196, "y" : 54.50300200133438 }, "selected" : false }, { "data" : { "id" : "2809", "shared_name" : "11284", "Matching_Attribute" : [ "11284" ], "Classification" : "WMexpanded", "name" : "11284", "alias" : "PNKP", "SUID" : 2809, "selected" : false }, "position" : { "x" : 100.87539239722196, "y" : 196.50300200133438 }, "selected" : false }, { "data" : { "id" : "2805", "shared_name" : "83700", "Matching_Attribute" : [ "83700" ], "Classification" : "WM", "name" : "83700", "alias" : "JAM3", "SUID" : 2805, "selected" : false }, "position" : { "x" : 567.875392397222, "y" : -428.4969979986656 }, "selected" : false }, { "data" : { "id" : "2801", "shared_name" : "4700", "degree_layout" : 270, "Matching_Attribute" : [ "4700" ], "Classification" : "WM", "name" : "4700", "alias" : "NDUFA6", "SUID" : 2801, "selected" : false }, "position" : { "x" : -392.12460760277804, "y" : 173.50300200133438 }, "selected" : false }, { "data" : { "id" : "2797", "shared_name" : "4728", "degree_layout" : 276, "Matching_Attribute" : [ "4728" ], "Classification" : "WM", "name" : "4728", "alias" : "NDUFS8", "SUID" : 2797, "selected" : false }, "position" : { "x" : -287.12460760277804, "y" : 186.50300200133438 }, "selected" : false }, { "data" : { "id" : "2793", "shared_name" : "8894", "degree_layout" : 62, "Matching_Attribute" : [ "8894" ], "Classification" : "WM", "name" : "8894", "alias" : "EIF2S2", "SUID" : 2793, "selected" : false }, "position" : { "x" : -118.12460760277804, "y" : -135.49699799866562 }, "selected" : false }, { "data" : { "id" : "2789", "shared_name" : "4536", "degree_layout" : 53, "Matching_Attribute" : [ "4536" ], "Classification" : "WMexpanded", "name" : "4536", "alias" : "ND2", "SUID" : 2789, "selected" : false }, "position" : { "x" : -376.12460760277804, "y" : 303.5030020013344 }, "selected" : false }, { "data" : { "id" : "2785", "shared_name" : "1351", "Matching_Attribute" : [ "1351" ], "Classification" : "WM", "name" : "1351", "alias" : "COX8A", "SUID" : 2785, "selected" : false }, "position" : { "x" : -496.12460760277804, "y" : 147.50300200133438 }, "selected" : false }, { "data" : { "id" : "2781", "shared_name" : "1968", "degree_layout" : 53, "Matching_Attribute" : [ "1968" ], "Classification" : "WM", "name" : "1968", "alias" : "EIF2S3", "SUID" : 2781, "selected" : false }, "position" : { "x" : -150.12460760277804, "y" : 24.50300200133438 }, "selected" : false }, { "data" : { "id" : "2777", "shared_name" : "9230", "degree_layout" : 11, "Matching_Attribute" : [ "9230" ], "Classification" : "WM", "name" : "9230", "alias" : "RAB11B", "SUID" : 2777, "selected" : false }, "position" : { "x" : 234.87539239722196, "y" : 220.50300200133438 }, "selected" : false }, { "data" : { "id" : "2773", "shared_name" : "4908", "Matching_Attribute" : [ "4908" ], "Classification" : "candidate", "name" : "4908", "alias" : "NTF3", "SUID" : 2773, "selected" : false }, "position" : { "x" : 138.87539239722196, "y" : -202.49699799866562 }, "selected" : false }, { "data" : { "id" : "2769", "shared_name" : "767", "Matching_Attribute" : [ "767" ], "Classification" : "WMexpanded", "name" : "767", "alias" : "CA8", "SUID" : 2769, "selected" : false }, "position" : { "x" : -153.12460760277804, "y" : 277.5030020013344 }, "selected" : false }, { "data" : { "id" : "2765", "shared_name" : "50846", "Matching_Attribute" : [ "50846" ], "Classification" : "WM", "name" : "50846", "alias" : "DHH", "SUID" : 2765, "selected" : false }, "position" : { "x" : 109.87539239722196, "y" : 245.50300200133438 }, "selected" : false }, { "data" : { "id" : "2761", "shared_name" : "57556", "Matching_Attribute" : [ "57556" ], "Classification" : "candidate", "name" : "57556", "alias" : "SEMA6A", "SUID" : 2761, "selected" : false }, "position" : { "x" : 172.87539239722196, "y" : -154.49699799866562 }, "selected" : false }, { "data" : { "id" : "2757", "shared_name" : "51079", "degree_layout" : 100, "Matching_Attribute" : [ "51079" ], "Classification" : "WMexpanded", "name" : "51079", "alias" : "NDUFA13", "SUID" : 2757, "selected" : false }, "position" : { "x" : -192.12460760277804, "y" : 256.5030020013344 }, "selected" : false }, { "data" : { "id" : "2753", "shared_name" : "4720", "degree_layout" : 273, "Matching_Attribute" : [ "4720" ], "Classification" : "WM", "name" : "4720", "alias" : "NDUFS2", "SUID" : 2753, "selected" : false }, "position" : { "x" : -237.12460760277804, "y" : 241.50300200133438 }, "selected" : false }, { "data" : { "id" : "2749", "shared_name" : "100506658", "degree_layout" : 9, "Matching_Attribute" : [ "100506658" ], "Classification" : "WM", "name" : "100506658", "alias" : "OCLN", "SUID" : 2749, "selected" : false }, "position" : { "x" : 33.87539239722196, "y" : 215.50300200133438 }, "selected" : false }, { "data" : { "id" : "2745", "shared_name" : "10215", "degree_layout" : 3, "Matching_Attribute" : [ "10215" ], "Classification" : "WM", "name" : "10215", "alias" : "OLIG2", "SUID" : 2745, "selected" : false }, "position" : { "x" : -48.12460760277804, "y" : -553.4969979986656 }, "selected" : false }, { "data" : { "id" : "2741", "shared_name" : "4695", "degree_layout" : 258, "Matching_Attribute" : [ "4695" ], "Classification" : "WM", "name" : "4695", "alias" : "NDUFA2", "SUID" : 2741, "selected" : false }, "position" : { "x" : -251.12460760277804, "y" : 261.5030020013344 }, "selected" : false }, { "data" : { "id" : "2737", "shared_name" : "966", "Matching_Attribute" : [ "966" ], "Classification" : "WM", "name" : "966", "alias" : "CD59", "SUID" : 2737, "selected" : false }, "position" : { "x" : 177.87539239722196, "y" : -58.49699799866562 }, "selected" : false }, { "data" : { "id" : "2733", "shared_name" : "5718", "Matching_Attribute" : [ "5718" ], "Classification" : "WMexpanded", "name" : "5718", "alias" : "PSMD12", "SUID" : 2733, "selected" : false }, "position" : { "x" : 204.87539239722196, "y" : 158.50300200133438 }, "selected" : false }, { "data" : { "id" : "2729", "shared_name" : "1471", "Matching_Attribute" : [ "1471" ], "Classification" : "WM", "name" : "1471", "alias" : "CST3", "SUID" : 2729, "selected" : false }, "position" : { "x" : -396.12460760277804, "y" : -295.4969979986656 }, "selected" : false }, { "data" : { "id" : "2725", "shared_name" : "1789", "Matching_Attribute" : [ "1789" ], "Classification" : "WMexpanded", "name" : "1789", "alias" : "DNMT3B", "SUID" : 2725, "selected" : false }, "position" : { "x" : -276.12460760277804, "y" : -120.49699799866562 }, "selected" : false }, { "data" : { "id" : "2721", "shared_name" : "79751", "Matching_Attribute" : [ "79751" ], "Classification" : "WM", "name" : "79751", "alias" : "SLC25A22", "SUID" : 2721, "selected" : false }, "position" : { "x" : -417.12460760277804, "y" : -9.49699799866562 }, "selected" : false }, { "data" : { "id" : "2717", "shared_name" : "10397", "Matching_Attribute" : [ "10397" ], "Classification" : "WM", "name" : "10397", "alias" : "NDRG1", "SUID" : 2717, "selected" : false }, "position" : { "x" : 359.87539239722196, "y" : 295.5030020013344 }, "selected" : false }, { "data" : { "id" : "2713", "shared_name" : "1476", "Matching_Attribute" : [ "1476" ], "Classification" : "WMexpanded", "name" : "1476", "alias" : "CSTB", "SUID" : 2713, "selected" : false }, "position" : { "x" : -659.124607602778, "y" : -473.4969979986656 }, "selected" : false }, { "data" : { "id" : "2709", "shared_name" : "2072", "Matching_Attribute" : [ "2072" ], "Classification" : "WM", "name" : "2072", "alias" : "ERCC4", "SUID" : 2709, "selected" : false }, "position" : { "x" : 160.87539239722196, "y" : 359.5030020013344 }, "selected" : false }, { "data" : { "id" : "2705", "shared_name" : "8379", "Matching_Attribute" : [ "8379" ], "Classification" : "WM", "name" : "8379", "alias" : "MAD1L1", "SUID" : 2705, "selected" : false }, "position" : { "x" : 381.87539239722196, "y" : 54.50300200133438 }, "selected" : false }, { "data" : { "id" : "2701", "shared_name" : "8455", "degree_layout" : 1, "Matching_Attribute" : [ "8455" ], "Classification" : "WM", "name" : "8455", "alias" : "ATRN", "SUID" : 2701, "selected" : false }, "position" : { "x" : 959.875392397222, "y" : 177.50300200133438 }, "selected" : false }, { "data" : { "id" : "2697", "shared_name" : "240", "Matching_Attribute" : [ "240" ], "Classification" : "WMexpanded", "name" : "240", "alias" : "ALOX5", "SUID" : 2697, "selected" : false }, "position" : { "x" : 73.87539239722196, "y" : -0.4969979986656199 }, "selected" : false }, { "data" : { "id" : "2693", "shared_name" : "5375", "Matching_Attribute" : [ "5375" ], "Classification" : "WM", "name" : "5375", "alias" : "PMP2", "SUID" : 2693, "selected" : false }, "position" : { "x" : 310.87539239722196, "y" : -555.4969979986656 }, "selected" : false }, { "data" : { "id" : "2689", "shared_name" : "4715", "degree_layout" : 247, "Matching_Attribute" : [ "4715" ], "Classification" : "WM", "name" : "4715", "alias" : "NDUFB9", "SUID" : 2689, "selected" : false }, "position" : { "x" : -345.12460760277804, "y" : 91.50300200133438 }, "selected" : false }, { "data" : { "id" : "2685", "shared_name" : "9474", "Matching_Attribute" : [ "9474" ], "Classification" : "WMexpanded", "name" : "9474", "alias" : "ATG5", "SUID" : 2685, "selected" : false }, "position" : { "x" : 403.87539239722196, "y" : 115.50300200133438 }, "selected" : false }, { "data" : { "id" : "2681", "shared_name" : "4126", "Matching_Attribute" : [ "4126" ], "Classification" : "WM", "name" : "4126", "alias" : "MANBA", "SUID" : 2681, "selected" : false }, "position" : { "x" : -544.124607602778, "y" : -256.4969979986656 }, "selected" : false }, { "data" : { "id" : "2677", "shared_name" : "7436", "Matching_Attribute" : [ "7436" ], "Classification" : "WMexpanded", "name" : "7436", "alias" : "VLDLR", "SUID" : 2677, "selected" : false }, "position" : { "x" : -97.12460760277804, "y" : -224.49699799866562 }, "selected" : false }, { "data" : { "id" : "2673", "shared_name" : "8841", "Matching_Attribute" : [ "8841" ], "Classification" : "candidate", "name" : "8841", "alias" : "HDAC3", "SUID" : 2673, "selected" : false }, "position" : { "x" : 84.87539239722196, "y" : 196.50300200133438 }, "selected" : false }, { "data" : { "id" : "2669", "shared_name" : "9197", "Matching_Attribute" : [ "9197" ], "Classification" : "WM", "name" : "9197", "alias" : "SLC33A1", "SUID" : 2669, "selected" : false }, "position" : { "x" : -408.12460760277804, "y" : -72.49699799866562 }, "selected" : false }, { "data" : { "id" : "2665", "shared_name" : "27229", "Matching_Attribute" : [ "27229" ], "Classification" : "WMexpanded", "name" : "27229", "alias" : "TUBGCP4", "SUID" : 2665, "selected" : false }, "position" : { "x" : 274.87539239722196, "y" : -101.49699799866562 }, "selected" : false }, { "data" : { "id" : "2661", "shared_name" : "3606", "Matching_Attribute" : [ "3606" ], "Classification" : "candidate", "name" : "3606", "alias" : "IL18", "SUID" : 2661, "selected" : false }, "position" : { "x" : 66.87539239722196, "y" : -178.49699799866562 }, "selected" : false }, { "data" : { "id" : "2657", "shared_name" : "6900", "Matching_Attribute" : [ "6900" ], "Classification" : "WMexpanded", "name" : "6900", "alias" : "CNTN2", "SUID" : 2657, "selected" : false }, "position" : { "x" : 287.87539239722196, "y" : -410.4969979986656 }, "selected" : false }, { "data" : { "id" : "2653", "shared_name" : "302", "degree_layout" : 71, "Matching_Attribute" : [ "302" ], "Classification" : "WM", "name" : "302", "alias" : "ANXA2", "SUID" : 2653, "selected" : false }, "position" : { "x" : 173.87539239722196, "y" : 69.50300200133438 }, "selected" : false }, { "data" : { "id" : "2649", "shared_name" : "5430", "degree_layout" : 121, "Matching_Attribute" : [ "5430" ], "Classification" : "WM", "name" : "5430", "alias" : "POLR2A", "SUID" : 2649, "selected" : false }, "position" : { "x" : 83.87539239722196, "y" : 326.5030020013344 }, "selected" : false }, { "data" : { "id" : "2645", "shared_name" : "476", "degree_layout" : 83, "Matching_Attribute" : [ "476" ], "Classification" : "WM", "name" : "476", "alias" : "ATP1A1", "SUID" : 2645, "selected" : false }, "position" : { "x" : 76.87539239722196, "y" : 112.50300200133438 }, "selected" : false }, { "data" : { "id" : "2641", "shared_name" : "3123", "Matching_Attribute" : [ "3123" ], "Classification" : "WM", "name" : "3123", "alias" : "HLA-DRB1", "SUID" : 2641, "selected" : false }, "position" : { "x" : 144.87539239722196, "y" : 53.50300200133438 }, "selected" : false }, { "data" : { "id" : "2637", "shared_name" : "353376", "Matching_Attribute" : [ "353376" ], "Classification" : "candidate", "name" : "353376", "alias" : "TICAM2", "SUID" : 2637, "selected" : false }, "position" : { "x" : 328.87539239722196, "y" : -186.49699799866562 }, "selected" : false }, { "data" : { "id" : "2633", "shared_name" : "29926", "Matching_Attribute" : [ "29926" ], "Classification" : "WMexpanded", "name" : "29926", "alias" : "GMPPA", "SUID" : 2633, "selected" : false }, "position" : { "x" : -374.12460760277804, "y" : -143.49699799866562 }, "selected" : false }, { "data" : { "id" : "2629", "shared_name" : "112812", "Matching_Attribute" : [ "112812" ], "Classification" : "WM", "name" : "112812", "alias" : "FDX2", "SUID" : 2629, "selected" : false }, "position" : { "x" : -343.12460760277804, "y" : 422.5030020013344 }, "selected" : false }, { "data" : { "id" : "2625", "shared_name" : "3065", "Matching_Attribute" : [ "3065" ], "Classification" : "WM", "name" : "3065", "alias" : "HDAC1", "SUID" : 2625, "selected" : false }, "position" : { "x" : 24.875392397221958, "y" : 69.50300200133438 }, "selected" : false }, { "data" : { "id" : "2621", "shared_name" : "477", "degree_layout" : 85, "Matching_Attribute" : [ "477" ], "Classification" : "WMexpanded", "name" : "477", "alias" : "ATP1A2", "SUID" : 2621, "selected" : false }, "position" : { "x" : 38.87539239722196, "y" : 149.50300200133438 }, "selected" : false }, { "data" : { "id" : "2617", "shared_name" : "57531", "Matching_Attribute" : [ "57531" ], "Classification" : "WM", "name" : "57531", "alias" : "HACE1", "SUID" : 2617, "selected" : false }, "position" : { "x" : 151.87539239722196, "y" : 69.50300200133438 }, "selected" : false }, { "data" : { "id" : "2613", "shared_name" : "472", "degree_layout" : 141, "Matching_Attribute" : [ "472" ], "Classification" : "WMexpanded", "name" : "472", "alias" : "ATM", "SUID" : 2613, "selected" : false }, "position" : { "x" : 110.87539239722196, "y" : 165.50300200133438 }, "selected" : false }, { "data" : { "id" : "2609", "shared_name" : "29960", "degree_layout" : 216, "Matching_Attribute" : [ "29960" ], "Classification" : "WMexpanded", "name" : "29960", "alias" : "MRM2", "SUID" : 2609, "selected" : false }, "position" : { "x" : -252.12460760277804, "y" : 113.50300200133438 }, "selected" : false }, { "data" : { "id" : "2605", "shared_name" : "2824", "degree_layout" : 2, "Matching_Attribute" : [ "2824" ], "Classification" : "WM", "name" : "2824", "alias" : "GPM6B", "SUID" : 2605, "selected" : false }, "position" : { "x" : 326.87539239722196, "y" : -464.4969979986656 }, "selected" : false }, { "data" : { "id" : "2601", "shared_name" : "23312", "Matching_Attribute" : [ "23312" ], "Classification" : "WM", "name" : "23312", "alias" : "DMXL2", "SUID" : 2601, "selected" : false }, "position" : { "x" : -5.124607602778042, "y" : 450.5030020013344 }, "selected" : false }, { "data" : { "id" : "2597", "shared_name" : "2056", "Matching_Attribute" : [ "2056" ], "Classification" : "WMexpanded", "name" : "2056", "alias" : "EPO", "SUID" : 2597, "selected" : false }, "position" : { "x" : 17.875392397221958, "y" : -42.49699799866562 }, "selected" : false }, { "data" : { "id" : "2593", "shared_name" : "64324", "Matching_Attribute" : [ "64324" ], "Classification" : "WMexpanded", "name" : "64324", "alias" : "NSD1", "SUID" : 2593, "selected" : false }, "position" : { "x" : -142.12460760277804, "y" : 0.5030020013343801 }, "selected" : false }, { "data" : { "id" : "2589", "shared_name" : "22884", "Matching_Attribute" : [ "22884" ], "Classification" : "WM", "name" : "22884", "alias" : "WDR37", "SUID" : 2589, "selected" : false }, "position" : { "x" : 72.87539239722196, "y" : 78.50300200133438 }, "selected" : false }, { "data" : { "id" : "2585", "shared_name" : "1977", "Matching_Attribute" : [ "1977" ], "Classification" : "WM", "name" : "1977", "alias" : "EIF4E", "SUID" : 2585, "selected" : false }, "position" : { "x" : 36.87539239722196, "y" : 117.50300200133438 }, "selected" : false }, { "data" : { "id" : "2581", "shared_name" : "7170", "Matching_Attribute" : [ "7170" ], "Classification" : "WMexpanded", "name" : "7170", "alias" : "TPM3", "SUID" : 2581, "selected" : false }, "position" : { "x" : 169.87539239722196, "y" : -122.49699799866562 }, "selected" : false }, { "data" : { "id" : "2577", "shared_name" : "4337", "Matching_Attribute" : [ "4337" ], "Classification" : "WM", "name" : "4337", "alias" : "MOCS1", "SUID" : 2577, "selected" : false }, "position" : { "x" : -403.12460760277804, "y" : 93.50300200133438 }, "selected" : false }, { "data" : { "id" : "2573", "shared_name" : "4514", "Matching_Attribute" : [ "4514" ], "Classification" : "WMexpanded", "name" : "4514", "alias" : "COX3", "SUID" : 2573, "selected" : false }, "position" : { "x" : -599.124607602778, "y" : 114.50300200133438 }, "selected" : false }, { "data" : { "id" : "2569", "shared_name" : "529", "degree_layout" : 48, "Matching_Attribute" : [ "529" ], "Classification" : "WMexpanded", "name" : "529", "alias" : "ATP6V1E1", "SUID" : 2569, "selected" : false }, "position" : { "x" : -392.12460760277804, "y" : -74.49699799866562 }, "selected" : false }, { "data" : { "id" : "2565", "shared_name" : "51501", "degree_layout" : 26, "Matching_Attribute" : [ "51501" ], "Classification" : "WM", "name" : "51501", "alias" : "HIKESHI", "SUID" : 2565, "selected" : false }, "position" : { "x" : 15.875392397221958, "y" : -90.49699799866562 }, "selected" : false }, { "data" : { "id" : "2561", "shared_name" : "523", "degree_layout" : 51, "Matching_Attribute" : [ "523" ], "Classification" : "WM", "name" : "523", "alias" : "ATP6V1A", "SUID" : 2561, "selected" : false }, "position" : { "x" : -426.12460760277804, "y" : -56.49699799866562 }, "selected" : false }, { "data" : { "id" : "2557", "shared_name" : "5444", "Matching_Attribute" : [ "5444" ], "Classification" : "candidate", "name" : "5444", "alias" : "PON1", "SUID" : 2557, "selected" : false }, "position" : { "x" : -120.12460760277804, "y" : 310.5030020013344 }, "selected" : false }, { "data" : { "id" : "2553", "shared_name" : "815", "degree_layout" : 138, "Matching_Attribute" : [ "815" ], "Classification" : "WMexpanded", "name" : "815", "alias" : "CAMK2A", "SUID" : 2553, "selected" : false }, "position" : { "x" : -0.12460760277804184, "y" : -90.49699799866562 }, "selected" : false }, { "data" : { "id" : "2549", "shared_name" : "9319", "Matching_Attribute" : [ "9319" ], "Classification" : "WMexpanded", "name" : "9319", "alias" : "TRIP13", "SUID" : 2549, "selected" : false }, "position" : { "x" : 56.87539239722196, "y" : 239.50300200133438 }, "selected" : false }, { "data" : { "id" : "2545", "shared_name" : "284058", "Matching_Attribute" : [ "284058" ], "Classification" : "WMexpanded", "name" : "284058", "alias" : "KANSL1", "SUID" : 2545, "selected" : false }, "position" : { "x" : 641.875392397222, "y" : 108.50300200133438 }, "selected" : false }, { "data" : { "id" : "2541", "shared_name" : "56704", "Matching_Attribute" : [ "56704" ], "Classification" : "WM", "name" : "56704", "alias" : "JPH1", "SUID" : 2541, "selected" : false }, "position" : { "x" : 405.87539239722196, "y" : 25.50300200133438 }, "selected" : false }, { "data" : { "id" : "2537", "shared_name" : "3984", "Matching_Attribute" : [ "3984" ], "Classification" : "candidate", "name" : "3984", "alias" : "LIMK1", "SUID" : 2537, "selected" : false }, "position" : { "x" : 50.87539239722196, "y" : -194.49699799866562 }, "selected" : false }, { "data" : { "id" : "2533", "shared_name" : "1030", "Matching_Attribute" : [ "1030" ], "Classification" : "candidate", "name" : "1030", "alias" : "CDKN2B", "SUID" : 2533, "selected" : false }, "position" : { "x" : 108.87539239722196, "y" : 111.50300200133438 }, "selected" : false }, { "data" : { "id" : "2529", "shared_name" : "5424", "Matching_Attribute" : [ "5424" ], "Classification" : "WMexpanded", "name" : "5424", "alias" : "POLD1", "SUID" : 2529, "selected" : false }, "position" : { "x" : 98.87539239722196, "y" : 384.5030020013344 }, "selected" : false }, { "data" : { "id" : "2525", "shared_name" : "9451", "Matching_Attribute" : [ "9451" ], "Classification" : "WMexpanded", "name" : "9451", "alias" : "EIF2AK3", "SUID" : 2525, "selected" : false }, "position" : { "x" : 12.875392397221958, "y" : -258.4969979986656 }, "selected" : false }, { "data" : { "id" : "2521", "shared_name" : "83696", "Matching_Attribute" : [ "83696" ], "Classification" : "WM", "name" : "83696", "alias" : "TRAPPC9", "SUID" : 2521, "selected" : false }, "position" : { "x" : -140.12460760277804, "y" : -71.49699799866562 }, "selected" : false }, { "data" : { "id" : "2517", "shared_name" : "1798", "Matching_Attribute" : [ "1798" ], "Classification" : "WMexpanded", "name" : "1798", "alias" : "DPAGT1", "SUID" : 2517, "selected" : false }, "position" : { "x" : -355.12460760277804, "y" : -353.4969979986656 }, "selected" : false }, { "data" : { "id" : "2513", "shared_name" : "22931", "Matching_Attribute" : [ "22931" ], "Classification" : "WMexpanded", "name" : "22931", "alias" : "RAB18", "SUID" : 2513, "selected" : false }, "position" : { "x" : 402.87539239722196, "y" : 9.50300200133438 }, "selected" : false }, { "data" : { "id" : "2509", "shared_name" : "7204", "Matching_Attribute" : [ "7204" ], "Classification" : "WMexpanded", "name" : "7204", "alias" : "TRIO", "SUID" : 2509, "selected" : false }, "position" : { "x" : 200.87539239722196, "y" : -233.49699799866562 }, "selected" : false }, { "data" : { "id" : "2505", "shared_name" : "128637", "Matching_Attribute" : [ "128637" ], "Classification" : "WMexpanded", "name" : "128637", "alias" : "TBC1D20", "SUID" : 2505, "selected" : false }, "position" : { "x" : 367.87539239722196, "y" : -67.49699799866562 }, "selected" : false }, { "data" : { "id" : "2501", "shared_name" : "7448", "degree_layout" : 24, "Matching_Attribute" : [ "7448" ], "Classification" : "WM", "name" : "7448", "alias" : "VTN", "SUID" : 2501, "selected" : false }, "position" : { "x" : -230.12460760277804, "y" : -133.49699799866562 }, "selected" : false }, { "data" : { "id" : "2497", "shared_name" : "55697", "Matching_Attribute" : [ "55697" ], "Classification" : "WMexpanded", "name" : "55697", "alias" : "VAC14", "SUID" : 2497, "selected" : false }, "position" : { "x" : -134.12460760277804, "y" : -136.49699799866562 }, "selected" : false }, { "data" : { "id" : "2493", "shared_name" : "7466", "Matching_Attribute" : [ "7466" ], "Classification" : "WMexpanded", "name" : "7466", "alias" : "WFS1", "SUID" : 2493, "selected" : false }, "position" : { "x" : -31.124607602778042, "y" : 227.50300200133438 }, "selected" : false }, { "data" : { "id" : "2489", "shared_name" : "4692", "Matching_Attribute" : [ "4692" ], "Classification" : "WMexpanded", "name" : "4692", "alias" : "NDN", "SUID" : 2489, "selected" : false }, "position" : { "x" : 177.87539239722196, "y" : -10.49699799866562 }, "selected" : false }, { "data" : { "id" : "2485", "shared_name" : "81857", "Matching_Attribute" : [ "81857" ], "Classification" : "WM", "name" : "81857", "alias" : "MED25", "SUID" : 2485, "selected" : false }, "position" : { "x" : -156.12460760277804, "y" : -103.49699799866562 }, "selected" : false }, { "data" : { "id" : "2481", "shared_name" : "2475", "Matching_Attribute" : [ "2475" ], "Classification" : "WM", "name" : "2475", "alias" : "MTOR", "SUID" : 2481, "selected" : false }, "position" : { "x" : -38.12460760277804, "y" : -163.49699799866562 }, "selected" : false }, { "data" : { "id" : "2477", "shared_name" : "57107", "degree_layout" : 196, "Matching_Attribute" : [ "57107" ], "Classification" : "WMexpanded", "name" : "57107", "alias" : "PDSS2", "SUID" : 2477, "selected" : false }, "position" : { "x" : -239.12460760277804, "y" : 213.50300200133438 }, "selected" : false }, { "data" : { "id" : "2473", "shared_name" : "10342", "Matching_Attribute" : [ "10342" ], "Classification" : "WM", "name" : "10342", "alias" : "TFG", "SUID" : 2473, "selected" : false }, "position" : { "x" : 156.87539239722196, "y" : 125.50300200133438 }, "selected" : false }, { "data" : { "id" : "2469", "shared_name" : "10657", "Matching_Attribute" : [ "10657" ], "Classification" : "candidate", "name" : "10657", "alias" : "KHDRBS1", "SUID" : 2469, "selected" : false }, "position" : { "x" : 399.87539239722196, "y" : -68.49699799866562 }, "selected" : false }, { "data" : { "id" : "2465", "shared_name" : "2583", "degree_layout" : 41, "Matching_Attribute" : [ "2583" ], "Classification" : "WM", "name" : "2583", "alias" : "B4GALNT1", "SUID" : 2465, "selected" : false }, "position" : { "x" : -308.12460760277804, "y" : -268.4969979986656 }, "selected" : false }, { "data" : { "id" : "2461", "shared_name" : "1806", "Matching_Attribute" : [ "1806" ], "Classification" : "WM", "name" : "1806", "alias" : "DPYD", "SUID" : 2461, "selected" : false }, "position" : { "x" : -474.12460760277804, "y" : 98.50300200133438 }, "selected" : false }, { "data" : { "id" : "2457", "shared_name" : "4143", "Matching_Attribute" : [ "4143" ], "Classification" : "WM", "name" : "4143", "alias" : "MAT1A", "SUID" : 2457, "selected" : false }, "position" : { "x" : -188.12460760277804, "y" : 112.50300200133438 }, "selected" : false }, { "data" : { "id" : "2453", "shared_name" : "57187", "Matching_Attribute" : [ "57187" ], "Classification" : "WMexpanded", "name" : "57187", "alias" : "THOC2", "SUID" : 2453, "selected" : false }, "position" : { "x" : 271.87539239722196, "y" : 646.5030020013344 }, "selected" : false }, { "data" : { "id" : "2449", "shared_name" : "6843", "Matching_Attribute" : [ "6843" ], "Classification" : "WMexpanded", "name" : "6843", "alias" : "VAMP1", "SUID" : 2449, "selected" : false }, "position" : { "x" : 81.87539239722196, "y" : -16.49699799866562 }, "selected" : false }, { "data" : { "id" : "2445", "shared_name" : "10939", "Matching_Attribute" : [ "10939" ], "Classification" : "WMexpanded", "name" : "10939", "alias" : "AFG3L2", "SUID" : 2445, "selected" : false }, "position" : { "x" : -219.12460760277804, "y" : 291.5030020013344 }, "selected" : false }, { "data" : { "id" : "2441", "shared_name" : "112476", "Matching_Attribute" : [ "112476" ], "Classification" : "WM", "name" : "112476", "alias" : "PRRT2", "SUID" : 2441, "selected" : false }, "position" : { "x" : -394.12460760277804, "y" : 403.5030020013344 }, "selected" : false }, { "data" : { "id" : "2437", "shared_name" : "158", "degree_layout" : 76, "Matching_Attribute" : [ "158" ], "Classification" : "WM", "name" : "158", "alias" : "ADSL", "SUID" : 2437, "selected" : false }, "position" : { "x" : -281.12460760277804, "y" : 148.50300200133438 }, "selected" : false }, { "data" : { "id" : "2433", "shared_name" : "6927", "Matching_Attribute" : [ "6927" ], "Classification" : "WMexpanded", "name" : "6927", "alias" : "HNF1A", "SUID" : 2433, "selected" : false }, "position" : { "x" : 142.87539239722196, "y" : 165.50300200133438 }, "selected" : false }, { "data" : { "id" : "2429", "shared_name" : "4952", "degree_layout" : 81, "Matching_Attribute" : [ "4952" ], "Classification" : "WM", "name" : "4952", "alias" : "OCRL", "SUID" : 2429, "selected" : false }, "position" : { "x" : 2.875392397221958, "y" : -186.49699799866562 }, "selected" : false }, { "data" : { "id" : "2425", "shared_name" : "3981", "Matching_Attribute" : [ "3981" ], "Classification" : "WMexpanded", "name" : "3981", "alias" : "LIG4", "SUID" : 2425, "selected" : false }, "position" : { "x" : 22.875392397221958, "y" : 241.50300200133438 }, "selected" : false }, { "data" : { "id" : "2421", "shared_name" : "2673", "degree_layout" : 89, "Matching_Attribute" : [ "2673" ], "Classification" : "WM", "name" : "2673", "alias" : "GFPT1", "SUID" : 2421, "selected" : false }, "position" : { "x" : -384.12460760277804, "y" : 75.50300200133438 }, "selected" : false }, { "data" : { "id" : "2417", "shared_name" : "675", "degree_layout" : 58, "Matching_Attribute" : [ "675" ], "Classification" : "WMexpanded", "name" : "675", "alias" : "BRCA2", "SUID" : 2417, "selected" : false }, "position" : { "x" : 161.87539239722196, "y" : 242.50300200133438 }, "selected" : false }, { "data" : { "id" : "2413", "shared_name" : "50484", "degree_layout" : 83, "Matching_Attribute" : [ "50484" ], "Classification" : "WM", "name" : "50484", "alias" : "RRM2B", "SUID" : 2413, "selected" : false }, "position" : { "x" : -206.12460760277804, "y" : -34.49699799866562 }, "selected" : false }, { "data" : { "id" : "2409", "shared_name" : "3304", "Matching_Attribute" : [ "3304" ], "Classification" : "candidate", "name" : "3304", "alias" : "HSPA1B", "SUID" : 2409, "selected" : false }, "position" : { "x" : 17.875392397221958, "y" : -10.49699799866562 }, "selected" : false }, { "data" : { "id" : "2405", "shared_name" : "3658", "Matching_Attribute" : [ "3658" ], "Classification" : "WM", "name" : "3658", "alias" : "IREB2", "SUID" : 2405, "selected" : false }, "position" : { "x" : -318.12460760277804, "y" : 19.50300200133438 }, "selected" : false }, { "data" : { "id" : "2401", "shared_name" : "28514", "Matching_Attribute" : [ "28514" ], "Classification" : "WMexpanded", "name" : "28514", "alias" : "DLL1", "SUID" : 2401, "selected" : false }, "position" : { "x" : 335.87539239722196, "y" : 41.50300200133438 }, "selected" : false }, { "data" : { "id" : "2397", "shared_name" : "3425", "Matching_Attribute" : [ "3425" ], "Classification" : "WM", "name" : "3425", "alias" : "IDUA", "SUID" : 2397, "selected" : false }, "position" : { "x" : -273.12460760277804, "y" : -479.4969979986656 }, "selected" : false }, { "data" : { "id" : "2393", "shared_name" : "6683", "degree_layout" : 24, "Matching_Attribute" : [ "6683" ], "Classification" : "WM", "name" : "6683", "alias" : "SPAST", "SUID" : 2393, "selected" : false }, "position" : { "x" : -285.12460760277804, "y" : 376.5030020013344 }, "selected" : false }, { "data" : { "id" : "2389", "shared_name" : "6925", "Matching_Attribute" : [ "6925" ], "Classification" : "WMexpanded", "name" : "6925", "alias" : "TCF4", "SUID" : 2389, "selected" : false }, "position" : { "x" : 9.875392397221958, "y" : 29.50300200133438 }, "selected" : false }, { "data" : { "id" : "2385", "shared_name" : "3192", "Matching_Attribute" : [ "3192" ], "Classification" : "WM", "name" : "3192", "alias" : "HNRNPU", "SUID" : 2385, "selected" : false }, "position" : { "x" : -18.124607602778042, "y" : 395.5030020013344 }, "selected" : false }, { "data" : { "id" : "2381", "shared_name" : "2257", "Matching_Attribute" : [ "2257" ], "Classification" : "WMexpanded", "name" : "2257", "alias" : "FGF12", "SUID" : 2381, "selected" : false }, "position" : { "x" : 1.8753923972219582, "y" : 13.50300200133438 }, "selected" : false }, { "data" : { "id" : "2377", "shared_name" : "6687", "degree_layout" : 25, "Matching_Attribute" : [ "6687" ], "Classification" : "WM", "name" : "6687", "alias" : "SPG7", "SUID" : 2377, "selected" : false }, "position" : { "x" : -175.12460760277804, "y" : 204.50300200133438 }, "selected" : false }, { "data" : { "id" : "2373", "shared_name" : "64801", "Matching_Attribute" : [ "64801" ], "Classification" : "WMexpanded", "name" : "64801", "alias" : "ARV1", "SUID" : 2373, "selected" : false }, "position" : { "x" : -347.12460760277804, "y" : -219.49699799866562 }, "selected" : false }, { "data" : { "id" : "2369", "shared_name" : "51741", "Matching_Attribute" : [ "51741" ], "Classification" : "WM", "name" : "51741", "alias" : "WWOX", "SUID" : 2369, "selected" : false }, "position" : { "x" : -71.12460760277804, "y" : 91.50300200133438 }, "selected" : false }, { "data" : { "id" : "2365", "shared_name" : "2731", "Matching_Attribute" : [ "2731" ], "Classification" : "WMexpanded", "name" : "2731", "alias" : "GLDC", "SUID" : 2365, "selected" : false }, "position" : { "x" : -190.12460760277804, "y" : 64.50300200133438 }, "selected" : false }, { "data" : { "id" : "2361", "shared_name" : "51010", "Matching_Attribute" : [ "51010" ], "Classification" : "WMexpanded", "name" : "51010", "alias" : "EXOSC3", "SUID" : 2361, "selected" : false }, "position" : { "x" : -330.12460760277804, "y" : 111.50300200133438 }, "selected" : false }, { "data" : { "id" : "2357", "shared_name" : "79600", "Matching_Attribute" : [ "79600" ], "Classification" : "WMexpanded", "name" : "79600", "alias" : "TCTN1", "SUID" : 2357, "selected" : false }, "position" : { "x" : 456.87539239722196, "y" : -127.49699799866562 }, "selected" : false }, { "data" : { "id" : "2353", "shared_name" : "5264", "degree_layout" : 67, "Matching_Attribute" : [ "5264" ], "Classification" : "WMexpanded", "name" : "5264", "alias" : "PHYH", "SUID" : 2353, "selected" : false }, "position" : { "x" : -265.12460760277804, "y" : -83.49699799866562 }, "selected" : false }, { "data" : { "id" : "2349", "shared_name" : "133686", "degree_layout" : 10, "Matching_Attribute" : [ "133686" ], "Classification" : "WM", "name" : "133686", "alias" : "NADK2", "SUID" : 2349, "selected" : false }, "position" : { "x" : -502.12460760277804, "y" : 53.50300200133438 }, "selected" : false }, { "data" : { "id" : "2345", "shared_name" : "200205", "degree_layout" : 219, "Matching_Attribute" : [ "200205" ], "Classification" : "WM", "name" : "200205", "alias" : "IBA57", "SUID" : 2345, "selected" : false }, "position" : { "x" : -335.12460760277804, "y" : 175.50300200133438 }, "selected" : false }, { "data" : { "id" : "2341", "shared_name" : "23322", "Matching_Attribute" : [ "23322" ], "Classification" : "WMexpanded", "name" : "23322", "alias" : "RPGRIP1L", "SUID" : 2341, "selected" : false }, "position" : { "x" : 341.87539239722196, "y" : -15.49699799866562 }, "selected" : false }, { "data" : { "id" : "2337", "shared_name" : "28976", "degree_layout" : 321, "Matching_Attribute" : [ "28976" ], "Classification" : "WMexpanded", "name" : "28976", "alias" : "ACAD9", "SUID" : 2337, "selected" : false }, "position" : { "x" : -204.12460760277804, "y" : 113.50300200133438 }, "selected" : false }, { "data" : { "id" : "2333", "shared_name" : "3559", "Matching_Attribute" : [ "3559" ], "Classification" : "WMexpanded", "name" : "3559", "alias" : "IL2RA", "SUID" : 2333, "selected" : false }, "position" : { "x" : 193.87539239722196, "y" : -18.49699799866562 }, "selected" : false }, { "data" : { "id" : "2329", "shared_name" : "2904", "Matching_Attribute" : [ "2904" ], "Classification" : "WMexpanded", "name" : "2904", "alias" : "GRIN2B", "SUID" : 2329, "selected" : false }, "position" : { "x" : 82.87539239722196, "y" : -186.49699799866562 }, "selected" : false }, { "data" : { "id" : "2325", "shared_name" : "55670", "degree_layout" : 68, "Matching_Attribute" : [ "55670" ], "Classification" : "WM", "name" : "55670", "alias" : "PEX26", "SUID" : 2325, "selected" : false }, "position" : { "x" : -286.12460760277804, "y" : -1.4969979986656199 }, "selected" : false }, { "data" : { "id" : "2321", "shared_name" : "6509", "Matching_Attribute" : [ "6509" ], "Classification" : "WM", "name" : "6509", "alias" : "SLC1A4", "SUID" : 2321, "selected" : false }, "position" : { "x" : -289.12460760277804, "y" : -71.49699799866562 }, "selected" : false }, { "data" : { "id" : "2317", "shared_name" : "51412", "Matching_Attribute" : [ "51412" ], "Classification" : "WMexpanded", "name" : "51412", "alias" : "ACTL6B", "SUID" : 2317, "selected" : false }, "position" : { "x" : -22.124607602778042, "y" : -137.49699799866562 }, "selected" : false }, { "data" : { "id" : "2313", "shared_name" : "6942", "Matching_Attribute" : [ "6942" ], "Classification" : "WMexpanded", "name" : "6942", "alias" : "TCF20", "SUID" : 2313, "selected" : false }, "position" : { "x" : 309.87539239722196, "y" : 543.5030020013344 }, "selected" : false }, { "data" : { "id" : "2309", "shared_name" : "3316", "Matching_Attribute" : [ "3316" ], "Classification" : "candidate", "name" : "3316", "alias" : "HSPB2", "SUID" : 2309, "selected" : false }, "position" : { "x" : 88.87539239722196, "y" : 63.50300200133438 }, "selected" : false }, { "data" : { "id" : "2305", "shared_name" : "6908", "degree_layout" : 103, "Matching_Attribute" : [ "6908" ], "Classification" : "WMexpanded", "name" : "6908", "alias" : "TBP", "SUID" : 2305, "selected" : false }, "position" : { "x" : 93.87539239722196, "y" : 245.50300200133438 }, "selected" : false }, { "data" : { "id" : "2301", "shared_name" : "9342", "degree_layout" : 7, "Matching_Attribute" : [ "9342" ], "Classification" : "WM", "name" : "9342", "alias" : "SNAP29", "SUID" : 2301, "selected" : false }, "position" : { "x" : 383.87539239722196, "y" : -68.49699799866562 }, "selected" : false }, { "data" : { "id" : "2297", "shared_name" : "55005", "degree_layout" : 117, "Matching_Attribute" : [ "55005" ], "Classification" : "WM", "name" : "55005", "alias" : "RMND1", "SUID" : 2297, "selected" : false }, "position" : { "x" : -201.12460760277804, "y" : 325.5030020013344 }, "selected" : false }, { "data" : { "id" : "2293", "shared_name" : "56270", "Matching_Attribute" : [ "56270" ], "Classification" : "WM", "name" : "56270", "alias" : "WDR45B", "SUID" : 2293, "selected" : false }, "position" : { "x" : 423.87539239722196, "y" : 173.50300200133438 }, "selected" : false }, { "data" : { "id" : "2289", "shared_name" : "6905", "Matching_Attribute" : [ "6905" ], "Classification" : "WM", "name" : "6905", "alias" : "TBCE", "SUID" : 2289, "selected" : false }, "position" : { "x" : 9.875392397221958, "y" : -444.4969979986656 }, "selected" : false }, { "data" : { "id" : "2285", "shared_name" : "51300", "degree_layout" : 239, "Matching_Attribute" : [ "51300" ], "Classification" : "WM", "name" : "51300", "alias" : "TIMMDC1", "SUID" : 2285, "selected" : false }, "position" : { "x" : -156.12460760277804, "y" : 108.50300200133438 }, "selected" : false }, { "data" : { "id" : "2281", "shared_name" : "79823", "degree_layout" : 25, "Matching_Attribute" : [ "79823" ], "Classification" : "WM", "name" : "79823", "alias" : "CAMKMT", "SUID" : 2281, "selected" : false }, "position" : { "x" : -92.12460760277804, "y" : -83.49699799866562 }, "selected" : false }, { "data" : { "id" : "2277", "shared_name" : "686", "degree_layout" : 25, "Matching_Attribute" : [ "686" ], "Classification" : "WMexpanded", "name" : "686", "alias" : "BTD", "SUID" : 2277, "selected" : false }, "position" : { "x" : -463.12460760277804, "y" : -61.49699799866562 }, "selected" : false }, { "data" : { "id" : "2273", "shared_name" : "9244", "Matching_Attribute" : [ "9244" ], "Classification" : "WM", "name" : "9244", "alias" : "CRLF1", "SUID" : 2273, "selected" : false }, "position" : { "x" : 182.87539239722196, "y" : -265.4969979986656 }, "selected" : false }, { "data" : { "id" : "2269", "shared_name" : "10300", "Matching_Attribute" : [ "10300" ], "Classification" : "WM", "name" : "10300", "alias" : "KATNB1", "SUID" : 2269, "selected" : false }, "position" : { "x" : -433.12460760277804, "y" : -116.49699799866562 }, "selected" : false }, { "data" : { "id" : "2265", "shared_name" : "11342", "Matching_Attribute" : [ "11342" ], "Classification" : "WM", "name" : "11342", "alias" : "RNF13", "SUID" : 2265, "selected" : false }, "position" : { "x" : -226.12460760277804, "y" : -480.4969979986656 }, "selected" : false }, { "data" : { "id" : "2261", "shared_name" : "1161", "degree_layout" : 59, "Matching_Attribute" : [ "1161" ], "Classification" : "WM", "name" : "1161", "alias" : "ERCC8", "SUID" : 2261, "selected" : false }, "position" : { "x" : 70.87539239722196, "y" : 424.5030020013344 }, "selected" : false }, { "data" : { "id" : "2257", "shared_name" : "22943", "Matching_Attribute" : [ "22943" ], "Classification" : "candidate", "name" : "22943", "alias" : "DKK1", "SUID" : 2257, "selected" : false }, "position" : { "x" : -4.124607602778042, "y" : 318.5030020013344 }, "selected" : false }, { "data" : { "id" : "2253", "shared_name" : "253738", "Matching_Attribute" : [ "253738" ], "Classification" : "WMexpanded", "name" : "253738", "alias" : "EBF3", "SUID" : 2253, "selected" : false }, "position" : { "x" : -267.12460760277804, "y" : -272.4969979986656 }, "selected" : false }, { "data" : { "id" : "2249", "shared_name" : "25824", "degree_layout" : 84, "Matching_Attribute" : [ "25824" ], "Classification" : "WM", "name" : "25824", "alias" : "PRDX5", "SUID" : 2249, "selected" : false }, "position" : { "x" : -330.12460760277804, "y" : -37.49699799866562 }, "selected" : false }, { "data" : { "id" : "2245", "shared_name" : "5587", "Matching_Attribute" : [ "5587" ], "Classification" : "WMexpanded", "name" : "5587", "alias" : "PRKD1", "SUID" : 2245, "selected" : false }, "position" : { "x" : -172.12460760277804, "y" : -186.49699799866562 }, "selected" : false }, { "data" : { "id" : "2241", "shared_name" : "3043", "Matching_Attribute" : [ "3043" ], "Classification" : "WM", "name" : "3043", "alias" : "HBB", "SUID" : 2241, "selected" : false }, "position" : { "x" : -25.124607602778042, "y" : 129.50300200133438 }, "selected" : false }, { "data" : { "id" : "2237", "shared_name" : "10516", "Matching_Attribute" : [ "10516" ], "Classification" : "WM", "name" : "10516", "alias" : "FBLN5", "SUID" : 2237, "selected" : false }, "position" : { "x" : -102.12460760277804, "y" : -134.49699799866562 }, "selected" : false }, { "data" : { "id" : "2233", "shared_name" : "9516", "Matching_Attribute" : [ "9516" ], "Classification" : "WM", "name" : "9516", "alias" : "LITAF", "SUID" : 2233, "selected" : false }, "position" : { "x" : -275.12460760277804, "y" : -216.49699799866562 }, "selected" : false }, { "data" : { "id" : "2229", "shared_name" : "738", "Matching_Attribute" : [ "738" ], "Classification" : "WM", "name" : "738", "alias" : "VPS51", "SUID" : 2229, "selected" : false }, "position" : { "x" : 122.87539239722196, "y" : -194.49699799866562 }, "selected" : false }, { "data" : { "id" : "2225", "shared_name" : "4864", "degree_layout" : 35, "Matching_Attribute" : [ "4864" ], "Classification" : "WM", "name" : "4864", "alias" : "NPC1", "SUID" : 2225, "selected" : false }, "position" : { "x" : -323.12460760277804, "y" : -388.4969979986656 }, "selected" : false }, { "data" : { "id" : "2221", "shared_name" : "26580", "Matching_Attribute" : [ "26580" ], "Classification" : "WMexpanded", "name" : "26580", "alias" : "BSCL2", "SUID" : 2221, "selected" : false }, "position" : { "x" : -283.12460760277804, "y" : -197.49699799866562 }, "selected" : false }, { "data" : { "id" : "2217", "shared_name" : "79853", "Matching_Attribute" : [ "79853" ], "Classification" : "WM", "name" : "79853", "alias" : "TM4SF20", "SUID" : 2217, "selected" : false }, "position" : { "x" : 898.875392397222, "y" : 238.50300200133438 }, "selected" : false }, { "data" : { "id" : "2213", "shared_name" : "4851", "Matching_Attribute" : [ "4851" ], "Classification" : "WM", "name" : "4851", "alias" : "NOTCH1", "SUID" : 2213, "selected" : false }, "position" : { "x" : 177.87539239722196, "y" : -26.49699799866562 }, "selected" : false }, { "data" : { "id" : "2209", "shared_name" : "2354", "Matching_Attribute" : [ "2354" ], "Classification" : "candidate", "name" : "2354", "alias" : "FOSB", "SUID" : 2209, "selected" : false }, "position" : { "x" : -65.12460760277804, "y" : 135.50300200133438 }, "selected" : false }, { "data" : { "id" : "2205", "shared_name" : "2571", "degree_layout" : 87, "Matching_Attribute" : [ "2571" ], "Classification" : "WMexpanded", "name" : "2571", "alias" : "GAD1", "SUID" : 2205, "selected" : false }, "position" : { "x" : -353.12460760277804, "y" : -41.49699799866562 }, "selected" : false }, { "data" : { "id" : "2201", "shared_name" : "26073", "Matching_Attribute" : [ "26073" ], "Classification" : "candidate", "name" : "26073", "alias" : "POLDIP2", "SUID" : 2201, "selected" : false }, "position" : { "x" : 146.87539239722196, "y" : 632.5030020013344 }, "selected" : false }, { "data" : { "id" : "2197", "shared_name" : "4684", "degree_layout" : 24, "Matching_Attribute" : [ "4684" ], "Classification" : "WM", "name" : "4684", "alias" : "NCAM1", "SUID" : 2197, "selected" : false }, "position" : { "x" : 316.87539239722196, "y" : -160.49699799866562 }, "selected" : false }, { "data" : { "id" : "2193", "shared_name" : "4052", "Matching_Attribute" : [ "4052" ], "Classification" : "WM", "name" : "4052", "alias" : "LTBP1", "SUID" : 2193, "selected" : false }, "position" : { "x" : -34.12460760277804, "y" : -324.4969979986656 }, "selected" : false }, { "data" : { "id" : "2189", "shared_name" : "84705", "Matching_Attribute" : [ "84705" ], "Classification" : "WMexpanded", "name" : "84705", "alias" : "GTPBP3", "SUID" : 2189, "selected" : false }, "position" : { "x" : -501.12460760277804, "y" : 198.50300200133438 }, "selected" : false }, { "data" : { "id" : "2185", "shared_name" : "1636", "Matching_Attribute" : [ "1636" ], "Classification" : "WM", "name" : "1636", "alias" : "ACE", "SUID" : 2185, "selected" : false }, "position" : { "x" : 45.87539239722196, "y" : -532.4969979986656 }, "selected" : false }, { "data" : { "id" : "2181", "shared_name" : "94005", "Matching_Attribute" : [ "94005" ], "Classification" : "WMexpanded", "name" : "94005", "alias" : "PIGS", "SUID" : 2181, "selected" : false }, "position" : { "x" : -22.124607602778042, "y" : -431.4969979986656 }, "selected" : false }, { "data" : { "id" : "2177", "shared_name" : "443", "degree_layout" : 60, "Matching_Attribute" : [ "443" ], "Classification" : "WM", "name" : "443", "alias" : "ASPA", "SUID" : 2177, "selected" : false }, "position" : { "x" : -325.12460760277804, "y" : 207.50300200133438 }, "selected" : false }, { "data" : { "id" : "2173", "shared_name" : "5159", "Matching_Attribute" : [ "5159" ], "Classification" : "WM", "name" : "5159", "alias" : "PDGFRB", "SUID" : 2173, "selected" : false }, "position" : { "x" : 242.87539239722196, "y" : -129.49699799866562 }, "selected" : false }, { "data" : { "id" : "2169", "shared_name" : "51182", "degree_layout" : 25, "Matching_Attribute" : [ "51182" ], "Classification" : "WM", "name" : "51182", "alias" : "HSPA14", "SUID" : 2169, "selected" : false }, "position" : { "x" : 56.87539239722196, "y" : 72.50300200133438 }, "selected" : false }, { "data" : { "id" : "2165", "shared_name" : "23417", "Matching_Attribute" : [ "23417" ], "Classification" : "WM", "name" : "23417", "alias" : "MLYCD", "SUID" : 2165, "selected" : false }, "position" : { "x" : -449.12460760277804, "y" : -14.49699799866562 }, "selected" : false }, { "data" : { "id" : "2161", "shared_name" : "55163", "Matching_Attribute" : [ "55163" ], "Classification" : "WMexpanded", "name" : "55163", "alias" : "PNPO", "SUID" : 2161, "selected" : false }, "position" : { "x" : -206.12460760277804, "y" : 80.50300200133438 }, "selected" : false }, { "data" : { "id" : "2157", "shared_name" : "23028", "Matching_Attribute" : [ "23028" ], "Classification" : "WM", "name" : "23028", "alias" : "KDM1A", "SUID" : 2157, "selected" : false }, "position" : { "x" : -70.12460760277804, "y" : 18.50300200133438 }, "selected" : false }, { "data" : { "id" : "2153", "shared_name" : "7042", "Matching_Attribute" : [ "7042" ], "Classification" : "WMexpanded", "name" : "7042", "alias" : "TGFB2", "SUID" : 2153, "selected" : false }, "position" : { "x" : 68.87539239722196, "y" : -162.49699799866562 }, "selected" : false }, { "data" : { "id" : "2149", "shared_name" : "80232", "Matching_Attribute" : [ "80232" ], "Classification" : "WMexpanded", "name" : "80232", "alias" : "WDR26", "SUID" : 2149, "selected" : false }, "position" : { "x" : -210.12460760277804, "y" : -213.49699799866562 }, "selected" : false }, { "data" : { "id" : "2145", "shared_name" : "8924", "Matching_Attribute" : [ "8924" ], "Classification" : "WMexpanded", "name" : "8924", "alias" : "HERC2", "SUID" : 2145, "selected" : false }, "position" : { "x" : 99.87539239722196, "y" : 337.5030020013344 }, "selected" : false }, { "data" : { "id" : "2141", "shared_name" : "26053", "Matching_Attribute" : [ "26053" ], "Classification" : "WMexpanded", "name" : "26053", "alias" : "AUTS2", "SUID" : 2141, "selected" : false }, "position" : { "x" : 467.87539239722196, "y" : 45.50300200133438 }, "selected" : false }, { "data" : { "id" : "2137", "shared_name" : "3918", "degree_layout" : 9, "Matching_Attribute" : [ "3918" ], "Classification" : "WM", "name" : "3918", "alias" : "LAMC2", "SUID" : 2137, "selected" : false }, "position" : { "x" : 39.87539239722196, "y" : -301.4969979986656 }, "selected" : false }, { "data" : { "id" : "2133", "shared_name" : "1859", "Matching_Attribute" : [ "1859" ], "Classification" : "WMexpanded", "name" : "1859", "alias" : "DYRK1A", "SUID" : 2133, "selected" : false }, "position" : { "x" : 106.87539239722196, "y" : 79.50300200133438 }, "selected" : false }, { "data" : { "id" : "2129", "shared_name" : "11019", "degree_layout" : 56, "Matching_Attribute" : [ "11019" ], "Classification" : "WM", "name" : "11019", "alias" : "LIAS", "SUID" : 2129, "selected" : false }, "position" : { "x" : -256.12460760277804, "y" : 245.50300200133438 }, "selected" : false }, { "data" : { "id" : "2125", "shared_name" : "2512", "Matching_Attribute" : [ "2512" ], "Classification" : "WMexpanded", "name" : "2512", "alias" : "FTL", "SUID" : 2125, "selected" : false }, "position" : { "x" : -158.12460760277804, "y" : -15.49699799866562 }, "selected" : false }, { "data" : { "id" : "2121", "shared_name" : "11232", "degree_layout" : 173, "Matching_Attribute" : [ "11232" ], "Classification" : "WM", "name" : "11232", "alias" : "POLG2", "SUID" : 2121, "selected" : false }, "position" : { "x" : -186.12460760277804, "y" : 188.50300200133438 }, "selected" : false }, { "data" : { "id" : "2117", "shared_name" : "6651", "Matching_Attribute" : [ "6651" ], "Classification" : "WM", "name" : "6651", "alias" : "SON", "SUID" : 2117, "selected" : false }, "position" : { "x" : 959.875392397222, "y" : 238.50300200133438 }, "selected" : false }, { "data" : { "id" : "2113", "shared_name" : "158506", "Matching_Attribute" : [ "158506" ], "Classification" : "WM", "name" : "158506", "alias" : "CBLL2", "SUID" : 2113, "selected" : false }, "position" : { "x" : -7.124607602778042, "y" : 262.5030020013344 }, "selected" : false }, { "data" : { "id" : "2109", "shared_name" : "51103", "degree_layout" : 252, "Matching_Attribute" : [ "51103" ], "Classification" : "WM", "name" : "51103", "alias" : "NDUFAF1", "SUID" : 2109, "selected" : false }, "position" : { "x" : -304.12460760277804, "y" : 82.50300200133438 }, "selected" : false }, { "data" : { "id" : "2105", "shared_name" : "56945", "degree_layout" : 214, "Matching_Attribute" : [ "56945" ], "Classification" : "WM", "name" : "56945", "alias" : "MRPS22", "SUID" : 2105, "selected" : false }, "position" : { "x" : -378.12460760277804, "y" : 280.5030020013344 }, "selected" : false }, { "data" : { "id" : "2101", "shared_name" : "3486", "Matching_Attribute" : [ "3486" ], "Classification" : "candidate", "name" : "3486", "alias" : "IGFBP3", "SUID" : 2101, "selected" : false }, "position" : { "x" : -16.124607602778042, "y" : -234.49699799866562 }, "selected" : false }, { "data" : { "id" : "2097", "shared_name" : "10166", "Matching_Attribute" : [ "10166" ], "Classification" : "WM", "name" : "10166", "alias" : "SLC25A15", "SUID" : 2097, "selected" : false }, "position" : { "x" : -382.12460760277804, "y" : 14.50300200133438 }, "selected" : false }, { "data" : { "id" : "2093", "shared_name" : "4780", "Matching_Attribute" : [ "4780" ], "Classification" : "WM", "name" : "4780", "alias" : "NFE2L2", "SUID" : 2093, "selected" : false }, "position" : { "x" : -68.12460760277804, "y" : -204.49699799866562 }, "selected" : false }, { "data" : { "id" : "2089", "shared_name" : "3939", "degree_layout" : 89, "Matching_Attribute" : [ "3939" ], "Classification" : "WMexpanded", "name" : "3939", "alias" : "LDHA", "SUID" : 2089, "selected" : false }, "position" : { "x" : -268.12460760277804, "y" : 175.50300200133438 }, "selected" : false }, { "data" : { "id" : "2085", "shared_name" : "2932", "degree_layout" : 135, "Matching_Attribute" : [ "2932" ], "Classification" : "candidate", "name" : "2932", "alias" : "GSK3B", "SUID" : 2085, "selected" : false }, "position" : { "x" : 105.87539239722196, "y" : -56.49699799866562 }, "selected" : false }, { "data" : { "id" : "2081", "shared_name" : "5468", "Matching_Attribute" : [ "5468" ], "Classification" : "WM", "name" : "5468", "alias" : "PPARG", "SUID" : 2081, "selected" : false }, "position" : { "x" : 72.87539239722196, "y" : 31.50300200133438 }, "selected" : false }, { "data" : { "id" : "2077", "shared_name" : "7528", "Matching_Attribute" : [ "7528" ], "Classification" : "WM", "name" : "7528", "alias" : "YY1", "SUID" : 2077, "selected" : false }, "position" : { "x" : -174.12460760277804, "y" : -7.49699799866562 }, "selected" : false }, { "data" : { "id" : "2073", "shared_name" : "5393", "Matching_Attribute" : [ "5393" ], "Classification" : "WMexpanded", "name" : "5393", "alias" : "EXOSC9", "SUID" : 2073, "selected" : false }, "position" : { "x" : -209.12460760277804, "y" : 129.50300200133438 }, "selected" : false }, { "data" : { "id" : "2069", "shared_name" : "84106", "Matching_Attribute" : [ "84106" ], "Classification" : "WM", "name" : "84106", "alias" : "PRAM1", "SUID" : 2069, "selected" : false }, "position" : { "x" : 345.87539239722196, "y" : 57.50300200133438 }, "selected" : false }, { "data" : { "id" : "2065", "shared_name" : "55823", "Matching_Attribute" : [ "55823" ], "Classification" : "WM", "name" : "55823", "alias" : "VPS11", "SUID" : 2065, "selected" : false }, "position" : { "x" : 715.3636078962749, "y" : 84.69738042541435 }, "selected" : false }, { "data" : { "id" : "2061", "shared_name" : "3570", "Matching_Attribute" : [ "3570" ], "Classification" : "candidate", "name" : "3570", "alias" : "IL6R", "SUID" : 2061, "selected" : false }, "position" : { "x" : 225.87539239722196, "y" : 69.50300200133438 }, "selected" : false }, { "data" : { "id" : "2057", "shared_name" : "23321", "Matching_Attribute" : [ "23321" ], "Classification" : "WM", "name" : "23321", "alias" : "TRIM2", "SUID" : 2057, "selected" : false }, "position" : { "x" : 592.875392397222, "y" : -189.49699799866562 }, "selected" : false }, { "data" : { "id" : "2053", "shared_name" : "7468", "Matching_Attribute" : [ "7468" ], "Classification" : "candidate", "name" : "7468", "alias" : "NSD2", "SUID" : 2053, "selected" : false }, "position" : { "x" : -6.124607602778042, "y" : 245.50300200133438 }, "selected" : false }, { "data" : { "id" : "2049", "shared_name" : "4552", "Matching_Attribute" : [ "4552" ], "Classification" : "WMexpanded", "name" : "4552", "alias" : "MTRR", "SUID" : 2049, "selected" : false }, "position" : { "x" : -390.12460760277804, "y" : -31.49699799866562 }, "selected" : false }, { "data" : { "id" : "2045", "shared_name" : "51102", "Matching_Attribute" : [ "51102" ], "Classification" : "WMexpanded", "name" : "51102", "alias" : "MECR", "SUID" : 2045, "selected" : false }, "position" : { "x" : -199.12460760277804, "y" : -114.49699799866562 }, "selected" : false }, { "data" : { "id" : "2041", "shared_name" : "5015", "Matching_Attribute" : [ "5015" ], "Classification" : "WMexpanded", "name" : "5015", "alias" : "OTX2", "SUID" : 2041, "selected" : false }, "position" : { "x" : 321.87539239722196, "y" : -252.49699799866562 }, "selected" : false }, { "data" : { "id" : "2037", "shared_name" : "80067", "Matching_Attribute" : [ "80067" ], "Classification" : "WM", "name" : "80067", "alias" : "DCAF17", "SUID" : 2037, "selected" : false }, "position" : { "x" : -166.12460760277804, "y" : 508.5030020013344 }, "selected" : false }, { "data" : { "id" : "2033", "shared_name" : "8741", "Matching_Attribute" : [ "8741" ], "Classification" : "candidate", "name" : "8741", "alias" : "TNFSF13", "SUID" : 2033, "selected" : false }, "position" : { "x" : 360.87539239722196, "y" : -44.49699799866562 }, "selected" : false }, { "data" : { "id" : "2029", "shared_name" : "4329", "degree_layout" : 148, "Matching_Attribute" : [ "4329" ], "Classification" : "WM", "name" : "4329", "alias" : "ALDH6A1", "SUID" : 2029, "selected" : false }, "position" : { "x" : -222.12460760277804, "y" : 77.50300200133438 }, "selected" : false }, { "data" : { "id" : "2025", "shared_name" : "549", "degree_layout" : 87, "Matching_Attribute" : [ "549" ], "Classification" : "WM", "name" : "549", "alias" : "AUH", "SUID" : 2025, "selected" : false }, "position" : { "x" : -439.12460760277804, "y" : 95.50300200133438 }, "selected" : false }, { "data" : { "id" : "2021", "shared_name" : "5428", "degree_layout" : 222, "Matching_Attribute" : [ "5428" ], "Classification" : "WM", "name" : "5428", "alias" : "POLG", "SUID" : 2021, "selected" : false }, "position" : { "x" : -367.12460760277804, "y" : 192.50300200133438 }, "selected" : false }, { "data" : { "id" : "2017", "shared_name" : "1116", "degree_layout" : 4, "Matching_Attribute" : [ "1116" ], "Classification" : "WMexpanded", "name" : "1116", "alias" : "CHI3L1", "SUID" : 2017, "selected" : false }, "position" : { "x" : -454.12460760277804, "y" : -262.4969979986656 }, "selected" : false }, { "data" : { "id" : "2013", "shared_name" : "128486", "Matching_Attribute" : [ "128486" ], "Classification" : "WMexpanded", "name" : "128486", "alias" : "FITM2", "SUID" : 2013, "selected" : false }, "position" : { "x" : -277.12460760277804, "y" : -452.4969979986656 }, "selected" : false }, { "data" : { "id" : "2009", "shared_name" : "79133", "degree_layout" : 254, "Matching_Attribute" : [ "79133" ], "Classification" : "WM", "name" : "79133", "alias" : "NDUFAF5", "SUID" : 2009, "selected" : false }, "position" : { "x" : -335.12460760277804, "y" : 191.50300200133438 }, "selected" : false }, { "data" : { "id" : "2005", "shared_name" : "4846", "degree_layout" : 138, "Matching_Attribute" : [ "4846" ], "Classification" : "WM", "name" : "4846", "alias" : "NOS3", "SUID" : 2005, "selected" : false }, "position" : { "x" : -46.12460760277804, "y" : 42.50300200133438 }, "selected" : false }, { "data" : { "id" : "2001", "shared_name" : "8676", "degree_layout" : 6, "Matching_Attribute" : [ "8676" ], "Classification" : "WM", "name" : "8676", "alias" : "STX11", "SUID" : 2001, "selected" : false }, "position" : { "x" : 219.87539239722196, "y" : 118.50300200133438 }, "selected" : false }, { "data" : { "id" : "1997", "shared_name" : "2348", "degree_layout" : 15, "Matching_Attribute" : [ "2348" ], "Classification" : "WM", "name" : "2348", "alias" : "FOLR1", "SUID" : 1997, "selected" : false }, "position" : { "x" : 121.87539239722196, "y" : -48.49699799866562 }, "selected" : false }, { "data" : { "id" : "1993", "shared_name" : "3181", "Matching_Attribute" : [ "3181" ], "Classification" : "WMexpanded", "name" : "3181", "alias" : "HNRNPA2B1", "SUID" : 1993, "selected" : false }, "position" : { "x" : 86.87539239722196, "y" : 430.5030020013344 }, "selected" : false }, { "data" : { "id" : "1989", "shared_name" : "3060", "Matching_Attribute" : [ "3060" ], "Classification" : "WMexpanded", "name" : "3060", "alias" : "HCRT", "SUID" : 1989, "selected" : false }, "position" : { "x" : -235.12460760277804, "y" : -282.4969979986656 }, "selected" : false }, { "data" : { "id" : "1985", "shared_name" : "3456", "Matching_Attribute" : [ "3456" ], "Classification" : "WM", "name" : "3456", "alias" : "IFNB1", "SUID" : 1985, "selected" : false }, "position" : { "x" : 242.87539239722196, "y" : -96.49699799866562 }, "selected" : false }, { "data" : { "id" : "1981", "shared_name" : "339983", "Matching_Attribute" : [ "339983" ], "Classification" : "WMexpanded", "name" : "339983", "alias" : "NAT8L", "SUID" : 1981, "selected" : false }, "position" : { "x" : -267.12460760277804, "y" : 269.5030020013344 }, "selected" : false }, { "data" : { "id" : "1977", "shared_name" : "5191", "degree_layout" : 69, "Matching_Attribute" : [ "5191" ], "Classification" : "WM", "name" : "5191", "alias" : "PEX7", "SUID" : 1977, "selected" : false }, "position" : { "x" : -222.12460760277804, "y" : 60.50300200133438 }, "selected" : false }, { "data" : { "id" : "1973", "shared_name" : "6709", "Matching_Attribute" : [ "6709" ], "Classification" : "WM", "name" : "6709", "alias" : "SPTAN1", "SUID" : 1973, "selected" : false }, "position" : { "x" : 94.87539239722196, "y" : 149.50300200133438 }, "selected" : false }, { "data" : { "id" : "1969", "shared_name" : "4598", "degree_layout" : 68, "Matching_Attribute" : [ "4598" ], "Classification" : "WMexpanded", "name" : "4598", "alias" : "MVK", "SUID" : 1969, "selected" : false }, "position" : { "x" : -365.12460760277804, "y" : -25.49699799866562 }, "selected" : false }, { "data" : { "id" : "1965", "shared_name" : "7443", "Matching_Attribute" : [ "7443" ], "Classification" : "WMexpanded", "name" : "7443", "alias" : "VRK1", "SUID" : 1965, "selected" : false }, "position" : { "x" : 356.87539239722196, "y" : 202.50300200133438 }, "selected" : false }, { "data" : { "id" : "1961", "shared_name" : "23095", "Matching_Attribute" : [ "23095" ], "Classification" : "WM", "name" : "23095", "alias" : "KIF1B", "SUID" : 1961, "selected" : false }, "position" : { "x" : -150.12460760277804, "y" : -31.49699799866562 }, "selected" : false }, { "data" : { "id" : "1957", "shared_name" : "1312", "Matching_Attribute" : [ "1312" ], "Classification" : "candidate", "name" : "1312", "alias" : "COMT", "SUID" : 1957, "selected" : false }, "position" : { "x" : 108.87539239722196, "y" : 95.50300200133438 }, "selected" : false }, { "data" : { "id" : "1953", "shared_name" : "5194", "degree_layout" : 78, "Matching_Attribute" : [ "5194" ], "Classification" : "WM", "name" : "5194", "alias" : "PEX13", "SUID" : 1953, "selected" : false }, "position" : { "x" : -369.12460760277804, "y" : -43.49699799866562 }, "selected" : false }, { "data" : { "id" : "1949", "shared_name" : "23137", "Matching_Attribute" : [ "23137" ], "Classification" : "WM", "name" : "23137", "alias" : "SMC5", "SUID" : 1949, "selected" : false }, "position" : { "x" : 322.87539239722196, "y" : 349.5030020013344 }, "selected" : false }, { "data" : { "id" : "1945", "shared_name" : "3785", "Matching_Attribute" : [ "3785" ], "Classification" : "WM", "name" : "3785", "alias" : "KCNQ2", "SUID" : 1945, "selected" : false }, "position" : { "x" : 188.87539239722196, "y" : 149.50300200133438 }, "selected" : false }, { "data" : { "id" : "1941", "shared_name" : "10535", "degree_layout" : 26, "Matching_Attribute" : [ "10535" ], "Classification" : "WM", "name" : "10535", "alias" : "RNASEH2A", "SUID" : 1941, "selected" : false }, "position" : { "x" : -148.12460760277804, "y" : 392.5030020013344 }, "selected" : false }, { "data" : { "id" : "1937", "shared_name" : "2965", "degree_layout" : 77, "Matching_Attribute" : [ "2965" ], "Classification" : "candidate", "name" : "2965", "alias" : "GTF2H1", "SUID" : 1937, "selected" : false }, "position" : { "x" : 115.87539239722196, "y" : 346.5030020013344 }, "selected" : false }, { "data" : { "id" : "1933", "shared_name" : "7335", "Matching_Attribute" : [ "7335" ], "Classification" : "candidate", "name" : "7335", "alias" : "UBE2V1", "SUID" : 1933, "selected" : false }, "position" : { "x" : 203.87539239722196, "y" : 117.50300200133438 }, "selected" : false }, { "data" : { "id" : "1929", "shared_name" : "51218", "degree_layout" : 182, "Matching_Attribute" : [ "51218" ], "Classification" : "WM", "name" : "51218", "alias" : "GLRX5", "SUID" : 1929, "selected" : false }, "position" : { "x" : -313.12460760277804, "y" : 98.50300200133438 }, "selected" : false }, { "data" : { "id" : "1925", "shared_name" : "948", "degree_layout" : 24, "Matching_Attribute" : [ "948" ], "Classification" : "WMexpanded", "name" : "948", "alias" : "CD36", "SUID" : 1925, "selected" : false }, "position" : { "x" : -29.124607602778042, "y" : -291.4969979986656 }, "selected" : false }, { "data" : { "id" : "1921", "shared_name" : "1352", "degree_layout" : 236, "Matching_Attribute" : [ "1352" ], "Classification" : "WM", "name" : "1352", "alias" : "COX10", "SUID" : 1921, "selected" : false }, "position" : { "x" : -423.12460760277804, "y" : 101.50300200133438 }, "selected" : false }, { "data" : { "id" : "1917", "shared_name" : "51604", "Matching_Attribute" : [ "51604" ], "Classification" : "WMexpanded", "name" : "51604", "alias" : "PIGT", "SUID" : 1917, "selected" : false }, "position" : { "x" : -42.12460760277804, "y" : -416.4969979986656 }, "selected" : false }, { "data" : { "id" : "1913", "shared_name" : "3172", "Matching_Attribute" : [ "3172" ], "Classification" : "WMexpanded", "name" : "3172", "alias" : "HNF4A", "SUID" : 1913, "selected" : false }, "position" : { "x" : 63.87539239722196, "y" : 296.5030020013344 }, "selected" : false }, { "data" : { "id" : "1909", "shared_name" : "5286", "degree_layout" : 50, "Matching_Attribute" : [ "5286" ], "Classification" : "WM", "name" : "5286", "alias" : "PIK3C2A", "SUID" : 1909, "selected" : false }, "position" : { "x" : -62.12460760277804, "y" : -298.4969979986656 }, "selected" : false }, { "data" : { "id" : "1905", "shared_name" : "9488", "Matching_Attribute" : [ "9488" ], "Classification" : "WM", "name" : "9488", "alias" : "PIGB", "SUID" : 1905, "selected" : false }, "position" : { "x" : -128.12460760277804, "y" : -352.4969979986656 }, "selected" : false }, { "data" : { "id" : "1901", "shared_name" : "10743", "Matching_Attribute" : [ "10743" ], "Classification" : "WMexpanded", "name" : "10743", "alias" : "RAI1", "SUID" : 1901, "selected" : false }, "position" : { "x" : 898.875392397222, "y" : 299.5030020013344 }, "selected" : false }, { "data" : { "id" : "1897", "shared_name" : "79753", "Matching_Attribute" : [ "79753" ], "Classification" : "WM", "name" : "79753", "alias" : "SNIP1", "SUID" : 1897, "selected" : false }, "position" : { "x" : 346.87539239722196, "y" : 256.5030020013344 }, "selected" : false }, { "data" : { "id" : "1893", "shared_name" : "1387", "degree_layout" : 178, "Matching_Attribute" : [ "1387" ], "Classification" : "WMexpanded", "name" : "1387", "alias" : "CREBBP", "SUID" : 1893, "selected" : false }, "position" : { "x" : 1.8753923972219582, "y" : -26.49699799866562 }, "selected" : false }, { "data" : { "id" : "1889", "shared_name" : "1490", "Matching_Attribute" : [ "1490" ], "Classification" : "candidate", "name" : "1490", "alias" : "CCN2", "SUID" : 1889, "selected" : false }, "position" : { "x" : -38.12460760277804, "y" : 5.50300200133438 }, "selected" : false }, { "data" : { "id" : "1885", "shared_name" : "8604", "degree_layout" : 72, "Matching_Attribute" : [ "8604" ], "Classification" : "WM", "name" : "8604", "alias" : "SLC25A12", "SUID" : 1885, "selected" : false }, "position" : { "x" : -430.12460760277804, "y" : 50.50300200133438 }, "selected" : false }, { "data" : { "id" : "1881", "shared_name" : "8506", "degree_layout" : 3, "Matching_Attribute" : [ "8506" ], "Classification" : "WM", "name" : "8506", "alias" : "CNTNAP1", "SUID" : 1881, "selected" : false }, "position" : { "x" : 439.87539239722196, "y" : -422.4969979986656 }, "selected" : false }, { "data" : { "id" : "1877", "shared_name" : "9531", "Matching_Attribute" : [ "9531" ], "Classification" : "WM", "name" : "9531", "alias" : "BAG3", "SUID" : 1877, "selected" : false }, "position" : { "x" : -174.12460760277804, "y" : -119.49699799866562 }, "selected" : false }, { "data" : { "id" : "1873", "shared_name" : "7274", "Matching_Attribute" : [ "7274" ], "Classification" : "WMexpanded", "name" : "7274", "alias" : "TTPA", "SUID" : 1873, "selected" : false }, "position" : { "x" : -211.12460760277804, "y" : -149.49699799866562 }, "selected" : false }, { "data" : { "id" : "1869", "shared_name" : "4729", "degree_layout" : 284, "Matching_Attribute" : [ "4729" ], "Classification" : "WM", "name" : "4729", "alias" : "NDUFV2", "SUID" : 1869, "selected" : false }, "position" : { "x" : -329.12460760277804, "y" : 282.5030020013344 }, "selected" : false }, { "data" : { "id" : "1865", "shared_name" : "498", "degree_layout" : 101, "Matching_Attribute" : [ "498" ], "Classification" : "WM", "name" : "498", "alias" : "ATP5F1A", "SUID" : 1865, "selected" : false }, "position" : { "x" : -313.12460760277804, "y" : 276.5030020013344 }, "selected" : false }, { "data" : { "id" : "1861", "shared_name" : "3708", "Matching_Attribute" : [ "3708" ], "Classification" : "WMexpanded", "name" : "3708", "alias" : "ITPR1", "SUID" : 1861, "selected" : false }, "position" : { "x" : 65.87539239722196, "y" : -18.49699799866562 }, "selected" : false }, { "data" : { "id" : "1857", "shared_name" : "9533", "degree_layout" : 89, "Matching_Attribute" : [ "9533" ], "Classification" : "WM", "name" : "9533", "alias" : "POLR1C", "SUID" : 1857, "selected" : false }, "position" : { "x" : 13.875392397221958, "y" : 201.50300200133438 }, "selected" : false }, { "data" : { "id" : "1853", "shared_name" : "120", "Matching_Attribute" : [ "120" ], "Classification" : "WM", "name" : "120", "alias" : "ADD3", "SUID" : 1853, "selected" : false }, "position" : { "x" : -399.12460760277804, "y" : 483.5030020013344 }, "selected" : false }, { "data" : { "id" : "1849", "shared_name" : "26275", "degree_layout" : 194, "Matching_Attribute" : [ "26275" ], "Classification" : "WM", "name" : "26275", "alias" : "HIBCH", "SUID" : 1849, "selected" : false }, "position" : { "x" : -288.12460760277804, "y" : 94.50300200133438 }, "selected" : false }, { "data" : { "id" : "1845", "shared_name" : "836", "degree_layout" : 97, "Matching_Attribute" : [ "836" ], "Classification" : "WM", "name" : "836", "alias" : "CASP3", "SUID" : 1845, "selected" : false }, "position" : { "x" : 241.87539239722196, "y" : 81.50300200133438 }, "selected" : false }, { "data" : { "id" : "1841", "shared_name" : "51651", "Matching_Attribute" : [ "51651" ], "Classification" : "WMexpanded", "name" : "51651", "alias" : "PTRH2", "SUID" : 1841, "selected" : false }, "position" : { "x" : -166.12460760277804, "y" : -378.4969979986656 }, "selected" : false }, { "data" : { "id" : "1837", "shared_name" : "9939", "Matching_Attribute" : [ "9939" ], "Classification" : "WM", "name" : "9939", "alias" : "RBM8A", "SUID" : 1837, "selected" : false }, "position" : { "x" : 180.87539239722196, "y" : 345.5030020013344 }, "selected" : false }, { "data" : { "id" : "1833", "shared_name" : "10608", "Matching_Attribute" : [ "10608" ], "Classification" : "WM", "name" : "10608", "alias" : "MXD4", "SUID" : 1833, "selected" : false }, "position" : { "x" : 405.87539239722196, "y" : -427.4969979986656 }, "selected" : false }, { "data" : { "id" : "1829", "shared_name" : "7421", "Matching_Attribute" : [ "7421" ], "Classification" : "WMexpanded", "name" : "7421", "alias" : "VDR", "SUID" : 1829, "selected" : false }, "position" : { "x" : -62.12460760277804, "y" : -27.49699799866562 }, "selected" : false }, { "data" : { "id" : "1825", "shared_name" : "26750", "Matching_Attribute" : [ "26750" ], "Classification" : "WM", "name" : "26750", "alias" : "RPS6KC1", "SUID" : 1825, "selected" : false }, "position" : { "x" : -247.12460760277804, "y" : -237.49699799866562 }, "selected" : false }, { "data" : { "id" : "1821", "shared_name" : "1719", "Matching_Attribute" : [ "1719" ], "Classification" : "WM", "name" : "1719", "alias" : "DHFR", "SUID" : 1821, "selected" : false }, "position" : { "x" : -76.12460760277804, "y" : 109.50300200133438 }, "selected" : false }, { "data" : { "id" : "1817", "shared_name" : "7343", "Matching_Attribute" : [ "7343" ], "Classification" : "WM", "name" : "7343", "alias" : "UBTF", "SUID" : 1817, "selected" : false }, "position" : { "x" : 154.87539239722196, "y" : 309.5030020013344 }, "selected" : false }, { "data" : { "id" : "1813", "shared_name" : "7703", "Matching_Attribute" : [ "7703" ], "Classification" : "WM", "name" : "7703", "alias" : "PCGF2", "SUID" : 1813, "selected" : false }, "position" : { "x" : 109.87539239722196, "y" : 309.5030020013344 }, "selected" : false }, { "data" : { "id" : "1809", "shared_name" : "6548", "Matching_Attribute" : [ "6548" ], "Classification" : "WMexpanded", "name" : "6548", "alias" : "SLC9A1", "SUID" : 1809, "selected" : false }, "position" : { "x" : 12.875392397221958, "y" : -162.49699799866562 }, "selected" : false }, { "data" : { "id" : "1805", "shared_name" : "3738", "Matching_Attribute" : [ "3738" ], "Classification" : "candidate", "name" : "3738", "alias" : "KCNA3", "SUID" : 1805, "selected" : false }, "position" : { "x" : 167.87539239722196, "y" : 101.50300200133438 }, "selected" : false }, { "data" : { "id" : "1801", "shared_name" : "1641", "Matching_Attribute" : [ "1641" ], "Classification" : "WMexpanded", "name" : "1641", "alias" : "DCX", "SUID" : 1801, "selected" : false }, "position" : { "x" : -3.124607602778042, "y" : -298.4969979986656 }, "selected" : false }, { "data" : { "id" : "1797", "shared_name" : "85365", "Matching_Attribute" : [ "85365" ], "Classification" : "WM", "name" : "85365", "alias" : "ALG2", "SUID" : 1797, "selected" : false }, "position" : { "x" : -373.12460760277804, "y" : -363.4969979986656 }, "selected" : false }, { "data" : { "id" : "1793", "shared_name" : "7515", "degree_layout" : 59, "Matching_Attribute" : [ "7515" ], "Classification" : "WMexpanded", "name" : "7515", "alias" : "XRCC1", "SUID" : 1793, "selected" : false }, "position" : { "x" : 198.87539239722196, "y" : 300.5030020013344 }, "selected" : false }, { "data" : { "id" : "1789", "shared_name" : "652", "degree_layout" : 12, "Matching_Attribute" : [ "652" ], "Classification" : "WM", "name" : "652", "alias" : "BMP4", "SUID" : 1789, "selected" : false }, "position" : { "x" : -118.12460760277804, "y" : 11.50300200133438 }, "selected" : false }, { "data" : { "id" : "1785", "shared_name" : "667", "degree_layout" : 4, "Matching_Attribute" : [ "667" ], "Classification" : "WMexpanded", "name" : "667", "alias" : "DST", "SUID" : 1785, "selected" : false }, "position" : { "x" : 40.87539239722196, "y" : 53.50300200133438 }, "selected" : false }, { "data" : { "id" : "1781", "shared_name" : "4084", "Matching_Attribute" : [ "4084" ], "Classification" : "WM", "name" : "4084", "alias" : "MXD1", "SUID" : 1781, "selected" : false }, "position" : { "x" : 200.87539239722196, "y" : 35.50300200133438 }, "selected" : false }, { "data" : { "id" : "1777", "shared_name" : "4153", "degree_layout" : 19, "Matching_Attribute" : [ "4153" ], "Classification" : "WMexpanded", "name" : "4153", "alias" : "MBL2", "SUID" : 1777, "selected" : false }, "position" : { "x" : 324.87539239722196, "y" : 11.50300200133438 }, "selected" : false }, { "data" : { "id" : "1773", "shared_name" : "27245", "Matching_Attribute" : [ "27245" ], "Classification" : "WM", "name" : "27245", "alias" : "AHDC1", "SUID" : 1773, "selected" : false }, "position" : { "x" : 598.875392397222, "y" : 237.50300200133438 }, "selected" : false }, { "data" : { "id" : "1769", "shared_name" : "57104", "Matching_Attribute" : [ "57104" ], "Classification" : "WMexpanded", "name" : "57104", "alias" : "PNPLA2", "SUID" : 1769, "selected" : false }, "position" : { "x" : -191.12460760277804, "y" : -245.49699799866562 }, "selected" : false }, { "data" : { "id" : "1765", "shared_name" : "5308", "Matching_Attribute" : [ "5308" ], "Classification" : "WMexpanded", "name" : "5308", "alias" : "PITX2", "SUID" : 1765, "selected" : false }, "position" : { "x" : 168.87539239722196, "y" : 45.50300200133438 }, "selected" : false }, { "data" : { "id" : "1761", "shared_name" : "113246", "Matching_Attribute" : [ "113246" ], "Classification" : "WM", "name" : "113246", "alias" : "C12orf57", "SUID" : 1761, "selected" : false }, "position" : { "x" : -255.12460760277804, "y" : 360.5030020013344 }, "selected" : false }, { "data" : { "id" : "1757", "shared_name" : "23287", "Matching_Attribute" : [ "23287" ], "Classification" : "WMexpanded", "name" : "23287", "alias" : "AGTPBP1", "SUID" : 1757, "selected" : false }, "position" : { "x" : -433.12460760277804, "y" : -11.49699799866562 }, "selected" : false }, { "data" : { "id" : "1753", "shared_name" : "3188", "Matching_Attribute" : [ "3188" ], "Classification" : "WMexpanded", "name" : "3188", "alias" : "HNRNPH2", "SUID" : 1753, "selected" : false }, "position" : { "x" : 129.87539239722196, "y" : 514.5030020013344 }, "selected" : false }, { "data" : { "id" : "1749", "shared_name" : "728294", "degree_layout" : 40, "Matching_Attribute" : [ "728294" ], "Classification" : "WM", "name" : "728294", "alias" : "D2HGDH", "SUID" : 1749, "selected" : false }, "position" : { "x" : -187.12460760277804, "y" : 276.5030020013344 }, "selected" : false }, { "data" : { "id" : "1745", "shared_name" : "129831", "Matching_Attribute" : [ "129831" ], "Classification" : "WM", "name" : "129831", "alias" : "RBM45", "SUID" : 1745, "selected" : false }, "position" : { "x" : -89.12460760277804, "y" : 569.5030020013344 }, "selected" : false }, { "data" : { "id" : "1741", "shared_name" : "5133", "Matching_Attribute" : [ "5133" ], "Classification" : "WM", "name" : "5133", "alias" : "PDCD1", "SUID" : 1741, "selected" : false }, "position" : { "x" : -15.124607602778042, "y" : -202.49699799866562 }, "selected" : false }, { "data" : { "id" : "1737", "shared_name" : "26060", "Matching_Attribute" : [ "26060" ], "Classification" : "WM", "name" : "26060", "alias" : "APPL1", "SUID" : 1737, "selected" : false }, "position" : { "x" : -188.12460760277804, "y" : -198.49699799866562 }, "selected" : false }, { "data" : { "id" : "1733", "shared_name" : "6305", "Matching_Attribute" : [ "6305" ], "Classification" : "WM", "name" : "6305", "alias" : "SBF1", "SUID" : 1733, "selected" : false }, "position" : { "x" : 26.875392397221958, "y" : -319.4969979986656 }, "selected" : false }, { "data" : { "id" : "1729", "shared_name" : "5111", "degree_layout" : 77, "Matching_Attribute" : [ "5111" ], "Classification" : "WM", "name" : "5111", "alias" : "PCNA", "SUID" : 1729, "selected" : false }, "position" : { "x" : 40.87539239722196, "y" : 292.5030020013344 }, "selected" : false }, { "data" : { "id" : "1725", "shared_name" : "23019", "Matching_Attribute" : [ "23019" ], "Classification" : "WMexpanded", "name" : "23019", "alias" : "CNOT1", "SUID" : 1725, "selected" : false }, "position" : { "x" : -89.12460760277804, "y" : 245.50300200133438 }, "selected" : false }, { "data" : { "id" : "1721", "shared_name" : "51807", "degree_layout" : 96, "Matching_Attribute" : [ "51807" ], "Classification" : "WMexpanded", "name" : "51807", "alias" : "TUBA8", "SUID" : 1721, "selected" : false }, "position" : { "x" : -231.12460760277804, "y" : -117.49699799866562 }, "selected" : false }, { "data" : { "id" : "1717", "shared_name" : "51693", "Matching_Attribute" : [ "51693" ], "Classification" : "WM", "name" : "51693", "alias" : "TRAPPC2L", "SUID" : 1717, "selected" : false }, "position" : { "x" : -150.12460760277804, "y" : -139.49699799866562 }, "selected" : false }, { "data" : { "id" : "1713", "shared_name" : "5631", "Matching_Attribute" : [ "5631" ], "Classification" : "WM", "name" : "5631", "alias" : "PRPS1", "SUID" : 1713, "selected" : false }, "position" : { "x" : -54.12460760277804, "y" : -46.49699799866562 }, "selected" : false }, { "data" : { "id" : "1709", "shared_name" : "2074", "degree_layout" : 120, "Matching_Attribute" : [ "2074" ], "Classification" : "WM", "name" : "2074", "alias" : "ERCC6", "SUID" : 1709, "selected" : false }, "position" : { "x" : 158.87539239722196, "y" : 275.5030020013344 }, "selected" : false }, { "data" : { "id" : "1705", "shared_name" : "134526", "degree_layout" : 151, "Matching_Attribute" : [ "134526" ], "Classification" : "WM", "name" : "134526", "alias" : "ACOT12", "SUID" : 1705, "selected" : false }, "position" : { "x" : -207.12460760277804, "y" : 212.50300200133438 }, "selected" : false }, { "data" : { "id" : "1701", "shared_name" : "5777", "Matching_Attribute" : [ "5777" ], "Classification" : "WM", "name" : "5777", "alias" : "PTPN6", "SUID" : 1701, "selected" : false }, "position" : { "x" : 25.875392397221958, "y" : -128.49699799866562 }, "selected" : false }, { "data" : { "id" : "1697", "shared_name" : "8818", "Matching_Attribute" : [ "8818" ], "Classification" : "WM", "name" : "8818", "alias" : "DPM2", "SUID" : 1697, "selected" : false }, "position" : { "x" : -113.12460760277804, "y" : -232.49699799866562 }, "selected" : false }, { "data" : { "id" : "1693", "shared_name" : "27086", "Matching_Attribute" : [ "27086" ], "Classification" : "WM", "name" : "27086", "alias" : "FOXP1", "SUID" : 1693, "selected" : false }, "position" : { "x" : 120.87539239722196, "y" : 325.5030020013344 }, "selected" : false }, { "data" : { "id" : "1689", "shared_name" : "5524", "Matching_Attribute" : [ "5524" ], "Classification" : "candidate", "name" : "5524", "alias" : "PTPA", "SUID" : 1689, "selected" : false }, "position" : { "x" : 41.87539239722196, "y" : 165.50300200133438 }, "selected" : false }, { "data" : { "id" : "1685", "shared_name" : "9640", "Matching_Attribute" : [ "9640" ], "Classification" : "candidate", "name" : "9640", "alias" : "ZNF592", "SUID" : 1685, "selected" : false }, "position" : { "x" : 474.87539239722196, "y" : 143.50300200133438 }, "selected" : false }, { "data" : { "id" : "1681", "shared_name" : "9990", "Matching_Attribute" : [ "9990" ], "Classification" : "WM", "name" : "9990", "alias" : "SLC12A6", "SUID" : 1681, "selected" : false }, "position" : { "x" : -7.124607602778042, "y" : 103.50300200133438 }, "selected" : false }, { "data" : { "id" : "1677", "shared_name" : "8905", "degree_layout" : 36, "Matching_Attribute" : [ "8905" ], "Classification" : "WMexpanded", "name" : "8905", "alias" : "AP1S2", "SUID" : 1677, "selected" : false }, "position" : { "x" : -146.12460760277804, "y" : -264.4969979986656 }, "selected" : false }, { "data" : { "id" : "1673", "shared_name" : "138050", "Matching_Attribute" : [ "138050" ], "Classification" : "WMexpanded", "name" : "138050", "alias" : "HGSNAT", "SUID" : 1673, "selected" : false }, "position" : { "x" : -328.12460760277804, "y" : -83.49699799866562 }, "selected" : false }, { "data" : { "id" : "1669", "shared_name" : "6390", "degree_layout" : 143, "Matching_Attribute" : [ "6390" ], "Classification" : "WM", "name" : "6390", "alias" : "SDHB", "SUID" : 1669, "selected" : false }, "position" : { "x" : -350.12460760277804, "y" : 40.50300200133438 }, "selected" : false }, { "data" : { "id" : "1665", "shared_name" : "54332", "Matching_Attribute" : [ "54332" ], "Classification" : "WM", "name" : "54332", "alias" : "GDAP1", "SUID" : 1665, "selected" : false }, "position" : { "x" : -229.12460760277804, "y" : -177.49699799866562 }, "selected" : false }, { "data" : { "id" : "1661", "shared_name" : "91942", "degree_layout" : 54, "Matching_Attribute" : [ "91942" ], "Classification" : "WM", "name" : "91942", "alias" : "NDUFAF2", "SUID" : 1661, "selected" : false }, "position" : { "x" : -191.12460760277804, "y" : 220.50300200133438 }, "selected" : false }, { "data" : { "id" : "1657", "shared_name" : "3251", "Matching_Attribute" : [ "3251" ], "Classification" : "WMexpanded", "name" : "3251", "alias" : "HPRT1", "SUID" : 1657, "selected" : false }, "position" : { "x" : -153.12460760277804, "y" : 261.5030020013344 }, "selected" : false }, { "data" : { "id" : "1653", "shared_name" : "85358", "Matching_Attribute" : [ "85358" ], "Classification" : "WMexpanded", "name" : "85358", "alias" : "SHANK3", "SUID" : 1653, "selected" : false }, "position" : { "x" : 474.87539239722196, "y" : -246.49699799866562 }, "selected" : false }, { "data" : { "id" : "1649", "shared_name" : "51294", "Matching_Attribute" : [ "51294" ], "Classification" : "WMexpanded", "name" : "51294", "alias" : "PCDH12", "SUID" : 1649, "selected" : false }, "position" : { "x" : 24.875392397221958, "y" : -652.4969979986656 }, "selected" : false }, { "data" : { "id" : "1645", "shared_name" : "51124", "Matching_Attribute" : [ "51124" ], "Classification" : "WM", "name" : "51124", "alias" : "IER3IP1", "SUID" : 1645, "selected" : false }, "position" : { "x" : -31.124607602778042, "y" : -373.4969979986656 }, "selected" : false }, { "data" : { "id" : "1641", "shared_name" : "221692", "Matching_Attribute" : [ "221692" ], "Classification" : "WM", "name" : "221692", "alias" : "PHACTR1", "SUID" : 1641, "selected" : false }, "position" : { "x" : 959.875392397222, "y" : 299.5030020013344 }, "selected" : false }, { "data" : { "id" : "1637", "shared_name" : "91574", "Matching_Attribute" : [ "91574" ], "Classification" : "WM", "name" : "91574", "alias" : "C12orf65", "SUID" : 1637, "selected" : false }, "position" : { "x" : -449.12460760277804, "y" : 323.5030020013344 }, "selected" : false }, { "data" : { "id" : "1633", "shared_name" : "57731", "Matching_Attribute" : [ "57731" ], "Classification" : "WM", "name" : "57731", "alias" : "SPTBN4", "SUID" : 1633, "selected" : false }, "position" : { "x" : 114.87539239722196, "y" : -178.49699799866562 }, "selected" : false }, { "data" : { "id" : "1629", "shared_name" : "6047", "Matching_Attribute" : [ "6047" ], "Classification" : "WM", "name" : "6047", "alias" : "RNF4", "SUID" : 1629, "selected" : false }, "position" : { "x" : 155.87539239722196, "y" : 259.5030020013344 }, "selected" : false }, { "data" : { "id" : "1625", "shared_name" : "1559", "degree_layout" : 54, "Matching_Attribute" : [ "1559" ], "Classification" : "WMexpanded", "name" : "1559", "alias" : "CYP2C9", "SUID" : 1625, "selected" : false }, "position" : { "x" : 46.87539239722196, "y" : 184.50300200133438 }, "selected" : false }, { "data" : { "id" : "1621", "shared_name" : "1432", "degree_layout" : 159, "Matching_Attribute" : [ "1432" ], "Classification" : "candidate", "name" : "1432", "alias" : "MAPK14", "SUID" : 1621, "selected" : false }, "position" : { "x" : 105.87539239722196, "y" : -40.49699799866562 }, "selected" : false }, { "data" : { "id" : "1617", "shared_name" : "373156", "Matching_Attribute" : [ "373156" ], "Classification" : "candidate", "name" : "373156", "alias" : "GSTK1", "SUID" : 1617, "selected" : false }, "position" : { "x" : -439.12460760277804, "y" : 6.50300200133438 }, "selected" : false }, { "data" : { "id" : "1613", "shared_name" : "2332", "Matching_Attribute" : [ "2332" ], "Classification" : "WM", "name" : "2332", "alias" : "FMR1", "SUID" : 1613, "selected" : false }, "position" : { "x" : 396.87539239722196, "y" : 131.50300200133438 }, "selected" : false }, { "data" : { "id" : "1609", "shared_name" : "3097", "Matching_Attribute" : [ "3097" ], "Classification" : "WMexpanded", "name" : "3097", "alias" : "HIVEP2", "SUID" : 1609, "selected" : false }, "position" : { "x" : 561.875392397222, "y" : 209.50300200133438 }, "selected" : false }, { "data" : { "id" : "1605", "shared_name" : "6648", "Matching_Attribute" : [ "6648" ], "Classification" : "candidate", "name" : "6648", "alias" : "SOD2", "SUID" : 1605, "selected" : false }, "position" : { "x" : -230.12460760277804, "y" : 0.5030020013343801 }, "selected" : false }, { "data" : { "id" : "1601", "shared_name" : "7415", "Matching_Attribute" : [ "7415" ], "Classification" : "WM", "name" : "7415", "alias" : "VCP", "SUID" : 1601, "selected" : false }, "position" : { "x" : -15.124607602778042, "y" : 223.50300200133438 }, "selected" : false }, { "data" : { "id" : "1597", "shared_name" : "3146", "Matching_Attribute" : [ "3146" ], "Classification" : "candidate", "name" : "3146", "alias" : "HMGB1", "SUID" : 1597, "selected" : false }, "position" : { "x" : 273.87539239722196, "y" : 89.50300200133438 }, "selected" : false }, { "data" : { "id" : "1593", "shared_name" : "8733", "Matching_Attribute" : [ "8733" ], "Classification" : "WMexpanded", "name" : "8733", "alias" : "GPAA1", "SUID" : 1593, "selected" : false }, "position" : { "x" : 3.875392397221958, "y" : -420.4969979986656 }, "selected" : false }, { "data" : { "id" : "1589", "shared_name" : "22872", "Matching_Attribute" : [ "22872" ], "Classification" : "WMexpanded", "name" : "22872", "alias" : "SEC31A", "SUID" : 1589, "selected" : false }, "position" : { "x" : -134.12460760277804, "y" : -155.49699799866562 }, "selected" : false }, { "data" : { "id" : "1585", "shared_name" : "80347", "degree_layout" : 117, "Matching_Attribute" : [ "80347" ], "Classification" : "WMexpanded", "name" : "80347", "alias" : "COASY", "SUID" : 1585, "selected" : false }, "position" : { "x" : -81.12460760277804, "y" : 132.50300200133438 }, "selected" : false }, { "data" : { "id" : "1581", "shared_name" : "7407", "degree_layout" : 96, "Matching_Attribute" : [ "7407" ], "Classification" : "WM", "name" : "7407", "alias" : "VARS1", "SUID" : 1581, "selected" : false }, "position" : { "x" : -372.12460760277804, "y" : 56.50300200133438 }, "selected" : false }, { "data" : { "id" : "1577", "shared_name" : "51091", "Matching_Attribute" : [ "51091" ], "Classification" : "WM", "name" : "51091", "alias" : "SEPSECS", "SUID" : 1577, "selected" : false }, "position" : { "x" : -483.12460760277804, "y" : 131.50300200133438 }, "selected" : false }, { "data" : { "id" : "1573", "shared_name" : "4723", "degree_layout" : 202, "Matching_Attribute" : [ "4723" ], "Classification" : "WM", "name" : "4723", "alias" : "NDUFV1", "SUID" : 1573, "selected" : false }, "position" : { "x" : -353.12460760277804, "y" : 224.50300200133438 }, "selected" : false }, { "data" : { "id" : "1569", "shared_name" : "1557", "degree_layout" : 39, "Matching_Attribute" : [ "1557" ], "Classification" : "WMexpanded", "name" : "1557", "alias" : "CYP2C19", "SUID" : 1569, "selected" : false }, "position" : { "x" : 116.87539239722196, "y" : 199.50300200133438 }, "selected" : false }, { "data" : { "id" : "1565", "shared_name" : "64857", "degree_layout" : 7, "Matching_Attribute" : [ "64857" ], "Classification" : "WM", "name" : "64857", "alias" : "PLEKHG2", "SUID" : 1565, "selected" : false }, "position" : { "x" : 305.87539239722196, "y" : -237.49699799866562 }, "selected" : false }, { "data" : { "id" : "1561", "shared_name" : "51117", "degree_layout" : 212, "Matching_Attribute" : [ "51117" ], "Classification" : "WMexpanded", "name" : "51117", "alias" : "COQ4", "SUID" : 1561, "selected" : false }, "position" : { "x" : -174.12460760277804, "y" : 64.50300200133438 }, "selected" : false }, { "data" : { "id" : "1557", "shared_name" : "55773", "Matching_Attribute" : [ "55773" ], "Classification" : "WMexpanded", "name" : "55773", "alias" : "TBC1D23", "SUID" : 1557, "selected" : false }, "position" : { "x" : 406.87539239722196, "y" : 368.5030020013344 }, "selected" : false }, { "data" : { "id" : "1553", "shared_name" : "410", "degree_layout" : 24, "Matching_Attribute" : [ "410" ], "Classification" : "WM", "name" : "410", "alias" : "ARSA", "SUID" : 1553, "selected" : false }, "position" : { "x" : -295.12460760277804, "y" : -103.49699799866562 }, "selected" : false }, { "data" : { "id" : "1549", "shared_name" : "7070", "Matching_Attribute" : [ "7070" ], "Classification" : "WM", "name" : "7070", "alias" : "THY1", "SUID" : 1549, "selected" : false }, "position" : { "x" : 289.87539239722196, "y" : -295.4969979986656 }, "selected" : false }, { "data" : { "id" : "1545", "shared_name" : "5277", "Matching_Attribute" : [ "5277" ], "Classification" : "WM", "name" : "5277", "alias" : "PIGA", "SUID" : 1545, "selected" : false }, "position" : { "x" : -209.12460760277804, "y" : -273.4969979986656 }, "selected" : false }, { "data" : { "id" : "1541", "shared_name" : "958", "degree_layout" : 31, "Matching_Attribute" : [ "958" ], "Classification" : "WMexpanded", "name" : "958", "alias" : "CD40", "SUID" : 1541, "selected" : false }, "position" : { "x" : 258.87539239722196, "y" : -94.49699799866562 }, "selected" : false }, { "data" : { "id" : "1537", "shared_name" : "26278", "Matching_Attribute" : [ "26278" ], "Classification" : "WM", "name" : "26278", "alias" : "SACS", "SUID" : 1537, "selected" : false }, "position" : { "x" : 898.875392397222, "y" : 360.5030020013344 }, "selected" : false }, { "data" : { "id" : "1533", "shared_name" : "84162", "Matching_Attribute" : [ "84162" ], "Classification" : "WMexpanded", "name" : "84162", "alias" : "KIAA1109", "SUID" : 1533, "selected" : false }, "position" : { "x" : 515.875392397222, "y" : 345.5030020013344 }, "selected" : false }, { "data" : { "id" : "1529", "shared_name" : "3458", "Matching_Attribute" : [ "3458" ], "Classification" : "WM", "name" : "3458", "alias" : "IFNG", "SUID" : 1529, "selected" : false }, "position" : { "x" : 294.87539239722196, "y" : -54.49699799866562 }, "selected" : false }, { "data" : { "id" : "1525", "shared_name" : "3295", "degree_layout" : 181, "Matching_Attribute" : [ "3295" ], "Classification" : "WM", "name" : "3295", "alias" : "HSD17B4", "SUID" : 1525, "selected" : false }, "position" : { "x" : -102.12460760277804, "y" : 22.50300200133438 }, "selected" : false }, { "data" : { "id" : "1521", "shared_name" : "84879", "Matching_Attribute" : [ "84879" ], "Classification" : "WM", "name" : "84879", "alias" : "MFSD2A", "SUID" : 1521, "selected" : false }, "position" : { "x" : -86.12460760277804, "y" : -131.49699799866562 }, "selected" : false }, { "data" : { "id" : "1517", "shared_name" : "51776", "Matching_Attribute" : [ "51776" ], "Classification" : "WMexpanded", "name" : "51776", "alias" : "MAP3K20", "SUID" : 1517, "selected" : false }, "position" : { "x" : 382.87539239722196, "y" : 38.50300200133438 }, "selected" : false }, { "data" : { "id" : "1513", "shared_name" : "283489", "Matching_Attribute" : [ "283489" ], "Classification" : "WMexpanded", "name" : "283489", "alias" : "CHAMP1", "SUID" : 1513, "selected" : false }, "position" : { "x" : -453.12460760277804, "y" : -162.49699799866562 }, "selected" : false }, { "data" : { "id" : "1509", "shared_name" : "63976", "Matching_Attribute" : [ "63976" ], "Classification" : "WMexpanded", "name" : "63976", "alias" : "PRDM16", "SUID" : 1509, "selected" : false }, "position" : { "x" : 76.87539239722196, "y" : 96.50300200133438 }, "selected" : false }, { "data" : { "id" : "1505", "shared_name" : "26353", "Matching_Attribute" : [ "26353" ], "Classification" : "WM", "name" : "26353", "alias" : "HSPB8", "SUID" : 1505, "selected" : false }, "position" : { "x" : -46.12460760277804, "y" : -62.49699799866562 }, "selected" : false }, { "data" : { "id" : "1501", "shared_name" : "55870", "Matching_Attribute" : [ "55870" ], "Classification" : "WM", "name" : "55870", "alias" : "ASH1L", "SUID" : 1501, "selected" : false }, "position" : { "x" : -9.124607602778042, "y" : 197.50300200133438 }, "selected" : false }, { "data" : { "id" : "1497", "shared_name" : "3912", "Matching_Attribute" : [ "3912" ], "Classification" : "WM", "name" : "3912", "alias" : "LAMB1", "SUID" : 1497, "selected" : false }, "position" : { "x" : 224.87539239722196, "y" : -214.49699799866562 }, "selected" : false }, { "data" : { "id" : "1493", "shared_name" : "7428", "degree_layout" : 54, "Matching_Attribute" : [ "7428" ], "Classification" : "WMexpanded", "name" : "7428", "alias" : "VHL", "SUID" : 1493, "selected" : false }, "position" : { "x" : -62.12460760277804, "y" : 42.50300200133438 }, "selected" : false }, { "data" : { "id" : "1489", "shared_name" : "1738", "degree_layout" : 261, "Matching_Attribute" : [ "1738" ], "Classification" : "WMexpanded", "name" : "1738", "alias" : "DLD", "SUID" : 1489, "selected" : false }, "position" : { "x" : -284.12460760277804, "y" : 127.50300200133438 }, "selected" : false }, { "data" : { "id" : "1485", "shared_name" : "8050", "degree_layout" : 96, "Matching_Attribute" : [ "8050" ], "Classification" : "WMexpanded", "name" : "8050", "alias" : "PDHX", "SUID" : 1485, "selected" : false }, "position" : { "x" : -129.12460760277804, "y" : 120.50300200133438 }, "selected" : false }, { "data" : { "id" : "1481", "shared_name" : "3763", "Matching_Attribute" : [ "3763" ], "Classification" : "WMexpanded", "name" : "3763", "alias" : "KCNJ6", "SUID" : 1481, "selected" : false }, "position" : { "x" : 305.87539239722196, "y" : -17.49699799866562 }, "selected" : false }, { "data" : { "id" : "1477", "shared_name" : "10352", "degree_layout" : 280, "Matching_Attribute" : [ "10352" ], "Classification" : "WM", "name" : "10352", "alias" : "WARS2", "SUID" : 1477, "selected" : false }, "position" : { "x" : -255.12460760277804, "y" : 192.50300200133438 }, "selected" : false }, { "data" : { "id" : "1473", "shared_name" : "4524", "Matching_Attribute" : [ "4524" ], "Classification" : "WM", "name" : "4524", "alias" : "MTHFR", "SUID" : 1473, "selected" : false }, "position" : { "x" : -236.12460760277804, "y" : -71.49699799866562 }, "selected" : false }, { "data" : { "id" : "1469", "shared_name" : "51660", "Matching_Attribute" : [ "51660" ], "Classification" : "WMexpanded", "name" : "51660", "alias" : "MPC1", "SUID" : 1469, "selected" : false }, "position" : { "x" : -528.124607602778, "y" : 63.50300200133438 }, "selected" : false }, { "data" : { "id" : "1465", "shared_name" : "9839", "Matching_Attribute" : [ "9839" ], "Classification" : "WM", "name" : "9839", "alias" : "ZEB2", "SUID" : 1465, "selected" : false }, "position" : { "x" : 326.87539239722196, "y" : -69.49699799866562 }, "selected" : false }, { "data" : { "id" : "1461", "shared_name" : "5832", "degree_layout" : 87, "Matching_Attribute" : [ "5832" ], "Classification" : "WMexpanded", "name" : "5832", "alias" : "ALDH18A1", "SUID" : 1461, "selected" : false }, "position" : { "x" : -315.12460760277804, "y" : 245.50300200133438 }, "selected" : false }, { "data" : { "id" : "1457", "shared_name" : "122553", "Matching_Attribute" : [ "122553" ], "Classification" : "WMexpanded", "name" : "122553", "alias" : "TRAPPC6B", "SUID" : 1457, "selected" : false }, "position" : { "x" : -145.12460760277804, "y" : -207.49699799866562 }, "selected" : false }, { "data" : { "id" : "1453", "shared_name" : "60684", "Matching_Attribute" : [ "60684" ], "Classification" : "WM", "name" : "60684", "alias" : "TRAPPC11", "SUID" : 1453, "selected" : false }, "position" : { "x" : -172.12460760277804, "y" : -82.49699799866562 }, "selected" : false }, { "data" : { "id" : "1449", "shared_name" : "54805", "Matching_Attribute" : [ "54805" ], "Classification" : "WM", "name" : "54805", "alias" : "CNNM2", "SUID" : 1449, "selected" : false }, "position" : { "x" : 959.875392397222, "y" : 360.5030020013344 }, "selected" : false }, { "data" : { "id" : "1445", "shared_name" : "9179", "Matching_Attribute" : [ "9179" ], "Classification" : "WM", "name" : "9179", "alias" : "AP4M1", "SUID" : 1445, "selected" : false }, "position" : { "x" : -146.12460760277804, "y" : -391.4969979986656 }, "selected" : false }, { "data" : { "id" : "1441", "shared_name" : "1509", "Matching_Attribute" : [ "1509" ], "Classification" : "WMexpanded", "name" : "1509", "alias" : "CTSD", "SUID" : 1441, "selected" : false }, "position" : { "x" : 290.87539239722196, "y" : -107.49699799866562 }, "selected" : false }, { "data" : { "id" : "1437", "shared_name" : "80025", "Matching_Attribute" : [ "80025" ], "Classification" : "WMexpanded", "name" : "80025", "alias" : "PANK2", "SUID" : 1437, "selected" : false }, "position" : { "x" : -268.12460760277804, "y" : 118.50300200133438 }, "selected" : false }, { "data" : { "id" : "1433", "shared_name" : "6515", "Matching_Attribute" : [ "6515" ], "Classification" : "candidate", "name" : "6515", "alias" : "SLC2A3", "SUID" : 1433, "selected" : false }, "position" : { "x" : -198.12460760277804, "y" : -131.49699799866562 }, "selected" : false }, { "data" : { "id" : "1429", "shared_name" : "65125", "Matching_Attribute" : [ "65125" ], "Classification" : "WM", "name" : "65125", "alias" : "WNK1", "SUID" : 1429, "selected" : false }, "position" : { "x" : 98.87539239722196, "y" : -176.49699799866562 }, "selected" : false }, { "data" : { "id" : "1425", "shared_name" : "55644", "Matching_Attribute" : [ "55644" ], "Classification" : "WM", "name" : "55644", "alias" : "OSGEP", "SUID" : 1425, "selected" : false }, "position" : { "x" : -512.124607602778, "y" : 37.50300200133438 }, "selected" : false }, { "data" : { "id" : "1421", "shared_name" : "55775", "Matching_Attribute" : [ "55775" ], "Classification" : "WM", "name" : "55775", "alias" : "TDP1", "SUID" : 1421, "selected" : false }, "position" : { "x" : 93.87539239722196, "y" : 452.5030020013344 }, "selected" : false }, { "data" : { "id" : "1417", "shared_name" : "79848", "Matching_Attribute" : [ "79848" ], "Classification" : "WMexpanded", "name" : "79848", "alias" : "CSPP1", "SUID" : 1417, "selected" : false }, "position" : { "x" : -203.12460760277804, "y" : -800.4969979986656 }, "selected" : false }, { "data" : { "id" : "1413", "shared_name" : "7337", "Matching_Attribute" : [ "7337" ], "Classification" : "WMexpanded", "name" : "7337", "alias" : "UBE3A", "SUID" : 1413, "selected" : false }, "position" : { "x" : 8.875392397221958, "y" : 283.5030020013344 }, "selected" : false }, { "data" : { "id" : "1409", "shared_name" : "2563", "Matching_Attribute" : [ "2563" ], "Classification" : "WMexpanded", "name" : "2563", "alias" : "GABRD", "SUID" : 1409, "selected" : false }, "position" : { "x" : -429.12460760277804, "y" : -702.4969979986656 }, "selected" : false }, { "data" : { "id" : "1405", "shared_name" : "998", "degree_layout" : 101, "Matching_Attribute" : [ "998" ], "Classification" : "WM", "name" : "998", "alias" : "CDC42", "SUID" : 1405, "selected" : false }, "position" : { "x" : 41.87539239722196, "y" : -131.49699799866562 }, "selected" : false }, { "data" : { "id" : "1401", "shared_name" : "1118", "degree_layout" : 13, "Matching_Attribute" : [ "1118" ], "Classification" : "WM", "name" : "1118", "alias" : "CHIT1", "SUID" : 1401, "selected" : false }, "position" : { "x" : -452.12460760277804, "y" : -99.49699799866562 }, "selected" : false }, { "data" : { "id" : "1397", "shared_name" : "25836", "Matching_Attribute" : [ "25836" ], "Classification" : "WMexpanded", "name" : "25836", "alias" : "NIPBL", "SUID" : 1397, "selected" : false }, "position" : { "x" : 423.87539239722196, "y" : 320.5030020013344 }, "selected" : false }, { "data" : { "id" : "1393", "shared_name" : "55904", "Matching_Attribute" : [ "55904" ], "Classification" : "WM", "name" : "55904", "alias" : "KMT2E", "SUID" : 1393, "selected" : false }, "position" : { "x" : -110.12460760277804, "y" : -16.49699799866562 }, "selected" : false }, { "data" : { "id" : "1389", "shared_name" : "92609", "Matching_Attribute" : [ "92609" ], "Classification" : "WM", "name" : "92609", "alias" : "TIMM50", "SUID" : 1389, "selected" : false }, "position" : { "x" : -462.12460760277804, "y" : 210.50300200133438 }, "selected" : false }, { "data" : { "id" : "1385", "shared_name" : "6520", "degree_layout" : 157, "Matching_Attribute" : [ "6520" ], "Classification" : "WM", "name" : "6520", "alias" : "SLC3A2", "SUID" : 1385, "selected" : false }, "position" : { "x" : -140.12460760277804, "y" : -55.49699799866562 }, "selected" : false }, { "data" : { "id" : "1381", "shared_name" : "2186", "Matching_Attribute" : [ "2186" ], "Classification" : "WM", "name" : "2186", "alias" : "BPTF", "SUID" : 1381, "selected" : false }, "position" : { "x" : 959.875392397222, "y" : 421.5030020013344 }, "selected" : false }, { "data" : { "id" : "1377", "shared_name" : "81570", "Matching_Attribute" : [ "81570" ], "Classification" : "WMexpanded", "name" : "81570", "alias" : "CLPB", "SUID" : 1377, "selected" : false }, "position" : { "x" : 14.875392397221958, "y" : 166.50300200133438 }, "selected" : false }, { "data" : { "id" : "1373", "shared_name" : "7879", "Matching_Attribute" : [ "7879" ], "Classification" : "WM", "name" : "7879", "alias" : "RAB7A", "SUID" : 1373, "selected" : false }, "position" : { "x" : 401.87539239722196, "y" : -6.49699799866562 }, "selected" : false }, { "data" : { "id" : "1369", "shared_name" : "27247", "degree_layout" : 103, "Matching_Attribute" : [ "27247" ], "Classification" : "WM", "name" : "27247", "alias" : "NFU1", "SUID" : 1369, "selected" : false }, "position" : { "x" : -464.12460760277804, "y" : 167.50300200133438 }, "selected" : false }, { "data" : { "id" : "1365", "shared_name" : "125988", "Matching_Attribute" : [ "125988" ], "Classification" : "WMexpanded", "name" : "125988", "alias" : "MICOS13", "SUID" : 1365, "selected" : false }, "position" : { "x" : -508.12460760277804, "y" : 95.50300200133438 }, "selected" : false }, { "data" : { "id" : "1361", "shared_name" : "55262", "Matching_Attribute" : [ "55262" ], "Classification" : "WM", "name" : "55262", "alias" : "MAP11", "SUID" : 1361, "selected" : false }, "position" : { "x" : -439.12460760277804, "y" : -139.49699799866562 }, "selected" : false }, { "data" : { "id" : "1357", "shared_name" : "58498", "Matching_Attribute" : [ "58498" ], "Classification" : "WM", "name" : "58498", "alias" : "MYL7", "SUID" : 1357, "selected" : false }, "position" : { "x" : 37.87539239722196, "y" : -285.4969979986656 }, "selected" : false }, { "data" : { "id" : "1353", "shared_name" : "51816", "Matching_Attribute" : [ "51816" ], "Classification" : "WMexpanded", "name" : "51816", "alias" : "ADA2", "SUID" : 1353, "selected" : false }, "position" : { "x" : 390.87539239722196, "y" : -578.4969979986656 }, "selected" : false }, { "data" : { "id" : "1349", "shared_name" : "6606", "Matching_Attribute" : [ "6606" ], "Classification" : "WM", "name" : "6606", "alias" : "SMN1", "SUID" : 1349, "selected" : false }, "position" : { "x" : 348.87539239722196, "y" : 150.50300200133438 }, "selected" : false }, { "data" : { "id" : "1345", "shared_name" : "6607", "Matching_Attribute" : [ "6607" ], "Classification" : "WM", "name" : "6607", "alias" : "SMN2", "SUID" : 1345, "selected" : false }, "position" : { "x" : 331.87539239722196, "y" : 279.5030020013344 }, "selected" : false }, { "data" : { "id" : "1341", "shared_name" : "5009", "Matching_Attribute" : [ "5009" ], "Classification" : "WMexpanded", "name" : "5009", "alias" : "OTC", "SUID" : 1341, "selected" : false }, "position" : { "x" : -432.12460760277804, "y" : 122.50300200133438 }, "selected" : false }, { "data" : { "id" : "1337", "shared_name" : "55863", "degree_layout" : 61, "Matching_Attribute" : [ "55863" ], "Classification" : "WM", "name" : "55863", "alias" : "TMEM126B", "SUID" : 1337, "selected" : false }, "position" : { "x" : -170.12460760277804, "y" : 172.50300200133438 }, "selected" : false }, { "data" : { "id" : "1333", "shared_name" : "11076", "Matching_Attribute" : [ "11076" ], "Classification" : "WM", "name" : "11076", "alias" : "TPPP", "SUID" : 1333, "selected" : false }, "position" : { "x" : 898.875392397222, "y" : 421.5030020013344 }, "selected" : false }, { "data" : { "id" : "1329", "shared_name" : "26277", "Matching_Attribute" : [ "26277" ], "Classification" : "WMexpanded", "name" : "26277", "alias" : "TINF2", "SUID" : 1329, "selected" : false }, "position" : { "x" : 402.87539239722196, "y" : 164.50300200133438 }, "selected" : false }, { "data" : { "id" : "1325", "shared_name" : "7284", "degree_layout" : 137, "Matching_Attribute" : [ "7284" ], "Classification" : "WM", "name" : "7284", "alias" : "TUFM", "SUID" : 1325, "selected" : false }, "position" : { "x" : -273.12460760277804, "y" : 360.5030020013344 }, "selected" : false }, { "data" : { "id" : "1321", "shared_name" : "1778", "Matching_Attribute" : [ "1778" ], "Classification" : "WMexpanded", "name" : "1778", "alias" : "DYNC1H1", "SUID" : 1321, "selected" : false }, "position" : { "x" : 299.87539239722196, "y" : 28.50300200133438 }, "selected" : false }, { "data" : { "id" : "1317", "shared_name" : "57545", "Matching_Attribute" : [ "57545" ], "Classification" : "WMexpanded", "name" : "57545", "alias" : "CC2D2A", "SUID" : 1317, "selected" : false }, "position" : { "x" : 462.87539239722196, "y" : -66.49699799866562 }, "selected" : false }, { "data" : { "id" : "1313", "shared_name" : "1727", "degree_layout" : 33, "Matching_Attribute" : [ "1727" ], "Classification" : "WM", "name" : "1727", "alias" : "CYB5R3", "SUID" : 1313, "selected" : false }, "position" : { "x" : -230.12460760277804, "y" : 16.50300200133438 }, "selected" : false }, { "data" : { "id" : "1309", "shared_name" : "9698", "Matching_Attribute" : [ "9698" ], "Classification" : "WMexpanded", "name" : "9698", "alias" : "PUM1", "SUID" : 1309, "selected" : false }, "position" : { "x" : -334.12460760277804, "y" : -295.4969979986656 }, "selected" : false }, { "data" : { "id" : "1305", "shared_name" : "25", "degree_layout" : 56, "Matching_Attribute" : [ "25" ], "Classification" : "WM", "name" : "25", "alias" : "ABL1", "SUID" : 1305, "selected" : false }, "position" : { "x" : -38.12460760277804, "y" : -30.49699799866562 }, "selected" : false }, { "data" : { "id" : "1301", "shared_name" : "5095", "Matching_Attribute" : [ "5095" ], "Classification" : "WMexpanded", "name" : "5095", "alias" : "PCCA", "SUID" : 1301, "selected" : false }, "position" : { "x" : -167.12460760277804, "y" : 92.50300200133438 }, "selected" : false }, { "data" : { "id" : "1297", "shared_name" : "6678", "Matching_Attribute" : [ "6678" ], "Classification" : "WMexpanded", "name" : "6678", "alias" : "SPARC", "SUID" : 1297, "selected" : false }, "position" : { "x" : 306.87539239722196, "y" : -107.49699799866562 }, "selected" : false }, { "data" : { "id" : "1293", "shared_name" : "2908", "degree_layout" : 49, "Matching_Attribute" : [ "2908" ], "Classification" : "WMexpanded", "name" : "2908", "alias" : "NR3C1", "SUID" : 1293, "selected" : false }, "position" : { "x" : 232.87539239722196, "y" : 34.50300200133438 }, "selected" : false }, { "data" : { "id" : "1289", "shared_name" : "6392", "degree_layout" : 55, "Matching_Attribute" : [ "6392" ], "Classification" : "WM", "name" : "6392", "alias" : "SDHD", "SUID" : 1289, "selected" : false }, "position" : { "x" : -186.12460760277804, "y" : 172.50300200133438 }, "selected" : false }, { "data" : { "id" : "1285", "shared_name" : "7249", "Matching_Attribute" : [ "7249" ], "Classification" : "WM", "name" : "7249", "alias" : "TSC2", "SUID" : 1285, "selected" : false }, "position" : { "x" : 217.87539239722196, "y" : 86.50300200133438 }, "selected" : false }, { "data" : { "id" : "1281", "shared_name" : "171023", "Matching_Attribute" : [ "171023" ], "Classification" : "WM", "name" : "171023", "alias" : "ASXL1", "SUID" : 1281, "selected" : false }, "position" : { "x" : -119.12460760277804, "y" : 72.50300200133438 }, "selected" : false }, { "data" : { "id" : "1277", "shared_name" : "79143", "Matching_Attribute" : [ "79143" ], "Classification" : "WMexpanded", "name" : "79143", "alias" : "MBOAT7", "SUID" : 1277, "selected" : false }, "position" : { "x" : -267.12460760277804, "y" : -149.49699799866562 }, "selected" : false }, { "data" : { "id" : "1273", "shared_name" : "10059", "Matching_Attribute" : [ "10059" ], "Classification" : "WMexpanded", "name" : "10059", "alias" : "DNM1L", "SUID" : 1273, "selected" : false }, "position" : { "x" : 154.87539239722196, "y" : -444.4969979986656 }, "selected" : false }, { "data" : { "id" : "1269", "shared_name" : "9276", "Matching_Attribute" : [ "9276" ], "Classification" : "WM", "name" : "9276", "alias" : "COPB2", "SUID" : 1269, "selected" : false }, "position" : { "x" : 88.87539239722196, "y" : 47.50300200133438 }, "selected" : false }, { "data" : { "id" : "1265", "shared_name" : "79594", "Matching_Attribute" : [ "79594" ], "Classification" : "WM", "name" : "79594", "alias" : "MUL1", "SUID" : 1265, "selected" : false }, "position" : { "x" : 236.87539239722196, "y" : -154.49699799866562 }, "selected" : false }, { "data" : { "id" : "1261", "shared_name" : "57192", "degree_layout" : 89, "Matching_Attribute" : [ "57192" ], "Classification" : "WM", "name" : "57192", "alias" : "MCOLN1", "SUID" : 1261, "selected" : false }, "position" : { "x" : -131.12460760277804, "y" : -228.49699799866562 }, "selected" : false }, { "data" : { "id" : "1257", "shared_name" : "3098", "Matching_Attribute" : [ "3098" ], "Classification" : "WM", "name" : "3098", "alias" : "HK1", "SUID" : 1257, "selected" : false }, "position" : { "x" : -142.12460760277804, "y" : -15.49699799866562 }, "selected" : false }, { "data" : { "id" : "1253", "shared_name" : "2876", "Matching_Attribute" : [ "2876" ], "Classification" : "WMexpanded", "name" : "2876", "alias" : "GPX1", "SUID" : 1253, "selected" : false }, "position" : { "x" : -39.12460760277804, "y" : 78.50300200133438 }, "selected" : false }, { "data" : { "id" : "1249", "shared_name" : "2705", "degree_layout" : 8, "Matching_Attribute" : [ "2705" ], "Classification" : "WM", "name" : "2705", "alias" : "GJB1", "SUID" : 1249, "selected" : false }, "position" : { "x" : 133.87539239722196, "y" : -266.4969979986656 }, "selected" : false }, { "data" : { "id" : "1245", "shared_name" : "4137", "degree_layout" : 22, "Matching_Attribute" : [ "4137" ], "Classification" : "WM", "name" : "4137", "alias" : "MAPT", "SUID" : 1245, "selected" : false }, "position" : { "x" : 324.87539239722196, "y" : -36.49699799866562 }, "selected" : false }, { "data" : { "id" : "1241", "shared_name" : "808", "degree_layout" : 117, "Matching_Attribute" : [ "808" ], "Classification" : "WM", "name" : "808", "alias" : "CALM3", "SUID" : 1241, "selected" : false }, "position" : { "x" : 57.87539239722196, "y" : -82.49699799866562 }, "selected" : false }, { "data" : { "id" : "1237", "shared_name" : "3329", "degree_layout" : 27, "Matching_Attribute" : [ "3329" ], "Classification" : "WM", "name" : "3329", "alias" : "HSPD1", "SUID" : 1237, "selected" : false }, "position" : { "x" : -158.12460760277804, "y" : 76.50300200133438 }, "selected" : false }, { "data" : { "id" : "1233", "shared_name" : "355", "degree_layout" : 92, "Matching_Attribute" : [ "355" ], "Classification" : "WM", "name" : "355", "alias" : "FAS", "SUID" : 1233, "selected" : false }, "position" : { "x" : 185.87539239722196, "y" : -42.49699799866562 }, "selected" : false }, { "data" : { "id" : "1229", "shared_name" : "238", "Matching_Attribute" : [ "238" ], "Classification" : "WM", "name" : "238", "alias" : "ALK", "SUID" : 1229, "selected" : false }, "position" : { "x" : 102.87539239722196, "y" : -256.4969979986656 }, "selected" : false }, { "data" : { "id" : "1225", "shared_name" : "375", "degree_layout" : 42, "Matching_Attribute" : [ "375" ], "Classification" : "WM", "name" : "375", "alias" : "ARF1", "SUID" : 1225, "selected" : false }, "position" : { "x" : -38.12460760277804, "y" : -217.49699799866562 }, "selected" : false }, { "data" : { "id" : "1221", "shared_name" : "1392", "Matching_Attribute" : [ "1392" ], "Classification" : "candidate", "name" : "1392", "alias" : "CRH", "SUID" : 1221, "selected" : false }, "position" : { "x" : -84.12460760277804, "y" : -433.4969979986656 }, "selected" : false }, { "data" : { "id" : "1217", "shared_name" : "3308", "Matching_Attribute" : [ "3308" ], "Classification" : "candidate", "name" : "3308", "alias" : "HSPA4", "SUID" : 1217, "selected" : false }, "position" : { "x" : 92.87539239722196, "y" : 96.50300200133438 }, "selected" : false }, { "data" : { "id" : "1213", "shared_name" : "2969", "Matching_Attribute" : [ "2969" ], "Classification" : "candidate", "name" : "2969", "alias" : "GTF2I", "SUID" : 1213, "selected" : false }, "position" : { "x" : 338.87539239722196, "y" : -123.49699799866562 }, "selected" : false }, { "data" : { "id" : "1209", "shared_name" : "51763", "Matching_Attribute" : [ "51763" ], "Classification" : "WMexpanded", "name" : "51763", "alias" : "INPP5K", "SUID" : 1209, "selected" : false }, "position" : { "x" : 11.875392397221958, "y" : -274.4969979986656 }, "selected" : false }, { "data" : { "id" : "1205", "shared_name" : "23230", "Matching_Attribute" : [ "23230" ], "Classification" : "WMexpanded", "name" : "23230", "alias" : "VPS13A", "SUID" : 1205, "selected" : false }, "position" : { "x" : -5.124607602778042, "y" : 334.5030020013344 }, "selected" : false }, { "data" : { "id" : "1201", "shared_name" : "805", "degree_layout" : 123, "Matching_Attribute" : [ "805" ], "Classification" : "WM", "name" : "805", "alias" : "CALM2", "SUID" : 1201, "selected" : false }, "position" : { "x" : -68.12460760277804, "y" : -78.49699799866562 }, "selected" : false }, { "data" : { "id" : "1197", "shared_name" : "79587", "degree_layout" : 293, "Matching_Attribute" : [ "79587" ], "Classification" : "WM", "name" : "79587", "alias" : "CARS2", "SUID" : 1197, "selected" : false }, "position" : { "x" : -283.12460760277804, "y" : 254.50300200133438 }, "selected" : false }, { "data" : { "id" : "1193", "shared_name" : "5660", "degree_layout" : 34, "Matching_Attribute" : [ "5660" ], "Classification" : "WM", "name" : "5660", "alias" : "PSAP", "SUID" : 1193, "selected" : false }, "position" : { "x" : -231.12460760277804, "y" : -313.4969979986656 }, "selected" : false }, { "data" : { "id" : "1189", "shared_name" : "7915", "degree_layout" : 125, "Matching_Attribute" : [ "7915" ], "Classification" : "WMexpanded", "name" : "7915", "alias" : "ALDH5A1", "SUID" : 1189, "selected" : false }, "position" : { "x" : -193.12460760277804, "y" : 156.50300200133438 }, "selected" : false }, { "data" : { "id" : "1185", "shared_name" : "51324", "degree_layout" : 2, "Matching_Attribute" : [ "51324" ], "Classification" : "WM", "name" : "51324", "alias" : "SPG21", "SUID" : 1185, "selected" : false }, "position" : { "x" : -29.124607602778042, "y" : 204.50300200133438 }, "selected" : false }, { "data" : { "id" : "1181", "shared_name" : "51684", "Matching_Attribute" : [ "51684" ], "Classification" : "WM", "name" : "51684", "alias" : "SUFU", "SUID" : 1181, "selected" : false }, "position" : { "x" : 140.87539239722196, "y" : 133.50300200133438 }, "selected" : false }, { "data" : { "id" : "1177", "shared_name" : "9928", "Matching_Attribute" : [ "9928" ], "Classification" : "WMexpanded", "name" : "9928", "alias" : "KIF14", "SUID" : 1177, "selected" : false }, "position" : { "x" : 385.87539239722196, "y" : 98.50300200133438 }, "selected" : false }, { "data" : { "id" : "1173", "shared_name" : "11113", "Matching_Attribute" : [ "11113" ], "Classification" : "WMexpanded", "name" : "11113", "alias" : "CIT", "SUID" : 1173, "selected" : false }, "position" : { "x" : 400.87539239722196, "y" : -176.49699799866562 }, "selected" : false }, { "data" : { "id" : "1169", "shared_name" : "84919", "Matching_Attribute" : [ "84919" ], "Classification" : "WM", "name" : "84919", "alias" : "PPP1R15B", "SUID" : 1169, "selected" : false }, "position" : { "x" : 131.87539239722196, "y" : 344.5030020013344 }, "selected" : false }, { "data" : { "id" : "1165", "shared_name" : "22868", "Matching_Attribute" : [ "22868" ], "Classification" : "WM", "name" : "22868", "alias" : "FASTKD2", "SUID" : 1165, "selected" : false }, "position" : { "x" : -111.12460760277804, "y" : 404.5030020013344 }, "selected" : false }, { "data" : { "id" : "1161", "shared_name" : "2561", "Matching_Attribute" : [ "2561" ], "Classification" : "WM", "name" : "2561", "alias" : "GABRB2", "SUID" : 1161, "selected" : false }, "position" : { "x" : 20.875392397221958, "y" : -226.49699799866562 }, "selected" : false }, { "data" : { "id" : "1157", "shared_name" : "6580", "degree_layout" : 34, "Matching_Attribute" : [ "6580" ], "Classification" : "WM", "name" : "6580", "alias" : "SLC22A1", "SUID" : 1157, "selected" : false }, "position" : { "x" : -102.12460760277804, "y" : -169.49699799866562 }, "selected" : false }, { "data" : { "id" : "1153", "shared_name" : "116150", "Matching_Attribute" : [ "116150" ], "Classification" : "WMexpanded", "name" : "116150", "alias" : "NUS1", "SUID" : 1153, "selected" : false }, "position" : { "x" : -376.12460760277804, "y" : -74.49699799866562 }, "selected" : false }, { "data" : { "id" : "1149", "shared_name" : "2558", "Matching_Attribute" : [ "2558" ], "Classification" : "WM", "name" : "2558", "alias" : "GABRA5", "SUID" : 1149, "selected" : false }, "position" : { "x" : -166.12460760277804, "y" : -142.49699799866562 }, "selected" : false }, { "data" : { "id" : "1145", "shared_name" : "1281", "Matching_Attribute" : [ "1281" ], "Classification" : "WM", "name" : "1281", "alias" : "COL3A1", "SUID" : 1145, "selected" : false }, "position" : { "x" : 348.87539239722196, "y" : -293.4969979986656 }, "selected" : false }, { "data" : { "id" : "1141", "shared_name" : "23064", "Matching_Attribute" : [ "23064" ], "Classification" : "WM", "name" : "23064", "alias" : "SETX", "SUID" : 1141, "selected" : false }, "position" : { "x" : -352.12460760277804, "y" : -75.49699799866562 }, "selected" : false }, { "data" : { "id" : "1137", "shared_name" : "80207", "Matching_Attribute" : [ "80207" ], "Classification" : "WMexpanded", "name" : "80207", "alias" : "OPA3", "SUID" : 1137, "selected" : false }, "position" : { "x" : 366.87539239722196, "y" : 112.50300200133438 }, "selected" : false }, { "data" : { "id" : "1133", "shared_name" : "3418", "degree_layout" : 191, "Matching_Attribute" : [ "3418" ], "Classification" : "WM", "name" : "3418", "alias" : "IDH2", "SUID" : 1133, "selected" : false }, "position" : { "x" : -103.12460760277804, "y" : 75.50300200133438 }, "selected" : false }, { "data" : { "id" : "1129", "shared_name" : "57505", "degree_layout" : 277, "Matching_Attribute" : [ "57505" ], "Classification" : "WM", "name" : "57505", "alias" : "AARS2", "SUID" : 1129, "selected" : false }, "position" : { "x" : -191.12460760277804, "y" : 204.50300200133438 }, "selected" : false }, { "data" : { "id" : "1125", "shared_name" : "5551", "degree_layout" : 31, "Matching_Attribute" : [ "5551" ], "Classification" : "WM", "name" : "5551", "alias" : "PRF1", "SUID" : 1125, "selected" : false }, "position" : { "x" : 386.87539239722196, "y" : 11.50300200133438 }, "selected" : false }, { "data" : { "id" : "1121", "shared_name" : "284439", "Matching_Attribute" : [ "284439" ], "Classification" : "WMexpanded", "name" : "284439", "alias" : "SLC25A42", "SUID" : 1121, "selected" : false }, "position" : { "x" : -524.124607602778, "y" : -128.49699799866562 }, "selected" : false }, { "data" : { "id" : "1117", "shared_name" : "9927", "Matching_Attribute" : [ "9927" ], "Classification" : "WM", "name" : "9927", "alias" : "MFN2", "SUID" : 1117, "selected" : false }, "position" : { "x" : 469.87539239722196, "y" : -3.49699799866562 }, "selected" : false }, { "data" : { "id" : "1113", "shared_name" : "10134", "degree_layout" : 11, "Matching_Attribute" : [ "10134" ], "Classification" : "WM", "name" : "10134", "alias" : "BCAP31", "SUID" : 1113, "selected" : false }, "position" : { "x" : -11.124607602778042, "y" : -334.4969979986656 }, "selected" : false }, { "data" : { "id" : "1109", "shared_name" : "3440", "Matching_Attribute" : [ "3440" ], "Classification" : "candidate", "name" : "3440", "alias" : "IFNA2", "SUID" : 1109, "selected" : false }, "position" : { "x" : 73.87539239722196, "y" : -210.49699799866562 }, "selected" : false }, { "data" : { "id" : "1105", "shared_name" : "493753", "degree_layout" : 179, "Matching_Attribute" : [ "493753" ], "Classification" : "WMexpanded", "name" : "493753", "alias" : "COA5", "SUID" : 1105, "selected" : false }, "position" : { "x" : -299.12460760277804, "y" : 251.50300200133438 }, "selected" : false }, { "data" : { "id" : "1101", "shared_name" : "1807", "degree_layout" : 25, "Matching_Attribute" : [ "1807" ], "Classification" : "WM", "name" : "1807", "alias" : "DPYS", "SUID" : 1101, "selected" : false }, "position" : { "x" : -407.12460760277804, "y" : -56.49699799866562 }, "selected" : false }, { "data" : { "id" : "1097", "shared_name" : "79718", "Matching_Attribute" : [ "79718" ], "Classification" : "WMexpanded", "name" : "79718", "alias" : "TBL1XR1", "SUID" : 1097, "selected" : false }, "position" : { "x" : -38.12460760277804, "y" : -130.49699799866562 }, "selected" : false }, { "data" : { "id" : "1093", "shared_name" : "5274", "Matching_Attribute" : [ "5274" ], "Classification" : "WMexpanded", "name" : "5274", "alias" : "SERPINI1", "SUID" : 1093, "selected" : false }, "position" : { "x" : 253.87539239722196, "y" : -299.4969979986656 }, "selected" : false }, { "data" : { "id" : "1089", "shared_name" : "5917", "degree_layout" : 126, "Matching_Attribute" : [ "5917" ], "Classification" : "WM", "name" : "5917", "alias" : "RARS1", "SUID" : 1089, "selected" : false }, "position" : { "x" : -206.12460760277804, "y" : 59.50300200133438 }, "selected" : false }, { "data" : { "id" : "1085", "shared_name" : "9377", "degree_layout" : 92, "Matching_Attribute" : [ "9377" ], "Classification" : "WMexpanded", "name" : "9377", "alias" : "COX5A", "SUID" : 1085, "selected" : false }, "position" : { "x" : -421.12460760277804, "y" : 210.50300200133438 }, "selected" : false }, { "data" : { "id" : "1081", "shared_name" : "80169", "Matching_Attribute" : [ "80169" ], "Classification" : "WM", "name" : "80169", "alias" : "CTC1", "SUID" : 1081, "selected" : false }, "position" : { "x" : 447.87539239722196, "y" : 401.5030020013344 }, "selected" : false }, { "data" : { "id" : "1077", "shared_name" : "79583", "Matching_Attribute" : [ "79583" ], "Classification" : "WMexpanded", "name" : "79583", "alias" : "TMEM231", "SUID" : 1077, "selected" : false }, "position" : { "x" : 751.875392397222, "y" : -208.49699799866562 }, "selected" : false }, { "data" : { "id" : "1073", "shared_name" : "27010", "Matching_Attribute" : [ "27010" ], "Classification" : "WM", "name" : "27010", "alias" : "TPK1", "SUID" : 1073, "selected" : false }, "position" : { "x" : -335.12460760277804, "y" : -57.49699799866562 }, "selected" : false }, { "data" : { "id" : "1069", "shared_name" : "5879", "degree_layout" : 159, "Matching_Attribute" : [ "5879" ], "Classification" : "WM", "name" : "5879", "alias" : "RAC1", "SUID" : 1069, "selected" : false }, "position" : { "x" : 137.87539239722196, "y" : -34.49699799866562 }, "selected" : false }, { "data" : { "id" : "1065", "shared_name" : "55739", "Matching_Attribute" : [ "55739" ], "Classification" : "WM", "name" : "55739", "alias" : "NAXD", "SUID" : 1065, "selected" : false }, "position" : { "x" : -333.12460760277804, "y" : -115.49699799866562 }, "selected" : false }, { "data" : { "id" : "1061", "shared_name" : "1180", "Matching_Attribute" : [ "1180" ], "Classification" : "WM", "name" : "1180", "alias" : "CLCN1", "SUID" : 1061, "selected" : false }, "position" : { "x" : -78.12460760277804, "y" : -156.49699799866562 }, "selected" : false }, { "data" : { "id" : "1057", "shared_name" : "7862", "Matching_Attribute" : [ "7862" ], "Classification" : "WM", "name" : "7862", "alias" : "BRPF1", "SUID" : 1057, "selected" : false }, "position" : { "x" : 186.87539239722196, "y" : 276.5030020013344 }, "selected" : false }, { "data" : { "id" : "1053", "shared_name" : "81689", "degree_layout" : 109, "Matching_Attribute" : [ "81689" ], "Classification" : "WM", "name" : "81689", "alias" : "ISCA1", "SUID" : 1053, "selected" : false }, "position" : { "x" : -246.12460760277804, "y" : 81.50300200133438 }, "selected" : false }, { "data" : { "id" : "1049", "shared_name" : "5422", "Matching_Attribute" : [ "5422" ], "Classification" : "WMexpanded", "name" : "5422", "alias" : "POLA1", "SUID" : 1049, "selected" : false }, "position" : { "x" : -72.12460760277804, "y" : 375.5030020013344 }, "selected" : false }, { "data" : { "id" : "1045", "shared_name" : "1650", "Matching_Attribute" : [ "1650" ], "Classification" : "WM", "name" : "1650", "alias" : "DDOST", "SUID" : 1045, "selected" : false }, "position" : { "x" : -308.12460760277804, "y" : -473.4969979986656 }, "selected" : false }, { "data" : { "id" : "1041", "shared_name" : "3766", "Matching_Attribute" : [ "3766" ], "Classification" : "WM", "name" : "3766", "alias" : "KCNJ10", "SUID" : 1041, "selected" : false }, "position" : { "x" : 291.87539239722196, "y" : 238.50300200133438 }, "selected" : false }, { "data" : { "id" : "1037", "shared_name" : "387787", "Matching_Attribute" : [ "387787" ], "Classification" : "WM", "name" : "387787", "alias" : "LIPT2", "SUID" : 1037, "selected" : false }, "position" : { "x" : -389.12460760277804, "y" : 197.50300200133438 }, "selected" : false }, { "data" : { "id" : "1033", "shared_name" : "9215", "Matching_Attribute" : [ "9215" ], "Classification" : "WM", "name" : "9215", "alias" : "LARGE1", "SUID" : 1033, "selected" : false }, "position" : { "x" : -91.12460760277804, "y" : -417.4969979986656 }, "selected" : false }, { "data" : { "id" : "1029", "shared_name" : "5080", "Matching_Attribute" : [ "5080" ], "Classification" : "WMexpanded", "name" : "5080", "alias" : "PAX6", "SUID" : 1029, "selected" : false }, "position" : { "x" : 203.87539239722196, "y" : 174.50300200133438 }, "selected" : false }, { "data" : { "id" : "1025", "shared_name" : "80055", "Matching_Attribute" : [ "80055" ], "Classification" : "WM", "name" : "80055", "alias" : "PGAP1", "SUID" : 1025, "selected" : false }, "position" : { "x" : 21.875392397221958, "y" : -419.4969979986656 }, "selected" : false }, { "data" : { "id" : "1021", "shared_name" : "5096", "Matching_Attribute" : [ "5096" ], "Classification" : "WMexpanded", "name" : "5096", "alias" : "PCCB", "SUID" : 1021, "selected" : false }, "position" : { "x" : -378.12460760277804, "y" : 213.50300200133438 }, "selected" : false }, { "data" : { "id" : "1017", "shared_name" : "11212", "Matching_Attribute" : [ "11212" ], "Classification" : "WMexpanded", "name" : "11212", "alias" : "PLPBP", "SUID" : 1017, "selected" : false }, "position" : { "x" : -386.12460760277804, "y" : 91.50300200133438 }, "selected" : false }, { "data" : { "id" : "1013", "shared_name" : "6898", "degree_layout" : 148, "Matching_Attribute" : [ "6898" ], "Classification" : "WM", "name" : "6898", "alias" : "TAT", "SUID" : 1013, "selected" : false }, "position" : { "x" : -257.12460760277804, "y" : 143.50300200133438 }, "selected" : false }, { "data" : { "id" : "1009", "shared_name" : "8086", "Matching_Attribute" : [ "8086" ], "Classification" : "WMexpanded", "name" : "8086", "alias" : "AAAS", "SUID" : 1009, "selected" : false }, "position" : { "x" : 294.87539239722196, "y" : 141.50300200133438 }, "selected" : false }, { "data" : { "id" : "1005", "shared_name" : "1728", "degree_layout" : 17, "Matching_Attribute" : [ "1728" ], "Classification" : "candidate", "name" : "1728", "alias" : "NQO1", "SUID" : 1005, "selected" : false }, "position" : { "x" : -33.12460760277804, "y" : 145.50300200133438 }, "selected" : false }, { "data" : { "id" : "1001", "shared_name" : "56891", "Matching_Attribute" : [ "56891" ], "Classification" : "WM", "name" : "56891", "alias" : "LGALS14", "SUID" : 1001, "selected" : false }, "position" : { "x" : 347.87539239722196, "y" : 90.50300200133438 }, "selected" : false }, { "data" : { "id" : "997", "shared_name" : "7431", "Matching_Attribute" : [ "7431" ], "Classification" : "WMexpanded", "name" : "7431", "alias" : "VIM", "SUID" : 997, "selected" : false }, "position" : { "x" : 200.87539239722196, "y" : 19.50300200133438 }, "selected" : false }, { "data" : { "id" : "993", "shared_name" : "801", "degree_layout" : 279, "Matching_Attribute" : [ "801" ], "Classification" : "WM", "name" : "801", "alias" : "CALM1", "SUID" : 993, "selected" : false }, "position" : { "x" : 41.87539239722196, "y" : 11.50300200133438 }, "selected" : false }, { "data" : { "id" : "989", "shared_name" : "5297", "Matching_Attribute" : [ "5297" ], "Classification" : "WMexpanded", "name" : "5297", "alias" : "PI4KA", "SUID" : 989, "selected" : false }, "position" : { "x" : -109.12460760277804, "y" : -330.4969979986656 }, "selected" : false }, { "data" : { "id" : "985", "shared_name" : "9091", "degree_layout" : 31, "Matching_Attribute" : [ "9091" ], "Classification" : "WM", "name" : "9091", "alias" : "PIGQ", "SUID" : 985, "selected" : false }, "position" : { "x" : -173.12460760277804, "y" : -295.4969979986656 }, "selected" : false }, { "data" : { "id" : "981", "shared_name" : "7157", "degree_layout" : 123, "Matching_Attribute" : [ "7157" ], "Classification" : "WM", "name" : "7157", "alias" : "TP53", "SUID" : 981, "selected" : false }, "position" : { "x" : 94.87539239722196, "y" : 166.50300200133438 }, "selected" : false }, { "data" : { "id" : "977", "shared_name" : "79944", "degree_layout" : 83, "Matching_Attribute" : [ "79944" ], "Classification" : "WM", "name" : "79944", "alias" : "L2HGDH", "SUID" : 977, "selected" : false }, "position" : { "x" : -293.12460760277804, "y" : 218.50300200133438 }, "selected" : false }, { "data" : { "id" : "973", "shared_name" : "5595", "degree_layout" : 156, "Matching_Attribute" : [ "5595" ], "Classification" : "candidate", "name" : "5595", "alias" : "MAPK3", "SUID" : 973, "selected" : false }, "position" : { "x" : 113.87539239722196, "y" : -2.49699799866562 }, "selected" : false }, { "data" : { "id" : "969", "shared_name" : "2670", "degree_layout" : 19, "Matching_Attribute" : [ "2670" ], "Classification" : "WM", "name" : "2670", "alias" : "GFAP", "SUID" : 969, "selected" : false }, "position" : { "x" : -22.124607602778042, "y" : -153.49699799866562 }, "selected" : false }, { "data" : { "id" : "965", "shared_name" : "79991", "Matching_Attribute" : [ "79991" ], "Classification" : "WM", "name" : "79991", "alias" : "STN1", "SUID" : 965, "selected" : false }, "position" : { "x" : 236.87539239722196, "y" : 302.5030020013344 }, "selected" : false }, { "data" : { "id" : "961", "shared_name" : "7318", "Matching_Attribute" : [ "7318" ], "Classification" : "WM", "name" : "7318", "alias" : "UBA7", "SUID" : 961, "selected" : false }, "position" : { "x" : 22.875392397221958, "y" : 150.50300200133438 }, "selected" : false }, { "data" : { "id" : "957", "shared_name" : "5230", "Matching_Attribute" : [ "5230" ], "Classification" : "WMexpanded", "name" : "5230", "alias" : "PGK1", "SUID" : 957, "selected" : false }, "position" : { "x" : -110.12460760277804, "y" : 43.50300200133438 }, "selected" : false }, { "data" : { "id" : "953", "shared_name" : "79581", "Matching_Attribute" : [ "79581" ], "Classification" : "WM", "name" : "79581", "alias" : "SLC52A2", "SUID" : 953, "selected" : false }, "position" : { "x" : -843.124607602778, "y" : -319.4969979986656 }, "selected" : false }, { "data" : { "id" : "949", "shared_name" : "177", "Matching_Attribute" : [ "177" ], "Classification" : "candidate", "name" : "177", "alias" : "AGER", "SUID" : 949, "selected" : false }, "position" : { "x" : 153.87539239722196, "y" : -101.49699799866562 }, "selected" : false }, { "data" : { "id" : "945", "shared_name" : "2316", "Matching_Attribute" : [ "2316" ], "Classification" : "WM", "name" : "2316", "alias" : "FLNA", "SUID" : 945, "selected" : false }, "position" : { "x" : 340.87539239722196, "y" : -36.49699799866562 }, "selected" : false }, { "data" : { "id" : "941", "shared_name" : "648", "Matching_Attribute" : [ "648" ], "Classification" : "candidate", "name" : "648", "alias" : "BMI1", "SUID" : 941, "selected" : false }, "position" : { "x" : 299.87539239722196, "y" : 48.50300200133438 }, "selected" : false }, { "data" : { "id" : "937", "shared_name" : "2110", "degree_layout" : 78, "Matching_Attribute" : [ "2110" ], "Classification" : "WM", "name" : "2110", "alias" : "ETFDH", "SUID" : 937, "selected" : false }, "position" : { "x" : -250.12460760277804, "y" : 338.5030020013344 }, "selected" : false }, { "data" : { "id" : "933", "shared_name" : "9569", "Matching_Attribute" : [ "9569" ], "Classification" : "candidate", "name" : "9569", "alias" : "GTF2IRD1", "SUID" : 933, "selected" : false }, "position" : { "x" : -577.124607602778, "y" : 479.5030020013344 }, "selected" : false }, { "data" : { "id" : "929", "shared_name" : "1967", "degree_layout" : 27, "Matching_Attribute" : [ "1967" ], "Classification" : "WM", "name" : "1967", "alias" : "EIF2B1", "SUID" : 929, "selected" : false }, "position" : { "x" : -14.124607602778042, "y" : -28.49699799866562 }, "selected" : false }, { "data" : { "id" : "925", "shared_name" : "372", "degree_layout" : 17, "Matching_Attribute" : [ "372" ], "Classification" : "WM", "name" : "372", "alias" : "ARCN1", "SUID" : 925, "selected" : false }, "position" : { "x" : 203.87539239722196, "y" : -77.49699799866562 }, "selected" : false }, { "data" : { "id" : "921", "shared_name" : "3880", "Matching_Attribute" : [ "3880" ], "Classification" : "WM", "name" : "3880", "alias" : "KRT19", "SUID" : 921, "selected" : false }, "position" : { "x" : 227.87539239722196, "y" : 204.50300200133438 }, "selected" : false }, { "data" : { "id" : "917", "shared_name" : "1181", "degree_layout" : 25, "Matching_Attribute" : [ "1181" ], "Classification" : "WM", "name" : "1181", "alias" : "CLCN2", "SUID" : 917, "selected" : false }, "position" : { "x" : -208.12460760277804, "y" : -192.49699799866562 }, "selected" : false }, { "data" : { "id" : "913", "shared_name" : "404672", "degree_layout" : 75, "Matching_Attribute" : [ "404672" ], "Classification" : "WM", "name" : "404672", "alias" : "GTF2H5", "SUID" : 913, "selected" : false }, "position" : { "x" : 143.87539239722196, "y" : 400.5030020013344 }, "selected" : false }, { "data" : { "id" : "909", "shared_name" : "1716", "degree_layout" : 9, "Matching_Attribute" : [ "1716" ], "Classification" : "WM", "name" : "1716", "alias" : "DGUOK", "SUID" : 909, "selected" : false }, "position" : { "x" : -174.12460760277804, "y" : 8.50300200133438 }, "selected" : false }, { "data" : { "id" : "905", "shared_name" : "10157", "degree_layout" : 73, "Matching_Attribute" : [ "10157" ], "Classification" : "WMexpanded", "name" : "10157", "alias" : "AASS", "SUID" : 905, "selected" : false }, "position" : { "x" : -161.12460760277804, "y" : 140.50300200133438 }, "selected" : false }, { "data" : { "id" : "901", "shared_name" : "8560", "degree_layout" : 35, "Matching_Attribute" : [ "8560" ], "Classification" : "WM", "name" : "8560", "alias" : "DEGS1", "SUID" : 901, "selected" : true }, "position" : { "x" : -232.12460760277804, "y" : -203.49699799866562 }, "selected" : true }, { "data" : { "id" : "897", "shared_name" : "3073", "degree_layout" : 41, "Matching_Attribute" : [ "3073" ], "Classification" : "WM", "name" : "3073", "alias" : "HEXA", "SUID" : 897, "selected" : false }, "position" : { "x" : -344.12460760277804, "y" : -267.4969979986656 }, "selected" : false }, { "data" : { "id" : "893", "shared_name" : "9361", "Matching_Attribute" : [ "9361" ], "Classification" : "WM", "name" : "9361", "alias" : "LONP1", "SUID" : 893, "selected" : false }, "position" : { "x" : -413.12460760277804, "y" : 247.50300200133438 }, "selected" : false }, { "data" : { "id" : "889", "shared_name" : "80224", "degree_layout" : 192, "Matching_Attribute" : [ "80224" ], "Classification" : "WM", "name" : "80224", "alias" : "NUBPL", "SUID" : 889, "selected" : false }, "position" : { "x" : -332.12460760277804, "y" : 127.50300200133438 }, "selected" : false }, { "data" : { "id" : "885", "shared_name" : "6347", "Matching_Attribute" : [ "6347" ], "Classification" : "WM", "name" : "6347", "alias" : "CCL2", "SUID" : 885, "selected" : false }, "position" : { "x" : 78.87539239722196, "y" : 180.50300200133438 }, "selected" : false }, { "data" : { "id" : "881", "shared_name" : "55640", "Matching_Attribute" : [ "55640" ], "Classification" : "WM", "name" : "55640", "alias" : "FLVCR2", "SUID" : 881, "selected" : false }, "position" : { "x" : 677.875392397222, "y" : -98.49699799866562 }, "selected" : false }, { "data" : { "id" : "877", "shared_name" : "7341", "Matching_Attribute" : [ "7341" ], "Classification" : "WM", "name" : "7341", "alias" : "SUMO1", "SUID" : 877, "selected" : false }, "position" : { "x" : 126.87539239722196, "y" : 165.50300200133438 }, "selected" : false }, { "data" : { "id" : "873", "shared_name" : "1385", "Matching_Attribute" : [ "1385" ], "Classification" : "WMexpanded", "name" : "1385", "alias" : "CREB1", "SUID" : 873, "selected" : false }, "position" : { "x" : -14.124607602778042, "y" : 26.50300200133438 }, "selected" : false }, { "data" : { "id" : "869", "shared_name" : "23221", "Matching_Attribute" : [ "23221" ], "Classification" : "WM", "name" : "23221", "alias" : "RHOBTB2", "SUID" : 869, "selected" : false }, "position" : { "x" : 41.87539239722196, "y" : -210.49699799866562 }, "selected" : false }, { "data" : { "id" : "865", "shared_name" : "3480", "Matching_Attribute" : [ "3480" ], "Classification" : "WMexpanded", "name" : "3480", "alias" : "IGF1R", "SUID" : 865, "selected" : false }, "position" : { "x" : 166.87539239722196, "y" : -74.49699799866562 }, "selected" : false }, { "data" : { "id" : "861", "shared_name" : "23600", "degree_layout" : 108, "Matching_Attribute" : [ "23600" ], "Classification" : "WM", "name" : "23600", "alias" : "AMACR", "SUID" : 861, "selected" : false }, "position" : { "x" : -97.12460760277804, "y" : 123.50300200133438 }, "selected" : false }, { "data" : { "id" : "857", "shared_name" : "11274", "Matching_Attribute" : [ "11274" ], "Classification" : "WMexpanded", "name" : "11274", "alias" : "USP18", "SUID" : 857, "selected" : false }, "position" : { "x" : 246.87539239722196, "y" : -56.49699799866562 }, "selected" : false }, { "data" : { "id" : "853", "shared_name" : "60", "degree_layout" : 81, "Matching_Attribute" : [ "60" ], "Classification" : "WM", "name" : "60", "alias" : "ACTB", "SUID" : 853, "selected" : false }, "position" : { "x" : 205.87539239722196, "y" : 68.50300200133438 }, "selected" : false }, { "data" : { "id" : "849", "shared_name" : "23556", "Matching_Attribute" : [ "23556" ], "Classification" : "WMexpanded", "name" : "23556", "alias" : "PIGN", "SUID" : 849, "selected" : false }, "position" : { "x" : -176.12460760277804, "y" : -339.4969979986656 }, "selected" : false }, { "data" : { "id" : "845", "shared_name" : "4358", "degree_layout" : 64, "Matching_Attribute" : [ "4358" ], "Classification" : "WM", "name" : "4358", "alias" : "MPV17", "SUID" : 845, "selected" : false }, "position" : { "x" : -140.12460760277804, "y" : 104.50300200133438 }, "selected" : false }, { "data" : { "id" : "841", "shared_name" : "8890", "degree_layout" : 26, "Matching_Attribute" : [ "8890" ], "Classification" : "WM", "name" : "8890", "alias" : "EIF2B4", "SUID" : 841, "selected" : false }, "position" : { "x" : 25.875392397221958, "y" : -66.49699799866562 }, "selected" : false }, { "data" : { "id" : "837", "shared_name" : "8892", "degree_layout" : 30, "Matching_Attribute" : [ "8892" ], "Classification" : "WM", "name" : "8892", "alias" : "EIF2B2", "SUID" : 837, "selected" : false }, "position" : { "x" : 8.875392397221958, "y" : 61.50300200133438 }, "selected" : false }, { "data" : { "id" : "833", "shared_name" : "25974", "Matching_Attribute" : [ "25974" ], "Classification" : "WMexpanded", "name" : "25974", "alias" : "MMACHC", "SUID" : 833, "selected" : false }, "position" : { "x" : -519.124607602778, "y" : -112.49699799866562 }, "selected" : false }, { "data" : { "id" : "829", "shared_name" : "8772", "degree_layout" : 65, "Matching_Attribute" : [ "8772" ], "Classification" : "WMexpanded", "name" : "8772", "alias" : "FADD", "SUID" : 829, "selected" : false }, "position" : { "x" : 9.875392397221958, "y" : -114.49699799866562 }, "selected" : false }, { "data" : { "id" : "825", "shared_name" : "25942", "Matching_Attribute" : [ "25942" ], "Classification" : "WMexpanded", "name" : "25942", "alias" : "SIN3A", "SUID" : 825, "selected" : false }, "position" : { "x" : -172.12460760277804, "y" : -98.49699799866562 }, "selected" : false }, { "data" : { "id" : "821", "shared_name" : "1410", "Matching_Attribute" : [ "1410" ], "Classification" : "WMexpanded", "name" : "1410", "alias" : "CRYAB", "SUID" : 821, "selected" : false }, "position" : { "x" : -138.12460760277804, "y" : -171.49699799866562 }, "selected" : false }, { "data" : { "id" : "817", "shared_name" : "5728", "degree_layout" : 94, "Matching_Attribute" : [ "5728" ], "Classification" : "WMexpanded", "name" : "5728", "alias" : "PTEN", "SUID" : 817, "selected" : false }, "position" : { "x" : 227.87539239722196, "y" : 53.50300200133438 }, "selected" : false }, { "data" : { "id" : "813", "shared_name" : "3447", "Matching_Attribute" : [ "3447" ], "Classification" : "candidate", "name" : "3447", "alias" : "IFNA13", "SUID" : 813, "selected" : false }, "position" : { "x" : 270.87539239722196, "y" : -245.49699799866562 }, "selected" : false }, { "data" : { "id" : "809", "shared_name" : "2335", "degree_layout" : 24, "Matching_Attribute" : [ "2335" ], "Classification" : "WM", "name" : "2335", "alias" : "FN1", "SUID" : 809, "selected" : false }, "position" : { "x" : 229.87539239722196, "y" : -177.49699799866562 }, "selected" : false }, { "data" : { "id" : "805", "shared_name" : "6772", "degree_layout" : 91, "Matching_Attribute" : [ "6772" ], "Classification" : "WM", "name" : "6772", "alias" : "STAT1", "SUID" : 805, "selected" : false }, "position" : { "x" : 241.87539239722196, "y" : -40.49699799866562 }, "selected" : false }, { "data" : { "id" : "801", "shared_name" : "1376", "degree_layout" : 129, "Matching_Attribute" : [ "1376" ], "Classification" : "WMexpanded", "name" : "1376", "alias" : "CPT2", "SUID" : 801, "selected" : false }, "position" : { "x" : -182.12460760277804, "y" : 48.50300200133438 }, "selected" : false }, { "data" : { "id" : "797", "shared_name" : "124997", "Matching_Attribute" : [ "124997" ], "Classification" : "WMexpanded", "name" : "124997", "alias" : "WDR81", "SUID" : 797, "selected" : false }, "position" : { "x" : 898.875392397222, "y" : 482.5030020013344 }, "selected" : false }, { "data" : { "id" : "793", "shared_name" : "137682", "degree_layout" : 166, "Matching_Attribute" : [ "137682" ], "Classification" : "WM", "name" : "137682", "alias" : "NDUFAF6", "SUID" : 793, "selected" : false }, "position" : { "x" : -467.12460760277804, "y" : 149.50300200133438 }, "selected" : false }, { "data" : { "id" : "789", "shared_name" : "1616", "degree_layout" : 79, "Matching_Attribute" : [ "1616" ], "Classification" : "WM", "name" : "1616", "alias" : "DAXX", "SUID" : 789, "selected" : false }, "position" : { "x" : 169.87539239722196, "y" : 85.50300200133438 }, "selected" : false }, { "data" : { "id" : "785", "shared_name" : "1958", "degree_layout" : 18, "Matching_Attribute" : [ "1958" ], "Classification" : "WM", "name" : "1958", "alias" : "EGR1", "SUID" : 785, "selected" : false }, "position" : { "x" : 283.87539239722196, "y" : 35.50300200133438 }, "selected" : false }, { "data" : { "id" : "781", "shared_name" : "4860", "Matching_Attribute" : [ "4860" ], "Classification" : "WMexpanded", "name" : "4860", "alias" : "PNP", "SUID" : 781, "selected" : false }, "position" : { "x" : -316.12460760277804, "y" : -62.49699799866562 }, "selected" : false }, { "data" : { "id" : "777", "shared_name" : "8030", "Matching_Attribute" : [ "8030" ], "Classification" : "WM", "name" : "8030", "alias" : "CCDC6", "SUID" : 777, "selected" : false }, "position" : { "x" : 282.87539239722196, "y" : 19.50300200133438 }, "selected" : false }, { "data" : { "id" : "773", "shared_name" : "29072", "Matching_Attribute" : [ "29072" ], "Classification" : "WMexpanded", "name" : "29072", "alias" : "SETD2", "SUID" : 773, "selected" : false }, "position" : { "x" : -23.124607602778042, "y" : 102.50300200133438 }, "selected" : false }, { "data" : { "id" : "769", "shared_name" : "4953", "Matching_Attribute" : [ "4953" ], "Classification" : "WM", "name" : "4953", "alias" : "ODC1", "SUID" : 769, "selected" : false }, "position" : { "x" : -105.12460760277804, "y" : 250.50300200133438 }, "selected" : false }, { "data" : { "id" : "765", "shared_name" : "4340", "degree_layout" : 6, "Matching_Attribute" : [ "4340" ], "Classification" : "WM", "name" : "4340", "alias" : "MOG", "SUID" : 765, "selected" : false }, "position" : { "x" : -141.12460760277804, "y" : -427.4969979986656 }, "selected" : false }, { "data" : { "id" : "761", "shared_name" : "5891", "Matching_Attribute" : [ "5891" ], "Classification" : "candidate", "name" : "5891", "alias" : "MOK", "SUID" : 761, "selected" : false }, "position" : { "x" : -13.124607602778042, "y" : -186.49699799866562 }, "selected" : false }, { "data" : { "id" : "757", "shared_name" : "80856", "Matching_Attribute" : [ "80856" ], "Classification" : "WMexpanded", "name" : "80856", "alias" : "LNPK", "SUID" : 757, "selected" : false }, "position" : { "x" : 433.87539239722196, "y" : 88.50300200133438 }, "selected" : false }, { "data" : { "id" : "753", "shared_name" : "4099", "degree_layout" : 22, "Matching_Attribute" : [ "4099" ], "Classification" : "WM", "name" : "4099", "alias" : "MAG", "SUID" : 753, "selected" : false }, "position" : { "x" : -37.12460760277804, "y" : -346.4969979986656 }, "selected" : false }, { "data" : { "id" : "749", "shared_name" : "6873", "degree_layout" : 28, "Matching_Attribute" : [ "6873" ], "Classification" : "WM", "name" : "6873", "alias" : "TAF2", "SUID" : 749, "selected" : false }, "position" : { "x" : 167.87539239722196, "y" : 437.5030020013344 }, "selected" : false }, { "data" : { "id" : "745", "shared_name" : "1725", "Matching_Attribute" : [ "1725" ], "Classification" : "WMexpanded", "name" : "1725", "alias" : "DHPS", "SUID" : 745, "selected" : false }, "position" : { "x" : 239.87539239722196, "y" : 286.5030020013344 }, "selected" : false }, { "data" : { "id" : "741", "shared_name" : "4830", "degree_layout" : 139, "Matching_Attribute" : [ "4830" ], "Classification" : "candidate", "name" : "4830", "alias" : "NME1", "SUID" : 741, "selected" : false }, "position" : { "x" : -302.12460760277804, "y" : 18.50300200133438 }, "selected" : false }, { "data" : { "id" : "737", "shared_name" : "2643", "degree_layout" : 57, "Matching_Attribute" : [ "2643" ], "Classification" : "WMexpanded", "name" : "2643", "alias" : "GCH1", "SUID" : 737, "selected" : false }, "position" : { "x" : -94.12460760277804, "y" : 178.50300200133438 }, "selected" : false }, { "data" : { "id" : "733", "shared_name" : "91452", "degree_layout" : 8, "Matching_Attribute" : [ "91452" ], "Classification" : "WM", "name" : "91452", "alias" : "ACBD5", "SUID" : 733, "selected" : false }, "position" : { "x" : -360.12460760277804, "y" : -106.49699799866562 }, "selected" : false }, { "data" : { "id" : "729", "shared_name" : "5888", "Matching_Attribute" : [ "5888" ], "Classification" : "WM", "name" : "5888", "alias" : "RAD51", "SUID" : 729, "selected" : false }, "position" : { "x" : 12.875392397221958, "y" : 257.5030020013344 }, "selected" : false }, { "data" : { "id" : "725", "shared_name" : "54209", "Matching_Attribute" : [ "54209" ], "Classification" : "WM", "name" : "54209", "alias" : "TREM2", "SUID" : 725, "selected" : false }, "position" : { "x" : 137.87539239722196, "y" : -50.49699799866562 }, "selected" : false }, { "data" : { "id" : "721", "shared_name" : "79731", "degree_layout" : 233, "Matching_Attribute" : [ "79731" ], "Classification" : "WM", "name" : "79731", "alias" : "NARS2", "SUID" : 721, "selected" : false }, "position" : { "x" : -287.12460760277804, "y" : 202.50300200133438 }, "selected" : false }, { "data" : { "id" : "717", "shared_name" : "157680", "Matching_Attribute" : [ "157680" ], "Classification" : "WMexpanded", "name" : "157680", "alias" : "VPS13B", "SUID" : 717, "selected" : false }, "position" : { "x" : 48.87539239722196, "y" : 692.5030020013344 }, "selected" : false }, { "data" : { "id" : "713", "shared_name" : "7019", "degree_layout" : 228, "Matching_Attribute" : [ "7019" ], "Classification" : "WMexpanded", "name" : "7019", "alias" : "TFAM", "SUID" : 713, "selected" : false }, "position" : { "x" : -225.12460760277804, "y" : 161.50300200133438 }, "selected" : false }, { "data" : { "id" : "709", "shared_name" : "112858", "Matching_Attribute" : [ "112858" ], "Classification" : "WM", "name" : "112858", "alias" : "TP53RK", "SUID" : 709, "selected" : false }, "position" : { "x" : -419.12460760277804, "y" : 7.50300200133438 }, "selected" : false }, { "data" : { "id" : "705", "shared_name" : "728378", "degree_layout" : 8, "Matching_Attribute" : [ "728378" ], "Classification" : "WM", "name" : "728378", "alias" : "POTEF", "SUID" : 705, "selected" : false }, "position" : { "x" : 88.87539239722196, "y" : 31.50300200133438 }, "selected" : false }, { "data" : { "id" : "701", "shared_name" : "11011", "Matching_Attribute" : [ "11011" ], "Classification" : "WMexpanded", "name" : "11011", "alias" : "TLK2", "SUID" : 701, "selected" : false }, "position" : { "x" : 279.87539239722196, "y" : -209.49699799866562 }, "selected" : false }, { "data" : { "id" : "697", "shared_name" : "55768", "Matching_Attribute" : [ "55768" ], "Classification" : "WM", "name" : "55768", "alias" : "NGLY1", "SUID" : 697, "selected" : false }, "position" : { "x" : 92.87539239722196, "y" : -96.49699799866562 }, "selected" : false }, { "data" : { "id" : "693", "shared_name" : "7296", "Matching_Attribute" : [ "7296" ], "Classification" : "candidate", "name" : "7296", "alias" : "TXNRD1", "SUID" : 693, "selected" : false }, "position" : { "x" : -138.12460760277804, "y" : 191.50300200133438 }, "selected" : false }, { "data" : { "id" : "689", "shared_name" : "6329", "Matching_Attribute" : [ "6329" ], "Classification" : "WMexpanded", "name" : "6329", "alias" : "SCN4A", "SUID" : 689, "selected" : false }, "position" : { "x" : -93.12460760277804, "y" : -188.49699799866562 }, "selected" : false }, { "data" : { "id" : "685", "shared_name" : "4282", "Matching_Attribute" : [ "4282" ], "Classification" : "candidate", "name" : "4282", "alias" : "MIF", "SUID" : 685, "selected" : false }, "position" : { "x" : -207.12460760277804, "y" : 229.50300200133438 }, "selected" : false }, { "data" : { "id" : "681", "shared_name" : "6646", "degree_layout" : 119, "Matching_Attribute" : [ "6646" ], "Classification" : "WM", "name" : "6646", "alias" : "SOAT1", "SUID" : 681, "selected" : false }, "position" : { "x" : -188.12460760277804, "y" : -78.49699799866562 }, "selected" : false }, { "data" : { "id" : "677", "shared_name" : "57449", "Matching_Attribute" : [ "57449" ], "Classification" : "WM", "name" : "57449", "alias" : "PLEKHG5", "SUID" : 677, "selected" : false }, "position" : { "x" : 244.87539239722196, "y" : 118.50300200133438 }, "selected" : false }, { "data" : { "id" : "673", "shared_name" : "23096", "Matching_Attribute" : [ "23096" ], "Classification" : "WMexpanded", "name" : "23096", "alias" : "IQSEC2", "SUID" : 673, "selected" : false }, "position" : { "x" : 288.87539239722196, "y" : 197.50300200133438 }, "selected" : false }, { "data" : { "id" : "669", "shared_name" : "259266", "Matching_Attribute" : [ "259266" ], "Classification" : "WMexpanded", "name" : "259266", "alias" : "ASPM", "SUID" : 669, "selected" : false }, "position" : { "x" : 77.87539239722196, "y" : 275.5030020013344 }, "selected" : false }, { "data" : { "id" : "665", "shared_name" : "3309", "degree_layout" : 50, "Matching_Attribute" : [ "3309" ], "Classification" : "candidate", "name" : "3309", "alias" : "HSPA5", "SUID" : 665, "selected" : false }, "position" : { "x" : 1.8753923972219582, "y" : -138.49699799866562 }, "selected" : false }, { "data" : { "id" : "661", "shared_name" : "6657", "Matching_Attribute" : [ "6657" ], "Classification" : "WMexpanded", "name" : "6657", "alias" : "SOX2", "SUID" : 661, "selected" : false }, "position" : { "x" : 97.87539239722196, "y" : 277.5030020013344 }, "selected" : false }, { "data" : { "id" : "657", "shared_name" : "547", "Matching_Attribute" : [ "547" ], "Classification" : "WM", "name" : "547", "alias" : "KIF1A", "SUID" : 657, "selected" : false }, "position" : { "x" : 72.87539239722196, "y" : 15.50300200133438 }, "selected" : false }, { "data" : { "id" : "653", "shared_name" : "6948", "Matching_Attribute" : [ "6948" ], "Classification" : "WM", "name" : "6948", "alias" : "TCN2", "SUID" : 653, "selected" : false }, "position" : { "x" : -406.12460760277804, "y" : -188.49699799866562 }, "selected" : false }, { "data" : { "id" : "649", "shared_name" : "83480", "Matching_Attribute" : [ "83480" ], "Classification" : "WM", "name" : "83480", "alias" : "PUS3", "SUID" : 649, "selected" : false }, "position" : { "x" : -7.124607602778042, "y" : 720.5030020013344 }, "selected" : false }, { "data" : { "id" : "645", "shared_name" : "10056", "Matching_Attribute" : [ "10056" ], "Classification" : "WM", "name" : "10056", "alias" : "FARSB", "SUID" : 645, "selected" : false }, "position" : { "x" : -306.12460760277804, "y" : 159.50300200133438 }, "selected" : false }, { "data" : { "id" : "641", "shared_name" : "773", "degree_layout" : 56, "Matching_Attribute" : [ "773" ], "Classification" : "WMexpanded", "name" : "773", "alias" : "CACNA1A", "SUID" : 641, "selected" : false }, "position" : { "x" : 89.87539239722196, "y" : -64.49699799866562 }, "selected" : false }, { "data" : { "id" : "637", "shared_name" : "6654", "degree_layout" : 134, "Matching_Attribute" : [ "6654" ], "Classification" : "WM", "name" : "6654", "alias" : "SOS1", "SUID" : 637, "selected" : false }, "position" : { "x" : 140.87539239722196, "y" : -130.49699799866562 }, "selected" : false }, { "data" : { "id" : "633", "shared_name" : "1673", "degree_layout" : 1, "Matching_Attribute" : [ "1673" ], "Classification" : "WM", "name" : "1673", "alias" : "DEFB4A", "SUID" : 633, "selected" : false }, "position" : { "x" : 899.875392397222, "y" : -854.4969979986656 }, "selected" : false }, { "data" : { "id" : "629", "shared_name" : "7013", "Matching_Attribute" : [ "7013" ], "Classification" : "WM", "name" : "7013", "alias" : "TERF1", "SUID" : 629, "selected" : false }, "position" : { "x" : 252.87539239722196, "y" : 153.50300200133438 }, "selected" : false }, { "data" : { "id" : "625", "shared_name" : "8942", "Matching_Attribute" : [ "8942" ], "Classification" : "WMexpanded", "name" : "8942", "alias" : "KYNU", "SUID" : 625, "selected" : false }, "position" : { "x" : -366.12460760277804, "y" : 34.50300200133438 }, "selected" : false }, { "data" : { "id" : "621", "shared_name" : "122961", "degree_layout" : 199, "Matching_Attribute" : [ "122961" ], "Classification" : "WM", "name" : "122961", "alias" : "ISCA2", "SUID" : 621, "selected" : false }, "position" : { "x" : -319.12460760277804, "y" : 187.50300200133438 }, "selected" : false }, { "data" : { "id" : "617", "shared_name" : "1630", "Matching_Attribute" : [ "1630" ], "Classification" : "WM", "name" : "1630", "alias" : "DCC", "SUID" : 617, "selected" : false }, "position" : { "x" : 124.87539239722196, "y" : -234.49699799866562 }, "selected" : false }, { "data" : { "id" : "613", "shared_name" : "10381", "Matching_Attribute" : [ "10381" ], "Classification" : "WMexpanded", "name" : "10381", "alias" : "TUBB3", "SUID" : 613, "selected" : false }, "position" : { "x" : 10.875392397221958, "y" : -324.4969979986656 }, "selected" : false }, { "data" : { "id" : "609", "shared_name" : "6812", "Matching_Attribute" : [ "6812" ], "Classification" : "WM", "name" : "6812", "alias" : "STXBP1", "SUID" : 609, "selected" : false }, "position" : { "x" : 73.87539239722196, "y" : -50.49699799866562 }, "selected" : false }, { "data" : { "id" : "605", "shared_name" : "55906", "Matching_Attribute" : [ "55906" ], "Classification" : "WM", "name" : "55906", "alias" : "ZC4H2", "SUID" : 605, "selected" : false }, "position" : { "x" : 898.875392397222, "y" : 543.5030020013344 }, "selected" : false }, { "data" : { "id" : "601", "shared_name" : "55187", "Matching_Attribute" : [ "55187" ], "Classification" : "WM", "name" : "55187", "alias" : "VPS13D", "SUID" : 601, "selected" : false }, "position" : { "x" : 324.87539239722196, "y" : 204.50300200133438 }, "selected" : false }, { "data" : { "id" : "597", "shared_name" : "271", "degree_layout" : 89, "Matching_Attribute" : [ "271" ], "Classification" : "WM", "name" : "271", "alias" : "AMPD2", "SUID" : 597, "selected" : false }, "position" : { "x" : -103.12460760277804, "y" : 91.50300200133438 }, "selected" : false }, { "data" : { "id" : "593", "shared_name" : "8743", "Matching_Attribute" : [ "8743" ], "Classification" : "WM", "name" : "8743", "alias" : "TNFSF10", "SUID" : 593, "selected" : false }, "position" : { "x" : 376.87539239722196, "y" : -16.49699799866562 }, "selected" : false }, { "data" : { "id" : "589", "shared_name" : "270", "degree_layout" : 89, "Matching_Attribute" : [ "270" ], "Classification" : "WMexpanded", "name" : "270", "alias" : "AMPD1", "SUID" : 589, "selected" : false }, "position" : { "x" : -92.12460760277804, "y" : 107.50300200133438 }, "selected" : false }, { "data" : { "id" : "585", "shared_name" : "3214", "degree_layout" : 60, "Matching_Attribute" : [ "3214" ], "Classification" : "WM", "name" : "3214", "alias" : "HOXB4", "SUID" : 585, "selected" : false }, "position" : { "x" : 131.87539239722196, "y" : 364.5030020013344 }, "selected" : false }, { "data" : { "id" : "581", "shared_name" : "57679", "Matching_Attribute" : [ "57679" ], "Classification" : "WM", "name" : "57679", "alias" : "ALS2", "SUID" : 581, "selected" : false }, "position" : { "x" : 223.87539239722196, "y" : 135.50300200133438 }, "selected" : false }, { "data" : { "id" : "577", "shared_name" : "54936", "Matching_Attribute" : [ "54936" ], "Classification" : "WM", "name" : "54936", "alias" : "ADPRS", "SUID" : 577, "selected" : false }, "position" : { "x" : 959.875392397222, "y" : 482.5030020013344 }, "selected" : false }, { "data" : { "id" : "573", "shared_name" : "3155", "degree_layout" : 97, "Matching_Attribute" : [ "3155" ], "Classification" : "WM", "name" : "3155", "alias" : "HMGCL", "SUID" : 573, "selected" : false }, "position" : { "x" : -87.12460760277804, "y" : 77.50300200133438 }, "selected" : false }, { "data" : { "id" : "569", "shared_name" : "7048", "Matching_Attribute" : [ "7048" ], "Classification" : "WM", "name" : "7048", "alias" : "TGFBR2", "SUID" : 569, "selected" : false }, "position" : { "x" : 185.87539239722196, "y" : -90.49699799866562 }, "selected" : false }, { "data" : { "id" : "565", "shared_name" : "4772", "degree_layout" : 123, "Matching_Attribute" : [ "4772" ], "Classification" : "WM", "name" : "4772", "alias" : "NFATC1", "SUID" : 565, "selected" : false }, "position" : { "x" : 98.87539239722196, "y" : -208.49699799866562 }, "selected" : false }, { "data" : { "id" : "561", "shared_name" : "26235", "degree_layout" : 13, "Matching_Attribute" : [ "26235" ], "Classification" : "WM", "name" : "26235", "alias" : "FBXL4", "SUID" : 561, "selected" : false }, "position" : { "x" : -63.12460760277804, "y" : 61.50300200133438 }, "selected" : false }, { "data" : { "id" : "557", "shared_name" : "5730", "Matching_Attribute" : [ "5730" ], "Classification" : "WM", "name" : "5730", "alias" : "PTGDS", "SUID" : 557, "selected" : false }, "position" : { "x" : -166.12460760277804, "y" : 28.50300200133438 }, "selected" : false }, { "data" : { "id" : "553", "shared_name" : "7248", "Matching_Attribute" : [ "7248" ], "Classification" : "WM", "name" : "7248", "alias" : "TSC1", "SUID" : 553, "selected" : false }, "position" : { "x" : 65.87539239722196, "y" : 215.50300200133438 }, "selected" : false }, { "data" : { "id" : "549", "shared_name" : "3954", "Matching_Attribute" : [ "3954" ], "Classification" : "candidate", "name" : "3954", "alias" : "LETM1", "SUID" : 549, "selected" : false }, "position" : { "x" : -257.12460760277804, "y" : -372.4969979986656 }, "selected" : false }, { "data" : { "id" : "545", "shared_name" : "51014", "Matching_Attribute" : [ "51014" ], "Classification" : "candidate", "name" : "51014", "alias" : "TMED7", "SUID" : 545, "selected" : false }, "position" : { "x" : 57.87539239722196, "y" : -50.49699799866562 }, "selected" : false }, { "data" : { "id" : "541", "shared_name" : "10457", "Matching_Attribute" : [ "10457" ], "Classification" : "WMexpanded", "name" : "10457", "alias" : "GPNMB", "SUID" : 541, "selected" : false }, "position" : { "x" : -127.12460760277804, "y" : -249.49699799866562 }, "selected" : false }, { "data" : { "id" : "537", "shared_name" : "27429", "Matching_Attribute" : [ "27429" ], "Classification" : "WMexpanded", "name" : "27429", "alias" : "HTRA2", "SUID" : 537, "selected" : false }, "position" : { "x" : -41.12460760277804, "y" : 176.50300200133438 }, "selected" : false }, { "data" : { "id" : "533", "shared_name" : "4036", "Matching_Attribute" : [ "4036" ], "Classification" : "WMexpanded", "name" : "4036", "alias" : "LRP2", "SUID" : 533, "selected" : false }, "position" : { "x" : 25.875392397221958, "y" : 21.50300200133438 }, "selected" : false }, { "data" : { "id" : "529", "shared_name" : "23203", "degree_layout" : 13, "Matching_Attribute" : [ "23203" ], "Classification" : "WMexpanded", "name" : "23203", "alias" : "PMPCA", "SUID" : 529, "selected" : false }, "position" : { "x" : -442.12460760277804, "y" : 214.50300200133438 }, "selected" : false }, { "data" : { "id" : "525", "shared_name" : "6598", "degree_layout" : 25, "Matching_Attribute" : [ "6598" ], "Classification" : "WMexpanded", "name" : "6598", "alias" : "SMARCB1", "SUID" : 525, "selected" : false }, "position" : { "x" : 36.87539239722196, "y" : -149.49699799866562 }, "selected" : false }, { "data" : { "id" : "521", "shared_name" : "85476", "degree_layout" : 234, "Matching_Attribute" : [ "85476" ], "Classification" : "WM", "name" : "85476", "alias" : "GFM1", "SUID" : 521, "selected" : false }, "position" : { "x" : -272.12460760277804, "y" : 236.50300200133438 }, "selected" : false }, { "data" : { "id" : "517", "shared_name" : "5052", "degree_layout" : 86, "Matching_Attribute" : [ "5052" ], "Classification" : "WMexpanded", "name" : "5052", "alias" : "PRDX1", "SUID" : 517, "selected" : false }, "position" : { "x" : -343.12460760277804, "y" : -21.49699799866562 }, "selected" : false }, { "data" : { "id" : "513", "shared_name" : "348980", "Matching_Attribute" : [ "348980" ], "Classification" : "WM", "name" : "348980", "alias" : "HCN1", "SUID" : 513, "selected" : false }, "position" : { "x" : -109.12460760277804, "y" : 292.5030020013344 }, "selected" : false }, { "data" : { "id" : "509", "shared_name" : "3661", "Matching_Attribute" : [ "3661" ], "Classification" : "WMexpanded", "name" : "3661", "alias" : "IRF3", "SUID" : 509, "selected" : false }, "position" : { "x" : 156.87539239722196, "y" : -146.49699799866562 }, "selected" : false }, { "data" : { "id" : "505", "shared_name" : "2071", "degree_layout" : 78, "Matching_Attribute" : [ "2071" ], "Classification" : "WM", "name" : "2071", "alias" : "ERCC3", "SUID" : 505, "selected" : false }, "position" : { "x" : 49.87539239722196, "y" : 332.5030020013344 }, "selected" : false }, { "data" : { "id" : "501", "shared_name" : "65993", "degree_layout" : 205, "Matching_Attribute" : [ "65993" ], "Classification" : "WMexpanded", "name" : "65993", "alias" : "MRPS34", "SUID" : 501, "selected" : false }, "position" : { "x" : -203.12460760277804, "y" : 278.5030020013344 }, "selected" : false }, { "data" : { "id" : "497", "shared_name" : "65082", "Matching_Attribute" : [ "65082" ], "Classification" : "WM", "name" : "65082", "alias" : "VPS33A", "SUID" : 497, "selected" : false }, "position" : { "x" : 451.87539239722196, "y" : -164.49699799866562 }, "selected" : false }, { "data" : { "id" : "493", "shared_name" : "594", "degree_layout" : 101, "Matching_Attribute" : [ "594" ], "Classification" : "WM", "name" : "594", "alias" : "BCKDHB", "SUID" : 493, "selected" : false }, "position" : { "x" : -170.12460760277804, "y" : 188.50300200133438 }, "selected" : false }, { "data" : { "id" : "489", "shared_name" : "1629", "Matching_Attribute" : [ "1629" ], "Classification" : "WM", "name" : "1629", "alias" : "DBT", "SUID" : 489, "selected" : false }, "position" : { "x" : -400.12460760277804, "y" : 71.50300200133438 }, "selected" : false }, { "data" : { "id" : "485", "shared_name" : "593", "degree_layout" : 86, "Matching_Attribute" : [ "593" ], "Classification" : "WM", "name" : "593", "alias" : "BCKDHA", "SUID" : 485, "selected" : false }, "position" : { "x" : -252.12460760277804, "y" : -49.49699799866562 }, "selected" : false }, { "data" : { "id" : "481", "shared_name" : "7507", "degree_layout" : 52, "Matching_Attribute" : [ "7507" ], "Classification" : "WMexpanded", "name" : "7507", "alias" : "XPA", "SUID" : 481, "selected" : false }, "position" : { "x" : 36.87539239722196, "y" : 308.5030020013344 }, "selected" : false }, { "data" : { "id" : "477", "shared_name" : "51021", "degree_layout" : 237, "Matching_Attribute" : [ "51021" ], "Classification" : "WM", "name" : "51021", "alias" : "MRPS16", "SUID" : 477, "selected" : false }, "position" : { "x" : -258.12460760277804, "y" : 309.5030020013344 }, "selected" : false }, { "data" : { "id" : "473", "shared_name" : "7072", "Matching_Attribute" : [ "7072" ], "Classification" : "WMexpanded", "name" : "7072", "alias" : "TIA1", "SUID" : 473, "selected" : false }, "position" : { "x" : 37.87539239722196, "y" : 501.5030020013344 }, "selected" : false }, { "data" : { "id" : "469", "shared_name" : "57582", "Matching_Attribute" : [ "57582" ], "Classification" : "WM", "name" : "57582", "alias" : "KCNT1", "SUID" : 469, "selected" : false }, "position" : { "x" : 434.87539239722196, "y" : 614.5030020013344 }, "selected" : false }, { "data" : { "id" : "465", "shared_name" : "8792", "Matching_Attribute" : [ "8792" ], "Classification" : "WMexpanded", "name" : "8792", "alias" : "TNFRSF11A", "SUID" : 465, "selected" : false }, "position" : { "x" : 363.87539239722196, "y" : 95.50300200133438 }, "selected" : false }, { "data" : { "id" : "461", "shared_name" : "5198", "degree_layout" : 77, "Matching_Attribute" : [ "5198" ], "Classification" : "WM", "name" : "5198", "alias" : "PFAS", "SUID" : 461, "selected" : false }, "position" : { "x" : -403.12460760277804, "y" : 109.50300200133438 }, "selected" : false }, { "data" : { "id" : "457", "shared_name" : "16", "degree_layout" : 70, "Matching_Attribute" : [ "16" ], "Classification" : "WM", "name" : "16", "alias" : "AARS1", "SUID" : 457, "selected" : false }, "position" : { "x" : -414.12460760277804, "y" : 39.50300200133438 }, "selected" : false }, { "data" : { "id" : "453", "shared_name" : "9758", "Matching_Attribute" : [ "9758" ], "Classification" : "WM", "name" : "9758", "alias" : "FRMPD4", "SUID" : 453, "selected" : false }, "position" : { "x" : -172.12460760277804, "y" : 653.5030020013344 }, "selected" : false }, { "data" : { "id" : "449", "shared_name" : "55532", "Matching_Attribute" : [ "55532" ], "Classification" : "WM", "name" : "55532", "alias" : "SLC30A10", "SUID" : 449, "selected" : false }, "position" : { "x" : 491.87539239722196, "y" : -444.4969979986656 }, "selected" : false }, { "data" : { "id" : "445", "shared_name" : "389827", "Matching_Attribute" : [ "389827" ], "Classification" : "WM", "name" : "389827", "alias" : "MYMK", "SUID" : 445, "selected" : false }, "position" : { "x" : 487.87539239722196, "y" : 462.5030020013344 }, "selected" : false }, { "data" : { "id" : "441", "shared_name" : "51761", "Matching_Attribute" : [ "51761" ], "Classification" : "WMexpanded", "name" : "51761", "alias" : "ATP8A2", "SUID" : 441, "selected" : false }, "position" : { "x" : -47.12460760277804, "y" : 225.50300200133438 }, "selected" : false }, { "data" : { "id" : "437", "shared_name" : "8913", "Matching_Attribute" : [ "8913" ], "Classification" : "WMexpanded", "name" : "8913", "alias" : "CACNA1G", "SUID" : 437, "selected" : false }, "position" : { "x" : 608.875392397222, "y" : -306.4969979986656 }, "selected" : false }, { "data" : { "id" : "433", "shared_name" : "8988", "Matching_Attribute" : [ "8988" ], "Classification" : "WMexpanded", "name" : "8988", "alias" : "HSPB3", "SUID" : 433, "selected" : false }, "position" : { "x" : -118.12460760277804, "y" : -162.49699799866562 }, "selected" : false }, { "data" : { "id" : "429", "shared_name" : "1757", "Matching_Attribute" : [ "1757" ], "Classification" : "WM", "name" : "1757", "alias" : "SARDH", "SUID" : 429, "selected" : false }, "position" : { "x" : -320.12460760277804, "y" : 78.50300200133438 }, "selected" : false }, { "data" : { "id" : "425", "shared_name" : "1103", "degree_layout" : 116, "Matching_Attribute" : [ "1103" ], "Classification" : "WMexpanded", "name" : "1103", "alias" : "CHAT", "SUID" : 425, "selected" : false }, "position" : { "x" : -284.12460760277804, "y" : -55.49699799866562 }, "selected" : false }, { "data" : { "id" : "421", "shared_name" : "201294", "Matching_Attribute" : [ "201294" ], "Classification" : "WM", "name" : "201294", "alias" : "UNC13D", "SUID" : 421, "selected" : false }, "position" : { "x" : 959.875392397222, "y" : 543.5030020013344 }, "selected" : false }, { "data" : { "id" : "417", "shared_name" : "6689", "Matching_Attribute" : [ "6689" ], "Classification" : "WM", "name" : "6689", "alias" : "SPIB", "SUID" : 417, "selected" : false }, "position" : { "x" : 57.87539239722196, "y" : -218.49699799866562 }, "selected" : false }, { "data" : { "id" : "413", "shared_name" : "51733", "Matching_Attribute" : [ "51733" ], "Classification" : "WM", "name" : "51733", "alias" : "UPB1", "SUID" : 413, "selected" : false }, "position" : { "x" : -478.12460760277804, "y" : 47.50300200133438 }, "selected" : false }, { "data" : { "id" : "409", "shared_name" : "10558", "degree_layout" : 150, "Matching_Attribute" : [ "10558" ], "Classification" : "WM", "name" : "10558", "alias" : "SPTLC1", "SUID" : 409, "selected" : false }, "position" : { "x" : -172.12460760277804, "y" : -66.49699799866562 }, "selected" : false }, { "data" : { "id" : "405", "shared_name" : "54187", "Matching_Attribute" : [ "54187" ], "Classification" : "WMexpanded", "name" : "54187", "alias" : "NANS", "SUID" : 405, "selected" : false }, "position" : { "x" : -447.12460760277804, "y" : -56.49699799866562 }, "selected" : false }, { "data" : { "id" : "401", "shared_name" : "6532", "degree_layout" : 102, "Matching_Attribute" : [ "6532" ], "Classification" : "WM", "name" : "6532", "alias" : "SLC6A4", "SUID" : 401, "selected" : false }, "position" : { "x" : -62.12460760277804, "y" : 1.5030020013343801 }, "selected" : false }, { "data" : { "id" : "397", "shared_name" : "50", "degree_layout" : 94, "Matching_Attribute" : [ "50" ], "Classification" : "WM", "name" : "50", "alias" : "ACO2", "SUID" : 397, "selected" : false }, "position" : { "x" : -398.12460760277804, "y" : 36.50300200133438 }, "selected" : false }, { "data" : { "id" : "393", "shared_name" : "6664", "Matching_Attribute" : [ "6664" ], "Classification" : "WMexpanded", "name" : "6664", "alias" : "SOX11", "SUID" : 393, "selected" : false }, "position" : { "x" : -465.12460760277804, "y" : 663.5030020013344 }, "selected" : false }, { "data" : { "id" : "389", "shared_name" : "7299", "degree_layout" : 16, "Matching_Attribute" : [ "7299" ], "Classification" : "WM", "name" : "7299", "alias" : "TYR", "SUID" : 389, "selected" : false }, "position" : { "x" : -204.12460760277804, "y" : 341.5030020013344 }, "selected" : false }, { "data" : { "id" : "385", "shared_name" : "5319", "degree_layout" : 86, "Matching_Attribute" : [ "5319" ], "Classification" : "WM", "name" : "5319", "alias" : "PLA2G1B", "SUID" : 385, "selected" : false }, "position" : { "x" : -182.12460760277804, "y" : -135.49699799866562 }, "selected" : false }, { "data" : { "id" : "381", "shared_name" : "6323", "Matching_Attribute" : [ "6323" ], "Classification" : "WMexpanded", "name" : "6323", "alias" : "SCN1A", "SUID" : 381, "selected" : false }, "position" : { "x" : 24.875392397221958, "y" : 53.50300200133438 }, "selected" : false }, { "data" : { "id" : "377", "shared_name" : "6326", "Matching_Attribute" : [ "6326" ], "Classification" : "WMexpanded", "name" : "6326", "alias" : "SCN2A", "SUID" : 377, "selected" : false }, "position" : { "x" : 89.87539239722196, "y" : -32.49699799866562 }, "selected" : false }, { "data" : { "id" : "373", "shared_name" : "6328", "degree_layout" : 55, "Matching_Attribute" : [ "6328" ], "Classification" : "WM", "name" : "6328", "alias" : "SCN3A", "SUID" : 373, "selected" : false }, "position" : { "x" : -42.12460760277804, "y" : -201.49699799866562 }, "selected" : false }, { "data" : { "id" : "369", "shared_name" : "7173", "Matching_Attribute" : [ "7173" ], "Classification" : "WMexpanded", "name" : "7173", "alias" : "TPO", "SUID" : 369, "selected" : false }, "position" : { "x" : -425.12460760277804, "y" : -40.49699799866562 }, "selected" : false }, { "data" : { "id" : "365", "shared_name" : "64834", "Matching_Attribute" : [ "64834" ], "Classification" : "WM", "name" : "64834", "alias" : "ELOVL1", "SUID" : 365, "selected" : false }, "position" : { "x" : -192.12460760277804, "y" : -176.49699799866562 }, "selected" : false }, { "data" : { "id" : "361", "shared_name" : "6576", "Matching_Attribute" : [ "6576" ], "Classification" : "WM", "name" : "6576", "alias" : "SLC25A1", "SUID" : 361, "selected" : false }, "position" : { "x" : -337.12460760277804, "y" : -99.49699799866562 }, "selected" : false }, { "data" : { "id" : "357", "shared_name" : "777", "degree_layout" : 56, "Matching_Attribute" : [ "777" ], "Classification" : "WM", "name" : "777", "alias" : "CACNA1E", "SUID" : 357, "selected" : false }, "position" : { "x" : 40.87539239722196, "y" : 101.50300200133438 }, "selected" : false }, { "data" : { "id" : "353", "shared_name" : "100289462", "degree_layout" : 1, "Matching_Attribute" : [ "100289462" ], "Classification" : "WM", "name" : "100289462", "alias" : "DEFB4B", "SUID" : 353, "selected" : false }, "position" : { "x" : 898.875392397222, "y" : -798.4969979986656 }, "selected" : false }, { "data" : { "id" : "349", "shared_name" : "60386", "Matching_Attribute" : [ "60386" ], "Classification" : "WMexpanded", "name" : "60386", "alias" : "SLC25A19", "SUID" : 349, "selected" : false }, "position" : { "x" : -470.12460760277804, "y" : 6.50300200133438 }, "selected" : false }, { "data" : { "id" : "345", "shared_name" : "26137", "Matching_Attribute" : [ "26137" ], "Classification" : "WMexpanded", "name" : "26137", "alias" : "ZBTB20", "SUID" : 345, "selected" : false }, "position" : { "x" : 837.875392397222, "y" : -136.49699799866562 }, "selected" : false }, { "data" : { "id" : "341", "shared_name" : "4547", "Matching_Attribute" : [ "4547" ], "Classification" : "WM", "name" : "4547", "alias" : "MTTP", "SUID" : 341, "selected" : false }, "position" : { "x" : -408.12460760277804, "y" : -205.49699799866562 }, "selected" : false }, { "data" : { "id" : "337", "shared_name" : "9289", "Matching_Attribute" : [ "9289" ], "Classification" : "WM", "name" : "9289", "alias" : "ADGRG1", "SUID" : 337, "selected" : false }, "position" : { "x" : 605.875392397222, "y" : -207.49699799866562 }, "selected" : false }, { "data" : { "id" : "333", "shared_name" : "170302", "Matching_Attribute" : [ "170302" ], "Classification" : "WMexpanded", "name" : "170302", "alias" : "ARX", "SUID" : 333, "selected" : false }, "position" : { "x" : -292.12460760277804, "y" : -539.4969979986656 }, "selected" : false }, { "data" : { "id" : "329", "shared_name" : "4359", "Matching_Attribute" : [ "4359" ], "Classification" : "WM", "name" : "4359", "alias" : "MPZ", "SUID" : 329, "selected" : false }, "position" : { "x" : 336.87539239722196, "y" : -691.4969979986656 }, "selected" : false }, { "data" : { "id" : "325", "shared_name" : "23135", "Matching_Attribute" : [ "23135" ], "Classification" : "WMexpanded", "name" : "23135", "alias" : "KDM6B", "SUID" : 325, "selected" : false }, "position" : { "x" : 440.87539239722196, "y" : 56.50300200133438 }, "selected" : false }, { "data" : { "id" : "321", "shared_name" : "1593", "degree_layout" : 62, "Matching_Attribute" : [ "1593" ], "Classification" : "WM", "name" : "1593", "alias" : "CYP27A1", "SUID" : 321, "selected" : false }, "position" : { "x" : -79.12460760277804, "y" : 201.50300200133438 }, "selected" : false }, { "data" : { "id" : "317", "shared_name" : "3176", "Matching_Attribute" : [ "3176" ], "Classification" : "WMexpanded", "name" : "3176", "alias" : "HNMT", "SUID" : 317, "selected" : false }, "position" : { "x" : -162.12460760277804, "y" : 342.5030020013344 }, "selected" : false }, { "data" : { "id" : "313", "shared_name" : "5923", "degree_layout" : 14, "Matching_Attribute" : [ "5923" ], "Classification" : "WM", "name" : "5923", "alias" : "RASGRF1", "SUID" : 313, "selected" : false }, "position" : { "x" : 45.87539239722196, "y" : -357.4969979986656 }, "selected" : false }, { "data" : { "id" : "309", "shared_name" : "6536", "degree_layout" : 59, "Matching_Attribute" : [ "6536" ], "Classification" : "WM", "name" : "6536", "alias" : "SLC6A9", "SUID" : 309, "selected" : false }, "position" : { "x" : -124.12460760277804, "y" : -107.49699799866562 }, "selected" : false }, { "data" : { "id" : "305", "shared_name" : "79644", "Matching_Attribute" : [ "79644" ], "Classification" : "WMexpanded", "name" : "79644", "alias" : "SRD5A3", "SUID" : 305, "selected" : false }, "position" : { "x" : -284.12460760277804, "y" : 110.50300200133438 }, "selected" : false }, { "data" : { "id" : "301", "shared_name" : "219285", "Matching_Attribute" : [ "219285" ], "Classification" : "WM", "name" : "219285", "alias" : "SAMD9L", "SUID" : 301, "selected" : false }, "position" : { "x" : 354.87539239722196, "y" : -116.49699799866562 }, "selected" : false }, { "data" : { "id" : "297", "shared_name" : "1339", "Matching_Attribute" : [ "1339" ], "Classification" : "WM", "name" : "1339", "alias" : "COX6A2", "SUID" : 297, "selected" : false }, "position" : { "x" : -552.124607602778, "y" : 108.50300200133438 }, "selected" : false }, { "data" : { "id" : "293", "shared_name" : "54802", "Matching_Attribute" : [ "54802" ], "Classification" : "WMexpanded", "name" : "54802", "alias" : "TRIT1", "SUID" : 293, "selected" : false }, "position" : { "x" : -448.12460760277804, "y" : 306.5030020013344 }, "selected" : false }, { "data" : { "id" : "289", "shared_name" : "56052", "Matching_Attribute" : [ "56052" ], "Classification" : "WMexpanded", "name" : "56052", "alias" : "ALG1", "SUID" : 289, "selected" : false }, "position" : { "x" : -383.12460760277804, "y" : -386.4969979986656 }, "selected" : false }, { "data" : { "id" : "285", "shared_name" : "5238", "Matching_Attribute" : [ "5238" ], "Classification" : "WM", "name" : "5238", "alias" : "PGM3", "SUID" : 285, "selected" : false }, "position" : { "x" : -531.124607602778, "y" : -2.49699799866562 }, "selected" : false }, { "data" : { "id" : "281", "shared_name" : "26005", "Matching_Attribute" : [ "26005" ], "Classification" : "WM", "name" : "26005", "alias" : "C2CD3", "SUID" : 281, "selected" : false }, "position" : { "x" : 437.87539239722196, "y" : -73.49699799866562 }, "selected" : false }, { "data" : { "id" : "277", "shared_name" : "285175", "Matching_Attribute" : [ "285175" ], "Classification" : "WMexpanded", "name" : "285175", "alias" : "UNC80", "SUID" : 277, "selected" : false }, "position" : { "x" : -208.12460760277804, "y" : -167.49699799866562 }, "selected" : false }, { "data" : { "id" : "273", "shared_name" : "8869", "Matching_Attribute" : [ "8869" ], "Classification" : "WMexpanded", "name" : "8869", "alias" : "ST3GAL5", "SUID" : 273, "selected" : false }, "position" : { "x" : -486.12460760277804, "y" : -297.4969979986656 }, "selected" : false }, { "data" : { "id" : "269", "shared_name" : "51259", "Matching_Attribute" : [ "51259" ], "Classification" : "WMexpanded", "name" : "51259", "alias" : "TMEM216", "SUID" : 269, "selected" : false }, "position" : { "x" : 369.87539239722196, "y" : -137.49699799866562 }, "selected" : false }, { "data" : { "id" : "265", "shared_name" : "1293", "Matching_Attribute" : [ "1293" ], "Classification" : "WMexpanded", "name" : "1293", "alias" : "COL6A3", "SUID" : 265, "selected" : false }, "position" : { "x" : 283.87539239722196, "y" : -372.4969979986656 }, "selected" : false }, { "data" : { "id" : "261", "shared_name" : "1717", "Matching_Attribute" : [ "1717" ], "Classification" : "WMexpanded", "name" : "1717", "alias" : "DHCR7", "SUID" : 261, "selected" : false }, "position" : { "x" : -310.12460760277804, "y" : -33.49699799866562 }, "selected" : false }, { "data" : { "id" : "257", "shared_name" : "6469", "Matching_Attribute" : [ "6469" ], "Classification" : "WMexpanded", "name" : "6469", "alias" : "SHH", "SUID" : 257, "selected" : false }, "position" : { "x" : 40.87539239722196, "y" : 250.50300200133438 }, "selected" : false }, { "data" : { "id" : "253", "shared_name" : "113235", "Matching_Attribute" : [ "113235" ], "Classification" : "WMexpanded", "name" : "113235", "alias" : "SLC46A1", "SUID" : 253, "selected" : false }, "position" : { "x" : -390.12460760277804, "y" : -141.49699799866562 }, "selected" : false }, { "data" : { "id" : "249", "shared_name" : "1769", "degree_layout" : 7, "Matching_Attribute" : [ "1769" ], "Classification" : "WM", "name" : "1769", "alias" : "DNAH8", "SUID" : 249, "selected" : false }, "position" : { "x" : 245.87539239722196, "y" : -227.49699799866562 }, "selected" : false }, { "data" : { "id" : "245", "shared_name" : "2936", "degree_layout" : 63, "Matching_Attribute" : [ "2936" ], "Classification" : "WMexpanded", "name" : "2936", "alias" : "GSR", "SUID" : 245, "selected" : false }, "position" : { "x" : -135.12460760277804, "y" : 88.50300200133438 }, "selected" : false }, { "data" : { "id" : "241", "shared_name" : "3627", "Matching_Attribute" : [ "3627" ], "Classification" : "WM", "name" : "3627", "alias" : "CXCL10", "SUID" : 241, "selected" : false }, "position" : { "x" : 186.87539239722196, "y" : -186.49699799866562 }, "selected" : false }, { "data" : { "id" : "237", "shared_name" : "5649", "Matching_Attribute" : [ "5649" ], "Classification" : "WMexpanded", "name" : "5649", "alias" : "RELN", "SUID" : 237, "selected" : false }, "position" : { "x" : 68.87539239722196, "y" : -146.49699799866562 }, "selected" : false }, { "data" : { "id" : "233", "shared_name" : "8566", "Matching_Attribute" : [ "8566" ], "Classification" : "WMexpanded", "name" : "8566", "alias" : "PDXK", "SUID" : 233, "selected" : false }, "position" : { "x" : -396.12460760277804, "y" : 382.5030020013344 }, "selected" : false }, { "data" : { "id" : "229", "shared_name" : "1371", "degree_layout" : 35, "Matching_Attribute" : [ "1371" ], "Classification" : "WMexpanded", "name" : "1371", "alias" : "CPOX", "SUID" : 229, "selected" : false }, "position" : { "x" : -271.12460760277804, "y" : 208.50300200133438 }, "selected" : false }, { "data" : { "id" : "225", "shared_name" : "174", "Matching_Attribute" : [ "174" ], "Classification" : "WMexpanded", "name" : "174", "alias" : "AFP", "SUID" : 225, "selected" : false }, "position" : { "x" : -39.12460760277804, "y" : 380.5030020013344 }, "selected" : false }, { "data" : { "id" : "221", "shared_name" : "342035", "Matching_Attribute" : [ "342035" ], "Classification" : "WM", "name" : "342035", "alias" : "GLDN", "SUID" : 221, "selected" : false }, "position" : { "x" : 898.875392397222, "y" : 604.5030020013344 }, "selected" : false }, { "data" : { "id" : "217", "shared_name" : "113278", "Matching_Attribute" : [ "113278" ], "Classification" : "WMexpanded", "name" : "113278", "alias" : "SLC52A3", "SUID" : 217, "selected" : false }, "position" : { "x" : -545.124607602778, "y" : -209.49699799866562 }, "selected" : false }, { "data" : { "id" : "213", "shared_name" : "57165", "degree_layout" : 6, "Matching_Attribute" : [ "57165" ], "Classification" : "WM", "name" : "57165", "alias" : "GJC2", "SUID" : 213, "selected" : false }, "position" : { "x" : 334.87539239722196, "y" : -409.4969979986656 }, "selected" : false }, { "data" : { "id" : "209", "shared_name" : "3431", "degree_layout" : 2, "Matching_Attribute" : [ "3431" ], "Classification" : "WM", "name" : "3431", "alias" : "SP110", "SUID" : 209, "selected" : false }, "position" : { "x" : 709.5104191394929, "y" : 165.34105574602384 }, "selected" : false }, { "data" : { "id" : "205", "shared_name" : "2555", "Matching_Attribute" : [ "2555" ], "Classification" : "WM", "name" : "2555", "alias" : "GABRA2", "SUID" : 205, "selected" : false }, "position" : { "x" : -100.12460760277804, "y" : -99.49699799866562 }, "selected" : false }, { "data" : { "id" : "201", "shared_name" : "100131801", "degree_layout" : 148, "Matching_Attribute" : [ "100131801" ], "Classification" : "WM", "name" : "100131801", "alias" : "PET100", "SUID" : 201, "selected" : false }, "position" : { "x" : -172.12460760277804, "y" : 112.50300200133438 }, "selected" : false }, { "data" : { "id" : "196", "shared_name" : "84188", "degree_layout" : 74, "Matching_Attribute" : [ "84188" ], "Classification" : "WM", "name" : "84188", "alias" : "FAR1", "SUID" : 196, "selected" : false }, "position" : { "x" : -158.12460760277804, "y" : 60.50300200133438 }, "selected" : false } ], "edges" : [ { "data" : { "id" : "6226", "source" : "6185", "target" : "533", "shared_name" : "4035 (interacts with) 4036", "name" : "4035 (interacts with) 4036", "interaction" : "interacts with", "SUID" : 6226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6222", "source" : "6185", "target" : "2677", "shared_name" : "4035 (interacts with) 7436", "name" : "4035 (interacts with) 7436", "interaction" : "interacts with", "SUID" : 6222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6218", "source" : "6185", "target" : "4897", "shared_name" : "4035 (interacts with) 55149", "name" : "4035 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 6218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6214", "source" : "6185", "target" : "5969", "shared_name" : "4035 (interacts with) 10382", "name" : "4035 (interacts with) 10382", "interaction" : "interacts with", "SUID" : 6214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6210", "source" : "6185", "target" : "3365", "shared_name" : "4035 (interacts with) 29843", "name" : "4035 (interacts with) 29843", "interaction" : "interacts with", "SUID" : 6210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6206", "source" : "6185", "target" : "4501", "shared_name" : "4035 (interacts with) 25821", "name" : "4035 (interacts with) 25821", "interaction" : "interacts with", "SUID" : 6206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6202", "source" : "6185", "target" : "1777", "shared_name" : "4035 (interacts with) 4153", "name" : "4035 (interacts with) 4153", "interaction" : "interacts with", "SUID" : 6202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6198", "source" : "6185", "target" : "665", "shared_name" : "4035 (interacts with) 3309", "name" : "4035 (interacts with) 3309", "interaction" : "interacts with", "SUID" : 6198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6193", "source" : "6185", "target" : "5157", "shared_name" : "4035 (interacts with) 1600", "name" : "4035 (interacts with) 1600", "interaction" : "interacts with", "SUID" : 6193, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6234", "source" : "6181", "target" : "6073", "shared_name" : "84987 (interacts with) 92170", "name" : "84987 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 6234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6230", "source" : "6181", "target" : "521", "shared_name" : "84987 (interacts with) 85476", "name" : "84987 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 6230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6274", "source" : "6177", "target" : "5333", "shared_name" : "50628 (interacts with) 5591", "name" : "50628 (interacts with) 5591", "interaction" : "interacts with", "SUID" : 6274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6270", "source" : "6177", "target" : "1345", "shared_name" : "50628 (interacts with) 6607", "name" : "50628 (interacts with) 6607", "interaction" : "interacts with", "SUID" : 6270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6266", "source" : "6177", "target" : "1349", "shared_name" : "50628 (interacts with) 6606", "name" : "50628 (interacts with) 6606", "interaction" : "interacts with", "SUID" : 6266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6262", "source" : "6177", "target" : "4549", "shared_name" : "50628 (interacts with) 5903", "name" : "50628 (interacts with) 5903", "interaction" : "interacts with", "SUID" : 6262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6258", "source" : "6177", "target" : "4005", "shared_name" : "50628 (interacts with) 23636", "name" : "50628 (interacts with) 23636", "interaction" : "interacts with", "SUID" : 6258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6254", "source" : "6177", "target" : "5445", "shared_name" : "50628 (interacts with) 8021", "name" : "50628 (interacts with) 8021", "interaction" : "interacts with", "SUID" : 6254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6250", "source" : "6177", "target" : "5873", "shared_name" : "50628 (interacts with) 5827", "name" : "50628 (interacts with) 5827", "interaction" : "interacts with", "SUID" : 6250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6246", "source" : "6177", "target" : "1265", "shared_name" : "50628 (interacts with) 79594", "name" : "50628 (interacts with) 79594", "interaction" : "interacts with", "SUID" : 6246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6242", "source" : "6177", "target" : "5489", "shared_name" : "50628 (interacts with) 2259", "name" : "50628 (interacts with) 2259", "interaction" : "interacts with", "SUID" : 6242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6238", "source" : "6177", "target" : "1541", "shared_name" : "50628 (interacts with) 958", "name" : "50628 (interacts with) 958", "interaction" : "interacts with", "SUID" : 6238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6390", "source" : "6169", "target" : "5569", "shared_name" : "4088 (interacts with) 59345", "name" : "4088 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 6390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6386", "source" : "6169", "target" : "973", "shared_name" : "4088 (interacts with) 5595", "name" : "4088 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 6386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6382", "source" : "6169", "target" : "4065", "shared_name" : "4088 (interacts with) 7124", "name" : "4088 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 6382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6378", "source" : "6169", "target" : "3305", "shared_name" : "4088 (interacts with) 7040", "name" : "4088 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 6378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6374", "source" : "6169", "target" : "2153", "shared_name" : "4088 (interacts with) 7042", "name" : "4088 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 6374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6370", "source" : "6169", "target" : "4949", "shared_name" : "4088 (interacts with) 5970", "name" : "4088 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 6370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6366", "source" : "6169", "target" : "3017", "shared_name" : "4088 (interacts with) 4790", "name" : "4088 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 6366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6362", "source" : "6169", "target" : "5361", "shared_name" : "4088 (interacts with) 5604", "name" : "4088 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 6362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6358", "source" : "6169", "target" : "3409", "shared_name" : "4088 (interacts with) 7043", "name" : "4088 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 6358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6354", "source" : "6169", "target" : "981", "shared_name" : "4088 (interacts with) 7157", "name" : "4088 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 6354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6350", "source" : "6169", "target" : "2613", "shared_name" : "4088 (interacts with) 472", "name" : "4088 (interacts with) 472", "interaction" : "interacts with", "SUID" : 6350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6346", "source" : "6169", "target" : "569", "shared_name" : "4088 (interacts with) 7048", "name" : "4088 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 6346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6342", "source" : "6169", "target" : "5625", "shared_name" : "4088 (interacts with) 595", "name" : "4088 (interacts with) 595", "interaction" : "interacts with", "SUID" : 6342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6338", "source" : "6169", "target" : "4853", "shared_name" : "4088 (interacts with) 545", "name" : "4088 (interacts with) 545", "interaction" : "interacts with", "SUID" : 6338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6334", "source" : "6169", "target" : "4533", "shared_name" : "4088 (interacts with) 4089", "name" : "4088 (interacts with) 4089", "interaction" : "interacts with", "SUID" : 6334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6330", "source" : "6169", "target" : "5445", "shared_name" : "4088 (interacts with) 8021", "name" : "4088 (interacts with) 8021", "interaction" : "interacts with", "SUID" : 6330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6326", "source" : "6169", "target" : "3865", "shared_name" : "4088 (interacts with) 7080", "name" : "4088 (interacts with) 7080", "interaction" : "interacts with", "SUID" : 6326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6322", "source" : "6169", "target" : "4021", "shared_name" : "4088 (interacts with) 203068", "name" : "4088 (interacts with) 203068", "interaction" : "interacts with", "SUID" : 6322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6318", "source" : "6169", "target" : "3925", "shared_name" : "4088 (interacts with) 1051", "name" : "4088 (interacts with) 1051", "interaction" : "interacts with", "SUID" : 6318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6314", "source" : "6169", "target" : "5965", "shared_name" : "4088 (interacts with) 596", "name" : "4088 (interacts with) 596", "interaction" : "interacts with", "SUID" : 6314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6310", "source" : "6169", "target" : "5449", "shared_name" : "4088 (interacts with) 923", "name" : "4088 (interacts with) 923", "interaction" : "interacts with", "SUID" : 6310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6306", "source" : "6169", "target" : "4505", "shared_name" : "4088 (interacts with) 5190", "name" : "4088 (interacts with) 5190", "interaction" : "interacts with", "SUID" : 6306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6302", "source" : "6169", "target" : "1465", "shared_name" : "4088 (interacts with) 9839", "name" : "4088 (interacts with) 9839", "interaction" : "interacts with", "SUID" : 6302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6298", "source" : "6169", "target" : "2625", "shared_name" : "4088 (interacts with) 3065", "name" : "4088 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 6298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6294", "source" : "6169", "target" : "1829", "shared_name" : "4088 (interacts with) 7421", "name" : "4088 (interacts with) 7421", "interaction" : "interacts with", "SUID" : 6294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6290", "source" : "6169", "target" : "5673", "shared_name" : "4088 (interacts with) 6497", "name" : "4088 (interacts with) 6497", "interaction" : "interacts with", "SUID" : 6290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6286", "source" : "6169", "target" : "773", "shared_name" : "4088 (interacts with) 29072", "name" : "4088 (interacts with) 29072", "interaction" : "interacts with", "SUID" : 6286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6282", "source" : "6169", "target" : "3349", "shared_name" : "4088 (interacts with) 8878", "name" : "4088 (interacts with) 8878", "interaction" : "interacts with", "SUID" : 6282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6278", "source" : "6169", "target" : "1893", "shared_name" : "4088 (interacts with) 1387", "name" : "4088 (interacts with) 1387", "interaction" : "interacts with", "SUID" : 6278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6442", "source" : "6165", "target" : "4641", "shared_name" : "2629 (interacts with) 55331", "name" : "2629 (interacts with) 55331", "interaction" : "interacts with", "SUID" : 6442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6438", "source" : "6165", "target" : "5637", "shared_name" : "2629 (interacts with) 6609", "name" : "2629 (interacts with) 6609", "interaction" : "interacts with", "SUID" : 6438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6434", "source" : "6165", "target" : "5221", "shared_name" : "2629 (interacts with) 285362", "name" : "2629 (interacts with) 285362", "interaction" : "interacts with", "SUID" : 6434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6430", "source" : "6165", "target" : "897", "shared_name" : "2629 (interacts with) 3073", "name" : "2629 (interacts with) 3073", "interaction" : "interacts with", "SUID" : 6430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6426", "source" : "6165", "target" : "3025", "shared_name" : "2629 (interacts with) 55627", "name" : "2629 (interacts with) 55627", "interaction" : "interacts with", "SUID" : 6426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6422", "source" : "6165", "target" : "1257", "shared_name" : "2629 (interacts with) 3098", "name" : "2629 (interacts with) 3098", "interaction" : "interacts with", "SUID" : 6422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6418", "source" : "6165", "target" : "3605", "shared_name" : "2629 (interacts with) 7841", "name" : "2629 (interacts with) 7841", "interaction" : "interacts with", "SUID" : 6418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6414", "source" : "6165", "target" : "1193", "shared_name" : "2629 (interacts with) 5660", "name" : "2629 (interacts with) 5660", "interaction" : "interacts with", "SUID" : 6414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6410", "source" : "6165", "target" : "5661", "shared_name" : "2629 (interacts with) 2717", "name" : "2629 (interacts with) 2717", "interaction" : "interacts with", "SUID" : 6410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6406", "source" : "6165", "target" : "4193", "shared_name" : "2629 (interacts with) 2720", "name" : "2629 (interacts with) 2720", "interaction" : "interacts with", "SUID" : 6406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6402", "source" : "6165", "target" : "3481", "shared_name" : "2629 (interacts with) 6513", "name" : "2629 (interacts with) 6513", "interaction" : "interacts with", "SUID" : 6402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6398", "source" : "6165", "target" : "1433", "shared_name" : "2629 (interacts with) 6515", "name" : "2629 (interacts with) 6515", "interaction" : "interacts with", "SUID" : 6398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6394", "source" : "6165", "target" : "3645", "shared_name" : "2629 (interacts with) 4758", "name" : "2629 (interacts with) 4758", "interaction" : "interacts with", "SUID" : 6394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6450", "source" : "6161", "target" : "1465", "shared_name" : "6663 (interacts with) 9839", "name" : "6663 (interacts with) 9839", "interaction" : "interacts with", "SUID" : 6450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6446", "source" : "6161", "target" : "3677", "shared_name" : "6663 (interacts with) 673", "name" : "6663 (interacts with) 673", "interaction" : "interacts with", "SUID" : 6446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6610", "source" : "6157", "target" : "3445", "shared_name" : "3735 (interacts with) 5091", "name" : "3735 (interacts with) 5091", "interaction" : "interacts with", "SUID" : 6610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6606", "source" : "6157", "target" : "1301", "shared_name" : "3735 (interacts with) 5095", "name" : "3735 (interacts with) 5095", "interaction" : "interacts with", "SUID" : 6606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6602", "source" : "6157", "target" : "1085", "shared_name" : "3735 (interacts with) 9377", "name" : "3735 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 6602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6598", "source" : "6157", "target" : "3541", "shared_name" : "3735 (interacts with) 4191", "name" : "3735 (interacts with) 4191", "interaction" : "interacts with", "SUID" : 6598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6594", "source" : "6157", "target" : "1037", "shared_name" : "3735 (interacts with) 387787", "name" : "3735 (interacts with) 387787", "interaction" : "interacts with", "SUID" : 6594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6590", "source" : "6157", "target" : "1577", "shared_name" : "3735 (interacts with) 51091", "name" : "3735 (interacts with) 51091", "interaction" : "interacts with", "SUID" : 6590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6586", "source" : "6157", "target" : "5189", "shared_name" : "3735 (interacts with) 57176", "name" : "3735 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 6586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6582", "source" : "6157", "target" : "1129", "shared_name" : "3735 (interacts with) 57505", "name" : "3735 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 6582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6578", "source" : "6157", "target" : "721", "shared_name" : "3735 (interacts with) 79731", "name" : "3735 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 6578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6574", "source" : "6157", "target" : "5677", "shared_name" : "3735 (interacts with) 5189", "name" : "3735 (interacts with) 5189", "interaction" : "interacts with", "SUID" : 6574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6570", "source" : "6157", "target" : "1197", "shared_name" : "3735 (interacts with) 79587", "name" : "3735 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 6570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6566", "source" : "6157", "target" : "1601", "shared_name" : "3735 (interacts with) 7415", "name" : "3735 (interacts with) 7415", "interaction" : "interacts with", "SUID" : 6566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6562", "source" : "6157", "target" : "4613", "shared_name" : "3735 (interacts with) 84896", "name" : "3735 (interacts with) 84896", "interaction" : "interacts with", "SUID" : 6562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6558", "source" : "6157", "target" : "2377", "shared_name" : "3735 (interacts with) 6687", "name" : "3735 (interacts with) 6687", "interaction" : "interacts with", "SUID" : 6558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6554", "source" : "6157", "target" : "4869", "shared_name" : "3735 (interacts with) 92935", "name" : "3735 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 6554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6550", "source" : "6157", "target" : "3633", "shared_name" : "3735 (interacts with) 51067", "name" : "3735 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 6550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6546", "source" : "6157", "target" : "6001", "shared_name" : "3735 (interacts with) 55157", "name" : "3735 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 6546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6542", "source" : "6157", "target" : "4085", "shared_name" : "3735 (interacts with) 55699", "name" : "3735 (interacts with) 55699", "interaction" : "interacts with", "SUID" : 6542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6538", "source" : "6157", "target" : "1581", "shared_name" : "3735 (interacts with) 7407", "name" : "3735 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 6538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6534", "source" : "6157", "target" : "4621", "shared_name" : "3735 (interacts with) 57038", "name" : "3735 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 6534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6530", "source" : "6157", "target" : "4693", "shared_name" : "3735 (interacts with) 6301", "name" : "3735 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 6530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6526", "source" : "6157", "target" : "5605", "shared_name" : "3735 (interacts with) 51601", "name" : "3735 (interacts with) 51601", "interaction" : "interacts with", "SUID" : 6526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6522", "source" : "6157", "target" : "1013", "shared_name" : "3735 (interacts with) 6898", "name" : "3735 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 6522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6518", "source" : "6157", "target" : "741", "shared_name" : "3735 (interacts with) 4830", "name" : "3735 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 6518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6514", "source" : "6157", "target" : "1385", "shared_name" : "3735 (interacts with) 6520", "name" : "3735 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 6514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6510", "source" : "6157", "target" : "3077", "shared_name" : "3735 (interacts with) 6506", "name" : "3735 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 6510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6506", "source" : "6157", "target" : "1885", "shared_name" : "3735 (interacts with) 8604", "name" : "3735 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 6506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6502", "source" : "6157", "target" : "461", "shared_name" : "3735 (interacts with) 5198", "name" : "3735 (interacts with) 5198", "interaction" : "interacts with", "SUID" : 6502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6498", "source" : "6157", "target" : "2577", "shared_name" : "3735 (interacts with) 4337", "name" : "3735 (interacts with) 4337", "interaction" : "interacts with", "SUID" : 6498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6494", "source" : "6157", "target" : "2049", "shared_name" : "3735 (interacts with) 4552", "name" : "3735 (interacts with) 4552", "interaction" : "interacts with", "SUID" : 6494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6490", "source" : "6157", "target" : "4273", "shared_name" : "3735 (interacts with) 4548", "name" : "3735 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 6490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6486", "source" : "6157", "target" : "3529", "shared_name" : "3735 (interacts with) 7965", "name" : "3735 (interacts with) 7965", "interaction" : "interacts with", "SUID" : 6486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6482", "source" : "6157", "target" : "3169", "shared_name" : "3735 (interacts with) 1615", "name" : "3735 (interacts with) 1615", "interaction" : "interacts with", "SUID" : 6482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6478", "source" : "6157", "target" : "4593", "shared_name" : "3735 (interacts with) 2058", "name" : "3735 (interacts with) 2058", "interaction" : "interacts with", "SUID" : 6478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6474", "source" : "6157", "target" : "3641", "shared_name" : "3735 (interacts with) 4141", "name" : "3735 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 6474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6470", "source" : "6157", "target" : "3157", "shared_name" : "3735 (interacts with) 9255", "name" : "3735 (interacts with) 9255", "interaction" : "interacts with", "SUID" : 6470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6466", "source" : "6157", "target" : "4597", "shared_name" : "3735 (interacts with) 3376", "name" : "3735 (interacts with) 3376", "interaction" : "interacts with", "SUID" : 6466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6462", "source" : "6157", "target" : "4349", "shared_name" : "3735 (interacts with) 5859", "name" : "3735 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 6462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6458", "source" : "6157", "target" : "3649", "shared_name" : "3735 (interacts with) 51520", "name" : "3735 (interacts with) 51520", "interaction" : "interacts with", "SUID" : 6458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6454", "source" : "6157", "target" : "1089", "shared_name" : "3735 (interacts with) 5917", "name" : "3735 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 6454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6614", "source" : "6153", "target" : "5577", "shared_name" : "9915 (interacts with) 3091", "name" : "9915 (interacts with) 3091", "interaction" : "interacts with", "SUID" : 6614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6718", "source" : "6149", "target" : "973", "shared_name" : "335 (interacts with) 5595", "name" : "335 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 6718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6714", "source" : "6149", "target" : "5649", "shared_name" : "335 (interacts with) 5265", "name" : "335 (interacts with) 5265", "interaction" : "interacts with", "SUID" : 6714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6710", "source" : "6149", "target" : "4949", "shared_name" : "335 (interacts with) 5970", "name" : "335 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 6710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6706", "source" : "6149", "target" : "4213", "shared_name" : "335 (interacts with) 5295", "name" : "335 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 6706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6702", "source" : "6149", "target" : "5225", "shared_name" : "335 (interacts with) 5290", "name" : "335 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 6702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6698", "source" : "6149", "target" : "5081", "shared_name" : "335 (interacts with) 5594", "name" : "335 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 6698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6694", "source" : "6149", "target" : "4857", "shared_name" : "335 (interacts with) 5573", "name" : "335 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 6694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6690", "source" : "6149", "target" : "4065", "shared_name" : "335 (interacts with) 7124", "name" : "335 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 6690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6686", "source" : "6149", "target" : "2957", "shared_name" : "335 (interacts with) 5465", "name" : "335 (interacts with) 5465", "interaction" : "interacts with", "SUID" : 6686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6682", "source" : "6149", "target" : "4589", "shared_name" : "335 (interacts with) 8431", "name" : "335 (interacts with) 8431", "interaction" : "interacts with", "SUID" : 6682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6678", "source" : "6149", "target" : "4681", "shared_name" : "335 (interacts with) 4843", "name" : "335 (interacts with) 4843", "interaction" : "interacts with", "SUID" : 6678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6674", "source" : "6149", "target" : "4097", "shared_name" : "335 (interacts with) 9611", "name" : "335 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 6674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6670", "source" : "6149", "target" : "5321", "shared_name" : "335 (interacts with) 5743", "name" : "335 (interacts with) 5743", "interaction" : "interacts with", "SUID" : 6670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6666", "source" : "6149", "target" : "5133", "shared_name" : "335 (interacts with) 51", "name" : "335 (interacts with) 51", "interaction" : "interacts with", "SUID" : 6666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6662", "source" : "6149", "target" : "3341", "shared_name" : "335 (interacts with) 8504", "name" : "335 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 6662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6658", "source" : "6149", "target" : "3329", "shared_name" : "335 (interacts with) 5824", "name" : "335 (interacts with) 5824", "interaction" : "interacts with", "SUID" : 6658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6654", "source" : "6149", "target" : "341", "shared_name" : "335 (interacts with) 4547", "name" : "335 (interacts with) 4547", "interaction" : "interacts with", "SUID" : 6654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6650", "source" : "6149", "target" : "653", "shared_name" : "335 (interacts with) 6948", "name" : "335 (interacts with) 6948", "interaction" : "interacts with", "SUID" : 6650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6646", "source" : "6149", "target" : "2277", "shared_name" : "335 (interacts with) 686", "name" : "335 (interacts with) 686", "interaction" : "interacts with", "SUID" : 6646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6642", "source" : "6149", "target" : "6025", "shared_name" : "335 (interacts with) 80704", "name" : "335 (interacts with) 80704", "interaction" : "interacts with", "SUID" : 6642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6638", "source" : "6149", "target" : "1097", "shared_name" : "335 (interacts with) 79718", "name" : "335 (interacts with) 79718", "interaction" : "interacts with", "SUID" : 6638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6634", "source" : "6149", "target" : "6185", "shared_name" : "335 (interacts with) 4035", "name" : "335 (interacts with) 4035", "interaction" : "interacts with", "SUID" : 6634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6630", "source" : "6149", "target" : "533", "shared_name" : "335 (interacts with) 4036", "name" : "335 (interacts with) 4036", "interaction" : "interacts with", "SUID" : 6630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6626", "source" : "6149", "target" : "2373", "shared_name" : "335 (interacts with) 64801", "name" : "335 (interacts with) 64801", "interaction" : "interacts with", "SUID" : 6626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6622", "source" : "6149", "target" : "1925", "shared_name" : "335 (interacts with) 948", "name" : "335 (interacts with) 948", "interaction" : "interacts with", "SUID" : 6622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6618", "source" : "6149", "target" : "5813", "shared_name" : "335 (interacts with) 128240", "name" : "335 (interacts with) 128240", "interaction" : "interacts with", "SUID" : 6618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6738", "source" : "6137", "target" : "4001", "shared_name" : "29954 (interacts with) 79709", "name" : "29954 (interacts with) 79709", "interaction" : "interacts with", "SUID" : 6738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6734", "source" : "6137", "target" : "4741", "shared_name" : "29954 (interacts with) 79147", "name" : "29954 (interacts with) 79147", "interaction" : "interacts with", "SUID" : 6734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6730", "source" : "6137", "target" : "1033", "shared_name" : "29954 (interacts with) 9215", "name" : "29954 (interacts with) 9215", "interaction" : "interacts with", "SUID" : 6730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6726", "source" : "6137", "target" : "4481", "shared_name" : "29954 (interacts with) 55624", "name" : "29954 (interacts with) 55624", "interaction" : "interacts with", "SUID" : 6726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6722", "source" : "6137", "target" : "4337", "shared_name" : "29954 (interacts with) 84197", "name" : "29954 (interacts with) 84197", "interaction" : "interacts with", "SUID" : 6722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6746", "source" : "6133", "target" : "5645", "shared_name" : "54658 (interacts with) 9420", "name" : "54658 (interacts with) 9420", "interaction" : "interacts with", "SUID" : 6746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6742", "source" : "6133", "target" : "305", "shared_name" : "54658 (interacts with) 79644", "name" : "54658 (interacts with) 79644", "interaction" : "interacts with", "SUID" : 6742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6858", "source" : "6129", "target" : "5693", "shared_name" : "2263 (interacts with) 92335", "name" : "2263 (interacts with) 92335", "interaction" : "interacts with", "SUID" : 6858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6854", "source" : "6129", "target" : "4581", "shared_name" : "2263 (interacts with) 29110", "name" : "2263 (interacts with) 29110", "interaction" : "interacts with", "SUID" : 6854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6850", "source" : "6129", "target" : "725", "shared_name" : "2263 (interacts with) 54209", "name" : "2263 (interacts with) 54209", "interaction" : "interacts with", "SUID" : 6850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6846", "source" : "6129", "target" : "5073", "shared_name" : "2263 (interacts with) 7305", "name" : "2263 (interacts with) 7305", "interaction" : "interacts with", "SUID" : 6846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6842", "source" : "6129", "target" : "637", "shared_name" : "2263 (interacts with) 6654", "name" : "2263 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 6842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6838", "source" : "6129", "target" : "1069", "shared_name" : "2263 (interacts with) 5879", "name" : "2263 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 6838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6834", "source" : "6129", "target" : "5225", "shared_name" : "2263 (interacts with) 5290", "name" : "2263 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 6834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6830", "source" : "6129", "target" : "3465", "shared_name" : "2263 (interacts with) 5296", "name" : "2263 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 6830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6826", "source" : "6129", "target" : "4213", "shared_name" : "2263 (interacts with) 5295", "name" : "2263 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 6826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6822", "source" : "6129", "target" : "4293", "shared_name" : "2263 (interacts with) 5156", "name" : "2263 (interacts with) 5156", "interaction" : "interacts with", "SUID" : 6822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6818", "source" : "6129", "target" : "5973", "shared_name" : "2263 (interacts with) 5155", "name" : "2263 (interacts with) 5155", "interaction" : "interacts with", "SUID" : 6818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6814", "source" : "6129", "target" : "2173", "shared_name" : "2263 (interacts with) 5159", "name" : "2263 (interacts with) 5159", "interaction" : "interacts with", "SUID" : 6814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6810", "source" : "6129", "target" : "4385", "shared_name" : "2263 (interacts with) 3084", "name" : "2263 (interacts with) 3084", "interaction" : "interacts with", "SUID" : 6810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6806", "source" : "6129", "target" : "3569", "shared_name" : "2263 (interacts with) 4893", "name" : "2263 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 6806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6802", "source" : "6129", "target" : "2773", "shared_name" : "2263 (interacts with) 4908", "name" : "2263 (interacts with) 4908", "interaction" : "interacts with", "SUID" : 6802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6798", "source" : "6129", "target" : "4209", "shared_name" : "2263 (interacts with) 4915", "name" : "2263 (interacts with) 4915", "interaction" : "interacts with", "SUID" : 6798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6794", "source" : "6129", "target" : "973", "shared_name" : "2263 (interacts with) 5595", "name" : "2263 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 6794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6790", "source" : "6129", "target" : "5081", "shared_name" : "2263 (interacts with) 5594", "name" : "2263 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 6790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6786", "source" : "6129", "target" : "3573", "shared_name" : "2263 (interacts with) 3845", "name" : "2263 (interacts with) 3845", "interaction" : "interacts with", "SUID" : 6786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6782", "source" : "6129", "target" : "3457", "shared_name" : "2263 (interacts with) 22914", "name" : "2263 (interacts with) 22914", "interaction" : "interacts with", "SUID" : 6782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6778", "source" : "6129", "target" : "1209", "shared_name" : "2263 (interacts with) 51763", "name" : "2263 (interacts with) 51763", "interaction" : "interacts with", "SUID" : 6778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6774", "source" : "6129", "target" : "3393", "shared_name" : "2263 (interacts with) 9402", "name" : "2263 (interacts with) 9402", "interaction" : "interacts with", "SUID" : 6774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6770", "source" : "6129", "target" : "4457", "shared_name" : "2263 (interacts with) 3082", "name" : "2263 (interacts with) 3082", "interaction" : "interacts with", "SUID" : 6770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6766", "source" : "6129", "target" : "3685", "shared_name" : "2263 (interacts with) 3265", "name" : "2263 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 6766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6762", "source" : "6129", "target" : "5569", "shared_name" : "2263 (interacts with) 59345", "name" : "2263 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 6762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6758", "source" : "6129", "target" : "4565", "shared_name" : "2263 (interacts with) 57498", "name" : "2263 (interacts with) 57498", "interaction" : "interacts with", "SUID" : 6758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6754", "source" : "6129", "target" : "6121", "shared_name" : "2263 (interacts with) 2260", "name" : "2263 (interacts with) 2260", "interaction" : "interacts with", "SUID" : 6754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6750", "source" : "6129", "target" : "5313", "shared_name" : "2263 (interacts with) 6197", "name" : "2263 (interacts with) 6197", "interaction" : "interacts with", "SUID" : 6750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6970", "source" : "6125", "target" : "2009", "shared_name" : "22907 (interacts with) 79133", "name" : "22907 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 6970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6966", "source" : "6125", "target" : "1197", "shared_name" : "22907 (interacts with) 79587", "name" : "22907 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 6966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6962", "source" : "6125", "target" : "5845", "shared_name" : "22907 (interacts with) 4714", "name" : "22907 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 6962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6958", "source" : "6125", "target" : "4869", "shared_name" : "22907 (interacts with) 92935", "name" : "22907 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 6958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6954", "source" : "6125", "target" : "2109", "shared_name" : "22907 (interacts with) 51103", "name" : "22907 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 6954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6950", "source" : "6125", "target" : "4757", "shared_name" : "22907 (interacts with) 9997", "name" : "22907 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 6950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6946", "source" : "6125", "target" : "4229", "shared_name" : "22907 (interacts with) 3035", "name" : "22907 (interacts with) 3035", "interaction" : "interacts with", "SUID" : 6946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6942", "source" : "6125", "target" : "4017", "shared_name" : "22907 (interacts with) 4719", "name" : "22907 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 6942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6938", "source" : "6125", "target" : "2021", "shared_name" : "22907 (interacts with) 5428", "name" : "22907 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 6938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6934", "source" : "6125", "target" : "521", "shared_name" : "22907 (interacts with) 85476", "name" : "22907 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 6934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6930", "source" : "6125", "target" : "2689", "shared_name" : "22907 (interacts with) 4715", "name" : "22907 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 6930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6926", "source" : "6125", "target" : "1869", "shared_name" : "22907 (interacts with) 4729", "name" : "22907 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 6926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6922", "source" : "6125", "target" : "6073", "shared_name" : "22907 (interacts with) 92170", "name" : "22907 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 6922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6918", "source" : "6125", "target" : "5409", "shared_name" : "22907 (interacts with) 9734", "name" : "22907 (interacts with) 9734", "interaction" : "interacts with", "SUID" : 6918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6914", "source" : "6125", "target" : "2797", "shared_name" : "22907 (interacts with) 4728", "name" : "22907 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 6914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6910", "source" : "6125", "target" : "3973", "shared_name" : "22907 (interacts with) 55572", "name" : "22907 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 6910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6906", "source" : "6125", "target" : "4069", "shared_name" : "22907 (interacts with) 374291", "name" : "22907 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 6906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6902", "source" : "6125", "target" : "5853", "shared_name" : "22907 (interacts with) 4709", "name" : "22907 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 6902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6898", "source" : "6125", "target" : "2753", "shared_name" : "22907 (interacts with) 4720", "name" : "22907 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 6898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6894", "source" : "6125", "target" : "3545", "shared_name" : "22907 (interacts with) 708", "name" : "22907 (interacts with) 708", "interaction" : "interacts with", "SUID" : 6894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6890", "source" : "6125", "target" : "4897", "shared_name" : "22907 (interacts with) 55149", "name" : "22907 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 6890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6886", "source" : "6125", "target" : "2741", "shared_name" : "22907 (interacts with) 4695", "name" : "22907 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 6886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6882", "source" : "6125", "target" : "5085", "shared_name" : "22907 (interacts with) 56652", "name" : "22907 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 6882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6878", "source" : "6125", "target" : "477", "shared_name" : "22907 (interacts with) 51021", "name" : "22907 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 6878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6874", "source" : "6125", "target" : "5189", "shared_name" : "22907 (interacts with) 57176", "name" : "22907 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 6874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6870", "source" : "6125", "target" : "1341", "shared_name" : "22907 (interacts with) 5009", "name" : "22907 (interacts with) 5009", "interaction" : "interacts with", "SUID" : 6870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6866", "source" : "6125", "target" : "4061", "shared_name" : "22907 (interacts with) 4705", "name" : "22907 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 6866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6862", "source" : "6125", "target" : "721", "shared_name" : "22907 (interacts with) 79731", "name" : "22907 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 6862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7090", "source" : "6121", "target" : "5693", "shared_name" : "2260 (interacts with) 92335", "name" : "2260 (interacts with) 92335", "interaction" : "interacts with", "SUID" : 7090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7086", "source" : "6121", "target" : "4581", "shared_name" : "2260 (interacts with) 29110", "name" : "2260 (interacts with) 29110", "interaction" : "interacts with", "SUID" : 7086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7082", "source" : "6121", "target" : "1429", "shared_name" : "2260 (interacts with) 65125", "name" : "2260 (interacts with) 65125", "interaction" : "interacts with", "SUID" : 7082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7078", "source" : "6121", "target" : "6129", "shared_name" : "2260 (interacts with) 2263", "name" : "2260 (interacts with) 2263", "interaction" : "interacts with", "SUID" : 7078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7074", "source" : "6121", "target" : "5361", "shared_name" : "2260 (interacts with) 5604", "name" : "2260 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 7074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7070", "source" : "6121", "target" : "2089", "shared_name" : "2260 (interacts with) 3939", "name" : "2260 (interacts with) 3939", "interaction" : "interacts with", "SUID" : 7070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7066", "source" : "6121", "target" : "725", "shared_name" : "2260 (interacts with) 54209", "name" : "2260 (interacts with) 54209", "interaction" : "interacts with", "SUID" : 7066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7062", "source" : "6121", "target" : "5073", "shared_name" : "2260 (interacts with) 7305", "name" : "2260 (interacts with) 7305", "interaction" : "interacts with", "SUID" : 7062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7058", "source" : "6121", "target" : "637", "shared_name" : "2260 (interacts with) 6654", "name" : "2260 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 7058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7054", "source" : "6121", "target" : "817", "shared_name" : "2260 (interacts with) 5728", "name" : "2260 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 7054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7050", "source" : "6121", "target" : "1069", "shared_name" : "2260 (interacts with) 5879", "name" : "2260 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 7050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7046", "source" : "6121", "target" : "3465", "shared_name" : "2260 (interacts with) 5296", "name" : "2260 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 7046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7042", "source" : "6121", "target" : "5225", "shared_name" : "2260 (interacts with) 5290", "name" : "2260 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 7042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7038", "source" : "6121", "target" : "4213", "shared_name" : "2260 (interacts with) 5295", "name" : "2260 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 7038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7034", "source" : "6121", "target" : "2773", "shared_name" : "2260 (interacts with) 4908", "name" : "2260 (interacts with) 4908", "interaction" : "interacts with", "SUID" : 7034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7030", "source" : "6121", "target" : "4209", "shared_name" : "2260 (interacts with) 4915", "name" : "2260 (interacts with) 4915", "interaction" : "interacts with", "SUID" : 7030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7026", "source" : "6121", "target" : "5973", "shared_name" : "2260 (interacts with) 5155", "name" : "2260 (interacts with) 5155", "interaction" : "interacts with", "SUID" : 7026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7022", "source" : "6121", "target" : "2173", "shared_name" : "2260 (interacts with) 5159", "name" : "2260 (interacts with) 5159", "interaction" : "interacts with", "SUID" : 7022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7018", "source" : "6121", "target" : "4293", "shared_name" : "2260 (interacts with) 5156", "name" : "2260 (interacts with) 5156", "interaction" : "interacts with", "SUID" : 7018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7014", "source" : "6121", "target" : "3569", "shared_name" : "2260 (interacts with) 4893", "name" : "2260 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 7014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7010", "source" : "6121", "target" : "4385", "shared_name" : "2260 (interacts with) 3084", "name" : "2260 (interacts with) 3084", "interaction" : "interacts with", "SUID" : 7010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7006", "source" : "6121", "target" : "2197", "shared_name" : "2260 (interacts with) 4684", "name" : "2260 (interacts with) 4684", "interaction" : "interacts with", "SUID" : 7006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7002", "source" : "6121", "target" : "3457", "shared_name" : "2260 (interacts with) 22914", "name" : "2260 (interacts with) 22914", "interaction" : "interacts with", "SUID" : 7002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6998", "source" : "6121", "target" : "3961", "shared_name" : "2260 (interacts with) 3897", "name" : "2260 (interacts with) 3897", "interaction" : "interacts with", "SUID" : 6998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6994", "source" : "6121", "target" : "3573", "shared_name" : "2260 (interacts with) 3845", "name" : "2260 (interacts with) 3845", "interaction" : "interacts with", "SUID" : 6994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6990", "source" : "6121", "target" : "1209", "shared_name" : "2260 (interacts with) 51763", "name" : "2260 (interacts with) 51763", "interaction" : "interacts with", "SUID" : 6990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6986", "source" : "6121", "target" : "4457", "shared_name" : "2260 (interacts with) 3082", "name" : "2260 (interacts with) 3082", "interaction" : "interacts with", "SUID" : 6986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6982", "source" : "6121", "target" : "3685", "shared_name" : "2260 (interacts with) 3265", "name" : "2260 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 6982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6978", "source" : "6121", "target" : "3393", "shared_name" : "2260 (interacts with) 9402", "name" : "2260 (interacts with) 9402", "interaction" : "interacts with", "SUID" : 6978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "6974", "source" : "6121", "target" : "5569", "shared_name" : "2260 (interacts with) 59345", "name" : "2260 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 6974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7094", "source" : "6113", "target" : "1929", "shared_name" : "388962 (interacts with) 51218", "name" : "388962 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 7094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7190", "source" : "6109", "target" : "3685", "shared_name" : "2688 (interacts with) 3265", "name" : "2688 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 7190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7186", "source" : "6109", "target" : "5225", "shared_name" : "2688 (interacts with) 5290", "name" : "2688 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 7186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7182", "source" : "6109", "target" : "973", "shared_name" : "2688 (interacts with) 5595", "name" : "2688 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 7182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7178", "source" : "6109", "target" : "5081", "shared_name" : "2688 (interacts with) 5594", "name" : "2688 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 7178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7174", "source" : "6109", "target" : "3017", "shared_name" : "2688 (interacts with) 4790", "name" : "2688 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 7174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7170", "source" : "6109", "target" : "5361", "shared_name" : "2688 (interacts with) 5604", "name" : "2688 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 7170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7166", "source" : "6109", "target" : "4213", "shared_name" : "2688 (interacts with) 5295", "name" : "2688 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 7166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7162", "source" : "6109", "target" : "4949", "shared_name" : "2688 (interacts with) 5970", "name" : "2688 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 7162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7158", "source" : "6109", "target" : "4521", "shared_name" : "2688 (interacts with) 5894", "name" : "2688 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 7158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7154", "source" : "6109", "target" : "637", "shared_name" : "2688 (interacts with) 6654", "name" : "2688 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 7154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7150", "source" : "6109", "target" : "5037", "shared_name" : "2688 (interacts with) 5515", "name" : "2688 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 7150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7146", "source" : "6109", "target" : "2433", "shared_name" : "2688 (interacts with) 6927", "name" : "2688 (interacts with) 6927", "interaction" : "interacts with", "SUID" : 7146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7142", "source" : "6109", "target" : "865", "shared_name" : "2688 (interacts with) 3480", "name" : "2688 (interacts with) 3480", "interaction" : "interacts with", "SUID" : 7142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7138", "source" : "6109", "target" : "1701", "shared_name" : "2688 (interacts with) 5777", "name" : "2688 (interacts with) 5777", "interaction" : "interacts with", "SUID" : 7138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7134", "source" : "6109", "target" : "5697", "shared_name" : "2688 (interacts with) 8517", "name" : "2688 (interacts with) 8517", "interaction" : "interacts with", "SUID" : 7134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7130", "source" : "6109", "target" : "1605", "shared_name" : "2688 (interacts with) 6648", "name" : "2688 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 7130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7126", "source" : "6109", "target" : "2101", "shared_name" : "2688 (interacts with) 3486", "name" : "2688 (interacts with) 3486", "interaction" : "interacts with", "SUID" : 7126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7122", "source" : "6109", "target" : "2901", "shared_name" : "2688 (interacts with) 6647", "name" : "2688 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 7122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7118", "source" : "6109", "target" : "4041", "shared_name" : "2688 (interacts with) 847", "name" : "2688 (interacts with) 847", "interaction" : "interacts with", "SUID" : 7118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7114", "source" : "6109", "target" : "3813", "shared_name" : "2688 (interacts with) 3483", "name" : "2688 (interacts with) 3483", "interaction" : "interacts with", "SUID" : 7114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7110", "source" : "6109", "target" : "2869", "shared_name" : "2688 (interacts with) 43", "name" : "2688 (interacts with) 43", "interaction" : "interacts with", "SUID" : 7110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7106", "source" : "6109", "target" : "4649", "shared_name" : "2688 (interacts with) 3479", "name" : "2688 (interacts with) 3479", "interaction" : "interacts with", "SUID" : 7106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7102", "source" : "6109", "target" : "4981", "shared_name" : "2688 (interacts with) 6774", "name" : "2688 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 7102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7098", "source" : "6109", "target" : "805", "shared_name" : "2688 (interacts with) 6772", "name" : "2688 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 7098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7230", "source" : "6105", "target" : "5125", "shared_name" : "28996 (interacts with) 5979", "name" : "28996 (interacts with) 5979", "interaction" : "interacts with", "SUID" : 7230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7226", "source" : "6105", "target" : "6145", "shared_name" : "28996 (interacts with) 93627", "name" : "28996 (interacts with) 93627", "interaction" : "interacts with", "SUID" : 7226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7222", "source" : "6105", "target" : "865", "shared_name" : "28996 (interacts with) 3480", "name" : "28996 (interacts with) 3480", "interaction" : "interacts with", "SUID" : 7222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7218", "source" : "6105", "target" : "5105", "shared_name" : "28996 (interacts with) 1487", "name" : "28996 (interacts with) 1487", "interaction" : "interacts with", "SUID" : 7218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7214", "source" : "6105", "target" : "873", "shared_name" : "28996 (interacts with) 1385", "name" : "28996 (interacts with) 1385", "interaction" : "interacts with", "SUID" : 7214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7210", "source" : "6105", "target" : "3417", "shared_name" : "28996 (interacts with) 5371", "name" : "28996 (interacts with) 5371", "interaction" : "interacts with", "SUID" : 7210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7206", "source" : "6105", "target" : "5729", "shared_name" : "28996 (interacts with) 861", "name" : "28996 (interacts with) 861", "interaction" : "interacts with", "SUID" : 7206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7202", "source" : "6105", "target" : "877", "shared_name" : "28996 (interacts with) 7341", "name" : "28996 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 7202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7198", "source" : "6105", "target" : "5453", "shared_name" : "28996 (interacts with) 4204", "name" : "28996 (interacts with) 4204", "interaction" : "interacts with", "SUID" : 7198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7194", "source" : "6105", "target" : "981", "shared_name" : "28996 (interacts with) 7157", "name" : "28996 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 7194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7318", "source" : "6101", "target" : "569", "shared_name" : "5582 (interacts with) 7048", "name" : "5582 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 7318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7314", "source" : "6101", "target" : "5693", "shared_name" : "5582 (interacts with) 92335", "name" : "5582 (interacts with) 92335", "interaction" : "interacts with", "SUID" : 7314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7310", "source" : "6101", "target" : "5081", "shared_name" : "5582 (interacts with) 5594", "name" : "5582 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 7310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7306", "source" : "6101", "target" : "973", "shared_name" : "5582 (interacts with) 5595", "name" : "5582 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 7306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7302", "source" : "6101", "target" : "4521", "shared_name" : "5582 (interacts with) 5894", "name" : "5582 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 7302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7298", "source" : "6101", "target" : "4065", "shared_name" : "5582 (interacts with) 7124", "name" : "5582 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 7298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7294", "source" : "6101", "target" : "4949", "shared_name" : "5582 (interacts with) 5970", "name" : "5582 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 7294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7290", "source" : "6101", "target" : "5361", "shared_name" : "5582 (interacts with) 5604", "name" : "5582 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 7290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7286", "source" : "6101", "target" : "5965", "shared_name" : "5582 (interacts with) 596", "name" : "5582 (interacts with) 596", "interaction" : "interacts with", "SUID" : 7286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7282", "source" : "6101", "target" : "4769", "shared_name" : "5582 (interacts with) 7132", "name" : "5582 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 7282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7278", "source" : "6101", "target" : "3885", "shared_name" : "5582 (interacts with) 54840", "name" : "5582 (interacts with) 54840", "interaction" : "interacts with", "SUID" : 7278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7274", "source" : "6101", "target" : "2005", "shared_name" : "5582 (interacts with) 4846", "name" : "5582 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 7274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7270", "source" : "6101", "target" : "5365", "shared_name" : "5582 (interacts with) 2893", "name" : "5582 (interacts with) 2893", "interaction" : "interacts with", "SUID" : 7270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7266", "source" : "6101", "target" : "2329", "shared_name" : "5582 (interacts with) 2904", "name" : "5582 (interacts with) 2904", "interaction" : "interacts with", "SUID" : 7266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7262", "source" : "6101", "target" : "609", "shared_name" : "5582 (interacts with) 6812", "name" : "5582 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 7262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7258", "source" : "6101", "target" : "2749", "shared_name" : "5582 (interacts with) 100506658", "name" : "5582 (interacts with) 100506658", "interaction" : "interacts with", "SUID" : 7258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7254", "source" : "6101", "target" : "2585", "shared_name" : "5582 (interacts with) 1977", "name" : "5582 (interacts with) 1977", "interaction" : "interacts with", "SUID" : 7254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7250", "source" : "6101", "target" : "4537", "shared_name" : "5582 (interacts with) 2697", "name" : "5582 (interacts with) 2697", "interaction" : "interacts with", "SUID" : 7250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7246", "source" : "6101", "target" : "425", "shared_name" : "5582 (interacts with) 1103", "name" : "5582 (interacts with) 1103", "interaction" : "interacts with", "SUID" : 7246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7242", "source" : "6101", "target" : "2501", "shared_name" : "5582 (interacts with) 7448", "name" : "5582 (interacts with) 7448", "interaction" : "interacts with", "SUID" : 7242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7238", "source" : "6101", "target" : "3041", "shared_name" : "5582 (interacts with) 5663", "name" : "5582 (interacts with) 5663", "interaction" : "interacts with", "SUID" : 7238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7234", "source" : "6101", "target" : "637", "shared_name" : "5582 (interacts with) 6654", "name" : "5582 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 7234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7418", "source" : "6097", "target" : "973", "shared_name" : "1756 (interacts with) 5595", "name" : "1756 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 7418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7414", "source" : "6097", "target" : "5081", "shared_name" : "1756 (interacts with) 5594", "name" : "1756 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 7414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7410", "source" : "6097", "target" : "4649", "shared_name" : "1756 (interacts with) 3479", "name" : "1756 (interacts with) 3479", "interaction" : "interacts with", "SUID" : 7410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7406", "source" : "6097", "target" : "1069", "shared_name" : "1756 (interacts with) 5879", "name" : "1756 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 7406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7402", "source" : "6097", "target" : "5149", "shared_name" : "1756 (interacts with) 5058", "name" : "1756 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 7402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7398", "source" : "6097", "target" : "1405", "shared_name" : "1756 (interacts with) 998", "name" : "1756 (interacts with) 998", "interaction" : "interacts with", "SUID" : 7398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7394", "source" : "6097", "target" : "3289", "shared_name" : "1756 (interacts with) 5913", "name" : "1756 (interacts with) 5913", "interaction" : "interacts with", "SUID" : 7394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7390", "source" : "6097", "target" : "3293", "shared_name" : "1756 (interacts with) 1832", "name" : "1756 (interacts with) 1832", "interaction" : "interacts with", "SUID" : 7390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7386", "source" : "6097", "target" : "3585", "shared_name" : "1756 (interacts with) 3908", "name" : "1756 (interacts with) 3908", "interaction" : "interacts with", "SUID" : 7386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7382", "source" : "6097", "target" : "4385", "shared_name" : "1756 (interacts with) 3084", "name" : "1756 (interacts with) 3084", "interaction" : "interacts with", "SUID" : 7382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7378", "source" : "6097", "target" : "2581", "shared_name" : "1756 (interacts with) 7170", "name" : "1756 (interacts with) 7170", "interaction" : "interacts with", "SUID" : 7378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7374", "source" : "6097", "target" : "997", "shared_name" : "1756 (interacts with) 7431", "name" : "1756 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 7374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7370", "source" : "6097", "target" : "5989", "shared_name" : "1756 (interacts with) 7273", "name" : "1756 (interacts with) 7273", "interaction" : "interacts with", "SUID" : 7370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7366", "source" : "6097", "target" : "3853", "shared_name" : "1756 (interacts with) 6786", "name" : "1756 (interacts with) 6786", "interaction" : "interacts with", "SUID" : 7366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7362", "source" : "6097", "target" : "2873", "shared_name" : "1756 (interacts with) 6261", "name" : "1756 (interacts with) 6261", "interaction" : "interacts with", "SUID" : 7362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7358", "source" : "6097", "target" : "2977", "shared_name" : "1756 (interacts with) 4747", "name" : "1756 (interacts with) 4747", "interaction" : "interacts with", "SUID" : 7358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7354", "source" : "6097", "target" : "5337", "shared_name" : "1756 (interacts with) 84876", "name" : "1756 (interacts with) 84876", "interaction" : "interacts with", "SUID" : 7354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7350", "source" : "6097", "target" : "2137", "shared_name" : "1756 (interacts with) 3918", "name" : "1756 (interacts with) 3918", "interaction" : "interacts with", "SUID" : 7350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7346", "source" : "6097", "target" : "1261", "shared_name" : "1756 (interacts with) 57192", "name" : "1756 (interacts with) 57192", "interaction" : "interacts with", "SUID" : 7346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7342", "source" : "6097", "target" : "1861", "shared_name" : "1756 (interacts with) 3708", "name" : "1756 (interacts with) 3708", "interaction" : "interacts with", "SUID" : 7342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7338", "source" : "6097", "target" : "1497", "shared_name" : "1756 (interacts with) 3912", "name" : "1756 (interacts with) 3912", "interaction" : "interacts with", "SUID" : 7338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7334", "source" : "6097", "target" : "2861", "shared_name" : "1756 (interacts with) 284217", "name" : "1756 (interacts with) 284217", "interaction" : "interacts with", "SUID" : 7334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7330", "source" : "6097", "target" : "2329", "shared_name" : "1756 (interacts with) 2904", "name" : "1756 (interacts with) 2904", "interaction" : "interacts with", "SUID" : 7330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7326", "source" : "6097", "target" : "4509", "shared_name" : "1756 (interacts with) 2902", "name" : "1756 (interacts with) 2902", "interaction" : "interacts with", "SUID" : 7326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7322", "source" : "6097", "target" : "5365", "shared_name" : "1756 (interacts with) 2893", "name" : "1756 (interacts with) 2893", "interaction" : "interacts with", "SUID" : 7322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7582", "source" : "6093", "target" : "1721", "shared_name" : "953 (interacts with) 51807", "name" : "953 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 7582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7578", "source" : "6093", "target" : "2925", "shared_name" : "953 (interacts with) 8802", "name" : "953 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 7578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7574", "source" : "6093", "target" : "4941", "shared_name" : "953 (interacts with) 6342", "name" : "953 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 7574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7570", "source" : "6093", "target" : "2413", "shared_name" : "953 (interacts with) 50484", "name" : "953 (interacts with) 50484", "interaction" : "interacts with", "SUID" : 7570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7566", "source" : "6093", "target" : "3425", "shared_name" : "953 (interacts with) 8803", "name" : "953 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 7566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7562", "source" : "6093", "target" : "5049", "shared_name" : "953 (interacts with) 6697", "name" : "953 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 7562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7558", "source" : "6093", "target" : "4169", "shared_name" : "953 (interacts with) 10993", "name" : "953 (interacts with) 10993", "interaction" : "interacts with", "SUID" : 7558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7554", "source" : "6093", "target" : "1485", "shared_name" : "953 (interacts with) 8050", "name" : "953 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 7554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7550", "source" : "6093", "target" : "2881", "shared_name" : "953 (interacts with) 5160", "name" : "953 (interacts with) 5160", "interaction" : "interacts with", "SUID" : 7550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7546", "source" : "6093", "target" : "1437", "shared_name" : "953 (interacts with) 80025", "name" : "953 (interacts with) 80025", "interaction" : "interacts with", "SUID" : 7546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7542", "source" : "6093", "target" : "4045", "shared_name" : "953 (interacts with) 29920", "name" : "953 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 7542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7538", "source" : "6093", "target" : "3501", "shared_name" : "953 (interacts with) 5831", "name" : "953 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 7538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7534", "source" : "6093", "target" : "1869", "shared_name" : "953 (interacts with) 4729", "name" : "953 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 7534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7530", "source" : "6093", "target" : "1573", "shared_name" : "953 (interacts with) 4723", "name" : "953 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 7530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7526", "source" : "6093", "target" : "2797", "shared_name" : "953 (interacts with) 4728", "name" : "953 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 7526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7522", "source" : "6093", "target" : "4069", "shared_name" : "953 (interacts with) 374291", "name" : "953 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 7522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7518", "source" : "6093", "target" : "5833", "shared_name" : "953 (interacts with) 4726", "name" : "953 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 7518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7514", "source" : "6093", "target" : "5821", "shared_name" : "953 (interacts with) 4724", "name" : "953 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 7514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7510", "source" : "6093", "target" : "4945", "shared_name" : "953 (interacts with) 4722", "name" : "953 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 7510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7506", "source" : "6093", "target" : "3421", "shared_name" : "953 (interacts with) 4967", "name" : "953 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 7506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7502", "source" : "6093", "target" : "5793", "shared_name" : "953 (interacts with) 51251", "name" : "953 (interacts with) 51251", "interaction" : "interacts with", "SUID" : 7502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7498", "source" : "6093", "target" : "3917", "shared_name" : "953 (interacts with) 22978", "name" : "953 (interacts with) 22978", "interaction" : "interacts with", "SUID" : 7498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7494", "source" : "6093", "target" : "5853", "shared_name" : "953 (interacts with) 4709", "name" : "953 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 7494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7490", "source" : "6093", "target" : "3617", "shared_name" : "953 (interacts with) 4704", "name" : "953 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 7490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7486", "source" : "6093", "target" : "2753", "shared_name" : "953 (interacts with) 4720", "name" : "953 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 7486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7482", "source" : "6093", "target" : "4017", "shared_name" : "953 (interacts with) 4719", "name" : "953 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 7482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7478", "source" : "6093", "target" : "2689", "shared_name" : "953 (interacts with) 4715", "name" : "953 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 7478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7474", "source" : "6093", "target" : "5845", "shared_name" : "953 (interacts with) 4714", "name" : "953 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 7474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7470", "source" : "6093", "target" : "2757", "shared_name" : "953 (interacts with) 51079", "name" : "953 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 7470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7466", "source" : "6093", "target" : "5553", "shared_name" : "953 (interacts with) 55967", "name" : "953 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 7466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7462", "source" : "6093", "target" : "2825", "shared_name" : "953 (interacts with) 126328", "name" : "953 (interacts with) 126328", "interaction" : "interacts with", "SUID" : 7462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7458", "source" : "6093", "target" : "4061", "shared_name" : "953 (interacts with) 4705", "name" : "953 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 7458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7454", "source" : "6093", "target" : "2045", "shared_name" : "953 (interacts with) 51102", "name" : "953 (interacts with) 51102", "interaction" : "interacts with", "SUID" : 7454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7450", "source" : "6093", "target" : "2801", "shared_name" : "953 (interacts with) 4700", "name" : "953 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 7450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7446", "source" : "6093", "target" : "2741", "shared_name" : "953 (interacts with) 4695", "name" : "953 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 7446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7442", "source" : "6093", "target" : "5857", "shared_name" : "953 (interacts with) 4694", "name" : "953 (interacts with) 4694", "interaction" : "interacts with", "SUID" : 7442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7438", "source" : "6093", "target" : "2365", "shared_name" : "953 (interacts with) 2731", "name" : "953 (interacts with) 2731", "interaction" : "interacts with", "SUID" : 7438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7434", "source" : "6093", "target" : "5493", "shared_name" : "953 (interacts with) 2678", "name" : "953 (interacts with) 2678", "interaction" : "interacts with", "SUID" : 7434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7430", "source" : "6093", "target" : "3337", "shared_name" : "953 (interacts with) 2639", "name" : "953 (interacts with) 2639", "interaction" : "interacts with", "SUID" : 7430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7426", "source" : "6093", "target" : "937", "shared_name" : "953 (interacts with) 2110", "name" : "953 (interacts with) 2110", "interaction" : "interacts with", "SUID" : 7426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7422", "source" : "6093", "target" : "5237", "shared_name" : "953 (interacts with) 5830", "name" : "953 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 7422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7626", "source" : "6089", "target" : "1485", "shared_name" : "3145 (interacts with) 8050", "name" : "3145 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 7626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7622", "source" : "6089", "target" : "3481", "shared_name" : "3145 (interacts with) 6513", "name" : "3145 (interacts with) 6513", "interaction" : "interacts with", "SUID" : 7622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7618", "source" : "6089", "target" : "6057", "shared_name" : "3145 (interacts with) 3162", "name" : "3145 (interacts with) 3162", "interaction" : "interacts with", "SUID" : 7618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7614", "source" : "6089", "target" : "6133", "shared_name" : "3145 (interacts with) 54658", "name" : "3145 (interacts with) 54658", "interaction" : "interacts with", "SUID" : 7614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7610", "source" : "6089", "target" : "1425", "shared_name" : "3145 (interacts with) 55644", "name" : "3145 (interacts with) 55644", "interaction" : "interacts with", "SUID" : 7610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7606", "source" : "6089", "target" : "2005", "shared_name" : "3145 (interacts with) 4846", "name" : "3145 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 7606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7602", "source" : "6089", "target" : "1013", "shared_name" : "3145 (interacts with) 6898", "name" : "3145 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 7602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7598", "source" : "6089", "target" : "413", "shared_name" : "3145 (interacts with) 51733", "name" : "3145 (interacts with) 51733", "interaction" : "interacts with", "SUID" : 7598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7594", "source" : "6089", "target" : "2161", "shared_name" : "3145 (interacts with) 55163", "name" : "3145 (interacts with) 55163", "interaction" : "interacts with", "SUID" : 7594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7590", "source" : "6089", "target" : "1681", "shared_name" : "3145 (interacts with) 9990", "name" : "3145 (interacts with) 9990", "interaction" : "interacts with", "SUID" : 7590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7586", "source" : "6089", "target" : "1809", "shared_name" : "3145 (interacts with) 6548", "name" : "3145 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 7586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7630", "source" : "6085", "target" : "5581", "shared_name" : "23516 (interacts with) 64116", "name" : "23516 (interacts with) 64116", "interaction" : "interacts with", "SUID" : 7630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7942", "source" : "6081", "target" : "1085", "shared_name" : "10128 (interacts with) 9377", "name" : "10128 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 7942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7938", "source" : "6081", "target" : "1637", "shared_name" : "10128 (interacts with) 91574", "name" : "10128 (interacts with) 91574", "interaction" : "interacts with", "SUID" : 7938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7934", "source" : "6081", "target" : "6181", "shared_name" : "10128 (interacts with) 84987", "name" : "10128 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 7934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7930", "source" : "6081", "target" : "889", "shared_name" : "10128 (interacts with) 80224", "name" : "10128 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 7930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7926", "source" : "6081", "target" : "1325", "shared_name" : "10128 (interacts with) 7284", "name" : "10128 (interacts with) 7284", "interaction" : "interacts with", "SUID" : 7926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7922", "source" : "6081", "target" : "1053", "shared_name" : "10128 (interacts with) 81689", "name" : "10128 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 7922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7918", "source" : "6081", "target" : "6125", "shared_name" : "10128 (interacts with) 22907", "name" : "10128 (interacts with) 22907", "interaction" : "interacts with", "SUID" : 7918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7914", "source" : "6081", "target" : "3065", "shared_name" : "10128 (interacts with) 25828", "name" : "10128 (interacts with) 25828", "interaction" : "interacts with", "SUID" : 7914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7910", "source" : "6081", "target" : "793", "shared_name" : "10128 (interacts with) 137682", "name" : "10128 (interacts with) 137682", "interaction" : "interacts with", "SUID" : 7910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7906", "source" : "6081", "target" : "4945", "shared_name" : "10128 (interacts with) 4722", "name" : "10128 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 7906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7902", "source" : "6081", "target" : "2121", "shared_name" : "10128 (interacts with) 11232", "name" : "10128 (interacts with) 11232", "interaction" : "interacts with", "SUID" : 7902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7898", "source" : "6081", "target" : "2157", "shared_name" : "10128 (interacts with) 23028", "name" : "10128 (interacts with) 23028", "interaction" : "interacts with", "SUID" : 7898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7894", "source" : "6081", "target" : "6049", "shared_name" : "10128 (interacts with) 25973", "name" : "10128 (interacts with) 25973", "interaction" : "interacts with", "SUID" : 7894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7890", "source" : "6081", "target" : "1369", "shared_name" : "10128 (interacts with) 27247", "name" : "10128 (interacts with) 27247", "interaction" : "interacts with", "SUID" : 7890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7886", "source" : "6081", "target" : "5689", "shared_name" : "10128 (interacts with) 27089", "name" : "10128 (interacts with) 27089", "interaction" : "interacts with", "SUID" : 7886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7882", "source" : "6081", "target" : "3705", "shared_name" : "10128 (interacts with) 87178", "name" : "10128 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 7882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7878", "source" : "6081", "target" : "1105", "shared_name" : "10128 (interacts with) 493753", "name" : "10128 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 7878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7874", "source" : "6081", "target" : "2689", "shared_name" : "10128 (interacts with) 4715", "name" : "10128 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 7874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7870", "source" : "6081", "target" : "5189", "shared_name" : "10128 (interacts with) 57176", "name" : "10128 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 7870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7866", "source" : "6081", "target" : "2837", "shared_name" : "10128 (interacts with) 123263", "name" : "10128 (interacts with) 123263", "interaction" : "interacts with", "SUID" : 7866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7862", "source" : "6081", "target" : "5853", "shared_name" : "10128 (interacts with) 4709", "name" : "10128 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 7862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7858", "source" : "6081", "target" : "2297", "shared_name" : "10128 (interacts with) 55005", "name" : "10128 (interacts with) 55005", "interaction" : "interacts with", "SUID" : 7858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7854", "source" : "6081", "target" : "5169", "shared_name" : "10128 (interacts with) 1355", "name" : "10128 (interacts with) 1355", "interaction" : "interacts with", "SUID" : 7854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7850", "source" : "6081", "target" : "721", "shared_name" : "10128 (interacts with) 79731", "name" : "10128 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 7850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7846", "source" : "6081", "target" : "2609", "shared_name" : "10128 (interacts with) 29960", "name" : "10128 (interacts with) 29960", "interaction" : "interacts with", "SUID" : 7846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7842", "source" : "6081", "target" : "5985", "shared_name" : "10128 (interacts with) 27235", "name" : "10128 (interacts with) 27235", "interaction" : "interacts with", "SUID" : 7842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7838", "source" : "6081", "target" : "5381", "shared_name" : "10128 (interacts with) 10229", "name" : "10128 (interacts with) 10229", "interaction" : "interacts with", "SUID" : 7838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7834", "source" : "6081", "target" : "3545", "shared_name" : "10128 (interacts with) 708", "name" : "10128 (interacts with) 708", "interaction" : "interacts with", "SUID" : 7834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7830", "source" : "6081", "target" : "4069", "shared_name" : "10128 (interacts with) 374291", "name" : "10128 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 7830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7826", "source" : "6081", "target" : "2477", "shared_name" : "10128 (interacts with) 57107", "name" : "10128 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 7826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7822", "source" : "6081", "target" : "1669", "shared_name" : "10128 (interacts with) 6390", "name" : "10128 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 7822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7818", "source" : "6081", "target" : "6001", "shared_name" : "10128 (interacts with) 55157", "name" : "10128 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 7818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7814", "source" : "6081", "target" : "5685", "shared_name" : "10128 (interacts with) 1340", "name" : "10128 (interacts with) 1340", "interaction" : "interacts with", "SUID" : 7814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7810", "source" : "6081", "target" : "521", "shared_name" : "10128 (interacts with) 85476", "name" : "10128 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 7810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7806", "source" : "6081", "target" : "1921", "shared_name" : "10128 (interacts with) 1352", "name" : "10128 (interacts with) 1352", "interaction" : "interacts with", "SUID" : 7806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7802", "source" : "6081", "target" : "2021", "shared_name" : "10128 (interacts with) 5428", "name" : "10128 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 7802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7798", "source" : "6081", "target" : "2741", "shared_name" : "10128 (interacts with) 4695", "name" : "10128 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 7798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7794", "source" : "6081", "target" : "1929", "shared_name" : "10128 (interacts with) 51218", "name" : "10128 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 7794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7790", "source" : "6081", "target" : "3617", "shared_name" : "10128 (interacts with) 4704", "name" : "10128 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 7790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7786", "source" : "6081", "target" : "3761", "shared_name" : "10128 (interacts with) 25915", "name" : "10128 (interacts with) 25915", "interaction" : "interacts with", "SUID" : 7786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7782", "source" : "6081", "target" : "4409", "shared_name" : "10128 (interacts with) 6341", "name" : "10128 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 7782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7778", "source" : "6081", "target" : "2009", "shared_name" : "10128 (interacts with) 79133", "name" : "10128 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 7778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7774", "source" : "6081", "target" : "4017", "shared_name" : "10128 (interacts with) 4719", "name" : "10128 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 7774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7770", "source" : "6081", "target" : "2345", "shared_name" : "10128 (interacts with) 200205", "name" : "10128 (interacts with) 200205", "interaction" : "interacts with", "SUID" : 7770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7766", "source" : "6081", "target" : "1129", "shared_name" : "10128 (interacts with) 57505", "name" : "10128 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 7766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7762", "source" : "6081", "target" : "5737", "shared_name" : "10128 (interacts with) 84340", "name" : "10128 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 7762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7758", "source" : "6081", "target" : "2825", "shared_name" : "10128 (interacts with) 126328", "name" : "10128 (interacts with) 126328", "interaction" : "interacts with", "SUID" : 7758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7754", "source" : "6081", "target" : "1197", "shared_name" : "10128 (interacts with) 79587", "name" : "10128 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 7754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7750", "source" : "6081", "target" : "2797", "shared_name" : "10128 (interacts with) 4728", "name" : "10128 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 7750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7746", "source" : "6081", "target" : "5085", "shared_name" : "10128 (interacts with) 56652", "name" : "10128 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 7746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7742", "source" : "6081", "target" : "1869", "shared_name" : "10128 (interacts with) 4729", "name" : "10128 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 7742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7738", "source" : "6081", "target" : "3633", "shared_name" : "10128 (interacts with) 51067", "name" : "10128 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 7738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7734", "source" : "6081", "target" : "6073", "shared_name" : "10128 (interacts with) 92170", "name" : "10128 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 7734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7730", "source" : "6081", "target" : "4757", "shared_name" : "10128 (interacts with) 9997", "name" : "10128 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 7730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7726", "source" : "6081", "target" : "501", "shared_name" : "10128 (interacts with) 65993", "name" : "10128 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 7726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7722", "source" : "6081", "target" : "1477", "shared_name" : "10128 (interacts with) 10352", "name" : "10128 (interacts with) 10352", "interaction" : "interacts with", "SUID" : 7722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7718", "source" : "6081", "target" : "1561", "shared_name" : "10128 (interacts with) 51117", "name" : "10128 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 7718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7714", "source" : "6081", "target" : "2285", "shared_name" : "10128 (interacts with) 51300", "name" : "10128 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 7714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7710", "source" : "6081", "target" : "3973", "shared_name" : "10128 (interacts with) 55572", "name" : "10128 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 7710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7706", "source" : "6081", "target" : "4621", "shared_name" : "10128 (interacts with) 57038", "name" : "10128 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 7706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7702", "source" : "6081", "target" : "621", "shared_name" : "10128 (interacts with) 122961", "name" : "10128 (interacts with) 122961", "interaction" : "interacts with", "SUID" : 7702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7698", "source" : "6081", "target" : "4897", "shared_name" : "10128 (interacts with) 55149", "name" : "10128 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 7698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7694", "source" : "6081", "target" : "5505", "shared_name" : "10128 (interacts with) 29078", "name" : "10128 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 7694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7690", "source" : "6081", "target" : "5845", "shared_name" : "10128 (interacts with) 4714", "name" : "10128 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 7690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7686", "source" : "6081", "target" : "2753", "shared_name" : "10128 (interacts with) 4720", "name" : "10128 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 7686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7682", "source" : "6081", "target" : "4405", "shared_name" : "10128 (interacts with) 10667", "name" : "10128 (interacts with) 10667", "interaction" : "interacts with", "SUID" : 7682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7678", "source" : "6081", "target" : "2801", "shared_name" : "10128 (interacts with) 4700", "name" : "10128 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 7678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7674", "source" : "6081", "target" : "2105", "shared_name" : "10128 (interacts with) 56945", "name" : "10128 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 7674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7670", "source" : "6081", "target" : "477", "shared_name" : "10128 (interacts with) 51021", "name" : "10128 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 7670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7666", "source" : "6081", "target" : "4101", "shared_name" : "10128 (interacts with) 65260", "name" : "10128 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 7666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7662", "source" : "6081", "target" : "2109", "shared_name" : "10128 (interacts with) 51103", "name" : "10128 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 7662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7658", "source" : "6081", "target" : "4261", "shared_name" : "10128 (interacts with) 124454", "name" : "10128 (interacts with) 124454", "interaction" : "interacts with", "SUID" : 7658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7654", "source" : "6081", "target" : "4869", "shared_name" : "10128 (interacts with) 92935", "name" : "10128 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 7654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7650", "source" : "6081", "target" : "4141", "shared_name" : "10128 (interacts with) 617", "name" : "10128 (interacts with) 617", "interaction" : "interacts with", "SUID" : 7650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7646", "source" : "6081", "target" : "1573", "shared_name" : "10128 (interacts with) 4723", "name" : "10128 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 7646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7642", "source" : "6081", "target" : "4061", "shared_name" : "10128 (interacts with) 4705", "name" : "10128 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 7642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7638", "source" : "6081", "target" : "2337", "shared_name" : "10128 (interacts with) 28976", "name" : "10128 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 7638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7634", "source" : "6081", "target" : "713", "shared_name" : "10128 (interacts with) 7019", "name" : "10128 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 7634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7970", "source" : "6077", "target" : "2901", "shared_name" : "10963 (interacts with) 6647", "name" : "10963 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 7970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7966", "source" : "6077", "target" : "665", "shared_name" : "10963 (interacts with) 3309", "name" : "10963 (interacts with) 3309", "interaction" : "interacts with", "SUID" : 7966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7962", "source" : "6077", "target" : "785", "shared_name" : "10963 (interacts with) 1958", "name" : "10963 (interacts with) 1958", "interaction" : "interacts with", "SUID" : 7962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7958", "source" : "6077", "target" : "2197", "shared_name" : "10963 (interacts with) 4684", "name" : "10963 (interacts with) 4684", "interaction" : "interacts with", "SUID" : 7958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7954", "source" : "6077", "target" : "3505", "shared_name" : "10963 (interacts with) 160418", "name" : "10963 (interacts with) 160418", "interaction" : "interacts with", "SUID" : 7954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7950", "source" : "6077", "target" : "5701", "shared_name" : "10963 (interacts with) 6767", "name" : "10963 (interacts with) 6767", "interaction" : "interacts with", "SUID" : 7950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7946", "source" : "6077", "target" : "3805", "shared_name" : "10963 (interacts with) 5621", "name" : "10963 (interacts with) 5621", "interaction" : "interacts with", "SUID" : 7946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7978", "source" : "6073", "target" : "4757", "shared_name" : "92170 (interacts with) 9997", "name" : "92170 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 7978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7974", "source" : "6073", "target" : "4869", "shared_name" : "92170 (interacts with) 92935", "name" : "92170 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 7974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7994", "source" : "6061", "target" : "1837", "shared_name" : "2733 (interacts with) 9939", "name" : "2733 (interacts with) 9939", "interaction" : "interacts with", "SUID" : 7994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7990", "source" : "6061", "target" : "4549", "shared_name" : "2733 (interacts with) 5903", "name" : "2733 (interacts with) 5903", "interaction" : "interacts with", "SUID" : 7990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7986", "source" : "6061", "target" : "4005", "shared_name" : "2733 (interacts with) 23636", "name" : "2733 (interacts with) 23636", "interaction" : "interacts with", "SUID" : 7986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7982", "source" : "6061", "target" : "5445", "shared_name" : "2733 (interacts with) 8021", "name" : "2733 (interacts with) 8021", "interaction" : "interacts with", "SUID" : 7982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8042", "source" : "6057", "target" : "5073", "shared_name" : "3162 (interacts with) 7305", "name" : "3162 (interacts with) 7305", "interaction" : "interacts with", "SUID" : 8042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8038", "source" : "6057", "target" : "4065", "shared_name" : "3162 (interacts with) 7124", "name" : "3162 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 8038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8034", "source" : "6057", "target" : "3493", "shared_name" : "3162 (interacts with) 348", "name" : "3162 (interacts with) 348", "interaction" : "interacts with", "SUID" : 8034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8030", "source" : "6057", "target" : "5081", "shared_name" : "3162 (interacts with) 5594", "name" : "3162 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 8030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8026", "source" : "6057", "target" : "4981", "shared_name" : "3162 (interacts with) 6774", "name" : "3162 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 8026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8022", "source" : "6057", "target" : "805", "shared_name" : "3162 (interacts with) 6772", "name" : "3162 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 8022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8018", "source" : "6057", "target" : "6133", "shared_name" : "3162 (interacts with) 54658", "name" : "3162 (interacts with) 54658", "interaction" : "interacts with", "SUID" : 8018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8014", "source" : "6057", "target" : "5025", "shared_name" : "3162 (interacts with) 6389", "name" : "3162 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 8014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8010", "source" : "6057", "target" : "4625", "shared_name" : "3162 (interacts with) 6785", "name" : "3162 (interacts with) 6785", "interaction" : "interacts with", "SUID" : 8010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8006", "source" : "6057", "target" : "5581", "shared_name" : "3162 (interacts with) 64116", "name" : "3162 (interacts with) 64116", "interaction" : "interacts with", "SUID" : 8006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8002", "source" : "6057", "target" : "2221", "shared_name" : "3162 (interacts with) 26580", "name" : "3162 (interacts with) 26580", "interaction" : "interacts with", "SUID" : 8002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "7998", "source" : "6057", "target" : "513", "shared_name" : "3162 (interacts with) 348980", "name" : "3162 (interacts with) 348980", "interaction" : "interacts with", "SUID" : 7998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8278", "source" : "6049", "target" : "2797", "shared_name" : "25973 (interacts with) 4728", "name" : "25973 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 8278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8274", "source" : "6049", "target" : "2741", "shared_name" : "25973 (interacts with) 4695", "name" : "25973 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 8274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8270", "source" : "6049", "target" : "2285", "shared_name" : "25973 (interacts with) 51300", "name" : "25973 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 8270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8266", "source" : "6049", "target" : "4017", "shared_name" : "25973 (interacts with) 4719", "name" : "25973 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 8266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8262", "source" : "6049", "target" : "1105", "shared_name" : "25973 (interacts with) 493753", "name" : "25973 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 8262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8258", "source" : "6049", "target" : "889", "shared_name" : "25973 (interacts with) 80224", "name" : "25973 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 8258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8254", "source" : "6049", "target" : "2689", "shared_name" : "25973 (interacts with) 4715", "name" : "25973 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 8254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8250", "source" : "6049", "target" : "2337", "shared_name" : "25973 (interacts with) 28976", "name" : "25973 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 8250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8246", "source" : "6049", "target" : "1929", "shared_name" : "25973 (interacts with) 51218", "name" : "25973 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 8246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8242", "source" : "6049", "target" : "3705", "shared_name" : "25973 (interacts with) 87178", "name" : "25973 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 8242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8238", "source" : "6049", "target" : "3545", "shared_name" : "25973 (interacts with) 708", "name" : "25973 (interacts with) 708", "interaction" : "interacts with", "SUID" : 8238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8234", "source" : "6049", "target" : "5505", "shared_name" : "25973 (interacts with) 29078", "name" : "25973 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 8234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8230", "source" : "6049", "target" : "4061", "shared_name" : "25973 (interacts with) 4705", "name" : "25973 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 8230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8226", "source" : "6049", "target" : "501", "shared_name" : "25973 (interacts with) 65993", "name" : "25973 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 8226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8222", "source" : "6049", "target" : "2609", "shared_name" : "25973 (interacts with) 29960", "name" : "25973 (interacts with) 29960", "interaction" : "interacts with", "SUID" : 8222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8218", "source" : "6049", "target" : "4945", "shared_name" : "25973 (interacts with) 4722", "name" : "25973 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 8218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8214", "source" : "6049", "target" : "2477", "shared_name" : "25973 (interacts with) 57107", "name" : "25973 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 8214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8210", "source" : "6049", "target" : "1869", "shared_name" : "25973 (interacts with) 4729", "name" : "25973 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 8210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8206", "source" : "6049", "target" : "5109", "shared_name" : "25973 (interacts with) 790", "name" : "25973 (interacts with) 790", "interaction" : "interacts with", "SUID" : 8206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8202", "source" : "6049", "target" : "2753", "shared_name" : "25973 (interacts with) 4720", "name" : "25973 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 8202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8198", "source" : "6049", "target" : "4141", "shared_name" : "25973 (interacts with) 617", "name" : "25973 (interacts with) 617", "interaction" : "interacts with", "SUID" : 8198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8194", "source" : "6049", "target" : "737", "shared_name" : "25973 (interacts with) 2643", "name" : "25973 (interacts with) 2643", "interaction" : "interacts with", "SUID" : 8194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8190", "source" : "6049", "target" : "1561", "shared_name" : "25973 (interacts with) 51117", "name" : "25973 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 8190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8186", "source" : "6049", "target" : "4069", "shared_name" : "25973 (interacts with) 374291", "name" : "25973 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 8186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8182", "source" : "6049", "target" : "4757", "shared_name" : "25973 (interacts with) 9997", "name" : "25973 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 8182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8178", "source" : "6049", "target" : "2009", "shared_name" : "25973 (interacts with) 79133", "name" : "25973 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 8178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8174", "source" : "6049", "target" : "4409", "shared_name" : "25973 (interacts with) 6341", "name" : "25973 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 8174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8170", "source" : "6049", "target" : "2109", "shared_name" : "25973 (interacts with) 51103", "name" : "25973 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 8170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8166", "source" : "6049", "target" : "5737", "shared_name" : "25973 (interacts with) 84340", "name" : "25973 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 8166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8162", "source" : "6049", "target" : "713", "shared_name" : "25973 (interacts with) 7019", "name" : "25973 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 8162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8158", "source" : "6049", "target" : "2105", "shared_name" : "25973 (interacts with) 56945", "name" : "25973 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 8158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8154", "source" : "6049", "target" : "3973", "shared_name" : "25973 (interacts with) 55572", "name" : "25973 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 8154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8150", "source" : "6049", "target" : "521", "shared_name" : "25973 (interacts with) 85476", "name" : "25973 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 8150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8146", "source" : "6049", "target" : "4897", "shared_name" : "25973 (interacts with) 55149", "name" : "25973 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 8146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8142", "source" : "6049", "target" : "3641", "shared_name" : "25973 (interacts with) 4141", "name" : "25973 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 8142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8138", "source" : "6049", "target" : "6073", "shared_name" : "25973 (interacts with) 92170", "name" : "25973 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 8138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8134", "source" : "6049", "target" : "5085", "shared_name" : "25973 (interacts with) 56652", "name" : "25973 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 8134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8130", "source" : "6049", "target" : "477", "shared_name" : "25973 (interacts with) 51021", "name" : "25973 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 8130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8126", "source" : "6049", "target" : "1577", "shared_name" : "25973 (interacts with) 51091", "name" : "25973 (interacts with) 51091", "interaction" : "interacts with", "SUID" : 8126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8122", "source" : "6049", "target" : "4229", "shared_name" : "25973 (interacts with) 3035", "name" : "25973 (interacts with) 3035", "interaction" : "interacts with", "SUID" : 8122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8118", "source" : "6049", "target" : "4597", "shared_name" : "25973 (interacts with) 3376", "name" : "25973 (interacts with) 3376", "interaction" : "interacts with", "SUID" : 8118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8114", "source" : "6049", "target" : "6157", "shared_name" : "25973 (interacts with) 3735", "name" : "25973 (interacts with) 3735", "interaction" : "interacts with", "SUID" : 8114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8110", "source" : "6049", "target" : "1089", "shared_name" : "25973 (interacts with) 5917", "name" : "25973 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 8110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8106", "source" : "6049", "target" : "4693", "shared_name" : "25973 (interacts with) 6301", "name" : "25973 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 8106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8102", "source" : "6049", "target" : "1581", "shared_name" : "25973 (interacts with) 7407", "name" : "25973 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 8102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8098", "source" : "6049", "target" : "3649", "shared_name" : "25973 (interacts with) 51520", "name" : "25973 (interacts with) 51520", "interaction" : "interacts with", "SUID" : 8098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8094", "source" : "6049", "target" : "4085", "shared_name" : "25973 (interacts with) 55699", "name" : "25973 (interacts with) 55699", "interaction" : "interacts with", "SUID" : 8094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8090", "source" : "6049", "target" : "4349", "shared_name" : "25973 (interacts with) 5859", "name" : "25973 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 8090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8086", "source" : "6049", "target" : "2021", "shared_name" : "25973 (interacts with) 5428", "name" : "25973 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 8086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8082", "source" : "6049", "target" : "4621", "shared_name" : "25973 (interacts with) 57038", "name" : "25973 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 8082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8078", "source" : "6049", "target" : "1129", "shared_name" : "25973 (interacts with) 57505", "name" : "25973 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 8078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8074", "source" : "6049", "target" : "721", "shared_name" : "25973 (interacts with) 79731", "name" : "25973 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 8074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8070", "source" : "6049", "target" : "5189", "shared_name" : "25973 (interacts with) 57176", "name" : "25973 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 8070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8066", "source" : "6049", "target" : "3633", "shared_name" : "25973 (interacts with) 51067", "name" : "25973 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 8066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8062", "source" : "6049", "target" : "1197", "shared_name" : "25973 (interacts with) 79587", "name" : "25973 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 8062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8058", "source" : "6049", "target" : "6001", "shared_name" : "25973 (interacts with) 55157", "name" : "25973 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 8058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8054", "source" : "6049", "target" : "4869", "shared_name" : "25973 (interacts with) 92935", "name" : "25973 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 8054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8050", "source" : "6049", "target" : "4045", "shared_name" : "25973 (interacts with) 29920", "name" : "25973 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 8050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8046", "source" : "6049", "target" : "3501", "shared_name" : "25973 (interacts with) 5831", "name" : "25973 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 8046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8330", "source" : "6045", "target" : "2549", "shared_name" : "701 (interacts with) 9319", "name" : "701 (interacts with) 9319", "interaction" : "interacts with", "SUID" : 8330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8326", "source" : "6045", "target" : "4497", "shared_name" : "701 (interacts with) 8243", "name" : "701 (interacts with) 8243", "interaction" : "interacts with", "SUID" : 8326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8322", "source" : "6045", "target" : "4797", "shared_name" : "701 (interacts with) 10735", "name" : "701 (interacts with) 10735", "interaction" : "interacts with", "SUID" : 8322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8318", "source" : "6045", "target" : "4549", "shared_name" : "701 (interacts with) 5903", "name" : "701 (interacts with) 5903", "interaction" : "interacts with", "SUID" : 8318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8314", "source" : "6045", "target" : "2733", "shared_name" : "701 (interacts with) 5718", "name" : "701 (interacts with) 5718", "interaction" : "interacts with", "SUID" : 8314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8310", "source" : "6045", "target" : "5641", "shared_name" : "701 (interacts with) 5518", "name" : "701 (interacts with) 5518", "interaction" : "interacts with", "SUID" : 8310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8306", "source" : "6045", "target" : "5429", "shared_name" : "701 (interacts with) 5048", "name" : "701 (interacts with) 5048", "interaction" : "interacts with", "SUID" : 8306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8302", "source" : "6045", "target" : "5037", "shared_name" : "701 (interacts with) 5515", "name" : "701 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 8302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8298", "source" : "6045", "target" : "2705", "shared_name" : "701 (interacts with) 8379", "name" : "701 (interacts with) 8379", "interaction" : "interacts with", "SUID" : 8298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8294", "source" : "6045", "target" : "4997", "shared_name" : "701 (interacts with) 54820", "name" : "701 (interacts with) 54820", "interaction" : "interacts with", "SUID" : 8294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8290", "source" : "6045", "target" : "3785", "shared_name" : "701 (interacts with) 1781", "name" : "701 (interacts with) 1781", "interaction" : "interacts with", "SUID" : 8290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8286", "source" : "6045", "target" : "1321", "shared_name" : "701 (interacts with) 1778", "name" : "701 (interacts with) 1778", "interaction" : "interacts with", "SUID" : 8286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8282", "source" : "6045", "target" : "1405", "shared_name" : "701 (interacts with) 998", "name" : "701 (interacts with) 998", "interaction" : "interacts with", "SUID" : 8282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8370", "source" : "6041", "target" : "3325", "shared_name" : "9217 (interacts with) 9517", "name" : "9217 (interacts with) 9517", "interaction" : "interacts with", "SUID" : 8370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8366", "source" : "6041", "target" : "5961", "shared_name" : "9217 (interacts with) 10682", "name" : "9217 (interacts with) 10682", "interaction" : "interacts with", "SUID" : 8366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8362", "source" : "6041", "target" : "5137", "shared_name" : "9217 (interacts with) 25782", "name" : "9217 (interacts with) 25782", "interaction" : "interacts with", "SUID" : 8362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8358", "source" : "6041", "target" : "733", "shared_name" : "9217 (interacts with) 91452", "name" : "9217 (interacts with) 91452", "interaction" : "interacts with", "SUID" : 8358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8354", "source" : "6041", "target" : "1205", "shared_name" : "9217 (interacts with) 23230", "name" : "9217 (interacts with) 23230", "interaction" : "interacts with", "SUID" : 8354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8350", "source" : "6041", "target" : "5653", "shared_name" : "9217 (interacts with) 22930", "name" : "9217 (interacts with) 22930", "interaction" : "interacts with", "SUID" : 8350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8346", "source" : "6041", "target" : "5821", "shared_name" : "9217 (interacts with) 4724", "name" : "9217 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 8346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8342", "source" : "6041", "target" : "5833", "shared_name" : "9217 (interacts with) 4726", "name" : "9217 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 8342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8338", "source" : "6041", "target" : "5581", "shared_name" : "9217 (interacts with) 64116", "name" : "9217 (interacts with) 64116", "interaction" : "interacts with", "SUID" : 8338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8334", "source" : "6041", "target" : "5553", "shared_name" : "9217 (interacts with) 55967", "name" : "9217 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 8334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8394", "source" : "6037", "target" : "533", "shared_name" : "374654 (interacts with) 4036", "name" : "374654 (interacts with) 4036", "interaction" : "interacts with", "SUID" : 8394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8390", "source" : "6037", "target" : "5249", "shared_name" : "374654 (interacts with) 8643", "name" : "374654 (interacts with) 8643", "interaction" : "interacts with", "SUID" : 8390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8386", "source" : "6037", "target" : "1181", "shared_name" : "374654 (interacts with) 51684", "name" : "374654 (interacts with) 51684", "interaction" : "interacts with", "SUID" : 8386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8382", "source" : "6037", "target" : "2765", "shared_name" : "374654 (interacts with) 50846", "name" : "374654 (interacts with) 50846", "interaction" : "interacts with", "SUID" : 8382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8378", "source" : "6037", "target" : "4753", "shared_name" : "374654 (interacts with) 2314", "name" : "374654 (interacts with) 2314", "interaction" : "interacts with", "SUID" : 8378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8374", "source" : "6037", "target" : "2401", "shared_name" : "374654 (interacts with) 28514", "name" : "374654 (interacts with) 28514", "interaction" : "interacts with", "SUID" : 8374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8502", "source" : "6033", "target" : "5073", "shared_name" : "11160 (interacts with) 7305", "name" : "11160 (interacts with) 7305", "interaction" : "interacts with", "SUID" : 8502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8498", "source" : "6033", "target" : "1601", "shared_name" : "11160 (interacts with) 7415", "name" : "11160 (interacts with) 7415", "interaction" : "interacts with", "SUID" : 8498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8494", "source" : "6033", "target" : "725", "shared_name" : "11160 (interacts with) 54209", "name" : "11160 (interacts with) 54209", "interaction" : "interacts with", "SUID" : 8494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8490", "source" : "6033", "target" : "637", "shared_name" : "11160 (interacts with) 6654", "name" : "11160 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 8490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8486", "source" : "6033", "target" : "817", "shared_name" : "11160 (interacts with) 5728", "name" : "11160 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 8486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8482", "source" : "6033", "target" : "1069", "shared_name" : "11160 (interacts with) 5879", "name" : "11160 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 8482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8478", "source" : "6033", "target" : "3465", "shared_name" : "11160 (interacts with) 5296", "name" : "11160 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 8478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8474", "source" : "6033", "target" : "4213", "shared_name" : "11160 (interacts with) 5295", "name" : "11160 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 8474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8470", "source" : "6033", "target" : "4293", "shared_name" : "11160 (interacts with) 5156", "name" : "11160 (interacts with) 5156", "interaction" : "interacts with", "SUID" : 8470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8466", "source" : "6033", "target" : "5973", "shared_name" : "11160 (interacts with) 5155", "name" : "11160 (interacts with) 5155", "interaction" : "interacts with", "SUID" : 8466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8462", "source" : "6033", "target" : "2173", "shared_name" : "11160 (interacts with) 5159", "name" : "11160 (interacts with) 5159", "interaction" : "interacts with", "SUID" : 8462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8458", "source" : "6033", "target" : "5225", "shared_name" : "11160 (interacts with) 5290", "name" : "11160 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 8458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8454", "source" : "6033", "target" : "2773", "shared_name" : "11160 (interacts with) 4908", "name" : "11160 (interacts with) 4908", "interaction" : "interacts with", "SUID" : 8454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8450", "source" : "6033", "target" : "4209", "shared_name" : "11160 (interacts with) 4915", "name" : "11160 (interacts with) 4915", "interaction" : "interacts with", "SUID" : 8450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8446", "source" : "6033", "target" : "3569", "shared_name" : "11160 (interacts with) 4893", "name" : "11160 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 8446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8442", "source" : "6033", "target" : "4385", "shared_name" : "11160 (interacts with) 3084", "name" : "11160 (interacts with) 3084", "interaction" : "interacts with", "SUID" : 8442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8438", "source" : "6033", "target" : "3457", "shared_name" : "11160 (interacts with) 22914", "name" : "11160 (interacts with) 22914", "interaction" : "interacts with", "SUID" : 8438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8434", "source" : "6033", "target" : "3573", "shared_name" : "11160 (interacts with) 3845", "name" : "11160 (interacts with) 3845", "interaction" : "interacts with", "SUID" : 8434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8430", "source" : "6033", "target" : "1209", "shared_name" : "11160 (interacts with) 51763", "name" : "11160 (interacts with) 51763", "interaction" : "interacts with", "SUID" : 8430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8426", "source" : "6033", "target" : "3685", "shared_name" : "11160 (interacts with) 3265", "name" : "11160 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 8426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8422", "source" : "6033", "target" : "3393", "shared_name" : "11160 (interacts with) 9402", "name" : "11160 (interacts with) 9402", "interaction" : "interacts with", "SUID" : 8422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8418", "source" : "6033", "target" : "4457", "shared_name" : "11160 (interacts with) 3082", "name" : "11160 (interacts with) 3082", "interaction" : "interacts with", "SUID" : 8418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8414", "source" : "6033", "target" : "5569", "shared_name" : "11160 (interacts with) 59345", "name" : "11160 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 8414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8410", "source" : "6033", "target" : "6129", "shared_name" : "11160 (interacts with) 2263", "name" : "11160 (interacts with) 2263", "interaction" : "interacts with", "SUID" : 8410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8406", "source" : "6033", "target" : "6121", "shared_name" : "11160 (interacts with) 2260", "name" : "11160 (interacts with) 2260", "interaction" : "interacts with", "SUID" : 8406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8402", "source" : "6033", "target" : "3381", "shared_name" : "11160 (interacts with) 2214", "name" : "11160 (interacts with) 2214", "interaction" : "interacts with", "SUID" : 8402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8398", "source" : "6033", "target" : "665", "shared_name" : "11160 (interacts with) 3309", "name" : "11160 (interacts with) 3309", "interaction" : "interacts with", "SUID" : 8398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8610", "source" : "6021", "target" : "5449", "shared_name" : "26999 (interacts with) 923", "name" : "26999 (interacts with) 923", "interaction" : "interacts with", "SUID" : 8610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8606", "source" : "6021", "target" : "4873", "shared_name" : "26999 (interacts with) 4644", "name" : "26999 (interacts with) 4644", "interaction" : "interacts with", "SUID" : 8606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8602", "source" : "6021", "target" : "5073", "shared_name" : "26999 (interacts with) 7305", "name" : "26999 (interacts with) 7305", "interaction" : "interacts with", "SUID" : 8602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8598", "source" : "6021", "target" : "725", "shared_name" : "26999 (interacts with) 54209", "name" : "26999 (interacts with) 54209", "interaction" : "interacts with", "SUID" : 8598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8594", "source" : "6021", "target" : "1069", "shared_name" : "26999 (interacts with) 5879", "name" : "26999 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 8594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8590", "source" : "6021", "target" : "637", "shared_name" : "26999 (interacts with) 6654", "name" : "26999 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 8590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8586", "source" : "6021", "target" : "3465", "shared_name" : "26999 (interacts with) 5296", "name" : "26999 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 8586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8582", "source" : "6021", "target" : "4213", "shared_name" : "26999 (interacts with) 5295", "name" : "26999 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 8582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8578", "source" : "6021", "target" : "4293", "shared_name" : "26999 (interacts with) 5156", "name" : "26999 (interacts with) 5156", "interaction" : "interacts with", "SUID" : 8578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8574", "source" : "6021", "target" : "5973", "shared_name" : "26999 (interacts with) 5155", "name" : "26999 (interacts with) 5155", "interaction" : "interacts with", "SUID" : 8574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8570", "source" : "6021", "target" : "2173", "shared_name" : "26999 (interacts with) 5159", "name" : "26999 (interacts with) 5159", "interaction" : "interacts with", "SUID" : 8570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8566", "source" : "6021", "target" : "5225", "shared_name" : "26999 (interacts with) 5290", "name" : "26999 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 8566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8562", "source" : "6021", "target" : "2773", "shared_name" : "26999 (interacts with) 4908", "name" : "26999 (interacts with) 4908", "interaction" : "interacts with", "SUID" : 8562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8558", "source" : "6021", "target" : "4209", "shared_name" : "26999 (interacts with) 4915", "name" : "26999 (interacts with) 4915", "interaction" : "interacts with", "SUID" : 8558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8554", "source" : "6021", "target" : "973", "shared_name" : "26999 (interacts with) 5595", "name" : "26999 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 8554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8550", "source" : "6021", "target" : "5081", "shared_name" : "26999 (interacts with) 5594", "name" : "26999 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 8550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8546", "source" : "6021", "target" : "4385", "shared_name" : "26999 (interacts with) 3084", "name" : "26999 (interacts with) 3084", "interaction" : "interacts with", "SUID" : 8546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8542", "source" : "6021", "target" : "3457", "shared_name" : "26999 (interacts with) 22914", "name" : "26999 (interacts with) 22914", "interaction" : "interacts with", "SUID" : 8542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8538", "source" : "6021", "target" : "4457", "shared_name" : "26999 (interacts with) 3082", "name" : "26999 (interacts with) 3082", "interaction" : "interacts with", "SUID" : 8538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8534", "source" : "6021", "target" : "5569", "shared_name" : "26999 (interacts with) 59345", "name" : "26999 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 8534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8530", "source" : "6021", "target" : "6121", "shared_name" : "26999 (interacts with) 2260", "name" : "26999 (interacts with) 2260", "interaction" : "interacts with", "SUID" : 8530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8526", "source" : "6021", "target" : "6129", "shared_name" : "26999 (interacts with) 2263", "name" : "26999 (interacts with) 2263", "interaction" : "interacts with", "SUID" : 8526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8522", "source" : "6021", "target" : "3629", "shared_name" : "26999 (interacts with) 2066", "name" : "26999 (interacts with) 2066", "interaction" : "interacts with", "SUID" : 8522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8518", "source" : "6021", "target" : "6033", "shared_name" : "26999 (interacts with) 11160", "name" : "26999 (interacts with) 11160", "interaction" : "interacts with", "SUID" : 8518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8514", "source" : "6021", "target" : "3381", "shared_name" : "26999 (interacts with) 2214", "name" : "26999 (interacts with) 2214", "interaction" : "interacts with", "SUID" : 8514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8510", "source" : "6021", "target" : "5817", "shared_name" : "26999 (interacts with) 1950", "name" : "26999 (interacts with) 1950", "interaction" : "interacts with", "SUID" : 8510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8506", "source" : "6021", "target" : "2597", "shared_name" : "26999 (interacts with) 2056", "name" : "26999 (interacts with) 2056", "interaction" : "interacts with", "SUID" : 8506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8638", "source" : "6017", "target" : "3037", "shared_name" : "79796 (interacts with) 8813", "name" : "79796 (interacts with) 8813", "interaction" : "interacts with", "SUID" : 8638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8634", "source" : "6017", "target" : "1697", "shared_name" : "79796 (interacts with) 8818", "name" : "79796 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 8634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8630", "source" : "6017", "target" : "1797", "shared_name" : "79796 (interacts with) 85365", "name" : "79796 (interacts with) 85365", "interaction" : "interacts with", "SUID" : 8630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8626", "source" : "6017", "target" : "5005", "shared_name" : "79796 (interacts with) 79868", "name" : "79796 (interacts with) 79868", "interaction" : "interacts with", "SUID" : 8626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8622", "source" : "6017", "target" : "5289", "shared_name" : "79796 (interacts with) 9526", "name" : "79796 (interacts with) 9526", "interaction" : "interacts with", "SUID" : 8622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8618", "source" : "6017", "target" : "2517", "shared_name" : "79796 (interacts with) 1798", "name" : "79796 (interacts with) 1798", "interaction" : "interacts with", "SUID" : 8618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8614", "source" : "6017", "target" : "1905", "shared_name" : "79796 (interacts with) 9488", "name" : "79796 (interacts with) 9488", "interaction" : "interacts with", "SUID" : 8614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8682", "source" : "6013", "target" : "5225", "shared_name" : "3574 (interacts with) 5290", "name" : "3574 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 8682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8678", "source" : "6013", "target" : "4213", "shared_name" : "3574 (interacts with) 5295", "name" : "3574 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 8678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8674", "source" : "6013", "target" : "3305", "shared_name" : "3574 (interacts with) 7040", "name" : "3574 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 8674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8670", "source" : "6013", "target" : "4065", "shared_name" : "3574 (interacts with) 7124", "name" : "3574 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 8670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8666", "source" : "6013", "target" : "3409", "shared_name" : "3574 (interacts with) 7043", "name" : "3574 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 8666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8662", "source" : "6013", "target" : "2153", "shared_name" : "3574 (interacts with) 7042", "name" : "3574 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 8662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8658", "source" : "6013", "target" : "5965", "shared_name" : "3574 (interacts with) 596", "name" : "3574 (interacts with) 596", "interaction" : "interacts with", "SUID" : 8658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8654", "source" : "6013", "target" : "3093", "shared_name" : "3574 (interacts with) 6597", "name" : "3574 (interacts with) 6597", "interaction" : "interacts with", "SUID" : 8654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8650", "source" : "6013", "target" : "3465", "shared_name" : "3574 (interacts with) 5296", "name" : "3574 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 8650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8646", "source" : "6013", "target" : "4345", "shared_name" : "3574 (interacts with) 4854", "name" : "3574 (interacts with) 4854", "interaction" : "interacts with", "SUID" : 8646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8642", "source" : "6013", "target" : "3841", "shared_name" : "3574 (interacts with) 9444", "name" : "3574 (interacts with) 9444", "interaction" : "interacts with", "SUID" : 8642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8726", "source" : "6009", "target" : "3845", "shared_name" : "64849 (interacts with) 10479", "name" : "64849 (interacts with) 10479", "interaction" : "interacts with", "SUID" : 8726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8722", "source" : "6009", "target" : "277", "shared_name" : "64849 (interacts with) 285175", "name" : "64849 (interacts with) 285175", "interaction" : "interacts with", "SUID" : 8722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8718", "source" : "6009", "target" : "5877", "shared_name" : "64849 (interacts with) 6535", "name" : "64849 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 8718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8714", "source" : "6009", "target" : "3781", "shared_name" : "64849 (interacts with) 9152", "name" : "64849 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 8714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8710", "source" : "6009", "target" : "1809", "shared_name" : "64849 (interacts with) 6548", "name" : "64849 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 8710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8706", "source" : "6009", "target" : "3473", "shared_name" : "64849 (interacts with) 6528", "name" : "64849 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 8706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8702", "source" : "6009", "target" : "401", "shared_name" : "64849 (interacts with) 6532", "name" : "64849 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 8702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8698", "source" : "6009", "target" : "3601", "shared_name" : "64849 (interacts with) 6531", "name" : "64849 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 8698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8694", "source" : "6009", "target" : "1385", "shared_name" : "64849 (interacts with) 6520", "name" : "64849 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 8694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8690", "source" : "6009", "target" : "2321", "shared_name" : "64849 (interacts with) 6509", "name" : "64849 (interacts with) 6509", "interaction" : "interacts with", "SUID" : 8690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8686", "source" : "6009", "target" : "3077", "shared_name" : "64849 (interacts with) 6506", "name" : "64849 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 8686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8762", "source" : "6005", "target" : "825", "shared_name" : "4988 (interacts with) 25942", "name" : "4988 (interacts with) 25942", "interaction" : "interacts with", "SUID" : 8762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8758", "source" : "6005", "target" : "2857", "shared_name" : "4988 (interacts with) 56947", "name" : "4988 (interacts with) 56947", "interaction" : "interacts with", "SUID" : 8758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8754", "source" : "6005", "target" : "3345", "shared_name" : "4988 (interacts with) 221927", "name" : "4988 (interacts with) 221927", "interaction" : "interacts with", "SUID" : 8754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8750", "source" : "6005", "target" : "5585", "shared_name" : "4988 (interacts with) 4512", "name" : "4988 (interacts with) 4512", "interaction" : "interacts with", "SUID" : 8750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8746", "source" : "6005", "target" : "4853", "shared_name" : "4988 (interacts with) 545", "name" : "4988 (interacts with) 545", "interaction" : "interacts with", "SUID" : 8746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8742", "source" : "6005", "target" : "3737", "shared_name" : "4988 (interacts with) 3064", "name" : "4988 (interacts with) 3064", "interaction" : "interacts with", "SUID" : 8742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8738", "source" : "6005", "target" : "4205", "shared_name" : "4988 (interacts with) 23503", "name" : "4988 (interacts with) 23503", "interaction" : "interacts with", "SUID" : 8738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8734", "source" : "6005", "target" : "4797", "shared_name" : "4988 (interacts with) 10735", "name" : "4988 (interacts with) 10735", "interaction" : "interacts with", "SUID" : 8734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8730", "source" : "6005", "target" : "989", "shared_name" : "4988 (interacts with) 5297", "name" : "4988 (interacts with) 5297", "interaction" : "interacts with", "SUID" : 8730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8886", "source" : "6001", "target" : "1669", "shared_name" : "55157 (interacts with) 6390", "name" : "55157 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 8886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8882", "source" : "6001", "target" : "3705", "shared_name" : "55157 (interacts with) 87178", "name" : "55157 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 8882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8878", "source" : "6001", "target" : "6181", "shared_name" : "55157 (interacts with) 84987", "name" : "55157 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 8878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8874", "source" : "6001", "target" : "3545", "shared_name" : "55157 (interacts with) 708", "name" : "55157 (interacts with) 708", "interaction" : "interacts with", "SUID" : 8874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8870", "source" : "6001", "target" : "501", "shared_name" : "55157 (interacts with) 65993", "name" : "55157 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 8870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8866", "source" : "6001", "target" : "1085", "shared_name" : "55157 (interacts with) 9377", "name" : "55157 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 8866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8862", "source" : "6001", "target" : "889", "shared_name" : "55157 (interacts with) 80224", "name" : "55157 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 8862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8858", "source" : "6001", "target" : "2477", "shared_name" : "55157 (interacts with) 57107", "name" : "55157 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 8858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8854", "source" : "6001", "target" : "2105", "shared_name" : "55157 (interacts with) 56945", "name" : "55157 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 8854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8850", "source" : "6001", "target" : "521", "shared_name" : "55157 (interacts with) 85476", "name" : "55157 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 8850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8846", "source" : "6001", "target" : "4757", "shared_name" : "55157 (interacts with) 9997", "name" : "55157 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 8846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8842", "source" : "6001", "target" : "2009", "shared_name" : "55157 (interacts with) 79133", "name" : "55157 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 8842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8838", "source" : "6001", "target" : "4409", "shared_name" : "55157 (interacts with) 6341", "name" : "55157 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 8838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8834", "source" : "6001", "target" : "5737", "shared_name" : "55157 (interacts with) 84340", "name" : "55157 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 8834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8830", "source" : "6001", "target" : "4693", "shared_name" : "55157 (interacts with) 6301", "name" : "55157 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 8830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8826", "source" : "6001", "target" : "1581", "shared_name" : "55157 (interacts with) 7407", "name" : "55157 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 8826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8822", "source" : "6001", "target" : "1089", "shared_name" : "55157 (interacts with) 5917", "name" : "55157 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 8822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8818", "source" : "6001", "target" : "4141", "shared_name" : "55157 (interacts with) 617", "name" : "55157 (interacts with) 617", "interaction" : "interacts with", "SUID" : 8818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8814", "source" : "6001", "target" : "5189", "shared_name" : "55157 (interacts with) 57176", "name" : "55157 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 8814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8810", "source" : "6001", "target" : "5085", "shared_name" : "55157 (interacts with) 56652", "name" : "55157 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 8810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8806", "source" : "6001", "target" : "713", "shared_name" : "55157 (interacts with) 7019", "name" : "55157 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 8806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8802", "source" : "6001", "target" : "3973", "shared_name" : "55157 (interacts with) 55572", "name" : "55157 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 8802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8798", "source" : "6001", "target" : "4349", "shared_name" : "55157 (interacts with) 5859", "name" : "55157 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 8798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8794", "source" : "6001", "target" : "1129", "shared_name" : "55157 (interacts with) 57505", "name" : "55157 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 8794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8790", "source" : "6001", "target" : "4085", "shared_name" : "55157 (interacts with) 55699", "name" : "55157 (interacts with) 55699", "interaction" : "interacts with", "SUID" : 8790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8786", "source" : "6001", "target" : "6073", "shared_name" : "55157 (interacts with) 92170", "name" : "55157 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 8786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8782", "source" : "6001", "target" : "721", "shared_name" : "55157 (interacts with) 79731", "name" : "55157 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 8782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8778", "source" : "6001", "target" : "4101", "shared_name" : "55157 (interacts with) 65260", "name" : "55157 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 8778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8774", "source" : "6001", "target" : "1197", "shared_name" : "55157 (interacts with) 79587", "name" : "55157 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 8774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8770", "source" : "6001", "target" : "4621", "shared_name" : "55157 (interacts with) 57038", "name" : "55157 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 8770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8766", "source" : "6001", "target" : "4869", "shared_name" : "55157 (interacts with) 92935", "name" : "55157 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 8766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8894", "source" : "5993", "target" : "1013", "shared_name" : "6611 (interacts with) 6898", "name" : "6611 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 8894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8890", "source" : "5993", "target" : "5593", "shared_name" : "6611 (interacts with) 875", "name" : "6611 (interacts with) 875", "interaction" : "interacts with", "SUID" : 8890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8902", "source" : "5989", "target" : "997", "shared_name" : "7273 (interacts with) 7431", "name" : "7273 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 8902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8898", "source" : "5989", "target" : "5285", "shared_name" : "7273 (interacts with) 10133", "name" : "7273 (interacts with) 10133", "interaction" : "interacts with", "SUID" : 8898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9082", "source" : "5985", "target" : "1369", "shared_name" : "27235 (interacts with) 27247", "name" : "27235 (interacts with) 27247", "interaction" : "interacts with", "SUID" : 9082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9078", "source" : "5985", "target" : "3545", "shared_name" : "27235 (interacts with) 708", "name" : "27235 (interacts with) 708", "interaction" : "interacts with", "SUID" : 9078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9074", "source" : "5985", "target" : "3501", "shared_name" : "27235 (interacts with) 5831", "name" : "27235 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 9074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9070", "source" : "5985", "target" : "1105", "shared_name" : "27235 (interacts with) 493753", "name" : "27235 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 9070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9066", "source" : "5985", "target" : "4069", "shared_name" : "27235 (interacts with) 374291", "name" : "27235 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 9066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9062", "source" : "5985", "target" : "2609", "shared_name" : "27235 (interacts with) 29960", "name" : "27235 (interacts with) 29960", "interaction" : "interacts with", "SUID" : 9062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9058", "source" : "5985", "target" : "2689", "shared_name" : "27235 (interacts with) 4715", "name" : "27235 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 9058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9054", "source" : "5985", "target" : "5085", "shared_name" : "27235 (interacts with) 56652", "name" : "27235 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 9054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9050", "source" : "5985", "target" : "1581", "shared_name" : "27235 (interacts with) 7407", "name" : "27235 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 9050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9046", "source" : "5985", "target" : "5189", "shared_name" : "27235 (interacts with) 57176", "name" : "27235 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 9046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9042", "source" : "5985", "target" : "4621", "shared_name" : "27235 (interacts with) 57038", "name" : "27235 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 9042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9038", "source" : "5985", "target" : "4141", "shared_name" : "27235 (interacts with) 617", "name" : "27235 (interacts with) 617", "interaction" : "interacts with", "SUID" : 9038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9034", "source" : "5985", "target" : "4897", "shared_name" : "27235 (interacts with) 55149", "name" : "27235 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 9034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9030", "source" : "5985", "target" : "2009", "shared_name" : "27235 (interacts with) 79133", "name" : "27235 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 9030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9026", "source" : "5985", "target" : "4061", "shared_name" : "27235 (interacts with) 4705", "name" : "27235 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 9026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9022", "source" : "5985", "target" : "4757", "shared_name" : "27235 (interacts with) 9997", "name" : "27235 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 9022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9018", "source" : "5985", "target" : "2105", "shared_name" : "27235 (interacts with) 56945", "name" : "27235 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 9018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9014", "source" : "5985", "target" : "2337", "shared_name" : "27235 (interacts with) 28976", "name" : "27235 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 9014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9010", "source" : "5985", "target" : "4017", "shared_name" : "27235 (interacts with) 4719", "name" : "27235 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 9010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9006", "source" : "5985", "target" : "501", "shared_name" : "27235 (interacts with) 65993", "name" : "27235 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 9006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9002", "source" : "5985", "target" : "477", "shared_name" : "27235 (interacts with) 51021", "name" : "27235 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 9002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8998", "source" : "5985", "target" : "1197", "shared_name" : "27235 (interacts with) 79587", "name" : "27235 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 8998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8994", "source" : "5985", "target" : "4409", "shared_name" : "27235 (interacts with) 6341", "name" : "27235 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 8994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8990", "source" : "5985", "target" : "713", "shared_name" : "27235 (interacts with) 7019", "name" : "27235 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 8990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8986", "source" : "5985", "target" : "2109", "shared_name" : "27235 (interacts with) 51103", "name" : "27235 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 8986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8982", "source" : "5985", "target" : "1669", "shared_name" : "27235 (interacts with) 6390", "name" : "27235 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 8982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8978", "source" : "5985", "target" : "2741", "shared_name" : "27235 (interacts with) 4695", "name" : "27235 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 8978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8974", "source" : "5985", "target" : "3973", "shared_name" : "27235 (interacts with) 55572", "name" : "27235 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 8974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8970", "source" : "5985", "target" : "4869", "shared_name" : "27235 (interacts with) 92935", "name" : "27235 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 8970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8966", "source" : "5985", "target" : "2753", "shared_name" : "27235 (interacts with) 4720", "name" : "27235 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 8966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8962", "source" : "5985", "target" : "4101", "shared_name" : "27235 (interacts with) 65260", "name" : "27235 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 8962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8958", "source" : "5985", "target" : "3633", "shared_name" : "27235 (interacts with) 51067", "name" : "27235 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 8958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8954", "source" : "5985", "target" : "1869", "shared_name" : "27235 (interacts with) 4729", "name" : "27235 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 8954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8950", "source" : "5985", "target" : "1929", "shared_name" : "27235 (interacts with) 51218", "name" : "27235 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 8950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8946", "source" : "5985", "target" : "5845", "shared_name" : "27235 (interacts with) 4714", "name" : "27235 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 8946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8942", "source" : "5985", "target" : "2797", "shared_name" : "27235 (interacts with) 4728", "name" : "27235 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 8942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8938", "source" : "5985", "target" : "2285", "shared_name" : "27235 (interacts with) 51300", "name" : "27235 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 8938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8934", "source" : "5985", "target" : "5505", "shared_name" : "27235 (interacts with) 29078", "name" : "27235 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 8934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8930", "source" : "5985", "target" : "2801", "shared_name" : "27235 (interacts with) 4700", "name" : "27235 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 8930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8926", "source" : "5985", "target" : "1013", "shared_name" : "27235 (interacts with) 6898", "name" : "27235 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 8926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8922", "source" : "5985", "target" : "1561", "shared_name" : "27235 (interacts with) 51117", "name" : "27235 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 8922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8918", "source" : "5985", "target" : "2477", "shared_name" : "27235 (interacts with) 57107", "name" : "27235 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 8918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8914", "source" : "5985", "target" : "1389", "shared_name" : "27235 (interacts with) 92609", "name" : "27235 (interacts with) 92609", "interaction" : "interacts with", "SUID" : 8914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8910", "source" : "5985", "target" : "4353", "shared_name" : "27235 (interacts with) 9512", "name" : "27235 (interacts with) 9512", "interaction" : "interacts with", "SUID" : 8910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "8906", "source" : "5985", "target" : "529", "shared_name" : "27235 (interacts with) 23203", "name" : "27235 (interacts with) 23203", "interaction" : "interacts with", "SUID" : 8906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9110", "source" : "5981", "target" : "5621", "shared_name" : "1917 (interacts with) 25885", "name" : "1917 (interacts with) 25885", "interaction" : "interacts with", "SUID" : 9110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9106", "source" : "5981", "target" : "5709", "shared_name" : "1917 (interacts with) 55703", "name" : "1917 (interacts with) 55703", "interaction" : "interacts with", "SUID" : 9106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9102", "source" : "5981", "target" : "6189", "shared_name" : "1917 (interacts with) 54676", "name" : "1917 (interacts with) 54676", "interaction" : "interacts with", "SUID" : 9102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9098", "source" : "5981", "target" : "1581", "shared_name" : "1917 (interacts with) 7407", "name" : "1917 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 9098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9094", "source" : "5981", "target" : "2725", "shared_name" : "1917 (interacts with) 1789", "name" : "1917 (interacts with) 1789", "interaction" : "interacts with", "SUID" : 9094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9090", "source" : "5981", "target" : "4025", "shared_name" : "1917 (interacts with) 284111", "name" : "1917 (interacts with) 284111", "interaction" : "interacts with", "SUID" : 9090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9086", "source" : "5981", "target" : "3925", "shared_name" : "1917 (interacts with) 1051", "name" : "1917 (interacts with) 1051", "interaction" : "interacts with", "SUID" : 9086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9214", "source" : "5977", "target" : "893", "shared_name" : "1915 (interacts with) 9361", "name" : "1915 (interacts with) 9361", "interaction" : "interacts with", "SUID" : 9214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9210", "source" : "5977", "target" : "5029", "shared_name" : "1915 (interacts with) 4842", "name" : "1915 (interacts with) 4842", "interaction" : "interacts with", "SUID" : 9210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9206", "source" : "5977", "target" : "2005", "shared_name" : "1915 (interacts with) 4846", "name" : "1915 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 9206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9202", "source" : "5977", "target" : "4681", "shared_name" : "1915 (interacts with) 4843", "name" : "1915 (interacts with) 4843", "interaction" : "interacts with", "SUID" : 9202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9198", "source" : "5977", "target" : "5921", "shared_name" : "1915 (interacts with) 57570", "name" : "1915 (interacts with) 57570", "interaction" : "interacts with", "SUID" : 9198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9194", "source" : "5977", "target" : "2049", "shared_name" : "1915 (interacts with) 4552", "name" : "1915 (interacts with) 4552", "interaction" : "interacts with", "SUID" : 9194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9190", "source" : "5977", "target" : "6069", "shared_name" : "1915 (interacts with) 84525", "name" : "1915 (interacts with) 84525", "interaction" : "interacts with", "SUID" : 9190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9186", "source" : "5977", "target" : "2241", "shared_name" : "1915 (interacts with) 3043", "name" : "1915 (interacts with) 3043", "interaction" : "interacts with", "SUID" : 9186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9182", "source" : "5977", "target" : "2125", "shared_name" : "1915 (interacts with) 2512", "name" : "1915 (interacts with) 2512", "interaction" : "interacts with", "SUID" : 9182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9178", "source" : "5977", "target" : "1241", "shared_name" : "1915 (interacts with) 808", "name" : "1915 (interacts with) 808", "interaction" : "interacts with", "SUID" : 9178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9174", "source" : "5977", "target" : "2653", "shared_name" : "1915 (interacts with) 302", "name" : "1915 (interacts with) 302", "interaction" : "interacts with", "SUID" : 9174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9170", "source" : "5977", "target" : "1597", "shared_name" : "1915 (interacts with) 3146", "name" : "1915 (interacts with) 3146", "interaction" : "interacts with", "SUID" : 9170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9166", "source" : "5977", "target" : "997", "shared_name" : "1915 (interacts with) 7431", "name" : "1915 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 9166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9162", "source" : "5977", "target" : "4317", "shared_name" : "1915 (interacts with) 3178", "name" : "1915 (interacts with) 3178", "interaction" : "interacts with", "SUID" : 9162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9158", "source" : "5977", "target" : "1201", "shared_name" : "1915 (interacts with) 805", "name" : "1915 (interacts with) 805", "interaction" : "interacts with", "SUID" : 9158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9154", "source" : "5977", "target" : "4077", "shared_name" : "1915 (interacts with) 71", "name" : "1915 (interacts with) 71", "interaction" : "interacts with", "SUID" : 9154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9150", "source" : "5977", "target" : "853", "shared_name" : "1915 (interacts with) 60", "name" : "1915 (interacts with) 60", "interaction" : "interacts with", "SUID" : 9150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9146", "source" : "5977", "target" : "473", "shared_name" : "1915 (interacts with) 7072", "name" : "1915 (interacts with) 7072", "interaction" : "interacts with", "SUID" : 9146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9142", "source" : "5977", "target" : "5621", "shared_name" : "1915 (interacts with) 25885", "name" : "1915 (interacts with) 25885", "interaction" : "interacts with", "SUID" : 9142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9138", "source" : "5977", "target" : "5709", "shared_name" : "1915 (interacts with) 55703", "name" : "1915 (interacts with) 55703", "interaction" : "interacts with", "SUID" : 9138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9134", "source" : "5977", "target" : "6189", "shared_name" : "1915 (interacts with) 54676", "name" : "1915 (interacts with) 54676", "interaction" : "interacts with", "SUID" : 9134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9130", "source" : "5977", "target" : "969", "shared_name" : "1915 (interacts with) 2670", "name" : "1915 (interacts with) 2670", "interaction" : "interacts with", "SUID" : 9130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9126", "source" : "5977", "target" : "5981", "shared_name" : "1915 (interacts with) 1917", "name" : "1915 (interacts with) 1917", "interaction" : "interacts with", "SUID" : 9126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9122", "source" : "5977", "target" : "1729", "shared_name" : "1915 (interacts with) 5111", "name" : "1915 (interacts with) 5111", "interaction" : "interacts with", "SUID" : 9122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9118", "source" : "5977", "target" : "5037", "shared_name" : "1915 (interacts with) 5515", "name" : "1915 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 9118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9114", "source" : "5977", "target" : "1581", "shared_name" : "1915 (interacts with) 7407", "name" : "1915 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 9114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9254", "source" : "5973", "target" : "4109", "shared_name" : "5155 (interacts with) 6696", "name" : "5155 (interacts with) 6696", "interaction" : "interacts with", "SUID" : 9254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9250", "source" : "5973", "target" : "805", "shared_name" : "5155 (interacts with) 6772", "name" : "5155 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 9250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9246", "source" : "5973", "target" : "4981", "shared_name" : "5155 (interacts with) 6774", "name" : "5155 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 9246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9242", "source" : "5973", "target" : "637", "shared_name" : "5155 (interacts with) 6654", "name" : "5155 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 9242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9238", "source" : "5973", "target" : "1069", "shared_name" : "5155 (interacts with) 5879", "name" : "5155 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 9238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9234", "source" : "5973", "target" : "817", "shared_name" : "5155 (interacts with) 5728", "name" : "5155 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 9234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9230", "source" : "5973", "target" : "4213", "shared_name" : "5155 (interacts with) 5295", "name" : "5155 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 9230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9226", "source" : "5973", "target" : "3465", "shared_name" : "5155 (interacts with) 5296", "name" : "5155 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 9226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9222", "source" : "5973", "target" : "5225", "shared_name" : "5155 (interacts with) 5290", "name" : "5155 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 9222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9218", "source" : "5973", "target" : "3545", "shared_name" : "5155 (interacts with) 708", "name" : "5155 (interacts with) 708", "interaction" : "interacts with", "SUID" : 9218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9278", "source" : "5969", "target" : "5773", "shared_name" : "10382 (interacts with) 9181", "name" : "10382 (interacts with) 9181", "interaction" : "interacts with", "SUID" : 9278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9274", "source" : "5969", "target" : "5713", "shared_name" : "10382 (interacts with) 7531", "name" : "10382 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 9274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9270", "source" : "5969", "target" : "4021", "shared_name" : "10382 (interacts with) 203068", "name" : "10382 (interacts with) 203068", "interaction" : "interacts with", "SUID" : 9270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9266", "source" : "5969", "target" : "5397", "shared_name" : "10382 (interacts with) 85378", "name" : "10382 (interacts with) 85378", "interaction" : "interacts with", "SUID" : 9266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9262", "source" : "5969", "target" : "2665", "shared_name" : "10382 (interacts with) 27229", "name" : "10382 (interacts with) 27229", "interaction" : "interacts with", "SUID" : 9262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9258", "source" : "5969", "target" : "4513", "shared_name" : "10382 (interacts with) 6904", "name" : "10382 (interacts with) 6904", "interaction" : "interacts with", "SUID" : 9258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9386", "source" : "5965", "target" : "4065", "shared_name" : "596 (interacts with) 7124", "name" : "596 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 9386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9382", "source" : "5965", "target" : "4949", "shared_name" : "596 (interacts with) 5970", "name" : "596 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 9382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9378", "source" : "5965", "target" : "637", "shared_name" : "596 (interacts with) 6654", "name" : "596 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 9378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9374", "source" : "5965", "target" : "981", "shared_name" : "596 (interacts with) 7157", "name" : "596 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 9374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9370", "source" : "5965", "target" : "805", "shared_name" : "596 (interacts with) 6772", "name" : "596 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 9370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9366", "source" : "5965", "target" : "4769", "shared_name" : "596 (interacts with) 7132", "name" : "596 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 9366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9362", "source" : "5965", "target" : "1845", "shared_name" : "596 (interacts with) 836", "name" : "596 (interacts with) 836", "interaction" : "interacts with", "SUID" : 9362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9358", "source" : "5965", "target" : "1973", "shared_name" : "596 (interacts with) 6709", "name" : "596 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 9358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9354", "source" : "5965", "target" : "829", "shared_name" : "596 (interacts with) 8772", "name" : "596 (interacts with) 8772", "interaction" : "interacts with", "SUID" : 9354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9350", "source" : "5965", "target" : "3021", "shared_name" : "596 (interacts with) 84823", "name" : "596 (interacts with) 84823", "interaction" : "interacts with", "SUID" : 9350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9346", "source" : "5965", "target" : "4077", "shared_name" : "596 (interacts with) 71", "name" : "596 (interacts with) 71", "interaction" : "interacts with", "SUID" : 9346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9342", "source" : "5965", "target" : "5637", "shared_name" : "596 (interacts with) 6609", "name" : "596 (interacts with) 6609", "interaction" : "interacts with", "SUID" : 9342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9338", "source" : "5965", "target" : "6117", "shared_name" : "596 (interacts with) 9131", "name" : "596 (interacts with) 9131", "interaction" : "interacts with", "SUID" : 9338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9334", "source" : "5965", "target" : "593", "shared_name" : "596 (interacts with) 8743", "name" : "596 (interacts with) 8743", "interaction" : "interacts with", "SUID" : 9334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9330", "source" : "5965", "target" : "4765", "shared_name" : "596 (interacts with) 7015", "name" : "596 (interacts with) 7015", "interaction" : "interacts with", "SUID" : 9330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9326", "source" : "5965", "target" : "629", "shared_name" : "596 (interacts with) 7013", "name" : "596 (interacts with) 7013", "interaction" : "interacts with", "SUID" : 9326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9322", "source" : "5965", "target" : "6057", "shared_name" : "596 (interacts with) 3162", "name" : "596 (interacts with) 3162", "interaction" : "interacts with", "SUID" : 9322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9318", "source" : "5965", "target" : "4981", "shared_name" : "596 (interacts with) 6774", "name" : "596 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 9318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9314", "source" : "5965", "target" : "2157", "shared_name" : "596 (interacts with) 23028", "name" : "596 (interacts with) 23028", "interaction" : "interacts with", "SUID" : 9314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9310", "source" : "5965", "target" : "3517", "shared_name" : "596 (interacts with) 2033", "name" : "596 (interacts with) 2033", "interaction" : "interacts with", "SUID" : 9310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9306", "source" : "5965", "target" : "873", "shared_name" : "596 (interacts with) 1385", "name" : "596 (interacts with) 1385", "interaction" : "interacts with", "SUID" : 9306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9302", "source" : "5965", "target" : "1473", "shared_name" : "596 (interacts with) 4524", "name" : "596 (interacts with) 4524", "interaction" : "interacts with", "SUID" : 9302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9298", "source" : "5965", "target" : "1877", "shared_name" : "596 (interacts with) 9531", "name" : "596 (interacts with) 9531", "interaction" : "interacts with", "SUID" : 9298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9294", "source" : "5965", "target" : "1113", "shared_name" : "596 (interacts with) 10134", "name" : "596 (interacts with) 10134", "interaction" : "interacts with", "SUID" : 9294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9290", "source" : "5965", "target" : "1349", "shared_name" : "596 (interacts with) 6606", "name" : "596 (interacts with) 6606", "interaction" : "interacts with", "SUID" : 9290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9286", "source" : "5965", "target" : "3041", "shared_name" : "596 (interacts with) 5663", "name" : "596 (interacts with) 5663", "interaction" : "interacts with", "SUID" : 9286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9282", "source" : "5965", "target" : "5101", "shared_name" : "596 (interacts with) 8678", "name" : "596 (interacts with) 8678", "interaction" : "interacts with", "SUID" : 9282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9438", "source" : "5961", "target" : "681", "shared_name" : "10682 (interacts with) 6646", "name" : "10682 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 9438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9434", "source" : "5961", "target" : "3013", "shared_name" : "10682 (interacts with) 50814", "name" : "10682 (interacts with) 50814", "interaction" : "interacts with", "SUID" : 9434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9430", "source" : "5961", "target" : "4489", "shared_name" : "10682 (interacts with) 2222", "name" : "10682 (interacts with) 2222", "interaction" : "interacts with", "SUID" : 9430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9426", "source" : "5961", "target" : "1721", "shared_name" : "10682 (interacts with) 51807", "name" : "10682 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 9426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9422", "source" : "5961", "target" : "261", "shared_name" : "10682 (interacts with) 1717", "name" : "10682 (interacts with) 1717", "interaction" : "interacts with", "SUID" : 9422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9418", "source" : "5961", "target" : "5173", "shared_name" : "10682 (interacts with) 1718", "name" : "10682 (interacts with) 1718", "interaction" : "interacts with", "SUID" : 9418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9414", "source" : "5961", "target" : "5893", "shared_name" : "10682 (interacts with) 6309", "name" : "10682 (interacts with) 6309", "interaction" : "interacts with", "SUID" : 9414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9410", "source" : "5961", "target" : "3681", "shared_name" : "10682 (interacts with) 1892", "name" : "10682 (interacts with) 1892", "interaction" : "interacts with", "SUID" : 9410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9406", "source" : "5961", "target" : "1525", "shared_name" : "10682 (interacts with) 3295", "name" : "10682 (interacts with) 3295", "interaction" : "interacts with", "SUID" : 9406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9402", "source" : "5961", "target" : "1385", "shared_name" : "10682 (interacts with) 6520", "name" : "10682 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 9402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9398", "source" : "5961", "target" : "3645", "shared_name" : "10682 (interacts with) 4758", "name" : "10682 (interacts with) 4758", "interaction" : "interacts with", "SUID" : 9398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9394", "source" : "5961", "target" : "5901", "shared_name" : "10682 (interacts with) 11277", "name" : "10682 (interacts with) 11277", "interaction" : "interacts with", "SUID" : 9394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9390", "source" : "5961", "target" : "2373", "shared_name" : "10682 (interacts with) 64801", "name" : "10682 (interacts with) 64801", "interaction" : "interacts with", "SUID" : 9390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9454", "source" : "5957", "target" : "809", "shared_name" : "7052 (interacts with) 2335", "name" : "7052 (interacts with) 2335", "interaction" : "interacts with", "SUID" : 9454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9450", "source" : "5957", "target" : "1429", "shared_name" : "7052 (interacts with) 65125", "name" : "7052 (interacts with) 65125", "interaction" : "interacts with", "SUID" : 9450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9446", "source" : "5957", "target" : "5653", "shared_name" : "7052 (interacts with) 22930", "name" : "7052 (interacts with) 22930", "interaction" : "interacts with", "SUID" : 9446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9442", "source" : "5957", "target" : "4905", "shared_name" : "7052 (interacts with) 440275", "name" : "7052 (interacts with) 440275", "interaction" : "interacts with", "SUID" : 9442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9462", "source" : "5953", "target" : "4113", "shared_name" : "283989 (interacts with) 60528", "name" : "283989 (interacts with) 60528", "interaction" : "interacts with", "SUID" : 9462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9458", "source" : "5953", "target" : "3257", "shared_name" : "283989 (interacts with) 80746", "name" : "283989 (interacts with) 80746", "interaction" : "interacts with", "SUID" : 9458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9642", "source" : "5949", "target" : "981", "shared_name" : "672 (interacts with) 7157", "name" : "672 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 9642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9638", "source" : "5949", "target" : "2673", "shared_name" : "672 (interacts with) 8841", "name" : "672 (interacts with) 8841", "interaction" : "interacts with", "SUID" : 9638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9634", "source" : "5949", "target" : "2305", "shared_name" : "672 (interacts with) 6908", "name" : "672 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 9634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9630", "source" : "5949", "target" : "665", "shared_name" : "672 (interacts with) 3309", "name" : "672 (interacts with) 3309", "interaction" : "interacts with", "SUID" : 9630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9626", "source" : "5949", "target" : "669", "shared_name" : "672 (interacts with) 259266", "name" : "672 (interacts with) 259266", "interaction" : "interacts with", "SUID" : 9626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9622", "source" : "5949", "target" : "1441", "shared_name" : "672 (interacts with) 1509", "name" : "672 (interacts with) 1509", "interaction" : "interacts with", "SUID" : 9622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9618", "source" : "5949", "target" : "5521", "shared_name" : "672 (interacts with) 7518", "name" : "672 (interacts with) 7518", "interaction" : "interacts with", "SUID" : 9618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9614", "source" : "5949", "target" : "1793", "shared_name" : "672 (interacts with) 7515", "name" : "672 (interacts with) 7515", "interaction" : "interacts with", "SUID" : 9614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9610", "source" : "5949", "target" : "5197", "shared_name" : "672 (interacts with) 7156", "name" : "672 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 9610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9606", "source" : "5949", "target" : "4797", "shared_name" : "672 (interacts with) 10735", "name" : "672 (interacts with) 10735", "interaction" : "interacts with", "SUID" : 9606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9602", "source" : "5949", "target" : "877", "shared_name" : "672 (interacts with) 7341", "name" : "672 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 9602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9598", "source" : "5949", "target" : "5849", "shared_name" : "672 (interacts with) 6613", "name" : "672 (interacts with) 6613", "interaction" : "interacts with", "SUID" : 9598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9594", "source" : "5949", "target" : "4497", "shared_name" : "672 (interacts with) 8243", "name" : "672 (interacts with) 8243", "interaction" : "interacts with", "SUID" : 9594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9590", "source" : "5949", "target" : "1629", "shared_name" : "672 (interacts with) 6047", "name" : "672 (interacts with) 6047", "interaction" : "interacts with", "SUID" : 9590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9586", "source" : "5949", "target" : "2921", "shared_name" : "672 (interacts with) 5981", "name" : "672 (interacts with) 5981", "interaction" : "interacts with", "SUID" : 9586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9582", "source" : "5949", "target" : "2649", "shared_name" : "672 (interacts with) 5430", "name" : "672 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 9582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9578", "source" : "5949", "target" : "5861", "shared_name" : "672 (interacts with) 5435", "name" : "672 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 9578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9574", "source" : "5949", "target" : "2529", "shared_name" : "672 (interacts with) 5424", "name" : "672 (interacts with) 5424", "interaction" : "interacts with", "SUID" : 9574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9570", "source" : "5949", "target" : "3049", "shared_name" : "672 (interacts with) 142", "name" : "672 (interacts with) 142", "interaction" : "interacts with", "SUID" : 9570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9566", "source" : "5949", "target" : "2053", "shared_name" : "672 (interacts with) 7468", "name" : "672 (interacts with) 7468", "interaction" : "interacts with", "SUID" : 9566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9562", "source" : "5949", "target" : "2809", "shared_name" : "672 (interacts with) 11284", "name" : "672 (interacts with) 11284", "interaction" : "interacts with", "SUID" : 9562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9558", "source" : "5949", "target" : "1729", "shared_name" : "672 (interacts with) 5111", "name" : "672 (interacts with) 5111", "interaction" : "interacts with", "SUID" : 9558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9554", "source" : "5949", "target" : "3933", "shared_name" : "672 (interacts with) 10524", "name" : "672 (interacts with) 10524", "interaction" : "interacts with", "SUID" : 9554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9550", "source" : "5949", "target" : "2425", "shared_name" : "672 (interacts with) 3981", "name" : "672 (interacts with) 3981", "interaction" : "interacts with", "SUID" : 9550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9546", "source" : "5949", "target" : "2145", "shared_name" : "672 (interacts with) 8924", "name" : "672 (interacts with) 8924", "interaction" : "interacts with", "SUID" : 9546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9542", "source" : "5949", "target" : "913", "shared_name" : "672 (interacts with) 404672", "name" : "672 (interacts with) 404672", "interaction" : "interacts with", "SUID" : 9542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9538", "source" : "5949", "target" : "1937", "shared_name" : "672 (interacts with) 2965", "name" : "672 (interacts with) 2965", "interaction" : "interacts with", "SUID" : 9538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9534", "source" : "5949", "target" : "5041", "shared_name" : "672 (interacts with) 2067", "name" : "672 (interacts with) 2067", "interaction" : "interacts with", "SUID" : 9534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9530", "source" : "5949", "target" : "4177", "shared_name" : "672 (interacts with) 2068", "name" : "672 (interacts with) 2068", "interaction" : "interacts with", "SUID" : 9530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9526", "source" : "5949", "target" : "1709", "shared_name" : "672 (interacts with) 2074", "name" : "672 (interacts with) 2074", "interaction" : "interacts with", "SUID" : 9526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9522", "source" : "5949", "target" : "2261", "shared_name" : "672 (interacts with) 1161", "name" : "672 (interacts with) 1161", "interaction" : "interacts with", "SUID" : 9522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9518", "source" : "5949", "target" : "505", "shared_name" : "672 (interacts with) 2071", "name" : "672 (interacts with) 2071", "interaction" : "interacts with", "SUID" : 9518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9514", "source" : "5949", "target" : "2709", "shared_name" : "672 (interacts with) 2072", "name" : "672 (interacts with) 2072", "interaction" : "interacts with", "SUID" : 9514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9510", "source" : "5949", "target" : "4285", "shared_name" : "672 (interacts with) 8450", "name" : "672 (interacts with) 8450", "interaction" : "interacts with", "SUID" : 9510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9506", "source" : "5949", "target" : "5741", "shared_name" : "672 (interacts with) 9150", "name" : "672 (interacts with) 9150", "interaction" : "interacts with", "SUID" : 9506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9502", "source" : "5949", "target" : "4249", "shared_name" : "672 (interacts with) 4331", "name" : "672 (interacts with) 4331", "interaction" : "interacts with", "SUID" : 9502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9498", "source" : "5949", "target" : "4469", "shared_name" : "672 (interacts with) 8295", "name" : "672 (interacts with) 8295", "interaction" : "interacts with", "SUID" : 9498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9494", "source" : "5949", "target" : "2157", "shared_name" : "672 (interacts with) 23028", "name" : "672 (interacts with) 23028", "interaction" : "interacts with", "SUID" : 9494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9490", "source" : "5949", "target" : "2417", "shared_name" : "672 (interacts with) 675", "name" : "672 (interacts with) 675", "interaction" : "interacts with", "SUID" : 9490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9486", "source" : "5949", "target" : "1237", "shared_name" : "672 (interacts with) 3329", "name" : "672 (interacts with) 3329", "interaction" : "interacts with", "SUID" : 9486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9482", "source" : "5949", "target" : "805", "shared_name" : "672 (interacts with) 6772", "name" : "672 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 9482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9478", "source" : "5949", "target" : "4213", "shared_name" : "672 (interacts with) 5295", "name" : "672 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 9478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9474", "source" : "5949", "target" : "5965", "shared_name" : "672 (interacts with) 596", "name" : "672 (interacts with) 596", "interaction" : "interacts with", "SUID" : 9474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9470", "source" : "5949", "target" : "1305", "shared_name" : "672 (interacts with) 25", "name" : "672 (interacts with) 25", "interaction" : "interacts with", "SUID" : 9470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9466", "source" : "5949", "target" : "1601", "shared_name" : "672 (interacts with) 7415", "name" : "672 (interacts with) 7415", "interaction" : "interacts with", "SUID" : 9466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9706", "source" : "5945", "target" : "1769", "shared_name" : "55750 (interacts with) 57104", "name" : "55750 (interacts with) 57104", "interaction" : "interacts with", "SUID" : 9706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9702", "source" : "5945", "target" : "3841", "shared_name" : "55750 (interacts with) 9444", "name" : "55750 (interacts with) 9444", "interaction" : "interacts with", "SUID" : 9702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9698", "source" : "5945", "target" : "361", "shared_name" : "55750 (interacts with) 6576", "name" : "55750 (interacts with) 6576", "interaction" : "interacts with", "SUID" : 9698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9694", "source" : "5945", "target" : "4521", "shared_name" : "55750 (interacts with) 5894", "name" : "55750 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 9694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9690", "source" : "5945", "target" : "3569", "shared_name" : "55750 (interacts with) 4893", "name" : "55750 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 9690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9686", "source" : "5945", "target" : "3573", "shared_name" : "55750 (interacts with) 3845", "name" : "55750 (interacts with) 3845", "interaction" : "interacts with", "SUID" : 9686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9682", "source" : "5945", "target" : "973", "shared_name" : "55750 (interacts with) 5595", "name" : "55750 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 9682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9678", "source" : "5945", "target" : "5081", "shared_name" : "55750 (interacts with) 5594", "name" : "55750 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 9678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9674", "source" : "5945", "target" : "3577", "shared_name" : "55750 (interacts with) 5605", "name" : "55750 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 9674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9670", "source" : "5945", "target" : "5361", "shared_name" : "55750 (interacts with) 5604", "name" : "55750 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 9670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9666", "source" : "5945", "target" : "809", "shared_name" : "55750 (interacts with) 2335", "name" : "55750 (interacts with) 2335", "interaction" : "interacts with", "SUID" : 9666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9662", "source" : "5945", "target" : "3429", "shared_name" : "55750 (interacts with) 3674", "name" : "55750 (interacts with) 3674", "interaction" : "interacts with", "SUID" : 9662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9658", "source" : "5945", "target" : "3685", "shared_name" : "55750 (interacts with) 3265", "name" : "55750 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 9658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9654", "source" : "5945", "target" : "2553", "shared_name" : "55750 (interacts with) 815", "name" : "55750 (interacts with) 815", "interaction" : "interacts with", "SUID" : 9654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9650", "source" : "5945", "target" : "993", "shared_name" : "55750 (interacts with) 801", "name" : "55750 (interacts with) 801", "interaction" : "interacts with", "SUID" : 9650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9646", "source" : "5945", "target" : "2513", "shared_name" : "55750 (interacts with) 22931", "name" : "55750 (interacts with) 22931", "interaction" : "interacts with", "SUID" : 9646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9778", "source" : "5941", "target" : "4065", "shared_name" : "5914 (interacts with) 7124", "name" : "5914 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 9778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9774", "source" : "5941", "target" : "981", "shared_name" : "5914 (interacts with) 7157", "name" : "5914 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 9774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9770", "source" : "5941", "target" : "4769", "shared_name" : "5914 (interacts with) 7132", "name" : "5914 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 9770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9766", "source" : "5941", "target" : "2305", "shared_name" : "5914 (interacts with) 6908", "name" : "5914 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 9766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9762", "source" : "5941", "target" : "877", "shared_name" : "5914 (interacts with) 7341", "name" : "5914 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 9762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9758", "source" : "5941", "target" : "5781", "shared_name" : "5914 (interacts with) 6672", "name" : "5914 (interacts with) 6672", "interaction" : "interacts with", "SUID" : 9758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9754", "source" : "5941", "target" : "2069", "shared_name" : "5914 (interacts with) 84106", "name" : "5914 (interacts with) 84106", "interaction" : "interacts with", "SUID" : 9754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9750", "source" : "5941", "target" : "1485", "shared_name" : "5914 (interacts with) 8050", "name" : "5914 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 9750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9746", "source" : "5941", "target" : "1829", "shared_name" : "5914 (interacts with) 7421", "name" : "5914 (interacts with) 7421", "interaction" : "interacts with", "SUID" : 9746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9742", "source" : "5941", "target" : "5185", "shared_name" : "5914 (interacts with) 1499", "name" : "5914 (interacts with) 1499", "interaction" : "interacts with", "SUID" : 9742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9738", "source" : "5941", "target" : "1393", "shared_name" : "5914 (interacts with) 55904", "name" : "5914 (interacts with) 55904", "interaction" : "interacts with", "SUID" : 9738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9734", "source" : "5941", "target" : "2077", "shared_name" : "5914 (interacts with) 7528", "name" : "5914 (interacts with) 7528", "interaction" : "interacts with", "SUID" : 9734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9730", "source" : "5941", "target" : "2081", "shared_name" : "5914 (interacts with) 5468", "name" : "5914 (interacts with) 5468", "interaction" : "interacts with", "SUID" : 9730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9726", "source" : "5941", "target" : "2485", "shared_name" : "5914 (interacts with) 81857", "name" : "5914 (interacts with) 81857", "interaction" : "interacts with", "SUID" : 9726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9722", "source" : "5941", "target" : "4589", "shared_name" : "5914 (interacts with) 8431", "name" : "5914 (interacts with) 8431", "interaction" : "interacts with", "SUID" : 9722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9718", "source" : "5941", "target" : "3825", "shared_name" : "5914 (interacts with) 5915", "name" : "5914 (interacts with) 5915", "interaction" : "interacts with", "SUID" : 9718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9714", "source" : "5941", "target" : "1281", "shared_name" : "5914 (interacts with) 171023", "name" : "5914 (interacts with) 171023", "interaction" : "interacts with", "SUID" : 9714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9710", "source" : "5941", "target" : "1413", "shared_name" : "5914 (interacts with) 7337", "name" : "5914 (interacts with) 7337", "interaction" : "interacts with", "SUID" : 9710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9798", "source" : "5937", "target" : "1677", "shared_name" : "8120 (interacts with) 8905", "name" : "8120 (interacts with) 8905", "interaction" : "interacts with", "SUID" : 9798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9794", "source" : "5937", "target" : "3693", "shared_name" : "8120 (interacts with) 8943", "name" : "8120 (interacts with) 8943", "interaction" : "interacts with", "SUID" : 9794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9790", "source" : "5937", "target" : "1445", "shared_name" : "8120 (interacts with) 9179", "name" : "8120 (interacts with) 9179", "interaction" : "interacts with", "SUID" : 9790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9786", "source" : "5937", "target" : "4393", "shared_name" : "8120 (interacts with) 950", "name" : "8120 (interacts with) 950", "interaction" : "interacts with", "SUID" : 9786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9782", "source" : "5937", "target" : "2233", "shared_name" : "8120 (interacts with) 9516", "name" : "8120 (interacts with) 9516", "interaction" : "interacts with", "SUID" : 9782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9802", "source" : "5933", "target" : "4113", "shared_name" : "23474 (interacts with) 60528", "name" : "23474 (interacts with) 60528", "interaction" : "interacts with", "SUID" : 9802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9830", "source" : "5929", "target" : "5785", "shared_name" : "6616 (interacts with) 6857", "name" : "6616 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 9830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9826", "source" : "5929", "target" : "3497", "shared_name" : "6616 (interacts with) 9699", "name" : "6616 (interacts with) 9699", "interaction" : "interacts with", "SUID" : 9826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9822", "source" : "5929", "target" : "609", "shared_name" : "6616 (interacts with) 6812", "name" : "6616 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 9822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9818", "source" : "5929", "target" : "2301", "shared_name" : "6616 (interacts with) 9342", "name" : "6616 (interacts with) 9342", "interaction" : "interacts with", "SUID" : 9818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9814", "source" : "5929", "target" : "3853", "shared_name" : "6616 (interacts with) 6786", "name" : "6616 (interacts with) 6786", "interaction" : "interacts with", "SUID" : 9814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9810", "source" : "5929", "target" : "2001", "shared_name" : "6616 (interacts with) 8676", "name" : "6616 (interacts with) 8676", "interaction" : "interacts with", "SUID" : 9810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9806", "source" : "5929", "target" : "4893", "shared_name" : "6616 (interacts with) 10815", "name" : "6616 (interacts with) 10815", "interaction" : "interacts with", "SUID" : 9806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9834", "source" : "5925", "target" : "3321", "shared_name" : "51569 (interacts with) 79876", "name" : "51569 (interacts with) 79876", "interaction" : "interacts with", "SUID" : 9834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9846", "source" : "5917", "target" : "4957", "shared_name" : "4287 (interacts with) 5071", "name" : "4287 (interacts with) 5071", "interaction" : "interacts with", "SUID" : 9846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9842", "source" : "5917", "target" : "1601", "shared_name" : "4287 (interacts with) 7415", "name" : "4287 (interacts with) 7415", "interaction" : "interacts with", "SUID" : 9842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9838", "source" : "5917", "target" : "1605", "shared_name" : "4287 (interacts with) 6648", "name" : "4287 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 9838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9894", "source" : "5913", "target" : "3481", "shared_name" : "3767 (interacts with) 6513", "name" : "3767 (interacts with) 6513", "interaction" : "interacts with", "SUID" : 9894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9890", "source" : "5913", "target" : "3497", "shared_name" : "3767 (interacts with) 9699", "name" : "3767 (interacts with) 9699", "interaction" : "interacts with", "SUID" : 9890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9886", "source" : "5913", "target" : "357", "shared_name" : "3767 (interacts with) 777", "name" : "3767 (interacts with) 777", "interaction" : "interacts with", "SUID" : 9886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9882", "source" : "5913", "target" : "641", "shared_name" : "3767 (interacts with) 773", "name" : "3767 (interacts with) 773", "interaction" : "interacts with", "SUID" : 9882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9878", "source" : "5913", "target" : "1433", "shared_name" : "3767 (interacts with) 6515", "name" : "3767 (interacts with) 6515", "interaction" : "interacts with", "SUID" : 9878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9874", "source" : "5913", "target" : "3969", "shared_name" : "3767 (interacts with) 57468", "name" : "3767 (interacts with) 57468", "interaction" : "interacts with", "SUID" : 9874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9870", "source" : "5913", "target" : "1681", "shared_name" : "3767 (interacts with) 9990", "name" : "3767 (interacts with) 9990", "interaction" : "interacts with", "SUID" : 9870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9866", "source" : "5913", "target" : "3077", "shared_name" : "3767 (interacts with) 6506", "name" : "3767 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 9866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9862", "source" : "5913", "target" : "1945", "shared_name" : "3767 (interacts with) 3785", "name" : "3767 (interacts with) 3785", "interaction" : "interacts with", "SUID" : 9862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9858", "source" : "5913", "target" : "2941", "shared_name" : "3767 (interacts with) 3778", "name" : "3767 (interacts with) 3778", "interaction" : "interacts with", "SUID" : 9858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9854", "source" : "5913", "target" : "5789", "shared_name" : "3767 (interacts with) 3759", "name" : "3767 (interacts with) 3759", "interaction" : "interacts with", "SUID" : 9854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9850", "source" : "5913", "target" : "1481", "shared_name" : "3767 (interacts with) 3763", "name" : "3767 (interacts with) 3763", "interaction" : "interacts with", "SUID" : 9850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10006", "source" : "5909", "target" : "1485", "shared_name" : "1374 (interacts with) 8050", "name" : "1374 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 10006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10002", "source" : "5909", "target" : "2881", "shared_name" : "1374 (interacts with) 5160", "name" : "1374 (interacts with) 5160", "interaction" : "interacts with", "SUID" : 10002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9998", "source" : "5909", "target" : "2897", "shared_name" : "1374 (interacts with) 1737", "name" : "1374 (interacts with) 1737", "interaction" : "interacts with", "SUID" : 9998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9994", "source" : "5909", "target" : "5305", "shared_name" : "1374 (interacts with) 6901", "name" : "1374 (interacts with) 6901", "interaction" : "interacts with", "SUID" : 9994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9990", "source" : "5909", "target" : "801", "shared_name" : "1374 (interacts with) 1376", "name" : "1374 (interacts with) 1376", "interaction" : "interacts with", "SUID" : 9990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9986", "source" : "5909", "target" : "3461", "shared_name" : "1374 (interacts with) 5538", "name" : "1374 (interacts with) 5538", "interaction" : "interacts with", "SUID" : 9986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9982", "source" : "5909", "target" : "4941", "shared_name" : "1374 (interacts with) 6342", "name" : "1374 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 9982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9978", "source" : "5909", "target" : "681", "shared_name" : "1374 (interacts with) 6646", "name" : "1374 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 9978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9974", "source" : "5909", "target" : "409", "shared_name" : "1374 (interacts with) 10558", "name" : "1374 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 9974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9970", "source" : "5909", "target" : "3425", "shared_name" : "1374 (interacts with) 8803", "name" : "1374 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 9970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9966", "source" : "5909", "target" : "2925", "shared_name" : "1374 (interacts with) 8802", "name" : "1374 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 9966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9962", "source" : "5909", "target" : "3177", "shared_name" : "1374 (interacts with) 5321", "name" : "1374 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 9962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9958", "source" : "5909", "target" : "2853", "shared_name" : "1374 (interacts with) 8398", "name" : "1374 (interacts with) 8398", "interaction" : "interacts with", "SUID" : 9958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9954", "source" : "5909", "target" : "3893", "shared_name" : "1374 (interacts with) 151056", "name" : "1374 (interacts with) 151056", "interaction" : "interacts with", "SUID" : 9954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9950", "source" : "5909", "target" : "385", "shared_name" : "1374 (interacts with) 5319", "name" : "1374 (interacts with) 5319", "interaction" : "interacts with", "SUID" : 9950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9946", "source" : "5909", "target" : "1277", "shared_name" : "1374 (interacts with) 79143", "name" : "1374 (interacts with) 79143", "interaction" : "interacts with", "SUID" : 9946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9942", "source" : "5909", "target" : "3421", "shared_name" : "1374 (interacts with) 4967", "name" : "1374 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 9942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9938", "source" : "5909", "target" : "1673", "shared_name" : "1374 (interacts with) 138050", "name" : "1374 (interacts with) 138050", "interaction" : "interacts with", "SUID" : 9938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9934", "source" : "5909", "target" : "1849", "shared_name" : "1374 (interacts with) 26275", "name" : "1374 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 9934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9930", "source" : "5909", "target" : "1489", "shared_name" : "1374 (interacts with) 1738", "name" : "1374 (interacts with) 1738", "interaction" : "interacts with", "SUID" : 9930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9926", "source" : "5909", "target" : "5473", "shared_name" : "1374 (interacts with) 6095", "name" : "1374 (interacts with) 6095", "interaction" : "interacts with", "SUID" : 9926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9922", "source" : "5909", "target" : "1097", "shared_name" : "1374 (interacts with) 79718", "name" : "1374 (interacts with) 79718", "interaction" : "interacts with", "SUID" : 9922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9918", "source" : "5909", "target" : "1893", "shared_name" : "1374 (interacts with) 1387", "name" : "1374 (interacts with) 1387", "interaction" : "interacts with", "SUID" : 9918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9914", "source" : "5909", "target" : "3517", "shared_name" : "1374 (interacts with) 2033", "name" : "1374 (interacts with) 2033", "interaction" : "interacts with", "SUID" : 9914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9910", "source" : "5909", "target" : "2965", "shared_name" : "1374 (interacts with) 22880", "name" : "1374 (interacts with) 22880", "interaction" : "interacts with", "SUID" : 9910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9906", "source" : "5909", "target" : "4153", "shared_name" : "1374 (interacts with) 2566", "name" : "1374 (interacts with) 2566", "interaction" : "interacts with", "SUID" : 9906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9902", "source" : "5909", "target" : "1237", "shared_name" : "1374 (interacts with) 3329", "name" : "1374 (interacts with) 3329", "interaction" : "interacts with", "SUID" : 9902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "9898", "source" : "5909", "target" : "4165", "shared_name" : "1374 (interacts with) 3119", "name" : "1374 (interacts with) 3119", "interaction" : "interacts with", "SUID" : 9898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10058", "source" : "5905", "target" : "6149", "shared_name" : "10560 (interacts with) 335", "name" : "10560 (interacts with) 335", "interaction" : "interacts with", "SUID" : 10058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10054", "source" : "5905", "target" : "3893", "shared_name" : "10560 (interacts with) 151056", "name" : "10560 (interacts with) 151056", "interaction" : "interacts with", "SUID" : 10054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10050", "source" : "5905", "target" : "253", "shared_name" : "10560 (interacts with) 113235", "name" : "10560 (interacts with) 113235", "interaction" : "interacts with", "SUID" : 10050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10046", "source" : "5905", "target" : "1073", "shared_name" : "10560 (interacts with) 27010", "name" : "10560 (interacts with) 27010", "interaction" : "interacts with", "SUID" : 10046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10042", "source" : "5905", "target" : "349", "shared_name" : "10560 (interacts with) 60386", "name" : "10560 (interacts with) 60386", "interaction" : "interacts with", "SUID" : 10042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10038", "source" : "5905", "target" : "217", "shared_name" : "10560 (interacts with) 113278", "name" : "10560 (interacts with) 113278", "interaction" : "interacts with", "SUID" : 10038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10034", "source" : "5905", "target" : "2277", "shared_name" : "10560 (interacts with) 686", "name" : "10560 (interacts with) 686", "interaction" : "interacts with", "SUID" : 10034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10030", "source" : "5905", "target" : "833", "shared_name" : "10560 (interacts with) 25974", "name" : "10560 (interacts with) 25974", "interaction" : "interacts with", "SUID" : 10030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10026", "source" : "5905", "target" : "653", "shared_name" : "10560 (interacts with) 6948", "name" : "10560 (interacts with) 6948", "interaction" : "interacts with", "SUID" : 10026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10022", "source" : "5905", "target" : "6025", "shared_name" : "10560 (interacts with) 80704", "name" : "10560 (interacts with) 80704", "interaction" : "interacts with", "SUID" : 10022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10018", "source" : "5905", "target" : "3845", "shared_name" : "10560 (interacts with) 10479", "name" : "10560 (interacts with) 10479", "interaction" : "interacts with", "SUID" : 10018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10014", "source" : "5905", "target" : "3473", "shared_name" : "10560 (interacts with) 6528", "name" : "10560 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 10014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10010", "source" : "5905", "target" : "4337", "shared_name" : "10560 (interacts with) 84197", "name" : "10560 (interacts with) 84197", "interaction" : "interacts with", "SUID" : 10010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10094", "source" : "5901", "target" : "981", "shared_name" : "11277 (interacts with) 7157", "name" : "11277 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 10094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10090", "source" : "5901", "target" : "2613", "shared_name" : "11277 (interacts with) 472", "name" : "11277 (interacts with) 472", "interaction" : "interacts with", "SUID" : 10090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10086", "source" : "5901", "target" : "4853", "shared_name" : "11277 (interacts with) 545", "name" : "11277 (interacts with) 545", "interaction" : "interacts with", "SUID" : 10086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10082", "source" : "5901", "target" : "5949", "shared_name" : "11277 (interacts with) 672", "name" : "11277 (interacts with) 672", "interaction" : "interacts with", "SUID" : 10082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10078", "source" : "5901", "target" : "729", "shared_name" : "11277 (interacts with) 5888", "name" : "11277 (interacts with) 5888", "interaction" : "interacts with", "SUID" : 10078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10074", "source" : "5901", "target" : "509", "shared_name" : "11277 (interacts with) 3661", "name" : "11277 (interacts with) 3661", "interaction" : "interacts with", "SUID" : 10074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10070", "source" : "5901", "target" : "2417", "shared_name" : "11277 (interacts with) 675", "name" : "11277 (interacts with) 675", "interaction" : "interacts with", "SUID" : 10070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10066", "source" : "5901", "target" : "4581", "shared_name" : "11277 (interacts with) 29110", "name" : "11277 (interacts with) 29110", "interaction" : "interacts with", "SUID" : 10066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10062", "source" : "5901", "target" : "5333", "shared_name" : "11277 (interacts with) 5591", "name" : "11277 (interacts with) 5591", "interaction" : "interacts with", "SUID" : 10062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10098", "source" : "5897", "target" : "1881", "shared_name" : "64374 (interacts with) 8506", "name" : "64374 (interacts with) 8506", "interaction" : "interacts with", "SUID" : 10098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10114", "source" : "5893", "target" : "681", "shared_name" : "6309 (interacts with) 6646", "name" : "6309 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 10114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10110", "source" : "5893", "target" : "2893", "shared_name" : "6309 (interacts with) 79152", "name" : "6309 (interacts with) 79152", "interaction" : "interacts with", "SUID" : 10110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10106", "source" : "5893", "target" : "1721", "shared_name" : "6309 (interacts with) 51807", "name" : "6309 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 10106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10102", "source" : "5893", "target" : "2221", "shared_name" : "6309 (interacts with) 26580", "name" : "6309 (interacts with) 26580", "interaction" : "interacts with", "SUID" : 10102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10118", "source" : "5889", "target" : "2829", "shared_name" : "9780 (interacts with) 10577", "name" : "9780 (interacts with) 10577", "interaction" : "interacts with", "SUID" : 10118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10234", "source" : "5885", "target" : "2797", "shared_name" : "4540 (interacts with) 4728", "name" : "4540 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 10234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10230", "source" : "5885", "target" : "1573", "shared_name" : "4540 (interacts with) 4723", "name" : "4540 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 10230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10226", "source" : "5885", "target" : "5833", "shared_name" : "4540 (interacts with) 4726", "name" : "4540 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 10226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10222", "source" : "5885", "target" : "4069", "shared_name" : "4540 (interacts with) 374291", "name" : "4540 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 10222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10218", "source" : "5885", "target" : "2285", "shared_name" : "4540 (interacts with) 51300", "name" : "4540 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 10218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10214", "source" : "5885", "target" : "1337", "shared_name" : "4540 (interacts with) 55863", "name" : "4540 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 10214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10210", "source" : "5885", "target" : "1869", "shared_name" : "4540 (interacts with) 4729", "name" : "4540 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 10210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10206", "source" : "5885", "target" : "4017", "shared_name" : "4540 (interacts with) 4719", "name" : "4540 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 10206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10202", "source" : "5885", "target" : "2689", "shared_name" : "4540 (interacts with) 4715", "name" : "4540 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 10202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10198", "source" : "5885", "target" : "5821", "shared_name" : "4540 (interacts with) 4724", "name" : "4540 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 10198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10194", "source" : "5885", "target" : "2753", "shared_name" : "4540 (interacts with) 4720", "name" : "4540 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 10194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10190", "source" : "5885", "target" : "4945", "shared_name" : "4540 (interacts with) 4722", "name" : "4540 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 10190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10186", "source" : "5885", "target" : "5853", "shared_name" : "4540 (interacts with) 4709", "name" : "4540 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 10186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10182", "source" : "5885", "target" : "5845", "shared_name" : "4540 (interacts with) 4714", "name" : "4540 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 10182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10178", "source" : "5885", "target" : "5505", "shared_name" : "4540 (interacts with) 29078", "name" : "4540 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 10178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10174", "source" : "5885", "target" : "2009", "shared_name" : "4540 (interacts with) 79133", "name" : "4540 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 10174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10170", "source" : "5885", "target" : "1661", "shared_name" : "4540 (interacts with) 91942", "name" : "4540 (interacts with) 91942", "interaction" : "interacts with", "SUID" : 10170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10166", "source" : "5885", "target" : "3761", "shared_name" : "4540 (interacts with) 25915", "name" : "4540 (interacts with) 25915", "interaction" : "interacts with", "SUID" : 10166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10162", "source" : "5885", "target" : "793", "shared_name" : "4540 (interacts with) 137682", "name" : "4540 (interacts with) 137682", "interaction" : "interacts with", "SUID" : 10162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10158", "source" : "5885", "target" : "2801", "shared_name" : "4540 (interacts with) 4700", "name" : "4540 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 10158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10154", "source" : "5885", "target" : "2109", "shared_name" : "4540 (interacts with) 51103", "name" : "4540 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 10154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10150", "source" : "5885", "target" : "3617", "shared_name" : "4540 (interacts with) 4704", "name" : "4540 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 10150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10146", "source" : "5885", "target" : "4061", "shared_name" : "4540 (interacts with) 4705", "name" : "4540 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 10146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10142", "source" : "5885", "target" : "2825", "shared_name" : "4540 (interacts with) 126328", "name" : "4540 (interacts with) 126328", "interaction" : "interacts with", "SUID" : 10142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10138", "source" : "5885", "target" : "4265", "shared_name" : "4540 (interacts with) 4541", "name" : "4540 (interacts with) 4541", "interaction" : "interacts with", "SUID" : 10138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10134", "source" : "5885", "target" : "5857", "shared_name" : "4540 (interacts with) 4694", "name" : "4540 (interacts with) 4694", "interaction" : "interacts with", "SUID" : 10134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10130", "source" : "5885", "target" : "2741", "shared_name" : "4540 (interacts with) 4695", "name" : "4540 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 10130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10126", "source" : "5885", "target" : "5553", "shared_name" : "4540 (interacts with) 55967", "name" : "4540 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 10126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10122", "source" : "5885", "target" : "2757", "shared_name" : "4540 (interacts with) 51079", "name" : "4540 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 10122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10250", "source" : "5877", "target" : "4013", "shared_name" : "6535 (interacts with) 6622", "name" : "6535 (interacts with) 6622", "interaction" : "interacts with", "SUID" : 10250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10246", "source" : "5877", "target" : "277", "shared_name" : "6535 (interacts with) 285175", "name" : "6535 (interacts with) 285175", "interaction" : "interacts with", "SUID" : 10246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10242", "source" : "5877", "target" : "3845", "shared_name" : "6535 (interacts with) 10479", "name" : "6535 (interacts with) 10479", "interaction" : "interacts with", "SUID" : 10242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10238", "source" : "5877", "target" : "1809", "shared_name" : "6535 (interacts with) 6548", "name" : "6535 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 10238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10278", "source" : "5873", "target" : "4941", "shared_name" : "5827 (interacts with) 6342", "name" : "5827 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 10278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10274", "source" : "5873", "target" : "5237", "shared_name" : "5827 (interacts with) 5830", "name" : "5827 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 10274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10270", "source" : "5873", "target" : "5205", "shared_name" : "5827 (interacts with) 5828", "name" : "5827 (interacts with) 5828", "interaction" : "interacts with", "SUID" : 10270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10266", "source" : "5873", "target" : "196", "shared_name" : "5827 (interacts with) 84188", "name" : "5827 (interacts with) 84188", "interaction" : "interacts with", "SUID" : 10266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10262", "source" : "5873", "target" : "4301", "shared_name" : "5827 (interacts with) 8799", "name" : "5827 (interacts with) 8799", "interaction" : "interacts with", "SUID" : 10262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10258", "source" : "5873", "target" : "3341", "shared_name" : "5827 (interacts with) 8504", "name" : "5827 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 10258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10254", "source" : "5873", "target" : "3333", "shared_name" : "5827 (interacts with) 9409", "name" : "5827 (interacts with) 9409", "interaction" : "interacts with", "SUID" : 10254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10402", "source" : "5869", "target" : "4077", "shared_name" : "59 (interacts with) 71", "name" : "59 (interacts with) 71", "interaction" : "interacts with", "SUID" : 10402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10398", "source" : "5869", "target" : "705", "shared_name" : "59 (interacts with) 728378", "name" : "59 (interacts with) 728378", "interaction" : "interacts with", "SUID" : 10398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10394", "source" : "5869", "target" : "2581", "shared_name" : "59 (interacts with) 7170", "name" : "59 (interacts with) 7170", "interaction" : "interacts with", "SUID" : 10394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10390", "source" : "5869", "target" : "3853", "shared_name" : "59 (interacts with) 6786", "name" : "59 (interacts with) 6786", "interaction" : "interacts with", "SUID" : 10390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10386", "source" : "5869", "target" : "2873", "shared_name" : "59 (interacts with) 6261", "name" : "59 (interacts with) 6261", "interaction" : "interacts with", "SUID" : 10386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10382", "source" : "5869", "target" : "2977", "shared_name" : "59 (interacts with) 4747", "name" : "59 (interacts with) 4747", "interaction" : "interacts with", "SUID" : 10382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10378", "source" : "5869", "target" : "2213", "shared_name" : "59 (interacts with) 4851", "name" : "59 (interacts with) 4851", "interaction" : "interacts with", "SUID" : 10378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10374", "source" : "5869", "target" : "5337", "shared_name" : "59 (interacts with) 84876", "name" : "59 (interacts with) 84876", "interaction" : "interacts with", "SUID" : 10374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10370", "source" : "5869", "target" : "1261", "shared_name" : "59 (interacts with) 57192", "name" : "59 (interacts with) 57192", "interaction" : "interacts with", "SUID" : 10370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10366", "source" : "5869", "target" : "1861", "shared_name" : "59 (interacts with) 3708", "name" : "59 (interacts with) 3708", "interaction" : "interacts with", "SUID" : 10366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10362", "source" : "5869", "target" : "2329", "shared_name" : "59 (interacts with) 2904", "name" : "59 (interacts with) 2904", "interaction" : "interacts with", "SUID" : 10362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10358", "source" : "5869", "target" : "4509", "shared_name" : "59 (interacts with) 2902", "name" : "59 (interacts with) 2902", "interaction" : "interacts with", "SUID" : 10358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10354", "source" : "5869", "target" : "5365", "shared_name" : "59 (interacts with) 2893", "name" : "59 (interacts with) 2893", "interaction" : "interacts with", "SUID" : 10354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10350", "source" : "5869", "target" : "1893", "shared_name" : "59 (interacts with) 1387", "name" : "59 (interacts with) 1387", "interaction" : "interacts with", "SUID" : 10350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10346", "source" : "5869", "target" : "3517", "shared_name" : "59 (interacts with) 2033", "name" : "59 (interacts with) 2033", "interaction" : "interacts with", "SUID" : 10346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10342", "source" : "5869", "target" : "3661", "shared_name" : "59 (interacts with) 1134", "name" : "59 (interacts with) 1134", "interaction" : "interacts with", "SUID" : 10342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10338", "source" : "5869", "target" : "2553", "shared_name" : "59 (interacts with) 815", "name" : "59 (interacts with) 815", "interaction" : "interacts with", "SUID" : 10338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10334", "source" : "5869", "target" : "993", "shared_name" : "59 (interacts with) 801", "name" : "59 (interacts with) 801", "interaction" : "interacts with", "SUID" : 10334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10330", "source" : "5869", "target" : "5557", "shared_name" : "59 (interacts with) 9254", "name" : "59 (interacts with) 9254", "interaction" : "interacts with", "SUID" : 10330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10326", "source" : "5869", "target" : "641", "shared_name" : "59 (interacts with) 773", "name" : "59 (interacts with) 773", "interaction" : "interacts with", "SUID" : 10326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10322", "source" : "5869", "target" : "3765", "shared_name" : "59 (interacts with) 774", "name" : "59 (interacts with) 774", "interaction" : "interacts with", "SUID" : 10322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10318", "source" : "5869", "target" : "357", "shared_name" : "59 (interacts with) 777", "name" : "59 (interacts with) 777", "interaction" : "interacts with", "SUID" : 10318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10314", "source" : "5869", "target" : "3273", "shared_name" : "59 (interacts with) 351", "name" : "59 (interacts with) 351", "interaction" : "interacts with", "SUID" : 10314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10310", "source" : "5869", "target" : "3721", "shared_name" : "59 (interacts with) 2934", "name" : "59 (interacts with) 2934", "interaction" : "interacts with", "SUID" : 10310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10306", "source" : "5869", "target" : "5293", "shared_name" : "59 (interacts with) 54476", "name" : "59 (interacts with) 54476", "interaction" : "interacts with", "SUID" : 10306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10302", "source" : "5869", "target" : "5901", "shared_name" : "59 (interacts with) 11277", "name" : "59 (interacts with) 11277", "interaction" : "interacts with", "SUID" : 10302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10298", "source" : "5869", "target" : "5173", "shared_name" : "59 (interacts with) 1718", "name" : "59 (interacts with) 1718", "interaction" : "interacts with", "SUID" : 10298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10294", "source" : "5869", "target" : "5373", "shared_name" : "59 (interacts with) 28962", "name" : "59 (interacts with) 28962", "interaction" : "interacts with", "SUID" : 10294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10290", "source" : "5869", "target" : "3553", "shared_name" : "59 (interacts with) 3592", "name" : "59 (interacts with) 3592", "interaction" : "interacts with", "SUID" : 10290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10286", "source" : "5869", "target" : "853", "shared_name" : "59 (interacts with) 60", "name" : "59 (interacts with) 60", "interaction" : "interacts with", "SUID" : 10286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10282", "source" : "5869", "target" : "2809", "shared_name" : "59 (interacts with) 11284", "name" : "59 (interacts with) 11284", "interaction" : "interacts with", "SUID" : 10282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10458", "source" : "5865", "target" : "4941", "shared_name" : "5192 (interacts with) 6342", "name" : "5192 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 10458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10454", "source" : "5865", "target" : "2353", "shared_name" : "5192 (interacts with) 5264", "name" : "5192 (interacts with) 5264", "interaction" : "interacts with", "SUID" : 10454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10450", "source" : "5865", "target" : "5545", "shared_name" : "5192 (interacts with) 5195", "name" : "5192 (interacts with) 5195", "interaction" : "interacts with", "SUID" : 10450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10446", "source" : "5865", "target" : "4301", "shared_name" : "5192 (interacts with) 8799", "name" : "5192 (interacts with) 8799", "interaction" : "interacts with", "SUID" : 10446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10442", "source" : "5865", "target" : "3333", "shared_name" : "5192 (interacts with) 9409", "name" : "5192 (interacts with) 9409", "interaction" : "interacts with", "SUID" : 10442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10438", "source" : "5865", "target" : "196", "shared_name" : "5192 (interacts with) 84188", "name" : "5192 (interacts with) 84188", "interaction" : "interacts with", "SUID" : 10438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10434", "source" : "5865", "target" : "5873", "shared_name" : "5192 (interacts with) 5827", "name" : "5192 (interacts with) 5827", "interaction" : "interacts with", "SUID" : 10434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10430", "source" : "5865", "target" : "3341", "shared_name" : "5192 (interacts with) 8504", "name" : "5192 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 10430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10426", "source" : "5865", "target" : "1953", "shared_name" : "5192 (interacts with) 5194", "name" : "5192 (interacts with) 5194", "interaction" : "interacts with", "SUID" : 10426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10422", "source" : "5865", "target" : "2325", "shared_name" : "5192 (interacts with) 55670", "name" : "5192 (interacts with) 55670", "interaction" : "interacts with", "SUID" : 10422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10418", "source" : "5865", "target" : "3329", "shared_name" : "5192 (interacts with) 5824", "name" : "5192 (interacts with) 5824", "interaction" : "interacts with", "SUID" : 10418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10414", "source" : "5865", "target" : "5237", "shared_name" : "5192 (interacts with) 5830", "name" : "5192 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 10414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10410", "source" : "5865", "target" : "4297", "shared_name" : "5192 (interacts with) 5193", "name" : "5192 (interacts with) 5193", "interaction" : "interacts with", "SUID" : 10410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10406", "source" : "5865", "target" : "5205", "shared_name" : "5192 (interacts with) 5828", "name" : "5192 (interacts with) 5828", "interaction" : "interacts with", "SUID" : 10406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10554", "source" : "5861", "target" : "4889", "shared_name" : "5435 (interacts with) 7295", "name" : "5435 (interacts with) 7295", "interaction" : "interacts with", "SUID" : 10554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10550", "source" : "5861", "target" : "473", "shared_name" : "5435 (interacts with) 7072", "name" : "5435 (interacts with) 7072", "interaction" : "interacts with", "SUID" : 10550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10546", "source" : "5861", "target" : "2077", "shared_name" : "5435 (interacts with) 7528", "name" : "5435 (interacts with) 7528", "interaction" : "interacts with", "SUID" : 10546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10542", "source" : "5861", "target" : "1793", "shared_name" : "5435 (interacts with) 7515", "name" : "5435 (interacts with) 7515", "interaction" : "interacts with", "SUID" : 10542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10538", "source" : "5861", "target" : "481", "shared_name" : "5435 (interacts with) 7507", "name" : "5435 (interacts with) 7507", "interaction" : "interacts with", "SUID" : 10538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10534", "source" : "5861", "target" : "1817", "shared_name" : "5435 (interacts with) 7343", "name" : "5435 (interacts with) 7343", "interaction" : "interacts with", "SUID" : 10534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10530", "source" : "5861", "target" : "2305", "shared_name" : "5435 (interacts with) 6908", "name" : "5435 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 10530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10526", "source" : "5861", "target" : "5197", "shared_name" : "5435 (interacts with) 7156", "name" : "5435 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 10526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10522", "source" : "5861", "target" : "749", "shared_name" : "5435 (interacts with) 6873", "name" : "5435 (interacts with) 6873", "interaction" : "interacts with", "SUID" : 10522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10518", "source" : "5861", "target" : "4425", "shared_name" : "5435 (interacts with) 6884", "name" : "5435 (interacts with) 6884", "interaction" : "interacts with", "SUID" : 10518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10514", "source" : "5861", "target" : "5377", "shared_name" : "5435 (interacts with) 6638", "name" : "5435 (interacts with) 6638", "interaction" : "interacts with", "SUID" : 10514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10510", "source" : "5861", "target" : "3953", "shared_name" : "5435 (interacts with) 8731", "name" : "5435 (interacts with) 8731", "interaction" : "interacts with", "SUID" : 10510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10506", "source" : "5861", "target" : "2921", "shared_name" : "5435 (interacts with) 5981", "name" : "5435 (interacts with) 5981", "interaction" : "interacts with", "SUID" : 10506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10502", "source" : "5861", "target" : "1837", "shared_name" : "5435 (interacts with) 9939", "name" : "5435 (interacts with) 9939", "interaction" : "interacts with", "SUID" : 10502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10498", "source" : "5861", "target" : "5193", "shared_name" : "5435 (interacts with) 5725", "name" : "5435 (interacts with) 5725", "interaction" : "interacts with", "SUID" : 10498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10494", "source" : "5861", "target" : "3825", "shared_name" : "5435 (interacts with) 5915", "name" : "5435 (interacts with) 5915", "interaction" : "interacts with", "SUID" : 10494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10490", "source" : "5861", "target" : "5941", "shared_name" : "5435 (interacts with) 5914", "name" : "5435 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 10490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10486", "source" : "5861", "target" : "5281", "shared_name" : "5435 (interacts with) 10084", "name" : "5435 (interacts with) 10084", "interaction" : "interacts with", "SUID" : 10486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10482", "source" : "5861", "target" : "2917", "shared_name" : "5435 (interacts with) 5451", "name" : "5435 (interacts with) 5451", "interaction" : "interacts with", "SUID" : 10482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10478", "source" : "5861", "target" : "5709", "shared_name" : "5435 (interacts with) 55703", "name" : "5435 (interacts with) 55703", "interaction" : "interacts with", "SUID" : 10478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10474", "source" : "5861", "target" : "5721", "shared_name" : "5435 (interacts with) 11128", "name" : "5435 (interacts with) 11128", "interaction" : "interacts with", "SUID" : 10474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10470", "source" : "5861", "target" : "5621", "shared_name" : "5435 (interacts with) 25885", "name" : "5435 (interacts with) 25885", "interaction" : "interacts with", "SUID" : 10470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10466", "source" : "5861", "target" : "2649", "shared_name" : "5435 (interacts with) 5430", "name" : "5435 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 10466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10462", "source" : "5861", "target" : "1857", "shared_name" : "5435 (interacts with) 9533", "name" : "5435 (interacts with) 9533", "interaction" : "interacts with", "SUID" : 10462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10686", "source" : "5857", "target" : "5601", "shared_name" : "4694 (interacts with) 84833", "name" : "4694 (interacts with) 84833", "interaction" : "interacts with", "SUID" : 10686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10682", "source" : "5857", "target" : "2901", "shared_name" : "4694 (interacts with) 6647", "name" : "4694 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 10682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10678", "source" : "5857", "target" : "4061", "shared_name" : "4694 (interacts with) 4705", "name" : "4694 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 10678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10674", "source" : "5857", "target" : "2741", "shared_name" : "4694 (interacts with) 4695", "name" : "4694 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 10674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10670", "source" : "5857", "target" : "2801", "shared_name" : "4694 (interacts with) 4700", "name" : "4694 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 10670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10666", "source" : "5857", "target" : "2797", "shared_name" : "4694 (interacts with) 4728", "name" : "4694 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 10666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10662", "source" : "5857", "target" : "2757", "shared_name" : "4694 (interacts with) 51079", "name" : "4694 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 10662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10658", "source" : "5857", "target" : "4017", "shared_name" : "4694 (interacts with) 4719", "name" : "4694 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 10658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10654", "source" : "5857", "target" : "2753", "shared_name" : "4694 (interacts with) 4720", "name" : "4694 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 10654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10650", "source" : "5857", "target" : "4945", "shared_name" : "4694 (interacts with) 4722", "name" : "4694 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 10650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10646", "source" : "5857", "target" : "2009", "shared_name" : "4694 (interacts with) 79133", "name" : "4694 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 10646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10642", "source" : "5857", "target" : "889", "shared_name" : "4694 (interacts with) 80224", "name" : "4694 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 10642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10638", "source" : "5857", "target" : "1661", "shared_name" : "4694 (interacts with) 91942", "name" : "4694 (interacts with) 91942", "interaction" : "interacts with", "SUID" : 10638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10634", "source" : "5857", "target" : "1865", "shared_name" : "4694 (interacts with) 498", "name" : "4694 (interacts with) 498", "interaction" : "interacts with", "SUID" : 10634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10630", "source" : "5857", "target" : "2109", "shared_name" : "4694 (interacts with) 51103", "name" : "4694 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 10630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10626", "source" : "5857", "target" : "2285", "shared_name" : "4694 (interacts with) 51300", "name" : "4694 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 10626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10622", "source" : "5857", "target" : "1337", "shared_name" : "4694 (interacts with) 55863", "name" : "4694 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 10622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10618", "source" : "5857", "target" : "4045", "shared_name" : "4694 (interacts with) 29920", "name" : "4694 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 10618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10614", "source" : "5857", "target" : "3501", "shared_name" : "4694 (interacts with) 5831", "name" : "4694 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 10614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10610", "source" : "5857", "target" : "5025", "shared_name" : "4694 (interacts with) 6389", "name" : "4694 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 10610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10606", "source" : "5857", "target" : "1669", "shared_name" : "4694 (interacts with) 6390", "name" : "4694 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 10606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10602", "source" : "5857", "target" : "1289", "shared_name" : "4694 (interacts with) 6392", "name" : "4694 (interacts with) 6392", "interaction" : "interacts with", "SUID" : 10602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10598", "source" : "5857", "target" : "1573", "shared_name" : "4694 (interacts with) 4723", "name" : "4694 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 10598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10594", "source" : "5857", "target" : "5885", "shared_name" : "4694 (interacts with) 4540", "name" : "4694 (interacts with) 4540", "interaction" : "interacts with", "SUID" : 10594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10590", "source" : "5857", "target" : "5821", "shared_name" : "4694 (interacts with) 4724", "name" : "4694 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 10590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10586", "source" : "5857", "target" : "5829", "shared_name" : "4694 (interacts with) 4538", "name" : "4694 (interacts with) 4538", "interaction" : "interacts with", "SUID" : 10586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10582", "source" : "5857", "target" : "2689", "shared_name" : "4694 (interacts with) 4715", "name" : "4694 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 10582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10578", "source" : "5857", "target" : "5853", "shared_name" : "4694 (interacts with) 4709", "name" : "4694 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 10578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10574", "source" : "5857", "target" : "5833", "shared_name" : "4694 (interacts with) 4726", "name" : "4694 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 10574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10570", "source" : "5857", "target" : "3617", "shared_name" : "4694 (interacts with) 4704", "name" : "4694 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 10570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10566", "source" : "5857", "target" : "1869", "shared_name" : "4694 (interacts with) 4729", "name" : "4694 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 10566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10562", "source" : "5857", "target" : "5553", "shared_name" : "4694 (interacts with) 55967", "name" : "4694 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 10562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10558", "source" : "5857", "target" : "5845", "shared_name" : "4694 (interacts with) 4714", "name" : "4694 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 10558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10886", "source" : "5853", "target" : "1085", "shared_name" : "4709 (interacts with) 9377", "name" : "4709 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 10886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10882", "source" : "5853", "target" : "1129", "shared_name" : "4709 (interacts with) 57505", "name" : "4709 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 10882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10878", "source" : "5853", "target" : "713", "shared_name" : "4709 (interacts with) 7019", "name" : "4709 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 10878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10874", "source" : "5853", "target" : "1865", "shared_name" : "4709 (interacts with) 498", "name" : "4709 (interacts with) 498", "interaction" : "interacts with", "SUID" : 10874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10870", "source" : "5853", "target" : "4409", "shared_name" : "4709 (interacts with) 6341", "name" : "4709 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 10870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10866", "source" : "5853", "target" : "4621", "shared_name" : "4709 (interacts with) 57038", "name" : "4709 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 10866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10862", "source" : "5853", "target" : "6073", "shared_name" : "4709 (interacts with) 92170", "name" : "4709 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 10862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10858", "source" : "5853", "target" : "4897", "shared_name" : "4709 (interacts with) 55149", "name" : "4709 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 10858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10854", "source" : "5853", "target" : "1929", "shared_name" : "4709 (interacts with) 51218", "name" : "4709 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 10854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10850", "source" : "5853", "target" : "1197", "shared_name" : "4709 (interacts with) 79587", "name" : "4709 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 10850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10846", "source" : "5853", "target" : "521", "shared_name" : "4709 (interacts with) 85476", "name" : "4709 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 10846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10842", "source" : "5853", "target" : "721", "shared_name" : "4709 (interacts with) 79731", "name" : "4709 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 10842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10838", "source" : "5853", "target" : "5085", "shared_name" : "4709 (interacts with) 56652", "name" : "4709 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 10838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10834", "source" : "5853", "target" : "6001", "shared_name" : "4709 (interacts with) 55157", "name" : "4709 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 10834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10830", "source" : "5853", "target" : "1337", "shared_name" : "4709 (interacts with) 55863", "name" : "4709 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 10830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10826", "source" : "5853", "target" : "1053", "shared_name" : "4709 (interacts with) 81689", "name" : "4709 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 10826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10822", "source" : "5853", "target" : "5189", "shared_name" : "4709 (interacts with) 57176", "name" : "4709 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 10822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10818", "source" : "5853", "target" : "4757", "shared_name" : "4709 (interacts with) 9997", "name" : "4709 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 10818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10814", "source" : "5853", "target" : "5737", "shared_name" : "4709 (interacts with) 84340", "name" : "4709 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 10814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10810", "source" : "5853", "target" : "477", "shared_name" : "4709 (interacts with) 51021", "name" : "4709 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 10810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10806", "source" : "5853", "target" : "6181", "shared_name" : "4709 (interacts with) 84987", "name" : "4709 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 10806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10802", "source" : "5853", "target" : "2757", "shared_name" : "4709 (interacts with) 51079", "name" : "4709 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 10802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10798", "source" : "5853", "target" : "4101", "shared_name" : "4709 (interacts with) 65260", "name" : "4709 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 10798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10794", "source" : "5853", "target" : "2285", "shared_name" : "4709 (interacts with) 51300", "name" : "4709 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 10794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10790", "source" : "5853", "target" : "3973", "shared_name" : "4709 (interacts with) 55572", "name" : "4709 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 10790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10786", "source" : "5853", "target" : "1105", "shared_name" : "4709 (interacts with) 493753", "name" : "4709 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 10786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10782", "source" : "5853", "target" : "2477", "shared_name" : "4709 (interacts with) 57107", "name" : "4709 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 10782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10778", "source" : "5853", "target" : "1561", "shared_name" : "4709 (interacts with) 51117", "name" : "4709 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 10778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10774", "source" : "5853", "target" : "889", "shared_name" : "4709 (interacts with) 80224", "name" : "4709 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 10774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10770", "source" : "5853", "target" : "2753", "shared_name" : "4709 (interacts with) 4720", "name" : "4709 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 10770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10766", "source" : "5853", "target" : "2797", "shared_name" : "4709 (interacts with) 4728", "name" : "4709 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 10766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10762", "source" : "5853", "target" : "4045", "shared_name" : "4709 (interacts with) 29920", "name" : "4709 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 10762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10758", "source" : "5853", "target" : "3501", "shared_name" : "4709 (interacts with) 5831", "name" : "4709 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 10758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10754", "source" : "5853", "target" : "4017", "shared_name" : "4709 (interacts with) 4719", "name" : "4709 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 10754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10750", "source" : "5853", "target" : "1573", "shared_name" : "4709 (interacts with) 4723", "name" : "4709 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 10750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10746", "source" : "5853", "target" : "5885", "shared_name" : "4709 (interacts with) 4540", "name" : "4709 (interacts with) 4540", "interaction" : "interacts with", "SUID" : 10746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10742", "source" : "5853", "target" : "2689", "shared_name" : "4709 (interacts with) 4715", "name" : "4709 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 10742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10738", "source" : "5853", "target" : "5821", "shared_name" : "4709 (interacts with) 4724", "name" : "4709 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 10738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10734", "source" : "5853", "target" : "5829", "shared_name" : "4709 (interacts with) 4538", "name" : "4709 (interacts with) 4538", "interaction" : "interacts with", "SUID" : 10734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10730", "source" : "5853", "target" : "5833", "shared_name" : "4709 (interacts with) 4726", "name" : "4709 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 10730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10726", "source" : "5853", "target" : "6005", "shared_name" : "4709 (interacts with) 4988", "name" : "4709 (interacts with) 4988", "interaction" : "interacts with", "SUID" : 10726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10722", "source" : "5853", "target" : "3989", "shared_name" : "4709 (interacts with) 2523", "name" : "4709 (interacts with) 2523", "interaction" : "interacts with", "SUID" : 10722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10718", "source" : "5853", "target" : "4945", "shared_name" : "4709 (interacts with) 4722", "name" : "4709 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 10718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10714", "source" : "5853", "target" : "1869", "shared_name" : "4709 (interacts with) 4729", "name" : "4709 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 10714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10710", "source" : "5853", "target" : "5553", "shared_name" : "4709 (interacts with) 55967", "name" : "4709 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 10710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10706", "source" : "5853", "target" : "4069", "shared_name" : "4709 (interacts with) 374291", "name" : "4709 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 10706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10702", "source" : "5853", "target" : "5505", "shared_name" : "4709 (interacts with) 29078", "name" : "4709 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 10702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10698", "source" : "5853", "target" : "5845", "shared_name" : "4709 (interacts with) 4714", "name" : "4709 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 10698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10694", "source" : "5853", "target" : "3617", "shared_name" : "4709 (interacts with) 4704", "name" : "4709 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 10694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10690", "source" : "5853", "target" : "4061", "shared_name" : "4709 (interacts with) 4705", "name" : "4709 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 10690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10894", "source" : "5849", "target" : "877", "shared_name" : "6613 (interacts with) 7341", "name" : "6613 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 10894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10890", "source" : "5849", "target" : "481", "shared_name" : "6613 (interacts with) 7507", "name" : "6613 (interacts with) 7507", "interaction" : "interacts with", "SUID" : 10890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11126", "source" : "5845", "target" : "721", "shared_name" : "4714 (interacts with) 79731", "name" : "4714 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 11126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11122", "source" : "5845", "target" : "3545", "shared_name" : "4714 (interacts with) 708", "name" : "4714 (interacts with) 708", "interaction" : "interacts with", "SUID" : 11122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11118", "source" : "5845", "target" : "6181", "shared_name" : "4714 (interacts with) 84987", "name" : "4714 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 11118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11114", "source" : "5845", "target" : "5189", "shared_name" : "4714 (interacts with) 57176", "name" : "4714 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 11114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11110", "source" : "5845", "target" : "2021", "shared_name" : "4714 (interacts with) 5428", "name" : "4714 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 11110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11106", "source" : "5845", "target" : "521", "shared_name" : "4714 (interacts with) 85476", "name" : "4714 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 11106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11102", "source" : "5845", "target" : "1053", "shared_name" : "4714 (interacts with) 81689", "name" : "4714 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 11102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11098", "source" : "5845", "target" : "2297", "shared_name" : "4714 (interacts with) 55005", "name" : "4714 (interacts with) 55005", "interaction" : "interacts with", "SUID" : 11098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11094", "source" : "5845", "target" : "1129", "shared_name" : "4714 (interacts with) 57505", "name" : "4714 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 11094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11090", "source" : "5845", "target" : "3633", "shared_name" : "4714 (interacts with) 51067", "name" : "4714 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 11090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11086", "source" : "5845", "target" : "5737", "shared_name" : "4714 (interacts with) 84340", "name" : "4714 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 11086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11082", "source" : "5845", "target" : "6001", "shared_name" : "4714 (interacts with) 55157", "name" : "4714 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 11082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11078", "source" : "5845", "target" : "4897", "shared_name" : "4714 (interacts with) 55149", "name" : "4714 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 11078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11074", "source" : "5845", "target" : "1105", "shared_name" : "4714 (interacts with) 493753", "name" : "4714 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 11074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11070", "source" : "5845", "target" : "6073", "shared_name" : "4714 (interacts with) 92170", "name" : "4714 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 11070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11066", "source" : "5845", "target" : "1929", "shared_name" : "4714 (interacts with) 51218", "name" : "4714 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 11066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11062", "source" : "5845", "target" : "2105", "shared_name" : "4714 (interacts with) 56945", "name" : "4714 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 11062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11058", "source" : "5845", "target" : "1337", "shared_name" : "4714 (interacts with) 55863", "name" : "4714 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 11058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11054", "source" : "5845", "target" : "2757", "shared_name" : "4714 (interacts with) 51079", "name" : "4714 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 11054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11050", "source" : "5845", "target" : "4621", "shared_name" : "4714 (interacts with) 57038", "name" : "4714 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 11050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11046", "source" : "5845", "target" : "501", "shared_name" : "4714 (interacts with) 65993", "name" : "4714 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 11046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11042", "source" : "5845", "target" : "889", "shared_name" : "4714 (interacts with) 80224", "name" : "4714 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 11042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11038", "source" : "5845", "target" : "4757", "shared_name" : "4714 (interacts with) 9997", "name" : "4714 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 11038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11034", "source" : "5845", "target" : "4869", "shared_name" : "4714 (interacts with) 92935", "name" : "4714 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 11034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11030", "source" : "5845", "target" : "1197", "shared_name" : "4714 (interacts with) 79587", "name" : "4714 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 11030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11026", "source" : "5845", "target" : "1573", "shared_name" : "4714 (interacts with) 4723", "name" : "4714 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 11026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11022", "source" : "5845", "target" : "4101", "shared_name" : "4714 (interacts with) 65260", "name" : "4714 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 11022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11018", "source" : "5845", "target" : "477", "shared_name" : "4714 (interacts with) 51021", "name" : "4714 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 11018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11014", "source" : "5845", "target" : "4409", "shared_name" : "4714 (interacts with) 6341", "name" : "4714 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 11014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11010", "source" : "5845", "target" : "713", "shared_name" : "4714 (interacts with) 7019", "name" : "4714 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 11010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11006", "source" : "5845", "target" : "4141", "shared_name" : "4714 (interacts with) 617", "name" : "4714 (interacts with) 617", "interaction" : "interacts with", "SUID" : 11006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11002", "source" : "5845", "target" : "2285", "shared_name" : "4714 (interacts with) 51300", "name" : "4714 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 11002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10998", "source" : "5845", "target" : "2797", "shared_name" : "4714 (interacts with) 4728", "name" : "4714 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 10998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10994", "source" : "5845", "target" : "2753", "shared_name" : "4714 (interacts with) 4720", "name" : "4714 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 10994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10990", "source" : "5845", "target" : "2477", "shared_name" : "4714 (interacts with) 57107", "name" : "4714 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 10990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10986", "source" : "5845", "target" : "1561", "shared_name" : "4714 (interacts with) 51117", "name" : "4714 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 10986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10982", "source" : "5845", "target" : "3973", "shared_name" : "4714 (interacts with) 55572", "name" : "4714 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 10982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10978", "source" : "5845", "target" : "4353", "shared_name" : "4714 (interacts with) 9512", "name" : "4714 (interacts with) 9512", "interaction" : "interacts with", "SUID" : 10978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10974", "source" : "5845", "target" : "529", "shared_name" : "4714 (interacts with) 23203", "name" : "4714 (interacts with) 23203", "interaction" : "interacts with", "SUID" : 10974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10970", "source" : "5845", "target" : "4017", "shared_name" : "4714 (interacts with) 4719", "name" : "4714 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 10970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10966", "source" : "5845", "target" : "1389", "shared_name" : "4714 (interacts with) 92609", "name" : "4714 (interacts with) 92609", "interaction" : "interacts with", "SUID" : 10966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10962", "source" : "5845", "target" : "4045", "shared_name" : "4714 (interacts with) 29920", "name" : "4714 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 10962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10958", "source" : "5845", "target" : "3501", "shared_name" : "4714 (interacts with) 5831", "name" : "4714 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 10958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10954", "source" : "5845", "target" : "2689", "shared_name" : "4714 (interacts with) 4715", "name" : "4714 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 10954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10950", "source" : "5845", "target" : "5821", "shared_name" : "4714 (interacts with) 4724", "name" : "4714 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 10950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10946", "source" : "5845", "target" : "2333", "shared_name" : "4714 (interacts with) 3559", "name" : "4714 (interacts with) 3559", "interaction" : "interacts with", "SUID" : 10946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10942", "source" : "5845", "target" : "5885", "shared_name" : "4714 (interacts with) 4540", "name" : "4714 (interacts with) 4540", "interaction" : "interacts with", "SUID" : 10942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10938", "source" : "5845", "target" : "5833", "shared_name" : "4714 (interacts with) 4726", "name" : "4714 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 10938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10934", "source" : "5845", "target" : "3989", "shared_name" : "4714 (interacts with) 2523", "name" : "4714 (interacts with) 2523", "interaction" : "interacts with", "SUID" : 10934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10930", "source" : "5845", "target" : "6041", "shared_name" : "4714 (interacts with) 9217", "name" : "4714 (interacts with) 9217", "interaction" : "interacts with", "SUID" : 10930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10926", "source" : "5845", "target" : "1869", "shared_name" : "4714 (interacts with) 4729", "name" : "4714 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 10926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10922", "source" : "5845", "target" : "4069", "shared_name" : "4714 (interacts with) 374291", "name" : "4714 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 10922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10918", "source" : "5845", "target" : "2441", "shared_name" : "4714 (interacts with) 112476", "name" : "4714 (interacts with) 112476", "interaction" : "interacts with", "SUID" : 10918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10914", "source" : "5845", "target" : "3617", "shared_name" : "4714 (interacts with) 4704", "name" : "4714 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 10914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10910", "source" : "5845", "target" : "4945", "shared_name" : "4714 (interacts with) 4722", "name" : "4714 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 10910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10906", "source" : "5845", "target" : "4165", "shared_name" : "4714 (interacts with) 3119", "name" : "4714 (interacts with) 3119", "interaction" : "interacts with", "SUID" : 10906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10902", "source" : "5845", "target" : "5553", "shared_name" : "4714 (interacts with) 55967", "name" : "4714 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 10902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "10898", "source" : "5845", "target" : "1661", "shared_name" : "4714 (interacts with) 91942", "name" : "4714 (interacts with) 91942", "interaction" : "interacts with", "SUID" : 10898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11142", "source" : "5841", "target" : "3057", "shared_name" : "10846 (interacts with) 5592", "name" : "10846 (interacts with) 5592", "interaction" : "interacts with", "SUID" : 11142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11138", "source" : "5841", "target" : "4045", "shared_name" : "10846 (interacts with) 29920", "name" : "10846 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 11138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11134", "source" : "5841", "target" : "3501", "shared_name" : "10846 (interacts with) 5831", "name" : "10846 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 11134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11130", "source" : "5841", "target" : "1713", "shared_name" : "10846 (interacts with) 5631", "name" : "10846 (interacts with) 5631", "interaction" : "interacts with", "SUID" : 11130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11150", "source" : "5837", "target" : "5129", "shared_name" : "113179 (interacts with) 57465", "name" : "113179 (interacts with) 57465", "interaction" : "interacts with", "SUID" : 11150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11146", "source" : "5837", "target" : "2549", "shared_name" : "113179 (interacts with) 9319", "name" : "113179 (interacts with) 9319", "interaction" : "interacts with", "SUID" : 11146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11230", "source" : "5833", "target" : "1869", "shared_name" : "4726 (interacts with) 4729", "name" : "4726 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 11230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11226", "source" : "5833", "target" : "2285", "shared_name" : "4726 (interacts with) 51300", "name" : "4726 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 11226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11222", "source" : "5833", "target" : "1337", "shared_name" : "4726 (interacts with) 55863", "name" : "4726 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 11222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11218", "source" : "5833", "target" : "889", "shared_name" : "4726 (interacts with) 80224", "name" : "4726 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 11218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11214", "source" : "5833", "target" : "2757", "shared_name" : "4726 (interacts with) 51079", "name" : "4726 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 11214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11210", "source" : "5833", "target" : "5553", "shared_name" : "4726 (interacts with) 55967", "name" : "4726 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 11210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11206", "source" : "5833", "target" : "4045", "shared_name" : "4726 (interacts with) 29920", "name" : "4726 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 11206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11202", "source" : "5833", "target" : "3501", "shared_name" : "4726 (interacts with) 5831", "name" : "4726 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 11202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11198", "source" : "5833", "target" : "2789", "shared_name" : "4726 (interacts with) 4536", "name" : "4726 (interacts with) 4536", "interaction" : "interacts with", "SUID" : 11198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11194", "source" : "5833", "target" : "2801", "shared_name" : "4726 (interacts with) 4700", "name" : "4726 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 11194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11190", "source" : "5833", "target" : "2797", "shared_name" : "4726 (interacts with) 4728", "name" : "4726 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 11190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11186", "source" : "5833", "target" : "2741", "shared_name" : "4726 (interacts with) 4695", "name" : "4726 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 11186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11182", "source" : "5833", "target" : "3405", "shared_name" : "4726 (interacts with) 4535", "name" : "4726 (interacts with) 4535", "interaction" : "interacts with", "SUID" : 11182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11178", "source" : "5833", "target" : "5829", "shared_name" : "4726 (interacts with) 4538", "name" : "4726 (interacts with) 4538", "interaction" : "interacts with", "SUID" : 11178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11174", "source" : "5833", "target" : "2753", "shared_name" : "4726 (interacts with) 4720", "name" : "4726 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 11174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11170", "source" : "5833", "target" : "4017", "shared_name" : "4726 (interacts with) 4719", "name" : "4726 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 11170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11166", "source" : "5833", "target" : "5885", "shared_name" : "4726 (interacts with) 4540", "name" : "4726 (interacts with) 4540", "interaction" : "interacts with", "SUID" : 11166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11162", "source" : "5833", "target" : "5821", "shared_name" : "4726 (interacts with) 4724", "name" : "4726 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 11162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11158", "source" : "5833", "target" : "1573", "shared_name" : "4726 (interacts with) 4723", "name" : "4726 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 11158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11154", "source" : "5833", "target" : "2689", "shared_name" : "4726 (interacts with) 4715", "name" : "4726 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 11154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11350", "source" : "5829", "target" : "1337", "shared_name" : "4538 (interacts with) 55863", "name" : "4538 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 11350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11346", "source" : "5829", "target" : "4069", "shared_name" : "4538 (interacts with) 374291", "name" : "4538 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 11346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11342", "source" : "5829", "target" : "2797", "shared_name" : "4538 (interacts with) 4728", "name" : "4538 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 11342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11338", "source" : "5829", "target" : "5833", "shared_name" : "4538 (interacts with) 4726", "name" : "4538 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 11338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11334", "source" : "5829", "target" : "2285", "shared_name" : "4538 (interacts with) 51300", "name" : "4538 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 11334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11330", "source" : "5829", "target" : "1573", "shared_name" : "4538 (interacts with) 4723", "name" : "4538 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 11330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11326", "source" : "5829", "target" : "1869", "shared_name" : "4538 (interacts with) 4729", "name" : "4538 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 11326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11322", "source" : "5829", "target" : "5845", "shared_name" : "4538 (interacts with) 4714", "name" : "4538 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 11322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11318", "source" : "5829", "target" : "2689", "shared_name" : "4538 (interacts with) 4715", "name" : "4538 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 11318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11314", "source" : "5829", "target" : "4945", "shared_name" : "4538 (interacts with) 4722", "name" : "4538 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 11314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11310", "source" : "5829", "target" : "5821", "shared_name" : "4538 (interacts with) 4724", "name" : "4538 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 11310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11306", "source" : "5829", "target" : "4017", "shared_name" : "4538 (interacts with) 4719", "name" : "4538 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 11306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11302", "source" : "5829", "target" : "2753", "shared_name" : "4538 (interacts with) 4720", "name" : "4538 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 11302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11298", "source" : "5829", "target" : "5853", "shared_name" : "4538 (interacts with) 4709", "name" : "4538 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 11298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11294", "source" : "5829", "target" : "3761", "shared_name" : "4538 (interacts with) 25915", "name" : "4538 (interacts with) 25915", "interaction" : "interacts with", "SUID" : 11294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11290", "source" : "5829", "target" : "5505", "shared_name" : "4538 (interacts with) 29078", "name" : "4538 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 11290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11286", "source" : "5829", "target" : "2109", "shared_name" : "4538 (interacts with) 51103", "name" : "4538 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 11286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11282", "source" : "5829", "target" : "1661", "shared_name" : "4538 (interacts with) 91942", "name" : "4538 (interacts with) 91942", "interaction" : "interacts with", "SUID" : 11282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11278", "source" : "5829", "target" : "2009", "shared_name" : "4538 (interacts with) 79133", "name" : "4538 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 11278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11274", "source" : "5829", "target" : "793", "shared_name" : "4538 (interacts with) 137682", "name" : "4538 (interacts with) 137682", "interaction" : "interacts with", "SUID" : 11274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11270", "source" : "5829", "target" : "2801", "shared_name" : "4538 (interacts with) 4700", "name" : "4538 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 11270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11266", "source" : "5829", "target" : "2741", "shared_name" : "4538 (interacts with) 4695", "name" : "4538 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 11266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11262", "source" : "5829", "target" : "3617", "shared_name" : "4538 (interacts with) 4704", "name" : "4538 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 11262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11258", "source" : "5829", "target" : "4265", "shared_name" : "4538 (interacts with) 4541", "name" : "4538 (interacts with) 4541", "interaction" : "interacts with", "SUID" : 11258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11254", "source" : "5829", "target" : "4061", "shared_name" : "4538 (interacts with) 4705", "name" : "4538 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 11254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11250", "source" : "5829", "target" : "5885", "shared_name" : "4538 (interacts with) 4540", "name" : "4538 (interacts with) 4540", "interaction" : "interacts with", "SUID" : 11250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11246", "source" : "5829", "target" : "2757", "shared_name" : "4538 (interacts with) 51079", "name" : "4538 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 11246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11242", "source" : "5829", "target" : "5857", "shared_name" : "4538 (interacts with) 4694", "name" : "4538 (interacts with) 4694", "interaction" : "interacts with", "SUID" : 11242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11238", "source" : "5829", "target" : "2825", "shared_name" : "4538 (interacts with) 126328", "name" : "4538 (interacts with) 126328", "interaction" : "interacts with", "SUID" : 11238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11234", "source" : "5829", "target" : "5553", "shared_name" : "4538 (interacts with) 55967", "name" : "4538 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 11234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11410", "source" : "5825", "target" : "2369", "shared_name" : "4594 (interacts with) 51741", "name" : "4594 (interacts with) 51741", "interaction" : "interacts with", "SUID" : 11410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11406", "source" : "5825", "target" : "5677", "shared_name" : "4594 (interacts with) 5189", "name" : "4594 (interacts with) 5189", "interaction" : "interacts with", "SUID" : 11406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11402", "source" : "5825", "target" : "2393", "shared_name" : "4594 (interacts with) 6683", "name" : "4594 (interacts with) 6683", "interaction" : "interacts with", "SUID" : 11402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11398", "source" : "5825", "target" : "1601", "shared_name" : "4594 (interacts with) 7415", "name" : "4594 (interacts with) 7415", "interaction" : "interacts with", "SUID" : 11398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11394", "source" : "5825", "target" : "2377", "shared_name" : "4594 (interacts with) 6687", "name" : "4594 (interacts with) 6687", "interaction" : "interacts with", "SUID" : 11394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11390", "source" : "5825", "target" : "4613", "shared_name" : "4594 (interacts with) 84896", "name" : "4594 (interacts with) 84896", "interaction" : "interacts with", "SUID" : 11390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11386", "source" : "5825", "target" : "485", "shared_name" : "4594 (interacts with) 593", "name" : "4594 (interacts with) 593", "interaction" : "interacts with", "SUID" : 11386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11382", "source" : "5825", "target" : "493", "shared_name" : "4594 (interacts with) 594", "name" : "4594 (interacts with) 594", "interaction" : "interacts with", "SUID" : 11382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11378", "source" : "5825", "target" : "3425", "shared_name" : "4594 (interacts with) 8803", "name" : "4594 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 11378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11374", "source" : "5825", "target" : "2925", "shared_name" : "4594 (interacts with) 8802", "name" : "4594 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 11374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11370", "source" : "5825", "target" : "397", "shared_name" : "4594 (interacts with) 50", "name" : "4594 (interacts with) 50", "interaction" : "interacts with", "SUID" : 11370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11366", "source" : "5825", "target" : "2025", "shared_name" : "4594 (interacts with) 549", "name" : "4594 (interacts with) 549", "interaction" : "interacts with", "SUID" : 11366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11362", "source" : "5825", "target" : "653", "shared_name" : "4594 (interacts with) 6948", "name" : "4594 (interacts with) 6948", "interaction" : "interacts with", "SUID" : 11362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11358", "source" : "5825", "target" : "1021", "shared_name" : "4594 (interacts with) 5096", "name" : "4594 (interacts with) 5096", "interaction" : "interacts with", "SUID" : 11358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11354", "source" : "5825", "target" : "1301", "shared_name" : "4594 (interacts with) 5095", "name" : "4594 (interacts with) 5095", "interaction" : "interacts with", "SUID" : 11354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11450", "source" : "5821", "target" : "5833", "shared_name" : "4724 (interacts with) 4726", "name" : "4724 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 11450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11446", "source" : "5821", "target" : "2797", "shared_name" : "4724 (interacts with) 4728", "name" : "4724 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 11446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11442", "source" : "5821", "target" : "1869", "shared_name" : "4724 (interacts with) 4729", "name" : "4724 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 11442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11438", "source" : "5821", "target" : "2285", "shared_name" : "4724 (interacts with) 51300", "name" : "4724 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 11438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11434", "source" : "5821", "target" : "1337", "shared_name" : "4724 (interacts with) 55863", "name" : "4724 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 11434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11430", "source" : "5821", "target" : "889", "shared_name" : "4724 (interacts with) 80224", "name" : "4724 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 11430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11426", "source" : "5821", "target" : "2757", "shared_name" : "4724 (interacts with) 51079", "name" : "4724 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 11426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11422", "source" : "5821", "target" : "5553", "shared_name" : "4724 (interacts with) 55967", "name" : "4724 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 11422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11418", "source" : "5821", "target" : "4045", "shared_name" : "4724 (interacts with) 29920", "name" : "4724 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 11418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11414", "source" : "5821", "target" : "3501", "shared_name" : "4724 (interacts with) 5831", "name" : "4724 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 11414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11622", "source" : "5817", "target" : "5081", "shared_name" : "1950 (interacts with) 5594", "name" : "1950 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 11622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11618", "source" : "5817", "target" : "973", "shared_name" : "1950 (interacts with) 5595", "name" : "1950 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 11618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11614", "source" : "5817", "target" : "5361", "shared_name" : "1950 (interacts with) 5604", "name" : "1950 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 11614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11610", "source" : "5817", "target" : "4521", "shared_name" : "1950 (interacts with) 5894", "name" : "1950 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 11610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11606", "source" : "5817", "target" : "4949", "shared_name" : "1950 (interacts with) 5970", "name" : "1950 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 11606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11602", "source" : "5817", "target" : "3017", "shared_name" : "1950 (interacts with) 4790", "name" : "1950 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 11602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11598", "source" : "5817", "target" : "5225", "shared_name" : "1950 (interacts with) 5290", "name" : "1950 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 11598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11594", "source" : "5817", "target" : "4213", "shared_name" : "1950 (interacts with) 5295", "name" : "1950 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 11594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11590", "source" : "5817", "target" : "3685", "shared_name" : "1950 (interacts with) 3265", "name" : "1950 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 11590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11586", "source" : "5817", "target" : "4065", "shared_name" : "1950 (interacts with) 7124", "name" : "1950 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 11586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11582", "source" : "5817", "target" : "4857", "shared_name" : "1950 (interacts with) 5573", "name" : "1950 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 11582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11578", "source" : "5817", "target" : "5965", "shared_name" : "1950 (interacts with) 596", "name" : "1950 (interacts with) 596", "interaction" : "interacts with", "SUID" : 11578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11574", "source" : "5817", "target" : "5037", "shared_name" : "1950 (interacts with) 5515", "name" : "1950 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 11574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11570", "source" : "5817", "target" : "637", "shared_name" : "1950 (interacts with) 6654", "name" : "1950 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 11570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11566", "source" : "5817", "target" : "4769", "shared_name" : "1950 (interacts with) 7132", "name" : "1950 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 11566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11562", "source" : "5817", "target" : "1233", "shared_name" : "1950 (interacts with) 355", "name" : "1950 (interacts with) 355", "interaction" : "interacts with", "SUID" : 11562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11558", "source" : "5817", "target" : "805", "shared_name" : "1950 (interacts with) 6772", "name" : "1950 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 11558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11554", "source" : "5817", "target" : "4981", "shared_name" : "1950 (interacts with) 6774", "name" : "1950 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 11554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11550", "source" : "5817", "target" : "4293", "shared_name" : "1950 (interacts with) 5156", "name" : "1950 (interacts with) 5156", "interaction" : "interacts with", "SUID" : 11550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11546", "source" : "5817", "target" : "5941", "shared_name" : "1950 (interacts with) 5914", "name" : "1950 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 11546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11542", "source" : "5817", "target" : "6101", "shared_name" : "1950 (interacts with) 5582", "name" : "1950 (interacts with) 5582", "interaction" : "interacts with", "SUID" : 11542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11538", "source" : "5817", "target" : "4909", "shared_name" : "1950 (interacts with) 823", "name" : "1950 (interacts with) 823", "interaction" : "interacts with", "SUID" : 11538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11534", "source" : "5817", "target" : "4385", "shared_name" : "1950 (interacts with) 3084", "name" : "1950 (interacts with) 3084", "interaction" : "interacts with", "SUID" : 11534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11530", "source" : "5817", "target" : "2241", "shared_name" : "1950 (interacts with) 3043", "name" : "1950 (interacts with) 3043", "interaction" : "interacts with", "SUID" : 11530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11526", "source" : "5817", "target" : "2969", "shared_name" : "1950 (interacts with) 8867", "name" : "1950 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 11526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11522", "source" : "5817", "target" : "4157", "shared_name" : "1950 (interacts with) 85021", "name" : "1950 (interacts with) 85021", "interaction" : "interacts with", "SUID" : 11522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11518", "source" : "5817", "target" : "1069", "shared_name" : "1950 (interacts with) 5879", "name" : "1950 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 11518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11514", "source" : "5817", "target" : "817", "shared_name" : "1950 (interacts with) 5728", "name" : "1950 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 11514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11510", "source" : "5817", "target" : "5641", "shared_name" : "1950 (interacts with) 5518", "name" : "1950 (interacts with) 5518", "interaction" : "interacts with", "SUID" : 11510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11506", "source" : "5817", "target" : "3465", "shared_name" : "1950 (interacts with) 5296", "name" : "1950 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 11506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11502", "source" : "5817", "target" : "1909", "shared_name" : "1950 (interacts with) 5286", "name" : "1950 (interacts with) 5286", "interaction" : "interacts with", "SUID" : 11502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11498", "source" : "5817", "target" : "3569", "shared_name" : "1950 (interacts with) 4893", "name" : "1950 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 11498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11494", "source" : "5817", "target" : "4345", "shared_name" : "1950 (interacts with) 4854", "name" : "1950 (interacts with) 4854", "interaction" : "interacts with", "SUID" : 11494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11490", "source" : "5817", "target" : "2429", "shared_name" : "1950 (interacts with) 4952", "name" : "1950 (interacts with) 4952", "interaction" : "interacts with", "SUID" : 11490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11486", "source" : "5817", "target" : "1209", "shared_name" : "1950 (interacts with) 51763", "name" : "1950 (interacts with) 51763", "interaction" : "interacts with", "SUID" : 11486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11482", "source" : "5817", "target" : "3573", "shared_name" : "1950 (interacts with) 3845", "name" : "1950 (interacts with) 3845", "interaction" : "interacts with", "SUID" : 11482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11478", "source" : "5817", "target" : "3393", "shared_name" : "1950 (interacts with) 9402", "name" : "1950 (interacts with) 9402", "interaction" : "interacts with", "SUID" : 11478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11474", "source" : "5817", "target" : "5569", "shared_name" : "1950 (interacts with) 59345", "name" : "1950 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 11474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11470", "source" : "5817", "target" : "6129", "shared_name" : "1950 (interacts with) 2263", "name" : "1950 (interacts with) 2263", "interaction" : "interacts with", "SUID" : 11470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11466", "source" : "5817", "target" : "6121", "shared_name" : "1950 (interacts with) 2260", "name" : "1950 (interacts with) 2260", "interaction" : "interacts with", "SUID" : 11466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11462", "source" : "5817", "target" : "3381", "shared_name" : "1950 (interacts with) 2214", "name" : "1950 (interacts with) 2214", "interaction" : "interacts with", "SUID" : 11462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11458", "source" : "5817", "target" : "3629", "shared_name" : "1950 (interacts with) 2066", "name" : "1950 (interacts with) 2066", "interaction" : "interacts with", "SUID" : 11458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11454", "source" : "5817", "target" : "6033", "shared_name" : "1950 (interacts with) 11160", "name" : "1950 (interacts with) 11160", "interaction" : "interacts with", "SUID" : 11454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11638", "source" : "5813", "target" : "5321", "shared_name" : "128240 (interacts with) 5743", "name" : "128240 (interacts with) 5743", "interaction" : "interacts with", "SUID" : 11638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11634", "source" : "5813", "target" : "1065", "shared_name" : "128240 (interacts with) 55739", "name" : "128240 (interacts with) 55739", "interaction" : "interacts with", "SUID" : 11634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11630", "source" : "5813", "target" : "2681", "shared_name" : "128240 (interacts with) 4126", "name" : "128240 (interacts with) 4126", "interaction" : "interacts with", "SUID" : 11630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11626", "source" : "5813", "target" : "665", "shared_name" : "128240 (interacts with) 3309", "name" : "128240 (interacts with) 3309", "interaction" : "interacts with", "SUID" : 11626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11662", "source" : "5809", "target" : "1933", "shared_name" : "140691 (interacts with) 7335", "name" : "140691 (interacts with) 7335", "interaction" : "interacts with", "SUID" : 11662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11658", "source" : "5809", "target" : "3729", "shared_name" : "140691 (interacts with) 7319", "name" : "140691 (interacts with) 7319", "interaction" : "interacts with", "SUID" : 11658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11654", "source" : "5809", "target" : "961", "shared_name" : "140691 (interacts with) 7318", "name" : "140691 (interacts with) 7318", "interaction" : "interacts with", "SUID" : 11654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11650", "source" : "5809", "target" : "705", "shared_name" : "140691 (interacts with) 728378", "name" : "140691 (interacts with) 728378", "interaction" : "interacts with", "SUID" : 11650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11646", "source" : "5809", "target" : "6053", "shared_name" : "140691 (interacts with) 1041", "name" : "140691 (interacts with) 1041", "interaction" : "interacts with", "SUID" : 11646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11642", "source" : "5809", "target" : "2369", "shared_name" : "140691 (interacts with) 51741", "name" : "140691 (interacts with) 51741", "interaction" : "interacts with", "SUID" : 11642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11670", "source" : "5805", "target" : "3845", "shared_name" : "6575 (interacts with) 10479", "name" : "6575 (interacts with) 10479", "interaction" : "interacts with", "SUID" : 11670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11666", "source" : "5805", "target" : "277", "shared_name" : "6575 (interacts with) 285175", "name" : "6575 (interacts with) 285175", "interaction" : "interacts with", "SUID" : 11666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11710", "source" : "5801", "target" : "4161", "shared_name" : "960 (interacts with) 4318", "name" : "960 (interacts with) 4318", "interaction" : "interacts with", "SUID" : 11710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11706", "source" : "5801", "target" : "4109", "shared_name" : "960 (interacts with) 6696", "name" : "960 (interacts with) 6696", "interaction" : "interacts with", "SUID" : 11706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11702", "source" : "5801", "target" : "1809", "shared_name" : "960 (interacts with) 6548", "name" : "960 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 11702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11698", "source" : "5801", "target" : "5141", "shared_name" : "960 (interacts with) 11261", "name" : "960 (interacts with) 11261", "interaction" : "interacts with", "SUID" : 11698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11694", "source" : "5801", "target" : "4673", "shared_name" : "960 (interacts with) 1186", "name" : "960 (interacts with) 1186", "interaction" : "interacts with", "SUID" : 11694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11690", "source" : "5801", "target" : "3349", "shared_name" : "960 (interacts with) 8878", "name" : "960 (interacts with) 8878", "interaction" : "interacts with", "SUID" : 11690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11686", "source" : "5801", "target" : "6121", "shared_name" : "960 (interacts with) 2260", "name" : "960 (interacts with) 2260", "interaction" : "interacts with", "SUID" : 11686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11682", "source" : "5801", "target" : "597", "shared_name" : "960 (interacts with) 271", "name" : "960 (interacts with) 271", "interaction" : "interacts with", "SUID" : 11682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11678", "source" : "5801", "target" : "6129", "shared_name" : "960 (interacts with) 2263", "name" : "960 (interacts with) 2263", "interaction" : "interacts with", "SUID" : 11678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11674", "source" : "5801", "target" : "5797", "shared_name" : "960 (interacts with) 3030", "name" : "960 (interacts with) 3030", "interaction" : "interacts with", "SUID" : 11674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11842", "source" : "5797", "target" : "1749", "shared_name" : "3030 (interacts with) 728294", "name" : "3030 (interacts with) 728294", "interaction" : "interacts with", "SUID" : 11842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11838", "source" : "5797", "target" : "1341", "shared_name" : "3030 (interacts with) 5009", "name" : "3030 (interacts with) 5009", "interaction" : "interacts with", "SUID" : 11838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11834", "source" : "5797", "target" : "1669", "shared_name" : "3030 (interacts with) 6390", "name" : "3030 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 11834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11830", "source" : "5797", "target" : "573", "shared_name" : "3030 (interacts with) 3155", "name" : "3030 (interacts with) 3155", "interaction" : "interacts with", "SUID" : 11830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11826", "source" : "5797", "target" : "4941", "shared_name" : "3030 (interacts with) 6342", "name" : "3030 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 11826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11822", "source" : "5797", "target" : "493", "shared_name" : "3030 (interacts with) 594", "name" : "3030 (interacts with) 594", "interaction" : "interacts with", "SUID" : 11822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11818", "source" : "5797", "target" : "485", "shared_name" : "3030 (interacts with) 593", "name" : "3030 (interacts with) 593", "interaction" : "interacts with", "SUID" : 11818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11814", "source" : "5797", "target" : "1393", "shared_name" : "3030 (interacts with) 55904", "name" : "3030 (interacts with) 55904", "interaction" : "interacts with", "SUID" : 11814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11810", "source" : "5797", "target" : "3769", "shared_name" : "3030 (interacts with) 8085", "name" : "3030 (interacts with) 8085", "interaction" : "interacts with", "SUID" : 11810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11806", "source" : "5797", "target" : "2281", "shared_name" : "3030 (interacts with) 79823", "name" : "3030 (interacts with) 79823", "interaction" : "interacts with", "SUID" : 11806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11802", "source" : "5797", "target" : "2593", "shared_name" : "3030 (interacts with) 64324", "name" : "3030 (interacts with) 64324", "interaction" : "interacts with", "SUID" : 11802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11798", "source" : "5797", "target" : "3709", "shared_name" : "3030 (interacts with) 9757", "name" : "3030 (interacts with) 9757", "interaction" : "interacts with", "SUID" : 11798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11794", "source" : "5797", "target" : "2925", "shared_name" : "3030 (interacts with) 8802", "name" : "3030 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 11794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11790", "source" : "5797", "target" : "3425", "shared_name" : "3030 (interacts with) 8803", "name" : "3030 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 11790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11786", "source" : "5797", "target" : "625", "shared_name" : "3030 (interacts with) 8942", "name" : "3030 (interacts with) 8942", "interaction" : "interacts with", "SUID" : 11786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11782", "source" : "5797", "target" : "1189", "shared_name" : "3030 (interacts with) 7915", "name" : "3030 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 11782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11778", "source" : "5797", "target" : "977", "shared_name" : "3030 (interacts with) 79944", "name" : "3030 (interacts with) 79944", "interaction" : "interacts with", "SUID" : 11778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11774", "source" : "5797", "target" : "2045", "shared_name" : "3030 (interacts with) 51102", "name" : "3030 (interacts with) 51102", "interaction" : "interacts with", "SUID" : 11774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11770", "source" : "5797", "target" : "2029", "shared_name" : "3030 (interacts with) 4329", "name" : "3030 (interacts with) 4329", "interaction" : "interacts with", "SUID" : 11770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11766", "source" : "5797", "target" : "2025", "shared_name" : "3030 (interacts with) 549", "name" : "3030 (interacts with) 549", "interaction" : "interacts with", "SUID" : 11766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11762", "source" : "5797", "target" : "4625", "shared_name" : "3030 (interacts with) 6785", "name" : "3030 (interacts with) 6785", "interaction" : "interacts with", "SUID" : 11762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11758", "source" : "5797", "target" : "365", "shared_name" : "3030 (interacts with) 64834", "name" : "3030 (interacts with) 64834", "interaction" : "interacts with", "SUID" : 11758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11754", "source" : "5797", "target" : "3177", "shared_name" : "3030 (interacts with) 5321", "name" : "3030 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 11754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11750", "source" : "5797", "target" : "4745", "shared_name" : "3030 (interacts with) 35", "name" : "3030 (interacts with) 35", "interaction" : "interacts with", "SUID" : 11750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11746", "source" : "5797", "target" : "5305", "shared_name" : "3030 (interacts with) 6901", "name" : "3030 (interacts with) 6901", "interaction" : "interacts with", "SUID" : 11746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11742", "source" : "5797", "target" : "2853", "shared_name" : "3030 (interacts with) 8398", "name" : "3030 (interacts with) 8398", "interaction" : "interacts with", "SUID" : 11742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11738", "source" : "5797", "target" : "1485", "shared_name" : "3030 (interacts with) 8050", "name" : "3030 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 11738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11734", "source" : "5797", "target" : "1849", "shared_name" : "3030 (interacts with) 26275", "name" : "3030 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 11734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11730", "source" : "5797", "target" : "2881", "shared_name" : "3030 (interacts with) 5160", "name" : "3030 (interacts with) 5160", "interaction" : "interacts with", "SUID" : 11730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11726", "source" : "5797", "target" : "1981", "shared_name" : "3030 (interacts with) 339983", "name" : "3030 (interacts with) 339983", "interaction" : "interacts with", "SUID" : 11726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11722", "source" : "5797", "target" : "3421", "shared_name" : "3030 (interacts with) 4967", "name" : "3030 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 11722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11718", "source" : "5797", "target" : "5217", "shared_name" : "3030 (interacts with) 54902", "name" : "3030 (interacts with) 54902", "interaction" : "interacts with", "SUID" : 11718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11714", "source" : "5797", "target" : "4257", "shared_name" : "3030 (interacts with) 8573", "name" : "3030 (interacts with) 8573", "interaction" : "interacts with", "SUID" : 11714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11854", "source" : "5793", "target" : "781", "shared_name" : "51251 (interacts with) 4860", "name" : "51251 (interacts with) 4860", "interaction" : "interacts with", "SUID" : 11854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11850", "source" : "5793", "target" : "413", "shared_name" : "51251 (interacts with) 51733", "name" : "51251 (interacts with) 51733", "interaction" : "interacts with", "SUID" : 11850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11846", "source" : "5793", "target" : "4933", "shared_name" : "51251 (interacts with) 7355", "name" : "51251 (interacts with) 7355", "interaction" : "interacts with", "SUID" : 11846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11862", "source" : "5789", "target" : "1481", "shared_name" : "3759 (interacts with) 3763", "name" : "3759 (interacts with) 3763", "interaction" : "interacts with", "SUID" : 11862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11858", "source" : "5789", "target" : "1041", "shared_name" : "3759 (interacts with) 3766", "name" : "3759 (interacts with) 3766", "interaction" : "interacts with", "SUID" : 11858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11886", "source" : "5785", "target" : "3449", "shared_name" : "6857 (interacts with) 9568", "name" : "6857 (interacts with) 9568", "interaction" : "interacts with", "SUID" : 11886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11882", "source" : "5785", "target" : "1013", "shared_name" : "6857 (interacts with) 6898", "name" : "6857 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 11882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11878", "source" : "5785", "target" : "4837", "shared_name" : "6857 (interacts with) 8891", "name" : "6857 (interacts with) 8891", "interaction" : "interacts with", "SUID" : 11878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11874", "source" : "5785", "target" : "841", "shared_name" : "6857 (interacts with) 8890", "name" : "6857 (interacts with) 8890", "interaction" : "interacts with", "SUID" : 11874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11870", "source" : "5785", "target" : "2677", "shared_name" : "6857 (interacts with) 7436", "name" : "6857 (interacts with) 7436", "interaction" : "interacts with", "SUID" : 11870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11866", "source" : "5785", "target" : "4149", "shared_name" : "6857 (interacts with) 8893", "name" : "6857 (interacts with) 8893", "interaction" : "interacts with", "SUID" : 11866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11918", "source" : "5781", "target" : "4065", "shared_name" : "6672 (interacts with) 7124", "name" : "6672 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 11918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11914", "source" : "5781", "target" : "2841", "shared_name" : "6672 (interacts with) 7098", "name" : "6672 (interacts with) 7098", "interaction" : "interacts with", "SUID" : 11914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11910", "source" : "5781", "target" : "2069", "shared_name" : "6672 (interacts with) 84106", "name" : "6672 (interacts with) 84106", "interaction" : "interacts with", "SUID" : 11910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11906", "source" : "5781", "target" : "4769", "shared_name" : "6672 (interacts with) 7132", "name" : "6672 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 11906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11902", "source" : "5781", "target" : "981", "shared_name" : "6672 (interacts with) 7157", "name" : "6672 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 11902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11898", "source" : "5781", "target" : "5849", "shared_name" : "6672 (interacts with) 6613", "name" : "6672 (interacts with) 6613", "interaction" : "interacts with", "SUID" : 11898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11894", "source" : "5781", "target" : "877", "shared_name" : "6672 (interacts with) 7341", "name" : "6672 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 11894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11890", "source" : "5781", "target" : "3417", "shared_name" : "6672 (interacts with) 5371", "name" : "6672 (interacts with) 5371", "interaction" : "interacts with", "SUID" : 11890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11978", "source" : "5777", "target" : "397", "shared_name" : "383 (interacts with) 50", "name" : "383 (interacts with) 50", "interaction" : "interacts with", "SUID" : 11978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11974", "source" : "5777", "target" : "769", "shared_name" : "383 (interacts with) 4953", "name" : "383 (interacts with) 4953", "interaction" : "interacts with", "SUID" : 11974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11970", "source" : "5777", "target" : "4253", "shared_name" : "383 (interacts with) 84706", "name" : "383 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 11970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11966", "source" : "5777", "target" : "1461", "shared_name" : "383 (interacts with) 5832", "name" : "383 (interacts with) 5832", "interaction" : "interacts with", "SUID" : 11966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11962", "source" : "5777", "target" : "3501", "shared_name" : "383 (interacts with) 5831", "name" : "383 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 11962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11958", "source" : "5777", "target" : "4737", "shared_name" : "383 (interacts with) 445", "name" : "383 (interacts with) 445", "interaction" : "interacts with", "SUID" : 11958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11954", "source" : "5777", "target" : "3237", "shared_name" : "383 (interacts with) 95", "name" : "383 (interacts with) 95", "interaction" : "interacts with", "SUID" : 11954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11950", "source" : "5777", "target" : "2097", "shared_name" : "383 (interacts with) 10166", "name" : "383 (interacts with) 10166", "interaction" : "interacts with", "SUID" : 11950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11946", "source" : "5777", "target" : "2005", "shared_name" : "383 (interacts with) 4846", "name" : "383 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 11946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11942", "source" : "5777", "target" : "4621", "shared_name" : "383 (interacts with) 57038", "name" : "383 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 11942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11938", "source" : "5777", "target" : "1089", "shared_name" : "383 (interacts with) 5917", "name" : "383 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 11938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11934", "source" : "5777", "target" : "1341", "shared_name" : "383 (interacts with) 5009", "name" : "383 (interacts with) 5009", "interaction" : "interacts with", "SUID" : 11934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11930", "source" : "5777", "target" : "1313", "shared_name" : "383 (interacts with) 1727", "name" : "383 (interacts with) 1727", "interaction" : "interacts with", "SUID" : 11930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11926", "source" : "5777", "target" : "1385", "shared_name" : "383 (interacts with) 6520", "name" : "383 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 11926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11922", "source" : "5777", "target" : "3473", "shared_name" : "383 (interacts with) 6528", "name" : "383 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 11922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11990", "source" : "5773", "target" : "869", "shared_name" : "9181 (interacts with) 23221", "name" : "9181 (interacts with) 23221", "interaction" : "interacts with", "SUID" : 11990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11986", "source" : "5773", "target" : "1405", "shared_name" : "9181 (interacts with) 998", "name" : "9181 (interacts with) 998", "interaction" : "interacts with", "SUID" : 11986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11982", "source" : "5773", "target" : "1069", "shared_name" : "9181 (interacts with) 5879", "name" : "9181 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 11982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11994", "source" : "5769", "target" : "3769", "shared_name" : "5081 (interacts with) 8085", "name" : "5081 (interacts with) 8085", "interaction" : "interacts with", "SUID" : 11994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12006", "source" : "5765", "target" : "5453", "shared_name" : "2290 (interacts with) 4204", "name" : "2290 (interacts with) 4204", "interaction" : "interacts with", "SUID" : 12006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12002", "source" : "5765", "target" : "4533", "shared_name" : "2290 (interacts with) 4089", "name" : "2290 (interacts with) 4089", "interaction" : "interacts with", "SUID" : 12002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "11998", "source" : "5765", "target" : "6169", "shared_name" : "2290 (interacts with) 4088", "name" : "2290 (interacts with) 4088", "interaction" : "interacts with", "SUID" : 11998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12138", "source" : "5761", "target" : "1541", "shared_name" : "4208 (interacts with) 958", "name" : "4208 (interacts with) 958", "interaction" : "interacts with", "SUID" : 12138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12134", "source" : "5761", "target" : "417", "shared_name" : "4208 (interacts with) 6689", "name" : "4208 (interacts with) 6689", "interaction" : "interacts with", "SUID" : 12134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12130", "source" : "5761", "target" : "2813", "shared_name" : "4208 (interacts with) 5079", "name" : "4208 (interacts with) 5079", "interaction" : "interacts with", "SUID" : 12130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12126", "source" : "5761", "target" : "5081", "shared_name" : "4208 (interacts with) 5594", "name" : "4208 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 12126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12122", "source" : "5761", "target" : "973", "shared_name" : "4208 (interacts with) 5595", "name" : "4208 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 12122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12118", "source" : "5761", "target" : "5225", "shared_name" : "4208 (interacts with) 5290", "name" : "4208 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 12118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12114", "source" : "5761", "target" : "5361", "shared_name" : "4208 (interacts with) 5604", "name" : "4208 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 12114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12110", "source" : "5761", "target" : "4213", "shared_name" : "4208 (interacts with) 5295", "name" : "4208 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 12110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12106", "source" : "5761", "target" : "4521", "shared_name" : "4208 (interacts with) 5894", "name" : "4208 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 12106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12102", "source" : "5761", "target" : "4857", "shared_name" : "4208 (interacts with) 5573", "name" : "4208 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 12102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12098", "source" : "5761", "target" : "3305", "shared_name" : "4208 (interacts with) 7040", "name" : "4208 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 12098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12094", "source" : "5761", "target" : "3409", "shared_name" : "4208 (interacts with) 7043", "name" : "4208 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 12094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12090", "source" : "5761", "target" : "2153", "shared_name" : "4208 (interacts with) 7042", "name" : "4208 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 12090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12086", "source" : "5761", "target" : "1201", "shared_name" : "4208 (interacts with) 805", "name" : "4208 (interacts with) 805", "interaction" : "interacts with", "SUID" : 12086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12082", "source" : "5761", "target" : "993", "shared_name" : "4208 (interacts with) 801", "name" : "4208 (interacts with) 801", "interaction" : "interacts with", "SUID" : 12082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12078", "source" : "5761", "target" : "1241", "shared_name" : "4208 (interacts with) 808", "name" : "4208 (interacts with) 808", "interaction" : "interacts with", "SUID" : 12078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12074", "source" : "5761", "target" : "3593", "shared_name" : "4208 (interacts with) 5530", "name" : "4208 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 12074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12070", "source" : "5761", "target" : "565", "shared_name" : "4208 (interacts with) 4772", "name" : "4208 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 12070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12066", "source" : "5761", "target" : "5625", "shared_name" : "4208 (interacts with) 595", "name" : "4208 (interacts with) 595", "interaction" : "interacts with", "SUID" : 12066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12062", "source" : "5761", "target" : "2433", "shared_name" : "4208 (interacts with) 6927", "name" : "4208 (interacts with) 6927", "interaction" : "interacts with", "SUID" : 12062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12058", "source" : "5761", "target" : "569", "shared_name" : "4208 (interacts with) 7048", "name" : "4208 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 12058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12054", "source" : "5761", "target" : "5745", "shared_name" : "4208 (interacts with) 7471", "name" : "4208 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 12054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12050", "source" : "5761", "target" : "5949", "shared_name" : "4208 (interacts with) 672", "name" : "4208 (interacts with) 672", "interaction" : "interacts with", "SUID" : 12050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12046", "source" : "5761", "target" : "2305", "shared_name" : "4208 (interacts with) 6908", "name" : "4208 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 12046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12042", "source" : "5761", "target" : "2921", "shared_name" : "4208 (interacts with) 5981", "name" : "4208 (interacts with) 5981", "interaction" : "interacts with", "SUID" : 12042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12038", "source" : "5761", "target" : "1789", "shared_name" : "4208 (interacts with) 652", "name" : "4208 (interacts with) 652", "interaction" : "interacts with", "SUID" : 12038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12034", "source" : "5761", "target" : "2673", "shared_name" : "4208 (interacts with) 8841", "name" : "4208 (interacts with) 8841", "interaction" : "interacts with", "SUID" : 12034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12030", "source" : "5761", "target" : "5085", "shared_name" : "4208 (interacts with) 56652", "name" : "4208 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 12030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12026", "source" : "5761", "target" : "713", "shared_name" : "4208 (interacts with) 7019", "name" : "4208 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 12026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12022", "source" : "5761", "target" : "2389", "shared_name" : "4208 (interacts with) 6925", "name" : "4208 (interacts with) 6925", "interaction" : "interacts with", "SUID" : 12022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12018", "source" : "5761", "target" : "6141", "shared_name" : "4208 (interacts with) 6792", "name" : "4208 (interacts with) 6792", "interaction" : "interacts with", "SUID" : 12018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12014", "source" : "5761", "target" : "3821", "shared_name" : "4208 (interacts with) 10891", "name" : "4208 (interacts with) 10891", "interaction" : "interacts with", "SUID" : 12014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12010", "source" : "5761", "target" : "5409", "shared_name" : "4208 (interacts with) 9734", "name" : "4208 (interacts with) 9734", "interaction" : "interacts with", "SUID" : 12010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12158", "source" : "5757", "target" : "957", "shared_name" : "4311 (interacts with) 5230", "name" : "4311 (interacts with) 5230", "interaction" : "interacts with", "SUID" : 12158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12154", "source" : "5757", "target" : "2945", "shared_name" : "4311 (interacts with) 471", "name" : "4311 (interacts with) 471", "interaction" : "interacts with", "SUID" : 12154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12150", "source" : "5757", "target" : "5873", "shared_name" : "4311 (interacts with) 5827", "name" : "4311 (interacts with) 5827", "interaction" : "interacts with", "SUID" : 12150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12146", "source" : "5757", "target" : "2181", "shared_name" : "4311 (interacts with) 94005", "name" : "4311 (interacts with) 94005", "interaction" : "interacts with", "SUID" : 12146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12142", "source" : "5757", "target" : "4481", "shared_name" : "4311 (interacts with) 55624", "name" : "4311 (interacts with) 55624", "interaction" : "interacts with", "SUID" : 12142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12218", "source" : "5753", "target" : "4641", "shared_name" : "2581 (interacts with) 55331", "name" : "2581 (interacts with) 55331", "interaction" : "interacts with", "SUID" : 12218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12214", "source" : "5753", "target" : "897", "shared_name" : "2581 (interacts with) 3073", "name" : "2581 (interacts with) 3073", "interaction" : "interacts with", "SUID" : 12214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12210", "source" : "5753", "target" : "5637", "shared_name" : "2581 (interacts with) 6609", "name" : "2581 (interacts with) 6609", "interaction" : "interacts with", "SUID" : 12210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12206", "source" : "5753", "target" : "5221", "shared_name" : "2581 (interacts with) 285362", "name" : "2581 (interacts with) 285362", "interaction" : "interacts with", "SUID" : 12206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12202", "source" : "5753", "target" : "6165", "shared_name" : "2581 (interacts with) 2629", "name" : "2581 (interacts with) 2629", "interaction" : "interacts with", "SUID" : 12202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12198", "source" : "5753", "target" : "3025", "shared_name" : "2581 (interacts with) 55627", "name" : "2581 (interacts with) 55627", "interaction" : "interacts with", "SUID" : 12198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12194", "source" : "5753", "target" : "6133", "shared_name" : "2581 (interacts with) 54658", "name" : "2581 (interacts with) 54658", "interaction" : "interacts with", "SUID" : 12194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12190", "source" : "5753", "target" : "3705", "shared_name" : "2581 (interacts with) 87178", "name" : "2581 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 12190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12186", "source" : "5753", "target" : "3645", "shared_name" : "2581 (interacts with) 4758", "name" : "2581 (interacts with) 4758", "interaction" : "interacts with", "SUID" : 12186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12182", "source" : "5753", "target" : "1545", "shared_name" : "2581 (interacts with) 5277", "name" : "2581 (interacts with) 5277", "interaction" : "interacts with", "SUID" : 12182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12178", "source" : "5753", "target" : "4989", "shared_name" : "2581 (interacts with) 51227", "name" : "2581 (interacts with) 51227", "interaction" : "interacts with", "SUID" : 12178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12174", "source" : "5753", "target" : "985", "shared_name" : "2581 (interacts with) 9091", "name" : "2581 (interacts with) 9091", "interaction" : "interacts with", "SUID" : 12174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12170", "source" : "5753", "target" : "5561", "shared_name" : "2581 (interacts with) 4247", "name" : "2581 (interacts with) 4247", "interaction" : "interacts with", "SUID" : 12170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12166", "source" : "5753", "target" : "5661", "shared_name" : "2581 (interacts with) 2717", "name" : "2581 (interacts with) 2717", "interaction" : "interacts with", "SUID" : 12166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12162", "source" : "5753", "target" : "4193", "shared_name" : "2581 (interacts with) 2720", "name" : "2581 (interacts with) 2720", "interaction" : "interacts with", "SUID" : 12162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12242", "source" : "5749", "target" : "2637", "shared_name" : "10959 (interacts with) 353376", "name" : "10959 (interacts with) 353376", "interaction" : "interacts with", "SUID" : 12242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12238", "source" : "5749", "target" : "2521", "shared_name" : "10959 (interacts with) 83696", "name" : "10959 (interacts with) 83696", "interaction" : "interacts with", "SUID" : 12238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12234", "source" : "5749", "target" : "1457", "shared_name" : "10959 (interacts with) 122553", "name" : "10959 (interacts with) 122553", "interaction" : "interacts with", "SUID" : 12234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12230", "source" : "5749", "target" : "1717", "shared_name" : "10959 (interacts with) 51693", "name" : "10959 (interacts with) 51693", "interaction" : "interacts with", "SUID" : 12230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12226", "source" : "5749", "target" : "545", "shared_name" : "10959 (interacts with) 51014", "name" : "10959 (interacts with) 51014", "interaction" : "interacts with", "SUID" : 12226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12222", "source" : "5749", "target" : "3705", "shared_name" : "10959 (interacts with) 87178", "name" : "10959 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 12222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12250", "source" : "5745", "target" : "4469", "shared_name" : "7471 (interacts with) 8295", "name" : "7471 (interacts with) 8295", "interaction" : "interacts with", "SUID" : 12250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12246", "source" : "5745", "target" : "5053", "shared_name" : "7471 (interacts with) 857", "name" : "7471 (interacts with) 857", "interaction" : "interacts with", "SUID" : 12246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12278", "source" : "5741", "target" : "5861", "shared_name" : "9150 (interacts with) 5435", "name" : "9150 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 12278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12274", "source" : "5741", "target" : "2649", "shared_name" : "9150 (interacts with) 5430", "name" : "9150 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 12274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12270", "source" : "5741", "target" : "4249", "shared_name" : "9150 (interacts with) 4331", "name" : "9150 (interacts with) 4331", "interaction" : "interacts with", "SUID" : 12270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12266", "source" : "5741", "target" : "1937", "shared_name" : "9150 (interacts with) 2965", "name" : "9150 (interacts with) 2965", "interaction" : "interacts with", "SUID" : 12266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12262", "source" : "5741", "target" : "913", "shared_name" : "9150 (interacts with) 404672", "name" : "9150 (interacts with) 404672", "interaction" : "interacts with", "SUID" : 12262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12258", "source" : "5741", "target" : "505", "shared_name" : "9150 (interacts with) 2071", "name" : "9150 (interacts with) 2071", "interaction" : "interacts with", "SUID" : 12258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12254", "source" : "5741", "target" : "4177", "shared_name" : "9150 (interacts with) 2068", "name" : "9150 (interacts with) 2068", "interaction" : "interacts with", "SUID" : 12254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12318", "source" : "5737", "target" : "1085", "shared_name" : "84340 (interacts with) 9377", "name" : "84340 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 12318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12314", "source" : "5737", "target" : "6181", "shared_name" : "84340 (interacts with) 84987", "name" : "84340 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 12314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12310", "source" : "5737", "target" : "3705", "shared_name" : "84340 (interacts with) 87178", "name" : "84340 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 12310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12306", "source" : "5737", "target" : "5341", "shared_name" : "84340 (interacts with) 91647", "name" : "84340 (interacts with) 91647", "interaction" : "interacts with", "SUID" : 12306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12302", "source" : "5737", "target" : "4757", "shared_name" : "84340 (interacts with) 9997", "name" : "84340 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 12302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12298", "source" : "5737", "target" : "4869", "shared_name" : "84340 (interacts with) 92935", "name" : "84340 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 12298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12294", "source" : "5737", "target" : "521", "shared_name" : "84340 (interacts with) 85476", "name" : "84340 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 12294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12290", "source" : "5737", "target" : "6073", "shared_name" : "84340 (interacts with) 92170", "name" : "84340 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 12290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12286", "source" : "5737", "target" : "4069", "shared_name" : "84340 (interacts with) 374291", "name" : "84340 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 12286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12282", "source" : "5737", "target" : "1325", "shared_name" : "84340 (interacts with) 7284", "name" : "84340 (interacts with) 7284", "interaction" : "interacts with", "SUID" : 12282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12326", "source" : "5733", "target" : "5417", "shared_name" : "57017 (interacts with) 56997", "name" : "57017 (interacts with) 56997", "interaction" : "interacts with", "SUID" : 12326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12322", "source" : "5733", "target" : "6057", "shared_name" : "57017 (interacts with) 3162", "name" : "57017 (interacts with) 3162", "interaction" : "interacts with", "SUID" : 12322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12378", "source" : "5729", "target" : "3845", "shared_name" : "861 (interacts with) 10479", "name" : "861 (interacts with) 10479", "interaction" : "interacts with", "SUID" : 12378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12374", "source" : "5729", "target" : "277", "shared_name" : "861 (interacts with) 285175", "name" : "861 (interacts with) 285175", "interaction" : "interacts with", "SUID" : 12374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12370", "source" : "5729", "target" : "4629", "shared_name" : "861 (interacts with) 6605", "name" : "861 (interacts with) 6605", "interaction" : "interacts with", "SUID" : 12370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12366", "source" : "5729", "target" : "3093", "shared_name" : "861 (interacts with) 6597", "name" : "861 (interacts with) 6597", "interaction" : "interacts with", "SUID" : 12366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12362", "source" : "5729", "target" : "525", "shared_name" : "861 (interacts with) 6598", "name" : "861 (interacts with) 6598", "interaction" : "interacts with", "SUID" : 12362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12358", "source" : "5729", "target" : "825", "shared_name" : "861 (interacts with) 25942", "name" : "861 (interacts with) 25942", "interaction" : "interacts with", "SUID" : 12358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12354", "source" : "5729", "target" : "689", "shared_name" : "861 (interacts with) 6329", "name" : "861 (interacts with) 6329", "interaction" : "interacts with", "SUID" : 12354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12350", "source" : "5729", "target" : "4841", "shared_name" : "861 (interacts with) 6334", "name" : "861 (interacts with) 6334", "interaction" : "interacts with", "SUID" : 12350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12346", "source" : "5729", "target" : "5229", "shared_name" : "861 (interacts with) 6335", "name" : "861 (interacts with) 6335", "interaction" : "interacts with", "SUID" : 12346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12342", "source" : "5729", "target" : "381", "shared_name" : "861 (interacts with) 6323", "name" : "861 (interacts with) 6323", "interaction" : "interacts with", "SUID" : 12342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12338", "source" : "5729", "target" : "373", "shared_name" : "861 (interacts with) 6328", "name" : "861 (interacts with) 6328", "interaction" : "interacts with", "SUID" : 12338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12334", "source" : "5729", "target" : "377", "shared_name" : "861 (interacts with) 6326", "name" : "861 (interacts with) 6326", "interaction" : "interacts with", "SUID" : 12334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12330", "source" : "5729", "target" : "5161", "shared_name" : "861 (interacts with) 1786", "name" : "861 (interacts with) 1786", "interaction" : "interacts with", "SUID" : 12330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12386", "source" : "5725", "target" : "4205", "shared_name" : "9711 (interacts with) 23503", "name" : "9711 (interacts with) 23503", "interaction" : "interacts with", "SUID" : 12386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12382", "source" : "5725", "target" : "5101", "shared_name" : "9711 (interacts with) 8678", "name" : "9711 (interacts with) 8678", "interaction" : "interacts with", "SUID" : 12382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12434", "source" : "5721", "target" : "5341", "shared_name" : "11128 (interacts with) 91647", "name" : "11128 (interacts with) 91647", "interaction" : "interacts with", "SUID" : 12434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12430", "source" : "5721", "target" : "1857", "shared_name" : "11128 (interacts with) 9533", "name" : "11128 (interacts with) 9533", "interaction" : "interacts with", "SUID" : 12430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12426", "source" : "5721", "target" : "5333", "shared_name" : "11128 (interacts with) 5591", "name" : "11128 (interacts with) 5591", "interaction" : "interacts with", "SUID" : 12426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12422", "source" : "5721", "target" : "5977", "shared_name" : "11128 (interacts with) 1915", "name" : "11128 (interacts with) 1915", "interaction" : "interacts with", "SUID" : 12422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12418", "source" : "5721", "target" : "5981", "shared_name" : "11128 (interacts with) 1917", "name" : "11128 (interacts with) 1917", "interaction" : "interacts with", "SUID" : 12418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12414", "source" : "5721", "target" : "521", "shared_name" : "11128 (interacts with) 85476", "name" : "11128 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 12414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12410", "source" : "5721", "target" : "1325", "shared_name" : "11128 (interacts with) 7284", "name" : "11128 (interacts with) 7284", "interaction" : "interacts with", "SUID" : 12410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12406", "source" : "5721", "target" : "5737", "shared_name" : "11128 (interacts with) 84340", "name" : "11128 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 12406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12402", "source" : "5721", "target" : "5621", "shared_name" : "11128 (interacts with) 25885", "name" : "11128 (interacts with) 25885", "interaction" : "interacts with", "SUID" : 12402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12398", "source" : "5721", "target" : "2305", "shared_name" : "11128 (interacts with) 6908", "name" : "11128 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 12398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12394", "source" : "5721", "target" : "5709", "shared_name" : "11128 (interacts with) 55703", "name" : "11128 (interacts with) 55703", "interaction" : "interacts with", "SUID" : 12394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12390", "source" : "5721", "target" : "2917", "shared_name" : "11128 (interacts with) 5451", "name" : "11128 (interacts with) 5451", "interaction" : "interacts with", "SUID" : 12390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12466", "source" : "5717", "target" : "1605", "shared_name" : "29925 (interacts with) 6648", "name" : "29925 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 12466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12462", "source" : "5717", "target" : "897", "shared_name" : "29925 (interacts with) 3073", "name" : "29925 (interacts with) 3073", "interaction" : "interacts with", "SUID" : 12462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12458", "source" : "5717", "target" : "3425", "shared_name" : "29925 (interacts with) 8803", "name" : "29925 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 12458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12454", "source" : "5717", "target" : "4577", "shared_name" : "29925 (interacts with) 7167", "name" : "29925 (interacts with) 7167", "interaction" : "interacts with", "SUID" : 12454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12450", "source" : "5717", "target" : "5401", "shared_name" : "29925 (interacts with) 5373", "name" : "29925 (interacts with) 5373", "interaction" : "interacts with", "SUID" : 12450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12446", "source" : "5717", "target" : "285", "shared_name" : "29925 (interacts with) 5238", "name" : "29925 (interacts with) 5238", "interaction" : "interacts with", "SUID" : 12446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12442", "source" : "5717", "target" : "405", "shared_name" : "29925 (interacts with) 54187", "name" : "29925 (interacts with) 54187", "interaction" : "interacts with", "SUID" : 12442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12438", "source" : "5717", "target" : "2633", "shared_name" : "29925 (interacts with) 29926", "name" : "29925 (interacts with) 29926", "interaction" : "interacts with", "SUID" : 12438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12490", "source" : "5713", "target" : "2977", "shared_name" : "7531 (interacts with) 4747", "name" : "7531 (interacts with) 4747", "interaction" : "interacts with", "SUID" : 12490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12486", "source" : "5713", "target" : "4697", "shared_name" : "7531 (interacts with) 7534", "name" : "7531 (interacts with) 7534", "interaction" : "interacts with", "SUID" : 12486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12482", "source" : "5713", "target" : "5409", "shared_name" : "7531 (interacts with) 9734", "name" : "7531 (interacts with) 9734", "interaction" : "interacts with", "SUID" : 12482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12478", "source" : "5713", "target" : "3597", "shared_name" : "7531 (interacts with) 10749", "name" : "7531 (interacts with) 10749", "interaction" : "interacts with", "SUID" : 12478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12474", "source" : "5713", "target" : "4521", "shared_name" : "7531 (interacts with) 5894", "name" : "7531 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 12474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12470", "source" : "5713", "target" : "993", "shared_name" : "7531 (interacts with) 801", "name" : "7531 (interacts with) 801", "interaction" : "interacts with", "SUID" : 12470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12518", "source" : "5709", "target" : "1857", "shared_name" : "55703 (interacts with) 9533", "name" : "55703 (interacts with) 9533", "interaction" : "interacts with", "SUID" : 12518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12514", "source" : "5709", "target" : "5333", "shared_name" : "55703 (interacts with) 5591", "name" : "55703 (interacts with) 5591", "interaction" : "interacts with", "SUID" : 12514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12510", "source" : "5709", "target" : "5737", "shared_name" : "55703 (interacts with) 84340", "name" : "55703 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 12510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12506", "source" : "5709", "target" : "521", "shared_name" : "55703 (interacts with) 85476", "name" : "55703 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 12506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12502", "source" : "5709", "target" : "2305", "shared_name" : "55703 (interacts with) 6908", "name" : "55703 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 12502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12498", "source" : "5709", "target" : "1325", "shared_name" : "55703 (interacts with) 7284", "name" : "55703 (interacts with) 7284", "interaction" : "interacts with", "SUID" : 12498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12494", "source" : "5709", "target" : "2917", "shared_name" : "55703 (interacts with) 5451", "name" : "55703 (interacts with) 5451", "interaction" : "interacts with", "SUID" : 12494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12530", "source" : "5701", "target" : "1877", "shared_name" : "6767 (interacts with) 9531", "name" : "6767 (interacts with) 9531", "interaction" : "interacts with", "SUID" : 12530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12526", "source" : "5701", "target" : "1217", "shared_name" : "6767 (interacts with) 3308", "name" : "6767 (interacts with) 3308", "interaction" : "interacts with", "SUID" : 12526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12522", "source" : "5701", "target" : "2169", "shared_name" : "6767 (interacts with) 51182", "name" : "6767 (interacts with) 51182", "interaction" : "interacts with", "SUID" : 12522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12622", "source" : "5697", "target" : "3749", "shared_name" : "8517 (interacts with) 8518", "name" : "8517 (interacts with) 8518", "interaction" : "interacts with", "SUID" : 12622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12618", "source" : "5697", "target" : "1541", "shared_name" : "8517 (interacts with) 958", "name" : "8517 (interacts with) 958", "interaction" : "interacts with", "SUID" : 12618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12614", "source" : "5697", "target" : "1933", "shared_name" : "8517 (interacts with) 7335", "name" : "8517 (interacts with) 7335", "interaction" : "interacts with", "SUID" : 12614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12610", "source" : "5697", "target" : "3697", "shared_name" : "8517 (interacts with) 7099", "name" : "8517 (interacts with) 7099", "interaction" : "interacts with", "SUID" : 12610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12606", "source" : "5697", "target" : "2637", "shared_name" : "8517 (interacts with) 353376", "name" : "8517 (interacts with) 353376", "interaction" : "interacts with", "SUID" : 12606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12602", "source" : "5697", "target" : "4769", "shared_name" : "8517 (interacts with) 7132", "name" : "8517 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 12602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12598", "source" : "5697", "target" : "4065", "shared_name" : "8517 (interacts with) 7124", "name" : "8517 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 12598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12594", "source" : "5697", "target" : "877", "shared_name" : "8517 (interacts with) 7341", "name" : "8517 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 12594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12590", "source" : "5697", "target" : "4949", "shared_name" : "8517 (interacts with) 5970", "name" : "8517 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 12590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12586", "source" : "5697", "target" : "3017", "shared_name" : "8517 (interacts with) 4790", "name" : "8517 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 12586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12582", "source" : "5697", "target" : "5097", "shared_name" : "8517 (interacts with) 8831", "name" : "8517 (interacts with) 8831", "interaction" : "interacts with", "SUID" : 12582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12578", "source" : "5697", "target" : "4581", "shared_name" : "8517 (interacts with) 29110", "name" : "8517 (interacts with) 29110", "interaction" : "interacts with", "SUID" : 12578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12574", "source" : "5697", "target" : "3829", "shared_name" : "8517 (interacts with) 83636", "name" : "8517 (interacts with) 83636", "interaction" : "interacts with", "SUID" : 12574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12570", "source" : "5697", "target" : "4321", "shared_name" : "8517 (interacts with) 132320", "name" : "8517 (interacts with) 132320", "interaction" : "interacts with", "SUID" : 12570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12566", "source" : "5697", "target" : "5201", "shared_name" : "8517 (interacts with) 353", "name" : "8517 (interacts with) 353", "interaction" : "interacts with", "SUID" : 12566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12562", "source" : "5697", "target" : "1837", "shared_name" : "8517 (interacts with) 9939", "name" : "8517 (interacts with) 9939", "interaction" : "interacts with", "SUID" : 12562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12558", "source" : "5697", "target" : "5125", "shared_name" : "8517 (interacts with) 5979", "name" : "8517 (interacts with) 5979", "interaction" : "interacts with", "SUID" : 12558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12554", "source" : "5697", "target" : "1229", "shared_name" : "8517 (interacts with) 238", "name" : "8517 (interacts with) 238", "interaction" : "interacts with", "SUID" : 12554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12550", "source" : "5697", "target" : "5785", "shared_name" : "8517 (interacts with) 6857", "name" : "8517 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 12550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12546", "source" : "5697", "target" : "4725", "shared_name" : "8517 (interacts with) 7010", "name" : "8517 (interacts with) 7010", "interaction" : "interacts with", "SUID" : 12546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12542", "source" : "5697", "target" : "3837", "shared_name" : "8517 (interacts with) 6098", "name" : "8517 (interacts with) 6098", "interaction" : "interacts with", "SUID" : 12542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12538", "source" : "5697", "target" : "1893", "shared_name" : "8517 (interacts with) 1387", "name" : "8517 (interacts with) 1387", "interaction" : "interacts with", "SUID" : 12538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12534", "source" : "5697", "target" : "5509", "shared_name" : "8517 (interacts with) 207", "name" : "8517 (interacts with) 207", "interaction" : "interacts with", "SUID" : 12534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12838", "source" : "5689", "target" : "4897", "shared_name" : "27089 (interacts with) 55149", "name" : "27089 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 12838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12834", "source" : "5689", "target" : "521", "shared_name" : "27089 (interacts with) 85476", "name" : "27089 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 12834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12830", "source" : "5689", "target" : "5985", "shared_name" : "27089 (interacts with) 27235", "name" : "27089 (interacts with) 27235", "interaction" : "interacts with", "SUID" : 12830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12826", "source" : "5689", "target" : "2009", "shared_name" : "27089 (interacts with) 79133", "name" : "27089 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 12826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12822", "source" : "5689", "target" : "3705", "shared_name" : "27089 (interacts with) 87178", "name" : "27089 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 12822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12818", "source" : "5689", "target" : "889", "shared_name" : "27089 (interacts with) 80224", "name" : "27089 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 12818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12814", "source" : "5689", "target" : "1085", "shared_name" : "27089 (interacts with) 9377", "name" : "27089 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 12814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12810", "source" : "5689", "target" : "1053", "shared_name" : "27089 (interacts with) 81689", "name" : "27089 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 12810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12806", "source" : "5689", "target" : "4409", "shared_name" : "27089 (interacts with) 6341", "name" : "27089 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 12806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12802", "source" : "5689", "target" : "4869", "shared_name" : "27089 (interacts with) 92935", "name" : "27089 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 12802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12798", "source" : "5689", "target" : "3633", "shared_name" : "27089 (interacts with) 51067", "name" : "27089 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 12798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12794", "source" : "5689", "target" : "4757", "shared_name" : "27089 (interacts with) 9997", "name" : "27089 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 12794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12790", "source" : "5689", "target" : "2105", "shared_name" : "27089 (interacts with) 56945", "name" : "27089 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 12790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12786", "source" : "5689", "target" : "5737", "shared_name" : "27089 (interacts with) 84340", "name" : "27089 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 12786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12782", "source" : "5689", "target" : "6001", "shared_name" : "27089 (interacts with) 55157", "name" : "27089 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 12782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12778", "source" : "5689", "target" : "1929", "shared_name" : "27089 (interacts with) 51218", "name" : "27089 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 12778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12774", "source" : "5689", "target" : "477", "shared_name" : "27089 (interacts with) 51021", "name" : "27089 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 12774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12770", "source" : "5689", "target" : "1105", "shared_name" : "27089 (interacts with) 493753", "name" : "27089 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 12770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12766", "source" : "5689", "target" : "4101", "shared_name" : "27089 (interacts with) 65260", "name" : "27089 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 12766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12762", "source" : "5689", "target" : "1369", "shared_name" : "27089 (interacts with) 27247", "name" : "27089 (interacts with) 27247", "interaction" : "interacts with", "SUID" : 12762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12758", "source" : "5689", "target" : "2477", "shared_name" : "27089 (interacts with) 57107", "name" : "27089 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 12758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12754", "source" : "5689", "target" : "2337", "shared_name" : "27089 (interacts with) 28976", "name" : "27089 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 12754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12750", "source" : "5689", "target" : "4141", "shared_name" : "27089 (interacts with) 617", "name" : "27089 (interacts with) 617", "interaction" : "interacts with", "SUID" : 12750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12746", "source" : "5689", "target" : "3973", "shared_name" : "27089 (interacts with) 55572", "name" : "27089 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 12746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12742", "source" : "5689", "target" : "5601", "shared_name" : "27089 (interacts with) 84833", "name" : "27089 (interacts with) 84833", "interaction" : "interacts with", "SUID" : 12742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12738", "source" : "5689", "target" : "2901", "shared_name" : "27089 (interacts with) 6647", "name" : "27089 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 12738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12734", "source" : "5689", "target" : "5085", "shared_name" : "27089 (interacts with) 56652", "name" : "27089 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 12734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12730", "source" : "5689", "target" : "2109", "shared_name" : "27089 (interacts with) 51103", "name" : "27089 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 12730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12726", "source" : "5689", "target" : "1561", "shared_name" : "27089 (interacts with) 51117", "name" : "27089 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 12726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12722", "source" : "5689", "target" : "4621", "shared_name" : "27089 (interacts with) 57038", "name" : "27089 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 12722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12718", "source" : "5689", "target" : "2285", "shared_name" : "27089 (interacts with) 51300", "name" : "27089 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 12718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12714", "source" : "5689", "target" : "2757", "shared_name" : "27089 (interacts with) 51079", "name" : "27089 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 12714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12710", "source" : "5689", "target" : "5833", "shared_name" : "27089 (interacts with) 4726", "name" : "27089 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 12710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12706", "source" : "5689", "target" : "5821", "shared_name" : "27089 (interacts with) 4724", "name" : "27089 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 12706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12702", "source" : "5689", "target" : "3617", "shared_name" : "27089 (interacts with) 4704", "name" : "27089 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 12702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12698", "source" : "5689", "target" : "2689", "shared_name" : "27089 (interacts with) 4715", "name" : "27089 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 12698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12694", "source" : "5689", "target" : "4945", "shared_name" : "27089 (interacts with) 4722", "name" : "27089 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 12694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12690", "source" : "5689", "target" : "1573", "shared_name" : "27089 (interacts with) 4723", "name" : "27089 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 12690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12686", "source" : "5689", "target" : "4061", "shared_name" : "27089 (interacts with) 4705", "name" : "27089 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 12686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12682", "source" : "5689", "target" : "2741", "shared_name" : "27089 (interacts with) 4695", "name" : "27089 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 12682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12678", "source" : "5689", "target" : "5857", "shared_name" : "27089 (interacts with) 4694", "name" : "27089 (interacts with) 4694", "interaction" : "interacts with", "SUID" : 12678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12674", "source" : "5689", "target" : "5553", "shared_name" : "27089 (interacts with) 55967", "name" : "27089 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 12674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12670", "source" : "5689", "target" : "4069", "shared_name" : "27089 (interacts with) 374291", "name" : "27089 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 12670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12666", "source" : "5689", "target" : "5853", "shared_name" : "27089 (interacts with) 4709", "name" : "27089 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 12666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12662", "source" : "5689", "target" : "2797", "shared_name" : "27089 (interacts with) 4728", "name" : "27089 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 12662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12658", "source" : "5689", "target" : "1869", "shared_name" : "27089 (interacts with) 4729", "name" : "27089 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 12658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12654", "source" : "5689", "target" : "2753", "shared_name" : "27089 (interacts with) 4720", "name" : "27089 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 12654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12650", "source" : "5689", "target" : "5505", "shared_name" : "27089 (interacts with) 29078", "name" : "27089 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 12650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12646", "source" : "5689", "target" : "5845", "shared_name" : "27089 (interacts with) 4714", "name" : "27089 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 12646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12642", "source" : "5689", "target" : "2801", "shared_name" : "27089 (interacts with) 4700", "name" : "27089 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 12642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12638", "source" : "5689", "target" : "4017", "shared_name" : "27089 (interacts with) 4719", "name" : "27089 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 12638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12634", "source" : "5689", "target" : "5609", "shared_name" : "27089 (interacts with) 4519", "name" : "27089 (interacts with) 4519", "interaction" : "interacts with", "SUID" : 12634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12630", "source" : "5689", "target" : "3413", "shared_name" : "27089 (interacts with) 1337", "name" : "27089 (interacts with) 1337", "interaction" : "interacts with", "SUID" : 12630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12626", "source" : "5689", "target" : "5685", "shared_name" : "27089 (interacts with) 1340", "name" : "27089 (interacts with) 1340", "interaction" : "interacts with", "SUID" : 12626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13142", "source" : "5685", "target" : "6125", "shared_name" : "1340 (interacts with) 22907", "name" : "1340 (interacts with) 22907", "interaction" : "interacts with", "SUID" : 13142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13138", "source" : "5685", "target" : "4945", "shared_name" : "1340 (interacts with) 4722", "name" : "1340 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 13138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13134", "source" : "5685", "target" : "6049", "shared_name" : "1340 (interacts with) 25973", "name" : "1340 (interacts with) 25973", "interaction" : "interacts with", "SUID" : 13134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13130", "source" : "5685", "target" : "3705", "shared_name" : "1340 (interacts with) 87178", "name" : "1340 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 13130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13126", "source" : "5685", "target" : "1865", "shared_name" : "1340 (interacts with) 498", "name" : "1340 (interacts with) 498", "interaction" : "interacts with", "SUID" : 13126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13122", "source" : "5685", "target" : "1489", "shared_name" : "1340 (interacts with) 1738", "name" : "1340 (interacts with) 1738", "interaction" : "interacts with", "SUID" : 13122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13118", "source" : "5685", "target" : "1669", "shared_name" : "1340 (interacts with) 6390", "name" : "1340 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 13118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13114", "source" : "5685", "target" : "1369", "shared_name" : "1340 (interacts with) 27247", "name" : "1340 (interacts with) 27247", "interaction" : "interacts with", "SUID" : 13114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13110", "source" : "5685", "target" : "5605", "shared_name" : "1340 (interacts with) 51601", "name" : "1340 (interacts with) 51601", "interaction" : "interacts with", "SUID" : 13110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13106", "source" : "5685", "target" : "1929", "shared_name" : "1340 (interacts with) 51218", "name" : "1340 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 13106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13102", "source" : "5685", "target" : "6181", "shared_name" : "1340 (interacts with) 84987", "name" : "1340 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 13102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13098", "source" : "5685", "target" : "501", "shared_name" : "1340 (interacts with) 65993", "name" : "1340 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 13098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13094", "source" : "5685", "target" : "1053", "shared_name" : "1340 (interacts with) 81689", "name" : "1340 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 13094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13090", "source" : "5685", "target" : "889", "shared_name" : "1340 (interacts with) 80224", "name" : "1340 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 13090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13086", "source" : "5685", "target" : "793", "shared_name" : "1340 (interacts with) 137682", "name" : "1340 (interacts with) 137682", "interaction" : "interacts with", "SUID" : 13086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13082", "source" : "5685", "target" : "3633", "shared_name" : "1340 (interacts with) 51067", "name" : "1340 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 13082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13078", "source" : "5685", "target" : "2021", "shared_name" : "1340 (interacts with) 5428", "name" : "1340 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 13078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13074", "source" : "5685", "target" : "1573", "shared_name" : "1340 (interacts with) 4723", "name" : "1340 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 13074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13070", "source" : "5685", "target" : "3761", "shared_name" : "1340 (interacts with) 25915", "name" : "1340 (interacts with) 25915", "interaction" : "interacts with", "SUID" : 13070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13066", "source" : "5685", "target" : "5385", "shared_name" : "1340 (interacts with) 1349", "name" : "1340 (interacts with) 1349", "interaction" : "interacts with", "SUID" : 13066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13062", "source" : "5685", "target" : "2785", "shared_name" : "1340 (interacts with) 1351", "name" : "1340 (interacts with) 1351", "interaction" : "interacts with", "SUID" : 13062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13058", "source" : "5685", "target" : "2757", "shared_name" : "1340 (interacts with) 51079", "name" : "1340 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 13058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13054", "source" : "5685", "target" : "2285", "shared_name" : "1340 (interacts with) 51300", "name" : "1340 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 13054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13050", "source" : "5685", "target" : "2337", "shared_name" : "1340 (interacts with) 28976", "name" : "1340 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 13050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13046", "source" : "5685", "target" : "5689", "shared_name" : "1340 (interacts with) 27089", "name" : "1340 (interacts with) 27089", "interaction" : "interacts with", "SUID" : 13046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13042", "source" : "5685", "target" : "5601", "shared_name" : "1340 (interacts with) 84833", "name" : "1340 (interacts with) 84833", "interaction" : "interacts with", "SUID" : 13042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13038", "source" : "5685", "target" : "5169", "shared_name" : "1340 (interacts with) 1355", "name" : "1340 (interacts with) 1355", "interaction" : "interacts with", "SUID" : 13038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13034", "source" : "5685", "target" : "4409", "shared_name" : "1340 (interacts with) 6341", "name" : "1340 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 13034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13030", "source" : "5685", "target" : "2105", "shared_name" : "1340 (interacts with) 56945", "name" : "1340 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 13030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13026", "source" : "5685", "target" : "4869", "shared_name" : "1340 (interacts with) 92935", "name" : "1340 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 13026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13022", "source" : "5685", "target" : "2609", "shared_name" : "1340 (interacts with) 29960", "name" : "1340 (interacts with) 29960", "interaction" : "interacts with", "SUID" : 13022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13018", "source" : "5685", "target" : "5505", "shared_name" : "1340 (interacts with) 29078", "name" : "1340 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 13018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13014", "source" : "5685", "target" : "713", "shared_name" : "1340 (interacts with) 7019", "name" : "1340 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 13014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13010", "source" : "5685", "target" : "2477", "shared_name" : "1340 (interacts with) 57107", "name" : "1340 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 13010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13006", "source" : "5685", "target" : "2345", "shared_name" : "1340 (interacts with) 200205", "name" : "1340 (interacts with) 200205", "interaction" : "interacts with", "SUID" : 13006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13002", "source" : "5685", "target" : "1105", "shared_name" : "1340 (interacts with) 493753", "name" : "1340 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 13002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12998", "source" : "5685", "target" : "1129", "shared_name" : "1340 (interacts with) 57505", "name" : "1340 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 12998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12994", "source" : "5685", "target" : "3617", "shared_name" : "1340 (interacts with) 4704", "name" : "1340 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 12994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12990", "source" : "5685", "target" : "5189", "shared_name" : "1340 (interacts with) 57176", "name" : "1340 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 12990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12986", "source" : "5685", "target" : "1197", "shared_name" : "1340 (interacts with) 79587", "name" : "1340 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 12986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12982", "source" : "5685", "target" : "721", "shared_name" : "1340 (interacts with) 79731", "name" : "1340 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 12982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12978", "source" : "5685", "target" : "4621", "shared_name" : "1340 (interacts with) 57038", "name" : "1340 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 12978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12974", "source" : "5685", "target" : "1561", "shared_name" : "1340 (interacts with) 51117", "name" : "1340 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 12974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12970", "source" : "5685", "target" : "2801", "shared_name" : "1340 (interacts with) 4700", "name" : "1340 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 12970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12966", "source" : "5685", "target" : "521", "shared_name" : "1340 (interacts with) 85476", "name" : "1340 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 12966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12962", "source" : "5685", "target" : "1921", "shared_name" : "1340 (interacts with) 1352", "name" : "1340 (interacts with) 1352", "interaction" : "interacts with", "SUID" : 12962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12958", "source" : "5685", "target" : "2741", "shared_name" : "1340 (interacts with) 4695", "name" : "1340 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 12958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12954", "source" : "5685", "target" : "5845", "shared_name" : "1340 (interacts with) 4714", "name" : "1340 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 12954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12950", "source" : "5685", "target" : "4897", "shared_name" : "1340 (interacts with) 55149", "name" : "1340 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 12950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12946", "source" : "5685", "target" : "5737", "shared_name" : "1340 (interacts with) 84340", "name" : "1340 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 12946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12942", "source" : "5685", "target" : "2009", "shared_name" : "1340 (interacts with) 79133", "name" : "1340 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 12942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12938", "source" : "5685", "target" : "5085", "shared_name" : "1340 (interacts with) 56652", "name" : "1340 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 12938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12934", "source" : "5685", "target" : "477", "shared_name" : "1340 (interacts with) 51021", "name" : "1340 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 12934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12930", "source" : "5685", "target" : "2797", "shared_name" : "1340 (interacts with) 4728", "name" : "1340 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 12930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12926", "source" : "5685", "target" : "2689", "shared_name" : "1340 (interacts with) 4715", "name" : "1340 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 12926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12922", "source" : "5685", "target" : "5853", "shared_name" : "1340 (interacts with) 4709", "name" : "1340 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 12922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12918", "source" : "5685", "target" : "3973", "shared_name" : "1340 (interacts with) 55572", "name" : "1340 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 12918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12914", "source" : "5685", "target" : "4069", "shared_name" : "1340 (interacts with) 374291", "name" : "1340 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 12914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12910", "source" : "5685", "target" : "6073", "shared_name" : "1340 (interacts with) 92170", "name" : "1340 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 12910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12906", "source" : "5685", "target" : "4061", "shared_name" : "1340 (interacts with) 4705", "name" : "1340 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 12906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12902", "source" : "5685", "target" : "2109", "shared_name" : "1340 (interacts with) 51103", "name" : "1340 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 12902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12898", "source" : "5685", "target" : "6001", "shared_name" : "1340 (interacts with) 55157", "name" : "1340 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 12898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12894", "source" : "5685", "target" : "4101", "shared_name" : "1340 (interacts with) 65260", "name" : "1340 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 12894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12890", "source" : "5685", "target" : "4141", "shared_name" : "1340 (interacts with) 617", "name" : "1340 (interacts with) 617", "interaction" : "interacts with", "SUID" : 12890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12886", "source" : "5685", "target" : "2753", "shared_name" : "1340 (interacts with) 4720", "name" : "1340 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 12886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12882", "source" : "5685", "target" : "1869", "shared_name" : "1340 (interacts with) 4729", "name" : "1340 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 12882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12878", "source" : "5685", "target" : "4017", "shared_name" : "1340 (interacts with) 4719", "name" : "1340 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 12878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12874", "source" : "5685", "target" : "4757", "shared_name" : "1340 (interacts with) 9997", "name" : "1340 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 12874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12870", "source" : "5685", "target" : "5585", "shared_name" : "1340 (interacts with) 4512", "name" : "1340 (interacts with) 4512", "interaction" : "interacts with", "SUID" : 12870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12866", "source" : "5685", "target" : "5589", "shared_name" : "1340 (interacts with) 4513", "name" : "1340 (interacts with) 4513", "interaction" : "interacts with", "SUID" : 12866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12862", "source" : "5685", "target" : "2573", "shared_name" : "1340 (interacts with) 4514", "name" : "1340 (interacts with) 4514", "interaction" : "interacts with", "SUID" : 12862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12858", "source" : "5685", "target" : "1605", "shared_name" : "1340 (interacts with) 6648", "name" : "1340 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 12858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12854", "source" : "5685", "target" : "5053", "shared_name" : "1340 (interacts with) 857", "name" : "1340 (interacts with) 857", "interaction" : "interacts with", "SUID" : 12854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12850", "source" : "5685", "target" : "5061", "shared_name" : "1340 (interacts with) 6285", "name" : "1340 (interacts with) 6285", "interaction" : "interacts with", "SUID" : 12850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12846", "source" : "5685", "target" : "3413", "shared_name" : "1340 (interacts with) 1337", "name" : "1340 (interacts with) 1337", "interaction" : "interacts with", "SUID" : 12846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "12842", "source" : "5685", "target" : "3469", "shared_name" : "1340 (interacts with) 2896", "name" : "1340 (interacts with) 2896", "interaction" : "interacts with", "SUID" : 12842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13214", "source" : "5681", "target" : "1069", "shared_name" : "3315 (interacts with) 5879", "name" : "3315 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 13214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13210", "source" : "5681", "target" : "2153", "shared_name" : "3315 (interacts with) 7042", "name" : "3315 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 13210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13206", "source" : "5681", "target" : "3409", "shared_name" : "3315 (interacts with) 7043", "name" : "3315 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 13206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13202", "source" : "5681", "target" : "4065", "shared_name" : "3315 (interacts with) 7124", "name" : "3315 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 13202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13198", "source" : "5681", "target" : "3305", "shared_name" : "3315 (interacts with) 7040", "name" : "3315 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 13198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13194", "source" : "5681", "target" : "5965", "shared_name" : "3315 (interacts with) 596", "name" : "3315 (interacts with) 596", "interaction" : "interacts with", "SUID" : 13194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13190", "source" : "5681", "target" : "1233", "shared_name" : "3315 (interacts with) 355", "name" : "3315 (interacts with) 355", "interaction" : "interacts with", "SUID" : 13190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13186", "source" : "5681", "target" : "805", "shared_name" : "3315 (interacts with) 6772", "name" : "3315 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 13186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13182", "source" : "5681", "target" : "1845", "shared_name" : "3315 (interacts with) 836", "name" : "3315 (interacts with) 836", "interaction" : "interacts with", "SUID" : 13182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13178", "source" : "5681", "target" : "1405", "shared_name" : "3315 (interacts with) 998", "name" : "3315 (interacts with) 998", "interaction" : "interacts with", "SUID" : 13178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13174", "source" : "5681", "target" : "3177", "shared_name" : "3315 (interacts with) 5321", "name" : "3315 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 13174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13170", "source" : "5681", "target" : "433", "shared_name" : "3315 (interacts with) 8988", "name" : "3315 (interacts with) 8988", "interaction" : "interacts with", "SUID" : 13170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13166", "source" : "5681", "target" : "737", "shared_name" : "3315 (interacts with) 2643", "name" : "3315 (interacts with) 2643", "interaction" : "interacts with", "SUID" : 13166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13162", "source" : "5681", "target" : "2309", "shared_name" : "3315 (interacts with) 3316", "name" : "3315 (interacts with) 3316", "interaction" : "interacts with", "SUID" : 13162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13158", "source" : "5681", "target" : "5013", "shared_name" : "3315 (interacts with) 23411", "name" : "3315 (interacts with) 23411", "interaction" : "interacts with", "SUID" : 13158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13154", "source" : "5681", "target" : "821", "shared_name" : "3315 (interacts with) 1410", "name" : "3315 (interacts with) 1410", "interaction" : "interacts with", "SUID" : 13154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13150", "source" : "5681", "target" : "1505", "shared_name" : "3315 (interacts with) 26353", "name" : "3315 (interacts with) 26353", "interaction" : "interacts with", "SUID" : 13150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13146", "source" : "5681", "target" : "4885", "shared_name" : "3315 (interacts with) 5340", "name" : "3315 (interacts with) 5340", "interaction" : "interacts with", "SUID" : 13146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13290", "source" : "5677", "target" : "1749", "shared_name" : "5189 (interacts with) 728294", "name" : "5189 (interacts with) 728294", "interaction" : "interacts with", "SUID" : 13290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13286", "source" : "5677", "target" : "4941", "shared_name" : "5189 (interacts with) 6342", "name" : "5189 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 13286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13282", "source" : "5677", "target" : "1977", "shared_name" : "5189 (interacts with) 5191", "name" : "5189 (interacts with) 5191", "interaction" : "interacts with", "SUID" : 13282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13278", "source" : "5677", "target" : "2353", "shared_name" : "5189 (interacts with) 5264", "name" : "5189 (interacts with) 5264", "interaction" : "interacts with", "SUID" : 13278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13274", "source" : "5677", "target" : "5873", "shared_name" : "5189 (interacts with) 5827", "name" : "5189 (interacts with) 5827", "interaction" : "interacts with", "SUID" : 13274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13270", "source" : "5677", "target" : "196", "shared_name" : "5189 (interacts with) 84188", "name" : "5189 (interacts with) 84188", "interaction" : "interacts with", "SUID" : 13270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13266", "source" : "5677", "target" : "4301", "shared_name" : "5189 (interacts with) 8799", "name" : "5189 (interacts with) 8799", "interaction" : "interacts with", "SUID" : 13266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13262", "source" : "5677", "target" : "3341", "shared_name" : "5189 (interacts with) 8504", "name" : "5189 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 13262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13258", "source" : "5677", "target" : "5545", "shared_name" : "5189 (interacts with) 5195", "name" : "5189 (interacts with) 5195", "interaction" : "interacts with", "SUID" : 13258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13254", "source" : "5677", "target" : "3333", "shared_name" : "5189 (interacts with) 9409", "name" : "5189 (interacts with) 9409", "interaction" : "interacts with", "SUID" : 13254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13250", "source" : "5677", "target" : "4297", "shared_name" : "5189 (interacts with) 5193", "name" : "5189 (interacts with) 5193", "interaction" : "interacts with", "SUID" : 13250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13246", "source" : "5677", "target" : "5865", "shared_name" : "5189 (interacts with) 5192", "name" : "5189 (interacts with) 5192", "interaction" : "interacts with", "SUID" : 13246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13242", "source" : "5677", "target" : "3329", "shared_name" : "5189 (interacts with) 5824", "name" : "5189 (interacts with) 5824", "interaction" : "interacts with", "SUID" : 13242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13238", "source" : "5677", "target" : "5205", "shared_name" : "5189 (interacts with) 5828", "name" : "5189 (interacts with) 5828", "interaction" : "interacts with", "SUID" : 13238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13234", "source" : "5677", "target" : "5237", "shared_name" : "5189 (interacts with) 5830", "name" : "5189 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 13234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13230", "source" : "5677", "target" : "2325", "shared_name" : "5189 (interacts with) 55670", "name" : "5189 (interacts with) 55670", "interaction" : "interacts with", "SUID" : 13230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13226", "source" : "5677", "target" : "1953", "shared_name" : "5189 (interacts with) 5194", "name" : "5189 (interacts with) 5194", "interaction" : "interacts with", "SUID" : 13226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13222", "source" : "5677", "target" : "5109", "shared_name" : "5189 (interacts with) 790", "name" : "5189 (interacts with) 790", "interaction" : "interacts with", "SUID" : 13222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13218", "source" : "5677", "target" : "4505", "shared_name" : "5189 (interacts with) 5190", "name" : "5189 (interacts with) 5190", "interaction" : "interacts with", "SUID" : 13218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13306", "source" : "5673", "target" : "1509", "shared_name" : "6497 (interacts with) 63976", "name" : "6497 (interacts with) 63976", "interaction" : "interacts with", "SUID" : 13306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13302", "source" : "5673", "target" : "6169", "shared_name" : "6497 (interacts with) 4088", "name" : "6497 (interacts with) 4088", "interaction" : "interacts with", "SUID" : 13302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13298", "source" : "5673", "target" : "4533", "shared_name" : "6497 (interacts with) 4089", "name" : "6497 (interacts with) 4089", "interaction" : "interacts with", "SUID" : 13298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13294", "source" : "5673", "target" : "2149", "shared_name" : "6497 (interacts with) 80232", "name" : "6497 (interacts with) 80232", "interaction" : "interacts with", "SUID" : 13294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13346", "source" : "5669", "target" : "409", "shared_name" : "10087 (interacts with) 10558", "name" : "10087 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 13346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13342", "source" : "5669", "target" : "2989", "shared_name" : "10087 (interacts with) 224", "name" : "10087 (interacts with) 224", "interaction" : "interacts with", "SUID" : 13342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13338", "source" : "5669", "target" : "2893", "shared_name" : "10087 (interacts with) 79152", "name" : "10087 (interacts with) 79152", "interaction" : "interacts with", "SUID" : 13338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13334", "source" : "5669", "target" : "4641", "shared_name" : "10087 (interacts with) 55331", "name" : "10087 (interacts with) 55331", "interaction" : "interacts with", "SUID" : 13334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13330", "source" : "5669", "target" : "6041", "shared_name" : "10087 (interacts with) 9217", "name" : "10087 (interacts with) 9217", "interaction" : "interacts with", "SUID" : 13330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13326", "source" : "5669", "target" : "3325", "shared_name" : "10087 (interacts with) 9517", "name" : "10087 (interacts with) 9517", "interaction" : "interacts with", "SUID" : 13326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13322", "source" : "5669", "target" : "901", "shared_name" : "10087 (interacts with) 8560", "name" : "10087 (interacts with) 8560", "interaction" : "interacts with", "SUID" : 13322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13318", "source" : "5669", "target" : "3025", "shared_name" : "10087 (interacts with) 55627", "name" : "10087 (interacts with) 55627", "interaction" : "interacts with", "SUID" : 13318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13314", "source" : "5669", "target" : "6165", "shared_name" : "10087 (interacts with) 2629", "name" : "10087 (interacts with) 2629", "interaction" : "interacts with", "SUID" : 13314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13310", "source" : "5669", "target" : "4645", "shared_name" : "10087 (interacts with) 84231", "name" : "10087 (interacts with) 84231", "interaction" : "interacts with", "SUID" : 13310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13354", "source" : "5665", "target" : "5253", "shared_name" : "55181 (interacts with) 56006", "name" : "55181 (interacts with) 56006", "interaction" : "interacts with", "SUID" : 13354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13350", "source" : "5665", "target" : "4085", "shared_name" : "55181 (interacts with) 55699", "name" : "55181 (interacts with) 55699", "interaction" : "interacts with", "SUID" : 13350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13394", "source" : "5661", "target" : "3017", "shared_name" : "2717 (interacts with) 4790", "name" : "2717 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 13394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13390", "source" : "5661", "target" : "5945", "shared_name" : "2717 (interacts with) 55750", "name" : "2717 (interacts with) 55750", "interaction" : "interacts with", "SUID" : 13390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13386", "source" : "5661", "target" : "4641", "shared_name" : "2717 (interacts with) 55331", "name" : "2717 (interacts with) 55331", "interaction" : "interacts with", "SUID" : 13386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13382", "source" : "5661", "target" : "3025", "shared_name" : "2717 (interacts with) 55627", "name" : "2717 (interacts with) 55627", "interaction" : "interacts with", "SUID" : 13382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13378", "source" : "5661", "target" : "5657", "shared_name" : "2717 (interacts with) 4668", "name" : "2717 (interacts with) 4668", "interaction" : "interacts with", "SUID" : 13378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13374", "source" : "5661", "target" : "273", "shared_name" : "2717 (interacts with) 8869", "name" : "2717 (interacts with) 8869", "interaction" : "interacts with", "SUID" : 13374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13370", "source" : "5661", "target" : "3605", "shared_name" : "2717 (interacts with) 7841", "name" : "2717 (interacts with) 7841", "interaction" : "interacts with", "SUID" : 13370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13366", "source" : "5661", "target" : "1257", "shared_name" : "2717 (interacts with) 3098", "name" : "2717 (interacts with) 3098", "interaction" : "interacts with", "SUID" : 13366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13362", "source" : "5661", "target" : "4193", "shared_name" : "2717 (interacts with) 2720", "name" : "2717 (interacts with) 2720", "interaction" : "interacts with", "SUID" : 13362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13358", "source" : "5661", "target" : "897", "shared_name" : "2717 (interacts with) 3073", "name" : "2717 (interacts with) 3073", "interaction" : "interacts with", "SUID" : 13358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13406", "source" : "5653", "target" : "3053", "shared_name" : "22930 (interacts with) 23299", "name" : "22930 (interacts with) 23299", "interaction" : "interacts with", "SUID" : 13406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13402", "source" : "5653", "target" : "2513", "shared_name" : "22930 (interacts with) 22931", "name" : "22930 (interacts with) 22931", "interaction" : "interacts with", "SUID" : 13402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13398", "source" : "5653", "target" : "5137", "shared_name" : "22930 (interacts with) 25782", "name" : "22930 (interacts with) 25782", "interaction" : "interacts with", "SUID" : 13398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13446", "source" : "5649", "target" : "5569", "shared_name" : "5265 (interacts with) 59345", "name" : "5265 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 13446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13442", "source" : "5649", "target" : "4645", "shared_name" : "5265 (interacts with) 84231", "name" : "5265 (interacts with) 84231", "interaction" : "interacts with", "SUID" : 13442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13438", "source" : "5649", "target" : "1097", "shared_name" : "5265 (interacts with) 79718", "name" : "5265 (interacts with) 79718", "interaction" : "interacts with", "SUID" : 13438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13434", "source" : "5649", "target" : "5073", "shared_name" : "5265 (interacts with) 7305", "name" : "5265 (interacts with) 7305", "interaction" : "interacts with", "SUID" : 13434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13430", "source" : "5649", "target" : "2737", "shared_name" : "5265 (interacts with) 966", "name" : "5265 (interacts with) 966", "interaction" : "interacts with", "SUID" : 13430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13426", "source" : "5649", "target" : "6185", "shared_name" : "5265 (interacts with) 4035", "name" : "5265 (interacts with) 4035", "interaction" : "interacts with", "SUID" : 13426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13422", "source" : "5649", "target" : "2521", "shared_name" : "5265 (interacts with) 83696", "name" : "5265 (interacts with) 83696", "interaction" : "interacts with", "SUID" : 13422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13418", "source" : "5649", "target" : "1457", "shared_name" : "5265 (interacts with) 122553", "name" : "5265 (interacts with) 122553", "interaction" : "interacts with", "SUID" : 13418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13414", "source" : "5649", "target" : "1717", "shared_name" : "5265 (interacts with) 51693", "name" : "5265 (interacts with) 51693", "interaction" : "interacts with", "SUID" : 13414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13410", "source" : "5649", "target" : "2473", "shared_name" : "5265 (interacts with) 10342", "name" : "5265 (interacts with) 10342", "interaction" : "interacts with", "SUID" : 13410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13454", "source" : "5645", "target" : "5173", "shared_name" : "9420 (interacts with) 1718", "name" : "9420 (interacts with) 1718", "interaction" : "interacts with", "SUID" : 13454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13450", "source" : "5645", "target" : "261", "shared_name" : "9420 (interacts with) 1717", "name" : "9420 (interacts with) 1717", "interaction" : "interacts with", "SUID" : 13450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13542", "source" : "5641", "target" : "1245", "shared_name" : "5518 (interacts with) 4137", "name" : "5518 (interacts with) 4137", "interaction" : "interacts with", "SUID" : 13542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13538", "source" : "5641", "target" : "5713", "shared_name" : "5518 (interacts with) 7531", "name" : "5518 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 13538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13534", "source" : "5641", "target" : "5745", "shared_name" : "5518 (interacts with) 7471", "name" : "5518 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 13534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13530", "source" : "5641", "target" : "5397", "shared_name" : "5518 (interacts with) 85378", "name" : "5518 (interacts with) 85378", "interaction" : "interacts with", "SUID" : 13530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13526", "source" : "5641", "target" : "2665", "shared_name" : "5518 (interacts with) 27229", "name" : "5518 (interacts with) 27229", "interaction" : "interacts with", "SUID" : 13526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13522", "source" : "5641", "target" : "5969", "shared_name" : "5518 (interacts with) 10382", "name" : "5518 (interacts with) 10382", "interaction" : "interacts with", "SUID" : 13522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13518", "source" : "5641", "target" : "4021", "shared_name" : "5518 (interacts with) 203068", "name" : "5518 (interacts with) 203068", "interaction" : "interacts with", "SUID" : 13518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13514", "source" : "5641", "target" : "2357", "shared_name" : "5518 (interacts with) 79600", "name" : "5518 (interacts with) 79600", "interaction" : "interacts with", "SUID" : 13514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13510", "source" : "5641", "target" : "4245", "shared_name" : "5518 (interacts with) 91147", "name" : "5518 (interacts with) 91147", "interaction" : "interacts with", "SUID" : 13510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13506", "source" : "5641", "target" : "269", "shared_name" : "5518 (interacts with) 51259", "name" : "5518 (interacts with) 51259", "interaction" : "interacts with", "SUID" : 13506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13502", "source" : "5641", "target" : "2969", "shared_name" : "5518 (interacts with) 8867", "name" : "5518 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 13502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13498", "source" : "5641", "target" : "4797", "shared_name" : "5518 (interacts with) 10735", "name" : "5518 (interacts with) 10735", "interaction" : "interacts with", "SUID" : 13498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13494", "source" : "5641", "target" : "4497", "shared_name" : "5518 (interacts with) 8243", "name" : "5518 (interacts with) 8243", "interaction" : "interacts with", "SUID" : 13494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13490", "source" : "5641", "target" : "4321", "shared_name" : "5518 (interacts with) 132320", "name" : "5518 (interacts with) 132320", "interaction" : "interacts with", "SUID" : 13490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13486", "source" : "5641", "target" : "4389", "shared_name" : "5518 (interacts with) 81846", "name" : "5518 (interacts with) 81846", "interaction" : "interacts with", "SUID" : 13486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13482", "source" : "5641", "target" : "2341", "shared_name" : "5518 (interacts with) 23322", "name" : "5518 (interacts with) 23322", "interaction" : "interacts with", "SUID" : 13482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13478", "source" : "5641", "target" : "4549", "shared_name" : "5518 (interacts with) 5903", "name" : "5518 (interacts with) 5903", "interaction" : "interacts with", "SUID" : 13478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13474", "source" : "5641", "target" : "4521", "shared_name" : "5518 (interacts with) 5894", "name" : "5518 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 13474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13470", "source" : "5641", "target" : "1837", "shared_name" : "5518 (interacts with) 9939", "name" : "5518 (interacts with) 9939", "interaction" : "interacts with", "SUID" : 13470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13466", "source" : "5641", "target" : "2733", "shared_name" : "5518 (interacts with) 5718", "name" : "5518 (interacts with) 5718", "interaction" : "interacts with", "SUID" : 13466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13462", "source" : "5641", "target" : "2109", "shared_name" : "5518 (interacts with) 51103", "name" : "5518 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 13462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13458", "source" : "5641", "target" : "1689", "shared_name" : "5518 (interacts with) 5524", "name" : "5518 (interacts with) 5524", "interaction" : "interacts with", "SUID" : 13458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13558", "source" : "5637", "target" : "4769", "shared_name" : "6609 (interacts with) 7132", "name" : "6609 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 13558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13554", "source" : "5637", "target" : "829", "shared_name" : "6609 (interacts with) 8772", "name" : "6609 (interacts with) 8772", "interaction" : "interacts with", "SUID" : 13554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13550", "source" : "5637", "target" : "6117", "shared_name" : "6609 (interacts with) 9131", "name" : "6609 (interacts with) 9131", "interaction" : "interacts with", "SUID" : 13550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13546", "source" : "5637", "target" : "4133", "shared_name" : "6609 (interacts with) 427", "name" : "6609 (interacts with) 427", "interaction" : "interacts with", "SUID" : 13546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13562", "source" : "5633", "target" : "1957", "shared_name" : "102724560 (interacts with) 1312", "name" : "102724560 (interacts with) 1312", "interaction" : "interacts with", "SUID" : 13562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13610", "source" : "5629", "target" : "3017", "shared_name" : "1959 (interacts with) 4790", "name" : "1959 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 13610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13606", "source" : "5629", "target" : "4949", "shared_name" : "1959 (interacts with) 5970", "name" : "1959 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 13606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13602", "source" : "5629", "target" : "993", "shared_name" : "1959 (interacts with) 801", "name" : "1959 (interacts with) 801", "interaction" : "interacts with", "SUID" : 13602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13598", "source" : "5629", "target" : "4857", "shared_name" : "1959 (interacts with) 5573", "name" : "1959 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 13598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13594", "source" : "5629", "target" : "3593", "shared_name" : "1959 (interacts with) 5530", "name" : "1959 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 13594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13590", "source" : "5629", "target" : "1241", "shared_name" : "1959 (interacts with) 808", "name" : "1959 (interacts with) 808", "interaction" : "interacts with", "SUID" : 13590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13586", "source" : "5629", "target" : "1201", "shared_name" : "1959 (interacts with) 805", "name" : "1959 (interacts with) 805", "interaction" : "interacts with", "SUID" : 13586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13582", "source" : "5629", "target" : "565", "shared_name" : "1959 (interacts with) 4772", "name" : "1959 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 13582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13578", "source" : "5629", "target" : "3925", "shared_name" : "1959 (interacts with) 1051", "name" : "1959 (interacts with) 1051", "interaction" : "interacts with", "SUID" : 13578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13574", "source" : "5629", "target" : "5861", "shared_name" : "1959 (interacts with) 5435", "name" : "1959 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 13574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13570", "source" : "5629", "target" : "2649", "shared_name" : "1959 (interacts with) 5430", "name" : "1959 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 13570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13566", "source" : "5629", "target" : "3769", "shared_name" : "1959 (interacts with) 8085", "name" : "1959 (interacts with) 8085", "interaction" : "interacts with", "SUID" : 13566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13706", "source" : "5625", "target" : "3305", "shared_name" : "595 (interacts with) 7040", "name" : "595 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 13706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13702", "source" : "5625", "target" : "4949", "shared_name" : "595 (interacts with) 5970", "name" : "595 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 13702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13698", "source" : "5625", "target" : "3409", "shared_name" : "595 (interacts with) 7043", "name" : "595 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 13698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13694", "source" : "5625", "target" : "2153", "shared_name" : "595 (interacts with) 7042", "name" : "595 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 13694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13690", "source" : "5625", "target" : "1669", "shared_name" : "595 (interacts with) 6390", "name" : "595 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 13690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13686", "source" : "5625", "target" : "2433", "shared_name" : "595 (interacts with) 6927", "name" : "595 (interacts with) 6927", "interaction" : "interacts with", "SUID" : 13686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13682", "source" : "5625", "target" : "5697", "shared_name" : "595 (interacts with) 8517", "name" : "595 (interacts with) 8517", "interaction" : "interacts with", "SUID" : 13682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13678", "source" : "5625", "target" : "5965", "shared_name" : "595 (interacts with) 596", "name" : "595 (interacts with) 596", "interaction" : "interacts with", "SUID" : 13678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13674", "source" : "5625", "target" : "981", "shared_name" : "595 (interacts with) 7157", "name" : "595 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 13674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13670", "source" : "5625", "target" : "2305", "shared_name" : "595 (interacts with) 6908", "name" : "595 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 13670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13666", "source" : "5625", "target" : "5949", "shared_name" : "595 (interacts with) 672", "name" : "595 (interacts with) 672", "interaction" : "interacts with", "SUID" : 13666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13662", "source" : "5625", "target" : "5745", "shared_name" : "595 (interacts with) 7471", "name" : "595 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 13662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13658", "source" : "5625", "target" : "2673", "shared_name" : "595 (interacts with) 8841", "name" : "595 (interacts with) 8841", "interaction" : "interacts with", "SUID" : 13658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13654", "source" : "5625", "target" : "2389", "shared_name" : "595 (interacts with) 6925", "name" : "595 (interacts with) 6925", "interaction" : "interacts with", "SUID" : 13654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13650", "source" : "5625", "target" : "2077", "shared_name" : "595 (interacts with) 7528", "name" : "595 (interacts with) 7528", "interaction" : "interacts with", "SUID" : 13650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13646", "source" : "5625", "target" : "4981", "shared_name" : "595 (interacts with) 6774", "name" : "595 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 13646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13642", "source" : "5625", "target" : "5453", "shared_name" : "595 (interacts with) 4204", "name" : "595 (interacts with) 4204", "interaction" : "interacts with", "SUID" : 13642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13638", "source" : "5625", "target" : "2213", "shared_name" : "595 (interacts with) 4851", "name" : "595 (interacts with) 4851", "interaction" : "interacts with", "SUID" : 13638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13634", "source" : "5625", "target" : "5729", "shared_name" : "595 (interacts with) 861", "name" : "595 (interacts with) 861", "interaction" : "interacts with", "SUID" : 13634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13630", "source" : "5625", "target" : "4249", "shared_name" : "595 (interacts with) 4331", "name" : "595 (interacts with) 4331", "interaction" : "interacts with", "SUID" : 13630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13626", "source" : "5625", "target" : "2917", "shared_name" : "595 (interacts with) 5451", "name" : "595 (interacts with) 5451", "interaction" : "interacts with", "SUID" : 13626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13622", "source" : "5625", "target" : "1893", "shared_name" : "595 (interacts with) 1387", "name" : "595 (interacts with) 1387", "interaction" : "interacts with", "SUID" : 13622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13618", "source" : "5625", "target" : "873", "shared_name" : "595 (interacts with) 1385", "name" : "595 (interacts with) 1385", "interaction" : "interacts with", "SUID" : 13618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13614", "source" : "5625", "target" : "3033", "shared_name" : "595 (interacts with) 1020", "name" : "595 (interacts with) 1020", "interaction" : "interacts with", "SUID" : 13614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13758", "source" : "5621", "target" : "5225", "shared_name" : "25885 (interacts with) 5290", "name" : "25885 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 13758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13754", "source" : "5621", "target" : "4213", "shared_name" : "25885 (interacts with) 5295", "name" : "25885 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 13754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13750", "source" : "5621", "target" : "1069", "shared_name" : "25885 (interacts with) 5879", "name" : "25885 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 13750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13746", "source" : "5621", "target" : "981", "shared_name" : "25885 (interacts with) 7157", "name" : "25885 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 13746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13742", "source" : "5621", "target" : "1857", "shared_name" : "25885 (interacts with) 9533", "name" : "25885 (interacts with) 9533", "interaction" : "interacts with", "SUID" : 13742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13738", "source" : "5621", "target" : "5737", "shared_name" : "25885 (interacts with) 84340", "name" : "25885 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 13738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13734", "source" : "5621", "target" : "521", "shared_name" : "25885 (interacts with) 85476", "name" : "25885 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 13734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13730", "source" : "5621", "target" : "1325", "shared_name" : "25885 (interacts with) 7284", "name" : "25885 (interacts with) 7284", "interaction" : "interacts with", "SUID" : 13730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13726", "source" : "5621", "target" : "5709", "shared_name" : "25885 (interacts with) 55703", "name" : "25885 (interacts with) 55703", "interaction" : "interacts with", "SUID" : 13726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13722", "source" : "5621", "target" : "1817", "shared_name" : "25885 (interacts with) 7343", "name" : "25885 (interacts with) 7343", "interaction" : "interacts with", "SUID" : 13722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13718", "source" : "5621", "target" : "2305", "shared_name" : "25885 (interacts with) 6908", "name" : "25885 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 13718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13714", "source" : "5621", "target" : "5861", "shared_name" : "25885 (interacts with) 5435", "name" : "25885 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 13714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13710", "source" : "5621", "target" : "2389", "shared_name" : "25885 (interacts with) 6925", "name" : "25885 (interacts with) 6925", "interaction" : "interacts with", "SUID" : 13710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13762", "source" : "5613", "target" : "757", "shared_name" : "5119 (interacts with) 80856", "name" : "5119 (interacts with) 80856", "interaction" : "interacts with", "SUID" : 13762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13766", "source" : "5609", "target" : "5689", "shared_name" : "4519 (interacts with) 27089", "name" : "4519 (interacts with) 27089", "interaction" : "interacts with", "SUID" : 13766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13878", "source" : "5605", "target" : "3973", "shared_name" : "51601 (interacts with) 55572", "name" : "51601 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 13878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13874", "source" : "5605", "target" : "349", "shared_name" : "51601 (interacts with) 60386", "name" : "51601 (interacts with) 60386", "interaction" : "interacts with", "SUID" : 13874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13870", "source" : "5605", "target" : "721", "shared_name" : "51601 (interacts with) 79731", "name" : "51601 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 13870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13866", "source" : "5605", "target" : "4101", "shared_name" : "51601 (interacts with) 65260", "name" : "51601 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 13866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13862", "source" : "5605", "target" : "2009", "shared_name" : "51601 (interacts with) 79133", "name" : "51601 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 13862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13858", "source" : "5605", "target" : "1669", "shared_name" : "51601 (interacts with) 6390", "name" : "51601 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 13858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13854", "source" : "5605", "target" : "6001", "shared_name" : "51601 (interacts with) 55157", "name" : "51601 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 13854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13850", "source" : "5605", "target" : "4141", "shared_name" : "51601 (interacts with) 617", "name" : "51601 (interacts with) 617", "interaction" : "interacts with", "SUID" : 13850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13846", "source" : "5605", "target" : "493", "shared_name" : "51601 (interacts with) 594", "name" : "51601 (interacts with) 594", "interaction" : "interacts with", "SUID" : 13846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13842", "source" : "5605", "target" : "693", "shared_name" : "51601 (interacts with) 7296", "name" : "51601 (interacts with) 7296", "interaction" : "interacts with", "SUID" : 13842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13838", "source" : "5605", "target" : "1485", "shared_name" : "51601 (interacts with) 8050", "name" : "51601 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 13838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13834", "source" : "5605", "target" : "4401", "shared_name" : "51601 (interacts with) 55526", "name" : "51601 (interacts with) 55526", "interaction" : "interacts with", "SUID" : 13834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13830", "source" : "5605", "target" : "3633", "shared_name" : "51601 (interacts with) 51067", "name" : "51601 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 13830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13826", "source" : "5605", "target" : "1477", "shared_name" : "51601 (interacts with) 10352", "name" : "51601 (interacts with) 10352", "interaction" : "interacts with", "SUID" : 13826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13822", "source" : "5605", "target" : "485", "shared_name" : "51601 (interacts with) 593", "name" : "51601 (interacts with) 593", "interaction" : "interacts with", "SUID" : 13822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13818", "source" : "5605", "target" : "1581", "shared_name" : "51601 (interacts with) 7407", "name" : "51601 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 13818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13814", "source" : "5605", "target" : "1089", "shared_name" : "51601 (interacts with) 5917", "name" : "51601 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 13814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13810", "source" : "5605", "target" : "4621", "shared_name" : "51601 (interacts with) 57038", "name" : "51601 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 13810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13806", "source" : "5605", "target" : "4693", "shared_name" : "51601 (interacts with) 6301", "name" : "51601 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 13806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13802", "source" : "5605", "target" : "4993", "shared_name" : "51601 (interacts with) 8622", "name" : "51601 (interacts with) 8622", "interaction" : "interacts with", "SUID" : 13802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13798", "source" : "5605", "target" : "5841", "shared_name" : "51601 (interacts with) 10846", "name" : "51601 (interacts with) 10846", "interaction" : "interacts with", "SUID" : 13798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13794", "source" : "5605", "target" : "6049", "shared_name" : "51601 (interacts with) 25973", "name" : "51601 (interacts with) 25973", "interaction" : "interacts with", "SUID" : 13794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13790", "source" : "5605", "target" : "741", "shared_name" : "51601 (interacts with) 4830", "name" : "51601 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 13790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13786", "source" : "5605", "target" : "2881", "shared_name" : "51601 (interacts with) 5160", "name" : "51601 (interacts with) 5160", "interaction" : "interacts with", "SUID" : 13786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13782", "source" : "5605", "target" : "3421", "shared_name" : "51601 (interacts with) 4967", "name" : "51601 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 13782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13778", "source" : "5605", "target" : "3641", "shared_name" : "51601 (interacts with) 4141", "name" : "51601 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 13778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13774", "source" : "5605", "target" : "1181", "shared_name" : "51601 (interacts with) 51684", "name" : "51601 (interacts with) 51684", "interaction" : "interacts with", "SUID" : 13774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13770", "source" : "5605", "target" : "489", "shared_name" : "51601 (interacts with) 1629", "name" : "51601 (interacts with) 1629", "interaction" : "interacts with", "SUID" : 13770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13882", "source" : "5601", "target" : "3329", "shared_name" : "84833 (interacts with) 5824", "name" : "84833 (interacts with) 5824", "interaction" : "interacts with", "SUID" : 13882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13974", "source" : "5597", "target" : "1749", "shared_name" : "22934 (interacts with) 728294", "name" : "22934 (interacts with) 728294", "interaction" : "interacts with", "SUID" : 13974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13970", "source" : "5597", "target" : "2393", "shared_name" : "22934 (interacts with) 6683", "name" : "22934 (interacts with) 6683", "interaction" : "interacts with", "SUID" : 13970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13966", "source" : "5597", "target" : "4309", "shared_name" : "22934 (interacts with) 5654", "name" : "22934 (interacts with) 5654", "interaction" : "interacts with", "SUID" : 13966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13962", "source" : "5597", "target" : "537", "shared_name" : "22934 (interacts with) 27429", "name" : "22934 (interacts with) 27429", "interaction" : "interacts with", "SUID" : 13962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13958", "source" : "5597", "target" : "4869", "shared_name" : "22934 (interacts with) 92935", "name" : "22934 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 13958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13954", "source" : "5597", "target" : "4665", "shared_name" : "22934 (interacts with) 538", "name" : "22934 (interacts with) 538", "interaction" : "interacts with", "SUID" : 13954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13950", "source" : "5597", "target" : "285", "shared_name" : "22934 (interacts with) 5238", "name" : "22934 (interacts with) 5238", "interaction" : "interacts with", "SUID" : 13950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13946", "source" : "5597", "target" : "1669", "shared_name" : "22934 (interacts with) 6390", "name" : "22934 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 13946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13942", "source" : "5597", "target" : "3537", "shared_name" : "22934 (interacts with) 501", "name" : "22934 (interacts with) 501", "interaction" : "interacts with", "SUID" : 13942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13938", "source" : "5597", "target" : "3633", "shared_name" : "22934 (interacts with) 51067", "name" : "22934 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 13938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13934", "source" : "5597", "target" : "3773", "shared_name" : "22934 (interacts with) 540", "name" : "22934 (interacts with) 540", "interaction" : "interacts with", "SUID" : 13934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13930", "source" : "5597", "target" : "5109", "shared_name" : "22934 (interacts with) 790", "name" : "22934 (interacts with) 790", "interaction" : "interacts with", "SUID" : 13930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13926", "source" : "5597", "target" : "2945", "shared_name" : "22934 (interacts with) 471", "name" : "22934 (interacts with) 471", "interaction" : "interacts with", "SUID" : 13926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13922", "source" : "5597", "target" : "4617", "shared_name" : "22934 (interacts with) 26227", "name" : "22934 (interacts with) 26227", "interaction" : "interacts with", "SUID" : 13922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13918", "source" : "5597", "target" : "1713", "shared_name" : "22934 (interacts with) 5631", "name" : "22934 (interacts with) 5631", "interaction" : "interacts with", "SUID" : 13918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13914", "source" : "5597", "target" : "245", "shared_name" : "22934 (interacts with) 2936", "name" : "22934 (interacts with) 2936", "interaction" : "interacts with", "SUID" : 13914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13910", "source" : "5597", "target" : "693", "shared_name" : "22934 (interacts with) 7296", "name" : "22934 (interacts with) 7296", "interaction" : "interacts with", "SUID" : 13910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13906", "source" : "5597", "target" : "1585", "shared_name" : "22934 (interacts with) 80347", "name" : "22934 (interacts with) 80347", "interaction" : "interacts with", "SUID" : 13906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13902", "source" : "5597", "target" : "1189", "shared_name" : "22934 (interacts with) 7915", "name" : "22934 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 13902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13898", "source" : "5597", "target" : "3161", "shared_name" : "22934 (interacts with) 2821", "name" : "22934 (interacts with) 2821", "interaction" : "interacts with", "SUID" : 13898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13894", "source" : "5597", "target" : "721", "shared_name" : "22934 (interacts with) 79731", "name" : "22934 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 13894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13890", "source" : "5597", "target" : "1809", "shared_name" : "22934 (interacts with) 6548", "name" : "22934 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 13890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13886", "source" : "5597", "target" : "1681", "shared_name" : "22934 (interacts with) 9990", "name" : "22934 (interacts with) 9990", "interaction" : "interacts with", "SUID" : 13886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13998", "source" : "5593", "target" : "4169", "shared_name" : "875 (interacts with) 10993", "name" : "875 (interacts with) 10993", "interaction" : "interacts with", "SUID" : 13998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13994", "source" : "5593", "target" : "409", "shared_name" : "875 (interacts with) 10558", "name" : "875 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 13994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13990", "source" : "5593", "target" : "3325", "shared_name" : "875 (interacts with) 9517", "name" : "875 (interacts with) 9517", "interaction" : "interacts with", "SUID" : 13990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13986", "source" : "5593", "target" : "4273", "shared_name" : "875 (interacts with) 4548", "name" : "875 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 13986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13982", "source" : "5593", "target" : "1957", "shared_name" : "875 (interacts with) 1312", "name" : "875 (interacts with) 1312", "interaction" : "interacts with", "SUID" : 13982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "13978", "source" : "5593", "target" : "5633", "shared_name" : "875 (interacts with) 102724560", "name" : "875 (interacts with) 102724560", "interaction" : "interacts with", "SUID" : 13978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14002", "source" : "5589", "target" : "2573", "shared_name" : "4513 (interacts with) 4514", "name" : "4513 (interacts with) 4514", "interaction" : "interacts with", "SUID" : 14002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14010", "source" : "5585", "target" : "2573", "shared_name" : "4512 (interacts with) 4514", "name" : "4512 (interacts with) 4514", "interaction" : "interacts with", "SUID" : 14010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14006", "source" : "5585", "target" : "5589", "shared_name" : "4512 (interacts with) 4513", "name" : "4512 (interacts with) 4513", "interaction" : "interacts with", "SUID" : 14006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14014", "source" : "5581", "target" : "3845", "shared_name" : "64116 (interacts with) 10479", "name" : "64116 (interacts with) 10479", "interaction" : "interacts with", "SUID" : 14014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14134", "source" : "5577", "target" : "3685", "shared_name" : "3091 (interacts with) 3265", "name" : "3091 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 14134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14130", "source" : "5577", "target" : "3017", "shared_name" : "3091 (interacts with) 4790", "name" : "3091 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 14130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14126", "source" : "5577", "target" : "5225", "shared_name" : "3091 (interacts with) 5290", "name" : "3091 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 14126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14122", "source" : "5577", "target" : "4213", "shared_name" : "3091 (interacts with) 5295", "name" : "3091 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 14122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14118", "source" : "5577", "target" : "4949", "shared_name" : "3091 (interacts with) 5970", "name" : "3091 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 14118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14114", "source" : "5577", "target" : "2613", "shared_name" : "3091 (interacts with) 472", "name" : "3091 (interacts with) 472", "interaction" : "interacts with", "SUID" : 14114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14110", "source" : "5577", "target" : "981", "shared_name" : "3091 (interacts with) 7157", "name" : "3091 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 14110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14106", "source" : "5577", "target" : "2005", "shared_name" : "3091 (interacts with) 4846", "name" : "3091 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 14106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14102", "source" : "5577", "target" : "2793", "shared_name" : "3091 (interacts with) 8894", "name" : "3091 (interacts with) 8894", "interaction" : "interacts with", "SUID" : 14102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14098", "source" : "5577", "target" : "841", "shared_name" : "3091 (interacts with) 8890", "name" : "3091 (interacts with) 8890", "interaction" : "interacts with", "SUID" : 14098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14094", "source" : "5577", "target" : "4837", "shared_name" : "3091 (interacts with) 8891", "name" : "3091 (interacts with) 8891", "interaction" : "interacts with", "SUID" : 14094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14090", "source" : "5577", "target" : "837", "shared_name" : "3091 (interacts with) 8892", "name" : "3091 (interacts with) 8892", "interaction" : "interacts with", "SUID" : 14090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14086", "source" : "5577", "target" : "4149", "shared_name" : "3091 (interacts with) 8893", "name" : "3091 (interacts with) 8893", "interaction" : "interacts with", "SUID" : 14086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14082", "source" : "5577", "target" : "1493", "shared_name" : "3091 (interacts with) 7428", "name" : "3091 (interacts with) 7428", "interaction" : "interacts with", "SUID" : 14082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14078", "source" : "5577", "target" : "2101", "shared_name" : "3091 (interacts with) 3486", "name" : "3091 (interacts with) 3486", "interaction" : "interacts with", "SUID" : 14078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14074", "source" : "5577", "target" : "2089", "shared_name" : "3091 (interacts with) 3939", "name" : "3091 (interacts with) 3939", "interaction" : "interacts with", "SUID" : 14074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14070", "source" : "5577", "target" : "957", "shared_name" : "3091 (interacts with) 5230", "name" : "3091 (interacts with) 5230", "interaction" : "interacts with", "SUID" : 14070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14066", "source" : "5577", "target" : "1605", "shared_name" : "3091 (interacts with) 6648", "name" : "3091 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 14066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14062", "source" : "5577", "target" : "3365", "shared_name" : "3091 (interacts with) 29843", "name" : "3091 (interacts with) 29843", "interaction" : "interacts with", "SUID" : 14062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14058", "source" : "5577", "target" : "885", "shared_name" : "3091 (interacts with) 6347", "name" : "3091 (interacts with) 6347", "interaction" : "interacts with", "SUID" : 14058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14054", "source" : "5577", "target" : "5329", "shared_name" : "3091 (interacts with) 4907", "name" : "3091 (interacts with) 4907", "interaction" : "interacts with", "SUID" : 14054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14050", "source" : "5577", "target" : "1621", "shared_name" : "3091 (interacts with) 1432", "name" : "3091 (interacts with) 1432", "interaction" : "interacts with", "SUID" : 14050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14046", "source" : "5577", "target" : "973", "shared_name" : "3091 (interacts with) 5595", "name" : "3091 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 14046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14042", "source" : "5577", "target" : "2937", "shared_name" : "3091 (interacts with) 1457", "name" : "3091 (interacts with) 1457", "interaction" : "interacts with", "SUID" : 14042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14038", "source" : "5577", "target" : "2597", "shared_name" : "3091 (interacts with) 2056", "name" : "3091 (interacts with) 2056", "interaction" : "interacts with", "SUID" : 14038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14034", "source" : "5577", "target" : "2213", "shared_name" : "3091 (interacts with) 4851", "name" : "3091 (interacts with) 4851", "interaction" : "interacts with", "SUID" : 14034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14030", "source" : "5577", "target" : "5081", "shared_name" : "3091 (interacts with) 5594", "name" : "3091 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 14030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14026", "source" : "5577", "target" : "4981", "shared_name" : "3091 (interacts with) 6774", "name" : "3091 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 14026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14022", "source" : "5577", "target" : "5473", "shared_name" : "3091 (interacts with) 6095", "name" : "3091 (interacts with) 6095", "interaction" : "interacts with", "SUID" : 14022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14018", "source" : "5577", "target" : "2489", "shared_name" : "3091 (interacts with) 4692", "name" : "3091 (interacts with) 4692", "interaction" : "interacts with", "SUID" : 14018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14138", "source" : "5573", "target" : "5901", "shared_name" : "84061 (interacts with) 11277", "name" : "84061 (interacts with) 11277", "interaction" : "interacts with", "SUID" : 14138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14278", "source" : "5569", "target" : "1465", "shared_name" : "59345 (interacts with) 9839", "name" : "59345 (interacts with) 9839", "interaction" : "interacts with", "SUID" : 14278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14274", "source" : "5569", "target" : "3477", "shared_name" : "59345 (interacts with) 5744", "name" : "59345 (interacts with) 5744", "interaction" : "interacts with", "SUID" : 14274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14270", "source" : "5569", "target" : "4089", "shared_name" : "59345 (interacts with) 5173", "name" : "59345 (interacts with) 5173", "interaction" : "interacts with", "SUID" : 14270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14266", "source" : "5569", "target" : "3121", "shared_name" : "59345 (interacts with) 3356", "name" : "59345 (interacts with) 3356", "interaction" : "interacts with", "SUID" : 14266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14262", "source" : "5569", "target" : "3009", "shared_name" : "59345 (interacts with) 2917", "name" : "59345 (interacts with) 2917", "interaction" : "interacts with", "SUID" : 14262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14258", "source" : "5569", "target" : "5073", "shared_name" : "59345 (interacts with) 7305", "name" : "59345 (interacts with) 7305", "interaction" : "interacts with", "SUID" : 14258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14254", "source" : "5569", "target" : "725", "shared_name" : "59345 (interacts with) 54209", "name" : "59345 (interacts with) 54209", "interaction" : "interacts with", "SUID" : 14254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14250", "source" : "5569", "target" : "2969", "shared_name" : "59345 (interacts with) 8867", "name" : "59345 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 14250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14246", "source" : "5569", "target" : "637", "shared_name" : "59345 (interacts with) 6654", "name" : "59345 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 14246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14242", "source" : "5569", "target" : "1069", "shared_name" : "59345 (interacts with) 5879", "name" : "59345 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 14242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14238", "source" : "5569", "target" : "6101", "shared_name" : "59345 (interacts with) 5582", "name" : "59345 (interacts with) 5582", "interaction" : "interacts with", "SUID" : 14238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14234", "source" : "5569", "target" : "1193", "shared_name" : "59345 (interacts with) 5660", "name" : "59345 (interacts with) 5660", "interaction" : "interacts with", "SUID" : 14234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14230", "source" : "5569", "target" : "817", "shared_name" : "59345 (interacts with) 5728", "name" : "59345 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 14230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14226", "source" : "5569", "target" : "5145", "shared_name" : "59345 (interacts with) 23236", "name" : "59345 (interacts with) 23236", "interaction" : "interacts with", "SUID" : 14226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14222", "source" : "5569", "target" : "3465", "shared_name" : "59345 (interacts with) 5296", "name" : "59345 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 14222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14218", "source" : "5569", "target" : "4213", "shared_name" : "59345 (interacts with) 5295", "name" : "59345 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 14218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14214", "source" : "5569", "target" : "2173", "shared_name" : "59345 (interacts with) 5159", "name" : "59345 (interacts with) 5159", "interaction" : "interacts with", "SUID" : 14214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14210", "source" : "5569", "target" : "4293", "shared_name" : "59345 (interacts with) 5156", "name" : "59345 (interacts with) 5156", "interaction" : "interacts with", "SUID" : 14210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14206", "source" : "5569", "target" : "5225", "shared_name" : "59345 (interacts with) 5290", "name" : "59345 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 14206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14202", "source" : "5569", "target" : "6005", "shared_name" : "59345 (interacts with) 4988", "name" : "59345 (interacts with) 4988", "interaction" : "interacts with", "SUID" : 14202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14198", "source" : "5569", "target" : "5149", "shared_name" : "59345 (interacts with) 5058", "name" : "59345 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 14198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14194", "source" : "5569", "target" : "5973", "shared_name" : "59345 (interacts with) 5155", "name" : "59345 (interacts with) 5155", "interaction" : "interacts with", "SUID" : 14194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14190", "source" : "5569", "target" : "4209", "shared_name" : "59345 (interacts with) 4915", "name" : "59345 (interacts with) 4915", "interaction" : "interacts with", "SUID" : 14190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14186", "source" : "5569", "target" : "4373", "shared_name" : "59345 (interacts with) 4922", "name" : "59345 (interacts with) 4922", "interaction" : "interacts with", "SUID" : 14186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14182", "source" : "5569", "target" : "2429", "shared_name" : "59345 (interacts with) 4952", "name" : "59345 (interacts with) 4952", "interaction" : "interacts with", "SUID" : 14182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14178", "source" : "5569", "target" : "4385", "shared_name" : "59345 (interacts with) 3084", "name" : "59345 (interacts with) 3084", "interaction" : "interacts with", "SUID" : 14178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14174", "source" : "5569", "target" : "5617", "shared_name" : "59345 (interacts with) 4852", "name" : "59345 (interacts with) 4852", "interaction" : "interacts with", "SUID" : 14174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14170", "source" : "5569", "target" : "2773", "shared_name" : "59345 (interacts with) 4908", "name" : "59345 (interacts with) 4908", "interaction" : "interacts with", "SUID" : 14170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14166", "source" : "5569", "target" : "3457", "shared_name" : "59345 (interacts with) 22914", "name" : "59345 (interacts with) 22914", "interaction" : "interacts with", "SUID" : 14166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14162", "source" : "5569", "target" : "1861", "shared_name" : "59345 (interacts with) 3708", "name" : "59345 (interacts with) 3708", "interaction" : "interacts with", "SUID" : 14162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14158", "source" : "5569", "target" : "1209", "shared_name" : "59345 (interacts with) 51763", "name" : "59345 (interacts with) 51763", "interaction" : "interacts with", "SUID" : 14158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14154", "source" : "5569", "target" : "4457", "shared_name" : "59345 (interacts with) 3082", "name" : "59345 (interacts with) 3082", "interaction" : "interacts with", "SUID" : 14154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14150", "source" : "5569", "target" : "1989", "shared_name" : "59345 (interacts with) 3060", "name" : "59345 (interacts with) 3060", "interaction" : "interacts with", "SUID" : 14150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14146", "source" : "5569", "target" : "3393", "shared_name" : "59345 (interacts with) 9402", "name" : "59345 (interacts with) 9402", "interaction" : "interacts with", "SUID" : 14146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14142", "source" : "5569", "target" : "3557", "shared_name" : "59345 (interacts with) 2911", "name" : "59345 (interacts with) 2911", "interaction" : "interacts with", "SUID" : 14142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14534", "source" : "5565", "target" : "737", "shared_name" : "217 (interacts with) 2643", "name" : "217 (interacts with) 2643", "interaction" : "interacts with", "SUID" : 14534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14530", "source" : "5565", "target" : "4941", "shared_name" : "217 (interacts with) 6342", "name" : "217 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 14530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14526", "source" : "5565", "target" : "1669", "shared_name" : "217 (interacts with) 6390", "name" : "217 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 14526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14522", "source" : "5565", "target" : "2337", "shared_name" : "217 (interacts with) 28976", "name" : "217 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 14522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14518", "source" : "5565", "target" : "2421", "shared_name" : "217 (interacts with) 2673", "name" : "217 (interacts with) 2673", "interaction" : "interacts with", "SUID" : 14518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14514", "source" : "5565", "target" : "3425", "shared_name" : "217 (interacts with) 8803", "name" : "217 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 14514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14510", "source" : "5565", "target" : "3337", "shared_name" : "217 (interacts with) 2639", "name" : "217 (interacts with) 2639", "interaction" : "interacts with", "SUID" : 14510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14506", "source" : "5565", "target" : "3541", "shared_name" : "217 (interacts with) 4191", "name" : "217 (interacts with) 4191", "interaction" : "interacts with", "SUID" : 14506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14502", "source" : "5565", "target" : "2089", "shared_name" : "217 (interacts with) 3939", "name" : "217 (interacts with) 3939", "interaction" : "interacts with", "SUID" : 14502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14498", "source" : "5565", "target" : "5213", "shared_name" : "217 (interacts with) 2271", "name" : "217 (interacts with) 2271", "interaction" : "interacts with", "SUID" : 14498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14494", "source" : "5565", "target" : "1525", "shared_name" : "217 (interacts with) 3295", "name" : "217 (interacts with) 3295", "interaction" : "interacts with", "SUID" : 14494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14490", "source" : "5565", "target" : "2025", "shared_name" : "217 (interacts with) 549", "name" : "217 (interacts with) 549", "interaction" : "interacts with", "SUID" : 14490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14486", "source" : "5565", "target" : "5797", "shared_name" : "217 (interacts with) 3030", "name" : "217 (interacts with) 3030", "interaction" : "interacts with", "SUID" : 14486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14482", "source" : "5565", "target" : "317", "shared_name" : "217 (interacts with) 3176", "name" : "217 (interacts with) 3176", "interaction" : "interacts with", "SUID" : 14482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14478", "source" : "5565", "target" : "625", "shared_name" : "217 (interacts with) 8942", "name" : "217 (interacts with) 8942", "interaction" : "interacts with", "SUID" : 14478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14474", "source" : "5565", "target" : "1461", "shared_name" : "217 (interacts with) 5832", "name" : "217 (interacts with) 5832", "interaction" : "interacts with", "SUID" : 14474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14470", "source" : "5565", "target" : "1189", "shared_name" : "217 (interacts with) 7915", "name" : "217 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 14470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14466", "source" : "5565", "target" : "4745", "shared_name" : "217 (interacts with) 35", "name" : "217 (interacts with) 35", "interaction" : "interacts with", "SUID" : 14466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14462", "source" : "5565", "target" : "5689", "shared_name" : "217 (interacts with) 27089", "name" : "217 (interacts with) 27089", "interaction" : "interacts with", "SUID" : 14462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14458", "source" : "5565", "target" : "2989", "shared_name" : "217 (interacts with) 224", "name" : "217 (interacts with) 224", "interaction" : "interacts with", "SUID" : 14458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14454", "source" : "5565", "target" : "3537", "shared_name" : "217 (interacts with) 501", "name" : "217 (interacts with) 501", "interaction" : "interacts with", "SUID" : 14454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14450", "source" : "5565", "target" : "4045", "shared_name" : "217 (interacts with) 29920", "name" : "217 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 14450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14446", "source" : "5565", "target" : "3501", "shared_name" : "217 (interacts with) 5831", "name" : "217 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 14446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14442", "source" : "5565", "target" : "1437", "shared_name" : "217 (interacts with) 80025", "name" : "217 (interacts with) 80025", "interaction" : "interacts with", "SUID" : 14442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14438", "source" : "5565", "target" : "1721", "shared_name" : "217 (interacts with) 51807", "name" : "217 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 14438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14434", "source" : "5565", "target" : "3929", "shared_name" : "217 (interacts with) 5860", "name" : "217 (interacts with) 5860", "interaction" : "interacts with", "SUID" : 14434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14430", "source" : "5565", "target" : "5821", "shared_name" : "217 (interacts with) 4724", "name" : "217 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 14430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14426", "source" : "5565", "target" : "4945", "shared_name" : "217 (interacts with) 4722", "name" : "217 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 14426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14422", "source" : "5565", "target" : "2753", "shared_name" : "217 (interacts with) 4720", "name" : "217 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 14422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14418", "source" : "5565", "target" : "4017", "shared_name" : "217 (interacts with) 4719", "name" : "217 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 14418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14414", "source" : "5565", "target" : "2689", "shared_name" : "217 (interacts with) 4715", "name" : "217 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 14414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14410", "source" : "5565", "target" : "5845", "shared_name" : "217 (interacts with) 4714", "name" : "217 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 14410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14406", "source" : "5565", "target" : "1869", "shared_name" : "217 (interacts with) 4729", "name" : "217 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 14406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14402", "source" : "5565", "target" : "1573", "shared_name" : "217 (interacts with) 4723", "name" : "217 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 14402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14398", "source" : "5565", "target" : "2797", "shared_name" : "217 (interacts with) 4728", "name" : "217 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 14398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14394", "source" : "5565", "target" : "4069", "shared_name" : "217 (interacts with) 374291", "name" : "217 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 14394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14390", "source" : "5565", "target" : "5833", "shared_name" : "217 (interacts with) 4726", "name" : "217 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 14390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14386", "source" : "5565", "target" : "3617", "shared_name" : "217 (interacts with) 4704", "name" : "217 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 14386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14382", "source" : "5565", "target" : "2801", "shared_name" : "217 (interacts with) 4700", "name" : "217 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 14382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14378", "source" : "5565", "target" : "5853", "shared_name" : "217 (interacts with) 4709", "name" : "217 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 14378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14374", "source" : "5565", "target" : "2405", "shared_name" : "217 (interacts with) 3658", "name" : "217 (interacts with) 3658", "interaction" : "interacts with", "SUID" : 14374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14370", "source" : "5565", "target" : "1133", "shared_name" : "217 (interacts with) 3418", "name" : "217 (interacts with) 3418", "interaction" : "interacts with", "SUID" : 14370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14366", "source" : "5565", "target" : "5017", "shared_name" : "217 (interacts with) 3417", "name" : "217 (interacts with) 3417", "interaction" : "interacts with", "SUID" : 14366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14362", "source" : "5565", "target" : "2741", "shared_name" : "217 (interacts with) 4695", "name" : "217 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 14362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14358", "source" : "5565", "target" : "5857", "shared_name" : "217 (interacts with) 4694", "name" : "217 (interacts with) 4694", "interaction" : "interacts with", "SUID" : 14358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14354", "source" : "5565", "target" : "2757", "shared_name" : "217 (interacts with) 51079", "name" : "217 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 14354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14350", "source" : "5565", "target" : "5553", "shared_name" : "217 (interacts with) 55967", "name" : "217 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 14350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14346", "source" : "5565", "target" : "2825", "shared_name" : "217 (interacts with) 126328", "name" : "217 (interacts with) 126328", "interaction" : "interacts with", "SUID" : 14346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14342", "source" : "5565", "target" : "4061", "shared_name" : "217 (interacts with) 4705", "name" : "217 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 14342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14338", "source" : "5565", "target" : "2045", "shared_name" : "217 (interacts with) 51102", "name" : "217 (interacts with) 51102", "interaction" : "interacts with", "SUID" : 14338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14334", "source" : "5565", "target" : "321", "shared_name" : "217 (interacts with) 1593", "name" : "217 (interacts with) 1593", "interaction" : "interacts with", "SUID" : 14334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14330", "source" : "5565", "target" : "2785", "shared_name" : "217 (interacts with) 1351", "name" : "217 (interacts with) 1351", "interaction" : "interacts with", "SUID" : 14330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14326", "source" : "5565", "target" : "5529", "shared_name" : "217 (interacts with) 2875", "name" : "217 (interacts with) 2875", "interaction" : "interacts with", "SUID" : 14326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14322", "source" : "5565", "target" : "4253", "shared_name" : "217 (interacts with) 84706", "name" : "217 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 14322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14318", "source" : "5565", "target" : "937", "shared_name" : "217 (interacts with) 2110", "name" : "217 (interacts with) 2110", "interaction" : "interacts with", "SUID" : 14318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14314", "source" : "5565", "target" : "6093", "shared_name" : "217 (interacts with) 953", "name" : "217 (interacts with) 953", "interaction" : "interacts with", "SUID" : 14314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14310", "source" : "5565", "target" : "297", "shared_name" : "217 (interacts with) 1339", "name" : "217 (interacts with) 1339", "interaction" : "interacts with", "SUID" : 14310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14306", "source" : "5565", "target" : "3413", "shared_name" : "217 (interacts with) 1337", "name" : "217 (interacts with) 1337", "interaction" : "interacts with", "SUID" : 14306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14302", "source" : "5565", "target" : "1085", "shared_name" : "217 (interacts with) 9377", "name" : "217 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 14302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14298", "source" : "5565", "target" : "5385", "shared_name" : "217 (interacts with) 1349", "name" : "217 (interacts with) 1349", "interaction" : "interacts with", "SUID" : 14298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14294", "source" : "5565", "target" : "5685", "shared_name" : "217 (interacts with) 1340", "name" : "217 (interacts with) 1340", "interaction" : "interacts with", "SUID" : 14294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14290", "source" : "5565", "target" : "6149", "shared_name" : "217 (interacts with) 335", "name" : "217 (interacts with) 335", "interaction" : "interacts with", "SUID" : 14290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14286", "source" : "5565", "target" : "2029", "shared_name" : "217 (interacts with) 4329", "name" : "217 (interacts with) 4329", "interaction" : "interacts with", "SUID" : 14286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14282", "source" : "5565", "target" : "5649", "shared_name" : "217 (interacts with) 5265", "name" : "217 (interacts with) 5265", "interaction" : "interacts with", "SUID" : 14282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14586", "source" : "5561", "target" : "3605", "shared_name" : "4247 (interacts with) 7841", "name" : "4247 (interacts with) 7841", "interaction" : "interacts with", "SUID" : 14586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14582", "source" : "5561", "target" : "3489", "shared_name" : "4247 (interacts with) 54344", "name" : "4247 (interacts with) 54344", "interaction" : "interacts with", "SUID" : 14582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14578", "source" : "5561", "target" : "1697", "shared_name" : "4247 (interacts with) 8818", "name" : "4247 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 14578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14574", "source" : "5561", "target" : "3037", "shared_name" : "4247 (interacts with) 8813", "name" : "4247 (interacts with) 8813", "interaction" : "interacts with", "SUID" : 14574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14570", "source" : "5561", "target" : "1797", "shared_name" : "4247 (interacts with) 85365", "name" : "4247 (interacts with) 85365", "interaction" : "interacts with", "SUID" : 14570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14566", "source" : "5561", "target" : "6017", "shared_name" : "4247 (interacts with) 79796", "name" : "4247 (interacts with) 79796", "interaction" : "interacts with", "SUID" : 14566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14562", "source" : "5561", "target" : "289", "shared_name" : "4247 (interacts with) 56052", "name" : "4247 (interacts with) 56052", "interaction" : "interacts with", "SUID" : 14562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14558", "source" : "5561", "target" : "6133", "shared_name" : "4247 (interacts with) 54658", "name" : "4247 (interacts with) 54658", "interaction" : "interacts with", "SUID" : 14558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14554", "source" : "5561", "target" : "3705", "shared_name" : "4247 (interacts with) 87178", "name" : "4247 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 14554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14550", "source" : "5561", "target" : "4481", "shared_name" : "4247 (interacts with) 55624", "name" : "4247 (interacts with) 55624", "interaction" : "interacts with", "SUID" : 14550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14546", "source" : "5561", "target" : "1545", "shared_name" : "4247 (interacts with) 5277", "name" : "4247 (interacts with) 5277", "interaction" : "interacts with", "SUID" : 14546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14542", "source" : "5561", "target" : "4989", "shared_name" : "4247 (interacts with) 51227", "name" : "4247 (interacts with) 51227", "interaction" : "interacts with", "SUID" : 14542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14538", "source" : "5561", "target" : "985", "shared_name" : "4247 (interacts with) 9091", "name" : "4247 (interacts with) 9091", "interaction" : "interacts with", "SUID" : 14538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14718", "source" : "5557", "target" : "997", "shared_name" : "9254 (interacts with) 7431", "name" : "9254 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 14718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14714", "source" : "5557", "target" : "5989", "shared_name" : "9254 (interacts with) 7273", "name" : "9254 (interacts with) 7273", "interaction" : "interacts with", "SUID" : 14714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14710", "source" : "5557", "target" : "2581", "shared_name" : "9254 (interacts with) 7170", "name" : "9254 (interacts with) 7170", "interaction" : "interacts with", "SUID" : 14710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14706", "source" : "5557", "target" : "609", "shared_name" : "9254 (interacts with) 6812", "name" : "9254 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 14706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14702", "source" : "5557", "target" : "5785", "shared_name" : "9254 (interacts with) 6857", "name" : "9254 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 14702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14698", "source" : "5557", "target" : "5929", "shared_name" : "9254 (interacts with) 6616", "name" : "9254 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 14698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14694", "source" : "5557", "target" : "1297", "shared_name" : "9254 (interacts with) 6678", "name" : "9254 (interacts with) 6678", "interaction" : "interacts with", "SUID" : 14694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14690", "source" : "5557", "target" : "3853", "shared_name" : "9254 (interacts with) 6786", "name" : "9254 (interacts with) 6786", "interaction" : "interacts with", "SUID" : 14690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14686", "source" : "5557", "target" : "5581", "shared_name" : "9254 (interacts with) 64116", "name" : "9254 (interacts with) 64116", "interaction" : "interacts with", "SUID" : 14686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14682", "source" : "5557", "target" : "6085", "shared_name" : "9254 (interacts with) 23516", "name" : "9254 (interacts with) 23516", "interaction" : "interacts with", "SUID" : 14682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14678", "source" : "5557", "target" : "2873", "shared_name" : "9254 (interacts with) 6261", "name" : "9254 (interacts with) 6261", "interaction" : "interacts with", "SUID" : 14678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14674", "source" : "5557", "target" : "3593", "shared_name" : "9254 (interacts with) 5530", "name" : "9254 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 14674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14670", "source" : "5557", "target" : "4885", "shared_name" : "9254 (interacts with) 5340", "name" : "9254 (interacts with) 5340", "interaction" : "interacts with", "SUID" : 14670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14666", "source" : "5557", "target" : "3177", "shared_name" : "9254 (interacts with) 5321", "name" : "9254 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 14666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14662", "source" : "5557", "target" : "5337", "shared_name" : "9254 (interacts with) 84876", "name" : "9254 (interacts with) 84876", "interaction" : "interacts with", "SUID" : 14662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14658", "source" : "5557", "target" : "565", "shared_name" : "9254 (interacts with) 4772", "name" : "9254 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 14658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14654", "source" : "5557", "target" : "2977", "shared_name" : "9254 (interacts with) 4747", "name" : "9254 (interacts with) 4747", "interaction" : "interacts with", "SUID" : 14654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14650", "source" : "5557", "target" : "1357", "shared_name" : "9254 (interacts with) 58498", "name" : "9254 (interacts with) 58498", "interaction" : "interacts with", "SUID" : 14650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14646", "source" : "5557", "target" : "1261", "shared_name" : "9254 (interacts with) 57192", "name" : "9254 (interacts with) 57192", "interaction" : "interacts with", "SUID" : 14646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14642", "source" : "5557", "target" : "1777", "shared_name" : "9254 (interacts with) 4153", "name" : "9254 (interacts with) 4153", "interaction" : "interacts with", "SUID" : 14642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14638", "source" : "5557", "target" : "1861", "shared_name" : "9254 (interacts with) 3708", "name" : "9254 (interacts with) 3708", "interaction" : "interacts with", "SUID" : 14638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14634", "source" : "5557", "target" : "5913", "shared_name" : "9254 (interacts with) 3767", "name" : "9254 (interacts with) 3767", "interaction" : "interacts with", "SUID" : 14634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14630", "source" : "5557", "target" : "3149", "shared_name" : "9254 (interacts with) 3630", "name" : "9254 (interacts with) 3630", "interaction" : "interacts with", "SUID" : 14630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14626", "source" : "5557", "target" : "4509", "shared_name" : "9254 (interacts with) 2902", "name" : "9254 (interacts with) 2902", "interaction" : "interacts with", "SUID" : 14626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14622", "source" : "5557", "target" : "2329", "shared_name" : "9254 (interacts with) 2904", "name" : "9254 (interacts with) 2904", "interaction" : "interacts with", "SUID" : 14622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14618", "source" : "5557", "target" : "5365", "shared_name" : "9254 (interacts with) 2893", "name" : "9254 (interacts with) 2893", "interaction" : "interacts with", "SUID" : 14618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14614", "source" : "5557", "target" : "5569", "shared_name" : "9254 (interacts with) 59345", "name" : "9254 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 14614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14610", "source" : "5557", "target" : "6097", "shared_name" : "9254 (interacts with) 1756", "name" : "9254 (interacts with) 1756", "interaction" : "interacts with", "SUID" : 14610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14606", "source" : "5557", "target" : "4893", "shared_name" : "9254 (interacts with) 10815", "name" : "9254 (interacts with) 10815", "interaction" : "interacts with", "SUID" : 14606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14602", "source" : "5557", "target" : "3661", "shared_name" : "9254 (interacts with) 1134", "name" : "9254 (interacts with) 1134", "interaction" : "interacts with", "SUID" : 14602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14598", "source" : "5557", "target" : "3945", "shared_name" : "9254 (interacts with) 846", "name" : "9254 (interacts with) 846", "interaction" : "interacts with", "SUID" : 14598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14594", "source" : "5557", "target" : "2553", "shared_name" : "9254 (interacts with) 815", "name" : "9254 (interacts with) 815", "interaction" : "interacts with", "SUID" : 14594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14590", "source" : "5557", "target" : "993", "shared_name" : "9254 (interacts with) 801", "name" : "9254 (interacts with) 801", "interaction" : "interacts with", "SUID" : 14590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14770", "source" : "5553", "target" : "5601", "shared_name" : "55967 (interacts with) 84833", "name" : "55967 (interacts with) 84833", "interaction" : "interacts with", "SUID" : 14770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14766", "source" : "5553", "target" : "4045", "shared_name" : "55967 (interacts with) 29920", "name" : "55967 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 14766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14762", "source" : "5553", "target" : "3501", "shared_name" : "55967 (interacts with) 5831", "name" : "55967 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 14762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14758", "source" : "5553", "target" : "2009", "shared_name" : "55967 (interacts with) 79133", "name" : "55967 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 14758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14754", "source" : "5553", "target" : "889", "shared_name" : "55967 (interacts with) 80224", "name" : "55967 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 14754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14750", "source" : "5553", "target" : "1661", "shared_name" : "55967 (interacts with) 91942", "name" : "55967 (interacts with) 91942", "interaction" : "interacts with", "SUID" : 14750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14746", "source" : "5553", "target" : "2689", "shared_name" : "55967 (interacts with) 4715", "name" : "55967 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 14746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14742", "source" : "5553", "target" : "5885", "shared_name" : "55967 (interacts with) 4540", "name" : "55967 (interacts with) 4540", "interaction" : "interacts with", "SUID" : 14742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14738", "source" : "5553", "target" : "5821", "shared_name" : "55967 (interacts with) 4724", "name" : "55967 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 14738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14734", "source" : "5553", "target" : "4165", "shared_name" : "55967 (interacts with) 3119", "name" : "55967 (interacts with) 3119", "interaction" : "interacts with", "SUID" : 14734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14730", "source" : "5553", "target" : "4945", "shared_name" : "55967 (interacts with) 4722", "name" : "55967 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 14730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14726", "source" : "5553", "target" : "3617", "shared_name" : "55967 (interacts with) 4704", "name" : "55967 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 14726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14722", "source" : "5553", "target" : "5833", "shared_name" : "55967 (interacts with) 4726", "name" : "55967 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 14722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14774", "source" : "5549", "target" : "693", "shared_name" : "928 (interacts with) 7296", "name" : "928 (interacts with) 7296", "interaction" : "interacts with", "SUID" : 14774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14826", "source" : "5545", "target" : "4941", "shared_name" : "5195 (interacts with) 6342", "name" : "5195 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 14826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14822", "source" : "5545", "target" : "196", "shared_name" : "5195 (interacts with) 84188", "name" : "5195 (interacts with) 84188", "interaction" : "interacts with", "SUID" : 14822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14818", "source" : "5545", "target" : "5873", "shared_name" : "5195 (interacts with) 5827", "name" : "5195 (interacts with) 5827", "interaction" : "interacts with", "SUID" : 14818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14814", "source" : "5545", "target" : "3341", "shared_name" : "5195 (interacts with) 8504", "name" : "5195 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 14814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14810", "source" : "5545", "target" : "2353", "shared_name" : "5195 (interacts with) 5264", "name" : "5195 (interacts with) 5264", "interaction" : "interacts with", "SUID" : 14810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14806", "source" : "5545", "target" : "2325", "shared_name" : "5195 (interacts with) 55670", "name" : "5195 (interacts with) 55670", "interaction" : "interacts with", "SUID" : 14806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14802", "source" : "5545", "target" : "5205", "shared_name" : "5195 (interacts with) 5828", "name" : "5195 (interacts with) 5828", "interaction" : "interacts with", "SUID" : 14802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14798", "source" : "5545", "target" : "4301", "shared_name" : "5195 (interacts with) 8799", "name" : "5195 (interacts with) 8799", "interaction" : "interacts with", "SUID" : 14798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14794", "source" : "5545", "target" : "3333", "shared_name" : "5195 (interacts with) 9409", "name" : "5195 (interacts with) 9409", "interaction" : "interacts with", "SUID" : 14794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14790", "source" : "5545", "target" : "1953", "shared_name" : "5195 (interacts with) 5194", "name" : "5195 (interacts with) 5194", "interaction" : "interacts with", "SUID" : 14790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14786", "source" : "5545", "target" : "5237", "shared_name" : "5195 (interacts with) 5830", "name" : "5195 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 14786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14782", "source" : "5545", "target" : "3329", "shared_name" : "5195 (interacts with) 5824", "name" : "5195 (interacts with) 5824", "interaction" : "interacts with", "SUID" : 14782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14778", "source" : "5545", "target" : "1977", "shared_name" : "5195 (interacts with) 5191", "name" : "5195 (interacts with) 5191", "interaction" : "interacts with", "SUID" : 14778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14878", "source" : "5541", "target" : "657", "shared_name" : "2775 (interacts with) 547", "name" : "2775 (interacts with) 547", "interaction" : "interacts with", "SUID" : 14878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14874", "source" : "5541", "target" : "3593", "shared_name" : "2775 (interacts with) 5530", "name" : "2775 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 14874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14870", "source" : "5541", "target" : "565", "shared_name" : "2775 (interacts with) 4772", "name" : "2775 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 14870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14866", "source" : "5541", "target" : "6005", "shared_name" : "2775 (interacts with) 4988", "name" : "2775 (interacts with) 4988", "interaction" : "interacts with", "SUID" : 14866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14862", "source" : "5541", "target" : "4089", "shared_name" : "2775 (interacts with) 5173", "name" : "2775 (interacts with) 5173", "interaction" : "interacts with", "SUID" : 14862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14858", "source" : "5541", "target" : "2969", "shared_name" : "2775 (interacts with) 8867", "name" : "2775 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 14858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14854", "source" : "5541", "target" : "817", "shared_name" : "2775 (interacts with) 5728", "name" : "2775 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 14854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14850", "source" : "5541", "target" : "5145", "shared_name" : "2775 (interacts with) 23236", "name" : "2775 (interacts with) 23236", "interaction" : "interacts with", "SUID" : 14850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14846", "source" : "5541", "target" : "1861", "shared_name" : "2775 (interacts with) 3708", "name" : "2775 (interacts with) 3708", "interaction" : "interacts with", "SUID" : 14846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14842", "source" : "5541", "target" : "2429", "shared_name" : "2775 (interacts with) 4952", "name" : "2775 (interacts with) 4952", "interaction" : "interacts with", "SUID" : 14842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14838", "source" : "5541", "target" : "5569", "shared_name" : "2775 (interacts with) 59345", "name" : "2775 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 14838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14834", "source" : "5541", "target" : "5869", "shared_name" : "2775 (interacts with) 59", "name" : "2775 (interacts with) 59", "interaction" : "interacts with", "SUID" : 14834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14830", "source" : "5541", "target" : "853", "shared_name" : "2775 (interacts with) 60", "name" : "2775 (interacts with) 60", "interaction" : "interacts with", "SUID" : 14830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14882", "source" : "5537", "target" : "4421", "shared_name" : "5653 (interacts with) 2551", "name" : "5653 (interacts with) 2551", "interaction" : "interacts with", "SUID" : 14882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15046", "source" : "5529", "target" : "893", "shared_name" : "2875 (interacts with) 9361", "name" : "2875 (interacts with) 9361", "interaction" : "interacts with", "SUID" : 15046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15042", "source" : "5529", "target" : "781", "shared_name" : "2875 (interacts with) 4860", "name" : "2875 (interacts with) 4860", "interaction" : "interacts with", "SUID" : 15042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15038", "source" : "5529", "target" : "4017", "shared_name" : "2875 (interacts with) 4719", "name" : "2875 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 15038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15034", "source" : "5529", "target" : "1573", "shared_name" : "2875 (interacts with) 4723", "name" : "2875 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 15034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15030", "source" : "5529", "target" : "1869", "shared_name" : "2875 (interacts with) 4729", "name" : "2875 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 15030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15026", "source" : "5529", "target" : "2753", "shared_name" : "2875 (interacts with) 4720", "name" : "2875 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 15026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15022", "source" : "5529", "target" : "4069", "shared_name" : "2875 (interacts with) 374291", "name" : "2875 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 15022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15018", "source" : "5529", "target" : "5777", "shared_name" : "2875 (interacts with) 383", "name" : "2875 (interacts with) 383", "interaction" : "interacts with", "SUID" : 15018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15014", "source" : "5529", "target" : "1013", "shared_name" : "2875 (interacts with) 6898", "name" : "2875 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 15014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15010", "source" : "5529", "target" : "4045", "shared_name" : "2875 (interacts with) 29920", "name" : "2875 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 15010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15006", "source" : "5529", "target" : "3501", "shared_name" : "2875 (interacts with) 5831", "name" : "2875 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 15006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15002", "source" : "5529", "target" : "1461", "shared_name" : "2875 (interacts with) 5832", "name" : "2875 (interacts with) 5832", "interaction" : "interacts with", "SUID" : 15002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14998", "source" : "5529", "target" : "1981", "shared_name" : "2875 (interacts with) 339983", "name" : "2875 (interacts with) 339983", "interaction" : "interacts with", "SUID" : 14998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14994", "source" : "5529", "target" : "1189", "shared_name" : "2875 (interacts with) 7915", "name" : "2875 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 14994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14990", "source" : "5529", "target" : "3325", "shared_name" : "2875 (interacts with) 9517", "name" : "2875 (interacts with) 9517", "interaction" : "interacts with", "SUID" : 14990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14986", "source" : "5529", "target" : "4737", "shared_name" : "2875 (interacts with) 445", "name" : "2875 (interacts with) 445", "interaction" : "interacts with", "SUID" : 14986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14982", "source" : "5529", "target" : "1341", "shared_name" : "2875 (interacts with) 5009", "name" : "2875 (interacts with) 5009", "interaction" : "interacts with", "SUID" : 14982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14978", "source" : "5529", "target" : "3237", "shared_name" : "2875 (interacts with) 95", "name" : "2875 (interacts with) 95", "interaction" : "interacts with", "SUID" : 14978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14974", "source" : "5529", "target" : "2177", "shared_name" : "2875 (interacts with) 443", "name" : "2875 (interacts with) 443", "interaction" : "interacts with", "SUID" : 14974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14970", "source" : "5529", "target" : "5349", "shared_name" : "2875 (interacts with) 440", "name" : "2875 (interacts with) 440", "interaction" : "interacts with", "SUID" : 14970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14966", "source" : "5529", "target" : "4253", "shared_name" : "2875 (interacts with) 84706", "name" : "2875 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 14966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14962", "source" : "5529", "target" : "5785", "shared_name" : "2875 (interacts with) 6857", "name" : "2875 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 14962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14958", "source" : "5529", "target" : "1385", "shared_name" : "2875 (interacts with) 6520", "name" : "2875 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 14958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14954", "source" : "5529", "target" : "2721", "shared_name" : "2875 (interacts with) 79751", "name" : "2875 (interacts with) 79751", "interaction" : "interacts with", "SUID" : 14954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14950", "source" : "5529", "target" : "1885", "shared_name" : "2875 (interacts with) 8604", "name" : "2875 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 14950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14946", "source" : "5529", "target" : "3641", "shared_name" : "2875 (interacts with) 4141", "name" : "2875 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 14946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14942", "source" : "5529", "target" : "3649", "shared_name" : "2875 (interacts with) 51520", "name" : "2875 (interacts with) 51520", "interaction" : "interacts with", "SUID" : 14942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14938", "source" : "5529", "target" : "625", "shared_name" : "2875 (interacts with) 8942", "name" : "2875 (interacts with) 8942", "interaction" : "interacts with", "SUID" : 14938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14934", "source" : "5529", "target" : "6157", "shared_name" : "2875 (interacts with) 3735", "name" : "2875 (interacts with) 3735", "interaction" : "interacts with", "SUID" : 14934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14930", "source" : "5529", "target" : "5017", "shared_name" : "2875 (interacts with) 3417", "name" : "2875 (interacts with) 3417", "interaction" : "interacts with", "SUID" : 14930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14926", "source" : "5529", "target" : "1089", "shared_name" : "2875 (interacts with) 5917", "name" : "2875 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 14926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14922", "source" : "5529", "target" : "4185", "shared_name" : "2875 (interacts with) 29968", "name" : "2875 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 14922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14918", "source" : "5529", "target" : "4597", "shared_name" : "2875 (interacts with) 3376", "name" : "2875 (interacts with) 3376", "interaction" : "interacts with", "SUID" : 14918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14914", "source" : "5529", "target" : "2321", "shared_name" : "2875 (interacts with) 6509", "name" : "2875 (interacts with) 6509", "interaction" : "interacts with", "SUID" : 14914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14910", "source" : "5529", "target" : "3077", "shared_name" : "2875 (interacts with) 6506", "name" : "2875 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 14910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14906", "source" : "5529", "target" : "6009", "shared_name" : "2875 (interacts with) 64849", "name" : "2875 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 14906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14902", "source" : "5529", "target" : "1017", "shared_name" : "2875 (interacts with) 11212", "name" : "2875 (interacts with) 11212", "interaction" : "interacts with", "SUID" : 14902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14898", "source" : "5529", "target" : "2089", "shared_name" : "2875 (interacts with) 3939", "name" : "2875 (interacts with) 3939", "interaction" : "interacts with", "SUID" : 14898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14894", "source" : "5529", "target" : "1133", "shared_name" : "2875 (interacts with) 3418", "name" : "2875 (interacts with) 3418", "interaction" : "interacts with", "SUID" : 14894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14890", "source" : "5529", "target" : "1657", "shared_name" : "2875 (interacts with) 3251", "name" : "2875 (interacts with) 3251", "interaction" : "interacts with", "SUID" : 14890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "14886", "source" : "5529", "target" : "1849", "shared_name" : "2875 (interacts with) 26275", "name" : "2875 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 14886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15062", "source" : "5525", "target" : "2369", "shared_name" : "84260 (interacts with) 51741", "name" : "84260 (interacts with) 51741", "interaction" : "interacts with", "SUID" : 15062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15058", "source" : "5525", "target" : "1509", "shared_name" : "84260 (interacts with) 63976", "name" : "84260 (interacts with) 63976", "interaction" : "interacts with", "SUID" : 15058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15054", "source" : "5525", "target" : "921", "shared_name" : "84260 (interacts with) 3880", "name" : "84260 (interacts with) 3880", "interaction" : "interacts with", "SUID" : 15054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15050", "source" : "5525", "target" : "5341", "shared_name" : "84260 (interacts with) 91647", "name" : "84260 (interacts with) 91647", "interaction" : "interacts with", "SUID" : 15050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15074", "source" : "5521", "target" : "3021", "shared_name" : "7518 (interacts with) 84823", "name" : "7518 (interacts with) 84823", "interaction" : "interacts with", "SUID" : 15074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15070", "source" : "5521", "target" : "3537", "shared_name" : "7518 (interacts with) 501", "name" : "7518 (interacts with) 501", "interaction" : "interacts with", "SUID" : 15070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15066", "source" : "5521", "target" : "3017", "shared_name" : "7518 (interacts with) 4790", "name" : "7518 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 15066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15082", "source" : "5517", "target" : "5913", "shared_name" : "8514 (interacts with) 3767", "name" : "8514 (interacts with) 3767", "interaction" : "interacts with", "SUID" : 15082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15078", "source" : "5517", "target" : "1945", "shared_name" : "8514 (interacts with) 3785", "name" : "8514 (interacts with) 3785", "interaction" : "interacts with", "SUID" : 15078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15086", "source" : "5513", "target" : "5217", "shared_name" : "2132 (interacts with) 54902", "name" : "2132 (interacts with) 54902", "interaction" : "interacts with", "SUID" : 15086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15606", "source" : "5509", "target" : "5693", "shared_name" : "207 (interacts with) 92335", "name" : "207 (interacts with) 92335", "interaction" : "interacts with", "SUID" : 15606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15602", "source" : "5509", "target" : "1069", "shared_name" : "207 (interacts with) 5879", "name" : "207 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 15602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15598", "source" : "5509", "target" : "5149", "shared_name" : "207 (interacts with) 5058", "name" : "207 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 15598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15594", "source" : "5509", "target" : "637", "shared_name" : "207 (interacts with) 6654", "name" : "207 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 15594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15590", "source" : "5509", "target" : "4857", "shared_name" : "207 (interacts with) 5573", "name" : "207 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 15590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15586", "source" : "5509", "target" : "5965", "shared_name" : "207 (interacts with) 596", "name" : "207 (interacts with) 596", "interaction" : "interacts with", "SUID" : 15586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15582", "source" : "5509", "target" : "981", "shared_name" : "207 (interacts with) 7157", "name" : "207 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 15582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15578", "source" : "5509", "target" : "2085", "shared_name" : "207 (interacts with) 2932", "name" : "207 (interacts with) 2932", "interaction" : "interacts with", "SUID" : 15578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15574", "source" : "5509", "target" : "993", "shared_name" : "207 (interacts with) 801", "name" : "207 (interacts with) 801", "interaction" : "interacts with", "SUID" : 15574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15570", "source" : "5509", "target" : "1201", "shared_name" : "207 (interacts with) 805", "name" : "207 (interacts with) 805", "interaction" : "interacts with", "SUID" : 15570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15566", "source" : "5509", "target" : "1241", "shared_name" : "207 (interacts with) 808", "name" : "207 (interacts with) 808", "interaction" : "interacts with", "SUID" : 15566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15562", "source" : "5509", "target" : "805", "shared_name" : "207 (interacts with) 6772", "name" : "207 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 15562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15558", "source" : "5509", "target" : "3577", "shared_name" : "207 (interacts with) 5605", "name" : "207 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 15558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15554", "source" : "5509", "target" : "3593", "shared_name" : "207 (interacts with) 5530", "name" : "207 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 15554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15550", "source" : "5509", "target" : "1233", "shared_name" : "207 (interacts with) 355", "name" : "207 (interacts with) 355", "interaction" : "interacts with", "SUID" : 15550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15546", "source" : "5509", "target" : "4649", "shared_name" : "207 (interacts with) 3479", "name" : "207 (interacts with) 3479", "interaction" : "interacts with", "SUID" : 15546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15542", "source" : "5509", "target" : "565", "shared_name" : "207 (interacts with) 4772", "name" : "207 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 15542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15538", "source" : "5509", "target" : "5145", "shared_name" : "207 (interacts with) 23236", "name" : "207 (interacts with) 23236", "interaction" : "interacts with", "SUID" : 15538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15534", "source" : "5509", "target" : "1845", "shared_name" : "207 (interacts with) 836", "name" : "207 (interacts with) 836", "interaction" : "interacts with", "SUID" : 15534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15530", "source" : "5509", "target" : "5625", "shared_name" : "207 (interacts with) 595", "name" : "207 (interacts with) 595", "interaction" : "interacts with", "SUID" : 15530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15526", "source" : "5509", "target" : "3581", "shared_name" : "207 (interacts with) 2185", "name" : "207 (interacts with) 2185", "interaction" : "interacts with", "SUID" : 15526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15522", "source" : "5509", "target" : "2613", "shared_name" : "207 (interacts with) 472", "name" : "207 (interacts with) 472", "interaction" : "interacts with", "SUID" : 15522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15518", "source" : "5509", "target" : "5761", "shared_name" : "207 (interacts with) 4208", "name" : "207 (interacts with) 4208", "interaction" : "interacts with", "SUID" : 15518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15514", "source" : "5509", "target" : "1405", "shared_name" : "207 (interacts with) 998", "name" : "207 (interacts with) 998", "interaction" : "interacts with", "SUID" : 15514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15510", "source" : "5509", "target" : "817", "shared_name" : "207 (interacts with) 5728", "name" : "207 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 15510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15506", "source" : "5509", "target" : "4293", "shared_name" : "207 (interacts with) 5156", "name" : "207 (interacts with) 5156", "interaction" : "interacts with", "SUID" : 15506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15502", "source" : "5509", "target" : "5697", "shared_name" : "207 (interacts with) 8517", "name" : "207 (interacts with) 8517", "interaction" : "interacts with", "SUID" : 15502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15498", "source" : "5509", "target" : "5745", "shared_name" : "207 (interacts with) 7471", "name" : "207 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 15498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15494", "source" : "5509", "target" : "2333", "shared_name" : "207 (interacts with) 3559", "name" : "207 (interacts with) 3559", "interaction" : "interacts with", "SUID" : 15494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15490", "source" : "5509", "target" : "1701", "shared_name" : "207 (interacts with) 5777", "name" : "207 (interacts with) 5777", "interaction" : "interacts with", "SUID" : 15490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15486", "source" : "5509", "target" : "6109", "shared_name" : "207 (interacts with) 2688", "name" : "207 (interacts with) 2688", "interaction" : "interacts with", "SUID" : 15486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15482", "source" : "5509", "target" : "5577", "shared_name" : "207 (interacts with) 3091", "name" : "207 (interacts with) 3091", "interaction" : "interacts with", "SUID" : 15482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15478", "source" : "5509", "target" : "2793", "shared_name" : "207 (interacts with) 8894", "name" : "207 (interacts with) 8894", "interaction" : "interacts with", "SUID" : 15478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15474", "source" : "5509", "target" : "5053", "shared_name" : "207 (interacts with) 857", "name" : "207 (interacts with) 857", "interaction" : "interacts with", "SUID" : 15474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15470", "source" : "5509", "target" : "1293", "shared_name" : "207 (interacts with) 2908", "name" : "207 (interacts with) 2908", "interaction" : "interacts with", "SUID" : 15470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15466", "source" : "5509", "target" : "3745", "shared_name" : "207 (interacts with) 4803", "name" : "207 (interacts with) 4803", "interaction" : "interacts with", "SUID" : 15466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15462", "source" : "5509", "target" : "1285", "shared_name" : "207 (interacts with) 7249", "name" : "207 (interacts with) 7249", "interaction" : "interacts with", "SUID" : 15462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15458", "source" : "5509", "target" : "4033", "shared_name" : "207 (interacts with) 613", "name" : "207 (interacts with) 613", "interaction" : "interacts with", "SUID" : 15458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15454", "source" : "5509", "target" : "3289", "shared_name" : "207 (interacts with) 5913", "name" : "207 (interacts with) 5913", "interaction" : "interacts with", "SUID" : 15454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15450", "source" : "5509", "target" : "4149", "shared_name" : "207 (interacts with) 8893", "name" : "207 (interacts with) 8893", "interaction" : "interacts with", "SUID" : 15450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15446", "source" : "5509", "target" : "5637", "shared_name" : "207 (interacts with) 6609", "name" : "207 (interacts with) 6609", "interaction" : "interacts with", "SUID" : 15446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15442", "source" : "5509", "target" : "1225", "shared_name" : "207 (interacts with) 375", "name" : "207 (interacts with) 375", "interaction" : "interacts with", "SUID" : 15442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15438", "source" : "5509", "target" : "1697", "shared_name" : "207 (interacts with) 8818", "name" : "207 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 15438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15434", "source" : "5509", "target" : "2101", "shared_name" : "207 (interacts with) 3486", "name" : "207 (interacts with) 3486", "interaction" : "interacts with", "SUID" : 15434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15430", "source" : "5509", "target" : "4237", "shared_name" : "207 (interacts with) 4914", "name" : "207 (interacts with) 4914", "interaction" : "interacts with", "SUID" : 15430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15426", "source" : "5509", "target" : "2901", "shared_name" : "207 (interacts with) 6647", "name" : "207 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 15426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15422", "source" : "5509", "target" : "4765", "shared_name" : "207 (interacts with) 7015", "name" : "207 (interacts with) 7015", "interaction" : "interacts with", "SUID" : 15422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15418", "source" : "5509", "target" : "5389", "shared_name" : "207 (interacts with) 551", "name" : "207 (interacts with) 551", "interaction" : "interacts with", "SUID" : 15418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15414", "source" : "5509", "target" : "1605", "shared_name" : "207 (interacts with) 6648", "name" : "207 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 15414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15410", "source" : "5509", "target" : "4133", "shared_name" : "207 (interacts with) 427", "name" : "207 (interacts with) 427", "interaction" : "interacts with", "SUID" : 15410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15406", "source" : "5509", "target" : "5773", "shared_name" : "207 (interacts with) 9181", "name" : "207 (interacts with) 9181", "interaction" : "interacts with", "SUID" : 15406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15402", "source" : "5509", "target" : "3573", "shared_name" : "207 (interacts with) 3845", "name" : "207 (interacts with) 3845", "interaction" : "interacts with", "SUID" : 15402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15398", "source" : "5509", "target" : "553", "shared_name" : "207 (interacts with) 7248", "name" : "207 (interacts with) 7248", "interaction" : "interacts with", "SUID" : 15398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15394", "source" : "5509", "target" : "4537", "shared_name" : "207 (interacts with) 2697", "name" : "207 (interacts with) 2697", "interaction" : "interacts with", "SUID" : 15394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15390", "source" : "5509", "target" : "629", "shared_name" : "207 (interacts with) 7013", "name" : "207 (interacts with) 7013", "interaction" : "interacts with", "SUID" : 15390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15386", "source" : "5509", "target" : "4041", "shared_name" : "207 (interacts with) 847", "name" : "207 (interacts with) 847", "interaction" : "interacts with", "SUID" : 15386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15382", "source" : "5509", "target" : "5049", "shared_name" : "207 (interacts with) 6697", "name" : "207 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 15382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15378", "source" : "5509", "target" : "737", "shared_name" : "207 (interacts with) 2643", "name" : "207 (interacts with) 2643", "interaction" : "interacts with", "SUID" : 15378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15374", "source" : "5509", "target" : "4721", "shared_name" : "207 (interacts with) 5805", "name" : "207 (interacts with) 5805", "interaction" : "interacts with", "SUID" : 15374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15370", "source" : "5509", "target" : "2929", "shared_name" : "207 (interacts with) 6310", "name" : "207 (interacts with) 6310", "interaction" : "interacts with", "SUID" : 15370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15366", "source" : "5509", "target" : "4317", "shared_name" : "207 (interacts with) 3178", "name" : "207 (interacts with) 3178", "interaction" : "interacts with", "SUID" : 15366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15362", "source" : "5509", "target" : "1781", "shared_name" : "207 (interacts with) 4084", "name" : "207 (interacts with) 4084", "interaction" : "interacts with", "SUID" : 15362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15358", "source" : "5509", "target" : "3481", "shared_name" : "207 (interacts with) 6513", "name" : "207 (interacts with) 6513", "interaction" : "interacts with", "SUID" : 15358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15354", "source" : "5509", "target" : "1257", "shared_name" : "207 (interacts with) 3098", "name" : "207 (interacts with) 3098", "interaction" : "interacts with", "SUID" : 15354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15350", "source" : "5509", "target" : "3737", "shared_name" : "207 (interacts with) 3064", "name" : "207 (interacts with) 3064", "interaction" : "interacts with", "SUID" : 15350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15346", "source" : "5509", "target" : "1689", "shared_name" : "207 (interacts with) 5524", "name" : "207 (interacts with) 5524", "interaction" : "interacts with", "SUID" : 15346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15342", "source" : "5509", "target" : "4697", "shared_name" : "207 (interacts with) 7534", "name" : "207 (interacts with) 7534", "interaction" : "interacts with", "SUID" : 15342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15338", "source" : "5509", "target" : "1265", "shared_name" : "207 (interacts with) 79594", "name" : "207 (interacts with) 79594", "interaction" : "interacts with", "SUID" : 15338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15334", "source" : "5509", "target" : "3365", "shared_name" : "207 (interacts with) 29843", "name" : "207 (interacts with) 29843", "interaction" : "interacts with", "SUID" : 15334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15330", "source" : "5509", "target" : "709", "shared_name" : "207 (interacts with) 112858", "name" : "207 (interacts with) 112858", "interaction" : "interacts with", "SUID" : 15330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15326", "source" : "5509", "target" : "6057", "shared_name" : "207 (interacts with) 3162", "name" : "207 (interacts with) 3162", "interaction" : "interacts with", "SUID" : 15326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15322", "source" : "5509", "target" : "4097", "shared_name" : "207 (interacts with) 9611", "name" : "207 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 15322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15318", "source" : "5509", "target" : "1601", "shared_name" : "207 (interacts with) 7415", "name" : "207 (interacts with) 7415", "interaction" : "interacts with", "SUID" : 15318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15314", "source" : "5509", "target" : "3677", "shared_name" : "207 (interacts with) 673", "name" : "207 (interacts with) 673", "interaction" : "interacts with", "SUID" : 15314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15310", "source" : "5509", "target" : "1429", "shared_name" : "207 (interacts with) 65125", "name" : "207 (interacts with) 65125", "interaction" : "interacts with", "SUID" : 15310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15306", "source" : "5509", "target" : "5673", "shared_name" : "207 (interacts with) 6497", "name" : "207 (interacts with) 6497", "interaction" : "interacts with", "SUID" : 15306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15302", "source" : "5509", "target" : "5225", "shared_name" : "207 (interacts with) 5290", "name" : "207 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 15302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15298", "source" : "5509", "target" : "4145", "shared_name" : "207 (interacts with) 120892", "name" : "207 (interacts with) 120892", "interaction" : "interacts with", "SUID" : 15298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15294", "source" : "5509", "target" : "4181", "shared_name" : "207 (interacts with) 154", "name" : "207 (interacts with) 154", "interaction" : "interacts with", "SUID" : 15294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15290", "source" : "5509", "target" : "5949", "shared_name" : "207 (interacts with) 672", "name" : "207 (interacts with) 672", "interaction" : "interacts with", "SUID" : 15290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15286", "source" : "5509", "target" : "6169", "shared_name" : "207 (interacts with) 4088", "name" : "207 (interacts with) 4088", "interaction" : "interacts with", "SUID" : 15286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15282", "source" : "5509", "target" : "941", "shared_name" : "207 (interacts with) 648", "name" : "207 (interacts with) 648", "interaction" : "interacts with", "SUID" : 15282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15278", "source" : "5509", "target" : "5185", "shared_name" : "207 (interacts with) 1499", "name" : "207 (interacts with) 1499", "interaction" : "interacts with", "SUID" : 15278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15274", "source" : "5509", "target" : "4521", "shared_name" : "207 (interacts with) 5894", "name" : "207 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 15274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15270", "source" : "5509", "target" : "537", "shared_name" : "207 (interacts with) 27429", "name" : "207 (interacts with) 27429", "interaction" : "interacts with", "SUID" : 15270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15266", "source" : "5509", "target" : "3149", "shared_name" : "207 (interacts with) 3630", "name" : "207 (interacts with) 3630", "interaction" : "interacts with", "SUID" : 15266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15262", "source" : "5509", "target" : "5161", "shared_name" : "207 (interacts with) 1786", "name" : "207 (interacts with) 1786", "interaction" : "interacts with", "SUID" : 15262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15258", "source" : "5509", "target" : "257", "shared_name" : "207 (interacts with) 6469", "name" : "207 (interacts with) 6469", "interaction" : "interacts with", "SUID" : 15258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15254", "source" : "5509", "target" : "4233", "shared_name" : "207 (interacts with) 367", "name" : "207 (interacts with) 367", "interaction" : "interacts with", "SUID" : 15254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15250", "source" : "5509", "target" : "5941", "shared_name" : "207 (interacts with) 5914", "name" : "207 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 15250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15246", "source" : "5509", "target" : "5125", "shared_name" : "207 (interacts with) 5979", "name" : "207 (interacts with) 5979", "interaction" : "interacts with", "SUID" : 15246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15242", "source" : "5509", "target" : "5073", "shared_name" : "207 (interacts with) 7305", "name" : "207 (interacts with) 7305", "interaction" : "interacts with", "SUID" : 15242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15238", "source" : "5509", "target" : "725", "shared_name" : "207 (interacts with) 54209", "name" : "207 (interacts with) 54209", "interaction" : "interacts with", "SUID" : 15238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15234", "source" : "5509", "target" : "4389", "shared_name" : "207 (interacts with) 81846", "name" : "207 (interacts with) 81846", "interaction" : "interacts with", "SUID" : 15234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15230", "source" : "5509", "target" : "2969", "shared_name" : "207 (interacts with) 8867", "name" : "207 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 15230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15226", "source" : "5509", "target" : "4981", "shared_name" : "207 (interacts with) 6774", "name" : "207 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 15226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15222", "source" : "5509", "target" : "3929", "shared_name" : "207 (interacts with) 5860", "name" : "207 (interacts with) 5860", "interaction" : "interacts with", "SUID" : 15222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15218", "source" : "5509", "target" : "5641", "shared_name" : "207 (interacts with) 5518", "name" : "207 (interacts with) 5518", "interaction" : "interacts with", "SUID" : 15218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15214", "source" : "5509", "target" : "3417", "shared_name" : "207 (interacts with) 5371", "name" : "207 (interacts with) 5371", "interaction" : "interacts with", "SUID" : 15214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15210", "source" : "5509", "target" : "2173", "shared_name" : "207 (interacts with) 5159", "name" : "207 (interacts with) 5159", "interaction" : "interacts with", "SUID" : 15210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15206", "source" : "5509", "target" : "3465", "shared_name" : "207 (interacts with) 5296", "name" : "207 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 15206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15202", "source" : "5509", "target" : "4213", "shared_name" : "207 (interacts with) 5295", "name" : "207 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 15202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15198", "source" : "5509", "target" : "2773", "shared_name" : "207 (interacts with) 4908", "name" : "207 (interacts with) 4908", "interaction" : "interacts with", "SUID" : 15198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15194", "source" : "5509", "target" : "5973", "shared_name" : "207 (interacts with) 5155", "name" : "207 (interacts with) 5155", "interaction" : "interacts with", "SUID" : 15194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15190", "source" : "5509", "target" : "4209", "shared_name" : "207 (interacts with) 4915", "name" : "207 (interacts with) 4915", "interaction" : "interacts with", "SUID" : 15190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15186", "source" : "5509", "target" : "4385", "shared_name" : "207 (interacts with) 3084", "name" : "207 (interacts with) 3084", "interaction" : "interacts with", "SUID" : 15186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15182", "source" : "5509", "target" : "3653", "shared_name" : "207 (interacts with) 8898", "name" : "207 (interacts with) 8898", "interaction" : "interacts with", "SUID" : 15182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15178", "source" : "5509", "target" : "3457", "shared_name" : "207 (interacts with) 22914", "name" : "207 (interacts with) 22914", "interaction" : "interacts with", "SUID" : 15178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15174", "source" : "5509", "target" : "3429", "shared_name" : "207 (interacts with) 3674", "name" : "207 (interacts with) 3674", "interaction" : "interacts with", "SUID" : 15174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15170", "source" : "5509", "target" : "4457", "shared_name" : "207 (interacts with) 3082", "name" : "207 (interacts with) 3082", "interaction" : "interacts with", "SUID" : 15170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15166", "source" : "5509", "target" : "5569", "shared_name" : "207 (interacts with) 59345", "name" : "207 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 15166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15162", "source" : "5509", "target" : "6129", "shared_name" : "207 (interacts with) 2263", "name" : "207 (interacts with) 2263", "interaction" : "interacts with", "SUID" : 15162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15158", "source" : "5509", "target" : "6121", "shared_name" : "207 (interacts with) 2260", "name" : "207 (interacts with) 2260", "interaction" : "interacts with", "SUID" : 15158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15154", "source" : "5509", "target" : "6033", "shared_name" : "207 (interacts with) 11160", "name" : "207 (interacts with) 11160", "interaction" : "interacts with", "SUID" : 15154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15150", "source" : "5509", "target" : "3381", "shared_name" : "207 (interacts with) 2214", "name" : "207 (interacts with) 2214", "interaction" : "interacts with", "SUID" : 15150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15146", "source" : "5509", "target" : "2597", "shared_name" : "207 (interacts with) 2056", "name" : "207 (interacts with) 2056", "interaction" : "interacts with", "SUID" : 15146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15142", "source" : "5509", "target" : "5817", "shared_name" : "207 (interacts with) 1950", "name" : "207 (interacts with) 1950", "interaction" : "interacts with", "SUID" : 15142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15138", "source" : "5509", "target" : "3629", "shared_name" : "207 (interacts with) 2066", "name" : "207 (interacts with) 2066", "interaction" : "interacts with", "SUID" : 15138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15134", "source" : "5509", "target" : "1313", "shared_name" : "207 (interacts with) 1727", "name" : "207 (interacts with) 1727", "interaction" : "interacts with", "SUID" : 15134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15130", "source" : "5509", "target" : "1821", "shared_name" : "207 (interacts with) 1719", "name" : "207 (interacts with) 1719", "interaction" : "interacts with", "SUID" : 15130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15126", "source" : "5509", "target" : "1057", "shared_name" : "207 (interacts with) 7862", "name" : "207 (interacts with) 7862", "interaction" : "interacts with", "SUID" : 15126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15122", "source" : "5509", "target" : "5425", "shared_name" : "207 (interacts with) 627", "name" : "207 (interacts with) 627", "interaction" : "interacts with", "SUID" : 15122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15118", "source" : "5509", "target" : "4737", "shared_name" : "207 (interacts with) 445", "name" : "207 (interacts with) 445", "interaction" : "interacts with", "SUID" : 15118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15114", "source" : "5509", "target" : "4517", "shared_name" : "207 (interacts with) 55704", "name" : "207 (interacts with) 55704", "interaction" : "interacts with", "SUID" : 15114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15110", "source" : "5509", "target" : "2005", "shared_name" : "207 (interacts with) 4846", "name" : "207 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 15110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15106", "source" : "5509", "target" : "4013", "shared_name" : "207 (interacts with) 6622", "name" : "207 (interacts with) 6622", "interaction" : "interacts with", "SUID" : 15106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15102", "source" : "5509", "target" : "2481", "shared_name" : "207 (interacts with) 2475", "name" : "207 (interacts with) 2475", "interaction" : "interacts with", "SUID" : 15102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15098", "source" : "5509", "target" : "5681", "shared_name" : "207 (interacts with) 3315", "name" : "207 (interacts with) 3315", "interaction" : "interacts with", "SUID" : 15098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15094", "source" : "5509", "target" : "997", "shared_name" : "207 (interacts with) 7431", "name" : "207 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 15094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15090", "source" : "5509", "target" : "1281", "shared_name" : "207 (interacts with) 171023", "name" : "207 (interacts with) 171023", "interaction" : "interacts with", "SUID" : 15090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15838", "source" : "5505", "target" : "1053", "shared_name" : "29078 (interacts with) 81689", "name" : "29078 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 15838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15834", "source" : "5505", "target" : "3705", "shared_name" : "29078 (interacts with) 87178", "name" : "29078 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 15834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15830", "source" : "5505", "target" : "2021", "shared_name" : "29078 (interacts with) 5428", "name" : "29078 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 15830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15826", "source" : "5505", "target" : "3633", "shared_name" : "29078 (interacts with) 51067", "name" : "29078 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 15826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15822", "source" : "5505", "target" : "521", "shared_name" : "29078 (interacts with) 85476", "name" : "29078 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 15822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15818", "source" : "5505", "target" : "721", "shared_name" : "29078 (interacts with) 79731", "name" : "29078 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 15818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15814", "source" : "5505", "target" : "5189", "shared_name" : "29078 (interacts with) 57176", "name" : "29078 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 15814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15810", "source" : "5505", "target" : "3545", "shared_name" : "29078 (interacts with) 708", "name" : "29078 (interacts with) 708", "interaction" : "interacts with", "SUID" : 15810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15806", "source" : "5505", "target" : "6001", "shared_name" : "29078 (interacts with) 55157", "name" : "29078 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 15806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15802", "source" : "5505", "target" : "2297", "shared_name" : "29078 (interacts with) 55005", "name" : "29078 (interacts with) 55005", "interaction" : "interacts with", "SUID" : 15802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15798", "source" : "5505", "target" : "2609", "shared_name" : "29078 (interacts with) 29960", "name" : "29078 (interacts with) 29960", "interaction" : "interacts with", "SUID" : 15798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15794", "source" : "5505", "target" : "1129", "shared_name" : "29078 (interacts with) 57505", "name" : "29078 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 15794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15790", "source" : "5505", "target" : "2105", "shared_name" : "29078 (interacts with) 56945", "name" : "29078 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 15790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15786", "source" : "5505", "target" : "5085", "shared_name" : "29078 (interacts with) 56652", "name" : "29078 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 15786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15782", "source" : "5505", "target" : "6073", "shared_name" : "29078 (interacts with) 92170", "name" : "29078 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 15782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15778", "source" : "5505", "target" : "1105", "shared_name" : "29078 (interacts with) 493753", "name" : "29078 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 15778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15774", "source" : "5505", "target" : "4757", "shared_name" : "29078 (interacts with) 9997", "name" : "29078 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 15774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15770", "source" : "5505", "target" : "5857", "shared_name" : "29078 (interacts with) 4694", "name" : "29078 (interacts with) 4694", "interaction" : "interacts with", "SUID" : 15770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15766", "source" : "5505", "target" : "1197", "shared_name" : "29078 (interacts with) 79587", "name" : "29078 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 15766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15762", "source" : "5505", "target" : "4869", "shared_name" : "29078 (interacts with) 92935", "name" : "29078 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 15762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15758", "source" : "5505", "target" : "5737", "shared_name" : "29078 (interacts with) 84340", "name" : "29078 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 15758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15754", "source" : "5505", "target" : "5553", "shared_name" : "29078 (interacts with) 55967", "name" : "29078 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 15754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15750", "source" : "5505", "target" : "4897", "shared_name" : "29078 (interacts with) 55149", "name" : "29078 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 15750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15746", "source" : "5505", "target" : "5833", "shared_name" : "29078 (interacts with) 4726", "name" : "29078 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 15746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15742", "source" : "5505", "target" : "5821", "shared_name" : "29078 (interacts with) 4724", "name" : "29078 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 15742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15738", "source" : "5505", "target" : "4409", "shared_name" : "29078 (interacts with) 6341", "name" : "29078 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 15738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15734", "source" : "5505", "target" : "2757", "shared_name" : "29078 (interacts with) 51079", "name" : "29078 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 15734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15730", "source" : "5505", "target" : "501", "shared_name" : "29078 (interacts with) 65993", "name" : "29078 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 15730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15726", "source" : "5505", "target" : "1661", "shared_name" : "29078 (interacts with) 91942", "name" : "29078 (interacts with) 91942", "interaction" : "interacts with", "SUID" : 15726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15722", "source" : "5505", "target" : "477", "shared_name" : "29078 (interacts with) 51021", "name" : "29078 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 15722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15718", "source" : "5505", "target" : "4141", "shared_name" : "29078 (interacts with) 617", "name" : "29078 (interacts with) 617", "interaction" : "interacts with", "SUID" : 15718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15714", "source" : "5505", "target" : "889", "shared_name" : "29078 (interacts with) 80224", "name" : "29078 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 15714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15710", "source" : "5505", "target" : "3617", "shared_name" : "29078 (interacts with) 4704", "name" : "29078 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 15710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15706", "source" : "5505", "target" : "713", "shared_name" : "29078 (interacts with) 7019", "name" : "29078 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 15706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15702", "source" : "5505", "target" : "1573", "shared_name" : "29078 (interacts with) 4723", "name" : "29078 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 15702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15698", "source" : "5505", "target" : "1929", "shared_name" : "29078 (interacts with) 51218", "name" : "29078 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 15698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15694", "source" : "5505", "target" : "2689", "shared_name" : "29078 (interacts with) 4715", "name" : "29078 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 15694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15690", "source" : "5505", "target" : "4101", "shared_name" : "29078 (interacts with) 65260", "name" : "29078 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 15690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15686", "source" : "5505", "target" : "4061", "shared_name" : "29078 (interacts with) 4705", "name" : "29078 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 15686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15682", "source" : "5505", "target" : "4069", "shared_name" : "29078 (interacts with) 374291", "name" : "29078 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 15682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15678", "source" : "5505", "target" : "1561", "shared_name" : "29078 (interacts with) 51117", "name" : "29078 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 15678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15674", "source" : "5505", "target" : "2741", "shared_name" : "29078 (interacts with) 4695", "name" : "29078 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 15674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15670", "source" : "5505", "target" : "1869", "shared_name" : "29078 (interacts with) 4729", "name" : "29078 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 15670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15666", "source" : "5505", "target" : "5853", "shared_name" : "29078 (interacts with) 4709", "name" : "29078 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 15666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15662", "source" : "5505", "target" : "3973", "shared_name" : "29078 (interacts with) 55572", "name" : "29078 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 15662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15658", "source" : "5505", "target" : "5845", "shared_name" : "29078 (interacts with) 4714", "name" : "29078 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 15658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15654", "source" : "5505", "target" : "2285", "shared_name" : "29078 (interacts with) 51300", "name" : "29078 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 15654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15650", "source" : "5505", "target" : "4017", "shared_name" : "29078 (interacts with) 4719", "name" : "29078 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 15650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15646", "source" : "5505", "target" : "2801", "shared_name" : "29078 (interacts with) 4700", "name" : "29078 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 15646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15642", "source" : "5505", "target" : "2109", "shared_name" : "29078 (interacts with) 51103", "name" : "29078 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 15642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15638", "source" : "5505", "target" : "1337", "shared_name" : "29078 (interacts with) 55863", "name" : "29078 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 15638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15634", "source" : "5505", "target" : "5829", "shared_name" : "29078 (interacts with) 4538", "name" : "29078 (interacts with) 4538", "interaction" : "interacts with", "SUID" : 15634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15630", "source" : "5505", "target" : "2753", "shared_name" : "29078 (interacts with) 4720", "name" : "29078 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 15630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15626", "source" : "5505", "target" : "2337", "shared_name" : "29078 (interacts with) 28976", "name" : "29078 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 15626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15622", "source" : "5505", "target" : "3761", "shared_name" : "29078 (interacts with) 25915", "name" : "29078 (interacts with) 25915", "interaction" : "interacts with", "SUID" : 15622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15618", "source" : "5505", "target" : "2797", "shared_name" : "29078 (interacts with) 4728", "name" : "29078 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 15618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15614", "source" : "5505", "target" : "2009", "shared_name" : "29078 (interacts with) 79133", "name" : "29078 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 15614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15610", "source" : "5505", "target" : "4945", "shared_name" : "29078 (interacts with) 4722", "name" : "29078 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 15610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15846", "source" : "5501", "target" : "5569", "shared_name" : "51083 (interacts with) 59345", "name" : "51083 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 15846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15842", "source" : "5501", "target" : "665", "shared_name" : "51083 (interacts with) 3309", "name" : "51083 (interacts with) 3309", "interaction" : "interacts with", "SUID" : 15842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15958", "source" : "5493", "target" : "977", "shared_name" : "2678 (interacts with) 79944", "name" : "2678 (interacts with) 79944", "interaction" : "interacts with", "SUID" : 15958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15954", "source" : "5493", "target" : "517", "shared_name" : "2678 (interacts with) 5052", "name" : "2678 (interacts with) 5052", "interaction" : "interacts with", "SUID" : 15954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15950", "source" : "5493", "target" : "741", "shared_name" : "2678 (interacts with) 4830", "name" : "2678 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 15950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15946", "source" : "5493", "target" : "4749", "shared_name" : "2678 (interacts with) 3028", "name" : "2678 (interacts with) 3028", "interaction" : "interacts with", "SUID" : 15946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15942", "source" : "5493", "target" : "781", "shared_name" : "2678 (interacts with) 4860", "name" : "2678 (interacts with) 4860", "interaction" : "interacts with", "SUID" : 15942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15938", "source" : "5493", "target" : "3425", "shared_name" : "2678 (interacts with) 8803", "name" : "2678 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 15938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15934", "source" : "5493", "target" : "245", "shared_name" : "2678 (interacts with) 2936", "name" : "2678 (interacts with) 2936", "interaction" : "interacts with", "SUID" : 15934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15930", "source" : "5493", "target" : "557", "shared_name" : "2678 (interacts with) 5730", "name" : "2678 (interacts with) 5730", "interaction" : "interacts with", "SUID" : 15930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15926", "source" : "5493", "target" : "769", "shared_name" : "2678 (interacts with) 4953", "name" : "2678 (interacts with) 4953", "interaction" : "interacts with", "SUID" : 15926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15922", "source" : "5493", "target" : "3237", "shared_name" : "2678 (interacts with) 95", "name" : "2678 (interacts with) 95", "interaction" : "interacts with", "SUID" : 15922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15918", "source" : "5493", "target" : "4341", "shared_name" : "2678 (interacts with) 2729", "name" : "2678 (interacts with) 2729", "interaction" : "interacts with", "SUID" : 15918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15914", "source" : "5493", "target" : "3009", "shared_name" : "2678 (interacts with) 2917", "name" : "2678 (interacts with) 2917", "interaction" : "interacts with", "SUID" : 15914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15910", "source" : "5493", "target" : "3077", "shared_name" : "2678 (interacts with) 6506", "name" : "2678 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 15910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15906", "source" : "5493", "target" : "3557", "shared_name" : "2678 (interacts with) 2911", "name" : "2678 (interacts with) 2911", "interaction" : "interacts with", "SUID" : 15906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15902", "source" : "5493", "target" : "2977", "shared_name" : "2678 (interacts with) 4747", "name" : "2678 (interacts with) 4747", "interaction" : "interacts with", "SUID" : 15902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15898", "source" : "5493", "target" : "4509", "shared_name" : "2678 (interacts with) 2902", "name" : "2678 (interacts with) 2902", "interaction" : "interacts with", "SUID" : 15898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15894", "source" : "5493", "target" : "2329", "shared_name" : "2678 (interacts with) 2904", "name" : "2678 (interacts with) 2904", "interaction" : "interacts with", "SUID" : 15894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15890", "source" : "5493", "target" : "1721", "shared_name" : "2678 (interacts with) 51807", "name" : "2678 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 15890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15886", "source" : "5493", "target" : "5365", "shared_name" : "2678 (interacts with) 2893", "name" : "2678 (interacts with) 2893", "interaction" : "interacts with", "SUID" : 15886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15882", "source" : "5493", "target" : "1385", "shared_name" : "2678 (interacts with) 6520", "name" : "2678 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 15882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15878", "source" : "5493", "target" : "1017", "shared_name" : "2678 (interacts with) 11212", "name" : "2678 (interacts with) 11212", "interaction" : "interacts with", "SUID" : 15878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15874", "source" : "5493", "target" : "2321", "shared_name" : "2678 (interacts with) 6509", "name" : "2678 (interacts with) 6509", "interaction" : "interacts with", "SUID" : 15874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15870", "source" : "5493", "target" : "1525", "shared_name" : "2678 (interacts with) 3295", "name" : "2678 (interacts with) 3295", "interaction" : "interacts with", "SUID" : 15870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15866", "source" : "5493", "target" : "625", "shared_name" : "2678 (interacts with) 8942", "name" : "2678 (interacts with) 8942", "interaction" : "interacts with", "SUID" : 15866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15862", "source" : "5493", "target" : "2045", "shared_name" : "2678 (interacts with) 51102", "name" : "2678 (interacts with) 51102", "interaction" : "interacts with", "SUID" : 15862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15858", "source" : "5493", "target" : "2005", "shared_name" : "2678 (interacts with) 4846", "name" : "2678 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 15858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15854", "source" : "5493", "target" : "4253", "shared_name" : "2678 (interacts with) 84706", "name" : "2678 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 15854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15850", "source" : "5493", "target" : "5529", "shared_name" : "2678 (interacts with) 2875", "name" : "2678 (interacts with) 2875", "interaction" : "interacts with", "SUID" : 15850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16062", "source" : "5489", "target" : "5557", "shared_name" : "2259 (interacts with) 9254", "name" : "2259 (interacts with) 9254", "interaction" : "interacts with", "SUID" : 16062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16058", "source" : "5489", "target" : "381", "shared_name" : "2259 (interacts with) 6323", "name" : "2259 (interacts with) 6323", "interaction" : "interacts with", "SUID" : 16058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16054", "source" : "5489", "target" : "373", "shared_name" : "2259 (interacts with) 6328", "name" : "2259 (interacts with) 6328", "interaction" : "interacts with", "SUID" : 16054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16050", "source" : "5489", "target" : "377", "shared_name" : "2259 (interacts with) 6326", "name" : "2259 (interacts with) 6326", "interaction" : "interacts with", "SUID" : 16050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16046", "source" : "5489", "target" : "689", "shared_name" : "2259 (interacts with) 6329", "name" : "2259 (interacts with) 6329", "interaction" : "interacts with", "SUID" : 16046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16042", "source" : "5489", "target" : "5229", "shared_name" : "2259 (interacts with) 6335", "name" : "2259 (interacts with) 6335", "interaction" : "interacts with", "SUID" : 16042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16038", "source" : "5489", "target" : "4841", "shared_name" : "2259 (interacts with) 6334", "name" : "2259 (interacts with) 6334", "interaction" : "interacts with", "SUID" : 16038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16034", "source" : "5489", "target" : "5877", "shared_name" : "2259 (interacts with) 6535", "name" : "2259 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 16034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16030", "source" : "5489", "target" : "309", "shared_name" : "2259 (interacts with) 6536", "name" : "2259 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 16030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16026", "source" : "5489", "target" : "3601", "shared_name" : "2259 (interacts with) 6531", "name" : "2259 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 16026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16022", "source" : "5489", "target" : "401", "shared_name" : "2259 (interacts with) 6532", "name" : "2259 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 16022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16018", "source" : "5489", "target" : "3781", "shared_name" : "2259 (interacts with) 9152", "name" : "2259 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 16018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16014", "source" : "5489", "target" : "2877", "shared_name" : "2259 (interacts with) 340024", "name" : "2259 (interacts with) 340024", "interaction" : "interacts with", "SUID" : 16014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16010", "source" : "5489", "target" : "3473", "shared_name" : "2259 (interacts with) 6528", "name" : "2259 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 16010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16006", "source" : "5489", "target" : "1385", "shared_name" : "2259 (interacts with) 6520", "name" : "2259 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 16006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16002", "source" : "5489", "target" : "5805", "shared_name" : "2259 (interacts with) 6575", "name" : "2259 (interacts with) 6575", "interaction" : "interacts with", "SUID" : 16002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15998", "source" : "5489", "target" : "3077", "shared_name" : "2259 (interacts with) 6506", "name" : "2259 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 15998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15994", "source" : "5489", "target" : "6009", "shared_name" : "2259 (interacts with) 64849", "name" : "2259 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 15994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15990", "source" : "5489", "target" : "4025", "shared_name" : "2259 (interacts with) 284111", "name" : "2259 (interacts with) 284111", "interaction" : "interacts with", "SUID" : 15990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15986", "source" : "5489", "target" : "5729", "shared_name" : "2259 (interacts with) 861", "name" : "2259 (interacts with) 861", "interaction" : "interacts with", "SUID" : 15986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15982", "source" : "5489", "target" : "1521", "shared_name" : "2259 (interacts with) 84879", "name" : "2259 (interacts with) 84879", "interaction" : "interacts with", "SUID" : 15982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15978", "source" : "5489", "target" : "1873", "shared_name" : "2259 (interacts with) 7274", "name" : "2259 (interacts with) 7274", "interaction" : "interacts with", "SUID" : 15978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15974", "source" : "5489", "target" : "4837", "shared_name" : "2259 (interacts with) 8891", "name" : "2259 (interacts with) 8891", "interaction" : "interacts with", "SUID" : 15974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15970", "source" : "5489", "target" : "841", "shared_name" : "2259 (interacts with) 8890", "name" : "2259 (interacts with) 8890", "interaction" : "interacts with", "SUID" : 15970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15966", "source" : "5489", "target" : "1205", "shared_name" : "2259 (interacts with) 23230", "name" : "2259 (interacts with) 23230", "interaction" : "interacts with", "SUID" : 15966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "15962", "source" : "5489", "target" : "1169", "shared_name" : "2259 (interacts with) 84919", "name" : "2259 (interacts with) 84919", "interaction" : "interacts with", "SUID" : 15962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16078", "source" : "5481", "target" : "2609", "shared_name" : "116228 (interacts with) 29960", "name" : "116228 (interacts with) 29960", "interaction" : "interacts with", "SUID" : 16078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16074", "source" : "5481", "target" : "6001", "shared_name" : "116228 (interacts with) 55157", "name" : "116228 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 16074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16070", "source" : "5481", "target" : "5085", "shared_name" : "116228 (interacts with) 56652", "name" : "116228 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 16070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16066", "source" : "5481", "target" : "4101", "shared_name" : "116228 (interacts with) 65260", "name" : "116228 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 16066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16118", "source" : "5477", "target" : "1697", "shared_name" : "54872 (interacts with) 8818", "name" : "54872 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 16118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16114", "source" : "5477", "target" : "2181", "shared_name" : "54872 (interacts with) 94005", "name" : "54872 (interacts with) 94005", "interaction" : "interacts with", "SUID" : 16114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16110", "source" : "5477", "target" : "1593", "shared_name" : "54872 (interacts with) 8733", "name" : "54872 (interacts with) 8733", "interaction" : "interacts with", "SUID" : 16110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16106", "source" : "5477", "target" : "1025", "shared_name" : "54872 (interacts with) 80055", "name" : "54872 (interacts with) 80055", "interaction" : "interacts with", "SUID" : 16106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16102", "source" : "5477", "target" : "1905", "shared_name" : "54872 (interacts with) 9488", "name" : "54872 (interacts with) 9488", "interaction" : "interacts with", "SUID" : 16102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16098", "source" : "5477", "target" : "985", "shared_name" : "54872 (interacts with) 9091", "name" : "54872 (interacts with) 9091", "interaction" : "interacts with", "SUID" : 16098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16094", "source" : "5477", "target" : "3177", "shared_name" : "54872 (interacts with) 5321", "name" : "54872 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 16094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16090", "source" : "5477", "target" : "2853", "shared_name" : "54872 (interacts with) 8398", "name" : "54872 (interacts with) 8398", "interaction" : "interacts with", "SUID" : 16090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16086", "source" : "5477", "target" : "3893", "shared_name" : "54872 (interacts with) 151056", "name" : "54872 (interacts with) 151056", "interaction" : "interacts with", "SUID" : 16086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16082", "source" : "5477", "target" : "385", "shared_name" : "54872 (interacts with) 5319", "name" : "54872 (interacts with) 5319", "interaction" : "interacts with", "SUID" : 16082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16134", "source" : "5473", "target" : "4589", "shared_name" : "6095 (interacts with) 8431", "name" : "6095 (interacts with) 8431", "interaction" : "interacts with", "SUID" : 16134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16130", "source" : "5473", "target" : "4981", "shared_name" : "6095 (interacts with) 6774", "name" : "6095 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 16130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16126", "source" : "5473", "target" : "877", "shared_name" : "6095 (interacts with) 7341", "name" : "6095 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 16126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16122", "source" : "5473", "target" : "969", "shared_name" : "6095 (interacts with) 2670", "name" : "6095 (interacts with) 2670", "interaction" : "interacts with", "SUID" : 16122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16194", "source" : "5469", "target" : "3953", "shared_name" : "10978 (interacts with) 8731", "name" : "10978 (interacts with) 8731", "interaction" : "interacts with", "SUID" : 16194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16190", "source" : "5469", "target" : "3257", "shared_name" : "10978 (interacts with) 80746", "name" : "10978 (interacts with) 80746", "interaction" : "interacts with", "SUID" : 16190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16186", "source" : "5469", "target" : "2453", "shared_name" : "10978 (interacts with) 57187", "name" : "10978 (interacts with) 57187", "interaction" : "interacts with", "SUID" : 16186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16182", "source" : "5469", "target" : "5377", "shared_name" : "10978 (interacts with) 6638", "name" : "10978 (interacts with) 6638", "interaction" : "interacts with", "SUID" : 16182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16178", "source" : "5469", "target" : "1837", "shared_name" : "10978 (interacts with) 9939", "name" : "10978 (interacts with) 9939", "interaction" : "interacts with", "SUID" : 16178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16174", "source" : "5469", "target" : "5193", "shared_name" : "10978 (interacts with) 5725", "name" : "10978 (interacts with) 5725", "interaction" : "interacts with", "SUID" : 16174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16170", "source" : "5469", "target" : "5281", "shared_name" : "10978 (interacts with) 10084", "name" : "10978 (interacts with) 10084", "interaction" : "interacts with", "SUID" : 16170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16166", "source" : "5469", "target" : "5861", "shared_name" : "10978 (interacts with) 5435", "name" : "10978 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 16166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16162", "source" : "5469", "target" : "2649", "shared_name" : "10978 (interacts with) 5430", "name" : "10978 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 16162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16158", "source" : "5469", "target" : "2385", "shared_name" : "10978 (interacts with) 3192", "name" : "10978 (interacts with) 3192", "interaction" : "interacts with", "SUID" : 16158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16154", "source" : "5469", "target" : "1753", "shared_name" : "10978 (interacts with) 3188", "name" : "10978 (interacts with) 3188", "interaction" : "interacts with", "SUID" : 16154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16150", "source" : "5469", "target" : "4317", "shared_name" : "10978 (interacts with) 3178", "name" : "10978 (interacts with) 3178", "interaction" : "interacts with", "SUID" : 16150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16146", "source" : "5469", "target" : "1993", "shared_name" : "10978 (interacts with) 3181", "name" : "10978 (interacts with) 3181", "interaction" : "interacts with", "SUID" : 16146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16142", "source" : "5469", "target" : "4669", "shared_name" : "10978 (interacts with) 2521", "name" : "10978 (interacts with) 2521", "interaction" : "interacts with", "SUID" : 16142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16138", "source" : "5469", "target" : "5953", "shared_name" : "10978 (interacts with) 283989", "name" : "10978 (interacts with) 283989", "interaction" : "interacts with", "SUID" : 16138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16218", "source" : "5461", "target" : "5629", "shared_name" : "4665 (interacts with) 1959", "name" : "4665 (interacts with) 1959", "interaction" : "interacts with", "SUID" : 16218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16214", "source" : "5461", "target" : "593", "shared_name" : "4665 (interacts with) 8743", "name" : "4665 (interacts with) 8743", "interaction" : "interacts with", "SUID" : 16214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16210", "source" : "5461", "target" : "4189", "shared_name" : "4665 (interacts with) 2744", "name" : "4665 (interacts with) 2744", "interaction" : "interacts with", "SUID" : 16210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16206", "source" : "5461", "target" : "3701", "shared_name" : "4665 (interacts with) 4664", "name" : "4665 (interacts with) 4664", "interaction" : "interacts with", "SUID" : 16206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16202", "source" : "5461", "target" : "5525", "shared_name" : "4665 (interacts with) 84260", "name" : "4665 (interacts with) 84260", "interaction" : "interacts with", "SUID" : 16202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16198", "source" : "5461", "target" : "4349", "shared_name" : "4665 (interacts with) 5859", "name" : "4665 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 16198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16230", "source" : "5457", "target" : "3821", "shared_name" : "9440 (interacts with) 10891", "name" : "9440 (interacts with) 10891", "interaction" : "interacts with", "SUID" : 16230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16226", "source" : "5457", "target" : "2081", "shared_name" : "9440 (interacts with) 5468", "name" : "9440 (interacts with) 5468", "interaction" : "interacts with", "SUID" : 16226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16222", "source" : "5457", "target" : "2485", "shared_name" : "9440 (interacts with) 81857", "name" : "9440 (interacts with) 81857", "interaction" : "interacts with", "SUID" : 16222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16306", "source" : "5453", "target" : "5425", "shared_name" : "4204 (interacts with) 627", "name" : "4204 (interacts with) 627", "interaction" : "interacts with", "SUID" : 16306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16302", "source" : "5453", "target" : "237", "shared_name" : "4204 (interacts with) 5649", "name" : "4204 (interacts with) 5649", "interaction" : "interacts with", "SUID" : 16302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16298", "source" : "5453", "target" : "5761", "shared_name" : "4204 (interacts with) 4208", "name" : "4204 (interacts with) 4208", "interaction" : "interacts with", "SUID" : 16298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16294", "source" : "5453", "target" : "2205", "shared_name" : "4204 (interacts with) 2571", "name" : "4204 (interacts with) 2571", "interaction" : "interacts with", "SUID" : 16294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16290", "source" : "5453", "target" : "2101", "shared_name" : "4204 (interacts with) 3486", "name" : "4204 (interacts with) 3486", "interaction" : "interacts with", "SUID" : 16290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16286", "source" : "5453", "target" : "2697", "shared_name" : "4204 (interacts with) 240", "name" : "4204 (interacts with) 240", "interaction" : "interacts with", "SUID" : 16286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16282", "source" : "5453", "target" : "1097", "shared_name" : "4204 (interacts with) 79718", "name" : "4204 (interacts with) 79718", "interaction" : "interacts with", "SUID" : 16282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16278", "source" : "5453", "target" : "661", "shared_name" : "4204 (interacts with) 6657", "name" : "4204 (interacts with) 6657", "interaction" : "interacts with", "SUID" : 16278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16274", "source" : "5453", "target" : "1433", "shared_name" : "4204 (interacts with) 6515", "name" : "4204 (interacts with) 6515", "interaction" : "interacts with", "SUID" : 16274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16270", "source" : "5453", "target" : "825", "shared_name" : "4204 (interacts with) 25942", "name" : "4204 (interacts with) 25942", "interaction" : "interacts with", "SUID" : 16270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16266", "source" : "5453", "target" : "4097", "shared_name" : "4204 (interacts with) 9611", "name" : "4204 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 16266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16262", "source" : "5453", "target" : "2081", "shared_name" : "4204 (interacts with) 5468", "name" : "4204 (interacts with) 5468", "interaction" : "interacts with", "SUID" : 16262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16258", "source" : "5453", "target" : "6005", "shared_name" : "4204 (interacts with) 4988", "name" : "4204 (interacts with) 4988", "interaction" : "interacts with", "SUID" : 16258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16254", "source" : "5453", "target" : "2213", "shared_name" : "4204 (interacts with) 4851", "name" : "4204 (interacts with) 4851", "interaction" : "interacts with", "SUID" : 16254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16250", "source" : "5453", "target" : "2593", "shared_name" : "4204 (interacts with) 64324", "name" : "4204 (interacts with) 64324", "interaction" : "interacts with", "SUID" : 16250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16246", "source" : "5453", "target" : "877", "shared_name" : "4204 (interacts with) 7341", "name" : "4204 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 16246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16242", "source" : "5453", "target" : "5197", "shared_name" : "4204 (interacts with) 7156", "name" : "4204 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 16242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16238", "source" : "5453", "target" : "5613", "shared_name" : "4204 (interacts with) 5119", "name" : "4204 (interacts with) 5119", "interaction" : "interacts with", "SUID" : 16238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16234", "source" : "5453", "target" : "5085", "shared_name" : "4204 (interacts with) 56652", "name" : "4204 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 16234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16358", "source" : "5449", "target" : "6021", "shared_name" : "923 (interacts with) 26999", "name" : "923 (interacts with) 26999", "interaction" : "interacts with", "SUID" : 16358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16354", "source" : "5449", "target" : "1685", "shared_name" : "923 (interacts with) 9640", "name" : "923 (interacts with) 9640", "interaction" : "interacts with", "SUID" : 16354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16350", "source" : "5449", "target" : "1733", "shared_name" : "923 (interacts with) 6305", "name" : "923 (interacts with) 6305", "interaction" : "interacts with", "SUID" : 16350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16346", "source" : "5449", "target" : "2541", "shared_name" : "923 (interacts with) 56704", "name" : "923 (interacts with) 56704", "interaction" : "interacts with", "SUID" : 16346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16342", "source" : "5449", "target" : "1081", "shared_name" : "923 (interacts with) 80169", "name" : "923 (interacts with) 80169", "interaction" : "interacts with", "SUID" : 16342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16338", "source" : "5449", "target" : "2937", "shared_name" : "923 (interacts with) 1457", "name" : "923 (interacts with) 1457", "interaction" : "interacts with", "SUID" : 16338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16334", "source" : "5449", "target" : "941", "shared_name" : "923 (interacts with) 648", "name" : "923 (interacts with) 648", "interaction" : "interacts with", "SUID" : 16334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16330", "source" : "5449", "target" : "5621", "shared_name" : "923 (interacts with) 25885", "name" : "923 (interacts with) 25885", "interaction" : "interacts with", "SUID" : 16330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16326", "source" : "5449", "target" : "6029", "shared_name" : "923 (interacts with) 54892", "name" : "923 (interacts with) 54892", "interaction" : "interacts with", "SUID" : 16326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16322", "source" : "5449", "target" : "597", "shared_name" : "923 (interacts with) 271", "name" : "923 (interacts with) 271", "interaction" : "interacts with", "SUID" : 16322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16318", "source" : "5449", "target" : "1937", "shared_name" : "923 (interacts with) 2965", "name" : "923 (interacts with) 2965", "interaction" : "interacts with", "SUID" : 16318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16314", "source" : "5449", "target" : "2529", "shared_name" : "923 (interacts with) 5424", "name" : "923 (interacts with) 5424", "interaction" : "interacts with", "SUID" : 16314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16310", "source" : "5449", "target" : "2429", "shared_name" : "923 (interacts with) 4952", "name" : "923 (interacts with) 4952", "interaction" : "interacts with", "SUID" : 16310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16398", "source" : "5445", "target" : "2169", "shared_name" : "8021 (interacts with) 51182", "name" : "8021 (interacts with) 51182", "interaction" : "interacts with", "SUID" : 16398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16394", "source" : "5445", "target" : "1217", "shared_name" : "8021 (interacts with) 3308", "name" : "8021 (interacts with) 3308", "interaction" : "interacts with", "SUID" : 16394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16390", "source" : "5445", "target" : "5781", "shared_name" : "8021 (interacts with) 6672", "name" : "8021 (interacts with) 6672", "interaction" : "interacts with", "SUID" : 16390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16386", "source" : "5445", "target" : "877", "shared_name" : "8021 (interacts with) 7341", "name" : "8021 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 16386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16382", "source" : "5445", "target" : "2033", "shared_name" : "8021 (interacts with) 8741", "name" : "8021 (interacts with) 8741", "interaction" : "interacts with", "SUID" : 16382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16378", "source" : "5445", "target" : "1345", "shared_name" : "8021 (interacts with) 6607", "name" : "8021 (interacts with) 6607", "interaction" : "interacts with", "SUID" : 16378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16374", "source" : "5445", "target" : "1837", "shared_name" : "8021 (interacts with) 9939", "name" : "8021 (interacts with) 9939", "interaction" : "interacts with", "SUID" : 16374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16370", "source" : "5445", "target" : "1349", "shared_name" : "8021 (interacts with) 6606", "name" : "8021 (interacts with) 6606", "interaction" : "interacts with", "SUID" : 16370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16366", "source" : "5445", "target" : "3417", "shared_name" : "8021 (interacts with) 5371", "name" : "8021 (interacts with) 5371", "interaction" : "interacts with", "SUID" : 16366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16362", "source" : "5445", "target" : "4005", "shared_name" : "8021 (interacts with) 23636", "name" : "8021 (interacts with) 23636", "interaction" : "interacts with", "SUID" : 16362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16406", "source" : "5441", "target" : "2917", "shared_name" : "8864 (interacts with) 5451", "name" : "8864 (interacts with) 5451", "interaction" : "interacts with", "SUID" : 16406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16402", "source" : "5441", "target" : "669", "shared_name" : "8864 (interacts with) 259266", "name" : "8864 (interacts with) 259266", "interaction" : "interacts with", "SUID" : 16402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16454", "source" : "5437", "target" : "5693", "shared_name" : "10733 (interacts with) 92335", "name" : "10733 (interacts with) 92335", "interaction" : "interacts with", "SUID" : 16454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16450", "source" : "5437", "target" : "5713", "shared_name" : "10733 (interacts with) 7531", "name" : "10733 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 16450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16446", "source" : "5437", "target" : "5397", "shared_name" : "10733 (interacts with) 85378", "name" : "10733 (interacts with) 85378", "interaction" : "interacts with", "SUID" : 16446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16442", "source" : "5437", "target" : "4021", "shared_name" : "10733 (interacts with) 203068", "name" : "10733 (interacts with) 203068", "interaction" : "interacts with", "SUID" : 16442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16438", "source" : "5437", "target" : "2665", "shared_name" : "10733 (interacts with) 27229", "name" : "10733 (interacts with) 27229", "interaction" : "interacts with", "SUID" : 16438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16434", "source" : "5437", "target" : "4245", "shared_name" : "10733 (interacts with) 91147", "name" : "10733 (interacts with) 91147", "interaction" : "interacts with", "SUID" : 16434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16430", "source" : "5437", "target" : "269", "shared_name" : "10733 (interacts with) 51259", "name" : "10733 (interacts with) 51259", "interaction" : "interacts with", "SUID" : 16430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16426", "source" : "5437", "target" : "5969", "shared_name" : "10733 (interacts with) 10382", "name" : "10733 (interacts with) 10382", "interaction" : "interacts with", "SUID" : 16426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16422", "source" : "5437", "target" : "4321", "shared_name" : "10733 (interacts with) 132320", "name" : "10733 (interacts with) 132320", "interaction" : "interacts with", "SUID" : 16422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16418", "source" : "5437", "target" : "2341", "shared_name" : "10733 (interacts with) 23322", "name" : "10733 (interacts with) 23322", "interaction" : "interacts with", "SUID" : 16418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16414", "source" : "5437", "target" : "2357", "shared_name" : "10733 (interacts with) 79600", "name" : "10733 (interacts with) 79600", "interaction" : "interacts with", "SUID" : 16414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16410", "source" : "5437", "target" : "5641", "shared_name" : "10733 (interacts with) 5518", "name" : "10733 (interacts with) 5518", "interaction" : "interacts with", "SUID" : 16410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16534", "source" : "5429", "target" : "5649", "shared_name" : "5048 (interacts with) 5265", "name" : "5048 (interacts with) 5265", "interaction" : "interacts with", "SUID" : 16534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16530", "source" : "5429", "target" : "1093", "shared_name" : "5048 (interacts with) 5274", "name" : "5048 (interacts with) 5274", "interaction" : "interacts with", "SUID" : 16530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16526", "source" : "5429", "target" : "237", "shared_name" : "5048 (interacts with) 5649", "name" : "5048 (interacts with) 5649", "interaction" : "interacts with", "SUID" : 16526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16522", "source" : "5429", "target" : "5713", "shared_name" : "5048 (interacts with) 7531", "name" : "5048 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 16522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16518", "source" : "5429", "target" : "5397", "shared_name" : "5048 (interacts with) 85378", "name" : "5048 (interacts with) 85378", "interaction" : "interacts with", "SUID" : 16518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16514", "source" : "5429", "target" : "4245", "shared_name" : "5048 (interacts with) 91147", "name" : "5048 (interacts with) 91147", "interaction" : "interacts with", "SUID" : 16514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16510", "source" : "5429", "target" : "269", "shared_name" : "5048 (interacts with) 51259", "name" : "5048 (interacts with) 51259", "interaction" : "interacts with", "SUID" : 16510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16506", "source" : "5429", "target" : "2665", "shared_name" : "5048 (interacts with) 27229", "name" : "5048 (interacts with) 27229", "interaction" : "interacts with", "SUID" : 16506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16502", "source" : "5429", "target" : "4021", "shared_name" : "5048 (interacts with) 203068", "name" : "5048 (interacts with) 203068", "interaction" : "interacts with", "SUID" : 16502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16498", "source" : "5429", "target" : "5969", "shared_name" : "5048 (interacts with) 10382", "name" : "5048 (interacts with) 10382", "interaction" : "interacts with", "SUID" : 16498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16494", "source" : "5429", "target" : "4497", "shared_name" : "5048 (interacts with) 8243", "name" : "5048 (interacts with) 8243", "interaction" : "interacts with", "SUID" : 16494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16490", "source" : "5429", "target" : "2357", "shared_name" : "5048 (interacts with) 79600", "name" : "5048 (interacts with) 79600", "interaction" : "interacts with", "SUID" : 16490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16486", "source" : "5429", "target" : "4797", "shared_name" : "5048 (interacts with) 10735", "name" : "5048 (interacts with) 10735", "interaction" : "interacts with", "SUID" : 16486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16482", "source" : "5429", "target" : "4321", "shared_name" : "5048 (interacts with) 132320", "name" : "5048 (interacts with) 132320", "interaction" : "interacts with", "SUID" : 16482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16478", "source" : "5429", "target" : "2341", "shared_name" : "5048 (interacts with) 23322", "name" : "5048 (interacts with) 23322", "interaction" : "interacts with", "SUID" : 16478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16474", "source" : "5429", "target" : "4549", "shared_name" : "5048 (interacts with) 5903", "name" : "5048 (interacts with) 5903", "interaction" : "interacts with", "SUID" : 16474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16470", "source" : "5429", "target" : "5037", "shared_name" : "5048 (interacts with) 5515", "name" : "5048 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 16470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16466", "source" : "5429", "target" : "5437", "shared_name" : "5048 (interacts with) 10733", "name" : "5048 (interacts with) 10733", "interaction" : "interacts with", "SUID" : 16466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16462", "source" : "5429", "target" : "5641", "shared_name" : "5048 (interacts with) 5518", "name" : "5048 (interacts with) 5518", "interaction" : "interacts with", "SUID" : 16462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16458", "source" : "5429", "target" : "4997", "shared_name" : "5048 (interacts with) 54820", "name" : "5048 (interacts with) 54820", "interaction" : "interacts with", "SUID" : 16458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16630", "source" : "5425", "target" : "5285", "shared_name" : "627 (interacts with) 10133", "name" : "627 (interacts with) 10133", "interaction" : "interacts with", "SUID" : 16630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16626", "source" : "5425", "target" : "1069", "shared_name" : "627 (interacts with) 5879", "name" : "627 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 16626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16622", "source" : "5425", "target" : "637", "shared_name" : "627 (interacts with) 6654", "name" : "627 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 16622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16618", "source" : "5425", "target" : "825", "shared_name" : "627 (interacts with) 25942", "name" : "627 (interacts with) 25942", "interaction" : "interacts with", "SUID" : 16618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16614", "source" : "5425", "target" : "817", "shared_name" : "627 (interacts with) 5728", "name" : "627 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 16614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16610", "source" : "5425", "target" : "3569", "shared_name" : "627 (interacts with) 4893", "name" : "627 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 16610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16606", "source" : "5425", "target" : "4213", "shared_name" : "627 (interacts with) 5295", "name" : "627 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 16606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16602", "source" : "5425", "target" : "5225", "shared_name" : "627 (interacts with) 5290", "name" : "627 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 16602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16598", "source" : "5425", "target" : "3573", "shared_name" : "627 (interacts with) 3845", "name" : "627 (interacts with) 3845", "interaction" : "interacts with", "SUID" : 16598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16594", "source" : "5425", "target" : "1209", "shared_name" : "627 (interacts with) 51763", "name" : "627 (interacts with) 51763", "interaction" : "interacts with", "SUID" : 16594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16590", "source" : "5425", "target" : "3393", "shared_name" : "627 (interacts with) 9402", "name" : "627 (interacts with) 9402", "interaction" : "interacts with", "SUID" : 16590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16586", "source" : "5425", "target" : "2625", "shared_name" : "627 (interacts with) 3065", "name" : "627 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 16586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16582", "source" : "5425", "target" : "2329", "shared_name" : "627 (interacts with) 2904", "name" : "627 (interacts with) 2904", "interaction" : "interacts with", "SUID" : 16582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16578", "source" : "5425", "target" : "3685", "shared_name" : "627 (interacts with) 3265", "name" : "627 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 16578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16574", "source" : "5425", "target" : "5569", "shared_name" : "627 (interacts with) 59345", "name" : "627 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 16574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16570", "source" : "5425", "target" : "6129", "shared_name" : "627 (interacts with) 2263", "name" : "627 (interacts with) 2263", "interaction" : "interacts with", "SUID" : 16570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16566", "source" : "5425", "target" : "6121", "shared_name" : "627 (interacts with) 2260", "name" : "627 (interacts with) 2260", "interaction" : "interacts with", "SUID" : 16566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16562", "source" : "5425", "target" : "6033", "shared_name" : "627 (interacts with) 11160", "name" : "627 (interacts with) 11160", "interaction" : "interacts with", "SUID" : 16562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16558", "source" : "5425", "target" : "3381", "shared_name" : "627 (interacts with) 2214", "name" : "627 (interacts with) 2214", "interaction" : "interacts with", "SUID" : 16558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16554", "source" : "5425", "target" : "6021", "shared_name" : "627 (interacts with) 26999", "name" : "627 (interacts with) 26999", "interaction" : "interacts with", "SUID" : 16554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16550", "source" : "5425", "target" : "3033", "shared_name" : "627 (interacts with) 1020", "name" : "627 (interacts with) 1020", "interaction" : "interacts with", "SUID" : 16550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16546", "source" : "5425", "target" : "4073", "shared_name" : "627 (interacts with) 29760", "name" : "627 (interacts with) 29760", "interaction" : "interacts with", "SUID" : 16546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16542", "source" : "5425", "target" : "4209", "shared_name" : "627 (interacts with) 4915", "name" : "627 (interacts with) 4915", "interaction" : "interacts with", "SUID" : 16542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16538", "source" : "5425", "target" : "2773", "shared_name" : "627 (interacts with) 4908", "name" : "627 (interacts with) 4908", "interaction" : "interacts with", "SUID" : 16538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16666", "source" : "5421", "target" : "2125", "shared_name" : "213 (interacts with) 2512", "name" : "213 (interacts with) 2512", "interaction" : "interacts with", "SUID" : 16666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16662", "source" : "5421", "target" : "245", "shared_name" : "213 (interacts with) 2936", "name" : "213 (interacts with) 2936", "interaction" : "interacts with", "SUID" : 16662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16658", "source" : "5421", "target" : "533", "shared_name" : "213 (interacts with) 4036", "name" : "213 (interacts with) 4036", "interaction" : "interacts with", "SUID" : 16658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16654", "source" : "5421", "target" : "369", "shared_name" : "213 (interacts with) 7173", "name" : "213 (interacts with) 7173", "interaction" : "interacts with", "SUID" : 16654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16650", "source" : "5421", "target" : "5649", "shared_name" : "213 (interacts with) 5265", "name" : "213 (interacts with) 5265", "interaction" : "interacts with", "SUID" : 16650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16646", "source" : "5421", "target" : "4605", "shared_name" : "213 (interacts with) 7276", "name" : "213 (interacts with) 7276", "interaction" : "interacts with", "SUID" : 16646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16642", "source" : "5421", "target" : "3473", "shared_name" : "213 (interacts with) 6528", "name" : "213 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 16642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16638", "source" : "5421", "target" : "3589", "shared_name" : "213 (interacts with) 6567", "name" : "213 (interacts with) 6567", "interaction" : "interacts with", "SUID" : 16638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16634", "source" : "5421", "target" : "6149", "shared_name" : "213 (interacts with) 335", "name" : "213 (interacts with) 335", "interaction" : "interacts with", "SUID" : 16634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16750", "source" : "5413", "target" : "3353", "shared_name" : "10717 (interacts with) 1203", "name" : "10717 (interacts with) 1203", "interaction" : "interacts with", "SUID" : 16750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16746", "source" : "5413", "target" : "5245", "shared_name" : "10717 (interacts with) 1201", "name" : "10717 (interacts with) 1201", "interaction" : "interacts with", "SUID" : 16746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16742", "source" : "5413", "target" : "3433", "shared_name" : "10717 (interacts with) 26503", "name" : "10717 (interacts with) 26503", "interaction" : "interacts with", "SUID" : 16742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16738", "source" : "5413", "target" : "2225", "shared_name" : "10717 (interacts with) 4864", "name" : "10717 (interacts with) 4864", "interaction" : "interacts with", "SUID" : 16738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16734", "source" : "5413", "target" : "5221", "shared_name" : "10717 (interacts with) 285362", "name" : "10717 (interacts with) 285362", "interaction" : "interacts with", "SUID" : 16734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16730", "source" : "5413", "target" : "3733", "shared_name" : "10717 (interacts with) 2760", "name" : "10717 (interacts with) 2760", "interaction" : "interacts with", "SUID" : 16730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16726", "source" : "5413", "target" : "1193", "shared_name" : "10717 (interacts with) 5660", "name" : "10717 (interacts with) 5660", "interaction" : "interacts with", "SUID" : 16726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16722", "source" : "5413", "target" : "1261", "shared_name" : "10717 (interacts with) 57192", "name" : "10717 (interacts with) 57192", "interaction" : "interacts with", "SUID" : 16722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16718", "source" : "5413", "target" : "5937", "shared_name" : "10717 (interacts with) 8120", "name" : "10717 (interacts with) 8120", "interaction" : "interacts with", "SUID" : 16718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16714", "source" : "5413", "target" : "3693", "shared_name" : "10717 (interacts with) 8943", "name" : "10717 (interacts with) 8943", "interaction" : "interacts with", "SUID" : 16714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16710", "source" : "5413", "target" : "1677", "shared_name" : "10717 (interacts with) 8905", "name" : "10717 (interacts with) 8905", "interaction" : "interacts with", "SUID" : 16710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16706", "source" : "5413", "target" : "2233", "shared_name" : "10717 (interacts with) 9516", "name" : "10717 (interacts with) 9516", "interaction" : "interacts with", "SUID" : 16706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16702", "source" : "5413", "target" : "4393", "shared_name" : "10717 (interacts with) 950", "name" : "10717 (interacts with) 950", "interaction" : "interacts with", "SUID" : 16702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16698", "source" : "5413", "target" : "1309", "shared_name" : "10717 (interacts with) 9698", "name" : "10717 (interacts with) 9698", "interaction" : "interacts with", "SUID" : 16698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16694", "source" : "5413", "target" : "4441", "shared_name" : "10717 (interacts with) 1213", "name" : "10717 (interacts with) 1213", "interaction" : "interacts with", "SUID" : 16694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16690", "source" : "5413", "target" : "3981", "shared_name" : "10717 (interacts with) 1785", "name" : "10717 (interacts with) 1785", "interaction" : "interacts with", "SUID" : 16690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16686", "source" : "5413", "target" : "3273", "shared_name" : "10717 (interacts with) 351", "name" : "10717 (interacts with) 351", "interaction" : "interacts with", "SUID" : 16686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16682", "source" : "5413", "target" : "1225", "shared_name" : "10717 (interacts with) 375", "name" : "10717 (interacts with) 375", "interaction" : "interacts with", "SUID" : 16682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16678", "source" : "5413", "target" : "1445", "shared_name" : "10717 (interacts with) 9179", "name" : "10717 (interacts with) 9179", "interaction" : "interacts with", "SUID" : 16678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16674", "source" : "5413", "target" : "4849", "shared_name" : "10717 (interacts with) 11154", "name" : "10717 (interacts with) 11154", "interaction" : "interacts with", "SUID" : 16674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16670", "source" : "5413", "target" : "4813", "shared_name" : "10717 (interacts with) 23431", "name" : "10717 (interacts with) 23431", "interaction" : "interacts with", "SUID" : 16670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16770", "source" : "5409", "target" : "1097", "shared_name" : "9734 (interacts with) 79718", "name" : "9734 (interacts with) 79718", "interaction" : "interacts with", "SUID" : 16770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16766", "source" : "5409", "target" : "4097", "shared_name" : "9734 (interacts with) 9611", "name" : "9734 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 16766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16762", "source" : "5409", "target" : "5421", "shared_name" : "9734 (interacts with) 213", "name" : "9734 (interacts with) 213", "interaction" : "interacts with", "SUID" : 16762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16758", "source" : "5409", "target" : "5649", "shared_name" : "9734 (interacts with) 5265", "name" : "9734 (interacts with) 5265", "interaction" : "interacts with", "SUID" : 16758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16754", "source" : "5409", "target" : "969", "shared_name" : "9734 (interacts with) 2670", "name" : "9734 (interacts with) 2670", "interaction" : "interacts with", "SUID" : 16754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16782", "source" : "5405", "target" : "3809", "shared_name" : "57572 (interacts with) 81704", "name" : "57572 (interacts with) 81704", "interaction" : "interacts with", "SUID" : 16782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16778", "source" : "5405", "target" : "3521", "shared_name" : "57572 (interacts with) 85440", "name" : "57572 (interacts with) 85440", "interaction" : "interacts with", "SUID" : 16778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16774", "source" : "5405", "target" : "1069", "shared_name" : "57572 (interacts with) 5879", "name" : "57572 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 16774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16790", "source" : "5401", "target" : "4577", "shared_name" : "5373 (interacts with) 7167", "name" : "5373 (interacts with) 7167", "interaction" : "interacts with", "SUID" : 16790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16786", "source" : "5401", "target" : "405", "shared_name" : "5373 (interacts with) 54187", "name" : "5373 (interacts with) 54187", "interaction" : "interacts with", "SUID" : 16786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16794", "source" : "5397", "target" : "5713", "shared_name" : "85378 (interacts with) 7531", "name" : "85378 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 16794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16826", "source" : "5393", "target" : "2945", "shared_name" : "2395 (interacts with) 471", "name" : "2395 (interacts with) 471", "interaction" : "interacts with", "SUID" : 16826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16822", "source" : "5393", "target" : "6057", "shared_name" : "2395 (interacts with) 3162", "name" : "2395 (interacts with) 3162", "interaction" : "interacts with", "SUID" : 16822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16818", "source" : "5393", "target" : "6133", "shared_name" : "2395 (interacts with) 54658", "name" : "2395 (interacts with) 54658", "interaction" : "interacts with", "SUID" : 16818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16814", "source" : "5393", "target" : "6089", "shared_name" : "2395 (interacts with) 3145", "name" : "2395 (interacts with) 3145", "interaction" : "interacts with", "SUID" : 16814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16810", "source" : "5393", "target" : "1389", "shared_name" : "2395 (interacts with) 92609", "name" : "2395 (interacts with) 92609", "interaction" : "interacts with", "SUID" : 16810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16806", "source" : "5393", "target" : "529", "shared_name" : "2395 (interacts with) 23203", "name" : "2395 (interacts with) 23203", "interaction" : "interacts with", "SUID" : 16806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16802", "source" : "5393", "target" : "4253", "shared_name" : "2395 (interacts with) 84706", "name" : "2395 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 16802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16798", "source" : "5393", "target" : "4353", "shared_name" : "2395 (interacts with) 9512", "name" : "2395 (interacts with) 9512", "interaction" : "interacts with", "SUID" : 16798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16906", "source" : "5389", "target" : "3593", "shared_name" : "551 (interacts with) 5530", "name" : "551 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 16906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16902", "source" : "5389", "target" : "1241", "shared_name" : "551 (interacts with) 808", "name" : "551 (interacts with) 808", "interaction" : "interacts with", "SUID" : 16902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16898", "source" : "5389", "target" : "993", "shared_name" : "551 (interacts with) 801", "name" : "551 (interacts with) 801", "interaction" : "interacts with", "SUID" : 16898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16894", "source" : "5389", "target" : "1201", "shared_name" : "551 (interacts with) 805", "name" : "551 (interacts with) 805", "interaction" : "interacts with", "SUID" : 16894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16890", "source" : "5389", "target" : "3589", "shared_name" : "551 (interacts with) 6567", "name" : "551 (interacts with) 6567", "interaction" : "interacts with", "SUID" : 16890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16886", "source" : "5389", "target" : "2969", "shared_name" : "551 (interacts with) 8867", "name" : "551 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 16886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16882", "source" : "5389", "target" : "4157", "shared_name" : "551 (interacts with) 85021", "name" : "551 (interacts with) 85021", "interaction" : "interacts with", "SUID" : 16882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16878", "source" : "5389", "target" : "5225", "shared_name" : "551 (interacts with) 5290", "name" : "551 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 16878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16874", "source" : "5389", "target" : "4213", "shared_name" : "551 (interacts with) 5295", "name" : "551 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 16874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16870", "source" : "5389", "target" : "3465", "shared_name" : "551 (interacts with) 5296", "name" : "551 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 16870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16866", "source" : "5389", "target" : "1909", "shared_name" : "551 (interacts with) 5286", "name" : "551 (interacts with) 5286", "interaction" : "interacts with", "SUID" : 16866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16862", "source" : "5389", "target" : "2429", "shared_name" : "551 (interacts with) 4952", "name" : "551 (interacts with) 4952", "interaction" : "interacts with", "SUID" : 16862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16858", "source" : "5389", "target" : "1209", "shared_name" : "551 (interacts with) 51763", "name" : "551 (interacts with) 51763", "interaction" : "interacts with", "SUID" : 16858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16854", "source" : "5389", "target" : "5569", "shared_name" : "551 (interacts with) 59345", "name" : "551 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 16854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16850", "source" : "5389", "target" : "3981", "shared_name" : "551 (interacts with) 1785", "name" : "551 (interacts with) 1785", "interaction" : "interacts with", "SUID" : 16850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16846", "source" : "5389", "target" : "4441", "shared_name" : "551 (interacts with) 1213", "name" : "551 (interacts with) 1213", "interaction" : "interacts with", "SUID" : 16846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16842", "source" : "5389", "target" : "3985", "shared_name" : "551 (interacts with) 274", "name" : "551 (interacts with) 274", "interaction" : "interacts with", "SUID" : 16842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16838", "source" : "5389", "target" : "2009", "shared_name" : "551 (interacts with) 79133", "name" : "551 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 16838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16834", "source" : "5389", "target" : "1493", "shared_name" : "551 (interacts with) 7428", "name" : "551 (interacts with) 7428", "interaction" : "interacts with", "SUID" : 16834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16830", "source" : "5389", "target" : "4309", "shared_name" : "551 (interacts with) 5654", "name" : "551 (interacts with) 5654", "interaction" : "interacts with", "SUID" : 16830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16950", "source" : "5385", "target" : "6181", "shared_name" : "1349 (interacts with) 84987", "name" : "1349 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 16950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16946", "source" : "5385", "target" : "2785", "shared_name" : "1349 (interacts with) 1351", "name" : "1349 (interacts with) 1351", "interaction" : "interacts with", "SUID" : 16946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16942", "source" : "5385", "target" : "1241", "shared_name" : "1349 (interacts with) 808", "name" : "1349 (interacts with) 808", "interaction" : "interacts with", "SUID" : 16942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16938", "source" : "5385", "target" : "5853", "shared_name" : "1349 (interacts with) 4709", "name" : "1349 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 16938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16934", "source" : "5385", "target" : "5689", "shared_name" : "1349 (interacts with) 27089", "name" : "1349 (interacts with) 27089", "interaction" : "interacts with", "SUID" : 16934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16930", "source" : "5385", "target" : "5857", "shared_name" : "1349 (interacts with) 4694", "name" : "1349 (interacts with) 4694", "interaction" : "interacts with", "SUID" : 16930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16926", "source" : "5385", "target" : "5601", "shared_name" : "1349 (interacts with) 84833", "name" : "1349 (interacts with) 84833", "interaction" : "interacts with", "SUID" : 16926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16922", "source" : "5385", "target" : "5589", "shared_name" : "1349 (interacts with) 4513", "name" : "1349 (interacts with) 4513", "interaction" : "interacts with", "SUID" : 16922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16918", "source" : "5385", "target" : "2573", "shared_name" : "1349 (interacts with) 4514", "name" : "1349 (interacts with) 4514", "interaction" : "interacts with", "SUID" : 16918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16914", "source" : "5385", "target" : "1605", "shared_name" : "1349 (interacts with) 6648", "name" : "1349 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 16914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16910", "source" : "5385", "target" : "5585", "shared_name" : "1349 (interacts with) 4512", "name" : "1349 (interacts with) 4512", "interaction" : "interacts with", "SUID" : 16910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17254", "source" : "5381", "target" : "1105", "shared_name" : "10229 (interacts with) 493753", "name" : "10229 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 17254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17250", "source" : "5381", "target" : "1369", "shared_name" : "10229 (interacts with) 27247", "name" : "10229 (interacts with) 27247", "interaction" : "interacts with", "SUID" : 17250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17246", "source" : "5381", "target" : "2121", "shared_name" : "10229 (interacts with) 11232", "name" : "10229 (interacts with) 11232", "interaction" : "interacts with", "SUID" : 17246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17242", "source" : "5381", "target" : "3065", "shared_name" : "10229 (interacts with) 25828", "name" : "10229 (interacts with) 25828", "interaction" : "interacts with", "SUID" : 17242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17238", "source" : "5381", "target" : "521", "shared_name" : "10229 (interacts with) 85476", "name" : "10229 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 17238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17234", "source" : "5381", "target" : "5689", "shared_name" : "10229 (interacts with) 27089", "name" : "10229 (interacts with) 27089", "interaction" : "interacts with", "SUID" : 17234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17230", "source" : "5381", "target" : "5169", "shared_name" : "10229 (interacts with) 1355", "name" : "10229 (interacts with) 1355", "interaction" : "interacts with", "SUID" : 17230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17226", "source" : "5381", "target" : "3705", "shared_name" : "10229 (interacts with) 87178", "name" : "10229 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 17226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17222", "source" : "5381", "target" : "4945", "shared_name" : "10229 (interacts with) 4722", "name" : "10229 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 17222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17218", "source" : "5381", "target" : "3545", "shared_name" : "10229 (interacts with) 708", "name" : "10229 (interacts with) 708", "interaction" : "interacts with", "SUID" : 17218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17214", "source" : "5381", "target" : "5605", "shared_name" : "10229 (interacts with) 51601", "name" : "10229 (interacts with) 51601", "interaction" : "interacts with", "SUID" : 17214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17210", "source" : "5381", "target" : "1573", "shared_name" : "10229 (interacts with) 4723", "name" : "10229 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 17210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17206", "source" : "5381", "target" : "5189", "shared_name" : "10229 (interacts with) 57176", "name" : "10229 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 17206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17202", "source" : "5381", "target" : "1053", "shared_name" : "10229 (interacts with) 81689", "name" : "10229 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 17202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17198", "source" : "5381", "target" : "1637", "shared_name" : "10229 (interacts with) 91574", "name" : "10229 (interacts with) 91574", "interaction" : "interacts with", "SUID" : 17198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17194", "source" : "5381", "target" : "6181", "shared_name" : "10229 (interacts with) 84987", "name" : "10229 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 17194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17190", "source" : "5381", "target" : "2297", "shared_name" : "10229 (interacts with) 55005", "name" : "10229 (interacts with) 55005", "interaction" : "interacts with", "SUID" : 17190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17186", "source" : "5381", "target" : "1921", "shared_name" : "10229 (interacts with) 1352", "name" : "10229 (interacts with) 1352", "interaction" : "interacts with", "SUID" : 17186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17182", "source" : "5381", "target" : "4405", "shared_name" : "10229 (interacts with) 10667", "name" : "10229 (interacts with) 10667", "interaction" : "interacts with", "SUID" : 17182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17178", "source" : "5381", "target" : "3617", "shared_name" : "10229 (interacts with) 4704", "name" : "10229 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 17178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17174", "source" : "5381", "target" : "3621", "shared_name" : "10229 (interacts with) 6834", "name" : "10229 (interacts with) 6834", "interaction" : "interacts with", "SUID" : 17174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17170", "source" : "5381", "target" : "721", "shared_name" : "10229 (interacts with) 79731", "name" : "10229 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 17170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17166", "source" : "5381", "target" : "621", "shared_name" : "10229 (interacts with) 122961", "name" : "10229 (interacts with) 122961", "interaction" : "interacts with", "SUID" : 17166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17162", "source" : "5381", "target" : "4141", "shared_name" : "10229 (interacts with) 617", "name" : "10229 (interacts with) 617", "interaction" : "interacts with", "SUID" : 17162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17158", "source" : "5381", "target" : "2105", "shared_name" : "10229 (interacts with) 56945", "name" : "10229 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 17158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17154", "source" : "5381", "target" : "4621", "shared_name" : "10229 (interacts with) 57038", "name" : "10229 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 17154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17150", "source" : "5381", "target" : "3633", "shared_name" : "10229 (interacts with) 51067", "name" : "10229 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 17150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17146", "source" : "5381", "target" : "4757", "shared_name" : "10229 (interacts with) 9997", "name" : "10229 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 17146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17142", "source" : "5381", "target" : "6049", "shared_name" : "10229 (interacts with) 25973", "name" : "10229 (interacts with) 25973", "interaction" : "interacts with", "SUID" : 17142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17138", "source" : "5381", "target" : "4501", "shared_name" : "10229 (interacts with) 25821", "name" : "10229 (interacts with) 25821", "interaction" : "interacts with", "SUID" : 17138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17134", "source" : "5381", "target" : "5085", "shared_name" : "10229 (interacts with) 56652", "name" : "10229 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 17134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17130", "source" : "5381", "target" : "4897", "shared_name" : "10229 (interacts with) 55149", "name" : "10229 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 17130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17126", "source" : "5381", "target" : "4069", "shared_name" : "10229 (interacts with) 374291", "name" : "10229 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 17126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17122", "source" : "5381", "target" : "2021", "shared_name" : "10229 (interacts with) 5428", "name" : "10229 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 17122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17118", "source" : "5381", "target" : "1929", "shared_name" : "10229 (interacts with) 51218", "name" : "10229 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 17118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17114", "source" : "5381", "target" : "4409", "shared_name" : "10229 (interacts with) 6341", "name" : "10229 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 17114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17110", "source" : "5381", "target" : "713", "shared_name" : "10229 (interacts with) 7019", "name" : "10229 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 17110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17106", "source" : "5381", "target" : "4869", "shared_name" : "10229 (interacts with) 92935", "name" : "10229 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 17106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17102", "source" : "5381", "target" : "2609", "shared_name" : "10229 (interacts with) 29960", "name" : "10229 (interacts with) 29960", "interaction" : "interacts with", "SUID" : 17102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17098", "source" : "5381", "target" : "1477", "shared_name" : "10229 (interacts with) 10352", "name" : "10229 (interacts with) 10352", "interaction" : "interacts with", "SUID" : 17098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17094", "source" : "5381", "target" : "793", "shared_name" : "10229 (interacts with) 137682", "name" : "10229 (interacts with) 137682", "interaction" : "interacts with", "SUID" : 17094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17090", "source" : "5381", "target" : "5685", "shared_name" : "10229 (interacts with) 1340", "name" : "10229 (interacts with) 1340", "interaction" : "interacts with", "SUID" : 17090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17086", "source" : "5381", "target" : "889", "shared_name" : "10229 (interacts with) 80224", "name" : "10229 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 17086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17082", "source" : "5381", "target" : "2837", "shared_name" : "10229 (interacts with) 123263", "name" : "10229 (interacts with) 123263", "interaction" : "interacts with", "SUID" : 17082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17078", "source" : "5381", "target" : "5737", "shared_name" : "10229 (interacts with) 84340", "name" : "10229 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 17078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17074", "source" : "5381", "target" : "2345", "shared_name" : "10229 (interacts with) 200205", "name" : "10229 (interacts with) 200205", "interaction" : "interacts with", "SUID" : 17074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17070", "source" : "5381", "target" : "1561", "shared_name" : "10229 (interacts with) 51117", "name" : "10229 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 17070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17066", "source" : "5381", "target" : "6073", "shared_name" : "10229 (interacts with) 92170", "name" : "10229 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 17066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17062", "source" : "5381", "target" : "477", "shared_name" : "10229 (interacts with) 51021", "name" : "10229 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 17062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17058", "source" : "5381", "target" : "2285", "shared_name" : "10229 (interacts with) 51300", "name" : "10229 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 17058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17054", "source" : "5381", "target" : "6001", "shared_name" : "10229 (interacts with) 55157", "name" : "10229 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 17054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17050", "source" : "5381", "target" : "4017", "shared_name" : "10229 (interacts with) 4719", "name" : "10229 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 17050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17046", "source" : "5381", "target" : "5853", "shared_name" : "10229 (interacts with) 4709", "name" : "10229 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 17046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17042", "source" : "5381", "target" : "1869", "shared_name" : "10229 (interacts with) 4729", "name" : "10229 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 17042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17038", "source" : "5381", "target" : "2741", "shared_name" : "10229 (interacts with) 4695", "name" : "10229 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 17038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17034", "source" : "5381", "target" : "2797", "shared_name" : "10229 (interacts with) 4728", "name" : "10229 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 17034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17030", "source" : "5381", "target" : "4061", "shared_name" : "10229 (interacts with) 4705", "name" : "10229 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 17030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17026", "source" : "5381", "target" : "5845", "shared_name" : "10229 (interacts with) 4714", "name" : "10229 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 17026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17022", "source" : "5381", "target" : "2801", "shared_name" : "10229 (interacts with) 4700", "name" : "10229 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 17022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17018", "source" : "5381", "target" : "5505", "shared_name" : "10229 (interacts with) 29078", "name" : "10229 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 17018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17014", "source" : "5381", "target" : "1197", "shared_name" : "10229 (interacts with) 79587", "name" : "10229 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 17014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17010", "source" : "5381", "target" : "2477", "shared_name" : "10229 (interacts with) 57107", "name" : "10229 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 17010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17006", "source" : "5381", "target" : "3761", "shared_name" : "10229 (interacts with) 25915", "name" : "10229 (interacts with) 25915", "interaction" : "interacts with", "SUID" : 17006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17002", "source" : "5381", "target" : "2689", "shared_name" : "10229 (interacts with) 4715", "name" : "10229 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 17002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16998", "source" : "5381", "target" : "2337", "shared_name" : "10229 (interacts with) 28976", "name" : "10229 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 16998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16994", "source" : "5381", "target" : "2109", "shared_name" : "10229 (interacts with) 51103", "name" : "10229 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 16994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16990", "source" : "5381", "target" : "3973", "shared_name" : "10229 (interacts with) 55572", "name" : "10229 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 16990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16986", "source" : "5381", "target" : "2009", "shared_name" : "10229 (interacts with) 79133", "name" : "10229 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 16986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16982", "source" : "5381", "target" : "4101", "shared_name" : "10229 (interacts with) 65260", "name" : "10229 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 16982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16978", "source" : "5381", "target" : "2825", "shared_name" : "10229 (interacts with) 126328", "name" : "10229 (interacts with) 126328", "interaction" : "interacts with", "SUID" : 16978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16974", "source" : "5381", "target" : "2753", "shared_name" : "10229 (interacts with) 4720", "name" : "10229 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 16974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16970", "source" : "5381", "target" : "1005", "shared_name" : "10229 (interacts with) 1728", "name" : "10229 (interacts with) 1728", "interaction" : "interacts with", "SUID" : 16970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16966", "source" : "5381", "target" : "1013", "shared_name" : "10229 (interacts with) 6898", "name" : "10229 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 16966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16962", "source" : "5381", "target" : "5733", "shared_name" : "10229 (interacts with) 57017", "name" : "10229 (interacts with) 57017", "interaction" : "interacts with", "SUID" : 16962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16958", "source" : "5381", "target" : "5985", "shared_name" : "10229 (interacts with) 27235", "name" : "10229 (interacts with) 27235", "interaction" : "interacts with", "SUID" : 16958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "16954", "source" : "5381", "target" : "1129", "shared_name" : "10229 (interacts with) 57505", "name" : "10229 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 16954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17258", "source" : "5377", "target" : "5357", "shared_name" : "6638 (interacts with) 114034", "name" : "6638 (interacts with) 114034", "interaction" : "interacts with", "SUID" : 17258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17310", "source" : "5373", "target" : "1429", "shared_name" : "28962 (interacts with) 65125", "name" : "28962 (interacts with) 65125", "interaction" : "interacts with", "SUID" : 17310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17306", "source" : "5373", "target" : "3969", "shared_name" : "28962 (interacts with) 57468", "name" : "28962 (interacts with) 57468", "interaction" : "interacts with", "SUID" : 17306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17302", "source" : "5373", "target" : "1681", "shared_name" : "28962 (interacts with) 9990", "name" : "28962 (interacts with) 9990", "interaction" : "interacts with", "SUID" : 17302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17298", "source" : "5373", "target" : "5677", "shared_name" : "28962 (interacts with) 5189", "name" : "28962 (interacts with) 5189", "interaction" : "interacts with", "SUID" : 17298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17294", "source" : "5373", "target" : "4673", "shared_name" : "28962 (interacts with) 1186", "name" : "28962 (interacts with) 1186", "interaction" : "interacts with", "SUID" : 17294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17290", "source" : "5373", "target" : "4133", "shared_name" : "28962 (interacts with) 427", "name" : "28962 (interacts with) 427", "interaction" : "interacts with", "SUID" : 17290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17286", "source" : "5373", "target" : "4689", "shared_name" : "28962 (interacts with) 291", "name" : "28962 (interacts with) 291", "interaction" : "interacts with", "SUID" : 17286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17282", "source" : "5373", "target" : "4853", "shared_name" : "28962 (interacts with) 545", "name" : "28962 (interacts with) 545", "interaction" : "interacts with", "SUID" : 17282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17278", "source" : "5373", "target" : "4513", "shared_name" : "28962 (interacts with) 6904", "name" : "28962 (interacts with) 6904", "interaction" : "interacts with", "SUID" : 17278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17274", "source" : "5373", "target" : "4821", "shared_name" : "28962 (interacts with) 28982", "name" : "28962 (interacts with) 28982", "interaction" : "interacts with", "SUID" : 17274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17270", "source" : "5373", "target" : "5969", "shared_name" : "28962 (interacts with) 10382", "name" : "28962 (interacts with) 10382", "interaction" : "interacts with", "SUID" : 17270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17266", "source" : "5373", "target" : "3737", "shared_name" : "28962 (interacts with) 3064", "name" : "28962 (interacts with) 3064", "interaction" : "interacts with", "SUID" : 17266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17262", "source" : "5373", "target" : "4505", "shared_name" : "28962 (interacts with) 5190", "name" : "28962 (interacts with) 5190", "interaction" : "interacts with", "SUID" : 17262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17422", "source" : "5365", "target" : "2977", "shared_name" : "2893 (interacts with) 4747", "name" : "2893 (interacts with) 4747", "interaction" : "interacts with", "SUID" : 17422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17418", "source" : "5365", "target" : "4509", "shared_name" : "2893 (interacts with) 2902", "name" : "2893 (interacts with) 2902", "interaction" : "interacts with", "SUID" : 17418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17414", "source" : "5365", "target" : "2329", "shared_name" : "2893 (interacts with) 2904", "name" : "2893 (interacts with) 2904", "interaction" : "interacts with", "SUID" : 17414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17410", "source" : "5365", "target" : "3657", "shared_name" : "2893 (interacts with) 2895", "name" : "2893 (interacts with) 2895", "interaction" : "interacts with", "SUID" : 17410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17406", "source" : "5365", "target" : "997", "shared_name" : "2893 (interacts with) 7431", "name" : "2893 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 17406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17402", "source" : "5365", "target" : "2581", "shared_name" : "2893 (interacts with) 7170", "name" : "2893 (interacts with) 7170", "interaction" : "interacts with", "SUID" : 17402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17398", "source" : "5365", "target" : "5989", "shared_name" : "2893 (interacts with) 7273", "name" : "2893 (interacts with) 7273", "interaction" : "interacts with", "SUID" : 17398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17394", "source" : "5365", "target" : "5785", "shared_name" : "2893 (interacts with) 6857", "name" : "2893 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 17394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17390", "source" : "5365", "target" : "5929", "shared_name" : "2893 (interacts with) 6616", "name" : "2893 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 17390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17386", "source" : "5365", "target" : "609", "shared_name" : "2893 (interacts with) 6812", "name" : "2893 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 17386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17382", "source" : "5365", "target" : "309", "shared_name" : "2893 (interacts with) 6536", "name" : "2893 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 17382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17378", "source" : "5365", "target" : "5877", "shared_name" : "2893 (interacts with) 6535", "name" : "2893 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 17378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17374", "source" : "5365", "target" : "2877", "shared_name" : "2893 (interacts with) 340024", "name" : "2893 (interacts with) 340024", "interaction" : "interacts with", "SUID" : 17374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17370", "source" : "5365", "target" : "3781", "shared_name" : "2893 (interacts with) 9152", "name" : "2893 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 17370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17366", "source" : "5365", "target" : "3601", "shared_name" : "2893 (interacts with) 6531", "name" : "2893 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 17366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17362", "source" : "5365", "target" : "401", "shared_name" : "2893 (interacts with) 6532", "name" : "2893 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 17362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17358", "source" : "5365", "target" : "3473", "shared_name" : "2893 (interacts with) 6528", "name" : "2893 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 17358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17354", "source" : "5365", "target" : "1385", "shared_name" : "2893 (interacts with) 6520", "name" : "2893 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 17354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17350", "source" : "5365", "target" : "3077", "shared_name" : "2893 (interacts with) 6506", "name" : "2893 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 17350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17346", "source" : "5365", "target" : "5805", "shared_name" : "2893 (interacts with) 6575", "name" : "2893 (interacts with) 6575", "interaction" : "interacts with", "SUID" : 17346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17342", "source" : "5365", "target" : "4025", "shared_name" : "2893 (interacts with) 284111", "name" : "2893 (interacts with) 284111", "interaction" : "interacts with", "SUID" : 17342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17338", "source" : "5365", "target" : "6009", "shared_name" : "2893 (interacts with) 64849", "name" : "2893 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 17338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17334", "source" : "5365", "target" : "5729", "shared_name" : "2893 (interacts with) 861", "name" : "2893 (interacts with) 861", "interaction" : "interacts with", "SUID" : 17334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17330", "source" : "5365", "target" : "3593", "shared_name" : "2893 (interacts with) 5530", "name" : "2893 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 17330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17326", "source" : "5365", "target" : "3177", "shared_name" : "2893 (interacts with) 5321", "name" : "2893 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 17326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17322", "source" : "5365", "target" : "1357", "shared_name" : "2893 (interacts with) 58498", "name" : "2893 (interacts with) 58498", "interaction" : "interacts with", "SUID" : 17322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17318", "source" : "5365", "target" : "565", "shared_name" : "2893 (interacts with) 4772", "name" : "2893 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 17318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17314", "source" : "5365", "target" : "1521", "shared_name" : "2893 (interacts with) 84879", "name" : "2893 (interacts with) 84879", "interaction" : "interacts with", "SUID" : 17314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17566", "source" : "5361", "target" : "3305", "shared_name" : "5604 (interacts with) 7040", "name" : "5604 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 17566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17562", "source" : "5361", "target" : "2153", "shared_name" : "5604 (interacts with) 7042", "name" : "5604 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 17562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17558", "source" : "5361", "target" : "3409", "shared_name" : "5604 (interacts with) 7043", "name" : "5604 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 17558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17554", "source" : "5361", "target" : "4065", "shared_name" : "5604 (interacts with) 7124", "name" : "5604 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 17554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17550", "source" : "5361", "target" : "1201", "shared_name" : "5604 (interacts with) 805", "name" : "5604 (interacts with) 805", "interaction" : "interacts with", "SUID" : 17550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17546", "source" : "5361", "target" : "1241", "shared_name" : "5604 (interacts with) 808", "name" : "5604 (interacts with) 808", "interaction" : "interacts with", "SUID" : 17546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17542", "source" : "5361", "target" : "5965", "shared_name" : "5604 (interacts with) 596", "name" : "5604 (interacts with) 596", "interaction" : "interacts with", "SUID" : 17542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17538", "source" : "5361", "target" : "637", "shared_name" : "5604 (interacts with) 6654", "name" : "5604 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 17538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17534", "source" : "5361", "target" : "993", "shared_name" : "5604 (interacts with) 801", "name" : "5604 (interacts with) 801", "interaction" : "interacts with", "SUID" : 17534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17530", "source" : "5361", "target" : "3577", "shared_name" : "5604 (interacts with) 5605", "name" : "5604 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 17530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17526", "source" : "5361", "target" : "805", "shared_name" : "5604 (interacts with) 6772", "name" : "5604 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 17526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17522", "source" : "5361", "target" : "4769", "shared_name" : "5604 (interacts with) 7132", "name" : "5604 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 17522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17518", "source" : "5361", "target" : "1405", "shared_name" : "5604 (interacts with) 998", "name" : "5604 (interacts with) 998", "interaction" : "interacts with", "SUID" : 17518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17514", "source" : "5361", "target" : "5313", "shared_name" : "5604 (interacts with) 6197", "name" : "5604 (interacts with) 6197", "interaction" : "interacts with", "SUID" : 17514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17510", "source" : "5361", "target" : "4981", "shared_name" : "5604 (interacts with) 6774", "name" : "5604 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 17510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17506", "source" : "5361", "target" : "2433", "shared_name" : "5604 (interacts with) 6927", "name" : "5604 (interacts with) 6927", "interaction" : "interacts with", "SUID" : 17506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17502", "source" : "5361", "target" : "817", "shared_name" : "5604 (interacts with) 5728", "name" : "5604 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 17502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17498", "source" : "5361", "target" : "829", "shared_name" : "5604 (interacts with) 8772", "name" : "5604 (interacts with) 8772", "interaction" : "interacts with", "SUID" : 17498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17494", "source" : "5361", "target" : "569", "shared_name" : "5604 (interacts with) 7048", "name" : "5604 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 17494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17490", "source" : "5361", "target" : "5941", "shared_name" : "5604 (interacts with) 5914", "name" : "5604 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 17490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17486", "source" : "5361", "target" : "1701", "shared_name" : "5604 (interacts with) 5777", "name" : "5604 (interacts with) 5777", "interaction" : "interacts with", "SUID" : 17486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17482", "source" : "5361", "target" : "5053", "shared_name" : "5604 (interacts with) 857", "name" : "5604 (interacts with) 857", "interaction" : "interacts with", "SUID" : 17482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17478", "source" : "5361", "target" : "4909", "shared_name" : "5604 (interacts with) 823", "name" : "5604 (interacts with) 823", "interaction" : "interacts with", "SUID" : 17478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17474", "source" : "5361", "target" : "4033", "shared_name" : "5604 (interacts with) 613", "name" : "5604 (interacts with) 613", "interaction" : "interacts with", "SUID" : 17474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17470", "source" : "5361", "target" : "6117", "shared_name" : "5604 (interacts with) 9131", "name" : "5604 (interacts with) 9131", "interaction" : "interacts with", "SUID" : 17470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17466", "source" : "5361", "target" : "1697", "shared_name" : "5604 (interacts with) 8818", "name" : "5604 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 17466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17462", "source" : "5361", "target" : "5637", "shared_name" : "5604 (interacts with) 6609", "name" : "5604 (interacts with) 6609", "interaction" : "interacts with", "SUID" : 17462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17458", "source" : "5361", "target" : "3285", "shared_name" : "5604 (interacts with) 8302", "name" : "5604 (interacts with) 8302", "interaction" : "interacts with", "SUID" : 17458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17454", "source" : "5361", "target" : "3841", "shared_name" : "5604 (interacts with) 9444", "name" : "5604 (interacts with) 9444", "interaction" : "interacts with", "SUID" : 17454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17450", "source" : "5361", "target" : "6129", "shared_name" : "5604 (interacts with) 2263", "name" : "5604 (interacts with) 2263", "interaction" : "interacts with", "SUID" : 17450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17446", "source" : "5361", "target" : "2081", "shared_name" : "5604 (interacts with) 5468", "name" : "5604 (interacts with) 5468", "interaction" : "interacts with", "SUID" : 17446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17442", "source" : "5361", "target" : "4437", "shared_name" : "5604 (interacts with) 84168", "name" : "5604 (interacts with) 84168", "interaction" : "interacts with", "SUID" : 17442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17438", "source" : "5361", "target" : "4521", "shared_name" : "5604 (interacts with) 5894", "name" : "5604 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 17438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17434", "source" : "5361", "target" : "5081", "shared_name" : "5604 (interacts with) 5594", "name" : "5604 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 17434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17430", "source" : "5361", "target" : "3569", "shared_name" : "5604 (interacts with) 4893", "name" : "5604 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 17430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17426", "source" : "5361", "target" : "973", "shared_name" : "5604 (interacts with) 5595", "name" : "5604 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 17426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17634", "source" : "5353", "target" : "517", "shared_name" : "2026 (interacts with) 5052", "name" : "2026 (interacts with) 5052", "interaction" : "interacts with", "SUID" : 17634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17630", "source" : "5353", "target" : "6001", "shared_name" : "2026 (interacts with) 55157", "name" : "2026 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 17630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17626", "source" : "5353", "target" : "4617", "shared_name" : "2026 (interacts with) 26227", "name" : "2026 (interacts with) 26227", "interaction" : "interacts with", "SUID" : 17626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17622", "source" : "5353", "target" : "485", "shared_name" : "2026 (interacts with) 593", "name" : "2026 (interacts with) 593", "interaction" : "interacts with", "SUID" : 17622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17618", "source" : "5353", "target" : "1301", "shared_name" : "2026 (interacts with) 5095", "name" : "2026 (interacts with) 5095", "interaction" : "interacts with", "SUID" : 17618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17614", "source" : "5353", "target" : "2881", "shared_name" : "2026 (interacts with) 5160", "name" : "2026 (interacts with) 5160", "interaction" : "interacts with", "SUID" : 17614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17610", "source" : "5353", "target" : "729", "shared_name" : "2026 (interacts with) 5888", "name" : "2026 (interacts with) 5888", "interaction" : "interacts with", "SUID" : 17610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17606", "source" : "5353", "target" : "361", "shared_name" : "2026 (interacts with) 6576", "name" : "2026 (interacts with) 6576", "interaction" : "interacts with", "SUID" : 17606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17602", "source" : "5353", "target" : "5109", "shared_name" : "2026 (interacts with) 790", "name" : "2026 (interacts with) 790", "interaction" : "interacts with", "SUID" : 17602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17598", "source" : "5353", "target" : "1257", "shared_name" : "2026 (interacts with) 3098", "name" : "2026 (interacts with) 3098", "interaction" : "interacts with", "SUID" : 17598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17594", "source" : "5353", "target" : "3445", "shared_name" : "2026 (interacts with) 5091", "name" : "2026 (interacts with) 5091", "interaction" : "interacts with", "SUID" : 17594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17590", "source" : "5353", "target" : "3541", "shared_name" : "2026 (interacts with) 4191", "name" : "2026 (interacts with) 4191", "interaction" : "interacts with", "SUID" : 17590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17586", "source" : "5353", "target" : "1885", "shared_name" : "2026 (interacts with) 8604", "name" : "2026 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 17586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17582", "source" : "5353", "target" : "4577", "shared_name" : "2026 (interacts with) 7167", "name" : "2026 (interacts with) 7167", "interaction" : "interacts with", "SUID" : 17582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17578", "source" : "5353", "target" : "957", "shared_name" : "2026 (interacts with) 5230", "name" : "2026 (interacts with) 5230", "interaction" : "interacts with", "SUID" : 17578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17574", "source" : "5353", "target" : "405", "shared_name" : "2026 (interacts with) 54187", "name" : "2026 (interacts with) 54187", "interaction" : "interacts with", "SUID" : 17574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17570", "source" : "5353", "target" : "741", "shared_name" : "2026 (interacts with) 4830", "name" : "2026 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 17570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17834", "source" : "5349", "target" : "1669", "shared_name" : "440 (interacts with) 6390", "name" : "440 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 17834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17830", "source" : "5349", "target" : "4693", "shared_name" : "440 (interacts with) 6301", "name" : "440 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 17830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17826", "source" : "5349", "target" : "2793", "shared_name" : "440 (interacts with) 8894", "name" : "440 (interacts with) 8894", "interaction" : "interacts with", "SUID" : 17826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17822", "source" : "5349", "target" : "3425", "shared_name" : "440 (interacts with) 8803", "name" : "440 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 17822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17818", "source" : "5349", "target" : "4349", "shared_name" : "440 (interacts with) 5859", "name" : "440 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 17818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17814", "source" : "5349", "target" : "885", "shared_name" : "440 (interacts with) 6347", "name" : "440 (interacts with) 6347", "interaction" : "interacts with", "SUID" : 17814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17810", "source" : "5349", "target" : "5109", "shared_name" : "440 (interacts with) 790", "name" : "440 (interacts with) 790", "interaction" : "interacts with", "SUID" : 17810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17806", "source" : "5349", "target" : "4905", "shared_name" : "440 (interacts with) 440275", "name" : "440 (interacts with) 440275", "interaction" : "interacts with", "SUID" : 17806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17802", "source" : "5349", "target" : "2177", "shared_name" : "440 (interacts with) 443", "name" : "440 (interacts with) 443", "interaction" : "interacts with", "SUID" : 17802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17798", "source" : "5349", "target" : "4253", "shared_name" : "440 (interacts with) 84706", "name" : "440 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 17798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17794", "source" : "5349", "target" : "3633", "shared_name" : "440 (interacts with) 51067", "name" : "440 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 17794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17790", "source" : "5349", "target" : "1477", "shared_name" : "440 (interacts with) 10352", "name" : "440 (interacts with) 10352", "interaction" : "interacts with", "SUID" : 17790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17786", "source" : "5349", "target" : "1581", "shared_name" : "440 (interacts with) 7407", "name" : "440 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 17786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17782", "source" : "5349", "target" : "413", "shared_name" : "440 (interacts with) 51733", "name" : "440 (interacts with) 51733", "interaction" : "interacts with", "SUID" : 17782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17778", "source" : "5349", "target" : "1013", "shared_name" : "440 (interacts with) 6898", "name" : "440 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 17778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17774", "source" : "5349", "target" : "3501", "shared_name" : "440 (interacts with) 5831", "name" : "440 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 17774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17770", "source" : "5349", "target" : "1189", "shared_name" : "440 (interacts with) 7915", "name" : "440 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 17770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17766", "source" : "5349", "target" : "4737", "shared_name" : "440 (interacts with) 445", "name" : "440 (interacts with) 445", "interaction" : "interacts with", "SUID" : 17766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17762", "source" : "5349", "target" : "461", "shared_name" : "440 (interacts with) 5198", "name" : "440 (interacts with) 5198", "interaction" : "interacts with", "SUID" : 17762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17758", "source" : "5349", "target" : "4993", "shared_name" : "440 (interacts with) 8622", "name" : "440 (interacts with) 8622", "interaction" : "interacts with", "SUID" : 17758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17754", "source" : "5349", "target" : "1089", "shared_name" : "440 (interacts with) 5917", "name" : "440 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 17754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17750", "source" : "5349", "target" : "4621", "shared_name" : "440 (interacts with) 57038", "name" : "440 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 17750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17746", "source" : "5349", "target" : "2005", "shared_name" : "440 (interacts with) 4846", "name" : "440 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 17746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17742", "source" : "5349", "target" : "5841", "shared_name" : "440 (interacts with) 10846", "name" : "440 (interacts with) 10846", "interaction" : "interacts with", "SUID" : 17742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17738", "source" : "5349", "target" : "6049", "shared_name" : "440 (interacts with) 25973", "name" : "440 (interacts with) 25973", "interaction" : "interacts with", "SUID" : 17738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17734", "source" : "5349", "target" : "3641", "shared_name" : "440 (interacts with) 4141", "name" : "440 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 17734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17730", "source" : "5349", "target" : "5605", "shared_name" : "440 (interacts with) 51601", "name" : "440 (interacts with) 51601", "interaction" : "interacts with", "SUID" : 17730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17726", "source" : "5349", "target" : "6157", "shared_name" : "440 (interacts with) 3735", "name" : "440 (interacts with) 3735", "interaction" : "interacts with", "SUID" : 17726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17722", "source" : "5349", "target" : "4085", "shared_name" : "440 (interacts with) 55699", "name" : "440 (interacts with) 55699", "interaction" : "interacts with", "SUID" : 17722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17718", "source" : "5349", "target" : "741", "shared_name" : "440 (interacts with) 4830", "name" : "440 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 17718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17714", "source" : "5349", "target" : "2365", "shared_name" : "440 (interacts with) 2731", "name" : "440 (interacts with) 2731", "interaction" : "interacts with", "SUID" : 17714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17710", "source" : "5349", "target" : "6089", "shared_name" : "440 (interacts with) 3145", "name" : "440 (interacts with) 3145", "interaction" : "interacts with", "SUID" : 17710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17706", "source" : "5349", "target" : "1257", "shared_name" : "440 (interacts with) 3098", "name" : "440 (interacts with) 3098", "interaction" : "interacts with", "SUID" : 17706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17702", "source" : "5349", "target" : "4261", "shared_name" : "440 (interacts with) 124454", "name" : "440 (interacts with) 124454", "interaction" : "interacts with", "SUID" : 17702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17698", "source" : "5349", "target" : "1489", "shared_name" : "440 (interacts with) 1738", "name" : "440 (interacts with) 1738", "interaction" : "interacts with", "SUID" : 17698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17694", "source" : "5349", "target" : "3169", "shared_name" : "440 (interacts with) 1615", "name" : "440 (interacts with) 1615", "interaction" : "interacts with", "SUID" : 17694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17690", "source" : "5349", "target" : "1197", "shared_name" : "440 (interacts with) 79587", "name" : "440 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 17690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17686", "source" : "5349", "target" : "5785", "shared_name" : "440 (interacts with) 6857", "name" : "440 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 17686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17682", "source" : "5349", "target" : "1385", "shared_name" : "440 (interacts with) 6520", "name" : "440 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 17682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17678", "source" : "5349", "target" : "2721", "shared_name" : "440 (interacts with) 79751", "name" : "440 (interacts with) 79751", "interaction" : "interacts with", "SUID" : 17678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17674", "source" : "5349", "target" : "1885", "shared_name" : "440 (interacts with) 8604", "name" : "440 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 17674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17670", "source" : "5349", "target" : "4341", "shared_name" : "440 (interacts with) 2729", "name" : "440 (interacts with) 2729", "interaction" : "interacts with", "SUID" : 17670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17666", "source" : "5349", "target" : "3649", "shared_name" : "440 (interacts with) 51520", "name" : "440 (interacts with) 51520", "interaction" : "interacts with", "SUID" : 17666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17662", "source" : "5349", "target" : "349", "shared_name" : "440 (interacts with) 60386", "name" : "440 (interacts with) 60386", "interaction" : "interacts with", "SUID" : 17662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17658", "source" : "5349", "target" : "2321", "shared_name" : "440 (interacts with) 6509", "name" : "440 (interacts with) 6509", "interaction" : "interacts with", "SUID" : 17658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17654", "source" : "5349", "target" : "3077", "shared_name" : "440 (interacts with) 6506", "name" : "440 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 17654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17650", "source" : "5349", "target" : "1713", "shared_name" : "440 (interacts with) 5631", "name" : "440 (interacts with) 5631", "interaction" : "interacts with", "SUID" : 17650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17646", "source" : "5349", "target" : "3917", "shared_name" : "440 (interacts with) 22978", "name" : "440 (interacts with) 22978", "interaction" : "interacts with", "SUID" : 17646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17642", "source" : "5349", "target" : "1849", "shared_name" : "440 (interacts with) 26275", "name" : "440 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 17642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17638", "source" : "5349", "target" : "5809", "shared_name" : "440 (interacts with) 140691", "name" : "440 (interacts with) 140691", "interaction" : "interacts with", "SUID" : 17638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17850", "source" : "5345", "target" : "1741", "shared_name" : "9213 (interacts with) 5133", "name" : "9213 (interacts with) 5133", "interaction" : "interacts with", "SUID" : 17850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17846", "source" : "5345", "target" : "3045", "shared_name" : "9213 (interacts with) 1493", "name" : "9213 (interacts with) 1493", "interaction" : "interacts with", "SUID" : 17846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17842", "source" : "5345", "target" : "4565", "shared_name" : "9213 (interacts with) 57498", "name" : "9213 (interacts with) 57498", "interaction" : "interacts with", "SUID" : 17842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17838", "source" : "5345", "target" : "6129", "shared_name" : "9213 (interacts with) 2263", "name" : "9213 (interacts with) 2263", "interaction" : "interacts with", "SUID" : 17838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17858", "source" : "5341", "target" : "6073", "shared_name" : "91647 (interacts with) 92170", "name" : "91647 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 17858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17854", "source" : "5341", "target" : "5597", "shared_name" : "91647 (interacts with) 22934", "name" : "91647 (interacts with) 22934", "interaction" : "interacts with", "SUID" : 17854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17906", "source" : "5337", "target" : "997", "shared_name" : "84876 (interacts with) 7431", "name" : "84876 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 17906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17902", "source" : "5337", "target" : "5989", "shared_name" : "84876 (interacts with) 7273", "name" : "84876 (interacts with) 7273", "interaction" : "interacts with", "SUID" : 17902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17898", "source" : "5337", "target" : "2581", "shared_name" : "84876 (interacts with) 7170", "name" : "84876 (interacts with) 7170", "interaction" : "interacts with", "SUID" : 17898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17894", "source" : "5337", "target" : "609", "shared_name" : "84876 (interacts with) 6812", "name" : "84876 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 17894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17890", "source" : "5337", "target" : "5785", "shared_name" : "84876 (interacts with) 6857", "name" : "84876 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 17890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17886", "source" : "5337", "target" : "3853", "shared_name" : "84876 (interacts with) 6786", "name" : "84876 (interacts with) 6786", "interaction" : "interacts with", "SUID" : 17886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17882", "source" : "5337", "target" : "5929", "shared_name" : "84876 (interacts with) 6616", "name" : "84876 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 17882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17878", "source" : "5337", "target" : "3593", "shared_name" : "84876 (interacts with) 5530", "name" : "84876 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 17878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17874", "source" : "5337", "target" : "3177", "shared_name" : "84876 (interacts with) 5321", "name" : "84876 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 17874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17870", "source" : "5337", "target" : "4665", "shared_name" : "84876 (interacts with) 538", "name" : "84876 (interacts with) 538", "interaction" : "interacts with", "SUID" : 17870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17866", "source" : "5337", "target" : "705", "shared_name" : "84876 (interacts with) 728378", "name" : "84876 (interacts with) 728378", "interaction" : "interacts with", "SUID" : 17866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17862", "source" : "5337", "target" : "5793", "shared_name" : "84876 (interacts with) 51251", "name" : "84876 (interacts with) 51251", "interaction" : "interacts with", "SUID" : 17862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18002", "source" : "5333", "target" : "4949", "shared_name" : "5591 (interacts with) 5970", "name" : "5591 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 18002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17998", "source" : "5333", "target" : "5109", "shared_name" : "5591 (interacts with) 790", "name" : "5591 (interacts with) 790", "interaction" : "interacts with", "SUID" : 17998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17994", "source" : "5333", "target" : "4065", "shared_name" : "5591 (interacts with) 7124", "name" : "5591 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 17994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17990", "source" : "5333", "target" : "981", "shared_name" : "5591 (interacts with) 7157", "name" : "5591 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 17990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17986", "source" : "5333", "target" : "5965", "shared_name" : "5591 (interacts with) 596", "name" : "5591 (interacts with) 596", "interaction" : "interacts with", "SUID" : 17986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17982", "source" : "5333", "target" : "4769", "shared_name" : "5591 (interacts with) 7132", "name" : "5591 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 17982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17978", "source" : "5333", "target" : "1845", "shared_name" : "5591 (interacts with) 836", "name" : "5591 (interacts with) 836", "interaction" : "interacts with", "SUID" : 17978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17974", "source" : "5333", "target" : "829", "shared_name" : "5591 (interacts with) 8772", "name" : "5591 (interacts with) 8772", "interaction" : "interacts with", "SUID" : 17974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17970", "source" : "5333", "target" : "1973", "shared_name" : "5591 (interacts with) 6709", "name" : "5591 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 17970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17966", "source" : "5333", "target" : "3041", "shared_name" : "5591 (interacts with) 5663", "name" : "5591 (interacts with) 5663", "interaction" : "interacts with", "SUID" : 17966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17962", "source" : "5333", "target" : "3021", "shared_name" : "5591 (interacts with) 84823", "name" : "5591 (interacts with) 84823", "interaction" : "interacts with", "SUID" : 17962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17958", "source" : "5333", "target" : "5949", "shared_name" : "5591 (interacts with) 672", "name" : "5591 (interacts with) 672", "interaction" : "interacts with", "SUID" : 17958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17954", "source" : "5333", "target" : "2905", "shared_name" : "5591 (interacts with) 5664", "name" : "5591 (interacts with) 5664", "interaction" : "interacts with", "SUID" : 17954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17950", "source" : "5333", "target" : "4077", "shared_name" : "5591 (interacts with) 71", "name" : "5591 (interacts with) 71", "interaction" : "interacts with", "SUID" : 17950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17946", "source" : "5333", "target" : "5521", "shared_name" : "5591 (interacts with) 7518", "name" : "5591 (interacts with) 7518", "interaction" : "interacts with", "SUID" : 17946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17942", "source" : "5333", "target" : "1421", "shared_name" : "5591 (interacts with) 55775", "name" : "5591 (interacts with) 55775", "interaction" : "interacts with", "SUID" : 17942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17938", "source" : "5333", "target" : "2809", "shared_name" : "5591 (interacts with) 11284", "name" : "5591 (interacts with) 11284", "interaction" : "interacts with", "SUID" : 17938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17934", "source" : "5333", "target" : "2425", "shared_name" : "5591 (interacts with) 3981", "name" : "5591 (interacts with) 3981", "interaction" : "interacts with", "SUID" : 17934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17930", "source" : "5333", "target" : "2385", "shared_name" : "5591 (interacts with) 3192", "name" : "5591 (interacts with) 3192", "interaction" : "interacts with", "SUID" : 17930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17926", "source" : "5333", "target" : "2917", "shared_name" : "5591 (interacts with) 5451", "name" : "5591 (interacts with) 5451", "interaction" : "interacts with", "SUID" : 17926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17922", "source" : "5333", "target" : "5509", "shared_name" : "5591 (interacts with) 207", "name" : "5591 (interacts with) 207", "interaction" : "interacts with", "SUID" : 17922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17918", "source" : "5333", "target" : "4853", "shared_name" : "5591 (interacts with) 545", "name" : "5591 (interacts with) 545", "interaction" : "interacts with", "SUID" : 17918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17914", "source" : "5333", "target" : "4581", "shared_name" : "5591 (interacts with) 29110", "name" : "5591 (interacts with) 29110", "interaction" : "interacts with", "SUID" : 17914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "17910", "source" : "5333", "target" : "5197", "shared_name" : "5591 (interacts with) 7156", "name" : "5591 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 17910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18038", "source" : "5329", "target" : "5793", "shared_name" : "4907 (interacts with) 51251", "name" : "4907 (interacts with) 51251", "interaction" : "interacts with", "SUID" : 18038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18034", "source" : "5329", "target" : "413", "shared_name" : "4907 (interacts with) 51733", "name" : "4907 (interacts with) 51733", "interaction" : "interacts with", "SUID" : 18034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18030", "source" : "5329", "target" : "781", "shared_name" : "4907 (interacts with) 4860", "name" : "4907 (interacts with) 4860", "interaction" : "interacts with", "SUID" : 18030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18026", "source" : "5329", "target" : "3997", "shared_name" : "4907 (interacts with) 1890", "name" : "4907 (interacts with) 1890", "interaction" : "interacts with", "SUID" : 18026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18022", "source" : "5329", "target" : "5877", "shared_name" : "4907 (interacts with) 6535", "name" : "4907 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 18022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18018", "source" : "5329", "target" : "3589", "shared_name" : "4907 (interacts with) 6567", "name" : "4907 (interacts with) 6567", "interaction" : "interacts with", "SUID" : 18018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18014", "source" : "5329", "target" : "2481", "shared_name" : "4907 (interacts with) 2475", "name" : "4907 (interacts with) 2475", "interaction" : "interacts with", "SUID" : 18014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18010", "source" : "5329", "target" : "4821", "shared_name" : "4907 (interacts with) 28982", "name" : "4907 (interacts with) 28982", "interaction" : "interacts with", "SUID" : 18010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18006", "source" : "5329", "target" : "4537", "shared_name" : "4907 (interacts with) 2697", "name" : "4907 (interacts with) 2697", "interaction" : "interacts with", "SUID" : 18006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18066", "source" : "5325", "target" : "5805", "shared_name" : "140767 (interacts with) 6575", "name" : "140767 (interacts with) 6575", "interaction" : "interacts with", "SUID" : 18066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18062", "source" : "5325", "target" : "6121", "shared_name" : "140767 (interacts with) 2260", "name" : "140767 (interacts with) 2260", "interaction" : "interacts with", "SUID" : 18062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18058", "source" : "5325", "target" : "1877", "shared_name" : "140767 (interacts with) 9531", "name" : "140767 (interacts with) 9531", "interaction" : "interacts with", "SUID" : 18058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18054", "source" : "5325", "target" : "2193", "shared_name" : "140767 (interacts with) 4052", "name" : "140767 (interacts with) 4052", "interaction" : "interacts with", "SUID" : 18054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18050", "source" : "5325", "target" : "1737", "shared_name" : "140767 (interacts with) 26060", "name" : "140767 (interacts with) 26060", "interaction" : "interacts with", "SUID" : 18050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18046", "source" : "5325", "target" : "3373", "shared_name" : "140767 (interacts with) 2530", "name" : "140767 (interacts with) 2530", "interaction" : "interacts with", "SUID" : 18046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18042", "source" : "5325", "target" : "3273", "shared_name" : "140767 (interacts with) 351", "name" : "140767 (interacts with) 351", "interaction" : "interacts with", "SUID" : 18042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18090", "source" : "5321", "target" : "4949", "shared_name" : "5743 (interacts with) 5970", "name" : "5743 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 18090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18086", "source" : "5321", "target" : "1433", "shared_name" : "5743 (interacts with) 6515", "name" : "5743 (interacts with) 6515", "interaction" : "interacts with", "SUID" : 18086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18082", "source" : "5321", "target" : "4589", "shared_name" : "5743 (interacts with) 8431", "name" : "5743 (interacts with) 8431", "interaction" : "interacts with", "SUID" : 18082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18078", "source" : "5321", "target" : "4065", "shared_name" : "5743 (interacts with) 7124", "name" : "5743 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 18078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18074", "source" : "5321", "target" : "4097", "shared_name" : "5743 (interacts with) 9611", "name" : "5743 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 18074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18070", "source" : "5321", "target" : "4981", "shared_name" : "5743 (interacts with) 6774", "name" : "5743 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 18070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18102", "source" : "5317", "target" : "3197", "shared_name" : "25939 (interacts with) 64135", "name" : "25939 (interacts with) 64135", "interaction" : "interacts with", "SUID" : 18102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18098", "source" : "5317", "target" : "805", "shared_name" : "25939 (interacts with) 6772", "name" : "25939 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 18098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18094", "source" : "5317", "target" : "2085", "shared_name" : "25939 (interacts with) 2932", "name" : "25939 (interacts with) 2932", "interaction" : "interacts with", "SUID" : 18094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18158", "source" : "5313", "target" : "3409", "shared_name" : "6197 (interacts with) 7043", "name" : "6197 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 18158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18154", "source" : "5313", "target" : "2153", "shared_name" : "6197 (interacts with) 7042", "name" : "6197 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 18154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18150", "source" : "5313", "target" : "3305", "shared_name" : "6197 (interacts with) 7040", "name" : "6197 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 18150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18146", "source" : "5313", "target" : "1241", "shared_name" : "6197 (interacts with) 808", "name" : "6197 (interacts with) 808", "interaction" : "interacts with", "SUID" : 18146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18142", "source" : "5313", "target" : "1201", "shared_name" : "6197 (interacts with) 805", "name" : "6197 (interacts with) 805", "interaction" : "interacts with", "SUID" : 18142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18138", "source" : "5313", "target" : "993", "shared_name" : "6197 (interacts with) 801", "name" : "6197 (interacts with) 801", "interaction" : "interacts with", "SUID" : 18138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18134", "source" : "5313", "target" : "805", "shared_name" : "6197 (interacts with) 6772", "name" : "6197 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 18134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18130", "source" : "5313", "target" : "3357", "shared_name" : "6197 (interacts with) 23152", "name" : "6197 (interacts with) 23152", "interaction" : "interacts with", "SUID" : 18130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18126", "source" : "5313", "target" : "1329", "shared_name" : "6197 (interacts with) 26277", "name" : "6197 (interacts with) 26277", "interaction" : "interacts with", "SUID" : 18126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18122", "source" : "5313", "target" : "3689", "shared_name" : "6197 (interacts with) 7054", "name" : "6197 (interacts with) 7054", "interaction" : "interacts with", "SUID" : 18122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18118", "source" : "5313", "target" : "2705", "shared_name" : "6197 (interacts with) 8379", "name" : "6197 (interacts with) 8379", "interaction" : "interacts with", "SUID" : 18118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18114", "source" : "5313", "target" : "3145", "shared_name" : "6197 (interacts with) 8493", "name" : "6197 (interacts with) 8493", "interaction" : "interacts with", "SUID" : 18114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18110", "source" : "5313", "target" : "873", "shared_name" : "6197 (interacts with) 1385", "name" : "6197 (interacts with) 1385", "interaction" : "interacts with", "SUID" : 18110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18106", "source" : "5313", "target" : "6121", "shared_name" : "6197 (interacts with) 2260", "name" : "6197 (interacts with) 2260", "interaction" : "interacts with", "SUID" : 18106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18194", "source" : "5305", "target" : "1277", "shared_name" : "6901 (interacts with) 79143", "name" : "6901 (interacts with) 79143", "interaction" : "interacts with", "SUID" : 18194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18190", "source" : "5305", "target" : "5221", "shared_name" : "6901 (interacts with) 285362", "name" : "6901 (interacts with) 285362", "interaction" : "interacts with", "SUID" : 18190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18186", "source" : "5305", "target" : "4081", "shared_name" : "6901 (interacts with) 148789", "name" : "6901 (interacts with) 148789", "interaction" : "interacts with", "SUID" : 18186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18182", "source" : "5305", "target" : "3397", "shared_name" : "6901 (interacts with) 4669", "name" : "6901 (interacts with) 4669", "interaction" : "interacts with", "SUID" : 18182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18178", "source" : "5305", "target" : "4781", "shared_name" : "6901 (interacts with) 80781", "name" : "6901 (interacts with) 80781", "interaction" : "interacts with", "SUID" : 18178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18174", "source" : "5305", "target" : "2681", "shared_name" : "6901 (interacts with) 4126", "name" : "6901 (interacts with) 4126", "interaction" : "interacts with", "SUID" : 18174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18170", "source" : "5305", "target" : "5557", "shared_name" : "6901 (interacts with) 9254", "name" : "6901 (interacts with) 9254", "interaction" : "interacts with", "SUID" : 18170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18166", "source" : "5305", "target" : "1237", "shared_name" : "6901 (interacts with) 3329", "name" : "6901 (interacts with) 3329", "interaction" : "interacts with", "SUID" : 18166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18162", "source" : "5305", "target" : "5373", "shared_name" : "6901 (interacts with) 28962", "name" : "6901 (interacts with) 28962", "interaction" : "interacts with", "SUID" : 18162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18266", "source" : "5301", "target" : "5713", "shared_name" : "54806 (interacts with) 7531", "name" : "54806 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 18266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18262", "source" : "5301", "target" : "4021", "shared_name" : "54806 (interacts with) 203068", "name" : "54806 (interacts with) 203068", "interaction" : "interacts with", "SUID" : 18262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18258", "source" : "5301", "target" : "4245", "shared_name" : "54806 (interacts with) 91147", "name" : "54806 (interacts with) 91147", "interaction" : "interacts with", "SUID" : 18258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18254", "source" : "5301", "target" : "269", "shared_name" : "54806 (interacts with) 51259", "name" : "54806 (interacts with) 51259", "interaction" : "interacts with", "SUID" : 18254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18250", "source" : "5301", "target" : "5969", "shared_name" : "54806 (interacts with) 10382", "name" : "54806 (interacts with) 10382", "interaction" : "interacts with", "SUID" : 18250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18246", "source" : "5301", "target" : "4321", "shared_name" : "54806 (interacts with) 132320", "name" : "54806 (interacts with) 132320", "interaction" : "interacts with", "SUID" : 18246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18242", "source" : "5301", "target" : "2341", "shared_name" : "54806 (interacts with) 23322", "name" : "54806 (interacts with) 23322", "interaction" : "interacts with", "SUID" : 18242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18238", "source" : "5301", "target" : "2357", "shared_name" : "54806 (interacts with) 79600", "name" : "54806 (interacts with) 79600", "interaction" : "interacts with", "SUID" : 18238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18234", "source" : "5301", "target" : "5641", "shared_name" : "54806 (interacts with) 5518", "name" : "54806 (interacts with) 5518", "interaction" : "interacts with", "SUID" : 18234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18230", "source" : "5301", "target" : "5437", "shared_name" : "54806 (interacts with) 10733", "name" : "54806 (interacts with) 10733", "interaction" : "interacts with", "SUID" : 18230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18226", "source" : "5301", "target" : "5429", "shared_name" : "54806 (interacts with) 5048", "name" : "54806 (interacts with) 5048", "interaction" : "interacts with", "SUID" : 18226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18222", "source" : "5301", "target" : "4977", "shared_name" : "54806 (interacts with) 8481", "name" : "54806 (interacts with) 8481", "interaction" : "interacts with", "SUID" : 18222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18218", "source" : "5301", "target" : "4997", "shared_name" : "54806 (interacts with) 54820", "name" : "54806 (interacts with) 54820", "interaction" : "interacts with", "SUID" : 18218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18214", "source" : "5301", "target" : "1321", "shared_name" : "54806 (interacts with) 1778", "name" : "54806 (interacts with) 1778", "interaction" : "interacts with", "SUID" : 18214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18210", "source" : "5301", "target" : "3785", "shared_name" : "54806 (interacts with) 1781", "name" : "54806 (interacts with) 1781", "interaction" : "interacts with", "SUID" : 18210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18206", "source" : "5301", "target" : "1317", "shared_name" : "54806 (interacts with) 57545", "name" : "54806 (interacts with) 57545", "interaction" : "interacts with", "SUID" : 18206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18202", "source" : "5301", "target" : "281", "shared_name" : "54806 (interacts with) 26005", "name" : "54806 (interacts with) 26005", "interaction" : "interacts with", "SUID" : 18202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18198", "source" : "5301", "target" : "1189", "shared_name" : "54806 (interacts with) 7915", "name" : "54806 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 18198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18274", "source" : "5297", "target" : "1125", "shared_name" : "6775 (interacts with) 5551", "name" : "6775 (interacts with) 5551", "interaction" : "interacts with", "SUID" : 18274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18270", "source" : "5297", "target" : "685", "shared_name" : "6775 (interacts with) 4282", "name" : "6775 (interacts with) 4282", "interaction" : "interacts with", "SUID" : 18270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18278", "source" : "5293", "target" : "5285", "shared_name" : "54476 (interacts with) 10133", "name" : "54476 (interacts with) 10133", "interaction" : "interacts with", "SUID" : 18278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18282", "source" : "5289", "target" : "2817", "shared_name" : "9526 (interacts with) 91869", "name" : "9526 (interacts with) 91869", "interaction" : "interacts with", "SUID" : 18282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18314", "source" : "5285", "target" : "5129", "shared_name" : "10133 (interacts with) 57465", "name" : "10133 (interacts with) 57465", "interaction" : "interacts with", "SUID" : 18314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18310", "source" : "5285", "target" : "5697", "shared_name" : "10133 (interacts with) 8517", "name" : "10133 (interacts with) 8517", "interaction" : "interacts with", "SUID" : 18310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18306", "source" : "5285", "target" : "2977", "shared_name" : "10133 (interacts with) 4747", "name" : "10133 (interacts with) 4747", "interaction" : "interacts with", "SUID" : 18306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18302", "source" : "5285", "target" : "5929", "shared_name" : "10133 (interacts with) 6616", "name" : "10133 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 18302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18298", "source" : "5285", "target" : "3157", "shared_name" : "10133 (interacts with) 9255", "name" : "10133 (interacts with) 9255", "interaction" : "interacts with", "SUID" : 18298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18294", "source" : "5285", "target" : "1785", "shared_name" : "10133 (interacts with) 667", "name" : "10133 (interacts with) 667", "interaction" : "interacts with", "SUID" : 18294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18290", "source" : "5285", "target" : "3557", "shared_name" : "10133 (interacts with) 2911", "name" : "10133 (interacts with) 2911", "interaction" : "interacts with", "SUID" : 18290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18286", "source" : "5285", "target" : "4581", "shared_name" : "10133 (interacts with) 29110", "name" : "10133 (interacts with) 29110", "interaction" : "interacts with", "SUID" : 18286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18326", "source" : "5281", "target" : "5377", "shared_name" : "10084 (interacts with) 6638", "name" : "10084 (interacts with) 6638", "interaction" : "interacts with", "SUID" : 18326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18322", "source" : "5281", "target" : "1837", "shared_name" : "10084 (interacts with) 9939", "name" : "10084 (interacts with) 9939", "interaction" : "interacts with", "SUID" : 18322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18318", "source" : "5281", "target" : "5193", "shared_name" : "10084 (interacts with) 5725", "name" : "10084 (interacts with) 5725", "interaction" : "interacts with", "SUID" : 18318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18374", "source" : "5273", "target" : "6145", "shared_name" : "2048 (interacts with) 93627", "name" : "2048 (interacts with) 93627", "interaction" : "interacts with", "SUID" : 18374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18370", "source" : "5273", "target" : "761", "shared_name" : "2048 (interacts with) 5891", "name" : "2048 (interacts with) 5891", "interaction" : "interacts with", "SUID" : 18370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18366", "source" : "5273", "target" : "1517", "shared_name" : "2048 (interacts with) 51776", "name" : "2048 (interacts with) 51776", "interaction" : "interacts with", "SUID" : 18366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18362", "source" : "5273", "target" : "3853", "shared_name" : "2048 (interacts with) 6786", "name" : "2048 (interacts with) 6786", "interaction" : "interacts with", "SUID" : 18362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18358", "source" : "5273", "target" : "2969", "shared_name" : "2048 (interacts with) 8867", "name" : "2048 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 18358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18354", "source" : "5273", "target" : "3041", "shared_name" : "2048 (interacts with) 5663", "name" : "2048 (interacts with) 5663", "interaction" : "interacts with", "SUID" : 18354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18350", "source" : "5273", "target" : "2905", "shared_name" : "2048 (interacts with) 5664", "name" : "2048 (interacts with) 5664", "interaction" : "interacts with", "SUID" : 18350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18346", "source" : "5273", "target" : "1069", "shared_name" : "2048 (interacts with) 5879", "name" : "2048 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 18346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18342", "source" : "5273", "target" : "5149", "shared_name" : "2048 (interacts with) 5058", "name" : "2048 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 18342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18338", "source" : "5273", "target" : "4161", "shared_name" : "2048 (interacts with) 4318", "name" : "2048 (interacts with) 4318", "interaction" : "interacts with", "SUID" : 18338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18334", "source" : "5273", "target" : "3961", "shared_name" : "2048 (interacts with) 3897", "name" : "2048 (interacts with) 3897", "interaction" : "interacts with", "SUID" : 18334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18330", "source" : "5273", "target" : "665", "shared_name" : "2048 (interacts with) 3309", "name" : "2048 (interacts with) 3309", "interaction" : "interacts with", "SUID" : 18330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18394", "source" : "5269", "target" : "1425", "shared_name" : "8270 (interacts with) 55644", "name" : "8270 (interacts with) 55644", "interaction" : "interacts with", "SUID" : 18394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18390", "source" : "5269", "target" : "5993", "shared_name" : "8270 (interacts with) 6611", "name" : "8270 (interacts with) 6611", "interaction" : "interacts with", "SUID" : 18390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18386", "source" : "5269", "target" : "4665", "shared_name" : "8270 (interacts with) 538", "name" : "8270 (interacts with) 538", "interaction" : "interacts with", "SUID" : 18386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18382", "source" : "5269", "target" : "3089", "shared_name" : "8270 (interacts with) 51002", "name" : "8270 (interacts with) 51002", "interaction" : "interacts with", "SUID" : 18382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18378", "source" : "5269", "target" : "709", "shared_name" : "8270 (interacts with) 112858", "name" : "8270 (interacts with) 112858", "interaction" : "interacts with", "SUID" : 18378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18446", "source" : "5265", "target" : "2937", "shared_name" : "1436 (interacts with) 1457", "name" : "1436 (interacts with) 1457", "interaction" : "interacts with", "SUID" : 18446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18442", "source" : "5265", "target" : "2245", "shared_name" : "1436 (interacts with) 5587", "name" : "1436 (interacts with) 5587", "interaction" : "interacts with", "SUID" : 18442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18438", "source" : "5265", "target" : "2553", "shared_name" : "1436 (interacts with) 815", "name" : "1436 (interacts with) 815", "interaction" : "interacts with", "SUID" : 18438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18434", "source" : "5265", "target" : "1429", "shared_name" : "1436 (interacts with) 65125", "name" : "1436 (interacts with) 65125", "interaction" : "interacts with", "SUID" : 18434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18430", "source" : "5265", "target" : "3245", "shared_name" : "1436 (interacts with) 1760", "name" : "1436 (interacts with) 1760", "interaction" : "interacts with", "SUID" : 18430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18426", "source" : "5265", "target" : "3685", "shared_name" : "1436 (interacts with) 3265", "name" : "1436 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 18426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18422", "source" : "5265", "target" : "4293", "shared_name" : "1436 (interacts with) 5156", "name" : "1436 (interacts with) 5156", "interaction" : "interacts with", "SUID" : 18422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18418", "source" : "5265", "target" : "5817", "shared_name" : "1436 (interacts with) 1950", "name" : "1436 (interacts with) 1950", "interaction" : "interacts with", "SUID" : 18418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18414", "source" : "5265", "target" : "1845", "shared_name" : "1436 (interacts with) 836", "name" : "1436 (interacts with) 836", "interaction" : "interacts with", "SUID" : 18414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18410", "source" : "5265", "target" : "825", "shared_name" : "1436 (interacts with) 25942", "name" : "1436 (interacts with) 25942", "interaction" : "interacts with", "SUID" : 18410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18406", "source" : "5265", "target" : "2173", "shared_name" : "1436 (interacts with) 5159", "name" : "1436 (interacts with) 5159", "interaction" : "interacts with", "SUID" : 18406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18402", "source" : "5265", "target" : "4213", "shared_name" : "1436 (interacts with) 5295", "name" : "1436 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 18402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18398", "source" : "5265", "target" : "3941", "shared_name" : "1436 (interacts with) 1435", "name" : "1436 (interacts with) 1435", "interaction" : "interacts with", "SUID" : 18398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18570", "source" : "5261", "target" : "589", "shared_name" : "132 (interacts with) 270", "name" : "132 (interacts with) 270", "interaction" : "interacts with", "SUID" : 18570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18566", "source" : "5261", "target" : "597", "shared_name" : "132 (interacts with) 271", "name" : "132 (interacts with) 271", "interaction" : "interacts with", "SUID" : 18566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18562", "source" : "5261", "target" : "3633", "shared_name" : "132 (interacts with) 51067", "name" : "132 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 18562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18558", "source" : "5261", "target" : "1477", "shared_name" : "132 (interacts with) 10352", "name" : "132 (interacts with) 10352", "interaction" : "interacts with", "SUID" : 18558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18554", "source" : "5261", "target" : "1581", "shared_name" : "132 (interacts with) 7407", "name" : "132 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 18554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18550", "source" : "5261", "target" : "781", "shared_name" : "132 (interacts with) 4860", "name" : "132 (interacts with) 4860", "interaction" : "interacts with", "SUID" : 18550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18546", "source" : "5261", "target" : "5201", "shared_name" : "132 (interacts with) 353", "name" : "132 (interacts with) 353", "interaction" : "interacts with", "SUID" : 18546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18542", "source" : "5261", "target" : "1657", "shared_name" : "132 (interacts with) 3251", "name" : "132 (interacts with) 3251", "interaction" : "interacts with", "SUID" : 18542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18538", "source" : "5261", "target" : "909", "shared_name" : "132 (interacts with) 1716", "name" : "132 (interacts with) 1716", "interaction" : "interacts with", "SUID" : 18538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18534", "source" : "5261", "target" : "4993", "shared_name" : "132 (interacts with) 8622", "name" : "132 (interacts with) 8622", "interaction" : "interacts with", "SUID" : 18534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18530", "source" : "5261", "target" : "4693", "shared_name" : "132 (interacts with) 6301", "name" : "132 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 18530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18526", "source" : "5261", "target" : "1089", "shared_name" : "132 (interacts with) 5917", "name" : "132 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 18526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18522", "source" : "5261", "target" : "4621", "shared_name" : "132 (interacts with) 57038", "name" : "132 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 18522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18518", "source" : "5261", "target" : "741", "shared_name" : "132 (interacts with) 4830", "name" : "132 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 18518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18514", "source" : "5261", "target" : "5841", "shared_name" : "132 (interacts with) 10846", "name" : "132 (interacts with) 10846", "interaction" : "interacts with", "SUID" : 18514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18510", "source" : "5261", "target" : "6049", "shared_name" : "132 (interacts with) 25973", "name" : "132 (interacts with) 25973", "interaction" : "interacts with", "SUID" : 18510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18506", "source" : "5261", "target" : "1257", "shared_name" : "132 (interacts with) 3098", "name" : "132 (interacts with) 3098", "interaction" : "interacts with", "SUID" : 18506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18502", "source" : "5261", "target" : "3641", "shared_name" : "132 (interacts with) 4141", "name" : "132 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 18502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18498", "source" : "5261", "target" : "5605", "shared_name" : "132 (interacts with) 51601", "name" : "132 (interacts with) 51601", "interaction" : "interacts with", "SUID" : 18498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18494", "source" : "5261", "target" : "6157", "shared_name" : "132 (interacts with) 3735", "name" : "132 (interacts with) 3735", "interaction" : "interacts with", "SUID" : 18494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18490", "source" : "5261", "target" : "4597", "shared_name" : "132 (interacts with) 3376", "name" : "132 (interacts with) 3376", "interaction" : "interacts with", "SUID" : 18490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18486", "source" : "5261", "target" : "4085", "shared_name" : "132 (interacts with) 55699", "name" : "132 (interacts with) 55699", "interaction" : "interacts with", "SUID" : 18486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18482", "source" : "5261", "target" : "4261", "shared_name" : "132 (interacts with) 124454", "name" : "132 (interacts with) 124454", "interaction" : "interacts with", "SUID" : 18482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18478", "source" : "5261", "target" : "3169", "shared_name" : "132 (interacts with) 1615", "name" : "132 (interacts with) 1615", "interaction" : "interacts with", "SUID" : 18478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18474", "source" : "5261", "target" : "1197", "shared_name" : "132 (interacts with) 79587", "name" : "132 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 18474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18470", "source" : "5261", "target" : "4737", "shared_name" : "132 (interacts with) 445", "name" : "132 (interacts with) 445", "interaction" : "interacts with", "SUID" : 18470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18466", "source" : "5261", "target" : "5349", "shared_name" : "132 (interacts with) 440", "name" : "132 (interacts with) 440", "interaction" : "interacts with", "SUID" : 18466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18462", "source" : "5261", "target" : "3537", "shared_name" : "132 (interacts with) 501", "name" : "132 (interacts with) 501", "interaction" : "interacts with", "SUID" : 18462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18458", "source" : "5261", "target" : "4045", "shared_name" : "132 (interacts with) 29920", "name" : "132 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 18458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18454", "source" : "5261", "target" : "3501", "shared_name" : "132 (interacts with) 5831", "name" : "132 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 18454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18450", "source" : "5261", "target" : "1713", "shared_name" : "132 (interacts with) 5631", "name" : "132 (interacts with) 5631", "interaction" : "interacts with", "SUID" : 18450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18578", "source" : "5253", "target" : "553", "shared_name" : "56006 (interacts with) 7248", "name" : "56006 (interacts with) 7248", "interaction" : "interacts with", "SUID" : 18578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18574", "source" : "5253", "target" : "2389", "shared_name" : "56006 (interacts with) 6925", "name" : "56006 (interacts with) 6925", "interaction" : "interacts with", "SUID" : 18574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18582", "source" : "5249", "target" : "257", "shared_name" : "8643 (interacts with) 6469", "name" : "8643 (interacts with) 6469", "interaction" : "interacts with", "SUID" : 18582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18638", "source" : "5245", "target" : "3353", "shared_name" : "1201 (interacts with) 1203", "name" : "1201 (interacts with) 1203", "interaction" : "interacts with", "SUID" : 18638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18634", "source" : "5245", "target" : "4813", "shared_name" : "1201 (interacts with) 23431", "name" : "1201 (interacts with) 23431", "interaction" : "interacts with", "SUID" : 18634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18630", "source" : "5245", "target" : "3433", "shared_name" : "1201 (interacts with) 26503", "name" : "1201 (interacts with) 26503", "interaction" : "interacts with", "SUID" : 18630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18626", "source" : "5245", "target" : "3733", "shared_name" : "1201 (interacts with) 2760", "name" : "1201 (interacts with) 2760", "interaction" : "interacts with", "SUID" : 18626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18622", "source" : "5245", "target" : "5221", "shared_name" : "1201 (interacts with) 285362", "name" : "1201 (interacts with) 285362", "interaction" : "interacts with", "SUID" : 18622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18618", "source" : "5245", "target" : "2225", "shared_name" : "1201 (interacts with) 4864", "name" : "1201 (interacts with) 4864", "interaction" : "interacts with", "SUID" : 18618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18614", "source" : "5245", "target" : "1193", "shared_name" : "1201 (interacts with) 5660", "name" : "1201 (interacts with) 5660", "interaction" : "interacts with", "SUID" : 18614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18610", "source" : "5245", "target" : "1261", "shared_name" : "1201 (interacts with) 57192", "name" : "1201 (interacts with) 57192", "interaction" : "interacts with", "SUID" : 18610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18606", "source" : "5245", "target" : "5937", "shared_name" : "1201 (interacts with) 8120", "name" : "1201 (interacts with) 8120", "interaction" : "interacts with", "SUID" : 18606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18602", "source" : "5245", "target" : "1677", "shared_name" : "1201 (interacts with) 8905", "name" : "1201 (interacts with) 8905", "interaction" : "interacts with", "SUID" : 18602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18598", "source" : "5245", "target" : "3693", "shared_name" : "1201 (interacts with) 8943", "name" : "1201 (interacts with) 8943", "interaction" : "interacts with", "SUID" : 18598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18594", "source" : "5245", "target" : "1445", "shared_name" : "1201 (interacts with) 9179", "name" : "1201 (interacts with) 9179", "interaction" : "interacts with", "SUID" : 18594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18590", "source" : "5245", "target" : "4393", "shared_name" : "1201 (interacts with) 950", "name" : "1201 (interacts with) 950", "interaction" : "interacts with", "SUID" : 18590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18586", "source" : "5245", "target" : "2233", "shared_name" : "1201 (interacts with) 9516", "name" : "1201 (interacts with) 9516", "interaction" : "interacts with", "SUID" : 18586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18682", "source" : "5241", "target" : "849", "shared_name" : "128869 (interacts with) 23556", "name" : "128869 (interacts with) 23556", "interaction" : "interacts with", "SUID" : 18682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18678", "source" : "5241", "target" : "1697", "shared_name" : "128869 (interacts with) 8818", "name" : "128869 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 18678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18674", "source" : "5241", "target" : "5477", "shared_name" : "128869 (interacts with) 54872", "name" : "128869 (interacts with) 54872", "interaction" : "interacts with", "SUID" : 18674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18670", "source" : "5241", "target" : "1545", "shared_name" : "128869 (interacts with) 5277", "name" : "128869 (interacts with) 5277", "interaction" : "interacts with", "SUID" : 18670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18666", "source" : "5241", "target" : "4989", "shared_name" : "128869 (interacts with) 51227", "name" : "128869 (interacts with) 51227", "interaction" : "interacts with", "SUID" : 18666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18662", "source" : "5241", "target" : "1917", "shared_name" : "128869 (interacts with) 51604", "name" : "128869 (interacts with) 51604", "interaction" : "interacts with", "SUID" : 18662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18658", "source" : "5241", "target" : "1905", "shared_name" : "128869 (interacts with) 9488", "name" : "128869 (interacts with) 9488", "interaction" : "interacts with", "SUID" : 18658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18654", "source" : "5241", "target" : "985", "shared_name" : "128869 (interacts with) 9091", "name" : "128869 (interacts with) 9091", "interaction" : "interacts with", "SUID" : 18654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18650", "source" : "5241", "target" : "1593", "shared_name" : "128869 (interacts with) 8733", "name" : "128869 (interacts with) 8733", "interaction" : "interacts with", "SUID" : 18650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18646", "source" : "5241", "target" : "2181", "shared_name" : "128869 (interacts with) 94005", "name" : "128869 (interacts with) 94005", "interaction" : "interacts with", "SUID" : 18646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18642", "source" : "5241", "target" : "1025", "shared_name" : "128869 (interacts with) 80055", "name" : "128869 (interacts with) 80055", "interaction" : "interacts with", "SUID" : 18642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18718", "source" : "5237", "target" : "4941", "shared_name" : "5830 (interacts with) 6342", "name" : "5830 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 18718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18714", "source" : "5237", "target" : "4301", "shared_name" : "5830 (interacts with) 8799", "name" : "5830 (interacts with) 8799", "interaction" : "interacts with", "SUID" : 18714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18710", "source" : "5237", "target" : "3341", "shared_name" : "5830 (interacts with) 8504", "name" : "5830 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 18710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18706", "source" : "5237", "target" : "196", "shared_name" : "5830 (interacts with) 84188", "name" : "5830 (interacts with) 84188", "interaction" : "interacts with", "SUID" : 18706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18702", "source" : "5237", "target" : "3333", "shared_name" : "5830 (interacts with) 9409", "name" : "5830 (interacts with) 9409", "interaction" : "interacts with", "SUID" : 18702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18698", "source" : "5237", "target" : "5077", "shared_name" : "5830 (interacts with) 8239", "name" : "5830 (interacts with) 8239", "interaction" : "interacts with", "SUID" : 18698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18694", "source" : "5237", "target" : "2353", "shared_name" : "5830 (interacts with) 5264", "name" : "5830 (interacts with) 5264", "interaction" : "interacts with", "SUID" : 18694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18690", "source" : "5237", "target" : "3525", "shared_name" : "5830 (interacts with) 23410", "name" : "5830 (interacts with) 23410", "interaction" : "interacts with", "SUID" : 18690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18686", "source" : "5237", "target" : "1193", "shared_name" : "5830 (interacts with) 5660", "name" : "5830 (interacts with) 5660", "interaction" : "interacts with", "SUID" : 18686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18722", "source" : "5233", "target" : "5469", "shared_name" : "79068 (interacts with) 10978", "name" : "79068 (interacts with) 10978", "interaction" : "interacts with", "SUID" : 18722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18786", "source" : "5229", "target" : "5557", "shared_name" : "6335 (interacts with) 9254", "name" : "6335 (interacts with) 9254", "interaction" : "interacts with", "SUID" : 18786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18782", "source" : "5229", "target" : "1633", "shared_name" : "6335 (interacts with) 57731", "name" : "6335 (interacts with) 57731", "interaction" : "interacts with", "SUID" : 18782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18778", "source" : "5229", "target" : "1973", "shared_name" : "6335 (interacts with) 6709", "name" : "6335 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 18778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18774", "source" : "5229", "target" : "3637", "shared_name" : "6335 (interacts with) 6712", "name" : "6335 (interacts with) 6712", "interaction" : "interacts with", "SUID" : 18774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18770", "source" : "5229", "target" : "5877", "shared_name" : "6335 (interacts with) 6535", "name" : "6335 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 18770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18766", "source" : "5229", "target" : "309", "shared_name" : "6335 (interacts with) 6536", "name" : "6335 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 18766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18762", "source" : "5229", "target" : "401", "shared_name" : "6335 (interacts with) 6532", "name" : "6335 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 18762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18758", "source" : "5229", "target" : "3781", "shared_name" : "6335 (interacts with) 9152", "name" : "6335 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 18758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18754", "source" : "5229", "target" : "3601", "shared_name" : "6335 (interacts with) 6531", "name" : "6335 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 18754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18750", "source" : "5229", "target" : "2877", "shared_name" : "6335 (interacts with) 340024", "name" : "6335 (interacts with) 340024", "interaction" : "interacts with", "SUID" : 18750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18746", "source" : "5229", "target" : "3473", "shared_name" : "6335 (interacts with) 6528", "name" : "6335 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 18746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18742", "source" : "5229", "target" : "1385", "shared_name" : "6335 (interacts with) 6520", "name" : "6335 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 18742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18738", "source" : "5229", "target" : "5805", "shared_name" : "6335 (interacts with) 6575", "name" : "6335 (interacts with) 6575", "interaction" : "interacts with", "SUID" : 18738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18734", "source" : "5229", "target" : "3077", "shared_name" : "6335 (interacts with) 6506", "name" : "6335 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 18734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18730", "source" : "5229", "target" : "6009", "shared_name" : "6335 (interacts with) 64849", "name" : "6335 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 18730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18726", "source" : "5229", "target" : "4025", "shared_name" : "6335 (interacts with) 284111", "name" : "6335 (interacts with) 284111", "interaction" : "interacts with", "SUID" : 18726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19022", "source" : "5225", "target" : "993", "shared_name" : "5290 (interacts with) 801", "name" : "5290 (interacts with) 801", "interaction" : "interacts with", "SUID" : 19022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19018", "source" : "5225", "target" : "5037", "shared_name" : "5290 (interacts with) 5515", "name" : "5290 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 19018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19014", "source" : "5225", "target" : "637", "shared_name" : "5290 (interacts with) 6654", "name" : "5290 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 19014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19010", "source" : "5225", "target" : "2525", "shared_name" : "5290 (interacts with) 9451", "name" : "5290 (interacts with) 9451", "interaction" : "interacts with", "SUID" : 19010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19006", "source" : "5225", "target" : "3577", "shared_name" : "5290 (interacts with) 5605", "name" : "5290 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 19006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19002", "source" : "5225", "target" : "981", "shared_name" : "5290 (interacts with) 7157", "name" : "5290 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 19002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18998", "source" : "5225", "target" : "5965", "shared_name" : "5290 (interacts with) 596", "name" : "5290 (interacts with) 596", "interaction" : "interacts with", "SUID" : 18998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18994", "source" : "5225", "target" : "1241", "shared_name" : "5290 (interacts with) 808", "name" : "5290 (interacts with) 808", "interaction" : "interacts with", "SUID" : 18994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18990", "source" : "5225", "target" : "1201", "shared_name" : "5290 (interacts with) 805", "name" : "5290 (interacts with) 805", "interaction" : "interacts with", "SUID" : 18990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18986", "source" : "5225", "target" : "3593", "shared_name" : "5290 (interacts with) 5530", "name" : "5290 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 18986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18982", "source" : "5225", "target" : "805", "shared_name" : "5290 (interacts with) 6772", "name" : "5290 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 18982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18978", "source" : "5225", "target" : "2957", "shared_name" : "5290 (interacts with) 5465", "name" : "5290 (interacts with) 5465", "interaction" : "interacts with", "SUID" : 18978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18974", "source" : "5225", "target" : "4981", "shared_name" : "5290 (interacts with) 6774", "name" : "5290 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 18974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18970", "source" : "5225", "target" : "1845", "shared_name" : "5290 (interacts with) 836", "name" : "5290 (interacts with) 836", "interaction" : "interacts with", "SUID" : 18970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18966", "source" : "5225", "target" : "569", "shared_name" : "5290 (interacts with) 7048", "name" : "5290 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 18966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18962", "source" : "5225", "target" : "3177", "shared_name" : "5290 (interacts with) 5321", "name" : "5290 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 18962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18958", "source" : "5225", "target" : "1405", "shared_name" : "5290 (interacts with) 998", "name" : "5290 (interacts with) 998", "interaction" : "interacts with", "SUID" : 18958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18954", "source" : "5225", "target" : "2433", "shared_name" : "5290 (interacts with) 6927", "name" : "5290 (interacts with) 6927", "interaction" : "interacts with", "SUID" : 18954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18950", "source" : "5225", "target" : "5697", "shared_name" : "5290 (interacts with) 8517", "name" : "5290 (interacts with) 8517", "interaction" : "interacts with", "SUID" : 18950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18946", "source" : "5225", "target" : "4589", "shared_name" : "5290 (interacts with) 8431", "name" : "5290 (interacts with) 8431", "interaction" : "interacts with", "SUID" : 18946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18942", "source" : "5225", "target" : "1701", "shared_name" : "5290 (interacts with) 5777", "name" : "5290 (interacts with) 5777", "interaction" : "interacts with", "SUID" : 18942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18938", "source" : "5225", "target" : "5321", "shared_name" : "5290 (interacts with) 5743", "name" : "5290 (interacts with) 5743", "interaction" : "interacts with", "SUID" : 18938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18934", "source" : "5225", "target" : "5745", "shared_name" : "5290 (interacts with) 7471", "name" : "5290 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 18934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18930", "source" : "5225", "target" : "2793", "shared_name" : "5290 (interacts with) 8894", "name" : "5290 (interacts with) 8894", "interaction" : "interacts with", "SUID" : 18930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18926", "source" : "5225", "target" : "4097", "shared_name" : "5290 (interacts with) 9611", "name" : "5290 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 18926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18922", "source" : "5225", "target" : "1285", "shared_name" : "5290 (interacts with) 7249", "name" : "5290 (interacts with) 7249", "interaction" : "interacts with", "SUID" : 18922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18918", "source" : "5225", "target" : "4149", "shared_name" : "5290 (interacts with) 8893", "name" : "5290 (interacts with) 8893", "interaction" : "interacts with", "SUID" : 18918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18914", "source" : "5225", "target" : "3289", "shared_name" : "5290 (interacts with) 5913", "name" : "5290 (interacts with) 5913", "interaction" : "interacts with", "SUID" : 18914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18910", "source" : "5225", "target" : "5637", "shared_name" : "5290 (interacts with) 6609", "name" : "5290 (interacts with) 6609", "interaction" : "interacts with", "SUID" : 18910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18906", "source" : "5225", "target" : "1697", "shared_name" : "5290 (interacts with) 8818", "name" : "5290 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 18906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18902", "source" : "5225", "target" : "4765", "shared_name" : "5290 (interacts with) 7015", "name" : "5290 (interacts with) 7015", "interaction" : "interacts with", "SUID" : 18902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18898", "source" : "5225", "target" : "2901", "shared_name" : "5290 (interacts with) 6647", "name" : "5290 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 18898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18894", "source" : "5225", "target" : "3833", "shared_name" : "5290 (interacts with) 9138", "name" : "5290 (interacts with) 9138", "interaction" : "interacts with", "SUID" : 18894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18890", "source" : "5225", "target" : "1493", "shared_name" : "5290 (interacts with) 7428", "name" : "5290 (interacts with) 7428", "interaction" : "interacts with", "SUID" : 18890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18886", "source" : "5225", "target" : "1605", "shared_name" : "5290 (interacts with) 6648", "name" : "5290 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 18886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18882", "source" : "5225", "target" : "837", "shared_name" : "5290 (interacts with) 8892", "name" : "5290 (interacts with) 8892", "interaction" : "interacts with", "SUID" : 18882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18878", "source" : "5225", "target" : "841", "shared_name" : "5290 (interacts with) 8890", "name" : "5290 (interacts with) 8890", "interaction" : "interacts with", "SUID" : 18878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18874", "source" : "5225", "target" : "3285", "shared_name" : "5290 (interacts with) 8302", "name" : "5290 (interacts with) 8302", "interaction" : "interacts with", "SUID" : 18874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18870", "source" : "5225", "target" : "553", "shared_name" : "5290 (interacts with) 7248", "name" : "5290 (interacts with) 7248", "interaction" : "interacts with", "SUID" : 18870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18866", "source" : "5225", "target" : "2509", "shared_name" : "5290 (interacts with) 7204", "name" : "5290 (interacts with) 7204", "interaction" : "interacts with", "SUID" : 18866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18862", "source" : "5225", "target" : "4837", "shared_name" : "5290 (interacts with) 8891", "name" : "5290 (interacts with) 8891", "interaction" : "interacts with", "SUID" : 18862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18858", "source" : "5225", "target" : "4041", "shared_name" : "5290 (interacts with) 847", "name" : "5290 (interacts with) 847", "interaction" : "interacts with", "SUID" : 18858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18854", "source" : "5225", "target" : "1857", "shared_name" : "5290 (interacts with) 9533", "name" : "5290 (interacts with) 9533", "interaction" : "interacts with", "SUID" : 18854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18850", "source" : "5225", "target" : "4213", "shared_name" : "5290 (interacts with) 5295", "name" : "5290 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 18850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18846", "source" : "5225", "target" : "989", "shared_name" : "5290 (interacts with) 5297", "name" : "5290 (interacts with) 5297", "interaction" : "interacts with", "SUID" : 18846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18842", "source" : "5225", "target" : "5625", "shared_name" : "5290 (interacts with) 595", "name" : "5290 (interacts with) 595", "interaction" : "interacts with", "SUID" : 18842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18838", "source" : "5225", "target" : "1069", "shared_name" : "5290 (interacts with) 5879", "name" : "5290 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 18838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18834", "source" : "5225", "target" : "3685", "shared_name" : "5290 (interacts with) 3265", "name" : "5290 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 18834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18830", "source" : "5225", "target" : "3569", "shared_name" : "5290 (interacts with) 4893", "name" : "5290 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 18830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18826", "source" : "5225", "target" : "4697", "shared_name" : "5290 (interacts with) 7534", "name" : "5290 (interacts with) 7534", "interaction" : "interacts with", "SUID" : 18826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18822", "source" : "5225", "target" : "5073", "shared_name" : "5290 (interacts with) 7305", "name" : "5290 (interacts with) 7305", "interaction" : "interacts with", "SUID" : 18822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18818", "source" : "5225", "target" : "4725", "shared_name" : "5290 (interacts with) 7010", "name" : "5290 (interacts with) 7010", "interaction" : "interacts with", "SUID" : 18818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18814", "source" : "5225", "target" : "725", "shared_name" : "5290 (interacts with) 54209", "name" : "5290 (interacts with) 54209", "interaction" : "interacts with", "SUID" : 18814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18810", "source" : "5225", "target" : "2969", "shared_name" : "5290 (interacts with) 8867", "name" : "5290 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 18810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18806", "source" : "5225", "target" : "5785", "shared_name" : "5290 (interacts with) 6857", "name" : "5290 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 18806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18802", "source" : "5225", "target" : "4157", "shared_name" : "5290 (interacts with) 85021", "name" : "5290 (interacts with) 85021", "interaction" : "interacts with", "SUID" : 18802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18798", "source" : "5225", "target" : "5125", "shared_name" : "5290 (interacts with) 5979", "name" : "5290 (interacts with) 5979", "interaction" : "interacts with", "SUID" : 18798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18794", "source" : "5225", "target" : "4393", "shared_name" : "5290 (interacts with) 950", "name" : "5290 (interacts with) 950", "interaction" : "interacts with", "SUID" : 18794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "18790", "source" : "5225", "target" : "3465", "shared_name" : "5290 (interacts with) 5296", "name" : "5290 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 18790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19078", "source" : "5221", "target" : "2869", "shared_name" : "285362 (interacts with) 43", "name" : "285362 (interacts with) 43", "interaction" : "interacts with", "SUID" : 19078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19074", "source" : "5221", "target" : "2225", "shared_name" : "285362 (interacts with) 4864", "name" : "285362 (interacts with) 4864", "interaction" : "interacts with", "SUID" : 19074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19070", "source" : "5221", "target" : "1553", "shared_name" : "285362 (interacts with) 410", "name" : "285362 (interacts with) 410", "interaction" : "interacts with", "SUID" : 19070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19066", "source" : "5221", "target" : "1193", "shared_name" : "285362 (interacts with) 5660", "name" : "285362 (interacts with) 5660", "interaction" : "interacts with", "SUID" : 19066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19062", "source" : "5221", "target" : "1261", "shared_name" : "285362 (interacts with) 57192", "name" : "285362 (interacts with) 57192", "interaction" : "interacts with", "SUID" : 19062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19058", "source" : "5221", "target" : "5937", "shared_name" : "285362 (interacts with) 8120", "name" : "285362 (interacts with) 8120", "interaction" : "interacts with", "SUID" : 19058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19054", "source" : "5221", "target" : "1677", "shared_name" : "285362 (interacts with) 8905", "name" : "285362 (interacts with) 8905", "interaction" : "interacts with", "SUID" : 19054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19050", "source" : "5221", "target" : "4393", "shared_name" : "285362 (interacts with) 950", "name" : "285362 (interacts with) 950", "interaction" : "interacts with", "SUID" : 19050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19046", "source" : "5221", "target" : "1445", "shared_name" : "285362 (interacts with) 9179", "name" : "285362 (interacts with) 9179", "interaction" : "interacts with", "SUID" : 19046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19042", "source" : "5221", "target" : "3693", "shared_name" : "285362 (interacts with) 8943", "name" : "285362 (interacts with) 8943", "interaction" : "interacts with", "SUID" : 19042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19038", "source" : "5221", "target" : "2233", "shared_name" : "285362 (interacts with) 9516", "name" : "285362 (interacts with) 9516", "interaction" : "interacts with", "SUID" : 19038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19034", "source" : "5221", "target" : "3025", "shared_name" : "285362 (interacts with) 55627", "name" : "285362 (interacts with) 55627", "interaction" : "interacts with", "SUID" : 19034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19030", "source" : "5221", "target" : "5637", "shared_name" : "285362 (interacts with) 6609", "name" : "285362 (interacts with) 6609", "interaction" : "interacts with", "SUID" : 19030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19026", "source" : "5221", "target" : "897", "shared_name" : "285362 (interacts with) 3073", "name" : "285362 (interacts with) 3073", "interaction" : "interacts with", "SUID" : 19026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19098", "source" : "5217", "target" : "5201", "shared_name" : "54902 (interacts with) 353", "name" : "54902 (interacts with) 353", "interaction" : "interacts with", "SUID" : 19098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19094", "source" : "5217", "target" : "5233", "shared_name" : "54902 (interacts with) 79068", "name" : "54902 (interacts with) 79068", "interaction" : "interacts with", "SUID" : 19094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19090", "source" : "5217", "target" : "5461", "shared_name" : "54902 (interacts with) 4665", "name" : "54902 (interacts with) 4665", "interaction" : "interacts with", "SUID" : 19090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19086", "source" : "5217", "target" : "5253", "shared_name" : "54902 (interacts with) 56006", "name" : "54902 (interacts with) 56006", "interaction" : "interacts with", "SUID" : 19086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19082", "source" : "5217", "target" : "5213", "shared_name" : "54902 (interacts with) 2271", "name" : "54902 (interacts with) 2271", "interaction" : "interacts with", "SUID" : 19082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19190", "source" : "5213", "target" : "1605", "shared_name" : "2271 (interacts with) 6648", "name" : "2271 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 19190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19186", "source" : "5213", "target" : "4273", "shared_name" : "2271 (interacts with) 4548", "name" : "2271 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 19186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19182", "source" : "5213", "target" : "245", "shared_name" : "2271 (interacts with) 2936", "name" : "2271 (interacts with) 2936", "interaction" : "interacts with", "SUID" : 19182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19178", "source" : "5213", "target" : "4617", "shared_name" : "2271 (interacts with) 26227", "name" : "2271 (interacts with) 26227", "interaction" : "interacts with", "SUID" : 19178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19174", "source" : "5213", "target" : "521", "shared_name" : "2271 (interacts with) 85476", "name" : "2271 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 19174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19170", "source" : "5213", "target" : "1237", "shared_name" : "2271 (interacts with) 3329", "name" : "2271 (interacts with) 3329", "interaction" : "interacts with", "SUID" : 19170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19166", "source" : "5213", "target" : "5737", "shared_name" : "2271 (interacts with) 84340", "name" : "2271 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 19166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19162", "source" : "5213", "target" : "5109", "shared_name" : "2271 (interacts with) 790", "name" : "2271 (interacts with) 790", "interaction" : "interacts with", "SUID" : 19162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19158", "source" : "5213", "target" : "2405", "shared_name" : "2271 (interacts with) 3658", "name" : "2271 (interacts with) 3658", "interaction" : "interacts with", "SUID" : 19158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19154", "source" : "5213", "target" : "3445", "shared_name" : "2271 (interacts with) 5091", "name" : "2271 (interacts with) 5091", "interaction" : "interacts with", "SUID" : 19154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19150", "source" : "5213", "target" : "5025", "shared_name" : "2271 (interacts with) 6389", "name" : "2271 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 19150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19146", "source" : "5213", "target" : "1669", "shared_name" : "2271 (interacts with) 6390", "name" : "2271 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 19146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19142", "source" : "5213", "target" : "3421", "shared_name" : "2271 (interacts with) 4967", "name" : "2271 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 19142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19138", "source" : "5213", "target" : "3541", "shared_name" : "2271 (interacts with) 4191", "name" : "2271 (interacts with) 4191", "interaction" : "interacts with", "SUID" : 19138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19134", "source" : "5213", "target" : "1133", "shared_name" : "2271 (interacts with) 3418", "name" : "2271 (interacts with) 3418", "interaction" : "interacts with", "SUID" : 19134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19130", "source" : "5213", "target" : "2925", "shared_name" : "2271 (interacts with) 8802", "name" : "2271 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 19130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19126", "source" : "5213", "target" : "2089", "shared_name" : "2271 (interacts with) 3939", "name" : "2271 (interacts with) 3939", "interaction" : "interacts with", "SUID" : 19126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19122", "source" : "5213", "target" : "1289", "shared_name" : "2271 (interacts with) 6392", "name" : "2271 (interacts with) 6392", "interaction" : "interacts with", "SUID" : 19122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19118", "source" : "5213", "target" : "397", "shared_name" : "2271 (interacts with) 50", "name" : "2271 (interacts with) 50", "interaction" : "interacts with", "SUID" : 19118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19114", "source" : "5213", "target" : "3425", "shared_name" : "2271 (interacts with) 8803", "name" : "2271 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 19114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19110", "source" : "5213", "target" : "3021", "shared_name" : "2271 (interacts with) 84823", "name" : "2271 (interacts with) 84823", "interaction" : "interacts with", "SUID" : 19110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19106", "source" : "5213", "target" : "1857", "shared_name" : "2271 (interacts with) 9533", "name" : "2271 (interacts with) 9533", "interaction" : "interacts with", "SUID" : 19106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19102", "source" : "5213", "target" : "489", "shared_name" : "2271 (interacts with) 1629", "name" : "2271 (interacts with) 1629", "interaction" : "interacts with", "SUID" : 19102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19194", "source" : "5209", "target" : "4657", "shared_name" : "23162 (interacts with) 64837", "name" : "23162 (interacts with) 64837", "interaction" : "interacts with", "SUID" : 19194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19222", "source" : "5205", "target" : "4941", "shared_name" : "5828 (interacts with) 6342", "name" : "5828 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 19222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19218", "source" : "5205", "target" : "5237", "shared_name" : "5828 (interacts with) 5830", "name" : "5828 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 19218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19214", "source" : "5205", "target" : "3333", "shared_name" : "5828 (interacts with) 9409", "name" : "5828 (interacts with) 9409", "interaction" : "interacts with", "SUID" : 19214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19210", "source" : "5205", "target" : "196", "shared_name" : "5828 (interacts with) 84188", "name" : "5828 (interacts with) 84188", "interaction" : "interacts with", "SUID" : 19210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19206", "source" : "5205", "target" : "4301", "shared_name" : "5828 (interacts with) 8799", "name" : "5828 (interacts with) 8799", "interaction" : "interacts with", "SUID" : 19206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19202", "source" : "5205", "target" : "3341", "shared_name" : "5828 (interacts with) 8504", "name" : "5828 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 19202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19198", "source" : "5205", "target" : "2353", "shared_name" : "5828 (interacts with) 5264", "name" : "5828 (interacts with) 5264", "interaction" : "interacts with", "SUID" : 19198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19290", "source" : "5201", "target" : "1485", "shared_name" : "353 (interacts with) 8050", "name" : "353 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 19290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19286", "source" : "5201", "target" : "4729", "shared_name" : "353 (interacts with) 5216", "name" : "353 (interacts with) 5216", "interaction" : "interacts with", "SUID" : 19286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19282", "source" : "5201", "target" : "4273", "shared_name" : "353 (interacts with) 4548", "name" : "353 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 19282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19278", "source" : "5201", "target" : "3997", "shared_name" : "353 (interacts with) 1890", "name" : "353 (interacts with) 1890", "interaction" : "interacts with", "SUID" : 19278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19274", "source" : "5201", "target" : "781", "shared_name" : "353 (interacts with) 4860", "name" : "353 (interacts with) 4860", "interaction" : "interacts with", "SUID" : 19274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19270", "source" : "5201", "target" : "4993", "shared_name" : "353 (interacts with) 8622", "name" : "353 (interacts with) 8622", "interaction" : "interacts with", "SUID" : 19270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19266", "source" : "5201", "target" : "5841", "shared_name" : "353 (interacts with) 10846", "name" : "353 (interacts with) 10846", "interaction" : "interacts with", "SUID" : 19266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19262", "source" : "5201", "target" : "5165", "shared_name" : "353 (interacts with) 3704", "name" : "353 (interacts with) 3704", "interaction" : "interacts with", "SUID" : 19262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19258", "source" : "5201", "target" : "1713", "shared_name" : "353 (interacts with) 5631", "name" : "353 (interacts with) 5631", "interaction" : "interacts with", "SUID" : 19258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19254", "source" : "5201", "target" : "2945", "shared_name" : "353 (interacts with) 471", "name" : "353 (interacts with) 471", "interaction" : "interacts with", "SUID" : 19254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19250", "source" : "5201", "target" : "4045", "shared_name" : "353 (interacts with) 29920", "name" : "353 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 19250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19246", "source" : "5201", "target" : "3501", "shared_name" : "353 (interacts with) 5831", "name" : "353 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 19246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19242", "source" : "5201", "target" : "3917", "shared_name" : "353 (interacts with) 22978", "name" : "353 (interacts with) 22978", "interaction" : "interacts with", "SUID" : 19242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19238", "source" : "5201", "target" : "5529", "shared_name" : "353 (interacts with) 2875", "name" : "353 (interacts with) 2875", "interaction" : "interacts with", "SUID" : 19238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19234", "source" : "5201", "target" : "4253", "shared_name" : "353 (interacts with) 84706", "name" : "353 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 19234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19230", "source" : "5201", "target" : "5109", "shared_name" : "353 (interacts with) 790", "name" : "353 (interacts with) 790", "interaction" : "interacts with", "SUID" : 19230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19226", "source" : "5201", "target" : "2089", "shared_name" : "353 (interacts with) 3939", "name" : "353 (interacts with) 3939", "interaction" : "interacts with", "SUID" : 19226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19306", "source" : "5197", "target" : "6073", "shared_name" : "7156 (interacts with) 92170", "name" : "7156 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 19306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19302", "source" : "5197", "target" : "1793", "shared_name" : "7156 (interacts with) 7515", "name" : "7156 (interacts with) 7515", "interaction" : "interacts with", "SUID" : 19302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19298", "source" : "5197", "target" : "5521", "shared_name" : "7156 (interacts with) 7518", "name" : "7156 (interacts with) 7518", "interaction" : "interacts with", "SUID" : 19298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19294", "source" : "5197", "target" : "981", "shared_name" : "7156 (interacts with) 7157", "name" : "7156 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 19294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19322", "source" : "5193", "target" : "473", "shared_name" : "5725 (interacts with) 7072", "name" : "5725 (interacts with) 7072", "interaction" : "interacts with", "SUID" : 19322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19318", "source" : "5193", "target" : "5377", "shared_name" : "5725 (interacts with) 6638", "name" : "5725 (interacts with) 6638", "interaction" : "interacts with", "SUID" : 19318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19314", "source" : "5193", "target" : "1837", "shared_name" : "5725 (interacts with) 9939", "name" : "5725 (interacts with) 9939", "interaction" : "interacts with", "SUID" : 19314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19310", "source" : "5193", "target" : "3841", "shared_name" : "5725 (interacts with) 9444", "name" : "5725 (interacts with) 9444", "interaction" : "interacts with", "SUID" : 19310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19426", "source" : "5189", "target" : "501", "shared_name" : "57176 (interacts with) 65993", "name" : "57176 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 19426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19422", "source" : "5189", "target" : "1085", "shared_name" : "57176 (interacts with) 9377", "name" : "57176 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 19422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19418", "source" : "5189", "target" : "401", "shared_name" : "57176 (interacts with) 6532", "name" : "57176 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 19418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19414", "source" : "5189", "target" : "6181", "shared_name" : "57176 (interacts with) 84987", "name" : "57176 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 19414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19410", "source" : "5189", "target" : "4409", "shared_name" : "57176 (interacts with) 6341", "name" : "57176 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 19410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19406", "source" : "5189", "target" : "309", "shared_name" : "57176 (interacts with) 6536", "name" : "57176 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 19406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19402", "source" : "5189", "target" : "1325", "shared_name" : "57176 (interacts with) 7284", "name" : "57176 (interacts with) 7284", "interaction" : "interacts with", "SUID" : 19402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19398", "source" : "5189", "target" : "889", "shared_name" : "57176 (interacts with) 80224", "name" : "57176 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 19398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19394", "source" : "5189", "target" : "1013", "shared_name" : "57176 (interacts with) 6898", "name" : "57176 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 19394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19390", "source" : "5189", "target" : "2009", "shared_name" : "57176 (interacts with) 79133", "name" : "57176 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 19390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19386", "source" : "5189", "target" : "3705", "shared_name" : "57176 (interacts with) 87178", "name" : "57176 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 19386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19382", "source" : "5189", "target" : "4101", "shared_name" : "57176 (interacts with) 65260", "name" : "57176 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 19382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19378", "source" : "5189", "target" : "713", "shared_name" : "57176 (interacts with) 7019", "name" : "57176 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 19378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19374", "source" : "5189", "target" : "4757", "shared_name" : "57176 (interacts with) 9997", "name" : "57176 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 19374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19370", "source" : "5189", "target" : "1129", "shared_name" : "57176 (interacts with) 57505", "name" : "57176 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 19370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19366", "source" : "5189", "target" : "4349", "shared_name" : "57176 (interacts with) 5859", "name" : "57176 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 19366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19362", "source" : "5189", "target" : "5737", "shared_name" : "57176 (interacts with) 84340", "name" : "57176 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 19362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19358", "source" : "5189", "target" : "4141", "shared_name" : "57176 (interacts with) 617", "name" : "57176 (interacts with) 617", "interaction" : "interacts with", "SUID" : 19358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19354", "source" : "5189", "target" : "6073", "shared_name" : "57176 (interacts with) 92170", "name" : "57176 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 19354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19350", "source" : "5189", "target" : "1089", "shared_name" : "57176 (interacts with) 5917", "name" : "57176 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 19350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19346", "source" : "5189", "target" : "4693", "shared_name" : "57176 (interacts with) 6301", "name" : "57176 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 19346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19342", "source" : "5189", "target" : "521", "shared_name" : "57176 (interacts with) 85476", "name" : "57176 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 19342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19338", "source" : "5189", "target" : "1197", "shared_name" : "57176 (interacts with) 79587", "name" : "57176 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 19338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19334", "source" : "5189", "target" : "4869", "shared_name" : "57176 (interacts with) 92935", "name" : "57176 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 19334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19330", "source" : "5189", "target" : "721", "shared_name" : "57176 (interacts with) 79731", "name" : "57176 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 19330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19326", "source" : "5189", "target" : "1581", "shared_name" : "57176 (interacts with) 7407", "name" : "57176 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 19326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19586", "source" : "5185", "target" : "4213", "shared_name" : "1499 (interacts with) 5295", "name" : "1499 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 19586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19582", "source" : "5185", "target" : "5225", "shared_name" : "1499 (interacts with) 5290", "name" : "1499 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 19582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19578", "source" : "5185", "target" : "3017", "shared_name" : "1499 (interacts with) 4790", "name" : "1499 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 19578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19574", "source" : "5185", "target" : "4949", "shared_name" : "1499 (interacts with) 5970", "name" : "1499 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 19574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19570", "source" : "5185", "target" : "973", "shared_name" : "1499 (interacts with) 5595", "name" : "1499 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 19570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19566", "source" : "5185", "target" : "3685", "shared_name" : "1499 (interacts with) 3265", "name" : "1499 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 19566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19562", "source" : "5185", "target" : "5081", "shared_name" : "1499 (interacts with) 5594", "name" : "1499 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 19562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19558", "source" : "5185", "target" : "2153", "shared_name" : "1499 (interacts with) 7042", "name" : "1499 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 19558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19554", "source" : "5185", "target" : "3305", "shared_name" : "1499 (interacts with) 7040", "name" : "1499 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 19554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19550", "source" : "5185", "target" : "3409", "shared_name" : "1499 (interacts with) 7043", "name" : "1499 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 19550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19546", "source" : "5185", "target" : "2625", "shared_name" : "1499 (interacts with) 3065", "name" : "1499 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 19546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19542", "source" : "5185", "target" : "637", "shared_name" : "1499 (interacts with) 6654", "name" : "1499 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 19542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19538", "source" : "5185", "target" : "5761", "shared_name" : "1499 (interacts with) 4208", "name" : "1499 (interacts with) 4208", "interaction" : "interacts with", "SUID" : 19538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19534", "source" : "5185", "target" : "2433", "shared_name" : "1499 (interacts with) 6927", "name" : "1499 (interacts with) 6927", "interaction" : "interacts with", "SUID" : 19534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19530", "source" : "5185", "target" : "5625", "shared_name" : "1499 (interacts with) 595", "name" : "1499 (interacts with) 595", "interaction" : "interacts with", "SUID" : 19530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19526", "source" : "5185", "target" : "4533", "shared_name" : "1499 (interacts with) 4089", "name" : "1499 (interacts with) 4089", "interaction" : "interacts with", "SUID" : 19526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19522", "source" : "5185", "target" : "5745", "shared_name" : "1499 (interacts with) 7471", "name" : "1499 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 19522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19518", "source" : "5185", "target" : "3041", "shared_name" : "1499 (interacts with) 5663", "name" : "1499 (interacts with) 5663", "interaction" : "interacts with", "SUID" : 19518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19514", "source" : "5185", "target" : "569", "shared_name" : "1499 (interacts with) 7048", "name" : "1499 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 19514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19510", "source" : "5185", "target" : "6109", "shared_name" : "1499 (interacts with) 2688", "name" : "1499 (interacts with) 2688", "interaction" : "interacts with", "SUID" : 19510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19506", "source" : "5185", "target" : "2921", "shared_name" : "1499 (interacts with) 5981", "name" : "1499 (interacts with) 5981", "interaction" : "interacts with", "SUID" : 19506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19502", "source" : "5185", "target" : "1789", "shared_name" : "1499 (interacts with) 652", "name" : "1499 (interacts with) 652", "interaction" : "interacts with", "SUID" : 19502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19498", "source" : "5185", "target" : "1765", "shared_name" : "1499 (interacts with) 5308", "name" : "1499 (interacts with) 5308", "interaction" : "interacts with", "SUID" : 19498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19494", "source" : "5185", "target" : "4469", "shared_name" : "1499 (interacts with) 8295", "name" : "1499 (interacts with) 8295", "interaction" : "interacts with", "SUID" : 19494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19490", "source" : "5185", "target" : "4537", "shared_name" : "1499 (interacts with) 2697", "name" : "1499 (interacts with) 2697", "interaction" : "interacts with", "SUID" : 19490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19486", "source" : "5185", "target" : "2401", "shared_name" : "1499 (interacts with) 28514", "name" : "1499 (interacts with) 28514", "interaction" : "interacts with", "SUID" : 19486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19482", "source" : "5185", "target" : "1029", "shared_name" : "1499 (interacts with) 5080", "name" : "1499 (interacts with) 5080", "interaction" : "interacts with", "SUID" : 19482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19478", "source" : "5185", "target" : "661", "shared_name" : "1499 (interacts with) 6657", "name" : "1499 (interacts with) 6657", "interaction" : "interacts with", "SUID" : 19478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19474", "source" : "5185", "target" : "4697", "shared_name" : "1499 (interacts with) 7534", "name" : "1499 (interacts with) 7534", "interaction" : "interacts with", "SUID" : 19474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19470", "source" : "5185", "target" : "2081", "shared_name" : "1499 (interacts with) 5468", "name" : "1499 (interacts with) 5468", "interaction" : "interacts with", "SUID" : 19470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19466", "source" : "5185", "target" : "4765", "shared_name" : "1499 (interacts with) 7015", "name" : "1499 (interacts with) 7015", "interaction" : "interacts with", "SUID" : 19466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19462", "source" : "5185", "target" : "1069", "shared_name" : "1499 (interacts with) 5879", "name" : "1499 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 19462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19458", "source" : "5185", "target" : "1621", "shared_name" : "1499 (interacts with) 1432", "name" : "1499 (interacts with) 1432", "interaction" : "interacts with", "SUID" : 19458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19454", "source" : "5185", "target" : "5641", "shared_name" : "1499 (interacts with) 5518", "name" : "1499 (interacts with) 5518", "interaction" : "interacts with", "SUID" : 19454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19450", "source" : "5185", "target" : "3769", "shared_name" : "1499 (interacts with) 8085", "name" : "1499 (interacts with) 8085", "interaction" : "interacts with", "SUID" : 19450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19446", "source" : "5185", "target" : "509", "shared_name" : "1499 (interacts with) 3661", "name" : "1499 (interacts with) 3661", "interaction" : "interacts with", "SUID" : 19446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19442", "source" : "5185", "target" : "5121", "shared_name" : "1499 (interacts with) 1496", "name" : "1499 (interacts with) 1496", "interaction" : "interacts with", "SUID" : 19442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19438", "source" : "5185", "target" : "3093", "shared_name" : "1499 (interacts with) 6597", "name" : "1499 (interacts with) 6597", "interaction" : "interacts with", "SUID" : 19438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19434", "source" : "5185", "target" : "3609", "shared_name" : "1499 (interacts with) 10297", "name" : "1499 (interacts with) 10297", "interaction" : "interacts with", "SUID" : 19434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19430", "source" : "5185", "target" : "2389", "shared_name" : "1499 (interacts with) 6925", "name" : "1499 (interacts with) 6925", "interaction" : "interacts with", "SUID" : 19430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19590", "source" : "5181", "target" : "1629", "shared_name" : "170825 (interacts with) 6047", "name" : "170825 (interacts with) 6047", "interaction" : "interacts with", "SUID" : 19590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19594", "source" : "5177", "target" : "2841", "shared_name" : "7097 (interacts with) 7098", "name" : "7097 (interacts with) 7098", "interaction" : "interacts with", "SUID" : 19594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19622", "source" : "5173", "target" : "5893", "shared_name" : "1718 (interacts with) 6309", "name" : "1718 (interacts with) 6309", "interaction" : "interacts with", "SUID" : 19622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19618", "source" : "5173", "target" : "4489", "shared_name" : "1718 (interacts with) 2222", "name" : "1718 (interacts with) 2222", "interaction" : "interacts with", "SUID" : 19618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19614", "source" : "5173", "target" : "3013", "shared_name" : "1718 (interacts with) 50814", "name" : "1718 (interacts with) 50814", "interaction" : "interacts with", "SUID" : 19614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19610", "source" : "5173", "target" : "681", "shared_name" : "1718 (interacts with) 6646", "name" : "1718 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 19610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19606", "source" : "5173", "target" : "1721", "shared_name" : "1718 (interacts with) 51807", "name" : "1718 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 19606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19602", "source" : "5173", "target" : "1525", "shared_name" : "1718 (interacts with) 3295", "name" : "1718 (interacts with) 3295", "interaction" : "interacts with", "SUID" : 19602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19598", "source" : "5173", "target" : "3681", "shared_name" : "1718 (interacts with) 1892", "name" : "1718 (interacts with) 1892", "interaction" : "interacts with", "SUID" : 19598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19802", "source" : "5169", "target" : "3761", "shared_name" : "1355 (interacts with) 25915", "name" : "1355 (interacts with) 25915", "interaction" : "interacts with", "SUID" : 19802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19798", "source" : "5169", "target" : "4945", "shared_name" : "1355 (interacts with) 4722", "name" : "1355 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 19798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19794", "source" : "5169", "target" : "6049", "shared_name" : "1355 (interacts with) 25973", "name" : "1355 (interacts with) 25973", "interaction" : "interacts with", "SUID" : 19794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19790", "source" : "5169", "target" : "5505", "shared_name" : "1355 (interacts with) 29078", "name" : "1355 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 19790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19786", "source" : "5169", "target" : "5985", "shared_name" : "1355 (interacts with) 27235", "name" : "1355 (interacts with) 27235", "interaction" : "interacts with", "SUID" : 19786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19782", "source" : "5169", "target" : "2797", "shared_name" : "1355 (interacts with) 4728", "name" : "1355 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 19782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19778", "source" : "5169", "target" : "2609", "shared_name" : "1355 (interacts with) 29960", "name" : "1355 (interacts with) 29960", "interaction" : "interacts with", "SUID" : 19778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19774", "source" : "5169", "target" : "5737", "shared_name" : "1355 (interacts with) 84340", "name" : "1355 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 19774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19770", "source" : "5169", "target" : "521", "shared_name" : "1355 (interacts with) 85476", "name" : "1355 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 19770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19766", "source" : "5169", "target" : "1197", "shared_name" : "1355 (interacts with) 79587", "name" : "1355 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 19766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19762", "source" : "5169", "target" : "2285", "shared_name" : "1355 (interacts with) 51300", "name" : "1355 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 19762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19758", "source" : "5169", "target" : "721", "shared_name" : "1355 (interacts with) 79731", "name" : "1355 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 19758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19754", "source" : "5169", "target" : "2801", "shared_name" : "1355 (interacts with) 4700", "name" : "1355 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 19754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19750", "source" : "5169", "target" : "5689", "shared_name" : "1355 (interacts with) 27089", "name" : "1355 (interacts with) 27089", "interaction" : "interacts with", "SUID" : 19750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19746", "source" : "5169", "target" : "4061", "shared_name" : "1355 (interacts with) 4705", "name" : "1355 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 19746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19742", "source" : "5169", "target" : "4409", "shared_name" : "1355 (interacts with) 6341", "name" : "1355 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 19742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19738", "source" : "5169", "target" : "4897", "shared_name" : "1355 (interacts with) 55149", "name" : "1355 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 19738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19734", "source" : "5169", "target" : "3973", "shared_name" : "1355 (interacts with) 55572", "name" : "1355 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 19734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19730", "source" : "5169", "target" : "501", "shared_name" : "1355 (interacts with) 65993", "name" : "1355 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 19730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19726", "source" : "5169", "target" : "1869", "shared_name" : "1355 (interacts with) 4729", "name" : "1355 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 19726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19722", "source" : "5169", "target" : "2021", "shared_name" : "1355 (interacts with) 5428", "name" : "1355 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 19722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19718", "source" : "5169", "target" : "4101", "shared_name" : "1355 (interacts with) 65260", "name" : "1355 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 19718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19714", "source" : "5169", "target" : "4757", "shared_name" : "1355 (interacts with) 9997", "name" : "1355 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 19714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19710", "source" : "5169", "target" : "2009", "shared_name" : "1355 (interacts with) 79133", "name" : "1355 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 19710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19706", "source" : "5169", "target" : "4017", "shared_name" : "1355 (interacts with) 4719", "name" : "1355 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 19706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19702", "source" : "5169", "target" : "1129", "shared_name" : "1355 (interacts with) 57505", "name" : "1355 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 19702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19698", "source" : "5169", "target" : "2741", "shared_name" : "1355 (interacts with) 4695", "name" : "1355 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 19698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19694", "source" : "5169", "target" : "6001", "shared_name" : "1355 (interacts with) 55157", "name" : "1355 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 19694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19690", "source" : "5169", "target" : "6073", "shared_name" : "1355 (interacts with) 92170", "name" : "1355 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 19690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19686", "source" : "5169", "target" : "2477", "shared_name" : "1355 (interacts with) 57107", "name" : "1355 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 19686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19682", "source" : "5169", "target" : "4621", "shared_name" : "1355 (interacts with) 57038", "name" : "1355 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 19682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19678", "source" : "5169", "target" : "4593", "shared_name" : "1355 (interacts with) 2058", "name" : "1355 (interacts with) 2058", "interaction" : "interacts with", "SUID" : 19678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19674", "source" : "5169", "target" : "1561", "shared_name" : "1355 (interacts with) 51117", "name" : "1355 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 19674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19670", "source" : "5169", "target" : "713", "shared_name" : "1355 (interacts with) 7019", "name" : "1355 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 19670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19666", "source" : "5169", "target" : "4241", "shared_name" : "1355 (interacts with) 1356", "name" : "1355 (interacts with) 1356", "interaction" : "interacts with", "SUID" : 19666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19662", "source" : "5169", "target" : "5393", "shared_name" : "1355 (interacts with) 2395", "name" : "1355 (interacts with) 2395", "interaction" : "interacts with", "SUID" : 19662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19658", "source" : "5169", "target" : "2109", "shared_name" : "1355 (interacts with) 51103", "name" : "1355 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 19658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19654", "source" : "5169", "target" : "2753", "shared_name" : "1355 (interacts with) 4720", "name" : "1355 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 19654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19650", "source" : "5169", "target" : "3633", "shared_name" : "1355 (interacts with) 51067", "name" : "1355 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 19650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19646", "source" : "5169", "target" : "2105", "shared_name" : "1355 (interacts with) 56945", "name" : "1355 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 19646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19642", "source" : "5169", "target" : "4141", "shared_name" : "1355 (interacts with) 617", "name" : "1355 (interacts with) 617", "interaction" : "interacts with", "SUID" : 19642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19638", "source" : "5169", "target" : "477", "shared_name" : "1355 (interacts with) 51021", "name" : "1355 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 19638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19634", "source" : "5169", "target" : "4869", "shared_name" : "1355 (interacts with) 92935", "name" : "1355 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 19634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19630", "source" : "5169", "target" : "229", "shared_name" : "1355 (interacts with) 1371", "name" : "1355 (interacts with) 1371", "interaction" : "interacts with", "SUID" : 19630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19626", "source" : "5169", "target" : "6089", "shared_name" : "1355 (interacts with) 3145", "name" : "1355 (interacts with) 3145", "interaction" : "interacts with", "SUID" : 19626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19858", "source" : "5165", "target" : "2925", "shared_name" : "3704 (interacts with) 8802", "name" : "3704 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 19858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19854", "source" : "5165", "target" : "3425", "shared_name" : "3704 (interacts with) 8803", "name" : "3704 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 19854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19850", "source" : "5165", "target" : "2021", "shared_name" : "3704 (interacts with) 5428", "name" : "3704 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 19850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19846", "source" : "5165", "target" : "2121", "shared_name" : "3704 (interacts with) 11232", "name" : "3704 (interacts with) 11232", "interaction" : "interacts with", "SUID" : 19846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19842", "source" : "5165", "target" : "845", "shared_name" : "3704 (interacts with) 4358", "name" : "3704 (interacts with) 4358", "interaction" : "interacts with", "SUID" : 19842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19838", "source" : "5165", "target" : "1425", "shared_name" : "3704 (interacts with) 55644", "name" : "3704 (interacts with) 55644", "interaction" : "interacts with", "SUID" : 19838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19834", "source" : "5165", "target" : "1049", "shared_name" : "3704 (interacts with) 5422", "name" : "3704 (interacts with) 5422", "interaction" : "interacts with", "SUID" : 19834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19830", "source" : "5165", "target" : "5329", "shared_name" : "3704 (interacts with) 4907", "name" : "3704 (interacts with) 4907", "interaction" : "interacts with", "SUID" : 19830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19826", "source" : "5165", "target" : "5793", "shared_name" : "3704 (interacts with) 51251", "name" : "3704 (interacts with) 51251", "interaction" : "interacts with", "SUID" : 19826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19822", "source" : "5165", "target" : "3917", "shared_name" : "3704 (interacts with) 22978", "name" : "3704 (interacts with) 22978", "interaction" : "interacts with", "SUID" : 19822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19818", "source" : "5165", "target" : "2529", "shared_name" : "3704 (interacts with) 5424", "name" : "3704 (interacts with) 5424", "interaction" : "interacts with", "SUID" : 19818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19814", "source" : "5165", "target" : "1721", "shared_name" : "3704 (interacts with) 51807", "name" : "3704 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 19814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19810", "source" : "5165", "target" : "4941", "shared_name" : "3704 (interacts with) 6342", "name" : "3704 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 19810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19806", "source" : "5165", "target" : "741", "shared_name" : "3704 (interacts with) 4830", "name" : "3704 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 19806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19898", "source" : "5161", "target" : "5593", "shared_name" : "1786 (interacts with) 875", "name" : "1786 (interacts with) 875", "interaction" : "interacts with", "SUID" : 19898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19894", "source" : "5161", "target" : "4273", "shared_name" : "1786 (interacts with) 4548", "name" : "1786 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 19894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19890", "source" : "5161", "target" : "2457", "shared_name" : "1786 (interacts with) 4143", "name" : "1786 (interacts with) 4143", "interaction" : "interacts with", "SUID" : 19890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19886", "source" : "5161", "target" : "2205", "shared_name" : "1786 (interacts with) 2571", "name" : "1786 (interacts with) 2571", "interaction" : "interacts with", "SUID" : 19886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19882", "source" : "5161", "target" : "2725", "shared_name" : "1786 (interacts with) 1789", "name" : "1786 (interacts with) 1789", "interaction" : "interacts with", "SUID" : 19882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19878", "source" : "5161", "target" : "2625", "shared_name" : "1786 (interacts with) 3065", "name" : "1786 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 19878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19874", "source" : "5161", "target" : "1877", "shared_name" : "1786 (interacts with) 9531", "name" : "1786 (interacts with) 9531", "interaction" : "interacts with", "SUID" : 19874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19870", "source" : "5161", "target" : "237", "shared_name" : "1786 (interacts with) 5649", "name" : "1786 (interacts with) 5649", "interaction" : "interacts with", "SUID" : 19870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19866", "source" : "5161", "target" : "877", "shared_name" : "1786 (interacts with) 7341", "name" : "1786 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 19866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19862", "source" : "5161", "target" : "825", "shared_name" : "1786 (interacts with) 25942", "name" : "1786 (interacts with) 25942", "interaction" : "interacts with", "SUID" : 19862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19914", "source" : "5157", "target" : "313", "shared_name" : "1600 (interacts with) 5923", "name" : "1600 (interacts with) 5923", "interaction" : "interacts with", "SUID" : 19914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19910", "source" : "5157", "target" : "2677", "shared_name" : "1600 (interacts with) 7436", "name" : "1600 (interacts with) 7436", "interaction" : "interacts with", "SUID" : 19910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19906", "source" : "5157", "target" : "237", "shared_name" : "1600 (interacts with) 5649", "name" : "1600 (interacts with) 5649", "interaction" : "interacts with", "SUID" : 19906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19902", "source" : "5157", "target" : "2909", "shared_name" : "1600 (interacts with) 23126", "name" : "1600 (interacts with) 23126", "interaction" : "interacts with", "SUID" : 19902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20086", "source" : "5149", "target" : "5361", "shared_name" : "5058 (interacts with) 5604", "name" : "5058 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 20086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20082", "source" : "5149", "target" : "4949", "shared_name" : "5058 (interacts with) 5970", "name" : "5058 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 20082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20078", "source" : "5149", "target" : "4521", "shared_name" : "5058 (interacts with) 5894", "name" : "5058 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 20078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20074", "source" : "5149", "target" : "4065", "shared_name" : "5058 (interacts with) 7124", "name" : "5058 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 20074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20070", "source" : "5149", "target" : "3409", "shared_name" : "5058 (interacts with) 7043", "name" : "5058 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 20070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20066", "source" : "5149", "target" : "2153", "shared_name" : "5058 (interacts with) 7042", "name" : "5058 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 20066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20062", "source" : "5149", "target" : "3305", "shared_name" : "5058 (interacts with) 7040", "name" : "5058 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 20062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20058", "source" : "5149", "target" : "993", "shared_name" : "5058 (interacts with) 801", "name" : "5058 (interacts with) 801", "interaction" : "interacts with", "SUID" : 20058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20054", "source" : "5149", "target" : "637", "shared_name" : "5058 (interacts with) 6654", "name" : "5058 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 20054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20050", "source" : "5149", "target" : "1241", "shared_name" : "5058 (interacts with) 808", "name" : "5058 (interacts with) 808", "interaction" : "interacts with", "SUID" : 20050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20046", "source" : "5149", "target" : "1201", "shared_name" : "5058 (interacts with) 805", "name" : "5058 (interacts with) 805", "interaction" : "interacts with", "SUID" : 20046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20042", "source" : "5149", "target" : "3577", "shared_name" : "5058 (interacts with) 5605", "name" : "5058 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 20042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20038", "source" : "5149", "target" : "3593", "shared_name" : "5058 (interacts with) 5530", "name" : "5058 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 20038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20034", "source" : "5149", "target" : "805", "shared_name" : "5058 (interacts with) 6772", "name" : "5058 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 20034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20030", "source" : "5149", "target" : "5625", "shared_name" : "5058 (interacts with) 595", "name" : "5058 (interacts with) 595", "interaction" : "interacts with", "SUID" : 20030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20026", "source" : "5149", "target" : "4769", "shared_name" : "5058 (interacts with) 7132", "name" : "5058 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 20026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20022", "source" : "5149", "target" : "5313", "shared_name" : "5058 (interacts with) 6197", "name" : "5058 (interacts with) 6197", "interaction" : "interacts with", "SUID" : 20022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20018", "source" : "5149", "target" : "1845", "shared_name" : "5058 (interacts with) 836", "name" : "5058 (interacts with) 836", "interaction" : "interacts with", "SUID" : 20018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20014", "source" : "5149", "target" : "4981", "shared_name" : "5058 (interacts with) 6774", "name" : "5058 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 20014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20010", "source" : "5149", "target" : "1973", "shared_name" : "5058 (interacts with) 6709", "name" : "5058 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 20010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20006", "source" : "5149", "target" : "5333", "shared_name" : "5058 (interacts with) 5591", "name" : "5058 (interacts with) 5591", "interaction" : "interacts with", "SUID" : 20006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20002", "source" : "5149", "target" : "817", "shared_name" : "5058 (interacts with) 5728", "name" : "5058 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 20002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19998", "source" : "5149", "target" : "829", "shared_name" : "5058 (interacts with) 8772", "name" : "5058 (interacts with) 8772", "interaction" : "interacts with", "SUID" : 19998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19994", "source" : "5149", "target" : "5697", "shared_name" : "5058 (interacts with) 8517", "name" : "5058 (interacts with) 8517", "interaction" : "interacts with", "SUID" : 19994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19990", "source" : "5149", "target" : "4293", "shared_name" : "5058 (interacts with) 5156", "name" : "5058 (interacts with) 5156", "interaction" : "interacts with", "SUID" : 19990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19986", "source" : "5149", "target" : "3021", "shared_name" : "5058 (interacts with) 84823", "name" : "5058 (interacts with) 84823", "interaction" : "interacts with", "SUID" : 19986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19982", "source" : "5149", "target" : "1701", "shared_name" : "5058 (interacts with) 5777", "name" : "5058 (interacts with) 5777", "interaction" : "interacts with", "SUID" : 19982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19978", "source" : "5149", "target" : "3289", "shared_name" : "5058 (interacts with) 5913", "name" : "5058 (interacts with) 5913", "interaction" : "interacts with", "SUID" : 19978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19974", "source" : "5149", "target" : "3285", "shared_name" : "5058 (interacts with) 8302", "name" : "5058 (interacts with) 8302", "interaction" : "interacts with", "SUID" : 19974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19970", "source" : "5149", "target" : "2509", "shared_name" : "5058 (interacts with) 7204", "name" : "5058 (interacts with) 7204", "interaction" : "interacts with", "SUID" : 19970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19966", "source" : "5149", "target" : "5773", "shared_name" : "5058 (interacts with) 9181", "name" : "5058 (interacts with) 9181", "interaction" : "interacts with", "SUID" : 19966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19962", "source" : "5149", "target" : "997", "shared_name" : "5058 (interacts with) 7431", "name" : "5058 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 19962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19958", "source" : "5149", "target" : "2617", "shared_name" : "5058 (interacts with) 57531", "name" : "5058 (interacts with) 57531", "interaction" : "interacts with", "SUID" : 19958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19954", "source" : "5149", "target" : "945", "shared_name" : "5058 (interacts with) 2316", "name" : "5058 (interacts with) 2316", "interaction" : "interacts with", "SUID" : 19954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19950", "source" : "5149", "target" : "5185", "shared_name" : "5058 (interacts with) 1499", "name" : "5058 (interacts with) 1499", "interaction" : "interacts with", "SUID" : 19950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19946", "source" : "5149", "target" : "5105", "shared_name" : "5058 (interacts with) 1487", "name" : "5058 (interacts with) 1487", "interaction" : "interacts with", "SUID" : 19946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19942", "source" : "5149", "target" : "3033", "shared_name" : "5058 (interacts with) 1020", "name" : "5058 (interacts with) 1020", "interaction" : "interacts with", "SUID" : 19942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19938", "source" : "5149", "target" : "973", "shared_name" : "5058 (interacts with) 5595", "name" : "5058 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 19938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19934", "source" : "5149", "target" : "5037", "shared_name" : "5058 (interacts with) 5515", "name" : "5058 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 19934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19930", "source" : "5149", "target" : "5081", "shared_name" : "5058 (interacts with) 5594", "name" : "5058 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 19930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19926", "source" : "5149", "target" : "1069", "shared_name" : "5058 (interacts with) 5879", "name" : "5058 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 19926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19922", "source" : "5149", "target" : "5509", "shared_name" : "5058 (interacts with) 207", "name" : "5058 (interacts with) 207", "interaction" : "interacts with", "SUID" : 19922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "19918", "source" : "5149", "target" : "1405", "shared_name" : "5058 (interacts with) 998", "name" : "5058 (interacts with) 998", "interaction" : "interacts with", "SUID" : 19918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20226", "source" : "5145", "target" : "5761", "shared_name" : "23236 (interacts with) 4208", "name" : "23236 (interacts with) 4208", "interaction" : "interacts with", "SUID" : 20226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20222", "source" : "5145", "target" : "3685", "shared_name" : "23236 (interacts with) 3265", "name" : "23236 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 20222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20218", "source" : "5145", "target" : "973", "shared_name" : "23236 (interacts with) 5595", "name" : "23236 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 20218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20214", "source" : "5145", "target" : "5081", "shared_name" : "23236 (interacts with) 5594", "name" : "23236 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 20214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20210", "source" : "5145", "target" : "4949", "shared_name" : "23236 (interacts with) 5970", "name" : "23236 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 20210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20206", "source" : "5145", "target" : "3017", "shared_name" : "23236 (interacts with) 4790", "name" : "23236 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 20206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20202", "source" : "5145", "target" : "5225", "shared_name" : "23236 (interacts with) 5290", "name" : "23236 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 20202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20198", "source" : "5145", "target" : "4213", "shared_name" : "23236 (interacts with) 5295", "name" : "23236 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 20198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20194", "source" : "5145", "target" : "4521", "shared_name" : "23236 (interacts with) 5894", "name" : "23236 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 20194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20190", "source" : "5145", "target" : "5361", "shared_name" : "23236 (interacts with) 5604", "name" : "23236 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 20190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20186", "source" : "5145", "target" : "1069", "shared_name" : "23236 (interacts with) 5879", "name" : "23236 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 20186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20182", "source" : "5145", "target" : "4065", "shared_name" : "23236 (interacts with) 7124", "name" : "23236 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 20182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20178", "source" : "5145", "target" : "4857", "shared_name" : "23236 (interacts with) 5573", "name" : "23236 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 20178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20174", "source" : "5145", "target" : "5037", "shared_name" : "23236 (interacts with) 5515", "name" : "23236 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 20174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20170", "source" : "5145", "target" : "5149", "shared_name" : "23236 (interacts with) 5058", "name" : "23236 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 20170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20166", "source" : "5145", "target" : "1241", "shared_name" : "23236 (interacts with) 808", "name" : "23236 (interacts with) 808", "interaction" : "interacts with", "SUID" : 20166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20162", "source" : "5145", "target" : "993", "shared_name" : "23236 (interacts with) 801", "name" : "23236 (interacts with) 801", "interaction" : "interacts with", "SUID" : 20162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20158", "source" : "5145", "target" : "1201", "shared_name" : "23236 (interacts with) 805", "name" : "23236 (interacts with) 805", "interaction" : "interacts with", "SUID" : 20158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20154", "source" : "5145", "target" : "3577", "shared_name" : "23236 (interacts with) 5605", "name" : "23236 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 20154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20150", "source" : "5145", "target" : "3593", "shared_name" : "23236 (interacts with) 5530", "name" : "23236 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 20150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20146", "source" : "5145", "target" : "2957", "shared_name" : "23236 (interacts with) 5465", "name" : "23236 (interacts with) 5465", "interaction" : "interacts with", "SUID" : 20146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20142", "source" : "5145", "target" : "565", "shared_name" : "23236 (interacts with) 4772", "name" : "23236 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 20142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20138", "source" : "5145", "target" : "3177", "shared_name" : "23236 (interacts with) 5321", "name" : "23236 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 20138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20134", "source" : "5145", "target" : "4293", "shared_name" : "23236 (interacts with) 5156", "name" : "23236 (interacts with) 5156", "interaction" : "interacts with", "SUID" : 20134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20130", "source" : "5145", "target" : "2537", "shared_name" : "23236 (interacts with) 3984", "name" : "23236 (interacts with) 3984", "interaction" : "interacts with", "SUID" : 20130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20126", "source" : "5145", "target" : "5321", "shared_name" : "23236 (interacts with) 5743", "name" : "23236 (interacts with) 5743", "interaction" : "interacts with", "SUID" : 20126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20122", "source" : "5145", "target" : "5637", "shared_name" : "23236 (interacts with) 6609", "name" : "23236 (interacts with) 6609", "interaction" : "interacts with", "SUID" : 20122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20118", "source" : "5145", "target" : "3833", "shared_name" : "23236 (interacts with) 9138", "name" : "23236 (interacts with) 9138", "interaction" : "interacts with", "SUID" : 20118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20114", "source" : "5145", "target" : "2697", "shared_name" : "23236 (interacts with) 240", "name" : "23236 (interacts with) 240", "interaction" : "interacts with", "SUID" : 20114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20110", "source" : "5145", "target" : "4133", "shared_name" : "23236 (interacts with) 427", "name" : "23236 (interacts with) 427", "interaction" : "interacts with", "SUID" : 20110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20106", "source" : "5145", "target" : "1805", "shared_name" : "23236 (interacts with) 3738", "name" : "23236 (interacts with) 3738", "interaction" : "interacts with", "SUID" : 20106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20102", "source" : "5145", "target" : "3557", "shared_name" : "23236 (interacts with) 2911", "name" : "23236 (interacts with) 2911", "interaction" : "interacts with", "SUID" : 20102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20098", "source" : "5145", "target" : "2969", "shared_name" : "23236 (interacts with) 8867", "name" : "23236 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 20098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20094", "source" : "5145", "target" : "817", "shared_name" : "23236 (interacts with) 5728", "name" : "23236 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 20094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20090", "source" : "5145", "target" : "6101", "shared_name" : "23236 (interacts with) 5582", "name" : "23236 (interacts with) 5582", "interaction" : "interacts with", "SUID" : 20090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20234", "source" : "5141", "target" : "897", "shared_name" : "11261 (interacts with) 3073", "name" : "11261 (interacts with) 3073", "interaction" : "interacts with", "SUID" : 20234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20230", "source" : "5141", "target" : "1809", "shared_name" : "11261 (interacts with) 6548", "name" : "11261 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 20230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20418", "source" : "5133", "target" : "3329", "shared_name" : "51 (interacts with) 5824", "name" : "51 (interacts with) 5824", "interaction" : "interacts with", "SUID" : 20418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20414", "source" : "5133", "target" : "973", "shared_name" : "51 (interacts with) 5595", "name" : "51 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 20414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20410", "source" : "5133", "target" : "5081", "shared_name" : "51 (interacts with) 5594", "name" : "51 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 20410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20406", "source" : "5133", "target" : "5225", "shared_name" : "51 (interacts with) 5290", "name" : "51 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 20406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20402", "source" : "5133", "target" : "4213", "shared_name" : "51 (interacts with) 5295", "name" : "51 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 20402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20398", "source" : "5133", "target" : "4949", "shared_name" : "51 (interacts with) 5970", "name" : "51 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 20398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20394", "source" : "5133", "target" : "5545", "shared_name" : "51 (interacts with) 5195", "name" : "51 (interacts with) 5195", "interaction" : "interacts with", "SUID" : 20394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20390", "source" : "5133", "target" : "4297", "shared_name" : "51 (interacts with) 5193", "name" : "51 (interacts with) 5193", "interaction" : "interacts with", "SUID" : 20390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20386", "source" : "5133", "target" : "5865", "shared_name" : "51 (interacts with) 5192", "name" : "51 (interacts with) 5192", "interaction" : "interacts with", "SUID" : 20386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20382", "source" : "5133", "target" : "2957", "shared_name" : "51 (interacts with) 5465", "name" : "51 (interacts with) 5465", "interaction" : "interacts with", "SUID" : 20382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20378", "source" : "5133", "target" : "4065", "shared_name" : "51 (interacts with) 7124", "name" : "51 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 20378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20374", "source" : "5133", "target" : "4857", "shared_name" : "51 (interacts with) 5573", "name" : "51 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 20374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20370", "source" : "5133", "target" : "5321", "shared_name" : "51 (interacts with) 5743", "name" : "51 (interacts with) 5743", "interaction" : "interacts with", "SUID" : 20370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20366", "source" : "5133", "target" : "4097", "shared_name" : "51 (interacts with) 9611", "name" : "51 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 20366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20362", "source" : "5133", "target" : "5205", "shared_name" : "51 (interacts with) 5828", "name" : "51 (interacts with) 5828", "interaction" : "interacts with", "SUID" : 20362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20358", "source" : "5133", "target" : "4941", "shared_name" : "51 (interacts with) 6342", "name" : "51 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 20358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20354", "source" : "5133", "target" : "365", "shared_name" : "51 (interacts with) 64834", "name" : "51 (interacts with) 64834", "interaction" : "interacts with", "SUID" : 20354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20350", "source" : "5133", "target" : "4589", "shared_name" : "51 (interacts with) 8431", "name" : "51 (interacts with) 8431", "interaction" : "interacts with", "SUID" : 20350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20346", "source" : "5133", "target" : "4505", "shared_name" : "51 (interacts with) 5190", "name" : "51 (interacts with) 5190", "interaction" : "interacts with", "SUID" : 20346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20342", "source" : "5133", "target" : "1097", "shared_name" : "51 (interacts with) 79718", "name" : "51 (interacts with) 79718", "interaction" : "interacts with", "SUID" : 20342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20338", "source" : "5133", "target" : "5677", "shared_name" : "51 (interacts with) 5189", "name" : "51 (interacts with) 5189", "interaction" : "interacts with", "SUID" : 20338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20334", "source" : "5133", "target" : "5237", "shared_name" : "51 (interacts with) 5830", "name" : "51 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 20334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20330", "source" : "5133", "target" : "1953", "shared_name" : "51 (interacts with) 5194", "name" : "51 (interacts with) 5194", "interaction" : "interacts with", "SUID" : 20330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20326", "source" : "5133", "target" : "2325", "shared_name" : "51 (interacts with) 55670", "name" : "51 (interacts with) 55670", "interaction" : "interacts with", "SUID" : 20326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20322", "source" : "5133", "target" : "1721", "shared_name" : "51 (interacts with) 51807", "name" : "51 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 20322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20318", "source" : "5133", "target" : "349", "shared_name" : "51 (interacts with) 60386", "name" : "51 (interacts with) 60386", "interaction" : "interacts with", "SUID" : 20318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20314", "source" : "5133", "target" : "1289", "shared_name" : "51 (interacts with) 6392", "name" : "51 (interacts with) 6392", "interaction" : "interacts with", "SUID" : 20314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20310", "source" : "5133", "target" : "1669", "shared_name" : "51 (interacts with) 6390", "name" : "51 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 20310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20306", "source" : "5133", "target" : "5025", "shared_name" : "51 (interacts with) 6389", "name" : "51 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 20306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20302", "source" : "5133", "target" : "4041", "shared_name" : "51 (interacts with) 847", "name" : "51 (interacts with) 847", "interaction" : "interacts with", "SUID" : 20302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20298", "source" : "5133", "target" : "741", "shared_name" : "51 (interacts with) 4830", "name" : "51 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 20298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20294", "source" : "5133", "target" : "5165", "shared_name" : "51 (interacts with) 3704", "name" : "51 (interacts with) 3704", "interaction" : "interacts with", "SUID" : 20294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20290", "source" : "5133", "target" : "1133", "shared_name" : "51 (interacts with) 3418", "name" : "51 (interacts with) 3418", "interaction" : "interacts with", "SUID" : 20290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20286", "source" : "5133", "target" : "5017", "shared_name" : "51 (interacts with) 3417", "name" : "51 (interacts with) 3417", "interaction" : "interacts with", "SUID" : 20286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20282", "source" : "5133", "target" : "4749", "shared_name" : "51 (interacts with) 3028", "name" : "51 (interacts with) 3028", "interaction" : "interacts with", "SUID" : 20282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20278", "source" : "5133", "target" : "1341", "shared_name" : "51 (interacts with) 5009", "name" : "51 (interacts with) 5009", "interaction" : "interacts with", "SUID" : 20278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20274", "source" : "5133", "target" : "3917", "shared_name" : "51 (interacts with) 22978", "name" : "51 (interacts with) 22978", "interaction" : "interacts with", "SUID" : 20274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20270", "source" : "5133", "target" : "3681", "shared_name" : "51 (interacts with) 1892", "name" : "51 (interacts with) 1892", "interaction" : "interacts with", "SUID" : 20270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20266", "source" : "5133", "target" : "1489", "shared_name" : "51 (interacts with) 1738", "name" : "51 (interacts with) 1738", "interaction" : "interacts with", "SUID" : 20266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20262", "source" : "5133", "target" : "4525", "shared_name" : "51 (interacts with) 1666", "name" : "51 (interacts with) 1666", "interaction" : "interacts with", "SUID" : 20262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20258", "source" : "5133", "target" : "801", "shared_name" : "51 (interacts with) 1376", "name" : "51 (interacts with) 1376", "interaction" : "interacts with", "SUID" : 20258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20254", "source" : "5133", "target" : "3337", "shared_name" : "51 (interacts with) 2639", "name" : "51 (interacts with) 2639", "interaction" : "interacts with", "SUID" : 20254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20250", "source" : "5133", "target" : "3269", "shared_name" : "51 (interacts with) 2108", "name" : "51 (interacts with) 2108", "interaction" : "interacts with", "SUID" : 20250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20246", "source" : "5133", "target" : "493", "shared_name" : "51 (interacts with) 594", "name" : "51 (interacts with) 594", "interaction" : "interacts with", "SUID" : 20246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20242", "source" : "5133", "target" : "485", "shared_name" : "51 (interacts with) 593", "name" : "51 (interacts with) 593", "interaction" : "interacts with", "SUID" : 20242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20238", "source" : "5133", "target" : "861", "shared_name" : "51 (interacts with) 23600", "name" : "51 (interacts with) 23600", "interaction" : "interacts with", "SUID" : 20238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20422", "source" : "5129", "target" : "2777", "shared_name" : "57465 (interacts with) 9230", "name" : "57465 (interacts with) 9230", "interaction" : "interacts with", "SUID" : 20422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20438", "source" : "5125", "target" : "777", "shared_name" : "5979 (interacts with) 8030", "name" : "5979 (interacts with) 8030", "interaction" : "interacts with", "SUID" : 20438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20434", "source" : "5125", "target" : "637", "shared_name" : "5979 (interacts with) 6654", "name" : "5979 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 20434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20430", "source" : "5125", "target" : "1653", "shared_name" : "5979 (interacts with) 85358", "name" : "5979 (interacts with) 85358", "interaction" : "interacts with", "SUID" : 20430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20426", "source" : "5125", "target" : "757", "shared_name" : "5979 (interacts with) 80856", "name" : "5979 (interacts with) 80856", "interaction" : "interacts with", "SUID" : 20426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20458", "source" : "5121", "target" : "1305", "shared_name" : "1496 (interacts with) 25", "name" : "1496 (interacts with) 25", "interaction" : "interacts with", "SUID" : 20458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20454", "source" : "5121", "target" : "5185", "shared_name" : "1496 (interacts with) 1499", "name" : "1496 (interacts with) 1499", "interaction" : "interacts with", "SUID" : 20454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20450", "source" : "5121", "target" : "5761", "shared_name" : "1496 (interacts with) 4208", "name" : "1496 (interacts with) 4208", "interaction" : "interacts with", "SUID" : 20450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20446", "source" : "5121", "target" : "2389", "shared_name" : "1496 (interacts with) 6925", "name" : "1496 (interacts with) 6925", "interaction" : "interacts with", "SUID" : 20446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20442", "source" : "5121", "target" : "1621", "shared_name" : "1496 (interacts with) 1432", "name" : "1496 (interacts with) 1432", "interaction" : "interacts with", "SUID" : 20442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20482", "source" : "5117", "target" : "6017", "shared_name" : "25897 (interacts with) 79796", "name" : "25897 (interacts with) 79796", "interaction" : "interacts with", "SUID" : 20482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20478", "source" : "5117", "target" : "5293", "shared_name" : "25897 (interacts with) 54476", "name" : "25897 (interacts with) 54476", "interaction" : "interacts with", "SUID" : 20478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20474", "source" : "5117", "target" : "3261", "shared_name" : "25897 (interacts with) 54463", "name" : "25897 (interacts with) 54463", "interaction" : "interacts with", "SUID" : 20474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20470", "source" : "5117", "target" : "1933", "shared_name" : "25897 (interacts with) 7335", "name" : "25897 (interacts with) 7335", "interaction" : "interacts with", "SUID" : 20470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20466", "source" : "5117", "target" : "3729", "shared_name" : "25897 (interacts with) 7319", "name" : "25897 (interacts with) 7319", "interaction" : "interacts with", "SUID" : 20466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20462", "source" : "5117", "target" : "961", "shared_name" : "25897 (interacts with) 7318", "name" : "25897 (interacts with) 7318", "interaction" : "interacts with", "SUID" : 20462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20622", "source" : "5109", "target" : "4613", "shared_name" : "790 (interacts with) 84896", "name" : "790 (interacts with) 84896", "interaction" : "interacts with", "SUID" : 20622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20618", "source" : "5109", "target" : "4253", "shared_name" : "790 (interacts with) 84706", "name" : "790 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 20618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20614", "source" : "5109", "target" : "1189", "shared_name" : "790 (interacts with) 7915", "name" : "790 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 20614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20610", "source" : "5109", "target" : "3037", "shared_name" : "790 (interacts with) 8813", "name" : "790 (interacts with) 8813", "interaction" : "interacts with", "SUID" : 20610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20606", "source" : "5109", "target" : "1341", "shared_name" : "790 (interacts with) 5009", "name" : "790 (interacts with) 5009", "interaction" : "interacts with", "SUID" : 20606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20602", "source" : "5109", "target" : "4185", "shared_name" : "790 (interacts with) 29968", "name" : "790 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 20602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20598", "source" : "5109", "target" : "1013", "shared_name" : "790 (interacts with) 6898", "name" : "790 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 20598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20594", "source" : "5109", "target" : "4189", "shared_name" : "790 (interacts with) 2744", "name" : "790 (interacts with) 2744", "interaction" : "interacts with", "SUID" : 20594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20590", "source" : "5109", "target" : "4093", "shared_name" : "790 (interacts with) 2752", "name" : "790 (interacts with) 2752", "interaction" : "interacts with", "SUID" : 20590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20586", "source" : "5109", "target" : "4261", "shared_name" : "790 (interacts with) 124454", "name" : "790 (interacts with) 124454", "interaction" : "interacts with", "SUID" : 20586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20582", "source" : "5109", "target" : "2205", "shared_name" : "790 (interacts with) 2571", "name" : "790 (interacts with) 2571", "interaction" : "interacts with", "SUID" : 20582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20578", "source" : "5109", "target" : "2421", "shared_name" : "790 (interacts with) 2673", "name" : "790 (interacts with) 2673", "interaction" : "interacts with", "SUID" : 20578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20574", "source" : "5109", "target" : "5785", "shared_name" : "790 (interacts with) 6857", "name" : "790 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 20574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20570", "source" : "5109", "target" : "1385", "shared_name" : "790 (interacts with) 6520", "name" : "790 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 20570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20566", "source" : "5109", "target" : "1089", "shared_name" : "790 (interacts with) 5917", "name" : "790 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 20566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20562", "source" : "5109", "target" : "1885", "shared_name" : "790 (interacts with) 8604", "name" : "790 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 20562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20558", "source" : "5109", "target" : "2721", "shared_name" : "790 (interacts with) 79751", "name" : "790 (interacts with) 79751", "interaction" : "interacts with", "SUID" : 20558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20554", "source" : "5109", "target" : "4593", "shared_name" : "790 (interacts with) 2058", "name" : "790 (interacts with) 2058", "interaction" : "interacts with", "SUID" : 20554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20550", "source" : "5109", "target" : "4341", "shared_name" : "790 (interacts with) 2729", "name" : "790 (interacts with) 2729", "interaction" : "interacts with", "SUID" : 20550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20546", "source" : "5109", "target" : "4597", "shared_name" : "790 (interacts with) 3376", "name" : "790 (interacts with) 3376", "interaction" : "interacts with", "SUID" : 20546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20542", "source" : "5109", "target" : "6157", "shared_name" : "790 (interacts with) 3735", "name" : "790 (interacts with) 3735", "interaction" : "interacts with", "SUID" : 20542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20538", "source" : "5109", "target" : "3649", "shared_name" : "790 (interacts with) 51520", "name" : "790 (interacts with) 51520", "interaction" : "interacts with", "SUID" : 20538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20534", "source" : "5109", "target" : "3641", "shared_name" : "790 (interacts with) 4141", "name" : "790 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 20534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20530", "source" : "5109", "target" : "3169", "shared_name" : "790 (interacts with) 1615", "name" : "790 (interacts with) 1615", "interaction" : "interacts with", "SUID" : 20530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20526", "source" : "5109", "target" : "3077", "shared_name" : "790 (interacts with) 6506", "name" : "790 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 20526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20522", "source" : "5109", "target" : "2321", "shared_name" : "790 (interacts with) 6509", "name" : "790 (interacts with) 6509", "interaction" : "interacts with", "SUID" : 20522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20518", "source" : "5109", "target" : "349", "shared_name" : "790 (interacts with) 60386", "name" : "790 (interacts with) 60386", "interaction" : "interacts with", "SUID" : 20518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20514", "source" : "5109", "target" : "2413", "shared_name" : "790 (interacts with) 50484", "name" : "790 (interacts with) 50484", "interaction" : "interacts with", "SUID" : 20514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20510", "source" : "5109", "target" : "6009", "shared_name" : "790 (interacts with) 64849", "name" : "790 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 20510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20506", "source" : "5109", "target" : "1017", "shared_name" : "790 (interacts with) 11212", "name" : "790 (interacts with) 11212", "interaction" : "interacts with", "SUID" : 20506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20502", "source" : "5109", "target" : "1849", "shared_name" : "790 (interacts with) 26275", "name" : "790 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 20502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20498", "source" : "5109", "target" : "1657", "shared_name" : "790 (interacts with) 3251", "name" : "790 (interacts with) 3251", "interaction" : "interacts with", "SUID" : 20498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20494", "source" : "5109", "target" : "2089", "shared_name" : "790 (interacts with) 3939", "name" : "790 (interacts with) 3939", "interaction" : "interacts with", "SUID" : 20494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20490", "source" : "5109", "target" : "5493", "shared_name" : "790 (interacts with) 2678", "name" : "790 (interacts with) 2678", "interaction" : "interacts with", "SUID" : 20490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20486", "source" : "5109", "target" : "5529", "shared_name" : "790 (interacts with) 2875", "name" : "790 (interacts with) 2875", "interaction" : "interacts with", "SUID" : 20486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20758", "source" : "5105", "target" : "1461", "shared_name" : "1487 (interacts with) 5832", "name" : "1487 (interacts with) 5832", "interaction" : "interacts with", "SUID" : 20758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20754", "source" : "5105", "target" : "1749", "shared_name" : "1487 (interacts with) 728294", "name" : "1487 (interacts with) 728294", "interaction" : "interacts with", "SUID" : 20754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20750", "source" : "5105", "target" : "1581", "shared_name" : "1487 (interacts with) 7407", "name" : "1487 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 20750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20746", "source" : "5105", "target" : "2365", "shared_name" : "1487 (interacts with) 2731", "name" : "1487 (interacts with) 2731", "interaction" : "interacts with", "SUID" : 20746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20742", "source" : "5105", "target" : "397", "shared_name" : "1487 (interacts with) 50", "name" : "1487 (interacts with) 50", "interaction" : "interacts with", "SUID" : 20742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20738", "source" : "5105", "target" : "4349", "shared_name" : "1487 (interacts with) 5859", "name" : "1487 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 20738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20734", "source" : "5105", "target" : "957", "shared_name" : "1487 (interacts with) 5230", "name" : "1487 (interacts with) 5230", "interaction" : "interacts with", "SUID" : 20734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20730", "source" : "5105", "target" : "4693", "shared_name" : "1487 (interacts with) 6301", "name" : "1487 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 20730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20726", "source" : "5105", "target" : "4593", "shared_name" : "1487 (interacts with) 2058", "name" : "1487 (interacts with) 2058", "interaction" : "interacts with", "SUID" : 20726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20722", "source" : "5105", "target" : "1605", "shared_name" : "1487 (interacts with) 6648", "name" : "1487 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 20722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20718", "source" : "5105", "target" : "5597", "shared_name" : "1487 (interacts with) 22934", "name" : "1487 (interacts with) 22934", "interaction" : "interacts with", "SUID" : 20718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20714", "source" : "5105", "target" : "5037", "shared_name" : "1487 (interacts with) 5515", "name" : "1487 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 20714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20710", "source" : "5105", "target" : "2625", "shared_name" : "1487 (interacts with) 3065", "name" : "1487 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 20710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20706", "source" : "5105", "target" : "2085", "shared_name" : "1487 (interacts with) 2932", "name" : "1487 (interacts with) 2932", "interaction" : "interacts with", "SUID" : 20706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20702", "source" : "5105", "target" : "5625", "shared_name" : "1487 (interacts with) 595", "name" : "1487 (interacts with) 595", "interaction" : "interacts with", "SUID" : 20702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20698", "source" : "5105", "target" : "4533", "shared_name" : "1487 (interacts with) 4089", "name" : "1487 (interacts with) 4089", "interaction" : "interacts with", "SUID" : 20698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20694", "source" : "5105", "target" : "5745", "shared_name" : "1487 (interacts with) 7471", "name" : "1487 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 20694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20690", "source" : "5105", "target" : "2433", "shared_name" : "1487 (interacts with) 6927", "name" : "1487 (interacts with) 6927", "interaction" : "interacts with", "SUID" : 20690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20686", "source" : "5105", "target" : "5185", "shared_name" : "1487 (interacts with) 1499", "name" : "1487 (interacts with) 1499", "interaction" : "interacts with", "SUID" : 20686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20682", "source" : "5105", "target" : "877", "shared_name" : "1487 (interacts with) 7341", "name" : "1487 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 20682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20678", "source" : "5105", "target" : "5029", "shared_name" : "1487 (interacts with) 4842", "name" : "1487 (interacts with) 4842", "interaction" : "interacts with", "SUID" : 20678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20674", "source" : "5105", "target" : "3769", "shared_name" : "1487 (interacts with) 8085", "name" : "1487 (interacts with) 8085", "interaction" : "interacts with", "SUID" : 20674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20670", "source" : "5105", "target" : "4185", "shared_name" : "1487 (interacts with) 29968", "name" : "1487 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 20670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20666", "source" : "5105", "target" : "1829", "shared_name" : "1487 (interacts with) 7421", "name" : "1487 (interacts with) 7421", "interaction" : "interacts with", "SUID" : 20666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20662", "source" : "5105", "target" : "5949", "shared_name" : "1487 (interacts with) 672", "name" : "1487 (interacts with) 672", "interaction" : "interacts with", "SUID" : 20662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20658", "source" : "5105", "target" : "1813", "shared_name" : "1487 (interacts with) 7703", "name" : "1487 (interacts with) 7703", "interaction" : "interacts with", "SUID" : 20658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20654", "source" : "5105", "target" : "1465", "shared_name" : "1487 (interacts with) 9839", "name" : "1487 (interacts with) 9839", "interaction" : "interacts with", "SUID" : 20654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20650", "source" : "5105", "target" : "4433", "shared_name" : "1487 (interacts with) 6239", "name" : "1487 (interacts with) 6239", "interaction" : "interacts with", "SUID" : 20650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20646", "source" : "5105", "target" : "2157", "shared_name" : "1487 (interacts with) 23028", "name" : "1487 (interacts with) 23028", "interaction" : "interacts with", "SUID" : 20646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20642", "source" : "5105", "target" : "1693", "shared_name" : "1487 (interacts with) 27086", "name" : "1487 (interacts with) 27086", "interaction" : "interacts with", "SUID" : 20642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20638", "source" : "5105", "target" : "1509", "shared_name" : "1487 (interacts with) 63976", "name" : "1487 (interacts with) 63976", "interaction" : "interacts with", "SUID" : 20638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20634", "source" : "5105", "target" : "2317", "shared_name" : "1487 (interacts with) 51412", "name" : "1487 (interacts with) 51412", "interaction" : "interacts with", "SUID" : 20634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20630", "source" : "5105", "target" : "5409", "shared_name" : "1487 (interacts with) 9734", "name" : "1487 (interacts with) 9734", "interaction" : "interacts with", "SUID" : 20630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20626", "source" : "5105", "target" : "5145", "shared_name" : "1487 (interacts with) 23236", "name" : "1487 (interacts with) 23236", "interaction" : "interacts with", "SUID" : 20626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20762", "source" : "5101", "target" : "1277", "shared_name" : "8678 (interacts with) 79143", "name" : "8678 (interacts with) 79143", "interaction" : "interacts with", "SUID" : 20762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20766", "source" : "5097", "target" : "5713", "shared_name" : "8831 (interacts with) 7531", "name" : "8831 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 20766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20810", "source" : "5093", "target" : "1157", "shared_name" : "113612 (interacts with) 6580", "name" : "113612 (interacts with) 6580", "interaction" : "interacts with", "SUID" : 20810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20806", "source" : "5093", "target" : "3105", "shared_name" : "113612 (interacts with) 8289", "name" : "113612 (interacts with) 8289", "interaction" : "interacts with", "SUID" : 20806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20802", "source" : "5093", "target" : "3893", "shared_name" : "113612 (interacts with) 151056", "name" : "113612 (interacts with) 151056", "interaction" : "interacts with", "SUID" : 20802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20798", "source" : "5093", "target" : "4937", "shared_name" : "113612 (interacts with) 1555", "name" : "113612 (interacts with) 1555", "interaction" : "interacts with", "SUID" : 20798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20794", "source" : "5093", "target" : "5493", "shared_name" : "113612 (interacts with) 2678", "name" : "113612 (interacts with) 2678", "interaction" : "interacts with", "SUID" : 20794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20790", "source" : "5093", "target" : "321", "shared_name" : "113612 (interacts with) 1593", "name" : "113612 (interacts with) 1593", "interaction" : "interacts with", "SUID" : 20790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20786", "source" : "5093", "target" : "5645", "shared_name" : "113612 (interacts with) 9420", "name" : "113612 (interacts with) 9420", "interaction" : "interacts with", "SUID" : 20786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20782", "source" : "5093", "target" : "557", "shared_name" : "113612 (interacts with) 5730", "name" : "113612 (interacts with) 5730", "interaction" : "interacts with", "SUID" : 20782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20778", "source" : "5093", "target" : "1625", "shared_name" : "113612 (interacts with) 1559", "name" : "113612 (interacts with) 1559", "interaction" : "interacts with", "SUID" : 20778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20774", "source" : "5093", "target" : "1569", "shared_name" : "113612 (interacts with) 1557", "name" : "113612 (interacts with) 1557", "interaction" : "interacts with", "SUID" : 20774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20770", "source" : "5093", "target" : "5033", "shared_name" : "113612 (interacts with) 1565", "name" : "113612 (interacts with) 1565", "interaction" : "interacts with", "SUID" : 20770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20954", "source" : "5089", "target" : "2609", "shared_name" : "1373 (interacts with) 29960", "name" : "1373 (interacts with) 29960", "interaction" : "interacts with", "SUID" : 20954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20950", "source" : "5089", "target" : "6049", "shared_name" : "1373 (interacts with) 25973", "name" : "1373 (interacts with) 25973", "interaction" : "interacts with", "SUID" : 20950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20946", "source" : "5089", "target" : "2205", "shared_name" : "1373 (interacts with) 2571", "name" : "1373 (interacts with) 2571", "interaction" : "interacts with", "SUID" : 20946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20942", "source" : "5089", "target" : "3549", "shared_name" : "1373 (interacts with) 760", "name" : "1373 (interacts with) 760", "interaction" : "interacts with", "SUID" : 20942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20938", "source" : "5089", "target" : "4093", "shared_name" : "1373 (interacts with) 2752", "name" : "1373 (interacts with) 2752", "interaction" : "interacts with", "SUID" : 20938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20934", "source" : "5089", "target" : "5353", "shared_name" : "1373 (interacts with) 2026", "name" : "1373 (interacts with) 2026", "interaction" : "interacts with", "SUID" : 20934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20930", "source" : "5089", "target" : "2421", "shared_name" : "1373 (interacts with) 2673", "name" : "1373 (interacts with) 2673", "interaction" : "interacts with", "SUID" : 20930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20926", "source" : "5089", "target" : "4805", "shared_name" : "1373 (interacts with) 18", "name" : "1373 (interacts with) 18", "interaction" : "interacts with", "SUID" : 20926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20922", "source" : "5089", "target" : "2437", "shared_name" : "1373 (interacts with) 158", "name" : "1373 (interacts with) 158", "interaction" : "interacts with", "SUID" : 20922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20918", "source" : "5089", "target" : "1189", "shared_name" : "1373 (interacts with) 7915", "name" : "1373 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 20918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20914", "source" : "5089", "target" : "1981", "shared_name" : "1373 (interacts with) 339983", "name" : "1373 (interacts with) 339983", "interaction" : "interacts with", "SUID" : 20914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20910", "source" : "5089", "target" : "5777", "shared_name" : "1373 (interacts with) 383", "name" : "1373 (interacts with) 383", "interaction" : "interacts with", "SUID" : 20910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20906", "source" : "5089", "target" : "4253", "shared_name" : "1373 (interacts with) 84706", "name" : "1373 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 20906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20902", "source" : "5089", "target" : "5529", "shared_name" : "1373 (interacts with) 2875", "name" : "1373 (interacts with) 2875", "interaction" : "interacts with", "SUID" : 20902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20898", "source" : "5089", "target" : "2177", "shared_name" : "1373 (interacts with) 443", "name" : "1373 (interacts with) 443", "interaction" : "interacts with", "SUID" : 20898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20894", "source" : "5089", "target" : "3237", "shared_name" : "1373 (interacts with) 95", "name" : "1373 (interacts with) 95", "interaction" : "interacts with", "SUID" : 20894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20890", "source" : "5089", "target" : "4613", "shared_name" : "1373 (interacts with) 84896", "name" : "1373 (interacts with) 84896", "interaction" : "interacts with", "SUID" : 20890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20886", "source" : "5089", "target" : "4505", "shared_name" : "1373 (interacts with) 5190", "name" : "1373 (interacts with) 5190", "interaction" : "interacts with", "SUID" : 20886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20882", "source" : "5089", "target" : "5349", "shared_name" : "1373 (interacts with) 440", "name" : "1373 (interacts with) 440", "interaction" : "interacts with", "SUID" : 20882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20878", "source" : "5089", "target" : "2377", "shared_name" : "1373 (interacts with) 6687", "name" : "1373 (interacts with) 6687", "interaction" : "interacts with", "SUID" : 20878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20874", "source" : "5089", "target" : "5677", "shared_name" : "1373 (interacts with) 5189", "name" : "1373 (interacts with) 5189", "interaction" : "interacts with", "SUID" : 20874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20870", "source" : "5089", "target" : "2769", "shared_name" : "1373 (interacts with) 767", "name" : "1373 (interacts with) 767", "interaction" : "interacts with", "SUID" : 20870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20866", "source" : "5089", "target" : "2393", "shared_name" : "1373 (interacts with) 6683", "name" : "1373 (interacts with) 6683", "interaction" : "interacts with", "SUID" : 20866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20862", "source" : "5089", "target" : "3209", "shared_name" : "1373 (interacts with) 166378", "name" : "1373 (interacts with) 166378", "interaction" : "interacts with", "SUID" : 20862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20858", "source" : "5089", "target" : "1601", "shared_name" : "1373 (interacts with) 7415", "name" : "1373 (interacts with) 7415", "interaction" : "interacts with", "SUID" : 20858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20854", "source" : "5089", "target" : "2005", "shared_name" : "1373 (interacts with) 4846", "name" : "1373 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 20854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20850", "source" : "5089", "target" : "1013", "shared_name" : "1373 (interacts with) 6898", "name" : "1373 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 20850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20846", "source" : "5089", "target" : "413", "shared_name" : "1373 (interacts with) 51733", "name" : "1373 (interacts with) 51733", "interaction" : "interacts with", "SUID" : 20846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20842", "source" : "5089", "target" : "5109", "shared_name" : "1373 (interacts with) 790", "name" : "1373 (interacts with) 790", "interaction" : "interacts with", "SUID" : 20842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20838", "source" : "5089", "target" : "4737", "shared_name" : "1373 (interacts with) 445", "name" : "1373 (interacts with) 445", "interaction" : "interacts with", "SUID" : 20838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20834", "source" : "5089", "target" : "1341", "shared_name" : "1373 (interacts with) 5009", "name" : "1373 (interacts with) 5009", "interaction" : "interacts with", "SUID" : 20834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20830", "source" : "5089", "target" : "6089", "shared_name" : "1373 (interacts with) 3145", "name" : "1373 (interacts with) 3145", "interaction" : "interacts with", "SUID" : 20830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20826", "source" : "5089", "target" : "4189", "shared_name" : "1373 (interacts with) 2744", "name" : "1373 (interacts with) 2744", "interaction" : "interacts with", "SUID" : 20826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20822", "source" : "5089", "target" : "1489", "shared_name" : "1373 (interacts with) 1738", "name" : "1373 (interacts with) 1738", "interaction" : "interacts with", "SUID" : 20822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20818", "source" : "5089", "target" : "2365", "shared_name" : "1373 (interacts with) 2731", "name" : "1373 (interacts with) 2731", "interaction" : "interacts with", "SUID" : 20818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20814", "source" : "5089", "target" : "1849", "shared_name" : "1373 (interacts with) 26275", "name" : "1373 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 20814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21062", "source" : "5085", "target" : "5341", "shared_name" : "56652 (interacts with) 91647", "name" : "56652 (interacts with) 91647", "interaction" : "interacts with", "SUID" : 21062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21058", "source" : "5085", "target" : "1325", "shared_name" : "56652 (interacts with) 7284", "name" : "56652 (interacts with) 7284", "interaction" : "interacts with", "SUID" : 21058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21054", "source" : "5085", "target" : "1085", "shared_name" : "56652 (interacts with) 9377", "name" : "56652 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 21054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21050", "source" : "5085", "target" : "1053", "shared_name" : "56652 (interacts with) 81689", "name" : "56652 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 21050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21046", "source" : "5085", "target" : "6181", "shared_name" : "56652 (interacts with) 84987", "name" : "56652 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 21046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21042", "source" : "5085", "target" : "3545", "shared_name" : "56652 (interacts with) 708", "name" : "56652 (interacts with) 708", "interaction" : "interacts with", "SUID" : 21042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21038", "source" : "5085", "target" : "889", "shared_name" : "56652 (interacts with) 80224", "name" : "56652 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 21038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21034", "source" : "5085", "target" : "2477", "shared_name" : "56652 (interacts with) 57107", "name" : "56652 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 21034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21030", "source" : "5085", "target" : "2009", "shared_name" : "56652 (interacts with) 79133", "name" : "56652 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 21030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21026", "source" : "5085", "target" : "501", "shared_name" : "56652 (interacts with) 65993", "name" : "56652 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 21026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21022", "source" : "5085", "target" : "4409", "shared_name" : "56652 (interacts with) 6341", "name" : "56652 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 21022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21018", "source" : "5085", "target" : "3705", "shared_name" : "56652 (interacts with) 87178", "name" : "56652 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 21018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21014", "source" : "5085", "target" : "2105", "shared_name" : "56652 (interacts with) 56945", "name" : "56652 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 21014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21010", "source" : "5085", "target" : "1197", "shared_name" : "56652 (interacts with) 79587", "name" : "56652 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 21010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21006", "source" : "5085", "target" : "4757", "shared_name" : "56652 (interacts with) 9997", "name" : "56652 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 21006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21002", "source" : "5085", "target" : "4101", "shared_name" : "56652 (interacts with) 65260", "name" : "56652 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 21002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20998", "source" : "5085", "target" : "4141", "shared_name" : "56652 (interacts with) 617", "name" : "56652 (interacts with) 617", "interaction" : "interacts with", "SUID" : 20998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20994", "source" : "5085", "target" : "5737", "shared_name" : "56652 (interacts with) 84340", "name" : "56652 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 20994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20990", "source" : "5085", "target" : "6073", "shared_name" : "56652 (interacts with) 92170", "name" : "56652 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 20990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20986", "source" : "5085", "target" : "5189", "shared_name" : "56652 (interacts with) 57176", "name" : "56652 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 20986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20982", "source" : "5085", "target" : "721", "shared_name" : "56652 (interacts with) 79731", "name" : "56652 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 20982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20978", "source" : "5085", "target" : "4621", "shared_name" : "56652 (interacts with) 57038", "name" : "56652 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 20978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20974", "source" : "5085", "target" : "713", "shared_name" : "56652 (interacts with) 7019", "name" : "56652 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 20974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20970", "source" : "5085", "target" : "1129", "shared_name" : "56652 (interacts with) 57505", "name" : "56652 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 20970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20966", "source" : "5085", "target" : "4869", "shared_name" : "56652 (interacts with) 92935", "name" : "56652 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 20966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20962", "source" : "5085", "target" : "521", "shared_name" : "56652 (interacts with) 85476", "name" : "56652 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 20962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "20958", "source" : "5085", "target" : "481", "shared_name" : "56652 (interacts with) 7507", "name" : "56652 (interacts with) 7507", "interaction" : "interacts with", "SUID" : 20958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21342", "source" : "5081", "target" : "3837", "shared_name" : "5594 (interacts with) 6098", "name" : "5594 (interacts with) 6098", "interaction" : "interacts with", "SUID" : 21342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21338", "source" : "5081", "target" : "5965", "shared_name" : "5594 (interacts with) 596", "name" : "5594 (interacts with) 596", "interaction" : "interacts with", "SUID" : 21338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21334", "source" : "5081", "target" : "1201", "shared_name" : "5594 (interacts with) 805", "name" : "5594 (interacts with) 805", "interaction" : "interacts with", "SUID" : 21334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21330", "source" : "5081", "target" : "1241", "shared_name" : "5594 (interacts with) 808", "name" : "5594 (interacts with) 808", "interaction" : "interacts with", "SUID" : 21330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21326", "source" : "5081", "target" : "993", "shared_name" : "5594 (interacts with) 801", "name" : "5594 (interacts with) 801", "interaction" : "interacts with", "SUID" : 21326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21322", "source" : "5081", "target" : "637", "shared_name" : "5594 (interacts with) 6654", "name" : "5594 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 21322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21318", "source" : "5081", "target" : "805", "shared_name" : "5594 (interacts with) 6772", "name" : "5594 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 21318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21314", "source" : "5081", "target" : "4769", "shared_name" : "5594 (interacts with) 7132", "name" : "5594 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 21314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21310", "source" : "5081", "target" : "5625", "shared_name" : "5594 (interacts with) 595", "name" : "5594 (interacts with) 595", "interaction" : "interacts with", "SUID" : 21310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21306", "source" : "5081", "target" : "1405", "shared_name" : "5594 (interacts with) 998", "name" : "5594 (interacts with) 998", "interaction" : "interacts with", "SUID" : 21306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21302", "source" : "5081", "target" : "2433", "shared_name" : "5594 (interacts with) 6927", "name" : "5594 (interacts with) 6927", "interaction" : "interacts with", "SUID" : 21302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21298", "source" : "5081", "target" : "4981", "shared_name" : "5594 (interacts with) 6774", "name" : "5594 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 21298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21294", "source" : "5081", "target" : "829", "shared_name" : "5594 (interacts with) 8772", "name" : "5594 (interacts with) 8772", "interaction" : "interacts with", "SUID" : 21294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21290", "source" : "5081", "target" : "817", "shared_name" : "5594 (interacts with) 5728", "name" : "5594 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 21290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21286", "source" : "5081", "target" : "4589", "shared_name" : "5594 (interacts with) 8431", "name" : "5594 (interacts with) 8431", "interaction" : "interacts with", "SUID" : 21286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21282", "source" : "5081", "target" : "5697", "shared_name" : "5594 (interacts with) 8517", "name" : "5594 (interacts with) 8517", "interaction" : "interacts with", "SUID" : 21282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21278", "source" : "5081", "target" : "5321", "shared_name" : "5594 (interacts with) 5743", "name" : "5594 (interacts with) 5743", "interaction" : "interacts with", "SUID" : 21278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21274", "source" : "5081", "target" : "4097", "shared_name" : "5594 (interacts with) 9611", "name" : "5594 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 21274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21270", "source" : "5081", "target" : "1701", "shared_name" : "5594 (interacts with) 5777", "name" : "5594 (interacts with) 5777", "interaction" : "interacts with", "SUID" : 21270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21266", "source" : "5081", "target" : "4909", "shared_name" : "5594 (interacts with) 823", "name" : "5594 (interacts with) 823", "interaction" : "interacts with", "SUID" : 21266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21262", "source" : "5081", "target" : "5053", "shared_name" : "5594 (interacts with) 857", "name" : "5594 (interacts with) 857", "interaction" : "interacts with", "SUID" : 21262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21258", "source" : "5081", "target" : "4033", "shared_name" : "5594 (interacts with) 613", "name" : "5594 (interacts with) 613", "interaction" : "interacts with", "SUID" : 21258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21254", "source" : "5081", "target" : "3289", "shared_name" : "5594 (interacts with) 5913", "name" : "5594 (interacts with) 5913", "interaction" : "interacts with", "SUID" : 21254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21250", "source" : "5081", "target" : "5637", "shared_name" : "5594 (interacts with) 6609", "name" : "5594 (interacts with) 6609", "interaction" : "interacts with", "SUID" : 21250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21246", "source" : "5081", "target" : "1697", "shared_name" : "5594 (interacts with) 8818", "name" : "5594 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 21246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21242", "source" : "5081", "target" : "6117", "shared_name" : "5594 (interacts with) 9131", "name" : "5594 (interacts with) 9131", "interaction" : "interacts with", "SUID" : 21242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21238", "source" : "5081", "target" : "1429", "shared_name" : "5594 (interacts with) 65125", "name" : "5594 (interacts with) 65125", "interaction" : "interacts with", "SUID" : 21238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21234", "source" : "5081", "target" : "1817", "shared_name" : "5594 (interacts with) 7343", "name" : "5594 (interacts with) 7343", "interaction" : "interacts with", "SUID" : 21234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21230", "source" : "5081", "target" : "3853", "shared_name" : "5594 (interacts with) 6786", "name" : "5594 (interacts with) 6786", "interaction" : "interacts with", "SUID" : 21230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21226", "source" : "5081", "target" : "3357", "shared_name" : "5594 (interacts with) 23152", "name" : "5594 (interacts with) 23152", "interaction" : "interacts with", "SUID" : 21226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21222", "source" : "5081", "target" : "5773", "shared_name" : "5594 (interacts with) 9181", "name" : "5594 (interacts with) 9181", "interaction" : "interacts with", "SUID" : 21222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21218", "source" : "5081", "target" : "1245", "shared_name" : "5594 (interacts with) 4137", "name" : "5594 (interacts with) 4137", "interaction" : "interacts with", "SUID" : 21218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21214", "source" : "5081", "target" : "4453", "shared_name" : "5594 (interacts with) 4744", "name" : "5594 (interacts with) 4744", "interaction" : "interacts with", "SUID" : 21214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21210", "source" : "5081", "target" : "3689", "shared_name" : "5594 (interacts with) 7054", "name" : "5594 (interacts with) 7054", "interaction" : "interacts with", "SUID" : 21210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21206", "source" : "5081", "target" : "4997", "shared_name" : "5594 (interacts with) 54820", "name" : "5594 (interacts with) 54820", "interaction" : "interacts with", "SUID" : 21206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21202", "source" : "5081", "target" : "4537", "shared_name" : "5594 (interacts with) 2697", "name" : "5594 (interacts with) 2697", "interaction" : "interacts with", "SUID" : 21202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21198", "source" : "5081", "target" : "1809", "shared_name" : "5594 (interacts with) 6548", "name" : "5594 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 21198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21194", "source" : "5081", "target" : "3177", "shared_name" : "5594 (interacts with) 5321", "name" : "5594 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 21194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21190", "source" : "5081", "target" : "3061", "shared_name" : "5594 (interacts with) 4155", "name" : "5594 (interacts with) 4155", "interaction" : "interacts with", "SUID" : 21190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21186", "source" : "5081", "target" : "2649", "shared_name" : "5594 (interacts with) 5430", "name" : "5594 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 21186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21182", "source" : "5081", "target" : "3049", "shared_name" : "5594 (interacts with) 142", "name" : "5594 (interacts with) 142", "interaction" : "interacts with", "SUID" : 21182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21178", "source" : "5081", "target" : "5473", "shared_name" : "5594 (interacts with) 6095", "name" : "5594 (interacts with) 6095", "interaction" : "interacts with", "SUID" : 21178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21174", "source" : "5081", "target" : "2957", "shared_name" : "5594 (interacts with) 5465", "name" : "5594 (interacts with) 5465", "interaction" : "interacts with", "SUID" : 21174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21170", "source" : "5081", "target" : "5109", "shared_name" : "5594 (interacts with) 790", "name" : "5594 (interacts with) 790", "interaction" : "interacts with", "SUID" : 21170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21166", "source" : "5081", "target" : "4533", "shared_name" : "5594 (interacts with) 4089", "name" : "5594 (interacts with) 4089", "interaction" : "interacts with", "SUID" : 21166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21162", "source" : "5081", "target" : "553", "shared_name" : "5594 (interacts with) 7248", "name" : "5594 (interacts with) 7248", "interaction" : "interacts with", "SUID" : 21162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21158", "source" : "5081", "target" : "1285", "shared_name" : "5594 (interacts with) 7249", "name" : "5594 (interacts with) 7249", "interaction" : "interacts with", "SUID" : 21158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21154", "source" : "5081", "target" : "4521", "shared_name" : "5594 (interacts with) 5894", "name" : "5594 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 21154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21150", "source" : "5081", "target" : "2081", "shared_name" : "5594 (interacts with) 5468", "name" : "5594 (interacts with) 5468", "interaction" : "interacts with", "SUID" : 21150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21146", "source" : "5081", "target" : "6169", "shared_name" : "5594 (interacts with) 4088", "name" : "5594 (interacts with) 4088", "interaction" : "interacts with", "SUID" : 21146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21142", "source" : "5081", "target" : "3417", "shared_name" : "5594 (interacts with) 5371", "name" : "5594 (interacts with) 5371", "interaction" : "interacts with", "SUID" : 21142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21138", "source" : "5081", "target" : "5125", "shared_name" : "5594 (interacts with) 5979", "name" : "5594 (interacts with) 5979", "interaction" : "interacts with", "SUID" : 21138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21134", "source" : "5081", "target" : "4233", "shared_name" : "5594 (interacts with) 367", "name" : "5594 (interacts with) 367", "interaction" : "interacts with", "SUID" : 21134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21130", "source" : "5081", "target" : "6121", "shared_name" : "5594 (interacts with) 2260", "name" : "5594 (interacts with) 2260", "interaction" : "interacts with", "SUID" : 21130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21126", "source" : "5081", "target" : "1621", "shared_name" : "5594 (interacts with) 1432", "name" : "5594 (interacts with) 1432", "interaction" : "interacts with", "SUID" : 21126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21122", "source" : "5081", "target" : "1213", "shared_name" : "5594 (interacts with) 2969", "name" : "5594 (interacts with) 2969", "interaction" : "interacts with", "SUID" : 21122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21118", "source" : "5081", "target" : "2937", "shared_name" : "5594 (interacts with) 1457", "name" : "5594 (interacts with) 1457", "interaction" : "interacts with", "SUID" : 21118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21114", "source" : "5081", "target" : "1293", "shared_name" : "5594 (interacts with) 2908", "name" : "5594 (interacts with) 2908", "interaction" : "interacts with", "SUID" : 21114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21110", "source" : "5081", "target" : "5061", "shared_name" : "5594 (interacts with) 6285", "name" : "5594 (interacts with) 6285", "interaction" : "interacts with", "SUID" : 21110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21106", "source" : "5081", "target" : "4361", "shared_name" : "5594 (interacts with) 22906", "name" : "5594 (interacts with) 22906", "interaction" : "interacts with", "SUID" : 21106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21102", "source" : "5081", "target" : "3841", "shared_name" : "5594 (interacts with) 9444", "name" : "5594 (interacts with) 9444", "interaction" : "interacts with", "SUID" : 21102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21098", "source" : "5081", "target" : "1069", "shared_name" : "5594 (interacts with) 5879", "name" : "5594 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 21098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21094", "source" : "5081", "target" : "5641", "shared_name" : "5594 (interacts with) 5518", "name" : "5594 (interacts with) 5518", "interaction" : "interacts with", "SUID" : 21094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21090", "source" : "5081", "target" : "3569", "shared_name" : "5594 (interacts with) 4893", "name" : "5594 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 21090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21086", "source" : "5081", "target" : "609", "shared_name" : "5594 (interacts with) 6812", "name" : "5594 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 21086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21082", "source" : "5081", "target" : "745", "shared_name" : "5594 (interacts with) 1725", "name" : "5594 (interacts with) 1725", "interaction" : "interacts with", "SUID" : 21082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21078", "source" : "5081", "target" : "973", "shared_name" : "5594 (interacts with) 5595", "name" : "5594 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 21078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21074", "source" : "5081", "target" : "5313", "shared_name" : "5594 (interacts with) 6197", "name" : "5594 (interacts with) 6197", "interaction" : "interacts with", "SUID" : 21074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21070", "source" : "5081", "target" : "5729", "shared_name" : "5594 (interacts with) 861", "name" : "5594 (interacts with) 861", "interaction" : "interacts with", "SUID" : 21070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21066", "source" : "5081", "target" : "5361", "shared_name" : "5594 (interacts with) 5604", "name" : "5594 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 21066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21346", "source" : "5077", "target" : "1349", "shared_name" : "8239 (interacts with) 6606", "name" : "8239 (interacts with) 6606", "interaction" : "interacts with", "SUID" : 21346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21354", "source" : "5073", "target" : "1473", "shared_name" : "7305 (interacts with) 4524", "name" : "7305 (interacts with) 4524", "interaction" : "interacts with", "SUID" : 21354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21350", "source" : "5073", "target" : "3981", "shared_name" : "7305 (interacts with) 1785", "name" : "7305 (interacts with) 1785", "interaction" : "interacts with", "SUID" : 21350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21358", "source" : "5069", "target" : "493", "shared_name" : "374354 (interacts with) 594", "name" : "374354 (interacts with) 594", "interaction" : "interacts with", "SUID" : 21358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21422", "source" : "5065", "target" : "1741", "shared_name" : "3117 (interacts with) 5133", "name" : "3117 (interacts with) 5133", "interaction" : "interacts with", "SUID" : 21422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21418", "source" : "5065", "target" : "3637", "shared_name" : "3117 (interacts with) 6712", "name" : "3117 (interacts with) 6712", "interaction" : "interacts with", "SUID" : 21418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21414", "source" : "5065", "target" : "1589", "shared_name" : "3117 (interacts with) 22872", "name" : "3117 (interacts with) 22872", "interaction" : "interacts with", "SUID" : 21414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21410", "source" : "5065", "target" : "1373", "shared_name" : "3117 (interacts with) 7879", "name" : "3117 (interacts with) 7879", "interaction" : "interacts with", "SUID" : 21410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21406", "source" : "5065", "target" : "1701", "shared_name" : "3117 (interacts with) 5777", "name" : "3117 (interacts with) 5777", "interaction" : "interacts with", "SUID" : 21406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21402", "source" : "5065", "target" : "4657", "shared_name" : "3117 (interacts with) 64837", "name" : "3117 (interacts with) 64837", "interaction" : "interacts with", "SUID" : 21402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21398", "source" : "5065", "target" : "4985", "shared_name" : "3117 (interacts with) 3798", "name" : "3117 (interacts with) 3798", "interaction" : "interacts with", "SUID" : 21398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21394", "source" : "5065", "target" : "2641", "shared_name" : "3117 (interacts with) 3123", "name" : "3117 (interacts with) 3123", "interaction" : "interacts with", "SUID" : 21394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21390", "source" : "5065", "target" : "4269", "shared_name" : "3117 (interacts with) 3832", "name" : "3117 (interacts with) 3832", "interaction" : "interacts with", "SUID" : 21390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21386", "source" : "5065", "target" : "3909", "shared_name" : "3117 (interacts with) 10908", "name" : "3117 (interacts with) 10908", "interaction" : "interacts with", "SUID" : 21386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21382", "source" : "5065", "target" : "2465", "shared_name" : "3117 (interacts with) 2583", "name" : "3117 (interacts with) 2583", "interaction" : "interacts with", "SUID" : 21382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21378", "source" : "5065", "target" : "1033", "shared_name" : "3117 (interacts with) 9215", "name" : "3117 (interacts with) 9215", "interaction" : "interacts with", "SUID" : 21378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21374", "source" : "5065", "target" : "4685", "shared_name" : "3117 (interacts with) 2218", "name" : "3117 (interacts with) 2218", "interaction" : "interacts with", "SUID" : 21374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21370", "source" : "5065", "target" : "4165", "shared_name" : "3117 (interacts with) 3119", "name" : "3117 (interacts with) 3119", "interaction" : "interacts with", "SUID" : 21370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21366", "source" : "5065", "target" : "2525", "shared_name" : "3117 (interacts with) 9451", "name" : "3117 (interacts with) 9451", "interaction" : "interacts with", "SUID" : 21366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21362", "source" : "5065", "target" : "4245", "shared_name" : "3117 (interacts with) 91147", "name" : "3117 (interacts with) 91147", "interaction" : "interacts with", "SUID" : 21362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21450", "source" : "5061", "target" : "2841", "shared_name" : "6285 (interacts with) 7098", "name" : "6285 (interacts with) 7098", "interaction" : "interacts with", "SUID" : 21450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21446", "source" : "5061", "target" : "4429", "shared_name" : "6285 (interacts with) 65250", "name" : "6285 (interacts with) 65250", "interaction" : "interacts with", "SUID" : 21446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21442", "source" : "5061", "target" : "4449", "shared_name" : "6285 (interacts with) 55210", "name" : "6285 (interacts with) 55210", "interaction" : "interacts with", "SUID" : 21442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21438", "source" : "5061", "target" : "4977", "shared_name" : "6285 (interacts with) 8481", "name" : "6285 (interacts with) 8481", "interaction" : "interacts with", "SUID" : 21438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21434", "source" : "5061", "target" : "4473", "shared_name" : "6285 (interacts with) 54888", "name" : "6285 (interacts with) 54888", "interaction" : "interacts with", "SUID" : 21434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21430", "source" : "5061", "target" : "2529", "shared_name" : "6285 (interacts with) 5424", "name" : "6285 (interacts with) 5424", "interaction" : "interacts with", "SUID" : 21430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21426", "source" : "5061", "target" : "3417", "shared_name" : "6285 (interacts with) 5371", "name" : "6285 (interacts with) 5371", "interaction" : "interacts with", "SUID" : 21426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21498", "source" : "5057", "target" : "5597", "shared_name" : "10730 (interacts with) 22934", "name" : "10730 (interacts with) 22934", "interaction" : "interacts with", "SUID" : 21498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21494", "source" : "5057", "target" : "517", "shared_name" : "10730 (interacts with) 5052", "name" : "10730 (interacts with) 5052", "interaction" : "interacts with", "SUID" : 21494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21490", "source" : "5057", "target" : "1341", "shared_name" : "10730 (interacts with) 5009", "name" : "10730 (interacts with) 5009", "interaction" : "interacts with", "SUID" : 21490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21486", "source" : "5057", "target" : "741", "shared_name" : "10730 (interacts with) 4830", "name" : "10730 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 21486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21482", "source" : "5057", "target" : "5825", "shared_name" : "10730 (interacts with) 4594", "name" : "10730 (interacts with) 4594", "interaction" : "interacts with", "SUID" : 21482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21478", "source" : "5057", "target" : "737", "shared_name" : "10730 (interacts with) 2643", "name" : "10730 (interacts with) 2643", "interaction" : "interacts with", "SUID" : 21478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21474", "source" : "5057", "target" : "1657", "shared_name" : "10730 (interacts with) 3251", "name" : "10730 (interacts with) 3251", "interaction" : "interacts with", "SUID" : 21474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21470", "source" : "5057", "target" : "6157", "shared_name" : "10730 (interacts with) 3735", "name" : "10730 (interacts with) 3735", "interaction" : "interacts with", "SUID" : 21470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21466", "source" : "5057", "target" : "5089", "shared_name" : "10730 (interacts with) 1373", "name" : "10730 (interacts with) 1373", "interaction" : "interacts with", "SUID" : 21466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21462", "source" : "5057", "target" : "5109", "shared_name" : "10730 (interacts with) 790", "name" : "10730 (interacts with) 790", "interaction" : "interacts with", "SUID" : 21462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21458", "source" : "5057", "target" : "2609", "shared_name" : "10730 (interacts with) 29960", "name" : "10730 (interacts with) 29960", "interaction" : "interacts with", "SUID" : 21458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21454", "source" : "5057", "target" : "2445", "shared_name" : "10730 (interacts with) 10939", "name" : "10730 (interacts with) 10939", "interaction" : "interacts with", "SUID" : 21454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21526", "source" : "5053", "target" : "2085", "shared_name" : "857 (interacts with) 2932", "name" : "857 (interacts with) 2932", "interaction" : "interacts with", "SUID" : 21526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21522", "source" : "5053", "target" : "2005", "shared_name" : "857 (interacts with) 4846", "name" : "857 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 21522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21518", "source" : "5053", "target" : "3981", "shared_name" : "857 (interacts with) 1785", "name" : "857 (interacts with) 1785", "interaction" : "interacts with", "SUID" : 21518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21514", "source" : "5053", "target" : "5225", "shared_name" : "857 (interacts with) 5290", "name" : "857 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 21514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21510", "source" : "5053", "target" : "1313", "shared_name" : "857 (interacts with) 1727", "name" : "857 (interacts with) 1727", "interaction" : "interacts with", "SUID" : 21510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21506", "source" : "5053", "target" : "1257", "shared_name" : "857 (interacts with) 3098", "name" : "857 (interacts with) 3098", "interaction" : "interacts with", "SUID" : 21506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21502", "source" : "5053", "target" : "4941", "shared_name" : "857 (interacts with) 6342", "name" : "857 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 21502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21554", "source" : "5049", "target" : "1241", "shared_name" : "6697 (interacts with) 808", "name" : "6697 (interacts with) 808", "interaction" : "interacts with", "SUID" : 21554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21550", "source" : "5049", "target" : "1201", "shared_name" : "6697 (interacts with) 805", "name" : "6697 (interacts with) 805", "interaction" : "interacts with", "SUID" : 21550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21546", "source" : "5049", "target" : "1721", "shared_name" : "6697 (interacts with) 51807", "name" : "6697 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 21546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21542", "source" : "5049", "target" : "3689", "shared_name" : "6697 (interacts with) 7054", "name" : "6697 (interacts with) 7054", "interaction" : "interacts with", "SUID" : 21542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21538", "source" : "5049", "target" : "3425", "shared_name" : "6697 (interacts with) 8803", "name" : "6697 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 21538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21534", "source" : "5049", "target" : "2925", "shared_name" : "6697 (interacts with) 8802", "name" : "6697 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 21534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21530", "source" : "5049", "target" : "5305", "shared_name" : "6697 (interacts with) 6901", "name" : "6697 (interacts with) 6901", "interaction" : "interacts with", "SUID" : 21530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21558", "source" : "5045", "target" : "3841", "shared_name" : "51008 (interacts with) 9444", "name" : "51008 (interacts with) 9444", "interaction" : "interacts with", "SUID" : 21558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21638", "source" : "5041", "target" : "5197", "shared_name" : "2067 (interacts with) 7156", "name" : "2067 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 21638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21634", "source" : "5041", "target" : "4249", "shared_name" : "2067 (interacts with) 4331", "name" : "2067 (interacts with) 4331", "interaction" : "interacts with", "SUID" : 21634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21630", "source" : "5041", "target" : "913", "shared_name" : "2067 (interacts with) 404672", "name" : "2067 (interacts with) 404672", "interaction" : "interacts with", "SUID" : 21630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21626", "source" : "5041", "target" : "505", "shared_name" : "2067 (interacts with) 2071", "name" : "2067 (interacts with) 2071", "interaction" : "interacts with", "SUID" : 21626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21622", "source" : "5041", "target" : "4177", "shared_name" : "2067 (interacts with) 2068", "name" : "2067 (interacts with) 2068", "interaction" : "interacts with", "SUID" : 21622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21618", "source" : "5041", "target" : "3773", "shared_name" : "2067 (interacts with) 540", "name" : "2067 (interacts with) 540", "interaction" : "interacts with", "SUID" : 21618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21614", "source" : "5041", "target" : "2921", "shared_name" : "2067 (interacts with) 5981", "name" : "2067 (interacts with) 5981", "interaction" : "interacts with", "SUID" : 21614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21610", "source" : "5041", "target" : "2709", "shared_name" : "2067 (interacts with) 2072", "name" : "2067 (interacts with) 2072", "interaction" : "interacts with", "SUID" : 21610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21606", "source" : "5041", "target" : "1709", "shared_name" : "2067 (interacts with) 2074", "name" : "2067 (interacts with) 2074", "interaction" : "interacts with", "SUID" : 21606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21602", "source" : "5041", "target" : "4037", "shared_name" : "2067 (interacts with) 2073", "name" : "2067 (interacts with) 2073", "interaction" : "interacts with", "SUID" : 21602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21598", "source" : "5041", "target" : "729", "shared_name" : "2067 (interacts with) 5888", "name" : "2067 (interacts with) 5888", "interaction" : "interacts with", "SUID" : 21598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21594", "source" : "5041", "target" : "5861", "shared_name" : "2067 (interacts with) 5435", "name" : "2067 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 21594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21590", "source" : "5041", "target" : "2649", "shared_name" : "2067 (interacts with) 5430", "name" : "2067 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 21590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21586", "source" : "5041", "target" : "1729", "shared_name" : "2067 (interacts with) 5111", "name" : "2067 (interacts with) 5111", "interaction" : "interacts with", "SUID" : 21586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21582", "source" : "5041", "target" : "2529", "shared_name" : "2067 (interacts with) 5424", "name" : "2067 (interacts with) 5424", "interaction" : "interacts with", "SUID" : 21582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21578", "source" : "5041", "target" : "3049", "shared_name" : "2067 (interacts with) 142", "name" : "2067 (interacts with) 142", "interaction" : "interacts with", "SUID" : 21578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21574", "source" : "5041", "target" : "3933", "shared_name" : "2067 (interacts with) 10524", "name" : "2067 (interacts with) 10524", "interaction" : "interacts with", "SUID" : 21574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21570", "source" : "5041", "target" : "1937", "shared_name" : "2067 (interacts with) 2965", "name" : "2067 (interacts with) 2965", "interaction" : "interacts with", "SUID" : 21570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21566", "source" : "5041", "target" : "2261", "shared_name" : "2067 (interacts with) 1161", "name" : "2067 (interacts with) 1161", "interaction" : "interacts with", "SUID" : 21566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21562", "source" : "5041", "target" : "481", "shared_name" : "2067 (interacts with) 7507", "name" : "2067 (interacts with) 7507", "interaction" : "interacts with", "SUID" : 21562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21818", "source" : "5037", "target" : "5081", "shared_name" : "5515 (interacts with) 5594", "name" : "5515 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 21818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21814", "source" : "5037", "target" : "4949", "shared_name" : "5515 (interacts with) 5970", "name" : "5515 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 21814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21810", "source" : "5037", "target" : "5361", "shared_name" : "5515 (interacts with) 5604", "name" : "5515 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 21810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21806", "source" : "5037", "target" : "4521", "shared_name" : "5515 (interacts with) 5894", "name" : "5515 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 21806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21802", "source" : "5037", "target" : "3305", "shared_name" : "5515 (interacts with) 7040", "name" : "5515 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 21802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21798", "source" : "5037", "target" : "2153", "shared_name" : "5515 (interacts with) 7042", "name" : "5515 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 21798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21794", "source" : "5037", "target" : "3409", "shared_name" : "5515 (interacts with) 7043", "name" : "5515 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 21794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21790", "source" : "5037", "target" : "4065", "shared_name" : "5515 (interacts with) 7124", "name" : "5515 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 21790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21786", "source" : "5037", "target" : "4857", "shared_name" : "5515 (interacts with) 5573", "name" : "5515 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 21786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21782", "source" : "5037", "target" : "5965", "shared_name" : "5515 (interacts with) 596", "name" : "5515 (interacts with) 596", "interaction" : "interacts with", "SUID" : 21782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21778", "source" : "5037", "target" : "981", "shared_name" : "5515 (interacts with) 7157", "name" : "5515 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 21778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21774", "source" : "5037", "target" : "637", "shared_name" : "5515 (interacts with) 6654", "name" : "5515 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 21774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21770", "source" : "5037", "target" : "3593", "shared_name" : "5515 (interacts with) 5530", "name" : "5515 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 21770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21766", "source" : "5037", "target" : "3577", "shared_name" : "5515 (interacts with) 5605", "name" : "5515 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 21766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21762", "source" : "5037", "target" : "5625", "shared_name" : "5515 (interacts with) 595", "name" : "5515 (interacts with) 595", "interaction" : "interacts with", "SUID" : 21762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21758", "source" : "5037", "target" : "4769", "shared_name" : "5515 (interacts with) 7132", "name" : "5515 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 21758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21754", "source" : "5037", "target" : "569", "shared_name" : "5515 (interacts with) 7048", "name" : "5515 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 21754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21750", "source" : "5037", "target" : "817", "shared_name" : "5515 (interacts with) 5728", "name" : "5515 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 21750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21746", "source" : "5037", "target" : "4981", "shared_name" : "5515 (interacts with) 6774", "name" : "5515 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 21746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21742", "source" : "5037", "target" : "2433", "shared_name" : "5515 (interacts with) 6927", "name" : "5515 (interacts with) 6927", "interaction" : "interacts with", "SUID" : 21742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21738", "source" : "5037", "target" : "2793", "shared_name" : "5515 (interacts with) 8894", "name" : "5515 (interacts with) 8894", "interaction" : "interacts with", "SUID" : 21738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21734", "source" : "5037", "target" : "5697", "shared_name" : "5515 (interacts with) 8517", "name" : "5515 (interacts with) 8517", "interaction" : "interacts with", "SUID" : 21734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21730", "source" : "5037", "target" : "5745", "shared_name" : "5515 (interacts with) 7471", "name" : "5515 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 21730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21726", "source" : "5037", "target" : "4149", "shared_name" : "5515 (interacts with) 8893", "name" : "5515 (interacts with) 8893", "interaction" : "interacts with", "SUID" : 21726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21722", "source" : "5037", "target" : "1285", "shared_name" : "5515 (interacts with) 7249", "name" : "5515 (interacts with) 7249", "interaction" : "interacts with", "SUID" : 21722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21718", "source" : "5037", "target" : "4909", "shared_name" : "5515 (interacts with) 823", "name" : "5515 (interacts with) 823", "interaction" : "interacts with", "SUID" : 21718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21714", "source" : "5037", "target" : "6101", "shared_name" : "5515 (interacts with) 5582", "name" : "5515 (interacts with) 5582", "interaction" : "interacts with", "SUID" : 21714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21710", "source" : "5037", "target" : "4765", "shared_name" : "5515 (interacts with) 7015", "name" : "5515 (interacts with) 7015", "interaction" : "interacts with", "SUID" : 21710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21706", "source" : "5037", "target" : "1697", "shared_name" : "5515 (interacts with) 8818", "name" : "5515 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 21706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21702", "source" : "5037", "target" : "553", "shared_name" : "5515 (interacts with) 7248", "name" : "5515 (interacts with) 7248", "interaction" : "interacts with", "SUID" : 21702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21698", "source" : "5037", "target" : "629", "shared_name" : "5515 (interacts with) 7013", "name" : "5515 (interacts with) 7013", "interaction" : "interacts with", "SUID" : 21698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21694", "source" : "5037", "target" : "1965", "shared_name" : "5515 (interacts with) 7443", "name" : "5515 (interacts with) 7443", "interaction" : "interacts with", "SUID" : 21694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21690", "source" : "5037", "target" : "2585", "shared_name" : "5515 (interacts with) 1977", "name" : "5515 (interacts with) 1977", "interaction" : "interacts with", "SUID" : 21690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21686", "source" : "5037", "target" : "4013", "shared_name" : "5515 (interacts with) 6622", "name" : "5515 (interacts with) 6622", "interaction" : "interacts with", "SUID" : 21686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21682", "source" : "5037", "target" : "5185", "shared_name" : "5515 (interacts with) 1499", "name" : "5515 (interacts with) 1499", "interaction" : "interacts with", "SUID" : 21682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21678", "source" : "5037", "target" : "6169", "shared_name" : "5515 (interacts with) 4088", "name" : "5515 (interacts with) 4088", "interaction" : "interacts with", "SUID" : 21678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21674", "source" : "5037", "target" : "5509", "shared_name" : "5515 (interacts with) 207", "name" : "5515 (interacts with) 207", "interaction" : "interacts with", "SUID" : 21674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21670", "source" : "5037", "target" : "2969", "shared_name" : "5515 (interacts with) 8867", "name" : "5515 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 21670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21666", "source" : "5037", "target" : "4797", "shared_name" : "5515 (interacts with) 10735", "name" : "5515 (interacts with) 10735", "interaction" : "interacts with", "SUID" : 21666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21662", "source" : "5037", "target" : "4497", "shared_name" : "5515 (interacts with) 8243", "name" : "5515 (interacts with) 8243", "interaction" : "interacts with", "SUID" : 21662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21658", "source" : "5037", "target" : "4389", "shared_name" : "5515 (interacts with) 81846", "name" : "5515 (interacts with) 81846", "interaction" : "interacts with", "SUID" : 21658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21654", "source" : "5037", "target" : "1837", "shared_name" : "5515 (interacts with) 9939", "name" : "5515 (interacts with) 9939", "interaction" : "interacts with", "SUID" : 21654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21650", "source" : "5037", "target" : "4549", "shared_name" : "5515 (interacts with) 5903", "name" : "5515 (interacts with) 5903", "interaction" : "interacts with", "SUID" : 21650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21646", "source" : "5037", "target" : "2733", "shared_name" : "5515 (interacts with) 5718", "name" : "5515 (interacts with) 5718", "interaction" : "interacts with", "SUID" : 21646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21642", "source" : "5037", "target" : "5641", "shared_name" : "5515 (interacts with) 5518", "name" : "5515 (interacts with) 5518", "interaction" : "interacts with", "SUID" : 21642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21846", "source" : "5033", "target" : "321", "shared_name" : "1565 (interacts with) 1593", "name" : "1565 (interacts with) 1593", "interaction" : "interacts with", "SUID" : 21846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21842", "source" : "5033", "target" : "6153", "shared_name" : "1565 (interacts with) 9915", "name" : "1565 (interacts with) 9915", "interaction" : "interacts with", "SUID" : 21842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21838", "source" : "5033", "target" : "5645", "shared_name" : "1565 (interacts with) 9420", "name" : "1565 (interacts with) 9420", "interaction" : "interacts with", "SUID" : 21838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21834", "source" : "5033", "target" : "6133", "shared_name" : "1565 (interacts with) 54658", "name" : "1565 (interacts with) 54658", "interaction" : "interacts with", "SUID" : 21834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21830", "source" : "5033", "target" : "3177", "shared_name" : "1565 (interacts with) 5321", "name" : "1565 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 21830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21826", "source" : "5033", "target" : "2853", "shared_name" : "1565 (interacts with) 8398", "name" : "1565 (interacts with) 8398", "interaction" : "interacts with", "SUID" : 21826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21822", "source" : "5033", "target" : "429", "shared_name" : "1565 (interacts with) 1757", "name" : "1565 (interacts with) 1757", "interaction" : "interacts with", "SUID" : 21822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21910", "source" : "5029", "target" : "3445", "shared_name" : "4842 (interacts with) 5091", "name" : "4842 (interacts with) 5091", "interaction" : "interacts with", "SUID" : 21910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21906", "source" : "5029", "target" : "1301", "shared_name" : "4842 (interacts with) 5095", "name" : "4842 (interacts with) 5095", "interaction" : "interacts with", "SUID" : 21906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21902", "source" : "5029", "target" : "4857", "shared_name" : "4842 (interacts with) 5573", "name" : "4842 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 21902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21898", "source" : "5029", "target" : "1241", "shared_name" : "4842 (interacts with) 808", "name" : "4842 (interacts with) 808", "interaction" : "interacts with", "SUID" : 21898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21894", "source" : "5029", "target" : "1201", "shared_name" : "4842 (interacts with) 805", "name" : "4842 (interacts with) 805", "interaction" : "interacts with", "SUID" : 21894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21890", "source" : "5029", "target" : "993", "shared_name" : "4842 (interacts with) 801", "name" : "4842 (interacts with) 801", "interaction" : "interacts with", "SUID" : 21890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21886", "source" : "5029", "target" : "3593", "shared_name" : "4842 (interacts with) 5530", "name" : "4842 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 21886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21882", "source" : "5029", "target" : "3237", "shared_name" : "4842 (interacts with) 95", "name" : "4842 (interacts with) 95", "interaction" : "interacts with", "SUID" : 21882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21878", "source" : "5029", "target" : "1341", "shared_name" : "4842 (interacts with) 5009", "name" : "4842 (interacts with) 5009", "interaction" : "interacts with", "SUID" : 21878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21874", "source" : "5029", "target" : "877", "shared_name" : "4842 (interacts with) 7341", "name" : "4842 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 21874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21870", "source" : "5029", "target" : "3853", "shared_name" : "4842 (interacts with) 6786", "name" : "4842 (interacts with) 6786", "interaction" : "interacts with", "SUID" : 21870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21866", "source" : "5029", "target" : "2561", "shared_name" : "4842 (interacts with) 523", "name" : "4842 (interacts with) 523", "interaction" : "interacts with", "SUID" : 21866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21862", "source" : "5029", "target" : "2569", "shared_name" : "4842 (interacts with) 529", "name" : "4842 (interacts with) 529", "interaction" : "interacts with", "SUID" : 21862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21858", "source" : "5029", "target" : "2005", "shared_name" : "4842 (interacts with) 4846", "name" : "4842 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 21858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21854", "source" : "5029", "target" : "2497", "shared_name" : "4842 (interacts with) 55697", "name" : "4842 (interacts with) 55697", "interaction" : "interacts with", "SUID" : 21854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21850", "source" : "5029", "target" : "4681", "shared_name" : "4842 (interacts with) 4843", "name" : "4842 (interacts with) 4843", "interaction" : "interacts with", "SUID" : 21850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21958", "source" : "5025", "target" : "5109", "shared_name" : "6389 (interacts with) 790", "name" : "6389 (interacts with) 790", "interaction" : "interacts with", "SUID" : 21958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21954", "source" : "5025", "target" : "1289", "shared_name" : "6389 (interacts with) 6392", "name" : "6389 (interacts with) 6392", "interaction" : "interacts with", "SUID" : 21954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21950", "source" : "5025", "target" : "2925", "shared_name" : "6389 (interacts with) 8802", "name" : "6389 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 21950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21946", "source" : "5025", "target" : "3425", "shared_name" : "6389 (interacts with) 8803", "name" : "6389 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 21946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21942", "source" : "5025", "target" : "4497", "shared_name" : "6389 (interacts with) 8243", "name" : "6389 (interacts with) 8243", "interaction" : "interacts with", "SUID" : 21942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21938", "source" : "5025", "target" : "521", "shared_name" : "6389 (interacts with) 85476", "name" : "6389 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 21938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21934", "source" : "5025", "target" : "5737", "shared_name" : "6389 (interacts with) 84340", "name" : "6389 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 21934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21930", "source" : "5025", "target" : "305", "shared_name" : "6389 (interacts with) 79644", "name" : "6389 (interacts with) 79644", "interaction" : "interacts with", "SUID" : 21930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21926", "source" : "5025", "target" : "2477", "shared_name" : "6389 (interacts with) 57107", "name" : "6389 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 21926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21922", "source" : "5025", "target" : "3525", "shared_name" : "6389 (interacts with) 23410", "name" : "6389 (interacts with) 23410", "interaction" : "interacts with", "SUID" : 21922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21918", "source" : "5025", "target" : "1669", "shared_name" : "6389 (interacts with) 6390", "name" : "6389 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 21918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21914", "source" : "5025", "target" : "4953", "shared_name" : "6389 (interacts with) 644096", "name" : "6389 (interacts with) 644096", "interaction" : "interacts with", "SUID" : 21914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21970", "source" : "5021", "target" : "3945", "shared_name" : "10617 (interacts with) 846", "name" : "10617 (interacts with) 846", "interaction" : "interacts with", "SUID" : 21970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21966", "source" : "5021", "target" : "1909", "shared_name" : "10617 (interacts with) 5286", "name" : "10617 (interacts with) 5286", "interaction" : "interacts with", "SUID" : 21966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21962", "source" : "5021", "target" : "5613", "shared_name" : "10617 (interacts with) 5119", "name" : "10617 (interacts with) 5119", "interaction" : "interacts with", "SUID" : 21962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22130", "source" : "5017", "target" : "2089", "shared_name" : "3417 (interacts with) 3939", "name" : "3417 (interacts with) 3939", "interaction" : "interacts with", "SUID" : 22130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22126", "source" : "5017", "target" : "1929", "shared_name" : "3417 (interacts with) 51218", "name" : "3417 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 22126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22122", "source" : "5017", "target" : "2405", "shared_name" : "3417 (interacts with) 3658", "name" : "3417 (interacts with) 3658", "interaction" : "interacts with", "SUID" : 22122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22118", "source" : "5017", "target" : "2945", "shared_name" : "3417 (interacts with) 471", "name" : "3417 (interacts with) 471", "interaction" : "interacts with", "SUID" : 22118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22114", "source" : "5017", "target" : "4857", "shared_name" : "3417 (interacts with) 5573", "name" : "3417 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 22114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22110", "source" : "5017", "target" : "3425", "shared_name" : "3417 (interacts with) 8803", "name" : "3417 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 22110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22106", "source" : "5017", "target" : "2925", "shared_name" : "3417 (interacts with) 8802", "name" : "3417 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 22106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22102", "source" : "5017", "target" : "1021", "shared_name" : "3417 (interacts with) 5096", "name" : "3417 (interacts with) 5096", "interaction" : "interacts with", "SUID" : 22102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22098", "source" : "5017", "target" : "1129", "shared_name" : "3417 (interacts with) 57505", "name" : "3417 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 22098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22094", "source" : "5017", "target" : "4757", "shared_name" : "3417 (interacts with) 9997", "name" : "3417 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 22094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22090", "source" : "5017", "target" : "3445", "shared_name" : "3417 (interacts with) 5091", "name" : "3417 (interacts with) 5091", "interaction" : "interacts with", "SUID" : 22090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22086", "source" : "5017", "target" : "3421", "shared_name" : "3417 (interacts with) 4967", "name" : "3417 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 22086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22082", "source" : "5017", "target" : "977", "shared_name" : "3417 (interacts with) 79944", "name" : "3417 (interacts with) 79944", "interaction" : "interacts with", "SUID" : 22082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22078", "source" : "5017", "target" : "1013", "shared_name" : "3417 (interacts with) 6898", "name" : "3417 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 22078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22074", "source" : "5017", "target" : "4185", "shared_name" : "3417 (interacts with) 29968", "name" : "3417 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 22074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22070", "source" : "5017", "target" : "2353", "shared_name" : "3417 (interacts with) 5264", "name" : "3417 (interacts with) 5264", "interaction" : "interacts with", "SUID" : 22070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22066", "source" : "5017", "target" : "5237", "shared_name" : "3417 (interacts with) 5830", "name" : "3417 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 22066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22062", "source" : "5017", "target" : "5205", "shared_name" : "3417 (interacts with) 5828", "name" : "3417 (interacts with) 5828", "interaction" : "interacts with", "SUID" : 22062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22058", "source" : "5017", "target" : "5545", "shared_name" : "3417 (interacts with) 5195", "name" : "3417 (interacts with) 5195", "interaction" : "interacts with", "SUID" : 22058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22054", "source" : "5017", "target" : "1953", "shared_name" : "3417 (interacts with) 5194", "name" : "3417 (interacts with) 5194", "interaction" : "interacts with", "SUID" : 22054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22050", "source" : "5017", "target" : "4297", "shared_name" : "3417 (interacts with) 5193", "name" : "3417 (interacts with) 5193", "interaction" : "interacts with", "SUID" : 22050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22046", "source" : "5017", "target" : "1133", "shared_name" : "3417 (interacts with) 3418", "name" : "3417 (interacts with) 3418", "interaction" : "interacts with", "SUID" : 22046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22042", "source" : "5017", "target" : "1493", "shared_name" : "3417 (interacts with) 7428", "name" : "3417 (interacts with) 7428", "interaction" : "interacts with", "SUID" : 22042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22038", "source" : "5017", "target" : "681", "shared_name" : "3417 (interacts with) 6646", "name" : "3417 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 22038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22034", "source" : "5017", "target" : "1809", "shared_name" : "3417 (interacts with) 6548", "name" : "3417 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 22034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22030", "source" : "5017", "target" : "2669", "shared_name" : "3417 (interacts with) 9197", "name" : "3417 (interacts with) 9197", "interaction" : "interacts with", "SUID" : 22030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22026", "source" : "5017", "target" : "3793", "shared_name" : "3417 (interacts with) 28965", "name" : "3417 (interacts with) 28965", "interaction" : "interacts with", "SUID" : 22026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22022", "source" : "5017", "target" : "5865", "shared_name" : "3417 (interacts with) 5192", "name" : "3417 (interacts with) 5192", "interaction" : "interacts with", "SUID" : 22022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22018", "source" : "5017", "target" : "1721", "shared_name" : "3417 (interacts with) 51807", "name" : "3417 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 22018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22014", "source" : "5017", "target" : "5305", "shared_name" : "3417 (interacts with) 6901", "name" : "3417 (interacts with) 6901", "interaction" : "interacts with", "SUID" : 22014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22010", "source" : "5017", "target" : "3325", "shared_name" : "3417 (interacts with) 9517", "name" : "3417 (interacts with) 9517", "interaction" : "interacts with", "SUID" : 22010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22006", "source" : "5017", "target" : "409", "shared_name" : "3417 (interacts with) 10558", "name" : "3417 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 22006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22002", "source" : "5017", "target" : "6009", "shared_name" : "3417 (interacts with) 64849", "name" : "3417 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 22002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21998", "source" : "5017", "target" : "1681", "shared_name" : "3417 (interacts with) 9990", "name" : "3417 (interacts with) 9990", "interaction" : "interacts with", "SUID" : 21998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21994", "source" : "5017", "target" : "4941", "shared_name" : "3417 (interacts with) 6342", "name" : "3417 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 21994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21990", "source" : "5017", "target" : "1485", "shared_name" : "3417 (interacts with) 8050", "name" : "3417 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 21990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21986", "source" : "5017", "target" : "4045", "shared_name" : "3417 (interacts with) 29920", "name" : "3417 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 21986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21982", "source" : "5017", "target" : "3501", "shared_name" : "3417 (interacts with) 5831", "name" : "3417 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 21982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21978", "source" : "5017", "target" : "2161", "shared_name" : "3417 (interacts with) 55163", "name" : "3417 (interacts with) 55163", "interaction" : "interacts with", "SUID" : 21978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "21974", "source" : "5017", "target" : "1277", "shared_name" : "3417 (interacts with) 79143", "name" : "3417 (interacts with) 79143", "interaction" : "interacts with", "SUID" : 21974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22198", "source" : "5013", "target" : "3685", "shared_name" : "23411 (interacts with) 3265", "name" : "23411 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 22198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22194", "source" : "5013", "target" : "981", "shared_name" : "23411 (interacts with) 7157", "name" : "23411 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 22194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22190", "source" : "5013", "target" : "4065", "shared_name" : "23411 (interacts with) 7124", "name" : "23411 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 22190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22186", "source" : "5013", "target" : "5941", "shared_name" : "23411 (interacts with) 5914", "name" : "23411 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 22186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22182", "source" : "5013", "target" : "4769", "shared_name" : "23411 (interacts with) 7132", "name" : "23411 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 22182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22178", "source" : "5013", "target" : "1233", "shared_name" : "23411 (interacts with) 355", "name" : "23411 (interacts with) 355", "interaction" : "interacts with", "SUID" : 22178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22174", "source" : "5013", "target" : "5781", "shared_name" : "23411 (interacts with) 6672", "name" : "23411 (interacts with) 6672", "interaction" : "interacts with", "SUID" : 22174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22170", "source" : "5013", "target" : "3417", "shared_name" : "23411 (interacts with) 5371", "name" : "23411 (interacts with) 5371", "interaction" : "interacts with", "SUID" : 22170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22166", "source" : "5013", "target" : "877", "shared_name" : "23411 (interacts with) 7341", "name" : "23411 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 22166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22162", "source" : "5013", "target" : "2069", "shared_name" : "23411 (interacts with) 84106", "name" : "23411 (interacts with) 84106", "interaction" : "interacts with", "SUID" : 22162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22158", "source" : "5013", "target" : "481", "shared_name" : "23411 (interacts with) 7507", "name" : "23411 (interacts with) 7507", "interaction" : "interacts with", "SUID" : 22158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22154", "source" : "5013", "target" : "1605", "shared_name" : "23411 (interacts with) 6648", "name" : "23411 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 22154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22150", "source" : "5013", "target" : "4097", "shared_name" : "23411 (interacts with) 9611", "name" : "23411 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 22150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22146", "source" : "5013", "target" : "2213", "shared_name" : "23411 (interacts with) 4851", "name" : "23411 (interacts with) 4851", "interaction" : "interacts with", "SUID" : 22146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22142", "source" : "5013", "target" : "5185", "shared_name" : "23411 (interacts with) 1499", "name" : "23411 (interacts with) 1499", "interaction" : "interacts with", "SUID" : 22142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22138", "source" : "5013", "target" : "5509", "shared_name" : "23411 (interacts with) 207", "name" : "23411 (interacts with) 207", "interaction" : "interacts with", "SUID" : 22138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22134", "source" : "5013", "target" : "2305", "shared_name" : "23411 (interacts with) 6908", "name" : "23411 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 22134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22234", "source" : "5009", "target" : "5081", "shared_name" : "5241 (interacts with) 5594", "name" : "5241 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 22234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22230", "source" : "5009", "target" : "973", "shared_name" : "5241 (interacts with) 5595", "name" : "5241 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 22230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22226", "source" : "5009", "target" : "4857", "shared_name" : "5241 (interacts with) 5573", "name" : "5241 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 22226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22222", "source" : "5009", "target" : "5061", "shared_name" : "5241 (interacts with) 6285", "name" : "5241 (interacts with) 6285", "interaction" : "interacts with", "SUID" : 22222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22218", "source" : "5009", "target" : "3825", "shared_name" : "5241 (interacts with) 5915", "name" : "5241 (interacts with) 5915", "interaction" : "interacts with", "SUID" : 22218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22214", "source" : "5009", "target" : "5941", "shared_name" : "5241 (interacts with) 5914", "name" : "5241 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 22214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22210", "source" : "5009", "target" : "1829", "shared_name" : "5241 (interacts with) 7421", "name" : "5241 (interacts with) 7421", "interaction" : "interacts with", "SUID" : 22210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22206", "source" : "5009", "target" : "4589", "shared_name" : "5241 (interacts with) 8431", "name" : "5241 (interacts with) 8431", "interaction" : "interacts with", "SUID" : 22206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22202", "source" : "5009", "target" : "877", "shared_name" : "5241 (interacts with) 7341", "name" : "5241 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 22202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22306", "source" : "5005", "target" : "3037", "shared_name" : "79868 (interacts with) 8813", "name" : "79868 (interacts with) 8813", "interaction" : "interacts with", "SUID" : 22306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22302", "source" : "5005", "target" : "1697", "shared_name" : "79868 (interacts with) 8818", "name" : "79868 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 22302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22298", "source" : "5005", "target" : "1797", "shared_name" : "79868 (interacts with) 85365", "name" : "79868 (interacts with) 85365", "interaction" : "interacts with", "SUID" : 22298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22294", "source" : "5005", "target" : "5289", "shared_name" : "79868 (interacts with) 9526", "name" : "79868 (interacts with) 9526", "interaction" : "interacts with", "SUID" : 22294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22290", "source" : "5005", "target" : "6133", "shared_name" : "79868 (interacts with) 54658", "name" : "79868 (interacts with) 54658", "interaction" : "interacts with", "SUID" : 22290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22286", "source" : "5005", "target" : "4481", "shared_name" : "79868 (interacts with) 55624", "name" : "79868 (interacts with) 55624", "interaction" : "interacts with", "SUID" : 22286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22282", "source" : "5005", "target" : "3705", "shared_name" : "79868 (interacts with) 87178", "name" : "79868 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 22282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22278", "source" : "5005", "target" : "4989", "shared_name" : "79868 (interacts with) 51227", "name" : "79868 (interacts with) 51227", "interaction" : "interacts with", "SUID" : 22278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22274", "source" : "5005", "target" : "985", "shared_name" : "79868 (interacts with) 9091", "name" : "79868 (interacts with) 9091", "interaction" : "interacts with", "SUID" : 22274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22270", "source" : "5005", "target" : "1545", "shared_name" : "79868 (interacts with) 5277", "name" : "79868 (interacts with) 5277", "interaction" : "interacts with", "SUID" : 22270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22266", "source" : "5005", "target" : "5561", "shared_name" : "79868 (interacts with) 4247", "name" : "79868 (interacts with) 4247", "interaction" : "interacts with", "SUID" : 22266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22262", "source" : "5005", "target" : "4193", "shared_name" : "79868 (interacts with) 2720", "name" : "79868 (interacts with) 2720", "interaction" : "interacts with", "SUID" : 22262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22258", "source" : "5005", "target" : "5753", "shared_name" : "79868 (interacts with) 2581", "name" : "79868 (interacts with) 2581", "interaction" : "interacts with", "SUID" : 22258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22254", "source" : "5005", "target" : "2517", "shared_name" : "79868 (interacts with) 1798", "name" : "79868 (interacts with) 1798", "interaction" : "interacts with", "SUID" : 22254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22250", "source" : "5005", "target" : "4585", "shared_name" : "79868 (interacts with) 11041", "name" : "79868 (interacts with) 11041", "interaction" : "interacts with", "SUID" : 22250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22246", "source" : "5005", "target" : "2465", "shared_name" : "79868 (interacts with) 2583", "name" : "79868 (interacts with) 2583", "interaction" : "interacts with", "SUID" : 22246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22242", "source" : "5005", "target" : "289", "shared_name" : "79868 (interacts with) 56052", "name" : "79868 (interacts with) 56052", "interaction" : "interacts with", "SUID" : 22242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22238", "source" : "5005", "target" : "2237", "shared_name" : "79868 (interacts with) 10516", "name" : "79868 (interacts with) 10516", "interaction" : "interacts with", "SUID" : 22238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22422", "source" : "5001", "target" : "5105", "shared_name" : "132158 (interacts with) 1487", "name" : "132158 (interacts with) 1487", "interaction" : "interacts with", "SUID" : 22422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22418", "source" : "5001", "target" : "4833", "shared_name" : "132158 (interacts with) 2593", "name" : "132158 (interacts with) 2593", "interaction" : "interacts with", "SUID" : 22418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22414", "source" : "5001", "target" : "5825", "shared_name" : "132158 (interacts with) 4594", "name" : "132158 (interacts with) 4594", "interaction" : "interacts with", "SUID" : 22414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22410", "source" : "5001", "target" : "1301", "shared_name" : "132158 (interacts with) 5095", "name" : "132158 (interacts with) 5095", "interaction" : "interacts with", "SUID" : 22410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22406", "source" : "5001", "target" : "1021", "shared_name" : "132158 (interacts with) 5096", "name" : "132158 (interacts with) 5096", "interaction" : "interacts with", "SUID" : 22406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22402", "source" : "5001", "target" : "2365", "shared_name" : "132158 (interacts with) 2731", "name" : "132158 (interacts with) 2731", "interaction" : "interacts with", "SUID" : 22402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22398", "source" : "5001", "target" : "5945", "shared_name" : "132158 (interacts with) 55750", "name" : "132158 (interacts with) 55750", "interaction" : "interacts with", "SUID" : 22398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22394", "source" : "5001", "target" : "5593", "shared_name" : "132158 (interacts with) 875", "name" : "132158 (interacts with) 875", "interaction" : "interacts with", "SUID" : 22394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22390", "source" : "5001", "target" : "5597", "shared_name" : "132158 (interacts with) 22934", "name" : "132158 (interacts with) 22934", "interaction" : "interacts with", "SUID" : 22390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22386", "source" : "5001", "target" : "397", "shared_name" : "132158 (interacts with) 50", "name" : "132158 (interacts with) 50", "interaction" : "interacts with", "SUID" : 22386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22382", "source" : "5001", "target" : "4185", "shared_name" : "132158 (interacts with) 29968", "name" : "132158 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 22382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22378", "source" : "5001", "target" : "429", "shared_name" : "132158 (interacts with) 1757", "name" : "132158 (interacts with) 1757", "interaction" : "interacts with", "SUID" : 22378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22374", "source" : "5001", "target" : "1721", "shared_name" : "132158 (interacts with) 51807", "name" : "132158 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 22374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22370", "source" : "5001", "target" : "3325", "shared_name" : "132158 (interacts with) 9517", "name" : "132158 (interacts with) 9517", "interaction" : "interacts with", "SUID" : 22370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22366", "source" : "5001", "target" : "4617", "shared_name" : "132158 (interacts with) 26227", "name" : "132158 (interacts with) 26227", "interaction" : "interacts with", "SUID" : 22366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22362", "source" : "5001", "target" : "4045", "shared_name" : "132158 (interacts with) 29920", "name" : "132158 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 22362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22358", "source" : "5001", "target" : "3501", "shared_name" : "132158 (interacts with) 5831", "name" : "132158 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 22358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22354", "source" : "5001", "target" : "409", "shared_name" : "132158 (interacts with) 10558", "name" : "132158 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 22354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22350", "source" : "5001", "target" : "681", "shared_name" : "132158 (interacts with) 6646", "name" : "132158 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 22350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22346", "source" : "5001", "target" : "2669", "shared_name" : "132158 (interacts with) 9197", "name" : "132158 (interacts with) 9197", "interaction" : "interacts with", "SUID" : 22346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22342", "source" : "5001", "target" : "2045", "shared_name" : "132158 (interacts with) 51102", "name" : "132158 (interacts with) 51102", "interaction" : "interacts with", "SUID" : 22342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22338", "source" : "5001", "target" : "1133", "shared_name" : "132158 (interacts with) 3418", "name" : "132158 (interacts with) 3418", "interaction" : "interacts with", "SUID" : 22338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22334", "source" : "5001", "target" : "5017", "shared_name" : "132158 (interacts with) 3417", "name" : "132158 (interacts with) 3417", "interaction" : "interacts with", "SUID" : 22334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22330", "source" : "5001", "target" : "1525", "shared_name" : "132158 (interacts with) 3295", "name" : "132158 (interacts with) 3295", "interaction" : "interacts with", "SUID" : 22330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22326", "source" : "5001", "target" : "4749", "shared_name" : "132158 (interacts with) 3028", "name" : "132158 (interacts with) 3028", "interaction" : "interacts with", "SUID" : 22326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22322", "source" : "5001", "target" : "1849", "shared_name" : "132158 (interacts with) 26275", "name" : "132158 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 22322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22318", "source" : "5001", "target" : "5717", "shared_name" : "132158 (interacts with) 29925", "name" : "132158 (interacts with) 29925", "interaction" : "interacts with", "SUID" : 22318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22314", "source" : "5001", "target" : "921", "shared_name" : "132158 (interacts with) 3880", "name" : "132158 (interacts with) 3880", "interaction" : "interacts with", "SUID" : 22314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22310", "source" : "5001", "target" : "2665", "shared_name" : "132158 (interacts with) 27229", "name" : "132158 (interacts with) 27229", "interaction" : "interacts with", "SUID" : 22310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22498", "source" : "4997", "target" : "3157", "shared_name" : "54820 (interacts with) 9255", "name" : "54820 (interacts with) 9255", "interaction" : "interacts with", "SUID" : 22498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22494", "source" : "4997", "target" : "5397", "shared_name" : "54820 (interacts with) 85378", "name" : "54820 (interacts with) 85378", "interaction" : "interacts with", "SUID" : 22494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22490", "source" : "4997", "target" : "2665", "shared_name" : "54820 (interacts with) 27229", "name" : "54820 (interacts with) 27229", "interaction" : "interacts with", "SUID" : 22490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22486", "source" : "4997", "target" : "5713", "shared_name" : "54820 (interacts with) 7531", "name" : "54820 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 22486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22482", "source" : "4997", "target" : "4021", "shared_name" : "54820 (interacts with) 203068", "name" : "54820 (interacts with) 203068", "interaction" : "interacts with", "SUID" : 22482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22478", "source" : "4997", "target" : "5969", "shared_name" : "54820 (interacts with) 10382", "name" : "54820 (interacts with) 10382", "interaction" : "interacts with", "SUID" : 22478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22474", "source" : "4997", "target" : "269", "shared_name" : "54820 (interacts with) 51259", "name" : "54820 (interacts with) 51259", "interaction" : "interacts with", "SUID" : 22474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22470", "source" : "4997", "target" : "2357", "shared_name" : "54820 (interacts with) 79600", "name" : "54820 (interacts with) 79600", "interaction" : "interacts with", "SUID" : 22470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22466", "source" : "4997", "target" : "4245", "shared_name" : "54820 (interacts with) 91147", "name" : "54820 (interacts with) 91147", "interaction" : "interacts with", "SUID" : 22466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22462", "source" : "4997", "target" : "4797", "shared_name" : "54820 (interacts with) 10735", "name" : "54820 (interacts with) 10735", "interaction" : "interacts with", "SUID" : 22462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22458", "source" : "4997", "target" : "4497", "shared_name" : "54820 (interacts with) 8243", "name" : "54820 (interacts with) 8243", "interaction" : "interacts with", "SUID" : 22458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22454", "source" : "4997", "target" : "4549", "shared_name" : "54820 (interacts with) 5903", "name" : "54820 (interacts with) 5903", "interaction" : "interacts with", "SUID" : 22454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22450", "source" : "4997", "target" : "4321", "shared_name" : "54820 (interacts with) 132320", "name" : "54820 (interacts with) 132320", "interaction" : "interacts with", "SUID" : 22450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22446", "source" : "4997", "target" : "2341", "shared_name" : "54820 (interacts with) 23322", "name" : "54820 (interacts with) 23322", "interaction" : "interacts with", "SUID" : 22446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22442", "source" : "4997", "target" : "5037", "shared_name" : "54820 (interacts with) 5515", "name" : "54820 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 22442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22438", "source" : "4997", "target" : "5641", "shared_name" : "54820 (interacts with) 5518", "name" : "54820 (interacts with) 5518", "interaction" : "interacts with", "SUID" : 22438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22434", "source" : "4997", "target" : "5429", "shared_name" : "54820 (interacts with) 5048", "name" : "54820 (interacts with) 5048", "interaction" : "interacts with", "SUID" : 22434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22430", "source" : "4997", "target" : "4977", "shared_name" : "54820 (interacts with) 8481", "name" : "54820 (interacts with) 8481", "interaction" : "interacts with", "SUID" : 22430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22426", "source" : "4997", "target" : "5437", "shared_name" : "54820 (interacts with) 10733", "name" : "54820 (interacts with) 10733", "interaction" : "interacts with", "SUID" : 22426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22510", "source" : "4993", "target" : "4045", "shared_name" : "8622 (interacts with) 29920", "name" : "8622 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 22510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22506", "source" : "4993", "target" : "3501", "shared_name" : "8622 (interacts with) 5831", "name" : "8622 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 22506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22502", "source" : "4993", "target" : "1713", "shared_name" : "8622 (interacts with) 5631", "name" : "8622 (interacts with) 5631", "interaction" : "interacts with", "SUID" : 22502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22562", "source" : "4989", "target" : "1025", "shared_name" : "51227 (interacts with) 80055", "name" : "51227 (interacts with) 80055", "interaction" : "interacts with", "SUID" : 22562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22558", "source" : "4989", "target" : "1697", "shared_name" : "51227 (interacts with) 8818", "name" : "51227 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 22558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22554", "source" : "4989", "target" : "1917", "shared_name" : "51227 (interacts with) 51604", "name" : "51227 (interacts with) 51604", "interaction" : "interacts with", "SUID" : 22554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22550", "source" : "4989", "target" : "2181", "shared_name" : "51227 (interacts with) 94005", "name" : "51227 (interacts with) 94005", "interaction" : "interacts with", "SUID" : 22550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22546", "source" : "4989", "target" : "1593", "shared_name" : "51227 (interacts with) 8733", "name" : "51227 (interacts with) 8733", "interaction" : "interacts with", "SUID" : 22546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22542", "source" : "4989", "target" : "1905", "shared_name" : "51227 (interacts with) 9488", "name" : "51227 (interacts with) 9488", "interaction" : "interacts with", "SUID" : 22542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22538", "source" : "4989", "target" : "985", "shared_name" : "51227 (interacts with) 9091", "name" : "51227 (interacts with) 9091", "interaction" : "interacts with", "SUID" : 22538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22534", "source" : "4989", "target" : "5477", "shared_name" : "51227 (interacts with) 54872", "name" : "51227 (interacts with) 54872", "interaction" : "interacts with", "SUID" : 22534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22530", "source" : "4989", "target" : "6133", "shared_name" : "51227 (interacts with) 54658", "name" : "51227 (interacts with) 54658", "interaction" : "interacts with", "SUID" : 22530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22526", "source" : "4989", "target" : "3705", "shared_name" : "51227 (interacts with) 87178", "name" : "51227 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 22526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22522", "source" : "4989", "target" : "4481", "shared_name" : "51227 (interacts with) 55624", "name" : "51227 (interacts with) 55624", "interaction" : "interacts with", "SUID" : 22522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22518", "source" : "4989", "target" : "1733", "shared_name" : "51227 (interacts with) 6305", "name" : "51227 (interacts with) 6305", "interaction" : "interacts with", "SUID" : 22518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22514", "source" : "4989", "target" : "1545", "shared_name" : "51227 (interacts with) 5277", "name" : "51227 (interacts with) 5277", "interaction" : "interacts with", "SUID" : 22514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22582", "source" : "4985", "target" : "4269", "shared_name" : "3798 (interacts with) 3832", "name" : "3798 (interacts with) 3832", "interaction" : "interacts with", "SUID" : 22582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22578", "source" : "4985", "target" : "545", "shared_name" : "3798 (interacts with) 51014", "name" : "3798 (interacts with) 51014", "interaction" : "interacts with", "SUID" : 22578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22574", "source" : "4985", "target" : "5749", "shared_name" : "3798 (interacts with) 10959", "name" : "3798 (interacts with) 10959", "interaction" : "interacts with", "SUID" : 22574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22570", "source" : "4985", "target" : "1069", "shared_name" : "3798 (interacts with) 5879", "name" : "3798 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 22570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22566", "source" : "4985", "target" : "4657", "shared_name" : "3798 (interacts with) 64837", "name" : "3798 (interacts with) 64837", "interaction" : "interacts with", "SUID" : 22566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22638", "source" : "4981", "target" : "5801", "shared_name" : "6774 (interacts with) 960", "name" : "6774 (interacts with) 960", "interaction" : "interacts with", "SUID" : 22638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22634", "source" : "4981", "target" : "1697", "shared_name" : "6774 (interacts with) 8818", "name" : "6774 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 22634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22630", "source" : "4981", "target" : "4065", "shared_name" : "6774 (interacts with) 7124", "name" : "6774 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 22630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22626", "source" : "4981", "target" : "993", "shared_name" : "6774 (interacts with) 801", "name" : "6774 (interacts with) 801", "interaction" : "interacts with", "SUID" : 22626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22622", "source" : "4981", "target" : "1201", "shared_name" : "6774 (interacts with) 805", "name" : "6774 (interacts with) 805", "interaction" : "interacts with", "SUID" : 22622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22618", "source" : "4981", "target" : "1241", "shared_name" : "6774 (interacts with) 808", "name" : "6774 (interacts with) 808", "interaction" : "interacts with", "SUID" : 22618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22614", "source" : "4981", "target" : "4457", "shared_name" : "6774 (interacts with) 3082", "name" : "6774 (interacts with) 3082", "interaction" : "interacts with", "SUID" : 22614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22610", "source" : "4981", "target" : "2489", "shared_name" : "6774 (interacts with) 4692", "name" : "6774 (interacts with) 4692", "interaction" : "interacts with", "SUID" : 22610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22606", "source" : "4981", "target" : "997", "shared_name" : "6774 (interacts with) 7431", "name" : "6774 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 22606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22602", "source" : "4981", "target" : "981", "shared_name" : "6774 (interacts with) 7157", "name" : "6774 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 22602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22598", "source" : "4981", "target" : "5297", "shared_name" : "6774 (interacts with) 6775", "name" : "6774 (interacts with) 6775", "interaction" : "interacts with", "SUID" : 22598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22594", "source" : "4981", "target" : "4909", "shared_name" : "6774 (interacts with) 823", "name" : "6774 (interacts with) 823", "interaction" : "interacts with", "SUID" : 22594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22590", "source" : "4981", "target" : "2757", "shared_name" : "6774 (interacts with) 51079", "name" : "6774 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 22590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22586", "source" : "4981", "target" : "1069", "shared_name" : "6774 (interacts with) 5879", "name" : "6774 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 22586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22694", "source" : "4977", "target" : "5713", "shared_name" : "8481 (interacts with) 7531", "name" : "8481 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 22694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22690", "source" : "4977", "target" : "5397", "shared_name" : "8481 (interacts with) 85378", "name" : "8481 (interacts with) 85378", "interaction" : "interacts with", "SUID" : 22690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22686", "source" : "4977", "target" : "4021", "shared_name" : "8481 (interacts with) 203068", "name" : "8481 (interacts with) 203068", "interaction" : "interacts with", "SUID" : 22686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22682", "source" : "4977", "target" : "5969", "shared_name" : "8481 (interacts with) 10382", "name" : "8481 (interacts with) 10382", "interaction" : "interacts with", "SUID" : 22682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22678", "source" : "4977", "target" : "2665", "shared_name" : "8481 (interacts with) 27229", "name" : "8481 (interacts with) 27229", "interaction" : "interacts with", "SUID" : 22678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22674", "source" : "4977", "target" : "4245", "shared_name" : "8481 (interacts with) 91147", "name" : "8481 (interacts with) 91147", "interaction" : "interacts with", "SUID" : 22674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22670", "source" : "4977", "target" : "269", "shared_name" : "8481 (interacts with) 51259", "name" : "8481 (interacts with) 51259", "interaction" : "interacts with", "SUID" : 22670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22666", "source" : "4977", "target" : "4321", "shared_name" : "8481 (interacts with) 132320", "name" : "8481 (interacts with) 132320", "interaction" : "interacts with", "SUID" : 22666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22662", "source" : "4977", "target" : "2341", "shared_name" : "8481 (interacts with) 23322", "name" : "8481 (interacts with) 23322", "interaction" : "interacts with", "SUID" : 22662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22658", "source" : "4977", "target" : "2357", "shared_name" : "8481 (interacts with) 79600", "name" : "8481 (interacts with) 79600", "interaction" : "interacts with", "SUID" : 22658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22654", "source" : "4977", "target" : "1181", "shared_name" : "8481 (interacts with) 51684", "name" : "8481 (interacts with) 51684", "interaction" : "interacts with", "SUID" : 22654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22650", "source" : "4977", "target" : "5641", "shared_name" : "8481 (interacts with) 5518", "name" : "8481 (interacts with) 5518", "interaction" : "interacts with", "SUID" : 22650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22646", "source" : "4977", "target" : "5437", "shared_name" : "8481 (interacts with) 10733", "name" : "8481 (interacts with) 10733", "interaction" : "interacts with", "SUID" : 22646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22642", "source" : "4977", "target" : "5429", "shared_name" : "8481 (interacts with) 5048", "name" : "8481 (interacts with) 5048", "interaction" : "interacts with", "SUID" : 22642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22718", "source" : "4973", "target" : "4949", "shared_name" : "1910 (interacts with) 5970", "name" : "1910 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 22718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22714", "source" : "4973", "target" : "3685", "shared_name" : "1910 (interacts with) 3265", "name" : "1910 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 22714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22710", "source" : "4973", "target" : "3017", "shared_name" : "1910 (interacts with) 4790", "name" : "1910 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 22710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22706", "source" : "4973", "target" : "5817", "shared_name" : "1910 (interacts with) 1950", "name" : "1910 (interacts with) 1950", "interaction" : "interacts with", "SUID" : 22706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22702", "source" : "4973", "target" : "5541", "shared_name" : "1910 (interacts with) 2775", "name" : "1910 (interacts with) 2775", "interaction" : "interacts with", "SUID" : 22702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22698", "source" : "4973", "target" : "5569", "shared_name" : "1910 (interacts with) 59345", "name" : "1910 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 22698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22730", "source" : "4969", "target" : "3693", "shared_name" : "9725 (interacts with) 8943", "name" : "9725 (interacts with) 8943", "interaction" : "interacts with", "SUID" : 22730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22726", "source" : "4969", "target" : "849", "shared_name" : "9725 (interacts with) 23556", "name" : "9725 (interacts with) 23556", "interaction" : "interacts with", "SUID" : 22726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22722", "source" : "4969", "target" : "5893", "shared_name" : "9725 (interacts with) 6309", "name" : "9725 (interacts with) 6309", "interaction" : "interacts with", "SUID" : 22722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22794", "source" : "4965", "target" : "3985", "shared_name" : "2668 (interacts with) 274", "name" : "2668 (interacts with) 274", "interaction" : "interacts with", "SUID" : 22794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22790", "source" : "4965", "target" : "1801", "shared_name" : "2668 (interacts with) 1641", "name" : "2668 (interacts with) 1641", "interaction" : "interacts with", "SUID" : 22790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22786", "source" : "4965", "target" : "2197", "shared_name" : "2668 (interacts with) 4684", "name" : "2668 (interacts with) 4684", "interaction" : "interacts with", "SUID" : 22786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22782", "source" : "4965", "target" : "737", "shared_name" : "2668 (interacts with) 2643", "name" : "2668 (interacts with) 2643", "interaction" : "interacts with", "SUID" : 22782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22778", "source" : "4965", "target" : "5429", "shared_name" : "2668 (interacts with) 5048", "name" : "2668 (interacts with) 5048", "interaction" : "interacts with", "SUID" : 22778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22774", "source" : "4965", "target" : "4385", "shared_name" : "2668 (interacts with) 3084", "name" : "2668 (interacts with) 3084", "interaction" : "interacts with", "SUID" : 22774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22770", "source" : "4965", "target" : "3981", "shared_name" : "2668 (interacts with) 1785", "name" : "2668 (interacts with) 1785", "interaction" : "interacts with", "SUID" : 22770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22766", "source" : "4965", "target" : "5125", "shared_name" : "2668 (interacts with) 5979", "name" : "2668 (interacts with) 5979", "interaction" : "interacts with", "SUID" : 22766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22762", "source" : "4965", "target" : "637", "shared_name" : "2668 (interacts with) 6654", "name" : "2668 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 22762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22758", "source" : "4965", "target" : "1653", "shared_name" : "2668 (interacts with) 85358", "name" : "2668 (interacts with) 85358", "interaction" : "interacts with", "SUID" : 22758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22754", "source" : "4965", "target" : "4213", "shared_name" : "2668 (interacts with) 5295", "name" : "2668 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 22754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22750", "source" : "4965", "target" : "3465", "shared_name" : "2668 (interacts with) 5296", "name" : "2668 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 22750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22746", "source" : "4965", "target" : "3569", "shared_name" : "2668 (interacts with) 4893", "name" : "2668 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 22746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22742", "source" : "4965", "target" : "5225", "shared_name" : "2668 (interacts with) 5290", "name" : "2668 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 22742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22738", "source" : "4965", "target" : "3573", "shared_name" : "2668 (interacts with) 3845", "name" : "2668 (interacts with) 3845", "interaction" : "interacts with", "SUID" : 22738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22734", "source" : "4965", "target" : "3685", "shared_name" : "2668 (interacts with) 3265", "name" : "2668 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 22734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22798", "source" : "4961", "target" : "617", "shared_name" : "5132 (interacts with) 1630", "name" : "5132 (interacts with) 1630", "interaction" : "interacts with", "SUID" : 22798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22846", "source" : "4957", "target" : "5849", "shared_name" : "5071 (interacts with) 6613", "name" : "5071 (interacts with) 6613", "interaction" : "interacts with", "SUID" : 22846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22842", "source" : "4957", "target" : "877", "shared_name" : "5071 (interacts with) 7341", "name" : "5071 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 22842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22838", "source" : "4957", "target" : "4413", "shared_name" : "5071 (interacts with) 6612", "name" : "5071 (interacts with) 6612", "interaction" : "interacts with", "SUID" : 22838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22834", "source" : "4957", "target" : "4013", "shared_name" : "5071 (interacts with) 6622", "name" : "5071 (interacts with) 6622", "interaction" : "interacts with", "SUID" : 22834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22830", "source" : "4957", "target" : "5293", "shared_name" : "5071 (interacts with) 54476", "name" : "5071 (interacts with) 54476", "interaction" : "interacts with", "SUID" : 22830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22826", "source" : "4957", "target" : "1933", "shared_name" : "5071 (interacts with) 7335", "name" : "5071 (interacts with) 7335", "interaction" : "interacts with", "SUID" : 22826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22822", "source" : "4957", "target" : "3033", "shared_name" : "5071 (interacts with) 1020", "name" : "5071 (interacts with) 1020", "interaction" : "interacts with", "SUID" : 22822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22818", "source" : "4957", "target" : "3729", "shared_name" : "5071 (interacts with) 7319", "name" : "5071 (interacts with) 7319", "interaction" : "interacts with", "SUID" : 22818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22814", "source" : "4957", "target" : "961", "shared_name" : "5071 (interacts with) 7318", "name" : "5071 (interacts with) 7318", "interaction" : "interacts with", "SUID" : 22814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22810", "source" : "4957", "target" : "4541", "shared_name" : "5071 (interacts with) 65018", "name" : "5071 (interacts with) 65018", "interaction" : "interacts with", "SUID" : 22810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22806", "source" : "4957", "target" : "3529", "shared_name" : "5071 (interacts with) 7965", "name" : "5071 (interacts with) 7965", "interaction" : "interacts with", "SUID" : 22806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22802", "source" : "4957", "target" : "4549", "shared_name" : "5071 (interacts with) 5903", "name" : "5071 (interacts with) 5903", "interaction" : "interacts with", "SUID" : 22802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22854", "source" : "4953", "target" : "4773", "shared_name" : "644096 (interacts with) 90624", "name" : "644096 (interacts with) 90624", "interaction" : "interacts with", "SUID" : 22854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22850", "source" : "4953", "target" : "1669", "shared_name" : "644096 (interacts with) 6390", "name" : "644096 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 22850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23050", "source" : "4949", "target" : "3305", "shared_name" : "5970 (interacts with) 7040", "name" : "5970 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 23050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23046", "source" : "4949", "target" : "2153", "shared_name" : "5970 (interacts with) 7042", "name" : "5970 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 23046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23042", "source" : "4949", "target" : "3409", "shared_name" : "5970 (interacts with) 7043", "name" : "5970 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 23042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23038", "source" : "4949", "target" : "1241", "shared_name" : "5970 (interacts with) 808", "name" : "5970 (interacts with) 808", "interaction" : "interacts with", "SUID" : 23038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23034", "source" : "4949", "target" : "981", "shared_name" : "5970 (interacts with) 7157", "name" : "5970 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 23034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23030", "source" : "4949", "target" : "637", "shared_name" : "5970 (interacts with) 6654", "name" : "5970 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 23030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23026", "source" : "4949", "target" : "993", "shared_name" : "5970 (interacts with) 801", "name" : "5970 (interacts with) 801", "interaction" : "interacts with", "SUID" : 23026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23022", "source" : "4949", "target" : "1201", "shared_name" : "5970 (interacts with) 805", "name" : "5970 (interacts with) 805", "interaction" : "interacts with", "SUID" : 23022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23018", "source" : "4949", "target" : "805", "shared_name" : "5970 (interacts with) 6772", "name" : "5970 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 23018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23014", "source" : "4949", "target" : "4769", "shared_name" : "5970 (interacts with) 7132", "name" : "5970 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 23014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23010", "source" : "4949", "target" : "1973", "shared_name" : "5970 (interacts with) 6709", "name" : "5970 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 23010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23006", "source" : "4949", "target" : "1845", "shared_name" : "5970 (interacts with) 836", "name" : "5970 (interacts with) 836", "interaction" : "interacts with", "SUID" : 23006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23002", "source" : "4949", "target" : "5313", "shared_name" : "5970 (interacts with) 6197", "name" : "5970 (interacts with) 6197", "interaction" : "interacts with", "SUID" : 23002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22998", "source" : "4949", "target" : "569", "shared_name" : "5970 (interacts with) 7048", "name" : "5970 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 22998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22994", "source" : "4949", "target" : "829", "shared_name" : "5970 (interacts with) 8772", "name" : "5970 (interacts with) 8772", "interaction" : "interacts with", "SUID" : 22994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22990", "source" : "4949", "target" : "1405", "shared_name" : "5970 (interacts with) 998", "name" : "5970 (interacts with) 998", "interaction" : "interacts with", "SUID" : 22990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22986", "source" : "4949", "target" : "4589", "shared_name" : "5970 (interacts with) 8431", "name" : "5970 (interacts with) 8431", "interaction" : "interacts with", "SUID" : 22986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22982", "source" : "4949", "target" : "5949", "shared_name" : "5970 (interacts with) 672", "name" : "5970 (interacts with) 672", "interaction" : "interacts with", "SUID" : 22982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22978", "source" : "4949", "target" : "5745", "shared_name" : "5970 (interacts with) 7471", "name" : "5970 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 22978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22974", "source" : "4949", "target" : "2793", "shared_name" : "5970 (interacts with) 8894", "name" : "5970 (interacts with) 8894", "interaction" : "interacts with", "SUID" : 22974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22970", "source" : "4949", "target" : "1541", "shared_name" : "5970 (interacts with) 958", "name" : "5970 (interacts with) 958", "interaction" : "interacts with", "SUID" : 22970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22966", "source" : "4949", "target" : "4097", "shared_name" : "5970 (interacts with) 9611", "name" : "5970 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 22966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22962", "source" : "4949", "target" : "3021", "shared_name" : "5970 (interacts with) 84823", "name" : "5970 (interacts with) 84823", "interaction" : "interacts with", "SUID" : 22962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22958", "source" : "4949", "target" : "4077", "shared_name" : "5970 (interacts with) 71", "name" : "5970 (interacts with) 71", "interaction" : "interacts with", "SUID" : 22958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22954", "source" : "4949", "target" : "2901", "shared_name" : "5970 (interacts with) 6647", "name" : "5970 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 22954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22950", "source" : "4949", "target" : "5637", "shared_name" : "5970 (interacts with) 6609", "name" : "5970 (interacts with) 6609", "interaction" : "interacts with", "SUID" : 22950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22946", "source" : "4949", "target" : "6117", "shared_name" : "5970 (interacts with) 9131", "name" : "5970 (interacts with) 9131", "interaction" : "interacts with", "SUID" : 22946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22942", "source" : "4949", "target" : "1605", "shared_name" : "5970 (interacts with) 6648", "name" : "5970 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 22942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22938", "source" : "4949", "target" : "2841", "shared_name" : "5970 (interacts with) 7098", "name" : "5970 (interacts with) 7098", "interaction" : "interacts with", "SUID" : 22938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22934", "source" : "4949", "target" : "593", "shared_name" : "5970 (interacts with) 8743", "name" : "5970 (interacts with) 8743", "interaction" : "interacts with", "SUID" : 22934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22930", "source" : "4949", "target" : "3749", "shared_name" : "5970 (interacts with) 8518", "name" : "5970 (interacts with) 8518", "interaction" : "interacts with", "SUID" : 22930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22926", "source" : "4949", "target" : "465", "shared_name" : "5970 (interacts with) 8792", "name" : "5970 (interacts with) 8792", "interaction" : "interacts with", "SUID" : 22926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22922", "source" : "4949", "target" : "2033", "shared_name" : "5970 (interacts with) 8741", "name" : "5970 (interacts with) 8741", "interaction" : "interacts with", "SUID" : 22922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22918", "source" : "4949", "target" : "1957", "shared_name" : "5970 (interacts with) 1312", "name" : "5970 (interacts with) 1312", "interaction" : "interacts with", "SUID" : 22918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22914", "source" : "4949", "target" : "2593", "shared_name" : "5970 (interacts with) 64324", "name" : "5970 (interacts with) 64324", "interaction" : "interacts with", "SUID" : 22914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22910", "source" : "4949", "target" : "2341", "shared_name" : "5970 (interacts with) 23322", "name" : "5970 (interacts with) 23322", "interaction" : "interacts with", "SUID" : 22910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22906", "source" : "4949", "target" : "3017", "shared_name" : "5970 (interacts with) 4790", "name" : "5970 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 22906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22902", "source" : "4949", "target" : "1893", "shared_name" : "5970 (interacts with) 1387", "name" : "5970 (interacts with) 1387", "interaction" : "interacts with", "SUID" : 22902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22898", "source" : "4949", "target" : "5013", "shared_name" : "5970 (interacts with) 23411", "name" : "5970 (interacts with) 23411", "interaction" : "interacts with", "SUID" : 22898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22894", "source" : "4949", "target" : "2625", "shared_name" : "5970 (interacts with) 3065", "name" : "5970 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 22894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22890", "source" : "4949", "target" : "785", "shared_name" : "5970 (interacts with) 1958", "name" : "5970 (interacts with) 1958", "interaction" : "interacts with", "SUID" : 22890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22886", "source" : "4949", "target" : "2937", "shared_name" : "5970 (interacts with) 1457", "name" : "5970 (interacts with) 1457", "interaction" : "interacts with", "SUID" : 22886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22882", "source" : "4949", "target" : "2085", "shared_name" : "5970 (interacts with) 2932", "name" : "5970 (interacts with) 2932", "interaction" : "interacts with", "SUID" : 22882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22878", "source" : "4949", "target" : "4581", "shared_name" : "5970 (interacts with) 29110", "name" : "5970 (interacts with) 29110", "interaction" : "interacts with", "SUID" : 22878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22874", "source" : "4949", "target" : "3349", "shared_name" : "5970 (interacts with) 8878", "name" : "5970 (interacts with) 8878", "interaction" : "interacts with", "SUID" : 22874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22870", "source" : "4949", "target" : "5061", "shared_name" : "5970 (interacts with) 6285", "name" : "5970 (interacts with) 6285", "interaction" : "interacts with", "SUID" : 22870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22866", "source" : "4949", "target" : "5045", "shared_name" : "5970 (interacts with) 51008", "name" : "5970 (interacts with) 51008", "interaction" : "interacts with", "SUID" : 22866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22862", "source" : "4949", "target" : "3933", "shared_name" : "5970 (interacts with) 10524", "name" : "5970 (interacts with) 10524", "interaction" : "interacts with", "SUID" : 22862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "22858", "source" : "4949", "target" : "2389", "shared_name" : "5970 (interacts with) 6925", "name" : "5970 (interacts with) 6925", "interaction" : "interacts with", "SUID" : 22858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23230", "source" : "4945", "target" : "1929", "shared_name" : "4722 (interacts with) 51218", "name" : "4722 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 23230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23226", "source" : "4945", "target" : "4757", "shared_name" : "4722 (interacts with) 9997", "name" : "4722 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 23226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23222", "source" : "4945", "target" : "6073", "shared_name" : "4722 (interacts with) 92170", "name" : "4722 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 23222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23218", "source" : "4945", "target" : "2021", "shared_name" : "4722 (interacts with) 5428", "name" : "4722 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 23218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23214", "source" : "4945", "target" : "501", "shared_name" : "4722 (interacts with) 65993", "name" : "4722 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 23214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23210", "source" : "4945", "target" : "4621", "shared_name" : "4722 (interacts with) 57038", "name" : "4722 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 23210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23206", "source" : "4945", "target" : "1197", "shared_name" : "4722 (interacts with) 79587", "name" : "4722 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 23206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23202", "source" : "4945", "target" : "4577", "shared_name" : "4722 (interacts with) 7167", "name" : "4722 (interacts with) 7167", "interaction" : "interacts with", "SUID" : 23202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23198", "source" : "4945", "target" : "2105", "shared_name" : "4722 (interacts with) 56945", "name" : "4722 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 23198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23194", "source" : "4945", "target" : "5737", "shared_name" : "4722 (interacts with) 84340", "name" : "4722 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 23194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23190", "source" : "4945", "target" : "6001", "shared_name" : "4722 (interacts with) 55157", "name" : "4722 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 23190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23186", "source" : "4945", "target" : "5085", "shared_name" : "4722 (interacts with) 56652", "name" : "4722 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 23186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23182", "source" : "4945", "target" : "1561", "shared_name" : "4722 (interacts with) 51117", "name" : "4722 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 23182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23178", "source" : "4945", "target" : "2477", "shared_name" : "4722 (interacts with) 57107", "name" : "4722 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 23178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23174", "source" : "4945", "target" : "4869", "shared_name" : "4722 (interacts with) 92935", "name" : "4722 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 23174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23170", "source" : "4945", "target" : "1669", "shared_name" : "4722 (interacts with) 6390", "name" : "4722 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 23170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23166", "source" : "4945", "target" : "4409", "shared_name" : "4722 (interacts with) 6341", "name" : "4722 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 23166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23162", "source" : "4945", "target" : "4141", "shared_name" : "4722 (interacts with) 617", "name" : "4722 (interacts with) 617", "interaction" : "interacts with", "SUID" : 23162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23158", "source" : "4945", "target" : "3973", "shared_name" : "4722 (interacts with) 55572", "name" : "4722 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 23158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23154", "source" : "4945", "target" : "5553", "shared_name" : "4722 (interacts with) 55967", "name" : "4722 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 23154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23150", "source" : "4945", "target" : "4101", "shared_name" : "4722 (interacts with) 65260", "name" : "4722 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 23150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23146", "source" : "4945", "target" : "477", "shared_name" : "4722 (interacts with) 51021", "name" : "4722 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 23146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23142", "source" : "4945", "target" : "889", "shared_name" : "4722 (interacts with) 80224", "name" : "4722 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 23142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23138", "source" : "4945", "target" : "2285", "shared_name" : "4722 (interacts with) 51300", "name" : "4722 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 23138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23134", "source" : "4945", "target" : "2757", "shared_name" : "4722 (interacts with) 51079", "name" : "4722 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 23134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23130", "source" : "4945", "target" : "713", "shared_name" : "4722 (interacts with) 7019", "name" : "4722 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 23130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23126", "source" : "4945", "target" : "1869", "shared_name" : "4722 (interacts with) 4729", "name" : "4722 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 23126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23122", "source" : "4945", "target" : "4045", "shared_name" : "4722 (interacts with) 29920", "name" : "4722 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 23122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23118", "source" : "4945", "target" : "3501", "shared_name" : "4722 (interacts with) 5831", "name" : "4722 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 23118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23114", "source" : "4945", "target" : "2797", "shared_name" : "4722 (interacts with) 4728", "name" : "4722 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 23114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23110", "source" : "4945", "target" : "1337", "shared_name" : "4722 (interacts with) 55863", "name" : "4722 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 23110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23106", "source" : "4945", "target" : "2741", "shared_name" : "4722 (interacts with) 4695", "name" : "4722 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 23106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23102", "source" : "4945", "target" : "2109", "shared_name" : "4722 (interacts with) 51103", "name" : "4722 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 23102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23098", "source" : "4945", "target" : "3405", "shared_name" : "4722 (interacts with) 4535", "name" : "4722 (interacts with) 4535", "interaction" : "interacts with", "SUID" : 23098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23094", "source" : "4945", "target" : "4017", "shared_name" : "4722 (interacts with) 4719", "name" : "4722 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 23094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23090", "source" : "4945", "target" : "3761", "shared_name" : "4722 (interacts with) 25915", "name" : "4722 (interacts with) 25915", "interaction" : "interacts with", "SUID" : 23090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23086", "source" : "4945", "target" : "5833", "shared_name" : "4722 (interacts with) 4726", "name" : "4722 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 23086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23082", "source" : "4945", "target" : "2009", "shared_name" : "4722 (interacts with) 79133", "name" : "4722 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 23082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23078", "source" : "4945", "target" : "3617", "shared_name" : "4722 (interacts with) 4704", "name" : "4722 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 23078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23074", "source" : "4945", "target" : "5885", "shared_name" : "4722 (interacts with) 4540", "name" : "4722 (interacts with) 4540", "interaction" : "interacts with", "SUID" : 23074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23070", "source" : "4945", "target" : "5821", "shared_name" : "4722 (interacts with) 4724", "name" : "4722 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 23070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23066", "source" : "4945", "target" : "1573", "shared_name" : "4722 (interacts with) 4723", "name" : "4722 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 23066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23062", "source" : "4945", "target" : "2689", "shared_name" : "4722 (interacts with) 4715", "name" : "4722 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 23062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23058", "source" : "4945", "target" : "2753", "shared_name" : "4722 (interacts with) 4720", "name" : "4722 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 23058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23054", "source" : "4945", "target" : "5829", "shared_name" : "4722 (interacts with) 4538", "name" : "4722 (interacts with) 4538", "interaction" : "interacts with", "SUID" : 23054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23290", "source" : "4941", "target" : "4301", "shared_name" : "6342 (interacts with) 8799", "name" : "6342 (interacts with) 8799", "interaction" : "interacts with", "SUID" : 23290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23286", "source" : "4941", "target" : "3341", "shared_name" : "6342 (interacts with) 8504", "name" : "6342 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 23286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23282", "source" : "4941", "target" : "196", "shared_name" : "6342 (interacts with) 84188", "name" : "6342 (interacts with) 84188", "interaction" : "interacts with", "SUID" : 23282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23278", "source" : "4941", "target" : "365", "shared_name" : "6342 (interacts with) 64834", "name" : "6342 (interacts with) 64834", "interaction" : "interacts with", "SUID" : 23278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23274", "source" : "4941", "target" : "3333", "shared_name" : "6342 (interacts with) 9409", "name" : "6342 (interacts with) 9409", "interaction" : "interacts with", "SUID" : 23274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23270", "source" : "4941", "target" : "5645", "shared_name" : "6342 (interacts with) 9420", "name" : "6342 (interacts with) 9420", "interaction" : "interacts with", "SUID" : 23270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23266", "source" : "4941", "target" : "681", "shared_name" : "6342 (interacts with) 6646", "name" : "6342 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 23266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23262", "source" : "4941", "target" : "409", "shared_name" : "6342 (interacts with) 10558", "name" : "6342 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 23262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23258", "source" : "4941", "target" : "3425", "shared_name" : "6342 (interacts with) 8803", "name" : "6342 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 23258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23254", "source" : "4941", "target" : "2925", "shared_name" : "6342 (interacts with) 8802", "name" : "6342 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 23254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23250", "source" : "4941", "target" : "5305", "shared_name" : "6342 (interacts with) 6901", "name" : "6342 (interacts with) 6901", "interaction" : "interacts with", "SUID" : 23250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23246", "source" : "4941", "target" : "4169", "shared_name" : "6342 (interacts with) 10993", "name" : "6342 (interacts with) 10993", "interaction" : "interacts with", "SUID" : 23246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23242", "source" : "4941", "target" : "5049", "shared_name" : "6342 (interacts with) 6697", "name" : "6342 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 23242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23238", "source" : "4941", "target" : "1721", "shared_name" : "6342 (interacts with) 51807", "name" : "6342 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 23238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23234", "source" : "4941", "target" : "4873", "shared_name" : "6342 (interacts with) 4644", "name" : "6342 (interacts with) 4644", "interaction" : "interacts with", "SUID" : 23234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23354", "source" : "4937", "target" : "2957", "shared_name" : "1555 (interacts with) 5465", "name" : "1555 (interacts with) 5465", "interaction" : "interacts with", "SUID" : 23354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23350", "source" : "4937", "target" : "4589", "shared_name" : "1555 (interacts with) 8431", "name" : "1555 (interacts with) 8431", "interaction" : "interacts with", "SUID" : 23350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23346", "source" : "4937", "target" : "5941", "shared_name" : "1555 (interacts with) 5914", "name" : "1555 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 23346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23342", "source" : "4937", "target" : "1829", "shared_name" : "1555 (interacts with) 7421", "name" : "1555 (interacts with) 7421", "interaction" : "interacts with", "SUID" : 23342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23338", "source" : "4937", "target" : "557", "shared_name" : "1555 (interacts with) 5730", "name" : "1555 (interacts with) 5730", "interaction" : "interacts with", "SUID" : 23338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23334", "source" : "4937", "target" : "3901", "shared_name" : "1555 (interacts with) 19", "name" : "1555 (interacts with) 19", "interaction" : "interacts with", "SUID" : 23334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23330", "source" : "4937", "target" : "2081", "shared_name" : "1555 (interacts with) 5468", "name" : "1555 (interacts with) 5468", "interaction" : "interacts with", "SUID" : 23330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23326", "source" : "4937", "target" : "5645", "shared_name" : "1555 (interacts with) 9420", "name" : "1555 (interacts with) 9420", "interaction" : "interacts with", "SUID" : 23326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23322", "source" : "4937", "target" : "321", "shared_name" : "1555 (interacts with) 1593", "name" : "1555 (interacts with) 1593", "interaction" : "interacts with", "SUID" : 23322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23318", "source" : "4937", "target" : "3825", "shared_name" : "1555 (interacts with) 5915", "name" : "1555 (interacts with) 5915", "interaction" : "interacts with", "SUID" : 23318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23314", "source" : "4937", "target" : "6153", "shared_name" : "1555 (interacts with) 9915", "name" : "1555 (interacts with) 9915", "interaction" : "interacts with", "SUID" : 23314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23310", "source" : "4937", "target" : "5033", "shared_name" : "1555 (interacts with) 1565", "name" : "1555 (interacts with) 1565", "interaction" : "interacts with", "SUID" : 23310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23306", "source" : "4937", "target" : "1569", "shared_name" : "1555 (interacts with) 1557", "name" : "1555 (interacts with) 1557", "interaction" : "interacts with", "SUID" : 23306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23302", "source" : "4937", "target" : "3893", "shared_name" : "1555 (interacts with) 151056", "name" : "1555 (interacts with) 151056", "interaction" : "interacts with", "SUID" : 23302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23298", "source" : "4937", "target" : "1625", "shared_name" : "1555 (interacts with) 1559", "name" : "1555 (interacts with) 1559", "interaction" : "interacts with", "SUID" : 23298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23294", "source" : "4937", "target" : "385", "shared_name" : "1555 (interacts with) 5319", "name" : "1555 (interacts with) 5319", "interaction" : "interacts with", "SUID" : 23294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23402", "source" : "4925", "target" : "5189", "shared_name" : "246243 (interacts with) 57176", "name" : "246243 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 23402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23398", "source" : "4925", "target" : "4869", "shared_name" : "246243 (interacts with) 92935", "name" : "246243 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 23398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23394", "source" : "4925", "target" : "721", "shared_name" : "246243 (interacts with) 79731", "name" : "246243 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 23394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23390", "source" : "4925", "target" : "2021", "shared_name" : "246243 (interacts with) 5428", "name" : "246243 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 23390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23386", "source" : "4925", "target" : "713", "shared_name" : "246243 (interacts with) 7019", "name" : "246243 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 23386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23382", "source" : "4925", "target" : "5085", "shared_name" : "246243 (interacts with) 56652", "name" : "246243 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 23382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23378", "source" : "4925", "target" : "2249", "shared_name" : "246243 (interacts with) 25824", "name" : "246243 (interacts with) 25824", "interaction" : "interacts with", "SUID" : 23378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23374", "source" : "4925", "target" : "1049", "shared_name" : "246243 (interacts with) 5422", "name" : "246243 (interacts with) 5422", "interaction" : "interacts with", "SUID" : 23374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23370", "source" : "4925", "target" : "2921", "shared_name" : "246243 (interacts with) 5981", "name" : "246243 (interacts with) 5981", "interaction" : "interacts with", "SUID" : 23370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23366", "source" : "4925", "target" : "4053", "shared_name" : "246243 (interacts with) 79621", "name" : "246243 (interacts with) 79621", "interaction" : "interacts with", "SUID" : 23366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23362", "source" : "4925", "target" : "4609", "shared_name" : "246243 (interacts with) 84153", "name" : "246243 (interacts with) 84153", "interaction" : "interacts with", "SUID" : 23362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23358", "source" : "4925", "target" : "3545", "shared_name" : "246243 (interacts with) 708", "name" : "246243 (interacts with) 708", "interaction" : "interacts with", "SUID" : 23358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23406", "source" : "4921", "target" : "4417", "shared_name" : "6311 (interacts with) 1656", "name" : "6311 (interacts with) 1656", "interaction" : "interacts with", "SUID" : 23406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23478", "source" : "4917", "target" : "1489", "shared_name" : "10243 (interacts with) 1738", "name" : "10243 (interacts with) 1738", "interaction" : "interacts with", "SUID" : 23478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23474", "source" : "4917", "target" : "245", "shared_name" : "10243 (interacts with) 2936", "name" : "10243 (interacts with) 2936", "interaction" : "interacts with", "SUID" : 23474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23470", "source" : "4917", "target" : "4045", "shared_name" : "10243 (interacts with) 29920", "name" : "10243 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 23470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23466", "source" : "4917", "target" : "3501", "shared_name" : "10243 (interacts with) 5831", "name" : "10243 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 23466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23462", "source" : "4917", "target" : "3969", "shared_name" : "10243 (interacts with) 57468", "name" : "10243 (interacts with) 57468", "interaction" : "interacts with", "SUID" : 23462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23458", "source" : "4917", "target" : "2189", "shared_name" : "10243 (interacts with) 84705", "name" : "10243 (interacts with) 84705", "interaction" : "interacts with", "SUID" : 23458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23454", "source" : "4917", "target" : "5057", "shared_name" : "10243 (interacts with) 10730", "name" : "10243 (interacts with) 10730", "interaction" : "interacts with", "SUID" : 23454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23450", "source" : "4917", "target" : "2445", "shared_name" : "10243 (interacts with) 10939", "name" : "10243 (interacts with) 10939", "interaction" : "interacts with", "SUID" : 23450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23446", "source" : "4917", "target" : "1821", "shared_name" : "10243 (interacts with) 1719", "name" : "10243 (interacts with) 1719", "interaction" : "interacts with", "SUID" : 23446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23442", "source" : "4917", "target" : "1149", "shared_name" : "10243 (interacts with) 2558", "name" : "10243 (interacts with) 2558", "interaction" : "interacts with", "SUID" : 23442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23438", "source" : "4917", "target" : "205", "shared_name" : "10243 (interacts with) 2555", "name" : "10243 (interacts with) 2555", "interaction" : "interacts with", "SUID" : 23438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23434", "source" : "4917", "target" : "4721", "shared_name" : "10243 (interacts with) 5805", "name" : "10243 (interacts with) 5805", "interaction" : "interacts with", "SUID" : 23434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23430", "source" : "4917", "target" : "3929", "shared_name" : "10243 (interacts with) 5860", "name" : "10243 (interacts with) 5860", "interaction" : "interacts with", "SUID" : 23430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23426", "source" : "4917", "target" : "5049", "shared_name" : "10243 (interacts with) 6697", "name" : "10243 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 23426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23422", "source" : "4917", "target" : "3113", "shared_name" : "10243 (interacts with) 4338", "name" : "10243 (interacts with) 4338", "interaction" : "interacts with", "SUID" : 23422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23418", "source" : "4917", "target" : "2577", "shared_name" : "10243 (interacts with) 4337", "name" : "10243 (interacts with) 4337", "interaction" : "interacts with", "SUID" : 23418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23414", "source" : "4917", "target" : "737", "shared_name" : "10243 (interacts with) 2643", "name" : "10243 (interacts with) 2643", "interaction" : "interacts with", "SUID" : 23414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23410", "source" : "4917", "target" : "2481", "shared_name" : "10243 (interacts with) 2475", "name" : "10243 (interacts with) 2475", "interaction" : "interacts with", "SUID" : 23410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23490", "source" : "4909", "target" : "5053", "shared_name" : "823 (interacts with) 857", "name" : "823 (interacts with) 857", "interaction" : "interacts with", "SUID" : 23490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23486", "source" : "4909", "target" : "1245", "shared_name" : "823 (interacts with) 4137", "name" : "823 (interacts with) 4137", "interaction" : "interacts with", "SUID" : 23486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23482", "source" : "4909", "target" : "3681", "shared_name" : "823 (interacts with) 1892", "name" : "823 (interacts with) 1892", "interaction" : "interacts with", "SUID" : 23482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23510", "source" : "4905", "target" : "2793", "shared_name" : "440275 (interacts with) 8894", "name" : "440275 (interacts with) 8894", "interaction" : "interacts with", "SUID" : 23510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23506", "source" : "4905", "target" : "2525", "shared_name" : "440275 (interacts with) 9451", "name" : "440275 (interacts with) 9451", "interaction" : "interacts with", "SUID" : 23506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23502", "source" : "4905", "target" : "4149", "shared_name" : "440275 (interacts with) 8893", "name" : "440275 (interacts with) 8893", "interaction" : "interacts with", "SUID" : 23502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23498", "source" : "4905", "target" : "3641", "shared_name" : "440275 (interacts with) 4141", "name" : "440275 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 23498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23494", "source" : "4905", "target" : "2125", "shared_name" : "440275 (interacts with) 2512", "name" : "440275 (interacts with) 2512", "interaction" : "interacts with", "SUID" : 23494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23518", "source" : "4901", "target" : "569", "shared_name" : "22983 (interacts with) 7048", "name" : "22983 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 23518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23514", "source" : "4901", "target" : "865", "shared_name" : "22983 (interacts with) 3480", "name" : "22983 (interacts with) 3480", "interaction" : "interacts with", "SUID" : 23514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23626", "source" : "4897", "target" : "889", "shared_name" : "55149 (interacts with) 80224", "name" : "55149 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 23626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23622", "source" : "4897", "target" : "6181", "shared_name" : "55149 (interacts with) 84987", "name" : "55149 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 23622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23618", "source" : "4897", "target" : "1325", "shared_name" : "55149 (interacts with) 7284", "name" : "55149 (interacts with) 7284", "interaction" : "interacts with", "SUID" : 23618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23614", "source" : "4897", "target" : "2477", "shared_name" : "55149 (interacts with) 57107", "name" : "55149 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 23614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23610", "source" : "4897", "target" : "3545", "shared_name" : "55149 (interacts with) 708", "name" : "55149 (interacts with) 708", "interaction" : "interacts with", "SUID" : 23610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23606", "source" : "4897", "target" : "4409", "shared_name" : "55149 (interacts with) 6341", "name" : "55149 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 23606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23602", "source" : "4897", "target" : "2009", "shared_name" : "55149 (interacts with) 79133", "name" : "55149 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 23602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23598", "source" : "4897", "target" : "3973", "shared_name" : "55149 (interacts with) 55572", "name" : "55149 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 23598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23594", "source" : "4897", "target" : "4141", "shared_name" : "55149 (interacts with) 617", "name" : "55149 (interacts with) 617", "interaction" : "interacts with", "SUID" : 23594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23590", "source" : "4897", "target" : "4757", "shared_name" : "55149 (interacts with) 9997", "name" : "55149 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 23590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23586", "source" : "4897", "target" : "4101", "shared_name" : "55149 (interacts with) 65260", "name" : "55149 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 23586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23582", "source" : "4897", "target" : "501", "shared_name" : "55149 (interacts with) 65993", "name" : "55149 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 23582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23578", "source" : "4897", "target" : "6001", "shared_name" : "55149 (interacts with) 55157", "name" : "55149 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 23578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23574", "source" : "4897", "target" : "5737", "shared_name" : "55149 (interacts with) 84340", "name" : "55149 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 23574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23570", "source" : "4897", "target" : "1197", "shared_name" : "55149 (interacts with) 79587", "name" : "55149 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 23570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23566", "source" : "4897", "target" : "4621", "shared_name" : "55149 (interacts with) 57038", "name" : "55149 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 23566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23562", "source" : "4897", "target" : "713", "shared_name" : "55149 (interacts with) 7019", "name" : "55149 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 23562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23558", "source" : "4897", "target" : "3705", "shared_name" : "55149 (interacts with) 87178", "name" : "55149 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 23558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23554", "source" : "4897", "target" : "2105", "shared_name" : "55149 (interacts with) 56945", "name" : "55149 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 23554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23550", "source" : "4897", "target" : "5189", "shared_name" : "55149 (interacts with) 57176", "name" : "55149 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 23550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23546", "source" : "4897", "target" : "521", "shared_name" : "55149 (interacts with) 85476", "name" : "55149 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 23546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23542", "source" : "4897", "target" : "6073", "shared_name" : "55149 (interacts with) 92170", "name" : "55149 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 23542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23538", "source" : "4897", "target" : "1129", "shared_name" : "55149 (interacts with) 57505", "name" : "55149 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 23538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23534", "source" : "4897", "target" : "721", "shared_name" : "55149 (interacts with) 79731", "name" : "55149 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 23534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23530", "source" : "4897", "target" : "5085", "shared_name" : "55149 (interacts with) 56652", "name" : "55149 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 23530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23526", "source" : "4897", "target" : "4869", "shared_name" : "55149 (interacts with) 92935", "name" : "55149 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 23526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23522", "source" : "4897", "target" : "933", "shared_name" : "55149 (interacts with) 9569", "name" : "55149 (interacts with) 9569", "interaction" : "interacts with", "SUID" : 23522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23706", "source" : "4893", "target" : "5929", "shared_name" : "10815 (interacts with) 6616", "name" : "10815 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 23706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23702", "source" : "4893", "target" : "4189", "shared_name" : "10815 (interacts with) 2744", "name" : "10815 (interacts with) 2744", "interaction" : "interacts with", "SUID" : 23702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23698", "source" : "4893", "target" : "1157", "shared_name" : "10815 (interacts with) 6580", "name" : "10815 (interacts with) 6580", "interaction" : "interacts with", "SUID" : 23698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23694", "source" : "4893", "target" : "425", "shared_name" : "10815 (interacts with) 1103", "name" : "10815 (interacts with) 1103", "interaction" : "interacts with", "SUID" : 23694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23690", "source" : "4893", "target" : "3077", "shared_name" : "10815 (interacts with) 6506", "name" : "10815 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 23690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23686", "source" : "4893", "target" : "2205", "shared_name" : "10815 (interacts with) 2571", "name" : "10815 (interacts with) 2571", "interaction" : "interacts with", "SUID" : 23686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23682", "source" : "4893", "target" : "5785", "shared_name" : "10815 (interacts with) 6857", "name" : "10815 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 23682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23678", "source" : "4893", "target" : "3777", "shared_name" : "10815 (interacts with) 6571", "name" : "10815 (interacts with) 6571", "interaction" : "interacts with", "SUID" : 23678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23674", "source" : "4893", "target" : "609", "shared_name" : "10815 (interacts with) 6812", "name" : "10815 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 23674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23670", "source" : "4893", "target" : "3601", "shared_name" : "10815 (interacts with) 6531", "name" : "10815 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 23670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23666", "source" : "4893", "target" : "3853", "shared_name" : "10815 (interacts with) 6786", "name" : "10815 (interacts with) 6786", "interaction" : "interacts with", "SUID" : 23666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23662", "source" : "4893", "target" : "401", "shared_name" : "10815 (interacts with) 6532", "name" : "10815 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 23662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23658", "source" : "4893", "target" : "2873", "shared_name" : "10815 (interacts with) 6261", "name" : "10815 (interacts with) 6261", "interaction" : "interacts with", "SUID" : 23658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23654", "source" : "4893", "target" : "2977", "shared_name" : "10815 (interacts with) 4747", "name" : "10815 (interacts with) 4747", "interaction" : "interacts with", "SUID" : 23654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23650", "source" : "4893", "target" : "5337", "shared_name" : "10815 (interacts with) 84876", "name" : "10815 (interacts with) 84876", "interaction" : "interacts with", "SUID" : 23650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23646", "source" : "4893", "target" : "1861", "shared_name" : "10815 (interacts with) 3708", "name" : "10815 (interacts with) 3708", "interaction" : "interacts with", "SUID" : 23646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23642", "source" : "4893", "target" : "1261", "shared_name" : "10815 (interacts with) 57192", "name" : "10815 (interacts with) 57192", "interaction" : "interacts with", "SUID" : 23642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23638", "source" : "4893", "target" : "2329", "shared_name" : "10815 (interacts with) 2904", "name" : "10815 (interacts with) 2904", "interaction" : "interacts with", "SUID" : 23638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23634", "source" : "4893", "target" : "4509", "shared_name" : "10815 (interacts with) 2902", "name" : "10815 (interacts with) 2902", "interaction" : "interacts with", "SUID" : 23634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23630", "source" : "4893", "target" : "5365", "shared_name" : "10815 (interacts with) 2893", "name" : "10815 (interacts with) 2893", "interaction" : "interacts with", "SUID" : 23630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23722", "source" : "4889", "target" : "4005", "shared_name" : "7295 (interacts with) 23636", "name" : "7295 (interacts with) 23636", "interaction" : "interacts with", "SUID" : 23722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23718", "source" : "4889", "target" : "3201", "shared_name" : "7295 (interacts with) 1277", "name" : "7295 (interacts with) 1277", "interaction" : "interacts with", "SUID" : 23718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23714", "source" : "4889", "target" : "517", "shared_name" : "7295 (interacts with) 5052", "name" : "7295 (interacts with) 5052", "interaction" : "interacts with", "SUID" : 23714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23710", "source" : "4889", "target" : "1293", "shared_name" : "7295 (interacts with) 2908", "name" : "7295 (interacts with) 2908", "interaction" : "interacts with", "SUID" : 23710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23734", "source" : "4885", "target" : "5537", "shared_name" : "5340 (interacts with) 5653", "name" : "5340 (interacts with) 5653", "interaction" : "interacts with", "SUID" : 23734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23730", "source" : "4885", "target" : "4077", "shared_name" : "5340 (interacts with) 71", "name" : "5340 (interacts with) 71", "interaction" : "interacts with", "SUID" : 23730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23726", "source" : "4885", "target" : "1237", "shared_name" : "5340 (interacts with) 3329", "name" : "5340 (interacts with) 3329", "interaction" : "interacts with", "SUID" : 23726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23778", "source" : "4881", "target" : "3497", "shared_name" : "6833 (interacts with) 9699", "name" : "6833 (interacts with) 9699", "interaction" : "interacts with", "SUID" : 23778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23774", "source" : "4881", "target" : "977", "shared_name" : "6833 (interacts with) 79944", "name" : "6833 (interacts with) 79944", "interaction" : "interacts with", "SUID" : 23774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23770", "source" : "4881", "target" : "641", "shared_name" : "6833 (interacts with) 773", "name" : "6833 (interacts with) 773", "interaction" : "interacts with", "SUID" : 23770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23766", "source" : "4881", "target" : "357", "shared_name" : "6833 (interacts with) 777", "name" : "6833 (interacts with) 777", "interaction" : "interacts with", "SUID" : 23766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23762", "source" : "4881", "target" : "5557", "shared_name" : "6833 (interacts with) 9254", "name" : "6833 (interacts with) 9254", "interaction" : "interacts with", "SUID" : 23762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23758", "source" : "4881", "target" : "3481", "shared_name" : "6833 (interacts with) 6513", "name" : "6833 (interacts with) 6513", "interaction" : "interacts with", "SUID" : 23758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23754", "source" : "4881", "target" : "1433", "shared_name" : "6833 (interacts with) 6515", "name" : "6833 (interacts with) 6515", "interaction" : "interacts with", "SUID" : 23754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23750", "source" : "4881", "target" : "5913", "shared_name" : "6833 (interacts with) 3767", "name" : "6833 (interacts with) 3767", "interaction" : "interacts with", "SUID" : 23750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23746", "source" : "4881", "target" : "2621", "shared_name" : "6833 (interacts with) 477", "name" : "6833 (interacts with) 477", "interaction" : "interacts with", "SUID" : 23746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23742", "source" : "4881", "target" : "2645", "shared_name" : "6833 (interacts with) 476", "name" : "6833 (interacts with) 476", "interaction" : "interacts with", "SUID" : 23742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23738", "source" : "4881", "target" : "4793", "shared_name" : "6833 (interacts with) 478", "name" : "6833 (interacts with) 478", "interaction" : "interacts with", "SUID" : 23738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23882", "source" : "4877", "target" : "3685", "shared_name" : "1965 (interacts with) 3265", "name" : "1965 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 23882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23878", "source" : "4877", "target" : "5225", "shared_name" : "1965 (interacts with) 5290", "name" : "1965 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 23878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23874", "source" : "4877", "target" : "4497", "shared_name" : "1965 (interacts with) 8243", "name" : "1965 (interacts with) 8243", "interaction" : "interacts with", "SUID" : 23874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23870", "source" : "4877", "target" : "1217", "shared_name" : "1965 (interacts with) 3308", "name" : "1965 (interacts with) 3308", "interaction" : "interacts with", "SUID" : 23870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23866", "source" : "4877", "target" : "5509", "shared_name" : "1965 (interacts with) 207", "name" : "1965 (interacts with) 207", "interaction" : "interacts with", "SUID" : 23866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23862", "source" : "4877", "target" : "3017", "shared_name" : "1965 (interacts with) 4790", "name" : "1965 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 23862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23858", "source" : "4877", "target" : "4213", "shared_name" : "1965 (interacts with) 5295", "name" : "1965 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 23858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23854", "source" : "4877", "target" : "4949", "shared_name" : "1965 (interacts with) 5970", "name" : "1965 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 23854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23850", "source" : "4877", "target" : "5965", "shared_name" : "1965 (interacts with) 596", "name" : "1965 (interacts with) 596", "interaction" : "interacts with", "SUID" : 23850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23846", "source" : "4877", "target" : "981", "shared_name" : "1965 (interacts with) 7157", "name" : "1965 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 23846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23842", "source" : "4877", "target" : "5037", "shared_name" : "1965 (interacts with) 5515", "name" : "1965 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 23842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23838", "source" : "4877", "target" : "2085", "shared_name" : "1965 (interacts with) 2932", "name" : "1965 (interacts with) 2932", "interaction" : "interacts with", "SUID" : 23838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23834", "source" : "4877", "target" : "865", "shared_name" : "1965 (interacts with) 3480", "name" : "1965 (interacts with) 3480", "interaction" : "interacts with", "SUID" : 23834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23830", "source" : "4877", "target" : "1845", "shared_name" : "1965 (interacts with) 836", "name" : "1965 (interacts with) 836", "interaction" : "interacts with", "SUID" : 23830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23826", "source" : "4877", "target" : "4649", "shared_name" : "1965 (interacts with) 3479", "name" : "1965 (interacts with) 3479", "interaction" : "interacts with", "SUID" : 23826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23822", "source" : "4877", "target" : "805", "shared_name" : "1965 (interacts with) 6772", "name" : "1965 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 23822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23818", "source" : "4877", "target" : "2005", "shared_name" : "1965 (interacts with) 4846", "name" : "1965 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 23818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23814", "source" : "4877", "target" : "817", "shared_name" : "1965 (interacts with) 5728", "name" : "1965 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 23814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23810", "source" : "4877", "target" : "2613", "shared_name" : "1965 (interacts with) 472", "name" : "1965 (interacts with) 472", "interaction" : "interacts with", "SUID" : 23810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23806", "source" : "4877", "target" : "2793", "shared_name" : "1965 (interacts with) 8894", "name" : "1965 (interacts with) 8894", "interaction" : "interacts with", "SUID" : 23806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23802", "source" : "4877", "target" : "2481", "shared_name" : "1965 (interacts with) 2475", "name" : "1965 (interacts with) 2475", "interaction" : "interacts with", "SUID" : 23802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23798", "source" : "4877", "target" : "5577", "shared_name" : "1965 (interacts with) 3091", "name" : "1965 (interacts with) 3091", "interaction" : "interacts with", "SUID" : 23798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23794", "source" : "4877", "target" : "2585", "shared_name" : "1965 (interacts with) 1977", "name" : "1965 (interacts with) 1977", "interaction" : "interacts with", "SUID" : 23794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23790", "source" : "4877", "target" : "1493", "shared_name" : "1965 (interacts with) 7428", "name" : "1965 (interacts with) 7428", "interaction" : "interacts with", "SUID" : 23790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23786", "source" : "4877", "target" : "4905", "shared_name" : "1965 (interacts with) 440275", "name" : "1965 (interacts with) 440275", "interaction" : "interacts with", "SUID" : 23786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23782", "source" : "4877", "target" : "2781", "shared_name" : "1965 (interacts with) 1968", "name" : "1965 (interacts with) 1968", "interaction" : "interacts with", "SUID" : 23782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23886", "source" : "4873", "target" : "5929", "shared_name" : "4644 (interacts with) 6616", "name" : "4644 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 23886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23894", "source" : "4869", "target" : "893", "shared_name" : "92935 (interacts with) 9361", "name" : "92935 (interacts with) 9361", "interaction" : "interacts with", "SUID" : 23894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23890", "source" : "4869", "target" : "4757", "shared_name" : "92935 (interacts with) 9997", "name" : "92935 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 23890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23898", "source" : "4865", "target" : "1677", "shared_name" : "55690 (interacts with) 8905", "name" : "55690 (interacts with) 8905", "interaction" : "interacts with", "SUID" : 23898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23906", "source" : "4861", "target" : "5149", "shared_name" : "4771 (interacts with) 5058", "name" : "4771 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 23906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23902", "source" : "4861", "target" : "1069", "shared_name" : "4771 (interacts with) 5879", "name" : "4771 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 23902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23986", "source" : "4857", "target" : "3425", "shared_name" : "5573 (interacts with) 8803", "name" : "5573 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 23986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23982", "source" : "4857", "target" : "1069", "shared_name" : "5573 (interacts with) 5879", "name" : "5573 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 23982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23978", "source" : "4857", "target" : "4065", "shared_name" : "5573 (interacts with) 7124", "name" : "5573 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 23978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23974", "source" : "4857", "target" : "5361", "shared_name" : "5573 (interacts with) 5604", "name" : "5573 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 23974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23970", "source" : "4857", "target" : "4521", "shared_name" : "5573 (interacts with) 5894", "name" : "5573 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 23970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23966", "source" : "4857", "target" : "1201", "shared_name" : "5573 (interacts with) 805", "name" : "5573 (interacts with) 805", "interaction" : "interacts with", "SUID" : 23966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23962", "source" : "4857", "target" : "1241", "shared_name" : "5573 (interacts with) 808", "name" : "5573 (interacts with) 808", "interaction" : "interacts with", "SUID" : 23962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23958", "source" : "4857", "target" : "5965", "shared_name" : "5573 (interacts with) 596", "name" : "5573 (interacts with) 596", "interaction" : "interacts with", "SUID" : 23958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23954", "source" : "4857", "target" : "637", "shared_name" : "5573 (interacts with) 6654", "name" : "5573 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 23954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23950", "source" : "4857", "target" : "993", "shared_name" : "5573 (interacts with) 801", "name" : "5573 (interacts with) 801", "interaction" : "interacts with", "SUID" : 23950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23946", "source" : "4857", "target" : "5313", "shared_name" : "5573 (interacts with) 6197", "name" : "5573 (interacts with) 6197", "interaction" : "interacts with", "SUID" : 23946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23942", "source" : "4857", "target" : "5321", "shared_name" : "5573 (interacts with) 5743", "name" : "5573 (interacts with) 5743", "interaction" : "interacts with", "SUID" : 23942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23938", "source" : "4857", "target" : "4589", "shared_name" : "5573 (interacts with) 8431", "name" : "5573 (interacts with) 8431", "interaction" : "interacts with", "SUID" : 23938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23934", "source" : "4857", "target" : "4097", "shared_name" : "5573 (interacts with) 9611", "name" : "5573 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 23934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23930", "source" : "4857", "target" : "5941", "shared_name" : "5573 (interacts with) 5914", "name" : "5573 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 23930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23926", "source" : "4857", "target" : "4909", "shared_name" : "5573 (interacts with) 823", "name" : "5573 (interacts with) 823", "interaction" : "interacts with", "SUID" : 23926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23922", "source" : "4857", "target" : "5053", "shared_name" : "5573 (interacts with) 857", "name" : "5573 (interacts with) 857", "interaction" : "interacts with", "SUID" : 23922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23918", "source" : "4857", "target" : "4493", "shared_name" : "5573 (interacts with) 5727", "name" : "5573 (interacts with) 5727", "interaction" : "interacts with", "SUID" : 23918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23914", "source" : "4857", "target" : "257", "shared_name" : "5573 (interacts with) 6469", "name" : "5573 (interacts with) 6469", "interaction" : "interacts with", "SUID" : 23914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23910", "source" : "4857", "target" : "4817", "shared_name" : "5573 (interacts with) 23111", "name" : "5573 (interacts with) 23111", "interaction" : "interacts with", "SUID" : 23910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24090", "source" : "4853", "target" : "981", "shared_name" : "545 (interacts with) 7157", "name" : "545 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 24090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24086", "source" : "4853", "target" : "3409", "shared_name" : "545 (interacts with) 7043", "name" : "545 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 24086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24082", "source" : "4853", "target" : "2153", "shared_name" : "545 (interacts with) 7042", "name" : "545 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 24082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24078", "source" : "4853", "target" : "3305", "shared_name" : "545 (interacts with) 7040", "name" : "545 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 24078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24074", "source" : "4853", "target" : "5625", "shared_name" : "545 (interacts with) 595", "name" : "545 (interacts with) 595", "interaction" : "interacts with", "SUID" : 24074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24070", "source" : "4853", "target" : "5949", "shared_name" : "545 (interacts with) 672", "name" : "545 (interacts with) 672", "interaction" : "interacts with", "SUID" : 24070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24066", "source" : "4853", "target" : "729", "shared_name" : "545 (interacts with) 5888", "name" : "545 (interacts with) 5888", "interaction" : "interacts with", "SUID" : 24066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24062", "source" : "4853", "target" : "4469", "shared_name" : "545 (interacts with) 8295", "name" : "545 (interacts with) 8295", "interaction" : "interacts with", "SUID" : 24062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24058", "source" : "4853", "target" : "2417", "shared_name" : "545 (interacts with) 675", "name" : "545 (interacts with) 675", "interaction" : "interacts with", "SUID" : 24058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24054", "source" : "4853", "target" : "481", "shared_name" : "545 (interacts with) 7507", "name" : "545 (interacts with) 7507", "interaction" : "interacts with", "SUID" : 24054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24050", "source" : "4853", "target" : "3253", "shared_name" : "545 (interacts with) 4297", "name" : "545 (interacts with) 4297", "interaction" : "interacts with", "SUID" : 24050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24046", "source" : "4853", "target" : "873", "shared_name" : "545 (interacts with) 1385", "name" : "545 (interacts with) 1385", "interaction" : "interacts with", "SUID" : 24046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24042", "source" : "4853", "target" : "5197", "shared_name" : "545 (interacts with) 7156", "name" : "545 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 24042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24038", "source" : "4853", "target" : "4797", "shared_name" : "545 (interacts with) 10735", "name" : "545 (interacts with) 10735", "interaction" : "interacts with", "SUID" : 24038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24034", "source" : "4853", "target" : "4497", "shared_name" : "545 (interacts with) 8243", "name" : "545 (interacts with) 8243", "interaction" : "interacts with", "SUID" : 24034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24030", "source" : "4853", "target" : "5861", "shared_name" : "545 (interacts with) 5435", "name" : "545 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 24030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24026", "source" : "4853", "target" : "2649", "shared_name" : "545 (interacts with) 5430", "name" : "545 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 24026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24022", "source" : "4853", "target" : "4249", "shared_name" : "545 (interacts with) 4331", "name" : "545 (interacts with) 4331", "interaction" : "interacts with", "SUID" : 24022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24018", "source" : "4853", "target" : "3933", "shared_name" : "545 (interacts with) 10524", "name" : "545 (interacts with) 10524", "interaction" : "interacts with", "SUID" : 24018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24014", "source" : "4853", "target" : "913", "shared_name" : "545 (interacts with) 404672", "name" : "545 (interacts with) 404672", "interaction" : "interacts with", "SUID" : 24014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24010", "source" : "4853", "target" : "1937", "shared_name" : "545 (interacts with) 2965", "name" : "545 (interacts with) 2965", "interaction" : "interacts with", "SUID" : 24010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24006", "source" : "4853", "target" : "505", "shared_name" : "545 (interacts with) 2071", "name" : "545 (interacts with) 2071", "interaction" : "interacts with", "SUID" : 24006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24002", "source" : "4853", "target" : "2709", "shared_name" : "545 (interacts with) 2072", "name" : "545 (interacts with) 2072", "interaction" : "interacts with", "SUID" : 24002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23998", "source" : "4853", "target" : "5041", "shared_name" : "545 (interacts with) 2067", "name" : "545 (interacts with) 2067", "interaction" : "interacts with", "SUID" : 23998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23994", "source" : "4853", "target" : "4177", "shared_name" : "545 (interacts with) 2068", "name" : "545 (interacts with) 2068", "interaction" : "interacts with", "SUID" : 23994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "23990", "source" : "4853", "target" : "5741", "shared_name" : "545 (interacts with) 9150", "name" : "545 (interacts with) 9150", "interaction" : "interacts with", "SUID" : 23990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24154", "source" : "4849", "target" : "3353", "shared_name" : "11154 (interacts with) 1203", "name" : "11154 (interacts with) 1203", "interaction" : "interacts with", "SUID" : 24154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24150", "source" : "4849", "target" : "5245", "shared_name" : "11154 (interacts with) 1201", "name" : "11154 (interacts with) 1201", "interaction" : "interacts with", "SUID" : 24150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24146", "source" : "4849", "target" : "3433", "shared_name" : "11154 (interacts with) 26503", "name" : "11154 (interacts with) 26503", "interaction" : "interacts with", "SUID" : 24146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24142", "source" : "4849", "target" : "2225", "shared_name" : "11154 (interacts with) 4864", "name" : "11154 (interacts with) 4864", "interaction" : "interacts with", "SUID" : 24142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24138", "source" : "4849", "target" : "5221", "shared_name" : "11154 (interacts with) 285362", "name" : "11154 (interacts with) 285362", "interaction" : "interacts with", "SUID" : 24138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24134", "source" : "4849", "target" : "3733", "shared_name" : "11154 (interacts with) 2760", "name" : "11154 (interacts with) 2760", "interaction" : "interacts with", "SUID" : 24134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24130", "source" : "4849", "target" : "1193", "shared_name" : "11154 (interacts with) 5660", "name" : "11154 (interacts with) 5660", "interaction" : "interacts with", "SUID" : 24130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24126", "source" : "4849", "target" : "1261", "shared_name" : "11154 (interacts with) 57192", "name" : "11154 (interacts with) 57192", "interaction" : "interacts with", "SUID" : 24126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24122", "source" : "4849", "target" : "5937", "shared_name" : "11154 (interacts with) 8120", "name" : "11154 (interacts with) 8120", "interaction" : "interacts with", "SUID" : 24122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24118", "source" : "4849", "target" : "3693", "shared_name" : "11154 (interacts with) 8943", "name" : "11154 (interacts with) 8943", "interaction" : "interacts with", "SUID" : 24118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24114", "source" : "4849", "target" : "2233", "shared_name" : "11154 (interacts with) 9516", "name" : "11154 (interacts with) 9516", "interaction" : "interacts with", "SUID" : 24114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24110", "source" : "4849", "target" : "4393", "shared_name" : "11154 (interacts with) 950", "name" : "11154 (interacts with) 950", "interaction" : "interacts with", "SUID" : 24110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24106", "source" : "4849", "target" : "4813", "shared_name" : "11154 (interacts with) 23431", "name" : "11154 (interacts with) 23431", "interaction" : "interacts with", "SUID" : 24106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24102", "source" : "4849", "target" : "1445", "shared_name" : "11154 (interacts with) 9179", "name" : "11154 (interacts with) 9179", "interaction" : "interacts with", "SUID" : 24102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24098", "source" : "4849", "target" : "1677", "shared_name" : "11154 (interacts with) 8905", "name" : "11154 (interacts with) 8905", "interaction" : "interacts with", "SUID" : 24098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24094", "source" : "4849", "target" : "3273", "shared_name" : "11154 (interacts with) 351", "name" : "11154 (interacts with) 351", "interaction" : "interacts with", "SUID" : 24094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24222", "source" : "4845", "target" : "657", "shared_name" : "259232 (interacts with) 547", "name" : "259232 (interacts with) 547", "interaction" : "interacts with", "SUID" : 24222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24218", "source" : "4845", "target" : "5373", "shared_name" : "259232 (interacts with) 28962", "name" : "259232 (interacts with) 28962", "interaction" : "interacts with", "SUID" : 24218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24214", "source" : "4845", "target" : "277", "shared_name" : "259232 (interacts with) 285175", "name" : "259232 (interacts with) 285175", "interaction" : "interacts with", "SUID" : 24214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24210", "source" : "4845", "target" : "1429", "shared_name" : "259232 (interacts with) 65125", "name" : "259232 (interacts with) 65125", "interaction" : "interacts with", "SUID" : 24210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24206", "source" : "4845", "target" : "5877", "shared_name" : "259232 (interacts with) 6535", "name" : "259232 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 24206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24202", "source" : "4845", "target" : "309", "shared_name" : "259232 (interacts with) 6536", "name" : "259232 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 24202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24198", "source" : "4845", "target" : "3601", "shared_name" : "259232 (interacts with) 6531", "name" : "259232 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 24198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24194", "source" : "4845", "target" : "401", "shared_name" : "259232 (interacts with) 6532", "name" : "259232 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 24194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24190", "source" : "4845", "target" : "3781", "shared_name" : "259232 (interacts with) 9152", "name" : "259232 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 24190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24186", "source" : "4845", "target" : "2877", "shared_name" : "259232 (interacts with) 340024", "name" : "259232 (interacts with) 340024", "interaction" : "interacts with", "SUID" : 24186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24182", "source" : "4845", "target" : "3473", "shared_name" : "259232 (interacts with) 6528", "name" : "259232 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 24182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24178", "source" : "4845", "target" : "1385", "shared_name" : "259232 (interacts with) 6520", "name" : "259232 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 24178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24174", "source" : "4845", "target" : "5805", "shared_name" : "259232 (interacts with) 6575", "name" : "259232 (interacts with) 6575", "interaction" : "interacts with", "SUID" : 24174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24170", "source" : "4845", "target" : "4025", "shared_name" : "259232 (interacts with) 284111", "name" : "259232 (interacts with) 284111", "interaction" : "interacts with", "SUID" : 24170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24166", "source" : "4845", "target" : "3077", "shared_name" : "259232 (interacts with) 6506", "name" : "259232 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 24166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24162", "source" : "4845", "target" : "6009", "shared_name" : "259232 (interacts with) 64849", "name" : "259232 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 24162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24158", "source" : "4845", "target" : "5729", "shared_name" : "259232 (interacts with) 861", "name" : "259232 (interacts with) 861", "interaction" : "interacts with", "SUID" : 24158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24290", "source" : "4841", "target" : "5557", "shared_name" : "6334 (interacts with) 9254", "name" : "6334 (interacts with) 9254", "interaction" : "interacts with", "SUID" : 24290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24286", "source" : "4841", "target" : "5229", "shared_name" : "6334 (interacts with) 6335", "name" : "6334 (interacts with) 6335", "interaction" : "interacts with", "SUID" : 24286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24282", "source" : "4841", "target" : "3637", "shared_name" : "6334 (interacts with) 6712", "name" : "6334 (interacts with) 6712", "interaction" : "interacts with", "SUID" : 24282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24278", "source" : "4841", "target" : "1633", "shared_name" : "6334 (interacts with) 57731", "name" : "6334 (interacts with) 57731", "interaction" : "interacts with", "SUID" : 24278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24274", "source" : "4841", "target" : "1973", "shared_name" : "6334 (interacts with) 6709", "name" : "6334 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 24274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24270", "source" : "4841", "target" : "5877", "shared_name" : "6334 (interacts with) 6535", "name" : "6334 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 24270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24266", "source" : "4841", "target" : "309", "shared_name" : "6334 (interacts with) 6536", "name" : "6334 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 24266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24262", "source" : "4841", "target" : "3601", "shared_name" : "6334 (interacts with) 6531", "name" : "6334 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 24262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24258", "source" : "4841", "target" : "401", "shared_name" : "6334 (interacts with) 6532", "name" : "6334 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 24258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24254", "source" : "4841", "target" : "3781", "shared_name" : "6334 (interacts with) 9152", "name" : "6334 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 24254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24250", "source" : "4841", "target" : "2877", "shared_name" : "6334 (interacts with) 340024", "name" : "6334 (interacts with) 340024", "interaction" : "interacts with", "SUID" : 24250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24246", "source" : "4841", "target" : "3473", "shared_name" : "6334 (interacts with) 6528", "name" : "6334 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 24246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24242", "source" : "4841", "target" : "1385", "shared_name" : "6334 (interacts with) 6520", "name" : "6334 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 24242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24238", "source" : "4841", "target" : "5805", "shared_name" : "6334 (interacts with) 6575", "name" : "6334 (interacts with) 6575", "interaction" : "interacts with", "SUID" : 24238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24234", "source" : "4841", "target" : "4025", "shared_name" : "6334 (interacts with) 284111", "name" : "6334 (interacts with) 284111", "interaction" : "interacts with", "SUID" : 24234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24230", "source" : "4841", "target" : "3077", "shared_name" : "6334 (interacts with) 6506", "name" : "6334 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 24230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24226", "source" : "4841", "target" : "6009", "shared_name" : "6334 (interacts with) 64849", "name" : "6334 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 24226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24314", "source" : "4837", "target" : "1085", "shared_name" : "8891 (interacts with) 9377", "name" : "8891 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 24314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24310", "source" : "4837", "target" : "2793", "shared_name" : "8891 (interacts with) 8894", "name" : "8891 (interacts with) 8894", "interaction" : "interacts with", "SUID" : 24310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24306", "source" : "4837", "target" : "837", "shared_name" : "8891 (interacts with) 8892", "name" : "8891 (interacts with) 8892", "interaction" : "interacts with", "SUID" : 24306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24302", "source" : "4837", "target" : "4149", "shared_name" : "8891 (interacts with) 8893", "name" : "8891 (interacts with) 8893", "interaction" : "interacts with", "SUID" : 24302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24298", "source" : "4837", "target" : "4877", "shared_name" : "8891 (interacts with) 1965", "name" : "8891 (interacts with) 1965", "interaction" : "interacts with", "SUID" : 24298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24294", "source" : "4837", "target" : "2781", "shared_name" : "8891 (interacts with) 1968", "name" : "8891 (interacts with) 1968", "interaction" : "interacts with", "SUID" : 24294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24374", "source" : "4833", "target" : "5993", "shared_name" : "2593 (interacts with) 6611", "name" : "2593 (interacts with) 6611", "interaction" : "interacts with", "SUID" : 24374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24370", "source" : "4833", "target" : "5777", "shared_name" : "2593 (interacts with) 383", "name" : "2593 (interacts with) 383", "interaction" : "interacts with", "SUID" : 24370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24366", "source" : "4833", "target" : "769", "shared_name" : "2593 (interacts with) 4953", "name" : "2593 (interacts with) 4953", "interaction" : "interacts with", "SUID" : 24366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24362", "source" : "4833", "target" : "5593", "shared_name" : "2593 (interacts with) 875", "name" : "2593 (interacts with) 875", "interaction" : "interacts with", "SUID" : 24362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24358", "source" : "4833", "target" : "4045", "shared_name" : "2593 (interacts with) 29920", "name" : "2593 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 24358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24354", "source" : "4833", "target" : "2365", "shared_name" : "2593 (interacts with) 2731", "name" : "2593 (interacts with) 2731", "interaction" : "interacts with", "SUID" : 24354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24350", "source" : "4833", "target" : "4185", "shared_name" : "2593 (interacts with) 29968", "name" : "2593 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 24350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24346", "source" : "4833", "target" : "1461", "shared_name" : "2593 (interacts with) 5832", "name" : "2593 (interacts with) 5832", "interaction" : "interacts with", "SUID" : 24346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24342", "source" : "4833", "target" : "3501", "shared_name" : "2593 (interacts with) 5831", "name" : "2593 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 24342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24338", "source" : "4833", "target" : "4617", "shared_name" : "2593 (interacts with) 26227", "name" : "2593 (interacts with) 26227", "interaction" : "interacts with", "SUID" : 24338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24334", "source" : "4833", "target" : "5877", "shared_name" : "2593 (interacts with) 6535", "name" : "2593 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 24334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24330", "source" : "4833", "target" : "2457", "shared_name" : "2593 (interacts with) 4143", "name" : "2593 (interacts with) 4143", "interaction" : "interacts with", "SUID" : 24330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24326", "source" : "4833", "target" : "5453", "shared_name" : "2593 (interacts with) 4204", "name" : "2593 (interacts with) 4204", "interaction" : "interacts with", "SUID" : 24326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24322", "source" : "4833", "target" : "317", "shared_name" : "2593 (interacts with) 3176", "name" : "2593 (interacts with) 3176", "interaction" : "interacts with", "SUID" : 24322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24318", "source" : "4833", "target" : "4405", "shared_name" : "2593 (interacts with) 10667", "name" : "2593 (interacts with) 10667", "interaction" : "interacts with", "SUID" : 24318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24382", "source" : "4829", "target" : "5449", "shared_name" : "64919 (interacts with) 923", "name" : "64919 (interacts with) 923", "interaction" : "interacts with", "SUID" : 24382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24378", "source" : "4829", "target" : "1517", "shared_name" : "64919 (interacts with) 51776", "name" : "64919 (interacts with) 51776", "interaction" : "interacts with", "SUID" : 24378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24390", "source" : "4821", "target" : "3777", "shared_name" : "28982 (interacts with) 6571", "name" : "28982 (interacts with) 6571", "interaction" : "interacts with", "SUID" : 24390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24386", "source" : "4821", "target" : "6057", "shared_name" : "28982 (interacts with) 3162", "name" : "28982 (interacts with) 3162", "interaction" : "interacts with", "SUID" : 24386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24466", "source" : "4813", "target" : "3433", "shared_name" : "23431 (interacts with) 26503", "name" : "23431 (interacts with) 26503", "interaction" : "interacts with", "SUID" : 24466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24462", "source" : "4813", "target" : "2225", "shared_name" : "23431 (interacts with) 4864", "name" : "23431 (interacts with) 4864", "interaction" : "interacts with", "SUID" : 24462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24458", "source" : "4813", "target" : "5221", "shared_name" : "23431 (interacts with) 285362", "name" : "23431 (interacts with) 285362", "interaction" : "interacts with", "SUID" : 24458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24454", "source" : "4813", "target" : "3733", "shared_name" : "23431 (interacts with) 2760", "name" : "23431 (interacts with) 2760", "interaction" : "interacts with", "SUID" : 24454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24450", "source" : "4813", "target" : "1193", "shared_name" : "23431 (interacts with) 5660", "name" : "23431 (interacts with) 5660", "interaction" : "interacts with", "SUID" : 24450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24446", "source" : "4813", "target" : "1261", "shared_name" : "23431 (interacts with) 57192", "name" : "23431 (interacts with) 57192", "interaction" : "interacts with", "SUID" : 24446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24442", "source" : "4813", "target" : "5937", "shared_name" : "23431 (interacts with) 8120", "name" : "23431 (interacts with) 8120", "interaction" : "interacts with", "SUID" : 24442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24438", "source" : "4813", "target" : "3693", "shared_name" : "23431 (interacts with) 8943", "name" : "23431 (interacts with) 8943", "interaction" : "interacts with", "SUID" : 24438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24434", "source" : "4813", "target" : "1677", "shared_name" : "23431 (interacts with) 8905", "name" : "23431 (interacts with) 8905", "interaction" : "interacts with", "SUID" : 24434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24430", "source" : "4813", "target" : "2233", "shared_name" : "23431 (interacts with) 9516", "name" : "23431 (interacts with) 9516", "interaction" : "interacts with", "SUID" : 24430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24426", "source" : "4813", "target" : "4393", "shared_name" : "23431 (interacts with) 950", "name" : "23431 (interacts with) 950", "interaction" : "interacts with", "SUID" : 24426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24422", "source" : "4813", "target" : "1309", "shared_name" : "23431 (interacts with) 9698", "name" : "23431 (interacts with) 9698", "interaction" : "interacts with", "SUID" : 24422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24418", "source" : "4813", "target" : "4441", "shared_name" : "23431 (interacts with) 1213", "name" : "23431 (interacts with) 1213", "interaction" : "interacts with", "SUID" : 24418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24414", "source" : "4813", "target" : "3981", "shared_name" : "23431 (interacts with) 1785", "name" : "23431 (interacts with) 1785", "interaction" : "interacts with", "SUID" : 24414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24410", "source" : "4813", "target" : "3273", "shared_name" : "23431 (interacts with) 351", "name" : "23431 (interacts with) 351", "interaction" : "interacts with", "SUID" : 24410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24406", "source" : "4813", "target" : "1225", "shared_name" : "23431 (interacts with) 375", "name" : "23431 (interacts with) 375", "interaction" : "interacts with", "SUID" : 24406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24402", "source" : "4813", "target" : "4849", "shared_name" : "23431 (interacts with) 11154", "name" : "23431 (interacts with) 11154", "interaction" : "interacts with", "SUID" : 24402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24398", "source" : "4813", "target" : "1445", "shared_name" : "23431 (interacts with) 9179", "name" : "23431 (interacts with) 9179", "interaction" : "interacts with", "SUID" : 24398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24394", "source" : "4813", "target" : "4997", "shared_name" : "23431 (interacts with) 54820", "name" : "23431 (interacts with) 54820", "interaction" : "interacts with", "SUID" : 24394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24498", "source" : "4809", "target" : "3813", "shared_name" : "3481 (interacts with) 3483", "name" : "3481 (interacts with) 3483", "interaction" : "interacts with", "SUID" : 24498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24494", "source" : "4809", "target" : "4885", "shared_name" : "3481 (interacts with) 5340", "name" : "3481 (interacts with) 5340", "interaction" : "interacts with", "SUID" : 24494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24490", "source" : "4809", "target" : "3437", "shared_name" : "3481 (interacts with) 4312", "name" : "3481 (interacts with) 4312", "interaction" : "interacts with", "SUID" : 24490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24486", "source" : "4809", "target" : "1181", "shared_name" : "3481 (interacts with) 51684", "name" : "3481 (interacts with) 51684", "interaction" : "interacts with", "SUID" : 24486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24482", "source" : "4809", "target" : "5917", "shared_name" : "3481 (interacts with) 4287", "name" : "3481 (interacts with) 4287", "interaction" : "interacts with", "SUID" : 24482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24478", "source" : "4809", "target" : "865", "shared_name" : "3481 (interacts with) 3480", "name" : "3481 (interacts with) 3480", "interaction" : "interacts with", "SUID" : 24478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24474", "source" : "4809", "target" : "705", "shared_name" : "3481 (interacts with) 728378", "name" : "3481 (interacts with) 728378", "interaction" : "interacts with", "SUID" : 24474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24470", "source" : "4809", "target" : "2101", "shared_name" : "3481 (interacts with) 3486", "name" : "3481 (interacts with) 3486", "interaction" : "interacts with", "SUID" : 24470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24758", "source" : "4805", "target" : "2029", "shared_name" : "18 (interacts with) 4329", "name" : "18 (interacts with) 4329", "interaction" : "interacts with", "SUID" : 24758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24754", "source" : "4805", "target" : "1341", "shared_name" : "18 (interacts with) 5009", "name" : "18 (interacts with) 5009", "interaction" : "interacts with", "SUID" : 24754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24750", "source" : "4805", "target" : "2205", "shared_name" : "18 (interacts with) 2571", "name" : "18 (interacts with) 2571", "interaction" : "interacts with", "SUID" : 24750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24746", "source" : "4805", "target" : "5565", "shared_name" : "18 (interacts with) 217", "name" : "18 (interacts with) 217", "interaction" : "interacts with", "SUID" : 24746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24742", "source" : "4805", "target" : "2925", "shared_name" : "18 (interacts with) 8802", "name" : "18 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 24742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24738", "source" : "4805", "target" : "3425", "shared_name" : "18 (interacts with) 8803", "name" : "18 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 24738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24734", "source" : "4805", "target" : "2025", "shared_name" : "18 (interacts with) 549", "name" : "18 (interacts with) 549", "interaction" : "interacts with", "SUID" : 24734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24730", "source" : "4805", "target" : "485", "shared_name" : "18 (interacts with) 593", "name" : "18 (interacts with) 593", "interaction" : "interacts with", "SUID" : 24730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24726", "source" : "4805", "target" : "493", "shared_name" : "18 (interacts with) 594", "name" : "18 (interacts with) 594", "interaction" : "interacts with", "SUID" : 24726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24722", "source" : "4805", "target" : "2177", "shared_name" : "18 (interacts with) 443", "name" : "18 (interacts with) 443", "interaction" : "interacts with", "SUID" : 24722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24718", "source" : "4805", "target" : "5529", "shared_name" : "18 (interacts with) 2875", "name" : "18 (interacts with) 2875", "interaction" : "interacts with", "SUID" : 24718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24714", "source" : "4805", "target" : "4737", "shared_name" : "18 (interacts with) 445", "name" : "18 (interacts with) 445", "interaction" : "interacts with", "SUID" : 24714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24710", "source" : "4805", "target" : "4253", "shared_name" : "18 (interacts with) 84706", "name" : "18 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 24710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24706", "source" : "4805", "target" : "1981", "shared_name" : "18 (interacts with) 339983", "name" : "18 (interacts with) 339983", "interaction" : "interacts with", "SUID" : 24706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24702", "source" : "4805", "target" : "5349", "shared_name" : "18 (interacts with) 440", "name" : "18 (interacts with) 440", "interaction" : "interacts with", "SUID" : 24702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24698", "source" : "4805", "target" : "1189", "shared_name" : "18 (interacts with) 7915", "name" : "18 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 24698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24694", "source" : "4805", "target" : "413", "shared_name" : "18 (interacts with) 51733", "name" : "18 (interacts with) 51733", "interaction" : "interacts with", "SUID" : 24694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24690", "source" : "4805", "target" : "1721", "shared_name" : "18 (interacts with) 51807", "name" : "18 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 24690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24686", "source" : "4805", "target" : "1013", "shared_name" : "18 (interacts with) 6898", "name" : "18 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 24686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24682", "source" : "4805", "target" : "4185", "shared_name" : "18 (interacts with) 29968", "name" : "18 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 24682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24678", "source" : "4805", "target" : "977", "shared_name" : "18 (interacts with) 79944", "name" : "18 (interacts with) 79944", "interaction" : "interacts with", "SUID" : 24678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24674", "source" : "4805", "target" : "3537", "shared_name" : "18 (interacts with) 501", "name" : "18 (interacts with) 501", "interaction" : "interacts with", "SUID" : 24674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24670", "source" : "4805", "target" : "3421", "shared_name" : "18 (interacts with) 4967", "name" : "18 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 24670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24666", "source" : "4805", "target" : "461", "shared_name" : "18 (interacts with) 5198", "name" : "18 (interacts with) 5198", "interaction" : "interacts with", "SUID" : 24666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24662", "source" : "4805", "target" : "3445", "shared_name" : "18 (interacts with) 5091", "name" : "18 (interacts with) 5091", "interaction" : "interacts with", "SUID" : 24662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24658", "source" : "4805", "target" : "741", "shared_name" : "18 (interacts with) 4830", "name" : "18 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 24658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24654", "source" : "4805", "target" : "5017", "shared_name" : "18 (interacts with) 3417", "name" : "18 (interacts with) 3417", "interaction" : "interacts with", "SUID" : 24654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24650", "source" : "4805", "target" : "4749", "shared_name" : "18 (interacts with) 3028", "name" : "18 (interacts with) 3028", "interaction" : "interacts with", "SUID" : 24650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24646", "source" : "4805", "target" : "4093", "shared_name" : "18 (interacts with) 2752", "name" : "18 (interacts with) 2752", "interaction" : "interacts with", "SUID" : 24646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24642", "source" : "4805", "target" : "625", "shared_name" : "18 (interacts with) 8942", "name" : "18 (interacts with) 8942", "interaction" : "interacts with", "SUID" : 24642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24638", "source" : "4805", "target" : "1133", "shared_name" : "18 (interacts with) 3418", "name" : "18 (interacts with) 3418", "interaction" : "interacts with", "SUID" : 24638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24634", "source" : "4805", "target" : "4261", "shared_name" : "18 (interacts with) 124454", "name" : "18 (interacts with) 124454", "interaction" : "interacts with", "SUID" : 24634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24630", "source" : "4805", "target" : "5109", "shared_name" : "18 (interacts with) 790", "name" : "18 (interacts with) 790", "interaction" : "interacts with", "SUID" : 24630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24626", "source" : "4805", "target" : "4189", "shared_name" : "18 (interacts with) 2744", "name" : "18 (interacts with) 2744", "interaction" : "interacts with", "SUID" : 24626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24622", "source" : "4805", "target" : "2421", "shared_name" : "18 (interacts with) 2673", "name" : "18 (interacts with) 2673", "interaction" : "interacts with", "SUID" : 24622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24618", "source" : "4805", "target" : "1885", "shared_name" : "18 (interacts with) 8604", "name" : "18 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 24618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24614", "source" : "4805", "target" : "1485", "shared_name" : "18 (interacts with) 8050", "name" : "18 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 24614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24610", "source" : "4805", "target" : "1869", "shared_name" : "18 (interacts with) 4729", "name" : "18 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 24610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24606", "source" : "4805", "target" : "2989", "shared_name" : "18 (interacts with) 224", "name" : "18 (interacts with) 224", "interaction" : "interacts with", "SUID" : 24606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24602", "source" : "4805", "target" : "1461", "shared_name" : "18 (interacts with) 5832", "name" : "18 (interacts with) 5832", "interaction" : "interacts with", "SUID" : 24602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24598", "source" : "4805", "target" : "3237", "shared_name" : "18 (interacts with) 95", "name" : "18 (interacts with) 95", "interaction" : "interacts with", "SUID" : 24598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24594", "source" : "4805", "target" : "1749", "shared_name" : "18 (interacts with) 728294", "name" : "18 (interacts with) 728294", "interaction" : "interacts with", "SUID" : 24594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24590", "source" : "4805", "target" : "2721", "shared_name" : "18 (interacts with) 79751", "name" : "18 (interacts with) 79751", "interaction" : "interacts with", "SUID" : 24590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24586", "source" : "4805", "target" : "2689", "shared_name" : "18 (interacts with) 4715", "name" : "18 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 24586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24582", "source" : "4805", "target" : "5845", "shared_name" : "18 (interacts with) 4714", "name" : "18 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 24582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24578", "source" : "4805", "target" : "5853", "shared_name" : "18 (interacts with) 4709", "name" : "18 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 24578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24574", "source" : "4805", "target" : "2797", "shared_name" : "18 (interacts with) 4728", "name" : "18 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 24574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24570", "source" : "4805", "target" : "5833", "shared_name" : "18 (interacts with) 4726", "name" : "18 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 24570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24566", "source" : "4805", "target" : "5821", "shared_name" : "18 (interacts with) 4724", "name" : "18 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 24566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24562", "source" : "4805", "target" : "4945", "shared_name" : "18 (interacts with) 4722", "name" : "18 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 24562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24558", "source" : "4805", "target" : "4017", "shared_name" : "18 (interacts with) 4719", "name" : "18 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 24558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24554", "source" : "4805", "target" : "2741", "shared_name" : "18 (interacts with) 4695", "name" : "18 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 24554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24550", "source" : "4805", "target" : "5857", "shared_name" : "18 (interacts with) 4694", "name" : "18 (interacts with) 4694", "interaction" : "interacts with", "SUID" : 24550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24546", "source" : "4805", "target" : "2757", "shared_name" : "18 (interacts with) 51079", "name" : "18 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 24546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24542", "source" : "4805", "target" : "5553", "shared_name" : "18 (interacts with) 55967", "name" : "18 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 24542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24538", "source" : "4805", "target" : "3617", "shared_name" : "18 (interacts with) 4704", "name" : "18 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 24538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24534", "source" : "4805", "target" : "2801", "shared_name" : "18 (interacts with) 4700", "name" : "18 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 24534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24530", "source" : "4805", "target" : "1489", "shared_name" : "18 (interacts with) 1738", "name" : "18 (interacts with) 1738", "interaction" : "interacts with", "SUID" : 24530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24526", "source" : "4805", "target" : "5173", "shared_name" : "18 (interacts with) 1718", "name" : "18 (interacts with) 1718", "interaction" : "interacts with", "SUID" : 24526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24522", "source" : "4805", "target" : "397", "shared_name" : "18 (interacts with) 50", "name" : "18 (interacts with) 50", "interaction" : "interacts with", "SUID" : 24522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24518", "source" : "4805", "target" : "3757", "shared_name" : "18 (interacts with) 215", "name" : "18 (interacts with) 215", "interaction" : "interacts with", "SUID" : 24518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24514", "source" : "4805", "target" : "2825", "shared_name" : "18 (interacts with) 126328", "name" : "18 (interacts with) 126328", "interaction" : "interacts with", "SUID" : 24514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24510", "source" : "4805", "target" : "4061", "shared_name" : "18 (interacts with) 4705", "name" : "18 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 24510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24506", "source" : "4805", "target" : "2089", "shared_name" : "18 (interacts with) 3939", "name" : "18 (interacts with) 3939", "interaction" : "interacts with", "SUID" : 24506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24502", "source" : "4805", "target" : "4489", "shared_name" : "18 (interacts with) 2222", "name" : "18 (interacts with) 2222", "interaction" : "interacts with", "SUID" : 24502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24770", "source" : "4801", "target" : "1729", "shared_name" : "51053 (interacts with) 5111", "name" : "51053 (interacts with) 5111", "interaction" : "interacts with", "SUID" : 24770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24766", "source" : "4801", "target" : "1081", "shared_name" : "51053 (interacts with) 80169", "name" : "51053 (interacts with) 80169", "interaction" : "interacts with", "SUID" : 24766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24762", "source" : "4801", "target" : "965", "shared_name" : "51053 (interacts with) 79991", "name" : "51053 (interacts with) 79991", "interaction" : "interacts with", "SUID" : 24762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24786", "source" : "4797", "target" : "1329", "shared_name" : "10735 (interacts with) 26277", "name" : "10735 (interacts with) 26277", "interaction" : "interacts with", "SUID" : 24786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24782", "source" : "4797", "target" : "629", "shared_name" : "10735 (interacts with) 7013", "name" : "10735 (interacts with) 7013", "interaction" : "interacts with", "SUID" : 24782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24778", "source" : "4797", "target" : "3789", "shared_name" : "10735 (interacts with) 23345", "name" : "10735 (interacts with) 23345", "interaction" : "interacts with", "SUID" : 24778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24774", "source" : "4797", "target" : "877", "shared_name" : "10735 (interacts with) 7341", "name" : "10735 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 24774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24950", "source" : "4793", "target" : "4869", "shared_name" : "478 (interacts with) 92935", "name" : "478 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 24950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24946", "source" : "4793", "target" : "781", "shared_name" : "478 (interacts with) 4860", "name" : "478 (interacts with) 4860", "interaction" : "interacts with", "SUID" : 24946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24942", "source" : "4793", "target" : "5029", "shared_name" : "478 (interacts with) 4842", "name" : "478 (interacts with) 4842", "interaction" : "interacts with", "SUID" : 24942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24938", "source" : "4793", "target" : "4665", "shared_name" : "478 (interacts with) 538", "name" : "478 (interacts with) 538", "interaction" : "interacts with", "SUID" : 24938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24934", "source" : "4793", "target" : "3853", "shared_name" : "478 (interacts with) 6786", "name" : "478 (interacts with) 6786", "interaction" : "interacts with", "SUID" : 24934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24930", "source" : "4793", "target" : "3773", "shared_name" : "478 (interacts with) 540", "name" : "478 (interacts with) 540", "interaction" : "interacts with", "SUID" : 24930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24926", "source" : "4793", "target" : "441", "shared_name" : "478 (interacts with) 51761", "name" : "478 (interacts with) 51761", "interaction" : "interacts with", "SUID" : 24926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24922", "source" : "4793", "target" : "1809", "shared_name" : "478 (interacts with) 6548", "name" : "478 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 24922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24918", "source" : "4793", "target" : "3601", "shared_name" : "478 (interacts with) 6531", "name" : "478 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 24918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24914", "source" : "4793", "target" : "401", "shared_name" : "478 (interacts with) 6532", "name" : "478 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 24914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24910", "source" : "4793", "target" : "3781", "shared_name" : "478 (interacts with) 9152", "name" : "478 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 24910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24906", "source" : "4793", "target" : "5877", "shared_name" : "478 (interacts with) 6535", "name" : "478 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 24906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24902", "source" : "4793", "target" : "309", "shared_name" : "478 (interacts with) 6536", "name" : "478 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 24902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24898", "source" : "4793", "target" : "2877", "shared_name" : "478 (interacts with) 340024", "name" : "478 (interacts with) 340024", "interaction" : "interacts with", "SUID" : 24898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24894", "source" : "4793", "target" : "3473", "shared_name" : "478 (interacts with) 6528", "name" : "478 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 24894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24890", "source" : "4793", "target" : "1385", "shared_name" : "478 (interacts with) 6520", "name" : "478 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 24890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24886", "source" : "4793", "target" : "5805", "shared_name" : "478 (interacts with) 6575", "name" : "478 (interacts with) 6575", "interaction" : "interacts with", "SUID" : 24886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24882", "source" : "4793", "target" : "6009", "shared_name" : "478 (interacts with) 64849", "name" : "478 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 24882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24878", "source" : "4793", "target" : "4025", "shared_name" : "478 (interacts with) 284111", "name" : "478 (interacts with) 284111", "interaction" : "interacts with", "SUID" : 24878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24874", "source" : "4793", "target" : "3077", "shared_name" : "478 (interacts with) 6506", "name" : "478 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 24874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24870", "source" : "4793", "target" : "3969", "shared_name" : "478 (interacts with) 57468", "name" : "478 (interacts with) 57468", "interaction" : "interacts with", "SUID" : 24870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24866", "source" : "4793", "target" : "1681", "shared_name" : "478 (interacts with) 9990", "name" : "478 (interacts with) 9990", "interaction" : "interacts with", "SUID" : 24866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24862", "source" : "4793", "target" : "5729", "shared_name" : "478 (interacts with) 861", "name" : "478 (interacts with) 861", "interaction" : "interacts with", "SUID" : 24862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24858", "source" : "4793", "target" : "1521", "shared_name" : "478 (interacts with) 84879", "name" : "478 (interacts with) 84879", "interaction" : "interacts with", "SUID" : 24858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24854", "source" : "4793", "target" : "1945", "shared_name" : "478 (interacts with) 3785", "name" : "478 (interacts with) 3785", "interaction" : "interacts with", "SUID" : 24854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24850", "source" : "4793", "target" : "2941", "shared_name" : "478 (interacts with) 3778", "name" : "478 (interacts with) 3778", "interaction" : "interacts with", "SUID" : 24850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24846", "source" : "4793", "target" : "5789", "shared_name" : "478 (interacts with) 3759", "name" : "478 (interacts with) 3759", "interaction" : "interacts with", "SUID" : 24846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24842", "source" : "4793", "target" : "1481", "shared_name" : "478 (interacts with) 3763", "name" : "478 (interacts with) 3763", "interaction" : "interacts with", "SUID" : 24842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24838", "source" : "4793", "target" : "1041", "shared_name" : "478 (interacts with) 3766", "name" : "478 (interacts with) 3766", "interaction" : "interacts with", "SUID" : 24838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24834", "source" : "4793", "target" : "5913", "shared_name" : "478 (interacts with) 3767", "name" : "478 (interacts with) 3767", "interaction" : "interacts with", "SUID" : 24834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24830", "source" : "4793", "target" : "5517", "shared_name" : "478 (interacts with) 8514", "name" : "478 (interacts with) 8514", "interaction" : "interacts with", "SUID" : 24830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24826", "source" : "4793", "target" : "1805", "shared_name" : "478 (interacts with) 3738", "name" : "478 (interacts with) 3738", "interaction" : "interacts with", "SUID" : 24826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24822", "source" : "4793", "target" : "513", "shared_name" : "478 (interacts with) 348980", "name" : "478 (interacts with) 348980", "interaction" : "interacts with", "SUID" : 24822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24818", "source" : "4793", "target" : "3449", "shared_name" : "478 (interacts with) 9568", "name" : "478 (interacts with) 9568", "interaction" : "interacts with", "SUID" : 24818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24814", "source" : "4793", "target" : "993", "shared_name" : "478 (interacts with) 801", "name" : "478 (interacts with) 801", "interaction" : "interacts with", "SUID" : 24814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24810", "source" : "4793", "target" : "2321", "shared_name" : "478 (interacts with) 6509", "name" : "478 (interacts with) 6509", "interaction" : "interacts with", "SUID" : 24810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24806", "source" : "4793", "target" : "2413", "shared_name" : "478 (interacts with) 50484", "name" : "478 (interacts with) 50484", "interaction" : "interacts with", "SUID" : 24806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24802", "source" : "4793", "target" : "2621", "shared_name" : "478 (interacts with) 477", "name" : "478 (interacts with) 477", "interaction" : "interacts with", "SUID" : 24802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24798", "source" : "4793", "target" : "2645", "shared_name" : "478 (interacts with) 476", "name" : "478 (interacts with) 476", "interaction" : "interacts with", "SUID" : 24798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24794", "source" : "4793", "target" : "2721", "shared_name" : "478 (interacts with) 79751", "name" : "478 (interacts with) 79751", "interaction" : "interacts with", "SUID" : 24794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24790", "source" : "4793", "target" : "4973", "shared_name" : "478 (interacts with) 1910", "name" : "478 (interacts with) 1910", "interaction" : "interacts with", "SUID" : 24790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25006", "source" : "4789", "target" : "2173", "shared_name" : "1284 (interacts with) 5159", "name" : "1284 (interacts with) 5159", "interaction" : "interacts with", "SUID" : 25006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25002", "source" : "4789", "target" : "945", "shared_name" : "1284 (interacts with) 2316", "name" : "1284 (interacts with) 2316", "interaction" : "interacts with", "SUID" : 25002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24998", "source" : "4789", "target" : "265", "shared_name" : "1284 (interacts with) 1293", "name" : "1284 (interacts with) 1293", "interaction" : "interacts with", "SUID" : 24998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24994", "source" : "4789", "target" : "1497", "shared_name" : "1284 (interacts with) 3912", "name" : "1284 (interacts with) 3912", "interaction" : "interacts with", "SUID" : 24994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24990", "source" : "4789", "target" : "1549", "shared_name" : "1284 (interacts with) 7070", "name" : "1284 (interacts with) 7070", "interaction" : "interacts with", "SUID" : 24990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24986", "source" : "4789", "target" : "4885", "shared_name" : "1284 (interacts with) 5340", "name" : "1284 (interacts with) 5340", "interaction" : "interacts with", "SUID" : 24986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24982", "source" : "4789", "target" : "3273", "shared_name" : "1284 (interacts with) 351", "name" : "1284 (interacts with) 351", "interaction" : "interacts with", "SUID" : 24982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24978", "source" : "4789", "target" : "2185", "shared_name" : "1284 (interacts with) 1636", "name" : "1284 (interacts with) 1636", "interaction" : "interacts with", "SUID" : 24978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24974", "source" : "4789", "target" : "1433", "shared_name" : "1284 (interacts with) 6515", "name" : "1284 (interacts with) 6515", "interaction" : "interacts with", "SUID" : 24974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24970", "source" : "4789", "target" : "3481", "shared_name" : "1284 (interacts with) 6513", "name" : "1284 (interacts with) 6513", "interaction" : "interacts with", "SUID" : 24970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24966", "source" : "4789", "target" : "4109", "shared_name" : "1284 (interacts with) 6696", "name" : "1284 (interacts with) 6696", "interaction" : "interacts with", "SUID" : 24966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24962", "source" : "4789", "target" : "5973", "shared_name" : "1284 (interacts with) 5155", "name" : "1284 (interacts with) 5155", "interaction" : "interacts with", "SUID" : 24962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24958", "source" : "4789", "target" : "2197", "shared_name" : "1284 (interacts with) 4684", "name" : "1284 (interacts with) 4684", "interaction" : "interacts with", "SUID" : 24958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "24954", "source" : "4789", "target" : "4001", "shared_name" : "1284 (interacts with) 79709", "name" : "1284 (interacts with) 79709", "interaction" : "interacts with", "SUID" : 24954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25074", "source" : "4785", "target" : "1505", "shared_name" : "1282 (interacts with) 26353", "name" : "1282 (interacts with) 26353", "interaction" : "interacts with", "SUID" : 25074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25070", "source" : "4785", "target" : "6093", "shared_name" : "1282 (interacts with) 953", "name" : "1282 (interacts with) 953", "interaction" : "interacts with", "SUID" : 25070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25066", "source" : "4785", "target" : "265", "shared_name" : "1282 (interacts with) 1293", "name" : "1282 (interacts with) 1293", "interaction" : "interacts with", "SUID" : 25066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25062", "source" : "4785", "target" : "809", "shared_name" : "1282 (interacts with) 2335", "name" : "1282 (interacts with) 2335", "interaction" : "interacts with", "SUID" : 25062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25058", "source" : "4785", "target" : "1297", "shared_name" : "1282 (interacts with) 6678", "name" : "1282 (interacts with) 6678", "interaction" : "interacts with", "SUID" : 25058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25054", "source" : "4785", "target" : "1549", "shared_name" : "1282 (interacts with) 7070", "name" : "1282 (interacts with) 7070", "interaction" : "interacts with", "SUID" : 25054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25050", "source" : "4785", "target" : "1497", "shared_name" : "1282 (interacts with) 3912", "name" : "1282 (interacts with) 3912", "interaction" : "interacts with", "SUID" : 25050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25046", "source" : "4785", "target" : "4885", "shared_name" : "1282 (interacts with) 5340", "name" : "1282 (interacts with) 5340", "interaction" : "interacts with", "SUID" : 25046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25042", "source" : "4785", "target" : "3273", "shared_name" : "1282 (interacts with) 351", "name" : "1282 (interacts with) 351", "interaction" : "interacts with", "SUID" : 25042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25038", "source" : "4785", "target" : "2185", "shared_name" : "1282 (interacts with) 1636", "name" : "1282 (interacts with) 1636", "interaction" : "interacts with", "SUID" : 25038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25034", "source" : "4785", "target" : "3481", "shared_name" : "1282 (interacts with) 6513", "name" : "1282 (interacts with) 6513", "interaction" : "interacts with", "SUID" : 25034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25030", "source" : "4785", "target" : "1433", "shared_name" : "1282 (interacts with) 6515", "name" : "1282 (interacts with) 6515", "interaction" : "interacts with", "SUID" : 25030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25026", "source" : "4785", "target" : "4109", "shared_name" : "1282 (interacts with) 6696", "name" : "1282 (interacts with) 6696", "interaction" : "interacts with", "SUID" : 25026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25022", "source" : "4785", "target" : "5973", "shared_name" : "1282 (interacts with) 5155", "name" : "1282 (interacts with) 5155", "interaction" : "interacts with", "SUID" : 25022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25018", "source" : "4785", "target" : "2197", "shared_name" : "1282 (interacts with) 4684", "name" : "1282 (interacts with) 4684", "interaction" : "interacts with", "SUID" : 25018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25014", "source" : "4785", "target" : "4001", "shared_name" : "1282 (interacts with) 79709", "name" : "1282 (interacts with) 79709", "interaction" : "interacts with", "SUID" : 25014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25010", "source" : "4785", "target" : "4789", "shared_name" : "1282 (interacts with) 1284", "name" : "1282 (interacts with) 1284", "interaction" : "interacts with", "SUID" : 25010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25098", "source" : "4781", "target" : "4161", "shared_name" : "80781 (interacts with) 4318", "name" : "80781 (interacts with) 4318", "interaction" : "interacts with", "SUID" : 25098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25094", "source" : "4781", "target" : "2961", "shared_name" : "80781 (interacts with) 4314", "name" : "80781 (interacts with) 4314", "interaction" : "interacts with", "SUID" : 25094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25090", "source" : "4781", "target" : "1497", "shared_name" : "80781 (interacts with) 3912", "name" : "80781 (interacts with) 3912", "interaction" : "interacts with", "SUID" : 25090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25086", "source" : "4781", "target" : "2861", "shared_name" : "80781 (interacts with) 284217", "name" : "80781 (interacts with) 284217", "interaction" : "interacts with", "SUID" : 25086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25082", "source" : "4781", "target" : "1441", "shared_name" : "80781 (interacts with) 1509", "name" : "80781 (interacts with) 1509", "interaction" : "interacts with", "SUID" : 25082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25078", "source" : "4781", "target" : "4001", "shared_name" : "80781 (interacts with) 79709", "name" : "80781 (interacts with) 79709", "interaction" : "interacts with", "SUID" : 25078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25122", "source" : "4777", "target" : "721", "shared_name" : "2632 (interacts with) 79731", "name" : "2632 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 25122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25118", "source" : "4777", "target" : "1713", "shared_name" : "2632 (interacts with) 5631", "name" : "2632 (interacts with) 5631", "interaction" : "interacts with", "SUID" : 25118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25114", "source" : "4777", "target" : "1257", "shared_name" : "2632 (interacts with) 3098", "name" : "2632 (interacts with) 3098", "interaction" : "interacts with", "SUID" : 25114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25110", "source" : "4777", "target" : "3161", "shared_name" : "2632 (interacts with) 2821", "name" : "2632 (interacts with) 2821", "interaction" : "interacts with", "SUID" : 25110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25106", "source" : "4777", "target" : "1385", "shared_name" : "2632 (interacts with) 6520", "name" : "2632 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 25106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25102", "source" : "4777", "target" : "4161", "shared_name" : "2632 (interacts with) 4318", "name" : "2632 (interacts with) 4318", "interaction" : "interacts with", "SUID" : 25102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25130", "source" : "4773", "target" : "6145", "shared_name" : "90624 (interacts with) 93627", "name" : "90624 (interacts with) 93627", "interaction" : "interacts with", "SUID" : 25130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25126", "source" : "4773", "target" : "3445", "shared_name" : "90624 (interacts with) 5091", "name" : "90624 (interacts with) 5091", "interaction" : "interacts with", "SUID" : 25126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25186", "source" : "4769", "target" : "981", "shared_name" : "7132 (interacts with) 7157", "name" : "7132 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 25186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25182", "source" : "4769", "target" : "1845", "shared_name" : "7132 (interacts with) 836", "name" : "7132 (interacts with) 836", "interaction" : "interacts with", "SUID" : 25182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25178", "source" : "4769", "target" : "3021", "shared_name" : "7132 (interacts with) 84823", "name" : "7132 (interacts with) 84823", "interaction" : "interacts with", "SUID" : 25178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25174", "source" : "4769", "target" : "6117", "shared_name" : "7132 (interacts with) 9131", "name" : "7132 (interacts with) 9131", "interaction" : "interacts with", "SUID" : 25174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25170", "source" : "4769", "target" : "877", "shared_name" : "7132 (interacts with) 7341", "name" : "7132 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 25170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25166", "source" : "4769", "target" : "2069", "shared_name" : "7132 (interacts with) 84106", "name" : "7132 (interacts with) 84106", "interaction" : "interacts with", "SUID" : 25166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25162", "source" : "4769", "target" : "2033", "shared_name" : "7132 (interacts with) 8741", "name" : "7132 (interacts with) 8741", "interaction" : "interacts with", "SUID" : 25162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25158", "source" : "4769", "target" : "829", "shared_name" : "7132 (interacts with) 8772", "name" : "7132 (interacts with) 8772", "interaction" : "interacts with", "SUID" : 25158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25154", "source" : "4769", "target" : "4565", "shared_name" : "7132 (interacts with) 57498", "name" : "7132 (interacts with) 57498", "interaction" : "interacts with", "SUID" : 25154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25150", "source" : "4769", "target" : "2541", "shared_name" : "7132 (interacts with) 56704", "name" : "7132 (interacts with) 56704", "interaction" : "interacts with", "SUID" : 25150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25146", "source" : "4769", "target" : "1177", "shared_name" : "7132 (interacts with) 9928", "name" : "7132 (interacts with) 9928", "interaction" : "interacts with", "SUID" : 25146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25142", "source" : "4769", "target" : "4853", "shared_name" : "7132 (interacts with) 545", "name" : "7132 (interacts with) 545", "interaction" : "interacts with", "SUID" : 25142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25138", "source" : "4769", "target" : "5345", "shared_name" : "7132 (interacts with) 9213", "name" : "7132 (interacts with) 9213", "interaction" : "interacts with", "SUID" : 25138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25134", "source" : "4769", "target" : "4065", "shared_name" : "7132 (interacts with) 7124", "name" : "7132 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 25134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25190", "source" : "4765", "target" : "981", "shared_name" : "7015 (interacts with) 7157", "name" : "7015 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 25190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25194", "source" : "4757", "target" : "981", "shared_name" : "9997 (interacts with) 7157", "name" : "9997 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 25194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25262", "source" : "4749", "target" : "2925", "shared_name" : "3028 (interacts with) 8802", "name" : "3028 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 25262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25258", "source" : "4749", "target" : "4273", "shared_name" : "3028 (interacts with) 4548", "name" : "3028 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 25258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25254", "source" : "4749", "target" : "4869", "shared_name" : "3028 (interacts with) 92935", "name" : "3028 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 25254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25250", "source" : "4749", "target" : "3641", "shared_name" : "3028 (interacts with) 4141", "name" : "3028 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 25250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25246", "source" : "4749", "target" : "4941", "shared_name" : "3028 (interacts with) 6342", "name" : "3028 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 25246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25242", "source" : "4749", "target" : "3633", "shared_name" : "3028 (interacts with) 51067", "name" : "3028 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 25242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25238", "source" : "4749", "target" : "4113", "shared_name" : "3028 (interacts with) 60528", "name" : "3028 (interacts with) 60528", "interaction" : "interacts with", "SUID" : 25238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25234", "source" : "4749", "target" : "4745", "shared_name" : "3028 (interacts with) 35", "name" : "3028 (interacts with) 35", "interaction" : "interacts with", "SUID" : 25234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25230", "source" : "4749", "target" : "493", "shared_name" : "3028 (interacts with) 594", "name" : "3028 (interacts with) 594", "interaction" : "interacts with", "SUID" : 25230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25226", "source" : "4749", "target" : "485", "shared_name" : "3028 (interacts with) 593", "name" : "3028 (interacts with) 593", "interaction" : "interacts with", "SUID" : 25226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25222", "source" : "4749", "target" : "293", "shared_name" : "3028 (interacts with) 54802", "name" : "3028 (interacts with) 54802", "interaction" : "interacts with", "SUID" : 25222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25218", "source" : "4749", "target" : "2029", "shared_name" : "3028 (interacts with) 4329", "name" : "3028 (interacts with) 4329", "interaction" : "interacts with", "SUID" : 25218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25214", "source" : "4749", "target" : "2025", "shared_name" : "3028 (interacts with) 549", "name" : "3028 (interacts with) 549", "interaction" : "interacts with", "SUID" : 25214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25210", "source" : "4749", "target" : "1721", "shared_name" : "3028 (interacts with) 51807", "name" : "3028 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 25210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25206", "source" : "4749", "target" : "1525", "shared_name" : "3028 (interacts with) 3295", "name" : "3028 (interacts with) 3295", "interaction" : "interacts with", "SUID" : 25206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25202", "source" : "4749", "target" : "5165", "shared_name" : "3028 (interacts with) 3704", "name" : "3028 (interacts with) 3704", "interaction" : "interacts with", "SUID" : 25202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25198", "source" : "4749", "target" : "2045", "shared_name" : "3028 (interacts with) 51102", "name" : "3028 (interacts with) 51102", "interaction" : "interacts with", "SUID" : 25198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25410", "source" : "4745", "target" : "3445", "shared_name" : "35 (interacts with) 5091", "name" : "35 (interacts with) 5091", "interaction" : "interacts with", "SUID" : 25410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25406", "source" : "4745", "target" : "4941", "shared_name" : "35 (interacts with) 6342", "name" : "35 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 25406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25402", "source" : "4745", "target" : "721", "shared_name" : "35 (interacts with) 79731", "name" : "35 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 25402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25398", "source" : "4745", "target" : "4737", "shared_name" : "35 (interacts with) 445", "name" : "35 (interacts with) 445", "interaction" : "interacts with", "SUID" : 25398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25394", "source" : "4745", "target" : "2029", "shared_name" : "35 (interacts with) 4329", "name" : "35 (interacts with) 4329", "interaction" : "interacts with", "SUID" : 25394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25390", "source" : "4745", "target" : "485", "shared_name" : "35 (interacts with) 593", "name" : "35 (interacts with) 593", "interaction" : "interacts with", "SUID" : 25390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25386", "source" : "4745", "target" : "5825", "shared_name" : "35 (interacts with) 4594", "name" : "35 (interacts with) 4594", "interaction" : "interacts with", "SUID" : 25386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25382", "source" : "4745", "target" : "5593", "shared_name" : "35 (interacts with) 875", "name" : "35 (interacts with) 875", "interaction" : "interacts with", "SUID" : 25382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25378", "source" : "4745", "target" : "1301", "shared_name" : "35 (interacts with) 5095", "name" : "35 (interacts with) 5095", "interaction" : "interacts with", "SUID" : 25378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25374", "source" : "4745", "target" : "493", "shared_name" : "35 (interacts with) 594", "name" : "35 (interacts with) 594", "interaction" : "interacts with", "SUID" : 25374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25370", "source" : "4745", "target" : "1189", "shared_name" : "35 (interacts with) 7915", "name" : "35 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 25370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25366", "source" : "4745", "target" : "1749", "shared_name" : "35 (interacts with) 728294", "name" : "35 (interacts with) 728294", "interaction" : "interacts with", "SUID" : 25366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25362", "source" : "4745", "target" : "977", "shared_name" : "35 (interacts with) 79944", "name" : "35 (interacts with) 79944", "interaction" : "interacts with", "SUID" : 25362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25358", "source" : "4745", "target" : "305", "shared_name" : "35 (interacts with) 79644", "name" : "35 (interacts with) 79644", "interaction" : "interacts with", "SUID" : 25358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25354", "source" : "4745", "target" : "5025", "shared_name" : "35 (interacts with) 6389", "name" : "35 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 25354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25350", "source" : "4745", "target" : "1021", "shared_name" : "35 (interacts with) 5096", "name" : "35 (interacts with) 5096", "interaction" : "interacts with", "SUID" : 25350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25346", "source" : "4745", "target" : "2025", "shared_name" : "35 (interacts with) 549", "name" : "35 (interacts with) 549", "interaction" : "interacts with", "SUID" : 25346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25342", "source" : "4745", "target" : "901", "shared_name" : "35 (interacts with) 8560", "name" : "35 (interacts with) 8560", "interaction" : "interacts with", "SUID" : 25342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25338", "source" : "4745", "target" : "1721", "shared_name" : "35 (interacts with) 51807", "name" : "35 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 25338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25334", "source" : "4745", "target" : "2045", "shared_name" : "35 (interacts with) 51102", "name" : "35 (interacts with) 51102", "interaction" : "interacts with", "SUID" : 25334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25330", "source" : "4745", "target" : "6057", "shared_name" : "35 (interacts with) 3162", "name" : "35 (interacts with) 3162", "interaction" : "interacts with", "SUID" : 25330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25326", "source" : "4745", "target" : "1669", "shared_name" : "35 (interacts with) 6390", "name" : "35 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 25326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25322", "source" : "4745", "target" : "4045", "shared_name" : "35 (interacts with) 29920", "name" : "35 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 25322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25318", "source" : "4745", "target" : "3501", "shared_name" : "35 (interacts with) 5831", "name" : "35 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 25318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25314", "source" : "4745", "target" : "2925", "shared_name" : "35 (interacts with) 8802", "name" : "35 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 25314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25310", "source" : "4745", "target" : "3425", "shared_name" : "35 (interacts with) 8803", "name" : "35 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 25310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25306", "source" : "4745", "target" : "5049", "shared_name" : "35 (interacts with) 6697", "name" : "35 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 25306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25302", "source" : "4745", "target" : "4169", "shared_name" : "35 (interacts with) 10993", "name" : "35 (interacts with) 10993", "interaction" : "interacts with", "SUID" : 25302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25298", "source" : "4745", "target" : "1289", "shared_name" : "35 (interacts with) 6392", "name" : "35 (interacts with) 6392", "interaction" : "interacts with", "SUID" : 25298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25294", "source" : "4745", "target" : "6093", "shared_name" : "35 (interacts with) 953", "name" : "35 (interacts with) 953", "interaction" : "interacts with", "SUID" : 25294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25290", "source" : "4745", "target" : "1489", "shared_name" : "35 (interacts with) 1738", "name" : "35 (interacts with) 1738", "interaction" : "interacts with", "SUID" : 25290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25286", "source" : "4745", "target" : "1437", "shared_name" : "35 (interacts with) 80025", "name" : "35 (interacts with) 80025", "interaction" : "interacts with", "SUID" : 25286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25282", "source" : "4745", "target" : "2165", "shared_name" : "35 (interacts with) 23417", "name" : "35 (interacts with) 23417", "interaction" : "interacts with", "SUID" : 25282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25278", "source" : "4745", "target" : "5133", "shared_name" : "35 (interacts with) 51", "name" : "35 (interacts with) 51", "interaction" : "interacts with", "SUID" : 25278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25274", "source" : "4745", "target" : "1585", "shared_name" : "35 (interacts with) 80347", "name" : "35 (interacts with) 80347", "interaction" : "interacts with", "SUID" : 25274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25270", "source" : "4745", "target" : "4041", "shared_name" : "35 (interacts with) 847", "name" : "35 (interacts with) 847", "interaction" : "interacts with", "SUID" : 25270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25266", "source" : "4745", "target" : "1889", "shared_name" : "35 (interacts with) 1490", "name" : "35 (interacts with) 1490", "interaction" : "interacts with", "SUID" : 25266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25418", "source" : "4741", "target" : "4337", "shared_name" : "79147 (interacts with) 84197", "name" : "79147 (interacts with) 84197", "interaction" : "interacts with", "SUID" : 25418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25414", "source" : "4741", "target" : "1033", "shared_name" : "79147 (interacts with) 9215", "name" : "79147 (interacts with) 9215", "interaction" : "interacts with", "SUID" : 25414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25566", "source" : "4737", "target" : "2645", "shared_name" : "445 (interacts with) 476", "name" : "445 (interacts with) 476", "interaction" : "interacts with", "SUID" : 25566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25562", "source" : "4737", "target" : "5189", "shared_name" : "445 (interacts with) 57176", "name" : "445 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 25562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25558", "source" : "4737", "target" : "1581", "shared_name" : "445 (interacts with) 7407", "name" : "445 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 25558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25554", "source" : "4737", "target" : "1929", "shared_name" : "445 (interacts with) 51218", "name" : "445 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 25554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25550", "source" : "4737", "target" : "3617", "shared_name" : "445 (interacts with) 4704", "name" : "445 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 25550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25546", "source" : "4737", "target" : "1189", "shared_name" : "445 (interacts with) 7915", "name" : "445 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 25546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25542", "source" : "4737", "target" : "4253", "shared_name" : "445 (interacts with) 84706", "name" : "445 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 25542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25538", "source" : "4737", "target" : "5109", "shared_name" : "445 (interacts with) 790", "name" : "445 (interacts with) 790", "interaction" : "interacts with", "SUID" : 25538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25534", "source" : "4737", "target" : "3237", "shared_name" : "445 (interacts with) 95", "name" : "445 (interacts with) 95", "interaction" : "interacts with", "SUID" : 25534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25530", "source" : "4737", "target" : "4693", "shared_name" : "445 (interacts with) 6301", "name" : "445 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 25530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25526", "source" : "4737", "target" : "1341", "shared_name" : "445 (interacts with) 5009", "name" : "445 (interacts with) 5009", "interaction" : "interacts with", "SUID" : 25526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25522", "source" : "4737", "target" : "3633", "shared_name" : "445 (interacts with) 51067", "name" : "445 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 25522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25518", "source" : "4737", "target" : "1477", "shared_name" : "445 (interacts with) 10352", "name" : "445 (interacts with) 10352", "interaction" : "interacts with", "SUID" : 25518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25514", "source" : "4737", "target" : "4993", "shared_name" : "445 (interacts with) 8622", "name" : "445 (interacts with) 8622", "interaction" : "interacts with", "SUID" : 25514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25510", "source" : "4737", "target" : "1089", "shared_name" : "445 (interacts with) 5917", "name" : "445 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 25510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25506", "source" : "4737", "target" : "4621", "shared_name" : "445 (interacts with) 57038", "name" : "445 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 25506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25502", "source" : "4737", "target" : "5841", "shared_name" : "445 (interacts with) 10846", "name" : "445 (interacts with) 10846", "interaction" : "interacts with", "SUID" : 25502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25498", "source" : "4737", "target" : "6049", "shared_name" : "445 (interacts with) 25973", "name" : "445 (interacts with) 25973", "interaction" : "interacts with", "SUID" : 25498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25494", "source" : "4737", "target" : "2005", "shared_name" : "445 (interacts with) 4846", "name" : "445 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 25494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25490", "source" : "4737", "target" : "741", "shared_name" : "445 (interacts with) 4830", "name" : "445 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 25490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25486", "source" : "4737", "target" : "6157", "shared_name" : "445 (interacts with) 3735", "name" : "445 (interacts with) 3735", "interaction" : "interacts with", "SUID" : 25486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25482", "source" : "4737", "target" : "4597", "shared_name" : "445 (interacts with) 3376", "name" : "445 (interacts with) 3376", "interaction" : "interacts with", "SUID" : 25482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25478", "source" : "4737", "target" : "4085", "shared_name" : "445 (interacts with) 55699", "name" : "445 (interacts with) 55699", "interaction" : "interacts with", "SUID" : 25478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25474", "source" : "4737", "target" : "3641", "shared_name" : "445 (interacts with) 4141", "name" : "445 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 25474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25470", "source" : "4737", "target" : "5605", "shared_name" : "445 (interacts with) 51601", "name" : "445 (interacts with) 51601", "interaction" : "interacts with", "SUID" : 25470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25466", "source" : "4737", "target" : "1257", "shared_name" : "445 (interacts with) 3098", "name" : "445 (interacts with) 3098", "interaction" : "interacts with", "SUID" : 25466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25462", "source" : "4737", "target" : "2205", "shared_name" : "445 (interacts with) 2571", "name" : "445 (interacts with) 2571", "interaction" : "interacts with", "SUID" : 25462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25458", "source" : "4737", "target" : "1197", "shared_name" : "445 (interacts with) 79587", "name" : "445 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 25458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25454", "source" : "4737", "target" : "2097", "shared_name" : "445 (interacts with) 10166", "name" : "445 (interacts with) 10166", "interaction" : "interacts with", "SUID" : 25454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25450", "source" : "4737", "target" : "4261", "shared_name" : "445 (interacts with) 124454", "name" : "445 (interacts with) 124454", "interaction" : "interacts with", "SUID" : 25450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25446", "source" : "4737", "target" : "3169", "shared_name" : "445 (interacts with) 1615", "name" : "445 (interacts with) 1615", "interaction" : "interacts with", "SUID" : 25446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25442", "source" : "4737", "target" : "1885", "shared_name" : "445 (interacts with) 8604", "name" : "445 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 25442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25438", "source" : "4737", "target" : "5029", "shared_name" : "445 (interacts with) 4842", "name" : "445 (interacts with) 4842", "interaction" : "interacts with", "SUID" : 25438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25434", "source" : "4737", "target" : "4681", "shared_name" : "445 (interacts with) 4843", "name" : "445 (interacts with) 4843", "interaction" : "interacts with", "SUID" : 25434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25430", "source" : "4737", "target" : "993", "shared_name" : "445 (interacts with) 801", "name" : "445 (interacts with) 801", "interaction" : "interacts with", "SUID" : 25430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25426", "source" : "4737", "target" : "3525", "shared_name" : "445 (interacts with) 23410", "name" : "445 (interacts with) 23410", "interaction" : "interacts with", "SUID" : 25426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25422", "source" : "4737", "target" : "3445", "shared_name" : "445 (interacts with) 5091", "name" : "445 (interacts with) 5091", "interaction" : "interacts with", "SUID" : 25422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25578", "source" : "4733", "target" : "2361", "shared_name" : "23404 (interacts with) 51010", "name" : "23404 (interacts with) 51010", "interaction" : "interacts with", "SUID" : 25578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25574", "source" : "4733", "target" : "2073", "shared_name" : "23404 (interacts with) 5393", "name" : "23404 (interacts with) 5393", "interaction" : "interacts with", "SUID" : 25574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25570", "source" : "4733", "target" : "3097", "shared_name" : "23404 (interacts with) 11340", "name" : "23404 (interacts with) 11340", "interaction" : "interacts with", "SUID" : 25570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25614", "source" : "4729", "target" : "417", "shared_name" : "5216 (interacts with) 6689", "name" : "5216 (interacts with) 6689", "interaction" : "interacts with", "SUID" : 25614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25610", "source" : "4729", "target" : "5361", "shared_name" : "5216 (interacts with) 5604", "name" : "5216 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 25610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25606", "source" : "4729", "target" : "4521", "shared_name" : "5216 (interacts with) 5894", "name" : "5216 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 25606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25602", "source" : "4729", "target" : "5081", "shared_name" : "5216 (interacts with) 5594", "name" : "5216 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 25602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25598", "source" : "4729", "target" : "973", "shared_name" : "5216 (interacts with) 5595", "name" : "5216 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 25598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25594", "source" : "4729", "target" : "4213", "shared_name" : "5216 (interacts with) 5295", "name" : "5216 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 25594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25590", "source" : "4729", "target" : "5225", "shared_name" : "5216 (interacts with) 5290", "name" : "5216 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 25590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25586", "source" : "4729", "target" : "3833", "shared_name" : "5216 (interacts with) 9138", "name" : "5216 (interacts with) 9138", "interaction" : "interacts with", "SUID" : 25586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25582", "source" : "4729", "target" : "1069", "shared_name" : "5216 (interacts with) 5879", "name" : "5216 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 25582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25622", "source" : "4725", "target" : "4213", "shared_name" : "7010 (interacts with) 5295", "name" : "7010 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 25622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25618", "source" : "4725", "target" : "1005", "shared_name" : "7010 (interacts with) 1728", "name" : "7010 (interacts with) 1728", "interaction" : "interacts with", "SUID" : 25618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25658", "source" : "4721", "target" : "1241", "shared_name" : "5805 (interacts with) 808", "name" : "5805 (interacts with) 808", "interaction" : "interacts with", "SUID" : 25658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25654", "source" : "4721", "target" : "1201", "shared_name" : "5805 (interacts with) 805", "name" : "5805 (interacts with) 805", "interaction" : "interacts with", "SUID" : 25654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25650", "source" : "4721", "target" : "993", "shared_name" : "5805 (interacts with) 801", "name" : "5805 (interacts with) 801", "interaction" : "interacts with", "SUID" : 25650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25646", "source" : "4721", "target" : "3501", "shared_name" : "5805 (interacts with) 5831", "name" : "5805 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 25646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25642", "source" : "4721", "target" : "4045", "shared_name" : "5805 (interacts with) 29920", "name" : "5805 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 25642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25638", "source" : "4721", "target" : "1721", "shared_name" : "5805 (interacts with) 51807", "name" : "5805 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 25638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25634", "source" : "4721", "target" : "5049", "shared_name" : "5805 (interacts with) 6697", "name" : "5805 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 25634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25630", "source" : "4721", "target" : "3929", "shared_name" : "5805 (interacts with) 5860", "name" : "5805 (interacts with) 5860", "interaction" : "interacts with", "SUID" : 25630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25626", "source" : "4721", "target" : "5697", "shared_name" : "5805 (interacts with) 8517", "name" : "5805 (interacts with) 8517", "interaction" : "interacts with", "SUID" : 25626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25666", "source" : "4717", "target" : "1129", "shared_name" : "51204 (interacts with) 57505", "name" : "51204 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 25666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25662", "source" : "4717", "target" : "6001", "shared_name" : "51204 (interacts with) 55157", "name" : "51204 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 25662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25746", "source" : "4705", "target" : "4213", "shared_name" : "10664 (interacts with) 5295", "name" : "10664 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 25746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25742", "source" : "4705", "target" : "5225", "shared_name" : "10664 (interacts with) 5290", "name" : "10664 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 25742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25738", "source" : "4705", "target" : "2153", "shared_name" : "10664 (interacts with) 7042", "name" : "10664 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 25738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25734", "source" : "4705", "target" : "3305", "shared_name" : "10664 (interacts with) 7040", "name" : "10664 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 25734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25730", "source" : "4705", "target" : "981", "shared_name" : "10664 (interacts with) 7157", "name" : "10664 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 25730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25726", "source" : "4705", "target" : "5037", "shared_name" : "10664 (interacts with) 5515", "name" : "10664 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 25726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25722", "source" : "4705", "target" : "3409", "shared_name" : "10664 (interacts with) 7043", "name" : "10664 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 25722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25718", "source" : "4705", "target" : "817", "shared_name" : "10664 (interacts with) 5728", "name" : "10664 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 25718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25714", "source" : "4705", "target" : "569", "shared_name" : "10664 (interacts with) 7048", "name" : "10664 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 25714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25710", "source" : "4705", "target" : "4533", "shared_name" : "10664 (interacts with) 4089", "name" : "10664 (interacts with) 4089", "interaction" : "interacts with", "SUID" : 25710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25706", "source" : "4705", "target" : "2481", "shared_name" : "10664 (interacts with) 2475", "name" : "10664 (interacts with) 2475", "interaction" : "interacts with", "SUID" : 25706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25702", "source" : "4705", "target" : "3017", "shared_name" : "10664 (interacts with) 4790", "name" : "10664 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 25702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25698", "source" : "4705", "target" : "4765", "shared_name" : "10664 (interacts with) 7015", "name" : "10664 (interacts with) 7015", "interaction" : "interacts with", "SUID" : 25698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25694", "source" : "4705", "target" : "5941", "shared_name" : "10664 (interacts with) 5914", "name" : "10664 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 25694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25690", "source" : "4705", "target" : "3825", "shared_name" : "10664 (interacts with) 5915", "name" : "10664 (interacts with) 5915", "interaction" : "interacts with", "SUID" : 25690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25686", "source" : "4705", "target" : "5861", "shared_name" : "10664 (interacts with) 5435", "name" : "10664 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 25686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25682", "source" : "4705", "target" : "2649", "shared_name" : "10664 (interacts with) 5430", "name" : "10664 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 25682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25678", "source" : "4705", "target" : "4097", "shared_name" : "10664 (interacts with) 9611", "name" : "10664 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 25678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25674", "source" : "4705", "target" : "3769", "shared_name" : "10664 (interacts with) 8085", "name" : "10664 (interacts with) 8085", "interaction" : "interacts with", "SUID" : 25674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25670", "source" : "4705", "target" : "3517", "shared_name" : "10664 (interacts with) 2033", "name" : "10664 (interacts with) 2033", "interaction" : "interacts with", "SUID" : 25670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25762", "source" : "4701", "target" : "1261", "shared_name" : "9896 (interacts with) 57192", "name" : "9896 (interacts with) 57192", "interaction" : "interacts with", "SUID" : 25762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25758", "source" : "4701", "target" : "1909", "shared_name" : "9896 (interacts with) 5286", "name" : "9896 (interacts with) 5286", "interaction" : "interacts with", "SUID" : 25758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25754", "source" : "4701", "target" : "3653", "shared_name" : "9896 (interacts with) 8898", "name" : "9896 (interacts with) 8898", "interaction" : "interacts with", "SUID" : 25754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25750", "source" : "4701", "target" : "1417", "shared_name" : "9896 (interacts with) 79848", "name" : "9896 (interacts with) 79848", "interaction" : "interacts with", "SUID" : 25750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25842", "source" : "4697", "target" : "2977", "shared_name" : "7534 (interacts with) 4747", "name" : "7534 (interacts with) 4747", "interaction" : "interacts with", "SUID" : 25842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25838", "source" : "4697", "target" : "1609", "shared_name" : "7534 (interacts with) 3097", "name" : "7534 (interacts with) 3097", "interaction" : "interacts with", "SUID" : 25838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25834", "source" : "4697", "target" : "5773", "shared_name" : "7534 (interacts with) 9181", "name" : "7534 (interacts with) 9181", "interaction" : "interacts with", "SUID" : 25834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25830", "source" : "4697", "target" : "3221", "shared_name" : "7534 (interacts with) 284403", "name" : "7534 (interacts with) 284403", "interaction" : "interacts with", "SUID" : 25830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25826", "source" : "4697", "target" : "601", "shared_name" : "7534 (interacts with) 55187", "name" : "7534 (interacts with) 55187", "interaction" : "interacts with", "SUID" : 25826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25822", "source" : "4697", "target" : "4657", "shared_name" : "7534 (interacts with) 64837", "name" : "7534 (interacts with) 64837", "interaction" : "interacts with", "SUID" : 25822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25818", "source" : "4697", "target" : "5097", "shared_name" : "7534 (interacts with) 8831", "name" : "7534 (interacts with) 8831", "interaction" : "interacts with", "SUID" : 25818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25814", "source" : "4697", "target" : "5713", "shared_name" : "7534 (interacts with) 7531", "name" : "7534 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 25814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25810", "source" : "4697", "target" : "4985", "shared_name" : "7534 (interacts with) 3798", "name" : "7534 (interacts with) 3798", "interaction" : "interacts with", "SUID" : 25810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25806", "source" : "4697", "target" : "1517", "shared_name" : "7534 (interacts with) 51776", "name" : "7534 (interacts with) 51776", "interaction" : "interacts with", "SUID" : 25806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25802", "source" : "4697", "target" : "2537", "shared_name" : "7534 (interacts with) 3984", "name" : "7534 (interacts with) 3984", "interaction" : "interacts with", "SUID" : 25802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25798", "source" : "4697", "target" : "4877", "shared_name" : "7534 (interacts with) 1965", "name" : "7534 (interacts with) 1965", "interaction" : "interacts with", "SUID" : 25798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25794", "source" : "4697", "target" : "1245", "shared_name" : "7534 (interacts with) 4137", "name" : "7534 (interacts with) 4137", "interaction" : "interacts with", "SUID" : 25794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25790", "source" : "4697", "target" : "737", "shared_name" : "7534 (interacts with) 2643", "name" : "7534 (interacts with) 2643", "interaction" : "interacts with", "SUID" : 25790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25786", "source" : "4697", "target" : "1285", "shared_name" : "7534 (interacts with) 7249", "name" : "7534 (interacts with) 7249", "interaction" : "interacts with", "SUID" : 25786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25782", "source" : "4697", "target" : "1601", "shared_name" : "7534 (interacts with) 7415", "name" : "7534 (interacts with) 7415", "interaction" : "interacts with", "SUID" : 25782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25778", "source" : "4697", "target" : "2929", "shared_name" : "7534 (interacts with) 6310", "name" : "7534 (interacts with) 6310", "interaction" : "interacts with", "SUID" : 25778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25774", "source" : "4697", "target" : "865", "shared_name" : "7534 (interacts with) 3480", "name" : "7534 (interacts with) 3480", "interaction" : "interacts with", "SUID" : 25774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25770", "source" : "4697", "target" : "4521", "shared_name" : "7534 (interacts with) 5894", "name" : "7534 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 25770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25766", "source" : "4697", "target" : "5977", "shared_name" : "7534 (interacts with) 1915", "name" : "7534 (interacts with) 1915", "interaction" : "interacts with", "SUID" : 25766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25878", "source" : "4693", "target" : "5593", "shared_name" : "6301 (interacts with) 875", "name" : "6301 (interacts with) 875", "interaction" : "interacts with", "SUID" : 25878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25874", "source" : "4693", "target" : "4869", "shared_name" : "6301 (interacts with) 92935", "name" : "6301 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 25874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25870", "source" : "4693", "target" : "2305", "shared_name" : "6301 (interacts with) 6908", "name" : "6301 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 25870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25866", "source" : "4693", "target" : "3157", "shared_name" : "6301 (interacts with) 9255", "name" : "6301 (interacts with) 9255", "interaction" : "interacts with", "SUID" : 25866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25862", "source" : "4693", "target" : "1581", "shared_name" : "6301 (interacts with) 7407", "name" : "6301 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 25862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25858", "source" : "4693", "target" : "1197", "shared_name" : "6301 (interacts with) 79587", "name" : "6301 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 25858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25854", "source" : "4693", "target" : "721", "shared_name" : "6301 (interacts with) 79731", "name" : "6301 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 25854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25850", "source" : "4693", "target" : "3529", "shared_name" : "6301 (interacts with) 7965", "name" : "6301 (interacts with) 7965", "interaction" : "interacts with", "SUID" : 25850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25846", "source" : "4693", "target" : "409", "shared_name" : "6301 (interacts with) 10558", "name" : "6301 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 25846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25946", "source" : "4689", "target" : "2881", "shared_name" : "291 (interacts with) 5160", "name" : "291 (interacts with) 5160", "interaction" : "interacts with", "SUID" : 25946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25942", "source" : "4689", "target" : "5497", "shared_name" : "291 (interacts with) 91137", "name" : "291 (interacts with) 91137", "interaction" : "interacts with", "SUID" : 25942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25938", "source" : "4689", "target" : "5557", "shared_name" : "291 (interacts with) 9254", "name" : "291 (interacts with) 9254", "interaction" : "interacts with", "SUID" : 25938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25934", "source" : "4689", "target" : "4881", "shared_name" : "291 (interacts with) 6833", "name" : "291 (interacts with) 6833", "interaction" : "interacts with", "SUID" : 25934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25930", "source" : "4689", "target" : "5913", "shared_name" : "291 (interacts with) 3767", "name" : "291 (interacts with) 3767", "interaction" : "interacts with", "SUID" : 25930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25926", "source" : "4689", "target" : "3481", "shared_name" : "291 (interacts with) 6513", "name" : "291 (interacts with) 6513", "interaction" : "interacts with", "SUID" : 25926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25922", "source" : "4689", "target" : "1289", "shared_name" : "291 (interacts with) 6392", "name" : "291 (interacts with) 6392", "interaction" : "interacts with", "SUID" : 25922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25918", "source" : "4689", "target" : "1669", "shared_name" : "291 (interacts with) 6390", "name" : "291 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 25918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25914", "source" : "4689", "target" : "5025", "shared_name" : "291 (interacts with) 6389", "name" : "291 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 25914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25910", "source" : "4689", "target" : "1865", "shared_name" : "291 (interacts with) 498", "name" : "291 (interacts with) 498", "interaction" : "interacts with", "SUID" : 25910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25906", "source" : "4689", "target" : "5857", "shared_name" : "291 (interacts with) 4694", "name" : "291 (interacts with) 4694", "interaction" : "interacts with", "SUID" : 25906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25902", "source" : "4689", "target" : "641", "shared_name" : "291 (interacts with) 773", "name" : "291 (interacts with) 773", "interaction" : "interacts with", "SUID" : 25902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25898", "source" : "4689", "target" : "2721", "shared_name" : "291 (interacts with) 79751", "name" : "291 (interacts with) 79751", "interaction" : "interacts with", "SUID" : 25898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25894", "source" : "4689", "target" : "361", "shared_name" : "291 (interacts with) 6576", "name" : "291 (interacts with) 6576", "interaction" : "interacts with", "SUID" : 25894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25890", "source" : "4689", "target" : "349", "shared_name" : "291 (interacts with) 60386", "name" : "291 (interacts with) 60386", "interaction" : "interacts with", "SUID" : 25890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25886", "source" : "4689", "target" : "5305", "shared_name" : "291 (interacts with) 6901", "name" : "291 (interacts with) 6901", "interaction" : "interacts with", "SUID" : 25886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25882", "source" : "4689", "target" : "357", "shared_name" : "291 (interacts with) 777", "name" : "291 (interacts with) 777", "interaction" : "interacts with", "SUID" : 25882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25966", "source" : "4685", "target" : "6137", "shared_name" : "2218 (interacts with) 29954", "name" : "2218 (interacts with) 29954", "interaction" : "interacts with", "SUID" : 25966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25962", "source" : "4685", "target" : "4741", "shared_name" : "2218 (interacts with) 79147", "name" : "2218 (interacts with) 79147", "interaction" : "interacts with", "SUID" : 25962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25958", "source" : "4685", "target" : "4481", "shared_name" : "2218 (interacts with) 55624", "name" : "2218 (interacts with) 55624", "interaction" : "interacts with", "SUID" : 25958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25954", "source" : "4685", "target" : "4337", "shared_name" : "2218 (interacts with) 84197", "name" : "2218 (interacts with) 84197", "interaction" : "interacts with", "SUID" : 25954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25950", "source" : "4685", "target" : "1033", "shared_name" : "2218 (interacts with) 9215", "name" : "2218 (interacts with) 9215", "interaction" : "interacts with", "SUID" : 25950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26090", "source" : "4681", "target" : "3445", "shared_name" : "4843 (interacts with) 5091", "name" : "4843 (interacts with) 5091", "interaction" : "interacts with", "SUID" : 26090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26086", "source" : "4681", "target" : "1301", "shared_name" : "4843 (interacts with) 5095", "name" : "4843 (interacts with) 5095", "interaction" : "interacts with", "SUID" : 26086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26082", "source" : "4681", "target" : "5225", "shared_name" : "4843 (interacts with) 5290", "name" : "4843 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 26082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26078", "source" : "4681", "target" : "5081", "shared_name" : "4843 (interacts with) 5594", "name" : "4843 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 26078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26074", "source" : "4681", "target" : "973", "shared_name" : "4843 (interacts with) 5595", "name" : "4843 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 26074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26070", "source" : "4681", "target" : "4949", "shared_name" : "4843 (interacts with) 5970", "name" : "4843 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 26070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26066", "source" : "4681", "target" : "4213", "shared_name" : "4843 (interacts with) 5295", "name" : "4843 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 26066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26062", "source" : "4681", "target" : "3237", "shared_name" : "4843 (interacts with) 95", "name" : "4843 (interacts with) 95", "interaction" : "interacts with", "SUID" : 26062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26058", "source" : "4681", "target" : "1341", "shared_name" : "4843 (interacts with) 5009", "name" : "4843 (interacts with) 5009", "interaction" : "interacts with", "SUID" : 26058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26054", "source" : "4681", "target" : "4857", "shared_name" : "4843 (interacts with) 5573", "name" : "4843 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 26054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26050", "source" : "4681", "target" : "2957", "shared_name" : "4843 (interacts with) 5465", "name" : "4843 (interacts with) 5465", "interaction" : "interacts with", "SUID" : 26050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26046", "source" : "4681", "target" : "4589", "shared_name" : "4843 (interacts with) 8431", "name" : "4843 (interacts with) 8431", "interaction" : "interacts with", "SUID" : 26046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26042", "source" : "4681", "target" : "4097", "shared_name" : "4843 (interacts with) 9611", "name" : "4843 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 26042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26038", "source" : "4681", "target" : "5321", "shared_name" : "4843 (interacts with) 5743", "name" : "4843 (interacts with) 5743", "interaction" : "interacts with", "SUID" : 26038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26034", "source" : "4681", "target" : "5133", "shared_name" : "4843 (interacts with) 51", "name" : "4843 (interacts with) 51", "interaction" : "interacts with", "SUID" : 26034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26030", "source" : "4681", "target" : "4065", "shared_name" : "4843 (interacts with) 7124", "name" : "4843 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 26030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26026", "source" : "4681", "target" : "5297", "shared_name" : "4843 (interacts with) 6775", "name" : "4843 (interacts with) 6775", "interaction" : "interacts with", "SUID" : 26026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26022", "source" : "4681", "target" : "2561", "shared_name" : "4843 (interacts with) 523", "name" : "4843 (interacts with) 523", "interaction" : "interacts with", "SUID" : 26022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26018", "source" : "4681", "target" : "2569", "shared_name" : "4843 (interacts with) 529", "name" : "4843 (interacts with) 529", "interaction" : "interacts with", "SUID" : 26018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26014", "source" : "4681", "target" : "1605", "shared_name" : "4843 (interacts with) 6648", "name" : "4843 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 26014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26010", "source" : "4681", "target" : "3417", "shared_name" : "4843 (interacts with) 5371", "name" : "4843 (interacts with) 5371", "interaction" : "interacts with", "SUID" : 26010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26006", "source" : "4681", "target" : "3197", "shared_name" : "4843 (interacts with) 64135", "name" : "4843 (interacts with) 64135", "interaction" : "interacts with", "SUID" : 26006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26002", "source" : "4681", "target" : "4981", "shared_name" : "4843 (interacts with) 6774", "name" : "4843 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 26002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25998", "source" : "4681", "target" : "2005", "shared_name" : "4843 (interacts with) 4846", "name" : "4843 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 25998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25994", "source" : "4681", "target" : "5237", "shared_name" : "4843 (interacts with) 5830", "name" : "4843 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 25994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25990", "source" : "4681", "target" : "4297", "shared_name" : "4843 (interacts with) 5193", "name" : "4843 (interacts with) 5193", "interaction" : "interacts with", "SUID" : 25990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25986", "source" : "4681", "target" : "1953", "shared_name" : "4843 (interacts with) 5194", "name" : "4843 (interacts with) 5194", "interaction" : "interacts with", "SUID" : 25986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25982", "source" : "4681", "target" : "5545", "shared_name" : "4843 (interacts with) 5195", "name" : "4843 (interacts with) 5195", "interaction" : "interacts with", "SUID" : 25982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25978", "source" : "4681", "target" : "5205", "shared_name" : "4843 (interacts with) 5828", "name" : "4843 (interacts with) 5828", "interaction" : "interacts with", "SUID" : 25978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25974", "source" : "4681", "target" : "5865", "shared_name" : "4843 (interacts with) 5192", "name" : "4843 (interacts with) 5192", "interaction" : "interacts with", "SUID" : 25974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "25970", "source" : "4681", "target" : "1069", "shared_name" : "4843 (interacts with) 5879", "name" : "4843 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 25970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26110", "source" : "4677", "target" : "753", "shared_name" : "116448 (interacts with) 4099", "name" : "116448 (interacts with) 4099", "interaction" : "interacts with", "SUID" : 26110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26106", "source" : "4677", "target" : "3929", "shared_name" : "116448 (interacts with) 5860", "name" : "116448 (interacts with) 5860", "interaction" : "interacts with", "SUID" : 26106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26102", "source" : "4677", "target" : "3061", "shared_name" : "116448 (interacts with) 4155", "name" : "116448 (interacts with) 4155", "interaction" : "interacts with", "SUID" : 26102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26098", "source" : "4677", "target" : "969", "shared_name" : "116448 (interacts with) 2670", "name" : "116448 (interacts with) 2670", "interaction" : "interacts with", "SUID" : 26098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26094", "source" : "4677", "target" : "765", "shared_name" : "116448 (interacts with) 4340", "name" : "116448 (interacts with) 4340", "interaction" : "interacts with", "SUID" : 26094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26162", "source" : "4673", "target" : "4845", "shared_name" : "1186 (interacts with) 259232", "name" : "1186 (interacts with) 259232", "interaction" : "interacts with", "SUID" : 26162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26158", "source" : "4673", "target" : "5373", "shared_name" : "1186 (interacts with) 28962", "name" : "1186 (interacts with) 28962", "interaction" : "interacts with", "SUID" : 26158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26154", "source" : "4673", "target" : "277", "shared_name" : "1186 (interacts with) 285175", "name" : "1186 (interacts with) 285175", "interaction" : "interacts with", "SUID" : 26154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26150", "source" : "4673", "target" : "1429", "shared_name" : "1186 (interacts with) 65125", "name" : "1186 (interacts with) 65125", "interaction" : "interacts with", "SUID" : 26150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26146", "source" : "4673", "target" : "3969", "shared_name" : "1186 (interacts with) 57468", "name" : "1186 (interacts with) 57468", "interaction" : "interacts with", "SUID" : 26146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26142", "source" : "4673", "target" : "1681", "shared_name" : "1186 (interacts with) 9990", "name" : "1186 (interacts with) 9990", "interaction" : "interacts with", "SUID" : 26142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26138", "source" : "4673", "target" : "1161", "shared_name" : "1186 (interacts with) 2561", "name" : "1186 (interacts with) 2561", "interaction" : "interacts with", "SUID" : 26138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26134", "source" : "4673", "target" : "3389", "shared_name" : "1186 (interacts with) 2562", "name" : "1186 (interacts with) 2562", "interaction" : "interacts with", "SUID" : 26134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26130", "source" : "4673", "target" : "4153", "shared_name" : "1186 (interacts with) 2566", "name" : "1186 (interacts with) 2566", "interaction" : "interacts with", "SUID" : 26130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26126", "source" : "4673", "target" : "1149", "shared_name" : "1186 (interacts with) 2558", "name" : "1186 (interacts with) 2558", "interaction" : "interacts with", "SUID" : 26126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26122", "source" : "4673", "target" : "205", "shared_name" : "1186 (interacts with) 2555", "name" : "1186 (interacts with) 2555", "interaction" : "interacts with", "SUID" : 26122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26118", "source" : "4673", "target" : "6005", "shared_name" : "1186 (interacts with) 4988", "name" : "1186 (interacts with) 4988", "interaction" : "interacts with", "SUID" : 26118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26114", "source" : "4673", "target" : "1665", "shared_name" : "1186 (interacts with) 54332", "name" : "1186 (interacts with) 54332", "interaction" : "interacts with", "SUID" : 26114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26206", "source" : "4669", "target" : "5377", "shared_name" : "2521 (interacts with) 6638", "name" : "2521 (interacts with) 6638", "interaction" : "interacts with", "SUID" : 26206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26202", "source" : "4669", "target" : "1837", "shared_name" : "2521 (interacts with) 9939", "name" : "2521 (interacts with) 9939", "interaction" : "interacts with", "SUID" : 26202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26198", "source" : "4669", "target" : "5193", "shared_name" : "2521 (interacts with) 5725", "name" : "2521 (interacts with) 5725", "interaction" : "interacts with", "SUID" : 26198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26194", "source" : "4669", "target" : "5281", "shared_name" : "2521 (interacts with) 10084", "name" : "2521 (interacts with) 10084", "interaction" : "interacts with", "SUID" : 26194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26190", "source" : "4669", "target" : "5861", "shared_name" : "2521 (interacts with) 5435", "name" : "2521 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 26190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26186", "source" : "4669", "target" : "2649", "shared_name" : "2521 (interacts with) 5430", "name" : "2521 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 26186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26182", "source" : "4669", "target" : "2385", "shared_name" : "2521 (interacts with) 3192", "name" : "2521 (interacts with) 3192", "interaction" : "interacts with", "SUID" : 26182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26178", "source" : "4669", "target" : "1753", "shared_name" : "2521 (interacts with) 3188", "name" : "2521 (interacts with) 3188", "interaction" : "interacts with", "SUID" : 26178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26174", "source" : "4669", "target" : "4317", "shared_name" : "2521 (interacts with) 3178", "name" : "2521 (interacts with) 3178", "interaction" : "interacts with", "SUID" : 26174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26170", "source" : "4669", "target" : "1993", "shared_name" : "2521 (interacts with) 3181", "name" : "2521 (interacts with) 3181", "interaction" : "interacts with", "SUID" : 26170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26166", "source" : "4669", "target" : "5185", "shared_name" : "2521 (interacts with) 1499", "name" : "2521 (interacts with) 1499", "interaction" : "interacts with", "SUID" : 26166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26222", "source" : "4665", "target" : "1089", "shared_name" : "538 (interacts with) 5917", "name" : "538 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 26222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26218", "source" : "4665", "target" : "4621", "shared_name" : "538 (interacts with) 57038", "name" : "538 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 26218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26214", "source" : "4665", "target" : "481", "shared_name" : "538 (interacts with) 7507", "name" : "538 (interacts with) 7507", "interaction" : "interacts with", "SUID" : 26214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26210", "source" : "4665", "target" : "3773", "shared_name" : "538 (interacts with) 540", "name" : "538 (interacts with) 540", "interaction" : "interacts with", "SUID" : 26210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26234", "source" : "4657", "target" : "545", "shared_name" : "64837 (interacts with) 51014", "name" : "64837 (interacts with) 51014", "interaction" : "interacts with", "SUID" : 26234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26230", "source" : "4657", "target" : "1069", "shared_name" : "64837 (interacts with) 5879", "name" : "64837 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 26230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26226", "source" : "4657", "target" : "5749", "shared_name" : "64837 (interacts with) 10959", "name" : "64837 (interacts with) 10959", "interaction" : "interacts with", "SUID" : 26226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26354", "source" : "4649", "target" : "5081", "shared_name" : "3479 (interacts with) 5594", "name" : "3479 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 26354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26350", "source" : "4649", "target" : "973", "shared_name" : "3479 (interacts with) 5595", "name" : "3479 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 26350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26346", "source" : "4649", "target" : "4213", "shared_name" : "3479 (interacts with) 5295", "name" : "3479 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 26346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26342", "source" : "4649", "target" : "5361", "shared_name" : "3479 (interacts with) 5604", "name" : "3479 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 26342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26338", "source" : "4649", "target" : "5225", "shared_name" : "3479 (interacts with) 5290", "name" : "3479 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 26338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26334", "source" : "4649", "target" : "4521", "shared_name" : "3479 (interacts with) 5894", "name" : "3479 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 26334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26330", "source" : "4649", "target" : "4857", "shared_name" : "3479 (interacts with) 5573", "name" : "3479 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 26330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26326", "source" : "4649", "target" : "3305", "shared_name" : "3479 (interacts with) 7040", "name" : "3479 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 26326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26322", "source" : "4649", "target" : "2153", "shared_name" : "3479 (interacts with) 7042", "name" : "3479 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 26322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26318", "source" : "4649", "target" : "637", "shared_name" : "3479 (interacts with) 6654", "name" : "3479 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 26318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26314", "source" : "4649", "target" : "5037", "shared_name" : "3479 (interacts with) 5515", "name" : "3479 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 26314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26310", "source" : "4649", "target" : "3409", "shared_name" : "3479 (interacts with) 7043", "name" : "3479 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 26310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26306", "source" : "4649", "target" : "1241", "shared_name" : "3479 (interacts with) 808", "name" : "3479 (interacts with) 808", "interaction" : "interacts with", "SUID" : 26306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26302", "source" : "4649", "target" : "5965", "shared_name" : "3479 (interacts with) 596", "name" : "3479 (interacts with) 596", "interaction" : "interacts with", "SUID" : 26302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26298", "source" : "4649", "target" : "993", "shared_name" : "3479 (interacts with) 801", "name" : "3479 (interacts with) 801", "interaction" : "interacts with", "SUID" : 26298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26294", "source" : "4649", "target" : "1201", "shared_name" : "3479 (interacts with) 805", "name" : "3479 (interacts with) 805", "interaction" : "interacts with", "SUID" : 26294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26290", "source" : "4649", "target" : "3593", "shared_name" : "3479 (interacts with) 5530", "name" : "3479 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 26290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26286", "source" : "4649", "target" : "565", "shared_name" : "3479 (interacts with) 4772", "name" : "3479 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 26286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26282", "source" : "4649", "target" : "5761", "shared_name" : "3479 (interacts with) 4208", "name" : "3479 (interacts with) 4208", "interaction" : "interacts with", "SUID" : 26282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26278", "source" : "4649", "target" : "817", "shared_name" : "3479 (interacts with) 5728", "name" : "3479 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 26278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26274", "source" : "4649", "target" : "2793", "shared_name" : "3479 (interacts with) 8894", "name" : "3479 (interacts with) 8894", "interaction" : "interacts with", "SUID" : 26274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26270", "source" : "4649", "target" : "4149", "shared_name" : "3479 (interacts with) 8893", "name" : "3479 (interacts with) 8893", "interaction" : "interacts with", "SUID" : 26270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26266", "source" : "4649", "target" : "2901", "shared_name" : "3479 (interacts with) 6647", "name" : "3479 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 26266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26262", "source" : "4649", "target" : "5389", "shared_name" : "3479 (interacts with) 551", "name" : "3479 (interacts with) 551", "interaction" : "interacts with", "SUID" : 26262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26258", "source" : "4649", "target" : "1605", "shared_name" : "3479 (interacts with) 6648", "name" : "3479 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 26258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26254", "source" : "4649", "target" : "4041", "shared_name" : "3479 (interacts with) 847", "name" : "3479 (interacts with) 847", "interaction" : "interacts with", "SUID" : 26254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26250", "source" : "4649", "target" : "3813", "shared_name" : "3479 (interacts with) 3483", "name" : "3479 (interacts with) 3483", "interaction" : "interacts with", "SUID" : 26250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26246", "source" : "4649", "target" : "3437", "shared_name" : "3479 (interacts with) 4312", "name" : "3479 (interacts with) 4312", "interaction" : "interacts with", "SUID" : 26246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26242", "source" : "4649", "target" : "4885", "shared_name" : "3479 (interacts with) 5340", "name" : "3479 (interacts with) 5340", "interaction" : "interacts with", "SUID" : 26242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26238", "source" : "4649", "target" : "2101", "shared_name" : "3479 (interacts with) 3486", "name" : "3479 (interacts with) 3486", "interaction" : "interacts with", "SUID" : 26238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26366", "source" : "4645", "target" : "1933", "shared_name" : "84231 (interacts with) 7335", "name" : "84231 (interacts with) 7335", "interaction" : "interacts with", "SUID" : 26366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26362", "source" : "4645", "target" : "3729", "shared_name" : "84231 (interacts with) 7319", "name" : "84231 (interacts with) 7319", "interaction" : "interacts with", "SUID" : 26362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26358", "source" : "4645", "target" : "961", "shared_name" : "84231 (interacts with) 7318", "name" : "84231 (interacts with) 7318", "interaction" : "interacts with", "SUID" : 26358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26414", "source" : "4641", "target" : "5637", "shared_name" : "55331 (interacts with) 6609", "name" : "55331 (interacts with) 6609", "interaction" : "interacts with", "SUID" : 26414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26410", "source" : "4641", "target" : "901", "shared_name" : "55331 (interacts with) 8560", "name" : "55331 (interacts with) 8560", "interaction" : "interacts with", "SUID" : 26410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26406", "source" : "4641", "target" : "2893", "shared_name" : "55331 (interacts with) 79152", "name" : "55331 (interacts with) 79152", "interaction" : "interacts with", "SUID" : 26406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26402", "source" : "4641", "target" : "2245", "shared_name" : "55331 (interacts with) 5587", "name" : "55331 (interacts with) 5587", "interaction" : "interacts with", "SUID" : 26402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26398", "source" : "4641", "target" : "6041", "shared_name" : "55331 (interacts with) 9217", "name" : "55331 (interacts with) 9217", "interaction" : "interacts with", "SUID" : 26398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26394", "source" : "4641", "target" : "3025", "shared_name" : "55331 (interacts with) 55627", "name" : "55331 (interacts with) 55627", "interaction" : "interacts with", "SUID" : 26394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26390", "source" : "4641", "target" : "3325", "shared_name" : "55331 (interacts with) 9517", "name" : "55331 (interacts with) 9517", "interaction" : "interacts with", "SUID" : 26390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26386", "source" : "4641", "target" : "2853", "shared_name" : "55331 (interacts with) 8398", "name" : "55331 (interacts with) 8398", "interaction" : "interacts with", "SUID" : 26386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26382", "source" : "4641", "target" : "3893", "shared_name" : "55331 (interacts with) 151056", "name" : "55331 (interacts with) 151056", "interaction" : "interacts with", "SUID" : 26382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26378", "source" : "4641", "target" : "3177", "shared_name" : "55331 (interacts with) 5321", "name" : "55331 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 26378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26374", "source" : "4641", "target" : "385", "shared_name" : "55331 (interacts with) 5319", "name" : "55331 (interacts with) 5319", "interaction" : "interacts with", "SUID" : 26374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26370", "source" : "4641", "target" : "4133", "shared_name" : "55331 (interacts with) 427", "name" : "55331 (interacts with) 427", "interaction" : "interacts with", "SUID" : 26370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26474", "source" : "4637", "target" : "4325", "shared_name" : "25839 (interacts with) 55275", "name" : "25839 (interacts with) 55275", "interaction" : "interacts with", "SUID" : 26474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26470", "source" : "4637", "target" : "2229", "shared_name" : "25839 (interacts with) 738", "name" : "25839 (interacts with) 738", "interaction" : "interacts with", "SUID" : 26470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26466", "source" : "4637", "target" : "2301", "shared_name" : "25839 (interacts with) 9342", "name" : "25839 (interacts with) 9342", "interaction" : "interacts with", "SUID" : 26466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26462", "source" : "4637", "target" : "545", "shared_name" : "25839 (interacts with) 51014", "name" : "25839 (interacts with) 51014", "interaction" : "interacts with", "SUID" : 26462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26458", "source" : "4637", "target" : "5749", "shared_name" : "25839 (interacts with) 10959", "name" : "25839 (interacts with) 10959", "interaction" : "interacts with", "SUID" : 26458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26454", "source" : "4637", "target" : "1633", "shared_name" : "25839 (interacts with) 57731", "name" : "25839 (interacts with) 57731", "interaction" : "interacts with", "SUID" : 26454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26450", "source" : "4637", "target" : "1973", "shared_name" : "25839 (interacts with) 6709", "name" : "25839 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 26450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26446", "source" : "4637", "target" : "3637", "shared_name" : "25839 (interacts with) 6712", "name" : "25839 (interacts with) 6712", "interaction" : "interacts with", "SUID" : 26446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26442", "source" : "4637", "target" : "3149", "shared_name" : "25839 (interacts with) 3630", "name" : "25839 (interacts with) 3630", "interaction" : "interacts with", "SUID" : 26442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26438", "source" : "4637", "target" : "1997", "shared_name" : "25839 (interacts with) 2348", "name" : "25839 (interacts with) 2348", "interaction" : "interacts with", "SUID" : 26438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26434", "source" : "4637", "target" : "1269", "shared_name" : "25839 (interacts with) 9276", "name" : "25839 (interacts with) 9276", "interaction" : "interacts with", "SUID" : 26434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26430", "source" : "4637", "target" : "3301", "shared_name" : "25839 (interacts with) 91949", "name" : "25839 (interacts with) 91949", "interaction" : "interacts with", "SUID" : 26430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26426", "source" : "4637", "target" : "1541", "shared_name" : "25839 (interacts with) 958", "name" : "25839 (interacts with) 958", "interaction" : "interacts with", "SUID" : 26426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26422", "source" : "4637", "target" : "1265", "shared_name" : "25839 (interacts with) 79594", "name" : "25839 (interacts with) 79594", "interaction" : "interacts with", "SUID" : 26422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26418", "source" : "4637", "target" : "6005", "shared_name" : "25839 (interacts with) 4988", "name" : "25839 (interacts with) 4988", "interaction" : "interacts with", "SUID" : 26418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26510", "source" : "4629", "target" : "4097", "shared_name" : "6605 (interacts with) 9611", "name" : "6605 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 26510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26506", "source" : "4629", "target" : "1285", "shared_name" : "6605 (interacts with) 7249", "name" : "6605 (interacts with) 7249", "interaction" : "interacts with", "SUID" : 26506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26502", "source" : "4629", "target" : "1829", "shared_name" : "6605 (interacts with) 7421", "name" : "6605 (interacts with) 7421", "interaction" : "interacts with", "SUID" : 26502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26498", "source" : "4629", "target" : "2305", "shared_name" : "6605 (interacts with) 6908", "name" : "6605 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 26498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26494", "source" : "4629", "target" : "921", "shared_name" : "6605 (interacts with) 3880", "name" : "6605 (interacts with) 3880", "interaction" : "interacts with", "SUID" : 26494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26490", "source" : "4629", "target" : "3093", "shared_name" : "6605 (interacts with) 6597", "name" : "6605 (interacts with) 6597", "interaction" : "interacts with", "SUID" : 26490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26486", "source" : "4629", "target" : "3069", "shared_name" : "6605 (interacts with) 57492", "name" : "6605 (interacts with) 57492", "interaction" : "interacts with", "SUID" : 26486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26482", "source" : "4629", "target" : "3105", "shared_name" : "6605 (interacts with) 8289", "name" : "6605 (interacts with) 8289", "interaction" : "interacts with", "SUID" : 26482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26478", "source" : "4629", "target" : "4357", "shared_name" : "6605 (interacts with) 196528", "name" : "6605 (interacts with) 196528", "interaction" : "interacts with", "SUID" : 26478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26562", "source" : "4625", "target" : "2965", "shared_name" : "6785 (interacts with) 22880", "name" : "6785 (interacts with) 22880", "interaction" : "interacts with", "SUID" : 26562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26558", "source" : "4625", "target" : "1133", "shared_name" : "6785 (interacts with) 3418", "name" : "6785 (interacts with) 3418", "interaction" : "interacts with", "SUID" : 26558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26554", "source" : "4625", "target" : "5017", "shared_name" : "6785 (interacts with) 3417", "name" : "6785 (interacts with) 3417", "interaction" : "interacts with", "SUID" : 26554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26550", "source" : "4625", "target" : "5001", "shared_name" : "6785 (interacts with) 132158", "name" : "6785 (interacts with) 132158", "interaction" : "interacts with", "SUID" : 26550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26546", "source" : "4625", "target" : "3793", "shared_name" : "6785 (interacts with) 28965", "name" : "6785 (interacts with) 28965", "interaction" : "interacts with", "SUID" : 26546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26542", "source" : "4625", "target" : "4045", "shared_name" : "6785 (interacts with) 29920", "name" : "6785 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 26542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26538", "source" : "4625", "target" : "3501", "shared_name" : "6785 (interacts with) 5831", "name" : "6785 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 26538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26534", "source" : "4625", "target" : "5901", "shared_name" : "6785 (interacts with) 11277", "name" : "6785 (interacts with) 11277", "interaction" : "interacts with", "SUID" : 26534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26530", "source" : "4625", "target" : "3153", "shared_name" : "6785 (interacts with) 3684", "name" : "6785 (interacts with) 3684", "interaction" : "interacts with", "SUID" : 26530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26526", "source" : "4625", "target" : "1645", "shared_name" : "6785 (interacts with) 51124", "name" : "6785 (interacts with) 51124", "interaction" : "interacts with", "SUID" : 26526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26522", "source" : "4625", "target" : "2449", "shared_name" : "6785 (interacts with) 6843", "name" : "6785 (interacts with) 6843", "interaction" : "interacts with", "SUID" : 26522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26518", "source" : "4625", "target" : "4477", "shared_name" : "6785 (interacts with) 5354", "name" : "6785 (interacts with) 5354", "interaction" : "interacts with", "SUID" : 26518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26514", "source" : "4625", "target" : "6041", "shared_name" : "6785 (interacts with) 9217", "name" : "6785 (interacts with) 9217", "interaction" : "interacts with", "SUID" : 26514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26654", "source" : "4621", "target" : "4041", "shared_name" : "57038 (interacts with) 847", "name" : "57038 (interacts with) 847", "interaction" : "interacts with", "SUID" : 26654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26650", "source" : "4621", "target" : "889", "shared_name" : "57038 (interacts with) 80224", "name" : "57038 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 26650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26646", "source" : "4621", "target" : "1053", "shared_name" : "57038 (interacts with) 81689", "name" : "57038 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 26646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26642", "source" : "4621", "target" : "2009", "shared_name" : "57038 (interacts with) 79133", "name" : "57038 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 26642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26638", "source" : "4621", "target" : "4409", "shared_name" : "57038 (interacts with) 6341", "name" : "57038 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 26638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26634", "source" : "4621", "target" : "4757", "shared_name" : "57038 (interacts with) 9997", "name" : "57038 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 26634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26630", "source" : "4621", "target" : "3705", "shared_name" : "57038 (interacts with) 87178", "name" : "57038 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 26630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26626", "source" : "4621", "target" : "4101", "shared_name" : "57038 (interacts with) 65260", "name" : "57038 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 26626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26622", "source" : "4621", "target" : "6073", "shared_name" : "57038 (interacts with) 92170", "name" : "57038 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 26622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26618", "source" : "4621", "target" : "501", "shared_name" : "57038 (interacts with) 65993", "name" : "57038 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 26618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26614", "source" : "4621", "target" : "4141", "shared_name" : "57038 (interacts with) 617", "name" : "57038 (interacts with) 617", "interaction" : "interacts with", "SUID" : 26614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26610", "source" : "4621", "target" : "4693", "shared_name" : "57038 (interacts with) 6301", "name" : "57038 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 26610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26606", "source" : "4621", "target" : "1581", "shared_name" : "57038 (interacts with) 7407", "name" : "57038 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 26606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26602", "source" : "4621", "target" : "713", "shared_name" : "57038 (interacts with) 7019", "name" : "57038 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 26602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26598", "source" : "4621", "target" : "5737", "shared_name" : "57038 (interacts with) 84340", "name" : "57038 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 26598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26594", "source" : "4621", "target" : "521", "shared_name" : "57038 (interacts with) 85476", "name" : "57038 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 26594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26590", "source" : "4621", "target" : "721", "shared_name" : "57038 (interacts with) 79731", "name" : "57038 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 26590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26586", "source" : "4621", "target" : "5189", "shared_name" : "57038 (interacts with) 57176", "name" : "57038 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 26586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26582", "source" : "4621", "target" : "1197", "shared_name" : "57038 (interacts with) 79587", "name" : "57038 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 26582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26578", "source" : "4621", "target" : "1129", "shared_name" : "57038 (interacts with) 57505", "name" : "57038 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 26578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26574", "source" : "4621", "target" : "4349", "shared_name" : "57038 (interacts with) 5859", "name" : "57038 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 26574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26570", "source" : "4621", "target" : "1089", "shared_name" : "57038 (interacts with) 5917", "name" : "57038 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 26570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26566", "source" : "4621", "target" : "4869", "shared_name" : "57038 (interacts with) 92935", "name" : "57038 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 26566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26730", "source" : "4617", "target" : "5189", "shared_name" : "26227 (interacts with) 57176", "name" : "26227 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 26730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26726", "source" : "4617", "target" : "1425", "shared_name" : "26227 (interacts with) 55644", "name" : "26227 (interacts with) 55644", "interaction" : "interacts with", "SUID" : 26726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26722", "source" : "4617", "target" : "1461", "shared_name" : "26227 (interacts with) 5832", "name" : "26227 (interacts with) 5832", "interaction" : "interacts with", "SUID" : 26722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26718", "source" : "4617", "target" : "1581", "shared_name" : "26227 (interacts with) 7407", "name" : "26227 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 26718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26714", "source" : "4617", "target" : "1341", "shared_name" : "26227 (interacts with) 5009", "name" : "26227 (interacts with) 5009", "interaction" : "interacts with", "SUID" : 26714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26710", "source" : "4617", "target" : "2925", "shared_name" : "26227 (interacts with) 8802", "name" : "26227 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 26710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26706", "source" : "4617", "target" : "2337", "shared_name" : "26227 (interacts with) 28976", "name" : "26227 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 26706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26702", "source" : "4617", "target" : "397", "shared_name" : "26227 (interacts with) 50", "name" : "26227 (interacts with) 50", "interaction" : "interacts with", "SUID" : 26702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26698", "source" : "4617", "target" : "4745", "shared_name" : "26227 (interacts with) 35", "name" : "26227 (interacts with) 35", "interaction" : "interacts with", "SUID" : 26698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26694", "source" : "4617", "target" : "4349", "shared_name" : "26227 (interacts with) 5859", "name" : "26227 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 26694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26690", "source" : "4617", "target" : "4693", "shared_name" : "26227 (interacts with) 6301", "name" : "26227 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 26690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26686", "source" : "4617", "target" : "5349", "shared_name" : "26227 (interacts with) 440", "name" : "26227 (interacts with) 440", "interaction" : "interacts with", "SUID" : 26686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26682", "source" : "4617", "target" : "3537", "shared_name" : "26227 (interacts with) 501", "name" : "26227 (interacts with) 501", "interaction" : "interacts with", "SUID" : 26682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26678", "source" : "4617", "target" : "5777", "shared_name" : "26227 (interacts with) 383", "name" : "26227 (interacts with) 383", "interaction" : "interacts with", "SUID" : 26678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26674", "source" : "4617", "target" : "1749", "shared_name" : "26227 (interacts with) 728294", "name" : "26227 (interacts with) 728294", "interaction" : "interacts with", "SUID" : 26674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26670", "source" : "4617", "target" : "2365", "shared_name" : "26227 (interacts with) 2731", "name" : "26227 (interacts with) 2731", "interaction" : "interacts with", "SUID" : 26670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26666", "source" : "4617", "target" : "5593", "shared_name" : "26227 (interacts with) 875", "name" : "26227 (interacts with) 875", "interaction" : "interacts with", "SUID" : 26666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26662", "source" : "4617", "target" : "3461", "shared_name" : "26227 (interacts with) 5538", "name" : "26227 (interacts with) 5538", "interaction" : "interacts with", "SUID" : 26662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26658", "source" : "4617", "target" : "4185", "shared_name" : "26227 (interacts with) 29968", "name" : "26227 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 26658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26742", "source" : "4613", "target" : "3329", "shared_name" : "84896 (interacts with) 5824", "name" : "84896 (interacts with) 5824", "interaction" : "interacts with", "SUID" : 26742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26738", "source" : "4613", "target" : "3341", "shared_name" : "84896 (interacts with) 8504", "name" : "84896 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 26738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26734", "source" : "4613", "target" : "2221", "shared_name" : "84896 (interacts with) 26580", "name" : "84896 (interacts with) 26580", "interaction" : "interacts with", "SUID" : 26734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26750", "source" : "4609", "target" : "1941", "shared_name" : "84153 (interacts with) 10535", "name" : "84153 (interacts with) 10535", "interaction" : "interacts with", "SUID" : 26750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26746", "source" : "4609", "target" : "4053", "shared_name" : "84153 (interacts with) 79621", "name" : "84153 (interacts with) 79621", "interaction" : "interacts with", "SUID" : 26746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26754", "source" : "4605", "target" : "2829", "shared_name" : "7276 (interacts with) 10577", "name" : "7276 (interacts with) 10577", "interaction" : "interacts with", "SUID" : 26754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26902", "source" : "4597", "target" : "4309", "shared_name" : "3376 (interacts with) 5654", "name" : "3376 (interacts with) 5654", "interaction" : "interacts with", "SUID" : 26902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26898", "source" : "4597", "target" : "3037", "shared_name" : "3376 (interacts with) 8813", "name" : "3376 (interacts with) 8813", "interaction" : "interacts with", "SUID" : 26898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26894", "source" : "4597", "target" : "5861", "shared_name" : "3376 (interacts with) 5435", "name" : "3376 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 26894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26890", "source" : "4597", "target" : "781", "shared_name" : "3376 (interacts with) 4860", "name" : "3376 (interacts with) 4860", "interaction" : "interacts with", "SUID" : 26890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26886", "source" : "4597", "target" : "2457", "shared_name" : "3376 (interacts with) 4143", "name" : "3376 (interacts with) 4143", "interaction" : "interacts with", "SUID" : 26886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26882", "source" : "4597", "target" : "5349", "shared_name" : "3376 (interacts with) 440", "name" : "3376 (interacts with) 440", "interaction" : "interacts with", "SUID" : 26882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26878", "source" : "4597", "target" : "517", "shared_name" : "3376 (interacts with) 5052", "name" : "3376 (interacts with) 5052", "interaction" : "interacts with", "SUID" : 26878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26874", "source" : "4597", "target" : "1577", "shared_name" : "3376 (interacts with) 51091", "name" : "3376 (interacts with) 51091", "interaction" : "interacts with", "SUID" : 26874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26870", "source" : "4597", "target" : "4869", "shared_name" : "3376 (interacts with) 92935", "name" : "3376 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 26870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26866", "source" : "4597", "target" : "3633", "shared_name" : "3376 (interacts with) 51067", "name" : "3376 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 26866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26862", "source" : "4597", "target" : "5189", "shared_name" : "3376 (interacts with) 57176", "name" : "3376 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 26862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26858", "source" : "4597", "target" : "1129", "shared_name" : "3376 (interacts with) 57505", "name" : "3376 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 26858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26854", "source" : "4597", "target" : "1197", "shared_name" : "3376 (interacts with) 79587", "name" : "3376 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 26854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26850", "source" : "4597", "target" : "721", "shared_name" : "3376 (interacts with) 79731", "name" : "3376 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 26850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26846", "source" : "4597", "target" : "6001", "shared_name" : "3376 (interacts with) 55157", "name" : "3376 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 26846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26842", "source" : "4597", "target" : "4621", "shared_name" : "3376 (interacts with) 57038", "name" : "3376 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 26842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26838", "source" : "4597", "target" : "4349", "shared_name" : "3376 (interacts with) 5859", "name" : "3376 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 26838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26834", "source" : "4597", "target" : "3157", "shared_name" : "3376 (interacts with) 9255", "name" : "3376 (interacts with) 9255", "interaction" : "interacts with", "SUID" : 26834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26830", "source" : "4597", "target" : "4693", "shared_name" : "3376 (interacts with) 6301", "name" : "3376 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 26830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26826", "source" : "4597", "target" : "3649", "shared_name" : "3376 (interacts with) 51520", "name" : "3376 (interacts with) 51520", "interaction" : "interacts with", "SUID" : 26826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26822", "source" : "4597", "target" : "1581", "shared_name" : "3376 (interacts with) 7407", "name" : "3376 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 26822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26818", "source" : "4597", "target" : "6157", "shared_name" : "3376 (interacts with) 3735", "name" : "3376 (interacts with) 3735", "interaction" : "interacts with", "SUID" : 26818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26814", "source" : "4597", "target" : "1089", "shared_name" : "3376 (interacts with) 5917", "name" : "3376 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 26814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26810", "source" : "4597", "target" : "4085", "shared_name" : "3376 (interacts with) 55699", "name" : "3376 (interacts with) 55699", "interaction" : "interacts with", "SUID" : 26810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26806", "source" : "4597", "target" : "1013", "shared_name" : "3376 (interacts with) 6898", "name" : "3376 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 26806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26802", "source" : "4597", "target" : "741", "shared_name" : "3376 (interacts with) 4830", "name" : "3376 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 26802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26798", "source" : "4597", "target" : "5605", "shared_name" : "3376 (interacts with) 51601", "name" : "3376 (interacts with) 51601", "interaction" : "interacts with", "SUID" : 26798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26794", "source" : "4597", "target" : "1885", "shared_name" : "3376 (interacts with) 8604", "name" : "3376 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 26794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26790", "source" : "4597", "target" : "1385", "shared_name" : "3376 (interacts with) 6520", "name" : "3376 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 26790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26786", "source" : "4597", "target" : "3077", "shared_name" : "3376 (interacts with) 6506", "name" : "3376 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 26786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26782", "source" : "4597", "target" : "2049", "shared_name" : "3376 (interacts with) 4552", "name" : "3376 (interacts with) 4552", "interaction" : "interacts with", "SUID" : 26782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26778", "source" : "4597", "target" : "4273", "shared_name" : "3376 (interacts with) 4548", "name" : "3376 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 26778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26774", "source" : "4597", "target" : "461", "shared_name" : "3376 (interacts with) 5198", "name" : "3376 (interacts with) 5198", "interaction" : "interacts with", "SUID" : 26774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26770", "source" : "4597", "target" : "2577", "shared_name" : "3376 (interacts with) 4337", "name" : "3376 (interacts with) 4337", "interaction" : "interacts with", "SUID" : 26770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26766", "source" : "4597", "target" : "3641", "shared_name" : "3376 (interacts with) 4141", "name" : "3376 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 26766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26762", "source" : "4597", "target" : "3169", "shared_name" : "3376 (interacts with) 1615", "name" : "3376 (interacts with) 1615", "interaction" : "interacts with", "SUID" : 26762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26758", "source" : "4597", "target" : "3529", "shared_name" : "3376 (interacts with) 7965", "name" : "3376 (interacts with) 7965", "interaction" : "interacts with", "SUID" : 26758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27094", "source" : "4593", "target" : "2189", "shared_name" : "2058 (interacts with) 84705", "name" : "2058 (interacts with) 84705", "interaction" : "interacts with", "SUID" : 27094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27090", "source" : "4593", "target" : "1473", "shared_name" : "2058 (interacts with) 4524", "name" : "2058 (interacts with) 4524", "interaction" : "interacts with", "SUID" : 27090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27086", "source" : "4593", "target" : "5593", "shared_name" : "2058 (interacts with) 875", "name" : "2058 (interacts with) 875", "interaction" : "interacts with", "SUID" : 27086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27082", "source" : "4593", "target" : "3037", "shared_name" : "2058 (interacts with) 8813", "name" : "2058 (interacts with) 8813", "interaction" : "interacts with", "SUID" : 27082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27078", "source" : "4593", "target" : "1385", "shared_name" : "2058 (interacts with) 6520", "name" : "2058 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 27078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27074", "source" : "4593", "target" : "4617", "shared_name" : "2058 (interacts with) 26227", "name" : "2058 (interacts with) 26227", "interaction" : "interacts with", "SUID" : 27074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27070", "source" : "4593", "target" : "5861", "shared_name" : "2058 (interacts with) 5435", "name" : "2058 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 27070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27066", "source" : "4593", "target" : "517", "shared_name" : "2058 (interacts with) 5052", "name" : "2058 (interacts with) 5052", "interaction" : "interacts with", "SUID" : 27066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27062", "source" : "4593", "target" : "2945", "shared_name" : "2058 (interacts with) 471", "name" : "2058 (interacts with) 471", "interaction" : "interacts with", "SUID" : 27062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27058", "source" : "4593", "target" : "5349", "shared_name" : "2058 (interacts with) 440", "name" : "2058 (interacts with) 440", "interaction" : "interacts with", "SUID" : 27058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27054", "source" : "4593", "target" : "1269", "shared_name" : "2058 (interacts with) 9276", "name" : "2058 (interacts with) 9276", "interaction" : "interacts with", "SUID" : 27054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27050", "source" : "4593", "target" : "2733", "shared_name" : "2058 (interacts with) 5718", "name" : "2058 (interacts with) 5718", "interaction" : "interacts with", "SUID" : 27050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27046", "source" : "4593", "target" : "4869", "shared_name" : "2058 (interacts with) 92935", "name" : "2058 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 27046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27042", "source" : "4593", "target" : "1577", "shared_name" : "2058 (interacts with) 51091", "name" : "2058 (interacts with) 51091", "interaction" : "interacts with", "SUID" : 27042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27038", "source" : "4593", "target" : "4085", "shared_name" : "2058 (interacts with) 55699", "name" : "2058 (interacts with) 55699", "interaction" : "interacts with", "SUID" : 27038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27034", "source" : "4593", "target" : "4621", "shared_name" : "2058 (interacts with) 57038", "name" : "2058 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 27034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27030", "source" : "4593", "target" : "5189", "shared_name" : "2058 (interacts with) 57176", "name" : "2058 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 27030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27026", "source" : "4593", "target" : "3633", "shared_name" : "2058 (interacts with) 51067", "name" : "2058 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 27026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27022", "source" : "4593", "target" : "6001", "shared_name" : "2058 (interacts with) 55157", "name" : "2058 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 27022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27018", "source" : "4593", "target" : "5393", "shared_name" : "2058 (interacts with) 2395", "name" : "2058 (interacts with) 2395", "interaction" : "interacts with", "SUID" : 27018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27014", "source" : "4593", "target" : "6089", "shared_name" : "2058 (interacts with) 3145", "name" : "2058 (interacts with) 3145", "interaction" : "interacts with", "SUID" : 27014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27010", "source" : "4593", "target" : "1129", "shared_name" : "2058 (interacts with) 57505", "name" : "2058 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 27010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27006", "source" : "4593", "target" : "721", "shared_name" : "2058 (interacts with) 79731", "name" : "2058 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 27006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27002", "source" : "4593", "target" : "1197", "shared_name" : "2058 (interacts with) 79587", "name" : "2058 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 27002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26998", "source" : "4593", "target" : "6157", "shared_name" : "2058 (interacts with) 3735", "name" : "2058 (interacts with) 3735", "interaction" : "interacts with", "SUID" : 26998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26994", "source" : "4593", "target" : "4349", "shared_name" : "2058 (interacts with) 5859", "name" : "2058 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 26994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26990", "source" : "4593", "target" : "4229", "shared_name" : "2058 (interacts with) 3035", "name" : "2058 (interacts with) 3035", "interaction" : "interacts with", "SUID" : 26990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26986", "source" : "4593", "target" : "3157", "shared_name" : "2058 (interacts with) 9255", "name" : "2058 (interacts with) 9255", "interaction" : "interacts with", "SUID" : 26986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26982", "source" : "4593", "target" : "1581", "shared_name" : "2058 (interacts with) 7407", "name" : "2058 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 26982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26978", "source" : "4593", "target" : "3649", "shared_name" : "2058 (interacts with) 51520", "name" : "2058 (interacts with) 51520", "interaction" : "interacts with", "SUID" : 26978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26974", "source" : "4593", "target" : "1089", "shared_name" : "2058 (interacts with) 5917", "name" : "2058 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 26974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26970", "source" : "4593", "target" : "1013", "shared_name" : "2058 (interacts with) 6898", "name" : "2058 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 26970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26966", "source" : "4593", "target" : "3641", "shared_name" : "2058 (interacts with) 4141", "name" : "2058 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 26966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26962", "source" : "4593", "target" : "6049", "shared_name" : "2058 (interacts with) 25973", "name" : "2058 (interacts with) 25973", "interaction" : "interacts with", "SUID" : 26962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26958", "source" : "4593", "target" : "4693", "shared_name" : "2058 (interacts with) 6301", "name" : "2058 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 26958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26954", "source" : "4593", "target" : "1885", "shared_name" : "2058 (interacts with) 8604", "name" : "2058 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 26954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26950", "source" : "4593", "target" : "3077", "shared_name" : "2058 (interacts with) 6506", "name" : "2058 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 26950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26946", "source" : "4593", "target" : "2049", "shared_name" : "2058 (interacts with) 4552", "name" : "2058 (interacts with) 4552", "interaction" : "interacts with", "SUID" : 26946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26942", "source" : "4593", "target" : "4273", "shared_name" : "2058 (interacts with) 4548", "name" : "2058 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 26942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26938", "source" : "4593", "target" : "461", "shared_name" : "2058 (interacts with) 5198", "name" : "2058 (interacts with) 5198", "interaction" : "interacts with", "SUID" : 26938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26934", "source" : "4593", "target" : "2577", "shared_name" : "2058 (interacts with) 4337", "name" : "2058 (interacts with) 4337", "interaction" : "interacts with", "SUID" : 26934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26930", "source" : "4593", "target" : "5529", "shared_name" : "2058 (interacts with) 2875", "name" : "2058 (interacts with) 2875", "interaction" : "interacts with", "SUID" : 26930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26926", "source" : "4593", "target" : "2421", "shared_name" : "2058 (interacts with) 2673", "name" : "2058 (interacts with) 2673", "interaction" : "interacts with", "SUID" : 26926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26922", "source" : "4593", "target" : "4093", "shared_name" : "2058 (interacts with) 2752", "name" : "2058 (interacts with) 2752", "interaction" : "interacts with", "SUID" : 26922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26918", "source" : "4593", "target" : "2917", "shared_name" : "2058 (interacts with) 5451", "name" : "2058 (interacts with) 5451", "interaction" : "interacts with", "SUID" : 26918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26914", "source" : "4593", "target" : "4597", "shared_name" : "2058 (interacts with) 3376", "name" : "2058 (interacts with) 3376", "interaction" : "interacts with", "SUID" : 26914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26910", "source" : "4593", "target" : "3529", "shared_name" : "2058 (interacts with) 7965", "name" : "2058 (interacts with) 7965", "interaction" : "interacts with", "SUID" : 26910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "26906", "source" : "4593", "target" : "2549", "shared_name" : "2058 (interacts with) 9319", "name" : "2058 (interacts with) 9319", "interaction" : "interacts with", "SUID" : 26906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27102", "source" : "4589", "target" : "4097", "shared_name" : "8431 (interacts with) 9611", "name" : "8431 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 27102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27098", "source" : "4589", "target" : "2957", "shared_name" : "8431 (interacts with) 5465", "name" : "8431 (interacts with) 5465", "interaction" : "interacts with", "SUID" : 27098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27202", "source" : "4585", "target" : "3889", "shared_name" : "11041 (interacts with) 1605", "name" : "11041 (interacts with) 1605", "interaction" : "interacts with", "SUID" : 27202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27198", "source" : "4585", "target" : "4685", "shared_name" : "11041 (interacts with) 2218", "name" : "11041 (interacts with) 2218", "interaction" : "interacts with", "SUID" : 27198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27194", "source" : "4585", "target" : "1033", "shared_name" : "11041 (interacts with) 9215", "name" : "11041 (interacts with) 9215", "interaction" : "interacts with", "SUID" : 27194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27190", "source" : "4585", "target" : "4337", "shared_name" : "11041 (interacts with) 84197", "name" : "11041 (interacts with) 84197", "interaction" : "interacts with", "SUID" : 27190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27186", "source" : "4585", "target" : "4481", "shared_name" : "11041 (interacts with) 55624", "name" : "11041 (interacts with) 55624", "interaction" : "interacts with", "SUID" : 27186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27182", "source" : "4585", "target" : "4081", "shared_name" : "11041 (interacts with) 148789", "name" : "11041 (interacts with) 148789", "interaction" : "interacts with", "SUID" : 27182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27178", "source" : "4585", "target" : "6137", "shared_name" : "11041 (interacts with) 29954", "name" : "11041 (interacts with) 29954", "interaction" : "interacts with", "SUID" : 27178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27174", "source" : "4585", "target" : "3705", "shared_name" : "11041 (interacts with) 87178", "name" : "11041 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 27174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27170", "source" : "4585", "target" : "6133", "shared_name" : "11041 (interacts with) 54658", "name" : "11041 (interacts with) 54658", "interaction" : "interacts with", "SUID" : 27170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27166", "source" : "4585", "target" : "1545", "shared_name" : "11041 (interacts with) 5277", "name" : "11041 (interacts with) 5277", "interaction" : "interacts with", "SUID" : 27166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27162", "source" : "4585", "target" : "4989", "shared_name" : "11041 (interacts with) 51227", "name" : "11041 (interacts with) 51227", "interaction" : "interacts with", "SUID" : 27162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27158", "source" : "4585", "target" : "985", "shared_name" : "11041 (interacts with) 9091", "name" : "11041 (interacts with) 9091", "interaction" : "interacts with", "SUID" : 27158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27154", "source" : "4585", "target" : "5561", "shared_name" : "11041 (interacts with) 4247", "name" : "11041 (interacts with) 4247", "interaction" : "interacts with", "SUID" : 27154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27150", "source" : "4585", "target" : "5753", "shared_name" : "11041 (interacts with) 2581", "name" : "11041 (interacts with) 2581", "interaction" : "interacts with", "SUID" : 27150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27146", "source" : "4585", "target" : "4193", "shared_name" : "11041 (interacts with) 2720", "name" : "11041 (interacts with) 2720", "interaction" : "interacts with", "SUID" : 27146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27142", "source" : "4585", "target" : "2517", "shared_name" : "11041 (interacts with) 1798", "name" : "11041 (interacts with) 1798", "interaction" : "interacts with", "SUID" : 27142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27138", "source" : "4585", "target" : "1697", "shared_name" : "11041 (interacts with) 8818", "name" : "11041 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 27138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27134", "source" : "4585", "target" : "2933", "shared_name" : "11041 (interacts with) 10585", "name" : "11041 (interacts with) 10585", "interaction" : "interacts with", "SUID" : 27134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27130", "source" : "4585", "target" : "4565", "shared_name" : "11041 (interacts with) 57498", "name" : "11041 (interacts with) 57498", "interaction" : "interacts with", "SUID" : 27130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27126", "source" : "4585", "target" : "4741", "shared_name" : "11041 (interacts with) 79147", "name" : "11041 (interacts with) 79147", "interaction" : "interacts with", "SUID" : 27126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27122", "source" : "4585", "target" : "2525", "shared_name" : "11041 (interacts with) 9451", "name" : "11041 (interacts with) 9451", "interaction" : "interacts with", "SUID" : 27122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27118", "source" : "4585", "target" : "2109", "shared_name" : "11041 (interacts with) 51103", "name" : "11041 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 27118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27114", "source" : "4585", "target" : "665", "shared_name" : "11041 (interacts with) 3309", "name" : "11041 (interacts with) 3309", "interaction" : "interacts with", "SUID" : 27114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27110", "source" : "4585", "target" : "2221", "shared_name" : "11041 (interacts with) 26580", "name" : "11041 (interacts with) 26580", "interaction" : "interacts with", "SUID" : 27110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27106", "source" : "4585", "target" : "5345", "shared_name" : "11041 (interacts with) 9213", "name" : "11041 (interacts with) 9213", "interaction" : "interacts with", "SUID" : 27106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27246", "source" : "4581", "target" : "569", "shared_name" : "29110 (interacts with) 7048", "name" : "29110 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 27246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27242", "source" : "4581", "target" : "5693", "shared_name" : "29110 (interacts with) 92335", "name" : "29110 (interacts with) 92335", "interaction" : "interacts with", "SUID" : 27242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27238", "source" : "4581", "target" : "3697", "shared_name" : "29110 (interacts with) 7099", "name" : "29110 (interacts with) 7099", "interaction" : "interacts with", "SUID" : 27238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27234", "source" : "4581", "target" : "2841", "shared_name" : "29110 (interacts with) 7098", "name" : "29110 (interacts with) 7098", "interaction" : "interacts with", "SUID" : 27234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27230", "source" : "4581", "target" : "2525", "shared_name" : "29110 (interacts with) 9451", "name" : "29110 (interacts with) 9451", "interaction" : "interacts with", "SUID" : 27230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27226", "source" : "4581", "target" : "3349", "shared_name" : "29110 (interacts with) 8878", "name" : "29110 (interacts with) 8878", "interaction" : "interacts with", "SUID" : 27226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27222", "source" : "4581", "target" : "5293", "shared_name" : "29110 (interacts with) 54476", "name" : "29110 (interacts with) 54476", "interaction" : "interacts with", "SUID" : 27222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27218", "source" : "4581", "target" : "5509", "shared_name" : "29110 (interacts with) 207", "name" : "29110 (interacts with) 207", "interaction" : "interacts with", "SUID" : 27218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27214", "source" : "4581", "target" : "3817", "shared_name" : "29110 (interacts with) 3663", "name" : "29110 (interacts with) 3663", "interaction" : "interacts with", "SUID" : 27214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27210", "source" : "4581", "target" : "2637", "shared_name" : "29110 (interacts with) 353376", "name" : "29110 (interacts with) 353376", "interaction" : "interacts with", "SUID" : 27210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27206", "source" : "4581", "target" : "509", "shared_name" : "29110 (interacts with) 3661", "name" : "29110 (interacts with) 3661", "interaction" : "interacts with", "SUID" : 27206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27254", "source" : "4577", "target" : "3705", "shared_name" : "7167 (interacts with) 87178", "name" : "7167 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 27254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27250", "source" : "4577", "target" : "1885", "shared_name" : "7167 (interacts with) 8604", "name" : "7167 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 27250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27258", "source" : "4573", "target" : "2253", "shared_name" : "23261 (interacts with) 253738", "name" : "23261 (interacts with) 253738", "interaction" : "interacts with", "SUID" : 27258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27266", "source" : "4569", "target" : "3705", "shared_name" : "2548 (interacts with) 87178", "name" : "2548 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 27266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27262", "source" : "4569", "target" : "4777", "shared_name" : "2548 (interacts with) 2632", "name" : "2548 (interacts with) 2632", "interaction" : "interacts with", "SUID" : 27262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27282", "source" : "4565", "target" : "5345", "shared_name" : "57498 (interacts with) 9213", "name" : "57498 (interacts with) 9213", "interaction" : "interacts with", "SUID" : 27282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27278", "source" : "4565", "target" : "2925", "shared_name" : "57498 (interacts with) 8802", "name" : "57498 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 27278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27274", "source" : "4565", "target" : "3745", "shared_name" : "57498 (interacts with) 4803", "name" : "57498 (interacts with) 4803", "interaction" : "interacts with", "SUID" : 27274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27270", "source" : "4565", "target" : "4237", "shared_name" : "57498 (interacts with) 4914", "name" : "57498 (interacts with) 4914", "interaction" : "interacts with", "SUID" : 27270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27286", "source" : "4561", "target" : "5737", "shared_name" : "4976 (interacts with) 84340", "name" : "4976 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 27286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27326", "source" : "4553", "target" : "4017", "shared_name" : "10102 (interacts with) 4719", "name" : "10102 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 27326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27322", "source" : "4553", "target" : "4945", "shared_name" : "10102 (interacts with) 4722", "name" : "10102 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 27322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27318", "source" : "4553", "target" : "1573", "shared_name" : "10102 (interacts with) 4723", "name" : "10102 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 27318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27314", "source" : "4553", "target" : "5353", "shared_name" : "10102 (interacts with) 2026", "name" : "10102 (interacts with) 2026", "interaction" : "interacts with", "SUID" : 27314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27310", "source" : "4553", "target" : "2797", "shared_name" : "10102 (interacts with) 4728", "name" : "10102 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 27310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27306", "source" : "4553", "target" : "2129", "shared_name" : "10102 (interacts with) 11019", "name" : "10102 (interacts with) 11019", "interaction" : "interacts with", "SUID" : 27306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27302", "source" : "4553", "target" : "4261", "shared_name" : "10102 (interacts with) 124454", "name" : "10102 (interacts with) 124454", "interaction" : "interacts with", "SUID" : 27302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27298", "source" : "4553", "target" : "6049", "shared_name" : "10102 (interacts with) 25973", "name" : "10102 (interacts with) 25973", "interaction" : "interacts with", "SUID" : 27298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27294", "source" : "4553", "target" : "4461", "shared_name" : "10102 (interacts with) 79947", "name" : "10102 (interacts with) 79947", "interaction" : "interacts with", "SUID" : 27294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27290", "source" : "4553", "target" : "1325", "shared_name" : "10102 (interacts with) 7284", "name" : "10102 (interacts with) 7284", "interaction" : "interacts with", "SUID" : 27290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27378", "source" : "4549", "target" : "1533", "shared_name" : "5903 (interacts with) 84162", "name" : "5903 (interacts with) 84162", "interaction" : "interacts with", "SUID" : 27378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27374", "source" : "4549", "target" : "5445", "shared_name" : "5903 (interacts with) 8021", "name" : "5903 (interacts with) 8021", "interaction" : "interacts with", "SUID" : 27374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27370", "source" : "4549", "target" : "5409", "shared_name" : "5903 (interacts with) 9734", "name" : "5903 (interacts with) 9734", "interaction" : "interacts with", "SUID" : 27370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27366", "source" : "4549", "target" : "3053", "shared_name" : "5903 (interacts with) 23299", "name" : "5903 (interacts with) 23299", "interaction" : "interacts with", "SUID" : 27366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27362", "source" : "4549", "target" : "877", "shared_name" : "5903 (interacts with) 7341", "name" : "5903 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 27362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27358", "source" : "4549", "target" : "1217", "shared_name" : "5903 (interacts with) 3308", "name" : "5903 (interacts with) 3308", "interaction" : "interacts with", "SUID" : 27358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27354", "source" : "4549", "target" : "2169", "shared_name" : "5903 (interacts with) 51182", "name" : "5903 (interacts with) 51182", "interaction" : "interacts with", "SUID" : 27354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27350", "source" : "4549", "target" : "4797", "shared_name" : "5903 (interacts with) 10735", "name" : "5903 (interacts with) 10735", "interaction" : "interacts with", "SUID" : 27350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27346", "source" : "4549", "target" : "5781", "shared_name" : "5903 (interacts with) 6672", "name" : "5903 (interacts with) 6672", "interaction" : "interacts with", "SUID" : 27346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27342", "source" : "4549", "target" : "4497", "shared_name" : "5903 (interacts with) 8243", "name" : "5903 (interacts with) 8243", "interaction" : "interacts with", "SUID" : 27342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27338", "source" : "4549", "target" : "1349", "shared_name" : "5903 (interacts with) 6606", "name" : "5903 (interacts with) 6606", "interaction" : "interacts with", "SUID" : 27338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27334", "source" : "4549", "target" : "1345", "shared_name" : "5903 (interacts with) 6607", "name" : "5903 (interacts with) 6607", "interaction" : "interacts with", "SUID" : 27334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27330", "source" : "4549", "target" : "1837", "shared_name" : "5903 (interacts with) 9939", "name" : "5903 (interacts with) 9939", "interaction" : "interacts with", "SUID" : 27330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27382", "source" : "4545", "target" : "497", "shared_name" : "9895 (interacts with) 65082", "name" : "9895 (interacts with) 65082", "interaction" : "interacts with", "SUID" : 27382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27402", "source" : "4541", "target" : "1117", "shared_name" : "65018 (interacts with) 9927", "name" : "65018 (interacts with) 9927", "interaction" : "interacts with", "SUID" : 27402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27398", "source" : "4541", "target" : "3349", "shared_name" : "65018 (interacts with) 8878", "name" : "65018 (interacts with) 8878", "interaction" : "interacts with", "SUID" : 27398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27394", "source" : "4541", "target" : "2685", "shared_name" : "65018 (interacts with) 9474", "name" : "65018 (interacts with) 9474", "interaction" : "interacts with", "SUID" : 27394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27390", "source" : "4541", "target" : "4957", "shared_name" : "65018 (interacts with) 5071", "name" : "65018 (interacts with) 5071", "interaction" : "interacts with", "SUID" : 27390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27386", "source" : "4541", "target" : "2125", "shared_name" : "65018 (interacts with) 2512", "name" : "65018 (interacts with) 2512", "interaction" : "interacts with", "SUID" : 27386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27462", "source" : "4537", "target" : "4949", "shared_name" : "2697 (interacts with) 5970", "name" : "2697 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 27462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27458", "source" : "4537", "target" : "4213", "shared_name" : "2697 (interacts with) 5295", "name" : "2697 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 27458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27454", "source" : "4537", "target" : "5225", "shared_name" : "2697 (interacts with) 5290", "name" : "2697 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 27454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27450", "source" : "4537", "target" : "2085", "shared_name" : "2697 (interacts with) 2932", "name" : "2697 (interacts with) 2932", "interaction" : "interacts with", "SUID" : 27450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27446", "source" : "4537", "target" : "5037", "shared_name" : "2697 (interacts with) 5515", "name" : "2697 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 27446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27442", "source" : "4537", "target" : "3017", "shared_name" : "2697 (interacts with) 4790", "name" : "2697 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 27442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27438", "source" : "4537", "target" : "5625", "shared_name" : "2697 (interacts with) 595", "name" : "2697 (interacts with) 595", "interaction" : "interacts with", "SUID" : 27438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27434", "source" : "4537", "target" : "5745", "shared_name" : "2697 (interacts with) 7471", "name" : "2697 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 27434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27430", "source" : "4537", "target" : "1249", "shared_name" : "2697 (interacts with) 2705", "name" : "2697 (interacts with) 2705", "interaction" : "interacts with", "SUID" : 27430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27426", "source" : "4537", "target" : "213", "shared_name" : "2697 (interacts with) 57165", "name" : "2697 (interacts with) 57165", "interaction" : "interacts with", "SUID" : 27426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27422", "source" : "4537", "target" : "689", "shared_name" : "2697 (interacts with) 6329", "name" : "2697 (interacts with) 6329", "interaction" : "interacts with", "SUID" : 27422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27418", "source" : "4537", "target" : "4661", "shared_name" : "2697 (interacts with) 6813", "name" : "2697 (interacts with) 6813", "interaction" : "interacts with", "SUID" : 27418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27414", "source" : "4537", "target" : "609", "shared_name" : "2697 (interacts with) 6812", "name" : "2697 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 27414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27410", "source" : "4537", "target" : "4585", "shared_name" : "2697 (interacts with) 11041", "name" : "2697 (interacts with) 11041", "interaction" : "interacts with", "SUID" : 27410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27406", "source" : "4537", "target" : "5981", "shared_name" : "2697 (interacts with) 1917", "name" : "2697 (interacts with) 1917", "interaction" : "interacts with", "SUID" : 27406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27582", "source" : "4533", "target" : "4213", "shared_name" : "4089 (interacts with) 5295", "name" : "4089 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 27582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27578", "source" : "4533", "target" : "4949", "shared_name" : "4089 (interacts with) 5970", "name" : "4089 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 27578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27574", "source" : "4533", "target" : "973", "shared_name" : "4089 (interacts with) 5595", "name" : "4089 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 27574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27570", "source" : "4533", "target" : "5225", "shared_name" : "4089 (interacts with) 5290", "name" : "4089 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 27570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27566", "source" : "4533", "target" : "3017", "shared_name" : "4089 (interacts with) 4790", "name" : "4089 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 27566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27562", "source" : "4533", "target" : "5361", "shared_name" : "4089 (interacts with) 5604", "name" : "4089 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 27562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27558", "source" : "4533", "target" : "4065", "shared_name" : "4089 (interacts with) 7124", "name" : "4089 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 27558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27554", "source" : "4533", "target" : "3409", "shared_name" : "4089 (interacts with) 7043", "name" : "4089 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 27554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27550", "source" : "4533", "target" : "3305", "shared_name" : "4089 (interacts with) 7040", "name" : "4089 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 27550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27546", "source" : "4533", "target" : "2153", "shared_name" : "4089 (interacts with) 7042", "name" : "4089 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 27546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27542", "source" : "4533", "target" : "5037", "shared_name" : "4089 (interacts with) 5515", "name" : "4089 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 27542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27538", "source" : "4533", "target" : "981", "shared_name" : "4089 (interacts with) 7157", "name" : "4089 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 27538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27534", "source" : "4533", "target" : "5625", "shared_name" : "4089 (interacts with) 595", "name" : "4089 (interacts with) 595", "interaction" : "interacts with", "SUID" : 27534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27530", "source" : "4533", "target" : "5761", "shared_name" : "4089 (interacts with) 4208", "name" : "4089 (interacts with) 4208", "interaction" : "interacts with", "SUID" : 27530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27526", "source" : "4533", "target" : "2613", "shared_name" : "4089 (interacts with) 472", "name" : "4089 (interacts with) 472", "interaction" : "interacts with", "SUID" : 27526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27522", "source" : "4533", "target" : "569", "shared_name" : "4089 (interacts with) 7048", "name" : "4089 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 27522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27518", "source" : "4533", "target" : "2433", "shared_name" : "4089 (interacts with) 6927", "name" : "4089 (interacts with) 6927", "interaction" : "interacts with", "SUID" : 27518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27514", "source" : "4533", "target" : "5745", "shared_name" : "4089 (interacts with) 7471", "name" : "4089 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 27514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27510", "source" : "4533", "target" : "817", "shared_name" : "4089 (interacts with) 5728", "name" : "4089 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 27510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27506", "source" : "4533", "target" : "4853", "shared_name" : "4089 (interacts with) 545", "name" : "4089 (interacts with) 545", "interaction" : "interacts with", "SUID" : 27506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27502", "source" : "4533", "target" : "1789", "shared_name" : "4089 (interacts with) 652", "name" : "4089 (interacts with) 652", "interaction" : "interacts with", "SUID" : 27502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27498", "source" : "4533", "target" : "2921", "shared_name" : "4089 (interacts with) 5981", "name" : "4089 (interacts with) 5981", "interaction" : "interacts with", "SUID" : 27498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27494", "source" : "4533", "target" : "1897", "shared_name" : "4089 (interacts with) 79753", "name" : "4089 (interacts with) 79753", "interaction" : "interacts with", "SUID" : 27494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27490", "source" : "4533", "target" : "5077", "shared_name" : "4089 (interacts with) 8239", "name" : "4089 (interacts with) 8239", "interaction" : "interacts with", "SUID" : 27490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27486", "source" : "4533", "target" : "5445", "shared_name" : "4089 (interacts with) 8021", "name" : "4089 (interacts with) 8021", "interaction" : "interacts with", "SUID" : 27486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27482", "source" : "4533", "target" : "661", "shared_name" : "4089 (interacts with) 6657", "name" : "4089 (interacts with) 6657", "interaction" : "interacts with", "SUID" : 27482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27478", "source" : "4533", "target" : "5673", "shared_name" : "4089 (interacts with) 6497", "name" : "4089 (interacts with) 6497", "interaction" : "interacts with", "SUID" : 27478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27474", "source" : "4533", "target" : "5509", "shared_name" : "4089 (interacts with) 207", "name" : "4089 (interacts with) 207", "interaction" : "interacts with", "SUID" : 27474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27470", "source" : "4533", "target" : "6169", "shared_name" : "4089 (interacts with) 4088", "name" : "4089 (interacts with) 4088", "interaction" : "interacts with", "SUID" : 27470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27466", "source" : "4533", "target" : "809", "shared_name" : "4089 (interacts with) 2335", "name" : "4089 (interacts with) 2335", "interaction" : "interacts with", "SUID" : 27466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27654", "source" : "4525", "target" : "4745", "shared_name" : "1666 (interacts with) 35", "name" : "1666 (interacts with) 35", "interaction" : "interacts with", "SUID" : 27654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27650", "source" : "4525", "target" : "2337", "shared_name" : "1666 (interacts with) 28976", "name" : "1666 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 27650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27646", "source" : "4525", "target" : "3973", "shared_name" : "1666 (interacts with) 55572", "name" : "1666 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 27646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27642", "source" : "4525", "target" : "5565", "shared_name" : "1666 (interacts with) 217", "name" : "1666 (interacts with) 217", "interaction" : "interacts with", "SUID" : 27642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27638", "source" : "4525", "target" : "1189", "shared_name" : "1666 (interacts with) 7915", "name" : "1666 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 27638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27634", "source" : "4525", "target" : "3641", "shared_name" : "1666 (interacts with) 4141", "name" : "1666 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 27634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27630", "source" : "4525", "target" : "4869", "shared_name" : "1666 (interacts with) 92935", "name" : "1666 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 27630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27626", "source" : "4525", "target" : "5593", "shared_name" : "1666 (interacts with) 875", "name" : "1666 (interacts with) 875", "interaction" : "interacts with", "SUID" : 27626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27622", "source" : "4525", "target" : "781", "shared_name" : "1666 (interacts with) 4860", "name" : "1666 (interacts with) 4860", "interaction" : "interacts with", "SUID" : 27622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27618", "source" : "4525", "target" : "2989", "shared_name" : "1666 (interacts with) 224", "name" : "1666 (interacts with) 224", "interaction" : "interacts with", "SUID" : 27618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27614", "source" : "4525", "target" : "5825", "shared_name" : "1666 (interacts with) 4594", "name" : "1666 (interacts with) 4594", "interaction" : "interacts with", "SUID" : 27614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27610", "source" : "4525", "target" : "5049", "shared_name" : "1666 (interacts with) 6697", "name" : "1666 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 27610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27606", "source" : "4525", "target" : "4749", "shared_name" : "1666 (interacts with) 3028", "name" : "1666 (interacts with) 3028", "interaction" : "interacts with", "SUID" : 27606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27602", "source" : "4525", "target" : "2369", "shared_name" : "1666 (interacts with) 51741", "name" : "1666 (interacts with) 51741", "interaction" : "interacts with", "SUID" : 27602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27598", "source" : "4525", "target" : "1525", "shared_name" : "1666 (interacts with) 3295", "name" : "1666 (interacts with) 3295", "interaction" : "interacts with", "SUID" : 27598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27594", "source" : "4525", "target" : "5797", "shared_name" : "1666 (interacts with) 3030", "name" : "1666 (interacts with) 3030", "interaction" : "interacts with", "SUID" : 27594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27590", "source" : "4525", "target" : "3681", "shared_name" : "1666 (interacts with) 1892", "name" : "1666 (interacts with) 1892", "interaction" : "interacts with", "SUID" : 27590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27586", "source" : "4525", "target" : "1721", "shared_name" : "1666 (interacts with) 51807", "name" : "1666 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 27586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27782", "source" : "4521", "target" : "3305", "shared_name" : "5894 (interacts with) 7040", "name" : "5894 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 27782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27778", "source" : "4521", "target" : "2153", "shared_name" : "5894 (interacts with) 7042", "name" : "5894 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 27778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27774", "source" : "4521", "target" : "3409", "shared_name" : "5894 (interacts with) 7043", "name" : "5894 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 27774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27770", "source" : "4521", "target" : "4065", "shared_name" : "5894 (interacts with) 7124", "name" : "5894 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 27770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27766", "source" : "4521", "target" : "1201", "shared_name" : "5894 (interacts with) 805", "name" : "5894 (interacts with) 805", "interaction" : "interacts with", "SUID" : 27766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27762", "source" : "4521", "target" : "1241", "shared_name" : "5894 (interacts with) 808", "name" : "5894 (interacts with) 808", "interaction" : "interacts with", "SUID" : 27762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27758", "source" : "4521", "target" : "637", "shared_name" : "5894 (interacts with) 6654", "name" : "5894 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 27758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27754", "source" : "4521", "target" : "993", "shared_name" : "5894 (interacts with) 801", "name" : "5894 (interacts with) 801", "interaction" : "interacts with", "SUID" : 27754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27750", "source" : "4521", "target" : "805", "shared_name" : "5894 (interacts with) 6772", "name" : "5894 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 27750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27746", "source" : "4521", "target" : "5625", "shared_name" : "5894 (interacts with) 595", "name" : "5894 (interacts with) 595", "interaction" : "interacts with", "SUID" : 27746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27742", "source" : "4521", "target" : "4769", "shared_name" : "5894 (interacts with) 7132", "name" : "5894 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 27742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27738", "source" : "4521", "target" : "5313", "shared_name" : "5894 (interacts with) 6197", "name" : "5894 (interacts with) 6197", "interaction" : "interacts with", "SUID" : 27738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27734", "source" : "4521", "target" : "4981", "shared_name" : "5894 (interacts with) 6774", "name" : "5894 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 27734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27730", "source" : "4521", "target" : "2433", "shared_name" : "5894 (interacts with) 6927", "name" : "5894 (interacts with) 6927", "interaction" : "interacts with", "SUID" : 27730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27726", "source" : "4521", "target" : "829", "shared_name" : "5894 (interacts with) 8772", "name" : "5894 (interacts with) 8772", "interaction" : "interacts with", "SUID" : 27726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27722", "source" : "4521", "target" : "1405", "shared_name" : "5894 (interacts with) 998", "name" : "5894 (interacts with) 998", "interaction" : "interacts with", "SUID" : 27722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27718", "source" : "4521", "target" : "5697", "shared_name" : "5894 (interacts with) 8517", "name" : "5894 (interacts with) 8517", "interaction" : "interacts with", "SUID" : 27718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27714", "source" : "4521", "target" : "5053", "shared_name" : "5894 (interacts with) 857", "name" : "5894 (interacts with) 857", "interaction" : "interacts with", "SUID" : 27714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27710", "source" : "4521", "target" : "4909", "shared_name" : "5894 (interacts with) 823", "name" : "5894 (interacts with) 823", "interaction" : "interacts with", "SUID" : 27710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27706", "source" : "4521", "target" : "4033", "shared_name" : "5894 (interacts with) 613", "name" : "5894 (interacts with) 613", "interaction" : "interacts with", "SUID" : 27706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27702", "source" : "4521", "target" : "5637", "shared_name" : "5894 (interacts with) 6609", "name" : "5894 (interacts with) 6609", "interaction" : "interacts with", "SUID" : 27702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27698", "source" : "4521", "target" : "6117", "shared_name" : "5894 (interacts with) 9131", "name" : "5894 (interacts with) 9131", "interaction" : "interacts with", "SUID" : 27698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27694", "source" : "4521", "target" : "1697", "shared_name" : "5894 (interacts with) 8818", "name" : "5894 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 27694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27690", "source" : "4521", "target" : "3685", "shared_name" : "5894 (interacts with) 3265", "name" : "5894 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 27690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27686", "source" : "4521", "target" : "2949", "shared_name" : "5894 (interacts with) 8036", "name" : "5894 (interacts with) 8036", "interaction" : "interacts with", "SUID" : 27686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27682", "source" : "4521", "target" : "4697", "shared_name" : "5894 (interacts with) 7534", "name" : "5894 (interacts with) 7534", "interaction" : "interacts with", "SUID" : 27682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27678", "source" : "4521", "target" : "3577", "shared_name" : "5894 (interacts with) 5605", "name" : "5894 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 27678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27674", "source" : "4521", "target" : "4361", "shared_name" : "5894 (interacts with) 22906", "name" : "5894 (interacts with) 22906", "interaction" : "interacts with", "SUID" : 27674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27670", "source" : "4521", "target" : "3573", "shared_name" : "5894 (interacts with) 3845", "name" : "5894 (interacts with) 3845", "interaction" : "interacts with", "SUID" : 27670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27666", "source" : "4521", "target" : "5361", "shared_name" : "5894 (interacts with) 5604", "name" : "5894 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 27666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27662", "source" : "4521", "target" : "3569", "shared_name" : "5894 (interacts with) 4893", "name" : "5894 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 27662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27658", "source" : "4521", "target" : "5965", "shared_name" : "5894 (interacts with) 596", "name" : "5894 (interacts with) 596", "interaction" : "interacts with", "SUID" : 27658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27802", "source" : "4513", "target" : "5969", "shared_name" : "6904 (interacts with) 10382", "name" : "6904 (interacts with) 10382", "interaction" : "interacts with", "SUID" : 27802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27798", "source" : "4513", "target" : "4105", "shared_name" : "6904 (interacts with) 347733", "name" : "6904 (interacts with) 347733", "interaction" : "interacts with", "SUID" : 27798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27794", "source" : "4513", "target" : "613", "shared_name" : "6904 (interacts with) 10381", "name" : "6904 (interacts with) 10381", "interaction" : "interacts with", "SUID" : 27794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27790", "source" : "4513", "target" : "1721", "shared_name" : "6904 (interacts with) 51807", "name" : "6904 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 27790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27786", "source" : "4513", "target" : "2289", "shared_name" : "6904 (interacts with) 6905", "name" : "6904 (interacts with) 6905", "interaction" : "interacts with", "SUID" : 27786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27986", "source" : "4509", "target" : "3017", "shared_name" : "2902 (interacts with) 4790", "name" : "2902 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 27986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27982", "source" : "4509", "target" : "4949", "shared_name" : "2902 (interacts with) 5970", "name" : "2902 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 27982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27978", "source" : "4509", "target" : "4857", "shared_name" : "2902 (interacts with) 5573", "name" : "2902 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 27978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27974", "source" : "4509", "target" : "1973", "shared_name" : "2902 (interacts with) 6709", "name" : "2902 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 27974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27970", "source" : "4509", "target" : "1201", "shared_name" : "2902 (interacts with) 805", "name" : "2902 (interacts with) 805", "interaction" : "interacts with", "SUID" : 27970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27966", "source" : "4509", "target" : "993", "shared_name" : "2902 (interacts with) 801", "name" : "2902 (interacts with) 801", "interaction" : "interacts with", "SUID" : 27966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27962", "source" : "4509", "target" : "3593", "shared_name" : "2902 (interacts with) 5530", "name" : "2902 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 27962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27958", "source" : "4509", "target" : "1241", "shared_name" : "2902 (interacts with) 808", "name" : "2902 (interacts with) 808", "interaction" : "interacts with", "SUID" : 27958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27954", "source" : "4509", "target" : "2329", "shared_name" : "2902 (interacts with) 2904", "name" : "2902 (interacts with) 2904", "interaction" : "interacts with", "SUID" : 27954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27950", "source" : "4509", "target" : "5577", "shared_name" : "2902 (interacts with) 3091", "name" : "2902 (interacts with) 3091", "interaction" : "interacts with", "SUID" : 27950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27946", "source" : "4509", "target" : "1605", "shared_name" : "2902 (interacts with) 6648", "name" : "2902 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 27946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27942", "source" : "4509", "target" : "5029", "shared_name" : "2902 (interacts with) 4842", "name" : "2902 (interacts with) 4842", "interaction" : "interacts with", "SUID" : 27942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27938", "source" : "4509", "target" : "2197", "shared_name" : "2902 (interacts with) 4684", "name" : "2902 (interacts with) 4684", "interaction" : "interacts with", "SUID" : 27938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27934", "source" : "4509", "target" : "997", "shared_name" : "2902 (interacts with) 7431", "name" : "2902 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 27934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27930", "source" : "4509", "target" : "5989", "shared_name" : "2902 (interacts with) 7273", "name" : "2902 (interacts with) 7273", "interaction" : "interacts with", "SUID" : 27930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27926", "source" : "4509", "target" : "2581", "shared_name" : "2902 (interacts with) 7170", "name" : "2902 (interacts with) 7170", "interaction" : "interacts with", "SUID" : 27926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27922", "source" : "4509", "target" : "609", "shared_name" : "2902 (interacts with) 6812", "name" : "2902 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 27922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27918", "source" : "4509", "target" : "5785", "shared_name" : "2902 (interacts with) 6857", "name" : "2902 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 27918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27914", "source" : "4509", "target" : "5929", "shared_name" : "2902 (interacts with) 6616", "name" : "2902 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 27914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27910", "source" : "4509", "target" : "1809", "shared_name" : "2902 (interacts with) 6548", "name" : "2902 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 27910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27906", "source" : "4509", "target" : "401", "shared_name" : "2902 (interacts with) 6532", "name" : "2902 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 27906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27902", "source" : "4509", "target" : "3781", "shared_name" : "2902 (interacts with) 9152", "name" : "2902 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 27902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27898", "source" : "4509", "target" : "5877", "shared_name" : "2902 (interacts with) 6535", "name" : "2902 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 27898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27894", "source" : "4509", "target" : "309", "shared_name" : "2902 (interacts with) 6536", "name" : "2902 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 27894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27890", "source" : "4509", "target" : "2877", "shared_name" : "2902 (interacts with) 340024", "name" : "2902 (interacts with) 340024", "interaction" : "interacts with", "SUID" : 27890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27886", "source" : "4509", "target" : "3601", "shared_name" : "2902 (interacts with) 6531", "name" : "2902 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 27886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27882", "source" : "4509", "target" : "3473", "shared_name" : "2902 (interacts with) 6528", "name" : "2902 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 27882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27878", "source" : "4509", "target" : "1385", "shared_name" : "2902 (interacts with) 6520", "name" : "2902 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 27878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27874", "source" : "4509", "target" : "5805", "shared_name" : "2902 (interacts with) 6575", "name" : "2902 (interacts with) 6575", "interaction" : "interacts with", "SUID" : 27874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27870", "source" : "4509", "target" : "4025", "shared_name" : "2902 (interacts with) 284111", "name" : "2902 (interacts with) 284111", "interaction" : "interacts with", "SUID" : 27870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27866", "source" : "4509", "target" : "3077", "shared_name" : "2902 (interacts with) 6506", "name" : "2902 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 27866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27862", "source" : "4509", "target" : "6009", "shared_name" : "2902 (interacts with) 64849", "name" : "2902 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 27862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27858", "source" : "4509", "target" : "5729", "shared_name" : "2902 (interacts with) 861", "name" : "2902 (interacts with) 861", "interaction" : "interacts with", "SUID" : 27858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27854", "source" : "4509", "target" : "1069", "shared_name" : "2902 (interacts with) 5879", "name" : "2902 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 27854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27850", "source" : "4509", "target" : "313", "shared_name" : "2902 (interacts with) 5923", "name" : "2902 (interacts with) 5923", "interaction" : "interacts with", "SUID" : 27850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27846", "source" : "4509", "target" : "4385", "shared_name" : "2902 (interacts with) 3084", "name" : "2902 (interacts with) 3084", "interaction" : "interacts with", "SUID" : 27846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27842", "source" : "4509", "target" : "3569", "shared_name" : "2902 (interacts with) 4893", "name" : "2902 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 27842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27838", "source" : "4509", "target" : "3177", "shared_name" : "2902 (interacts with) 5321", "name" : "2902 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 27838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27834", "source" : "4509", "target" : "2977", "shared_name" : "2902 (interacts with) 4747", "name" : "2902 (interacts with) 4747", "interaction" : "interacts with", "SUID" : 27834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27830", "source" : "4509", "target" : "565", "shared_name" : "2902 (interacts with) 4772", "name" : "2902 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 27830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27826", "source" : "4509", "target" : "1357", "shared_name" : "2902 (interacts with) 58498", "name" : "2902 (interacts with) 58498", "interaction" : "interacts with", "SUID" : 27826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27822", "source" : "4509", "target" : "1521", "shared_name" : "2902 (interacts with) 84879", "name" : "2902 (interacts with) 84879", "interaction" : "interacts with", "SUID" : 27822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27818", "source" : "4509", "target" : "3573", "shared_name" : "2902 (interacts with) 3845", "name" : "2902 (interacts with) 3845", "interaction" : "interacts with", "SUID" : 27818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27814", "source" : "4509", "target" : "3685", "shared_name" : "2902 (interacts with) 3265", "name" : "2902 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 27814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27810", "source" : "4509", "target" : "4829", "shared_name" : "2902 (interacts with) 64919", "name" : "2902 (interacts with) 64919", "interaction" : "interacts with", "SUID" : 27810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27806", "source" : "4509", "target" : "4345", "shared_name" : "2902 (interacts with) 4854", "name" : "2902 (interacts with) 4854", "interaction" : "interacts with", "SUID" : 27806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28062", "source" : "4505", "target" : "1749", "shared_name" : "5190 (interacts with) 728294", "name" : "5190 (interacts with) 728294", "interaction" : "interacts with", "SUID" : 28062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28058", "source" : "4505", "target" : "4941", "shared_name" : "5190 (interacts with) 6342", "name" : "5190 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 28058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28054", "source" : "4505", "target" : "2353", "shared_name" : "5190 (interacts with) 5264", "name" : "5190 (interacts with) 5264", "interaction" : "interacts with", "SUID" : 28054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28050", "source" : "4505", "target" : "1977", "shared_name" : "5190 (interacts with) 5191", "name" : "5190 (interacts with) 5191", "interaction" : "interacts with", "SUID" : 28050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28046", "source" : "4505", "target" : "196", "shared_name" : "5190 (interacts with) 84188", "name" : "5190 (interacts with) 84188", "interaction" : "interacts with", "SUID" : 28046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28042", "source" : "4505", "target" : "5873", "shared_name" : "5190 (interacts with) 5827", "name" : "5190 (interacts with) 5827", "interaction" : "interacts with", "SUID" : 28042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28038", "source" : "4505", "target" : "3341", "shared_name" : "5190 (interacts with) 8504", "name" : "5190 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 28038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28034", "source" : "4505", "target" : "4301", "shared_name" : "5190 (interacts with) 8799", "name" : "5190 (interacts with) 8799", "interaction" : "interacts with", "SUID" : 28034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28030", "source" : "4505", "target" : "3333", "shared_name" : "5190 (interacts with) 9409", "name" : "5190 (interacts with) 9409", "interaction" : "interacts with", "SUID" : 28030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28026", "source" : "4505", "target" : "5545", "shared_name" : "5190 (interacts with) 5195", "name" : "5190 (interacts with) 5195", "interaction" : "interacts with", "SUID" : 28026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28022", "source" : "4505", "target" : "5109", "shared_name" : "5190 (interacts with) 790", "name" : "5190 (interacts with) 790", "interaction" : "interacts with", "SUID" : 28022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28018", "source" : "4505", "target" : "5865", "shared_name" : "5190 (interacts with) 5192", "name" : "5190 (interacts with) 5192", "interaction" : "interacts with", "SUID" : 28018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28014", "source" : "4505", "target" : "5205", "shared_name" : "5190 (interacts with) 5828", "name" : "5190 (interacts with) 5828", "interaction" : "interacts with", "SUID" : 28014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28010", "source" : "4505", "target" : "4297", "shared_name" : "5190 (interacts with) 5193", "name" : "5190 (interacts with) 5193", "interaction" : "interacts with", "SUID" : 28010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28006", "source" : "4505", "target" : "3329", "shared_name" : "5190 (interacts with) 5824", "name" : "5190 (interacts with) 5824", "interaction" : "interacts with", "SUID" : 28006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28002", "source" : "4505", "target" : "5237", "shared_name" : "5190 (interacts with) 5830", "name" : "5190 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 28002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27998", "source" : "4505", "target" : "1953", "shared_name" : "5190 (interacts with) 5194", "name" : "5190 (interacts with) 5194", "interaction" : "interacts with", "SUID" : 27998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27994", "source" : "4505", "target" : "2325", "shared_name" : "5190 (interacts with) 55670", "name" : "5190 (interacts with) 55670", "interaction" : "interacts with", "SUID" : 27994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "27990", "source" : "4505", "target" : "5677", "shared_name" : "5190 (interacts with) 5189", "name" : "5190 (interacts with) 5189", "interaction" : "interacts with", "SUID" : 27990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28190", "source" : "4501", "target" : "4409", "shared_name" : "25821 (interacts with) 6341", "name" : "25821 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 28190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28186", "source" : "4501", "target" : "2741", "shared_name" : "25821 (interacts with) 4695", "name" : "25821 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 28186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28182", "source" : "4501", "target" : "3445", "shared_name" : "25821 (interacts with) 5091", "name" : "25821 (interacts with) 5091", "interaction" : "interacts with", "SUID" : 28182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28178", "source" : "4501", "target" : "3617", "shared_name" : "25821 (interacts with) 4704", "name" : "25821 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 28178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28174", "source" : "4501", "target" : "4017", "shared_name" : "25821 (interacts with) 4719", "name" : "25821 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 28174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28170", "source" : "4501", "target" : "4757", "shared_name" : "25821 (interacts with) 9997", "name" : "25821 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 28170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28166", "source" : "4501", "target" : "4061", "shared_name" : "25821 (interacts with) 4705", "name" : "25821 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 28166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28162", "source" : "4501", "target" : "5845", "shared_name" : "25821 (interacts with) 4714", "name" : "25821 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 28162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28158", "source" : "4501", "target" : "2477", "shared_name" : "25821 (interacts with) 57107", "name" : "25821 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 28158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28154", "source" : "4501", "target" : "5737", "shared_name" : "25821 (interacts with) 84340", "name" : "25821 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 28154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28150", "source" : "4501", "target" : "2337", "shared_name" : "25821 (interacts with) 28976", "name" : "25821 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 28150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28146", "source" : "4501", "target" : "5085", "shared_name" : "25821 (interacts with) 56652", "name" : "25821 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 28146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28142", "source" : "4501", "target" : "2753", "shared_name" : "25821 (interacts with) 4720", "name" : "25821 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 28142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28138", "source" : "4501", "target" : "1869", "shared_name" : "25821 (interacts with) 4729", "name" : "25821 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 28138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28134", "source" : "4501", "target" : "2009", "shared_name" : "25821 (interacts with) 79133", "name" : "25821 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 28134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28130", "source" : "4501", "target" : "889", "shared_name" : "25821 (interacts with) 80224", "name" : "25821 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 28130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28126", "source" : "4501", "target" : "2609", "shared_name" : "25821 (interacts with) 29960", "name" : "25821 (interacts with) 29960", "interaction" : "interacts with", "SUID" : 28126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28122", "source" : "4501", "target" : "5505", "shared_name" : "25821 (interacts with) 29078", "name" : "25821 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 28122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28118", "source" : "4501", "target" : "2285", "shared_name" : "25821 (interacts with) 51300", "name" : "25821 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 28118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28114", "source" : "4501", "target" : "2801", "shared_name" : "25821 (interacts with) 4700", "name" : "25821 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 28114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28110", "source" : "4501", "target" : "6001", "shared_name" : "25821 (interacts with) 55157", "name" : "25821 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 28110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28106", "source" : "4501", "target" : "5853", "shared_name" : "25821 (interacts with) 4709", "name" : "25821 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 28106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28102", "source" : "4501", "target" : "3761", "shared_name" : "25821 (interacts with) 25915", "name" : "25821 (interacts with) 25915", "interaction" : "interacts with", "SUID" : 28102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28098", "source" : "4501", "target" : "4101", "shared_name" : "25821 (interacts with) 65260", "name" : "25821 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 28098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28094", "source" : "4501", "target" : "2797", "shared_name" : "25821 (interacts with) 4728", "name" : "25821 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 28094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28090", "source" : "4501", "target" : "1197", "shared_name" : "25821 (interacts with) 79587", "name" : "25821 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 28090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28086", "source" : "4501", "target" : "6073", "shared_name" : "25821 (interacts with) 92170", "name" : "25821 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 28086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28082", "source" : "4501", "target" : "2109", "shared_name" : "25821 (interacts with) 51103", "name" : "25821 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 28082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28078", "source" : "4501", "target" : "3973", "shared_name" : "25821 (interacts with) 55572", "name" : "25821 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 28078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28074", "source" : "4501", "target" : "5201", "shared_name" : "25821 (interacts with) 353", "name" : "25821 (interacts with) 353", "interaction" : "interacts with", "SUID" : 28074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28070", "source" : "4501", "target" : "1865", "shared_name" : "25821 (interacts with) 498", "name" : "25821 (interacts with) 498", "interaction" : "interacts with", "SUID" : 28070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28066", "source" : "4501", "target" : "2189", "shared_name" : "25821 (interacts with) 84705", "name" : "25821 (interacts with) 84705", "interaction" : "interacts with", "SUID" : 28066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28214", "source" : "4497", "target" : "1329", "shared_name" : "8243 (interacts with) 26277", "name" : "8243 (interacts with) 26277", "interaction" : "interacts with", "SUID" : 28214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28210", "source" : "4497", "target" : "629", "shared_name" : "8243 (interacts with) 7013", "name" : "8243 (interacts with) 7013", "interaction" : "interacts with", "SUID" : 28210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28206", "source" : "4497", "target" : "3789", "shared_name" : "8243 (interacts with) 23345", "name" : "8243 (interacts with) 23345", "interaction" : "interacts with", "SUID" : 28206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28202", "source" : "4497", "target" : "877", "shared_name" : "8243 (interacts with) 7341", "name" : "8243 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 28202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28198", "source" : "4497", "target" : "4797", "shared_name" : "8243 (interacts with) 10735", "name" : "8243 (interacts with) 10735", "interaction" : "interacts with", "SUID" : 28198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28194", "source" : "4497", "target" : "5489", "shared_name" : "8243 (interacts with) 2259", "name" : "8243 (interacts with) 2259", "interaction" : "interacts with", "SUID" : 28194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28234", "source" : "4493", "target" : "257", "shared_name" : "5727 (interacts with) 6469", "name" : "5727 (interacts with) 6469", "interaction" : "interacts with", "SUID" : 28234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28230", "source" : "4493", "target" : "5249", "shared_name" : "5727 (interacts with) 8643", "name" : "5727 (interacts with) 8643", "interaction" : "interacts with", "SUID" : 28230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28226", "source" : "4493", "target" : "4781", "shared_name" : "5727 (interacts with) 80781", "name" : "5727 (interacts with) 80781", "interaction" : "interacts with", "SUID" : 28226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28222", "source" : "4493", "target" : "5557", "shared_name" : "5727 (interacts with) 9254", "name" : "5727 (interacts with) 9254", "interaction" : "interacts with", "SUID" : 28222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28218", "source" : "4493", "target" : "2761", "shared_name" : "5727 (interacts with) 57556", "name" : "5727 (interacts with) 57556", "interaction" : "interacts with", "SUID" : 28218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28298", "source" : "4489", "target" : "681", "shared_name" : "2222 (interacts with) 6646", "name" : "2222 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 28298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28294", "source" : "4489", "target" : "1969", "shared_name" : "2222 (interacts with) 4598", "name" : "2222 (interacts with) 4598", "interaction" : "interacts with", "SUID" : 28294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28290", "source" : "4489", "target" : "2373", "shared_name" : "2222 (interacts with) 64801", "name" : "2222 (interacts with) 64801", "interaction" : "interacts with", "SUID" : 28290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28286", "source" : "4489", "target" : "1097", "shared_name" : "2222 (interacts with) 79718", "name" : "2222 (interacts with) 79718", "interaction" : "interacts with", "SUID" : 28286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28282", "source" : "4489", "target" : "2957", "shared_name" : "2222 (interacts with) 5465", "name" : "2222 (interacts with) 5465", "interaction" : "interacts with", "SUID" : 28282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28278", "source" : "4489", "target" : "5893", "shared_name" : "2222 (interacts with) 6309", "name" : "2222 (interacts with) 6309", "interaction" : "interacts with", "SUID" : 28278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28274", "source" : "4489", "target" : "3013", "shared_name" : "2222 (interacts with) 50814", "name" : "2222 (interacts with) 50814", "interaction" : "interacts with", "SUID" : 28274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28270", "source" : "4489", "target" : "4461", "shared_name" : "2222 (interacts with) 79947", "name" : "2222 (interacts with) 79947", "interaction" : "interacts with", "SUID" : 28270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28266", "source" : "4489", "target" : "2925", "shared_name" : "2222 (interacts with) 8802", "name" : "2222 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 28266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28262", "source" : "4489", "target" : "3425", "shared_name" : "2222 (interacts with) 8803", "name" : "2222 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 28262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28258", "source" : "4489", "target" : "1289", "shared_name" : "2222 (interacts with) 6392", "name" : "2222 (interacts with) 6392", "interaction" : "interacts with", "SUID" : 28258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28254", "source" : "4489", "target" : "1669", "shared_name" : "2222 (interacts with) 6390", "name" : "2222 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 28254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28250", "source" : "4489", "target" : "5025", "shared_name" : "2222 (interacts with) 6389", "name" : "2222 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 28250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28246", "source" : "4489", "target" : "3353", "shared_name" : "2222 (interacts with) 1203", "name" : "2222 (interacts with) 1203", "interaction" : "interacts with", "SUID" : 28246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28242", "source" : "4489", "target" : "6137", "shared_name" : "2222 (interacts with) 29954", "name" : "2222 (interacts with) 29954", "interaction" : "interacts with", "SUID" : 28242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28238", "source" : "4489", "target" : "4625", "shared_name" : "2222 (interacts with) 6785", "name" : "2222 (interacts with) 6785", "interaction" : "interacts with", "SUID" : 28238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28318", "source" : "4485", "target" : "3069", "shared_name" : "54496 (interacts with) 57492", "name" : "54496 (interacts with) 57492", "interaction" : "interacts with", "SUID" : 28318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28314", "source" : "4485", "target" : "525", "shared_name" : "54496 (interacts with) 6598", "name" : "54496 (interacts with) 6598", "interaction" : "interacts with", "SUID" : 28314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28310", "source" : "4485", "target" : "4629", "shared_name" : "54496 (interacts with) 6605", "name" : "54496 (interacts with) 6605", "interaction" : "interacts with", "SUID" : 28310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28306", "source" : "4485", "target" : "3105", "shared_name" : "54496 (interacts with) 8289", "name" : "54496 (interacts with) 8289", "interaction" : "interacts with", "SUID" : 28306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28302", "source" : "4485", "target" : "4877", "shared_name" : "54496 (interacts with) 1965", "name" : "54496 (interacts with) 1965", "interaction" : "interacts with", "SUID" : 28302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28334", "source" : "4481", "target" : "4337", "shared_name" : "55624 (interacts with) 84197", "name" : "55624 (interacts with) 84197", "interaction" : "interacts with", "SUID" : 28334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28330", "source" : "4481", "target" : "4741", "shared_name" : "55624 (interacts with) 79147", "name" : "55624 (interacts with) 79147", "interaction" : "interacts with", "SUID" : 28330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28326", "source" : "4481", "target" : "1033", "shared_name" : "55624 (interacts with) 9215", "name" : "55624 (interacts with) 9215", "interaction" : "interacts with", "SUID" : 28326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28322", "source" : "4481", "target" : "3857", "shared_name" : "55624 (interacts with) 65062", "name" : "55624 (interacts with) 65062", "interaction" : "interacts with", "SUID" : 28322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28366", "source" : "4477", "target" : "6161", "shared_name" : "5354 (interacts with) 6663", "name" : "5354 (interacts with) 6663", "interaction" : "interacts with", "SUID" : 28366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28362", "source" : "4477", "target" : "2693", "shared_name" : "5354 (interacts with) 5375", "name" : "5354 (interacts with) 5375", "interaction" : "interacts with", "SUID" : 28362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28358", "source" : "4477", "target" : "4989", "shared_name" : "5354 (interacts with) 51227", "name" : "5354 (interacts with) 51227", "interaction" : "interacts with", "SUID" : 28358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28354", "source" : "4477", "target" : "2857", "shared_name" : "5354 (interacts with) 56947", "name" : "5354 (interacts with) 56947", "interaction" : "interacts with", "SUID" : 28354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28350", "source" : "4477", "target" : "4385", "shared_name" : "5354 (interacts with) 3084", "name" : "5354 (interacts with) 3084", "interaction" : "interacts with", "SUID" : 28350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28346", "source" : "4477", "target" : "1645", "shared_name" : "5354 (interacts with) 51124", "name" : "5354 (interacts with) 51124", "interaction" : "interacts with", "SUID" : 28346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28342", "source" : "4477", "target" : "3589", "shared_name" : "5354 (interacts with) 6567", "name" : "5354 (interacts with) 6567", "interaction" : "interacts with", "SUID" : 28342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28338", "source" : "4477", "target" : "5881", "shared_name" : "5354 (interacts with) 23435", "name" : "5354 (interacts with) 23435", "interaction" : "interacts with", "SUID" : 28338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28378", "source" : "4473", "target" : "4225", "shared_name" : "54888 (interacts with) 55621", "name" : "54888 (interacts with) 55621", "interaction" : "interacts with", "SUID" : 28378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28374", "source" : "4473", "target" : "649", "shared_name" : "54888 (interacts with) 83480", "name" : "54888 (interacts with) 83480", "interaction" : "interacts with", "SUID" : 28374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28370", "source" : "4473", "target" : "3021", "shared_name" : "54888 (interacts with) 84823", "name" : "54888 (interacts with) 84823", "interaction" : "interacts with", "SUID" : 28370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28382", "source" : "4469", "target" : "2389", "shared_name" : "8295 (interacts with) 6925", "name" : "8295 (interacts with) 6925", "interaction" : "interacts with", "SUID" : 28382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28394", "source" : "4465", "target" : "4469", "shared_name" : "6314 (interacts with) 8295", "name" : "6314 (interacts with) 8295", "interaction" : "interacts with", "SUID" : 28394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28390", "source" : "4465", "target" : "4005", "shared_name" : "6314 (interacts with) 23636", "name" : "6314 (interacts with) 23636", "interaction" : "interacts with", "SUID" : 28390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28386", "source" : "4465", "target" : "1497", "shared_name" : "6314 (interacts with) 3912", "name" : "6314 (interacts with) 3912", "interaction" : "interacts with", "SUID" : 28386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28414", "source" : "4461", "target" : "5737", "shared_name" : "79947 (interacts with) 84340", "name" : "79947 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 28414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28410", "source" : "4461", "target" : "6073", "shared_name" : "79947 (interacts with) 92170", "name" : "79947 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 28410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28406", "source" : "4461", "target" : "521", "shared_name" : "79947 (interacts with) 85476", "name" : "79947 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 28406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28402", "source" : "4461", "target" : "3705", "shared_name" : "79947 (interacts with) 87178", "name" : "79947 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 28402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28398", "source" : "4461", "target" : "1153", "shared_name" : "79947 (interacts with) 116150", "name" : "79947 (interacts with) 116150", "interaction" : "interacts with", "SUID" : 28398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28498", "source" : "4457", "target" : "4213", "shared_name" : "3082 (interacts with) 5295", "name" : "3082 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 28498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28494", "source" : "4457", "target" : "5361", "shared_name" : "3082 (interacts with) 5604", "name" : "3082 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 28494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28490", "source" : "4457", "target" : "5225", "shared_name" : "3082 (interacts with) 5290", "name" : "3082 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 28490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28486", "source" : "4457", "target" : "3685", "shared_name" : "3082 (interacts with) 3265", "name" : "3082 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 28486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28482", "source" : "4457", "target" : "973", "shared_name" : "3082 (interacts with) 5595", "name" : "3082 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 28482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28478", "source" : "4457", "target" : "5081", "shared_name" : "3082 (interacts with) 5594", "name" : "3082 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 28478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28474", "source" : "4457", "target" : "3577", "shared_name" : "3082 (interacts with) 5605", "name" : "3082 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 28474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28470", "source" : "4457", "target" : "637", "shared_name" : "3082 (interacts with) 6654", "name" : "3082 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 28470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28466", "source" : "4457", "target" : "5149", "shared_name" : "3082 (interacts with) 5058", "name" : "3082 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 28466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28462", "source" : "4457", "target" : "4521", "shared_name" : "3082 (interacts with) 5894", "name" : "3082 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 28462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28458", "source" : "4457", "target" : "817", "shared_name" : "3082 (interacts with) 5728", "name" : "3082 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 28458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28454", "source" : "4457", "target" : "4885", "shared_name" : "3082 (interacts with) 5340", "name" : "3082 (interacts with) 5340", "interaction" : "interacts with", "SUID" : 28454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28450", "source" : "4457", "target" : "1069", "shared_name" : "3082 (interacts with) 5879", "name" : "3082 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 28450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28446", "source" : "4457", "target" : "3569", "shared_name" : "3082 (interacts with) 4893", "name" : "3082 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 28446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28442", "source" : "4457", "target" : "2137", "shared_name" : "3082 (interacts with) 3918", "name" : "3082 (interacts with) 3918", "interaction" : "interacts with", "SUID" : 28442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28438", "source" : "4457", "target" : "3585", "shared_name" : "3082 (interacts with) 3908", "name" : "3082 (interacts with) 3908", "interaction" : "interacts with", "SUID" : 28438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28434", "source" : "4457", "target" : "1497", "shared_name" : "3082 (interacts with) 3912", "name" : "3082 (interacts with) 3912", "interaction" : "interacts with", "SUID" : 28434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28430", "source" : "4457", "target" : "2861", "shared_name" : "3082 (interacts with) 284217", "name" : "3082 (interacts with) 284217", "interaction" : "interacts with", "SUID" : 28430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28426", "source" : "4457", "target" : "3573", "shared_name" : "3082 (interacts with) 3845", "name" : "3082 (interacts with) 3845", "interaction" : "interacts with", "SUID" : 28426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28422", "source" : "4457", "target" : "6013", "shared_name" : "3082 (interacts with) 3574", "name" : "3082 (interacts with) 3574", "interaction" : "interacts with", "SUID" : 28422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28418", "source" : "4457", "target" : "1209", "shared_name" : "3082 (interacts with) 51763", "name" : "3082 (interacts with) 51763", "interaction" : "interacts with", "SUID" : 28418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28510", "source" : "4453", "target" : "2977", "shared_name" : "4744 (interacts with) 4747", "name" : "4744 (interacts with) 4747", "interaction" : "interacts with", "SUID" : 28510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28506", "source" : "4453", "target" : "3077", "shared_name" : "4744 (interacts with) 6506", "name" : "4744 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 28506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28502", "source" : "4453", "target" : "581", "shared_name" : "4744 (interacts with) 57679", "name" : "4744 (interacts with) 57679", "interaction" : "interacts with", "SUID" : 28502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28514", "source" : "4445", "target" : "4761", "shared_name" : "80208 (interacts with) 9907", "name" : "80208 (interacts with) 9907", "interaction" : "interacts with", "SUID" : 28514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28622", "source" : "4441", "target" : "1269", "shared_name" : "1213 (interacts with) 9276", "name" : "1213 (interacts with) 9276", "interaction" : "interacts with", "SUID" : 28622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28618", "source" : "4441", "target" : "2677", "shared_name" : "1213 (interacts with) 7436", "name" : "1213 (interacts with) 7436", "interaction" : "interacts with", "SUID" : 28618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28614", "source" : "4441", "target" : "5785", "shared_name" : "1213 (interacts with) 6857", "name" : "1213 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 28614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28610", "source" : "4441", "target" : "2969", "shared_name" : "1213 (interacts with) 8867", "name" : "1213 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 28610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28606", "source" : "4441", "target" : "4393", "shared_name" : "1213 (interacts with) 950", "name" : "1213 (interacts with) 950", "interaction" : "interacts with", "SUID" : 28606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28602", "source" : "4441", "target" : "4157", "shared_name" : "1213 (interacts with) 85021", "name" : "1213 (interacts with) 85021", "interaction" : "interacts with", "SUID" : 28602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28598", "source" : "4441", "target" : "5313", "shared_name" : "1213 (interacts with) 6197", "name" : "1213 (interacts with) 6197", "interaction" : "interacts with", "SUID" : 28598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28594", "source" : "4441", "target" : "817", "shared_name" : "1213 (interacts with) 5728", "name" : "1213 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 28594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28590", "source" : "4441", "target" : "4213", "shared_name" : "1213 (interacts with) 5295", "name" : "1213 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 28590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28586", "source" : "4441", "target" : "3465", "shared_name" : "1213 (interacts with) 5296", "name" : "1213 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 28586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28582", "source" : "4441", "target" : "1909", "shared_name" : "1213 (interacts with) 5286", "name" : "1213 (interacts with) 5286", "interaction" : "interacts with", "SUID" : 28582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28578", "source" : "4441", "target" : "5225", "shared_name" : "1213 (interacts with) 5290", "name" : "1213 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 28578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28574", "source" : "4441", "target" : "3745", "shared_name" : "1213 (interacts with) 4803", "name" : "1213 (interacts with) 4803", "interaction" : "interacts with", "SUID" : 28574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28570", "source" : "4441", "target" : "2429", "shared_name" : "1213 (interacts with) 4952", "name" : "1213 (interacts with) 4952", "interaction" : "interacts with", "SUID" : 28570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28566", "source" : "4441", "target" : "4237", "shared_name" : "1213 (interacts with) 4914", "name" : "1213 (interacts with) 4914", "interaction" : "interacts with", "SUID" : 28566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28562", "source" : "4441", "target" : "3961", "shared_name" : "1213 (interacts with) 3897", "name" : "1213 (interacts with) 3897", "interaction" : "interacts with", "SUID" : 28562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28558", "source" : "4441", "target" : "533", "shared_name" : "1213 (interacts with) 4036", "name" : "1213 (interacts with) 4036", "interaction" : "interacts with", "SUID" : 28558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28554", "source" : "4441", "target" : "5081", "shared_name" : "1213 (interacts with) 5594", "name" : "1213 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 28554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28550", "source" : "4441", "target" : "1209", "shared_name" : "1213 (interacts with) 51763", "name" : "1213 (interacts with) 51763", "interaction" : "interacts with", "SUID" : 28550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28546", "source" : "4441", "target" : "5065", "shared_name" : "1213 (interacts with) 3117", "name" : "1213 (interacts with) 3117", "interaction" : "interacts with", "SUID" : 28546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28542", "source" : "4441", "target" : "4165", "shared_name" : "1213 (interacts with) 3119", "name" : "1213 (interacts with) 3119", "interaction" : "interacts with", "SUID" : 28542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28538", "source" : "4441", "target" : "2641", "shared_name" : "1213 (interacts with) 3123", "name" : "1213 (interacts with) 3123", "interaction" : "interacts with", "SUID" : 28538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28534", "source" : "4441", "target" : "3189", "shared_name" : "1213 (interacts with) 2799", "name" : "1213 (interacts with) 2799", "interaction" : "interacts with", "SUID" : 28534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28530", "source" : "4441", "target" : "4537", "shared_name" : "1213 (interacts with) 2697", "name" : "1213 (interacts with) 2697", "interaction" : "interacts with", "SUID" : 28530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28526", "source" : "4441", "target" : "5817", "shared_name" : "1213 (interacts with) 1950", "name" : "1213 (interacts with) 1950", "interaction" : "interacts with", "SUID" : 28526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28522", "source" : "4441", "target" : "5273", "shared_name" : "1213 (interacts with) 2048", "name" : "1213 (interacts with) 2048", "interaction" : "interacts with", "SUID" : 28522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28518", "source" : "4441", "target" : "3981", "shared_name" : "1213 (interacts with) 1785", "name" : "1213 (interacts with) 1785", "interaction" : "interacts with", "SUID" : 28518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28638", "source" : "4437", "target" : "665", "shared_name" : "84168 (interacts with) 3309", "name" : "84168 (interacts with) 3309", "interaction" : "interacts with", "SUID" : 28638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28634", "source" : "4437", "target" : "2749", "shared_name" : "84168 (interacts with) 100506658", "name" : "84168 (interacts with) 100506658", "interaction" : "interacts with", "SUID" : 28634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28630", "source" : "4437", "target" : "2601", "shared_name" : "84168 (interacts with) 23312", "name" : "84168 (interacts with) 23312", "interaction" : "interacts with", "SUID" : 28630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28626", "source" : "4437", "target" : "705", "shared_name" : "84168 (interacts with) 728378", "name" : "84168 (interacts with) 728378", "interaction" : "interacts with", "SUID" : 28626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28642", "source" : "4433", "target" : "5713", "shared_name" : "6239 (interacts with) 7531", "name" : "6239 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 28642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28650", "source" : "4425", "target" : "981", "shared_name" : "6884 (interacts with) 7157", "name" : "6884 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 28650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28646", "source" : "4425", "target" : "2305", "shared_name" : "6884 (interacts with) 6908", "name" : "6884 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 28646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28674", "source" : "4421", "target" : "417", "shared_name" : "2551 (interacts with) 6689", "name" : "2551 (interacts with) 6689", "interaction" : "interacts with", "SUID" : 28674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28670", "source" : "4421", "target" : "5761", "shared_name" : "2551 (interacts with) 4208", "name" : "2551 (interacts with) 4208", "interaction" : "interacts with", "SUID" : 28670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28666", "source" : "4421", "target" : "5085", "shared_name" : "2551 (interacts with) 56652", "name" : "2551 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 28666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28662", "source" : "4421", "target" : "713", "shared_name" : "2551 (interacts with) 7019", "name" : "2551 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 28662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28658", "source" : "4421", "target" : "3821", "shared_name" : "2551 (interacts with) 10891", "name" : "2551 (interacts with) 10891", "interaction" : "interacts with", "SUID" : 28658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28654", "source" : "4421", "target" : "3997", "shared_name" : "2551 (interacts with) 1890", "name" : "2551 (interacts with) 1890", "interaction" : "interacts with", "SUID" : 28654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28734", "source" : "4417", "target" : "6073", "shared_name" : "1656 (interacts with) 92170", "name" : "1656 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 28734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28730", "source" : "4417", "target" : "3593", "shared_name" : "1656 (interacts with) 5530", "name" : "1656 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 28730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28726", "source" : "4417", "target" : "4185", "shared_name" : "1656 (interacts with) 29968", "name" : "1656 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 28726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28722", "source" : "4417", "target" : "893", "shared_name" : "1656 (interacts with) 9361", "name" : "1656 (interacts with) 9361", "interaction" : "interacts with", "SUID" : 28722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28718", "source" : "4417", "target" : "5037", "shared_name" : "1656 (interacts with) 5515", "name" : "1656 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 28718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28714", "source" : "4417", "target" : "6001", "shared_name" : "1656 (interacts with) 55157", "name" : "1656 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 28714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28710", "source" : "4417", "target" : "521", "shared_name" : "1656 (interacts with) 85476", "name" : "1656 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 28710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28706", "source" : "4417", "target" : "4733", "shared_name" : "1656 (interacts with) 23404", "name" : "1656 (interacts with) 23404", "interaction" : "interacts with", "SUID" : 28706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28702", "source" : "4417", "target" : "1725", "shared_name" : "1656 (interacts with) 23019", "name" : "1656 (interacts with) 23019", "interaction" : "interacts with", "SUID" : 28702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28698", "source" : "4417", "target" : "2361", "shared_name" : "1656 (interacts with) 51010", "name" : "1656 (interacts with) 51010", "interaction" : "interacts with", "SUID" : 28698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28694", "source" : "4417", "target" : "2073", "shared_name" : "1656 (interacts with) 5393", "name" : "1656 (interacts with) 5393", "interaction" : "interacts with", "SUID" : 28694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28690", "source" : "4417", "target" : "2389", "shared_name" : "1656 (interacts with) 6925", "name" : "1656 (interacts with) 6925", "interaction" : "interacts with", "SUID" : 28690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28686", "source" : "4417", "target" : "5461", "shared_name" : "1656 (interacts with) 4665", "name" : "1656 (interacts with) 4665", "interaction" : "interacts with", "SUID" : 28686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28682", "source" : "4417", "target" : "1509", "shared_name" : "1656 (interacts with) 63976", "name" : "1656 (interacts with) 63976", "interaction" : "interacts with", "SUID" : 28682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28678", "source" : "4417", "target" : "4557", "shared_name" : "1656 (interacts with) 57410", "name" : "1656 (interacts with) 57410", "interaction" : "interacts with", "SUID" : 28678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28746", "source" : "4413", "target" : "877", "shared_name" : "6612 (interacts with) 7341", "name" : "6612 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 28746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28742", "source" : "4413", "target" : "481", "shared_name" : "6612 (interacts with) 7507", "name" : "6612 (interacts with) 7507", "interaction" : "interacts with", "SUID" : 28742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28738", "source" : "4413", "target" : "5849", "shared_name" : "6612 (interacts with) 6613", "name" : "6612 (interacts with) 6613", "interaction" : "interacts with", "SUID" : 28738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28802", "source" : "4409", "target" : "521", "shared_name" : "6341 (interacts with) 85476", "name" : "6341 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 28802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28798", "source" : "4409", "target" : "889", "shared_name" : "6341 (interacts with) 80224", "name" : "6341 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 28798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28794", "source" : "4409", "target" : "3705", "shared_name" : "6341 (interacts with) 87178", "name" : "6341 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 28794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28790", "source" : "4409", "target" : "721", "shared_name" : "6341 (interacts with) 79731", "name" : "6341 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 28790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28786", "source" : "4409", "target" : "6181", "shared_name" : "6341 (interacts with) 84987", "name" : "6341 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 28786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28782", "source" : "4409", "target" : "5737", "shared_name" : "6341 (interacts with) 84340", "name" : "6341 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 28782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28778", "source" : "4409", "target" : "501", "shared_name" : "6341 (interacts with) 65993", "name" : "6341 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 28778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28774", "source" : "4409", "target" : "2009", "shared_name" : "6341 (interacts with) 79133", "name" : "6341 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 28774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28770", "source" : "4409", "target" : "4757", "shared_name" : "6341 (interacts with) 9997", "name" : "6341 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 28770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28766", "source" : "4409", "target" : "713", "shared_name" : "6341 (interacts with) 7019", "name" : "6341 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 28766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28762", "source" : "4409", "target" : "6073", "shared_name" : "6341 (interacts with) 92170", "name" : "6341 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 28762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28758", "source" : "4409", "target" : "1197", "shared_name" : "6341 (interacts with) 79587", "name" : "6341 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 28758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28754", "source" : "4409", "target" : "4869", "shared_name" : "6341 (interacts with) 92935", "name" : "6341 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 28754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28750", "source" : "4409", "target" : "4101", "shared_name" : "6341 (interacts with) 65260", "name" : "6341 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 28750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29150", "source" : "4405", "target" : "1053", "shared_name" : "10667 (interacts with) 81689", "name" : "10667 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 29150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29146", "source" : "4405", "target" : "1865", "shared_name" : "10667 (interacts with) 498", "name" : "10667 (interacts with) 498", "interaction" : "interacts with", "SUID" : 29146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29142", "source" : "4405", "target" : "2297", "shared_name" : "10667 (interacts with) 55005", "name" : "10667 (interacts with) 55005", "interaction" : "interacts with", "SUID" : 29142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29138", "source" : "4405", "target" : "4925", "shared_name" : "10667 (interacts with) 246243", "name" : "10667 (interacts with) 246243", "interaction" : "interacts with", "SUID" : 29138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29134", "source" : "4405", "target" : "1085", "shared_name" : "10667 (interacts with) 9377", "name" : "10667 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 29134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29130", "source" : "4405", "target" : "793", "shared_name" : "10667 (interacts with) 137682", "name" : "10667 (interacts with) 137682", "interaction" : "interacts with", "SUID" : 29130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29126", "source" : "4405", "target" : "1929", "shared_name" : "10667 (interacts with) 51218", "name" : "10667 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 29126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29122", "source" : "4405", "target" : "5689", "shared_name" : "10667 (interacts with) 27089", "name" : "10667 (interacts with) 27089", "interaction" : "interacts with", "SUID" : 29122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29118", "source" : "4405", "target" : "889", "shared_name" : "10667 (interacts with) 80224", "name" : "10667 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 29118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29114", "source" : "4405", "target" : "6181", "shared_name" : "10667 (interacts with) 84987", "name" : "10667 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 29114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29110", "source" : "4405", "target" : "3065", "shared_name" : "10667 (interacts with) 25828", "name" : "10667 (interacts with) 25828", "interaction" : "interacts with", "SUID" : 29110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29106", "source" : "4405", "target" : "5985", "shared_name" : "10667 (interacts with) 27235", "name" : "10667 (interacts with) 27235", "interaction" : "interacts with", "SUID" : 29106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29102", "source" : "4405", "target" : "2689", "shared_name" : "10667 (interacts with) 4715", "name" : "10667 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 29102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29098", "source" : "4405", "target" : "6125", "shared_name" : "10667 (interacts with) 22907", "name" : "10667 (interacts with) 22907", "interaction" : "interacts with", "SUID" : 29098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29094", "source" : "4405", "target" : "3761", "shared_name" : "10667 (interacts with) 25915", "name" : "10667 (interacts with) 25915", "interaction" : "interacts with", "SUID" : 29094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29090", "source" : "4405", "target" : "1573", "shared_name" : "10667 (interacts with) 4723", "name" : "10667 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 29090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29086", "source" : "4405", "target" : "1325", "shared_name" : "10667 (interacts with) 7284", "name" : "10667 (interacts with) 7284", "interaction" : "interacts with", "SUID" : 29086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29082", "source" : "4405", "target" : "2477", "shared_name" : "10667 (interacts with) 57107", "name" : "10667 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 29082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29078", "source" : "4405", "target" : "3545", "shared_name" : "10667 (interacts with) 708", "name" : "10667 (interacts with) 708", "interaction" : "interacts with", "SUID" : 29078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29074", "source" : "4405", "target" : "2337", "shared_name" : "10667 (interacts with) 28976", "name" : "10667 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 29074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29070", "source" : "4405", "target" : "5169", "shared_name" : "10667 (interacts with) 1355", "name" : "10667 (interacts with) 1355", "interaction" : "interacts with", "SUID" : 29070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29066", "source" : "4405", "target" : "2609", "shared_name" : "10667 (interacts with) 29960", "name" : "10667 (interacts with) 29960", "interaction" : "interacts with", "SUID" : 29066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29062", "source" : "4405", "target" : "3617", "shared_name" : "10667 (interacts with) 4704", "name" : "10667 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 29062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29058", "source" : "4405", "target" : "621", "shared_name" : "10667 (interacts with) 122961", "name" : "10667 (interacts with) 122961", "interaction" : "interacts with", "SUID" : 29058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29054", "source" : "4405", "target" : "2741", "shared_name" : "10667 (interacts with) 4695", "name" : "10667 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 29054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29050", "source" : "4405", "target" : "2825", "shared_name" : "10667 (interacts with) 126328", "name" : "10667 (interacts with) 126328", "interaction" : "interacts with", "SUID" : 29050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29046", "source" : "4405", "target" : "2801", "shared_name" : "10667 (interacts with) 4700", "name" : "10667 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 29046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29042", "source" : "4405", "target" : "1105", "shared_name" : "10667 (interacts with) 493753", "name" : "10667 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 29042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29038", "source" : "4405", "target" : "2285", "shared_name" : "10667 (interacts with) 51300", "name" : "10667 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 29038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29034", "source" : "4405", "target" : "4017", "shared_name" : "10667 (interacts with) 4719", "name" : "10667 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 29034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29030", "source" : "4405", "target" : "5845", "shared_name" : "10667 (interacts with) 4714", "name" : "10667 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 29030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29026", "source" : "4405", "target" : "5505", "shared_name" : "10667 (interacts with) 29078", "name" : "10667 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 29026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29022", "source" : "4405", "target" : "2121", "shared_name" : "10667 (interacts with) 11232", "name" : "10667 (interacts with) 11232", "interaction" : "interacts with", "SUID" : 29022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29018", "source" : "4405", "target" : "5853", "shared_name" : "10667 (interacts with) 4709", "name" : "10667 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 29018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29014", "source" : "4405", "target" : "2009", "shared_name" : "10667 (interacts with) 79133", "name" : "10667 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 29014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29010", "source" : "4405", "target" : "3705", "shared_name" : "10667 (interacts with) 87178", "name" : "10667 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 29010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29006", "source" : "4405", "target" : "2109", "shared_name" : "10667 (interacts with) 51103", "name" : "10667 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 29006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29002", "source" : "4405", "target" : "2797", "shared_name" : "10667 (interacts with) 4728", "name" : "10667 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 29002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28998", "source" : "4405", "target" : "2345", "shared_name" : "10667 (interacts with) 200205", "name" : "10667 (interacts with) 200205", "interaction" : "interacts with", "SUID" : 28998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28994", "source" : "4405", "target" : "4061", "shared_name" : "10667 (interacts with) 4705", "name" : "10667 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 28994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28990", "source" : "4405", "target" : "4069", "shared_name" : "10667 (interacts with) 374291", "name" : "10667 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 28990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28986", "source" : "4405", "target" : "4593", "shared_name" : "10667 (interacts with) 2058", "name" : "10667 (interacts with) 2058", "interaction" : "interacts with", "SUID" : 28986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28982", "source" : "4405", "target" : "2753", "shared_name" : "10667 (interacts with) 4720", "name" : "10667 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 28982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28978", "source" : "4405", "target" : "501", "shared_name" : "10667 (interacts with) 65993", "name" : "10667 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 28978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28974", "source" : "4405", "target" : "4409", "shared_name" : "10667 (interacts with) 6341", "name" : "10667 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 28974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28970", "source" : "4405", "target" : "1869", "shared_name" : "10667 (interacts with) 4729", "name" : "10667 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 28970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28966", "source" : "4405", "target" : "1561", "shared_name" : "10667 (interacts with) 51117", "name" : "10667 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 28966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28962", "source" : "4405", "target" : "5685", "shared_name" : "10667 (interacts with) 1340", "name" : "10667 (interacts with) 1340", "interaction" : "interacts with", "SUID" : 28962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28958", "source" : "4405", "target" : "1921", "shared_name" : "10667 (interacts with) 1352", "name" : "10667 (interacts with) 1352", "interaction" : "interacts with", "SUID" : 28958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28954", "source" : "4405", "target" : "3973", "shared_name" : "10667 (interacts with) 55572", "name" : "10667 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 28954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28950", "source" : "4405", "target" : "3641", "shared_name" : "10667 (interacts with) 4141", "name" : "10667 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 28950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28946", "source" : "4405", "target" : "1577", "shared_name" : "10667 (interacts with) 51091", "name" : "10667 (interacts with) 51091", "interaction" : "interacts with", "SUID" : 28946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28942", "source" : "4405", "target" : "2837", "shared_name" : "10667 (interacts with) 123263", "name" : "10667 (interacts with) 123263", "interaction" : "interacts with", "SUID" : 28942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28938", "source" : "4405", "target" : "2105", "shared_name" : "10667 (interacts with) 56945", "name" : "10667 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 28938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28934", "source" : "4405", "target" : "5737", "shared_name" : "10667 (interacts with) 84340", "name" : "10667 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 28934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28930", "source" : "4405", "target" : "3169", "shared_name" : "10667 (interacts with) 1615", "name" : "10667 (interacts with) 1615", "interaction" : "interacts with", "SUID" : 28930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28926", "source" : "4405", "target" : "457", "shared_name" : "10667 (interacts with) 16", "name" : "10667 (interacts with) 16", "interaction" : "interacts with", "SUID" : 28926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28922", "source" : "4405", "target" : "3649", "shared_name" : "10667 (interacts with) 51520", "name" : "10667 (interacts with) 51520", "interaction" : "interacts with", "SUID" : 28922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28918", "source" : "4405", "target" : "1089", "shared_name" : "10667 (interacts with) 5917", "name" : "10667 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 28918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28914", "source" : "4405", "target" : "4693", "shared_name" : "10667 (interacts with) 6301", "name" : "10667 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 28914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28910", "source" : "4405", "target" : "4229", "shared_name" : "10667 (interacts with) 3035", "name" : "10667 (interacts with) 3035", "interaction" : "interacts with", "SUID" : 28910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28906", "source" : "4405", "target" : "4597", "shared_name" : "10667 (interacts with) 3376", "name" : "10667 (interacts with) 3376", "interaction" : "interacts with", "SUID" : 28906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28902", "source" : "4405", "target" : "1581", "shared_name" : "10667 (interacts with) 7407", "name" : "10667 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 28902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28898", "source" : "4405", "target" : "4141", "shared_name" : "10667 (interacts with) 617", "name" : "10667 (interacts with) 617", "interaction" : "interacts with", "SUID" : 28898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28894", "source" : "4405", "target" : "4757", "shared_name" : "10667 (interacts with) 9997", "name" : "10667 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 28894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28890", "source" : "4405", "target" : "713", "shared_name" : "10667 (interacts with) 7019", "name" : "10667 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 28890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28886", "source" : "4405", "target" : "2021", "shared_name" : "10667 (interacts with) 5428", "name" : "10667 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 28886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28882", "source" : "4405", "target" : "6073", "shared_name" : "10667 (interacts with) 92170", "name" : "10667 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 28882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28878", "source" : "4405", "target" : "4101", "shared_name" : "10667 (interacts with) 65260", "name" : "10667 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 28878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28874", "source" : "4405", "target" : "6049", "shared_name" : "10667 (interacts with) 25973", "name" : "10667 (interacts with) 25973", "interaction" : "interacts with", "SUID" : 28874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28870", "source" : "4405", "target" : "4897", "shared_name" : "10667 (interacts with) 55149", "name" : "10667 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 28870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28866", "source" : "4405", "target" : "521", "shared_name" : "10667 (interacts with) 85476", "name" : "10667 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 28866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28862", "source" : "4405", "target" : "477", "shared_name" : "10667 (interacts with) 51021", "name" : "10667 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 28862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28858", "source" : "4405", "target" : "1197", "shared_name" : "10667 (interacts with) 79587", "name" : "10667 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 28858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28854", "source" : "4405", "target" : "721", "shared_name" : "10667 (interacts with) 79731", "name" : "10667 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 28854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28850", "source" : "4405", "target" : "5085", "shared_name" : "10667 (interacts with) 56652", "name" : "10667 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 28850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28846", "source" : "4405", "target" : "6157", "shared_name" : "10667 (interacts with) 3735", "name" : "10667 (interacts with) 3735", "interaction" : "interacts with", "SUID" : 28846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28842", "source" : "4405", "target" : "4349", "shared_name" : "10667 (interacts with) 5859", "name" : "10667 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 28842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28838", "source" : "4405", "target" : "1129", "shared_name" : "10667 (interacts with) 57505", "name" : "10667 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 28838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28834", "source" : "4405", "target" : "5189", "shared_name" : "10667 (interacts with) 57176", "name" : "10667 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 28834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28830", "source" : "4405", "target" : "4261", "shared_name" : "10667 (interacts with) 124454", "name" : "10667 (interacts with) 124454", "interaction" : "interacts with", "SUID" : 28830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28826", "source" : "4405", "target" : "3633", "shared_name" : "10667 (interacts with) 51067", "name" : "10667 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 28826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28822", "source" : "4405", "target" : "4621", "shared_name" : "10667 (interacts with) 57038", "name" : "10667 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 28822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28818", "source" : "4405", "target" : "4085", "shared_name" : "10667 (interacts with) 55699", "name" : "10667 (interacts with) 55699", "interaction" : "interacts with", "SUID" : 28818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28814", "source" : "4405", "target" : "4869", "shared_name" : "10667 (interacts with) 92935", "name" : "10667 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 28814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28810", "source" : "4405", "target" : "6001", "shared_name" : "10667 (interacts with) 55157", "name" : "10667 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 28810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "28806", "source" : "4405", "target" : "1737", "shared_name" : "10667 (interacts with) 26060", "name" : "10667 (interacts with) 26060", "interaction" : "interacts with", "SUID" : 28806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29186", "source" : "4401", "target" : "1605", "shared_name" : "55526 (interacts with) 6648", "name" : "55526 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 29186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29182", "source" : "4401", "target" : "1129", "shared_name" : "55526 (interacts with) 57505", "name" : "55526 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 29182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29178", "source" : "4401", "target" : "1669", "shared_name" : "55526 (interacts with) 6390", "name" : "55526 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 29178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29174", "source" : "4401", "target" : "493", "shared_name" : "55526 (interacts with) 594", "name" : "55526 (interacts with) 594", "interaction" : "interacts with", "SUID" : 29174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29170", "source" : "4401", "target" : "485", "shared_name" : "55526 (interacts with) 593", "name" : "55526 (interacts with) 593", "interaction" : "interacts with", "SUID" : 29170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29166", "source" : "4401", "target" : "5025", "shared_name" : "55526 (interacts with) 6389", "name" : "55526 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 29166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29162", "source" : "4401", "target" : "3425", "shared_name" : "55526 (interacts with) 8803", "name" : "55526 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 29162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29158", "source" : "4401", "target" : "2925", "shared_name" : "55526 (interacts with) 8802", "name" : "55526 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 29158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29154", "source" : "4401", "target" : "1485", "shared_name" : "55526 (interacts with) 8050", "name" : "55526 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 29154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29234", "source" : "4397", "target" : "405", "shared_name" : "10058 (interacts with) 54187", "name" : "10058 (interacts with) 54187", "interaction" : "interacts with", "SUID" : 29234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29230", "source" : "4397", "target" : "461", "shared_name" : "10058 (interacts with) 5198", "name" : "10058 (interacts with) 5198", "interaction" : "interacts with", "SUID" : 29230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29226", "source" : "4397", "target" : "5985", "shared_name" : "10058 (interacts with) 27235", "name" : "10058 (interacts with) 27235", "interaction" : "interacts with", "SUID" : 29226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29222", "source" : "4397", "target" : "4777", "shared_name" : "10058 (interacts with) 2632", "name" : "10058 (interacts with) 2632", "interaction" : "interacts with", "SUID" : 29222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29218", "source" : "4397", "target" : "2989", "shared_name" : "10058 (interacts with) 224", "name" : "10058 (interacts with) 224", "interaction" : "interacts with", "SUID" : 29218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29214", "source" : "4397", "target" : "977", "shared_name" : "10058 (interacts with) 79944", "name" : "10058 (interacts with) 79944", "interaction" : "interacts with", "SUID" : 29214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29210", "source" : "4397", "target" : "2577", "shared_name" : "10058 (interacts with) 4337", "name" : "10058 (interacts with) 4337", "interaction" : "interacts with", "SUID" : 29210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29206", "source" : "4397", "target" : "6089", "shared_name" : "10058 (interacts with) 3145", "name" : "10058 (interacts with) 3145", "interaction" : "interacts with", "SUID" : 29206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29202", "source" : "4397", "target" : "3757", "shared_name" : "10058 (interacts with) 215", "name" : "10058 (interacts with) 215", "interaction" : "interacts with", "SUID" : 29202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29198", "source" : "4397", "target" : "3901", "shared_name" : "10058 (interacts with) 19", "name" : "10058 (interacts with) 19", "interaction" : "interacts with", "SUID" : 29198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29194", "source" : "4397", "target" : "3337", "shared_name" : "10058 (interacts with) 2639", "name" : "10058 (interacts with) 2639", "interaction" : "interacts with", "SUID" : 29194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29190", "source" : "4397", "target" : "4881", "shared_name" : "10058 (interacts with) 6833", "name" : "10058 (interacts with) 6833", "interaction" : "interacts with", "SUID" : 29190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29242", "source" : "4393", "target" : "2233", "shared_name" : "950 (interacts with) 9516", "name" : "950 (interacts with) 9516", "interaction" : "interacts with", "SUID" : 29242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29238", "source" : "4393", "target" : "2969", "shared_name" : "950 (interacts with) 8867", "name" : "950 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 29238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29250", "source" : "4389", "target" : "2969", "shared_name" : "81846 (interacts with) 8867", "name" : "81846 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 29250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29246", "source" : "4389", "target" : "385", "shared_name" : "81846 (interacts with) 5319", "name" : "81846 (interacts with) 5319", "interaction" : "interacts with", "SUID" : 29246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29322", "source" : "4385", "target" : "1069", "shared_name" : "3084 (interacts with) 5879", "name" : "3084 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 29322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29318", "source" : "4385", "target" : "5081", "shared_name" : "3084 (interacts with) 5594", "name" : "3084 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 29318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29314", "source" : "4385", "target" : "973", "shared_name" : "3084 (interacts with) 5595", "name" : "3084 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 29314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29310", "source" : "4385", "target" : "1785", "shared_name" : "3084 (interacts with) 667", "name" : "3084 (interacts with) 667", "interaction" : "interacts with", "SUID" : 29310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29306", "source" : "4385", "target" : "1405", "shared_name" : "3084 (interacts with) 998", "name" : "3084 (interacts with) 998", "interaction" : "interacts with", "SUID" : 29306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29302", "source" : "4385", "target" : "5149", "shared_name" : "3084 (interacts with) 5058", "name" : "3084 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 29302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29298", "source" : "4385", "target" : "3585", "shared_name" : "3084 (interacts with) 3908", "name" : "3084 (interacts with) 3908", "interaction" : "interacts with", "SUID" : 29298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29294", "source" : "4385", "target" : "3289", "shared_name" : "3084 (interacts with) 5913", "name" : "3084 (interacts with) 5913", "interaction" : "interacts with", "SUID" : 29294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29290", "source" : "4385", "target" : "637", "shared_name" : "3084 (interacts with) 6654", "name" : "3084 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 29290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29286", "source" : "4385", "target" : "817", "shared_name" : "3084 (interacts with) 5728", "name" : "3084 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 29286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29282", "source" : "4385", "target" : "4213", "shared_name" : "3084 (interacts with) 5295", "name" : "3084 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 29282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29278", "source" : "4385", "target" : "5225", "shared_name" : "3084 (interacts with) 5290", "name" : "3084 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 29278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29274", "source" : "4385", "target" : "1025", "shared_name" : "3084 (interacts with) 80055", "name" : "3084 (interacts with) 80055", "interaction" : "interacts with", "SUID" : 29274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29270", "source" : "4385", "target" : "1137", "shared_name" : "3084 (interacts with) 80207", "name" : "3084 (interacts with) 80207", "interaction" : "interacts with", "SUID" : 29270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29266", "source" : "4385", "target" : "4081", "shared_name" : "3084 (interacts with) 148789", "name" : "3084 (interacts with) 148789", "interaction" : "interacts with", "SUID" : 29266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29262", "source" : "4385", "target" : "3773", "shared_name" : "3084 (interacts with) 540", "name" : "3084 (interacts with) 540", "interaction" : "interacts with", "SUID" : 29262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29258", "source" : "4385", "target" : "2933", "shared_name" : "3084 (interacts with) 10585", "name" : "3084 (interacts with) 10585", "interaction" : "interacts with", "SUID" : 29258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29254", "source" : "4385", "target" : "2537", "shared_name" : "3084 (interacts with) 3984", "name" : "3084 (interacts with) 3984", "interaction" : "interacts with", "SUID" : 29254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29338", "source" : "4381", "target" : "5561", "shared_name" : "2517 (interacts with) 4247", "name" : "2517 (interacts with) 4247", "interaction" : "interacts with", "SUID" : 29338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29334", "source" : "4381", "target" : "3373", "shared_name" : "2517 (interacts with) 2530", "name" : "2517 (interacts with) 2530", "interaction" : "interacts with", "SUID" : 29334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29330", "source" : "4381", "target" : "2245", "shared_name" : "2517 (interacts with) 5587", "name" : "2517 (interacts with) 5587", "interaction" : "interacts with", "SUID" : 29330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29326", "source" : "4381", "target" : "5221", "shared_name" : "2517 (interacts with) 285362", "name" : "2517 (interacts with) 285362", "interaction" : "interacts with", "SUID" : 29326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29342", "source" : "4373", "target" : "2857", "shared_name" : "4922 (interacts with) 56947", "name" : "4922 (interacts with) 56947", "interaction" : "interacts with", "SUID" : 29342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29346", "source" : "4369", "target" : "3857", "shared_name" : "54982 (interacts with) 65062", "name" : "54982 (interacts with) 65062", "interaction" : "interacts with", "SUID" : 29346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29350", "source" : "4365", "target" : "5717", "shared_name" : "58497 (interacts with) 29925", "name" : "58497 (interacts with) 29925", "interaction" : "interacts with", "SUID" : 29350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29394", "source" : "4361", "target" : "5361", "shared_name" : "22906 (interacts with) 5604", "name" : "22906 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 29394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29390", "source" : "4361", "target" : "5761", "shared_name" : "22906 (interacts with) 4208", "name" : "22906 (interacts with) 4208", "interaction" : "interacts with", "SUID" : 29390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29386", "source" : "4361", "target" : "3677", "shared_name" : "22906 (interacts with) 673", "name" : "22906 (interacts with) 673", "interaction" : "interacts with", "SUID" : 29386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29382", "source" : "4361", "target" : "3577", "shared_name" : "22906 (interacts with) 5605", "name" : "22906 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 29382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29378", "source" : "4361", "target" : "5945", "shared_name" : "22906 (interacts with) 55750", "name" : "22906 (interacts with) 55750", "interaction" : "interacts with", "SUID" : 29378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29374", "source" : "4361", "target" : "4173", "shared_name" : "22906 (interacts with) 23499", "name" : "22906 (interacts with) 23499", "interaction" : "interacts with", "SUID" : 29374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29370", "source" : "4361", "target" : "3841", "shared_name" : "22906 (interacts with) 9444", "name" : "22906 (interacts with) 9444", "interaction" : "interacts with", "SUID" : 29370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29366", "source" : "4361", "target" : "4657", "shared_name" : "22906 (interacts with) 64837", "name" : "22906 (interacts with) 64837", "interaction" : "interacts with", "SUID" : 29366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29362", "source" : "4361", "target" : "4985", "shared_name" : "22906 (interacts with) 3798", "name" : "22906 (interacts with) 3798", "interaction" : "interacts with", "SUID" : 29362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29358", "source" : "4361", "target" : "4873", "shared_name" : "22906 (interacts with) 4644", "name" : "22906 (interacts with) 4644", "interaction" : "interacts with", "SUID" : 29358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29354", "source" : "4361", "target" : "5545", "shared_name" : "22906 (interacts with) 5195", "name" : "22906 (interacts with) 5195", "interaction" : "interacts with", "SUID" : 29354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29426", "source" : "4357", "target" : "2317", "shared_name" : "196528 (interacts with) 51412", "name" : "196528 (interacts with) 51412", "interaction" : "interacts with", "SUID" : 29426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29422", "source" : "4357", "target" : "3069", "shared_name" : "196528 (interacts with) 57492", "name" : "196528 (interacts with) 57492", "interaction" : "interacts with", "SUID" : 29422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29418", "source" : "4357", "target" : "4485", "shared_name" : "196528 (interacts with) 54496", "name" : "196528 (interacts with) 54496", "interaction" : "interacts with", "SUID" : 29418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29414", "source" : "4357", "target" : "525", "shared_name" : "196528 (interacts with) 6598", "name" : "196528 (interacts with) 6598", "interaction" : "interacts with", "SUID" : 29414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29410", "source" : "4357", "target" : "3105", "shared_name" : "196528 (interacts with) 8289", "name" : "196528 (interacts with) 8289", "interaction" : "interacts with", "SUID" : 29410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29406", "source" : "4357", "target" : "4629", "shared_name" : "196528 (interacts with) 6605", "name" : "196528 (interacts with) 6605", "interaction" : "interacts with", "SUID" : 29406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29402", "source" : "4357", "target" : "5729", "shared_name" : "196528 (interacts with) 861", "name" : "196528 (interacts with) 861", "interaction" : "interacts with", "SUID" : 29402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29398", "source" : "4357", "target" : "3093", "shared_name" : "196528 (interacts with) 6597", "name" : "196528 (interacts with) 6597", "interaction" : "interacts with", "SUID" : 29398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29442", "source" : "4353", "target" : "1389", "shared_name" : "9512 (interacts with) 92609", "name" : "9512 (interacts with) 92609", "interaction" : "interacts with", "SUID" : 29442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29438", "source" : "4353", "target" : "2377", "shared_name" : "9512 (interacts with) 6687", "name" : "9512 (interacts with) 6687", "interaction" : "interacts with", "SUID" : 29438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29434", "source" : "4353", "target" : "1989", "shared_name" : "9512 (interacts with) 3060", "name" : "9512 (interacts with) 3060", "interaction" : "interacts with", "SUID" : 29434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29430", "source" : "4353", "target" : "529", "shared_name" : "9512 (interacts with) 23203", "name" : "9512 (interacts with) 23203", "interaction" : "interacts with", "SUID" : 29430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29502", "source" : "4349", "target" : "5593", "shared_name" : "5859 (interacts with) 875", "name" : "5859 (interacts with) 875", "interaction" : "interacts with", "SUID" : 29502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29498", "source" : "4349", "target" : "2229", "shared_name" : "5859 (interacts with) 738", "name" : "5859 (interacts with) 738", "interaction" : "interacts with", "SUID" : 29498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29494", "source" : "4349", "target" : "721", "shared_name" : "5859 (interacts with) 79731", "name" : "5859 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 29494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29490", "source" : "4349", "target" : "1197", "shared_name" : "5859 (interacts with) 79587", "name" : "5859 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 29490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29486", "source" : "4349", "target" : "4693", "shared_name" : "5859 (interacts with) 6301", "name" : "5859 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 29486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29482", "source" : "4349", "target" : "1581", "shared_name" : "5859 (interacts with) 7407", "name" : "5859 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 29482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29478", "source" : "4349", "target" : "4869", "shared_name" : "5859 (interacts with) 92935", "name" : "5859 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 29478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29474", "source" : "4349", "target" : "3641", "shared_name" : "5859 (interacts with) 4141", "name" : "5859 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 29474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29470", "source" : "4349", "target" : "3169", "shared_name" : "5859 (interacts with) 1615", "name" : "5859 (interacts with) 1615", "interaction" : "interacts with", "SUID" : 29470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29466", "source" : "4349", "target" : "4597", "shared_name" : "5859 (interacts with) 3376", "name" : "5859 (interacts with) 3376", "interaction" : "interacts with", "SUID" : 29466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29462", "source" : "4349", "target" : "3157", "shared_name" : "5859 (interacts with) 9255", "name" : "5859 (interacts with) 9255", "interaction" : "interacts with", "SUID" : 29462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29458", "source" : "4349", "target" : "3529", "shared_name" : "5859 (interacts with) 7965", "name" : "5859 (interacts with) 7965", "interaction" : "interacts with", "SUID" : 29458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29454", "source" : "4349", "target" : "4593", "shared_name" : "5859 (interacts with) 2058", "name" : "5859 (interacts with) 2058", "interaction" : "interacts with", "SUID" : 29454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29450", "source" : "4349", "target" : "1089", "shared_name" : "5859 (interacts with) 5917", "name" : "5859 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 29450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29446", "source" : "4349", "target" : "3649", "shared_name" : "5859 (interacts with) 51520", "name" : "5859 (interacts with) 51520", "interaction" : "interacts with", "SUID" : 29446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29522", "source" : "4345", "target" : "2905", "shared_name" : "4854 (interacts with) 5664", "name" : "4854 (interacts with) 5664", "interaction" : "interacts with", "SUID" : 29522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29518", "source" : "4345", "target" : "2401", "shared_name" : "4854 (interacts with) 28514", "name" : "4854 (interacts with) 28514", "interaction" : "interacts with", "SUID" : 29518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29514", "source" : "4345", "target" : "5749", "shared_name" : "4854 (interacts with) 10959", "name" : "4854 (interacts with) 10959", "interaction" : "interacts with", "SUID" : 29514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29510", "source" : "4345", "target" : "805", "shared_name" : "4854 (interacts with) 6772", "name" : "4854 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 29510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29506", "source" : "4345", "target" : "3041", "shared_name" : "4854 (interacts with) 5663", "name" : "4854 (interacts with) 5663", "interaction" : "interacts with", "SUID" : 29506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29606", "source" : "4341", "target" : "1133", "shared_name" : "2729 (interacts with) 3418", "name" : "2729 (interacts with) 3418", "interaction" : "interacts with", "SUID" : 29606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29602", "source" : "4341", "target" : "5993", "shared_name" : "2729 (interacts with) 6611", "name" : "2729 (interacts with) 6611", "interaction" : "interacts with", "SUID" : 29602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29598", "source" : "4341", "target" : "769", "shared_name" : "2729 (interacts with) 4953", "name" : "2729 (interacts with) 4953", "interaction" : "interacts with", "SUID" : 29598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29594", "source" : "4341", "target" : "1013", "shared_name" : "2729 (interacts with) 6898", "name" : "2729 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 29594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29590", "source" : "4341", "target" : "5593", "shared_name" : "2729 (interacts with) 875", "name" : "2729 (interacts with) 875", "interaction" : "interacts with", "SUID" : 29590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29586", "source" : "4341", "target" : "245", "shared_name" : "2729 (interacts with) 2936", "name" : "2729 (interacts with) 2936", "interaction" : "interacts with", "SUID" : 29586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29582", "source" : "4341", "target" : "3541", "shared_name" : "2729 (interacts with) 4191", "name" : "2729 (interacts with) 4191", "interaction" : "interacts with", "SUID" : 29582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29578", "source" : "4341", "target" : "2049", "shared_name" : "2729 (interacts with) 4552", "name" : "2729 (interacts with) 4552", "interaction" : "interacts with", "SUID" : 29578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29574", "source" : "4341", "target" : "4273", "shared_name" : "2729 (interacts with) 4548", "name" : "2729 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 29574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29570", "source" : "4341", "target" : "3077", "shared_name" : "2729 (interacts with) 6506", "name" : "2729 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 29570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29566", "source" : "4341", "target" : "461", "shared_name" : "2729 (interacts with) 5198", "name" : "2729 (interacts with) 5198", "interaction" : "interacts with", "SUID" : 29566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29562", "source" : "4341", "target" : "2457", "shared_name" : "2729 (interacts with) 4143", "name" : "2729 (interacts with) 4143", "interaction" : "interacts with", "SUID" : 29562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29558", "source" : "4341", "target" : "1385", "shared_name" : "2729 (interacts with) 6520", "name" : "2729 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 29558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29554", "source" : "4341", "target" : "2721", "shared_name" : "2729 (interacts with) 79751", "name" : "2729 (interacts with) 79751", "interaction" : "interacts with", "SUID" : 29554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29550", "source" : "4341", "target" : "1885", "shared_name" : "2729 (interacts with) 8604", "name" : "2729 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 29550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29546", "source" : "4341", "target" : "5529", "shared_name" : "2729 (interacts with) 2875", "name" : "2729 (interacts with) 2875", "interaction" : "interacts with", "SUID" : 29546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29542", "source" : "4341", "target" : "2421", "shared_name" : "2729 (interacts with) 2673", "name" : "2729 (interacts with) 2673", "interaction" : "interacts with", "SUID" : 29542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29538", "source" : "4341", "target" : "2321", "shared_name" : "2729 (interacts with) 6509", "name" : "2729 (interacts with) 6509", "interaction" : "interacts with", "SUID" : 29538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29534", "source" : "4341", "target" : "2005", "shared_name" : "2729 (interacts with) 4846", "name" : "2729 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 29534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29530", "source" : "4341", "target" : "1849", "shared_name" : "2729 (interacts with) 26275", "name" : "2729 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 29530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29526", "source" : "4341", "target" : "4253", "shared_name" : "2729 (interacts with) 84706", "name" : "2729 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 29526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29626", "source" : "4337", "target" : "1033", "shared_name" : "84197 (interacts with) 9215", "name" : "84197 (interacts with) 9215", "interaction" : "interacts with", "SUID" : 29626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29622", "source" : "4337", "target" : "1905", "shared_name" : "84197 (interacts with) 9488", "name" : "84197 (interacts with) 9488", "interaction" : "interacts with", "SUID" : 29622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29618", "source" : "4337", "target" : "689", "shared_name" : "84197 (interacts with) 6329", "name" : "84197 (interacts with) 6329", "interaction" : "interacts with", "SUID" : 29618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29614", "source" : "4337", "target" : "5757", "shared_name" : "84197 (interacts with) 4311", "name" : "84197 (interacts with) 4311", "interaction" : "interacts with", "SUID" : 29614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29610", "source" : "4337", "target" : "5573", "shared_name" : "84197 (interacts with) 84061", "name" : "84197 (interacts with) 84061", "interaction" : "interacts with", "SUID" : 29610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29642", "source" : "4333", "target" : "5197", "shared_name" : "54968 (interacts with) 7156", "name" : "54968 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 29642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29638", "source" : "4333", "target" : "721", "shared_name" : "54968 (interacts with) 79731", "name" : "54968 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 29638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29634", "source" : "4333", "target" : "2021", "shared_name" : "54968 (interacts with) 5428", "name" : "54968 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 29634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29630", "source" : "4333", "target" : "5089", "shared_name" : "54968 (interacts with) 1373", "name" : "54968 (interacts with) 1373", "interaction" : "interacts with", "SUID" : 29630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29654", "source" : "4329", "target" : "3541", "shared_name" : "11315 (interacts with) 4191", "name" : "11315 (interacts with) 4191", "interaction" : "interacts with", "SUID" : 29654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29650", "source" : "4329", "target" : "1921", "shared_name" : "11315 (interacts with) 1352", "name" : "11315 (interacts with) 1352", "interaction" : "interacts with", "SUID" : 29650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29646", "source" : "4329", "target" : "877", "shared_name" : "11315 (interacts with) 7341", "name" : "11315 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 29646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29670", "source" : "4325", "target" : "3301", "shared_name" : "55275 (interacts with) 91949", "name" : "55275 (interacts with) 91949", "interaction" : "interacts with", "SUID" : 29670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29666", "source" : "4325", "target" : "2229", "shared_name" : "55275 (interacts with) 738", "name" : "55275 (interacts with) 738", "interaction" : "interacts with", "SUID" : 29666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29662", "source" : "4325", "target" : "4005", "shared_name" : "55275 (interacts with) 23636", "name" : "55275 (interacts with) 23636", "interaction" : "interacts with", "SUID" : 29662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29658", "source" : "4325", "target" : "2301", "shared_name" : "55275 (interacts with) 9342", "name" : "55275 (interacts with) 9342", "interaction" : "interacts with", "SUID" : 29658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29694", "source" : "4321", "target" : "5969", "shared_name" : "132320 (interacts with) 10382", "name" : "132320 (interacts with) 10382", "interaction" : "interacts with", "SUID" : 29694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29690", "source" : "4321", "target" : "5713", "shared_name" : "132320 (interacts with) 7531", "name" : "132320 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 29690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29686", "source" : "4321", "target" : "4021", "shared_name" : "132320 (interacts with) 203068", "name" : "132320 (interacts with) 203068", "interaction" : "interacts with", "SUID" : 29686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29682", "source" : "4321", "target" : "2357", "shared_name" : "132320 (interacts with) 79600", "name" : "132320 (interacts with) 79600", "interaction" : "interacts with", "SUID" : 29682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29678", "source" : "4321", "target" : "4245", "shared_name" : "132320 (interacts with) 91147", "name" : "132320 (interacts with) 91147", "interaction" : "interacts with", "SUID" : 29678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29674", "source" : "4321", "target" : "269", "shared_name" : "132320 (interacts with) 51259", "name" : "132320 (interacts with) 51259", "interaction" : "interacts with", "SUID" : 29674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29762", "source" : "4317", "target" : "1865", "shared_name" : "3178 (interacts with) 498", "name" : "3178 (interacts with) 498", "interaction" : "interacts with", "SUID" : 29762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29758", "source" : "4317", "target" : "4077", "shared_name" : "3178 (interacts with) 71", "name" : "3178 (interacts with) 71", "interaction" : "interacts with", "SUID" : 29758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29754", "source" : "4317", "target" : "997", "shared_name" : "3178 (interacts with) 7431", "name" : "3178 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 29754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29750", "source" : "4317", "target" : "473", "shared_name" : "3178 (interacts with) 7072", "name" : "3178 (interacts with) 7072", "interaction" : "interacts with", "SUID" : 29750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29746", "source" : "4317", "target" : "5377", "shared_name" : "3178 (interacts with) 6638", "name" : "3178 (interacts with) 6638", "interaction" : "interacts with", "SUID" : 29746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29742", "source" : "4317", "target" : "1837", "shared_name" : "3178 (interacts with) 9939", "name" : "3178 (interacts with) 9939", "interaction" : "interacts with", "SUID" : 29742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29738", "source" : "4317", "target" : "5193", "shared_name" : "3178 (interacts with) 5725", "name" : "3178 (interacts with) 5725", "interaction" : "interacts with", "SUID" : 29738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29734", "source" : "4317", "target" : "5281", "shared_name" : "3178 (interacts with) 10084", "name" : "3178 (interacts with) 10084", "interaction" : "interacts with", "SUID" : 29734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29730", "source" : "4317", "target" : "5861", "shared_name" : "3178 (interacts with) 5435", "name" : "3178 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 29730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29726", "source" : "4317", "target" : "2649", "shared_name" : "3178 (interacts with) 5430", "name" : "3178 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 29726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29722", "source" : "4317", "target" : "2385", "shared_name" : "3178 (interacts with) 3192", "name" : "3178 (interacts with) 3192", "interaction" : "interacts with", "SUID" : 29722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29718", "source" : "4317", "target" : "1753", "shared_name" : "3178 (interacts with) 3188", "name" : "3178 (interacts with) 3188", "interaction" : "interacts with", "SUID" : 29718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29714", "source" : "4317", "target" : "1993", "shared_name" : "3178 (interacts with) 3181", "name" : "3178 (interacts with) 3181", "interaction" : "interacts with", "SUID" : 29714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29710", "source" : "4317", "target" : "4405", "shared_name" : "3178 (interacts with) 10667", "name" : "3178 (interacts with) 10667", "interaction" : "interacts with", "SUID" : 29710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29706", "source" : "4317", "target" : "1165", "shared_name" : "3178 (interacts with) 22868", "name" : "3178 (interacts with) 22868", "interaction" : "interacts with", "SUID" : 29706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29702", "source" : "4317", "target" : "3633", "shared_name" : "3178 (interacts with) 51067", "name" : "3178 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 29702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29698", "source" : "4317", "target" : "2425", "shared_name" : "3178 (interacts with) 3981", "name" : "3178 (interacts with) 3981", "interaction" : "interacts with", "SUID" : 29698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29770", "source" : "4313", "target" : "397", "shared_name" : "3508 (interacts with) 50", "name" : "3508 (interacts with) 50", "interaction" : "interacts with", "SUID" : 29770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29766", "source" : "4313", "target" : "1721", "shared_name" : "3508 (interacts with) 51807", "name" : "3508 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 29766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29786", "source" : "4309", "target" : "521", "shared_name" : "5654 (interacts with) 85476", "name" : "5654 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 29786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29782", "source" : "4309", "target" : "5737", "shared_name" : "5654 (interacts with) 84340", "name" : "5654 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 29782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29778", "source" : "4309", "target" : "1297", "shared_name" : "5654 (interacts with) 6678", "name" : "5654 (interacts with) 6678", "interaction" : "interacts with", "SUID" : 29778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29774", "source" : "4309", "target" : "4437", "shared_name" : "5654 (interacts with) 84168", "name" : "5654 (interacts with) 84168", "interaction" : "interacts with", "SUID" : 29774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29806", "source" : "4305", "target" : "869", "shared_name" : "9639 (interacts with) 23221", "name" : "9639 (interacts with) 23221", "interaction" : "interacts with", "SUID" : 29806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29802", "source" : "4305", "target" : "1405", "shared_name" : "9639 (interacts with) 998", "name" : "9639 (interacts with) 998", "interaction" : "interacts with", "SUID" : 29802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29798", "source" : "4305", "target" : "1069", "shared_name" : "9639 (interacts with) 5879", "name" : "9639 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 29798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29794", "source" : "4305", "target" : "1841", "shared_name" : "9639 (interacts with) 51651", "name" : "9639 (interacts with) 51651", "interaction" : "interacts with", "SUID" : 29794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29790", "source" : "4305", "target" : "773", "shared_name" : "9639 (interacts with) 29072", "name" : "9639 (interacts with) 29072", "interaction" : "interacts with", "SUID" : 29790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29818", "source" : "4301", "target" : "3341", "shared_name" : "8799 (interacts with) 8504", "name" : "8799 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 29818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29814", "source" : "4301", "target" : "3333", "shared_name" : "8799 (interacts with) 9409", "name" : "8799 (interacts with) 9409", "interaction" : "interacts with", "SUID" : 29814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29810", "source" : "4301", "target" : "3329", "shared_name" : "8799 (interacts with) 5824", "name" : "8799 (interacts with) 5824", "interaction" : "interacts with", "SUID" : 29810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29886", "source" : "4297", "target" : "4941", "shared_name" : "5193 (interacts with) 6342", "name" : "5193 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 29886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29882", "source" : "4297", "target" : "2353", "shared_name" : "5193 (interacts with) 5264", "name" : "5193 (interacts with) 5264", "interaction" : "interacts with", "SUID" : 29882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29878", "source" : "4297", "target" : "4301", "shared_name" : "5193 (interacts with) 8799", "name" : "5193 (interacts with) 8799", "interaction" : "interacts with", "SUID" : 29878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29874", "source" : "4297", "target" : "3333", "shared_name" : "5193 (interacts with) 9409", "name" : "5193 (interacts with) 9409", "interaction" : "interacts with", "SUID" : 29874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29870", "source" : "4297", "target" : "196", "shared_name" : "5193 (interacts with) 84188", "name" : "5193 (interacts with) 84188", "interaction" : "interacts with", "SUID" : 29870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29866", "source" : "4297", "target" : "5873", "shared_name" : "5193 (interacts with) 5827", "name" : "5193 (interacts with) 5827", "interaction" : "interacts with", "SUID" : 29866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29862", "source" : "4297", "target" : "3341", "shared_name" : "5193 (interacts with) 8504", "name" : "5193 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 29862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29858", "source" : "4297", "target" : "1953", "shared_name" : "5193 (interacts with) 5194", "name" : "5193 (interacts with) 5194", "interaction" : "interacts with", "SUID" : 29858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29854", "source" : "4297", "target" : "2325", "shared_name" : "5193 (interacts with) 55670", "name" : "5193 (interacts with) 55670", "interaction" : "interacts with", "SUID" : 29854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29850", "source" : "4297", "target" : "5545", "shared_name" : "5193 (interacts with) 5195", "name" : "5193 (interacts with) 5195", "interaction" : "interacts with", "SUID" : 29850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29846", "source" : "4297", "target" : "3329", "shared_name" : "5193 (interacts with) 5824", "name" : "5193 (interacts with) 5824", "interaction" : "interacts with", "SUID" : 29846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29842", "source" : "4297", "target" : "5901", "shared_name" : "5193 (interacts with) 11277", "name" : "5193 (interacts with) 11277", "interaction" : "interacts with", "SUID" : 29842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29838", "source" : "4297", "target" : "1645", "shared_name" : "5193 (interacts with) 51124", "name" : "5193 (interacts with) 51124", "interaction" : "interacts with", "SUID" : 29838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29834", "source" : "4297", "target" : "5205", "shared_name" : "5193 (interacts with) 5828", "name" : "5193 (interacts with) 5828", "interaction" : "interacts with", "SUID" : 29834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29830", "source" : "4297", "target" : "1873", "shared_name" : "5193 (interacts with) 7274", "name" : "5193 (interacts with) 7274", "interaction" : "interacts with", "SUID" : 29830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29826", "source" : "4297", "target" : "5237", "shared_name" : "5193 (interacts with) 5830", "name" : "5193 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 29826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29822", "source" : "4297", "target" : "5865", "shared_name" : "5193 (interacts with) 5192", "name" : "5193 (interacts with) 5192", "interaction" : "interacts with", "SUID" : 29822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30014", "source" : "4293", "target" : "1429", "shared_name" : "5156 (interacts with) 65125", "name" : "5156 (interacts with) 65125", "interaction" : "interacts with", "SUID" : 30014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30010", "source" : "4293", "target" : "4213", "shared_name" : "5156 (interacts with) 5295", "name" : "5156 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 30010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30006", "source" : "4293", "target" : "5225", "shared_name" : "5156 (interacts with) 5290", "name" : "5156 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 30006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30002", "source" : "4293", "target" : "5361", "shared_name" : "5156 (interacts with) 5604", "name" : "5156 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 30002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29998", "source" : "4293", "target" : "973", "shared_name" : "5156 (interacts with) 5595", "name" : "5156 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 29998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29994", "source" : "4293", "target" : "5081", "shared_name" : "5156 (interacts with) 5594", "name" : "5156 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 29994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29990", "source" : "4293", "target" : "1069", "shared_name" : "5156 (interacts with) 5879", "name" : "5156 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 29990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29986", "source" : "4293", "target" : "637", "shared_name" : "5156 (interacts with) 6654", "name" : "5156 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 29986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29982", "source" : "4293", "target" : "4521", "shared_name" : "5156 (interacts with) 5894", "name" : "5156 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 29982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29978", "source" : "4293", "target" : "805", "shared_name" : "5156 (interacts with) 6772", "name" : "5156 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 29978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29974", "source" : "4293", "target" : "3577", "shared_name" : "5156 (interacts with) 5605", "name" : "5156 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 29974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29970", "source" : "4293", "target" : "5037", "shared_name" : "5156 (interacts with) 5515", "name" : "5156 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 29970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29966", "source" : "4293", "target" : "1697", "shared_name" : "5156 (interacts with) 8818", "name" : "5156 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 29966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29962", "source" : "4293", "target" : "1405", "shared_name" : "5156 (interacts with) 998", "name" : "5156 (interacts with) 998", "interaction" : "interacts with", "SUID" : 29962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29958", "source" : "4293", "target" : "4981", "shared_name" : "5156 (interacts with) 6774", "name" : "5156 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 29958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29954", "source" : "4293", "target" : "2509", "shared_name" : "5156 (interacts with) 7204", "name" : "5156 (interacts with) 7204", "interaction" : "interacts with", "SUID" : 29954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29950", "source" : "4293", "target" : "5973", "shared_name" : "5156 (interacts with) 5155", "name" : "5156 (interacts with) 5155", "interaction" : "interacts with", "SUID" : 29950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29946", "source" : "4293", "target" : "817", "shared_name" : "5156 (interacts with) 5728", "name" : "5156 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 29946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29942", "source" : "4293", "target" : "3465", "shared_name" : "5156 (interacts with) 5296", "name" : "5156 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 29942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29938", "source" : "4293", "target" : "2397", "shared_name" : "5156 (interacts with) 3425", "name" : "5156 (interacts with) 3425", "interaction" : "interacts with", "SUID" : 29938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29934", "source" : "4293", "target" : "5561", "shared_name" : "5156 (interacts with) 4247", "name" : "5156 (interacts with) 4247", "interaction" : "interacts with", "SUID" : 29934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29930", "source" : "4293", "target" : "1497", "shared_name" : "5156 (interacts with) 3912", "name" : "5156 (interacts with) 3912", "interaction" : "interacts with", "SUID" : 29930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29926", "source" : "4293", "target" : "2861", "shared_name" : "5156 (interacts with) 284217", "name" : "5156 (interacts with) 284217", "interaction" : "interacts with", "SUID" : 29926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29922", "source" : "4293", "target" : "4781", "shared_name" : "5156 (interacts with) 80781", "name" : "5156 (interacts with) 80781", "interaction" : "interacts with", "SUID" : 29922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29918", "source" : "4293", "target" : "1033", "shared_name" : "5156 (interacts with) 9215", "name" : "5156 (interacts with) 9215", "interaction" : "interacts with", "SUID" : 29918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29914", "source" : "4293", "target" : "5557", "shared_name" : "5156 (interacts with) 9254", "name" : "5156 (interacts with) 9254", "interaction" : "interacts with", "SUID" : 29914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29910", "source" : "4293", "target" : "3277", "shared_name" : "5156 (interacts with) 9423", "name" : "5156 (interacts with) 9423", "interaction" : "interacts with", "SUID" : 29910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29906", "source" : "4293", "target" : "2173", "shared_name" : "5156 (interacts with) 5159", "name" : "5156 (interacts with) 5159", "interaction" : "interacts with", "SUID" : 29906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29902", "source" : "4293", "target" : "3373", "shared_name" : "5156 (interacts with) 2530", "name" : "5156 (interacts with) 2530", "interaction" : "interacts with", "SUID" : 29902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29898", "source" : "4293", "target" : "5637", "shared_name" : "5156 (interacts with) 6609", "name" : "5156 (interacts with) 6609", "interaction" : "interacts with", "SUID" : 29898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29894", "source" : "4293", "target" : "3305", "shared_name" : "5156 (interacts with) 7040", "name" : "5156 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 29894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "29890", "source" : "4293", "target" : "5305", "shared_name" : "5156 (interacts with) 6901", "name" : "5156 (interacts with) 6901", "interaction" : "interacts with", "SUID" : 29890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30026", "source" : "4289", "target" : "1933", "shared_name" : "90678 (interacts with) 7335", "name" : "90678 (interacts with) 7335", "interaction" : "interacts with", "SUID" : 30026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30022", "source" : "4289", "target" : "3729", "shared_name" : "90678 (interacts with) 7319", "name" : "90678 (interacts with) 7319", "interaction" : "interacts with", "SUID" : 30022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30018", "source" : "4289", "target" : "961", "shared_name" : "90678 (interacts with) 7318", "name" : "90678 (interacts with) 7318", "interaction" : "interacts with", "SUID" : 30018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30102", "source" : "4285", "target" : "1793", "shared_name" : "8450 (interacts with) 7515", "name" : "8450 (interacts with) 7515", "interaction" : "interacts with", "SUID" : 30102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30098", "source" : "4285", "target" : "2077", "shared_name" : "8450 (interacts with) 7528", "name" : "8450 (interacts with) 7528", "interaction" : "interacts with", "SUID" : 30098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30094", "source" : "4285", "target" : "481", "shared_name" : "8450 (interacts with) 7507", "name" : "8450 (interacts with) 7507", "interaction" : "interacts with", "SUID" : 30094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30090", "source" : "4285", "target" : "5849", "shared_name" : "8450 (interacts with) 6613", "name" : "8450 (interacts with) 6613", "interaction" : "interacts with", "SUID" : 30090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30086", "source" : "4285", "target" : "4413", "shared_name" : "8450 (interacts with) 6612", "name" : "8450 (interacts with) 6612", "interaction" : "interacts with", "SUID" : 30086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30082", "source" : "4285", "target" : "5197", "shared_name" : "8450 (interacts with) 7156", "name" : "8450 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 30082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30078", "source" : "4285", "target" : "877", "shared_name" : "8450 (interacts with) 7341", "name" : "8450 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 30078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30074", "source" : "4285", "target" : "2649", "shared_name" : "8450 (interacts with) 5430", "name" : "8450 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 30074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30070", "source" : "4285", "target" : "5861", "shared_name" : "8450 (interacts with) 5435", "name" : "8450 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 30070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30066", "source" : "4285", "target" : "2529", "shared_name" : "8450 (interacts with) 5424", "name" : "8450 (interacts with) 5424", "interaction" : "interacts with", "SUID" : 30066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30062", "source" : "4285", "target" : "1729", "shared_name" : "8450 (interacts with) 5111", "name" : "8450 (interacts with) 5111", "interaction" : "interacts with", "SUID" : 30062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30058", "source" : "4285", "target" : "3049", "shared_name" : "8450 (interacts with) 142", "name" : "8450 (interacts with) 142", "interaction" : "interacts with", "SUID" : 30058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30054", "source" : "4285", "target" : "3933", "shared_name" : "8450 (interacts with) 10524", "name" : "8450 (interacts with) 10524", "interaction" : "interacts with", "SUID" : 30054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30050", "source" : "4285", "target" : "1937", "shared_name" : "8450 (interacts with) 2965", "name" : "8450 (interacts with) 2965", "interaction" : "interacts with", "SUID" : 30050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30046", "source" : "4285", "target" : "3517", "shared_name" : "8450 (interacts with) 2033", "name" : "8450 (interacts with) 2033", "interaction" : "interacts with", "SUID" : 30046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30042", "source" : "4285", "target" : "5041", "shared_name" : "8450 (interacts with) 2067", "name" : "8450 (interacts with) 2067", "interaction" : "interacts with", "SUID" : 30042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30038", "source" : "4285", "target" : "2709", "shared_name" : "8450 (interacts with) 2072", "name" : "8450 (interacts with) 2072", "interaction" : "interacts with", "SUID" : 30038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30034", "source" : "4285", "target" : "2037", "shared_name" : "8450 (interacts with) 80067", "name" : "8450 (interacts with) 80067", "interaction" : "interacts with", "SUID" : 30034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30030", "source" : "4285", "target" : "2261", "shared_name" : "8450 (interacts with) 1161", "name" : "8450 (interacts with) 1161", "interaction" : "interacts with", "SUID" : 30030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30126", "source" : "4281", "target" : "3889", "shared_name" : "3077 (interacts with) 1605", "name" : "3077 (interacts with) 1605", "interaction" : "interacts with", "SUID" : 30126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30122", "source" : "4281", "target" : "2933", "shared_name" : "3077 (interacts with) 10585", "name" : "3077 (interacts with) 10585", "interaction" : "interacts with", "SUID" : 30122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30118", "source" : "4281", "target" : "3909", "shared_name" : "3077 (interacts with) 10908", "name" : "3077 (interacts with) 10908", "interaction" : "interacts with", "SUID" : 30118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30114", "source" : "4281", "target" : "2761", "shared_name" : "3077 (interacts with) 57556", "name" : "3077 (interacts with) 57556", "interaction" : "interacts with", "SUID" : 30114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30110", "source" : "4281", "target" : "2525", "shared_name" : "3077 (interacts with) 9451", "name" : "3077 (interacts with) 9451", "interaction" : "interacts with", "SUID" : 30110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30106", "source" : "4281", "target" : "3349", "shared_name" : "3077 (interacts with) 8878", "name" : "3077 (interacts with) 8878", "interaction" : "interacts with", "SUID" : 30106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30134", "source" : "4277", "target" : "3117", "shared_name" : "23729 (interacts with) 84668", "name" : "23729 (interacts with) 84668", "interaction" : "interacts with", "SUID" : 30134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30130", "source" : "4277", "target" : "565", "shared_name" : "23729 (interacts with) 4772", "name" : "23729 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 30130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30182", "source" : "4273", "target" : "461", "shared_name" : "4548 (interacts with) 5198", "name" : "4548 (interacts with) 5198", "interaction" : "interacts with", "SUID" : 30182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30178", "source" : "4273", "target" : "5109", "shared_name" : "4548 (interacts with) 790", "name" : "4548 (interacts with) 790", "interaction" : "interacts with", "SUID" : 30178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30174", "source" : "4273", "target" : "1605", "shared_name" : "4548 (interacts with) 6648", "name" : "4548 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 30174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30170", "source" : "4273", "target" : "5993", "shared_name" : "4548 (interacts with) 6611", "name" : "4548 (interacts with) 6611", "interaction" : "interacts with", "SUID" : 30170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30166", "source" : "4273", "target" : "1577", "shared_name" : "4548 (interacts with) 51091", "name" : "4548 (interacts with) 51091", "interaction" : "interacts with", "SUID" : 30166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30162", "source" : "4273", "target" : "1013", "shared_name" : "4548 (interacts with) 6898", "name" : "4548 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 30162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30158", "source" : "4273", "target" : "693", "shared_name" : "4548 (interacts with) 7296", "name" : "4548 (interacts with) 7296", "interaction" : "interacts with", "SUID" : 30158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30154", "source" : "4273", "target" : "4869", "shared_name" : "4548 (interacts with) 92935", "name" : "4548 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 30154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30150", "source" : "4273", "target" : "653", "shared_name" : "4548 (interacts with) 6948", "name" : "4548 (interacts with) 6948", "interaction" : "interacts with", "SUID" : 30150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30146", "source" : "4273", "target" : "5825", "shared_name" : "4548 (interacts with) 4594", "name" : "4548 (interacts with) 4594", "interaction" : "interacts with", "SUID" : 30146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30142", "source" : "4273", "target" : "2049", "shared_name" : "4548 (interacts with) 4552", "name" : "4548 (interacts with) 4552", "interaction" : "interacts with", "SUID" : 30142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30138", "source" : "4273", "target" : "1089", "shared_name" : "4548 (interacts with) 5917", "name" : "4548 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 30138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30210", "source" : "4269", "target" : "6029", "shared_name" : "3832 (interacts with) 54892", "name" : "3832 (interacts with) 54892", "interaction" : "interacts with", "SUID" : 30210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30206", "source" : "4269", "target" : "1177", "shared_name" : "3832 (interacts with) 9928", "name" : "3832 (interacts with) 9928", "interaction" : "interacts with", "SUID" : 30206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30202", "source" : "4269", "target" : "2549", "shared_name" : "3832 (interacts with) 9319", "name" : "3832 (interacts with) 9319", "interaction" : "interacts with", "SUID" : 30202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30198", "source" : "4269", "target" : "4837", "shared_name" : "3832 (interacts with) 8891", "name" : "3832 (interacts with) 8891", "interaction" : "interacts with", "SUID" : 30198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30194", "source" : "4269", "target" : "5749", "shared_name" : "3832 (interacts with) 10959", "name" : "3832 (interacts with) 10959", "interaction" : "interacts with", "SUID" : 30194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30190", "source" : "4269", "target" : "6045", "shared_name" : "3832 (interacts with) 701", "name" : "3832 (interacts with) 701", "interaction" : "interacts with", "SUID" : 30190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30186", "source" : "4269", "target" : "545", "shared_name" : "3832 (interacts with) 51014", "name" : "3832 (interacts with) 51014", "interaction" : "interacts with", "SUID" : 30186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30322", "source" : "4265", "target" : "1869", "shared_name" : "4541 (interacts with) 4729", "name" : "4541 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 30322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30318", "source" : "4265", "target" : "2797", "shared_name" : "4541 (interacts with) 4728", "name" : "4541 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 30318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30314", "source" : "4265", "target" : "1573", "shared_name" : "4541 (interacts with) 4723", "name" : "4541 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 30314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30310", "source" : "4265", "target" : "2285", "shared_name" : "4541 (interacts with) 51300", "name" : "4541 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 30310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30306", "source" : "4265", "target" : "1337", "shared_name" : "4541 (interacts with) 55863", "name" : "4541 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 30306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30302", "source" : "4265", "target" : "2753", "shared_name" : "4541 (interacts with) 4720", "name" : "4541 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 30302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30298", "source" : "4265", "target" : "4945", "shared_name" : "4541 (interacts with) 4722", "name" : "4541 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 30298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30294", "source" : "4265", "target" : "4017", "shared_name" : "4541 (interacts with) 4719", "name" : "4541 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 30294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30290", "source" : "4265", "target" : "5833", "shared_name" : "4541 (interacts with) 4726", "name" : "4541 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 30290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30286", "source" : "4265", "target" : "4069", "shared_name" : "4541 (interacts with) 374291", "name" : "4541 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 30286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30282", "source" : "4265", "target" : "5821", "shared_name" : "4541 (interacts with) 4724", "name" : "4541 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 30282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30278", "source" : "4265", "target" : "5853", "shared_name" : "4541 (interacts with) 4709", "name" : "4541 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 30278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30274", "source" : "4265", "target" : "2689", "shared_name" : "4541 (interacts with) 4715", "name" : "4541 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 30274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30270", "source" : "4265", "target" : "5845", "shared_name" : "4541 (interacts with) 4714", "name" : "4541 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 30270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30266", "source" : "4265", "target" : "793", "shared_name" : "4541 (interacts with) 137682", "name" : "4541 (interacts with) 137682", "interaction" : "interacts with", "SUID" : 30266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30262", "source" : "4265", "target" : "5505", "shared_name" : "4541 (interacts with) 29078", "name" : "4541 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 30262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30258", "source" : "4265", "target" : "2009", "shared_name" : "4541 (interacts with) 79133", "name" : "4541 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 30258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30254", "source" : "4265", "target" : "3617", "shared_name" : "4541 (interacts with) 4704", "name" : "4541 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 30254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30250", "source" : "4265", "target" : "2801", "shared_name" : "4541 (interacts with) 4700", "name" : "4541 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 30250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30246", "source" : "4265", "target" : "1661", "shared_name" : "4541 (interacts with) 91942", "name" : "4541 (interacts with) 91942", "interaction" : "interacts with", "SUID" : 30246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30242", "source" : "4265", "target" : "3761", "shared_name" : "4541 (interacts with) 25915", "name" : "4541 (interacts with) 25915", "interaction" : "interacts with", "SUID" : 30242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30238", "source" : "4265", "target" : "2109", "shared_name" : "4541 (interacts with) 51103", "name" : "4541 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 30238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30234", "source" : "4265", "target" : "5553", "shared_name" : "4541 (interacts with) 55967", "name" : "4541 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 30234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30230", "source" : "4265", "target" : "2757", "shared_name" : "4541 (interacts with) 51079", "name" : "4541 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 30230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30226", "source" : "4265", "target" : "4061", "shared_name" : "4541 (interacts with) 4705", "name" : "4541 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 30226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30222", "source" : "4265", "target" : "2825", "shared_name" : "4541 (interacts with) 126328", "name" : "4541 (interacts with) 126328", "interaction" : "interacts with", "SUID" : 30222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30218", "source" : "4265", "target" : "5857", "shared_name" : "4541 (interacts with) 4694", "name" : "4541 (interacts with) 4694", "interaction" : "interacts with", "SUID" : 30218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30214", "source" : "4265", "target" : "2741", "shared_name" : "4541 (interacts with) 4695", "name" : "4541 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 30214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30730", "source" : "4261", "target" : "1865", "shared_name" : "124454 (interacts with) 498", "name" : "124454 (interacts with) 498", "interaction" : "interacts with", "SUID" : 30730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30726", "source" : "4261", "target" : "1085", "shared_name" : "124454 (interacts with) 9377", "name" : "124454 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 30726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30722", "source" : "4261", "target" : "4945", "shared_name" : "124454 (interacts with) 4722", "name" : "124454 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 30722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30718", "source" : "4261", "target" : "5605", "shared_name" : "124454 (interacts with) 51601", "name" : "124454 (interacts with) 51601", "interaction" : "interacts with", "SUID" : 30718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30714", "source" : "4261", "target" : "293", "shared_name" : "124454 (interacts with) 54802", "name" : "124454 (interacts with) 54802", "interaction" : "interacts with", "SUID" : 30714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30710", "source" : "4261", "target" : "1369", "shared_name" : "124454 (interacts with) 27247", "name" : "124454 (interacts with) 27247", "interaction" : "interacts with", "SUID" : 30710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30706", "source" : "4261", "target" : "4925", "shared_name" : "124454 (interacts with) 246243", "name" : "124454 (interacts with) 246243", "interaction" : "interacts with", "SUID" : 30706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30702", "source" : "4261", "target" : "5985", "shared_name" : "124454 (interacts with) 27235", "name" : "124454 (interacts with) 27235", "interaction" : "interacts with", "SUID" : 30702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30698", "source" : "4261", "target" : "6181", "shared_name" : "124454 (interacts with) 84987", "name" : "124454 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 30698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30694", "source" : "4261", "target" : "793", "shared_name" : "124454 (interacts with) 137682", "name" : "124454 (interacts with) 137682", "interaction" : "interacts with", "SUID" : 30694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30690", "source" : "4261", "target" : "1573", "shared_name" : "124454 (interacts with) 4723", "name" : "124454 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 30690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30686", "source" : "4261", "target" : "1053", "shared_name" : "124454 (interacts with) 81689", "name" : "124454 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 30686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30682", "source" : "4261", "target" : "4501", "shared_name" : "124454 (interacts with) 25821", "name" : "124454 (interacts with) 25821", "interaction" : "interacts with", "SUID" : 30682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30678", "source" : "4261", "target" : "889", "shared_name" : "124454 (interacts with) 80224", "name" : "124454 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 30678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30674", "source" : "4261", "target" : "5689", "shared_name" : "124454 (interacts with) 27089", "name" : "124454 (interacts with) 27089", "interaction" : "interacts with", "SUID" : 30674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30670", "source" : "4261", "target" : "3881", "shared_name" : "124454 (interacts with) 1654", "name" : "124454 (interacts with) 1654", "interaction" : "interacts with", "SUID" : 30670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30666", "source" : "4261", "target" : "3617", "shared_name" : "124454 (interacts with) 4704", "name" : "124454 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 30666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30662", "source" : "4261", "target" : "3545", "shared_name" : "124454 (interacts with) 708", "name" : "124454 (interacts with) 708", "interaction" : "interacts with", "SUID" : 30662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30658", "source" : "4261", "target" : "2189", "shared_name" : "124454 (interacts with) 84705", "name" : "124454 (interacts with) 84705", "interaction" : "interacts with", "SUID" : 30658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30654", "source" : "4261", "target" : "2477", "shared_name" : "124454 (interacts with) 57107", "name" : "124454 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 30654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30650", "source" : "4261", "target" : "1105", "shared_name" : "124454 (interacts with) 493753", "name" : "124454 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 30650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30646", "source" : "4261", "target" : "6125", "shared_name" : "124454 (interacts with) 22907", "name" : "124454 (interacts with) 22907", "interaction" : "interacts with", "SUID" : 30646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30642", "source" : "4261", "target" : "3065", "shared_name" : "124454 (interacts with) 25828", "name" : "124454 (interacts with) 25828", "interaction" : "interacts with", "SUID" : 30642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30638", "source" : "4261", "target" : "1929", "shared_name" : "124454 (interacts with) 51218", "name" : "124454 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 30638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30634", "source" : "4261", "target" : "3761", "shared_name" : "124454 (interacts with) 25915", "name" : "124454 (interacts with) 25915", "interaction" : "interacts with", "SUID" : 30634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30630", "source" : "4261", "target" : "2689", "shared_name" : "124454 (interacts with) 4715", "name" : "124454 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 30630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30626", "source" : "4261", "target" : "4593", "shared_name" : "124454 (interacts with) 2058", "name" : "124454 (interacts with) 2058", "interaction" : "interacts with", "SUID" : 30626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30622", "source" : "4261", "target" : "2741", "shared_name" : "124454 (interacts with) 4695", "name" : "124454 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 30622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30618", "source" : "4261", "target" : "2609", "shared_name" : "124454 (interacts with) 29960", "name" : "124454 (interacts with) 29960", "interaction" : "interacts with", "SUID" : 30618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30614", "source" : "4261", "target" : "5853", "shared_name" : "124454 (interacts with) 4709", "name" : "124454 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 30614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30610", "source" : "4261", "target" : "5845", "shared_name" : "124454 (interacts with) 4714", "name" : "124454 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 30610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30606", "source" : "4261", "target" : "4409", "shared_name" : "124454 (interacts with) 6341", "name" : "124454 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 30606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30602", "source" : "4261", "target" : "5505", "shared_name" : "124454 (interacts with) 29078", "name" : "124454 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 30602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30598", "source" : "4261", "target" : "2801", "shared_name" : "124454 (interacts with) 4700", "name" : "124454 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 30598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30594", "source" : "4261", "target" : "2285", "shared_name" : "124454 (interacts with) 51300", "name" : "124454 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 30594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30590", "source" : "4261", "target" : "3641", "shared_name" : "124454 (interacts with) 4141", "name" : "124454 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 30590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30586", "source" : "4261", "target" : "1577", "shared_name" : "124454 (interacts with) 51091", "name" : "124454 (interacts with) 51091", "interaction" : "interacts with", "SUID" : 30586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30582", "source" : "4261", "target" : "2337", "shared_name" : "124454 (interacts with) 28976", "name" : "124454 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 30582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30578", "source" : "4261", "target" : "4017", "shared_name" : "124454 (interacts with) 4719", "name" : "124454 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 30578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30574", "source" : "4261", "target" : "4061", "shared_name" : "124454 (interacts with) 4705", "name" : "124454 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 30574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30570", "source" : "4261", "target" : "4229", "shared_name" : "124454 (interacts with) 3035", "name" : "124454 (interacts with) 3035", "interaction" : "interacts with", "SUID" : 30570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30566", "source" : "4261", "target" : "4597", "shared_name" : "124454 (interacts with) 3376", "name" : "124454 (interacts with) 3376", "interaction" : "interacts with", "SUID" : 30566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30562", "source" : "4261", "target" : "3649", "shared_name" : "124454 (interacts with) 51520", "name" : "124454 (interacts with) 51520", "interaction" : "interacts with", "SUID" : 30562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30558", "source" : "4261", "target" : "4085", "shared_name" : "124454 (interacts with) 55699", "name" : "124454 (interacts with) 55699", "interaction" : "interacts with", "SUID" : 30558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30554", "source" : "4261", "target" : "4349", "shared_name" : "124454 (interacts with) 5859", "name" : "124454 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 30554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30550", "source" : "4261", "target" : "5169", "shared_name" : "124454 (interacts with) 1355", "name" : "124454 (interacts with) 1355", "interaction" : "interacts with", "SUID" : 30550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30546", "source" : "4261", "target" : "2825", "shared_name" : "124454 (interacts with) 126328", "name" : "124454 (interacts with) 126328", "interaction" : "interacts with", "SUID" : 30546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30542", "source" : "4261", "target" : "4069", "shared_name" : "124454 (interacts with) 374291", "name" : "124454 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 30542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30538", "source" : "4261", "target" : "3169", "shared_name" : "124454 (interacts with) 1615", "name" : "124454 (interacts with) 1615", "interaction" : "interacts with", "SUID" : 30538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30534", "source" : "4261", "target" : "457", "shared_name" : "124454 (interacts with) 16", "name" : "124454 (interacts with) 16", "interaction" : "interacts with", "SUID" : 30534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30530", "source" : "4261", "target" : "4241", "shared_name" : "124454 (interacts with) 1356", "name" : "124454 (interacts with) 1356", "interaction" : "interacts with", "SUID" : 30530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30526", "source" : "4261", "target" : "229", "shared_name" : "124454 (interacts with) 1371", "name" : "124454 (interacts with) 1371", "interaction" : "interacts with", "SUID" : 30526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30522", "source" : "4261", "target" : "5393", "shared_name" : "124454 (interacts with) 2395", "name" : "124454 (interacts with) 2395", "interaction" : "interacts with", "SUID" : 30522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30518", "source" : "4261", "target" : "6089", "shared_name" : "124454 (interacts with) 3145", "name" : "124454 (interacts with) 3145", "interaction" : "interacts with", "SUID" : 30518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30514", "source" : "4261", "target" : "1089", "shared_name" : "124454 (interacts with) 5917", "name" : "124454 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 30514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30510", "source" : "4261", "target" : "4693", "shared_name" : "124454 (interacts with) 6301", "name" : "124454 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 30510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30506", "source" : "4261", "target" : "1581", "shared_name" : "124454 (interacts with) 7407", "name" : "124454 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 30506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30502", "source" : "4261", "target" : "6157", "shared_name" : "124454 (interacts with) 3735", "name" : "124454 (interacts with) 3735", "interaction" : "interacts with", "SUID" : 30502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30498", "source" : "4261", "target" : "2345", "shared_name" : "124454 (interacts with) 200205", "name" : "124454 (interacts with) 200205", "interaction" : "interacts with", "SUID" : 30498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30494", "source" : "4261", "target" : "1921", "shared_name" : "124454 (interacts with) 1352", "name" : "124454 (interacts with) 1352", "interaction" : "interacts with", "SUID" : 30494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30490", "source" : "4261", "target" : "1561", "shared_name" : "124454 (interacts with) 51117", "name" : "124454 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 30490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30486", "source" : "4261", "target" : "5685", "shared_name" : "124454 (interacts with) 1340", "name" : "124454 (interacts with) 1340", "interaction" : "interacts with", "SUID" : 30486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30482", "source" : "4261", "target" : "2753", "shared_name" : "124454 (interacts with) 4720", "name" : "124454 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 30482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30478", "source" : "4261", "target" : "2797", "shared_name" : "124454 (interacts with) 4728", "name" : "124454 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 30478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30474", "source" : "4261", "target" : "1869", "shared_name" : "124454 (interacts with) 4729", "name" : "124454 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 30474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30470", "source" : "4261", "target" : "3705", "shared_name" : "124454 (interacts with) 87178", "name" : "124454 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 30470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30466", "source" : "4261", "target" : "501", "shared_name" : "124454 (interacts with) 65993", "name" : "124454 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 30466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30462", "source" : "4261", "target" : "2009", "shared_name" : "124454 (interacts with) 79133", "name" : "124454 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 30462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30458", "source" : "4261", "target" : "4417", "shared_name" : "124454 (interacts with) 1656", "name" : "124454 (interacts with) 1656", "interaction" : "interacts with", "SUID" : 30458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30454", "source" : "4261", "target" : "3973", "shared_name" : "124454 (interacts with) 55572", "name" : "124454 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 30454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30450", "source" : "4261", "target" : "2109", "shared_name" : "124454 (interacts with) 51103", "name" : "124454 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 30450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30446", "source" : "4261", "target" : "4757", "shared_name" : "124454 (interacts with) 9997", "name" : "124454 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 30446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30442", "source" : "4261", "target" : "4141", "shared_name" : "124454 (interacts with) 617", "name" : "124454 (interacts with) 617", "interaction" : "interacts with", "SUID" : 30442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30438", "source" : "4261", "target" : "2105", "shared_name" : "124454 (interacts with) 56945", "name" : "124454 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 30438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30434", "source" : "4261", "target" : "4101", "shared_name" : "124454 (interacts with) 65260", "name" : "124454 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 30434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30430", "source" : "4261", "target" : "713", "shared_name" : "124454 (interacts with) 7019", "name" : "124454 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 30430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30426", "source" : "4261", "target" : "6073", "shared_name" : "124454 (interacts with) 92170", "name" : "124454 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 30426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30422", "source" : "4261", "target" : "5737", "shared_name" : "124454 (interacts with) 84340", "name" : "124454 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 30422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30418", "source" : "4261", "target" : "477", "shared_name" : "124454 (interacts with) 51021", "name" : "124454 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 30418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30414", "source" : "4261", "target" : "4897", "shared_name" : "124454 (interacts with) 55149", "name" : "124454 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 30414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30410", "source" : "4261", "target" : "521", "shared_name" : "124454 (interacts with) 85476", "name" : "124454 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 30410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30406", "source" : "4261", "target" : "6049", "shared_name" : "124454 (interacts with) 25973", "name" : "124454 (interacts with) 25973", "interaction" : "interacts with", "SUID" : 30406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30402", "source" : "4261", "target" : "2021", "shared_name" : "124454 (interacts with) 5428", "name" : "124454 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 30402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30398", "source" : "4261", "target" : "4869", "shared_name" : "124454 (interacts with) 92935", "name" : "124454 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 30398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30394", "source" : "4261", "target" : "1129", "shared_name" : "124454 (interacts with) 57505", "name" : "124454 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 30394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30390", "source" : "4261", "target" : "3633", "shared_name" : "124454 (interacts with) 51067", "name" : "124454 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 30390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30386", "source" : "4261", "target" : "1197", "shared_name" : "124454 (interacts with) 79587", "name" : "124454 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 30386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30382", "source" : "4261", "target" : "5085", "shared_name" : "124454 (interacts with) 56652", "name" : "124454 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 30382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30378", "source" : "4261", "target" : "6001", "shared_name" : "124454 (interacts with) 55157", "name" : "124454 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 30378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30374", "source" : "4261", "target" : "4621", "shared_name" : "124454 (interacts with) 57038", "name" : "124454 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 30374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30370", "source" : "4261", "target" : "5189", "shared_name" : "124454 (interacts with) 57176", "name" : "124454 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 30370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30366", "source" : "4261", "target" : "721", "shared_name" : "124454 (interacts with) 79731", "name" : "124454 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 30366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30362", "source" : "4261", "target" : "1013", "shared_name" : "124454 (interacts with) 6898", "name" : "124454 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 30362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30358", "source" : "4261", "target" : "4185", "shared_name" : "124454 (interacts with) 29968", "name" : "124454 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 30358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30354", "source" : "4261", "target" : "461", "shared_name" : "124454 (interacts with) 5198", "name" : "124454 (interacts with) 5198", "interaction" : "interacts with", "SUID" : 30354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30350", "source" : "4261", "target" : "4189", "shared_name" : "124454 (interacts with) 2744", "name" : "124454 (interacts with) 2744", "interaction" : "interacts with", "SUID" : 30350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30346", "source" : "4261", "target" : "741", "shared_name" : "124454 (interacts with) 4830", "name" : "124454 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 30346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30342", "source" : "4261", "target" : "2721", "shared_name" : "124454 (interacts with) 79751", "name" : "124454 (interacts with) 79751", "interaction" : "interacts with", "SUID" : 30342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30338", "source" : "4261", "target" : "1885", "shared_name" : "124454 (interacts with) 8604", "name" : "124454 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 30338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30334", "source" : "4261", "target" : "4253", "shared_name" : "124454 (interacts with) 84706", "name" : "124454 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 30334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30330", "source" : "4261", "target" : "2421", "shared_name" : "124454 (interacts with) 2673", "name" : "124454 (interacts with) 2673", "interaction" : "interacts with", "SUID" : 30330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30326", "source" : "4261", "target" : "2205", "shared_name" : "124454 (interacts with) 2571", "name" : "124454 (interacts with) 2571", "interaction" : "interacts with", "SUID" : 30326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30762", "source" : "4257", "target" : "5785", "shared_name" : "8573 (interacts with) 6857", "name" : "8573 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 30762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30758", "source" : "4257", "target" : "3777", "shared_name" : "8573 (interacts with) 6571", "name" : "8573 (interacts with) 6571", "interaction" : "interacts with", "SUID" : 30758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30754", "source" : "4257", "target" : "5929", "shared_name" : "8573 (interacts with) 6616", "name" : "8573 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 30754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30750", "source" : "4257", "target" : "609", "shared_name" : "8573 (interacts with) 6812", "name" : "8573 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 30750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30746", "source" : "4257", "target" : "4509", "shared_name" : "8573 (interacts with) 2902", "name" : "8573 (interacts with) 2902", "interaction" : "interacts with", "SUID" : 30746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30742", "source" : "4257", "target" : "2329", "shared_name" : "8573 (interacts with) 2904", "name" : "8573 (interacts with) 2904", "interaction" : "interacts with", "SUID" : 30742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30738", "source" : "4257", "target" : "4893", "shared_name" : "8573 (interacts with) 10815", "name" : "8573 (interacts with) 10815", "interaction" : "interacts with", "SUID" : 30738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30734", "source" : "4257", "target" : "3385", "shared_name" : "8573 (interacts with) 10716", "name" : "8573 (interacts with) 10716", "interaction" : "interacts with", "SUID" : 30734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30850", "source" : "4253", "target" : "2881", "shared_name" : "84706 (interacts with) 5160", "name" : "84706 (interacts with) 5160", "interaction" : "interacts with", "SUID" : 30850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30846", "source" : "4253", "target" : "3445", "shared_name" : "84706 (interacts with) 5091", "name" : "84706 (interacts with) 5091", "interaction" : "interacts with", "SUID" : 30846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30842", "source" : "4253", "target" : "3325", "shared_name" : "84706 (interacts with) 9517", "name" : "84706 (interacts with) 9517", "interaction" : "interacts with", "SUID" : 30842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30838", "source" : "4253", "target" : "3237", "shared_name" : "84706 (interacts with) 95", "name" : "84706 (interacts with) 95", "interaction" : "interacts with", "SUID" : 30838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30834", "source" : "4253", "target" : "1485", "shared_name" : "84706 (interacts with) 8050", "name" : "84706 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 30834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30830", "source" : "4253", "target" : "977", "shared_name" : "84706 (interacts with) 79944", "name" : "84706 (interacts with) 79944", "interaction" : "interacts with", "SUID" : 30830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30826", "source" : "4253", "target" : "1133", "shared_name" : "84706 (interacts with) 3418", "name" : "84706 (interacts with) 3418", "interaction" : "interacts with", "SUID" : 30826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30822", "source" : "4253", "target" : "2721", "shared_name" : "84706 (interacts with) 79751", "name" : "84706 (interacts with) 79751", "interaction" : "interacts with", "SUID" : 30822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30818", "source" : "4253", "target" : "1385", "shared_name" : "84706 (interacts with) 6520", "name" : "84706 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 30818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30814", "source" : "4253", "target" : "6009", "shared_name" : "84706 (interacts with) 64849", "name" : "84706 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 30814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30810", "source" : "4253", "target" : "4185", "shared_name" : "84706 (interacts with) 29968", "name" : "84706 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 30810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30806", "source" : "4253", "target" : "1885", "shared_name" : "84706 (interacts with) 8604", "name" : "84706 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 30806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30802", "source" : "4253", "target" : "2321", "shared_name" : "84706 (interacts with) 6509", "name" : "84706 (interacts with) 6509", "interaction" : "interacts with", "SUID" : 30802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30798", "source" : "4253", "target" : "3077", "shared_name" : "84706 (interacts with) 6506", "name" : "84706 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 30798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30794", "source" : "4253", "target" : "2089", "shared_name" : "84706 (interacts with) 3939", "name" : "84706 (interacts with) 3939", "interaction" : "interacts with", "SUID" : 30794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30790", "source" : "4253", "target" : "625", "shared_name" : "84706 (interacts with) 8942", "name" : "84706 (interacts with) 8942", "interaction" : "interacts with", "SUID" : 30790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30786", "source" : "4253", "target" : "5017", "shared_name" : "84706 (interacts with) 3417", "name" : "84706 (interacts with) 3417", "interaction" : "interacts with", "SUID" : 30786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30782", "source" : "4253", "target" : "1657", "shared_name" : "84706 (interacts with) 3251", "name" : "84706 (interacts with) 3251", "interaction" : "interacts with", "SUID" : 30782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30778", "source" : "4253", "target" : "1849", "shared_name" : "84706 (interacts with) 26275", "name" : "84706 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 30778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30774", "source" : "4253", "target" : "1017", "shared_name" : "84706 (interacts with) 11212", "name" : "84706 (interacts with) 11212", "interaction" : "interacts with", "SUID" : 30774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30770", "source" : "4253", "target" : "5529", "shared_name" : "84706 (interacts with) 2875", "name" : "84706 (interacts with) 2875", "interaction" : "interacts with", "SUID" : 30770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30766", "source" : "4253", "target" : "801", "shared_name" : "84706 (interacts with) 1376", "name" : "84706 (interacts with) 1376", "interaction" : "interacts with", "SUID" : 30766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30946", "source" : "4249", "target" : "481", "shared_name" : "4331 (interacts with) 7507", "name" : "4331 (interacts with) 7507", "interaction" : "interacts with", "SUID" : 30946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30942", "source" : "4249", "target" : "4285", "shared_name" : "4331 (interacts with) 8450", "name" : "4331 (interacts with) 8450", "interaction" : "interacts with", "SUID" : 30942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30938", "source" : "4249", "target" : "2921", "shared_name" : "4331 (interacts with) 5981", "name" : "4331 (interacts with) 5981", "interaction" : "interacts with", "SUID" : 30938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30934", "source" : "4249", "target" : "749", "shared_name" : "4331 (interacts with) 6873", "name" : "4331 (interacts with) 6873", "interaction" : "interacts with", "SUID" : 30934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30930", "source" : "4249", "target" : "4493", "shared_name" : "4331 (interacts with) 5727", "name" : "4331 (interacts with) 5727", "interaction" : "interacts with", "SUID" : 30930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30926", "source" : "4249", "target" : "257", "shared_name" : "4331 (interacts with) 6469", "name" : "4331 (interacts with) 6469", "interaction" : "interacts with", "SUID" : 30926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30922", "source" : "4249", "target" : "1793", "shared_name" : "4331 (interacts with) 7515", "name" : "4331 (interacts with) 7515", "interaction" : "interacts with", "SUID" : 30922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30918", "source" : "4249", "target" : "1817", "shared_name" : "4331 (interacts with) 7343", "name" : "4331 (interacts with) 7343", "interaction" : "interacts with", "SUID" : 30918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30914", "source" : "4249", "target" : "2305", "shared_name" : "4331 (interacts with) 6908", "name" : "4331 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 30914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30910", "source" : "4249", "target" : "5197", "shared_name" : "4331 (interacts with) 7156", "name" : "4331 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 30910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30906", "source" : "4249", "target" : "4425", "shared_name" : "4331 (interacts with) 6884", "name" : "4331 (interacts with) 6884", "interaction" : "interacts with", "SUID" : 30906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30902", "source" : "4249", "target" : "3953", "shared_name" : "4331 (interacts with) 8731", "name" : "4331 (interacts with) 8731", "interaction" : "interacts with", "SUID" : 30902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30898", "source" : "4249", "target" : "5729", "shared_name" : "4331 (interacts with) 861", "name" : "4331 (interacts with) 861", "interaction" : "interacts with", "SUID" : 30898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30894", "source" : "4249", "target" : "2649", "shared_name" : "4331 (interacts with) 5430", "name" : "4331 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 30894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30890", "source" : "4249", "target" : "5861", "shared_name" : "4331 (interacts with) 5435", "name" : "4331 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 30890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30886", "source" : "4249", "target" : "1857", "shared_name" : "4331 (interacts with) 9533", "name" : "4331 (interacts with) 9533", "interaction" : "interacts with", "SUID" : 30886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30882", "source" : "4249", "target" : "5621", "shared_name" : "4331 (interacts with) 25885", "name" : "4331 (interacts with) 25885", "interaction" : "interacts with", "SUID" : 30882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30878", "source" : "4249", "target" : "2529", "shared_name" : "4331 (interacts with) 5424", "name" : "4331 (interacts with) 5424", "interaction" : "interacts with", "SUID" : 30878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30874", "source" : "4249", "target" : "1729", "shared_name" : "4331 (interacts with) 5111", "name" : "4331 (interacts with) 5111", "interaction" : "interacts with", "SUID" : 30874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30870", "source" : "4249", "target" : "3049", "shared_name" : "4331 (interacts with) 142", "name" : "4331 (interacts with) 142", "interaction" : "interacts with", "SUID" : 30870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30866", "source" : "4249", "target" : "3021", "shared_name" : "4331 (interacts with) 84823", "name" : "4331 (interacts with) 84823", "interaction" : "interacts with", "SUID" : 30866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30862", "source" : "4249", "target" : "1937", "shared_name" : "4331 (interacts with) 2965", "name" : "4331 (interacts with) 2965", "interaction" : "interacts with", "SUID" : 30862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30858", "source" : "4249", "target" : "4177", "shared_name" : "4331 (interacts with) 2068", "name" : "4331 (interacts with) 2068", "interaction" : "interacts with", "SUID" : 30858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30854", "source" : "4249", "target" : "4037", "shared_name" : "4331 (interacts with) 2073", "name" : "4331 (interacts with) 2073", "interaction" : "interacts with", "SUID" : 30854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30958", "source" : "4245", "target" : "5713", "shared_name" : "91147 (interacts with) 7531", "name" : "91147 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 30958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30954", "source" : "4245", "target" : "4021", "shared_name" : "91147 (interacts with) 203068", "name" : "91147 (interacts with) 203068", "interaction" : "interacts with", "SUID" : 30954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30950", "source" : "4245", "target" : "5969", "shared_name" : "91147 (interacts with) 10382", "name" : "91147 (interacts with) 10382", "interaction" : "interacts with", "SUID" : 30950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31006", "source" : "4241", "target" : "6133", "shared_name" : "1356 (interacts with) 54658", "name" : "1356 (interacts with) 54658", "interaction" : "interacts with", "SUID" : 31006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31002", "source" : "4241", "target" : "229", "shared_name" : "1356 (interacts with) 1371", "name" : "1356 (interacts with) 1371", "interaction" : "interacts with", "SUID" : 31002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30998", "source" : "4241", "target" : "4593", "shared_name" : "1356 (interacts with) 2058", "name" : "1356 (interacts with) 2058", "interaction" : "interacts with", "SUID" : 30998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30994", "source" : "4241", "target" : "6089", "shared_name" : "1356 (interacts with) 3145", "name" : "1356 (interacts with) 3145", "interaction" : "interacts with", "SUID" : 30994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30990", "source" : "4241", "target" : "5393", "shared_name" : "1356 (interacts with) 2395", "name" : "1356 (interacts with) 2395", "interaction" : "interacts with", "SUID" : 30990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30986", "source" : "4241", "target" : "4821", "shared_name" : "1356 (interacts with) 28982", "name" : "1356 (interacts with) 28982", "interaction" : "interacts with", "SUID" : 30986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30982", "source" : "4241", "target" : "6057", "shared_name" : "1356 (interacts with) 3162", "name" : "1356 (interacts with) 3162", "interaction" : "interacts with", "SUID" : 30982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30978", "source" : "4241", "target" : "1261", "shared_name" : "1356 (interacts with) 57192", "name" : "1356 (interacts with) 57192", "interaction" : "interacts with", "SUID" : 30978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30974", "source" : "4241", "target" : "2585", "shared_name" : "1356 (interacts with) 1977", "name" : "1356 (interacts with) 1977", "interaction" : "interacts with", "SUID" : 30974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30970", "source" : "4241", "target" : "2781", "shared_name" : "1356 (interacts with) 1968", "name" : "1356 (interacts with) 1968", "interaction" : "interacts with", "SUID" : 30970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30966", "source" : "4241", "target" : "4877", "shared_name" : "1356 (interacts with) 1965", "name" : "1356 (interacts with) 1965", "interaction" : "interacts with", "SUID" : 30966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "30962", "source" : "4241", "target" : "2793", "shared_name" : "1356 (interacts with) 8894", "name" : "1356 (interacts with) 8894", "interaction" : "interacts with", "SUID" : 30962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31046", "source" : "4237", "target" : "5693", "shared_name" : "4914 (interacts with) 92335", "name" : "4914 (interacts with) 92335", "interaction" : "interacts with", "SUID" : 31046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31042", "source" : "4237", "target" : "973", "shared_name" : "4914 (interacts with) 5595", "name" : "4914 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 31042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31038", "source" : "4237", "target" : "5081", "shared_name" : "4914 (interacts with) 5594", "name" : "4914 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 31038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31034", "source" : "4237", "target" : "5225", "shared_name" : "4914 (interacts with) 5290", "name" : "4914 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 31034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31030", "source" : "4237", "target" : "4213", "shared_name" : "4914 (interacts with) 5295", "name" : "4914 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 31030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31026", "source" : "4237", "target" : "1697", "shared_name" : "4914 (interacts with) 8818", "name" : "4914 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 31026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31022", "source" : "4237", "target" : "1069", "shared_name" : "4914 (interacts with) 5879", "name" : "4914 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 31022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31018", "source" : "4237", "target" : "637", "shared_name" : "4914 (interacts with) 6654", "name" : "4914 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 31018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31014", "source" : "4237", "target" : "4981", "shared_name" : "4914 (interacts with) 6774", "name" : "4914 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 31014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31010", "source" : "4237", "target" : "3465", "shared_name" : "4914 (interacts with) 5296", "name" : "4914 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 31010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31170", "source" : "4233", "target" : "5777", "shared_name" : "367 (interacts with) 383", "name" : "367 (interacts with) 383", "interaction" : "interacts with", "SUID" : 31170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31166", "source" : "4233", "target" : "5645", "shared_name" : "367 (interacts with) 9420", "name" : "367 (interacts with) 9420", "interaction" : "interacts with", "SUID" : 31166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31162", "source" : "4233", "target" : "5229", "shared_name" : "367 (interacts with) 6335", "name" : "367 (interacts with) 6335", "interaction" : "interacts with", "SUID" : 31162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31158", "source" : "4233", "target" : "3569", "shared_name" : "367 (interacts with) 4893", "name" : "367 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 31158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31154", "source" : "4233", "target" : "1097", "shared_name" : "367 (interacts with) 79718", "name" : "367 (interacts with) 79718", "interaction" : "interacts with", "SUID" : 31154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31150", "source" : "4233", "target" : "877", "shared_name" : "367 (interacts with) 7341", "name" : "367 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 31150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31146", "source" : "4233", "target" : "2157", "shared_name" : "367 (interacts with) 23028", "name" : "367 (interacts with) 23028", "interaction" : "interacts with", "SUID" : 31146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31142", "source" : "4233", "target" : "3785", "shared_name" : "367 (interacts with) 1781", "name" : "367 (interacts with) 1781", "interaction" : "interacts with", "SUID" : 31142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31138", "source" : "4233", "target" : "1321", "shared_name" : "367 (interacts with) 1778", "name" : "367 (interacts with) 1778", "interaction" : "interacts with", "SUID" : 31138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31134", "source" : "4233", "target" : "4029", "shared_name" : "367 (interacts with) 57178", "name" : "367 (interacts with) 57178", "interaction" : "interacts with", "SUID" : 31134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31130", "source" : "4233", "target" : "4221", "shared_name" : "367 (interacts with) 1644", "name" : "367 (interacts with) 1644", "interaction" : "interacts with", "SUID" : 31130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31126", "source" : "4233", "target" : "5053", "shared_name" : "367 (interacts with) 857", "name" : "367 (interacts with) 857", "interaction" : "interacts with", "SUID" : 31126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31122", "source" : "4233", "target" : "2053", "shared_name" : "367 (interacts with) 7468", "name" : "367 (interacts with) 7468", "interaction" : "interacts with", "SUID" : 31122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31118", "source" : "4233", "target" : "3721", "shared_name" : "367 (interacts with) 2934", "name" : "367 (interacts with) 2934", "interaction" : "interacts with", "SUID" : 31118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31114", "source" : "4233", "target" : "1029", "shared_name" : "367 (interacts with) 5080", "name" : "367 (interacts with) 5080", "interaction" : "interacts with", "SUID" : 31114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31110", "source" : "4233", "target" : "617", "shared_name" : "367 (interacts with) 1630", "name" : "367 (interacts with) 1630", "interaction" : "interacts with", "SUID" : 31110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31106", "source" : "4233", "target" : "3093", "shared_name" : "367 (interacts with) 6597", "name" : "367 (interacts with) 6597", "interaction" : "interacts with", "SUID" : 31106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31102", "source" : "4233", "target" : "3933", "shared_name" : "367 (interacts with) 10524", "name" : "367 (interacts with) 10524", "interaction" : "interacts with", "SUID" : 31102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31098", "source" : "4233", "target" : "4589", "shared_name" : "367 (interacts with) 8431", "name" : "367 (interacts with) 8431", "interaction" : "interacts with", "SUID" : 31098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31094", "source" : "4233", "target" : "4329", "shared_name" : "367 (interacts with) 11315", "name" : "367 (interacts with) 11315", "interaction" : "interacts with", "SUID" : 31094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31090", "source" : "4233", "target" : "5185", "shared_name" : "367 (interacts with) 1499", "name" : "367 (interacts with) 1499", "interaction" : "interacts with", "SUID" : 31090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31086", "source" : "4233", "target" : "2593", "shared_name" : "367 (interacts with) 64324", "name" : "367 (interacts with) 64324", "interaction" : "interacts with", "SUID" : 31086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31082", "source" : "4233", "target" : "2625", "shared_name" : "367 (interacts with) 3065", "name" : "367 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 31082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31078", "source" : "4233", "target" : "1413", "shared_name" : "367 (interacts with) 7337", "name" : "367 (interacts with) 7337", "interaction" : "interacts with", "SUID" : 31078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31074", "source" : "4233", "target" : "1629", "shared_name" : "367 (interacts with) 6047", "name" : "367 (interacts with) 6047", "interaction" : "interacts with", "SUID" : 31074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31070", "source" : "4233", "target" : "4097", "shared_name" : "367 (interacts with) 9611", "name" : "367 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 31070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31066", "source" : "4233", "target" : "789", "shared_name" : "367 (interacts with) 1616", "name" : "367 (interacts with) 1616", "interaction" : "interacts with", "SUID" : 31066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31062", "source" : "4233", "target" : "1893", "shared_name" : "367 (interacts with) 1387", "name" : "367 (interacts with) 1387", "interaction" : "interacts with", "SUID" : 31062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31058", "source" : "4233", "target" : "6169", "shared_name" : "367 (interacts with) 4088", "name" : "367 (interacts with) 4088", "interaction" : "interacts with", "SUID" : 31058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31054", "source" : "4233", "target" : "5949", "shared_name" : "367 (interacts with) 672", "name" : "367 (interacts with) 672", "interaction" : "interacts with", "SUID" : 31054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31050", "source" : "4233", "target" : "945", "shared_name" : "367 (interacts with) 2316", "name" : "367 (interacts with) 2316", "interaction" : "interacts with", "SUID" : 31050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31254", "source" : "4229", "target" : "1577", "shared_name" : "3035 (interacts with) 51091", "name" : "3035 (interacts with) 51091", "interaction" : "interacts with", "SUID" : 31254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31250", "source" : "4229", "target" : "4869", "shared_name" : "3035 (interacts with) 92935", "name" : "3035 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 31250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31246", "source" : "4229", "target" : "4717", "shared_name" : "3035 (interacts with) 51204", "name" : "3035 (interacts with) 51204", "interaction" : "interacts with", "SUID" : 31246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31242", "source" : "4229", "target" : "1129", "shared_name" : "3035 (interacts with) 57505", "name" : "3035 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 31242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31238", "source" : "4229", "target" : "1197", "shared_name" : "3035 (interacts with) 79587", "name" : "3035 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 31238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31234", "source" : "4229", "target" : "721", "shared_name" : "3035 (interacts with) 79731", "name" : "3035 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 31234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31230", "source" : "4229", "target" : "4085", "shared_name" : "3035 (interacts with) 55699", "name" : "3035 (interacts with) 55699", "interaction" : "interacts with", "SUID" : 31230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31226", "source" : "4229", "target" : "4621", "shared_name" : "3035 (interacts with) 57038", "name" : "3035 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 31226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31222", "source" : "4229", "target" : "5189", "shared_name" : "3035 (interacts with) 57176", "name" : "3035 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 31222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31218", "source" : "4229", "target" : "3633", "shared_name" : "3035 (interacts with) 51067", "name" : "3035 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 31218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31214", "source" : "4229", "target" : "6001", "shared_name" : "3035 (interacts with) 55157", "name" : "3035 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 31214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31210", "source" : "4229", "target" : "6157", "shared_name" : "3035 (interacts with) 3735", "name" : "3035 (interacts with) 3735", "interaction" : "interacts with", "SUID" : 31210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31206", "source" : "4229", "target" : "4349", "shared_name" : "3035 (interacts with) 5859", "name" : "3035 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 31206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31202", "source" : "4229", "target" : "3529", "shared_name" : "3035 (interacts with) 7965", "name" : "3035 (interacts with) 7965", "interaction" : "interacts with", "SUID" : 31202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31198", "source" : "4229", "target" : "3157", "shared_name" : "3035 (interacts with) 9255", "name" : "3035 (interacts with) 9255", "interaction" : "interacts with", "SUID" : 31198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31194", "source" : "4229", "target" : "3649", "shared_name" : "3035 (interacts with) 51520", "name" : "3035 (interacts with) 51520", "interaction" : "interacts with", "SUID" : 31194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31190", "source" : "4229", "target" : "1581", "shared_name" : "3035 (interacts with) 7407", "name" : "3035 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 31190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31186", "source" : "4229", "target" : "3641", "shared_name" : "3035 (interacts with) 4141", "name" : "3035 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 31186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31182", "source" : "4229", "target" : "4693", "shared_name" : "3035 (interacts with) 6301", "name" : "3035 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 31182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31178", "source" : "4229", "target" : "4597", "shared_name" : "3035 (interacts with) 3376", "name" : "3035 (interacts with) 3376", "interaction" : "interacts with", "SUID" : 31178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31174", "source" : "4229", "target" : "1089", "shared_name" : "3035 (interacts with) 5917", "name" : "3035 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 31174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31262", "source" : "4225", "target" : "961", "shared_name" : "55621 (interacts with) 7318", "name" : "55621 (interacts with) 7318", "interaction" : "interacts with", "SUID" : 31262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31258", "source" : "4225", "target" : "649", "shared_name" : "55621 (interacts with) 83480", "name" : "55621 (interacts with) 83480", "interaction" : "interacts with", "SUID" : 31258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31298", "source" : "4221", "target" : "625", "shared_name" : "1644 (interacts with) 8942", "name" : "1644 (interacts with) 8942", "interaction" : "interacts with", "SUID" : 31298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31294", "source" : "4221", "target" : "685", "shared_name" : "1644 (interacts with) 4282", "name" : "1644 (interacts with) 4282", "interaction" : "interacts with", "SUID" : 31294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31290", "source" : "4221", "target" : "317", "shared_name" : "1644 (interacts with) 3176", "name" : "1644 (interacts with) 3176", "interaction" : "interacts with", "SUID" : 31290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31286", "source" : "4221", "target" : "3185", "shared_name" : "1644 (interacts with) 5053", "name" : "1644 (interacts with) 5053", "interaction" : "interacts with", "SUID" : 31286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31282", "source" : "4221", "target" : "1013", "shared_name" : "1644 (interacts with) 6898", "name" : "1644 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 31282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31278", "source" : "4221", "target" : "1477", "shared_name" : "1644 (interacts with) 10352", "name" : "1644 (interacts with) 10352", "interaction" : "interacts with", "SUID" : 31278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31274", "source" : "4221", "target" : "389", "shared_name" : "1644 (interacts with) 7299", "name" : "1644 (interacts with) 7299", "interaction" : "interacts with", "SUID" : 31274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31270", "source" : "4221", "target" : "3689", "shared_name" : "1644 (interacts with) 7054", "name" : "1644 (interacts with) 7054", "interaction" : "interacts with", "SUID" : 31270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31266", "source" : "4221", "target" : "3777", "shared_name" : "1644 (interacts with) 6571", "name" : "1644 (interacts with) 6571", "interaction" : "interacts with", "SUID" : 31266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31314", "source" : "4217", "target" : "2521", "shared_name" : "51112 (interacts with) 83696", "name" : "51112 (interacts with) 83696", "interaction" : "interacts with", "SUID" : 31314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31310", "source" : "4217", "target" : "1717", "shared_name" : "51112 (interacts with) 51693", "name" : "51112 (interacts with) 51693", "interaction" : "interacts with", "SUID" : 31310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31306", "source" : "4217", "target" : "1457", "shared_name" : "51112 (interacts with) 122553", "name" : "51112 (interacts with) 122553", "interaction" : "interacts with", "SUID" : 31306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31302", "source" : "4217", "target" : "1453", "shared_name" : "51112 (interacts with) 60684", "name" : "51112 (interacts with) 60684", "interaction" : "interacts with", "SUID" : 31302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31534", "source" : "4213", "target" : "1241", "shared_name" : "5295 (interacts with) 808", "name" : "5295 (interacts with) 808", "interaction" : "interacts with", "SUID" : 31534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31530", "source" : "4213", "target" : "1201", "shared_name" : "5295 (interacts with) 805", "name" : "5295 (interacts with) 805", "interaction" : "interacts with", "SUID" : 31530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31526", "source" : "4213", "target" : "993", "shared_name" : "5295 (interacts with) 801", "name" : "5295 (interacts with) 801", "interaction" : "interacts with", "SUID" : 31526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31522", "source" : "4213", "target" : "5037", "shared_name" : "5295 (interacts with) 5515", "name" : "5295 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 31522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31518", "source" : "4213", "target" : "637", "shared_name" : "5295 (interacts with) 6654", "name" : "5295 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 31518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31514", "source" : "4213", "target" : "3577", "shared_name" : "5295 (interacts with) 5605", "name" : "5295 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 31514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31510", "source" : "4213", "target" : "981", "shared_name" : "5295 (interacts with) 7157", "name" : "5295 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 31510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31506", "source" : "4213", "target" : "5965", "shared_name" : "5295 (interacts with) 596", "name" : "5295 (interacts with) 596", "interaction" : "interacts with", "SUID" : 31506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31502", "source" : "4213", "target" : "3593", "shared_name" : "5295 (interacts with) 5530", "name" : "5295 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 31502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31498", "source" : "4213", "target" : "805", "shared_name" : "5295 (interacts with) 6772", "name" : "5295 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 31498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31494", "source" : "4213", "target" : "1845", "shared_name" : "5295 (interacts with) 836", "name" : "5295 (interacts with) 836", "interaction" : "interacts with", "SUID" : 31494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31490", "source" : "4213", "target" : "5625", "shared_name" : "5295 (interacts with) 595", "name" : "5295 (interacts with) 595", "interaction" : "interacts with", "SUID" : 31490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31486", "source" : "4213", "target" : "2957", "shared_name" : "5295 (interacts with) 5465", "name" : "5295 (interacts with) 5465", "interaction" : "interacts with", "SUID" : 31486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31482", "source" : "4213", "target" : "1405", "shared_name" : "5295 (interacts with) 998", "name" : "5295 (interacts with) 998", "interaction" : "interacts with", "SUID" : 31482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31478", "source" : "4213", "target" : "2433", "shared_name" : "5295 (interacts with) 6927", "name" : "5295 (interacts with) 6927", "interaction" : "interacts with", "SUID" : 31478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31474", "source" : "4213", "target" : "4981", "shared_name" : "5295 (interacts with) 6774", "name" : "5295 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 31474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31470", "source" : "4213", "target" : "817", "shared_name" : "5295 (interacts with) 5728", "name" : "5295 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 31470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31466", "source" : "4213", "target" : "3177", "shared_name" : "5295 (interacts with) 5321", "name" : "5295 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 31466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31462", "source" : "4213", "target" : "5321", "shared_name" : "5295 (interacts with) 5743", "name" : "5295 (interacts with) 5743", "interaction" : "interacts with", "SUID" : 31462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31458", "source" : "4213", "target" : "5745", "shared_name" : "5295 (interacts with) 7471", "name" : "5295 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 31458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31454", "source" : "4213", "target" : "5697", "shared_name" : "5295 (interacts with) 8517", "name" : "5295 (interacts with) 8517", "interaction" : "interacts with", "SUID" : 31454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31450", "source" : "4213", "target" : "4589", "shared_name" : "5295 (interacts with) 8431", "name" : "5295 (interacts with) 8431", "interaction" : "interacts with", "SUID" : 31450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31446", "source" : "4213", "target" : "2793", "shared_name" : "5295 (interacts with) 8894", "name" : "5295 (interacts with) 8894", "interaction" : "interacts with", "SUID" : 31446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31442", "source" : "4213", "target" : "4097", "shared_name" : "5295 (interacts with) 9611", "name" : "5295 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 31442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31438", "source" : "4213", "target" : "1285", "shared_name" : "5295 (interacts with) 7249", "name" : "5295 (interacts with) 7249", "interaction" : "interacts with", "SUID" : 31438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31434", "source" : "4213", "target" : "4149", "shared_name" : "5295 (interacts with) 8893", "name" : "5295 (interacts with) 8893", "interaction" : "interacts with", "SUID" : 31434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31430", "source" : "4213", "target" : "3289", "shared_name" : "5295 (interacts with) 5913", "name" : "5295 (interacts with) 5913", "interaction" : "interacts with", "SUID" : 31430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31426", "source" : "4213", "target" : "3833", "shared_name" : "5295 (interacts with) 9138", "name" : "5295 (interacts with) 9138", "interaction" : "interacts with", "SUID" : 31426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31422", "source" : "4213", "target" : "1493", "shared_name" : "5295 (interacts with) 7428", "name" : "5295 (interacts with) 7428", "interaction" : "interacts with", "SUID" : 31422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31418", "source" : "4213", "target" : "5637", "shared_name" : "5295 (interacts with) 6609", "name" : "5295 (interacts with) 6609", "interaction" : "interacts with", "SUID" : 31418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31414", "source" : "4213", "target" : "1697", "shared_name" : "5295 (interacts with) 8818", "name" : "5295 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 31414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31410", "source" : "4213", "target" : "4837", "shared_name" : "5295 (interacts with) 8891", "name" : "5295 (interacts with) 8891", "interaction" : "interacts with", "SUID" : 31410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31406", "source" : "4213", "target" : "841", "shared_name" : "5295 (interacts with) 8890", "name" : "5295 (interacts with) 8890", "interaction" : "interacts with", "SUID" : 31406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31402", "source" : "4213", "target" : "4765", "shared_name" : "5295 (interacts with) 7015", "name" : "5295 (interacts with) 7015", "interaction" : "interacts with", "SUID" : 31402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31398", "source" : "4213", "target" : "2901", "shared_name" : "5295 (interacts with) 6647", "name" : "5295 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 31398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31394", "source" : "4213", "target" : "1605", "shared_name" : "5295 (interacts with) 6648", "name" : "5295 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 31394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31390", "source" : "4213", "target" : "837", "shared_name" : "5295 (interacts with) 8892", "name" : "5295 (interacts with) 8892", "interaction" : "interacts with", "SUID" : 31390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31386", "source" : "4213", "target" : "3285", "shared_name" : "5295 (interacts with) 8302", "name" : "5295 (interacts with) 8302", "interaction" : "interacts with", "SUID" : 31386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31382", "source" : "4213", "target" : "553", "shared_name" : "5295 (interacts with) 7248", "name" : "5295 (interacts with) 7248", "interaction" : "interacts with", "SUID" : 31382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31378", "source" : "4213", "target" : "2509", "shared_name" : "5295 (interacts with) 7204", "name" : "5295 (interacts with) 7204", "interaction" : "interacts with", "SUID" : 31378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31374", "source" : "4213", "target" : "4041", "shared_name" : "5295 (interacts with) 847", "name" : "5295 (interacts with) 847", "interaction" : "interacts with", "SUID" : 31374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31370", "source" : "4213", "target" : "1857", "shared_name" : "5295 (interacts with) 9533", "name" : "5295 (interacts with) 9533", "interaction" : "interacts with", "SUID" : 31370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31366", "source" : "4213", "target" : "4697", "shared_name" : "5295 (interacts with) 7534", "name" : "5295 (interacts with) 7534", "interaction" : "interacts with", "SUID" : 31366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31362", "source" : "4213", "target" : "725", "shared_name" : "5295 (interacts with) 54209", "name" : "5295 (interacts with) 54209", "interaction" : "interacts with", "SUID" : 31362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31358", "source" : "4213", "target" : "5073", "shared_name" : "5295 (interacts with) 7305", "name" : "5295 (interacts with) 7305", "interaction" : "interacts with", "SUID" : 31358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31354", "source" : "4213", "target" : "2969", "shared_name" : "5295 (interacts with) 8867", "name" : "5295 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 31354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31350", "source" : "4213", "target" : "5785", "shared_name" : "5295 (interacts with) 6857", "name" : "5295 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 31350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31346", "source" : "4213", "target" : "4393", "shared_name" : "5295 (interacts with) 950", "name" : "5295 (interacts with) 950", "interaction" : "interacts with", "SUID" : 31346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31342", "source" : "4213", "target" : "1069", "shared_name" : "5295 (interacts with) 5879", "name" : "5295 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 31342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31338", "source" : "4213", "target" : "4157", "shared_name" : "5295 (interacts with) 85021", "name" : "5295 (interacts with) 85021", "interaction" : "interacts with", "SUID" : 31338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31334", "source" : "4213", "target" : "5125", "shared_name" : "5295 (interacts with) 5979", "name" : "5295 (interacts with) 5979", "interaction" : "interacts with", "SUID" : 31334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31330", "source" : "4213", "target" : "1701", "shared_name" : "5295 (interacts with) 5777", "name" : "5295 (interacts with) 5777", "interaction" : "interacts with", "SUID" : 31330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31326", "source" : "4213", "target" : "2469", "shared_name" : "5295 (interacts with) 10657", "name" : "5295 (interacts with) 10657", "interaction" : "interacts with", "SUID" : 31326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31322", "source" : "4213", "target" : "5225", "shared_name" : "5295 (interacts with) 5290", "name" : "5295 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 31322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31318", "source" : "4213", "target" : "865", "shared_name" : "5295 (interacts with) 3480", "name" : "5295 (interacts with) 3480", "interaction" : "interacts with", "SUID" : 31318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31570", "source" : "4209", "target" : "2509", "shared_name" : "4915 (interacts with) 7204", "name" : "4915 (interacts with) 7204", "interaction" : "interacts with", "SUID" : 31570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31566", "source" : "4209", "target" : "5693", "shared_name" : "4915 (interacts with) 92335", "name" : "4915 (interacts with) 92335", "interaction" : "interacts with", "SUID" : 31566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31562", "source" : "4209", "target" : "5425", "shared_name" : "4915 (interacts with) 627", "name" : "4915 (interacts with) 627", "interaction" : "interacts with", "SUID" : 31562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31558", "source" : "4209", "target" : "1805", "shared_name" : "4915 (interacts with) 3738", "name" : "4915 (interacts with) 3738", "interaction" : "interacts with", "SUID" : 31558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31554", "source" : "4209", "target" : "817", "shared_name" : "4915 (interacts with) 5728", "name" : "4915 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 31554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31550", "source" : "4209", "target" : "1069", "shared_name" : "4915 (interacts with) 5879", "name" : "4915 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 31550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31546", "source" : "4209", "target" : "637", "shared_name" : "4915 (interacts with) 6654", "name" : "4915 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 31546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31542", "source" : "4209", "target" : "4213", "shared_name" : "4915 (interacts with) 5295", "name" : "4915 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 31542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31538", "source" : "4209", "target" : "5225", "shared_name" : "4915 (interacts with) 5290", "name" : "4915 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 31538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31574", "source" : "4201", "target" : "5641", "shared_name" : "10985 (interacts with) 5518", "name" : "10985 (interacts with) 5518", "interaction" : "interacts with", "SUID" : 31574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31694", "source" : "4197", "target" : "2509", "shared_name" : "1398 (interacts with) 7204", "name" : "1398 (interacts with) 7204", "interaction" : "interacts with", "SUID" : 31694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31690", "source" : "4197", "target" : "973", "shared_name" : "1398 (interacts with) 5595", "name" : "1398 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 31690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31686", "source" : "4197", "target" : "3685", "shared_name" : "1398 (interacts with) 3265", "name" : "1398 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 31686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31682", "source" : "4197", "target" : "5081", "shared_name" : "1398 (interacts with) 5594", "name" : "1398 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 31682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31678", "source" : "4197", "target" : "3017", "shared_name" : "1398 (interacts with) 4790", "name" : "1398 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 31678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31674", "source" : "4197", "target" : "4949", "shared_name" : "1398 (interacts with) 5970", "name" : "1398 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 31674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31670", "source" : "4197", "target" : "4213", "shared_name" : "1398 (interacts with) 5295", "name" : "1398 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 31670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31666", "source" : "4197", "target" : "5225", "shared_name" : "1398 (interacts with) 5290", "name" : "1398 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 31666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31662", "source" : "4197", "target" : "4521", "shared_name" : "1398 (interacts with) 5894", "name" : "1398 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 31662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31658", "source" : "4197", "target" : "5361", "shared_name" : "1398 (interacts with) 5604", "name" : "1398 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 31658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31654", "source" : "4197", "target" : "5149", "shared_name" : "1398 (interacts with) 5058", "name" : "1398 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 31654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31650", "source" : "4197", "target" : "637", "shared_name" : "1398 (interacts with) 6654", "name" : "1398 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 31650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31646", "source" : "4197", "target" : "3581", "shared_name" : "1398 (interacts with) 2185", "name" : "1398 (interacts with) 2185", "interaction" : "interacts with", "SUID" : 31646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31642", "source" : "4197", "target" : "3577", "shared_name" : "1398 (interacts with) 5605", "name" : "1398 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 31642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31638", "source" : "4197", "target" : "817", "shared_name" : "1398 (interacts with) 5728", "name" : "1398 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 31638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31634", "source" : "4197", "target" : "4981", "shared_name" : "1398 (interacts with) 6774", "name" : "1398 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 31634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31630", "source" : "4197", "target" : "4457", "shared_name" : "1398 (interacts with) 3082", "name" : "1398 (interacts with) 3082", "interaction" : "interacts with", "SUID" : 31630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31626", "source" : "4197", "target" : "4565", "shared_name" : "1398 (interacts with) 57498", "name" : "1398 (interacts with) 57498", "interaction" : "interacts with", "SUID" : 31626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31622", "source" : "4197", "target" : "4237", "shared_name" : "1398 (interacts with) 4914", "name" : "1398 (interacts with) 4914", "interaction" : "interacts with", "SUID" : 31622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31618", "source" : "4197", "target" : "1069", "shared_name" : "1398 (interacts with) 5879", "name" : "1398 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 31618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31614", "source" : "4197", "target" : "5973", "shared_name" : "1398 (interacts with) 5155", "name" : "1398 (interacts with) 5155", "interaction" : "interacts with", "SUID" : 31614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31610", "source" : "4197", "target" : "4293", "shared_name" : "1398 (interacts with) 5156", "name" : "1398 (interacts with) 5156", "interaction" : "interacts with", "SUID" : 31610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31606", "source" : "4197", "target" : "2173", "shared_name" : "1398 (interacts with) 5159", "name" : "1398 (interacts with) 5159", "interaction" : "interacts with", "SUID" : 31606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31602", "source" : "4197", "target" : "3745", "shared_name" : "1398 (interacts with) 4803", "name" : "1398 (interacts with) 4803", "interaction" : "interacts with", "SUID" : 31602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31598", "source" : "4197", "target" : "3429", "shared_name" : "1398 (interacts with) 3674", "name" : "1398 (interacts with) 3674", "interaction" : "interacts with", "SUID" : 31598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31594", "source" : "4197", "target" : "809", "shared_name" : "1398 (interacts with) 2335", "name" : "1398 (interacts with) 2335", "interaction" : "interacts with", "SUID" : 31594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31590", "source" : "4197", "target" : "3381", "shared_name" : "1398 (interacts with) 2214", "name" : "1398 (interacts with) 2214", "interaction" : "interacts with", "SUID" : 31590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31586", "source" : "4197", "target" : "3521", "shared_name" : "1398 (interacts with) 85440", "name" : "1398 (interacts with) 85440", "interaction" : "interacts with", "SUID" : 31586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31582", "source" : "4197", "target" : "4885", "shared_name" : "1398 (interacts with) 5340", "name" : "1398 (interacts with) 5340", "interaction" : "interacts with", "SUID" : 31582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31578", "source" : "4197", "target" : "4305", "shared_name" : "1398 (interacts with) 9639", "name" : "1398 (interacts with) 9639", "interaction" : "interacts with", "SUID" : 31578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31774", "source" : "4193", "target" : "3025", "shared_name" : "2720 (interacts with) 55627", "name" : "2720 (interacts with) 55627", "interaction" : "interacts with", "SUID" : 31774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31770", "source" : "4193", "target" : "4641", "shared_name" : "2720 (interacts with) 55331", "name" : "2720 (interacts with) 55331", "interaction" : "interacts with", "SUID" : 31770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31766", "source" : "4193", "target" : "2669", "shared_name" : "2720 (interacts with) 9197", "name" : "2720 (interacts with) 9197", "interaction" : "interacts with", "SUID" : 31766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31762", "source" : "4193", "target" : "273", "shared_name" : "2720 (interacts with) 8869", "name" : "2720 (interacts with) 8869", "interaction" : "interacts with", "SUID" : 31762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31758", "source" : "4193", "target" : "6133", "shared_name" : "2720 (interacts with) 54658", "name" : "2720 (interacts with) 54658", "interaction" : "interacts with", "SUID" : 31758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31754", "source" : "4193", "target" : "4989", "shared_name" : "2720 (interacts with) 51227", "name" : "2720 (interacts with) 51227", "interaction" : "interacts with", "SUID" : 31754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31750", "source" : "4193", "target" : "985", "shared_name" : "2720 (interacts with) 9091", "name" : "2720 (interacts with) 9091", "interaction" : "interacts with", "SUID" : 31750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31746", "source" : "4193", "target" : "3705", "shared_name" : "2720 (interacts with) 87178", "name" : "2720 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 31746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31742", "source" : "4193", "target" : "5561", "shared_name" : "2720 (interacts with) 4247", "name" : "2720 (interacts with) 4247", "interaction" : "interacts with", "SUID" : 31742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31738", "source" : "4193", "target" : "1545", "shared_name" : "2720 (interacts with) 5277", "name" : "2720 (interacts with) 5277", "interaction" : "interacts with", "SUID" : 31738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31734", "source" : "4193", "target" : "897", "shared_name" : "2720 (interacts with) 3073", "name" : "2720 (interacts with) 3073", "interaction" : "interacts with", "SUID" : 31734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31730", "source" : "4193", "target" : "1257", "shared_name" : "2720 (interacts with) 3098", "name" : "2720 (interacts with) 3098", "interaction" : "interacts with", "SUID" : 31730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31726", "source" : "4193", "target" : "3645", "shared_name" : "2720 (interacts with) 4758", "name" : "2720 (interacts with) 4758", "interaction" : "interacts with", "SUID" : 31726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31722", "source" : "4193", "target" : "1193", "shared_name" : "2720 (interacts with) 5660", "name" : "2720 (interacts with) 5660", "interaction" : "interacts with", "SUID" : 31722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31718", "source" : "4193", "target" : "3433", "shared_name" : "2720 (interacts with) 26503", "name" : "2720 (interacts with) 26503", "interaction" : "interacts with", "SUID" : 31718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31714", "source" : "4193", "target" : "3733", "shared_name" : "2720 (interacts with) 2760", "name" : "2720 (interacts with) 2760", "interaction" : "interacts with", "SUID" : 31714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31710", "source" : "4193", "target" : "3189", "shared_name" : "2720 (interacts with) 2799", "name" : "2720 (interacts with) 2799", "interaction" : "interacts with", "SUID" : 31710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31706", "source" : "4193", "target" : "1361", "shared_name" : "2720 (interacts with) 55262", "name" : "2720 (interacts with) 55262", "interaction" : "interacts with", "SUID" : 31706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31702", "source" : "4193", "target" : "2521", "shared_name" : "2720 (interacts with) 83696", "name" : "2720 (interacts with) 83696", "interaction" : "interacts with", "SUID" : 31702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31698", "source" : "4193", "target" : "1457", "shared_name" : "2720 (interacts with) 122553", "name" : "2720 (interacts with) 122553", "interaction" : "interacts with", "SUID" : 31698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31850", "source" : "4189", "target" : "4045", "shared_name" : "2744 (interacts with) 29920", "name" : "2744 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 31850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31846", "source" : "4189", "target" : "3077", "shared_name" : "2744 (interacts with) 6506", "name" : "2744 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 31846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31842", "source" : "4189", "target" : "4093", "shared_name" : "2744 (interacts with) 2752", "name" : "2744 (interacts with) 2752", "interaction" : "interacts with", "SUID" : 31842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31838", "source" : "4189", "target" : "1461", "shared_name" : "2744 (interacts with) 5832", "name" : "2744 (interacts with) 5832", "interaction" : "interacts with", "SUID" : 31838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31834", "source" : "4189", "target" : "3501", "shared_name" : "2744 (interacts with) 5831", "name" : "2744 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 31834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31830", "source" : "4189", "target" : "1013", "shared_name" : "2744 (interacts with) 6898", "name" : "2744 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 31830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31826", "source" : "4189", "target" : "413", "shared_name" : "2744 (interacts with) 51733", "name" : "2744 (interacts with) 51733", "interaction" : "interacts with", "SUID" : 31826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31822", "source" : "4189", "target" : "4253", "shared_name" : "2744 (interacts with) 84706", "name" : "2744 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 31822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31818", "source" : "4189", "target" : "5529", "shared_name" : "2744 (interacts with) 2875", "name" : "2744 (interacts with) 2875", "interaction" : "interacts with", "SUID" : 31818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31814", "source" : "4189", "target" : "2177", "shared_name" : "2744 (interacts with) 443", "name" : "2744 (interacts with) 443", "interaction" : "interacts with", "SUID" : 31814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31810", "source" : "4189", "target" : "5349", "shared_name" : "2744 (interacts with) 440", "name" : "2744 (interacts with) 440", "interaction" : "interacts with", "SUID" : 31810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31806", "source" : "4189", "target" : "2005", "shared_name" : "2744 (interacts with) 4846", "name" : "2744 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 31806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31802", "source" : "4189", "target" : "461", "shared_name" : "2744 (interacts with) 5198", "name" : "2744 (interacts with) 5198", "interaction" : "interacts with", "SUID" : 31802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31798", "source" : "4189", "target" : "4185", "shared_name" : "2744 (interacts with) 29968", "name" : "2744 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 31798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31794", "source" : "4189", "target" : "6089", "shared_name" : "2744 (interacts with) 3145", "name" : "2744 (interacts with) 3145", "interaction" : "interacts with", "SUID" : 31794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31790", "source" : "4189", "target" : "1341", "shared_name" : "2744 (interacts with) 5009", "name" : "2744 (interacts with) 5009", "interaction" : "interacts with", "SUID" : 31790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31786", "source" : "4189", "target" : "3237", "shared_name" : "2744 (interacts with) 95", "name" : "2744 (interacts with) 95", "interaction" : "interacts with", "SUID" : 31786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31782", "source" : "4189", "target" : "1981", "shared_name" : "2744 (interacts with) 339983", "name" : "2744 (interacts with) 339983", "interaction" : "interacts with", "SUID" : 31782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31778", "source" : "4189", "target" : "609", "shared_name" : "2744 (interacts with) 6812", "name" : "2744 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 31778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31906", "source" : "4185", "target" : "3641", "shared_name" : "29968 (interacts with) 4141", "name" : "29968 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 31906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31902", "source" : "4185", "target" : "5349", "shared_name" : "29968 (interacts with) 440", "name" : "29968 (interacts with) 440", "interaction" : "interacts with", "SUID" : 31902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31898", "source" : "4185", "target" : "4693", "shared_name" : "29968 (interacts with) 6301", "name" : "29968 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 31898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31894", "source" : "4185", "target" : "5593", "shared_name" : "29968 (interacts with) 875", "name" : "29968 (interacts with) 875", "interaction" : "interacts with", "SUID" : 31894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31890", "source" : "4185", "target" : "1013", "shared_name" : "29968 (interacts with) 6898", "name" : "29968 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 31890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31886", "source" : "4185", "target" : "233", "shared_name" : "29968 (interacts with) 8566", "name" : "29968 (interacts with) 8566", "interaction" : "interacts with", "SUID" : 31886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31882", "source" : "4185", "target" : "3085", "shared_name" : "29968 (interacts with) 57026", "name" : "29968 (interacts with) 57026", "interaction" : "interacts with", "SUID" : 31882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31878", "source" : "4185", "target" : "2161", "shared_name" : "29968 (interacts with) 55163", "name" : "29968 (interacts with) 55163", "interaction" : "interacts with", "SUID" : 31878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31874", "source" : "4185", "target" : "1493", "shared_name" : "29968 (interacts with) 7428", "name" : "29968 (interacts with) 7428", "interaction" : "interacts with", "SUID" : 31874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31870", "source" : "4185", "target" : "2721", "shared_name" : "29968 (interacts with) 79751", "name" : "29968 (interacts with) 79751", "interaction" : "interacts with", "SUID" : 31870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31866", "source" : "4185", "target" : "3077", "shared_name" : "29968 (interacts with) 6506", "name" : "29968 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 31866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31862", "source" : "4185", "target" : "6009", "shared_name" : "29968 (interacts with) 64849", "name" : "29968 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 31862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31858", "source" : "4185", "target" : "2321", "shared_name" : "29968 (interacts with) 6509", "name" : "29968 (interacts with) 6509", "interaction" : "interacts with", "SUID" : 31858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31854", "source" : "4185", "target" : "1885", "shared_name" : "29968 (interacts with) 8604", "name" : "29968 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 31854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31986", "source" : "4181", "target" : "3017", "shared_name" : "154 (interacts with) 4790", "name" : "154 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 31986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31982", "source" : "4181", "target" : "4213", "shared_name" : "154 (interacts with) 5295", "name" : "154 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 31982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31978", "source" : "4181", "target" : "4949", "shared_name" : "154 (interacts with) 5970", "name" : "154 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 31978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31974", "source" : "4181", "target" : "5225", "shared_name" : "154 (interacts with) 5290", "name" : "154 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 31974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31970", "source" : "4181", "target" : "993", "shared_name" : "154 (interacts with) 801", "name" : "154 (interacts with) 801", "interaction" : "interacts with", "SUID" : 31970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31966", "source" : "4181", "target" : "1201", "shared_name" : "154 (interacts with) 805", "name" : "154 (interacts with) 805", "interaction" : "interacts with", "SUID" : 31966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31962", "source" : "4181", "target" : "4857", "shared_name" : "154 (interacts with) 5573", "name" : "154 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 31962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31958", "source" : "4181", "target" : "2005", "shared_name" : "154 (interacts with) 4846", "name" : "154 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 31958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31954", "source" : "4181", "target" : "1293", "shared_name" : "154 (interacts with) 2908", "name" : "154 (interacts with) 2908", "interaction" : "interacts with", "SUID" : 31954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31950", "source" : "4181", "target" : "1241", "shared_name" : "154 (interacts with) 808", "name" : "154 (interacts with) 808", "interaction" : "interacts with", "SUID" : 31950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31946", "source" : "4181", "target" : "2969", "shared_name" : "154 (interacts with) 8867", "name" : "154 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 31946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31942", "source" : "4181", "target" : "4157", "shared_name" : "154 (interacts with) 85021", "name" : "154 (interacts with) 85021", "interaction" : "interacts with", "SUID" : 31942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31938", "source" : "4181", "target" : "1909", "shared_name" : "154 (interacts with) 5286", "name" : "154 (interacts with) 5286", "interaction" : "interacts with", "SUID" : 31938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31934", "source" : "4181", "target" : "3465", "shared_name" : "154 (interacts with) 5296", "name" : "154 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 31934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31930", "source" : "4181", "target" : "2429", "shared_name" : "154 (interacts with) 4952", "name" : "154 (interacts with) 4952", "interaction" : "interacts with", "SUID" : 31930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31926", "source" : "4181", "target" : "1209", "shared_name" : "154 (interacts with) 51763", "name" : "154 (interacts with) 51763", "interaction" : "interacts with", "SUID" : 31926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31922", "source" : "4181", "target" : "5569", "shared_name" : "154 (interacts with) 59345", "name" : "154 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 31922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31918", "source" : "4181", "target" : "3981", "shared_name" : "154 (interacts with) 1785", "name" : "154 (interacts with) 1785", "interaction" : "interacts with", "SUID" : 31918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31914", "source" : "4181", "target" : "3985", "shared_name" : "154 (interacts with) 274", "name" : "154 (interacts with) 274", "interaction" : "interacts with", "SUID" : 31914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31910", "source" : "4181", "target" : "4441", "shared_name" : "154 (interacts with) 1213", "name" : "154 (interacts with) 1213", "interaction" : "interacts with", "SUID" : 31910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32102", "source" : "4177", "target" : "4285", "shared_name" : "2068 (interacts with) 8450", "name" : "2068 (interacts with) 8450", "interaction" : "interacts with", "SUID" : 32102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32098", "source" : "4177", "target" : "913", "shared_name" : "2068 (interacts with) 404672", "name" : "2068 (interacts with) 404672", "interaction" : "interacts with", "SUID" : 32098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32094", "source" : "4177", "target" : "4249", "shared_name" : "2068 (interacts with) 4331", "name" : "2068 (interacts with) 4331", "interaction" : "interacts with", "SUID" : 32094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32090", "source" : "4177", "target" : "3953", "shared_name" : "2068 (interacts with) 8731", "name" : "2068 (interacts with) 8731", "interaction" : "interacts with", "SUID" : 32090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32086", "source" : "4177", "target" : "481", "shared_name" : "2068 (interacts with) 7507", "name" : "2068 (interacts with) 7507", "interaction" : "interacts with", "SUID" : 32086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32082", "source" : "4177", "target" : "2709", "shared_name" : "2068 (interacts with) 2072", "name" : "2068 (interacts with) 2072", "interaction" : "interacts with", "SUID" : 32082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32078", "source" : "4177", "target" : "505", "shared_name" : "2068 (interacts with) 2071", "name" : "2068 (interacts with) 2071", "interaction" : "interacts with", "SUID" : 32078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32074", "source" : "4177", "target" : "4037", "shared_name" : "2068 (interacts with) 2073", "name" : "2068 (interacts with) 2073", "interaction" : "interacts with", "SUID" : 32074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32070", "source" : "4177", "target" : "1709", "shared_name" : "2068 (interacts with) 2074", "name" : "2068 (interacts with) 2074", "interaction" : "interacts with", "SUID" : 32070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32066", "source" : "4177", "target" : "2921", "shared_name" : "2068 (interacts with) 5981", "name" : "2068 (interacts with) 5981", "interaction" : "interacts with", "SUID" : 32066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32062", "source" : "4177", "target" : "749", "shared_name" : "2068 (interacts with) 6873", "name" : "2068 (interacts with) 6873", "interaction" : "interacts with", "SUID" : 32062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32058", "source" : "4177", "target" : "1793", "shared_name" : "2068 (interacts with) 7515", "name" : "2068 (interacts with) 7515", "interaction" : "interacts with", "SUID" : 32058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32054", "source" : "4177", "target" : "5197", "shared_name" : "2068 (interacts with) 7156", "name" : "2068 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 32054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32050", "source" : "4177", "target" : "1817", "shared_name" : "2068 (interacts with) 7343", "name" : "2068 (interacts with) 7343", "interaction" : "interacts with", "SUID" : 32050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32046", "source" : "4177", "target" : "2305", "shared_name" : "2068 (interacts with) 6908", "name" : "2068 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 32046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32042", "source" : "4177", "target" : "4425", "shared_name" : "2068 (interacts with) 6884", "name" : "2068 (interacts with) 6884", "interaction" : "interacts with", "SUID" : 32042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32038", "source" : "4177", "target" : "5849", "shared_name" : "2068 (interacts with) 6613", "name" : "2068 (interacts with) 6613", "interaction" : "interacts with", "SUID" : 32038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32034", "source" : "4177", "target" : "877", "shared_name" : "2068 (interacts with) 7341", "name" : "2068 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 32034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32030", "source" : "4177", "target" : "4413", "shared_name" : "2068 (interacts with) 6612", "name" : "2068 (interacts with) 6612", "interaction" : "interacts with", "SUID" : 32030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32026", "source" : "4177", "target" : "5861", "shared_name" : "2068 (interacts with) 5435", "name" : "2068 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 32026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32022", "source" : "4177", "target" : "5621", "shared_name" : "2068 (interacts with) 25885", "name" : "2068 (interacts with) 25885", "interaction" : "interacts with", "SUID" : 32022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32018", "source" : "4177", "target" : "2649", "shared_name" : "2068 (interacts with) 5430", "name" : "2068 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 32018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32014", "source" : "4177", "target" : "1857", "shared_name" : "2068 (interacts with) 9533", "name" : "2068 (interacts with) 9533", "interaction" : "interacts with", "SUID" : 32014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32010", "source" : "4177", "target" : "2529", "shared_name" : "2068 (interacts with) 5424", "name" : "2068 (interacts with) 5424", "interaction" : "interacts with", "SUID" : 32010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32006", "source" : "4177", "target" : "1729", "shared_name" : "2068 (interacts with) 5111", "name" : "2068 (interacts with) 5111", "interaction" : "interacts with", "SUID" : 32006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32002", "source" : "4177", "target" : "3049", "shared_name" : "2068 (interacts with) 142", "name" : "2068 (interacts with) 142", "interaction" : "interacts with", "SUID" : 32002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31998", "source" : "4177", "target" : "3933", "shared_name" : "2068 (interacts with) 10524", "name" : "2068 (interacts with) 10524", "interaction" : "interacts with", "SUID" : 31998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31994", "source" : "4177", "target" : "1937", "shared_name" : "2068 (interacts with) 2965", "name" : "2068 (interacts with) 2965", "interaction" : "interacts with", "SUID" : 31994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "31990", "source" : "4177", "target" : "981", "shared_name" : "2068 (interacts with) 7157", "name" : "2068 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 31990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32122", "source" : "4173", "target" : "5361", "shared_name" : "23499 (interacts with) 5604", "name" : "23499 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 32122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32118", "source" : "4173", "target" : "3677", "shared_name" : "23499 (interacts with) 673", "name" : "23499 (interacts with) 673", "interaction" : "interacts with", "SUID" : 32118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32114", "source" : "4173", "target" : "3577", "shared_name" : "23499 (interacts with) 5605", "name" : "23499 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 32114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32110", "source" : "4173", "target" : "5945", "shared_name" : "23499 (interacts with) 55750", "name" : "23499 (interacts with) 55750", "interaction" : "interacts with", "SUID" : 32110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32106", "source" : "4173", "target" : "3841", "shared_name" : "23499 (interacts with) 9444", "name" : "23499 (interacts with) 9444", "interaction" : "interacts with", "SUID" : 32106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32226", "source" : "4169", "target" : "2337", "shared_name" : "10993 (interacts with) 28976", "name" : "10993 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 32226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32222", "source" : "4169", "target" : "1705", "shared_name" : "10993 (interacts with) 134526", "name" : "10993 (interacts with) 134526", "interaction" : "interacts with", "SUID" : 32222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32218", "source" : "4169", "target" : "5993", "shared_name" : "10993 (interacts with) 6611", "name" : "10993 (interacts with) 6611", "interaction" : "interacts with", "SUID" : 32218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32214", "source" : "4169", "target" : "5001", "shared_name" : "10993 (interacts with) 132158", "name" : "10993 (interacts with) 132158", "interaction" : "interacts with", "SUID" : 32214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32210", "source" : "4169", "target" : "5161", "shared_name" : "10993 (interacts with) 1786", "name" : "10993 (interacts with) 1786", "interaction" : "interacts with", "SUID" : 32210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32206", "source" : "4169", "target" : "2725", "shared_name" : "10993 (interacts with) 1789", "name" : "10993 (interacts with) 1789", "interaction" : "interacts with", "SUID" : 32206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32202", "source" : "4169", "target" : "1489", "shared_name" : "10993 (interacts with) 1738", "name" : "10993 (interacts with) 1738", "interaction" : "interacts with", "SUID" : 32202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32198", "source" : "4169", "target" : "4341", "shared_name" : "10993 (interacts with) 2729", "name" : "10993 (interacts with) 2729", "interaction" : "interacts with", "SUID" : 32198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32194", "source" : "4169", "target" : "1013", "shared_name" : "10993 (interacts with) 6898", "name" : "10993 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 32194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32190", "source" : "4169", "target" : "3541", "shared_name" : "10993 (interacts with) 4191", "name" : "10993 (interacts with) 4191", "interaction" : "interacts with", "SUID" : 32190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32186", "source" : "4169", "target" : "2365", "shared_name" : "10993 (interacts with) 2731", "name" : "10993 (interacts with) 2731", "interaction" : "interacts with", "SUID" : 32186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32182", "source" : "4169", "target" : "5597", "shared_name" : "10993 (interacts with) 22934", "name" : "10993 (interacts with) 22934", "interaction" : "interacts with", "SUID" : 32182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32178", "source" : "4169", "target" : "4833", "shared_name" : "10993 (interacts with) 2593", "name" : "10993 (interacts with) 2593", "interaction" : "interacts with", "SUID" : 32178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32174", "source" : "4169", "target" : "4273", "shared_name" : "10993 (interacts with) 4548", "name" : "10993 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 32174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32170", "source" : "4169", "target" : "429", "shared_name" : "10993 (interacts with) 1757", "name" : "10993 (interacts with) 1757", "interaction" : "interacts with", "SUID" : 32170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32166", "source" : "4169", "target" : "4617", "shared_name" : "10993 (interacts with) 26227", "name" : "10993 (interacts with) 26227", "interaction" : "interacts with", "SUID" : 32166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32162", "source" : "4169", "target" : "4185", "shared_name" : "10993 (interacts with) 29968", "name" : "10993 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 32162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32158", "source" : "4169", "target" : "2457", "shared_name" : "10993 (interacts with) 4143", "name" : "10993 (interacts with) 4143", "interaction" : "interacts with", "SUID" : 32158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32154", "source" : "4169", "target" : "1809", "shared_name" : "10993 (interacts with) 6548", "name" : "10993 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 32154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32150", "source" : "4169", "target" : "2925", "shared_name" : "10993 (interacts with) 8802", "name" : "10993 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 32150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32146", "source" : "4169", "target" : "3425", "shared_name" : "10993 (interacts with) 8803", "name" : "10993 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 32146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32142", "source" : "4169", "target" : "5049", "shared_name" : "10993 (interacts with) 6697", "name" : "10993 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 32142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32138", "source" : "4169", "target" : "2321", "shared_name" : "10993 (interacts with) 6509", "name" : "10993 (interacts with) 6509", "interaction" : "interacts with", "SUID" : 32138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32134", "source" : "4169", "target" : "1681", "shared_name" : "10993 (interacts with) 9990", "name" : "10993 (interacts with) 9990", "interaction" : "interacts with", "SUID" : 32134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32130", "source" : "4169", "target" : "1385", "shared_name" : "10993 (interacts with) 6520", "name" : "10993 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 32130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32126", "source" : "4169", "target" : "829", "shared_name" : "10993 (interacts with) 8772", "name" : "10993 (interacts with) 8772", "interaction" : "interacts with", "SUID" : 32126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32266", "source" : "4165", "target" : "2641", "shared_name" : "3119 (interacts with) 3123", "name" : "3119 (interacts with) 3123", "interaction" : "interacts with", "SUID" : 32266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32262", "source" : "4165", "target" : "1741", "shared_name" : "3119 (interacts with) 5133", "name" : "3119 (interacts with) 5133", "interaction" : "interacts with", "SUID" : 32262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32258", "source" : "4165", "target" : "1589", "shared_name" : "3119 (interacts with) 22872", "name" : "3119 (interacts with) 22872", "interaction" : "interacts with", "SUID" : 32258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32254", "source" : "4165", "target" : "3637", "shared_name" : "3119 (interacts with) 6712", "name" : "3119 (interacts with) 6712", "interaction" : "interacts with", "SUID" : 32254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32250", "source" : "4165", "target" : "1373", "shared_name" : "3119 (interacts with) 7879", "name" : "3119 (interacts with) 7879", "interaction" : "interacts with", "SUID" : 32250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32246", "source" : "4165", "target" : "1701", "shared_name" : "3119 (interacts with) 5777", "name" : "3119 (interacts with) 5777", "interaction" : "interacts with", "SUID" : 32246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32242", "source" : "4165", "target" : "4657", "shared_name" : "3119 (interacts with) 64837", "name" : "3119 (interacts with) 64837", "interaction" : "interacts with", "SUID" : 32242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32238", "source" : "4165", "target" : "4985", "shared_name" : "3119 (interacts with) 3798", "name" : "3119 (interacts with) 3798", "interaction" : "interacts with", "SUID" : 32238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32234", "source" : "4165", "target" : "4269", "shared_name" : "3119 (interacts with) 3832", "name" : "3119 (interacts with) 3832", "interaction" : "interacts with", "SUID" : 32234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32230", "source" : "4165", "target" : "2689", "shared_name" : "3119 (interacts with) 4715", "name" : "3119 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 32230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32286", "source" : "4161", "target" : "4981", "shared_name" : "4318 (interacts with) 6774", "name" : "4318 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 32286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32282", "source" : "4161", "target" : "4781", "shared_name" : "4318 (interacts with) 80781", "name" : "4318 (interacts with) 80781", "interaction" : "interacts with", "SUID" : 32282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32278", "source" : "4161", "target" : "4785", "shared_name" : "4318 (interacts with) 1282", "name" : "4318 (interacts with) 1282", "interaction" : "interacts with", "SUID" : 32278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32274", "source" : "4161", "target" : "4789", "shared_name" : "4318 (interacts with) 1284", "name" : "4318 (interacts with) 1284", "interaction" : "interacts with", "SUID" : 32274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32270", "source" : "4161", "target" : "809", "shared_name" : "4318 (interacts with) 2335", "name" : "4318 (interacts with) 2335", "interaction" : "interacts with", "SUID" : 32270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32306", "source" : "4157", "target" : "2969", "shared_name" : "85021 (interacts with) 8867", "name" : "85021 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 32306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32302", "source" : "4157", "target" : "5785", "shared_name" : "85021 (interacts with) 6857", "name" : "85021 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 32302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32298", "source" : "4157", "target" : "4393", "shared_name" : "85021 (interacts with) 950", "name" : "85021 (interacts with) 950", "interaction" : "interacts with", "SUID" : 32298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32294", "source" : "4157", "target" : "5021", "shared_name" : "85021 (interacts with) 10617", "name" : "85021 (interacts with) 10617", "interaction" : "interacts with", "SUID" : 32294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32290", "source" : "4157", "target" : "1717", "shared_name" : "85021 (interacts with) 51693", "name" : "85021 (interacts with) 51693", "interaction" : "interacts with", "SUID" : 32290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32330", "source" : "4153", "target" : "5929", "shared_name" : "2566 (interacts with) 6616", "name" : "2566 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 32330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32326", "source" : "4153", "target" : "4873", "shared_name" : "2566 (interacts with) 4644", "name" : "2566 (interacts with) 4644", "interaction" : "interacts with", "SUID" : 32326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32322", "source" : "4153", "target" : "3781", "shared_name" : "2566 (interacts with) 9152", "name" : "2566 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 32322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32318", "source" : "4153", "target" : "401", "shared_name" : "2566 (interacts with) 6532", "name" : "2566 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 32318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32314", "source" : "4153", "target" : "309", "shared_name" : "2566 (interacts with) 6536", "name" : "2566 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 32314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32310", "source" : "4153", "target" : "5373", "shared_name" : "2566 (interacts with) 28962", "name" : "2566 (interacts with) 28962", "interaction" : "interacts with", "SUID" : 32310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32382", "source" : "4149", "target" : "2525", "shared_name" : "8893 (interacts with) 9451", "name" : "8893 (interacts with) 9451", "interaction" : "interacts with", "SUID" : 32382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32378", "source" : "4149", "target" : "2781", "shared_name" : "8893 (interacts with) 1968", "name" : "8893 (interacts with) 1968", "interaction" : "interacts with", "SUID" : 32378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32374", "source" : "4149", "target" : "2793", "shared_name" : "8893 (interacts with) 8894", "name" : "8893 (interacts with) 8894", "interaction" : "interacts with", "SUID" : 32374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32370", "source" : "4149", "target" : "4877", "shared_name" : "8893 (interacts with) 1965", "name" : "8893 (interacts with) 1965", "interaction" : "interacts with", "SUID" : 32370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32366", "source" : "4149", "target" : "4873", "shared_name" : "8893 (interacts with) 4644", "name" : "8893 (interacts with) 4644", "interaction" : "interacts with", "SUID" : 32366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32362", "source" : "4149", "target" : "2633", "shared_name" : "8893 (interacts with) 29926", "name" : "8893 (interacts with) 29926", "interaction" : "interacts with", "SUID" : 32362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32358", "source" : "4149", "target" : "2541", "shared_name" : "8893 (interacts with) 56704", "name" : "8893 (interacts with) 56704", "interaction" : "interacts with", "SUID" : 32358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32354", "source" : "4149", "target" : "5865", "shared_name" : "8893 (interacts with) 5192", "name" : "8893 (interacts with) 5192", "interaction" : "interacts with", "SUID" : 32354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32350", "source" : "4149", "target" : "841", "shared_name" : "8893 (interacts with) 8890", "name" : "8893 (interacts with) 8890", "interaction" : "interacts with", "SUID" : 32350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32346", "source" : "4149", "target" : "4837", "shared_name" : "8893 (interacts with) 8891", "name" : "8893 (interacts with) 8891", "interaction" : "interacts with", "SUID" : 32346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32342", "source" : "4149", "target" : "5489", "shared_name" : "8893 (interacts with) 2259", "name" : "8893 (interacts with) 2259", "interaction" : "interacts with", "SUID" : 32342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32338", "source" : "4149", "target" : "669", "shared_name" : "8893 (interacts with) 259266", "name" : "8893 (interacts with) 259266", "interaction" : "interacts with", "SUID" : 32338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32334", "source" : "4149", "target" : "1501", "shared_name" : "8893 (interacts with) 55870", "name" : "8893 (interacts with) 55870", "interaction" : "interacts with", "SUID" : 32334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32414", "source" : "4145", "target" : "4209", "shared_name" : "120892 (interacts with) 4915", "name" : "120892 (interacts with) 4915", "interaction" : "interacts with", "SUID" : 32414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32410", "source" : "4145", "target" : "4901", "shared_name" : "120892 (interacts with) 22983", "name" : "120892 (interacts with) 22983", "interaction" : "interacts with", "SUID" : 32410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32406", "source" : "4145", "target" : "3245", "shared_name" : "120892 (interacts with) 1760", "name" : "120892 (interacts with) 1760", "interaction" : "interacts with", "SUID" : 32406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32402", "source" : "4145", "target" : "6141", "shared_name" : "120892 (interacts with) 6792", "name" : "120892 (interacts with) 6792", "interaction" : "interacts with", "SUID" : 32402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32398", "source" : "4145", "target" : "5577", "shared_name" : "120892 (interacts with) 3091", "name" : "120892 (interacts with) 3091", "interaction" : "interacts with", "SUID" : 32398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32394", "source" : "4145", "target" : "761", "shared_name" : "120892 (interacts with) 5891", "name" : "120892 (interacts with) 5891", "interaction" : "interacts with", "SUID" : 32394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32390", "source" : "4145", "target" : "1245", "shared_name" : "120892 (interacts with) 4137", "name" : "120892 (interacts with) 4137", "interaction" : "interacts with", "SUID" : 32390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32386", "source" : "4145", "target" : "4013", "shared_name" : "120892 (interacts with) 6622", "name" : "120892 (interacts with) 6622", "interaction" : "interacts with", "SUID" : 32386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32486", "source" : "4141", "target" : "6181", "shared_name" : "617 (interacts with) 84987", "name" : "617 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 32486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32482", "source" : "4141", "target" : "889", "shared_name" : "617 (interacts with) 80224", "name" : "617 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 32482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32478", "source" : "4141", "target" : "1085", "shared_name" : "617 (interacts with) 9377", "name" : "617 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 32478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32474", "source" : "4141", "target" : "3705", "shared_name" : "617 (interacts with) 87178", "name" : "617 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 32474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32470", "source" : "4141", "target" : "1053", "shared_name" : "617 (interacts with) 81689", "name" : "617 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 32470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32466", "source" : "4141", "target" : "1669", "shared_name" : "617 (interacts with) 6390", "name" : "617 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 32466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32462", "source" : "4141", "target" : "4409", "shared_name" : "617 (interacts with) 6341", "name" : "617 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 32462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32458", "source" : "4141", "target" : "501", "shared_name" : "617 (interacts with) 65993", "name" : "617 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 32458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32454", "source" : "4141", "target" : "1197", "shared_name" : "617 (interacts with) 79587", "name" : "617 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 32454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32450", "source" : "4141", "target" : "5737", "shared_name" : "617 (interacts with) 84340", "name" : "617 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 32450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32446", "source" : "4141", "target" : "2009", "shared_name" : "617 (interacts with) 79133", "name" : "617 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 32446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32442", "source" : "4141", "target" : "721", "shared_name" : "617 (interacts with) 79731", "name" : "617 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 32442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32438", "source" : "4141", "target" : "713", "shared_name" : "617 (interacts with) 7019", "name" : "617 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 32438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32434", "source" : "4141", "target" : "521", "shared_name" : "617 (interacts with) 85476", "name" : "617 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 32434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32430", "source" : "4141", "target" : "6073", "shared_name" : "617 (interacts with) 92170", "name" : "617 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 32430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32426", "source" : "4141", "target" : "4869", "shared_name" : "617 (interacts with) 92935", "name" : "617 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 32426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32422", "source" : "4141", "target" : "4101", "shared_name" : "617 (interacts with) 65260", "name" : "617 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 32422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32418", "source" : "4141", "target" : "4757", "shared_name" : "617 (interacts with) 9997", "name" : "617 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 32418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32618", "source" : "4133", "target" : "2353", "shared_name" : "427 (interacts with) 5264", "name" : "427 (interacts with) 5264", "interaction" : "interacts with", "SUID" : 32618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32614", "source" : "4133", "target" : "4213", "shared_name" : "427 (interacts with) 5295", "name" : "427 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 32614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32610", "source" : "4133", "target" : "5225", "shared_name" : "427 (interacts with) 5290", "name" : "427 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 32610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32606", "source" : "4133", "target" : "5081", "shared_name" : "427 (interacts with) 5594", "name" : "427 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 32606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32602", "source" : "4133", "target" : "973", "shared_name" : "427 (interacts with) 5595", "name" : "427 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 32602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32598", "source" : "4133", "target" : "5073", "shared_name" : "427 (interacts with) 7305", "name" : "427 (interacts with) 7305", "interaction" : "interacts with", "SUID" : 32598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32594", "source" : "4133", "target" : "3025", "shared_name" : "427 (interacts with) 55627", "name" : "427 (interacts with) 55627", "interaction" : "interacts with", "SUID" : 32594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32590", "source" : "4133", "target" : "1069", "shared_name" : "427 (interacts with) 5879", "name" : "427 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 32590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32586", "source" : "4133", "target" : "5305", "shared_name" : "427 (interacts with) 6901", "name" : "427 (interacts with) 6901", "interaction" : "interacts with", "SUID" : 32586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32582", "source" : "4133", "target" : "4293", "shared_name" : "427 (interacts with) 5156", "name" : "427 (interacts with) 5156", "interaction" : "interacts with", "SUID" : 32582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32578", "source" : "4133", "target" : "681", "shared_name" : "427 (interacts with) 6646", "name" : "427 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 32578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32574", "source" : "4133", "target" : "409", "shared_name" : "427 (interacts with) 10558", "name" : "427 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 32574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32570", "source" : "4133", "target" : "3425", "shared_name" : "427 (interacts with) 8803", "name" : "427 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 32570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32566", "source" : "4133", "target" : "2925", "shared_name" : "427 (interacts with) 8802", "name" : "427 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 32566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32562", "source" : "4133", "target" : "3893", "shared_name" : "427 (interacts with) 151056", "name" : "427 (interacts with) 151056", "interaction" : "interacts with", "SUID" : 32562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32558", "source" : "4133", "target" : "3461", "shared_name" : "427 (interacts with) 5538", "name" : "427 (interacts with) 5538", "interaction" : "interacts with", "SUID" : 32558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32554", "source" : "4133", "target" : "4941", "shared_name" : "427 (interacts with) 6342", "name" : "427 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 32554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32550", "source" : "4133", "target" : "3177", "shared_name" : "427 (interacts with) 5321", "name" : "427 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 32550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32546", "source" : "4133", "target" : "2853", "shared_name" : "427 (interacts with) 8398", "name" : "427 (interacts with) 8398", "interaction" : "interacts with", "SUID" : 32546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32542", "source" : "4133", "target" : "385", "shared_name" : "427 (interacts with) 5319", "name" : "427 (interacts with) 5319", "interaction" : "interacts with", "SUID" : 32542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32538", "source" : "4133", "target" : "3421", "shared_name" : "427 (interacts with) 4967", "name" : "427 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 32538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32534", "source" : "4133", "target" : "1277", "shared_name" : "427 (interacts with) 79143", "name" : "427 (interacts with) 79143", "interaction" : "interacts with", "SUID" : 32534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32530", "source" : "4133", "target" : "1673", "shared_name" : "427 (interacts with) 138050", "name" : "427 (interacts with) 138050", "interaction" : "interacts with", "SUID" : 32530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32526", "source" : "4133", "target" : "1849", "shared_name" : "427 (interacts with) 26275", "name" : "427 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 32526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32522", "source" : "4133", "target" : "901", "shared_name" : "427 (interacts with) 8560", "name" : "427 (interacts with) 8560", "interaction" : "interacts with", "SUID" : 32522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32518", "source" : "4133", "target" : "2897", "shared_name" : "427 (interacts with) 1737", "name" : "427 (interacts with) 1737", "interaction" : "interacts with", "SUID" : 32518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32514", "source" : "4133", "target" : "1489", "shared_name" : "427 (interacts with) 1738", "name" : "427 (interacts with) 1738", "interaction" : "interacts with", "SUID" : 32514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32510", "source" : "4133", "target" : "5753", "shared_name" : "427 (interacts with) 2581", "name" : "427 (interacts with) 2581", "interaction" : "interacts with", "SUID" : 32510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32506", "source" : "4133", "target" : "6165", "shared_name" : "427 (interacts with) 2629", "name" : "427 (interacts with) 2629", "interaction" : "interacts with", "SUID" : 32506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32502", "source" : "4133", "target" : "425", "shared_name" : "427 (interacts with) 1103", "name" : "427 (interacts with) 1103", "interaction" : "interacts with", "SUID" : 32502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32498", "source" : "4133", "target" : "1585", "shared_name" : "427 (interacts with) 80347", "name" : "427 (interacts with) 80347", "interaction" : "interacts with", "SUID" : 32498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32494", "source" : "4133", "target" : "5909", "shared_name" : "427 (interacts with) 1374", "name" : "427 (interacts with) 1374", "interaction" : "interacts with", "SUID" : 32494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32490", "source" : "4133", "target" : "801", "shared_name" : "427 (interacts with) 1376", "name" : "427 (interacts with) 1376", "interaction" : "interacts with", "SUID" : 32490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32622", "source" : "4113", "target" : "3257", "shared_name" : "60528 (interacts with) 80746", "name" : "60528 (interacts with) 80746", "interaction" : "interacts with", "SUID" : 32622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32654", "source" : "4105", "target" : "5773", "shared_name" : "347733 (interacts with) 9181", "name" : "347733 (interacts with) 9181", "interaction" : "interacts with", "SUID" : 32654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32650", "source" : "4105", "target" : "2693", "shared_name" : "347733 (interacts with) 5375", "name" : "347733 (interacts with) 5375", "interaction" : "interacts with", "SUID" : 32650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32646", "source" : "4105", "target" : "1721", "shared_name" : "347733 (interacts with) 51807", "name" : "347733 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 32646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32642", "source" : "4105", "target" : "5277", "shared_name" : "347733 (interacts with) 55154", "name" : "347733 (interacts with) 55154", "interaction" : "interacts with", "SUID" : 32642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32638", "source" : "4105", "target" : "4513", "shared_name" : "347733 (interacts with) 6904", "name" : "347733 (interacts with) 6904", "interaction" : "interacts with", "SUID" : 32638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32634", "source" : "4105", "target" : "4049", "shared_name" : "347733 (interacts with) 27436", "name" : "347733 (interacts with) 27436", "interaction" : "interacts with", "SUID" : 32634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32630", "source" : "4105", "target" : "613", "shared_name" : "347733 (interacts with) 10381", "name" : "347733 (interacts with) 10381", "interaction" : "interacts with", "SUID" : 32630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32626", "source" : "4105", "target" : "5373", "shared_name" : "347733 (interacts with) 28962", "name" : "347733 (interacts with) 28962", "interaction" : "interacts with", "SUID" : 32626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32718", "source" : "4101", "target" : "5341", "shared_name" : "65260 (interacts with) 91647", "name" : "65260 (interacts with) 91647", "interaction" : "interacts with", "SUID" : 32718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32714", "source" : "4101", "target" : "6181", "shared_name" : "65260 (interacts with) 84987", "name" : "65260 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 32714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32710", "source" : "4101", "target" : "1085", "shared_name" : "65260 (interacts with) 9377", "name" : "65260 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 32710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32706", "source" : "4101", "target" : "3705", "shared_name" : "65260 (interacts with) 87178", "name" : "65260 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 32706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32702", "source" : "4101", "target" : "3545", "shared_name" : "65260 (interacts with) 708", "name" : "65260 (interacts with) 708", "interaction" : "interacts with", "SUID" : 32702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32698", "source" : "4101", "target" : "521", "shared_name" : "65260 (interacts with) 85476", "name" : "65260 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 32698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32694", "source" : "4101", "target" : "721", "shared_name" : "65260 (interacts with) 79731", "name" : "65260 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 32694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32690", "source" : "4101", "target" : "889", "shared_name" : "65260 (interacts with) 80224", "name" : "65260 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 32690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32686", "source" : "4101", "target" : "501", "shared_name" : "65260 (interacts with) 65993", "name" : "65260 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 32686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32682", "source" : "4101", "target" : "5737", "shared_name" : "65260 (interacts with) 84340", "name" : "65260 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 32682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32678", "source" : "4101", "target" : "2009", "shared_name" : "65260 (interacts with) 79133", "name" : "65260 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 32678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32674", "source" : "4101", "target" : "713", "shared_name" : "65260 (interacts with) 7019", "name" : "65260 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 32674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32670", "source" : "4101", "target" : "6073", "shared_name" : "65260 (interacts with) 92170", "name" : "65260 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 32670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32666", "source" : "4101", "target" : "4869", "shared_name" : "65260 (interacts with) 92935", "name" : "65260 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 32666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32662", "source" : "4101", "target" : "4757", "shared_name" : "65260 (interacts with) 9997", "name" : "65260 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 32662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32658", "source" : "4101", "target" : "1197", "shared_name" : "65260 (interacts with) 79587", "name" : "65260 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 32658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32786", "source" : "4097", "target" : "1097", "shared_name" : "9611 (interacts with) 79718", "name" : "9611 (interacts with) 79718", "interaction" : "interacts with", "SUID" : 32786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32782", "source" : "4097", "target" : "2077", "shared_name" : "9611 (interacts with) 7528", "name" : "9611 (interacts with) 7528", "interaction" : "interacts with", "SUID" : 32782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32778", "source" : "4097", "target" : "5061", "shared_name" : "9611 (interacts with) 6285", "name" : "9611 (interacts with) 6285", "interaction" : "interacts with", "SUID" : 32778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32774", "source" : "4097", "target" : "5673", "shared_name" : "9611 (interacts with) 6497", "name" : "9611 (interacts with) 6497", "interaction" : "interacts with", "SUID" : 32774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32770", "source" : "4097", "target" : "4533", "shared_name" : "9611 (interacts with) 4089", "name" : "9611 (interacts with) 4089", "interaction" : "interacts with", "SUID" : 32770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32766", "source" : "4097", "target" : "6169", "shared_name" : "9611 (interacts with) 4088", "name" : "9611 (interacts with) 4088", "interaction" : "interacts with", "SUID" : 32766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32762", "source" : "4097", "target" : "5473", "shared_name" : "9611 (interacts with) 6095", "name" : "9611 (interacts with) 6095", "interaction" : "interacts with", "SUID" : 32762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32758", "source" : "4097", "target" : "5009", "shared_name" : "9611 (interacts with) 5241", "name" : "9611 (interacts with) 5241", "interaction" : "interacts with", "SUID" : 32758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32754", "source" : "4097", "target" : "1813", "shared_name" : "9611 (interacts with) 7703", "name" : "9611 (interacts with) 7703", "interaction" : "interacts with", "SUID" : 32754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32750", "source" : "4097", "target" : "3825", "shared_name" : "9611 (interacts with) 5915", "name" : "9611 (interacts with) 5915", "interaction" : "interacts with", "SUID" : 32750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32746", "source" : "4097", "target" : "1293", "shared_name" : "9611 (interacts with) 2908", "name" : "9611 (interacts with) 2908", "interaction" : "interacts with", "SUID" : 32746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32742", "source" : "4097", "target" : "5729", "shared_name" : "9611 (interacts with) 861", "name" : "9611 (interacts with) 861", "interaction" : "interacts with", "SUID" : 32742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32738", "source" : "4097", "target" : "5941", "shared_name" : "9611 (interacts with) 5914", "name" : "9611 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 32738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32734", "source" : "4097", "target" : "1829", "shared_name" : "9611 (interacts with) 7421", "name" : "9611 (interacts with) 7421", "interaction" : "interacts with", "SUID" : 32734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32730", "source" : "4097", "target" : "2957", "shared_name" : "9611 (interacts with) 5465", "name" : "9611 (interacts with) 5465", "interaction" : "interacts with", "SUID" : 32730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32726", "source" : "4097", "target" : "3417", "shared_name" : "9611 (interacts with) 5371", "name" : "9611 (interacts with) 5371", "interaction" : "interacts with", "SUID" : 32726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32722", "source" : "4097", "target" : "3205", "shared_name" : "9611 (interacts with) 862", "name" : "9611 (interacts with) 862", "interaction" : "interacts with", "SUID" : 32722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32942", "source" : "4093", "target" : "1189", "shared_name" : "2752 (interacts with) 7915", "name" : "2752 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 32942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32938", "source" : "4093", "target" : "1981", "shared_name" : "2752 (interacts with) 339983", "name" : "2752 (interacts with) 339983", "interaction" : "interacts with", "SUID" : 32938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32934", "source" : "4093", "target" : "4737", "shared_name" : "2752 (interacts with) 445", "name" : "2752 (interacts with) 445", "interaction" : "interacts with", "SUID" : 32934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32930", "source" : "4093", "target" : "397", "shared_name" : "2752 (interacts with) 50", "name" : "2752 (interacts with) 50", "interaction" : "interacts with", "SUID" : 32930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32926", "source" : "4093", "target" : "3237", "shared_name" : "2752 (interacts with) 95", "name" : "2752 (interacts with) 95", "interaction" : "interacts with", "SUID" : 32926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32922", "source" : "4093", "target" : "1341", "shared_name" : "2752 (interacts with) 5009", "name" : "2752 (interacts with) 5009", "interaction" : "interacts with", "SUID" : 32922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32918", "source" : "4093", "target" : "4045", "shared_name" : "2752 (interacts with) 29920", "name" : "2752 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 32918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32914", "source" : "4093", "target" : "2769", "shared_name" : "2752 (interacts with) 767", "name" : "2752 (interacts with) 767", "interaction" : "interacts with", "SUID" : 32914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32910", "source" : "4093", "target" : "5349", "shared_name" : "2752 (interacts with) 440", "name" : "2752 (interacts with) 440", "interaction" : "interacts with", "SUID" : 32910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32906", "source" : "4093", "target" : "1461", "shared_name" : "2752 (interacts with) 5832", "name" : "2752 (interacts with) 5832", "interaction" : "interacts with", "SUID" : 32906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32902", "source" : "4093", "target" : "3501", "shared_name" : "2752 (interacts with) 5831", "name" : "2752 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 32902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32898", "source" : "4093", "target" : "1013", "shared_name" : "2752 (interacts with) 6898", "name" : "2752 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 32898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32894", "source" : "4093", "target" : "413", "shared_name" : "2752 (interacts with) 51733", "name" : "2752 (interacts with) 51733", "interaction" : "interacts with", "SUID" : 32894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32890", "source" : "4093", "target" : "4253", "shared_name" : "2752 (interacts with) 84706", "name" : "2752 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 32890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32886", "source" : "4093", "target" : "5529", "shared_name" : "2752 (interacts with) 2875", "name" : "2752 (interacts with) 2875", "interaction" : "interacts with", "SUID" : 32886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32882", "source" : "4093", "target" : "2177", "shared_name" : "2752 (interacts with) 443", "name" : "2752 (interacts with) 443", "interaction" : "interacts with", "SUID" : 32882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32878", "source" : "4093", "target" : "3077", "shared_name" : "2752 (interacts with) 6506", "name" : "2752 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 32878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32874", "source" : "4093", "target" : "2005", "shared_name" : "2752 (interacts with) 4846", "name" : "2752 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 32874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32870", "source" : "4093", "target" : "461", "shared_name" : "2752 (interacts with) 5198", "name" : "2752 (interacts with) 5198", "interaction" : "interacts with", "SUID" : 32870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32866", "source" : "4093", "target" : "4185", "shared_name" : "2752 (interacts with) 29968", "name" : "2752 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 32866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32862", "source" : "4093", "target" : "6089", "shared_name" : "2752 (interacts with) 3145", "name" : "2752 (interacts with) 3145", "interaction" : "interacts with", "SUID" : 32862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32858", "source" : "4093", "target" : "2161", "shared_name" : "2752 (interacts with) 55163", "name" : "2752 (interacts with) 55163", "interaction" : "interacts with", "SUID" : 32858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32854", "source" : "4093", "target" : "1089", "shared_name" : "2752 (interacts with) 5917", "name" : "2752 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 32854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32850", "source" : "4093", "target" : "1809", "shared_name" : "2752 (interacts with) 6548", "name" : "2752 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 32850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32846", "source" : "4093", "target" : "4597", "shared_name" : "2752 (interacts with) 3376", "name" : "2752 (interacts with) 3376", "interaction" : "interacts with", "SUID" : 32846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32842", "source" : "4093", "target" : "6157", "shared_name" : "2752 (interacts with) 3735", "name" : "2752 (interacts with) 3735", "interaction" : "interacts with", "SUID" : 32842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32838", "source" : "4093", "target" : "3649", "shared_name" : "2752 (interacts with) 51520", "name" : "2752 (interacts with) 51520", "interaction" : "interacts with", "SUID" : 32838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32834", "source" : "4093", "target" : "3641", "shared_name" : "2752 (interacts with) 4141", "name" : "2752 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 32834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32830", "source" : "4093", "target" : "2721", "shared_name" : "2752 (interacts with) 79751", "name" : "2752 (interacts with) 79751", "interaction" : "interacts with", "SUID" : 32830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32826", "source" : "4093", "target" : "1385", "shared_name" : "2752 (interacts with) 6520", "name" : "2752 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 32826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32822", "source" : "4093", "target" : "1681", "shared_name" : "2752 (interacts with) 9990", "name" : "2752 (interacts with) 9990", "interaction" : "interacts with", "SUID" : 32822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32818", "source" : "4093", "target" : "2321", "shared_name" : "2752 (interacts with) 6509", "name" : "2752 (interacts with) 6509", "interaction" : "interacts with", "SUID" : 32818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32814", "source" : "4093", "target" : "1885", "shared_name" : "2752 (interacts with) 8604", "name" : "2752 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 32814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32810", "source" : "4093", "target" : "1849", "shared_name" : "2752 (interacts with) 26275", "name" : "2752 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 32810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32806", "source" : "4093", "target" : "5017", "shared_name" : "2752 (interacts with) 3417", "name" : "2752 (interacts with) 3417", "interaction" : "interacts with", "SUID" : 32806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32802", "source" : "4093", "target" : "1133", "shared_name" : "2752 (interacts with) 3418", "name" : "2752 (interacts with) 3418", "interaction" : "interacts with", "SUID" : 32802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32798", "source" : "4093", "target" : "4169", "shared_name" : "2752 (interacts with) 10993", "name" : "2752 (interacts with) 10993", "interaction" : "interacts with", "SUID" : 32798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32794", "source" : "4093", "target" : "5525", "shared_name" : "2752 (interacts with) 84260", "name" : "2752 (interacts with) 84260", "interaction" : "interacts with", "SUID" : 32794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32790", "source" : "4093", "target" : "2601", "shared_name" : "2752 (interacts with) 23312", "name" : "2752 (interacts with) 23312", "interaction" : "interacts with", "SUID" : 32790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32946", "source" : "4089", "target" : "6005", "shared_name" : "5173 (interacts with) 4988", "name" : "5173 (interacts with) 4988", "interaction" : "interacts with", "SUID" : 32946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33006", "source" : "4085", "target" : "4693", "shared_name" : "55699 (interacts with) 6301", "name" : "55699 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 33006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33002", "source" : "4085", "target" : "1581", "shared_name" : "55699 (interacts with) 7407", "name" : "55699 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 33002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32998", "source" : "4085", "target" : "3037", "shared_name" : "55699 (interacts with) 8813", "name" : "55699 (interacts with) 8813", "interaction" : "interacts with", "SUID" : 32998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32994", "source" : "4085", "target" : "5189", "shared_name" : "55699 (interacts with) 57176", "name" : "55699 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 32994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32990", "source" : "4085", "target" : "1129", "shared_name" : "55699 (interacts with) 57505", "name" : "55699 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 32990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32986", "source" : "4085", "target" : "1089", "shared_name" : "55699 (interacts with) 5917", "name" : "55699 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 32986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32982", "source" : "4085", "target" : "4349", "shared_name" : "55699 (interacts with) 5859", "name" : "55699 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 32982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32978", "source" : "4085", "target" : "4621", "shared_name" : "55699 (interacts with) 57038", "name" : "55699 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 32978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32974", "source" : "4085", "target" : "4869", "shared_name" : "55699 (interacts with) 92935", "name" : "55699 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 32974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32970", "source" : "4085", "target" : "1197", "shared_name" : "55699 (interacts with) 79587", "name" : "55699 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 32970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32966", "source" : "4085", "target" : "721", "shared_name" : "55699 (interacts with) 79731", "name" : "55699 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 32966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32962", "source" : "4085", "target" : "741", "shared_name" : "55699 (interacts with) 4830", "name" : "55699 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 32962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32958", "source" : "4085", "target" : "5605", "shared_name" : "55699 (interacts with) 51601", "name" : "55699 (interacts with) 51601", "interaction" : "interacts with", "SUID" : 32958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32954", "source" : "4085", "target" : "4501", "shared_name" : "55699 (interacts with) 25821", "name" : "55699 (interacts with) 25821", "interaction" : "interacts with", "SUID" : 32954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "32950", "source" : "4085", "target" : "669", "shared_name" : "55699 (interacts with) 259266", "name" : "55699 (interacts with) 259266", "interaction" : "interacts with", "SUID" : 32950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33034", "source" : "4081", "target" : "3889", "shared_name" : "148789 (interacts with) 1605", "name" : "148789 (interacts with) 1605", "interaction" : "interacts with", "SUID" : 33034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33030", "source" : "4081", "target" : "4741", "shared_name" : "148789 (interacts with) 79147", "name" : "148789 (interacts with) 79147", "interaction" : "interacts with", "SUID" : 33030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33026", "source" : "4081", "target" : "4685", "shared_name" : "148789 (interacts with) 2218", "name" : "148789 (interacts with) 2218", "interaction" : "interacts with", "SUID" : 33026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33022", "source" : "4081", "target" : "4337", "shared_name" : "148789 (interacts with) 84197", "name" : "148789 (interacts with) 84197", "interaction" : "interacts with", "SUID" : 33022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33018", "source" : "4081", "target" : "6137", "shared_name" : "148789 (interacts with) 29954", "name" : "148789 (interacts with) 29954", "interaction" : "interacts with", "SUID" : 33018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33014", "source" : "4081", "target" : "4481", "shared_name" : "148789 (interacts with) 55624", "name" : "148789 (interacts with) 55624", "interaction" : "interacts with", "SUID" : 33014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33010", "source" : "4081", "target" : "1033", "shared_name" : "148789 (interacts with) 9215", "name" : "148789 (interacts with) 9215", "interaction" : "interacts with", "SUID" : 33010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33082", "source" : "4077", "target" : "997", "shared_name" : "71 (interacts with) 7431", "name" : "71 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 33082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33078", "source" : "4077", "target" : "1201", "shared_name" : "71 (interacts with) 805", "name" : "71 (interacts with) 805", "interaction" : "interacts with", "SUID" : 33078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33074", "source" : "4077", "target" : "4065", "shared_name" : "71 (interacts with) 7124", "name" : "71 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 33074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33070", "source" : "4077", "target" : "829", "shared_name" : "71 (interacts with) 8772", "name" : "71 (interacts with) 8772", "interaction" : "interacts with", "SUID" : 33070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33066", "source" : "4077", "target" : "1845", "shared_name" : "71 (interacts with) 836", "name" : "71 (interacts with) 836", "interaction" : "interacts with", "SUID" : 33066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33062", "source" : "4077", "target" : "4769", "shared_name" : "71 (interacts with) 7132", "name" : "71 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 33062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33058", "source" : "4077", "target" : "3021", "shared_name" : "71 (interacts with) 84823", "name" : "71 (interacts with) 84823", "interaction" : "interacts with", "SUID" : 33058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33054", "source" : "4077", "target" : "705", "shared_name" : "71 (interacts with) 728378", "name" : "71 (interacts with) 728378", "interaction" : "interacts with", "SUID" : 33054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33050", "source" : "4077", "target" : "4729", "shared_name" : "71 (interacts with) 5216", "name" : "71 (interacts with) 5216", "interaction" : "interacts with", "SUID" : 33050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33046", "source" : "4077", "target" : "1069", "shared_name" : "71 (interacts with) 5879", "name" : "71 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 33046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33042", "source" : "4077", "target" : "1405", "shared_name" : "71 (interacts with) 998", "name" : "71 (interacts with) 998", "interaction" : "interacts with", "SUID" : 33042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33038", "source" : "4077", "target" : "6021", "shared_name" : "71 (interacts with) 26999", "name" : "71 (interacts with) 26999", "interaction" : "interacts with", "SUID" : 33038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33222", "source" : "4073", "target" : "2813", "shared_name" : "29760 (interacts with) 5079", "name" : "29760 (interacts with) 5079", "interaction" : "interacts with", "SUID" : 33222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33218", "source" : "4073", "target" : "2389", "shared_name" : "29760 (interacts with) 6925", "name" : "29760 (interacts with) 6925", "interaction" : "interacts with", "SUID" : 33218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33214", "source" : "4073", "target" : "417", "shared_name" : "29760 (interacts with) 6689", "name" : "29760 (interacts with) 6689", "interaction" : "interacts with", "SUID" : 33214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33210", "source" : "4073", "target" : "5761", "shared_name" : "29760 (interacts with) 4208", "name" : "29760 (interacts with) 4208", "interaction" : "interacts with", "SUID" : 33210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33206", "source" : "4073", "target" : "3109", "shared_name" : "29760 (interacts with) 5450", "name" : "29760 (interacts with) 5450", "interaction" : "interacts with", "SUID" : 33206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33202", "source" : "4073", "target" : "1861", "shared_name" : "29760 (interacts with) 3708", "name" : "29760 (interacts with) 3708", "interaction" : "interacts with", "SUID" : 33202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33198", "source" : "4073", "target" : "3853", "shared_name" : "29760 (interacts with) 6786", "name" : "29760 (interacts with) 6786", "interaction" : "interacts with", "SUID" : 33198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33194", "source" : "4073", "target" : "5073", "shared_name" : "29760 (interacts with) 7305", "name" : "29760 (interacts with) 7305", "interaction" : "interacts with", "SUID" : 33194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33190", "source" : "4073", "target" : "725", "shared_name" : "29760 (interacts with) 54209", "name" : "29760 (interacts with) 54209", "interaction" : "interacts with", "SUID" : 33190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33186", "source" : "4073", "target" : "637", "shared_name" : "29760 (interacts with) 6654", "name" : "29760 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 33186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33182", "source" : "4073", "target" : "2969", "shared_name" : "29760 (interacts with) 8867", "name" : "29760 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 33182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33178", "source" : "4073", "target" : "1069", "shared_name" : "29760 (interacts with) 5879", "name" : "29760 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 33178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33174", "source" : "4073", "target" : "817", "shared_name" : "29760 (interacts with) 5728", "name" : "29760 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 33174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33170", "source" : "4073", "target" : "6101", "shared_name" : "29760 (interacts with) 5582", "name" : "29760 (interacts with) 5582", "interaction" : "interacts with", "SUID" : 33170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33166", "source" : "4073", "target" : "3465", "shared_name" : "29760 (interacts with) 5296", "name" : "29760 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 33166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33162", "source" : "4073", "target" : "5225", "shared_name" : "29760 (interacts with) 5290", "name" : "29760 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 33162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33158", "source" : "4073", "target" : "4213", "shared_name" : "29760 (interacts with) 5295", "name" : "29760 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 33158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33154", "source" : "4073", "target" : "4293", "shared_name" : "29760 (interacts with) 5156", "name" : "29760 (interacts with) 5156", "interaction" : "interacts with", "SUID" : 33154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33150", "source" : "4073", "target" : "2173", "shared_name" : "29760 (interacts with) 5159", "name" : "29760 (interacts with) 5159", "interaction" : "interacts with", "SUID" : 33150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33146", "source" : "4073", "target" : "2429", "shared_name" : "29760 (interacts with) 4952", "name" : "29760 (interacts with) 4952", "interaction" : "interacts with", "SUID" : 33146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33142", "source" : "4073", "target" : "5973", "shared_name" : "29760 (interacts with) 5155", "name" : "29760 (interacts with) 5155", "interaction" : "interacts with", "SUID" : 33142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33138", "source" : "4073", "target" : "2773", "shared_name" : "29760 (interacts with) 4908", "name" : "29760 (interacts with) 4908", "interaction" : "interacts with", "SUID" : 33138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33134", "source" : "4073", "target" : "4209", "shared_name" : "29760 (interacts with) 4915", "name" : "29760 (interacts with) 4915", "interaction" : "interacts with", "SUID" : 33134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33130", "source" : "4073", "target" : "4385", "shared_name" : "29760 (interacts with) 3084", "name" : "29760 (interacts with) 3084", "interaction" : "interacts with", "SUID" : 33130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33126", "source" : "4073", "target" : "3457", "shared_name" : "29760 (interacts with) 22914", "name" : "29760 (interacts with) 22914", "interaction" : "interacts with", "SUID" : 33126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33122", "source" : "4073", "target" : "4457", "shared_name" : "29760 (interacts with) 3082", "name" : "29760 (interacts with) 3082", "interaction" : "interacts with", "SUID" : 33122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33118", "source" : "4073", "target" : "5569", "shared_name" : "29760 (interacts with) 59345", "name" : "29760 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 33118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33114", "source" : "4073", "target" : "6129", "shared_name" : "29760 (interacts with) 2263", "name" : "29760 (interacts with) 2263", "interaction" : "interacts with", "SUID" : 33114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33110", "source" : "4073", "target" : "6121", "shared_name" : "29760 (interacts with) 2260", "name" : "29760 (interacts with) 2260", "interaction" : "interacts with", "SUID" : 33110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33106", "source" : "4073", "target" : "3381", "shared_name" : "29760 (interacts with) 2214", "name" : "29760 (interacts with) 2214", "interaction" : "interacts with", "SUID" : 33106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33102", "source" : "4073", "target" : "6033", "shared_name" : "29760 (interacts with) 11160", "name" : "29760 (interacts with) 11160", "interaction" : "interacts with", "SUID" : 33102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33098", "source" : "4073", "target" : "3629", "shared_name" : "29760 (interacts with) 2066", "name" : "29760 (interacts with) 2066", "interaction" : "interacts with", "SUID" : 33098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33094", "source" : "4073", "target" : "2597", "shared_name" : "29760 (interacts with) 2056", "name" : "29760 (interacts with) 2056", "interaction" : "interacts with", "SUID" : 33094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33090", "source" : "4073", "target" : "5817", "shared_name" : "29760 (interacts with) 1950", "name" : "29760 (interacts with) 1950", "interaction" : "interacts with", "SUID" : 33090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33086", "source" : "4073", "target" : "993", "shared_name" : "29760 (interacts with) 801", "name" : "29760 (interacts with) 801", "interaction" : "interacts with", "SUID" : 33086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33490", "source" : "4069", "target" : "4577", "shared_name" : "374291 (interacts with) 7167", "name" : "374291 (interacts with) 7167", "interaction" : "interacts with", "SUID" : 33490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33486", "source" : "4069", "target" : "1085", "shared_name" : "374291 (interacts with) 9377", "name" : "374291 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 33486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33482", "source" : "4069", "target" : "2105", "shared_name" : "374291 (interacts with) 56945", "name" : "374291 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 33482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33478", "source" : "4069", "target" : "3545", "shared_name" : "374291 (interacts with) 708", "name" : "374291 (interacts with) 708", "interaction" : "interacts with", "SUID" : 33478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33474", "source" : "4069", "target" : "4621", "shared_name" : "374291 (interacts with) 57038", "name" : "374291 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 33474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33470", "source" : "4069", "target" : "1325", "shared_name" : "374291 (interacts with) 7284", "name" : "374291 (interacts with) 7284", "interaction" : "interacts with", "SUID" : 33470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33466", "source" : "4069", "target" : "1865", "shared_name" : "374291 (interacts with) 498", "name" : "374291 (interacts with) 498", "interaction" : "interacts with", "SUID" : 33466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33462", "source" : "4069", "target" : "713", "shared_name" : "374291 (interacts with) 7019", "name" : "374291 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 33462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33458", "source" : "4069", "target" : "4409", "shared_name" : "374291 (interacts with) 6341", "name" : "374291 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 33458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33454", "source" : "4069", "target" : "6181", "shared_name" : "374291 (interacts with) 84987", "name" : "374291 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 33454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33450", "source" : "4069", "target" : "2477", "shared_name" : "374291 (interacts with) 57107", "name" : "374291 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 33450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33446", "source" : "4069", "target" : "1929", "shared_name" : "374291 (interacts with) 51218", "name" : "374291 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 33446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33442", "source" : "4069", "target" : "4253", "shared_name" : "374291 (interacts with) 84706", "name" : "374291 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 33442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33438", "source" : "4069", "target" : "1561", "shared_name" : "374291 (interacts with) 51117", "name" : "374291 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 33438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33434", "source" : "4069", "target" : "4897", "shared_name" : "374291 (interacts with) 55149", "name" : "374291 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 33434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33430", "source" : "4069", "target" : "5857", "shared_name" : "374291 (interacts with) 4694", "name" : "374291 (interacts with) 4694", "interaction" : "interacts with", "SUID" : 33430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33426", "source" : "4069", "target" : "6001", "shared_name" : "374291 (interacts with) 55157", "name" : "374291 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 33426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33422", "source" : "4069", "target" : "2757", "shared_name" : "374291 (interacts with) 51079", "name" : "374291 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 33422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33418", "source" : "4069", "target" : "1197", "shared_name" : "374291 (interacts with) 79587", "name" : "374291 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 33418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33414", "source" : "4069", "target" : "1337", "shared_name" : "374291 (interacts with) 55863", "name" : "374291 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 33414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33410", "source" : "4069", "target" : "4101", "shared_name" : "374291 (interacts with) 65260", "name" : "374291 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 33410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33406", "source" : "4069", "target" : "5085", "shared_name" : "374291 (interacts with) 56652", "name" : "374291 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 33406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33402", "source" : "4069", "target" : "4757", "shared_name" : "374291 (interacts with) 9997", "name" : "374291 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 33402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33398", "source" : "4069", "target" : "6073", "shared_name" : "374291 (interacts with) 92170", "name" : "374291 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 33398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33394", "source" : "4069", "target" : "2285", "shared_name" : "374291 (interacts with) 51300", "name" : "374291 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 33394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33390", "source" : "4069", "target" : "1053", "shared_name" : "374291 (interacts with) 81689", "name" : "374291 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 33390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33386", "source" : "4069", "target" : "889", "shared_name" : "374291 (interacts with) 80224", "name" : "374291 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 33386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33382", "source" : "4069", "target" : "1105", "shared_name" : "374291 (interacts with) 493753", "name" : "374291 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 33382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33378", "source" : "4069", "target" : "5737", "shared_name" : "374291 (interacts with) 84340", "name" : "374291 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 33378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33374", "source" : "4069", "target" : "477", "shared_name" : "374291 (interacts with) 51021", "name" : "374291 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 33374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33370", "source" : "4069", "target" : "5845", "shared_name" : "374291 (interacts with) 4714", "name" : "374291 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 33370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33366", "source" : "4069", "target" : "3617", "shared_name" : "374291 (interacts with) 4704", "name" : "374291 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 33366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33362", "source" : "4069", "target" : "3973", "shared_name" : "374291 (interacts with) 55572", "name" : "374291 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 33362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33358", "source" : "4069", "target" : "2801", "shared_name" : "374291 (interacts with) 4700", "name" : "374291 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 33358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33354", "source" : "4069", "target" : "4061", "shared_name" : "374291 (interacts with) 4705", "name" : "374291 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 33354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33350", "source" : "4069", "target" : "5853", "shared_name" : "374291 (interacts with) 4709", "name" : "374291 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 33350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33346", "source" : "4069", "target" : "2741", "shared_name" : "374291 (interacts with) 4695", "name" : "374291 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 33346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33342", "source" : "4069", "target" : "2753", "shared_name" : "374291 (interacts with) 4720", "name" : "374291 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 33342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33338", "source" : "4069", "target" : "4017", "shared_name" : "374291 (interacts with) 4719", "name" : "374291 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 33338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33334", "source" : "4069", "target" : "1573", "shared_name" : "374291 (interacts with) 4723", "name" : "374291 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 33334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33330", "source" : "4069", "target" : "3501", "shared_name" : "374291 (interacts with) 5831", "name" : "374291 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 33330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33326", "source" : "4069", "target" : "4045", "shared_name" : "374291 (interacts with) 29920", "name" : "374291 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 33326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33322", "source" : "4069", "target" : "893", "shared_name" : "374291 (interacts with) 9361", "name" : "374291 (interacts with) 9361", "interaction" : "interacts with", "SUID" : 33322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33318", "source" : "4069", "target" : "2021", "shared_name" : "374291 (interacts with) 5428", "name" : "374291 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 33318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33314", "source" : "4069", "target" : "2797", "shared_name" : "374291 (interacts with) 4728", "name" : "374291 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 33314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33310", "source" : "4069", "target" : "4141", "shared_name" : "374291 (interacts with) 617", "name" : "374291 (interacts with) 617", "interaction" : "interacts with", "SUID" : 33310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33306", "source" : "4069", "target" : "2109", "shared_name" : "374291 (interacts with) 51103", "name" : "374291 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 33306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33302", "source" : "4069", "target" : "5189", "shared_name" : "374291 (interacts with) 57176", "name" : "374291 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 33302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33298", "source" : "4069", "target" : "521", "shared_name" : "374291 (interacts with) 85476", "name" : "374291 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 33298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33294", "source" : "4069", "target" : "1129", "shared_name" : "374291 (interacts with) 57505", "name" : "374291 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 33294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33290", "source" : "4069", "target" : "721", "shared_name" : "374291 (interacts with) 79731", "name" : "374291 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 33290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33286", "source" : "4069", "target" : "4869", "shared_name" : "374291 (interacts with) 92935", "name" : "374291 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 33286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33282", "source" : "4069", "target" : "5829", "shared_name" : "374291 (interacts with) 4538", "name" : "374291 (interacts with) 4538", "interaction" : "interacts with", "SUID" : 33282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33278", "source" : "4069", "target" : "3525", "shared_name" : "374291 (interacts with) 23410", "name" : "374291 (interacts with) 23410", "interaction" : "interacts with", "SUID" : 33278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33274", "source" : "4069", "target" : "4189", "shared_name" : "374291 (interacts with) 2744", "name" : "374291 (interacts with) 2744", "interaction" : "interacts with", "SUID" : 33274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33270", "source" : "4069", "target" : "5089", "shared_name" : "374291 (interacts with) 1373", "name" : "374291 (interacts with) 1373", "interaction" : "interacts with", "SUID" : 33270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33266", "source" : "4069", "target" : "5885", "shared_name" : "374291 (interacts with) 4540", "name" : "374291 (interacts with) 4540", "interaction" : "interacts with", "SUID" : 33266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33262", "source" : "4069", "target" : "2689", "shared_name" : "374291 (interacts with) 4715", "name" : "374291 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 33262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33258", "source" : "4069", "target" : "5821", "shared_name" : "374291 (interacts with) 4724", "name" : "374291 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 33258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33254", "source" : "4069", "target" : "5553", "shared_name" : "374291 (interacts with) 55967", "name" : "374291 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 33254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33250", "source" : "4069", "target" : "4945", "shared_name" : "374291 (interacts with) 4722", "name" : "374291 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 33250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33246", "source" : "4069", "target" : "5505", "shared_name" : "374291 (interacts with) 29078", "name" : "374291 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 33246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33242", "source" : "4069", "target" : "1869", "shared_name" : "374291 (interacts with) 4729", "name" : "374291 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 33242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33238", "source" : "4069", "target" : "1237", "shared_name" : "374291 (interacts with) 3329", "name" : "374291 (interacts with) 3329", "interaction" : "interacts with", "SUID" : 33238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33234", "source" : "4069", "target" : "4085", "shared_name" : "374291 (interacts with) 55699", "name" : "374291 (interacts with) 55699", "interaction" : "interacts with", "SUID" : 33234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33230", "source" : "4069", "target" : "5833", "shared_name" : "374291 (interacts with) 4726", "name" : "374291 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 33230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33226", "source" : "4069", "target" : "2009", "shared_name" : "374291 (interacts with) 79133", "name" : "374291 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 33226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33598", "source" : "4065", "target" : "4769", "shared_name" : "7124 (interacts with) 7132", "name" : "7124 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 33598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33594", "source" : "4065", "target" : "1845", "shared_name" : "7124 (interacts with) 836", "name" : "7124 (interacts with) 836", "interaction" : "interacts with", "SUID" : 33594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33590", "source" : "4065", "target" : "981", "shared_name" : "7124 (interacts with) 7157", "name" : "7124 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 33590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33586", "source" : "4065", "target" : "829", "shared_name" : "7124 (interacts with) 8772", "name" : "7124 (interacts with) 8772", "interaction" : "interacts with", "SUID" : 33586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33582", "source" : "4065", "target" : "4589", "shared_name" : "7124 (interacts with) 8431", "name" : "7124 (interacts with) 8431", "interaction" : "interacts with", "SUID" : 33582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33578", "source" : "4065", "target" : "4097", "shared_name" : "7124 (interacts with) 9611", "name" : "7124 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 33578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33574", "source" : "4065", "target" : "3021", "shared_name" : "7124 (interacts with) 84823", "name" : "7124 (interacts with) 84823", "interaction" : "interacts with", "SUID" : 33574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33570", "source" : "4065", "target" : "877", "shared_name" : "7124 (interacts with) 7341", "name" : "7124 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 33570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33566", "source" : "4065", "target" : "2069", "shared_name" : "7124 (interacts with) 84106", "name" : "7124 (interacts with) 84106", "interaction" : "interacts with", "SUID" : 33566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33562", "source" : "4065", "target" : "1957", "shared_name" : "7124 (interacts with) 1312", "name" : "7124 (interacts with) 1312", "interaction" : "interacts with", "SUID" : 33562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33558", "source" : "4065", "target" : "4841", "shared_name" : "7124 (interacts with) 6334", "name" : "7124 (interacts with) 6334", "interaction" : "interacts with", "SUID" : 33558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33554", "source" : "4065", "target" : "689", "shared_name" : "7124 (interacts with) 6329", "name" : "7124 (interacts with) 6329", "interaction" : "interacts with", "SUID" : 33554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33550", "source" : "4065", "target" : "373", "shared_name" : "7124 (interacts with) 6328", "name" : "7124 (interacts with) 6328", "interaction" : "interacts with", "SUID" : 33550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33546", "source" : "4065", "target" : "737", "shared_name" : "7124 (interacts with) 2643", "name" : "7124 (interacts with) 2643", "interaction" : "interacts with", "SUID" : 33546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33542", "source" : "4065", "target" : "5229", "shared_name" : "7124 (interacts with) 6335", "name" : "7124 (interacts with) 6335", "interaction" : "interacts with", "SUID" : 33542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33538", "source" : "4065", "target" : "3381", "shared_name" : "7124 (interacts with) 2214", "name" : "7124 (interacts with) 2214", "interaction" : "interacts with", "SUID" : 33538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33534", "source" : "4065", "target" : "377", "shared_name" : "7124 (interacts with) 6326", "name" : "7124 (interacts with) 6326", "interaction" : "interacts with", "SUID" : 33534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33530", "source" : "4065", "target" : "381", "shared_name" : "7124 (interacts with) 6323", "name" : "7124 (interacts with) 6323", "interaction" : "interacts with", "SUID" : 33530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33526", "source" : "4065", "target" : "4797", "shared_name" : "7124 (interacts with) 10735", "name" : "7124 (interacts with) 10735", "interaction" : "interacts with", "SUID" : 33526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33522", "source" : "4065", "target" : "2241", "shared_name" : "7124 (interacts with) 3043", "name" : "7124 (interacts with) 3043", "interaction" : "interacts with", "SUID" : 33522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33518", "source" : "4065", "target" : "2213", "shared_name" : "7124 (interacts with) 4851", "name" : "7124 (interacts with) 4851", "interaction" : "interacts with", "SUID" : 33518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33514", "source" : "4065", "target" : "5225", "shared_name" : "7124 (interacts with) 5290", "name" : "7124 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 33514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33510", "source" : "4065", "target" : "5509", "shared_name" : "7124 (interacts with) 207", "name" : "7124 (interacts with) 207", "interaction" : "interacts with", "SUID" : 33510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33506", "source" : "4065", "target" : "1621", "shared_name" : "7124 (interacts with) 1432", "name" : "7124 (interacts with) 1432", "interaction" : "interacts with", "SUID" : 33506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33502", "source" : "4065", "target" : "3817", "shared_name" : "7124 (interacts with) 3663", "name" : "7124 (interacts with) 3663", "interaction" : "interacts with", "SUID" : 33502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33498", "source" : "4065", "target" : "3889", "shared_name" : "7124 (interacts with) 1605", "name" : "7124 (interacts with) 1605", "interaction" : "interacts with", "SUID" : 33498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33494", "source" : "4065", "target" : "4189", "shared_name" : "7124 (interacts with) 2744", "name" : "7124 (interacts with) 2744", "interaction" : "interacts with", "SUID" : 33494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33818", "source" : "4061", "target" : "501", "shared_name" : "4705 (interacts with) 65993", "name" : "4705 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 33818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33814", "source" : "4061", "target" : "6181", "shared_name" : "4705 (interacts with) 84987", "name" : "4705 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 33814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33810", "source" : "4061", "target" : "1053", "shared_name" : "4705 (interacts with) 81689", "name" : "4705 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 33810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33806", "source" : "4061", "target" : "3621", "shared_name" : "4705 (interacts with) 6834", "name" : "4705 (interacts with) 6834", "interaction" : "interacts with", "SUID" : 33806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33802", "source" : "4061", "target" : "3545", "shared_name" : "4705 (interacts with) 708", "name" : "4705 (interacts with) 708", "interaction" : "interacts with", "SUID" : 33802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33798", "source" : "4061", "target" : "721", "shared_name" : "4705 (interacts with) 79731", "name" : "4705 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 33798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33794", "source" : "4061", "target" : "2297", "shared_name" : "4705 (interacts with) 55005", "name" : "4705 (interacts with) 55005", "interaction" : "interacts with", "SUID" : 33794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33790", "source" : "4061", "target" : "2105", "shared_name" : "4705 (interacts with) 56945", "name" : "4705 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 33790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33786", "source" : "4061", "target" : "713", "shared_name" : "4705 (interacts with) 7019", "name" : "4705 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 33786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33782", "source" : "4061", "target" : "2021", "shared_name" : "4705 (interacts with) 5428", "name" : "4705 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 33782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33778", "source" : "4061", "target" : "1129", "shared_name" : "4705 (interacts with) 57505", "name" : "4705 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 33778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33774", "source" : "4061", "target" : "3633", "shared_name" : "4705 (interacts with) 51067", "name" : "4705 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 33774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33770", "source" : "4061", "target" : "5189", "shared_name" : "4705 (interacts with) 57176", "name" : "4705 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 33770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33766", "source" : "4061", "target" : "521", "shared_name" : "4705 (interacts with) 85476", "name" : "4705 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 33766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33762", "source" : "4061", "target" : "6001", "shared_name" : "4705 (interacts with) 55157", "name" : "4705 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 33762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33758", "source" : "4061", "target" : "4897", "shared_name" : "4705 (interacts with) 55149", "name" : "4705 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 33758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33754", "source" : "4061", "target" : "4869", "shared_name" : "4705 (interacts with) 92935", "name" : "4705 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 33754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33750", "source" : "4061", "target" : "5737", "shared_name" : "4705 (interacts with) 84340", "name" : "4705 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 33750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33746", "source" : "4061", "target" : "1929", "shared_name" : "4705 (interacts with) 51218", "name" : "4705 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 33746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33742", "source" : "4061", "target" : "4621", "shared_name" : "4705 (interacts with) 57038", "name" : "4705 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 33742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33738", "source" : "4061", "target" : "5085", "shared_name" : "4705 (interacts with) 56652", "name" : "4705 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 33738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33734", "source" : "4061", "target" : "5821", "shared_name" : "4705 (interacts with) 4724", "name" : "4705 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 33734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33730", "source" : "4061", "target" : "5833", "shared_name" : "4705 (interacts with) 4726", "name" : "4705 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 33730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33726", "source" : "4061", "target" : "5553", "shared_name" : "4705 (interacts with) 55967", "name" : "4705 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 33726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33722", "source" : "4061", "target" : "6073", "shared_name" : "4705 (interacts with) 92170", "name" : "4705 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 33722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33718", "source" : "4061", "target" : "1105", "shared_name" : "4705 (interacts with) 493753", "name" : "4705 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 33718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33714", "source" : "4061", "target" : "2757", "shared_name" : "4705 (interacts with) 51079", "name" : "4705 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 33714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33710", "source" : "4061", "target" : "4945", "shared_name" : "4705 (interacts with) 4722", "name" : "4705 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 33710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33706", "source" : "4061", "target" : "4409", "shared_name" : "4705 (interacts with) 6341", "name" : "4705 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 33706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33702", "source" : "4061", "target" : "1337", "shared_name" : "4705 (interacts with) 55863", "name" : "4705 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 33702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33698", "source" : "4061", "target" : "1661", "shared_name" : "4705 (interacts with) 91942", "name" : "4705 (interacts with) 91942", "interaction" : "interacts with", "SUID" : 33698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33694", "source" : "4061", "target" : "1197", "shared_name" : "4705 (interacts with) 79587", "name" : "4705 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 33694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33690", "source" : "4061", "target" : "889", "shared_name" : "4705 (interacts with) 80224", "name" : "4705 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 33690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33686", "source" : "4061", "target" : "2477", "shared_name" : "4705 (interacts with) 57107", "name" : "4705 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 33686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33682", "source" : "4061", "target" : "2285", "shared_name" : "4705 (interacts with) 51300", "name" : "4705 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 33682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33678", "source" : "4061", "target" : "3973", "shared_name" : "4705 (interacts with) 55572", "name" : "4705 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 33678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33674", "source" : "4061", "target" : "477", "shared_name" : "4705 (interacts with) 51021", "name" : "4705 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 33674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33670", "source" : "4061", "target" : "4101", "shared_name" : "4705 (interacts with) 65260", "name" : "4705 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 33670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33666", "source" : "4061", "target" : "1561", "shared_name" : "4705 (interacts with) 51117", "name" : "4705 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 33666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33662", "source" : "4061", "target" : "4757", "shared_name" : "4705 (interacts with) 9997", "name" : "4705 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 33662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33658", "source" : "4061", "target" : "1085", "shared_name" : "4705 (interacts with) 9377", "name" : "4705 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 33658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33654", "source" : "4061", "target" : "5853", "shared_name" : "4705 (interacts with) 4709", "name" : "4705 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 33654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33650", "source" : "4061", "target" : "2109", "shared_name" : "4705 (interacts with) 51103", "name" : "4705 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 33650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33646", "source" : "4061", "target" : "5845", "shared_name" : "4705 (interacts with) 4714", "name" : "4705 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 33646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33642", "source" : "4061", "target" : "4141", "shared_name" : "4705 (interacts with) 617", "name" : "4705 (interacts with) 617", "interaction" : "interacts with", "SUID" : 33642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33638", "source" : "4061", "target" : "2689", "shared_name" : "4705 (interacts with) 4715", "name" : "4705 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 33638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33634", "source" : "4061", "target" : "2009", "shared_name" : "4705 (interacts with) 79133", "name" : "4705 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 33634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33630", "source" : "4061", "target" : "4045", "shared_name" : "4705 (interacts with) 29920", "name" : "4705 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 33630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33626", "source" : "4061", "target" : "3501", "shared_name" : "4705 (interacts with) 5831", "name" : "4705 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 33626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33622", "source" : "4061", "target" : "2753", "shared_name" : "4705 (interacts with) 4720", "name" : "4705 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 33622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33618", "source" : "4061", "target" : "2797", "shared_name" : "4705 (interacts with) 4728", "name" : "4705 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 33618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33614", "source" : "4061", "target" : "4017", "shared_name" : "4705 (interacts with) 4719", "name" : "4705 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 33614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33610", "source" : "4061", "target" : "1869", "shared_name" : "4705 (interacts with) 4729", "name" : "4705 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 33610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33606", "source" : "4061", "target" : "1573", "shared_name" : "4705 (interacts with) 4723", "name" : "4705 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 33606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33602", "source" : "4061", "target" : "4525", "shared_name" : "4705 (interacts with) 1666", "name" : "4705 (interacts with) 1666", "interaction" : "interacts with", "SUID" : 33602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33822", "source" : "4057", "target" : "737", "shared_name" : "10598 (interacts with) 2643", "name" : "10598 (interacts with) 2643", "interaction" : "interacts with", "SUID" : 33822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33826", "source" : "4053", "target" : "4609", "shared_name" : "79621 (interacts with) 84153", "name" : "79621 (interacts with) 84153", "interaction" : "interacts with", "SUID" : 33826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33830", "source" : "4049", "target" : "3825", "shared_name" : "27436 (interacts with) 5915", "name" : "27436 (interacts with) 5915", "interaction" : "interacts with", "SUID" : 33830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33894", "source" : "4045", "target" : "1425", "shared_name" : "29920 (interacts with) 55644", "name" : "29920 (interacts with) 55644", "interaction" : "interacts with", "SUID" : 33894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33890", "source" : "4045", "target" : "2625", "shared_name" : "29920 (interacts with) 3065", "name" : "29920 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 33890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33886", "source" : "4045", "target" : "2673", "shared_name" : "29920 (interacts with) 8841", "name" : "29920 (interacts with) 8841", "interaction" : "interacts with", "SUID" : 33886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33882", "source" : "4045", "target" : "5777", "shared_name" : "29920 (interacts with) 383", "name" : "29920 (interacts with) 383", "interaction" : "interacts with", "SUID" : 33882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33878", "source" : "4045", "target" : "5349", "shared_name" : "29920 (interacts with) 440", "name" : "29920 (interacts with) 440", "interaction" : "interacts with", "SUID" : 33878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33874", "source" : "4045", "target" : "5993", "shared_name" : "29920 (interacts with) 6611", "name" : "29920 (interacts with) 6611", "interaction" : "interacts with", "SUID" : 33874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33870", "source" : "4045", "target" : "769", "shared_name" : "29920 (interacts with) 4953", "name" : "29920 (interacts with) 4953", "interaction" : "interacts with", "SUID" : 33870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33866", "source" : "4045", "target" : "3501", "shared_name" : "29920 (interacts with) 5831", "name" : "29920 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 33866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33862", "source" : "4045", "target" : "3325", "shared_name" : "29920 (interacts with) 9517", "name" : "29920 (interacts with) 9517", "interaction" : "interacts with", "SUID" : 33862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33858", "source" : "4045", "target" : "409", "shared_name" : "29920 (interacts with) 10558", "name" : "29920 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 33858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33854", "source" : "4045", "target" : "2177", "shared_name" : "29920 (interacts with) 443", "name" : "29920 (interacts with) 443", "interaction" : "interacts with", "SUID" : 33854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33850", "source" : "4045", "target" : "4253", "shared_name" : "29920 (interacts with) 84706", "name" : "29920 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 33850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33846", "source" : "4045", "target" : "1461", "shared_name" : "29920 (interacts with) 5832", "name" : "29920 (interacts with) 5832", "interaction" : "interacts with", "SUID" : 33846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33842", "source" : "4045", "target" : "681", "shared_name" : "29920 (interacts with) 6646", "name" : "29920 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 33842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33838", "source" : "4045", "target" : "2669", "shared_name" : "29920 (interacts with) 9197", "name" : "29920 (interacts with) 9197", "interaction" : "interacts with", "SUID" : 33838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33834", "source" : "4045", "target" : "3793", "shared_name" : "29920 (interacts with) 28965", "name" : "29920 (interacts with) 28965", "interaction" : "interacts with", "SUID" : 33834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33966", "source" : "4041", "target" : "625", "shared_name" : "847 (interacts with) 8942", "name" : "847 (interacts with) 8942", "interaction" : "interacts with", "SUID" : 33966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33962", "source" : "4041", "target" : "369", "shared_name" : "847 (interacts with) 7173", "name" : "847 (interacts with) 7173", "interaction" : "interacts with", "SUID" : 33962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33958", "source" : "4041", "target" : "429", "shared_name" : "847 (interacts with) 1757", "name" : "847 (interacts with) 1757", "interaction" : "interacts with", "SUID" : 33958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33954", "source" : "4041", "target" : "2161", "shared_name" : "847 (interacts with) 55163", "name" : "847 (interacts with) 55163", "interaction" : "interacts with", "SUID" : 33954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33950", "source" : "4041", "target" : "1721", "shared_name" : "847 (interacts with) 51807", "name" : "847 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 33950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33946", "source" : "4041", "target" : "2901", "shared_name" : "847 (interacts with) 6647", "name" : "847 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 33946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33942", "source" : "4041", "target" : "3525", "shared_name" : "847 (interacts with) 23410", "name" : "847 (interacts with) 23410", "interaction" : "interacts with", "SUID" : 33942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33938", "source" : "4041", "target" : "5205", "shared_name" : "847 (interacts with) 5828", "name" : "847 (interacts with) 5828", "interaction" : "interacts with", "SUID" : 33938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33934", "source" : "4041", "target" : "5545", "shared_name" : "847 (interacts with) 5195", "name" : "847 (interacts with) 5195", "interaction" : "interacts with", "SUID" : 33934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33930", "source" : "4041", "target" : "1953", "shared_name" : "847 (interacts with) 5194", "name" : "847 (interacts with) 5194", "interaction" : "interacts with", "SUID" : 33930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33926", "source" : "4041", "target" : "4297", "shared_name" : "847 (interacts with) 5193", "name" : "847 (interacts with) 5193", "interaction" : "interacts with", "SUID" : 33926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33922", "source" : "4041", "target" : "5865", "shared_name" : "847 (interacts with) 5192", "name" : "847 (interacts with) 5192", "interaction" : "interacts with", "SUID" : 33922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33918", "source" : "4041", "target" : "6093", "shared_name" : "847 (interacts with) 953", "name" : "847 (interacts with) 953", "interaction" : "interacts with", "SUID" : 33918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33914", "source" : "4041", "target" : "1489", "shared_name" : "847 (interacts with) 1738", "name" : "847 (interacts with) 1738", "interaction" : "interacts with", "SUID" : 33914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33910", "source" : "4041", "target" : "5165", "shared_name" : "847 (interacts with) 3704", "name" : "847 (interacts with) 3704", "interaction" : "interacts with", "SUID" : 33910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33906", "source" : "4041", "target" : "1525", "shared_name" : "847 (interacts with) 3295", "name" : "847 (interacts with) 3295", "interaction" : "interacts with", "SUID" : 33906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33902", "source" : "4041", "target" : "1821", "shared_name" : "847 (interacts with) 1719", "name" : "847 (interacts with) 1719", "interaction" : "interacts with", "SUID" : 33902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33898", "source" : "4041", "target" : "5237", "shared_name" : "847 (interacts with) 5830", "name" : "847 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 33898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34018", "source" : "4037", "target" : "1937", "shared_name" : "2073 (interacts with) 2965", "name" : "2073 (interacts with) 2965", "interaction" : "interacts with", "SUID" : 34018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34014", "source" : "4037", "target" : "4285", "shared_name" : "2073 (interacts with) 8450", "name" : "2073 (interacts with) 8450", "interaction" : "interacts with", "SUID" : 34014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34010", "source" : "4037", "target" : "2921", "shared_name" : "2073 (interacts with) 5981", "name" : "2073 (interacts with) 5981", "interaction" : "interacts with", "SUID" : 34010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34006", "source" : "4037", "target" : "4249", "shared_name" : "2073 (interacts with) 4331", "name" : "2073 (interacts with) 4331", "interaction" : "interacts with", "SUID" : 34006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34002", "source" : "4037", "target" : "913", "shared_name" : "2073 (interacts with) 404672", "name" : "2073 (interacts with) 404672", "interaction" : "interacts with", "SUID" : 34002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33998", "source" : "4037", "target" : "481", "shared_name" : "2073 (interacts with) 7507", "name" : "2073 (interacts with) 7507", "interaction" : "interacts with", "SUID" : 33998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33994", "source" : "4037", "target" : "5861", "shared_name" : "2073 (interacts with) 5435", "name" : "2073 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 33994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33990", "source" : "4037", "target" : "2649", "shared_name" : "2073 (interacts with) 5430", "name" : "2073 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 33990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33986", "source" : "4037", "target" : "2529", "shared_name" : "2073 (interacts with) 5424", "name" : "2073 (interacts with) 5424", "interaction" : "interacts with", "SUID" : 33986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33982", "source" : "4037", "target" : "3049", "shared_name" : "2073 (interacts with) 142", "name" : "2073 (interacts with) 142", "interaction" : "interacts with", "SUID" : 33982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33978", "source" : "4037", "target" : "1729", "shared_name" : "2073 (interacts with) 5111", "name" : "2073 (interacts with) 5111", "interaction" : "interacts with", "SUID" : 33978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33974", "source" : "4037", "target" : "2937", "shared_name" : "2073 (interacts with) 1457", "name" : "2073 (interacts with) 1457", "interaction" : "interacts with", "SUID" : 33974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "33970", "source" : "4037", "target" : "1709", "shared_name" : "2073 (interacts with) 2074", "name" : "2073 (interacts with) 2074", "interaction" : "interacts with", "SUID" : 33970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34162", "source" : "4033", "target" : "637", "shared_name" : "613 (interacts with) 6654", "name" : "613 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 34162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34158", "source" : "4033", "target" : "5053", "shared_name" : "613 (interacts with) 857", "name" : "613 (interacts with) 857", "interaction" : "interacts with", "SUID" : 34158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34154", "source" : "4033", "target" : "805", "shared_name" : "613 (interacts with) 6772", "name" : "613 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 34154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34150", "source" : "4033", "target" : "4909", "shared_name" : "613 (interacts with) 823", "name" : "613 (interacts with) 823", "interaction" : "interacts with", "SUID" : 34150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34146", "source" : "4033", "target" : "4697", "shared_name" : "613 (interacts with) 7534", "name" : "613 (interacts with) 7534", "interaction" : "interacts with", "SUID" : 34146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34142", "source" : "4033", "target" : "869", "shared_name" : "613 (interacts with) 23221", "name" : "613 (interacts with) 23221", "interaction" : "interacts with", "SUID" : 34142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34138", "source" : "4033", "target" : "725", "shared_name" : "613 (interacts with) 54209", "name" : "613 (interacts with) 54209", "interaction" : "interacts with", "SUID" : 34138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34134", "source" : "4033", "target" : "5073", "shared_name" : "613 (interacts with) 7305", "name" : "613 (interacts with) 7305", "interaction" : "interacts with", "SUID" : 34134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34130", "source" : "4033", "target" : "817", "shared_name" : "613 (interacts with) 5728", "name" : "613 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 34130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34126", "source" : "4033", "target" : "1069", "shared_name" : "613 (interacts with) 5879", "name" : "613 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 34126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34122", "source" : "4033", "target" : "5225", "shared_name" : "613 (interacts with) 5290", "name" : "613 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 34122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34118", "source" : "4033", "target" : "4213", "shared_name" : "613 (interacts with) 5295", "name" : "613 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 34118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34114", "source" : "4033", "target" : "3465", "shared_name" : "613 (interacts with) 5296", "name" : "613 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 34114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34110", "source" : "4033", "target" : "4209", "shared_name" : "613 (interacts with) 4915", "name" : "613 (interacts with) 4915", "interaction" : "interacts with", "SUID" : 34110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34106", "source" : "4033", "target" : "5973", "shared_name" : "613 (interacts with) 5155", "name" : "613 (interacts with) 5155", "interaction" : "interacts with", "SUID" : 34106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34102", "source" : "4033", "target" : "2173", "shared_name" : "613 (interacts with) 5159", "name" : "613 (interacts with) 5159", "interaction" : "interacts with", "SUID" : 34102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34098", "source" : "4033", "target" : "4293", "shared_name" : "613 (interacts with) 5156", "name" : "613 (interacts with) 5156", "interaction" : "interacts with", "SUID" : 34098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34094", "source" : "4033", "target" : "4385", "shared_name" : "613 (interacts with) 3084", "name" : "613 (interacts with) 3084", "interaction" : "interacts with", "SUID" : 34094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34090", "source" : "4033", "target" : "2773", "shared_name" : "613 (interacts with) 4908", "name" : "613 (interacts with) 4908", "interaction" : "interacts with", "SUID" : 34090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34086", "source" : "4033", "target" : "3457", "shared_name" : "613 (interacts with) 22914", "name" : "613 (interacts with) 22914", "interaction" : "interacts with", "SUID" : 34086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34082", "source" : "4033", "target" : "1209", "shared_name" : "613 (interacts with) 51763", "name" : "613 (interacts with) 51763", "interaction" : "interacts with", "SUID" : 34082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34078", "source" : "4033", "target" : "3393", "shared_name" : "613 (interacts with) 9402", "name" : "613 (interacts with) 9402", "interaction" : "interacts with", "SUID" : 34078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34074", "source" : "4033", "target" : "4457", "shared_name" : "613 (interacts with) 3082", "name" : "613 (interacts with) 3082", "interaction" : "interacts with", "SUID" : 34074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34070", "source" : "4033", "target" : "5569", "shared_name" : "613 (interacts with) 59345", "name" : "613 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 34070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34066", "source" : "4033", "target" : "6121", "shared_name" : "613 (interacts with) 2260", "name" : "613 (interacts with) 2260", "interaction" : "interacts with", "SUID" : 34066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34062", "source" : "4033", "target" : "6129", "shared_name" : "613 (interacts with) 2263", "name" : "613 (interacts with) 2263", "interaction" : "interacts with", "SUID" : 34062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34058", "source" : "4033", "target" : "3629", "shared_name" : "613 (interacts with) 2066", "name" : "613 (interacts with) 2066", "interaction" : "interacts with", "SUID" : 34058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34054", "source" : "4033", "target" : "3381", "shared_name" : "613 (interacts with) 2214", "name" : "613 (interacts with) 2214", "interaction" : "interacts with", "SUID" : 34054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34050", "source" : "4033", "target" : "5817", "shared_name" : "613 (interacts with) 1950", "name" : "613 (interacts with) 1950", "interaction" : "interacts with", "SUID" : 34050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34046", "source" : "4033", "target" : "2597", "shared_name" : "613 (interacts with) 2056", "name" : "613 (interacts with) 2056", "interaction" : "interacts with", "SUID" : 34046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34042", "source" : "4033", "target" : "1405", "shared_name" : "613 (interacts with) 998", "name" : "613 (interacts with) 998", "interaction" : "interacts with", "SUID" : 34042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34038", "source" : "4033", "target" : "6021", "shared_name" : "613 (interacts with) 26999", "name" : "613 (interacts with) 26999", "interaction" : "interacts with", "SUID" : 34038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34034", "source" : "4033", "target" : "5425", "shared_name" : "613 (interacts with) 627", "name" : "613 (interacts with) 627", "interaction" : "interacts with", "SUID" : 34034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34030", "source" : "4033", "target" : "4073", "shared_name" : "613 (interacts with) 29760", "name" : "613 (interacts with) 29760", "interaction" : "interacts with", "SUID" : 34030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34026", "source" : "4033", "target" : "505", "shared_name" : "613 (interacts with) 2071", "name" : "613 (interacts with) 2071", "interaction" : "interacts with", "SUID" : 34026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34022", "source" : "4033", "target" : "4197", "shared_name" : "613 (interacts with) 1398", "name" : "613 (interacts with) 1398", "interaction" : "interacts with", "SUID" : 34022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34214", "source" : "4025", "target" : "6009", "shared_name" : "284111 (interacts with) 64849", "name" : "284111 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 34214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34210", "source" : "4025", "target" : "361", "shared_name" : "284111 (interacts with) 6576", "name" : "284111 (interacts with) 6576", "interaction" : "interacts with", "SUID" : 34210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34206", "source" : "4025", "target" : "3845", "shared_name" : "284111 (interacts with) 10479", "name" : "284111 (interacts with) 10479", "interaction" : "interacts with", "SUID" : 34206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34202", "source" : "4025", "target" : "277", "shared_name" : "284111 (interacts with) 285175", "name" : "284111 (interacts with) 285175", "interaction" : "interacts with", "SUID" : 34202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34198", "source" : "4025", "target" : "5877", "shared_name" : "284111 (interacts with) 6535", "name" : "284111 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 34198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34194", "source" : "4025", "target" : "3781", "shared_name" : "284111 (interacts with) 9152", "name" : "284111 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 34194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34190", "source" : "4025", "target" : "1809", "shared_name" : "284111 (interacts with) 6548", "name" : "284111 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 34190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34186", "source" : "4025", "target" : "3473", "shared_name" : "284111 (interacts with) 6528", "name" : "284111 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 34186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34182", "source" : "4025", "target" : "401", "shared_name" : "284111 (interacts with) 6532", "name" : "284111 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 34182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34178", "source" : "4025", "target" : "3601", "shared_name" : "284111 (interacts with) 6531", "name" : "284111 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 34178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34174", "source" : "4025", "target" : "1385", "shared_name" : "284111 (interacts with) 6520", "name" : "284111 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 34174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34170", "source" : "4025", "target" : "2321", "shared_name" : "284111 (interacts with) 6509", "name" : "284111 (interacts with) 6509", "interaction" : "interacts with", "SUID" : 34170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34166", "source" : "4025", "target" : "3077", "shared_name" : "284111 (interacts with) 6506", "name" : "284111 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 34166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34258", "source" : "4021", "target" : "5277", "shared_name" : "203068 (interacts with) 55154", "name" : "203068 (interacts with) 55154", "interaction" : "interacts with", "SUID" : 34258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34254", "source" : "4021", "target" : "1721", "shared_name" : "203068 (interacts with) 51807", "name" : "203068 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 34254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34250", "source" : "4021", "target" : "5773", "shared_name" : "203068 (interacts with) 9181", "name" : "203068 (interacts with) 9181", "interaction" : "interacts with", "SUID" : 34250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34246", "source" : "4021", "target" : "4105", "shared_name" : "203068 (interacts with) 347733", "name" : "203068 (interacts with) 347733", "interaction" : "interacts with", "SUID" : 34246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34242", "source" : "4021", "target" : "5397", "shared_name" : "203068 (interacts with) 85378", "name" : "203068 (interacts with) 85378", "interaction" : "interacts with", "SUID" : 34242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34238", "source" : "4021", "target" : "2665", "shared_name" : "203068 (interacts with) 27229", "name" : "203068 (interacts with) 27229", "interaction" : "interacts with", "SUID" : 34238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34234", "source" : "4021", "target" : "5713", "shared_name" : "203068 (interacts with) 7531", "name" : "203068 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 34234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34230", "source" : "4021", "target" : "705", "shared_name" : "203068 (interacts with) 728378", "name" : "203068 (interacts with) 728378", "interaction" : "interacts with", "SUID" : 34230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34226", "source" : "4021", "target" : "4513", "shared_name" : "203068 (interacts with) 6904", "name" : "203068 (interacts with) 6904", "interaction" : "interacts with", "SUID" : 34226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34222", "source" : "4021", "target" : "5373", "shared_name" : "203068 (interacts with) 28962", "name" : "203068 (interacts with) 28962", "interaction" : "interacts with", "SUID" : 34222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34218", "source" : "4021", "target" : "613", "shared_name" : "203068 (interacts with) 10381", "name" : "203068 (interacts with) 10381", "interaction" : "interacts with", "SUID" : 34218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34450", "source" : "4017", "target" : "501", "shared_name" : "4719 (interacts with) 65993", "name" : "4719 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 34450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34446", "source" : "4017", "target" : "2297", "shared_name" : "4719 (interacts with) 55005", "name" : "4719 (interacts with) 55005", "interaction" : "interacts with", "SUID" : 34446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34442", "source" : "4017", "target" : "3545", "shared_name" : "4719 (interacts with) 708", "name" : "4719 (interacts with) 708", "interaction" : "interacts with", "SUID" : 34442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34438", "source" : "4017", "target" : "3633", "shared_name" : "4719 (interacts with) 51067", "name" : "4719 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 34438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34434", "source" : "4017", "target" : "1129", "shared_name" : "4719 (interacts with) 57505", "name" : "4719 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 34434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34430", "source" : "4017", "target" : "6181", "shared_name" : "4719 (interacts with) 84987", "name" : "4719 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 34430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34426", "source" : "4017", "target" : "4253", "shared_name" : "4719 (interacts with) 84706", "name" : "4719 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 34426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34422", "source" : "4017", "target" : "3705", "shared_name" : "4719 (interacts with) 87178", "name" : "4719 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 34422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34418", "source" : "4017", "target" : "1085", "shared_name" : "4719 (interacts with) 9377", "name" : "4719 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 34418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34414", "source" : "4017", "target" : "2021", "shared_name" : "4719 (interacts with) 5428", "name" : "4719 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 34414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34410", "source" : "4017", "target" : "1865", "shared_name" : "4719 (interacts with) 498", "name" : "4719 (interacts with) 498", "interaction" : "interacts with", "SUID" : 34410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34406", "source" : "4017", "target" : "713", "shared_name" : "4719 (interacts with) 7019", "name" : "4719 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 34406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34402", "source" : "4017", "target" : "721", "shared_name" : "4719 (interacts with) 79731", "name" : "4719 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 34402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34398", "source" : "4017", "target" : "2105", "shared_name" : "4719 (interacts with) 56945", "name" : "4719 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 34398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34394", "source" : "4017", "target" : "5189", "shared_name" : "4719 (interacts with) 57176", "name" : "4719 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 34394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34390", "source" : "4017", "target" : "4621", "shared_name" : "4719 (interacts with) 57038", "name" : "4719 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 34390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34386", "source" : "4017", "target" : "4897", "shared_name" : "4719 (interacts with) 55149", "name" : "4719 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 34386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34382", "source" : "4017", "target" : "4409", "shared_name" : "4719 (interacts with) 6341", "name" : "4719 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 34382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34378", "source" : "4017", "target" : "1197", "shared_name" : "4719 (interacts with) 79587", "name" : "4719 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 34378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34374", "source" : "4017", "target" : "6073", "shared_name" : "4719 (interacts with) 92170", "name" : "4719 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 34374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34370", "source" : "4017", "target" : "5821", "shared_name" : "4719 (interacts with) 4724", "name" : "4719 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 34370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34366", "source" : "4017", "target" : "5833", "shared_name" : "4719 (interacts with) 4726", "name" : "4719 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 34366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34362", "source" : "4017", "target" : "1929", "shared_name" : "4719 (interacts with) 51218", "name" : "4719 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 34362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34358", "source" : "4017", "target" : "6001", "shared_name" : "4719 (interacts with) 55157", "name" : "4719 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 34358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34354", "source" : "4017", "target" : "1337", "shared_name" : "4719 (interacts with) 55863", "name" : "4719 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 34354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34350", "source" : "4017", "target" : "2757", "shared_name" : "4719 (interacts with) 51079", "name" : "4719 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 34350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34346", "source" : "4017", "target" : "5553", "shared_name" : "4719 (interacts with) 55967", "name" : "4719 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 34346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34342", "source" : "4017", "target" : "1669", "shared_name" : "4719 (interacts with) 6390", "name" : "4719 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 34342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34338", "source" : "4017", "target" : "2477", "shared_name" : "4719 (interacts with) 57107", "name" : "4719 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 34338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34334", "source" : "4017", "target" : "521", "shared_name" : "4719 (interacts with) 85476", "name" : "4719 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 34334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34330", "source" : "4017", "target" : "4757", "shared_name" : "4719 (interacts with) 9997", "name" : "4719 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 34330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34326", "source" : "4017", "target" : "5085", "shared_name" : "4719 (interacts with) 56652", "name" : "4719 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 34326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34322", "source" : "4017", "target" : "1053", "shared_name" : "4719 (interacts with) 81689", "name" : "4719 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 34322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34318", "source" : "4017", "target" : "889", "shared_name" : "4719 (interacts with) 80224", "name" : "4719 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 34318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34314", "source" : "4017", "target" : "1561", "shared_name" : "4719 (interacts with) 51117", "name" : "4719 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 34314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34310", "source" : "4017", "target" : "3973", "shared_name" : "4719 (interacts with) 55572", "name" : "4719 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 34310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34306", "source" : "4017", "target" : "2285", "shared_name" : "4719 (interacts with) 51300", "name" : "4719 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 34306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34302", "source" : "4017", "target" : "4101", "shared_name" : "4719 (interacts with) 65260", "name" : "4719 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 34302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34298", "source" : "4017", "target" : "1105", "shared_name" : "4719 (interacts with) 493753", "name" : "4719 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 34298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34294", "source" : "4017", "target" : "5737", "shared_name" : "4719 (interacts with) 84340", "name" : "4719 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 34294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34290", "source" : "4017", "target" : "477", "shared_name" : "4719 (interacts with) 51021", "name" : "4719 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 34290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34286", "source" : "4017", "target" : "4045", "shared_name" : "4719 (interacts with) 29920", "name" : "4719 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 34286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34282", "source" : "4017", "target" : "3501", "shared_name" : "4719 (interacts with) 5831", "name" : "4719 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 34282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34278", "source" : "4017", "target" : "4945", "shared_name" : "4719 (interacts with) 4722", "name" : "4719 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 34278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34274", "source" : "4017", "target" : "2753", "shared_name" : "4719 (interacts with) 4720", "name" : "4719 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 34274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34270", "source" : "4017", "target" : "1869", "shared_name" : "4719 (interacts with) 4729", "name" : "4719 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 34270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34266", "source" : "4017", "target" : "2797", "shared_name" : "4719 (interacts with) 4728", "name" : "4719 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 34266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34262", "source" : "4017", "target" : "1573", "shared_name" : "4719 (interacts with) 4723", "name" : "4719 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 34262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34466", "source" : "4013", "target" : "877", "shared_name" : "6622 (interacts with) 7341", "name" : "6622 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 34466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34462", "source" : "4013", "target" : "5077", "shared_name" : "6622 (interacts with) 8239", "name" : "6622 (interacts with) 8239", "interaction" : "interacts with", "SUID" : 34462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34458", "source" : "4013", "target" : "1257", "shared_name" : "6622 (interacts with) 3098", "name" : "6622 (interacts with) 3098", "interaction" : "interacts with", "SUID" : 34458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34454", "source" : "4013", "target" : "3601", "shared_name" : "6622 (interacts with) 6531", "name" : "6622 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 34454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34498", "source" : "4009", "target" : "2945", "shared_name" : "10588 (interacts with) 471", "name" : "10588 (interacts with) 471", "interaction" : "interacts with", "SUID" : 34498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34494", "source" : "4009", "target" : "4273", "shared_name" : "10588 (interacts with) 4548", "name" : "10588 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 34494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34490", "source" : "4009", "target" : "253", "shared_name" : "10588 (interacts with) 113235", "name" : "10588 (interacts with) 113235", "interaction" : "interacts with", "SUID" : 34490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34486", "source" : "4009", "target" : "1473", "shared_name" : "10588 (interacts with) 4524", "name" : "10588 (interacts with) 4524", "interaction" : "interacts with", "SUID" : 34486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34482", "source" : "4009", "target" : "1821", "shared_name" : "10588 (interacts with) 1719", "name" : "10588 (interacts with) 1719", "interaction" : "interacts with", "SUID" : 34482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34478", "source" : "4009", "target" : "2837", "shared_name" : "10588 (interacts with) 123263", "name" : "10588 (interacts with) 123263", "interaction" : "interacts with", "SUID" : 34478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34474", "source" : "4009", "target" : "3997", "shared_name" : "10588 (interacts with) 1890", "name" : "10588 (interacts with) 1890", "interaction" : "interacts with", "SUID" : 34474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34470", "source" : "4009", "target" : "781", "shared_name" : "10588 (interacts with) 4860", "name" : "10588 (interacts with) 4860", "interaction" : "interacts with", "SUID" : 34470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34562", "source" : "4005", "target" : "5445", "shared_name" : "23636 (interacts with) 8021", "name" : "23636 (interacts with) 8021", "interaction" : "interacts with", "SUID" : 34562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34558", "source" : "4005", "target" : "4549", "shared_name" : "23636 (interacts with) 5903", "name" : "23636 (interacts with) 5903", "interaction" : "interacts with", "SUID" : 34558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34554", "source" : "4005", "target" : "2169", "shared_name" : "23636 (interacts with) 51182", "name" : "23636 (interacts with) 51182", "interaction" : "interacts with", "SUID" : 34554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34550", "source" : "4005", "target" : "1217", "shared_name" : "23636 (interacts with) 3308", "name" : "23636 (interacts with) 3308", "interaction" : "interacts with", "SUID" : 34550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34546", "source" : "4005", "target" : "5781", "shared_name" : "23636 (interacts with) 6672", "name" : "23636 (interacts with) 6672", "interaction" : "interacts with", "SUID" : 34546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34542", "source" : "4005", "target" : "877", "shared_name" : "23636 (interacts with) 7341", "name" : "23636 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 34542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34538", "source" : "4005", "target" : "1349", "shared_name" : "23636 (interacts with) 6606", "name" : "23636 (interacts with) 6606", "interaction" : "interacts with", "SUID" : 34538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34534", "source" : "4005", "target" : "1345", "shared_name" : "23636 (interacts with) 6607", "name" : "23636 (interacts with) 6607", "interaction" : "interacts with", "SUID" : 34534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34530", "source" : "4005", "target" : "3417", "shared_name" : "23636 (interacts with) 5371", "name" : "23636 (interacts with) 5371", "interaction" : "interacts with", "SUID" : 34530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34526", "source" : "4005", "target" : "1837", "shared_name" : "23636 (interacts with) 9939", "name" : "23636 (interacts with) 9939", "interaction" : "interacts with", "SUID" : 34526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34522", "source" : "4005", "target" : "2229", "shared_name" : "23636 (interacts with) 738", "name" : "23636 (interacts with) 738", "interaction" : "interacts with", "SUID" : 34522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34518", "source" : "4005", "target" : "4985", "shared_name" : "23636 (interacts with) 3798", "name" : "23636 (interacts with) 3798", "interaction" : "interacts with", "SUID" : 34518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34514", "source" : "4005", "target" : "4657", "shared_name" : "23636 (interacts with) 64837", "name" : "23636 (interacts with) 64837", "interaction" : "interacts with", "SUID" : 34514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34510", "source" : "4005", "target" : "4517", "shared_name" : "23636 (interacts with) 55704", "name" : "23636 (interacts with) 55704", "interaction" : "interacts with", "SUID" : 34510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34506", "source" : "4005", "target" : "6037", "shared_name" : "23636 (interacts with) 374654", "name" : "23636 (interacts with) 374654", "interaction" : "interacts with", "SUID" : 34506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34502", "source" : "4005", "target" : "4629", "shared_name" : "23636 (interacts with) 6605", "name" : "23636 (interacts with) 6605", "interaction" : "interacts with", "SUID" : 34502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34574", "source" : "4001", "target" : "3769", "shared_name" : "79709 (interacts with) 8085", "name" : "79709 (interacts with) 8085", "interaction" : "interacts with", "SUID" : 34574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34570", "source" : "4001", "target" : "2281", "shared_name" : "79709 (interacts with) 79823", "name" : "79709 (interacts with) 79823", "interaction" : "interacts with", "SUID" : 34570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34566", "source" : "4001", "target" : "3709", "shared_name" : "79709 (interacts with) 9757", "name" : "79709 (interacts with) 9757", "interaction" : "interacts with", "SUID" : 34566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34606", "source" : "3997", "target" : "1129", "shared_name" : "1890 (interacts with) 57505", "name" : "1890 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 34606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34602", "source" : "3997", "target" : "5597", "shared_name" : "1890 (interacts with) 22934", "name" : "1890 (interacts with) 22934", "interaction" : "interacts with", "SUID" : 34602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34598", "source" : "3997", "target" : "1669", "shared_name" : "1890 (interacts with) 6390", "name" : "1890 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 34598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34594", "source" : "3997", "target" : "4757", "shared_name" : "1890 (interacts with) 9997", "name" : "1890 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 34594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34590", "source" : "3997", "target" : "781", "shared_name" : "1890 (interacts with) 4860", "name" : "1890 (interacts with) 4860", "interaction" : "interacts with", "SUID" : 34590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34586", "source" : "3997", "target" : "5793", "shared_name" : "1890 (interacts with) 51251", "name" : "1890 (interacts with) 51251", "interaction" : "interacts with", "SUID" : 34586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34582", "source" : "3997", "target" : "413", "shared_name" : "1890 (interacts with) 51733", "name" : "1890 (interacts with) 51733", "interaction" : "interacts with", "SUID" : 34582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34578", "source" : "3997", "target" : "5113", "shared_name" : "1890 (interacts with) 7084", "name" : "1890 (interacts with) 7084", "interaction" : "interacts with", "SUID" : 34578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34642", "source" : "3993", "target" : "5449", "shared_name" : "3683 (interacts with) 923", "name" : "3683 (interacts with) 923", "interaction" : "interacts with", "SUID" : 34642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34638", "source" : "3993", "target" : "4065", "shared_name" : "3683 (interacts with) 7124", "name" : "3683 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 34638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34634", "source" : "3993", "target" : "3809", "shared_name" : "3683 (interacts with) 81704", "name" : "3683 (interacts with) 81704", "interaction" : "interacts with", "SUID" : 34634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34630", "source" : "3993", "target" : "1541", "shared_name" : "3683 (interacts with) 958", "name" : "3683 (interacts with) 958", "interaction" : "interacts with", "SUID" : 34630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34626", "source" : "3993", "target" : "1125", "shared_name" : "3683 (interacts with) 5551", "name" : "3683 (interacts with) 5551", "interaction" : "interacts with", "SUID" : 34626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34622", "source" : "3993", "target" : "5801", "shared_name" : "3683 (interacts with) 960", "name" : "3683 (interacts with) 960", "interaction" : "interacts with", "SUID" : 34622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34618", "source" : "3993", "target" : "1549", "shared_name" : "3683 (interacts with) 7070", "name" : "3683 (interacts with) 7070", "interaction" : "interacts with", "SUID" : 34618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34614", "source" : "3993", "target" : "3153", "shared_name" : "3683 (interacts with) 3684", "name" : "3683 (interacts with) 3684", "interaction" : "interacts with", "SUID" : 34614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34610", "source" : "3993", "target" : "3297", "shared_name" : "3683 (interacts with) 3383", "name" : "3683 (interacts with) 3383", "interaction" : "interacts with", "SUID" : 34610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34678", "source" : "3989", "target" : "5657", "shared_name" : "2523 (interacts with) 4668", "name" : "2523 (interacts with) 4668", "interaction" : "interacts with", "SUID" : 34678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34674", "source" : "3989", "target" : "897", "shared_name" : "2523 (interacts with) 3073", "name" : "2523 (interacts with) 3073", "interaction" : "interacts with", "SUID" : 34674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34670", "source" : "3989", "target" : "5661", "shared_name" : "2523 (interacts with) 2717", "name" : "2523 (interacts with) 2717", "interaction" : "interacts with", "SUID" : 34670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34666", "source" : "3989", "target" : "3373", "shared_name" : "2523 (interacts with) 2530", "name" : "2523 (interacts with) 2530", "interaction" : "interacts with", "SUID" : 34666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34662", "source" : "3989", "target" : "4309", "shared_name" : "2523 (interacts with) 5654", "name" : "2523 (interacts with) 5654", "interaction" : "interacts with", "SUID" : 34662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34658", "source" : "3989", "target" : "5821", "shared_name" : "2523 (interacts with) 4724", "name" : "2523 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 34658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34654", "source" : "3989", "target" : "5885", "shared_name" : "2523 (interacts with) 4540", "name" : "2523 (interacts with) 4540", "interaction" : "interacts with", "SUID" : 34654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34650", "source" : "3989", "target" : "1905", "shared_name" : "2523 (interacts with) 9488", "name" : "2523 (interacts with) 9488", "interaction" : "interacts with", "SUID" : 34650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34646", "source" : "3989", "target" : "1809", "shared_name" : "2523 (interacts with) 6548", "name" : "2523 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 34646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34734", "source" : "3985", "target" : "2969", "shared_name" : "274 (interacts with) 8867", "name" : "274 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 34734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34730", "source" : "3985", "target" : "5785", "shared_name" : "274 (interacts with) 6857", "name" : "274 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 34730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34726", "source" : "3985", "target" : "4157", "shared_name" : "274 (interacts with) 85021", "name" : "274 (interacts with) 85021", "interaction" : "interacts with", "SUID" : 34726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34722", "source" : "3985", "target" : "4393", "shared_name" : "274 (interacts with) 950", "name" : "274 (interacts with) 950", "interaction" : "interacts with", "SUID" : 34722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34718", "source" : "3985", "target" : "5225", "shared_name" : "274 (interacts with) 5290", "name" : "274 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 34718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34714", "source" : "3985", "target" : "4213", "shared_name" : "274 (interacts with) 5295", "name" : "274 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 34714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34710", "source" : "3985", "target" : "3465", "shared_name" : "274 (interacts with) 5296", "name" : "274 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 34710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34706", "source" : "3985", "target" : "2429", "shared_name" : "274 (interacts with) 4952", "name" : "274 (interacts with) 4952", "interaction" : "interacts with", "SUID" : 34706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34702", "source" : "3985", "target" : "533", "shared_name" : "274 (interacts with) 4036", "name" : "274 (interacts with) 4036", "interaction" : "interacts with", "SUID" : 34702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34698", "source" : "3985", "target" : "1209", "shared_name" : "274 (interacts with) 51763", "name" : "274 (interacts with) 51763", "interaction" : "interacts with", "SUID" : 34698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34694", "source" : "3985", "target" : "5817", "shared_name" : "274 (interacts with) 1950", "name" : "274 (interacts with) 1950", "interaction" : "interacts with", "SUID" : 34694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34690", "source" : "3985", "target" : "4441", "shared_name" : "274 (interacts with) 1213", "name" : "274 (interacts with) 1213", "interaction" : "interacts with", "SUID" : 34690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34686", "source" : "3985", "target" : "3981", "shared_name" : "274 (interacts with) 1785", "name" : "274 (interacts with) 1785", "interaction" : "interacts with", "SUID" : 34686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34682", "source" : "3985", "target" : "5521", "shared_name" : "274 (interacts with) 7518", "name" : "274 (interacts with) 7518", "interaction" : "interacts with", "SUID" : 34682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34814", "source" : "3981", "target" : "3697", "shared_name" : "1785 (interacts with) 7099", "name" : "1785 (interacts with) 7099", "interaction" : "interacts with", "SUID" : 34814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34810", "source" : "3981", "target" : "5785", "shared_name" : "1785 (interacts with) 6857", "name" : "1785 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 34810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34806", "source" : "3981", "target" : "2969", "shared_name" : "1785 (interacts with) 8867", "name" : "1785 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 34806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34802", "source" : "3981", "target" : "4157", "shared_name" : "1785 (interacts with) 85021", "name" : "1785 (interacts with) 85021", "interaction" : "interacts with", "SUID" : 34802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34798", "source" : "3981", "target" : "4393", "shared_name" : "1785 (interacts with) 950", "name" : "1785 (interacts with) 950", "interaction" : "interacts with", "SUID" : 34798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34794", "source" : "3981", "target" : "2429", "shared_name" : "1785 (interacts with) 4952", "name" : "1785 (interacts with) 4952", "interaction" : "interacts with", "SUID" : 34794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34790", "source" : "3981", "target" : "1909", "shared_name" : "1785 (interacts with) 5286", "name" : "1785 (interacts with) 5286", "interaction" : "interacts with", "SUID" : 34790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34786", "source" : "3981", "target" : "533", "shared_name" : "1785 (interacts with) 4036", "name" : "1785 (interacts with) 4036", "interaction" : "interacts with", "SUID" : 34786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34782", "source" : "3981", "target" : "3745", "shared_name" : "1785 (interacts with) 4803", "name" : "1785 (interacts with) 4803", "interaction" : "interacts with", "SUID" : 34782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34778", "source" : "3981", "target" : "4237", "shared_name" : "1785 (interacts with) 4914", "name" : "1785 (interacts with) 4914", "interaction" : "interacts with", "SUID" : 34778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34774", "source" : "3981", "target" : "2005", "shared_name" : "1785 (interacts with) 4846", "name" : "1785 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 34774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34770", "source" : "3981", "target" : "3961", "shared_name" : "1785 (interacts with) 3897", "name" : "1785 (interacts with) 3897", "interaction" : "interacts with", "SUID" : 34770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34766", "source" : "3981", "target" : "4165", "shared_name" : "1785 (interacts with) 3119", "name" : "1785 (interacts with) 3119", "interaction" : "interacts with", "SUID" : 34766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34762", "source" : "3981", "target" : "2641", "shared_name" : "1785 (interacts with) 3123", "name" : "1785 (interacts with) 3123", "interaction" : "interacts with", "SUID" : 34762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34758", "source" : "3981", "target" : "5065", "shared_name" : "1785 (interacts with) 3117", "name" : "1785 (interacts with) 3117", "interaction" : "interacts with", "SUID" : 34758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34754", "source" : "3981", "target" : "4537", "shared_name" : "1785 (interacts with) 2697", "name" : "1785 (interacts with) 2697", "interaction" : "interacts with", "SUID" : 34754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34750", "source" : "3981", "target" : "3189", "shared_name" : "1785 (interacts with) 2799", "name" : "1785 (interacts with) 2799", "interaction" : "interacts with", "SUID" : 34750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34746", "source" : "3981", "target" : "5817", "shared_name" : "1785 (interacts with) 1950", "name" : "1785 (interacts with) 1950", "interaction" : "interacts with", "SUID" : 34746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34742", "source" : "3981", "target" : "4349", "shared_name" : "1785 (interacts with) 5859", "name" : "1785 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 34742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34738", "source" : "3981", "target" : "1877", "shared_name" : "1785 (interacts with) 9531", "name" : "1785 (interacts with) 9531", "interaction" : "interacts with", "SUID" : 34738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34834", "source" : "3977", "target" : "1909", "shared_name" : "51477 (interacts with) 5286", "name" : "51477 (interacts with) 5286", "interaction" : "interacts with", "SUID" : 34834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34830", "source" : "3977", "target" : "4577", "shared_name" : "51477 (interacts with) 7167", "name" : "51477 (interacts with) 7167", "interaction" : "interacts with", "SUID" : 34830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34826", "source" : "3977", "target" : "989", "shared_name" : "51477 (interacts with) 5297", "name" : "51477 (interacts with) 5297", "interaction" : "interacts with", "SUID" : 34826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34822", "source" : "3977", "target" : "3653", "shared_name" : "51477 (interacts with) 8898", "name" : "51477 (interacts with) 8898", "interaction" : "interacts with", "SUID" : 34822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34818", "source" : "3977", "target" : "2969", "shared_name" : "51477 (interacts with) 8867", "name" : "51477 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 34818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34950", "source" : "3973", "target" : "1085", "shared_name" : "55572 (interacts with) 9377", "name" : "55572 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 34950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34946", "source" : "3973", "target" : "1189", "shared_name" : "55572 (interacts with) 7915", "name" : "55572 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 34946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34942", "source" : "3973", "target" : "1053", "shared_name" : "55572 (interacts with) 81689", "name" : "55572 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 34942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34938", "source" : "3973", "target" : "3621", "shared_name" : "55572 (interacts with) 6834", "name" : "55572 (interacts with) 6834", "interaction" : "interacts with", "SUID" : 34938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34934", "source" : "3973", "target" : "6181", "shared_name" : "55572 (interacts with) 84987", "name" : "55572 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 34934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34930", "source" : "3973", "target" : "501", "shared_name" : "55572 (interacts with) 65993", "name" : "55572 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 34930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34926", "source" : "3973", "target" : "521", "shared_name" : "55572 (interacts with) 85476", "name" : "55572 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 34926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34922", "source" : "3973", "target" : "3545", "shared_name" : "55572 (interacts with) 708", "name" : "55572 (interacts with) 708", "interaction" : "interacts with", "SUID" : 34922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34918", "source" : "3973", "target" : "2105", "shared_name" : "55572 (interacts with) 56945", "name" : "55572 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 34918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34914", "source" : "3973", "target" : "5189", "shared_name" : "55572 (interacts with) 57176", "name" : "55572 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 34914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34910", "source" : "3973", "target" : "1129", "shared_name" : "55572 (interacts with) 57505", "name" : "55572 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 34910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34906", "source" : "3973", "target" : "4141", "shared_name" : "55572 (interacts with) 617", "name" : "55572 (interacts with) 617", "interaction" : "interacts with", "SUID" : 34906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34902", "source" : "3973", "target" : "4621", "shared_name" : "55572 (interacts with) 57038", "name" : "55572 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 34902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34898", "source" : "3973", "target" : "889", "shared_name" : "55572 (interacts with) 80224", "name" : "55572 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 34898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34894", "source" : "3973", "target" : "4869", "shared_name" : "55572 (interacts with) 92935", "name" : "55572 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 34894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34890", "source" : "3973", "target" : "4757", "shared_name" : "55572 (interacts with) 9997", "name" : "55572 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 34890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34886", "source" : "3973", "target" : "713", "shared_name" : "55572 (interacts with) 7019", "name" : "55572 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 34886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34882", "source" : "3973", "target" : "5085", "shared_name" : "55572 (interacts with) 56652", "name" : "55572 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 34882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34878", "source" : "3973", "target" : "4409", "shared_name" : "55572 (interacts with) 6341", "name" : "55572 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 34878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34874", "source" : "3973", "target" : "2477", "shared_name" : "55572 (interacts with) 57107", "name" : "55572 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 34874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34870", "source" : "3973", "target" : "5737", "shared_name" : "55572 (interacts with) 84340", "name" : "55572 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 34870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34866", "source" : "3973", "target" : "1197", "shared_name" : "55572 (interacts with) 79587", "name" : "55572 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 34866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34862", "source" : "3973", "target" : "4101", "shared_name" : "55572 (interacts with) 65260", "name" : "55572 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 34862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34858", "source" : "3973", "target" : "6073", "shared_name" : "55572 (interacts with) 92170", "name" : "55572 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 34858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34854", "source" : "3973", "target" : "2009", "shared_name" : "55572 (interacts with) 79133", "name" : "55572 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 34854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34850", "source" : "3973", "target" : "721", "shared_name" : "55572 (interacts with) 79731", "name" : "55572 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 34850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34846", "source" : "3973", "target" : "893", "shared_name" : "55572 (interacts with) 9361", "name" : "55572 (interacts with) 9361", "interaction" : "interacts with", "SUID" : 34846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34842", "source" : "3973", "target" : "5089", "shared_name" : "55572 (interacts with) 1373", "name" : "55572 (interacts with) 1373", "interaction" : "interacts with", "SUID" : 34842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34838", "source" : "3973", "target" : "1237", "shared_name" : "55572 (interacts with) 3329", "name" : "55572 (interacts with) 3329", "interaction" : "interacts with", "SUID" : 34838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34974", "source" : "3969", "target" : "1749", "shared_name" : "57468 (interacts with) 728294", "name" : "57468 (interacts with) 728294", "interaction" : "interacts with", "SUID" : 34974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34970", "source" : "3969", "target" : "401", "shared_name" : "57468 (interacts with) 6532", "name" : "57468 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 34970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34966", "source" : "3969", "target" : "3781", "shared_name" : "57468 (interacts with) 9152", "name" : "57468 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 34966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34962", "source" : "3969", "target" : "309", "shared_name" : "57468 (interacts with) 6536", "name" : "57468 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 34962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34958", "source" : "3969", "target" : "1681", "shared_name" : "57468 (interacts with) 9990", "name" : "57468 (interacts with) 9990", "interaction" : "interacts with", "SUID" : 34958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34954", "source" : "3969", "target" : "3077", "shared_name" : "57468 (interacts with) 6506", "name" : "57468 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 34954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34978", "source" : "3965", "target" : "1601", "shared_name" : "9373 (interacts with) 7415", "name" : "9373 (interacts with) 7415", "interaction" : "interacts with", "SUID" : 34978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35018", "source" : "3961", "target" : "1385", "shared_name" : "3897 (interacts with) 6520", "name" : "3897 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 35018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35014", "source" : "3961", "target" : "753", "shared_name" : "3897 (interacts with) 4099", "name" : "3897 (interacts with) 4099", "interaction" : "interacts with", "SUID" : 35014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35010", "source" : "3961", "target" : "1633", "shared_name" : "3897 (interacts with) 57731", "name" : "3897 (interacts with) 57731", "interaction" : "interacts with", "SUID" : 35010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35006", "source" : "3961", "target" : "1973", "shared_name" : "3897 (interacts with) 6709", "name" : "3897 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 35006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35002", "source" : "3961", "target" : "3637", "shared_name" : "3897 (interacts with) 6712", "name" : "3897 (interacts with) 6712", "interaction" : "interacts with", "SUID" : 35002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34998", "source" : "3961", "target" : "5313", "shared_name" : "3897 (interacts with) 6197", "name" : "3897 (interacts with) 6197", "interaction" : "interacts with", "SUID" : 34998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34994", "source" : "3961", "target" : "5081", "shared_name" : "3897 (interacts with) 5594", "name" : "3897 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 34994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34990", "source" : "3961", "target" : "2197", "shared_name" : "3897 (interacts with) 4684", "name" : "3897 (interacts with) 4684", "interaction" : "interacts with", "SUID" : 34990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34986", "source" : "3961", "target" : "2861", "shared_name" : "3897 (interacts with) 284217", "name" : "3897 (interacts with) 284217", "interaction" : "interacts with", "SUID" : 34986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "34982", "source" : "3961", "target" : "1497", "shared_name" : "3897 (interacts with) 3912", "name" : "3897 (interacts with) 3912", "interaction" : "interacts with", "SUID" : 34982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35074", "source" : "3957", "target" : "2657", "shared_name" : "23114 (interacts with) 6900", "name" : "23114 (interacts with) 6900", "interaction" : "interacts with", "SUID" : 35074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35070", "source" : "3957", "target" : "1973", "shared_name" : "23114 (interacts with) 6709", "name" : "23114 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 35070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35066", "source" : "3957", "target" : "3561", "shared_name" : "23114 (interacts with) 27445", "name" : "23114 (interacts with) 27445", "interaction" : "interacts with", "SUID" : 35066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35062", "source" : "3957", "target" : "4509", "shared_name" : "23114 (interacts with) 2902", "name" : "23114 (interacts with) 2902", "interaction" : "interacts with", "SUID" : 35062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35058", "source" : "3957", "target" : "2197", "shared_name" : "23114 (interacts with) 4684", "name" : "23114 (interacts with) 4684", "interaction" : "interacts with", "SUID" : 35058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35054", "source" : "3957", "target" : "4257", "shared_name" : "23114 (interacts with) 8573", "name" : "23114 (interacts with) 8573", "interaction" : "interacts with", "SUID" : 35054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35050", "source" : "3957", "target" : "1633", "shared_name" : "23114 (interacts with) 57731", "name" : "23114 (interacts with) 57731", "interaction" : "interacts with", "SUID" : 35050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35046", "source" : "3957", "target" : "5229", "shared_name" : "23114 (interacts with) 6335", "name" : "23114 (interacts with) 6335", "interaction" : "interacts with", "SUID" : 35046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35042", "source" : "3957", "target" : "3637", "shared_name" : "23114 (interacts with) 6712", "name" : "23114 (interacts with) 6712", "interaction" : "interacts with", "SUID" : 35042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35038", "source" : "3957", "target" : "4841", "shared_name" : "23114 (interacts with) 6334", "name" : "23114 (interacts with) 6334", "interaction" : "interacts with", "SUID" : 35038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35034", "source" : "3957", "target" : "373", "shared_name" : "23114 (interacts with) 6328", "name" : "23114 (interacts with) 6328", "interaction" : "interacts with", "SUID" : 35034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35030", "source" : "3957", "target" : "689", "shared_name" : "23114 (interacts with) 6329", "name" : "23114 (interacts with) 6329", "interaction" : "interacts with", "SUID" : 35030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35026", "source" : "3957", "target" : "381", "shared_name" : "23114 (interacts with) 6323", "name" : "23114 (interacts with) 6323", "interaction" : "interacts with", "SUID" : 35026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35022", "source" : "3957", "target" : "377", "shared_name" : "23114 (interacts with) 6326", "name" : "23114 (interacts with) 6326", "interaction" : "interacts with", "SUID" : 35022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35082", "source" : "3949", "target" : "1185", "shared_name" : "26090 (interacts with) 51324", "name" : "26090 (interacts with) 51324", "interaction" : "interacts with", "SUID" : 35082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35078", "source" : "3949", "target" : "3861", "shared_name" : "26090 (interacts with) 23646", "name" : "26090 (interacts with) 23646", "interaction" : "interacts with", "SUID" : 35078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35094", "source" : "3945", "target" : "5569", "shared_name" : "846 (interacts with) 59345", "name" : "846 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 35094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35090", "source" : "3945", "target" : "5117", "shared_name" : "846 (interacts with) 25897", "name" : "846 (interacts with) 25897", "interaction" : "interacts with", "SUID" : 35090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35086", "source" : "3945", "target" : "5749", "shared_name" : "846 (interacts with) 10959", "name" : "846 (interacts with) 10959", "interaction" : "interacts with", "SUID" : 35086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35162", "source" : "3941", "target" : "3685", "shared_name" : "1435 (interacts with) 3265", "name" : "1435 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 35162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35158", "source" : "3941", "target" : "3305", "shared_name" : "1435 (interacts with) 7040", "name" : "1435 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 35158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35154", "source" : "3941", "target" : "2153", "shared_name" : "1435 (interacts with) 7042", "name" : "1435 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 35154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35150", "source" : "3941", "target" : "4065", "shared_name" : "1435 (interacts with) 7124", "name" : "1435 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 35150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35146", "source" : "3941", "target" : "1529", "shared_name" : "1435 (interacts with) 3458", "name" : "1435 (interacts with) 3458", "interaction" : "interacts with", "SUID" : 35146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35142", "source" : "3941", "target" : "3409", "shared_name" : "1435 (interacts with) 7043", "name" : "1435 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 35142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35138", "source" : "3941", "target" : "3173", "shared_name" : "1435 (interacts with) 3558", "name" : "1435 (interacts with) 3558", "interaction" : "interacts with", "SUID" : 35138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35134", "source" : "3941", "target" : "2641", "shared_name" : "1435 (interacts with) 3123", "name" : "1435 (interacts with) 3123", "interaction" : "interacts with", "SUID" : 35134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35130", "source" : "3941", "target" : "1985", "shared_name" : "1435 (interacts with) 3456", "name" : "1435 (interacts with) 3456", "interaction" : "interacts with", "SUID" : 35130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35126", "source" : "3941", "target" : "2597", "shared_name" : "1435 (interacts with) 2056", "name" : "1435 (interacts with) 2056", "interaction" : "interacts with", "SUID" : 35126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35122", "source" : "3941", "target" : "2885", "shared_name" : "1435 (interacts with) 1437", "name" : "1435 (interacts with) 1437", "interaction" : "interacts with", "SUID" : 35122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35118", "source" : "3941", "target" : "6013", "shared_name" : "1435 (interacts with) 3574", "name" : "1435 (interacts with) 3574", "interaction" : "interacts with", "SUID" : 35118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35114", "source" : "3941", "target" : "825", "shared_name" : "1435 (interacts with) 25942", "name" : "1435 (interacts with) 25942", "interaction" : "interacts with", "SUID" : 35114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35110", "source" : "3941", "target" : "3553", "shared_name" : "1435 (interacts with) 3592", "name" : "1435 (interacts with) 3592", "interaction" : "interacts with", "SUID" : 35110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35106", "source" : "3941", "target" : "4769", "shared_name" : "1435 (interacts with) 7132", "name" : "1435 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 35106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35102", "source" : "3941", "target" : "885", "shared_name" : "1435 (interacts with) 6347", "name" : "1435 (interacts with) 6347", "interaction" : "interacts with", "SUID" : 35102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35098", "source" : "3941", "target" : "525", "shared_name" : "1435 (interacts with) 6598", "name" : "1435 (interacts with) 6598", "interaction" : "interacts with", "SUID" : 35098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35250", "source" : "3937", "target" : "3017", "shared_name" : "4001 (interacts with) 4790", "name" : "4001 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 35250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35246", "source" : "3937", "target" : "4949", "shared_name" : "4001 (interacts with) 5970", "name" : "4001 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 35246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35242", "source" : "3937", "target" : "5965", "shared_name" : "4001 (interacts with) 596", "name" : "4001 (interacts with) 596", "interaction" : "interacts with", "SUID" : 35242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35238", "source" : "3937", "target" : "4065", "shared_name" : "4001 (interacts with) 7124", "name" : "4001 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 35238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35234", "source" : "3937", "target" : "5149", "shared_name" : "4001 (interacts with) 5058", "name" : "4001 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 35234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35230", "source" : "3937", "target" : "1973", "shared_name" : "4001 (interacts with) 6709", "name" : "4001 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 35230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35226", "source" : "3937", "target" : "829", "shared_name" : "4001 (interacts with) 8772", "name" : "4001 (interacts with) 8772", "interaction" : "interacts with", "SUID" : 35226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35222", "source" : "3937", "target" : "5333", "shared_name" : "4001 (interacts with) 5591", "name" : "4001 (interacts with) 5591", "interaction" : "interacts with", "SUID" : 35222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35218", "source" : "3937", "target" : "4769", "shared_name" : "4001 (interacts with) 7132", "name" : "4001 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 35218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35214", "source" : "3937", "target" : "1845", "shared_name" : "4001 (interacts with) 836", "name" : "4001 (interacts with) 836", "interaction" : "interacts with", "SUID" : 35214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35210", "source" : "3937", "target" : "3041", "shared_name" : "4001 (interacts with) 5663", "name" : "4001 (interacts with) 5663", "interaction" : "interacts with", "SUID" : 35210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35206", "source" : "3937", "target" : "1125", "shared_name" : "4001 (interacts with) 5551", "name" : "4001 (interacts with) 5551", "interaction" : "interacts with", "SUID" : 35206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35202", "source" : "3937", "target" : "4077", "shared_name" : "4001 (interacts with) 71", "name" : "4001 (interacts with) 71", "interaction" : "interacts with", "SUID" : 35202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35198", "source" : "3937", "target" : "2905", "shared_name" : "4001 (interacts with) 5664", "name" : "4001 (interacts with) 5664", "interaction" : "interacts with", "SUID" : 35198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35194", "source" : "3937", "target" : "1329", "shared_name" : "4001 (interacts with) 26277", "name" : "4001 (interacts with) 26277", "interaction" : "interacts with", "SUID" : 35194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35190", "source" : "3937", "target" : "3021", "shared_name" : "4001 (interacts with) 84823", "name" : "4001 (interacts with) 84823", "interaction" : "interacts with", "SUID" : 35190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35186", "source" : "3937", "target" : "1965", "shared_name" : "4001 (interacts with) 7443", "name" : "4001 (interacts with) 7443", "interaction" : "interacts with", "SUID" : 35186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35182", "source" : "3937", "target" : "5297", "shared_name" : "4001 (interacts with) 6775", "name" : "4001 (interacts with) 6775", "interaction" : "interacts with", "SUID" : 35182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35178", "source" : "3937", "target" : "629", "shared_name" : "4001 (interacts with) 7013", "name" : "4001 (interacts with) 7013", "interaction" : "interacts with", "SUID" : 35178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35174", "source" : "3937", "target" : "3789", "shared_name" : "4001 (interacts with) 23345", "name" : "4001 (interacts with) 23345", "interaction" : "interacts with", "SUID" : 35174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35170", "source" : "3937", "target" : "4497", "shared_name" : "4001 (interacts with) 8243", "name" : "4001 (interacts with) 8243", "interaction" : "interacts with", "SUID" : 35170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35166", "source" : "3937", "target" : "4797", "shared_name" : "4001 (interacts with) 10735", "name" : "4001 (interacts with) 10735", "interaction" : "interacts with", "SUID" : 35166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35362", "source" : "3933", "target" : "5185", "shared_name" : "10524 (interacts with) 1499", "name" : "10524 (interacts with) 1499", "interaction" : "interacts with", "SUID" : 35362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35358", "source" : "3933", "target" : "1893", "shared_name" : "10524 (interacts with) 1387", "name" : "10524 (interacts with) 1387", "interaction" : "interacts with", "SUID" : 35358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35354", "source" : "3933", "target" : "2625", "shared_name" : "10524 (interacts with) 3065", "name" : "10524 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 35354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35350", "source" : "3933", "target" : "1765", "shared_name" : "10524 (interacts with) 5308", "name" : "10524 (interacts with) 5308", "interaction" : "interacts with", "SUID" : 35350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35346", "source" : "3933", "target" : "5745", "shared_name" : "10524 (interacts with) 7471", "name" : "10524 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 35346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35342", "source" : "3933", "target" : "2389", "shared_name" : "10524 (interacts with) 6925", "name" : "10524 (interacts with) 6925", "interaction" : "interacts with", "SUID" : 35342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35338", "source" : "3933", "target" : "1793", "shared_name" : "10524 (interacts with) 7515", "name" : "10524 (interacts with) 7515", "interaction" : "interacts with", "SUID" : 35338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35334", "source" : "3933", "target" : "5521", "shared_name" : "10524 (interacts with) 7518", "name" : "10524 (interacts with) 7518", "interaction" : "interacts with", "SUID" : 35334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35330", "source" : "3933", "target" : "981", "shared_name" : "10524 (interacts with) 7157", "name" : "10524 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 35330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35326", "source" : "3933", "target" : "5197", "shared_name" : "10524 (interacts with) 7156", "name" : "10524 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 35326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35322", "source" : "3933", "target" : "877", "shared_name" : "10524 (interacts with) 7341", "name" : "10524 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 35322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35318", "source" : "3933", "target" : "5849", "shared_name" : "10524 (interacts with) 6613", "name" : "10524 (interacts with) 6613", "interaction" : "interacts with", "SUID" : 35318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35314", "source" : "3933", "target" : "2305", "shared_name" : "10524 (interacts with) 6908", "name" : "10524 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 35314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35310", "source" : "3933", "target" : "1629", "shared_name" : "10524 (interacts with) 6047", "name" : "10524 (interacts with) 6047", "interaction" : "interacts with", "SUID" : 35310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35306", "source" : "3933", "target" : "2921", "shared_name" : "10524 (interacts with) 5981", "name" : "10524 (interacts with) 5981", "interaction" : "interacts with", "SUID" : 35306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35302", "source" : "3933", "target" : "729", "shared_name" : "10524 (interacts with) 5888", "name" : "10524 (interacts with) 5888", "interaction" : "interacts with", "SUID" : 35302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35298", "source" : "3933", "target" : "5333", "shared_name" : "10524 (interacts with) 5591", "name" : "10524 (interacts with) 5591", "interaction" : "interacts with", "SUID" : 35298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35294", "source" : "3933", "target" : "5861", "shared_name" : "10524 (interacts with) 5435", "name" : "10524 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 35294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35290", "source" : "3933", "target" : "2649", "shared_name" : "10524 (interacts with) 5430", "name" : "10524 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 35290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35286", "source" : "3933", "target" : "1729", "shared_name" : "10524 (interacts with) 5111", "name" : "10524 (interacts with) 5111", "interaction" : "interacts with", "SUID" : 35286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35282", "source" : "3933", "target" : "2529", "shared_name" : "10524 (interacts with) 5424", "name" : "10524 (interacts with) 5424", "interaction" : "interacts with", "SUID" : 35282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35278", "source" : "3933", "target" : "2809", "shared_name" : "10524 (interacts with) 11284", "name" : "10524 (interacts with) 11284", "interaction" : "interacts with", "SUID" : 35278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35274", "source" : "3933", "target" : "3049", "shared_name" : "10524 (interacts with) 142", "name" : "10524 (interacts with) 142", "interaction" : "interacts with", "SUID" : 35274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35270", "source" : "3933", "target" : "2053", "shared_name" : "10524 (interacts with) 7468", "name" : "10524 (interacts with) 7468", "interaction" : "interacts with", "SUID" : 35270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35266", "source" : "3933", "target" : "4249", "shared_name" : "10524 (interacts with) 4331", "name" : "10524 (interacts with) 4331", "interaction" : "interacts with", "SUID" : 35266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35262", "source" : "3933", "target" : "2425", "shared_name" : "10524 (interacts with) 3981", "name" : "10524 (interacts with) 3981", "interaction" : "interacts with", "SUID" : 35262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35258", "source" : "3933", "target" : "4469", "shared_name" : "10524 (interacts with) 8295", "name" : "10524 (interacts with) 8295", "interaction" : "interacts with", "SUID" : 35258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35254", "source" : "3933", "target" : "3177", "shared_name" : "10524 (interacts with) 5321", "name" : "10524 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 35254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35374", "source" : "3929", "target" : "5049", "shared_name" : "5860 (interacts with) 6697", "name" : "5860 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 35374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35370", "source" : "3929", "target" : "3689", "shared_name" : "5860 (interacts with) 7054", "name" : "5860 (interacts with) 7054", "interaction" : "interacts with", "SUID" : 35370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35366", "source" : "3929", "target" : "1013", "shared_name" : "5860 (interacts with) 6898", "name" : "5860 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 35366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35438", "source" : "3925", "target" : "973", "shared_name" : "1051 (interacts with) 5595", "name" : "1051 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 35438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35434", "source" : "3925", "target" : "637", "shared_name" : "1051 (interacts with) 6654", "name" : "1051 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 35434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35430", "source" : "3925", "target" : "3685", "shared_name" : "1051 (interacts with) 3265", "name" : "1051 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 35430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35426", "source" : "3925", "target" : "5361", "shared_name" : "1051 (interacts with) 5604", "name" : "1051 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 35426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35422", "source" : "3925", "target" : "4521", "shared_name" : "1051 (interacts with) 5894", "name" : "1051 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 35422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35418", "source" : "3925", "target" : "2937", "shared_name" : "1051 (interacts with) 1457", "name" : "1051 (interacts with) 1457", "interaction" : "interacts with", "SUID" : 35418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35414", "source" : "3925", "target" : "4981", "shared_name" : "1051 (interacts with) 6774", "name" : "1051 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 35414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35410", "source" : "3925", "target" : "2061", "shared_name" : "1051 (interacts with) 3570", "name" : "1051 (interacts with) 3570", "interaction" : "interacts with", "SUID" : 35410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35406", "source" : "3925", "target" : "5313", "shared_name" : "1051 (interacts with) 6197", "name" : "1051 (interacts with) 6197", "interaction" : "interacts with", "SUID" : 35406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35402", "source" : "3925", "target" : "4949", "shared_name" : "1051 (interacts with) 5970", "name" : "1051 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 35402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35398", "source" : "3925", "target" : "3017", "shared_name" : "1051 (interacts with) 4790", "name" : "1051 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 35398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35394", "source" : "3925", "target" : "5081", "shared_name" : "1051 (interacts with) 5594", "name" : "1051 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 35394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35390", "source" : "3925", "target" : "1293", "shared_name" : "1051 (interacts with) 2908", "name" : "1051 (interacts with) 2908", "interaction" : "interacts with", "SUID" : 35390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35386", "source" : "3925", "target" : "873", "shared_name" : "1051 (interacts with) 1385", "name" : "1051 (interacts with) 1385", "interaction" : "interacts with", "SUID" : 35386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35382", "source" : "3925", "target" : "3517", "shared_name" : "1051 (interacts with) 2033", "name" : "1051 (interacts with) 2033", "interaction" : "interacts with", "SUID" : 35382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35378", "source" : "3925", "target" : "785", "shared_name" : "1051 (interacts with) 1958", "name" : "1051 (interacts with) 1958", "interaction" : "interacts with", "SUID" : 35378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35454", "source" : "3921", "target" : "2901", "shared_name" : "10367 (interacts with) 6647", "name" : "10367 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 35454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35450", "source" : "3921", "target" : "3421", "shared_name" : "10367 (interacts with) 4967", "name" : "10367 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 35450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35446", "source" : "3921", "target" : "4149", "shared_name" : "10367 (interacts with) 8893", "name" : "10367 (interacts with) 8893", "interaction" : "interacts with", "SUID" : 35446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35442", "source" : "3921", "target" : "2445", "shared_name" : "10367 (interacts with) 10939", "name" : "10367 (interacts with) 10939", "interaction" : "interacts with", "SUID" : 35442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35502", "source" : "3917", "target" : "3997", "shared_name" : "22978 (interacts with) 1890", "name" : "22978 (interacts with) 1890", "interaction" : "interacts with", "SUID" : 35502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35498", "source" : "3917", "target" : "4041", "shared_name" : "22978 (interacts with) 847", "name" : "22978 (interacts with) 847", "interaction" : "interacts with", "SUID" : 35498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35494", "source" : "3917", "target" : "781", "shared_name" : "22978 (interacts with) 4860", "name" : "22978 (interacts with) 4860", "interaction" : "interacts with", "SUID" : 35494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35490", "source" : "3917", "target" : "1253", "shared_name" : "22978 (interacts with) 2876", "name" : "22978 (interacts with) 2876", "interaction" : "interacts with", "SUID" : 35490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35486", "source" : "3917", "target" : "5329", "shared_name" : "22978 (interacts with) 4907", "name" : "22978 (interacts with) 4907", "interaction" : "interacts with", "SUID" : 35486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35482", "source" : "3917", "target" : "4045", "shared_name" : "22978 (interacts with) 29920", "name" : "22978 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 35482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35478", "source" : "3917", "target" : "3501", "shared_name" : "22978 (interacts with) 5831", "name" : "22978 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 35478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35474", "source" : "3917", "target" : "1713", "shared_name" : "22978 (interacts with) 5631", "name" : "22978 (interacts with) 5631", "interaction" : "interacts with", "SUID" : 35474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35470", "source" : "3917", "target" : "4993", "shared_name" : "22978 (interacts with) 8622", "name" : "22978 (interacts with) 8622", "interaction" : "interacts with", "SUID" : 35470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35466", "source" : "3917", "target" : "3793", "shared_name" : "22978 (interacts with) 28965", "name" : "22978 (interacts with) 28965", "interaction" : "interacts with", "SUID" : 35466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35462", "source" : "3917", "target" : "5841", "shared_name" : "22978 (interacts with) 10846", "name" : "22978 (interacts with) 10846", "interaction" : "interacts with", "SUID" : 35462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35458", "source" : "3917", "target" : "5001", "shared_name" : "22978 (interacts with) 132158", "name" : "22978 (interacts with) 132158", "interaction" : "interacts with", "SUID" : 35458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35514", "source" : "3909", "target" : "3861", "shared_name" : "10908 (interacts with) 23646", "name" : "10908 (interacts with) 23646", "interaction" : "interacts with", "SUID" : 35514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35510", "source" : "3909", "target" : "1277", "shared_name" : "10908 (interacts with) 79143", "name" : "10908 (interacts with) 79143", "interaction" : "interacts with", "SUID" : 35510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35506", "source" : "3909", "target" : "5305", "shared_name" : "10908 (interacts with) 6901", "name" : "10908 (interacts with) 6901", "interaction" : "interacts with", "SUID" : 35506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35518", "source" : "3905", "target" : "3997", "shared_name" : "5455 (interacts with) 1890", "name" : "5455 (interacts with) 1890", "interaction" : "interacts with", "SUID" : 35518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35638", "source" : "3901", "target" : "1129", "shared_name" : "19 (interacts with) 57505", "name" : "19 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 35638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35634", "source" : "3901", "target" : "5797", "shared_name" : "19 (interacts with) 3030", "name" : "19 (interacts with) 3030", "interaction" : "interacts with", "SUID" : 35634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35630", "source" : "3901", "target" : "2025", "shared_name" : "19 (interacts with) 549", "name" : "19 (interacts with) 549", "interaction" : "interacts with", "SUID" : 35630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35626", "source" : "3901", "target" : "4025", "shared_name" : "19 (interacts with) 284111", "name" : "19 (interacts with) 284111", "interaction" : "interacts with", "SUID" : 35626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35622", "source" : "3901", "target" : "6009", "shared_name" : "19 (interacts with) 64849", "name" : "19 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 35622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35618", "source" : "3901", "target" : "6149", "shared_name" : "19 (interacts with) 335", "name" : "19 (interacts with) 335", "interaction" : "interacts with", "SUID" : 35618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35614", "source" : "3901", "target" : "2957", "shared_name" : "19 (interacts with) 5465", "name" : "19 (interacts with) 5465", "interaction" : "interacts with", "SUID" : 35614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35610", "source" : "3901", "target" : "4589", "shared_name" : "19 (interacts with) 8431", "name" : "19 (interacts with) 8431", "interaction" : "interacts with", "SUID" : 35610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35606", "source" : "3901", "target" : "4881", "shared_name" : "19 (interacts with) 6833", "name" : "19 (interacts with) 6833", "interaction" : "interacts with", "SUID" : 35606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35602", "source" : "3901", "target" : "2081", "shared_name" : "19 (interacts with) 5468", "name" : "19 (interacts with) 5468", "interaction" : "interacts with", "SUID" : 35602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35598", "source" : "3901", "target" : "3825", "shared_name" : "19 (interacts with) 5915", "name" : "19 (interacts with) 5915", "interaction" : "interacts with", "SUID" : 35598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35594", "source" : "3901", "target" : "5941", "shared_name" : "19 (interacts with) 5914", "name" : "19 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 35594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35590", "source" : "3901", "target" : "3757", "shared_name" : "19 (interacts with) 215", "name" : "19 (interacts with) 215", "interaction" : "interacts with", "SUID" : 35590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35586", "source" : "3901", "target" : "1829", "shared_name" : "19 (interacts with) 7421", "name" : "19 (interacts with) 7421", "interaction" : "interacts with", "SUID" : 35586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35582", "source" : "3901", "target" : "341", "shared_name" : "19 (interacts with) 4547", "name" : "19 (interacts with) 4547", "interaction" : "interacts with", "SUID" : 35582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35578", "source" : "3901", "target" : "1097", "shared_name" : "19 (interacts with) 79718", "name" : "19 (interacts with) 79718", "interaction" : "interacts with", "SUID" : 35578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35574", "source" : "3901", "target" : "2673", "shared_name" : "19 (interacts with) 8841", "name" : "19 (interacts with) 8841", "interaction" : "interacts with", "SUID" : 35574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35570", "source" : "3901", "target" : "1893", "shared_name" : "19 (interacts with) 1387", "name" : "19 (interacts with) 1387", "interaction" : "interacts with", "SUID" : 35570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35566", "source" : "3901", "target" : "4097", "shared_name" : "19 (interacts with) 9611", "name" : "19 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 35566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35562", "source" : "3901", "target" : "681", "shared_name" : "19 (interacts with) 6646", "name" : "19 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 35562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35558", "source" : "3901", "target" : "389", "shared_name" : "19 (interacts with) 7299", "name" : "19 (interacts with) 7299", "interaction" : "interacts with", "SUID" : 35558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35554", "source" : "3901", "target" : "1385", "shared_name" : "19 (interacts with) 6520", "name" : "19 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 35554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35550", "source" : "3901", "target" : "3185", "shared_name" : "19 (interacts with) 5053", "name" : "19 (interacts with) 5053", "interaction" : "interacts with", "SUID" : 35550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35546", "source" : "3901", "target" : "3421", "shared_name" : "19 (interacts with) 4967", "name" : "19 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 35546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35542", "source" : "3901", "target" : "2005", "shared_name" : "19 (interacts with) 4846", "name" : "19 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 35542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35538", "source" : "3901", "target" : "2321", "shared_name" : "19 (interacts with) 6509", "name" : "19 (interacts with) 6509", "interaction" : "interacts with", "SUID" : 35538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35534", "source" : "3901", "target" : "4169", "shared_name" : "19 (interacts with) 10993", "name" : "19 (interacts with) 10993", "interaction" : "interacts with", "SUID" : 35534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35530", "source" : "3901", "target" : "493", "shared_name" : "19 (interacts with) 594", "name" : "19 (interacts with) 594", "interaction" : "interacts with", "SUID" : 35530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35526", "source" : "3901", "target" : "4341", "shared_name" : "19 (interacts with) 2729", "name" : "19 (interacts with) 2729", "interaction" : "interacts with", "SUID" : 35526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35522", "source" : "3901", "target" : "5349", "shared_name" : "19 (interacts with) 440", "name" : "19 (interacts with) 440", "interaction" : "interacts with", "SUID" : 35522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35710", "source" : "3893", "target" : "557", "shared_name" : "151056 (interacts with) 5730", "name" : "151056 (interacts with) 5730", "interaction" : "interacts with", "SUID" : 35710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35706", "source" : "3893", "target" : "5429", "shared_name" : "151056 (interacts with) 5048", "name" : "151056 (interacts with) 5048", "interaction" : "interacts with", "SUID" : 35706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35702", "source" : "3893", "target" : "2853", "shared_name" : "151056 (interacts with) 8398", "name" : "151056 (interacts with) 8398", "interaction" : "interacts with", "SUID" : 35702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35698", "source" : "3893", "target" : "3493", "shared_name" : "151056 (interacts with) 348", "name" : "151056 (interacts with) 348", "interaction" : "interacts with", "SUID" : 35698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35694", "source" : "3893", "target" : "385", "shared_name" : "151056 (interacts with) 5319", "name" : "151056 (interacts with) 5319", "interaction" : "interacts with", "SUID" : 35694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35690", "source" : "3893", "target" : "2277", "shared_name" : "151056 (interacts with) 686", "name" : "151056 (interacts with) 686", "interaction" : "interacts with", "SUID" : 35690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35686", "source" : "3893", "target" : "6185", "shared_name" : "151056 (interacts with) 4035", "name" : "151056 (interacts with) 4035", "interaction" : "interacts with", "SUID" : 35686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35682", "source" : "3893", "target" : "833", "shared_name" : "151056 (interacts with) 25974", "name" : "151056 (interacts with) 25974", "interaction" : "interacts with", "SUID" : 35682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35678", "source" : "3893", "target" : "653", "shared_name" : "151056 (interacts with) 6948", "name" : "151056 (interacts with) 6948", "interaction" : "interacts with", "SUID" : 35678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35674", "source" : "3893", "target" : "6025", "shared_name" : "151056 (interacts with) 80704", "name" : "151056 (interacts with) 80704", "interaction" : "interacts with", "SUID" : 35674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35670", "source" : "3893", "target" : "3613", "shared_name" : "151056 (interacts with) 50640", "name" : "151056 (interacts with) 50640", "interaction" : "interacts with", "SUID" : 35670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35666", "source" : "3893", "target" : "5305", "shared_name" : "151056 (interacts with) 6901", "name" : "151056 (interacts with) 6901", "interaction" : "interacts with", "SUID" : 35666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35662", "source" : "3893", "target" : "2925", "shared_name" : "151056 (interacts with) 8802", "name" : "151056 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 35662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35658", "source" : "3893", "target" : "409", "shared_name" : "151056 (interacts with) 10558", "name" : "151056 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 35658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35654", "source" : "3893", "target" : "3425", "shared_name" : "151056 (interacts with) 8803", "name" : "151056 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 35654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35650", "source" : "3893", "target" : "681", "shared_name" : "151056 (interacts with) 6646", "name" : "151056 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 35650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35646", "source" : "3893", "target" : "4941", "shared_name" : "151056 (interacts with) 6342", "name" : "151056 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 35646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35642", "source" : "3893", "target" : "3461", "shared_name" : "151056 (interacts with) 5538", "name" : "151056 (interacts with) 5538", "interaction" : "interacts with", "SUID" : 35642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35774", "source" : "3889", "target" : "973", "shared_name" : "1605 (interacts with) 5595", "name" : "1605 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 35774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35770", "source" : "3889", "target" : "5081", "shared_name" : "1605 (interacts with) 5594", "name" : "1605 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 35770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35766", "source" : "3889", "target" : "1069", "shared_name" : "1605 (interacts with) 5879", "name" : "1605 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 35766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35762", "source" : "3889", "target" : "5149", "shared_name" : "1605 (interacts with) 5058", "name" : "1605 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 35762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35758", "source" : "3889", "target" : "3289", "shared_name" : "1605 (interacts with) 5913", "name" : "1605 (interacts with) 5913", "interaction" : "interacts with", "SUID" : 35758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35754", "source" : "3889", "target" : "4385", "shared_name" : "1605 (interacts with) 3084", "name" : "1605 (interacts with) 3084", "interaction" : "interacts with", "SUID" : 35754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35750", "source" : "3889", "target" : "1405", "shared_name" : "1605 (interacts with) 998", "name" : "1605 (interacts with) 998", "interaction" : "interacts with", "SUID" : 35750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35746", "source" : "3889", "target" : "6137", "shared_name" : "1605 (interacts with) 29954", "name" : "1605 (interacts with) 29954", "interaction" : "interacts with", "SUID" : 35746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35742", "source" : "3889", "target" : "2137", "shared_name" : "1605 (interacts with) 3918", "name" : "1605 (interacts with) 3918", "interaction" : "interacts with", "SUID" : 35742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35738", "source" : "3889", "target" : "4481", "shared_name" : "1605 (interacts with) 55624", "name" : "1605 (interacts with) 55624", "interaction" : "interacts with", "SUID" : 35738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35734", "source" : "3889", "target" : "4337", "shared_name" : "1605 (interacts with) 84197", "name" : "1605 (interacts with) 84197", "interaction" : "interacts with", "SUID" : 35734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35730", "source" : "3889", "target" : "1033", "shared_name" : "1605 (interacts with) 9215", "name" : "1605 (interacts with) 9215", "interaction" : "interacts with", "SUID" : 35730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35726", "source" : "3889", "target" : "2861", "shared_name" : "1605 (interacts with) 284217", "name" : "1605 (interacts with) 284217", "interaction" : "interacts with", "SUID" : 35726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35722", "source" : "3889", "target" : "1497", "shared_name" : "1605 (interacts with) 3912", "name" : "1605 (interacts with) 3912", "interaction" : "interacts with", "SUID" : 35722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35718", "source" : "3889", "target" : "3585", "shared_name" : "1605 (interacts with) 3908", "name" : "1605 (interacts with) 3908", "interaction" : "interacts with", "SUID" : 35718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35714", "source" : "3889", "target" : "6097", "shared_name" : "1605 (interacts with) 1756", "name" : "1605 (interacts with) 1756", "interaction" : "interacts with", "SUID" : 35714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35782", "source" : "3885", "target" : "5449", "shared_name" : "54840 (interacts with) 923", "name" : "54840 (interacts with) 923", "interaction" : "interacts with", "SUID" : 35782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35778", "source" : "3885", "target" : "5521", "shared_name" : "54840 (interacts with) 7518", "name" : "54840 (interacts with) 7518", "interaction" : "interacts with", "SUID" : 35778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35826", "source" : "3881", "target" : "5825", "shared_name" : "1654 (interacts with) 4594", "name" : "1654 (interacts with) 4594", "interaction" : "interacts with", "SUID" : 35826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35822", "source" : "3881", "target" : "3593", "shared_name" : "1654 (interacts with) 5530", "name" : "1654 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 35822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35818", "source" : "3881", "target" : "4185", "shared_name" : "1654 (interacts with) 29968", "name" : "1654 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 35818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35814", "source" : "3881", "target" : "1713", "shared_name" : "1654 (interacts with) 5631", "name" : "1654 (interacts with) 5631", "interaction" : "interacts with", "SUID" : 35814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35810", "source" : "3881", "target" : "5037", "shared_name" : "1654 (interacts with) 5515", "name" : "1654 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 35810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35806", "source" : "3881", "target" : "6001", "shared_name" : "1654 (interacts with) 55157", "name" : "1654 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 35806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35802", "source" : "3881", "target" : "893", "shared_name" : "1654 (interacts with) 9361", "name" : "1654 (interacts with) 9361", "interaction" : "interacts with", "SUID" : 35802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35798", "source" : "3881", "target" : "521", "shared_name" : "1654 (interacts with) 85476", "name" : "1654 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 35798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35794", "source" : "3881", "target" : "1473", "shared_name" : "1654 (interacts with) 4524", "name" : "1654 (interacts with) 4524", "interaction" : "interacts with", "SUID" : 35794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35790", "source" : "3881", "target" : "3841", "shared_name" : "1654 (interacts with) 9444", "name" : "1654 (interacts with) 9444", "interaction" : "interacts with", "SUID" : 35790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35786", "source" : "3881", "target" : "4417", "shared_name" : "1654 (interacts with) 1656", "name" : "1654 (interacts with) 1656", "interaction" : "interacts with", "SUID" : 35786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35830", "source" : "3873", "target" : "1933", "shared_name" : "387521 (interacts with) 7335", "name" : "387521 (interacts with) 7335", "interaction" : "interacts with", "SUID" : 35830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35842", "source" : "3869", "target" : "465", "shared_name" : "8742 (interacts with) 8792", "name" : "8742 (interacts with) 8792", "interaction" : "interacts with", "SUID" : 35842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35838", "source" : "3869", "target" : "3545", "shared_name" : "8742 (interacts with) 708", "name" : "8742 (interacts with) 708", "interaction" : "interacts with", "SUID" : 35838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35834", "source" : "3869", "target" : "1177", "shared_name" : "8742 (interacts with) 9928", "name" : "8742 (interacts with) 9928", "interaction" : "interacts with", "SUID" : 35834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35874", "source" : "3861", "target" : "1277", "shared_name" : "23646 (interacts with) 79143", "name" : "23646 (interacts with) 79143", "interaction" : "interacts with", "SUID" : 35874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35870", "source" : "3861", "target" : "5305", "shared_name" : "23646 (interacts with) 6901", "name" : "23646 (interacts with) 6901", "interaction" : "interacts with", "SUID" : 35870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35866", "source" : "3861", "target" : "5429", "shared_name" : "23646 (interacts with) 5048", "name" : "23646 (interacts with) 5048", "interaction" : "interacts with", "SUID" : 35866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35862", "source" : "3861", "target" : "2853", "shared_name" : "23646 (interacts with) 8398", "name" : "23646 (interacts with) 8398", "interaction" : "interacts with", "SUID" : 35862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35858", "source" : "3861", "target" : "1769", "shared_name" : "23646 (interacts with) 57104", "name" : "23646 (interacts with) 57104", "interaction" : "interacts with", "SUID" : 35858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35854", "source" : "3861", "target" : "3265", "shared_name" : "23646 (interacts with) 23259", "name" : "23646 (interacts with) 23259", "interaction" : "interacts with", "SUID" : 35854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35850", "source" : "3861", "target" : "385", "shared_name" : "23646 (interacts with) 5319", "name" : "23646 (interacts with) 5319", "interaction" : "interacts with", "SUID" : 35850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35846", "source" : "3861", "target" : "6005", "shared_name" : "23646 (interacts with) 4988", "name" : "23646 (interacts with) 4988", "interaction" : "interacts with", "SUID" : 35846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35882", "source" : "3857", "target" : "3313", "shared_name" : "65062 (interacts with) 84314", "name" : "65062 (interacts with) 84314", "interaction" : "interacts with", "SUID" : 35882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35878", "source" : "3857", "target" : "2857", "shared_name" : "65062 (interacts with) 56947", "name" : "65062 (interacts with) 56947", "interaction" : "interacts with", "SUID" : 35878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35914", "source" : "3853", "target" : "4289", "shared_name" : "6786 (interacts with) 90678", "name" : "6786 (interacts with) 90678", "interaction" : "interacts with", "SUID" : 35914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35910", "source" : "3853", "target" : "997", "shared_name" : "6786 (interacts with) 7431", "name" : "6786 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 35910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35906", "source" : "3853", "target" : "2581", "shared_name" : "6786 (interacts with) 7170", "name" : "6786 (interacts with) 7170", "interaction" : "interacts with", "SUID" : 35906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35902", "source" : "3853", "target" : "5989", "shared_name" : "6786 (interacts with) 7273", "name" : "6786 (interacts with) 7273", "interaction" : "interacts with", "SUID" : 35902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35898", "source" : "3853", "target" : "609", "shared_name" : "6786 (interacts with) 6812", "name" : "6786 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 35898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35894", "source" : "3853", "target" : "5785", "shared_name" : "6786 (interacts with) 6857", "name" : "6786 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 35894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35890", "source" : "3853", "target" : "3909", "shared_name" : "6786 (interacts with) 10908", "name" : "6786 (interacts with) 10908", "interaction" : "interacts with", "SUID" : 35890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35886", "source" : "3853", "target" : "5337", "shared_name" : "6786 (interacts with) 84876", "name" : "6786 (interacts with) 84876", "interaction" : "interacts with", "SUID" : 35886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35930", "source" : "3849", "target" : "209", "shared_name" : "103 (interacts with) 3431", "name" : "103 (interacts with) 3431", "interaction" : "interacts with", "SUID" : 35930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35926", "source" : "3849", "target" : "785", "shared_name" : "103 (interacts with) 1958", "name" : "103 (interacts with) 1958", "interaction" : "interacts with", "SUID" : 35926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35922", "source" : "3849", "target" : "5317", "shared_name" : "103 (interacts with) 25939", "name" : "103 (interacts with) 25939", "interaction" : "interacts with", "SUID" : 35922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35918", "source" : "3849", "target" : "805", "shared_name" : "103 (interacts with) 6772", "name" : "103 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 35918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35942", "source" : "3845", "target" : "1809", "shared_name" : "10479 (interacts with) 6548", "name" : "10479 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 35942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35938", "source" : "3845", "target" : "3373", "shared_name" : "10479 (interacts with) 2530", "name" : "10479 (interacts with) 2530", "interaction" : "interacts with", "SUID" : 35938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35934", "source" : "3845", "target" : "4741", "shared_name" : "10479 (interacts with) 79147", "name" : "10479 (interacts with) 79147", "interaction" : "interacts with", "SUID" : 35934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35946", "source" : "3841", "target" : "4521", "shared_name" : "9444 (interacts with) 5894", "name" : "9444 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 35946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35950", "source" : "3837", "target" : "2509", "shared_name" : "6098 (interacts with) 7204", "name" : "6098 (interacts with) 7204", "interaction" : "interacts with", "SUID" : 35950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35966", "source" : "3833", "target" : "869", "shared_name" : "9138 (interacts with) 23221", "name" : "9138 (interacts with) 23221", "interaction" : "interacts with", "SUID" : 35966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35962", "source" : "3833", "target" : "1069", "shared_name" : "9138 (interacts with) 5879", "name" : "9138 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 35962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35958", "source" : "3833", "target" : "1405", "shared_name" : "9138 (interacts with) 998", "name" : "9138 (interacts with) 998", "interaction" : "interacts with", "SUID" : 35958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35954", "source" : "3833", "target" : "2389", "shared_name" : "9138 (interacts with) 6925", "name" : "9138 (interacts with) 6925", "interaction" : "interacts with", "SUID" : 35954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35986", "source" : "3825", "target" : "1485", "shared_name" : "5915 (interacts with) 8050", "name" : "5915 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 35986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35982", "source" : "3825", "target" : "1829", "shared_name" : "5915 (interacts with) 7421", "name" : "5915 (interacts with) 7421", "interaction" : "interacts with", "SUID" : 35982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35978", "source" : "3825", "target" : "4589", "shared_name" : "5915 (interacts with) 8431", "name" : "5915 (interacts with) 8431", "interaction" : "interacts with", "SUID" : 35978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35974", "source" : "3825", "target" : "2077", "shared_name" : "5915 (interacts with) 7528", "name" : "5915 (interacts with) 7528", "interaction" : "interacts with", "SUID" : 35974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35970", "source" : "3825", "target" : "3821", "shared_name" : "5915 (interacts with) 10891", "name" : "5915 (interacts with) 10891", "interaction" : "interacts with", "SUID" : 35970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36154", "source" : "3821", "target" : "5081", "shared_name" : "10891 (interacts with) 5594", "name" : "10891 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 36154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36150", "source" : "3821", "target" : "5225", "shared_name" : "10891 (interacts with) 5290", "name" : "10891 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 36150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36146", "source" : "3821", "target" : "4213", "shared_name" : "10891 (interacts with) 5295", "name" : "10891 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 36146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36142", "source" : "3821", "target" : "973", "shared_name" : "10891 (interacts with) 5595", "name" : "10891 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 36142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36138", "source" : "3821", "target" : "4949", "shared_name" : "10891 (interacts with) 5970", "name" : "10891 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 36138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36134", "source" : "3821", "target" : "1893", "shared_name" : "10891 (interacts with) 1387", "name" : "10891 (interacts with) 1387", "interaction" : "interacts with", "SUID" : 36134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36130", "source" : "3821", "target" : "3517", "shared_name" : "10891 (interacts with) 2033", "name" : "10891 (interacts with) 2033", "interaction" : "interacts with", "SUID" : 36130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36126", "source" : "3821", "target" : "4065", "shared_name" : "10891 (interacts with) 7124", "name" : "10891 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 36126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36122", "source" : "3821", "target" : "4857", "shared_name" : "10891 (interacts with) 5573", "name" : "10891 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 36122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36118", "source" : "3821", "target" : "3593", "shared_name" : "10891 (interacts with) 5530", "name" : "10891 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 36118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36114", "source" : "3821", "target" : "2625", "shared_name" : "10891 (interacts with) 3065", "name" : "10891 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 36114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36110", "source" : "3821", "target" : "993", "shared_name" : "10891 (interacts with) 801", "name" : "10891 (interacts with) 801", "interaction" : "interacts with", "SUID" : 36110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36106", "source" : "3821", "target" : "1201", "shared_name" : "10891 (interacts with) 805", "name" : "10891 (interacts with) 805", "interaction" : "interacts with", "SUID" : 36106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36102", "source" : "3821", "target" : "1241", "shared_name" : "10891 (interacts with) 808", "name" : "10891 (interacts with) 808", "interaction" : "interacts with", "SUID" : 36102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36098", "source" : "3821", "target" : "2957", "shared_name" : "10891 (interacts with) 5465", "name" : "10891 (interacts with) 5465", "interaction" : "interacts with", "SUID" : 36098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36094", "source" : "3821", "target" : "5625", "shared_name" : "10891 (interacts with) 595", "name" : "10891 (interacts with) 595", "interaction" : "interacts with", "SUID" : 36094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36090", "source" : "3821", "target" : "4589", "shared_name" : "10891 (interacts with) 8431", "name" : "10891 (interacts with) 8431", "interaction" : "interacts with", "SUID" : 36090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36086", "source" : "3821", "target" : "4097", "shared_name" : "10891 (interacts with) 9611", "name" : "10891 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 36086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36082", "source" : "3821", "target" : "4681", "shared_name" : "10891 (interacts with) 4843", "name" : "10891 (interacts with) 4843", "interaction" : "interacts with", "SUID" : 36082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36078", "source" : "3821", "target" : "5321", "shared_name" : "10891 (interacts with) 5743", "name" : "10891 (interacts with) 5743", "interaction" : "interacts with", "SUID" : 36078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36074", "source" : "3821", "target" : "5949", "shared_name" : "10891 (interacts with) 672", "name" : "10891 (interacts with) 672", "interaction" : "interacts with", "SUID" : 36074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36070", "source" : "3821", "target" : "1525", "shared_name" : "10891 (interacts with) 3295", "name" : "10891 (interacts with) 3295", "interaction" : "interacts with", "SUID" : 36070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36066", "source" : "3821", "target" : "6149", "shared_name" : "10891 (interacts with) 335", "name" : "10891 (interacts with) 335", "interaction" : "interacts with", "SUID" : 36066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36062", "source" : "3821", "target" : "5133", "shared_name" : "10891 (interacts with) 51", "name" : "10891 (interacts with) 51", "interaction" : "interacts with", "SUID" : 36062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36058", "source" : "3821", "target" : "2081", "shared_name" : "10891 (interacts with) 5468", "name" : "10891 (interacts with) 5468", "interaction" : "interacts with", "SUID" : 36058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36054", "source" : "3821", "target" : "2305", "shared_name" : "10891 (interacts with) 6908", "name" : "10891 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 36054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36050", "source" : "3821", "target" : "2673", "shared_name" : "10891 (interacts with) 8841", "name" : "10891 (interacts with) 8841", "interaction" : "interacts with", "SUID" : 36050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36046", "source" : "3821", "target" : "2121", "shared_name" : "10891 (interacts with) 11232", "name" : "10891 (interacts with) 11232", "interaction" : "interacts with", "SUID" : 36046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36042", "source" : "3821", "target" : "713", "shared_name" : "10891 (interacts with) 7019", "name" : "10891 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 36042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36038", "source" : "3821", "target" : "1341", "shared_name" : "10891 (interacts with) 5009", "name" : "10891 (interacts with) 5009", "interaction" : "interacts with", "SUID" : 36038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36034", "source" : "3821", "target" : "3525", "shared_name" : "10891 (interacts with) 23410", "name" : "10891 (interacts with) 23410", "interaction" : "interacts with", "SUID" : 36034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36030", "source" : "3821", "target" : "5085", "shared_name" : "10891 (interacts with) 56652", "name" : "10891 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 36030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36026", "source" : "3821", "target" : "1605", "shared_name" : "10891 (interacts with) 6648", "name" : "10891 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 36026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36022", "source" : "3821", "target" : "1253", "shared_name" : "10891 (interacts with) 2876", "name" : "10891 (interacts with) 2876", "interaction" : "interacts with", "SUID" : 36022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36018", "source" : "3821", "target" : "3017", "shared_name" : "10891 (interacts with) 4790", "name" : "10891 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 36018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36014", "source" : "3821", "target" : "4649", "shared_name" : "10891 (interacts with) 3479", "name" : "10891 (interacts with) 3479", "interaction" : "interacts with", "SUID" : 36014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36010", "source" : "3821", "target" : "5509", "shared_name" : "10891 (interacts with) 207", "name" : "10891 (interacts with) 207", "interaction" : "interacts with", "SUID" : 36010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36006", "source" : "3821", "target" : "5013", "shared_name" : "10891 (interacts with) 23411", "name" : "10891 (interacts with) 23411", "interaction" : "interacts with", "SUID" : 36006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36002", "source" : "3821", "target" : "1621", "shared_name" : "10891 (interacts with) 1432", "name" : "10891 (interacts with) 1432", "interaction" : "interacts with", "SUID" : 36002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35998", "source" : "3821", "target" : "2489", "shared_name" : "10891 (interacts with) 4692", "name" : "10891 (interacts with) 4692", "interaction" : "interacts with", "SUID" : 35998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35994", "source" : "3821", "target" : "5473", "shared_name" : "10891 (interacts with) 6095", "name" : "10891 (interacts with) 6095", "interaction" : "interacts with", "SUID" : 35994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "35990", "source" : "3821", "target" : "877", "shared_name" : "10891 (interacts with) 7341", "name" : "10891 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 35990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36166", "source" : "3817", "target" : "3017", "shared_name" : "3663 (interacts with) 4790", "name" : "3663 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 36166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36162", "source" : "3817", "target" : "4949", "shared_name" : "3663 (interacts with) 5970", "name" : "3663 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 36162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36158", "source" : "3817", "target" : "805", "shared_name" : "3663 (interacts with) 6772", "name" : "3663 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 36158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36178", "source" : "3813", "target" : "3437", "shared_name" : "3483 (interacts with) 4312", "name" : "3483 (interacts with) 4312", "interaction" : "interacts with", "SUID" : 36178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36174", "source" : "3813", "target" : "4885", "shared_name" : "3483 (interacts with) 5340", "name" : "3483 (interacts with) 5340", "interaction" : "interacts with", "SUID" : 36174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36170", "source" : "3813", "target" : "2101", "shared_name" : "3483 (interacts with) 3486", "name" : "3483 (interacts with) 3486", "interaction" : "interacts with", "SUID" : 36170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36194", "source" : "3809", "target" : "1069", "shared_name" : "81704 (interacts with) 5879", "name" : "81704 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 36194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36190", "source" : "3809", "target" : "3521", "shared_name" : "81704 (interacts with) 85440", "name" : "81704 (interacts with) 85440", "interaction" : "interacts with", "SUID" : 36190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36186", "source" : "3809", "target" : "5405", "shared_name" : "81704 (interacts with) 57572", "name" : "81704 (interacts with) 57572", "interaction" : "interacts with", "SUID" : 36186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36182", "source" : "3809", "target" : "6073", "shared_name" : "81704 (interacts with) 92170", "name" : "81704 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 36182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36214", "source" : "3805", "target" : "2901", "shared_name" : "5621 (interacts with) 6647", "name" : "5621 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 36214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36210", "source" : "3805", "target" : "5965", "shared_name" : "5621 (interacts with) 596", "name" : "5621 (interacts with) 596", "interaction" : "interacts with", "SUID" : 36210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36206", "source" : "3805", "target" : "6073", "shared_name" : "5621 (interacts with) 92170", "name" : "5621 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 36206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36202", "source" : "3805", "target" : "3857", "shared_name" : "5621 (interacts with) 65062", "name" : "5621 (interacts with) 65062", "interaction" : "interacts with", "SUID" : 36202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36198", "source" : "3805", "target" : "1237", "shared_name" : "5621 (interacts with) 3329", "name" : "5621 (interacts with) 3329", "interaction" : "interacts with", "SUID" : 36198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36282", "source" : "3801", "target" : "3373", "shared_name" : "10195 (interacts with) 2530", "name" : "10195 (interacts with) 2530", "interaction" : "interacts with", "SUID" : 36282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36278", "source" : "3801", "target" : "1045", "shared_name" : "10195 (interacts with) 1650", "name" : "10195 (interacts with) 1650", "interaction" : "interacts with", "SUID" : 36278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36274", "source" : "3801", "target" : "3605", "shared_name" : "10195 (interacts with) 7841", "name" : "10195 (interacts with) 7841", "interaction" : "interacts with", "SUID" : 36274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36270", "source" : "3801", "target" : "1697", "shared_name" : "10195 (interacts with) 8818", "name" : "10195 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 36270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36266", "source" : "3801", "target" : "5561", "shared_name" : "10195 (interacts with) 4247", "name" : "10195 (interacts with) 4247", "interaction" : "interacts with", "SUID" : 36266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36262", "source" : "3801", "target" : "5289", "shared_name" : "10195 (interacts with) 9526", "name" : "10195 (interacts with) 9526", "interaction" : "interacts with", "SUID" : 36262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36258", "source" : "3801", "target" : "3037", "shared_name" : "10195 (interacts with) 8813", "name" : "10195 (interacts with) 8813", "interaction" : "interacts with", "SUID" : 36258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36254", "source" : "3801", "target" : "3489", "shared_name" : "10195 (interacts with) 54344", "name" : "10195 (interacts with) 54344", "interaction" : "interacts with", "SUID" : 36254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36250", "source" : "3801", "target" : "5005", "shared_name" : "10195 (interacts with) 79868", "name" : "10195 (interacts with) 79868", "interaction" : "interacts with", "SUID" : 36250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36246", "source" : "3801", "target" : "289", "shared_name" : "10195 (interacts with) 56052", "name" : "10195 (interacts with) 56052", "interaction" : "interacts with", "SUID" : 36246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36242", "source" : "3801", "target" : "2517", "shared_name" : "10195 (interacts with) 1798", "name" : "10195 (interacts with) 1798", "interaction" : "interacts with", "SUID" : 36242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36238", "source" : "3801", "target" : "6017", "shared_name" : "10195 (interacts with) 79796", "name" : "10195 (interacts with) 79796", "interaction" : "interacts with", "SUID" : 36238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36234", "source" : "3801", "target" : "1797", "shared_name" : "10195 (interacts with) 85365", "name" : "10195 (interacts with) 85365", "interaction" : "interacts with", "SUID" : 36234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36230", "source" : "3801", "target" : "2817", "shared_name" : "10195 (interacts with) 91869", "name" : "10195 (interacts with) 91869", "interaction" : "interacts with", "SUID" : 36230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36226", "source" : "3801", "target" : "1905", "shared_name" : "10195 (interacts with) 9488", "name" : "10195 (interacts with) 9488", "interaction" : "interacts with", "SUID" : 36226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36222", "source" : "3801", "target" : "969", "shared_name" : "10195 (interacts with) 2670", "name" : "10195 (interacts with) 2670", "interaction" : "interacts with", "SUID" : 36222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36218", "source" : "3801", "target" : "4769", "shared_name" : "10195 (interacts with) 7132", "name" : "10195 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 36218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36298", "source" : "3797", "target" : "5693", "shared_name" : "149420 (interacts with) 92335", "name" : "149420 (interacts with) 92335", "interaction" : "interacts with", "SUID" : 36298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36294", "source" : "3797", "target" : "4237", "shared_name" : "149420 (interacts with) 4914", "name" : "149420 (interacts with) 4914", "interaction" : "interacts with", "SUID" : 36294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36290", "source" : "3797", "target" : "2133", "shared_name" : "149420 (interacts with) 1859", "name" : "149420 (interacts with) 1859", "interaction" : "interacts with", "SUID" : 36290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36286", "source" : "3797", "target" : "3629", "shared_name" : "149420 (interacts with) 2066", "name" : "149420 (interacts with) 2066", "interaction" : "interacts with", "SUID" : 36286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36326", "source" : "3793", "target" : "2045", "shared_name" : "28965 (interacts with) 51102", "name" : "28965 (interacts with) 51102", "interaction" : "interacts with", "SUID" : 36326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36322", "source" : "3793", "target" : "3325", "shared_name" : "28965 (interacts with) 9517", "name" : "28965 (interacts with) 9517", "interaction" : "interacts with", "SUID" : 36322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36318", "source" : "3793", "target" : "409", "shared_name" : "28965 (interacts with) 10558", "name" : "28965 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 36318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36314", "source" : "3793", "target" : "681", "shared_name" : "28965 (interacts with) 6646", "name" : "28965 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 36314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36310", "source" : "3793", "target" : "2669", "shared_name" : "28965 (interacts with) 9197", "name" : "28965 (interacts with) 9197", "interaction" : "interacts with", "SUID" : 36310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36306", "source" : "3793", "target" : "545", "shared_name" : "28965 (interacts with) 51014", "name" : "28965 (interacts with) 51014", "interaction" : "interacts with", "SUID" : 36306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36302", "source" : "3793", "target" : "4281", "shared_name" : "28965 (interacts with) 3077", "name" : "28965 (interacts with) 3077", "interaction" : "interacts with", "SUID" : 36302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36334", "source" : "3789", "target" : "629", "shared_name" : "23345 (interacts with) 7013", "name" : "23345 (interacts with) 7013", "interaction" : "interacts with", "SUID" : 36334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36330", "source" : "3789", "target" : "1329", "shared_name" : "23345 (interacts with) 26277", "name" : "23345 (interacts with) 26277", "interaction" : "interacts with", "SUID" : 36330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36494", "source" : "3785", "target" : "2285", "shared_name" : "1781 (interacts with) 51300", "name" : "1781 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 36494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36490", "source" : "3785", "target" : "1525", "shared_name" : "1781 (interacts with) 3295", "name" : "1781 (interacts with) 3295", "interaction" : "interacts with", "SUID" : 36490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36486", "source" : "3785", "target" : "5713", "shared_name" : "1781 (interacts with) 7531", "name" : "1781 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 36486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36482", "source" : "3785", "target" : "2665", "shared_name" : "1781 (interacts with) 27229", "name" : "1781 (interacts with) 27229", "interaction" : "interacts with", "SUID" : 36482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36478", "source" : "3785", "target" : "5397", "shared_name" : "1781 (interacts with) 85378", "name" : "1781 (interacts with) 85378", "interaction" : "interacts with", "SUID" : 36478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36474", "source" : "3785", "target" : "4021", "shared_name" : "1781 (interacts with) 203068", "name" : "1781 (interacts with) 203068", "interaction" : "interacts with", "SUID" : 36474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36470", "source" : "3785", "target" : "5969", "shared_name" : "1781 (interacts with) 10382", "name" : "1781 (interacts with) 10382", "interaction" : "interacts with", "SUID" : 36470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36466", "source" : "3785", "target" : "5749", "shared_name" : "1781 (interacts with) 10959", "name" : "1781 (interacts with) 10959", "interaction" : "interacts with", "SUID" : 36466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36462", "source" : "3785", "target" : "269", "shared_name" : "1781 (interacts with) 51259", "name" : "1781 (interacts with) 51259", "interaction" : "interacts with", "SUID" : 36462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36458", "source" : "3785", "target" : "4245", "shared_name" : "1781 (interacts with) 91147", "name" : "1781 (interacts with) 91147", "interaction" : "interacts with", "SUID" : 36458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36454", "source" : "3785", "target" : "545", "shared_name" : "1781 (interacts with) 51014", "name" : "1781 (interacts with) 51014", "interaction" : "interacts with", "SUID" : 36454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36450", "source" : "3785", "target" : "1633", "shared_name" : "1781 (interacts with) 57731", "name" : "1781 (interacts with) 57731", "interaction" : "interacts with", "SUID" : 36450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36446", "source" : "3785", "target" : "2357", "shared_name" : "1781 (interacts with) 79600", "name" : "1781 (interacts with) 79600", "interaction" : "interacts with", "SUID" : 36446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36442", "source" : "3785", "target" : "4797", "shared_name" : "1781 (interacts with) 10735", "name" : "1781 (interacts with) 10735", "interaction" : "interacts with", "SUID" : 36442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36438", "source" : "3785", "target" : "3637", "shared_name" : "1781 (interacts with) 6712", "name" : "1781 (interacts with) 6712", "interaction" : "interacts with", "SUID" : 36438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36434", "source" : "3785", "target" : "1973", "shared_name" : "1781 (interacts with) 6709", "name" : "1781 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 36434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36430", "source" : "3785", "target" : "4497", "shared_name" : "1781 (interacts with) 8243", "name" : "1781 (interacts with) 8243", "interaction" : "interacts with", "SUID" : 36430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36426", "source" : "3785", "target" : "2341", "shared_name" : "1781 (interacts with) 23322", "name" : "1781 (interacts with) 23322", "interaction" : "interacts with", "SUID" : 36426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36422", "source" : "3785", "target" : "4549", "shared_name" : "1781 (interacts with) 5903", "name" : "1781 (interacts with) 5903", "interaction" : "interacts with", "SUID" : 36422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36418", "source" : "3785", "target" : "4321", "shared_name" : "1781 (interacts with) 132320", "name" : "1781 (interacts with) 132320", "interaction" : "interacts with", "SUID" : 36418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36414", "source" : "3785", "target" : "5137", "shared_name" : "1781 (interacts with) 25782", "name" : "1781 (interacts with) 25782", "interaction" : "interacts with", "SUID" : 36414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36410", "source" : "3785", "target" : "5653", "shared_name" : "1781 (interacts with) 22930", "name" : "1781 (interacts with) 22930", "interaction" : "interacts with", "SUID" : 36410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36406", "source" : "3785", "target" : "2513", "shared_name" : "1781 (interacts with) 22931", "name" : "1781 (interacts with) 22931", "interaction" : "interacts with", "SUID" : 36406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36402", "source" : "3785", "target" : "5037", "shared_name" : "1781 (interacts with) 5515", "name" : "1781 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 36402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36398", "source" : "3785", "target" : "5641", "shared_name" : "1781 (interacts with) 5518", "name" : "1781 (interacts with) 5518", "interaction" : "interacts with", "SUID" : 36398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36394", "source" : "3785", "target" : "5009", "shared_name" : "1781 (interacts with) 5241", "name" : "1781 (interacts with) 5241", "interaction" : "interacts with", "SUID" : 36394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36390", "source" : "3785", "target" : "5437", "shared_name" : "1781 (interacts with) 10733", "name" : "1781 (interacts with) 10733", "interaction" : "interacts with", "SUID" : 36390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36386", "source" : "3785", "target" : "3177", "shared_name" : "1781 (interacts with) 5321", "name" : "1781 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 36386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36382", "source" : "3785", "target" : "2853", "shared_name" : "1781 (interacts with) 8398", "name" : "1781 (interacts with) 8398", "interaction" : "interacts with", "SUID" : 36382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36378", "source" : "3785", "target" : "4977", "shared_name" : "1781 (interacts with) 8481", "name" : "1781 (interacts with) 8481", "interaction" : "interacts with", "SUID" : 36378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36374", "source" : "3785", "target" : "5429", "shared_name" : "1781 (interacts with) 5048", "name" : "1781 (interacts with) 5048", "interaction" : "interacts with", "SUID" : 36374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36370", "source" : "3785", "target" : "1293", "shared_name" : "1781 (interacts with) 2908", "name" : "1781 (interacts with) 2908", "interaction" : "interacts with", "SUID" : 36370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36366", "source" : "3785", "target" : "4997", "shared_name" : "1781 (interacts with) 54820", "name" : "1781 (interacts with) 54820", "interaction" : "interacts with", "SUID" : 36366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36362", "source" : "3785", "target" : "2705", "shared_name" : "1781 (interacts with) 8379", "name" : "1781 (interacts with) 8379", "interaction" : "interacts with", "SUID" : 36362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36358", "source" : "3785", "target" : "3149", "shared_name" : "1781 (interacts with) 3630", "name" : "1781 (interacts with) 3630", "interaction" : "interacts with", "SUID" : 36358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36354", "source" : "3785", "target" : "4165", "shared_name" : "1781 (interacts with) 3119", "name" : "1781 (interacts with) 3119", "interaction" : "interacts with", "SUID" : 36354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36350", "source" : "3785", "target" : "5065", "shared_name" : "1781 (interacts with) 3117", "name" : "1781 (interacts with) 3117", "interaction" : "interacts with", "SUID" : 36350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36346", "source" : "3785", "target" : "2641", "shared_name" : "1781 (interacts with) 3123", "name" : "1781 (interacts with) 3123", "interaction" : "interacts with", "SUID" : 36346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36342", "source" : "3785", "target" : "1997", "shared_name" : "1781 (interacts with) 2348", "name" : "1781 (interacts with) 2348", "interaction" : "interacts with", "SUID" : 36342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36338", "source" : "3785", "target" : "1321", "shared_name" : "1781 (interacts with) 1778", "name" : "1781 (interacts with) 1778", "interaction" : "interacts with", "SUID" : 36338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36510", "source" : "3781", "target" : "277", "shared_name" : "9152 (interacts with) 285175", "name" : "9152 (interacts with) 285175", "interaction" : "interacts with", "SUID" : 36510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36506", "source" : "3781", "target" : "3845", "shared_name" : "9152 (interacts with) 10479", "name" : "9152 (interacts with) 10479", "interaction" : "interacts with", "SUID" : 36506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36502", "source" : "3781", "target" : "1809", "shared_name" : "9152 (interacts with) 6548", "name" : "9152 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 36502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36498", "source" : "3781", "target" : "5877", "shared_name" : "9152 (interacts with) 6535", "name" : "9152 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 36498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36566", "source" : "3777", "target" : "5785", "shared_name" : "6571 (interacts with) 6857", "name" : "6571 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 36566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36562", "source" : "3777", "target" : "1157", "shared_name" : "6571 (interacts with) 6580", "name" : "6571 (interacts with) 6580", "interaction" : "interacts with", "SUID" : 36562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36558", "source" : "3777", "target" : "401", "shared_name" : "6571 (interacts with) 6532", "name" : "6571 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 36558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36554", "source" : "3777", "target" : "5929", "shared_name" : "6571 (interacts with) 6616", "name" : "6571 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 36554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36550", "source" : "3777", "target" : "609", "shared_name" : "6571 (interacts with) 6812", "name" : "6571 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 36550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36546", "source" : "3777", "target" : "3781", "shared_name" : "6571 (interacts with) 9152", "name" : "6571 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 36546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36542", "source" : "3777", "target" : "3601", "shared_name" : "6571 (interacts with) 6531", "name" : "6571 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 36542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36538", "source" : "3777", "target" : "3333", "shared_name" : "6571 (interacts with) 9409", "name" : "6571 (interacts with) 9409", "interaction" : "interacts with", "SUID" : 36538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36534", "source" : "3777", "target" : "5961", "shared_name" : "6571 (interacts with) 10682", "name" : "6571 (interacts with) 10682", "interaction" : "interacts with", "SUID" : 36534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36530", "source" : "3777", "target" : "4625", "shared_name" : "6571 (interacts with) 6785", "name" : "6571 (interacts with) 6785", "interaction" : "interacts with", "SUID" : 36530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36526", "source" : "3777", "target" : "5533", "shared_name" : "6571 (interacts with) 9894", "name" : "6571 (interacts with) 9894", "interaction" : "interacts with", "SUID" : 36526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36522", "source" : "3777", "target" : "5873", "shared_name" : "6571 (interacts with) 5827", "name" : "6571 (interacts with) 5827", "interaction" : "interacts with", "SUID" : 36522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36518", "source" : "3777", "target" : "1337", "shared_name" : "6571 (interacts with) 55863", "name" : "6571 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 36518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36514", "source" : "3777", "target" : "4621", "shared_name" : "6571 (interacts with) 57038", "name" : "6571 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 36514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36578", "source" : "3773", "target" : "4621", "shared_name" : "540 (interacts with) 57038", "name" : "540 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 36578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36574", "source" : "3773", "target" : "1089", "shared_name" : "540 (interacts with) 5917", "name" : "540 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 36574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36570", "source" : "3773", "target" : "481", "shared_name" : "540 (interacts with) 7507", "name" : "540 (interacts with) 7507", "interaction" : "interacts with", "SUID" : 36570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36614", "source" : "3769", "target" : "5409", "shared_name" : "8085 (interacts with) 9734", "name" : "8085 (interacts with) 9734", "interaction" : "interacts with", "SUID" : 36614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36610", "source" : "3769", "target" : "3709", "shared_name" : "8085 (interacts with) 9757", "name" : "8085 (interacts with) 9757", "interaction" : "interacts with", "SUID" : 36610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36606", "source" : "3769", "target" : "2077", "shared_name" : "8085 (interacts with) 7528", "name" : "8085 (interacts with) 7528", "interaction" : "interacts with", "SUID" : 36606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36602", "source" : "3769", "target" : "3825", "shared_name" : "8085 (interacts with) 5915", "name" : "8085 (interacts with) 5915", "interaction" : "interacts with", "SUID" : 36602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36598", "source" : "3769", "target" : "5729", "shared_name" : "8085 (interacts with) 861", "name" : "8085 (interacts with) 861", "interaction" : "interacts with", "SUID" : 36598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36594", "source" : "3769", "target" : "5941", "shared_name" : "8085 (interacts with) 5914", "name" : "8085 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 36594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36590", "source" : "3769", "target" : "5861", "shared_name" : "8085 (interacts with) 5435", "name" : "8085 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 36590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36586", "source" : "3769", "target" : "2649", "shared_name" : "8085 (interacts with) 5430", "name" : "8085 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 36586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36582", "source" : "3769", "target" : "1029", "shared_name" : "8085 (interacts with) 5080", "name" : "8085 (interacts with) 5080", "interaction" : "interacts with", "SUID" : 36582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36674", "source" : "3765", "target" : "5557", "shared_name" : "774 (interacts with) 9254", "name" : "774 (interacts with) 9254", "interaction" : "interacts with", "SUID" : 36674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36670", "source" : "3765", "target" : "357", "shared_name" : "774 (interacts with) 777", "name" : "774 (interacts with) 777", "interaction" : "interacts with", "SUID" : 36670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36666", "source" : "3765", "target" : "997", "shared_name" : "774 (interacts with) 7431", "name" : "774 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 36666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36662", "source" : "3765", "target" : "5989", "shared_name" : "774 (interacts with) 7273", "name" : "774 (interacts with) 7273", "interaction" : "interacts with", "SUID" : 36662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36658", "source" : "3765", "target" : "2581", "shared_name" : "774 (interacts with) 7170", "name" : "774 (interacts with) 7170", "interaction" : "interacts with", "SUID" : 36658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36654", "source" : "3765", "target" : "609", "shared_name" : "774 (interacts with) 6812", "name" : "774 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 36654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36650", "source" : "3765", "target" : "5785", "shared_name" : "774 (interacts with) 6857", "name" : "774 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 36650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36646", "source" : "3765", "target" : "5929", "shared_name" : "774 (interacts with) 6616", "name" : "774 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 36646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36642", "source" : "3765", "target" : "3593", "shared_name" : "774 (interacts with) 5530", "name" : "774 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 36642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36638", "source" : "3765", "target" : "565", "shared_name" : "774 (interacts with) 4772", "name" : "774 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 36638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36634", "source" : "3765", "target" : "3177", "shared_name" : "774 (interacts with) 5321", "name" : "774 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 36634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36630", "source" : "3765", "target" : "1357", "shared_name" : "774 (interacts with) 58498", "name" : "774 (interacts with) 58498", "interaction" : "interacts with", "SUID" : 36630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36626", "source" : "3765", "target" : "6097", "shared_name" : "774 (interacts with) 1756", "name" : "774 (interacts with) 1756", "interaction" : "interacts with", "SUID" : 36626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36622", "source" : "3765", "target" : "4893", "shared_name" : "774 (interacts with) 10815", "name" : "774 (interacts with) 10815", "interaction" : "interacts with", "SUID" : 36622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36618", "source" : "3765", "target" : "993", "shared_name" : "774 (interacts with) 801", "name" : "774 (interacts with) 801", "interaction" : "interacts with", "SUID" : 36618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36918", "source" : "3761", "target" : "3705", "shared_name" : "25915 (interacts with) 87178", "name" : "25915 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 36918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36914", "source" : "3761", "target" : "5189", "shared_name" : "25915 (interacts with) 57176", "name" : "25915 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 36914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36910", "source" : "3761", "target" : "1637", "shared_name" : "25915 (interacts with) 91574", "name" : "25915 (interacts with) 91574", "interaction" : "interacts with", "SUID" : 36910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36906", "source" : "3761", "target" : "1105", "shared_name" : "25915 (interacts with) 493753", "name" : "25915 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 36906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36902", "source" : "3761", "target" : "4897", "shared_name" : "25915 (interacts with) 55149", "name" : "25915 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 36902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36898", "source" : "3761", "target" : "3545", "shared_name" : "25915 (interacts with) 708", "name" : "25915 (interacts with) 708", "interaction" : "interacts with", "SUID" : 36898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36894", "source" : "3761", "target" : "2297", "shared_name" : "25915 (interacts with) 55005", "name" : "25915 (interacts with) 55005", "interaction" : "interacts with", "SUID" : 36894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36890", "source" : "3761", "target" : "2021", "shared_name" : "25915 (interacts with) 5428", "name" : "25915 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 36890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36886", "source" : "3761", "target" : "1369", "shared_name" : "25915 (interacts with) 27247", "name" : "25915 (interacts with) 27247", "interaction" : "interacts with", "SUID" : 36886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36882", "source" : "3761", "target" : "5085", "shared_name" : "25915 (interacts with) 56652", "name" : "25915 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 36882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36878", "source" : "3761", "target" : "4621", "shared_name" : "25915 (interacts with) 57038", "name" : "25915 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 36878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36874", "source" : "3761", "target" : "1129", "shared_name" : "25915 (interacts with) 57505", "name" : "25915 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 36874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36870", "source" : "3761", "target" : "2565", "shared_name" : "25915 (interacts with) 51501", "name" : "25915 (interacts with) 51501", "interaction" : "interacts with", "SUID" : 36870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36866", "source" : "3761", "target" : "4757", "shared_name" : "25915 (interacts with) 9997", "name" : "25915 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 36866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36862", "source" : "3761", "target" : "4141", "shared_name" : "25915 (interacts with) 617", "name" : "25915 (interacts with) 617", "interaction" : "interacts with", "SUID" : 36862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36858", "source" : "3761", "target" : "2609", "shared_name" : "25915 (interacts with) 29960", "name" : "25915 (interacts with) 29960", "interaction" : "interacts with", "SUID" : 36858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36854", "source" : "3761", "target" : "3633", "shared_name" : "25915 (interacts with) 51067", "name" : "25915 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 36854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36850", "source" : "3761", "target" : "6073", "shared_name" : "25915 (interacts with) 92170", "name" : "25915 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 36850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36846", "source" : "3761", "target" : "5737", "shared_name" : "25915 (interacts with) 84340", "name" : "25915 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 36846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36842", "source" : "3761", "target" : "6001", "shared_name" : "25915 (interacts with) 55157", "name" : "25915 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 36842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36838", "source" : "3761", "target" : "4869", "shared_name" : "25915 (interacts with) 92935", "name" : "25915 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 36838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36834", "source" : "3761", "target" : "4409", "shared_name" : "25915 (interacts with) 6341", "name" : "25915 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 36834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36830", "source" : "3761", "target" : "2105", "shared_name" : "25915 (interacts with) 56945", "name" : "25915 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 36830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36826", "source" : "3761", "target" : "5689", "shared_name" : "25915 (interacts with) 27089", "name" : "25915 (interacts with) 27089", "interaction" : "interacts with", "SUID" : 36826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36822", "source" : "3761", "target" : "713", "shared_name" : "25915 (interacts with) 7019", "name" : "25915 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 36822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36818", "source" : "3761", "target" : "501", "shared_name" : "25915 (interacts with) 65993", "name" : "25915 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 36818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36814", "source" : "3761", "target" : "477", "shared_name" : "25915 (interacts with) 51021", "name" : "25915 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 36814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36810", "source" : "3761", "target" : "5857", "shared_name" : "25915 (interacts with) 4694", "name" : "25915 (interacts with) 4694", "interaction" : "interacts with", "SUID" : 36810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36806", "source" : "3761", "target" : "5553", "shared_name" : "25915 (interacts with) 55967", "name" : "25915 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 36806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36802", "source" : "3761", "target" : "5833", "shared_name" : "25915 (interacts with) 4726", "name" : "25915 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 36802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36798", "source" : "3761", "target" : "5821", "shared_name" : "25915 (interacts with) 4724", "name" : "25915 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 36798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36794", "source" : "3761", "target" : "2757", "shared_name" : "25915 (interacts with) 51079", "name" : "25915 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 36794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36790", "source" : "3761", "target" : "1337", "shared_name" : "25915 (interacts with) 55863", "name" : "25915 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 36790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36786", "source" : "3761", "target" : "1661", "shared_name" : "25915 (interacts with) 91942", "name" : "25915 (interacts with) 91942", "interaction" : "interacts with", "SUID" : 36786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36782", "source" : "3761", "target" : "3617", "shared_name" : "25915 (interacts with) 4704", "name" : "25915 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 36782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36778", "source" : "3761", "target" : "4945", "shared_name" : "25915 (interacts with) 4722", "name" : "25915 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 36778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36774", "source" : "3761", "target" : "1573", "shared_name" : "25915 (interacts with) 4723", "name" : "25915 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 36774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36770", "source" : "3761", "target" : "1561", "shared_name" : "25915 (interacts with) 51117", "name" : "25915 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 36770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36766", "source" : "3761", "target" : "889", "shared_name" : "25915 (interacts with) 80224", "name" : "25915 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 36766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36762", "source" : "3761", "target" : "1197", "shared_name" : "25915 (interacts with) 79587", "name" : "25915 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 36762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36758", "source" : "3761", "target" : "2689", "shared_name" : "25915 (interacts with) 4715", "name" : "25915 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 36758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36754", "source" : "3761", "target" : "1929", "shared_name" : "25915 (interacts with) 51218", "name" : "25915 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 36754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36750", "source" : "3761", "target" : "4069", "shared_name" : "25915 (interacts with) 374291", "name" : "25915 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 36750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36746", "source" : "3761", "target" : "5853", "shared_name" : "25915 (interacts with) 4709", "name" : "25915 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 36746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36742", "source" : "3761", "target" : "2477", "shared_name" : "25915 (interacts with) 57107", "name" : "25915 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 36742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36738", "source" : "3761", "target" : "4101", "shared_name" : "25915 (interacts with) 65260", "name" : "25915 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 36738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36734", "source" : "3761", "target" : "5985", "shared_name" : "25915 (interacts with) 27235", "name" : "25915 (interacts with) 27235", "interaction" : "interacts with", "SUID" : 36734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36730", "source" : "3761", "target" : "4061", "shared_name" : "25915 (interacts with) 4705", "name" : "25915 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 36730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36726", "source" : "3761", "target" : "3973", "shared_name" : "25915 (interacts with) 55572", "name" : "25915 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 36726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36722", "source" : "3761", "target" : "2337", "shared_name" : "25915 (interacts with) 28976", "name" : "25915 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 36722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36718", "source" : "3761", "target" : "2009", "shared_name" : "25915 (interacts with) 79133", "name" : "25915 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 36718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36714", "source" : "3761", "target" : "2753", "shared_name" : "25915 (interacts with) 4720", "name" : "25915 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 36714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36710", "source" : "3761", "target" : "1869", "shared_name" : "25915 (interacts with) 4729", "name" : "25915 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 36710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36706", "source" : "3761", "target" : "4017", "shared_name" : "25915 (interacts with) 4719", "name" : "25915 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 36706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36702", "source" : "3761", "target" : "2285", "shared_name" : "25915 (interacts with) 51300", "name" : "25915 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 36702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36698", "source" : "3761", "target" : "5845", "shared_name" : "25915 (interacts with) 4714", "name" : "25915 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 36698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36694", "source" : "3761", "target" : "5505", "shared_name" : "25915 (interacts with) 29078", "name" : "25915 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 36694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36690", "source" : "3761", "target" : "2801", "shared_name" : "25915 (interacts with) 4700", "name" : "25915 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 36690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36686", "source" : "3761", "target" : "2741", "shared_name" : "25915 (interacts with) 4695", "name" : "25915 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 36686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36682", "source" : "3761", "target" : "2797", "shared_name" : "25915 (interacts with) 4728", "name" : "25915 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 36682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36678", "source" : "3761", "target" : "2109", "shared_name" : "25915 (interacts with) 51103", "name" : "25915 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 36678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37170", "source" : "3757", "target" : "4273", "shared_name" : "215 (interacts with) 4548", "name" : "215 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 37170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37166", "source" : "3757", "target" : "2249", "shared_name" : "215 (interacts with) 25824", "name" : "215 (interacts with) 25824", "interaction" : "interacts with", "SUID" : 37166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37162", "source" : "3757", "target" : "845", "shared_name" : "215 (interacts with) 4358", "name" : "215 (interacts with) 4358", "interaction" : "interacts with", "SUID" : 37162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37158", "source" : "3757", "target" : "517", "shared_name" : "215 (interacts with) 5052", "name" : "215 (interacts with) 5052", "interaction" : "interacts with", "SUID" : 37158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37154", "source" : "3757", "target" : "1969", "shared_name" : "215 (interacts with) 4598", "name" : "215 (interacts with) 4598", "interaction" : "interacts with", "SUID" : 37154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37150", "source" : "3757", "target" : "861", "shared_name" : "215 (interacts with) 23600", "name" : "215 (interacts with) 23600", "interaction" : "interacts with", "SUID" : 37150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37146", "source" : "3757", "target" : "2325", "shared_name" : "215 (interacts with) 55670", "name" : "215 (interacts with) 55670", "interaction" : "interacts with", "SUID" : 37146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37142", "source" : "3757", "target" : "5873", "shared_name" : "215 (interacts with) 5827", "name" : "215 (interacts with) 5827", "interaction" : "interacts with", "SUID" : 37142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37138", "source" : "3757", "target" : "5205", "shared_name" : "215 (interacts with) 5828", "name" : "215 (interacts with) 5828", "interaction" : "interacts with", "SUID" : 37138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37134", "source" : "3757", "target" : "5237", "shared_name" : "215 (interacts with) 5830", "name" : "215 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 37134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37130", "source" : "3757", "target" : "196", "shared_name" : "215 (interacts with) 84188", "name" : "215 (interacts with) 84188", "interaction" : "interacts with", "SUID" : 37130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37126", "source" : "3757", "target" : "5677", "shared_name" : "215 (interacts with) 5189", "name" : "215 (interacts with) 5189", "interaction" : "interacts with", "SUID" : 37126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37122", "source" : "3757", "target" : "4505", "shared_name" : "215 (interacts with) 5190", "name" : "215 (interacts with) 5190", "interaction" : "interacts with", "SUID" : 37122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37118", "source" : "3757", "target" : "1977", "shared_name" : "215 (interacts with) 5191", "name" : "215 (interacts with) 5191", "interaction" : "interacts with", "SUID" : 37118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37114", "source" : "3757", "target" : "5865", "shared_name" : "215 (interacts with) 5192", "name" : "215 (interacts with) 5192", "interaction" : "interacts with", "SUID" : 37114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37110", "source" : "3757", "target" : "4297", "shared_name" : "215 (interacts with) 5193", "name" : "215 (interacts with) 5193", "interaction" : "interacts with", "SUID" : 37110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37106", "source" : "3757", "target" : "1953", "shared_name" : "215 (interacts with) 5194", "name" : "215 (interacts with) 5194", "interaction" : "interacts with", "SUID" : 37106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37102", "source" : "3757", "target" : "5545", "shared_name" : "215 (interacts with) 5195", "name" : "215 (interacts with) 5195", "interaction" : "interacts with", "SUID" : 37102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37098", "source" : "3757", "target" : "2353", "shared_name" : "215 (interacts with) 5264", "name" : "215 (interacts with) 5264", "interaction" : "interacts with", "SUID" : 37098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37094", "source" : "3757", "target" : "5133", "shared_name" : "215 (interacts with) 51", "name" : "215 (interacts with) 51", "interaction" : "interacts with", "SUID" : 37094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37090", "source" : "3757", "target" : "4301", "shared_name" : "215 (interacts with) 8799", "name" : "215 (interacts with) 8799", "interaction" : "interacts with", "SUID" : 37090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37086", "source" : "3757", "target" : "3333", "shared_name" : "215 (interacts with) 9409", "name" : "215 (interacts with) 9409", "interaction" : "interacts with", "SUID" : 37086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37082", "source" : "3757", "target" : "3329", "shared_name" : "215 (interacts with) 5824", "name" : "215 (interacts with) 5824", "interaction" : "interacts with", "SUID" : 37082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37078", "source" : "3757", "target" : "3341", "shared_name" : "215 (interacts with) 8504", "name" : "215 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 37078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37074", "source" : "3757", "target" : "365", "shared_name" : "215 (interacts with) 64834", "name" : "215 (interacts with) 64834", "interaction" : "interacts with", "SUID" : 37074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37070", "source" : "3757", "target" : "4941", "shared_name" : "215 (interacts with) 6342", "name" : "215 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 37070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37066", "source" : "3757", "target" : "1525", "shared_name" : "215 (interacts with) 3295", "name" : "215 (interacts with) 3295", "interaction" : "interacts with", "SUID" : 37066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37062", "source" : "3757", "target" : "985", "shared_name" : "215 (interacts with) 9091", "name" : "215 (interacts with) 9091", "interaction" : "interacts with", "SUID" : 37062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37058", "source" : "3757", "target" : "3177", "shared_name" : "215 (interacts with) 5321", "name" : "215 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 37058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37054", "source" : "3757", "target" : "1721", "shared_name" : "215 (interacts with) 51807", "name" : "215 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 37054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37050", "source" : "3757", "target" : "1013", "shared_name" : "215 (interacts with) 6898", "name" : "215 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 37050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37046", "source" : "3757", "target" : "2925", "shared_name" : "215 (interacts with) 8802", "name" : "215 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 37046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37042", "source" : "3757", "target" : "4989", "shared_name" : "215 (interacts with) 51227", "name" : "215 (interacts with) 51227", "interaction" : "interacts with", "SUID" : 37042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37038", "source" : "3757", "target" : "1545", "shared_name" : "215 (interacts with) 5277", "name" : "215 (interacts with) 5277", "interaction" : "interacts with", "SUID" : 37038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37034", "source" : "3757", "target" : "989", "shared_name" : "215 (interacts with) 5297", "name" : "215 (interacts with) 5297", "interaction" : "interacts with", "SUID" : 37034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37030", "source" : "3757", "target" : "1697", "shared_name" : "215 (interacts with) 8818", "name" : "215 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 37030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37026", "source" : "3757", "target" : "5101", "shared_name" : "215 (interacts with) 8678", "name" : "215 (interacts with) 8678", "interaction" : "interacts with", "SUID" : 37026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37022", "source" : "3757", "target" : "4025", "shared_name" : "215 (interacts with) 284111", "name" : "215 (interacts with) 284111", "interaction" : "interacts with", "SUID" : 37022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37018", "source" : "3757", "target" : "6009", "shared_name" : "215 (interacts with) 64849", "name" : "215 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 37018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37014", "source" : "3757", "target" : "1289", "shared_name" : "215 (interacts with) 6392", "name" : "215 (interacts with) 6392", "interaction" : "interacts with", "SUID" : 37014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37010", "source" : "3757", "target" : "3425", "shared_name" : "215 (interacts with) 8803", "name" : "215 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 37010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37006", "source" : "3757", "target" : "3325", "shared_name" : "215 (interacts with) 9517", "name" : "215 (interacts with) 9517", "interaction" : "interacts with", "SUID" : 37006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37002", "source" : "3757", "target" : "409", "shared_name" : "215 (interacts with) 10558", "name" : "215 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 37002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36998", "source" : "3757", "target" : "3793", "shared_name" : "215 (interacts with) 28965", "name" : "215 (interacts with) 28965", "interaction" : "interacts with", "SUID" : 36998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36994", "source" : "3757", "target" : "3541", "shared_name" : "215 (interacts with) 4191", "name" : "215 (interacts with) 4191", "interaction" : "interacts with", "SUID" : 36994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36990", "source" : "3757", "target" : "1669", "shared_name" : "215 (interacts with) 6390", "name" : "215 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 36990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36986", "source" : "3757", "target" : "5025", "shared_name" : "215 (interacts with) 6389", "name" : "215 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 36986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36982", "source" : "3757", "target" : "2413", "shared_name" : "215 (interacts with) 50484", "name" : "215 (interacts with) 50484", "interaction" : "interacts with", "SUID" : 36982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36978", "source" : "3757", "target" : "3929", "shared_name" : "215 (interacts with) 5860", "name" : "215 (interacts with) 5860", "interaction" : "interacts with", "SUID" : 36978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36974", "source" : "3757", "target" : "1133", "shared_name" : "215 (interacts with) 3418", "name" : "215 (interacts with) 3418", "interaction" : "interacts with", "SUID" : 36974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36970", "source" : "3757", "target" : "5017", "shared_name" : "215 (interacts with) 3417", "name" : "215 (interacts with) 3417", "interaction" : "interacts with", "SUID" : 36970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36966", "source" : "3757", "target" : "5529", "shared_name" : "215 (interacts with) 2875", "name" : "215 (interacts with) 2875", "interaction" : "interacts with", "SUID" : 36966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36962", "source" : "3757", "target" : "4253", "shared_name" : "215 (interacts with) 84706", "name" : "215 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 36962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36958", "source" : "3757", "target" : "2089", "shared_name" : "215 (interacts with) 3939", "name" : "215 (interacts with) 3939", "interaction" : "interacts with", "SUID" : 36958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36954", "source" : "3757", "target" : "2405", "shared_name" : "215 (interacts with) 3658", "name" : "215 (interacts with) 3658", "interaction" : "interacts with", "SUID" : 36954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36950", "source" : "3757", "target" : "2365", "shared_name" : "215 (interacts with) 2731", "name" : "215 (interacts with) 2731", "interaction" : "interacts with", "SUID" : 36950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36946", "source" : "3757", "target" : "5213", "shared_name" : "215 (interacts with) 2271", "name" : "215 (interacts with) 2271", "interaction" : "interacts with", "SUID" : 36946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36942", "source" : "3757", "target" : "4489", "shared_name" : "215 (interacts with) 2222", "name" : "215 (interacts with) 2222", "interaction" : "interacts with", "SUID" : 36942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36938", "source" : "3757", "target" : "1489", "shared_name" : "215 (interacts with) 1738", "name" : "215 (interacts with) 1738", "interaction" : "interacts with", "SUID" : 36938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36934", "source" : "3757", "target" : "397", "shared_name" : "215 (interacts with) 50", "name" : "215 (interacts with) 50", "interaction" : "interacts with", "SUID" : 36934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36930", "source" : "3757", "target" : "3537", "shared_name" : "215 (interacts with) 501", "name" : "215 (interacts with) 501", "interaction" : "interacts with", "SUID" : 36930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36926", "source" : "3757", "target" : "2989", "shared_name" : "215 (interacts with) 224", "name" : "215 (interacts with) 224", "interaction" : "interacts with", "SUID" : 36926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "36922", "source" : "3757", "target" : "5565", "shared_name" : "215 (interacts with) 217", "name" : "215 (interacts with) 217", "interaction" : "interacts with", "SUID" : 36922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37174", "source" : "3749", "target" : "1541", "shared_name" : "8518 (interacts with) 958", "name" : "8518 (interacts with) 958", "interaction" : "interacts with", "SUID" : 37174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37266", "source" : "3745", "target" : "5225", "shared_name" : "4803 (interacts with) 5290", "name" : "4803 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 37266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37262", "source" : "3745", "target" : "4213", "shared_name" : "4803 (interacts with) 5295", "name" : "4803 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 37262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37258", "source" : "3745", "target" : "973", "shared_name" : "4803 (interacts with) 5595", "name" : "4803 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 37258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37254", "source" : "3745", "target" : "5081", "shared_name" : "4803 (interacts with) 5594", "name" : "4803 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 37254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37250", "source" : "3745", "target" : "637", "shared_name" : "4803 (interacts with) 6654", "name" : "4803 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 37250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37246", "source" : "3745", "target" : "4521", "shared_name" : "4803 (interacts with) 5894", "name" : "4803 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 37246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37242", "source" : "3745", "target" : "5361", "shared_name" : "4803 (interacts with) 5604", "name" : "4803 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 37242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37238", "source" : "3745", "target" : "5625", "shared_name" : "4803 (interacts with) 595", "name" : "4803 (interacts with) 595", "interaction" : "interacts with", "SUID" : 37238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37234", "source" : "3745", "target" : "3577", "shared_name" : "4803 (interacts with) 5605", "name" : "4803 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 37234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37230", "source" : "3745", "target" : "5037", "shared_name" : "4803 (interacts with) 5515", "name" : "4803 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 37230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37226", "source" : "3745", "target" : "981", "shared_name" : "4803 (interacts with) 7157", "name" : "4803 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 37226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37222", "source" : "3745", "target" : "2905", "shared_name" : "4803 (interacts with) 5664", "name" : "4803 (interacts with) 5664", "interaction" : "interacts with", "SUID" : 37222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37218", "source" : "3745", "target" : "1697", "shared_name" : "4803 (interacts with) 8818", "name" : "4803 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 37218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37214", "source" : "3745", "target" : "4981", "shared_name" : "4803 (interacts with) 6774", "name" : "4803 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 37214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37210", "source" : "3745", "target" : "4293", "shared_name" : "4803 (interacts with) 5156", "name" : "4803 (interacts with) 5156", "interaction" : "interacts with", "SUID" : 37210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37206", "source" : "3745", "target" : "737", "shared_name" : "4803 (interacts with) 2643", "name" : "4803 (interacts with) 2643", "interaction" : "interacts with", "SUID" : 37206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37202", "source" : "3745", "target" : "3349", "shared_name" : "4803 (interacts with) 8878", "name" : "4803 (interacts with) 8878", "interaction" : "interacts with", "SUID" : 37202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37198", "source" : "3745", "target" : "5713", "shared_name" : "4803 (interacts with) 7531", "name" : "4803 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 37198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37194", "source" : "3745", "target" : "5229", "shared_name" : "4803 (interacts with) 6335", "name" : "4803 (interacts with) 6335", "interaction" : "interacts with", "SUID" : 37194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37190", "source" : "3745", "target" : "4949", "shared_name" : "4803 (interacts with) 5970", "name" : "4803 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 37190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37186", "source" : "3745", "target" : "3041", "shared_name" : "4803 (interacts with) 5663", "name" : "4803 (interacts with) 5663", "interaction" : "interacts with", "SUID" : 37186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37182", "source" : "3745", "target" : "3465", "shared_name" : "4803 (interacts with) 5296", "name" : "4803 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 37182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37178", "source" : "3745", "target" : "4237", "shared_name" : "4803 (interacts with) 4914", "name" : "4803 (interacts with) 4914", "interaction" : "interacts with", "SUID" : 37178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37270", "source" : "3741", "target" : "5753", "shared_name" : "51633 (interacts with) 2581", "name" : "51633 (interacts with) 2581", "interaction" : "interacts with", "SUID" : 37270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37298", "source" : "3737", "target" : "2625", "shared_name" : "3064 (interacts with) 3065", "name" : "3064 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 37298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37294", "source" : "3737", "target" : "5453", "shared_name" : "3064 (interacts with) 4204", "name" : "3064 (interacts with) 4204", "interaction" : "interacts with", "SUID" : 37294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37290", "source" : "3737", "target" : "3749", "shared_name" : "3064 (interacts with) 8518", "name" : "3064 (interacts with) 8518", "interaction" : "interacts with", "SUID" : 37290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37286", "source" : "3737", "target" : "773", "shared_name" : "3064 (interacts with) 29072", "name" : "3064 (interacts with) 29072", "interaction" : "interacts with", "SUID" : 37286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37282", "source" : "3737", "target" : "2125", "shared_name" : "3064 (interacts with) 2512", "name" : "3064 (interacts with) 2512", "interaction" : "interacts with", "SUID" : 37282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37278", "source" : "3737", "target" : "5285", "shared_name" : "3064 (interacts with) 10133", "name" : "3064 (interacts with) 10133", "interaction" : "interacts with", "SUID" : 37278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37274", "source" : "3737", "target" : "4097", "shared_name" : "3064 (interacts with) 9611", "name" : "3064 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 37274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37346", "source" : "3733", "target" : "2225", "shared_name" : "2760 (interacts with) 4864", "name" : "2760 (interacts with) 4864", "interaction" : "interacts with", "SUID" : 37346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37342", "source" : "3733", "target" : "5221", "shared_name" : "2760 (interacts with) 285362", "name" : "2760 (interacts with) 285362", "interaction" : "interacts with", "SUID" : 37342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37338", "source" : "3733", "target" : "1193", "shared_name" : "2760 (interacts with) 5660", "name" : "2760 (interacts with) 5660", "interaction" : "interacts with", "SUID" : 37338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37334", "source" : "3733", "target" : "1261", "shared_name" : "2760 (interacts with) 57192", "name" : "2760 (interacts with) 57192", "interaction" : "interacts with", "SUID" : 37334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37330", "source" : "3733", "target" : "5937", "shared_name" : "2760 (interacts with) 8120", "name" : "2760 (interacts with) 8120", "interaction" : "interacts with", "SUID" : 37330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37326", "source" : "3733", "target" : "1677", "shared_name" : "2760 (interacts with) 8905", "name" : "2760 (interacts with) 8905", "interaction" : "interacts with", "SUID" : 37326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37322", "source" : "3733", "target" : "1445", "shared_name" : "2760 (interacts with) 9179", "name" : "2760 (interacts with) 9179", "interaction" : "interacts with", "SUID" : 37322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37318", "source" : "3733", "target" : "3693", "shared_name" : "2760 (interacts with) 8943", "name" : "2760 (interacts with) 8943", "interaction" : "interacts with", "SUID" : 37318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37314", "source" : "3733", "target" : "4393", "shared_name" : "2760 (interacts with) 950", "name" : "2760 (interacts with) 950", "interaction" : "interacts with", "SUID" : 37314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37310", "source" : "3733", "target" : "2233", "shared_name" : "2760 (interacts with) 9516", "name" : "2760 (interacts with) 9516", "interaction" : "interacts with", "SUID" : 37310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37306", "source" : "3733", "target" : "4421", "shared_name" : "2760 (interacts with) 2551", "name" : "2760 (interacts with) 2551", "interaction" : "interacts with", "SUID" : 37306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37302", "source" : "3733", "target" : "5869", "shared_name" : "2760 (interacts with) 59", "name" : "2760 (interacts with) 59", "interaction" : "interacts with", "SUID" : 37302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37354", "source" : "3729", "target" : "1493", "shared_name" : "7319 (interacts with) 7428", "name" : "7319 (interacts with) 7428", "interaction" : "interacts with", "SUID" : 37354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37350", "source" : "3729", "target" : "1413", "shared_name" : "7319 (interacts with) 7337", "name" : "7319 (interacts with) 7337", "interaction" : "interacts with", "SUID" : 37350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37366", "source" : "3725", "target" : "5757", "shared_name" : "10159 (interacts with) 4311", "name" : "10159 (interacts with) 4311", "interaction" : "interacts with", "SUID" : 37366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37362", "source" : "3725", "target" : "2185", "shared_name" : "10159 (interacts with) 1636", "name" : "10159 (interacts with) 1636", "interaction" : "interacts with", "SUID" : 37362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37358", "source" : "3725", "target" : "1441", "shared_name" : "10159 (interacts with) 1509", "name" : "10159 (interacts with) 1509", "interaction" : "interacts with", "SUID" : 37358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37478", "source" : "3721", "target" : "973", "shared_name" : "2934 (interacts with) 5595", "name" : "2934 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 37478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37474", "source" : "3721", "target" : "5081", "shared_name" : "2934 (interacts with) 5594", "name" : "2934 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 37474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37470", "source" : "3721", "target" : "5225", "shared_name" : "2934 (interacts with) 5290", "name" : "2934 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 37470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37466", "source" : "3721", "target" : "4213", "shared_name" : "2934 (interacts with) 5295", "name" : "2934 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 37466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37462", "source" : "3721", "target" : "3685", "shared_name" : "2934 (interacts with) 3265", "name" : "2934 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 37462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37458", "source" : "3721", "target" : "5361", "shared_name" : "2934 (interacts with) 5604", "name" : "2934 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 37458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37454", "source" : "3721", "target" : "4949", "shared_name" : "2934 (interacts with) 5970", "name" : "2934 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 37454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37450", "source" : "3721", "target" : "3017", "shared_name" : "2934 (interacts with) 4790", "name" : "2934 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 37450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37446", "source" : "3721", "target" : "4521", "shared_name" : "2934 (interacts with) 5894", "name" : "2934 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 37446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37442", "source" : "3721", "target" : "5965", "shared_name" : "2934 (interacts with) 596", "name" : "2934 (interacts with) 596", "interaction" : "interacts with", "SUID" : 37442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37438", "source" : "3721", "target" : "4065", "shared_name" : "2934 (interacts with) 7124", "name" : "2934 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 37438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37434", "source" : "3721", "target" : "1233", "shared_name" : "2934 (interacts with) 355", "name" : "2934 (interacts with) 355", "interaction" : "interacts with", "SUID" : 37434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37430", "source" : "3721", "target" : "4769", "shared_name" : "2934 (interacts with) 7132", "name" : "2934 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 37430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37426", "source" : "3721", "target" : "1845", "shared_name" : "2934 (interacts with) 836", "name" : "2934 (interacts with) 836", "interaction" : "interacts with", "SUID" : 37426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37422", "source" : "3721", "target" : "5333", "shared_name" : "2934 (interacts with) 5591", "name" : "2934 (interacts with) 5591", "interaction" : "interacts with", "SUID" : 37422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37418", "source" : "3721", "target" : "829", "shared_name" : "2934 (interacts with) 8772", "name" : "2934 (interacts with) 8772", "interaction" : "interacts with", "SUID" : 37418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37414", "source" : "3721", "target" : "1973", "shared_name" : "2934 (interacts with) 6709", "name" : "2934 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 37414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37410", "source" : "3721", "target" : "3041", "shared_name" : "2934 (interacts with) 5663", "name" : "2934 (interacts with) 5663", "interaction" : "interacts with", "SUID" : 37410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37406", "source" : "3721", "target" : "3361", "shared_name" : "2934 (interacts with) 4000", "name" : "2934 (interacts with) 4000", "interaction" : "interacts with", "SUID" : 37406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37402", "source" : "3721", "target" : "3021", "shared_name" : "2934 (interacts with) 84823", "name" : "2934 (interacts with) 84823", "interaction" : "interacts with", "SUID" : 37402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37398", "source" : "3721", "target" : "3937", "shared_name" : "2934 (interacts with) 4001", "name" : "2934 (interacts with) 4001", "interaction" : "interacts with", "SUID" : 37398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37394", "source" : "3721", "target" : "2537", "shared_name" : "2934 (interacts with) 3984", "name" : "2934 (interacts with) 3984", "interaction" : "interacts with", "SUID" : 37394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37390", "source" : "3721", "target" : "2905", "shared_name" : "2934 (interacts with) 5664", "name" : "2934 (interacts with) 5664", "interaction" : "interacts with", "SUID" : 37390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37386", "source" : "3721", "target" : "4077", "shared_name" : "2934 (interacts with) 71", "name" : "2934 (interacts with) 71", "interaction" : "interacts with", "SUID" : 37386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37382", "source" : "3721", "target" : "3833", "shared_name" : "2934 (interacts with) 9138", "name" : "2934 (interacts with) 9138", "interaction" : "interacts with", "SUID" : 37382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37378", "source" : "3721", "target" : "4729", "shared_name" : "2934 (interacts with) 5216", "name" : "2934 (interacts with) 5216", "interaction" : "interacts with", "SUID" : 37378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37374", "source" : "3721", "target" : "1245", "shared_name" : "2934 (interacts with) 4137", "name" : "2934 (interacts with) 4137", "interaction" : "interacts with", "SUID" : 37374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37370", "source" : "3721", "target" : "705", "shared_name" : "2934 (interacts with) 728378", "name" : "2934 (interacts with) 728378", "interaction" : "interacts with", "SUID" : 37370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37498", "source" : "3717", "target" : "2661", "shared_name" : "3593 (interacts with) 3606", "name" : "3593 (interacts with) 3606", "interaction" : "interacts with", "SUID" : 37498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37494", "source" : "3717", "target" : "1541", "shared_name" : "3593 (interacts with) 958", "name" : "3593 (interacts with) 958", "interaction" : "interacts with", "SUID" : 37494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37490", "source" : "3717", "target" : "5297", "shared_name" : "3593 (interacts with) 6775", "name" : "3593 (interacts with) 6775", "interaction" : "interacts with", "SUID" : 37490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37486", "source" : "3717", "target" : "4981", "shared_name" : "3593 (interacts with) 6774", "name" : "3593 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 37486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37482", "source" : "3717", "target" : "3553", "shared_name" : "3593 (interacts with) 3592", "name" : "3593 (interacts with) 3592", "interaction" : "interacts with", "SUID" : 37482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37502", "source" : "3709", "target" : "5729", "shared_name" : "9757 (interacts with) 861", "name" : "9757 (interacts with) 861", "interaction" : "interacts with", "SUID" : 37502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37522", "source" : "3705", "target" : "4757", "shared_name" : "87178 (interacts with) 9997", "name" : "87178 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 37522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37518", "source" : "3705", "target" : "6073", "shared_name" : "87178 (interacts with) 92170", "name" : "87178 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 37518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37514", "source" : "3705", "target" : "4869", "shared_name" : "87178 (interacts with) 92935", "name" : "87178 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 37514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37510", "source" : "3705", "target" : "4353", "shared_name" : "87178 (interacts with) 9512", "name" : "87178 (interacts with) 9512", "interaction" : "interacts with", "SUID" : 37510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37506", "source" : "3705", "target" : "6133", "shared_name" : "87178 (interacts with) 54658", "name" : "87178 (interacts with) 54658", "interaction" : "interacts with", "SUID" : 37506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37526", "source" : "3701", "target" : "5461", "shared_name" : "4664 (interacts with) 4665", "name" : "4664 (interacts with) 4665", "interaction" : "interacts with", "SUID" : 37526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37542", "source" : "3697", "target" : "1597", "shared_name" : "7099 (interacts with) 3146", "name" : "7099 (interacts with) 3146", "interaction" : "interacts with", "SUID" : 37542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37538", "source" : "3697", "target" : "593", "shared_name" : "7099 (interacts with) 8743", "name" : "7099 (interacts with) 8743", "interaction" : "interacts with", "SUID" : 37538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37534", "source" : "3697", "target" : "1933", "shared_name" : "7099 (interacts with) 7335", "name" : "7099 (interacts with) 7335", "interaction" : "interacts with", "SUID" : 37534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37530", "source" : "3697", "target" : "2637", "shared_name" : "7099 (interacts with) 353376", "name" : "7099 (interacts with) 353376", "interaction" : "interacts with", "SUID" : 37530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37554", "source" : "3693", "target" : "1445", "shared_name" : "8943 (interacts with) 9179", "name" : "8943 (interacts with) 9179", "interaction" : "interacts with", "SUID" : 37554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37550", "source" : "3693", "target" : "4393", "shared_name" : "8943 (interacts with) 950", "name" : "8943 (interacts with) 950", "interaction" : "interacts with", "SUID" : 37550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37546", "source" : "3693", "target" : "2233", "shared_name" : "8943 (interacts with) 9516", "name" : "8943 (interacts with) 9516", "interaction" : "interacts with", "SUID" : 37546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37566", "source" : "3689", "target" : "389", "shared_name" : "7054 (interacts with) 7299", "name" : "7054 (interacts with) 7299", "interaction" : "interacts with", "SUID" : 37566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37562", "source" : "3689", "target" : "3633", "shared_name" : "7054 (interacts with) 51067", "name" : "7054 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 37562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37558", "source" : "3689", "target" : "4697", "shared_name" : "7054 (interacts with) 7534", "name" : "7054 (interacts with) 7534", "interaction" : "interacts with", "SUID" : 37558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37910", "source" : "3685", "target" : "5965", "shared_name" : "3265 (interacts with) 596", "name" : "3265 (interacts with) 596", "interaction" : "interacts with", "SUID" : 37910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37906", "source" : "3685", "target" : "981", "shared_name" : "3265 (interacts with) 7157", "name" : "3265 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 37906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37902", "source" : "3685", "target" : "993", "shared_name" : "3265 (interacts with) 801", "name" : "3265 (interacts with) 801", "interaction" : "interacts with", "SUID" : 37902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37898", "source" : "3685", "target" : "5037", "shared_name" : "3265 (interacts with) 5515", "name" : "3265 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 37898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37894", "source" : "3685", "target" : "1241", "shared_name" : "3265 (interacts with) 808", "name" : "3265 (interacts with) 808", "interaction" : "interacts with", "SUID" : 37894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37890", "source" : "3685", "target" : "1201", "shared_name" : "3265 (interacts with) 805", "name" : "3265 (interacts with) 805", "interaction" : "interacts with", "SUID" : 37890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37886", "source" : "3685", "target" : "3577", "shared_name" : "3265 (interacts with) 5605", "name" : "3265 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 37886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37882", "source" : "3685", "target" : "805", "shared_name" : "3265 (interacts with) 6772", "name" : "3265 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 37882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37878", "source" : "3685", "target" : "1233", "shared_name" : "3265 (interacts with) 355", "name" : "3265 (interacts with) 355", "interaction" : "interacts with", "SUID" : 37878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37874", "source" : "3685", "target" : "3593", "shared_name" : "3265 (interacts with) 5530", "name" : "3265 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 37874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37870", "source" : "3685", "target" : "4649", "shared_name" : "3265 (interacts with) 3479", "name" : "3265 (interacts with) 3479", "interaction" : "interacts with", "SUID" : 37870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37866", "source" : "3685", "target" : "4769", "shared_name" : "3265 (interacts with) 7132", "name" : "3265 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 37866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37862", "source" : "3685", "target" : "565", "shared_name" : "3265 (interacts with) 4772", "name" : "3265 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 37862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37858", "source" : "3685", "target" : "5625", "shared_name" : "3265 (interacts with) 595", "name" : "3265 (interacts with) 595", "interaction" : "interacts with", "SUID" : 37858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37854", "source" : "3685", "target" : "3173", "shared_name" : "3265 (interacts with) 3558", "name" : "3265 (interacts with) 3558", "interaction" : "interacts with", "SUID" : 37854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37850", "source" : "3685", "target" : "5761", "shared_name" : "3265 (interacts with) 4208", "name" : "3265 (interacts with) 4208", "interaction" : "interacts with", "SUID" : 37850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37846", "source" : "3685", "target" : "4981", "shared_name" : "3265 (interacts with) 6774", "name" : "3265 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 37846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37842", "source" : "3685", "target" : "2433", "shared_name" : "3265 (interacts with) 6927", "name" : "3265 (interacts with) 6927", "interaction" : "interacts with", "SUID" : 37842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37838", "source" : "3685", "target" : "865", "shared_name" : "3265 (interacts with) 3480", "name" : "3265 (interacts with) 3480", "interaction" : "interacts with", "SUID" : 37838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37834", "source" : "3685", "target" : "5313", "shared_name" : "3265 (interacts with) 6197", "name" : "3265 (interacts with) 6197", "interaction" : "interacts with", "SUID" : 37834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37830", "source" : "3685", "target" : "3177", "shared_name" : "3265 (interacts with) 5321", "name" : "3265 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 37830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37826", "source" : "3685", "target" : "817", "shared_name" : "3265 (interacts with) 5728", "name" : "3265 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 37826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37822", "source" : "3685", "target" : "4293", "shared_name" : "3265 (interacts with) 5156", "name" : "3265 (interacts with) 5156", "interaction" : "interacts with", "SUID" : 37822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37818", "source" : "3685", "target" : "5697", "shared_name" : "3265 (interacts with) 8517", "name" : "3265 (interacts with) 8517", "interaction" : "interacts with", "SUID" : 37818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37814", "source" : "3685", "target" : "2333", "shared_name" : "3265 (interacts with) 3559", "name" : "3265 (interacts with) 3559", "interaction" : "interacts with", "SUID" : 37814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37810", "source" : "3685", "target" : "2005", "shared_name" : "3265 (interacts with) 4846", "name" : "3265 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 37810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37806", "source" : "3685", "target" : "5941", "shared_name" : "3265 (interacts with) 5914", "name" : "3265 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 37806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37802", "source" : "3685", "target" : "1701", "shared_name" : "3265 (interacts with) 5777", "name" : "3265 (interacts with) 5777", "interaction" : "interacts with", "SUID" : 37802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37798", "source" : "3685", "target" : "5681", "shared_name" : "3265 (interacts with) 3315", "name" : "3265 (interacts with) 3315", "interaction" : "interacts with", "SUID" : 37798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37794", "source" : "3685", "target" : "2537", "shared_name" : "3265 (interacts with) 3984", "name" : "3265 (interacts with) 3984", "interaction" : "interacts with", "SUID" : 37794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37790", "source" : "3685", "target" : "2309", "shared_name" : "3265 (interacts with) 3316", "name" : "3265 (interacts with) 3316", "interaction" : "interacts with", "SUID" : 37790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37786", "source" : "3685", "target" : "2793", "shared_name" : "3265 (interacts with) 8894", "name" : "3265 (interacts with) 8894", "interaction" : "interacts with", "SUID" : 37786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37782", "source" : "3685", "target" : "5053", "shared_name" : "3265 (interacts with) 857", "name" : "3265 (interacts with) 857", "interaction" : "interacts with", "SUID" : 37782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37778", "source" : "3685", "target" : "3745", "shared_name" : "3265 (interacts with) 4803", "name" : "3265 (interacts with) 4803", "interaction" : "interacts with", "SUID" : 37778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37774", "source" : "3685", "target" : "4909", "shared_name" : "3265 (interacts with) 823", "name" : "3265 (interacts with) 823", "interaction" : "interacts with", "SUID" : 37774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37770", "source" : "3685", "target" : "6101", "shared_name" : "3265 (interacts with) 5582", "name" : "3265 (interacts with) 5582", "interaction" : "interacts with", "SUID" : 37770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37766", "source" : "3685", "target" : "4033", "shared_name" : "3265 (interacts with) 613", "name" : "3265 (interacts with) 613", "interaction" : "interacts with", "SUID" : 37766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37762", "source" : "3685", "target" : "877", "shared_name" : "3265 (interacts with) 7341", "name" : "3265 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 37762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37758", "source" : "3685", "target" : "4149", "shared_name" : "3265 (interacts with) 8893", "name" : "3265 (interacts with) 8893", "interaction" : "interacts with", "SUID" : 37758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37754", "source" : "3685", "target" : "1697", "shared_name" : "3265 (interacts with) 8818", "name" : "3265 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 37754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37750", "source" : "3685", "target" : "1493", "shared_name" : "3265 (interacts with) 7428", "name" : "3265 (interacts with) 7428", "interaction" : "interacts with", "SUID" : 37750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37746", "source" : "3685", "target" : "4729", "shared_name" : "3265 (interacts with) 5216", "name" : "3265 (interacts with) 5216", "interaction" : "interacts with", "SUID" : 37746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37742", "source" : "3685", "target" : "2901", "shared_name" : "3265 (interacts with) 6647", "name" : "3265 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 37742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37738", "source" : "3685", "target" : "4237", "shared_name" : "3265 (interacts with) 4914", "name" : "3265 (interacts with) 4914", "interaction" : "interacts with", "SUID" : 37738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37734", "source" : "3685", "target" : "2061", "shared_name" : "3265 (interacts with) 3570", "name" : "3265 (interacts with) 3570", "interaction" : "interacts with", "SUID" : 37734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37730", "source" : "3685", "target" : "4837", "shared_name" : "3265 (interacts with) 8891", "name" : "3265 (interacts with) 8891", "interaction" : "interacts with", "SUID" : 37730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37726", "source" : "3685", "target" : "841", "shared_name" : "3265 (interacts with) 8890", "name" : "3265 (interacts with) 8890", "interaction" : "interacts with", "SUID" : 37726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37722", "source" : "3685", "target" : "1605", "shared_name" : "3265 (interacts with) 6648", "name" : "3265 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 37722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37718", "source" : "3685", "target" : "837", "shared_name" : "3265 (interacts with) 8892", "name" : "3265 (interacts with) 8892", "interaction" : "interacts with", "SUID" : 37718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37714", "source" : "3685", "target" : "1805", "shared_name" : "3265 (interacts with) 3738", "name" : "3265 (interacts with) 3738", "interaction" : "interacts with", "SUID" : 37714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37710", "source" : "3685", "target" : "5009", "shared_name" : "3265 (interacts with) 5241", "name" : "3265 (interacts with) 5241", "interaction" : "interacts with", "SUID" : 37710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37706", "source" : "3685", "target" : "5781", "shared_name" : "3265 (interacts with) 6672", "name" : "3265 (interacts with) 6672", "interaction" : "interacts with", "SUID" : 37706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37702", "source" : "3685", "target" : "2069", "shared_name" : "3265 (interacts with) 84106", "name" : "3265 (interacts with) 84106", "interaction" : "interacts with", "SUID" : 37702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37698", "source" : "3685", "target" : "3417", "shared_name" : "3265 (interacts with) 5371", "name" : "3265 (interacts with) 5371", "interaction" : "interacts with", "SUID" : 37698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37694", "source" : "3685", "target" : "4161", "shared_name" : "3265 (interacts with) 4318", "name" : "3265 (interacts with) 4318", "interaction" : "interacts with", "SUID" : 37694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37690", "source" : "3685", "target" : "4041", "shared_name" : "3265 (interacts with) 847", "name" : "3265 (interacts with) 847", "interaction" : "interacts with", "SUID" : 37690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37686", "source" : "3685", "target" : "1405", "shared_name" : "3265 (interacts with) 998", "name" : "3265 (interacts with) 998", "interaction" : "interacts with", "SUID" : 37686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37682", "source" : "3685", "target" : "1069", "shared_name" : "3265 (interacts with) 5879", "name" : "3265 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 37682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37678", "source" : "3685", "target" : "5097", "shared_name" : "3265 (interacts with) 8831", "name" : "3265 (interacts with) 8831", "interaction" : "interacts with", "SUID" : 37678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37674", "source" : "3685", "target" : "4361", "shared_name" : "3265 (interacts with) 22906", "name" : "3265 (interacts with) 22906", "interaction" : "interacts with", "SUID" : 37674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37670", "source" : "3685", "target" : "3637", "shared_name" : "3265 (interacts with) 6712", "name" : "3265 (interacts with) 6712", "interaction" : "interacts with", "SUID" : 37670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37666", "source" : "3685", "target" : "1633", "shared_name" : "3265 (interacts with) 57731", "name" : "3265 (interacts with) 57731", "interaction" : "interacts with", "SUID" : 37666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37662", "source" : "3685", "target" : "4725", "shared_name" : "3265 (interacts with) 7010", "name" : "3265 (interacts with) 7010", "interaction" : "interacts with", "SUID" : 37662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37658", "source" : "3685", "target" : "5125", "shared_name" : "3265 (interacts with) 5979", "name" : "3265 (interacts with) 5979", "interaction" : "interacts with", "SUID" : 37658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37654", "source" : "3685", "target" : "1973", "shared_name" : "3265 (interacts with) 6709", "name" : "3265 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 37654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37650", "source" : "3685", "target" : "313", "shared_name" : "3265 (interacts with) 5923", "name" : "3265 (interacts with) 5923", "interaction" : "interacts with", "SUID" : 37650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37646", "source" : "3685", "target" : "3841", "shared_name" : "3265 (interacts with) 9444", "name" : "3265 (interacts with) 9444", "interaction" : "interacts with", "SUID" : 37646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37642", "source" : "3685", "target" : "5641", "shared_name" : "3265 (interacts with) 5518", "name" : "3265 (interacts with) 5518", "interaction" : "interacts with", "SUID" : 37642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37638", "source" : "3685", "target" : "5149", "shared_name" : "3265 (interacts with) 5058", "name" : "3265 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 37638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37634", "source" : "3685", "target" : "4209", "shared_name" : "3265 (interacts with) 4915", "name" : "3265 (interacts with) 4915", "interaction" : "interacts with", "SUID" : 37634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37630", "source" : "3685", "target" : "5973", "shared_name" : "3265 (interacts with) 5155", "name" : "3265 (interacts with) 5155", "interaction" : "interacts with", "SUID" : 37630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37626", "source" : "3685", "target" : "2173", "shared_name" : "3265 (interacts with) 5159", "name" : "3265 (interacts with) 5159", "interaction" : "interacts with", "SUID" : 37626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37622", "source" : "3685", "target" : "4385", "shared_name" : "3265 (interacts with) 3084", "name" : "3265 (interacts with) 3084", "interaction" : "interacts with", "SUID" : 37622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37618", "source" : "3685", "target" : "2197", "shared_name" : "3265 (interacts with) 4684", "name" : "3265 (interacts with) 4684", "interaction" : "interacts with", "SUID" : 37618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37614", "source" : "3685", "target" : "2977", "shared_name" : "3265 (interacts with) 4747", "name" : "3265 (interacts with) 4747", "interaction" : "interacts with", "SUID" : 37614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37610", "source" : "3685", "target" : "2773", "shared_name" : "3265 (interacts with) 4908", "name" : "3265 (interacts with) 4908", "interaction" : "interacts with", "SUID" : 37610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37606", "source" : "3685", "target" : "5361", "shared_name" : "3265 (interacts with) 5604", "name" : "3265 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 37606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37602", "source" : "3685", "target" : "3361", "shared_name" : "3265 (interacts with) 4000", "name" : "3265 (interacts with) 4000", "interaction" : "interacts with", "SUID" : 37602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37598", "source" : "3685", "target" : "5081", "shared_name" : "3265 (interacts with) 5594", "name" : "3265 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 37598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37594", "source" : "3685", "target" : "973", "shared_name" : "3265 (interacts with) 5595", "name" : "3265 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 37594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37590", "source" : "3685", "target" : "3429", "shared_name" : "3265 (interacts with) 3674", "name" : "3265 (interacts with) 3674", "interaction" : "interacts with", "SUID" : 37590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37586", "source" : "3685", "target" : "2949", "shared_name" : "3265 (interacts with) 8036", "name" : "3265 (interacts with) 8036", "interaction" : "interacts with", "SUID" : 37586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37582", "source" : "3685", "target" : "5225", "shared_name" : "3265 (interacts with) 5290", "name" : "3265 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 37582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37578", "source" : "3685", "target" : "3677", "shared_name" : "3265 (interacts with) 673", "name" : "3265 (interacts with) 673", "interaction" : "interacts with", "SUID" : 37578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37574", "source" : "3685", "target" : "4521", "shared_name" : "3265 (interacts with) 5894", "name" : "3265 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 37574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37570", "source" : "3685", "target" : "637", "shared_name" : "3265 (interacts with) 6654", "name" : "3265 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 37570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38154", "source" : "3681", "target" : "2365", "shared_name" : "1892 (interacts with) 2731", "name" : "1892 (interacts with) 2731", "interaction" : "interacts with", "SUID" : 38154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38150", "source" : "3681", "target" : "5201", "shared_name" : "1892 (interacts with) 353", "name" : "1892 (interacts with) 353", "interaction" : "interacts with", "SUID" : 38150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38146", "source" : "3681", "target" : "3445", "shared_name" : "1892 (interacts with) 5091", "name" : "1892 (interacts with) 5091", "interaction" : "interacts with", "SUID" : 38146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38142", "source" : "3681", "target" : "1301", "shared_name" : "1892 (interacts with) 5095", "name" : "1892 (interacts with) 5095", "interaction" : "interacts with", "SUID" : 38142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38138", "source" : "3681", "target" : "1053", "shared_name" : "1892 (interacts with) 81689", "name" : "1892 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 38138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38134", "source" : "3681", "target" : "3901", "shared_name" : "1892 (interacts with) 19", "name" : "1892 (interacts with) 19", "interaction" : "interacts with", "SUID" : 38134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38130", "source" : "3681", "target" : "1713", "shared_name" : "1892 (interacts with) 5631", "name" : "1892 (interacts with) 5631", "interaction" : "interacts with", "SUID" : 38130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38126", "source" : "3681", "target" : "4749", "shared_name" : "1892 (interacts with) 3028", "name" : "1892 (interacts with) 3028", "interaction" : "interacts with", "SUID" : 38126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38122", "source" : "3681", "target" : "2945", "shared_name" : "1892 (interacts with) 471", "name" : "1892 (interacts with) 471", "interaction" : "interacts with", "SUID" : 38122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38118", "source" : "3681", "target" : "2989", "shared_name" : "1892 (interacts with) 224", "name" : "1892 (interacts with) 224", "interaction" : "interacts with", "SUID" : 38118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38114", "source" : "3681", "target" : "521", "shared_name" : "1892 (interacts with) 85476", "name" : "1892 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 38114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38110", "source" : "3681", "target" : "5737", "shared_name" : "1892 (interacts with) 84340", "name" : "1892 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 38110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38106", "source" : "3681", "target" : "1485", "shared_name" : "1892 (interacts with) 8050", "name" : "1892 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 38106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38102", "source" : "3681", "target" : "1021", "shared_name" : "1892 (interacts with) 5096", "name" : "1892 (interacts with) 5096", "interaction" : "interacts with", "SUID" : 38102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38098", "source" : "3681", "target" : "493", "shared_name" : "1892 (interacts with) 594", "name" : "1892 (interacts with) 594", "interaction" : "interacts with", "SUID" : 38098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38094", "source" : "3681", "target" : "773", "shared_name" : "1892 (interacts with) 29072", "name" : "1892 (interacts with) 29072", "interaction" : "interacts with", "SUID" : 38094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38090", "source" : "3681", "target" : "5593", "shared_name" : "1892 (interacts with) 875", "name" : "1892 (interacts with) 875", "interaction" : "interacts with", "SUID" : 38090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38086", "source" : "3681", "target" : "3793", "shared_name" : "1892 (interacts with) 28965", "name" : "1892 (interacts with) 28965", "interaction" : "interacts with", "SUID" : 38086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38082", "source" : "3681", "target" : "2029", "shared_name" : "1892 (interacts with) 4329", "name" : "1892 (interacts with) 4329", "interaction" : "interacts with", "SUID" : 38082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38078", "source" : "3681", "target" : "2593", "shared_name" : "1892 (interacts with) 64324", "name" : "1892 (interacts with) 64324", "interaction" : "interacts with", "SUID" : 38078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38074", "source" : "3681", "target" : "2281", "shared_name" : "1892 (interacts with) 79823", "name" : "1892 (interacts with) 79823", "interaction" : "interacts with", "SUID" : 38074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38070", "source" : "3681", "target" : "3769", "shared_name" : "1892 (interacts with) 8085", "name" : "1892 (interacts with) 8085", "interaction" : "interacts with", "SUID" : 38070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38066", "source" : "3681", "target" : "1393", "shared_name" : "1892 (interacts with) 55904", "name" : "1892 (interacts with) 55904", "interaction" : "interacts with", "SUID" : 38066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38062", "source" : "3681", "target" : "3425", "shared_name" : "1892 (interacts with) 8803", "name" : "1892 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 38062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38058", "source" : "3681", "target" : "625", "shared_name" : "1892 (interacts with) 8942", "name" : "1892 (interacts with) 8942", "interaction" : "interacts with", "SUID" : 38058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38054", "source" : "3681", "target" : "3709", "shared_name" : "1892 (interacts with) 9757", "name" : "1892 (interacts with) 9757", "interaction" : "interacts with", "SUID" : 38054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38050", "source" : "3681", "target" : "2925", "shared_name" : "1892 (interacts with) 8802", "name" : "1892 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 38050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38046", "source" : "3681", "target" : "1189", "shared_name" : "1892 (interacts with) 7915", "name" : "1892 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 38046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38042", "source" : "3681", "target" : "2045", "shared_name" : "1892 (interacts with) 51102", "name" : "1892 (interacts with) 51102", "interaction" : "interacts with", "SUID" : 38042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38038", "source" : "3681", "target" : "365", "shared_name" : "1892 (interacts with) 64834", "name" : "1892 (interacts with) 64834", "interaction" : "interacts with", "SUID" : 38038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38034", "source" : "3681", "target" : "3537", "shared_name" : "1892 (interacts with) 501", "name" : "1892 (interacts with) 501", "interaction" : "interacts with", "SUID" : 38034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38030", "source" : "3681", "target" : "4625", "shared_name" : "1892 (interacts with) 6785", "name" : "1892 (interacts with) 6785", "interaction" : "interacts with", "SUID" : 38030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38026", "source" : "3681", "target" : "977", "shared_name" : "1892 (interacts with) 79944", "name" : "1892 (interacts with) 79944", "interaction" : "interacts with", "SUID" : 38026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38022", "source" : "3681", "target" : "2025", "shared_name" : "1892 (interacts with) 549", "name" : "1892 (interacts with) 549", "interaction" : "interacts with", "SUID" : 38022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38018", "source" : "3681", "target" : "3337", "shared_name" : "1892 (interacts with) 2639", "name" : "1892 (interacts with) 2639", "interaction" : "interacts with", "SUID" : 38018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38014", "source" : "3681", "target" : "1849", "shared_name" : "1892 (interacts with) 26275", "name" : "1892 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 38014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38010", "source" : "3681", "target" : "3269", "shared_name" : "1892 (interacts with) 2108", "name" : "1892 (interacts with) 2108", "interaction" : "interacts with", "SUID" : 38010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38006", "source" : "3681", "target" : "5565", "shared_name" : "1892 (interacts with) 217", "name" : "1892 (interacts with) 217", "interaction" : "interacts with", "SUID" : 38006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38002", "source" : "3681", "target" : "4745", "shared_name" : "1892 (interacts with) 35", "name" : "1892 (interacts with) 35", "interaction" : "interacts with", "SUID" : 38002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37998", "source" : "3681", "target" : "1721", "shared_name" : "1892 (interacts with) 51807", "name" : "1892 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 37998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37994", "source" : "3681", "target" : "5305", "shared_name" : "1892 (interacts with) 6901", "name" : "1892 (interacts with) 6901", "interaction" : "interacts with", "SUID" : 37994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37990", "source" : "3681", "target" : "5049", "shared_name" : "1892 (interacts with) 6697", "name" : "1892 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 37990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37986", "source" : "3681", "target" : "5797", "shared_name" : "1892 (interacts with) 3030", "name" : "1892 (interacts with) 3030", "interaction" : "interacts with", "SUID" : 37986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37982", "source" : "3681", "target" : "5893", "shared_name" : "1892 (interacts with) 6309", "name" : "1892 (interacts with) 6309", "interaction" : "interacts with", "SUID" : 37982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37978", "source" : "3681", "target" : "4721", "shared_name" : "1892 (interacts with) 5805", "name" : "1892 (interacts with) 5805", "interaction" : "interacts with", "SUID" : 37978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37974", "source" : "3681", "target" : "2881", "shared_name" : "1892 (interacts with) 5160", "name" : "1892 (interacts with) 5160", "interaction" : "interacts with", "SUID" : 37974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37970", "source" : "3681", "target" : "2669", "shared_name" : "1892 (interacts with) 9197", "name" : "1892 (interacts with) 9197", "interaction" : "interacts with", "SUID" : 37970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37966", "source" : "3681", "target" : "4169", "shared_name" : "1892 (interacts with) 10993", "name" : "1892 (interacts with) 10993", "interaction" : "interacts with", "SUID" : 37966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37962", "source" : "3681", "target" : "1289", "shared_name" : "1892 (interacts with) 6392", "name" : "1892 (interacts with) 6392", "interaction" : "interacts with", "SUID" : 37962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37958", "source" : "3681", "target" : "1669", "shared_name" : "1892 (interacts with) 6390", "name" : "1892 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 37958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37954", "source" : "3681", "target" : "5025", "shared_name" : "1892 (interacts with) 6389", "name" : "1892 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 37954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37950", "source" : "3681", "target" : "4941", "shared_name" : "1892 (interacts with) 6342", "name" : "1892 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 37950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37946", "source" : "3681", "target" : "1277", "shared_name" : "1892 (interacts with) 79143", "name" : "1892 (interacts with) 79143", "interaction" : "interacts with", "SUID" : 37946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37942", "source" : "3681", "target" : "1525", "shared_name" : "1892 (interacts with) 3295", "name" : "1892 (interacts with) 3295", "interaction" : "interacts with", "SUID" : 37942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37938", "source" : "3681", "target" : "1437", "shared_name" : "1892 (interacts with) 80025", "name" : "1892 (interacts with) 80025", "interaction" : "interacts with", "SUID" : 37938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37934", "source" : "3681", "target" : "3421", "shared_name" : "1892 (interacts with) 4967", "name" : "1892 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 37934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37930", "source" : "3681", "target" : "6093", "shared_name" : "1892 (interacts with) 953", "name" : "1892 (interacts with) 953", "interaction" : "interacts with", "SUID" : 37930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37926", "source" : "3681", "target" : "5001", "shared_name" : "1892 (interacts with) 132158", "name" : "1892 (interacts with) 132158", "interaction" : "interacts with", "SUID" : 37926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37922", "source" : "3681", "target" : "5493", "shared_name" : "1892 (interacts with) 2678", "name" : "1892 (interacts with) 2678", "interaction" : "interacts with", "SUID" : 37922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37918", "source" : "3681", "target" : "489", "shared_name" : "1892 (interacts with) 1629", "name" : "1892 (interacts with) 1629", "interaction" : "interacts with", "SUID" : 37918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "37914", "source" : "3681", "target" : "5341", "shared_name" : "1892 (interacts with) 91647", "name" : "1892 (interacts with) 91647", "interaction" : "interacts with", "SUID" : 37914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38250", "source" : "3677", "target" : "1465", "shared_name" : "673 (interacts with) 9839", "name" : "673 (interacts with) 9839", "interaction" : "interacts with", "SUID" : 38250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38246", "source" : "3677", "target" : "3841", "shared_name" : "673 (interacts with) 9444", "name" : "673 (interacts with) 9444", "interaction" : "interacts with", "SUID" : 38246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38242", "source" : "3677", "target" : "3473", "shared_name" : "673 (interacts with) 6528", "name" : "673 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 38242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38238", "source" : "3677", "target" : "3685", "shared_name" : "673 (interacts with) 3265", "name" : "673 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 38238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38234", "source" : "3677", "target" : "3569", "shared_name" : "673 (interacts with) 4893", "name" : "673 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 38234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38230", "source" : "3677", "target" : "5641", "shared_name" : "673 (interacts with) 5518", "name" : "673 (interacts with) 5518", "interaction" : "interacts with", "SUID" : 38230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38226", "source" : "3677", "target" : "4237", "shared_name" : "673 (interacts with) 4914", "name" : "673 (interacts with) 4914", "interaction" : "interacts with", "SUID" : 38226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38222", "source" : "3677", "target" : "5037", "shared_name" : "673 (interacts with) 5515", "name" : "673 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 38222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38218", "source" : "3677", "target" : "5081", "shared_name" : "673 (interacts with) 5594", "name" : "673 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 38218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38214", "source" : "3677", "target" : "973", "shared_name" : "673 (interacts with) 5595", "name" : "673 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 38214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38210", "source" : "3677", "target" : "3745", "shared_name" : "673 (interacts with) 4803", "name" : "673 (interacts with) 4803", "interaction" : "interacts with", "SUID" : 38210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38206", "source" : "3677", "target" : "3577", "shared_name" : "673 (interacts with) 5605", "name" : "673 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 38206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38202", "source" : "3677", "target" : "4565", "shared_name" : "673 (interacts with) 57498", "name" : "673 (interacts with) 57498", "interaction" : "interacts with", "SUID" : 38202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38198", "source" : "3677", "target" : "3429", "shared_name" : "673 (interacts with) 3674", "name" : "673 (interacts with) 3674", "interaction" : "interacts with", "SUID" : 38198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38194", "source" : "3677", "target" : "809", "shared_name" : "673 (interacts with) 2335", "name" : "673 (interacts with) 2335", "interaction" : "interacts with", "SUID" : 38194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38190", "source" : "3677", "target" : "4197", "shared_name" : "673 (interacts with) 1398", "name" : "673 (interacts with) 1398", "interaction" : "interacts with", "SUID" : 38190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38186", "source" : "3677", "target" : "2553", "shared_name" : "673 (interacts with) 815", "name" : "673 (interacts with) 815", "interaction" : "interacts with", "SUID" : 38186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38182", "source" : "3677", "target" : "993", "shared_name" : "673 (interacts with) 801", "name" : "673 (interacts with) 801", "interaction" : "interacts with", "SUID" : 38182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38178", "source" : "3677", "target" : "4697", "shared_name" : "673 (interacts with) 7534", "name" : "673 (interacts with) 7534", "interaction" : "interacts with", "SUID" : 38178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38174", "source" : "3677", "target" : "3573", "shared_name" : "673 (interacts with) 3845", "name" : "673 (interacts with) 3845", "interaction" : "interacts with", "SUID" : 38174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38170", "source" : "3677", "target" : "4521", "shared_name" : "673 (interacts with) 5894", "name" : "673 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 38170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38166", "source" : "3677", "target" : "5361", "shared_name" : "673 (interacts with) 5604", "name" : "673 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 38166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38162", "source" : "3677", "target" : "5653", "shared_name" : "673 (interacts with) 22930", "name" : "673 (interacts with) 22930", "interaction" : "interacts with", "SUID" : 38162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38158", "source" : "3677", "target" : "5713", "shared_name" : "673 (interacts with) 7531", "name" : "673 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 38158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38254", "source" : "3673", "target" : "6029", "shared_name" : "79648 (interacts with) 54892", "name" : "79648 (interacts with) 54892", "interaction" : "interacts with", "SUID" : 38254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38262", "source" : "3669", "target" : "2541", "shared_name" : "55975 (interacts with) 56704", "name" : "55975 (interacts with) 56704", "interaction" : "interacts with", "SUID" : 38262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38258", "source" : "3669", "target" : "3217", "shared_name" : "55975 (interacts with) 8139", "name" : "55975 (interacts with) 8139", "interaction" : "interacts with", "SUID" : 38258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38266", "source" : "3665", "target" : "2565", "shared_name" : "29081 (interacts with) 51501", "name" : "29081 (interacts with) 51501", "interaction" : "interacts with", "SUID" : 38266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38378", "source" : "3661", "target" : "5989", "shared_name" : "1134 (interacts with) 7273", "name" : "1134 (interacts with) 7273", "interaction" : "interacts with", "SUID" : 38378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38374", "source" : "3661", "target" : "2581", "shared_name" : "1134 (interacts with) 7170", "name" : "1134 (interacts with) 7170", "interaction" : "interacts with", "SUID" : 38374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38370", "source" : "3661", "target" : "609", "shared_name" : "1134 (interacts with) 6812", "name" : "1134 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 38370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38366", "source" : "3661", "target" : "5785", "shared_name" : "1134 (interacts with) 6857", "name" : "1134 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 38366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38362", "source" : "3661", "target" : "3177", "shared_name" : "1134 (interacts with) 5321", "name" : "1134 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 38362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38358", "source" : "3661", "target" : "3593", "shared_name" : "1134 (interacts with) 5530", "name" : "1134 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 38358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38354", "source" : "3661", "target" : "1357", "shared_name" : "1134 (interacts with) 58498", "name" : "1134 (interacts with) 58498", "interaction" : "interacts with", "SUID" : 38354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38350", "source" : "3661", "target" : "565", "shared_name" : "1134 (interacts with) 4772", "name" : "1134 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 38350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38346", "source" : "3661", "target" : "4893", "shared_name" : "1134 (interacts with) 10815", "name" : "1134 (interacts with) 10815", "interaction" : "interacts with", "SUID" : 38346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38342", "source" : "3661", "target" : "5081", "shared_name" : "1134 (interacts with) 5594", "name" : "1134 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 38342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38338", "source" : "3661", "target" : "5509", "shared_name" : "1134 (interacts with) 207", "name" : "1134 (interacts with) 207", "interaction" : "interacts with", "SUID" : 38338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38334", "source" : "3661", "target" : "973", "shared_name" : "1134 (interacts with) 5595", "name" : "1134 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 38334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38330", "source" : "3661", "target" : "4857", "shared_name" : "1134 (interacts with) 5573", "name" : "1134 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 38330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38326", "source" : "3661", "target" : "5149", "shared_name" : "1134 (interacts with) 5058", "name" : "1134 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 38326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38322", "source" : "3661", "target" : "1069", "shared_name" : "1134 (interacts with) 5879", "name" : "1134 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 38322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38318", "source" : "3661", "target" : "1241", "shared_name" : "1134 (interacts with) 808", "name" : "1134 (interacts with) 808", "interaction" : "interacts with", "SUID" : 38318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38314", "source" : "3661", "target" : "1201", "shared_name" : "1134 (interacts with) 805", "name" : "1134 (interacts with) 805", "interaction" : "interacts with", "SUID" : 38314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38310", "source" : "3661", "target" : "993", "shared_name" : "1134 (interacts with) 801", "name" : "1134 (interacts with) 801", "interaction" : "interacts with", "SUID" : 38310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38306", "source" : "3661", "target" : "5053", "shared_name" : "1134 (interacts with) 857", "name" : "1134 (interacts with) 857", "interaction" : "interacts with", "SUID" : 38306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38302", "source" : "3661", "target" : "2005", "shared_name" : "1134 (interacts with) 4846", "name" : "1134 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 38302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38298", "source" : "3661", "target" : "1405", "shared_name" : "1134 (interacts with) 998", "name" : "1134 (interacts with) 998", "interaction" : "interacts with", "SUID" : 38298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38294", "source" : "3661", "target" : "4385", "shared_name" : "1134 (interacts with) 3084", "name" : "1134 (interacts with) 3084", "interaction" : "interacts with", "SUID" : 38294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38290", "source" : "3661", "target" : "3289", "shared_name" : "1134 (interacts with) 5913", "name" : "1134 (interacts with) 5913", "interaction" : "interacts with", "SUID" : 38290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38286", "source" : "3661", "target" : "3585", "shared_name" : "1134 (interacts with) 3908", "name" : "1134 (interacts with) 3908", "interaction" : "interacts with", "SUID" : 38286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38282", "source" : "3661", "target" : "6097", "shared_name" : "1134 (interacts with) 1756", "name" : "1134 (interacts with) 1756", "interaction" : "interacts with", "SUID" : 38282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38278", "source" : "3661", "target" : "3889", "shared_name" : "1134 (interacts with) 1605", "name" : "1134 (interacts with) 1605", "interaction" : "interacts with", "SUID" : 38278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38274", "source" : "3661", "target" : "5929", "shared_name" : "1134 (interacts with) 6616", "name" : "1134 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 38274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38270", "source" : "3661", "target" : "997", "shared_name" : "1134 (interacts with) 7431", "name" : "1134 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 38270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38386", "source" : "3657", "target" : "4509", "shared_name" : "2895 (interacts with) 2902", "name" : "2895 (interacts with) 2902", "interaction" : "interacts with", "SUID" : 38386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38382", "source" : "3657", "target" : "2329", "shared_name" : "2895 (interacts with) 2904", "name" : "2895 (interacts with) 2904", "interaction" : "interacts with", "SUID" : 38382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38422", "source" : "3653", "target" : "385", "shared_name" : "8898 (interacts with) 5319", "name" : "8898 (interacts with) 5319", "interaction" : "interacts with", "SUID" : 38422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38418", "source" : "3653", "target" : "1733", "shared_name" : "8898 (interacts with) 6305", "name" : "8898 (interacts with) 6305", "interaction" : "interacts with", "SUID" : 38418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38414", "source" : "3653", "target" : "4389", "shared_name" : "8898 (interacts with) 81846", "name" : "8898 (interacts with) 81846", "interaction" : "interacts with", "SUID" : 38414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38410", "source" : "3653", "target" : "5037", "shared_name" : "8898 (interacts with) 5515", "name" : "8898 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 38410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38406", "source" : "3653", "target" : "5641", "shared_name" : "8898 (interacts with) 5518", "name" : "8898 (interacts with) 5518", "interaction" : "interacts with", "SUID" : 38406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38402", "source" : "3653", "target" : "3177", "shared_name" : "8898 (interacts with) 5321", "name" : "8898 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 38402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38398", "source" : "3653", "target" : "985", "shared_name" : "8898 (interacts with) 9091", "name" : "8898 (interacts with) 9091", "interaction" : "interacts with", "SUID" : 38398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38394", "source" : "3653", "target" : "1545", "shared_name" : "8898 (interacts with) 5277", "name" : "8898 (interacts with) 5277", "interaction" : "interacts with", "SUID" : 38394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38390", "source" : "3653", "target" : "4989", "shared_name" : "8898 (interacts with) 51227", "name" : "8898 (interacts with) 51227", "interaction" : "interacts with", "SUID" : 38390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38538", "source" : "3649", "target" : "1461", "shared_name" : "51520 (interacts with) 5832", "name" : "51520 (interacts with) 5832", "interaction" : "interacts with", "SUID" : 38538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38534", "source" : "3649", "target" : "4773", "shared_name" : "51520 (interacts with) 90624", "name" : "51520 (interacts with) 90624", "interaction" : "interacts with", "SUID" : 38534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38530", "source" : "3649", "target" : "6001", "shared_name" : "51520 (interacts with) 55157", "name" : "51520 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 38530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38526", "source" : "3649", "target" : "4141", "shared_name" : "51520 (interacts with) 617", "name" : "51520 (interacts with) 617", "interaction" : "interacts with", "SUID" : 38526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38522", "source" : "3649", "target" : "4869", "shared_name" : "51520 (interacts with) 92935", "name" : "51520 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 38522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38518", "source" : "3649", "target" : "1197", "shared_name" : "51520 (interacts with) 79587", "name" : "51520 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 38518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38514", "source" : "3649", "target" : "721", "shared_name" : "51520 (interacts with) 79731", "name" : "51520 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 38514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38510", "source" : "3649", "target" : "4085", "shared_name" : "51520 (interacts with) 55699", "name" : "51520 (interacts with) 55699", "interaction" : "interacts with", "SUID" : 38510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38506", "source" : "3649", "target" : "4621", "shared_name" : "51520 (interacts with) 57038", "name" : "51520 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 38506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38502", "source" : "3649", "target" : "5189", "shared_name" : "51520 (interacts with) 57176", "name" : "51520 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 38502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38498", "source" : "3649", "target" : "1129", "shared_name" : "51520 (interacts with) 57505", "name" : "51520 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 38498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38494", "source" : "3649", "target" : "4693", "shared_name" : "51520 (interacts with) 6301", "name" : "51520 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 38494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38490", "source" : "3649", "target" : "1581", "shared_name" : "51520 (interacts with) 7407", "name" : "51520 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 38490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38486", "source" : "3649", "target" : "3529", "shared_name" : "51520 (interacts with) 7965", "name" : "51520 (interacts with) 7965", "interaction" : "interacts with", "SUID" : 38486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38482", "source" : "3649", "target" : "4349", "shared_name" : "51520 (interacts with) 5859", "name" : "51520 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 38482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38478", "source" : "3649", "target" : "1089", "shared_name" : "51520 (interacts with) 5917", "name" : "51520 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 38478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38474", "source" : "3649", "target" : "1013", "shared_name" : "51520 (interacts with) 6898", "name" : "51520 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 38474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38470", "source" : "3649", "target" : "1885", "shared_name" : "51520 (interacts with) 8604", "name" : "51520 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 38470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38466", "source" : "3649", "target" : "1385", "shared_name" : "51520 (interacts with) 6520", "name" : "51520 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 38466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38462", "source" : "3649", "target" : "3077", "shared_name" : "51520 (interacts with) 6506", "name" : "51520 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 38462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38458", "source" : "3649", "target" : "2049", "shared_name" : "51520 (interacts with) 4552", "name" : "51520 (interacts with) 4552", "interaction" : "interacts with", "SUID" : 38458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38454", "source" : "3649", "target" : "4273", "shared_name" : "51520 (interacts with) 4548", "name" : "51520 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 38454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38450", "source" : "3649", "target" : "461", "shared_name" : "51520 (interacts with) 5198", "name" : "51520 (interacts with) 5198", "interaction" : "interacts with", "SUID" : 38450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38446", "source" : "3649", "target" : "2577", "shared_name" : "51520 (interacts with) 4337", "name" : "51520 (interacts with) 4337", "interaction" : "interacts with", "SUID" : 38446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38442", "source" : "3649", "target" : "3641", "shared_name" : "51520 (interacts with) 4141", "name" : "51520 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 38442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38438", "source" : "3649", "target" : "3169", "shared_name" : "51520 (interacts with) 1615", "name" : "51520 (interacts with) 1615", "interaction" : "interacts with", "SUID" : 38438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38434", "source" : "3649", "target" : "4593", "shared_name" : "51520 (interacts with) 2058", "name" : "51520 (interacts with) 2058", "interaction" : "interacts with", "SUID" : 38434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38430", "source" : "3649", "target" : "4597", "shared_name" : "51520 (interacts with) 3376", "name" : "51520 (interacts with) 3376", "interaction" : "interacts with", "SUID" : 38430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38426", "source" : "3649", "target" : "3157", "shared_name" : "51520 (interacts with) 9255", "name" : "51520 (interacts with) 9255", "interaction" : "interacts with", "SUID" : 38426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38550", "source" : "3645", "target" : "4641", "shared_name" : "4758 (interacts with) 55331", "name" : "4758 (interacts with) 55331", "interaction" : "interacts with", "SUID" : 38550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38546", "source" : "3645", "target" : "3433", "shared_name" : "4758 (interacts with) 26503", "name" : "4758 (interacts with) 26503", "interaction" : "interacts with", "SUID" : 38546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38542", "source" : "3645", "target" : "3025", "shared_name" : "4758 (interacts with) 55627", "name" : "4758 (interacts with) 55627", "interaction" : "interacts with", "SUID" : 38542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38678", "source" : "3641", "target" : "2645", "shared_name" : "4141 (interacts with) 476", "name" : "4141 (interacts with) 476", "interaction" : "interacts with", "SUID" : 38678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38674", "source" : "3641", "target" : "2621", "shared_name" : "4141 (interacts with) 477", "name" : "4141 (interacts with) 477", "interaction" : "interacts with", "SUID" : 38674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38670", "source" : "3641", "target" : "4793", "shared_name" : "4141 (interacts with) 478", "name" : "4141 (interacts with) 478", "interaction" : "interacts with", "SUID" : 38670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38666", "source" : "3641", "target" : "2577", "shared_name" : "4141 (interacts with) 4337", "name" : "4141 (interacts with) 4337", "interaction" : "interacts with", "SUID" : 38666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38662", "source" : "3641", "target" : "4273", "shared_name" : "4141 (interacts with) 4548", "name" : "4141 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 38662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38658", "source" : "3641", "target" : "1577", "shared_name" : "4141 (interacts with) 51091", "name" : "4141 (interacts with) 51091", "interaction" : "interacts with", "SUID" : 38658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38654", "source" : "3641", "target" : "693", "shared_name" : "4141 (interacts with) 7296", "name" : "4141 (interacts with) 7296", "interaction" : "interacts with", "SUID" : 38654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38650", "source" : "3641", "target" : "6001", "shared_name" : "4141 (interacts with) 55157", "name" : "4141 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 38650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38646", "source" : "3641", "target" : "4085", "shared_name" : "4141 (interacts with) 55699", "name" : "4141 (interacts with) 55699", "interaction" : "interacts with", "SUID" : 38646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38642", "source" : "3641", "target" : "4621", "shared_name" : "4141 (interacts with) 57038", "name" : "4141 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 38642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38638", "source" : "3641", "target" : "4869", "shared_name" : "4141 (interacts with) 92935", "name" : "4141 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 38638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38634", "source" : "3641", "target" : "3633", "shared_name" : "4141 (interacts with) 51067", "name" : "4141 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 38634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38630", "source" : "3641", "target" : "3529", "shared_name" : "4141 (interacts with) 7965", "name" : "4141 (interacts with) 7965", "interaction" : "interacts with", "SUID" : 38630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38626", "source" : "3641", "target" : "3157", "shared_name" : "4141 (interacts with) 9255", "name" : "4141 (interacts with) 9255", "interaction" : "interacts with", "SUID" : 38626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38622", "source" : "3641", "target" : "5189", "shared_name" : "4141 (interacts with) 57176", "name" : "4141 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 38622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38618", "source" : "3641", "target" : "1129", "shared_name" : "4141 (interacts with) 57505", "name" : "4141 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 38618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38614", "source" : "3641", "target" : "1197", "shared_name" : "4141 (interacts with) 79587", "name" : "4141 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 38614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38610", "source" : "3641", "target" : "721", "shared_name" : "4141 (interacts with) 79731", "name" : "4141 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 38610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38606", "source" : "3641", "target" : "889", "shared_name" : "4141 (interacts with) 80224", "name" : "4141 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 38606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38602", "source" : "3641", "target" : "4349", "shared_name" : "4141 (interacts with) 5859", "name" : "4141 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 38602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38598", "source" : "3641", "target" : "4693", "shared_name" : "4141 (interacts with) 6301", "name" : "4141 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 38598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38594", "source" : "3641", "target" : "1713", "shared_name" : "4141 (interacts with) 5631", "name" : "4141 (interacts with) 5631", "interaction" : "interacts with", "SUID" : 38594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38590", "source" : "3641", "target" : "1581", "shared_name" : "4141 (interacts with) 7407", "name" : "4141 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 38590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38586", "source" : "3641", "target" : "3649", "shared_name" : "4141 (interacts with) 51520", "name" : "4141 (interacts with) 51520", "interaction" : "interacts with", "SUID" : 38586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38582", "source" : "3641", "target" : "1089", "shared_name" : "4141 (interacts with) 5917", "name" : "4141 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 38582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38578", "source" : "3641", "target" : "1013", "shared_name" : "4141 (interacts with) 6898", "name" : "4141 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 38578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38574", "source" : "3641", "target" : "741", "shared_name" : "4141 (interacts with) 4830", "name" : "4141 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 38574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38570", "source" : "3641", "target" : "1385", "shared_name" : "4141 (interacts with) 6520", "name" : "4141 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 38570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38566", "source" : "3641", "target" : "3077", "shared_name" : "4141 (interacts with) 6506", "name" : "4141 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 38566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38562", "source" : "3641", "target" : "1885", "shared_name" : "4141 (interacts with) 8604", "name" : "4141 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 38562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38558", "source" : "3641", "target" : "461", "shared_name" : "4141 (interacts with) 5198", "name" : "4141 (interacts with) 5198", "interaction" : "interacts with", "SUID" : 38558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38554", "source" : "3641", "target" : "2049", "shared_name" : "4141 (interacts with) 4552", "name" : "4141 (interacts with) 4552", "interaction" : "interacts with", "SUID" : 38554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38690", "source" : "3637", "target" : "3765", "shared_name" : "6712 (interacts with) 774", "name" : "6712 (interacts with) 774", "interaction" : "interacts with", "SUID" : 38690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38686", "source" : "3637", "target" : "5749", "shared_name" : "6712 (interacts with) 10959", "name" : "6712 (interacts with) 10959", "interaction" : "interacts with", "SUID" : 38686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38682", "source" : "3637", "target" : "545", "shared_name" : "6712 (interacts with) 51014", "name" : "6712 (interacts with) 51014", "interaction" : "interacts with", "SUID" : 38682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38866", "source" : "3633", "target" : "3545", "shared_name" : "51067 (interacts with) 708", "name" : "51067 (interacts with) 708", "interaction" : "interacts with", "SUID" : 38866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38862", "source" : "3633", "target" : "2161", "shared_name" : "51067 (interacts with) 55163", "name" : "51067 (interacts with) 55163", "interaction" : "interacts with", "SUID" : 38862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38858", "source" : "3633", "target" : "4717", "shared_name" : "51067 (interacts with) 51204", "name" : "51067 (interacts with) 51204", "interaction" : "interacts with", "SUID" : 38858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38854", "source" : "3633", "target" : "1929", "shared_name" : "51067 (interacts with) 51218", "name" : "51067 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 38854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38850", "source" : "3633", "target" : "5593", "shared_name" : "51067 (interacts with) 875", "name" : "51067 (interacts with) 875", "interaction" : "interacts with", "SUID" : 38850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38846", "source" : "3633", "target" : "2009", "shared_name" : "51067 (interacts with) 79133", "name" : "51067 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 38846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38842", "source" : "3633", "target" : "2477", "shared_name" : "51067 (interacts with) 57107", "name" : "51067 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 38842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38838", "source" : "3633", "target" : "2285", "shared_name" : "51067 (interacts with) 51300", "name" : "51067 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 38838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38834", "source" : "3633", "target" : "1713", "shared_name" : "51067 (interacts with) 5631", "name" : "51067 (interacts with) 5631", "interaction" : "interacts with", "SUID" : 38834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38830", "source" : "3633", "target" : "5737", "shared_name" : "51067 (interacts with) 84340", "name" : "51067 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 38830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38826", "source" : "3633", "target" : "4409", "shared_name" : "51067 (interacts with) 6341", "name" : "51067 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 38826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38822", "source" : "3633", "target" : "6073", "shared_name" : "51067 (interacts with) 92170", "name" : "51067 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 38822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38818", "source" : "3633", "target" : "4141", "shared_name" : "51067 (interacts with) 617", "name" : "51067 (interacts with) 617", "interaction" : "interacts with", "SUID" : 38818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38814", "source" : "3633", "target" : "3973", "shared_name" : "51067 (interacts with) 55572", "name" : "51067 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 38814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38810", "source" : "3633", "target" : "3705", "shared_name" : "51067 (interacts with) 87178", "name" : "51067 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 38810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38806", "source" : "3633", "target" : "521", "shared_name" : "51067 (interacts with) 85476", "name" : "51067 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 38806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38802", "source" : "3633", "target" : "2109", "shared_name" : "51067 (interacts with) 51103", "name" : "51067 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 38802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38798", "source" : "3633", "target" : "4757", "shared_name" : "51067 (interacts with) 9997", "name" : "51067 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 38798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38794", "source" : "3633", "target" : "1561", "shared_name" : "51067 (interacts with) 51117", "name" : "51067 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 38794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38790", "source" : "3633", "target" : "233", "shared_name" : "51067 (interacts with) 8566", "name" : "51067 (interacts with) 8566", "interaction" : "interacts with", "SUID" : 38790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38786", "source" : "3633", "target" : "713", "shared_name" : "51067 (interacts with) 7019", "name" : "51067 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 38786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38782", "source" : "3633", "target" : "4101", "shared_name" : "51067 (interacts with) 65260", "name" : "51067 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 38782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38778", "source" : "3633", "target" : "501", "shared_name" : "51067 (interacts with) 65993", "name" : "51067 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 38778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38774", "source" : "3633", "target" : "1577", "shared_name" : "51067 (interacts with) 51091", "name" : "51067 (interacts with) 51091", "interaction" : "interacts with", "SUID" : 38774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38770", "source" : "3633", "target" : "1089", "shared_name" : "51067 (interacts with) 5917", "name" : "51067 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 38770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38766", "source" : "3633", "target" : "4693", "shared_name" : "51067 (interacts with) 6301", "name" : "51067 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 38766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38762", "source" : "3633", "target" : "1581", "shared_name" : "51067 (interacts with) 7407", "name" : "51067 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 38762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38758", "source" : "3633", "target" : "2021", "shared_name" : "51067 (interacts with) 5428", "name" : "51067 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 38758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38754", "source" : "3633", "target" : "3649", "shared_name" : "51067 (interacts with) 51520", "name" : "51067 (interacts with) 51520", "interaction" : "interacts with", "SUID" : 38754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38750", "source" : "3633", "target" : "2105", "shared_name" : "51067 (interacts with) 56945", "name" : "51067 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 38750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38746", "source" : "3633", "target" : "4897", "shared_name" : "51067 (interacts with) 55149", "name" : "51067 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 38746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38742", "source" : "3633", "target" : "5189", "shared_name" : "51067 (interacts with) 57176", "name" : "51067 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 38742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38738", "source" : "3633", "target" : "1197", "shared_name" : "51067 (interacts with) 79587", "name" : "51067 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 38738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38734", "source" : "3633", "target" : "5085", "shared_name" : "51067 (interacts with) 56652", "name" : "51067 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 38734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38730", "source" : "3633", "target" : "721", "shared_name" : "51067 (interacts with) 79731", "name" : "51067 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 38730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38726", "source" : "3633", "target" : "4349", "shared_name" : "51067 (interacts with) 5859", "name" : "51067 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 38726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38722", "source" : "3633", "target" : "1129", "shared_name" : "51067 (interacts with) 57505", "name" : "51067 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 38722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38718", "source" : "3633", "target" : "4869", "shared_name" : "51067 (interacts with) 92935", "name" : "51067 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 38718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38714", "source" : "3633", "target" : "4621", "shared_name" : "51067 (interacts with) 57038", "name" : "51067 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 38714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38710", "source" : "3633", "target" : "4085", "shared_name" : "51067 (interacts with) 55699", "name" : "51067 (interacts with) 55699", "interaction" : "interacts with", "SUID" : 38710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38706", "source" : "3633", "target" : "6001", "shared_name" : "51067 (interacts with) 55157", "name" : "51067 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 38706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38702", "source" : "3633", "target" : "1053", "shared_name" : "51067 (interacts with) 81689", "name" : "51067 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 38702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38698", "source" : "3633", "target" : "2385", "shared_name" : "51067 (interacts with) 3192", "name" : "51067 (interacts with) 3192", "interaction" : "interacts with", "SUID" : 38698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38694", "source" : "3633", "target" : "1165", "shared_name" : "51067 (interacts with) 22868", "name" : "51067 (interacts with) 22868", "interaction" : "interacts with", "SUID" : 38694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39022", "source" : "3629", "target" : "5693", "shared_name" : "2066 (interacts with) 92335", "name" : "2066 (interacts with) 92335", "interaction" : "interacts with", "SUID" : 39022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39018", "source" : "3629", "target" : "6105", "shared_name" : "2066 (interacts with) 28996", "name" : "2066 (interacts with) 28996", "interaction" : "interacts with", "SUID" : 39018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39014", "source" : "3629", "target" : "4521", "shared_name" : "2066 (interacts with) 5894", "name" : "2066 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 39014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39010", "source" : "3629", "target" : "4213", "shared_name" : "2066 (interacts with) 5295", "name" : "2066 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 39010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39006", "source" : "3629", "target" : "5361", "shared_name" : "2066 (interacts with) 5604", "name" : "2066 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 39006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39002", "source" : "3629", "target" : "3685", "shared_name" : "2066 (interacts with) 3265", "name" : "2066 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 39002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38998", "source" : "3629", "target" : "5225", "shared_name" : "2066 (interacts with) 5290", "name" : "2066 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 38998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38994", "source" : "3629", "target" : "973", "shared_name" : "2066 (interacts with) 5595", "name" : "2066 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 38994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38990", "source" : "3629", "target" : "5081", "shared_name" : "2066 (interacts with) 5594", "name" : "2066 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 38990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38986", "source" : "3629", "target" : "4981", "shared_name" : "2066 (interacts with) 6774", "name" : "2066 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 38986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38982", "source" : "3629", "target" : "3041", "shared_name" : "2066 (interacts with) 5663", "name" : "2066 (interacts with) 5663", "interaction" : "interacts with", "SUID" : 38982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38978", "source" : "3629", "target" : "637", "shared_name" : "2066 (interacts with) 6654", "name" : "2066 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 38978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38974", "source" : "3629", "target" : "2369", "shared_name" : "2066 (interacts with) 51741", "name" : "2066 (interacts with) 51741", "interaction" : "interacts with", "SUID" : 38974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38970", "source" : "3629", "target" : "2061", "shared_name" : "2066 (interacts with) 3570", "name" : "2066 (interacts with) 3570", "interaction" : "interacts with", "SUID" : 38970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38966", "source" : "3629", "target" : "969", "shared_name" : "2066 (interacts with) 2670", "name" : "2066 (interacts with) 2670", "interaction" : "interacts with", "SUID" : 38966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38962", "source" : "3629", "target" : "1833", "shared_name" : "2066 (interacts with) 10608", "name" : "2066 (interacts with) 10608", "interaction" : "interacts with", "SUID" : 38962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38958", "source" : "3629", "target" : "5061", "shared_name" : "2066 (interacts with) 6285", "name" : "2066 (interacts with) 6285", "interaction" : "interacts with", "SUID" : 38958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38954", "source" : "3629", "target" : "1297", "shared_name" : "2066 (interacts with) 6678", "name" : "2066 (interacts with) 6678", "interaction" : "interacts with", "SUID" : 38954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38950", "source" : "3629", "target" : "2905", "shared_name" : "2066 (interacts with) 5664", "name" : "2066 (interacts with) 5664", "interaction" : "interacts with", "SUID" : 38950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38946", "source" : "3629", "target" : "817", "shared_name" : "2066 (interacts with) 5728", "name" : "2066 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 38946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38942", "source" : "3629", "target" : "1069", "shared_name" : "2066 (interacts with) 5879", "name" : "2066 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 38942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38938", "source" : "3629", "target" : "5009", "shared_name" : "2066 (interacts with) 5241", "name" : "2066 (interacts with) 5241", "interaction" : "interacts with", "SUID" : 38938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38934", "source" : "3629", "target" : "4097", "shared_name" : "2066 (interacts with) 9611", "name" : "2066 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 38934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38930", "source" : "3629", "target" : "2977", "shared_name" : "2066 (interacts with) 4747", "name" : "2066 (interacts with) 4747", "interaction" : "interacts with", "SUID" : 38930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38926", "source" : "3629", "target" : "3569", "shared_name" : "2066 (interacts with) 4893", "name" : "2066 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 38926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38922", "source" : "3629", "target" : "1209", "shared_name" : "2066 (interacts with) 51763", "name" : "2066 (interacts with) 51763", "interaction" : "interacts with", "SUID" : 38922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38918", "source" : "3629", "target" : "3573", "shared_name" : "2066 (interacts with) 3845", "name" : "2066 (interacts with) 3845", "interaction" : "interacts with", "SUID" : 38918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38914", "source" : "3629", "target" : "2329", "shared_name" : "2066 (interacts with) 2904", "name" : "2066 (interacts with) 2904", "interaction" : "interacts with", "SUID" : 38914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38910", "source" : "3629", "target" : "4509", "shared_name" : "2066 (interacts with) 2902", "name" : "2066 (interacts with) 2902", "interaction" : "interacts with", "SUID" : 38910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38906", "source" : "3629", "target" : "3393", "shared_name" : "2066 (interacts with) 9402", "name" : "2066 (interacts with) 9402", "interaction" : "interacts with", "SUID" : 38906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38902", "source" : "3629", "target" : "5569", "shared_name" : "2066 (interacts with) 59345", "name" : "2066 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 38902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38898", "source" : "3629", "target" : "3389", "shared_name" : "2066 (interacts with) 2562", "name" : "2066 (interacts with) 2562", "interaction" : "interacts with", "SUID" : 38898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38894", "source" : "3629", "target" : "1161", "shared_name" : "2066 (interacts with) 2561", "name" : "2066 (interacts with) 2561", "interaction" : "interacts with", "SUID" : 38894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38890", "source" : "3629", "target" : "4153", "shared_name" : "2066 (interacts with) 2566", "name" : "2066 (interacts with) 2566", "interaction" : "interacts with", "SUID" : 38890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38886", "source" : "3629", "target" : "6129", "shared_name" : "2066 (interacts with) 2263", "name" : "2066 (interacts with) 2263", "interaction" : "interacts with", "SUID" : 38886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38882", "source" : "3629", "target" : "6121", "shared_name" : "2066 (interacts with) 2260", "name" : "2066 (interacts with) 2260", "interaction" : "interacts with", "SUID" : 38882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38878", "source" : "3629", "target" : "6033", "shared_name" : "2066 (interacts with) 11160", "name" : "2066 (interacts with) 11160", "interaction" : "interacts with", "SUID" : 38878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38874", "source" : "3629", "target" : "3381", "shared_name" : "2066 (interacts with) 2214", "name" : "2066 (interacts with) 2214", "interaction" : "interacts with", "SUID" : 38874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "38870", "source" : "3629", "target" : "4385", "shared_name" : "2066 (interacts with) 3084", "name" : "2066 (interacts with) 3084", "interaction" : "interacts with", "SUID" : 38870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39038", "source" : "3625", "target" : "4205", "shared_name" : "121512 (interacts with) 23503", "name" : "121512 (interacts with) 23503", "interaction" : "interacts with", "SUID" : 39038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39034", "source" : "3625", "target" : "433", "shared_name" : "121512 (interacts with) 8988", "name" : "121512 (interacts with) 8988", "interaction" : "interacts with", "SUID" : 39034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39030", "source" : "3625", "target" : "869", "shared_name" : "121512 (interacts with) 23221", "name" : "121512 (interacts with) 23221", "interaction" : "interacts with", "SUID" : 39030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39026", "source" : "3625", "target" : "1069", "shared_name" : "121512 (interacts with) 5879", "name" : "121512 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 39026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39046", "source" : "3621", "target" : "2009", "shared_name" : "6834 (interacts with) 79133", "name" : "6834 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 39046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39042", "source" : "3621", "target" : "4353", "shared_name" : "6834 (interacts with) 9512", "name" : "6834 (interacts with) 9512", "interaction" : "interacts with", "SUID" : 39042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39258", "source" : "3617", "target" : "4869", "shared_name" : "4704 (interacts with) 92935", "name" : "4704 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 39258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39254", "source" : "3617", "target" : "4897", "shared_name" : "4704 (interacts with) 55149", "name" : "4704 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 39254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39250", "source" : "3617", "target" : "4409", "shared_name" : "4704 (interacts with) 6341", "name" : "4704 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 39250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39246", "source" : "3617", "target" : "1197", "shared_name" : "4704 (interacts with) 79587", "name" : "4704 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 39246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39242", "source" : "3617", "target" : "1929", "shared_name" : "4704 (interacts with) 51218", "name" : "4704 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 39242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39238", "source" : "3617", "target" : "4757", "shared_name" : "4704 (interacts with) 9997", "name" : "4704 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 39238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39234", "source" : "3617", "target" : "1865", "shared_name" : "4704 (interacts with) 498", "name" : "4704 (interacts with) 498", "interaction" : "interacts with", "SUID" : 39234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39230", "source" : "3617", "target" : "1561", "shared_name" : "4704 (interacts with) 51117", "name" : "4704 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 39230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39226", "source" : "3617", "target" : "6001", "shared_name" : "4704 (interacts with) 55157", "name" : "4704 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 39226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39222", "source" : "3617", "target" : "2477", "shared_name" : "4704 (interacts with) 57107", "name" : "4704 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 39222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39218", "source" : "3617", "target" : "1053", "shared_name" : "4704 (interacts with) 81689", "name" : "4704 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 39218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39214", "source" : "3617", "target" : "4101", "shared_name" : "4704 (interacts with) 65260", "name" : "4704 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 39214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39210", "source" : "3617", "target" : "477", "shared_name" : "4704 (interacts with) 51021", "name" : "4704 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 39210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39206", "source" : "3617", "target" : "5085", "shared_name" : "4704 (interacts with) 56652", "name" : "4704 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 39206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39202", "source" : "3617", "target" : "4621", "shared_name" : "4704 (interacts with) 57038", "name" : "4704 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 39202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39198", "source" : "3617", "target" : "6181", "shared_name" : "4704 (interacts with) 84987", "name" : "4704 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 39198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39194", "source" : "3617", "target" : "6073", "shared_name" : "4704 (interacts with) 92170", "name" : "4704 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 39194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39190", "source" : "3617", "target" : "1105", "shared_name" : "4704 (interacts with) 493753", "name" : "4704 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 39190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39186", "source" : "3617", "target" : "1085", "shared_name" : "4704 (interacts with) 9377", "name" : "4704 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 39186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39182", "source" : "3617", "target" : "521", "shared_name" : "4704 (interacts with) 85476", "name" : "4704 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 39182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39178", "source" : "3617", "target" : "4141", "shared_name" : "4704 (interacts with) 617", "name" : "4704 (interacts with) 617", "interaction" : "interacts with", "SUID" : 39178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39174", "source" : "3617", "target" : "5189", "shared_name" : "4704 (interacts with) 57176", "name" : "4704 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 39174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39170", "source" : "3617", "target" : "721", "shared_name" : "4704 (interacts with) 79731", "name" : "4704 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 39170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39166", "source" : "3617", "target" : "1337", "shared_name" : "4704 (interacts with) 55863", "name" : "4704 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 39166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39162", "source" : "3617", "target" : "1661", "shared_name" : "4704 (interacts with) 91942", "name" : "4704 (interacts with) 91942", "interaction" : "interacts with", "SUID" : 39162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39158", "source" : "3617", "target" : "2757", "shared_name" : "4704 (interacts with) 51079", "name" : "4704 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 39158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39154", "source" : "3617", "target" : "4945", "shared_name" : "4704 (interacts with) 4722", "name" : "4704 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 39154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39150", "source" : "3617", "target" : "5553", "shared_name" : "4704 (interacts with) 55967", "name" : "4704 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 39150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39146", "source" : "3617", "target" : "2285", "shared_name" : "4704 (interacts with) 51300", "name" : "4704 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 39146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39142", "source" : "3617", "target" : "5845", "shared_name" : "4704 (interacts with) 4714", "name" : "4704 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 39142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39138", "source" : "3617", "target" : "2109", "shared_name" : "4704 (interacts with) 51103", "name" : "4704 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 39138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39134", "source" : "3617", "target" : "5737", "shared_name" : "4704 (interacts with) 84340", "name" : "4704 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 39134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39130", "source" : "3617", "target" : "889", "shared_name" : "4704 (interacts with) 80224", "name" : "4704 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 39130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39126", "source" : "3617", "target" : "1869", "shared_name" : "4704 (interacts with) 4729", "name" : "4704 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 39126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39122", "source" : "3617", "target" : "1573", "shared_name" : "4704 (interacts with) 4723", "name" : "4704 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 39122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39118", "source" : "3617", "target" : "4017", "shared_name" : "4704 (interacts with) 4719", "name" : "4704 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 39118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39114", "source" : "3617", "target" : "5853", "shared_name" : "4704 (interacts with) 4709", "name" : "4704 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 39114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39110", "source" : "3617", "target" : "713", "shared_name" : "4704 (interacts with) 7019", "name" : "4704 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 39110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39106", "source" : "3617", "target" : "3973", "shared_name" : "4704 (interacts with) 55572", "name" : "4704 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 39106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39102", "source" : "3617", "target" : "2009", "shared_name" : "4704 (interacts with) 79133", "name" : "4704 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 39102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39098", "source" : "3617", "target" : "2753", "shared_name" : "4704 (interacts with) 4720", "name" : "4704 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 39098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39094", "source" : "3617", "target" : "2797", "shared_name" : "4704 (interacts with) 4728", "name" : "4704 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 39094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39090", "source" : "3617", "target" : "4045", "shared_name" : "4704 (interacts with) 29920", "name" : "4704 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 39090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39086", "source" : "3617", "target" : "3501", "shared_name" : "4704 (interacts with) 5831", "name" : "4704 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 39086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39082", "source" : "3617", "target" : "4061", "shared_name" : "4704 (interacts with) 4705", "name" : "4704 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 39082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39078", "source" : "3617", "target" : "1237", "shared_name" : "4704 (interacts with) 3329", "name" : "4704 (interacts with) 3329", "interaction" : "interacts with", "SUID" : 39078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39074", "source" : "3617", "target" : "3485", "shared_name" : "4704 (interacts with) 54704", "name" : "4704 (interacts with) 54704", "interaction" : "interacts with", "SUID" : 39074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39070", "source" : "3617", "target" : "5833", "shared_name" : "4704 (interacts with) 4726", "name" : "4704 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 39070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39066", "source" : "3617", "target" : "2741", "shared_name" : "4704 (interacts with) 4695", "name" : "4704 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 39066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39062", "source" : "3617", "target" : "5821", "shared_name" : "4704 (interacts with) 4724", "name" : "4704 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 39062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39058", "source" : "3617", "target" : "5885", "shared_name" : "4704 (interacts with) 4540", "name" : "4704 (interacts with) 4540", "interaction" : "interacts with", "SUID" : 39058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39054", "source" : "3617", "target" : "2689", "shared_name" : "4704 (interacts with) 4715", "name" : "4704 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 39054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39050", "source" : "3617", "target" : "5829", "shared_name" : "4704 (interacts with) 4538", "name" : "4704 (interacts with) 4538", "interaction" : "interacts with", "SUID" : 39050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39274", "source" : "3613", "target" : "3177", "shared_name" : "50640 (interacts with) 5321", "name" : "50640 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 39274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39270", "source" : "3613", "target" : "2853", "shared_name" : "50640 (interacts with) 8398", "name" : "50640 (interacts with) 8398", "interaction" : "interacts with", "SUID" : 39270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39266", "source" : "3613", "target" : "385", "shared_name" : "50640 (interacts with) 5319", "name" : "50640 (interacts with) 5319", "interaction" : "interacts with", "SUID" : 39266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39262", "source" : "3613", "target" : "1769", "shared_name" : "50640 (interacts with) 57104", "name" : "50640 (interacts with) 57104", "interaction" : "interacts with", "SUID" : 39262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39278", "source" : "3609", "target" : "5185", "shared_name" : "10297 (interacts with) 1499", "name" : "10297 (interacts with) 1499", "interaction" : "interacts with", "SUID" : 39278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39302", "source" : "3605", "target" : "1797", "shared_name" : "7841 (interacts with) 85365", "name" : "7841 (interacts with) 85365", "interaction" : "interacts with", "SUID" : 39302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39298", "source" : "3605", "target" : "5005", "shared_name" : "7841 (interacts with) 79868", "name" : "7841 (interacts with) 79868", "interaction" : "interacts with", "SUID" : 39298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39294", "source" : "3605", "target" : "6017", "shared_name" : "7841 (interacts with) 79796", "name" : "7841 (interacts with) 79796", "interaction" : "interacts with", "SUID" : 39294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39290", "source" : "3605", "target" : "1697", "shared_name" : "7841 (interacts with) 8818", "name" : "7841 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 39290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39286", "source" : "3605", "target" : "3037", "shared_name" : "7841 (interacts with) 8813", "name" : "7841 (interacts with) 8813", "interaction" : "interacts with", "SUID" : 39286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39282", "source" : "3605", "target" : "5065", "shared_name" : "7841 (interacts with) 3117", "name" : "7841 (interacts with) 3117", "interaction" : "interacts with", "SUID" : 39282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39346", "source" : "3601", "target" : "1157", "shared_name" : "6531 (interacts with) 6580", "name" : "6531 (interacts with) 6580", "interaction" : "interacts with", "SUID" : 39346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39342", "source" : "3601", "target" : "3781", "shared_name" : "6531 (interacts with) 9152", "name" : "6531 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 39342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39338", "source" : "3601", "target" : "309", "shared_name" : "6531 (interacts with) 6536", "name" : "6531 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 39338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39334", "source" : "3601", "target" : "277", "shared_name" : "6531 (interacts with) 285175", "name" : "6531 (interacts with) 285175", "interaction" : "interacts with", "SUID" : 39334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39330", "source" : "3601", "target" : "3845", "shared_name" : "6531 (interacts with) 10479", "name" : "6531 (interacts with) 10479", "interaction" : "interacts with", "SUID" : 39330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39326", "source" : "3601", "target" : "609", "shared_name" : "6531 (interacts with) 6812", "name" : "6531 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 39326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39322", "source" : "3601", "target" : "5785", "shared_name" : "6531 (interacts with) 6857", "name" : "6531 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 39322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39318", "source" : "3601", "target" : "1809", "shared_name" : "6531 (interacts with) 6548", "name" : "6531 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 39318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39314", "source" : "3601", "target" : "5929", "shared_name" : "6531 (interacts with) 6616", "name" : "6531 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 39314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39310", "source" : "3601", "target" : "5877", "shared_name" : "6531 (interacts with) 6535", "name" : "6531 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 39310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39306", "source" : "3601", "target" : "401", "shared_name" : "6531 (interacts with) 6532", "name" : "6531 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 39306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39362", "source" : "3597", "target" : "1961", "shared_name" : "10749 (interacts with) 23095", "name" : "10749 (interacts with) 23095", "interaction" : "interacts with", "SUID" : 39362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39358", "source" : "3597", "target" : "5749", "shared_name" : "10749 (interacts with) 10959", "name" : "10749 (interacts with) 10959", "interaction" : "interacts with", "SUID" : 39358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39354", "source" : "3597", "target" : "545", "shared_name" : "10749 (interacts with) 51014", "name" : "10749 (interacts with) 51014", "interaction" : "interacts with", "SUID" : 39354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39350", "source" : "3597", "target" : "657", "shared_name" : "10749 (interacts with) 547", "name" : "10749 (interacts with) 547", "interaction" : "interacts with", "SUID" : 39350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39442", "source" : "3593", "target" : "5081", "shared_name" : "5530 (interacts with) 5594", "name" : "5530 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 39442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39438", "source" : "3593", "target" : "973", "shared_name" : "5530 (interacts with) 5595", "name" : "5530 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 39438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39434", "source" : "3593", "target" : "1069", "shared_name" : "5530 (interacts with) 5879", "name" : "5530 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 39434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39430", "source" : "3593", "target" : "4949", "shared_name" : "5530 (interacts with) 5970", "name" : "5530 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 39430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39426", "source" : "3593", "target" : "4521", "shared_name" : "5530 (interacts with) 5894", "name" : "5530 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 39426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39422", "source" : "3593", "target" : "5361", "shared_name" : "5530 (interacts with) 5604", "name" : "5530 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 39422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39418", "source" : "3593", "target" : "4857", "shared_name" : "5530 (interacts with) 5573", "name" : "5530 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 39418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39414", "source" : "3593", "target" : "1241", "shared_name" : "5530 (interacts with) 808", "name" : "5530 (interacts with) 808", "interaction" : "interacts with", "SUID" : 39414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39410", "source" : "3593", "target" : "3577", "shared_name" : "5530 (interacts with) 5605", "name" : "5530 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 39410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39406", "source" : "3593", "target" : "637", "shared_name" : "5530 (interacts with) 6654", "name" : "5530 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 39406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39402", "source" : "3593", "target" : "1201", "shared_name" : "5530 (interacts with) 805", "name" : "5530 (interacts with) 805", "interaction" : "interacts with", "SUID" : 39402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39398", "source" : "3593", "target" : "5313", "shared_name" : "5530 (interacts with) 6197", "name" : "5530 (interacts with) 6197", "interaction" : "interacts with", "SUID" : 39398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39394", "source" : "3593", "target" : "2969", "shared_name" : "5530 (interacts with) 8867", "name" : "5530 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 39394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39390", "source" : "3593", "target" : "1273", "shared_name" : "5530 (interacts with) 10059", "name" : "5530 (interacts with) 10059", "interaction" : "interacts with", "SUID" : 39390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39386", "source" : "3593", "target" : "945", "shared_name" : "5530 (interacts with) 2316", "name" : "5530 (interacts with) 2316", "interaction" : "interacts with", "SUID" : 39386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39382", "source" : "3593", "target" : "3981", "shared_name" : "5530 (interacts with) 1785", "name" : "5530 (interacts with) 1785", "interaction" : "interacts with", "SUID" : 39382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39378", "source" : "3593", "target" : "3853", "shared_name" : "5530 (interacts with) 6786", "name" : "5530 (interacts with) 6786", "interaction" : "interacts with", "SUID" : 39378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39374", "source" : "3593", "target" : "2873", "shared_name" : "5530 (interacts with) 6261", "name" : "5530 (interacts with) 6261", "interaction" : "interacts with", "SUID" : 39374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39370", "source" : "3593", "target" : "565", "shared_name" : "5530 (interacts with) 4772", "name" : "5530 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 39370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39366", "source" : "3593", "target" : "993", "shared_name" : "5530 (interacts with) 801", "name" : "5530 (interacts with) 801", "interaction" : "interacts with", "SUID" : 39366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39450", "source" : "3589", "target" : "5457", "shared_name" : "6567 (interacts with) 9440", "name" : "6567 (interacts with) 9440", "interaction" : "interacts with", "SUID" : 39450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39446", "source" : "3589", "target" : "6133", "shared_name" : "6567 (interacts with) 54658", "name" : "6567 (interacts with) 54658", "interaction" : "interacts with", "SUID" : 39446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39486", "source" : "3585", "target" : "1069", "shared_name" : "3908 (interacts with) 5879", "name" : "3908 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 39486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39482", "source" : "3585", "target" : "5149", "shared_name" : "3908 (interacts with) 5058", "name" : "3908 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 39482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39478", "source" : "3585", "target" : "4293", "shared_name" : "3908 (interacts with) 5156", "name" : "3908 (interacts with) 5156", "interaction" : "interacts with", "SUID" : 39478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39474", "source" : "3585", "target" : "973", "shared_name" : "3908 (interacts with) 5595", "name" : "3908 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 39474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39470", "source" : "3585", "target" : "5081", "shared_name" : "3908 (interacts with) 5594", "name" : "3908 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 39470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39466", "source" : "3585", "target" : "3289", "shared_name" : "3908 (interacts with) 5913", "name" : "3908 (interacts with) 5913", "interaction" : "interacts with", "SUID" : 39466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39462", "source" : "3585", "target" : "1405", "shared_name" : "3908 (interacts with) 998", "name" : "3908 (interacts with) 998", "interaction" : "interacts with", "SUID" : 39462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39458", "source" : "3585", "target" : "2137", "shared_name" : "3908 (interacts with) 3918", "name" : "3908 (interacts with) 3918", "interaction" : "interacts with", "SUID" : 39458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39454", "source" : "3585", "target" : "1497", "shared_name" : "3908 (interacts with) 3912", "name" : "3908 (interacts with) 3912", "interaction" : "interacts with", "SUID" : 39454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39622", "source" : "3581", "target" : "6105", "shared_name" : "2185 (interacts with) 28996", "name" : "2185 (interacts with) 28996", "interaction" : "interacts with", "SUID" : 39622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39618", "source" : "3581", "target" : "973", "shared_name" : "2185 (interacts with) 5595", "name" : "2185 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 39618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39614", "source" : "3581", "target" : "5081", "shared_name" : "2185 (interacts with) 5594", "name" : "2185 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 39614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39610", "source" : "3581", "target" : "5225", "shared_name" : "2185 (interacts with) 5290", "name" : "2185 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 39610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39606", "source" : "3581", "target" : "3685", "shared_name" : "2185 (interacts with) 3265", "name" : "2185 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 39606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39602", "source" : "3581", "target" : "3017", "shared_name" : "2185 (interacts with) 4790", "name" : "2185 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 39602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39598", "source" : "3581", "target" : "5361", "shared_name" : "2185 (interacts with) 5604", "name" : "2185 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 39598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39594", "source" : "3581", "target" : "4213", "shared_name" : "2185 (interacts with) 5295", "name" : "2185 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 39594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39590", "source" : "3581", "target" : "4949", "shared_name" : "2185 (interacts with) 5970", "name" : "2185 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 39590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39586", "source" : "3581", "target" : "4521", "shared_name" : "2185 (interacts with) 5894", "name" : "2185 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 39586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39582", "source" : "3581", "target" : "1069", "shared_name" : "2185 (interacts with) 5879", "name" : "2185 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 39582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39578", "source" : "3581", "target" : "5149", "shared_name" : "2185 (interacts with) 5058", "name" : "2185 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 39578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39574", "source" : "3581", "target" : "993", "shared_name" : "2185 (interacts with) 801", "name" : "2185 (interacts with) 801", "interaction" : "interacts with", "SUID" : 39574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39570", "source" : "3581", "target" : "1201", "shared_name" : "2185 (interacts with) 805", "name" : "2185 (interacts with) 805", "interaction" : "interacts with", "SUID" : 39570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39566", "source" : "3581", "target" : "637", "shared_name" : "2185 (interacts with) 6654", "name" : "2185 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 39566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39562", "source" : "3581", "target" : "3577", "shared_name" : "2185 (interacts with) 5605", "name" : "2185 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 39562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39558", "source" : "3581", "target" : "1241", "shared_name" : "2185 (interacts with) 808", "name" : "2185 (interacts with) 808", "interaction" : "interacts with", "SUID" : 39558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39554", "source" : "3581", "target" : "5965", "shared_name" : "2185 (interacts with) 596", "name" : "2185 (interacts with) 596", "interaction" : "interacts with", "SUID" : 39554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39550", "source" : "3581", "target" : "805", "shared_name" : "2185 (interacts with) 6772", "name" : "2185 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 39550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39546", "source" : "3581", "target" : "5145", "shared_name" : "2185 (interacts with) 23236", "name" : "2185 (interacts with) 23236", "interaction" : "interacts with", "SUID" : 39546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39542", "source" : "3581", "target" : "4981", "shared_name" : "2185 (interacts with) 6774", "name" : "2185 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 39542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39538", "source" : "3581", "target" : "817", "shared_name" : "2185 (interacts with) 5728", "name" : "2185 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 39538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39534", "source" : "3581", "target" : "1701", "shared_name" : "2185 (interacts with) 5777", "name" : "2185 (interacts with) 5777", "interaction" : "interacts with", "SUID" : 39534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39530", "source" : "3581", "target" : "2661", "shared_name" : "2185 (interacts with) 3606", "name" : "2185 (interacts with) 3606", "interaction" : "interacts with", "SUID" : 39530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39526", "source" : "3581", "target" : "3289", "shared_name" : "2185 (interacts with) 5913", "name" : "2185 (interacts with) 5913", "interaction" : "interacts with", "SUID" : 39526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39522", "source" : "3581", "target" : "6013", "shared_name" : "2185 (interacts with) 3574", "name" : "2185 (interacts with) 3574", "interaction" : "interacts with", "SUID" : 39522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39518", "source" : "3581", "target" : "3833", "shared_name" : "2185 (interacts with) 9138", "name" : "2185 (interacts with) 9138", "interaction" : "interacts with", "SUID" : 39518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39514", "source" : "3581", "target" : "4457", "shared_name" : "2185 (interacts with) 3082", "name" : "2185 (interacts with) 3082", "interaction" : "interacts with", "SUID" : 39514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39510", "source" : "3581", "target" : "885", "shared_name" : "2185 (interacts with) 6347", "name" : "2185 (interacts with) 6347", "interaction" : "interacts with", "SUID" : 39510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39506", "source" : "3581", "target" : "4765", "shared_name" : "2185 (interacts with) 7015", "name" : "2185 (interacts with) 7015", "interaction" : "interacts with", "SUID" : 39506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39502", "source" : "3581", "target" : "3285", "shared_name" : "2185 (interacts with) 8302", "name" : "2185 (interacts with) 8302", "interaction" : "interacts with", "SUID" : 39502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39498", "source" : "3581", "target" : "2005", "shared_name" : "2185 (interacts with) 4846", "name" : "2185 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 39498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39494", "source" : "3581", "target" : "4013", "shared_name" : "2185 (interacts with) 6622", "name" : "2185 (interacts with) 6622", "interaction" : "interacts with", "SUID" : 39494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39490", "source" : "3581", "target" : "3721", "shared_name" : "2185 (interacts with) 2934", "name" : "2185 (interacts with) 2934", "interaction" : "interacts with", "SUID" : 39490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39730", "source" : "3577", "target" : "1069", "shared_name" : "5605 (interacts with) 5879", "name" : "5605 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 39730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39726", "source" : "3577", "target" : "4949", "shared_name" : "5605 (interacts with) 5970", "name" : "5605 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 39726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39722", "source" : "3577", "target" : "637", "shared_name" : "5605 (interacts with) 6654", "name" : "5605 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 39722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39718", "source" : "3577", "target" : "993", "shared_name" : "5605 (interacts with) 801", "name" : "5605 (interacts with) 801", "interaction" : "interacts with", "SUID" : 39718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39714", "source" : "3577", "target" : "3305", "shared_name" : "5605 (interacts with) 7040", "name" : "5605 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 39714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39710", "source" : "3577", "target" : "2153", "shared_name" : "5605 (interacts with) 7042", "name" : "5605 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 39710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39706", "source" : "3577", "target" : "3409", "shared_name" : "5605 (interacts with) 7043", "name" : "5605 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 39706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39702", "source" : "3577", "target" : "1201", "shared_name" : "5605 (interacts with) 805", "name" : "5605 (interacts with) 805", "interaction" : "interacts with", "SUID" : 39702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39698", "source" : "3577", "target" : "1241", "shared_name" : "5605 (interacts with) 808", "name" : "5605 (interacts with) 808", "interaction" : "interacts with", "SUID" : 39698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39694", "source" : "3577", "target" : "805", "shared_name" : "5605 (interacts with) 6772", "name" : "5605 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 39694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39690", "source" : "3577", "target" : "1405", "shared_name" : "5605 (interacts with) 998", "name" : "5605 (interacts with) 998", "interaction" : "interacts with", "SUID" : 39690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39686", "source" : "3577", "target" : "5313", "shared_name" : "5605 (interacts with) 6197", "name" : "5605 (interacts with) 6197", "interaction" : "interacts with", "SUID" : 39686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39682", "source" : "3577", "target" : "4981", "shared_name" : "5605 (interacts with) 6774", "name" : "5605 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 39682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39678", "source" : "3577", "target" : "2433", "shared_name" : "5605 (interacts with) 6927", "name" : "5605 (interacts with) 6927", "interaction" : "interacts with", "SUID" : 39678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39674", "source" : "3577", "target" : "817", "shared_name" : "5605 (interacts with) 5728", "name" : "5605 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 39674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39670", "source" : "3577", "target" : "5053", "shared_name" : "5605 (interacts with) 857", "name" : "5605 (interacts with) 857", "interaction" : "interacts with", "SUID" : 39670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39666", "source" : "3577", "target" : "1697", "shared_name" : "5605 (interacts with) 8818", "name" : "5605 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 39666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39662", "source" : "3577", "target" : "4909", "shared_name" : "5605 (interacts with) 823", "name" : "5605 (interacts with) 823", "interaction" : "interacts with", "SUID" : 39662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39658", "source" : "3577", "target" : "4033", "shared_name" : "5605 (interacts with) 613", "name" : "5605 (interacts with) 613", "interaction" : "interacts with", "SUID" : 39658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39654", "source" : "3577", "target" : "3841", "shared_name" : "5605 (interacts with) 9444", "name" : "5605 (interacts with) 9444", "interaction" : "interacts with", "SUID" : 39654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39650", "source" : "3577", "target" : "4437", "shared_name" : "5605 (interacts with) 84168", "name" : "5605 (interacts with) 84168", "interaction" : "interacts with", "SUID" : 39650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39646", "source" : "3577", "target" : "3569", "shared_name" : "5605 (interacts with) 4893", "name" : "5605 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 39646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39642", "source" : "3577", "target" : "5361", "shared_name" : "5605 (interacts with) 5604", "name" : "5605 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 39642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39638", "source" : "3577", "target" : "5081", "shared_name" : "5605 (interacts with) 5594", "name" : "5605 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 39638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39634", "source" : "3577", "target" : "4521", "shared_name" : "5605 (interacts with) 5894", "name" : "5605 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 39634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39630", "source" : "3577", "target" : "3677", "shared_name" : "5605 (interacts with) 673", "name" : "5605 (interacts with) 673", "interaction" : "interacts with", "SUID" : 39630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39626", "source" : "3577", "target" : "973", "shared_name" : "5605 (interacts with) 5595", "name" : "5605 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 39626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39858", "source" : "3573", "target" : "4765", "shared_name" : "3845 (interacts with) 7015", "name" : "3845 (interacts with) 7015", "interaction" : "interacts with", "SUID" : 39858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39854", "source" : "3573", "target" : "5965", "shared_name" : "3845 (interacts with) 596", "name" : "3845 (interacts with) 596", "interaction" : "interacts with", "SUID" : 39854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39850", "source" : "3573", "target" : "5037", "shared_name" : "3845 (interacts with) 5515", "name" : "3845 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 39850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39846", "source" : "3573", "target" : "981", "shared_name" : "3845 (interacts with) 7157", "name" : "3845 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 39846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39842", "source" : "3573", "target" : "629", "shared_name" : "3845 (interacts with) 7013", "name" : "3845 (interacts with) 7013", "interaction" : "interacts with", "SUID" : 39842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39838", "source" : "3573", "target" : "637", "shared_name" : "3845 (interacts with) 6654", "name" : "3845 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 39838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39834", "source" : "3573", "target" : "4521", "shared_name" : "3845 (interacts with) 5894", "name" : "3845 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 39834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39830", "source" : "3573", "target" : "5225", "shared_name" : "3845 (interacts with) 5290", "name" : "3845 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 39830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39826", "source" : "3573", "target" : "5097", "shared_name" : "3845 (interacts with) 8831", "name" : "3845 (interacts with) 8831", "interaction" : "interacts with", "SUID" : 39826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39822", "source" : "3573", "target" : "4725", "shared_name" : "3845 (interacts with) 7010", "name" : "3845 (interacts with) 7010", "interaction" : "interacts with", "SUID" : 39822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39818", "source" : "3573", "target" : "4361", "shared_name" : "3845 (interacts with) 22906", "name" : "3845 (interacts with) 22906", "interaction" : "interacts with", "SUID" : 39818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39814", "source" : "3573", "target" : "1973", "shared_name" : "3845 (interacts with) 6709", "name" : "3845 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 39814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39810", "source" : "3573", "target" : "1633", "shared_name" : "3845 (interacts with) 57731", "name" : "3845 (interacts with) 57731", "interaction" : "interacts with", "SUID" : 39810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39806", "source" : "3573", "target" : "3637", "shared_name" : "3845 (interacts with) 6712", "name" : "3845 (interacts with) 6712", "interaction" : "interacts with", "SUID" : 39806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39802", "source" : "3573", "target" : "5125", "shared_name" : "3845 (interacts with) 5979", "name" : "3845 (interacts with) 5979", "interaction" : "interacts with", "SUID" : 39802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39798", "source" : "3573", "target" : "313", "shared_name" : "3845 (interacts with) 5923", "name" : "3845 (interacts with) 5923", "interaction" : "interacts with", "SUID" : 39798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39794", "source" : "3573", "target" : "3841", "shared_name" : "3845 (interacts with) 9444", "name" : "3845 (interacts with) 9444", "interaction" : "interacts with", "SUID" : 39794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39790", "source" : "3573", "target" : "5641", "shared_name" : "3845 (interacts with) 5518", "name" : "3845 (interacts with) 5518", "interaction" : "interacts with", "SUID" : 39790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39786", "source" : "3573", "target" : "4293", "shared_name" : "3845 (interacts with) 5156", "name" : "3845 (interacts with) 5156", "interaction" : "interacts with", "SUID" : 39786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39782", "source" : "3573", "target" : "2173", "shared_name" : "3845 (interacts with) 5159", "name" : "3845 (interacts with) 5159", "interaction" : "interacts with", "SUID" : 39782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39778", "source" : "3573", "target" : "5973", "shared_name" : "3845 (interacts with) 5155", "name" : "3845 (interacts with) 5155", "interaction" : "interacts with", "SUID" : 39778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39774", "source" : "3573", "target" : "4209", "shared_name" : "3845 (interacts with) 4915", "name" : "3845 (interacts with) 4915", "interaction" : "interacts with", "SUID" : 39774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39770", "source" : "3573", "target" : "2773", "shared_name" : "3845 (interacts with) 4908", "name" : "3845 (interacts with) 4908", "interaction" : "interacts with", "SUID" : 39770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39766", "source" : "3573", "target" : "5149", "shared_name" : "3845 (interacts with) 5058", "name" : "3845 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 39766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39762", "source" : "3573", "target" : "4385", "shared_name" : "3845 (interacts with) 3084", "name" : "3845 (interacts with) 3084", "interaction" : "interacts with", "SUID" : 39762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39758", "source" : "3573", "target" : "2197", "shared_name" : "3845 (interacts with) 4684", "name" : "3845 (interacts with) 4684", "interaction" : "interacts with", "SUID" : 39758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39754", "source" : "3573", "target" : "2977", "shared_name" : "3845 (interacts with) 4747", "name" : "3845 (interacts with) 4747", "interaction" : "interacts with", "SUID" : 39754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39750", "source" : "3573", "target" : "5081", "shared_name" : "3845 (interacts with) 5594", "name" : "3845 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 39750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39746", "source" : "3573", "target" : "5361", "shared_name" : "3845 (interacts with) 5604", "name" : "3845 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 39746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39742", "source" : "3573", "target" : "3577", "shared_name" : "3845 (interacts with) 5605", "name" : "3845 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 39742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39738", "source" : "3573", "target" : "973", "shared_name" : "3845 (interacts with) 5595", "name" : "3845 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 39738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39734", "source" : "3573", "target" : "3361", "shared_name" : "3845 (interacts with) 4000", "name" : "3845 (interacts with) 4000", "interaction" : "interacts with", "SUID" : 39734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39934", "source" : "3569", "target" : "637", "shared_name" : "4893 (interacts with) 6654", "name" : "4893 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 39934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39930", "source" : "3569", "target" : "5097", "shared_name" : "4893 (interacts with) 8831", "name" : "4893 (interacts with) 8831", "interaction" : "interacts with", "SUID" : 39930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39926", "source" : "3569", "target" : "4725", "shared_name" : "4893 (interacts with) 7010", "name" : "4893 (interacts with) 7010", "interaction" : "interacts with", "SUID" : 39926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39922", "source" : "3569", "target" : "4361", "shared_name" : "4893 (interacts with) 22906", "name" : "4893 (interacts with) 22906", "interaction" : "interacts with", "SUID" : 39922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39918", "source" : "3569", "target" : "1973", "shared_name" : "4893 (interacts with) 6709", "name" : "4893 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 39918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39914", "source" : "3569", "target" : "1633", "shared_name" : "4893 (interacts with) 57731", "name" : "4893 (interacts with) 57731", "interaction" : "interacts with", "SUID" : 39914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39910", "source" : "3569", "target" : "3637", "shared_name" : "4893 (interacts with) 6712", "name" : "4893 (interacts with) 6712", "interaction" : "interacts with", "SUID" : 39910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39906", "source" : "3569", "target" : "5125", "shared_name" : "4893 (interacts with) 5979", "name" : "4893 (interacts with) 5979", "interaction" : "interacts with", "SUID" : 39906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39902", "source" : "3569", "target" : "313", "shared_name" : "4893 (interacts with) 5923", "name" : "4893 (interacts with) 5923", "interaction" : "interacts with", "SUID" : 39902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39898", "source" : "3569", "target" : "3841", "shared_name" : "4893 (interacts with) 9444", "name" : "4893 (interacts with) 9444", "interaction" : "interacts with", "SUID" : 39898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39894", "source" : "3569", "target" : "5641", "shared_name" : "4893 (interacts with) 5518", "name" : "4893 (interacts with) 5518", "interaction" : "interacts with", "SUID" : 39894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39890", "source" : "3569", "target" : "4293", "shared_name" : "4893 (interacts with) 5156", "name" : "4893 (interacts with) 5156", "interaction" : "interacts with", "SUID" : 39890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39886", "source" : "3569", "target" : "2173", "shared_name" : "4893 (interacts with) 5159", "name" : "4893 (interacts with) 5159", "interaction" : "interacts with", "SUID" : 39886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39882", "source" : "3569", "target" : "5973", "shared_name" : "4893 (interacts with) 5155", "name" : "4893 (interacts with) 5155", "interaction" : "interacts with", "SUID" : 39882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39878", "source" : "3569", "target" : "5037", "shared_name" : "4893 (interacts with) 5515", "name" : "4893 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 39878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39874", "source" : "3569", "target" : "4209", "shared_name" : "4893 (interacts with) 4915", "name" : "4893 (interacts with) 4915", "interaction" : "interacts with", "SUID" : 39874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39870", "source" : "3569", "target" : "2773", "shared_name" : "4893 (interacts with) 4908", "name" : "4893 (interacts with) 4908", "interaction" : "interacts with", "SUID" : 39870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39866", "source" : "3569", "target" : "5149", "shared_name" : "4893 (interacts with) 5058", "name" : "4893 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 39866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39862", "source" : "3569", "target" : "4385", "shared_name" : "4893 (interacts with) 3084", "name" : "4893 (interacts with) 3084", "interaction" : "interacts with", "SUID" : 39862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39950", "source" : "3565", "target" : "5709", "shared_name" : "4774 (interacts with) 55703", "name" : "4774 (interacts with) 55703", "interaction" : "interacts with", "SUID" : 39950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39946", "source" : "3565", "target" : "5721", "shared_name" : "4774 (interacts with) 11128", "name" : "4774 (interacts with) 11128", "interaction" : "interacts with", "SUID" : 39946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39942", "source" : "3565", "target" : "5861", "shared_name" : "4774 (interacts with) 5435", "name" : "4774 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 39942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39938", "source" : "3565", "target" : "1857", "shared_name" : "4774 (interacts with) 9533", "name" : "4774 (interacts with) 9533", "interaction" : "interacts with", "SUID" : 39938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39986", "source" : "3561", "target" : "1481", "shared_name" : "27445 (interacts with) 3763", "name" : "27445 (interacts with) 3763", "interaction" : "interacts with", "SUID" : 39986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39982", "source" : "3561", "target" : "4881", "shared_name" : "27445 (interacts with) 6833", "name" : "27445 (interacts with) 6833", "interaction" : "interacts with", "SUID" : 39982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39978", "source" : "3561", "target" : "5929", "shared_name" : "27445 (interacts with) 6616", "name" : "27445 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 39978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39974", "source" : "3561", "target" : "5913", "shared_name" : "27445 (interacts with) 3767", "name" : "27445 (interacts with) 3767", "interaction" : "interacts with", "SUID" : 39974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39970", "source" : "3561", "target" : "1973", "shared_name" : "27445 (interacts with) 6709", "name" : "27445 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 39970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39966", "source" : "3561", "target" : "3497", "shared_name" : "27445 (interacts with) 9699", "name" : "27445 (interacts with) 9699", "interaction" : "interacts with", "SUID" : 39966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39962", "source" : "3561", "target" : "4509", "shared_name" : "27445 (interacts with) 2902", "name" : "27445 (interacts with) 2902", "interaction" : "interacts with", "SUID" : 39962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39958", "source" : "3561", "target" : "2197", "shared_name" : "27445 (interacts with) 4684", "name" : "27445 (interacts with) 4684", "interaction" : "interacts with", "SUID" : 39958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39954", "source" : "3561", "target" : "4257", "shared_name" : "27445 (interacts with) 8573", "name" : "27445 (interacts with) 8573", "interaction" : "interacts with", "SUID" : 39954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40006", "source" : "3557", "target" : "4857", "shared_name" : "2911 (interacts with) 5573", "name" : "2911 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 40006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40002", "source" : "3557", "target" : "3593", "shared_name" : "2911 (interacts with) 5530", "name" : "2911 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 40002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39998", "source" : "3557", "target" : "5037", "shared_name" : "2911 (interacts with) 5515", "name" : "2911 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 39998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39994", "source" : "3557", "target" : "1653", "shared_name" : "2911 (interacts with) 85358", "name" : "2911 (interacts with) 85358", "interaction" : "interacts with", "SUID" : 39994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "39990", "source" : "3557", "target" : "1385", "shared_name" : "2911 (interacts with) 6520", "name" : "2911 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 39990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40030", "source" : "3553", "target" : "2661", "shared_name" : "3592 (interacts with) 3606", "name" : "3592 (interacts with) 3606", "interaction" : "interacts with", "SUID" : 40030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40026", "source" : "3553", "target" : "1541", "shared_name" : "3592 (interacts with) 958", "name" : "3592 (interacts with) 958", "interaction" : "interacts with", "SUID" : 40026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40022", "source" : "3553", "target" : "2273", "shared_name" : "3592 (interacts with) 9244", "name" : "3592 (interacts with) 9244", "interaction" : "interacts with", "SUID" : 40022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40018", "source" : "3553", "target" : "5297", "shared_name" : "3592 (interacts with) 6775", "name" : "3592 (interacts with) 6775", "interaction" : "interacts with", "SUID" : 40018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40014", "source" : "3553", "target" : "4981", "shared_name" : "3592 (interacts with) 6774", "name" : "3592 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 40014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40010", "source" : "3553", "target" : "805", "shared_name" : "3592 (interacts with) 6772", "name" : "3592 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 40010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40062", "source" : "3549", "target" : "2037", "shared_name" : "760 (interacts with) 80067", "name" : "760 (interacts with) 80067", "interaction" : "interacts with", "SUID" : 40062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40058", "source" : "3549", "target" : "2769", "shared_name" : "760 (interacts with) 767", "name" : "760 (interacts with) 767", "interaction" : "interacts with", "SUID" : 40058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40054", "source" : "3549", "target" : "737", "shared_name" : "760 (interacts with) 2643", "name" : "760 (interacts with) 2643", "interaction" : "interacts with", "SUID" : 40054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40050", "source" : "3549", "target" : "6009", "shared_name" : "760 (interacts with) 64849", "name" : "760 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 40050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40046", "source" : "3549", "target" : "2413", "shared_name" : "760 (interacts with) 50484", "name" : "760 (interacts with) 50484", "interaction" : "interacts with", "SUID" : 40046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40042", "source" : "3549", "target" : "5165", "shared_name" : "760 (interacts with) 3704", "name" : "760 (interacts with) 3704", "interaction" : "interacts with", "SUID" : 40042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40038", "source" : "3549", "target" : "4041", "shared_name" : "760 (interacts with) 847", "name" : "760 (interacts with) 847", "interaction" : "interacts with", "SUID" : 40038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40034", "source" : "3549", "target" : "5109", "shared_name" : "760 (interacts with) 790", "name" : "760 (interacts with) 790", "interaction" : "interacts with", "SUID" : 40034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40110", "source" : "3545", "target" : "721", "shared_name" : "708 (interacts with) 79731", "name" : "708 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 40110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40106", "source" : "3545", "target" : "3705", "shared_name" : "708 (interacts with) 87178", "name" : "708 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 40106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40102", "source" : "3545", "target" : "1637", "shared_name" : "708 (interacts with) 91574", "name" : "708 (interacts with) 91574", "interaction" : "interacts with", "SUID" : 40102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40098", "source" : "3545", "target" : "5737", "shared_name" : "708 (interacts with) 84340", "name" : "708 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 40098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40094", "source" : "3545", "target" : "2009", "shared_name" : "708 (interacts with) 79133", "name" : "708 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 40094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40090", "source" : "3545", "target" : "4869", "shared_name" : "708 (interacts with) 92935", "name" : "708 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 40090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40086", "source" : "3545", "target" : "4757", "shared_name" : "708 (interacts with) 9997", "name" : "708 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 40086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40082", "source" : "3545", "target" : "1197", "shared_name" : "708 (interacts with) 79587", "name" : "708 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 40082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40078", "source" : "3545", "target" : "6073", "shared_name" : "708 (interacts with) 92170", "name" : "708 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 40078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40074", "source" : "3545", "target" : "5557", "shared_name" : "708 (interacts with) 9254", "name" : "708 (interacts with) 9254", "interaction" : "interacts with", "SUID" : 40074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40070", "source" : "3545", "target" : "2501", "shared_name" : "708 (interacts with) 7448", "name" : "708 (interacts with) 7448", "interaction" : "interacts with", "SUID" : 40070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40066", "source" : "3545", "target" : "2245", "shared_name" : "708 (interacts with) 5587", "name" : "708 (interacts with) 5587", "interaction" : "interacts with", "SUID" : 40066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40202", "source" : "3541", "target" : "1189", "shared_name" : "4191 (interacts with) 7915", "name" : "4191 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 40202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40198", "source" : "3541", "target" : "2029", "shared_name" : "4191 (interacts with) 4329", "name" : "4191 (interacts with) 4329", "interaction" : "interacts with", "SUID" : 40198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40194", "source" : "3541", "target" : "1325", "shared_name" : "4191 (interacts with) 7284", "name" : "4191 (interacts with) 7284", "interaction" : "interacts with", "SUID" : 40194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40190", "source" : "3541", "target" : "1713", "shared_name" : "4191 (interacts with) 5631", "name" : "4191 (interacts with) 5631", "interaction" : "interacts with", "SUID" : 40190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40186", "source" : "3541", "target" : "1013", "shared_name" : "4191 (interacts with) 6898", "name" : "4191 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 40186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40182", "source" : "3541", "target" : "5825", "shared_name" : "4191 (interacts with) 4594", "name" : "4191 (interacts with) 4594", "interaction" : "interacts with", "SUID" : 40182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40178", "source" : "3541", "target" : "1301", "shared_name" : "4191 (interacts with) 5095", "name" : "4191 (interacts with) 5095", "interaction" : "interacts with", "SUID" : 40178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40174", "source" : "3541", "target" : "1021", "shared_name" : "4191 (interacts with) 5096", "name" : "4191 (interacts with) 5096", "interaction" : "interacts with", "SUID" : 40174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40170", "source" : "3541", "target" : "3545", "shared_name" : "4191 (interacts with) 708", "name" : "4191 (interacts with) 708", "interaction" : "interacts with", "SUID" : 40170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40166", "source" : "3541", "target" : "4273", "shared_name" : "4191 (interacts with) 4548", "name" : "4191 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 40166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40162", "source" : "3541", "target" : "5593", "shared_name" : "4191 (interacts with) 875", "name" : "4191 (interacts with) 875", "interaction" : "interacts with", "SUID" : 40162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40158", "source" : "3541", "target" : "1885", "shared_name" : "4191 (interacts with) 8604", "name" : "4191 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 40158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40154", "source" : "3541", "target" : "5025", "shared_name" : "4191 (interacts with) 6389", "name" : "4191 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 40154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40150", "source" : "3541", "target" : "361", "shared_name" : "4191 (interacts with) 6576", "name" : "4191 (interacts with) 6576", "interaction" : "interacts with", "SUID" : 40150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40146", "source" : "3541", "target" : "957", "shared_name" : "4191 (interacts with) 5230", "name" : "4191 (interacts with) 5230", "interaction" : "interacts with", "SUID" : 40146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40142", "source" : "3541", "target" : "4577", "shared_name" : "4191 (interacts with) 7167", "name" : "4191 (interacts with) 7167", "interaction" : "interacts with", "SUID" : 40142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40138", "source" : "3541", "target" : "3425", "shared_name" : "4191 (interacts with) 8803", "name" : "4191 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 40138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40134", "source" : "3541", "target" : "1289", "shared_name" : "4191 (interacts with) 6392", "name" : "4191 (interacts with) 6392", "interaction" : "interacts with", "SUID" : 40134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40130", "source" : "3541", "target" : "1669", "shared_name" : "4191 (interacts with) 6390", "name" : "4191 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 40130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40126", "source" : "3541", "target" : "3421", "shared_name" : "4191 (interacts with) 4967", "name" : "4191 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 40126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40122", "source" : "3541", "target" : "3445", "shared_name" : "4191 (interacts with) 5091", "name" : "4191 (interacts with) 5091", "interaction" : "interacts with", "SUID" : 40122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40118", "source" : "3541", "target" : "397", "shared_name" : "4191 (interacts with) 50", "name" : "4191 (interacts with) 50", "interaction" : "interacts with", "SUID" : 40118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40114", "source" : "3541", "target" : "2925", "shared_name" : "4191 (interacts with) 8802", "name" : "4191 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 40114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40418", "source" : "3537", "target" : "4309", "shared_name" : "501 (interacts with) 5654", "name" : "501 (interacts with) 5654", "interaction" : "interacts with", "SUID" : 40418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40414", "source" : "3537", "target" : "693", "shared_name" : "501 (interacts with) 7296", "name" : "501 (interacts with) 7296", "interaction" : "interacts with", "SUID" : 40414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40410", "source" : "3537", "target" : "3973", "shared_name" : "501 (interacts with) 55572", "name" : "501 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 40410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40406", "source" : "3537", "target" : "1669", "shared_name" : "501 (interacts with) 6390", "name" : "501 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 40406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40402", "source" : "3537", "target" : "977", "shared_name" : "501 (interacts with) 79944", "name" : "501 (interacts with) 79944", "interaction" : "interacts with", "SUID" : 40402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40398", "source" : "3537", "target" : "1461", "shared_name" : "501 (interacts with) 5832", "name" : "501 (interacts with) 5832", "interaction" : "interacts with", "SUID" : 40398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40394", "source" : "3537", "target" : "1189", "shared_name" : "501 (interacts with) 7915", "name" : "501 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 40394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40390", "source" : "3537", "target" : "625", "shared_name" : "501 (interacts with) 8942", "name" : "501 (interacts with) 8942", "interaction" : "interacts with", "SUID" : 40390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40386", "source" : "3537", "target" : "741", "shared_name" : "501 (interacts with) 4830", "name" : "501 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 40386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40382", "source" : "3537", "target" : "5349", "shared_name" : "501 (interacts with) 440", "name" : "501 (interacts with) 440", "interaction" : "interacts with", "SUID" : 40382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40378", "source" : "3537", "target" : "5689", "shared_name" : "501 (interacts with) 27089", "name" : "501 (interacts with) 27089", "interaction" : "interacts with", "SUID" : 40378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40374", "source" : "3537", "target" : "5605", "shared_name" : "501 (interacts with) 51601", "name" : "501 (interacts with) 51601", "interaction" : "interacts with", "SUID" : 40374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40370", "source" : "3537", "target" : "4737", "shared_name" : "501 (interacts with) 445", "name" : "501 (interacts with) 445", "interaction" : "interacts with", "SUID" : 40370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40366", "source" : "3537", "target" : "3929", "shared_name" : "501 (interacts with) 5860", "name" : "501 (interacts with) 5860", "interaction" : "interacts with", "SUID" : 40366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40362", "source" : "3537", "target" : "4045", "shared_name" : "501 (interacts with) 29920", "name" : "501 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 40362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40358", "source" : "3537", "target" : "3501", "shared_name" : "501 (interacts with) 5831", "name" : "501 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 40358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40354", "source" : "3537", "target" : "1721", "shared_name" : "501 (interacts with) 51807", "name" : "501 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 40354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40350", "source" : "3537", "target" : "1573", "shared_name" : "501 (interacts with) 4723", "name" : "501 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 40350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40346", "source" : "3537", "target" : "2797", "shared_name" : "501 (interacts with) 4728", "name" : "501 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 40346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40342", "source" : "3537", "target" : "4069", "shared_name" : "501 (interacts with) 374291", "name" : "501 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 40342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40338", "source" : "3537", "target" : "5833", "shared_name" : "501 (interacts with) 4726", "name" : "501 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 40338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40334", "source" : "3537", "target" : "5821", "shared_name" : "501 (interacts with) 4724", "name" : "501 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 40334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40330", "source" : "3537", "target" : "4945", "shared_name" : "501 (interacts with) 4722", "name" : "501 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 40330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40326", "source" : "3537", "target" : "2753", "shared_name" : "501 (interacts with) 4720", "name" : "501 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 40326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40322", "source" : "3537", "target" : "1437", "shared_name" : "501 (interacts with) 80025", "name" : "501 (interacts with) 80025", "interaction" : "interacts with", "SUID" : 40322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40318", "source" : "3537", "target" : "1869", "shared_name" : "501 (interacts with) 4729", "name" : "501 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 40318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40314", "source" : "3537", "target" : "5853", "shared_name" : "501 (interacts with) 4709", "name" : "501 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 40314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40310", "source" : "3537", "target" : "3617", "shared_name" : "501 (interacts with) 4704", "name" : "501 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 40310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40306", "source" : "3537", "target" : "4017", "shared_name" : "501 (interacts with) 4719", "name" : "501 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 40306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40302", "source" : "3537", "target" : "2689", "shared_name" : "501 (interacts with) 4715", "name" : "501 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 40302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40298", "source" : "3537", "target" : "5845", "shared_name" : "501 (interacts with) 4714", "name" : "501 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 40298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40294", "source" : "3537", "target" : "5553", "shared_name" : "501 (interacts with) 55967", "name" : "501 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 40294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40290", "source" : "3537", "target" : "2825", "shared_name" : "501 (interacts with) 126328", "name" : "501 (interacts with) 126328", "interaction" : "interacts with", "SUID" : 40290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40286", "source" : "3537", "target" : "4061", "shared_name" : "501 (interacts with) 4705", "name" : "501 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 40286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40282", "source" : "3537", "target" : "2045", "shared_name" : "501 (interacts with) 51102", "name" : "501 (interacts with) 51102", "interaction" : "interacts with", "SUID" : 40282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40278", "source" : "3537", "target" : "2801", "shared_name" : "501 (interacts with) 4700", "name" : "501 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 40278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40274", "source" : "3537", "target" : "2741", "shared_name" : "501 (interacts with) 4695", "name" : "501 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 40274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40270", "source" : "3537", "target" : "5857", "shared_name" : "501 (interacts with) 4694", "name" : "501 (interacts with) 4694", "interaction" : "interacts with", "SUID" : 40270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40266", "source" : "3537", "target" : "2757", "shared_name" : "501 (interacts with) 51079", "name" : "501 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 40266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40262", "source" : "3537", "target" : "5017", "shared_name" : "501 (interacts with) 3417", "name" : "501 (interacts with) 3417", "interaction" : "interacts with", "SUID" : 40262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40258", "source" : "3537", "target" : "5529", "shared_name" : "501 (interacts with) 2875", "name" : "501 (interacts with) 2875", "interaction" : "interacts with", "SUID" : 40258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40254", "source" : "3537", "target" : "4253", "shared_name" : "501 (interacts with) 84706", "name" : "501 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 40254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40250", "source" : "3537", "target" : "2089", "shared_name" : "501 (interacts with) 3939", "name" : "501 (interacts with) 3939", "interaction" : "interacts with", "SUID" : 40250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40246", "source" : "3537", "target" : "2405", "shared_name" : "501 (interacts with) 3658", "name" : "501 (interacts with) 3658", "interaction" : "interacts with", "SUID" : 40246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40242", "source" : "3537", "target" : "1133", "shared_name" : "501 (interacts with) 3418", "name" : "501 (interacts with) 3418", "interaction" : "interacts with", "SUID" : 40242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40238", "source" : "3537", "target" : "321", "shared_name" : "501 (interacts with) 1593", "name" : "501 (interacts with) 1593", "interaction" : "interacts with", "SUID" : 40238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40234", "source" : "3537", "target" : "2785", "shared_name" : "501 (interacts with) 1351", "name" : "501 (interacts with) 1351", "interaction" : "interacts with", "SUID" : 40234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40230", "source" : "3537", "target" : "5385", "shared_name" : "501 (interacts with) 1349", "name" : "501 (interacts with) 1349", "interaction" : "interacts with", "SUID" : 40230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40226", "source" : "3537", "target" : "937", "shared_name" : "501 (interacts with) 2110", "name" : "501 (interacts with) 2110", "interaction" : "interacts with", "SUID" : 40226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40222", "source" : "3537", "target" : "6093", "shared_name" : "501 (interacts with) 953", "name" : "501 (interacts with) 953", "interaction" : "interacts with", "SUID" : 40222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40218", "source" : "3537", "target" : "3413", "shared_name" : "501 (interacts with) 1337", "name" : "501 (interacts with) 1337", "interaction" : "interacts with", "SUID" : 40218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40214", "source" : "3537", "target" : "1085", "shared_name" : "501 (interacts with) 9377", "name" : "501 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 40214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40210", "source" : "3537", "target" : "5685", "shared_name" : "501 (interacts with) 1340", "name" : "501 (interacts with) 1340", "interaction" : "interacts with", "SUID" : 40210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40206", "source" : "3537", "target" : "297", "shared_name" : "501 (interacts with) 1339", "name" : "501 (interacts with) 1339", "interaction" : "interacts with", "SUID" : 40206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40494", "source" : "3529", "target" : "3157", "shared_name" : "7965 (interacts with) 9255", "name" : "7965 (interacts with) 9255", "interaction" : "interacts with", "SUID" : 40494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40490", "source" : "3529", "target" : "1013", "shared_name" : "7965 (interacts with) 6898", "name" : "7965 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 40490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40486", "source" : "3529", "target" : "1885", "shared_name" : "7965 (interacts with) 8604", "name" : "7965 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 40486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40482", "source" : "3529", "target" : "1385", "shared_name" : "7965 (interacts with) 6520", "name" : "7965 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 40482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40478", "source" : "3529", "target" : "3077", "shared_name" : "7965 (interacts with) 6506", "name" : "7965 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 40478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40474", "source" : "3529", "target" : "2049", "shared_name" : "7965 (interacts with) 4552", "name" : "7965 (interacts with) 4552", "interaction" : "interacts with", "SUID" : 40474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40470", "source" : "3529", "target" : "4273", "shared_name" : "7965 (interacts with) 4548", "name" : "7965 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 40470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40466", "source" : "3529", "target" : "461", "shared_name" : "7965 (interacts with) 5198", "name" : "7965 (interacts with) 5198", "interaction" : "interacts with", "SUID" : 40466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40462", "source" : "3529", "target" : "2577", "shared_name" : "7965 (interacts with) 4337", "name" : "7965 (interacts with) 4337", "interaction" : "interacts with", "SUID" : 40462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40458", "source" : "3529", "target" : "5529", "shared_name" : "7965 (interacts with) 2875", "name" : "7965 (interacts with) 2875", "interaction" : "interacts with", "SUID" : 40458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40454", "source" : "3529", "target" : "2421", "shared_name" : "7965 (interacts with) 2673", "name" : "7965 (interacts with) 2673", "interaction" : "interacts with", "SUID" : 40454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40450", "source" : "3529", "target" : "4093", "shared_name" : "7965 (interacts with) 2752", "name" : "7965 (interacts with) 2752", "interaction" : "interacts with", "SUID" : 40450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40446", "source" : "3529", "target" : "5109", "shared_name" : "7965 (interacts with) 790", "name" : "7965 (interacts with) 790", "interaction" : "interacts with", "SUID" : 40446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40442", "source" : "3529", "target" : "1313", "shared_name" : "7965 (interacts with) 1727", "name" : "7965 (interacts with) 1727", "interaction" : "interacts with", "SUID" : 40442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40438", "source" : "3529", "target" : "597", "shared_name" : "7965 (interacts with) 271", "name" : "7965 (interacts with) 271", "interaction" : "interacts with", "SUID" : 40438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40434", "source" : "3529", "target" : "589", "shared_name" : "7965 (interacts with) 270", "name" : "7965 (interacts with) 270", "interaction" : "interacts with", "SUID" : 40434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40430", "source" : "3529", "target" : "2177", "shared_name" : "7965 (interacts with) 443", "name" : "7965 (interacts with) 443", "interaction" : "interacts with", "SUID" : 40430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40426", "source" : "3529", "target" : "5349", "shared_name" : "7965 (interacts with) 440", "name" : "7965 (interacts with) 440", "interaction" : "interacts with", "SUID" : 40426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40422", "source" : "3529", "target" : "3169", "shared_name" : "7965 (interacts with) 1615", "name" : "7965 (interacts with) 1615", "interaction" : "interacts with", "SUID" : 40422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40530", "source" : "3525", "target" : "5017", "shared_name" : "23410 (interacts with) 3417", "name" : "23410 (interacts with) 3417", "interaction" : "interacts with", "SUID" : 40530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40526", "source" : "3525", "target" : "5761", "shared_name" : "23410 (interacts with) 4208", "name" : "23410 (interacts with) 4208", "interaction" : "interacts with", "SUID" : 40526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40522", "source" : "3525", "target" : "4757", "shared_name" : "23410 (interacts with) 9997", "name" : "23410 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 40522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40518", "source" : "3525", "target" : "4421", "shared_name" : "23410 (interacts with) 2551", "name" : "23410 (interacts with) 2551", "interaction" : "interacts with", "SUID" : 40518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40514", "source" : "3525", "target" : "5085", "shared_name" : "23410 (interacts with) 56652", "name" : "23410 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 40514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40510", "source" : "3525", "target" : "1605", "shared_name" : "23410 (interacts with) 6648", "name" : "23410 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 40510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40506", "source" : "3525", "target" : "1133", "shared_name" : "23410 (interacts with) 3418", "name" : "23410 (interacts with) 3418", "interaction" : "interacts with", "SUID" : 40506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40502", "source" : "3525", "target" : "713", "shared_name" : "23410 (interacts with) 7019", "name" : "23410 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 40502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40498", "source" : "3525", "target" : "4869", "shared_name" : "23410 (interacts with) 92935", "name" : "23410 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 40498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40538", "source" : "3521", "target" : "4457", "shared_name" : "85440 (interacts with) 3082", "name" : "85440 (interacts with) 3082", "interaction" : "interacts with", "SUID" : 40538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40534", "source" : "3521", "target" : "1069", "shared_name" : "85440 (interacts with) 5879", "name" : "85440 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 40534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41006", "source" : "3517", "target" : "4521", "shared_name" : "2033 (interacts with) 5894", "name" : "2033 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 41006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41002", "source" : "3517", "target" : "5361", "shared_name" : "2033 (interacts with) 5604", "name" : "2033 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 41002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40998", "source" : "3517", "target" : "3017", "shared_name" : "2033 (interacts with) 4790", "name" : "2033 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 40998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40994", "source" : "3517", "target" : "5509", "shared_name" : "2033 (interacts with) 207", "name" : "2033 (interacts with) 207", "interaction" : "interacts with", "SUID" : 40994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40990", "source" : "3517", "target" : "3305", "shared_name" : "2033 (interacts with) 7040", "name" : "2033 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 40990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40986", "source" : "3517", "target" : "3409", "shared_name" : "2033 (interacts with) 7043", "name" : "2033 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 40986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40982", "source" : "3517", "target" : "2153", "shared_name" : "2033 (interacts with) 7042", "name" : "2033 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 40982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40978", "source" : "3517", "target" : "4065", "shared_name" : "2033 (interacts with) 7124", "name" : "2033 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 40978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40974", "source" : "3517", "target" : "4857", "shared_name" : "2033 (interacts with) 5573", "name" : "2033 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 40974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40970", "source" : "3517", "target" : "1241", "shared_name" : "2033 (interacts with) 808", "name" : "2033 (interacts with) 808", "interaction" : "interacts with", "SUID" : 40970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40966", "source" : "3517", "target" : "1201", "shared_name" : "2033 (interacts with) 805", "name" : "2033 (interacts with) 805", "interaction" : "interacts with", "SUID" : 40966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40962", "source" : "3517", "target" : "637", "shared_name" : "2033 (interacts with) 6654", "name" : "2033 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 40962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40958", "source" : "3517", "target" : "993", "shared_name" : "2033 (interacts with) 801", "name" : "2033 (interacts with) 801", "interaction" : "interacts with", "SUID" : 40958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40954", "source" : "3517", "target" : "2085", "shared_name" : "2033 (interacts with) 2932", "name" : "2033 (interacts with) 2932", "interaction" : "interacts with", "SUID" : 40954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40950", "source" : "3517", "target" : "3593", "shared_name" : "2033 (interacts with) 5530", "name" : "2033 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 40950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40946", "source" : "3517", "target" : "565", "shared_name" : "2033 (interacts with) 4772", "name" : "2033 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 40946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40942", "source" : "3517", "target" : "2625", "shared_name" : "2033 (interacts with) 3065", "name" : "2033 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 40942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40938", "source" : "3517", "target" : "5625", "shared_name" : "2033 (interacts with) 595", "name" : "2033 (interacts with) 595", "interaction" : "interacts with", "SUID" : 40938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40934", "source" : "3517", "target" : "4533", "shared_name" : "2033 (interacts with) 4089", "name" : "2033 (interacts with) 4089", "interaction" : "interacts with", "SUID" : 40934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40930", "source" : "3517", "target" : "3581", "shared_name" : "2033 (interacts with) 2185", "name" : "2033 (interacts with) 2185", "interaction" : "interacts with", "SUID" : 40930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40926", "source" : "3517", "target" : "4769", "shared_name" : "2033 (interacts with) 7132", "name" : "2033 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 40926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40922", "source" : "3517", "target" : "5761", "shared_name" : "2033 (interacts with) 4208", "name" : "2033 (interacts with) 4208", "interaction" : "interacts with", "SUID" : 40922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40918", "source" : "3517", "target" : "2613", "shared_name" : "2033 (interacts with) 472", "name" : "2033 (interacts with) 472", "interaction" : "interacts with", "SUID" : 40918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40914", "source" : "3517", "target" : "569", "shared_name" : "2033 (interacts with) 7048", "name" : "2033 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 40914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40910", "source" : "3517", "target" : "4981", "shared_name" : "2033 (interacts with) 6774", "name" : "2033 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 40910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40906", "source" : "3517", "target" : "5333", "shared_name" : "2033 (interacts with) 5591", "name" : "2033 (interacts with) 5591", "interaction" : "interacts with", "SUID" : 40906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40902", "source" : "3517", "target" : "4589", "shared_name" : "2033 (interacts with) 8431", "name" : "2033 (interacts with) 8431", "interaction" : "interacts with", "SUID" : 40902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40898", "source" : "3517", "target" : "829", "shared_name" : "2033 (interacts with) 8772", "name" : "2033 (interacts with) 8772", "interaction" : "interacts with", "SUID" : 40898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40894", "source" : "3517", "target" : "5321", "shared_name" : "2033 (interacts with) 5743", "name" : "2033 (interacts with) 5743", "interaction" : "interacts with", "SUID" : 40894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40890", "source" : "3517", "target" : "5949", "shared_name" : "2033 (interacts with) 672", "name" : "2033 (interacts with) 672", "interaction" : "interacts with", "SUID" : 40890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40886", "source" : "3517", "target" : "5941", "shared_name" : "2033 (interacts with) 5914", "name" : "2033 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 40886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40882", "source" : "3517", "target" : "2005", "shared_name" : "2033 (interacts with) 4846", "name" : "2033 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 40882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40878", "source" : "3517", "target" : "5697", "shared_name" : "2033 (interacts with) 8517", "name" : "2033 (interacts with) 8517", "interaction" : "interacts with", "SUID" : 40878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40874", "source" : "3517", "target" : "5745", "shared_name" : "2033 (interacts with) 7471", "name" : "2033 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 40874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40870", "source" : "3517", "target" : "4097", "shared_name" : "2033 (interacts with) 9611", "name" : "2033 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 40870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40866", "source" : "3517", "target" : "4853", "shared_name" : "2033 (interacts with) 545", "name" : "2033 (interacts with) 545", "interaction" : "interacts with", "SUID" : 40866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40862", "source" : "3517", "target" : "4681", "shared_name" : "2033 (interacts with) 4843", "name" : "2033 (interacts with) 4843", "interaction" : "interacts with", "SUID" : 40862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40858", "source" : "3517", "target" : "1293", "shared_name" : "2033 (interacts with) 2908", "name" : "2033 (interacts with) 2908", "interaction" : "interacts with", "SUID" : 40858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40854", "source" : "3517", "target" : "1525", "shared_name" : "2033 (interacts with) 3295", "name" : "2033 (interacts with) 3295", "interaction" : "interacts with", "SUID" : 40854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40850", "source" : "3517", "target" : "2305", "shared_name" : "2033 (interacts with) 6908", "name" : "2033 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 40850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40846", "source" : "3517", "target" : "6013", "shared_name" : "2033 (interacts with) 3574", "name" : "2033 (interacts with) 3574", "interaction" : "interacts with", "SUID" : 40846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40842", "source" : "3517", "target" : "2081", "shared_name" : "2033 (interacts with) 5468", "name" : "2033 (interacts with) 5468", "interaction" : "interacts with", "SUID" : 40842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40838", "source" : "3517", "target" : "6149", "shared_name" : "2033 (interacts with) 335", "name" : "2033 (interacts with) 335", "interaction" : "interacts with", "SUID" : 40838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40834", "source" : "3517", "target" : "5133", "shared_name" : "2033 (interacts with) 51", "name" : "2033 (interacts with) 51", "interaction" : "interacts with", "SUID" : 40834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40830", "source" : "3517", "target" : "1493", "shared_name" : "2033 (interacts with) 7428", "name" : "2033 (interacts with) 7428", "interaction" : "interacts with", "SUID" : 40830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40826", "source" : "3517", "target" : "1285", "shared_name" : "2033 (interacts with) 7249", "name" : "2033 (interacts with) 7249", "interaction" : "interacts with", "SUID" : 40826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40822", "source" : "3517", "target" : "2061", "shared_name" : "2033 (interacts with) 3570", "name" : "2033 (interacts with) 3570", "interaction" : "interacts with", "SUID" : 40822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40818", "source" : "3517", "target" : "2101", "shared_name" : "2033 (interacts with) 3486", "name" : "2033 (interacts with) 3486", "interaction" : "interacts with", "SUID" : 40818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40814", "source" : "3517", "target" : "3105", "shared_name" : "2033 (interacts with) 8289", "name" : "2033 (interacts with) 8289", "interaction" : "interacts with", "SUID" : 40814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40810", "source" : "3517", "target" : "4629", "shared_name" : "2033 (interacts with) 6605", "name" : "2033 (interacts with) 6605", "interaction" : "interacts with", "SUID" : 40810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40806", "source" : "3517", "target" : "3093", "shared_name" : "2033 (interacts with) 6597", "name" : "2033 (interacts with) 6597", "interaction" : "interacts with", "SUID" : 40806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40802", "source" : "3517", "target" : "2673", "shared_name" : "2033 (interacts with) 8841", "name" : "2033 (interacts with) 8841", "interaction" : "interacts with", "SUID" : 40802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40798", "source" : "3517", "target" : "3629", "shared_name" : "2033 (interacts with) 2066", "name" : "2033 (interacts with) 2066", "interaction" : "interacts with", "SUID" : 40798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40794", "source" : "3517", "target" : "4469", "shared_name" : "2033 (interacts with) 8295", "name" : "2033 (interacts with) 8295", "interaction" : "interacts with", "SUID" : 40794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40790", "source" : "3517", "target" : "1765", "shared_name" : "2033 (interacts with) 5308", "name" : "2033 (interacts with) 5308", "interaction" : "interacts with", "SUID" : 40790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40786", "source" : "3517", "target" : "2089", "shared_name" : "2033 (interacts with) 3939", "name" : "2033 (interacts with) 3939", "interaction" : "interacts with", "SUID" : 40786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40782", "source" : "3517", "target" : "2597", "shared_name" : "2033 (interacts with) 2056", "name" : "2033 (interacts with) 2056", "interaction" : "interacts with", "SUID" : 40782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40778", "source" : "3517", "target" : "5673", "shared_name" : "2033 (interacts with) 6497", "name" : "2033 (interacts with) 6497", "interaction" : "interacts with", "SUID" : 40778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40774", "source" : "3517", "target" : "5013", "shared_name" : "2033 (interacts with) 23411", "name" : "2033 (interacts with) 23411", "interaction" : "interacts with", "SUID" : 40774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40770", "source" : "3517", "target" : "5185", "shared_name" : "2033 (interacts with) 1499", "name" : "2033 (interacts with) 1499", "interaction" : "interacts with", "SUID" : 40770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40766", "source" : "3517", "target" : "5081", "shared_name" : "2033 (interacts with) 5594", "name" : "2033 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 40766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40762", "source" : "3517", "target" : "481", "shared_name" : "2033 (interacts with) 7507", "name" : "2033 (interacts with) 7507", "interaction" : "interacts with", "SUID" : 40762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40758", "source" : "3517", "target" : "1793", "shared_name" : "2033 (interacts with) 7515", "name" : "2033 (interacts with) 7515", "interaction" : "interacts with", "SUID" : 40758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40754", "source" : "3517", "target" : "5197", "shared_name" : "2033 (interacts with) 7156", "name" : "2033 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 40754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40750", "source" : "3517", "target" : "877", "shared_name" : "2033 (interacts with) 7341", "name" : "2033 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 40750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40746", "source" : "3517", "target" : "5729", "shared_name" : "2033 (interacts with) 861", "name" : "2033 (interacts with) 861", "interaction" : "interacts with", "SUID" : 40746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40742", "source" : "3517", "target" : "2921", "shared_name" : "2033 (interacts with) 5981", "name" : "2033 (interacts with) 5981", "interaction" : "interacts with", "SUID" : 40742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40738", "source" : "3517", "target" : "3825", "shared_name" : "2033 (interacts with) 5915", "name" : "2033 (interacts with) 5915", "interaction" : "interacts with", "SUID" : 40738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40734", "source" : "3517", "target" : "5861", "shared_name" : "2033 (interacts with) 5435", "name" : "2033 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 40734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40730", "source" : "3517", "target" : "2917", "shared_name" : "2033 (interacts with) 5451", "name" : "2033 (interacts with) 5451", "interaction" : "interacts with", "SUID" : 40730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40726", "source" : "3517", "target" : "2649", "shared_name" : "2033 (interacts with) 5430", "name" : "2033 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 40726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40722", "source" : "3517", "target" : "1857", "shared_name" : "2033 (interacts with) 9533", "name" : "2033 (interacts with) 9533", "interaction" : "interacts with", "SUID" : 40722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40718", "source" : "3517", "target" : "5621", "shared_name" : "2033 (interacts with) 25885", "name" : "2033 (interacts with) 25885", "interaction" : "interacts with", "SUID" : 40718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40714", "source" : "3517", "target" : "5009", "shared_name" : "2033 (interacts with) 5241", "name" : "2033 (interacts with) 5241", "interaction" : "interacts with", "SUID" : 40714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40710", "source" : "3517", "target" : "1729", "shared_name" : "2033 (interacts with) 5111", "name" : "2033 (interacts with) 5111", "interaction" : "interacts with", "SUID" : 40710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40706", "source" : "3517", "target" : "3417", "shared_name" : "2033 (interacts with) 5371", "name" : "2033 (interacts with) 5371", "interaction" : "interacts with", "SUID" : 40706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40702", "source" : "3517", "target" : "2529", "shared_name" : "2033 (interacts with) 5424", "name" : "2033 (interacts with) 5424", "interaction" : "interacts with", "SUID" : 40702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40698", "source" : "3517", "target" : "4345", "shared_name" : "2033 (interacts with) 4854", "name" : "2033 (interacts with) 4854", "interaction" : "interacts with", "SUID" : 40698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40694", "source" : "3517", "target" : "1029", "shared_name" : "2033 (interacts with) 5080", "name" : "2033 (interacts with) 5080", "interaction" : "interacts with", "SUID" : 40694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40690", "source" : "3517", "target" : "4249", "shared_name" : "2033 (interacts with) 4331", "name" : "2033 (interacts with) 4331", "interaction" : "interacts with", "SUID" : 40690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40686", "source" : "3517", "target" : "2485", "shared_name" : "2033 (interacts with) 81857", "name" : "2033 (interacts with) 81857", "interaction" : "interacts with", "SUID" : 40686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40682", "source" : "3517", "target" : "5457", "shared_name" : "2033 (interacts with) 9440", "name" : "2033 (interacts with) 9440", "interaction" : "interacts with", "SUID" : 40682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40678", "source" : "3517", "target" : "3573", "shared_name" : "2033 (interacts with) 3845", "name" : "2033 (interacts with) 3845", "interaction" : "interacts with", "SUID" : 40678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40674", "source" : "3517", "target" : "3253", "shared_name" : "2033 (interacts with) 4297", "name" : "2033 (interacts with) 4297", "interaction" : "interacts with", "SUID" : 40674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40670", "source" : "3517", "target" : "3933", "shared_name" : "2033 (interacts with) 10524", "name" : "2033 (interacts with) 10524", "interaction" : "interacts with", "SUID" : 40670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40666", "source" : "3517", "target" : "3769", "shared_name" : "2033 (interacts with) 8085", "name" : "2033 (interacts with) 8085", "interaction" : "interacts with", "SUID" : 40666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40662", "source" : "3517", "target" : "1393", "shared_name" : "2033 (interacts with) 55904", "name" : "2033 (interacts with) 55904", "interaction" : "interacts with", "SUID" : 40662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40658", "source" : "3517", "target" : "3709", "shared_name" : "2033 (interacts with) 9757", "name" : "2033 (interacts with) 9757", "interaction" : "interacts with", "SUID" : 40658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40654", "source" : "3517", "target" : "509", "shared_name" : "2033 (interacts with) 3661", "name" : "2033 (interacts with) 3661", "interaction" : "interacts with", "SUID" : 40654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40650", "source" : "3517", "target" : "1985", "shared_name" : "2033 (interacts with) 3456", "name" : "2033 (interacts with) 3456", "interaction" : "interacts with", "SUID" : 40650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40646", "source" : "3517", "target" : "3429", "shared_name" : "2033 (interacts with) 3674", "name" : "2033 (interacts with) 3674", "interaction" : "interacts with", "SUID" : 40646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40642", "source" : "3517", "target" : "1109", "shared_name" : "2033 (interacts with) 3440", "name" : "2033 (interacts with) 3440", "interaction" : "interacts with", "SUID" : 40642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40638", "source" : "3517", "target" : "2309", "shared_name" : "2033 (interacts with) 3316", "name" : "2033 (interacts with) 3316", "interaction" : "interacts with", "SUID" : 40638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40634", "source" : "3517", "target" : "5681", "shared_name" : "2033 (interacts with) 3315", "name" : "2033 (interacts with) 3315", "interaction" : "interacts with", "SUID" : 40634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40630", "source" : "3517", "target" : "813", "shared_name" : "2033 (interacts with) 3447", "name" : "2033 (interacts with) 3447", "interaction" : "interacts with", "SUID" : 40630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40626", "source" : "3517", "target" : "585", "shared_name" : "2033 (interacts with) 3214", "name" : "2033 (interacts with) 3214", "interaction" : "interacts with", "SUID" : 40626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40622", "source" : "3517", "target" : "2409", "shared_name" : "2033 (interacts with) 3304", "name" : "2033 (interacts with) 3304", "interaction" : "interacts with", "SUID" : 40622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40618", "source" : "3517", "target" : "6105", "shared_name" : "2033 (interacts with) 28996", "name" : "2033 (interacts with) 28996", "interaction" : "interacts with", "SUID" : 40618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40614", "source" : "3517", "target" : "913", "shared_name" : "2033 (interacts with) 404672", "name" : "2033 (interacts with) 404672", "interaction" : "interacts with", "SUID" : 40614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40610", "source" : "3517", "target" : "1937", "shared_name" : "2033 (interacts with) 2965", "name" : "2033 (interacts with) 2965", "interaction" : "interacts with", "SUID" : 40610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40606", "source" : "3517", "target" : "4037", "shared_name" : "2033 (interacts with) 2073", "name" : "2033 (interacts with) 2073", "interaction" : "interacts with", "SUID" : 40606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40602", "source" : "3517", "target" : "1709", "shared_name" : "2033 (interacts with) 2074", "name" : "2033 (interacts with) 2074", "interaction" : "interacts with", "SUID" : 40602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40598", "source" : "3517", "target" : "505", "shared_name" : "2033 (interacts with) 2071", "name" : "2033 (interacts with) 2071", "interaction" : "interacts with", "SUID" : 40598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40594", "source" : "3517", "target" : "2709", "shared_name" : "2033 (interacts with) 2072", "name" : "2033 (interacts with) 2072", "interaction" : "interacts with", "SUID" : 40594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40590", "source" : "3517", "target" : "2261", "shared_name" : "2033 (interacts with) 1161", "name" : "2033 (interacts with) 1161", "interaction" : "interacts with", "SUID" : 40590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40586", "source" : "3517", "target" : "5041", "shared_name" : "2033 (interacts with) 2067", "name" : "2033 (interacts with) 2067", "interaction" : "interacts with", "SUID" : 40586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40582", "source" : "3517", "target" : "4177", "shared_name" : "2033 (interacts with) 2068", "name" : "2033 (interacts with) 2068", "interaction" : "interacts with", "SUID" : 40582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40578", "source" : "3517", "target" : "785", "shared_name" : "2033 (interacts with) 1958", "name" : "2033 (interacts with) 1958", "interaction" : "interacts with", "SUID" : 40578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40574", "source" : "3517", "target" : "2213", "shared_name" : "2033 (interacts with) 4851", "name" : "2033 (interacts with) 4851", "interaction" : "interacts with", "SUID" : 40574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40570", "source" : "3517", "target" : "5473", "shared_name" : "2033 (interacts with) 6095", "name" : "2033 (interacts with) 6095", "interaction" : "interacts with", "SUID" : 40570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40566", "source" : "3517", "target" : "1829", "shared_name" : "2033 (interacts with) 7421", "name" : "2033 (interacts with) 7421", "interaction" : "interacts with", "SUID" : 40566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40562", "source" : "3517", "target" : "5577", "shared_name" : "2033 (interacts with) 3091", "name" : "2033 (interacts with) 3091", "interaction" : "interacts with", "SUID" : 40562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40558", "source" : "3517", "target" : "4949", "shared_name" : "2033 (interacts with) 5970", "name" : "2033 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 40558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40554", "source" : "3517", "target" : "2957", "shared_name" : "2033 (interacts with) 5465", "name" : "2033 (interacts with) 5465", "interaction" : "interacts with", "SUID" : 40554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40550", "source" : "3517", "target" : "981", "shared_name" : "2033 (interacts with) 7157", "name" : "2033 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 40550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40546", "source" : "3517", "target" : "2077", "shared_name" : "2033 (interacts with) 7528", "name" : "2033 (interacts with) 7528", "interaction" : "interacts with", "SUID" : 40546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "40542", "source" : "3517", "target" : "6169", "shared_name" : "2033 (interacts with) 4088", "name" : "2033 (interacts with) 4088", "interaction" : "interacts with", "SUID" : 40542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41014", "source" : "3513", "target" : "2813", "shared_name" : "5075 (interacts with) 5079", "name" : "5075 (interacts with) 5079", "interaction" : "interacts with", "SUID" : 41014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41010", "source" : "3513", "target" : "1029", "shared_name" : "5075 (interacts with) 5080", "name" : "5075 (interacts with) 5080", "interaction" : "interacts with", "SUID" : 41010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41022", "source" : "3509", "target" : "1549", "shared_name" : "4061 (interacts with) 7070", "name" : "4061 (interacts with) 7070", "interaction" : "interacts with", "SUID" : 41022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41018", "source" : "3509", "target" : "2737", "shared_name" : "4061 (interacts with) 966", "name" : "4061 (interacts with) 966", "interaction" : "interacts with", "SUID" : 41018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41026", "source" : "3505", "target" : "5157", "shared_name" : "160418 (interacts with) 1600", "name" : "160418 (interacts with) 1600", "interaction" : "interacts with", "SUID" : 41026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41066", "source" : "3501", "target" : "4253", "shared_name" : "5831 (interacts with) 84706", "name" : "5831 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 41066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41062", "source" : "3501", "target" : "1461", "shared_name" : "5831 (interacts with) 5832", "name" : "5831 (interacts with) 5832", "interaction" : "interacts with", "SUID" : 41062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41058", "source" : "3501", "target" : "2673", "shared_name" : "5831 (interacts with) 8841", "name" : "5831 (interacts with) 8841", "interaction" : "interacts with", "SUID" : 41058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41054", "source" : "3501", "target" : "5993", "shared_name" : "5831 (interacts with) 6611", "name" : "5831 (interacts with) 6611", "interaction" : "interacts with", "SUID" : 41054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41050", "source" : "3501", "target" : "3793", "shared_name" : "5831 (interacts with) 28965", "name" : "5831 (interacts with) 28965", "interaction" : "interacts with", "SUID" : 41050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41046", "source" : "3501", "target" : "3325", "shared_name" : "5831 (interacts with) 9517", "name" : "5831 (interacts with) 9517", "interaction" : "interacts with", "SUID" : 41046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41042", "source" : "3501", "target" : "409", "shared_name" : "5831 (interacts with) 10558", "name" : "5831 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 41042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41038", "source" : "3501", "target" : "681", "shared_name" : "5831 (interacts with) 6646", "name" : "5831 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 41038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41034", "source" : "3501", "target" : "2669", "shared_name" : "5831 (interacts with) 9197", "name" : "5831 (interacts with) 9197", "interaction" : "interacts with", "SUID" : 41034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41030", "source" : "3501", "target" : "4045", "shared_name" : "5831 (interacts with) 29920", "name" : "5831 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 41030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41106", "source" : "3493", "target" : "5073", "shared_name" : "348 (interacts with) 7305", "name" : "348 (interacts with) 7305", "interaction" : "interacts with", "SUID" : 41106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41102", "source" : "3493", "target" : "4885", "shared_name" : "348 (interacts with) 5340", "name" : "348 (interacts with) 5340", "interaction" : "interacts with", "SUID" : 41102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41098", "source" : "3493", "target" : "4125", "shared_name" : "348 (interacts with) 51360", "name" : "348 (interacts with) 51360", "interaction" : "interacts with", "SUID" : 41098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41094", "source" : "3493", "target" : "341", "shared_name" : "348 (interacts with) 4547", "name" : "348 (interacts with) 4547", "interaction" : "interacts with", "SUID" : 41094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41090", "source" : "3493", "target" : "6185", "shared_name" : "348 (interacts with) 4035", "name" : "348 (interacts with) 4035", "interaction" : "interacts with", "SUID" : 41090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41086", "source" : "3493", "target" : "533", "shared_name" : "348 (interacts with) 4036", "name" : "348 (interacts with) 4036", "interaction" : "interacts with", "SUID" : 41086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41082", "source" : "3493", "target" : "2677", "shared_name" : "348 (interacts with) 7436", "name" : "348 (interacts with) 7436", "interaction" : "interacts with", "SUID" : 41082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41078", "source" : "3493", "target" : "6149", "shared_name" : "348 (interacts with) 335", "name" : "348 (interacts with) 335", "interaction" : "interacts with", "SUID" : 41078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41074", "source" : "3493", "target" : "3629", "shared_name" : "348 (interacts with) 2066", "name" : "348 (interacts with) 2066", "interaction" : "interacts with", "SUID" : 41074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41070", "source" : "3493", "target" : "5701", "shared_name" : "348 (interacts with) 6767", "name" : "348 (interacts with) 6767", "interaction" : "interacts with", "SUID" : 41070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41150", "source" : "3489", "target" : "3605", "shared_name" : "54344 (interacts with) 7841", "name" : "54344 (interacts with) 7841", "interaction" : "interacts with", "SUID" : 41150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41146", "source" : "3489", "target" : "289", "shared_name" : "54344 (interacts with) 56052", "name" : "54344 (interacts with) 56052", "interaction" : "interacts with", "SUID" : 41146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41142", "source" : "3489", "target" : "6137", "shared_name" : "54344 (interacts with) 29954", "name" : "54344 (interacts with) 29954", "interaction" : "interacts with", "SUID" : 41142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41138", "source" : "3489", "target" : "3037", "shared_name" : "54344 (interacts with) 8813", "name" : "54344 (interacts with) 8813", "interaction" : "interacts with", "SUID" : 41138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41134", "source" : "3489", "target" : "1697", "shared_name" : "54344 (interacts with) 8818", "name" : "54344 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 41134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41130", "source" : "3489", "target" : "6017", "shared_name" : "54344 (interacts with) 79796", "name" : "54344 (interacts with) 79796", "interaction" : "interacts with", "SUID" : 41130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41126", "source" : "3489", "target" : "1797", "shared_name" : "54344 (interacts with) 85365", "name" : "54344 (interacts with) 85365", "interaction" : "interacts with", "SUID" : 41126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41122", "source" : "3489", "target" : "5005", "shared_name" : "54344 (interacts with) 79868", "name" : "54344 (interacts with) 79868", "interaction" : "interacts with", "SUID" : 41122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41118", "source" : "3489", "target" : "2633", "shared_name" : "54344 (interacts with) 29926", "name" : "54344 (interacts with) 29926", "interaction" : "interacts with", "SUID" : 41118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41114", "source" : "3489", "target" : "5717", "shared_name" : "54344 (interacts with) 29925", "name" : "54344 (interacts with) 29925", "interaction" : "interacts with", "SUID" : 41114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41110", "source" : "3489", "target" : "2933", "shared_name" : "54344 (interacts with) 10585", "name" : "54344 (interacts with) 10585", "interaction" : "interacts with", "SUID" : 41110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41178", "source" : "3485", "target" : "3145", "shared_name" : "54704 (interacts with) 8493", "name" : "54704 (interacts with) 8493", "interaction" : "interacts with", "SUID" : 41178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41174", "source" : "3485", "target" : "1485", "shared_name" : "54704 (interacts with) 8050", "name" : "54704 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 41174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41170", "source" : "3485", "target" : "2881", "shared_name" : "54704 (interacts with) 5160", "name" : "54704 (interacts with) 5160", "interaction" : "interacts with", "SUID" : 41170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41166", "source" : "3485", "target" : "677", "shared_name" : "54704 (interacts with) 57449", "name" : "54704 (interacts with) 57449", "interaction" : "interacts with", "SUID" : 41166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41162", "source" : "3485", "target" : "5025", "shared_name" : "54704 (interacts with) 6389", "name" : "54704 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 41162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41158", "source" : "3485", "target" : "489", "shared_name" : "54704 (interacts with) 1629", "name" : "54704 (interacts with) 1629", "interaction" : "interacts with", "SUID" : 41158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41154", "source" : "3485", "target" : "5197", "shared_name" : "54704 (interacts with) 7156", "name" : "54704 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 41154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41206", "source" : "3481", "target" : "5557", "shared_name" : "6513 (interacts with) 9254", "name" : "6513 (interacts with) 9254", "interaction" : "interacts with", "SUID" : 41206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41202", "source" : "3481", "target" : "5517", "shared_name" : "6513 (interacts with) 8514", "name" : "6513 (interacts with) 8514", "interaction" : "interacts with", "SUID" : 41202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41198", "source" : "3481", "target" : "3777", "shared_name" : "6513 (interacts with) 6571", "name" : "6513 (interacts with) 6571", "interaction" : "interacts with", "SUID" : 41198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41194", "source" : "3481", "target" : "1433", "shared_name" : "6513 (interacts with) 6515", "name" : "6513 (interacts with) 6515", "interaction" : "interacts with", "SUID" : 41194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41190", "source" : "3481", "target" : "641", "shared_name" : "6513 (interacts with) 773", "name" : "6513 (interacts with) 773", "interaction" : "interacts with", "SUID" : 41190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41186", "source" : "3481", "target" : "357", "shared_name" : "6513 (interacts with) 777", "name" : "6513 (interacts with) 777", "interaction" : "interacts with", "SUID" : 41186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41182", "source" : "3481", "target" : "1385", "shared_name" : "6513 (interacts with) 6520", "name" : "6513 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 41182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41246", "source" : "3473", "target" : "2721", "shared_name" : "6528 (interacts with) 79751", "name" : "6528 (interacts with) 79751", "interaction" : "interacts with", "SUID" : 41246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41242", "source" : "3473", "target" : "4605", "shared_name" : "6528 (interacts with) 7276", "name" : "6528 (interacts with) 7276", "interaction" : "interacts with", "SUID" : 41242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41238", "source" : "3473", "target" : "277", "shared_name" : "6528 (interacts with) 285175", "name" : "6528 (interacts with) 285175", "interaction" : "interacts with", "SUID" : 41238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41234", "source" : "3473", "target" : "3845", "shared_name" : "6528 (interacts with) 10479", "name" : "6528 (interacts with) 10479", "interaction" : "interacts with", "SUID" : 41234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41230", "source" : "3473", "target" : "369", "shared_name" : "6528 (interacts with) 7173", "name" : "6528 (interacts with) 7173", "interaction" : "interacts with", "SUID" : 41230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41226", "source" : "3473", "target" : "1809", "shared_name" : "6528 (interacts with) 6548", "name" : "6528 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 41226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41222", "source" : "3473", "target" : "5877", "shared_name" : "6528 (interacts with) 6535", "name" : "6528 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 41222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41218", "source" : "3473", "target" : "3601", "shared_name" : "6528 (interacts with) 6531", "name" : "6528 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 41218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41214", "source" : "3473", "target" : "401", "shared_name" : "6528 (interacts with) 6532", "name" : "6528 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 41214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41210", "source" : "3473", "target" : "3781", "shared_name" : "6528 (interacts with) 9152", "name" : "6528 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 41210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41258", "source" : "3469", "target" : "5073", "shared_name" : "2896 (interacts with) 7305", "name" : "2896 (interacts with) 7305", "interaction" : "interacts with", "SUID" : 41258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41254", "source" : "3469", "target" : "4769", "shared_name" : "2896 (interacts with) 7132", "name" : "2896 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 41254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41250", "source" : "3469", "target" : "3465", "shared_name" : "2896 (interacts with) 5296", "name" : "2896 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 41250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41314", "source" : "3465", "target" : "869", "shared_name" : "5296 (interacts with) 23221", "name" : "5296 (interacts with) 23221", "interaction" : "interacts with", "SUID" : 41314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41310", "source" : "3465", "target" : "4697", "shared_name" : "5296 (interacts with) 7534", "name" : "5296 (interacts with) 7534", "interaction" : "interacts with", "SUID" : 41310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41306", "source" : "3465", "target" : "725", "shared_name" : "5296 (interacts with) 54209", "name" : "5296 (interacts with) 54209", "interaction" : "interacts with", "SUID" : 41306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41302", "source" : "3465", "target" : "5073", "shared_name" : "5296 (interacts with) 7305", "name" : "5296 (interacts with) 7305", "interaction" : "interacts with", "SUID" : 41302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41298", "source" : "3465", "target" : "4725", "shared_name" : "5296 (interacts with) 7010", "name" : "5296 (interacts with) 7010", "interaction" : "interacts with", "SUID" : 41298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41294", "source" : "3465", "target" : "2969", "shared_name" : "5296 (interacts with) 8867", "name" : "5296 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 41294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41290", "source" : "3465", "target" : "5785", "shared_name" : "5296 (interacts with) 6857", "name" : "5296 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 41290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41286", "source" : "3465", "target" : "637", "shared_name" : "5296 (interacts with) 6654", "name" : "5296 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 41286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41282", "source" : "3465", "target" : "4393", "shared_name" : "5296 (interacts with) 950", "name" : "5296 (interacts with) 950", "interaction" : "interacts with", "SUID" : 41282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41278", "source" : "3465", "target" : "1069", "shared_name" : "5296 (interacts with) 5879", "name" : "5296 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 41278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41274", "source" : "3465", "target" : "4157", "shared_name" : "5296 (interacts with) 85021", "name" : "5296 (interacts with) 85021", "interaction" : "interacts with", "SUID" : 41274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41270", "source" : "3465", "target" : "5125", "shared_name" : "5296 (interacts with) 5979", "name" : "5296 (interacts with) 5979", "interaction" : "interacts with", "SUID" : 41270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41266", "source" : "3465", "target" : "817", "shared_name" : "5296 (interacts with) 5728", "name" : "5296 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 41266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41262", "source" : "3465", "target" : "4213", "shared_name" : "5296 (interacts with) 5295", "name" : "5296 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 41262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41346", "source" : "3461", "target" : "4625", "shared_name" : "5538 (interacts with) 6785", "name" : "5538 (interacts with) 6785", "interaction" : "interacts with", "SUID" : 41346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41342", "source" : "3461", "target" : "365", "shared_name" : "5538 (interacts with) 64834", "name" : "5538 (interacts with) 64834", "interaction" : "interacts with", "SUID" : 41342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41338", "source" : "3461", "target" : "4941", "shared_name" : "5538 (interacts with) 6342", "name" : "5538 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 41338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41334", "source" : "3461", "target" : "681", "shared_name" : "5538 (interacts with) 6646", "name" : "5538 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 41334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41330", "source" : "3461", "target" : "409", "shared_name" : "5538 (interacts with) 10558", "name" : "5538 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 41330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41326", "source" : "3461", "target" : "3425", "shared_name" : "5538 (interacts with) 8803", "name" : "5538 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 41326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41322", "source" : "3461", "target" : "2925", "shared_name" : "5538 (interacts with) 8802", "name" : "5538 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 41322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41318", "source" : "3461", "target" : "5305", "shared_name" : "5538 (interacts with) 6901", "name" : "5538 (interacts with) 6901", "interaction" : "interacts with", "SUID" : 41318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41402", "source" : "3457", "target" : "3993", "shared_name" : "22914 (interacts with) 3683", "name" : "22914 (interacts with) 3683", "interaction" : "interacts with", "SUID" : 41402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41398", "source" : "3457", "target" : "3285", "shared_name" : "22914 (interacts with) 8302", "name" : "22914 (interacts with) 8302", "interaction" : "interacts with", "SUID" : 41398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41394", "source" : "3457", "target" : "2241", "shared_name" : "22914 (interacts with) 3043", "name" : "22914 (interacts with) 3043", "interaction" : "interacts with", "SUID" : 41394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41390", "source" : "3457", "target" : "1741", "shared_name" : "22914 (interacts with) 5133", "name" : "22914 (interacts with) 5133", "interaction" : "interacts with", "SUID" : 41390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41386", "source" : "3457", "target" : "5073", "shared_name" : "22914 (interacts with) 7305", "name" : "22914 (interacts with) 7305", "interaction" : "interacts with", "SUID" : 41386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41382", "source" : "3457", "target" : "1069", "shared_name" : "22914 (interacts with) 5879", "name" : "22914 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 41382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41378", "source" : "3457", "target" : "637", "shared_name" : "22914 (interacts with) 6654", "name" : "22914 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 41378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41374", "source" : "3457", "target" : "817", "shared_name" : "22914 (interacts with) 5728", "name" : "22914 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 41374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41370", "source" : "3457", "target" : "5225", "shared_name" : "22914 (interacts with) 5290", "name" : "22914 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 41370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41366", "source" : "3457", "target" : "4213", "shared_name" : "22914 (interacts with) 5295", "name" : "22914 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 41366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41362", "source" : "3457", "target" : "3465", "shared_name" : "22914 (interacts with) 5296", "name" : "22914 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 41362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41358", "source" : "3457", "target" : "2297", "shared_name" : "22914 (interacts with) 55005", "name" : "22914 (interacts with) 55005", "interaction" : "interacts with", "SUID" : 41358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41354", "source" : "3457", "target" : "5333", "shared_name" : "22914 (interacts with) 5591", "name" : "22914 (interacts with) 5591", "interaction" : "interacts with", "SUID" : 41354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41350", "source" : "3457", "target" : "1905", "shared_name" : "22914 (interacts with) 9488", "name" : "22914 (interacts with) 9488", "interaction" : "interacts with", "SUID" : 41350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41434", "source" : "3453", "target" : "1741", "shared_name" : "3394 (interacts with) 5133", "name" : "3394 (interacts with) 5133", "interaction" : "interacts with", "SUID" : 41434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41430", "source" : "3453", "target" : "417", "shared_name" : "3394 (interacts with) 6689", "name" : "3394 (interacts with) 6689", "interaction" : "interacts with", "SUID" : 41430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41426", "source" : "3453", "target" : "5761", "shared_name" : "3394 (interacts with) 4208", "name" : "3394 (interacts with) 4208", "interaction" : "interacts with", "SUID" : 41426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41422", "source" : "3453", "target" : "2389", "shared_name" : "3394 (interacts with) 6925", "name" : "3394 (interacts with) 6925", "interaction" : "interacts with", "SUID" : 41422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41418", "source" : "3453", "target" : "509", "shared_name" : "3394 (interacts with) 3661", "name" : "3394 (interacts with) 3661", "interaction" : "interacts with", "SUID" : 41418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41414", "source" : "3453", "target" : "3817", "shared_name" : "3394 (interacts with) 3663", "name" : "3394 (interacts with) 3663", "interaction" : "interacts with", "SUID" : 41414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41410", "source" : "3453", "target" : "805", "shared_name" : "3394 (interacts with) 6772", "name" : "3394 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 41410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41406", "source" : "3453", "target" : "3401", "shared_name" : "3394 (interacts with) 3659", "name" : "3394 (interacts with) 3659", "interaction" : "interacts with", "SUID" : 41406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41446", "source" : "3449", "target" : "5913", "shared_name" : "9568 (interacts with) 3767", "name" : "9568 (interacts with) 3767", "interaction" : "interacts with", "SUID" : 41446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41442", "source" : "3449", "target" : "5789", "shared_name" : "9568 (interacts with) 3759", "name" : "9568 (interacts with) 3759", "interaction" : "interacts with", "SUID" : 41442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41438", "source" : "3449", "target" : "5569", "shared_name" : "9568 (interacts with) 59345", "name" : "9568 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 41438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41506", "source" : "3445", "target" : "4665", "shared_name" : "5091 (interacts with) 538", "name" : "5091 (interacts with) 538", "interaction" : "interacts with", "SUID" : 41506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41502", "source" : "3445", "target" : "889", "shared_name" : "5091 (interacts with) 80224", "name" : "5091 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 41502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41498", "source" : "3445", "target" : "3705", "shared_name" : "5091 (interacts with) 87178", "name" : "5091 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 41498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41494", "source" : "3445", "target" : "3773", "shared_name" : "5091 (interacts with) 540", "name" : "5091 (interacts with) 540", "interaction" : "interacts with", "SUID" : 41494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41490", "source" : "3445", "target" : "3425", "shared_name" : "5091 (interacts with) 8803", "name" : "5091 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 41490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41486", "source" : "3445", "target" : "2925", "shared_name" : "5091 (interacts with) 8802", "name" : "5091 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 41486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41482", "source" : "3445", "target" : "1885", "shared_name" : "5091 (interacts with) 8604", "name" : "5091 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 41482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41478", "source" : "3445", "target" : "4577", "shared_name" : "5091 (interacts with) 7167", "name" : "5091 (interacts with) 7167", "interaction" : "interacts with", "SUID" : 41478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41474", "source" : "3445", "target" : "957", "shared_name" : "5091 (interacts with) 5230", "name" : "5091 (interacts with) 5230", "interaction" : "interacts with", "SUID" : 41474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41470", "source" : "3445", "target" : "1021", "shared_name" : "5091 (interacts with) 5096", "name" : "5091 (interacts with) 5096", "interaction" : "interacts with", "SUID" : 41470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41466", "source" : "3445", "target" : "2881", "shared_name" : "5091 (interacts with) 5160", "name" : "5091 (interacts with) 5160", "interaction" : "interacts with", "SUID" : 41466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41462", "source" : "3445", "target" : "2277", "shared_name" : "5091 (interacts with) 686", "name" : "5091 (interacts with) 686", "interaction" : "interacts with", "SUID" : 41462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41458", "source" : "3445", "target" : "1301", "shared_name" : "5091 (interacts with) 5095", "name" : "5091 (interacts with) 5095", "interaction" : "interacts with", "SUID" : 41458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41454", "source" : "3445", "target" : "1013", "shared_name" : "5091 (interacts with) 6898", "name" : "5091 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 41454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41450", "source" : "3445", "target" : "361", "shared_name" : "5091 (interacts with) 6576", "name" : "5091 (interacts with) 6576", "interaction" : "interacts with", "SUID" : 41450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41510", "source" : "3441", "target" : "4889", "shared_name" : "4210 (interacts with) 7295", "name" : "4210 (interacts with) 7295", "interaction" : "interacts with", "SUID" : 41510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41526", "source" : "3437", "target" : "2961", "shared_name" : "4312 (interacts with) 4314", "name" : "4312 (interacts with) 4314", "interaction" : "interacts with", "SUID" : 41526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41522", "source" : "3437", "target" : "4161", "shared_name" : "4312 (interacts with) 4318", "name" : "4312 (interacts with) 4318", "interaction" : "interacts with", "SUID" : 41522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41518", "source" : "3437", "target" : "4885", "shared_name" : "4312 (interacts with) 5340", "name" : "4312 (interacts with) 5340", "interaction" : "interacts with", "SUID" : 41518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41514", "source" : "3437", "target" : "4981", "shared_name" : "4312 (interacts with) 6774", "name" : "4312 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 41514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41606", "source" : "3433", "target" : "4821", "shared_name" : "26503 (interacts with) 28982", "name" : "26503 (interacts with) 28982", "interaction" : "interacts with", "SUID" : 41606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41602", "source" : "3433", "target" : "5221", "shared_name" : "26503 (interacts with) 285362", "name" : "26503 (interacts with) 285362", "interaction" : "interacts with", "SUID" : 41602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41598", "source" : "3433", "target" : "3733", "shared_name" : "26503 (interacts with) 2760", "name" : "26503 (interacts with) 2760", "interaction" : "interacts with", "SUID" : 41598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41594", "source" : "3433", "target" : "1433", "shared_name" : "26503 (interacts with) 6515", "name" : "26503 (interacts with) 6515", "interaction" : "interacts with", "SUID" : 41594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41590", "source" : "3433", "target" : "3481", "shared_name" : "26503 (interacts with) 6513", "name" : "26503 (interacts with) 6513", "interaction" : "interacts with", "SUID" : 41590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41586", "source" : "3433", "target" : "1261", "shared_name" : "26503 (interacts with) 57192", "name" : "26503 (interacts with) 57192", "interaction" : "interacts with", "SUID" : 41586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41582", "source" : "3433", "target" : "1193", "shared_name" : "26503 (interacts with) 5660", "name" : "26503 (interacts with) 5660", "interaction" : "interacts with", "SUID" : 41582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41578", "source" : "3433", "target" : "2225", "shared_name" : "26503 (interacts with) 4864", "name" : "26503 (interacts with) 4864", "interaction" : "interacts with", "SUID" : 41578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41574", "source" : "3433", "target" : "1677", "shared_name" : "26503 (interacts with) 8905", "name" : "26503 (interacts with) 8905", "interaction" : "interacts with", "SUID" : 41574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41570", "source" : "3433", "target" : "5937", "shared_name" : "26503 (interacts with) 8120", "name" : "26503 (interacts with) 8120", "interaction" : "interacts with", "SUID" : 41570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41566", "source" : "3433", "target" : "2233", "shared_name" : "26503 (interacts with) 9516", "name" : "26503 (interacts with) 9516", "interaction" : "interacts with", "SUID" : 41566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41562", "source" : "3433", "target" : "4393", "shared_name" : "26503 (interacts with) 950", "name" : "26503 (interacts with) 950", "interaction" : "interacts with", "SUID" : 41562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41558", "source" : "3433", "target" : "1445", "shared_name" : "26503 (interacts with) 9179", "name" : "26503 (interacts with) 9179", "interaction" : "interacts with", "SUID" : 41558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41554", "source" : "3433", "target" : "3693", "shared_name" : "26503 (interacts with) 8943", "name" : "26503 (interacts with) 8943", "interaction" : "interacts with", "SUID" : 41554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41550", "source" : "3433", "target" : "1157", "shared_name" : "26503 (interacts with) 6580", "name" : "26503 (interacts with) 6580", "interaction" : "interacts with", "SUID" : 41550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41546", "source" : "3433", "target" : "3777", "shared_name" : "26503 (interacts with) 6571", "name" : "26503 (interacts with) 6571", "interaction" : "interacts with", "SUID" : 41546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41542", "source" : "3433", "target" : "405", "shared_name" : "26503 (interacts with) 54187", "name" : "26503 (interacts with) 54187", "interaction" : "interacts with", "SUID" : 41542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41538", "source" : "3433", "target" : "2721", "shared_name" : "26503 (interacts with) 79751", "name" : "26503 (interacts with) 79751", "interaction" : "interacts with", "SUID" : 41538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41534", "source" : "3433", "target" : "3473", "shared_name" : "26503 (interacts with) 6528", "name" : "26503 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 41534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41530", "source" : "3433", "target" : "273", "shared_name" : "26503 (interacts with) 8869", "name" : "26503 (interacts with) 8869", "interaction" : "interacts with", "SUID" : 41530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41690", "source" : "3429", "target" : "2193", "shared_name" : "3674 (interacts with) 4052", "name" : "3674 (interacts with) 4052", "interaction" : "interacts with", "SUID" : 41690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41686", "source" : "3429", "target" : "1297", "shared_name" : "3674 (interacts with) 6678", "name" : "3674 (interacts with) 6678", "interaction" : "interacts with", "SUID" : 41686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41682", "source" : "3429", "target" : "2501", "shared_name" : "3674 (interacts with) 7448", "name" : "3674 (interacts with) 7448", "interaction" : "interacts with", "SUID" : 41682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41678", "source" : "3429", "target" : "4361", "shared_name" : "3674 (interacts with) 22906", "name" : "3674 (interacts with) 22906", "interaction" : "interacts with", "SUID" : 41678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41674", "source" : "3429", "target" : "637", "shared_name" : "3674 (interacts with) 6654", "name" : "3674 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 41674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41670", "source" : "3429", "target" : "825", "shared_name" : "3674 (interacts with) 25942", "name" : "3674 (interacts with) 25942", "interaction" : "interacts with", "SUID" : 41670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41666", "source" : "3429", "target" : "4521", "shared_name" : "3674 (interacts with) 5894", "name" : "3674 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 41666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41662", "source" : "3429", "target" : "5729", "shared_name" : "3674 (interacts with) 861", "name" : "3674 (interacts with) 861", "interaction" : "interacts with", "SUID" : 41662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41658", "source" : "3429", "target" : "3841", "shared_name" : "3674 (interacts with) 9444", "name" : "3674 (interacts with) 9444", "interaction" : "interacts with", "SUID" : 41658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41654", "source" : "3429", "target" : "5081", "shared_name" : "3674 (interacts with) 5594", "name" : "3674 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 41654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41650", "source" : "3429", "target" : "3577", "shared_name" : "3674 (interacts with) 5605", "name" : "3674 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 41650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41646", "source" : "3429", "target" : "5361", "shared_name" : "3674 (interacts with) 5604", "name" : "3674 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 41646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41642", "source" : "3429", "target" : "3361", "shared_name" : "3674 (interacts with) 4000", "name" : "3674 (interacts with) 4000", "interaction" : "interacts with", "SUID" : 41642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41638", "source" : "3429", "target" : "3569", "shared_name" : "3674 (interacts with) 4893", "name" : "3674 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 41638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41634", "source" : "3429", "target" : "973", "shared_name" : "3674 (interacts with) 5595", "name" : "3674 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 41634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41630", "source" : "3429", "target" : "3769", "shared_name" : "3674 (interacts with) 8085", "name" : "3674 (interacts with) 8085", "interaction" : "interacts with", "SUID" : 41630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41626", "source" : "3429", "target" : "3709", "shared_name" : "3674 (interacts with) 9757", "name" : "3674 (interacts with) 9757", "interaction" : "interacts with", "SUID" : 41626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41622", "source" : "3429", "target" : "3253", "shared_name" : "3674 (interacts with) 4297", "name" : "3674 (interacts with) 4297", "interaction" : "interacts with", "SUID" : 41622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41618", "source" : "3429", "target" : "3961", "shared_name" : "3674 (interacts with) 3897", "name" : "3674 (interacts with) 3897", "interaction" : "interacts with", "SUID" : 41618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41614", "source" : "3429", "target" : "3573", "shared_name" : "3674 (interacts with) 3845", "name" : "3674 (interacts with) 3845", "interaction" : "interacts with", "SUID" : 41614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41610", "source" : "3429", "target" : "1393", "shared_name" : "3674 (interacts with) 55904", "name" : "3674 (interacts with) 55904", "interaction" : "interacts with", "SUID" : 41610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41698", "source" : "3425", "target" : "1721", "shared_name" : "8803 (interacts with) 51807", "name" : "8803 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 41698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41694", "source" : "3425", "target" : "5305", "shared_name" : "8803 (interacts with) 6901", "name" : "8803 (interacts with) 6901", "interaction" : "interacts with", "SUID" : 41694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41870", "source" : "3421", "target" : "1129", "shared_name" : "4967 (interacts with) 57505", "name" : "4967 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 41870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41866", "source" : "3421", "target" : "1605", "shared_name" : "4967 (interacts with) 6648", "name" : "4967 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 41866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41862", "source" : "3421", "target" : "4837", "shared_name" : "4967 (interacts with) 8891", "name" : "4967 (interacts with) 8891", "interaction" : "interacts with", "SUID" : 41862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41858", "source" : "3421", "target" : "4001", "shared_name" : "4967 (interacts with) 79709", "name" : "4967 (interacts with) 79709", "interaction" : "interacts with", "SUID" : 41858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41854", "source" : "3421", "target" : "1729", "shared_name" : "4967 (interacts with) 5111", "name" : "4967 (interacts with) 5111", "interaction" : "interacts with", "SUID" : 41854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41850", "source" : "3421", "target" : "2281", "shared_name" : "4967 (interacts with) 79823", "name" : "4967 (interacts with) 79823", "interaction" : "interacts with", "SUID" : 41850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41846", "source" : "3421", "target" : "3769", "shared_name" : "4967 (interacts with) 8085", "name" : "4967 (interacts with) 8085", "interaction" : "interacts with", "SUID" : 41846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41842", "source" : "3421", "target" : "3709", "shared_name" : "4967 (interacts with) 9757", "name" : "4967 (interacts with) 9757", "interaction" : "interacts with", "SUID" : 41842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41838", "source" : "3421", "target" : "1393", "shared_name" : "4967 (interacts with) 55904", "name" : "4967 (interacts with) 55904", "interaction" : "interacts with", "SUID" : 41838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41834", "source" : "3421", "target" : "2593", "shared_name" : "4967 (interacts with) 64324", "name" : "4967 (interacts with) 64324", "interaction" : "interacts with", "SUID" : 41834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41830", "source" : "3421", "target" : "3537", "shared_name" : "4967 (interacts with) 501", "name" : "4967 (interacts with) 501", "interaction" : "interacts with", "SUID" : 41830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41826", "source" : "3421", "target" : "1289", "shared_name" : "4967 (interacts with) 6392", "name" : "4967 (interacts with) 6392", "interaction" : "interacts with", "SUID" : 41826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41822", "source" : "3421", "target" : "2881", "shared_name" : "4967 (interacts with) 5160", "name" : "4967 (interacts with) 5160", "interaction" : "interacts with", "SUID" : 41822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41818", "source" : "3421", "target" : "3445", "shared_name" : "4967 (interacts with) 5091", "name" : "4967 (interacts with) 5091", "interaction" : "interacts with", "SUID" : 41818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41814", "source" : "3421", "target" : "625", "shared_name" : "4967 (interacts with) 8942", "name" : "4967 (interacts with) 8942", "interaction" : "interacts with", "SUID" : 41814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41810", "source" : "3421", "target" : "4141", "shared_name" : "4967 (interacts with) 617", "name" : "4967 (interacts with) 617", "interaction" : "interacts with", "SUID" : 41810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41806", "source" : "3421", "target" : "2925", "shared_name" : "4967 (interacts with) 8802", "name" : "4967 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 41806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41802", "source" : "3421", "target" : "4401", "shared_name" : "4967 (interacts with) 55526", "name" : "4967 (interacts with) 55526", "interaction" : "interacts with", "SUID" : 41802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41798", "source" : "3421", "target" : "1073", "shared_name" : "4967 (interacts with) 27010", "name" : "4967 (interacts with) 27010", "interaction" : "interacts with", "SUID" : 41798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41794", "source" : "3421", "target" : "5305", "shared_name" : "4967 (interacts with) 6901", "name" : "4967 (interacts with) 6901", "interaction" : "interacts with", "SUID" : 41794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41790", "source" : "3421", "target" : "1013", "shared_name" : "4967 (interacts with) 6898", "name" : "4967 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 41790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41786", "source" : "3421", "target" : "409", "shared_name" : "4967 (interacts with) 10558", "name" : "4967 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 41786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41782", "source" : "3421", "target" : "1669", "shared_name" : "4967 (interacts with) 6390", "name" : "4967 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 41782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41778", "source" : "3421", "target" : "397", "shared_name" : "4967 (interacts with) 50", "name" : "4967 (interacts with) 50", "interaction" : "interacts with", "SUID" : 41778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41774", "source" : "3421", "target" : "1485", "shared_name" : "4967 (interacts with) 8050", "name" : "4967 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 41774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41770", "source" : "3421", "target" : "3425", "shared_name" : "4967 (interacts with) 8803", "name" : "4967 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 41770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41766", "source" : "3421", "target" : "5025", "shared_name" : "4967 (interacts with) 6389", "name" : "4967 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 41766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41762", "source" : "3421", "target" : "3177", "shared_name" : "4967 (interacts with) 5321", "name" : "4967 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 41762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41758", "source" : "3421", "target" : "681", "shared_name" : "4967 (interacts with) 6646", "name" : "4967 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 41758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41754", "source" : "3421", "target" : "4941", "shared_name" : "4967 (interacts with) 6342", "name" : "4967 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 41754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41750", "source" : "3421", "target" : "4185", "shared_name" : "4967 (interacts with) 29968", "name" : "4967 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 41750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41746", "source" : "3421", "target" : "3461", "shared_name" : "4967 (interacts with) 5538", "name" : "4967 (interacts with) 5538", "interaction" : "interacts with", "SUID" : 41746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41742", "source" : "3421", "target" : "3893", "shared_name" : "4967 (interacts with) 151056", "name" : "4967 (interacts with) 151056", "interaction" : "interacts with", "SUID" : 41742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41738", "source" : "3421", "target" : "2853", "shared_name" : "4967 (interacts with) 8398", "name" : "4967 (interacts with) 8398", "interaction" : "interacts with", "SUID" : 41738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41734", "source" : "3421", "target" : "385", "shared_name" : "4967 (interacts with) 5319", "name" : "4967 (interacts with) 5319", "interaction" : "interacts with", "SUID" : 41734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41730", "source" : "3421", "target" : "1385", "shared_name" : "4967 (interacts with) 6520", "name" : "4967 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 41730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41726", "source" : "3421", "target" : "389", "shared_name" : "4967 (interacts with) 7299", "name" : "4967 (interacts with) 7299", "interaction" : "interacts with", "SUID" : 41726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41722", "source" : "3421", "target" : "1721", "shared_name" : "4967 (interacts with) 51807", "name" : "4967 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 41722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41718", "source" : "3421", "target" : "5049", "shared_name" : "4967 (interacts with) 6697", "name" : "4967 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 41718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41714", "source" : "3421", "target" : "3929", "shared_name" : "4967 (interacts with) 5860", "name" : "4967 (interacts with) 5860", "interaction" : "interacts with", "SUID" : 41714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41710", "source" : "3421", "target" : "1437", "shared_name" : "4967 (interacts with) 80025", "name" : "4967 (interacts with) 80025", "interaction" : "interacts with", "SUID" : 41710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41706", "source" : "3421", "target" : "3185", "shared_name" : "4967 (interacts with) 5053", "name" : "4967 (interacts with) 5053", "interaction" : "interacts with", "SUID" : 41706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41702", "source" : "3421", "target" : "4169", "shared_name" : "4967 (interacts with) 10993", "name" : "4967 (interacts with) 10993", "interaction" : "interacts with", "SUID" : 41702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41938", "source" : "3417", "target" : "4769", "shared_name" : "5371 (interacts with) 7132", "name" : "5371 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 41938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41934", "source" : "3417", "target" : "981", "shared_name" : "5371 (interacts with) 7157", "name" : "5371 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 41934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41930", "source" : "3417", "target" : "2069", "shared_name" : "5371 (interacts with) 84106", "name" : "5371 (interacts with) 84106", "interaction" : "interacts with", "SUID" : 41930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41926", "source" : "3417", "target" : "5781", "shared_name" : "5371 (interacts with) 6672", "name" : "5371 (interacts with) 6672", "interaction" : "interacts with", "SUID" : 41926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41922", "source" : "3417", "target" : "877", "shared_name" : "5371 (interacts with) 7341", "name" : "5371 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 41922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41918", "source" : "3417", "target" : "5941", "shared_name" : "5371 (interacts with) 5914", "name" : "5371 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 41918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41914", "source" : "3417", "target" : "1605", "shared_name" : "5371 (interacts with) 6648", "name" : "5371 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 41914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41910", "source" : "3417", "target" : "6169", "shared_name" : "5371 (interacts with) 4088", "name" : "5371 (interacts with) 4088", "interaction" : "interacts with", "SUID" : 41910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41906", "source" : "3417", "target" : "4065", "shared_name" : "5371 (interacts with) 7124", "name" : "5371 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 41906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41902", "source" : "3417", "target" : "3197", "shared_name" : "5371 (interacts with) 64135", "name" : "5371 (interacts with) 64135", "interaction" : "interacts with", "SUID" : 41902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41898", "source" : "3417", "target" : "4549", "shared_name" : "5371 (interacts with) 5903", "name" : "5371 (interacts with) 5903", "interaction" : "interacts with", "SUID" : 41898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41894", "source" : "3417", "target" : "5729", "shared_name" : "5371 (interacts with) 861", "name" : "5371 (interacts with) 861", "interaction" : "interacts with", "SUID" : 41894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41890", "source" : "3417", "target" : "817", "shared_name" : "5371 (interacts with) 5728", "name" : "5371 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 41890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41886", "source" : "3417", "target" : "2293", "shared_name" : "5371 (interacts with) 56270", "name" : "5371 (interacts with) 56270", "interaction" : "interacts with", "SUID" : 41886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41882", "source" : "3417", "target" : "4017", "shared_name" : "5371 (interacts with) 4719", "name" : "5371 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 41882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41878", "source" : "3417", "target" : "2741", "shared_name" : "5371 (interacts with) 4695", "name" : "5371 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 41878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41874", "source" : "3417", "target" : "545", "shared_name" : "5371 (interacts with) 51014", "name" : "5371 (interacts with) 51014", "interaction" : "interacts with", "SUID" : 41874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41990", "source" : "3413", "target" : "5689", "shared_name" : "1337 (interacts with) 27089", "name" : "1337 (interacts with) 27089", "interaction" : "interacts with", "SUID" : 41990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41986", "source" : "3413", "target" : "2801", "shared_name" : "1337 (interacts with) 4700", "name" : "1337 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 41986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41982", "source" : "3413", "target" : "5601", "shared_name" : "1337 (interacts with) 84833", "name" : "1337 (interacts with) 84833", "interaction" : "interacts with", "SUID" : 41982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41978", "source" : "3413", "target" : "5553", "shared_name" : "1337 (interacts with) 55967", "name" : "1337 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 41978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41974", "source" : "3413", "target" : "297", "shared_name" : "1337 (interacts with) 1339", "name" : "1337 (interacts with) 1339", "interaction" : "interacts with", "SUID" : 41974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41970", "source" : "3413", "target" : "5385", "shared_name" : "1337 (interacts with) 1349", "name" : "1337 (interacts with) 1349", "interaction" : "interacts with", "SUID" : 41970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41966", "source" : "3413", "target" : "5857", "shared_name" : "1337 (interacts with) 4694", "name" : "1337 (interacts with) 4694", "interaction" : "interacts with", "SUID" : 41966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41962", "source" : "3413", "target" : "5685", "shared_name" : "1337 (interacts with) 1340", "name" : "1337 (interacts with) 1340", "interaction" : "interacts with", "SUID" : 41962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41958", "source" : "3413", "target" : "2785", "shared_name" : "1337 (interacts with) 1351", "name" : "1337 (interacts with) 1351", "interaction" : "interacts with", "SUID" : 41958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41954", "source" : "3413", "target" : "1605", "shared_name" : "1337 (interacts with) 6648", "name" : "1337 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 41954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41950", "source" : "3413", "target" : "2573", "shared_name" : "1337 (interacts with) 4514", "name" : "1337 (interacts with) 4514", "interaction" : "interacts with", "SUID" : 41950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41946", "source" : "3413", "target" : "5589", "shared_name" : "1337 (interacts with) 4513", "name" : "1337 (interacts with) 4513", "interaction" : "interacts with", "SUID" : 41946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41942", "source" : "3413", "target" : "5585", "shared_name" : "1337 (interacts with) 4512", "name" : "1337 (interacts with) 4512", "interaction" : "interacts with", "SUID" : 41942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42010", "source" : "3409", "target" : "4065", "shared_name" : "7043 (interacts with) 7124", "name" : "7043 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 42010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42006", "source" : "3409", "target" : "981", "shared_name" : "7043 (interacts with) 7157", "name" : "7043 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 42006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42002", "source" : "3409", "target" : "1405", "shared_name" : "7043 (interacts with) 998", "name" : "7043 (interacts with) 998", "interaction" : "interacts with", "SUID" : 42002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41998", "source" : "3409", "target" : "569", "shared_name" : "7043 (interacts with) 7048", "name" : "7043 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 41998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "41994", "source" : "3409", "target" : "5745", "shared_name" : "7043 (interacts with) 7471", "name" : "7043 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 41994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42138", "source" : "3405", "target" : "1869", "shared_name" : "4535 (interacts with) 4729", "name" : "4535 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 42138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42134", "source" : "3405", "target" : "2797", "shared_name" : "4535 (interacts with) 4728", "name" : "4535 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 42134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42130", "source" : "3405", "target" : "1573", "shared_name" : "4535 (interacts with) 4723", "name" : "4535 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 42130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42126", "source" : "3405", "target" : "2285", "shared_name" : "4535 (interacts with) 51300", "name" : "4535 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 42126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42122", "source" : "3405", "target" : "1337", "shared_name" : "4535 (interacts with) 55863", "name" : "4535 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 42122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42118", "source" : "3405", "target" : "2753", "shared_name" : "4535 (interacts with) 4720", "name" : "4535 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 42118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42114", "source" : "3405", "target" : "4945", "shared_name" : "4535 (interacts with) 4722", "name" : "4535 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 42114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42110", "source" : "3405", "target" : "4017", "shared_name" : "4535 (interacts with) 4719", "name" : "4535 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 42110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42106", "source" : "3405", "target" : "5833", "shared_name" : "4535 (interacts with) 4726", "name" : "4535 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 42106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42102", "source" : "3405", "target" : "4069", "shared_name" : "4535 (interacts with) 374291", "name" : "4535 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 42102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42098", "source" : "3405", "target" : "5821", "shared_name" : "4535 (interacts with) 4724", "name" : "4535 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 42098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42094", "source" : "3405", "target" : "5853", "shared_name" : "4535 (interacts with) 4709", "name" : "4535 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 42094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42090", "source" : "3405", "target" : "2689", "shared_name" : "4535 (interacts with) 4715", "name" : "4535 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 42090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42086", "source" : "3405", "target" : "5845", "shared_name" : "4535 (interacts with) 4714", "name" : "4535 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 42086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42082", "source" : "3405", "target" : "793", "shared_name" : "4535 (interacts with) 137682", "name" : "4535 (interacts with) 137682", "interaction" : "interacts with", "SUID" : 42082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42078", "source" : "3405", "target" : "5505", "shared_name" : "4535 (interacts with) 29078", "name" : "4535 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 42078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42074", "source" : "3405", "target" : "2009", "shared_name" : "4535 (interacts with) 79133", "name" : "4535 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 42074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42070", "source" : "3405", "target" : "3617", "shared_name" : "4535 (interacts with) 4704", "name" : "4535 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 42070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42066", "source" : "3405", "target" : "2801", "shared_name" : "4535 (interacts with) 4700", "name" : "4535 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 42066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42062", "source" : "3405", "target" : "1661", "shared_name" : "4535 (interacts with) 91942", "name" : "4535 (interacts with) 91942", "interaction" : "interacts with", "SUID" : 42062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42058", "source" : "3405", "target" : "3761", "shared_name" : "4535 (interacts with) 25915", "name" : "4535 (interacts with) 25915", "interaction" : "interacts with", "SUID" : 42058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42054", "source" : "3405", "target" : "2109", "shared_name" : "4535 (interacts with) 51103", "name" : "4535 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 42054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42050", "source" : "3405", "target" : "5553", "shared_name" : "4535 (interacts with) 55967", "name" : "4535 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 42050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42046", "source" : "3405", "target" : "2757", "shared_name" : "4535 (interacts with) 51079", "name" : "4535 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 42046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42042", "source" : "3405", "target" : "4061", "shared_name" : "4535 (interacts with) 4705", "name" : "4535 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 42042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42038", "source" : "3405", "target" : "2825", "shared_name" : "4535 (interacts with) 126328", "name" : "4535 (interacts with) 126328", "interaction" : "interacts with", "SUID" : 42038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42034", "source" : "3405", "target" : "5857", "shared_name" : "4535 (interacts with) 4694", "name" : "4535 (interacts with) 4694", "interaction" : "interacts with", "SUID" : 42034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42030", "source" : "3405", "target" : "2741", "shared_name" : "4535 (interacts with) 4695", "name" : "4535 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 42030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42026", "source" : "3405", "target" : "2789", "shared_name" : "4535 (interacts with) 4536", "name" : "4535 (interacts with) 4536", "interaction" : "interacts with", "SUID" : 42026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42022", "source" : "3405", "target" : "5885", "shared_name" : "4535 (interacts with) 4540", "name" : "4535 (interacts with) 4540", "interaction" : "interacts with", "SUID" : 42022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42018", "source" : "3405", "target" : "4265", "shared_name" : "4535 (interacts with) 4541", "name" : "4535 (interacts with) 4541", "interaction" : "interacts with", "SUID" : 42018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42014", "source" : "3405", "target" : "5829", "shared_name" : "4535 (interacts with) 4538", "name" : "4535 (interacts with) 4538", "interaction" : "interacts with", "SUID" : 42014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42166", "source" : "3401", "target" : "4949", "shared_name" : "3659 (interacts with) 5970", "name" : "3659 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 42166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42162", "source" : "3401", "target" : "3017", "shared_name" : "3659 (interacts with) 4790", "name" : "3659 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 42162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42158", "source" : "3401", "target" : "509", "shared_name" : "3659 (interacts with) 3661", "name" : "3659 (interacts with) 3661", "interaction" : "interacts with", "SUID" : 42158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42154", "source" : "3401", "target" : "3817", "shared_name" : "3659 (interacts with) 3663", "name" : "3659 (interacts with) 3663", "interaction" : "interacts with", "SUID" : 42154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42150", "source" : "3401", "target" : "1785", "shared_name" : "3659 (interacts with) 667", "name" : "3659 (interacts with) 667", "interaction" : "interacts with", "SUID" : 42150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42146", "source" : "3401", "target" : "3453", "shared_name" : "3659 (interacts with) 3394", "name" : "3659 (interacts with) 3394", "interaction" : "interacts with", "SUID" : 42146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42142", "source" : "3401", "target" : "805", "shared_name" : "3659 (interacts with) 6772", "name" : "3659 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 42142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42270", "source" : "3393", "target" : "5073", "shared_name" : "9402 (interacts with) 7305", "name" : "9402 (interacts with) 7305", "interaction" : "interacts with", "SUID" : 42270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42266", "source" : "3393", "target" : "725", "shared_name" : "9402 (interacts with) 54209", "name" : "9402 (interacts with) 54209", "interaction" : "interacts with", "SUID" : 42266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42262", "source" : "3393", "target" : "2969", "shared_name" : "9402 (interacts with) 8867", "name" : "9402 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 42262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42258", "source" : "3393", "target" : "637", "shared_name" : "9402 (interacts with) 6654", "name" : "9402 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 42258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42254", "source" : "3393", "target" : "1069", "shared_name" : "9402 (interacts with) 5879", "name" : "9402 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 42254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42250", "source" : "3393", "target" : "817", "shared_name" : "9402 (interacts with) 5728", "name" : "9402 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 42250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42246", "source" : "3393", "target" : "3465", "shared_name" : "9402 (interacts with) 5296", "name" : "9402 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 42246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42242", "source" : "3393", "target" : "4213", "shared_name" : "9402 (interacts with) 5295", "name" : "9402 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 42242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42238", "source" : "3393", "target" : "2173", "shared_name" : "9402 (interacts with) 5159", "name" : "9402 (interacts with) 5159", "interaction" : "interacts with", "SUID" : 42238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42234", "source" : "3393", "target" : "5225", "shared_name" : "9402 (interacts with) 5290", "name" : "9402 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 42234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42230", "source" : "3393", "target" : "5973", "shared_name" : "9402 (interacts with) 5155", "name" : "9402 (interacts with) 5155", "interaction" : "interacts with", "SUID" : 42230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42226", "source" : "3393", "target" : "4293", "shared_name" : "9402 (interacts with) 5156", "name" : "9402 (interacts with) 5156", "interaction" : "interacts with", "SUID" : 42226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42222", "source" : "3393", "target" : "4209", "shared_name" : "9402 (interacts with) 4915", "name" : "9402 (interacts with) 4915", "interaction" : "interacts with", "SUID" : 42222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42218", "source" : "3393", "target" : "2429", "shared_name" : "9402 (interacts with) 4952", "name" : "9402 (interacts with) 4952", "interaction" : "interacts with", "SUID" : 42218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42214", "source" : "3393", "target" : "5149", "shared_name" : "9402 (interacts with) 5058", "name" : "9402 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 42214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42210", "source" : "3393", "target" : "2773", "shared_name" : "9402 (interacts with) 4908", "name" : "9402 (interacts with) 4908", "interaction" : "interacts with", "SUID" : 42210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42206", "source" : "3393", "target" : "4385", "shared_name" : "9402 (interacts with) 3084", "name" : "9402 (interacts with) 3084", "interaction" : "interacts with", "SUID" : 42206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42202", "source" : "3393", "target" : "3457", "shared_name" : "9402 (interacts with) 22914", "name" : "9402 (interacts with) 22914", "interaction" : "interacts with", "SUID" : 42202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42198", "source" : "3393", "target" : "1861", "shared_name" : "9402 (interacts with) 3708", "name" : "9402 (interacts with) 3708", "interaction" : "interacts with", "SUID" : 42198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42194", "source" : "3393", "target" : "2641", "shared_name" : "9402 (interacts with) 3123", "name" : "9402 (interacts with) 3123", "interaction" : "interacts with", "SUID" : 42194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42190", "source" : "3393", "target" : "4165", "shared_name" : "9402 (interacts with) 3119", "name" : "9402 (interacts with) 3119", "interaction" : "interacts with", "SUID" : 42190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42186", "source" : "3393", "target" : "4457", "shared_name" : "9402 (interacts with) 3082", "name" : "9402 (interacts with) 3082", "interaction" : "interacts with", "SUID" : 42186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42182", "source" : "3393", "target" : "5065", "shared_name" : "9402 (interacts with) 3117", "name" : "9402 (interacts with) 3117", "interaction" : "interacts with", "SUID" : 42182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42178", "source" : "3393", "target" : "5021", "shared_name" : "9402 (interacts with) 10617", "name" : "9402 (interacts with) 10617", "interaction" : "interacts with", "SUID" : 42178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42174", "source" : "3393", "target" : "969", "shared_name" : "9402 (interacts with) 2670", "name" : "9402 (interacts with) 2670", "interaction" : "interacts with", "SUID" : 42174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42170", "source" : "3393", "target" : "5713", "shared_name" : "9402 (interacts with) 7531", "name" : "9402 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 42170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42290", "source" : "3389", "target" : "4153", "shared_name" : "2562 (interacts with) 2566", "name" : "2562 (interacts with) 2566", "interaction" : "interacts with", "SUID" : 42290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42286", "source" : "3389", "target" : "3781", "shared_name" : "2562 (interacts with) 9152", "name" : "2562 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 42286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42282", "source" : "3389", "target" : "401", "shared_name" : "2562 (interacts with) 6532", "name" : "2562 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 42282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42278", "source" : "3389", "target" : "309", "shared_name" : "2562 (interacts with) 6536", "name" : "2562 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 42278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42274", "source" : "3389", "target" : "5373", "shared_name" : "2562 (interacts with) 28962", "name" : "2562 (interacts with) 28962", "interaction" : "interacts with", "SUID" : 42274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42378", "source" : "3381", "target" : "3861", "shared_name" : "2214 (interacts with) 23646", "name" : "2214 (interacts with) 23646", "interaction" : "interacts with", "SUID" : 42378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42374", "source" : "3381", "target" : "725", "shared_name" : "2214 (interacts with) 54209", "name" : "2214 (interacts with) 54209", "interaction" : "interacts with", "SUID" : 42374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42370", "source" : "3381", "target" : "5073", "shared_name" : "2214 (interacts with) 7305", "name" : "2214 (interacts with) 7305", "interaction" : "interacts with", "SUID" : 42370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42366", "source" : "3381", "target" : "637", "shared_name" : "2214 (interacts with) 6654", "name" : "2214 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 42366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42362", "source" : "3381", "target" : "817", "shared_name" : "2214 (interacts with) 5728", "name" : "2214 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 42362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42358", "source" : "3381", "target" : "1069", "shared_name" : "2214 (interacts with) 5879", "name" : "2214 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 42358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42354", "source" : "3381", "target" : "3465", "shared_name" : "2214 (interacts with) 5296", "name" : "2214 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 42354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42350", "source" : "3381", "target" : "4213", "shared_name" : "2214 (interacts with) 5295", "name" : "2214 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 42350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42346", "source" : "3381", "target" : "4293", "shared_name" : "2214 (interacts with) 5156", "name" : "2214 (interacts with) 5156", "interaction" : "interacts with", "SUID" : 42346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42342", "source" : "3381", "target" : "5973", "shared_name" : "2214 (interacts with) 5155", "name" : "2214 (interacts with) 5155", "interaction" : "interacts with", "SUID" : 42342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42338", "source" : "3381", "target" : "2173", "shared_name" : "2214 (interacts with) 5159", "name" : "2214 (interacts with) 5159", "interaction" : "interacts with", "SUID" : 42338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42334", "source" : "3381", "target" : "5225", "shared_name" : "2214 (interacts with) 5290", "name" : "2214 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 42334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42330", "source" : "3381", "target" : "2773", "shared_name" : "2214 (interacts with) 4908", "name" : "2214 (interacts with) 4908", "interaction" : "interacts with", "SUID" : 42330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42326", "source" : "3381", "target" : "4209", "shared_name" : "2214 (interacts with) 4915", "name" : "2214 (interacts with) 4915", "interaction" : "interacts with", "SUID" : 42326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42322", "source" : "3381", "target" : "4385", "shared_name" : "2214 (interacts with) 3084", "name" : "2214 (interacts with) 3084", "interaction" : "interacts with", "SUID" : 42322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42318", "source" : "3381", "target" : "3457", "shared_name" : "2214 (interacts with) 22914", "name" : "2214 (interacts with) 22914", "interaction" : "interacts with", "SUID" : 42318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42314", "source" : "3381", "target" : "1209", "shared_name" : "2214 (interacts with) 51763", "name" : "2214 (interacts with) 51763", "interaction" : "interacts with", "SUID" : 42314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42310", "source" : "3381", "target" : "4457", "shared_name" : "2214 (interacts with) 3082", "name" : "2214 (interacts with) 3082", "interaction" : "interacts with", "SUID" : 42310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42306", "source" : "3381", "target" : "3393", "shared_name" : "2214 (interacts with) 9402", "name" : "2214 (interacts with) 9402", "interaction" : "interacts with", "SUID" : 42306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42302", "source" : "3381", "target" : "5569", "shared_name" : "2214 (interacts with) 59345", "name" : "2214 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 42302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42298", "source" : "3381", "target" : "6129", "shared_name" : "2214 (interacts with) 2263", "name" : "2214 (interacts with) 2263", "interaction" : "interacts with", "SUID" : 42298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42294", "source" : "3381", "target" : "6121", "shared_name" : "2214 (interacts with) 2260", "name" : "2214 (interacts with) 2260", "interaction" : "interacts with", "SUID" : 42294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42406", "source" : "3373", "target" : "3489", "shared_name" : "2530 (interacts with) 54344", "name" : "2530 (interacts with) 54344", "interaction" : "interacts with", "SUID" : 42406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42402", "source" : "3373", "target" : "289", "shared_name" : "2530 (interacts with) 56052", "name" : "2530 (interacts with) 56052", "interaction" : "interacts with", "SUID" : 42402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42398", "source" : "3373", "target" : "5005", "shared_name" : "2530 (interacts with) 79868", "name" : "2530 (interacts with) 79868", "interaction" : "interacts with", "SUID" : 42398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42394", "source" : "3373", "target" : "6017", "shared_name" : "2530 (interacts with) 79796", "name" : "2530 (interacts with) 79796", "interaction" : "interacts with", "SUID" : 42394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42390", "source" : "3373", "target" : "1797", "shared_name" : "2530 (interacts with) 85365", "name" : "2530 (interacts with) 85365", "interaction" : "interacts with", "SUID" : 42390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42386", "source" : "3373", "target" : "3037", "shared_name" : "2530 (interacts with) 8813", "name" : "2530 (interacts with) 8813", "interaction" : "interacts with", "SUID" : 42386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42382", "source" : "3373", "target" : "5561", "shared_name" : "2530 (interacts with) 4247", "name" : "2530 (interacts with) 4247", "interaction" : "interacts with", "SUID" : 42382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42414", "source" : "3369", "target" : "4421", "shared_name" : "2005 (interacts with) 2551", "name" : "2005 (interacts with) 2551", "interaction" : "interacts with", "SUID" : 42414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42410", "source" : "3369", "target" : "417", "shared_name" : "2005 (interacts with) 6689", "name" : "2005 (interacts with) 6689", "interaction" : "interacts with", "SUID" : 42410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42426", "source" : "3365", "target" : "4413", "shared_name" : "29843 (interacts with) 6612", "name" : "29843 (interacts with) 6612", "interaction" : "interacts with", "SUID" : 42426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42422", "source" : "3365", "target" : "877", "shared_name" : "29843 (interacts with) 7341", "name" : "29843 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 42422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42418", "source" : "3365", "target" : "5849", "shared_name" : "29843 (interacts with) 6613", "name" : "29843 (interacts with) 6613", "interaction" : "interacts with", "SUID" : 42418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42554", "source" : "3361", "target" : "4065", "shared_name" : "4000 (interacts with) 7124", "name" : "4000 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 42554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42550", "source" : "3361", "target" : "3017", "shared_name" : "4000 (interacts with) 4790", "name" : "4000 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 42550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42546", "source" : "3361", "target" : "4949", "shared_name" : "4000 (interacts with) 5970", "name" : "4000 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 42546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42542", "source" : "3361", "target" : "5149", "shared_name" : "4000 (interacts with) 5058", "name" : "4000 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 42542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42538", "source" : "3361", "target" : "5965", "shared_name" : "4000 (interacts with) 596", "name" : "4000 (interacts with) 596", "interaction" : "interacts with", "SUID" : 42538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42534", "source" : "3361", "target" : "4769", "shared_name" : "4000 (interacts with) 7132", "name" : "4000 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 42534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42530", "source" : "3361", "target" : "829", "shared_name" : "4000 (interacts with) 8772", "name" : "4000 (interacts with) 8772", "interaction" : "interacts with", "SUID" : 42530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42526", "source" : "3361", "target" : "5333", "shared_name" : "4000 (interacts with) 5591", "name" : "4000 (interacts with) 5591", "interaction" : "interacts with", "SUID" : 42526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42522", "source" : "3361", "target" : "1845", "shared_name" : "4000 (interacts with) 836", "name" : "4000 (interacts with) 836", "interaction" : "interacts with", "SUID" : 42522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42518", "source" : "3361", "target" : "1973", "shared_name" : "4000 (interacts with) 6709", "name" : "4000 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 42518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42514", "source" : "3361", "target" : "4077", "shared_name" : "4000 (interacts with) 71", "name" : "4000 (interacts with) 71", "interaction" : "interacts with", "SUID" : 42514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42510", "source" : "3361", "target" : "2905", "shared_name" : "4000 (interacts with) 5664", "name" : "4000 (interacts with) 5664", "interaction" : "interacts with", "SUID" : 42510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42506", "source" : "3361", "target" : "3041", "shared_name" : "4000 (interacts with) 5663", "name" : "4000 (interacts with) 5663", "interaction" : "interacts with", "SUID" : 42506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42502", "source" : "3361", "target" : "593", "shared_name" : "4000 (interacts with) 8743", "name" : "4000 (interacts with) 8743", "interaction" : "interacts with", "SUID" : 42502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42498", "source" : "3361", "target" : "1125", "shared_name" : "4000 (interacts with) 5551", "name" : "4000 (interacts with) 5551", "interaction" : "interacts with", "SUID" : 42498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42494", "source" : "3361", "target" : "2493", "shared_name" : "4000 (interacts with) 7466", "name" : "4000 (interacts with) 7466", "interaction" : "interacts with", "SUID" : 42494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42490", "source" : "3361", "target" : "1965", "shared_name" : "4000 (interacts with) 7443", "name" : "4000 (interacts with) 7443", "interaction" : "interacts with", "SUID" : 42490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42486", "source" : "3361", "target" : "1329", "shared_name" : "4000 (interacts with) 26277", "name" : "4000 (interacts with) 26277", "interaction" : "interacts with", "SUID" : 42486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42482", "source" : "3361", "target" : "629", "shared_name" : "4000 (interacts with) 7013", "name" : "4000 (interacts with) 7013", "interaction" : "interacts with", "SUID" : 42482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42478", "source" : "3361", "target" : "3789", "shared_name" : "4000 (interacts with) 23345", "name" : "4000 (interacts with) 23345", "interaction" : "interacts with", "SUID" : 42478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42474", "source" : "3361", "target" : "4497", "shared_name" : "4000 (interacts with) 8243", "name" : "4000 (interacts with) 8243", "interaction" : "interacts with", "SUID" : 42474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42470", "source" : "3361", "target" : "4797", "shared_name" : "4000 (interacts with) 10735", "name" : "4000 (interacts with) 10735", "interaction" : "interacts with", "SUID" : 42470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42466", "source" : "3361", "target" : "3569", "shared_name" : "4000 (interacts with) 4893", "name" : "4000 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 42466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42462", "source" : "3361", "target" : "973", "shared_name" : "4000 (interacts with) 5595", "name" : "4000 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 42462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42458", "source" : "3361", "target" : "4521", "shared_name" : "4000 (interacts with) 5894", "name" : "4000 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 42458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42454", "source" : "3361", "target" : "3577", "shared_name" : "4000 (interacts with) 5605", "name" : "4000 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 42454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42450", "source" : "3361", "target" : "5081", "shared_name" : "4000 (interacts with) 5594", "name" : "4000 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 42450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42446", "source" : "3361", "target" : "5361", "shared_name" : "4000 (interacts with) 5604", "name" : "4000 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 42446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42442", "source" : "3361", "target" : "3021", "shared_name" : "4000 (interacts with) 84823", "name" : "4000 (interacts with) 84823", "interaction" : "interacts with", "SUID" : 42442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42438", "source" : "3361", "target" : "1813", "shared_name" : "4000 (interacts with) 7703", "name" : "4000 (interacts with) 7703", "interaction" : "interacts with", "SUID" : 42438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42434", "source" : "3361", "target" : "3937", "shared_name" : "4000 (interacts with) 4001", "name" : "4000 (interacts with) 4001", "interaction" : "interacts with", "SUID" : 42434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42430", "source" : "3361", "target" : "521", "shared_name" : "4000 (interacts with) 85476", "name" : "4000 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 42430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42610", "source" : "3353", "target" : "4813", "shared_name" : "1203 (interacts with) 23431", "name" : "1203 (interacts with) 23431", "interaction" : "interacts with", "SUID" : 42610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42606", "source" : "3353", "target" : "3433", "shared_name" : "1203 (interacts with) 26503", "name" : "1203 (interacts with) 26503", "interaction" : "interacts with", "SUID" : 42606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42602", "source" : "3353", "target" : "3733", "shared_name" : "1203 (interacts with) 2760", "name" : "1203 (interacts with) 2760", "interaction" : "interacts with", "SUID" : 42602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42598", "source" : "3353", "target" : "5221", "shared_name" : "1203 (interacts with) 285362", "name" : "1203 (interacts with) 285362", "interaction" : "interacts with", "SUID" : 42598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42594", "source" : "3353", "target" : "2225", "shared_name" : "1203 (interacts with) 4864", "name" : "1203 (interacts with) 4864", "interaction" : "interacts with", "SUID" : 42594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42590", "source" : "3353", "target" : "1193", "shared_name" : "1203 (interacts with) 5660", "name" : "1203 (interacts with) 5660", "interaction" : "interacts with", "SUID" : 42590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42586", "source" : "3353", "target" : "1261", "shared_name" : "1203 (interacts with) 57192", "name" : "1203 (interacts with) 57192", "interaction" : "interacts with", "SUID" : 42586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42582", "source" : "3353", "target" : "5937", "shared_name" : "1203 (interacts with) 8120", "name" : "1203 (interacts with) 8120", "interaction" : "interacts with", "SUID" : 42582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42578", "source" : "3353", "target" : "1677", "shared_name" : "1203 (interacts with) 8905", "name" : "1203 (interacts with) 8905", "interaction" : "interacts with", "SUID" : 42578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42574", "source" : "3353", "target" : "3693", "shared_name" : "1203 (interacts with) 8943", "name" : "1203 (interacts with) 8943", "interaction" : "interacts with", "SUID" : 42574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42570", "source" : "3353", "target" : "1445", "shared_name" : "1203 (interacts with) 9179", "name" : "1203 (interacts with) 9179", "interaction" : "interacts with", "SUID" : 42570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42566", "source" : "3353", "target" : "4393", "shared_name" : "1203 (interacts with) 950", "name" : "1203 (interacts with) 950", "interaction" : "interacts with", "SUID" : 42566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42562", "source" : "3353", "target" : "2233", "shared_name" : "1203 (interacts with) 9516", "name" : "1203 (interacts with) 9516", "interaction" : "interacts with", "SUID" : 42562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42558", "source" : "3353", "target" : "4809", "shared_name" : "1203 (interacts with) 3481", "name" : "1203 (interacts with) 3481", "interaction" : "interacts with", "SUID" : 42558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42614", "source" : "3349", "target" : "2685", "shared_name" : "8878 (interacts with) 9474", "name" : "8878 (interacts with) 9474", "interaction" : "interacts with", "SUID" : 42614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42622", "source" : "3345", "target" : "4557", "shared_name" : "221927 (interacts with) 57410", "name" : "221927 (interacts with) 57410", "interaction" : "interacts with", "SUID" : 42622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42618", "source" : "3345", "target" : "4633", "shared_name" : "221927 (interacts with) 84942", "name" : "221927 (interacts with) 84942", "interaction" : "interacts with", "SUID" : 42618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42630", "source" : "3341", "target" : "3329", "shared_name" : "8504 (interacts with) 5824", "name" : "8504 (interacts with) 5824", "interaction" : "interacts with", "SUID" : 42630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42626", "source" : "3341", "target" : "3333", "shared_name" : "8504 (interacts with) 9409", "name" : "8504 (interacts with) 9409", "interaction" : "interacts with", "SUID" : 42626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42766", "source" : "3337", "target" : "4737", "shared_name" : "2639 (interacts with) 445", "name" : "2639 (interacts with) 445", "interaction" : "interacts with", "SUID" : 42766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42762", "source" : "3337", "target" : "1189", "shared_name" : "2639 (interacts with) 7915", "name" : "2639 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 42762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42758", "source" : "3337", "target" : "1525", "shared_name" : "2639 (interacts with) 3295", "name" : "2639 (interacts with) 3295", "interaction" : "interacts with", "SUID" : 42758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42754", "source" : "3337", "target" : "721", "shared_name" : "2639 (interacts with) 79731", "name" : "2639 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 42754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42750", "source" : "3337", "target" : "1461", "shared_name" : "2639 (interacts with) 5832", "name" : "2639 (interacts with) 5832", "interaction" : "interacts with", "SUID" : 42750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42746", "source" : "3337", "target" : "4881", "shared_name" : "2639 (interacts with) 6833", "name" : "2639 (interacts with) 6833", "interaction" : "interacts with", "SUID" : 42746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42742", "source" : "3337", "target" : "1021", "shared_name" : "2639 (interacts with) 5096", "name" : "2639 (interacts with) 5096", "interaction" : "interacts with", "SUID" : 42742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42738", "source" : "3337", "target" : "1377", "shared_name" : "2639 (interacts with) 81570", "name" : "2639 (interacts with) 81570", "interaction" : "interacts with", "SUID" : 42738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42734", "source" : "3337", "target" : "493", "shared_name" : "2639 (interacts with) 594", "name" : "2639 (interacts with) 594", "interaction" : "interacts with", "SUID" : 42734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42730", "source" : "3337", "target" : "4941", "shared_name" : "2639 (interacts with) 6342", "name" : "2639 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 42730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42726", "source" : "3337", "target" : "573", "shared_name" : "2639 (interacts with) 3155", "name" : "2639 (interacts with) 3155", "interaction" : "interacts with", "SUID" : 42726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42722", "source" : "3337", "target" : "1749", "shared_name" : "2639 (interacts with) 728294", "name" : "2639 (interacts with) 728294", "interaction" : "interacts with", "SUID" : 42722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42718", "source" : "3337", "target" : "2029", "shared_name" : "2639 (interacts with) 4329", "name" : "2639 (interacts with) 4329", "interaction" : "interacts with", "SUID" : 42718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42714", "source" : "3337", "target" : "4001", "shared_name" : "2639 (interacts with) 79709", "name" : "2639 (interacts with) 79709", "interaction" : "interacts with", "SUID" : 42714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42710", "source" : "3337", "target" : "773", "shared_name" : "2639 (interacts with) 29072", "name" : "2639 (interacts with) 29072", "interaction" : "interacts with", "SUID" : 42710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42706", "source" : "3337", "target" : "4749", "shared_name" : "2639 (interacts with) 3028", "name" : "2639 (interacts with) 3028", "interaction" : "interacts with", "SUID" : 42706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42702", "source" : "3337", "target" : "5593", "shared_name" : "2639 (interacts with) 875", "name" : "2639 (interacts with) 875", "interaction" : "interacts with", "SUID" : 42702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42698", "source" : "3337", "target" : "2281", "shared_name" : "2639 (interacts with) 79823", "name" : "2639 (interacts with) 79823", "interaction" : "interacts with", "SUID" : 42698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42694", "source" : "3337", "target" : "3769", "shared_name" : "2639 (interacts with) 8085", "name" : "2639 (interacts with) 8085", "interaction" : "interacts with", "SUID" : 42694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42690", "source" : "3337", "target" : "1393", "shared_name" : "2639 (interacts with) 55904", "name" : "2639 (interacts with) 55904", "interaction" : "interacts with", "SUID" : 42690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42686", "source" : "3337", "target" : "2593", "shared_name" : "2639 (interacts with) 64324", "name" : "2639 (interacts with) 64324", "interaction" : "interacts with", "SUID" : 42686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42682", "source" : "3337", "target" : "5797", "shared_name" : "2639 (interacts with) 3030", "name" : "2639 (interacts with) 3030", "interaction" : "interacts with", "SUID" : 42682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42678", "source" : "3337", "target" : "3709", "shared_name" : "2639 (interacts with) 9757", "name" : "2639 (interacts with) 9757", "interaction" : "interacts with", "SUID" : 42678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42674", "source" : "3337", "target" : "625", "shared_name" : "2639 (interacts with) 8942", "name" : "2639 (interacts with) 8942", "interaction" : "interacts with", "SUID" : 42674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42670", "source" : "3337", "target" : "3537", "shared_name" : "2639 (interacts with) 501", "name" : "2639 (interacts with) 501", "interaction" : "interacts with", "SUID" : 42670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42666", "source" : "3337", "target" : "3421", "shared_name" : "2639 (interacts with) 4967", "name" : "2639 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 42666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42662", "source" : "3337", "target" : "2025", "shared_name" : "2639 (interacts with) 549", "name" : "2639 (interacts with) 549", "interaction" : "interacts with", "SUID" : 42662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42658", "source" : "3337", "target" : "6057", "shared_name" : "2639 (interacts with) 3162", "name" : "2639 (interacts with) 3162", "interaction" : "interacts with", "SUID" : 42658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42654", "source" : "3337", "target" : "1289", "shared_name" : "2639 (interacts with) 6392", "name" : "2639 (interacts with) 6392", "interaction" : "interacts with", "SUID" : 42654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42650", "source" : "3337", "target" : "4745", "shared_name" : "2639 (interacts with) 35", "name" : "2639 (interacts with) 35", "interaction" : "interacts with", "SUID" : 42650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42646", "source" : "3337", "target" : "5025", "shared_name" : "2639 (interacts with) 6389", "name" : "2639 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 42646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42642", "source" : "3337", "target" : "977", "shared_name" : "2639 (interacts with) 79944", "name" : "2639 (interacts with) 79944", "interaction" : "interacts with", "SUID" : 42642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42638", "source" : "3337", "target" : "1669", "shared_name" : "2639 (interacts with) 6390", "name" : "2639 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 42638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42634", "source" : "3337", "target" : "1485", "shared_name" : "2639 (interacts with) 8050", "name" : "2639 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 42634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42778", "source" : "3333", "target" : "3329", "shared_name" : "9409 (interacts with) 5824", "name" : "9409 (interacts with) 5824", "interaction" : "interacts with", "SUID" : 42778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42774", "source" : "3333", "target" : "3341", "shared_name" : "9409 (interacts with) 8504", "name" : "9409 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 42774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42770", "source" : "3333", "target" : "1481", "shared_name" : "9409 (interacts with) 3763", "name" : "9409 (interacts with) 3763", "interaction" : "interacts with", "SUID" : 42770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42858", "source" : "3329", "target" : "196", "shared_name" : "5824 (interacts with) 84188", "name" : "5824 (interacts with) 84188", "interaction" : "interacts with", "SUID" : 42858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42854", "source" : "3329", "target" : "4941", "shared_name" : "5824 (interacts with) 6342", "name" : "5824 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 42854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42850", "source" : "3329", "target" : "5237", "shared_name" : "5824 (interacts with) 5830", "name" : "5824 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 42850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42846", "source" : "3329", "target" : "5205", "shared_name" : "5824 (interacts with) 5828", "name" : "5824 (interacts with) 5828", "interaction" : "interacts with", "SUID" : 42846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42842", "source" : "3329", "target" : "2325", "shared_name" : "5824 (interacts with) 55670", "name" : "5824 (interacts with) 55670", "interaction" : "interacts with", "SUID" : 42842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42838", "source" : "3329", "target" : "3333", "shared_name" : "5824 (interacts with) 9409", "name" : "5824 (interacts with) 9409", "interaction" : "interacts with", "SUID" : 42838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42834", "source" : "3329", "target" : "4873", "shared_name" : "5824 (interacts with) 4644", "name" : "5824 (interacts with) 4644", "interaction" : "interacts with", "SUID" : 42834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42830", "source" : "3329", "target" : "1981", "shared_name" : "5824 (interacts with) 339983", "name" : "5824 (interacts with) 339983", "interaction" : "interacts with", "SUID" : 42830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42826", "source" : "3329", "target" : "1985", "shared_name" : "5824 (interacts with) 3456", "name" : "5824 (interacts with) 3456", "interaction" : "interacts with", "SUID" : 42826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42822", "source" : "3329", "target" : "5561", "shared_name" : "5824 (interacts with) 4247", "name" : "5824 (interacts with) 4247", "interaction" : "interacts with", "SUID" : 42822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42818", "source" : "3329", "target" : "3341", "shared_name" : "5824 (interacts with) 8504", "name" : "5824 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 42818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42814", "source" : "3329", "target" : "3949", "shared_name" : "5824 (interacts with) 26090", "name" : "5824 (interacts with) 26090", "interaction" : "interacts with", "SUID" : 42814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42810", "source" : "3329", "target" : "1541", "shared_name" : "5824 (interacts with) 958", "name" : "5824 (interacts with) 958", "interaction" : "interacts with", "SUID" : 42810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42806", "source" : "3329", "target" : "1265", "shared_name" : "5824 (interacts with) 79594", "name" : "5824 (interacts with) 79594", "interaction" : "interacts with", "SUID" : 42806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42802", "source" : "3329", "target" : "669", "shared_name" : "5824 (interacts with) 259266", "name" : "5824 (interacts with) 259266", "interaction" : "interacts with", "SUID" : 42802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42798", "source" : "3329", "target" : "5873", "shared_name" : "5824 (interacts with) 5827", "name" : "5824 (interacts with) 5827", "interaction" : "interacts with", "SUID" : 42798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42794", "source" : "3329", "target" : "5865", "shared_name" : "5824 (interacts with) 5192", "name" : "5824 (interacts with) 5192", "interaction" : "interacts with", "SUID" : 42794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42790", "source" : "3329", "target" : "4301", "shared_name" : "5824 (interacts with) 8799", "name" : "5824 (interacts with) 8799", "interaction" : "interacts with", "SUID" : 42790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42786", "source" : "3329", "target" : "3757", "shared_name" : "5824 (interacts with) 215", "name" : "5824 (interacts with) 215", "interaction" : "interacts with", "SUID" : 42786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42782", "source" : "3329", "target" : "4297", "shared_name" : "5824 (interacts with) 5193", "name" : "5824 (interacts with) 5193", "interaction" : "interacts with", "SUID" : 42782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42866", "source" : "3321", "target" : "3241", "shared_name" : "79876 (interacts with) 51506", "name" : "79876 (interacts with) 51506", "interaction" : "interacts with", "SUID" : 42866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42862", "source" : "3321", "target" : "5133", "shared_name" : "79876 (interacts with) 51", "name" : "79876 (interacts with) 51", "interaction" : "interacts with", "SUID" : 42862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42886", "source" : "3317", "target" : "2777", "shared_name" : "10966 (interacts with) 9230", "name" : "10966 (interacts with) 9230", "interaction" : "interacts with", "SUID" : 42886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42882", "source" : "3317", "target" : "1069", "shared_name" : "10966 (interacts with) 5879", "name" : "10966 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 42882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42878", "source" : "3317", "target" : "1405", "shared_name" : "10966 (interacts with) 998", "name" : "10966 (interacts with) 998", "interaction" : "interacts with", "SUID" : 42878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42874", "source" : "3317", "target" : "2037", "shared_name" : "10966 (interacts with) 80067", "name" : "10966 (interacts with) 80067", "interaction" : "interacts with", "SUID" : 42874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42870", "source" : "3317", "target" : "1053", "shared_name" : "10966 (interacts with) 81689", "name" : "10966 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 42870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42890", "source" : "3313", "target" : "4989", "shared_name" : "84314 (interacts with) 51227", "name" : "84314 (interacts with) 51227", "interaction" : "interacts with", "SUID" : 42890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42894", "source" : "3309", "target" : "2481", "shared_name" : "5896 (interacts with) 2475", "name" : "5896 (interacts with) 2475", "interaction" : "interacts with", "SUID" : 42894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42958", "source" : "3305", "target" : "2153", "shared_name" : "7040 (interacts with) 7042", "name" : "7040 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 42958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42954", "source" : "3305", "target" : "4065", "shared_name" : "7040 (interacts with) 7124", "name" : "7040 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 42954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42950", "source" : "3305", "target" : "981", "shared_name" : "7040 (interacts with) 7157", "name" : "7040 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 42950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42946", "source" : "3305", "target" : "3409", "shared_name" : "7040 (interacts with) 7043", "name" : "7040 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 42946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42942", "source" : "3305", "target" : "1405", "shared_name" : "7040 (interacts with) 998", "name" : "7040 (interacts with) 998", "interaction" : "interacts with", "SUID" : 42942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42938", "source" : "3305", "target" : "569", "shared_name" : "7040 (interacts with) 7048", "name" : "7040 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 42938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42934", "source" : "3305", "target" : "5745", "shared_name" : "7040 (interacts with) 7471", "name" : "7040 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 42934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42930", "source" : "3305", "target" : "4785", "shared_name" : "7040 (interacts with) 1282", "name" : "7040 (interacts with) 1282", "interaction" : "interacts with", "SUID" : 42930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42926", "source" : "3305", "target" : "5869", "shared_name" : "7040 (interacts with) 59", "name" : "7040 (interacts with) 59", "interaction" : "interacts with", "SUID" : 42926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42922", "source" : "3305", "target" : "3473", "shared_name" : "7040 (interacts with) 6528", "name" : "7040 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 42922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42918", "source" : "3305", "target" : "4213", "shared_name" : "7040 (interacts with) 5295", "name" : "7040 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 42918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42914", "source" : "3305", "target" : "2241", "shared_name" : "7040 (interacts with) 3043", "name" : "7040 (interacts with) 3043", "interaction" : "interacts with", "SUID" : 42914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42910", "source" : "3305", "target" : "3677", "shared_name" : "7040 (interacts with) 673", "name" : "7040 (interacts with) 673", "interaction" : "interacts with", "SUID" : 42910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42906", "source" : "3305", "target" : "4981", "shared_name" : "7040 (interacts with) 6774", "name" : "7040 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 42906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42902", "source" : "3305", "target" : "4161", "shared_name" : "7040 (interacts with) 4318", "name" : "7040 (interacts with) 4318", "interaction" : "interacts with", "SUID" : 42902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42898", "source" : "3305", "target" : "2237", "shared_name" : "7040 (interacts with) 10516", "name" : "7040 (interacts with) 10516", "interaction" : "interacts with", "SUID" : 42898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43018", "source" : "3301", "target" : "2301", "shared_name" : "91949 (interacts with) 9342", "name" : "91949 (interacts with) 9342", "interaction" : "interacts with", "SUID" : 43018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43014", "source" : "3301", "target" : "5749", "shared_name" : "91949 (interacts with) 10959", "name" : "91949 (interacts with) 10959", "interaction" : "interacts with", "SUID" : 43014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43010", "source" : "3301", "target" : "545", "shared_name" : "91949 (interacts with) 51014", "name" : "91949 (interacts with) 51014", "interaction" : "interacts with", "SUID" : 43010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43006", "source" : "3301", "target" : "3637", "shared_name" : "91949 (interacts with) 6712", "name" : "91949 (interacts with) 6712", "interaction" : "interacts with", "SUID" : 43006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43002", "source" : "3301", "target" : "1633", "shared_name" : "91949 (interacts with) 57731", "name" : "91949 (interacts with) 57731", "interaction" : "interacts with", "SUID" : 43002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42998", "source" : "3301", "target" : "1973", "shared_name" : "91949 (interacts with) 6709", "name" : "91949 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 42998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42994", "source" : "3301", "target" : "3149", "shared_name" : "91949 (interacts with) 3630", "name" : "91949 (interacts with) 3630", "interaction" : "interacts with", "SUID" : 42994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42990", "source" : "3301", "target" : "1997", "shared_name" : "91949 (interacts with) 2348", "name" : "91949 (interacts with) 2348", "interaction" : "interacts with", "SUID" : 42990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42986", "source" : "3301", "target" : "1269", "shared_name" : "91949 (interacts with) 9276", "name" : "91949 (interacts with) 9276", "interaction" : "interacts with", "SUID" : 42986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42982", "source" : "3301", "target" : "1541", "shared_name" : "91949 (interacts with) 958", "name" : "91949 (interacts with) 958", "interaction" : "interacts with", "SUID" : 42982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42978", "source" : "3301", "target" : "5653", "shared_name" : "91949 (interacts with) 22930", "name" : "91949 (interacts with) 22930", "interaction" : "interacts with", "SUID" : 42978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42974", "source" : "3301", "target" : "1265", "shared_name" : "91949 (interacts with) 79594", "name" : "91949 (interacts with) 79594", "interaction" : "interacts with", "SUID" : 42974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42970", "source" : "3301", "target" : "757", "shared_name" : "91949 (interacts with) 80856", "name" : "91949 (interacts with) 80856", "interaction" : "interacts with", "SUID" : 42970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42966", "source" : "3301", "target" : "4637", "shared_name" : "91949 (interacts with) 25839", "name" : "91949 (interacts with) 25839", "interaction" : "interacts with", "SUID" : 42966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "42962", "source" : "3301", "target" : "6005", "shared_name" : "91949 (interacts with) 4988", "name" : "91949 (interacts with) 4988", "interaction" : "interacts with", "SUID" : 42962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43066", "source" : "3297", "target" : "4065", "shared_name" : "3383 (interacts with) 7124", "name" : "3383 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 43066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43062", "source" : "3297", "target" : "1233", "shared_name" : "3383 (interacts with) 355", "name" : "3383 (interacts with) 355", "interaction" : "interacts with", "SUID" : 43062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43058", "source" : "3297", "target" : "1529", "shared_name" : "3383 (interacts with) 3458", "name" : "3383 (interacts with) 3458", "interaction" : "interacts with", "SUID" : 43058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43054", "source" : "3297", "target" : "1541", "shared_name" : "3383 (interacts with) 958", "name" : "3383 (interacts with) 958", "interaction" : "interacts with", "SUID" : 43054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43050", "source" : "3297", "target" : "3993", "shared_name" : "3383 (interacts with) 3683", "name" : "3383 (interacts with) 3683", "interaction" : "interacts with", "SUID" : 43050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43046", "source" : "3297", "target" : "1125", "shared_name" : "3383 (interacts with) 5551", "name" : "3383 (interacts with) 5551", "interaction" : "interacts with", "SUID" : 43046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43042", "source" : "3297", "target" : "1549", "shared_name" : "3383 (interacts with) 7070", "name" : "3383 (interacts with) 7070", "interaction" : "interacts with", "SUID" : 43042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43038", "source" : "3297", "target" : "3153", "shared_name" : "3383 (interacts with) 3684", "name" : "3383 (interacts with) 3684", "interaction" : "interacts with", "SUID" : 43038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43034", "source" : "3297", "target" : "5801", "shared_name" : "3383 (interacts with) 960", "name" : "3383 (interacts with) 960", "interaction" : "interacts with", "SUID" : 43034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43030", "source" : "3297", "target" : "4981", "shared_name" : "3383 (interacts with) 6774", "name" : "3383 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 43030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43026", "source" : "3297", "target" : "5149", "shared_name" : "3383 (interacts with) 5058", "name" : "3383 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 43026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43022", "source" : "3297", "target" : "5677", "shared_name" : "3383 (interacts with) 5189", "name" : "3383 (interacts with) 5189", "interaction" : "interacts with", "SUID" : 43022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43086", "source" : "3293", "target" : "4077", "shared_name" : "1832 (interacts with) 71", "name" : "1832 (interacts with) 71", "interaction" : "interacts with", "SUID" : 43086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43082", "source" : "3293", "target" : "5977", "shared_name" : "1832 (interacts with) 1915", "name" : "1832 (interacts with) 1915", "interaction" : "interacts with", "SUID" : 43082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43078", "source" : "3293", "target" : "4537", "shared_name" : "1832 (interacts with) 2697", "name" : "1832 (interacts with) 2697", "interaction" : "interacts with", "SUID" : 43078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43074", "source" : "3293", "target" : "4825", "shared_name" : "1832 (interacts with) 6445", "name" : "1832 (interacts with) 6445", "interaction" : "interacts with", "SUID" : 43074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43070", "source" : "3293", "target" : "1785", "shared_name" : "1832 (interacts with) 667", "name" : "1832 (interacts with) 667", "interaction" : "interacts with", "SUID" : 43070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43094", "source" : "3289", "target" : "1405", "shared_name" : "5913 (interacts with) 998", "name" : "5913 (interacts with) 998", "interaction" : "interacts with", "SUID" : 43094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43090", "source" : "3289", "target" : "4765", "shared_name" : "5913 (interacts with) 7015", "name" : "5913 (interacts with) 7015", "interaction" : "interacts with", "SUID" : 43090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43106", "source" : "3285", "target" : "3505", "shared_name" : "8302 (interacts with) 160418", "name" : "8302 (interacts with) 160418", "interaction" : "interacts with", "SUID" : 43106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43102", "source" : "3285", "target" : "6017", "shared_name" : "8302 (interacts with) 79796", "name" : "8302 (interacts with) 79796", "interaction" : "interacts with", "SUID" : 43102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43098", "source" : "3285", "target" : "4973", "shared_name" : "8302 (interacts with) 1910", "name" : "8302 (interacts with) 1910", "interaction" : "interacts with", "SUID" : 43098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43114", "source" : "3277", "target" : "817", "shared_name" : "9423 (interacts with) 5728", "name" : "9423 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 43114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43110", "source" : "3277", "target" : "1069", "shared_name" : "9423 (interacts with) 5879", "name" : "9423 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 43110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43270", "source" : "3273", "target" : "4909", "shared_name" : "351 (interacts with) 823", "name" : "351 (interacts with) 823", "interaction" : "interacts with", "SUID" : 43270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43266", "source" : "3273", "target" : "5037", "shared_name" : "351 (interacts with) 5515", "name" : "351 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 43266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43262", "source" : "3273", "target" : "4705", "shared_name" : "351 (interacts with) 10664", "name" : "351 (interacts with) 10664", "interaction" : "interacts with", "SUID" : 43262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43258", "source" : "3273", "target" : "4885", "shared_name" : "351 (interacts with) 5340", "name" : "351 (interacts with) 5340", "interaction" : "interacts with", "SUID" : 43258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43254", "source" : "3273", "target" : "997", "shared_name" : "351 (interacts with) 7431", "name" : "351 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 43254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43250", "source" : "3273", "target" : "5989", "shared_name" : "351 (interacts with) 7273", "name" : "351 (interacts with) 7273", "interaction" : "interacts with", "SUID" : 43250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43246", "source" : "3273", "target" : "2581", "shared_name" : "351 (interacts with) 7170", "name" : "351 (interacts with) 7170", "interaction" : "interacts with", "SUID" : 43246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43242", "source" : "3273", "target" : "609", "shared_name" : "351 (interacts with) 6812", "name" : "351 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 43242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43238", "source" : "3273", "target" : "5785", "shared_name" : "351 (interacts with) 6857", "name" : "351 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 43238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43234", "source" : "3273", "target" : "5929", "shared_name" : "351 (interacts with) 6616", "name" : "351 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 43234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43230", "source" : "3273", "target" : "4949", "shared_name" : "351 (interacts with) 5970", "name" : "351 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 43230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43226", "source" : "3273", "target" : "3593", "shared_name" : "351 (interacts with) 5530", "name" : "351 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 43226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43222", "source" : "3273", "target" : "3017", "shared_name" : "351 (interacts with) 4790", "name" : "351 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 43222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43218", "source" : "3273", "target" : "3177", "shared_name" : "351 (interacts with) 5321", "name" : "351 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 43218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43214", "source" : "3273", "target" : "1357", "shared_name" : "351 (interacts with) 58498", "name" : "351 (interacts with) 58498", "interaction" : "interacts with", "SUID" : 43214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43210", "source" : "3273", "target" : "565", "shared_name" : "351 (interacts with) 4772", "name" : "351 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 43210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43206", "source" : "3273", "target" : "5081", "shared_name" : "351 (interacts with) 5594", "name" : "351 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 43206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43202", "source" : "3273", "target" : "973", "shared_name" : "351 (interacts with) 5595", "name" : "351 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 43202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43198", "source" : "3273", "target" : "5569", "shared_name" : "351 (interacts with) 59345", "name" : "351 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 43198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43194", "source" : "3273", "target" : "6097", "shared_name" : "351 (interacts with) 1756", "name" : "351 (interacts with) 1756", "interaction" : "interacts with", "SUID" : 43194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43190", "source" : "3273", "target" : "4893", "shared_name" : "351 (interacts with) 10815", "name" : "351 (interacts with) 10815", "interaction" : "interacts with", "SUID" : 43190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43186", "source" : "3273", "target" : "2553", "shared_name" : "351 (interacts with) 815", "name" : "351 (interacts with) 815", "interaction" : "interacts with", "SUID" : 43186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43182", "source" : "3273", "target" : "993", "shared_name" : "351 (interacts with) 801", "name" : "351 (interacts with) 801", "interaction" : "interacts with", "SUID" : 43182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43178", "source" : "3273", "target" : "5557", "shared_name" : "351 (interacts with) 9254", "name" : "351 (interacts with) 9254", "interaction" : "interacts with", "SUID" : 43178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43174", "source" : "3273", "target" : "1129", "shared_name" : "351 (interacts with) 57505", "name" : "351 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 43174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43170", "source" : "3273", "target" : "665", "shared_name" : "351 (interacts with) 3309", "name" : "351 (interacts with) 3309", "interaction" : "interacts with", "SUID" : 43170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43166", "source" : "3273", "target" : "2153", "shared_name" : "351 (interacts with) 7042", "name" : "351 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 43166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43162", "source" : "3273", "target" : "6149", "shared_name" : "351 (interacts with) 335", "name" : "351 (interacts with) 335", "interaction" : "interacts with", "SUID" : 43162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43158", "source" : "3273", "target" : "4041", "shared_name" : "351 (interacts with) 847", "name" : "351 (interacts with) 847", "interaction" : "interacts with", "SUID" : 43158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43154", "source" : "3273", "target" : "3933", "shared_name" : "351 (interacts with) 10524", "name" : "351 (interacts with) 10524", "interaction" : "interacts with", "SUID" : 43154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43150", "source" : "3273", "target" : "4749", "shared_name" : "351 (interacts with) 3028", "name" : "351 (interacts with) 3028", "interaction" : "interacts with", "SUID" : 43150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43146", "source" : "3273", "target" : "3305", "shared_name" : "351 (interacts with) 7040", "name" : "351 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 43146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43142", "source" : "3273", "target" : "5957", "shared_name" : "351 (interacts with) 7052", "name" : "351 (interacts with) 7052", "interaction" : "interacts with", "SUID" : 43142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43138", "source" : "3273", "target" : "2005", "shared_name" : "351 (interacts with) 4846", "name" : "351 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 43138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43134", "source" : "3273", "target" : "1245", "shared_name" : "351 (interacts with) 4137", "name" : "351 (interacts with) 4137", "interaction" : "interacts with", "SUID" : 43134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43130", "source" : "3273", "target" : "537", "shared_name" : "351 (interacts with) 27429", "name" : "351 (interacts with) 27429", "interaction" : "interacts with", "SUID" : 43130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43126", "source" : "3273", "target" : "1113", "shared_name" : "351 (interacts with) 10134", "name" : "351 (interacts with) 10134", "interaction" : "interacts with", "SUID" : 43126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43122", "source" : "3273", "target" : "3041", "shared_name" : "351 (interacts with) 5663", "name" : "351 (interacts with) 5663", "interaction" : "interacts with", "SUID" : 43122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43118", "source" : "3273", "target" : "2905", "shared_name" : "351 (interacts with) 5664", "name" : "351 (interacts with) 5664", "interaction" : "interacts with", "SUID" : 43118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43402", "source" : "3269", "target" : "5797", "shared_name" : "2108 (interacts with) 3030", "name" : "2108 (interacts with) 3030", "interaction" : "interacts with", "SUID" : 43402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43398", "source" : "3269", "target" : "1021", "shared_name" : "2108 (interacts with) 5096", "name" : "2108 (interacts with) 5096", "interaction" : "interacts with", "SUID" : 43398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43394", "source" : "3269", "target" : "2249", "shared_name" : "2108 (interacts with) 25824", "name" : "2108 (interacts with) 25824", "interaction" : "interacts with", "SUID" : 43394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43390", "source" : "3269", "target" : "2801", "shared_name" : "2108 (interacts with) 4700", "name" : "2108 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 43390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43386", "source" : "3269", "target" : "2741", "shared_name" : "2108 (interacts with) 4695", "name" : "2108 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 43386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43382", "source" : "3269", "target" : "5857", "shared_name" : "2108 (interacts with) 4694", "name" : "2108 (interacts with) 4694", "interaction" : "interacts with", "SUID" : 43382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43378", "source" : "3269", "target" : "4069", "shared_name" : "2108 (interacts with) 374291", "name" : "2108 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 43378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43374", "source" : "3269", "target" : "5853", "shared_name" : "2108 (interacts with) 4709", "name" : "2108 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 43374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43370", "source" : "3269", "target" : "4061", "shared_name" : "2108 (interacts with) 4705", "name" : "2108 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 43370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43366", "source" : "3269", "target" : "3617", "shared_name" : "2108 (interacts with) 4704", "name" : "2108 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 43366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43362", "source" : "3269", "target" : "4945", "shared_name" : "2108 (interacts with) 4722", "name" : "2108 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 43362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43358", "source" : "3269", "target" : "2753", "shared_name" : "2108 (interacts with) 4720", "name" : "2108 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 43358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43354", "source" : "3269", "target" : "4017", "shared_name" : "2108 (interacts with) 4719", "name" : "2108 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 43354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43350", "source" : "3269", "target" : "2689", "shared_name" : "2108 (interacts with) 4715", "name" : "2108 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 43350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43346", "source" : "3269", "target" : "5845", "shared_name" : "2108 (interacts with) 4714", "name" : "2108 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 43346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43342", "source" : "3269", "target" : "2757", "shared_name" : "2108 (interacts with) 51079", "name" : "2108 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 43342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43338", "source" : "3269", "target" : "1869", "shared_name" : "2108 (interacts with) 4729", "name" : "2108 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 43338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43334", "source" : "3269", "target" : "2797", "shared_name" : "2108 (interacts with) 4728", "name" : "2108 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 43334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43330", "source" : "3269", "target" : "5833", "shared_name" : "2108 (interacts with) 4726", "name" : "2108 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 43330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43326", "source" : "3269", "target" : "5821", "shared_name" : "2108 (interacts with) 4724", "name" : "2108 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 43326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43322", "source" : "3269", "target" : "1573", "shared_name" : "2108 (interacts with) 4723", "name" : "2108 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 43322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43318", "source" : "3269", "target" : "5689", "shared_name" : "2108 (interacts with) 27089", "name" : "2108 (interacts with) 27089", "interaction" : "interacts with", "SUID" : 43318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43314", "source" : "3269", "target" : "1749", "shared_name" : "2108 (interacts with) 728294", "name" : "2108 (interacts with) 728294", "interaction" : "interacts with", "SUID" : 43314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43310", "source" : "3269", "target" : "5553", "shared_name" : "2108 (interacts with) 55967", "name" : "2108 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 43310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43306", "source" : "3269", "target" : "1849", "shared_name" : "2108 (interacts with) 26275", "name" : "2108 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 43306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43302", "source" : "3269", "target" : "937", "shared_name" : "2108 (interacts with) 2110", "name" : "2108 (interacts with) 2110", "interaction" : "interacts with", "SUID" : 43302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43298", "source" : "3269", "target" : "2025", "shared_name" : "2108 (interacts with) 549", "name" : "2108 (interacts with) 549", "interaction" : "interacts with", "SUID" : 43298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43294", "source" : "3269", "target" : "2337", "shared_name" : "2108 (interacts with) 28976", "name" : "2108 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 43294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43290", "source" : "3269", "target" : "3337", "shared_name" : "2108 (interacts with) 2639", "name" : "2108 (interacts with) 2639", "interaction" : "interacts with", "SUID" : 43290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43286", "source" : "3269", "target" : "4745", "shared_name" : "2108 (interacts with) 35", "name" : "2108 (interacts with) 35", "interaction" : "interacts with", "SUID" : 43286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43282", "source" : "3269", "target" : "5025", "shared_name" : "2108 (interacts with) 6389", "name" : "2108 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 43282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43278", "source" : "3269", "target" : "1669", "shared_name" : "2108 (interacts with) 6390", "name" : "2108 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 43278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43274", "source" : "3269", "target" : "1289", "shared_name" : "2108 (interacts with) 6392", "name" : "2108 (interacts with) 6392", "interaction" : "interacts with", "SUID" : 43274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43422", "source" : "3265", "target" : "3177", "shared_name" : "23259 (interacts with) 5321", "name" : "23259 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 43422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43418", "source" : "3265", "target" : "385", "shared_name" : "23259 (interacts with) 5319", "name" : "23259 (interacts with) 5319", "interaction" : "interacts with", "SUID" : 43418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43414", "source" : "3265", "target" : "2017", "shared_name" : "23259 (interacts with) 1116", "name" : "23259 (interacts with) 1116", "interaction" : "interacts with", "SUID" : 43414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43410", "source" : "3265", "target" : "2697", "shared_name" : "23259 (interacts with) 240", "name" : "23259 (interacts with) 240", "interaction" : "interacts with", "SUID" : 43410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43406", "source" : "3265", "target" : "5981", "shared_name" : "23259 (interacts with) 1917", "name" : "23259 (interacts with) 1917", "interaction" : "interacts with", "SUID" : 43406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43426", "source" : "3261", "target" : "6017", "shared_name" : "54463 (interacts with) 79796", "name" : "54463 (interacts with) 79796", "interaction" : "interacts with", "SUID" : 43426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43434", "source" : "3257", "target" : "5953", "shared_name" : "80746 (interacts with) 283989", "name" : "80746 (interacts with) 283989", "interaction" : "interacts with", "SUID" : 43434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43430", "source" : "3257", "target" : "5469", "shared_name" : "80746 (interacts with) 10978", "name" : "80746 (interacts with) 10978", "interaction" : "interacts with", "SUID" : 43430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43474", "source" : "3253", "target" : "5197", "shared_name" : "4297 (interacts with) 7156", "name" : "4297 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 43474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43470", "source" : "3253", "target" : "3769", "shared_name" : "4297 (interacts with) 8085", "name" : "4297 (interacts with) 8085", "interaction" : "interacts with", "SUID" : 43470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43466", "source" : "3253", "target" : "2281", "shared_name" : "4297 (interacts with) 79823", "name" : "4297 (interacts with) 79823", "interaction" : "interacts with", "SUID" : 43466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43462", "source" : "3253", "target" : "1509", "shared_name" : "4297 (interacts with) 63976", "name" : "4297 (interacts with) 63976", "interaction" : "interacts with", "SUID" : 43462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43458", "source" : "3253", "target" : "1501", "shared_name" : "4297 (interacts with) 55870", "name" : "4297 (interacts with) 55870", "interaction" : "interacts with", "SUID" : 43458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43454", "source" : "3253", "target" : "2593", "shared_name" : "4297 (interacts with) 64324", "name" : "4297 (interacts with) 64324", "interaction" : "interacts with", "SUID" : 43454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43450", "source" : "3253", "target" : "1393", "shared_name" : "4297 (interacts with) 55904", "name" : "4297 (interacts with) 55904", "interaction" : "interacts with", "SUID" : 43450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43446", "source" : "3253", "target" : "3709", "shared_name" : "4297 (interacts with) 9757", "name" : "4297 (interacts with) 9757", "interaction" : "interacts with", "SUID" : 43446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43442", "source" : "3253", "target" : "5769", "shared_name" : "4297 (interacts with) 5081", "name" : "4297 (interacts with) 5081", "interaction" : "interacts with", "SUID" : 43442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43438", "source" : "3253", "target" : "5729", "shared_name" : "4297 (interacts with) 861", "name" : "4297 (interacts with) 861", "interaction" : "interacts with", "SUID" : 43438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43546", "source" : "3249", "target" : "1573", "shared_name" : "10075 (interacts with) 4723", "name" : "10075 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 43546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43542", "source" : "3249", "target" : "6081", "shared_name" : "10075 (interacts with) 10128", "name" : "10075 (interacts with) 10128", "interaction" : "interacts with", "SUID" : 43542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43538", "source" : "3249", "target" : "2241", "shared_name" : "10075 (interacts with) 3043", "name" : "10075 (interacts with) 3043", "interaction" : "interacts with", "SUID" : 43538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43534", "source" : "3249", "target" : "3517", "shared_name" : "10075 (interacts with) 2033", "name" : "10075 (interacts with) 2033", "interaction" : "interacts with", "SUID" : 43534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43530", "source" : "3249", "target" : "1597", "shared_name" : "10075 (interacts with) 3146", "name" : "10075 (interacts with) 3146", "interaction" : "interacts with", "SUID" : 43530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43526", "source" : "3249", "target" : "4317", "shared_name" : "10075 (interacts with) 3178", "name" : "10075 (interacts with) 3178", "interaction" : "interacts with", "SUID" : 43526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43522", "source" : "3249", "target" : "1241", "shared_name" : "10075 (interacts with) 808", "name" : "10075 (interacts with) 808", "interaction" : "interacts with", "SUID" : 43522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43518", "source" : "3249", "target" : "3293", "shared_name" : "10075 (interacts with) 1832", "name" : "10075 (interacts with) 1832", "interaction" : "interacts with", "SUID" : 43518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43514", "source" : "3249", "target" : "5421", "shared_name" : "10075 (interacts with) 213", "name" : "10075 (interacts with) 213", "interaction" : "interacts with", "SUID" : 43514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43510", "source" : "3249", "target" : "2125", "shared_name" : "10075 (interacts with) 2512", "name" : "10075 (interacts with) 2512", "interaction" : "interacts with", "SUID" : 43510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43506", "source" : "3249", "target" : "4077", "shared_name" : "10075 (interacts with) 71", "name" : "10075 (interacts with) 71", "interaction" : "interacts with", "SUID" : 43506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43502", "source" : "3249", "target" : "997", "shared_name" : "10075 (interacts with) 7431", "name" : "10075 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 43502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43498", "source" : "3249", "target" : "5649", "shared_name" : "10075 (interacts with) 5265", "name" : "10075 (interacts with) 5265", "interaction" : "interacts with", "SUID" : 43498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43494", "source" : "3249", "target" : "853", "shared_name" : "10075 (interacts with) 60", "name" : "10075 (interacts with) 60", "interaction" : "interacts with", "SUID" : 43494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43490", "source" : "3249", "target" : "5977", "shared_name" : "10075 (interacts with) 1915", "name" : "10075 (interacts with) 1915", "interaction" : "interacts with", "SUID" : 43490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43486", "source" : "3249", "target" : "1933", "shared_name" : "10075 (interacts with) 7335", "name" : "10075 (interacts with) 7335", "interaction" : "interacts with", "SUID" : 43486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43482", "source" : "3249", "target" : "3729", "shared_name" : "10075 (interacts with) 7319", "name" : "10075 (interacts with) 7319", "interaction" : "interacts with", "SUID" : 43482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43478", "source" : "3249", "target" : "961", "shared_name" : "10075 (interacts with) 7318", "name" : "10075 (interacts with) 7318", "interaction" : "interacts with", "SUID" : 43478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43598", "source" : "3245", "target" : "2173", "shared_name" : "1760 (interacts with) 5159", "name" : "1760 (interacts with) 5159", "interaction" : "interacts with", "SUID" : 43598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43594", "source" : "3245", "target" : "4293", "shared_name" : "1760 (interacts with) 5156", "name" : "1760 (interacts with) 5156", "interaction" : "interacts with", "SUID" : 43594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43590", "source" : "3245", "target" : "5397", "shared_name" : "1760 (interacts with) 85378", "name" : "1760 (interacts with) 85378", "interaction" : "interacts with", "SUID" : 43590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43586", "source" : "3245", "target" : "5125", "shared_name" : "1760 (interacts with) 5979", "name" : "1760 (interacts with) 5979", "interaction" : "interacts with", "SUID" : 43586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43582", "source" : "3245", "target" : "865", "shared_name" : "1760 (interacts with) 3480", "name" : "1760 (interacts with) 3480", "interaction" : "interacts with", "SUID" : 43582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43578", "source" : "3245", "target" : "3629", "shared_name" : "1760 (interacts with) 2066", "name" : "1760 (interacts with) 2066", "interaction" : "interacts with", "SUID" : 43578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43574", "source" : "3245", "target" : "6121", "shared_name" : "1760 (interacts with) 2260", "name" : "1760 (interacts with) 2260", "interaction" : "interacts with", "SUID" : 43574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43570", "source" : "3245", "target" : "2873", "shared_name" : "1760 (interacts with) 6261", "name" : "1760 (interacts with) 6261", "interaction" : "interacts with", "SUID" : 43570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43566", "source" : "3245", "target" : "5029", "shared_name" : "1760 (interacts with) 4842", "name" : "1760 (interacts with) 4842", "interaction" : "interacts with", "SUID" : 43566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43562", "source" : "3245", "target" : "2621", "shared_name" : "1760 (interacts with) 477", "name" : "1760 (interacts with) 477", "interaction" : "interacts with", "SUID" : 43562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43558", "source" : "3245", "target" : "2645", "shared_name" : "1760 (interacts with) 476", "name" : "1760 (interacts with) 476", "interaction" : "interacts with", "SUID" : 43558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43554", "source" : "3245", "target" : "4793", "shared_name" : "1760 (interacts with) 478", "name" : "1760 (interacts with) 478", "interaction" : "interacts with", "SUID" : 43554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43550", "source" : "3245", "target" : "3853", "shared_name" : "1760 (interacts with) 6786", "name" : "1760 (interacts with) 6786", "interaction" : "interacts with", "SUID" : 43550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43614", "source" : "3241", "target" : "5861", "shared_name" : "51506 (interacts with) 5435", "name" : "51506 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 43614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43610", "source" : "3241", "target" : "5925", "shared_name" : "51506 (interacts with) 51569", "name" : "51506 (interacts with) 51569", "interaction" : "interacts with", "SUID" : 43610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43606", "source" : "3241", "target" : "3321", "shared_name" : "51506 (interacts with) 79876", "name" : "51506 (interacts with) 79876", "interaction" : "interacts with", "SUID" : 43606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43602", "source" : "3241", "target" : "6177", "shared_name" : "51506 (interacts with) 50628", "name" : "51506 (interacts with) 50628", "interaction" : "interacts with", "SUID" : 43602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43690", "source" : "3237", "target" : "461", "shared_name" : "95 (interacts with) 5198", "name" : "95 (interacts with) 5198", "interaction" : "interacts with", "SUID" : 43690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43686", "source" : "3237", "target" : "769", "shared_name" : "95 (interacts with) 4953", "name" : "95 (interacts with) 4953", "interaction" : "interacts with", "SUID" : 43686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43682", "source" : "3237", "target" : "1013", "shared_name" : "95 (interacts with) 6898", "name" : "95 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 43682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43678", "source" : "3237", "target" : "4185", "shared_name" : "95 (interacts with) 29968", "name" : "95 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 43678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43674", "source" : "3237", "target" : "2557", "shared_name" : "95 (interacts with) 5444", "name" : "95 (interacts with) 5444", "interaction" : "interacts with", "SUID" : 43674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43670", "source" : "3237", "target" : "4261", "shared_name" : "95 (interacts with) 124454", "name" : "95 (interacts with) 124454", "interaction" : "interacts with", "SUID" : 43670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43666", "source" : "3237", "target" : "5109", "shared_name" : "95 (interacts with) 790", "name" : "95 (interacts with) 790", "interaction" : "interacts with", "SUID" : 43666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43662", "source" : "3237", "target" : "2177", "shared_name" : "95 (interacts with) 443", "name" : "95 (interacts with) 443", "interaction" : "interacts with", "SUID" : 43662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43658", "source" : "3237", "target" : "2421", "shared_name" : "95 (interacts with) 2673", "name" : "95 (interacts with) 2673", "interaction" : "interacts with", "SUID" : 43658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43654", "source" : "3237", "target" : "2205", "shared_name" : "95 (interacts with) 2571", "name" : "95 (interacts with) 2571", "interaction" : "interacts with", "SUID" : 43654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43650", "source" : "3237", "target" : "1385", "shared_name" : "95 (interacts with) 6520", "name" : "95 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 43650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43646", "source" : "3237", "target" : "5349", "shared_name" : "95 (interacts with) 440", "name" : "95 (interacts with) 440", "interaction" : "interacts with", "SUID" : 43646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43642", "source" : "3237", "target" : "2989", "shared_name" : "95 (interacts with) 224", "name" : "95 (interacts with) 224", "interaction" : "interacts with", "SUID" : 43642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43638", "source" : "3237", "target" : "1461", "shared_name" : "95 (interacts with) 5832", "name" : "95 (interacts with) 5832", "interaction" : "interacts with", "SUID" : 43638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43634", "source" : "3237", "target" : "5429", "shared_name" : "95 (interacts with) 5048", "name" : "95 (interacts with) 5048", "interaction" : "interacts with", "SUID" : 43634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43630", "source" : "3237", "target" : "4273", "shared_name" : "95 (interacts with) 4548", "name" : "95 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 43630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43626", "source" : "3237", "target" : "2457", "shared_name" : "95 (interacts with) 4143", "name" : "95 (interacts with) 4143", "interaction" : "interacts with", "SUID" : 43626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43622", "source" : "3237", "target" : "2097", "shared_name" : "95 (interacts with) 10166", "name" : "95 (interacts with) 10166", "interaction" : "interacts with", "SUID" : 43622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43618", "source" : "3237", "target" : "3537", "shared_name" : "95 (interacts with) 501", "name" : "95 (interacts with) 501", "interaction" : "interacts with", "SUID" : 43618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43694", "source" : "3229", "target" : "745", "shared_name" : "5794 (interacts with) 1725", "name" : "5794 (interacts with) 1725", "interaction" : "interacts with", "SUID" : 43694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43706", "source" : "3225", "target" : "3861", "shared_name" : "1268 (interacts with) 23646", "name" : "1268 (interacts with) 23646", "interaction" : "interacts with", "SUID" : 43706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43702", "source" : "3225", "target" : "5541", "shared_name" : "1268 (interacts with) 2775", "name" : "1268 (interacts with) 2775", "interaction" : "interacts with", "SUID" : 43702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43698", "source" : "3225", "target" : "5569", "shared_name" : "1268 (interacts with) 59345", "name" : "1268 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 43698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43718", "source" : "3217", "target" : "1933", "shared_name" : "8139 (interacts with) 7335", "name" : "8139 (interacts with) 7335", "interaction" : "interacts with", "SUID" : 43718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43714", "source" : "3217", "target" : "961", "shared_name" : "8139 (interacts with) 7318", "name" : "8139 (interacts with) 7318", "interaction" : "interacts with", "SUID" : 43714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43710", "source" : "3217", "target" : "3729", "shared_name" : "8139 (interacts with) 7319", "name" : "8139 (interacts with) 7319", "interaction" : "interacts with", "SUID" : 43710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43766", "source" : "3209", "target" : "5597", "shared_name" : "166378 (interacts with) 22934", "name" : "166378 (interacts with) 22934", "interaction" : "interacts with", "SUID" : 43766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43762", "source" : "3209", "target" : "1749", "shared_name" : "166378 (interacts with) 728294", "name" : "166378 (interacts with) 728294", "interaction" : "interacts with", "SUID" : 43762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43758", "source" : "3209", "target" : "741", "shared_name" : "166378 (interacts with) 4830", "name" : "166378 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 43758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43754", "source" : "3209", "target" : "5825", "shared_name" : "166378 (interacts with) 4594", "name" : "166378 (interacts with) 4594", "interaction" : "interacts with", "SUID" : 43754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43750", "source" : "3209", "target" : "721", "shared_name" : "166378 (interacts with) 79731", "name" : "166378 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 43750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43746", "source" : "3209", "target" : "4693", "shared_name" : "166378 (interacts with) 6301", "name" : "166378 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 43746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43742", "source" : "3209", "target" : "737", "shared_name" : "166378 (interacts with) 2643", "name" : "166378 (interacts with) 2643", "interaction" : "interacts with", "SUID" : 43742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43738", "source" : "3209", "target" : "5677", "shared_name" : "166378 (interacts with) 5189", "name" : "166378 (interacts with) 5189", "interaction" : "interacts with", "SUID" : 43738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43734", "source" : "3209", "target" : "1657", "shared_name" : "166378 (interacts with) 3251", "name" : "166378 (interacts with) 3251", "interaction" : "interacts with", "SUID" : 43734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43730", "source" : "3209", "target" : "5109", "shared_name" : "166378 (interacts with) 790", "name" : "166378 (interacts with) 790", "interaction" : "interacts with", "SUID" : 43730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43726", "source" : "3209", "target" : "1601", "shared_name" : "166378 (interacts with) 7415", "name" : "166378 (interacts with) 7415", "interaction" : "interacts with", "SUID" : 43726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43722", "source" : "3209", "target" : "2609", "shared_name" : "166378 (interacts with) 29960", "name" : "166378 (interacts with) 29960", "interaction" : "interacts with", "SUID" : 43722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43778", "source" : "3205", "target" : "1509", "shared_name" : "862 (interacts with) 63976", "name" : "862 (interacts with) 63976", "interaction" : "interacts with", "SUID" : 43778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43774", "source" : "3205", "target" : "3101", "shared_name" : "862 (interacts with) 1822", "name" : "862 (interacts with) 1822", "interaction" : "interacts with", "SUID" : 43774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43770", "source" : "3205", "target" : "5161", "shared_name" : "862 (interacts with) 1786", "name" : "862 (interacts with) 1786", "interaction" : "interacts with", "SUID" : 43770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43818", "source" : "3201", "target" : "1549", "shared_name" : "1277 (interacts with) 7070", "name" : "1277 (interacts with) 7070", "interaction" : "interacts with", "SUID" : 43818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43814", "source" : "3201", "target" : "4789", "shared_name" : "1277 (interacts with) 1284", "name" : "1277 (interacts with) 1284", "interaction" : "interacts with", "SUID" : 43814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43810", "source" : "3201", "target" : "1497", "shared_name" : "1277 (interacts with) 3912", "name" : "1277 (interacts with) 3912", "interaction" : "interacts with", "SUID" : 43810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43806", "source" : "3201", "target" : "809", "shared_name" : "1277 (interacts with) 2335", "name" : "1277 (interacts with) 2335", "interaction" : "interacts with", "SUID" : 43806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43802", "source" : "3201", "target" : "1889", "shared_name" : "1277 (interacts with) 1490", "name" : "1277 (interacts with) 1490", "interaction" : "interacts with", "SUID" : 43802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43798", "source" : "3201", "target" : "2173", "shared_name" : "1277 (interacts with) 5159", "name" : "1277 (interacts with) 5159", "interaction" : "interacts with", "SUID" : 43798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43794", "source" : "3201", "target" : "1297", "shared_name" : "1277 (interacts with) 6678", "name" : "1277 (interacts with) 6678", "interaction" : "interacts with", "SUID" : 43794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43790", "source" : "3201", "target" : "265", "shared_name" : "1277 (interacts with) 1293", "name" : "1277 (interacts with) 1293", "interaction" : "interacts with", "SUID" : 43790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43786", "source" : "3201", "target" : "1145", "shared_name" : "1277 (interacts with) 1281", "name" : "1277 (interacts with) 1281", "interaction" : "interacts with", "SUID" : 43786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43782", "source" : "3201", "target" : "4001", "shared_name" : "1277 (interacts with) 79709", "name" : "1277 (interacts with) 79709", "interaction" : "interacts with", "SUID" : 43782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43858", "source" : "3197", "target" : "2841", "shared_name" : "64135 (interacts with) 7098", "name" : "64135 (interacts with) 7098", "interaction" : "interacts with", "SUID" : 43858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43854", "source" : "3197", "target" : "3705", "shared_name" : "64135 (interacts with) 87178", "name" : "64135 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 43854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43850", "source" : "3197", "target" : "593", "shared_name" : "64135 (interacts with) 8743", "name" : "64135 (interacts with) 8743", "interaction" : "interacts with", "SUID" : 43850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43846", "source" : "3197", "target" : "805", "shared_name" : "64135 (interacts with) 6772", "name" : "64135 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 43846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43842", "source" : "3197", "target" : "1605", "shared_name" : "64135 (interacts with) 6648", "name" : "64135 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 43842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43838", "source" : "3197", "target" : "4065", "shared_name" : "64135 (interacts with) 7124", "name" : "64135 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 43838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43834", "source" : "3197", "target" : "5293", "shared_name" : "64135 (interacts with) 54476", "name" : "64135 (interacts with) 54476", "interaction" : "interacts with", "SUID" : 43834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43830", "source" : "3197", "target" : "4581", "shared_name" : "64135 (interacts with) 29110", "name" : "64135 (interacts with) 29110", "interaction" : "interacts with", "SUID" : 43830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43826", "source" : "3197", "target" : "509", "shared_name" : "64135 (interacts with) 3661", "name" : "64135 (interacts with) 3661", "interaction" : "interacts with", "SUID" : 43826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43822", "source" : "3197", "target" : "5697", "shared_name" : "64135 (interacts with) 8517", "name" : "64135 (interacts with) 8517", "interaction" : "interacts with", "SUID" : 43822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43898", "source" : "3193", "target" : "897", "shared_name" : "197258 (interacts with) 3073", "name" : "197258 (interacts with) 3073", "interaction" : "interacts with", "SUID" : 43898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43894", "source" : "3193", "target" : "2421", "shared_name" : "197258 (interacts with) 2673", "name" : "197258 (interacts with) 2673", "interaction" : "interacts with", "SUID" : 43894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43890", "source" : "3193", "target" : "3161", "shared_name" : "197258 (interacts with) 2821", "name" : "197258 (interacts with) 2821", "interaction" : "interacts with", "SUID" : 43890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43886", "source" : "3193", "target" : "4577", "shared_name" : "197258 (interacts with) 7167", "name" : "197258 (interacts with) 7167", "interaction" : "interacts with", "SUID" : 43886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43882", "source" : "3193", "target" : "5717", "shared_name" : "197258 (interacts with) 29925", "name" : "197258 (interacts with) 29925", "interaction" : "interacts with", "SUID" : 43882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43878", "source" : "3193", "target" : "2633", "shared_name" : "197258 (interacts with) 29926", "name" : "197258 (interacts with) 29926", "interaction" : "interacts with", "SUID" : 43878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43874", "source" : "3193", "target" : "5401", "shared_name" : "197258 (interacts with) 5373", "name" : "197258 (interacts with) 5373", "interaction" : "interacts with", "SUID" : 43874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43870", "source" : "3193", "target" : "405", "shared_name" : "197258 (interacts with) 54187", "name" : "197258 (interacts with) 54187", "interaction" : "interacts with", "SUID" : 43870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43866", "source" : "3193", "target" : "285", "shared_name" : "197258 (interacts with) 5238", "name" : "197258 (interacts with) 5238", "interaction" : "interacts with", "SUID" : 43866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43862", "source" : "3193", "target" : "2409", "shared_name" : "197258 (interacts with) 3304", "name" : "197258 (interacts with) 3304", "interaction" : "interacts with", "SUID" : 43862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43918", "source" : "3189", "target" : "3397", "shared_name" : "2799 (interacts with) 4669", "name" : "2799 (interacts with) 4669", "interaction" : "interacts with", "SUID" : 43918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43914", "source" : "3189", "target" : "5657", "shared_name" : "2799 (interacts with) 4668", "name" : "2799 (interacts with) 4668", "interaction" : "interacts with", "SUID" : 43914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43910", "source" : "3189", "target" : "1925", "shared_name" : "2799 (interacts with) 948", "name" : "2799 (interacts with) 948", "interaction" : "interacts with", "SUID" : 43910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43906", "source" : "3189", "target" : "897", "shared_name" : "2799 (interacts with) 3073", "name" : "2799 (interacts with) 3073", "interaction" : "interacts with", "SUID" : 43906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43902", "source" : "3189", "target" : "5221", "shared_name" : "2799 (interacts with) 285362", "name" : "2799 (interacts with) 285362", "interaction" : "interacts with", "SUID" : 43902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43954", "source" : "3185", "target" : "4885", "shared_name" : "5053 (interacts with) 5340", "name" : "5053 (interacts with) 5340", "interaction" : "interacts with", "SUID" : 43954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43950", "source" : "3185", "target" : "3689", "shared_name" : "5053 (interacts with) 7054", "name" : "5053 (interacts with) 7054", "interaction" : "interacts with", "SUID" : 43950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43946", "source" : "3185", "target" : "5049", "shared_name" : "5053 (interacts with) 6697", "name" : "5053 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 43946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43942", "source" : "3185", "target" : "3929", "shared_name" : "5053 (interacts with) 5860", "name" : "5053 (interacts with) 5860", "interaction" : "interacts with", "SUID" : 43942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43938", "source" : "3185", "target" : "1013", "shared_name" : "5053 (interacts with) 6898", "name" : "5053 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 43938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43934", "source" : "3185", "target" : "3633", "shared_name" : "5053 (interacts with) 51067", "name" : "5053 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 43934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43930", "source" : "3185", "target" : "389", "shared_name" : "5053 (interacts with) 7299", "name" : "5053 (interacts with) 7299", "interaction" : "interacts with", "SUID" : 43930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43926", "source" : "3185", "target" : "2881", "shared_name" : "5053 (interacts with) 5160", "name" : "5053 (interacts with) 5160", "interaction" : "interacts with", "SUID" : 43926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43922", "source" : "3185", "target" : "1385", "shared_name" : "5053 (interacts with) 6520", "name" : "5053 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 43922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43958", "source" : "3181", "target" : "2297", "shared_name" : "54664 (interacts with) 55005", "name" : "54664 (interacts with) 55005", "interaction" : "interacts with", "SUID" : 43958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44074", "source" : "3177", "target" : "2153", "shared_name" : "5321 (interacts with) 7042", "name" : "5321 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 44074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44070", "source" : "3177", "target" : "3305", "shared_name" : "5321 (interacts with) 7040", "name" : "5321 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 44070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44066", "source" : "3177", "target" : "1069", "shared_name" : "5321 (interacts with) 5879", "name" : "5321 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 44066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44062", "source" : "3177", "target" : "4521", "shared_name" : "5321 (interacts with) 5894", "name" : "5321 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 44062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44058", "source" : "3177", "target" : "5361", "shared_name" : "5321 (interacts with) 5604", "name" : "5321 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 44058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44054", "source" : "3177", "target" : "1241", "shared_name" : "5321 (interacts with) 808", "name" : "5321 (interacts with) 808", "interaction" : "interacts with", "SUID" : 44054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44050", "source" : "3177", "target" : "1201", "shared_name" : "5321 (interacts with) 805", "name" : "5321 (interacts with) 805", "interaction" : "interacts with", "SUID" : 44050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44046", "source" : "3177", "target" : "637", "shared_name" : "5321 (interacts with) 6654", "name" : "5321 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 44046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44042", "source" : "3177", "target" : "3409", "shared_name" : "5321 (interacts with) 7043", "name" : "5321 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 44042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44038", "source" : "3177", "target" : "3593", "shared_name" : "5321 (interacts with) 5530", "name" : "5321 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 44038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44034", "source" : "3177", "target" : "805", "shared_name" : "5321 (interacts with) 6772", "name" : "5321 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 44034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44030", "source" : "3177", "target" : "5321", "shared_name" : "5321 (interacts with) 5743", "name" : "5321 (interacts with) 5743", "interaction" : "interacts with", "SUID" : 44030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44026", "source" : "3177", "target" : "1405", "shared_name" : "5321 (interacts with) 998", "name" : "5321 (interacts with) 998", "interaction" : "interacts with", "SUID" : 44026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44022", "source" : "3177", "target" : "681", "shared_name" : "5321 (interacts with) 6646", "name" : "5321 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 44022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44018", "source" : "3177", "target" : "409", "shared_name" : "5321 (interacts with) 10558", "name" : "5321 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 44018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44014", "source" : "3177", "target" : "3425", "shared_name" : "5321 (interacts with) 8803", "name" : "5321 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 44014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44010", "source" : "3177", "target" : "2925", "shared_name" : "5321 (interacts with) 8802", "name" : "5321 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 44010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44006", "source" : "3177", "target" : "5305", "shared_name" : "5321 (interacts with) 6901", "name" : "5321 (interacts with) 6901", "interaction" : "interacts with", "SUID" : 44006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44002", "source" : "3177", "target" : "1277", "shared_name" : "5321 (interacts with) 79143", "name" : "5321 (interacts with) 79143", "interaction" : "interacts with", "SUID" : 44002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43998", "source" : "3177", "target" : "3461", "shared_name" : "5321 (interacts with) 5538", "name" : "5321 (interacts with) 5538", "interaction" : "interacts with", "SUID" : 43998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43994", "source" : "3177", "target" : "4941", "shared_name" : "5321 (interacts with) 6342", "name" : "5321 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 43994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43990", "source" : "3177", "target" : "4937", "shared_name" : "5321 (interacts with) 1555", "name" : "5321 (interacts with) 1555", "interaction" : "interacts with", "SUID" : 43990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43986", "source" : "3177", "target" : "5093", "shared_name" : "5321 (interacts with) 113612", "name" : "5321 (interacts with) 113612", "interaction" : "interacts with", "SUID" : 43986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43982", "source" : "3177", "target" : "1569", "shared_name" : "5321 (interacts with) 1557", "name" : "5321 (interacts with) 1557", "interaction" : "interacts with", "SUID" : 43982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43978", "source" : "3177", "target" : "1733", "shared_name" : "5321 (interacts with) 6305", "name" : "5321 (interacts with) 6305", "interaction" : "interacts with", "SUID" : 43978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43974", "source" : "3177", "target" : "3853", "shared_name" : "5321 (interacts with) 6786", "name" : "5321 (interacts with) 6786", "interaction" : "interacts with", "SUID" : 43974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43970", "source" : "3177", "target" : "2873", "shared_name" : "5321 (interacts with) 6261", "name" : "5321 (interacts with) 6261", "interaction" : "interacts with", "SUID" : 43970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43966", "source" : "3177", "target" : "2853", "shared_name" : "5321 (interacts with) 8398", "name" : "5321 (interacts with) 8398", "interaction" : "interacts with", "SUID" : 43966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "43962", "source" : "3177", "target" : "3861", "shared_name" : "5321 (interacts with) 23646", "name" : "5321 (interacts with) 23646", "interaction" : "interacts with", "SUID" : 43962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44186", "source" : "3173", "target" : "973", "shared_name" : "3558 (interacts with) 5595", "name" : "3558 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 44186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44182", "source" : "3173", "target" : "4213", "shared_name" : "3558 (interacts with) 5295", "name" : "3558 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 44182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44178", "source" : "3173", "target" : "4949", "shared_name" : "3558 (interacts with) 5970", "name" : "3558 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 44178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44174", "source" : "3173", "target" : "5225", "shared_name" : "3558 (interacts with) 5290", "name" : "3558 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 44174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44170", "source" : "3173", "target" : "4521", "shared_name" : "3558 (interacts with) 5894", "name" : "3558 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 44170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44166", "source" : "3173", "target" : "3017", "shared_name" : "3558 (interacts with) 4790", "name" : "3558 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 44166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44162", "source" : "3173", "target" : "5361", "shared_name" : "3558 (interacts with) 5604", "name" : "3558 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 44162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44158", "source" : "3173", "target" : "4065", "shared_name" : "3558 (interacts with) 7124", "name" : "3558 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 44158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44154", "source" : "3173", "target" : "3305", "shared_name" : "3558 (interacts with) 7040", "name" : "3558 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 44154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44150", "source" : "3173", "target" : "637", "shared_name" : "3558 (interacts with) 6654", "name" : "3558 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 44150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44146", "source" : "3173", "target" : "2153", "shared_name" : "3558 (interacts with) 7042", "name" : "3558 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 44146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44142", "source" : "3173", "target" : "3409", "shared_name" : "3558 (interacts with) 7043", "name" : "3558 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 44142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44138", "source" : "3173", "target" : "4533", "shared_name" : "3558 (interacts with) 4089", "name" : "3558 (interacts with) 4089", "interaction" : "interacts with", "SUID" : 44138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44134", "source" : "3173", "target" : "569", "shared_name" : "3558 (interacts with) 7048", "name" : "3558 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 44134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44130", "source" : "3173", "target" : "6169", "shared_name" : "3558 (interacts with) 4088", "name" : "3558 (interacts with) 4088", "interaction" : "interacts with", "SUID" : 44130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44126", "source" : "3173", "target" : "2661", "shared_name" : "3558 (interacts with) 3606", "name" : "3558 (interacts with) 3606", "interaction" : "interacts with", "SUID" : 44126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44122", "source" : "3173", "target" : "1541", "shared_name" : "3558 (interacts with) 958", "name" : "3558 (interacts with) 958", "interaction" : "interacts with", "SUID" : 44122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44118", "source" : "3173", "target" : "6013", "shared_name" : "3558 (interacts with) 3574", "name" : "3558 (interacts with) 3574", "interaction" : "interacts with", "SUID" : 44118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44114", "source" : "3173", "target" : "3553", "shared_name" : "3558 (interacts with) 3592", "name" : "3558 (interacts with) 3592", "interaction" : "interacts with", "SUID" : 44114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44110", "source" : "3173", "target" : "3717", "shared_name" : "3558 (interacts with) 3593", "name" : "3558 (interacts with) 3593", "interaction" : "interacts with", "SUID" : 44110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44106", "source" : "3173", "target" : "593", "shared_name" : "3558 (interacts with) 8743", "name" : "3558 (interacts with) 8743", "interaction" : "interacts with", "SUID" : 44106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44102", "source" : "3173", "target" : "1701", "shared_name" : "3558 (interacts with) 5777", "name" : "3558 (interacts with) 5777", "interaction" : "interacts with", "SUID" : 44102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44098", "source" : "3173", "target" : "5461", "shared_name" : "3558 (interacts with) 4665", "name" : "3558 (interacts with) 4665", "interaction" : "interacts with", "SUID" : 44098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44094", "source" : "3173", "target" : "5729", "shared_name" : "3558 (interacts with) 861", "name" : "3558 (interacts with) 861", "interaction" : "interacts with", "SUID" : 44094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44090", "source" : "3173", "target" : "3569", "shared_name" : "3558 (interacts with) 4893", "name" : "3558 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 44090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44086", "source" : "3173", "target" : "3465", "shared_name" : "3558 (interacts with) 5296", "name" : "3558 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 44086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44082", "source" : "3173", "target" : "3573", "shared_name" : "3558 (interacts with) 3845", "name" : "3558 (interacts with) 3845", "interaction" : "interacts with", "SUID" : 44082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44078", "source" : "3173", "target" : "2333", "shared_name" : "3558 (interacts with) 3559", "name" : "3558 (interacts with) 3559", "interaction" : "interacts with", "SUID" : 44078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44370", "source" : "3169", "target" : "2457", "shared_name" : "1615 (interacts with) 4143", "name" : "1615 (interacts with) 4143", "interaction" : "interacts with", "SUID" : 44370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44366", "source" : "3169", "target" : "5717", "shared_name" : "1615 (interacts with) 29925", "name" : "1615 (interacts with) 29925", "interaction" : "interacts with", "SUID" : 44366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44362", "source" : "3169", "target" : "837", "shared_name" : "1615 (interacts with) 8892", "name" : "1615 (interacts with) 8892", "interaction" : "interacts with", "SUID" : 44362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44358", "source" : "3169", "target" : "1013", "shared_name" : "1615 (interacts with) 6898", "name" : "1615 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 44358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44354", "source" : "3169", "target" : "2337", "shared_name" : "1615 (interacts with) 28976", "name" : "1615 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 44354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44350", "source" : "3169", "target" : "3773", "shared_name" : "1615 (interacts with) 540", "name" : "1615 (interacts with) 540", "interaction" : "interacts with", "SUID" : 44350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44346", "source" : "3169", "target" : "3337", "shared_name" : "1615 (interacts with) 2639", "name" : "1615 (interacts with) 2639", "interaction" : "interacts with", "SUID" : 44346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44342", "source" : "3169", "target" : "4745", "shared_name" : "1615 (interacts with) 35", "name" : "1615 (interacts with) 35", "interaction" : "interacts with", "SUID" : 44342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44338", "source" : "3169", "target" : "2393", "shared_name" : "1615 (interacts with) 6683", "name" : "1615 (interacts with) 6683", "interaction" : "interacts with", "SUID" : 44338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44334", "source" : "3169", "target" : "5597", "shared_name" : "1615 (interacts with) 22934", "name" : "1615 (interacts with) 22934", "interaction" : "interacts with", "SUID" : 44334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44330", "source" : "3169", "target" : "4837", "shared_name" : "1615 (interacts with) 8891", "name" : "1615 (interacts with) 8891", "interaction" : "interacts with", "SUID" : 44330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44326", "source" : "3169", "target" : "3633", "shared_name" : "1615 (interacts with) 51067", "name" : "1615 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 44326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44322", "source" : "3169", "target" : "6001", "shared_name" : "1615 (interacts with) 55157", "name" : "1615 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 44322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44318", "source" : "3169", "target" : "1577", "shared_name" : "1615 (interacts with) 51091", "name" : "1615 (interacts with) 51091", "interaction" : "interacts with", "SUID" : 44318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44314", "source" : "3169", "target" : "4869", "shared_name" : "1615 (interacts with) 92935", "name" : "1615 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 44314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44310", "source" : "3169", "target" : "6049", "shared_name" : "1615 (interacts with) 25973", "name" : "1615 (interacts with) 25973", "interaction" : "interacts with", "SUID" : 44310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44306", "source" : "3169", "target" : "1197", "shared_name" : "1615 (interacts with) 79587", "name" : "1615 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 44306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44302", "source" : "3169", "target" : "721", "shared_name" : "1615 (interacts with) 79731", "name" : "1615 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 44302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44298", "source" : "3169", "target" : "4085", "shared_name" : "1615 (interacts with) 55699", "name" : "1615 (interacts with) 55699", "interaction" : "interacts with", "SUID" : 44298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44294", "source" : "3169", "target" : "4621", "shared_name" : "1615 (interacts with) 57038", "name" : "1615 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 44294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44290", "source" : "3169", "target" : "5189", "shared_name" : "1615 (interacts with) 57176", "name" : "1615 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 44290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44286", "source" : "3169", "target" : "1129", "shared_name" : "1615 (interacts with) 57505", "name" : "1615 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 44286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44282", "source" : "3169", "target" : "4593", "shared_name" : "1615 (interacts with) 2058", "name" : "1615 (interacts with) 2058", "interaction" : "interacts with", "SUID" : 44282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44278", "source" : "3169", "target" : "3529", "shared_name" : "1615 (interacts with) 7965", "name" : "1615 (interacts with) 7965", "interaction" : "interacts with", "SUID" : 44278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44274", "source" : "3169", "target" : "3157", "shared_name" : "1615 (interacts with) 9255", "name" : "1615 (interacts with) 9255", "interaction" : "interacts with", "SUID" : 44274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44270", "source" : "3169", "target" : "4229", "shared_name" : "1615 (interacts with) 3035", "name" : "1615 (interacts with) 3035", "interaction" : "interacts with", "SUID" : 44270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44266", "source" : "3169", "target" : "4597", "shared_name" : "1615 (interacts with) 3376", "name" : "1615 (interacts with) 3376", "interaction" : "interacts with", "SUID" : 44266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44262", "source" : "3169", "target" : "6157", "shared_name" : "1615 (interacts with) 3735", "name" : "1615 (interacts with) 3735", "interaction" : "interacts with", "SUID" : 44262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44258", "source" : "3169", "target" : "4349", "shared_name" : "1615 (interacts with) 5859", "name" : "1615 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 44258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44254", "source" : "3169", "target" : "3641", "shared_name" : "1615 (interacts with) 4141", "name" : "1615 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 44254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44250", "source" : "3169", "target" : "4693", "shared_name" : "1615 (interacts with) 6301", "name" : "1615 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 44250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44246", "source" : "3169", "target" : "3649", "shared_name" : "1615 (interacts with) 51520", "name" : "1615 (interacts with) 51520", "interaction" : "interacts with", "SUID" : 44246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44242", "source" : "3169", "target" : "1089", "shared_name" : "1615 (interacts with) 5917", "name" : "1615 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 44242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44238", "source" : "3169", "target" : "1581", "shared_name" : "1615 (interacts with) 7407", "name" : "1615 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 44238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44234", "source" : "3169", "target" : "741", "shared_name" : "1615 (interacts with) 4830", "name" : "1615 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 44234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44230", "source" : "3169", "target" : "5605", "shared_name" : "1615 (interacts with) 51601", "name" : "1615 (interacts with) 51601", "interaction" : "interacts with", "SUID" : 44230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44226", "source" : "3169", "target" : "1885", "shared_name" : "1615 (interacts with) 8604", "name" : "1615 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 44226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44222", "source" : "3169", "target" : "1385", "shared_name" : "1615 (interacts with) 6520", "name" : "1615 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 44222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44218", "source" : "3169", "target" : "3077", "shared_name" : "1615 (interacts with) 6506", "name" : "1615 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 44218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44214", "source" : "3169", "target" : "2049", "shared_name" : "1615 (interacts with) 4552", "name" : "1615 (interacts with) 4552", "interaction" : "interacts with", "SUID" : 44214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44210", "source" : "3169", "target" : "4273", "shared_name" : "1615 (interacts with) 4548", "name" : "1615 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 44210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44206", "source" : "3169", "target" : "461", "shared_name" : "1615 (interacts with) 5198", "name" : "1615 (interacts with) 5198", "interaction" : "interacts with", "SUID" : 44206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44202", "source" : "3169", "target" : "2577", "shared_name" : "1615 (interacts with) 4337", "name" : "1615 (interacts with) 4337", "interaction" : "interacts with", "SUID" : 44202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44198", "source" : "3169", "target" : "5529", "shared_name" : "1615 (interacts with) 2875", "name" : "1615 (interacts with) 2875", "interaction" : "interacts with", "SUID" : 44198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44194", "source" : "3169", "target" : "4093", "shared_name" : "1615 (interacts with) 2752", "name" : "1615 (interacts with) 2752", "interaction" : "interacts with", "SUID" : 44194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44190", "source" : "3169", "target" : "2421", "shared_name" : "1615 (interacts with) 2673", "name" : "1615 (interacts with) 2673", "interaction" : "interacts with", "SUID" : 44190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44378", "source" : "3165", "target" : "6121", "shared_name" : "23209 (interacts with) 2260", "name" : "23209 (interacts with) 2260", "interaction" : "interacts with", "SUID" : 44378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44374", "source" : "3165", "target" : "549", "shared_name" : "23209 (interacts with) 3954", "name" : "23209 (interacts with) 3954", "interaction" : "interacts with", "SUID" : 44374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44438", "source" : "3161", "target" : "4737", "shared_name" : "2821 (interacts with) 445", "name" : "2821 (interacts with) 445", "interaction" : "interacts with", "SUID" : 44438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44434", "source" : "3161", "target" : "2073", "shared_name" : "2821 (interacts with) 5393", "name" : "2821 (interacts with) 5393", "interaction" : "interacts with", "SUID" : 44434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44430", "source" : "3161", "target" : "693", "shared_name" : "2821 (interacts with) 7296", "name" : "2821 (interacts with) 7296", "interaction" : "interacts with", "SUID" : 44430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44426", "source" : "3161", "target" : "245", "shared_name" : "2821 (interacts with) 2936", "name" : "2821 (interacts with) 2936", "interaction" : "interacts with", "SUID" : 44426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44422", "source" : "3161", "target" : "397", "shared_name" : "2821 (interacts with) 50", "name" : "2821 (interacts with) 50", "interaction" : "interacts with", "SUID" : 44422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44418", "source" : "3161", "target" : "2369", "shared_name" : "2821 (interacts with) 51741", "name" : "2821 (interacts with) 51741", "interaction" : "interacts with", "SUID" : 44418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44414", "source" : "3161", "target" : "4749", "shared_name" : "2821 (interacts with) 3028", "name" : "2821 (interacts with) 3028", "interaction" : "interacts with", "SUID" : 44414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44410", "source" : "3161", "target" : "2633", "shared_name" : "2821 (interacts with) 29926", "name" : "2821 (interacts with) 29926", "interaction" : "interacts with", "SUID" : 44410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44406", "source" : "3161", "target" : "5717", "shared_name" : "2821 (interacts with) 29925", "name" : "2821 (interacts with) 29925", "interaction" : "interacts with", "SUID" : 44406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44402", "source" : "3161", "target" : "4577", "shared_name" : "2821 (interacts with) 7167", "name" : "2821 (interacts with) 7167", "interaction" : "interacts with", "SUID" : 44402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44398", "source" : "3161", "target" : "5401", "shared_name" : "2821 (interacts with) 5373", "name" : "2821 (interacts with) 5373", "interaction" : "interacts with", "SUID" : 44398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44394", "source" : "3161", "target" : "405", "shared_name" : "2821 (interacts with) 54187", "name" : "2821 (interacts with) 54187", "interaction" : "interacts with", "SUID" : 44394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44390", "source" : "3161", "target" : "285", "shared_name" : "2821 (interacts with) 5238", "name" : "2821 (interacts with) 5238", "interaction" : "interacts with", "SUID" : 44390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44386", "source" : "3161", "target" : "1257", "shared_name" : "2821 (interacts with) 3098", "name" : "2821 (interacts with) 3098", "interaction" : "interacts with", "SUID" : 44386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44382", "source" : "3161", "target" : "3977", "shared_name" : "2821 (interacts with) 51477", "name" : "2821 (interacts with) 51477", "interaction" : "interacts with", "SUID" : 44382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44526", "source" : "3157", "target" : "1385", "shared_name" : "9255 (interacts with) 6520", "name" : "9255 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 44526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44522", "source" : "3157", "target" : "1013", "shared_name" : "9255 (interacts with) 6898", "name" : "9255 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 44522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44518", "source" : "3157", "target" : "1885", "shared_name" : "9255 (interacts with) 8604", "name" : "9255 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 44518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44514", "source" : "3157", "target" : "3077", "shared_name" : "9255 (interacts with) 6506", "name" : "9255 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 44514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44510", "source" : "3157", "target" : "2049", "shared_name" : "9255 (interacts with) 4552", "name" : "9255 (interacts with) 4552", "interaction" : "interacts with", "SUID" : 44510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44506", "source" : "3157", "target" : "4273", "shared_name" : "9255 (interacts with) 4548", "name" : "9255 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 44506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44502", "source" : "3157", "target" : "461", "shared_name" : "9255 (interacts with) 5198", "name" : "9255 (interacts with) 5198", "interaction" : "interacts with", "SUID" : 44502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44498", "source" : "3157", "target" : "2577", "shared_name" : "9255 (interacts with) 4337", "name" : "9255 (interacts with) 4337", "interaction" : "interacts with", "SUID" : 44498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44494", "source" : "3157", "target" : "5529", "shared_name" : "9255 (interacts with) 2875", "name" : "9255 (interacts with) 2875", "interaction" : "interacts with", "SUID" : 44494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44490", "source" : "3157", "target" : "1313", "shared_name" : "9255 (interacts with) 1727", "name" : "9255 (interacts with) 1727", "interaction" : "interacts with", "SUID" : 44490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44486", "source" : "3157", "target" : "4093", "shared_name" : "9255 (interacts with) 2752", "name" : "9255 (interacts with) 2752", "interaction" : "interacts with", "SUID" : 44486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44482", "source" : "3157", "target" : "2421", "shared_name" : "9255 (interacts with) 2673", "name" : "9255 (interacts with) 2673", "interaction" : "interacts with", "SUID" : 44482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44478", "source" : "3157", "target" : "5109", "shared_name" : "9255 (interacts with) 790", "name" : "9255 (interacts with) 790", "interaction" : "interacts with", "SUID" : 44478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44474", "source" : "3157", "target" : "597", "shared_name" : "9255 (interacts with) 271", "name" : "9255 (interacts with) 271", "interaction" : "interacts with", "SUID" : 44474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44470", "source" : "3157", "target" : "589", "shared_name" : "9255 (interacts with) 270", "name" : "9255 (interacts with) 270", "interaction" : "interacts with", "SUID" : 44470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44466", "source" : "3157", "target" : "2177", "shared_name" : "9255 (interacts with) 443", "name" : "9255 (interacts with) 443", "interaction" : "interacts with", "SUID" : 44466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44462", "source" : "3157", "target" : "5349", "shared_name" : "9255 (interacts with) 440", "name" : "9255 (interacts with) 440", "interaction" : "interacts with", "SUID" : 44462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44458", "source" : "3157", "target" : "4597", "shared_name" : "9255 (interacts with) 3376", "name" : "9255 (interacts with) 3376", "interaction" : "interacts with", "SUID" : 44458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44454", "source" : "3157", "target" : "4593", "shared_name" : "9255 (interacts with) 2058", "name" : "9255 (interacts with) 2058", "interaction" : "interacts with", "SUID" : 44454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44450", "source" : "3157", "target" : "3169", "shared_name" : "9255 (interacts with) 1615", "name" : "9255 (interacts with) 1615", "interaction" : "interacts with", "SUID" : 44450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44446", "source" : "3157", "target" : "3529", "shared_name" : "9255 (interacts with) 7965", "name" : "9255 (interacts with) 7965", "interaction" : "interacts with", "SUID" : 44446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44442", "source" : "3157", "target" : "3641", "shared_name" : "9255 (interacts with) 4141", "name" : "9255 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 44442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44546", "source" : "3153", "target" : "4161", "shared_name" : "3684 (interacts with) 4318", "name" : "3684 (interacts with) 4318", "interaction" : "interacts with", "SUID" : 44546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44542", "source" : "3153", "target" : "4065", "shared_name" : "3684 (interacts with) 7124", "name" : "3684 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 44542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44538", "source" : "3153", "target" : "2805", "shared_name" : "3684 (interacts with) 83700", "name" : "3684 (interacts with) 83700", "interaction" : "interacts with", "SUID" : 44538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44534", "source" : "3153", "target" : "5801", "shared_name" : "3684 (interacts with) 960", "name" : "3684 (interacts with) 960", "interaction" : "interacts with", "SUID" : 44534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44530", "source" : "3153", "target" : "4989", "shared_name" : "3684 (interacts with) 51227", "name" : "3684 (interacts with) 51227", "interaction" : "interacts with", "SUID" : 44530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44602", "source" : "3149", "target" : "1957", "shared_name" : "3630 (interacts with) 1312", "name" : "3630 (interacts with) 1312", "interaction" : "interacts with", "SUID" : 44602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44598", "source" : "3149", "target" : "2081", "shared_name" : "3630 (interacts with) 5468", "name" : "3630 (interacts with) 5468", "interaction" : "interacts with", "SUID" : 44598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44594", "source" : "3149", "target" : "3925", "shared_name" : "3630 (interacts with) 1051", "name" : "3630 (interacts with) 1051", "interaction" : "interacts with", "SUID" : 44594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44590", "source" : "3149", "target" : "545", "shared_name" : "3630 (interacts with) 51014", "name" : "3630 (interacts with) 51014", "interaction" : "interacts with", "SUID" : 44590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44586", "source" : "3149", "target" : "5749", "shared_name" : "3630 (interacts with) 10959", "name" : "3630 (interacts with) 10959", "interaction" : "interacts with", "SUID" : 44586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44582", "source" : "3149", "target" : "3637", "shared_name" : "3630 (interacts with) 6712", "name" : "3630 (interacts with) 6712", "interaction" : "interacts with", "SUID" : 44582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44578", "source" : "3149", "target" : "1633", "shared_name" : "3630 (interacts with) 57731", "name" : "3630 (interacts with) 57731", "interaction" : "interacts with", "SUID" : 44578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44574", "source" : "3149", "target" : "1973", "shared_name" : "3630 (interacts with) 6709", "name" : "3630 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 44574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44570", "source" : "3149", "target" : "5641", "shared_name" : "3630 (interacts with) 5518", "name" : "3630 (interacts with) 5518", "interaction" : "interacts with", "SUID" : 44570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44566", "source" : "3149", "target" : "1029", "shared_name" : "3630 (interacts with) 5080", "name" : "3630 (interacts with) 5080", "interaction" : "interacts with", "SUID" : 44566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44562", "source" : "3149", "target" : "4873", "shared_name" : "3630 (interacts with) 4644", "name" : "3630 (interacts with) 4644", "interaction" : "interacts with", "SUID" : 44562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44558", "source" : "3149", "target" : "3821", "shared_name" : "3630 (interacts with) 10891", "name" : "3630 (interacts with) 10891", "interaction" : "interacts with", "SUID" : 44558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44554", "source" : "3149", "target" : "5037", "shared_name" : "3630 (interacts with) 5515", "name" : "3630 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 44554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44550", "source" : "3149", "target" : "665", "shared_name" : "3630 (interacts with) 3309", "name" : "3630 (interacts with) 3309", "interaction" : "interacts with", "SUID" : 44550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44650", "source" : "3141", "target" : "1377", "shared_name" : "10456 (interacts with) 81570", "name" : "10456 (interacts with) 81570", "interaction" : "interacts with", "SUID" : 44650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44646", "source" : "3141", "target" : "3929", "shared_name" : "10456 (interacts with) 5860", "name" : "10456 (interacts with) 5860", "interaction" : "interacts with", "SUID" : 44646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44642", "source" : "3141", "target" : "609", "shared_name" : "10456 (interacts with) 6812", "name" : "10456 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 44642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44638", "source" : "3141", "target" : "1273", "shared_name" : "10456 (interacts with) 10059", "name" : "10456 (interacts with) 10059", "interaction" : "interacts with", "SUID" : 44638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44634", "source" : "3141", "target" : "3961", "shared_name" : "10456 (interacts with) 3897", "name" : "10456 (interacts with) 3897", "interaction" : "interacts with", "SUID" : 44634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44630", "source" : "3141", "target" : "2553", "shared_name" : "10456 (interacts with) 815", "name" : "10456 (interacts with) 815", "interaction" : "interacts with", "SUID" : 44630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44626", "source" : "3141", "target" : "1245", "shared_name" : "10456 (interacts with) 4137", "name" : "10456 (interacts with) 4137", "interaction" : "interacts with", "SUID" : 44626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44622", "source" : "3141", "target" : "2197", "shared_name" : "10456 (interacts with) 4684", "name" : "10456 (interacts with) 4684", "interaction" : "interacts with", "SUID" : 44622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44618", "source" : "3141", "target" : "2605", "shared_name" : "10456 (interacts with) 2824", "name" : "10456 (interacts with) 2824", "interaction" : "interacts with", "SUID" : 44618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44614", "source" : "3141", "target" : "1801", "shared_name" : "10456 (interacts with) 1641", "name" : "10456 (interacts with) 1641", "interaction" : "interacts with", "SUID" : 44614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44610", "source" : "3141", "target" : "4013", "shared_name" : "10456 (interacts with) 6622", "name" : "10456 (interacts with) 6622", "interaction" : "interacts with", "SUID" : 44610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44606", "source" : "3141", "target" : "5785", "shared_name" : "10456 (interacts with) 6857", "name" : "10456 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 44606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44674", "source" : "3133", "target" : "2877", "shared_name" : "2006 (interacts with) 340024", "name" : "2006 (interacts with) 340024", "interaction" : "interacts with", "SUID" : 44674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44670", "source" : "3133", "target" : "4781", "shared_name" : "2006 (interacts with) 80781", "name" : "2006 (interacts with) 80781", "interaction" : "interacts with", "SUID" : 44670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44666", "source" : "3133", "target" : "4309", "shared_name" : "2006 (interacts with) 5654", "name" : "2006 (interacts with) 5654", "interaction" : "interacts with", "SUID" : 44666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44662", "source" : "3133", "target" : "2193", "shared_name" : "2006 (interacts with) 4052", "name" : "2006 (interacts with) 4052", "interaction" : "interacts with", "SUID" : 44662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44658", "source" : "3133", "target" : "1789", "shared_name" : "2006 (interacts with) 652", "name" : "2006 (interacts with) 652", "interaction" : "interacts with", "SUID" : 44658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44654", "source" : "3133", "target" : "2237", "shared_name" : "2006 (interacts with) 10516", "name" : "2006 (interacts with) 10516", "interaction" : "interacts with", "SUID" : 44654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44686", "source" : "3129", "target" : "3605", "shared_name" : "4125 (interacts with) 7841", "name" : "4125 (interacts with) 7841", "interaction" : "interacts with", "SUID" : 44686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44682", "source" : "3129", "target" : "2681", "shared_name" : "4125 (interacts with) 4126", "name" : "4125 (interacts with) 4126", "interaction" : "interacts with", "SUID" : 44682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44678", "source" : "3129", "target" : "5049", "shared_name" : "4125 (interacts with) 6697", "name" : "4125 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 44678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44710", "source" : "3125", "target" : "329", "shared_name" : "5376 (interacts with) 4359", "name" : "5376 (interacts with) 4359", "interaction" : "interacts with", "SUID" : 44710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44706", "source" : "3125", "target" : "997", "shared_name" : "5376 (interacts with) 7431", "name" : "5376 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 44706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44702", "source" : "3125", "target" : "3725", "shared_name" : "5376 (interacts with) 10159", "name" : "5376 (interacts with) 10159", "interaction" : "interacts with", "SUID" : 44702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44698", "source" : "3125", "target" : "1481", "shared_name" : "5376 (interacts with) 3763", "name" : "5376 (interacts with) 3763", "interaction" : "interacts with", "SUID" : 44698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44694", "source" : "3125", "target" : "5961", "shared_name" : "5376 (interacts with) 10682", "name" : "5376 (interacts with) 10682", "interaction" : "interacts with", "SUID" : 44694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44690", "source" : "3125", "target" : "6005", "shared_name" : "5376 (interacts with) 4988", "name" : "5376 (interacts with) 4988", "interaction" : "interacts with", "SUID" : 44690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44714", "source" : "3117", "target" : "989", "shared_name" : "84668 (interacts with) 5297", "name" : "84668 (interacts with) 5297", "interaction" : "interacts with", "SUID" : 44714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44726", "source" : "3113", "target" : "4721", "shared_name" : "4338 (interacts with) 5805", "name" : "4338 (interacts with) 5805", "interaction" : "interacts with", "SUID" : 44726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44722", "source" : "3113", "target" : "5049", "shared_name" : "4338 (interacts with) 6697", "name" : "4338 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 44722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44718", "source" : "3113", "target" : "3929", "shared_name" : "4338 (interacts with) 5860", "name" : "4338 (interacts with) 5860", "interaction" : "interacts with", "SUID" : 44718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44754", "source" : "3109", "target" : "417", "shared_name" : "5450 (interacts with) 6689", "name" : "5450 (interacts with) 6689", "interaction" : "interacts with", "SUID" : 44754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44750", "source" : "3109", "target" : "2389", "shared_name" : "5450 (interacts with) 6925", "name" : "5450 (interacts with) 6925", "interaction" : "interacts with", "SUID" : 44750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44746", "source" : "3109", "target" : "1765", "shared_name" : "5450 (interacts with) 5308", "name" : "5450 (interacts with) 5308", "interaction" : "interacts with", "SUID" : 44746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44742", "source" : "3109", "target" : "2909", "shared_name" : "5450 (interacts with) 23126", "name" : "5450 (interacts with) 23126", "interaction" : "interacts with", "SUID" : 44742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44738", "source" : "3109", "target" : "3761", "shared_name" : "5450 (interacts with) 25915", "name" : "5450 (interacts with) 25915", "interaction" : "interacts with", "SUID" : 44738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44734", "source" : "3109", "target" : "2917", "shared_name" : "5450 (interacts with) 5451", "name" : "5450 (interacts with) 5451", "interaction" : "interacts with", "SUID" : 44734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44730", "source" : "3109", "target" : "2473", "shared_name" : "5450 (interacts with) 10342", "name" : "5450 (interacts with) 10342", "interaction" : "interacts with", "SUID" : 44730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44770", "source" : "3105", "target" : "4097", "shared_name" : "8289 (interacts with) 9611", "name" : "8289 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 44770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44766", "source" : "3105", "target" : "5729", "shared_name" : "8289 (interacts with) 861", "name" : "8289 (interacts with) 861", "interaction" : "interacts with", "SUID" : 44766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44762", "source" : "3105", "target" : "3093", "shared_name" : "8289 (interacts with) 6597", "name" : "8289 (interacts with) 6597", "interaction" : "interacts with", "SUID" : 44762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44758", "source" : "3105", "target" : "525", "shared_name" : "8289 (interacts with) 6598", "name" : "8289 (interacts with) 6598", "interaction" : "interacts with", "SUID" : 44758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44786", "source" : "3101", "target" : "817", "shared_name" : "1822 (interacts with) 5728", "name" : "1822 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 44786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44782", "source" : "3101", "target" : "5369", "shared_name" : "1822 (interacts with) 473", "name" : "1822 (interacts with) 473", "interaction" : "interacts with", "SUID" : 44782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44778", "source" : "3101", "target" : "1765", "shared_name" : "1822 (interacts with) 5308", "name" : "1822 (interacts with) 5308", "interaction" : "interacts with", "SUID" : 44778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44774", "source" : "3101", "target" : "1877", "shared_name" : "1822 (interacts with) 9531", "name" : "1822 (interacts with) 9531", "interaction" : "interacts with", "SUID" : 44774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44822", "source" : "3097", "target" : "3705", "shared_name" : "11340 (interacts with) 87178", "name" : "11340 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 44822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44818", "source" : "3097", "target" : "3161", "shared_name" : "11340 (interacts with) 2821", "name" : "11340 (interacts with) 2821", "interaction" : "interacts with", "SUID" : 44818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44814", "source" : "3097", "target" : "4417", "shared_name" : "11340 (interacts with) 1656", "name" : "11340 (interacts with) 1656", "interaction" : "interacts with", "SUID" : 44814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44810", "source" : "3097", "target" : "1725", "shared_name" : "11340 (interacts with) 23019", "name" : "11340 (interacts with) 23019", "interaction" : "interacts with", "SUID" : 44810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44806", "source" : "3097", "target" : "2361", "shared_name" : "11340 (interacts with) 51010", "name" : "11340 (interacts with) 51010", "interaction" : "interacts with", "SUID" : 44806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44802", "source" : "3097", "target" : "4733", "shared_name" : "11340 (interacts with) 23404", "name" : "11340 (interacts with) 23404", "interaction" : "interacts with", "SUID" : 44802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44798", "source" : "3097", "target" : "2073", "shared_name" : "11340 (interacts with) 5393", "name" : "11340 (interacts with) 5393", "interaction" : "interacts with", "SUID" : 44798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44794", "source" : "3097", "target" : "5913", "shared_name" : "11340 (interacts with) 3767", "name" : "11340 (interacts with) 3767", "interaction" : "interacts with", "SUID" : 44794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44790", "source" : "3097", "target" : "1085", "shared_name" : "11340 (interacts with) 9377", "name" : "11340 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 44790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44858", "source" : "3093", "target" : "1285", "shared_name" : "6597 (interacts with) 7249", "name" : "6597 (interacts with) 7249", "interaction" : "interacts with", "SUID" : 44858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44854", "source" : "3093", "target" : "2305", "shared_name" : "6597 (interacts with) 6908", "name" : "6597 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 44854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44850", "source" : "3093", "target" : "1829", "shared_name" : "6597 (interacts with) 7421", "name" : "6597 (interacts with) 7421", "interaction" : "interacts with", "SUID" : 44850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44846", "source" : "3093", "target" : "4097", "shared_name" : "6597 (interacts with) 9611", "name" : "6597 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 44846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44842", "source" : "3093", "target" : "525", "shared_name" : "6597 (interacts with) 6598", "name" : "6597 (interacts with) 6598", "interaction" : "interacts with", "SUID" : 44842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44838", "source" : "3093", "target" : "4629", "shared_name" : "6597 (interacts with) 6605", "name" : "6597 (interacts with) 6605", "interaction" : "interacts with", "SUID" : 44838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44834", "source" : "3093", "target" : "4765", "shared_name" : "6597 (interacts with) 7015", "name" : "6597 (interacts with) 7015", "interaction" : "interacts with", "SUID" : 44834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44830", "source" : "3093", "target" : "3105", "shared_name" : "6597 (interacts with) 8289", "name" : "6597 (interacts with) 8289", "interaction" : "interacts with", "SUID" : 44830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44826", "source" : "3093", "target" : "3069", "shared_name" : "6597 (interacts with) 57492", "name" : "6597 (interacts with) 57492", "interaction" : "interacts with", "SUID" : 44826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44866", "source" : "3089", "target" : "1337", "shared_name" : "51002 (interacts with) 55863", "name" : "51002 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 44866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44862", "source" : "3089", "target" : "709", "shared_name" : "51002 (interacts with) 112858", "name" : "51002 (interacts with) 112858", "interaction" : "interacts with", "SUID" : 44862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44878", "source" : "3085", "target" : "981", "shared_name" : "57026 (interacts with) 7157", "name" : "57026 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 44878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44874", "source" : "3085", "target" : "2161", "shared_name" : "57026 (interacts with) 55163", "name" : "57026 (interacts with) 55163", "interaction" : "interacts with", "SUID" : 44874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44870", "source" : "3085", "target" : "233", "shared_name" : "57026 (interacts with) 8566", "name" : "57026 (interacts with) 8566", "interaction" : "interacts with", "SUID" : 44870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44938", "source" : "3077", "target" : "2321", "shared_name" : "6506 (interacts with) 6509", "name" : "6506 (interacts with) 6509", "interaction" : "interacts with", "SUID" : 44938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44934", "source" : "3077", "target" : "609", "shared_name" : "6506 (interacts with) 6812", "name" : "6506 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 44934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44930", "source" : "3077", "target" : "5785", "shared_name" : "6506 (interacts with) 6857", "name" : "6506 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 44930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44926", "source" : "3077", "target" : "3845", "shared_name" : "6506 (interacts with) 10479", "name" : "6506 (interacts with) 10479", "interaction" : "interacts with", "SUID" : 44926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44922", "source" : "3077", "target" : "5929", "shared_name" : "6506 (interacts with) 6616", "name" : "6506 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 44922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44918", "source" : "3077", "target" : "277", "shared_name" : "6506 (interacts with) 285175", "name" : "6506 (interacts with) 285175", "interaction" : "interacts with", "SUID" : 44918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44914", "source" : "3077", "target" : "2721", "shared_name" : "6506 (interacts with) 79751", "name" : "6506 (interacts with) 79751", "interaction" : "interacts with", "SUID" : 44914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44910", "source" : "3077", "target" : "1385", "shared_name" : "6506 (interacts with) 6520", "name" : "6506 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 44910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44906", "source" : "3077", "target" : "1885", "shared_name" : "6506 (interacts with) 8604", "name" : "6506 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 44906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44902", "source" : "3077", "target" : "3601", "shared_name" : "6506 (interacts with) 6531", "name" : "6506 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 44902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44898", "source" : "3077", "target" : "401", "shared_name" : "6506 (interacts with) 6532", "name" : "6506 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 44898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44894", "source" : "3077", "target" : "3781", "shared_name" : "6506 (interacts with) 9152", "name" : "6506 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 44894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44890", "source" : "3077", "target" : "5877", "shared_name" : "6506 (interacts with) 6535", "name" : "6506 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 44890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44886", "source" : "3077", "target" : "1809", "shared_name" : "6506 (interacts with) 6548", "name" : "6506 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 44886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44882", "source" : "3077", "target" : "3473", "shared_name" : "6506 (interacts with) 6528", "name" : "6506 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 44882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44978", "source" : "3073", "target" : "5509", "shared_name" : "182 (interacts with) 207", "name" : "182 (interacts with) 207", "interaction" : "interacts with", "SUID" : 44978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44974", "source" : "3073", "target" : "1069", "shared_name" : "182 (interacts with) 5879", "name" : "182 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 44974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44970", "source" : "3073", "target" : "2085", "shared_name" : "182 (interacts with) 2932", "name" : "182 (interacts with) 2932", "interaction" : "interacts with", "SUID" : 44970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44966", "source" : "3073", "target" : "2905", "shared_name" : "182 (interacts with) 5664", "name" : "182 (interacts with) 5664", "interaction" : "interacts with", "SUID" : 44966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44962", "source" : "3073", "target" : "1225", "shared_name" : "182 (interacts with) 375", "name" : "182 (interacts with) 375", "interaction" : "interacts with", "SUID" : 44962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44958", "source" : "3073", "target" : "5773", "shared_name" : "182 (interacts with) 9181", "name" : "182 (interacts with) 9181", "interaction" : "interacts with", "SUID" : 44958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44954", "source" : "3073", "target" : "5409", "shared_name" : "182 (interacts with) 9734", "name" : "182 (interacts with) 9734", "interaction" : "interacts with", "SUID" : 44954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44950", "source" : "3073", "target" : "4345", "shared_name" : "182 (interacts with) 4854", "name" : "182 (interacts with) 4854", "interaction" : "interacts with", "SUID" : 44950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44946", "source" : "3073", "target" : "2401", "shared_name" : "182 (interacts with) 28514", "name" : "182 (interacts with) 28514", "interaction" : "interacts with", "SUID" : 44946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44942", "source" : "3073", "target" : "2213", "shared_name" : "182 (interacts with) 4851", "name" : "182 (interacts with) 4851", "interaction" : "interacts with", "SUID" : 44942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44998", "source" : "3069", "target" : "525", "shared_name" : "57492 (interacts with) 6598", "name" : "57492 (interacts with) 6598", "interaction" : "interacts with", "SUID" : 44998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44994", "source" : "3069", "target" : "4629", "shared_name" : "57492 (interacts with) 6605", "name" : "57492 (interacts with) 6605", "interaction" : "interacts with", "SUID" : 44994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44990", "source" : "3069", "target" : "3093", "shared_name" : "57492 (interacts with) 6597", "name" : "57492 (interacts with) 6597", "interaction" : "interacts with", "SUID" : 44990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44986", "source" : "3069", "target" : "3105", "shared_name" : "57492 (interacts with) 8289", "name" : "57492 (interacts with) 8289", "interaction" : "interacts with", "SUID" : 44986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "44982", "source" : "3069", "target" : "5729", "shared_name" : "57492 (interacts with) 861", "name" : "57492 (interacts with) 861", "interaction" : "interacts with", "SUID" : 44982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45110", "source" : "3065", "target" : "3633", "shared_name" : "25828 (interacts with) 51067", "name" : "25828 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 45110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45106", "source" : "3065", "target" : "2337", "shared_name" : "25828 (interacts with) 28976", "name" : "25828 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 45106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45102", "source" : "3065", "target" : "1129", "shared_name" : "25828 (interacts with) 57505", "name" : "25828 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 45102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45098", "source" : "3065", "target" : "477", "shared_name" : "25828 (interacts with) 51021", "name" : "25828 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 45098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45094", "source" : "3065", "target" : "3545", "shared_name" : "25828 (interacts with) 708", "name" : "25828 (interacts with) 708", "interaction" : "interacts with", "SUID" : 45094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45090", "source" : "3065", "target" : "501", "shared_name" : "25828 (interacts with) 65993", "name" : "25828 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 45090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45086", "source" : "3065", "target" : "3973", "shared_name" : "25828 (interacts with) 55572", "name" : "25828 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 45086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45082", "source" : "3065", "target" : "713", "shared_name" : "25828 (interacts with) 7019", "name" : "25828 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 45082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45078", "source" : "3065", "target" : "1197", "shared_name" : "25828 (interacts with) 79587", "name" : "25828 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 45078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45074", "source" : "3065", "target" : "4869", "shared_name" : "25828 (interacts with) 92935", "name" : "25828 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 45074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45070", "source" : "3065", "target" : "4101", "shared_name" : "25828 (interacts with) 65260", "name" : "25828 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 45070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45066", "source" : "3065", "target" : "2109", "shared_name" : "25828 (interacts with) 51103", "name" : "25828 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 45066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45062", "source" : "3065", "target" : "6001", "shared_name" : "25828 (interacts with) 55157", "name" : "25828 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 45062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45058", "source" : "3065", "target" : "5085", "shared_name" : "25828 (interacts with) 56652", "name" : "25828 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 45058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45054", "source" : "3065", "target" : "6073", "shared_name" : "25828 (interacts with) 92170", "name" : "25828 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 45054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45050", "source" : "3065", "target" : "2021", "shared_name" : "25828 (interacts with) 5428", "name" : "25828 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 45050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45046", "source" : "3065", "target" : "2901", "shared_name" : "25828 (interacts with) 6647", "name" : "25828 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 45046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45042", "source" : "3065", "target" : "245", "shared_name" : "25828 (interacts with) 2936", "name" : "25828 (interacts with) 2936", "interaction" : "interacts with", "SUID" : 45042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45038", "source" : "3065", "target" : "517", "shared_name" : "25828 (interacts with) 5052", "name" : "25828 (interacts with) 5052", "interaction" : "interacts with", "SUID" : 45038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45034", "source" : "3065", "target" : "1253", "shared_name" : "25828 (interacts with) 2876", "name" : "25828 (interacts with) 2876", "interaction" : "interacts with", "SUID" : 45034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45030", "source" : "3065", "target" : "1605", "shared_name" : "25828 (interacts with) 6648", "name" : "25828 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 45030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45026", "source" : "3065", "target" : "6189", "shared_name" : "25828 (interacts with) 54676", "name" : "25828 (interacts with) 54676", "interaction" : "interacts with", "SUID" : 45026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45022", "source" : "3065", "target" : "5597", "shared_name" : "25828 (interacts with) 22934", "name" : "25828 (interacts with) 22934", "interaction" : "interacts with", "SUID" : 45022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45018", "source" : "3065", "target" : "1745", "shared_name" : "25828 (interacts with) 129831", "name" : "25828 (interacts with) 129831", "interaction" : "interacts with", "SUID" : 45018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45014", "source" : "3065", "target" : "3329", "shared_name" : "25828 (interacts with) 5824", "name" : "25828 (interacts with) 5824", "interaction" : "interacts with", "SUID" : 45014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45010", "source" : "3065", "target" : "5613", "shared_name" : "25828 (interacts with) 5119", "name" : "25828 (interacts with) 5119", "interaction" : "interacts with", "SUID" : 45010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45006", "source" : "3065", "target" : "5933", "shared_name" : "25828 (interacts with) 23474", "name" : "25828 (interacts with) 23474", "interaction" : "interacts with", "SUID" : 45006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45002", "source" : "3065", "target" : "965", "shared_name" : "25828 (interacts with) 79991", "name" : "25828 (interacts with) 79991", "interaction" : "interacts with", "SUID" : 45002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45122", "source" : "3061", "target" : "2657", "shared_name" : "4155 (interacts with) 6900", "name" : "4155 (interacts with) 6900", "interaction" : "interacts with", "SUID" : 45122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45118", "source" : "3061", "target" : "2693", "shared_name" : "4155 (interacts with) 5375", "name" : "4155 (interacts with) 5375", "interaction" : "interacts with", "SUID" : 45118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45114", "source" : "3061", "target" : "4477", "shared_name" : "4155 (interacts with) 5354", "name" : "4155 (interacts with) 5354", "interaction" : "interacts with", "SUID" : 45114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45154", "source" : "3057", "target" : "5693", "shared_name" : "5592 (interacts with) 92335", "name" : "5592 (interacts with) 92335", "interaction" : "interacts with", "SUID" : 45154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45150", "source" : "3057", "target" : "4697", "shared_name" : "5592 (interacts with) 7534", "name" : "5592 (interacts with) 7534", "interaction" : "interacts with", "SUID" : 45150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45146", "source" : "3057", "target" : "4521", "shared_name" : "5592 (interacts with) 5894", "name" : "5592 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 45146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45142", "source" : "3057", "target" : "401", "shared_name" : "5592 (interacts with) 6532", "name" : "5592 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 45142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45138", "source" : "3057", "target" : "4721", "shared_name" : "5592 (interacts with) 5805", "name" : "5592 (interacts with) 5805", "interaction" : "interacts with", "SUID" : 45138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45134", "source" : "3057", "target" : "2873", "shared_name" : "5592 (interacts with) 6261", "name" : "5592 (interacts with) 6261", "interaction" : "interacts with", "SUID" : 45134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45130", "source" : "3057", "target" : "1861", "shared_name" : "5592 (interacts with) 3708", "name" : "5592 (interacts with) 3708", "interaction" : "interacts with", "SUID" : 45130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45126", "source" : "3057", "target" : "5681", "shared_name" : "5592 (interacts with) 3315", "name" : "5592 (interacts with) 3315", "interaction" : "interacts with", "SUID" : 45126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45190", "source" : "3053", "target" : "2853", "shared_name" : "23299 (interacts with) 8398", "name" : "23299 (interacts with) 8398", "interaction" : "interacts with", "SUID" : 45190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45186", "source" : "3053", "target" : "3177", "shared_name" : "23299 (interacts with) 5321", "name" : "23299 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 45186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45182", "source" : "3053", "target" : "5129", "shared_name" : "23299 (interacts with) 57465", "name" : "23299 (interacts with) 57465", "interaction" : "interacts with", "SUID" : 45182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45178", "source" : "3053", "target" : "5137", "shared_name" : "23299 (interacts with) 25782", "name" : "23299 (interacts with) 25782", "interaction" : "interacts with", "SUID" : 45178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45174", "source" : "3053", "target" : "5429", "shared_name" : "23299 (interacts with) 5048", "name" : "23299 (interacts with) 5048", "interaction" : "interacts with", "SUID" : 45174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45170", "source" : "3053", "target" : "2513", "shared_name" : "23299 (interacts with) 22931", "name" : "23299 (interacts with) 22931", "interaction" : "interacts with", "SUID" : 45170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45166", "source" : "3053", "target" : "1321", "shared_name" : "23299 (interacts with) 1778", "name" : "23299 (interacts with) 1778", "interaction" : "interacts with", "SUID" : 45166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45162", "source" : "3053", "target" : "3785", "shared_name" : "23299 (interacts with) 1781", "name" : "23299 (interacts with) 1781", "interaction" : "interacts with", "SUID" : 45162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45158", "source" : "3053", "target" : "2977", "shared_name" : "23299 (interacts with) 4747", "name" : "23299 (interacts with) 4747", "interaction" : "interacts with", "SUID" : 45158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45354", "source" : "3049", "target" : "4949", "shared_name" : "142 (interacts with) 5970", "name" : "142 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 45354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45350", "source" : "3049", "target" : "3017", "shared_name" : "142 (interacts with) 4790", "name" : "142 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 45350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45346", "source" : "3049", "target" : "4065", "shared_name" : "142 (interacts with) 7124", "name" : "142 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 45346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45342", "source" : "3049", "target" : "5509", "shared_name" : "142 (interacts with) 207", "name" : "142 (interacts with) 207", "interaction" : "interacts with", "SUID" : 45342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45338", "source" : "3049", "target" : "5965", "shared_name" : "142 (interacts with) 596", "name" : "142 (interacts with) 596", "interaction" : "interacts with", "SUID" : 45338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45334", "source" : "3049", "target" : "5149", "shared_name" : "142 (interacts with) 5058", "name" : "142 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 45334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45330", "source" : "3049", "target" : "981", "shared_name" : "142 (interacts with) 7157", "name" : "142 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 45330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45326", "source" : "3049", "target" : "805", "shared_name" : "142 (interacts with) 6772", "name" : "142 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 45326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45322", "source" : "3049", "target" : "1233", "shared_name" : "142 (interacts with) 355", "name" : "142 (interacts with) 355", "interaction" : "interacts with", "SUID" : 45322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45318", "source" : "3049", "target" : "789", "shared_name" : "142 (interacts with) 1616", "name" : "142 (interacts with) 1616", "interaction" : "interacts with", "SUID" : 45318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45314", "source" : "3049", "target" : "1845", "shared_name" : "142 (interacts with) 836", "name" : "142 (interacts with) 836", "interaction" : "interacts with", "SUID" : 45314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45310", "source" : "3049", "target" : "4769", "shared_name" : "142 (interacts with) 7132", "name" : "142 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 45310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45306", "source" : "3049", "target" : "1973", "shared_name" : "142 (interacts with) 6709", "name" : "142 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 45306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45302", "source" : "3049", "target" : "2613", "shared_name" : "142 (interacts with) 472", "name" : "142 (interacts with) 472", "interaction" : "interacts with", "SUID" : 45302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45298", "source" : "3049", "target" : "829", "shared_name" : "142 (interacts with) 8772", "name" : "142 (interacts with) 8772", "interaction" : "interacts with", "SUID" : 45298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45294", "source" : "3049", "target" : "5333", "shared_name" : "142 (interacts with) 5591", "name" : "142 (interacts with) 5591", "interaction" : "interacts with", "SUID" : 45294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45290", "source" : "3049", "target" : "3721", "shared_name" : "142 (interacts with) 2934", "name" : "142 (interacts with) 2934", "interaction" : "interacts with", "SUID" : 45290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45286", "source" : "3049", "target" : "3361", "shared_name" : "142 (interacts with) 4000", "name" : "142 (interacts with) 4000", "interaction" : "interacts with", "SUID" : 45286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45282", "source" : "3049", "target" : "4877", "shared_name" : "142 (interacts with) 1965", "name" : "142 (interacts with) 1965", "interaction" : "interacts with", "SUID" : 45282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45278", "source" : "3049", "target" : "3041", "shared_name" : "142 (interacts with) 5663", "name" : "142 (interacts with) 5663", "interaction" : "interacts with", "SUID" : 45278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45274", "source" : "3049", "target" : "2905", "shared_name" : "142 (interacts with) 5664", "name" : "142 (interacts with) 5664", "interaction" : "interacts with", "SUID" : 45274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45270", "source" : "3049", "target" : "4077", "shared_name" : "142 (interacts with) 71", "name" : "142 (interacts with) 71", "interaction" : "interacts with", "SUID" : 45270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45266", "source" : "3049", "target" : "1125", "shared_name" : "142 (interacts with) 5551", "name" : "142 (interacts with) 5551", "interaction" : "interacts with", "SUID" : 45266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45262", "source" : "3049", "target" : "1597", "shared_name" : "142 (interacts with) 3146", "name" : "142 (interacts with) 3146", "interaction" : "interacts with", "SUID" : 45262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45258", "source" : "3049", "target" : "5673", "shared_name" : "142 (interacts with) 6497", "name" : "142 (interacts with) 6497", "interaction" : "interacts with", "SUID" : 45258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45254", "source" : "3049", "target" : "6117", "shared_name" : "142 (interacts with) 9131", "name" : "142 (interacts with) 9131", "interaction" : "interacts with", "SUID" : 45254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45250", "source" : "3049", "target" : "3021", "shared_name" : "142 (interacts with) 84823", "name" : "142 (interacts with) 84823", "interaction" : "interacts with", "SUID" : 45250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45246", "source" : "3049", "target" : "3937", "shared_name" : "142 (interacts with) 4001", "name" : "142 (interacts with) 4001", "interaction" : "interacts with", "SUID" : 45246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45242", "source" : "3049", "target" : "481", "shared_name" : "142 (interacts with) 7507", "name" : "142 (interacts with) 7507", "interaction" : "interacts with", "SUID" : 45242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45238", "source" : "3049", "target" : "877", "shared_name" : "142 (interacts with) 7341", "name" : "142 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 45238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45234", "source" : "3049", "target" : "5849", "shared_name" : "142 (interacts with) 6613", "name" : "142 (interacts with) 6613", "interaction" : "interacts with", "SUID" : 45234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45230", "source" : "3049", "target" : "4413", "shared_name" : "142 (interacts with) 6612", "name" : "142 (interacts with) 6612", "interaction" : "interacts with", "SUID" : 45230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45226", "source" : "3049", "target" : "5197", "shared_name" : "142 (interacts with) 7156", "name" : "142 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 45226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45222", "source" : "3049", "target" : "6169", "shared_name" : "142 (interacts with) 4088", "name" : "142 (interacts with) 4088", "interaction" : "interacts with", "SUID" : 45222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45218", "source" : "3049", "target" : "4533", "shared_name" : "142 (interacts with) 4089", "name" : "142 (interacts with) 4089", "interaction" : "interacts with", "SUID" : 45218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45214", "source" : "3049", "target" : "2921", "shared_name" : "142 (interacts with) 5981", "name" : "142 (interacts with) 5981", "interaction" : "interacts with", "SUID" : 45214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45210", "source" : "3049", "target" : "2529", "shared_name" : "142 (interacts with) 5424", "name" : "142 (interacts with) 5424", "interaction" : "interacts with", "SUID" : 45210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45206", "source" : "3049", "target" : "1729", "shared_name" : "142 (interacts with) 5111", "name" : "142 (interacts with) 5111", "interaction" : "interacts with", "SUID" : 45206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45202", "source" : "3049", "target" : "1049", "shared_name" : "142 (interacts with) 5422", "name" : "142 (interacts with) 5422", "interaction" : "interacts with", "SUID" : 45202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45198", "source" : "3049", "target" : "3885", "shared_name" : "142 (interacts with) 54840", "name" : "142 (interacts with) 54840", "interaction" : "interacts with", "SUID" : 45198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45194", "source" : "3049", "target" : "1793", "shared_name" : "142 (interacts with) 7515", "name" : "142 (interacts with) 7515", "interaction" : "interacts with", "SUID" : 45194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45406", "source" : "3045", "target" : "5225", "shared_name" : "1493 (interacts with) 5290", "name" : "1493 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 45406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45402", "source" : "3045", "target" : "313", "shared_name" : "1493 (interacts with) 5923", "name" : "1493 (interacts with) 5923", "interaction" : "interacts with", "SUID" : 45402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45398", "source" : "3045", "target" : "4213", "shared_name" : "1493 (interacts with) 5295", "name" : "1493 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 45398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45394", "source" : "3045", "target" : "3173", "shared_name" : "1493 (interacts with) 3558", "name" : "1493 (interacts with) 3558", "interaction" : "interacts with", "SUID" : 45394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45390", "source" : "3045", "target" : "2641", "shared_name" : "1493 (interacts with) 3123", "name" : "1493 (interacts with) 3123", "interaction" : "interacts with", "SUID" : 45390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45386", "source" : "3045", "target" : "5729", "shared_name" : "1493 (interacts with) 861", "name" : "1493 (interacts with) 861", "interaction" : "interacts with", "SUID" : 45386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45382", "source" : "3045", "target" : "5641", "shared_name" : "1493 (interacts with) 5518", "name" : "1493 (interacts with) 5518", "interaction" : "interacts with", "SUID" : 45382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45378", "source" : "3045", "target" : "5037", "shared_name" : "1493 (interacts with) 5515", "name" : "1493 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 45378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45374", "source" : "3045", "target" : "3909", "shared_name" : "1493 (interacts with) 10908", "name" : "1493 (interacts with) 10908", "interaction" : "interacts with", "SUID" : 45374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45370", "source" : "3045", "target" : "3757", "shared_name" : "1493 (interacts with) 215", "name" : "1493 (interacts with) 215", "interaction" : "interacts with", "SUID" : 45370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45366", "source" : "3045", "target" : "4505", "shared_name" : "1493 (interacts with) 5190", "name" : "1493 (interacts with) 5190", "interaction" : "interacts with", "SUID" : 45366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45362", "source" : "3045", "target" : "3373", "shared_name" : "1493 (interacts with) 2530", "name" : "1493 (interacts with) 2530", "interaction" : "interacts with", "SUID" : 45362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45358", "source" : "3045", "target" : "1153", "shared_name" : "1493 (interacts with) 116150", "name" : "1493 (interacts with) 116150", "interaction" : "interacts with", "SUID" : 45358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45466", "source" : "3041", "target" : "4065", "shared_name" : "5663 (interacts with) 7124", "name" : "5663 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 45466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45462", "source" : "3041", "target" : "4949", "shared_name" : "5663 (interacts with) 5970", "name" : "5663 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 45462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45458", "source" : "3041", "target" : "5965", "shared_name" : "5663 (interacts with) 596", "name" : "5663 (interacts with) 596", "interaction" : "interacts with", "SUID" : 45458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45454", "source" : "3041", "target" : "1845", "shared_name" : "5663 (interacts with) 836", "name" : "5663 (interacts with) 836", "interaction" : "interacts with", "SUID" : 45454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45450", "source" : "3041", "target" : "4769", "shared_name" : "5663 (interacts with) 7132", "name" : "5663 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 45450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45446", "source" : "3041", "target" : "829", "shared_name" : "5663 (interacts with) 8772", "name" : "5663 (interacts with) 8772", "interaction" : "interacts with", "SUID" : 45446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45442", "source" : "3041", "target" : "1973", "shared_name" : "5663 (interacts with) 6709", "name" : "5663 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 45442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45438", "source" : "3041", "target" : "2433", "shared_name" : "5663 (interacts with) 6927", "name" : "5663 (interacts with) 6927", "interaction" : "interacts with", "SUID" : 45438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45434", "source" : "3041", "target" : "5745", "shared_name" : "5663 (interacts with) 7471", "name" : "5663 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 45434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45430", "source" : "3041", "target" : "3021", "shared_name" : "5663 (interacts with) 84823", "name" : "5663 (interacts with) 84823", "interaction" : "interacts with", "SUID" : 45430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45426", "source" : "3041", "target" : "2905", "shared_name" : "5663 (interacts with) 5664", "name" : "5663 (interacts with) 5664", "interaction" : "interacts with", "SUID" : 45426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45422", "source" : "3041", "target" : "4077", "shared_name" : "5663 (interacts with) 71", "name" : "5663 (interacts with) 71", "interaction" : "interacts with", "SUID" : 45422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45418", "source" : "3041", "target" : "969", "shared_name" : "5663 (interacts with) 2670", "name" : "5663 (interacts with) 2670", "interaction" : "interacts with", "SUID" : 45418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45414", "source" : "3041", "target" : "3337", "shared_name" : "5663 (interacts with) 2639", "name" : "5663 (interacts with) 2639", "interaction" : "interacts with", "SUID" : 45414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45410", "source" : "3041", "target" : "5701", "shared_name" : "5663 (interacts with) 6767", "name" : "5663 (interacts with) 6767", "interaction" : "interacts with", "SUID" : 45410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45490", "source" : "3037", "target" : "5717", "shared_name" : "8813 (interacts with) 29925", "name" : "8813 (interacts with) 29925", "interaction" : "interacts with", "SUID" : 45490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45486", "source" : "3037", "target" : "2933", "shared_name" : "8813 (interacts with) 10585", "name" : "8813 (interacts with) 10585", "interaction" : "interacts with", "SUID" : 45486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45482", "source" : "3037", "target" : "6137", "shared_name" : "8813 (interacts with) 29954", "name" : "8813 (interacts with) 29954", "interaction" : "interacts with", "SUID" : 45482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45478", "source" : "3037", "target" : "1697", "shared_name" : "8813 (interacts with) 8818", "name" : "8813 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 45478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45474", "source" : "3037", "target" : "3325", "shared_name" : "8813 (interacts with) 9517", "name" : "8813 (interacts with) 9517", "interaction" : "interacts with", "SUID" : 45474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45470", "source" : "3037", "target" : "2633", "shared_name" : "8813 (interacts with) 29926", "name" : "8813 (interacts with) 29926", "interaction" : "interacts with", "SUID" : 45470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45734", "source" : "3033", "target" : "569", "shared_name" : "1020 (interacts with) 7048", "name" : "1020 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 45734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45730", "source" : "3033", "target" : "3837", "shared_name" : "1020 (interacts with) 6098", "name" : "1020 (interacts with) 6098", "interaction" : "interacts with", "SUID" : 45730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45726", "source" : "3033", "target" : "1229", "shared_name" : "1020 (interacts with) 238", "name" : "1020 (interacts with) 238", "interaction" : "interacts with", "SUID" : 45726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45722", "source" : "3033", "target" : "5693", "shared_name" : "1020 (interacts with) 92335", "name" : "1020 (interacts with) 92335", "interaction" : "interacts with", "SUID" : 45722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45718", "source" : "3033", "target" : "3685", "shared_name" : "1020 (interacts with) 3265", "name" : "1020 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 45718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45714", "source" : "3033", "target" : "4213", "shared_name" : "1020 (interacts with) 5295", "name" : "1020 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 45714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45710", "source" : "3033", "target" : "5225", "shared_name" : "1020 (interacts with) 5290", "name" : "1020 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 45710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45706", "source" : "3033", "target" : "5081", "shared_name" : "1020 (interacts with) 5594", "name" : "1020 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 45706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45702", "source" : "3033", "target" : "973", "shared_name" : "1020 (interacts with) 5595", "name" : "1020 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 45702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45698", "source" : "3033", "target" : "1621", "shared_name" : "1020 (interacts with) 1432", "name" : "1020 (interacts with) 1432", "interaction" : "interacts with", "SUID" : 45698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45694", "source" : "3033", "target" : "5361", "shared_name" : "1020 (interacts with) 5604", "name" : "1020 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 45694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45690", "source" : "3033", "target" : "4521", "shared_name" : "1020 (interacts with) 5894", "name" : "1020 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 45690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45686", "source" : "3033", "target" : "4857", "shared_name" : "1020 (interacts with) 5573", "name" : "1020 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 45686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45682", "source" : "3033", "target" : "637", "shared_name" : "1020 (interacts with) 6654", "name" : "1020 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 45682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45678", "source" : "3033", "target" : "1069", "shared_name" : "1020 (interacts with) 5879", "name" : "1020 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 45678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45674", "source" : "3033", "target" : "3577", "shared_name" : "1020 (interacts with) 5605", "name" : "1020 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 45674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45670", "source" : "3033", "target" : "1241", "shared_name" : "1020 (interacts with) 808", "name" : "1020 (interacts with) 808", "interaction" : "interacts with", "SUID" : 45670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45666", "source" : "3033", "target" : "805", "shared_name" : "1020 (interacts with) 6772", "name" : "1020 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 45666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45662", "source" : "3033", "target" : "2085", "shared_name" : "1020 (interacts with) 2932", "name" : "1020 (interacts with) 2932", "interaction" : "interacts with", "SUID" : 45662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45658", "source" : "3033", "target" : "5037", "shared_name" : "1020 (interacts with) 5515", "name" : "1020 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 45658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45654", "source" : "3033", "target" : "1201", "shared_name" : "1020 (interacts with) 805", "name" : "1020 (interacts with) 805", "interaction" : "interacts with", "SUID" : 45654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45650", "source" : "3033", "target" : "993", "shared_name" : "1020 (interacts with) 801", "name" : "1020 (interacts with) 801", "interaction" : "interacts with", "SUID" : 45650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45646", "source" : "3033", "target" : "3581", "shared_name" : "1020 (interacts with) 2185", "name" : "1020 (interacts with) 2185", "interaction" : "interacts with", "SUID" : 45646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45642", "source" : "3033", "target" : "3593", "shared_name" : "1020 (interacts with) 5530", "name" : "1020 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 45642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45638", "source" : "3033", "target" : "5145", "shared_name" : "1020 (interacts with) 23236", "name" : "1020 (interacts with) 23236", "interaction" : "interacts with", "SUID" : 45638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45634", "source" : "3033", "target" : "2937", "shared_name" : "1020 (interacts with) 1457", "name" : "1020 (interacts with) 1457", "interaction" : "interacts with", "SUID" : 45634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45630", "source" : "3033", "target" : "4981", "shared_name" : "1020 (interacts with) 6774", "name" : "1020 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 45630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45626", "source" : "3033", "target" : "2537", "shared_name" : "1020 (interacts with) 3984", "name" : "1020 (interacts with) 3984", "interaction" : "interacts with", "SUID" : 45626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45622", "source" : "3033", "target" : "4293", "shared_name" : "1020 (interacts with) 5156", "name" : "1020 (interacts with) 5156", "interaction" : "interacts with", "SUID" : 45622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45618", "source" : "3033", "target" : "1305", "shared_name" : "1020 (interacts with) 25", "name" : "1020 (interacts with) 25", "interaction" : "interacts with", "SUID" : 45618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45614", "source" : "3033", "target" : "1697", "shared_name" : "1020 (interacts with) 8818", "name" : "1020 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 45614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45610", "source" : "3033", "target" : "4909", "shared_name" : "1020 (interacts with) 823", "name" : "1020 (interacts with) 823", "interaction" : "interacts with", "SUID" : 45610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45606", "source" : "3033", "target" : "3745", "shared_name" : "1020 (interacts with) 4803", "name" : "1020 (interacts with) 4803", "interaction" : "interacts with", "SUID" : 45606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45602", "source" : "3033", "target" : "237", "shared_name" : "1020 (interacts with) 5649", "name" : "1020 (interacts with) 5649", "interaction" : "interacts with", "SUID" : 45602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45598", "source" : "3033", "target" : "3273", "shared_name" : "1020 (interacts with) 351", "name" : "1020 (interacts with) 351", "interaction" : "interacts with", "SUID" : 45598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45594", "source" : "3033", "target" : "1801", "shared_name" : "1020 (interacts with) 1641", "name" : "1020 (interacts with) 1641", "interaction" : "interacts with", "SUID" : 45594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45590", "source" : "3033", "target" : "2509", "shared_name" : "1020 (interacts with) 7204", "name" : "1020 (interacts with) 7204", "interaction" : "interacts with", "SUID" : 45590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45586", "source" : "3033", "target" : "249", "shared_name" : "1020 (interacts with) 1769", "name" : "1020 (interacts with) 1769", "interaction" : "interacts with", "SUID" : 45586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45582", "source" : "3033", "target" : "5429", "shared_name" : "1020 (interacts with) 5048", "name" : "1020 (interacts with) 5048", "interaction" : "interacts with", "SUID" : 45582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45578", "source" : "3033", "target" : "3557", "shared_name" : "1020 (interacts with) 2911", "name" : "1020 (interacts with) 2911", "interaction" : "interacts with", "SUID" : 45578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45574", "source" : "3033", "target" : "1605", "shared_name" : "1020 (interacts with) 6648", "name" : "1020 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 45574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45570", "source" : "3033", "target" : "5157", "shared_name" : "1020 (interacts with) 1600", "name" : "1020 (interacts with) 1600", "interaction" : "interacts with", "SUID" : 45570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45566", "source" : "3033", "target" : "785", "shared_name" : "1020 (interacts with) 1958", "name" : "1020 (interacts with) 1958", "interaction" : "interacts with", "SUID" : 45566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45562", "source" : "3033", "target" : "2209", "shared_name" : "1020 (interacts with) 2354", "name" : "1020 (interacts with) 2354", "interaction" : "interacts with", "SUID" : 45562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45558", "source" : "3033", "target" : "2677", "shared_name" : "1020 (interacts with) 7436", "name" : "1020 (interacts with) 7436", "interaction" : "interacts with", "SUID" : 45558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45554", "source" : "3033", "target" : "4661", "shared_name" : "1020 (interacts with) 6813", "name" : "1020 (interacts with) 6813", "interaction" : "interacts with", "SUID" : 45554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45550", "source" : "3033", "target" : "2005", "shared_name" : "1020 (interacts with) 4846", "name" : "1020 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 45550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45546", "source" : "3033", "target" : "1245", "shared_name" : "1020 (interacts with) 4137", "name" : "1020 (interacts with) 4137", "interaction" : "interacts with", "SUID" : 45546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45542", "source" : "3033", "target" : "3897", "shared_name" : "1020 (interacts with) 10763", "name" : "1020 (interacts with) 10763", "interaction" : "interacts with", "SUID" : 45542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45538", "source" : "3033", "target" : "4593", "shared_name" : "1020 (interacts with) 2058", "name" : "1020 (interacts with) 2058", "interaction" : "interacts with", "SUID" : 45538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45534", "source" : "3033", "target" : "3041", "shared_name" : "1020 (interacts with) 5663", "name" : "1020 (interacts with) 5663", "interaction" : "interacts with", "SUID" : 45534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45530", "source" : "3033", "target" : "3737", "shared_name" : "1020 (interacts with) 3064", "name" : "1020 (interacts with) 3064", "interaction" : "interacts with", "SUID" : 45530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45526", "source" : "3033", "target" : "5713", "shared_name" : "1020 (interacts with) 7531", "name" : "1020 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 45526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45522", "source" : "3033", "target" : "4233", "shared_name" : "1020 (interacts with) 367", "name" : "1020 (interacts with) 367", "interaction" : "interacts with", "SUID" : 45522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45518", "source" : "3033", "target" : "517", "shared_name" : "1020 (interacts with) 5052", "name" : "1020 (interacts with) 5052", "interaction" : "interacts with", "SUID" : 45518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45514", "source" : "3033", "target" : "5161", "shared_name" : "1020 (interacts with) 1786", "name" : "1020 (interacts with) 1786", "interaction" : "interacts with", "SUID" : 45514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45510", "source" : "3033", "target" : "537", "shared_name" : "1020 (interacts with) 27429", "name" : "1020 (interacts with) 27429", "interaction" : "interacts with", "SUID" : 45510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45506", "source" : "3033", "target" : "3937", "shared_name" : "1020 (interacts with) 4001", "name" : "1020 (interacts with) 4001", "interaction" : "interacts with", "SUID" : 45506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45502", "source" : "3033", "target" : "4209", "shared_name" : "1020 (interacts with) 4915", "name" : "1020 (interacts with) 4915", "interaction" : "interacts with", "SUID" : 45502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45498", "source" : "3033", "target" : "3361", "shared_name" : "1020 (interacts with) 4000", "name" : "1020 (interacts with) 4000", "interaction" : "interacts with", "SUID" : 45498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45494", "source" : "3033", "target" : "2081", "shared_name" : "1020 (interacts with) 5468", "name" : "1020 (interacts with) 5468", "interaction" : "interacts with", "SUID" : 45494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45754", "source" : "3025", "target" : "901", "shared_name" : "55627 (interacts with) 8560", "name" : "55627 (interacts with) 8560", "interaction" : "interacts with", "SUID" : 45754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45750", "source" : "3025", "target" : "3325", "shared_name" : "55627 (interacts with) 9517", "name" : "55627 (interacts with) 9517", "interaction" : "interacts with", "SUID" : 45750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45746", "source" : "3025", "target" : "5637", "shared_name" : "55627 (interacts with) 6609", "name" : "55627 (interacts with) 6609", "interaction" : "interacts with", "SUID" : 45746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45742", "source" : "3025", "target" : "6041", "shared_name" : "55627 (interacts with) 9217", "name" : "55627 (interacts with) 9217", "interaction" : "interacts with", "SUID" : 45742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45738", "source" : "3025", "target" : "2893", "shared_name" : "55627 (interacts with) 79152", "name" : "55627 (interacts with) 79152", "interaction" : "interacts with", "SUID" : 45738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45782", "source" : "3021", "target" : "2549", "shared_name" : "84823 (interacts with) 9319", "name" : "84823 (interacts with) 9319", "interaction" : "interacts with", "SUID" : 45782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45778", "source" : "3021", "target" : "829", "shared_name" : "84823 (interacts with) 8772", "name" : "84823 (interacts with) 8772", "interaction" : "interacts with", "SUID" : 45778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45774", "source" : "3021", "target" : "2769", "shared_name" : "84823 (interacts with) 767", "name" : "84823 (interacts with) 767", "interaction" : "interacts with", "SUID" : 45774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45770", "source" : "3021", "target" : "4177", "shared_name" : "84823 (interacts with) 2068", "name" : "84823 (interacts with) 2068", "interaction" : "interacts with", "SUID" : 45770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45766", "source" : "3021", "target" : "3937", "shared_name" : "84823 (interacts with) 4001", "name" : "84823 (interacts with) 4001", "interaction" : "interacts with", "SUID" : 45766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45762", "source" : "3021", "target" : "4505", "shared_name" : "84823 (interacts with) 5190", "name" : "84823 (interacts with) 5190", "interaction" : "interacts with", "SUID" : 45762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45758", "source" : "3021", "target" : "6189", "shared_name" : "84823 (interacts with) 54676", "name" : "84823 (interacts with) 54676", "interaction" : "interacts with", "SUID" : 45758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46006", "source" : "3017", "target" : "3305", "shared_name" : "4790 (interacts with) 7040", "name" : "4790 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 46006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46002", "source" : "3017", "target" : "4065", "shared_name" : "4790 (interacts with) 7124", "name" : "4790 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 46002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45998", "source" : "3017", "target" : "4857", "shared_name" : "4790 (interacts with) 5573", "name" : "4790 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 45998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45994", "source" : "3017", "target" : "5037", "shared_name" : "4790 (interacts with) 5515", "name" : "4790 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 45994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45990", "source" : "3017", "target" : "993", "shared_name" : "4790 (interacts with) 801", "name" : "4790 (interacts with) 801", "interaction" : "interacts with", "SUID" : 45990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45986", "source" : "3017", "target" : "1201", "shared_name" : "4790 (interacts with) 805", "name" : "4790 (interacts with) 805", "interaction" : "interacts with", "SUID" : 45986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45982", "source" : "3017", "target" : "2153", "shared_name" : "4790 (interacts with) 7042", "name" : "4790 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 45982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45978", "source" : "3017", "target" : "3409", "shared_name" : "4790 (interacts with) 7043", "name" : "4790 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 45978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45974", "source" : "3017", "target" : "5149", "shared_name" : "4790 (interacts with) 5058", "name" : "4790 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 45974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45970", "source" : "3017", "target" : "637", "shared_name" : "4790 (interacts with) 6654", "name" : "4790 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 45970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45966", "source" : "3017", "target" : "3577", "shared_name" : "4790 (interacts with) 5605", "name" : "4790 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 45966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45962", "source" : "3017", "target" : "1241", "shared_name" : "4790 (interacts with) 808", "name" : "4790 (interacts with) 808", "interaction" : "interacts with", "SUID" : 45962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45958", "source" : "3017", "target" : "5965", "shared_name" : "4790 (interacts with) 596", "name" : "4790 (interacts with) 596", "interaction" : "interacts with", "SUID" : 45958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45954", "source" : "3017", "target" : "981", "shared_name" : "4790 (interacts with) 7157", "name" : "4790 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 45954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45950", "source" : "3017", "target" : "805", "shared_name" : "4790 (interacts with) 6772", "name" : "4790 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 45950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45946", "source" : "3017", "target" : "2957", "shared_name" : "4790 (interacts with) 5465", "name" : "4790 (interacts with) 5465", "interaction" : "interacts with", "SUID" : 45946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45942", "source" : "3017", "target" : "3593", "shared_name" : "4790 (interacts with) 5530", "name" : "4790 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 45942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45938", "source" : "3017", "target" : "5625", "shared_name" : "4790 (interacts with) 595", "name" : "4790 (interacts with) 595", "interaction" : "interacts with", "SUID" : 45938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45934", "source" : "3017", "target" : "4769", "shared_name" : "4790 (interacts with) 7132", "name" : "4790 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 45934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45930", "source" : "3017", "target" : "5313", "shared_name" : "4790 (interacts with) 6197", "name" : "4790 (interacts with) 6197", "interaction" : "interacts with", "SUID" : 45930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45926", "source" : "3017", "target" : "1845", "shared_name" : "4790 (interacts with) 836", "name" : "4790 (interacts with) 836", "interaction" : "interacts with", "SUID" : 45926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45922", "source" : "3017", "target" : "1973", "shared_name" : "4790 (interacts with) 6709", "name" : "4790 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 45922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45918", "source" : "3017", "target" : "1405", "shared_name" : "4790 (interacts with) 998", "name" : "4790 (interacts with) 998", "interaction" : "interacts with", "SUID" : 45918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45914", "source" : "3017", "target" : "829", "shared_name" : "4790 (interacts with) 8772", "name" : "4790 (interacts with) 8772", "interaction" : "interacts with", "SUID" : 45914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45910", "source" : "3017", "target" : "569", "shared_name" : "4790 (interacts with) 7048", "name" : "4790 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 45910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45906", "source" : "3017", "target" : "5333", "shared_name" : "4790 (interacts with) 5591", "name" : "4790 (interacts with) 5591", "interaction" : "interacts with", "SUID" : 45906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45902", "source" : "3017", "target" : "2005", "shared_name" : "4790 (interacts with) 4846", "name" : "4790 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 45902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45898", "source" : "3017", "target" : "3041", "shared_name" : "4790 (interacts with) 5663", "name" : "4790 (interacts with) 5663", "interaction" : "interacts with", "SUID" : 45898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45894", "source" : "3017", "target" : "5745", "shared_name" : "4790 (interacts with) 7471", "name" : "4790 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 45894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45890", "source" : "3017", "target" : "3021", "shared_name" : "4790 (interacts with) 84823", "name" : "4790 (interacts with) 84823", "interaction" : "interacts with", "SUID" : 45890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45886", "source" : "3017", "target" : "5949", "shared_name" : "4790 (interacts with) 672", "name" : "4790 (interacts with) 672", "interaction" : "interacts with", "SUID" : 45886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45882", "source" : "3017", "target" : "1541", "shared_name" : "4790 (interacts with) 958", "name" : "4790 (interacts with) 958", "interaction" : "interacts with", "SUID" : 45882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45878", "source" : "3017", "target" : "2793", "shared_name" : "4790 (interacts with) 8894", "name" : "4790 (interacts with) 8894", "interaction" : "interacts with", "SUID" : 45878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45874", "source" : "3017", "target" : "2905", "shared_name" : "4790 (interacts with) 5664", "name" : "4790 (interacts with) 5664", "interaction" : "interacts with", "SUID" : 45874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45870", "source" : "3017", "target" : "4077", "shared_name" : "4790 (interacts with) 71", "name" : "4790 (interacts with) 71", "interaction" : "interacts with", "SUID" : 45870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45866", "source" : "3017", "target" : "5637", "shared_name" : "4790 (interacts with) 6609", "name" : "4790 (interacts with) 6609", "interaction" : "interacts with", "SUID" : 45866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45862", "source" : "3017", "target" : "6101", "shared_name" : "4790 (interacts with) 5582", "name" : "4790 (interacts with) 5582", "interaction" : "interacts with", "SUID" : 45862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45858", "source" : "3017", "target" : "593", "shared_name" : "4790 (interacts with) 8743", "name" : "4790 (interacts with) 8743", "interaction" : "interacts with", "SUID" : 45858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45854", "source" : "3017", "target" : "6117", "shared_name" : "4790 (interacts with) 9131", "name" : "4790 (interacts with) 9131", "interaction" : "interacts with", "SUID" : 45854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45850", "source" : "3017", "target" : "729", "shared_name" : "4790 (interacts with) 5888", "name" : "4790 (interacts with) 5888", "interaction" : "interacts with", "SUID" : 45850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45846", "source" : "3017", "target" : "2901", "shared_name" : "4790 (interacts with) 6647", "name" : "4790 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 45846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45842", "source" : "3017", "target" : "1605", "shared_name" : "4790 (interacts with) 6648", "name" : "4790 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 45842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45838", "source" : "3017", "target" : "2841", "shared_name" : "4790 (interacts with) 7098", "name" : "4790 (interacts with) 7098", "interaction" : "interacts with", "SUID" : 45838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45834", "source" : "3017", "target" : "3749", "shared_name" : "4790 (interacts with) 8518", "name" : "4790 (interacts with) 8518", "interaction" : "interacts with", "SUID" : 45834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45830", "source" : "3017", "target" : "465", "shared_name" : "4790 (interacts with) 8792", "name" : "4790 (interacts with) 8792", "interaction" : "interacts with", "SUID" : 45830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45826", "source" : "3017", "target" : "2033", "shared_name" : "4790 (interacts with) 8741", "name" : "4790 (interacts with) 8741", "interaction" : "interacts with", "SUID" : 45826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45822", "source" : "3017", "target" : "3349", "shared_name" : "4790 (interacts with) 8878", "name" : "4790 (interacts with) 8878", "interaction" : "interacts with", "SUID" : 45822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45818", "source" : "3017", "target" : "5061", "shared_name" : "4790 (interacts with) 6285", "name" : "4790 (interacts with) 6285", "interaction" : "interacts with", "SUID" : 45818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45814", "source" : "3017", "target" : "2733", "shared_name" : "4790 (interacts with) 5718", "name" : "4790 (interacts with) 5718", "interaction" : "interacts with", "SUID" : 45814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45810", "source" : "3017", "target" : "2081", "shared_name" : "4790 (interacts with) 5468", "name" : "4790 (interacts with) 5468", "interaction" : "interacts with", "SUID" : 45810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45806", "source" : "3017", "target" : "3745", "shared_name" : "4790 (interacts with) 4803", "name" : "4790 (interacts with) 4803", "interaction" : "interacts with", "SUID" : 45806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45802", "source" : "3017", "target" : "3861", "shared_name" : "4790 (interacts with) 23646", "name" : "4790 (interacts with) 23646", "interaction" : "interacts with", "SUID" : 45802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45798", "source" : "3017", "target" : "4949", "shared_name" : "4790 (interacts with) 5970", "name" : "4790 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 45798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45794", "source" : "3017", "target" : "4889", "shared_name" : "4790 (interacts with) 7295", "name" : "4790 (interacts with) 7295", "interaction" : "interacts with", "SUID" : 45794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45790", "source" : "3017", "target" : "1269", "shared_name" : "4790 (interacts with) 9276", "name" : "4790 (interacts with) 9276", "interaction" : "interacts with", "SUID" : 45790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "45786", "source" : "3017", "target" : "3417", "shared_name" : "4790 (interacts with) 5371", "name" : "4790 (interacts with) 5371", "interaction" : "interacts with", "SUID" : 45786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46018", "source" : "3013", "target" : "5893", "shared_name" : "50814 (interacts with) 6309", "name" : "50814 (interacts with) 6309", "interaction" : "interacts with", "SUID" : 46018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46014", "source" : "3013", "target" : "2373", "shared_name" : "50814 (interacts with) 64801", "name" : "50814 (interacts with) 64801", "interaction" : "interacts with", "SUID" : 46014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46010", "source" : "3013", "target" : "681", "shared_name" : "50814 (interacts with) 6646", "name" : "50814 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 46010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46030", "source" : "3001", "target" : "4493", "shared_name" : "27152 (interacts with) 5727", "name" : "27152 (interacts with) 5727", "interaction" : "interacts with", "SUID" : 46030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46026", "source" : "3001", "target" : "1181", "shared_name" : "27152 (interacts with) 51684", "name" : "27152 (interacts with) 51684", "interaction" : "interacts with", "SUID" : 46026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46022", "source" : "3001", "target" : "6037", "shared_name" : "27152 (interacts with) 374654", "name" : "27152 (interacts with) 374654", "interaction" : "interacts with", "SUID" : 46022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46038", "source" : "2997", "target" : "4769", "shared_name" : "4982 (interacts with) 7132", "name" : "4982 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 46038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46034", "source" : "2997", "target" : "2033", "shared_name" : "4982 (interacts with) 8741", "name" : "4982 (interacts with) 8741", "interaction" : "interacts with", "SUID" : 46034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46050", "source" : "2993", "target" : "1933", "shared_name" : "51132 (interacts with) 7335", "name" : "51132 (interacts with) 7335", "interaction" : "interacts with", "SUID" : 46050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46046", "source" : "2993", "target" : "3729", "shared_name" : "51132 (interacts with) 7319", "name" : "51132 (interacts with) 7319", "interaction" : "interacts with", "SUID" : 46046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46042", "source" : "2993", "target" : "961", "shared_name" : "51132 (interacts with) 7318", "name" : "51132 (interacts with) 7318", "interaction" : "interacts with", "SUID" : 46042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46370", "source" : "2989", "target" : "3541", "shared_name" : "224 (interacts with) 4191", "name" : "224 (interacts with) 4191", "interaction" : "interacts with", "SUID" : 46370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46366", "source" : "2989", "target" : "5797", "shared_name" : "224 (interacts with) 3030", "name" : "224 (interacts with) 3030", "interaction" : "interacts with", "SUID" : 46366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46362", "source" : "2989", "target" : "1669", "shared_name" : "224 (interacts with) 6390", "name" : "224 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 46362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46358", "source" : "2989", "target" : "2945", "shared_name" : "224 (interacts with) 471", "name" : "224 (interacts with) 471", "interaction" : "interacts with", "SUID" : 46358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46354", "source" : "2989", "target" : "4745", "shared_name" : "224 (interacts with) 35", "name" : "224 (interacts with) 35", "interaction" : "interacts with", "SUID" : 46354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46350", "source" : "2989", "target" : "2089", "shared_name" : "224 (interacts with) 3939", "name" : "224 (interacts with) 3939", "interaction" : "interacts with", "SUID" : 46350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46346", "source" : "2989", "target" : "2025", "shared_name" : "224 (interacts with) 549", "name" : "224 (interacts with) 549", "interaction" : "interacts with", "SUID" : 46346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46342", "source" : "2989", "target" : "2337", "shared_name" : "224 (interacts with) 28976", "name" : "224 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 46342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46338", "source" : "2989", "target" : "625", "shared_name" : "224 (interacts with) 8942", "name" : "224 (interacts with) 8942", "interaction" : "interacts with", "SUID" : 46338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46334", "source" : "2989", "target" : "317", "shared_name" : "224 (interacts with) 3176", "name" : "224 (interacts with) 3176", "interaction" : "interacts with", "SUID" : 46334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46330", "source" : "2989", "target" : "4641", "shared_name" : "224 (interacts with) 55331", "name" : "224 (interacts with) 55331", "interaction" : "interacts with", "SUID" : 46330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46326", "source" : "2989", "target" : "2245", "shared_name" : "224 (interacts with) 5587", "name" : "224 (interacts with) 5587", "interaction" : "interacts with", "SUID" : 46326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46322", "source" : "2989", "target" : "3337", "shared_name" : "224 (interacts with) 2639", "name" : "224 (interacts with) 2639", "interaction" : "interacts with", "SUID" : 46322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46318", "source" : "2989", "target" : "6041", "shared_name" : "224 (interacts with) 9217", "name" : "224 (interacts with) 9217", "interaction" : "interacts with", "SUID" : 46318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46314", "source" : "2989", "target" : "3325", "shared_name" : "224 (interacts with) 9517", "name" : "224 (interacts with) 9517", "interaction" : "interacts with", "SUID" : 46314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46310", "source" : "2989", "target" : "2893", "shared_name" : "224 (interacts with) 79152", "name" : "224 (interacts with) 79152", "interaction" : "interacts with", "SUID" : 46310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46306", "source" : "2989", "target" : "1013", "shared_name" : "224 (interacts with) 6898", "name" : "224 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 46306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46302", "source" : "2989", "target" : "4185", "shared_name" : "224 (interacts with) 29968", "name" : "224 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 46302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46298", "source" : "2989", "target" : "2557", "shared_name" : "224 (interacts with) 5444", "name" : "224 (interacts with) 5444", "interaction" : "interacts with", "SUID" : 46298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46294", "source" : "2989", "target" : "3537", "shared_name" : "224 (interacts with) 501", "name" : "224 (interacts with) 501", "interaction" : "interacts with", "SUID" : 46294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46290", "source" : "2989", "target" : "2353", "shared_name" : "224 (interacts with) 5264", "name" : "224 (interacts with) 5264", "interaction" : "interacts with", "SUID" : 46290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46286", "source" : "2989", "target" : "413", "shared_name" : "224 (interacts with) 51733", "name" : "224 (interacts with) 51733", "interaction" : "interacts with", "SUID" : 46286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46282", "source" : "2989", "target" : "1721", "shared_name" : "224 (interacts with) 51807", "name" : "224 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 46282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46278", "source" : "2989", "target" : "385", "shared_name" : "224 (interacts with) 5319", "name" : "224 (interacts with) 5319", "interaction" : "interacts with", "SUID" : 46278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46274", "source" : "2989", "target" : "3893", "shared_name" : "224 (interacts with) 151056", "name" : "224 (interacts with) 151056", "interaction" : "interacts with", "SUID" : 46274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46270", "source" : "2989", "target" : "2853", "shared_name" : "224 (interacts with) 8398", "name" : "224 (interacts with) 8398", "interaction" : "interacts with", "SUID" : 46270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46266", "source" : "2989", "target" : "3177", "shared_name" : "224 (interacts with) 5321", "name" : "224 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 46266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46262", "source" : "2989", "target" : "977", "shared_name" : "224 (interacts with) 79944", "name" : "224 (interacts with) 79944", "interaction" : "interacts with", "SUID" : 46262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46258", "source" : "2989", "target" : "3421", "shared_name" : "224 (interacts with) 4967", "name" : "224 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 46258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46254", "source" : "2989", "target" : "2205", "shared_name" : "224 (interacts with) 2571", "name" : "224 (interacts with) 2571", "interaction" : "interacts with", "SUID" : 46254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46250", "source" : "2989", "target" : "1133", "shared_name" : "224 (interacts with) 3418", "name" : "224 (interacts with) 3418", "interaction" : "interacts with", "SUID" : 46250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46246", "source" : "2989", "target" : "5017", "shared_name" : "224 (interacts with) 3417", "name" : "224 (interacts with) 3417", "interaction" : "interacts with", "SUID" : 46246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46242", "source" : "2989", "target" : "4749", "shared_name" : "224 (interacts with) 3028", "name" : "224 (interacts with) 3028", "interaction" : "interacts with", "SUID" : 46242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46238", "source" : "2989", "target" : "4937", "shared_name" : "224 (interacts with) 1555", "name" : "224 (interacts with) 1555", "interaction" : "interacts with", "SUID" : 46238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46234", "source" : "2989", "target" : "2177", "shared_name" : "224 (interacts with) 443", "name" : "224 (interacts with) 443", "interaction" : "interacts with", "SUID" : 46234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46230", "source" : "2989", "target" : "4133", "shared_name" : "224 (interacts with) 427", "name" : "224 (interacts with) 427", "interaction" : "interacts with", "SUID" : 46230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46226", "source" : "2989", "target" : "5689", "shared_name" : "224 (interacts with) 27089", "name" : "224 (interacts with) 27089", "interaction" : "interacts with", "SUID" : 46226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46222", "source" : "2989", "target" : "3341", "shared_name" : "224 (interacts with) 8504", "name" : "224 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 46222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46218", "source" : "2989", "target" : "3329", "shared_name" : "224 (interacts with) 5824", "name" : "224 (interacts with) 5824", "interaction" : "interacts with", "SUID" : 46218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46214", "source" : "2989", "target" : "3929", "shared_name" : "224 (interacts with) 5860", "name" : "224 (interacts with) 5860", "interaction" : "interacts with", "SUID" : 46214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46210", "source" : "2989", "target" : "4045", "shared_name" : "224 (interacts with) 29920", "name" : "224 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 46210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46206", "source" : "2989", "target" : "3501", "shared_name" : "224 (interacts with) 5831", "name" : "224 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 46206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46202", "source" : "2989", "target" : "5833", "shared_name" : "224 (interacts with) 4726", "name" : "224 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 46202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46198", "source" : "2989", "target" : "5821", "shared_name" : "224 (interacts with) 4724", "name" : "224 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 46198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46194", "source" : "2989", "target" : "4945", "shared_name" : "224 (interacts with) 4722", "name" : "224 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 46194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46190", "source" : "2989", "target" : "2753", "shared_name" : "224 (interacts with) 4720", "name" : "224 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 46190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46186", "source" : "2989", "target" : "4017", "shared_name" : "224 (interacts with) 4719", "name" : "224 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 46186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46182", "source" : "2989", "target" : "1437", "shared_name" : "224 (interacts with) 80025", "name" : "224 (interacts with) 80025", "interaction" : "interacts with", "SUID" : 46182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46178", "source" : "2989", "target" : "1869", "shared_name" : "224 (interacts with) 4729", "name" : "224 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 46178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46174", "source" : "2989", "target" : "1573", "shared_name" : "224 (interacts with) 4723", "name" : "224 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 46174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46170", "source" : "2989", "target" : "2797", "shared_name" : "224 (interacts with) 4728", "name" : "224 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 46170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46166", "source" : "2989", "target" : "4069", "shared_name" : "224 (interacts with) 374291", "name" : "224 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 46166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46162", "source" : "2989", "target" : "3617", "shared_name" : "224 (interacts with) 4704", "name" : "224 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 46162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46158", "source" : "2989", "target" : "2801", "shared_name" : "224 (interacts with) 4700", "name" : "224 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 46158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46154", "source" : "2989", "target" : "2689", "shared_name" : "224 (interacts with) 4715", "name" : "224 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 46154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46150", "source" : "2989", "target" : "5845", "shared_name" : "224 (interacts with) 4714", "name" : "224 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 46150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46146", "source" : "2989", "target" : "5853", "shared_name" : "224 (interacts with) 4709", "name" : "224 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 46146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46142", "source" : "2989", "target" : "2045", "shared_name" : "224 (interacts with) 51102", "name" : "224 (interacts with) 51102", "interaction" : "interacts with", "SUID" : 46142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46138", "source" : "2989", "target" : "2405", "shared_name" : "224 (interacts with) 3658", "name" : "224 (interacts with) 3658", "interaction" : "interacts with", "SUID" : 46138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46134", "source" : "2989", "target" : "5529", "shared_name" : "224 (interacts with) 2875", "name" : "224 (interacts with) 2875", "interaction" : "interacts with", "SUID" : 46134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46130", "source" : "2989", "target" : "4253", "shared_name" : "224 (interacts with) 84706", "name" : "224 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 46130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46126", "source" : "2989", "target" : "2741", "shared_name" : "224 (interacts with) 4695", "name" : "224 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 46126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46122", "source" : "2989", "target" : "5857", "shared_name" : "224 (interacts with) 4694", "name" : "224 (interacts with) 4694", "interaction" : "interacts with", "SUID" : 46122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46118", "source" : "2989", "target" : "2757", "shared_name" : "224 (interacts with) 51079", "name" : "224 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 46118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46114", "source" : "2989", "target" : "5553", "shared_name" : "224 (interacts with) 55967", "name" : "224 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 46114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46110", "source" : "2989", "target" : "2825", "shared_name" : "224 (interacts with) 126328", "name" : "224 (interacts with) 126328", "interaction" : "interacts with", "SUID" : 46110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46106", "source" : "2989", "target" : "4061", "shared_name" : "224 (interacts with) 4705", "name" : "224 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 46106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46102", "source" : "2989", "target" : "2785", "shared_name" : "224 (interacts with) 1351", "name" : "224 (interacts with) 1351", "interaction" : "interacts with", "SUID" : 46102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46098", "source" : "2989", "target" : "5385", "shared_name" : "224 (interacts with) 1349", "name" : "224 (interacts with) 1349", "interaction" : "interacts with", "SUID" : 46098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46094", "source" : "2989", "target" : "937", "shared_name" : "224 (interacts with) 2110", "name" : "224 (interacts with) 2110", "interaction" : "interacts with", "SUID" : 46094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46090", "source" : "2989", "target" : "6093", "shared_name" : "224 (interacts with) 953", "name" : "224 (interacts with) 953", "interaction" : "interacts with", "SUID" : 46090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46086", "source" : "2989", "target" : "3413", "shared_name" : "224 (interacts with) 1337", "name" : "224 (interacts with) 1337", "interaction" : "interacts with", "SUID" : 46086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46082", "source" : "2989", "target" : "1085", "shared_name" : "224 (interacts with) 9377", "name" : "224 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 46082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46078", "source" : "2989", "target" : "5685", "shared_name" : "224 (interacts with) 1340", "name" : "224 (interacts with) 1340", "interaction" : "interacts with", "SUID" : 46078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46074", "source" : "2989", "target" : "297", "shared_name" : "224 (interacts with) 1339", "name" : "224 (interacts with) 1339", "interaction" : "interacts with", "SUID" : 46074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46070", "source" : "2989", "target" : "3345", "shared_name" : "224 (interacts with) 221927", "name" : "224 (interacts with) 221927", "interaction" : "interacts with", "SUID" : 46070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46066", "source" : "2989", "target" : "3845", "shared_name" : "224 (interacts with) 10479", "name" : "224 (interacts with) 10479", "interaction" : "interacts with", "SUID" : 46066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46062", "source" : "2989", "target" : "4853", "shared_name" : "224 (interacts with) 545", "name" : "224 (interacts with) 545", "interaction" : "interacts with", "SUID" : 46062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46058", "source" : "2989", "target" : "4797", "shared_name" : "224 (interacts with) 10735", "name" : "224 (interacts with) 10735", "interaction" : "interacts with", "SUID" : 46058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46054", "source" : "2989", "target" : "6177", "shared_name" : "224 (interacts with) 50628", "name" : "224 (interacts with) 50628", "interaction" : "interacts with", "SUID" : 46054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46374", "source" : "2985", "target" : "5569", "shared_name" : "1394 (interacts with) 59345", "name" : "1394 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 46374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46506", "source" : "2977", "target" : "4117", "shared_name" : "4747 (interacts with) 7345", "name" : "4747 (interacts with) 7345", "interaction" : "interacts with", "SUID" : 46506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46502", "source" : "2977", "target" : "3077", "shared_name" : "4747 (interacts with) 6506", "name" : "4747 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 46502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46498", "source" : "2977", "target" : "581", "shared_name" : "4747 (interacts with) 57679", "name" : "4747 (interacts with) 57679", "interaction" : "interacts with", "SUID" : 46498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46494", "source" : "2977", "target" : "997", "shared_name" : "4747 (interacts with) 7431", "name" : "4747 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 46494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46490", "source" : "2977", "target" : "2581", "shared_name" : "4747 (interacts with) 7170", "name" : "4747 (interacts with) 7170", "interaction" : "interacts with", "SUID" : 46490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46486", "source" : "2977", "target" : "5989", "shared_name" : "4747 (interacts with) 7273", "name" : "4747 (interacts with) 7273", "interaction" : "interacts with", "SUID" : 46486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46482", "source" : "2977", "target" : "5929", "shared_name" : "4747 (interacts with) 6616", "name" : "4747 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 46482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46478", "source" : "2977", "target" : "609", "shared_name" : "4747 (interacts with) 6812", "name" : "4747 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 46478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46474", "source" : "2977", "target" : "5785", "shared_name" : "4747 (interacts with) 6857", "name" : "4747 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 46474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46470", "source" : "2977", "target" : "1809", "shared_name" : "4747 (interacts with) 6548", "name" : "4747 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 46470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46466", "source" : "2977", "target" : "5877", "shared_name" : "4747 (interacts with) 6535", "name" : "4747 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 46466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46462", "source" : "2977", "target" : "309", "shared_name" : "4747 (interacts with) 6536", "name" : "4747 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 46462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46458", "source" : "2977", "target" : "3601", "shared_name" : "4747 (interacts with) 6531", "name" : "4747 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 46458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46454", "source" : "2977", "target" : "401", "shared_name" : "4747 (interacts with) 6532", "name" : "4747 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 46454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46450", "source" : "2977", "target" : "3781", "shared_name" : "4747 (interacts with) 9152", "name" : "4747 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 46450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46446", "source" : "2977", "target" : "2877", "shared_name" : "4747 (interacts with) 340024", "name" : "4747 (interacts with) 340024", "interaction" : "interacts with", "SUID" : 46446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46442", "source" : "2977", "target" : "3473", "shared_name" : "4747 (interacts with) 6528", "name" : "4747 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 46442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46438", "source" : "2977", "target" : "1385", "shared_name" : "4747 (interacts with) 6520", "name" : "4747 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 46438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46434", "source" : "2977", "target" : "5805", "shared_name" : "4747 (interacts with) 6575", "name" : "4747 (interacts with) 6575", "interaction" : "interacts with", "SUID" : 46434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46430", "source" : "2977", "target" : "4025", "shared_name" : "4747 (interacts with) 284111", "name" : "4747 (interacts with) 284111", "interaction" : "interacts with", "SUID" : 46430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46426", "source" : "2977", "target" : "6009", "shared_name" : "4747 (interacts with) 64849", "name" : "4747 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 46426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46422", "source" : "2977", "target" : "5729", "shared_name" : "4747 (interacts with) 861", "name" : "4747 (interacts with) 861", "interaction" : "interacts with", "SUID" : 46422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46418", "source" : "2977", "target" : "313", "shared_name" : "4747 (interacts with) 5923", "name" : "4747 (interacts with) 5923", "interaction" : "interacts with", "SUID" : 46418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46414", "source" : "2977", "target" : "3593", "shared_name" : "4747 (interacts with) 5530", "name" : "4747 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 46414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46410", "source" : "2977", "target" : "565", "shared_name" : "4747 (interacts with) 4772", "name" : "4747 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 46410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46406", "source" : "2977", "target" : "3177", "shared_name" : "4747 (interacts with) 5321", "name" : "4747 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 46406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46402", "source" : "2977", "target" : "3569", "shared_name" : "4747 (interacts with) 4893", "name" : "4747 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 46402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46398", "source" : "2977", "target" : "4385", "shared_name" : "4747 (interacts with) 3084", "name" : "4747 (interacts with) 3084", "interaction" : "interacts with", "SUID" : 46398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46394", "source" : "2977", "target" : "969", "shared_name" : "4747 (interacts with) 2670", "name" : "4747 (interacts with) 2670", "interaction" : "interacts with", "SUID" : 46394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46390", "source" : "2977", "target" : "3897", "shared_name" : "4747 (interacts with) 10763", "name" : "4747 (interacts with) 10763", "interaction" : "interacts with", "SUID" : 46390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46386", "source" : "2977", "target" : "553", "shared_name" : "4747 (interacts with) 7248", "name" : "4747 (interacts with) 7248", "interaction" : "interacts with", "SUID" : 46386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46382", "source" : "2977", "target" : "4453", "shared_name" : "4747 (interacts with) 4744", "name" : "4747 (interacts with) 4744", "interaction" : "interacts with", "SUID" : 46382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46378", "source" : "2977", "target" : "3653", "shared_name" : "4747 (interacts with) 8898", "name" : "4747 (interacts with) 8898", "interaction" : "interacts with", "SUID" : 46378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46522", "source" : "2969", "target" : "3653", "shared_name" : "8867 (interacts with) 8898", "name" : "8867 (interacts with) 8898", "interaction" : "interacts with", "SUID" : 46522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46518", "source" : "2969", "target" : "4701", "shared_name" : "8867 (interacts with) 9896", "name" : "8867 (interacts with) 9896", "interaction" : "interacts with", "SUID" : 46518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46514", "source" : "2969", "target" : "385", "shared_name" : "8867 (interacts with) 5319", "name" : "8867 (interacts with) 5319", "interaction" : "interacts with", "SUID" : 46514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46510", "source" : "2969", "target" : "5785", "shared_name" : "8867 (interacts with) 6857", "name" : "8867 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 46510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46550", "source" : "2965", "target" : "1673", "shared_name" : "22880 (interacts with) 138050", "name" : "22880 (interacts with) 138050", "interaction" : "interacts with", "SUID" : 46550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46546", "source" : "2965", "target" : "2669", "shared_name" : "22880 (interacts with) 9197", "name" : "22880 (interacts with) 9197", "interaction" : "interacts with", "SUID" : 46546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46542", "source" : "2965", "target" : "409", "shared_name" : "22880 (interacts with) 10558", "name" : "22880 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 46542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46538", "source" : "2965", "target" : "3325", "shared_name" : "22880 (interacts with) 9517", "name" : "22880 (interacts with) 9517", "interaction" : "interacts with", "SUID" : 46538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46534", "source" : "2965", "target" : "4025", "shared_name" : "22880 (interacts with) 284111", "name" : "22880 (interacts with) 284111", "interaction" : "interacts with", "SUID" : 46534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46530", "source" : "2965", "target" : "681", "shared_name" : "22880 (interacts with) 6646", "name" : "22880 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 46530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46526", "source" : "2965", "target" : "361", "shared_name" : "22880 (interacts with) 6576", "name" : "22880 (interacts with) 6576", "interaction" : "interacts with", "SUID" : 46526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46574", "source" : "2961", "target" : "4109", "shared_name" : "4314 (interacts with) 6696", "name" : "4314 (interacts with) 6696", "interaction" : "interacts with", "SUID" : 46574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46570", "source" : "2961", "target" : "4161", "shared_name" : "4314 (interacts with) 4318", "name" : "4314 (interacts with) 4318", "interaction" : "interacts with", "SUID" : 46570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46566", "source" : "2961", "target" : "4885", "shared_name" : "4314 (interacts with) 5340", "name" : "4314 (interacts with) 5340", "interaction" : "interacts with", "SUID" : 46566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46562", "source" : "2961", "target" : "4981", "shared_name" : "4314 (interacts with) 6774", "name" : "4314 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 46562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46558", "source" : "2961", "target" : "3493", "shared_name" : "4314 (interacts with) 348", "name" : "4314 (interacts with) 348", "interaction" : "interacts with", "SUID" : 46558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46554", "source" : "2961", "target" : "2193", "shared_name" : "4314 (interacts with) 4052", "name" : "4314 (interacts with) 4052", "interaction" : "interacts with", "SUID" : 46554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46658", "source" : "2957", "target" : "4949", "shared_name" : "5465 (interacts with) 5970", "name" : "5465 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 46658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46654", "source" : "2957", "target" : "4065", "shared_name" : "5465 (interacts with) 7124", "name" : "5465 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 46654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46650", "source" : "2957", "target" : "4857", "shared_name" : "5465 (interacts with) 5573", "name" : "5465 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 46650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46646", "source" : "2957", "target" : "1241", "shared_name" : "5465 (interacts with) 808", "name" : "5465 (interacts with) 808", "interaction" : "interacts with", "SUID" : 46646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46642", "source" : "2957", "target" : "993", "shared_name" : "5465 (interacts with) 801", "name" : "5465 (interacts with) 801", "interaction" : "interacts with", "SUID" : 46642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46638", "source" : "2957", "target" : "1201", "shared_name" : "5465 (interacts with) 805", "name" : "5465 (interacts with) 805", "interaction" : "interacts with", "SUID" : 46638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46634", "source" : "2957", "target" : "3593", "shared_name" : "5465 (interacts with) 5530", "name" : "5465 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 46634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46630", "source" : "2957", "target" : "5941", "shared_name" : "5465 (interacts with) 5914", "name" : "5465 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 46630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46626", "source" : "2957", "target" : "5697", "shared_name" : "5465 (interacts with) 8517", "name" : "5465 (interacts with) 8517", "interaction" : "interacts with", "SUID" : 46626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46622", "source" : "2957", "target" : "5321", "shared_name" : "5465 (interacts with) 5743", "name" : "5465 (interacts with) 5743", "interaction" : "interacts with", "SUID" : 46622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46618", "source" : "2957", "target" : "1829", "shared_name" : "5465 (interacts with) 7421", "name" : "5465 (interacts with) 7421", "interaction" : "interacts with", "SUID" : 46618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46614", "source" : "2957", "target" : "4097", "shared_name" : "5465 (interacts with) 9611", "name" : "5465 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 46614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46610", "source" : "2957", "target" : "3825", "shared_name" : "5465 (interacts with) 5915", "name" : "5465 (interacts with) 5915", "interaction" : "interacts with", "SUID" : 46610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46606", "source" : "2957", "target" : "2081", "shared_name" : "5465 (interacts with) 5468", "name" : "5465 (interacts with) 5468", "interaction" : "interacts with", "SUID" : 46606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46602", "source" : "2957", "target" : "2841", "shared_name" : "5465 (interacts with) 7098", "name" : "5465 (interacts with) 7098", "interaction" : "interacts with", "SUID" : 46602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46598", "source" : "2957", "target" : "5909", "shared_name" : "5465 (interacts with) 1374", "name" : "5465 (interacts with) 1374", "interaction" : "interacts with", "SUID" : 46598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46594", "source" : "2957", "target" : "693", "shared_name" : "5465 (interacts with) 7296", "name" : "5465 (interacts with) 7296", "interaction" : "interacts with", "SUID" : 46594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46590", "source" : "2957", "target" : "877", "shared_name" : "5465 (interacts with) 7341", "name" : "5465 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 46590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46586", "source" : "2957", "target" : "1097", "shared_name" : "5465 (interacts with) 79718", "name" : "5465 (interacts with) 79718", "interaction" : "interacts with", "SUID" : 46586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46582", "source" : "2957", "target" : "3821", "shared_name" : "5465 (interacts with) 10891", "name" : "5465 (interacts with) 10891", "interaction" : "interacts with", "SUID" : 46582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46578", "source" : "2957", "target" : "2045", "shared_name" : "5465 (interacts with) 51102", "name" : "5465 (interacts with) 51102", "interaction" : "interacts with", "SUID" : 46578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46738", "source" : "2945", "target" : "1585", "shared_name" : "471 (interacts with) 80347", "name" : "471 (interacts with) 80347", "interaction" : "interacts with", "SUID" : 46738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46734", "source" : "2945", "target" : "1181", "shared_name" : "471 (interacts with) 51684", "name" : "471 (interacts with) 51684", "interaction" : "interacts with", "SUID" : 46734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46730", "source" : "2945", "target" : "1713", "shared_name" : "471 (interacts with) 5631", "name" : "471 (interacts with) 5631", "interaction" : "interacts with", "SUID" : 46730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46726", "source" : "2945", "target" : "1189", "shared_name" : "471 (interacts with) 7915", "name" : "471 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 46726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46722", "source" : "2945", "target" : "3537", "shared_name" : "471 (interacts with) 501", "name" : "471 (interacts with) 501", "interaction" : "interacts with", "SUID" : 46722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46718", "source" : "2945", "target" : "3421", "shared_name" : "471 (interacts with) 4967", "name" : "471 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 46718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46714", "source" : "2945", "target" : "2925", "shared_name" : "471 (interacts with) 8802", "name" : "471 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 46714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46710", "source" : "2945", "target" : "1669", "shared_name" : "471 (interacts with) 6390", "name" : "471 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 46710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46706", "source" : "2945", "target" : "5025", "shared_name" : "471 (interacts with) 6389", "name" : "471 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 46706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46702", "source" : "2945", "target" : "5109", "shared_name" : "471 (interacts with) 790", "name" : "471 (interacts with) 790", "interaction" : "interacts with", "SUID" : 46702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46698", "source" : "2945", "target" : "4273", "shared_name" : "471 (interacts with) 4548", "name" : "471 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 46698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46694", "source" : "2945", "target" : "429", "shared_name" : "471 (interacts with) 1757", "name" : "471 (interacts with) 1757", "interaction" : "interacts with", "SUID" : 46694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46690", "source" : "2945", "target" : "461", "shared_name" : "471 (interacts with) 5198", "name" : "471 (interacts with) 5198", "interaction" : "interacts with", "SUID" : 46690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46686", "source" : "2945", "target" : "737", "shared_name" : "471 (interacts with) 2643", "name" : "471 (interacts with) 2643", "interaction" : "interacts with", "SUID" : 46686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46682", "source" : "2945", "target" : "2365", "shared_name" : "471 (interacts with) 2731", "name" : "471 (interacts with) 2731", "interaction" : "interacts with", "SUID" : 46682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46678", "source" : "2945", "target" : "1821", "shared_name" : "471 (interacts with) 1719", "name" : "471 (interacts with) 1719", "interaction" : "interacts with", "SUID" : 46678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46674", "source" : "2945", "target" : "1489", "shared_name" : "471 (interacts with) 1738", "name" : "471 (interacts with) 1738", "interaction" : "interacts with", "SUID" : 46674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46670", "source" : "2945", "target" : "1657", "shared_name" : "471 (interacts with) 3251", "name" : "471 (interacts with) 3251", "interaction" : "interacts with", "SUID" : 46670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46666", "source" : "2945", "target" : "5165", "shared_name" : "471 (interacts with) 3704", "name" : "471 (interacts with) 3704", "interaction" : "interacts with", "SUID" : 46666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46662", "source" : "2945", "target" : "3917", "shared_name" : "471 (interacts with) 22978", "name" : "471 (interacts with) 22978", "interaction" : "interacts with", "SUID" : 46662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46746", "source" : "2941", "target" : "469", "shared_name" : "3778 (interacts with) 57582", "name" : "3778 (interacts with) 57582", "interaction" : "interacts with", "SUID" : 46746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46742", "source" : "2941", "target" : "3057", "shared_name" : "3778 (interacts with) 5592", "name" : "3778 (interacts with) 5592", "interaction" : "interacts with", "SUID" : 46742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47082", "source" : "2937", "target" : "2173", "shared_name" : "1457 (interacts with) 5159", "name" : "1457 (interacts with) 5159", "interaction" : "interacts with", "SUID" : 47082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47078", "source" : "2937", "target" : "1229", "shared_name" : "1457 (interacts with) 238", "name" : "1457 (interacts with) 238", "interaction" : "interacts with", "SUID" : 47078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47074", "source" : "2937", "target" : "4581", "shared_name" : "1457 (interacts with) 29110", "name" : "1457 (interacts with) 29110", "interaction" : "interacts with", "SUID" : 47074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47070", "source" : "2937", "target" : "3797", "shared_name" : "1457 (interacts with) 149420", "name" : "1457 (interacts with) 149420", "interaction" : "interacts with", "SUID" : 47070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47066", "source" : "2937", "target" : "1517", "shared_name" : "1457 (interacts with) 51776", "name" : "1457 (interacts with) 51776", "interaction" : "interacts with", "SUID" : 47066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47062", "source" : "2937", "target" : "1429", "shared_name" : "1457 (interacts with) 65125", "name" : "1457 (interacts with) 65125", "interaction" : "interacts with", "SUID" : 47062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47058", "source" : "2937", "target" : "3685", "shared_name" : "1457 (interacts with) 3265", "name" : "1457 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 47058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47054", "source" : "2937", "target" : "5225", "shared_name" : "1457 (interacts with) 5290", "name" : "1457 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 47054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47050", "source" : "2937", "target" : "4521", "shared_name" : "1457 (interacts with) 5894", "name" : "1457 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 47050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47046", "source" : "2937", "target" : "4213", "shared_name" : "1457 (interacts with) 5295", "name" : "1457 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 47046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47042", "source" : "2937", "target" : "5361", "shared_name" : "1457 (interacts with) 5604", "name" : "1457 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 47042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47038", "source" : "2937", "target" : "5037", "shared_name" : "1457 (interacts with) 5515", "name" : "1457 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 47038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47034", "source" : "2937", "target" : "637", "shared_name" : "1457 (interacts with) 6654", "name" : "1457 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 47034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47030", "source" : "2937", "target" : "805", "shared_name" : "1457 (interacts with) 6772", "name" : "1457 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 47030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47026", "source" : "2937", "target" : "2625", "shared_name" : "1457 (interacts with) 3065", "name" : "1457 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 47026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47022", "source" : "2937", "target" : "2085", "shared_name" : "1457 (interacts with) 2932", "name" : "1457 (interacts with) 2932", "interaction" : "interacts with", "SUID" : 47022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47018", "source" : "2937", "target" : "4649", "shared_name" : "1457 (interacts with) 3479", "name" : "1457 (interacts with) 3479", "interaction" : "interacts with", "SUID" : 47018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47014", "source" : "2937", "target" : "3173", "shared_name" : "1457 (interacts with) 3558", "name" : "1457 (interacts with) 3558", "interaction" : "interacts with", "SUID" : 47014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47010", "source" : "2937", "target" : "4533", "shared_name" : "1457 (interacts with) 4089", "name" : "1457 (interacts with) 4089", "interaction" : "interacts with", "SUID" : 47010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47006", "source" : "2937", "target" : "5625", "shared_name" : "1457 (interacts with) 595", "name" : "1457 (interacts with) 595", "interaction" : "interacts with", "SUID" : 47006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47002", "source" : "2937", "target" : "5817", "shared_name" : "1457 (interacts with) 1950", "name" : "1457 (interacts with) 1950", "interaction" : "interacts with", "SUID" : 47002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46998", "source" : "2937", "target" : "2433", "shared_name" : "1457 (interacts with) 6927", "name" : "1457 (interacts with) 6927", "interaction" : "interacts with", "SUID" : 46998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46994", "source" : "2937", "target" : "5185", "shared_name" : "1457 (interacts with) 1499", "name" : "1457 (interacts with) 1499", "interaction" : "interacts with", "SUID" : 46994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46990", "source" : "2937", "target" : "4981", "shared_name" : "1457 (interacts with) 6774", "name" : "1457 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 46990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46986", "source" : "2937", "target" : "5745", "shared_name" : "1457 (interacts with) 7471", "name" : "1457 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 46986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46982", "source" : "2937", "target" : "1701", "shared_name" : "1457 (interacts with) 5777", "name" : "1457 (interacts with) 5777", "interaction" : "interacts with", "SUID" : 46982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46978", "source" : "2937", "target" : "2333", "shared_name" : "1457 (interacts with) 3559", "name" : "1457 (interacts with) 3559", "interaction" : "interacts with", "SUID" : 46978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46974", "source" : "2937", "target" : "1305", "shared_name" : "1457 (interacts with) 25", "name" : "1457 (interacts with) 25", "interaction" : "interacts with", "SUID" : 46974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46970", "source" : "2937", "target" : "3745", "shared_name" : "1457 (interacts with) 4803", "name" : "1457 (interacts with) 4803", "interaction" : "interacts with", "SUID" : 46970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46966", "source" : "2937", "target" : "2597", "shared_name" : "1457 (interacts with) 2056", "name" : "1457 (interacts with) 2056", "interaction" : "interacts with", "SUID" : 46966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46962", "source" : "2937", "target" : "1697", "shared_name" : "1457 (interacts with) 8818", "name" : "1457 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 46962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46958", "source" : "2937", "target" : "5105", "shared_name" : "1457 (interacts with) 1487", "name" : "1457 (interacts with) 1487", "interaction" : "interacts with", "SUID" : 46958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46954", "source" : "2937", "target" : "2061", "shared_name" : "1457 (interacts with) 3570", "name" : "1457 (interacts with) 3570", "interaction" : "interacts with", "SUID" : 46954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46950", "source" : "2937", "target" : "237", "shared_name" : "1457 (interacts with) 5649", "name" : "1457 (interacts with) 5649", "interaction" : "interacts with", "SUID" : 46950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46946", "source" : "2937", "target" : "1801", "shared_name" : "1457 (interacts with) 1641", "name" : "1457 (interacts with) 1641", "interaction" : "interacts with", "SUID" : 46946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46942", "source" : "2937", "target" : "5429", "shared_name" : "1457 (interacts with) 5048", "name" : "1457 (interacts with) 5048", "interaction" : "interacts with", "SUID" : 46942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46938", "source" : "2937", "target" : "249", "shared_name" : "1457 (interacts with) 1769", "name" : "1457 (interacts with) 1769", "interaction" : "interacts with", "SUID" : 46938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46934", "source" : "2937", "target" : "4293", "shared_name" : "1457 (interacts with) 5156", "name" : "1457 (interacts with) 5156", "interaction" : "interacts with", "SUID" : 46934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46930", "source" : "2937", "target" : "865", "shared_name" : "1457 (interacts with) 3480", "name" : "1457 (interacts with) 3480", "interaction" : "interacts with", "SUID" : 46930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46926", "source" : "2937", "target" : "1521", "shared_name" : "1457 (interacts with) 84879", "name" : "1457 (interacts with) 84879", "interaction" : "interacts with", "SUID" : 46926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46922", "source" : "2937", "target" : "973", "shared_name" : "1457 (interacts with) 5595", "name" : "1457 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 46922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46918", "source" : "2937", "target" : "4865", "shared_name" : "1457 (interacts with) 55690", "name" : "1457 (interacts with) 55690", "interaction" : "interacts with", "SUID" : 46918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46914", "source" : "2937", "target" : "5741", "shared_name" : "1457 (interacts with) 9150", "name" : "1457 (interacts with) 9150", "interaction" : "interacts with", "SUID" : 46914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46910", "source" : "2937", "target" : "2209", "shared_name" : "1457 (interacts with) 2354", "name" : "1457 (interacts with) 2354", "interaction" : "interacts with", "SUID" : 46910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46906", "source" : "2937", "target" : "5757", "shared_name" : "1457 (interacts with) 4311", "name" : "1457 (interacts with) 4311", "interaction" : "interacts with", "SUID" : 46906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46902", "source" : "2937", "target" : "5533", "shared_name" : "1457 (interacts with) 9894", "name" : "1457 (interacts with) 9894", "interaction" : "interacts with", "SUID" : 46902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46898", "source" : "2937", "target" : "3961", "shared_name" : "1457 (interacts with) 3897", "name" : "1457 (interacts with) 3897", "interaction" : "interacts with", "SUID" : 46898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46894", "source" : "2937", "target" : "3777", "shared_name" : "1457 (interacts with) 6571", "name" : "1457 (interacts with) 6571", "interaction" : "interacts with", "SUID" : 46894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46890", "source" : "2937", "target" : "4149", "shared_name" : "1457 (interacts with) 8893", "name" : "1457 (interacts with) 8893", "interaction" : "interacts with", "SUID" : 46890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46886", "source" : "2937", "target" : "2073", "shared_name" : "1457 (interacts with) 5393", "name" : "1457 (interacts with) 5393", "interaction" : "interacts with", "SUID" : 46886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46882", "source" : "2937", "target" : "2329", "shared_name" : "1457 (interacts with) 2904", "name" : "1457 (interacts with) 2904", "interaction" : "interacts with", "SUID" : 46882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46878", "source" : "2937", "target" : "2501", "shared_name" : "1457 (interacts with) 7448", "name" : "1457 (interacts with) 7448", "interaction" : "interacts with", "SUID" : 46878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46874", "source" : "2937", "target" : "2101", "shared_name" : "1457 (interacts with) 3486", "name" : "1457 (interacts with) 3486", "interaction" : "interacts with", "SUID" : 46874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46870", "source" : "2937", "target" : "4013", "shared_name" : "1457 (interacts with) 6622", "name" : "1457 (interacts with) 6622", "interaction" : "interacts with", "SUID" : 46870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46866", "source" : "2937", "target" : "629", "shared_name" : "1457 (interacts with) 7013", "name" : "1457 (interacts with) 7013", "interaction" : "interacts with", "SUID" : 46866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46862", "source" : "2937", "target" : "1793", "shared_name" : "1457 (interacts with) 7515", "name" : "1457 (interacts with) 7515", "interaction" : "interacts with", "SUID" : 46862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46858", "source" : "2937", "target" : "417", "shared_name" : "1457 (interacts with) 6689", "name" : "1457 (interacts with) 6689", "interaction" : "interacts with", "SUID" : 46858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46854", "source" : "2937", "target" : "2905", "shared_name" : "1457 (interacts with) 5664", "name" : "1457 (interacts with) 5664", "interaction" : "interacts with", "SUID" : 46854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46850", "source" : "2937", "target" : "3597", "shared_name" : "1457 (interacts with) 10749", "name" : "1457 (interacts with) 10749", "interaction" : "interacts with", "SUID" : 46850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46846", "source" : "2937", "target" : "3161", "shared_name" : "1457 (interacts with) 2821", "name" : "1457 (interacts with) 2821", "interaction" : "interacts with", "SUID" : 46846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46842", "source" : "2937", "target" : "5053", "shared_name" : "1457 (interacts with) 857", "name" : "1457 (interacts with) 857", "interaction" : "interacts with", "SUID" : 46842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46838", "source" : "2937", "target" : "5009", "shared_name" : "1457 (interacts with) 5241", "name" : "1457 (interacts with) 5241", "interaction" : "interacts with", "SUID" : 46838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46834", "source" : "2937", "target" : "789", "shared_name" : "1457 (interacts with) 1616", "name" : "1457 (interacts with) 1616", "interaction" : "interacts with", "SUID" : 46834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46830", "source" : "2937", "target" : "1829", "shared_name" : "1457 (interacts with) 7421", "name" : "1457 (interacts with) 7421", "interaction" : "interacts with", "SUID" : 46830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46826", "source" : "2937", "target" : "5949", "shared_name" : "1457 (interacts with) 672", "name" : "1457 (interacts with) 672", "interaction" : "interacts with", "SUID" : 46826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46822", "source" : "2937", "target" : "5761", "shared_name" : "1457 (interacts with) 4208", "name" : "1457 (interacts with) 4208", "interaction" : "interacts with", "SUID" : 46822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46818", "source" : "2937", "target" : "2673", "shared_name" : "1457 (interacts with) 8841", "name" : "1457 (interacts with) 8841", "interaction" : "interacts with", "SUID" : 46818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46814", "source" : "2937", "target" : "785", "shared_name" : "1457 (interacts with) 1958", "name" : "1457 (interacts with) 1958", "interaction" : "interacts with", "SUID" : 46814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46810", "source" : "2937", "target" : "817", "shared_name" : "1457 (interacts with) 5728", "name" : "1457 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 46810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46806", "source" : "2937", "target" : "981", "shared_name" : "1457 (interacts with) 7157", "name" : "1457 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 46806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46802", "source" : "2937", "target" : "2077", "shared_name" : "1457 (interacts with) 7528", "name" : "1457 (interacts with) 7528", "interaction" : "interacts with", "SUID" : 46802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46798", "source" : "2937", "target" : "3417", "shared_name" : "1457 (interacts with) 5371", "name" : "1457 (interacts with) 5371", "interaction" : "interacts with", "SUID" : 46798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46794", "source" : "2937", "target" : "5509", "shared_name" : "1457 (interacts with) 207", "name" : "1457 (interacts with) 207", "interaction" : "interacts with", "SUID" : 46794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46790", "source" : "2937", "target" : "5013", "shared_name" : "1457 (interacts with) 23411", "name" : "1457 (interacts with) 23411", "interaction" : "interacts with", "SUID" : 46790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46786", "source" : "2937", "target" : "5729", "shared_name" : "1457 (interacts with) 861", "name" : "1457 (interacts with) 861", "interaction" : "interacts with", "SUID" : 46786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46782", "source" : "2937", "target" : "2813", "shared_name" : "1457 (interacts with) 5079", "name" : "1457 (interacts with) 5079", "interaction" : "interacts with", "SUID" : 46782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46778", "source" : "2937", "target" : "1685", "shared_name" : "1457 (interacts with) 9640", "name" : "1457 (interacts with) 9640", "interaction" : "interacts with", "SUID" : 46778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46774", "source" : "2937", "target" : "3101", "shared_name" : "1457 (interacts with) 1822", "name" : "1457 (interacts with) 1822", "interaction" : "interacts with", "SUID" : 46774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46770", "source" : "2937", "target" : "3081", "shared_name" : "1457 (interacts with) 546", "name" : "1457 (interacts with) 546", "interaction" : "interacts with", "SUID" : 46770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46766", "source" : "2937", "target" : "3253", "shared_name" : "1457 (interacts with) 4297", "name" : "1457 (interacts with) 4297", "interaction" : "interacts with", "SUID" : 46766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46762", "source" : "2937", "target" : "4033", "shared_name" : "1457 (interacts with) 613", "name" : "1457 (interacts with) 613", "interaction" : "interacts with", "SUID" : 46762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46758", "source" : "2937", "target" : "2141", "shared_name" : "1457 (interacts with) 26053", "name" : "1457 (interacts with) 26053", "interaction" : "interacts with", "SUID" : 46758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46754", "source" : "2937", "target" : "2793", "shared_name" : "1457 (interacts with) 8894", "name" : "1457 (interacts with) 8894", "interaction" : "interacts with", "SUID" : 46754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "46750", "source" : "2937", "target" : "3805", "shared_name" : "1457 (interacts with) 5621", "name" : "1457 (interacts with) 5621", "interaction" : "interacts with", "SUID" : 46750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47122", "source" : "2933", "target" : "4001", "shared_name" : "10585 (interacts with) 79709", "name" : "10585 (interacts with) 79709", "interaction" : "interacts with", "SUID" : 47122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47118", "source" : "2933", "target" : "3889", "shared_name" : "10585 (interacts with) 1605", "name" : "10585 (interacts with) 1605", "interaction" : "interacts with", "SUID" : 47118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47114", "source" : "2933", "target" : "4685", "shared_name" : "10585 (interacts with) 2218", "name" : "10585 (interacts with) 2218", "interaction" : "interacts with", "SUID" : 47114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47110", "source" : "2933", "target" : "4741", "shared_name" : "10585 (interacts with) 79147", "name" : "10585 (interacts with) 79147", "interaction" : "interacts with", "SUID" : 47110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47106", "source" : "2933", "target" : "4081", "shared_name" : "10585 (interacts with) 148789", "name" : "10585 (interacts with) 148789", "interaction" : "interacts with", "SUID" : 47106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47102", "source" : "2933", "target" : "4585", "shared_name" : "10585 (interacts with) 11041", "name" : "10585 (interacts with) 11041", "interaction" : "interacts with", "SUID" : 47102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47098", "source" : "2933", "target" : "1033", "shared_name" : "10585 (interacts with) 9215", "name" : "10585 (interacts with) 9215", "interaction" : "interacts with", "SUID" : 47098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47094", "source" : "2933", "target" : "4481", "shared_name" : "10585 (interacts with) 55624", "name" : "10585 (interacts with) 55624", "interaction" : "interacts with", "SUID" : 47094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47090", "source" : "2933", "target" : "4337", "shared_name" : "10585 (interacts with) 84197", "name" : "10585 (interacts with) 84197", "interaction" : "interacts with", "SUID" : 47090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47086", "source" : "2933", "target" : "6137", "shared_name" : "10585 (interacts with) 29954", "name" : "10585 (interacts with) 29954", "interaction" : "interacts with", "SUID" : 47086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47150", "source" : "2929", "target" : "3357", "shared_name" : "6310 (interacts with) 23152", "name" : "6310 (interacts with) 23152", "interaction" : "interacts with", "SUID" : 47150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47146", "source" : "2929", "target" : "2909", "shared_name" : "6310 (interacts with) 23126", "name" : "6310 (interacts with) 23126", "interaction" : "interacts with", "SUID" : 47146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47142", "source" : "2929", "target" : "553", "shared_name" : "6310 (interacts with) 7248", "name" : "6310 (interacts with) 7248", "interaction" : "interacts with", "SUID" : 47142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47138", "source" : "2929", "target" : "4921", "shared_name" : "6310 (interacts with) 6311", "name" : "6310 (interacts with) 6311", "interaction" : "interacts with", "SUID" : 47138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47134", "source" : "2929", "target" : "4197", "shared_name" : "6310 (interacts with) 1398", "name" : "6310 (interacts with) 1398", "interaction" : "interacts with", "SUID" : 47134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47130", "source" : "2929", "target" : "5713", "shared_name" : "6310 (interacts with) 7531", "name" : "6310 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 47130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47126", "source" : "2929", "target" : "2041", "shared_name" : "6310 (interacts with) 5015", "name" : "6310 (interacts with) 5015", "interaction" : "interacts with", "SUID" : 47126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47166", "source" : "2925", "target" : "5305", "shared_name" : "8802 (interacts with) 6901", "name" : "8802 (interacts with) 6901", "interaction" : "interacts with", "SUID" : 47166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47162", "source" : "2925", "target" : "1721", "shared_name" : "8802 (interacts with) 51807", "name" : "8802 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 47162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47158", "source" : "2925", "target" : "1129", "shared_name" : "8802 (interacts with) 57505", "name" : "8802 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 47158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47154", "source" : "2925", "target" : "3425", "shared_name" : "8802 (interacts with) 8803", "name" : "8802 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 47154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47222", "source" : "2921", "target" : "2153", "shared_name" : "5981 (interacts with) 7042", "name" : "5981 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 47222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47218", "source" : "2921", "target" : "3305", "shared_name" : "5981 (interacts with) 7040", "name" : "5981 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 47218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47214", "source" : "2921", "target" : "3409", "shared_name" : "5981 (interacts with) 7043", "name" : "5981 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 47214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47210", "source" : "2921", "target" : "569", "shared_name" : "5981 (interacts with) 7048", "name" : "5981 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 47210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47206", "source" : "2921", "target" : "2433", "shared_name" : "5981 (interacts with) 6927", "name" : "5981 (interacts with) 6927", "interaction" : "interacts with", "SUID" : 47206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47202", "source" : "2921", "target" : "4285", "shared_name" : "5981 (interacts with) 8450", "name" : "5981 (interacts with) 8450", "interaction" : "interacts with", "SUID" : 47202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47198", "source" : "2921", "target" : "5745", "shared_name" : "5981 (interacts with) 7471", "name" : "5981 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 47198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47194", "source" : "2921", "target" : "481", "shared_name" : "5981 (interacts with) 7507", "name" : "5981 (interacts with) 7507", "interaction" : "interacts with", "SUID" : 47194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47190", "source" : "2921", "target" : "1789", "shared_name" : "5981 (interacts with) 652", "name" : "5981 (interacts with) 652", "interaction" : "interacts with", "SUID" : 47190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47186", "source" : "2921", "target" : "4609", "shared_name" : "5981 (interacts with) 84153", "name" : "5981 (interacts with) 84153", "interaction" : "interacts with", "SUID" : 47186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47182", "source" : "2921", "target" : "4053", "shared_name" : "5981 (interacts with) 79621", "name" : "5981 (interacts with) 79621", "interaction" : "interacts with", "SUID" : 47182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47178", "source" : "2921", "target" : "1793", "shared_name" : "5981 (interacts with) 7515", "name" : "5981 (interacts with) 7515", "interaction" : "interacts with", "SUID" : 47178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47174", "source" : "2921", "target" : "1601", "shared_name" : "5981 (interacts with) 7415", "name" : "5981 (interacts with) 7415", "interaction" : "interacts with", "SUID" : 47174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47170", "source" : "2921", "target" : "5197", "shared_name" : "5981 (interacts with) 7156", "name" : "5981 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 47170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47250", "source" : "2917", "target" : "5525", "shared_name" : "5451 (interacts with) 84260", "name" : "5451 (interacts with) 84260", "interaction" : "interacts with", "SUID" : 47250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47246", "source" : "2917", "target" : "2305", "shared_name" : "5451 (interacts with) 6908", "name" : "5451 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 47246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47242", "source" : "2917", "target" : "4425", "shared_name" : "5451 (interacts with) 6884", "name" : "5451 (interacts with) 6884", "interaction" : "interacts with", "SUID" : 47242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47238", "source" : "2917", "target" : "4981", "shared_name" : "5451 (interacts with) 6774", "name" : "5451 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 47238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47234", "source" : "2917", "target" : "2909", "shared_name" : "5451 (interacts with) 23126", "name" : "5451 (interacts with) 23126", "interaction" : "interacts with", "SUID" : 47234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47230", "source" : "2917", "target" : "4249", "shared_name" : "5451 (interacts with) 4331", "name" : "5451 (interacts with) 4331", "interaction" : "interacts with", "SUID" : 47230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47226", "source" : "2917", "target" : "1897", "shared_name" : "5451 (interacts with) 79753", "name" : "5451 (interacts with) 79753", "interaction" : "interacts with", "SUID" : 47226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47266", "source" : "2909", "target" : "2309", "shared_name" : "23126 (interacts with) 3316", "name" : "23126 (interacts with) 3316", "interaction" : "interacts with", "SUID" : 47266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47262", "source" : "2909", "target" : "2233", "shared_name" : "23126 (interacts with) 9516", "name" : "23126 (interacts with) 9516", "interaction" : "interacts with", "SUID" : 47262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47258", "source" : "2909", "target" : "3193", "shared_name" : "23126 (interacts with) 197258", "name" : "23126 (interacts with) 197258", "interaction" : "interacts with", "SUID" : 47258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47254", "source" : "2909", "target" : "553", "shared_name" : "23126 (interacts with) 7248", "name" : "23126 (interacts with) 7248", "interaction" : "interacts with", "SUID" : 47254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47318", "source" : "2905", "target" : "4949", "shared_name" : "5664 (interacts with) 5970", "name" : "5664 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 47318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47314", "source" : "2905", "target" : "5965", "shared_name" : "5664 (interacts with) 596", "name" : "5664 (interacts with) 596", "interaction" : "interacts with", "SUID" : 47314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47310", "source" : "2905", "target" : "4065", "shared_name" : "5664 (interacts with) 7124", "name" : "5664 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 47310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47306", "source" : "2905", "target" : "1845", "shared_name" : "5664 (interacts with) 836", "name" : "5664 (interacts with) 836", "interaction" : "interacts with", "SUID" : 47306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47302", "source" : "2905", "target" : "4769", "shared_name" : "5664 (interacts with) 7132", "name" : "5664 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 47302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47298", "source" : "2905", "target" : "829", "shared_name" : "5664 (interacts with) 8772", "name" : "5664 (interacts with) 8772", "interaction" : "interacts with", "SUID" : 47298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47294", "source" : "2905", "target" : "1973", "shared_name" : "5664 (interacts with) 6709", "name" : "5664 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 47294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47290", "source" : "2905", "target" : "3021", "shared_name" : "5664 (interacts with) 84823", "name" : "5664 (interacts with) 84823", "interaction" : "interacts with", "SUID" : 47290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47286", "source" : "2905", "target" : "4077", "shared_name" : "5664 (interacts with) 71", "name" : "5664 (interacts with) 71", "interaction" : "interacts with", "SUID" : 47286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47282", "source" : "2905", "target" : "5409", "shared_name" : "5664 (interacts with) 9734", "name" : "5664 (interacts with) 9734", "interaction" : "interacts with", "SUID" : 47282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47278", "source" : "2905", "target" : "4909", "shared_name" : "5664 (interacts with) 823", "name" : "5664 (interacts with) 823", "interaction" : "interacts with", "SUID" : 47278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47274", "source" : "2905", "target" : "1321", "shared_name" : "5664 (interacts with) 1778", "name" : "5664 (interacts with) 1778", "interaction" : "interacts with", "SUID" : 47274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47270", "source" : "2905", "target" : "3041", "shared_name" : "5664 (interacts with) 5663", "name" : "5664 (interacts with) 5663", "interaction" : "interacts with", "SUID" : 47270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47342", "source" : "2901", "target" : "5601", "shared_name" : "6647 (interacts with) 84833", "name" : "6647 (interacts with) 84833", "interaction" : "interacts with", "SUID" : 47342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47338", "source" : "2901", "target" : "4065", "shared_name" : "6647 (interacts with) 7124", "name" : "6647 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 47338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47334", "source" : "2901", "target" : "1605", "shared_name" : "6647 (interacts with) 6648", "name" : "6647 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 47334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47330", "source" : "2901", "target" : "5297", "shared_name" : "6647 (interacts with) 6775", "name" : "6647 (interacts with) 6775", "interaction" : "interacts with", "SUID" : 47330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47326", "source" : "2901", "target" : "609", "shared_name" : "6647 (interacts with) 6812", "name" : "6647 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 47326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47322", "source" : "2901", "target" : "4661", "shared_name" : "6647 (interacts with) 6813", "name" : "6647 (interacts with) 6813", "interaction" : "interacts with", "SUID" : 47322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47506", "source" : "2897", "target" : "2405", "shared_name" : "1737 (interacts with) 3658", "name" : "1737 (interacts with) 3658", "interaction" : "interacts with", "SUID" : 47506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47502", "source" : "2897", "target" : "3541", "shared_name" : "1737 (interacts with) 4191", "name" : "1737 (interacts with) 4191", "interaction" : "interacts with", "SUID" : 47502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47498", "source" : "2897", "target" : "5213", "shared_name" : "1737 (interacts with) 2271", "name" : "1737 (interacts with) 2271", "interaction" : "interacts with", "SUID" : 47498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47494", "source" : "2897", "target" : "5017", "shared_name" : "1737 (interacts with) 3417", "name" : "1737 (interacts with) 3417", "interaction" : "interacts with", "SUID" : 47494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47490", "source" : "2897", "target" : "3161", "shared_name" : "1737 (interacts with) 2821", "name" : "1737 (interacts with) 2821", "interaction" : "interacts with", "SUID" : 47490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47486", "source" : "2897", "target" : "5941", "shared_name" : "1737 (interacts with) 5914", "name" : "1737 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 47486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47482", "source" : "2897", "target" : "3825", "shared_name" : "1737 (interacts with) 5915", "name" : "1737 (interacts with) 5915", "interaction" : "interacts with", "SUID" : 47482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47478", "source" : "2897", "target" : "3445", "shared_name" : "1737 (interacts with) 5091", "name" : "1737 (interacts with) 5091", "interaction" : "interacts with", "SUID" : 47478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47474", "source" : "2897", "target" : "397", "shared_name" : "1737 (interacts with) 50", "name" : "1737 (interacts with) 50", "interaction" : "interacts with", "SUID" : 47474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47470", "source" : "2897", "target" : "2925", "shared_name" : "1737 (interacts with) 8802", "name" : "1737 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 47470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47466", "source" : "2897", "target" : "5605", "shared_name" : "1737 (interacts with) 51601", "name" : "1737 (interacts with) 51601", "interaction" : "interacts with", "SUID" : 47466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47462", "source" : "2897", "target" : "693", "shared_name" : "1737 (interacts with) 7296", "name" : "1737 (interacts with) 7296", "interaction" : "interacts with", "SUID" : 47462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47458", "source" : "2897", "target" : "3425", "shared_name" : "1737 (interacts with) 8803", "name" : "1737 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 47458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47454", "source" : "2897", "target" : "3485", "shared_name" : "1737 (interacts with) 54704", "name" : "1737 (interacts with) 54704", "interaction" : "interacts with", "SUID" : 47454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47450", "source" : "2897", "target" : "1037", "shared_name" : "1737 (interacts with) 387787", "name" : "1737 (interacts with) 387787", "interaction" : "interacts with", "SUID" : 47450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47446", "source" : "2897", "target" : "2089", "shared_name" : "1737 (interacts with) 3939", "name" : "1737 (interacts with) 3939", "interaction" : "interacts with", "SUID" : 47446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47442", "source" : "2897", "target" : "4401", "shared_name" : "1737 (interacts with) 55526", "name" : "1737 (interacts with) 55526", "interaction" : "interacts with", "SUID" : 47442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47438", "source" : "2897", "target" : "493", "shared_name" : "1737 (interacts with) 594", "name" : "1737 (interacts with) 594", "interaction" : "interacts with", "SUID" : 47438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47434", "source" : "2897", "target" : "2881", "shared_name" : "1737 (interacts with) 5160", "name" : "1737 (interacts with) 5160", "interaction" : "interacts with", "SUID" : 47434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47430", "source" : "2897", "target" : "1489", "shared_name" : "1737 (interacts with) 1738", "name" : "1737 (interacts with) 1738", "interaction" : "interacts with", "SUID" : 47430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47426", "source" : "2897", "target" : "245", "shared_name" : "1737 (interacts with) 2936", "name" : "1737 (interacts with) 2936", "interaction" : "interacts with", "SUID" : 47426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47422", "source" : "2897", "target" : "409", "shared_name" : "1737 (interacts with) 10558", "name" : "1737 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 47422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47418", "source" : "2897", "target" : "5305", "shared_name" : "1737 (interacts with) 6901", "name" : "1737 (interacts with) 6901", "interaction" : "interacts with", "SUID" : 47418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47414", "source" : "2897", "target" : "681", "shared_name" : "1737 (interacts with) 6646", "name" : "1737 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 47414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47410", "source" : "2897", "target" : "485", "shared_name" : "1737 (interacts with) 593", "name" : "1737 (interacts with) 593", "interaction" : "interacts with", "SUID" : 47410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47406", "source" : "2897", "target" : "3421", "shared_name" : "1737 (interacts with) 4967", "name" : "1737 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 47406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47402", "source" : "2897", "target" : "2853", "shared_name" : "1737 (interacts with) 8398", "name" : "1737 (interacts with) 8398", "interaction" : "interacts with", "SUID" : 47402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47398", "source" : "2897", "target" : "4941", "shared_name" : "1737 (interacts with) 6342", "name" : "1737 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 47398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47394", "source" : "2897", "target" : "3893", "shared_name" : "1737 (interacts with) 151056", "name" : "1737 (interacts with) 151056", "interaction" : "interacts with", "SUID" : 47394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47390", "source" : "2897", "target" : "3461", "shared_name" : "1737 (interacts with) 5538", "name" : "1737 (interacts with) 5538", "interaction" : "interacts with", "SUID" : 47390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47386", "source" : "2897", "target" : "385", "shared_name" : "1737 (interacts with) 5319", "name" : "1737 (interacts with) 5319", "interaction" : "interacts with", "SUID" : 47386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47382", "source" : "2897", "target" : "3177", "shared_name" : "1737 (interacts with) 5321", "name" : "1737 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 47382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47378", "source" : "2897", "target" : "1849", "shared_name" : "1737 (interacts with) 26275", "name" : "1737 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 47378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47374", "source" : "2897", "target" : "1277", "shared_name" : "1737 (interacts with) 79143", "name" : "1737 (interacts with) 79143", "interaction" : "interacts with", "SUID" : 47374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47370", "source" : "2897", "target" : "1673", "shared_name" : "1737 (interacts with) 138050", "name" : "1737 (interacts with) 138050", "interaction" : "interacts with", "SUID" : 47370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47366", "source" : "2897", "target" : "1469", "shared_name" : "1737 (interacts with) 51660", "name" : "1737 (interacts with) 51660", "interaction" : "interacts with", "SUID" : 47366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47362", "source" : "2897", "target" : "1981", "shared_name" : "1737 (interacts with) 339983", "name" : "1737 (interacts with) 339983", "interaction" : "interacts with", "SUID" : 47362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47358", "source" : "2897", "target" : "5797", "shared_name" : "1737 (interacts with) 3030", "name" : "1737 (interacts with) 3030", "interaction" : "interacts with", "SUID" : 47358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47354", "source" : "2897", "target" : "4253", "shared_name" : "1737 (interacts with) 84706", "name" : "1737 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 47354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47350", "source" : "2897", "target" : "573", "shared_name" : "1737 (interacts with) 3155", "name" : "1737 (interacts with) 3155", "interaction" : "interacts with", "SUID" : 47350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47346", "source" : "2897", "target" : "1485", "shared_name" : "1737 (interacts with) 8050", "name" : "1737 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 47346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47526", "source" : "2893", "target" : "6041", "shared_name" : "79152 (interacts with) 9217", "name" : "79152 (interacts with) 9217", "interaction" : "interacts with", "SUID" : 47526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47522", "source" : "2893", "target" : "3325", "shared_name" : "79152 (interacts with) 9517", "name" : "79152 (interacts with) 9517", "interaction" : "interacts with", "SUID" : 47522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47518", "source" : "2893", "target" : "5961", "shared_name" : "79152 (interacts with) 10682", "name" : "79152 (interacts with) 10682", "interaction" : "interacts with", "SUID" : 47518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47514", "source" : "2893", "target" : "4625", "shared_name" : "79152 (interacts with) 6785", "name" : "79152 (interacts with) 6785", "interaction" : "interacts with", "SUID" : 47514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47510", "source" : "2893", "target" : "4297", "shared_name" : "79152 (interacts with) 5193", "name" : "79152 (interacts with) 5193", "interaction" : "interacts with", "SUID" : 47510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47614", "source" : "2885", "target" : "4065", "shared_name" : "1437 (interacts with) 7124", "name" : "1437 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 47614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47610", "source" : "2885", "target" : "3409", "shared_name" : "1437 (interacts with) 7043", "name" : "1437 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 47610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47606", "source" : "2885", "target" : "3305", "shared_name" : "1437 (interacts with) 7040", "name" : "1437 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 47606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47602", "source" : "2885", "target" : "2153", "shared_name" : "1437 (interacts with) 7042", "name" : "1437 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 47602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47598", "source" : "2885", "target" : "3173", "shared_name" : "1437 (interacts with) 3558", "name" : "1437 (interacts with) 3558", "interaction" : "interacts with", "SUID" : 47598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47594", "source" : "2885", "target" : "4649", "shared_name" : "1437 (interacts with) 3479", "name" : "1437 (interacts with) 3479", "interaction" : "interacts with", "SUID" : 47594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47590", "source" : "2885", "target" : "1529", "shared_name" : "1437 (interacts with) 3458", "name" : "1437 (interacts with) 3458", "interaction" : "interacts with", "SUID" : 47590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47586", "source" : "2885", "target" : "1985", "shared_name" : "1437 (interacts with) 3456", "name" : "1437 (interacts with) 3456", "interaction" : "interacts with", "SUID" : 47586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47582", "source" : "2885", "target" : "2641", "shared_name" : "1437 (interacts with) 3123", "name" : "1437 (interacts with) 3123", "interaction" : "interacts with", "SUID" : 47582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47578", "source" : "2885", "target" : "1541", "shared_name" : "1437 (interacts with) 958", "name" : "1437 (interacts with) 958", "interaction" : "interacts with", "SUID" : 47578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47574", "source" : "2885", "target" : "2597", "shared_name" : "1437 (interacts with) 2056", "name" : "1437 (interacts with) 2056", "interaction" : "interacts with", "SUID" : 47574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47570", "source" : "2885", "target" : "6013", "shared_name" : "1437 (interacts with) 3574", "name" : "1437 (interacts with) 3574", "interaction" : "interacts with", "SUID" : 47570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47566", "source" : "2885", "target" : "4697", "shared_name" : "1437 (interacts with) 7534", "name" : "1437 (interacts with) 7534", "interaction" : "interacts with", "SUID" : 47566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47562", "source" : "2885", "target" : "5729", "shared_name" : "1437 (interacts with) 861", "name" : "1437 (interacts with) 861", "interaction" : "interacts with", "SUID" : 47562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47558", "source" : "2885", "target" : "1701", "shared_name" : "1437 (interacts with) 5777", "name" : "1437 (interacts with) 5777", "interaction" : "interacts with", "SUID" : 47558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47554", "source" : "2885", "target" : "637", "shared_name" : "1437 (interacts with) 6654", "name" : "1437 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 47554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47550", "source" : "2885", "target" : "3465", "shared_name" : "1437 (interacts with) 5296", "name" : "1437 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 47550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47546", "source" : "2885", "target" : "5225", "shared_name" : "1437 (interacts with) 5290", "name" : "1437 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 47546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47542", "source" : "2885", "target" : "4213", "shared_name" : "1437 (interacts with) 5295", "name" : "1437 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 47542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47538", "source" : "2885", "target" : "3569", "shared_name" : "1437 (interacts with) 4893", "name" : "1437 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 47538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47534", "source" : "2885", "target" : "3573", "shared_name" : "1437 (interacts with) 3845", "name" : "1437 (interacts with) 3845", "interaction" : "interacts with", "SUID" : 47534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47530", "source" : "2885", "target" : "3685", "shared_name" : "1437 (interacts with) 3265", "name" : "1437 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 47530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47674", "source" : "2881", "target" : "1669", "shared_name" : "5160 (interacts with) 6390", "name" : "5160 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 47674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47670", "source" : "2881", "target" : "5941", "shared_name" : "5160 (interacts with) 5914", "name" : "5160 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 47670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47666", "source" : "2881", "target" : "693", "shared_name" : "5160 (interacts with) 7296", "name" : "5160 (interacts with) 7296", "interaction" : "interacts with", "SUID" : 47666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47662", "source" : "2881", "target" : "361", "shared_name" : "5160 (interacts with) 6576", "name" : "5160 (interacts with) 6576", "interaction" : "interacts with", "SUID" : 47662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47658", "source" : "2881", "target" : "485", "shared_name" : "5160 (interacts with) 593", "name" : "5160 (interacts with) 593", "interaction" : "interacts with", "SUID" : 47658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47654", "source" : "2881", "target" : "3825", "shared_name" : "5160 (interacts with) 5915", "name" : "5160 (interacts with) 5915", "interaction" : "interacts with", "SUID" : 47654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47650", "source" : "2881", "target" : "4401", "shared_name" : "5160 (interacts with) 55526", "name" : "5160 (interacts with) 55526", "interaction" : "interacts with", "SUID" : 47650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47646", "source" : "2881", "target" : "493", "shared_name" : "5160 (interacts with) 594", "name" : "5160 (interacts with) 594", "interaction" : "interacts with", "SUID" : 47646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47642", "source" : "2881", "target" : "1485", "shared_name" : "5160 (interacts with) 8050", "name" : "5160 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 47642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47638", "source" : "2881", "target" : "1721", "shared_name" : "5160 (interacts with) 51807", "name" : "5160 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 47638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47634", "source" : "2881", "target" : "3425", "shared_name" : "5160 (interacts with) 8803", "name" : "5160 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 47634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47630", "source" : "2881", "target" : "2925", "shared_name" : "5160 (interacts with) 8802", "name" : "5160 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 47630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47626", "source" : "2881", "target" : "4941", "shared_name" : "5160 (interacts with) 6342", "name" : "5160 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 47626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47622", "source" : "2881", "target" : "4169", "shared_name" : "5160 (interacts with) 10993", "name" : "5160 (interacts with) 10993", "interaction" : "interacts with", "SUID" : 47622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47618", "source" : "2881", "target" : "5049", "shared_name" : "5160 (interacts with) 6697", "name" : "5160 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 47618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47718", "source" : "2877", "target" : "4665", "shared_name" : "340024 (interacts with) 538", "name" : "340024 (interacts with) 538", "interaction" : "interacts with", "SUID" : 47718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47714", "source" : "2877", "target" : "4781", "shared_name" : "340024 (interacts with) 80781", "name" : "340024 (interacts with) 80781", "interaction" : "interacts with", "SUID" : 47714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47710", "source" : "2877", "target" : "2321", "shared_name" : "340024 (interacts with) 6509", "name" : "340024 (interacts with) 6509", "interaction" : "interacts with", "SUID" : 47710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47706", "source" : "2877", "target" : "1157", "shared_name" : "340024 (interacts with) 6580", "name" : "340024 (interacts with) 6580", "interaction" : "interacts with", "SUID" : 47706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47702", "source" : "2877", "target" : "3777", "shared_name" : "340024 (interacts with) 6571", "name" : "340024 (interacts with) 6571", "interaction" : "interacts with", "SUID" : 47702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47698", "source" : "2877", "target" : "309", "shared_name" : "340024 (interacts with) 6536", "name" : "340024 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 47698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47694", "source" : "2877", "target" : "3601", "shared_name" : "340024 (interacts with) 6531", "name" : "340024 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 47694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47690", "source" : "2877", "target" : "3781", "shared_name" : "340024 (interacts with) 9152", "name" : "340024 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 47690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47686", "source" : "2877", "target" : "1385", "shared_name" : "340024 (interacts with) 6520", "name" : "340024 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 47686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47682", "source" : "2877", "target" : "3845", "shared_name" : "340024 (interacts with) 10479", "name" : "340024 (interacts with) 10479", "interaction" : "interacts with", "SUID" : 47682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47678", "source" : "2877", "target" : "277", "shared_name" : "340024 (interacts with) 285175", "name" : "340024 (interacts with) 285175", "interaction" : "interacts with", "SUID" : 47678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47742", "source" : "2873", "target" : "997", "shared_name" : "6261 (interacts with) 7431", "name" : "6261 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 47742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47738", "source" : "2873", "target" : "5989", "shared_name" : "6261 (interacts with) 7273", "name" : "6261 (interacts with) 7273", "interaction" : "interacts with", "SUID" : 47738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47734", "source" : "2873", "target" : "2581", "shared_name" : "6261 (interacts with) 7170", "name" : "6261 (interacts with) 7170", "interaction" : "interacts with", "SUID" : 47734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47730", "source" : "2873", "target" : "609", "shared_name" : "6261 (interacts with) 6812", "name" : "6261 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 47730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47726", "source" : "2873", "target" : "5785", "shared_name" : "6261 (interacts with) 6857", "name" : "6261 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 47726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47722", "source" : "2873", "target" : "5929", "shared_name" : "6261 (interacts with) 6616", "name" : "6261 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 47722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47782", "source" : "2869", "target" : "1157", "shared_name" : "43 (interacts with) 6580", "name" : "43 (interacts with) 6580", "interaction" : "interacts with", "SUID" : 47782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47778", "source" : "2869", "target" : "1521", "shared_name" : "43 (interacts with) 84879", "name" : "43 (interacts with) 84879", "interaction" : "interacts with", "SUID" : 47778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47774", "source" : "2869", "target" : "2557", "shared_name" : "43 (interacts with) 5444", "name" : "43 (interacts with) 5444", "interaction" : "interacts with", "SUID" : 47774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47770", "source" : "2869", "target" : "3237", "shared_name" : "43 (interacts with) 95", "name" : "43 (interacts with) 95", "interaction" : "interacts with", "SUID" : 47770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47766", "source" : "2869", "target" : "2989", "shared_name" : "43 (interacts with) 224", "name" : "43 (interacts with) 224", "interaction" : "interacts with", "SUID" : 47766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47762", "source" : "2869", "target" : "425", "shared_name" : "43 (interacts with) 1103", "name" : "43 (interacts with) 1103", "interaction" : "interacts with", "SUID" : 47762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47758", "source" : "2869", "target" : "5929", "shared_name" : "43 (interacts with) 6616", "name" : "43 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 47758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47754", "source" : "2869", "target" : "609", "shared_name" : "43 (interacts with) 6812", "name" : "43 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 47754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47750", "source" : "2869", "target" : "5785", "shared_name" : "43 (interacts with) 6857", "name" : "43 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 47750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47746", "source" : "2869", "target" : "4893", "shared_name" : "43 (interacts with) 10815", "name" : "43 (interacts with) 10815", "interaction" : "interacts with", "SUID" : 47746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47798", "source" : "2865", "target" : "2681", "shared_name" : "175 (interacts with) 4126", "name" : "175 (interacts with) 4126", "interaction" : "interacts with", "SUID" : 47798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47794", "source" : "2865", "target" : "3973", "shared_name" : "175 (interacts with) 55572", "name" : "175 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 47794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47790", "source" : "2865", "target" : "4381", "shared_name" : "175 (interacts with) 2517", "name" : "175 (interacts with) 2517", "interaction" : "interacts with", "SUID" : 47790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47786", "source" : "2865", "target" : "429", "shared_name" : "175 (interacts with) 1757", "name" : "175 (interacts with) 1757", "interaction" : "interacts with", "SUID" : 47786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47826", "source" : "2861", "target" : "5965", "shared_name" : "284217 (interacts with) 596", "name" : "284217 (interacts with) 596", "interaction" : "interacts with", "SUID" : 47826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47822", "source" : "2861", "target" : "2137", "shared_name" : "284217 (interacts with) 3918", "name" : "284217 (interacts with) 3918", "interaction" : "interacts with", "SUID" : 47822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47818", "source" : "2861", "target" : "665", "shared_name" : "284217 (interacts with) 3309", "name" : "284217 (interacts with) 3309", "interaction" : "interacts with", "SUID" : 47818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47814", "source" : "2861", "target" : "2093", "shared_name" : "284217 (interacts with) 4780", "name" : "284217 (interacts with) 4780", "interaction" : "interacts with", "SUID" : 47814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47810", "source" : "2861", "target" : "3585", "shared_name" : "284217 (interacts with) 3908", "name" : "284217 (interacts with) 3908", "interaction" : "interacts with", "SUID" : 47810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47806", "source" : "2861", "target" : "3805", "shared_name" : "284217 (interacts with) 5621", "name" : "284217 (interacts with) 5621", "interaction" : "interacts with", "SUID" : 47806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47802", "source" : "2861", "target" : "1497", "shared_name" : "284217 (interacts with) 3912", "name" : "284217 (interacts with) 3912", "interaction" : "interacts with", "SUID" : 47802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47834", "source" : "2857", "target" : "1273", "shared_name" : "56947 (interacts with) 10059", "name" : "56947 (interacts with) 10059", "interaction" : "interacts with", "SUID" : 47834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47830", "source" : "2857", "target" : "1249", "shared_name" : "56947 (interacts with) 2705", "name" : "56947 (interacts with) 2705", "interaction" : "interacts with", "SUID" : 47830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47878", "source" : "2853", "target" : "5305", "shared_name" : "8398 (interacts with) 6901", "name" : "8398 (interacts with) 6901", "interaction" : "interacts with", "SUID" : 47878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47874", "source" : "2853", "target" : "3425", "shared_name" : "8398 (interacts with) 8803", "name" : "8398 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 47874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47870", "source" : "2853", "target" : "2925", "shared_name" : "8398 (interacts with) 8802", "name" : "8398 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 47870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47866", "source" : "2853", "target" : "4941", "shared_name" : "8398 (interacts with) 6342", "name" : "8398 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 47866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47862", "source" : "2853", "target" : "681", "shared_name" : "8398 (interacts with) 6646", "name" : "8398 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 47862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47858", "source" : "2853", "target" : "409", "shared_name" : "8398 (interacts with) 10558", "name" : "8398 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 47858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47854", "source" : "2853", "target" : "5093", "shared_name" : "8398 (interacts with) 113612", "name" : "8398 (interacts with) 113612", "interaction" : "interacts with", "SUID" : 47854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47850", "source" : "2853", "target" : "3461", "shared_name" : "8398 (interacts with) 5538", "name" : "8398 (interacts with) 5538", "interaction" : "interacts with", "SUID" : 47850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47846", "source" : "2853", "target" : "4937", "shared_name" : "8398 (interacts with) 1555", "name" : "8398 (interacts with) 1555", "interaction" : "interacts with", "SUID" : 47846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47842", "source" : "2853", "target" : "1569", "shared_name" : "8398 (interacts with) 1557", "name" : "8398 (interacts with) 1557", "interaction" : "interacts with", "SUID" : 47842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47838", "source" : "2853", "target" : "5321", "shared_name" : "8398 (interacts with) 5743", "name" : "8398 (interacts with) 5743", "interaction" : "interacts with", "SUID" : 47838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47882", "source" : "2845", "target" : "3545", "shared_name" : "400916 (interacts with) 708", "name" : "400916 (interacts with) 708", "interaction" : "interacts with", "SUID" : 47882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47898", "source" : "2841", "target" : "5697", "shared_name" : "7098 (interacts with) 8517", "name" : "7098 (interacts with) 8517", "interaction" : "interacts with", "SUID" : 47898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47894", "source" : "2841", "target" : "3697", "shared_name" : "7098 (interacts with) 7099", "name" : "7098 (interacts with) 7099", "interaction" : "interacts with", "SUID" : 47894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47890", "source" : "2841", "target" : "593", "shared_name" : "7098 (interacts with) 8743", "name" : "7098 (interacts with) 8743", "interaction" : "interacts with", "SUID" : 47890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47886", "source" : "2841", "target" : "1933", "shared_name" : "7098 (interacts with) 7335", "name" : "7098 (interacts with) 7335", "interaction" : "interacts with", "SUID" : 47886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48222", "source" : "2837", "target" : "1929", "shared_name" : "123263 (interacts with) 51218", "name" : "123263 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 48222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48218", "source" : "2837", "target" : "1921", "shared_name" : "123263 (interacts with) 1352", "name" : "123263 (interacts with) 1352", "interaction" : "interacts with", "SUID" : 48218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48214", "source" : "2837", "target" : "2189", "shared_name" : "123263 (interacts with) 84705", "name" : "123263 (interacts with) 84705", "interaction" : "interacts with", "SUID" : 48214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48210", "source" : "2837", "target" : "1105", "shared_name" : "123263 (interacts with) 493753", "name" : "123263 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 48210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48206", "source" : "2837", "target" : "2457", "shared_name" : "123263 (interacts with) 4143", "name" : "123263 (interacts with) 4143", "interaction" : "interacts with", "SUID" : 48206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48202", "source" : "2837", "target" : "501", "shared_name" : "123263 (interacts with) 65993", "name" : "123263 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 48202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48198", "source" : "2837", "target" : "1865", "shared_name" : "123263 (interacts with) 498", "name" : "123263 (interacts with) 498", "interaction" : "interacts with", "SUID" : 48198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48194", "source" : "2837", "target" : "1561", "shared_name" : "123263 (interacts with) 51117", "name" : "123263 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 48194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48190", "source" : "2837", "target" : "229", "shared_name" : "123263 (interacts with) 1371", "name" : "123263 (interacts with) 1371", "interaction" : "interacts with", "SUID" : 48190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48186", "source" : "2837", "target" : "3065", "shared_name" : "123263 (interacts with) 25828", "name" : "123263 (interacts with) 25828", "interaction" : "interacts with", "SUID" : 48186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48182", "source" : "2837", "target" : "2741", "shared_name" : "123263 (interacts with) 4695", "name" : "123263 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 48182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48178", "source" : "2837", "target" : "5341", "shared_name" : "123263 (interacts with) 91647", "name" : "123263 (interacts with) 91647", "interaction" : "interacts with", "SUID" : 48178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48174", "source" : "2837", "target" : "4409", "shared_name" : "123263 (interacts with) 6341", "name" : "123263 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 48174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48170", "source" : "2837", "target" : "5197", "shared_name" : "123263 (interacts with) 7156", "name" : "123263 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 48170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48166", "source" : "2837", "target" : "2477", "shared_name" : "123263 (interacts with) 57107", "name" : "123263 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 48166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48162", "source" : "2837", "target" : "521", "shared_name" : "123263 (interacts with) 85476", "name" : "123263 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 48162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48158", "source" : "2837", "target" : "3545", "shared_name" : "123263 (interacts with) 708", "name" : "123263 (interacts with) 708", "interaction" : "interacts with", "SUID" : 48158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48154", "source" : "2837", "target" : "2801", "shared_name" : "123263 (interacts with) 4700", "name" : "123263 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 48154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48150", "source" : "2837", "target" : "3761", "shared_name" : "123263 (interacts with) 25915", "name" : "123263 (interacts with) 25915", "interaction" : "interacts with", "SUID" : 48150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48146", "source" : "2837", "target" : "4501", "shared_name" : "123263 (interacts with) 25821", "name" : "123263 (interacts with) 25821", "interaction" : "interacts with", "SUID" : 48146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48142", "source" : "2837", "target" : "889", "shared_name" : "123263 (interacts with) 80224", "name" : "123263 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 48142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48138", "source" : "2837", "target" : "2337", "shared_name" : "123263 (interacts with) 28976", "name" : "123263 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 48138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48134", "source" : "2837", "target" : "4897", "shared_name" : "123263 (interacts with) 55149", "name" : "123263 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 48134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48130", "source" : "2837", "target" : "2285", "shared_name" : "123263 (interacts with) 51300", "name" : "123263 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 48130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48126", "source" : "2837", "target" : "6181", "shared_name" : "123263 (interacts with) 84987", "name" : "123263 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 48126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48122", "source" : "2837", "target" : "1869", "shared_name" : "123263 (interacts with) 4729", "name" : "123263 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 48122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48118", "source" : "2837", "target" : "3617", "shared_name" : "123263 (interacts with) 4704", "name" : "123263 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 48118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48114", "source" : "2837", "target" : "1573", "shared_name" : "123263 (interacts with) 4723", "name" : "123263 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 48114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48110", "source" : "2837", "target" : "2689", "shared_name" : "123263 (interacts with) 4715", "name" : "123263 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 48110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48106", "source" : "2837", "target" : "5845", "shared_name" : "123263 (interacts with) 4714", "name" : "123263 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 48106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48102", "source" : "2837", "target" : "5085", "shared_name" : "123263 (interacts with) 56652", "name" : "123263 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 48102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48098", "source" : "2837", "target" : "5505", "shared_name" : "123263 (interacts with) 29078", "name" : "123263 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 48098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48094", "source" : "2837", "target" : "4061", "shared_name" : "123263 (interacts with) 4705", "name" : "123263 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 48094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48090", "source" : "2837", "target" : "4141", "shared_name" : "123263 (interacts with) 617", "name" : "123263 (interacts with) 617", "interaction" : "interacts with", "SUID" : 48090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48086", "source" : "2837", "target" : "2345", "shared_name" : "123263 (interacts with) 200205", "name" : "123263 (interacts with) 200205", "interaction" : "interacts with", "SUID" : 48086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48082", "source" : "2837", "target" : "4017", "shared_name" : "123263 (interacts with) 4719", "name" : "123263 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 48082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48078", "source" : "2837", "target" : "477", "shared_name" : "123263 (interacts with) 51021", "name" : "123263 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 48078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48074", "source" : "2837", "target" : "713", "shared_name" : "123263 (interacts with) 7019", "name" : "123263 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 48074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48070", "source" : "2837", "target" : "4593", "shared_name" : "123263 (interacts with) 2058", "name" : "123263 (interacts with) 2058", "interaction" : "interacts with", "SUID" : 48070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48066", "source" : "2837", "target" : "5685", "shared_name" : "123263 (interacts with) 1340", "name" : "123263 (interacts with) 1340", "interaction" : "interacts with", "SUID" : 48066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48062", "source" : "2837", "target" : "4273", "shared_name" : "123263 (interacts with) 4548", "name" : "123263 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 48062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48058", "source" : "2837", "target" : "5737", "shared_name" : "123263 (interacts with) 84340", "name" : "123263 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 48058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48054", "source" : "2837", "target" : "2825", "shared_name" : "123263 (interacts with) 126328", "name" : "123263 (interacts with) 126328", "interaction" : "interacts with", "SUID" : 48054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48050", "source" : "2837", "target" : "2753", "shared_name" : "123263 (interacts with) 4720", "name" : "123263 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 48050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48046", "source" : "2837", "target" : "2945", "shared_name" : "123263 (interacts with) 471", "name" : "123263 (interacts with) 471", "interaction" : "interacts with", "SUID" : 48046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48042", "source" : "2837", "target" : "4757", "shared_name" : "123263 (interacts with) 9997", "name" : "123263 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 48042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48038", "source" : "2837", "target" : "2021", "shared_name" : "123263 (interacts with) 5428", "name" : "123263 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 48038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48034", "source" : "2837", "target" : "1577", "shared_name" : "123263 (interacts with) 51091", "name" : "123263 (interacts with) 51091", "interaction" : "interacts with", "SUID" : 48034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48030", "source" : "2837", "target" : "3641", "shared_name" : "123263 (interacts with) 4141", "name" : "123263 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 48030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48026", "source" : "2837", "target" : "1821", "shared_name" : "123263 (interacts with) 1719", "name" : "123263 (interacts with) 1719", "interaction" : "interacts with", "SUID" : 48026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48022", "source" : "2837", "target" : "4069", "shared_name" : "123263 (interacts with) 374291", "name" : "123263 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 48022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48018", "source" : "2837", "target" : "2609", "shared_name" : "123263 (interacts with) 29960", "name" : "123263 (interacts with) 29960", "interaction" : "interacts with", "SUID" : 48018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48014", "source" : "2837", "target" : "5853", "shared_name" : "123263 (interacts with) 4709", "name" : "123263 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 48014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48010", "source" : "2837", "target" : "2797", "shared_name" : "123263 (interacts with) 4728", "name" : "123263 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 48010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48006", "source" : "2837", "target" : "4869", "shared_name" : "123263 (interacts with) 92935", "name" : "123263 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 48006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48002", "source" : "2837", "target" : "457", "shared_name" : "123263 (interacts with) 16", "name" : "123263 (interacts with) 16", "interaction" : "interacts with", "SUID" : 48002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47998", "source" : "2837", "target" : "3169", "shared_name" : "123263 (interacts with) 1615", "name" : "123263 (interacts with) 1615", "interaction" : "interacts with", "SUID" : 47998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47994", "source" : "2837", "target" : "6157", "shared_name" : "123263 (interacts with) 3735", "name" : "123263 (interacts with) 3735", "interaction" : "interacts with", "SUID" : 47994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47990", "source" : "2837", "target" : "4597", "shared_name" : "123263 (interacts with) 3376", "name" : "123263 (interacts with) 3376", "interaction" : "interacts with", "SUID" : 47990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47986", "source" : "2837", "target" : "4229", "shared_name" : "123263 (interacts with) 3035", "name" : "123263 (interacts with) 3035", "interaction" : "interacts with", "SUID" : 47986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47982", "source" : "2837", "target" : "4349", "shared_name" : "123263 (interacts with) 5859", "name" : "123263 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 47982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47978", "source" : "2837", "target" : "4085", "shared_name" : "123263 (interacts with) 55699", "name" : "123263 (interacts with) 55699", "interaction" : "interacts with", "SUID" : 47978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47974", "source" : "2837", "target" : "3649", "shared_name" : "123263 (interacts with) 51520", "name" : "123263 (interacts with) 51520", "interaction" : "interacts with", "SUID" : 47974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47970", "source" : "2837", "target" : "1581", "shared_name" : "123263 (interacts with) 7407", "name" : "123263 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 47970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47966", "source" : "2837", "target" : "4693", "shared_name" : "123263 (interacts with) 6301", "name" : "123263 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 47966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47962", "source" : "2837", "target" : "1089", "shared_name" : "123263 (interacts with) 5917", "name" : "123263 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 47962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47958", "source" : "2837", "target" : "1473", "shared_name" : "123263 (interacts with) 4524", "name" : "123263 (interacts with) 4524", "interaction" : "interacts with", "SUID" : 47958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47954", "source" : "2837", "target" : "2009", "shared_name" : "123263 (interacts with) 79133", "name" : "123263 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 47954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47950", "source" : "2837", "target" : "3633", "shared_name" : "123263 (interacts with) 51067", "name" : "123263 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 47950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47946", "source" : "2837", "target" : "4621", "shared_name" : "123263 (interacts with) 57038", "name" : "123263 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 47946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47942", "source" : "2837", "target" : "4261", "shared_name" : "123263 (interacts with) 124454", "name" : "123263 (interacts with) 124454", "interaction" : "interacts with", "SUID" : 47942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47938", "source" : "2837", "target" : "4101", "shared_name" : "123263 (interacts with) 65260", "name" : "123263 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 47938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47934", "source" : "2837", "target" : "1129", "shared_name" : "123263 (interacts with) 57505", "name" : "123263 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 47934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47930", "source" : "2837", "target" : "3973", "shared_name" : "123263 (interacts with) 55572", "name" : "123263 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 47930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47926", "source" : "2837", "target" : "6049", "shared_name" : "123263 (interacts with) 25973", "name" : "123263 (interacts with) 25973", "interaction" : "interacts with", "SUID" : 47926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47922", "source" : "2837", "target" : "5189", "shared_name" : "123263 (interacts with) 57176", "name" : "123263 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 47922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47918", "source" : "2837", "target" : "721", "shared_name" : "123263 (interacts with) 79731", "name" : "123263 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 47918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47914", "source" : "2837", "target" : "2109", "shared_name" : "123263 (interacts with) 51103", "name" : "123263 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 47914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47910", "source" : "2837", "target" : "6001", "shared_name" : "123263 (interacts with) 55157", "name" : "123263 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 47910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47906", "source" : "2837", "target" : "1197", "shared_name" : "123263 (interacts with) 79587", "name" : "123263 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 47906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "47902", "source" : "2837", "target" : "6073", "shared_name" : "123263 (interacts with) 92170", "name" : "123263 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 47902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48234", "source" : "2833", "target" : "2685", "shared_name" : "25978 (interacts with) 9474", "name" : "25978 (interacts with) 9474", "interaction" : "interacts with", "SUID" : 48234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48230", "source" : "2833", "target" : "2293", "shared_name" : "25978 (interacts with) 56270", "name" : "25978 (interacts with) 56270", "interaction" : "interacts with", "SUID" : 48230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48226", "source" : "2833", "target" : "2241", "shared_name" : "25978 (interacts with) 3043", "name" : "25978 (interacts with) 3043", "interaction" : "interacts with", "SUID" : 48226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48314", "source" : "2829", "target" : "3461", "shared_name" : "10577 (interacts with) 5538", "name" : "10577 (interacts with) 5538", "interaction" : "interacts with", "SUID" : 48314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48310", "source" : "2829", "target" : "5073", "shared_name" : "10577 (interacts with) 7305", "name" : "10577 (interacts with) 7305", "interaction" : "interacts with", "SUID" : 48310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48306", "source" : "2829", "target" : "5413", "shared_name" : "10577 (interacts with) 10717", "name" : "10577 (interacts with) 10717", "interaction" : "interacts with", "SUID" : 48306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48302", "source" : "2829", "target" : "4849", "shared_name" : "10577 (interacts with) 11154", "name" : "10577 (interacts with) 11154", "interaction" : "interacts with", "SUID" : 48302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48298", "source" : "2829", "target" : "5245", "shared_name" : "10577 (interacts with) 1201", "name" : "10577 (interacts with) 1201", "interaction" : "interacts with", "SUID" : 48298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48294", "source" : "2829", "target" : "3353", "shared_name" : "10577 (interacts with) 1203", "name" : "10577 (interacts with) 1203", "interaction" : "interacts with", "SUID" : 48294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48290", "source" : "2829", "target" : "4813", "shared_name" : "10577 (interacts with) 23431", "name" : "10577 (interacts with) 23431", "interaction" : "interacts with", "SUID" : 48290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48286", "source" : "2829", "target" : "3433", "shared_name" : "10577 (interacts with) 26503", "name" : "10577 (interacts with) 26503", "interaction" : "interacts with", "SUID" : 48286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48282", "source" : "2829", "target" : "3733", "shared_name" : "10577 (interacts with) 2760", "name" : "10577 (interacts with) 2760", "interaction" : "interacts with", "SUID" : 48282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48278", "source" : "2829", "target" : "5221", "shared_name" : "10577 (interacts with) 285362", "name" : "10577 (interacts with) 285362", "interaction" : "interacts with", "SUID" : 48278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48274", "source" : "2829", "target" : "2225", "shared_name" : "10577 (interacts with) 4864", "name" : "10577 (interacts with) 4864", "interaction" : "interacts with", "SUID" : 48274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48270", "source" : "2829", "target" : "1193", "shared_name" : "10577 (interacts with) 5660", "name" : "10577 (interacts with) 5660", "interaction" : "interacts with", "SUID" : 48270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48266", "source" : "2829", "target" : "1261", "shared_name" : "10577 (interacts with) 57192", "name" : "10577 (interacts with) 57192", "interaction" : "interacts with", "SUID" : 48266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48262", "source" : "2829", "target" : "5937", "shared_name" : "10577 (interacts with) 8120", "name" : "10577 (interacts with) 8120", "interaction" : "interacts with", "SUID" : 48262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48258", "source" : "2829", "target" : "1677", "shared_name" : "10577 (interacts with) 8905", "name" : "10577 (interacts with) 8905", "interaction" : "interacts with", "SUID" : 48258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48254", "source" : "2829", "target" : "3693", "shared_name" : "10577 (interacts with) 8943", "name" : "10577 (interacts with) 8943", "interaction" : "interacts with", "SUID" : 48254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48250", "source" : "2829", "target" : "1445", "shared_name" : "10577 (interacts with) 9179", "name" : "10577 (interacts with) 9179", "interaction" : "interacts with", "SUID" : 48250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48246", "source" : "2829", "target" : "4393", "shared_name" : "10577 (interacts with) 950", "name" : "10577 (interacts with) 950", "interaction" : "interacts with", "SUID" : 48246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48242", "source" : "2829", "target" : "2233", "shared_name" : "10577 (interacts with) 9516", "name" : "10577 (interacts with) 9516", "interaction" : "interacts with", "SUID" : 48242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48238", "source" : "2829", "target" : "4461", "shared_name" : "10577 (interacts with) 79947", "name" : "10577 (interacts with) 79947", "interaction" : "interacts with", "SUID" : 48238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48614", "source" : "2825", "target" : "3705", "shared_name" : "126328 (interacts with) 87178", "name" : "126328 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 48614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48610", "source" : "2825", "target" : "1085", "shared_name" : "126328 (interacts with) 9377", "name" : "126328 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 48610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48606", "source" : "2825", "target" : "3545", "shared_name" : "126328 (interacts with) 708", "name" : "126328 (interacts with) 708", "interaction" : "interacts with", "SUID" : 48606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48602", "source" : "2825", "target" : "521", "shared_name" : "126328 (interacts with) 85476", "name" : "126328 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 48602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48598", "source" : "2825", "target" : "4501", "shared_name" : "126328 (interacts with) 25821", "name" : "126328 (interacts with) 25821", "interaction" : "interacts with", "SUID" : 48598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48594", "source" : "2825", "target" : "721", "shared_name" : "126328 (interacts with) 79731", "name" : "126328 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 48594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48590", "source" : "2825", "target" : "1369", "shared_name" : "126328 (interacts with) 27247", "name" : "126328 (interacts with) 27247", "interaction" : "interacts with", "SUID" : 48590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48586", "source" : "2825", "target" : "1053", "shared_name" : "126328 (interacts with) 81689", "name" : "126328 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 48586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48582", "source" : "2825", "target" : "2021", "shared_name" : "126328 (interacts with) 5428", "name" : "126328 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 48582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48578", "source" : "2825", "target" : "6049", "shared_name" : "126328 (interacts with) 25973", "name" : "126328 (interacts with) 25973", "interaction" : "interacts with", "SUID" : 48578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48574", "source" : "2825", "target" : "6125", "shared_name" : "126328 (interacts with) 22907", "name" : "126328 (interacts with) 22907", "interaction" : "interacts with", "SUID" : 48574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48570", "source" : "2825", "target" : "5169", "shared_name" : "126328 (interacts with) 1355", "name" : "126328 (interacts with) 1355", "interaction" : "interacts with", "SUID" : 48570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48566", "source" : "2825", "target" : "5085", "shared_name" : "126328 (interacts with) 56652", "name" : "126328 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 48566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48562", "source" : "2825", "target" : "1129", "shared_name" : "126328 (interacts with) 57505", "name" : "126328 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 48562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48558", "source" : "2825", "target" : "3633", "shared_name" : "126328 (interacts with) 51067", "name" : "126328 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 48558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48554", "source" : "2825", "target" : "2297", "shared_name" : "126328 (interacts with) 55005", "name" : "126328 (interacts with) 55005", "interaction" : "interacts with", "SUID" : 48554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48550", "source" : "2825", "target" : "5189", "shared_name" : "126328 (interacts with) 57176", "name" : "126328 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 48550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48546", "source" : "2825", "target" : "6073", "shared_name" : "126328 (interacts with) 92170", "name" : "126328 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 48546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48542", "source" : "2825", "target" : "501", "shared_name" : "126328 (interacts with) 65993", "name" : "126328 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 48542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48538", "source" : "2825", "target" : "2609", "shared_name" : "126328 (interacts with) 29960", "name" : "126328 (interacts with) 29960", "interaction" : "interacts with", "SUID" : 48538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48534", "source" : "2825", "target" : "5737", "shared_name" : "126328 (interacts with) 84340", "name" : "126328 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 48534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48530", "source" : "2825", "target" : "4757", "shared_name" : "126328 (interacts with) 9997", "name" : "126328 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 48530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48526", "source" : "2825", "target" : "1929", "shared_name" : "126328 (interacts with) 51218", "name" : "126328 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 48526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48522", "source" : "2825", "target" : "4897", "shared_name" : "126328 (interacts with) 55149", "name" : "126328 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 48522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48518", "source" : "2825", "target" : "6001", "shared_name" : "126328 (interacts with) 55157", "name" : "126328 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 48518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48514", "source" : "2825", "target" : "2105", "shared_name" : "126328 (interacts with) 56945", "name" : "126328 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 48514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48510", "source" : "2825", "target" : "4621", "shared_name" : "126328 (interacts with) 57038", "name" : "126328 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 48510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48506", "source" : "2825", "target" : "4069", "shared_name" : "126328 (interacts with) 374291", "name" : "126328 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 48506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48502", "source" : "2825", "target" : "5857", "shared_name" : "126328 (interacts with) 4694", "name" : "126328 (interacts with) 4694", "interaction" : "interacts with", "SUID" : 48502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48498", "source" : "2825", "target" : "4869", "shared_name" : "126328 (interacts with) 92935", "name" : "126328 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 48498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48494", "source" : "2825", "target" : "3269", "shared_name" : "126328 (interacts with) 2108", "name" : "126328 (interacts with) 2108", "interaction" : "interacts with", "SUID" : 48494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48490", "source" : "2825", "target" : "937", "shared_name" : "126328 (interacts with) 2110", "name" : "126328 (interacts with) 2110", "interaction" : "interacts with", "SUID" : 48490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48486", "source" : "2825", "target" : "5985", "shared_name" : "126328 (interacts with) 27235", "name" : "126328 (interacts with) 27235", "interaction" : "interacts with", "SUID" : 48486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48482", "source" : "2825", "target" : "1105", "shared_name" : "126328 (interacts with) 493753", "name" : "126328 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 48482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48478", "source" : "2825", "target" : "5821", "shared_name" : "126328 (interacts with) 4724", "name" : "126328 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 48478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48474", "source" : "2825", "target" : "2757", "shared_name" : "126328 (interacts with) 51079", "name" : "126328 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 48474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48470", "source" : "2825", "target" : "5553", "shared_name" : "126328 (interacts with) 55967", "name" : "126328 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 48470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48466", "source" : "2825", "target" : "5833", "shared_name" : "126328 (interacts with) 4726", "name" : "126328 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 48466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48462", "source" : "2825", "target" : "4945", "shared_name" : "126328 (interacts with) 4722", "name" : "126328 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 48462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48458", "source" : "2825", "target" : "1921", "shared_name" : "126328 (interacts with) 1352", "name" : "126328 (interacts with) 1352", "interaction" : "interacts with", "SUID" : 48458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48454", "source" : "2825", "target" : "1337", "shared_name" : "126328 (interacts with) 55863", "name" : "126328 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 48454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48450", "source" : "2825", "target" : "1661", "shared_name" : "126328 (interacts with) 91942", "name" : "126328 (interacts with) 91942", "interaction" : "interacts with", "SUID" : 48450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48446", "source" : "2825", "target" : "713", "shared_name" : "126328 (interacts with) 7019", "name" : "126328 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 48446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48442", "source" : "2825", "target" : "889", "shared_name" : "126328 (interacts with) 80224", "name" : "126328 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 48442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48438", "source" : "2825", "target" : "1197", "shared_name" : "126328 (interacts with) 79587", "name" : "126328 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 48438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48434", "source" : "2825", "target" : "4141", "shared_name" : "126328 (interacts with) 617", "name" : "126328 (interacts with) 617", "interaction" : "interacts with", "SUID" : 48434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48430", "source" : "2825", "target" : "4409", "shared_name" : "126328 (interacts with) 6341", "name" : "126328 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 48430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48426", "source" : "2825", "target" : "1561", "shared_name" : "126328 (interacts with) 51117", "name" : "126328 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 48426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48422", "source" : "2825", "target" : "477", "shared_name" : "126328 (interacts with) 51021", "name" : "126328 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 48422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48418", "source" : "2825", "target" : "2345", "shared_name" : "126328 (interacts with) 200205", "name" : "126328 (interacts with) 200205", "interaction" : "interacts with", "SUID" : 48418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48414", "source" : "2825", "target" : "1573", "shared_name" : "126328 (interacts with) 4723", "name" : "126328 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 48414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48410", "source" : "2825", "target" : "793", "shared_name" : "126328 (interacts with) 137682", "name" : "126328 (interacts with) 137682", "interaction" : "interacts with", "SUID" : 48410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48406", "source" : "2825", "target" : "5689", "shared_name" : "126328 (interacts with) 27089", "name" : "126328 (interacts with) 27089", "interaction" : "interacts with", "SUID" : 48406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48402", "source" : "2825", "target" : "2477", "shared_name" : "126328 (interacts with) 57107", "name" : "126328 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 48402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48398", "source" : "2825", "target" : "3617", "shared_name" : "126328 (interacts with) 4704", "name" : "126328 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 48398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48394", "source" : "2825", "target" : "4101", "shared_name" : "126328 (interacts with) 65260", "name" : "126328 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 48394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48390", "source" : "2825", "target" : "5685", "shared_name" : "126328 (interacts with) 1340", "name" : "126328 (interacts with) 1340", "interaction" : "interacts with", "SUID" : 48390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48386", "source" : "2825", "target" : "2109", "shared_name" : "126328 (interacts with) 51103", "name" : "126328 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 48386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48382", "source" : "2825", "target" : "2801", "shared_name" : "126328 (interacts with) 4700", "name" : "126328 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 48382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48378", "source" : "2825", "target" : "4061", "shared_name" : "126328 (interacts with) 4705", "name" : "126328 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 48378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48374", "source" : "2825", "target" : "5505", "shared_name" : "126328 (interacts with) 29078", "name" : "126328 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 48374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48370", "source" : "2825", "target" : "5853", "shared_name" : "126328 (interacts with) 4709", "name" : "126328 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 48370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48366", "source" : "2825", "target" : "3973", "shared_name" : "126328 (interacts with) 55572", "name" : "126328 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 48366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48362", "source" : "2825", "target" : "2689", "shared_name" : "126328 (interacts with) 4715", "name" : "126328 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 48362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48358", "source" : "2825", "target" : "2285", "shared_name" : "126328 (interacts with) 51300", "name" : "126328 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 48358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48354", "source" : "2825", "target" : "3761", "shared_name" : "126328 (interacts with) 25915", "name" : "126328 (interacts with) 25915", "interaction" : "interacts with", "SUID" : 48354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48350", "source" : "2825", "target" : "2009", "shared_name" : "126328 (interacts with) 79133", "name" : "126328 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 48350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48346", "source" : "2825", "target" : "2797", "shared_name" : "126328 (interacts with) 4728", "name" : "126328 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 48346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48342", "source" : "2825", "target" : "2741", "shared_name" : "126328 (interacts with) 4695", "name" : "126328 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 48342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48338", "source" : "2825", "target" : "2753", "shared_name" : "126328 (interacts with) 4720", "name" : "126328 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 48338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48334", "source" : "2825", "target" : "1869", "shared_name" : "126328 (interacts with) 4729", "name" : "126328 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 48334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48330", "source" : "2825", "target" : "4017", "shared_name" : "126328 (interacts with) 4719", "name" : "126328 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 48330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48326", "source" : "2825", "target" : "5845", "shared_name" : "126328 (interacts with) 4714", "name" : "126328 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 48326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48322", "source" : "2825", "target" : "4045", "shared_name" : "126328 (interacts with) 29920", "name" : "126328 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 48322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48318", "source" : "2825", "target" : "3501", "shared_name" : "126328 (interacts with) 5831", "name" : "126328 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 48318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48626", "source" : "2813", "target" : "417", "shared_name" : "5079 (interacts with) 6689", "name" : "5079 (interacts with) 6689", "interaction" : "interacts with", "SUID" : 48626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48622", "source" : "2813", "target" : "2389", "shared_name" : "5079 (interacts with) 6925", "name" : "5079 (interacts with) 6925", "interaction" : "interacts with", "SUID" : 48622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48618", "source" : "2813", "target" : "5729", "shared_name" : "5079 (interacts with) 861", "name" : "5079 (interacts with) 861", "interaction" : "interacts with", "SUID" : 48618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48642", "source" : "2809", "target" : "1793", "shared_name" : "11284 (interacts with) 7515", "name" : "11284 (interacts with) 7515", "interaction" : "interacts with", "SUID" : 48642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48638", "source" : "2809", "target" : "5197", "shared_name" : "11284 (interacts with) 7156", "name" : "11284 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 48638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48634", "source" : "2809", "target" : "5521", "shared_name" : "11284 (interacts with) 7518", "name" : "11284 (interacts with) 7518", "interaction" : "interacts with", "SUID" : 48634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48630", "source" : "2809", "target" : "2553", "shared_name" : "11284 (interacts with) 815", "name" : "11284 (interacts with) 815", "interaction" : "interacts with", "SUID" : 48630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48862", "source" : "2801", "target" : "2021", "shared_name" : "4700 (interacts with) 5428", "name" : "4700 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 48862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48858", "source" : "2801", "target" : "5189", "shared_name" : "4700 (interacts with) 57176", "name" : "4700 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 48858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48854", "source" : "2801", "target" : "3705", "shared_name" : "4700 (interacts with) 87178", "name" : "4700 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 48854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48850", "source" : "2801", "target" : "521", "shared_name" : "4700 (interacts with) 85476", "name" : "4700 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 48850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48846", "source" : "2801", "target" : "1129", "shared_name" : "4700 (interacts with) 57505", "name" : "4700 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 48846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48842", "source" : "2801", "target" : "1053", "shared_name" : "4700 (interacts with) 81689", "name" : "4700 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 48842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48838", "source" : "2801", "target" : "3545", "shared_name" : "4700 (interacts with) 708", "name" : "4700 (interacts with) 708", "interaction" : "interacts with", "SUID" : 48838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48834", "source" : "2801", "target" : "5601", "shared_name" : "4700 (interacts with) 84833", "name" : "4700 (interacts with) 84833", "interaction" : "interacts with", "SUID" : 48834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48830", "source" : "2801", "target" : "2297", "shared_name" : "4700 (interacts with) 55005", "name" : "4700 (interacts with) 55005", "interaction" : "interacts with", "SUID" : 48830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48826", "source" : "2801", "target" : "6073", "shared_name" : "4700 (interacts with) 92170", "name" : "4700 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 48826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48822", "source" : "2801", "target" : "1105", "shared_name" : "4700 (interacts with) 493753", "name" : "4700 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 48822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48818", "source" : "2801", "target" : "6001", "shared_name" : "4700 (interacts with) 55157", "name" : "4700 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 48818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48814", "source" : "2801", "target" : "4141", "shared_name" : "4700 (interacts with) 617", "name" : "4700 (interacts with) 617", "interaction" : "interacts with", "SUID" : 48814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48810", "source" : "2801", "target" : "3633", "shared_name" : "4700 (interacts with) 51067", "name" : "4700 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 48810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48806", "source" : "2801", "target" : "5737", "shared_name" : "4700 (interacts with) 84340", "name" : "4700 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 48806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48802", "source" : "2801", "target" : "4897", "shared_name" : "4700 (interacts with) 55149", "name" : "4700 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 48802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48798", "source" : "2801", "target" : "5821", "shared_name" : "4700 (interacts with) 4724", "name" : "4700 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 48798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48794", "source" : "2801", "target" : "5833", "shared_name" : "4700 (interacts with) 4726", "name" : "4700 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 48794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48790", "source" : "2801", "target" : "5553", "shared_name" : "4700 (interacts with) 55967", "name" : "4700 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 48790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48786", "source" : "2801", "target" : "713", "shared_name" : "4700 (interacts with) 7019", "name" : "4700 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 48786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48782", "source" : "2801", "target" : "5085", "shared_name" : "4700 (interacts with) 56652", "name" : "4700 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 48782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48778", "source" : "2801", "target" : "501", "shared_name" : "4700 (interacts with) 65993", "name" : "4700 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 48778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48774", "source" : "2801", "target" : "2105", "shared_name" : "4700 (interacts with) 56945", "name" : "4700 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 48774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48770", "source" : "2801", "target" : "1573", "shared_name" : "4700 (interacts with) 4723", "name" : "4700 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 48770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48766", "source" : "2801", "target" : "4945", "shared_name" : "4700 (interacts with) 4722", "name" : "4700 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 48766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48762", "source" : "2801", "target" : "889", "shared_name" : "4700 (interacts with) 80224", "name" : "4700 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 48762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48758", "source" : "2801", "target" : "4621", "shared_name" : "4700 (interacts with) 57038", "name" : "4700 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 48758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48754", "source" : "2801", "target" : "1337", "shared_name" : "4700 (interacts with) 55863", "name" : "4700 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 48754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48750", "source" : "2801", "target" : "1661", "shared_name" : "4700 (interacts with) 91942", "name" : "4700 (interacts with) 91942", "interaction" : "interacts with", "SUID" : 48750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48746", "source" : "2801", "target" : "2757", "shared_name" : "4700 (interacts with) 51079", "name" : "4700 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 48746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48742", "source" : "2801", "target" : "4869", "shared_name" : "4700 (interacts with) 92935", "name" : "4700 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 48742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48738", "source" : "2801", "target" : "477", "shared_name" : "4700 (interacts with) 51021", "name" : "4700 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 48738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48734", "source" : "2801", "target" : "3617", "shared_name" : "4700 (interacts with) 4704", "name" : "4700 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 48734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48730", "source" : "2801", "target" : "1197", "shared_name" : "4700 (interacts with) 79587", "name" : "4700 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 48730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48726", "source" : "2801", "target" : "2477", "shared_name" : "4700 (interacts with) 57107", "name" : "4700 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 48726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48722", "source" : "2801", "target" : "4409", "shared_name" : "4700 (interacts with) 6341", "name" : "4700 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 48722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48718", "source" : "2801", "target" : "1929", "shared_name" : "4700 (interacts with) 51218", "name" : "4700 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 48718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48714", "source" : "2801", "target" : "4101", "shared_name" : "4700 (interacts with) 65260", "name" : "4700 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 48714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48710", "source" : "2801", "target" : "4773", "shared_name" : "4700 (interacts with) 90624", "name" : "4700 (interacts with) 90624", "interaction" : "interacts with", "SUID" : 48710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48706", "source" : "2801", "target" : "3973", "shared_name" : "4700 (interacts with) 55572", "name" : "4700 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 48706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48702", "source" : "2801", "target" : "5853", "shared_name" : "4700 (interacts with) 4709", "name" : "4700 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 48702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48698", "source" : "2801", "target" : "4061", "shared_name" : "4700 (interacts with) 4705", "name" : "4700 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 48698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48694", "source" : "2801", "target" : "1561", "shared_name" : "4700 (interacts with) 51117", "name" : "4700 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 48694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48690", "source" : "2801", "target" : "2689", "shared_name" : "4700 (interacts with) 4715", "name" : "4700 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 48690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48686", "source" : "2801", "target" : "2009", "shared_name" : "4700 (interacts with) 79133", "name" : "4700 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 48686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48682", "source" : "2801", "target" : "4953", "shared_name" : "4700 (interacts with) 644096", "name" : "4700 (interacts with) 644096", "interaction" : "interacts with", "SUID" : 48682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48678", "source" : "2801", "target" : "2797", "shared_name" : "4700 (interacts with) 4728", "name" : "4700 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 48678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48674", "source" : "2801", "target" : "1869", "shared_name" : "4700 (interacts with) 4729", "name" : "4700 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 48674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48670", "source" : "2801", "target" : "2109", "shared_name" : "4700 (interacts with) 51103", "name" : "4700 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 48670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48666", "source" : "2801", "target" : "2753", "shared_name" : "4700 (interacts with) 4720", "name" : "4700 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 48666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48662", "source" : "2801", "target" : "2285", "shared_name" : "4700 (interacts with) 51300", "name" : "4700 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 48662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48658", "source" : "2801", "target" : "4017", "shared_name" : "4700 (interacts with) 4719", "name" : "4700 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 48658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48654", "source" : "2801", "target" : "5845", "shared_name" : "4700 (interacts with) 4714", "name" : "4700 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 48654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48650", "source" : "2801", "target" : "4045", "shared_name" : "4700 (interacts with) 29920", "name" : "4700 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 48650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48646", "source" : "2801", "target" : "3501", "shared_name" : "4700 (interacts with) 5831", "name" : "4700 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 48646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49026", "source" : "2797", "target" : "1865", "shared_name" : "4728 (interacts with) 498", "name" : "4728 (interacts with) 498", "interaction" : "interacts with", "SUID" : 49026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49022", "source" : "2797", "target" : "6181", "shared_name" : "4728 (interacts with) 84987", "name" : "4728 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 49022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49018", "source" : "2797", "target" : "1053", "shared_name" : "4728 (interacts with) 81689", "name" : "4728 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 49018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49014", "source" : "2797", "target" : "2105", "shared_name" : "4728 (interacts with) 56945", "name" : "4728 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 49014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49010", "source" : "2797", "target" : "1085", "shared_name" : "4728 (interacts with) 9377", "name" : "4728 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 49010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49006", "source" : "2797", "target" : "2297", "shared_name" : "4728 (interacts with) 55005", "name" : "4728 (interacts with) 55005", "interaction" : "interacts with", "SUID" : 49006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49002", "source" : "2797", "target" : "1129", "shared_name" : "4728 (interacts with) 57505", "name" : "4728 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 49002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48998", "source" : "2797", "target" : "501", "shared_name" : "4728 (interacts with) 65993", "name" : "4728 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 48998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48994", "source" : "2797", "target" : "1105", "shared_name" : "4728 (interacts with) 493753", "name" : "4728 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 48994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48990", "source" : "2797", "target" : "3545", "shared_name" : "4728 (interacts with) 708", "name" : "4728 (interacts with) 708", "interaction" : "interacts with", "SUID" : 48990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48986", "source" : "2797", "target" : "521", "shared_name" : "4728 (interacts with) 85476", "name" : "4728 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 48986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48982", "source" : "2797", "target" : "3633", "shared_name" : "4728 (interacts with) 51067", "name" : "4728 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 48982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48978", "source" : "2797", "target" : "1669", "shared_name" : "4728 (interacts with) 6390", "name" : "4728 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 48978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48974", "source" : "2797", "target" : "2021", "shared_name" : "4728 (interacts with) 5428", "name" : "4728 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 48974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48970", "source" : "2797", "target" : "5737", "shared_name" : "4728 (interacts with) 84340", "name" : "4728 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 48970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48966", "source" : "2797", "target" : "5189", "shared_name" : "4728 (interacts with) 57176", "name" : "4728 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 48966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48962", "source" : "2797", "target" : "4409", "shared_name" : "4728 (interacts with) 6341", "name" : "4728 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 48962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48958", "source" : "2797", "target" : "4869", "shared_name" : "4728 (interacts with) 92935", "name" : "4728 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 48958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48954", "source" : "2797", "target" : "6001", "shared_name" : "4728 (interacts with) 55157", "name" : "4728 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 48954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48950", "source" : "2797", "target" : "4621", "shared_name" : "4728 (interacts with) 57038", "name" : "4728 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 48950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48946", "source" : "2797", "target" : "5553", "shared_name" : "4728 (interacts with) 55967", "name" : "4728 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 48946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48942", "source" : "2797", "target" : "713", "shared_name" : "4728 (interacts with) 7019", "name" : "4728 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 48942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48938", "source" : "2797", "target" : "4897", "shared_name" : "4728 (interacts with) 55149", "name" : "4728 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 48938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48934", "source" : "2797", "target" : "2757", "shared_name" : "4728 (interacts with) 51079", "name" : "4728 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 48934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48930", "source" : "2797", "target" : "6073", "shared_name" : "4728 (interacts with) 92170", "name" : "4728 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 48930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48926", "source" : "2797", "target" : "1337", "shared_name" : "4728 (interacts with) 55863", "name" : "4728 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 48926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48922", "source" : "2797", "target" : "5085", "shared_name" : "4728 (interacts with) 56652", "name" : "4728 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 48922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48918", "source" : "2797", "target" : "1197", "shared_name" : "4728 (interacts with) 79587", "name" : "4728 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 48918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48914", "source" : "2797", "target" : "4757", "shared_name" : "4728 (interacts with) 9997", "name" : "4728 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 48914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48910", "source" : "2797", "target" : "889", "shared_name" : "4728 (interacts with) 80224", "name" : "4728 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 48910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48906", "source" : "2797", "target" : "2477", "shared_name" : "4728 (interacts with) 57107", "name" : "4728 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 48906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48902", "source" : "2797", "target" : "4141", "shared_name" : "4728 (interacts with) 617", "name" : "4728 (interacts with) 617", "interaction" : "interacts with", "SUID" : 48902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48898", "source" : "2797", "target" : "1561", "shared_name" : "4728 (interacts with) 51117", "name" : "4728 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 48898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48894", "source" : "2797", "target" : "4101", "shared_name" : "4728 (interacts with) 65260", "name" : "4728 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 48894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48890", "source" : "2797", "target" : "3973", "shared_name" : "4728 (interacts with) 55572", "name" : "4728 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 48890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48886", "source" : "2797", "target" : "1929", "shared_name" : "4728 (interacts with) 51218", "name" : "4728 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 48886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48882", "source" : "2797", "target" : "477", "shared_name" : "4728 (interacts with) 51021", "name" : "4728 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 48882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48878", "source" : "2797", "target" : "3501", "shared_name" : "4728 (interacts with) 5831", "name" : "4728 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 48878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48874", "source" : "2797", "target" : "2285", "shared_name" : "4728 (interacts with) 51300", "name" : "4728 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 48874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48870", "source" : "2797", "target" : "1869", "shared_name" : "4728 (interacts with) 4729", "name" : "4728 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 48870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "48866", "source" : "2797", "target" : "4045", "shared_name" : "4728 (interacts with) 29920", "name" : "4728 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 48866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49042", "source" : "2793", "target" : "2585", "shared_name" : "8894 (interacts with) 1977", "name" : "8894 (interacts with) 1977", "interaction" : "interacts with", "SUID" : 49042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49038", "source" : "2793", "target" : "2781", "shared_name" : "8894 (interacts with) 1968", "name" : "8894 (interacts with) 1968", "interaction" : "interacts with", "SUID" : 49038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49034", "source" : "2793", "target" : "4485", "shared_name" : "8894 (interacts with) 54496", "name" : "8894 (interacts with) 54496", "interaction" : "interacts with", "SUID" : 49034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49030", "source" : "2793", "target" : "4877", "shared_name" : "8894 (interacts with) 1965", "name" : "8894 (interacts with) 1965", "interaction" : "interacts with", "SUID" : 49030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49166", "source" : "2789", "target" : "2797", "shared_name" : "4536 (interacts with) 4728", "name" : "4536 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 49166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49162", "source" : "2789", "target" : "1573", "shared_name" : "4536 (interacts with) 4723", "name" : "4536 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 49162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49158", "source" : "2789", "target" : "5833", "shared_name" : "4536 (interacts with) 4726", "name" : "4536 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 49158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49154", "source" : "2789", "target" : "4069", "shared_name" : "4536 (interacts with) 374291", "name" : "4536 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 49154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49150", "source" : "2789", "target" : "2285", "shared_name" : "4536 (interacts with) 51300", "name" : "4536 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 49150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49146", "source" : "2789", "target" : "1337", "shared_name" : "4536 (interacts with) 55863", "name" : "4536 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 49146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49142", "source" : "2789", "target" : "1869", "shared_name" : "4536 (interacts with) 4729", "name" : "4536 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 49142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49138", "source" : "2789", "target" : "4017", "shared_name" : "4536 (interacts with) 4719", "name" : "4536 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 49138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49134", "source" : "2789", "target" : "2689", "shared_name" : "4536 (interacts with) 4715", "name" : "4536 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 49134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49130", "source" : "2789", "target" : "5821", "shared_name" : "4536 (interacts with) 4724", "name" : "4536 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 49130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49126", "source" : "2789", "target" : "2753", "shared_name" : "4536 (interacts with) 4720", "name" : "4536 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 49126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49122", "source" : "2789", "target" : "4945", "shared_name" : "4536 (interacts with) 4722", "name" : "4536 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 49122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49118", "source" : "2789", "target" : "5853", "shared_name" : "4536 (interacts with) 4709", "name" : "4536 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 49118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49114", "source" : "2789", "target" : "5845", "shared_name" : "4536 (interacts with) 4714", "name" : "4536 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 49114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49110", "source" : "2789", "target" : "5505", "shared_name" : "4536 (interacts with) 29078", "name" : "4536 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 49110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49106", "source" : "2789", "target" : "2009", "shared_name" : "4536 (interacts with) 79133", "name" : "4536 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 49106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49102", "source" : "2789", "target" : "1661", "shared_name" : "4536 (interacts with) 91942", "name" : "4536 (interacts with) 91942", "interaction" : "interacts with", "SUID" : 49102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49098", "source" : "2789", "target" : "3761", "shared_name" : "4536 (interacts with) 25915", "name" : "4536 (interacts with) 25915", "interaction" : "interacts with", "SUID" : 49098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49094", "source" : "2789", "target" : "793", "shared_name" : "4536 (interacts with) 137682", "name" : "4536 (interacts with) 137682", "interaction" : "interacts with", "SUID" : 49094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49090", "source" : "2789", "target" : "2801", "shared_name" : "4536 (interacts with) 4700", "name" : "4536 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 49090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49086", "source" : "2789", "target" : "2109", "shared_name" : "4536 (interacts with) 51103", "name" : "4536 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 49086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49082", "source" : "2789", "target" : "3617", "shared_name" : "4536 (interacts with) 4704", "name" : "4536 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 49082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49078", "source" : "2789", "target" : "4061", "shared_name" : "4536 (interacts with) 4705", "name" : "4536 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 49078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49074", "source" : "2789", "target" : "2825", "shared_name" : "4536 (interacts with) 126328", "name" : "4536 (interacts with) 126328", "interaction" : "interacts with", "SUID" : 49074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49070", "source" : "2789", "target" : "5885", "shared_name" : "4536 (interacts with) 4540", "name" : "4536 (interacts with) 4540", "interaction" : "interacts with", "SUID" : 49070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49066", "source" : "2789", "target" : "4265", "shared_name" : "4536 (interacts with) 4541", "name" : "4536 (interacts with) 4541", "interaction" : "interacts with", "SUID" : 49066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49062", "source" : "2789", "target" : "5857", "shared_name" : "4536 (interacts with) 4694", "name" : "4536 (interacts with) 4694", "interaction" : "interacts with", "SUID" : 49062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49058", "source" : "2789", "target" : "2741", "shared_name" : "4536 (interacts with) 4695", "name" : "4536 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 49058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49054", "source" : "2789", "target" : "5553", "shared_name" : "4536 (interacts with) 55967", "name" : "4536 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 49054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49050", "source" : "2789", "target" : "2757", "shared_name" : "4536 (interacts with) 51079", "name" : "4536 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 49050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49046", "source" : "2789", "target" : "5829", "shared_name" : "4536 (interacts with) 4538", "name" : "4536 (interacts with) 4538", "interaction" : "interacts with", "SUID" : 49046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49186", "source" : "2785", "target" : "685", "shared_name" : "1351 (interacts with) 4282", "name" : "1351 (interacts with) 4282", "interaction" : "interacts with", "SUID" : 49186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49182", "source" : "2785", "target" : "5585", "shared_name" : "1351 (interacts with) 4512", "name" : "1351 (interacts with) 4512", "interaction" : "interacts with", "SUID" : 49182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49178", "source" : "2785", "target" : "5589", "shared_name" : "1351 (interacts with) 4513", "name" : "1351 (interacts with) 4513", "interaction" : "interacts with", "SUID" : 49178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49174", "source" : "2785", "target" : "2573", "shared_name" : "1351 (interacts with) 4514", "name" : "1351 (interacts with) 4514", "interaction" : "interacts with", "SUID" : 49174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49170", "source" : "2785", "target" : "1605", "shared_name" : "1351 (interacts with) 6648", "name" : "1351 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 49170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49274", "source" : "2781", "target" : "1725", "shared_name" : "1968 (interacts with) 23019", "name" : "1968 (interacts with) 23019", "interaction" : "interacts with", "SUID" : 49274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49270", "source" : "2781", "target" : "1425", "shared_name" : "1968 (interacts with) 55644", "name" : "1968 (interacts with) 55644", "interaction" : "interacts with", "SUID" : 49270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49266", "source" : "2781", "target" : "4597", "shared_name" : "1968 (interacts with) 3376", "name" : "1968 (interacts with) 3376", "interaction" : "interacts with", "SUID" : 49266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49262", "source" : "2781", "target" : "5165", "shared_name" : "1968 (interacts with) 3704", "name" : "1968 (interacts with) 3704", "interaction" : "interacts with", "SUID" : 49262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49258", "source" : "2781", "target" : "3685", "shared_name" : "1968 (interacts with) 3265", "name" : "1968 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 49258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49254", "source" : "2781", "target" : "5509", "shared_name" : "1968 (interacts with) 207", "name" : "1968 (interacts with) 207", "interaction" : "interacts with", "SUID" : 49254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49250", "source" : "2781", "target" : "5225", "shared_name" : "1968 (interacts with) 5290", "name" : "1968 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 49250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49246", "source" : "2781", "target" : "4213", "shared_name" : "1968 (interacts with) 5295", "name" : "1968 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 49246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49242", "source" : "2781", "target" : "817", "shared_name" : "1968 (interacts with) 5728", "name" : "1968 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 49242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49238", "source" : "2781", "target" : "865", "shared_name" : "1968 (interacts with) 3480", "name" : "1968 (interacts with) 3480", "interaction" : "interacts with", "SUID" : 49238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49234", "source" : "2781", "target" : "4649", "shared_name" : "1968 (interacts with) 3479", "name" : "1968 (interacts with) 3479", "interaction" : "interacts with", "SUID" : 49234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49230", "source" : "2781", "target" : "5037", "shared_name" : "1968 (interacts with) 5515", "name" : "1968 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 49230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49226", "source" : "2781", "target" : "2085", "shared_name" : "1968 (interacts with) 2932", "name" : "1968 (interacts with) 2932", "interaction" : "interacts with", "SUID" : 49226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49222", "source" : "2781", "target" : "5577", "shared_name" : "1968 (interacts with) 3091", "name" : "1968 (interacts with) 3091", "interaction" : "interacts with", "SUID" : 49222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49218", "source" : "2781", "target" : "2005", "shared_name" : "1968 (interacts with) 4846", "name" : "1968 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 49218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49214", "source" : "2781", "target" : "2481", "shared_name" : "1968 (interacts with) 2475", "name" : "1968 (interacts with) 2475", "interaction" : "interacts with", "SUID" : 49214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49210", "source" : "2781", "target" : "1493", "shared_name" : "1968 (interacts with) 7428", "name" : "1968 (interacts with) 7428", "interaction" : "interacts with", "SUID" : 49210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49206", "source" : "2781", "target" : "2585", "shared_name" : "1968 (interacts with) 1977", "name" : "1968 (interacts with) 1977", "interaction" : "interacts with", "SUID" : 49206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49202", "source" : "2781", "target" : "5861", "shared_name" : "1968 (interacts with) 5435", "name" : "1968 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 49202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49198", "source" : "2781", "target" : "2793", "shared_name" : "1968 (interacts with) 8894", "name" : "1968 (interacts with) 8894", "interaction" : "interacts with", "SUID" : 49198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49194", "source" : "2781", "target" : "4905", "shared_name" : "1968 (interacts with) 440275", "name" : "1968 (interacts with) 440275", "interaction" : "interacts with", "SUID" : 49194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49190", "source" : "2781", "target" : "6189", "shared_name" : "1968 (interacts with) 54676", "name" : "1968 (interacts with) 54676", "interaction" : "interacts with", "SUID" : 49190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49282", "source" : "2777", "target" : "1405", "shared_name" : "9230 (interacts with) 998", "name" : "9230 (interacts with) 998", "interaction" : "interacts with", "SUID" : 49282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49278", "source" : "2777", "target" : "5133", "shared_name" : "9230 (interacts with) 51", "name" : "9230 (interacts with) 51", "interaction" : "interacts with", "SUID" : 49278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49318", "source" : "2773", "target" : "5285", "shared_name" : "4908 (interacts with) 10133", "name" : "4908 (interacts with) 10133", "interaction" : "interacts with", "SUID" : 49318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49314", "source" : "2773", "target" : "637", "shared_name" : "4908 (interacts with) 6654", "name" : "4908 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 49314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49310", "source" : "2773", "target" : "817", "shared_name" : "4908 (interacts with) 5728", "name" : "4908 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 49310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49306", "source" : "2773", "target" : "1069", "shared_name" : "4908 (interacts with) 5879", "name" : "4908 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 49306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49302", "source" : "2773", "target" : "4213", "shared_name" : "4908 (interacts with) 5295", "name" : "4908 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 49302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49298", "source" : "2773", "target" : "4209", "shared_name" : "4908 (interacts with) 4915", "name" : "4908 (interacts with) 4915", "interaction" : "interacts with", "SUID" : 49298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49294", "source" : "2773", "target" : "5225", "shared_name" : "4908 (interacts with) 5290", "name" : "4908 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 49294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49290", "source" : "2773", "target" : "665", "shared_name" : "4908 (interacts with) 3309", "name" : "4908 (interacts with) 3309", "interaction" : "interacts with", "SUID" : 49290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49286", "source" : "2773", "target" : "3665", "shared_name" : "4908 (interacts with) 29081", "name" : "4908 (interacts with) 29081", "interaction" : "interacts with", "SUID" : 49286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49326", "source" : "2769", "target" : "5421", "shared_name" : "767 (interacts with) 213", "name" : "767 (interacts with) 213", "interaction" : "interacts with", "SUID" : 49326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49322", "source" : "2769", "target" : "5649", "shared_name" : "767 (interacts with) 5265", "name" : "767 (interacts with) 5265", "interaction" : "interacts with", "SUID" : 49322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49354", "source" : "2765", "target" : "1181", "shared_name" : "50846 (interacts with) 51684", "name" : "50846 (interacts with) 51684", "interaction" : "interacts with", "SUID" : 49354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49350", "source" : "2765", "target" : "5249", "shared_name" : "50846 (interacts with) 8643", "name" : "50846 (interacts with) 8643", "interaction" : "interacts with", "SUID" : 49350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49346", "source" : "2765", "target" : "257", "shared_name" : "50846 (interacts with) 6469", "name" : "50846 (interacts with) 6469", "interaction" : "interacts with", "SUID" : 49346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49342", "source" : "2765", "target" : "1601", "shared_name" : "50846 (interacts with) 7415", "name" : "50846 (interacts with) 7415", "interaction" : "interacts with", "SUID" : 49342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49338", "source" : "2765", "target" : "4493", "shared_name" : "50846 (interacts with) 5727", "name" : "50846 (interacts with) 5727", "interaction" : "interacts with", "SUID" : 49338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49334", "source" : "2765", "target" : "5597", "shared_name" : "50846 (interacts with) 22934", "name" : "50846 (interacts with) 22934", "interaction" : "interacts with", "SUID" : 49334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49330", "source" : "2765", "target" : "665", "shared_name" : "50846 (interacts with) 3309", "name" : "50846 (interacts with) 3309", "interaction" : "interacts with", "SUID" : 49330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49426", "source" : "2757", "target" : "2285", "shared_name" : "51079 (interacts with) 51300", "name" : "51079 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 49426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49422", "source" : "2757", "target" : "1661", "shared_name" : "51079 (interacts with) 91942", "name" : "51079 (interacts with) 91942", "interaction" : "interacts with", "SUID" : 49422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49418", "source" : "2757", "target" : "4045", "shared_name" : "51079 (interacts with) 29920", "name" : "51079 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 49418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49414", "source" : "2757", "target" : "3501", "shared_name" : "51079 (interacts with) 5831", "name" : "51079 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 49414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49410", "source" : "2757", "target" : "889", "shared_name" : "51079 (interacts with) 80224", "name" : "51079 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 49410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49406", "source" : "2757", "target" : "2009", "shared_name" : "51079 (interacts with) 79133", "name" : "51079 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 49406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49402", "source" : "2757", "target" : "801", "shared_name" : "51079 (interacts with) 1376", "name" : "51079 (interacts with) 1376", "interaction" : "interacts with", "SUID" : 49402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49398", "source" : "2757", "target" : "5833", "shared_name" : "51079 (interacts with) 4726", "name" : "51079 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 49398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49394", "source" : "2757", "target" : "5553", "shared_name" : "51079 (interacts with) 55967", "name" : "51079 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 49394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49390", "source" : "2757", "target" : "2261", "shared_name" : "51079 (interacts with) 1161", "name" : "51079 (interacts with) 1161", "interaction" : "interacts with", "SUID" : 49390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49386", "source" : "2757", "target" : "4069", "shared_name" : "51079 (interacts with) 374291", "name" : "51079 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 49386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49382", "source" : "2757", "target" : "5505", "shared_name" : "51079 (interacts with) 29078", "name" : "51079 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 49382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49378", "source" : "2757", "target" : "1337", "shared_name" : "51079 (interacts with) 55863", "name" : "51079 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 49378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49374", "source" : "2757", "target" : "2797", "shared_name" : "51079 (interacts with) 4728", "name" : "51079 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 49374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49370", "source" : "2757", "target" : "5821", "shared_name" : "51079 (interacts with) 4724", "name" : "51079 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 49370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49366", "source" : "2757", "target" : "2109", "shared_name" : "51079 (interacts with) 51103", "name" : "51079 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 49366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49362", "source" : "2757", "target" : "5829", "shared_name" : "51079 (interacts with) 4538", "name" : "51079 (interacts with) 4538", "interaction" : "interacts with", "SUID" : 49362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49358", "source" : "2757", "target" : "2337", "shared_name" : "51079 (interacts with) 28976", "name" : "51079 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 49358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49618", "source" : "2753", "target" : "4577", "shared_name" : "4720 (interacts with) 7167", "name" : "4720 (interacts with) 7167", "interaction" : "interacts with", "SUID" : 49618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49614", "source" : "2753", "target" : "5605", "shared_name" : "4720 (interacts with) 51601", "name" : "4720 (interacts with) 51601", "interaction" : "interacts with", "SUID" : 49614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49610", "source" : "2753", "target" : "3621", "shared_name" : "4720 (interacts with) 6834", "name" : "4720 (interacts with) 6834", "interaction" : "interacts with", "SUID" : 49610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49606", "source" : "2753", "target" : "1053", "shared_name" : "4720 (interacts with) 81689", "name" : "4720 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 49606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49602", "source" : "2753", "target" : "2297", "shared_name" : "4720 (interacts with) 55005", "name" : "4720 (interacts with) 55005", "interaction" : "interacts with", "SUID" : 49602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49598", "source" : "2753", "target" : "1085", "shared_name" : "4720 (interacts with) 9377", "name" : "4720 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 49598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49594", "source" : "2753", "target" : "6181", "shared_name" : "4720 (interacts with) 84987", "name" : "4720 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 49594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49590", "source" : "2753", "target" : "521", "shared_name" : "4720 (interacts with) 85476", "name" : "4720 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 49590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49586", "source" : "2753", "target" : "721", "shared_name" : "4720 (interacts with) 79731", "name" : "4720 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 49586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49582", "source" : "2753", "target" : "3545", "shared_name" : "4720 (interacts with) 708", "name" : "4720 (interacts with) 708", "interaction" : "interacts with", "SUID" : 49582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49578", "source" : "2753", "target" : "1129", "shared_name" : "4720 (interacts with) 57505", "name" : "4720 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 49578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49574", "source" : "2753", "target" : "5189", "shared_name" : "4720 (interacts with) 57176", "name" : "4720 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 49574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49570", "source" : "2753", "target" : "4253", "shared_name" : "4720 (interacts with) 84706", "name" : "4720 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 49570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49566", "source" : "2753", "target" : "501", "shared_name" : "4720 (interacts with) 65993", "name" : "4720 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 49566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49562", "source" : "2753", "target" : "1105", "shared_name" : "4720 (interacts with) 493753", "name" : "4720 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 49562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49558", "source" : "2753", "target" : "5737", "shared_name" : "4720 (interacts with) 84340", "name" : "4720 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 49558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49554", "source" : "2753", "target" : "2021", "shared_name" : "4720 (interacts with) 5428", "name" : "4720 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 49554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49550", "source" : "2753", "target" : "4897", "shared_name" : "4720 (interacts with) 55149", "name" : "4720 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 49550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49546", "source" : "2753", "target" : "6073", "shared_name" : "4720 (interacts with) 92170", "name" : "4720 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 49546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49542", "source" : "2753", "target" : "5833", "shared_name" : "4720 (interacts with) 4726", "name" : "4720 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 49542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49538", "source" : "2753", "target" : "5821", "shared_name" : "4720 (interacts with) 4724", "name" : "4720 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 49538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49534", "source" : "2753", "target" : "5085", "shared_name" : "4720 (interacts with) 56652", "name" : "4720 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 49534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49530", "source" : "2753", "target" : "4409", "shared_name" : "4720 (interacts with) 6341", "name" : "4720 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 49530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49526", "source" : "2753", "target" : "2757", "shared_name" : "4720 (interacts with) 51079", "name" : "4720 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 49526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49522", "source" : "2753", "target" : "1337", "shared_name" : "4720 (interacts with) 55863", "name" : "4720 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 49522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49518", "source" : "2753", "target" : "5553", "shared_name" : "4720 (interacts with) 55967", "name" : "4720 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 49518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49514", "source" : "2753", "target" : "1929", "shared_name" : "4720 (interacts with) 51218", "name" : "4720 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 49514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49510", "source" : "2753", "target" : "3633", "shared_name" : "4720 (interacts with) 51067", "name" : "4720 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 49510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49506", "source" : "2753", "target" : "889", "shared_name" : "4720 (interacts with) 80224", "name" : "4720 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 49506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49502", "source" : "2753", "target" : "4621", "shared_name" : "4720 (interacts with) 57038", "name" : "4720 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 49502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49498", "source" : "2753", "target" : "2105", "shared_name" : "4720 (interacts with) 56945", "name" : "4720 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 49498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49494", "source" : "2753", "target" : "713", "shared_name" : "4720 (interacts with) 7019", "name" : "4720 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 49494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49490", "source" : "2753", "target" : "4141", "shared_name" : "4720 (interacts with) 617", "name" : "4720 (interacts with) 617", "interaction" : "interacts with", "SUID" : 49490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49486", "source" : "2753", "target" : "4757", "shared_name" : "4720 (interacts with) 9997", "name" : "4720 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 49486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49482", "source" : "2753", "target" : "4869", "shared_name" : "4720 (interacts with) 92935", "name" : "4720 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 49482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49478", "source" : "2753", "target" : "1197", "shared_name" : "4720 (interacts with) 79587", "name" : "4720 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 49478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49474", "source" : "2753", "target" : "2477", "shared_name" : "4720 (interacts with) 57107", "name" : "4720 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 49474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49470", "source" : "2753", "target" : "4101", "shared_name" : "4720 (interacts with) 65260", "name" : "4720 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 49470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49466", "source" : "2753", "target" : "477", "shared_name" : "4720 (interacts with) 51021", "name" : "4720 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 49466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49462", "source" : "2753", "target" : "2285", "shared_name" : "4720 (interacts with) 51300", "name" : "4720 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 49462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49458", "source" : "2753", "target" : "3973", "shared_name" : "4720 (interacts with) 55572", "name" : "4720 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 49458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49454", "source" : "2753", "target" : "1561", "shared_name" : "4720 (interacts with) 51117", "name" : "4720 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 49454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49450", "source" : "2753", "target" : "1869", "shared_name" : "4720 (interacts with) 4729", "name" : "4720 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 49450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49446", "source" : "2753", "target" : "4945", "shared_name" : "4720 (interacts with) 4722", "name" : "4720 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 49446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49442", "source" : "2753", "target" : "1573", "shared_name" : "4720 (interacts with) 4723", "name" : "4720 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 49442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49438", "source" : "2753", "target" : "2797", "shared_name" : "4720 (interacts with) 4728", "name" : "4720 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 49438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49434", "source" : "2753", "target" : "3501", "shared_name" : "4720 (interacts with) 5831", "name" : "4720 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 49434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49430", "source" : "2753", "target" : "4045", "shared_name" : "4720 (interacts with) 29920", "name" : "4720 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 49430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49642", "source" : "2749", "target" : "5185", "shared_name" : "100506658 (interacts with) 1499", "name" : "100506658 (interacts with) 1499", "interaction" : "interacts with", "SUID" : 49642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49638", "source" : "2749", "target" : "3293", "shared_name" : "100506658 (interacts with) 1832", "name" : "100506658 (interacts with) 1832", "interaction" : "interacts with", "SUID" : 49638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49634", "source" : "2749", "target" : "1845", "shared_name" : "100506658 (interacts with) 836", "name" : "100506658 (interacts with) 836", "interaction" : "interacts with", "SUID" : 49634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49630", "source" : "2749", "target" : "5729", "shared_name" : "100506658 (interacts with) 861", "name" : "100506658 (interacts with) 861", "interaction" : "interacts with", "SUID" : 49630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49626", "source" : "2749", "target" : "2109", "shared_name" : "100506658 (interacts with) 51103", "name" : "100506658 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 49626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49622", "source" : "2749", "target" : "3045", "shared_name" : "100506658 (interacts with) 1493", "name" : "100506658 (interacts with) 1493", "interaction" : "interacts with", "SUID" : 49622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49654", "source" : "2745", "target" : "969", "shared_name" : "10215 (interacts with) 2670", "name" : "10215 (interacts with) 2670", "interaction" : "interacts with", "SUID" : 49654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49650", "source" : "2745", "target" : "4677", "shared_name" : "10215 (interacts with) 116448", "name" : "10215 (interacts with) 116448", "interaction" : "interacts with", "SUID" : 49650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49646", "source" : "2745", "target" : "765", "shared_name" : "10215 (interacts with) 4340", "name" : "10215 (interacts with) 4340", "interaction" : "interacts with", "SUID" : 49646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49882", "source" : "2741", "target" : "2297", "shared_name" : "4695 (interacts with) 55005", "name" : "4695 (interacts with) 55005", "interaction" : "interacts with", "SUID" : 49882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49878", "source" : "2741", "target" : "721", "shared_name" : "4695 (interacts with) 79731", "name" : "4695 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 49878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49874", "source" : "2741", "target" : "521", "shared_name" : "4695 (interacts with) 85476", "name" : "4695 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 49874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49870", "source" : "2741", "target" : "1129", "shared_name" : "4695 (interacts with) 57505", "name" : "4695 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 49870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49866", "source" : "2741", "target" : "2021", "shared_name" : "4695 (interacts with) 5428", "name" : "4695 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 49866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49862", "source" : "2741", "target" : "501", "shared_name" : "4695 (interacts with) 65993", "name" : "4695 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 49862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49858", "source" : "2741", "target" : "3545", "shared_name" : "4695 (interacts with) 708", "name" : "4695 (interacts with) 708", "interaction" : "interacts with", "SUID" : 49858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49854", "source" : "2741", "target" : "6181", "shared_name" : "4695 (interacts with) 84987", "name" : "4695 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 49854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49850", "source" : "2741", "target" : "5189", "shared_name" : "4695 (interacts with) 57176", "name" : "4695 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 49850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49846", "source" : "2741", "target" : "3621", "shared_name" : "4695 (interacts with) 6834", "name" : "4695 (interacts with) 6834", "interaction" : "interacts with", "SUID" : 49846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49842", "source" : "2741", "target" : "3633", "shared_name" : "4695 (interacts with) 51067", "name" : "4695 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 49842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49838", "source" : "2741", "target" : "1053", "shared_name" : "4695 (interacts with) 81689", "name" : "4695 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 49838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49834", "source" : "2741", "target" : "4897", "shared_name" : "4695 (interacts with) 55149", "name" : "4695 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 49834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49830", "source" : "2741", "target" : "1105", "shared_name" : "4695 (interacts with) 493753", "name" : "4695 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 49830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49826", "source" : "2741", "target" : "713", "shared_name" : "4695 (interacts with) 7019", "name" : "4695 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 49826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49822", "source" : "2741", "target" : "5737", "shared_name" : "4695 (interacts with) 84340", "name" : "4695 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 49822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49818", "source" : "2741", "target" : "2901", "shared_name" : "4695 (interacts with) 6647", "name" : "4695 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 49818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49814", "source" : "2741", "target" : "5085", "shared_name" : "4695 (interacts with) 56652", "name" : "4695 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 49814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49810", "source" : "2741", "target" : "6073", "shared_name" : "4695 (interacts with) 92170", "name" : "4695 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 49810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49806", "source" : "2741", "target" : "4757", "shared_name" : "4695 (interacts with) 9997", "name" : "4695 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 49806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49802", "source" : "2741", "target" : "1929", "shared_name" : "4695 (interacts with) 51218", "name" : "4695 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 49802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49798", "source" : "2741", "target" : "4101", "shared_name" : "4695 (interacts with) 65260", "name" : "4695 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 49798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49794", "source" : "2741", "target" : "2105", "shared_name" : "4695 (interacts with) 56945", "name" : "4695 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 49794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49790", "source" : "2741", "target" : "1197", "shared_name" : "4695 (interacts with) 79587", "name" : "4695 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 49790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49786", "source" : "2741", "target" : "6001", "shared_name" : "4695 (interacts with) 55157", "name" : "4695 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 49786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49782", "source" : "2741", "target" : "4141", "shared_name" : "4695 (interacts with) 617", "name" : "4695 (interacts with) 617", "interaction" : "interacts with", "SUID" : 49782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49778", "source" : "2741", "target" : "4869", "shared_name" : "4695 (interacts with) 92935", "name" : "4695 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 49778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49774", "source" : "2741", "target" : "5821", "shared_name" : "4695 (interacts with) 4724", "name" : "4695 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 49774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49770", "source" : "2741", "target" : "5833", "shared_name" : "4695 (interacts with) 4726", "name" : "4695 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 49770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49766", "source" : "2741", "target" : "5553", "shared_name" : "4695 (interacts with) 55967", "name" : "4695 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 49766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49762", "source" : "2741", "target" : "4409", "shared_name" : "4695 (interacts with) 6341", "name" : "4695 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 49762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49758", "source" : "2741", "target" : "4621", "shared_name" : "4695 (interacts with) 57038", "name" : "4695 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 49758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49754", "source" : "2741", "target" : "2757", "shared_name" : "4695 (interacts with) 51079", "name" : "4695 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 49754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49750", "source" : "2741", "target" : "477", "shared_name" : "4695 (interacts with) 51021", "name" : "4695 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 49750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49746", "source" : "2741", "target" : "1337", "shared_name" : "4695 (interacts with) 55863", "name" : "4695 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 49746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49742", "source" : "2741", "target" : "1661", "shared_name" : "4695 (interacts with) 91942", "name" : "4695 (interacts with) 91942", "interaction" : "interacts with", "SUID" : 49742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49738", "source" : "2741", "target" : "1573", "shared_name" : "4695 (interacts with) 4723", "name" : "4695 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 49738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49734", "source" : "2741", "target" : "2477", "shared_name" : "4695 (interacts with) 57107", "name" : "4695 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 49734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49730", "source" : "2741", "target" : "4945", "shared_name" : "4695 (interacts with) 4722", "name" : "4695 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 49730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49726", "source" : "2741", "target" : "889", "shared_name" : "4695 (interacts with) 80224", "name" : "4695 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 49726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49722", "source" : "2741", "target" : "3617", "shared_name" : "4695 (interacts with) 4704", "name" : "4695 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 49722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49718", "source" : "2741", "target" : "3973", "shared_name" : "4695 (interacts with) 55572", "name" : "4695 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 49718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49714", "source" : "2741", "target" : "2009", "shared_name" : "4695 (interacts with) 79133", "name" : "4695 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 49714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49710", "source" : "2741", "target" : "2689", "shared_name" : "4695 (interacts with) 4715", "name" : "4695 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 49710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49706", "source" : "2741", "target" : "2109", "shared_name" : "4695 (interacts with) 51103", "name" : "4695 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 49706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49702", "source" : "2741", "target" : "5853", "shared_name" : "4695 (interacts with) 4709", "name" : "4695 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 49702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49698", "source" : "2741", "target" : "1561", "shared_name" : "4695 (interacts with) 51117", "name" : "4695 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 49698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49694", "source" : "2741", "target" : "2285", "shared_name" : "4695 (interacts with) 51300", "name" : "4695 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 49694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49690", "source" : "2741", "target" : "2753", "shared_name" : "4695 (interacts with) 4720", "name" : "4695 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 49690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49686", "source" : "2741", "target" : "5845", "shared_name" : "4695 (interacts with) 4714", "name" : "4695 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 49686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49682", "source" : "2741", "target" : "2797", "shared_name" : "4695 (interacts with) 4728", "name" : "4695 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 49682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49678", "source" : "2741", "target" : "2801", "shared_name" : "4695 (interacts with) 4700", "name" : "4695 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 49678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49674", "source" : "2741", "target" : "1869", "shared_name" : "4695 (interacts with) 4729", "name" : "4695 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 49674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49670", "source" : "2741", "target" : "4017", "shared_name" : "4695 (interacts with) 4719", "name" : "4695 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 49670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49666", "source" : "2741", "target" : "4061", "shared_name" : "4695 (interacts with) 4705", "name" : "4695 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 49666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49662", "source" : "2741", "target" : "4045", "shared_name" : "4695 (interacts with) 29920", "name" : "4695 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 49662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49658", "source" : "2741", "target" : "3501", "shared_name" : "4695 (interacts with) 5831", "name" : "4695 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 49658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49942", "source" : "2737", "target" : "1717", "shared_name" : "966 (interacts with) 51693", "name" : "966 (interacts with) 51693", "interaction" : "interacts with", "SUID" : 49942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49938", "source" : "2737", "target" : "2521", "shared_name" : "966 (interacts with) 83696", "name" : "966 (interacts with) 83696", "interaction" : "interacts with", "SUID" : 49938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49934", "source" : "2737", "target" : "1457", "shared_name" : "966 (interacts with) 122553", "name" : "966 (interacts with) 122553", "interaction" : "interacts with", "SUID" : 49934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49930", "source" : "2737", "target" : "545", "shared_name" : "966 (interacts with) 51014", "name" : "966 (interacts with) 51014", "interaction" : "interacts with", "SUID" : 49930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49926", "source" : "2737", "target" : "5749", "shared_name" : "966 (interacts with) 10959", "name" : "966 (interacts with) 10959", "interaction" : "interacts with", "SUID" : 49926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49922", "source" : "2737", "target" : "3637", "shared_name" : "966 (interacts with) 6712", "name" : "966 (interacts with) 6712", "interaction" : "interacts with", "SUID" : 49922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49918", "source" : "2737", "target" : "1633", "shared_name" : "966 (interacts with) 57731", "name" : "966 (interacts with) 57731", "interaction" : "interacts with", "SUID" : 49918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49914", "source" : "2737", "target" : "2473", "shared_name" : "966 (interacts with) 10342", "name" : "966 (interacts with) 10342", "interaction" : "interacts with", "SUID" : 49914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49910", "source" : "2737", "target" : "1973", "shared_name" : "966 (interacts with) 6709", "name" : "966 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 49910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49906", "source" : "2737", "target" : "1589", "shared_name" : "966 (interacts with) 22872", "name" : "966 (interacts with) 22872", "interaction" : "interacts with", "SUID" : 49906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49902", "source" : "2737", "target" : "3785", "shared_name" : "966 (interacts with) 1781", "name" : "966 (interacts with) 1781", "interaction" : "interacts with", "SUID" : 49902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49898", "source" : "2737", "target" : "1321", "shared_name" : "966 (interacts with) 1778", "name" : "966 (interacts with) 1778", "interaction" : "interacts with", "SUID" : 49898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49894", "source" : "2737", "target" : "3301", "shared_name" : "966 (interacts with) 91949", "name" : "966 (interacts with) 91949", "interaction" : "interacts with", "SUID" : 49894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49890", "source" : "2737", "target" : "1269", "shared_name" : "966 (interacts with) 9276", "name" : "966 (interacts with) 9276", "interaction" : "interacts with", "SUID" : 49890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49886", "source" : "2737", "target" : "4637", "shared_name" : "966 (interacts with) 25839", "name" : "966 (interacts with) 25839", "interaction" : "interacts with", "SUID" : 49886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49966", "source" : "2733", "target" : "1493", "shared_name" : "5718 (interacts with) 7428", "name" : "5718 (interacts with) 7428", "interaction" : "interacts with", "SUID" : 49966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49962", "source" : "2733", "target" : "465", "shared_name" : "5718 (interacts with) 8792", "name" : "5718 (interacts with) 8792", "interaction" : "interacts with", "SUID" : 49962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49958", "source" : "2733", "target" : "3869", "shared_name" : "5718 (interacts with) 8742", "name" : "5718 (interacts with) 8742", "interaction" : "interacts with", "SUID" : 49958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49954", "source" : "2733", "target" : "4065", "shared_name" : "5718 (interacts with) 7124", "name" : "5718 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 49954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49950", "source" : "2733", "target" : "1181", "shared_name" : "5718 (interacts with) 51684", "name" : "5718 (interacts with) 51684", "interaction" : "interacts with", "SUID" : 49950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49946", "source" : "2733", "target" : "4949", "shared_name" : "5718 (interacts with) 5970", "name" : "5718 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 49946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49978", "source" : "2729", "target" : "5073", "shared_name" : "1471 (interacts with) 7305", "name" : "1471 (interacts with) 7305", "interaction" : "interacts with", "SUID" : 49978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49974", "source" : "2729", "target" : "5649", "shared_name" : "1471 (interacts with) 5265", "name" : "1471 (interacts with) 5265", "interaction" : "interacts with", "SUID" : 49974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49970", "source" : "2729", "target" : "2713", "shared_name" : "1471 (interacts with) 1476", "name" : "1471 (interacts with) 1476", "interaction" : "interacts with", "SUID" : 49970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50006", "source" : "2725", "target" : "5593", "shared_name" : "1789 (interacts with) 875", "name" : "1789 (interacts with) 875", "interaction" : "interacts with", "SUID" : 50006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50002", "source" : "2725", "target" : "4273", "shared_name" : "1789 (interacts with) 4548", "name" : "1789 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 50002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49998", "source" : "2725", "target" : "2457", "shared_name" : "1789 (interacts with) 4143", "name" : "1789 (interacts with) 4143", "interaction" : "interacts with", "SUID" : 49998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49994", "source" : "2725", "target" : "1877", "shared_name" : "1789 (interacts with) 9531", "name" : "1789 (interacts with) 9531", "interaction" : "interacts with", "SUID" : 49994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49990", "source" : "2725", "target" : "877", "shared_name" : "1789 (interacts with) 7341", "name" : "1789 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 49990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49986", "source" : "2725", "target" : "825", "shared_name" : "1789 (interacts with) 25942", "name" : "1789 (interacts with) 25942", "interaction" : "interacts with", "SUID" : 49986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "49982", "source" : "2725", "target" : "2625", "shared_name" : "1789 (interacts with) 3065", "name" : "1789 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 49982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50022", "source" : "2721", "target" : "1885", "shared_name" : "79751 (interacts with) 8604", "name" : "79751 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 50022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50018", "source" : "2721", "target" : "1013", "shared_name" : "79751 (interacts with) 6898", "name" : "79751 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 50018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50014", "source" : "2721", "target" : "5497", "shared_name" : "79751 (interacts with) 91137", "name" : "79751 (interacts with) 91137", "interaction" : "interacts with", "SUID" : 50014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50010", "source" : "2721", "target" : "1385", "shared_name" : "79751 (interacts with) 6520", "name" : "79751 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 50010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50026", "source" : "2717", "target" : "981", "shared_name" : "10397 (interacts with) 7157", "name" : "10397 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 50026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50094", "source" : "2709", "target" : "729", "shared_name" : "2072 (interacts with) 5888", "name" : "2072 (interacts with) 5888", "interaction" : "interacts with", "SUID" : 50094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50090", "source" : "2709", "target" : "5197", "shared_name" : "2072 (interacts with) 7156", "name" : "2072 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 50090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50086", "source" : "2709", "target" : "913", "shared_name" : "2072 (interacts with) 404672", "name" : "2072 (interacts with) 404672", "interaction" : "interacts with", "SUID" : 50086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50082", "source" : "2709", "target" : "2921", "shared_name" : "2072 (interacts with) 5981", "name" : "2072 (interacts with) 5981", "interaction" : "interacts with", "SUID" : 50082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50078", "source" : "2709", "target" : "4249", "shared_name" : "2072 (interacts with) 4331", "name" : "2072 (interacts with) 4331", "interaction" : "interacts with", "SUID" : 50078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50074", "source" : "2709", "target" : "1709", "shared_name" : "2072 (interacts with) 2074", "name" : "2072 (interacts with) 2074", "interaction" : "interacts with", "SUID" : 50074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50070", "source" : "2709", "target" : "4037", "shared_name" : "2072 (interacts with) 2073", "name" : "2072 (interacts with) 2073", "interaction" : "interacts with", "SUID" : 50070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50066", "source" : "2709", "target" : "5861", "shared_name" : "2072 (interacts with) 5435", "name" : "2072 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 50066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50062", "source" : "2709", "target" : "2649", "shared_name" : "2072 (interacts with) 5430", "name" : "2072 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 50062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50058", "source" : "2709", "target" : "1729", "shared_name" : "2072 (interacts with) 5111", "name" : "2072 (interacts with) 5111", "interaction" : "interacts with", "SUID" : 50058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50054", "source" : "2709", "target" : "2529", "shared_name" : "2072 (interacts with) 5424", "name" : "2072 (interacts with) 5424", "interaction" : "interacts with", "SUID" : 50054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50050", "source" : "2709", "target" : "3049", "shared_name" : "2072 (interacts with) 142", "name" : "2072 (interacts with) 142", "interaction" : "interacts with", "SUID" : 50050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50046", "source" : "2709", "target" : "3933", "shared_name" : "2072 (interacts with) 10524", "name" : "2072 (interacts with) 10524", "interaction" : "interacts with", "SUID" : 50046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50042", "source" : "2709", "target" : "1937", "shared_name" : "2072 (interacts with) 2965", "name" : "2072 (interacts with) 2965", "interaction" : "interacts with", "SUID" : 50042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50038", "source" : "2709", "target" : "2261", "shared_name" : "2072 (interacts with) 1161", "name" : "2072 (interacts with) 1161", "interaction" : "interacts with", "SUID" : 50038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50034", "source" : "2709", "target" : "5041", "shared_name" : "2072 (interacts with) 2067", "name" : "2072 (interacts with) 2067", "interaction" : "interacts with", "SUID" : 50034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50030", "source" : "2709", "target" : "481", "shared_name" : "2072 (interacts with) 7507", "name" : "2072 (interacts with) 7507", "interaction" : "interacts with", "SUID" : 50030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50134", "source" : "2705", "target" : "4497", "shared_name" : "8379 (interacts with) 8243", "name" : "8379 (interacts with) 8243", "interaction" : "interacts with", "SUID" : 50134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50130", "source" : "2705", "target" : "4797", "shared_name" : "8379 (interacts with) 10735", "name" : "8379 (interacts with) 10735", "interaction" : "interacts with", "SUID" : 50130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50126", "source" : "2705", "target" : "4549", "shared_name" : "8379 (interacts with) 5903", "name" : "8379 (interacts with) 5903", "interaction" : "interacts with", "SUID" : 50126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50122", "source" : "2705", "target" : "5641", "shared_name" : "8379 (interacts with) 5518", "name" : "8379 (interacts with) 5518", "interaction" : "interacts with", "SUID" : 50122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50118", "source" : "2705", "target" : "5037", "shared_name" : "8379 (interacts with) 5515", "name" : "8379 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 50118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50114", "source" : "2705", "target" : "5429", "shared_name" : "8379 (interacts with) 5048", "name" : "8379 (interacts with) 5048", "interaction" : "interacts with", "SUID" : 50114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50110", "source" : "2705", "target" : "4997", "shared_name" : "8379 (interacts with) 54820", "name" : "8379 (interacts with) 54820", "interaction" : "interacts with", "SUID" : 50110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50106", "source" : "2705", "target" : "2581", "shared_name" : "8379 (interacts with) 7170", "name" : "8379 (interacts with) 7170", "interaction" : "interacts with", "SUID" : 50106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50102", "source" : "2705", "target" : "2665", "shared_name" : "8379 (interacts with) 27229", "name" : "8379 (interacts with) 27229", "interaction" : "interacts with", "SUID" : 50102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50098", "source" : "2705", "target" : "2685", "shared_name" : "8379 (interacts with) 9474", "name" : "8379 (interacts with) 9474", "interaction" : "interacts with", "SUID" : 50098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50186", "source" : "2697", "target" : "3153", "shared_name" : "240 (interacts with) 3684", "name" : "240 (interacts with) 3684", "interaction" : "interacts with", "SUID" : 50186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50182", "source" : "2697", "target" : "3453", "shared_name" : "240 (interacts with) 3394", "name" : "240 (interacts with) 3394", "interaction" : "interacts with", "SUID" : 50182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50178", "source" : "2697", "target" : "4073", "shared_name" : "240 (interacts with) 29760", "name" : "240 (interacts with) 29760", "interaction" : "interacts with", "SUID" : 50178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50174", "source" : "2697", "target" : "5761", "shared_name" : "240 (interacts with) 4208", "name" : "240 (interacts with) 4208", "interaction" : "interacts with", "SUID" : 50174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50170", "source" : "2697", "target" : "5321", "shared_name" : "240 (interacts with) 5743", "name" : "240 (interacts with) 5743", "interaction" : "interacts with", "SUID" : 50170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50166", "source" : "2697", "target" : "3177", "shared_name" : "240 (interacts with) 5321", "name" : "240 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 50166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50162", "source" : "2697", "target" : "3109", "shared_name" : "240 (interacts with) 5450", "name" : "240 (interacts with) 5450", "interaction" : "interacts with", "SUID" : 50162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50158", "source" : "2697", "target" : "2389", "shared_name" : "240 (interacts with) 6925", "name" : "240 (interacts with) 6925", "interaction" : "interacts with", "SUID" : 50158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50154", "source" : "2697", "target" : "2557", "shared_name" : "240 (interacts with) 5444", "name" : "240 (interacts with) 5444", "interaction" : "interacts with", "SUID" : 50154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50150", "source" : "2697", "target" : "1253", "shared_name" : "240 (interacts with) 2876", "name" : "240 (interacts with) 2876", "interaction" : "interacts with", "SUID" : 50150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50146", "source" : "2697", "target" : "245", "shared_name" : "240 (interacts with) 2936", "name" : "240 (interacts with) 2936", "interaction" : "interacts with", "SUID" : 50146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50142", "source" : "2697", "target" : "5653", "shared_name" : "240 (interacts with) 22930", "name" : "240 (interacts with) 22930", "interaction" : "interacts with", "SUID" : 50142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50138", "source" : "2697", "target" : "2705", "shared_name" : "240 (interacts with) 8379", "name" : "240 (interacts with) 8379", "interaction" : "interacts with", "SUID" : 50138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50366", "source" : "2689", "target" : "2021", "shared_name" : "4715 (interacts with) 5428", "name" : "4715 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 50366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50362", "source" : "2689", "target" : "2297", "shared_name" : "4715 (interacts with) 55005", "name" : "4715 (interacts with) 55005", "interaction" : "interacts with", "SUID" : 50362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50358", "source" : "2689", "target" : "4869", "shared_name" : "4715 (interacts with) 92935", "name" : "4715 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 50358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50354", "source" : "2689", "target" : "3621", "shared_name" : "4715 (interacts with) 6834", "name" : "4715 (interacts with) 6834", "interaction" : "interacts with", "SUID" : 50354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50350", "source" : "2689", "target" : "6181", "shared_name" : "4715 (interacts with) 84987", "name" : "4715 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 50350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50346", "source" : "2689", "target" : "1129", "shared_name" : "4715 (interacts with) 57505", "name" : "4715 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 50346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50342", "source" : "2689", "target" : "4141", "shared_name" : "4715 (interacts with) 617", "name" : "4715 (interacts with) 617", "interaction" : "interacts with", "SUID" : 50342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50338", "source" : "2689", "target" : "3633", "shared_name" : "4715 (interacts with) 51067", "name" : "4715 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 50338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50334", "source" : "2689", "target" : "713", "shared_name" : "4715 (interacts with) 7019", "name" : "4715 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 50334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50330", "source" : "2689", "target" : "1105", "shared_name" : "4715 (interacts with) 493753", "name" : "4715 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 50330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50326", "source" : "2689", "target" : "5085", "shared_name" : "4715 (interacts with) 56652", "name" : "4715 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 50326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50322", "source" : "2689", "target" : "4621", "shared_name" : "4715 (interacts with) 57038", "name" : "4715 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 50322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50318", "source" : "2689", "target" : "4409", "shared_name" : "4715 (interacts with) 6341", "name" : "4715 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 50318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50314", "source" : "2689", "target" : "2105", "shared_name" : "4715 (interacts with) 56945", "name" : "4715 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 50314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50310", "source" : "2689", "target" : "521", "shared_name" : "4715 (interacts with) 85476", "name" : "4715 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 50310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50306", "source" : "2689", "target" : "4897", "shared_name" : "4715 (interacts with) 55149", "name" : "4715 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 50306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50302", "source" : "2689", "target" : "3929", "shared_name" : "4715 (interacts with) 5860", "name" : "4715 (interacts with) 5860", "interaction" : "interacts with", "SUID" : 50302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50298", "source" : "2689", "target" : "5189", "shared_name" : "4715 (interacts with) 57176", "name" : "4715 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 50298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50294", "source" : "2689", "target" : "721", "shared_name" : "4715 (interacts with) 79731", "name" : "4715 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 50294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50290", "source" : "2689", "target" : "4757", "shared_name" : "4715 (interacts with) 9997", "name" : "4715 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 50290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50286", "source" : "2689", "target" : "5737", "shared_name" : "4715 (interacts with) 84340", "name" : "4715 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 50286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50282", "source" : "2689", "target" : "6001", "shared_name" : "4715 (interacts with) 55157", "name" : "4715 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 50282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50278", "source" : "2689", "target" : "477", "shared_name" : "4715 (interacts with) 51021", "name" : "4715 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 50278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50274", "source" : "2689", "target" : "1197", "shared_name" : "4715 (interacts with) 79587", "name" : "4715 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 50274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50270", "source" : "2689", "target" : "6073", "shared_name" : "4715 (interacts with) 92170", "name" : "4715 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 50270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50266", "source" : "2689", "target" : "1929", "shared_name" : "4715 (interacts with) 51218", "name" : "4715 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 50266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50262", "source" : "2689", "target" : "5833", "shared_name" : "4715 (interacts with) 4726", "name" : "4715 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 50262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50258", "source" : "2689", "target" : "5553", "shared_name" : "4715 (interacts with) 55967", "name" : "4715 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 50258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50254", "source" : "2689", "target" : "1561", "shared_name" : "4715 (interacts with) 51117", "name" : "4715 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 50254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50250", "source" : "2689", "target" : "2477", "shared_name" : "4715 (interacts with) 57107", "name" : "4715 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 50250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50246", "source" : "2689", "target" : "4101", "shared_name" : "4715 (interacts with) 65260", "name" : "4715 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 50246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50242", "source" : "2689", "target" : "889", "shared_name" : "4715 (interacts with) 80224", "name" : "4715 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 50242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50238", "source" : "2689", "target" : "3973", "shared_name" : "4715 (interacts with) 55572", "name" : "4715 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 50238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50234", "source" : "2689", "target" : "1337", "shared_name" : "4715 (interacts with) 55863", "name" : "4715 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 50234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50230", "source" : "2689", "target" : "2757", "shared_name" : "4715 (interacts with) 51079", "name" : "4715 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 50230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50226", "source" : "2689", "target" : "4945", "shared_name" : "4715 (interacts with) 4722", "name" : "4715 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 50226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50222", "source" : "2689", "target" : "1573", "shared_name" : "4715 (interacts with) 4723", "name" : "4715 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 50222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50218", "source" : "2689", "target" : "5821", "shared_name" : "4715 (interacts with) 4724", "name" : "4715 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 50218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50214", "source" : "2689", "target" : "4045", "shared_name" : "4715 (interacts with) 29920", "name" : "4715 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 50214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50210", "source" : "2689", "target" : "3501", "shared_name" : "4715 (interacts with) 5831", "name" : "4715 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 50210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50206", "source" : "2689", "target" : "2285", "shared_name" : "4715 (interacts with) 51300", "name" : "4715 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 50206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50202", "source" : "2689", "target" : "4017", "shared_name" : "4715 (interacts with) 4719", "name" : "4715 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 50202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50198", "source" : "2689", "target" : "1869", "shared_name" : "4715 (interacts with) 4729", "name" : "4715 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 50198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50194", "source" : "2689", "target" : "2753", "shared_name" : "4715 (interacts with) 4720", "name" : "4715 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 50194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50190", "source" : "2689", "target" : "2797", "shared_name" : "4715 (interacts with) 4728", "name" : "4715 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 50190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50382", "source" : "2685", "target" : "1117", "shared_name" : "9474 (interacts with) 9927", "name" : "9474 (interacts with) 9927", "interaction" : "interacts with", "SUID" : 50382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50378", "source" : "2685", "target" : "3197", "shared_name" : "9474 (interacts with) 64135", "name" : "9474 (interacts with) 64135", "interaction" : "interacts with", "SUID" : 50378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50374", "source" : "2685", "target" : "1613", "shared_name" : "9474 (interacts with) 2332", "name" : "9474 (interacts with) 2332", "interaction" : "interacts with", "SUID" : 50374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50370", "source" : "2685", "target" : "4861", "shared_name" : "9474 (interacts with) 4771", "name" : "9474 (interacts with) 4771", "interaction" : "interacts with", "SUID" : 50370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50414", "source" : "2673", "target" : "1097", "shared_name" : "8841 (interacts with) 79718", "name" : "8841 (interacts with) 79718", "interaction" : "interacts with", "SUID" : 50414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50410", "source" : "2673", "target" : "2081", "shared_name" : "8841 (interacts with) 5468", "name" : "8841 (interacts with) 5468", "interaction" : "interacts with", "SUID" : 50410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50406", "source" : "2673", "target" : "2957", "shared_name" : "8841 (interacts with) 5465", "name" : "8841 (interacts with) 5465", "interaction" : "interacts with", "SUID" : 50406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50402", "source" : "2673", "target" : "817", "shared_name" : "8841 (interacts with) 5728", "name" : "8841 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 50402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50398", "source" : "2673", "target" : "5941", "shared_name" : "8841 (interacts with) 5914", "name" : "8841 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 50398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50394", "source" : "2673", "target" : "5453", "shared_name" : "8841 (interacts with) 4204", "name" : "8841 (interacts with) 4204", "interaction" : "interacts with", "SUID" : 50394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50390", "source" : "2673", "target" : "5465", "shared_name" : "8841 (interacts with) 112939", "name" : "8841 (interacts with) 112939", "interaction" : "interacts with", "SUID" : 50390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50386", "source" : "2673", "target" : "4097", "shared_name" : "8841 (interacts with) 9611", "name" : "8841 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 50386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50418", "source" : "2669", "target" : "5049", "shared_name" : "9197 (interacts with) 6697", "name" : "9197 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 50418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50438", "source" : "2665", "target" : "5713", "shared_name" : "27229 (interacts with) 7531", "name" : "27229 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 50438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50434", "source" : "2665", "target" : "5397", "shared_name" : "27229 (interacts with) 85378", "name" : "27229 (interacts with) 85378", "interaction" : "interacts with", "SUID" : 50434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50430", "source" : "2665", "target" : "3777", "shared_name" : "27229 (interacts with) 6571", "name" : "27229 (interacts with) 6571", "interaction" : "interacts with", "SUID" : 50430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50426", "source" : "2665", "target" : "1741", "shared_name" : "27229 (interacts with) 5133", "name" : "27229 (interacts with) 5133", "interaction" : "interacts with", "SUID" : 50426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50422", "source" : "2665", "target" : "6005", "shared_name" : "27229 (interacts with) 4988", "name" : "27229 (interacts with) 4988", "interaction" : "interacts with", "SUID" : 50422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50490", "source" : "2661", "target" : "5225", "shared_name" : "3606 (interacts with) 5290", "name" : "3606 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 50490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50486", "source" : "2661", "target" : "973", "shared_name" : "3606 (interacts with) 5595", "name" : "3606 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 50486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50482", "source" : "2661", "target" : "4065", "shared_name" : "3606 (interacts with) 7124", "name" : "3606 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 50482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50478", "source" : "2661", "target" : "4213", "shared_name" : "3606 (interacts with) 5295", "name" : "3606 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 50478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50474", "source" : "2661", "target" : "5361", "shared_name" : "3606 (interacts with) 5604", "name" : "3606 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 50474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50470", "source" : "2661", "target" : "5149", "shared_name" : "3606 (interacts with) 5058", "name" : "3606 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 50470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50466", "source" : "2661", "target" : "1701", "shared_name" : "3606 (interacts with) 5777", "name" : "3606 (interacts with) 5777", "interaction" : "interacts with", "SUID" : 50466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50462", "source" : "2661", "target" : "1541", "shared_name" : "3606 (interacts with) 958", "name" : "3606 (interacts with) 958", "interaction" : "interacts with", "SUID" : 50462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50458", "source" : "2661", "target" : "5297", "shared_name" : "3606 (interacts with) 6775", "name" : "3606 (interacts with) 6775", "interaction" : "interacts with", "SUID" : 50458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50454", "source" : "2661", "target" : "4949", "shared_name" : "3606 (interacts with) 5970", "name" : "3606 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 50454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50450", "source" : "2661", "target" : "3285", "shared_name" : "3606 (interacts with) 8302", "name" : "3606 (interacts with) 8302", "interaction" : "interacts with", "SUID" : 50450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50446", "source" : "2661", "target" : "3017", "shared_name" : "3606 (interacts with) 4790", "name" : "3606 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 50446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50442", "source" : "2661", "target" : "1069", "shared_name" : "3606 (interacts with) 5879", "name" : "3606 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 50442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50498", "source" : "2657", "target" : "3961", "shared_name" : "6900 (interacts with) 3897", "name" : "6900 (interacts with) 3897", "interaction" : "interacts with", "SUID" : 50498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50494", "source" : "2657", "target" : "2197", "shared_name" : "6900 (interacts with) 4684", "name" : "6900 (interacts with) 4684", "interaction" : "interacts with", "SUID" : 50494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50594", "source" : "2653", "target" : "4317", "shared_name" : "302 (interacts with) 3178", "name" : "302 (interacts with) 3178", "interaction" : "interacts with", "SUID" : 50594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50590", "source" : "2653", "target" : "997", "shared_name" : "302 (interacts with) 7431", "name" : "302 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 50590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50586", "source" : "2653", "target" : "5801", "shared_name" : "302 (interacts with) 960", "name" : "302 (interacts with) 960", "interaction" : "interacts with", "SUID" : 50586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50582", "source" : "2653", "target" : "4077", "shared_name" : "302 (interacts with) 71", "name" : "302 (interacts with) 71", "interaction" : "interacts with", "SUID" : 50582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50578", "source" : "2653", "target" : "2873", "shared_name" : "302 (interacts with) 6261", "name" : "302 (interacts with) 6261", "interaction" : "interacts with", "SUID" : 50578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50574", "source" : "2653", "target" : "5297", "shared_name" : "302 (interacts with) 6775", "name" : "302 (interacts with) 6775", "interaction" : "interacts with", "SUID" : 50574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50570", "source" : "2653", "target" : "3853", "shared_name" : "302 (interacts with) 6786", "name" : "302 (interacts with) 6786", "interaction" : "interacts with", "SUID" : 50570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50566", "source" : "2653", "target" : "4885", "shared_name" : "302 (interacts with) 5340", "name" : "302 (interacts with) 5340", "interaction" : "interacts with", "SUID" : 50566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50562", "source" : "2653", "target" : "1261", "shared_name" : "302 (interacts with) 57192", "name" : "302 (interacts with) 57192", "interaction" : "interacts with", "SUID" : 50562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50558", "source" : "2653", "target" : "2977", "shared_name" : "302 (interacts with) 4747", "name" : "302 (interacts with) 4747", "interaction" : "interacts with", "SUID" : 50558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50554", "source" : "2653", "target" : "5337", "shared_name" : "302 (interacts with) 84876", "name" : "302 (interacts with) 84876", "interaction" : "interacts with", "SUID" : 50554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50550", "source" : "2653", "target" : "1861", "shared_name" : "302 (interacts with) 3708", "name" : "302 (interacts with) 3708", "interaction" : "interacts with", "SUID" : 50550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50546", "source" : "2653", "target" : "4509", "shared_name" : "302 (interacts with) 2902", "name" : "302 (interacts with) 2902", "interaction" : "interacts with", "SUID" : 50546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50542", "source" : "2653", "target" : "2329", "shared_name" : "302 (interacts with) 2904", "name" : "302 (interacts with) 2904", "interaction" : "interacts with", "SUID" : 50542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50538", "source" : "2653", "target" : "5365", "shared_name" : "302 (interacts with) 2893", "name" : "302 (interacts with) 2893", "interaction" : "interacts with", "SUID" : 50538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50534", "source" : "2653", "target" : "3661", "shared_name" : "302 (interacts with) 1134", "name" : "302 (interacts with) 1134", "interaction" : "interacts with", "SUID" : 50534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50530", "source" : "2653", "target" : "2553", "shared_name" : "302 (interacts with) 815", "name" : "302 (interacts with) 815", "interaction" : "interacts with", "SUID" : 50530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50526", "source" : "2653", "target" : "993", "shared_name" : "302 (interacts with) 801", "name" : "302 (interacts with) 801", "interaction" : "interacts with", "SUID" : 50526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50522", "source" : "2653", "target" : "5557", "shared_name" : "302 (interacts with) 9254", "name" : "302 (interacts with) 9254", "interaction" : "interacts with", "SUID" : 50522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50518", "source" : "2653", "target" : "641", "shared_name" : "302 (interacts with) 773", "name" : "302 (interacts with) 773", "interaction" : "interacts with", "SUID" : 50518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50514", "source" : "2653", "target" : "3765", "shared_name" : "302 (interacts with) 774", "name" : "302 (interacts with) 774", "interaction" : "interacts with", "SUID" : 50514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50510", "source" : "2653", "target" : "357", "shared_name" : "302 (interacts with) 777", "name" : "302 (interacts with) 777", "interaction" : "interacts with", "SUID" : 50510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50506", "source" : "2653", "target" : "3273", "shared_name" : "302 (interacts with) 351", "name" : "302 (interacts with) 351", "interaction" : "interacts with", "SUID" : 50506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50502", "source" : "2653", "target" : "1729", "shared_name" : "302 (interacts with) 5111", "name" : "302 (interacts with) 5111", "interaction" : "interacts with", "SUID" : 50502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50670", "source" : "2649", "target" : "473", "shared_name" : "5430 (interacts with) 7072", "name" : "5430 (interacts with) 7072", "interaction" : "interacts with", "SUID" : 50670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50666", "source" : "2649", "target" : "2077", "shared_name" : "5430 (interacts with) 7528", "name" : "5430 (interacts with) 7528", "interaction" : "interacts with", "SUID" : 50666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50662", "source" : "2649", "target" : "1793", "shared_name" : "5430 (interacts with) 7515", "name" : "5430 (interacts with) 7515", "interaction" : "interacts with", "SUID" : 50662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50658", "source" : "2649", "target" : "481", "shared_name" : "5430 (interacts with) 7507", "name" : "5430 (interacts with) 7507", "interaction" : "interacts with", "SUID" : 50658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50654", "source" : "2649", "target" : "5197", "shared_name" : "5430 (interacts with) 7156", "name" : "5430 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 50654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50650", "source" : "2649", "target" : "2305", "shared_name" : "5430 (interacts with) 6908", "name" : "5430 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 50650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50646", "source" : "2649", "target" : "749", "shared_name" : "5430 (interacts with) 6873", "name" : "5430 (interacts with) 6873", "interaction" : "interacts with", "SUID" : 50646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50642", "source" : "2649", "target" : "4425", "shared_name" : "5430 (interacts with) 6884", "name" : "5430 (interacts with) 6884", "interaction" : "interacts with", "SUID" : 50642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50638", "source" : "2649", "target" : "5377", "shared_name" : "5430 (interacts with) 6638", "name" : "5430 (interacts with) 6638", "interaction" : "interacts with", "SUID" : 50638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50634", "source" : "2649", "target" : "3953", "shared_name" : "5430 (interacts with) 8731", "name" : "5430 (interacts with) 8731", "interaction" : "interacts with", "SUID" : 50634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50630", "source" : "2649", "target" : "2921", "shared_name" : "5430 (interacts with) 5981", "name" : "5430 (interacts with) 5981", "interaction" : "interacts with", "SUID" : 50630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50626", "source" : "2649", "target" : "1837", "shared_name" : "5430 (interacts with) 9939", "name" : "5430 (interacts with) 9939", "interaction" : "interacts with", "SUID" : 50626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50622", "source" : "2649", "target" : "5193", "shared_name" : "5430 (interacts with) 5725", "name" : "5430 (interacts with) 5725", "interaction" : "interacts with", "SUID" : 50622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50618", "source" : "2649", "target" : "3825", "shared_name" : "5430 (interacts with) 5915", "name" : "5430 (interacts with) 5915", "interaction" : "interacts with", "SUID" : 50618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50614", "source" : "2649", "target" : "5941", "shared_name" : "5430 (interacts with) 5914", "name" : "5430 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 50614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50610", "source" : "2649", "target" : "5281", "shared_name" : "5430 (interacts with) 10084", "name" : "5430 (interacts with) 10084", "interaction" : "interacts with", "SUID" : 50610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50606", "source" : "2649", "target" : "5861", "shared_name" : "5430 (interacts with) 5435", "name" : "5430 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 50606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50602", "source" : "2649", "target" : "2917", "shared_name" : "5430 (interacts with) 5451", "name" : "5430 (interacts with) 5451", "interaction" : "interacts with", "SUID" : 50602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50598", "source" : "2649", "target" : "2237", "shared_name" : "5430 (interacts with) 10516", "name" : "5430 (interacts with) 10516", "interaction" : "interacts with", "SUID" : 50598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50834", "source" : "2645", "target" : "781", "shared_name" : "476 (interacts with) 4860", "name" : "476 (interacts with) 4860", "interaction" : "interacts with", "SUID" : 50834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50830", "source" : "2645", "target" : "4869", "shared_name" : "476 (interacts with) 92935", "name" : "476 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 50830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50826", "source" : "2645", "target" : "4793", "shared_name" : "476 (interacts with) 478", "name" : "476 (interacts with) 478", "interaction" : "interacts with", "SUID" : 50826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50822", "source" : "2645", "target" : "2621", "shared_name" : "476 (interacts with) 477", "name" : "476 (interacts with) 477", "interaction" : "interacts with", "SUID" : 50822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50818", "source" : "2645", "target" : "5029", "shared_name" : "476 (interacts with) 4842", "name" : "476 (interacts with) 4842", "interaction" : "interacts with", "SUID" : 50818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50814", "source" : "2645", "target" : "3853", "shared_name" : "476 (interacts with) 6786", "name" : "476 (interacts with) 6786", "interaction" : "interacts with", "SUID" : 50814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50810", "source" : "2645", "target" : "441", "shared_name" : "476 (interacts with) 51761", "name" : "476 (interacts with) 51761", "interaction" : "interacts with", "SUID" : 50810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50806", "source" : "2645", "target" : "4665", "shared_name" : "476 (interacts with) 538", "name" : "476 (interacts with) 538", "interaction" : "interacts with", "SUID" : 50806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50802", "source" : "2645", "target" : "3773", "shared_name" : "476 (interacts with) 540", "name" : "476 (interacts with) 540", "interaction" : "interacts with", "SUID" : 50802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50798", "source" : "2645", "target" : "3781", "shared_name" : "476 (interacts with) 9152", "name" : "476 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 50798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50794", "source" : "2645", "target" : "5877", "shared_name" : "476 (interacts with) 6535", "name" : "476 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 50794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50790", "source" : "2645", "target" : "309", "shared_name" : "476 (interacts with) 6536", "name" : "476 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 50790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50786", "source" : "2645", "target" : "1809", "shared_name" : "476 (interacts with) 6548", "name" : "476 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 50786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50782", "source" : "2645", "target" : "2877", "shared_name" : "476 (interacts with) 340024", "name" : "476 (interacts with) 340024", "interaction" : "interacts with", "SUID" : 50782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50778", "source" : "2645", "target" : "3601", "shared_name" : "476 (interacts with) 6531", "name" : "476 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 50778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50774", "source" : "2645", "target" : "401", "shared_name" : "476 (interacts with) 6532", "name" : "476 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 50774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50770", "source" : "2645", "target" : "3473", "shared_name" : "476 (interacts with) 6528", "name" : "476 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 50770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50766", "source" : "2645", "target" : "1385", "shared_name" : "476 (interacts with) 6520", "name" : "476 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 50766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50762", "source" : "2645", "target" : "5805", "shared_name" : "476 (interacts with) 6575", "name" : "476 (interacts with) 6575", "interaction" : "interacts with", "SUID" : 50762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50758", "source" : "2645", "target" : "4025", "shared_name" : "476 (interacts with) 284111", "name" : "476 (interacts with) 284111", "interaction" : "interacts with", "SUID" : 50758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50754", "source" : "2645", "target" : "3077", "shared_name" : "476 (interacts with) 6506", "name" : "476 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 50754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50750", "source" : "2645", "target" : "3969", "shared_name" : "476 (interacts with) 57468", "name" : "476 (interacts with) 57468", "interaction" : "interacts with", "SUID" : 50750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50746", "source" : "2645", "target" : "1681", "shared_name" : "476 (interacts with) 9990", "name" : "476 (interacts with) 9990", "interaction" : "interacts with", "SUID" : 50746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50742", "source" : "2645", "target" : "6009", "shared_name" : "476 (interacts with) 64849", "name" : "476 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 50742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50738", "source" : "2645", "target" : "1521", "shared_name" : "476 (interacts with) 84879", "name" : "476 (interacts with) 84879", "interaction" : "interacts with", "SUID" : 50738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50734", "source" : "2645", "target" : "5729", "shared_name" : "476 (interacts with) 861", "name" : "476 (interacts with) 861", "interaction" : "interacts with", "SUID" : 50734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50730", "source" : "2645", "target" : "1945", "shared_name" : "476 (interacts with) 3785", "name" : "476 (interacts with) 3785", "interaction" : "interacts with", "SUID" : 50730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50726", "source" : "2645", "target" : "2941", "shared_name" : "476 (interacts with) 3778", "name" : "476 (interacts with) 3778", "interaction" : "interacts with", "SUID" : 50726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50722", "source" : "2645", "target" : "1481", "shared_name" : "476 (interacts with) 3763", "name" : "476 (interacts with) 3763", "interaction" : "interacts with", "SUID" : 50722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50718", "source" : "2645", "target" : "5913", "shared_name" : "476 (interacts with) 3767", "name" : "476 (interacts with) 3767", "interaction" : "interacts with", "SUID" : 50718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50714", "source" : "2645", "target" : "5789", "shared_name" : "476 (interacts with) 3759", "name" : "476 (interacts with) 3759", "interaction" : "interacts with", "SUID" : 50714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50710", "source" : "2645", "target" : "1041", "shared_name" : "476 (interacts with) 3766", "name" : "476 (interacts with) 3766", "interaction" : "interacts with", "SUID" : 50710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50706", "source" : "2645", "target" : "1805", "shared_name" : "476 (interacts with) 3738", "name" : "476 (interacts with) 3738", "interaction" : "interacts with", "SUID" : 50706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50702", "source" : "2645", "target" : "5517", "shared_name" : "476 (interacts with) 8514", "name" : "476 (interacts with) 8514", "interaction" : "interacts with", "SUID" : 50702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50698", "source" : "2645", "target" : "513", "shared_name" : "476 (interacts with) 348980", "name" : "476 (interacts with) 348980", "interaction" : "interacts with", "SUID" : 50698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50694", "source" : "2645", "target" : "993", "shared_name" : "476 (interacts with) 801", "name" : "476 (interacts with) 801", "interaction" : "interacts with", "SUID" : 50694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50690", "source" : "2645", "target" : "3449", "shared_name" : "476 (interacts with) 9568", "name" : "476 (interacts with) 9568", "interaction" : "interacts with", "SUID" : 50690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50686", "source" : "2645", "target" : "2321", "shared_name" : "476 (interacts with) 6509", "name" : "476 (interacts with) 6509", "interaction" : "interacts with", "SUID" : 50686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50682", "source" : "2645", "target" : "2413", "shared_name" : "476 (interacts with) 50484", "name" : "476 (interacts with) 50484", "interaction" : "interacts with", "SUID" : 50682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50678", "source" : "2645", "target" : "2541", "shared_name" : "476 (interacts with) 56704", "name" : "476 (interacts with) 56704", "interaction" : "interacts with", "SUID" : 50678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50674", "source" : "2645", "target" : "1265", "shared_name" : "476 (interacts with) 79594", "name" : "476 (interacts with) 79594", "interaction" : "interacts with", "SUID" : 50674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50946", "source" : "2641", "target" : "4065", "shared_name" : "3123 (interacts with) 7124", "name" : "3123 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 50946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50942", "source" : "2641", "target" : "5225", "shared_name" : "3123 (interacts with) 5290", "name" : "3123 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 50942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50938", "source" : "2641", "target" : "4213", "shared_name" : "3123 (interacts with) 5295", "name" : "3123 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 50938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50934", "source" : "2641", "target" : "3409", "shared_name" : "3123 (interacts with) 7043", "name" : "3123 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 50934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50930", "source" : "2641", "target" : "1233", "shared_name" : "3123 (interacts with) 355", "name" : "3123 (interacts with) 355", "interaction" : "interacts with", "SUID" : 50930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50926", "source" : "2641", "target" : "4857", "shared_name" : "3123 (interacts with) 5573", "name" : "3123 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 50926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50922", "source" : "2641", "target" : "3305", "shared_name" : "3123 (interacts with) 7040", "name" : "3123 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 50922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50918", "source" : "2641", "target" : "2153", "shared_name" : "3123 (interacts with) 7042", "name" : "3123 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 50918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50914", "source" : "2641", "target" : "3173", "shared_name" : "3123 (interacts with) 3558", "name" : "3123 (interacts with) 3558", "interaction" : "interacts with", "SUID" : 50914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50910", "source" : "2641", "target" : "1529", "shared_name" : "3123 (interacts with) 3458", "name" : "3123 (interacts with) 3458", "interaction" : "interacts with", "SUID" : 50910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50906", "source" : "2641", "target" : "2333", "shared_name" : "3123 (interacts with) 3559", "name" : "3123 (interacts with) 3559", "interaction" : "interacts with", "SUID" : 50906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50902", "source" : "2641", "target" : "1985", "shared_name" : "3123 (interacts with) 3456", "name" : "3123 (interacts with) 3456", "interaction" : "interacts with", "SUID" : 50902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50898", "source" : "2641", "target" : "2661", "shared_name" : "3123 (interacts with) 3606", "name" : "3123 (interacts with) 3606", "interaction" : "interacts with", "SUID" : 50898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50894", "source" : "2641", "target" : "1541", "shared_name" : "3123 (interacts with) 958", "name" : "3123 (interacts with) 958", "interaction" : "interacts with", "SUID" : 50894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50890", "source" : "2641", "target" : "3993", "shared_name" : "3123 (interacts with) 3683", "name" : "3123 (interacts with) 3683", "interaction" : "interacts with", "SUID" : 50890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50886", "source" : "2641", "target" : "3297", "shared_name" : "3123 (interacts with) 3383", "name" : "3123 (interacts with) 3383", "interaction" : "interacts with", "SUID" : 50886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50882", "source" : "2641", "target" : "6013", "shared_name" : "3123 (interacts with) 3574", "name" : "3123 (interacts with) 3574", "interaction" : "interacts with", "SUID" : 50882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50878", "source" : "2641", "target" : "3717", "shared_name" : "3123 (interacts with) 3593", "name" : "3123 (interacts with) 3593", "interaction" : "interacts with", "SUID" : 50878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50874", "source" : "2641", "target" : "3553", "shared_name" : "3123 (interacts with) 3592", "name" : "3123 (interacts with) 3592", "interaction" : "interacts with", "SUID" : 50874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50870", "source" : "2641", "target" : "1741", "shared_name" : "3123 (interacts with) 5133", "name" : "3123 (interacts with) 5133", "interaction" : "interacts with", "SUID" : 50870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50866", "source" : "2641", "target" : "3637", "shared_name" : "3123 (interacts with) 6712", "name" : "3123 (interacts with) 6712", "interaction" : "interacts with", "SUID" : 50866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50862", "source" : "2641", "target" : "1589", "shared_name" : "3123 (interacts with) 22872", "name" : "3123 (interacts with) 22872", "interaction" : "interacts with", "SUID" : 50862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50858", "source" : "2641", "target" : "1373", "shared_name" : "3123 (interacts with) 7879", "name" : "3123 (interacts with) 7879", "interaction" : "interacts with", "SUID" : 50858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50854", "source" : "2641", "target" : "1701", "shared_name" : "3123 (interacts with) 5777", "name" : "3123 (interacts with) 5777", "interaction" : "interacts with", "SUID" : 50854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50850", "source" : "2641", "target" : "4985", "shared_name" : "3123 (interacts with) 3798", "name" : "3123 (interacts with) 3798", "interaction" : "interacts with", "SUID" : 50850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50846", "source" : "2641", "target" : "4657", "shared_name" : "3123 (interacts with) 64837", "name" : "3123 (interacts with) 64837", "interaction" : "interacts with", "SUID" : 50846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50842", "source" : "2641", "target" : "4269", "shared_name" : "3123 (interacts with) 3832", "name" : "3123 (interacts with) 3832", "interaction" : "interacts with", "SUID" : 50842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50838", "source" : "2641", "target" : "2525", "shared_name" : "3123 (interacts with) 9451", "name" : "3123 (interacts with) 9451", "interaction" : "interacts with", "SUID" : 50838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50962", "source" : "2637", "target" : "4065", "shared_name" : "353376 (interacts with) 7124", "name" : "353376 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 50962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50958", "source" : "2637", "target" : "545", "shared_name" : "353376 (interacts with) 51014", "name" : "353376 (interacts with) 51014", "interaction" : "interacts with", "SUID" : 50958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50954", "source" : "2637", "target" : "1933", "shared_name" : "353376 (interacts with) 7335", "name" : "353376 (interacts with) 7335", "interaction" : "interacts with", "SUID" : 50954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50950", "source" : "2637", "target" : "3697", "shared_name" : "353376 (interacts with) 7099", "name" : "353376 (interacts with) 7099", "interaction" : "interacts with", "SUID" : 50950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50986", "source" : "2633", "target" : "897", "shared_name" : "29926 (interacts with) 3073", "name" : "29926 (interacts with) 3073", "interaction" : "interacts with", "SUID" : 50986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50982", "source" : "2633", "target" : "4577", "shared_name" : "29926 (interacts with) 7167", "name" : "29926 (interacts with) 7167", "interaction" : "interacts with", "SUID" : 50982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50978", "source" : "2633", "target" : "5401", "shared_name" : "29926 (interacts with) 5373", "name" : "29926 (interacts with) 5373", "interaction" : "interacts with", "SUID" : 50978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50974", "source" : "2633", "target" : "405", "shared_name" : "29926 (interacts with) 54187", "name" : "29926 (interacts with) 54187", "interaction" : "interacts with", "SUID" : 50974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50970", "source" : "2633", "target" : "285", "shared_name" : "29926 (interacts with) 5238", "name" : "29926 (interacts with) 5238", "interaction" : "interacts with", "SUID" : 50970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50966", "source" : "2633", "target" : "4837", "shared_name" : "29926 (interacts with) 8891", "name" : "29926 (interacts with) 8891", "interaction" : "interacts with", "SUID" : 50966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50990", "source" : "2629", "target" : "4253", "shared_name" : "112812 (interacts with) 84706", "name" : "112812 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 50990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51198", "source" : "2625", "target" : "461", "shared_name" : "3065 (interacts with) 5198", "name" : "3065 (interacts with) 5198", "interaction" : "interacts with", "SUID" : 51198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51194", "source" : "2625", "target" : "3501", "shared_name" : "3065 (interacts with) 5831", "name" : "3065 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 51194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51190", "source" : "2625", "target" : "3305", "shared_name" : "3065 (interacts with) 7040", "name" : "3065 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 51190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51186", "source" : "2625", "target" : "5037", "shared_name" : "3065 (interacts with) 5515", "name" : "3065 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 51186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51182", "source" : "2625", "target" : "3409", "shared_name" : "3065 (interacts with) 7043", "name" : "3065 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 51182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51178", "source" : "2625", "target" : "2153", "shared_name" : "3065 (interacts with) 7042", "name" : "3065 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 51178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51174", "source" : "2625", "target" : "1241", "shared_name" : "3065 (interacts with) 808", "name" : "3065 (interacts with) 808", "interaction" : "interacts with", "SUID" : 51174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51170", "source" : "2625", "target" : "1201", "shared_name" : "3065 (interacts with) 805", "name" : "3065 (interacts with) 805", "interaction" : "interacts with", "SUID" : 51170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51166", "source" : "2625", "target" : "993", "shared_name" : "3065 (interacts with) 801", "name" : "3065 (interacts with) 801", "interaction" : "interacts with", "SUID" : 51166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51162", "source" : "2625", "target" : "3593", "shared_name" : "3065 (interacts with) 5530", "name" : "3065 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 51162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51158", "source" : "2625", "target" : "981", "shared_name" : "3065 (interacts with) 7157", "name" : "3065 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 51158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51154", "source" : "2625", "target" : "4533", "shared_name" : "3065 (interacts with) 4089", "name" : "3065 (interacts with) 4089", "interaction" : "interacts with", "SUID" : 51154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51150", "source" : "2625", "target" : "565", "shared_name" : "3065 (interacts with) 4772", "name" : "3065 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 51150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51146", "source" : "2625", "target" : "2613", "shared_name" : "3065 (interacts with) 472", "name" : "3065 (interacts with) 472", "interaction" : "interacts with", "SUID" : 51146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51142", "source" : "2625", "target" : "5761", "shared_name" : "3065 (interacts with) 4208", "name" : "3065 (interacts with) 4208", "interaction" : "interacts with", "SUID" : 51142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51138", "source" : "2625", "target" : "5625", "shared_name" : "3065 (interacts with) 595", "name" : "3065 (interacts with) 595", "interaction" : "interacts with", "SUID" : 51138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51134", "source" : "2625", "target" : "2433", "shared_name" : "3065 (interacts with) 6927", "name" : "3065 (interacts with) 6927", "interaction" : "interacts with", "SUID" : 51134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51130", "source" : "2625", "target" : "5949", "shared_name" : "3065 (interacts with) 672", "name" : "3065 (interacts with) 672", "interaction" : "interacts with", "SUID" : 51130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51126", "source" : "2625", "target" : "5745", "shared_name" : "3065 (interacts with) 7471", "name" : "3065 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 51126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51122", "source" : "2625", "target" : "4097", "shared_name" : "3065 (interacts with) 9611", "name" : "3065 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 51122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51118", "source" : "2625", "target" : "6169", "shared_name" : "3065 (interacts with) 4088", "name" : "3065 (interacts with) 4088", "interaction" : "interacts with", "SUID" : 51118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51114", "source" : "2625", "target" : "2309", "shared_name" : "3065 (interacts with) 3316", "name" : "3065 (interacts with) 3316", "interaction" : "interacts with", "SUID" : 51114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51110", "source" : "2625", "target" : "5681", "shared_name" : "3065 (interacts with) 3315", "name" : "3065 (interacts with) 3315", "interaction" : "interacts with", "SUID" : 51110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51106", "source" : "2625", "target" : "4853", "shared_name" : "3065 (interacts with) 545", "name" : "3065 (interacts with) 545", "interaction" : "interacts with", "SUID" : 51106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51102", "source" : "2625", "target" : "2305", "shared_name" : "3065 (interacts with) 6908", "name" : "3065 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 51102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51098", "source" : "2625", "target" : "877", "shared_name" : "3065 (interacts with) 7341", "name" : "3065 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 51098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51094", "source" : "2625", "target" : "1285", "shared_name" : "3065 (interacts with) 7249", "name" : "3065 (interacts with) 7249", "interaction" : "interacts with", "SUID" : 51094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51090", "source" : "2625", "target" : "3093", "shared_name" : "3065 (interacts with) 6597", "name" : "3065 (interacts with) 6597", "interaction" : "interacts with", "SUID" : 51090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51086", "source" : "2625", "target" : "3105", "shared_name" : "3065 (interacts with) 8289", "name" : "3065 (interacts with) 8289", "interaction" : "interacts with", "SUID" : 51086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51082", "source" : "2625", "target" : "4629", "shared_name" : "3065 (interacts with) 6605", "name" : "3065 (interacts with) 6605", "interaction" : "interacts with", "SUID" : 51082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51078", "source" : "2625", "target" : "4549", "shared_name" : "3065 (interacts with) 5903", "name" : "3065 (interacts with) 5903", "interaction" : "interacts with", "SUID" : 51078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51074", "source" : "2625", "target" : "4469", "shared_name" : "3065 (interacts with) 8295", "name" : "3065 (interacts with) 8295", "interaction" : "interacts with", "SUID" : 51074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51070", "source" : "2625", "target" : "1765", "shared_name" : "3065 (interacts with) 5308", "name" : "3065 (interacts with) 5308", "interaction" : "interacts with", "SUID" : 51070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51066", "source" : "2625", "target" : "5409", "shared_name" : "3065 (interacts with) 9734", "name" : "3065 (interacts with) 9734", "interaction" : "interacts with", "SUID" : 51066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51062", "source" : "2625", "target" : "2077", "shared_name" : "3065 (interacts with) 7528", "name" : "3065 (interacts with) 7528", "interaction" : "interacts with", "SUID" : 51062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51058", "source" : "2625", "target" : "941", "shared_name" : "3065 (interacts with) 648", "name" : "3065 (interacts with) 648", "interaction" : "interacts with", "SUID" : 51058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51054", "source" : "2625", "target" : "2673", "shared_name" : "3065 (interacts with) 8841", "name" : "3065 (interacts with) 8841", "interaction" : "interacts with", "SUID" : 51054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51050", "source" : "2625", "target" : "2205", "shared_name" : "3065 (interacts with) 2571", "name" : "3065 (interacts with) 2571", "interaction" : "interacts with", "SUID" : 51050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51046", "source" : "2625", "target" : "665", "shared_name" : "3065 (interacts with) 3309", "name" : "3065 (interacts with) 3309", "interaction" : "interacts with", "SUID" : 51046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51042", "source" : "2625", "target" : "1817", "shared_name" : "3065 (interacts with) 7343", "name" : "3065 (interacts with) 7343", "interaction" : "interacts with", "SUID" : 51042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51038", "source" : "2625", "target" : "1097", "shared_name" : "3065 (interacts with) 79718", "name" : "3065 (interacts with) 79718", "interaction" : "interacts with", "SUID" : 51038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51034", "source" : "2625", "target" : "825", "shared_name" : "3065 (interacts with) 25942", "name" : "3065 (interacts with) 25942", "interaction" : "interacts with", "SUID" : 51034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51030", "source" : "2625", "target" : "5729", "shared_name" : "3065 (interacts with) 861", "name" : "3065 (interacts with) 861", "interaction" : "interacts with", "SUID" : 51030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51026", "source" : "2625", "target" : "817", "shared_name" : "3065 (interacts with) 5728", "name" : "3065 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 51026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51022", "source" : "2625", "target" : "6005", "shared_name" : "3065 (interacts with) 4988", "name" : "3065 (interacts with) 4988", "interaction" : "interacts with", "SUID" : 51022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51018", "source" : "2625", "target" : "5453", "shared_name" : "3065 (interacts with) 4204", "name" : "3065 (interacts with) 4204", "interaction" : "interacts with", "SUID" : 51018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51014", "source" : "2625", "target" : "3429", "shared_name" : "3065 (interacts with) 3674", "name" : "3065 (interacts with) 3674", "interaction" : "interacts with", "SUID" : 51014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51010", "source" : "2625", "target" : "4433", "shared_name" : "3065 (interacts with) 6239", "name" : "3065 (interacts with) 6239", "interaction" : "interacts with", "SUID" : 51010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51006", "source" : "2625", "target" : "5369", "shared_name" : "3065 (interacts with) 473", "name" : "3065 (interacts with) 473", "interaction" : "interacts with", "SUID" : 51006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51002", "source" : "2625", "target" : "2157", "shared_name" : "3065 (interacts with) 23028", "name" : "3065 (interacts with) 23028", "interaction" : "interacts with", "SUID" : 51002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50998", "source" : "2625", "target" : "4829", "shared_name" : "3065 (interacts with) 64919", "name" : "3065 (interacts with) 64919", "interaction" : "interacts with", "SUID" : 50998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "50994", "source" : "2625", "target" : "3417", "shared_name" : "3065 (interacts with) 5371", "name" : "3065 (interacts with) 5371", "interaction" : "interacts with", "SUID" : 50994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51350", "source" : "2621", "target" : "4869", "shared_name" : "477 (interacts with) 92935", "name" : "477 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 51350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51346", "source" : "2621", "target" : "781", "shared_name" : "477 (interacts with) 4860", "name" : "477 (interacts with) 4860", "interaction" : "interacts with", "SUID" : 51346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51342", "source" : "2621", "target" : "4793", "shared_name" : "477 (interacts with) 478", "name" : "477 (interacts with) 478", "interaction" : "interacts with", "SUID" : 51342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51338", "source" : "2621", "target" : "5029", "shared_name" : "477 (interacts with) 4842", "name" : "477 (interacts with) 4842", "interaction" : "interacts with", "SUID" : 51338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51334", "source" : "2621", "target" : "3853", "shared_name" : "477 (interacts with) 6786", "name" : "477 (interacts with) 6786", "interaction" : "interacts with", "SUID" : 51334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51330", "source" : "2621", "target" : "3773", "shared_name" : "477 (interacts with) 540", "name" : "477 (interacts with) 540", "interaction" : "interacts with", "SUID" : 51330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51326", "source" : "2621", "target" : "441", "shared_name" : "477 (interacts with) 51761", "name" : "477 (interacts with) 51761", "interaction" : "interacts with", "SUID" : 51326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51322", "source" : "2621", "target" : "4665", "shared_name" : "477 (interacts with) 538", "name" : "477 (interacts with) 538", "interaction" : "interacts with", "SUID" : 51322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51318", "source" : "2621", "target" : "1809", "shared_name" : "477 (interacts with) 6548", "name" : "477 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 51318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51314", "source" : "2621", "target" : "3601", "shared_name" : "477 (interacts with) 6531", "name" : "477 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 51314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51310", "source" : "2621", "target" : "401", "shared_name" : "477 (interacts with) 6532", "name" : "477 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 51310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51306", "source" : "2621", "target" : "3781", "shared_name" : "477 (interacts with) 9152", "name" : "477 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 51306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51302", "source" : "2621", "target" : "5877", "shared_name" : "477 (interacts with) 6535", "name" : "477 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 51302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51298", "source" : "2621", "target" : "309", "shared_name" : "477 (interacts with) 6536", "name" : "477 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 51298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51294", "source" : "2621", "target" : "2877", "shared_name" : "477 (interacts with) 340024", "name" : "477 (interacts with) 340024", "interaction" : "interacts with", "SUID" : 51294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51290", "source" : "2621", "target" : "3473", "shared_name" : "477 (interacts with) 6528", "name" : "477 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 51290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51286", "source" : "2621", "target" : "1385", "shared_name" : "477 (interacts with) 6520", "name" : "477 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 51286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51282", "source" : "2621", "target" : "5805", "shared_name" : "477 (interacts with) 6575", "name" : "477 (interacts with) 6575", "interaction" : "interacts with", "SUID" : 51282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51278", "source" : "2621", "target" : "6009", "shared_name" : "477 (interacts with) 64849", "name" : "477 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 51278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51274", "source" : "2621", "target" : "4025", "shared_name" : "477 (interacts with) 284111", "name" : "477 (interacts with) 284111", "interaction" : "interacts with", "SUID" : 51274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51270", "source" : "2621", "target" : "3077", "shared_name" : "477 (interacts with) 6506", "name" : "477 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 51270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51266", "source" : "2621", "target" : "3969", "shared_name" : "477 (interacts with) 57468", "name" : "477 (interacts with) 57468", "interaction" : "interacts with", "SUID" : 51266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51262", "source" : "2621", "target" : "1681", "shared_name" : "477 (interacts with) 9990", "name" : "477 (interacts with) 9990", "interaction" : "interacts with", "SUID" : 51262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51258", "source" : "2621", "target" : "5729", "shared_name" : "477 (interacts with) 861", "name" : "477 (interacts with) 861", "interaction" : "interacts with", "SUID" : 51258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51254", "source" : "2621", "target" : "1521", "shared_name" : "477 (interacts with) 84879", "name" : "477 (interacts with) 84879", "interaction" : "interacts with", "SUID" : 51254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51250", "source" : "2621", "target" : "1945", "shared_name" : "477 (interacts with) 3785", "name" : "477 (interacts with) 3785", "interaction" : "interacts with", "SUID" : 51250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51246", "source" : "2621", "target" : "2941", "shared_name" : "477 (interacts with) 3778", "name" : "477 (interacts with) 3778", "interaction" : "interacts with", "SUID" : 51246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51242", "source" : "2621", "target" : "5789", "shared_name" : "477 (interacts with) 3759", "name" : "477 (interacts with) 3759", "interaction" : "interacts with", "SUID" : 51242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51238", "source" : "2621", "target" : "1481", "shared_name" : "477 (interacts with) 3763", "name" : "477 (interacts with) 3763", "interaction" : "interacts with", "SUID" : 51238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51234", "source" : "2621", "target" : "1041", "shared_name" : "477 (interacts with) 3766", "name" : "477 (interacts with) 3766", "interaction" : "interacts with", "SUID" : 51234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51230", "source" : "2621", "target" : "5913", "shared_name" : "477 (interacts with) 3767", "name" : "477 (interacts with) 3767", "interaction" : "interacts with", "SUID" : 51230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51226", "source" : "2621", "target" : "5517", "shared_name" : "477 (interacts with) 8514", "name" : "477 (interacts with) 8514", "interaction" : "interacts with", "SUID" : 51226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51222", "source" : "2621", "target" : "1805", "shared_name" : "477 (interacts with) 3738", "name" : "477 (interacts with) 3738", "interaction" : "interacts with", "SUID" : 51222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51218", "source" : "2621", "target" : "513", "shared_name" : "477 (interacts with) 348980", "name" : "477 (interacts with) 348980", "interaction" : "interacts with", "SUID" : 51218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51214", "source" : "2621", "target" : "3449", "shared_name" : "477 (interacts with) 9568", "name" : "477 (interacts with) 9568", "interaction" : "interacts with", "SUID" : 51214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51210", "source" : "2621", "target" : "993", "shared_name" : "477 (interacts with) 801", "name" : "477 (interacts with) 801", "interaction" : "interacts with", "SUID" : 51210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51206", "source" : "2621", "target" : "2321", "shared_name" : "477 (interacts with) 6509", "name" : "477 (interacts with) 6509", "interaction" : "interacts with", "SUID" : 51206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51202", "source" : "2621", "target" : "2413", "shared_name" : "477 (interacts with) 50484", "name" : "477 (interacts with) 50484", "interaction" : "interacts with", "SUID" : 51202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51366", "source" : "2617", "target" : "1933", "shared_name" : "57531 (interacts with) 7335", "name" : "57531 (interacts with) 7335", "interaction" : "interacts with", "SUID" : 51366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51362", "source" : "2617", "target" : "3729", "shared_name" : "57531 (interacts with) 7319", "name" : "57531 (interacts with) 7319", "interaction" : "interacts with", "SUID" : 51362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51358", "source" : "2617", "target" : "961", "shared_name" : "57531 (interacts with) 7318", "name" : "57531 (interacts with) 7318", "interaction" : "interacts with", "SUID" : 51358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51354", "source" : "2617", "target" : "705", "shared_name" : "57531 (interacts with) 728378", "name" : "57531 (interacts with) 728378", "interaction" : "interacts with", "SUID" : 51354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51598", "source" : "2613", "target" : "3017", "shared_name" : "472 (interacts with) 4790", "name" : "472 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 51598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51594", "source" : "2613", "target" : "4949", "shared_name" : "472 (interacts with) 5970", "name" : "472 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 51594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51590", "source" : "2613", "target" : "2153", "shared_name" : "472 (interacts with) 7042", "name" : "472 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 51590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51586", "source" : "2613", "target" : "3305", "shared_name" : "472 (interacts with) 7040", "name" : "472 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 51586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51582", "source" : "2613", "target" : "5965", "shared_name" : "472 (interacts with) 596", "name" : "472 (interacts with) 596", "interaction" : "interacts with", "SUID" : 51582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51578", "source" : "2613", "target" : "3409", "shared_name" : "472 (interacts with) 7043", "name" : "472 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 51578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51574", "source" : "2613", "target" : "5625", "shared_name" : "472 (interacts with) 595", "name" : "472 (interacts with) 595", "interaction" : "interacts with", "SUID" : 51574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51570", "source" : "2613", "target" : "1845", "shared_name" : "472 (interacts with) 836", "name" : "472 (interacts with) 836", "interaction" : "interacts with", "SUID" : 51570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51566", "source" : "2613", "target" : "981", "shared_name" : "472 (interacts with) 7157", "name" : "472 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 51566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51562", "source" : "2613", "target" : "805", "shared_name" : "472 (interacts with) 6772", "name" : "472 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 51562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51558", "source" : "2613", "target" : "5333", "shared_name" : "472 (interacts with) 5591", "name" : "472 (interacts with) 5591", "interaction" : "interacts with", "SUID" : 51558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51554", "source" : "2613", "target" : "5949", "shared_name" : "472 (interacts with) 672", "name" : "472 (interacts with) 672", "interaction" : "interacts with", "SUID" : 51554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51550", "source" : "2613", "target" : "4853", "shared_name" : "472 (interacts with) 545", "name" : "472 (interacts with) 545", "interaction" : "interacts with", "SUID" : 51550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51546", "source" : "2613", "target" : "729", "shared_name" : "472 (interacts with) 5888", "name" : "472 (interacts with) 5888", "interaction" : "interacts with", "SUID" : 51546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51542", "source" : "2613", "target" : "2417", "shared_name" : "472 (interacts with) 675", "name" : "472 (interacts with) 675", "interaction" : "interacts with", "SUID" : 51542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51538", "source" : "2613", "target" : "4469", "shared_name" : "472 (interacts with) 8295", "name" : "472 (interacts with) 8295", "interaction" : "interacts with", "SUID" : 51538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51534", "source" : "2613", "target" : "1729", "shared_name" : "472 (interacts with) 5111", "name" : "472 (interacts with) 5111", "interaction" : "interacts with", "SUID" : 51534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51530", "source" : "2613", "target" : "4497", "shared_name" : "472 (interacts with) 8243", "name" : "472 (interacts with) 8243", "interaction" : "interacts with", "SUID" : 51530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51526", "source" : "2613", "target" : "481", "shared_name" : "472 (interacts with) 7507", "name" : "472 (interacts with) 7507", "interaction" : "interacts with", "SUID" : 51526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51522", "source" : "2613", "target" : "777", "shared_name" : "472 (interacts with) 8030", "name" : "472 (interacts with) 8030", "interaction" : "interacts with", "SUID" : 51522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51518", "source" : "2613", "target" : "1421", "shared_name" : "472 (interacts with) 55775", "name" : "472 (interacts with) 55775", "interaction" : "interacts with", "SUID" : 51518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51514", "source" : "2613", "target" : "2809", "shared_name" : "472 (interacts with) 11284", "name" : "472 (interacts with) 11284", "interaction" : "interacts with", "SUID" : 51514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51510", "source" : "2613", "target" : "2413", "shared_name" : "472 (interacts with) 50484", "name" : "472 (interacts with) 50484", "interaction" : "interacts with", "SUID" : 51510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51506", "source" : "2613", "target" : "629", "shared_name" : "472 (interacts with) 7013", "name" : "472 (interacts with) 7013", "interaction" : "interacts with", "SUID" : 51506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51502", "source" : "2613", "target" : "5697", "shared_name" : "472 (interacts with) 8517", "name" : "472 (interacts with) 8517", "interaction" : "interacts with", "SUID" : 51502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51498", "source" : "2613", "target" : "789", "shared_name" : "472 (interacts with) 1616", "name" : "472 (interacts with) 1616", "interaction" : "interacts with", "SUID" : 51498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51494", "source" : "2613", "target" : "3145", "shared_name" : "472 (interacts with) 8493", "name" : "472 (interacts with) 8493", "interaction" : "interacts with", "SUID" : 51494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51490", "source" : "2613", "target" : "873", "shared_name" : "472 (interacts with) 1385", "name" : "472 (interacts with) 1385", "interaction" : "interacts with", "SUID" : 51490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51486", "source" : "2613", "target" : "3033", "shared_name" : "472 (interacts with) 1020", "name" : "472 (interacts with) 1020", "interaction" : "interacts with", "SUID" : 51486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51482", "source" : "2613", "target" : "5037", "shared_name" : "472 (interacts with) 5515", "name" : "472 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 51482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51478", "source" : "2613", "target" : "2433", "shared_name" : "472 (interacts with) 6927", "name" : "472 (interacts with) 6927", "interaction" : "interacts with", "SUID" : 51478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51474", "source" : "2613", "target" : "5521", "shared_name" : "472 (interacts with) 7518", "name" : "472 (interacts with) 7518", "interaction" : "interacts with", "SUID" : 51474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51470", "source" : "2613", "target" : "1793", "shared_name" : "472 (interacts with) 7515", "name" : "472 (interacts with) 7515", "interaction" : "interacts with", "SUID" : 51470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51466", "source" : "2613", "target" : "5197", "shared_name" : "472 (interacts with) 7156", "name" : "472 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 51466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51462", "source" : "2613", "target" : "877", "shared_name" : "472 (interacts with) 7341", "name" : "472 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 51462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51458", "source" : "2613", "target" : "5849", "shared_name" : "472 (interacts with) 6613", "name" : "472 (interacts with) 6613", "interaction" : "interacts with", "SUID" : 51458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51454", "source" : "2613", "target" : "1629", "shared_name" : "472 (interacts with) 6047", "name" : "472 (interacts with) 6047", "interaction" : "interacts with", "SUID" : 51454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51450", "source" : "2613", "target" : "2921", "shared_name" : "472 (interacts with) 5981", "name" : "472 (interacts with) 5981", "interaction" : "interacts with", "SUID" : 51450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51446", "source" : "2613", "target" : "5861", "shared_name" : "472 (interacts with) 5435", "name" : "472 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 51446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51442", "source" : "2613", "target" : "2649", "shared_name" : "472 (interacts with) 5430", "name" : "472 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 51442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51438", "source" : "2613", "target" : "2529", "shared_name" : "472 (interacts with) 5424", "name" : "472 (interacts with) 5424", "interaction" : "interacts with", "SUID" : 51438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51434", "source" : "2613", "target" : "2053", "shared_name" : "472 (interacts with) 7468", "name" : "472 (interacts with) 7468", "interaction" : "interacts with", "SUID" : 51434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51430", "source" : "2613", "target" : "3933", "shared_name" : "472 (interacts with) 10524", "name" : "472 (interacts with) 10524", "interaction" : "interacts with", "SUID" : 51430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51426", "source" : "2613", "target" : "4249", "shared_name" : "472 (interacts with) 4331", "name" : "472 (interacts with) 4331", "interaction" : "interacts with", "SUID" : 51426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51422", "source" : "2613", "target" : "2425", "shared_name" : "472 (interacts with) 3981", "name" : "472 (interacts with) 3981", "interaction" : "interacts with", "SUID" : 51422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51418", "source" : "2613", "target" : "2145", "shared_name" : "472 (interacts with) 8924", "name" : "472 (interacts with) 8924", "interaction" : "interacts with", "SUID" : 51418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51414", "source" : "2613", "target" : "1937", "shared_name" : "472 (interacts with) 2965", "name" : "472 (interacts with) 2965", "interaction" : "interacts with", "SUID" : 51414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51410", "source" : "2613", "target" : "913", "shared_name" : "472 (interacts with) 404672", "name" : "472 (interacts with) 404672", "interaction" : "interacts with", "SUID" : 51410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51406", "source" : "2613", "target" : "2709", "shared_name" : "472 (interacts with) 2072", "name" : "472 (interacts with) 2072", "interaction" : "interacts with", "SUID" : 51406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51402", "source" : "2613", "target" : "1709", "shared_name" : "472 (interacts with) 2074", "name" : "472 (interacts with) 2074", "interaction" : "interacts with", "SUID" : 51402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51398", "source" : "2613", "target" : "4177", "shared_name" : "472 (interacts with) 2068", "name" : "472 (interacts with) 2068", "interaction" : "interacts with", "SUID" : 51398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51394", "source" : "2613", "target" : "505", "shared_name" : "472 (interacts with) 2071", "name" : "472 (interacts with) 2071", "interaction" : "interacts with", "SUID" : 51394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51390", "source" : "2613", "target" : "2261", "shared_name" : "472 (interacts with) 1161", "name" : "472 (interacts with) 1161", "interaction" : "interacts with", "SUID" : 51390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51386", "source" : "2613", "target" : "5041", "shared_name" : "472 (interacts with) 2067", "name" : "472 (interacts with) 2067", "interaction" : "interacts with", "SUID" : 51386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51382", "source" : "2613", "target" : "4285", "shared_name" : "472 (interacts with) 8450", "name" : "472 (interacts with) 8450", "interaction" : "interacts with", "SUID" : 51382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51378", "source" : "2613", "target" : "5741", "shared_name" : "472 (interacts with) 9150", "name" : "472 (interacts with) 9150", "interaction" : "interacts with", "SUID" : 51378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51374", "source" : "2613", "target" : "6005", "shared_name" : "472 (interacts with) 4988", "name" : "472 (interacts with) 4988", "interaction" : "interacts with", "SUID" : 51374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51370", "source" : "2613", "target" : "4973", "shared_name" : "472 (interacts with) 1910", "name" : "472 (interacts with) 1910", "interaction" : "interacts with", "SUID" : 51370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51850", "source" : "2609", "target" : "5189", "shared_name" : "29960 (interacts with) 57176", "name" : "29960 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 51850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51846", "source" : "2609", "target" : "3541", "shared_name" : "29960 (interacts with) 4191", "name" : "29960 (interacts with) 4191", "interaction" : "interacts with", "SUID" : 51846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51842", "source" : "2609", "target" : "1573", "shared_name" : "29960 (interacts with) 4723", "name" : "29960 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 51842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51838", "source" : "2609", "target" : "5109", "shared_name" : "29960 (interacts with) 790", "name" : "29960 (interacts with) 790", "interaction" : "interacts with", "SUID" : 51838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51834", "source" : "2609", "target" : "4225", "shared_name" : "29960 (interacts with) 55621", "name" : "29960 (interacts with) 55621", "interaction" : "interacts with", "SUID" : 51834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51830", "source" : "2609", "target" : "6181", "shared_name" : "29960 (interacts with) 84987", "name" : "29960 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 51830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51826", "source" : "2609", "target" : "4621", "shared_name" : "29960 (interacts with) 57038", "name" : "29960 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 51826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51822", "source" : "2609", "target" : "1669", "shared_name" : "29960 (interacts with) 6390", "name" : "29960 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 51822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51818", "source" : "2609", "target" : "3633", "shared_name" : "29960 (interacts with) 51067", "name" : "29960 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 51818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51814", "source" : "2609", "target" : "521", "shared_name" : "29960 (interacts with) 85476", "name" : "29960 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 51814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51810", "source" : "2609", "target" : "4409", "shared_name" : "29960 (interacts with) 6341", "name" : "29960 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 51810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51806", "source" : "2609", "target" : "2297", "shared_name" : "29960 (interacts with) 55005", "name" : "29960 (interacts with) 55005", "interaction" : "interacts with", "SUID" : 51806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51802", "source" : "2609", "target" : "4349", "shared_name" : "29960 (interacts with) 5859", "name" : "29960 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 51802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51798", "source" : "2609", "target" : "2741", "shared_name" : "29960 (interacts with) 4695", "name" : "29960 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 51798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51794", "source" : "2609", "target" : "4141", "shared_name" : "29960 (interacts with) 617", "name" : "29960 (interacts with) 617", "interaction" : "interacts with", "SUID" : 51794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51790", "source" : "2609", "target" : "721", "shared_name" : "29960 (interacts with) 79731", "name" : "29960 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 51790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51786", "source" : "2609", "target" : "2105", "shared_name" : "29960 (interacts with) 56945", "name" : "29960 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 51786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51782", "source" : "2609", "target" : "4549", "shared_name" : "29960 (interacts with) 5903", "name" : "29960 (interacts with) 5903", "interaction" : "interacts with", "SUID" : 51782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51778", "source" : "2609", "target" : "501", "shared_name" : "29960 (interacts with) 65993", "name" : "29960 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 51778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51774", "source" : "2609", "target" : "4069", "shared_name" : "29960 (interacts with) 374291", "name" : "29960 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 51774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51770", "source" : "2609", "target" : "3617", "shared_name" : "29960 (interacts with) 4704", "name" : "29960 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 51770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51766", "source" : "2609", "target" : "2477", "shared_name" : "29960 (interacts with) 57107", "name" : "29960 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 51766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51762", "source" : "2609", "target" : "4869", "shared_name" : "29960 (interacts with) 92935", "name" : "29960 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 51762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51758", "source" : "2609", "target" : "4061", "shared_name" : "29960 (interacts with) 4705", "name" : "29960 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 51758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51754", "source" : "2609", "target" : "1929", "shared_name" : "29960 (interacts with) 51218", "name" : "29960 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 51754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51750", "source" : "2609", "target" : "1561", "shared_name" : "29960 (interacts with) 51117", "name" : "29960 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 51750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51746", "source" : "2609", "target" : "1129", "shared_name" : "29960 (interacts with) 57505", "name" : "29960 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 51746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51742", "source" : "2609", "target" : "713", "shared_name" : "29960 (interacts with) 7019", "name" : "29960 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 51742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51738", "source" : "2609", "target" : "2689", "shared_name" : "29960 (interacts with) 4715", "name" : "29960 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 51738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51734", "source" : "2609", "target" : "4897", "shared_name" : "29960 (interacts with) 55149", "name" : "29960 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 51734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51730", "source" : "2609", "target" : "1869", "shared_name" : "29960 (interacts with) 4729", "name" : "29960 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 51730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51726", "source" : "2609", "target" : "5085", "shared_name" : "29960 (interacts with) 56652", "name" : "29960 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 51726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51722", "source" : "2609", "target" : "5845", "shared_name" : "29960 (interacts with) 4714", "name" : "29960 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 51722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51718", "source" : "2609", "target" : "2285", "shared_name" : "29960 (interacts with) 51300", "name" : "29960 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 51718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51714", "source" : "2609", "target" : "3545", "shared_name" : "29960 (interacts with) 708", "name" : "29960 (interacts with) 708", "interaction" : "interacts with", "SUID" : 51714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51710", "source" : "2609", "target" : "5853", "shared_name" : "29960 (interacts with) 4709", "name" : "29960 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 51710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51706", "source" : "2609", "target" : "2753", "shared_name" : "29960 (interacts with) 4720", "name" : "29960 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 51706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51702", "source" : "2609", "target" : "889", "shared_name" : "29960 (interacts with) 80224", "name" : "29960 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 51702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51698", "source" : "2609", "target" : "4017", "shared_name" : "29960 (interacts with) 4719", "name" : "29960 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 51698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51694", "source" : "2609", "target" : "2797", "shared_name" : "29960 (interacts with) 4728", "name" : "29960 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 51694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51690", "source" : "2609", "target" : "6001", "shared_name" : "29960 (interacts with) 55157", "name" : "29960 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 51690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51686", "source" : "2609", "target" : "477", "shared_name" : "29960 (interacts with) 51021", "name" : "29960 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 51686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51682", "source" : "2609", "target" : "1585", "shared_name" : "29960 (interacts with) 80347", "name" : "29960 (interacts with) 80347", "interaction" : "interacts with", "SUID" : 51682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51678", "source" : "2609", "target" : "5737", "shared_name" : "29960 (interacts with) 84340", "name" : "29960 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 51678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51674", "source" : "2609", "target" : "2021", "shared_name" : "29960 (interacts with) 5428", "name" : "29960 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 51674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51670", "source" : "2609", "target" : "4757", "shared_name" : "29960 (interacts with) 9997", "name" : "29960 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 51670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51666", "source" : "2609", "target" : "2801", "shared_name" : "29960 (interacts with) 4700", "name" : "29960 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 51666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51662", "source" : "2609", "target" : "4101", "shared_name" : "29960 (interacts with) 65260", "name" : "29960 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 51662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51658", "source" : "2609", "target" : "3973", "shared_name" : "29960 (interacts with) 55572", "name" : "29960 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 51658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51654", "source" : "2609", "target" : "1197", "shared_name" : "29960 (interacts with) 79587", "name" : "29960 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 51654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51650", "source" : "2609", "target" : "2109", "shared_name" : "29960 (interacts with) 51103", "name" : "29960 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 51650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51646", "source" : "2609", "target" : "2009", "shared_name" : "29960 (interacts with) 79133", "name" : "29960 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 51646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51642", "source" : "2609", "target" : "6073", "shared_name" : "29960 (interacts with) 92170", "name" : "29960 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 51642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51638", "source" : "2609", "target" : "4505", "shared_name" : "29960 (interacts with) 5190", "name" : "29960 (interacts with) 5190", "interaction" : "interacts with", "SUID" : 51638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51634", "source" : "2609", "target" : "4613", "shared_name" : "29960 (interacts with) 84896", "name" : "29960 (interacts with) 84896", "interaction" : "interacts with", "SUID" : 51634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51630", "source" : "2609", "target" : "2393", "shared_name" : "29960 (interacts with) 6683", "name" : "29960 (interacts with) 6683", "interaction" : "interacts with", "SUID" : 51630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51626", "source" : "2609", "target" : "5677", "shared_name" : "29960 (interacts with) 5189", "name" : "29960 (interacts with) 5189", "interaction" : "interacts with", "SUID" : 51626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51622", "source" : "2609", "target" : "1601", "shared_name" : "29960 (interacts with) 7415", "name" : "29960 (interacts with) 7415", "interaction" : "interacts with", "SUID" : 51622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51618", "source" : "2609", "target" : "2377", "shared_name" : "29960 (interacts with) 6687", "name" : "29960 (interacts with) 6687", "interaction" : "interacts with", "SUID" : 51618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51614", "source" : "2609", "target" : "893", "shared_name" : "29960 (interacts with) 9361", "name" : "29960 (interacts with) 9361", "interaction" : "interacts with", "SUID" : 51614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51610", "source" : "2609", "target" : "2149", "shared_name" : "29960 (interacts with) 80232", "name" : "29960 (interacts with) 80232", "interaction" : "interacts with", "SUID" : 51610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51606", "source" : "2609", "target" : "1237", "shared_name" : "29960 (interacts with) 3329", "name" : "29960 (interacts with) 3329", "interaction" : "interacts with", "SUID" : 51606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51602", "source" : "2609", "target" : "2125", "shared_name" : "29960 (interacts with) 2512", "name" : "29960 (interacts with) 2512", "interaction" : "interacts with", "SUID" : 51602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51870", "source" : "2605", "target" : "4105", "shared_name" : "2824 (interacts with) 347733", "name" : "2824 (interacts with) 347733", "interaction" : "interacts with", "SUID" : 51870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51866", "source" : "2605", "target" : "4209", "shared_name" : "2824 (interacts with) 4915", "name" : "2824 (interacts with) 4915", "interaction" : "interacts with", "SUID" : 51866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51862", "source" : "2605", "target" : "2693", "shared_name" : "2824 (interacts with) 5375", "name" : "2824 (interacts with) 5375", "interaction" : "interacts with", "SUID" : 51862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51858", "source" : "2605", "target" : "3061", "shared_name" : "2824 (interacts with) 4155", "name" : "2824 (interacts with) 4155", "interaction" : "interacts with", "SUID" : 51858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51854", "source" : "2605", "target" : "4477", "shared_name" : "2824 (interacts with) 5354", "name" : "2824 (interacts with) 5354", "interaction" : "interacts with", "SUID" : 51854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52014", "source" : "2597", "target" : "3017", "shared_name" : "2056 (interacts with) 4790", "name" : "2056 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 52014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52010", "source" : "2597", "target" : "5361", "shared_name" : "2056 (interacts with) 5604", "name" : "2056 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 52010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52006", "source" : "2597", "target" : "4949", "shared_name" : "2056 (interacts with) 5970", "name" : "2056 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 52006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52002", "source" : "2597", "target" : "3685", "shared_name" : "2056 (interacts with) 3265", "name" : "2056 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 52002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51998", "source" : "2597", "target" : "973", "shared_name" : "2056 (interacts with) 5595", "name" : "2056 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 51998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51994", "source" : "2597", "target" : "2153", "shared_name" : "2056 (interacts with) 7042", "name" : "2056 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 51994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51990", "source" : "2597", "target" : "3409", "shared_name" : "2056 (interacts with) 7043", "name" : "2056 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 51990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51986", "source" : "2597", "target" : "3305", "shared_name" : "2056 (interacts with) 7040", "name" : "2056 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 51986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51982", "source" : "2597", "target" : "4521", "shared_name" : "2056 (interacts with) 5894", "name" : "2056 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 51982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51978", "source" : "2597", "target" : "4649", "shared_name" : "2056 (interacts with) 3479", "name" : "2056 (interacts with) 3479", "interaction" : "interacts with", "SUID" : 51978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51974", "source" : "2597", "target" : "637", "shared_name" : "2056 (interacts with) 6654", "name" : "2056 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 51974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51970", "source" : "2597", "target" : "2005", "shared_name" : "2056 (interacts with) 4846", "name" : "2056 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 51970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51966", "source" : "2597", "target" : "3173", "shared_name" : "2056 (interacts with) 3558", "name" : "2056 (interacts with) 3558", "interaction" : "interacts with", "SUID" : 51966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51962", "source" : "2597", "target" : "1493", "shared_name" : "2056 (interacts with) 7428", "name" : "2056 (interacts with) 7428", "interaction" : "interacts with", "SUID" : 51962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51958", "source" : "2597", "target" : "4509", "shared_name" : "2056 (interacts with) 2902", "name" : "2056 (interacts with) 2902", "interaction" : "interacts with", "SUID" : 51958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51954", "source" : "2597", "target" : "6013", "shared_name" : "2056 (interacts with) 3574", "name" : "2056 (interacts with) 3574", "interaction" : "interacts with", "SUID" : 51954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51950", "source" : "2597", "target" : "1701", "shared_name" : "2056 (interacts with) 5777", "name" : "2056 (interacts with) 5777", "interaction" : "interacts with", "SUID" : 51950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51946", "source" : "2597", "target" : "2089", "shared_name" : "2056 (interacts with) 3939", "name" : "2056 (interacts with) 3939", "interaction" : "interacts with", "SUID" : 51946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51942", "source" : "2597", "target" : "1605", "shared_name" : "2056 (interacts with) 6648", "name" : "2056 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 51942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51938", "source" : "2597", "target" : "2241", "shared_name" : "2056 (interacts with) 3043", "name" : "2056 (interacts with) 3043", "interaction" : "interacts with", "SUID" : 51938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51934", "source" : "2597", "target" : "2969", "shared_name" : "2056 (interacts with) 8867", "name" : "2056 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 51934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51930", "source" : "2597", "target" : "817", "shared_name" : "2056 (interacts with) 5728", "name" : "2056 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 51930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51926", "source" : "2597", "target" : "1069", "shared_name" : "2056 (interacts with) 5879", "name" : "2056 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 51926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51922", "source" : "2597", "target" : "4213", "shared_name" : "2056 (interacts with) 5295", "name" : "2056 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 51922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51918", "source" : "2597", "target" : "3569", "shared_name" : "2056 (interacts with) 4893", "name" : "2056 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 51918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51914", "source" : "2597", "target" : "2429", "shared_name" : "2056 (interacts with) 4952", "name" : "2056 (interacts with) 4952", "interaction" : "interacts with", "SUID" : 51914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51910", "source" : "2597", "target" : "5225", "shared_name" : "2056 (interacts with) 5290", "name" : "2056 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 51910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51906", "source" : "2597", "target" : "3573", "shared_name" : "2056 (interacts with) 3845", "name" : "2056 (interacts with) 3845", "interaction" : "interacts with", "SUID" : 51906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51902", "source" : "2597", "target" : "1861", "shared_name" : "2056 (interacts with) 3708", "name" : "2056 (interacts with) 3708", "interaction" : "interacts with", "SUID" : 51902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51898", "source" : "2597", "target" : "1209", "shared_name" : "2056 (interacts with) 51763", "name" : "2056 (interacts with) 51763", "interaction" : "interacts with", "SUID" : 51898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51894", "source" : "2597", "target" : "3393", "shared_name" : "2056 (interacts with) 9402", "name" : "2056 (interacts with) 9402", "interaction" : "interacts with", "SUID" : 51894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51890", "source" : "2597", "target" : "5569", "shared_name" : "2056 (interacts with) 59345", "name" : "2056 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 51890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51886", "source" : "2597", "target" : "6121", "shared_name" : "2056 (interacts with) 2260", "name" : "2056 (interacts with) 2260", "interaction" : "interacts with", "SUID" : 51886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51882", "source" : "2597", "target" : "6129", "shared_name" : "2056 (interacts with) 2263", "name" : "2056 (interacts with) 2263", "interaction" : "interacts with", "SUID" : 51882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51878", "source" : "2597", "target" : "3381", "shared_name" : "2056 (interacts with) 2214", "name" : "2056 (interacts with) 2214", "interaction" : "interacts with", "SUID" : 51878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "51874", "source" : "2597", "target" : "6033", "shared_name" : "2056 (interacts with) 11160", "name" : "2056 (interacts with) 11160", "interaction" : "interacts with", "SUID" : 51874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52034", "source" : "2593", "target" : "4001", "shared_name" : "64324 (interacts with) 79709", "name" : "64324 (interacts with) 79709", "interaction" : "interacts with", "SUID" : 52034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52030", "source" : "2593", "target" : "2281", "shared_name" : "64324 (interacts with) 79823", "name" : "64324 (interacts with) 79823", "interaction" : "interacts with", "SUID" : 52030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52026", "source" : "2593", "target" : "3769", "shared_name" : "64324 (interacts with) 8085", "name" : "64324 (interacts with) 8085", "interaction" : "interacts with", "SUID" : 52026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52022", "source" : "2593", "target" : "3709", "shared_name" : "64324 (interacts with) 9757", "name" : "64324 (interacts with) 9757", "interaction" : "interacts with", "SUID" : 52022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52018", "source" : "2593", "target" : "2053", "shared_name" : "64324 (interacts with) 7468", "name" : "64324 (interacts with) 7468", "interaction" : "interacts with", "SUID" : 52018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52046", "source" : "2589", "target" : "4697", "shared_name" : "22884 (interacts with) 7534", "name" : "22884 (interacts with) 7534", "interaction" : "interacts with", "SUID" : 52046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52042", "source" : "2589", "target" : "1877", "shared_name" : "22884 (interacts with) 9531", "name" : "22884 (interacts with) 9531", "interaction" : "interacts with", "SUID" : 52042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52038", "source" : "2589", "target" : "4865", "shared_name" : "22884 (interacts with) 55690", "name" : "22884 (interacts with) 55690", "interaction" : "interacts with", "SUID" : 52038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52118", "source" : "2585", "target" : "3613", "shared_name" : "1977 (interacts with) 50640", "name" : "1977 (interacts with) 50640", "interaction" : "interacts with", "SUID" : 52118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52114", "source" : "2585", "target" : "4649", "shared_name" : "1977 (interacts with) 3479", "name" : "1977 (interacts with) 3479", "interaction" : "interacts with", "SUID" : 52114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52110", "source" : "2585", "target" : "2085", "shared_name" : "1977 (interacts with) 2932", "name" : "1977 (interacts with) 2932", "interaction" : "interacts with", "SUID" : 52110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52106", "source" : "2585", "target" : "5509", "shared_name" : "1977 (interacts with) 207", "name" : "1977 (interacts with) 207", "interaction" : "interacts with", "SUID" : 52106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52102", "source" : "2585", "target" : "4213", "shared_name" : "1977 (interacts with) 5295", "name" : "1977 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 52102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52098", "source" : "2585", "target" : "5225", "shared_name" : "1977 (interacts with) 5290", "name" : "1977 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 52098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52094", "source" : "2585", "target" : "5081", "shared_name" : "1977 (interacts with) 5594", "name" : "1977 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 52094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52090", "source" : "2585", "target" : "973", "shared_name" : "1977 (interacts with) 5595", "name" : "1977 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 52090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52086", "source" : "2585", "target" : "4149", "shared_name" : "1977 (interacts with) 8893", "name" : "1977 (interacts with) 8893", "interaction" : "interacts with", "SUID" : 52086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52082", "source" : "2585", "target" : "2481", "shared_name" : "1977 (interacts with) 2475", "name" : "1977 (interacts with) 2475", "interaction" : "interacts with", "SUID" : 52082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52078", "source" : "2585", "target" : "817", "shared_name" : "1977 (interacts with) 5728", "name" : "1977 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 52078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52074", "source" : "2585", "target" : "865", "shared_name" : "1977 (interacts with) 3480", "name" : "1977 (interacts with) 3480", "interaction" : "interacts with", "SUID" : 52074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52070", "source" : "2585", "target" : "1285", "shared_name" : "1977 (interacts with) 7249", "name" : "1977 (interacts with) 7249", "interaction" : "interacts with", "SUID" : 52070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52066", "source" : "2585", "target" : "5529", "shared_name" : "1977 (interacts with) 2875", "name" : "1977 (interacts with) 2875", "interaction" : "interacts with", "SUID" : 52066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52062", "source" : "2585", "target" : "553", "shared_name" : "1977 (interacts with) 7248", "name" : "1977 (interacts with) 7248", "interaction" : "interacts with", "SUID" : 52062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52058", "source" : "2585", "target" : "4549", "shared_name" : "1977 (interacts with) 5903", "name" : "1977 (interacts with) 5903", "interaction" : "interacts with", "SUID" : 52058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52054", "source" : "2585", "target" : "4005", "shared_name" : "1977 (interacts with) 23636", "name" : "1977 (interacts with) 23636", "interaction" : "interacts with", "SUID" : 52054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52050", "source" : "2585", "target" : "5445", "shared_name" : "1977 (interacts with) 8021", "name" : "1977 (interacts with) 8021", "interaction" : "interacts with", "SUID" : 52050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52138", "source" : "2581", "target" : "777", "shared_name" : "7170 (interacts with) 8030", "name" : "7170 (interacts with) 8030", "interaction" : "interacts with", "SUID" : 52138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52134", "source" : "2581", "target" : "997", "shared_name" : "7170 (interacts with) 7431", "name" : "7170 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 52134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52130", "source" : "2581", "target" : "5989", "shared_name" : "7170 (interacts with) 7273", "name" : "7170 (interacts with) 7273", "interaction" : "interacts with", "SUID" : 52130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52126", "source" : "2581", "target" : "4997", "shared_name" : "7170 (interacts with) 54820", "name" : "7170 (interacts with) 54820", "interaction" : "interacts with", "SUID" : 52126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52122", "source" : "2581", "target" : "2157", "shared_name" : "7170 (interacts with) 23028", "name" : "7170 (interacts with) 23028", "interaction" : "interacts with", "SUID" : 52122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52178", "source" : "2577", "target" : "1573", "shared_name" : "4337 (interacts with) 4723", "name" : "4337 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 52178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52174", "source" : "2577", "target" : "625", "shared_name" : "4337 (interacts with) 8942", "name" : "4337 (interacts with) 8942", "interaction" : "interacts with", "SUID" : 52174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52170", "source" : "2577", "target" : "2369", "shared_name" : "4337 (interacts with) 51741", "name" : "4337 (interacts with) 51741", "interaction" : "interacts with", "SUID" : 52170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52166", "source" : "2577", "target" : "4869", "shared_name" : "4337 (interacts with) 92935", "name" : "4337 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 52166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52162", "source" : "2577", "target" : "2009", "shared_name" : "4337 (interacts with) 79133", "name" : "4337 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 52162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52158", "source" : "2577", "target" : "5049", "shared_name" : "4337 (interacts with) 6697", "name" : "4337 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 52158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52154", "source" : "2577", "target" : "3113", "shared_name" : "4337 (interacts with) 4338", "name" : "4337 (interacts with) 4338", "interaction" : "interacts with", "SUID" : 52154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52150", "source" : "2577", "target" : "1089", "shared_name" : "4337 (interacts with) 5917", "name" : "4337 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 52150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52146", "source" : "2577", "target" : "4721", "shared_name" : "4337 (interacts with) 5805", "name" : "4337 (interacts with) 5805", "interaction" : "interacts with", "SUID" : 52146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52142", "source" : "2577", "target" : "3929", "shared_name" : "4337 (interacts with) 5860", "name" : "4337 (interacts with) 5860", "interaction" : "interacts with", "SUID" : 52142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52210", "source" : "2569", "target" : "1261", "shared_name" : "529 (interacts with) 57192", "name" : "529 (interacts with) 57192", "interaction" : "interacts with", "SUID" : 52210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52206", "source" : "2569", "target" : "4689", "shared_name" : "529 (interacts with) 291", "name" : "529 (interacts with) 291", "interaction" : "interacts with", "SUID" : 52206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52202", "source" : "2569", "target" : "781", "shared_name" : "529 (interacts with) 4860", "name" : "529 (interacts with) 4860", "interaction" : "interacts with", "SUID" : 52202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52198", "source" : "2569", "target" : "3549", "shared_name" : "529 (interacts with) 760", "name" : "529 (interacts with) 760", "interaction" : "interacts with", "SUID" : 52198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52194", "source" : "2569", "target" : "349", "shared_name" : "529 (interacts with) 60386", "name" : "529 (interacts with) 60386", "interaction" : "interacts with", "SUID" : 52194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52190", "source" : "2569", "target" : "4041", "shared_name" : "529 (interacts with) 847", "name" : "529 (interacts with) 847", "interaction" : "interacts with", "SUID" : 52190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52186", "source" : "2569", "target" : "741", "shared_name" : "529 (interacts with) 4830", "name" : "529 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 52186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52182", "source" : "2569", "target" : "5165", "shared_name" : "529 (interacts with) 3704", "name" : "529 (interacts with) 3704", "interaction" : "interacts with", "SUID" : 52182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52250", "source" : "2565", "target" : "5525", "shared_name" : "51501 (interacts with) 84260", "name" : "51501 (interacts with) 84260", "interaction" : "interacts with", "SUID" : 52250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52246", "source" : "2565", "target" : "4773", "shared_name" : "51501 (interacts with) 90624", "name" : "51501 (interacts with) 90624", "interaction" : "interacts with", "SUID" : 52246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52242", "source" : "2565", "target" : "1337", "shared_name" : "51501 (interacts with) 55863", "name" : "51501 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 52242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52238", "source" : "2565", "target" : "1877", "shared_name" : "51501 (interacts with) 9531", "name" : "51501 (interacts with) 9531", "interaction" : "interacts with", "SUID" : 52238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52234", "source" : "2565", "target" : "5701", "shared_name" : "51501 (interacts with) 6767", "name" : "51501 (interacts with) 6767", "interaction" : "interacts with", "SUID" : 52234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52230", "source" : "2565", "target" : "4549", "shared_name" : "51501 (interacts with) 5903", "name" : "51501 (interacts with) 5903", "interaction" : "interacts with", "SUID" : 52230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52226", "source" : "2565", "target" : "4005", "shared_name" : "51501 (interacts with) 23636", "name" : "51501 (interacts with) 23636", "interaction" : "interacts with", "SUID" : 52226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52222", "source" : "2565", "target" : "5445", "shared_name" : "51501 (interacts with) 8021", "name" : "51501 (interacts with) 8021", "interaction" : "interacts with", "SUID" : 52222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52218", "source" : "2565", "target" : "2409", "shared_name" : "51501 (interacts with) 3304", "name" : "51501 (interacts with) 3304", "interaction" : "interacts with", "SUID" : 52218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52214", "source" : "2565", "target" : "2041", "shared_name" : "51501 (interacts with) 5015", "name" : "51501 (interacts with) 5015", "interaction" : "interacts with", "SUID" : 52214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52286", "source" : "2561", "target" : "2569", "shared_name" : "523 (interacts with) 529", "name" : "523 (interacts with) 529", "interaction" : "interacts with", "SUID" : 52286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52282", "source" : "2561", "target" : "1261", "shared_name" : "523 (interacts with) 57192", "name" : "523 (interacts with) 57192", "interaction" : "interacts with", "SUID" : 52282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52278", "source" : "2561", "target" : "4689", "shared_name" : "523 (interacts with) 291", "name" : "523 (interacts with) 291", "interaction" : "interacts with", "SUID" : 52278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52274", "source" : "2561", "target" : "781", "shared_name" : "523 (interacts with) 4860", "name" : "523 (interacts with) 4860", "interaction" : "interacts with", "SUID" : 52274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52270", "source" : "2561", "target" : "3549", "shared_name" : "523 (interacts with) 760", "name" : "523 (interacts with) 760", "interaction" : "interacts with", "SUID" : 52270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52266", "source" : "2561", "target" : "349", "shared_name" : "523 (interacts with) 60386", "name" : "523 (interacts with) 60386", "interaction" : "interacts with", "SUID" : 52266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52262", "source" : "2561", "target" : "4041", "shared_name" : "523 (interacts with) 847", "name" : "523 (interacts with) 847", "interaction" : "interacts with", "SUID" : 52262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52258", "source" : "2561", "target" : "741", "shared_name" : "523 (interacts with) 4830", "name" : "523 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 52258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52254", "source" : "2561", "target" : "5165", "shared_name" : "523 (interacts with) 3704", "name" : "523 (interacts with) 3704", "interaction" : "interacts with", "SUID" : 52254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52294", "source" : "2557", "target" : "4881", "shared_name" : "5444 (interacts with) 6833", "name" : "5444 (interacts with) 6833", "interaction" : "interacts with", "SUID" : 52294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52290", "source" : "2557", "target" : "389", "shared_name" : "5444 (interacts with) 7299", "name" : "5444 (interacts with) 7299", "interaction" : "interacts with", "SUID" : 52290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52554", "source" : "2553", "target" : "4961", "shared_name" : "815 (interacts with) 5132", "name" : "815 (interacts with) 5132", "interaction" : "interacts with", "SUID" : 52554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52550", "source" : "2553", "target" : "2329", "shared_name" : "815 (interacts with) 2904", "name" : "815 (interacts with) 2904", "interaction" : "interacts with", "SUID" : 52550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52546", "source" : "2553", "target" : "5801", "shared_name" : "815 (interacts with) 960", "name" : "815 (interacts with) 960", "interaction" : "interacts with", "SUID" : 52546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52542", "source" : "2553", "target" : "5365", "shared_name" : "815 (interacts with) 2893", "name" : "815 (interacts with) 2893", "interaction" : "interacts with", "SUID" : 52542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52538", "source" : "2553", "target" : "3765", "shared_name" : "815 (interacts with) 774", "name" : "815 (interacts with) 774", "interaction" : "interacts with", "SUID" : 52538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52534", "source" : "2553", "target" : "969", "shared_name" : "815 (interacts with) 2670", "name" : "815 (interacts with) 2670", "interaction" : "interacts with", "SUID" : 52534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52530", "source" : "2553", "target" : "425", "shared_name" : "815 (interacts with) 1103", "name" : "815 (interacts with) 1103", "interaction" : "interacts with", "SUID" : 52530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52526", "source" : "2553", "target" : "2421", "shared_name" : "815 (interacts with) 2673", "name" : "815 (interacts with) 2673", "interaction" : "interacts with", "SUID" : 52526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52522", "source" : "2553", "target" : "1245", "shared_name" : "815 (interacts with) 4137", "name" : "815 (interacts with) 4137", "interaction" : "interacts with", "SUID" : 52522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52518", "source" : "2553", "target" : "3689", "shared_name" : "815 (interacts with) 7054", "name" : "815 (interacts with) 7054", "interaction" : "interacts with", "SUID" : 52518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52514", "source" : "2553", "target" : "5029", "shared_name" : "815 (interacts with) 4842", "name" : "815 (interacts with) 4842", "interaction" : "interacts with", "SUID" : 52514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52510", "source" : "2553", "target" : "3925", "shared_name" : "815 (interacts with) 1051", "name" : "815 (interacts with) 1051", "interaction" : "interacts with", "SUID" : 52510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52506", "source" : "2553", "target" : "6005", "shared_name" : "815 (interacts with) 4988", "name" : "815 (interacts with) 4988", "interaction" : "interacts with", "SUID" : 52506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52502", "source" : "2553", "target" : "873", "shared_name" : "815 (interacts with) 1385", "name" : "815 (interacts with) 1385", "interaction" : "interacts with", "SUID" : 52502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52498", "source" : "2553", "target" : "997", "shared_name" : "815 (interacts with) 7431", "name" : "815 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 52498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52494", "source" : "2553", "target" : "5989", "shared_name" : "815 (interacts with) 7273", "name" : "815 (interacts with) 7273", "interaction" : "interacts with", "SUID" : 52494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52490", "source" : "2553", "target" : "2581", "shared_name" : "815 (interacts with) 7170", "name" : "815 (interacts with) 7170", "interaction" : "interacts with", "SUID" : 52490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52486", "source" : "2553", "target" : "4361", "shared_name" : "815 (interacts with) 22906", "name" : "815 (interacts with) 22906", "interaction" : "interacts with", "SUID" : 52486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52482", "source" : "2553", "target" : "3853", "shared_name" : "815 (interacts with) 6786", "name" : "815 (interacts with) 6786", "interaction" : "interacts with", "SUID" : 52482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52478", "source" : "2553", "target" : "805", "shared_name" : "815 (interacts with) 6772", "name" : "815 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 52478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52474", "source" : "2553", "target" : "609", "shared_name" : "815 (interacts with) 6812", "name" : "815 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 52474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52470", "source" : "2553", "target" : "5785", "shared_name" : "815 (interacts with) 6857", "name" : "815 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 52470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52466", "source" : "2553", "target" : "5929", "shared_name" : "815 (interacts with) 6616", "name" : "815 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 52466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52462", "source" : "2553", "target" : "1809", "shared_name" : "815 (interacts with) 6548", "name" : "815 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 52462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52458", "source" : "2553", "target" : "5877", "shared_name" : "815 (interacts with) 6535", "name" : "815 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 52458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52454", "source" : "2553", "target" : "3781", "shared_name" : "815 (interacts with) 9152", "name" : "815 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 52454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52450", "source" : "2553", "target" : "309", "shared_name" : "815 (interacts with) 6536", "name" : "815 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 52450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52446", "source" : "2553", "target" : "2877", "shared_name" : "815 (interacts with) 340024", "name" : "815 (interacts with) 340024", "interaction" : "interacts with", "SUID" : 52446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52442", "source" : "2553", "target" : "3601", "shared_name" : "815 (interacts with) 6531", "name" : "815 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 52442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52438", "source" : "2553", "target" : "401", "shared_name" : "815 (interacts with) 6532", "name" : "815 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 52438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52434", "source" : "2553", "target" : "3473", "shared_name" : "815 (interacts with) 6528", "name" : "815 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 52434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52430", "source" : "2553", "target" : "1385", "shared_name" : "815 (interacts with) 6520", "name" : "815 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 52430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52426", "source" : "2553", "target" : "5805", "shared_name" : "815 (interacts with) 6575", "name" : "815 (interacts with) 6575", "interaction" : "interacts with", "SUID" : 52426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52422", "source" : "2553", "target" : "3077", "shared_name" : "815 (interacts with) 6506", "name" : "815 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 52422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52418", "source" : "2553", "target" : "4025", "shared_name" : "815 (interacts with) 284111", "name" : "815 (interacts with) 284111", "interaction" : "interacts with", "SUID" : 52418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52414", "source" : "2553", "target" : "6009", "shared_name" : "815 (interacts with) 64849", "name" : "815 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 52414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52410", "source" : "2553", "target" : "2873", "shared_name" : "815 (interacts with) 6261", "name" : "815 (interacts with) 6261", "interaction" : "interacts with", "SUID" : 52410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52406", "source" : "2553", "target" : "5729", "shared_name" : "815 (interacts with) 861", "name" : "815 (interacts with) 861", "interaction" : "interacts with", "SUID" : 52406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52402", "source" : "2553", "target" : "4521", "shared_name" : "815 (interacts with) 5894", "name" : "815 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 52402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52398", "source" : "2553", "target" : "313", "shared_name" : "815 (interacts with) 5923", "name" : "815 (interacts with) 5923", "interaction" : "interacts with", "SUID" : 52398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52394", "source" : "2553", "target" : "3841", "shared_name" : "815 (interacts with) 9444", "name" : "815 (interacts with) 9444", "interaction" : "interacts with", "SUID" : 52394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52390", "source" : "2553", "target" : "3593", "shared_name" : "815 (interacts with) 5530", "name" : "815 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 52390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52386", "source" : "2553", "target" : "3177", "shared_name" : "815 (interacts with) 5321", "name" : "815 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 52386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52382", "source" : "2553", "target" : "4385", "shared_name" : "815 (interacts with) 3084", "name" : "815 (interacts with) 3084", "interaction" : "interacts with", "SUID" : 52382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52378", "source" : "2553", "target" : "5337", "shared_name" : "815 (interacts with) 84876", "name" : "815 (interacts with) 84876", "interaction" : "interacts with", "SUID" : 52378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52374", "source" : "2553", "target" : "2977", "shared_name" : "815 (interacts with) 4747", "name" : "815 (interacts with) 4747", "interaction" : "interacts with", "SUID" : 52374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52370", "source" : "2553", "target" : "565", "shared_name" : "815 (interacts with) 4772", "name" : "815 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 52370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52366", "source" : "2553", "target" : "3569", "shared_name" : "815 (interacts with) 4893", "name" : "815 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 52366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52362", "source" : "2553", "target" : "1357", "shared_name" : "815 (interacts with) 58498", "name" : "815 (interacts with) 58498", "interaction" : "interacts with", "SUID" : 52362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52358", "source" : "2553", "target" : "1261", "shared_name" : "815 (interacts with) 57192", "name" : "815 (interacts with) 57192", "interaction" : "interacts with", "SUID" : 52358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52354", "source" : "2553", "target" : "5453", "shared_name" : "815 (interacts with) 4204", "name" : "815 (interacts with) 4204", "interaction" : "interacts with", "SUID" : 52354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52350", "source" : "2553", "target" : "1521", "shared_name" : "815 (interacts with) 84879", "name" : "815 (interacts with) 84879", "interaction" : "interacts with", "SUID" : 52350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52346", "source" : "2553", "target" : "3361", "shared_name" : "815 (interacts with) 4000", "name" : "815 (interacts with) 4000", "interaction" : "interacts with", "SUID" : 52346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52342", "source" : "2553", "target" : "3573", "shared_name" : "815 (interacts with) 3845", "name" : "815 (interacts with) 3845", "interaction" : "interacts with", "SUID" : 52342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52338", "source" : "2553", "target" : "1529", "shared_name" : "815 (interacts with) 3458", "name" : "815 (interacts with) 3458", "interaction" : "interacts with", "SUID" : 52338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52334", "source" : "2553", "target" : "1861", "shared_name" : "815 (interacts with) 3708", "name" : "815 (interacts with) 3708", "interaction" : "interacts with", "SUID" : 52334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52330", "source" : "2553", "target" : "3685", "shared_name" : "815 (interacts with) 3265", "name" : "815 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 52330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52326", "source" : "2553", "target" : "4509", "shared_name" : "815 (interacts with) 2902", "name" : "815 (interacts with) 2902", "interaction" : "interacts with", "SUID" : 52326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52322", "source" : "2553", "target" : "3629", "shared_name" : "815 (interacts with) 2066", "name" : "815 (interacts with) 2066", "interaction" : "interacts with", "SUID" : 52322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52318", "source" : "2553", "target" : "5493", "shared_name" : "815 (interacts with) 2678", "name" : "815 (interacts with) 2678", "interaction" : "interacts with", "SUID" : 52318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52314", "source" : "2553", "target" : "4893", "shared_name" : "815 (interacts with) 10815", "name" : "815 (interacts with) 10815", "interaction" : "interacts with", "SUID" : 52314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52310", "source" : "2553", "target" : "6097", "shared_name" : "815 (interacts with) 1756", "name" : "815 (interacts with) 1756", "interaction" : "interacts with", "SUID" : 52310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52306", "source" : "2553", "target" : "3661", "shared_name" : "815 (interacts with) 1134", "name" : "815 (interacts with) 1134", "interaction" : "interacts with", "SUID" : 52306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52302", "source" : "2553", "target" : "1581", "shared_name" : "815 (interacts with) 7407", "name" : "815 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 52302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52298", "source" : "2553", "target" : "6073", "shared_name" : "815 (interacts with) 92170", "name" : "815 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 52298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52586", "source" : "2549", "target" : "4349", "shared_name" : "9319 (interacts with) 5859", "name" : "9319 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 52586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52582", "source" : "2549", "target" : "5001", "shared_name" : "9319 (interacts with) 132158", "name" : "9319 (interacts with) 132158", "interaction" : "interacts with", "SUID" : 52582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52578", "source" : "2549", "target" : "6073", "shared_name" : "9319 (interacts with) 92170", "name" : "9319 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 52578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52574", "source" : "2549", "target" : "5037", "shared_name" : "9319 (interacts with) 5515", "name" : "9319 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 52574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52570", "source" : "2549", "target" : "4941", "shared_name" : "9319 (interacts with) 6342", "name" : "9319 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 52570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52566", "source" : "2549", "target" : "1957", "shared_name" : "9319 (interacts with) 1312", "name" : "9319 (interacts with) 1312", "interaction" : "interacts with", "SUID" : 52566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52562", "source" : "2549", "target" : "4957", "shared_name" : "9319 (interacts with) 5071", "name" : "9319 (interacts with) 5071", "interaction" : "interacts with", "SUID" : 52562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52558", "source" : "2549", "target" : "5021", "shared_name" : "9319 (interacts with) 10617", "name" : "9319 (interacts with) 10617", "interaction" : "interacts with", "SUID" : 52558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52590", "source" : "2545", "target" : "4005", "shared_name" : "284058 (interacts with) 23636", "name" : "284058 (interacts with) 23636", "interaction" : "interacts with", "SUID" : 52590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52594", "source" : "2541", "target" : "4477", "shared_name" : "56704 (interacts with) 5354", "name" : "56704 (interacts with) 5354", "interaction" : "interacts with", "SUID" : 52594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52666", "source" : "2537", "target" : "973", "shared_name" : "3984 (interacts with) 5595", "name" : "3984 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 52666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52662", "source" : "2537", "target" : "5081", "shared_name" : "3984 (interacts with) 5594", "name" : "3984 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 52662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52658", "source" : "2537", "target" : "761", "shared_name" : "3984 (interacts with) 5891", "name" : "3984 (interacts with) 5891", "interaction" : "interacts with", "SUID" : 52658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52654", "source" : "2537", "target" : "4213", "shared_name" : "3984 (interacts with) 5295", "name" : "3984 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 52654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52650", "source" : "2537", "target" : "5361", "shared_name" : "3984 (interacts with) 5604", "name" : "3984 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 52650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52646", "source" : "2537", "target" : "5225", "shared_name" : "3984 (interacts with) 5290", "name" : "3984 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 52646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52642", "source" : "2537", "target" : "4521", "shared_name" : "3984 (interacts with) 5894", "name" : "3984 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 52642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52638", "source" : "2537", "target" : "5149", "shared_name" : "3984 (interacts with) 5058", "name" : "3984 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 52638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52634", "source" : "2537", "target" : "1069", "shared_name" : "3984 (interacts with) 5879", "name" : "3984 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 52634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52630", "source" : "2537", "target" : "2433", "shared_name" : "3984 (interacts with) 6927", "name" : "3984 (interacts with) 6927", "interaction" : "interacts with", "SUID" : 52630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52626", "source" : "2537", "target" : "3577", "shared_name" : "3984 (interacts with) 5605", "name" : "3984 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 52626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52622", "source" : "2537", "target" : "1405", "shared_name" : "3984 (interacts with) 998", "name" : "3984 (interacts with) 998", "interaction" : "interacts with", "SUID" : 52622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52618", "source" : "2537", "target" : "4293", "shared_name" : "3984 (interacts with) 5156", "name" : "3984 (interacts with) 5156", "interaction" : "interacts with", "SUID" : 52618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52614", "source" : "2537", "target" : "3833", "shared_name" : "3984 (interacts with) 9138", "name" : "3984 (interacts with) 9138", "interaction" : "interacts with", "SUID" : 52614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52610", "source" : "2537", "target" : "4729", "shared_name" : "3984 (interacts with) 5216", "name" : "3984 (interacts with) 5216", "interaction" : "interacts with", "SUID" : 52610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52606", "source" : "2537", "target" : "2509", "shared_name" : "3984 (interacts with) 7204", "name" : "3984 (interacts with) 7204", "interaction" : "interacts with", "SUID" : 52606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52602", "source" : "2537", "target" : "4873", "shared_name" : "3984 (interacts with) 4644", "name" : "3984 (interacts with) 4644", "interaction" : "interacts with", "SUID" : 52602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52598", "source" : "2537", "target" : "4861", "shared_name" : "3984 (interacts with) 4771", "name" : "3984 (interacts with) 4771", "interaction" : "interacts with", "SUID" : 52598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52722", "source" : "2533", "target" : "3305", "shared_name" : "1030 (interacts with) 7040", "name" : "1030 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 52722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52718", "source" : "2533", "target" : "2153", "shared_name" : "1030 (interacts with) 7042", "name" : "1030 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 52718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52714", "source" : "2533", "target" : "981", "shared_name" : "1030 (interacts with) 7157", "name" : "1030 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 52714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52710", "source" : "2533", "target" : "2625", "shared_name" : "1030 (interacts with) 3065", "name" : "1030 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 52710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52706", "source" : "2533", "target" : "3409", "shared_name" : "1030 (interacts with) 7043", "name" : "1030 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 52706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52702", "source" : "2533", "target" : "2085", "shared_name" : "1030 (interacts with) 2932", "name" : "1030 (interacts with) 2932", "interaction" : "interacts with", "SUID" : 52702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52698", "source" : "2533", "target" : "4533", "shared_name" : "1030 (interacts with) 4089", "name" : "1030 (interacts with) 4089", "interaction" : "interacts with", "SUID" : 52698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52694", "source" : "2533", "target" : "5625", "shared_name" : "1030 (interacts with) 595", "name" : "1030 (interacts with) 595", "interaction" : "interacts with", "SUID" : 52694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52690", "source" : "2533", "target" : "1305", "shared_name" : "1030 (interacts with) 25", "name" : "1030 (interacts with) 25", "interaction" : "interacts with", "SUID" : 52690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52686", "source" : "2533", "target" : "2613", "shared_name" : "1030 (interacts with) 472", "name" : "1030 (interacts with) 472", "interaction" : "interacts with", "SUID" : 52686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52682", "source" : "2533", "target" : "6169", "shared_name" : "1030 (interacts with) 4088", "name" : "1030 (interacts with) 4088", "interaction" : "interacts with", "SUID" : 52682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52678", "source" : "2533", "target" : "4853", "shared_name" : "1030 (interacts with) 545", "name" : "1030 (interacts with) 545", "interaction" : "interacts with", "SUID" : 52678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52674", "source" : "2533", "target" : "1821", "shared_name" : "1030 (interacts with) 1719", "name" : "1030 (interacts with) 1719", "interaction" : "interacts with", "SUID" : 52674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52670", "source" : "2533", "target" : "3925", "shared_name" : "1030 (interacts with) 1051", "name" : "1030 (interacts with) 1051", "interaction" : "interacts with", "SUID" : 52670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52750", "source" : "2529", "target" : "481", "shared_name" : "5424 (interacts with) 7507", "name" : "5424 (interacts with) 7507", "interaction" : "interacts with", "SUID" : 52750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52746", "source" : "2529", "target" : "1793", "shared_name" : "5424 (interacts with) 7515", "name" : "5424 (interacts with) 7515", "interaction" : "interacts with", "SUID" : 52746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52742", "source" : "2529", "target" : "5197", "shared_name" : "5424 (interacts with) 7156", "name" : "5424 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 52742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52738", "source" : "2529", "target" : "729", "shared_name" : "5424 (interacts with) 5888", "name" : "5424 (interacts with) 5888", "interaction" : "interacts with", "SUID" : 52738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52734", "source" : "2529", "target" : "2921", "shared_name" : "5424 (interacts with) 5981", "name" : "5424 (interacts with) 5981", "interaction" : "interacts with", "SUID" : 52734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52730", "source" : "2529", "target" : "5861", "shared_name" : "5424 (interacts with) 5435", "name" : "5424 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 52730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52726", "source" : "2529", "target" : "2649", "shared_name" : "5424 (interacts with) 5430", "name" : "5424 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 52726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52766", "source" : "2525", "target" : "2781", "shared_name" : "9451 (interacts with) 1968", "name" : "9451 (interacts with) 1968", "interaction" : "interacts with", "SUID" : 52766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52762", "source" : "2525", "target" : "665", "shared_name" : "9451 (interacts with) 3309", "name" : "9451 (interacts with) 3309", "interaction" : "interacts with", "SUID" : 52762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52758", "source" : "2525", "target" : "4877", "shared_name" : "9451 (interacts with) 1965", "name" : "9451 (interacts with) 1965", "interaction" : "interacts with", "SUID" : 52758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52754", "source" : "2525", "target" : "2793", "shared_name" : "9451 (interacts with) 8894", "name" : "9451 (interacts with) 8894", "interaction" : "interacts with", "SUID" : 52754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52834", "source" : "2517", "target" : "3373", "shared_name" : "1798 (interacts with) 2530", "name" : "1798 (interacts with) 2530", "interaction" : "interacts with", "SUID" : 52834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52830", "source" : "2517", "target" : "6089", "shared_name" : "1798 (interacts with) 3145", "name" : "1798 (interacts with) 3145", "interaction" : "interacts with", "SUID" : 52830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52826", "source" : "2517", "target" : "3605", "shared_name" : "1798 (interacts with) 7841", "name" : "1798 (interacts with) 7841", "interaction" : "interacts with", "SUID" : 52826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52822", "source" : "2517", "target" : "1697", "shared_name" : "1798 (interacts with) 8818", "name" : "1798 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 52822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52818", "source" : "2517", "target" : "5561", "shared_name" : "1798 (interacts with) 4247", "name" : "1798 (interacts with) 4247", "interaction" : "interacts with", "SUID" : 52818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52814", "source" : "2517", "target" : "1797", "shared_name" : "1798 (interacts with) 85365", "name" : "1798 (interacts with) 85365", "interaction" : "interacts with", "SUID" : 52814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52810", "source" : "2517", "target" : "289", "shared_name" : "1798 (interacts with) 56052", "name" : "1798 (interacts with) 56052", "interaction" : "interacts with", "SUID" : 52810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52806", "source" : "2517", "target" : "5289", "shared_name" : "1798 (interacts with) 9526", "name" : "1798 (interacts with) 9526", "interaction" : "interacts with", "SUID" : 52806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52802", "source" : "2517", "target" : "3037", "shared_name" : "1798 (interacts with) 8813", "name" : "1798 (interacts with) 8813", "interaction" : "interacts with", "SUID" : 52802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52798", "source" : "2517", "target" : "3489", "shared_name" : "1798 (interacts with) 54344", "name" : "1798 (interacts with) 54344", "interaction" : "interacts with", "SUID" : 52798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52794", "source" : "2517", "target" : "4989", "shared_name" : "1798 (interacts with) 51227", "name" : "1798 (interacts with) 51227", "interaction" : "interacts with", "SUID" : 52794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52790", "source" : "2517", "target" : "985", "shared_name" : "1798 (interacts with) 9091", "name" : "1798 (interacts with) 9091", "interaction" : "interacts with", "SUID" : 52790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52786", "source" : "2517", "target" : "4481", "shared_name" : "1798 (interacts with) 55624", "name" : "1798 (interacts with) 55624", "interaction" : "interacts with", "SUID" : 52786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52782", "source" : "2517", "target" : "1545", "shared_name" : "1798 (interacts with) 5277", "name" : "1798 (interacts with) 5277", "interaction" : "interacts with", "SUID" : 52782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52778", "source" : "2517", "target" : "1905", "shared_name" : "1798 (interacts with) 9488", "name" : "1798 (interacts with) 9488", "interaction" : "interacts with", "SUID" : 52778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52774", "source" : "2517", "target" : "5793", "shared_name" : "1798 (interacts with) 51251", "name" : "1798 (interacts with) 51251", "interaction" : "interacts with", "SUID" : 52774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52770", "source" : "2517", "target" : "4933", "shared_name" : "1798 (interacts with) 7355", "name" : "1798 (interacts with) 7355", "interaction" : "interacts with", "SUID" : 52770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52854", "source" : "2513", "target" : "5137", "shared_name" : "22931 (interacts with) 25782", "name" : "22931 (interacts with) 25782", "interaction" : "interacts with", "SUID" : 52854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52850", "source" : "2513", "target" : "1069", "shared_name" : "22931 (interacts with) 5879", "name" : "22931 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 52850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52846", "source" : "2513", "target" : "1405", "shared_name" : "22931 (interacts with) 998", "name" : "22931 (interacts with) 998", "interaction" : "interacts with", "SUID" : 52846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52842", "source" : "2513", "target" : "2777", "shared_name" : "22931 (interacts with) 9230", "name" : "22931 (interacts with) 9230", "interaction" : "interacts with", "SUID" : 52842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52838", "source" : "2513", "target" : "4625", "shared_name" : "22931 (interacts with) 6785", "name" : "22931 (interacts with) 6785", "interaction" : "interacts with", "SUID" : 52838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52870", "source" : "2509", "target" : "5693", "shared_name" : "7204 (interacts with) 92335", "name" : "7204 (interacts with) 92335", "interaction" : "interacts with", "SUID" : 52870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52866", "source" : "2509", "target" : "3277", "shared_name" : "7204 (interacts with) 9423", "name" : "7204 (interacts with) 9423", "interaction" : "interacts with", "SUID" : 52866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52862", "source" : "2509", "target" : "2525", "shared_name" : "7204 (interacts with) 9451", "name" : "7204 (interacts with) 9451", "interaction" : "interacts with", "SUID" : 52862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52858", "source" : "2509", "target" : "869", "shared_name" : "7204 (interacts with) 23221", "name" : "7204 (interacts with) 23221", "interaction" : "interacts with", "SUID" : 52858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52886", "source" : "2505", "target" : "5653", "shared_name" : "128637 (interacts with) 22930", "name" : "128637 (interacts with) 22930", "interaction" : "interacts with", "SUID" : 52886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52882", "source" : "2505", "target" : "2513", "shared_name" : "128637 (interacts with) 22931", "name" : "128637 (interacts with) 22931", "interaction" : "interacts with", "SUID" : 52882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52878", "source" : "2505", "target" : "5129", "shared_name" : "128637 (interacts with) 57465", "name" : "128637 (interacts with) 57465", "interaction" : "interacts with", "SUID" : 52878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52874", "source" : "2505", "target" : "5961", "shared_name" : "128637 (interacts with) 10682", "name" : "128637 (interacts with) 10682", "interaction" : "interacts with", "SUID" : 52874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52914", "source" : "2497", "target" : "3653", "shared_name" : "55697 (interacts with) 8898", "name" : "55697 (interacts with) 8898", "interaction" : "interacts with", "SUID" : 52914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52910", "source" : "2497", "target" : "4609", "shared_name" : "55697 (interacts with) 84153", "name" : "55697 (interacts with) 84153", "interaction" : "interacts with", "SUID" : 52910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52906", "source" : "2497", "target" : "4877", "shared_name" : "55697 (interacts with) 1965", "name" : "55697 (interacts with) 1965", "interaction" : "interacts with", "SUID" : 52906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52902", "source" : "2497", "target" : "4701", "shared_name" : "55697 (interacts with) 9896", "name" : "55697 (interacts with) 9896", "interaction" : "interacts with", "SUID" : 52902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52898", "source" : "2497", "target" : "5037", "shared_name" : "55697 (interacts with) 5515", "name" : "55697 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 52898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52894", "source" : "2497", "target" : "4673", "shared_name" : "55697 (interacts with) 1186", "name" : "55697 (interacts with) 1186", "interaction" : "interacts with", "SUID" : 52894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52890", "source" : "2497", "target" : "3841", "shared_name" : "55697 (interacts with) 9444", "name" : "55697 (interacts with) 9444", "interaction" : "interacts with", "SUID" : 52890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52926", "source" : "2489", "target" : "4309", "shared_name" : "4692 (interacts with) 5654", "name" : "4692 (interacts with) 5654", "interaction" : "interacts with", "SUID" : 52926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52922", "source" : "2489", "target" : "5541", "shared_name" : "4692 (interacts with) 2775", "name" : "4692 (interacts with) 2775", "interaction" : "interacts with", "SUID" : 52922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52918", "source" : "2489", "target" : "2977", "shared_name" : "4692 (interacts with) 4747", "name" : "4692 (interacts with) 4747", "interaction" : "interacts with", "SUID" : 52918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52942", "source" : "2485", "target" : "2081", "shared_name" : "81857 (interacts with) 5468", "name" : "81857 (interacts with) 5468", "interaction" : "interacts with", "SUID" : 52942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52938", "source" : "2485", "target" : "3821", "shared_name" : "81857 (interacts with) 10891", "name" : "81857 (interacts with) 10891", "interaction" : "interacts with", "SUID" : 52938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52934", "source" : "2485", "target" : "2369", "shared_name" : "81857 (interacts with) 51741", "name" : "81857 (interacts with) 51741", "interaction" : "interacts with", "SUID" : 52934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52930", "source" : "2485", "target" : "2473", "shared_name" : "81857 (interacts with) 10342", "name" : "81857 (interacts with) 10342", "interaction" : "interacts with", "SUID" : 52930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53042", "source" : "2481", "target" : "837", "shared_name" : "2475 (interacts with) 8892", "name" : "2475 (interacts with) 8892", "interaction" : "interacts with", "SUID" : 53042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53038", "source" : "2481", "target" : "4213", "shared_name" : "2475 (interacts with) 5295", "name" : "2475 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 53038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53034", "source" : "2481", "target" : "973", "shared_name" : "2475 (interacts with) 5595", "name" : "2475 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 53034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53030", "source" : "2481", "target" : "5081", "shared_name" : "2475 (interacts with) 5594", "name" : "2475 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 53030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53026", "source" : "2481", "target" : "5037", "shared_name" : "2475 (interacts with) 5515", "name" : "2475 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 53026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53022", "source" : "2481", "target" : "2085", "shared_name" : "2475 (interacts with) 2932", "name" : "2475 (interacts with) 2932", "interaction" : "interacts with", "SUID" : 53022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53018", "source" : "2481", "target" : "981", "shared_name" : "2475 (interacts with) 7157", "name" : "2475 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 53018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53014", "source" : "2481", "target" : "3305", "shared_name" : "2475 (interacts with) 7040", "name" : "2475 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 53014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53010", "source" : "2481", "target" : "2153", "shared_name" : "2475 (interacts with) 7042", "name" : "2475 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 53010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53006", "source" : "2481", "target" : "3409", "shared_name" : "2475 (interacts with) 7043", "name" : "2475 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 53006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53002", "source" : "2481", "target" : "4533", "shared_name" : "2475 (interacts with) 4089", "name" : "2475 (interacts with) 4089", "interaction" : "interacts with", "SUID" : 53002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52998", "source" : "2481", "target" : "1845", "shared_name" : "2475 (interacts with) 836", "name" : "2475 (interacts with) 836", "interaction" : "interacts with", "SUID" : 52998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52994", "source" : "2481", "target" : "865", "shared_name" : "2475 (interacts with) 3480", "name" : "2475 (interacts with) 3480", "interaction" : "interacts with", "SUID" : 52994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52990", "source" : "2481", "target" : "4649", "shared_name" : "2475 (interacts with) 3479", "name" : "2475 (interacts with) 3479", "interaction" : "interacts with", "SUID" : 52990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52986", "source" : "2481", "target" : "817", "shared_name" : "2475 (interacts with) 5728", "name" : "2475 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 52986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52982", "source" : "2481", "target" : "4981", "shared_name" : "2475 (interacts with) 6774", "name" : "2475 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 52982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52978", "source" : "2481", "target" : "569", "shared_name" : "2475 (interacts with) 7048", "name" : "2475 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 52978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52974", "source" : "2481", "target" : "4837", "shared_name" : "2475 (interacts with) 8891", "name" : "2475 (interacts with) 8891", "interaction" : "interacts with", "SUID" : 52974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52970", "source" : "2481", "target" : "2793", "shared_name" : "2475 (interacts with) 8894", "name" : "2475 (interacts with) 8894", "interaction" : "interacts with", "SUID" : 52970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52966", "source" : "2481", "target" : "4149", "shared_name" : "2475 (interacts with) 8893", "name" : "2475 (interacts with) 8893", "interaction" : "interacts with", "SUID" : 52966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52962", "source" : "2481", "target" : "1285", "shared_name" : "2475 (interacts with) 7249", "name" : "2475 (interacts with) 7249", "interaction" : "interacts with", "SUID" : 52962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52958", "source" : "2481", "target" : "5225", "shared_name" : "2475 (interacts with) 5290", "name" : "2475 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 52958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52954", "source" : "2481", "target" : "553", "shared_name" : "2475 (interacts with) 7248", "name" : "2475 (interacts with) 7248", "interaction" : "interacts with", "SUID" : 52954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52950", "source" : "2481", "target" : "4469", "shared_name" : "2475 (interacts with) 8295", "name" : "2475 (interacts with) 8295", "interaction" : "interacts with", "SUID" : 52950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "52946", "source" : "2481", "target" : "1505", "shared_name" : "2475 (interacts with) 26353", "name" : "2475 (interacts with) 26353", "interaction" : "interacts with", "SUID" : 52946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53106", "source" : "2477", "target" : "521", "shared_name" : "57107 (interacts with) 85476", "name" : "57107 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 53106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53102", "source" : "2477", "target" : "721", "shared_name" : "57107 (interacts with) 79731", "name" : "57107 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 53102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53098", "source" : "2477", "target" : "501", "shared_name" : "57107 (interacts with) 65993", "name" : "57107 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 53098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53094", "source" : "2477", "target" : "1129", "shared_name" : "57107 (interacts with) 57505", "name" : "57107 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 53094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53090", "source" : "2477", "target" : "713", "shared_name" : "57107 (interacts with) 7019", "name" : "57107 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 53090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53086", "source" : "2477", "target" : "4141", "shared_name" : "57107 (interacts with) 617", "name" : "57107 (interacts with) 617", "interaction" : "interacts with", "SUID" : 53086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53082", "source" : "2477", "target" : "5737", "shared_name" : "57107 (interacts with) 84340", "name" : "57107 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 53082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53078", "source" : "2477", "target" : "6073", "shared_name" : "57107 (interacts with) 92170", "name" : "57107 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 53078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53074", "source" : "2477", "target" : "889", "shared_name" : "57107 (interacts with) 80224", "name" : "57107 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 53074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53070", "source" : "2477", "target" : "4869", "shared_name" : "57107 (interacts with) 92935", "name" : "57107 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 53070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53066", "source" : "2477", "target" : "4409", "shared_name" : "57107 (interacts with) 6341", "name" : "57107 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 53066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53062", "source" : "2477", "target" : "1197", "shared_name" : "57107 (interacts with) 79587", "name" : "57107 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 53062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53058", "source" : "2477", "target" : "4757", "shared_name" : "57107 (interacts with) 9997", "name" : "57107 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 53058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53054", "source" : "2477", "target" : "2009", "shared_name" : "57107 (interacts with) 79133", "name" : "57107 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 53054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53050", "source" : "2477", "target" : "4101", "shared_name" : "57107 (interacts with) 65260", "name" : "57107 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 53050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53046", "source" : "2477", "target" : "4461", "shared_name" : "57107 (interacts with) 79947", "name" : "57107 (interacts with) 79947", "interaction" : "interacts with", "SUID" : 53046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53134", "source" : "2473", "target" : "2505", "shared_name" : "10342 (interacts with) 128637", "name" : "10342 (interacts with) 128637", "interaction" : "interacts with", "SUID" : 53134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53130", "source" : "2473", "target" : "2581", "shared_name" : "10342 (interacts with) 7170", "name" : "10342 (interacts with) 7170", "interaction" : "interacts with", "SUID" : 53130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53126", "source" : "2473", "target" : "5125", "shared_name" : "10342 (interacts with) 5979", "name" : "10342 (interacts with) 5979", "interaction" : "interacts with", "SUID" : 53126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53122", "source" : "2473", "target" : "5749", "shared_name" : "10342 (interacts with) 10959", "name" : "10342 (interacts with) 10959", "interaction" : "interacts with", "SUID" : 53122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53118", "source" : "2473", "target" : "777", "shared_name" : "10342 (interacts with) 8030", "name" : "10342 (interacts with) 8030", "interaction" : "interacts with", "SUID" : 53118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53114", "source" : "2473", "target" : "2369", "shared_name" : "10342 (interacts with) 51741", "name" : "10342 (interacts with) 51741", "interaction" : "interacts with", "SUID" : 53114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53110", "source" : "2473", "target" : "821", "shared_name" : "10342 (interacts with) 1410", "name" : "10342 (interacts with) 1410", "interaction" : "interacts with", "SUID" : 53110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53162", "source" : "2469", "target" : "5081", "shared_name" : "10657 (interacts with) 5594", "name" : "10657 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 53162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53158", "source" : "2469", "target" : "973", "shared_name" : "10657 (interacts with) 5595", "name" : "10657 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 53158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53154", "source" : "2469", "target" : "5045", "shared_name" : "10657 (interacts with) 51008", "name" : "10657 (interacts with) 51008", "interaction" : "interacts with", "SUID" : 53154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53150", "source" : "2469", "target" : "3685", "shared_name" : "10657 (interacts with) 3265", "name" : "10657 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 53150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53146", "source" : "2469", "target" : "1613", "shared_name" : "10657 (interacts with) 2332", "name" : "10657 (interacts with) 2332", "interaction" : "interacts with", "SUID" : 53146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53142", "source" : "2469", "target" : "3841", "shared_name" : "10657 (interacts with) 9444", "name" : "10657 (interacts with) 9444", "interaction" : "interacts with", "SUID" : 53142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53138", "source" : "2469", "target" : "3289", "shared_name" : "10657 (interacts with) 5913", "name" : "10657 (interacts with) 5913", "interaction" : "interacts with", "SUID" : 53138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53246", "source" : "2465", "target" : "3037", "shared_name" : "2583 (interacts with) 8813", "name" : "2583 (interacts with) 8813", "interaction" : "interacts with", "SUID" : 53246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53242", "source" : "2465", "target" : "6165", "shared_name" : "2583 (interacts with) 2629", "name" : "2583 (interacts with) 2629", "interaction" : "interacts with", "SUID" : 53242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53238", "source" : "2465", "target" : "5221", "shared_name" : "2583 (interacts with) 285362", "name" : "2583 (interacts with) 285362", "interaction" : "interacts with", "SUID" : 53238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53234", "source" : "2465", "target" : "3025", "shared_name" : "2583 (interacts with) 55627", "name" : "2583 (interacts with) 55627", "interaction" : "interacts with", "SUID" : 53234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53230", "source" : "2465", "target" : "5637", "shared_name" : "2583 (interacts with) 6609", "name" : "2583 (interacts with) 6609", "interaction" : "interacts with", "SUID" : 53230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53226", "source" : "2465", "target" : "4193", "shared_name" : "2583 (interacts with) 2720", "name" : "2583 (interacts with) 2720", "interaction" : "interacts with", "SUID" : 53226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53222", "source" : "2465", "target" : "897", "shared_name" : "2583 (interacts with) 3073", "name" : "2583 (interacts with) 3073", "interaction" : "interacts with", "SUID" : 53222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53218", "source" : "2465", "target" : "2669", "shared_name" : "2583 (interacts with) 9197", "name" : "2583 (interacts with) 9197", "interaction" : "interacts with", "SUID" : 53218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53214", "source" : "2465", "target" : "273", "shared_name" : "2583 (interacts with) 8869", "name" : "2583 (interacts with) 8869", "interaction" : "interacts with", "SUID" : 53214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53210", "source" : "2465", "target" : "6133", "shared_name" : "2583 (interacts with) 54658", "name" : "2583 (interacts with) 54658", "interaction" : "interacts with", "SUID" : 53210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53206", "source" : "2465", "target" : "4481", "shared_name" : "2583 (interacts with) 55624", "name" : "2583 (interacts with) 55624", "interaction" : "interacts with", "SUID" : 53206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53202", "source" : "2465", "target" : "3705", "shared_name" : "2583 (interacts with) 87178", "name" : "2583 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 53202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53198", "source" : "2465", "target" : "4989", "shared_name" : "2583 (interacts with) 51227", "name" : "2583 (interacts with) 51227", "interaction" : "interacts with", "SUID" : 53198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53194", "source" : "2465", "target" : "985", "shared_name" : "2583 (interacts with) 9091", "name" : "2583 (interacts with) 9091", "interaction" : "interacts with", "SUID" : 53194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53190", "source" : "2465", "target" : "1545", "shared_name" : "2583 (interacts with) 5277", "name" : "2583 (interacts with) 5277", "interaction" : "interacts with", "SUID" : 53190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53186", "source" : "2465", "target" : "5657", "shared_name" : "2583 (interacts with) 4668", "name" : "2583 (interacts with) 4668", "interaction" : "interacts with", "SUID" : 53186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53182", "source" : "2465", "target" : "5561", "shared_name" : "2583 (interacts with) 4247", "name" : "2583 (interacts with) 4247", "interaction" : "interacts with", "SUID" : 53182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53178", "source" : "2465", "target" : "5661", "shared_name" : "2583 (interacts with) 2717", "name" : "2583 (interacts with) 2717", "interaction" : "interacts with", "SUID" : 53178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53174", "source" : "2465", "target" : "5753", "shared_name" : "2583 (interacts with) 2581", "name" : "2583 (interacts with) 2581", "interaction" : "interacts with", "SUID" : 53174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53170", "source" : "2465", "target" : "1697", "shared_name" : "2583 (interacts with) 8818", "name" : "2583 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 53170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53166", "source" : "2465", "target" : "4585", "shared_name" : "2583 (interacts with) 11041", "name" : "2583 (interacts with) 11041", "interaction" : "interacts with", "SUID" : 53166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53306", "source" : "2461", "target" : "1341", "shared_name" : "1806 (interacts with) 5009", "name" : "1806 (interacts with) 5009", "interaction" : "interacts with", "SUID" : 53306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53302", "source" : "2461", "target" : "4017", "shared_name" : "1806 (interacts with) 4719", "name" : "1806 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 53302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53298", "source" : "2461", "target" : "5025", "shared_name" : "1806 (interacts with) 6389", "name" : "1806 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 53298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53294", "source" : "2461", "target" : "3773", "shared_name" : "1806 (interacts with) 540", "name" : "1806 (interacts with) 540", "interaction" : "interacts with", "SUID" : 53294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53290", "source" : "2461", "target" : "5109", "shared_name" : "1806 (interacts with) 790", "name" : "1806 (interacts with) 790", "interaction" : "interacts with", "SUID" : 53290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53286", "source" : "2461", "target" : "1849", "shared_name" : "1806 (interacts with) 26275", "name" : "1806 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 53286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53282", "source" : "2461", "target" : "1437", "shared_name" : "1806 (interacts with) 80025", "name" : "1806 (interacts with) 80025", "interaction" : "interacts with", "SUID" : 53282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53278", "source" : "2461", "target" : "1573", "shared_name" : "1806 (interacts with) 4723", "name" : "1806 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 53278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53274", "source" : "2461", "target" : "5329", "shared_name" : "1806 (interacts with) 4907", "name" : "1806 (interacts with) 4907", "interaction" : "interacts with", "SUID" : 53274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53270", "source" : "2461", "target" : "1585", "shared_name" : "1806 (interacts with) 80347", "name" : "1806 (interacts with) 80347", "interaction" : "interacts with", "SUID" : 53270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53266", "source" : "2461", "target" : "413", "shared_name" : "1806 (interacts with) 51733", "name" : "1806 (interacts with) 51733", "interaction" : "interacts with", "SUID" : 53266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53262", "source" : "2461", "target" : "3997", "shared_name" : "1806 (interacts with) 1890", "name" : "1806 (interacts with) 1890", "interaction" : "interacts with", "SUID" : 53262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53258", "source" : "2461", "target" : "5793", "shared_name" : "1806 (interacts with) 51251", "name" : "1806 (interacts with) 51251", "interaction" : "interacts with", "SUID" : 53258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53254", "source" : "2461", "target" : "781", "shared_name" : "1806 (interacts with) 4860", "name" : "1806 (interacts with) 4860", "interaction" : "interacts with", "SUID" : 53254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53250", "source" : "2461", "target" : "1101", "shared_name" : "1806 (interacts with) 1807", "name" : "1806 (interacts with) 1807", "interaction" : "interacts with", "SUID" : 53250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53374", "source" : "2457", "target" : "5757", "shared_name" : "4143 (interacts with) 4311", "name" : "4143 (interacts with) 4311", "interaction" : "interacts with", "SUID" : 53374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53370", "source" : "2457", "target" : "1433", "shared_name" : "4143 (interacts with) 6515", "name" : "4143 (interacts with) 6515", "interaction" : "interacts with", "SUID" : 53370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53366", "source" : "2457", "target" : "3481", "shared_name" : "4143 (interacts with) 6513", "name" : "4143 (interacts with) 6513", "interaction" : "interacts with", "SUID" : 53366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53362", "source" : "2457", "target" : "721", "shared_name" : "4143 (interacts with) 79731", "name" : "4143 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 53362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53358", "source" : "2457", "target" : "4693", "shared_name" : "4143 (interacts with) 6301", "name" : "4143 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 53358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53354", "source" : "2457", "target" : "3421", "shared_name" : "4143 (interacts with) 4967", "name" : "4143 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 53354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53350", "source" : "2457", "target" : "4401", "shared_name" : "4143 (interacts with) 55526", "name" : "4143 (interacts with) 55526", "interaction" : "interacts with", "SUID" : 53350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53346", "source" : "2457", "target" : "1473", "shared_name" : "4143 (interacts with) 4524", "name" : "4143 (interacts with) 4524", "interaction" : "interacts with", "SUID" : 53346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53342", "source" : "2457", "target" : "3541", "shared_name" : "4143 (interacts with) 4191", "name" : "4143 (interacts with) 4191", "interaction" : "interacts with", "SUID" : 53342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53338", "source" : "2457", "target" : "5993", "shared_name" : "4143 (interacts with) 6611", "name" : "4143 (interacts with) 6611", "interaction" : "interacts with", "SUID" : 53338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53334", "source" : "2457", "target" : "2049", "shared_name" : "4143 (interacts with) 4552", "name" : "4143 (interacts with) 4552", "interaction" : "interacts with", "SUID" : 53334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53330", "source" : "2457", "target" : "5593", "shared_name" : "4143 (interacts with) 875", "name" : "4143 (interacts with) 875", "interaction" : "interacts with", "SUID" : 53330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53326", "source" : "2457", "target" : "1013", "shared_name" : "4143 (interacts with) 6898", "name" : "4143 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 53326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53322", "source" : "2457", "target" : "4273", "shared_name" : "4143 (interacts with) 4548", "name" : "4143 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 53322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53318", "source" : "2457", "target" : "1509", "shared_name" : "4143 (interacts with) 63976", "name" : "4143 (interacts with) 63976", "interaction" : "interacts with", "SUID" : 53318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53314", "source" : "2457", "target" : "2577", "shared_name" : "4143 (interacts with) 4337", "name" : "4143 (interacts with) 4337", "interaction" : "interacts with", "SUID" : 53314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53310", "source" : "2457", "target" : "1385", "shared_name" : "4143 (interacts with) 6520", "name" : "4143 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 53310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53390", "source" : "2449", "target" : "5785", "shared_name" : "6843 (interacts with) 6857", "name" : "6843 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 53390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53386", "source" : "2449", "target" : "2001", "shared_name" : "6843 (interacts with) 8676", "name" : "6843 (interacts with) 8676", "interaction" : "interacts with", "SUID" : 53386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53382", "source" : "2449", "target" : "2301", "shared_name" : "6843 (interacts with) 9342", "name" : "6843 (interacts with) 9342", "interaction" : "interacts with", "SUID" : 53382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53378", "source" : "2449", "target" : "5961", "shared_name" : "6843 (interacts with) 10682", "name" : "6843 (interacts with) 10682", "interaction" : "interacts with", "SUID" : 53378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53466", "source" : "2445", "target" : "2029", "shared_name" : "10939 (interacts with) 4329", "name" : "10939 (interacts with) 4329", "interaction" : "interacts with", "SUID" : 53466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53462", "source" : "2445", "target" : "1377", "shared_name" : "10939 (interacts with) 81570", "name" : "10939 (interacts with) 81570", "interaction" : "interacts with", "SUID" : 53462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53458", "source" : "2445", "target" : "5593", "shared_name" : "10939 (interacts with) 875", "name" : "10939 (interacts with) 875", "interaction" : "interacts with", "SUID" : 53458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53454", "source" : "2445", "target" : "517", "shared_name" : "10939 (interacts with) 5052", "name" : "10939 (interacts with) 5052", "interaction" : "interacts with", "SUID" : 53454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53450", "source" : "2445", "target" : "1341", "shared_name" : "10939 (interacts with) 5009", "name" : "10939 (interacts with) 5009", "interaction" : "interacts with", "SUID" : 53450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53446", "source" : "2445", "target" : "5597", "shared_name" : "10939 (interacts with) 22934", "name" : "10939 (interacts with) 22934", "interaction" : "interacts with", "SUID" : 53446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53442", "source" : "2445", "target" : "5825", "shared_name" : "10939 (interacts with) 4594", "name" : "10939 (interacts with) 4594", "interaction" : "interacts with", "SUID" : 53442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53438", "source" : "2445", "target" : "741", "shared_name" : "10939 (interacts with) 4830", "name" : "10939 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 53438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53434", "source" : "2445", "target" : "5109", "shared_name" : "10939 (interacts with) 790", "name" : "10939 (interacts with) 790", "interaction" : "interacts with", "SUID" : 53434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53430", "source" : "2445", "target" : "2609", "shared_name" : "10939 (interacts with) 29960", "name" : "10939 (interacts with) 29960", "interaction" : "interacts with", "SUID" : 53430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53426", "source" : "2445", "target" : "1657", "shared_name" : "10939 (interacts with) 3251", "name" : "10939 (interacts with) 3251", "interaction" : "interacts with", "SUID" : 53426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53422", "source" : "2445", "target" : "737", "shared_name" : "10939 (interacts with) 2643", "name" : "10939 (interacts with) 2643", "interaction" : "interacts with", "SUID" : 53422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53418", "source" : "2445", "target" : "6157", "shared_name" : "10939 (interacts with) 3735", "name" : "10939 (interacts with) 3735", "interaction" : "interacts with", "SUID" : 53418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53414", "source" : "2445", "target" : "5089", "shared_name" : "10939 (interacts with) 1373", "name" : "10939 (interacts with) 1373", "interaction" : "interacts with", "SUID" : 53414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53410", "source" : "2445", "target" : "2377", "shared_name" : "10939 (interacts with) 6687", "name" : "10939 (interacts with) 6687", "interaction" : "interacts with", "SUID" : 53410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53406", "source" : "2445", "target" : "4353", "shared_name" : "10939 (interacts with) 9512", "name" : "10939 (interacts with) 9512", "interaction" : "interacts with", "SUID" : 53406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53402", "source" : "2445", "target" : "529", "shared_name" : "10939 (interacts with) 23203", "name" : "10939 (interacts with) 23203", "interaction" : "interacts with", "SUID" : 53402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53398", "source" : "2445", "target" : "1785", "shared_name" : "10939 (interacts with) 667", "name" : "10939 (interacts with) 667", "interaction" : "interacts with", "SUID" : 53398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53394", "source" : "2445", "target" : "4173", "shared_name" : "10939 (interacts with) 23499", "name" : "10939 (interacts with) 23499", "interaction" : "interacts with", "SUID" : 53394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53474", "source" : "2441", "target" : "5821", "shared_name" : "112476 (interacts with) 4724", "name" : "112476 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 53474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53470", "source" : "2441", "target" : "2689", "shared_name" : "112476 (interacts with) 4715", "name" : "112476 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 53470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53618", "source" : "2437", "target" : "4017", "shared_name" : "158 (interacts with) 4719", "name" : "158 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 53618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53614", "source" : "2437", "target" : "3169", "shared_name" : "158 (interacts with) 1615", "name" : "158 (interacts with) 1615", "interaction" : "interacts with", "SUID" : 53614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53610", "source" : "2437", "target" : "721", "shared_name" : "158 (interacts with) 79731", "name" : "158 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 53610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53606", "source" : "2437", "target" : "4621", "shared_name" : "158 (interacts with) 57038", "name" : "158 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 53606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53602", "source" : "2437", "target" : "1089", "shared_name" : "158 (interacts with) 5917", "name" : "158 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 53602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53598", "source" : "2437", "target" : "5213", "shared_name" : "158 (interacts with) 2271", "name" : "158 (interacts with) 2271", "interaction" : "interacts with", "SUID" : 53598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53594", "source" : "2437", "target" : "537", "shared_name" : "158 (interacts with) 27429", "name" : "158 (interacts with) 27429", "interaction" : "interacts with", "SUID" : 53594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53590", "source" : "2437", "target" : "5353", "shared_name" : "158 (interacts with) 2026", "name" : "158 (interacts with) 2026", "interaction" : "interacts with", "SUID" : 53590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53586", "source" : "2437", "target" : "285", "shared_name" : "158 (interacts with) 5238", "name" : "158 (interacts with) 5238", "interaction" : "interacts with", "SUID" : 53586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53582", "source" : "2437", "target" : "2561", "shared_name" : "158 (interacts with) 523", "name" : "158 (interacts with) 523", "interaction" : "interacts with", "SUID" : 53582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53578", "source" : "2437", "target" : "4309", "shared_name" : "158 (interacts with) 5654", "name" : "158 (interacts with) 5654", "interaction" : "interacts with", "SUID" : 53578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53574", "source" : "2437", "target" : "2421", "shared_name" : "158 (interacts with) 2673", "name" : "158 (interacts with) 2673", "interaction" : "interacts with", "SUID" : 53574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53570", "source" : "2437", "target" : "2177", "shared_name" : "158 (interacts with) 443", "name" : "158 (interacts with) 443", "interaction" : "interacts with", "SUID" : 53570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53566", "source" : "2437", "target" : "5529", "shared_name" : "158 (interacts with) 2875", "name" : "158 (interacts with) 2875", "interaction" : "interacts with", "SUID" : 53566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53562", "source" : "2437", "target" : "4737", "shared_name" : "158 (interacts with) 445", "name" : "158 (interacts with) 445", "interaction" : "interacts with", "SUID" : 53562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53558", "source" : "2437", "target" : "4253", "shared_name" : "158 (interacts with) 84706", "name" : "158 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 53558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53554", "source" : "2437", "target" : "1821", "shared_name" : "158 (interacts with) 1719", "name" : "158 (interacts with) 1719", "interaction" : "interacts with", "SUID" : 53554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53550", "source" : "2437", "target" : "1929", "shared_name" : "158 (interacts with) 51218", "name" : "158 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 53550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53546", "source" : "2437", "target" : "1189", "shared_name" : "158 (interacts with) 7915", "name" : "158 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 53546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53542", "source" : "2437", "target" : "5109", "shared_name" : "158 (interacts with) 790", "name" : "158 (interacts with) 790", "interaction" : "interacts with", "SUID" : 53542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53538", "source" : "2437", "target" : "5025", "shared_name" : "158 (interacts with) 6389", "name" : "158 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 53538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53534", "source" : "2437", "target" : "5597", "shared_name" : "158 (interacts with) 22934", "name" : "158 (interacts with) 22934", "interaction" : "interacts with", "SUID" : 53534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53530", "source" : "2437", "target" : "1981", "shared_name" : "158 (interacts with) 339983", "name" : "158 (interacts with) 339983", "interaction" : "interacts with", "SUID" : 53530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53526", "source" : "2437", "target" : "5349", "shared_name" : "158 (interacts with) 440", "name" : "158 (interacts with) 440", "interaction" : "interacts with", "SUID" : 53526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53522", "source" : "2437", "target" : "1585", "shared_name" : "158 (interacts with) 80347", "name" : "158 (interacts with) 80347", "interaction" : "interacts with", "SUID" : 53522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53518", "source" : "2437", "target" : "3421", "shared_name" : "158 (interacts with) 4967", "name" : "158 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 53518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53514", "source" : "2437", "target" : "461", "shared_name" : "158 (interacts with) 5198", "name" : "158 (interacts with) 5198", "interaction" : "interacts with", "SUID" : 53514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53510", "source" : "2437", "target" : "5201", "shared_name" : "158 (interacts with) 353", "name" : "158 (interacts with) 353", "interaction" : "interacts with", "SUID" : 53510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53506", "source" : "2437", "target" : "1669", "shared_name" : "158 (interacts with) 6390", "name" : "158 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 53506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53502", "source" : "2437", "target" : "2945", "shared_name" : "158 (interacts with) 471", "name" : "158 (interacts with) 471", "interaction" : "interacts with", "SUID" : 53502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53498", "source" : "2437", "target" : "597", "shared_name" : "158 (interacts with) 271", "name" : "158 (interacts with) 271", "interaction" : "interacts with", "SUID" : 53498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53494", "source" : "2437", "target" : "589", "shared_name" : "158 (interacts with) 270", "name" : "158 (interacts with) 270", "interaction" : "interacts with", "SUID" : 53494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53490", "source" : "2437", "target" : "4045", "shared_name" : "158 (interacts with) 29920", "name" : "158 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 53490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53486", "source" : "2437", "target" : "3501", "shared_name" : "158 (interacts with) 5831", "name" : "158 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 53486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53482", "source" : "2437", "target" : "1713", "shared_name" : "158 (interacts with) 5631", "name" : "158 (interacts with) 5631", "interaction" : "interacts with", "SUID" : 53482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53478", "source" : "2437", "target" : "3917", "shared_name" : "158 (interacts with) 22978", "name" : "158 (interacts with) 22978", "interaction" : "interacts with", "SUID" : 53478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53658", "source" : "2433", "target" : "3305", "shared_name" : "6927 (interacts with) 7040", "name" : "6927 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 53658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53654", "source" : "2433", "target" : "3409", "shared_name" : "6927 (interacts with) 7043", "name" : "6927 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 53654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53650", "source" : "2433", "target" : "2153", "shared_name" : "6927 (interacts with) 7042", "name" : "6927 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 53650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53646", "source" : "2433", "target" : "1405", "shared_name" : "6927 (interacts with) 998", "name" : "6927 (interacts with) 998", "interaction" : "interacts with", "SUID" : 53646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53642", "source" : "2433", "target" : "569", "shared_name" : "6927 (interacts with) 7048", "name" : "6927 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 53642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53638", "source" : "2433", "target" : "5745", "shared_name" : "6927 (interacts with) 7471", "name" : "6927 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 53638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53634", "source" : "2433", "target" : "6133", "shared_name" : "6927 (interacts with) 54658", "name" : "6927 (interacts with) 54658", "interaction" : "interacts with", "SUID" : 53634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53630", "source" : "2433", "target" : "225", "shared_name" : "6927 (interacts with) 174", "name" : "6927 (interacts with) 174", "interaction" : "interacts with", "SUID" : 53630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53626", "source" : "2433", "target" : "4649", "shared_name" : "6927 (interacts with) 3479", "name" : "6927 (interacts with) 3479", "interaction" : "interacts with", "SUID" : 53626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53622", "source" : "2433", "target" : "1913", "shared_name" : "6927 (interacts with) 3172", "name" : "6927 (interacts with) 3172", "interaction" : "interacts with", "SUID" : 53622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53734", "source" : "2429", "target" : "1909", "shared_name" : "4952 (interacts with) 5286", "name" : "4952 (interacts with) 5286", "interaction" : "interacts with", "SUID" : 53734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53730", "source" : "2429", "target" : "3653", "shared_name" : "4952 (interacts with) 8898", "name" : "4952 (interacts with) 8898", "interaction" : "interacts with", "SUID" : 53730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53726", "source" : "2429", "target" : "2969", "shared_name" : "4952 (interacts with) 8867", "name" : "4952 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 53726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53722", "source" : "2429", "target" : "3977", "shared_name" : "4952 (interacts with) 51477", "name" : "4952 (interacts with) 51477", "interaction" : "interacts with", "SUID" : 53722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53718", "source" : "2429", "target" : "989", "shared_name" : "4952 (interacts with) 5297", "name" : "4952 (interacts with) 5297", "interaction" : "interacts with", "SUID" : 53718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53714", "source" : "2429", "target" : "385", "shared_name" : "4952 (interacts with) 5319", "name" : "4952 (interacts with) 5319", "interaction" : "interacts with", "SUID" : 53714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53710", "source" : "2429", "target" : "869", "shared_name" : "4952 (interacts with) 23221", "name" : "4952 (interacts with) 23221", "interaction" : "interacts with", "SUID" : 53710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53706", "source" : "2429", "target" : "5785", "shared_name" : "4952 (interacts with) 6857", "name" : "4952 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 53706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53702", "source" : "2429", "target" : "637", "shared_name" : "4952 (interacts with) 6654", "name" : "4952 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 53702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53698", "source" : "2429", "target" : "4389", "shared_name" : "4952 (interacts with) 81846", "name" : "4952 (interacts with) 81846", "interaction" : "interacts with", "SUID" : 53698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53694", "source" : "2429", "target" : "4393", "shared_name" : "4952 (interacts with) 950", "name" : "4952 (interacts with) 950", "interaction" : "interacts with", "SUID" : 53694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53690", "source" : "2429", "target" : "1069", "shared_name" : "4952 (interacts with) 5879", "name" : "4952 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 53690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53686", "source" : "2429", "target" : "4157", "shared_name" : "4952 (interacts with) 85021", "name" : "4952 (interacts with) 85021", "interaction" : "interacts with", "SUID" : 53686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53682", "source" : "2429", "target" : "817", "shared_name" : "4952 (interacts with) 5728", "name" : "4952 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 53682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53678", "source" : "2429", "target" : "5145", "shared_name" : "4952 (interacts with) 23236", "name" : "4952 (interacts with) 23236", "interaction" : "interacts with", "SUID" : 53678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53674", "source" : "2429", "target" : "5225", "shared_name" : "4952 (interacts with) 5290", "name" : "4952 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 53674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53670", "source" : "2429", "target" : "4213", "shared_name" : "4952 (interacts with) 5295", "name" : "4952 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 53670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53666", "source" : "2429", "target" : "3465", "shared_name" : "4952 (interacts with) 5296", "name" : "4952 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 53666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53662", "source" : "2429", "target" : "4441", "shared_name" : "4952 (interacts with) 1213", "name" : "4952 (interacts with) 1213", "interaction" : "interacts with", "SUID" : 53662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53766", "source" : "2425", "target" : "1421", "shared_name" : "3981 (interacts with) 55775", "name" : "3981 (interacts with) 55775", "interaction" : "interacts with", "SUID" : 53766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53762", "source" : "2425", "target" : "5197", "shared_name" : "3981 (interacts with) 7156", "name" : "3981 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 53762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53758", "source" : "2425", "target" : "3885", "shared_name" : "3981 (interacts with) 54840", "name" : "3981 (interacts with) 54840", "interaction" : "interacts with", "SUID" : 53758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53754", "source" : "2425", "target" : "5521", "shared_name" : "3981 (interacts with) 7518", "name" : "3981 (interacts with) 7518", "interaction" : "interacts with", "SUID" : 53754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53750", "source" : "2425", "target" : "3645", "shared_name" : "3981 (interacts with) 4758", "name" : "3981 (interacts with) 4758", "interaction" : "interacts with", "SUID" : 53750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53746", "source" : "2425", "target" : "3577", "shared_name" : "3981 (interacts with) 5605", "name" : "3981 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 53746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53742", "source" : "2425", "target" : "5977", "shared_name" : "3981 (interacts with) 1915", "name" : "3981 (interacts with) 1915", "interaction" : "interacts with", "SUID" : 53742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53738", "source" : "2425", "target" : "1257", "shared_name" : "3981 (interacts with) 3098", "name" : "3981 (interacts with) 3098", "interaction" : "interacts with", "SUID" : 53738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53910", "source" : "2421", "target" : "1425", "shared_name" : "2673 (interacts with) 55644", "name" : "2673 (interacts with) 55644", "interaction" : "interacts with", "SUID" : 53910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53906", "source" : "2421", "target" : "4693", "shared_name" : "2673 (interacts with) 6301", "name" : "2673 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 53906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53902", "source" : "2421", "target" : "6189", "shared_name" : "2673 (interacts with) 54676", "name" : "2673 (interacts with) 54676", "interaction" : "interacts with", "SUID" : 53902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53898", "source" : "2421", "target" : "2189", "shared_name" : "2673 (interacts with) 84705", "name" : "2673 (interacts with) 84705", "interaction" : "interacts with", "SUID" : 53898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53894", "source" : "2421", "target" : "1189", "shared_name" : "2673 (interacts with) 7915", "name" : "2673 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 53894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53890", "source" : "2421", "target" : "5401", "shared_name" : "2673 (interacts with) 5373", "name" : "2673 (interacts with) 5373", "interaction" : "interacts with", "SUID" : 53890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53886", "source" : "2421", "target" : "2633", "shared_name" : "2673 (interacts with) 29926", "name" : "2673 (interacts with) 29926", "interaction" : "interacts with", "SUID" : 53886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53882", "source" : "2421", "target" : "405", "shared_name" : "2673 (interacts with) 54187", "name" : "2673 (interacts with) 54187", "interaction" : "interacts with", "SUID" : 53882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53878", "source" : "2421", "target" : "2177", "shared_name" : "2673 (interacts with) 443", "name" : "2673 (interacts with) 443", "interaction" : "interacts with", "SUID" : 53878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53874", "source" : "2421", "target" : "4253", "shared_name" : "2673 (interacts with) 84706", "name" : "2673 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 53874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53870", "source" : "2421", "target" : "4737", "shared_name" : "2673 (interacts with) 445", "name" : "2673 (interacts with) 445", "interaction" : "interacts with", "SUID" : 53870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53866", "source" : "2421", "target" : "5529", "shared_name" : "2673 (interacts with) 2875", "name" : "2673 (interacts with) 2875", "interaction" : "interacts with", "SUID" : 53866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53862", "source" : "2421", "target" : "5717", "shared_name" : "2673 (interacts with) 29925", "name" : "2673 (interacts with) 29925", "interaction" : "interacts with", "SUID" : 53862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53858", "source" : "2421", "target" : "5349", "shared_name" : "2673 (interacts with) 440", "name" : "2673 (interacts with) 440", "interaction" : "interacts with", "SUID" : 53858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53854", "source" : "2421", "target" : "1981", "shared_name" : "2673 (interacts with) 339983", "name" : "2673 (interacts with) 339983", "interaction" : "interacts with", "SUID" : 53854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53850", "source" : "2421", "target" : "2493", "shared_name" : "2673 (interacts with) 7466", "name" : "2673 (interacts with) 7466", "interaction" : "interacts with", "SUID" : 53850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53846", "source" : "2421", "target" : "1865", "shared_name" : "2673 (interacts with) 498", "name" : "2673 (interacts with) 498", "interaction" : "interacts with", "SUID" : 53846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53842", "source" : "2421", "target" : "461", "shared_name" : "2673 (interacts with) 5198", "name" : "2673 (interacts with) 5198", "interaction" : "interacts with", "SUID" : 53842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53838", "source" : "2421", "target" : "4185", "shared_name" : "2673 (interacts with) 29968", "name" : "2673 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 53838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53834", "source" : "2421", "target" : "1013", "shared_name" : "2673 (interacts with) 6898", "name" : "2673 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 53834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53830", "source" : "2421", "target" : "285", "shared_name" : "2673 (interacts with) 5238", "name" : "2673 (interacts with) 5238", "interaction" : "interacts with", "SUID" : 53830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53826", "source" : "2421", "target" : "1257", "shared_name" : "2673 (interacts with) 3098", "name" : "2673 (interacts with) 3098", "interaction" : "interacts with", "SUID" : 53826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53822", "source" : "2421", "target" : "4189", "shared_name" : "2673 (interacts with) 2744", "name" : "2673 (interacts with) 2744", "interaction" : "interacts with", "SUID" : 53822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53818", "source" : "2421", "target" : "4093", "shared_name" : "2673 (interacts with) 2752", "name" : "2673 (interacts with) 2752", "interaction" : "interacts with", "SUID" : 53818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53814", "source" : "2421", "target" : "5785", "shared_name" : "2673 (interacts with) 6857", "name" : "2673 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 53814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53810", "source" : "2421", "target" : "1885", "shared_name" : "2673 (interacts with) 8604", "name" : "2673 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 53810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53806", "source" : "2421", "target" : "2721", "shared_name" : "2673 (interacts with) 79751", "name" : "2673 (interacts with) 79751", "interaction" : "interacts with", "SUID" : 53806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53802", "source" : "2421", "target" : "1385", "shared_name" : "2673 (interacts with) 6520", "name" : "2673 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 53802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53798", "source" : "2421", "target" : "6157", "shared_name" : "2673 (interacts with) 3735", "name" : "2673 (interacts with) 3735", "interaction" : "interacts with", "SUID" : 53798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53794", "source" : "2421", "target" : "3649", "shared_name" : "2673 (interacts with) 51520", "name" : "2673 (interacts with) 51520", "interaction" : "interacts with", "SUID" : 53794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53790", "source" : "2421", "target" : "3641", "shared_name" : "2673 (interacts with) 4141", "name" : "2673 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 53790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53786", "source" : "2421", "target" : "1089", "shared_name" : "2673 (interacts with) 5917", "name" : "2673 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 53786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53782", "source" : "2421", "target" : "3161", "shared_name" : "2673 (interacts with) 2821", "name" : "2673 (interacts with) 2821", "interaction" : "interacts with", "SUID" : 53782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53778", "source" : "2421", "target" : "4597", "shared_name" : "2673 (interacts with) 3376", "name" : "2673 (interacts with) 3376", "interaction" : "interacts with", "SUID" : 53778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53774", "source" : "2421", "target" : "349", "shared_name" : "2673 (interacts with) 60386", "name" : "2673 (interacts with) 60386", "interaction" : "interacts with", "SUID" : 53774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53770", "source" : "2421", "target" : "1849", "shared_name" : "2673 (interacts with) 26275", "name" : "2673 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 53770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53938", "source" : "2417", "target" : "981", "shared_name" : "675 (interacts with) 7157", "name" : "675 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 53938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53934", "source" : "2417", "target" : "5197", "shared_name" : "675 (interacts with) 7156", "name" : "675 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 53934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53930", "source" : "2417", "target" : "2921", "shared_name" : "675 (interacts with) 5981", "name" : "675 (interacts with) 5981", "interaction" : "interacts with", "SUID" : 53930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53926", "source" : "2417", "target" : "1729", "shared_name" : "675 (interacts with) 5111", "name" : "675 (interacts with) 5111", "interaction" : "interacts with", "SUID" : 53926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53922", "source" : "2417", "target" : "2529", "shared_name" : "675 (interacts with) 5424", "name" : "675 (interacts with) 5424", "interaction" : "interacts with", "SUID" : 53922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53918", "source" : "2417", "target" : "3933", "shared_name" : "675 (interacts with) 10524", "name" : "675 (interacts with) 10524", "interaction" : "interacts with", "SUID" : 53918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53914", "source" : "2417", "target" : "6045", "shared_name" : "675 (interacts with) 701", "name" : "675 (interacts with) 701", "interaction" : "interacts with", "SUID" : 53914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53990", "source" : "2413", "target" : "4889", "shared_name" : "50484 (interacts with) 7295", "name" : "50484 (interacts with) 7295", "interaction" : "interacts with", "SUID" : 53990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53986", "source" : "2413", "target" : "981", "shared_name" : "50484 (interacts with) 7157", "name" : "50484 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 53986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53982", "source" : "2413", "target" : "3601", "shared_name" : "50484 (interacts with) 6531", "name" : "50484 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 53982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53978", "source" : "2413", "target" : "1809", "shared_name" : "50484 (interacts with) 6548", "name" : "50484 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 53978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53974", "source" : "2413", "target" : "5877", "shared_name" : "50484 (interacts with) 6535", "name" : "50484 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 53974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53970", "source" : "2413", "target" : "3781", "shared_name" : "50484 (interacts with) 9152", "name" : "50484 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 53970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53966", "source" : "2413", "target" : "401", "shared_name" : "50484 (interacts with) 6532", "name" : "50484 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 53966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53962", "source" : "2413", "target" : "253", "shared_name" : "50484 (interacts with) 113235", "name" : "50484 (interacts with) 113235", "interaction" : "interacts with", "SUID" : 53962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53958", "source" : "2413", "target" : "3473", "shared_name" : "50484 (interacts with) 6528", "name" : "50484 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 53958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53954", "source" : "2413", "target" : "1681", "shared_name" : "50484 (interacts with) 9990", "name" : "50484 (interacts with) 9990", "interaction" : "interacts with", "SUID" : 53954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53950", "source" : "2413", "target" : "3969", "shared_name" : "50484 (interacts with) 57468", "name" : "50484 (interacts with) 57468", "interaction" : "interacts with", "SUID" : 53950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53946", "source" : "2413", "target" : "4025", "shared_name" : "50484 (interacts with) 284111", "name" : "50484 (interacts with) 284111", "interaction" : "interacts with", "SUID" : 53946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53942", "source" : "2413", "target" : "6009", "shared_name" : "50484 (interacts with) 64849", "name" : "50484 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 53942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54050", "source" : "2409", "target" : "3425", "shared_name" : "3304 (interacts with) 8803", "name" : "3304 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 54050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54046", "source" : "2409", "target" : "1237", "shared_name" : "3304 (interacts with) 3329", "name" : "3304 (interacts with) 3329", "interaction" : "interacts with", "SUID" : 54046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54042", "source" : "2409", "target" : "1053", "shared_name" : "3304 (interacts with) 81689", "name" : "3304 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 54042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54038", "source" : "2409", "target" : "1377", "shared_name" : "3304 (interacts with) 81570", "name" : "3304 (interacts with) 81570", "interaction" : "interacts with", "SUID" : 54038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54034", "source" : "2409", "target" : "665", "shared_name" : "3304 (interacts with) 3309", "name" : "3304 (interacts with) 3309", "interaction" : "interacts with", "SUID" : 54034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54030", "source" : "2409", "target" : "1217", "shared_name" : "3304 (interacts with) 3308", "name" : "3304 (interacts with) 3308", "interaction" : "interacts with", "SUID" : 54030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54026", "source" : "2409", "target" : "5013", "shared_name" : "3304 (interacts with) 23411", "name" : "3304 (interacts with) 23411", "interaction" : "interacts with", "SUID" : 54026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54022", "source" : "2409", "target" : "5701", "shared_name" : "3304 (interacts with) 6767", "name" : "3304 (interacts with) 6767", "interaction" : "interacts with", "SUID" : 54022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54018", "source" : "2409", "target" : "6077", "shared_name" : "3304 (interacts with) 10963", "name" : "3304 (interacts with) 10963", "interaction" : "interacts with", "SUID" : 54018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54014", "source" : "2409", "target" : "4981", "shared_name" : "3304 (interacts with) 6774", "name" : "3304 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 54014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54010", "source" : "2409", "target" : "4549", "shared_name" : "3304 (interacts with) 5903", "name" : "3304 (interacts with) 5903", "interaction" : "interacts with", "SUID" : 54010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54006", "source" : "2409", "target" : "4005", "shared_name" : "3304 (interacts with) 23636", "name" : "3304 (interacts with) 23636", "interaction" : "interacts with", "SUID" : 54006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54002", "source" : "2409", "target" : "5445", "shared_name" : "3304 (interacts with) 8021", "name" : "3304 (interacts with) 8021", "interaction" : "interacts with", "SUID" : 54002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53998", "source" : "2409", "target" : "5681", "shared_name" : "3304 (interacts with) 3315", "name" : "3304 (interacts with) 3315", "interaction" : "interacts with", "SUID" : 53998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "53994", "source" : "2409", "target" : "2309", "shared_name" : "3304 (interacts with) 3316", "name" : "3304 (interacts with) 3316", "interaction" : "interacts with", "SUID" : 53994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54062", "source" : "2405", "target" : "4025", "shared_name" : "3658 (interacts with) 284111", "name" : "3658 (interacts with) 284111", "interaction" : "interacts with", "SUID" : 54062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54058", "source" : "2405", "target" : "1485", "shared_name" : "3658 (interacts with) 8050", "name" : "3658 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 54058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54054", "source" : "2405", "target" : "2089", "shared_name" : "3658 (interacts with) 3939", "name" : "3658 (interacts with) 3939", "interaction" : "interacts with", "SUID" : 54054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54094", "source" : "2401", "target" : "2433", "shared_name" : "28514 (interacts with) 6927", "name" : "28514 (interacts with) 6927", "interaction" : "interacts with", "SUID" : 54094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54090", "source" : "2401", "target" : "3041", "shared_name" : "28514 (interacts with) 5663", "name" : "28514 (interacts with) 5663", "interaction" : "interacts with", "SUID" : 54090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54086", "source" : "2401", "target" : "2085", "shared_name" : "28514 (interacts with) 2932", "name" : "28514 (interacts with) 2932", "interaction" : "interacts with", "SUID" : 54086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54082", "source" : "2401", "target" : "2905", "shared_name" : "28514 (interacts with) 5664", "name" : "28514 (interacts with) 5664", "interaction" : "interacts with", "SUID" : 54082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54078", "source" : "2401", "target" : "5745", "shared_name" : "28514 (interacts with) 7471", "name" : "28514 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 54078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54074", "source" : "2401", "target" : "5409", "shared_name" : "28514 (interacts with) 9734", "name" : "28514 (interacts with) 9734", "interaction" : "interacts with", "SUID" : 54074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54070", "source" : "2401", "target" : "2213", "shared_name" : "28514 (interacts with) 4851", "name" : "28514 (interacts with) 4851", "interaction" : "interacts with", "SUID" : 54070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54066", "source" : "2401", "target" : "5453", "shared_name" : "28514 (interacts with) 4204", "name" : "28514 (interacts with) 4204", "interaction" : "interacts with", "SUID" : 54066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54102", "source" : "2397", "target" : "3433", "shared_name" : "3425 (interacts with) 26503", "name" : "3425 (interacts with) 26503", "interaction" : "interacts with", "SUID" : 54102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54098", "source" : "2397", "target" : "3397", "shared_name" : "3425 (interacts with) 4669", "name" : "3425 (interacts with) 4669", "interaction" : "interacts with", "SUID" : 54098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54110", "source" : "2393", "target" : "5197", "shared_name" : "6683 (interacts with) 7156", "name" : "6683 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 54110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54106", "source" : "2393", "target" : "5109", "shared_name" : "6683 (interacts with) 790", "name" : "6683 (interacts with) 790", "interaction" : "interacts with", "SUID" : 54106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54122", "source" : "2389", "target" : "3205", "shared_name" : "6925 (interacts with) 862", "name" : "6925 (interacts with) 862", "interaction" : "interacts with", "SUID" : 54122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54118", "source" : "2389", "target" : "945", "shared_name" : "6925 (interacts with) 2316", "name" : "6925 (interacts with) 2316", "interaction" : "interacts with", "SUID" : 54118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54114", "source" : "2389", "target" : "3149", "shared_name" : "6925 (interacts with) 3630", "name" : "6925 (interacts with) 3630", "interaction" : "interacts with", "SUID" : 54114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54154", "source" : "2385", "target" : "5377", "shared_name" : "3192 (interacts with) 6638", "name" : "3192 (interacts with) 6638", "interaction" : "interacts with", "SUID" : 54154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54150", "source" : "2385", "target" : "1837", "shared_name" : "3192 (interacts with) 9939", "name" : "3192 (interacts with) 9939", "interaction" : "interacts with", "SUID" : 54150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54146", "source" : "2385", "target" : "5193", "shared_name" : "3192 (interacts with) 5725", "name" : "3192 (interacts with) 5725", "interaction" : "interacts with", "SUID" : 54146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54142", "source" : "2385", "target" : "5281", "shared_name" : "3192 (interacts with) 10084", "name" : "3192 (interacts with) 10084", "interaction" : "interacts with", "SUID" : 54142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54138", "source" : "2385", "target" : "5861", "shared_name" : "3192 (interacts with) 5435", "name" : "3192 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 54138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54134", "source" : "2385", "target" : "2649", "shared_name" : "3192 (interacts with) 5430", "name" : "3192 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 54134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54130", "source" : "2385", "target" : "2105", "shared_name" : "3192 (interacts with) 56945", "name" : "3192 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 54130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54126", "source" : "2385", "target" : "853", "shared_name" : "3192 (interacts with) 60", "name" : "3192 (interacts with) 60", "interaction" : "interacts with", "SUID" : 54126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54258", "source" : "2381", "target" : "5557", "shared_name" : "2257 (interacts with) 9254", "name" : "2257 (interacts with) 9254", "interaction" : "interacts with", "SUID" : 54258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54254", "source" : "2381", "target" : "5489", "shared_name" : "2257 (interacts with) 2259", "name" : "2257 (interacts with) 2259", "interaction" : "interacts with", "SUID" : 54254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54250", "source" : "2381", "target" : "377", "shared_name" : "2257 (interacts with) 6326", "name" : "2257 (interacts with) 6326", "interaction" : "interacts with", "SUID" : 54250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54246", "source" : "2381", "target" : "381", "shared_name" : "2257 (interacts with) 6323", "name" : "2257 (interacts with) 6323", "interaction" : "interacts with", "SUID" : 54246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54242", "source" : "2381", "target" : "689", "shared_name" : "2257 (interacts with) 6329", "name" : "2257 (interacts with) 6329", "interaction" : "interacts with", "SUID" : 54242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54238", "source" : "2381", "target" : "373", "shared_name" : "2257 (interacts with) 6328", "name" : "2257 (interacts with) 6328", "interaction" : "interacts with", "SUID" : 54238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54234", "source" : "2381", "target" : "5229", "shared_name" : "2257 (interacts with) 6335", "name" : "2257 (interacts with) 6335", "interaction" : "interacts with", "SUID" : 54234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54230", "source" : "2381", "target" : "4841", "shared_name" : "2257 (interacts with) 6334", "name" : "2257 (interacts with) 6334", "interaction" : "interacts with", "SUID" : 54230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54226", "source" : "2381", "target" : "5877", "shared_name" : "2257 (interacts with) 6535", "name" : "2257 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 54226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54222", "source" : "2381", "target" : "309", "shared_name" : "2257 (interacts with) 6536", "name" : "2257 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 54222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54218", "source" : "2381", "target" : "3601", "shared_name" : "2257 (interacts with) 6531", "name" : "2257 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 54218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54214", "source" : "2381", "target" : "401", "shared_name" : "2257 (interacts with) 6532", "name" : "2257 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 54214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54210", "source" : "2381", "target" : "3781", "shared_name" : "2257 (interacts with) 9152", "name" : "2257 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 54210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54206", "source" : "2381", "target" : "2877", "shared_name" : "2257 (interacts with) 340024", "name" : "2257 (interacts with) 340024", "interaction" : "interacts with", "SUID" : 54206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54202", "source" : "2381", "target" : "3473", "shared_name" : "2257 (interacts with) 6528", "name" : "2257 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 54202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54198", "source" : "2381", "target" : "1385", "shared_name" : "2257 (interacts with) 6520", "name" : "2257 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 54198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54194", "source" : "2381", "target" : "5805", "shared_name" : "2257 (interacts with) 6575", "name" : "2257 (interacts with) 6575", "interaction" : "interacts with", "SUID" : 54194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54190", "source" : "2381", "target" : "4025", "shared_name" : "2257 (interacts with) 284111", "name" : "2257 (interacts with) 284111", "interaction" : "interacts with", "SUID" : 54190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54186", "source" : "2381", "target" : "3077", "shared_name" : "2257 (interacts with) 6506", "name" : "2257 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 54186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54182", "source" : "2381", "target" : "6009", "shared_name" : "2257 (interacts with) 64849", "name" : "2257 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 54182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54178", "source" : "2381", "target" : "5729", "shared_name" : "2257 (interacts with) 861", "name" : "2257 (interacts with) 861", "interaction" : "interacts with", "SUID" : 54178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54174", "source" : "2381", "target" : "1521", "shared_name" : "2257 (interacts with) 84879", "name" : "2257 (interacts with) 84879", "interaction" : "interacts with", "SUID" : 54174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54170", "source" : "2381", "target" : "5013", "shared_name" : "2257 (interacts with) 23411", "name" : "2257 (interacts with) 23411", "interaction" : "interacts with", "SUID" : 54170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54166", "source" : "2381", "target" : "5741", "shared_name" : "2257 (interacts with) 9150", "name" : "2257 (interacts with) 9150", "interaction" : "interacts with", "SUID" : 54166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54162", "source" : "2381", "target" : "773", "shared_name" : "2257 (interacts with) 29072", "name" : "2257 (interacts with) 29072", "interaction" : "interacts with", "SUID" : 54162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54158", "source" : "2381", "target" : "1757", "shared_name" : "2257 (interacts with) 23287", "name" : "2257 (interacts with) 23287", "interaction" : "interacts with", "SUID" : 54158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54282", "source" : "2377", "target" : "3705", "shared_name" : "6687 (interacts with) 87178", "name" : "6687 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 54282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54278", "source" : "2377", "target" : "5109", "shared_name" : "6687 (interacts with) 790", "name" : "6687 (interacts with) 790", "interaction" : "interacts with", "SUID" : 54278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54274", "source" : "2377", "target" : "889", "shared_name" : "6687 (interacts with) 80224", "name" : "6687 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 54274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54270", "source" : "2377", "target" : "1377", "shared_name" : "6687 (interacts with) 81570", "name" : "6687 (interacts with) 81570", "interaction" : "interacts with", "SUID" : 54270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54266", "source" : "2377", "target" : "2689", "shared_name" : "6687 (interacts with) 4715", "name" : "6687 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 54266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54262", "source" : "2377", "target" : "3381", "shared_name" : "6687 (interacts with) 2214", "name" : "6687 (interacts with) 2214", "interaction" : "interacts with", "SUID" : 54262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54290", "source" : "2373", "target" : "5173", "shared_name" : "64801 (interacts with) 1718", "name" : "64801 (interacts with) 1718", "interaction" : "interacts with", "SUID" : 54290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54286", "source" : "2373", "target" : "261", "shared_name" : "64801 (interacts with) 1717", "name" : "64801 (interacts with) 1717", "interaction" : "interacts with", "SUID" : 54286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54322", "source" : "2369", "target" : "5677", "shared_name" : "51741 (interacts with) 5189", "name" : "51741 (interacts with) 5189", "interaction" : "interacts with", "SUID" : 54322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54318", "source" : "2369", "target" : "4505", "shared_name" : "51741 (interacts with) 5190", "name" : "51741 (interacts with) 5190", "interaction" : "interacts with", "SUID" : 54318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54314", "source" : "2369", "target" : "1601", "shared_name" : "51741 (interacts with) 7415", "name" : "51741 (interacts with) 7415", "interaction" : "interacts with", "SUID" : 54314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54310", "source" : "2369", "target" : "4613", "shared_name" : "51741 (interacts with) 84896", "name" : "51741 (interacts with) 84896", "interaction" : "interacts with", "SUID" : 54310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54306", "source" : "2369", "target" : "2905", "shared_name" : "51741 (interacts with) 5664", "name" : "51741 (interacts with) 5664", "interaction" : "interacts with", "SUID" : 54306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54302", "source" : "2369", "target" : "5061", "shared_name" : "51741 (interacts with) 6285", "name" : "51741 (interacts with) 6285", "interaction" : "interacts with", "SUID" : 54302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54298", "source" : "2369", "target" : "5009", "shared_name" : "51741 (interacts with) 5241", "name" : "51741 (interacts with) 5241", "interaction" : "interacts with", "SUID" : 54298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54294", "source" : "2369", "target" : "3237", "shared_name" : "51741 (interacts with) 95", "name" : "51741 (interacts with) 95", "interaction" : "interacts with", "SUID" : 54294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54406", "source" : "2365", "target" : "573", "shared_name" : "2731 (interacts with) 3155", "name" : "2731 (interacts with) 3155", "interaction" : "interacts with", "SUID" : 54406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54402", "source" : "2365", "target" : "245", "shared_name" : "2731 (interacts with) 2936", "name" : "2731 (interacts with) 2936", "interaction" : "interacts with", "SUID" : 54402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54398", "source" : "2365", "target" : "693", "shared_name" : "2731 (interacts with) 7296", "name" : "2731 (interacts with) 7296", "interaction" : "interacts with", "SUID" : 54398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54394", "source" : "2365", "target" : "2089", "shared_name" : "2731 (interacts with) 3939", "name" : "2731 (interacts with) 3939", "interaction" : "interacts with", "SUID" : 54394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54390", "source" : "2365", "target" : "3541", "shared_name" : "2731 (interacts with) 4191", "name" : "2731 (interacts with) 4191", "interaction" : "interacts with", "SUID" : 54390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54386", "source" : "2365", "target" : "5825", "shared_name" : "2731 (interacts with) 4594", "name" : "2731 (interacts with) 4594", "interaction" : "interacts with", "SUID" : 54386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54382", "source" : "2365", "target" : "1301", "shared_name" : "2731 (interacts with) 5095", "name" : "2731 (interacts with) 5095", "interaction" : "interacts with", "SUID" : 54382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54378", "source" : "2365", "target" : "1021", "shared_name" : "2731 (interacts with) 5096", "name" : "2731 (interacts with) 5096", "interaction" : "interacts with", "SUID" : 54378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54374", "source" : "2365", "target" : "4093", "shared_name" : "2731 (interacts with) 2752", "name" : "2731 (interacts with) 2752", "interaction" : "interacts with", "SUID" : 54374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54370", "source" : "2365", "target" : "413", "shared_name" : "2731 (interacts with) 51733", "name" : "2731 (interacts with) 51733", "interaction" : "interacts with", "SUID" : 54370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54366", "source" : "2365", "target" : "5593", "shared_name" : "2731 (interacts with) 875", "name" : "2731 (interacts with) 875", "interaction" : "interacts with", "SUID" : 54366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54362", "source" : "2365", "target" : "397", "shared_name" : "2731 (interacts with) 50", "name" : "2731 (interacts with) 50", "interaction" : "interacts with", "SUID" : 54362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54358", "source" : "2365", "target" : "4185", "shared_name" : "2731 (interacts with) 29968", "name" : "2731 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 54358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54354", "source" : "2365", "target" : "6089", "shared_name" : "2731 (interacts with) 3145", "name" : "2731 (interacts with) 3145", "interaction" : "interacts with", "SUID" : 54354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54350", "source" : "2365", "target" : "1013", "shared_name" : "2731 (interacts with) 6898", "name" : "2731 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 54350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54346", "source" : "2365", "target" : "2005", "shared_name" : "2731 (interacts with) 4846", "name" : "2731 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 54346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54342", "source" : "2365", "target" : "4273", "shared_name" : "2731 (interacts with) 4548", "name" : "2731 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 54342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54338", "source" : "2365", "target" : "1473", "shared_name" : "2731 (interacts with) 4524", "name" : "2731 (interacts with) 4524", "interaction" : "interacts with", "SUID" : 54338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54334", "source" : "2365", "target" : "3929", "shared_name" : "2731 (interacts with) 5860", "name" : "2731 (interacts with) 5860", "interaction" : "interacts with", "SUID" : 54334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54330", "source" : "2365", "target" : "1849", "shared_name" : "2731 (interacts with) 26275", "name" : "2731 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 54330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54326", "source" : "2365", "target" : "4189", "shared_name" : "2731 (interacts with) 2744", "name" : "2731 (interacts with) 2744", "interaction" : "interacts with", "SUID" : 54326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54422", "source" : "2361", "target" : "2073", "shared_name" : "51010 (interacts with) 5393", "name" : "51010 (interacts with) 5393", "interaction" : "interacts with", "SUID" : 54422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54418", "source" : "2361", "target" : "5669", "shared_name" : "51010 (interacts with) 10087", "name" : "51010 (interacts with) 10087", "interaction" : "interacts with", "SUID" : 54418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54414", "source" : "2361", "target" : "3097", "shared_name" : "51010 (interacts with) 11340", "name" : "51010 (interacts with) 11340", "interaction" : "interacts with", "SUID" : 54414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54410", "source" : "2361", "target" : "4733", "shared_name" : "51010 (interacts with) 23404", "name" : "51010 (interacts with) 23404", "interaction" : "interacts with", "SUID" : 54410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54446", "source" : "2357", "target" : "4021", "shared_name" : "79600 (interacts with) 203068", "name" : "79600 (interacts with) 203068", "interaction" : "interacts with", "SUID" : 54446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54442", "source" : "2357", "target" : "5969", "shared_name" : "79600 (interacts with) 10382", "name" : "79600 (interacts with) 10382", "interaction" : "interacts with", "SUID" : 54442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54438", "source" : "2357", "target" : "5713", "shared_name" : "79600 (interacts with) 7531", "name" : "79600 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 54438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54434", "source" : "2357", "target" : "269", "shared_name" : "79600 (interacts with) 51259", "name" : "79600 (interacts with) 51259", "interaction" : "interacts with", "SUID" : 54434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54430", "source" : "2357", "target" : "4245", "shared_name" : "79600 (interacts with) 91147", "name" : "79600 (interacts with) 91147", "interaction" : "interacts with", "SUID" : 54430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54426", "source" : "2357", "target" : "1317", "shared_name" : "79600 (interacts with) 57545", "name" : "79600 (interacts with) 57545", "interaction" : "interacts with", "SUID" : 54426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54490", "source" : "2353", "target" : "4941", "shared_name" : "5264 (interacts with) 6342", "name" : "5264 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 54490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54486", "source" : "2353", "target" : "5873", "shared_name" : "5264 (interacts with) 5827", "name" : "5264 (interacts with) 5827", "interaction" : "interacts with", "SUID" : 54486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54482", "source" : "2353", "target" : "196", "shared_name" : "5264 (interacts with) 84188", "name" : "5264 (interacts with) 84188", "interaction" : "interacts with", "SUID" : 54482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54478", "source" : "2353", "target" : "3341", "shared_name" : "5264 (interacts with) 8504", "name" : "5264 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 54478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54474", "source" : "2353", "target" : "4301", "shared_name" : "5264 (interacts with) 8799", "name" : "5264 (interacts with) 8799", "interaction" : "interacts with", "SUID" : 54474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54470", "source" : "2353", "target" : "3333", "shared_name" : "5264 (interacts with) 9409", "name" : "5264 (interacts with) 9409", "interaction" : "interacts with", "SUID" : 54470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54466", "source" : "2353", "target" : "2325", "shared_name" : "5264 (interacts with) 55670", "name" : "5264 (interacts with) 55670", "interaction" : "interacts with", "SUID" : 54466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54462", "source" : "2353", "target" : "3329", "shared_name" : "5264 (interacts with) 5824", "name" : "5264 (interacts with) 5824", "interaction" : "interacts with", "SUID" : 54462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54458", "source" : "2353", "target" : "5545", "shared_name" : "5264 (interacts with) 5195", "name" : "5264 (interacts with) 5195", "interaction" : "interacts with", "SUID" : 54458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54454", "source" : "2353", "target" : "5133", "shared_name" : "5264 (interacts with) 51", "name" : "5264 (interacts with) 51", "interaction" : "interacts with", "SUID" : 54454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54450", "source" : "2353", "target" : "5237", "shared_name" : "5264 (interacts with) 5830", "name" : "5264 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 54450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54514", "source" : "2349", "target" : "3917", "shared_name" : "133686 (interacts with) 22978", "name" : "133686 (interacts with) 22978", "interaction" : "interacts with", "SUID" : 54514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54510", "source" : "2349", "target" : "5329", "shared_name" : "133686 (interacts with) 4907", "name" : "133686 (interacts with) 4907", "interaction" : "interacts with", "SUID" : 54510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54506", "source" : "2349", "target" : "781", "shared_name" : "133686 (interacts with) 4860", "name" : "133686 (interacts with) 4860", "interaction" : "interacts with", "SUID" : 54506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54502", "source" : "2349", "target" : "5793", "shared_name" : "133686 (interacts with) 51251", "name" : "133686 (interacts with) 51251", "interaction" : "interacts with", "SUID" : 54502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54498", "source" : "2349", "target" : "2925", "shared_name" : "133686 (interacts with) 8802", "name" : "133686 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 54498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54494", "source" : "2349", "target" : "3425", "shared_name" : "133686 (interacts with) 8803", "name" : "133686 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 54494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54750", "source" : "2345", "target" : "4501", "shared_name" : "200205 (interacts with) 25821", "name" : "200205 (interacts with) 25821", "interaction" : "interacts with", "SUID" : 54750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54746", "source" : "2345", "target" : "6089", "shared_name" : "200205 (interacts with) 3145", "name" : "200205 (interacts with) 3145", "interaction" : "interacts with", "SUID" : 54746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54742", "source" : "2345", "target" : "1669", "shared_name" : "200205 (interacts with) 6390", "name" : "200205 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 54742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54738", "source" : "2345", "target" : "2297", "shared_name" : "200205 (interacts with) 55005", "name" : "200205 (interacts with) 55005", "interaction" : "interacts with", "SUID" : 54738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54734", "source" : "2345", "target" : "3705", "shared_name" : "200205 (interacts with) 87178", "name" : "200205 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 54734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54730", "source" : "2345", "target" : "5689", "shared_name" : "200205 (interacts with) 27089", "name" : "200205 (interacts with) 27089", "interaction" : "interacts with", "SUID" : 54730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54726", "source" : "2345", "target" : "3633", "shared_name" : "200205 (interacts with) 51067", "name" : "200205 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 54726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54722", "source" : "2345", "target" : "5189", "shared_name" : "200205 (interacts with) 57176", "name" : "200205 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 54722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54718", "source" : "2345", "target" : "1053", "shared_name" : "200205 (interacts with) 81689", "name" : "200205 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 54718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54714", "source" : "2345", "target" : "1105", "shared_name" : "200205 (interacts with) 493753", "name" : "200205 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 54714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54710", "source" : "2345", "target" : "501", "shared_name" : "200205 (interacts with) 65993", "name" : "200205 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 54710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54706", "source" : "2345", "target" : "5985", "shared_name" : "200205 (interacts with) 27235", "name" : "200205 (interacts with) 27235", "interaction" : "interacts with", "SUID" : 54706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54702", "source" : "2345", "target" : "3545", "shared_name" : "200205 (interacts with) 708", "name" : "200205 (interacts with) 708", "interaction" : "interacts with", "SUID" : 54702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54698", "source" : "2345", "target" : "2105", "shared_name" : "200205 (interacts with) 56945", "name" : "200205 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 54698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54694", "source" : "2345", "target" : "6049", "shared_name" : "200205 (interacts with) 25973", "name" : "200205 (interacts with) 25973", "interaction" : "interacts with", "SUID" : 54694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54690", "source" : "2345", "target" : "1573", "shared_name" : "200205 (interacts with) 4723", "name" : "200205 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 54690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54686", "source" : "2345", "target" : "521", "shared_name" : "200205 (interacts with) 85476", "name" : "200205 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 54686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54682", "source" : "2345", "target" : "4141", "shared_name" : "200205 (interacts with) 617", "name" : "200205 (interacts with) 617", "interaction" : "interacts with", "SUID" : 54682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54678", "source" : "2345", "target" : "721", "shared_name" : "200205 (interacts with) 79731", "name" : "200205 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 54678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54674", "source" : "2345", "target" : "4897", "shared_name" : "200205 (interacts with) 55149", "name" : "200205 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 54674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54670", "source" : "2345", "target" : "2689", "shared_name" : "200205 (interacts with) 4715", "name" : "200205 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 54670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54666", "source" : "2345", "target" : "889", "shared_name" : "200205 (interacts with) 80224", "name" : "200205 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 54666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54662", "source" : "2345", "target" : "5853", "shared_name" : "200205 (interacts with) 4709", "name" : "200205 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 54662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54658", "source" : "2345", "target" : "3617", "shared_name" : "200205 (interacts with) 4704", "name" : "200205 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 54658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54654", "source" : "2345", "target" : "2609", "shared_name" : "200205 (interacts with) 29960", "name" : "200205 (interacts with) 29960", "interaction" : "interacts with", "SUID" : 54654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54650", "source" : "2345", "target" : "4621", "shared_name" : "200205 (interacts with) 57038", "name" : "200205 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 54650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54646", "source" : "2345", "target" : "477", "shared_name" : "200205 (interacts with) 51021", "name" : "200205 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 54646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54642", "source" : "2345", "target" : "6001", "shared_name" : "200205 (interacts with) 55157", "name" : "200205 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 54642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54638", "source" : "2345", "target" : "713", "shared_name" : "200205 (interacts with) 7019", "name" : "200205 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 54638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54634", "source" : "2345", "target" : "1369", "shared_name" : "200205 (interacts with) 27247", "name" : "200205 (interacts with) 27247", "interaction" : "interacts with", "SUID" : 54634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54630", "source" : "2345", "target" : "2337", "shared_name" : "200205 (interacts with) 28976", "name" : "200205 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 54630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54626", "source" : "2345", "target" : "2021", "shared_name" : "200205 (interacts with) 5428", "name" : "200205 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 54626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54622", "source" : "2345", "target" : "3761", "shared_name" : "200205 (interacts with) 25915", "name" : "200205 (interacts with) 25915", "interaction" : "interacts with", "SUID" : 54622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54618", "source" : "2345", "target" : "2477", "shared_name" : "200205 (interacts with) 57107", "name" : "200205 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 54618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54614", "source" : "2345", "target" : "4409", "shared_name" : "200205 (interacts with) 6341", "name" : "200205 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 54614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54610", "source" : "2345", "target" : "5737", "shared_name" : "200205 (interacts with) 84340", "name" : "200205 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 54610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54606", "source" : "2345", "target" : "1129", "shared_name" : "200205 (interacts with) 57505", "name" : "200205 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 54606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54602", "source" : "2345", "target" : "1561", "shared_name" : "200205 (interacts with) 51117", "name" : "200205 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 54602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54598", "source" : "2345", "target" : "2753", "shared_name" : "200205 (interacts with) 4720", "name" : "200205 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 54598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54594", "source" : "2345", "target" : "4757", "shared_name" : "200205 (interacts with) 9997", "name" : "200205 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 54594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54590", "source" : "2345", "target" : "2741", "shared_name" : "200205 (interacts with) 4695", "name" : "200205 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 54590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54586", "source" : "2345", "target" : "1197", "shared_name" : "200205 (interacts with) 79587", "name" : "200205 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 54586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54582", "source" : "2345", "target" : "5085", "shared_name" : "200205 (interacts with) 56652", "name" : "200205 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 54582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54578", "source" : "2345", "target" : "5845", "shared_name" : "200205 (interacts with) 4714", "name" : "200205 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 54578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54574", "source" : "2345", "target" : "2285", "shared_name" : "200205 (interacts with) 51300", "name" : "200205 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 54574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54570", "source" : "2345", "target" : "1869", "shared_name" : "200205 (interacts with) 4729", "name" : "200205 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 54570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54566", "source" : "2345", "target" : "4869", "shared_name" : "200205 (interacts with) 92935", "name" : "200205 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 54566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54562", "source" : "2345", "target" : "4101", "shared_name" : "200205 (interacts with) 65260", "name" : "200205 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 54562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54558", "source" : "2345", "target" : "6073", "shared_name" : "200205 (interacts with) 92170", "name" : "200205 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 54558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54554", "source" : "2345", "target" : "1929", "shared_name" : "200205 (interacts with) 51218", "name" : "200205 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 54554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54550", "source" : "2345", "target" : "2009", "shared_name" : "200205 (interacts with) 79133", "name" : "200205 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 54550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54546", "source" : "2345", "target" : "2109", "shared_name" : "200205 (interacts with) 51103", "name" : "200205 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 54546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54542", "source" : "2345", "target" : "4061", "shared_name" : "200205 (interacts with) 4705", "name" : "200205 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 54542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54538", "source" : "2345", "target" : "4017", "shared_name" : "200205 (interacts with) 4719", "name" : "200205 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 54538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54534", "source" : "2345", "target" : "4069", "shared_name" : "200205 (interacts with) 374291", "name" : "200205 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 54534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54530", "source" : "2345", "target" : "2797", "shared_name" : "200205 (interacts with) 4728", "name" : "200205 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 54530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54526", "source" : "2345", "target" : "2801", "shared_name" : "200205 (interacts with) 4700", "name" : "200205 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 54526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54522", "source" : "2345", "target" : "3973", "shared_name" : "200205 (interacts with) 55572", "name" : "200205 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 54522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54518", "source" : "2345", "target" : "5505", "shared_name" : "200205 (interacts with) 29078", "name" : "200205 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 54518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54782", "source" : "2341", "target" : "4021", "shared_name" : "23322 (interacts with) 203068", "name" : "23322 (interacts with) 203068", "interaction" : "interacts with", "SUID" : 54782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54778", "source" : "2341", "target" : "5969", "shared_name" : "23322 (interacts with) 10382", "name" : "23322 (interacts with) 10382", "interaction" : "interacts with", "SUID" : 54778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54774", "source" : "2341", "target" : "5713", "shared_name" : "23322 (interacts with) 7531", "name" : "23322 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 54774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54770", "source" : "2341", "target" : "2357", "shared_name" : "23322 (interacts with) 79600", "name" : "23322 (interacts with) 79600", "interaction" : "interacts with", "SUID" : 54770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54766", "source" : "2341", "target" : "1181", "shared_name" : "23322 (interacts with) 51684", "name" : "23322 (interacts with) 51684", "interaction" : "interacts with", "SUID" : 54766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54762", "source" : "2341", "target" : "4245", "shared_name" : "23322 (interacts with) 91147", "name" : "23322 (interacts with) 91147", "interaction" : "interacts with", "SUID" : 54762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54758", "source" : "2341", "target" : "269", "shared_name" : "23322 (interacts with) 51259", "name" : "23322 (interacts with) 51259", "interaction" : "interacts with", "SUID" : 54758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54754", "source" : "2341", "target" : "4321", "shared_name" : "23322 (interacts with) 132320", "name" : "23322 (interacts with) 132320", "interaction" : "interacts with", "SUID" : 54754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55154", "source" : "2337", "target" : "721", "shared_name" : "28976 (interacts with) 79731", "name" : "28976 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 55154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55150", "source" : "2337", "target" : "3621", "shared_name" : "28976 (interacts with) 6834", "name" : "28976 (interacts with) 6834", "interaction" : "interacts with", "SUID" : 55150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55146", "source" : "2337", "target" : "493", "shared_name" : "28976 (interacts with) 594", "name" : "28976 (interacts with) 594", "interaction" : "interacts with", "SUID" : 55146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55142", "source" : "2337", "target" : "1105", "shared_name" : "28976 (interacts with) 493753", "name" : "28976 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 55142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55138", "source" : "2337", "target" : "1189", "shared_name" : "28976 (interacts with) 7915", "name" : "28976 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 55138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55134", "source" : "2337", "target" : "3537", "shared_name" : "28976 (interacts with) 501", "name" : "28976 (interacts with) 501", "interaction" : "interacts with", "SUID" : 55134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55130", "source" : "2337", "target" : "1013", "shared_name" : "28976 (interacts with) 6898", "name" : "28976 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 55130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55126", "source" : "2337", "target" : "4737", "shared_name" : "28976 (interacts with) 445", "name" : "28976 (interacts with) 445", "interaction" : "interacts with", "SUID" : 55126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55122", "source" : "2337", "target" : "521", "shared_name" : "28976 (interacts with) 85476", "name" : "28976 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 55122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55118", "source" : "2337", "target" : "1525", "shared_name" : "28976 (interacts with) 3295", "name" : "28976 (interacts with) 3295", "interaction" : "interacts with", "SUID" : 55118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55114", "source" : "2337", "target" : "3633", "shared_name" : "28976 (interacts with) 51067", "name" : "28976 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 55114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55110", "source" : "2337", "target" : "501", "shared_name" : "28976 (interacts with) 65993", "name" : "28976 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 55110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55106", "source" : "2337", "target" : "1129", "shared_name" : "28976 (interacts with) 57505", "name" : "28976 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 55106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55102", "source" : "2337", "target" : "3545", "shared_name" : "28976 (interacts with) 708", "name" : "28976 (interacts with) 708", "interaction" : "interacts with", "SUID" : 55102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55098", "source" : "2337", "target" : "4897", "shared_name" : "28976 (interacts with) 55149", "name" : "28976 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 55098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55094", "source" : "2337", "target" : "5189", "shared_name" : "28976 (interacts with) 57176", "name" : "28976 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 55094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55090", "source" : "2337", "target" : "2609", "shared_name" : "28976 (interacts with) 29960", "name" : "28976 (interacts with) 29960", "interaction" : "interacts with", "SUID" : 55090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55086", "source" : "2337", "target" : "4869", "shared_name" : "28976 (interacts with) 92935", "name" : "28976 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 55086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55082", "source" : "2337", "target" : "1021", "shared_name" : "28976 (interacts with) 5096", "name" : "28976 (interacts with) 5096", "interaction" : "interacts with", "SUID" : 55082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55078", "source" : "2337", "target" : "1301", "shared_name" : "28976 (interacts with) 5095", "name" : "28976 (interacts with) 5095", "interaction" : "interacts with", "SUID" : 55078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55074", "source" : "2337", "target" : "5085", "shared_name" : "28976 (interacts with) 56652", "name" : "28976 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 55074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55070", "source" : "2337", "target" : "4749", "shared_name" : "28976 (interacts with) 3028", "name" : "28976 (interacts with) 3028", "interaction" : "interacts with", "SUID" : 55070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55066", "source" : "2337", "target" : "4757", "shared_name" : "28976 (interacts with) 9997", "name" : "28976 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 55066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55062", "source" : "2337", "target" : "5593", "shared_name" : "28976 (interacts with) 875", "name" : "28976 (interacts with) 875", "interaction" : "interacts with", "SUID" : 55062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55058", "source" : "2337", "target" : "5737", "shared_name" : "28976 (interacts with) 84340", "name" : "28976 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 55058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55054", "source" : "2337", "target" : "4409", "shared_name" : "28976 (interacts with) 6341", "name" : "28976 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 55054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55050", "source" : "2337", "target" : "4621", "shared_name" : "28976 (interacts with) 57038", "name" : "28976 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 55050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55046", "source" : "2337", "target" : "4141", "shared_name" : "28976 (interacts with) 617", "name" : "28976 (interacts with) 617", "interaction" : "interacts with", "SUID" : 55046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55042", "source" : "2337", "target" : "2021", "shared_name" : "28976 (interacts with) 5428", "name" : "28976 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 55042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55038", "source" : "2337", "target" : "1929", "shared_name" : "28976 (interacts with) 51218", "name" : "28976 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 55038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55034", "source" : "2337", "target" : "3445", "shared_name" : "28976 (interacts with) 5091", "name" : "28976 (interacts with) 5091", "interaction" : "interacts with", "SUID" : 55034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55030", "source" : "2337", "target" : "5857", "shared_name" : "28976 (interacts with) 4694", "name" : "28976 (interacts with) 4694", "interaction" : "interacts with", "SUID" : 55030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55026", "source" : "2337", "target" : "5553", "shared_name" : "28976 (interacts with) 55967", "name" : "28976 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 55026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55022", "source" : "2337", "target" : "5833", "shared_name" : "28976 (interacts with) 4726", "name" : "28976 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 55022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55018", "source" : "2337", "target" : "5821", "shared_name" : "28976 (interacts with) 4724", "name" : "28976 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 55018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55014", "source" : "2337", "target" : "2757", "shared_name" : "28976 (interacts with) 51079", "name" : "28976 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 55014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55010", "source" : "2337", "target" : "713", "shared_name" : "28976 (interacts with) 7019", "name" : "28976 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 55010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55006", "source" : "2337", "target" : "2029", "shared_name" : "28976 (interacts with) 4329", "name" : "28976 (interacts with) 4329", "interaction" : "interacts with", "SUID" : 55006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55002", "source" : "2337", "target" : "1561", "shared_name" : "28976 (interacts with) 51117", "name" : "28976 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 55002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54998", "source" : "2337", "target" : "477", "shared_name" : "28976 (interacts with) 51021", "name" : "28976 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 54998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54994", "source" : "2337", "target" : "1661", "shared_name" : "28976 (interacts with) 91942", "name" : "28976 (interacts with) 91942", "interaction" : "interacts with", "SUID" : 54994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54990", "source" : "2337", "target" : "1337", "shared_name" : "28976 (interacts with) 55863", "name" : "28976 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 54990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54986", "source" : "2337", "target" : "2285", "shared_name" : "28976 (interacts with) 51300", "name" : "28976 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 54986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54982", "source" : "2337", "target" : "1749", "shared_name" : "28976 (interacts with) 728294", "name" : "28976 (interacts with) 728294", "interaction" : "interacts with", "SUID" : 54982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54978", "source" : "2337", "target" : "4945", "shared_name" : "28976 (interacts with) 4722", "name" : "28976 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 54978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54974", "source" : "2337", "target" : "3617", "shared_name" : "28976 (interacts with) 4704", "name" : "28976 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 54974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54970", "source" : "2337", "target" : "889", "shared_name" : "28976 (interacts with) 80224", "name" : "28976 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 54970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54966", "source" : "2337", "target" : "2689", "shared_name" : "28976 (interacts with) 4715", "name" : "28976 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 54966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54962", "source" : "2337", "target" : "2025", "shared_name" : "28976 (interacts with) 549", "name" : "28976 (interacts with) 549", "interaction" : "interacts with", "SUID" : 54962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54958", "source" : "2337", "target" : "6073", "shared_name" : "28976 (interacts with) 92170", "name" : "28976 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 54958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54954", "source" : "2337", "target" : "1197", "shared_name" : "28976 (interacts with) 79587", "name" : "28976 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 54954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54950", "source" : "2337", "target" : "6001", "shared_name" : "28976 (interacts with) 55157", "name" : "28976 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 54950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54946", "source" : "2337", "target" : "5853", "shared_name" : "28976 (interacts with) 4709", "name" : "28976 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 54946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54942", "source" : "2337", "target" : "4101", "shared_name" : "28976 (interacts with) 65260", "name" : "28976 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 54942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54938", "source" : "2337", "target" : "2009", "shared_name" : "28976 (interacts with) 79133", "name" : "28976 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 54938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54934", "source" : "2337", "target" : "4069", "shared_name" : "28976 (interacts with) 374291", "name" : "28976 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 54934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54930", "source" : "2337", "target" : "5505", "shared_name" : "28976 (interacts with) 29078", "name" : "28976 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 54930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54926", "source" : "2337", "target" : "4017", "shared_name" : "28976 (interacts with) 4719", "name" : "28976 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 54926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54922", "source" : "2337", "target" : "2753", "shared_name" : "28976 (interacts with) 4720", "name" : "28976 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 54922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54918", "source" : "2337", "target" : "5845", "shared_name" : "28976 (interacts with) 4714", "name" : "28976 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 54918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54914", "source" : "2337", "target" : "2741", "shared_name" : "28976 (interacts with) 4695", "name" : "28976 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 54914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54910", "source" : "2337", "target" : "2797", "shared_name" : "28976 (interacts with) 4728", "name" : "28976 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 54910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54906", "source" : "2337", "target" : "5797", "shared_name" : "28976 (interacts with) 3030", "name" : "28976 (interacts with) 3030", "interaction" : "interacts with", "SUID" : 54906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54902", "source" : "2337", "target" : "3973", "shared_name" : "28976 (interacts with) 55572", "name" : "28976 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 54902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54898", "source" : "2337", "target" : "2801", "shared_name" : "28976 (interacts with) 4700", "name" : "28976 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 54898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54894", "source" : "2337", "target" : "4265", "shared_name" : "28976 (interacts with) 4541", "name" : "28976 (interacts with) 4541", "interaction" : "interacts with", "SUID" : 54894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54890", "source" : "2337", "target" : "2825", "shared_name" : "28976 (interacts with) 126328", "name" : "28976 (interacts with) 126328", "interaction" : "interacts with", "SUID" : 54890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54886", "source" : "2337", "target" : "1573", "shared_name" : "28976 (interacts with) 4723", "name" : "28976 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 54886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54882", "source" : "2337", "target" : "4061", "shared_name" : "28976 (interacts with) 4705", "name" : "28976 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 54882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54878", "source" : "2337", "target" : "1869", "shared_name" : "28976 (interacts with) 4729", "name" : "28976 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 54878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54874", "source" : "2337", "target" : "1289", "shared_name" : "28976 (interacts with) 6392", "name" : "28976 (interacts with) 6392", "interaction" : "interacts with", "SUID" : 54874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54870", "source" : "2337", "target" : "349", "shared_name" : "28976 (interacts with) 60386", "name" : "28976 (interacts with) 60386", "interaction" : "interacts with", "SUID" : 54870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54866", "source" : "2337", "target" : "3405", "shared_name" : "28976 (interacts with) 4535", "name" : "28976 (interacts with) 4535", "interaction" : "interacts with", "SUID" : 54866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54862", "source" : "2337", "target" : "2789", "shared_name" : "28976 (interacts with) 4536", "name" : "28976 (interacts with) 4536", "interaction" : "interacts with", "SUID" : 54862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54858", "source" : "2337", "target" : "5829", "shared_name" : "28976 (interacts with) 4538", "name" : "28976 (interacts with) 4538", "interaction" : "interacts with", "SUID" : 54858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54854", "source" : "2337", "target" : "5885", "shared_name" : "28976 (interacts with) 4540", "name" : "28976 (interacts with) 4540", "interaction" : "interacts with", "SUID" : 54854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54850", "source" : "2337", "target" : "3917", "shared_name" : "28976 (interacts with) 22978", "name" : "28976 (interacts with) 22978", "interaction" : "interacts with", "SUID" : 54850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54846", "source" : "2337", "target" : "1341", "shared_name" : "28976 (interacts with) 5009", "name" : "28976 (interacts with) 5009", "interaction" : "interacts with", "SUID" : 54846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54842", "source" : "2337", "target" : "4941", "shared_name" : "28976 (interacts with) 6342", "name" : "28976 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 54842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54838", "source" : "2337", "target" : "5025", "shared_name" : "28976 (interacts with) 6389", "name" : "28976 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 54838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54834", "source" : "2337", "target" : "1669", "shared_name" : "28976 (interacts with) 6390", "name" : "28976 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 54834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54830", "source" : "2337", "target" : "3681", "shared_name" : "28976 (interacts with) 1892", "name" : "28976 (interacts with) 1892", "interaction" : "interacts with", "SUID" : 54830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54826", "source" : "2337", "target" : "6093", "shared_name" : "28976 (interacts with) 953", "name" : "28976 (interacts with) 953", "interaction" : "interacts with", "SUID" : 54826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54822", "source" : "2337", "target" : "2165", "shared_name" : "28976 (interacts with) 23417", "name" : "28976 (interacts with) 23417", "interaction" : "interacts with", "SUID" : 54822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54818", "source" : "2337", "target" : "741", "shared_name" : "28976 (interacts with) 4830", "name" : "28976 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 54818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54814", "source" : "2337", "target" : "5133", "shared_name" : "28976 (interacts with) 51", "name" : "28976 (interacts with) 51", "interaction" : "interacts with", "SUID" : 54814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54810", "source" : "2337", "target" : "801", "shared_name" : "28976 (interacts with) 1376", "name" : "28976 (interacts with) 1376", "interaction" : "interacts with", "SUID" : 54810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54806", "source" : "2337", "target" : "4745", "shared_name" : "28976 (interacts with) 35", "name" : "28976 (interacts with) 35", "interaction" : "interacts with", "SUID" : 54806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54802", "source" : "2337", "target" : "397", "shared_name" : "28976 (interacts with) 50", "name" : "28976 (interacts with) 50", "interaction" : "interacts with", "SUID" : 54802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54798", "source" : "2337", "target" : "489", "shared_name" : "28976 (interacts with) 1629", "name" : "28976 (interacts with) 1629", "interaction" : "interacts with", "SUID" : 54798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54794", "source" : "2337", "target" : "3705", "shared_name" : "28976 (interacts with) 87178", "name" : "28976 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 54794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54790", "source" : "2337", "target" : "2477", "shared_name" : "28976 (interacts with) 57107", "name" : "28976 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 54790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "54786", "source" : "2337", "target" : "2109", "shared_name" : "28976 (interacts with) 51103", "name" : "28976 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 54786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55258", "source" : "2333", "target" : "973", "shared_name" : "3559 (interacts with) 5595", "name" : "3559 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 55258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55254", "source" : "2333", "target" : "5081", "shared_name" : "3559 (interacts with) 5594", "name" : "3559 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 55254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55250", "source" : "2333", "target" : "5361", "shared_name" : "3559 (interacts with) 5604", "name" : "3559 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 55250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55246", "source" : "2333", "target" : "5225", "shared_name" : "3559 (interacts with) 5290", "name" : "3559 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 55246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55242", "source" : "2333", "target" : "4213", "shared_name" : "3559 (interacts with) 5295", "name" : "3559 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 55242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55238", "source" : "2333", "target" : "4521", "shared_name" : "3559 (interacts with) 5894", "name" : "3559 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 55238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55234", "source" : "2333", "target" : "3409", "shared_name" : "3559 (interacts with) 7043", "name" : "3559 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 55234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55230", "source" : "2333", "target" : "637", "shared_name" : "3559 (interacts with) 6654", "name" : "3559 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 55230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55226", "source" : "2333", "target" : "3305", "shared_name" : "3559 (interacts with) 7040", "name" : "3559 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 55226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55222", "source" : "2333", "target" : "2153", "shared_name" : "3559 (interacts with) 7042", "name" : "3559 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 55222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55218", "source" : "2333", "target" : "5965", "shared_name" : "3559 (interacts with) 596", "name" : "3559 (interacts with) 596", "interaction" : "interacts with", "SUID" : 55218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55214", "source" : "2333", "target" : "4533", "shared_name" : "3559 (interacts with) 4089", "name" : "3559 (interacts with) 4089", "interaction" : "interacts with", "SUID" : 55214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55210", "source" : "2333", "target" : "569", "shared_name" : "3559 (interacts with) 7048", "name" : "3559 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 55210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55206", "source" : "2333", "target" : "1701", "shared_name" : "3559 (interacts with) 5777", "name" : "3559 (interacts with) 5777", "interaction" : "interacts with", "SUID" : 55206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55202", "source" : "2333", "target" : "6169", "shared_name" : "3559 (interacts with) 4088", "name" : "3559 (interacts with) 4088", "interaction" : "interacts with", "SUID" : 55202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55198", "source" : "2333", "target" : "2661", "shared_name" : "3559 (interacts with) 3606", "name" : "3559 (interacts with) 3606", "interaction" : "interacts with", "SUID" : 55198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55194", "source" : "2333", "target" : "1541", "shared_name" : "3559 (interacts with) 958", "name" : "3559 (interacts with) 958", "interaction" : "interacts with", "SUID" : 55194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55190", "source" : "2333", "target" : "3553", "shared_name" : "3559 (interacts with) 3592", "name" : "3559 (interacts with) 3592", "interaction" : "interacts with", "SUID" : 55190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55186", "source" : "2333", "target" : "3465", "shared_name" : "3559 (interacts with) 5296", "name" : "3559 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 55186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55182", "source" : "2333", "target" : "3717", "shared_name" : "3559 (interacts with) 3593", "name" : "3559 (interacts with) 3593", "interaction" : "interacts with", "SUID" : 55182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55178", "source" : "2333", "target" : "5729", "shared_name" : "3559 (interacts with) 861", "name" : "3559 (interacts with) 861", "interaction" : "interacts with", "SUID" : 55178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55174", "source" : "2333", "target" : "3569", "shared_name" : "3559 (interacts with) 4893", "name" : "3559 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 55174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55170", "source" : "2333", "target" : "3573", "shared_name" : "3559 (interacts with) 3845", "name" : "3559 (interacts with) 3845", "interaction" : "interacts with", "SUID" : 55170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55166", "source" : "2333", "target" : "5497", "shared_name" : "3559 (interacts with) 91137", "name" : "3559 (interacts with) 91137", "interaction" : "interacts with", "SUID" : 55166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55162", "source" : "2333", "target" : "2621", "shared_name" : "3559 (interacts with) 477", "name" : "3559 (interacts with) 477", "interaction" : "interacts with", "SUID" : 55162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55158", "source" : "2333", "target" : "1809", "shared_name" : "3559 (interacts with) 6548", "name" : "3559 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 55158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55414", "source" : "2329", "target" : "4857", "shared_name" : "2904 (interacts with) 5573", "name" : "2904 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 55414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55410", "source" : "2329", "target" : "1201", "shared_name" : "2904 (interacts with) 805", "name" : "2904 (interacts with) 805", "interaction" : "interacts with", "SUID" : 55410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55406", "source" : "2329", "target" : "993", "shared_name" : "2904 (interacts with) 801", "name" : "2904 (interacts with) 801", "interaction" : "interacts with", "SUID" : 55406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55402", "source" : "2329", "target" : "5029", "shared_name" : "2904 (interacts with) 4842", "name" : "2904 (interacts with) 4842", "interaction" : "interacts with", "SUID" : 55402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55398", "source" : "2329", "target" : "3593", "shared_name" : "2904 (interacts with) 5530", "name" : "2904 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 55398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55394", "source" : "2329", "target" : "1241", "shared_name" : "2904 (interacts with) 808", "name" : "2904 (interacts with) 808", "interaction" : "interacts with", "SUID" : 55394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55390", "source" : "2329", "target" : "997", "shared_name" : "2904 (interacts with) 7431", "name" : "2904 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 55390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55386", "source" : "2329", "target" : "2581", "shared_name" : "2904 (interacts with) 7170", "name" : "2904 (interacts with) 7170", "interaction" : "interacts with", "SUID" : 55386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55382", "source" : "2329", "target" : "5989", "shared_name" : "2904 (interacts with) 7273", "name" : "2904 (interacts with) 7273", "interaction" : "interacts with", "SUID" : 55382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55378", "source" : "2329", "target" : "5785", "shared_name" : "2904 (interacts with) 6857", "name" : "2904 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 55378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55374", "source" : "2329", "target" : "5929", "shared_name" : "2904 (interacts with) 6616", "name" : "2904 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 55374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55370", "source" : "2329", "target" : "609", "shared_name" : "2904 (interacts with) 6812", "name" : "2904 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 55370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55366", "source" : "2329", "target" : "1809", "shared_name" : "2904 (interacts with) 6548", "name" : "2904 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 55366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55362", "source" : "2329", "target" : "309", "shared_name" : "2904 (interacts with) 6536", "name" : "2904 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 55362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55358", "source" : "2329", "target" : "5877", "shared_name" : "2904 (interacts with) 6535", "name" : "2904 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 55358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55354", "source" : "2329", "target" : "2877", "shared_name" : "2904 (interacts with) 340024", "name" : "2904 (interacts with) 340024", "interaction" : "interacts with", "SUID" : 55354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55350", "source" : "2329", "target" : "3781", "shared_name" : "2904 (interacts with) 9152", "name" : "2904 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 55350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55346", "source" : "2329", "target" : "3601", "shared_name" : "2904 (interacts with) 6531", "name" : "2904 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 55346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55342", "source" : "2329", "target" : "401", "shared_name" : "2904 (interacts with) 6532", "name" : "2904 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 55342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55338", "source" : "2329", "target" : "3473", "shared_name" : "2904 (interacts with) 6528", "name" : "2904 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 55338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55334", "source" : "2329", "target" : "1385", "shared_name" : "2904 (interacts with) 6520", "name" : "2904 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 55334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55330", "source" : "2329", "target" : "3077", "shared_name" : "2904 (interacts with) 6506", "name" : "2904 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 55330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55326", "source" : "2329", "target" : "5805", "shared_name" : "2904 (interacts with) 6575", "name" : "2904 (interacts with) 6575", "interaction" : "interacts with", "SUID" : 55326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55322", "source" : "2329", "target" : "4025", "shared_name" : "2904 (interacts with) 284111", "name" : "2904 (interacts with) 284111", "interaction" : "interacts with", "SUID" : 55322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55318", "source" : "2329", "target" : "6009", "shared_name" : "2904 (interacts with) 64849", "name" : "2904 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 55318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55314", "source" : "2329", "target" : "5729", "shared_name" : "2904 (interacts with) 861", "name" : "2904 (interacts with) 861", "interaction" : "interacts with", "SUID" : 55314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55310", "source" : "2329", "target" : "313", "shared_name" : "2904 (interacts with) 5923", "name" : "2904 (interacts with) 5923", "interaction" : "interacts with", "SUID" : 55310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55306", "source" : "2329", "target" : "1069", "shared_name" : "2904 (interacts with) 5879", "name" : "2904 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 55306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55302", "source" : "2329", "target" : "3177", "shared_name" : "2904 (interacts with) 5321", "name" : "2904 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 55302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55298", "source" : "2329", "target" : "2977", "shared_name" : "2904 (interacts with) 4747", "name" : "2904 (interacts with) 4747", "interaction" : "interacts with", "SUID" : 55298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55294", "source" : "2329", "target" : "565", "shared_name" : "2904 (interacts with) 4772", "name" : "2904 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 55294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55290", "source" : "2329", "target" : "4385", "shared_name" : "2904 (interacts with) 3084", "name" : "2904 (interacts with) 3084", "interaction" : "interacts with", "SUID" : 55290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55286", "source" : "2329", "target" : "4209", "shared_name" : "2904 (interacts with) 4915", "name" : "2904 (interacts with) 4915", "interaction" : "interacts with", "SUID" : 55286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55282", "source" : "2329", "target" : "3569", "shared_name" : "2904 (interacts with) 4893", "name" : "2904 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 55282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55278", "source" : "2329", "target" : "1357", "shared_name" : "2904 (interacts with) 58498", "name" : "2904 (interacts with) 58498", "interaction" : "interacts with", "SUID" : 55278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55274", "source" : "2329", "target" : "5453", "shared_name" : "2904 (interacts with) 4204", "name" : "2904 (interacts with) 4204", "interaction" : "interacts with", "SUID" : 55274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55270", "source" : "2329", "target" : "1521", "shared_name" : "2904 (interacts with) 84879", "name" : "2904 (interacts with) 84879", "interaction" : "interacts with", "SUID" : 55270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55266", "source" : "2329", "target" : "3573", "shared_name" : "2904 (interacts with) 3845", "name" : "2904 (interacts with) 3845", "interaction" : "interacts with", "SUID" : 55266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55262", "source" : "2329", "target" : "3685", "shared_name" : "2904 (interacts with) 3265", "name" : "2904 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 55262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55454", "source" : "2325", "target" : "4941", "shared_name" : "55670 (interacts with) 6342", "name" : "55670 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 55454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55450", "source" : "2325", "target" : "5873", "shared_name" : "55670 (interacts with) 5827", "name" : "55670 (interacts with) 5827", "interaction" : "interacts with", "SUID" : 55450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55446", "source" : "2325", "target" : "196", "shared_name" : "55670 (interacts with) 84188", "name" : "55670 (interacts with) 84188", "interaction" : "interacts with", "SUID" : 55446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55442", "source" : "2325", "target" : "4301", "shared_name" : "55670 (interacts with) 8799", "name" : "55670 (interacts with) 8799", "interaction" : "interacts with", "SUID" : 55442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55438", "source" : "2325", "target" : "3341", "shared_name" : "55670 (interacts with) 8504", "name" : "55670 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 55438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55434", "source" : "2325", "target" : "5205", "shared_name" : "55670 (interacts with) 5828", "name" : "55670 (interacts with) 5828", "interaction" : "interacts with", "SUID" : 55434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55430", "source" : "2325", "target" : "3333", "shared_name" : "55670 (interacts with) 9409", "name" : "55670 (interacts with) 9409", "interaction" : "interacts with", "SUID" : 55430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55426", "source" : "2325", "target" : "5237", "shared_name" : "55670 (interacts with) 5830", "name" : "55670 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 55426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55422", "source" : "2325", "target" : "3329", "shared_name" : "55670 (interacts with) 5824", "name" : "55670 (interacts with) 5824", "interaction" : "interacts with", "SUID" : 55422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55418", "source" : "2325", "target" : "1977", "shared_name" : "55670 (interacts with) 5191", "name" : "55670 (interacts with) 5191", "interaction" : "interacts with", "SUID" : 55418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55502", "source" : "2321", "target" : "1013", "shared_name" : "6509 (interacts with) 6898", "name" : "6509 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 55502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55498", "source" : "2321", "target" : "1385", "shared_name" : "6509 (interacts with) 6520", "name" : "6509 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 55498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55494", "source" : "2321", "target" : "1809", "shared_name" : "6509 (interacts with) 6548", "name" : "6509 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 55494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55490", "source" : "2321", "target" : "5877", "shared_name" : "6509 (interacts with) 6535", "name" : "6509 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 55490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55486", "source" : "2321", "target" : "3781", "shared_name" : "6509 (interacts with) 9152", "name" : "6509 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 55486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55482", "source" : "2321", "target" : "401", "shared_name" : "6509 (interacts with) 6532", "name" : "6509 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 55482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55478", "source" : "2321", "target" : "3601", "shared_name" : "6509 (interacts with) 6531", "name" : "6509 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 55478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55474", "source" : "2321", "target" : "3325", "shared_name" : "6509 (interacts with) 9517", "name" : "6509 (interacts with) 9517", "interaction" : "interacts with", "SUID" : 55474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55470", "source" : "2321", "target" : "409", "shared_name" : "6509 (interacts with) 10558", "name" : "6509 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 55470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55466", "source" : "2321", "target" : "3473", "shared_name" : "6509 (interacts with) 6528", "name" : "6509 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 55466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55462", "source" : "2321", "target" : "1885", "shared_name" : "6509 (interacts with) 8604", "name" : "6509 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 55462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55458", "source" : "2321", "target" : "2721", "shared_name" : "6509 (interacts with) 79751", "name" : "6509 (interacts with) 79751", "interaction" : "interacts with", "SUID" : 55458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55550", "source" : "2317", "target" : "3741", "shared_name" : "51412 (interacts with) 51633", "name" : "51412 (interacts with) 51633", "interaction" : "interacts with", "SUID" : 55550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55546", "source" : "2317", "target" : "853", "shared_name" : "51412 (interacts with) 60", "name" : "51412 (interacts with) 60", "interaction" : "interacts with", "SUID" : 55546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55542", "source" : "2317", "target" : "4077", "shared_name" : "51412 (interacts with) 71", "name" : "51412 (interacts with) 71", "interaction" : "interacts with", "SUID" : 55542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55538", "source" : "2317", "target" : "705", "shared_name" : "51412 (interacts with) 728378", "name" : "51412 (interacts with) 728378", "interaction" : "interacts with", "SUID" : 55538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55534", "source" : "2317", "target" : "5869", "shared_name" : "51412 (interacts with) 59", "name" : "51412 (interacts with) 59", "interaction" : "interacts with", "SUID" : 55534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55530", "source" : "2317", "target" : "3069", "shared_name" : "51412 (interacts with) 57492", "name" : "51412 (interacts with) 57492", "interaction" : "interacts with", "SUID" : 55530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55526", "source" : "2317", "target" : "4485", "shared_name" : "51412 (interacts with) 54496", "name" : "51412 (interacts with) 54496", "interaction" : "interacts with", "SUID" : 55526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55522", "source" : "2317", "target" : "3105", "shared_name" : "51412 (interacts with) 8289", "name" : "51412 (interacts with) 8289", "interaction" : "interacts with", "SUID" : 55522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55518", "source" : "2317", "target" : "4629", "shared_name" : "51412 (interacts with) 6605", "name" : "51412 (interacts with) 6605", "interaction" : "interacts with", "SUID" : 55518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55514", "source" : "2317", "target" : "525", "shared_name" : "51412 (interacts with) 6598", "name" : "51412 (interacts with) 6598", "interaction" : "interacts with", "SUID" : 55514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55510", "source" : "2317", "target" : "3093", "shared_name" : "51412 (interacts with) 6597", "name" : "51412 (interacts with) 6597", "interaction" : "interacts with", "SUID" : 55510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55506", "source" : "2317", "target" : "5729", "shared_name" : "51412 (interacts with) 861", "name" : "51412 (interacts with) 861", "interaction" : "interacts with", "SUID" : 55506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55622", "source" : "2309", "target" : "4065", "shared_name" : "3316 (interacts with) 7124", "name" : "3316 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 55622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55618", "source" : "2309", "target" : "3305", "shared_name" : "3316 (interacts with) 7040", "name" : "3316 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 55618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55614", "source" : "2309", "target" : "1069", "shared_name" : "3316 (interacts with) 5879", "name" : "3316 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 55614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55610", "source" : "2309", "target" : "2153", "shared_name" : "3316 (interacts with) 7042", "name" : "3316 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 55610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55606", "source" : "2309", "target" : "3409", "shared_name" : "3316 (interacts with) 7043", "name" : "3316 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 55606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55602", "source" : "2309", "target" : "5965", "shared_name" : "3316 (interacts with) 596", "name" : "3316 (interacts with) 596", "interaction" : "interacts with", "SUID" : 55602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55598", "source" : "2309", "target" : "805", "shared_name" : "3316 (interacts with) 6772", "name" : "3316 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 55598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55594", "source" : "2309", "target" : "1233", "shared_name" : "3316 (interacts with) 355", "name" : "3316 (interacts with) 355", "interaction" : "interacts with", "SUID" : 55594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55590", "source" : "2309", "target" : "1845", "shared_name" : "3316 (interacts with) 836", "name" : "3316 (interacts with) 836", "interaction" : "interacts with", "SUID" : 55590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55586", "source" : "2309", "target" : "3177", "shared_name" : "3316 (interacts with) 5321", "name" : "3316 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 55586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55582", "source" : "2309", "target" : "1405", "shared_name" : "3316 (interacts with) 998", "name" : "3316 (interacts with) 998", "interaction" : "interacts with", "SUID" : 55582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55578", "source" : "2309", "target" : "5013", "shared_name" : "3316 (interacts with) 23411", "name" : "3316 (interacts with) 23411", "interaction" : "interacts with", "SUID" : 55578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55574", "source" : "2309", "target" : "433", "shared_name" : "3316 (interacts with) 8988", "name" : "3316 (interacts with) 8988", "interaction" : "interacts with", "SUID" : 55574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55570", "source" : "2309", "target" : "2369", "shared_name" : "3316 (interacts with) 51741", "name" : "3316 (interacts with) 51741", "interaction" : "interacts with", "SUID" : 55570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55566", "source" : "2309", "target" : "5681", "shared_name" : "3316 (interacts with) 3315", "name" : "3316 (interacts with) 3315", "interaction" : "interacts with", "SUID" : 55566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55562", "source" : "2309", "target" : "1505", "shared_name" : "3316 (interacts with) 26353", "name" : "3316 (interacts with) 26353", "interaction" : "interacts with", "SUID" : 55562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55558", "source" : "2309", "target" : "3245", "shared_name" : "3316 (interacts with) 1760", "name" : "3316 (interacts with) 1760", "interaction" : "interacts with", "SUID" : 55558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55554", "source" : "2309", "target" : "1877", "shared_name" : "3316 (interacts with) 9531", "name" : "3316 (interacts with) 9531", "interaction" : "interacts with", "SUID" : 55554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55642", "source" : "2305", "target" : "3105", "shared_name" : "6908 (interacts with) 8289", "name" : "6908 (interacts with) 8289", "interaction" : "interacts with", "SUID" : 55642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55638", "source" : "2305", "target" : "2673", "shared_name" : "6908 (interacts with) 8841", "name" : "6908 (interacts with) 8841", "interaction" : "interacts with", "SUID" : 55638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55634", "source" : "2305", "target" : "981", "shared_name" : "6908 (interacts with) 7157", "name" : "6908 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 55634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55630", "source" : "2305", "target" : "1817", "shared_name" : "6908 (interacts with) 7343", "name" : "6908 (interacts with) 7343", "interaction" : "interacts with", "SUID" : 55630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55626", "source" : "2305", "target" : "4425", "shared_name" : "6908 (interacts with) 6884", "name" : "6908 (interacts with) 6884", "interaction" : "interacts with", "SUID" : 55626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55650", "source" : "2301", "target" : "4997", "shared_name" : "9342 (interacts with) 54820", "name" : "9342 (interacts with) 54820", "interaction" : "interacts with", "SUID" : 55650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55646", "source" : "2301", "target" : "2229", "shared_name" : "9342 (interacts with) 738", "name" : "9342 (interacts with) 738", "interaction" : "interacts with", "SUID" : 55646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55710", "source" : "2297", "target" : "1129", "shared_name" : "55005 (interacts with) 57505", "name" : "55005 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 55710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55706", "source" : "2297", "target" : "4869", "shared_name" : "55005 (interacts with) 92935", "name" : "55005 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 55706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55702", "source" : "2297", "target" : "1637", "shared_name" : "55005 (interacts with) 91574", "name" : "55005 (interacts with) 91574", "interaction" : "interacts with", "SUID" : 55702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55698", "source" : "2297", "target" : "4757", "shared_name" : "55005 (interacts with) 9997", "name" : "55005 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 55698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55694", "source" : "2297", "target" : "4409", "shared_name" : "55005 (interacts with) 6341", "name" : "55005 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 55694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55690", "source" : "2297", "target" : "2105", "shared_name" : "55005 (interacts with) 56945", "name" : "55005 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 55690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55686", "source" : "2297", "target" : "2009", "shared_name" : "55005 (interacts with) 79133", "name" : "55005 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 55686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55682", "source" : "2297", "target" : "3545", "shared_name" : "55005 (interacts with) 708", "name" : "55005 (interacts with) 708", "interaction" : "interacts with", "SUID" : 55682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55678", "source" : "2297", "target" : "1197", "shared_name" : "55005 (interacts with) 79587", "name" : "55005 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 55678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55674", "source" : "2297", "target" : "6073", "shared_name" : "55005 (interacts with) 92170", "name" : "55005 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 55674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55670", "source" : "2297", "target" : "501", "shared_name" : "55005 (interacts with) 65993", "name" : "55005 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 55670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55666", "source" : "2297", "target" : "4101", "shared_name" : "55005 (interacts with) 65260", "name" : "55005 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 55666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55662", "source" : "2297", "target" : "3973", "shared_name" : "55005 (interacts with) 55572", "name" : "55005 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 55662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55658", "source" : "2297", "target" : "713", "shared_name" : "55005 (interacts with) 7019", "name" : "55005 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 55658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55654", "source" : "2297", "target" : "2477", "shared_name" : "55005 (interacts with) 57107", "name" : "55005 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 55654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55714", "source" : "2293", "target" : "2685", "shared_name" : "56270 (interacts with) 9474", "name" : "56270 (interacts with) 9474", "interaction" : "interacts with", "SUID" : 55714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55730", "source" : "2289", "target" : "5969", "shared_name" : "6905 (interacts with) 10382", "name" : "6905 (interacts with) 10382", "interaction" : "interacts with", "SUID" : 55730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55726", "source" : "2289", "target" : "4105", "shared_name" : "6905 (interacts with) 347733", "name" : "6905 (interacts with) 347733", "interaction" : "interacts with", "SUID" : 55726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55722", "source" : "2289", "target" : "613", "shared_name" : "6905 (interacts with) 10381", "name" : "6905 (interacts with) 10381", "interaction" : "interacts with", "SUID" : 55722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55718", "source" : "2289", "target" : "1721", "shared_name" : "6905 (interacts with) 51807", "name" : "6905 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 55718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55882", "source" : "2285", "target" : "721", "shared_name" : "51300 (interacts with) 79731", "name" : "51300 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 55882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55878", "source" : "2285", "target" : "1053", "shared_name" : "51300 (interacts with) 81689", "name" : "51300 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 55878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55874", "source" : "2285", "target" : "521", "shared_name" : "51300 (interacts with) 85476", "name" : "51300 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 55874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55870", "source" : "2285", "target" : "2021", "shared_name" : "51300 (interacts with) 5428", "name" : "51300 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 55870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55866", "source" : "2285", "target" : "4897", "shared_name" : "51300 (interacts with) 55149", "name" : "51300 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 55866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55862", "source" : "2285", "target" : "1129", "shared_name" : "51300 (interacts with) 57505", "name" : "51300 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 55862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55858", "source" : "2285", "target" : "2565", "shared_name" : "51300 (interacts with) 51501", "name" : "51300 (interacts with) 51501", "interaction" : "interacts with", "SUID" : 55858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55854", "source" : "2285", "target" : "5733", "shared_name" : "51300 (interacts with) 57017", "name" : "51300 (interacts with) 57017", "interaction" : "interacts with", "SUID" : 55854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55850", "source" : "2285", "target" : "5085", "shared_name" : "51300 (interacts with) 56652", "name" : "51300 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 55850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55846", "source" : "2285", "target" : "4773", "shared_name" : "51300 (interacts with) 90624", "name" : "51300 (interacts with) 90624", "interaction" : "interacts with", "SUID" : 55846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55842", "source" : "2285", "target" : "4141", "shared_name" : "51300 (interacts with) 617", "name" : "51300 (interacts with) 617", "interaction" : "interacts with", "SUID" : 55842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55838", "source" : "2285", "target" : "6145", "shared_name" : "51300 (interacts with) 93627", "name" : "51300 (interacts with) 93627", "interaction" : "interacts with", "SUID" : 55838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55834", "source" : "2285", "target" : "6001", "shared_name" : "51300 (interacts with) 55157", "name" : "51300 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 55834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55830", "source" : "2285", "target" : "501", "shared_name" : "51300 (interacts with) 65993", "name" : "51300 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 55830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55826", "source" : "2285", "target" : "6073", "shared_name" : "51300 (interacts with) 92170", "name" : "51300 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 55826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55822", "source" : "2285", "target" : "5737", "shared_name" : "51300 (interacts with) 84340", "name" : "51300 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 55822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55818", "source" : "2285", "target" : "2297", "shared_name" : "51300 (interacts with) 55005", "name" : "51300 (interacts with) 55005", "interaction" : "interacts with", "SUID" : 55818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55814", "source" : "2285", "target" : "4757", "shared_name" : "51300 (interacts with) 9997", "name" : "51300 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 55814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55810", "source" : "2285", "target" : "4621", "shared_name" : "51300 (interacts with) 57038", "name" : "51300 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 55810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55806", "source" : "2285", "target" : "4869", "shared_name" : "51300 (interacts with) 92935", "name" : "51300 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 55806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55802", "source" : "2285", "target" : "1337", "shared_name" : "51300 (interacts with) 55863", "name" : "51300 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 55802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55798", "source" : "2285", "target" : "3545", "shared_name" : "51300 (interacts with) 708", "name" : "51300 (interacts with) 708", "interaction" : "interacts with", "SUID" : 55798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55794", "source" : "2285", "target" : "4409", "shared_name" : "51300 (interacts with) 6341", "name" : "51300 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 55794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55790", "source" : "2285", "target" : "1661", "shared_name" : "51300 (interacts with) 91942", "name" : "51300 (interacts with) 91942", "interaction" : "interacts with", "SUID" : 55790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55786", "source" : "2285", "target" : "5553", "shared_name" : "51300 (interacts with) 55967", "name" : "51300 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 55786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55782", "source" : "2285", "target" : "1197", "shared_name" : "51300 (interacts with) 79587", "name" : "51300 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 55782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55778", "source" : "2285", "target" : "2477", "shared_name" : "51300 (interacts with) 57107", "name" : "51300 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 55778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55774", "source" : "2285", "target" : "713", "shared_name" : "51300 (interacts with) 7019", "name" : "51300 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 55774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55770", "source" : "2285", "target" : "889", "shared_name" : "51300 (interacts with) 80224", "name" : "51300 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 55770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55766", "source" : "2285", "target" : "2009", "shared_name" : "51300 (interacts with) 79133", "name" : "51300 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 55766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55762", "source" : "2285", "target" : "4101", "shared_name" : "51300 (interacts with) 65260", "name" : "51300 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 55762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55758", "source" : "2285", "target" : "3973", "shared_name" : "51300 (interacts with) 55572", "name" : "51300 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 55758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55754", "source" : "2285", "target" : "1113", "shared_name" : "51300 (interacts with) 10134", "name" : "51300 (interacts with) 10134", "interaction" : "interacts with", "SUID" : 55754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55750", "source" : "2285", "target" : "1109", "shared_name" : "51300 (interacts with) 3440", "name" : "51300 (interacts with) 3440", "interaction" : "interacts with", "SUID" : 55750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55746", "source" : "2285", "target" : "3725", "shared_name" : "51300 (interacts with) 10159", "name" : "51300 (interacts with) 10159", "interaction" : "interacts with", "SUID" : 55746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55742", "source" : "2285", "target" : "5237", "shared_name" : "51300 (interacts with) 5830", "name" : "51300 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 55742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55738", "source" : "2285", "target" : "2337", "shared_name" : "51300 (interacts with) 28976", "name" : "51300 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 55738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55734", "source" : "2285", "target" : "2109", "shared_name" : "51300 (interacts with) 51103", "name" : "51300 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 55734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55902", "source" : "2281", "target" : "3769", "shared_name" : "79823 (interacts with) 8085", "name" : "79823 (interacts with) 8085", "interaction" : "interacts with", "SUID" : 55902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55898", "source" : "2281", "target" : "2457", "shared_name" : "79823 (interacts with) 4143", "name" : "79823 (interacts with) 4143", "interaction" : "interacts with", "SUID" : 55898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55894", "source" : "2281", "target" : "3709", "shared_name" : "79823 (interacts with) 9757", "name" : "79823 (interacts with) 9757", "interaction" : "interacts with", "SUID" : 55894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55890", "source" : "2281", "target" : "2405", "shared_name" : "79823 (interacts with) 3658", "name" : "79823 (interacts with) 3658", "interaction" : "interacts with", "SUID" : 55890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55886", "source" : "2281", "target" : "3201", "shared_name" : "79823 (interacts with) 1277", "name" : "79823 (interacts with) 1277", "interaction" : "interacts with", "SUID" : 55886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55922", "source" : "2277", "target" : "6025", "shared_name" : "686 (interacts with) 80704", "name" : "686 (interacts with) 80704", "interaction" : "interacts with", "SUID" : 55922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55918", "source" : "2277", "target" : "653", "shared_name" : "686 (interacts with) 6948", "name" : "686 (interacts with) 6948", "interaction" : "interacts with", "SUID" : 55918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55914", "source" : "2277", "target" : "6157", "shared_name" : "686 (interacts with) 3735", "name" : "686 (interacts with) 3735", "interaction" : "interacts with", "SUID" : 55914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55910", "source" : "2277", "target" : "2097", "shared_name" : "686 (interacts with) 10166", "name" : "686 (interacts with) 10166", "interaction" : "interacts with", "SUID" : 55910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55906", "source" : "2277", "target" : "1385", "shared_name" : "686 (interacts with) 6520", "name" : "686 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 55906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55926", "source" : "2273", "target" : "697", "shared_name" : "9244 (interacts with) 55768", "name" : "9244 (interacts with) 55768", "interaction" : "interacts with", "SUID" : 55926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55938", "source" : "2269", "target" : "3077", "shared_name" : "10300 (interacts with) 6506", "name" : "10300 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 55938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55934", "source" : "2269", "target" : "2321", "shared_name" : "10300 (interacts with) 6509", "name" : "10300 (interacts with) 6509", "interaction" : "interacts with", "SUID" : 55934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55930", "source" : "2269", "target" : "5649", "shared_name" : "10300 (interacts with) 5265", "name" : "10300 (interacts with) 5265", "interaction" : "interacts with", "SUID" : 55930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55946", "source" : "2265", "target" : "3693", "shared_name" : "11342 (interacts with) 8943", "name" : "11342 (interacts with) 8943", "interaction" : "interacts with", "SUID" : 55946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55942", "source" : "2265", "target" : "4673", "shared_name" : "11342 (interacts with) 1186", "name" : "11342 (interacts with) 1186", "interaction" : "interacts with", "SUID" : 55942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56010", "source" : "2261", "target" : "4249", "shared_name" : "1161 (interacts with) 4331", "name" : "1161 (interacts with) 4331", "interaction" : "interacts with", "SUID" : 56010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56006", "source" : "2261", "target" : "913", "shared_name" : "1161 (interacts with) 404672", "name" : "1161 (interacts with) 404672", "interaction" : "interacts with", "SUID" : 56006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56002", "source" : "2261", "target" : "505", "shared_name" : "1161 (interacts with) 2071", "name" : "1161 (interacts with) 2071", "interaction" : "interacts with", "SUID" : 56002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55998", "source" : "2261", "target" : "4177", "shared_name" : "1161 (interacts with) 2068", "name" : "1161 (interacts with) 2068", "interaction" : "interacts with", "SUID" : 55998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55994", "source" : "2261", "target" : "2921", "shared_name" : "1161 (interacts with) 5981", "name" : "1161 (interacts with) 5981", "interaction" : "interacts with", "SUID" : 55994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55990", "source" : "2261", "target" : "1709", "shared_name" : "1161 (interacts with) 2074", "name" : "1161 (interacts with) 2074", "interaction" : "interacts with", "SUID" : 55990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55986", "source" : "2261", "target" : "1793", "shared_name" : "1161 (interacts with) 7515", "name" : "1161 (interacts with) 7515", "interaction" : "interacts with", "SUID" : 55986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55982", "source" : "2261", "target" : "4037", "shared_name" : "1161 (interacts with) 2073", "name" : "1161 (interacts with) 2073", "interaction" : "interacts with", "SUID" : 55982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55978", "source" : "2261", "target" : "481", "shared_name" : "1161 (interacts with) 7507", "name" : "1161 (interacts with) 7507", "interaction" : "interacts with", "SUID" : 55978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55974", "source" : "2261", "target" : "5197", "shared_name" : "1161 (interacts with) 7156", "name" : "1161 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 55974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55970", "source" : "2261", "target" : "5861", "shared_name" : "1161 (interacts with) 5435", "name" : "1161 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 55970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55966", "source" : "2261", "target" : "2649", "shared_name" : "1161 (interacts with) 5430", "name" : "1161 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 55966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55962", "source" : "2261", "target" : "2529", "shared_name" : "1161 (interacts with) 5424", "name" : "1161 (interacts with) 5424", "interaction" : "interacts with", "SUID" : 55962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55958", "source" : "2261", "target" : "1729", "shared_name" : "1161 (interacts with) 5111", "name" : "1161 (interacts with) 5111", "interaction" : "interacts with", "SUID" : 55958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55954", "source" : "2261", "target" : "3933", "shared_name" : "1161 (interacts with) 10524", "name" : "1161 (interacts with) 10524", "interaction" : "interacts with", "SUID" : 55954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "55950", "source" : "2261", "target" : "1937", "shared_name" : "1161 (interacts with) 2965", "name" : "1161 (interacts with) 2965", "interaction" : "interacts with", "SUID" : 55950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56026", "source" : "2257", "target" : "661", "shared_name" : "22943 (interacts with) 6657", "name" : "22943 (interacts with) 6657", "interaction" : "interacts with", "SUID" : 56026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56022", "source" : "2257", "target" : "5745", "shared_name" : "22943 (interacts with) 7471", "name" : "22943 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 56022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56018", "source" : "2257", "target" : "5113", "shared_name" : "22943 (interacts with) 7084", "name" : "22943 (interacts with) 7084", "interaction" : "interacts with", "SUID" : 56018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56014", "source" : "2257", "target" : "1745", "shared_name" : "22943 (interacts with) 129831", "name" : "22943 (interacts with) 129831", "interaction" : "interacts with", "SUID" : 56014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56038", "source" : "2253", "target" : "4949", "shared_name" : "253738 (interacts with) 5970", "name" : "253738 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 56038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56034", "source" : "2253", "target" : "565", "shared_name" : "253738 (interacts with) 4772", "name" : "253738 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 56034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56030", "source" : "2253", "target" : "5341", "shared_name" : "253738 (interacts with) 91647", "name" : "253738 (interacts with) 91647", "interaction" : "interacts with", "SUID" : 56030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56170", "source" : "2249", "target" : "2757", "shared_name" : "25824 (interacts with) 51079", "name" : "25824 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 56170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56166", "source" : "2249", "target" : "5201", "shared_name" : "25824 (interacts with) 353", "name" : "25824 (interacts with) 353", "interaction" : "interacts with", "SUID" : 56166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56162", "source" : "2249", "target" : "4353", "shared_name" : "25824 (interacts with) 9512", "name" : "25824 (interacts with) 9512", "interaction" : "interacts with", "SUID" : 56162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56158", "source" : "2249", "target" : "4729", "shared_name" : "25824 (interacts with) 5216", "name" : "25824 (interacts with) 5216", "interaction" : "interacts with", "SUID" : 56158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56154", "source" : "2249", "target" : "4941", "shared_name" : "25824 (interacts with) 6342", "name" : "25824 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 56154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56150", "source" : "2249", "target" : "1133", "shared_name" : "25824 (interacts with) 3418", "name" : "25824 (interacts with) 3418", "interaction" : "interacts with", "SUID" : 56150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56146", "source" : "2249", "target" : "573", "shared_name" : "25824 (interacts with) 3155", "name" : "25824 (interacts with) 3155", "interaction" : "interacts with", "SUID" : 56146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56142", "source" : "2249", "target" : "1969", "shared_name" : "25824 (interacts with) 4598", "name" : "25824 (interacts with) 4598", "interaction" : "interacts with", "SUID" : 56142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56138", "source" : "2249", "target" : "1525", "shared_name" : "25824 (interacts with) 3295", "name" : "25824 (interacts with) 3295", "interaction" : "interacts with", "SUID" : 56138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56134", "source" : "2249", "target" : "5677", "shared_name" : "25824 (interacts with) 5189", "name" : "25824 (interacts with) 5189", "interaction" : "interacts with", "SUID" : 56134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56130", "source" : "2249", "target" : "845", "shared_name" : "25824 (interacts with) 4358", "name" : "25824 (interacts with) 4358", "interaction" : "interacts with", "SUID" : 56130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56126", "source" : "2249", "target" : "4297", "shared_name" : "25824 (interacts with) 5193", "name" : "25824 (interacts with) 5193", "interaction" : "interacts with", "SUID" : 56126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56122", "source" : "2249", "target" : "5865", "shared_name" : "25824 (interacts with) 5192", "name" : "25824 (interacts with) 5192", "interaction" : "interacts with", "SUID" : 56122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56118", "source" : "2249", "target" : "1977", "shared_name" : "25824 (interacts with) 5191", "name" : "25824 (interacts with) 5191", "interaction" : "interacts with", "SUID" : 56118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56114", "source" : "2249", "target" : "4505", "shared_name" : "25824 (interacts with) 5190", "name" : "25824 (interacts with) 5190", "interaction" : "interacts with", "SUID" : 56114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56110", "source" : "2249", "target" : "2353", "shared_name" : "25824 (interacts with) 5264", "name" : "25824 (interacts with) 5264", "interaction" : "interacts with", "SUID" : 56110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56106", "source" : "2249", "target" : "5545", "shared_name" : "25824 (interacts with) 5195", "name" : "25824 (interacts with) 5195", "interaction" : "interacts with", "SUID" : 56106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56102", "source" : "2249", "target" : "1953", "shared_name" : "25824 (interacts with) 5194", "name" : "25824 (interacts with) 5194", "interaction" : "interacts with", "SUID" : 56102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56098", "source" : "2249", "target" : "5873", "shared_name" : "25824 (interacts with) 5827", "name" : "25824 (interacts with) 5827", "interaction" : "interacts with", "SUID" : 56098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56094", "source" : "2249", "target" : "3329", "shared_name" : "25824 (interacts with) 5824", "name" : "25824 (interacts with) 5824", "interaction" : "interacts with", "SUID" : 56094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56090", "source" : "2249", "target" : "2325", "shared_name" : "25824 (interacts with) 55670", "name" : "25824 (interacts with) 55670", "interaction" : "interacts with", "SUID" : 56090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56086", "source" : "2249", "target" : "196", "shared_name" : "25824 (interacts with) 84188", "name" : "25824 (interacts with) 84188", "interaction" : "interacts with", "SUID" : 56086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56082", "source" : "2249", "target" : "5237", "shared_name" : "25824 (interacts with) 5830", "name" : "25824 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 56082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56078", "source" : "2249", "target" : "5205", "shared_name" : "25824 (interacts with) 5828", "name" : "25824 (interacts with) 5828", "interaction" : "interacts with", "SUID" : 56078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56074", "source" : "2249", "target" : "4301", "shared_name" : "25824 (interacts with) 8799", "name" : "25824 (interacts with) 8799", "interaction" : "interacts with", "SUID" : 56074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56070", "source" : "2249", "target" : "3341", "shared_name" : "25824 (interacts with) 8504", "name" : "25824 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 56070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56066", "source" : "2249", "target" : "1253", "shared_name" : "25824 (interacts with) 2876", "name" : "25824 (interacts with) 2876", "interaction" : "interacts with", "SUID" : 56066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56062", "source" : "2249", "target" : "1605", "shared_name" : "25824 (interacts with) 6648", "name" : "25824 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 56062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56058", "source" : "2249", "target" : "3333", "shared_name" : "25824 (interacts with) 9409", "name" : "25824 (interacts with) 9409", "interaction" : "interacts with", "SUID" : 56058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56054", "source" : "2249", "target" : "3065", "shared_name" : "25824 (interacts with) 25828", "name" : "25824 (interacts with) 25828", "interaction" : "interacts with", "SUID" : 56054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56050", "source" : "2249", "target" : "4889", "shared_name" : "25824 (interacts with) 7295", "name" : "25824 (interacts with) 7295", "interaction" : "interacts with", "SUID" : 56050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56046", "source" : "2249", "target" : "517", "shared_name" : "25824 (interacts with) 5052", "name" : "25824 (interacts with) 5052", "interaction" : "interacts with", "SUID" : 56046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56042", "source" : "2249", "target" : "2901", "shared_name" : "25824 (interacts with) 6647", "name" : "25824 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 56042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56198", "source" : "2245", "target" : "2893", "shared_name" : "5587 (interacts with) 79152", "name" : "5587 (interacts with) 79152", "interaction" : "interacts with", "SUID" : 56198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56194", "source" : "2245", "target" : "3325", "shared_name" : "5587 (interacts with) 9517", "name" : "5587 (interacts with) 9517", "interaction" : "interacts with", "SUID" : 56194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56190", "source" : "2245", "target" : "6041", "shared_name" : "5587 (interacts with) 9217", "name" : "5587 (interacts with) 9217", "interaction" : "interacts with", "SUID" : 56190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56186", "source" : "2245", "target" : "4565", "shared_name" : "5587 (interacts with) 57498", "name" : "5587 (interacts with) 57498", "interaction" : "interacts with", "SUID" : 56186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56182", "source" : "2245", "target" : "1841", "shared_name" : "5587 (interacts with) 51651", "name" : "5587 (interacts with) 51651", "interaction" : "interacts with", "SUID" : 56182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56178", "source" : "2245", "target" : "5669", "shared_name" : "5587 (interacts with) 10087", "name" : "5587 (interacts with) 10087", "interaction" : "interacts with", "SUID" : 56178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56174", "source" : "2245", "target" : "5185", "shared_name" : "5587 (interacts with) 1499", "name" : "5587 (interacts with) 1499", "interaction" : "interacts with", "SUID" : 56174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56254", "source" : "2241", "target" : "853", "shared_name" : "3043 (interacts with) 60", "name" : "3043 (interacts with) 60", "interaction" : "interacts with", "SUID" : 56254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56250", "source" : "2241", "target" : "6149", "shared_name" : "3043 (interacts with) 335", "name" : "3043 (interacts with) 335", "interaction" : "interacts with", "SUID" : 56250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56246", "source" : "2241", "target" : "6185", "shared_name" : "3043 (interacts with) 4035", "name" : "3043 (interacts with) 4035", "interaction" : "interacts with", "SUID" : 56246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56242", "source" : "2241", "target" : "6089", "shared_name" : "3043 (interacts with) 3145", "name" : "3043 (interacts with) 3145", "interaction" : "interacts with", "SUID" : 56242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56238", "source" : "2241", "target" : "1553", "shared_name" : "3043 (interacts with) 410", "name" : "3043 (interacts with) 410", "interaction" : "interacts with", "SUID" : 56238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56234", "source" : "2241", "target" : "5217", "shared_name" : "3043 (interacts with) 54902", "name" : "3043 (interacts with) 54902", "interaction" : "interacts with", "SUID" : 56234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56230", "source" : "2241", "target" : "937", "shared_name" : "3043 (interacts with) 2110", "name" : "3043 (interacts with) 2110", "interaction" : "interacts with", "SUID" : 56230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56226", "source" : "2241", "target" : "5409", "shared_name" : "3043 (interacts with) 9734", "name" : "3043 (interacts with) 9734", "interaction" : "interacts with", "SUID" : 56226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56222", "source" : "2241", "target" : "513", "shared_name" : "3043 (interacts with) 348980", "name" : "3043 (interacts with) 348980", "interaction" : "interacts with", "SUID" : 56222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56218", "source" : "2241", "target" : "1933", "shared_name" : "3043 (interacts with) 7335", "name" : "3043 (interacts with) 7335", "interaction" : "interacts with", "SUID" : 56218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56214", "source" : "2241", "target" : "2865", "shared_name" : "3043 (interacts with) 175", "name" : "3043 (interacts with) 175", "interaction" : "interacts with", "SUID" : 56214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56210", "source" : "2241", "target" : "2009", "shared_name" : "3043 (interacts with) 79133", "name" : "3043 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 56210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56206", "source" : "2241", "target" : "5457", "shared_name" : "3043 (interacts with) 9440", "name" : "3043 (interacts with) 9440", "interaction" : "interacts with", "SUID" : 56206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56202", "source" : "2241", "target" : "2809", "shared_name" : "3043 (interacts with) 11284", "name" : "3043 (interacts with) 11284", "interaction" : "interacts with", "SUID" : 56202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56302", "source" : "2237", "target" : "2153", "shared_name" : "10516 (interacts with) 7042", "name" : "10516 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 56302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56298", "source" : "2237", "target" : "2501", "shared_name" : "10516 (interacts with) 7448", "name" : "10516 (interacts with) 7448", "interaction" : "interacts with", "SUID" : 56298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56294", "source" : "2237", "target" : "3409", "shared_name" : "10516 (interacts with) 7043", "name" : "10516 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 56294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56290", "source" : "2237", "target" : "3133", "shared_name" : "10516 (interacts with) 2006", "name" : "10516 (interacts with) 2006", "interaction" : "interacts with", "SUID" : 56290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56286", "source" : "2237", "target" : "1789", "shared_name" : "10516 (interacts with) 652", "name" : "10516 (interacts with) 652", "interaction" : "interacts with", "SUID" : 56286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56282", "source" : "2237", "target" : "3069", "shared_name" : "10516 (interacts with) 57492", "name" : "10516 (interacts with) 57492", "interaction" : "interacts with", "SUID" : 56282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56278", "source" : "2237", "target" : "3365", "shared_name" : "10516 (interacts with) 29843", "name" : "10516 (interacts with) 29843", "interaction" : "interacts with", "SUID" : 56278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56274", "source" : "2237", "target" : "2193", "shared_name" : "10516 (interacts with) 4052", "name" : "10516 (interacts with) 4052", "interaction" : "interacts with", "SUID" : 56274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56270", "source" : "2237", "target" : "2133", "shared_name" : "10516 (interacts with) 1859", "name" : "10516 (interacts with) 1859", "interaction" : "interacts with", "SUID" : 56270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56266", "source" : "2237", "target" : "5621", "shared_name" : "10516 (interacts with) 25885", "name" : "10516 (interacts with) 25885", "interaction" : "interacts with", "SUID" : 56266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56262", "source" : "2237", "target" : "941", "shared_name" : "10516 (interacts with) 648", "name" : "10516 (interacts with) 648", "interaction" : "interacts with", "SUID" : 56262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56258", "source" : "2237", "target" : "5765", "shared_name" : "10516 (interacts with) 2290", "name" : "10516 (interacts with) 2290", "interaction" : "interacts with", "SUID" : 56258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56322", "source" : "2233", "target" : "6121", "shared_name" : "9516 (interacts with) 2260", "name" : "9516 (interacts with) 2260", "interaction" : "interacts with", "SUID" : 56322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56318", "source" : "2233", "target" : "6129", "shared_name" : "9516 (interacts with) 2263", "name" : "9516 (interacts with) 2263", "interaction" : "interacts with", "SUID" : 56318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56314", "source" : "2233", "target" : "2369", "shared_name" : "9516 (interacts with) 51741", "name" : "9516 (interacts with) 51741", "interaction" : "interacts with", "SUID" : 56314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56310", "source" : "2233", "target" : "1309", "shared_name" : "9516 (interacts with) 9698", "name" : "9516 (interacts with) 9698", "interaction" : "interacts with", "SUID" : 56310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56306", "source" : "2233", "target" : "4141", "shared_name" : "9516 (interacts with) 617", "name" : "9516 (interacts with) 617", "interaction" : "interacts with", "SUID" : 56306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56330", "source" : "2229", "target" : "3301", "shared_name" : "738 (interacts with) 91949", "name" : "738 (interacts with) 91949", "interaction" : "interacts with", "SUID" : 56330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56326", "source" : "2229", "target" : "4325", "shared_name" : "738 (interacts with) 55275", "name" : "738 (interacts with) 55275", "interaction" : "interacts with", "SUID" : 56326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56366", "source" : "2225", "target" : "1261", "shared_name" : "4864 (interacts with) 57192", "name" : "4864 (interacts with) 57192", "interaction" : "interacts with", "SUID" : 56366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56362", "source" : "2225", "target" : "1193", "shared_name" : "4864 (interacts with) 5660", "name" : "4864 (interacts with) 5660", "interaction" : "interacts with", "SUID" : 56362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56358", "source" : "2225", "target" : "5937", "shared_name" : "4864 (interacts with) 8120", "name" : "4864 (interacts with) 8120", "interaction" : "interacts with", "SUID" : 56358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56354", "source" : "2225", "target" : "1677", "shared_name" : "4864 (interacts with) 8905", "name" : "4864 (interacts with) 8905", "interaction" : "interacts with", "SUID" : 56354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56350", "source" : "2225", "target" : "3693", "shared_name" : "4864 (interacts with) 8943", "name" : "4864 (interacts with) 8943", "interaction" : "interacts with", "SUID" : 56350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56346", "source" : "2225", "target" : "1445", "shared_name" : "4864 (interacts with) 9179", "name" : "4864 (interacts with) 9179", "interaction" : "interacts with", "SUID" : 56346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56342", "source" : "2225", "target" : "2233", "shared_name" : "4864 (interacts with) 9516", "name" : "4864 (interacts with) 9516", "interaction" : "interacts with", "SUID" : 56342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56338", "source" : "2225", "target" : "4393", "shared_name" : "4864 (interacts with) 950", "name" : "4864 (interacts with) 950", "interaction" : "interacts with", "SUID" : 56338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56334", "source" : "2225", "target" : "681", "shared_name" : "4864 (interacts with) 6646", "name" : "4864 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 56334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56418", "source" : "2221", "target" : "5497", "shared_name" : "26580 (interacts with) 91137", "name" : "26580 (interacts with) 91137", "interaction" : "interacts with", "SUID" : 56418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56414", "source" : "2221", "target" : "2669", "shared_name" : "26580 (interacts with) 9197", "name" : "26580 (interacts with) 9197", "interaction" : "interacts with", "SUID" : 56414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56410", "source" : "2221", "target" : "4125", "shared_name" : "26580 (interacts with) 51360", "name" : "26580 (interacts with) 51360", "interaction" : "interacts with", "SUID" : 56410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56406", "source" : "2221", "target" : "3325", "shared_name" : "26580 (interacts with) 9517", "name" : "26580 (interacts with) 9517", "interaction" : "interacts with", "SUID" : 56406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56402", "source" : "2221", "target" : "4625", "shared_name" : "26580 (interacts with) 6785", "name" : "26580 (interacts with) 6785", "interaction" : "interacts with", "SUID" : 56402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56398", "source" : "2221", "target" : "5961", "shared_name" : "26580 (interacts with) 10682", "name" : "26580 (interacts with) 10682", "interaction" : "interacts with", "SUID" : 56398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56394", "source" : "2221", "target" : "2373", "shared_name" : "26580 (interacts with) 64801", "name" : "26580 (interacts with) 64801", "interaction" : "interacts with", "SUID" : 56394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56390", "source" : "2221", "target" : "3333", "shared_name" : "26580 (interacts with) 9409", "name" : "26580 (interacts with) 9409", "interaction" : "interacts with", "SUID" : 56390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56386", "source" : "2221", "target" : "2013", "shared_name" : "26580 (interacts with) 128486", "name" : "26580 (interacts with) 128486", "interaction" : "interacts with", "SUID" : 56386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56382", "source" : "2221", "target" : "4821", "shared_name" : "26580 (interacts with) 28982", "name" : "26580 (interacts with) 28982", "interaction" : "interacts with", "SUID" : 56382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56378", "source" : "2221", "target" : "1153", "shared_name" : "26580 (interacts with) 116150", "name" : "26580 (interacts with) 116150", "interaction" : "interacts with", "SUID" : 56378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56374", "source" : "2221", "target" : "4153", "shared_name" : "26580 (interacts with) 2566", "name" : "26580 (interacts with) 2566", "interaction" : "interacts with", "SUID" : 56374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56370", "source" : "2221", "target" : "3373", "shared_name" : "26580 (interacts with) 2530", "name" : "26580 (interacts with) 2530", "interaction" : "interacts with", "SUID" : 56370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56490", "source" : "2213", "target" : "2433", "shared_name" : "4851 (interacts with) 6927", "name" : "4851 (interacts with) 6927", "interaction" : "interacts with", "SUID" : 56490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56486", "source" : "2213", "target" : "5409", "shared_name" : "4851 (interacts with) 9734", "name" : "4851 (interacts with) 9734", "interaction" : "interacts with", "SUID" : 56486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56482", "source" : "2213", "target" : "5745", "shared_name" : "4851 (interacts with) 7471", "name" : "4851 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 56482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56478", "source" : "2213", "target" : "3041", "shared_name" : "4851 (interacts with) 5663", "name" : "4851 (interacts with) 5663", "interaction" : "interacts with", "SUID" : 56478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56474", "source" : "2213", "target" : "4345", "shared_name" : "4851 (interacts with) 4854", "name" : "4851 (interacts with) 4854", "interaction" : "interacts with", "SUID" : 56474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56470", "source" : "2213", "target" : "2333", "shared_name" : "4851 (interacts with) 3559", "name" : "4851 (interacts with) 3559", "interaction" : "interacts with", "SUID" : 56470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56466", "source" : "2213", "target" : "5801", "shared_name" : "4851 (interacts with) 960", "name" : "4851 (interacts with) 960", "interaction" : "interacts with", "SUID" : 56466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56462", "source" : "2213", "target" : "4829", "shared_name" : "4851 (interacts with) 64919", "name" : "4851 (interacts with) 64919", "interaction" : "interacts with", "SUID" : 56462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56458", "source" : "2213", "target" : "5769", "shared_name" : "4851 (interacts with) 5081", "name" : "4851 (interacts with) 5081", "interaction" : "interacts with", "SUID" : 56458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56454", "source" : "2213", "target" : "5157", "shared_name" : "4851 (interacts with) 1600", "name" : "4851 (interacts with) 1600", "interaction" : "interacts with", "SUID" : 56454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56450", "source" : "2213", "target" : "3017", "shared_name" : "4851 (interacts with) 4790", "name" : "4851 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 56450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56446", "source" : "2213", "target" : "5965", "shared_name" : "4851 (interacts with) 596", "name" : "4851 (interacts with) 596", "interaction" : "interacts with", "SUID" : 56446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56442", "source" : "2213", "target" : "2081", "shared_name" : "4851 (interacts with) 5468", "name" : "4851 (interacts with) 5468", "interaction" : "interacts with", "SUID" : 56442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56438", "source" : "2213", "target" : "5185", "shared_name" : "4851 (interacts with) 1499", "name" : "4851 (interacts with) 1499", "interaction" : "interacts with", "SUID" : 56438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56434", "source" : "2213", "target" : "6169", "shared_name" : "4851 (interacts with) 4088", "name" : "4851 (interacts with) 4088", "interaction" : "interacts with", "SUID" : 56434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56430", "source" : "2213", "target" : "3933", "shared_name" : "4851 (interacts with) 10524", "name" : "4851 (interacts with) 10524", "interaction" : "interacts with", "SUID" : 56430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56426", "source" : "2213", "target" : "5749", "shared_name" : "4851 (interacts with) 10959", "name" : "4851 (interacts with) 10959", "interaction" : "interacts with", "SUID" : 56426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56422", "source" : "2213", "target" : "2905", "shared_name" : "4851 (interacts with) 5664", "name" : "4851 (interacts with) 5664", "interaction" : "interacts with", "SUID" : 56422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56506", "source" : "2209", "target" : "4797", "shared_name" : "2354 (interacts with) 10735", "name" : "2354 (interacts with) 10735", "interaction" : "interacts with", "SUID" : 56506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56502", "source" : "2209", "target" : "4497", "shared_name" : "2354 (interacts with) 8243", "name" : "2354 (interacts with) 8243", "interaction" : "interacts with", "SUID" : 56502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56498", "source" : "2209", "target" : "2909", "shared_name" : "2354 (interacts with) 23126", "name" : "2354 (interacts with) 23126", "interaction" : "interacts with", "SUID" : 56498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56494", "source" : "2209", "target" : "2025", "shared_name" : "2354 (interacts with) 549", "name" : "2354 (interacts with) 549", "interaction" : "interacts with", "SUID" : 56494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56594", "source" : "2205", "target" : "4253", "shared_name" : "2571 (interacts with) 84706", "name" : "2571 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 56594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56590", "source" : "2205", "target" : "5529", "shared_name" : "2571 (interacts with) 2875", "name" : "2571 (interacts with) 2875", "interaction" : "interacts with", "SUID" : 56590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56586", "source" : "2205", "target" : "1189", "shared_name" : "2571 (interacts with) 7915", "name" : "2571 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 56586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56582", "source" : "2205", "target" : "5349", "shared_name" : "2571 (interacts with) 440", "name" : "2571 (interacts with) 440", "interaction" : "interacts with", "SUID" : 56582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56578", "source" : "2205", "target" : "1981", "shared_name" : "2571 (interacts with) 339983", "name" : "2571 (interacts with) 339983", "interaction" : "interacts with", "SUID" : 56578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56574", "source" : "2205", "target" : "5785", "shared_name" : "2571 (interacts with) 6857", "name" : "2571 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 56574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56570", "source" : "2205", "target" : "5929", "shared_name" : "2571 (interacts with) 6616", "name" : "2571 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 56570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56566", "source" : "2205", "target" : "977", "shared_name" : "2571 (interacts with) 79944", "name" : "2571 (interacts with) 79944", "interaction" : "interacts with", "SUID" : 56566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56562", "source" : "2205", "target" : "609", "shared_name" : "2571 (interacts with) 6812", "name" : "2571 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 56562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56558", "source" : "2205", "target" : "461", "shared_name" : "2571 (interacts with) 5198", "name" : "2571 (interacts with) 5198", "interaction" : "interacts with", "SUID" : 56558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56554", "source" : "2205", "target" : "4185", "shared_name" : "2571 (interacts with) 29968", "name" : "2571 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 56554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56550", "source" : "2205", "target" : "1013", "shared_name" : "2571 (interacts with) 6898", "name" : "2571 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 56550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56546", "source" : "2205", "target" : "413", "shared_name" : "2571 (interacts with) 51733", "name" : "2571 (interacts with) 51733", "interaction" : "interacts with", "SUID" : 56546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56542", "source" : "2205", "target" : "4093", "shared_name" : "2571 (interacts with) 2752", "name" : "2571 (interacts with) 2752", "interaction" : "interacts with", "SUID" : 56542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56538", "source" : "2205", "target" : "2421", "shared_name" : "2571 (interacts with) 2673", "name" : "2571 (interacts with) 2673", "interaction" : "interacts with", "SUID" : 56538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56534", "source" : "2205", "target" : "4189", "shared_name" : "2571 (interacts with) 2744", "name" : "2571 (interacts with) 2744", "interaction" : "interacts with", "SUID" : 56534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56530", "source" : "2205", "target" : "3077", "shared_name" : "2571 (interacts with) 6506", "name" : "2571 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 56530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56526", "source" : "2205", "target" : "2721", "shared_name" : "2571 (interacts with) 79751", "name" : "2571 (interacts with) 79751", "interaction" : "interacts with", "SUID" : 56526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56522", "source" : "2205", "target" : "1849", "shared_name" : "2571 (interacts with) 26275", "name" : "2571 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 56522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56518", "source" : "2205", "target" : "2321", "shared_name" : "2571 (interacts with) 6509", "name" : "2571 (interacts with) 6509", "interaction" : "interacts with", "SUID" : 56518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56514", "source" : "2205", "target" : "1885", "shared_name" : "2571 (interacts with) 8604", "name" : "2571 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 56514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56510", "source" : "2205", "target" : "6121", "shared_name" : "2571 (interacts with) 2260", "name" : "2571 (interacts with) 2260", "interaction" : "interacts with", "SUID" : 56510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56622", "source" : "2197", "target" : "1973", "shared_name" : "4684 (interacts with) 6709", "name" : "4684 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 56622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56618", "source" : "2197", "target" : "3805", "shared_name" : "4684 (interacts with) 5621", "name" : "4684 (interacts with) 5621", "interaction" : "interacts with", "SUID" : 56618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56614", "source" : "2197", "target" : "4257", "shared_name" : "4684 (interacts with) 8573", "name" : "4684 (interacts with) 8573", "interaction" : "interacts with", "SUID" : 56614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56610", "source" : "2197", "target" : "637", "shared_name" : "4684 (interacts with) 6654", "name" : "4684 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 56610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56606", "source" : "2197", "target" : "1633", "shared_name" : "4684 (interacts with) 57731", "name" : "4684 (interacts with) 57731", "interaction" : "interacts with", "SUID" : 56606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56602", "source" : "2197", "target" : "3637", "shared_name" : "4684 (interacts with) 6712", "name" : "4684 (interacts with) 6712", "interaction" : "interacts with", "SUID" : 56602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56598", "source" : "2197", "target" : "3569", "shared_name" : "4684 (interacts with) 4893", "name" : "4684 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 56598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56646", "source" : "2193", "target" : "1765", "shared_name" : "4052 (interacts with) 5308", "name" : "4052 (interacts with) 5308", "interaction" : "interacts with", "SUID" : 56646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56642", "source" : "2193", "target" : "2501", "shared_name" : "4052 (interacts with) 7448", "name" : "4052 (interacts with) 7448", "interaction" : "interacts with", "SUID" : 56642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56638", "source" : "2193", "target" : "3409", "shared_name" : "4052 (interacts with) 7043", "name" : "4052 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 56638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56634", "source" : "2193", "target" : "2153", "shared_name" : "4052 (interacts with) 7042", "name" : "4052 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 56634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56630", "source" : "2193", "target" : "1789", "shared_name" : "4052 (interacts with) 652", "name" : "4052 (interacts with) 652", "interaction" : "interacts with", "SUID" : 56630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56626", "source" : "2193", "target" : "3305", "shared_name" : "4052 (interacts with) 7040", "name" : "4052 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 56626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56650", "source" : "2185", "target" : "5757", "shared_name" : "1636 (interacts with) 4311", "name" : "1636 (interacts with) 4311", "interaction" : "interacts with", "SUID" : 56650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56654", "source" : "2181", "target" : "1905", "shared_name" : "94005 (interacts with) 9488", "name" : "94005 (interacts with) 9488", "interaction" : "interacts with", "SUID" : 56654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56722", "source" : "2177", "target" : "2925", "shared_name" : "443 (interacts with) 8802", "name" : "443 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 56722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56718", "source" : "2177", "target" : "5109", "shared_name" : "443 (interacts with) 790", "name" : "443 (interacts with) 790", "interaction" : "interacts with", "SUID" : 56718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56714", "source" : "2177", "target" : "1461", "shared_name" : "443 (interacts with) 5832", "name" : "443 (interacts with) 5832", "interaction" : "interacts with", "SUID" : 56714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56710", "source" : "2177", "target" : "3501", "shared_name" : "443 (interacts with) 5831", "name" : "443 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 56710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56706", "source" : "2177", "target" : "4737", "shared_name" : "443 (interacts with) 445", "name" : "443 (interacts with) 445", "interaction" : "interacts with", "SUID" : 56706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56702", "source" : "2177", "target" : "1189", "shared_name" : "443 (interacts with) 7915", "name" : "443 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 56702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56698", "source" : "2177", "target" : "4253", "shared_name" : "443 (interacts with) 84706", "name" : "443 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 56698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56694", "source" : "2177", "target" : "2557", "shared_name" : "443 (interacts with) 5444", "name" : "443 (interacts with) 5444", "interaction" : "interacts with", "SUID" : 56694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56690", "source" : "2177", "target" : "2945", "shared_name" : "443 (interacts with) 471", "name" : "443 (interacts with) 471", "interaction" : "interacts with", "SUID" : 56690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56686", "source" : "2177", "target" : "1089", "shared_name" : "443 (interacts with) 5917", "name" : "443 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 56686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56682", "source" : "2177", "target" : "3169", "shared_name" : "443 (interacts with) 1615", "name" : "443 (interacts with) 1615", "interaction" : "interacts with", "SUID" : 56682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56678", "source" : "2177", "target" : "2205", "shared_name" : "443 (interacts with) 2571", "name" : "443 (interacts with) 2571", "interaction" : "interacts with", "SUID" : 56678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56674", "source" : "2177", "target" : "4593", "shared_name" : "443 (interacts with) 2058", "name" : "443 (interacts with) 2058", "interaction" : "interacts with", "SUID" : 56674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56670", "source" : "2177", "target" : "3649", "shared_name" : "443 (interacts with) 51520", "name" : "443 (interacts with) 51520", "interaction" : "interacts with", "SUID" : 56670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56666", "source" : "2177", "target" : "3641", "shared_name" : "443 (interacts with) 4141", "name" : "443 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 56666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56662", "source" : "2177", "target" : "4597", "shared_name" : "443 (interacts with) 3376", "name" : "443 (interacts with) 3376", "interaction" : "interacts with", "SUID" : 56662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56658", "source" : "2177", "target" : "6157", "shared_name" : "443 (interacts with) 3735", "name" : "443 (interacts with) 3735", "interaction" : "interacts with", "SUID" : 56658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56782", "source" : "2173", "target" : "1429", "shared_name" : "5159 (interacts with) 65125", "name" : "5159 (interacts with) 65125", "interaction" : "interacts with", "SUID" : 56782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56778", "source" : "2173", "target" : "1549", "shared_name" : "5159 (interacts with) 7070", "name" : "5159 (interacts with) 7070", "interaction" : "interacts with", "SUID" : 56778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56774", "source" : "2173", "target" : "637", "shared_name" : "5159 (interacts with) 6654", "name" : "5159 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 56774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56770", "source" : "2173", "target" : "805", "shared_name" : "5159 (interacts with) 6772", "name" : "5159 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 56770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56766", "source" : "2173", "target" : "4981", "shared_name" : "5159 (interacts with) 6774", "name" : "5159 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 56766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56762", "source" : "2173", "target" : "1069", "shared_name" : "5159 (interacts with) 5879", "name" : "5159 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 56762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56758", "source" : "2173", "target" : "817", "shared_name" : "5159 (interacts with) 5728", "name" : "5159 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 56758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56754", "source" : "2173", "target" : "5225", "shared_name" : "5159 (interacts with) 5290", "name" : "5159 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 56754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56750", "source" : "2173", "target" : "3465", "shared_name" : "5159 (interacts with) 5296", "name" : "5159 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 56750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56746", "source" : "2173", "target" : "5265", "shared_name" : "5159 (interacts with) 1436", "name" : "5159 (interacts with) 1436", "interaction" : "interacts with", "SUID" : 56746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56742", "source" : "2173", "target" : "4521", "shared_name" : "5159 (interacts with) 5894", "name" : "5159 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 56742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56738", "source" : "2173", "target" : "4213", "shared_name" : "5159 (interacts with) 5295", "name" : "5159 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 56738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56734", "source" : "2173", "target" : "4853", "shared_name" : "5159 (interacts with) 545", "name" : "5159 (interacts with) 545", "interaction" : "interacts with", "SUID" : 56734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56730", "source" : "2173", "target" : "5973", "shared_name" : "5159 (interacts with) 5155", "name" : "5159 (interacts with) 5155", "interaction" : "interacts with", "SUID" : 56730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56726", "source" : "2173", "target" : "5577", "shared_name" : "5159 (interacts with) 3091", "name" : "5159 (interacts with) 3091", "interaction" : "interacts with", "SUID" : 56726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56802", "source" : "2169", "target" : "3425", "shared_name" : "51182 (interacts with) 8803", "name" : "51182 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 56802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56798", "source" : "2169", "target" : "2849", "shared_name" : "51182 (interacts with) 9326", "name" : "51182 (interacts with) 9326", "interaction" : "interacts with", "SUID" : 56798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56794", "source" : "2169", "target" : "1053", "shared_name" : "51182 (interacts with) 81689", "name" : "51182 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 56794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56790", "source" : "2169", "target" : "1377", "shared_name" : "51182 (interacts with) 81570", "name" : "51182 (interacts with) 81570", "interaction" : "interacts with", "SUID" : 56790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56786", "source" : "2169", "target" : "2565", "shared_name" : "51182 (interacts with) 51501", "name" : "51182 (interacts with) 51501", "interaction" : "interacts with", "SUID" : 56786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56866", "source" : "2165", "target" : "2925", "shared_name" : "23417 (interacts with) 8802", "name" : "23417 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 56866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56862", "source" : "2165", "target" : "3425", "shared_name" : "23417 (interacts with) 8803", "name" : "23417 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 56862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56858", "source" : "2165", "target" : "5205", "shared_name" : "23417 (interacts with) 5828", "name" : "23417 (interacts with) 5828", "interaction" : "interacts with", "SUID" : 56858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56854", "source" : "2165", "target" : "5545", "shared_name" : "23417 (interacts with) 5195", "name" : "23417 (interacts with) 5195", "interaction" : "interacts with", "SUID" : 56854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56850", "source" : "2165", "target" : "1953", "shared_name" : "23417 (interacts with) 5194", "name" : "23417 (interacts with) 5194", "interaction" : "interacts with", "SUID" : 56850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56846", "source" : "2165", "target" : "4297", "shared_name" : "23417 (interacts with) 5193", "name" : "23417 (interacts with) 5193", "interaction" : "interacts with", "SUID" : 56846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56842", "source" : "2165", "target" : "5865", "shared_name" : "23417 (interacts with) 5192", "name" : "23417 (interacts with) 5192", "interaction" : "interacts with", "SUID" : 56842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56838", "source" : "2165", "target" : "5049", "shared_name" : "23417 (interacts with) 6697", "name" : "23417 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 56838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56834", "source" : "2165", "target" : "2669", "shared_name" : "23417 (interacts with) 9197", "name" : "23417 (interacts with) 9197", "interaction" : "interacts with", "SUID" : 56834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56830", "source" : "2165", "target" : "4169", "shared_name" : "23417 (interacts with) 10993", "name" : "23417 (interacts with) 10993", "interaction" : "interacts with", "SUID" : 56830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56826", "source" : "2165", "target" : "733", "shared_name" : "23417 (interacts with) 91452", "name" : "23417 (interacts with) 91452", "interaction" : "interacts with", "SUID" : 56826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56822", "source" : "2165", "target" : "5237", "shared_name" : "23417 (interacts with) 5830", "name" : "23417 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 56822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56818", "source" : "2165", "target" : "4941", "shared_name" : "23417 (interacts with) 6342", "name" : "23417 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 56818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56814", "source" : "2165", "target" : "1021", "shared_name" : "23417 (interacts with) 5096", "name" : "23417 (interacts with) 5096", "interaction" : "interacts with", "SUID" : 56814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56810", "source" : "2165", "target" : "1301", "shared_name" : "23417 (interacts with) 5095", "name" : "23417 (interacts with) 5095", "interaction" : "interacts with", "SUID" : 56810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56806", "source" : "2165", "target" : "1437", "shared_name" : "23417 (interacts with) 80025", "name" : "23417 (interacts with) 80025", "interaction" : "interacts with", "SUID" : 56806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56914", "source" : "2161", "target" : "4353", "shared_name" : "55163 (interacts with) 9512", "name" : "55163 (interacts with) 9512", "interaction" : "interacts with", "SUID" : 56914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56910", "source" : "2161", "target" : "369", "shared_name" : "55163 (interacts with) 7173", "name" : "55163 (interacts with) 7173", "interaction" : "interacts with", "SUID" : 56910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56906", "source" : "2161", "target" : "1013", "shared_name" : "55163 (interacts with) 6898", "name" : "55163 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 56906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56902", "source" : "2161", "target" : "429", "shared_name" : "55163 (interacts with) 1757", "name" : "55163 (interacts with) 1757", "interaction" : "interacts with", "SUID" : 56902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56898", "source" : "2161", "target" : "3325", "shared_name" : "55163 (interacts with) 9517", "name" : "55163 (interacts with) 9517", "interaction" : "interacts with", "SUID" : 56898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56894", "source" : "2161", "target" : "5109", "shared_name" : "55163 (interacts with) 790", "name" : "55163 (interacts with) 790", "interaction" : "interacts with", "SUID" : 56894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56890", "source" : "2161", "target" : "2901", "shared_name" : "55163 (interacts with) 6647", "name" : "55163 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 56890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56886", "source" : "2161", "target" : "1809", "shared_name" : "55163 (interacts with) 6548", "name" : "55163 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 56886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56882", "source" : "2161", "target" : "2249", "shared_name" : "55163 (interacts with) 25824", "name" : "55163 (interacts with) 25824", "interaction" : "interacts with", "SUID" : 56882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56878", "source" : "2161", "target" : "517", "shared_name" : "55163 (interacts with) 5052", "name" : "55163 (interacts with) 5052", "interaction" : "interacts with", "SUID" : 56878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56874", "source" : "2161", "target" : "1681", "shared_name" : "55163 (interacts with) 9990", "name" : "55163 (interacts with) 9990", "interaction" : "interacts with", "SUID" : 56874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56870", "source" : "2161", "target" : "4169", "shared_name" : "55163 (interacts with) 10993", "name" : "55163 (interacts with) 10993", "interaction" : "interacts with", "SUID" : 56870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56946", "source" : "2157", "target" : "2793", "shared_name" : "23028 (interacts with) 8894", "name" : "23028 (interacts with) 8894", "interaction" : "interacts with", "SUID" : 56946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56942", "source" : "2157", "target" : "2901", "shared_name" : "23028 (interacts with) 6647", "name" : "23028 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 56942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56938", "source" : "2157", "target" : "5225", "shared_name" : "23028 (interacts with) 5290", "name" : "23028 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 56938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56934", "source" : "2157", "target" : "4837", "shared_name" : "23028 (interacts with) 8891", "name" : "23028 (interacts with) 8891", "interaction" : "interacts with", "SUID" : 56934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56930", "source" : "2157", "target" : "977", "shared_name" : "23028 (interacts with) 79944", "name" : "23028 (interacts with) 79944", "interaction" : "interacts with", "SUID" : 56930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56926", "source" : "2157", "target" : "2481", "shared_name" : "23028 (interacts with) 2475", "name" : "23028 (interacts with) 2475", "interaction" : "interacts with", "SUID" : 56926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56922", "source" : "2157", "target" : "817", "shared_name" : "23028 (interacts with) 5728", "name" : "23028 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 56922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56918", "source" : "2157", "target" : "2093", "shared_name" : "23028 (interacts with) 4780", "name" : "23028 (interacts with) 4780", "interaction" : "interacts with", "SUID" : 56918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56970", "source" : "2153", "target" : "3409", "shared_name" : "7042 (interacts with) 7043", "name" : "7042 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 56970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56966", "source" : "2153", "target" : "4065", "shared_name" : "7042 (interacts with) 7124", "name" : "7042 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 56966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56962", "source" : "2153", "target" : "981", "shared_name" : "7042 (interacts with) 7157", "name" : "7042 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 56962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56958", "source" : "2153", "target" : "1405", "shared_name" : "7042 (interacts with) 998", "name" : "7042 (interacts with) 998", "interaction" : "interacts with", "SUID" : 56958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56954", "source" : "2153", "target" : "569", "shared_name" : "7042 (interacts with) 7048", "name" : "7042 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 56954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56950", "source" : "2153", "target" : "5745", "shared_name" : "7042 (interacts with) 7471", "name" : "7042 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 56950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57006", "source" : "2145", "target" : "481", "shared_name" : "8924 (interacts with) 7507", "name" : "8924 (interacts with) 7507", "interaction" : "interacts with", "SUID" : 57006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57002", "source" : "2145", "target" : "1933", "shared_name" : "8924 (interacts with) 7335", "name" : "8924 (interacts with) 7335", "interaction" : "interacts with", "SUID" : 57002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56998", "source" : "2145", "target" : "3729", "shared_name" : "8924 (interacts with) 7319", "name" : "8924 (interacts with) 7319", "interaction" : "interacts with", "SUID" : 56998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56994", "source" : "2145", "target" : "5849", "shared_name" : "8924 (interacts with) 6613", "name" : "8924 (interacts with) 6613", "interaction" : "interacts with", "SUID" : 56994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56990", "source" : "2145", "target" : "877", "shared_name" : "8924 (interacts with) 7341", "name" : "8924 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 56990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56986", "source" : "2145", "target" : "961", "shared_name" : "8924 (interacts with) 7318", "name" : "8924 (interacts with) 7318", "interaction" : "interacts with", "SUID" : 56986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56982", "source" : "2145", "target" : "1629", "shared_name" : "8924 (interacts with) 6047", "name" : "8924 (interacts with) 6047", "interaction" : "interacts with", "SUID" : 56982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56978", "source" : "2145", "target" : "3933", "shared_name" : "8924 (interacts with) 10524", "name" : "8924 (interacts with) 10524", "interaction" : "interacts with", "SUID" : 56978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "56974", "source" : "2145", "target" : "2053", "shared_name" : "8924 (interacts with) 7468", "name" : "8924 (interacts with) 7468", "interaction" : "interacts with", "SUID" : 56974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57014", "source" : "2141", "target" : "5729", "shared_name" : "26053 (interacts with) 861", "name" : "26053 (interacts with) 861", "interaction" : "interacts with", "SUID" : 57014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57010", "source" : "2141", "target" : "2937", "shared_name" : "26053 (interacts with) 1457", "name" : "26053 (interacts with) 1457", "interaction" : "interacts with", "SUID" : 57010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57022", "source" : "2137", "target" : "2961", "shared_name" : "3918 (interacts with) 4314", "name" : "3918 (interacts with) 4314", "interaction" : "interacts with", "SUID" : 57022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57018", "source" : "2137", "target" : "4885", "shared_name" : "3918 (interacts with) 5340", "name" : "3918 (interacts with) 5340", "interaction" : "interacts with", "SUID" : 57018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57118", "source" : "2133", "target" : "6145", "shared_name" : "1859 (interacts with) 93627", "name" : "1859 (interacts with) 93627", "interaction" : "interacts with", "SUID" : 57118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57114", "source" : "2133", "target" : "5693", "shared_name" : "1859 (interacts with) 92335", "name" : "1859 (interacts with) 92335", "interaction" : "interacts with", "SUID" : 57114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57110", "source" : "2133", "target" : "3837", "shared_name" : "1859 (interacts with) 6098", "name" : "1859 (interacts with) 6098", "interaction" : "interacts with", "SUID" : 57110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57106", "source" : "2133", "target" : "1229", "shared_name" : "1859 (interacts with) 238", "name" : "1859 (interacts with) 238", "interaction" : "interacts with", "SUID" : 57106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57102", "source" : "2133", "target" : "3581", "shared_name" : "1859 (interacts with) 2185", "name" : "1859 (interacts with) 2185", "interaction" : "interacts with", "SUID" : 57102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57098", "source" : "2133", "target" : "5125", "shared_name" : "1859 (interacts with) 5979", "name" : "1859 (interacts with) 5979", "interaction" : "interacts with", "SUID" : 57098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57094", "source" : "2133", "target" : "4237", "shared_name" : "1859 (interacts with) 4914", "name" : "1859 (interacts with) 4914", "interaction" : "interacts with", "SUID" : 57094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57090", "source" : "2133", "target" : "865", "shared_name" : "1859 (interacts with) 3480", "name" : "1859 (interacts with) 3480", "interaction" : "interacts with", "SUID" : 57090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57086", "source" : "2133", "target" : "6121", "shared_name" : "1859 (interacts with) 2260", "name" : "1859 (interacts with) 2260", "interaction" : "interacts with", "SUID" : 57086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57082", "source" : "2133", "target" : "4581", "shared_name" : "1859 (interacts with) 29110", "name" : "1859 (interacts with) 29110", "interaction" : "interacts with", "SUID" : 57082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57078", "source" : "2133", "target" : "3629", "shared_name" : "1859 (interacts with) 2066", "name" : "1859 (interacts with) 2066", "interaction" : "interacts with", "SUID" : 57078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57074", "source" : "2133", "target" : "3117", "shared_name" : "1859 (interacts with) 84668", "name" : "1859 (interacts with) 84668", "interaction" : "interacts with", "SUID" : 57074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57070", "source" : "2133", "target" : "2525", "shared_name" : "1859 (interacts with) 9451", "name" : "1859 (interacts with) 9451", "interaction" : "interacts with", "SUID" : 57070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57066", "source" : "2133", "target" : "4857", "shared_name" : "1859 (interacts with) 5573", "name" : "1859 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 57066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57062", "source" : "2133", "target" : "2085", "shared_name" : "1859 (interacts with) 2932", "name" : "1859 (interacts with) 2932", "interaction" : "interacts with", "SUID" : 57062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57058", "source" : "2133", "target" : "1729", "shared_name" : "1859 (interacts with) 5111", "name" : "1859 (interacts with) 5111", "interaction" : "interacts with", "SUID" : 57058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57054", "source" : "2133", "target" : "257", "shared_name" : "1859 (interacts with) 6469", "name" : "1859 (interacts with) 6469", "interaction" : "interacts with", "SUID" : 57054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57050", "source" : "2133", "target" : "4493", "shared_name" : "1859 (interacts with) 5727", "name" : "1859 (interacts with) 5727", "interaction" : "interacts with", "SUID" : 57050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57046", "source" : "2133", "target" : "1181", "shared_name" : "1859 (interacts with) 51684", "name" : "1859 (interacts with) 51684", "interaction" : "interacts with", "SUID" : 57046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57042", "source" : "2133", "target" : "1245", "shared_name" : "1859 (interacts with) 4137", "name" : "1859 (interacts with) 4137", "interaction" : "interacts with", "SUID" : 57042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57038", "source" : "2133", "target" : "4013", "shared_name" : "1859 (interacts with) 6622", "name" : "1859 (interacts with) 6622", "interaction" : "interacts with", "SUID" : 57038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57034", "source" : "2133", "target" : "5625", "shared_name" : "1859 (interacts with) 595", "name" : "1859 (interacts with) 595", "interaction" : "interacts with", "SUID" : 57034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57030", "source" : "2133", "target" : "2213", "shared_name" : "1859 (interacts with) 4851", "name" : "1859 (interacts with) 4851", "interaction" : "interacts with", "SUID" : 57030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57026", "source" : "2133", "target" : "981", "shared_name" : "1859 (interacts with) 7157", "name" : "1859 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 57026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57246", "source" : "2129", "target" : "2801", "shared_name" : "11019 (interacts with) 4700", "name" : "11019 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 57246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57242", "source" : "2129", "target" : "2797", "shared_name" : "11019 (interacts with) 4728", "name" : "11019 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 57242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57238", "source" : "2129", "target" : "1369", "shared_name" : "11019 (interacts with) 27247", "name" : "11019 (interacts with) 27247", "interaction" : "interacts with", "SUID" : 57238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57234", "source" : "2129", "target" : "1605", "shared_name" : "11019 (interacts with) 6648", "name" : "11019 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 57234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57230", "source" : "2129", "target" : "1921", "shared_name" : "11019 (interacts with) 1352", "name" : "11019 (interacts with) 1352", "interaction" : "interacts with", "SUID" : 57230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57226", "source" : "2129", "target" : "4141", "shared_name" : "11019 (interacts with) 617", "name" : "11019 (interacts with) 617", "interaction" : "interacts with", "SUID" : 57226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57222", "source" : "2129", "target" : "5845", "shared_name" : "11019 (interacts with) 4714", "name" : "11019 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 57222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57218", "source" : "2129", "target" : "5977", "shared_name" : "11019 (interacts with) 1915", "name" : "11019 (interacts with) 1915", "interaction" : "interacts with", "SUID" : 57218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57214", "source" : "2129", "target" : "5981", "shared_name" : "11019 (interacts with) 1917", "name" : "11019 (interacts with) 1917", "interaction" : "interacts with", "SUID" : 57214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57210", "source" : "2129", "target" : "505", "shared_name" : "11019 (interacts with) 2071", "name" : "11019 (interacts with) 2071", "interaction" : "interacts with", "SUID" : 57210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57206", "source" : "2129", "target" : "5353", "shared_name" : "11019 (interacts with) 2026", "name" : "11019 (interacts with) 2026", "interaction" : "interacts with", "SUID" : 57206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57202", "source" : "2129", "target" : "4017", "shared_name" : "11019 (interacts with) 4719", "name" : "11019 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 57202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57198", "source" : "2129", "target" : "1869", "shared_name" : "11019 (interacts with) 4729", "name" : "11019 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 57198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57194", "source" : "2129", "target" : "5025", "shared_name" : "11019 (interacts with) 6389", "name" : "11019 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 57194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57190", "source" : "2129", "target" : "2365", "shared_name" : "11019 (interacts with) 2731", "name" : "11019 (interacts with) 2731", "interaction" : "interacts with", "SUID" : 57190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57186", "source" : "2129", "target" : "245", "shared_name" : "11019 (interacts with) 2936", "name" : "11019 (interacts with) 2936", "interaction" : "interacts with", "SUID" : 57186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57182", "source" : "2129", "target" : "1669", "shared_name" : "11019 (interacts with) 6390", "name" : "11019 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 57182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57178", "source" : "2129", "target" : "3421", "shared_name" : "11019 (interacts with) 4967", "name" : "11019 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 57178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57174", "source" : "2129", "target" : "2881", "shared_name" : "11019 (interacts with) 5160", "name" : "11019 (interacts with) 5160", "interaction" : "interacts with", "SUID" : 57174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57170", "source" : "2129", "target" : "1485", "shared_name" : "11019 (interacts with) 8050", "name" : "11019 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 57170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57166", "source" : "2129", "target" : "493", "shared_name" : "11019 (interacts with) 594", "name" : "11019 (interacts with) 594", "interaction" : "interacts with", "SUID" : 57166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57162", "source" : "2129", "target" : "2897", "shared_name" : "11019 (interacts with) 1737", "name" : "11019 (interacts with) 1737", "interaction" : "interacts with", "SUID" : 57162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57158", "source" : "2129", "target" : "4401", "shared_name" : "11019 (interacts with) 55526", "name" : "11019 (interacts with) 55526", "interaction" : "interacts with", "SUID" : 57158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57154", "source" : "2129", "target" : "485", "shared_name" : "11019 (interacts with) 593", "name" : "11019 (interacts with) 593", "interaction" : "interacts with", "SUID" : 57154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57150", "source" : "2129", "target" : "489", "shared_name" : "11019 (interacts with) 1629", "name" : "11019 (interacts with) 1629", "interaction" : "interacts with", "SUID" : 57150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57146", "source" : "2129", "target" : "5605", "shared_name" : "11019 (interacts with) 51601", "name" : "11019 (interacts with) 51601", "interaction" : "interacts with", "SUID" : 57146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57142", "source" : "2129", "target" : "1489", "shared_name" : "11019 (interacts with) 1738", "name" : "11019 (interacts with) 1738", "interaction" : "interacts with", "SUID" : 57142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57138", "source" : "2129", "target" : "1037", "shared_name" : "11019 (interacts with) 387787", "name" : "11019 (interacts with) 387787", "interaction" : "interacts with", "SUID" : 57138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57134", "source" : "2129", "target" : "4869", "shared_name" : "11019 (interacts with) 92935", "name" : "11019 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 57134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57130", "source" : "2129", "target" : "2121", "shared_name" : "11019 (interacts with) 11232", "name" : "11019 (interacts with) 11232", "interaction" : "interacts with", "SUID" : 57130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57126", "source" : "2129", "target" : "2009", "shared_name" : "11019 (interacts with) 79133", "name" : "11019 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 57126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57122", "source" : "2129", "target" : "3997", "shared_name" : "11019 (interacts with) 1890", "name" : "11019 (interacts with) 1890", "interaction" : "interacts with", "SUID" : 57122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57346", "source" : "2125", "target" : "2241", "shared_name" : "2512 (interacts with) 3043", "name" : "2512 (interacts with) 3043", "interaction" : "interacts with", "SUID" : 57346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57342", "source" : "2125", "target" : "4077", "shared_name" : "2512 (interacts with) 71", "name" : "2512 (interacts with) 71", "interaction" : "interacts with", "SUID" : 57342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57338", "source" : "2125", "target" : "997", "shared_name" : "2512 (interacts with) 7431", "name" : "2512 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 57338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57334", "source" : "2125", "target" : "853", "shared_name" : "2512 (interacts with) 60", "name" : "2512 (interacts with) 60", "interaction" : "interacts with", "SUID" : 57334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57330", "source" : "2125", "target" : "5649", "shared_name" : "2512 (interacts with) 5265", "name" : "2512 (interacts with) 5265", "interaction" : "interacts with", "SUID" : 57330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57326", "source" : "2125", "target" : "1829", "shared_name" : "2512 (interacts with) 7421", "name" : "2512 (interacts with) 7421", "interaction" : "interacts with", "SUID" : 57326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57322", "source" : "2125", "target" : "2877", "shared_name" : "2512 (interacts with) 340024", "name" : "2512 (interacts with) 340024", "interaction" : "interacts with", "SUID" : 57322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57318", "source" : "2125", "target" : "4665", "shared_name" : "2512 (interacts with) 538", "name" : "2512 (interacts with) 538", "interaction" : "interacts with", "SUID" : 57318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57314", "source" : "2125", "target" : "1261", "shared_name" : "2512 (interacts with) 57192", "name" : "2512 (interacts with) 57192", "interaction" : "interacts with", "SUID" : 57314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57310", "source" : "2125", "target" : "1309", "shared_name" : "2512 (interacts with) 9698", "name" : "2512 (interacts with) 9698", "interaction" : "interacts with", "SUID" : 57310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57306", "source" : "2125", "target" : "6057", "shared_name" : "2512 (interacts with) 3162", "name" : "2512 (interacts with) 3162", "interaction" : "interacts with", "SUID" : 57306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57302", "source" : "2125", "target" : "2405", "shared_name" : "2512 (interacts with) 3658", "name" : "2512 (interacts with) 3658", "interaction" : "interacts with", "SUID" : 57302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57298", "source" : "2125", "target" : "5865", "shared_name" : "2512 (interacts with) 5192", "name" : "2512 (interacts with) 5192", "interaction" : "interacts with", "SUID" : 57298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57294", "source" : "2125", "target" : "2341", "shared_name" : "2512 (interacts with) 23322", "name" : "2512 (interacts with) 23322", "interaction" : "interacts with", "SUID" : 57294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57290", "source" : "2125", "target" : "1733", "shared_name" : "2512 (interacts with) 6305", "name" : "2512 (interacts with) 6305", "interaction" : "interacts with", "SUID" : 57290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57286", "source" : "2125", "target" : "1513", "shared_name" : "2512 (interacts with) 283489", "name" : "2512 (interacts with) 283489", "interaction" : "interacts with", "SUID" : 57286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57282", "source" : "2125", "target" : "6073", "shared_name" : "2512 (interacts with) 92170", "name" : "2512 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 57282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57278", "source" : "2125", "target" : "3693", "shared_name" : "2512 (interacts with) 8943", "name" : "2512 (interacts with) 8943", "interaction" : "interacts with", "SUID" : 57278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57274", "source" : "2125", "target" : "2909", "shared_name" : "2512 (interacts with) 23126", "name" : "2512 (interacts with) 23126", "interaction" : "interacts with", "SUID" : 57274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57270", "source" : "2125", "target" : "669", "shared_name" : "2512 (interacts with) 259266", "name" : "2512 (interacts with) 259266", "interaction" : "interacts with", "SUID" : 57270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57266", "source" : "2125", "target" : "657", "shared_name" : "2512 (interacts with) 547", "name" : "2512 (interacts with) 547", "interaction" : "interacts with", "SUID" : 57266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57262", "source" : "2125", "target" : "549", "shared_name" : "2512 (interacts with) 3954", "name" : "2512 (interacts with) 3954", "interaction" : "interacts with", "SUID" : 57262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57258", "source" : "2125", "target" : "1501", "shared_name" : "2512 (interacts with) 55870", "name" : "2512 (interacts with) 55870", "interaction" : "interacts with", "SUID" : 57258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57254", "source" : "2125", "target" : "5721", "shared_name" : "2512 (interacts with) 11128", "name" : "2512 (interacts with) 11128", "interaction" : "interacts with", "SUID" : 57254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57250", "source" : "2125", "target" : "4797", "shared_name" : "2512 (interacts with) 10735", "name" : "2512 (interacts with) 10735", "interaction" : "interacts with", "SUID" : 57250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57566", "source" : "2121", "target" : "2825", "shared_name" : "11232 (interacts with) 126328", "name" : "11232 (interacts with) 126328", "interaction" : "interacts with", "SUID" : 57566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57562", "source" : "2121", "target" : "2477", "shared_name" : "11232 (interacts with) 57107", "name" : "11232 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 57562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57558", "source" : "2121", "target" : "5169", "shared_name" : "11232 (interacts with) 1355", "name" : "11232 (interacts with) 1355", "interaction" : "interacts with", "SUID" : 57558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57554", "source" : "2121", "target" : "2009", "shared_name" : "11232 (interacts with) 79133", "name" : "11232 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 57554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57550", "source" : "2121", "target" : "5689", "shared_name" : "11232 (interacts with) 27089", "name" : "11232 (interacts with) 27089", "interaction" : "interacts with", "SUID" : 57550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57546", "source" : "2121", "target" : "1561", "shared_name" : "11232 (interacts with) 51117", "name" : "11232 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 57546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57542", "source" : "2121", "target" : "1869", "shared_name" : "11232 (interacts with) 4729", "name" : "11232 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 57542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57538", "source" : "2121", "target" : "5189", "shared_name" : "11232 (interacts with) 57176", "name" : "11232 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 57538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57534", "source" : "2121", "target" : "5505", "shared_name" : "11232 (interacts with) 29078", "name" : "11232 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 57534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57530", "source" : "2121", "target" : "2753", "shared_name" : "11232 (interacts with) 4720", "name" : "11232 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 57530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57526", "source" : "2121", "target" : "2285", "shared_name" : "11232 (interacts with) 51300", "name" : "11232 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 57526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57522", "source" : "2121", "target" : "2801", "shared_name" : "11232 (interacts with) 4700", "name" : "11232 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 57522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57518", "source" : "2121", "target" : "5985", "shared_name" : "11232 (interacts with) 27235", "name" : "11232 (interacts with) 27235", "interaction" : "interacts with", "SUID" : 57518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57514", "source" : "2121", "target" : "4141", "shared_name" : "11232 (interacts with) 617", "name" : "11232 (interacts with) 617", "interaction" : "interacts with", "SUID" : 57514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57510", "source" : "2121", "target" : "5845", "shared_name" : "11232 (interacts with) 4714", "name" : "11232 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 57510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57506", "source" : "2121", "target" : "3761", "shared_name" : "11232 (interacts with) 25915", "name" : "11232 (interacts with) 25915", "interaction" : "interacts with", "SUID" : 57506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57502", "source" : "2121", "target" : "2345", "shared_name" : "11232 (interacts with) 200205", "name" : "11232 (interacts with) 200205", "interaction" : "interacts with", "SUID" : 57502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57498", "source" : "2121", "target" : "621", "shared_name" : "11232 (interacts with) 122961", "name" : "11232 (interacts with) 122961", "interaction" : "interacts with", "SUID" : 57498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57494", "source" : "2121", "target" : "5737", "shared_name" : "11232 (interacts with) 84340", "name" : "11232 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 57494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57490", "source" : "2121", "target" : "721", "shared_name" : "11232 (interacts with) 79731", "name" : "11232 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 57490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57486", "source" : "2121", "target" : "2797", "shared_name" : "11232 (interacts with) 4728", "name" : "11232 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 57486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57482", "source" : "2121", "target" : "521", "shared_name" : "11232 (interacts with) 85476", "name" : "11232 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 57482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57478", "source" : "2121", "target" : "4757", "shared_name" : "11232 (interacts with) 9997", "name" : "11232 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 57478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57474", "source" : "2121", "target" : "3065", "shared_name" : "11232 (interacts with) 25828", "name" : "11232 (interacts with) 25828", "interaction" : "interacts with", "SUID" : 57474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57470", "source" : "2121", "target" : "2337", "shared_name" : "11232 (interacts with) 28976", "name" : "11232 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 57470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57466", "source" : "2121", "target" : "2109", "shared_name" : "11232 (interacts with) 51103", "name" : "11232 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 57466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57462", "source" : "2121", "target" : "4101", "shared_name" : "11232 (interacts with) 65260", "name" : "11232 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 57462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57458", "source" : "2121", "target" : "4593", "shared_name" : "11232 (interacts with) 2058", "name" : "11232 (interacts with) 2058", "interaction" : "interacts with", "SUID" : 57458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57454", "source" : "2121", "target" : "3973", "shared_name" : "11232 (interacts with) 55572", "name" : "11232 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 57454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57450", "source" : "2121", "target" : "477", "shared_name" : "11232 (interacts with) 51021", "name" : "11232 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 57450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57446", "source" : "2121", "target" : "4897", "shared_name" : "11232 (interacts with) 55149", "name" : "11232 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 57446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57442", "source" : "2121", "target" : "4409", "shared_name" : "11232 (interacts with) 6341", "name" : "11232 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 57442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57438", "source" : "2121", "target" : "6073", "shared_name" : "11232 (interacts with) 92170", "name" : "11232 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 57438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57434", "source" : "2121", "target" : "4229", "shared_name" : "11232 (interacts with) 3035", "name" : "11232 (interacts with) 3035", "interaction" : "interacts with", "SUID" : 57434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57430", "source" : "2121", "target" : "4905", "shared_name" : "11232 (interacts with) 440275", "name" : "11232 (interacts with) 440275", "interaction" : "interacts with", "SUID" : 57430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57426", "source" : "2121", "target" : "1197", "shared_name" : "11232 (interacts with) 79587", "name" : "11232 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 57426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57422", "source" : "2121", "target" : "873", "shared_name" : "11232 (interacts with) 1385", "name" : "11232 (interacts with) 1385", "interaction" : "interacts with", "SUID" : 57422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57418", "source" : "2121", "target" : "6001", "shared_name" : "11232 (interacts with) 55157", "name" : "11232 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 57418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57414", "source" : "2121", "target" : "6049", "shared_name" : "11232 (interacts with) 25973", "name" : "11232 (interacts with) 25973", "interaction" : "interacts with", "SUID" : 57414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57410", "source" : "2121", "target" : "5761", "shared_name" : "11232 (interacts with) 4208", "name" : "11232 (interacts with) 4208", "interaction" : "interacts with", "SUID" : 57410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57406", "source" : "2121", "target" : "1129", "shared_name" : "11232 (interacts with) 57505", "name" : "11232 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 57406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57402", "source" : "2121", "target" : "3525", "shared_name" : "11232 (interacts with) 23410", "name" : "11232 (interacts with) 23410", "interaction" : "interacts with", "SUID" : 57402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57398", "source" : "2121", "target" : "4421", "shared_name" : "11232 (interacts with) 2551", "name" : "11232 (interacts with) 2551", "interaction" : "interacts with", "SUID" : 57398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57394", "source" : "2121", "target" : "2105", "shared_name" : "11232 (interacts with) 56945", "name" : "11232 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 57394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57390", "source" : "2121", "target" : "501", "shared_name" : "11232 (interacts with) 65993", "name" : "11232 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 57390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57386", "source" : "2121", "target" : "713", "shared_name" : "11232 (interacts with) 7019", "name" : "11232 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 57386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57382", "source" : "2121", "target" : "4621", "shared_name" : "11232 (interacts with) 57038", "name" : "11232 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 57382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57378", "source" : "2121", "target" : "4261", "shared_name" : "11232 (interacts with) 124454", "name" : "11232 (interacts with) 124454", "interaction" : "interacts with", "SUID" : 57378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57374", "source" : "2121", "target" : "3633", "shared_name" : "11232 (interacts with) 51067", "name" : "11232 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 57374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57370", "source" : "2121", "target" : "4869", "shared_name" : "11232 (interacts with) 92935", "name" : "11232 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 57370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57366", "source" : "2121", "target" : "5085", "shared_name" : "11232 (interacts with) 56652", "name" : "11232 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 57366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57362", "source" : "2121", "target" : "2021", "shared_name" : "11232 (interacts with) 5428", "name" : "11232 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 57362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57358", "source" : "2121", "target" : "2365", "shared_name" : "11232 (interacts with) 2731", "name" : "11232 (interacts with) 2731", "interaction" : "interacts with", "SUID" : 57358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57354", "source" : "2121", "target" : "2029", "shared_name" : "11232 (interacts with) 4329", "name" : "11232 (interacts with) 4329", "interaction" : "interacts with", "SUID" : 57354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57350", "source" : "2121", "target" : "4913", "shared_name" : "11232 (interacts with) 23394", "name" : "11232 (interacts with) 23394", "interaction" : "interacts with", "SUID" : 57350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57578", "source" : "2113", "target" : "1933", "shared_name" : "158506 (interacts with) 7335", "name" : "158506 (interacts with) 7335", "interaction" : "interacts with", "SUID" : 57578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57574", "source" : "2113", "target" : "3729", "shared_name" : "158506 (interacts with) 7319", "name" : "158506 (interacts with) 7319", "interaction" : "interacts with", "SUID" : 57574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57570", "source" : "2113", "target" : "961", "shared_name" : "158506 (interacts with) 7318", "name" : "158506 (interacts with) 7318", "interaction" : "interacts with", "SUID" : 57570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57786", "source" : "2109", "target" : "5605", "shared_name" : "51103 (interacts with) 51601", "name" : "51103 (interacts with) 51601", "interaction" : "interacts with", "SUID" : 57786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57782", "source" : "2109", "target" : "1053", "shared_name" : "51103 (interacts with) 81689", "name" : "51103 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 57782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57778", "source" : "2109", "target" : "5341", "shared_name" : "51103 (interacts with) 91647", "name" : "51103 (interacts with) 91647", "interaction" : "interacts with", "SUID" : 57778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57774", "source" : "2109", "target" : "1085", "shared_name" : "51103 (interacts with) 9377", "name" : "51103 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 57774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57770", "source" : "2109", "target" : "3621", "shared_name" : "51103 (interacts with) 6834", "name" : "51103 (interacts with) 6834", "interaction" : "interacts with", "SUID" : 57770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57766", "source" : "2109", "target" : "3705", "shared_name" : "51103 (interacts with) 87178", "name" : "51103 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 57766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57762", "source" : "2109", "target" : "6181", "shared_name" : "51103 (interacts with) 84987", "name" : "51103 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 57762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57758", "source" : "2109", "target" : "2297", "shared_name" : "51103 (interacts with) 55005", "name" : "51103 (interacts with) 55005", "interaction" : "interacts with", "SUID" : 57758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57754", "source" : "2109", "target" : "5189", "shared_name" : "51103 (interacts with) 57176", "name" : "51103 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 57754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57750", "source" : "2109", "target" : "521", "shared_name" : "51103 (interacts with) 85476", "name" : "51103 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 57750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57746", "source" : "2109", "target" : "1637", "shared_name" : "51103 (interacts with) 91574", "name" : "51103 (interacts with) 91574", "interaction" : "interacts with", "SUID" : 57746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57742", "source" : "2109", "target" : "721", "shared_name" : "51103 (interacts with) 79731", "name" : "51103 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 57742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57738", "source" : "2109", "target" : "3545", "shared_name" : "51103 (interacts with) 708", "name" : "51103 (interacts with) 708", "interaction" : "interacts with", "SUID" : 57738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57734", "source" : "2109", "target" : "1129", "shared_name" : "51103 (interacts with) 57505", "name" : "51103 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 57734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57730", "source" : "2109", "target" : "5553", "shared_name" : "51103 (interacts with) 55967", "name" : "51103 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 57730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57726", "source" : "2109", "target" : "4897", "shared_name" : "51103 (interacts with) 55149", "name" : "51103 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 57726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57722", "source" : "2109", "target" : "1661", "shared_name" : "51103 (interacts with) 91942", "name" : "51103 (interacts with) 91942", "interaction" : "interacts with", "SUID" : 57722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57718", "source" : "2109", "target" : "1337", "shared_name" : "51103 (interacts with) 55863", "name" : "51103 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 57718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57714", "source" : "2109", "target" : "2105", "shared_name" : "51103 (interacts with) 56945", "name" : "51103 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 57714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57710", "source" : "2109", "target" : "501", "shared_name" : "51103 (interacts with) 65993", "name" : "51103 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 57710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57706", "source" : "2109", "target" : "4621", "shared_name" : "51103 (interacts with) 57038", "name" : "51103 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 57706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57702", "source" : "2109", "target" : "4869", "shared_name" : "51103 (interacts with) 92935", "name" : "51103 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 57702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57698", "source" : "2109", "target" : "1929", "shared_name" : "51103 (interacts with) 51218", "name" : "51103 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 57698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57694", "source" : "2109", "target" : "5737", "shared_name" : "51103 (interacts with) 84340", "name" : "51103 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 57694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57690", "source" : "2109", "target" : "4141", "shared_name" : "51103 (interacts with) 617", "name" : "51103 (interacts with) 617", "interaction" : "interacts with", "SUID" : 57690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57686", "source" : "2109", "target" : "713", "shared_name" : "51103 (interacts with) 7019", "name" : "51103 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 57686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57682", "source" : "2109", "target" : "5085", "shared_name" : "51103 (interacts with) 56652", "name" : "51103 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 57682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57678", "source" : "2109", "target" : "889", "shared_name" : "51103 (interacts with) 80224", "name" : "51103 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 57678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57674", "source" : "2109", "target" : "6073", "shared_name" : "51103 (interacts with) 92170", "name" : "51103 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 57674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57670", "source" : "2109", "target" : "4409", "shared_name" : "51103 (interacts with) 6341", "name" : "51103 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 57670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57666", "source" : "2109", "target" : "2021", "shared_name" : "51103 (interacts with) 5428", "name" : "51103 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 57666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57662", "source" : "2109", "target" : "4757", "shared_name" : "51103 (interacts with) 9997", "name" : "51103 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 57662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57658", "source" : "2109", "target" : "6001", "shared_name" : "51103 (interacts with) 55157", "name" : "51103 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 57658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57654", "source" : "2109", "target" : "1197", "shared_name" : "51103 (interacts with) 79587", "name" : "51103 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 57654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57650", "source" : "2109", "target" : "4101", "shared_name" : "51103 (interacts with) 65260", "name" : "51103 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 57650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57646", "source" : "2109", "target" : "3973", "shared_name" : "51103 (interacts with) 55572", "name" : "51103 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 57646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57642", "source" : "2109", "target" : "2477", "shared_name" : "51103 (interacts with) 57107", "name" : "51103 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 57642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57638", "source" : "2109", "target" : "1561", "shared_name" : "51103 (interacts with) 51117", "name" : "51103 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 57638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57634", "source" : "2109", "target" : "1573", "shared_name" : "51103 (interacts with) 4723", "name" : "51103 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 57634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57630", "source" : "2109", "target" : "1869", "shared_name" : "51103 (interacts with) 4729", "name" : "51103 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 57630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57626", "source" : "2109", "target" : "4069", "shared_name" : "51103 (interacts with) 374291", "name" : "51103 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 57626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57622", "source" : "2109", "target" : "2797", "shared_name" : "51103 (interacts with) 4728", "name" : "51103 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 57622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57618", "source" : "2109", "target" : "2285", "shared_name" : "51103 (interacts with) 51300", "name" : "51103 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 57618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57614", "source" : "2109", "target" : "2009", "shared_name" : "51103 (interacts with) 79133", "name" : "51103 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 57614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57610", "source" : "2109", "target" : "4017", "shared_name" : "51103 (interacts with) 4719", "name" : "51103 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 57610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57606", "source" : "2109", "target" : "2753", "shared_name" : "51103 (interacts with) 4720", "name" : "51103 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 57606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57602", "source" : "2109", "target" : "5833", "shared_name" : "51103 (interacts with) 4726", "name" : "51103 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 57602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57598", "source" : "2109", "target" : "4945", "shared_name" : "51103 (interacts with) 4722", "name" : "51103 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 57598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57594", "source" : "2109", "target" : "5821", "shared_name" : "51103 (interacts with) 4724", "name" : "51103 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 57594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57590", "source" : "2109", "target" : "5853", "shared_name" : "51103 (interacts with) 4709", "name" : "51103 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 57590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57586", "source" : "2109", "target" : "5845", "shared_name" : "51103 (interacts with) 4714", "name" : "51103 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 57586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57582", "source" : "2109", "target" : "2689", "shared_name" : "51103 (interacts with) 4715", "name" : "51103 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 57582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57866", "source" : "2105", "target" : "3545", "shared_name" : "56945 (interacts with) 708", "name" : "56945 (interacts with) 708", "interaction" : "interacts with", "SUID" : 57866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57862", "source" : "2105", "target" : "1325", "shared_name" : "56945 (interacts with) 7284", "name" : "56945 (interacts with) 7284", "interaction" : "interacts with", "SUID" : 57862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57858", "source" : "2105", "target" : "2477", "shared_name" : "56945 (interacts with) 57107", "name" : "56945 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 57858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57854", "source" : "2105", "target" : "2009", "shared_name" : "56945 (interacts with) 79133", "name" : "56945 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 57854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57850", "source" : "2105", "target" : "4141", "shared_name" : "56945 (interacts with) 617", "name" : "56945 (interacts with) 617", "interaction" : "interacts with", "SUID" : 57850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57846", "source" : "2105", "target" : "5189", "shared_name" : "56945 (interacts with) 57176", "name" : "56945 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 57846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57842", "source" : "2105", "target" : "521", "shared_name" : "56945 (interacts with) 85476", "name" : "56945 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 57842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57838", "source" : "2105", "target" : "4757", "shared_name" : "56945 (interacts with) 9997", "name" : "56945 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 57838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57834", "source" : "2105", "target" : "721", "shared_name" : "56945 (interacts with) 79731", "name" : "56945 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 57834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57830", "source" : "2105", "target" : "4101", "shared_name" : "56945 (interacts with) 65260", "name" : "56945 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 57830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57826", "source" : "2105", "target" : "5737", "shared_name" : "56945 (interacts with) 84340", "name" : "56945 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 57826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57822", "source" : "2105", "target" : "6073", "shared_name" : "56945 (interacts with) 92170", "name" : "56945 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 57822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57818", "source" : "2105", "target" : "4409", "shared_name" : "56945 (interacts with) 6341", "name" : "56945 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 57818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57814", "source" : "2105", "target" : "3705", "shared_name" : "56945 (interacts with) 87178", "name" : "56945 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 57814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57810", "source" : "2105", "target" : "1197", "shared_name" : "56945 (interacts with) 79587", "name" : "56945 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 57810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57806", "source" : "2105", "target" : "713", "shared_name" : "56945 (interacts with) 7019", "name" : "56945 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 57806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57802", "source" : "2105", "target" : "501", "shared_name" : "56945 (interacts with) 65993", "name" : "56945 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 57802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57798", "source" : "2105", "target" : "4621", "shared_name" : "56945 (interacts with) 57038", "name" : "56945 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 57798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57794", "source" : "2105", "target" : "1129", "shared_name" : "56945 (interacts with) 57505", "name" : "56945 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 57794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57790", "source" : "2105", "target" : "4869", "shared_name" : "56945 (interacts with) 92935", "name" : "56945 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 57790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57898", "source" : "2101", "target" : "981", "shared_name" : "3486 (interacts with) 7157", "name" : "3486 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 57898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57894", "source" : "2101", "target" : "2613", "shared_name" : "3486 (interacts with) 472", "name" : "3486 (interacts with) 472", "interaction" : "interacts with", "SUID" : 57894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57890", "source" : "2101", "target" : "1233", "shared_name" : "3486 (interacts with) 355", "name" : "3486 (interacts with) 355", "interaction" : "interacts with", "SUID" : 57890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57886", "source" : "2101", "target" : "3437", "shared_name" : "3486 (interacts with) 4312", "name" : "3486 (interacts with) 4312", "interaction" : "interacts with", "SUID" : 57886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57882", "source" : "2101", "target" : "4885", "shared_name" : "3486 (interacts with) 5340", "name" : "3486 (interacts with) 5340", "interaction" : "interacts with", "SUID" : 57882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57878", "source" : "2101", "target" : "533", "shared_name" : "3486 (interacts with) 4036", "name" : "3486 (interacts with) 4036", "interaction" : "interacts with", "SUID" : 57878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57874", "source" : "2101", "target" : "1733", "shared_name" : "3486 (interacts with) 6305", "name" : "3486 (interacts with) 6305", "interaction" : "interacts with", "SUID" : 57874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57870", "source" : "2101", "target" : "3201", "shared_name" : "3486 (interacts with) 1277", "name" : "3486 (interacts with) 1277", "interaction" : "interacts with", "SUID" : 57870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57942", "source" : "2097", "target" : "1121", "shared_name" : "10166 (interacts with) 284439", "name" : "10166 (interacts with) 284439", "interaction" : "interacts with", "SUID" : 57942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57938", "source" : "2097", "target" : "4689", "shared_name" : "10166 (interacts with) 291", "name" : "10166 (interacts with) 291", "interaction" : "interacts with", "SUID" : 57938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57934", "source" : "2097", "target" : "349", "shared_name" : "10166 (interacts with) 60386", "name" : "10166 (interacts with) 60386", "interaction" : "interacts with", "SUID" : 57934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57930", "source" : "2097", "target" : "1885", "shared_name" : "10166 (interacts with) 8604", "name" : "10166 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 57930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57926", "source" : "2097", "target" : "2721", "shared_name" : "10166 (interacts with) 79751", "name" : "10166 (interacts with) 79751", "interaction" : "interacts with", "SUID" : 57926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57922", "source" : "2097", "target" : "361", "shared_name" : "10166 (interacts with) 6576", "name" : "10166 (interacts with) 6576", "interaction" : "interacts with", "SUID" : 57922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57918", "source" : "2097", "target" : "5497", "shared_name" : "10166 (interacts with) 91137", "name" : "10166 (interacts with) 91137", "interaction" : "interacts with", "SUID" : 57918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57914", "source" : "2097", "target" : "1341", "shared_name" : "10166 (interacts with) 5009", "name" : "10166 (interacts with) 5009", "interaction" : "interacts with", "SUID" : 57914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57910", "source" : "2097", "target" : "5089", "shared_name" : "10166 (interacts with) 1373", "name" : "10166 (interacts with) 1373", "interaction" : "interacts with", "SUID" : 57910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57906", "source" : "2097", "target" : "1385", "shared_name" : "10166 (interacts with) 6520", "name" : "10166 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 57906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57902", "source" : "2097", "target" : "1741", "shared_name" : "10166 (interacts with) 5133", "name" : "10166 (interacts with) 5133", "interaction" : "interacts with", "SUID" : 57902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57990", "source" : "2093", "target" : "1093", "shared_name" : "4780 (interacts with) 5274", "name" : "4780 (interacts with) 5274", "interaction" : "interacts with", "SUID" : 57990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57986", "source" : "2093", "target" : "5081", "shared_name" : "4780 (interacts with) 5594", "name" : "4780 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 57986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57982", "source" : "2093", "target" : "5965", "shared_name" : "4780 (interacts with) 596", "name" : "4780 (interacts with) 596", "interaction" : "interacts with", "SUID" : 57982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57978", "source" : "2093", "target" : "3805", "shared_name" : "4780 (interacts with) 5621", "name" : "4780 (interacts with) 5621", "interaction" : "interacts with", "SUID" : 57978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57974", "source" : "2093", "target" : "4889", "shared_name" : "4780 (interacts with) 7295", "name" : "4780 (interacts with) 7295", "interaction" : "interacts with", "SUID" : 57974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57970", "source" : "2093", "target" : "1605", "shared_name" : "4780 (interacts with) 6648", "name" : "4780 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 57970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57966", "source" : "2093", "target" : "4041", "shared_name" : "4780 (interacts with) 847", "name" : "4780 (interacts with) 847", "interaction" : "interacts with", "SUID" : 57966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57962", "source" : "2093", "target" : "2901", "shared_name" : "4780 (interacts with) 6647", "name" : "4780 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 57962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57958", "source" : "2093", "target" : "1005", "shared_name" : "4780 (interacts with) 1728", "name" : "4780 (interacts with) 1728", "interaction" : "interacts with", "SUID" : 57958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57954", "source" : "2093", "target" : "4341", "shared_name" : "4780 (interacts with) 2729", "name" : "4780 (interacts with) 2729", "interaction" : "interacts with", "SUID" : 57954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57950", "source" : "2093", "target" : "6057", "shared_name" : "4780 (interacts with) 3162", "name" : "4780 (interacts with) 3162", "interaction" : "interacts with", "SUID" : 57950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57946", "source" : "2093", "target" : "2525", "shared_name" : "4780 (interacts with) 9451", "name" : "4780 (interacts with) 9451", "interaction" : "interacts with", "SUID" : 57946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58074", "source" : "2089", "target" : "1713", "shared_name" : "3939 (interacts with) 5631", "name" : "3939 (interacts with) 5631", "interaction" : "interacts with", "SUID" : 58074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58070", "source" : "2089", "target" : "1341", "shared_name" : "3939 (interacts with) 5009", "name" : "3939 (interacts with) 5009", "interaction" : "interacts with", "SUID" : 58070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58066", "source" : "2089", "target" : "3445", "shared_name" : "3939 (interacts with) 5091", "name" : "3939 (interacts with) 5091", "interaction" : "interacts with", "SUID" : 58066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58062", "source" : "2089", "target" : "4889", "shared_name" : "3939 (interacts with) 7295", "name" : "3939 (interacts with) 7295", "interaction" : "interacts with", "SUID" : 58062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58058", "source" : "2089", "target" : "2925", "shared_name" : "3939 (interacts with) 8802", "name" : "3939 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 58058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58054", "source" : "2089", "target" : "5025", "shared_name" : "3939 (interacts with) 6389", "name" : "3939 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 58054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58050", "source" : "2089", "target" : "3421", "shared_name" : "3939 (interacts with) 4967", "name" : "3939 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 58050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58046", "source" : "2089", "target" : "4401", "shared_name" : "3939 (interacts with) 55526", "name" : "3939 (interacts with) 55526", "interaction" : "interacts with", "SUID" : 58046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58042", "source" : "2089", "target" : "3425", "shared_name" : "3939 (interacts with) 8803", "name" : "3939 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 58042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58038", "source" : "2089", "target" : "2457", "shared_name" : "3939 (interacts with) 4143", "name" : "3939 (interacts with) 4143", "interaction" : "interacts with", "SUID" : 58038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58034", "source" : "2089", "target" : "853", "shared_name" : "3939 (interacts with) 60", "name" : "3939 (interacts with) 60", "interaction" : "interacts with", "SUID" : 58034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58030", "source" : "2089", "target" : "4945", "shared_name" : "3939 (interacts with) 4722", "name" : "3939 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 58030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58026", "source" : "2089", "target" : "397", "shared_name" : "3939 (interacts with) 50", "name" : "3939 (interacts with) 50", "interaction" : "interacts with", "SUID" : 58026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58022", "source" : "2089", "target" : "2005", "shared_name" : "3939 (interacts with) 4846", "name" : "3939 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 58022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58018", "source" : "2089", "target" : "1493", "shared_name" : "3939 (interacts with) 7428", "name" : "3939 (interacts with) 7428", "interaction" : "interacts with", "SUID" : 58018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58014", "source" : "2089", "target" : "2881", "shared_name" : "3939 (interacts with) 5160", "name" : "3939 (interacts with) 5160", "interaction" : "interacts with", "SUID" : 58014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58010", "source" : "2089", "target" : "1485", "shared_name" : "3939 (interacts with) 8050", "name" : "3939 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 58010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58006", "source" : "2089", "target" : "3541", "shared_name" : "3939 (interacts with) 4191", "name" : "3939 (interacts with) 4191", "interaction" : "interacts with", "SUID" : 58006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58002", "source" : "2089", "target" : "4169", "shared_name" : "3939 (interacts with) 10993", "name" : "3939 (interacts with) 10993", "interaction" : "interacts with", "SUID" : 58002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57998", "source" : "2089", "target" : "1289", "shared_name" : "3939 (interacts with) 6392", "name" : "3939 (interacts with) 6392", "interaction" : "interacts with", "SUID" : 57998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "57994", "source" : "2089", "target" : "1669", "shared_name" : "3939 (interacts with) 6390", "name" : "3939 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 57994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58394", "source" : "2085", "target" : "4209", "shared_name" : "2932 (interacts with) 4915", "name" : "2932 (interacts with) 4915", "interaction" : "interacts with", "SUID" : 58394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58390", "source" : "2085", "target" : "4237", "shared_name" : "2932 (interacts with) 4914", "name" : "2932 (interacts with) 4914", "interaction" : "interacts with", "SUID" : 58390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58386", "source" : "2085", "target" : "3685", "shared_name" : "2932 (interacts with) 3265", "name" : "2932 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 58386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58382", "source" : "2085", "target" : "4213", "shared_name" : "2932 (interacts with) 5295", "name" : "2932 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 58382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58378", "source" : "2085", "target" : "5225", "shared_name" : "2932 (interacts with) 5290", "name" : "2932 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 58378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58374", "source" : "2085", "target" : "5081", "shared_name" : "2932 (interacts with) 5594", "name" : "2932 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 58374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58370", "source" : "2085", "target" : "1069", "shared_name" : "2932 (interacts with) 5879", "name" : "2932 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 58370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58366", "source" : "2085", "target" : "5361", "shared_name" : "2932 (interacts with) 5604", "name" : "2932 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 58366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58362", "source" : "2085", "target" : "3017", "shared_name" : "2932 (interacts with) 4790", "name" : "2932 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 58362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58358", "source" : "2085", "target" : "4521", "shared_name" : "2932 (interacts with) 5894", "name" : "2932 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 58358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58354", "source" : "2085", "target" : "2153", "shared_name" : "2932 (interacts with) 7042", "name" : "2932 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 58354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58350", "source" : "2085", "target" : "3305", "shared_name" : "2932 (interacts with) 7040", "name" : "2932 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 58350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58346", "source" : "2085", "target" : "4857", "shared_name" : "2932 (interacts with) 5573", "name" : "2932 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 58346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58342", "source" : "2085", "target" : "1201", "shared_name" : "2932 (interacts with) 805", "name" : "2932 (interacts with) 805", "interaction" : "interacts with", "SUID" : 58342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58338", "source" : "2085", "target" : "993", "shared_name" : "2932 (interacts with) 801", "name" : "2932 (interacts with) 801", "interaction" : "interacts with", "SUID" : 58338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58334", "source" : "2085", "target" : "1241", "shared_name" : "2932 (interacts with) 808", "name" : "2932 (interacts with) 808", "interaction" : "interacts with", "SUID" : 58334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58330", "source" : "2085", "target" : "3409", "shared_name" : "2932 (interacts with) 7043", "name" : "2932 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 58330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58326", "source" : "2085", "target" : "5037", "shared_name" : "2932 (interacts with) 5515", "name" : "2932 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 58326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58322", "source" : "2085", "target" : "565", "shared_name" : "2932 (interacts with) 4772", "name" : "2932 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 58322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58318", "source" : "2085", "target" : "3593", "shared_name" : "2932 (interacts with) 5530", "name" : "2932 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 58318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58314", "source" : "2085", "target" : "2625", "shared_name" : "2932 (interacts with) 3065", "name" : "2932 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 58314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58310", "source" : "2085", "target" : "5761", "shared_name" : "2932 (interacts with) 4208", "name" : "2932 (interacts with) 4208", "interaction" : "interacts with", "SUID" : 58310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58306", "source" : "2085", "target" : "4533", "shared_name" : "2932 (interacts with) 4089", "name" : "2932 (interacts with) 4089", "interaction" : "interacts with", "SUID" : 58306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58302", "source" : "2085", "target" : "4649", "shared_name" : "2932 (interacts with) 3479", "name" : "2932 (interacts with) 3479", "interaction" : "interacts with", "SUID" : 58302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58298", "source" : "2085", "target" : "5625", "shared_name" : "2932 (interacts with) 595", "name" : "2932 (interacts with) 595", "interaction" : "interacts with", "SUID" : 58298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58294", "source" : "2085", "target" : "817", "shared_name" : "2932 (interacts with) 5728", "name" : "2932 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 58294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58290", "source" : "2085", "target" : "2613", "shared_name" : "2932 (interacts with) 472", "name" : "2932 (interacts with) 472", "interaction" : "interacts with", "SUID" : 58290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58286", "source" : "2085", "target" : "2433", "shared_name" : "2932 (interacts with) 6927", "name" : "2932 (interacts with) 6927", "interaction" : "interacts with", "SUID" : 58286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58282", "source" : "2085", "target" : "6169", "shared_name" : "2932 (interacts with) 4088", "name" : "2932 (interacts with) 4088", "interaction" : "interacts with", "SUID" : 58282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58278", "source" : "2085", "target" : "5745", "shared_name" : "2932 (interacts with) 7471", "name" : "2932 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 58278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58274", "source" : "2085", "target" : "3041", "shared_name" : "2932 (interacts with) 5663", "name" : "2932 (interacts with) 5663", "interaction" : "interacts with", "SUID" : 58274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58270", "source" : "2085", "target" : "2793", "shared_name" : "2932 (interacts with) 8894", "name" : "2932 (interacts with) 8894", "interaction" : "interacts with", "SUID" : 58270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58266", "source" : "2085", "target" : "4853", "shared_name" : "2932 (interacts with) 545", "name" : "2932 (interacts with) 545", "interaction" : "interacts with", "SUID" : 58266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58262", "source" : "2085", "target" : "4909", "shared_name" : "2932 (interacts with) 823", "name" : "2932 (interacts with) 823", "interaction" : "interacts with", "SUID" : 58262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58258", "source" : "2085", "target" : "1225", "shared_name" : "2932 (interacts with) 375", "name" : "2932 (interacts with) 375", "interaction" : "interacts with", "SUID" : 58258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58254", "source" : "2085", "target" : "4149", "shared_name" : "2932 (interacts with) 8893", "name" : "2932 (interacts with) 8893", "interaction" : "interacts with", "SUID" : 58254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58250", "source" : "2085", "target" : "2921", "shared_name" : "2932 (interacts with) 5981", "name" : "2932 (interacts with) 5981", "interaction" : "interacts with", "SUID" : 58250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58246", "source" : "2085", "target" : "1789", "shared_name" : "2932 (interacts with) 652", "name" : "2932 (interacts with) 652", "interaction" : "interacts with", "SUID" : 58246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58242", "source" : "2085", "target" : "257", "shared_name" : "2932 (interacts with) 6469", "name" : "2932 (interacts with) 6469", "interaction" : "interacts with", "SUID" : 58242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58238", "source" : "2085", "target" : "3273", "shared_name" : "2932 (interacts with) 351", "name" : "2932 (interacts with) 351", "interaction" : "interacts with", "SUID" : 58238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58234", "source" : "2085", "target" : "4493", "shared_name" : "2932 (interacts with) 5727", "name" : "2932 (interacts with) 5727", "interaction" : "interacts with", "SUID" : 58234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58230", "source" : "2085", "target" : "5773", "shared_name" : "2932 (interacts with) 9181", "name" : "2932 (interacts with) 9181", "interaction" : "interacts with", "SUID" : 58230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58226", "source" : "2085", "target" : "1765", "shared_name" : "2932 (interacts with) 5308", "name" : "2932 (interacts with) 5308", "interaction" : "interacts with", "SUID" : 58226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58222", "source" : "2085", "target" : "4469", "shared_name" : "2932 (interacts with) 8295", "name" : "2932 (interacts with) 8295", "interaction" : "interacts with", "SUID" : 58222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58218", "source" : "2085", "target" : "1181", "shared_name" : "2932 (interacts with) 51684", "name" : "2932 (interacts with) 51684", "interaction" : "interacts with", "SUID" : 58218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58214", "source" : "2085", "target" : "2213", "shared_name" : "2932 (interacts with) 4851", "name" : "2932 (interacts with) 4851", "interaction" : "interacts with", "SUID" : 58214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58210", "source" : "2085", "target" : "2525", "shared_name" : "2932 (interacts with) 9451", "name" : "2932 (interacts with) 9451", "interaction" : "interacts with", "SUID" : 58210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58206", "source" : "2085", "target" : "4905", "shared_name" : "2932 (interacts with) 440275", "name" : "2932 (interacts with) 440275", "interaction" : "interacts with", "SUID" : 58206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58202", "source" : "2085", "target" : "569", "shared_name" : "2932 (interacts with) 7048", "name" : "2932 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 58202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58198", "source" : "2085", "target" : "865", "shared_name" : "2932 (interacts with) 3480", "name" : "2932 (interacts with) 3480", "interaction" : "interacts with", "SUID" : 58198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58194", "source" : "2085", "target" : "4917", "shared_name" : "2932 (interacts with) 10243", "name" : "2932 (interacts with) 10243", "interaction" : "interacts with", "SUID" : 58194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58190", "source" : "2085", "target" : "837", "shared_name" : "2932 (interacts with) 8892", "name" : "2932 (interacts with) 8892", "interaction" : "interacts with", "SUID" : 58190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58186", "source" : "2085", "target" : "4837", "shared_name" : "2932 (interacts with) 8891", "name" : "2932 (interacts with) 8891", "interaction" : "interacts with", "SUID" : 58186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58182", "source" : "2085", "target" : "4453", "shared_name" : "2932 (interacts with) 4744", "name" : "2932 (interacts with) 4744", "interaction" : "interacts with", "SUID" : 58182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58178", "source" : "2085", "target" : "1801", "shared_name" : "2932 (interacts with) 1641", "name" : "2932 (interacts with) 1641", "interaction" : "interacts with", "SUID" : 58178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58174", "source" : "2085", "target" : "929", "shared_name" : "2932 (interacts with) 1967", "name" : "2932 (interacts with) 1967", "interaction" : "interacts with", "SUID" : 58174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58170", "source" : "2085", "target" : "1245", "shared_name" : "2932 (interacts with) 4137", "name" : "2932 (interacts with) 4137", "interaction" : "interacts with", "SUID" : 58170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58166", "source" : "2085", "target" : "841", "shared_name" : "2932 (interacts with) 8890", "name" : "2932 (interacts with) 8890", "interaction" : "interacts with", "SUID" : 58166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58162", "source" : "2085", "target" : "5321", "shared_name" : "2932 (interacts with) 5743", "name" : "2932 (interacts with) 5743", "interaction" : "interacts with", "SUID" : 58162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58158", "source" : "2085", "target" : "3925", "shared_name" : "2932 (interacts with) 1051", "name" : "2932 (interacts with) 1051", "interaction" : "interacts with", "SUID" : 58158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58154", "source" : "2085", "target" : "3933", "shared_name" : "2932 (interacts with) 10524", "name" : "2932 (interacts with) 10524", "interaction" : "interacts with", "SUID" : 58154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58150", "source" : "2085", "target" : "1285", "shared_name" : "2932 (interacts with) 7249", "name" : "2932 (interacts with) 7249", "interaction" : "interacts with", "SUID" : 58150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58146", "source" : "2085", "target" : "3149", "shared_name" : "2932 (interacts with) 3630", "name" : "2932 (interacts with) 3630", "interaction" : "interacts with", "SUID" : 58146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58142", "source" : "2085", "target" : "5185", "shared_name" : "2932 (interacts with) 1499", "name" : "2932 (interacts with) 1499", "interaction" : "interacts with", "SUID" : 58142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58138", "source" : "2085", "target" : "873", "shared_name" : "2932 (interacts with) 1385", "name" : "2932 (interacts with) 1385", "interaction" : "interacts with", "SUID" : 58138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58134", "source" : "2085", "target" : "4173", "shared_name" : "2932 (interacts with) 23499", "name" : "2932 (interacts with) 23499", "interaction" : "interacts with", "SUID" : 58134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58130", "source" : "2085", "target" : "1405", "shared_name" : "2932 (interacts with) 998", "name" : "2932 (interacts with) 998", "interaction" : "interacts with", "SUID" : 58130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58126", "source" : "2085", "target" : "1293", "shared_name" : "2932 (interacts with) 2908", "name" : "2932 (interacts with) 2908", "interaction" : "interacts with", "SUID" : 58126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58122", "source" : "2085", "target" : "1621", "shared_name" : "2932 (interacts with) 1432", "name" : "2932 (interacts with) 1432", "interaction" : "interacts with", "SUID" : 58122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58118", "source" : "2085", "target" : "2305", "shared_name" : "2932 (interacts with) 6908", "name" : "2932 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 58118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58114", "source" : "2085", "target" : "2733", "shared_name" : "2932 (interacts with) 5718", "name" : "2932 (interacts with) 5718", "interaction" : "interacts with", "SUID" : 58114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58110", "source" : "2085", "target" : "5641", "shared_name" : "2932 (interacts with) 5518", "name" : "2932 (interacts with) 5518", "interaction" : "interacts with", "SUID" : 58110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58106", "source" : "2085", "target" : "1857", "shared_name" : "2932 (interacts with) 9533", "name" : "2932 (interacts with) 9533", "interaction" : "interacts with", "SUID" : 58106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58102", "source" : "2085", "target" : "5621", "shared_name" : "2932 (interacts with) 25885", "name" : "2932 (interacts with) 25885", "interaction" : "interacts with", "SUID" : 58102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58098", "source" : "2085", "target" : "5861", "shared_name" : "2932 (interacts with) 5435", "name" : "2932 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 58098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58094", "source" : "2085", "target" : "1273", "shared_name" : "2932 (interacts with) 10059", "name" : "2932 (interacts with) 10059", "interaction" : "interacts with", "SUID" : 58094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58090", "source" : "2085", "target" : "981", "shared_name" : "2932 (interacts with) 7157", "name" : "2932 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 58090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58086", "source" : "2085", "target" : "5509", "shared_name" : "2932 (interacts with) 207", "name" : "2932 (interacts with) 207", "interaction" : "interacts with", "SUID" : 58086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58082", "source" : "2085", "target" : "5917", "shared_name" : "2932 (interacts with) 4287", "name" : "2932 (interacts with) 4287", "interaction" : "interacts with", "SUID" : 58082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58078", "source" : "2085", "target" : "997", "shared_name" : "2932 (interacts with) 7431", "name" : "2932 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 58078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58466", "source" : "2081", "target" : "4065", "shared_name" : "5468 (interacts with) 7124", "name" : "5468 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 58466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58462", "source" : "2081", "target" : "5941", "shared_name" : "5468 (interacts with) 5914", "name" : "5468 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 58462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58458", "source" : "2081", "target" : "3825", "shared_name" : "5468 (interacts with) 5915", "name" : "5468 (interacts with) 5915", "interaction" : "interacts with", "SUID" : 58458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58454", "source" : "2081", "target" : "1829", "shared_name" : "5468 (interacts with) 7421", "name" : "5468 (interacts with) 7421", "interaction" : "interacts with", "SUID" : 58454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58450", "source" : "2081", "target" : "4589", "shared_name" : "5468 (interacts with) 8431", "name" : "5468 (interacts with) 8431", "interaction" : "interacts with", "SUID" : 58450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58446", "source" : "2081", "target" : "2625", "shared_name" : "5468 (interacts with) 3065", "name" : "5468 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 58446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58442", "source" : "2081", "target" : "1509", "shared_name" : "5468 (interacts with) 63976", "name" : "5468 (interacts with) 63976", "interaction" : "interacts with", "SUID" : 58442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58438", "source" : "2081", "target" : "6129", "shared_name" : "5468 (interacts with) 2263", "name" : "5468 (interacts with) 2263", "interaction" : "interacts with", "SUID" : 58438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58434", "source" : "2081", "target" : "1281", "shared_name" : "5468 (interacts with) 171023", "name" : "5468 (interacts with) 171023", "interaction" : "interacts with", "SUID" : 58434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58430", "source" : "2081", "target" : "4981", "shared_name" : "5468 (interacts with) 6774", "name" : "5468 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 58430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58426", "source" : "2081", "target" : "3925", "shared_name" : "5468 (interacts with) 1051", "name" : "5468 (interacts with) 1051", "interaction" : "interacts with", "SUID" : 58426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58422", "source" : "2081", "target" : "3305", "shared_name" : "5468 (interacts with) 7040", "name" : "5468 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 58422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58418", "source" : "2081", "target" : "3577", "shared_name" : "5468 (interacts with) 5605", "name" : "5468 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 58418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58414", "source" : "2081", "target" : "877", "shared_name" : "5468 (interacts with) 7341", "name" : "5468 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 58414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58410", "source" : "2081", "target" : "4949", "shared_name" : "5468 (interacts with) 5970", "name" : "5468 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 58410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58406", "source" : "2081", "target" : "3821", "shared_name" : "5468 (interacts with) 10891", "name" : "5468 (interacts with) 10891", "interaction" : "interacts with", "SUID" : 58406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58402", "source" : "2081", "target" : "3517", "shared_name" : "5468 (interacts with) 2033", "name" : "5468 (interacts with) 2033", "interaction" : "interacts with", "SUID" : 58402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58398", "source" : "2081", "target" : "4097", "shared_name" : "5468 (interacts with) 9611", "name" : "5468 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 58398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58486", "source" : "2077", "target" : "1665", "shared_name" : "7528 (interacts with) 54332", "name" : "7528 (interacts with) 54332", "interaction" : "interacts with", "SUID" : 58486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58482", "source" : "2077", "target" : "665", "shared_name" : "7528 (interacts with) 3309", "name" : "7528 (interacts with) 3309", "interaction" : "interacts with", "SUID" : 58482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58478", "source" : "2077", "target" : "3621", "shared_name" : "7528 (interacts with) 6834", "name" : "7528 (interacts with) 6834", "interaction" : "interacts with", "SUID" : 58478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58474", "source" : "2077", "target" : "2213", "shared_name" : "7528 (interacts with) 4851", "name" : "7528 (interacts with) 4851", "interaction" : "interacts with", "SUID" : 58474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58470", "source" : "2077", "target" : "5453", "shared_name" : "7528 (interacts with) 4204", "name" : "7528 (interacts with) 4204", "interaction" : "interacts with", "SUID" : 58470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58494", "source" : "2073", "target" : "2361", "shared_name" : "5393 (interacts with) 51010", "name" : "5393 (interacts with) 51010", "interaction" : "interacts with", "SUID" : 58494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58490", "source" : "2073", "target" : "3097", "shared_name" : "5393 (interacts with) 11340", "name" : "5393 (interacts with) 11340", "interaction" : "interacts with", "SUID" : 58490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58538", "source" : "2061", "target" : "973", "shared_name" : "3570 (interacts with) 5595", "name" : "3570 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 58538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58534", "source" : "2061", "target" : "5081", "shared_name" : "3570 (interacts with) 5594", "name" : "3570 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 58534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58530", "source" : "2061", "target" : "4213", "shared_name" : "3570 (interacts with) 5295", "name" : "3570 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 58530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58526", "source" : "2061", "target" : "5361", "shared_name" : "3570 (interacts with) 5604", "name" : "3570 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 58526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58522", "source" : "2061", "target" : "5225", "shared_name" : "3570 (interacts with) 5290", "name" : "3570 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 58522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58518", "source" : "2061", "target" : "637", "shared_name" : "3570 (interacts with) 6654", "name" : "3570 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 58518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58514", "source" : "2061", "target" : "4521", "shared_name" : "3570 (interacts with) 5894", "name" : "3570 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 58514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58510", "source" : "2061", "target" : "4981", "shared_name" : "3570 (interacts with) 6774", "name" : "3570 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 58510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58506", "source" : "2061", "target" : "805", "shared_name" : "3570 (interacts with) 6772", "name" : "3570 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 58506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58502", "source" : "2061", "target" : "3577", "shared_name" : "3570 (interacts with) 5605", "name" : "3570 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 58502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58498", "source" : "2061", "target" : "6145", "shared_name" : "3570 (interacts with) 93627", "name" : "3570 (interacts with) 93627", "interaction" : "interacts with", "SUID" : 58498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58542", "source" : "2057", "target" : "1529", "shared_name" : "23321 (interacts with) 3458", "name" : "23321 (interacts with) 3458", "interaction" : "interacts with", "SUID" : 58542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58566", "source" : "2053", "target" : "3769", "shared_name" : "7468 (interacts with) 8085", "name" : "7468 (interacts with) 8085", "interaction" : "interacts with", "SUID" : 58566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58562", "source" : "2053", "target" : "2281", "shared_name" : "7468 (interacts with) 79823", "name" : "7468 (interacts with) 79823", "interaction" : "interacts with", "SUID" : 58562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58558", "source" : "2053", "target" : "3709", "shared_name" : "7468 (interacts with) 9757", "name" : "7468 (interacts with) 9757", "interaction" : "interacts with", "SUID" : 58558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58554", "source" : "2053", "target" : "1629", "shared_name" : "7468 (interacts with) 6047", "name" : "7468 (interacts with) 6047", "interaction" : "interacts with", "SUID" : 58554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58550", "source" : "2053", "target" : "877", "shared_name" : "7468 (interacts with) 7341", "name" : "7468 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 58550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58546", "source" : "2053", "target" : "5849", "shared_name" : "7468 (interacts with) 6613", "name" : "7468 (interacts with) 6613", "interaction" : "interacts with", "SUID" : 58546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58598", "source" : "2049", "target" : "1301", "shared_name" : "4552 (interacts with) 5095", "name" : "4552 (interacts with) 5095", "interaction" : "interacts with", "SUID" : 58598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58594", "source" : "2049", "target" : "3445", "shared_name" : "4552 (interacts with) 5091", "name" : "4552 (interacts with) 5091", "interaction" : "interacts with", "SUID" : 58594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58590", "source" : "2049", "target" : "5825", "shared_name" : "4552 (interacts with) 4594", "name" : "4552 (interacts with) 4594", "interaction" : "interacts with", "SUID" : 58590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58586", "source" : "2049", "target" : "653", "shared_name" : "4552 (interacts with) 6948", "name" : "4552 (interacts with) 6948", "interaction" : "interacts with", "SUID" : 58586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58582", "source" : "2049", "target" : "1089", "shared_name" : "4552 (interacts with) 5917", "name" : "4552 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 58582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58578", "source" : "2049", "target" : "5029", "shared_name" : "4552 (interacts with) 4842", "name" : "4552 (interacts with) 4842", "interaction" : "interacts with", "SUID" : 58578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58574", "source" : "2049", "target" : "4681", "shared_name" : "4552 (interacts with) 4843", "name" : "4552 (interacts with) 4843", "interaction" : "interacts with", "SUID" : 58574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58570", "source" : "2049", "target" : "2005", "shared_name" : "4552 (interacts with) 4846", "name" : "4552 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 58570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58622", "source" : "2045", "target" : "2021", "shared_name" : "51102 (interacts with) 5428", "name" : "51102 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 58622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58618", "source" : "2045", "target" : "3461", "shared_name" : "51102 (interacts with) 5538", "name" : "51102 (interacts with) 5538", "interaction" : "interacts with", "SUID" : 58618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58614", "source" : "2045", "target" : "4625", "shared_name" : "51102 (interacts with) 6785", "name" : "51102 (interacts with) 6785", "interaction" : "interacts with", "SUID" : 58614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58610", "source" : "2045", "target" : "365", "shared_name" : "51102 (interacts with) 64834", "name" : "51102 (interacts with) 64834", "interaction" : "interacts with", "SUID" : 58610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58606", "source" : "2045", "target" : "1721", "shared_name" : "51102 (interacts with) 51807", "name" : "51102 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 58606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58602", "source" : "2045", "target" : "489", "shared_name" : "51102 (interacts with) 1629", "name" : "51102 (interacts with) 1629", "interaction" : "interacts with", "SUID" : 58602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58626", "source" : "2033", "target" : "665", "shared_name" : "8741 (interacts with) 3309", "name" : "8741 (interacts with) 3309", "interaction" : "interacts with", "SUID" : 58626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58790", "source" : "2029", "target" : "4309", "shared_name" : "4329 (interacts with) 5654", "name" : "4329 (interacts with) 5654", "interaction" : "interacts with", "SUID" : 58790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58786", "source" : "2029", "target" : "4941", "shared_name" : "4329 (interacts with) 6342", "name" : "4329 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 58786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58782", "source" : "2029", "target" : "5677", "shared_name" : "4329 (interacts with) 5189", "name" : "4329 (interacts with) 5189", "interaction" : "interacts with", "SUID" : 58782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58778", "source" : "2029", "target" : "4505", "shared_name" : "4329 (interacts with) 5190", "name" : "4329 (interacts with) 5190", "interaction" : "interacts with", "SUID" : 58778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58774", "source" : "2029", "target" : "1669", "shared_name" : "4329 (interacts with) 6390", "name" : "4329 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 58774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58770", "source" : "2029", "target" : "3973", "shared_name" : "4329 (interacts with) 55572", "name" : "4329 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 58770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58766", "source" : "2029", "target" : "3977", "shared_name" : "4329 (interacts with) 51477", "name" : "4329 (interacts with) 51477", "interaction" : "interacts with", "SUID" : 58766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58762", "source" : "2029", "target" : "5825", "shared_name" : "4329 (interacts with) 4594", "name" : "4329 (interacts with) 4594", "interaction" : "interacts with", "SUID" : 58762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58758", "source" : "2029", "target" : "1301", "shared_name" : "4329 (interacts with) 5095", "name" : "4329 (interacts with) 5095", "interaction" : "interacts with", "SUID" : 58758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58754", "source" : "2029", "target" : "1021", "shared_name" : "4329 (interacts with) 5096", "name" : "4329 (interacts with) 5096", "interaction" : "interacts with", "SUID" : 58754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58750", "source" : "2029", "target" : "485", "shared_name" : "4329 (interacts with) 593", "name" : "4329 (interacts with) 593", "interaction" : "interacts with", "SUID" : 58750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58746", "source" : "2029", "target" : "493", "shared_name" : "4329 (interacts with) 594", "name" : "4329 (interacts with) 594", "interaction" : "interacts with", "SUID" : 58746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58742", "source" : "2029", "target" : "2925", "shared_name" : "4329 (interacts with) 8802", "name" : "4329 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 58742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58738", "source" : "2029", "target" : "3425", "shared_name" : "4329 (interacts with) 8803", "name" : "4329 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 58738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58734", "source" : "2029", "target" : "3893", "shared_name" : "4329 (interacts with) 151056", "name" : "4329 (interacts with) 151056", "interaction" : "interacts with", "SUID" : 58734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58730", "source" : "2029", "target" : "2853", "shared_name" : "4329 (interacts with) 8398", "name" : "4329 (interacts with) 8398", "interaction" : "interacts with", "SUID" : 58730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58726", "source" : "2029", "target" : "3177", "shared_name" : "4329 (interacts with) 5321", "name" : "4329 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 58726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58722", "source" : "2029", "target" : "2025", "shared_name" : "4329 (interacts with) 549", "name" : "4329 (interacts with) 549", "interaction" : "interacts with", "SUID" : 58722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58718", "source" : "2029", "target" : "1721", "shared_name" : "4329 (interacts with) 51807", "name" : "4329 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 58718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58714", "source" : "2029", "target" : "5305", "shared_name" : "4329 (interacts with) 6901", "name" : "4329 (interacts with) 6901", "interaction" : "interacts with", "SUID" : 58714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58710", "source" : "2029", "target" : "409", "shared_name" : "4329 (interacts with) 10558", "name" : "4329 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 58710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58706", "source" : "2029", "target" : "681", "shared_name" : "4329 (interacts with) 6646", "name" : "4329 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 58706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58702", "source" : "2029", "target" : "3461", "shared_name" : "4329 (interacts with) 5538", "name" : "4329 (interacts with) 5538", "interaction" : "interacts with", "SUID" : 58702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58698", "source" : "2029", "target" : "3421", "shared_name" : "4329 (interacts with) 4967", "name" : "4329 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 58698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58694", "source" : "2029", "target" : "385", "shared_name" : "4329 (interacts with) 5319", "name" : "4329 (interacts with) 5319", "interaction" : "interacts with", "SUID" : 58694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58690", "source" : "2029", "target" : "1673", "shared_name" : "4329 (interacts with) 138050", "name" : "4329 (interacts with) 138050", "interaction" : "interacts with", "SUID" : 58690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58686", "source" : "2029", "target" : "2897", "shared_name" : "4329 (interacts with) 1737", "name" : "4329 (interacts with) 1737", "interaction" : "interacts with", "SUID" : 58686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58682", "source" : "2029", "target" : "1277", "shared_name" : "4329 (interacts with) 79143", "name" : "4329 (interacts with) 79143", "interaction" : "interacts with", "SUID" : 58682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58678", "source" : "2029", "target" : "1849", "shared_name" : "4329 (interacts with) 26275", "name" : "4329 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 58678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58674", "source" : "2029", "target" : "4133", "shared_name" : "4329 (interacts with) 427", "name" : "4329 (interacts with) 427", "interaction" : "interacts with", "SUID" : 58674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58670", "source" : "2029", "target" : "1981", "shared_name" : "4329 (interacts with) 339983", "name" : "4329 (interacts with) 339983", "interaction" : "interacts with", "SUID" : 58670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58666", "source" : "2029", "target" : "801", "shared_name" : "4329 (interacts with) 1376", "name" : "4329 (interacts with) 1376", "interaction" : "interacts with", "SUID" : 58666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58662", "source" : "2029", "target" : "5909", "shared_name" : "4329 (interacts with) 1374", "name" : "4329 (interacts with) 1374", "interaction" : "interacts with", "SUID" : 58662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58658", "source" : "2029", "target" : "1585", "shared_name" : "4329 (interacts with) 80347", "name" : "4329 (interacts with) 80347", "interaction" : "interacts with", "SUID" : 58658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58654", "source" : "2029", "target" : "425", "shared_name" : "4329 (interacts with) 1103", "name" : "4329 (interacts with) 1103", "interaction" : "interacts with", "SUID" : 58654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58650", "source" : "2029", "target" : "4169", "shared_name" : "4329 (interacts with) 10993", "name" : "4329 (interacts with) 10993", "interaction" : "interacts with", "SUID" : 58650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58646", "source" : "2029", "target" : "1437", "shared_name" : "4329 (interacts with) 80025", "name" : "4329 (interacts with) 80025", "interaction" : "interacts with", "SUID" : 58646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58642", "source" : "2029", "target" : "5049", "shared_name" : "4329 (interacts with) 6697", "name" : "4329 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 58642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58638", "source" : "2029", "target" : "2089", "shared_name" : "4329 (interacts with) 3939", "name" : "4329 (interacts with) 3939", "interaction" : "interacts with", "SUID" : 58638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58634", "source" : "2029", "target" : "6093", "shared_name" : "4329 (interacts with) 953", "name" : "4329 (interacts with) 953", "interaction" : "interacts with", "SUID" : 58634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58630", "source" : "2029", "target" : "5173", "shared_name" : "4329 (interacts with) 1718", "name" : "4329 (interacts with) 1718", "interaction" : "interacts with", "SUID" : 58630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58822", "source" : "2025", "target" : "521", "shared_name" : "549 (interacts with) 85476", "name" : "549 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 58822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58818", "source" : "2025", "target" : "5737", "shared_name" : "549 (interacts with) 84340", "name" : "549 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 58818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58814", "source" : "2025", "target" : "2925", "shared_name" : "549 (interacts with) 8802", "name" : "549 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 58814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58810", "source" : "2025", "target" : "1713", "shared_name" : "549 (interacts with) 5631", "name" : "549 (interacts with) 5631", "interaction" : "interacts with", "SUID" : 58810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58806", "source" : "2025", "target" : "1189", "shared_name" : "549 (interacts with) 7915", "name" : "549 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 58806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58802", "source" : "2025", "target" : "6093", "shared_name" : "549 (interacts with) 953", "name" : "549 (interacts with) 953", "interaction" : "interacts with", "SUID" : 58802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58798", "source" : "2025", "target" : "485", "shared_name" : "549 (interacts with) 593", "name" : "549 (interacts with) 593", "interaction" : "interacts with", "SUID" : 58798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58794", "source" : "2025", "target" : "493", "shared_name" : "549 (interacts with) 594", "name" : "549 (interacts with) 594", "interaction" : "interacts with", "SUID" : 58794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58926", "source" : "2021", "target" : "1325", "shared_name" : "5428 (interacts with) 7284", "name" : "5428 (interacts with) 7284", "interaction" : "interacts with", "SUID" : 58926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58922", "source" : "2021", "target" : "3705", "shared_name" : "5428 (interacts with) 87178", "name" : "5428 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 58922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58918", "source" : "2021", "target" : "889", "shared_name" : "5428 (interacts with) 80224", "name" : "5428 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 58918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58914", "source" : "2021", "target" : "2477", "shared_name" : "5428 (interacts with) 57107", "name" : "5428 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 58914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58910", "source" : "2021", "target" : "3545", "shared_name" : "5428 (interacts with) 708", "name" : "5428 (interacts with) 708", "interaction" : "interacts with", "SUID" : 58910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58906", "source" : "2021", "target" : "2009", "shared_name" : "5428 (interacts with) 79133", "name" : "5428 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 58906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58902", "source" : "2021", "target" : "4409", "shared_name" : "5428 (interacts with) 6341", "name" : "5428 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 58902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58898", "source" : "2021", "target" : "501", "shared_name" : "5428 (interacts with) 65993", "name" : "5428 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 58898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58894", "source" : "2021", "target" : "2105", "shared_name" : "5428 (interacts with) 56945", "name" : "5428 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 58894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58890", "source" : "2021", "target" : "3973", "shared_name" : "5428 (interacts with) 55572", "name" : "5428 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 58890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58886", "source" : "2021", "target" : "4141", "shared_name" : "5428 (interacts with) 617", "name" : "5428 (interacts with) 617", "interaction" : "interacts with", "SUID" : 58886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58882", "source" : "2021", "target" : "521", "shared_name" : "5428 (interacts with) 85476", "name" : "5428 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 58882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58878", "source" : "2021", "target" : "5737", "shared_name" : "5428 (interacts with) 84340", "name" : "5428 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 58878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58874", "source" : "2021", "target" : "4101", "shared_name" : "5428 (interacts with) 65260", "name" : "5428 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 58874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58870", "source" : "2021", "target" : "4621", "shared_name" : "5428 (interacts with) 57038", "name" : "5428 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 58870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58866", "source" : "2021", "target" : "4757", "shared_name" : "5428 (interacts with) 9997", "name" : "5428 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 58866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58862", "source" : "2021", "target" : "5189", "shared_name" : "5428 (interacts with) 57176", "name" : "5428 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 58862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58858", "source" : "2021", "target" : "1197", "shared_name" : "5428 (interacts with) 79587", "name" : "5428 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 58858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58854", "source" : "2021", "target" : "4897", "shared_name" : "5428 (interacts with) 55149", "name" : "5428 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 58854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58850", "source" : "2021", "target" : "713", "shared_name" : "5428 (interacts with) 7019", "name" : "5428 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 58850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58846", "source" : "2021", "target" : "721", "shared_name" : "5428 (interacts with) 79731", "name" : "5428 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 58846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58842", "source" : "2021", "target" : "6001", "shared_name" : "5428 (interacts with) 55157", "name" : "5428 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 58842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58838", "source" : "2021", "target" : "1129", "shared_name" : "5428 (interacts with) 57505", "name" : "5428 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 58838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58834", "source" : "2021", "target" : "4869", "shared_name" : "5428 (interacts with) 92935", "name" : "5428 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 58834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58830", "source" : "2021", "target" : "5085", "shared_name" : "5428 (interacts with) 56652", "name" : "5428 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 58830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58826", "source" : "2021", "target" : "6073", "shared_name" : "5428 (interacts with) 92170", "name" : "5428 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 58826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58938", "source" : "2017", "target" : "2265", "shared_name" : "1116 (interacts with) 11342", "name" : "1116 (interacts with) 11342", "interaction" : "interacts with", "SUID" : 58938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58934", "source" : "2017", "target" : "1401", "shared_name" : "1116 (interacts with) 1118", "name" : "1116 (interacts with) 1118", "interaction" : "interacts with", "SUID" : 58934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58930", "source" : "2017", "target" : "5777", "shared_name" : "1116 (interacts with) 383", "name" : "1116 (interacts with) 383", "interaction" : "interacts with", "SUID" : 58930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59050", "source" : "2009", "target" : "1053", "shared_name" : "79133 (interacts with) 81689", "name" : "79133 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 59050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59046", "source" : "2009", "target" : "3705", "shared_name" : "79133 (interacts with) 87178", "name" : "79133 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 59046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59042", "source" : "2009", "target" : "1377", "shared_name" : "79133 (interacts with) 81570", "name" : "79133 (interacts with) 81570", "interaction" : "interacts with", "SUID" : 59042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59038", "source" : "2009", "target" : "3325", "shared_name" : "79133 (interacts with) 9517", "name" : "79133 (interacts with) 9517", "interaction" : "interacts with", "SUID" : 59038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59034", "source" : "2009", "target" : "521", "shared_name" : "79133 (interacts with) 85476", "name" : "79133 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 59034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59030", "source" : "2009", "target" : "6181", "shared_name" : "79133 (interacts with) 84987", "name" : "79133 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 59030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59026", "source" : "2009", "target" : "4757", "shared_name" : "79133 (interacts with) 9997", "name" : "79133 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 59026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59022", "source" : "2009", "target" : "1661", "shared_name" : "79133 (interacts with) 91942", "name" : "79133 (interacts with) 91942", "interaction" : "interacts with", "SUID" : 59022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59018", "source" : "2009", "target" : "4869", "shared_name" : "79133 (interacts with) 92935", "name" : "79133 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 59018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59014", "source" : "2009", "target" : "721", "shared_name" : "79133 (interacts with) 79731", "name" : "79133 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 59014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59010", "source" : "2009", "target" : "1197", "shared_name" : "79133 (interacts with) 79587", "name" : "79133 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 59010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59006", "source" : "2009", "target" : "889", "shared_name" : "79133 (interacts with) 80224", "name" : "79133 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 59006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59002", "source" : "2009", "target" : "6073", "shared_name" : "79133 (interacts with) 92170", "name" : "79133 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 59002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58998", "source" : "2009", "target" : "5737", "shared_name" : "79133 (interacts with) 84340", "name" : "79133 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 58998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58994", "source" : "2009", "target" : "5833", "shared_name" : "79133 (interacts with) 4726", "name" : "79133 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 58994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58990", "source" : "2009", "target" : "4069", "shared_name" : "79133 (interacts with) 374291", "name" : "79133 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 58990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58986", "source" : "2009", "target" : "5821", "shared_name" : "79133 (interacts with) 4724", "name" : "79133 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 58986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58982", "source" : "2009", "target" : "1869", "shared_name" : "79133 (interacts with) 4729", "name" : "79133 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 58982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58978", "source" : "2009", "target" : "2797", "shared_name" : "79133 (interacts with) 4728", "name" : "79133 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 58978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58974", "source" : "2009", "target" : "1573", "shared_name" : "79133 (interacts with) 4723", "name" : "79133 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 58974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58970", "source" : "2009", "target" : "2689", "shared_name" : "79133 (interacts with) 4715", "name" : "79133 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 58970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58966", "source" : "2009", "target" : "5845", "shared_name" : "79133 (interacts with) 4714", "name" : "79133 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 58966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58962", "source" : "2009", "target" : "2753", "shared_name" : "79133 (interacts with) 4720", "name" : "79133 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 58962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58958", "source" : "2009", "target" : "4945", "shared_name" : "79133 (interacts with) 4722", "name" : "79133 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 58958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58954", "source" : "2009", "target" : "4017", "shared_name" : "79133 (interacts with) 4719", "name" : "79133 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 58954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58950", "source" : "2009", "target" : "5853", "shared_name" : "79133 (interacts with) 4709", "name" : "79133 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 58950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58946", "source" : "2009", "target" : "3085", "shared_name" : "79133 (interacts with) 57026", "name" : "79133 (interacts with) 57026", "interaction" : "interacts with", "SUID" : 58946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "58942", "source" : "2009", "target" : "4061", "shared_name" : "79133 (interacts with) 4705", "name" : "79133 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 58942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59178", "source" : "2005", "target" : "3445", "shared_name" : "4846 (interacts with) 5091", "name" : "4846 (interacts with) 5091", "interaction" : "interacts with", "SUID" : 59178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59174", "source" : "2005", "target" : "1301", "shared_name" : "4846 (interacts with) 5095", "name" : "4846 (interacts with) 5095", "interaction" : "interacts with", "SUID" : 59174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59170", "source" : "2005", "target" : "4857", "shared_name" : "4846 (interacts with) 5573", "name" : "4846 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 59170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59166", "source" : "2005", "target" : "1201", "shared_name" : "4846 (interacts with) 805", "name" : "4846 (interacts with) 805", "interaction" : "interacts with", "SUID" : 59166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59162", "source" : "2005", "target" : "1241", "shared_name" : "4846 (interacts with) 808", "name" : "4846 (interacts with) 808", "interaction" : "interacts with", "SUID" : 59162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59158", "source" : "2005", "target" : "1341", "shared_name" : "4846 (interacts with) 5009", "name" : "4846 (interacts with) 5009", "interaction" : "interacts with", "SUID" : 59158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59154", "source" : "2005", "target" : "5225", "shared_name" : "4846 (interacts with) 5290", "name" : "4846 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 59154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59150", "source" : "2005", "target" : "4213", "shared_name" : "4846 (interacts with) 5295", "name" : "4846 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 59150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59146", "source" : "2005", "target" : "4949", "shared_name" : "4846 (interacts with) 5970", "name" : "4846 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 59146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59142", "source" : "2005", "target" : "841", "shared_name" : "4846 (interacts with) 8890", "name" : "4846 (interacts with) 8890", "interaction" : "interacts with", "SUID" : 59142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59138", "source" : "2005", "target" : "4837", "shared_name" : "4846 (interacts with) 8891", "name" : "4846 (interacts with) 8891", "interaction" : "interacts with", "SUID" : 59138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59134", "source" : "2005", "target" : "837", "shared_name" : "4846 (interacts with) 8892", "name" : "4846 (interacts with) 8892", "interaction" : "interacts with", "SUID" : 59134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59130", "source" : "2005", "target" : "3237", "shared_name" : "4846 (interacts with) 95", "name" : "4846 (interacts with) 95", "interaction" : "interacts with", "SUID" : 59130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59126", "source" : "2005", "target" : "2793", "shared_name" : "4846 (interacts with) 8894", "name" : "4846 (interacts with) 8894", "interaction" : "interacts with", "SUID" : 59126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59122", "source" : "2005", "target" : "4149", "shared_name" : "4846 (interacts with) 8893", "name" : "4846 (interacts with) 8893", "interaction" : "interacts with", "SUID" : 59122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59118", "source" : "2005", "target" : "1493", "shared_name" : "4846 (interacts with) 7428", "name" : "4846 (interacts with) 7428", "interaction" : "interacts with", "SUID" : 59118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59114", "source" : "2005", "target" : "2561", "shared_name" : "4846 (interacts with) 523", "name" : "4846 (interacts with) 523", "interaction" : "interacts with", "SUID" : 59114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59110", "source" : "2005", "target" : "2569", "shared_name" : "4846 (interacts with) 529", "name" : "4846 (interacts with) 529", "interaction" : "interacts with", "SUID" : 59110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59106", "source" : "2005", "target" : "413", "shared_name" : "4846 (interacts with) 51733", "name" : "4846 (interacts with) 51733", "interaction" : "interacts with", "SUID" : 59106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59102", "source" : "2005", "target" : "1013", "shared_name" : "4846 (interacts with) 6898", "name" : "4846 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 59102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59098", "source" : "2005", "target" : "1089", "shared_name" : "4846 (interacts with) 5917", "name" : "4846 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 59098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59094", "source" : "2005", "target" : "4621", "shared_name" : "4846 (interacts with) 57038", "name" : "4846 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 59094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59090", "source" : "2005", "target" : "4721", "shared_name" : "4846 (interacts with) 5805", "name" : "4846 (interacts with) 5805", "interaction" : "interacts with", "SUID" : 59090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59086", "source" : "2005", "target" : "5049", "shared_name" : "4846 (interacts with) 6697", "name" : "4846 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 59086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59082", "source" : "2005", "target" : "2901", "shared_name" : "4846 (interacts with) 6647", "name" : "4846 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 59082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59078", "source" : "2005", "target" : "3929", "shared_name" : "4846 (interacts with) 5860", "name" : "4846 (interacts with) 5860", "interaction" : "interacts with", "SUID" : 59078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59074", "source" : "2005", "target" : "2321", "shared_name" : "4846 (interacts with) 6509", "name" : "4846 (interacts with) 6509", "interaction" : "interacts with", "SUID" : 59074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59070", "source" : "2005", "target" : "1385", "shared_name" : "4846 (interacts with) 6520", "name" : "4846 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 59070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59066", "source" : "2005", "target" : "2097", "shared_name" : "4846 (interacts with) 10166", "name" : "4846 (interacts with) 10166", "interaction" : "interacts with", "SUID" : 59066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59062", "source" : "2005", "target" : "3493", "shared_name" : "4846 (interacts with) 348", "name" : "4846 (interacts with) 348", "interaction" : "interacts with", "SUID" : 59062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59058", "source" : "2005", "target" : "3337", "shared_name" : "4846 (interacts with) 2639", "name" : "4846 (interacts with) 2639", "interaction" : "interacts with", "SUID" : 59058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59054", "source" : "2005", "target" : "5701", "shared_name" : "4846 (interacts with) 6767", "name" : "4846 (interacts with) 6767", "interaction" : "interacts with", "SUID" : 59054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59230", "source" : "2001", "target" : "2301", "shared_name" : "8676 (interacts with) 9342", "name" : "8676 (interacts with) 9342", "interaction" : "interacts with", "SUID" : 59230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59226", "source" : "2001", "target" : "4149", "shared_name" : "8676 (interacts with) 8893", "name" : "8676 (interacts with) 8893", "interaction" : "interacts with", "SUID" : 59226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59222", "source" : "2001", "target" : "3933", "shared_name" : "8676 (interacts with) 10524", "name" : "8676 (interacts with) 10524", "interaction" : "interacts with", "SUID" : 59222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59218", "source" : "2001", "target" : "609", "shared_name" : "8676 (interacts with) 6812", "name" : "8676 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 59218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59214", "source" : "2001", "target" : "4581", "shared_name" : "8676 (interacts with) 29110", "name" : "8676 (interacts with) 29110", "interaction" : "interacts with", "SUID" : 59214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59210", "source" : "2001", "target" : "4997", "shared_name" : "8676 (interacts with) 54820", "name" : "8676 (interacts with) 54820", "interaction" : "interacts with", "SUID" : 59210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59206", "source" : "2001", "target" : "4661", "shared_name" : "8676 (interacts with) 6813", "name" : "8676 (interacts with) 6813", "interaction" : "interacts with", "SUID" : 59206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59202", "source" : "2001", "target" : "4157", "shared_name" : "8676 (interacts with) 85021", "name" : "8676 (interacts with) 85021", "interaction" : "interacts with", "SUID" : 59202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59198", "source" : "2001", "target" : "6037", "shared_name" : "8676 (interacts with) 374654", "name" : "8676 (interacts with) 374654", "interaction" : "interacts with", "SUID" : 59198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59194", "source" : "2001", "target" : "3205", "shared_name" : "8676 (interacts with) 862", "name" : "8676 (interacts with) 862", "interaction" : "interacts with", "SUID" : 59194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59190", "source" : "2001", "target" : "4405", "shared_name" : "8676 (interacts with) 10667", "name" : "8676 (interacts with) 10667", "interaction" : "interacts with", "SUID" : 59190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59186", "source" : "2001", "target" : "4629", "shared_name" : "8676 (interacts with) 6605", "name" : "8676 (interacts with) 6605", "interaction" : "interacts with", "SUID" : 59186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59182", "source" : "2001", "target" : "2389", "shared_name" : "8676 (interacts with) 6925", "name" : "8676 (interacts with) 6925", "interaction" : "interacts with", "SUID" : 59182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59278", "source" : "1997", "target" : "1473", "shared_name" : "2348 (interacts with) 4524", "name" : "2348 (interacts with) 4524", "interaction" : "interacts with", "SUID" : 59278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59274", "source" : "1997", "target" : "1213", "shared_name" : "2348 (interacts with) 2969", "name" : "2348 (interacts with) 2969", "interaction" : "interacts with", "SUID" : 59274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59270", "source" : "1997", "target" : "1457", "shared_name" : "2348 (interacts with) 122553", "name" : "2348 (interacts with) 122553", "interaction" : "interacts with", "SUID" : 59270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59266", "source" : "1997", "target" : "2521", "shared_name" : "2348 (interacts with) 83696", "name" : "2348 (interacts with) 83696", "interaction" : "interacts with", "SUID" : 59266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59262", "source" : "1997", "target" : "545", "shared_name" : "2348 (interacts with) 51014", "name" : "2348 (interacts with) 51014", "interaction" : "interacts with", "SUID" : 59262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59258", "source" : "1997", "target" : "1717", "shared_name" : "2348 (interacts with) 51693", "name" : "2348 (interacts with) 51693", "interaction" : "interacts with", "SUID" : 59258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59254", "source" : "1997", "target" : "1633", "shared_name" : "2348 (interacts with) 57731", "name" : "2348 (interacts with) 57731", "interaction" : "interacts with", "SUID" : 59254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59250", "source" : "1997", "target" : "3637", "shared_name" : "2348 (interacts with) 6712", "name" : "2348 (interacts with) 6712", "interaction" : "interacts with", "SUID" : 59250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59246", "source" : "1997", "target" : "5749", "shared_name" : "2348 (interacts with) 10959", "name" : "2348 (interacts with) 10959", "interaction" : "interacts with", "SUID" : 59246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59242", "source" : "1997", "target" : "2473", "shared_name" : "2348 (interacts with) 10342", "name" : "2348 (interacts with) 10342", "interaction" : "interacts with", "SUID" : 59242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59238", "source" : "1997", "target" : "1973", "shared_name" : "2348 (interacts with) 6709", "name" : "2348 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 59238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59234", "source" : "1997", "target" : "1589", "shared_name" : "2348 (interacts with) 22872", "name" : "2348 (interacts with) 22872", "interaction" : "interacts with", "SUID" : 59234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59318", "source" : "1993", "target" : "5297", "shared_name" : "3181 (interacts with) 6775", "name" : "3181 (interacts with) 6775", "interaction" : "interacts with", "SUID" : 59318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59314", "source" : "1993", "target" : "5377", "shared_name" : "3181 (interacts with) 6638", "name" : "3181 (interacts with) 6638", "interaction" : "interacts with", "SUID" : 59314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59310", "source" : "1993", "target" : "1837", "shared_name" : "3181 (interacts with) 9939", "name" : "3181 (interacts with) 9939", "interaction" : "interacts with", "SUID" : 59310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59306", "source" : "1993", "target" : "5193", "shared_name" : "3181 (interacts with) 5725", "name" : "3181 (interacts with) 5725", "interaction" : "interacts with", "SUID" : 59306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59302", "source" : "1993", "target" : "5281", "shared_name" : "3181 (interacts with) 10084", "name" : "3181 (interacts with) 10084", "interaction" : "interacts with", "SUID" : 59302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59298", "source" : "1993", "target" : "5861", "shared_name" : "3181 (interacts with) 5435", "name" : "3181 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 59298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59294", "source" : "1993", "target" : "2649", "shared_name" : "3181 (interacts with) 5430", "name" : "3181 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 59294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59290", "source" : "1993", "target" : "2385", "shared_name" : "3181 (interacts with) 3192", "name" : "3181 (interacts with) 3192", "interaction" : "interacts with", "SUID" : 59290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59286", "source" : "1993", "target" : "1753", "shared_name" : "3181 (interacts with) 3188", "name" : "3181 (interacts with) 3188", "interaction" : "interacts with", "SUID" : 59286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59282", "source" : "1993", "target" : "4217", "shared_name" : "3181 (interacts with) 51112", "name" : "3181 (interacts with) 51112", "interaction" : "interacts with", "SUID" : 59282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59322", "source" : "1989", "target" : "5065", "shared_name" : "3060 (interacts with) 3117", "name" : "3060 (interacts with) 3117", "interaction" : "interacts with", "SUID" : 59322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59386", "source" : "1985", "target" : "3017", "shared_name" : "3456 (interacts with) 4790", "name" : "3456 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 59386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59382", "source" : "1985", "target" : "4949", "shared_name" : "3456 (interacts with) 5970", "name" : "3456 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 59382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59378", "source" : "1985", "target" : "3305", "shared_name" : "3456 (interacts with) 7040", "name" : "3456 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 59378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59374", "source" : "1985", "target" : "2153", "shared_name" : "3456 (interacts with) 7042", "name" : "3456 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 59374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59370", "source" : "1985", "target" : "4065", "shared_name" : "3456 (interacts with) 7124", "name" : "3456 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 59370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59366", "source" : "1985", "target" : "3409", "shared_name" : "3456 (interacts with) 7043", "name" : "3456 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 59366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59362", "source" : "1985", "target" : "805", "shared_name" : "3456 (interacts with) 6772", "name" : "3456 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 59362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59358", "source" : "1985", "target" : "3173", "shared_name" : "3456 (interacts with) 3558", "name" : "3456 (interacts with) 3558", "interaction" : "interacts with", "SUID" : 59358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59354", "source" : "1985", "target" : "1529", "shared_name" : "3456 (interacts with) 3458", "name" : "3456 (interacts with) 3458", "interaction" : "interacts with", "SUID" : 59354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59350", "source" : "1985", "target" : "2661", "shared_name" : "3456 (interacts with) 3606", "name" : "3456 (interacts with) 3606", "interaction" : "interacts with", "SUID" : 59350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59346", "source" : "1985", "target" : "1541", "shared_name" : "3456 (interacts with) 958", "name" : "3456 (interacts with) 958", "interaction" : "interacts with", "SUID" : 59346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59342", "source" : "1985", "target" : "6013", "shared_name" : "3456 (interacts with) 3574", "name" : "3456 (interacts with) 3574", "interaction" : "interacts with", "SUID" : 59342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59338", "source" : "1985", "target" : "465", "shared_name" : "3456 (interacts with) 8792", "name" : "3456 (interacts with) 8792", "interaction" : "interacts with", "SUID" : 59338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59334", "source" : "1985", "target" : "1701", "shared_name" : "3456 (interacts with) 5777", "name" : "3456 (interacts with) 5777", "interaction" : "interacts with", "SUID" : 59334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59330", "source" : "1985", "target" : "3401", "shared_name" : "3456 (interacts with) 3659", "name" : "3456 (interacts with) 3659", "interaction" : "interacts with", "SUID" : 59330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59326", "source" : "1985", "target" : "509", "shared_name" : "3456 (interacts with) 3661", "name" : "3456 (interacts with) 3661", "interaction" : "interacts with", "SUID" : 59326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59426", "source" : "1981", "target" : "233", "shared_name" : "339983 (interacts with) 8566", "name" : "339983 (interacts with) 8566", "interaction" : "interacts with", "SUID" : 59426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59422", "source" : "1981", "target" : "5109", "shared_name" : "339983 (interacts with) 790", "name" : "339983 (interacts with) 790", "interaction" : "interacts with", "SUID" : 59422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59418", "source" : "1981", "target" : "4253", "shared_name" : "339983 (interacts with) 84706", "name" : "339983 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 59418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59414", "source" : "1981", "target" : "4737", "shared_name" : "339983 (interacts with) 445", "name" : "339983 (interacts with) 445", "interaction" : "interacts with", "SUID" : 59414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59410", "source" : "1981", "target" : "5349", "shared_name" : "339983 (interacts with) 440", "name" : "339983 (interacts with) 440", "interaction" : "interacts with", "SUID" : 59410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59406", "source" : "1981", "target" : "1189", "shared_name" : "339983 (interacts with) 7915", "name" : "339983 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 59406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59402", "source" : "1981", "target" : "2177", "shared_name" : "339983 (interacts with) 443", "name" : "339983 (interacts with) 443", "interaction" : "interacts with", "SUID" : 59402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59398", "source" : "1981", "target" : "3421", "shared_name" : "339983 (interacts with) 4967", "name" : "339983 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 59398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59394", "source" : "1981", "target" : "2881", "shared_name" : "339983 (interacts with) 5160", "name" : "339983 (interacts with) 5160", "interaction" : "interacts with", "SUID" : 59394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59390", "source" : "1981", "target" : "1485", "shared_name" : "339983 (interacts with) 8050", "name" : "339983 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 59390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59482", "source" : "1977", "target" : "4941", "shared_name" : "5191 (interacts with) 6342", "name" : "5191 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 59482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59478", "source" : "1977", "target" : "4297", "shared_name" : "5191 (interacts with) 5193", "name" : "5191 (interacts with) 5193", "interaction" : "interacts with", "SUID" : 59478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59474", "source" : "1977", "target" : "5865", "shared_name" : "5191 (interacts with) 5192", "name" : "5191 (interacts with) 5192", "interaction" : "interacts with", "SUID" : 59474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59470", "source" : "1977", "target" : "5545", "shared_name" : "5191 (interacts with) 5195", "name" : "5191 (interacts with) 5195", "interaction" : "interacts with", "SUID" : 59470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59466", "source" : "1977", "target" : "5205", "shared_name" : "5191 (interacts with) 5828", "name" : "5191 (interacts with) 5828", "interaction" : "interacts with", "SUID" : 59466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59462", "source" : "1977", "target" : "5873", "shared_name" : "5191 (interacts with) 5827", "name" : "5191 (interacts with) 5827", "interaction" : "interacts with", "SUID" : 59462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59458", "source" : "1977", "target" : "196", "shared_name" : "5191 (interacts with) 84188", "name" : "5191 (interacts with) 84188", "interaction" : "interacts with", "SUID" : 59458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59454", "source" : "1977", "target" : "3329", "shared_name" : "5191 (interacts with) 5824", "name" : "5191 (interacts with) 5824", "interaction" : "interacts with", "SUID" : 59454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59450", "source" : "1977", "target" : "3333", "shared_name" : "5191 (interacts with) 9409", "name" : "5191 (interacts with) 9409", "interaction" : "interacts with", "SUID" : 59450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59446", "source" : "1977", "target" : "3341", "shared_name" : "5191 (interacts with) 8504", "name" : "5191 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 59446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59442", "source" : "1977", "target" : "4301", "shared_name" : "5191 (interacts with) 8799", "name" : "5191 (interacts with) 8799", "interaction" : "interacts with", "SUID" : 59442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59438", "source" : "1977", "target" : "1953", "shared_name" : "5191 (interacts with) 5194", "name" : "5191 (interacts with) 5194", "interaction" : "interacts with", "SUID" : 59438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59434", "source" : "1977", "target" : "2353", "shared_name" : "5191 (interacts with) 5264", "name" : "5191 (interacts with) 5264", "interaction" : "interacts with", "SUID" : 59434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59430", "source" : "1977", "target" : "5237", "shared_name" : "5191 (interacts with) 5830", "name" : "5191 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 59430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59530", "source" : "1973", "target" : "4065", "shared_name" : "6709 (interacts with) 7124", "name" : "6709 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 59530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59526", "source" : "1973", "target" : "4769", "shared_name" : "6709 (interacts with) 7132", "name" : "6709 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 59526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59522", "source" : "1973", "target" : "3021", "shared_name" : "6709 (interacts with) 84823", "name" : "6709 (interacts with) 84823", "interaction" : "interacts with", "SUID" : 59522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59518", "source" : "1973", "target" : "829", "shared_name" : "6709 (interacts with) 8772", "name" : "6709 (interacts with) 8772", "interaction" : "interacts with", "SUID" : 59518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59514", "source" : "1973", "target" : "4909", "shared_name" : "6709 (interacts with) 823", "name" : "6709 (interacts with) 823", "interaction" : "interacts with", "SUID" : 59514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59510", "source" : "1973", "target" : "4077", "shared_name" : "6709 (interacts with) 71", "name" : "6709 (interacts with) 71", "interaction" : "interacts with", "SUID" : 59510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59506", "source" : "1973", "target" : "593", "shared_name" : "6709 (interacts with) 8743", "name" : "6709 (interacts with) 8743", "interaction" : "interacts with", "SUID" : 59506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59502", "source" : "1973", "target" : "4257", "shared_name" : "6709 (interacts with) 8573", "name" : "6709 (interacts with) 8573", "interaction" : "interacts with", "SUID" : 59502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59498", "source" : "1973", "target" : "1633", "shared_name" : "6709 (interacts with) 57731", "name" : "6709 (interacts with) 57731", "interaction" : "interacts with", "SUID" : 59498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59494", "source" : "1973", "target" : "545", "shared_name" : "6709 (interacts with) 51014", "name" : "6709 (interacts with) 51014", "interaction" : "interacts with", "SUID" : 59494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59490", "source" : "1973", "target" : "5749", "shared_name" : "6709 (interacts with) 10959", "name" : "6709 (interacts with) 10959", "interaction" : "interacts with", "SUID" : 59490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59486", "source" : "1973", "target" : "3637", "shared_name" : "6709 (interacts with) 6712", "name" : "6709 (interacts with) 6712", "interaction" : "interacts with", "SUID" : 59486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59626", "source" : "1969", "target" : "4941", "shared_name" : "4598 (interacts with) 6342", "name" : "4598 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 59626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59622", "source" : "1969", "target" : "517", "shared_name" : "4598 (interacts with) 5052", "name" : "4598 (interacts with) 5052", "interaction" : "interacts with", "SUID" : 59622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59618", "source" : "1969", "target" : "4505", "shared_name" : "4598 (interacts with) 5190", "name" : "4598 (interacts with) 5190", "interaction" : "interacts with", "SUID" : 59618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59614", "source" : "1969", "target" : "5677", "shared_name" : "4598 (interacts with) 5189", "name" : "4598 (interacts with) 5189", "interaction" : "interacts with", "SUID" : 59614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59610", "source" : "1969", "target" : "5865", "shared_name" : "4598 (interacts with) 5192", "name" : "4598 (interacts with) 5192", "interaction" : "interacts with", "SUID" : 59610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59606", "source" : "1969", "target" : "1977", "shared_name" : "4598 (interacts with) 5191", "name" : "4598 (interacts with) 5191", "interaction" : "interacts with", "SUID" : 59606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59602", "source" : "1969", "target" : "1953", "shared_name" : "4598 (interacts with) 5194", "name" : "4598 (interacts with) 5194", "interaction" : "interacts with", "SUID" : 59602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59598", "source" : "1969", "target" : "4297", "shared_name" : "4598 (interacts with) 5193", "name" : "4598 (interacts with) 5193", "interaction" : "interacts with", "SUID" : 59598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59594", "source" : "1969", "target" : "2353", "shared_name" : "4598 (interacts with) 5264", "name" : "4598 (interacts with) 5264", "interaction" : "interacts with", "SUID" : 59594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59590", "source" : "1969", "target" : "5545", "shared_name" : "4598 (interacts with) 5195", "name" : "4598 (interacts with) 5195", "interaction" : "interacts with", "SUID" : 59590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59586", "source" : "1969", "target" : "2325", "shared_name" : "4598 (interacts with) 55670", "name" : "4598 (interacts with) 55670", "interaction" : "interacts with", "SUID" : 59586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59582", "source" : "1969", "target" : "3329", "shared_name" : "4598 (interacts with) 5824", "name" : "4598 (interacts with) 5824", "interaction" : "interacts with", "SUID" : 59582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59578", "source" : "1969", "target" : "5205", "shared_name" : "4598 (interacts with) 5828", "name" : "4598 (interacts with) 5828", "interaction" : "interacts with", "SUID" : 59578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59574", "source" : "1969", "target" : "5873", "shared_name" : "4598 (interacts with) 5827", "name" : "4598 (interacts with) 5827", "interaction" : "interacts with", "SUID" : 59574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59570", "source" : "1969", "target" : "196", "shared_name" : "4598 (interacts with) 84188", "name" : "4598 (interacts with) 84188", "interaction" : "interacts with", "SUID" : 59570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59566", "source" : "1969", "target" : "5237", "shared_name" : "4598 (interacts with) 5830", "name" : "4598 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 59566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59562", "source" : "1969", "target" : "3341", "shared_name" : "4598 (interacts with) 8504", "name" : "4598 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 59562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59558", "source" : "1969", "target" : "4301", "shared_name" : "4598 (interacts with) 8799", "name" : "4598 (interacts with) 8799", "interaction" : "interacts with", "SUID" : 59558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59554", "source" : "1969", "target" : "3333", "shared_name" : "4598 (interacts with) 9409", "name" : "4598 (interacts with) 9409", "interaction" : "interacts with", "SUID" : 59554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59550", "source" : "1969", "target" : "5893", "shared_name" : "4598 (interacts with) 6309", "name" : "4598 (interacts with) 6309", "interaction" : "interacts with", "SUID" : 59550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59546", "source" : "1969", "target" : "3013", "shared_name" : "4598 (interacts with) 50814", "name" : "4598 (interacts with) 50814", "interaction" : "interacts with", "SUID" : 59546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59542", "source" : "1969", "target" : "2373", "shared_name" : "4598 (interacts with) 64801", "name" : "4598 (interacts with) 64801", "interaction" : "interacts with", "SUID" : 59542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59538", "source" : "1969", "target" : "2477", "shared_name" : "4598 (interacts with) 57107", "name" : "4598 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 59538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59534", "source" : "1969", "target" : "4461", "shared_name" : "4598 (interacts with) 79947", "name" : "4598 (interacts with) 79947", "interaction" : "interacts with", "SUID" : 59534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59634", "source" : "1965", "target" : "981", "shared_name" : "7443 (interacts with) 7157", "name" : "7443 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 59634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59630", "source" : "1965", "target" : "6029", "shared_name" : "7443 (interacts with) 54892", "name" : "7443 (interacts with) 54892", "interaction" : "interacts with", "SUID" : 59630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59658", "source" : "1961", "target" : "545", "shared_name" : "23095 (interacts with) 51014", "name" : "23095 (interacts with) 51014", "interaction" : "interacts with", "SUID" : 59658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59654", "source" : "1961", "target" : "5749", "shared_name" : "23095 (interacts with) 10959", "name" : "23095 (interacts with) 10959", "interaction" : "interacts with", "SUID" : 59654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59650", "source" : "1961", "target" : "2125", "shared_name" : "23095 (interacts with) 2512", "name" : "23095 (interacts with) 2512", "interaction" : "interacts with", "SUID" : 59650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59646", "source" : "1961", "target" : "4697", "shared_name" : "23095 (interacts with) 7534", "name" : "23095 (interacts with) 7534", "interaction" : "interacts with", "SUID" : 59646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59642", "source" : "1961", "target" : "657", "shared_name" : "23095 (interacts with) 547", "name" : "23095 (interacts with) 547", "interaction" : "interacts with", "SUID" : 59642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59638", "source" : "1961", "target" : "2237", "shared_name" : "23095 (interacts with) 10516", "name" : "23095 (interacts with) 10516", "interaction" : "interacts with", "SUID" : 59638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59714", "source" : "1957", "target" : "5645", "shared_name" : "1312 (interacts with) 9420", "name" : "1312 (interacts with) 9420", "interaction" : "interacts with", "SUID" : 59714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59710", "source" : "1957", "target" : "305", "shared_name" : "1312 (interacts with) 79644", "name" : "1312 (interacts with) 79644", "interaction" : "interacts with", "SUID" : 59710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59706", "source" : "1957", "target" : "685", "shared_name" : "1312 (interacts with) 4282", "name" : "1312 (interacts with) 4282", "interaction" : "interacts with", "SUID" : 59706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59702", "source" : "1957", "target" : "2049", "shared_name" : "1312 (interacts with) 4552", "name" : "1312 (interacts with) 4552", "interaction" : "interacts with", "SUID" : 59702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59698", "source" : "1957", "target" : "4273", "shared_name" : "1312 (interacts with) 4548", "name" : "1312 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 59698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59694", "source" : "1957", "target" : "2457", "shared_name" : "1312 (interacts with) 4143", "name" : "1312 (interacts with) 4143", "interaction" : "interacts with", "SUID" : 59694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59690", "source" : "1957", "target" : "317", "shared_name" : "1312 (interacts with) 3176", "name" : "1312 (interacts with) 3176", "interaction" : "interacts with", "SUID" : 59690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59686", "source" : "1957", "target" : "6133", "shared_name" : "1312 (interacts with) 54658", "name" : "1312 (interacts with) 54658", "interaction" : "interacts with", "SUID" : 59686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59682", "source" : "1957", "target" : "229", "shared_name" : "1312 (interacts with) 1371", "name" : "1312 (interacts with) 1371", "interaction" : "interacts with", "SUID" : 59682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59678", "source" : "1957", "target" : "4221", "shared_name" : "1312 (interacts with) 1644", "name" : "1312 (interacts with) 1644", "interaction" : "interacts with", "SUID" : 59678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59674", "source" : "1957", "target" : "4833", "shared_name" : "1312 (interacts with) 2593", "name" : "1312 (interacts with) 2593", "interaction" : "interacts with", "SUID" : 59674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59670", "source" : "1957", "target" : "321", "shared_name" : "1312 (interacts with) 1593", "name" : "1312 (interacts with) 1593", "interaction" : "interacts with", "SUID" : 59670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59666", "source" : "1957", "target" : "3601", "shared_name" : "1312 (interacts with) 6531", "name" : "1312 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 59666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59662", "source" : "1957", "target" : "1249", "shared_name" : "1312 (interacts with) 2705", "name" : "1312 (interacts with) 2705", "interaction" : "interacts with", "SUID" : 59662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59762", "source" : "1953", "target" : "4941", "shared_name" : "5194 (interacts with) 6342", "name" : "5194 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 59762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59758", "source" : "1953", "target" : "196", "shared_name" : "5194 (interacts with) 84188", "name" : "5194 (interacts with) 84188", "interaction" : "interacts with", "SUID" : 59758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59754", "source" : "1953", "target" : "4301", "shared_name" : "5194 (interacts with) 8799", "name" : "5194 (interacts with) 8799", "interaction" : "interacts with", "SUID" : 59754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59750", "source" : "1953", "target" : "3341", "shared_name" : "5194 (interacts with) 8504", "name" : "5194 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 59750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59746", "source" : "1953", "target" : "2353", "shared_name" : "5194 (interacts with) 5264", "name" : "5194 (interacts with) 5264", "interaction" : "interacts with", "SUID" : 59746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59742", "source" : "1953", "target" : "5873", "shared_name" : "5194 (interacts with) 5827", "name" : "5194 (interacts with) 5827", "interaction" : "interacts with", "SUID" : 59742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59738", "source" : "1953", "target" : "5205", "shared_name" : "5194 (interacts with) 5828", "name" : "5194 (interacts with) 5828", "interaction" : "interacts with", "SUID" : 59738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59734", "source" : "1953", "target" : "2325", "shared_name" : "5194 (interacts with) 55670", "name" : "5194 (interacts with) 55670", "interaction" : "interacts with", "SUID" : 59734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59730", "source" : "1953", "target" : "3333", "shared_name" : "5194 (interacts with) 9409", "name" : "5194 (interacts with) 9409", "interaction" : "interacts with", "SUID" : 59730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59726", "source" : "1953", "target" : "5237", "shared_name" : "5194 (interacts with) 5830", "name" : "5194 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 59726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59722", "source" : "1953", "target" : "5545", "shared_name" : "5194 (interacts with) 5195", "name" : "5194 (interacts with) 5195", "interaction" : "interacts with", "SUID" : 59722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59718", "source" : "1953", "target" : "3329", "shared_name" : "5194 (interacts with) 5824", "name" : "5194 (interacts with) 5824", "interaction" : "interacts with", "SUID" : 59718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59778", "source" : "1949", "target" : "1813", "shared_name" : "23137 (interacts with) 7703", "name" : "23137 (interacts with) 7703", "interaction" : "interacts with", "SUID" : 59778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59774", "source" : "1949", "target" : "4497", "shared_name" : "23137 (interacts with) 8243", "name" : "23137 (interacts with) 8243", "interaction" : "interacts with", "SUID" : 59774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59770", "source" : "1949", "target" : "877", "shared_name" : "23137 (interacts with) 7341", "name" : "23137 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 59770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59766", "source" : "1949", "target" : "4797", "shared_name" : "23137 (interacts with) 10735", "name" : "23137 (interacts with) 10735", "interaction" : "interacts with", "SUID" : 59766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59798", "source" : "1945", "target" : "2005", "shared_name" : "3785 (interacts with) 4846", "name" : "3785 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 59798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59794", "source" : "1945", "target" : "1973", "shared_name" : "3785 (interacts with) 6709", "name" : "3785 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 59794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59790", "source" : "1945", "target" : "3637", "shared_name" : "3785 (interacts with) 6712", "name" : "3785 (interacts with) 6712", "interaction" : "interacts with", "SUID" : 59790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59786", "source" : "1945", "target" : "1633", "shared_name" : "3785 (interacts with) 57731", "name" : "3785 (interacts with) 57731", "interaction" : "interacts with", "SUID" : 59786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59782", "source" : "1945", "target" : "3957", "shared_name" : "3785 (interacts with) 23114", "name" : "3785 (interacts with) 23114", "interaction" : "interacts with", "SUID" : 59782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59838", "source" : "1941", "target" : "3633", "shared_name" : "10535 (interacts with) 51067", "name" : "10535 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 59838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59834", "source" : "1941", "target" : "3761", "shared_name" : "10535 (interacts with) 25915", "name" : "10535 (interacts with) 25915", "interaction" : "interacts with", "SUID" : 59834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59830", "source" : "1941", "target" : "1821", "shared_name" : "10535 (interacts with) 1719", "name" : "10535 (interacts with) 1719", "interaction" : "interacts with", "SUID" : 59830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59826", "source" : "1941", "target" : "2549", "shared_name" : "10535 (interacts with) 9319", "name" : "10535 (interacts with) 9319", "interaction" : "interacts with", "SUID" : 59826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59822", "source" : "1941", "target" : "4577", "shared_name" : "10535 (interacts with) 7167", "name" : "10535 (interacts with) 7167", "interaction" : "interacts with", "SUID" : 59822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59818", "source" : "1941", "target" : "1049", "shared_name" : "10535 (interacts with) 5422", "name" : "10535 (interacts with) 5422", "interaction" : "interacts with", "SUID" : 59818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59814", "source" : "1941", "target" : "2921", "shared_name" : "10535 (interacts with) 5981", "name" : "10535 (interacts with) 5981", "interaction" : "interacts with", "SUID" : 59814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59810", "source" : "1941", "target" : "4053", "shared_name" : "10535 (interacts with) 79621", "name" : "10535 (interacts with) 79621", "interaction" : "interacts with", "SUID" : 59810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59806", "source" : "1941", "target" : "4925", "shared_name" : "10535 (interacts with) 246243", "name" : "10535 (interacts with) 246243", "interaction" : "interacts with", "SUID" : 59806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59802", "source" : "1941", "target" : "4609", "shared_name" : "10535 (interacts with) 84153", "name" : "10535 (interacts with) 84153", "interaction" : "interacts with", "SUID" : 59802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59962", "source" : "1937", "target" : "6145", "shared_name" : "2965 (interacts with) 93627", "name" : "2965 (interacts with) 93627", "interaction" : "interacts with", "SUID" : 59962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59958", "source" : "1937", "target" : "1993", "shared_name" : "2965 (interacts with) 3181", "name" : "2965 (interacts with) 3181", "interaction" : "interacts with", "SUID" : 59958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59954", "source" : "1937", "target" : "4773", "shared_name" : "2965 (interacts with) 90624", "name" : "2965 (interacts with) 90624", "interaction" : "interacts with", "SUID" : 59954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59950", "source" : "1937", "target" : "2565", "shared_name" : "2965 (interacts with) 51501", "name" : "2965 (interacts with) 51501", "interaction" : "interacts with", "SUID" : 59950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59946", "source" : "1937", "target" : "749", "shared_name" : "2965 (interacts with) 6873", "name" : "2965 (interacts with) 6873", "interaction" : "interacts with", "SUID" : 59946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59942", "source" : "1937", "target" : "2285", "shared_name" : "2965 (interacts with) 51300", "name" : "2965 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 59942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59938", "source" : "1937", "target" : "3953", "shared_name" : "2965 (interacts with) 8731", "name" : "2965 (interacts with) 8731", "interaction" : "interacts with", "SUID" : 59938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59934", "source" : "1937", "target" : "1793", "shared_name" : "2965 (interacts with) 7515", "name" : "2965 (interacts with) 7515", "interaction" : "interacts with", "SUID" : 59934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59930", "source" : "1937", "target" : "481", "shared_name" : "2965 (interacts with) 7507", "name" : "2965 (interacts with) 7507", "interaction" : "interacts with", "SUID" : 59930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59926", "source" : "1937", "target" : "5197", "shared_name" : "2965 (interacts with) 7156", "name" : "2965 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 59926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59922", "source" : "1937", "target" : "1817", "shared_name" : "2965 (interacts with) 7343", "name" : "2965 (interacts with) 7343", "interaction" : "interacts with", "SUID" : 59922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59918", "source" : "1937", "target" : "2305", "shared_name" : "2965 (interacts with) 6908", "name" : "2965 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 59918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59914", "source" : "1937", "target" : "4425", "shared_name" : "2965 (interacts with) 6884", "name" : "2965 (interacts with) 6884", "interaction" : "interacts with", "SUID" : 59914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59910", "source" : "1937", "target" : "5849", "shared_name" : "2965 (interacts with) 6613", "name" : "2965 (interacts with) 6613", "interaction" : "interacts with", "SUID" : 59910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59906", "source" : "1937", "target" : "877", "shared_name" : "2965 (interacts with) 7341", "name" : "2965 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 59906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59902", "source" : "1937", "target" : "4413", "shared_name" : "2965 (interacts with) 6612", "name" : "2965 (interacts with) 6612", "interaction" : "interacts with", "SUID" : 59902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59898", "source" : "1937", "target" : "2921", "shared_name" : "2965 (interacts with) 5981", "name" : "2965 (interacts with) 5981", "interaction" : "interacts with", "SUID" : 59898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59894", "source" : "1937", "target" : "5861", "shared_name" : "2965 (interacts with) 5435", "name" : "2965 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 59894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59890", "source" : "1937", "target" : "5621", "shared_name" : "2965 (interacts with) 25885", "name" : "2965 (interacts with) 25885", "interaction" : "interacts with", "SUID" : 59890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59886", "source" : "1937", "target" : "2649", "shared_name" : "2965 (interacts with) 5430", "name" : "2965 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 59886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59882", "source" : "1937", "target" : "1857", "shared_name" : "2965 (interacts with) 9533", "name" : "2965 (interacts with) 9533", "interaction" : "interacts with", "SUID" : 59882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59878", "source" : "1937", "target" : "2529", "shared_name" : "2965 (interacts with) 5424", "name" : "2965 (interacts with) 5424", "interaction" : "interacts with", "SUID" : 59878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59874", "source" : "1937", "target" : "1729", "shared_name" : "2965 (interacts with) 5111", "name" : "2965 (interacts with) 5111", "interaction" : "interacts with", "SUID" : 59874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59870", "source" : "1937", "target" : "3049", "shared_name" : "2965 (interacts with) 142", "name" : "2965 (interacts with) 142", "interaction" : "interacts with", "SUID" : 59870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59866", "source" : "1937", "target" : "4249", "shared_name" : "2965 (interacts with) 4331", "name" : "2965 (interacts with) 4331", "interaction" : "interacts with", "SUID" : 59866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59862", "source" : "1937", "target" : "3933", "shared_name" : "2965 (interacts with) 10524", "name" : "2965 (interacts with) 10524", "interaction" : "interacts with", "SUID" : 59862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59858", "source" : "1937", "target" : "913", "shared_name" : "2965 (interacts with) 404672", "name" : "2965 (interacts with) 404672", "interaction" : "interacts with", "SUID" : 59858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59854", "source" : "1937", "target" : "505", "shared_name" : "2965 (interacts with) 2071", "name" : "2965 (interacts with) 2071", "interaction" : "interacts with", "SUID" : 59854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59850", "source" : "1937", "target" : "4177", "shared_name" : "2965 (interacts with) 2068", "name" : "2965 (interacts with) 2068", "interaction" : "interacts with", "SUID" : 59850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59846", "source" : "1937", "target" : "981", "shared_name" : "2965 (interacts with) 7157", "name" : "2965 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 59846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59842", "source" : "1937", "target" : "4037", "shared_name" : "2965 (interacts with) 2073", "name" : "2965 (interacts with) 2073", "interaction" : "interacts with", "SUID" : 59842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59970", "source" : "1933", "target" : "1493", "shared_name" : "7335 (interacts with) 7428", "name" : "7335 (interacts with) 7428", "interaction" : "interacts with", "SUID" : 59970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59966", "source" : "1933", "target" : "1413", "shared_name" : "7335 (interacts with) 7337", "name" : "7335 (interacts with) 7337", "interaction" : "interacts with", "SUID" : 59966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60066", "source" : "1929", "target" : "2021", "shared_name" : "51218 (interacts with) 5428", "name" : "51218 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 60066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60062", "source" : "1929", "target" : "1129", "shared_name" : "51218 (interacts with) 57505", "name" : "51218 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 60062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60058", "source" : "1929", "target" : "1461", "shared_name" : "51218 (interacts with) 5832", "name" : "51218 (interacts with) 5832", "interaction" : "interacts with", "SUID" : 60058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60054", "source" : "1929", "target" : "4621", "shared_name" : "51218 (interacts with) 57038", "name" : "51218 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 60054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60050", "source" : "1929", "target" : "2105", "shared_name" : "51218 (interacts with) 56945", "name" : "51218 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 60050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60046", "source" : "1929", "target" : "521", "shared_name" : "51218 (interacts with) 85476", "name" : "51218 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 60046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60042", "source" : "1929", "target" : "4409", "shared_name" : "51218 (interacts with) 6341", "name" : "51218 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 60042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60038", "source" : "1929", "target" : "5085", "shared_name" : "51218 (interacts with) 56652", "name" : "51218 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 60038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60034", "source" : "1929", "target" : "6001", "shared_name" : "51218 (interacts with) 55157", "name" : "51218 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 60034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60030", "source" : "1929", "target" : "4897", "shared_name" : "51218 (interacts with) 55149", "name" : "51218 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 60030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60026", "source" : "1929", "target" : "4141", "shared_name" : "51218 (interacts with) 617", "name" : "51218 (interacts with) 617", "interaction" : "interacts with", "SUID" : 60026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60022", "source" : "1929", "target" : "5877", "shared_name" : "51218 (interacts with) 6535", "name" : "51218 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 60022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60018", "source" : "1929", "target" : "6073", "shared_name" : "51218 (interacts with) 92170", "name" : "51218 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 60018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60014", "source" : "1929", "target" : "713", "shared_name" : "51218 (interacts with) 7019", "name" : "51218 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 60014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60010", "source" : "1929", "target" : "4757", "shared_name" : "51218 (interacts with) 9997", "name" : "51218 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 60010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60006", "source" : "1929", "target" : "5737", "shared_name" : "51218 (interacts with) 84340", "name" : "51218 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 60006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60002", "source" : "1929", "target" : "1197", "shared_name" : "51218 (interacts with) 79587", "name" : "51218 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 60002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59998", "source" : "1929", "target" : "4869", "shared_name" : "51218 (interacts with) 92935", "name" : "51218 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 59998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59994", "source" : "1929", "target" : "2477", "shared_name" : "51218 (interacts with) 57107", "name" : "51218 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 59994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59990", "source" : "1929", "target" : "501", "shared_name" : "51218 (interacts with) 65993", "name" : "51218 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 59990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59986", "source" : "1929", "target" : "2009", "shared_name" : "51218 (interacts with) 79133", "name" : "51218 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 59986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59982", "source" : "1929", "target" : "4101", "shared_name" : "51218 (interacts with) 65260", "name" : "51218 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 59982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59978", "source" : "1929", "target" : "3973", "shared_name" : "51218 (interacts with) 55572", "name" : "51218 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 59978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "59974", "source" : "1929", "target" : "2285", "shared_name" : "51218 (interacts with) 51300", "name" : "51218 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 59974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60114", "source" : "1925", "target" : "5177", "shared_name" : "948 (interacts with) 7097", "name" : "948 (interacts with) 7097", "interaction" : "interacts with", "SUID" : 60114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60110", "source" : "1925", "target" : "3697", "shared_name" : "948 (interacts with) 7099", "name" : "948 (interacts with) 7099", "interaction" : "interacts with", "SUID" : 60110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60106", "source" : "1925", "target" : "4393", "shared_name" : "948 (interacts with) 950", "name" : "948 (interacts with) 950", "interaction" : "interacts with", "SUID" : 60106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60102", "source" : "1925", "target" : "1097", "shared_name" : "948 (interacts with) 79718", "name" : "948 (interacts with) 79718", "interaction" : "interacts with", "SUID" : 60102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60098", "source" : "1925", "target" : "2957", "shared_name" : "948 (interacts with) 5465", "name" : "948 (interacts with) 5465", "interaction" : "interacts with", "SUID" : 60098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60094", "source" : "1925", "target" : "2081", "shared_name" : "948 (interacts with) 5468", "name" : "948 (interacts with) 5468", "interaction" : "interacts with", "SUID" : 60094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60090", "source" : "1925", "target" : "3821", "shared_name" : "948 (interacts with) 10891", "name" : "948 (interacts with) 10891", "interaction" : "interacts with", "SUID" : 60090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60086", "source" : "1925", "target" : "2485", "shared_name" : "948 (interacts with) 81857", "name" : "948 (interacts with) 81857", "interaction" : "interacts with", "SUID" : 60086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60082", "source" : "1925", "target" : "5457", "shared_name" : "948 (interacts with) 9440", "name" : "948 (interacts with) 9440", "interaction" : "interacts with", "SUID" : 60082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60078", "source" : "1925", "target" : "3517", "shared_name" : "948 (interacts with) 2033", "name" : "948 (interacts with) 2033", "interaction" : "interacts with", "SUID" : 60078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60074", "source" : "1925", "target" : "1893", "shared_name" : "948 (interacts with) 1387", "name" : "948 (interacts with) 1387", "interaction" : "interacts with", "SUID" : 60074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60070", "source" : "1925", "target" : "1277", "shared_name" : "948 (interacts with) 79143", "name" : "948 (interacts with) 79143", "interaction" : "interacts with", "SUID" : 60070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60406", "source" : "1921", "target" : "5985", "shared_name" : "1352 (interacts with) 27235", "name" : "1352 (interacts with) 27235", "interaction" : "interacts with", "SUID" : 60406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60402", "source" : "1921", "target" : "4945", "shared_name" : "1352 (interacts with) 4722", "name" : "1352 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 60402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60398", "source" : "1921", "target" : "1929", "shared_name" : "1352 (interacts with) 51218", "name" : "1352 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 60398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60394", "source" : "1921", "target" : "3617", "shared_name" : "1352 (interacts with) 4704", "name" : "1352 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 60394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60390", "source" : "1921", "target" : "1489", "shared_name" : "1352 (interacts with) 1738", "name" : "1352 (interacts with) 1738", "interaction" : "interacts with", "SUID" : 60390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60386", "source" : "1921", "target" : "501", "shared_name" : "1352 (interacts with) 65993", "name" : "1352 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 60386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60382", "source" : "1921", "target" : "6181", "shared_name" : "1352 (interacts with) 84987", "name" : "1352 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 60382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60378", "source" : "1921", "target" : "2609", "shared_name" : "1352 (interacts with) 29960", "name" : "1352 (interacts with) 29960", "interaction" : "interacts with", "SUID" : 60378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60374", "source" : "1921", "target" : "1053", "shared_name" : "1352 (interacts with) 81689", "name" : "1352 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 60374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60370", "source" : "1921", "target" : "3269", "shared_name" : "1352 (interacts with) 2108", "name" : "1352 (interacts with) 2108", "interaction" : "interacts with", "SUID" : 60370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60366", "source" : "1921", "target" : "3337", "shared_name" : "1352 (interacts with) 2639", "name" : "1352 (interacts with) 2639", "interaction" : "interacts with", "SUID" : 60366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60362", "source" : "1921", "target" : "4745", "shared_name" : "1352 (interacts with) 35", "name" : "1352 (interacts with) 35", "interaction" : "interacts with", "SUID" : 60362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60358", "source" : "1921", "target" : "5689", "shared_name" : "1352 (interacts with) 27089", "name" : "1352 (interacts with) 27089", "interaction" : "interacts with", "SUID" : 60358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60354", "source" : "1921", "target" : "5605", "shared_name" : "1352 (interacts with) 51601", "name" : "1352 (interacts with) 51601", "interaction" : "interacts with", "SUID" : 60354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60350", "source" : "1921", "target" : "5189", "shared_name" : "1352 (interacts with) 57176", "name" : "1352 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 60350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60346", "source" : "1921", "target" : "2021", "shared_name" : "1352 (interacts with) 5428", "name" : "1352 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 60346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60342", "source" : "1921", "target" : "1129", "shared_name" : "1352 (interacts with) 57505", "name" : "1352 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 60342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60338", "source" : "1921", "target" : "5737", "shared_name" : "1352 (interacts with) 84340", "name" : "1352 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 60338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60334", "source" : "1921", "target" : "2337", "shared_name" : "1352 (interacts with) 28976", "name" : "1352 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 60334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60330", "source" : "1921", "target" : "3761", "shared_name" : "1352 (interacts with) 25915", "name" : "1352 (interacts with) 25915", "interaction" : "interacts with", "SUID" : 60330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60326", "source" : "1921", "target" : "6125", "shared_name" : "1352 (interacts with) 22907", "name" : "1352 (interacts with) 22907", "interaction" : "interacts with", "SUID" : 60326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60322", "source" : "1921", "target" : "2345", "shared_name" : "1352 (interacts with) 200205", "name" : "1352 (interacts with) 200205", "interaction" : "interacts with", "SUID" : 60322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60318", "source" : "1921", "target" : "2797", "shared_name" : "1352 (interacts with) 4728", "name" : "1352 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 60318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60314", "source" : "1921", "target" : "5505", "shared_name" : "1352 (interacts with) 29078", "name" : "1352 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 60314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60310", "source" : "1921", "target" : "1669", "shared_name" : "1352 (interacts with) 6390", "name" : "1352 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 60310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60306", "source" : "1921", "target" : "521", "shared_name" : "1352 (interacts with) 85476", "name" : "1352 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 60306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60302", "source" : "1921", "target" : "721", "shared_name" : "1352 (interacts with) 79731", "name" : "1352 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 60302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60298", "source" : "1921", "target" : "6049", "shared_name" : "1352 (interacts with) 25973", "name" : "1352 (interacts with) 25973", "interaction" : "interacts with", "SUID" : 60298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60294", "source" : "1921", "target" : "2025", "shared_name" : "1352 (interacts with) 549", "name" : "1352 (interacts with) 549", "interaction" : "interacts with", "SUID" : 60294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60290", "source" : "1921", "target" : "3633", "shared_name" : "1352 (interacts with) 51067", "name" : "1352 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 60290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60286", "source" : "1921", "target" : "3681", "shared_name" : "1352 (interacts with) 1892", "name" : "1352 (interacts with) 1892", "interaction" : "interacts with", "SUID" : 60286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60282", "source" : "1921", "target" : "4897", "shared_name" : "1352 (interacts with) 55149", "name" : "1352 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 60282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60278", "source" : "1921", "target" : "6073", "shared_name" : "1352 (interacts with) 92170", "name" : "1352 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 60278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60274", "source" : "1921", "target" : "3621", "shared_name" : "1352 (interacts with) 6834", "name" : "1352 (interacts with) 6834", "interaction" : "interacts with", "SUID" : 60274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60270", "source" : "1921", "target" : "1105", "shared_name" : "1352 (interacts with) 493753", "name" : "1352 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 60270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60266", "source" : "1921", "target" : "1197", "shared_name" : "1352 (interacts with) 79587", "name" : "1352 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 60266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60262", "source" : "1921", "target" : "713", "shared_name" : "1352 (interacts with) 7019", "name" : "1352 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 60262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60258", "source" : "1921", "target" : "4353", "shared_name" : "1352 (interacts with) 9512", "name" : "1352 (interacts with) 9512", "interaction" : "interacts with", "SUID" : 60258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60254", "source" : "1921", "target" : "4069", "shared_name" : "1352 (interacts with) 374291", "name" : "1352 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 60254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60250", "source" : "1921", "target" : "4593", "shared_name" : "1352 (interacts with) 2058", "name" : "1352 (interacts with) 2058", "interaction" : "interacts with", "SUID" : 60250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60246", "source" : "1921", "target" : "4621", "shared_name" : "1352 (interacts with) 57038", "name" : "1352 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 60246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60242", "source" : "1921", "target" : "2477", "shared_name" : "1352 (interacts with) 57107", "name" : "1352 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 60242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60238", "source" : "1921", "target" : "5085", "shared_name" : "1352 (interacts with) 56652", "name" : "1352 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 60238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60234", "source" : "1921", "target" : "4409", "shared_name" : "1352 (interacts with) 6341", "name" : "1352 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 60234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60230", "source" : "1921", "target" : "5393", "shared_name" : "1352 (interacts with) 2395", "name" : "1352 (interacts with) 2395", "interaction" : "interacts with", "SUID" : 60230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60226", "source" : "1921", "target" : "4241", "shared_name" : "1352 (interacts with) 1356", "name" : "1352 (interacts with) 1356", "interaction" : "interacts with", "SUID" : 60226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60222", "source" : "1921", "target" : "529", "shared_name" : "1352 (interacts with) 23203", "name" : "1352 (interacts with) 23203", "interaction" : "interacts with", "SUID" : 60222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60218", "source" : "1921", "target" : "2801", "shared_name" : "1352 (interacts with) 4700", "name" : "1352 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 60218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60214", "source" : "1921", "target" : "2689", "shared_name" : "1352 (interacts with) 4715", "name" : "1352 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 60214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60210", "source" : "1921", "target" : "1849", "shared_name" : "1352 (interacts with) 26275", "name" : "1352 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 60210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60206", "source" : "1921", "target" : "6001", "shared_name" : "1352 (interacts with) 55157", "name" : "1352 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 60206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60202", "source" : "1921", "target" : "5853", "shared_name" : "1352 (interacts with) 4709", "name" : "1352 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 60202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60198", "source" : "1921", "target" : "4101", "shared_name" : "1352 (interacts with) 65260", "name" : "1352 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 60198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60194", "source" : "1921", "target" : "4141", "shared_name" : "1352 (interacts with) 617", "name" : "1352 (interacts with) 617", "interaction" : "interacts with", "SUID" : 60194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60190", "source" : "1921", "target" : "3973", "shared_name" : "1352 (interacts with) 55572", "name" : "1352 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 60190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60186", "source" : "1921", "target" : "4017", "shared_name" : "1352 (interacts with) 4719", "name" : "1352 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 60186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60182", "source" : "1921", "target" : "1561", "shared_name" : "1352 (interacts with) 51117", "name" : "1352 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 60182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60178", "source" : "1921", "target" : "2009", "shared_name" : "1352 (interacts with) 79133", "name" : "1352 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 60178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60174", "source" : "1921", "target" : "2285", "shared_name" : "1352 (interacts with) 51300", "name" : "1352 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 60174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60170", "source" : "1921", "target" : "2109", "shared_name" : "1352 (interacts with) 51103", "name" : "1352 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 60170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60166", "source" : "1921", "target" : "1869", "shared_name" : "1352 (interacts with) 4729", "name" : "1352 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 60166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60162", "source" : "1921", "target" : "477", "shared_name" : "1352 (interacts with) 51021", "name" : "1352 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 60162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60158", "source" : "1921", "target" : "4869", "shared_name" : "1352 (interacts with) 92935", "name" : "1352 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 60158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60154", "source" : "1921", "target" : "2105", "shared_name" : "1352 (interacts with) 56945", "name" : "1352 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 60154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60150", "source" : "1921", "target" : "4061", "shared_name" : "1352 (interacts with) 4705", "name" : "1352 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 60150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60146", "source" : "1921", "target" : "2741", "shared_name" : "1352 (interacts with) 4695", "name" : "1352 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 60146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60142", "source" : "1921", "target" : "5845", "shared_name" : "1352 (interacts with) 4714", "name" : "1352 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 60142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60138", "source" : "1921", "target" : "4757", "shared_name" : "1352 (interacts with) 9997", "name" : "1352 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 60138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60134", "source" : "1921", "target" : "2753", "shared_name" : "1352 (interacts with) 4720", "name" : "1352 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 60134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60130", "source" : "1921", "target" : "229", "shared_name" : "1352 (interacts with) 1371", "name" : "1352 (interacts with) 1371", "interaction" : "interacts with", "SUID" : 60130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60126", "source" : "1921", "target" : "6089", "shared_name" : "1352 (interacts with) 3145", "name" : "1352 (interacts with) 3145", "interaction" : "interacts with", "SUID" : 60126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60122", "source" : "1921", "target" : "5169", "shared_name" : "1352 (interacts with) 1355", "name" : "1352 (interacts with) 1355", "interaction" : "interacts with", "SUID" : 60122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60118", "source" : "1921", "target" : "4489", "shared_name" : "1352 (interacts with) 2222", "name" : "1352 (interacts with) 2222", "interaction" : "interacts with", "SUID" : 60118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60442", "source" : "1917", "target" : "1545", "shared_name" : "51604 (interacts with) 5277", "name" : "51604 (interacts with) 5277", "interaction" : "interacts with", "SUID" : 60442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60438", "source" : "1917", "target" : "1697", "shared_name" : "51604 (interacts with) 8818", "name" : "51604 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 60438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60434", "source" : "1917", "target" : "985", "shared_name" : "51604 (interacts with) 9091", "name" : "51604 (interacts with) 9091", "interaction" : "interacts with", "SUID" : 60434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60430", "source" : "1917", "target" : "5477", "shared_name" : "51604 (interacts with) 54872", "name" : "51604 (interacts with) 54872", "interaction" : "interacts with", "SUID" : 60430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60426", "source" : "1917", "target" : "1593", "shared_name" : "51604 (interacts with) 8733", "name" : "51604 (interacts with) 8733", "interaction" : "interacts with", "SUID" : 60426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60422", "source" : "1917", "target" : "1025", "shared_name" : "51604 (interacts with) 80055", "name" : "51604 (interacts with) 80055", "interaction" : "interacts with", "SUID" : 60422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60418", "source" : "1917", "target" : "1905", "shared_name" : "51604 (interacts with) 9488", "name" : "51604 (interacts with) 9488", "interaction" : "interacts with", "SUID" : 60418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60414", "source" : "1917", "target" : "2181", "shared_name" : "51604 (interacts with) 94005", "name" : "51604 (interacts with) 94005", "interaction" : "interacts with", "SUID" : 60414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60410", "source" : "1917", "target" : "2149", "shared_name" : "51604 (interacts with) 80232", "name" : "51604 (interacts with) 80232", "interaction" : "interacts with", "SUID" : 60410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60478", "source" : "1913", "target" : "5941", "shared_name" : "3172 (interacts with) 5914", "name" : "3172 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 60478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60474", "source" : "1913", "target" : "5009", "shared_name" : "3172 (interacts with) 5241", "name" : "3172 (interacts with) 5241", "interaction" : "interacts with", "SUID" : 60474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60470", "source" : "1913", "target" : "3825", "shared_name" : "3172 (interacts with) 5915", "name" : "3172 (interacts with) 5915", "interaction" : "interacts with", "SUID" : 60470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60466", "source" : "1913", "target" : "1829", "shared_name" : "3172 (interacts with) 7421", "name" : "3172 (interacts with) 7421", "interaction" : "interacts with", "SUID" : 60466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60462", "source" : "1913", "target" : "321", "shared_name" : "3172 (interacts with) 1593", "name" : "3172 (interacts with) 1593", "interaction" : "interacts with", "SUID" : 60462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60458", "source" : "1913", "target" : "225", "shared_name" : "3172 (interacts with) 174", "name" : "3172 (interacts with) 174", "interaction" : "interacts with", "SUID" : 60458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60454", "source" : "1913", "target" : "4097", "shared_name" : "3172 (interacts with) 9611", "name" : "3172 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 60454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60450", "source" : "1913", "target" : "2849", "shared_name" : "3172 (interacts with) 9326", "name" : "3172 (interacts with) 9326", "interaction" : "interacts with", "SUID" : 60450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60446", "source" : "1913", "target" : "4589", "shared_name" : "3172 (interacts with) 8431", "name" : "3172 (interacts with) 8431", "interaction" : "interacts with", "SUID" : 60446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60514", "source" : "1909", "target" : "2969", "shared_name" : "5286 (interacts with) 8867", "name" : "5286 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 60514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60510", "source" : "1909", "target" : "3653", "shared_name" : "5286 (interacts with) 8898", "name" : "5286 (interacts with) 8898", "interaction" : "interacts with", "SUID" : 60510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60506", "source" : "1909", "target" : "2497", "shared_name" : "5286 (interacts with) 55697", "name" : "5286 (interacts with) 55697", "interaction" : "interacts with", "SUID" : 60506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60502", "source" : "1909", "target" : "5785", "shared_name" : "5286 (interacts with) 6857", "name" : "5286 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 60502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60498", "source" : "1909", "target" : "4393", "shared_name" : "5286 (interacts with) 950", "name" : "5286 (interacts with) 950", "interaction" : "interacts with", "SUID" : 60498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60494", "source" : "1909", "target" : "4157", "shared_name" : "5286 (interacts with) 85021", "name" : "5286 (interacts with) 85021", "interaction" : "interacts with", "SUID" : 60494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60490", "source" : "1909", "target" : "4213", "shared_name" : "5286 (interacts with) 5295", "name" : "5286 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 60490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60486", "source" : "1909", "target" : "3465", "shared_name" : "5286 (interacts with) 5296", "name" : "5286 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 60486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60482", "source" : "1909", "target" : "5225", "shared_name" : "5286 (interacts with) 5290", "name" : "5286 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 60482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60518", "source" : "1905", "target" : "2933", "shared_name" : "9488 (interacts with) 10585", "name" : "9488 (interacts with) 10585", "interaction" : "interacts with", "SUID" : 60518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60522", "source" : "1897", "target" : "877", "shared_name" : "79753 (interacts with) 7341", "name" : "79753 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 60522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60942", "source" : "1893", "target" : "773", "shared_name" : "1387 (interacts with) 29072", "name" : "1387 (interacts with) 29072", "interaction" : "interacts with", "SUID" : 60942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60938", "source" : "1893", "target" : "1621", "shared_name" : "1387 (interacts with) 1432", "name" : "1387 (interacts with) 1432", "interaction" : "interacts with", "SUID" : 60938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60934", "source" : "1893", "target" : "5509", "shared_name" : "1387 (interacts with) 207", "name" : "1387 (interacts with) 207", "interaction" : "interacts with", "SUID" : 60934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60930", "source" : "1893", "target" : "4521", "shared_name" : "1387 (interacts with) 5894", "name" : "1387 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 60930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60926", "source" : "1893", "target" : "3017", "shared_name" : "1387 (interacts with) 4790", "name" : "1387 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 60926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60922", "source" : "1893", "target" : "5361", "shared_name" : "1387 (interacts with) 5604", "name" : "1387 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 60922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60918", "source" : "1893", "target" : "4857", "shared_name" : "1387 (interacts with) 5573", "name" : "1387 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 60918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60914", "source" : "1893", "target" : "4065", "shared_name" : "1387 (interacts with) 7124", "name" : "1387 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 60914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60910", "source" : "1893", "target" : "5037", "shared_name" : "1387 (interacts with) 5515", "name" : "1387 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 60910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60906", "source" : "1893", "target" : "3409", "shared_name" : "1387 (interacts with) 7043", "name" : "1387 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 60906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60902", "source" : "1893", "target" : "3305", "shared_name" : "1387 (interacts with) 7040", "name" : "1387 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 60902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60898", "source" : "1893", "target" : "2153", "shared_name" : "1387 (interacts with) 7042", "name" : "1387 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 60898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60894", "source" : "1893", "target" : "5965", "shared_name" : "1387 (interacts with) 596", "name" : "1387 (interacts with) 596", "interaction" : "interacts with", "SUID" : 60894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60890", "source" : "1893", "target" : "1201", "shared_name" : "1387 (interacts with) 805", "name" : "1387 (interacts with) 805", "interaction" : "interacts with", "SUID" : 60890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60886", "source" : "1893", "target" : "1241", "shared_name" : "1387 (interacts with) 808", "name" : "1387 (interacts with) 808", "interaction" : "interacts with", "SUID" : 60886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60882", "source" : "1893", "target" : "2085", "shared_name" : "1387 (interacts with) 2932", "name" : "1387 (interacts with) 2932", "interaction" : "interacts with", "SUID" : 60882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60878", "source" : "1893", "target" : "993", "shared_name" : "1387 (interacts with) 801", "name" : "1387 (interacts with) 801", "interaction" : "interacts with", "SUID" : 60878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60874", "source" : "1893", "target" : "789", "shared_name" : "1387 (interacts with) 1616", "name" : "1387 (interacts with) 1616", "interaction" : "interacts with", "SUID" : 60874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60870", "source" : "1893", "target" : "3593", "shared_name" : "1387 (interacts with) 5530", "name" : "1387 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 60870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60866", "source" : "1893", "target" : "565", "shared_name" : "1387 (interacts with) 4772", "name" : "1387 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 60866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60862", "source" : "1893", "target" : "1233", "shared_name" : "1387 (interacts with) 355", "name" : "1387 (interacts with) 355", "interaction" : "interacts with", "SUID" : 60862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60858", "source" : "1893", "target" : "2625", "shared_name" : "1387 (interacts with) 3065", "name" : "1387 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 60858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60854", "source" : "1893", "target" : "4649", "shared_name" : "1387 (interacts with) 3479", "name" : "1387 (interacts with) 3479", "interaction" : "interacts with", "SUID" : 60854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60850", "source" : "1893", "target" : "4769", "shared_name" : "1387 (interacts with) 7132", "name" : "1387 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 60850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60846", "source" : "1893", "target" : "2957", "shared_name" : "1387 (interacts with) 5465", "name" : "1387 (interacts with) 5465", "interaction" : "interacts with", "SUID" : 60846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60842", "source" : "1893", "target" : "3581", "shared_name" : "1387 (interacts with) 2185", "name" : "1387 (interacts with) 2185", "interaction" : "interacts with", "SUID" : 60842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60838", "source" : "1893", "target" : "4533", "shared_name" : "1387 (interacts with) 4089", "name" : "1387 (interacts with) 4089", "interaction" : "interacts with", "SUID" : 60838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60834", "source" : "1893", "target" : "2433", "shared_name" : "1387 (interacts with) 6927", "name" : "1387 (interacts with) 6927", "interaction" : "interacts with", "SUID" : 60834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60830", "source" : "1893", "target" : "5761", "shared_name" : "1387 (interacts with) 4208", "name" : "1387 (interacts with) 4208", "interaction" : "interacts with", "SUID" : 60830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60826", "source" : "1893", "target" : "2641", "shared_name" : "1387 (interacts with) 3123", "name" : "1387 (interacts with) 3123", "interaction" : "interacts with", "SUID" : 60826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60822", "source" : "1893", "target" : "569", "shared_name" : "1387 (interacts with) 7048", "name" : "1387 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 60822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60818", "source" : "1893", "target" : "4589", "shared_name" : "1387 (interacts with) 8431", "name" : "1387 (interacts with) 8431", "interaction" : "interacts with", "SUID" : 60818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60814", "source" : "1893", "target" : "829", "shared_name" : "1387 (interacts with) 8772", "name" : "1387 (interacts with) 8772", "interaction" : "interacts with", "SUID" : 60814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60810", "source" : "1893", "target" : "5697", "shared_name" : "1387 (interacts with) 8517", "name" : "1387 (interacts with) 8517", "interaction" : "interacts with", "SUID" : 60810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60806", "source" : "1893", "target" : "5941", "shared_name" : "1387 (interacts with) 5914", "name" : "1387 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 60806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60802", "source" : "1893", "target" : "5949", "shared_name" : "1387 (interacts with) 672", "name" : "1387 (interacts with) 672", "interaction" : "interacts with", "SUID" : 60802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60798", "source" : "1893", "target" : "5321", "shared_name" : "1387 (interacts with) 5743", "name" : "1387 (interacts with) 5743", "interaction" : "interacts with", "SUID" : 60798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60794", "source" : "1893", "target" : "5745", "shared_name" : "1387 (interacts with) 7471", "name" : "1387 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 60794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60790", "source" : "1893", "target" : "4681", "shared_name" : "1387 (interacts with) 4843", "name" : "1387 (interacts with) 4843", "interaction" : "interacts with", "SUID" : 60790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60786", "source" : "1893", "target" : "4097", "shared_name" : "1387 (interacts with) 9611", "name" : "1387 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 60786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60782", "source" : "1893", "target" : "6169", "shared_name" : "1387 (interacts with) 4088", "name" : "1387 (interacts with) 4088", "interaction" : "interacts with", "SUID" : 60782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60778", "source" : "1893", "target" : "1293", "shared_name" : "1387 (interacts with) 2908", "name" : "1387 (interacts with) 2908", "interaction" : "interacts with", "SUID" : 60778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60774", "source" : "1893", "target" : "1829", "shared_name" : "1387 (interacts with) 7421", "name" : "1387 (interacts with) 7421", "interaction" : "interacts with", "SUID" : 60774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60770", "source" : "1893", "target" : "6149", "shared_name" : "1387 (interacts with) 335", "name" : "1387 (interacts with) 335", "interaction" : "interacts with", "SUID" : 60770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60766", "source" : "1893", "target" : "5133", "shared_name" : "1387 (interacts with) 51", "name" : "1387 (interacts with) 51", "interaction" : "interacts with", "SUID" : 60766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60762", "source" : "1893", "target" : "1525", "shared_name" : "1387 (interacts with) 3295", "name" : "1387 (interacts with) 3295", "interaction" : "interacts with", "SUID" : 60762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60758", "source" : "1893", "target" : "2305", "shared_name" : "1387 (interacts with) 6908", "name" : "1387 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 60758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60754", "source" : "1893", "target" : "1125", "shared_name" : "1387 (interacts with) 5551", "name" : "1387 (interacts with) 5551", "interaction" : "interacts with", "SUID" : 60754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60750", "source" : "1893", "target" : "877", "shared_name" : "1387 (interacts with) 7341", "name" : "1387 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 60750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60746", "source" : "1893", "target" : "6013", "shared_name" : "1387 (interacts with) 3574", "name" : "1387 (interacts with) 3574", "interaction" : "interacts with", "SUID" : 60746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60742", "source" : "1893", "target" : "1285", "shared_name" : "1387 (interacts with) 7249", "name" : "1387 (interacts with) 7249", "interaction" : "interacts with", "SUID" : 60742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60738", "source" : "1893", "target" : "2081", "shared_name" : "1387 (interacts with) 5468", "name" : "1387 (interacts with) 5468", "interaction" : "interacts with", "SUID" : 60738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60734", "source" : "1893", "target" : "5105", "shared_name" : "1387 (interacts with) 1487", "name" : "1387 (interacts with) 1487", "interaction" : "interacts with", "SUID" : 60734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60730", "source" : "1893", "target" : "3093", "shared_name" : "1387 (interacts with) 6597", "name" : "1387 (interacts with) 6597", "interaction" : "interacts with", "SUID" : 60730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60726", "source" : "1893", "target" : "3105", "shared_name" : "1387 (interacts with) 8289", "name" : "1387 (interacts with) 8289", "interaction" : "interacts with", "SUID" : 60726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60722", "source" : "1893", "target" : "4629", "shared_name" : "1387 (interacts with) 6605", "name" : "1387 (interacts with) 6605", "interaction" : "interacts with", "SUID" : 60722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60718", "source" : "1893", "target" : "1597", "shared_name" : "1387 (interacts with) 3146", "name" : "1387 (interacts with) 3146", "interaction" : "interacts with", "SUID" : 60718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60714", "source" : "1893", "target" : "2673", "shared_name" : "1387 (interacts with) 8841", "name" : "1387 (interacts with) 8841", "interaction" : "interacts with", "SUID" : 60714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60710", "source" : "1893", "target" : "3417", "shared_name" : "1387 (interacts with) 5371", "name" : "1387 (interacts with) 5371", "interaction" : "interacts with", "SUID" : 60710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60706", "source" : "1893", "target" : "5781", "shared_name" : "1387 (interacts with) 6672", "name" : "1387 (interacts with) 6672", "interaction" : "interacts with", "SUID" : 60706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60702", "source" : "1893", "target" : "5013", "shared_name" : "1387 (interacts with) 23411", "name" : "1387 (interacts with) 23411", "interaction" : "interacts with", "SUID" : 60702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60698", "source" : "1893", "target" : "3401", "shared_name" : "1387 (interacts with) 3659", "name" : "1387 (interacts with) 3659", "interaction" : "interacts with", "SUID" : 60698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60694", "source" : "1893", "target" : "4469", "shared_name" : "1387 (interacts with) 8295", "name" : "1387 (interacts with) 8295", "interaction" : "interacts with", "SUID" : 60694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60690", "source" : "1893", "target" : "1765", "shared_name" : "1387 (interacts with) 5308", "name" : "1387 (interacts with) 5308", "interaction" : "interacts with", "SUID" : 60690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60686", "source" : "1893", "target" : "2069", "shared_name" : "1387 (interacts with) 84106", "name" : "1387 (interacts with) 84106", "interaction" : "interacts with", "SUID" : 60686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60682", "source" : "1893", "target" : "2597", "shared_name" : "1387 (interacts with) 2056", "name" : "1387 (interacts with) 2056", "interaction" : "interacts with", "SUID" : 60682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60678", "source" : "1893", "target" : "3517", "shared_name" : "1387 (interacts with) 2033", "name" : "1387 (interacts with) 2033", "interaction" : "interacts with", "SUID" : 60678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60674", "source" : "1893", "target" : "693", "shared_name" : "1387 (interacts with) 7296", "name" : "1387 (interacts with) 7296", "interaction" : "interacts with", "SUID" : 60674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60670", "source" : "1893", "target" : "2077", "shared_name" : "1387 (interacts with) 7528", "name" : "1387 (interacts with) 7528", "interaction" : "interacts with", "SUID" : 60670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60666", "source" : "1893", "target" : "5729", "shared_name" : "1387 (interacts with) 861", "name" : "1387 (interacts with) 861", "interaction" : "interacts with", "SUID" : 60666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60662", "source" : "1893", "target" : "1097", "shared_name" : "1387 (interacts with) 79718", "name" : "1387 (interacts with) 79718", "interaction" : "interacts with", "SUID" : 60662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60658", "source" : "1893", "target" : "3825", "shared_name" : "1387 (interacts with) 5915", "name" : "1387 (interacts with) 5915", "interaction" : "interacts with", "SUID" : 60658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60654", "source" : "1893", "target" : "2649", "shared_name" : "1387 (interacts with) 5430", "name" : "1387 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 60654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60650", "source" : "1893", "target" : "5861", "shared_name" : "1387 (interacts with) 5435", "name" : "1387 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 60650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60646", "source" : "1893", "target" : "4345", "shared_name" : "1387 (interacts with) 4854", "name" : "1387 (interacts with) 4854", "interaction" : "interacts with", "SUID" : 60646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60642", "source" : "1893", "target" : "1029", "shared_name" : "1387 (interacts with) 5080", "name" : "1387 (interacts with) 5080", "interaction" : "interacts with", "SUID" : 60642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60638", "source" : "1893", "target" : "2213", "shared_name" : "1387 (interacts with) 4851", "name" : "1387 (interacts with) 4851", "interaction" : "interacts with", "SUID" : 60638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60634", "source" : "1893", "target" : "5457", "shared_name" : "1387 (interacts with) 9440", "name" : "1387 (interacts with) 9440", "interaction" : "interacts with", "SUID" : 60634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60630", "source" : "1893", "target" : "1985", "shared_name" : "1387 (interacts with) 3456", "name" : "1387 (interacts with) 3456", "interaction" : "interacts with", "SUID" : 60630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60626", "source" : "1893", "target" : "3769", "shared_name" : "1387 (interacts with) 8085", "name" : "1387 (interacts with) 8085", "interaction" : "interacts with", "SUID" : 60626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60622", "source" : "1893", "target" : "1109", "shared_name" : "1387 (interacts with) 3440", "name" : "1387 (interacts with) 3440", "interaction" : "interacts with", "SUID" : 60622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60618", "source" : "1893", "target" : "2309", "shared_name" : "1387 (interacts with) 3316", "name" : "1387 (interacts with) 3316", "interaction" : "interacts with", "SUID" : 60618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60614", "source" : "1893", "target" : "5681", "shared_name" : "1387 (interacts with) 3315", "name" : "1387 (interacts with) 3315", "interaction" : "interacts with", "SUID" : 60614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60610", "source" : "1893", "target" : "813", "shared_name" : "1387 (interacts with) 3447", "name" : "1387 (interacts with) 3447", "interaction" : "interacts with", "SUID" : 60610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60606", "source" : "1893", "target" : "2409", "shared_name" : "1387 (interacts with) 3304", "name" : "1387 (interacts with) 3304", "interaction" : "interacts with", "SUID" : 60606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60602", "source" : "1893", "target" : "4489", "shared_name" : "1387 (interacts with) 2222", "name" : "1387 (interacts with) 2222", "interaction" : "interacts with", "SUID" : 60602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60598", "source" : "1893", "target" : "2885", "shared_name" : "1387 (interacts with) 1437", "name" : "1387 (interacts with) 1437", "interaction" : "interacts with", "SUID" : 60598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60594", "source" : "1893", "target" : "1245", "shared_name" : "1387 (interacts with) 4137", "name" : "1387 (interacts with) 4137", "interaction" : "interacts with", "SUID" : 60594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60590", "source" : "1893", "target" : "509", "shared_name" : "1387 (interacts with) 3661", "name" : "1387 (interacts with) 3661", "interaction" : "interacts with", "SUID" : 60590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60586", "source" : "1893", "target" : "3865", "shared_name" : "1387 (interacts with) 7080", "name" : "1387 (interacts with) 7080", "interaction" : "interacts with", "SUID" : 60586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60582", "source" : "1893", "target" : "2469", "shared_name" : "1387 (interacts with) 10657", "name" : "1387 (interacts with) 10657", "interaction" : "interacts with", "SUID" : 60582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60578", "source" : "1893", "target" : "2485", "shared_name" : "1387 (interacts with) 81857", "name" : "1387 (interacts with) 81857", "interaction" : "interacts with", "SUID" : 60578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60574", "source" : "1893", "target" : "785", "shared_name" : "1387 (interacts with) 1958", "name" : "1387 (interacts with) 1958", "interaction" : "interacts with", "SUID" : 60574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60570", "source" : "1893", "target" : "2813", "shared_name" : "1387 (interacts with) 5079", "name" : "1387 (interacts with) 5079", "interaction" : "interacts with", "SUID" : 60570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60566", "source" : "1893", "target" : "5577", "shared_name" : "1387 (interacts with) 3091", "name" : "1387 (interacts with) 3091", "interaction" : "interacts with", "SUID" : 60566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60562", "source" : "1893", "target" : "4949", "shared_name" : "1387 (interacts with) 5970", "name" : "1387 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 60562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60558", "source" : "1893", "target" : "5185", "shared_name" : "1387 (interacts with) 1499", "name" : "1387 (interacts with) 1499", "interaction" : "interacts with", "SUID" : 60558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60554", "source" : "1893", "target" : "2093", "shared_name" : "1387 (interacts with) 4780", "name" : "1387 (interacts with) 4780", "interaction" : "interacts with", "SUID" : 60554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60550", "source" : "1893", "target" : "3253", "shared_name" : "1387 (interacts with) 4297", "name" : "1387 (interacts with) 4297", "interaction" : "interacts with", "SUID" : 60550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60546", "source" : "1893", "target" : "3817", "shared_name" : "1387 (interacts with) 3663", "name" : "1387 (interacts with) 3663", "interaction" : "interacts with", "SUID" : 60546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60542", "source" : "1893", "target" : "2937", "shared_name" : "1387 (interacts with) 1457", "name" : "1387 (interacts with) 1457", "interaction" : "interacts with", "SUID" : 60542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60538", "source" : "1893", "target" : "1913", "shared_name" : "1387 (interacts with) 3172", "name" : "1387 (interacts with) 3172", "interaction" : "interacts with", "SUID" : 60538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60534", "source" : "1893", "target" : "873", "shared_name" : "1387 (interacts with) 1385", "name" : "1387 (interacts with) 1385", "interaction" : "interacts with", "SUID" : 60534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60530", "source" : "1893", "target" : "981", "shared_name" : "1387 (interacts with) 7157", "name" : "1387 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 60530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60526", "source" : "1893", "target" : "3737", "shared_name" : "1387 (interacts with) 3064", "name" : "1387 (interacts with) 3064", "interaction" : "interacts with", "SUID" : 60526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60962", "source" : "1889", "target" : "3517", "shared_name" : "1490 (interacts with) 2033", "name" : "1490 (interacts with) 2033", "interaction" : "interacts with", "SUID" : 60962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60958", "source" : "1889", "target" : "809", "shared_name" : "1490 (interacts with) 2335", "name" : "1490 (interacts with) 2335", "interaction" : "interacts with", "SUID" : 60958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60954", "source" : "1889", "target" : "4101", "shared_name" : "1490 (interacts with) 65260", "name" : "1490 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 60954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60950", "source" : "1889", "target" : "1893", "shared_name" : "1490 (interacts with) 1387", "name" : "1490 (interacts with) 1387", "interaction" : "interacts with", "SUID" : 60950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60946", "source" : "1889", "target" : "533", "shared_name" : "1490 (interacts with) 4036", "name" : "1490 (interacts with) 4036", "interaction" : "interacts with", "SUID" : 60946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60974", "source" : "1885", "target" : "5497", "shared_name" : "8604 (interacts with) 91137", "name" : "8604 (interacts with) 91137", "interaction" : "interacts with", "SUID" : 60974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60970", "source" : "1885", "target" : "1013", "shared_name" : "8604 (interacts with) 6898", "name" : "8604 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 60970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60966", "source" : "1885", "target" : "1385", "shared_name" : "8604 (interacts with) 6520", "name" : "8604 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 60966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60978", "source" : "1881", "target" : "3957", "shared_name" : "8506 (interacts with) 23114", "name" : "8506 (interacts with) 23114", "interaction" : "interacts with", "SUID" : 60978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61006", "source" : "1877", "target" : "2169", "shared_name" : "9531 (interacts with) 51182", "name" : "9531 (interacts with) 51182", "interaction" : "interacts with", "SUID" : 61006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61002", "source" : "1877", "target" : "1217", "shared_name" : "9531 (interacts with) 3308", "name" : "9531 (interacts with) 3308", "interaction" : "interacts with", "SUID" : 61002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60998", "source" : "1877", "target" : "665", "shared_name" : "9531 (interacts with) 3309", "name" : "9531 (interacts with) 3309", "interaction" : "interacts with", "SUID" : 60998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60994", "source" : "1877", "target" : "2233", "shared_name" : "9531 (interacts with) 9516", "name" : "9531 (interacts with) 9516", "interaction" : "interacts with", "SUID" : 60994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60990", "source" : "1877", "target" : "553", "shared_name" : "9531 (interacts with) 7248", "name" : "9531 (interacts with) 7248", "interaction" : "interacts with", "SUID" : 60990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60986", "source" : "1877", "target" : "2409", "shared_name" : "9531 (interacts with) 3304", "name" : "9531 (interacts with) 3304", "interaction" : "interacts with", "SUID" : 60986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "60982", "source" : "1877", "target" : "5729", "shared_name" : "9531 (interacts with) 861", "name" : "9531 (interacts with) 861", "interaction" : "interacts with", "SUID" : 60982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61234", "source" : "1869", "target" : "2297", "shared_name" : "4729 (interacts with) 55005", "name" : "4729 (interacts with) 55005", "interaction" : "interacts with", "SUID" : 61234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61230", "source" : "1869", "target" : "5605", "shared_name" : "4729 (interacts with) 51601", "name" : "4729 (interacts with) 51601", "interaction" : "interacts with", "SUID" : 61230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61226", "source" : "1869", "target" : "501", "shared_name" : "4729 (interacts with) 65993", "name" : "4729 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 61226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61222", "source" : "1869", "target" : "1865", "shared_name" : "4729 (interacts with) 498", "name" : "4729 (interacts with) 498", "interaction" : "interacts with", "SUID" : 61222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61218", "source" : "1869", "target" : "1085", "shared_name" : "4729 (interacts with) 9377", "name" : "4729 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 61218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61214", "source" : "1869", "target" : "3545", "shared_name" : "4729 (interacts with) 708", "name" : "4729 (interacts with) 708", "interaction" : "interacts with", "SUID" : 61214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61210", "source" : "1869", "target" : "4253", "shared_name" : "4729 (interacts with) 84706", "name" : "4729 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 61210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61206", "source" : "1869", "target" : "2021", "shared_name" : "4729 (interacts with) 5428", "name" : "4729 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 61206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61202", "source" : "1869", "target" : "721", "shared_name" : "4729 (interacts with) 79731", "name" : "4729 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 61202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61198", "source" : "1869", "target" : "1129", "shared_name" : "4729 (interacts with) 57505", "name" : "4729 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 61198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61194", "source" : "1869", "target" : "521", "shared_name" : "4729 (interacts with) 85476", "name" : "4729 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 61194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61190", "source" : "1869", "target" : "1053", "shared_name" : "4729 (interacts with) 81689", "name" : "4729 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 61190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61186", "source" : "1869", "target" : "5189", "shared_name" : "4729 (interacts with) 57176", "name" : "4729 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 61186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61182", "source" : "1869", "target" : "3633", "shared_name" : "4729 (interacts with) 51067", "name" : "4729 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 61182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61178", "source" : "1869", "target" : "4621", "shared_name" : "4729 (interacts with) 57038", "name" : "4729 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 61178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61174", "source" : "1869", "target" : "6073", "shared_name" : "4729 (interacts with) 92170", "name" : "4729 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 61174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61170", "source" : "1869", "target" : "1105", "shared_name" : "4729 (interacts with) 493753", "name" : "4729 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 61170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61166", "source" : "1869", "target" : "2105", "shared_name" : "4729 (interacts with) 56945", "name" : "4729 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 61166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61162", "source" : "1869", "target" : "5085", "shared_name" : "4729 (interacts with) 56652", "name" : "4729 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 61162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61158", "source" : "1869", "target" : "4869", "shared_name" : "4729 (interacts with) 92935", "name" : "4729 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 61158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61154", "source" : "1869", "target" : "4409", "shared_name" : "4729 (interacts with) 6341", "name" : "4729 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 61154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61150", "source" : "1869", "target" : "1337", "shared_name" : "4729 (interacts with) 55863", "name" : "4729 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 61150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61146", "source" : "1869", "target" : "2757", "shared_name" : "4729 (interacts with) 51079", "name" : "4729 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 61146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61142", "source" : "1869", "target" : "5737", "shared_name" : "4729 (interacts with) 84340", "name" : "4729 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 61142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61138", "source" : "1869", "target" : "889", "shared_name" : "4729 (interacts with) 80224", "name" : "4729 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 61138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61134", "source" : "1869", "target" : "4757", "shared_name" : "4729 (interacts with) 9997", "name" : "4729 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 61134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61130", "source" : "1869", "target" : "713", "shared_name" : "4729 (interacts with) 7019", "name" : "4729 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 61130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61126", "source" : "1869", "target" : "4897", "shared_name" : "4729 (interacts with) 55149", "name" : "4729 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 61126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61122", "source" : "1869", "target" : "1929", "shared_name" : "4729 (interacts with) 51218", "name" : "4729 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 61122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61118", "source" : "1869", "target" : "2477", "shared_name" : "4729 (interacts with) 57107", "name" : "4729 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 61118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61114", "source" : "1869", "target" : "1197", "shared_name" : "4729 (interacts with) 79587", "name" : "4729 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 61114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61110", "source" : "1869", "target" : "6001", "shared_name" : "4729 (interacts with) 55157", "name" : "4729 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 61110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61106", "source" : "1869", "target" : "4141", "shared_name" : "4729 (interacts with) 617", "name" : "4729 (interacts with) 617", "interaction" : "interacts with", "SUID" : 61106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61102", "source" : "1869", "target" : "1561", "shared_name" : "4729 (interacts with) 51117", "name" : "4729 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 61102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61098", "source" : "1869", "target" : "3973", "shared_name" : "4729 (interacts with) 55572", "name" : "4729 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 61098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61094", "source" : "1869", "target" : "2285", "shared_name" : "4729 (interacts with) 51300", "name" : "4729 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 61094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61090", "source" : "1869", "target" : "4101", "shared_name" : "4729 (interacts with) 65260", "name" : "4729 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 61090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61086", "source" : "1869", "target" : "477", "shared_name" : "4729 (interacts with) 51021", "name" : "4729 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 61086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61082", "source" : "1869", "target" : "4045", "shared_name" : "4729 (interacts with) 29920", "name" : "4729 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 61082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61078", "source" : "1869", "target" : "3501", "shared_name" : "4729 (interacts with) 5831", "name" : "4729 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 61078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61074", "source" : "1869", "target" : "2801", "shared_name" : "4729 (interacts with) 4700", "name" : "4729 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 61074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61070", "source" : "1869", "target" : "2741", "shared_name" : "4729 (interacts with) 4695", "name" : "4729 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 61070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61066", "source" : "1869", "target" : "2797", "shared_name" : "4729 (interacts with) 4728", "name" : "4729 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 61066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61062", "source" : "1869", "target" : "5829", "shared_name" : "4729 (interacts with) 4538", "name" : "4729 (interacts with) 4538", "interaction" : "interacts with", "SUID" : 61062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61058", "source" : "1869", "target" : "2753", "shared_name" : "4729 (interacts with) 4720", "name" : "4729 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 61058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61054", "source" : "1869", "target" : "2689", "shared_name" : "4729 (interacts with) 4715", "name" : "4729 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 61054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61050", "source" : "1869", "target" : "5833", "shared_name" : "4729 (interacts with) 4726", "name" : "4729 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 61050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61046", "source" : "1869", "target" : "3617", "shared_name" : "4729 (interacts with) 4704", "name" : "4729 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 61046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61042", "source" : "1869", "target" : "4017", "shared_name" : "4729 (interacts with) 4719", "name" : "4729 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 61042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61038", "source" : "1869", "target" : "3405", "shared_name" : "4729 (interacts with) 4535", "name" : "4729 (interacts with) 4535", "interaction" : "interacts with", "SUID" : 61038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61034", "source" : "1869", "target" : "1573", "shared_name" : "4729 (interacts with) 4723", "name" : "4729 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 61034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61030", "source" : "1869", "target" : "5821", "shared_name" : "4729 (interacts with) 4724", "name" : "4729 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 61030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61026", "source" : "1869", "target" : "5885", "shared_name" : "4729 (interacts with) 4540", "name" : "4729 (interacts with) 4540", "interaction" : "interacts with", "SUID" : 61026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61022", "source" : "1869", "target" : "4061", "shared_name" : "4729 (interacts with) 4705", "name" : "4729 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 61022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61018", "source" : "1869", "target" : "5553", "shared_name" : "4729 (interacts with) 55967", "name" : "4729 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 61018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61014", "source" : "1869", "target" : "4945", "shared_name" : "4729 (interacts with) 4722", "name" : "4729 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 61014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61010", "source" : "1869", "target" : "1661", "shared_name" : "4729 (interacts with) 91942", "name" : "4729 (interacts with) 91942", "interaction" : "interacts with", "SUID" : 61010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61286", "source" : "1865", "target" : "6073", "shared_name" : "498 (interacts with) 92170", "name" : "498 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 61286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61282", "source" : "1865", "target" : "4897", "shared_name" : "498 (interacts with) 55149", "name" : "498 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 61282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61278", "source" : "1865", "target" : "5085", "shared_name" : "498 (interacts with) 56652", "name" : "498 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 61278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61274", "source" : "1865", "target" : "5189", "shared_name" : "498 (interacts with) 57176", "name" : "498 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 61274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61270", "source" : "1865", "target" : "5341", "shared_name" : "498 (interacts with) 91647", "name" : "498 (interacts with) 91647", "interaction" : "interacts with", "SUID" : 61270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61266", "source" : "1865", "target" : "521", "shared_name" : "498 (interacts with) 85476", "name" : "498 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 61266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61262", "source" : "1865", "target" : "5737", "shared_name" : "498 (interacts with) 84340", "name" : "498 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 61262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61258", "source" : "1865", "target" : "721", "shared_name" : "498 (interacts with) 79731", "name" : "498 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 61258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61254", "source" : "1865", "target" : "4077", "shared_name" : "498 (interacts with) 71", "name" : "498 (interacts with) 71", "interaction" : "interacts with", "SUID" : 61254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61250", "source" : "1865", "target" : "1289", "shared_name" : "498 (interacts with) 6392", "name" : "498 (interacts with) 6392", "interaction" : "interacts with", "SUID" : 61250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61246", "source" : "1865", "target" : "1669", "shared_name" : "498 (interacts with) 6390", "name" : "498 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 61246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61242", "source" : "1865", "target" : "5025", "shared_name" : "498 (interacts with) 6389", "name" : "498 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 61242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61238", "source" : "1865", "target" : "2981", "shared_name" : "498 (interacts with) 4508", "name" : "498 (interacts with) 4508", "interaction" : "interacts with", "SUID" : 61238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61346", "source" : "1861", "target" : "997", "shared_name" : "3708 (interacts with) 7431", "name" : "3708 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 61346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61342", "source" : "1861", "target" : "5989", "shared_name" : "3708 (interacts with) 7273", "name" : "3708 (interacts with) 7273", "interaction" : "interacts with", "SUID" : 61342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61338", "source" : "1861", "target" : "2581", "shared_name" : "3708 (interacts with) 7170", "name" : "3708 (interacts with) 7170", "interaction" : "interacts with", "SUID" : 61338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61334", "source" : "1861", "target" : "5785", "shared_name" : "3708 (interacts with) 6857", "name" : "3708 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 61334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61330", "source" : "1861", "target" : "609", "shared_name" : "3708 (interacts with) 6812", "name" : "3708 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 61330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61326", "source" : "1861", "target" : "5929", "shared_name" : "3708 (interacts with) 6616", "name" : "3708 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 61326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61322", "source" : "1861", "target" : "3853", "shared_name" : "3708 (interacts with) 6786", "name" : "3708 (interacts with) 6786", "interaction" : "interacts with", "SUID" : 61322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61318", "source" : "1861", "target" : "637", "shared_name" : "3708 (interacts with) 6654", "name" : "3708 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 61318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61314", "source" : "1861", "target" : "817", "shared_name" : "3708 (interacts with) 5728", "name" : "3708 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 61314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61310", "source" : "1861", "target" : "3593", "shared_name" : "3708 (interacts with) 5530", "name" : "3708 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 61310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61306", "source" : "1861", "target" : "565", "shared_name" : "3708 (interacts with) 4772", "name" : "3708 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 61306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61302", "source" : "1861", "target" : "3177", "shared_name" : "3708 (interacts with) 5321", "name" : "3708 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 61302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61298", "source" : "1861", "target" : "5145", "shared_name" : "3708 (interacts with) 23236", "name" : "3708 (interacts with) 23236", "interaction" : "interacts with", "SUID" : 61298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61294", "source" : "1861", "target" : "1357", "shared_name" : "3708 (interacts with) 58498", "name" : "3708 (interacts with) 58498", "interaction" : "interacts with", "SUID" : 61294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61290", "source" : "1861", "target" : "2769", "shared_name" : "3708 (interacts with) 767", "name" : "3708 (interacts with) 767", "interaction" : "interacts with", "SUID" : 61290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61390", "source" : "1857", "target" : "2305", "shared_name" : "9533 (interacts with) 6908", "name" : "9533 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 61390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61386", "source" : "1857", "target" : "1817", "shared_name" : "9533 (interacts with) 7343", "name" : "9533 (interacts with) 7343", "interaction" : "interacts with", "SUID" : 61386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61382", "source" : "1857", "target" : "2917", "shared_name" : "9533 (interacts with) 5451", "name" : "9533 (interacts with) 5451", "interaction" : "interacts with", "SUID" : 61382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61378", "source" : "1857", "target" : "5861", "shared_name" : "9533 (interacts with) 5435", "name" : "9533 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 61378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61374", "source" : "1857", "target" : "741", "shared_name" : "9533 (interacts with) 4830", "name" : "9533 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 61374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61370", "source" : "1857", "target" : "5717", "shared_name" : "9533 (interacts with) 29925", "name" : "9533 (interacts with) 29925", "interaction" : "interacts with", "SUID" : 61370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61366", "source" : "1857", "target" : "5721", "shared_name" : "9533 (interacts with) 11128", "name" : "9533 (interacts with) 11128", "interaction" : "interacts with", "SUID" : 61366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61362", "source" : "1857", "target" : "5709", "shared_name" : "9533 (interacts with) 55703", "name" : "9533 (interacts with) 55703", "interaction" : "interacts with", "SUID" : 61362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61358", "source" : "1857", "target" : "5621", "shared_name" : "9533 (interacts with) 25885", "name" : "9533 (interacts with) 25885", "interaction" : "interacts with", "SUID" : 61358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61354", "source" : "1857", "target" : "1349", "shared_name" : "9533 (interacts with) 6606", "name" : "9533 (interacts with) 6606", "interaction" : "interacts with", "SUID" : 61354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61350", "source" : "1857", "target" : "2389", "shared_name" : "9533 (interacts with) 6925", "name" : "9533 (interacts with) 6925", "interaction" : "interacts with", "SUID" : 61350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61398", "source" : "1853", "target" : "3269", "shared_name" : "120 (interacts with) 2108", "name" : "120 (interacts with) 2108", "interaction" : "interacts with", "SUID" : 61398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61394", "source" : "1853", "target" : "2037", "shared_name" : "120 (interacts with) 80067", "name" : "120 (interacts with) 80067", "interaction" : "interacts with", "SUID" : 61394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61582", "source" : "1849", "target" : "1433", "shared_name" : "26275 (interacts with) 6515", "name" : "26275 (interacts with) 6515", "interaction" : "interacts with", "SUID" : 61582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61578", "source" : "1849", "target" : "5825", "shared_name" : "26275 (interacts with) 4594", "name" : "26275 (interacts with) 4594", "interaction" : "interacts with", "SUID" : 61578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61574", "source" : "1849", "target" : "1301", "shared_name" : "26275 (interacts with) 5095", "name" : "26275 (interacts with) 5095", "interaction" : "interacts with", "SUID" : 61574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61570", "source" : "1849", "target" : "6145", "shared_name" : "26275 (interacts with) 93627", "name" : "26275 (interacts with) 93627", "interaction" : "interacts with", "SUID" : 61570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61566", "source" : "1849", "target" : "4773", "shared_name" : "26275 (interacts with) 90624", "name" : "26275 (interacts with) 90624", "interaction" : "interacts with", "SUID" : 61566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61562", "source" : "1849", "target" : "413", "shared_name" : "26275 (interacts with) 51733", "name" : "26275 (interacts with) 51733", "interaction" : "interacts with", "SUID" : 61562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61558", "source" : "1849", "target" : "5993", "shared_name" : "26275 (interacts with) 6611", "name" : "26275 (interacts with) 6611", "interaction" : "interacts with", "SUID" : 61558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61554", "source" : "1849", "target" : "2925", "shared_name" : "26275 (interacts with) 8802", "name" : "26275 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 61554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61550", "source" : "1849", "target" : "3425", "shared_name" : "26275 (interacts with) 8803", "name" : "26275 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 61550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61546", "source" : "1849", "target" : "1021", "shared_name" : "26275 (interacts with) 5096", "name" : "26275 (interacts with) 5096", "interaction" : "interacts with", "SUID" : 61546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61542", "source" : "1849", "target" : "573", "shared_name" : "26275 (interacts with) 3155", "name" : "26275 (interacts with) 3155", "interaction" : "interacts with", "SUID" : 61542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61538", "source" : "1849", "target" : "3337", "shared_name" : "26275 (interacts with) 2639", "name" : "26275 (interacts with) 2639", "interaction" : "interacts with", "SUID" : 61538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61534", "source" : "1849", "target" : "4749", "shared_name" : "26275 (interacts with) 3028", "name" : "26275 (interacts with) 3028", "interaction" : "interacts with", "SUID" : 61534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61530", "source" : "1849", "target" : "1721", "shared_name" : "26275 (interacts with) 51807", "name" : "26275 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 61530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61526", "source" : "1849", "target" : "5305", "shared_name" : "26275 (interacts with) 6901", "name" : "26275 (interacts with) 6901", "interaction" : "interacts with", "SUID" : 61526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61522", "source" : "1849", "target" : "409", "shared_name" : "26275 (interacts with) 10558", "name" : "26275 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 61522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61518", "source" : "1849", "target" : "681", "shared_name" : "26275 (interacts with) 6646", "name" : "26275 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 61518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61514", "source" : "1849", "target" : "4941", "shared_name" : "26275 (interacts with) 6342", "name" : "26275 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 61514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61510", "source" : "1849", "target" : "4745", "shared_name" : "26275 (interacts with) 35", "name" : "26275 (interacts with) 35", "interaction" : "interacts with", "SUID" : 61510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61506", "source" : "1849", "target" : "2025", "shared_name" : "26275 (interacts with) 549", "name" : "26275 (interacts with) 549", "interaction" : "interacts with", "SUID" : 61506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61502", "source" : "1849", "target" : "385", "shared_name" : "26275 (interacts with) 5319", "name" : "26275 (interacts with) 5319", "interaction" : "interacts with", "SUID" : 61502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61498", "source" : "1849", "target" : "3461", "shared_name" : "26275 (interacts with) 5538", "name" : "26275 (interacts with) 5538", "interaction" : "interacts with", "SUID" : 61498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61494", "source" : "1849", "target" : "3893", "shared_name" : "26275 (interacts with) 151056", "name" : "26275 (interacts with) 151056", "interaction" : "interacts with", "SUID" : 61494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61490", "source" : "1849", "target" : "2853", "shared_name" : "26275 (interacts with) 8398", "name" : "26275 (interacts with) 8398", "interaction" : "interacts with", "SUID" : 61490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61486", "source" : "1849", "target" : "3177", "shared_name" : "26275 (interacts with) 5321", "name" : "26275 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 61486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61482", "source" : "1849", "target" : "1277", "shared_name" : "26275 (interacts with) 79143", "name" : "26275 (interacts with) 79143", "interaction" : "interacts with", "SUID" : 61482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61478", "source" : "1849", "target" : "3421", "shared_name" : "26275 (interacts with) 4967", "name" : "26275 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 61478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61474", "source" : "1849", "target" : "1809", "shared_name" : "26275 (interacts with) 6548", "name" : "26275 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 61474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61470", "source" : "1849", "target" : "1385", "shared_name" : "26275 (interacts with) 6520", "name" : "26275 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 61470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61466", "source" : "1849", "target" : "3793", "shared_name" : "26275 (interacts with) 28965", "name" : "26275 (interacts with) 28965", "interaction" : "interacts with", "SUID" : 61466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61462", "source" : "1849", "target" : "2721", "shared_name" : "26275 (interacts with) 79751", "name" : "26275 (interacts with) 79751", "interaction" : "interacts with", "SUID" : 61462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61458", "source" : "1849", "target" : "1485", "shared_name" : "26275 (interacts with) 8050", "name" : "26275 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 61458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61454", "source" : "1849", "target" : "2881", "shared_name" : "26275 (interacts with) 5160", "name" : "26275 (interacts with) 5160", "interaction" : "interacts with", "SUID" : 61454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61450", "source" : "1849", "target" : "2321", "shared_name" : "26275 (interacts with) 6509", "name" : "26275 (interacts with) 6509", "interaction" : "interacts with", "SUID" : 61450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61446", "source" : "1849", "target" : "3077", "shared_name" : "26275 (interacts with) 6506", "name" : "26275 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 61446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61442", "source" : "1849", "target" : "1681", "shared_name" : "26275 (interacts with) 9990", "name" : "26275 (interacts with) 9990", "interaction" : "interacts with", "SUID" : 61442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61438", "source" : "1849", "target" : "1885", "shared_name" : "26275 (interacts with) 8604", "name" : "26275 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 61438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61434", "source" : "1849", "target" : "2161", "shared_name" : "26275 (interacts with) 55163", "name" : "26275 (interacts with) 55163", "interaction" : "interacts with", "SUID" : 61434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61430", "source" : "1849", "target" : "4169", "shared_name" : "26275 (interacts with) 10993", "name" : "26275 (interacts with) 10993", "interaction" : "interacts with", "SUID" : 61430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61426", "source" : "1849", "target" : "4045", "shared_name" : "26275 (interacts with) 29920", "name" : "26275 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 61426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61422", "source" : "1849", "target" : "3501", "shared_name" : "26275 (interacts with) 5831", "name" : "26275 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 61422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61418", "source" : "1849", "target" : "4185", "shared_name" : "26275 (interacts with) 29968", "name" : "26275 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 61418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61414", "source" : "1849", "target" : "1133", "shared_name" : "26275 (interacts with) 3418", "name" : "26275 (interacts with) 3418", "interaction" : "interacts with", "SUID" : 61414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61410", "source" : "1849", "target" : "5017", "shared_name" : "26275 (interacts with) 3417", "name" : "26275 (interacts with) 3417", "interaction" : "interacts with", "SUID" : 61410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61406", "source" : "1849", "target" : "6089", "shared_name" : "26275 (interacts with) 3145", "name" : "26275 (interacts with) 3145", "interaction" : "interacts with", "SUID" : 61406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61402", "source" : "1849", "target" : "2337", "shared_name" : "26275 (interacts with) 28976", "name" : "26275 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 61402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61642", "source" : "1845", "target" : "829", "shared_name" : "836 (interacts with) 8772", "name" : "836 (interacts with) 8772", "interaction" : "interacts with", "SUID" : 61642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61638", "source" : "1845", "target" : "3021", "shared_name" : "836 (interacts with) 84823", "name" : "836 (interacts with) 84823", "interaction" : "interacts with", "SUID" : 61638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61634", "source" : "1845", "target" : "593", "shared_name" : "836 (interacts with) 8743", "name" : "836 (interacts with) 8743", "interaction" : "interacts with", "SUID" : 61634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61630", "source" : "1845", "target" : "6117", "shared_name" : "836 (interacts with) 9131", "name" : "836 (interacts with) 9131", "interaction" : "interacts with", "SUID" : 61630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61626", "source" : "1845", "target" : "1925", "shared_name" : "836 (interacts with) 948", "name" : "836 (interacts with) 948", "interaction" : "interacts with", "SUID" : 61626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61622", "source" : "1845", "target" : "5949", "shared_name" : "836 (interacts with) 672", "name" : "836 (interacts with) 672", "interaction" : "interacts with", "SUID" : 61622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61618", "source" : "1845", "target" : "4981", "shared_name" : "836 (interacts with) 6774", "name" : "836 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 61618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61614", "source" : "1845", "target" : "1973", "shared_name" : "836 (interacts with) 6709", "name" : "836 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 61614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61610", "source" : "1845", "target" : "4493", "shared_name" : "836 (interacts with) 5727", "name" : "836 (interacts with) 5727", "interaction" : "interacts with", "SUID" : 61610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61606", "source" : "1845", "target" : "997", "shared_name" : "836 (interacts with) 7431", "name" : "836 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 61606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61602", "source" : "1845", "target" : "1621", "shared_name" : "836 (interacts with) 1432", "name" : "836 (interacts with) 1432", "interaction" : "interacts with", "SUID" : 61602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61598", "source" : "1845", "target" : "3293", "shared_name" : "836 (interacts with) 1832", "name" : "836 (interacts with) 1832", "interaction" : "interacts with", "SUID" : 61598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61594", "source" : "1845", "target" : "3745", "shared_name" : "836 (interacts with) 4803", "name" : "836 (interacts with) 4803", "interaction" : "interacts with", "SUID" : 61594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61590", "source" : "1845", "target" : "617", "shared_name" : "836 (interacts with) 1630", "name" : "836 (interacts with) 1630", "interaction" : "interacts with", "SUID" : 61590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61586", "source" : "1845", "target" : "5185", "shared_name" : "836 (interacts with) 1499", "name" : "836 (interacts with) 1499", "interaction" : "interacts with", "SUID" : 61586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61658", "source" : "1837", "target" : "2453", "shared_name" : "9939 (interacts with) 57187", "name" : "9939 (interacts with) 57187", "interaction" : "interacts with", "SUID" : 61658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61654", "source" : "1837", "target" : "5377", "shared_name" : "9939 (interacts with) 6638", "name" : "9939 (interacts with) 6638", "interaction" : "interacts with", "SUID" : 61654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61650", "source" : "1837", "target" : "5665", "shared_name" : "9939 (interacts with) 55181", "name" : "9939 (interacts with) 55181", "interaction" : "interacts with", "SUID" : 61650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61646", "source" : "1837", "target" : "5253", "shared_name" : "9939 (interacts with) 56006", "name" : "9939 (interacts with) 56006", "interaction" : "interacts with", "SUID" : 61646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61686", "source" : "1829", "target" : "4097", "shared_name" : "7421 (interacts with) 9611", "name" : "7421 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 61686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61682", "source" : "1829", "target" : "3105", "shared_name" : "7421 (interacts with) 8289", "name" : "7421 (interacts with) 8289", "interaction" : "interacts with", "SUID" : 61682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61678", "source" : "1829", "target" : "4589", "shared_name" : "7421 (interacts with) 8431", "name" : "7421 (interacts with) 8431", "interaction" : "interacts with", "SUID" : 61678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61674", "source" : "1829", "target" : "2641", "shared_name" : "7421 (interacts with) 3123", "name" : "7421 (interacts with) 3123", "interaction" : "interacts with", "SUID" : 61674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61670", "source" : "1829", "target" : "2625", "shared_name" : "7421 (interacts with) 3065", "name" : "7421 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 61670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61666", "source" : "1829", "target" : "773", "shared_name" : "7421 (interacts with) 29072", "name" : "7421 (interacts with) 29072", "interaction" : "interacts with", "SUID" : 61666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61662", "source" : "1829", "target" : "1825", "shared_name" : "7421 (interacts with) 26750", "name" : "7421 (interacts with) 26750", "interaction" : "interacts with", "SUID" : 61662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61690", "source" : "1825", "target" : "2245", "shared_name" : "26750 (interacts with) 5587", "name" : "26750 (interacts with) 5587", "interaction" : "interacts with", "SUID" : 61690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61830", "source" : "1821", "target" : "5597", "shared_name" : "1719 (interacts with) 22934", "name" : "1719 (interacts with) 22934", "interaction" : "interacts with", "SUID" : 61830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61826", "source" : "1821", "target" : "5109", "shared_name" : "1719 (interacts with) 790", "name" : "1719 (interacts with) 790", "interaction" : "interacts with", "SUID" : 61826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61822", "source" : "1821", "target" : "1997", "shared_name" : "1719 (interacts with) 2348", "name" : "1719 (interacts with) 2348", "interaction" : "interacts with", "SUID" : 61822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61818", "source" : "1821", "target" : "3305", "shared_name" : "1719 (interacts with) 7040", "name" : "1719 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 61818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61814", "source" : "1821", "target" : "2153", "shared_name" : "1719 (interacts with) 7042", "name" : "1719 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 61814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61810", "source" : "1821", "target" : "3409", "shared_name" : "1719 (interacts with) 7043", "name" : "1719 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 61810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61806", "source" : "1821", "target" : "1305", "shared_name" : "1719 (interacts with) 25", "name" : "1719 (interacts with) 25", "interaction" : "interacts with", "SUID" : 61806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61802", "source" : "1821", "target" : "6169", "shared_name" : "1719 (interacts with) 4088", "name" : "1719 (interacts with) 4088", "interaction" : "interacts with", "SUID" : 61802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61798", "source" : "1821", "target" : "4853", "shared_name" : "1719 (interacts with) 545", "name" : "1719 (interacts with) 545", "interaction" : "interacts with", "SUID" : 61798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61794", "source" : "1821", "target" : "2085", "shared_name" : "1719 (interacts with) 2932", "name" : "1719 (interacts with) 2932", "interaction" : "interacts with", "SUID" : 61794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61790", "source" : "1821", "target" : "981", "shared_name" : "1719 (interacts with) 7157", "name" : "1719 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 61790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61786", "source" : "1821", "target" : "2625", "shared_name" : "1719 (interacts with) 3065", "name" : "1719 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 61786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61782", "source" : "1821", "target" : "4533", "shared_name" : "1719 (interacts with) 4089", "name" : "1719 (interacts with) 4089", "interaction" : "interacts with", "SUID" : 61782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61778", "source" : "1821", "target" : "5625", "shared_name" : "1719 (interacts with) 595", "name" : "1719 (interacts with) 595", "interaction" : "interacts with", "SUID" : 61778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61774", "source" : "1821", "target" : "2613", "shared_name" : "1719 (interacts with) 472", "name" : "1719 (interacts with) 472", "interaction" : "interacts with", "SUID" : 61774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61770", "source" : "1821", "target" : "4273", "shared_name" : "1719 (interacts with) 4548", "name" : "1719 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 61770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61766", "source" : "1821", "target" : "5113", "shared_name" : "1719 (interacts with) 7084", "name" : "1719 (interacts with) 7084", "interaction" : "interacts with", "SUID" : 61766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61762", "source" : "1821", "target" : "461", "shared_name" : "1719 (interacts with) 5198", "name" : "1719 (interacts with) 5198", "interaction" : "interacts with", "SUID" : 61762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61758", "source" : "1821", "target" : "1729", "shared_name" : "1719 (interacts with) 5111", "name" : "1719 (interacts with) 5111", "interaction" : "interacts with", "SUID" : 61758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61754", "source" : "1821", "target" : "1049", "shared_name" : "1719 (interacts with) 5422", "name" : "1719 (interacts with) 5422", "interaction" : "interacts with", "SUID" : 61754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61750", "source" : "1821", "target" : "2577", "shared_name" : "1719 (interacts with) 4337", "name" : "1719 (interacts with) 4337", "interaction" : "interacts with", "SUID" : 61750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61746", "source" : "1821", "target" : "4721", "shared_name" : "1719 (interacts with) 5805", "name" : "1719 (interacts with) 5805", "interaction" : "interacts with", "SUID" : 61746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61742", "source" : "1821", "target" : "3929", "shared_name" : "1719 (interacts with) 5860", "name" : "1719 (interacts with) 5860", "interaction" : "interacts with", "SUID" : 61742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61738", "source" : "1821", "target" : "5049", "shared_name" : "1719 (interacts with) 6697", "name" : "1719 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 61738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61734", "source" : "1821", "target" : "1473", "shared_name" : "1719 (interacts with) 4524", "name" : "1719 (interacts with) 4524", "interaction" : "interacts with", "SUID" : 61734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61730", "source" : "1821", "target" : "3113", "shared_name" : "1719 (interacts with) 4338", "name" : "1719 (interacts with) 4338", "interaction" : "interacts with", "SUID" : 61730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61726", "source" : "1821", "target" : "737", "shared_name" : "1719 (interacts with) 2643", "name" : "1719 (interacts with) 2643", "interaction" : "interacts with", "SUID" : 61726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61722", "source" : "1821", "target" : "3689", "shared_name" : "1719 (interacts with) 7054", "name" : "1719 (interacts with) 7054", "interaction" : "interacts with", "SUID" : 61722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61718", "source" : "1821", "target" : "3185", "shared_name" : "1719 (interacts with) 5053", "name" : "1719 (interacts with) 5053", "interaction" : "interacts with", "SUID" : 61718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61714", "source" : "1821", "target" : "2005", "shared_name" : "1719 (interacts with) 4846", "name" : "1719 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 61714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61710", "source" : "1821", "target" : "2901", "shared_name" : "1719 (interacts with) 6647", "name" : "1719 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 61710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61706", "source" : "1821", "target" : "2413", "shared_name" : "1719 (interacts with) 50484", "name" : "1719 (interacts with) 50484", "interaction" : "interacts with", "SUID" : 61706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61702", "source" : "1821", "target" : "2365", "shared_name" : "1719 (interacts with) 2731", "name" : "1719 (interacts with) 2731", "interaction" : "interacts with", "SUID" : 61702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61698", "source" : "1821", "target" : "1489", "shared_name" : "1719 (interacts with) 1738", "name" : "1719 (interacts with) 1738", "interaction" : "interacts with", "SUID" : 61698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61694", "source" : "1821", "target" : "2161", "shared_name" : "1719 (interacts with) 55163", "name" : "1719 (interacts with) 55163", "interaction" : "interacts with", "SUID" : 61694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61858", "source" : "1813", "target" : "2077", "shared_name" : "7703 (interacts with) 7528", "name" : "7703 (interacts with) 7528", "interaction" : "interacts with", "SUID" : 61858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61854", "source" : "1813", "target" : "877", "shared_name" : "7703 (interacts with) 7341", "name" : "7703 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 61854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61850", "source" : "1813", "target" : "5941", "shared_name" : "7703 (interacts with) 5914", "name" : "7703 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 61850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61846", "source" : "1813", "target" : "3825", "shared_name" : "7703 (interacts with) 5915", "name" : "7703 (interacts with) 5915", "interaction" : "interacts with", "SUID" : 61846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61842", "source" : "1813", "target" : "2237", "shared_name" : "7703 (interacts with) 10516", "name" : "7703 (interacts with) 10516", "interaction" : "interacts with", "SUID" : 61842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61838", "source" : "1813", "target" : "941", "shared_name" : "7703 (interacts with) 648", "name" : "7703 (interacts with) 648", "interaction" : "interacts with", "SUID" : 61838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61834", "source" : "1813", "target" : "3485", "shared_name" : "7703 (interacts with) 54704", "name" : "7703 (interacts with) 54704", "interaction" : "interacts with", "SUID" : 61834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61862", "source" : "1809", "target" : "5141", "shared_name" : "6548 (interacts with) 11261", "name" : "6548 (interacts with) 11261", "interaction" : "interacts with", "SUID" : 61862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61898", "source" : "1805", "target" : "3577", "shared_name" : "3738 (interacts with) 5605", "name" : "3738 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 61898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61894", "source" : "1805", "target" : "2957", "shared_name" : "3738 (interacts with) 5465", "name" : "3738 (interacts with) 5465", "interaction" : "interacts with", "SUID" : 61894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61890", "source" : "1805", "target" : "5361", "shared_name" : "3738 (interacts with) 5604", "name" : "3738 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 61890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61886", "source" : "1805", "target" : "4521", "shared_name" : "3738 (interacts with) 5894", "name" : "3738 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 61886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61882", "source" : "1805", "target" : "973", "shared_name" : "3738 (interacts with) 5595", "name" : "3738 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 61882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61878", "source" : "1805", "target" : "5081", "shared_name" : "3738 (interacts with) 5594", "name" : "3738 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 61878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61874", "source" : "1805", "target" : "1945", "shared_name" : "3738 (interacts with) 3785", "name" : "3738 (interacts with) 3785", "interaction" : "interacts with", "SUID" : 61874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61870", "source" : "1805", "target" : "5517", "shared_name" : "3738 (interacts with) 8514", "name" : "3738 (interacts with) 8514", "interaction" : "interacts with", "SUID" : 61870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61866", "source" : "1805", "target" : "5913", "shared_name" : "3738 (interacts with) 3767", "name" : "3738 (interacts with) 3767", "interaction" : "interacts with", "SUID" : 61866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61934", "source" : "1801", "target" : "1305", "shared_name" : "1641 (interacts with) 25", "name" : "1641 (interacts with) 25", "interaction" : "interacts with", "SUID" : 61934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61930", "source" : "1801", "target" : "237", "shared_name" : "1641 (interacts with) 5649", "name" : "1641 (interacts with) 5649", "interaction" : "interacts with", "SUID" : 61930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61926", "source" : "1801", "target" : "249", "shared_name" : "1641 (interacts with) 1769", "name" : "1641 (interacts with) 1769", "interaction" : "interacts with", "SUID" : 61926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61922", "source" : "1801", "target" : "5429", "shared_name" : "1641 (interacts with) 5048", "name" : "1641 (interacts with) 5048", "interaction" : "interacts with", "SUID" : 61922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61918", "source" : "1801", "target" : "3957", "shared_name" : "1641 (interacts with) 23114", "name" : "1641 (interacts with) 23114", "interaction" : "interacts with", "SUID" : 61918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61914", "source" : "1801", "target" : "3053", "shared_name" : "1641 (interacts with) 23299", "name" : "1641 (interacts with) 23299", "interaction" : "interacts with", "SUID" : 61914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61910", "source" : "1801", "target" : "5077", "shared_name" : "1641 (interacts with) 8239", "name" : "1641 (interacts with) 8239", "interaction" : "interacts with", "SUID" : 61910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61906", "source" : "1801", "target" : "2265", "shared_name" : "1641 (interacts with) 11342", "name" : "1641 (interacts with) 11342", "interaction" : "interacts with", "SUID" : 61906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61902", "source" : "1801", "target" : "4061", "shared_name" : "1641 (interacts with) 4705", "name" : "1641 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 61902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61954", "source" : "1797", "target" : "2633", "shared_name" : "85365 (interacts with) 29926", "name" : "85365 (interacts with) 29926", "interaction" : "interacts with", "SUID" : 61954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61950", "source" : "1797", "target" : "5717", "shared_name" : "85365 (interacts with) 29925", "name" : "85365 (interacts with) 29925", "interaction" : "interacts with", "SUID" : 61950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61946", "source" : "1797", "target" : "5289", "shared_name" : "85365 (interacts with) 9526", "name" : "85365 (interacts with) 9526", "interaction" : "interacts with", "SUID" : 61946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61942", "source" : "1797", "target" : "3037", "shared_name" : "85365 (interacts with) 8813", "name" : "85365 (interacts with) 8813", "interaction" : "interacts with", "SUID" : 61942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61938", "source" : "1797", "target" : "1697", "shared_name" : "85365 (interacts with) 8818", "name" : "85365 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 61938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61962", "source" : "1793", "target" : "3885", "shared_name" : "7515 (interacts with) 54840", "name" : "7515 (interacts with) 54840", "interaction" : "interacts with", "SUID" : 61962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61958", "source" : "1793", "target" : "2809", "shared_name" : "7515 (interacts with) 11284", "name" : "7515 (interacts with) 11284", "interaction" : "interacts with", "SUID" : 61958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61998", "source" : "1789", "target" : "3305", "shared_name" : "652 (interacts with) 7040", "name" : "652 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 61998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61994", "source" : "1789", "target" : "569", "shared_name" : "652 (interacts with) 7048", "name" : "652 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 61994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61990", "source" : "1789", "target" : "2433", "shared_name" : "652 (interacts with) 6927", "name" : "652 (interacts with) 6927", "interaction" : "interacts with", "SUID" : 61990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61986", "source" : "1789", "target" : "5745", "shared_name" : "652 (interacts with) 7471", "name" : "652 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 61986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61982", "source" : "1789", "target" : "2501", "shared_name" : "652 (interacts with) 7448", "name" : "652 (interacts with) 7448", "interaction" : "interacts with", "SUID" : 61982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61978", "source" : "1789", "target" : "3409", "shared_name" : "652 (interacts with) 7043", "name" : "652 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 61978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61974", "source" : "1789", "target" : "2153", "shared_name" : "652 (interacts with) 7042", "name" : "652 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 61974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61970", "source" : "1789", "target" : "1181", "shared_name" : "652 (interacts with) 51684", "name" : "652 (interacts with) 51684", "interaction" : "interacts with", "SUID" : 61970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "61966", "source" : "1789", "target" : "3485", "shared_name" : "652 (interacts with) 54704", "name" : "652 (interacts with) 54704", "interaction" : "interacts with", "SUID" : 61966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62002", "source" : "1785", "target" : "2137", "shared_name" : "667 (interacts with) 3918", "name" : "667 (interacts with) 3918", "interaction" : "interacts with", "SUID" : 62002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62010", "source" : "1781", "target" : "4681", "shared_name" : "4084 (interacts with) 4843", "name" : "4084 (interacts with) 4843", "interaction" : "interacts with", "SUID" : 62010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62006", "source" : "1781", "target" : "3197", "shared_name" : "4084 (interacts with) 64135", "name" : "4084 (interacts with) 64135", "interaction" : "interacts with", "SUID" : 62006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62014", "source" : "1773", "target" : "5449", "shared_name" : "27245 (interacts with) 923", "name" : "27245 (interacts with) 923", "interaction" : "interacts with", "SUID" : 62014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62026", "source" : "1769", "target" : "2853", "shared_name" : "57104 (interacts with) 8398", "name" : "57104 (interacts with) 8398", "interaction" : "interacts with", "SUID" : 62026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62022", "source" : "1769", "target" : "5545", "shared_name" : "57104 (interacts with) 5195", "name" : "57104 (interacts with) 5195", "interaction" : "interacts with", "SUID" : 62022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62018", "source" : "1769", "target" : "2697", "shared_name" : "57104 (interacts with) 240", "name" : "57104 (interacts with) 240", "interaction" : "interacts with", "SUID" : 62018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62038", "source" : "1765", "target" : "5745", "shared_name" : "5308 (interacts with) 7471", "name" : "5308 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 62038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62034", "source" : "1765", "target" : "4469", "shared_name" : "5308 (interacts with) 8295", "name" : "5308 (interacts with) 8295", "interaction" : "interacts with", "SUID" : 62034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62030", "source" : "1765", "target" : "2369", "shared_name" : "5308 (interacts with) 51741", "name" : "5308 (interacts with) 51741", "interaction" : "interacts with", "SUID" : 62030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62046", "source" : "1761", "target" : "2785", "shared_name" : "113246 (interacts with) 1351", "name" : "113246 (interacts with) 1351", "interaction" : "interacts with", "SUID" : 62046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62042", "source" : "1761", "target" : "4829", "shared_name" : "113246 (interacts with) 64919", "name" : "113246 (interacts with) 64919", "interaction" : "interacts with", "SUID" : 62042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62118", "source" : "1757", "target" : "1385", "shared_name" : "23287 (interacts with) 6520", "name" : "23287 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 62118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62114", "source" : "1757", "target" : "2721", "shared_name" : "23287 (interacts with) 79751", "name" : "23287 (interacts with) 79751", "interaction" : "interacts with", "SUID" : 62114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62110", "source" : "1757", "target" : "5785", "shared_name" : "23287 (interacts with) 6857", "name" : "23287 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 62110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62106", "source" : "1757", "target" : "1089", "shared_name" : "23287 (interacts with) 5917", "name" : "23287 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 62106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62102", "source" : "1757", "target" : "4185", "shared_name" : "23287 (interacts with) 29968", "name" : "23287 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 62102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62098", "source" : "1757", "target" : "1885", "shared_name" : "23287 (interacts with) 8604", "name" : "23287 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 62098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62094", "source" : "1757", "target" : "6157", "shared_name" : "23287 (interacts with) 3735", "name" : "23287 (interacts with) 3735", "interaction" : "interacts with", "SUID" : 62094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62090", "source" : "1757", "target" : "4597", "shared_name" : "23287 (interacts with) 3376", "name" : "23287 (interacts with) 3376", "interaction" : "interacts with", "SUID" : 62090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62086", "source" : "1757", "target" : "4093", "shared_name" : "23287 (interacts with) 2752", "name" : "23287 (interacts with) 2752", "interaction" : "interacts with", "SUID" : 62086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62082", "source" : "1757", "target" : "3641", "shared_name" : "23287 (interacts with) 4141", "name" : "23287 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 62082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62078", "source" : "1757", "target" : "3649", "shared_name" : "23287 (interacts with) 51520", "name" : "23287 (interacts with) 51520", "interaction" : "interacts with", "SUID" : 62078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62074", "source" : "1757", "target" : "4593", "shared_name" : "23287 (interacts with) 2058", "name" : "23287 (interacts with) 2058", "interaction" : "interacts with", "SUID" : 62074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62070", "source" : "1757", "target" : "3169", "shared_name" : "23287 (interacts with) 1615", "name" : "23287 (interacts with) 1615", "interaction" : "interacts with", "SUID" : 62070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62066", "source" : "1757", "target" : "4341", "shared_name" : "23287 (interacts with) 2729", "name" : "23287 (interacts with) 2729", "interaction" : "interacts with", "SUID" : 62066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62062", "source" : "1757", "target" : "2205", "shared_name" : "23287 (interacts with) 2571", "name" : "23287 (interacts with) 2571", "interaction" : "interacts with", "SUID" : 62062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62058", "source" : "1757", "target" : "3529", "shared_name" : "23287 (interacts with) 7965", "name" : "23287 (interacts with) 7965", "interaction" : "interacts with", "SUID" : 62058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62054", "source" : "1757", "target" : "3157", "shared_name" : "23287 (interacts with) 9255", "name" : "23287 (interacts with) 9255", "interaction" : "interacts with", "SUID" : 62054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62050", "source" : "1757", "target" : "2125", "shared_name" : "23287 (interacts with) 2512", "name" : "23287 (interacts with) 2512", "interaction" : "interacts with", "SUID" : 62050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62146", "source" : "1753", "target" : "5377", "shared_name" : "3188 (interacts with) 6638", "name" : "3188 (interacts with) 6638", "interaction" : "interacts with", "SUID" : 62146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62142", "source" : "1753", "target" : "1837", "shared_name" : "3188 (interacts with) 9939", "name" : "3188 (interacts with) 9939", "interaction" : "interacts with", "SUID" : 62142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62138", "source" : "1753", "target" : "5193", "shared_name" : "3188 (interacts with) 5725", "name" : "3188 (interacts with) 5725", "interaction" : "interacts with", "SUID" : 62138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62134", "source" : "1753", "target" : "5281", "shared_name" : "3188 (interacts with) 10084", "name" : "3188 (interacts with) 10084", "interaction" : "interacts with", "SUID" : 62134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62130", "source" : "1753", "target" : "5861", "shared_name" : "3188 (interacts with) 5435", "name" : "3188 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 62130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62126", "source" : "1753", "target" : "2649", "shared_name" : "3188 (interacts with) 5430", "name" : "3188 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 62126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62122", "source" : "1753", "target" : "2385", "shared_name" : "3188 (interacts with) 3192", "name" : "3188 (interacts with) 3192", "interaction" : "interacts with", "SUID" : 62122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62174", "source" : "1749", "target" : "1601", "shared_name" : "728294 (interacts with) 7415", "name" : "728294 (interacts with) 7415", "interaction" : "interacts with", "SUID" : 62174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62170", "source" : "1749", "target" : "693", "shared_name" : "728294 (interacts with) 7296", "name" : "728294 (interacts with) 7296", "interaction" : "interacts with", "SUID" : 62170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62166", "source" : "1749", "target" : "1681", "shared_name" : "728294 (interacts with) 9990", "name" : "728294 (interacts with) 9990", "interaction" : "interacts with", "SUID" : 62166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62162", "source" : "1749", "target" : "977", "shared_name" : "728294 (interacts with) 79944", "name" : "728294 (interacts with) 79944", "interaction" : "interacts with", "SUID" : 62162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62158", "source" : "1749", "target" : "1489", "shared_name" : "728294 (interacts with) 1738", "name" : "728294 (interacts with) 1738", "interaction" : "interacts with", "SUID" : 62158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62154", "source" : "1749", "target" : "4253", "shared_name" : "728294 (interacts with) 84706", "name" : "728294 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 62154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62150", "source" : "1749", "target" : "3421", "shared_name" : "728294 (interacts with) 4967", "name" : "728294 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 62150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62178", "source" : "1745", "target" : "2385", "shared_name" : "129831 (interacts with) 3192", "name" : "129831 (interacts with) 3192", "interaction" : "interacts with", "SUID" : 62178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62198", "source" : "1741", "target" : "1701", "shared_name" : "5133 (interacts with) 5777", "name" : "5133 (interacts with) 5777", "interaction" : "interacts with", "SUID" : 62198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62194", "source" : "1741", "target" : "5497", "shared_name" : "5133 (interacts with) 91137", "name" : "5133 (interacts with) 91137", "interaction" : "interacts with", "SUID" : 62194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62190", "source" : "1741", "target" : "1337", "shared_name" : "5133 (interacts with) 55863", "name" : "5133 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 62190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62186", "source" : "1741", "target" : "3909", "shared_name" : "5133 (interacts with) 10908", "name" : "5133 (interacts with) 10908", "interaction" : "interacts with", "SUID" : 62186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62182", "source" : "1741", "target" : "4513", "shared_name" : "5133 (interacts with) 6904", "name" : "5133 (interacts with) 6904", "interaction" : "interacts with", "SUID" : 62182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62214", "source" : "1737", "target" : "1845", "shared_name" : "26060 (interacts with) 836", "name" : "26060 (interacts with) 836", "interaction" : "interacts with", "SUID" : 62214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62210", "source" : "1737", "target" : "1785", "shared_name" : "26060 (interacts with) 667", "name" : "26060 (interacts with) 667", "interaction" : "interacts with", "SUID" : 62210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62206", "source" : "1737", "target" : "617", "shared_name" : "26060 (interacts with) 1630", "name" : "26060 (interacts with) 1630", "interaction" : "interacts with", "SUID" : 62206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62202", "source" : "1737", "target" : "5225", "shared_name" : "26060 (interacts with) 5290", "name" : "26060 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 62202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62306", "source" : "1729", "target" : "5861", "shared_name" : "5111 (interacts with) 5435", "name" : "5111 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 62306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62302", "source" : "1729", "target" : "4497", "shared_name" : "5111 (interacts with) 8243", "name" : "5111 (interacts with) 8243", "interaction" : "interacts with", "SUID" : 62302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62298", "source" : "1729", "target" : "5625", "shared_name" : "5111 (interacts with) 595", "name" : "5111 (interacts with) 595", "interaction" : "interacts with", "SUID" : 62298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62294", "source" : "1729", "target" : "981", "shared_name" : "5111 (interacts with) 7157", "name" : "5111 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 62294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62290", "source" : "1729", "target" : "5965", "shared_name" : "5111 (interacts with) 596", "name" : "5111 (interacts with) 596", "interaction" : "interacts with", "SUID" : 62290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62286", "source" : "1729", "target" : "4837", "shared_name" : "5111 (interacts with) 8891", "name" : "5111 (interacts with) 8891", "interaction" : "interacts with", "SUID" : 62286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62282", "source" : "1729", "target" : "5113", "shared_name" : "5111 (interacts with) 7084", "name" : "5111 (interacts with) 7084", "interaction" : "interacts with", "SUID" : 62282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62278", "source" : "1729", "target" : "3729", "shared_name" : "5111 (interacts with) 7319", "name" : "5111 (interacts with) 7319", "interaction" : "interacts with", "SUID" : 62278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62274", "source" : "1729", "target" : "1601", "shared_name" : "5111 (interacts with) 7415", "name" : "5111 (interacts with) 7415", "interaction" : "interacts with", "SUID" : 62274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62270", "source" : "1729", "target" : "481", "shared_name" : "5111 (interacts with) 7507", "name" : "5111 (interacts with) 7507", "interaction" : "interacts with", "SUID" : 62270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62266", "source" : "1729", "target" : "5197", "shared_name" : "5111 (interacts with) 7156", "name" : "5111 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 62266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62262", "source" : "1729", "target" : "877", "shared_name" : "5111 (interacts with) 7341", "name" : "5111 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 62262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62258", "source" : "1729", "target" : "729", "shared_name" : "5111 (interacts with) 5888", "name" : "5111 (interacts with) 5888", "interaction" : "interacts with", "SUID" : 62258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62254", "source" : "1729", "target" : "2649", "shared_name" : "5111 (interacts with) 5430", "name" : "5111 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 62254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62250", "source" : "1729", "target" : "1049", "shared_name" : "5111 (interacts with) 5422", "name" : "5111 (interacts with) 5422", "interaction" : "interacts with", "SUID" : 62250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62246", "source" : "1729", "target" : "957", "shared_name" : "5111 (interacts with) 5230", "name" : "5111 (interacts with) 5230", "interaction" : "interacts with", "SUID" : 62246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62242", "source" : "1729", "target" : "3541", "shared_name" : "5111 (interacts with) 4191", "name" : "5111 (interacts with) 4191", "interaction" : "interacts with", "SUID" : 62242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62238", "source" : "1729", "target" : "2529", "shared_name" : "5111 (interacts with) 5424", "name" : "5111 (interacts with) 5424", "interaction" : "interacts with", "SUID" : 62238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62234", "source" : "1729", "target" : "2201", "shared_name" : "5111 (interacts with) 26073", "name" : "5111 (interacts with) 26073", "interaction" : "interacts with", "SUID" : 62234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62230", "source" : "1729", "target" : "2921", "shared_name" : "5111 (interacts with) 5981", "name" : "5111 (interacts with) 5981", "interaction" : "interacts with", "SUID" : 62230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62226", "source" : "1729", "target" : "3549", "shared_name" : "5111 (interacts with) 760", "name" : "5111 (interacts with) 760", "interaction" : "interacts with", "SUID" : 62226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62222", "source" : "1729", "target" : "4577", "shared_name" : "5111 (interacts with) 7167", "name" : "5111 (interacts with) 7167", "interaction" : "interacts with", "SUID" : 62222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62218", "source" : "1729", "target" : "1793", "shared_name" : "5111 (interacts with) 7515", "name" : "5111 (interacts with) 7515", "interaction" : "interacts with", "SUID" : 62218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62330", "source" : "1725", "target" : "5861", "shared_name" : "23019 (interacts with) 5435", "name" : "23019 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 62330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62326", "source" : "1725", "target" : "1729", "shared_name" : "23019 (interacts with) 5111", "name" : "23019 (interacts with) 5111", "interaction" : "interacts with", "SUID" : 62326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62322", "source" : "1725", "target" : "4733", "shared_name" : "23019 (interacts with) 23404", "name" : "23019 (interacts with) 23404", "interaction" : "interacts with", "SUID" : 62322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62318", "source" : "1725", "target" : "2361", "shared_name" : "23019 (interacts with) 51010", "name" : "23019 (interacts with) 51010", "interaction" : "interacts with", "SUID" : 62318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62314", "source" : "1725", "target" : "2073", "shared_name" : "23019 (interacts with) 5393", "name" : "23019 (interacts with) 5393", "interaction" : "interacts with", "SUID" : 62314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62310", "source" : "1725", "target" : "2585", "shared_name" : "23019 (interacts with) 1977", "name" : "23019 (interacts with) 1977", "interaction" : "interacts with", "SUID" : 62310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62338", "source" : "1721", "target" : "5969", "shared_name" : "51807 (interacts with) 10382", "name" : "51807 (interacts with) 10382", "interaction" : "interacts with", "SUID" : 62338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62334", "source" : "1721", "target" : "613", "shared_name" : "51807 (interacts with) 10381", "name" : "51807 (interacts with) 10381", "interaction" : "interacts with", "SUID" : 62334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62362", "source" : "1717", "target" : "2389", "shared_name" : "51693 (interacts with) 6925", "name" : "51693 (interacts with) 6925", "interaction" : "interacts with", "SUID" : 62362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62358", "source" : "1717", "target" : "1457", "shared_name" : "51693 (interacts with) 122553", "name" : "51693 (interacts with) 122553", "interaction" : "interacts with", "SUID" : 62358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62354", "source" : "1717", "target" : "1361", "shared_name" : "51693 (interacts with) 55262", "name" : "51693 (interacts with) 55262", "interaction" : "interacts with", "SUID" : 62354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62350", "source" : "1717", "target" : "2521", "shared_name" : "51693 (interacts with) 83696", "name" : "51693 (interacts with) 83696", "interaction" : "interacts with", "SUID" : 62350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62346", "source" : "1717", "target" : "1453", "shared_name" : "51693 (interacts with) 60684", "name" : "51693 (interacts with) 60684", "interaction" : "interacts with", "SUID" : 62346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62342", "source" : "1717", "target" : "4217", "shared_name" : "51693 (interacts with) 51112", "name" : "51693 (interacts with) 51112", "interaction" : "interacts with", "SUID" : 62342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62386", "source" : "1713", "target" : "889", "shared_name" : "5631 (interacts with) 80224", "name" : "5631 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 62386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62382", "source" : "1713", "target" : "3793", "shared_name" : "5631 (interacts with) 28965", "name" : "5631 (interacts with) 28965", "interaction" : "interacts with", "SUID" : 62382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62378", "source" : "1713", "target" : "4869", "shared_name" : "5631 (interacts with) 92935", "name" : "5631 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 62378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62374", "source" : "1713", "target" : "4045", "shared_name" : "5631 (interacts with) 29920", "name" : "5631 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 62374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62370", "source" : "1713", "target" : "3501", "shared_name" : "5631 (interacts with) 5831", "name" : "5631 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 62370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62366", "source" : "1713", "target" : "2689", "shared_name" : "5631 (interacts with) 4715", "name" : "5631 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 62366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62474", "source" : "1709", "target" : "3093", "shared_name" : "2074 (interacts with) 6597", "name" : "2074 (interacts with) 6597", "interaction" : "interacts with", "SUID" : 62474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62470", "source" : "1709", "target" : "1937", "shared_name" : "2074 (interacts with) 2965", "name" : "2074 (interacts with) 2965", "interaction" : "interacts with", "SUID" : 62470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62466", "source" : "1709", "target" : "4285", "shared_name" : "2074 (interacts with) 8450", "name" : "2074 (interacts with) 8450", "interaction" : "interacts with", "SUID" : 62466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62462", "source" : "1709", "target" : "481", "shared_name" : "2074 (interacts with) 7507", "name" : "2074 (interacts with) 7507", "interaction" : "interacts with", "SUID" : 62462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62458", "source" : "1709", "target" : "913", "shared_name" : "2074 (interacts with) 404672", "name" : "2074 (interacts with) 404672", "interaction" : "interacts with", "SUID" : 62458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62454", "source" : "1709", "target" : "3081", "shared_name" : "2074 (interacts with) 546", "name" : "2074 (interacts with) 546", "interaction" : "interacts with", "SUID" : 62454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62450", "source" : "1709", "target" : "2921", "shared_name" : "2074 (interacts with) 5981", "name" : "2074 (interacts with) 5981", "interaction" : "interacts with", "SUID" : 62450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62446", "source" : "1709", "target" : "4249", "shared_name" : "2074 (interacts with) 4331", "name" : "2074 (interacts with) 4331", "interaction" : "interacts with", "SUID" : 62446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62442", "source" : "1709", "target" : "1793", "shared_name" : "2074 (interacts with) 7515", "name" : "2074 (interacts with) 7515", "interaction" : "interacts with", "SUID" : 62442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62438", "source" : "1709", "target" : "1817", "shared_name" : "2074 (interacts with) 7343", "name" : "2074 (interacts with) 7343", "interaction" : "interacts with", "SUID" : 62438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62434", "source" : "1709", "target" : "5197", "shared_name" : "2074 (interacts with) 7156", "name" : "2074 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 62434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62430", "source" : "1709", "target" : "2305", "shared_name" : "2074 (interacts with) 6908", "name" : "2074 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 62430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62426", "source" : "1709", "target" : "5861", "shared_name" : "2074 (interacts with) 5435", "name" : "2074 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 62426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62422", "source" : "1709", "target" : "2649", "shared_name" : "2074 (interacts with) 5430", "name" : "2074 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 62422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62418", "source" : "1709", "target" : "1857", "shared_name" : "2074 (interacts with) 9533", "name" : "2074 (interacts with) 9533", "interaction" : "interacts with", "SUID" : 62418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62414", "source" : "1709", "target" : "5621", "shared_name" : "2074 (interacts with) 25885", "name" : "2074 (interacts with) 25885", "interaction" : "interacts with", "SUID" : 62414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62410", "source" : "1709", "target" : "1729", "shared_name" : "2074 (interacts with) 5111", "name" : "2074 (interacts with) 5111", "interaction" : "interacts with", "SUID" : 62410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62406", "source" : "1709", "target" : "2529", "shared_name" : "2074 (interacts with) 5424", "name" : "2074 (interacts with) 5424", "interaction" : "interacts with", "SUID" : 62406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62402", "source" : "1709", "target" : "3933", "shared_name" : "2074 (interacts with) 10524", "name" : "2074 (interacts with) 10524", "interaction" : "interacts with", "SUID" : 62402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62398", "source" : "1709", "target" : "2625", "shared_name" : "2074 (interacts with) 3065", "name" : "2074 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 62398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62394", "source" : "1709", "target" : "2085", "shared_name" : "2074 (interacts with) 2932", "name" : "2074 (interacts with) 2932", "interaction" : "interacts with", "SUID" : 62394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62390", "source" : "1709", "target" : "2261", "shared_name" : "2074 (interacts with) 1161", "name" : "2074 (interacts with) 1161", "interaction" : "interacts with", "SUID" : 62390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62706", "source" : "1705", "target" : "4885", "shared_name" : "134526 (interacts with) 5340", "name" : "134526 (interacts with) 5340", "interaction" : "interacts with", "SUID" : 62706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62702", "source" : "1705", "target" : "2045", "shared_name" : "134526 (interacts with) 51102", "name" : "134526 (interacts with) 51102", "interaction" : "interacts with", "SUID" : 62702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62698", "source" : "1705", "target" : "1921", "shared_name" : "134526 (interacts with) 1352", "name" : "134526 (interacts with) 1352", "interaction" : "interacts with", "SUID" : 62698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62694", "source" : "1705", "target" : "2881", "shared_name" : "134526 (interacts with) 5160", "name" : "134526 (interacts with) 5160", "interaction" : "interacts with", "SUID" : 62694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62690", "source" : "1705", "target" : "3537", "shared_name" : "134526 (interacts with) 501", "name" : "134526 (interacts with) 501", "interaction" : "interacts with", "SUID" : 62690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62686", "source" : "1705", "target" : "5565", "shared_name" : "134526 (interacts with) 217", "name" : "134526 (interacts with) 217", "interaction" : "interacts with", "SUID" : 62686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62682", "source" : "1705", "target" : "2989", "shared_name" : "134526 (interacts with) 224", "name" : "134526 (interacts with) 224", "interaction" : "interacts with", "SUID" : 62682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62678", "source" : "1705", "target" : "5797", "shared_name" : "134526 (interacts with) 3030", "name" : "134526 (interacts with) 3030", "interaction" : "interacts with", "SUID" : 62678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62674", "source" : "1705", "target" : "2089", "shared_name" : "134526 (interacts with) 3939", "name" : "134526 (interacts with) 3939", "interaction" : "interacts with", "SUID" : 62674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62670", "source" : "1705", "target" : "5213", "shared_name" : "134526 (interacts with) 2271", "name" : "134526 (interacts with) 2271", "interaction" : "interacts with", "SUID" : 62670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62666", "source" : "1705", "target" : "3541", "shared_name" : "134526 (interacts with) 4191", "name" : "134526 (interacts with) 4191", "interaction" : "interacts with", "SUID" : 62666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62662", "source" : "1705", "target" : "1489", "shared_name" : "134526 (interacts with) 1738", "name" : "134526 (interacts with) 1738", "interaction" : "interacts with", "SUID" : 62662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62658", "source" : "1705", "target" : "3269", "shared_name" : "134526 (interacts with) 2108", "name" : "134526 (interacts with) 2108", "interaction" : "interacts with", "SUID" : 62658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62654", "source" : "1705", "target" : "2337", "shared_name" : "134526 (interacts with) 28976", "name" : "134526 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 62654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62650", "source" : "1705", "target" : "361", "shared_name" : "134526 (interacts with) 6576", "name" : "134526 (interacts with) 6576", "interaction" : "interacts with", "SUID" : 62650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62646", "source" : "1705", "target" : "2897", "shared_name" : "134526 (interacts with) 1737", "name" : "134526 (interacts with) 1737", "interaction" : "interacts with", "SUID" : 62646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62642", "source" : "1705", "target" : "3337", "shared_name" : "134526 (interacts with) 2639", "name" : "134526 (interacts with) 2639", "interaction" : "interacts with", "SUID" : 62642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62638", "source" : "1705", "target" : "4745", "shared_name" : "134526 (interacts with) 35", "name" : "134526 (interacts with) 35", "interaction" : "interacts with", "SUID" : 62638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62634", "source" : "1705", "target" : "5945", "shared_name" : "134526 (interacts with) 55750", "name" : "134526 (interacts with) 55750", "interaction" : "interacts with", "SUID" : 62634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62630", "source" : "1705", "target" : "1849", "shared_name" : "134526 (interacts with) 26275", "name" : "134526 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 62630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62626", "source" : "1705", "target" : "3445", "shared_name" : "134526 (interacts with) 5091", "name" : "134526 (interacts with) 5091", "interaction" : "interacts with", "SUID" : 62626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62622", "source" : "1705", "target" : "2025", "shared_name" : "134526 (interacts with) 549", "name" : "134526 (interacts with) 549", "interaction" : "interacts with", "SUID" : 62622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62618", "source" : "1705", "target" : "3681", "shared_name" : "134526 (interacts with) 1892", "name" : "134526 (interacts with) 1892", "interaction" : "interacts with", "SUID" : 62618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62614", "source" : "1705", "target" : "3425", "shared_name" : "134526 (interacts with) 8803", "name" : "134526 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 62614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62610", "source" : "1705", "target" : "409", "shared_name" : "134526 (interacts with) 10558", "name" : "134526 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 62610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62606", "source" : "1705", "target" : "681", "shared_name" : "134526 (interacts with) 6646", "name" : "134526 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 62606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62602", "source" : "1705", "target" : "4941", "shared_name" : "134526 (interacts with) 6342", "name" : "134526 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 62602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62598", "source" : "1705", "target" : "3461", "shared_name" : "134526 (interacts with) 5538", "name" : "134526 (interacts with) 5538", "interaction" : "interacts with", "SUID" : 62598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62594", "source" : "1705", "target" : "2557", "shared_name" : "134526 (interacts with) 5444", "name" : "134526 (interacts with) 5444", "interaction" : "interacts with", "SUID" : 62594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62590", "source" : "1705", "target" : "2925", "shared_name" : "134526 (interacts with) 8802", "name" : "134526 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 62590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62586", "source" : "1705", "target" : "385", "shared_name" : "134526 (interacts with) 5319", "name" : "134526 (interacts with) 5319", "interaction" : "interacts with", "SUID" : 62586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62582", "source" : "1705", "target" : "3893", "shared_name" : "134526 (interacts with) 151056", "name" : "134526 (interacts with) 151056", "interaction" : "interacts with", "SUID" : 62582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62578", "source" : "1705", "target" : "2853", "shared_name" : "134526 (interacts with) 8398", "name" : "134526 (interacts with) 8398", "interaction" : "interacts with", "SUID" : 62578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62574", "source" : "1705", "target" : "3177", "shared_name" : "134526 (interacts with) 5321", "name" : "134526 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 62574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62570", "source" : "1705", "target" : "801", "shared_name" : "134526 (interacts with) 1376", "name" : "134526 (interacts with) 1376", "interaction" : "interacts with", "SUID" : 62570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62566", "source" : "1705", "target" : "3421", "shared_name" : "134526 (interacts with) 4967", "name" : "134526 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 62566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62562", "source" : "1705", "target" : "3237", "shared_name" : "134526 (interacts with) 95", "name" : "134526 (interacts with) 95", "interaction" : "interacts with", "SUID" : 62562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62558", "source" : "1705", "target" : "5909", "shared_name" : "134526 (interacts with) 1374", "name" : "134526 (interacts with) 1374", "interaction" : "interacts with", "SUID" : 62558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62554", "source" : "1705", "target" : "1585", "shared_name" : "134526 (interacts with) 80347", "name" : "134526 (interacts with) 80347", "interaction" : "interacts with", "SUID" : 62554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62550", "source" : "1705", "target" : "4133", "shared_name" : "134526 (interacts with) 427", "name" : "134526 (interacts with) 427", "interaction" : "interacts with", "SUID" : 62550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62546", "source" : "1705", "target" : "2029", "shared_name" : "134526 (interacts with) 4329", "name" : "134526 (interacts with) 4329", "interaction" : "interacts with", "SUID" : 62546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62542", "source" : "1705", "target" : "3325", "shared_name" : "134526 (interacts with) 9517", "name" : "134526 (interacts with) 9517", "interaction" : "interacts with", "SUID" : 62542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62538", "source" : "1705", "target" : "2669", "shared_name" : "134526 (interacts with) 9197", "name" : "134526 (interacts with) 9197", "interaction" : "interacts with", "SUID" : 62538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62534", "source" : "1705", "target" : "3793", "shared_name" : "134526 (interacts with) 28965", "name" : "134526 (interacts with) 28965", "interaction" : "interacts with", "SUID" : 62534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62530", "source" : "1705", "target" : "2965", "shared_name" : "134526 (interacts with) 22880", "name" : "134526 (interacts with) 22880", "interaction" : "interacts with", "SUID" : 62530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62526", "source" : "1705", "target" : "3917", "shared_name" : "134526 (interacts with) 22978", "name" : "134526 (interacts with) 22978", "interaction" : "interacts with", "SUID" : 62526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62522", "source" : "1705", "target" : "2165", "shared_name" : "134526 (interacts with) 23417", "name" : "134526 (interacts with) 23417", "interaction" : "interacts with", "SUID" : 62522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62518", "source" : "1705", "target" : "1133", "shared_name" : "134526 (interacts with) 3418", "name" : "134526 (interacts with) 3418", "interaction" : "interacts with", "SUID" : 62518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62514", "source" : "1705", "target" : "5017", "shared_name" : "134526 (interacts with) 3417", "name" : "134526 (interacts with) 3417", "interaction" : "interacts with", "SUID" : 62514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62510", "source" : "1705", "target" : "4045", "shared_name" : "134526 (interacts with) 29920", "name" : "134526 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 62510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62506", "source" : "1705", "target" : "3501", "shared_name" : "134526 (interacts with) 5831", "name" : "134526 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 62506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62502", "source" : "1705", "target" : "1713", "shared_name" : "134526 (interacts with) 5631", "name" : "134526 (interacts with) 5631", "interaction" : "interacts with", "SUID" : 62502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62498", "source" : "1705", "target" : "425", "shared_name" : "134526 (interacts with) 1103", "name" : "134526 (interacts with) 1103", "interaction" : "interacts with", "SUID" : 62498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62494", "source" : "1705", "target" : "597", "shared_name" : "134526 (interacts with) 271", "name" : "134526 (interacts with) 271", "interaction" : "interacts with", "SUID" : 62494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62490", "source" : "1705", "target" : "589", "shared_name" : "134526 (interacts with) 270", "name" : "134526 (interacts with) 270", "interaction" : "interacts with", "SUID" : 62490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62486", "source" : "1705", "target" : "5001", "shared_name" : "134526 (interacts with) 132158", "name" : "134526 (interacts with) 132158", "interaction" : "interacts with", "SUID" : 62486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62482", "source" : "1705", "target" : "4625", "shared_name" : "134526 (interacts with) 6785", "name" : "134526 (interacts with) 6785", "interaction" : "interacts with", "SUID" : 62482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62478", "source" : "1705", "target" : "2813", "shared_name" : "134526 (interacts with) 5079", "name" : "134526 (interacts with) 5079", "interaction" : "interacts with", "SUID" : 62478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62758", "source" : "1701", "target" : "417", "shared_name" : "5777 (interacts with) 6689", "name" : "5777 (interacts with) 6689", "interaction" : "interacts with", "SUID" : 62758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62754", "source" : "1701", "target" : "1069", "shared_name" : "5777 (interacts with) 5879", "name" : "5777 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 62754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62750", "source" : "1701", "target" : "4521", "shared_name" : "5777 (interacts with) 5894", "name" : "5777 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 62750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62746", "source" : "1701", "target" : "5965", "shared_name" : "5777 (interacts with) 596", "name" : "5777 (interacts with) 596", "interaction" : "interacts with", "SUID" : 62746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62742", "source" : "1701", "target" : "637", "shared_name" : "5777 (interacts with) 6654", "name" : "5777 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 62742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62738", "source" : "1701", "target" : "2433", "shared_name" : "5777 (interacts with) 6927", "name" : "5777 (interacts with) 6927", "interaction" : "interacts with", "SUID" : 62738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62734", "source" : "1701", "target" : "3285", "shared_name" : "5777 (interacts with) 8302", "name" : "5777 (interacts with) 8302", "interaction" : "interacts with", "SUID" : 62734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62730", "source" : "1701", "target" : "4077", "shared_name" : "5777 (interacts with) 71", "name" : "5777 (interacts with) 71", "interaction" : "interacts with", "SUID" : 62730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62726", "source" : "1701", "target" : "4981", "shared_name" : "5777 (interacts with) 6774", "name" : "5777 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 62726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62722", "source" : "1701", "target" : "4237", "shared_name" : "5777 (interacts with) 4914", "name" : "5777 (interacts with) 4914", "interaction" : "interacts with", "SUID" : 62722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62718", "source" : "1701", "target" : "6169", "shared_name" : "5777 (interacts with) 4088", "name" : "5777 (interacts with) 4088", "interaction" : "interacts with", "SUID" : 62718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62714", "source" : "1701", "target" : "805", "shared_name" : "5777 (interacts with) 6772", "name" : "5777 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 62714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62710", "source" : "1701", "target" : "3837", "shared_name" : "5777 (interacts with) 6098", "name" : "5777 (interacts with) 6098", "interaction" : "interacts with", "SUID" : 62710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62834", "source" : "1697", "target" : "1905", "shared_name" : "8818 (interacts with) 9488", "name" : "8818 (interacts with) 9488", "interaction" : "interacts with", "SUID" : 62834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62830", "source" : "1697", "target" : "985", "shared_name" : "8818 (interacts with) 9091", "name" : "8818 (interacts with) 9091", "interaction" : "interacts with", "SUID" : 62830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62826", "source" : "1697", "target" : "2181", "shared_name" : "8818 (interacts with) 94005", "name" : "8818 (interacts with) 94005", "interaction" : "interacts with", "SUID" : 62826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62822", "source" : "1697", "target" : "6133", "shared_name" : "8818 (interacts with) 54658", "name" : "8818 (interacts with) 54658", "interaction" : "interacts with", "SUID" : 62822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62818", "source" : "1697", "target" : "3705", "shared_name" : "8818 (interacts with) 87178", "name" : "8818 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 62818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62814", "source" : "1697", "target" : "4481", "shared_name" : "8818 (interacts with) 55624", "name" : "8818 (interacts with) 55624", "interaction" : "interacts with", "SUID" : 62814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62810", "source" : "1697", "target" : "4193", "shared_name" : "8818 (interacts with) 2720", "name" : "8818 (interacts with) 2720", "interaction" : "interacts with", "SUID" : 62810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62806", "source" : "1697", "target" : "1277", "shared_name" : "8818 (interacts with) 79143", "name" : "8818 (interacts with) 79143", "interaction" : "interacts with", "SUID" : 62806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62802", "source" : "1697", "target" : "5753", "shared_name" : "8818 (interacts with) 2581", "name" : "8818 (interacts with) 2581", "interaction" : "interacts with", "SUID" : 62802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62798", "source" : "1697", "target" : "1733", "shared_name" : "8818 (interacts with) 6305", "name" : "8818 (interacts with) 6305", "interaction" : "interacts with", "SUID" : 62798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62794", "source" : "1697", "target" : "2633", "shared_name" : "8818 (interacts with) 29926", "name" : "8818 (interacts with) 29926", "interaction" : "interacts with", "SUID" : 62794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62790", "source" : "1697", "target" : "5717", "shared_name" : "8818 (interacts with) 29925", "name" : "8818 (interacts with) 29925", "interaction" : "interacts with", "SUID" : 62790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62786", "source" : "1697", "target" : "3653", "shared_name" : "8818 (interacts with) 8898", "name" : "8818 (interacts with) 8898", "interaction" : "interacts with", "SUID" : 62786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62782", "source" : "1697", "target" : "2933", "shared_name" : "8818 (interacts with) 10585", "name" : "8818 (interacts with) 10585", "interaction" : "interacts with", "SUID" : 62782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62778", "source" : "1697", "target" : "741", "shared_name" : "8818 (interacts with) 4830", "name" : "8818 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 62778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62774", "source" : "1697", "target" : "4873", "shared_name" : "8818 (interacts with) 4644", "name" : "8818 (interacts with) 4644", "interaction" : "interacts with", "SUID" : 62774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62770", "source" : "1697", "target" : "1681", "shared_name" : "8818 (interacts with) 9990", "name" : "8818 (interacts with) 9990", "interaction" : "interacts with", "SUID" : 62770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62766", "source" : "1697", "target" : "6017", "shared_name" : "8818 (interacts with) 79796", "name" : "8818 (interacts with) 79796", "interaction" : "interacts with", "SUID" : 62766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62762", "source" : "1697", "target" : "6137", "shared_name" : "8818 (interacts with) 29954", "name" : "8818 (interacts with) 29954", "interaction" : "interacts with", "SUID" : 62762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62850", "source" : "1693", "target" : "3985", "shared_name" : "27086 (interacts with) 274", "name" : "27086 (interacts with) 274", "interaction" : "interacts with", "SUID" : 62850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62846", "source" : "1693", "target" : "3485", "shared_name" : "27086 (interacts with) 54704", "name" : "27086 (interacts with) 54704", "interaction" : "interacts with", "SUID" : 62846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62842", "source" : "1693", "target" : "661", "shared_name" : "27086 (interacts with) 6657", "name" : "27086 (interacts with) 6657", "interaction" : "interacts with", "SUID" : 62842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62838", "source" : "1693", "target" : "4533", "shared_name" : "27086 (interacts with) 4089", "name" : "27086 (interacts with) 4089", "interaction" : "interacts with", "SUID" : 62838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62854", "source" : "1689", "target" : "1129", "shared_name" : "5524 (interacts with) 57505", "name" : "5524 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 62854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62874", "source" : "1681", "target" : "401", "shared_name" : "9990 (interacts with) 6532", "name" : "9990 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 62874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62870", "source" : "1681", "target" : "3781", "shared_name" : "9990 (interacts with) 9152", "name" : "9990 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 62870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62866", "source" : "1681", "target" : "309", "shared_name" : "9990 (interacts with) 6536", "name" : "9990 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 62866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62862", "source" : "1681", "target" : "1809", "shared_name" : "9990 (interacts with) 6548", "name" : "9990 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 62862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62858", "source" : "1681", "target" : "3077", "shared_name" : "9990 (interacts with) 6506", "name" : "9990 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 62858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62934", "source" : "1677", "target" : "3693", "shared_name" : "8905 (interacts with) 8943", "name" : "8905 (interacts with) 8943", "interaction" : "interacts with", "SUID" : 62934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62930", "source" : "1677", "target" : "2233", "shared_name" : "8905 (interacts with) 9516", "name" : "8905 (interacts with) 9516", "interaction" : "interacts with", "SUID" : 62930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62926", "source" : "1677", "target" : "4393", "shared_name" : "8905 (interacts with) 950", "name" : "8905 (interacts with) 950", "interaction" : "interacts with", "SUID" : 62926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62922", "source" : "1677", "target" : "1445", "shared_name" : "8905 (interacts with) 9179", "name" : "8905 (interacts with) 9179", "interaction" : "interacts with", "SUID" : 62922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62918", "source" : "1677", "target" : "2429", "shared_name" : "8905 (interacts with) 4952", "name" : "8905 (interacts with) 4952", "interaction" : "interacts with", "SUID" : 62918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62914", "source" : "1677", "target" : "1909", "shared_name" : "8905 (interacts with) 5286", "name" : "8905 (interacts with) 5286", "interaction" : "interacts with", "SUID" : 62914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62910", "source" : "1677", "target" : "2641", "shared_name" : "8905 (interacts with) 3123", "name" : "8905 (interacts with) 3123", "interaction" : "interacts with", "SUID" : 62910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62906", "source" : "1677", "target" : "5065", "shared_name" : "8905 (interacts with) 3117", "name" : "8905 (interacts with) 3117", "interaction" : "interacts with", "SUID" : 62906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62902", "source" : "1677", "target" : "4165", "shared_name" : "8905 (interacts with) 3119", "name" : "8905 (interacts with) 3119", "interaction" : "interacts with", "SUID" : 62902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62898", "source" : "1677", "target" : "3981", "shared_name" : "8905 (interacts with) 1785", "name" : "8905 (interacts with) 1785", "interaction" : "interacts with", "SUID" : 62898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62894", "source" : "1677", "target" : "3189", "shared_name" : "8905 (interacts with) 2799", "name" : "8905 (interacts with) 2799", "interaction" : "interacts with", "SUID" : 62894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62890", "source" : "1677", "target" : "4441", "shared_name" : "8905 (interacts with) 1213", "name" : "8905 (interacts with) 1213", "interaction" : "interacts with", "SUID" : 62890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62886", "source" : "1677", "target" : "1225", "shared_name" : "8905 (interacts with) 375", "name" : "8905 (interacts with) 375", "interaction" : "interacts with", "SUID" : 62886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62882", "source" : "1677", "target" : "1957", "shared_name" : "8905 (interacts with) 1312", "name" : "8905 (interacts with) 1312", "interaction" : "interacts with", "SUID" : 62882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62878", "source" : "1677", "target" : "2265", "shared_name" : "8905 (interacts with) 11342", "name" : "8905 (interacts with) 11342", "interaction" : "interacts with", "SUID" : 62878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62986", "source" : "1673", "target" : "3397", "shared_name" : "138050 (interacts with) 4669", "name" : "138050 (interacts with) 4669", "interaction" : "interacts with", "SUID" : 62986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62982", "source" : "1673", "target" : "409", "shared_name" : "138050 (interacts with) 10558", "name" : "138050 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 62982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62978", "source" : "1673", "target" : "3425", "shared_name" : "138050 (interacts with) 8803", "name" : "138050 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 62978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62974", "source" : "1673", "target" : "681", "shared_name" : "138050 (interacts with) 6646", "name" : "138050 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 62974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62970", "source" : "1673", "target" : "2925", "shared_name" : "138050 (interacts with) 8802", "name" : "138050 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 62970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62966", "source" : "1673", "target" : "2853", "shared_name" : "138050 (interacts with) 8398", "name" : "138050 (interacts with) 8398", "interaction" : "interacts with", "SUID" : 62966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62962", "source" : "1673", "target" : "3893", "shared_name" : "138050 (interacts with) 151056", "name" : "138050 (interacts with) 151056", "interaction" : "interacts with", "SUID" : 62962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62958", "source" : "1673", "target" : "4941", "shared_name" : "138050 (interacts with) 6342", "name" : "138050 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 62958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62954", "source" : "1673", "target" : "3461", "shared_name" : "138050 (interacts with) 5538", "name" : "138050 (interacts with) 5538", "interaction" : "interacts with", "SUID" : 62954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62950", "source" : "1673", "target" : "3177", "shared_name" : "138050 (interacts with) 5321", "name" : "138050 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 62950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62946", "source" : "1673", "target" : "385", "shared_name" : "138050 (interacts with) 5319", "name" : "138050 (interacts with) 5319", "interaction" : "interacts with", "SUID" : 62946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62942", "source" : "1673", "target" : "1849", "shared_name" : "138050 (interacts with) 26275", "name" : "138050 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 62942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62938", "source" : "1673", "target" : "3421", "shared_name" : "138050 (interacts with) 4967", "name" : "138050 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 62938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63026", "source" : "1669", "target" : "889", "shared_name" : "6390 (interacts with) 80224", "name" : "6390 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 63026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63022", "source" : "1669", "target" : "1053", "shared_name" : "6390 (interacts with) 81689", "name" : "6390 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 63022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63018", "source" : "1669", "target" : "5109", "shared_name" : "6390 (interacts with) 790", "name" : "6390 (interacts with) 790", "interaction" : "interacts with", "SUID" : 63018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63014", "source" : "1669", "target" : "2009", "shared_name" : "6390 (interacts with) 79133", "name" : "6390 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 63014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63010", "source" : "1669", "target" : "1289", "shared_name" : "6390 (interacts with) 6392", "name" : "6390 (interacts with) 6392", "interaction" : "interacts with", "SUID" : 63010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63006", "source" : "1669", "target" : "2925", "shared_name" : "6390 (interacts with) 8802", "name" : "6390 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 63006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63002", "source" : "1669", "target" : "3425", "shared_name" : "6390 (interacts with) 8803", "name" : "6390 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 63002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62998", "source" : "1669", "target" : "5197", "shared_name" : "6390 (interacts with) 7156", "name" : "6390 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 62998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62994", "source" : "1669", "target" : "1749", "shared_name" : "6390 (interacts with) 728294", "name" : "6390 (interacts with) 728294", "interaction" : "interacts with", "SUID" : 62994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "62990", "source" : "1669", "target" : "2021", "shared_name" : "6390 (interacts with) 5428", "name" : "6390 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 62990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63042", "source" : "1665", "target" : "3341", "shared_name" : "54332 (interacts with) 8504", "name" : "54332 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 63042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63038", "source" : "1665", "target" : "5929", "shared_name" : "54332 (interacts with) 6616", "name" : "54332 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 63038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63034", "source" : "1665", "target" : "3329", "shared_name" : "54332 (interacts with) 5824", "name" : "54332 (interacts with) 5824", "interaction" : "interacts with", "SUID" : 63034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63030", "source" : "1665", "target" : "4021", "shared_name" : "54332 (interacts with) 203068", "name" : "54332 (interacts with) 203068", "interaction" : "interacts with", "SUID" : 63030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63090", "source" : "1661", "target" : "4069", "shared_name" : "91942 (interacts with) 374291", "name" : "91942 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 63090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63086", "source" : "1661", "target" : "2797", "shared_name" : "91942 (interacts with) 4728", "name" : "91942 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 63086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63082", "source" : "1661", "target" : "5833", "shared_name" : "91942 (interacts with) 4726", "name" : "91942 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 63082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63078", "source" : "1661", "target" : "1573", "shared_name" : "91942 (interacts with) 4723", "name" : "91942 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 63078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63074", "source" : "1661", "target" : "1869", "shared_name" : "91942 (interacts with) 4729", "name" : "91942 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 63074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63070", "source" : "1661", "target" : "5845", "shared_name" : "91942 (interacts with) 4714", "name" : "91942 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 63070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63066", "source" : "1661", "target" : "4945", "shared_name" : "91942 (interacts with) 4722", "name" : "91942 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 63066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63062", "source" : "1661", "target" : "5821", "shared_name" : "91942 (interacts with) 4724", "name" : "91942 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 63062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63058", "source" : "1661", "target" : "4017", "shared_name" : "91942 (interacts with) 4719", "name" : "91942 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 63058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63054", "source" : "1661", "target" : "2753", "shared_name" : "91942 (interacts with) 4720", "name" : "91942 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 63054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63050", "source" : "1661", "target" : "5853", "shared_name" : "91942 (interacts with) 4709", "name" : "91942 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 63050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63046", "source" : "1661", "target" : "2689", "shared_name" : "91942 (interacts with) 4715", "name" : "91942 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 63046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63154", "source" : "1657", "target" : "4505", "shared_name" : "3251 (interacts with) 5190", "name" : "3251 (interacts with) 5190", "interaction" : "interacts with", "SUID" : 63154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63150", "source" : "1657", "target" : "5201", "shared_name" : "3251 (interacts with) 353", "name" : "3251 (interacts with) 353", "interaction" : "interacts with", "SUID" : 63150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63146", "source" : "1657", "target" : "4613", "shared_name" : "3251 (interacts with) 84896", "name" : "3251 (interacts with) 84896", "interaction" : "interacts with", "SUID" : 63146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63142", "source" : "1657", "target" : "781", "shared_name" : "3251 (interacts with) 4860", "name" : "3251 (interacts with) 4860", "interaction" : "interacts with", "SUID" : 63142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63138", "source" : "1657", "target" : "2393", "shared_name" : "3251 (interacts with) 6683", "name" : "3251 (interacts with) 6683", "interaction" : "interacts with", "SUID" : 63138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63134", "source" : "1657", "target" : "1601", "shared_name" : "3251 (interacts with) 7415", "name" : "3251 (interacts with) 7415", "interaction" : "interacts with", "SUID" : 63134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63130", "source" : "1657", "target" : "5677", "shared_name" : "3251 (interacts with) 5189", "name" : "3251 (interacts with) 5189", "interaction" : "interacts with", "SUID" : 63130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63126", "source" : "1657", "target" : "5597", "shared_name" : "3251 (interacts with) 22934", "name" : "3251 (interacts with) 22934", "interaction" : "interacts with", "SUID" : 63126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63122", "source" : "1657", "target" : "3997", "shared_name" : "3251 (interacts with) 1890", "name" : "3251 (interacts with) 1890", "interaction" : "interacts with", "SUID" : 63122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63118", "source" : "1657", "target" : "2377", "shared_name" : "3251 (interacts with) 6687", "name" : "3251 (interacts with) 6687", "interaction" : "interacts with", "SUID" : 63118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63114", "source" : "1657", "target" : "4993", "shared_name" : "3251 (interacts with) 8622", "name" : "3251 (interacts with) 8622", "interaction" : "interacts with", "SUID" : 63114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63110", "source" : "1657", "target" : "5841", "shared_name" : "3251 (interacts with) 10846", "name" : "3251 (interacts with) 10846", "interaction" : "interacts with", "SUID" : 63110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63106", "source" : "1657", "target" : "5165", "shared_name" : "3251 (interacts with) 3704", "name" : "3251 (interacts with) 3704", "interaction" : "interacts with", "SUID" : 63106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63102", "source" : "1657", "target" : "3917", "shared_name" : "3251 (interacts with) 22978", "name" : "3251 (interacts with) 22978", "interaction" : "interacts with", "SUID" : 63102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63098", "source" : "1657", "target" : "1713", "shared_name" : "3251 (interacts with) 5631", "name" : "3251 (interacts with) 5631", "interaction" : "interacts with", "SUID" : 63098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63094", "source" : "1657", "target" : "2089", "shared_name" : "3251 (interacts with) 3939", "name" : "3251 (interacts with) 3939", "interaction" : "interacts with", "SUID" : 63094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63158", "source" : "1649", "target" : "2193", "shared_name" : "51294 (interacts with) 4052", "name" : "51294 (interacts with) 4052", "interaction" : "interacts with", "SUID" : 63158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63182", "source" : "1645", "target" : "4337", "shared_name" : "51124 (interacts with) 84197", "name" : "51124 (interacts with) 84197", "interaction" : "interacts with", "SUID" : 63182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63178", "source" : "1645", "target" : "4989", "shared_name" : "51124 (interacts with) 51227", "name" : "51124 (interacts with) 51227", "interaction" : "interacts with", "SUID" : 63178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63174", "source" : "1645", "target" : "1249", "shared_name" : "51124 (interacts with) 2705", "name" : "51124 (interacts with) 2705", "interaction" : "interacts with", "SUID" : 63174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63170", "source" : "1645", "target" : "5961", "shared_name" : "51124 (interacts with) 10682", "name" : "51124 (interacts with) 10682", "interaction" : "interacts with", "SUID" : 63170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63166", "source" : "1645", "target" : "3857", "shared_name" : "51124 (interacts with) 65062", "name" : "51124 (interacts with) 65062", "interaction" : "interacts with", "SUID" : 63166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63162", "source" : "1645", "target" : "3489", "shared_name" : "51124 (interacts with) 54344", "name" : "51124 (interacts with) 54344", "interaction" : "interacts with", "SUID" : 63162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63186", "source" : "1637", "target" : "6073", "shared_name" : "91574 (interacts with) 92170", "name" : "91574 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 63186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63206", "source" : "1633", "target" : "5937", "shared_name" : "57731 (interacts with) 8120", "name" : "57731 (interacts with) 8120", "interaction" : "interacts with", "SUID" : 63206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63202", "source" : "1633", "target" : "3637", "shared_name" : "57731 (interacts with) 6712", "name" : "57731 (interacts with) 6712", "interaction" : "interacts with", "SUID" : 63202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63198", "source" : "1633", "target" : "569", "shared_name" : "57731 (interacts with) 7048", "name" : "57731 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 63198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63194", "source" : "1633", "target" : "545", "shared_name" : "57731 (interacts with) 51014", "name" : "57731 (interacts with) 51014", "interaction" : "interacts with", "SUID" : 63194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63190", "source" : "1633", "target" : "5749", "shared_name" : "57731 (interacts with) 10959", "name" : "57731 (interacts with) 10959", "interaction" : "interacts with", "SUID" : 63190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63270", "source" : "1629", "target" : "1933", "shared_name" : "6047 (interacts with) 7335", "name" : "6047 (interacts with) 7335", "interaction" : "interacts with", "SUID" : 63270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63266", "source" : "1629", "target" : "961", "shared_name" : "6047 (interacts with) 7318", "name" : "6047 (interacts with) 7318", "interaction" : "interacts with", "SUID" : 63266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63262", "source" : "1629", "target" : "5849", "shared_name" : "6047 (interacts with) 6613", "name" : "6047 (interacts with) 6613", "interaction" : "interacts with", "SUID" : 63262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63258", "source" : "1629", "target" : "3729", "shared_name" : "6047 (interacts with) 7319", "name" : "6047 (interacts with) 7319", "interaction" : "interacts with", "SUID" : 63258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63254", "source" : "1629", "target" : "789", "shared_name" : "6047 (interacts with) 1616", "name" : "6047 (interacts with) 1616", "interaction" : "interacts with", "SUID" : 63254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63250", "source" : "1629", "target" : "829", "shared_name" : "6047 (interacts with) 8772", "name" : "6047 (interacts with) 8772", "interaction" : "interacts with", "SUID" : 63250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63246", "source" : "1629", "target" : "885", "shared_name" : "6047 (interacts with) 6347", "name" : "6047 (interacts with) 6347", "interaction" : "interacts with", "SUID" : 63246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63242", "source" : "1629", "target" : "873", "shared_name" : "6047 (interacts with) 1385", "name" : "6047 (interacts with) 1385", "interaction" : "interacts with", "SUID" : 63242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63238", "source" : "1629", "target" : "2473", "shared_name" : "6047 (interacts with) 10342", "name" : "6047 (interacts with) 10342", "interaction" : "interacts with", "SUID" : 63238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63234", "source" : "1629", "target" : "877", "shared_name" : "6047 (interacts with) 7341", "name" : "6047 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 63234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63230", "source" : "1629", "target" : "853", "shared_name" : "6047 (interacts with) 60", "name" : "6047 (interacts with) 60", "interaction" : "interacts with", "SUID" : 63230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63226", "source" : "1629", "target" : "3205", "shared_name" : "6047 (interacts with) 862", "name" : "6047 (interacts with) 862", "interaction" : "interacts with", "SUID" : 63226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63222", "source" : "1629", "target" : "2549", "shared_name" : "6047 (interacts with) 9319", "name" : "6047 (interacts with) 9319", "interaction" : "interacts with", "SUID" : 63222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63218", "source" : "1629", "target" : "2313", "shared_name" : "6047 (interacts with) 6942", "name" : "6047 (interacts with) 6942", "interaction" : "interacts with", "SUID" : 63218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63214", "source" : "1629", "target" : "3417", "shared_name" : "6047 (interacts with) 5371", "name" : "6047 (interacts with) 5371", "interaction" : "interacts with", "SUID" : 63214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63210", "source" : "1629", "target" : "4645", "shared_name" : "6047 (interacts with) 84231", "name" : "6047 (interacts with) 84231", "interaction" : "interacts with", "SUID" : 63210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63342", "source" : "1625", "target" : "1157", "shared_name" : "1559 (interacts with) 6580", "name" : "1559 (interacts with) 6580", "interaction" : "interacts with", "SUID" : 63342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63338", "source" : "1625", "target" : "4385", "shared_name" : "1559 (interacts with) 3084", "name" : "1559 (interacts with) 3084", "interaction" : "interacts with", "SUID" : 63338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63334", "source" : "1625", "target" : "4589", "shared_name" : "1559 (interacts with) 8431", "name" : "1559 (interacts with) 8431", "interaction" : "interacts with", "SUID" : 63334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63330", "source" : "1625", "target" : "2957", "shared_name" : "1559 (interacts with) 5465", "name" : "1559 (interacts with) 5465", "interaction" : "interacts with", "SUID" : 63330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63326", "source" : "1625", "target" : "3901", "shared_name" : "1559 (interacts with) 19", "name" : "1559 (interacts with) 19", "interaction" : "interacts with", "SUID" : 63326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63322", "source" : "1625", "target" : "2081", "shared_name" : "1559 (interacts with) 5468", "name" : "1559 (interacts with) 5468", "interaction" : "interacts with", "SUID" : 63322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63318", "source" : "1625", "target" : "1829", "shared_name" : "1559 (interacts with) 7421", "name" : "1559 (interacts with) 7421", "interaction" : "interacts with", "SUID" : 63318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63314", "source" : "1625", "target" : "5941", "shared_name" : "1559 (interacts with) 5914", "name" : "1559 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 63314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63310", "source" : "1625", "target" : "3825", "shared_name" : "1559 (interacts with) 5915", "name" : "1559 (interacts with) 5915", "interaction" : "interacts with", "SUID" : 63310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63306", "source" : "1625", "target" : "6153", "shared_name" : "1559 (interacts with) 9915", "name" : "1559 (interacts with) 9915", "interaction" : "interacts with", "SUID" : 63306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63302", "source" : "1625", "target" : "5645", "shared_name" : "1559 (interacts with) 9420", "name" : "1559 (interacts with) 9420", "interaction" : "interacts with", "SUID" : 63302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63298", "source" : "1625", "target" : "321", "shared_name" : "1559 (interacts with) 1593", "name" : "1559 (interacts with) 1593", "interaction" : "interacts with", "SUID" : 63298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63294", "source" : "1625", "target" : "5033", "shared_name" : "1559 (interacts with) 1565", "name" : "1559 (interacts with) 1565", "interaction" : "interacts with", "SUID" : 63294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63290", "source" : "1625", "target" : "2853", "shared_name" : "1559 (interacts with) 8398", "name" : "1559 (interacts with) 8398", "interaction" : "interacts with", "SUID" : 63290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63286", "source" : "1625", "target" : "3893", "shared_name" : "1559 (interacts with) 151056", "name" : "1559 (interacts with) 151056", "interaction" : "interacts with", "SUID" : 63286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63282", "source" : "1625", "target" : "385", "shared_name" : "1559 (interacts with) 5319", "name" : "1559 (interacts with) 5319", "interaction" : "interacts with", "SUID" : 63282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63278", "source" : "1625", "target" : "3177", "shared_name" : "1559 (interacts with) 5321", "name" : "1559 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 63278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63274", "source" : "1625", "target" : "1569", "shared_name" : "1559 (interacts with) 1557", "name" : "1559 (interacts with) 1557", "interaction" : "interacts with", "SUID" : 63274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63630", "source" : "1621", "target" : "1229", "shared_name" : "1432 (interacts with) 238", "name" : "1432 (interacts with) 238", "interaction" : "interacts with", "SUID" : 63630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63626", "source" : "1621", "target" : "1069", "shared_name" : "1432 (interacts with) 5879", "name" : "1432 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 63626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63622", "source" : "1621", "target" : "3517", "shared_name" : "1432 (interacts with) 2033", "name" : "1432 (interacts with) 2033", "interaction" : "interacts with", "SUID" : 63622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63618", "source" : "1621", "target" : "2153", "shared_name" : "1432 (interacts with) 7042", "name" : "1432 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 63618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63614", "source" : "1621", "target" : "3305", "shared_name" : "1432 (interacts with) 7040", "name" : "1432 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 63614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63610", "source" : "1621", "target" : "4857", "shared_name" : "1432 (interacts with) 5573", "name" : "1432 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 63610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63606", "source" : "1621", "target" : "637", "shared_name" : "1432 (interacts with) 6654", "name" : "1432 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 63606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63602", "source" : "1621", "target" : "5037", "shared_name" : "1432 (interacts with) 5515", "name" : "1432 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 63602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63598", "source" : "1621", "target" : "5149", "shared_name" : "1432 (interacts with) 5058", "name" : "1432 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 63598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63594", "source" : "1621", "target" : "3409", "shared_name" : "1432 (interacts with) 7043", "name" : "1432 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 63594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63590", "source" : "1621", "target" : "5965", "shared_name" : "1432 (interacts with) 596", "name" : "1432 (interacts with) 596", "interaction" : "interacts with", "SUID" : 63590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63586", "source" : "1621", "target" : "993", "shared_name" : "1432 (interacts with) 801", "name" : "1432 (interacts with) 801", "interaction" : "interacts with", "SUID" : 63586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63582", "source" : "1621", "target" : "1241", "shared_name" : "1432 (interacts with) 808", "name" : "1432 (interacts with) 808", "interaction" : "interacts with", "SUID" : 63582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63578", "source" : "1621", "target" : "1201", "shared_name" : "1432 (interacts with) 805", "name" : "1432 (interacts with) 805", "interaction" : "interacts with", "SUID" : 63578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63574", "source" : "1621", "target" : "3577", "shared_name" : "1432 (interacts with) 5605", "name" : "1432 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 63574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63570", "source" : "1621", "target" : "1233", "shared_name" : "1432 (interacts with) 355", "name" : "1432 (interacts with) 355", "interaction" : "interacts with", "SUID" : 63570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63566", "source" : "1621", "target" : "3593", "shared_name" : "1432 (interacts with) 5530", "name" : "1432 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 63566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63562", "source" : "1621", "target" : "805", "shared_name" : "1432 (interacts with) 6772", "name" : "1432 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 63562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63558", "source" : "1621", "target" : "789", "shared_name" : "1432 (interacts with) 1616", "name" : "1432 (interacts with) 1616", "interaction" : "interacts with", "SUID" : 63558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63554", "source" : "1621", "target" : "5145", "shared_name" : "1432 (interacts with) 23236", "name" : "1432 (interacts with) 23236", "interaction" : "interacts with", "SUID" : 63554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63550", "source" : "1621", "target" : "2957", "shared_name" : "1432 (interacts with) 5465", "name" : "1432 (interacts with) 5465", "interaction" : "interacts with", "SUID" : 63550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63546", "source" : "1621", "target" : "565", "shared_name" : "1432 (interacts with) 4772", "name" : "1432 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 63546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63542", "source" : "1621", "target" : "4769", "shared_name" : "1432 (interacts with) 7132", "name" : "1432 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 63542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63538", "source" : "1621", "target" : "4649", "shared_name" : "1432 (interacts with) 3479", "name" : "1432 (interacts with) 3479", "interaction" : "interacts with", "SUID" : 63538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63534", "source" : "1621", "target" : "3173", "shared_name" : "1432 (interacts with) 3558", "name" : "1432 (interacts with) 3558", "interaction" : "interacts with", "SUID" : 63534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63530", "source" : "1621", "target" : "1529", "shared_name" : "1432 (interacts with) 3458", "name" : "1432 (interacts with) 3458", "interaction" : "interacts with", "SUID" : 63530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63526", "source" : "1621", "target" : "4533", "shared_name" : "1432 (interacts with) 4089", "name" : "1432 (interacts with) 4089", "interaction" : "interacts with", "SUID" : 63526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63522", "source" : "1621", "target" : "3581", "shared_name" : "1432 (interacts with) 2185", "name" : "1432 (interacts with) 2185", "interaction" : "interacts with", "SUID" : 63522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63518", "source" : "1621", "target" : "865", "shared_name" : "1432 (interacts with) 3480", "name" : "1432 (interacts with) 3480", "interaction" : "interacts with", "SUID" : 63518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63514", "source" : "1621", "target" : "5313", "shared_name" : "1432 (interacts with) 6197", "name" : "1432 (interacts with) 6197", "interaction" : "interacts with", "SUID" : 63514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63510", "source" : "1621", "target" : "5761", "shared_name" : "1432 (interacts with) 4208", "name" : "1432 (interacts with) 4208", "interaction" : "interacts with", "SUID" : 63510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63506", "source" : "1621", "target" : "5817", "shared_name" : "1432 (interacts with) 1950", "name" : "1432 (interacts with) 1950", "interaction" : "interacts with", "SUID" : 63506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63502", "source" : "1621", "target" : "3177", "shared_name" : "1432 (interacts with) 5321", "name" : "1432 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 63502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63498", "source" : "1621", "target" : "4981", "shared_name" : "1432 (interacts with) 6774", "name" : "1432 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 63498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63494", "source" : "1621", "target" : "1405", "shared_name" : "1432 (interacts with) 998", "name" : "1432 (interacts with) 998", "interaction" : "interacts with", "SUID" : 63494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63490", "source" : "1621", "target" : "569", "shared_name" : "1432 (interacts with) 7048", "name" : "1432 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 63490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63486", "source" : "1621", "target" : "817", "shared_name" : "1432 (interacts with) 5728", "name" : "1432 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 63486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63482", "source" : "1621", "target" : "5697", "shared_name" : "1432 (interacts with) 8517", "name" : "1432 (interacts with) 8517", "interaction" : "interacts with", "SUID" : 63482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63478", "source" : "1621", "target" : "1985", "shared_name" : "1432 (interacts with) 3456", "name" : "1432 (interacts with) 3456", "interaction" : "interacts with", "SUID" : 63478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63474", "source" : "1621", "target" : "2481", "shared_name" : "1432 (interacts with) 2475", "name" : "1432 (interacts with) 2475", "interaction" : "interacts with", "SUID" : 63474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63470", "source" : "1621", "target" : "6169", "shared_name" : "1432 (interacts with) 4088", "name" : "1432 (interacts with) 4088", "interaction" : "interacts with", "SUID" : 63470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63466", "source" : "1621", "target" : "5941", "shared_name" : "1432 (interacts with) 5914", "name" : "1432 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 63466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63462", "source" : "1621", "target" : "2309", "shared_name" : "1432 (interacts with) 3316", "name" : "1432 (interacts with) 3316", "interaction" : "interacts with", "SUID" : 63462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63458", "source" : "1621", "target" : "5681", "shared_name" : "1432 (interacts with) 3315", "name" : "1432 (interacts with) 3315", "interaction" : "interacts with", "SUID" : 63458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63454", "source" : "1621", "target" : "2661", "shared_name" : "1432 (interacts with) 3606", "name" : "1432 (interacts with) 3606", "interaction" : "interacts with", "SUID" : 63454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63450", "source" : "1621", "target" : "6101", "shared_name" : "1432 (interacts with) 5582", "name" : "1432 (interacts with) 5582", "interaction" : "interacts with", "SUID" : 63450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63446", "source" : "1621", "target" : "2585", "shared_name" : "1432 (interacts with) 1977", "name" : "1432 (interacts with) 1977", "interaction" : "interacts with", "SUID" : 63446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63442", "source" : "1621", "target" : "6057", "shared_name" : "1432 (interacts with) 3162", "name" : "1432 (interacts with) 3162", "interaction" : "interacts with", "SUID" : 63442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63438", "source" : "1621", "target" : "885", "shared_name" : "1432 (interacts with) 6347", "name" : "1432 (interacts with) 6347", "interaction" : "interacts with", "SUID" : 63438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63434", "source" : "1621", "target" : "2841", "shared_name" : "1432 (interacts with) 7098", "name" : "1432 (interacts with) 7098", "interaction" : "interacts with", "SUID" : 63434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63430", "source" : "1621", "target" : "5389", "shared_name" : "1432 (interacts with) 551", "name" : "1432 (interacts with) 551", "interaction" : "interacts with", "SUID" : 63430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63426", "source" : "1621", "target" : "2093", "shared_name" : "1432 (interacts with) 4780", "name" : "1432 (interacts with) 4780", "interaction" : "interacts with", "SUID" : 63426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63422", "source" : "1621", "target" : "5297", "shared_name" : "1432 (interacts with) 6775", "name" : "1432 (interacts with) 6775", "interaction" : "interacts with", "SUID" : 63422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63418", "source" : "1621", "target" : "2033", "shared_name" : "1432 (interacts with) 8741", "name" : "1432 (interacts with) 8741", "interaction" : "interacts with", "SUID" : 63418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63414", "source" : "1621", "target" : "1925", "shared_name" : "1432 (interacts with) 948", "name" : "1432 (interacts with) 948", "interaction" : "interacts with", "SUID" : 63414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63410", "source" : "1621", "target" : "5529", "shared_name" : "1432 (interacts with) 2875", "name" : "1432 (interacts with) 2875", "interaction" : "interacts with", "SUID" : 63410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63406", "source" : "1621", "target" : "1245", "shared_name" : "1432 (interacts with) 4137", "name" : "1432 (interacts with) 4137", "interaction" : "interacts with", "SUID" : 63406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63402", "source" : "1621", "target" : "1809", "shared_name" : "1432 (interacts with) 6548", "name" : "1432 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 63402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63398", "source" : "1621", "target" : "3201", "shared_name" : "1432 (interacts with) 1277", "name" : "1432 (interacts with) 1277", "interaction" : "interacts with", "SUID" : 63398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63394", "source" : "1621", "target" : "2241", "shared_name" : "1432 (interacts with) 3043", "name" : "1432 (interacts with) 3043", "interaction" : "interacts with", "SUID" : 63394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63390", "source" : "1621", "target" : "2081", "shared_name" : "1432 (interacts with) 5468", "name" : "1432 (interacts with) 5468", "interaction" : "interacts with", "SUID" : 63390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63386", "source" : "1621", "target" : "5625", "shared_name" : "1432 (interacts with) 595", "name" : "1432 (interacts with) 595", "interaction" : "interacts with", "SUID" : 63386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63382", "source" : "1621", "target" : "3145", "shared_name" : "1432 (interacts with) 8493", "name" : "1432 (interacts with) 8493", "interaction" : "interacts with", "SUID" : 63382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63378", "source" : "1621", "target" : "5125", "shared_name" : "1432 (interacts with) 5979", "name" : "1432 (interacts with) 5979", "interaction" : "interacts with", "SUID" : 63378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63374", "source" : "1621", "target" : "5361", "shared_name" : "1432 (interacts with) 5604", "name" : "1432 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 63374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63370", "source" : "1621", "target" : "6121", "shared_name" : "1432 (interacts with) 2260", "name" : "1432 (interacts with) 2260", "interaction" : "interacts with", "SUID" : 63370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63366", "source" : "1621", "target" : "553", "shared_name" : "1432 (interacts with) 7248", "name" : "1432 (interacts with) 7248", "interaction" : "interacts with", "SUID" : 63366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63362", "source" : "1621", "target" : "973", "shared_name" : "1432 (interacts with) 5595", "name" : "1432 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 63362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63358", "source" : "1621", "target" : "537", "shared_name" : "1432 (interacts with) 27429", "name" : "1432 (interacts with) 27429", "interaction" : "interacts with", "SUID" : 63358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63354", "source" : "1621", "target" : "5081", "shared_name" : "1432 (interacts with) 5594", "name" : "1432 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 63354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63350", "source" : "1621", "target" : "981", "shared_name" : "1432 (interacts with) 7157", "name" : "1432 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 63350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63346", "source" : "1621", "target" : "5509", "shared_name" : "1432 (interacts with) 207", "name" : "1432 (interacts with) 207", "interaction" : "interacts with", "SUID" : 63346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63666", "source" : "1617", "target" : "5545", "shared_name" : "373156 (interacts with) 5195", "name" : "373156 (interacts with) 5195", "interaction" : "interacts with", "SUID" : 63666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63662", "source" : "1617", "target" : "5205", "shared_name" : "373156 (interacts with) 5828", "name" : "373156 (interacts with) 5828", "interaction" : "interacts with", "SUID" : 63662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63658", "source" : "1617", "target" : "5237", "shared_name" : "373156 (interacts with) 5830", "name" : "373156 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 63658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63654", "source" : "1617", "target" : "2045", "shared_name" : "373156 (interacts with) 51102", "name" : "373156 (interacts with) 51102", "interaction" : "interacts with", "SUID" : 63654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63650", "source" : "1617", "target" : "5865", "shared_name" : "373156 (interacts with) 5192", "name" : "373156 (interacts with) 5192", "interaction" : "interacts with", "SUID" : 63650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63646", "source" : "1617", "target" : "4297", "shared_name" : "373156 (interacts with) 5193", "name" : "373156 (interacts with) 5193", "interaction" : "interacts with", "SUID" : 63646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63642", "source" : "1617", "target" : "1953", "shared_name" : "373156 (interacts with) 5194", "name" : "373156 (interacts with) 5194", "interaction" : "interacts with", "SUID" : 63642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63638", "source" : "1617", "target" : "1237", "shared_name" : "373156 (interacts with) 3329", "name" : "373156 (interacts with) 3329", "interaction" : "interacts with", "SUID" : 63638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63634", "source" : "1617", "target" : "5113", "shared_name" : "373156 (interacts with) 7084", "name" : "373156 (interacts with) 7084", "interaction" : "interacts with", "SUID" : 63634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63682", "source" : "1613", "target" : "3841", "shared_name" : "2332 (interacts with) 9444", "name" : "2332 (interacts with) 9444", "interaction" : "interacts with", "SUID" : 63682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63678", "source" : "1613", "target" : "5449", "shared_name" : "2332 (interacts with) 923", "name" : "2332 (interacts with) 923", "interaction" : "interacts with", "SUID" : 63678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63674", "source" : "1613", "target" : "1857", "shared_name" : "2332 (interacts with) 9533", "name" : "2332 (interacts with) 9533", "interaction" : "interacts with", "SUID" : 63674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63670", "source" : "1613", "target" : "6021", "shared_name" : "2332 (interacts with) 26999", "name" : "2332 (interacts with) 26999", "interaction" : "interacts with", "SUID" : 63670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63702", "source" : "1605", "target" : "2925", "shared_name" : "6648 (interacts with) 8802", "name" : "6648 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 63702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63698", "source" : "1605", "target" : "889", "shared_name" : "6648 (interacts with) 80224", "name" : "6648 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 63698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63694", "source" : "1605", "target" : "4353", "shared_name" : "6648 (interacts with) 9512", "name" : "6648 (interacts with) 9512", "interaction" : "interacts with", "SUID" : 63694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63690", "source" : "1605", "target" : "4041", "shared_name" : "6648 (interacts with) 847", "name" : "6648 (interacts with) 847", "interaction" : "interacts with", "SUID" : 63690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63686", "source" : "1605", "target" : "5297", "shared_name" : "6648 (interacts with) 6775", "name" : "6648 (interacts with) 6775", "interaction" : "interacts with", "SUID" : 63686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63722", "source" : "1601", "target" : "1377", "shared_name" : "7415 (interacts with) 81570", "name" : "7415 (interacts with) 81570", "interaction" : "interacts with", "SUID" : 63722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63718", "source" : "1601", "target" : "5109", "shared_name" : "7415 (interacts with) 790", "name" : "7415 (interacts with) 790", "interaction" : "interacts with", "SUID" : 63718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63714", "source" : "1601", "target" : "5917", "shared_name" : "7415 (interacts with) 4287", "name" : "7415 (interacts with) 4287", "interaction" : "interacts with", "SUID" : 63714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63710", "source" : "1601", "target" : "4957", "shared_name" : "7415 (interacts with) 5071", "name" : "7415 (interacts with) 5071", "interaction" : "interacts with", "SUID" : 63710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63706", "source" : "1601", "target" : "2685", "shared_name" : "7415 (interacts with) 9474", "name" : "7415 (interacts with) 9474", "interaction" : "interacts with", "SUID" : 63706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63786", "source" : "1597", "target" : "997", "shared_name" : "3146 (interacts with) 7431", "name" : "3146 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 63786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63782", "source" : "1597", "target" : "1201", "shared_name" : "3146 (interacts with) 805", "name" : "3146 (interacts with) 805", "interaction" : "interacts with", "SUID" : 63782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63778", "source" : "1597", "target" : "5921", "shared_name" : "3146 (interacts with) 57570", "name" : "3146 (interacts with) 57570", "interaction" : "interacts with", "SUID" : 63778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63774", "source" : "1597", "target" : "1729", "shared_name" : "3146 (interacts with) 5111", "name" : "3146 (interacts with) 5111", "interaction" : "interacts with", "SUID" : 63774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63770", "source" : "1597", "target" : "4949", "shared_name" : "3146 (interacts with) 5970", "name" : "3146 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 63770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63766", "source" : "1597", "target" : "3017", "shared_name" : "3146 (interacts with) 4790", "name" : "3146 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 63766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63762", "source" : "1597", "target" : "3401", "shared_name" : "3146 (interacts with) 3659", "name" : "3146 (interacts with) 3659", "interaction" : "interacts with", "SUID" : 63762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63758", "source" : "1597", "target" : "509", "shared_name" : "3146 (interacts with) 3661", "name" : "3146 (interacts with) 3661", "interaction" : "interacts with", "SUID" : 63758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63754", "source" : "1597", "target" : "1845", "shared_name" : "3146 (interacts with) 836", "name" : "3146 (interacts with) 836", "interaction" : "interacts with", "SUID" : 63754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63750", "source" : "1597", "target" : "3817", "shared_name" : "3146 (interacts with) 3663", "name" : "3146 (interacts with) 3663", "interaction" : "interacts with", "SUID" : 63750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63746", "source" : "1597", "target" : "1793", "shared_name" : "3146 (interacts with) 7515", "name" : "3146 (interacts with) 7515", "interaction" : "interacts with", "SUID" : 63746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63742", "source" : "1597", "target" : "949", "shared_name" : "3146 (interacts with) 177", "name" : "3146 (interacts with) 177", "interaction" : "interacts with", "SUID" : 63742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63738", "source" : "1597", "target" : "2333", "shared_name" : "3146 (interacts with) 3559", "name" : "3146 (interacts with) 3559", "interaction" : "interacts with", "SUID" : 63738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63734", "source" : "1597", "target" : "5081", "shared_name" : "3146 (interacts with) 5594", "name" : "3146 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 63734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63730", "source" : "1597", "target" : "973", "shared_name" : "3146 (interacts with) 5595", "name" : "3146 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 63730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63726", "source" : "1597", "target" : "5781", "shared_name" : "3146 (interacts with) 6672", "name" : "3146 (interacts with) 6672", "interaction" : "interacts with", "SUID" : 63726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63818", "source" : "1593", "target" : "1025", "shared_name" : "8733 (interacts with) 80055", "name" : "8733 (interacts with) 80055", "interaction" : "interacts with", "SUID" : 63818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63814", "source" : "1593", "target" : "1905", "shared_name" : "8733 (interacts with) 9488", "name" : "8733 (interacts with) 9488", "interaction" : "interacts with", "SUID" : 63814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63810", "source" : "1593", "target" : "985", "shared_name" : "8733 (interacts with) 9091", "name" : "8733 (interacts with) 9091", "interaction" : "interacts with", "SUID" : 63810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63806", "source" : "1593", "target" : "1697", "shared_name" : "8733 (interacts with) 8818", "name" : "8733 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 63806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63802", "source" : "1593", "target" : "689", "shared_name" : "8733 (interacts with) 6329", "name" : "8733 (interacts with) 6329", "interaction" : "interacts with", "SUID" : 63802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63798", "source" : "1593", "target" : "1917", "shared_name" : "8733 (interacts with) 51604", "name" : "8733 (interacts with) 51604", "interaction" : "interacts with", "SUID" : 63798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63794", "source" : "1593", "target" : "4153", "shared_name" : "8733 (interacts with) 2566", "name" : "8733 (interacts with) 2566", "interaction" : "interacts with", "SUID" : 63794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63790", "source" : "1593", "target" : "2181", "shared_name" : "8733 (interacts with) 94005", "name" : "8733 (interacts with) 94005", "interaction" : "interacts with", "SUID" : 63790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63846", "source" : "1589", "target" : "1457", "shared_name" : "22872 (interacts with) 122553", "name" : "22872 (interacts with) 122553", "interaction" : "interacts with", "SUID" : 63846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63842", "source" : "1589", "target" : "2521", "shared_name" : "22872 (interacts with) 83696", "name" : "22872 (interacts with) 83696", "interaction" : "interacts with", "SUID" : 63842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63838", "source" : "1589", "target" : "1717", "shared_name" : "22872 (interacts with) 51693", "name" : "22872 (interacts with) 51693", "interaction" : "interacts with", "SUID" : 63838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63834", "source" : "1589", "target" : "5749", "shared_name" : "22872 (interacts with) 10959", "name" : "22872 (interacts with) 10959", "interaction" : "interacts with", "SUID" : 63834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63830", "source" : "1589", "target" : "5649", "shared_name" : "22872 (interacts with) 5265", "name" : "22872 (interacts with) 5265", "interaction" : "interacts with", "SUID" : 63830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63826", "source" : "1589", "target" : "4557", "shared_name" : "22872 (interacts with) 57410", "name" : "22872 (interacts with) 57410", "interaction" : "interacts with", "SUID" : 63826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63822", "source" : "1589", "target" : "2473", "shared_name" : "22872 (interacts with) 10342", "name" : "22872 (interacts with) 10342", "interaction" : "interacts with", "SUID" : 63822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63966", "source" : "1585", "target" : "409", "shared_name" : "80347 (interacts with) 10558", "name" : "80347 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 63966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63962", "source" : "1585", "target" : "681", "shared_name" : "80347 (interacts with) 6646", "name" : "80347 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 63962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63958", "source" : "1585", "target" : "4941", "shared_name" : "80347 (interacts with) 6342", "name" : "80347 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 63958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63954", "source" : "1585", "target" : "3461", "shared_name" : "80347 (interacts with) 5538", "name" : "80347 (interacts with) 5538", "interaction" : "interacts with", "SUID" : 63954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63950", "source" : "1585", "target" : "3893", "shared_name" : "80347 (interacts with) 151056", "name" : "80347 (interacts with) 151056", "interaction" : "interacts with", "SUID" : 63950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63946", "source" : "1585", "target" : "2853", "shared_name" : "80347 (interacts with) 8398", "name" : "80347 (interacts with) 8398", "interaction" : "interacts with", "SUID" : 63946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63942", "source" : "1585", "target" : "5305", "shared_name" : "80347 (interacts with) 6901", "name" : "80347 (interacts with) 6901", "interaction" : "interacts with", "SUID" : 63942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63938", "source" : "1585", "target" : "2925", "shared_name" : "80347 (interacts with) 8802", "name" : "80347 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 63938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63934", "source" : "1585", "target" : "3425", "shared_name" : "80347 (interacts with) 8803", "name" : "80347 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 63934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63930", "source" : "1585", "target" : "385", "shared_name" : "80347 (interacts with) 5319", "name" : "80347 (interacts with) 5319", "interaction" : "interacts with", "SUID" : 63930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63926", "source" : "1585", "target" : "3177", "shared_name" : "80347 (interacts with) 5321", "name" : "80347 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 63926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63922", "source" : "1585", "target" : "1849", "shared_name" : "80347 (interacts with) 26275", "name" : "80347 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 63922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63918", "source" : "1585", "target" : "1673", "shared_name" : "80347 (interacts with) 138050", "name" : "80347 (interacts with) 138050", "interaction" : "interacts with", "SUID" : 63918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63914", "source" : "1585", "target" : "3421", "shared_name" : "80347 (interacts with) 4967", "name" : "80347 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 63914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63910", "source" : "1585", "target" : "1277", "shared_name" : "80347 (interacts with) 79143", "name" : "80347 (interacts with) 79143", "interaction" : "interacts with", "SUID" : 63910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63906", "source" : "1585", "target" : "801", "shared_name" : "80347 (interacts with) 1376", "name" : "80347 (interacts with) 1376", "interaction" : "interacts with", "SUID" : 63906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63902", "source" : "1585", "target" : "5909", "shared_name" : "80347 (interacts with) 1374", "name" : "80347 (interacts with) 1374", "interaction" : "interacts with", "SUID" : 63902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63898", "source" : "1585", "target" : "2965", "shared_name" : "80347 (interacts with) 22880", "name" : "80347 (interacts with) 22880", "interaction" : "interacts with", "SUID" : 63898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63894", "source" : "1585", "target" : "3793", "shared_name" : "80347 (interacts with) 28965", "name" : "80347 (interacts with) 28965", "interaction" : "interacts with", "SUID" : 63894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63890", "source" : "1585", "target" : "1489", "shared_name" : "80347 (interacts with) 1738", "name" : "80347 (interacts with) 1738", "interaction" : "interacts with", "SUID" : 63890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63886", "source" : "1585", "target" : "2897", "shared_name" : "80347 (interacts with) 1737", "name" : "80347 (interacts with) 1737", "interaction" : "interacts with", "SUID" : 63886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63882", "source" : "1585", "target" : "1133", "shared_name" : "80347 (interacts with) 3418", "name" : "80347 (interacts with) 3418", "interaction" : "interacts with", "SUID" : 63882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63878", "source" : "1585", "target" : "5017", "shared_name" : "80347 (interacts with) 3417", "name" : "80347 (interacts with) 3417", "interaction" : "interacts with", "SUID" : 63878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63874", "source" : "1585", "target" : "5001", "shared_name" : "80347 (interacts with) 132158", "name" : "80347 (interacts with) 132158", "interaction" : "interacts with", "SUID" : 63874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63870", "source" : "1585", "target" : "4045", "shared_name" : "80347 (interacts with) 29920", "name" : "80347 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 63870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63866", "source" : "1585", "target" : "3501", "shared_name" : "80347 (interacts with) 5831", "name" : "80347 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 63866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63862", "source" : "1585", "target" : "1341", "shared_name" : "80347 (interacts with) 5009", "name" : "80347 (interacts with) 5009", "interaction" : "interacts with", "SUID" : 63862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63858", "source" : "1585", "target" : "2365", "shared_name" : "80347 (interacts with) 2731", "name" : "80347 (interacts with) 2731", "interaction" : "interacts with", "SUID" : 63858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63854", "source" : "1585", "target" : "3681", "shared_name" : "80347 (interacts with) 1892", "name" : "80347 (interacts with) 1892", "interaction" : "interacts with", "SUID" : 63854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63850", "source" : "1585", "target" : "5089", "shared_name" : "80347 (interacts with) 1373", "name" : "80347 (interacts with) 1373", "interaction" : "interacts with", "SUID" : 63850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63986", "source" : "1581", "target" : "4869", "shared_name" : "7407 (interacts with) 92935", "name" : "7407 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 63986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63982", "source" : "1581", "target" : "3157", "shared_name" : "7407 (interacts with) 9255", "name" : "7407 (interacts with) 9255", "interaction" : "interacts with", "SUID" : 63982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63978", "source" : "1581", "target" : "1197", "shared_name" : "7407 (interacts with) 79587", "name" : "7407 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 63978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63974", "source" : "1581", "target" : "721", "shared_name" : "7407 (interacts with) 79731", "name" : "7407 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 63974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63970", "source" : "1581", "target" : "3529", "shared_name" : "7407 (interacts with) 7965", "name" : "7407 (interacts with) 7965", "interaction" : "interacts with", "SUID" : 63970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64042", "source" : "1577", "target" : "4869", "shared_name" : "51091 (interacts with) 92935", "name" : "51091 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 64042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64038", "source" : "1577", "target" : "693", "shared_name" : "51091 (interacts with) 7296", "name" : "51091 (interacts with) 7296", "interaction" : "interacts with", "SUID" : 64038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64034", "source" : "1577", "target" : "3649", "shared_name" : "51091 (interacts with) 51520", "name" : "51091 (interacts with) 51520", "interaction" : "interacts with", "SUID" : 64034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64030", "source" : "1577", "target" : "6001", "shared_name" : "51091 (interacts with) 55157", "name" : "51091 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 64030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64026", "source" : "1577", "target" : "4085", "shared_name" : "51091 (interacts with) 55699", "name" : "51091 (interacts with) 55699", "interaction" : "interacts with", "SUID" : 64026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64022", "source" : "1577", "target" : "5189", "shared_name" : "51091 (interacts with) 57176", "name" : "51091 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 64022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64018", "source" : "1577", "target" : "4621", "shared_name" : "51091 (interacts with) 57038", "name" : "51091 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 64018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64014", "source" : "1577", "target" : "4349", "shared_name" : "51091 (interacts with) 5859", "name" : "51091 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 64014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64010", "source" : "1577", "target" : "1129", "shared_name" : "51091 (interacts with) 57505", "name" : "51091 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 64010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64006", "source" : "1577", "target" : "1089", "shared_name" : "51091 (interacts with) 5917", "name" : "51091 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 64006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64002", "source" : "1577", "target" : "1581", "shared_name" : "51091 (interacts with) 7407", "name" : "51091 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 64002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63998", "source" : "1577", "target" : "721", "shared_name" : "51091 (interacts with) 79731", "name" : "51091 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 63998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63994", "source" : "1577", "target" : "1197", "shared_name" : "51091 (interacts with) 79587", "name" : "51091 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 63994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "63990", "source" : "1577", "target" : "4693", "shared_name" : "51091 (interacts with) 6301", "name" : "51091 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 63990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64166", "source" : "1573", "target" : "521", "shared_name" : "4723 (interacts with) 85476", "name" : "4723 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 64166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64162", "source" : "1573", "target" : "5025", "shared_name" : "4723 (interacts with) 6389", "name" : "4723 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 64162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64158", "source" : "1573", "target" : "1669", "shared_name" : "4723 (interacts with) 6390", "name" : "4723 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 64158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64154", "source" : "1573", "target" : "4757", "shared_name" : "4723 (interacts with) 9997", "name" : "4723 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 64154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64150", "source" : "1573", "target" : "4101", "shared_name" : "4723 (interacts with) 65260", "name" : "4723 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 64150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64146", "source" : "1573", "target" : "4897", "shared_name" : "4723 (interacts with) 55149", "name" : "4723 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 64146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64142", "source" : "1573", "target" : "1865", "shared_name" : "4723 (interacts with) 498", "name" : "4723 (interacts with) 498", "interaction" : "interacts with", "SUID" : 64142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64138", "source" : "1573", "target" : "5189", "shared_name" : "4723 (interacts with) 57176", "name" : "4723 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 64138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64134", "source" : "1573", "target" : "6001", "shared_name" : "4723 (interacts with) 55157", "name" : "4723 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 64134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64130", "source" : "1573", "target" : "5085", "shared_name" : "4723 (interacts with) 56652", "name" : "4723 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 64130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64126", "source" : "1573", "target" : "1561", "shared_name" : "4723 (interacts with) 51117", "name" : "4723 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 64126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64122", "source" : "1573", "target" : "6073", "shared_name" : "4723 (interacts with) 92170", "name" : "4723 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 64122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64118", "source" : "1573", "target" : "1197", "shared_name" : "4723 (interacts with) 79587", "name" : "4723 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 64118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64114", "source" : "1573", "target" : "477", "shared_name" : "4723 (interacts with) 51021", "name" : "4723 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 64114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64110", "source" : "1573", "target" : "1085", "shared_name" : "4723 (interacts with) 9377", "name" : "4723 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 64110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64106", "source" : "1573", "target" : "3705", "shared_name" : "4723 (interacts with) 87178", "name" : "4723 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 64106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64102", "source" : "1573", "target" : "5737", "shared_name" : "4723 (interacts with) 84340", "name" : "4723 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 64102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64098", "source" : "1573", "target" : "4253", "shared_name" : "4723 (interacts with) 84706", "name" : "4723 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 64098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64094", "source" : "1573", "target" : "5833", "shared_name" : "4723 (interacts with) 4726", "name" : "4723 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 64094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64090", "source" : "1573", "target" : "5821", "shared_name" : "4723 (interacts with) 4724", "name" : "4723 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 64090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64086", "source" : "1573", "target" : "4141", "shared_name" : "4723 (interacts with) 617", "name" : "4723 (interacts with) 617", "interaction" : "interacts with", "SUID" : 64086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64082", "source" : "1573", "target" : "2757", "shared_name" : "4723 (interacts with) 51079", "name" : "4723 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 64082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64078", "source" : "1573", "target" : "1337", "shared_name" : "4723 (interacts with) 55863", "name" : "4723 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 64078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64074", "source" : "1573", "target" : "5553", "shared_name" : "4723 (interacts with) 55967", "name" : "4723 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 64074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64070", "source" : "1573", "target" : "2285", "shared_name" : "4723 (interacts with) 51300", "name" : "4723 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 64070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64066", "source" : "1573", "target" : "3973", "shared_name" : "4723 (interacts with) 55572", "name" : "4723 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 64066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64062", "source" : "1573", "target" : "889", "shared_name" : "4723 (interacts with) 80224", "name" : "4723 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 64062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64058", "source" : "1573", "target" : "1869", "shared_name" : "4723 (interacts with) 4729", "name" : "4723 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 64058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64054", "source" : "1573", "target" : "2797", "shared_name" : "4723 (interacts with) 4728", "name" : "4723 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 64054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64050", "source" : "1573", "target" : "3501", "shared_name" : "4723 (interacts with) 5831", "name" : "4723 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 64050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64046", "source" : "1573", "target" : "4045", "shared_name" : "4723 (interacts with) 29920", "name" : "4723 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 64046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64206", "source" : "1569", "target" : "1157", "shared_name" : "1557 (interacts with) 6580", "name" : "1557 (interacts with) 6580", "interaction" : "interacts with", "SUID" : 64206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64202", "source" : "1569", "target" : "557", "shared_name" : "1557 (interacts with) 5730", "name" : "1557 (interacts with) 5730", "interaction" : "interacts with", "SUID" : 64202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64198", "source" : "1569", "target" : "5645", "shared_name" : "1557 (interacts with) 9420", "name" : "1557 (interacts with) 9420", "interaction" : "interacts with", "SUID" : 64198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64194", "source" : "1569", "target" : "321", "shared_name" : "1557 (interacts with) 1593", "name" : "1557 (interacts with) 1593", "interaction" : "interacts with", "SUID" : 64194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64190", "source" : "1569", "target" : "6153", "shared_name" : "1557 (interacts with) 9915", "name" : "1557 (interacts with) 9915", "interaction" : "interacts with", "SUID" : 64190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64186", "source" : "1569", "target" : "5033", "shared_name" : "1557 (interacts with) 1565", "name" : "1557 (interacts with) 1565", "interaction" : "interacts with", "SUID" : 64186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64182", "source" : "1569", "target" : "3893", "shared_name" : "1557 (interacts with) 151056", "name" : "1557 (interacts with) 151056", "interaction" : "interacts with", "SUID" : 64182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64178", "source" : "1569", "target" : "1625", "shared_name" : "1557 (interacts with) 1559", "name" : "1557 (interacts with) 1559", "interaction" : "interacts with", "SUID" : 64178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64174", "source" : "1569", "target" : "385", "shared_name" : "1557 (interacts with) 5319", "name" : "1557 (interacts with) 5319", "interaction" : "interacts with", "SUID" : 64174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64170", "source" : "1569", "target" : "1117", "shared_name" : "1557 (interacts with) 9927", "name" : "1557 (interacts with) 9927", "interaction" : "interacts with", "SUID" : 64170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64214", "source" : "1565", "target" : "869", "shared_name" : "64857 (interacts with) 23221", "name" : "64857 (interacts with) 23221", "interaction" : "interacts with", "SUID" : 64214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64210", "source" : "1565", "target" : "1069", "shared_name" : "64857 (interacts with) 5879", "name" : "64857 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 64210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64350", "source" : "1561", "target" : "1669", "shared_name" : "51117 (interacts with) 6390", "name" : "51117 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 64350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64346", "source" : "1561", "target" : "3545", "shared_name" : "51117 (interacts with) 708", "name" : "51117 (interacts with) 708", "interaction" : "interacts with", "SUID" : 64346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64342", "source" : "1561", "target" : "2297", "shared_name" : "51117 (interacts with) 55005", "name" : "51117 (interacts with) 55005", "interaction" : "interacts with", "SUID" : 64342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64338", "source" : "1561", "target" : "721", "shared_name" : "51117 (interacts with) 79731", "name" : "51117 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 64338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64334", "source" : "1561", "target" : "3705", "shared_name" : "51117 (interacts with) 87178", "name" : "51117 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 64334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64330", "source" : "1561", "target" : "2021", "shared_name" : "51117 (interacts with) 5428", "name" : "51117 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 64330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64326", "source" : "1561", "target" : "5189", "shared_name" : "51117 (interacts with) 57176", "name" : "51117 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 64326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64322", "source" : "1561", "target" : "1053", "shared_name" : "51117 (interacts with) 81689", "name" : "51117 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 64322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64318", "source" : "1561", "target" : "1129", "shared_name" : "51117 (interacts with) 57505", "name" : "51117 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 64318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64314", "source" : "1561", "target" : "889", "shared_name" : "51117 (interacts with) 80224", "name" : "51117 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 64314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64310", "source" : "1561", "target" : "5737", "shared_name" : "51117 (interacts with) 84340", "name" : "51117 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 64310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64306", "source" : "1561", "target" : "521", "shared_name" : "51117 (interacts with) 85476", "name" : "51117 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 64306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64302", "source" : "1561", "target" : "4897", "shared_name" : "51117 (interacts with) 55149", "name" : "51117 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 64302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64298", "source" : "1561", "target" : "1929", "shared_name" : "51117 (interacts with) 51218", "name" : "51117 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 64298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64294", "source" : "1561", "target" : "501", "shared_name" : "51117 (interacts with) 65993", "name" : "51117 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 64294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64290", "source" : "1561", "target" : "713", "shared_name" : "51117 (interacts with) 7019", "name" : "51117 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 64290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64286", "source" : "1561", "target" : "6073", "shared_name" : "51117 (interacts with) 92170", "name" : "51117 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 64286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64282", "source" : "1561", "target" : "4409", "shared_name" : "51117 (interacts with) 6341", "name" : "51117 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 64282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64278", "source" : "1561", "target" : "6001", "shared_name" : "51117 (interacts with) 55157", "name" : "51117 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 64278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64274", "source" : "1561", "target" : "2009", "shared_name" : "51117 (interacts with) 79133", "name" : "51117 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 64274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64270", "source" : "1561", "target" : "2105", "shared_name" : "51117 (interacts with) 56945", "name" : "51117 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 64270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64266", "source" : "1561", "target" : "5085", "shared_name" : "51117 (interacts with) 56652", "name" : "51117 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 64266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64262", "source" : "1561", "target" : "4621", "shared_name" : "51117 (interacts with) 57038", "name" : "51117 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 64262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64258", "source" : "1561", "target" : "4757", "shared_name" : "51117 (interacts with) 9997", "name" : "51117 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 64258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64254", "source" : "1561", "target" : "2285", "shared_name" : "51117 (interacts with) 51300", "name" : "51117 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 64254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64250", "source" : "1561", "target" : "4141", "shared_name" : "51117 (interacts with) 617", "name" : "51117 (interacts with) 617", "interaction" : "interacts with", "SUID" : 64250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64246", "source" : "1561", "target" : "4869", "shared_name" : "51117 (interacts with) 92935", "name" : "51117 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 64246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64242", "source" : "1561", "target" : "1197", "shared_name" : "51117 (interacts with) 79587", "name" : "51117 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 64242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64238", "source" : "1561", "target" : "2477", "shared_name" : "51117 (interacts with) 57107", "name" : "51117 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 64238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64234", "source" : "1561", "target" : "4101", "shared_name" : "51117 (interacts with) 65260", "name" : "51117 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 64234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64230", "source" : "1561", "target" : "3973", "shared_name" : "51117 (interacts with) 55572", "name" : "51117 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 64230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64226", "source" : "1561", "target" : "1785", "shared_name" : "51117 (interacts with) 667", "name" : "51117 (interacts with) 667", "interaction" : "interacts with", "SUID" : 64226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64222", "source" : "1561", "target" : "2149", "shared_name" : "51117 (interacts with) 80232", "name" : "51117 (interacts with) 80232", "interaction" : "interacts with", "SUID" : 64222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64218", "source" : "1561", "target" : "4189", "shared_name" : "51117 (interacts with) 2744", "name" : "51117 (interacts with) 2744", "interaction" : "interacts with", "SUID" : 64218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64358", "source" : "1557", "target" : "6145", "shared_name" : "55773 (interacts with) 93627", "name" : "55773 (interacts with) 93627", "interaction" : "interacts with", "SUID" : 64358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64354", "source" : "1557", "target" : "3221", "shared_name" : "55773 (interacts with) 284403", "name" : "55773 (interacts with) 284403", "interaction" : "interacts with", "SUID" : 64354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64394", "source" : "1553", "target" : "1581", "shared_name" : "410 (interacts with) 7407", "name" : "410 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 64394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64390", "source" : "1553", "target" : "5189", "shared_name" : "410 (interacts with) 57176", "name" : "410 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 64390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64386", "source" : "1553", "target" : "3025", "shared_name" : "410 (interacts with) 55627", "name" : "410 (interacts with) 55627", "interaction" : "interacts with", "SUID" : 64386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64382", "source" : "1553", "target" : "4641", "shared_name" : "410 (interacts with) 55331", "name" : "410 (interacts with) 55331", "interaction" : "interacts with", "SUID" : 64382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64378", "source" : "1553", "target" : "4193", "shared_name" : "410 (interacts with) 2720", "name" : "410 (interacts with) 2720", "interaction" : "interacts with", "SUID" : 64378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64374", "source" : "1553", "target" : "3645", "shared_name" : "410 (interacts with) 4758", "name" : "410 (interacts with) 4758", "interaction" : "interacts with", "SUID" : 64374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64370", "source" : "1553", "target" : "5753", "shared_name" : "410 (interacts with) 2581", "name" : "410 (interacts with) 2581", "interaction" : "interacts with", "SUID" : 64370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64366", "source" : "1553", "target" : "5221", "shared_name" : "410 (interacts with) 285362", "name" : "410 (interacts with) 285362", "interaction" : "interacts with", "SUID" : 64366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64362", "source" : "1553", "target" : "2549", "shared_name" : "410 (interacts with) 9319", "name" : "410 (interacts with) 9319", "interaction" : "interacts with", "SUID" : 64362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64418", "source" : "1549", "target" : "4437", "shared_name" : "7070 (interacts with) 84168", "name" : "7070 (interacts with) 84168", "interaction" : "interacts with", "SUID" : 64418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64414", "source" : "1549", "target" : "2181", "shared_name" : "7070 (interacts with) 94005", "name" : "7070 (interacts with) 94005", "interaction" : "interacts with", "SUID" : 64414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64410", "source" : "1549", "target" : "5241", "shared_name" : "7070 (interacts with) 128869", "name" : "7070 (interacts with) 128869", "interaction" : "interacts with", "SUID" : 64410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64406", "source" : "1549", "target" : "1117", "shared_name" : "7070 (interacts with) 9927", "name" : "7070 (interacts with) 9927", "interaction" : "interacts with", "SUID" : 64406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64402", "source" : "1549", "target" : "1917", "shared_name" : "7070 (interacts with) 51604", "name" : "7070 (interacts with) 51604", "interaction" : "interacts with", "SUID" : 64402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64398", "source" : "1549", "target" : "1593", "shared_name" : "7070 (interacts with) 8733", "name" : "7070 (interacts with) 8733", "interaction" : "interacts with", "SUID" : 64398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64470", "source" : "1545", "target" : "1025", "shared_name" : "5277 (interacts with) 80055", "name" : "5277 (interacts with) 80055", "interaction" : "interacts with", "SUID" : 64470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64466", "source" : "1545", "target" : "1797", "shared_name" : "5277 (interacts with) 85365", "name" : "5277 (interacts with) 85365", "interaction" : "interacts with", "SUID" : 64466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64462", "source" : "1545", "target" : "289", "shared_name" : "5277 (interacts with) 56052", "name" : "5277 (interacts with) 56052", "interaction" : "interacts with", "SUID" : 64462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64458", "source" : "1545", "target" : "5477", "shared_name" : "5277 (interacts with) 54872", "name" : "5277 (interacts with) 54872", "interaction" : "interacts with", "SUID" : 64458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64454", "source" : "1545", "target" : "1697", "shared_name" : "5277 (interacts with) 8818", "name" : "5277 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 64454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64450", "source" : "1545", "target" : "2181", "shared_name" : "5277 (interacts with) 94005", "name" : "5277 (interacts with) 94005", "interaction" : "interacts with", "SUID" : 64450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64446", "source" : "1545", "target" : "1593", "shared_name" : "5277 (interacts with) 8733", "name" : "5277 (interacts with) 8733", "interaction" : "interacts with", "SUID" : 64446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64442", "source" : "1545", "target" : "1905", "shared_name" : "5277 (interacts with) 9488", "name" : "5277 (interacts with) 9488", "interaction" : "interacts with", "SUID" : 64442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64438", "source" : "1545", "target" : "985", "shared_name" : "5277 (interacts with) 9091", "name" : "5277 (interacts with) 9091", "interaction" : "interacts with", "SUID" : 64438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64434", "source" : "1545", "target" : "4481", "shared_name" : "5277 (interacts with) 55624", "name" : "5277 (interacts with) 55624", "interaction" : "interacts with", "SUID" : 64434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64430", "source" : "1545", "target" : "6133", "shared_name" : "5277 (interacts with) 54658", "name" : "5277 (interacts with) 54658", "interaction" : "interacts with", "SUID" : 64430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64426", "source" : "1545", "target" : "1733", "shared_name" : "5277 (interacts with) 6305", "name" : "5277 (interacts with) 6305", "interaction" : "interacts with", "SUID" : 64426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64422", "source" : "1545", "target" : "3705", "shared_name" : "5277 (interacts with) 87178", "name" : "5277 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 64422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64502", "source" : "1541", "target" : "2733", "shared_name" : "958 (interacts with) 5718", "name" : "958 (interacts with) 5718", "interaction" : "interacts with", "SUID" : 64502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64498", "source" : "1541", "target" : "5961", "shared_name" : "958 (interacts with) 10682", "name" : "958 (interacts with) 10682", "interaction" : "interacts with", "SUID" : 64498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64494", "source" : "1541", "target" : "3313", "shared_name" : "958 (interacts with) 84314", "name" : "958 (interacts with) 84314", "interaction" : "interacts with", "SUID" : 64494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64490", "source" : "1541", "target" : "1177", "shared_name" : "958 (interacts with) 9928", "name" : "958 (interacts with) 9928", "interaction" : "interacts with", "SUID" : 64490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64486", "source" : "1541", "target" : "4477", "shared_name" : "958 (interacts with) 5354", "name" : "958 (interacts with) 5354", "interaction" : "interacts with", "SUID" : 64486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64482", "source" : "1541", "target" : "4853", "shared_name" : "958 (interacts with) 545", "name" : "958 (interacts with) 545", "interaction" : "interacts with", "SUID" : 64482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64478", "source" : "1541", "target" : "2481", "shared_name" : "958 (interacts with) 2475", "name" : "958 (interacts with) 2475", "interaction" : "interacts with", "SUID" : 64478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64474", "source" : "1541", "target" : "4797", "shared_name" : "958 (interacts with) 10735", "name" : "958 (interacts with) 10735", "interaction" : "interacts with", "SUID" : 64474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64606", "source" : "1529", "target" : "4949", "shared_name" : "3458 (interacts with) 5970", "name" : "3458 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 64606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64602", "source" : "1529", "target" : "3017", "shared_name" : "3458 (interacts with) 4790", "name" : "3458 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 64602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64598", "source" : "1529", "target" : "3305", "shared_name" : "3458 (interacts with) 7040", "name" : "3458 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 64598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64594", "source" : "1529", "target" : "2153", "shared_name" : "3458 (interacts with) 7042", "name" : "3458 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 64594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64590", "source" : "1529", "target" : "4065", "shared_name" : "3458 (interacts with) 7124", "name" : "3458 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 64590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64586", "source" : "1529", "target" : "3409", "shared_name" : "3458 (interacts with) 7043", "name" : "3458 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 64586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64582", "source" : "1529", "target" : "981", "shared_name" : "3458 (interacts with) 7157", "name" : "3458 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 64582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64578", "source" : "1529", "target" : "805", "shared_name" : "3458 (interacts with) 6772", "name" : "3458 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 64578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64574", "source" : "1529", "target" : "4769", "shared_name" : "3458 (interacts with) 7132", "name" : "3458 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 64574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64570", "source" : "1529", "target" : "4533", "shared_name" : "3458 (interacts with) 4089", "name" : "3458 (interacts with) 4089", "interaction" : "interacts with", "SUID" : 64570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64566", "source" : "1529", "target" : "3173", "shared_name" : "3458 (interacts with) 3558", "name" : "3458 (interacts with) 3558", "interaction" : "interacts with", "SUID" : 64566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64562", "source" : "1529", "target" : "569", "shared_name" : "3458 (interacts with) 7048", "name" : "3458 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 64562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64558", "source" : "1529", "target" : "2333", "shared_name" : "3458 (interacts with) 3559", "name" : "3458 (interacts with) 3559", "interaction" : "interacts with", "SUID" : 64558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64554", "source" : "1529", "target" : "4681", "shared_name" : "3458 (interacts with) 4843", "name" : "3458 (interacts with) 4843", "interaction" : "interacts with", "SUID" : 64554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64550", "source" : "1529", "target" : "6169", "shared_name" : "3458 (interacts with) 4088", "name" : "3458 (interacts with) 4088", "interaction" : "interacts with", "SUID" : 64550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64546", "source" : "1529", "target" : "2661", "shared_name" : "3458 (interacts with) 3606", "name" : "3458 (interacts with) 3606", "interaction" : "interacts with", "SUID" : 64546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64542", "source" : "1529", "target" : "1541", "shared_name" : "3458 (interacts with) 958", "name" : "3458 (interacts with) 958", "interaction" : "interacts with", "SUID" : 64542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64538", "source" : "1529", "target" : "3993", "shared_name" : "3458 (interacts with) 3683", "name" : "3458 (interacts with) 3683", "interaction" : "interacts with", "SUID" : 64538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64534", "source" : "1529", "target" : "6013", "shared_name" : "3458 (interacts with) 3574", "name" : "3458 (interacts with) 3574", "interaction" : "interacts with", "SUID" : 64534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64530", "source" : "1529", "target" : "3553", "shared_name" : "3458 (interacts with) 3592", "name" : "3458 (interacts with) 3592", "interaction" : "interacts with", "SUID" : 64530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64526", "source" : "1529", "target" : "3717", "shared_name" : "3458 (interacts with) 3593", "name" : "3458 (interacts with) 3593", "interaction" : "interacts with", "SUID" : 64526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64522", "source" : "1529", "target" : "5297", "shared_name" : "3458 (interacts with) 6775", "name" : "3458 (interacts with) 6775", "interaction" : "interacts with", "SUID" : 64522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64518", "source" : "1529", "target" : "3153", "shared_name" : "3458 (interacts with) 3684", "name" : "3458 (interacts with) 3684", "interaction" : "interacts with", "SUID" : 64518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64514", "source" : "1529", "target" : "737", "shared_name" : "3458 (interacts with) 2643", "name" : "3458 (interacts with) 2643", "interaction" : "interacts with", "SUID" : 64514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64510", "source" : "1529", "target" : "1701", "shared_name" : "3458 (interacts with) 5777", "name" : "3458 (interacts with) 5777", "interaction" : "interacts with", "SUID" : 64510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64506", "source" : "1529", "target" : "5729", "shared_name" : "3458 (interacts with) 861", "name" : "3458 (interacts with) 861", "interaction" : "interacts with", "SUID" : 64506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64806", "source" : "1525", "target" : "6073", "shared_name" : "3295 (interacts with) 92170", "name" : "3295 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 64806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64802", "source" : "1525", "target" : "4445", "shared_name" : "3295 (interacts with) 80208", "name" : "3295 (interacts with) 80208", "interaction" : "interacts with", "SUID" : 64802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64798", "source" : "1525", "target" : "2925", "shared_name" : "3295 (interacts with) 8802", "name" : "3295 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 64798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64794", "source" : "1525", "target" : "4745", "shared_name" : "3295 (interacts with) 35", "name" : "3295 (interacts with) 35", "interaction" : "interacts with", "SUID" : 64794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64790", "source" : "1525", "target" : "973", "shared_name" : "3295 (interacts with) 5595", "name" : "3295 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 64790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64786", "source" : "1525", "target" : "5081", "shared_name" : "3295 (interacts with) 5594", "name" : "3295 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 64786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64782", "source" : "1525", "target" : "5225", "shared_name" : "3295 (interacts with) 5290", "name" : "3295 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 64782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64778", "source" : "1525", "target" : "4065", "shared_name" : "3295 (interacts with) 7124", "name" : "3295 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 64778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64774", "source" : "1525", "target" : "4857", "shared_name" : "3295 (interacts with) 5573", "name" : "3295 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 64774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64770", "source" : "1525", "target" : "1133", "shared_name" : "3295 (interacts with) 3418", "name" : "3295 (interacts with) 3418", "interaction" : "interacts with", "SUID" : 64770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64766", "source" : "1525", "target" : "4213", "shared_name" : "3295 (interacts with) 5295", "name" : "3295 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 64766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64762", "source" : "1525", "target" : "4949", "shared_name" : "3295 (interacts with) 5970", "name" : "3295 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 64762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64758", "source" : "1525", "target" : "4589", "shared_name" : "3295 (interacts with) 8431", "name" : "3295 (interacts with) 8431", "interaction" : "interacts with", "SUID" : 64758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64754", "source" : "1525", "target" : "5321", "shared_name" : "3295 (interacts with) 5743", "name" : "3295 (interacts with) 5743", "interaction" : "interacts with", "SUID" : 64754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64750", "source" : "1525", "target" : "4097", "shared_name" : "3295 (interacts with) 9611", "name" : "3295 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 64750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64746", "source" : "1525", "target" : "2957", "shared_name" : "3295 (interacts with) 5465", "name" : "3295 (interacts with) 5465", "interaction" : "interacts with", "SUID" : 64746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64742", "source" : "1525", "target" : "1969", "shared_name" : "3295 (interacts with) 4598", "name" : "3295 (interacts with) 4598", "interaction" : "interacts with", "SUID" : 64742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64738", "source" : "1525", "target" : "845", "shared_name" : "3295 (interacts with) 4358", "name" : "3295 (interacts with) 4358", "interaction" : "interacts with", "SUID" : 64738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64734", "source" : "1525", "target" : "517", "shared_name" : "3295 (interacts with) 5052", "name" : "3295 (interacts with) 5052", "interaction" : "interacts with", "SUID" : 64734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64730", "source" : "1525", "target" : "4681", "shared_name" : "3295 (interacts with) 4843", "name" : "3295 (interacts with) 4843", "interaction" : "interacts with", "SUID" : 64730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64726", "source" : "1525", "target" : "6149", "shared_name" : "3295 (interacts with) 335", "name" : "3295 (interacts with) 335", "interaction" : "interacts with", "SUID" : 64726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64722", "source" : "1525", "target" : "3333", "shared_name" : "3295 (interacts with) 9409", "name" : "3295 (interacts with) 9409", "interaction" : "interacts with", "SUID" : 64722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64718", "source" : "1525", "target" : "5545", "shared_name" : "3295 (interacts with) 5195", "name" : "3295 (interacts with) 5195", "interaction" : "interacts with", "SUID" : 64718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64714", "source" : "1525", "target" : "1977", "shared_name" : "3295 (interacts with) 5191", "name" : "3295 (interacts with) 5191", "interaction" : "interacts with", "SUID" : 64714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64710", "source" : "1525", "target" : "5873", "shared_name" : "3295 (interacts with) 5827", "name" : "3295 (interacts with) 5827", "interaction" : "interacts with", "SUID" : 64710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64706", "source" : "1525", "target" : "196", "shared_name" : "3295 (interacts with) 84188", "name" : "3295 (interacts with) 84188", "interaction" : "interacts with", "SUID" : 64706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64702", "source" : "1525", "target" : "3341", "shared_name" : "3295 (interacts with) 8504", "name" : "3295 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 64702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64698", "source" : "1525", "target" : "4301", "shared_name" : "3295 (interacts with) 8799", "name" : "3295 (interacts with) 8799", "interaction" : "interacts with", "SUID" : 64698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64694", "source" : "1525", "target" : "2369", "shared_name" : "3295 (interacts with) 51741", "name" : "3295 (interacts with) 51741", "interaction" : "interacts with", "SUID" : 64694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64690", "source" : "1525", "target" : "1953", "shared_name" : "3295 (interacts with) 5194", "name" : "3295 (interacts with) 5194", "interaction" : "interacts with", "SUID" : 64690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64686", "source" : "1525", "target" : "365", "shared_name" : "3295 (interacts with) 64834", "name" : "3295 (interacts with) 64834", "interaction" : "interacts with", "SUID" : 64686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64682", "source" : "1525", "target" : "5677", "shared_name" : "3295 (interacts with) 5189", "name" : "3295 (interacts with) 5189", "interaction" : "interacts with", "SUID" : 64682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64678", "source" : "1525", "target" : "3329", "shared_name" : "3295 (interacts with) 5824", "name" : "3295 (interacts with) 5824", "interaction" : "interacts with", "SUID" : 64678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64674", "source" : "1525", "target" : "4297", "shared_name" : "3295 (interacts with) 5193", "name" : "3295 (interacts with) 5193", "interaction" : "interacts with", "SUID" : 64674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64670", "source" : "1525", "target" : "2325", "shared_name" : "3295 (interacts with) 55670", "name" : "3295 (interacts with) 55670", "interaction" : "interacts with", "SUID" : 64670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64666", "source" : "1525", "target" : "5865", "shared_name" : "3295 (interacts with) 5192", "name" : "3295 (interacts with) 5192", "interaction" : "interacts with", "SUID" : 64666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64662", "source" : "1525", "target" : "5237", "shared_name" : "3295 (interacts with) 5830", "name" : "3295 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 64662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64658", "source" : "1525", "target" : "5205", "shared_name" : "3295 (interacts with) 5828", "name" : "3295 (interacts with) 5828", "interaction" : "interacts with", "SUID" : 64658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64654", "source" : "1525", "target" : "5645", "shared_name" : "3295 (interacts with) 9420", "name" : "3295 (interacts with) 9420", "interaction" : "interacts with", "SUID" : 64654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64650", "source" : "1525", "target" : "5133", "shared_name" : "3295 (interacts with) 51", "name" : "3295 (interacts with) 51", "interaction" : "interacts with", "SUID" : 64650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64646", "source" : "1525", "target" : "4505", "shared_name" : "3295 (interacts with) 5190", "name" : "3295 (interacts with) 5190", "interaction" : "interacts with", "SUID" : 64646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64642", "source" : "1525", "target" : "1721", "shared_name" : "3295 (interacts with) 51807", "name" : "3295 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 64642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64638", "source" : "1525", "target" : "4941", "shared_name" : "3295 (interacts with) 6342", "name" : "3295 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 64638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64634", "source" : "1525", "target" : "5165", "shared_name" : "3295 (interacts with) 3704", "name" : "3295 (interacts with) 3704", "interaction" : "interacts with", "SUID" : 64634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64630", "source" : "1525", "target" : "5017", "shared_name" : "3295 (interacts with) 3417", "name" : "3295 (interacts with) 3417", "interaction" : "interacts with", "SUID" : 64630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64626", "source" : "1525", "target" : "3013", "shared_name" : "3295 (interacts with) 50814", "name" : "3295 (interacts with) 50814", "interaction" : "interacts with", "SUID" : 64626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64622", "source" : "1525", "target" : "4273", "shared_name" : "3295 (interacts with) 4548", "name" : "3295 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 64622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64618", "source" : "1525", "target" : "2045", "shared_name" : "3295 (interacts with) 51102", "name" : "3295 (interacts with) 51102", "interaction" : "interacts with", "SUID" : 64618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64614", "source" : "1525", "target" : "2353", "shared_name" : "3295 (interacts with) 5264", "name" : "3295 (interacts with) 5264", "interaction" : "interacts with", "SUID" : 64614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64610", "source" : "1525", "target" : "4289", "shared_name" : "3295 (interacts with) 90678", "name" : "3295 (interacts with) 90678", "interaction" : "interacts with", "SUID" : 64610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64850", "source" : "1521", "target" : "1681", "shared_name" : "84879 (interacts with) 9990", "name" : "84879 (interacts with) 9990", "interaction" : "interacts with", "SUID" : 64850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64846", "source" : "1521", "target" : "3845", "shared_name" : "84879 (interacts with) 10479", "name" : "84879 (interacts with) 10479", "interaction" : "interacts with", "SUID" : 64846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64842", "source" : "1521", "target" : "277", "shared_name" : "84879 (interacts with) 285175", "name" : "84879 (interacts with) 285175", "interaction" : "interacts with", "SUID" : 64842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64838", "source" : "1521", "target" : "689", "shared_name" : "84879 (interacts with) 6329", "name" : "84879 (interacts with) 6329", "interaction" : "interacts with", "SUID" : 64838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64834", "source" : "1521", "target" : "5229", "shared_name" : "84879 (interacts with) 6335", "name" : "84879 (interacts with) 6335", "interaction" : "interacts with", "SUID" : 64834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64830", "source" : "1521", "target" : "4841", "shared_name" : "84879 (interacts with) 6334", "name" : "84879 (interacts with) 6334", "interaction" : "interacts with", "SUID" : 64830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64826", "source" : "1521", "target" : "381", "shared_name" : "84879 (interacts with) 6323", "name" : "84879 (interacts with) 6323", "interaction" : "interacts with", "SUID" : 64826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64822", "source" : "1521", "target" : "373", "shared_name" : "84879 (interacts with) 6328", "name" : "84879 (interacts with) 6328", "interaction" : "interacts with", "SUID" : 64822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64818", "source" : "1521", "target" : "377", "shared_name" : "84879 (interacts with) 6326", "name" : "84879 (interacts with) 6326", "interaction" : "interacts with", "SUID" : 64818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64814", "source" : "1521", "target" : "4845", "shared_name" : "84879 (interacts with) 259232", "name" : "84879 (interacts with) 259232", "interaction" : "interacts with", "SUID" : 64814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64810", "source" : "1521", "target" : "2977", "shared_name" : "84879 (interacts with) 4747", "name" : "84879 (interacts with) 4747", "interaction" : "interacts with", "SUID" : 64810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64854", "source" : "1517", "target" : "3853", "shared_name" : "51776 (interacts with) 6786", "name" : "51776 (interacts with) 6786", "interaction" : "interacts with", "SUID" : 64854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64866", "source" : "1509", "target" : "2593", "shared_name" : "63976 (interacts with) 64324", "name" : "63976 (interacts with) 64324", "interaction" : "interacts with", "SUID" : 64866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64862", "source" : "1509", "target" : "3709", "shared_name" : "63976 (interacts with) 9757", "name" : "63976 (interacts with) 9757", "interaction" : "interacts with", "SUID" : 64862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64858", "source" : "1509", "target" : "5437", "shared_name" : "63976 (interacts with) 10733", "name" : "63976 (interacts with) 10733", "interaction" : "interacts with", "SUID" : 64858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64906", "source" : "1505", "target" : "2553", "shared_name" : "26353 (interacts with) 815", "name" : "26353 (interacts with) 815", "interaction" : "interacts with", "SUID" : 64906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64902", "source" : "1505", "target" : "2309", "shared_name" : "26353 (interacts with) 3316", "name" : "26353 (interacts with) 3316", "interaction" : "interacts with", "SUID" : 64902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64898", "source" : "1505", "target" : "5681", "shared_name" : "26353 (interacts with) 3315", "name" : "26353 (interacts with) 3315", "interaction" : "interacts with", "SUID" : 64898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64894", "source" : "1505", "target" : "433", "shared_name" : "26353 (interacts with) 8988", "name" : "26353 (interacts with) 8988", "interaction" : "interacts with", "SUID" : 64894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64890", "source" : "1505", "target" : "5597", "shared_name" : "26353 (interacts with) 22934", "name" : "26353 (interacts with) 22934", "interaction" : "interacts with", "SUID" : 64890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64886", "source" : "1505", "target" : "773", "shared_name" : "26353 (interacts with) 29072", "name" : "26353 (interacts with) 29072", "interaction" : "interacts with", "SUID" : 64886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64882", "source" : "1505", "target" : "1877", "shared_name" : "26353 (interacts with) 9531", "name" : "26353 (interacts with) 9531", "interaction" : "interacts with", "SUID" : 64882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64878", "source" : "1505", "target" : "5325", "shared_name" : "26353 (interacts with) 140767", "name" : "26353 (interacts with) 140767", "interaction" : "interacts with", "SUID" : 64878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64874", "source" : "1505", "target" : "5981", "shared_name" : "26353 (interacts with) 1917", "name" : "26353 (interacts with) 1917", "interaction" : "interacts with", "SUID" : 64874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64870", "source" : "1505", "target" : "2417", "shared_name" : "26353 (interacts with) 675", "name" : "26353 (interacts with) 675", "interaction" : "interacts with", "SUID" : 64870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64938", "source" : "1501", "target" : "4001", "shared_name" : "55870 (interacts with) 79709", "name" : "55870 (interacts with) 79709", "interaction" : "interacts with", "SUID" : 64938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64934", "source" : "1501", "target" : "1057", "shared_name" : "55870 (interacts with) 7862", "name" : "55870 (interacts with) 7862", "interaction" : "interacts with", "SUID" : 64934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64930", "source" : "1501", "target" : "2281", "shared_name" : "55870 (interacts with) 79823", "name" : "55870 (interacts with) 79823", "interaction" : "interacts with", "SUID" : 64930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64926", "source" : "1501", "target" : "3769", "shared_name" : "55870 (interacts with) 8085", "name" : "55870 (interacts with) 8085", "interaction" : "interacts with", "SUID" : 64926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64922", "source" : "1501", "target" : "1509", "shared_name" : "55870 (interacts with) 63976", "name" : "55870 (interacts with) 63976", "interaction" : "interacts with", "SUID" : 64922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64918", "source" : "1501", "target" : "1393", "shared_name" : "55870 (interacts with) 55904", "name" : "55870 (interacts with) 55904", "interaction" : "interacts with", "SUID" : 64918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64914", "source" : "1501", "target" : "2593", "shared_name" : "55870 (interacts with) 64324", "name" : "55870 (interacts with) 64324", "interaction" : "interacts with", "SUID" : 64914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64910", "source" : "1501", "target" : "3709", "shared_name" : "55870 (interacts with) 9757", "name" : "55870 (interacts with) 9757", "interaction" : "interacts with", "SUID" : 64910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64954", "source" : "1497", "target" : "2137", "shared_name" : "3912 (interacts with) 3918", "name" : "3912 (interacts with) 3918", "interaction" : "interacts with", "SUID" : 64954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64950", "source" : "1497", "target" : "2093", "shared_name" : "3912 (interacts with) 4780", "name" : "3912 (interacts with) 4780", "interaction" : "interacts with", "SUID" : 64950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64946", "source" : "1497", "target" : "5965", "shared_name" : "3912 (interacts with) 596", "name" : "3912 (interacts with) 596", "interaction" : "interacts with", "SUID" : 64946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64942", "source" : "1497", "target" : "3805", "shared_name" : "3912 (interacts with) 5621", "name" : "3912 (interacts with) 5621", "interaction" : "interacts with", "SUID" : 64942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64990", "source" : "1493", "target" : "2793", "shared_name" : "7428 (interacts with) 8894", "name" : "7428 (interacts with) 8894", "interaction" : "interacts with", "SUID" : 64990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64986", "source" : "1493", "target" : "4149", "shared_name" : "7428 (interacts with) 8893", "name" : "7428 (interacts with) 8893", "interaction" : "interacts with", "SUID" : 64986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64982", "source" : "1493", "target" : "841", "shared_name" : "7428 (interacts with) 8890", "name" : "7428 (interacts with) 8890", "interaction" : "interacts with", "SUID" : 64982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64978", "source" : "1493", "target" : "4837", "shared_name" : "7428 (interacts with) 8891", "name" : "7428 (interacts with) 8891", "interaction" : "interacts with", "SUID" : 64978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64974", "source" : "1493", "target" : "837", "shared_name" : "7428 (interacts with) 8892", "name" : "7428 (interacts with) 8892", "interaction" : "interacts with", "SUID" : 64974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64970", "source" : "1493", "target" : "1297", "shared_name" : "7428 (interacts with) 6678", "name" : "7428 (interacts with) 6678", "interaction" : "interacts with", "SUID" : 64970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64966", "source" : "1493", "target" : "1401", "shared_name" : "7428 (interacts with) 1118", "name" : "7428 (interacts with) 1118", "interaction" : "interacts with", "SUID" : 64966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64962", "source" : "1493", "target" : "5577", "shared_name" : "7428 (interacts with) 3091", "name" : "7428 (interacts with) 3091", "interaction" : "interacts with", "SUID" : 64962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64958", "source" : "1493", "target" : "945", "shared_name" : "7428 (interacts with) 2316", "name" : "7428 (interacts with) 2316", "interaction" : "interacts with", "SUID" : 64958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65358", "source" : "1489", "target" : "5845", "shared_name" : "1738 (interacts with) 4714", "name" : "1738 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 65358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65354", "source" : "1489", "target" : "2989", "shared_name" : "1738 (interacts with) 224", "name" : "1738 (interacts with) 224", "interaction" : "interacts with", "SUID" : 65354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65350", "source" : "1489", "target" : "5565", "shared_name" : "1738 (interacts with) 217", "name" : "1738 (interacts with) 217", "interaction" : "interacts with", "SUID" : 65350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65346", "source" : "1489", "target" : "2753", "shared_name" : "1738 (interacts with) 4720", "name" : "1738 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 65346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65342", "source" : "1489", "target" : "2801", "shared_name" : "1738 (interacts with) 4700", "name" : "1738 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 65342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65338", "source" : "1489", "target" : "889", "shared_name" : "1738 (interacts with) 80224", "name" : "1738 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 65338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65334", "source" : "1489", "target" : "349", "shared_name" : "1738 (interacts with) 60386", "name" : "1738 (interacts with) 60386", "interaction" : "interacts with", "SUID" : 65334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65330", "source" : "1489", "target" : "1189", "shared_name" : "1738 (interacts with) 7915", "name" : "1738 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 65330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65326", "source" : "1489", "target" : "5597", "shared_name" : "1738 (interacts with) 22934", "name" : "1738 (interacts with) 22934", "interaction" : "interacts with", "SUID" : 65326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65322", "source" : "1489", "target" : "1929", "shared_name" : "1738 (interacts with) 51218", "name" : "1738 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 65322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65318", "source" : "1489", "target" : "2645", "shared_name" : "1738 (interacts with) 476", "name" : "1738 (interacts with) 476", "interaction" : "interacts with", "SUID" : 65318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65314", "source" : "1489", "target" : "2621", "shared_name" : "1738 (interacts with) 477", "name" : "1738 (interacts with) 477", "interaction" : "interacts with", "SUID" : 65314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65310", "source" : "1489", "target" : "4793", "shared_name" : "1738 (interacts with) 478", "name" : "1738 (interacts with) 478", "interaction" : "interacts with", "SUID" : 65310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65306", "source" : "1489", "target" : "4017", "shared_name" : "1738 (interacts with) 4719", "name" : "1738 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 65306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65302", "source" : "1489", "target" : "4717", "shared_name" : "1738 (interacts with) 51204", "name" : "1738 (interacts with) 51204", "interaction" : "interacts with", "SUID" : 65302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65298", "source" : "1489", "target" : "1869", "shared_name" : "1738 (interacts with) 4729", "name" : "1738 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 65298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65294", "source" : "1489", "target" : "2457", "shared_name" : "1738 (interacts with) 4143", "name" : "1738 (interacts with) 4143", "interaction" : "interacts with", "SUID" : 65294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65290", "source" : "1489", "target" : "737", "shared_name" : "1738 (interacts with) 2643", "name" : "1738 (interacts with) 2643", "interaction" : "interacts with", "SUID" : 65290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65286", "source" : "1489", "target" : "1461", "shared_name" : "1738 (interacts with) 5832", "name" : "1738 (interacts with) 5832", "interaction" : "interacts with", "SUID" : 65286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65282", "source" : "1489", "target" : "4141", "shared_name" : "1738 (interacts with) 617", "name" : "1738 (interacts with) 617", "interaction" : "interacts with", "SUID" : 65282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65278", "source" : "1489", "target" : "5593", "shared_name" : "1738 (interacts with) 875", "name" : "1738 (interacts with) 875", "interaction" : "interacts with", "SUID" : 65278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65274", "source" : "1489", "target" : "3445", "shared_name" : "1738 (interacts with) 5091", "name" : "1738 (interacts with) 5091", "interaction" : "interacts with", "SUID" : 65274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65270", "source" : "1489", "target" : "5825", "shared_name" : "1738 (interacts with) 4594", "name" : "1738 (interacts with) 4594", "interaction" : "interacts with", "SUID" : 65270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65266", "source" : "1489", "target" : "1301", "shared_name" : "1738 (interacts with) 5095", "name" : "1738 (interacts with) 5095", "interaction" : "interacts with", "SUID" : 65266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65262", "source" : "1489", "target" : "1021", "shared_name" : "1738 (interacts with) 5096", "name" : "1738 (interacts with) 5096", "interaction" : "interacts with", "SUID" : 65262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65258", "source" : "1489", "target" : "4833", "shared_name" : "1738 (interacts with) 2593", "name" : "1738 (interacts with) 2593", "interaction" : "interacts with", "SUID" : 65258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65254", "source" : "1489", "target" : "4185", "shared_name" : "1738 (interacts with) 29968", "name" : "1738 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 65254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65250", "source" : "1489", "target" : "429", "shared_name" : "1738 (interacts with) 1757", "name" : "1738 (interacts with) 1757", "interaction" : "interacts with", "SUID" : 65250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65246", "source" : "1489", "target" : "4749", "shared_name" : "1738 (interacts with) 3028", "name" : "1738 (interacts with) 3028", "interaction" : "interacts with", "SUID" : 65246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65242", "source" : "1489", "target" : "5941", "shared_name" : "1738 (interacts with) 5914", "name" : "1738 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 65242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65238", "source" : "1489", "target" : "3825", "shared_name" : "1738 (interacts with) 5915", "name" : "1738 (interacts with) 5915", "interaction" : "interacts with", "SUID" : 65238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65234", "source" : "1489", "target" : "4617", "shared_name" : "1738 (interacts with) 26227", "name" : "1738 (interacts with) 26227", "interaction" : "interacts with", "SUID" : 65234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65230", "source" : "1489", "target" : "2089", "shared_name" : "1738 (interacts with) 3939", "name" : "1738 (interacts with) 3939", "interaction" : "interacts with", "SUID" : 65230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65226", "source" : "1489", "target" : "1289", "shared_name" : "1738 (interacts with) 6392", "name" : "1738 (interacts with) 6392", "interaction" : "interacts with", "SUID" : 65226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65222", "source" : "1489", "target" : "3485", "shared_name" : "1738 (interacts with) 54704", "name" : "1738 (interacts with) 54704", "interaction" : "interacts with", "SUID" : 65222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65218", "source" : "1489", "target" : "3537", "shared_name" : "1738 (interacts with) 501", "name" : "1738 (interacts with) 501", "interaction" : "interacts with", "SUID" : 65218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65214", "source" : "1489", "target" : "3541", "shared_name" : "1738 (interacts with) 4191", "name" : "1738 (interacts with) 4191", "interaction" : "interacts with", "SUID" : 65214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65210", "source" : "1489", "target" : "1133", "shared_name" : "1738 (interacts with) 3418", "name" : "1738 (interacts with) 3418", "interaction" : "interacts with", "SUID" : 65210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65206", "source" : "1489", "target" : "5025", "shared_name" : "1738 (interacts with) 6389", "name" : "1738 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 65206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65202", "source" : "1489", "target" : "3337", "shared_name" : "1738 (interacts with) 2639", "name" : "1738 (interacts with) 2639", "interaction" : "interacts with", "SUID" : 65202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65198", "source" : "1489", "target" : "1669", "shared_name" : "1738 (interacts with) 6390", "name" : "1738 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 65198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65194", "source" : "1489", "target" : "5213", "shared_name" : "1738 (interacts with) 2271", "name" : "1738 (interacts with) 2271", "interaction" : "interacts with", "SUID" : 65194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65190", "source" : "1489", "target" : "2925", "shared_name" : "1738 (interacts with) 8802", "name" : "1738 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 65190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65186", "source" : "1489", "target" : "3425", "shared_name" : "1738 (interacts with) 8803", "name" : "1738 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 65186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65182", "source" : "1489", "target" : "1849", "shared_name" : "1738 (interacts with) 26275", "name" : "1738 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 65182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65178", "source" : "1489", "target" : "397", "shared_name" : "1738 (interacts with) 50", "name" : "1738 (interacts with) 50", "interaction" : "interacts with", "SUID" : 65178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65174", "source" : "1489", "target" : "2025", "shared_name" : "1738 (interacts with) 549", "name" : "1738 (interacts with) 549", "interaction" : "interacts with", "SUID" : 65174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65170", "source" : "1489", "target" : "2029", "shared_name" : "1738 (interacts with) 4329", "name" : "1738 (interacts with) 4329", "interaction" : "interacts with", "SUID" : 65170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65166", "source" : "1489", "target" : "413", "shared_name" : "1738 (interacts with) 51733", "name" : "1738 (interacts with) 51733", "interaction" : "interacts with", "SUID" : 65166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65162", "source" : "1489", "target" : "5305", "shared_name" : "1738 (interacts with) 6901", "name" : "1738 (interacts with) 6901", "interaction" : "interacts with", "SUID" : 65162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65158", "source" : "1489", "target" : "1013", "shared_name" : "1738 (interacts with) 6898", "name" : "1738 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 65158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65154", "source" : "1489", "target" : "409", "shared_name" : "1738 (interacts with) 10558", "name" : "1738 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 65154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65150", "source" : "1489", "target" : "681", "shared_name" : "1738 (interacts with) 6646", "name" : "1738 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 65150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65146", "source" : "1489", "target" : "5605", "shared_name" : "1738 (interacts with) 51601", "name" : "1738 (interacts with) 51601", "interaction" : "interacts with", "SUID" : 65146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65142", "source" : "1489", "target" : "1037", "shared_name" : "1738 (interacts with) 387787", "name" : "1738 (interacts with) 387787", "interaction" : "interacts with", "SUID" : 65142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65138", "source" : "1489", "target" : "4401", "shared_name" : "1738 (interacts with) 55526", "name" : "1738 (interacts with) 55526", "interaction" : "interacts with", "SUID" : 65138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65134", "source" : "1489", "target" : "2365", "shared_name" : "1738 (interacts with) 2731", "name" : "1738 (interacts with) 2731", "interaction" : "interacts with", "SUID" : 65134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65130", "source" : "1489", "target" : "3177", "shared_name" : "1738 (interacts with) 5321", "name" : "1738 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 65130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65126", "source" : "1489", "target" : "4941", "shared_name" : "1738 (interacts with) 6342", "name" : "1738 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 65126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65122", "source" : "1489", "target" : "3461", "shared_name" : "1738 (interacts with) 5538", "name" : "1738 (interacts with) 5538", "interaction" : "interacts with", "SUID" : 65122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65118", "source" : "1489", "target" : "3893", "shared_name" : "1738 (interacts with) 151056", "name" : "1738 (interacts with) 151056", "interaction" : "interacts with", "SUID" : 65118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65114", "source" : "1489", "target" : "2853", "shared_name" : "1738 (interacts with) 8398", "name" : "1738 (interacts with) 8398", "interaction" : "interacts with", "SUID" : 65114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65110", "source" : "1489", "target" : "4273", "shared_name" : "1738 (interacts with) 4548", "name" : "1738 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 65110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65106", "source" : "1489", "target" : "1473", "shared_name" : "1738 (interacts with) 4524", "name" : "1738 (interacts with) 4524", "interaction" : "interacts with", "SUID" : 65106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65102", "source" : "1489", "target" : "1277", "shared_name" : "1738 (interacts with) 79143", "name" : "1738 (interacts with) 79143", "interaction" : "interacts with", "SUID" : 65102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65098", "source" : "1489", "target" : "385", "shared_name" : "1738 (interacts with) 5319", "name" : "1738 (interacts with) 5319", "interaction" : "interacts with", "SUID" : 65098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65094", "source" : "1489", "target" : "2005", "shared_name" : "1738 (interacts with) 4846", "name" : "1738 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 65094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65090", "source" : "1489", "target" : "6089", "shared_name" : "1738 (interacts with) 3145", "name" : "1738 (interacts with) 3145", "interaction" : "interacts with", "SUID" : 65090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65086", "source" : "1489", "target" : "1673", "shared_name" : "1738 (interacts with) 138050", "name" : "1738 (interacts with) 138050", "interaction" : "interacts with", "SUID" : 65086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65082", "source" : "1489", "target" : "4189", "shared_name" : "1738 (interacts with) 2744", "name" : "1738 (interacts with) 2744", "interaction" : "interacts with", "SUID" : 65082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65078", "source" : "1489", "target" : "573", "shared_name" : "1738 (interacts with) 3155", "name" : "1738 (interacts with) 3155", "interaction" : "interacts with", "SUID" : 65078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65074", "source" : "1489", "target" : "5797", "shared_name" : "1738 (interacts with) 3030", "name" : "1738 (interacts with) 3030", "interaction" : "interacts with", "SUID" : 65074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65070", "source" : "1489", "target" : "4253", "shared_name" : "1738 (interacts with) 84706", "name" : "1738 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 65070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65066", "source" : "1489", "target" : "1981", "shared_name" : "1738 (interacts with) 339983", "name" : "1738 (interacts with) 339983", "interaction" : "interacts with", "SUID" : 65066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65062", "source" : "1489", "target" : "1469", "shared_name" : "1738 (interacts with) 51660", "name" : "1738 (interacts with) 51660", "interaction" : "interacts with", "SUID" : 65062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65058", "source" : "1489", "target" : "977", "shared_name" : "1738 (interacts with) 79944", "name" : "1738 (interacts with) 79944", "interaction" : "interacts with", "SUID" : 65058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65054", "source" : "1489", "target" : "3929", "shared_name" : "1738 (interacts with) 5860", "name" : "1738 (interacts with) 5860", "interaction" : "interacts with", "SUID" : 65054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65050", "source" : "1489", "target" : "4045", "shared_name" : "1738 (interacts with) 29920", "name" : "1738 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 65050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65046", "source" : "1489", "target" : "3501", "shared_name" : "1738 (interacts with) 5831", "name" : "1738 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 65046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65042", "source" : "1489", "target" : "1721", "shared_name" : "1738 (interacts with) 51807", "name" : "1738 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 65042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65038", "source" : "1489", "target" : "5049", "shared_name" : "1738 (interacts with) 6697", "name" : "1738 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 65038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65034", "source" : "1489", "target" : "1605", "shared_name" : "1738 (interacts with) 6648", "name" : "1738 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 65034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65030", "source" : "1489", "target" : "6093", "shared_name" : "1738 (interacts with) 953", "name" : "1738 (interacts with) 953", "interaction" : "interacts with", "SUID" : 65030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65026", "source" : "1489", "target" : "3681", "shared_name" : "1738 (interacts with) 1892", "name" : "1738 (interacts with) 1892", "interaction" : "interacts with", "SUID" : 65026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65022", "source" : "1489", "target" : "1437", "shared_name" : "1738 (interacts with) 80025", "name" : "1738 (interacts with) 80025", "interaction" : "interacts with", "SUID" : 65022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65018", "source" : "1489", "target" : "5017", "shared_name" : "1738 (interacts with) 3417", "name" : "1738 (interacts with) 3417", "interaction" : "interacts with", "SUID" : 65018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65014", "source" : "1489", "target" : "6049", "shared_name" : "1738 (interacts with) 25973", "name" : "1738 (interacts with) 25973", "interaction" : "interacts with", "SUID" : 65014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65010", "source" : "1489", "target" : "2881", "shared_name" : "1738 (interacts with) 5160", "name" : "1738 (interacts with) 5160", "interaction" : "interacts with", "SUID" : 65010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65006", "source" : "1489", "target" : "2897", "shared_name" : "1738 (interacts with) 1737", "name" : "1738 (interacts with) 1737", "interaction" : "interacts with", "SUID" : 65006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65002", "source" : "1489", "target" : "489", "shared_name" : "1738 (interacts with) 1629", "name" : "1738 (interacts with) 1629", "interaction" : "interacts with", "SUID" : 65002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64998", "source" : "1489", "target" : "1485", "shared_name" : "1738 (interacts with) 8050", "name" : "1738 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 64998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "64994", "source" : "1489", "target" : "3421", "shared_name" : "1738 (interacts with) 4967", "name" : "1738 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 64994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65394", "source" : "1485", "target" : "2925", "shared_name" : "8050 (interacts with) 8802", "name" : "8050 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 65394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65390", "source" : "1485", "target" : "1721", "shared_name" : "8050 (interacts with) 51807", "name" : "8050 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 65390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65386", "source" : "1485", "target" : "1013", "shared_name" : "8050 (interacts with) 6898", "name" : "8050 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 65386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65382", "source" : "1485", "target" : "5049", "shared_name" : "8050 (interacts with) 6697", "name" : "8050 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 65382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65378", "source" : "1485", "target" : "3425", "shared_name" : "8050 (interacts with) 8803", "name" : "8050 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 65378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65374", "source" : "1485", "target" : "3149", "shared_name" : "8050 (interacts with) 3630", "name" : "8050 (interacts with) 3630", "interaction" : "interacts with", "SUID" : 65374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65370", "source" : "1485", "target" : "1029", "shared_name" : "8050 (interacts with) 5080", "name" : "8050 (interacts with) 5080", "interaction" : "interacts with", "SUID" : 65370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65366", "source" : "1485", "target" : "4169", "shared_name" : "8050 (interacts with) 10993", "name" : "8050 (interacts with) 10993", "interaction" : "interacts with", "SUID" : 65366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65362", "source" : "1485", "target" : "4941", "shared_name" : "8050 (interacts with) 6342", "name" : "8050 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 65362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65410", "source" : "1481", "target" : "1041", "shared_name" : "3763 (interacts with) 3766", "name" : "3763 (interacts with) 3766", "interaction" : "interacts with", "SUID" : 65410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65406", "source" : "1481", "target" : "3449", "shared_name" : "3763 (interacts with) 9568", "name" : "3763 (interacts with) 9568", "interaction" : "interacts with", "SUID" : 65406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65402", "source" : "1481", "target" : "3153", "shared_name" : "3763 (interacts with) 3684", "name" : "3763 (interacts with) 3684", "interaction" : "interacts with", "SUID" : 65402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65398", "source" : "1481", "target" : "3313", "shared_name" : "3763 (interacts with) 84314", "name" : "3763 (interacts with) 84314", "interaction" : "interacts with", "SUID" : 65398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65774", "source" : "1477", "target" : "6181", "shared_name" : "10352 (interacts with) 84987", "name" : "10352 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 65774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65770", "source" : "1477", "target" : "1865", "shared_name" : "10352 (interacts with) 498", "name" : "10352 (interacts with) 498", "interaction" : "interacts with", "SUID" : 65770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65766", "source" : "1477", "target" : "5985", "shared_name" : "10352 (interacts with) 27235", "name" : "10352 (interacts with) 27235", "interaction" : "interacts with", "SUID" : 65766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65762", "source" : "1477", "target" : "1053", "shared_name" : "10352 (interacts with) 81689", "name" : "10352 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 65762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65758", "source" : "1477", "target" : "2297", "shared_name" : "10352 (interacts with) 55005", "name" : "10352 (interacts with) 55005", "interaction" : "interacts with", "SUID" : 65758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65754", "source" : "1477", "target" : "1217", "shared_name" : "10352 (interacts with) 3308", "name" : "10352 (interacts with) 3308", "interaction" : "interacts with", "SUID" : 65754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65750", "source" : "1477", "target" : "665", "shared_name" : "10352 (interacts with) 3309", "name" : "10352 (interacts with) 3309", "interaction" : "interacts with", "SUID" : 65750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65746", "source" : "1477", "target" : "2409", "shared_name" : "10352 (interacts with) 3304", "name" : "10352 (interacts with) 3304", "interaction" : "interacts with", "SUID" : 65746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65742", "source" : "1477", "target" : "5341", "shared_name" : "10352 (interacts with) 91647", "name" : "10352 (interacts with) 91647", "interaction" : "interacts with", "SUID" : 65742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65738", "source" : "1477", "target" : "2169", "shared_name" : "10352 (interacts with) 51182", "name" : "10352 (interacts with) 51182", "interaction" : "interacts with", "SUID" : 65738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65734", "source" : "1477", "target" : "3617", "shared_name" : "10352 (interacts with) 4704", "name" : "10352 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 65734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65730", "source" : "1477", "target" : "1325", "shared_name" : "10352 (interacts with) 7284", "name" : "10352 (interacts with) 7284", "interaction" : "interacts with", "SUID" : 65730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65726", "source" : "1477", "target" : "3065", "shared_name" : "10352 (interacts with) 25828", "name" : "10352 (interacts with) 25828", "interaction" : "interacts with", "SUID" : 65726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65722", "source" : "1477", "target" : "1573", "shared_name" : "10352 (interacts with) 4723", "name" : "10352 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 65722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65718", "source" : "1477", "target" : "2741", "shared_name" : "10352 (interacts with) 4695", "name" : "10352 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 65718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65714", "source" : "1477", "target" : "5689", "shared_name" : "10352 (interacts with) 27089", "name" : "10352 (interacts with) 27089", "interaction" : "interacts with", "SUID" : 65714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65710", "source" : "1477", "target" : "4501", "shared_name" : "10352 (interacts with) 25821", "name" : "10352 (interacts with) 25821", "interaction" : "interacts with", "SUID" : 65710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65706", "source" : "1477", "target" : "1921", "shared_name" : "10352 (interacts with) 1352", "name" : "10352 (interacts with) 1352", "interaction" : "interacts with", "SUID" : 65706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65702", "source" : "1477", "target" : "1929", "shared_name" : "10352 (interacts with) 51218", "name" : "10352 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 65702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65698", "source" : "1477", "target" : "2477", "shared_name" : "10352 (interacts with) 57107", "name" : "10352 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 65698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65694", "source" : "1477", "target" : "1561", "shared_name" : "10352 (interacts with) 51117", "name" : "10352 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 65694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65690", "source" : "1477", "target" : "3545", "shared_name" : "10352 (interacts with) 708", "name" : "10352 (interacts with) 708", "interaction" : "interacts with", "SUID" : 65690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65686", "source" : "1477", "target" : "2457", "shared_name" : "10352 (interacts with) 4143", "name" : "10352 (interacts with) 4143", "interaction" : "interacts with", "SUID" : 65686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65682", "source" : "1477", "target" : "4061", "shared_name" : "10352 (interacts with) 4705", "name" : "10352 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 65682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65678", "source" : "1477", "target" : "889", "shared_name" : "10352 (interacts with) 80224", "name" : "10352 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 65678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65674", "source" : "1477", "target" : "621", "shared_name" : "10352 (interacts with) 122961", "name" : "10352 (interacts with) 122961", "interaction" : "interacts with", "SUID" : 65674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65670", "source" : "1477", "target" : "5853", "shared_name" : "10352 (interacts with) 4709", "name" : "10352 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 65670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65666", "source" : "1477", "target" : "793", "shared_name" : "10352 (interacts with) 137682", "name" : "10352 (interacts with) 137682", "interaction" : "interacts with", "SUID" : 65666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65662", "source" : "1477", "target" : "1869", "shared_name" : "10352 (interacts with) 4729", "name" : "10352 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 65662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65658", "source" : "1477", "target" : "3705", "shared_name" : "10352 (interacts with) 87178", "name" : "10352 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 65658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65654", "source" : "1477", "target" : "4069", "shared_name" : "10352 (interacts with) 374291", "name" : "10352 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 65654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65650", "source" : "1477", "target" : "5845", "shared_name" : "10352 (interacts with) 4714", "name" : "10352 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 65650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65646", "source" : "1477", "target" : "3761", "shared_name" : "10352 (interacts with) 25915", "name" : "10352 (interacts with) 25915", "interaction" : "interacts with", "SUID" : 65646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65642", "source" : "1477", "target" : "5685", "shared_name" : "10352 (interacts with) 1340", "name" : "10352 (interacts with) 1340", "interaction" : "interacts with", "SUID" : 65642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65638", "source" : "1477", "target" : "2337", "shared_name" : "10352 (interacts with) 28976", "name" : "10352 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 65638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65634", "source" : "1477", "target" : "1105", "shared_name" : "10352 (interacts with) 493753", "name" : "10352 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 65634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65630", "source" : "1477", "target" : "2609", "shared_name" : "10352 (interacts with) 29960", "name" : "10352 (interacts with) 29960", "interaction" : "interacts with", "SUID" : 65630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65626", "source" : "1477", "target" : "2421", "shared_name" : "10352 (interacts with) 2673", "name" : "10352 (interacts with) 2673", "interaction" : "interacts with", "SUID" : 65626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65622", "source" : "1477", "target" : "2285", "shared_name" : "10352 (interacts with) 51300", "name" : "10352 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 65622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65618", "source" : "1477", "target" : "2797", "shared_name" : "10352 (interacts with) 4728", "name" : "10352 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 65618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65614", "source" : "1477", "target" : "2009", "shared_name" : "10352 (interacts with) 79133", "name" : "10352 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 65614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65610", "source" : "1477", "target" : "2801", "shared_name" : "10352 (interacts with) 4700", "name" : "10352 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 65610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65606", "source" : "1477", "target" : "2753", "shared_name" : "10352 (interacts with) 4720", "name" : "10352 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 65606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65602", "source" : "1477", "target" : "4017", "shared_name" : "10352 (interacts with) 4719", "name" : "10352 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 65602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65598", "source" : "1477", "target" : "2825", "shared_name" : "10352 (interacts with) 126328", "name" : "10352 (interacts with) 126328", "interaction" : "interacts with", "SUID" : 65598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65594", "source" : "1477", "target" : "5505", "shared_name" : "10352 (interacts with) 29078", "name" : "10352 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 65594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65590", "source" : "1477", "target" : "4593", "shared_name" : "10352 (interacts with) 2058", "name" : "10352 (interacts with) 2058", "interaction" : "interacts with", "SUID" : 65590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65586", "source" : "1477", "target" : "4409", "shared_name" : "10352 (interacts with) 6341", "name" : "10352 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 65586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65582", "source" : "1477", "target" : "2121", "shared_name" : "10352 (interacts with) 11232", "name" : "10352 (interacts with) 11232", "interaction" : "interacts with", "SUID" : 65582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65578", "source" : "1477", "target" : "2109", "shared_name" : "10352 (interacts with) 51103", "name" : "10352 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 65578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65574", "source" : "1477", "target" : "501", "shared_name" : "10352 (interacts with) 65993", "name" : "10352 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 65574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65570", "source" : "1477", "target" : "2345", "shared_name" : "10352 (interacts with) 200205", "name" : "10352 (interacts with) 200205", "interaction" : "interacts with", "SUID" : 65570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65566", "source" : "1477", "target" : "1369", "shared_name" : "10352 (interacts with) 27247", "name" : "10352 (interacts with) 27247", "interaction" : "interacts with", "SUID" : 65566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65562", "source" : "1477", "target" : "4897", "shared_name" : "10352 (interacts with) 55149", "name" : "10352 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 65562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65558", "source" : "1477", "target" : "2105", "shared_name" : "10352 (interacts with) 56945", "name" : "10352 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 65558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65554", "source" : "1477", "target" : "3641", "shared_name" : "10352 (interacts with) 4141", "name" : "10352 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 65554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65550", "source" : "1477", "target" : "1577", "shared_name" : "10352 (interacts with) 51091", "name" : "10352 (interacts with) 51091", "interaction" : "interacts with", "SUID" : 65550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65546", "source" : "1477", "target" : "521", "shared_name" : "10352 (interacts with) 85476", "name" : "10352 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 65546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65542", "source" : "1477", "target" : "3973", "shared_name" : "10352 (interacts with) 55572", "name" : "10352 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 65542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65538", "source" : "1477", "target" : "2837", "shared_name" : "10352 (interacts with) 123263", "name" : "10352 (interacts with) 123263", "interaction" : "interacts with", "SUID" : 65538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65534", "source" : "1477", "target" : "4141", "shared_name" : "10352 (interacts with) 617", "name" : "10352 (interacts with) 617", "interaction" : "interacts with", "SUID" : 65534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65530", "source" : "1477", "target" : "477", "shared_name" : "10352 (interacts with) 51021", "name" : "10352 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 65530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65526", "source" : "1477", "target" : "457", "shared_name" : "10352 (interacts with) 16", "name" : "10352 (interacts with) 16", "interaction" : "interacts with", "SUID" : 65526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65522", "source" : "1477", "target" : "5737", "shared_name" : "10352 (interacts with) 84340", "name" : "10352 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 65522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65518", "source" : "1477", "target" : "1089", "shared_name" : "10352 (interacts with) 5917", "name" : "10352 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 65518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65514", "source" : "1477", "target" : "4693", "shared_name" : "10352 (interacts with) 6301", "name" : "10352 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 65514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65510", "source" : "1477", "target" : "4229", "shared_name" : "10352 (interacts with) 3035", "name" : "10352 (interacts with) 3035", "interaction" : "interacts with", "SUID" : 65510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65506", "source" : "1477", "target" : "4597", "shared_name" : "10352 (interacts with) 3376", "name" : "10352 (interacts with) 3376", "interaction" : "interacts with", "SUID" : 65506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65502", "source" : "1477", "target" : "3649", "shared_name" : "10352 (interacts with) 51520", "name" : "10352 (interacts with) 51520", "interaction" : "interacts with", "SUID" : 65502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65498", "source" : "1477", "target" : "1581", "shared_name" : "10352 (interacts with) 7407", "name" : "10352 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 65498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65494", "source" : "1477", "target" : "4757", "shared_name" : "10352 (interacts with) 9997", "name" : "10352 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 65494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65490", "source" : "1477", "target" : "713", "shared_name" : "10352 (interacts with) 7019", "name" : "10352 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 65490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65486", "source" : "1477", "target" : "6049", "shared_name" : "10352 (interacts with) 25973", "name" : "10352 (interacts with) 25973", "interaction" : "interacts with", "SUID" : 65486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65482", "source" : "1477", "target" : "3169", "shared_name" : "10352 (interacts with) 1615", "name" : "10352 (interacts with) 1615", "interaction" : "interacts with", "SUID" : 65482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65478", "source" : "1477", "target" : "2021", "shared_name" : "10352 (interacts with) 5428", "name" : "10352 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 65478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65474", "source" : "1477", "target" : "5189", "shared_name" : "10352 (interacts with) 57176", "name" : "10352 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 65474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65470", "source" : "1477", "target" : "6073", "shared_name" : "10352 (interacts with) 92170", "name" : "10352 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 65470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65466", "source" : "1477", "target" : "4101", "shared_name" : "10352 (interacts with) 65260", "name" : "10352 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 65466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65462", "source" : "1477", "target" : "721", "shared_name" : "10352 (interacts with) 79731", "name" : "10352 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 65462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65458", "source" : "1477", "target" : "1197", "shared_name" : "10352 (interacts with) 79587", "name" : "10352 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 65458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65454", "source" : "1477", "target" : "5085", "shared_name" : "10352 (interacts with) 56652", "name" : "10352 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 65454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65450", "source" : "1477", "target" : "6157", "shared_name" : "10352 (interacts with) 3735", "name" : "10352 (interacts with) 3735", "interaction" : "interacts with", "SUID" : 65450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65446", "source" : "1477", "target" : "4085", "shared_name" : "10352 (interacts with) 55699", "name" : "10352 (interacts with) 55699", "interaction" : "interacts with", "SUID" : 65446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65442", "source" : "1477", "target" : "4349", "shared_name" : "10352 (interacts with) 5859", "name" : "10352 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 65442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65438", "source" : "1477", "target" : "1129", "shared_name" : "10352 (interacts with) 57505", "name" : "10352 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 65438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65434", "source" : "1477", "target" : "4261", "shared_name" : "10352 (interacts with) 124454", "name" : "10352 (interacts with) 124454", "interaction" : "interacts with", "SUID" : 65434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65430", "source" : "1477", "target" : "4621", "shared_name" : "10352 (interacts with) 57038", "name" : "10352 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 65430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65426", "source" : "1477", "target" : "4405", "shared_name" : "10352 (interacts with) 10667", "name" : "10352 (interacts with) 10667", "interaction" : "interacts with", "SUID" : 65426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65422", "source" : "1477", "target" : "3633", "shared_name" : "10352 (interacts with) 51067", "name" : "10352 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 65422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65418", "source" : "1477", "target" : "4869", "shared_name" : "10352 (interacts with) 92935", "name" : "10352 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 65418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65414", "source" : "1477", "target" : "6001", "shared_name" : "10352 (interacts with) 55157", "name" : "10352 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 65414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65802", "source" : "1473", "target" : "4349", "shared_name" : "4524 (interacts with) 5859", "name" : "4524 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 65802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65798", "source" : "1473", "target" : "4693", "shared_name" : "4524 (interacts with) 6301", "name" : "4524 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 65798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65794", "source" : "1473", "target" : "3773", "shared_name" : "4524 (interacts with) 540", "name" : "4524 (interacts with) 540", "interaction" : "interacts with", "SUID" : 65794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65790", "source" : "1473", "target" : "493", "shared_name" : "4524 (interacts with) 594", "name" : "4524 (interacts with) 594", "interaction" : "interacts with", "SUID" : 65790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65786", "source" : "1473", "target" : "2945", "shared_name" : "4524 (interacts with) 471", "name" : "4524 (interacts with) 471", "interaction" : "interacts with", "SUID" : 65786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65782", "source" : "1473", "target" : "4273", "shared_name" : "4524 (interacts with) 4548", "name" : "4524 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 65782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65778", "source" : "1473", "target" : "3421", "shared_name" : "4524 (interacts with) 4967", "name" : "4524 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 65778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65818", "source" : "1469", "target" : "1485", "shared_name" : "51660 (interacts with) 8050", "name" : "51660 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 65818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65814", "source" : "1469", "target" : "2881", "shared_name" : "51660 (interacts with) 5160", "name" : "51660 (interacts with) 5160", "interaction" : "interacts with", "SUID" : 65814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65810", "source" : "1469", "target" : "3445", "shared_name" : "51660 (interacts with) 5091", "name" : "51660 (interacts with) 5091", "interaction" : "interacts with", "SUID" : 65810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65806", "source" : "1469", "target" : "4737", "shared_name" : "51660 (interacts with) 445", "name" : "51660 (interacts with) 445", "interaction" : "interacts with", "SUID" : 65806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65882", "source" : "1461", "target" : "5109", "shared_name" : "5832 (interacts with) 790", "name" : "5832 (interacts with) 790", "interaction" : "interacts with", "SUID" : 65882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65878", "source" : "1461", "target" : "5993", "shared_name" : "5832 (interacts with) 6611", "name" : "5832 (interacts with) 6611", "interaction" : "interacts with", "SUID" : 65878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65874", "source" : "1461", "target" : "693", "shared_name" : "5832 (interacts with) 7296", "name" : "5832 (interacts with) 7296", "interaction" : "interacts with", "SUID" : 65874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65870", "source" : "1461", "target" : "4253", "shared_name" : "5832 (interacts with) 84706", "name" : "5832 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 65870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65866", "source" : "1461", "target" : "1013", "shared_name" : "5832 (interacts with) 6898", "name" : "5832 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 65866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65862", "source" : "1461", "target" : "4185", "shared_name" : "5832 (interacts with) 29968", "name" : "5832 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 65862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65858", "source" : "1461", "target" : "461", "shared_name" : "5832 (interacts with) 5198", "name" : "5832 (interacts with) 5198", "interaction" : "interacts with", "SUID" : 65858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65854", "source" : "1461", "target" : "2205", "shared_name" : "5832 (interacts with) 2571", "name" : "5832 (interacts with) 2571", "interaction" : "interacts with", "SUID" : 65854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65850", "source" : "1461", "target" : "4261", "shared_name" : "5832 (interacts with) 124454", "name" : "5832 (interacts with) 124454", "interaction" : "interacts with", "SUID" : 65850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65846", "source" : "1461", "target" : "5349", "shared_name" : "5832 (interacts with) 440", "name" : "5832 (interacts with) 440", "interaction" : "interacts with", "SUID" : 65846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65842", "source" : "1461", "target" : "2421", "shared_name" : "5832 (interacts with) 2673", "name" : "5832 (interacts with) 2673", "interaction" : "interacts with", "SUID" : 65842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65838", "source" : "1461", "target" : "2721", "shared_name" : "5832 (interacts with) 79751", "name" : "5832 (interacts with) 79751", "interaction" : "interacts with", "SUID" : 65838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65834", "source" : "1461", "target" : "1885", "shared_name" : "5832 (interacts with) 8604", "name" : "5832 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 65834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65830", "source" : "1461", "target" : "2089", "shared_name" : "5832 (interacts with) 3939", "name" : "5832 (interacts with) 3939", "interaction" : "interacts with", "SUID" : 65830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65826", "source" : "1461", "target" : "5733", "shared_name" : "5832 (interacts with) 57017", "name" : "5832 (interacts with) 57017", "interaction" : "interacts with", "SUID" : 65826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65822", "source" : "1461", "target" : "6001", "shared_name" : "5832 (interacts with) 55157", "name" : "5832 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 65822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65890", "source" : "1457", "target" : "2521", "shared_name" : "122553 (interacts with) 83696", "name" : "122553 (interacts with) 83696", "interaction" : "interacts with", "SUID" : 65890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65886", "source" : "1457", "target" : "1453", "shared_name" : "122553 (interacts with) 60684", "name" : "122553 (interacts with) 60684", "interaction" : "interacts with", "SUID" : 65886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65906", "source" : "1453", "target" : "1457", "shared_name" : "60684 (interacts with) 122553", "name" : "60684 (interacts with) 122553", "interaction" : "interacts with", "SUID" : 65906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65902", "source" : "1453", "target" : "2521", "shared_name" : "60684 (interacts with) 83696", "name" : "60684 (interacts with) 83696", "interaction" : "interacts with", "SUID" : 65902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65898", "source" : "1453", "target" : "1717", "shared_name" : "60684 (interacts with) 51693", "name" : "60684 (interacts with) 51693", "interaction" : "interacts with", "SUID" : 65898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65894", "source" : "1453", "target" : "4217", "shared_name" : "60684 (interacts with) 51112", "name" : "60684 (interacts with) 51112", "interaction" : "interacts with", "SUID" : 65894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65918", "source" : "1445", "target" : "2233", "shared_name" : "9179 (interacts with) 9516", "name" : "9179 (interacts with) 9516", "interaction" : "interacts with", "SUID" : 65918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65914", "source" : "1445", "target" : "4393", "shared_name" : "9179 (interacts with) 950", "name" : "9179 (interacts with) 950", "interaction" : "interacts with", "SUID" : 65914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65910", "source" : "1445", "target" : "3273", "shared_name" : "9179 (interacts with) 351", "name" : "9179 (interacts with) 351", "interaction" : "interacts with", "SUID" : 65910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65946", "source" : "1441", "target" : "2625", "shared_name" : "1509 (interacts with) 3065", "name" : "1509 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 65946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65942", "source" : "1441", "target" : "5681", "shared_name" : "1509 (interacts with) 3315", "name" : "1509 (interacts with) 3315", "interaction" : "interacts with", "SUID" : 65942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65938", "source" : "1441", "target" : "2309", "shared_name" : "1509 (interacts with) 3316", "name" : "1509 (interacts with) 3316", "interaction" : "interacts with", "SUID" : 65938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65934", "source" : "1441", "target" : "5065", "shared_name" : "1509 (interacts with) 3117", "name" : "1509 (interacts with) 3117", "interaction" : "interacts with", "SUID" : 65934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65930", "source" : "1441", "target" : "2641", "shared_name" : "1509 (interacts with) 3123", "name" : "1509 (interacts with) 3123", "interaction" : "interacts with", "SUID" : 65930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65926", "source" : "1441", "target" : "4165", "shared_name" : "1509 (interacts with) 3119", "name" : "1509 (interacts with) 3119", "interaction" : "interacts with", "SUID" : 65926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65922", "source" : "1441", "target" : "3517", "shared_name" : "1509 (interacts with) 2033", "name" : "1509 (interacts with) 2033", "interaction" : "interacts with", "SUID" : 65922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65986", "source" : "1437", "target" : "1585", "shared_name" : "80025 (interacts with) 80347", "name" : "80025 (interacts with) 80347", "interaction" : "interacts with", "SUID" : 65986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65982", "source" : "1437", "target" : "4941", "shared_name" : "80025 (interacts with) 6342", "name" : "80025 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 65982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65978", "source" : "1437", "target" : "4169", "shared_name" : "80025 (interacts with) 10993", "name" : "80025 (interacts with) 10993", "interaction" : "interacts with", "SUID" : 65978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65974", "source" : "1437", "target" : "5049", "shared_name" : "80025 (interacts with) 6697", "name" : "80025 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 65974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65970", "source" : "1437", "target" : "3425", "shared_name" : "80025 (interacts with) 8803", "name" : "80025 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 65970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65966", "source" : "1437", "target" : "2925", "shared_name" : "80025 (interacts with) 8802", "name" : "80025 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 65966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65962", "source" : "1437", "target" : "1721", "shared_name" : "80025 (interacts with) 51807", "name" : "80025 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 65962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65958", "source" : "1437", "target" : "2881", "shared_name" : "80025 (interacts with) 5160", "name" : "80025 (interacts with) 5160", "interaction" : "interacts with", "SUID" : 65958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65954", "source" : "1437", "target" : "1485", "shared_name" : "80025 (interacts with) 8050", "name" : "80025 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 65954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65950", "source" : "1437", "target" : "4721", "shared_name" : "80025 (interacts with) 5805", "name" : "80025 (interacts with) 5805", "interaction" : "interacts with", "SUID" : 65950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66002", "source" : "1433", "target" : "6025", "shared_name" : "6515 (interacts with) 80704", "name" : "6515 (interacts with) 80704", "interaction" : "interacts with", "SUID" : 66002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65998", "source" : "1433", "target" : "5517", "shared_name" : "6515 (interacts with) 8514", "name" : "6515 (interacts with) 8514", "interaction" : "interacts with", "SUID" : 65998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65994", "source" : "1433", "target" : "3777", "shared_name" : "6515 (interacts with) 6571", "name" : "6515 (interacts with) 6571", "interaction" : "interacts with", "SUID" : 65994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "65990", "source" : "1433", "target" : "1385", "shared_name" : "6515 (interacts with) 6520", "name" : "6515 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 65990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66014", "source" : "1429", "target" : "6145", "shared_name" : "65125 (interacts with) 93627", "name" : "65125 (interacts with) 93627", "interaction" : "interacts with", "SUID" : 66014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66010", "source" : "1429", "target" : "4725", "shared_name" : "65125 (interacts with) 7010", "name" : "65125 (interacts with) 7010", "interaction" : "interacts with", "SUID" : 66010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66006", "source" : "1429", "target" : "1681", "shared_name" : "65125 (interacts with) 9990", "name" : "65125 (interacts with) 9990", "interaction" : "interacts with", "SUID" : 66006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66030", "source" : "1425", "target" : "3501", "shared_name" : "55644 (interacts with) 5831", "name" : "55644 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 66030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66026", "source" : "1425", "target" : "3089", "shared_name" : "55644 (interacts with) 51002", "name" : "55644 (interacts with) 51002", "interaction" : "interacts with", "SUID" : 66026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66022", "source" : "1425", "target" : "1877", "shared_name" : "55644 (interacts with) 9531", "name" : "55644 (interacts with) 9531", "interaction" : "interacts with", "SUID" : 66022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66018", "source" : "1425", "target" : "5269", "shared_name" : "55644 (interacts with) 8270", "name" : "55644 (interacts with) 8270", "interaction" : "interacts with", "SUID" : 66018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66046", "source" : "1413", "target" : "1013", "shared_name" : "7337 (interacts with) 6898", "name" : "7337 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 66046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66042", "source" : "1413", "target" : "669", "shared_name" : "7337 (interacts with) 259266", "name" : "7337 (interacts with) 259266", "interaction" : "interacts with", "SUID" : 66042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66038", "source" : "1413", "target" : "4473", "shared_name" : "7337 (interacts with) 54888", "name" : "7337 (interacts with) 54888", "interaction" : "interacts with", "SUID" : 66038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66034", "source" : "1413", "target" : "5009", "shared_name" : "7337 (interacts with) 5241", "name" : "7337 (interacts with) 5241", "interaction" : "interacts with", "SUID" : 66034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66050", "source" : "1409", "target" : "3373", "shared_name" : "2563 (interacts with) 2530", "name" : "2563 (interacts with) 2530", "interaction" : "interacts with", "SUID" : 66050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66174", "source" : "1405", "target" : "565", "shared_name" : "998 (interacts with) 4772", "name" : "998 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 66174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66170", "source" : "1405", "target" : "2509", "shared_name" : "998 (interacts with) 7204", "name" : "998 (interacts with) 7204", "interaction" : "interacts with", "SUID" : 66170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66166", "source" : "1405", "target" : "5297", "shared_name" : "998 (interacts with) 6775", "name" : "998 (interacts with) 6775", "interaction" : "interacts with", "SUID" : 66166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66162", "source" : "1405", "target" : "637", "shared_name" : "998 (interacts with) 6654", "name" : "998 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 66162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66158", "source" : "1405", "target" : "4549", "shared_name" : "998 (interacts with) 5903", "name" : "998 (interacts with) 5903", "interaction" : "interacts with", "SUID" : 66158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66154", "source" : "1405", "target" : "817", "shared_name" : "998 (interacts with) 5728", "name" : "998 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 66154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66150", "source" : "1405", "target" : "1565", "shared_name" : "998 (interacts with) 64857", "name" : "998 (interacts with) 64857", "interaction" : "interacts with", "SUID" : 66150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66146", "source" : "1405", "target" : "677", "shared_name" : "998 (interacts with) 57449", "name" : "998 (interacts with) 57449", "interaction" : "interacts with", "SUID" : 66146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66142", "source" : "1405", "target" : "5037", "shared_name" : "998 (interacts with) 5515", "name" : "998 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 66142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66138", "source" : "1405", "target" : "5641", "shared_name" : "998 (interacts with) 5518", "name" : "998 (interacts with) 5518", "interaction" : "interacts with", "SUID" : 66138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66134", "source" : "1405", "target" : "3465", "shared_name" : "998 (interacts with) 5296", "name" : "998 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 66134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66130", "source" : "1405", "target" : "2429", "shared_name" : "998 (interacts with) 4952", "name" : "998 (interacts with) 4952", "interaction" : "interacts with", "SUID" : 66130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66126", "source" : "1405", "target" : "5429", "shared_name" : "998 (interacts with) 5048", "name" : "998 (interacts with) 5048", "interaction" : "interacts with", "SUID" : 66126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66122", "source" : "1405", "target" : "4729", "shared_name" : "998 (interacts with) 5216", "name" : "998 (interacts with) 5216", "interaction" : "interacts with", "SUID" : 66122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66118", "source" : "1405", "target" : "3277", "shared_name" : "998 (interacts with) 9423", "name" : "998 (interacts with) 9423", "interaction" : "interacts with", "SUID" : 66118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66114", "source" : "1405", "target" : "4997", "shared_name" : "998 (interacts with) 54820", "name" : "998 (interacts with) 54820", "interaction" : "interacts with", "SUID" : 66114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66110", "source" : "1405", "target" : "4861", "shared_name" : "998 (interacts with) 4771", "name" : "998 (interacts with) 4771", "interaction" : "interacts with", "SUID" : 66110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66106", "source" : "1405", "target" : "2705", "shared_name" : "998 (interacts with) 8379", "name" : "998 (interacts with) 8379", "interaction" : "interacts with", "SUID" : 66106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66102", "source" : "1405", "target" : "4985", "shared_name" : "998 (interacts with) 3798", "name" : "998 (interacts with) 3798", "interaction" : "interacts with", "SUID" : 66102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66098", "source" : "1405", "target" : "4657", "shared_name" : "998 (interacts with) 64837", "name" : "998 (interacts with) 64837", "interaction" : "interacts with", "SUID" : 66098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66094", "source" : "1405", "target" : "5569", "shared_name" : "998 (interacts with) 59345", "name" : "998 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 66094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66090", "source" : "1405", "target" : "3625", "shared_name" : "998 (interacts with) 121512", "name" : "998 (interacts with) 121512", "interaction" : "interacts with", "SUID" : 66090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66086", "source" : "1405", "target" : "5817", "shared_name" : "998 (interacts with) 1950", "name" : "998 (interacts with) 1950", "interaction" : "interacts with", "SUID" : 66086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66082", "source" : "1405", "target" : "1321", "shared_name" : "998 (interacts with) 1778", "name" : "998 (interacts with) 1778", "interaction" : "interacts with", "SUID" : 66082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66078", "source" : "1405", "target" : "3785", "shared_name" : "998 (interacts with) 1781", "name" : "998 (interacts with) 1781", "interaction" : "interacts with", "SUID" : 66078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66074", "source" : "1405", "target" : "5405", "shared_name" : "998 (interacts with) 57572", "name" : "998 (interacts with) 57572", "interaction" : "interacts with", "SUID" : 66074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66070", "source" : "1405", "target" : "3521", "shared_name" : "998 (interacts with) 85440", "name" : "998 (interacts with) 85440", "interaction" : "interacts with", "SUID" : 66070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66066", "source" : "1405", "target" : "3809", "shared_name" : "998 (interacts with) 81704", "name" : "998 (interacts with) 81704", "interaction" : "interacts with", "SUID" : 66066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66062", "source" : "1405", "target" : "617", "shared_name" : "998 (interacts with) 1630", "name" : "998 (interacts with) 1630", "interaction" : "interacts with", "SUID" : 66062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66058", "source" : "1405", "target" : "5121", "shared_name" : "998 (interacts with) 1496", "name" : "998 (interacts with) 1496", "interaction" : "interacts with", "SUID" : 66058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66054", "source" : "1405", "target" : "5185", "shared_name" : "998 (interacts with) 1499", "name" : "998 (interacts with) 1499", "interaction" : "interacts with", "SUID" : 66054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66218", "source" : "1401", "target" : "2865", "shared_name" : "1118 (interacts with) 175", "name" : "1118 (interacts with) 175", "interaction" : "interacts with", "SUID" : 66218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66214", "source" : "1401", "target" : "3161", "shared_name" : "1118 (interacts with) 2821", "name" : "1118 (interacts with) 2821", "interaction" : "interacts with", "SUID" : 66214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66210", "source" : "1401", "target" : "2421", "shared_name" : "1118 (interacts with) 2673", "name" : "1118 (interacts with) 2673", "interaction" : "interacts with", "SUID" : 66210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66206", "source" : "1401", "target" : "897", "shared_name" : "1118 (interacts with) 3073", "name" : "1118 (interacts with) 3073", "interaction" : "interacts with", "SUID" : 66206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66202", "source" : "1401", "target" : "2633", "shared_name" : "1118 (interacts with) 29926", "name" : "1118 (interacts with) 29926", "interaction" : "interacts with", "SUID" : 66202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66198", "source" : "1401", "target" : "5717", "shared_name" : "1118 (interacts with) 29925", "name" : "1118 (interacts with) 29925", "interaction" : "interacts with", "SUID" : 66198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66194", "source" : "1401", "target" : "3193", "shared_name" : "1118 (interacts with) 197258", "name" : "1118 (interacts with) 197258", "interaction" : "interacts with", "SUID" : 66194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66190", "source" : "1401", "target" : "1313", "shared_name" : "1118 (interacts with) 1727", "name" : "1118 (interacts with) 1727", "interaction" : "interacts with", "SUID" : 66190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66186", "source" : "1401", "target" : "5401", "shared_name" : "1118 (interacts with) 5373", "name" : "1118 (interacts with) 5373", "interaction" : "interacts with", "SUID" : 66186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66182", "source" : "1401", "target" : "405", "shared_name" : "1118 (interacts with) 54187", "name" : "1118 (interacts with) 54187", "interaction" : "interacts with", "SUID" : 66182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66178", "source" : "1401", "target" : "285", "shared_name" : "1118 (interacts with) 5238", "name" : "1118 (interacts with) 5238", "interaction" : "interacts with", "SUID" : 66178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66226", "source" : "1397", "target" : "4497", "shared_name" : "25836 (interacts with) 8243", "name" : "25836 (interacts with) 8243", "interaction" : "interacts with", "SUID" : 66226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66222", "source" : "1397", "target" : "4797", "shared_name" : "25836 (interacts with) 10735", "name" : "25836 (interacts with) 10735", "interaction" : "interacts with", "SUID" : 66222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66258", "source" : "1393", "target" : "1509", "shared_name" : "55904 (interacts with) 63976", "name" : "55904 (interacts with) 63976", "interaction" : "interacts with", "SUID" : 66258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66254", "source" : "1393", "target" : "2053", "shared_name" : "55904 (interacts with) 7468", "name" : "55904 (interacts with) 7468", "interaction" : "interacts with", "SUID" : 66254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66250", "source" : "1393", "target" : "4001", "shared_name" : "55904 (interacts with) 79709", "name" : "55904 (interacts with) 79709", "interaction" : "interacts with", "SUID" : 66250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66246", "source" : "1393", "target" : "2281", "shared_name" : "55904 (interacts with) 79823", "name" : "55904 (interacts with) 79823", "interaction" : "interacts with", "SUID" : 66246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66242", "source" : "1393", "target" : "3769", "shared_name" : "55904 (interacts with) 8085", "name" : "55904 (interacts with) 8085", "interaction" : "interacts with", "SUID" : 66242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66238", "source" : "1393", "target" : "2593", "shared_name" : "55904 (interacts with) 64324", "name" : "55904 (interacts with) 64324", "interaction" : "interacts with", "SUID" : 66238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66234", "source" : "1393", "target" : "3709", "shared_name" : "55904 (interacts with) 9757", "name" : "55904 (interacts with) 9757", "interaction" : "interacts with", "SUID" : 66234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66230", "source" : "1393", "target" : "5729", "shared_name" : "55904 (interacts with) 861", "name" : "55904 (interacts with) 861", "interaction" : "interacts with", "SUID" : 66230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66334", "source" : "1385", "target" : "5053", "shared_name" : "6520 (interacts with) 857", "name" : "6520 (interacts with) 857", "interaction" : "interacts with", "SUID" : 66334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66330", "source" : "1385", "target" : "3009", "shared_name" : "6520 (interacts with) 2917", "name" : "6520 (interacts with) 2917", "interaction" : "interacts with", "SUID" : 66330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66326", "source" : "1385", "target" : "1013", "shared_name" : "6520 (interacts with) 6898", "name" : "6520 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 66326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66322", "source" : "1385", "target" : "3845", "shared_name" : "6520 (interacts with) 10479", "name" : "6520 (interacts with) 10479", "interaction" : "interacts with", "SUID" : 66322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66318", "source" : "1385", "target" : "277", "shared_name" : "6520 (interacts with) 285175", "name" : "6520 (interacts with) 285175", "interaction" : "interacts with", "SUID" : 66318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66314", "source" : "1385", "target" : "3325", "shared_name" : "6520 (interacts with) 9517", "name" : "6520 (interacts with) 9517", "interaction" : "interacts with", "SUID" : 66314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66310", "source" : "1385", "target" : "409", "shared_name" : "6520 (interacts with) 10558", "name" : "6520 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 66310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66306", "source" : "1385", "target" : "1809", "shared_name" : "6520 (interacts with) 6548", "name" : "6520 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 66306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66302", "source" : "1385", "target" : "389", "shared_name" : "6520 (interacts with) 7299", "name" : "6520 (interacts with) 7299", "interaction" : "interacts with", "SUID" : 66302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66298", "source" : "1385", "target" : "3473", "shared_name" : "6520 (interacts with) 6528", "name" : "6520 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 66298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66294", "source" : "1385", "target" : "5877", "shared_name" : "6520 (interacts with) 6535", "name" : "6520 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 66294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66290", "source" : "1385", "target" : "3781", "shared_name" : "6520 (interacts with) 9152", "name" : "6520 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 66290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66286", "source" : "1385", "target" : "401", "shared_name" : "6520 (interacts with) 6532", "name" : "6520 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 66286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66282", "source" : "1385", "target" : "3601", "shared_name" : "6520 (interacts with) 6531", "name" : "6520 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 66282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66278", "source" : "1385", "target" : "1905", "shared_name" : "6520 (interacts with) 9488", "name" : "6520 (interacts with) 9488", "interaction" : "interacts with", "SUID" : 66278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66274", "source" : "1385", "target" : "5345", "shared_name" : "6520 (interacts with) 9213", "name" : "6520 (interacts with) 9213", "interaction" : "interacts with", "SUID" : 66274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66270", "source" : "1385", "target" : "1033", "shared_name" : "6520 (interacts with) 9215", "name" : "6520 (interacts with) 9215", "interaction" : "interacts with", "SUID" : 66270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66266", "source" : "1385", "target" : "2933", "shared_name" : "6520 (interacts with) 10585", "name" : "6520 (interacts with) 10585", "interaction" : "interacts with", "SUID" : 66266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66262", "source" : "1385", "target" : "2761", "shared_name" : "6520 (interacts with) 57556", "name" : "6520 (interacts with) 57556", "interaction" : "interacts with", "SUID" : 66262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66338", "source" : "1377", "target" : "2549", "shared_name" : "81570 (interacts with) 9319", "name" : "81570 (interacts with) 9319", "interaction" : "interacts with", "SUID" : 66338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66470", "source" : "1369", "target" : "4141", "shared_name" : "27247 (interacts with) 617", "name" : "27247 (interacts with) 617", "interaction" : "interacts with", "SUID" : 66470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66466", "source" : "1369", "target" : "4869", "shared_name" : "27247 (interacts with) 92935", "name" : "27247 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 66466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66462", "source" : "1369", "target" : "3617", "shared_name" : "27247 (interacts with) 4704", "name" : "27247 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 66462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66458", "source" : "1369", "target" : "2741", "shared_name" : "27247 (interacts with) 4695", "name" : "27247 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 66458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66454", "source" : "1369", "target" : "4621", "shared_name" : "27247 (interacts with) 57038", "name" : "27247 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 66454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66450", "source" : "1369", "target" : "3077", "shared_name" : "27247 (interacts with) 6506", "name" : "27247 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 66450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66446", "source" : "1369", "target" : "4061", "shared_name" : "27247 (interacts with) 4705", "name" : "27247 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 66446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66442", "source" : "1369", "target" : "4757", "shared_name" : "27247 (interacts with) 9997", "name" : "27247 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 66442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66438", "source" : "1369", "target" : "3973", "shared_name" : "27247 (interacts with) 55572", "name" : "27247 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 66438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66434", "source" : "1369", "target" : "2009", "shared_name" : "27247 (interacts with) 79133", "name" : "27247 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 66434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66430", "source" : "1369", "target" : "501", "shared_name" : "27247 (interacts with) 65993", "name" : "27247 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 66430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66426", "source" : "1369", "target" : "1561", "shared_name" : "27247 (interacts with) 51117", "name" : "27247 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 66426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66422", "source" : "1369", "target" : "4101", "shared_name" : "27247 (interacts with) 65260", "name" : "27247 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 66422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66418", "source" : "1369", "target" : "5853", "shared_name" : "27247 (interacts with) 4709", "name" : "27247 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 66418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66414", "source" : "1369", "target" : "2109", "shared_name" : "27247 (interacts with) 51103", "name" : "27247 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 66414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66410", "source" : "1369", "target" : "5737", "shared_name" : "27247 (interacts with) 84340", "name" : "27247 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 66410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66406", "source" : "1369", "target" : "2881", "shared_name" : "27247 (interacts with) 5160", "name" : "27247 (interacts with) 5160", "interaction" : "interacts with", "SUID" : 66406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66402", "source" : "1369", "target" : "2457", "shared_name" : "27247 (interacts with) 4143", "name" : "27247 (interacts with) 4143", "interaction" : "interacts with", "SUID" : 66402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66398", "source" : "1369", "target" : "1105", "shared_name" : "27247 (interacts with) 493753", "name" : "27247 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 66398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66394", "source" : "1369", "target" : "2477", "shared_name" : "27247 (interacts with) 57107", "name" : "27247 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 66394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66390", "source" : "1369", "target" : "2321", "shared_name" : "27247 (interacts with) 6509", "name" : "27247 (interacts with) 6509", "interaction" : "interacts with", "SUID" : 66390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66386", "source" : "1369", "target" : "4069", "shared_name" : "27247 (interacts with) 374291", "name" : "27247 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 66386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66382", "source" : "1369", "target" : "2753", "shared_name" : "27247 (interacts with) 4720", "name" : "27247 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 66382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66378", "source" : "1369", "target" : "1053", "shared_name" : "27247 (interacts with) 81689", "name" : "27247 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 66378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66374", "source" : "1369", "target" : "5845", "shared_name" : "27247 (interacts with) 4714", "name" : "27247 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 66374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66370", "source" : "1369", "target" : "1869", "shared_name" : "27247 (interacts with) 4729", "name" : "27247 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 66370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66366", "source" : "1369", "target" : "2285", "shared_name" : "27247 (interacts with) 51300", "name" : "27247 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 66366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66362", "source" : "1369", "target" : "1669", "shared_name" : "27247 (interacts with) 6390", "name" : "27247 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 66362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66358", "source" : "1369", "target" : "1929", "shared_name" : "27247 (interacts with) 51218", "name" : "27247 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 66358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66354", "source" : "1369", "target" : "4017", "shared_name" : "27247 (interacts with) 4719", "name" : "27247 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 66354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66350", "source" : "1369", "target" : "2797", "shared_name" : "27247 (interacts with) 4728", "name" : "27247 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 66350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66346", "source" : "1369", "target" : "2801", "shared_name" : "27247 (interacts with) 4700", "name" : "27247 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 66346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66342", "source" : "1369", "target" : "5505", "shared_name" : "27247 (interacts with) 29078", "name" : "27247 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 66342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66482", "source" : "1365", "target" : "2249", "shared_name" : "125988 (interacts with) 25824", "name" : "125988 (interacts with) 25824", "interaction" : "interacts with", "SUID" : 66482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66478", "source" : "1365", "target" : "5201", "shared_name" : "125988 (interacts with) 353", "name" : "125988 (interacts with) 353", "interaction" : "interacts with", "SUID" : 66478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66474", "source" : "1365", "target" : "685", "shared_name" : "125988 (interacts with) 4282", "name" : "125988 (interacts with) 4282", "interaction" : "interacts with", "SUID" : 66474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66506", "source" : "1357", "target" : "5869", "shared_name" : "58498 (interacts with) 59", "name" : "58498 (interacts with) 59", "interaction" : "interacts with", "SUID" : 66506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66502", "source" : "1357", "target" : "2581", "shared_name" : "58498 (interacts with) 7170", "name" : "58498 (interacts with) 7170", "interaction" : "interacts with", "SUID" : 66502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66498", "source" : "1357", "target" : "3853", "shared_name" : "58498 (interacts with) 6786", "name" : "58498 (interacts with) 6786", "interaction" : "interacts with", "SUID" : 66498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66494", "source" : "1357", "target" : "2873", "shared_name" : "58498 (interacts with) 6261", "name" : "58498 (interacts with) 6261", "interaction" : "interacts with", "SUID" : 66494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66490", "source" : "1357", "target" : "5337", "shared_name" : "58498 (interacts with) 84876", "name" : "58498 (interacts with) 84876", "interaction" : "interacts with", "SUID" : 66490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66486", "source" : "1357", "target" : "2977", "shared_name" : "58498 (interacts with) 4747", "name" : "58498 (interacts with) 4747", "interaction" : "interacts with", "SUID" : 66486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66510", "source" : "1353", "target" : "2509", "shared_name" : "51816 (interacts with) 7204", "name" : "51816 (interacts with) 7204", "interaction" : "interacts with", "SUID" : 66510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66514", "source" : "1349", "target" : "1345", "shared_name" : "6606 (interacts with) 6607", "name" : "6606 (interacts with) 6607", "interaction" : "interacts with", "SUID" : 66514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66518", "source" : "1345", "target" : "1857", "shared_name" : "6607 (interacts with) 9533", "name" : "6607 (interacts with) 9533", "interaction" : "interacts with", "SUID" : 66518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66562", "source" : "1341", "target" : "3237", "shared_name" : "5009 (interacts with) 95", "name" : "5009 (interacts with) 95", "interaction" : "interacts with", "SUID" : 66562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66558", "source" : "1341", "target" : "4253", "shared_name" : "5009 (interacts with) 84706", "name" : "5009 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 66558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66554", "source" : "1341", "target" : "529", "shared_name" : "5009 (interacts with) 23203", "name" : "5009 (interacts with) 23203", "interaction" : "interacts with", "SUID" : 66554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66550", "source" : "1341", "target" : "4353", "shared_name" : "5009 (interacts with) 9512", "name" : "5009 (interacts with) 9512", "interaction" : "interacts with", "SUID" : 66550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66546", "source" : "1341", "target" : "1389", "shared_name" : "5009 (interacts with) 92609", "name" : "5009 (interacts with) 92609", "interaction" : "interacts with", "SUID" : 66546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66542", "source" : "1341", "target" : "349", "shared_name" : "5009 (interacts with) 60386", "name" : "5009 (interacts with) 60386", "interaction" : "interacts with", "SUID" : 66542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66538", "source" : "1341", "target" : "3481", "shared_name" : "5009 (interacts with) 6513", "name" : "5009 (interacts with) 6513", "interaction" : "interacts with", "SUID" : 66538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66534", "source" : "1341", "target" : "1433", "shared_name" : "5009 (interacts with) 6515", "name" : "5009 (interacts with) 6515", "interaction" : "interacts with", "SUID" : 66534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66530", "source" : "1341", "target" : "405", "shared_name" : "5009 (interacts with) 54187", "name" : "5009 (interacts with) 54187", "interaction" : "interacts with", "SUID" : 66530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66526", "source" : "1341", "target" : "721", "shared_name" : "5009 (interacts with) 79731", "name" : "5009 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 66526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66522", "source" : "1341", "target" : "2021", "shared_name" : "5009 (interacts with) 5428", "name" : "5009 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 66522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66582", "source" : "1337", "target" : "5553", "shared_name" : "55863 (interacts with) 55967", "name" : "55863 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 66582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66578", "source" : "1337", "target" : "889", "shared_name" : "55863 (interacts with) 80224", "name" : "55863 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 66578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66574", "source" : "1337", "target" : "2009", "shared_name" : "55863 (interacts with) 79133", "name" : "55863 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 66574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66570", "source" : "1337", "target" : "877", "shared_name" : "55863 (interacts with) 7341", "name" : "55863 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 66570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66566", "source" : "1337", "target" : "1661", "shared_name" : "55863 (interacts with) 91942", "name" : "55863 (interacts with) 91942", "interaction" : "interacts with", "SUID" : 66566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66586", "source" : "1329", "target" : "629", "shared_name" : "26277 (interacts with) 7013", "name" : "26277 (interacts with) 7013", "interaction" : "interacts with", "SUID" : 66586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66602", "source" : "1325", "target" : "5737", "shared_name" : "7284 (interacts with) 84340", "name" : "7284 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 66602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66598", "source" : "1325", "target" : "521", "shared_name" : "7284 (interacts with) 85476", "name" : "7284 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 66598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66594", "source" : "1325", "target" : "721", "shared_name" : "7284 (interacts with) 79731", "name" : "7284 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 66594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66590", "source" : "1325", "target" : "6073", "shared_name" : "7284 (interacts with) 92170", "name" : "7284 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 66590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66762", "source" : "1321", "target" : "5397", "shared_name" : "1778 (interacts with) 85378", "name" : "1778 (interacts with) 85378", "interaction" : "interacts with", "SUID" : 66762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66758", "source" : "1321", "target" : "5713", "shared_name" : "1778 (interacts with) 7531", "name" : "1778 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 66758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66754", "source" : "1321", "target" : "4021", "shared_name" : "1778 (interacts with) 203068", "name" : "1778 (interacts with) 203068", "interaction" : "interacts with", "SUID" : 66754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66750", "source" : "1321", "target" : "2665", "shared_name" : "1778 (interacts with) 27229", "name" : "1778 (interacts with) 27229", "interaction" : "interacts with", "SUID" : 66750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66746", "source" : "1321", "target" : "4245", "shared_name" : "1778 (interacts with) 91147", "name" : "1778 (interacts with) 91147", "interaction" : "interacts with", "SUID" : 66746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66742", "source" : "1321", "target" : "269", "shared_name" : "1778 (interacts with) 51259", "name" : "1778 (interacts with) 51259", "interaction" : "interacts with", "SUID" : 66742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66738", "source" : "1321", "target" : "5969", "shared_name" : "1778 (interacts with) 10382", "name" : "1778 (interacts with) 10382", "interaction" : "interacts with", "SUID" : 66738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66734", "source" : "1321", "target" : "2357", "shared_name" : "1778 (interacts with) 79600", "name" : "1778 (interacts with) 79600", "interaction" : "interacts with", "SUID" : 66734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66730", "source" : "1321", "target" : "545", "shared_name" : "1778 (interacts with) 51014", "name" : "1778 (interacts with) 51014", "interaction" : "interacts with", "SUID" : 66730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66726", "source" : "1321", "target" : "5749", "shared_name" : "1778 (interacts with) 10959", "name" : "1778 (interacts with) 10959", "interaction" : "interacts with", "SUID" : 66726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66722", "source" : "1321", "target" : "3637", "shared_name" : "1778 (interacts with) 6712", "name" : "1778 (interacts with) 6712", "interaction" : "interacts with", "SUID" : 66722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66718", "source" : "1321", "target" : "1633", "shared_name" : "1778 (interacts with) 57731", "name" : "1778 (interacts with) 57731", "interaction" : "interacts with", "SUID" : 66718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66714", "source" : "1321", "target" : "4797", "shared_name" : "1778 (interacts with) 10735", "name" : "1778 (interacts with) 10735", "interaction" : "interacts with", "SUID" : 66714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66710", "source" : "1321", "target" : "4497", "shared_name" : "1778 (interacts with) 8243", "name" : "1778 (interacts with) 8243", "interaction" : "interacts with", "SUID" : 66710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66706", "source" : "1321", "target" : "1973", "shared_name" : "1778 (interacts with) 6709", "name" : "1778 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 66706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66702", "source" : "1321", "target" : "4321", "shared_name" : "1778 (interacts with) 132320", "name" : "1778 (interacts with) 132320", "interaction" : "interacts with", "SUID" : 66702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66698", "source" : "1321", "target" : "4549", "shared_name" : "1778 (interacts with) 5903", "name" : "1778 (interacts with) 5903", "interaction" : "interacts with", "SUID" : 66698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66694", "source" : "1321", "target" : "2341", "shared_name" : "1778 (interacts with) 23322", "name" : "1778 (interacts with) 23322", "interaction" : "interacts with", "SUID" : 66694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66690", "source" : "1321", "target" : "2513", "shared_name" : "1778 (interacts with) 22931", "name" : "1778 (interacts with) 22931", "interaction" : "interacts with", "SUID" : 66690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66686", "source" : "1321", "target" : "5653", "shared_name" : "1778 (interacts with) 22930", "name" : "1778 (interacts with) 22930", "interaction" : "interacts with", "SUID" : 66686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66682", "source" : "1321", "target" : "5137", "shared_name" : "1778 (interacts with) 25782", "name" : "1778 (interacts with) 25782", "interaction" : "interacts with", "SUID" : 66682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66678", "source" : "1321", "target" : "5437", "shared_name" : "1778 (interacts with) 10733", "name" : "1778 (interacts with) 10733", "interaction" : "interacts with", "SUID" : 66678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66674", "source" : "1321", "target" : "5641", "shared_name" : "1778 (interacts with) 5518", "name" : "1778 (interacts with) 5518", "interaction" : "interacts with", "SUID" : 66674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66670", "source" : "1321", "target" : "5037", "shared_name" : "1778 (interacts with) 5515", "name" : "1778 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 66670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66666", "source" : "1321", "target" : "3177", "shared_name" : "1778 (interacts with) 5321", "name" : "1778 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 66666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66662", "source" : "1321", "target" : "2853", "shared_name" : "1778 (interacts with) 8398", "name" : "1778 (interacts with) 8398", "interaction" : "interacts with", "SUID" : 66662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66658", "source" : "1321", "target" : "5009", "shared_name" : "1778 (interacts with) 5241", "name" : "1778 (interacts with) 5241", "interaction" : "interacts with", "SUID" : 66658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66654", "source" : "1321", "target" : "4977", "shared_name" : "1778 (interacts with) 8481", "name" : "1778 (interacts with) 8481", "interaction" : "interacts with", "SUID" : 66654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66650", "source" : "1321", "target" : "4997", "shared_name" : "1778 (interacts with) 54820", "name" : "1778 (interacts with) 54820", "interaction" : "interacts with", "SUID" : 66650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66646", "source" : "1321", "target" : "1293", "shared_name" : "1778 (interacts with) 2908", "name" : "1778 (interacts with) 2908", "interaction" : "interacts with", "SUID" : 66646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66642", "source" : "1321", "target" : "2705", "shared_name" : "1778 (interacts with) 8379", "name" : "1778 (interacts with) 8379", "interaction" : "interacts with", "SUID" : 66642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66638", "source" : "1321", "target" : "3149", "shared_name" : "1778 (interacts with) 3630", "name" : "1778 (interacts with) 3630", "interaction" : "interacts with", "SUID" : 66638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66634", "source" : "1321", "target" : "2641", "shared_name" : "1778 (interacts with) 3123", "name" : "1778 (interacts with) 3123", "interaction" : "interacts with", "SUID" : 66634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66630", "source" : "1321", "target" : "4165", "shared_name" : "1778 (interacts with) 3119", "name" : "1778 (interacts with) 3119", "interaction" : "interacts with", "SUID" : 66630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66626", "source" : "1321", "target" : "5065", "shared_name" : "1778 (interacts with) 3117", "name" : "1778 (interacts with) 3117", "interaction" : "interacts with", "SUID" : 66626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66622", "source" : "1321", "target" : "1997", "shared_name" : "1778 (interacts with) 2348", "name" : "1778 (interacts with) 2348", "interaction" : "interacts with", "SUID" : 66622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66618", "source" : "1321", "target" : "3785", "shared_name" : "1778 (interacts with) 1781", "name" : "1778 (interacts with) 1781", "interaction" : "interacts with", "SUID" : 66618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66614", "source" : "1321", "target" : "6053", "shared_name" : "1778 (interacts with) 1041", "name" : "1778 (interacts with) 1041", "interaction" : "interacts with", "SUID" : 66614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66610", "source" : "1321", "target" : "5481", "shared_name" : "1778 (interacts with) 116228", "name" : "1778 (interacts with) 116228", "interaction" : "interacts with", "SUID" : 66610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66606", "source" : "1321", "target" : "5429", "shared_name" : "1778 (interacts with) 5048", "name" : "1778 (interacts with) 5048", "interaction" : "interacts with", "SUID" : 66606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66822", "source" : "1317", "target" : "4021", "shared_name" : "57545 (interacts with) 203068", "name" : "57545 (interacts with) 203068", "interaction" : "interacts with", "SUID" : 66822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66818", "source" : "1317", "target" : "5969", "shared_name" : "57545 (interacts with) 10382", "name" : "57545 (interacts with) 10382", "interaction" : "interacts with", "SUID" : 66818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66814", "source" : "1317", "target" : "5713", "shared_name" : "57545 (interacts with) 7531", "name" : "57545 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 66814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66810", "source" : "1317", "target" : "269", "shared_name" : "57545 (interacts with) 51259", "name" : "57545 (interacts with) 51259", "interaction" : "interacts with", "SUID" : 66810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66806", "source" : "1317", "target" : "2357", "shared_name" : "57545 (interacts with) 79600", "name" : "57545 (interacts with) 79600", "interaction" : "interacts with", "SUID" : 66806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66802", "source" : "1317", "target" : "4245", "shared_name" : "57545 (interacts with) 91147", "name" : "57545 (interacts with) 91147", "interaction" : "interacts with", "SUID" : 66802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66798", "source" : "1317", "target" : "2341", "shared_name" : "57545 (interacts with) 23322", "name" : "57545 (interacts with) 23322", "interaction" : "interacts with", "SUID" : 66798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66794", "source" : "1317", "target" : "4321", "shared_name" : "57545 (interacts with) 132320", "name" : "57545 (interacts with) 132320", "interaction" : "interacts with", "SUID" : 66794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66790", "source" : "1317", "target" : "5429", "shared_name" : "57545 (interacts with) 5048", "name" : "57545 (interacts with) 5048", "interaction" : "interacts with", "SUID" : 66790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66786", "source" : "1317", "target" : "5641", "shared_name" : "57545 (interacts with) 5518", "name" : "57545 (interacts with) 5518", "interaction" : "interacts with", "SUID" : 66786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66782", "source" : "1317", "target" : "5437", "shared_name" : "57545 (interacts with) 10733", "name" : "57545 (interacts with) 10733", "interaction" : "interacts with", "SUID" : 66782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66778", "source" : "1317", "target" : "4997", "shared_name" : "57545 (interacts with) 54820", "name" : "57545 (interacts with) 54820", "interaction" : "interacts with", "SUID" : 66778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66774", "source" : "1317", "target" : "4977", "shared_name" : "57545 (interacts with) 8481", "name" : "57545 (interacts with) 8481", "interaction" : "interacts with", "SUID" : 66774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66770", "source" : "1317", "target" : "3785", "shared_name" : "57545 (interacts with) 1781", "name" : "57545 (interacts with) 1781", "interaction" : "interacts with", "SUID" : 66770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66766", "source" : "1317", "target" : "1321", "shared_name" : "57545 (interacts with) 1778", "name" : "57545 (interacts with) 1778", "interaction" : "interacts with", "SUID" : 66766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66926", "source" : "1313", "target" : "3161", "shared_name" : "1727 (interacts with) 2821", "name" : "1727 (interacts with) 2821", "interaction" : "interacts with", "SUID" : 66926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66922", "source" : "1313", "target" : "2421", "shared_name" : "1727 (interacts with) 2673", "name" : "1727 (interacts with) 2673", "interaction" : "interacts with", "SUID" : 66922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66918", "source" : "1313", "target" : "897", "shared_name" : "1727 (interacts with) 3073", "name" : "1727 (interacts with) 3073", "interaction" : "interacts with", "SUID" : 66918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66914", "source" : "1313", "target" : "2633", "shared_name" : "1727 (interacts with) 29926", "name" : "1727 (interacts with) 29926", "interaction" : "interacts with", "SUID" : 66914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66910", "source" : "1313", "target" : "5717", "shared_name" : "1727 (interacts with) 29925", "name" : "1727 (interacts with) 29925", "interaction" : "interacts with", "SUID" : 66910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66906", "source" : "1313", "target" : "3193", "shared_name" : "1727 (interacts with) 197258", "name" : "1727 (interacts with) 197258", "interaction" : "interacts with", "SUID" : 66906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66902", "source" : "1313", "target" : "5401", "shared_name" : "1727 (interacts with) 5373", "name" : "1727 (interacts with) 5373", "interaction" : "interacts with", "SUID" : 66902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66898", "source" : "1313", "target" : "405", "shared_name" : "1727 (interacts with) 54187", "name" : "1727 (interacts with) 54187", "interaction" : "interacts with", "SUID" : 66898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66894", "source" : "1313", "target" : "285", "shared_name" : "1727 (interacts with) 5238", "name" : "1727 (interacts with) 5238", "interaction" : "interacts with", "SUID" : 66894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66890", "source" : "1313", "target" : "1385", "shared_name" : "1727 (interacts with) 6520", "name" : "1727 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 66890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66886", "source" : "1313", "target" : "3649", "shared_name" : "1727 (interacts with) 51520", "name" : "1727 (interacts with) 51520", "interaction" : "interacts with", "SUID" : 66886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66882", "source" : "1313", "target" : "3641", "shared_name" : "1727 (interacts with) 4141", "name" : "1727 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 66882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66878", "source" : "1313", "target" : "5029", "shared_name" : "1727 (interacts with) 4842", "name" : "1727 (interacts with) 4842", "interaction" : "interacts with", "SUID" : 66878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66874", "source" : "1313", "target" : "4681", "shared_name" : "1727 (interacts with) 4843", "name" : "1727 (interacts with) 4843", "interaction" : "interacts with", "SUID" : 66874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66870", "source" : "1313", "target" : "2005", "shared_name" : "1727 (interacts with) 4846", "name" : "1727 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 66870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66866", "source" : "1313", "target" : "1089", "shared_name" : "1727 (interacts with) 5917", "name" : "1727 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 66866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66862", "source" : "1313", "target" : "3169", "shared_name" : "1727 (interacts with) 1615", "name" : "1727 (interacts with) 1615", "interaction" : "interacts with", "SUID" : 66862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66858", "source" : "1313", "target" : "4593", "shared_name" : "1727 (interacts with) 2058", "name" : "1727 (interacts with) 2058", "interaction" : "interacts with", "SUID" : 66858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66854", "source" : "1313", "target" : "4597", "shared_name" : "1727 (interacts with) 3376", "name" : "1727 (interacts with) 3376", "interaction" : "interacts with", "SUID" : 66854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66850", "source" : "1313", "target" : "6157", "shared_name" : "1727 (interacts with) 3735", "name" : "1727 (interacts with) 3735", "interaction" : "interacts with", "SUID" : 66850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66846", "source" : "1313", "target" : "2097", "shared_name" : "1727 (interacts with) 10166", "name" : "1727 (interacts with) 10166", "interaction" : "interacts with", "SUID" : 66846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66842", "source" : "1313", "target" : "4065", "shared_name" : "1727 (interacts with) 7124", "name" : "1727 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 66842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66838", "source" : "1313", "target" : "2449", "shared_name" : "1727 (interacts with) 6843", "name" : "1727 (interacts with) 6843", "interaction" : "interacts with", "SUID" : 66838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66834", "source" : "1313", "target" : "6009", "shared_name" : "1727 (interacts with) 64849", "name" : "1727 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 66834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66830", "source" : "1313", "target" : "4625", "shared_name" : "1727 (interacts with) 6785", "name" : "1727 (interacts with) 6785", "interaction" : "interacts with", "SUID" : 66830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66826", "source" : "1313", "target" : "1205", "shared_name" : "1727 (interacts with) 23230", "name" : "1727 (interacts with) 23230", "interaction" : "interacts with", "SUID" : 66826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67106", "source" : "1305", "target" : "4949", "shared_name" : "25 (interacts with) 5970", "name" : "25 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 67106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67102", "source" : "1305", "target" : "5225", "shared_name" : "25 (interacts with) 5290", "name" : "25 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 67102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67098", "source" : "1305", "target" : "6105", "shared_name" : "25 (interacts with) 28996", "name" : "25 (interacts with) 28996", "interaction" : "interacts with", "SUID" : 67098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67094", "source" : "1305", "target" : "3305", "shared_name" : "25 (interacts with) 7040", "name" : "25 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 67094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67090", "source" : "1305", "target" : "2153", "shared_name" : "25 (interacts with) 7042", "name" : "25 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 67090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67086", "source" : "1305", "target" : "1069", "shared_name" : "25 (interacts with) 5879", "name" : "25 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 67086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67082", "source" : "1305", "target" : "3017", "shared_name" : "25 (interacts with) 4790", "name" : "25 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 67082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67078", "source" : "1305", "target" : "5625", "shared_name" : "25 (interacts with) 595", "name" : "25 (interacts with) 595", "interaction" : "interacts with", "SUID" : 67078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67074", "source" : "1305", "target" : "4533", "shared_name" : "25 (interacts with) 4089", "name" : "25 (interacts with) 4089", "interaction" : "interacts with", "SUID" : 67074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67070", "source" : "1305", "target" : "981", "shared_name" : "25 (interacts with) 7157", "name" : "25 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 67070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67066", "source" : "1305", "target" : "2625", "shared_name" : "25 (interacts with) 3065", "name" : "25 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 67066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67062", "source" : "1305", "target" : "3409", "shared_name" : "25 (interacts with) 7043", "name" : "25 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 67062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67058", "source" : "1305", "target" : "2085", "shared_name" : "25 (interacts with) 2932", "name" : "25 (interacts with) 2932", "interaction" : "interacts with", "SUID" : 67058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67054", "source" : "1305", "target" : "6169", "shared_name" : "25 (interacts with) 4088", "name" : "25 (interacts with) 4088", "interaction" : "interacts with", "SUID" : 67054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67050", "source" : "1305", "target" : "4853", "shared_name" : "25 (interacts with) 545", "name" : "25 (interacts with) 545", "interaction" : "interacts with", "SUID" : 67050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67046", "source" : "1305", "target" : "5949", "shared_name" : "25 (interacts with) 672", "name" : "25 (interacts with) 672", "interaction" : "interacts with", "SUID" : 67046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67042", "source" : "1305", "target" : "729", "shared_name" : "25 (interacts with) 5888", "name" : "25 (interacts with) 5888", "interaction" : "interacts with", "SUID" : 67042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67038", "source" : "1305", "target" : "237", "shared_name" : "25 (interacts with) 5649", "name" : "25 (interacts with) 5649", "interaction" : "interacts with", "SUID" : 67038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67034", "source" : "1305", "target" : "5621", "shared_name" : "25 (interacts with) 25885", "name" : "25 (interacts with) 25885", "interaction" : "interacts with", "SUID" : 67034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67030", "source" : "1305", "target" : "5429", "shared_name" : "25 (interacts with) 5048", "name" : "25 (interacts with) 5048", "interaction" : "interacts with", "SUID" : 67030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67026", "source" : "1305", "target" : "1857", "shared_name" : "25 (interacts with) 9533", "name" : "25 (interacts with) 9533", "interaction" : "interacts with", "SUID" : 67026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67022", "source" : "1305", "target" : "2389", "shared_name" : "25 (interacts with) 6925", "name" : "25 (interacts with) 6925", "interaction" : "interacts with", "SUID" : 67022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67018", "source" : "1305", "target" : "409", "shared_name" : "25 (interacts with) 10558", "name" : "25 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 67018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67014", "source" : "1305", "target" : "4041", "shared_name" : "25 (interacts with) 847", "name" : "25 (interacts with) 847", "interaction" : "interacts with", "SUID" : 67014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67010", "source" : "1305", "target" : "3925", "shared_name" : "25 (interacts with) 1051", "name" : "25 (interacts with) 1051", "interaction" : "interacts with", "SUID" : 67010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67006", "source" : "1305", "target" : "1709", "shared_name" : "25 (interacts with) 2074", "name" : "25 (interacts with) 2074", "interaction" : "interacts with", "SUID" : 67006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67002", "source" : "1305", "target" : "2081", "shared_name" : "25 (interacts with) 5468", "name" : "25 (interacts with) 5468", "interaction" : "interacts with", "SUID" : 67002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66998", "source" : "1305", "target" : "2173", "shared_name" : "25 (interacts with) 5159", "name" : "25 (interacts with) 5159", "interaction" : "interacts with", "SUID" : 66998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66994", "source" : "1305", "target" : "2245", "shared_name" : "25 (interacts with) 5587", "name" : "25 (interacts with) 5587", "interaction" : "interacts with", "SUID" : 66994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66990", "source" : "1305", "target" : "2481", "shared_name" : "25 (interacts with) 2475", "name" : "25 (interacts with) 2475", "interaction" : "interacts with", "SUID" : 66990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66986", "source" : "1305", "target" : "4957", "shared_name" : "25 (interacts with) 5071", "name" : "25 (interacts with) 5071", "interaction" : "interacts with", "SUID" : 66986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66982", "source" : "1305", "target" : "1701", "shared_name" : "25 (interacts with) 5777", "name" : "25 (interacts with) 5777", "interaction" : "interacts with", "SUID" : 66982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66978", "source" : "1305", "target" : "1621", "shared_name" : "25 (interacts with) 1432", "name" : "25 (interacts with) 1432", "interaction" : "interacts with", "SUID" : 66978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66974", "source" : "1305", "target" : "5729", "shared_name" : "25 (interacts with) 861", "name" : "25 (interacts with) 861", "interaction" : "interacts with", "SUID" : 66974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66970", "source" : "1305", "target" : "5185", "shared_name" : "25 (interacts with) 1499", "name" : "25 (interacts with) 1499", "interaction" : "interacts with", "SUID" : 66970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66966", "source" : "1305", "target" : "6021", "shared_name" : "25 (interacts with) 26999", "name" : "25 (interacts with) 26999", "interaction" : "interacts with", "SUID" : 66966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66962", "source" : "1305", "target" : "1405", "shared_name" : "25 (interacts with) 998", "name" : "25 (interacts with) 998", "interaction" : "interacts with", "SUID" : 66962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66958", "source" : "1305", "target" : "1253", "shared_name" : "25 (interacts with) 2876", "name" : "25 (interacts with) 2876", "interaction" : "interacts with", "SUID" : 66958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66954", "source" : "1305", "target" : "1973", "shared_name" : "25 (interacts with) 6709", "name" : "25 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 66954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66950", "source" : "1305", "target" : "4213", "shared_name" : "25 (interacts with) 5295", "name" : "25 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 66950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66946", "source" : "1305", "target" : "5273", "shared_name" : "25 (interacts with) 2048", "name" : "25 (interacts with) 2048", "interaction" : "interacts with", "SUID" : 66946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66942", "source" : "1305", "target" : "517", "shared_name" : "25 (interacts with) 5052", "name" : "25 (interacts with) 5052", "interaction" : "interacts with", "SUID" : 66942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66938", "source" : "1305", "target" : "2613", "shared_name" : "25 (interacts with) 472", "name" : "25 (interacts with) 472", "interaction" : "interacts with", "SUID" : 66938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66934", "source" : "1305", "target" : "4237", "shared_name" : "25 (interacts with) 4914", "name" : "25 (interacts with) 4914", "interaction" : "interacts with", "SUID" : 66934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "66930", "source" : "1305", "target" : "4197", "shared_name" : "25 (interacts with) 1398", "name" : "25 (interacts with) 1398", "interaction" : "interacts with", "SUID" : 66930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67142", "source" : "1301", "target" : "3773", "shared_name" : "5095 (interacts with) 540", "name" : "5095 (interacts with) 540", "interaction" : "interacts with", "SUID" : 67142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67138", "source" : "1301", "target" : "493", "shared_name" : "5095 (interacts with) 594", "name" : "5095 (interacts with) 594", "interaction" : "interacts with", "SUID" : 67138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67134", "source" : "1301", "target" : "485", "shared_name" : "5095 (interacts with) 593", "name" : "5095 (interacts with) 593", "interaction" : "interacts with", "SUID" : 67134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67130", "source" : "1301", "target" : "2025", "shared_name" : "5095 (interacts with) 549", "name" : "5095 (interacts with) 549", "interaction" : "interacts with", "SUID" : 67130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67126", "source" : "1301", "target" : "3425", "shared_name" : "5095 (interacts with) 8803", "name" : "5095 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 67126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67122", "source" : "1301", "target" : "2925", "shared_name" : "5095 (interacts with) 8802", "name" : "5095 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 67122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67118", "source" : "1301", "target" : "4941", "shared_name" : "5095 (interacts with) 6342", "name" : "5095 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 67118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67114", "source" : "1301", "target" : "2277", "shared_name" : "5095 (interacts with) 686", "name" : "5095 (interacts with) 686", "interaction" : "interacts with", "SUID" : 67114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67110", "source" : "1301", "target" : "1021", "shared_name" : "5095 (interacts with) 5096", "name" : "5095 (interacts with) 5096", "interaction" : "interacts with", "SUID" : 67110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67154", "source" : "1297", "target" : "997", "shared_name" : "6678 (interacts with) 7431", "name" : "6678 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 67154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67150", "source" : "1297", "target" : "1549", "shared_name" : "6678 (interacts with) 7070", "name" : "6678 (interacts with) 7070", "interaction" : "interacts with", "SUID" : 67150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67146", "source" : "1297", "target" : "4437", "shared_name" : "6678 (interacts with) 84168", "name" : "6678 (interacts with) 84168", "interaction" : "interacts with", "SUID" : 67146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67310", "source" : "1293", "target" : "4213", "shared_name" : "2908 (interacts with) 5295", "name" : "2908 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 67310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67306", "source" : "1293", "target" : "5225", "shared_name" : "2908 (interacts with) 5290", "name" : "2908 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 67306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67302", "source" : "1293", "target" : "3017", "shared_name" : "2908 (interacts with) 4790", "name" : "2908 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 67302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67298", "source" : "1293", "target" : "4949", "shared_name" : "2908 (interacts with) 5970", "name" : "2908 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 67298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67294", "source" : "1293", "target" : "1465", "shared_name" : "2908 (interacts with) 9839", "name" : "2908 (interacts with) 9839", "interaction" : "interacts with", "SUID" : 67294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67290", "source" : "1293", "target" : "3841", "shared_name" : "2908 (interacts with) 9444", "name" : "2908 (interacts with) 9444", "interaction" : "interacts with", "SUID" : 67290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67286", "source" : "1293", "target" : "1201", "shared_name" : "2908 (interacts with) 805", "name" : "2908 (interacts with) 805", "interaction" : "interacts with", "SUID" : 67286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67282", "source" : "1293", "target" : "993", "shared_name" : "2908 (interacts with) 801", "name" : "2908 (interacts with) 801", "interaction" : "interacts with", "SUID" : 67282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67278", "source" : "1293", "target" : "1241", "shared_name" : "2908 (interacts with) 808", "name" : "2908 (interacts with) 808", "interaction" : "interacts with", "SUID" : 67278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67274", "source" : "1293", "target" : "4065", "shared_name" : "2908 (interacts with) 7124", "name" : "2908 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 67274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67270", "source" : "1293", "target" : "4533", "shared_name" : "2908 (interacts with) 4089", "name" : "2908 (interacts with) 4089", "interaction" : "interacts with", "SUID" : 67270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67266", "source" : "1293", "target" : "6169", "shared_name" : "2908 (interacts with) 4088", "name" : "2908 (interacts with) 4088", "interaction" : "interacts with", "SUID" : 67266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67262", "source" : "1293", "target" : "2005", "shared_name" : "2908 (interacts with) 4846", "name" : "2908 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 67262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67258", "source" : "1293", "target" : "569", "shared_name" : "2908 (interacts with) 7048", "name" : "2908 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 67258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67254", "source" : "1293", "target" : "4629", "shared_name" : "2908 (interacts with) 6605", "name" : "2908 (interacts with) 6605", "interaction" : "interacts with", "SUID" : 67254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67250", "source" : "1293", "target" : "2081", "shared_name" : "2908 (interacts with) 5468", "name" : "2908 (interacts with) 5468", "interaction" : "interacts with", "SUID" : 67250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67246", "source" : "1293", "target" : "2305", "shared_name" : "2908 (interacts with) 6908", "name" : "2908 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 67246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67242", "source" : "1293", "target" : "3093", "shared_name" : "2908 (interacts with) 6597", "name" : "2908 (interacts with) 6597", "interaction" : "interacts with", "SUID" : 67242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67238", "source" : "1293", "target" : "525", "shared_name" : "2908 (interacts with) 6598", "name" : "2908 (interacts with) 6598", "interaction" : "interacts with", "SUID" : 67238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67234", "source" : "1293", "target" : "853", "shared_name" : "2908 (interacts with) 60", "name" : "2908 (interacts with) 60", "interaction" : "interacts with", "SUID" : 67234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67230", "source" : "1293", "target" : "3105", "shared_name" : "2908 (interacts with) 8289", "name" : "2908 (interacts with) 8289", "interaction" : "interacts with", "SUID" : 67230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67226", "source" : "1293", "target" : "5941", "shared_name" : "2908 (interacts with) 5914", "name" : "2908 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 67226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67222", "source" : "1293", "target" : "5009", "shared_name" : "2908 (interacts with) 5241", "name" : "2908 (interacts with) 5241", "interaction" : "interacts with", "SUID" : 67222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67218", "source" : "1293", "target" : "3825", "shared_name" : "2908 (interacts with) 5915", "name" : "2908 (interacts with) 5915", "interaction" : "interacts with", "SUID" : 67218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67214", "source" : "1293", "target" : "1913", "shared_name" : "2908 (interacts with) 3172", "name" : "2908 (interacts with) 3172", "interaction" : "interacts with", "SUID" : 67214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67210", "source" : "1293", "target" : "4589", "shared_name" : "2908 (interacts with) 8431", "name" : "2908 (interacts with) 8431", "interaction" : "interacts with", "SUID" : 67210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67206", "source" : "1293", "target" : "1829", "shared_name" : "2908 (interacts with) 7421", "name" : "2908 (interacts with) 7421", "interaction" : "interacts with", "SUID" : 67206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67202", "source" : "1293", "target" : "6133", "shared_name" : "2908 (interacts with) 54658", "name" : "2908 (interacts with) 54658", "interaction" : "interacts with", "SUID" : 67202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67198", "source" : "1293", "target" : "5053", "shared_name" : "2908 (interacts with) 857", "name" : "2908 (interacts with) 857", "interaction" : "interacts with", "SUID" : 67198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67194", "source" : "1293", "target" : "2625", "shared_name" : "2908 (interacts with) 3065", "name" : "2908 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 67194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67190", "source" : "1293", "target" : "3033", "shared_name" : "2908 (interacts with) 1020", "name" : "2908 (interacts with) 1020", "interaction" : "interacts with", "SUID" : 67190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67186", "source" : "1293", "target" : "4233", "shared_name" : "2908 (interacts with) 367", "name" : "2908 (interacts with) 367", "interaction" : "interacts with", "SUID" : 67186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67182", "source" : "1293", "target" : "3925", "shared_name" : "2908 (interacts with) 1051", "name" : "2908 (interacts with) 1051", "interaction" : "interacts with", "SUID" : 67182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67178", "source" : "1293", "target" : "5441", "shared_name" : "2908 (interacts with) 8864", "name" : "2908 (interacts with) 8864", "interaction" : "interacts with", "SUID" : 67178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67174", "source" : "1293", "target" : "877", "shared_name" : "2908 (interacts with) 7341", "name" : "2908 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 67174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67170", "source" : "1293", "target" : "5333", "shared_name" : "2908 (interacts with) 5591", "name" : "2908 (interacts with) 5591", "interaction" : "interacts with", "SUID" : 67170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67166", "source" : "1293", "target" : "1621", "shared_name" : "2908 (interacts with) 1432", "name" : "2908 (interacts with) 1432", "interaction" : "interacts with", "SUID" : 67166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67162", "source" : "1293", "target" : "5185", "shared_name" : "2908 (interacts with) 1499", "name" : "2908 (interacts with) 1499", "interaction" : "interacts with", "SUID" : 67162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67158", "source" : "1293", "target" : "4097", "shared_name" : "2908 (interacts with) 9611", "name" : "2908 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 67158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67326", "source" : "1289", "target" : "2925", "shared_name" : "6392 (interacts with) 8802", "name" : "6392 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 67326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67322", "source" : "1289", "target" : "3425", "shared_name" : "6392 (interacts with) 8803", "name" : "6392 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 67322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67318", "source" : "1289", "target" : "5129", "shared_name" : "6392 (interacts with) 57465", "name" : "6392 (interacts with) 57465", "interaction" : "interacts with", "SUID" : 67318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67314", "source" : "1289", "target" : "1669", "shared_name" : "6392 (interacts with) 6390", "name" : "6392 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 67314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67358", "source" : "1285", "target" : "3105", "shared_name" : "7249 (interacts with) 8289", "name" : "7249 (interacts with) 8289", "interaction" : "interacts with", "SUID" : 67358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67354", "source" : "1285", "target" : "4097", "shared_name" : "7249 (interacts with) 9611", "name" : "7249 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 67354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67350", "source" : "1285", "target" : "1829", "shared_name" : "7249 (interacts with) 7421", "name" : "7249 (interacts with) 7421", "interaction" : "interacts with", "SUID" : 67350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67346", "source" : "1285", "target" : "4697", "shared_name" : "7249 (interacts with) 7534", "name" : "7249 (interacts with) 7534", "interaction" : "interacts with", "SUID" : 67346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67342", "source" : "1285", "target" : "5693", "shared_name" : "7249 (interacts with) 92335", "name" : "7249 (interacts with) 92335", "interaction" : "interacts with", "SUID" : 67342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67338", "source" : "1285", "target" : "5713", "shared_name" : "7249 (interacts with) 7531", "name" : "7249 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 67338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67334", "source" : "1285", "target" : "1265", "shared_name" : "7249 (interacts with) 79594", "name" : "7249 (interacts with) 79594", "interaction" : "interacts with", "SUID" : 67334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67330", "source" : "1285", "target" : "553", "shared_name" : "7249 (interacts with) 7248", "name" : "7249 (interacts with) 7248", "interaction" : "interacts with", "SUID" : 67330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67366", "source" : "1281", "target" : "2077", "shared_name" : "171023 (interacts with) 7528", "name" : "171023 (interacts with) 7528", "interaction" : "interacts with", "SUID" : 67366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67362", "source" : "1281", "target" : "2533", "shared_name" : "171023 (interacts with) 1030", "name" : "171023 (interacts with) 1030", "interaction" : "interacts with", "SUID" : 67362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67430", "source" : "1277", "target" : "3461", "shared_name" : "79143 (interacts with) 5538", "name" : "79143 (interacts with) 5538", "interaction" : "interacts with", "SUID" : 67430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67426", "source" : "1277", "target" : "4941", "shared_name" : "79143 (interacts with) 6342", "name" : "79143 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 67426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67422", "source" : "1277", "target" : "681", "shared_name" : "79143 (interacts with) 6646", "name" : "79143 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 67422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67418", "source" : "1277", "target" : "409", "shared_name" : "79143 (interacts with) 10558", "name" : "79143 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 67418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67414", "source" : "1277", "target" : "3425", "shared_name" : "79143 (interacts with) 8803", "name" : "79143 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 67414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67410", "source" : "1277", "target" : "2925", "shared_name" : "79143 (interacts with) 8802", "name" : "79143 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 67410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67406", "source" : "1277", "target" : "2853", "shared_name" : "79143 (interacts with) 8398", "name" : "79143 (interacts with) 8398", "interaction" : "interacts with", "SUID" : 67406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67402", "source" : "1277", "target" : "3893", "shared_name" : "79143 (interacts with) 151056", "name" : "79143 (interacts with) 151056", "interaction" : "interacts with", "SUID" : 67402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67398", "source" : "1277", "target" : "985", "shared_name" : "79143 (interacts with) 9091", "name" : "79143 (interacts with) 9091", "interaction" : "interacts with", "SUID" : 67398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67394", "source" : "1277", "target" : "385", "shared_name" : "79143 (interacts with) 5319", "name" : "79143 (interacts with) 5319", "interaction" : "interacts with", "SUID" : 67394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67390", "source" : "1277", "target" : "1545", "shared_name" : "79143 (interacts with) 5277", "name" : "79143 (interacts with) 5277", "interaction" : "interacts with", "SUID" : 67390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67386", "source" : "1277", "target" : "4989", "shared_name" : "79143 (interacts with) 51227", "name" : "79143 (interacts with) 51227", "interaction" : "interacts with", "SUID" : 67386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67382", "source" : "1277", "target" : "3421", "shared_name" : "79143 (interacts with) 4967", "name" : "79143 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 67382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67378", "source" : "1277", "target" : "5049", "shared_name" : "79143 (interacts with) 6697", "name" : "79143 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 67378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67374", "source" : "1277", "target" : "2965", "shared_name" : "79143 (interacts with) 22880", "name" : "79143 (interacts with) 22880", "interaction" : "interacts with", "SUID" : 67374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67370", "source" : "1277", "target" : "989", "shared_name" : "79143 (interacts with) 5297", "name" : "79143 (interacts with) 5297", "interaction" : "interacts with", "SUID" : 67370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67434", "source" : "1273", "target" : "3981", "shared_name" : "10059 (interacts with) 1785", "name" : "10059 (interacts with) 1785", "interaction" : "interacts with", "SUID" : 67434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67494", "source" : "1269", "target" : "545", "shared_name" : "9276 (interacts with) 51014", "name" : "9276 (interacts with) 51014", "interaction" : "interacts with", "SUID" : 67494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67490", "source" : "1269", "target" : "5749", "shared_name" : "9276 (interacts with) 10959", "name" : "9276 (interacts with) 10959", "interaction" : "interacts with", "SUID" : 67490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67486", "source" : "1269", "target" : "3637", "shared_name" : "9276 (interacts with) 6712", "name" : "9276 (interacts with) 6712", "interaction" : "interacts with", "SUID" : 67486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67482", "source" : "1269", "target" : "1633", "shared_name" : "9276 (interacts with) 57731", "name" : "9276 (interacts with) 57731", "interaction" : "interacts with", "SUID" : 67482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67478", "source" : "1269", "target" : "1973", "shared_name" : "9276 (interacts with) 6709", "name" : "9276 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 67478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67474", "source" : "1269", "target" : "4657", "shared_name" : "9276 (interacts with) 64837", "name" : "9276 (interacts with) 64837", "interaction" : "interacts with", "SUID" : 67474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67470", "source" : "1269", "target" : "4985", "shared_name" : "9276 (interacts with) 3798", "name" : "9276 (interacts with) 3798", "interaction" : "interacts with", "SUID" : 67470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67466", "source" : "1269", "target" : "1961", "shared_name" : "9276 (interacts with) 23095", "name" : "9276 (interacts with) 23095", "interaction" : "interacts with", "SUID" : 67466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67462", "source" : "1269", "target" : "3597", "shared_name" : "9276 (interacts with) 10749", "name" : "9276 (interacts with) 10749", "interaction" : "interacts with", "SUID" : 67462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67458", "source" : "1269", "target" : "657", "shared_name" : "9276 (interacts with) 547", "name" : "9276 (interacts with) 547", "interaction" : "interacts with", "SUID" : 67458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67454", "source" : "1269", "target" : "3149", "shared_name" : "9276 (interacts with) 3630", "name" : "9276 (interacts with) 3630", "interaction" : "interacts with", "SUID" : 67454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67450", "source" : "1269", "target" : "4269", "shared_name" : "9276 (interacts with) 3832", "name" : "9276 (interacts with) 3832", "interaction" : "interacts with", "SUID" : 67450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67446", "source" : "1269", "target" : "1997", "shared_name" : "9276 (interacts with) 2348", "name" : "9276 (interacts with) 2348", "interaction" : "interacts with", "SUID" : 67446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67442", "source" : "1269", "target" : "3785", "shared_name" : "9276 (interacts with) 1781", "name" : "9276 (interacts with) 1781", "interaction" : "interacts with", "SUID" : 67442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67438", "source" : "1269", "target" : "1321", "shared_name" : "9276 (interacts with) 1778", "name" : "9276 (interacts with) 1778", "interaction" : "interacts with", "SUID" : 67438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67558", "source" : "1261", "target" : "5937", "shared_name" : "57192 (interacts with) 8120", "name" : "57192 (interacts with) 8120", "interaction" : "interacts with", "SUID" : 67558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67554", "source" : "1261", "target" : "3693", "shared_name" : "57192 (interacts with) 8943", "name" : "57192 (interacts with) 8943", "interaction" : "interacts with", "SUID" : 67554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67550", "source" : "1261", "target" : "1445", "shared_name" : "57192 (interacts with) 9179", "name" : "57192 (interacts with) 9179", "interaction" : "interacts with", "SUID" : 67550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67546", "source" : "1261", "target" : "1677", "shared_name" : "57192 (interacts with) 8905", "name" : "57192 (interacts with) 8905", "interaction" : "interacts with", "SUID" : 67546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67542", "source" : "1261", "target" : "2233", "shared_name" : "57192 (interacts with) 9516", "name" : "57192 (interacts with) 9516", "interaction" : "interacts with", "SUID" : 67542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67538", "source" : "1261", "target" : "4393", "shared_name" : "57192 (interacts with) 950", "name" : "57192 (interacts with) 950", "interaction" : "interacts with", "SUID" : 67538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67534", "source" : "1261", "target" : "997", "shared_name" : "57192 (interacts with) 7431", "name" : "57192 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 67534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67530", "source" : "1261", "target" : "2581", "shared_name" : "57192 (interacts with) 7170", "name" : "57192 (interacts with) 7170", "interaction" : "interacts with", "SUID" : 67530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67526", "source" : "1261", "target" : "5989", "shared_name" : "57192 (interacts with) 7273", "name" : "57192 (interacts with) 7273", "interaction" : "interacts with", "SUID" : 67526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67522", "source" : "1261", "target" : "5785", "shared_name" : "57192 (interacts with) 6857", "name" : "57192 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 67522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67518", "source" : "1261", "target" : "5929", "shared_name" : "57192 (interacts with) 6616", "name" : "57192 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 67518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67514", "source" : "1261", "target" : "609", "shared_name" : "57192 (interacts with) 6812", "name" : "57192 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 67514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67510", "source" : "1261", "target" : "3177", "shared_name" : "57192 (interacts with) 5321", "name" : "57192 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 67510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67506", "source" : "1261", "target" : "3593", "shared_name" : "57192 (interacts with) 5530", "name" : "57192 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 67506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67502", "source" : "1261", "target" : "1357", "shared_name" : "57192 (interacts with) 58498", "name" : "57192 (interacts with) 58498", "interaction" : "interacts with", "SUID" : 67502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67498", "source" : "1261", "target" : "565", "shared_name" : "57192 (interacts with) 4772", "name" : "57192 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 67498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67594", "source" : "1257", "target" : "957", "shared_name" : "3098 (interacts with) 5230", "name" : "3098 (interacts with) 5230", "interaction" : "interacts with", "SUID" : 67594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67590", "source" : "1257", "target" : "4577", "shared_name" : "3098 (interacts with) 7167", "name" : "3098 (interacts with) 7167", "interaction" : "interacts with", "SUID" : 67590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67586", "source" : "1257", "target" : "3481", "shared_name" : "3098 (interacts with) 6513", "name" : "3098 (interacts with) 6513", "interaction" : "interacts with", "SUID" : 67586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67582", "source" : "1257", "target" : "741", "shared_name" : "3098 (interacts with) 4830", "name" : "3098 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 67582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67578", "source" : "1257", "target" : "3605", "shared_name" : "3098 (interacts with) 7841", "name" : "3098 (interacts with) 7841", "interaction" : "interacts with", "SUID" : 67578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67574", "source" : "1257", "target" : "3653", "shared_name" : "3098 (interacts with) 8898", "name" : "3098 (interacts with) 8898", "interaction" : "interacts with", "SUID" : 67574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67570", "source" : "1257", "target" : "3977", "shared_name" : "3098 (interacts with) 51477", "name" : "3098 (interacts with) 51477", "interaction" : "interacts with", "SUID" : 67570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67566", "source" : "1257", "target" : "5605", "shared_name" : "3098 (interacts with) 51601", "name" : "3098 (interacts with) 51601", "interaction" : "interacts with", "SUID" : 67566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67562", "source" : "1257", "target" : "1433", "shared_name" : "3098 (interacts with) 6515", "name" : "3098 (interacts with) 6515", "interaction" : "interacts with", "SUID" : 67562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67634", "source" : "1253", "target" : "4949", "shared_name" : "2876 (interacts with) 5970", "name" : "2876 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 67634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67630", "source" : "1253", "target" : "5517", "shared_name" : "2876 (interacts with) 8514", "name" : "2876 (interacts with) 8514", "interaction" : "interacts with", "SUID" : 67630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67626", "source" : "1253", "target" : "4065", "shared_name" : "2876 (interacts with) 7124", "name" : "2876 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 67626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67622", "source" : "1253", "target" : "3017", "shared_name" : "2876 (interacts with) 4790", "name" : "2876 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 67622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67618", "source" : "1253", "target" : "1605", "shared_name" : "2876 (interacts with) 6648", "name" : "2876 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 67618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67614", "source" : "1253", "target" : "517", "shared_name" : "2876 (interacts with) 5052", "name" : "2876 (interacts with) 5052", "interaction" : "interacts with", "SUID" : 67614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67610", "source" : "1253", "target" : "2901", "shared_name" : "2876 (interacts with) 6647", "name" : "2876 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 67610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67606", "source" : "1253", "target" : "5329", "shared_name" : "2876 (interacts with) 4907", "name" : "2876 (interacts with) 4907", "interaction" : "interacts with", "SUID" : 67606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67602", "source" : "1253", "target" : "245", "shared_name" : "2876 (interacts with) 2936", "name" : "2876 (interacts with) 2936", "interaction" : "interacts with", "SUID" : 67602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67598", "source" : "1253", "target" : "2161", "shared_name" : "2876 (interacts with) 55163", "name" : "2876 (interacts with) 55163", "interaction" : "interacts with", "SUID" : 67598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67646", "source" : "1249", "target" : "365", "shared_name" : "2705 (interacts with) 64834", "name" : "2705 (interacts with) 64834", "interaction" : "interacts with", "SUID" : 67646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67642", "source" : "1249", "target" : "213", "shared_name" : "2705 (interacts with) 57165", "name" : "2705 (interacts with) 57165", "interaction" : "interacts with", "SUID" : 67642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67638", "source" : "1249", "target" : "3153", "shared_name" : "2705 (interacts with) 3684", "name" : "2705 (interacts with) 3684", "interaction" : "interacts with", "SUID" : 67638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67654", "source" : "1245", "target" : "1845", "shared_name" : "4137 (interacts with) 836", "name" : "4137 (interacts with) 836", "interaction" : "interacts with", "SUID" : 67654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67650", "source" : "1245", "target" : "997", "shared_name" : "4137 (interacts with) 7431", "name" : "4137 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 67650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67662", "source" : "1241", "target" : "5053", "shared_name" : "808 (interacts with) 857", "name" : "808 (interacts with) 857", "interaction" : "interacts with", "SUID" : 67662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67658", "source" : "1241", "target" : "2969", "shared_name" : "808 (interacts with) 8867", "name" : "808 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 67658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67742", "source" : "1237", "target" : "4693", "shared_name" : "3329 (interacts with) 6301", "name" : "3329 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 67742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67738", "source" : "1237", "target" : "1605", "shared_name" : "3329 (interacts with) 6648", "name" : "3329 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 67738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67734", "source" : "1237", "target" : "2169", "shared_name" : "3329 (interacts with) 51182", "name" : "3329 (interacts with) 51182", "interaction" : "interacts with", "SUID" : 67734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67730", "source" : "1237", "target" : "2945", "shared_name" : "3329 (interacts with) 471", "name" : "3329 (interacts with) 471", "interaction" : "interacts with", "SUID" : 67730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67726", "source" : "1237", "target" : "1425", "shared_name" : "3329 (interacts with) 55644", "name" : "3329 (interacts with) 55644", "interaction" : "interacts with", "SUID" : 67726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67722", "source" : "1237", "target" : "1389", "shared_name" : "3329 (interacts with) 92609", "name" : "3329 (interacts with) 92609", "interaction" : "interacts with", "SUID" : 67722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67718", "source" : "1237", "target" : "529", "shared_name" : "3329 (interacts with) 23203", "name" : "3329 (interacts with) 23203", "interaction" : "interacts with", "SUID" : 67718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67714", "source" : "1237", "target" : "4353", "shared_name" : "3329 (interacts with) 9512", "name" : "3329 (interacts with) 9512", "interaction" : "interacts with", "SUID" : 67714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67710", "source" : "1237", "target" : "521", "shared_name" : "3329 (interacts with) 85476", "name" : "3329 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 67710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67706", "source" : "1237", "target" : "1561", "shared_name" : "3329 (interacts with) 51117", "name" : "3329 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 67706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67702", "source" : "1237", "target" : "4869", "shared_name" : "3329 (interacts with) 92935", "name" : "3329 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 67702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67698", "source" : "1237", "target" : "6073", "shared_name" : "3329 (interacts with) 92170", "name" : "3329 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 67698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67694", "source" : "1237", "target" : "721", "shared_name" : "3329 (interacts with) 79731", "name" : "3329 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 67694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67690", "source" : "1237", "target" : "2345", "shared_name" : "3329 (interacts with) 200205", "name" : "3329 (interacts with) 200205", "interaction" : "interacts with", "SUID" : 67690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67686", "source" : "1237", "target" : "3525", "shared_name" : "3329 (interacts with) 23410", "name" : "3329 (interacts with) 23410", "interaction" : "interacts with", "SUID" : 67686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67682", "source" : "1237", "target" : "4621", "shared_name" : "3329 (interacts with) 57038", "name" : "3329 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 67682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67678", "source" : "1237", "target" : "2753", "shared_name" : "3329 (interacts with) 4720", "name" : "3329 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 67678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67674", "source" : "1237", "target" : "4333", "shared_name" : "3329 (interacts with) 54968", "name" : "3329 (interacts with) 54968", "interaction" : "interacts with", "SUID" : 67674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67670", "source" : "1237", "target" : "5565", "shared_name" : "3329 (interacts with) 217", "name" : "3329 (interacts with) 217", "interaction" : "interacts with", "SUID" : 67670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67666", "source" : "1237", "target" : "6001", "shared_name" : "3329 (interacts with) 55157", "name" : "3329 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 67666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67926", "source" : "1233", "target" : "973", "shared_name" : "355 (interacts with) 5595", "name" : "355 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 67926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67922", "source" : "1233", "target" : "5081", "shared_name" : "355 (interacts with) 5594", "name" : "355 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 67922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67918", "source" : "1233", "target" : "5225", "shared_name" : "355 (interacts with) 5290", "name" : "355 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 67918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67914", "source" : "1233", "target" : "4213", "shared_name" : "355 (interacts with) 5295", "name" : "355 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 67914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67910", "source" : "1233", "target" : "5361", "shared_name" : "355 (interacts with) 5604", "name" : "355 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 67910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67906", "source" : "1233", "target" : "4949", "shared_name" : "355 (interacts with) 5970", "name" : "355 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 67906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67902", "source" : "1233", "target" : "3017", "shared_name" : "355 (interacts with) 4790", "name" : "355 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 67902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67898", "source" : "1233", "target" : "4521", "shared_name" : "355 (interacts with) 5894", "name" : "355 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 67898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67894", "source" : "1233", "target" : "4065", "shared_name" : "355 (interacts with) 7124", "name" : "355 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 67894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67890", "source" : "1233", "target" : "5149", "shared_name" : "355 (interacts with) 5058", "name" : "355 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 67890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67886", "source" : "1233", "target" : "5037", "shared_name" : "355 (interacts with) 5515", "name" : "355 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 67886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67882", "source" : "1233", "target" : "637", "shared_name" : "355 (interacts with) 6654", "name" : "355 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 67882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67878", "source" : "1233", "target" : "981", "shared_name" : "355 (interacts with) 7157", "name" : "355 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 67878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67874", "source" : "1233", "target" : "5965", "shared_name" : "355 (interacts with) 596", "name" : "355 (interacts with) 596", "interaction" : "interacts with", "SUID" : 67874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67870", "source" : "1233", "target" : "4769", "shared_name" : "355 (interacts with) 7132", "name" : "355 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 67870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67866", "source" : "1233", "target" : "3173", "shared_name" : "355 (interacts with) 3558", "name" : "355 (interacts with) 3558", "interaction" : "interacts with", "SUID" : 67866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67862", "source" : "1233", "target" : "1845", "shared_name" : "355 (interacts with) 836", "name" : "355 (interacts with) 836", "interaction" : "interacts with", "SUID" : 67862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67858", "source" : "1233", "target" : "1973", "shared_name" : "355 (interacts with) 6709", "name" : "355 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 67858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67854", "source" : "1233", "target" : "5333", "shared_name" : "355 (interacts with) 5591", "name" : "355 (interacts with) 5591", "interaction" : "interacts with", "SUID" : 67854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67850", "source" : "1233", "target" : "3041", "shared_name" : "355 (interacts with) 5663", "name" : "355 (interacts with) 5663", "interaction" : "interacts with", "SUID" : 67850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67846", "source" : "1233", "target" : "2333", "shared_name" : "355 (interacts with) 3559", "name" : "355 (interacts with) 3559", "interaction" : "interacts with", "SUID" : 67846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67842", "source" : "1233", "target" : "1701", "shared_name" : "355 (interacts with) 5777", "name" : "355 (interacts with) 5777", "interaction" : "interacts with", "SUID" : 67842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67838", "source" : "1233", "target" : "5941", "shared_name" : "355 (interacts with) 5914", "name" : "355 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 67838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67834", "source" : "1233", "target" : "3361", "shared_name" : "355 (interacts with) 4000", "name" : "355 (interacts with) 4000", "interaction" : "interacts with", "SUID" : 67834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67830", "source" : "1233", "target" : "3937", "shared_name" : "355 (interacts with) 4001", "name" : "355 (interacts with) 4001", "interaction" : "interacts with", "SUID" : 67830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67826", "source" : "1233", "target" : "3021", "shared_name" : "355 (interacts with) 84823", "name" : "355 (interacts with) 84823", "interaction" : "interacts with", "SUID" : 67826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67822", "source" : "1233", "target" : "4077", "shared_name" : "355 (interacts with) 71", "name" : "355 (interacts with) 71", "interaction" : "interacts with", "SUID" : 67822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67818", "source" : "1233", "target" : "1541", "shared_name" : "355 (interacts with) 958", "name" : "355 (interacts with) 958", "interaction" : "interacts with", "SUID" : 67818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67814", "source" : "1233", "target" : "2905", "shared_name" : "355 (interacts with) 5664", "name" : "355 (interacts with) 5664", "interaction" : "interacts with", "SUID" : 67814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67810", "source" : "1233", "target" : "3993", "shared_name" : "355 (interacts with) 3683", "name" : "355 (interacts with) 3683", "interaction" : "interacts with", "SUID" : 67810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67806", "source" : "1233", "target" : "6101", "shared_name" : "355 (interacts with) 5582", "name" : "355 (interacts with) 5582", "interaction" : "interacts with", "SUID" : 67806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67802", "source" : "1233", "target" : "1125", "shared_name" : "355 (interacts with) 5551", "name" : "355 (interacts with) 5551", "interaction" : "interacts with", "SUID" : 67802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67798", "source" : "1233", "target" : "877", "shared_name" : "355 (interacts with) 7341", "name" : "355 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 67798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67794", "source" : "1233", "target" : "3417", "shared_name" : "355 (interacts with) 5371", "name" : "355 (interacts with) 5371", "interaction" : "interacts with", "SUID" : 67794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67790", "source" : "1233", "target" : "5781", "shared_name" : "355 (interacts with) 6672", "name" : "355 (interacts with) 6672", "interaction" : "interacts with", "SUID" : 67790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67786", "source" : "1233", "target" : "2069", "shared_name" : "355 (interacts with) 84106", "name" : "355 (interacts with) 84106", "interaction" : "interacts with", "SUID" : 67786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67782", "source" : "1233", "target" : "2841", "shared_name" : "355 (interacts with) 7098", "name" : "355 (interacts with) 7098", "interaction" : "interacts with", "SUID" : 67782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67778", "source" : "1233", "target" : "3697", "shared_name" : "355 (interacts with) 7099", "name" : "355 (interacts with) 7099", "interaction" : "interacts with", "SUID" : 67778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67774", "source" : "1233", "target" : "593", "shared_name" : "355 (interacts with) 8743", "name" : "355 (interacts with) 8743", "interaction" : "interacts with", "SUID" : 67774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67770", "source" : "1233", "target" : "5969", "shared_name" : "355 (interacts with) 10382", "name" : "355 (interacts with) 10382", "interaction" : "interacts with", "SUID" : 67770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67766", "source" : "1233", "target" : "5677", "shared_name" : "355 (interacts with) 5189", "name" : "355 (interacts with) 5189", "interaction" : "interacts with", "SUID" : 67766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67762", "source" : "1233", "target" : "3209", "shared_name" : "355 (interacts with) 166378", "name" : "355 (interacts with) 166378", "interaction" : "interacts with", "SUID" : 67762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67758", "source" : "1233", "target" : "613", "shared_name" : "355 (interacts with) 10381", "name" : "355 (interacts with) 10381", "interaction" : "interacts with", "SUID" : 67758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67754", "source" : "1233", "target" : "4021", "shared_name" : "355 (interacts with) 203068", "name" : "355 (interacts with) 203068", "interaction" : "interacts with", "SUID" : 67754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67750", "source" : "1233", "target" : "4105", "shared_name" : "355 (interacts with) 347733", "name" : "355 (interacts with) 347733", "interaction" : "interacts with", "SUID" : 67750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67746", "source" : "1233", "target" : "829", "shared_name" : "355 (interacts with) 8772", "name" : "355 (interacts with) 8772", "interaction" : "interacts with", "SUID" : 67746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67954", "source" : "1229", "target" : "2509", "shared_name" : "238 (interacts with) 7204", "name" : "238 (interacts with) 7204", "interaction" : "interacts with", "SUID" : 67954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67950", "source" : "1229", "target" : "5081", "shared_name" : "238 (interacts with) 5594", "name" : "238 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 67950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67946", "source" : "1229", "target" : "973", "shared_name" : "238 (interacts with) 5595", "name" : "238 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 67946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67942", "source" : "1229", "target" : "6141", "shared_name" : "238 (interacts with) 6792", "name" : "238 (interacts with) 6792", "interaction" : "interacts with", "SUID" : 67942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67938", "source" : "1229", "target" : "4049", "shared_name" : "238 (interacts with) 27436", "name" : "238 (interacts with) 27436", "interaction" : "interacts with", "SUID" : 67938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67934", "source" : "1229", "target" : "3825", "shared_name" : "238 (interacts with) 5915", "name" : "238 (interacts with) 5915", "interaction" : "interacts with", "SUID" : 67934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67930", "source" : "1229", "target" : "4981", "shared_name" : "238 (interacts with) 6774", "name" : "238 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 67930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68042", "source" : "1225", "target" : "1069", "shared_name" : "375 (interacts with) 5879", "name" : "375 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 68042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68038", "source" : "1225", "target" : "989", "shared_name" : "375 (interacts with) 5297", "name" : "375 (interacts with) 5297", "interaction" : "interacts with", "SUID" : 68038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68034", "source" : "1225", "target" : "5773", "shared_name" : "375 (interacts with) 9181", "name" : "375 (interacts with) 9181", "interaction" : "interacts with", "SUID" : 68034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68030", "source" : "1225", "target" : "545", "shared_name" : "375 (interacts with) 51014", "name" : "375 (interacts with) 51014", "interaction" : "interacts with", "SUID" : 68030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68026", "source" : "1225", "target" : "5749", "shared_name" : "375 (interacts with) 10959", "name" : "375 (interacts with) 10959", "interaction" : "interacts with", "SUID" : 68026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68022", "source" : "1225", "target" : "5297", "shared_name" : "375 (interacts with) 6775", "name" : "375 (interacts with) 6775", "interaction" : "interacts with", "SUID" : 68022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68018", "source" : "1225", "target" : "3637", "shared_name" : "375 (interacts with) 6712", "name" : "375 (interacts with) 6712", "interaction" : "interacts with", "SUID" : 68018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68014", "source" : "1225", "target" : "1633", "shared_name" : "375 (interacts with) 57731", "name" : "375 (interacts with) 57731", "interaction" : "interacts with", "SUID" : 68014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68010", "source" : "1225", "target" : "1973", "shared_name" : "375 (interacts with) 6709", "name" : "375 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 68010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68006", "source" : "1225", "target" : "1909", "shared_name" : "375 (interacts with) 5286", "name" : "375 (interacts with) 5286", "interaction" : "interacts with", "SUID" : 68006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68002", "source" : "1225", "target" : "2429", "shared_name" : "375 (interacts with) 4952", "name" : "375 (interacts with) 4952", "interaction" : "interacts with", "SUID" : 68002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67998", "source" : "1225", "target" : "3149", "shared_name" : "375 (interacts with) 3630", "name" : "375 (interacts with) 3630", "interaction" : "interacts with", "SUID" : 67998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67994", "source" : "1225", "target" : "2641", "shared_name" : "375 (interacts with) 3123", "name" : "375 (interacts with) 3123", "interaction" : "interacts with", "SUID" : 67994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67990", "source" : "1225", "target" : "5065", "shared_name" : "375 (interacts with) 3117", "name" : "375 (interacts with) 3117", "interaction" : "interacts with", "SUID" : 67990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67986", "source" : "1225", "target" : "4165", "shared_name" : "375 (interacts with) 3119", "name" : "375 (interacts with) 3119", "interaction" : "interacts with", "SUID" : 67986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67982", "source" : "1225", "target" : "3189", "shared_name" : "375 (interacts with) 2799", "name" : "375 (interacts with) 2799", "interaction" : "interacts with", "SUID" : 67982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67978", "source" : "1225", "target" : "3981", "shared_name" : "375 (interacts with) 1785", "name" : "375 (interacts with) 1785", "interaction" : "interacts with", "SUID" : 67978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67974", "source" : "1225", "target" : "1997", "shared_name" : "375 (interacts with) 2348", "name" : "375 (interacts with) 2348", "interaction" : "interacts with", "SUID" : 67974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67970", "source" : "1225", "target" : "4441", "shared_name" : "375 (interacts with) 1213", "name" : "375 (interacts with) 1213", "interaction" : "interacts with", "SUID" : 67970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67966", "source" : "1225", "target" : "1269", "shared_name" : "375 (interacts with) 9276", "name" : "375 (interacts with) 9276", "interaction" : "interacts with", "SUID" : 67966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67962", "source" : "1225", "target" : "2737", "shared_name" : "375 (interacts with) 966", "name" : "375 (interacts with) 966", "interaction" : "interacts with", "SUID" : 67962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "67958", "source" : "1225", "target" : "4813", "shared_name" : "375 (interacts with) 23431", "name" : "375 (interacts with) 23431", "interaction" : "interacts with", "SUID" : 67958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68054", "source" : "1221", "target" : "5453", "shared_name" : "1392 (interacts with) 4204", "name" : "1392 (interacts with) 4204", "interaction" : "interacts with", "SUID" : 68054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68050", "source" : "1221", "target" : "5569", "shared_name" : "1392 (interacts with) 59345", "name" : "1392 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 68050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68046", "source" : "1221", "target" : "2985", "shared_name" : "1392 (interacts with) 1394", "name" : "1392 (interacts with) 1394", "interaction" : "interacts with", "SUID" : 68046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68090", "source" : "1217", "target" : "3425", "shared_name" : "3308 (interacts with) 8803", "name" : "3308 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 68090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68086", "source" : "1217", "target" : "1053", "shared_name" : "3308 (interacts with) 81689", "name" : "3308 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 68086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68082", "source" : "1217", "target" : "1237", "shared_name" : "3308 (interacts with) 3329", "name" : "3308 (interacts with) 3329", "interaction" : "interacts with", "SUID" : 68082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68078", "source" : "1217", "target" : "2565", "shared_name" : "3308 (interacts with) 51501", "name" : "3308 (interacts with) 51501", "interaction" : "interacts with", "SUID" : 68078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68074", "source" : "1217", "target" : "2169", "shared_name" : "3308 (interacts with) 51182", "name" : "3308 (interacts with) 51182", "interaction" : "interacts with", "SUID" : 68074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68070", "source" : "1217", "target" : "1377", "shared_name" : "3308 (interacts with) 81570", "name" : "3308 (interacts with) 81570", "interaction" : "interacts with", "SUID" : 68070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68066", "source" : "1217", "target" : "3285", "shared_name" : "3308 (interacts with) 8302", "name" : "3308 (interacts with) 8302", "interaction" : "interacts with", "SUID" : 68066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68062", "source" : "1217", "target" : "665", "shared_name" : "3308 (interacts with) 3309", "name" : "3308 (interacts with) 3309", "interaction" : "interacts with", "SUID" : 68062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68058", "source" : "1217", "target" : "2901", "shared_name" : "3308 (interacts with) 6647", "name" : "3308 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 68058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68102", "source" : "1213", "target" : "3057", "shared_name" : "2969 (interacts with) 5592", "name" : "2969 (interacts with) 5592", "interaction" : "interacts with", "SUID" : 68102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68098", "source" : "1213", "target" : "665", "shared_name" : "2969 (interacts with) 3309", "name" : "2969 (interacts with) 3309", "interaction" : "interacts with", "SUID" : 68098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68094", "source" : "1213", "target" : "973", "shared_name" : "2969 (interacts with) 5595", "name" : "2969 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 68094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68190", "source" : "1209", "target" : "725", "shared_name" : "51763 (interacts with) 54209", "name" : "51763 (interacts with) 54209", "interaction" : "interacts with", "SUID" : 68190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68186", "source" : "1209", "target" : "5073", "shared_name" : "51763 (interacts with) 7305", "name" : "51763 (interacts with) 7305", "interaction" : "interacts with", "SUID" : 68186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68182", "source" : "1209", "target" : "2969", "shared_name" : "51763 (interacts with) 8867", "name" : "51763 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 68182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68178", "source" : "1209", "target" : "5785", "shared_name" : "51763 (interacts with) 6857", "name" : "51763 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 68178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68174", "source" : "1209", "target" : "637", "shared_name" : "51763 (interacts with) 6654", "name" : "51763 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 68174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68170", "source" : "1209", "target" : "1069", "shared_name" : "51763 (interacts with) 5879", "name" : "51763 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 68170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68166", "source" : "1209", "target" : "4157", "shared_name" : "51763 (interacts with) 85021", "name" : "51763 (interacts with) 85021", "interaction" : "interacts with", "SUID" : 68166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68162", "source" : "1209", "target" : "4393", "shared_name" : "51763 (interacts with) 950", "name" : "51763 (interacts with) 950", "interaction" : "interacts with", "SUID" : 68162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68158", "source" : "1209", "target" : "4213", "shared_name" : "51763 (interacts with) 5295", "name" : "51763 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 68158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68154", "source" : "1209", "target" : "3465", "shared_name" : "51763 (interacts with) 5296", "name" : "51763 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 68154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68150", "source" : "1209", "target" : "817", "shared_name" : "51763 (interacts with) 5728", "name" : "51763 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 68150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68146", "source" : "1209", "target" : "2173", "shared_name" : "51763 (interacts with) 5159", "name" : "51763 (interacts with) 5159", "interaction" : "interacts with", "SUID" : 68146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68142", "source" : "1209", "target" : "4293", "shared_name" : "51763 (interacts with) 5156", "name" : "51763 (interacts with) 5156", "interaction" : "interacts with", "SUID" : 68142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68138", "source" : "1209", "target" : "1909", "shared_name" : "51763 (interacts with) 5286", "name" : "51763 (interacts with) 5286", "interaction" : "interacts with", "SUID" : 68138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68134", "source" : "1209", "target" : "5225", "shared_name" : "51763 (interacts with) 5290", "name" : "51763 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 68134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68130", "source" : "1209", "target" : "5973", "shared_name" : "51763 (interacts with) 5155", "name" : "51763 (interacts with) 5155", "interaction" : "interacts with", "SUID" : 68130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68126", "source" : "1209", "target" : "2773", "shared_name" : "51763 (interacts with) 4908", "name" : "51763 (interacts with) 4908", "interaction" : "interacts with", "SUID" : 68126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68122", "source" : "1209", "target" : "4209", "shared_name" : "51763 (interacts with) 4915", "name" : "51763 (interacts with) 4915", "interaction" : "interacts with", "SUID" : 68122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68118", "source" : "1209", "target" : "2429", "shared_name" : "51763 (interacts with) 4952", "name" : "51763 (interacts with) 4952", "interaction" : "interacts with", "SUID" : 68118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68114", "source" : "1209", "target" : "4385", "shared_name" : "51763 (interacts with) 3084", "name" : "51763 (interacts with) 3084", "interaction" : "interacts with", "SUID" : 68114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68110", "source" : "1209", "target" : "3457", "shared_name" : "51763 (interacts with) 22914", "name" : "51763 (interacts with) 22914", "interaction" : "interacts with", "SUID" : 68110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68106", "source" : "1209", "target" : "533", "shared_name" : "51763 (interacts with) 4036", "name" : "51763 (interacts with) 4036", "interaction" : "interacts with", "SUID" : 68106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68202", "source" : "1201", "target" : "5053", "shared_name" : "805 (interacts with) 857", "name" : "805 (interacts with) 857", "interaction" : "interacts with", "SUID" : 68202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68198", "source" : "1201", "target" : "2969", "shared_name" : "805 (interacts with) 8867", "name" : "805 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 68198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68194", "source" : "1201", "target" : "1241", "shared_name" : "805 (interacts with) 808", "name" : "805 (interacts with) 808", "interaction" : "interacts with", "SUID" : 68194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68258", "source" : "1197", "target" : "6181", "shared_name" : "79587 (interacts with) 84987", "name" : "79587 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 68258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68254", "source" : "1197", "target" : "1637", "shared_name" : "79587 (interacts with) 91574", "name" : "79587 (interacts with) 91574", "interaction" : "interacts with", "SUID" : 68254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68250", "source" : "1197", "target" : "1085", "shared_name" : "79587 (interacts with) 9377", "name" : "79587 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 68250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68246", "source" : "1197", "target" : "521", "shared_name" : "79587 (interacts with) 85476", "name" : "79587 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 68246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68242", "source" : "1197", "target" : "3705", "shared_name" : "79587 (interacts with) 87178", "name" : "79587 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 68242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68238", "source" : "1197", "target" : "5737", "shared_name" : "79587 (interacts with) 84340", "name" : "79587 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 68238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68234", "source" : "1197", "target" : "889", "shared_name" : "79587 (interacts with) 80224", "name" : "79587 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 68234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68230", "source" : "1197", "target" : "4757", "shared_name" : "79587 (interacts with) 9997", "name" : "79587 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 68230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68226", "source" : "1197", "target" : "721", "shared_name" : "79587 (interacts with) 79731", "name" : "79587 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 68226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68222", "source" : "1197", "target" : "6073", "shared_name" : "79587 (interacts with) 92170", "name" : "79587 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 68222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68218", "source" : "1197", "target" : "4869", "shared_name" : "79587 (interacts with) 92935", "name" : "79587 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 68218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68214", "source" : "1197", "target" : "741", "shared_name" : "79587 (interacts with) 4830", "name" : "79587 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 68214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68210", "source" : "1197", "target" : "5605", "shared_name" : "79587 (interacts with) 51601", "name" : "79587 (interacts with) 51601", "interaction" : "interacts with", "SUID" : 68210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68206", "source" : "1197", "target" : "5593", "shared_name" : "79587 (interacts with) 875", "name" : "79587 (interacts with) 875", "interaction" : "interacts with", "SUID" : 68206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68290", "source" : "1193", "target" : "1261", "shared_name" : "5660 (interacts with) 57192", "name" : "5660 (interacts with) 57192", "interaction" : "interacts with", "SUID" : 68290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68286", "source" : "1193", "target" : "5937", "shared_name" : "5660 (interacts with) 8120", "name" : "5660 (interacts with) 8120", "interaction" : "interacts with", "SUID" : 68286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68282", "source" : "1193", "target" : "1677", "shared_name" : "5660 (interacts with) 8905", "name" : "5660 (interacts with) 8905", "interaction" : "interacts with", "SUID" : 68282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68278", "source" : "1193", "target" : "1445", "shared_name" : "5660 (interacts with) 9179", "name" : "5660 (interacts with) 9179", "interaction" : "interacts with", "SUID" : 68278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68274", "source" : "1193", "target" : "3693", "shared_name" : "5660 (interacts with) 8943", "name" : "5660 (interacts with) 8943", "interaction" : "interacts with", "SUID" : 68274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68270", "source" : "1193", "target" : "4393", "shared_name" : "5660 (interacts with) 950", "name" : "5660 (interacts with) 950", "interaction" : "interacts with", "SUID" : 68270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68266", "source" : "1193", "target" : "2233", "shared_name" : "5660 (interacts with) 9516", "name" : "5660 (interacts with) 9516", "interaction" : "interacts with", "SUID" : 68266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68262", "source" : "1193", "target" : "4133", "shared_name" : "5660 (interacts with) 427", "name" : "5660 (interacts with) 427", "interaction" : "interacts with", "SUID" : 68262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68330", "source" : "1189", "target" : "977", "shared_name" : "7915 (interacts with) 79944", "name" : "7915 (interacts with) 79944", "interaction" : "interacts with", "SUID" : 68330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68326", "source" : "1189", "target" : "4253", "shared_name" : "7915 (interacts with) 84706", "name" : "7915 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 68326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68322", "source" : "1189", "target" : "5025", "shared_name" : "7915 (interacts with) 6389", "name" : "7915 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 68322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68318", "source" : "1189", "target" : "3425", "shared_name" : "7915 (interacts with) 8803", "name" : "7915 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 68318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68314", "source" : "1189", "target" : "2925", "shared_name" : "7915 (interacts with) 8802", "name" : "7915 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 68314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68310", "source" : "1189", "target" : "1669", "shared_name" : "7915 (interacts with) 6390", "name" : "7915 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 68310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68306", "source" : "1189", "target" : "1289", "shared_name" : "7915 (interacts with) 6392", "name" : "7915 (interacts with) 6392", "interaction" : "interacts with", "SUID" : 68306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68302", "source" : "1189", "target" : "2089", "shared_name" : "7915 (interacts with) 3939", "name" : "7915 (interacts with) 3939", "interaction" : "interacts with", "SUID" : 68302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68298", "source" : "1189", "target" : "741", "shared_name" : "7915 (interacts with) 4830", "name" : "7915 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 68298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68294", "source" : "1189", "target" : "3161", "shared_name" : "7915 (interacts with) 2821", "name" : "7915 (interacts with) 2821", "interaction" : "interacts with", "SUID" : 68294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68386", "source" : "1185", "target" : "5341", "shared_name" : "51324 (interacts with) 91647", "name" : "51324 (interacts with) 91647", "interaction" : "interacts with", "SUID" : 68386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68382", "source" : "1185", "target" : "921", "shared_name" : "51324 (interacts with) 3880", "name" : "51324 (interacts with) 3880", "interaction" : "interacts with", "SUID" : 68382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68378", "source" : "1185", "target" : "6177", "shared_name" : "51324 (interacts with) 50628", "name" : "51324 (interacts with) 50628", "interaction" : "interacts with", "SUID" : 68378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68374", "source" : "1185", "target" : "1661", "shared_name" : "51324 (interacts with) 91942", "name" : "51324 (interacts with) 91942", "interaction" : "interacts with", "SUID" : 68374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68370", "source" : "1185", "target" : "5061", "shared_name" : "51324 (interacts with) 6285", "name" : "51324 (interacts with) 6285", "interaction" : "interacts with", "SUID" : 68370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68366", "source" : "1185", "target" : "5461", "shared_name" : "51324 (interacts with) 4665", "name" : "51324 (interacts with) 4665", "interaction" : "interacts with", "SUID" : 68366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68362", "source" : "1185", "target" : "1657", "shared_name" : "51324 (interacts with) 3251", "name" : "51324 (interacts with) 3251", "interaction" : "interacts with", "SUID" : 68362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68358", "source" : "1185", "target" : "1713", "shared_name" : "51324 (interacts with) 5631", "name" : "51324 (interacts with) 5631", "interaction" : "interacts with", "SUID" : 68358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68354", "source" : "1185", "target" : "2533", "shared_name" : "51324 (interacts with) 1030", "name" : "51324 (interacts with) 1030", "interaction" : "interacts with", "SUID" : 68354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68350", "source" : "1185", "target" : "1729", "shared_name" : "51324 (interacts with) 5111", "name" : "51324 (interacts with) 5111", "interaction" : "interacts with", "SUID" : 68350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68346", "source" : "1185", "target" : "4889", "shared_name" : "51324 (interacts with) 7295", "name" : "51324 (interacts with) 7295", "interaction" : "interacts with", "SUID" : 68346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68342", "source" : "1185", "target" : "2473", "shared_name" : "51324 (interacts with) 10342", "name" : "51324 (interacts with) 10342", "interaction" : "interacts with", "SUID" : 68342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68338", "source" : "1185", "target" : "1689", "shared_name" : "51324 (interacts with) 5524", "name" : "51324 (interacts with) 5524", "interaction" : "interacts with", "SUID" : 68338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68334", "source" : "1185", "target" : "2389", "shared_name" : "51324 (interacts with) 6925", "name" : "51324 (interacts with) 6925", "interaction" : "interacts with", "SUID" : 68334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68406", "source" : "1181", "target" : "4857", "shared_name" : "51684 (interacts with) 5573", "name" : "51684 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 68406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68402", "source" : "1181", "target" : "5249", "shared_name" : "51684 (interacts with) 8643", "name" : "51684 (interacts with) 8643", "interaction" : "interacts with", "SUID" : 68402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68398", "source" : "1181", "target" : "257", "shared_name" : "51684 (interacts with) 6469", "name" : "51684 (interacts with) 6469", "interaction" : "interacts with", "SUID" : 68398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68394", "source" : "1181", "target" : "4493", "shared_name" : "51684 (interacts with) 5727", "name" : "51684 (interacts with) 5727", "interaction" : "interacts with", "SUID" : 68394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68390", "source" : "1181", "target" : "2325", "shared_name" : "51684 (interacts with) 55670", "name" : "51684 (interacts with) 55670", "interaction" : "interacts with", "SUID" : 68390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68410", "source" : "1177", "target" : "1069", "shared_name" : "9928 (interacts with) 5879", "name" : "9928 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 68410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68438", "source" : "1173", "target" : "2173", "shared_name" : "11113 (interacts with) 5159", "name" : "11113 (interacts with) 5159", "interaction" : "interacts with", "SUID" : 68438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68434", "source" : "1173", "target" : "4209", "shared_name" : "11113 (interacts with) 4915", "name" : "11113 (interacts with) 4915", "interaction" : "interacts with", "SUID" : 68434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68430", "source" : "1173", "target" : "4293", "shared_name" : "11113 (interacts with) 5156", "name" : "11113 (interacts with) 5156", "interaction" : "interacts with", "SUID" : 68430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68426", "source" : "1173", "target" : "865", "shared_name" : "11113 (interacts with) 3480", "name" : "11113 (interacts with) 3480", "interaction" : "interacts with", "SUID" : 68426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68422", "source" : "1173", "target" : "2581", "shared_name" : "11113 (interacts with) 7170", "name" : "11113 (interacts with) 7170", "interaction" : "interacts with", "SUID" : 68422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68418", "source" : "1173", "target" : "1069", "shared_name" : "11113 (interacts with) 5879", "name" : "11113 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 68418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68414", "source" : "1173", "target" : "1177", "shared_name" : "11113 (interacts with) 9928", "name" : "11113 (interacts with) 9928", "interaction" : "interacts with", "SUID" : 68414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68446", "source" : "1169", "target" : "4837", "shared_name" : "84919 (interacts with) 8891", "name" : "84919 (interacts with) 8891", "interaction" : "interacts with", "SUID" : 68446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68442", "source" : "1169", "target" : "837", "shared_name" : "84919 (interacts with) 8892", "name" : "84919 (interacts with) 8892", "interaction" : "interacts with", "SUID" : 68442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68454", "source" : "1165", "target" : "2125", "shared_name" : "22868 (interacts with) 2512", "name" : "22868 (interacts with) 2512", "interaction" : "interacts with", "SUID" : 68454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68450", "source" : "1165", "target" : "2385", "shared_name" : "22868 (interacts with) 3192", "name" : "22868 (interacts with) 3192", "interaction" : "interacts with", "SUID" : 68450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68478", "source" : "1161", "target" : "4153", "shared_name" : "2561 (interacts with) 2566", "name" : "2561 (interacts with) 2566", "interaction" : "interacts with", "SUID" : 68478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68474", "source" : "1161", "target" : "309", "shared_name" : "2561 (interacts with) 6536", "name" : "2561 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 68474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68470", "source" : "1161", "target" : "3781", "shared_name" : "2561 (interacts with) 9152", "name" : "2561 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 68470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68466", "source" : "1161", "target" : "401", "shared_name" : "2561 (interacts with) 6532", "name" : "2561 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 68466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68462", "source" : "1161", "target" : "5373", "shared_name" : "2561 (interacts with) 28962", "name" : "2561 (interacts with) 28962", "interaction" : "interacts with", "SUID" : 68462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68458", "source" : "1161", "target" : "3389", "shared_name" : "2561 (interacts with) 2562", "name" : "2561 (interacts with) 2562", "interaction" : "interacts with", "SUID" : 68458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68506", "source" : "1157", "target" : "5729", "shared_name" : "6580 (interacts with) 861", "name" : "6580 (interacts with) 861", "interaction" : "interacts with", "SUID" : 68506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68502", "source" : "1157", "target" : "4589", "shared_name" : "6580 (interacts with) 8431", "name" : "6580 (interacts with) 8431", "interaction" : "interacts with", "SUID" : 68502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68498", "source" : "1157", "target" : "609", "shared_name" : "6580 (interacts with) 6812", "name" : "6580 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 68498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68494", "source" : "1157", "target" : "3781", "shared_name" : "6580 (interacts with) 9152", "name" : "6580 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 68494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68490", "source" : "1157", "target" : "5785", "shared_name" : "6580 (interacts with) 6857", "name" : "6580 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 68490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68486", "source" : "1157", "target" : "5929", "shared_name" : "6580 (interacts with) 6616", "name" : "6580 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 68486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68482", "source" : "1157", "target" : "401", "shared_name" : "6580 (interacts with) 6532", "name" : "6580 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 68482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68522", "source" : "1153", "target" : "1969", "shared_name" : "116150 (interacts with) 4598", "name" : "116150 (interacts with) 4598", "interaction" : "interacts with", "SUID" : 68522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68518", "source" : "1153", "target" : "305", "shared_name" : "116150 (interacts with) 79644", "name" : "116150 (interacts with) 79644", "interaction" : "interacts with", "SUID" : 68518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68514", "source" : "1153", "target" : "2477", "shared_name" : "116150 (interacts with) 57107", "name" : "116150 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 68514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68510", "source" : "1153", "target" : "4461", "shared_name" : "116150 (interacts with) 79947", "name" : "116150 (interacts with) 79947", "interaction" : "interacts with", "SUID" : 68510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68558", "source" : "1149", "target" : "2901", "shared_name" : "2558 (interacts with) 6647", "name" : "2558 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 68558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68554", "source" : "1149", "target" : "1253", "shared_name" : "2558 (interacts with) 2876", "name" : "2558 (interacts with) 2876", "interaction" : "interacts with", "SUID" : 68554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68550", "source" : "1149", "target" : "1161", "shared_name" : "2558 (interacts with) 2561", "name" : "2558 (interacts with) 2561", "interaction" : "interacts with", "SUID" : 68550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68546", "source" : "1149", "target" : "3389", "shared_name" : "2558 (interacts with) 2562", "name" : "2558 (interacts with) 2562", "interaction" : "interacts with", "SUID" : 68546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68542", "source" : "1149", "target" : "4153", "shared_name" : "2558 (interacts with) 2566", "name" : "2558 (interacts with) 2566", "interaction" : "interacts with", "SUID" : 68542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68538", "source" : "1149", "target" : "3781", "shared_name" : "2558 (interacts with) 9152", "name" : "2558 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 68538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68534", "source" : "1149", "target" : "401", "shared_name" : "2558 (interacts with) 6532", "name" : "2558 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 68534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68530", "source" : "1149", "target" : "309", "shared_name" : "2558 (interacts with) 6536", "name" : "2558 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 68530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68526", "source" : "1149", "target" : "5373", "shared_name" : "2558 (interacts with) 28962", "name" : "2558 (interacts with) 28962", "interaction" : "interacts with", "SUID" : 68526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68590", "source" : "1145", "target" : "997", "shared_name" : "1281 (interacts with) 7431", "name" : "1281 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 68590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68586", "source" : "1145", "target" : "1549", "shared_name" : "1281 (interacts with) 7070", "name" : "1281 (interacts with) 7070", "interaction" : "interacts with", "SUID" : 68586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68582", "source" : "1145", "target" : "4785", "shared_name" : "1281 (interacts with) 1282", "name" : "1281 (interacts with) 1282", "interaction" : "interacts with", "SUID" : 68582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68578", "source" : "1145", "target" : "1497", "shared_name" : "1281 (interacts with) 3912", "name" : "1281 (interacts with) 3912", "interaction" : "interacts with", "SUID" : 68578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68574", "source" : "1145", "target" : "265", "shared_name" : "1281 (interacts with) 1293", "name" : "1281 (interacts with) 1293", "interaction" : "interacts with", "SUID" : 68574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68570", "source" : "1145", "target" : "809", "shared_name" : "1281 (interacts with) 2335", "name" : "1281 (interacts with) 2335", "interaction" : "interacts with", "SUID" : 68570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68566", "source" : "1145", "target" : "4001", "shared_name" : "1281 (interacts with) 79709", "name" : "1281 (interacts with) 79709", "interaction" : "interacts with", "SUID" : 68566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68562", "source" : "1145", "target" : "1297", "shared_name" : "1281 (interacts with) 6678", "name" : "1281 (interacts with) 6678", "interaction" : "interacts with", "SUID" : 68562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68598", "source" : "1141", "target" : "397", "shared_name" : "23064 (interacts with) 50", "name" : "23064 (interacts with) 50", "interaction" : "interacts with", "SUID" : 68598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68594", "source" : "1141", "target" : "5149", "shared_name" : "23064 (interacts with) 5058", "name" : "23064 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 68594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68814", "source" : "1133", "target" : "1929", "shared_name" : "3418 (interacts with) 51218", "name" : "3418 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 68814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68810", "source" : "1133", "target" : "517", "shared_name" : "3418 (interacts with) 5052", "name" : "3418 (interacts with) 5052", "interaction" : "interacts with", "SUID" : 68810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68806", "source" : "1133", "target" : "5677", "shared_name" : "3418 (interacts with) 5189", "name" : "3418 (interacts with) 5189", "interaction" : "interacts with", "SUID" : 68806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68802", "source" : "1133", "target" : "4505", "shared_name" : "3418 (interacts with) 5190", "name" : "3418 (interacts with) 5190", "interaction" : "interacts with", "SUID" : 68802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68798", "source" : "1133", "target" : "1977", "shared_name" : "3418 (interacts with) 5191", "name" : "3418 (interacts with) 5191", "interaction" : "interacts with", "SUID" : 68798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68794", "source" : "1133", "target" : "5865", "shared_name" : "3418 (interacts with) 5192", "name" : "3418 (interacts with) 5192", "interaction" : "interacts with", "SUID" : 68794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68790", "source" : "1133", "target" : "4297", "shared_name" : "3418 (interacts with) 5193", "name" : "3418 (interacts with) 5193", "interaction" : "interacts with", "SUID" : 68790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68786", "source" : "1133", "target" : "1953", "shared_name" : "3418 (interacts with) 5194", "name" : "3418 (interacts with) 5194", "interaction" : "interacts with", "SUID" : 68786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68782", "source" : "1133", "target" : "2405", "shared_name" : "3418 (interacts with) 3658", "name" : "3418 (interacts with) 3658", "interaction" : "interacts with", "SUID" : 68782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68778", "source" : "1133", "target" : "2945", "shared_name" : "3418 (interacts with) 471", "name" : "3418 (interacts with) 471", "interaction" : "interacts with", "SUID" : 68778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68774", "source" : "1133", "target" : "769", "shared_name" : "3418 (interacts with) 4953", "name" : "3418 (interacts with) 4953", "interaction" : "interacts with", "SUID" : 68774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68770", "source" : "1133", "target" : "845", "shared_name" : "3418 (interacts with) 4358", "name" : "3418 (interacts with) 4358", "interaction" : "interacts with", "SUID" : 68770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68766", "source" : "1133", "target" : "196", "shared_name" : "3418 (interacts with) 84188", "name" : "3418 (interacts with) 84188", "interaction" : "interacts with", "SUID" : 68766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68762", "source" : "1133", "target" : "3341", "shared_name" : "3418 (interacts with) 8504", "name" : "3418 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 68762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68758", "source" : "1133", "target" : "4301", "shared_name" : "3418 (interacts with) 8799", "name" : "3418 (interacts with) 8799", "interaction" : "interacts with", "SUID" : 68758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68754", "source" : "1133", "target" : "3333", "shared_name" : "3418 (interacts with) 9409", "name" : "3418 (interacts with) 9409", "interaction" : "interacts with", "SUID" : 68754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68750", "source" : "1133", "target" : "5545", "shared_name" : "3418 (interacts with) 5195", "name" : "3418 (interacts with) 5195", "interaction" : "interacts with", "SUID" : 68750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68746", "source" : "1133", "target" : "2353", "shared_name" : "3418 (interacts with) 5264", "name" : "3418 (interacts with) 5264", "interaction" : "interacts with", "SUID" : 68746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68742", "source" : "1133", "target" : "2325", "shared_name" : "3418 (interacts with) 55670", "name" : "3418 (interacts with) 55670", "interaction" : "interacts with", "SUID" : 68742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68738", "source" : "1133", "target" : "3329", "shared_name" : "3418 (interacts with) 5824", "name" : "3418 (interacts with) 5824", "interaction" : "interacts with", "SUID" : 68738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68734", "source" : "1133", "target" : "5873", "shared_name" : "3418 (interacts with) 5827", "name" : "3418 (interacts with) 5827", "interaction" : "interacts with", "SUID" : 68734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68730", "source" : "1133", "target" : "5205", "shared_name" : "3418 (interacts with) 5828", "name" : "3418 (interacts with) 5828", "interaction" : "interacts with", "SUID" : 68730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68726", "source" : "1133", "target" : "5237", "shared_name" : "3418 (interacts with) 5830", "name" : "3418 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 68726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68722", "source" : "1133", "target" : "5025", "shared_name" : "3418 (interacts with) 6389", "name" : "3418 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 68722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68718", "source" : "1133", "target" : "1669", "shared_name" : "3418 (interacts with) 6390", "name" : "3418 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 68718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68714", "source" : "1133", "target" : "1289", "shared_name" : "3418 (interacts with) 6392", "name" : "3418 (interacts with) 6392", "interaction" : "interacts with", "SUID" : 68714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68710", "source" : "1133", "target" : "1129", "shared_name" : "3418 (interacts with) 57505", "name" : "3418 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 68710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68706", "source" : "1133", "target" : "3421", "shared_name" : "3418 (interacts with) 4967", "name" : "3418 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 68706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68702", "source" : "1133", "target" : "3541", "shared_name" : "3418 (interacts with) 4191", "name" : "3418 (interacts with) 4191", "interaction" : "interacts with", "SUID" : 68702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68698", "source" : "1133", "target" : "3445", "shared_name" : "3418 (interacts with) 5091", "name" : "3418 (interacts with) 5091", "interaction" : "interacts with", "SUID" : 68698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68694", "source" : "1133", "target" : "2089", "shared_name" : "3418 (interacts with) 3939", "name" : "3418 (interacts with) 3939", "interaction" : "interacts with", "SUID" : 68694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68690", "source" : "1133", "target" : "1021", "shared_name" : "3418 (interacts with) 5096", "name" : "3418 (interacts with) 5096", "interaction" : "interacts with", "SUID" : 68690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68686", "source" : "1133", "target" : "3425", "shared_name" : "3418 (interacts with) 8803", "name" : "3418 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 68686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68682", "source" : "1133", "target" : "2925", "shared_name" : "3418 (interacts with) 8802", "name" : "3418 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 68682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68678", "source" : "1133", "target" : "1013", "shared_name" : "3418 (interacts with) 6898", "name" : "3418 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 68678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68674", "source" : "1133", "target" : "4185", "shared_name" : "3418 (interacts with) 29968", "name" : "3418 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 68674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68670", "source" : "1133", "target" : "5305", "shared_name" : "3418 (interacts with) 6901", "name" : "3418 (interacts with) 6901", "interaction" : "interacts with", "SUID" : 68670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68666", "source" : "1133", "target" : "3325", "shared_name" : "3418 (interacts with) 9517", "name" : "3418 (interacts with) 9517", "interaction" : "interacts with", "SUID" : 68666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68662", "source" : "1133", "target" : "409", "shared_name" : "3418 (interacts with) 10558", "name" : "3418 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 68662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68658", "source" : "1133", "target" : "681", "shared_name" : "3418 (interacts with) 6646", "name" : "3418 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 68658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68654", "source" : "1133", "target" : "1809", "shared_name" : "3418 (interacts with) 6548", "name" : "3418 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 68654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68650", "source" : "1133", "target" : "977", "shared_name" : "3418 (interacts with) 79944", "name" : "3418 (interacts with) 79944", "interaction" : "interacts with", "SUID" : 68650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68646", "source" : "1133", "target" : "1721", "shared_name" : "3418 (interacts with) 51807", "name" : "3418 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 68646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68642", "source" : "1133", "target" : "6009", "shared_name" : "3418 (interacts with) 64849", "name" : "3418 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 68642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68638", "source" : "1133", "target" : "1681", "shared_name" : "3418 (interacts with) 9990", "name" : "3418 (interacts with) 9990", "interaction" : "interacts with", "SUID" : 68638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68634", "source" : "1133", "target" : "2669", "shared_name" : "3418 (interacts with) 9197", "name" : "3418 (interacts with) 9197", "interaction" : "interacts with", "SUID" : 68634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68630", "source" : "1133", "target" : "3793", "shared_name" : "3418 (interacts with) 28965", "name" : "3418 (interacts with) 28965", "interaction" : "interacts with", "SUID" : 68630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68626", "source" : "1133", "target" : "3501", "shared_name" : "3418 (interacts with) 5831", "name" : "3418 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 68626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68622", "source" : "1133", "target" : "2161", "shared_name" : "3418 (interacts with) 55163", "name" : "3418 (interacts with) 55163", "interaction" : "interacts with", "SUID" : 68622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68618", "source" : "1133", "target" : "4941", "shared_name" : "3418 (interacts with) 6342", "name" : "3418 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 68618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68614", "source" : "1133", "target" : "3929", "shared_name" : "3418 (interacts with) 5860", "name" : "3418 (interacts with) 5860", "interaction" : "interacts with", "SUID" : 68614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68610", "source" : "1133", "target" : "4045", "shared_name" : "3418 (interacts with) 29920", "name" : "3418 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 68610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68606", "source" : "1133", "target" : "1485", "shared_name" : "3418 (interacts with) 8050", "name" : "3418 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 68606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68602", "source" : "1133", "target" : "1277", "shared_name" : "3418 (interacts with) 79143", "name" : "3418 (interacts with) 79143", "interaction" : "interacts with", "SUID" : 68602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68942", "source" : "1129", "target" : "3545", "shared_name" : "57505 (interacts with) 708", "name" : "57505 (interacts with) 708", "interaction" : "interacts with", "SUID" : 68942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68938", "source" : "1129", "target" : "889", "shared_name" : "57505 (interacts with) 80224", "name" : "57505 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 68938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68934", "source" : "1129", "target" : "6181", "shared_name" : "57505 (interacts with) 84987", "name" : "57505 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 68934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68930", "source" : "1129", "target" : "2009", "shared_name" : "57505 (interacts with) 79133", "name" : "57505 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 68930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68926", "source" : "1129", "target" : "1325", "shared_name" : "57505 (interacts with) 7284", "name" : "57505 (interacts with) 7284", "interaction" : "interacts with", "SUID" : 68926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68922", "source" : "1129", "target" : "4409", "shared_name" : "57505 (interacts with) 6341", "name" : "57505 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 68922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68918", "source" : "1129", "target" : "501", "shared_name" : "57505 (interacts with) 65993", "name" : "57505 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 68918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68914", "source" : "1129", "target" : "3705", "shared_name" : "57505 (interacts with) 87178", "name" : "57505 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 68914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68910", "source" : "1129", "target" : "4141", "shared_name" : "57505 (interacts with) 617", "name" : "57505 (interacts with) 617", "interaction" : "interacts with", "SUID" : 68910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68906", "source" : "1129", "target" : "5737", "shared_name" : "57505 (interacts with) 84340", "name" : "57505 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 68906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68902", "source" : "1129", "target" : "4757", "shared_name" : "57505 (interacts with) 9997", "name" : "57505 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 68902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68898", "source" : "1129", "target" : "1581", "shared_name" : "57505 (interacts with) 7407", "name" : "57505 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 68898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68894", "source" : "1129", "target" : "1089", "shared_name" : "57505 (interacts with) 5917", "name" : "57505 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 68894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68890", "source" : "1129", "target" : "4693", "shared_name" : "57505 (interacts with) 6301", "name" : "57505 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 68890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68886", "source" : "1129", "target" : "521", "shared_name" : "57505 (interacts with) 85476", "name" : "57505 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 68886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68882", "source" : "1129", "target" : "4349", "shared_name" : "57505 (interacts with) 5859", "name" : "57505 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 68882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68878", "source" : "1129", "target" : "4101", "shared_name" : "57505 (interacts with) 65260", "name" : "57505 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 68878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68874", "source" : "1129", "target" : "6073", "shared_name" : "57505 (interacts with) 92170", "name" : "57505 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 68874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68870", "source" : "1129", "target" : "713", "shared_name" : "57505 (interacts with) 7019", "name" : "57505 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 68870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68866", "source" : "1129", "target" : "1013", "shared_name" : "57505 (interacts with) 6898", "name" : "57505 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 68866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68862", "source" : "1129", "target" : "4869", "shared_name" : "57505 (interacts with) 92935", "name" : "57505 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 68862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68858", "source" : "1129", "target" : "721", "shared_name" : "57505 (interacts with) 79731", "name" : "57505 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 68858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68854", "source" : "1129", "target" : "1197", "shared_name" : "57505 (interacts with) 79587", "name" : "57505 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 68854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68850", "source" : "1129", "target" : "741", "shared_name" : "57505 (interacts with) 4830", "name" : "57505 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 68850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68846", "source" : "1129", "target" : "5605", "shared_name" : "57505 (interacts with) 51601", "name" : "57505 (interacts with) 51601", "interaction" : "interacts with", "SUID" : 68846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68842", "source" : "1129", "target" : "625", "shared_name" : "57505 (interacts with) 8942", "name" : "57505 (interacts with) 8942", "interaction" : "interacts with", "SUID" : 68842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68838", "source" : "1129", "target" : "5261", "shared_name" : "57505 (interacts with) 132", "name" : "57505 (interacts with) 132", "interaction" : "interacts with", "SUID" : 68838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68834", "source" : "1129", "target" : "4737", "shared_name" : "57505 (interacts with) 445", "name" : "57505 (interacts with) 445", "interaction" : "interacts with", "SUID" : 68834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68830", "source" : "1129", "target" : "5349", "shared_name" : "57505 (interacts with) 440", "name" : "57505 (interacts with) 440", "interaction" : "interacts with", "SUID" : 68830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68826", "source" : "1129", "target" : "2629", "shared_name" : "57505 (interacts with) 112812", "name" : "57505 (interacts with) 112812", "interaction" : "interacts with", "SUID" : 68826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68822", "source" : "1129", "target" : "5393", "shared_name" : "57505 (interacts with) 2395", "name" : "57505 (interacts with) 2395", "interaction" : "interacts with", "SUID" : 68822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68818", "source" : "1129", "target" : "4805", "shared_name" : "57505 (interacts with) 18", "name" : "57505 (interacts with) 18", "interaction" : "interacts with", "SUID" : 68818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68954", "source" : "1125", "target" : "337", "shared_name" : "5551 (interacts with) 9289", "name" : "5551 (interacts with) 9289", "interaction" : "interacts with", "SUID" : 68954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68950", "source" : "1125", "target" : "1845", "shared_name" : "5551 (interacts with) 836", "name" : "5551 (interacts with) 836", "interaction" : "interacts with", "SUID" : 68950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68946", "source" : "1125", "target" : "3021", "shared_name" : "5551 (interacts with) 84823", "name" : "5551 (interacts with) 84823", "interaction" : "interacts with", "SUID" : 68946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68970", "source" : "1121", "target" : "5497", "shared_name" : "284439 (interacts with) 91137", "name" : "284439 (interacts with) 91137", "interaction" : "interacts with", "SUID" : 68970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68966", "source" : "1121", "target" : "349", "shared_name" : "284439 (interacts with) 60386", "name" : "284439 (interacts with) 60386", "interaction" : "interacts with", "SUID" : 68966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68962", "source" : "1121", "target" : "2721", "shared_name" : "284439 (interacts with) 79751", "name" : "284439 (interacts with) 79751", "interaction" : "interacts with", "SUID" : 68962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68958", "source" : "1121", "target" : "361", "shared_name" : "284439 (interacts with) 6576", "name" : "284439 (interacts with) 6576", "interaction" : "interacts with", "SUID" : 68958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68978", "source" : "1117", "target" : "4957", "shared_name" : "9927 (interacts with) 5071", "name" : "9927 (interacts with) 5071", "interaction" : "interacts with", "SUID" : 68978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68974", "source" : "1117", "target" : "3349", "shared_name" : "9927 (interacts with) 8878", "name" : "9927 (interacts with) 8878", "interaction" : "interacts with", "SUID" : 68974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68998", "source" : "1113", "target" : "1845", "shared_name" : "10134 (interacts with) 836", "name" : "10134 (interacts with) 836", "interaction" : "interacts with", "SUID" : 68998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68994", "source" : "1113", "target" : "665", "shared_name" : "10134 (interacts with) 3309", "name" : "10134 (interacts with) 3309", "interaction" : "interacts with", "SUID" : 68994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68990", "source" : "1113", "target" : "1273", "shared_name" : "10134 (interacts with) 10059", "name" : "10134 (interacts with) 10059", "interaction" : "interacts with", "SUID" : 68990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68986", "source" : "1113", "target" : "5561", "shared_name" : "10134 (interacts with) 4247", "name" : "10134 (interacts with) 4247", "interaction" : "interacts with", "SUID" : 68986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "68982", "source" : "1113", "target" : "701", "shared_name" : "10134 (interacts with) 11011", "name" : "10134 (interacts with) 11011", "interaction" : "interacts with", "SUID" : 68982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69022", "source" : "1109", "target" : "813", "shared_name" : "3440 (interacts with) 3447", "name" : "3440 (interacts with) 3447", "interaction" : "interacts with", "SUID" : 69022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69018", "source" : "1109", "target" : "1985", "shared_name" : "3440 (interacts with) 3456", "name" : "3440 (interacts with) 3456", "interaction" : "interacts with", "SUID" : 69018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69014", "source" : "1109", "target" : "805", "shared_name" : "3440 (interacts with) 6772", "name" : "3440 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 69014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69010", "source" : "1109", "target" : "1701", "shared_name" : "3440 (interacts with) 5777", "name" : "3440 (interacts with) 5777", "interaction" : "interacts with", "SUID" : 69010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69006", "source" : "1109", "target" : "509", "shared_name" : "3440 (interacts with) 3661", "name" : "3440 (interacts with) 3661", "interaction" : "interacts with", "SUID" : 69006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69002", "source" : "1109", "target" : "3401", "shared_name" : "3440 (interacts with) 3659", "name" : "3440 (interacts with) 3659", "interaction" : "interacts with", "SUID" : 69002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69158", "source" : "1105", "target" : "2021", "shared_name" : "493753 (interacts with) 5428", "name" : "493753 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 69158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69154", "source" : "1105", "target" : "1865", "shared_name" : "493753 (interacts with) 498", "name" : "493753 (interacts with) 498", "interaction" : "interacts with", "SUID" : 69154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69150", "source" : "1105", "target" : "1325", "shared_name" : "493753 (interacts with) 7284", "name" : "493753 (interacts with) 7284", "interaction" : "interacts with", "SUID" : 69150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69146", "source" : "1105", "target" : "4869", "shared_name" : "493753 (interacts with) 92935", "name" : "493753 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 69146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69142", "source" : "1105", "target" : "2285", "shared_name" : "493753 (interacts with) 51300", "name" : "493753 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 69142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69138", "source" : "1105", "target" : "4621", "shared_name" : "493753 (interacts with) 57038", "name" : "493753 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 69138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69134", "source" : "1105", "target" : "4897", "shared_name" : "493753 (interacts with) 55149", "name" : "493753 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 69134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69130", "source" : "1105", "target" : "713", "shared_name" : "493753 (interacts with) 7019", "name" : "493753 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 69130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69126", "source" : "1105", "target" : "1129", "shared_name" : "493753 (interacts with) 57505", "name" : "493753 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 69126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69122", "source" : "1105", "target" : "3705", "shared_name" : "493753 (interacts with) 87178", "name" : "493753 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 69122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69118", "source" : "1105", "target" : "889", "shared_name" : "493753 (interacts with) 80224", "name" : "493753 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 69118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69114", "source" : "1105", "target" : "2477", "shared_name" : "493753 (interacts with) 57107", "name" : "493753 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 69114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69110", "source" : "1105", "target" : "1197", "shared_name" : "493753 (interacts with) 79587", "name" : "493753 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 69110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69106", "source" : "1105", "target" : "2109", "shared_name" : "493753 (interacts with) 51103", "name" : "493753 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 69106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69102", "source" : "1105", "target" : "6001", "shared_name" : "493753 (interacts with) 55157", "name" : "493753 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 69102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69098", "source" : "1105", "target" : "6073", "shared_name" : "493753 (interacts with) 92170", "name" : "493753 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 69098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69094", "source" : "1105", "target" : "3973", "shared_name" : "493753 (interacts with) 55572", "name" : "493753 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 69094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69090", "source" : "1105", "target" : "1053", "shared_name" : "493753 (interacts with) 81689", "name" : "493753 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 69090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69086", "source" : "1105", "target" : "521", "shared_name" : "493753 (interacts with) 85476", "name" : "493753 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 69086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69082", "source" : "1105", "target" : "2105", "shared_name" : "493753 (interacts with) 56945", "name" : "493753 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 69082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69078", "source" : "1105", "target" : "2009", "shared_name" : "493753 (interacts with) 79133", "name" : "493753 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 69078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69074", "source" : "1105", "target" : "1561", "shared_name" : "493753 (interacts with) 51117", "name" : "493753 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 69074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69070", "source" : "1105", "target" : "721", "shared_name" : "493753 (interacts with) 79731", "name" : "493753 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 69070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69066", "source" : "1105", "target" : "5189", "shared_name" : "493753 (interacts with) 57176", "name" : "493753 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 69066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69062", "source" : "1105", "target" : "4757", "shared_name" : "493753 (interacts with) 9997", "name" : "493753 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 69062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69058", "source" : "1105", "target" : "6181", "shared_name" : "493753 (interacts with) 84987", "name" : "493753 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 69058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69054", "source" : "1105", "target" : "5085", "shared_name" : "493753 (interacts with) 56652", "name" : "493753 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 69054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69050", "source" : "1105", "target" : "4409", "shared_name" : "493753 (interacts with) 6341", "name" : "493753 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 69050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69046", "source" : "1105", "target" : "4101", "shared_name" : "493753 (interacts with) 65260", "name" : "493753 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 69046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69042", "source" : "1105", "target" : "5737", "shared_name" : "493753 (interacts with) 84340", "name" : "493753 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 69042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69038", "source" : "1105", "target" : "4141", "shared_name" : "493753 (interacts with) 617", "name" : "493753 (interacts with) 617", "interaction" : "interacts with", "SUID" : 69038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69034", "source" : "1105", "target" : "477", "shared_name" : "493753 (interacts with) 51021", "name" : "493753 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 69034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69030", "source" : "1105", "target" : "2389", "shared_name" : "493753 (interacts with) 6925", "name" : "493753 (interacts with) 6925", "interaction" : "interacts with", "SUID" : 69030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69026", "source" : "1105", "target" : "3997", "shared_name" : "493753 (interacts with) 1890", "name" : "493753 (interacts with) 1890", "interaction" : "interacts with", "SUID" : 69026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69214", "source" : "1101", "target" : "1189", "shared_name" : "1807 (interacts with) 7915", "name" : "1807 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 69214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69210", "source" : "1101", "target" : "5597", "shared_name" : "1807 (interacts with) 22934", "name" : "1807 (interacts with) 22934", "interaction" : "interacts with", "SUID" : 69210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69206", "source" : "1101", "target" : "3185", "shared_name" : "1807 (interacts with) 5053", "name" : "1807 (interacts with) 5053", "interaction" : "interacts with", "SUID" : 69206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69202", "source" : "1101", "target" : "2029", "shared_name" : "1807 (interacts with) 4329", "name" : "1807 (interacts with) 4329", "interaction" : "interacts with", "SUID" : 69202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69198", "source" : "1101", "target" : "1849", "shared_name" : "1807 (interacts with) 26275", "name" : "1807 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 69198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69194", "source" : "1101", "target" : "4885", "shared_name" : "1807 (interacts with) 5340", "name" : "1807 (interacts with) 5340", "interaction" : "interacts with", "SUID" : 69194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69190", "source" : "1101", "target" : "3493", "shared_name" : "1807 (interacts with) 348", "name" : "1807 (interacts with) 348", "interaction" : "interacts with", "SUID" : 69190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69186", "source" : "1101", "target" : "2577", "shared_name" : "1807 (interacts with) 4337", "name" : "1807 (interacts with) 4337", "interaction" : "interacts with", "SUID" : 69186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69182", "source" : "1101", "target" : "1585", "shared_name" : "1807 (interacts with) 80347", "name" : "1807 (interacts with) 80347", "interaction" : "interacts with", "SUID" : 69182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69178", "source" : "1101", "target" : "1437", "shared_name" : "1807 (interacts with) 80025", "name" : "1807 (interacts with) 80025", "interaction" : "interacts with", "SUID" : 69178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69174", "source" : "1101", "target" : "5793", "shared_name" : "1807 (interacts with) 51251", "name" : "1807 (interacts with) 51251", "interaction" : "interacts with", "SUID" : 69174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69170", "source" : "1101", "target" : "5329", "shared_name" : "1807 (interacts with) 4907", "name" : "1807 (interacts with) 4907", "interaction" : "interacts with", "SUID" : 69170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69166", "source" : "1101", "target" : "413", "shared_name" : "1807 (interacts with) 51733", "name" : "1807 (interacts with) 51733", "interaction" : "interacts with", "SUID" : 69166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69162", "source" : "1101", "target" : "3997", "shared_name" : "1807 (interacts with) 1890", "name" : "1807 (interacts with) 1890", "interaction" : "interacts with", "SUID" : 69162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69218", "source" : "1097", "target" : "693", "shared_name" : "79718 (interacts with) 7296", "name" : "79718 (interacts with) 7296", "interaction" : "interacts with", "SUID" : 69218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69230", "source" : "1093", "target" : "5569", "shared_name" : "5274 (interacts with) 59345", "name" : "5274 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 69230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69226", "source" : "1093", "target" : "1097", "shared_name" : "5274 (interacts with) 79718", "name" : "5274 (interacts with) 79718", "interaction" : "interacts with", "SUID" : 69226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69222", "source" : "1093", "target" : "4645", "shared_name" : "5274 (interacts with) 84231", "name" : "5274 (interacts with) 84231", "interaction" : "interacts with", "SUID" : 69222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69302", "source" : "1089", "target" : "4041", "shared_name" : "5917 (interacts with) 847", "name" : "5917 (interacts with) 847", "interaction" : "interacts with", "SUID" : 69302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69298", "source" : "1089", "target" : "4513", "shared_name" : "5917 (interacts with) 6904", "name" : "5917 (interacts with) 6904", "interaction" : "interacts with", "SUID" : 69298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69294", "source" : "1089", "target" : "4869", "shared_name" : "5917 (interacts with) 92935", "name" : "5917 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 69294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69290", "source" : "1089", "target" : "4693", "shared_name" : "5917 (interacts with) 6301", "name" : "5917 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 69290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69286", "source" : "1089", "target" : "1197", "shared_name" : "5917 (interacts with) 79587", "name" : "5917 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 69286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69282", "source" : "1089", "target" : "721", "shared_name" : "5917 (interacts with) 79731", "name" : "5917 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 69282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69278", "source" : "1089", "target" : "1013", "shared_name" : "5917 (interacts with) 6898", "name" : "5917 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 69278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69274", "source" : "1089", "target" : "1581", "shared_name" : "5917 (interacts with) 7407", "name" : "5917 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 69274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69270", "source" : "1089", "target" : "1385", "shared_name" : "5917 (interacts with) 6520", "name" : "5917 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 69270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69266", "source" : "1089", "target" : "3077", "shared_name" : "5917 (interacts with) 6506", "name" : "5917 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 69266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69262", "source" : "1089", "target" : "1885", "shared_name" : "5917 (interacts with) 8604", "name" : "5917 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 69262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69258", "source" : "1089", "target" : "3169", "shared_name" : "5917 (interacts with) 1615", "name" : "5917 (interacts with) 1615", "interaction" : "interacts with", "SUID" : 69258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69254", "source" : "1089", "target" : "3641", "shared_name" : "5917 (interacts with) 4141", "name" : "5917 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 69254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69250", "source" : "1089", "target" : "4593", "shared_name" : "5917 (interacts with) 2058", "name" : "5917 (interacts with) 2058", "interaction" : "interacts with", "SUID" : 69250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69246", "source" : "1089", "target" : "3529", "shared_name" : "5917 (interacts with) 7965", "name" : "5917 (interacts with) 7965", "interaction" : "interacts with", "SUID" : 69246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69242", "source" : "1089", "target" : "4597", "shared_name" : "5917 (interacts with) 3376", "name" : "5917 (interacts with) 3376", "interaction" : "interacts with", "SUID" : 69242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69238", "source" : "1089", "target" : "3649", "shared_name" : "5917 (interacts with) 51520", "name" : "5917 (interacts with) 51520", "interaction" : "interacts with", "SUID" : 69238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69234", "source" : "1089", "target" : "3157", "shared_name" : "5917 (interacts with) 9255", "name" : "5917 (interacts with) 9255", "interaction" : "interacts with", "SUID" : 69234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69342", "source" : "1085", "target" : "5585", "shared_name" : "9377 (interacts with) 4512", "name" : "9377 (interacts with) 4512", "interaction" : "interacts with", "SUID" : 69342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69338", "source" : "1085", "target" : "5589", "shared_name" : "9377 (interacts with) 4513", "name" : "9377 (interacts with) 4513", "interaction" : "interacts with", "SUID" : 69338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69334", "source" : "1085", "target" : "2573", "shared_name" : "9377 (interacts with) 4514", "name" : "9377 (interacts with) 4514", "interaction" : "interacts with", "SUID" : 69334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69330", "source" : "1085", "target" : "4757", "shared_name" : "9377 (interacts with) 9997", "name" : "9377 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 69330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69326", "source" : "1085", "target" : "3413", "shared_name" : "9377 (interacts with) 1337", "name" : "9377 (interacts with) 1337", "interaction" : "interacts with", "SUID" : 69326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69322", "source" : "1085", "target" : "5685", "shared_name" : "9377 (interacts with) 1340", "name" : "9377 (interacts with) 1340", "interaction" : "interacts with", "SUID" : 69322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69318", "source" : "1085", "target" : "5385", "shared_name" : "9377 (interacts with) 1349", "name" : "9377 (interacts with) 1349", "interaction" : "interacts with", "SUID" : 69318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69314", "source" : "1085", "target" : "2785", "shared_name" : "9377 (interacts with) 1351", "name" : "9377 (interacts with) 1351", "interaction" : "interacts with", "SUID" : 69314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69310", "source" : "1085", "target" : "1605", "shared_name" : "9377 (interacts with) 6648", "name" : "9377 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 69310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69306", "source" : "1085", "target" : "297", "shared_name" : "9377 (interacts with) 1339", "name" : "9377 (interacts with) 1339", "interaction" : "interacts with", "SUID" : 69306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69346", "source" : "1077", "target" : "2357", "shared_name" : "79583 (interacts with) 79600", "name" : "79583 (interacts with) 79600", "interaction" : "interacts with", "SUID" : 69346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69358", "source" : "1073", "target" : "349", "shared_name" : "27010 (interacts with) 60386", "name" : "27010 (interacts with) 60386", "interaction" : "interacts with", "SUID" : 69358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69354", "source" : "1073", "target" : "6025", "shared_name" : "27010 (interacts with) 80704", "name" : "27010 (interacts with) 80704", "interaction" : "interacts with", "SUID" : 69354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69350", "source" : "1073", "target" : "817", "shared_name" : "27010 (interacts with) 5728", "name" : "27010 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 69350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69458", "source" : "1069", "target" : "1201", "shared_name" : "5879 (interacts with) 805", "name" : "5879 (interacts with) 805", "interaction" : "interacts with", "SUID" : 69458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69454", "source" : "1069", "target" : "637", "shared_name" : "5879 (interacts with) 6654", "name" : "5879 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 69454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69450", "source" : "1069", "target" : "3409", "shared_name" : "5879 (interacts with) 7043", "name" : "5879 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 69450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69446", "source" : "1069", "target" : "2153", "shared_name" : "5879 (interacts with) 7042", "name" : "5879 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 69446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69442", "source" : "1069", "target" : "3305", "shared_name" : "5879 (interacts with) 7040", "name" : "5879 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 69442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69438", "source" : "1069", "target" : "805", "shared_name" : "5879 (interacts with) 6772", "name" : "5879 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 69438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69434", "source" : "1069", "target" : "981", "shared_name" : "5879 (interacts with) 7157", "name" : "5879 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 69434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69430", "source" : "1069", "target" : "1241", "shared_name" : "5879 (interacts with) 808", "name" : "5879 (interacts with) 808", "interaction" : "interacts with", "SUID" : 69430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69426", "source" : "1069", "target" : "5625", "shared_name" : "5879 (interacts with) 595", "name" : "5879 (interacts with) 595", "interaction" : "interacts with", "SUID" : 69426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69422", "source" : "1069", "target" : "1973", "shared_name" : "5879 (interacts with) 6709", "name" : "5879 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 69422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69418", "source" : "1069", "target" : "2433", "shared_name" : "5879 (interacts with) 6927", "name" : "5879 (interacts with) 6927", "interaction" : "interacts with", "SUID" : 69418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69414", "source" : "1069", "target" : "5313", "shared_name" : "5879 (interacts with) 6197", "name" : "5879 (interacts with) 6197", "interaction" : "interacts with", "SUID" : 69414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69410", "source" : "1069", "target" : "5697", "shared_name" : "5879 (interacts with) 8517", "name" : "5879 (interacts with) 8517", "interaction" : "interacts with", "SUID" : 69410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69406", "source" : "1069", "target" : "5637", "shared_name" : "5879 (interacts with) 6609", "name" : "5879 (interacts with) 6609", "interaction" : "interacts with", "SUID" : 69406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69402", "source" : "1069", "target" : "3289", "shared_name" : "5879 (interacts with) 5913", "name" : "5879 (interacts with) 5913", "interaction" : "interacts with", "SUID" : 69402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69398", "source" : "1069", "target" : "4909", "shared_name" : "5879 (interacts with) 823", "name" : "5879 (interacts with) 823", "interaction" : "interacts with", "SUID" : 69398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69394", "source" : "1069", "target" : "3285", "shared_name" : "5879 (interacts with) 8302", "name" : "5879 (interacts with) 8302", "interaction" : "interacts with", "SUID" : 69394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69390", "source" : "1069", "target" : "1857", "shared_name" : "5879 (interacts with) 9533", "name" : "5879 (interacts with) 9533", "interaction" : "interacts with", "SUID" : 69390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69386", "source" : "1069", "target" : "2777", "shared_name" : "5879 (interacts with) 9230", "name" : "5879 (interacts with) 9230", "interaction" : "interacts with", "SUID" : 69386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69382", "source" : "1069", "target" : "2617", "shared_name" : "5879 (interacts with) 57531", "name" : "5879 (interacts with) 57531", "interaction" : "interacts with", "SUID" : 69382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69378", "source" : "1069", "target" : "1405", "shared_name" : "5879 (interacts with) 998", "name" : "5879 (interacts with) 998", "interaction" : "interacts with", "SUID" : 69378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69374", "source" : "1069", "target" : "5073", "shared_name" : "5879 (interacts with) 7305", "name" : "5879 (interacts with) 7305", "interaction" : "interacts with", "SUID" : 69374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69370", "source" : "1069", "target" : "725", "shared_name" : "5879 (interacts with) 54209", "name" : "5879 (interacts with) 54209", "interaction" : "interacts with", "SUID" : 69370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69366", "source" : "1069", "target" : "4645", "shared_name" : "5879 (interacts with) 84231", "name" : "5879 (interacts with) 84231", "interaction" : "interacts with", "SUID" : 69366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69362", "source" : "1069", "target" : "2509", "shared_name" : "5879 (interacts with) 7204", "name" : "5879 (interacts with) 7204", "interaction" : "interacts with", "SUID" : 69362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69470", "source" : "1065", "target" : "5321", "shared_name" : "55739 (interacts with) 5743", "name" : "55739 (interacts with) 5743", "interaction" : "interacts with", "SUID" : 69470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69466", "source" : "1065", "target" : "3425", "shared_name" : "55739 (interacts with) 8803", "name" : "55739 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 69466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69462", "source" : "1065", "target" : "2925", "shared_name" : "55739 (interacts with) 8802", "name" : "55739 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 69462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69510", "source" : "1061", "target" : "4993", "shared_name" : "1180 (interacts with) 8622", "name" : "1180 (interacts with) 8622", "interaction" : "interacts with", "SUID" : 69510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69506", "source" : "1061", "target" : "917", "shared_name" : "1180 (interacts with) 1181", "name" : "1180 (interacts with) 1181", "interaction" : "interacts with", "SUID" : 69506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69502", "source" : "1061", "target" : "4673", "shared_name" : "1180 (interacts with) 1186", "name" : "1180 (interacts with) 1186", "interaction" : "interacts with", "SUID" : 69502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69498", "source" : "1061", "target" : "4845", "shared_name" : "1180 (interacts with) 259232", "name" : "1180 (interacts with) 259232", "interaction" : "interacts with", "SUID" : 69498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69494", "source" : "1061", "target" : "277", "shared_name" : "1180 (interacts with) 285175", "name" : "1180 (interacts with) 285175", "interaction" : "interacts with", "SUID" : 69494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69490", "source" : "1061", "target" : "5373", "shared_name" : "1180 (interacts with) 28962", "name" : "1180 (interacts with) 28962", "interaction" : "interacts with", "SUID" : 69490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69486", "source" : "1061", "target" : "1429", "shared_name" : "1180 (interacts with) 65125", "name" : "1180 (interacts with) 65125", "interaction" : "interacts with", "SUID" : 69486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69482", "source" : "1061", "target" : "3781", "shared_name" : "1180 (interacts with) 9152", "name" : "1180 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 69482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69478", "source" : "1061", "target" : "401", "shared_name" : "1180 (interacts with) 6532", "name" : "1180 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 69478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69474", "source" : "1061", "target" : "309", "shared_name" : "1180 (interacts with) 6536", "name" : "1180 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 69474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69522", "source" : "1057", "target" : "981", "shared_name" : "7862 (interacts with) 7157", "name" : "7862 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 69522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69518", "source" : "1057", "target" : "3417", "shared_name" : "7862 (interacts with) 5371", "name" : "7862 (interacts with) 5371", "interaction" : "interacts with", "SUID" : 69518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69514", "source" : "1057", "target" : "2625", "shared_name" : "7862 (interacts with) 3065", "name" : "7862 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 69514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69566", "source" : "1053", "target" : "4757", "shared_name" : "81689 (interacts with) 9997", "name" : "81689 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 69566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69562", "source" : "1053", "target" : "5737", "shared_name" : "81689 (interacts with) 84340", "name" : "81689 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 69562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69558", "source" : "1053", "target" : "521", "shared_name" : "81689 (interacts with) 85476", "name" : "81689 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 69558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69554", "source" : "1053", "target" : "1361", "shared_name" : "81689 (interacts with) 55262", "name" : "81689 (interacts with) 55262", "interaction" : "interacts with", "SUID" : 69554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69550", "source" : "1053", "target" : "4173", "shared_name" : "81689 (interacts with) 23499", "name" : "81689 (interacts with) 23499", "interaction" : "interacts with", "SUID" : 69550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69546", "source" : "1053", "target" : "4289", "shared_name" : "81689 (interacts with) 90678", "name" : "81689 (interacts with) 90678", "interaction" : "interacts with", "SUID" : 69546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69542", "source" : "1053", "target" : "2477", "shared_name" : "81689 (interacts with) 57107", "name" : "81689 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 69542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69538", "source" : "1053", "target" : "2345", "shared_name" : "81689 (interacts with) 200205", "name" : "81689 (interacts with) 200205", "interaction" : "interacts with", "SUID" : 69538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69534", "source" : "1053", "target" : "2521", "shared_name" : "81689 (interacts with) 83696", "name" : "81689 (interacts with) 83696", "interaction" : "interacts with", "SUID" : 69534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69530", "source" : "1053", "target" : "4269", "shared_name" : "81689 (interacts with) 3832", "name" : "81689 (interacts with) 3832", "interaction" : "interacts with", "SUID" : 69530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69526", "source" : "1053", "target" : "6113", "shared_name" : "81689 (interacts with) 388962", "name" : "81689 (interacts with) 388962", "interaction" : "interacts with", "SUID" : 69526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69586", "source" : "1049", "target" : "2921", "shared_name" : "5422 (interacts with) 5981", "name" : "5422 (interacts with) 5981", "interaction" : "interacts with", "SUID" : 69586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69582", "source" : "1049", "target" : "4053", "shared_name" : "5422 (interacts with) 79621", "name" : "5422 (interacts with) 79621", "interaction" : "interacts with", "SUID" : 69582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69578", "source" : "1049", "target" : "4609", "shared_name" : "5422 (interacts with) 84153", "name" : "5422 (interacts with) 84153", "interaction" : "interacts with", "SUID" : 69578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69574", "source" : "1049", "target" : "5113", "shared_name" : "5422 (interacts with) 7084", "name" : "5422 (interacts with) 7084", "interaction" : "interacts with", "SUID" : 69574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69570", "source" : "1049", "target" : "2529", "shared_name" : "5422 (interacts with) 5424", "name" : "5422 (interacts with) 5424", "interaction" : "interacts with", "SUID" : 69570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69630", "source" : "1045", "target" : "2517", "shared_name" : "1650 (interacts with) 1798", "name" : "1650 (interacts with) 1798", "interaction" : "interacts with", "SUID" : 69630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69626", "source" : "1045", "target" : "1697", "shared_name" : "1650 (interacts with) 8818", "name" : "1650 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 69626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69622", "source" : "1045", "target" : "5561", "shared_name" : "1650 (interacts with) 4247", "name" : "1650 (interacts with) 4247", "interaction" : "interacts with", "SUID" : 69622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69618", "source" : "1045", "target" : "5005", "shared_name" : "1650 (interacts with) 79868", "name" : "1650 (interacts with) 79868", "interaction" : "interacts with", "SUID" : 69618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69614", "source" : "1045", "target" : "6017", "shared_name" : "1650 (interacts with) 79796", "name" : "1650 (interacts with) 79796", "interaction" : "interacts with", "SUID" : 69614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69610", "source" : "1045", "target" : "289", "shared_name" : "1650 (interacts with) 56052", "name" : "1650 (interacts with) 56052", "interaction" : "interacts with", "SUID" : 69610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69606", "source" : "1045", "target" : "3489", "shared_name" : "1650 (interacts with) 54344", "name" : "1650 (interacts with) 54344", "interaction" : "interacts with", "SUID" : 69606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69602", "source" : "1045", "target" : "3037", "shared_name" : "1650 (interacts with) 8813", "name" : "1650 (interacts with) 8813", "interaction" : "interacts with", "SUID" : 69602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69598", "source" : "1045", "target" : "1797", "shared_name" : "1650 (interacts with) 85365", "name" : "1650 (interacts with) 85365", "interaction" : "interacts with", "SUID" : 69598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69594", "source" : "1045", "target" : "3605", "shared_name" : "1650 (interacts with) 7841", "name" : "1650 (interacts with) 7841", "interaction" : "interacts with", "SUID" : 69594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69590", "source" : "1045", "target" : "5573", "shared_name" : "1650 (interacts with) 84061", "name" : "1650 (interacts with) 84061", "interaction" : "interacts with", "SUID" : 69590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69638", "source" : "1041", "target" : "3449", "shared_name" : "3766 (interacts with) 9568", "name" : "3766 (interacts with) 9568", "interaction" : "interacts with", "SUID" : 69638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69634", "source" : "1041", "target" : "5913", "shared_name" : "3766 (interacts with) 3767", "name" : "3766 (interacts with) 3767", "interaction" : "interacts with", "SUID" : 69634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69682", "source" : "1037", "target" : "1929", "shared_name" : "387787 (interacts with) 51218", "name" : "387787 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 69682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69678", "source" : "1037", "target" : "1669", "shared_name" : "387787 (interacts with) 6390", "name" : "387787 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 69678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69674", "source" : "1037", "target" : "5517", "shared_name" : "387787 (interacts with) 8514", "name" : "387787 (interacts with) 8514", "interaction" : "interacts with", "SUID" : 69674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69670", "source" : "1037", "target" : "2881", "shared_name" : "387787 (interacts with) 5160", "name" : "387787 (interacts with) 5160", "interaction" : "interacts with", "SUID" : 69670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69666", "source" : "1037", "target" : "1485", "shared_name" : "387787 (interacts with) 8050", "name" : "387787 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 69666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69662", "source" : "1037", "target" : "493", "shared_name" : "387787 (interacts with) 594", "name" : "387787 (interacts with) 594", "interaction" : "interacts with", "SUID" : 69662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69658", "source" : "1037", "target" : "3421", "shared_name" : "387787 (interacts with) 4967", "name" : "387787 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 69658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69654", "source" : "1037", "target" : "693", "shared_name" : "387787 (interacts with) 7296", "name" : "387787 (interacts with) 7296", "interaction" : "interacts with", "SUID" : 69654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69650", "source" : "1037", "target" : "485", "shared_name" : "387787 (interacts with) 593", "name" : "387787 (interacts with) 593", "interaction" : "interacts with", "SUID" : 69650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69646", "source" : "1037", "target" : "4401", "shared_name" : "387787 (interacts with) 55526", "name" : "387787 (interacts with) 55526", "interaction" : "interacts with", "SUID" : 69646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69642", "source" : "1037", "target" : "5605", "shared_name" : "387787 (interacts with) 51601", "name" : "387787 (interacts with) 51601", "interaction" : "interacts with", "SUID" : 69642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69746", "source" : "1029", "target" : "6105", "shared_name" : "5080 (interacts with) 28996", "name" : "5080 (interacts with) 28996", "interaction" : "interacts with", "SUID" : 69746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69742", "source" : "1029", "target" : "3305", "shared_name" : "5080 (interacts with) 7040", "name" : "5080 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 69742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69738", "source" : "1029", "target" : "6169", "shared_name" : "5080 (interacts with) 4088", "name" : "5080 (interacts with) 4088", "interaction" : "interacts with", "SUID" : 69738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69734", "source" : "1029", "target" : "2077", "shared_name" : "5080 (interacts with) 7528", "name" : "5080 (interacts with) 7528", "interaction" : "interacts with", "SUID" : 69734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69730", "source" : "1029", "target" : "5941", "shared_name" : "5080 (interacts with) 5914", "name" : "5080 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 69730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69726", "source" : "1029", "target" : "3825", "shared_name" : "5080 (interacts with) 5915", "name" : "5080 (interacts with) 5915", "interaction" : "interacts with", "SUID" : 69726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69722", "source" : "1029", "target" : "5861", "shared_name" : "5080 (interacts with) 5435", "name" : "5080 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 69722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69718", "source" : "1029", "target" : "2649", "shared_name" : "5080 (interacts with) 5430", "name" : "5080 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 69718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69714", "source" : "1029", "target" : "1705", "shared_name" : "5080 (interacts with) 134526", "name" : "5080 (interacts with) 134526", "interaction" : "interacts with", "SUID" : 69714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69710", "source" : "1029", "target" : "757", "shared_name" : "5080 (interacts with) 80856", "name" : "5080 (interacts with) 80856", "interaction" : "interacts with", "SUID" : 69710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69706", "source" : "1029", "target" : "697", "shared_name" : "5080 (interacts with) 55768", "name" : "5080 (interacts with) 55768", "interaction" : "interacts with", "SUID" : 69706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69702", "source" : "1029", "target" : "701", "shared_name" : "5080 (interacts with) 11011", "name" : "5080 (interacts with) 11011", "interaction" : "interacts with", "SUID" : 69702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69698", "source" : "1029", "target" : "777", "shared_name" : "5080 (interacts with) 8030", "name" : "5080 (interacts with) 8030", "interaction" : "interacts with", "SUID" : 69698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69694", "source" : "1029", "target" : "2937", "shared_name" : "5080 (interacts with) 1457", "name" : "5080 (interacts with) 1457", "interaction" : "interacts with", "SUID" : 69694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69690", "source" : "1029", "target" : "1185", "shared_name" : "5080 (interacts with) 51324", "name" : "5080 (interacts with) 51324", "interaction" : "interacts with", "SUID" : 69690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69686", "source" : "1029", "target" : "745", "shared_name" : "5080 (interacts with) 1725", "name" : "5080 (interacts with) 1725", "interaction" : "interacts with", "SUID" : 69686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69766", "source" : "1025", "target" : "1697", "shared_name" : "80055 (interacts with) 8818", "name" : "80055 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 69766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69762", "source" : "1025", "target" : "2181", "shared_name" : "80055 (interacts with) 94005", "name" : "80055 (interacts with) 94005", "interaction" : "interacts with", "SUID" : 69762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69758", "source" : "1025", "target" : "3029", "shared_name" : "80055 (interacts with) 84947", "name" : "80055 (interacts with) 84947", "interaction" : "interacts with", "SUID" : 69758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69754", "source" : "1025", "target" : "1905", "shared_name" : "80055 (interacts with) 9488", "name" : "80055 (interacts with) 9488", "interaction" : "interacts with", "SUID" : 69754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69750", "source" : "1025", "target" : "985", "shared_name" : "80055 (interacts with) 9091", "name" : "80055 (interacts with) 9091", "interaction" : "interacts with", "SUID" : 69750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69802", "source" : "1021", "target" : "4941", "shared_name" : "5096 (interacts with) 6342", "name" : "5096 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 69802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69798", "source" : "1021", "target" : "4717", "shared_name" : "5096 (interacts with) 51204", "name" : "5096 (interacts with) 51204", "interaction" : "interacts with", "SUID" : 69798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69794", "source" : "1021", "target" : "493", "shared_name" : "5096 (interacts with) 594", "name" : "5096 (interacts with) 594", "interaction" : "interacts with", "SUID" : 69794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69790", "source" : "1021", "target" : "485", "shared_name" : "5096 (interacts with) 593", "name" : "5096 (interacts with) 593", "interaction" : "interacts with", "SUID" : 69790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69786", "source" : "1021", "target" : "2025", "shared_name" : "5096 (interacts with) 549", "name" : "5096 (interacts with) 549", "interaction" : "interacts with", "SUID" : 69786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69782", "source" : "1021", "target" : "5341", "shared_name" : "5096 (interacts with) 91647", "name" : "5096 (interacts with) 91647", "interaction" : "interacts with", "SUID" : 69782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69778", "source" : "1021", "target" : "3425", "shared_name" : "5096 (interacts with) 8803", "name" : "5096 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 69778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69774", "source" : "1021", "target" : "2925", "shared_name" : "5096 (interacts with) 8802", "name" : "5096 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 69774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69770", "source" : "1021", "target" : "2277", "shared_name" : "5096 (interacts with) 686", "name" : "5096 (interacts with) 686", "interaction" : "interacts with", "SUID" : 69770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69854", "source" : "1017", "target" : "2925", "shared_name" : "11212 (interacts with) 8802", "name" : "11212 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 69854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69850", "source" : "1017", "target" : "781", "shared_name" : "11212 (interacts with) 4860", "name" : "11212 (interacts with) 4860", "interaction" : "interacts with", "SUID" : 69850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69846", "source" : "1017", "target" : "4261", "shared_name" : "11212 (interacts with) 124454", "name" : "11212 (interacts with) 124454", "interaction" : "interacts with", "SUID" : 69846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69842", "source" : "1017", "target" : "3161", "shared_name" : "11212 (interacts with) 2821", "name" : "11212 (interacts with) 2821", "interaction" : "interacts with", "SUID" : 69842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69838", "source" : "1017", "target" : "4085", "shared_name" : "11212 (interacts with) 55699", "name" : "11212 (interacts with) 55699", "interaction" : "interacts with", "SUID" : 69838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69834", "source" : "1017", "target" : "5797", "shared_name" : "11212 (interacts with) 3030", "name" : "11212 (interacts with) 3030", "interaction" : "interacts with", "SUID" : 69834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69830", "source" : "1017", "target" : "2285", "shared_name" : "11212 (interacts with) 51300", "name" : "11212 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 69830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69826", "source" : "1017", "target" : "1013", "shared_name" : "11212 (interacts with) 6898", "name" : "11212 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 69826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69822", "source" : "1017", "target" : "4773", "shared_name" : "11212 (interacts with) 90624", "name" : "11212 (interacts with) 90624", "interaction" : "interacts with", "SUID" : 69822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69818", "source" : "1017", "target" : "3501", "shared_name" : "11212 (interacts with) 5831", "name" : "11212 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 69818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69814", "source" : "1017", "target" : "4045", "shared_name" : "11212 (interacts with) 29920", "name" : "11212 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 69814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69810", "source" : "1017", "target" : "1385", "shared_name" : "11212 (interacts with) 6520", "name" : "11212 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 69810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69806", "source" : "1017", "target" : "2321", "shared_name" : "11212 (interacts with) 6509", "name" : "11212 (interacts with) 6509", "interaction" : "interacts with", "SUID" : 69806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69894", "source" : "1013", "target" : "893", "shared_name" : "6898 (interacts with) 9361", "name" : "6898 (interacts with) 9361", "interaction" : "interacts with", "SUID" : 69894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69890", "source" : "1013", "target" : "4253", "shared_name" : "6898 (interacts with) 84706", "name" : "6898 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 69890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69886", "source" : "1013", "target" : "3325", "shared_name" : "6898 (interacts with) 9517", "name" : "6898 (interacts with) 9517", "interaction" : "interacts with", "SUID" : 69886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69882", "source" : "1013", "target" : "1581", "shared_name" : "6898 (interacts with) 7407", "name" : "6898 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 69882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69878", "source" : "1013", "target" : "369", "shared_name" : "6898 (interacts with) 7173", "name" : "6898 (interacts with) 7173", "interaction" : "interacts with", "SUID" : 69878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69874", "source" : "1013", "target" : "389", "shared_name" : "6898 (interacts with) 7299", "name" : "6898 (interacts with) 7299", "interaction" : "interacts with", "SUID" : 69874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69870", "source" : "1013", "target" : "5593", "shared_name" : "6898 (interacts with) 875", "name" : "6898 (interacts with) 875", "interaction" : "interacts with", "SUID" : 69870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69866", "source" : "1013", "target" : "3633", "shared_name" : "6898 (interacts with) 51067", "name" : "6898 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 69866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69862", "source" : "1013", "target" : "413", "shared_name" : "6898 (interacts with) 51733", "name" : "6898 (interacts with) 51733", "interaction" : "interacts with", "SUID" : 69862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69858", "source" : "1013", "target" : "3689", "shared_name" : "6898 (interacts with) 7054", "name" : "6898 (interacts with) 7054", "interaction" : "interacts with", "SUID" : 69858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69962", "source" : "1009", "target" : "2169", "shared_name" : "8086 (interacts with) 51182", "name" : "8086 (interacts with) 51182", "interaction" : "interacts with", "SUID" : 69962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69958", "source" : "1009", "target" : "1217", "shared_name" : "8086 (interacts with) 3308", "name" : "8086 (interacts with) 3308", "interaction" : "interacts with", "SUID" : 69958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69954", "source" : "1009", "target" : "5781", "shared_name" : "8086 (interacts with) 6672", "name" : "8086 (interacts with) 6672", "interaction" : "interacts with", "SUID" : 69954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69950", "source" : "1009", "target" : "877", "shared_name" : "8086 (interacts with) 7341", "name" : "8086 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 69950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69946", "source" : "1009", "target" : "1349", "shared_name" : "8086 (interacts with) 6606", "name" : "8086 (interacts with) 6606", "interaction" : "interacts with", "SUID" : 69946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69942", "source" : "1009", "target" : "1345", "shared_name" : "8086 (interacts with) 6607", "name" : "8086 (interacts with) 6607", "interaction" : "interacts with", "SUID" : 69942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69938", "source" : "1009", "target" : "4549", "shared_name" : "8086 (interacts with) 5903", "name" : "8086 (interacts with) 5903", "interaction" : "interacts with", "SUID" : 69938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69934", "source" : "1009", "target" : "1837", "shared_name" : "8086 (interacts with) 9939", "name" : "8086 (interacts with) 9939", "interaction" : "interacts with", "SUID" : 69934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69930", "source" : "1009", "target" : "3417", "shared_name" : "8086 (interacts with) 5371", "name" : "8086 (interacts with) 5371", "interaction" : "interacts with", "SUID" : 69930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69926", "source" : "1009", "target" : "4005", "shared_name" : "8086 (interacts with) 23636", "name" : "8086 (interacts with) 23636", "interaction" : "interacts with", "SUID" : 69926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69922", "source" : "1009", "target" : "5445", "shared_name" : "8086 (interacts with) 8021", "name" : "8086 (interacts with) 8021", "interaction" : "interacts with", "SUID" : 69922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69918", "source" : "1009", "target" : "2565", "shared_name" : "8086 (interacts with) 51501", "name" : "8086 (interacts with) 51501", "interaction" : "interacts with", "SUID" : 69918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69914", "source" : "1009", "target" : "2409", "shared_name" : "8086 (interacts with) 3304", "name" : "8086 (interacts with) 3304", "interaction" : "interacts with", "SUID" : 69914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69910", "source" : "1009", "target" : "665", "shared_name" : "8086 (interacts with) 3309", "name" : "8086 (interacts with) 3309", "interaction" : "interacts with", "SUID" : 69910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69906", "source" : "1009", "target" : "6177", "shared_name" : "8086 (interacts with) 50628", "name" : "8086 (interacts with) 50628", "interaction" : "interacts with", "SUID" : 69906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69902", "source" : "1009", "target" : "6061", "shared_name" : "8086 (interacts with) 2733", "name" : "8086 (interacts with) 2733", "interaction" : "interacts with", "SUID" : 69902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69898", "source" : "1009", "target" : "2585", "shared_name" : "8086 (interacts with) 1977", "name" : "8086 (interacts with) 1977", "interaction" : "interacts with", "SUID" : 69898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70006", "source" : "1005", "target" : "1237", "shared_name" : "1728 (interacts with) 3329", "name" : "1728 (interacts with) 3329", "interaction" : "interacts with", "SUID" : 70006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70002", "source" : "1005", "target" : "5661", "shared_name" : "1728 (interacts with) 2717", "name" : "1728 (interacts with) 2717", "interaction" : "interacts with", "SUID" : 70002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69998", "source" : "1005", "target" : "3517", "shared_name" : "1728 (interacts with) 2033", "name" : "1728 (interacts with) 2033", "interaction" : "interacts with", "SUID" : 69998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69994", "source" : "1005", "target" : "5509", "shared_name" : "1728 (interacts with) 207", "name" : "1728 (interacts with) 207", "interaction" : "interacts with", "SUID" : 69994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69990", "source" : "1005", "target" : "981", "shared_name" : "1728 (interacts with) 7157", "name" : "1728 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 69990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69986", "source" : "1005", "target" : "2613", "shared_name" : "1728 (interacts with) 472", "name" : "1728 (interacts with) 472", "interaction" : "interacts with", "SUID" : 69986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69982", "source" : "1005", "target" : "5577", "shared_name" : "1728 (interacts with) 3091", "name" : "1728 (interacts with) 3091", "interaction" : "interacts with", "SUID" : 69982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69978", "source" : "1005", "target" : "2101", "shared_name" : "1728 (interacts with) 3486", "name" : "1728 (interacts with) 3486", "interaction" : "interacts with", "SUID" : 69978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69974", "source" : "1005", "target" : "769", "shared_name" : "1728 (interacts with) 4953", "name" : "1728 (interacts with) 4953", "interaction" : "interacts with", "SUID" : 69974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69970", "source" : "1005", "target" : "1013", "shared_name" : "1728 (interacts with) 6898", "name" : "1728 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 69970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "69966", "source" : "1005", "target" : "5985", "shared_name" : "1728 (interacts with) 27235", "name" : "1728 (interacts with) 27235", "interaction" : "interacts with", "SUID" : 69966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70022", "source" : "1001", "target" : "921", "shared_name" : "56891 (interacts with) 3880", "name" : "56891 (interacts with) 3880", "interaction" : "interacts with", "SUID" : 70022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70018", "source" : "1001", "target" : "965", "shared_name" : "56891 (interacts with) 79991", "name" : "56891 (interacts with) 79991", "interaction" : "interacts with", "SUID" : 70018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70014", "source" : "1001", "target" : "2389", "shared_name" : "56891 (interacts with) 6925", "name" : "56891 (interacts with) 6925", "interaction" : "interacts with", "SUID" : 70014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70010", "source" : "1001", "target" : "997", "shared_name" : "56891 (interacts with) 7431", "name" : "56891 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 70010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70050", "source" : "997", "target" : "3897", "shared_name" : "7431 (interacts with) 10763", "name" : "7431 (interacts with) 10763", "interaction" : "interacts with", "SUID" : 70050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70046", "source" : "997", "target" : "3217", "shared_name" : "7431 (interacts with) 8139", "name" : "7431 (interacts with) 8139", "interaction" : "interacts with", "SUID" : 70046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70042", "source" : "997", "target" : "2977", "shared_name" : "7431 (interacts with) 4747", "name" : "7431 (interacts with) 4747", "interaction" : "interacts with", "SUID" : 70042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70038", "source" : "997", "target" : "969", "shared_name" : "7431 (interacts with) 2670", "name" : "7431 (interacts with) 2670", "interaction" : "interacts with", "SUID" : 70038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70034", "source" : "997", "target" : "5525", "shared_name" : "7431 (interacts with) 84260", "name" : "7431 (interacts with) 84260", "interaction" : "interacts with", "SUID" : 70034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70030", "source" : "997", "target" : "2665", "shared_name" : "7431 (interacts with) 27229", "name" : "7431 (interacts with) 27229", "interaction" : "interacts with", "SUID" : 70030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70026", "source" : "997", "target" : "3293", "shared_name" : "7431 (interacts with) 1832", "name" : "7431 (interacts with) 1832", "interaction" : "interacts with", "SUID" : 70026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70458", "source" : "993", "target" : "5053", "shared_name" : "801 (interacts with) 857", "name" : "801 (interacts with) 857", "interaction" : "interacts with", "SUID" : 70458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70454", "source" : "993", "target" : "1201", "shared_name" : "801 (interacts with) 805", "name" : "801 (interacts with) 805", "interaction" : "interacts with", "SUID" : 70454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70450", "source" : "993", "target" : "2969", "shared_name" : "801 (interacts with) 8867", "name" : "801 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 70450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70446", "source" : "993", "target" : "1241", "shared_name" : "801 (interacts with) 808", "name" : "801 (interacts with) 808", "interaction" : "interacts with", "SUID" : 70446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70442", "source" : "993", "target" : "4841", "shared_name" : "801 (interacts with) 6334", "name" : "801 (interacts with) 6334", "interaction" : "interacts with", "SUID" : 70442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70438", "source" : "993", "target" : "3845", "shared_name" : "801 (interacts with) 10479", "name" : "801 (interacts with) 10479", "interaction" : "interacts with", "SUID" : 70438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70434", "source" : "993", "target" : "997", "shared_name" : "801 (interacts with) 7431", "name" : "801 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 70434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70430", "source" : "993", "target" : "277", "shared_name" : "801 (interacts with) 285175", "name" : "801 (interacts with) 285175", "interaction" : "interacts with", "SUID" : 70430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70426", "source" : "993", "target" : "5989", "shared_name" : "801 (interacts with) 7273", "name" : "801 (interacts with) 7273", "interaction" : "interacts with", "SUID" : 70426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70422", "source" : "993", "target" : "4361", "shared_name" : "801 (interacts with) 22906", "name" : "801 (interacts with) 22906", "interaction" : "interacts with", "SUID" : 70422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70418", "source" : "993", "target" : "2581", "shared_name" : "801 (interacts with) 7170", "name" : "801 (interacts with) 7170", "interaction" : "interacts with", "SUID" : 70418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70414", "source" : "993", "target" : "5785", "shared_name" : "801 (interacts with) 6857", "name" : "801 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 70414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70410", "source" : "993", "target" : "609", "shared_name" : "801 (interacts with) 6812", "name" : "801 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 70410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70406", "source" : "993", "target" : "1097", "shared_name" : "801 (interacts with) 79718", "name" : "801 (interacts with) 79718", "interaction" : "interacts with", "SUID" : 70406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70402", "source" : "993", "target" : "637", "shared_name" : "801 (interacts with) 6654", "name" : "801 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 70402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70398", "source" : "993", "target" : "2901", "shared_name" : "801 (interacts with) 6647", "name" : "801 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 70398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70394", "source" : "993", "target" : "3853", "shared_name" : "801 (interacts with) 6786", "name" : "801 (interacts with) 6786", "interaction" : "interacts with", "SUID" : 70394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70390", "source" : "993", "target" : "1297", "shared_name" : "801 (interacts with) 6678", "name" : "801 (interacts with) 6678", "interaction" : "interacts with", "SUID" : 70390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70386", "source" : "993", "target" : "5049", "shared_name" : "801 (interacts with) 6697", "name" : "801 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 70386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70382", "source" : "993", "target" : "5929", "shared_name" : "801 (interacts with) 6616", "name" : "801 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 70382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70378", "source" : "993", "target" : "3781", "shared_name" : "801 (interacts with) 9152", "name" : "801 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 70378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70374", "source" : "993", "target" : "3601", "shared_name" : "801 (interacts with) 6531", "name" : "801 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 70374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70370", "source" : "993", "target" : "401", "shared_name" : "801 (interacts with) 6532", "name" : "801 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 70370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70366", "source" : "993", "target" : "309", "shared_name" : "801 (interacts with) 6536", "name" : "801 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 70366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70362", "source" : "993", "target" : "5877", "shared_name" : "801 (interacts with) 6535", "name" : "801 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 70362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70358", "source" : "993", "target" : "2877", "shared_name" : "801 (interacts with) 340024", "name" : "801 (interacts with) 340024", "interaction" : "interacts with", "SUID" : 70358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70354", "source" : "993", "target" : "3473", "shared_name" : "801 (interacts with) 6528", "name" : "801 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 70354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70350", "source" : "993", "target" : "1385", "shared_name" : "801 (interacts with) 6520", "name" : "801 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 70350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70346", "source" : "993", "target" : "4689", "shared_name" : "801 (interacts with) 291", "name" : "801 (interacts with) 291", "interaction" : "interacts with", "SUID" : 70346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70342", "source" : "993", "target" : "5805", "shared_name" : "801 (interacts with) 6575", "name" : "801 (interacts with) 6575", "interaction" : "interacts with", "SUID" : 70342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70338", "source" : "993", "target" : "4025", "shared_name" : "801 (interacts with) 284111", "name" : "801 (interacts with) 284111", "interaction" : "interacts with", "SUID" : 70338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70334", "source" : "993", "target" : "3077", "shared_name" : "801 (interacts with) 6506", "name" : "801 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 70334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70330", "source" : "993", "target" : "6009", "shared_name" : "801 (interacts with) 64849", "name" : "801 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 70330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70326", "source" : "993", "target" : "689", "shared_name" : "801 (interacts with) 6329", "name" : "801 (interacts with) 6329", "interaction" : "interacts with", "SUID" : 70326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70322", "source" : "993", "target" : "373", "shared_name" : "801 (interacts with) 6328", "name" : "801 (interacts with) 6328", "interaction" : "interacts with", "SUID" : 70322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70318", "source" : "993", "target" : "5229", "shared_name" : "801 (interacts with) 6335", "name" : "801 (interacts with) 6335", "interaction" : "interacts with", "SUID" : 70318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70314", "source" : "993", "target" : "377", "shared_name" : "801 (interacts with) 6326", "name" : "801 (interacts with) 6326", "interaction" : "interacts with", "SUID" : 70314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70310", "source" : "993", "target" : "381", "shared_name" : "801 (interacts with) 6323", "name" : "801 (interacts with) 6323", "interaction" : "interacts with", "SUID" : 70310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70306", "source" : "993", "target" : "2873", "shared_name" : "801 (interacts with) 6261", "name" : "801 (interacts with) 6261", "interaction" : "interacts with", "SUID" : 70306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70302", "source" : "993", "target" : "5729", "shared_name" : "801 (interacts with) 861", "name" : "801 (interacts with) 861", "interaction" : "interacts with", "SUID" : 70302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70298", "source" : "993", "target" : "313", "shared_name" : "801 (interacts with) 5923", "name" : "801 (interacts with) 5923", "interaction" : "interacts with", "SUID" : 70298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70294", "source" : "993", "target" : "1069", "shared_name" : "801 (interacts with) 5879", "name" : "801 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 70294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70290", "source" : "993", "target" : "3929", "shared_name" : "801 (interacts with) 5860", "name" : "801 (interacts with) 5860", "interaction" : "interacts with", "SUID" : 70290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70286", "source" : "993", "target" : "3841", "shared_name" : "801 (interacts with) 9444", "name" : "801 (interacts with) 9444", "interaction" : "interacts with", "SUID" : 70286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70282", "source" : "993", "target" : "6101", "shared_name" : "801 (interacts with) 5582", "name" : "801 (interacts with) 5582", "interaction" : "interacts with", "SUID" : 70282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70278", "source" : "993", "target" : "3177", "shared_name" : "801 (interacts with) 5321", "name" : "801 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 70278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70274", "source" : "993", "target" : "4993", "shared_name" : "801 (interacts with) 8622", "name" : "801 (interacts with) 8622", "interaction" : "interacts with", "SUID" : 70274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70270", "source" : "993", "target" : "5841", "shared_name" : "801 (interacts with) 10846", "name" : "801 (interacts with) 10846", "interaction" : "interacts with", "SUID" : 70270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70266", "source" : "993", "target" : "2429", "shared_name" : "801 (interacts with) 4952", "name" : "801 (interacts with) 4952", "interaction" : "interacts with", "SUID" : 70266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70262", "source" : "993", "target" : "5337", "shared_name" : "801 (interacts with) 84876", "name" : "801 (interacts with) 84876", "interaction" : "interacts with", "SUID" : 70262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70258", "source" : "993", "target" : "3569", "shared_name" : "801 (interacts with) 4893", "name" : "801 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 70258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70254", "source" : "993", "target" : "4097", "shared_name" : "801 (interacts with) 9611", "name" : "801 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 70254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70250", "source" : "993", "target" : "2977", "shared_name" : "801 (interacts with) 4747", "name" : "801 (interacts with) 4747", "interaction" : "interacts with", "SUID" : 70250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70246", "source" : "993", "target" : "1357", "shared_name" : "801 (interacts with) 58498", "name" : "801 (interacts with) 58498", "interaction" : "interacts with", "SUID" : 70246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70242", "source" : "993", "target" : "4873", "shared_name" : "801 (interacts with) 4644", "name" : "801 (interacts with) 4644", "interaction" : "interacts with", "SUID" : 70242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70238", "source" : "993", "target" : "4845", "shared_name" : "801 (interacts with) 259232", "name" : "801 (interacts with) 259232", "interaction" : "interacts with", "SUID" : 70238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70234", "source" : "993", "target" : "1521", "shared_name" : "801 (interacts with) 84879", "name" : "801 (interacts with) 84879", "interaction" : "interacts with", "SUID" : 70234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70230", "source" : "993", "target" : "5453", "shared_name" : "801 (interacts with) 4204", "name" : "801 (interacts with) 4204", "interaction" : "interacts with", "SUID" : 70230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70226", "source" : "993", "target" : "1261", "shared_name" : "801 (interacts with) 57192", "name" : "801 (interacts with) 57192", "interaction" : "interacts with", "SUID" : 70226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70222", "source" : "993", "target" : "1777", "shared_name" : "801 (interacts with) 4153", "name" : "801 (interacts with) 4153", "interaction" : "interacts with", "SUID" : 70222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70218", "source" : "993", "target" : "3361", "shared_name" : "801 (interacts with) 4000", "name" : "801 (interacts with) 4000", "interaction" : "interacts with", "SUID" : 70218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70214", "source" : "993", "target" : "1861", "shared_name" : "801 (interacts with) 3708", "name" : "801 (interacts with) 3708", "interaction" : "interacts with", "SUID" : 70214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70210", "source" : "993", "target" : "2673", "shared_name" : "801 (interacts with) 8841", "name" : "801 (interacts with) 8841", "interaction" : "interacts with", "SUID" : 70210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70206", "source" : "993", "target" : "513", "shared_name" : "801 (interacts with) 348980", "name" : "801 (interacts with) 348980", "interaction" : "interacts with", "SUID" : 70206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70202", "source" : "993", "target" : "5365", "shared_name" : "801 (interacts with) 2893", "name" : "801 (interacts with) 2893", "interaction" : "interacts with", "SUID" : 70202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70198", "source" : "993", "target" : "3393", "shared_name" : "801 (interacts with) 9402", "name" : "801 (interacts with) 9402", "interaction" : "interacts with", "SUID" : 70198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70194", "source" : "993", "target" : "5569", "shared_name" : "801 (interacts with) 59345", "name" : "801 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 70194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70190", "source" : "993", "target" : "5541", "shared_name" : "801 (interacts with) 2775", "name" : "801 (interacts with) 2775", "interaction" : "interacts with", "SUID" : 70190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70186", "source" : "993", "target" : "5493", "shared_name" : "801 (interacts with) 2678", "name" : "801 (interacts with) 2678", "interaction" : "interacts with", "SUID" : 70186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70182", "source" : "993", "target" : "5489", "shared_name" : "801 (interacts with) 2259", "name" : "801 (interacts with) 2259", "interaction" : "interacts with", "SUID" : 70182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70178", "source" : "993", "target" : "2381", "shared_name" : "801 (interacts with) 2257", "name" : "801 (interacts with) 2257", "interaction" : "interacts with", "SUID" : 70178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70174", "source" : "993", "target" : "6097", "shared_name" : "801 (interacts with) 1756", "name" : "801 (interacts with) 1756", "interaction" : "interacts with", "SUID" : 70174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70170", "source" : "993", "target" : "2597", "shared_name" : "801 (interacts with) 2056", "name" : "801 (interacts with) 2056", "interaction" : "interacts with", "SUID" : 70170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70166", "source" : "993", "target" : "4893", "shared_name" : "801 (interacts with) 10815", "name" : "801 (interacts with) 10815", "interaction" : "interacts with", "SUID" : 70166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70162", "source" : "993", "target" : "1821", "shared_name" : "801 (interacts with) 1719", "name" : "801 (interacts with) 1719", "interaction" : "interacts with", "SUID" : 70162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70158", "source" : "993", "target" : "1313", "shared_name" : "801 (interacts with) 1727", "name" : "801 (interacts with) 1727", "interaction" : "interacts with", "SUID" : 70158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70154", "source" : "993", "target" : "1405", "shared_name" : "801 (interacts with) 998", "name" : "801 (interacts with) 998", "interaction" : "interacts with", "SUID" : 70154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70150", "source" : "993", "target" : "3945", "shared_name" : "801 (interacts with) 846", "name" : "801 (interacts with) 846", "interaction" : "interacts with", "SUID" : 70150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70146", "source" : "993", "target" : "2493", "shared_name" : "801 (interacts with) 7466", "name" : "801 (interacts with) 7466", "interaction" : "interacts with", "SUID" : 70146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70142", "source" : "993", "target" : "5793", "shared_name" : "801 (interacts with) 51251", "name" : "801 (interacts with) 51251", "interaction" : "interacts with", "SUID" : 70142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70138", "source" : "993", "target" : "669", "shared_name" : "801 (interacts with) 259266", "name" : "801 (interacts with) 259266", "interaction" : "interacts with", "SUID" : 70138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70134", "source" : "993", "target" : "657", "shared_name" : "801 (interacts with) 547", "name" : "801 (interacts with) 547", "interaction" : "interacts with", "SUID" : 70134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70130", "source" : "993", "target" : "601", "shared_name" : "801 (interacts with) 55187", "name" : "801 (interacts with) 55187", "interaction" : "interacts with", "SUID" : 70130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70126", "source" : "993", "target" : "3521", "shared_name" : "801 (interacts with) 85440", "name" : "801 (interacts with) 85440", "interaction" : "interacts with", "SUID" : 70126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70122", "source" : "993", "target" : "1429", "shared_name" : "801 (interacts with) 65125", "name" : "801 (interacts with) 65125", "interaction" : "interacts with", "SUID" : 70122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70118", "source" : "993", "target" : "3753", "shared_name" : "801 (interacts with) 8888", "name" : "801 (interacts with) 8888", "interaction" : "interacts with", "SUID" : 70118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70114", "source" : "993", "target" : "1205", "shared_name" : "801 (interacts with) 23230", "name" : "801 (interacts with) 23230", "interaction" : "interacts with", "SUID" : 70114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70110", "source" : "993", "target" : "4517", "shared_name" : "801 (interacts with) 55704", "name" : "801 (interacts with) 55704", "interaction" : "interacts with", "SUID" : 70110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70106", "source" : "993", "target" : "4897", "shared_name" : "801 (interacts with) 55149", "name" : "801 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 70106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70102", "source" : "993", "target" : "673", "shared_name" : "801 (interacts with) 23096", "name" : "801 (interacts with) 23096", "interaction" : "interacts with", "SUID" : 70102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70098", "source" : "993", "target" : "5613", "shared_name" : "801 (interacts with) 5119", "name" : "801 (interacts with) 5119", "interaction" : "interacts with", "SUID" : 70098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70094", "source" : "993", "target" : "1961", "shared_name" : "801 (interacts with) 23095", "name" : "801 (interacts with) 23095", "interaction" : "interacts with", "SUID" : 70094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70090", "source" : "993", "target" : "3597", "shared_name" : "801 (interacts with) 10749", "name" : "801 (interacts with) 10749", "interaction" : "interacts with", "SUID" : 70090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70086", "source" : "993", "target" : "2281", "shared_name" : "801 (interacts with) 79823", "name" : "801 (interacts with) 79823", "interaction" : "interacts with", "SUID" : 70086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70082", "source" : "993", "target" : "5737", "shared_name" : "801 (interacts with) 84340", "name" : "801 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 70082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70078", "source" : "993", "target" : "3417", "shared_name" : "801 (interacts with) 5371", "name" : "801 (interacts with) 5371", "interaction" : "interacts with", "SUID" : 70078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70074", "source" : "993", "target" : "3061", "shared_name" : "801 (interacts with) 4155", "name" : "801 (interacts with) 4155", "interaction" : "interacts with", "SUID" : 70074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70070", "source" : "993", "target" : "1809", "shared_name" : "801 (interacts with) 6548", "name" : "801 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 70070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70066", "source" : "993", "target" : "3573", "shared_name" : "801 (interacts with) 3845", "name" : "801 (interacts with) 3845", "interaction" : "interacts with", "SUID" : 70066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70062", "source" : "993", "target" : "2553", "shared_name" : "801 (interacts with) 815", "name" : "801 (interacts with) 815", "interaction" : "interacts with", "SUID" : 70062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70058", "source" : "993", "target" : "2005", "shared_name" : "801 (interacts with) 4846", "name" : "801 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 70058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70054", "source" : "993", "target" : "1285", "shared_name" : "801 (interacts with) 7249", "name" : "801 (interacts with) 7249", "interaction" : "interacts with", "SUID" : 70054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70486", "source" : "989", "target" : "5937", "shared_name" : "5297 (interacts with) 8120", "name" : "5297 (interacts with) 8120", "interaction" : "interacts with", "SUID" : 70486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70482", "source" : "989", "target" : "2969", "shared_name" : "5297 (interacts with) 8867", "name" : "5297 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 70482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70478", "source" : "989", "target" : "3653", "shared_name" : "5297 (interacts with) 8898", "name" : "5297 (interacts with) 8898", "interaction" : "interacts with", "SUID" : 70478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70474", "source" : "989", "target" : "4701", "shared_name" : "5297 (interacts with) 9896", "name" : "5297 (interacts with) 9896", "interaction" : "interacts with", "SUID" : 70474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70470", "source" : "989", "target" : "2497", "shared_name" : "5297 (interacts with) 55697", "name" : "5297 (interacts with) 55697", "interaction" : "interacts with", "SUID" : 70470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70466", "source" : "989", "target" : "1909", "shared_name" : "5297 (interacts with) 5286", "name" : "5297 (interacts with) 5286", "interaction" : "interacts with", "SUID" : 70466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70462", "source" : "989", "target" : "1733", "shared_name" : "5297 (interacts with) 6305", "name" : "5297 (interacts with) 6305", "interaction" : "interacts with", "SUID" : 70462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70510", "source" : "985", "target" : "1905", "shared_name" : "9091 (interacts with) 9488", "name" : "9091 (interacts with) 9488", "interaction" : "interacts with", "SUID" : 70510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70506", "source" : "985", "target" : "2181", "shared_name" : "9091 (interacts with) 94005", "name" : "9091 (interacts with) 94005", "interaction" : "interacts with", "SUID" : 70506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70502", "source" : "985", "target" : "6133", "shared_name" : "9091 (interacts with) 54658", "name" : "9091 (interacts with) 54658", "interaction" : "interacts with", "SUID" : 70502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70498", "source" : "985", "target" : "1733", "shared_name" : "9091 (interacts with) 6305", "name" : "9091 (interacts with) 6305", "interaction" : "interacts with", "SUID" : 70498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70494", "source" : "985", "target" : "3705", "shared_name" : "9091 (interacts with) 87178", "name" : "9091 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 70494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70490", "source" : "985", "target" : "4481", "shared_name" : "9091 (interacts with) 55624", "name" : "9091 (interacts with) 55624", "interaction" : "interacts with", "SUID" : 70490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70618", "source" : "981", "target" : "1845", "shared_name" : "7157 (interacts with) 836", "name" : "7157 (interacts with) 836", "interaction" : "interacts with", "SUID" : 70618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70614", "source" : "981", "target" : "2793", "shared_name" : "7157 (interacts with) 8894", "name" : "7157 (interacts with) 8894", "interaction" : "interacts with", "SUID" : 70614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70610", "source" : "981", "target" : "877", "shared_name" : "7157 (interacts with) 7341", "name" : "7157 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 70610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70606", "source" : "981", "target" : "1857", "shared_name" : "7157 (interacts with) 9533", "name" : "7157 (interacts with) 9533", "interaction" : "interacts with", "SUID" : 70606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70602", "source" : "981", "target" : "2069", "shared_name" : "7157 (interacts with) 84106", "name" : "7157 (interacts with) 84106", "interaction" : "interacts with", "SUID" : 70602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70598", "source" : "981", "target" : "225", "shared_name" : "7157 (interacts with) 174", "name" : "7157 (interacts with) 174", "interaction" : "interacts with", "SUID" : 70598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70594", "source" : "981", "target" : "1441", "shared_name" : "7157 (interacts with) 1509", "name" : "7157 (interacts with) 1509", "interaction" : "interacts with", "SUID" : 70594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70590", "source" : "981", "target" : "709", "shared_name" : "7157 (interacts with) 112858", "name" : "7157 (interacts with) 112858", "interaction" : "interacts with", "SUID" : 70590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70586", "source" : "981", "target" : "1493", "shared_name" : "7157 (interacts with) 7428", "name" : "7157 (interacts with) 7428", "interaction" : "interacts with", "SUID" : 70586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70582", "source" : "981", "target" : "821", "shared_name" : "7157 (interacts with) 1410", "name" : "7157 (interacts with) 1410", "interaction" : "interacts with", "SUID" : 70582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70578", "source" : "981", "target" : "3145", "shared_name" : "7157 (interacts with) 8493", "name" : "7157 (interacts with) 8493", "interaction" : "interacts with", "SUID" : 70578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70574", "source" : "981", "target" : "3033", "shared_name" : "7157 (interacts with) 1020", "name" : "7157 (interacts with) 1020", "interaction" : "interacts with", "SUID" : 70574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70570", "source" : "981", "target" : "1913", "shared_name" : "7157 (interacts with) 3172", "name" : "7157 (interacts with) 3172", "interaction" : "interacts with", "SUID" : 70570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70566", "source" : "981", "target" : "2369", "shared_name" : "7157 (interacts with) 51741", "name" : "7157 (interacts with) 51741", "interaction" : "interacts with", "SUID" : 70566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70562", "source" : "981", "target" : "4029", "shared_name" : "7157 (interacts with) 57178", "name" : "7157 (interacts with) 57178", "interaction" : "interacts with", "SUID" : 70562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70558", "source" : "981", "target" : "1821", "shared_name" : "7157 (interacts with) 1719", "name" : "7157 (interacts with) 1719", "interaction" : "interacts with", "SUID" : 70558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70554", "source" : "981", "target" : "1349", "shared_name" : "7157 (interacts with) 6606", "name" : "7157 (interacts with) 6606", "interaction" : "interacts with", "SUID" : 70554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70550", "source" : "981", "target" : "1597", "shared_name" : "7157 (interacts with) 3146", "name" : "7157 (interacts with) 3146", "interaction" : "interacts with", "SUID" : 70550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70546", "source" : "981", "target" : "3529", "shared_name" : "7157 (interacts with) 7965", "name" : "7157 (interacts with) 7965", "interaction" : "interacts with", "SUID" : 70546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70542", "source" : "981", "target" : "3729", "shared_name" : "7157 (interacts with) 7319", "name" : "7157 (interacts with) 7319", "interaction" : "interacts with", "SUID" : 70542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70538", "source" : "981", "target" : "5081", "shared_name" : "7157 (interacts with) 5594", "name" : "7157 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 70538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70534", "source" : "981", "target" : "2489", "shared_name" : "7157 (interacts with) 4692", "name" : "7157 (interacts with) 4692", "interaction" : "interacts with", "SUID" : 70534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70530", "source" : "981", "target" : "1413", "shared_name" : "7157 (interacts with) 7337", "name" : "7157 (interacts with) 7337", "interaction" : "interacts with", "SUID" : 70530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70526", "source" : "981", "target" : "5577", "shared_name" : "7157 (interacts with) 3091", "name" : "7157 (interacts with) 3091", "interaction" : "interacts with", "SUID" : 70526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70522", "source" : "981", "target" : "2417", "shared_name" : "7157 (interacts with) 675", "name" : "7157 (interacts with) 675", "interaction" : "interacts with", "SUID" : 70522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70518", "source" : "981", "target" : "2305", "shared_name" : "7157 (interacts with) 6908", "name" : "7157 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 70518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70514", "source" : "981", "target" : "3049", "shared_name" : "7157 (interacts with) 142", "name" : "7157 (interacts with) 142", "interaction" : "interacts with", "SUID" : 70514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70638", "source" : "977", "target" : "3325", "shared_name" : "79944 (interacts with) 9517", "name" : "79944 (interacts with) 9517", "interaction" : "interacts with", "SUID" : 70638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70634", "source" : "977", "target" : "5025", "shared_name" : "79944 (interacts with) 6389", "name" : "79944 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 70634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70630", "source" : "977", "target" : "4185", "shared_name" : "79944 (interacts with) 29968", "name" : "79944 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 70630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70626", "source" : "977", "target" : "1013", "shared_name" : "79944 (interacts with) 6898", "name" : "79944 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 70626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70622", "source" : "977", "target" : "3421", "shared_name" : "79944 (interacts with) 4967", "name" : "79944 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 70622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70862", "source" : "973", "target" : "3837", "shared_name" : "5595 (interacts with) 6098", "name" : "5595 (interacts with) 6098", "interaction" : "interacts with", "SUID" : 70862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70858", "source" : "973", "target" : "5965", "shared_name" : "5595 (interacts with) 596", "name" : "5595 (interacts with) 596", "interaction" : "interacts with", "SUID" : 70858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70854", "source" : "973", "target" : "4769", "shared_name" : "5595 (interacts with) 7132", "name" : "5595 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 70854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70850", "source" : "973", "target" : "805", "shared_name" : "5595 (interacts with) 6772", "name" : "5595 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 70850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70846", "source" : "973", "target" : "5625", "shared_name" : "5595 (interacts with) 595", "name" : "5595 (interacts with) 595", "interaction" : "interacts with", "SUID" : 70846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70842", "source" : "973", "target" : "2433", "shared_name" : "5595 (interacts with) 6927", "name" : "5595 (interacts with) 6927", "interaction" : "interacts with", "SUID" : 70842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70838", "source" : "973", "target" : "4981", "shared_name" : "5595 (interacts with) 6774", "name" : "5595 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 70838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70834", "source" : "973", "target" : "5313", "shared_name" : "5595 (interacts with) 6197", "name" : "5595 (interacts with) 6197", "interaction" : "interacts with", "SUID" : 70834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70830", "source" : "973", "target" : "569", "shared_name" : "5595 (interacts with) 7048", "name" : "5595 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 70830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70826", "source" : "973", "target" : "1405", "shared_name" : "5595 (interacts with) 998", "name" : "5595 (interacts with) 998", "interaction" : "interacts with", "SUID" : 70826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70822", "source" : "973", "target" : "829", "shared_name" : "5595 (interacts with) 8772", "name" : "5595 (interacts with) 8772", "interaction" : "interacts with", "SUID" : 70822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70818", "source" : "973", "target" : "817", "shared_name" : "5595 (interacts with) 5728", "name" : "5595 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 70818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70814", "source" : "973", "target" : "5697", "shared_name" : "5595 (interacts with) 8517", "name" : "5595 (interacts with) 8517", "interaction" : "interacts with", "SUID" : 70814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70810", "source" : "973", "target" : "4589", "shared_name" : "5595 (interacts with) 8431", "name" : "5595 (interacts with) 8431", "interaction" : "interacts with", "SUID" : 70810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70806", "source" : "973", "target" : "1701", "shared_name" : "5595 (interacts with) 5777", "name" : "5595 (interacts with) 5777", "interaction" : "interacts with", "SUID" : 70806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70802", "source" : "973", "target" : "5321", "shared_name" : "5595 (interacts with) 5743", "name" : "5595 (interacts with) 5743", "interaction" : "interacts with", "SUID" : 70802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70798", "source" : "973", "target" : "4097", "shared_name" : "5595 (interacts with) 9611", "name" : "5595 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 70798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70794", "source" : "973", "target" : "4909", "shared_name" : "5595 (interacts with) 823", "name" : "5595 (interacts with) 823", "interaction" : "interacts with", "SUID" : 70794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70790", "source" : "973", "target" : "5053", "shared_name" : "5595 (interacts with) 857", "name" : "5595 (interacts with) 857", "interaction" : "interacts with", "SUID" : 70790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70786", "source" : "973", "target" : "3289", "shared_name" : "5595 (interacts with) 5913", "name" : "5595 (interacts with) 5913", "interaction" : "interacts with", "SUID" : 70786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70782", "source" : "973", "target" : "4033", "shared_name" : "5595 (interacts with) 613", "name" : "5595 (interacts with) 613", "interaction" : "interacts with", "SUID" : 70782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70778", "source" : "973", "target" : "5637", "shared_name" : "5595 (interacts with) 6609", "name" : "5595 (interacts with) 6609", "interaction" : "interacts with", "SUID" : 70778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70774", "source" : "973", "target" : "1697", "shared_name" : "5595 (interacts with) 8818", "name" : "5595 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 70774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70770", "source" : "973", "target" : "6117", "shared_name" : "5595 (interacts with) 9131", "name" : "5595 (interacts with) 9131", "interaction" : "interacts with", "SUID" : 70770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70766", "source" : "973", "target" : "3285", "shared_name" : "5595 (interacts with) 8302", "name" : "5595 (interacts with) 8302", "interaction" : "interacts with", "SUID" : 70766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70762", "source" : "973", "target" : "1817", "shared_name" : "5595 (interacts with) 7343", "name" : "5595 (interacts with) 7343", "interaction" : "interacts with", "SUID" : 70762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70758", "source" : "973", "target" : "3357", "shared_name" : "5595 (interacts with) 23152", "name" : "5595 (interacts with) 23152", "interaction" : "interacts with", "SUID" : 70758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70754", "source" : "973", "target" : "6157", "shared_name" : "5595 (interacts with) 3735", "name" : "5595 (interacts with) 3735", "interaction" : "interacts with", "SUID" : 70754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70750", "source" : "973", "target" : "5773", "shared_name" : "5595 (interacts with) 9181", "name" : "5595 (interacts with) 9181", "interaction" : "interacts with", "SUID" : 70750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70746", "source" : "973", "target" : "4537", "shared_name" : "5595 (interacts with) 2697", "name" : "5595 (interacts with) 2697", "interaction" : "interacts with", "SUID" : 70746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70742", "source" : "973", "target" : "3177", "shared_name" : "5595 (interacts with) 5321", "name" : "5595 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 70742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70738", "source" : "973", "target" : "3689", "shared_name" : "5595 (interacts with) 7054", "name" : "5595 (interacts with) 7054", "interaction" : "interacts with", "SUID" : 70738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70734", "source" : "973", "target" : "3061", "shared_name" : "5595 (interacts with) 4155", "name" : "5595 (interacts with) 4155", "interaction" : "interacts with", "SUID" : 70734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70730", "source" : "973", "target" : "2649", "shared_name" : "5595 (interacts with) 5430", "name" : "5595 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 70730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70726", "source" : "973", "target" : "417", "shared_name" : "5595 (interacts with) 6689", "name" : "5595 (interacts with) 6689", "interaction" : "interacts with", "SUID" : 70726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70722", "source" : "973", "target" : "1505", "shared_name" : "5595 (interacts with) 26353", "name" : "5595 (interacts with) 26353", "interaction" : "interacts with", "SUID" : 70722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70718", "source" : "973", "target" : "637", "shared_name" : "5595 (interacts with) 6654", "name" : "5595 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 70718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70714", "source" : "973", "target" : "2957", "shared_name" : "5595 (interacts with) 5465", "name" : "5595 (interacts with) 5465", "interaction" : "interacts with", "SUID" : 70714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70710", "source" : "973", "target" : "5109", "shared_name" : "5595 (interacts with) 790", "name" : "5595 (interacts with) 790", "interaction" : "interacts with", "SUID" : 70710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70706", "source" : "973", "target" : "2081", "shared_name" : "5595 (interacts with) 5468", "name" : "5595 (interacts with) 5468", "interaction" : "interacts with", "SUID" : 70706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70702", "source" : "973", "target" : "1285", "shared_name" : "5595 (interacts with) 7249", "name" : "5595 (interacts with) 7249", "interaction" : "interacts with", "SUID" : 70702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70698", "source" : "973", "target" : "5125", "shared_name" : "5595 (interacts with) 5979", "name" : "5595 (interacts with) 5979", "interaction" : "interacts with", "SUID" : 70698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70694", "source" : "973", "target" : "4521", "shared_name" : "5595 (interacts with) 5894", "name" : "5595 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 70694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70690", "source" : "973", "target" : "981", "shared_name" : "5595 (interacts with) 7157", "name" : "5595 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 70690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70686", "source" : "973", "target" : "3417", "shared_name" : "5595 (interacts with) 5371", "name" : "5595 (interacts with) 5371", "interaction" : "interacts with", "SUID" : 70686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70682", "source" : "973", "target" : "5037", "shared_name" : "5595 (interacts with) 5515", "name" : "5595 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 70682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70678", "source" : "973", "target" : "6121", "shared_name" : "5595 (interacts with) 2260", "name" : "5595 (interacts with) 2260", "interaction" : "interacts with", "SUID" : 70678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70674", "source" : "973", "target" : "1293", "shared_name" : "5595 (interacts with) 2908", "name" : "5595 (interacts with) 2908", "interaction" : "interacts with", "SUID" : 70674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70670", "source" : "973", "target" : "2085", "shared_name" : "5595 (interacts with) 2932", "name" : "5595 (interacts with) 2932", "interaction" : "interacts with", "SUID" : 70670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70666", "source" : "973", "target" : "4361", "shared_name" : "5595 (interacts with) 22906", "name" : "5595 (interacts with) 22906", "interaction" : "interacts with", "SUID" : 70666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70662", "source" : "973", "target" : "857", "shared_name" : "5595 (interacts with) 11274", "name" : "5595 (interacts with) 11274", "interaction" : "interacts with", "SUID" : 70662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70658", "source" : "973", "target" : "3841", "shared_name" : "5595 (interacts with) 9444", "name" : "5595 (interacts with) 9444", "interaction" : "interacts with", "SUID" : 70658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70654", "source" : "973", "target" : "1069", "shared_name" : "5595 (interacts with) 5879", "name" : "5595 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 70654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70650", "source" : "973", "target" : "5061", "shared_name" : "5595 (interacts with) 6285", "name" : "5595 (interacts with) 6285", "interaction" : "interacts with", "SUID" : 70650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70646", "source" : "973", "target" : "5641", "shared_name" : "5595 (interacts with) 5518", "name" : "5595 (interacts with) 5518", "interaction" : "interacts with", "SUID" : 70646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70642", "source" : "973", "target" : "3569", "shared_name" : "5595 (interacts with) 4893", "name" : "5595 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 70642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70934", "source" : "969", "target" : "753", "shared_name" : "2670 (interacts with) 4099", "name" : "2670 (interacts with) 4099", "interaction" : "interacts with", "SUID" : 70934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70930", "source" : "969", "target" : "3061", "shared_name" : "2670 (interacts with) 4155", "name" : "2670 (interacts with) 4155", "interaction" : "interacts with", "SUID" : 70930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70926", "source" : "969", "target" : "5965", "shared_name" : "2670 (interacts with) 596", "name" : "2670 (interacts with) 596", "interaction" : "interacts with", "SUID" : 70926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70922", "source" : "969", "target" : "765", "shared_name" : "2670 (interacts with) 4340", "name" : "2670 (interacts with) 4340", "interaction" : "interacts with", "SUID" : 70922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70918", "source" : "969", "target" : "4097", "shared_name" : "2670 (interacts with) 9611", "name" : "2670 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 70918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70914", "source" : "969", "target" : "2093", "shared_name" : "2670 (interacts with) 4780", "name" : "2670 (interacts with) 4780", "interaction" : "interacts with", "SUID" : 70914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70910", "source" : "969", "target" : "665", "shared_name" : "2670 (interacts with) 3309", "name" : "2670 (interacts with) 3309", "interaction" : "interacts with", "SUID" : 70910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70906", "source" : "969", "target" : "2905", "shared_name" : "2670 (interacts with) 5664", "name" : "2670 (interacts with) 5664", "interaction" : "interacts with", "SUID" : 70906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70902", "source" : "969", "target" : "2861", "shared_name" : "2670 (interacts with) 284217", "name" : "2670 (interacts with) 284217", "interaction" : "interacts with", "SUID" : 70902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70898", "source" : "969", "target" : "1497", "shared_name" : "2670 (interacts with) 3912", "name" : "2670 (interacts with) 3912", "interaction" : "interacts with", "SUID" : 70898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70894", "source" : "969", "target" : "5009", "shared_name" : "2670 (interacts with) 5241", "name" : "2670 (interacts with) 5241", "interaction" : "interacts with", "SUID" : 70894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70890", "source" : "969", "target" : "3805", "shared_name" : "2670 (interacts with) 5621", "name" : "2670 (interacts with) 5621", "interaction" : "interacts with", "SUID" : 70890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70886", "source" : "969", "target" : "2369", "shared_name" : "2670 (interacts with) 51741", "name" : "2670 (interacts with) 51741", "interaction" : "interacts with", "SUID" : 70886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70882", "source" : "969", "target" : "5061", "shared_name" : "2670 (interacts with) 6285", "name" : "2670 (interacts with) 6285", "interaction" : "interacts with", "SUID" : 70882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70878", "source" : "969", "target" : "921", "shared_name" : "2670 (interacts with) 3880", "name" : "2670 (interacts with) 3880", "interaction" : "interacts with", "SUID" : 70878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70874", "source" : "969", "target" : "1105", "shared_name" : "2670 (interacts with) 493753", "name" : "2670 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 70874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70870", "source" : "969", "target" : "1001", "shared_name" : "2670 (interacts with) 56891", "name" : "2670 (interacts with) 56891", "interaction" : "interacts with", "SUID" : 70870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70866", "source" : "969", "target" : "2665", "shared_name" : "2670 (interacts with) 27229", "name" : "2670 (interacts with) 27229", "interaction" : "interacts with", "SUID" : 70866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70958", "source" : "965", "target" : "1949", "shared_name" : "79991 (interacts with) 23137", "name" : "79991 (interacts with) 23137", "interaction" : "interacts with", "SUID" : 70958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70954", "source" : "965", "target" : "1081", "shared_name" : "79991 (interacts with) 80169", "name" : "79991 (interacts with) 80169", "interaction" : "interacts with", "SUID" : 70954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70950", "source" : "965", "target" : "1049", "shared_name" : "79991 (interacts with) 5422", "name" : "79991 (interacts with) 5422", "interaction" : "interacts with", "SUID" : 70950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70946", "source" : "965", "target" : "5449", "shared_name" : "79991 (interacts with) 923", "name" : "79991 (interacts with) 923", "interaction" : "interacts with", "SUID" : 70946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70942", "source" : "965", "target" : "2665", "shared_name" : "79991 (interacts with) 27229", "name" : "79991 (interacts with) 27229", "interaction" : "interacts with", "SUID" : 70942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70938", "source" : "965", "target" : "5525", "shared_name" : "79991 (interacts with) 84260", "name" : "79991 (interacts with) 84260", "interaction" : "interacts with", "SUID" : 70938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70966", "source" : "961", "target" : "1493", "shared_name" : "7318 (interacts with) 7428", "name" : "7318 (interacts with) 7428", "interaction" : "interacts with", "SUID" : 70966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70962", "source" : "961", "target" : "1413", "shared_name" : "7318 (interacts with) 7337", "name" : "7318 (interacts with) 7337", "interaction" : "interacts with", "SUID" : 70962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70990", "source" : "957", "target" : "5805", "shared_name" : "5230 (interacts with) 6575", "name" : "5230 (interacts with) 6575", "interaction" : "interacts with", "SUID" : 70990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70986", "source" : "957", "target" : "1885", "shared_name" : "5230 (interacts with) 8604", "name" : "5230 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 70986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70982", "source" : "957", "target" : "361", "shared_name" : "5230 (interacts with) 6576", "name" : "5230 (interacts with) 6576", "interaction" : "interacts with", "SUID" : 70982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70978", "source" : "957", "target" : "3461", "shared_name" : "5230 (interacts with) 5538", "name" : "5230 (interacts with) 5538", "interaction" : "interacts with", "SUID" : 70978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70974", "source" : "957", "target" : "4577", "shared_name" : "5230 (interacts with) 7167", "name" : "5230 (interacts with) 7167", "interaction" : "interacts with", "SUID" : 70974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70970", "source" : "957", "target" : "4617", "shared_name" : "5230 (interacts with) 26227", "name" : "5230 (interacts with) 26227", "interaction" : "interacts with", "SUID" : 70970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71022", "source" : "949", "target" : "4949", "shared_name" : "177 (interacts with) 5970", "name" : "177 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 71022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71018", "source" : "949", "target" : "3017", "shared_name" : "177 (interacts with) 4790", "name" : "177 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 71018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71014", "source" : "949", "target" : "2841", "shared_name" : "177 (interacts with) 7098", "name" : "177 (interacts with) 7098", "interaction" : "interacts with", "SUID" : 71014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71010", "source" : "949", "target" : "973", "shared_name" : "177 (interacts with) 5595", "name" : "177 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 71010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71006", "source" : "949", "target" : "5081", "shared_name" : "177 (interacts with) 5594", "name" : "177 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 71006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71002", "source" : "949", "target" : "3273", "shared_name" : "177 (interacts with) 351", "name" : "177 (interacts with) 351", "interaction" : "interacts with", "SUID" : 71002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70998", "source" : "949", "target" : "5061", "shared_name" : "177 (interacts with) 6285", "name" : "177 (interacts with) 6285", "interaction" : "interacts with", "SUID" : 70998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "70994", "source" : "949", "target" : "4605", "shared_name" : "177 (interacts with) 7276", "name" : "177 (interacts with) 7276", "interaction" : "interacts with", "SUID" : 70994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71074", "source" : "945", "target" : "3305", "shared_name" : "2316 (interacts with) 7040", "name" : "2316 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 71074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71070", "source" : "945", "target" : "2653", "shared_name" : "2316 (interacts with) 302", "name" : "2316 (interacts with) 302", "interaction" : "interacts with", "SUID" : 71070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71066", "source" : "945", "target" : "1701", "shared_name" : "2316 (interacts with) 5777", "name" : "2316 (interacts with) 5777", "interaction" : "interacts with", "SUID" : 71066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71062", "source" : "945", "target" : "4861", "shared_name" : "2316 (interacts with) 4771", "name" : "2316 (interacts with) 4771", "interaction" : "interacts with", "SUID" : 71062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71058", "source" : "945", "target" : "3945", "shared_name" : "2316 (interacts with) 846", "name" : "2316 (interacts with) 846", "interaction" : "interacts with", "SUID" : 71058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71054", "source" : "945", "target" : "3041", "shared_name" : "2316 (interacts with) 5663", "name" : "2316 (interacts with) 5663", "interaction" : "interacts with", "SUID" : 71054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71050", "source" : "945", "target" : "2417", "shared_name" : "2316 (interacts with) 675", "name" : "2316 (interacts with) 675", "interaction" : "interacts with", "SUID" : 71050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71046", "source" : "945", "target" : "2509", "shared_name" : "2316 (interacts with) 7204", "name" : "2316 (interacts with) 7204", "interaction" : "interacts with", "SUID" : 71046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71042", "source" : "945", "target" : "1001", "shared_name" : "2316 (interacts with) 56891", "name" : "2316 (interacts with) 56891", "interaction" : "interacts with", "SUID" : 71042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71038", "source" : "945", "target" : "2905", "shared_name" : "2316 (interacts with) 5664", "name" : "2316 (interacts with) 5664", "interaction" : "interacts with", "SUID" : 71038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71034", "source" : "945", "target" : "6005", "shared_name" : "2316 (interacts with) 4988", "name" : "2316 (interacts with) 4988", "interaction" : "interacts with", "SUID" : 71034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71030", "source" : "945", "target" : "5789", "shared_name" : "2316 (interacts with) 3759", "name" : "2316 (interacts with) 3759", "interaction" : "interacts with", "SUID" : 71030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71026", "source" : "945", "target" : "3361", "shared_name" : "2316 (interacts with) 4000", "name" : "2316 (interacts with) 4000", "interaction" : "interacts with", "SUID" : 71026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71114", "source" : "941", "target" : "2077", "shared_name" : "648 (interacts with) 7528", "name" : "648 (interacts with) 7528", "interaction" : "interacts with", "SUID" : 71114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71110", "source" : "941", "target" : "2489", "shared_name" : "648 (interacts with) 4692", "name" : "648 (interacts with) 4692", "interaction" : "interacts with", "SUID" : 71110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71106", "source" : "941", "target" : "877", "shared_name" : "648 (interacts with) 7341", "name" : "648 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 71106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71102", "source" : "941", "target" : "5729", "shared_name" : "648 (interacts with) 861", "name" : "648 (interacts with) 861", "interaction" : "interacts with", "SUID" : 71102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71098", "source" : "941", "target" : "817", "shared_name" : "648 (interacts with) 5728", "name" : "648 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 71098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71094", "source" : "941", "target" : "1621", "shared_name" : "648 (interacts with) 1432", "name" : "648 (interacts with) 1432", "interaction" : "interacts with", "SUID" : 71094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71090", "source" : "941", "target" : "1813", "shared_name" : "648 (interacts with) 7703", "name" : "648 (interacts with) 7703", "interaction" : "interacts with", "SUID" : 71090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71086", "source" : "941", "target" : "5105", "shared_name" : "648 (interacts with) 1487", "name" : "648 (interacts with) 1487", "interaction" : "interacts with", "SUID" : 71086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71082", "source" : "941", "target" : "2065", "shared_name" : "648 (interacts with) 55823", "name" : "648 (interacts with) 55823", "interaction" : "interacts with", "SUID" : 71082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71078", "source" : "941", "target" : "1785", "shared_name" : "648 (interacts with) 667", "name" : "648 (interacts with) 667", "interaction" : "interacts with", "SUID" : 71078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71230", "source" : "937", "target" : "4749", "shared_name" : "2110 (interacts with) 3028", "name" : "2110 (interacts with) 3028", "interaction" : "interacts with", "SUID" : 71230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71226", "source" : "937", "target" : "461", "shared_name" : "2110 (interacts with) 5198", "name" : "2110 (interacts with) 5198", "interaction" : "interacts with", "SUID" : 71226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71222", "source" : "937", "target" : "3973", "shared_name" : "2110 (interacts with) 55572", "name" : "2110 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 71222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71218", "source" : "937", "target" : "3337", "shared_name" : "2110 (interacts with) 2639", "name" : "2110 (interacts with) 2639", "interaction" : "interacts with", "SUID" : 71218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71214", "source" : "937", "target" : "5201", "shared_name" : "2110 (interacts with) 353", "name" : "2110 (interacts with) 353", "interaction" : "interacts with", "SUID" : 71214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71210", "source" : "937", "target" : "5857", "shared_name" : "2110 (interacts with) 4694", "name" : "2110 (interacts with) 4694", "interaction" : "interacts with", "SUID" : 71210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71206", "source" : "937", "target" : "4069", "shared_name" : "2110 (interacts with) 374291", "name" : "2110 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 71206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71202", "source" : "937", "target" : "1849", "shared_name" : "2110 (interacts with) 26275", "name" : "2110 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 71202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71198", "source" : "937", "target" : "4061", "shared_name" : "2110 (interacts with) 4705", "name" : "2110 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 71198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71194", "source" : "937", "target" : "3617", "shared_name" : "2110 (interacts with) 4704", "name" : "2110 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 71194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71190", "source" : "937", "target" : "2801", "shared_name" : "2110 (interacts with) 4700", "name" : "2110 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 71190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71186", "source" : "937", "target" : "2741", "shared_name" : "2110 (interacts with) 4695", "name" : "2110 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 71186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71182", "source" : "937", "target" : "5845", "shared_name" : "2110 (interacts with) 4714", "name" : "2110 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 71182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71178", "source" : "937", "target" : "5853", "shared_name" : "2110 (interacts with) 4709", "name" : "2110 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 71178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71174", "source" : "937", "target" : "5821", "shared_name" : "2110 (interacts with) 4724", "name" : "2110 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 71174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71170", "source" : "937", "target" : "1573", "shared_name" : "2110 (interacts with) 4723", "name" : "2110 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 71170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71166", "source" : "937", "target" : "4945", "shared_name" : "2110 (interacts with) 4722", "name" : "2110 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 71166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71162", "source" : "937", "target" : "2753", "shared_name" : "2110 (interacts with) 4720", "name" : "2110 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 71162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71158", "source" : "937", "target" : "4017", "shared_name" : "2110 (interacts with) 4719", "name" : "2110 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 71158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71154", "source" : "937", "target" : "2689", "shared_name" : "2110 (interacts with) 4715", "name" : "2110 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 71154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71150", "source" : "937", "target" : "5553", "shared_name" : "2110 (interacts with) 55967", "name" : "2110 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 71150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71146", "source" : "937", "target" : "2757", "shared_name" : "2110 (interacts with) 51079", "name" : "2110 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 71146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71142", "source" : "937", "target" : "1869", "shared_name" : "2110 (interacts with) 4729", "name" : "2110 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 71142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71138", "source" : "937", "target" : "2797", "shared_name" : "2110 (interacts with) 4728", "name" : "2110 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 71138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71134", "source" : "937", "target" : "5833", "shared_name" : "2110 (interacts with) 4726", "name" : "2110 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 71134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71130", "source" : "937", "target" : "5689", "shared_name" : "2110 (interacts with) 27089", "name" : "2110 (interacts with) 27089", "interaction" : "interacts with", "SUID" : 71130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71126", "source" : "937", "target" : "3501", "shared_name" : "2110 (interacts with) 5831", "name" : "2110 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 71126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71122", "source" : "937", "target" : "4045", "shared_name" : "2110 (interacts with) 29920", "name" : "2110 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 71122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71118", "source" : "937", "target" : "5809", "shared_name" : "2110 (interacts with) 140691", "name" : "2110 (interacts with) 140691", "interaction" : "interacts with", "SUID" : 71118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71282", "source" : "929", "target" : "5225", "shared_name" : "1967 (interacts with) 5290", "name" : "1967 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 71282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71278", "source" : "929", "target" : "3685", "shared_name" : "1967 (interacts with) 3265", "name" : "1967 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 71278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71274", "source" : "929", "target" : "4213", "shared_name" : "1967 (interacts with) 5295", "name" : "1967 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 71274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71270", "source" : "929", "target" : "2005", "shared_name" : "1967 (interacts with) 4846", "name" : "1967 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 71270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71266", "source" : "929", "target" : "5577", "shared_name" : "1967 (interacts with) 3091", "name" : "1967 (interacts with) 3091", "interaction" : "interacts with", "SUID" : 71266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71262", "source" : "929", "target" : "1493", "shared_name" : "1967 (interacts with) 7428", "name" : "1967 (interacts with) 7428", "interaction" : "interacts with", "SUID" : 71262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71258", "source" : "929", "target" : "2793", "shared_name" : "1967 (interacts with) 8894", "name" : "1967 (interacts with) 8894", "interaction" : "interacts with", "SUID" : 71258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71254", "source" : "929", "target" : "2781", "shared_name" : "1967 (interacts with) 1968", "name" : "1967 (interacts with) 1968", "interaction" : "interacts with", "SUID" : 71254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71250", "source" : "929", "target" : "837", "shared_name" : "1967 (interacts with) 8892", "name" : "1967 (interacts with) 8892", "interaction" : "interacts with", "SUID" : 71250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71246", "source" : "929", "target" : "4877", "shared_name" : "1967 (interacts with) 1965", "name" : "1967 (interacts with) 1965", "interaction" : "interacts with", "SUID" : 71246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71242", "source" : "929", "target" : "841", "shared_name" : "1967 (interacts with) 8890", "name" : "1967 (interacts with) 8890", "interaction" : "interacts with", "SUID" : 71242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71238", "source" : "929", "target" : "4837", "shared_name" : "1967 (interacts with) 8891", "name" : "1967 (interacts with) 8891", "interaction" : "interacts with", "SUID" : 71238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71234", "source" : "929", "target" : "4149", "shared_name" : "1967 (interacts with) 8893", "name" : "1967 (interacts with) 8893", "interaction" : "interacts with", "SUID" : 71234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71366", "source" : "925", "target" : "1445", "shared_name" : "372 (interacts with) 9179", "name" : "372 (interacts with) 9179", "interaction" : "interacts with", "SUID" : 71366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71362", "source" : "925", "target" : "5749", "shared_name" : "372 (interacts with) 10959", "name" : "372 (interacts with) 10959", "interaction" : "interacts with", "SUID" : 71362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71358", "source" : "925", "target" : "545", "shared_name" : "372 (interacts with) 51014", "name" : "372 (interacts with) 51014", "interaction" : "interacts with", "SUID" : 71358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71354", "source" : "925", "target" : "1973", "shared_name" : "372 (interacts with) 6709", "name" : "372 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 71354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71350", "source" : "925", "target" : "3637", "shared_name" : "372 (interacts with) 6712", "name" : "372 (interacts with) 6712", "interaction" : "interacts with", "SUID" : 71350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71346", "source" : "925", "target" : "1633", "shared_name" : "372 (interacts with) 57731", "name" : "372 (interacts with) 57731", "interaction" : "interacts with", "SUID" : 71346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71342", "source" : "925", "target" : "4657", "shared_name" : "372 (interacts with) 64837", "name" : "372 (interacts with) 64837", "interaction" : "interacts with", "SUID" : 71342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71338", "source" : "925", "target" : "4985", "shared_name" : "372 (interacts with) 3798", "name" : "372 (interacts with) 3798", "interaction" : "interacts with", "SUID" : 71338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71334", "source" : "925", "target" : "1961", "shared_name" : "372 (interacts with) 23095", "name" : "372 (interacts with) 23095", "interaction" : "interacts with", "SUID" : 71334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71330", "source" : "925", "target" : "3597", "shared_name" : "372 (interacts with) 10749", "name" : "372 (interacts with) 10749", "interaction" : "interacts with", "SUID" : 71330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71326", "source" : "925", "target" : "657", "shared_name" : "372 (interacts with) 547", "name" : "372 (interacts with) 547", "interaction" : "interacts with", "SUID" : 71326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71322", "source" : "925", "target" : "4269", "shared_name" : "372 (interacts with) 3832", "name" : "372 (interacts with) 3832", "interaction" : "interacts with", "SUID" : 71322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71318", "source" : "925", "target" : "3149", "shared_name" : "372 (interacts with) 3630", "name" : "372 (interacts with) 3630", "interaction" : "interacts with", "SUID" : 71318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71314", "source" : "925", "target" : "3785", "shared_name" : "372 (interacts with) 1781", "name" : "372 (interacts with) 1781", "interaction" : "interacts with", "SUID" : 71314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71310", "source" : "925", "target" : "1997", "shared_name" : "372 (interacts with) 2348", "name" : "372 (interacts with) 2348", "interaction" : "interacts with", "SUID" : 71310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71306", "source" : "925", "target" : "1321", "shared_name" : "372 (interacts with) 1778", "name" : "372 (interacts with) 1778", "interaction" : "interacts with", "SUID" : 71306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71302", "source" : "925", "target" : "3301", "shared_name" : "372 (interacts with) 91949", "name" : "372 (interacts with) 91949", "interaction" : "interacts with", "SUID" : 71302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71298", "source" : "925", "target" : "1269", "shared_name" : "372 (interacts with) 9276", "name" : "372 (interacts with) 9276", "interaction" : "interacts with", "SUID" : 71298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71294", "source" : "925", "target" : "2737", "shared_name" : "372 (interacts with) 966", "name" : "372 (interacts with) 966", "interaction" : "interacts with", "SUID" : 71294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71290", "source" : "925", "target" : "4637", "shared_name" : "372 (interacts with) 25839", "name" : "372 (interacts with) 25839", "interaction" : "interacts with", "SUID" : 71290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71286", "source" : "925", "target" : "1225", "shared_name" : "372 (interacts with) 375", "name" : "372 (interacts with) 375", "interaction" : "interacts with", "SUID" : 71286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71370", "source" : "921", "target" : "1857", "shared_name" : "3880 (interacts with) 9533", "name" : "3880 (interacts with) 9533", "interaction" : "interacts with", "SUID" : 71370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71418", "source" : "917", "target" : "1829", "shared_name" : "1181 (interacts with) 7421", "name" : "1181 (interacts with) 7421", "interaction" : "interacts with", "SUID" : 71418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71414", "source" : "917", "target" : "2877", "shared_name" : "1181 (interacts with) 340024", "name" : "1181 (interacts with) 340024", "interaction" : "interacts with", "SUID" : 71414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71410", "source" : "917", "target" : "4665", "shared_name" : "1181 (interacts with) 538", "name" : "1181 (interacts with) 538", "interaction" : "interacts with", "SUID" : 71410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71406", "source" : "917", "target" : "4673", "shared_name" : "1181 (interacts with) 1186", "name" : "1181 (interacts with) 1186", "interaction" : "interacts with", "SUID" : 71406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71402", "source" : "917", "target" : "5373", "shared_name" : "1181 (interacts with) 28962", "name" : "1181 (interacts with) 28962", "interaction" : "interacts with", "SUID" : 71402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71398", "source" : "917", "target" : "4845", "shared_name" : "1181 (interacts with) 259232", "name" : "1181 (interacts with) 259232", "interaction" : "interacts with", "SUID" : 71398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71394", "source" : "917", "target" : "277", "shared_name" : "1181 (interacts with) 285175", "name" : "1181 (interacts with) 285175", "interaction" : "interacts with", "SUID" : 71394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71390", "source" : "917", "target" : "1429", "shared_name" : "1181 (interacts with) 65125", "name" : "1181 (interacts with) 65125", "interaction" : "interacts with", "SUID" : 71390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71386", "source" : "917", "target" : "2125", "shared_name" : "1181 (interacts with) 2512", "name" : "1181 (interacts with) 2512", "interaction" : "interacts with", "SUID" : 71386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71382", "source" : "917", "target" : "309", "shared_name" : "1181 (interacts with) 6536", "name" : "1181 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 71382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71378", "source" : "917", "target" : "3781", "shared_name" : "1181 (interacts with) 9152", "name" : "1181 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 71378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71374", "source" : "917", "target" : "401", "shared_name" : "1181 (interacts with) 6532", "name" : "1181 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 71374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71510", "source" : "913", "target" : "4285", "shared_name" : "404672 (interacts with) 8450", "name" : "404672 (interacts with) 8450", "interaction" : "interacts with", "SUID" : 71510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71506", "source" : "913", "target" : "2921", "shared_name" : "404672 (interacts with) 5981", "name" : "404672 (interacts with) 5981", "interaction" : "interacts with", "SUID" : 71506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71502", "source" : "913", "target" : "481", "shared_name" : "404672 (interacts with) 7507", "name" : "404672 (interacts with) 7507", "interaction" : "interacts with", "SUID" : 71502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71498", "source" : "913", "target" : "4249", "shared_name" : "404672 (interacts with) 4331", "name" : "404672 (interacts with) 4331", "interaction" : "interacts with", "SUID" : 71498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71494", "source" : "913", "target" : "3953", "shared_name" : "404672 (interacts with) 8731", "name" : "404672 (interacts with) 8731", "interaction" : "interacts with", "SUID" : 71494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71490", "source" : "913", "target" : "749", "shared_name" : "404672 (interacts with) 6873", "name" : "404672 (interacts with) 6873", "interaction" : "interacts with", "SUID" : 71490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71486", "source" : "913", "target" : "1793", "shared_name" : "404672 (interacts with) 7515", "name" : "404672 (interacts with) 7515", "interaction" : "interacts with", "SUID" : 71486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71482", "source" : "913", "target" : "5197", "shared_name" : "404672 (interacts with) 7156", "name" : "404672 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 71482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71478", "source" : "913", "target" : "1817", "shared_name" : "404672 (interacts with) 7343", "name" : "404672 (interacts with) 7343", "interaction" : "interacts with", "SUID" : 71478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71474", "source" : "913", "target" : "2305", "shared_name" : "404672 (interacts with) 6908", "name" : "404672 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 71474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71470", "source" : "913", "target" : "4425", "shared_name" : "404672 (interacts with) 6884", "name" : "404672 (interacts with) 6884", "interaction" : "interacts with", "SUID" : 71470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71466", "source" : "913", "target" : "5849", "shared_name" : "404672 (interacts with) 6613", "name" : "404672 (interacts with) 6613", "interaction" : "interacts with", "SUID" : 71466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71462", "source" : "913", "target" : "877", "shared_name" : "404672 (interacts with) 7341", "name" : "404672 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 71462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71458", "source" : "913", "target" : "4413", "shared_name" : "404672 (interacts with) 6612", "name" : "404672 (interacts with) 6612", "interaction" : "interacts with", "SUID" : 71458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71454", "source" : "913", "target" : "5861", "shared_name" : "404672 (interacts with) 5435", "name" : "404672 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 71454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71450", "source" : "913", "target" : "5621", "shared_name" : "404672 (interacts with) 25885", "name" : "404672 (interacts with) 25885", "interaction" : "interacts with", "SUID" : 71450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71446", "source" : "913", "target" : "2649", "shared_name" : "404672 (interacts with) 5430", "name" : "404672 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 71446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71442", "source" : "913", "target" : "1857", "shared_name" : "404672 (interacts with) 9533", "name" : "404672 (interacts with) 9533", "interaction" : "interacts with", "SUID" : 71442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71438", "source" : "913", "target" : "2529", "shared_name" : "404672 (interacts with) 5424", "name" : "404672 (interacts with) 5424", "interaction" : "interacts with", "SUID" : 71438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71434", "source" : "913", "target" : "1729", "shared_name" : "404672 (interacts with) 5111", "name" : "404672 (interacts with) 5111", "interaction" : "interacts with", "SUID" : 71434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71430", "source" : "913", "target" : "3049", "shared_name" : "404672 (interacts with) 142", "name" : "404672 (interacts with) 142", "interaction" : "interacts with", "SUID" : 71430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71426", "source" : "913", "target" : "3933", "shared_name" : "404672 (interacts with) 10524", "name" : "404672 (interacts with) 10524", "interaction" : "interacts with", "SUID" : 71426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71422", "source" : "913", "target" : "1937", "shared_name" : "404672 (interacts with) 2965", "name" : "404672 (interacts with) 2965", "interaction" : "interacts with", "SUID" : 71422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71594", "source" : "909", "target" : "781", "shared_name" : "1716 (interacts with) 4860", "name" : "1716 (interacts with) 4860", "interaction" : "interacts with", "SUID" : 71594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71590", "source" : "909", "target" : "5201", "shared_name" : "1716 (interacts with) 353", "name" : "1716 (interacts with) 353", "interaction" : "interacts with", "SUID" : 71590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71586", "source" : "909", "target" : "1657", "shared_name" : "1716 (interacts with) 3251", "name" : "1716 (interacts with) 3251", "interaction" : "interacts with", "SUID" : 71586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71582", "source" : "909", "target" : "4061", "shared_name" : "1716 (interacts with) 4705", "name" : "1716 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 71582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71578", "source" : "909", "target" : "597", "shared_name" : "1716 (interacts with) 271", "name" : "1716 (interacts with) 271", "interaction" : "interacts with", "SUID" : 71578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71574", "source" : "909", "target" : "589", "shared_name" : "1716 (interacts with) 270", "name" : "1716 (interacts with) 270", "interaction" : "interacts with", "SUID" : 71574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71570", "source" : "909", "target" : "3997", "shared_name" : "1716 (interacts with) 1890", "name" : "1716 (interacts with) 1890", "interaction" : "interacts with", "SUID" : 71570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71566", "source" : "909", "target" : "5329", "shared_name" : "1716 (interacts with) 4907", "name" : "1716 (interacts with) 4907", "interaction" : "interacts with", "SUID" : 71566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71562", "source" : "909", "target" : "3917", "shared_name" : "1716 (interacts with) 22978", "name" : "1716 (interacts with) 22978", "interaction" : "interacts with", "SUID" : 71562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71558", "source" : "909", "target" : "5793", "shared_name" : "1716 (interacts with) 51251", "name" : "1716 (interacts with) 51251", "interaction" : "interacts with", "SUID" : 71558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71554", "source" : "909", "target" : "5165", "shared_name" : "1716 (interacts with) 3704", "name" : "1716 (interacts with) 3704", "interaction" : "interacts with", "SUID" : 71554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71550", "source" : "909", "target" : "3969", "shared_name" : "1716 (interacts with) 57468", "name" : "1716 (interacts with) 57468", "interaction" : "interacts with", "SUID" : 71550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71546", "source" : "909", "target" : "3961", "shared_name" : "1716 (interacts with) 3897", "name" : "1716 (interacts with) 3897", "interaction" : "interacts with", "SUID" : 71546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71542", "source" : "909", "target" : "3985", "shared_name" : "1716 (interacts with) 274", "name" : "1716 (interacts with) 274", "interaction" : "interacts with", "SUID" : 71542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71538", "source" : "909", "target" : "5929", "shared_name" : "1716 (interacts with) 6616", "name" : "1716 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 71538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71534", "source" : "909", "target" : "5361", "shared_name" : "1716 (interacts with) 5604", "name" : "1716 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 71534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71530", "source" : "909", "target" : "609", "shared_name" : "1716 (interacts with) 6812", "name" : "1716 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 71530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71526", "source" : "909", "target" : "1801", "shared_name" : "1716 (interacts with) 1641", "name" : "1716 (interacts with) 1641", "interaction" : "interacts with", "SUID" : 71526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71522", "source" : "909", "target" : "4013", "shared_name" : "1716 (interacts with) 6622", "name" : "1716 (interacts with) 6622", "interaction" : "interacts with", "SUID" : 71522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71518", "source" : "909", "target" : "1245", "shared_name" : "1716 (interacts with) 4137", "name" : "1716 (interacts with) 4137", "interaction" : "interacts with", "SUID" : 71518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71514", "source" : "909", "target" : "5785", "shared_name" : "1716 (interacts with) 6857", "name" : "1716 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 71514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71754", "source" : "905", "target" : "737", "shared_name" : "10157 (interacts with) 2643", "name" : "10157 (interacts with) 2643", "interaction" : "interacts with", "SUID" : 71754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71750", "source" : "905", "target" : "3445", "shared_name" : "10157 (interacts with) 5091", "name" : "10157 (interacts with) 5091", "interaction" : "interacts with", "SUID" : 71750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71746", "source" : "905", "target" : "1301", "shared_name" : "10157 (interacts with) 5095", "name" : "10157 (interacts with) 5095", "interaction" : "interacts with", "SUID" : 71746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71742", "source" : "905", "target" : "5797", "shared_name" : "10157 (interacts with) 3030", "name" : "10157 (interacts with) 3030", "interaction" : "interacts with", "SUID" : 71742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71738", "source" : "905", "target" : "2053", "shared_name" : "10157 (interacts with) 7468", "name" : "10157 (interacts with) 7468", "interaction" : "interacts with", "SUID" : 71738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71734", "source" : "905", "target" : "3253", "shared_name" : "10157 (interacts with) 4297", "name" : "10157 (interacts with) 4297", "interaction" : "interacts with", "SUID" : 71734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71730", "source" : "905", "target" : "3037", "shared_name" : "10157 (interacts with) 8813", "name" : "10157 (interacts with) 8813", "interaction" : "interacts with", "SUID" : 71730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71726", "source" : "905", "target" : "1501", "shared_name" : "10157 (interacts with) 55870", "name" : "10157 (interacts with) 55870", "interaction" : "interacts with", "SUID" : 71726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71722", "source" : "905", "target" : "3681", "shared_name" : "10157 (interacts with) 1892", "name" : "10157 (interacts with) 1892", "interaction" : "interacts with", "SUID" : 71722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71718", "source" : "905", "target" : "773", "shared_name" : "10157 (interacts with) 29072", "name" : "10157 (interacts with) 29072", "interaction" : "interacts with", "SUID" : 71718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71714", "source" : "905", "target" : "4001", "shared_name" : "10157 (interacts with) 79709", "name" : "10157 (interacts with) 79709", "interaction" : "interacts with", "SUID" : 71714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71710", "source" : "905", "target" : "1393", "shared_name" : "10157 (interacts with) 55904", "name" : "10157 (interacts with) 55904", "interaction" : "interacts with", "SUID" : 71710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71706", "source" : "905", "target" : "3769", "shared_name" : "10157 (interacts with) 8085", "name" : "10157 (interacts with) 8085", "interaction" : "interacts with", "SUID" : 71706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71702", "source" : "905", "target" : "2281", "shared_name" : "10157 (interacts with) 79823", "name" : "10157 (interacts with) 79823", "interaction" : "interacts with", "SUID" : 71702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71698", "source" : "905", "target" : "2593", "shared_name" : "10157 (interacts with) 64324", "name" : "10157 (interacts with) 64324", "interaction" : "interacts with", "SUID" : 71698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71694", "source" : "905", "target" : "1489", "shared_name" : "10157 (interacts with) 1738", "name" : "10157 (interacts with) 1738", "interaction" : "interacts with", "SUID" : 71694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71690", "source" : "905", "target" : "3709", "shared_name" : "10157 (interacts with) 9757", "name" : "10157 (interacts with) 9757", "interaction" : "interacts with", "SUID" : 71690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71686", "source" : "905", "target" : "3537", "shared_name" : "10157 (interacts with) 501", "name" : "10157 (interacts with) 501", "interaction" : "interacts with", "SUID" : 71686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71682", "source" : "905", "target" : "3421", "shared_name" : "10157 (interacts with) 4967", "name" : "10157 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 71682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71678", "source" : "905", "target" : "461", "shared_name" : "10157 (interacts with) 5198", "name" : "10157 (interacts with) 5198", "interaction" : "interacts with", "SUID" : 71678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71674", "source" : "905", "target" : "4185", "shared_name" : "10157 (interacts with) 29968", "name" : "10157 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 71674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71670", "source" : "905", "target" : "1013", "shared_name" : "10157 (interacts with) 6898", "name" : "10157 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 71670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71666", "source" : "905", "target" : "3337", "shared_name" : "10157 (interacts with) 2639", "name" : "10157 (interacts with) 2639", "interaction" : "interacts with", "SUID" : 71666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71662", "source" : "905", "target" : "6157", "shared_name" : "10157 (interacts with) 3735", "name" : "10157 (interacts with) 3735", "interaction" : "interacts with", "SUID" : 71662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71658", "source" : "905", "target" : "977", "shared_name" : "10157 (interacts with) 79944", "name" : "10157 (interacts with) 79944", "interaction" : "interacts with", "SUID" : 71658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71654", "source" : "905", "target" : "5017", "shared_name" : "10157 (interacts with) 3417", "name" : "10157 (interacts with) 3417", "interaction" : "interacts with", "SUID" : 71654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71650", "source" : "905", "target" : "1133", "shared_name" : "10157 (interacts with) 3418", "name" : "10157 (interacts with) 3418", "interaction" : "interacts with", "SUID" : 71650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71646", "source" : "905", "target" : "2421", "shared_name" : "10157 (interacts with) 2673", "name" : "10157 (interacts with) 2673", "interaction" : "interacts with", "SUID" : 71646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71642", "source" : "905", "target" : "4189", "shared_name" : "10157 (interacts with) 2744", "name" : "10157 (interacts with) 2744", "interaction" : "interacts with", "SUID" : 71642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71638", "source" : "905", "target" : "4093", "shared_name" : "10157 (interacts with) 2752", "name" : "10157 (interacts with) 2752", "interaction" : "interacts with", "SUID" : 71638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71634", "source" : "905", "target" : "4261", "shared_name" : "10157 (interacts with) 124454", "name" : "10157 (interacts with) 124454", "interaction" : "interacts with", "SUID" : 71634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71630", "source" : "905", "target" : "2205", "shared_name" : "10157 (interacts with) 2571", "name" : "10157 (interacts with) 2571", "interaction" : "interacts with", "SUID" : 71630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71626", "source" : "905", "target" : "1461", "shared_name" : "10157 (interacts with) 5832", "name" : "10157 (interacts with) 5832", "interaction" : "interacts with", "SUID" : 71626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71622", "source" : "905", "target" : "2989", "shared_name" : "10157 (interacts with) 224", "name" : "10157 (interacts with) 224", "interaction" : "interacts with", "SUID" : 71622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71618", "source" : "905", "target" : "5349", "shared_name" : "10157 (interacts with) 440", "name" : "10157 (interacts with) 440", "interaction" : "interacts with", "SUID" : 71618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71614", "source" : "905", "target" : "2277", "shared_name" : "10157 (interacts with) 686", "name" : "10157 (interacts with) 686", "interaction" : "interacts with", "SUID" : 71614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71610", "source" : "905", "target" : "5109", "shared_name" : "10157 (interacts with) 790", "name" : "10157 (interacts with) 790", "interaction" : "interacts with", "SUID" : 71610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71606", "source" : "905", "target" : "1749", "shared_name" : "10157 (interacts with) 728294", "name" : "10157 (interacts with) 728294", "interaction" : "interacts with", "SUID" : 71606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71602", "source" : "905", "target" : "4805", "shared_name" : "10157 (interacts with) 18", "name" : "10157 (interacts with) 18", "interaction" : "interacts with", "SUID" : 71602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71598", "source" : "905", "target" : "3237", "shared_name" : "10157 (interacts with) 95", "name" : "10157 (interacts with) 95", "interaction" : "interacts with", "SUID" : 71598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71790", "source" : "901", "target" : "5637", "shared_name" : "8560 (interacts with) 6609", "name" : "8560 (interacts with) 6609", "interaction" : "interacts with", "SUID" : 71790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71786", "source" : "901", "target" : "305", "shared_name" : "8560 (interacts with) 79644", "name" : "8560 (interacts with) 79644", "interaction" : "interacts with", "SUID" : 71786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71782", "source" : "901", "target" : "6165", "shared_name" : "8560 (interacts with) 2629", "name" : "8560 (interacts with) 2629", "interaction" : "interacts with", "SUID" : 71782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71778", "source" : "901", "target" : "5025", "shared_name" : "8560 (interacts with) 6389", "name" : "8560 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 71778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71774", "source" : "901", "target" : "6041", "shared_name" : "8560 (interacts with) 9217", "name" : "8560 (interacts with) 9217", "interaction" : "interacts with", "SUID" : 71774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71770", "source" : "901", "target" : "2893", "shared_name" : "8560 (interacts with) 79152", "name" : "8560 (interacts with) 79152", "interaction" : "interacts with", "SUID" : 71770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71766", "source" : "901", "target" : "5753", "shared_name" : "8560 (interacts with) 2581", "name" : "8560 (interacts with) 2581", "interaction" : "interacts with", "SUID" : 71766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71762", "source" : "901", "target" : "3653", "shared_name" : "8560 (interacts with) 8898", "name" : "8560 (interacts with) 8898", "interaction" : "interacts with", "SUID" : 71762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71758", "source" : "901", "target" : "2221", "shared_name" : "8560 (interacts with) 26580", "name" : "8560 (interacts with) 26580", "interaction" : "interacts with", "SUID" : 71758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71846", "source" : "897", "target" : "5401", "shared_name" : "3073 (interacts with) 5373", "name" : "3073 (interacts with) 5373", "interaction" : "interacts with", "SUID" : 71846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71842", "source" : "897", "target" : "405", "shared_name" : "3073 (interacts with) 54187", "name" : "3073 (interacts with) 54187", "interaction" : "interacts with", "SUID" : 71842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71838", "source" : "897", "target" : "285", "shared_name" : "3073 (interacts with) 5238", "name" : "3073 (interacts with) 5238", "interaction" : "interacts with", "SUID" : 71838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71834", "source" : "897", "target" : "2681", "shared_name" : "3073 (interacts with) 4126", "name" : "3073 (interacts with) 4126", "interaction" : "interacts with", "SUID" : 71834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71830", "source" : "897", "target" : "3025", "shared_name" : "3073 (interacts with) 55627", "name" : "3073 (interacts with) 55627", "interaction" : "interacts with", "SUID" : 71830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71826", "source" : "897", "target" : "5637", "shared_name" : "3073 (interacts with) 6609", "name" : "3073 (interacts with) 6609", "interaction" : "interacts with", "SUID" : 71826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71822", "source" : "897", "target" : "1809", "shared_name" : "3073 (interacts with) 6548", "name" : "3073 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 71822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71818", "source" : "897", "target" : "2669", "shared_name" : "3073 (interacts with) 9197", "name" : "3073 (interacts with) 9197", "interaction" : "interacts with", "SUID" : 71818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71814", "source" : "897", "target" : "273", "shared_name" : "3073 (interacts with) 8869", "name" : "3073 (interacts with) 8869", "interaction" : "interacts with", "SUID" : 71814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71810", "source" : "897", "target" : "3733", "shared_name" : "3073 (interacts with) 2760", "name" : "3073 (interacts with) 2760", "interaction" : "interacts with", "SUID" : 71810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71806", "source" : "897", "target" : "5657", "shared_name" : "3073 (interacts with) 4668", "name" : "3073 (interacts with) 4668", "interaction" : "interacts with", "SUID" : 71806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71802", "source" : "897", "target" : "2397", "shared_name" : "3073 (interacts with) 3425", "name" : "3073 (interacts with) 3425", "interaction" : "interacts with", "SUID" : 71802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71798", "source" : "897", "target" : "3129", "shared_name" : "3073 (interacts with) 4125", "name" : "3073 (interacts with) 4125", "interaction" : "interacts with", "SUID" : 71798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71794", "source" : "897", "target" : "3645", "shared_name" : "3073 (interacts with) 4758", "name" : "3073 (interacts with) 4758", "interaction" : "interacts with", "SUID" : 71794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71878", "source" : "889", "target" : "521", "shared_name" : "80224 (interacts with) 85476", "name" : "80224 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 71878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71874", "source" : "889", "target" : "1053", "shared_name" : "80224 (interacts with) 81689", "name" : "80224 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 71874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71870", "source" : "889", "target" : "4757", "shared_name" : "80224 (interacts with) 9997", "name" : "80224 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 71870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71866", "source" : "889", "target" : "6181", "shared_name" : "80224 (interacts with) 84987", "name" : "80224 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 71866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71862", "source" : "889", "target" : "5737", "shared_name" : "80224 (interacts with) 84340", "name" : "80224 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 71862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71858", "source" : "889", "target" : "6073", "shared_name" : "80224 (interacts with) 92170", "name" : "80224 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 71858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71854", "source" : "889", "target" : "1661", "shared_name" : "80224 (interacts with) 91942", "name" : "80224 (interacts with) 91942", "interaction" : "interacts with", "SUID" : 71854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71850", "source" : "889", "target" : "4869", "shared_name" : "80224 (interacts with) 92935", "name" : "80224 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 71850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71902", "source" : "885", "target" : "1605", "shared_name" : "6347 (interacts with) 6648", "name" : "6347 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 71902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71898", "source" : "885", "target" : "1241", "shared_name" : "6347 (interacts with) 808", "name" : "6347 (interacts with) 808", "interaction" : "interacts with", "SUID" : 71898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71894", "source" : "885", "target" : "1201", "shared_name" : "6347 (interacts with) 805", "name" : "6347 (interacts with) 805", "interaction" : "interacts with", "SUID" : 71894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71890", "source" : "885", "target" : "993", "shared_name" : "6347 (interacts with) 801", "name" : "6347 (interacts with) 801", "interaction" : "interacts with", "SUID" : 71890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71886", "source" : "885", "target" : "4065", "shared_name" : "6347 (interacts with) 7124", "name" : "6347 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 71886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71882", "source" : "885", "target" : "3589", "shared_name" : "6347 (interacts with) 6567", "name" : "6347 (interacts with) 6567", "interaction" : "interacts with", "SUID" : 71882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71906", "source" : "881", "target" : "4725", "shared_name" : "55640 (interacts with) 7010", "name" : "55640 (interacts with) 7010", "interaction" : "interacts with", "SUID" : 71906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71934", "source" : "877", "target" : "5409", "shared_name" : "7341 (interacts with) 9734", "name" : "7341 (interacts with) 9734", "interaction" : "interacts with", "SUID" : 71934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71930", "source" : "877", "target" : "2069", "shared_name" : "7341 (interacts with) 84106", "name" : "7341 (interacts with) 84106", "interaction" : "interacts with", "SUID" : 71930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71926", "source" : "877", "target" : "1493", "shared_name" : "7341 (interacts with) 7428", "name" : "7341 (interacts with) 7428", "interaction" : "interacts with", "SUID" : 71926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71922", "source" : "877", "target" : "481", "shared_name" : "7341 (interacts with) 7507", "name" : "7341 (interacts with) 7507", "interaction" : "interacts with", "SUID" : 71922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71918", "source" : "877", "target" : "5521", "shared_name" : "7341 (interacts with) 7518", "name" : "7341 (interacts with) 7518", "interaction" : "interacts with", "SUID" : 71918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71914", "source" : "877", "target" : "1817", "shared_name" : "7341 (interacts with) 7343", "name" : "7341 (interacts with) 7343", "interaction" : "interacts with", "SUID" : 71914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71910", "source" : "877", "target" : "661", "shared_name" : "7341 (interacts with) 6657", "name" : "7341 (interacts with) 6657", "interaction" : "interacts with", "SUID" : 71910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72162", "source" : "873", "target" : "973", "shared_name" : "1385 (interacts with) 5595", "name" : "1385 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 72162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72158", "source" : "873", "target" : "5225", "shared_name" : "1385 (interacts with) 5290", "name" : "1385 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 72158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72154", "source" : "873", "target" : "4213", "shared_name" : "1385 (interacts with) 5295", "name" : "1385 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 72154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72150", "source" : "873", "target" : "4949", "shared_name" : "1385 (interacts with) 5970", "name" : "1385 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 72150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72146", "source" : "873", "target" : "3017", "shared_name" : "1385 (interacts with) 4790", "name" : "1385 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 72146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72142", "source" : "873", "target" : "5081", "shared_name" : "1385 (interacts with) 5594", "name" : "1385 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 72142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72138", "source" : "873", "target" : "3685", "shared_name" : "1385 (interacts with) 3265", "name" : "1385 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 72138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72134", "source" : "873", "target" : "1621", "shared_name" : "1385 (interacts with) 1432", "name" : "1385 (interacts with) 1432", "interaction" : "interacts with", "SUID" : 72134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72130", "source" : "873", "target" : "5509", "shared_name" : "1385 (interacts with) 207", "name" : "1385 (interacts with) 207", "interaction" : "interacts with", "SUID" : 72130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72126", "source" : "873", "target" : "5361", "shared_name" : "1385 (interacts with) 5604", "name" : "1385 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 72126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72122", "source" : "873", "target" : "4521", "shared_name" : "1385 (interacts with) 5894", "name" : "1385 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 72122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72118", "source" : "873", "target" : "1069", "shared_name" : "1385 (interacts with) 5879", "name" : "1385 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 72118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72114", "source" : "873", "target" : "1893", "shared_name" : "1385 (interacts with) 1387", "name" : "1385 (interacts with) 1387", "interaction" : "interacts with", "SUID" : 72114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72110", "source" : "873", "target" : "3517", "shared_name" : "1385 (interacts with) 2033", "name" : "1385 (interacts with) 2033", "interaction" : "interacts with", "SUID" : 72110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72106", "source" : "873", "target" : "4857", "shared_name" : "1385 (interacts with) 5573", "name" : "1385 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 72106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72102", "source" : "873", "target" : "637", "shared_name" : "1385 (interacts with) 6654", "name" : "1385 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 72102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72098", "source" : "873", "target" : "3305", "shared_name" : "1385 (interacts with) 7040", "name" : "1385 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 72098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72094", "source" : "873", "target" : "2153", "shared_name" : "1385 (interacts with) 7042", "name" : "1385 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 72094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72090", "source" : "873", "target" : "3409", "shared_name" : "1385 (interacts with) 7043", "name" : "1385 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 72090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72086", "source" : "873", "target" : "5149", "shared_name" : "1385 (interacts with) 5058", "name" : "1385 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 72086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72082", "source" : "873", "target" : "3577", "shared_name" : "1385 (interacts with) 5605", "name" : "1385 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 72082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72078", "source" : "873", "target" : "993", "shared_name" : "1385 (interacts with) 801", "name" : "1385 (interacts with) 801", "interaction" : "interacts with", "SUID" : 72078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72074", "source" : "873", "target" : "1201", "shared_name" : "1385 (interacts with) 805", "name" : "1385 (interacts with) 805", "interaction" : "interacts with", "SUID" : 72074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72070", "source" : "873", "target" : "1241", "shared_name" : "1385 (interacts with) 808", "name" : "1385 (interacts with) 808", "interaction" : "interacts with", "SUID" : 72070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72066", "source" : "873", "target" : "805", "shared_name" : "1385 (interacts with) 6772", "name" : "1385 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 72066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72062", "source" : "873", "target" : "789", "shared_name" : "1385 (interacts with) 1616", "name" : "1385 (interacts with) 1616", "interaction" : "interacts with", "SUID" : 72062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72058", "source" : "873", "target" : "3593", "shared_name" : "1385 (interacts with) 5530", "name" : "1385 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 72058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72054", "source" : "873", "target" : "2625", "shared_name" : "1385 (interacts with) 3065", "name" : "1385 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 72054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72050", "source" : "873", "target" : "3581", "shared_name" : "1385 (interacts with) 2185", "name" : "1385 (interacts with) 2185", "interaction" : "interacts with", "SUID" : 72050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72046", "source" : "873", "target" : "565", "shared_name" : "1385 (interacts with) 4772", "name" : "1385 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 72046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72042", "source" : "873", "target" : "3177", "shared_name" : "1385 (interacts with) 5321", "name" : "1385 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 72042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72038", "source" : "873", "target" : "1405", "shared_name" : "1385 (interacts with) 998", "name" : "1385 (interacts with) 998", "interaction" : "interacts with", "SUID" : 72038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72034", "source" : "873", "target" : "5681", "shared_name" : "1385 (interacts with) 3315", "name" : "1385 (interacts with) 3315", "interaction" : "interacts with", "SUID" : 72034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72030", "source" : "873", "target" : "2309", "shared_name" : "1385 (interacts with) 3316", "name" : "1385 (interacts with) 3316", "interaction" : "interacts with", "SUID" : 72030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72026", "source" : "873", "target" : "2597", "shared_name" : "1385 (interacts with) 2056", "name" : "1385 (interacts with) 2056", "interaction" : "interacts with", "SUID" : 72026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72022", "source" : "873", "target" : "2005", "shared_name" : "1385 (interacts with) 4846", "name" : "1385 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 72022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72018", "source" : "873", "target" : "5941", "shared_name" : "1385 (interacts with) 5914", "name" : "1385 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 72018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72014", "source" : "873", "target" : "5577", "shared_name" : "1385 (interacts with) 3091", "name" : "1385 (interacts with) 3091", "interaction" : "interacts with", "SUID" : 72014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72010", "source" : "873", "target" : "6057", "shared_name" : "1385 (interacts with) 3162", "name" : "1385 (interacts with) 3162", "interaction" : "interacts with", "SUID" : 72010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72006", "source" : "873", "target" : "2093", "shared_name" : "1385 (interacts with) 4780", "name" : "1385 (interacts with) 4780", "interaction" : "interacts with", "SUID" : 72006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72002", "source" : "873", "target" : "4237", "shared_name" : "1385 (interacts with) 4914", "name" : "1385 (interacts with) 4914", "interaction" : "interacts with", "SUID" : 72002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71998", "source" : "873", "target" : "1493", "shared_name" : "1385 (interacts with) 7428", "name" : "1385 (interacts with) 7428", "interaction" : "interacts with", "SUID" : 71998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71994", "source" : "873", "target" : "2089", "shared_name" : "1385 (interacts with) 3939", "name" : "1385 (interacts with) 3939", "interaction" : "interacts with", "SUID" : 71994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71990", "source" : "873", "target" : "5085", "shared_name" : "1385 (interacts with) 56652", "name" : "1385 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 71990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71986", "source" : "873", "target" : "3525", "shared_name" : "1385 (interacts with) 23410", "name" : "1385 (interacts with) 23410", "interaction" : "interacts with", "SUID" : 71986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71982", "source" : "873", "target" : "4421", "shared_name" : "1385 (interacts with) 2551", "name" : "1385 (interacts with) 2551", "interaction" : "interacts with", "SUID" : 71982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71978", "source" : "873", "target" : "713", "shared_name" : "1385 (interacts with) 7019", "name" : "1385 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 71978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71974", "source" : "873", "target" : "3737", "shared_name" : "1385 (interacts with) 3064", "name" : "1385 (interacts with) 3064", "interaction" : "interacts with", "SUID" : 71974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71970", "source" : "873", "target" : "737", "shared_name" : "1385 (interacts with) 2643", "name" : "1385 (interacts with) 2643", "interaction" : "interacts with", "SUID" : 71970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71966", "source" : "873", "target" : "3925", "shared_name" : "1385 (interacts with) 1051", "name" : "1385 (interacts with) 1051", "interaction" : "interacts with", "SUID" : 71966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71962", "source" : "873", "target" : "5185", "shared_name" : "1385 (interacts with) 1499", "name" : "1385 (interacts with) 1499", "interaction" : "interacts with", "SUID" : 71962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71958", "source" : "873", "target" : "817", "shared_name" : "1385 (interacts with) 5728", "name" : "1385 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 71958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71954", "source" : "873", "target" : "1433", "shared_name" : "1385 (interacts with) 6515", "name" : "1385 (interacts with) 6515", "interaction" : "interacts with", "SUID" : 71954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71950", "source" : "873", "target" : "3057", "shared_name" : "1385 (interacts with) 5592", "name" : "1385 (interacts with) 5592", "interaction" : "interacts with", "SUID" : 71950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71946", "source" : "873", "target" : "3821", "shared_name" : "1385 (interacts with) 10891", "name" : "1385 (interacts with) 10891", "interaction" : "interacts with", "SUID" : 71946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71942", "source" : "873", "target" : "5453", "shared_name" : "1385 (interacts with) 4204", "name" : "1385 (interacts with) 4204", "interaction" : "interacts with", "SUID" : 71942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "71938", "source" : "873", "target" : "2077", "shared_name" : "1385 (interacts with) 7528", "name" : "1385 (interacts with) 7528", "interaction" : "interacts with", "SUID" : 71938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72166", "source" : "869", "target" : "989", "shared_name" : "23221 (interacts with) 5297", "name" : "23221 (interacts with) 5297", "interaction" : "interacts with", "SUID" : 72166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72322", "source" : "865", "target" : "5693", "shared_name" : "3480 (interacts with) 92335", "name" : "3480 (interacts with) 92335", "interaction" : "interacts with", "SUID" : 72322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72318", "source" : "865", "target" : "973", "shared_name" : "3480 (interacts with) 5595", "name" : "3480 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 72318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72314", "source" : "865", "target" : "5081", "shared_name" : "3480 (interacts with) 5594", "name" : "3480 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 72314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72310", "source" : "865", "target" : "5361", "shared_name" : "3480 (interacts with) 5604", "name" : "3480 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 72310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72306", "source" : "865", "target" : "5225", "shared_name" : "3480 (interacts with) 5290", "name" : "3480 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 72306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72302", "source" : "865", "target" : "4213", "shared_name" : "3480 (interacts with) 5295", "name" : "3480 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 72302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72298", "source" : "865", "target" : "4521", "shared_name" : "3480 (interacts with) 5894", "name" : "3480 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 72298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72294", "source" : "865", "target" : "4857", "shared_name" : "3480 (interacts with) 5573", "name" : "3480 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 72294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72290", "source" : "865", "target" : "5037", "shared_name" : "3480 (interacts with) 5515", "name" : "3480 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 72290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72286", "source" : "865", "target" : "1241", "shared_name" : "3480 (interacts with) 808", "name" : "3480 (interacts with) 808", "interaction" : "interacts with", "SUID" : 72286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72282", "source" : "865", "target" : "5965", "shared_name" : "3480 (interacts with) 596", "name" : "3480 (interacts with) 596", "interaction" : "interacts with", "SUID" : 72282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72278", "source" : "865", "target" : "993", "shared_name" : "3480 (interacts with) 801", "name" : "3480 (interacts with) 801", "interaction" : "interacts with", "SUID" : 72278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72274", "source" : "865", "target" : "1201", "shared_name" : "3480 (interacts with) 805", "name" : "3480 (interacts with) 805", "interaction" : "interacts with", "SUID" : 72274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72270", "source" : "865", "target" : "3577", "shared_name" : "3480 (interacts with) 5605", "name" : "3480 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 72270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72266", "source" : "865", "target" : "981", "shared_name" : "3480 (interacts with) 7157", "name" : "3480 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 72266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72262", "source" : "865", "target" : "3593", "shared_name" : "3480 (interacts with) 5530", "name" : "3480 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 72262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72258", "source" : "865", "target" : "565", "shared_name" : "3480 (interacts with) 4772", "name" : "3480 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 72258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72254", "source" : "865", "target" : "4981", "shared_name" : "3480 (interacts with) 6774", "name" : "3480 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 72254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72250", "source" : "865", "target" : "817", "shared_name" : "3480 (interacts with) 5728", "name" : "3480 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 72250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72246", "source" : "865", "target" : "4293", "shared_name" : "3480 (interacts with) 5156", "name" : "3480 (interacts with) 5156", "interaction" : "interacts with", "SUID" : 72246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72242", "source" : "865", "target" : "2793", "shared_name" : "3480 (interacts with) 8894", "name" : "3480 (interacts with) 8894", "interaction" : "interacts with", "SUID" : 72242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72238", "source" : "865", "target" : "4149", "shared_name" : "3480 (interacts with) 8893", "name" : "3480 (interacts with) 8893", "interaction" : "interacts with", "SUID" : 72238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72234", "source" : "865", "target" : "3745", "shared_name" : "3480 (interacts with) 4803", "name" : "3480 (interacts with) 4803", "interaction" : "interacts with", "SUID" : 72234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72230", "source" : "865", "target" : "2901", "shared_name" : "3480 (interacts with) 6647", "name" : "3480 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 72230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72226", "source" : "865", "target" : "1697", "shared_name" : "3480 (interacts with) 8818", "name" : "3480 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 72226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72222", "source" : "865", "target" : "4765", "shared_name" : "3480 (interacts with) 7015", "name" : "3480 (interacts with) 7015", "interaction" : "interacts with", "SUID" : 72222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72218", "source" : "865", "target" : "3573", "shared_name" : "3480 (interacts with) 3845", "name" : "3480 (interacts with) 3845", "interaction" : "interacts with", "SUID" : 72218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72214", "source" : "865", "target" : "5389", "shared_name" : "3480 (interacts with) 551", "name" : "3480 (interacts with) 551", "interaction" : "interacts with", "SUID" : 72214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72210", "source" : "865", "target" : "1605", "shared_name" : "3480 (interacts with) 6648", "name" : "3480 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 72210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72206", "source" : "865", "target" : "629", "shared_name" : "3480 (interacts with) 7013", "name" : "3480 (interacts with) 7013", "interaction" : "interacts with", "SUID" : 72206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72202", "source" : "865", "target" : "4809", "shared_name" : "3480 (interacts with) 3481", "name" : "3480 (interacts with) 3481", "interaction" : "interacts with", "SUID" : 72202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72198", "source" : "865", "target" : "4041", "shared_name" : "3480 (interacts with) 847", "name" : "3480 (interacts with) 847", "interaction" : "interacts with", "SUID" : 72198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72194", "source" : "865", "target" : "637", "shared_name" : "3480 (interacts with) 6654", "name" : "3480 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 72194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72190", "source" : "865", "target" : "1909", "shared_name" : "3480 (interacts with) 5286", "name" : "3480 (interacts with) 5286", "interaction" : "interacts with", "SUID" : 72190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72186", "source" : "865", "target" : "4197", "shared_name" : "3480 (interacts with) 1398", "name" : "3480 (interacts with) 1398", "interaction" : "interacts with", "SUID" : 72186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72182", "source" : "865", "target" : "3149", "shared_name" : "3480 (interacts with) 3630", "name" : "3480 (interacts with) 3630", "interaction" : "interacts with", "SUID" : 72182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72178", "source" : "865", "target" : "5509", "shared_name" : "3480 (interacts with) 207", "name" : "3480 (interacts with) 207", "interaction" : "interacts with", "SUID" : 72178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72174", "source" : "865", "target" : "5713", "shared_name" : "3480 (interacts with) 7531", "name" : "3480 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 72174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72170", "source" : "865", "target" : "4649", "shared_name" : "3480 (interacts with) 3479", "name" : "3480 (interacts with) 3479", "interaction" : "interacts with", "SUID" : 72170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72466", "source" : "861", "target" : "4749", "shared_name" : "23600 (interacts with) 3028", "name" : "23600 (interacts with) 3028", "interaction" : "interacts with", "SUID" : 72466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72462", "source" : "861", "target" : "625", "shared_name" : "23600 (interacts with) 8942", "name" : "23600 (interacts with) 8942", "interaction" : "interacts with", "SUID" : 72462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72458", "source" : "861", "target" : "2369", "shared_name" : "23600 (interacts with) 51741", "name" : "23600 (interacts with) 51741", "interaction" : "interacts with", "SUID" : 72458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72454", "source" : "861", "target" : "2025", "shared_name" : "23600 (interacts with) 549", "name" : "23600 (interacts with) 549", "interaction" : "interacts with", "SUID" : 72454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72450", "source" : "861", "target" : "4617", "shared_name" : "23600 (interacts with) 26227", "name" : "23600 (interacts with) 26227", "interaction" : "interacts with", "SUID" : 72450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72446", "source" : "861", "target" : "2029", "shared_name" : "23600 (interacts with) 4329", "name" : "23600 (interacts with) 4329", "interaction" : "interacts with", "SUID" : 72446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72442", "source" : "861", "target" : "4745", "shared_name" : "23600 (interacts with) 35", "name" : "23600 (interacts with) 35", "interaction" : "interacts with", "SUID" : 72442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72438", "source" : "861", "target" : "2577", "shared_name" : "23600 (interacts with) 4337", "name" : "23600 (interacts with) 4337", "interaction" : "interacts with", "SUID" : 72438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72434", "source" : "861", "target" : "2337", "shared_name" : "23600 (interacts with) 28976", "name" : "23600 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 72434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72430", "source" : "861", "target" : "1133", "shared_name" : "23600 (interacts with) 3418", "name" : "23600 (interacts with) 3418", "interaction" : "interacts with", "SUID" : 72430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72426", "source" : "861", "target" : "5677", "shared_name" : "23600 (interacts with) 5189", "name" : "23600 (interacts with) 5189", "interaction" : "interacts with", "SUID" : 72426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72422", "source" : "861", "target" : "4505", "shared_name" : "23600 (interacts with) 5190", "name" : "23600 (interacts with) 5190", "interaction" : "interacts with", "SUID" : 72422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72418", "source" : "861", "target" : "1977", "shared_name" : "23600 (interacts with) 5191", "name" : "23600 (interacts with) 5191", "interaction" : "interacts with", "SUID" : 72418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72414", "source" : "861", "target" : "5865", "shared_name" : "23600 (interacts with) 5192", "name" : "23600 (interacts with) 5192", "interaction" : "interacts with", "SUID" : 72414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72410", "source" : "861", "target" : "4297", "shared_name" : "23600 (interacts with) 5193", "name" : "23600 (interacts with) 5193", "interaction" : "interacts with", "SUID" : 72410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72406", "source" : "861", "target" : "1953", "shared_name" : "23600 (interacts with) 5194", "name" : "23600 (interacts with) 5194", "interaction" : "interacts with", "SUID" : 72406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72402", "source" : "861", "target" : "5545", "shared_name" : "23600 (interacts with) 5195", "name" : "23600 (interacts with) 5195", "interaction" : "interacts with", "SUID" : 72402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72398", "source" : "861", "target" : "1969", "shared_name" : "23600 (interacts with) 4598", "name" : "23600 (interacts with) 4598", "interaction" : "interacts with", "SUID" : 72398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72394", "source" : "861", "target" : "2249", "shared_name" : "23600 (interacts with) 25824", "name" : "23600 (interacts with) 25824", "interaction" : "interacts with", "SUID" : 72394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72390", "source" : "861", "target" : "845", "shared_name" : "23600 (interacts with) 4358", "name" : "23600 (interacts with) 4358", "interaction" : "interacts with", "SUID" : 72390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72386", "source" : "861", "target" : "517", "shared_name" : "23600 (interacts with) 5052", "name" : "23600 (interacts with) 5052", "interaction" : "interacts with", "SUID" : 72386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72382", "source" : "861", "target" : "3341", "shared_name" : "23600 (interacts with) 8504", "name" : "23600 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 72382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72378", "source" : "861", "target" : "4301", "shared_name" : "23600 (interacts with) 8799", "name" : "23600 (interacts with) 8799", "interaction" : "interacts with", "SUID" : 72378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72374", "source" : "861", "target" : "3333", "shared_name" : "23600 (interacts with) 9409", "name" : "23600 (interacts with) 9409", "interaction" : "interacts with", "SUID" : 72374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72370", "source" : "861", "target" : "2353", "shared_name" : "23600 (interacts with) 5264", "name" : "23600 (interacts with) 5264", "interaction" : "interacts with", "SUID" : 72370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72366", "source" : "861", "target" : "2325", "shared_name" : "23600 (interacts with) 55670", "name" : "23600 (interacts with) 55670", "interaction" : "interacts with", "SUID" : 72366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72362", "source" : "861", "target" : "3329", "shared_name" : "23600 (interacts with) 5824", "name" : "23600 (interacts with) 5824", "interaction" : "interacts with", "SUID" : 72362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72358", "source" : "861", "target" : "5873", "shared_name" : "23600 (interacts with) 5827", "name" : "23600 (interacts with) 5827", "interaction" : "interacts with", "SUID" : 72358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72354", "source" : "861", "target" : "5205", "shared_name" : "23600 (interacts with) 5828", "name" : "23600 (interacts with) 5828", "interaction" : "interacts with", "SUID" : 72354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72350", "source" : "861", "target" : "5237", "shared_name" : "23600 (interacts with) 5830", "name" : "23600 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 72350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72346", "source" : "861", "target" : "196", "shared_name" : "23600 (interacts with) 84188", "name" : "23600 (interacts with) 84188", "interaction" : "interacts with", "SUID" : 72346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72342", "source" : "861", "target" : "573", "shared_name" : "23600 (interacts with) 3155", "name" : "23600 (interacts with) 3155", "interaction" : "interacts with", "SUID" : 72342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72338", "source" : "861", "target" : "5645", "shared_name" : "23600 (interacts with) 9420", "name" : "23600 (interacts with) 9420", "interaction" : "interacts with", "SUID" : 72338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72334", "source" : "861", "target" : "4941", "shared_name" : "23600 (interacts with) 6342", "name" : "23600 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 72334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72330", "source" : "861", "target" : "1525", "shared_name" : "23600 (interacts with) 3295", "name" : "23600 (interacts with) 3295", "interaction" : "interacts with", "SUID" : 72330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72326", "source" : "861", "target" : "3337", "shared_name" : "23600 (interacts with) 2639", "name" : "23600 (interacts with) 2639", "interaction" : "interacts with", "SUID" : 72326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72506", "source" : "857", "target" : "3509", "shared_name" : "11274 (interacts with) 4061", "name" : "11274 (interacts with) 4061", "interaction" : "interacts with", "SUID" : 72506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72502", "source" : "857", "target" : "1781", "shared_name" : "11274 (interacts with) 4084", "name" : "11274 (interacts with) 4084", "interaction" : "interacts with", "SUID" : 72502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72498", "source" : "857", "target" : "5317", "shared_name" : "11274 (interacts with) 25939", "name" : "11274 (interacts with) 25939", "interaction" : "interacts with", "SUID" : 72498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72494", "source" : "857", "target" : "1605", "shared_name" : "11274 (interacts with) 6648", "name" : "11274 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 72494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72490", "source" : "857", "target" : "4681", "shared_name" : "11274 (interacts with) 4843", "name" : "11274 (interacts with) 4843", "interaction" : "interacts with", "SUID" : 72490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72486", "source" : "857", "target" : "301", "shared_name" : "11274 (interacts with) 219285", "name" : "11274 (interacts with) 219285", "interaction" : "interacts with", "SUID" : 72486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72482", "source" : "857", "target" : "4065", "shared_name" : "11274 (interacts with) 7124", "name" : "11274 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 72482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72478", "source" : "857", "target" : "3417", "shared_name" : "11274 (interacts with) 5371", "name" : "11274 (interacts with) 5371", "interaction" : "interacts with", "SUID" : 72478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72474", "source" : "857", "target" : "241", "shared_name" : "11274 (interacts with) 3627", "name" : "11274 (interacts with) 3627", "interaction" : "interacts with", "SUID" : 72474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72470", "source" : "857", "target" : "3197", "shared_name" : "11274 (interacts with) 64135", "name" : "11274 (interacts with) 64135", "interaction" : "interacts with", "SUID" : 72470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72598", "source" : "853", "target" : "1241", "shared_name" : "60 (interacts with) 808", "name" : "60 (interacts with) 808", "interaction" : "interacts with", "SUID" : 72598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72594", "source" : "853", "target" : "997", "shared_name" : "60 (interacts with) 7431", "name" : "60 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 72594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72590", "source" : "853", "target" : "1201", "shared_name" : "60 (interacts with) 805", "name" : "60 (interacts with) 805", "interaction" : "interacts with", "SUID" : 72590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72586", "source" : "853", "target" : "705", "shared_name" : "60 (interacts with) 728378", "name" : "60 (interacts with) 728378", "interaction" : "interacts with", "SUID" : 72586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72582", "source" : "853", "target" : "2305", "shared_name" : "60 (interacts with) 6908", "name" : "60 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 72582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72578", "source" : "853", "target" : "525", "shared_name" : "60 (interacts with) 6598", "name" : "60 (interacts with) 6598", "interaction" : "interacts with", "SUID" : 72578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72574", "source" : "853", "target" : "4629", "shared_name" : "60 (interacts with) 6605", "name" : "60 (interacts with) 6605", "interaction" : "interacts with", "SUID" : 72574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72570", "source" : "853", "target" : "3105", "shared_name" : "60 (interacts with) 8289", "name" : "60 (interacts with) 8289", "interaction" : "interacts with", "SUID" : 72570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72566", "source" : "853", "target" : "3093", "shared_name" : "60 (interacts with) 6597", "name" : "60 (interacts with) 6597", "interaction" : "interacts with", "SUID" : 72566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72562", "source" : "853", "target" : "4469", "shared_name" : "60 (interacts with) 8295", "name" : "60 (interacts with) 8295", "interaction" : "interacts with", "SUID" : 72562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72558", "source" : "853", "target" : "2077", "shared_name" : "60 (interacts with) 7528", "name" : "60 (interacts with) 7528", "interaction" : "interacts with", "SUID" : 72558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72554", "source" : "853", "target" : "1069", "shared_name" : "60 (interacts with) 5879", "name" : "60 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 72554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72550", "source" : "853", "target" : "3933", "shared_name" : "60 (interacts with) 10524", "name" : "60 (interacts with) 10524", "interaction" : "interacts with", "SUID" : 72550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72546", "source" : "853", "target" : "2085", "shared_name" : "60 (interacts with) 2932", "name" : "60 (interacts with) 2932", "interaction" : "interacts with", "SUID" : 72546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72542", "source" : "853", "target" : "4285", "shared_name" : "60 (interacts with) 8450", "name" : "60 (interacts with) 8450", "interaction" : "interacts with", "SUID" : 72542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72538", "source" : "853", "target" : "6021", "shared_name" : "60 (interacts with) 26999", "name" : "60 (interacts with) 26999", "interaction" : "interacts with", "SUID" : 72538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72534", "source" : "853", "target" : "1405", "shared_name" : "60 (interacts with) 998", "name" : "60 (interacts with) 998", "interaction" : "interacts with", "SUID" : 72534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72530", "source" : "853", "target" : "4077", "shared_name" : "60 (interacts with) 71", "name" : "60 (interacts with) 71", "interaction" : "interacts with", "SUID" : 72530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72526", "source" : "853", "target" : "3721", "shared_name" : "60 (interacts with) 2934", "name" : "60 (interacts with) 2934", "interaction" : "interacts with", "SUID" : 72526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72522", "source" : "853", "target" : "3669", "shared_name" : "60 (interacts with) 55975", "name" : "60 (interacts with) 55975", "interaction" : "interacts with", "SUID" : 72522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72518", "source" : "853", "target" : "1349", "shared_name" : "60 (interacts with) 6606", "name" : "60 (interacts with) 6606", "interaction" : "interacts with", "SUID" : 72518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72514", "source" : "853", "target" : "4885", "shared_name" : "60 (interacts with) 5340", "name" : "60 (interacts with) 5340", "interaction" : "interacts with", "SUID" : 72514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72510", "source" : "853", "target" : "4729", "shared_name" : "60 (interacts with) 5216", "name" : "60 (interacts with) 5216", "interaction" : "interacts with", "SUID" : 72510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72666", "source" : "849", "target" : "1917", "shared_name" : "23556 (interacts with) 51604", "name" : "23556 (interacts with) 51604", "interaction" : "interacts with", "SUID" : 72666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72662", "source" : "849", "target" : "1697", "shared_name" : "23556 (interacts with) 8818", "name" : "23556 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 72662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72658", "source" : "849", "target" : "2181", "shared_name" : "23556 (interacts with) 94005", "name" : "23556 (interacts with) 94005", "interaction" : "interacts with", "SUID" : 72658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72654", "source" : "849", "target" : "1593", "shared_name" : "23556 (interacts with) 8733", "name" : "23556 (interacts with) 8733", "interaction" : "interacts with", "SUID" : 72654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72650", "source" : "849", "target" : "1025", "shared_name" : "23556 (interacts with) 80055", "name" : "23556 (interacts with) 80055", "interaction" : "interacts with", "SUID" : 72650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72646", "source" : "849", "target" : "5477", "shared_name" : "23556 (interacts with) 54872", "name" : "23556 (interacts with) 54872", "interaction" : "interacts with", "SUID" : 72646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72642", "source" : "849", "target" : "1545", "shared_name" : "23556 (interacts with) 5277", "name" : "23556 (interacts with) 5277", "interaction" : "interacts with", "SUID" : 72642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72638", "source" : "849", "target" : "4989", "shared_name" : "23556 (interacts with) 51227", "name" : "23556 (interacts with) 51227", "interaction" : "interacts with", "SUID" : 72638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72634", "source" : "849", "target" : "2853", "shared_name" : "23556 (interacts with) 8398", "name" : "23556 (interacts with) 8398", "interaction" : "interacts with", "SUID" : 72634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72630", "source" : "849", "target" : "3893", "shared_name" : "23556 (interacts with) 151056", "name" : "23556 (interacts with) 151056", "interaction" : "interacts with", "SUID" : 72630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72626", "source" : "849", "target" : "1905", "shared_name" : "23556 (interacts with) 9488", "name" : "23556 (interacts with) 9488", "interaction" : "interacts with", "SUID" : 72626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72622", "source" : "849", "target" : "985", "shared_name" : "23556 (interacts with) 9091", "name" : "23556 (interacts with) 9091", "interaction" : "interacts with", "SUID" : 72622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72618", "source" : "849", "target" : "3177", "shared_name" : "23556 (interacts with) 5321", "name" : "23556 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 72618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72614", "source" : "849", "target" : "385", "shared_name" : "23556 (interacts with) 5319", "name" : "23556 (interacts with) 5319", "interaction" : "interacts with", "SUID" : 72614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72610", "source" : "849", "target" : "1769", "shared_name" : "23556 (interacts with) 57104", "name" : "23556 (interacts with) 57104", "interaction" : "interacts with", "SUID" : 72610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72606", "source" : "849", "target" : "2013", "shared_name" : "23556 (interacts with) 128486", "name" : "23556 (interacts with) 128486", "interaction" : "interacts with", "SUID" : 72606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72602", "source" : "849", "target" : "689", "shared_name" : "23556 (interacts with) 6329", "name" : "23556 (interacts with) 6329", "interaction" : "interacts with", "SUID" : 72602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72746", "source" : "845", "target" : "4941", "shared_name" : "4358 (interacts with) 6342", "name" : "4358 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 72746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72742", "source" : "845", "target" : "1969", "shared_name" : "4358 (interacts with) 4598", "name" : "4358 (interacts with) 4598", "interaction" : "interacts with", "SUID" : 72742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72738", "source" : "845", "target" : "517", "shared_name" : "4358 (interacts with) 5052", "name" : "4358 (interacts with) 5052", "interaction" : "interacts with", "SUID" : 72738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72734", "source" : "845", "target" : "5677", "shared_name" : "4358 (interacts with) 5189", "name" : "4358 (interacts with) 5189", "interaction" : "interacts with", "SUID" : 72734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72730", "source" : "845", "target" : "1977", "shared_name" : "4358 (interacts with) 5191", "name" : "4358 (interacts with) 5191", "interaction" : "interacts with", "SUID" : 72730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72726", "source" : "845", "target" : "4505", "shared_name" : "4358 (interacts with) 5190", "name" : "4358 (interacts with) 5190", "interaction" : "interacts with", "SUID" : 72726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72722", "source" : "845", "target" : "4297", "shared_name" : "4358 (interacts with) 5193", "name" : "4358 (interacts with) 5193", "interaction" : "interacts with", "SUID" : 72722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72718", "source" : "845", "target" : "5865", "shared_name" : "4358 (interacts with) 5192", "name" : "4358 (interacts with) 5192", "interaction" : "interacts with", "SUID" : 72718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72714", "source" : "845", "target" : "5545", "shared_name" : "4358 (interacts with) 5195", "name" : "4358 (interacts with) 5195", "interaction" : "interacts with", "SUID" : 72714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72710", "source" : "845", "target" : "1953", "shared_name" : "4358 (interacts with) 5194", "name" : "4358 (interacts with) 5194", "interaction" : "interacts with", "SUID" : 72710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72706", "source" : "845", "target" : "2353", "shared_name" : "4358 (interacts with) 5264", "name" : "4358 (interacts with) 5264", "interaction" : "interacts with", "SUID" : 72706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72702", "source" : "845", "target" : "2325", "shared_name" : "4358 (interacts with) 55670", "name" : "4358 (interacts with) 55670", "interaction" : "interacts with", "SUID" : 72702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72698", "source" : "845", "target" : "5205", "shared_name" : "4358 (interacts with) 5828", "name" : "4358 (interacts with) 5828", "interaction" : "interacts with", "SUID" : 72698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72694", "source" : "845", "target" : "3329", "shared_name" : "4358 (interacts with) 5824", "name" : "4358 (interacts with) 5824", "interaction" : "interacts with", "SUID" : 72694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72690", "source" : "845", "target" : "196", "shared_name" : "4358 (interacts with) 84188", "name" : "4358 (interacts with) 84188", "interaction" : "interacts with", "SUID" : 72690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72686", "source" : "845", "target" : "5237", "shared_name" : "4358 (interacts with) 5830", "name" : "4358 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 72686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72682", "source" : "845", "target" : "3341", "shared_name" : "4358 (interacts with) 8504", "name" : "4358 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 72682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72678", "source" : "845", "target" : "4301", "shared_name" : "4358 (interacts with) 8799", "name" : "4358 (interacts with) 8799", "interaction" : "interacts with", "SUID" : 72678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72674", "source" : "845", "target" : "3333", "shared_name" : "4358 (interacts with) 9409", "name" : "4358 (interacts with) 9409", "interaction" : "interacts with", "SUID" : 72674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72670", "source" : "845", "target" : "5873", "shared_name" : "4358 (interacts with) 5827", "name" : "4358 (interacts with) 5827", "interaction" : "interacts with", "SUID" : 72670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72770", "source" : "841", "target" : "2793", "shared_name" : "8890 (interacts with) 8894", "name" : "8890 (interacts with) 8894", "interaction" : "interacts with", "SUID" : 72770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72766", "source" : "841", "target" : "4837", "shared_name" : "8890 (interacts with) 8891", "name" : "8890 (interacts with) 8891", "interaction" : "interacts with", "SUID" : 72766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72762", "source" : "841", "target" : "4149", "shared_name" : "8890 (interacts with) 8893", "name" : "8890 (interacts with) 8893", "interaction" : "interacts with", "SUID" : 72762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72758", "source" : "841", "target" : "2781", "shared_name" : "8890 (interacts with) 1968", "name" : "8890 (interacts with) 1968", "interaction" : "interacts with", "SUID" : 72758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72754", "source" : "841", "target" : "837", "shared_name" : "8890 (interacts with) 8892", "name" : "8890 (interacts with) 8892", "interaction" : "interacts with", "SUID" : 72754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72750", "source" : "841", "target" : "4877", "shared_name" : "8890 (interacts with) 1965", "name" : "8890 (interacts with) 1965", "interaction" : "interacts with", "SUID" : 72750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72814", "source" : "837", "target" : "2793", "shared_name" : "8892 (interacts with) 8894", "name" : "8892 (interacts with) 8894", "interaction" : "interacts with", "SUID" : 72814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72810", "source" : "837", "target" : "4877", "shared_name" : "8892 (interacts with) 1965", "name" : "8892 (interacts with) 1965", "interaction" : "interacts with", "SUID" : 72810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72806", "source" : "837", "target" : "2781", "shared_name" : "8892 (interacts with) 1968", "name" : "8892 (interacts with) 1968", "interaction" : "interacts with", "SUID" : 72806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72802", "source" : "837", "target" : "841", "shared_name" : "8892 (interacts with) 8890", "name" : "8892 (interacts with) 8890", "interaction" : "interacts with", "SUID" : 72802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72798", "source" : "837", "target" : "4837", "shared_name" : "8892 (interacts with) 8891", "name" : "8892 (interacts with) 8891", "interaction" : "interacts with", "SUID" : 72798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72794", "source" : "837", "target" : "5489", "shared_name" : "8892 (interacts with) 2259", "name" : "8892 (interacts with) 2259", "interaction" : "interacts with", "SUID" : 72794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72790", "source" : "837", "target" : "4149", "shared_name" : "8892 (interacts with) 8893", "name" : "8892 (interacts with) 8893", "interaction" : "interacts with", "SUID" : 72790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72786", "source" : "837", "target" : "3713", "shared_name" : "8892 (interacts with) 203228", "name" : "8892 (interacts with) 203228", "interaction" : "interacts with", "SUID" : 72786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72782", "source" : "837", "target" : "4081", "shared_name" : "8892 (interacts with) 148789", "name" : "8892 (interacts with) 148789", "interaction" : "interacts with", "SUID" : 72782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72778", "source" : "837", "target" : "929", "shared_name" : "8892 (interacts with) 1967", "name" : "8892 (interacts with) 1967", "interaction" : "interacts with", "SUID" : 72778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72774", "source" : "837", "target" : "5785", "shared_name" : "8892 (interacts with) 6857", "name" : "8892 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 72774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72842", "source" : "833", "target" : "2049", "shared_name" : "25974 (interacts with) 4552", "name" : "25974 (interacts with) 4552", "interaction" : "interacts with", "SUID" : 72842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72838", "source" : "833", "target" : "6149", "shared_name" : "25974 (interacts with) 335", "name" : "25974 (interacts with) 335", "interaction" : "interacts with", "SUID" : 72838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72834", "source" : "833", "target" : "4273", "shared_name" : "25974 (interacts with) 4548", "name" : "25974 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 72834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72830", "source" : "833", "target" : "5825", "shared_name" : "25974 (interacts with) 4594", "name" : "25974 (interacts with) 4594", "interaction" : "interacts with", "SUID" : 72830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72826", "source" : "833", "target" : "6025", "shared_name" : "25974 (interacts with) 80704", "name" : "25974 (interacts with) 80704", "interaction" : "interacts with", "SUID" : 72826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72822", "source" : "833", "target" : "2277", "shared_name" : "25974 (interacts with) 686", "name" : "25974 (interacts with) 686", "interaction" : "interacts with", "SUID" : 72822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72818", "source" : "833", "target" : "653", "shared_name" : "25974 (interacts with) 6948", "name" : "25974 (interacts with) 6948", "interaction" : "interacts with", "SUID" : 72818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72870", "source" : "829", "target" : "6117", "shared_name" : "8772 (interacts with) 9131", "name" : "8772 (interacts with) 9131", "interaction" : "interacts with", "SUID" : 72870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72866", "source" : "829", "target" : "2841", "shared_name" : "8772 (interacts with) 7098", "name" : "8772 (interacts with) 7098", "interaction" : "interacts with", "SUID" : 72866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72862", "source" : "829", "target" : "2637", "shared_name" : "8772 (interacts with) 353376", "name" : "8772 (interacts with) 353376", "interaction" : "interacts with", "SUID" : 72862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72858", "source" : "829", "target" : "3697", "shared_name" : "8772 (interacts with) 7099", "name" : "8772 (interacts with) 7099", "interaction" : "interacts with", "SUID" : 72858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72854", "source" : "829", "target" : "5697", "shared_name" : "8772 (interacts with) 8517", "name" : "8772 (interacts with) 8517", "interaction" : "interacts with", "SUID" : 72854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72850", "source" : "829", "target" : "3197", "shared_name" : "8772 (interacts with) 64135", "name" : "8772 (interacts with) 64135", "interaction" : "interacts with", "SUID" : 72850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72846", "source" : "829", "target" : "3901", "shared_name" : "8772 (interacts with) 19", "name" : "8772 (interacts with) 19", "interaction" : "interacts with", "SUID" : 72846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72914", "source" : "825", "target" : "4097", "shared_name" : "25942 (interacts with) 9611", "name" : "25942 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 72914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72910", "source" : "825", "target" : "3685", "shared_name" : "25942 (interacts with) 3265", "name" : "25942 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 72910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72906", "source" : "825", "target" : "2673", "shared_name" : "25942 (interacts with) 8841", "name" : "25942 (interacts with) 8841", "interaction" : "interacts with", "SUID" : 72906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72902", "source" : "825", "target" : "1097", "shared_name" : "25942 (interacts with) 79718", "name" : "25942 (interacts with) 79718", "interaction" : "interacts with", "SUID" : 72902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72898", "source" : "825", "target" : "2957", "shared_name" : "25942 (interacts with) 5465", "name" : "25942 (interacts with) 5465", "interaction" : "interacts with", "SUID" : 72898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72894", "source" : "825", "target" : "981", "shared_name" : "25942 (interacts with) 7157", "name" : "25942 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 72894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72890", "source" : "825", "target" : "4765", "shared_name" : "25942 (interacts with) 7015", "name" : "25942 (interacts with) 7015", "interaction" : "interacts with", "SUID" : 72890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72886", "source" : "825", "target" : "877", "shared_name" : "25942 (interacts with) 7341", "name" : "25942 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 72886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72882", "source" : "825", "target" : "1781", "shared_name" : "25942 (interacts with) 4084", "name" : "25942 (interacts with) 4084", "interaction" : "interacts with", "SUID" : 72882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72878", "source" : "825", "target" : "2625", "shared_name" : "25942 (interacts with) 3065", "name" : "25942 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 72878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72874", "source" : "825", "target" : "5785", "shared_name" : "25942 (interacts with) 6857", "name" : "25942 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 72874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72962", "source" : "821", "target" : "2553", "shared_name" : "1410 (interacts with) 815", "name" : "1410 (interacts with) 815", "interaction" : "interacts with", "SUID" : 72962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72958", "source" : "821", "target" : "1377", "shared_name" : "1410 (interacts with) 81570", "name" : "1410 (interacts with) 81570", "interaction" : "interacts with", "SUID" : 72958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72954", "source" : "821", "target" : "2481", "shared_name" : "1410 (interacts with) 2475", "name" : "1410 (interacts with) 2475", "interaction" : "interacts with", "SUID" : 72954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72950", "source" : "821", "target" : "5681", "shared_name" : "1410 (interacts with) 3315", "name" : "1410 (interacts with) 3315", "interaction" : "interacts with", "SUID" : 72950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72946", "source" : "821", "target" : "433", "shared_name" : "1410 (interacts with) 8988", "name" : "1410 (interacts with) 8988", "interaction" : "interacts with", "SUID" : 72946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72942", "source" : "821", "target" : "1877", "shared_name" : "1410 (interacts with) 9531", "name" : "1410 (interacts with) 9531", "interaction" : "interacts with", "SUID" : 72942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72938", "source" : "821", "target" : "5389", "shared_name" : "1410 (interacts with) 551", "name" : "1410 (interacts with) 551", "interaction" : "interacts with", "SUID" : 72938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72934", "source" : "821", "target" : "597", "shared_name" : "1410 (interacts with) 271", "name" : "1410 (interacts with) 271", "interaction" : "interacts with", "SUID" : 72934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72930", "source" : "821", "target" : "6177", "shared_name" : "1410 (interacts with) 50628", "name" : "1410 (interacts with) 50628", "interaction" : "interacts with", "SUID" : 72930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72926", "source" : "821", "target" : "4013", "shared_name" : "1410 (interacts with) 6622", "name" : "1410 (interacts with) 6622", "interaction" : "interacts with", "SUID" : 72926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72922", "source" : "821", "target" : "2309", "shared_name" : "1410 (interacts with) 3316", "name" : "1410 (interacts with) 3316", "interaction" : "interacts with", "SUID" : 72922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72918", "source" : "821", "target" : "1505", "shared_name" : "1410 (interacts with) 26353", "name" : "1410 (interacts with) 26353", "interaction" : "interacts with", "SUID" : 72918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73058", "source" : "817", "target" : "4521", "shared_name" : "5728 (interacts with) 5894", "name" : "5728 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 73058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73054", "source" : "817", "target" : "637", "shared_name" : "5728 (interacts with) 6654", "name" : "5728 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 73054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73050", "source" : "817", "target" : "981", "shared_name" : "5728 (interacts with) 7157", "name" : "5728 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 73050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73046", "source" : "817", "target" : "3305", "shared_name" : "5728 (interacts with) 7040", "name" : "5728 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 73046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73042", "source" : "817", "target" : "2153", "shared_name" : "5728 (interacts with) 7042", "name" : "5728 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 73042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73038", "source" : "817", "target" : "3409", "shared_name" : "5728 (interacts with) 7043", "name" : "5728 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 73038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73034", "source" : "817", "target" : "2793", "shared_name" : "5728 (interacts with) 8894", "name" : "5728 (interacts with) 8894", "interaction" : "interacts with", "SUID" : 73034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73030", "source" : "817", "target" : "4981", "shared_name" : "5728 (interacts with) 6774", "name" : "5728 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 73030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73026", "source" : "817", "target" : "569", "shared_name" : "5728 (interacts with) 7048", "name" : "5728 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 73026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73022", "source" : "817", "target" : "553", "shared_name" : "5728 (interacts with) 7248", "name" : "5728 (interacts with) 7248", "interaction" : "interacts with", "SUID" : 73022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73018", "source" : "817", "target" : "4149", "shared_name" : "5728 (interacts with) 8893", "name" : "5728 (interacts with) 8893", "interaction" : "interacts with", "SUID" : 73018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73014", "source" : "817", "target" : "1285", "shared_name" : "5728 (interacts with) 7249", "name" : "5728 (interacts with) 7249", "interaction" : "interacts with", "SUID" : 73014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73010", "source" : "817", "target" : "4901", "shared_name" : "5728 (interacts with) 22983", "name" : "5728 (interacts with) 22983", "interaction" : "interacts with", "SUID" : 73010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73006", "source" : "817", "target" : "2717", "shared_name" : "5728 (interacts with) 10397", "name" : "5728 (interacts with) 10397", "interaction" : "interacts with", "SUID" : 73006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73002", "source" : "817", "target" : "6129", "shared_name" : "5728 (interacts with) 2263", "name" : "5728 (interacts with) 2263", "interaction" : "interacts with", "SUID" : 73002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72998", "source" : "817", "target" : "4541", "shared_name" : "5728 (interacts with) 65018", "name" : "5728 (interacts with) 65018", "interaction" : "interacts with", "SUID" : 72998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72994", "source" : "817", "target" : "5629", "shared_name" : "5728 (interacts with) 1959", "name" : "5728 (interacts with) 1959", "interaction" : "interacts with", "SUID" : 72994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72990", "source" : "817", "target" : "5225", "shared_name" : "5728 (interacts with) 5290", "name" : "5728 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 72990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72986", "source" : "817", "target" : "2081", "shared_name" : "5728 (interacts with) 5468", "name" : "5728 (interacts with) 5468", "interaction" : "interacts with", "SUID" : 72986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72982", "source" : "817", "target" : "5073", "shared_name" : "5728 (interacts with) 7305", "name" : "5728 (interacts with) 7305", "interaction" : "interacts with", "SUID" : 72982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72978", "source" : "817", "target" : "2509", "shared_name" : "5728 (interacts with) 7204", "name" : "5728 (interacts with) 7204", "interaction" : "interacts with", "SUID" : 72978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72974", "source" : "817", "target" : "725", "shared_name" : "5728 (interacts with) 54209", "name" : "5728 (interacts with) 54209", "interaction" : "interacts with", "SUID" : 72974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72970", "source" : "817", "target" : "2969", "shared_name" : "5728 (interacts with) 8867", "name" : "5728 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 72970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "72966", "source" : "817", "target" : "1069", "shared_name" : "5728 (interacts with) 5879", "name" : "5728 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 72966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73078", "source" : "813", "target" : "1985", "shared_name" : "3447 (interacts with) 3456", "name" : "3447 (interacts with) 3456", "interaction" : "interacts with", "SUID" : 73078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73074", "source" : "813", "target" : "805", "shared_name" : "3447 (interacts with) 6772", "name" : "3447 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 73074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73070", "source" : "813", "target" : "1701", "shared_name" : "3447 (interacts with) 5777", "name" : "3447 (interacts with) 5777", "interaction" : "interacts with", "SUID" : 73070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73066", "source" : "813", "target" : "509", "shared_name" : "3447 (interacts with) 3661", "name" : "3447 (interacts with) 3661", "interaction" : "interacts with", "SUID" : 73066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73062", "source" : "813", "target" : "3401", "shared_name" : "3447 (interacts with) 3659", "name" : "3447 (interacts with) 3659", "interaction" : "interacts with", "SUID" : 73062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73146", "source" : "809", "target" : "5869", "shared_name" : "2335 (interacts with) 59", "name" : "2335 (interacts with) 59", "interaction" : "interacts with", "SUID" : 73146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73142", "source" : "809", "target" : "637", "shared_name" : "2335 (interacts with) 6654", "name" : "2335 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 73142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73138", "source" : "809", "target" : "449", "shared_name" : "2335 (interacts with) 55532", "name" : "2335 (interacts with) 55532", "interaction" : "interacts with", "SUID" : 73138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73134", "source" : "809", "target" : "4361", "shared_name" : "2335 (interacts with) 22906", "name" : "2335 (interacts with) 22906", "interaction" : "interacts with", "SUID" : 73134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73130", "source" : "809", "target" : "4521", "shared_name" : "2335 (interacts with) 5894", "name" : "2335 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 73130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73126", "source" : "809", "target" : "3841", "shared_name" : "2335 (interacts with) 9444", "name" : "2335 (interacts with) 9444", "interaction" : "interacts with", "SUID" : 73126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73122", "source" : "809", "target" : "5081", "shared_name" : "2335 (interacts with) 5594", "name" : "2335 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 73122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73118", "source" : "809", "target" : "3577", "shared_name" : "2335 (interacts with) 5605", "name" : "2335 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 73118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73114", "source" : "809", "target" : "5361", "shared_name" : "2335 (interacts with) 5604", "name" : "2335 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 73114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73110", "source" : "809", "target" : "3361", "shared_name" : "2335 (interacts with) 4000", "name" : "2335 (interacts with) 4000", "interaction" : "interacts with", "SUID" : 73110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73106", "source" : "809", "target" : "3569", "shared_name" : "2335 (interacts with) 4893", "name" : "2335 (interacts with) 4893", "interaction" : "interacts with", "SUID" : 73106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73102", "source" : "809", "target" : "973", "shared_name" : "2335 (interacts with) 5595", "name" : "2335 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 73102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73098", "source" : "809", "target" : "3429", "shared_name" : "2335 (interacts with) 3674", "name" : "2335 (interacts with) 3674", "interaction" : "interacts with", "SUID" : 73098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73094", "source" : "809", "target" : "3573", "shared_name" : "2335 (interacts with) 3845", "name" : "2335 (interacts with) 3845", "interaction" : "interacts with", "SUID" : 73094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73090", "source" : "809", "target" : "3685", "shared_name" : "2335 (interacts with) 3265", "name" : "2335 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 73090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73086", "source" : "809", "target" : "3201", "shared_name" : "2335 (interacts with) 1277", "name" : "2335 (interacts with) 1277", "interaction" : "interacts with", "SUID" : 73086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73082", "source" : "809", "target" : "2101", "shared_name" : "2335 (interacts with) 3486", "name" : "2335 (interacts with) 3486", "interaction" : "interacts with", "SUID" : 73082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73218", "source" : "805", "target" : "4065", "shared_name" : "6772 (interacts with) 7124", "name" : "6772 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 73218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73214", "source" : "805", "target" : "3305", "shared_name" : "6772 (interacts with) 7040", "name" : "6772 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 73214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73210", "source" : "805", "target" : "2153", "shared_name" : "6772 (interacts with) 7042", "name" : "6772 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 73210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73206", "source" : "805", "target" : "3409", "shared_name" : "6772 (interacts with) 7043", "name" : "6772 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 73206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73202", "source" : "805", "target" : "593", "shared_name" : "6772 (interacts with) 8743", "name" : "6772 (interacts with) 8743", "interaction" : "interacts with", "SUID" : 73202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73198", "source" : "805", "target" : "981", "shared_name" : "6772 (interacts with) 7157", "name" : "6772 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 73198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73194", "source" : "805", "target" : "993", "shared_name" : "6772 (interacts with) 801", "name" : "6772 (interacts with) 801", "interaction" : "interacts with", "SUID" : 73194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73190", "source" : "805", "target" : "1201", "shared_name" : "6772 (interacts with) 805", "name" : "6772 (interacts with) 805", "interaction" : "interacts with", "SUID" : 73190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73186", "source" : "805", "target" : "1241", "shared_name" : "6772 (interacts with) 808", "name" : "6772 (interacts with) 808", "interaction" : "interacts with", "SUID" : 73186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73182", "source" : "805", "target" : "1845", "shared_name" : "6772 (interacts with) 836", "name" : "6772 (interacts with) 836", "interaction" : "interacts with", "SUID" : 73182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73178", "source" : "805", "target" : "1405", "shared_name" : "6772 (interacts with) 998", "name" : "6772 (interacts with) 998", "interaction" : "interacts with", "SUID" : 73178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73174", "source" : "805", "target" : "4681", "shared_name" : "6772 (interacts with) 4843", "name" : "6772 (interacts with) 4843", "interaction" : "interacts with", "SUID" : 73174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73170", "source" : "805", "target" : "2841", "shared_name" : "6772 (interacts with) 7098", "name" : "6772 (interacts with) 7098", "interaction" : "interacts with", "SUID" : 73170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73166", "source" : "805", "target" : "3717", "shared_name" : "6772 (interacts with) 3593", "name" : "6772 (interacts with) 3593", "interaction" : "interacts with", "SUID" : 73166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73162", "source" : "805", "target" : "877", "shared_name" : "6772 (interacts with) 7341", "name" : "6772 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 73162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73158", "source" : "805", "target" : "857", "shared_name" : "6772 (interacts with) 11274", "name" : "6772 (interacts with) 11274", "interaction" : "interacts with", "SUID" : 73158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73154", "source" : "805", "target" : "5297", "shared_name" : "6772 (interacts with) 6775", "name" : "6772 (interacts with) 6775", "interaction" : "interacts with", "SUID" : 73154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73150", "source" : "805", "target" : "4981", "shared_name" : "6772 (interacts with) 6774", "name" : "6772 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 73150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73374", "source" : "801", "target" : "6149", "shared_name" : "1376 (interacts with) 335", "name" : "1376 (interacts with) 335", "interaction" : "interacts with", "SUID" : 73374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73370", "source" : "801", "target" : "4941", "shared_name" : "1376 (interacts with) 6342", "name" : "1376 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 73370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73366", "source" : "801", "target" : "3337", "shared_name" : "1376 (interacts with) 2639", "name" : "1376 (interacts with) 2639", "interaction" : "interacts with", "SUID" : 73366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73362", "source" : "801", "target" : "321", "shared_name" : "1376 (interacts with) 1593", "name" : "1376 (interacts with) 1593", "interaction" : "interacts with", "SUID" : 73362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73358", "source" : "801", "target" : "4745", "shared_name" : "1376 (interacts with) 35", "name" : "1376 (interacts with) 35", "interaction" : "interacts with", "SUID" : 73358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73354", "source" : "801", "target" : "681", "shared_name" : "1376 (interacts with) 6646", "name" : "1376 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 73354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73350", "source" : "801", "target" : "409", "shared_name" : "1376 (interacts with) 10558", "name" : "1376 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 73350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73346", "source" : "801", "target" : "3425", "shared_name" : "1376 (interacts with) 8803", "name" : "1376 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 73346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73342", "source" : "801", "target" : "2925", "shared_name" : "1376 (interacts with) 8802", "name" : "1376 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 73342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73338", "source" : "801", "target" : "5305", "shared_name" : "1376 (interacts with) 6901", "name" : "1376 (interacts with) 6901", "interaction" : "interacts with", "SUID" : 73338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73334", "source" : "801", "target" : "3177", "shared_name" : "1376 (interacts with) 5321", "name" : "1376 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 73334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73330", "source" : "801", "target" : "2853", "shared_name" : "1376 (interacts with) 8398", "name" : "1376 (interacts with) 8398", "interaction" : "interacts with", "SUID" : 73330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73326", "source" : "801", "target" : "3893", "shared_name" : "1376 (interacts with) 151056", "name" : "1376 (interacts with) 151056", "interaction" : "interacts with", "SUID" : 73326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73322", "source" : "801", "target" : "3461", "shared_name" : "1376 (interacts with) 5538", "name" : "1376 (interacts with) 5538", "interaction" : "interacts with", "SUID" : 73322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73318", "source" : "801", "target" : "385", "shared_name" : "1376 (interacts with) 5319", "name" : "1376 (interacts with) 5319", "interaction" : "interacts with", "SUID" : 73318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73314", "source" : "801", "target" : "3421", "shared_name" : "1376 (interacts with) 4967", "name" : "1376 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 73314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73310", "source" : "801", "target" : "1277", "shared_name" : "1376 (interacts with) 79143", "name" : "1376 (interacts with) 79143", "interaction" : "interacts with", "SUID" : 73310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73306", "source" : "801", "target" : "1673", "shared_name" : "1376 (interacts with) 138050", "name" : "1376 (interacts with) 138050", "interaction" : "interacts with", "SUID" : 73306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73302", "source" : "801", "target" : "1849", "shared_name" : "1376 (interacts with) 26275", "name" : "1376 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 73302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73298", "source" : "801", "target" : "1097", "shared_name" : "1376 (interacts with) 79718", "name" : "1376 (interacts with) 79718", "interaction" : "interacts with", "SUID" : 73298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73294", "source" : "801", "target" : "2897", "shared_name" : "1376 (interacts with) 1737", "name" : "1376 (interacts with) 1737", "interaction" : "interacts with", "SUID" : 73294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73290", "source" : "801", "target" : "1489", "shared_name" : "1376 (interacts with) 1738", "name" : "1376 (interacts with) 1738", "interaction" : "interacts with", "SUID" : 73290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73286", "source" : "801", "target" : "1981", "shared_name" : "1376 (interacts with) 339983", "name" : "1376 (interacts with) 339983", "interaction" : "interacts with", "SUID" : 73286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73282", "source" : "801", "target" : "2957", "shared_name" : "1376 (interacts with) 5465", "name" : "1376 (interacts with) 5465", "interaction" : "interacts with", "SUID" : 73282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73278", "source" : "801", "target" : "5797", "shared_name" : "1376 (interacts with) 3030", "name" : "1376 (interacts with) 3030", "interaction" : "interacts with", "SUID" : 73278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73274", "source" : "801", "target" : "4169", "shared_name" : "1376 (interacts with) 10993", "name" : "1376 (interacts with) 10993", "interaction" : "interacts with", "SUID" : 73274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73270", "source" : "801", "target" : "2669", "shared_name" : "1376 (interacts with) 9197", "name" : "1376 (interacts with) 9197", "interaction" : "interacts with", "SUID" : 73270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73266", "source" : "801", "target" : "5049", "shared_name" : "1376 (interacts with) 6697", "name" : "1376 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 73266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73262", "source" : "801", "target" : "1721", "shared_name" : "1376 (interacts with) 51807", "name" : "1376 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 73262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73258", "source" : "801", "target" : "1893", "shared_name" : "1376 (interacts with) 1387", "name" : "1376 (interacts with) 1387", "interaction" : "interacts with", "SUID" : 73258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73254", "source" : "801", "target" : "2881", "shared_name" : "1376 (interacts with) 5160", "name" : "1376 (interacts with) 5160", "interaction" : "interacts with", "SUID" : 73254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73250", "source" : "801", "target" : "1485", "shared_name" : "1376 (interacts with) 8050", "name" : "1376 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 73250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73246", "source" : "801", "target" : "781", "shared_name" : "1376 (interacts with) 4860", "name" : "1376 (interacts with) 4860", "interaction" : "interacts with", "SUID" : 73246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73242", "source" : "801", "target" : "3501", "shared_name" : "1376 (interacts with) 5831", "name" : "1376 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 73242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73238", "source" : "801", "target" : "4045", "shared_name" : "1376 (interacts with) 29920", "name" : "1376 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 73238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73234", "source" : "801", "target" : "1437", "shared_name" : "1376 (interacts with) 80025", "name" : "1376 (interacts with) 80025", "interaction" : "interacts with", "SUID" : 73234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73230", "source" : "801", "target" : "489", "shared_name" : "1376 (interacts with) 1629", "name" : "1376 (interacts with) 1629", "interaction" : "interacts with", "SUID" : 73230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73226", "source" : "801", "target" : "3681", "shared_name" : "1376 (interacts with) 1892", "name" : "1376 (interacts with) 1892", "interaction" : "interacts with", "SUID" : 73226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73222", "source" : "801", "target" : "6093", "shared_name" : "1376 (interacts with) 953", "name" : "1376 (interacts with) 953", "interaction" : "interacts with", "SUID" : 73222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73594", "source" : "793", "target" : "501", "shared_name" : "137682 (interacts with) 65993", "name" : "137682 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 73594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73590", "source" : "793", "target" : "4869", "shared_name" : "137682 (interacts with) 92935", "name" : "137682 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 73590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73586", "source" : "793", "target" : "4621", "shared_name" : "137682 (interacts with) 57038", "name" : "137682 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 73586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73582", "source" : "793", "target" : "5085", "shared_name" : "137682 (interacts with) 56652", "name" : "137682 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 73582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73578", "source" : "793", "target" : "2105", "shared_name" : "137682 (interacts with) 56945", "name" : "137682 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 73578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73574", "source" : "793", "target" : "4757", "shared_name" : "137682 (interacts with) 9997", "name" : "137682 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 73574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73570", "source" : "793", "target" : "2021", "shared_name" : "137682 (interacts with) 5428", "name" : "137682 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 73570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73566", "source" : "793", "target" : "713", "shared_name" : "137682 (interacts with) 7019", "name" : "137682 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 73566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73562", "source" : "793", "target" : "5737", "shared_name" : "137682 (interacts with) 84340", "name" : "137682 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 73562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73558", "source" : "793", "target" : "1369", "shared_name" : "137682 (interacts with) 27247", "name" : "137682 (interacts with) 27247", "interaction" : "interacts with", "SUID" : 73558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73554", "source" : "793", "target" : "4141", "shared_name" : "137682 (interacts with) 617", "name" : "137682 (interacts with) 617", "interaction" : "interacts with", "SUID" : 73554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73550", "source" : "793", "target" : "5985", "shared_name" : "137682 (interacts with) 27235", "name" : "137682 (interacts with) 27235", "interaction" : "interacts with", "SUID" : 73550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73546", "source" : "793", "target" : "4501", "shared_name" : "137682 (interacts with) 25821", "name" : "137682 (interacts with) 25821", "interaction" : "interacts with", "SUID" : 73546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73542", "source" : "793", "target" : "2477", "shared_name" : "137682 (interacts with) 57107", "name" : "137682 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 73542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73538", "source" : "793", "target" : "4409", "shared_name" : "137682 (interacts with) 6341", "name" : "137682 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 73538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73534", "source" : "793", "target" : "2609", "shared_name" : "137682 (interacts with) 29960", "name" : "137682 (interacts with) 29960", "interaction" : "interacts with", "SUID" : 73534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73530", "source" : "793", "target" : "4693", "shared_name" : "137682 (interacts with) 6301", "name" : "137682 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 73530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73526", "source" : "793", "target" : "477", "shared_name" : "137682 (interacts with) 51021", "name" : "137682 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 73526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73522", "source" : "793", "target" : "6001", "shared_name" : "137682 (interacts with) 55157", "name" : "137682 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 73522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73518", "source" : "793", "target" : "1561", "shared_name" : "137682 (interacts with) 51117", "name" : "137682 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 73518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73514", "source" : "793", "target" : "1929", "shared_name" : "137682 (interacts with) 51218", "name" : "137682 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 73514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73510", "source" : "793", "target" : "6073", "shared_name" : "137682 (interacts with) 92170", "name" : "137682 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 73510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73506", "source" : "793", "target" : "1197", "shared_name" : "137682 (interacts with) 79587", "name" : "137682 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 73506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73502", "source" : "793", "target" : "2345", "shared_name" : "137682 (interacts with) 200205", "name" : "137682 (interacts with) 200205", "interaction" : "interacts with", "SUID" : 73502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73498", "source" : "793", "target" : "5833", "shared_name" : "137682 (interacts with) 4726", "name" : "137682 (interacts with) 4726", "interaction" : "interacts with", "SUID" : 73498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73494", "source" : "793", "target" : "5821", "shared_name" : "137682 (interacts with) 4724", "name" : "137682 (interacts with) 4724", "interaction" : "interacts with", "SUID" : 73494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73490", "source" : "793", "target" : "2757", "shared_name" : "137682 (interacts with) 51079", "name" : "137682 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 73490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73486", "source" : "793", "target" : "5857", "shared_name" : "137682 (interacts with) 4694", "name" : "137682 (interacts with) 4694", "interaction" : "interacts with", "SUID" : 73486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73482", "source" : "793", "target" : "1573", "shared_name" : "137682 (interacts with) 4723", "name" : "137682 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 73482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73478", "source" : "793", "target" : "3617", "shared_name" : "137682 (interacts with) 4704", "name" : "137682 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 73478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73474", "source" : "793", "target" : "4945", "shared_name" : "137682 (interacts with) 4722", "name" : "137682 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 73474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73470", "source" : "793", "target" : "5553", "shared_name" : "137682 (interacts with) 55967", "name" : "137682 (interacts with) 55967", "interaction" : "interacts with", "SUID" : 73470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73466", "source" : "793", "target" : "4101", "shared_name" : "137682 (interacts with) 65260", "name" : "137682 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 73466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73462", "source" : "793", "target" : "4069", "shared_name" : "137682 (interacts with) 374291", "name" : "137682 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 73462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73458", "source" : "793", "target" : "5853", "shared_name" : "137682 (interacts with) 4709", "name" : "137682 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 73458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73454", "source" : "793", "target" : "1337", "shared_name" : "137682 (interacts with) 55863", "name" : "137682 (interacts with) 55863", "interaction" : "interacts with", "SUID" : 73454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73450", "source" : "793", "target" : "1661", "shared_name" : "137682 (interacts with) 91942", "name" : "137682 (interacts with) 91942", "interaction" : "interacts with", "SUID" : 73450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73446", "source" : "793", "target" : "4017", "shared_name" : "137682 (interacts with) 4719", "name" : "137682 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 73446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73442", "source" : "793", "target" : "2689", "shared_name" : "137682 (interacts with) 4715", "name" : "137682 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 73442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73438", "source" : "793", "target" : "4061", "shared_name" : "137682 (interacts with) 4705", "name" : "137682 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 73438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73434", "source" : "793", "target" : "5845", "shared_name" : "137682 (interacts with) 4714", "name" : "137682 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 73434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73430", "source" : "793", "target" : "2741", "shared_name" : "137682 (interacts with) 4695", "name" : "137682 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 73430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73426", "source" : "793", "target" : "889", "shared_name" : "137682 (interacts with) 80224", "name" : "137682 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 73426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73422", "source" : "793", "target" : "2337", "shared_name" : "137682 (interacts with) 28976", "name" : "137682 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 73422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73418", "source" : "793", "target" : "3761", "shared_name" : "137682 (interacts with) 25915", "name" : "137682 (interacts with) 25915", "interaction" : "interacts with", "SUID" : 73418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73414", "source" : "793", "target" : "1869", "shared_name" : "137682 (interacts with) 4729", "name" : "137682 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 73414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73410", "source" : "793", "target" : "2753", "shared_name" : "137682 (interacts with) 4720", "name" : "137682 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 73410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73406", "source" : "793", "target" : "2109", "shared_name" : "137682 (interacts with) 51103", "name" : "137682 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 73406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73402", "source" : "793", "target" : "3973", "shared_name" : "137682 (interacts with) 55572", "name" : "137682 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 73402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73398", "source" : "793", "target" : "2801", "shared_name" : "137682 (interacts with) 4700", "name" : "137682 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 73398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73394", "source" : "793", "target" : "2009", "shared_name" : "137682 (interacts with) 79133", "name" : "137682 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 73394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73390", "source" : "793", "target" : "2797", "shared_name" : "137682 (interacts with) 4728", "name" : "137682 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 73390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73386", "source" : "793", "target" : "2285", "shared_name" : "137682 (interacts with) 51300", "name" : "137682 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 73386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73382", "source" : "793", "target" : "5505", "shared_name" : "137682 (interacts with) 29078", "name" : "137682 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 73382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73378", "source" : "793", "target" : "4489", "shared_name" : "137682 (interacts with) 2222", "name" : "137682 (interacts with) 2222", "interaction" : "interacts with", "SUID" : 73378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73834", "source" : "789", "target" : "3685", "shared_name" : "1616 (interacts with) 3265", "name" : "1616 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 73834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73830", "source" : "789", "target" : "973", "shared_name" : "1616 (interacts with) 5595", "name" : "1616 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 73830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73826", "source" : "789", "target" : "5081", "shared_name" : "1616 (interacts with) 5594", "name" : "1616 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 73826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73822", "source" : "789", "target" : "3017", "shared_name" : "1616 (interacts with) 4790", "name" : "1616 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 73822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73818", "source" : "789", "target" : "5361", "shared_name" : "1616 (interacts with) 5604", "name" : "1616 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 73818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73814", "source" : "789", "target" : "4949", "shared_name" : "1616 (interacts with) 5970", "name" : "1616 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 73814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73810", "source" : "789", "target" : "4521", "shared_name" : "1616 (interacts with) 5894", "name" : "1616 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 73810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73806", "source" : "789", "target" : "4065", "shared_name" : "1616 (interacts with) 7124", "name" : "1616 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 73806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73802", "source" : "789", "target" : "1069", "shared_name" : "1616 (interacts with) 5879", "name" : "1616 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 73802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73798", "source" : "789", "target" : "2153", "shared_name" : "1616 (interacts with) 7042", "name" : "1616 (interacts with) 7042", "interaction" : "interacts with", "SUID" : 73798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73794", "source" : "789", "target" : "3409", "shared_name" : "1616 (interacts with) 7043", "name" : "1616 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 73794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73790", "source" : "789", "target" : "3305", "shared_name" : "1616 (interacts with) 7040", "name" : "1616 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 73790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73786", "source" : "789", "target" : "5149", "shared_name" : "1616 (interacts with) 5058", "name" : "1616 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 73786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73782", "source" : "789", "target" : "5037", "shared_name" : "1616 (interacts with) 5515", "name" : "1616 (interacts with) 5515", "interaction" : "interacts with", "SUID" : 73782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73778", "source" : "789", "target" : "5965", "shared_name" : "1616 (interacts with) 596", "name" : "1616 (interacts with) 596", "interaction" : "interacts with", "SUID" : 73778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73774", "source" : "789", "target" : "3577", "shared_name" : "1616 (interacts with) 5605", "name" : "1616 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 73774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73770", "source" : "789", "target" : "805", "shared_name" : "1616 (interacts with) 6772", "name" : "1616 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 73770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73766", "source" : "789", "target" : "5817", "shared_name" : "1616 (interacts with) 1950", "name" : "1616 (interacts with) 1950", "interaction" : "interacts with", "SUID" : 73766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73762", "source" : "789", "target" : "1845", "shared_name" : "1616 (interacts with) 836", "name" : "1616 (interacts with) 836", "interaction" : "interacts with", "SUID" : 73762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73758", "source" : "789", "target" : "5313", "shared_name" : "1616 (interacts with) 6197", "name" : "1616 (interacts with) 6197", "interaction" : "interacts with", "SUID" : 73758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73754", "source" : "789", "target" : "1973", "shared_name" : "1616 (interacts with) 6709", "name" : "1616 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 73754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73750", "source" : "789", "target" : "1405", "shared_name" : "1616 (interacts with) 998", "name" : "1616 (interacts with) 998", "interaction" : "interacts with", "SUID" : 73750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73746", "source" : "789", "target" : "3177", "shared_name" : "1616 (interacts with) 5321", "name" : "1616 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 73746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73742", "source" : "789", "target" : "5333", "shared_name" : "1616 (interacts with) 5591", "name" : "1616 (interacts with) 5591", "interaction" : "interacts with", "SUID" : 73742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73738", "source" : "789", "target" : "829", "shared_name" : "1616 (interacts with) 8772", "name" : "1616 (interacts with) 8772", "interaction" : "interacts with", "SUID" : 73738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73734", "source" : "789", "target" : "3721", "shared_name" : "1616 (interacts with) 2934", "name" : "1616 (interacts with) 2934", "interaction" : "interacts with", "SUID" : 73734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73730", "source" : "789", "target" : "3041", "shared_name" : "1616 (interacts with) 5663", "name" : "1616 (interacts with) 5663", "interaction" : "interacts with", "SUID" : 73730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73726", "source" : "789", "target" : "5941", "shared_name" : "1616 (interacts with) 5914", "name" : "1616 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 73726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73722", "source" : "789", "target" : "3361", "shared_name" : "1616 (interacts with) 4000", "name" : "1616 (interacts with) 4000", "interaction" : "interacts with", "SUID" : 73722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73718", "source" : "789", "target" : "3021", "shared_name" : "1616 (interacts with) 84823", "name" : "1616 (interacts with) 84823", "interaction" : "interacts with", "SUID" : 73718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73714", "source" : "789", "target" : "3937", "shared_name" : "1616 (interacts with) 4001", "name" : "1616 (interacts with) 4001", "interaction" : "interacts with", "SUID" : 73714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73710", "source" : "789", "target" : "2309", "shared_name" : "1616 (interacts with) 3316", "name" : "1616 (interacts with) 3316", "interaction" : "interacts with", "SUID" : 73710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73706", "source" : "789", "target" : "2905", "shared_name" : "1616 (interacts with) 5664", "name" : "1616 (interacts with) 5664", "interaction" : "interacts with", "SUID" : 73706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73702", "source" : "789", "target" : "4077", "shared_name" : "1616 (interacts with) 71", "name" : "1616 (interacts with) 71", "interaction" : "interacts with", "SUID" : 73702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73698", "source" : "789", "target" : "6101", "shared_name" : "1616 (interacts with) 5582", "name" : "1616 (interacts with) 5582", "interaction" : "interacts with", "SUID" : 73698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73694", "source" : "789", "target" : "877", "shared_name" : "1616 (interacts with) 7341", "name" : "1616 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 73694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73690", "source" : "789", "target" : "5013", "shared_name" : "1616 (interacts with) 23411", "name" : "1616 (interacts with) 23411", "interaction" : "interacts with", "SUID" : 73690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73686", "source" : "789", "target" : "5781", "shared_name" : "1616 (interacts with) 6672", "name" : "1616 (interacts with) 6672", "interaction" : "interacts with", "SUID" : 73686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73682", "source" : "789", "target" : "2069", "shared_name" : "1616 (interacts with) 84106", "name" : "1616 (interacts with) 84106", "interaction" : "interacts with", "SUID" : 73682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73678", "source" : "789", "target" : "2909", "shared_name" : "1616 (interacts with) 23126", "name" : "1616 (interacts with) 23126", "interaction" : "interacts with", "SUID" : 73678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73674", "source" : "789", "target" : "3081", "shared_name" : "1616 (interacts with) 546", "name" : "1616 (interacts with) 546", "interaction" : "interacts with", "SUID" : 73674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73670", "source" : "789", "target" : "4913", "shared_name" : "1616 (interacts with) 23394", "name" : "1616 (interacts with) 23394", "interaction" : "interacts with", "SUID" : 73670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73666", "source" : "789", "target" : "2913", "shared_name" : "1616 (interacts with) 27107", "name" : "1616 (interacts with) 27107", "interaction" : "interacts with", "SUID" : 73666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73662", "source" : "789", "target" : "5449", "shared_name" : "1616 (interacts with) 923", "name" : "1616 (interacts with) 923", "interaction" : "interacts with", "SUID" : 73662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73658", "source" : "789", "target" : "825", "shared_name" : "1616 (interacts with) 25942", "name" : "1616 (interacts with) 25942", "interaction" : "interacts with", "SUID" : 73658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73654", "source" : "789", "target" : "2813", "shared_name" : "1616 (interacts with) 5079", "name" : "1616 (interacts with) 5079", "interaction" : "interacts with", "SUID" : 73654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73650", "source" : "789", "target" : "5681", "shared_name" : "1616 (interacts with) 3315", "name" : "1616 (interacts with) 3315", "interaction" : "interacts with", "SUID" : 73650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73646", "source" : "789", "target" : "4329", "shared_name" : "1616 (interacts with) 11315", "name" : "1616 (interacts with) 11315", "interaction" : "interacts with", "SUID" : 73646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73642", "source" : "789", "target" : "4769", "shared_name" : "1616 (interacts with) 7132", "name" : "1616 (interacts with) 7132", "interaction" : "interacts with", "SUID" : 73642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73638", "source" : "789", "target" : "569", "shared_name" : "1616 (interacts with) 7048", "name" : "1616 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 73638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73634", "source" : "789", "target" : "2625", "shared_name" : "1616 (interacts with) 3065", "name" : "1616 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 73634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73630", "source" : "789", "target" : "3417", "shared_name" : "1616 (interacts with) 5371", "name" : "1616 (interacts with) 5371", "interaction" : "interacts with", "SUID" : 73630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73626", "source" : "789", "target" : "1809", "shared_name" : "1616 (interacts with) 6548", "name" : "1616 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 73626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73622", "source" : "789", "target" : "873", "shared_name" : "1616 (interacts with) 1385", "name" : "1616 (interacts with) 1385", "interaction" : "interacts with", "SUID" : 73622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73618", "source" : "789", "target" : "981", "shared_name" : "1616 (interacts with) 7157", "name" : "1616 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 73618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73614", "source" : "789", "target" : "2389", "shared_name" : "1616 (interacts with) 6925", "name" : "1616 (interacts with) 6925", "interaction" : "interacts with", "SUID" : 73614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73610", "source" : "789", "target" : "4533", "shared_name" : "1616 (interacts with) 4089", "name" : "1616 (interacts with) 4089", "interaction" : "interacts with", "SUID" : 73610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73606", "source" : "789", "target" : "1233", "shared_name" : "1616 (interacts with) 355", "name" : "1616 (interacts with) 355", "interaction" : "interacts with", "SUID" : 73606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73602", "source" : "789", "target" : "1893", "shared_name" : "1616 (interacts with) 1387", "name" : "1616 (interacts with) 1387", "interaction" : "interacts with", "SUID" : 73602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73598", "source" : "789", "target" : "1293", "shared_name" : "1616 (interacts with) 2908", "name" : "1616 (interacts with) 2908", "interaction" : "interacts with", "SUID" : 73598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73918", "source" : "785", "target" : "5081", "shared_name" : "1958 (interacts with) 5594", "name" : "1958 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 73918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73914", "source" : "785", "target" : "973", "shared_name" : "1958 (interacts with) 5595", "name" : "1958 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 73914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73910", "source" : "785", "target" : "5361", "shared_name" : "1958 (interacts with) 5604", "name" : "1958 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 73910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73906", "source" : "785", "target" : "3685", "shared_name" : "1958 (interacts with) 3265", "name" : "1958 (interacts with) 3265", "interaction" : "interacts with", "SUID" : 73906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73902", "source" : "785", "target" : "3805", "shared_name" : "1958 (interacts with) 5621", "name" : "1958 (interacts with) 5621", "interaction" : "interacts with", "SUID" : 73902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73898", "source" : "785", "target" : "4521", "shared_name" : "1958 (interacts with) 5894", "name" : "1958 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 73898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73894", "source" : "785", "target" : "3577", "shared_name" : "1958 (interacts with) 5605", "name" : "1958 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 73894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73890", "source" : "785", "target" : "3745", "shared_name" : "1958 (interacts with) 4803", "name" : "1958 (interacts with) 4803", "interaction" : "interacts with", "SUID" : 73890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73886", "source" : "785", "target" : "5317", "shared_name" : "1958 (interacts with) 25939", "name" : "1958 (interacts with) 25939", "interaction" : "interacts with", "SUID" : 73886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73882", "source" : "785", "target" : "1697", "shared_name" : "1958 (interacts with) 8818", "name" : "1958 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 73882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73878", "source" : "785", "target" : "5629", "shared_name" : "1958 (interacts with) 1959", "name" : "1958 (interacts with) 1959", "interaction" : "interacts with", "SUID" : 73878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73874", "source" : "785", "target" : "4785", "shared_name" : "1958 (interacts with) 1282", "name" : "1958 (interacts with) 1282", "interaction" : "interacts with", "SUID" : 73874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73870", "source" : "785", "target" : "4789", "shared_name" : "1958 (interacts with) 1284", "name" : "1958 (interacts with) 1284", "interaction" : "interacts with", "SUID" : 73870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73866", "source" : "785", "target" : "4937", "shared_name" : "1958 (interacts with) 1555", "name" : "1958 (interacts with) 1555", "interaction" : "interacts with", "SUID" : 73866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73862", "source" : "785", "target" : "2901", "shared_name" : "1958 (interacts with) 6647", "name" : "1958 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 73862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73858", "source" : "785", "target" : "1233", "shared_name" : "1958 (interacts with) 355", "name" : "1958 (interacts with) 355", "interaction" : "interacts with", "SUID" : 73858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73854", "source" : "785", "target" : "2625", "shared_name" : "1958 (interacts with) 3065", "name" : "1958 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 73854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73850", "source" : "785", "target" : "805", "shared_name" : "1958 (interacts with) 6772", "name" : "1958 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 73850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73846", "source" : "785", "target" : "5461", "shared_name" : "1958 (interacts with) 4665", "name" : "1958 (interacts with) 4665", "interaction" : "interacts with", "SUID" : 73846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73842", "source" : "785", "target" : "817", "shared_name" : "1958 (interacts with) 5728", "name" : "1958 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 73842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73838", "source" : "785", "target" : "3701", "shared_name" : "1958 (interacts with) 4664", "name" : "1958 (interacts with) 4664", "interaction" : "interacts with", "SUID" : 73838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73942", "source" : "781", "target" : "4085", "shared_name" : "4860 (interacts with) 55699", "name" : "4860 (interacts with) 55699", "interaction" : "interacts with", "SUID" : 73942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73938", "source" : "781", "target" : "4253", "shared_name" : "4860 (interacts with) 84706", "name" : "4860 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 73938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73934", "source" : "781", "target" : "1013", "shared_name" : "4860 (interacts with) 6898", "name" : "4860 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 73934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73930", "source" : "781", "target" : "1669", "shared_name" : "4860 (interacts with) 6390", "name" : "4860 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 73930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73926", "source" : "781", "target" : "5113", "shared_name" : "4860 (interacts with) 7084", "name" : "4860 (interacts with) 7084", "interaction" : "interacts with", "SUID" : 73926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73922", "source" : "781", "target" : "1633", "shared_name" : "4860 (interacts with) 57731", "name" : "4860 (interacts with) 57731", "interaction" : "interacts with", "SUID" : 73922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73950", "source" : "777", "target" : "2581", "shared_name" : "8030 (interacts with) 7170", "name" : "8030 (interacts with) 7170", "interaction" : "interacts with", "SUID" : 73950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73946", "source" : "777", "target" : "4289", "shared_name" : "8030 (interacts with) 90678", "name" : "8030 (interacts with) 90678", "interaction" : "interacts with", "SUID" : 73946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73998", "source" : "773", "target" : "2053", "shared_name" : "29072 (interacts with) 7468", "name" : "29072 (interacts with) 7468", "interaction" : "interacts with", "SUID" : 73998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73994", "source" : "773", "target" : "5797", "shared_name" : "29072 (interacts with) 3030", "name" : "29072 (interacts with) 3030", "interaction" : "interacts with", "SUID" : 73994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73990", "source" : "773", "target" : "3421", "shared_name" : "29072 (interacts with) 4967", "name" : "29072 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 73990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73986", "source" : "773", "target" : "1509", "shared_name" : "29072 (interacts with) 63976", "name" : "29072 (interacts with) 63976", "interaction" : "interacts with", "SUID" : 73986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73982", "source" : "773", "target" : "4001", "shared_name" : "29072 (interacts with) 79709", "name" : "29072 (interacts with) 79709", "interaction" : "interacts with", "SUID" : 73982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73978", "source" : "773", "target" : "2281", "shared_name" : "29072 (interacts with) 79823", "name" : "29072 (interacts with) 79823", "interaction" : "interacts with", "SUID" : 73978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73974", "source" : "773", "target" : "3769", "shared_name" : "29072 (interacts with) 8085", "name" : "29072 (interacts with) 8085", "interaction" : "interacts with", "SUID" : 73974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73970", "source" : "773", "target" : "3253", "shared_name" : "29072 (interacts with) 4297", "name" : "29072 (interacts with) 4297", "interaction" : "interacts with", "SUID" : 73970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73966", "source" : "773", "target" : "1501", "shared_name" : "29072 (interacts with) 55870", "name" : "29072 (interacts with) 55870", "interaction" : "interacts with", "SUID" : 73966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73962", "source" : "773", "target" : "1393", "shared_name" : "29072 (interacts with) 55904", "name" : "29072 (interacts with) 55904", "interaction" : "interacts with", "SUID" : 73962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73958", "source" : "773", "target" : "2593", "shared_name" : "29072 (interacts with) 64324", "name" : "29072 (interacts with) 64324", "interaction" : "interacts with", "SUID" : 73958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "73954", "source" : "773", "target" : "3709", "shared_name" : "29072 (interacts with) 9757", "name" : "29072 (interacts with) 9757", "interaction" : "interacts with", "SUID" : 73954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74022", "source" : "769", "target" : "3501", "shared_name" : "4953 (interacts with) 5831", "name" : "4953 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 74022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74018", "source" : "769", "target" : "5993", "shared_name" : "4953 (interacts with) 6611", "name" : "4953 (interacts with) 6611", "interaction" : "interacts with", "SUID" : 74018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74014", "source" : "769", "target" : "1461", "shared_name" : "4953 (interacts with) 5832", "name" : "4953 (interacts with) 5832", "interaction" : "interacts with", "SUID" : 74014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74010", "source" : "769", "target" : "1341", "shared_name" : "4953 (interacts with) 5009", "name" : "4953 (interacts with) 5009", "interaction" : "interacts with", "SUID" : 74010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74006", "source" : "769", "target" : "2097", "shared_name" : "4953 (interacts with) 10166", "name" : "4953 (interacts with) 10166", "interaction" : "interacts with", "SUID" : 74006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74002", "source" : "769", "target" : "3933", "shared_name" : "4953 (interacts with) 10524", "name" : "4953 (interacts with) 10524", "interaction" : "interacts with", "SUID" : 74002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74026", "source" : "765", "target" : "3929", "shared_name" : "4340 (interacts with) 5860", "name" : "4340 (interacts with) 5860", "interaction" : "interacts with", "SUID" : 74026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74046", "source" : "761", "target" : "569", "shared_name" : "5891 (interacts with) 7048", "name" : "5891 (interacts with) 7048", "interaction" : "interacts with", "SUID" : 74046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74042", "source" : "761", "target" : "5693", "shared_name" : "5891 (interacts with) 92335", "name" : "5891 (interacts with) 92335", "interaction" : "interacts with", "SUID" : 74042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74038", "source" : "761", "target" : "2553", "shared_name" : "5891 (interacts with) 815", "name" : "5891 (interacts with) 815", "interaction" : "interacts with", "SUID" : 74038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74034", "source" : "761", "target" : "2161", "shared_name" : "5891 (interacts with) 55163", "name" : "5891 (interacts with) 55163", "interaction" : "interacts with", "SUID" : 74034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74030", "source" : "761", "target" : "2125", "shared_name" : "5891 (interacts with) 2512", "name" : "5891 (interacts with) 2512", "interaction" : "interacts with", "SUID" : 74030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74074", "source" : "753", "target" : "3061", "shared_name" : "4099 (interacts with) 4155", "name" : "4099 (interacts with) 4155", "interaction" : "interacts with", "SUID" : 74074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74070", "source" : "753", "target" : "2657", "shared_name" : "4099 (interacts with) 6900", "name" : "4099 (interacts with) 6900", "interaction" : "interacts with", "SUID" : 74070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74066", "source" : "753", "target" : "765", "shared_name" : "4099 (interacts with) 4340", "name" : "4099 (interacts with) 4340", "interaction" : "interacts with", "SUID" : 74066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74062", "source" : "753", "target" : "3833", "shared_name" : "4099 (interacts with) 9138", "name" : "4099 (interacts with) 9138", "interaction" : "interacts with", "SUID" : 74062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74058", "source" : "753", "target" : "1385", "shared_name" : "4099 (interacts with) 6520", "name" : "4099 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 74058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74054", "source" : "753", "target" : "5053", "shared_name" : "4099 (interacts with) 857", "name" : "4099 (interacts with) 857", "interaction" : "interacts with", "SUID" : 74054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74050", "source" : "753", "target" : "4869", "shared_name" : "4099 (interacts with) 92935", "name" : "4099 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 74050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74086", "source" : "749", "target" : "4425", "shared_name" : "6873 (interacts with) 6884", "name" : "6873 (interacts with) 6884", "interaction" : "interacts with", "SUID" : 74086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74082", "source" : "749", "target" : "981", "shared_name" : "6873 (interacts with) 7157", "name" : "6873 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 74082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74078", "source" : "749", "target" : "2305", "shared_name" : "6873 (interacts with) 6908", "name" : "6873 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 74078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74094", "source" : "745", "target" : "769", "shared_name" : "1725 (interacts with) 4953", "name" : "1725 (interacts with) 4953", "interaction" : "interacts with", "SUID" : 74094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74090", "source" : "745", "target" : "973", "shared_name" : "1725 (interacts with) 5595", "name" : "1725 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 74090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74230", "source" : "741", "target" : "5677", "shared_name" : "4830 (interacts with) 5189", "name" : "4830 (interacts with) 5189", "interaction" : "interacts with", "SUID" : 74230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74226", "source" : "741", "target" : "3545", "shared_name" : "4830 (interacts with) 708", "name" : "4830 (interacts with) 708", "interaction" : "interacts with", "SUID" : 74226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74222", "source" : "741", "target" : "4613", "shared_name" : "4830 (interacts with) 84896", "name" : "4830 (interacts with) 84896", "interaction" : "interacts with", "SUID" : 74222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74218", "source" : "741", "target" : "3613", "shared_name" : "4830 (interacts with) 50640", "name" : "4830 (interacts with) 50640", "interaction" : "interacts with", "SUID" : 74218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74214", "source" : "741", "target" : "2377", "shared_name" : "4830 (interacts with) 6687", "name" : "4830 (interacts with) 6687", "interaction" : "interacts with", "SUID" : 74214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74210", "source" : "741", "target" : "1601", "shared_name" : "4830 (interacts with) 7415", "name" : "4830 (interacts with) 7415", "interaction" : "interacts with", "SUID" : 74210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74206", "source" : "741", "target" : "2393", "shared_name" : "4830 (interacts with) 6683", "name" : "4830 (interacts with) 6683", "interaction" : "interacts with", "SUID" : 74206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74202", "source" : "741", "target" : "693", "shared_name" : "4830 (interacts with) 7296", "name" : "4830 (interacts with) 7296", "interaction" : "interacts with", "SUID" : 74202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74198", "source" : "741", "target" : "3313", "shared_name" : "4830 (interacts with) 84314", "name" : "4830 (interacts with) 84314", "interaction" : "interacts with", "SUID" : 74198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74194", "source" : "741", "target" : "4889", "shared_name" : "4830 (interacts with) 7295", "name" : "4830 (interacts with) 7295", "interaction" : "interacts with", "SUID" : 74194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74190", "source" : "741", "target" : "2413", "shared_name" : "4830 (interacts with) 50484", "name" : "4830 (interacts with) 50484", "interaction" : "interacts with", "SUID" : 74190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74186", "source" : "741", "target" : "2925", "shared_name" : "4830 (interacts with) 8802", "name" : "4830 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 74186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74182", "source" : "741", "target" : "1889", "shared_name" : "4830 (interacts with) 1490", "name" : "4830 (interacts with) 1490", "interaction" : "interacts with", "SUID" : 74182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74178", "source" : "741", "target" : "3633", "shared_name" : "4830 (interacts with) 51067", "name" : "4830 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 74178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74174", "source" : "741", "target" : "1477", "shared_name" : "4830 (interacts with) 10352", "name" : "4830 (interacts with) 10352", "interaction" : "interacts with", "SUID" : 74174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74170", "source" : "741", "target" : "1581", "shared_name" : "4830 (interacts with) 7407", "name" : "4830 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 74170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74166", "source" : "741", "target" : "1013", "shared_name" : "4830 (interacts with) 6898", "name" : "4830 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 74166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74162", "source" : "741", "target" : "3961", "shared_name" : "4830 (interacts with) 3897", "name" : "4830 (interacts with) 3897", "interaction" : "interacts with", "SUID" : 74162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74158", "source" : "741", "target" : "4993", "shared_name" : "4830 (interacts with) 8622", "name" : "4830 (interacts with) 8622", "interaction" : "interacts with", "SUID" : 74158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74154", "source" : "741", "target" : "4693", "shared_name" : "4830 (interacts with) 6301", "name" : "4830 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 74154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74150", "source" : "741", "target" : "1089", "shared_name" : "4830 (interacts with) 5917", "name" : "4830 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 74150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74146", "source" : "741", "target" : "4621", "shared_name" : "4830 (interacts with) 57038", "name" : "4830 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 74146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74142", "source" : "741", "target" : "6133", "shared_name" : "4830 (interacts with) 54658", "name" : "4830 (interacts with) 54658", "interaction" : "interacts with", "SUID" : 74142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74138", "source" : "741", "target" : "5841", "shared_name" : "4830 (interacts with) 10846", "name" : "4830 (interacts with) 10846", "interaction" : "interacts with", "SUID" : 74138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74134", "source" : "741", "target" : "3445", "shared_name" : "4830 (interacts with) 5091", "name" : "4830 (interacts with) 5091", "interaction" : "interacts with", "SUID" : 74134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74130", "source" : "741", "target" : "6049", "shared_name" : "4830 (interacts with) 25973", "name" : "4830 (interacts with) 25973", "interaction" : "interacts with", "SUID" : 74130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74126", "source" : "741", "target" : "985", "shared_name" : "4830 (interacts with) 9091", "name" : "4830 (interacts with) 9091", "interaction" : "interacts with", "SUID" : 74126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74122", "source" : "741", "target" : "4989", "shared_name" : "4830 (interacts with) 51227", "name" : "4830 (interacts with) 51227", "interaction" : "interacts with", "SUID" : 74122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74118", "source" : "741", "target" : "1545", "shared_name" : "4830 (interacts with) 5277", "name" : "4830 (interacts with) 5277", "interaction" : "interacts with", "SUID" : 74118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74114", "source" : "741", "target" : "4689", "shared_name" : "4830 (interacts with) 291", "name" : "4830 (interacts with) 291", "interaction" : "interacts with", "SUID" : 74114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74110", "source" : "741", "target" : "349", "shared_name" : "4830 (interacts with) 60386", "name" : "4830 (interacts with) 60386", "interaction" : "interacts with", "SUID" : 74110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74106", "source" : "741", "target" : "1341", "shared_name" : "4830 (interacts with) 5009", "name" : "4830 (interacts with) 5009", "interaction" : "interacts with", "SUID" : 74106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74102", "source" : "741", "target" : "4365", "shared_name" : "4830 (interacts with) 58497", "name" : "4830 (interacts with) 58497", "interaction" : "interacts with", "SUID" : 74102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74098", "source" : "741", "target" : "5473", "shared_name" : "4830 (interacts with) 6095", "name" : "4830 (interacts with) 6095", "interaction" : "interacts with", "SUID" : 74098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74338", "source" : "737", "target" : "1037", "shared_name" : "2643 (interacts with) 387787", "name" : "2643 (interacts with) 387787", "interaction" : "interacts with", "SUID" : 74338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74334", "source" : "737", "target" : "693", "shared_name" : "2643 (interacts with) 7296", "name" : "2643 (interacts with) 7296", "interaction" : "interacts with", "SUID" : 74334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74330", "source" : "737", "target" : "4349", "shared_name" : "2643 (interacts with) 5859", "name" : "2643 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 74330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74326", "source" : "737", "target" : "5797", "shared_name" : "2643 (interacts with) 3030", "name" : "2643 (interacts with) 3030", "interaction" : "interacts with", "SUID" : 74326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74322", "source" : "737", "target" : "2029", "shared_name" : "2643 (interacts with) 4329", "name" : "2643 (interacts with) 4329", "interaction" : "interacts with", "SUID" : 74322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74318", "source" : "737", "target" : "3537", "shared_name" : "2643 (interacts with) 501", "name" : "2643 (interacts with) 501", "interaction" : "interacts with", "SUID" : 74318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74314", "source" : "737", "target" : "1189", "shared_name" : "2643 (interacts with) 7915", "name" : "2643 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 74314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74310", "source" : "737", "target" : "1201", "shared_name" : "2643 (interacts with) 805", "name" : "2643 (interacts with) 805", "interaction" : "interacts with", "SUID" : 74310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74306", "source" : "737", "target" : "993", "shared_name" : "2643 (interacts with) 801", "name" : "2643 (interacts with) 801", "interaction" : "interacts with", "SUID" : 74306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74302", "source" : "737", "target" : "4577", "shared_name" : "2643 (interacts with) 7167", "name" : "2643 (interacts with) 7167", "interaction" : "interacts with", "SUID" : 74302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74298", "source" : "737", "target" : "1197", "shared_name" : "2643 (interacts with) 79587", "name" : "2643 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 74298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74294", "source" : "737", "target" : "1657", "shared_name" : "2643 (interacts with) 3251", "name" : "2643 (interacts with) 3251", "interaction" : "interacts with", "SUID" : 74294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74290", "source" : "737", "target" : "2377", "shared_name" : "2643 (interacts with) 6687", "name" : "2643 (interacts with) 6687", "interaction" : "interacts with", "SUID" : 74290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74286", "source" : "737", "target" : "1241", "shared_name" : "2643 (interacts with) 808", "name" : "2643 (interacts with) 808", "interaction" : "interacts with", "SUID" : 74286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74282", "source" : "737", "target" : "4505", "shared_name" : "2643 (interacts with) 5190", "name" : "2643 (interacts with) 5190", "interaction" : "interacts with", "SUID" : 74282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74278", "source" : "737", "target" : "2393", "shared_name" : "2643 (interacts with) 6683", "name" : "2643 (interacts with) 6683", "interaction" : "interacts with", "SUID" : 74278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74274", "source" : "737", "target" : "5677", "shared_name" : "2643 (interacts with) 5189", "name" : "2643 (interacts with) 5189", "interaction" : "interacts with", "SUID" : 74274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74270", "source" : "737", "target" : "4613", "shared_name" : "2643 (interacts with) 84896", "name" : "2643 (interacts with) 84896", "interaction" : "interacts with", "SUID" : 74270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74266", "source" : "737", "target" : "1601", "shared_name" : "2643 (interacts with) 7415", "name" : "2643 (interacts with) 7415", "interaction" : "interacts with", "SUID" : 74266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74262", "source" : "737", "target" : "2005", "shared_name" : "2643 (interacts with) 4846", "name" : "2643 (interacts with) 4846", "interaction" : "interacts with", "SUID" : 74262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74258", "source" : "737", "target" : "2577", "shared_name" : "2643 (interacts with) 4337", "name" : "2643 (interacts with) 4337", "interaction" : "interacts with", "SUID" : 74258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74254", "source" : "737", "target" : "3929", "shared_name" : "2643 (interacts with) 5860", "name" : "2643 (interacts with) 5860", "interaction" : "interacts with", "SUID" : 74254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74250", "source" : "737", "target" : "3113", "shared_name" : "2643 (interacts with) 4338", "name" : "2643 (interacts with) 4338", "interaction" : "interacts with", "SUID" : 74250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74246", "source" : "737", "target" : "4721", "shared_name" : "2643 (interacts with) 5805", "name" : "2643 (interacts with) 5805", "interaction" : "interacts with", "SUID" : 74246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74242", "source" : "737", "target" : "5049", "shared_name" : "2643 (interacts with) 6697", "name" : "2643 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 74242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74238", "source" : "737", "target" : "4057", "shared_name" : "2643 (interacts with) 10598", "name" : "2643 (interacts with) 10598", "interaction" : "interacts with", "SUID" : 74238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74234", "source" : "737", "target" : "4837", "shared_name" : "2643 (interacts with) 8891", "name" : "2643 (interacts with) 8891", "interaction" : "interacts with", "SUID" : 74234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74346", "source" : "733", "target" : "3329", "shared_name" : "91452 (interacts with) 5824", "name" : "91452 (interacts with) 5824", "interaction" : "interacts with", "SUID" : 74346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74342", "source" : "733", "target" : "3341", "shared_name" : "91452 (interacts with) 8504", "name" : "91452 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 74342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74378", "source" : "729", "target" : "6045", "shared_name" : "5888 (interacts with) 701", "name" : "5888 (interacts with) 701", "interaction" : "interacts with", "SUID" : 74378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74374", "source" : "729", "target" : "5197", "shared_name" : "5888 (interacts with) 7156", "name" : "5888 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 74374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74370", "source" : "729", "target" : "981", "shared_name" : "5888 (interacts with) 7157", "name" : "5888 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 74370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74366", "source" : "729", "target" : "4949", "shared_name" : "5888 (interacts with) 5970", "name" : "5888 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 74366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74362", "source" : "729", "target" : "5949", "shared_name" : "5888 (interacts with) 672", "name" : "5888 (interacts with) 672", "interaction" : "interacts with", "SUID" : 74362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74358", "source" : "729", "target" : "2921", "shared_name" : "5888 (interacts with) 5981", "name" : "5888 (interacts with) 5981", "interaction" : "interacts with", "SUID" : 74358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74354", "source" : "729", "target" : "3081", "shared_name" : "5888 (interacts with) 546", "name" : "5888 (interacts with) 546", "interaction" : "interacts with", "SUID" : 74354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74350", "source" : "729", "target" : "2417", "shared_name" : "5888 (interacts with) 675", "name" : "5888 (interacts with) 675", "interaction" : "interacts with", "SUID" : 74350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74386", "source" : "725", "target" : "6009", "shared_name" : "54209 (interacts with) 64849", "name" : "54209 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 74386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74382", "source" : "725", "target" : "5073", "shared_name" : "54209 (interacts with) 7305", "name" : "54209 (interacts with) 7305", "interaction" : "interacts with", "SUID" : 74382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74426", "source" : "721", "target" : "1085", "shared_name" : "79731 (interacts with) 9377", "name" : "79731 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 74426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74422", "source" : "721", "target" : "6181", "shared_name" : "79731 (interacts with) 84987", "name" : "79731 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 74422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74418", "source" : "721", "target" : "1053", "shared_name" : "79731 (interacts with) 81689", "name" : "79731 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 74418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74414", "source" : "721", "target" : "889", "shared_name" : "79731 (interacts with) 80224", "name" : "79731 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 74414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74410", "source" : "721", "target" : "3705", "shared_name" : "79731 (interacts with) 87178", "name" : "79731 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 74410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74406", "source" : "721", "target" : "4757", "shared_name" : "79731 (interacts with) 9997", "name" : "79731 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 74406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74402", "source" : "721", "target" : "6073", "shared_name" : "79731 (interacts with) 92170", "name" : "79731 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 74402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74398", "source" : "721", "target" : "5737", "shared_name" : "79731 (interacts with) 84340", "name" : "79731 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 74398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74394", "source" : "721", "target" : "4869", "shared_name" : "79731 (interacts with) 92935", "name" : "79731 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 74394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74390", "source" : "721", "target" : "521", "shared_name" : "79731 (interacts with) 85476", "name" : "79731 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 74390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74430", "source" : "717", "target" : "1205", "shared_name" : "157680 (interacts with) 23230", "name" : "157680 (interacts with) 23230", "interaction" : "interacts with", "SUID" : 74430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74486", "source" : "713", "target" : "1325", "shared_name" : "7019 (interacts with) 7284", "name" : "7019 (interacts with) 7284", "interaction" : "interacts with", "SUID" : 74486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74482", "source" : "713", "target" : "889", "shared_name" : "7019 (interacts with) 80224", "name" : "7019 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 74482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74478", "source" : "713", "target" : "1637", "shared_name" : "7019 (interacts with) 91574", "name" : "7019 (interacts with) 91574", "interaction" : "interacts with", "SUID" : 74478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74474", "source" : "713", "target" : "3705", "shared_name" : "7019 (interacts with) 87178", "name" : "7019 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 74474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74470", "source" : "713", "target" : "521", "shared_name" : "7019 (interacts with) 85476", "name" : "7019 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 74470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74466", "source" : "713", "target" : "4757", "shared_name" : "7019 (interacts with) 9997", "name" : "7019 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 74466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74462", "source" : "713", "target" : "1085", "shared_name" : "7019 (interacts with) 9377", "name" : "7019 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 74462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74458", "source" : "713", "target" : "721", "shared_name" : "7019 (interacts with) 79731", "name" : "7019 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 74458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74454", "source" : "713", "target" : "2009", "shared_name" : "7019 (interacts with) 79133", "name" : "7019 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 74454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74450", "source" : "713", "target" : "3545", "shared_name" : "7019 (interacts with) 708", "name" : "7019 (interacts with) 708", "interaction" : "interacts with", "SUID" : 74450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74446", "source" : "713", "target" : "1197", "shared_name" : "7019 (interacts with) 79587", "name" : "7019 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 74446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74442", "source" : "713", "target" : "5737", "shared_name" : "7019 (interacts with) 84340", "name" : "7019 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 74442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74438", "source" : "713", "target" : "6073", "shared_name" : "7019 (interacts with) 92170", "name" : "7019 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 74438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74434", "source" : "713", "target" : "4869", "shared_name" : "7019 (interacts with) 92935", "name" : "7019 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 74434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74506", "source" : "709", "target" : "2781", "shared_name" : "112858 (interacts with) 1968", "name" : "112858 (interacts with) 1968", "interaction" : "interacts with", "SUID" : 74506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74502", "source" : "709", "target" : "5165", "shared_name" : "112858 (interacts with) 3704", "name" : "112858 (interacts with) 3704", "interaction" : "interacts with", "SUID" : 74502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74498", "source" : "709", "target" : "3089", "shared_name" : "112858 (interacts with) 51002", "name" : "112858 (interacts with) 51002", "interaction" : "interacts with", "SUID" : 74498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74494", "source" : "709", "target" : "3321", "shared_name" : "112858 (interacts with) 79876", "name" : "112858 (interacts with) 79876", "interaction" : "interacts with", "SUID" : 74494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74490", "source" : "709", "target" : "1425", "shared_name" : "112858 (interacts with) 55644", "name" : "112858 (interacts with) 55644", "interaction" : "interacts with", "SUID" : 74490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74546", "source" : "701", "target" : "2173", "shared_name" : "11011 (interacts with) 5159", "name" : "11011 (interacts with) 5159", "interaction" : "interacts with", "SUID" : 74546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74542", "source" : "701", "target" : "5265", "shared_name" : "11011 (interacts with) 1436", "name" : "11011 (interacts with) 1436", "interaction" : "interacts with", "SUID" : 74542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74538", "source" : "701", "target" : "4293", "shared_name" : "11011 (interacts with) 5156", "name" : "11011 (interacts with) 5156", "interaction" : "interacts with", "SUID" : 74538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74534", "source" : "701", "target" : "5693", "shared_name" : "11011 (interacts with) 92335", "name" : "11011 (interacts with) 92335", "interaction" : "interacts with", "SUID" : 74534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74530", "source" : "701", "target" : "4725", "shared_name" : "11011 (interacts with) 7010", "name" : "11011 (interacts with) 7010", "interaction" : "interacts with", "SUID" : 74530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74526", "source" : "701", "target" : "865", "shared_name" : "11011 (interacts with) 3480", "name" : "11011 (interacts with) 3480", "interaction" : "interacts with", "SUID" : 74526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74522", "source" : "701", "target" : "6129", "shared_name" : "11011 (interacts with) 2263", "name" : "11011 (interacts with) 2263", "interaction" : "interacts with", "SUID" : 74522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74518", "source" : "701", "target" : "6121", "shared_name" : "11011 (interacts with) 2260", "name" : "11011 (interacts with) 2260", "interaction" : "interacts with", "SUID" : 74518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74514", "source" : "701", "target" : "2537", "shared_name" : "11011 (interacts with) 3984", "name" : "11011 (interacts with) 3984", "interaction" : "interacts with", "SUID" : 74514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74510", "source" : "701", "target" : "2813", "shared_name" : "11011 (interacts with) 5079", "name" : "11011 (interacts with) 5079", "interaction" : "interacts with", "SUID" : 74510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74558", "source" : "697", "target" : "1601", "shared_name" : "55768 (interacts with) 7415", "name" : "55768 (interacts with) 7415", "interaction" : "interacts with", "SUID" : 74558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74554", "source" : "697", "target" : "3605", "shared_name" : "55768 (interacts with) 7841", "name" : "55768 (interacts with) 7841", "interaction" : "interacts with", "SUID" : 74554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74550", "source" : "697", "target" : "2813", "shared_name" : "55768 (interacts with) 5079", "name" : "55768 (interacts with) 5079", "interaction" : "interacts with", "SUID" : 74550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74586", "source" : "693", "target" : "1189", "shared_name" : "7296 (interacts with) 7915", "name" : "7296 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 74586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74582", "source" : "693", "target" : "2925", "shared_name" : "7296 (interacts with) 8802", "name" : "7296 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 74582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74578", "source" : "693", "target" : "3425", "shared_name" : "7296 (interacts with) 8803", "name" : "7296 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 74578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74574", "source" : "693", "target" : "1485", "shared_name" : "7296 (interacts with) 8050", "name" : "7296 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 74574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74570", "source" : "693", "target" : "6117", "shared_name" : "7296 (interacts with) 9131", "name" : "7296 (interacts with) 9131", "interaction" : "interacts with", "SUID" : 74570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74566", "source" : "693", "target" : "4869", "shared_name" : "7296 (interacts with) 92935", "name" : "7296 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 74566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74562", "source" : "693", "target" : "4889", "shared_name" : "7296 (interacts with) 7295", "name" : "7296 (interacts with) 7295", "interaction" : "interacts with", "SUID" : 74562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74666", "source" : "689", "target" : "5557", "shared_name" : "6329 (interacts with) 9254", "name" : "6329 (interacts with) 9254", "interaction" : "interacts with", "SUID" : 74666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74662", "source" : "689", "target" : "5229", "shared_name" : "6329 (interacts with) 6335", "name" : "6329 (interacts with) 6335", "interaction" : "interacts with", "SUID" : 74662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74658", "source" : "689", "target" : "1633", "shared_name" : "6329 (interacts with) 57731", "name" : "6329 (interacts with) 57731", "interaction" : "interacts with", "SUID" : 74658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74654", "source" : "689", "target" : "1973", "shared_name" : "6329 (interacts with) 6709", "name" : "6329 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 74654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74650", "source" : "689", "target" : "3637", "shared_name" : "6329 (interacts with) 6712", "name" : "6329 (interacts with) 6712", "interaction" : "interacts with", "SUID" : 74650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74646", "source" : "689", "target" : "5877", "shared_name" : "6329 (interacts with) 6535", "name" : "6329 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 74646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74642", "source" : "689", "target" : "309", "shared_name" : "6329 (interacts with) 6536", "name" : "6329 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 74642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74638", "source" : "689", "target" : "401", "shared_name" : "6329 (interacts with) 6532", "name" : "6329 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 74638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74634", "source" : "689", "target" : "3781", "shared_name" : "6329 (interacts with) 9152", "name" : "6329 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 74634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74630", "source" : "689", "target" : "3601", "shared_name" : "6329 (interacts with) 6531", "name" : "6329 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 74630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74626", "source" : "689", "target" : "2877", "shared_name" : "6329 (interacts with) 340024", "name" : "6329 (interacts with) 340024", "interaction" : "interacts with", "SUID" : 74626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74622", "source" : "689", "target" : "3473", "shared_name" : "6329 (interacts with) 6528", "name" : "6329 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 74622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74618", "source" : "689", "target" : "1385", "shared_name" : "6329 (interacts with) 6520", "name" : "6329 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 74618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74614", "source" : "689", "target" : "5805", "shared_name" : "6329 (interacts with) 6575", "name" : "6329 (interacts with) 6575", "interaction" : "interacts with", "SUID" : 74614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74610", "source" : "689", "target" : "3077", "shared_name" : "6329 (interacts with) 6506", "name" : "6329 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 74610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74606", "source" : "689", "target" : "6009", "shared_name" : "6329 (interacts with) 64849", "name" : "6329 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 74606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74602", "source" : "689", "target" : "4025", "shared_name" : "6329 (interacts with) 284111", "name" : "6329 (interacts with) 284111", "interaction" : "interacts with", "SUID" : 74602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74598", "source" : "689", "target" : "4841", "shared_name" : "6329 (interacts with) 6334", "name" : "6329 (interacts with) 6334", "interaction" : "interacts with", "SUID" : 74598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74594", "source" : "689", "target" : "2013", "shared_name" : "6329 (interacts with) 128486", "name" : "6329 (interacts with) 128486", "interaction" : "interacts with", "SUID" : 74594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74590", "source" : "689", "target" : "5241", "shared_name" : "6329 (interacts with) 128869", "name" : "6329 (interacts with) 128869", "interaction" : "interacts with", "SUID" : 74590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74698", "source" : "685", "target" : "369", "shared_name" : "4282 (interacts with) 7173", "name" : "4282 (interacts with) 7173", "interaction" : "interacts with", "SUID" : 74698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74694", "source" : "685", "target" : "389", "shared_name" : "4282 (interacts with) 7299", "name" : "4282 (interacts with) 7299", "interaction" : "interacts with", "SUID" : 74694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74690", "source" : "685", "target" : "1013", "shared_name" : "4282 (interacts with) 6898", "name" : "4282 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 74690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74686", "source" : "685", "target" : "3185", "shared_name" : "4282 (interacts with) 5053", "name" : "4282 (interacts with) 5053", "interaction" : "interacts with", "SUID" : 74686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74682", "source" : "685", "target" : "2241", "shared_name" : "4282 (interacts with) 3043", "name" : "4282 (interacts with) 3043", "interaction" : "interacts with", "SUID" : 74682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74678", "source" : "685", "target" : "2881", "shared_name" : "4282 (interacts with) 5160", "name" : "4282 (interacts with) 5160", "interaction" : "interacts with", "SUID" : 74678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74674", "source" : "685", "target" : "1485", "shared_name" : "4282 (interacts with) 8050", "name" : "4282 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 74674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74670", "source" : "685", "target" : "2897", "shared_name" : "4282 (interacts with) 1737", "name" : "4282 (interacts with) 1737", "interaction" : "interacts with", "SUID" : 74670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74718", "source" : "681", "target" : "5305", "shared_name" : "6646 (interacts with) 6901", "name" : "6646 (interacts with) 6901", "interaction" : "interacts with", "SUID" : 74718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74714", "source" : "681", "target" : "2925", "shared_name" : "6646 (interacts with) 8802", "name" : "6646 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 74714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74710", "source" : "681", "target" : "3425", "shared_name" : "6646 (interacts with) 8803", "name" : "6646 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 74710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74706", "source" : "681", "target" : "409", "shared_name" : "6646 (interacts with) 10558", "name" : "6646 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 74706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74702", "source" : "681", "target" : "689", "shared_name" : "6646 (interacts with) 6329", "name" : "6646 (interacts with) 6329", "interaction" : "interacts with", "SUID" : 74702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74734", "source" : "677", "target" : "869", "shared_name" : "57449 (interacts with) 23221", "name" : "57449 (interacts with) 23221", "interaction" : "interacts with", "SUID" : 74734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74730", "source" : "677", "target" : "1069", "shared_name" : "57449 (interacts with) 5879", "name" : "57449 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 74730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74726", "source" : "677", "target" : "5713", "shared_name" : "57449 (interacts with) 7531", "name" : "57449 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 74726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74722", "source" : "677", "target" : "4697", "shared_name" : "57449 (interacts with) 7534", "name" : "57449 (interacts with) 7534", "interaction" : "interacts with", "SUID" : 74722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74746", "source" : "669", "target" : "1177", "shared_name" : "259266 (interacts with) 9928", "name" : "259266 (interacts with) 9928", "interaction" : "interacts with", "SUID" : 74746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74742", "source" : "669", "target" : "4269", "shared_name" : "259266 (interacts with) 3832", "name" : "259266 (interacts with) 3832", "interaction" : "interacts with", "SUID" : 74742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74738", "source" : "669", "target" : "6045", "shared_name" : "259266 (interacts with) 701", "name" : "259266 (interacts with) 701", "interaction" : "interacts with", "SUID" : 74738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74834", "source" : "665", "target" : "721", "shared_name" : "3309 (interacts with) 79731", "name" : "3309 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 74834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74830", "source" : "665", "target" : "3425", "shared_name" : "3309 (interacts with) 8803", "name" : "3309 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 74830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74826", "source" : "665", "target" : "1053", "shared_name" : "3309 (interacts with) 81689", "name" : "3309 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 74826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74822", "source" : "665", "target" : "1237", "shared_name" : "3309 (interacts with) 3329", "name" : "3309 (interacts with) 3329", "interaction" : "interacts with", "SUID" : 74822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74818", "source" : "665", "target" : "5965", "shared_name" : "3309 (interacts with) 596", "name" : "3309 (interacts with) 596", "interaction" : "interacts with", "SUID" : 74818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74814", "source" : "665", "target" : "4857", "shared_name" : "3309 (interacts with) 5573", "name" : "3309 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 74814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74810", "source" : "665", "target" : "2565", "shared_name" : "3309 (interacts with) 51501", "name" : "3309 (interacts with) 51501", "interaction" : "interacts with", "SUID" : 74810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74806", "source" : "665", "target" : "2169", "shared_name" : "3309 (interacts with) 51182", "name" : "3309 (interacts with) 51182", "interaction" : "interacts with", "SUID" : 74806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74802", "source" : "665", "target" : "2093", "shared_name" : "3309 (interacts with) 4780", "name" : "3309 (interacts with) 4780", "interaction" : "interacts with", "SUID" : 74802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74798", "source" : "665", "target" : "5701", "shared_name" : "3309 (interacts with) 6767", "name" : "3309 (interacts with) 6767", "interaction" : "interacts with", "SUID" : 74798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74794", "source" : "665", "target" : "1497", "shared_name" : "3309 (interacts with) 3912", "name" : "3309 (interacts with) 3912", "interaction" : "interacts with", "SUID" : 74794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74790", "source" : "665", "target" : "4125", "shared_name" : "3309 (interacts with) 51360", "name" : "3309 (interacts with) 51360", "interaction" : "interacts with", "SUID" : 74790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74786", "source" : "665", "target" : "1377", "shared_name" : "3309 (interacts with) 81570", "name" : "3309 (interacts with) 81570", "interaction" : "interacts with", "SUID" : 74786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74782", "source" : "665", "target" : "3805", "shared_name" : "3309 (interacts with) 5621", "name" : "3309 (interacts with) 5621", "interaction" : "interacts with", "SUID" : 74782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74778", "source" : "665", "target" : "4549", "shared_name" : "3309 (interacts with) 5903", "name" : "3309 (interacts with) 5903", "interaction" : "interacts with", "SUID" : 74778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74774", "source" : "665", "target" : "4005", "shared_name" : "3309 (interacts with) 23636", "name" : "3309 (interacts with) 23636", "interaction" : "interacts with", "SUID" : 74774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74770", "source" : "665", "target" : "5445", "shared_name" : "3309 (interacts with) 8021", "name" : "3309 (interacts with) 8021", "interaction" : "interacts with", "SUID" : 74770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74766", "source" : "665", "target" : "5573", "shared_name" : "3309 (interacts with) 84061", "name" : "3309 (interacts with) 84061", "interaction" : "interacts with", "SUID" : 74766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74762", "source" : "665", "target" : "5753", "shared_name" : "3309 (interacts with) 2581", "name" : "3309 (interacts with) 2581", "interaction" : "interacts with", "SUID" : 74762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74758", "source" : "665", "target" : "3813", "shared_name" : "3309 (interacts with) 3483", "name" : "3309 (interacts with) 3483", "interaction" : "interacts with", "SUID" : 74758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74754", "source" : "665", "target" : "2273", "shared_name" : "3309 (interacts with) 9244", "name" : "3309 (interacts with) 9244", "interaction" : "interacts with", "SUID" : 74754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74750", "source" : "665", "target" : "5897", "shared_name" : "3309 (interacts with) 64374", "name" : "3309 (interacts with) 64374", "interaction" : "interacts with", "SUID" : 74750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74846", "source" : "661", "target" : "4981", "shared_name" : "6657 (interacts with) 6774", "name" : "6657 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 74846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74842", "source" : "661", "target" : "1849", "shared_name" : "6657 (interacts with) 26275", "name" : "6657 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 74842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74838", "source" : "661", "target" : "5149", "shared_name" : "6657 (interacts with) 5058", "name" : "6657 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 74838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74854", "source" : "657", "target" : "5749", "shared_name" : "547 (interacts with) 10959", "name" : "547 (interacts with) 10959", "interaction" : "interacts with", "SUID" : 74854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74850", "source" : "657", "target" : "545", "shared_name" : "547 (interacts with) 51014", "name" : "547 (interacts with) 51014", "interaction" : "interacts with", "SUID" : 74850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74862", "source" : "653", "target" : "6025", "shared_name" : "6948 (interacts with) 80704", "name" : "6948 (interacts with) 80704", "interaction" : "interacts with", "SUID" : 74862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74858", "source" : "653", "target" : "665", "shared_name" : "6948 (interacts with) 3309", "name" : "6948 (interacts with) 3309", "interaction" : "interacts with", "SUID" : 74858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74978", "source" : "645", "target" : "4261", "shared_name" : "10056 (interacts with) 124454", "name" : "10056 (interacts with) 124454", "interaction" : "interacts with", "SUID" : 74978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74974", "source" : "645", "target" : "2837", "shared_name" : "10056 (interacts with) 123263", "name" : "10056 (interacts with) 123263", "interaction" : "interacts with", "SUID" : 74974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74970", "source" : "645", "target" : "6049", "shared_name" : "10056 (interacts with) 25973", "name" : "10056 (interacts with) 25973", "interaction" : "interacts with", "SUID" : 74970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74966", "source" : "645", "target" : "1577", "shared_name" : "10056 (interacts with) 51091", "name" : "10056 (interacts with) 51091", "interaction" : "interacts with", "SUID" : 74966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74962", "source" : "645", "target" : "4869", "shared_name" : "10056 (interacts with) 92935", "name" : "10056 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 74962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74958", "source" : "645", "target" : "1477", "shared_name" : "10056 (interacts with) 10352", "name" : "10056 (interacts with) 10352", "interaction" : "interacts with", "SUID" : 74958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74954", "source" : "645", "target" : "4085", "shared_name" : "10056 (interacts with) 55699", "name" : "10056 (interacts with) 55699", "interaction" : "interacts with", "SUID" : 74954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74950", "source" : "645", "target" : "4621", "shared_name" : "10056 (interacts with) 57038", "name" : "10056 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 74950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74946", "source" : "645", "target" : "1129", "shared_name" : "10056 (interacts with) 57505", "name" : "10056 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 74946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74942", "source" : "645", "target" : "3633", "shared_name" : "10056 (interacts with) 51067", "name" : "10056 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 74942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74938", "source" : "645", "target" : "6001", "shared_name" : "10056 (interacts with) 55157", "name" : "10056 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 74938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74934", "source" : "645", "target" : "3529", "shared_name" : "10056 (interacts with) 7965", "name" : "10056 (interacts with) 7965", "interaction" : "interacts with", "SUID" : 74934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74930", "source" : "645", "target" : "3157", "shared_name" : "10056 (interacts with) 9255", "name" : "10056 (interacts with) 9255", "interaction" : "interacts with", "SUID" : 74930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74926", "source" : "645", "target" : "1197", "shared_name" : "10056 (interacts with) 79587", "name" : "10056 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 74926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74922", "source" : "645", "target" : "721", "shared_name" : "10056 (interacts with) 79731", "name" : "10056 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 74922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74918", "source" : "645", "target" : "6157", "shared_name" : "10056 (interacts with) 3735", "name" : "10056 (interacts with) 3735", "interaction" : "interacts with", "SUID" : 74918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74914", "source" : "645", "target" : "4349", "shared_name" : "10056 (interacts with) 5859", "name" : "10056 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 74914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74910", "source" : "645", "target" : "3641", "shared_name" : "10056 (interacts with) 4141", "name" : "10056 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 74910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74906", "source" : "645", "target" : "4693", "shared_name" : "10056 (interacts with) 6301", "name" : "10056 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 74906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74902", "source" : "645", "target" : "4405", "shared_name" : "10056 (interacts with) 10667", "name" : "10056 (interacts with) 10667", "interaction" : "interacts with", "SUID" : 74902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74898", "source" : "645", "target" : "5189", "shared_name" : "10056 (interacts with) 57176", "name" : "10056 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 74898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74894", "source" : "645", "target" : "4593", "shared_name" : "10056 (interacts with) 2058", "name" : "10056 (interacts with) 2058", "interaction" : "interacts with", "SUID" : 74894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74890", "source" : "645", "target" : "3649", "shared_name" : "10056 (interacts with) 51520", "name" : "10056 (interacts with) 51520", "interaction" : "interacts with", "SUID" : 74890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74886", "source" : "645", "target" : "1089", "shared_name" : "10056 (interacts with) 5917", "name" : "10056 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 74886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74882", "source" : "645", "target" : "3169", "shared_name" : "10056 (interacts with) 1615", "name" : "10056 (interacts with) 1615", "interaction" : "interacts with", "SUID" : 74882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74878", "source" : "645", "target" : "457", "shared_name" : "10056 (interacts with) 16", "name" : "10056 (interacts with) 16", "interaction" : "interacts with", "SUID" : 74878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74874", "source" : "645", "target" : "4229", "shared_name" : "10056 (interacts with) 3035", "name" : "10056 (interacts with) 3035", "interaction" : "interacts with", "SUID" : 74874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74870", "source" : "645", "target" : "4597", "shared_name" : "10056 (interacts with) 3376", "name" : "10056 (interacts with) 3376", "interaction" : "interacts with", "SUID" : 74870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74866", "source" : "645", "target" : "1581", "shared_name" : "10056 (interacts with) 7407", "name" : "10056 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 74866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75058", "source" : "641", "target" : "5557", "shared_name" : "773 (interacts with) 9254", "name" : "773 (interacts with) 9254", "interaction" : "interacts with", "SUID" : 75058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75054", "source" : "641", "target" : "3765", "shared_name" : "773 (interacts with) 774", "name" : "773 (interacts with) 774", "interaction" : "interacts with", "SUID" : 75054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75050", "source" : "641", "target" : "357", "shared_name" : "773 (interacts with) 777", "name" : "773 (interacts with) 777", "interaction" : "interacts with", "SUID" : 75050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75046", "source" : "641", "target" : "997", "shared_name" : "773 (interacts with) 7431", "name" : "773 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 75046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75042", "source" : "641", "target" : "2581", "shared_name" : "773 (interacts with) 7170", "name" : "773 (interacts with) 7170", "interaction" : "interacts with", "SUID" : 75042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75038", "source" : "641", "target" : "5989", "shared_name" : "773 (interacts with) 7273", "name" : "773 (interacts with) 7273", "interaction" : "interacts with", "SUID" : 75038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75034", "source" : "641", "target" : "609", "shared_name" : "773 (interacts with) 6812", "name" : "773 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 75034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75030", "source" : "641", "target" : "5785", "shared_name" : "773 (interacts with) 6857", "name" : "773 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 75030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75026", "source" : "641", "target" : "5929", "shared_name" : "773 (interacts with) 6616", "name" : "773 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 75026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75022", "source" : "641", "target" : "3593", "shared_name" : "773 (interacts with) 5530", "name" : "773 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 75022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75018", "source" : "641", "target" : "565", "shared_name" : "773 (interacts with) 4772", "name" : "773 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 75018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75014", "source" : "641", "target" : "3177", "shared_name" : "773 (interacts with) 5321", "name" : "773 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 75014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75010", "source" : "641", "target" : "1357", "shared_name" : "773 (interacts with) 58498", "name" : "773 (interacts with) 58498", "interaction" : "interacts with", "SUID" : 75010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75006", "source" : "641", "target" : "4893", "shared_name" : "773 (interacts with) 10815", "name" : "773 (interacts with) 10815", "interaction" : "interacts with", "SUID" : 75006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75002", "source" : "641", "target" : "6097", "shared_name" : "773 (interacts with) 1756", "name" : "773 (interacts with) 1756", "interaction" : "interacts with", "SUID" : 75002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74998", "source" : "641", "target" : "2553", "shared_name" : "773 (interacts with) 815", "name" : "773 (interacts with) 815", "interaction" : "interacts with", "SUID" : 74998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74994", "source" : "641", "target" : "993", "shared_name" : "773 (interacts with) 801", "name" : "773 (interacts with) 801", "interaction" : "interacts with", "SUID" : 74994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74990", "source" : "641", "target" : "1497", "shared_name" : "773 (interacts with) 3912", "name" : "773 (interacts with) 3912", "interaction" : "interacts with", "SUID" : 74990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74986", "source" : "641", "target" : "4105", "shared_name" : "773 (interacts with) 347733", "name" : "773 (interacts with) 347733", "interaction" : "interacts with", "SUID" : 74986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "74982", "source" : "641", "target" : "3469", "shared_name" : "773 (interacts with) 2896", "name" : "773 (interacts with) 2896", "interaction" : "interacts with", "SUID" : 74982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75130", "source" : "637", "target" : "1201", "shared_name" : "6654 (interacts with) 805", "name" : "6654 (interacts with) 805", "interaction" : "interacts with", "SUID" : 75130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75126", "source" : "637", "target" : "805", "shared_name" : "6654 (interacts with) 6772", "name" : "6654 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 75126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75122", "source" : "637", "target" : "1241", "shared_name" : "6654 (interacts with) 808", "name" : "6654 (interacts with) 808", "interaction" : "interacts with", "SUID" : 75122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75118", "source" : "637", "target" : "2433", "shared_name" : "6654 (interacts with) 6927", "name" : "6654 (interacts with) 6927", "interaction" : "interacts with", "SUID" : 75118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75114", "source" : "637", "target" : "4981", "shared_name" : "6654 (interacts with) 6774", "name" : "6654 (interacts with) 6774", "interaction" : "interacts with", "SUID" : 75114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75110", "source" : "637", "target" : "5053", "shared_name" : "6654 (interacts with) 857", "name" : "6654 (interacts with) 857", "interaction" : "interacts with", "SUID" : 75110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75106", "source" : "637", "target" : "4909", "shared_name" : "6654 (interacts with) 823", "name" : "6654 (interacts with) 823", "interaction" : "interacts with", "SUID" : 75106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75102", "source" : "637", "target" : "1697", "shared_name" : "6654 (interacts with) 8818", "name" : "6654 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 75102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75098", "source" : "637", "target" : "869", "shared_name" : "6654 (interacts with) 23221", "name" : "6654 (interacts with) 23221", "interaction" : "interacts with", "SUID" : 75098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75094", "source" : "637", "target" : "5073", "shared_name" : "6654 (interacts with) 7305", "name" : "6654 (interacts with) 7305", "interaction" : "interacts with", "SUID" : 75094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75090", "source" : "637", "target" : "725", "shared_name" : "6654 (interacts with) 54209", "name" : "6654 (interacts with) 54209", "interaction" : "interacts with", "SUID" : 75090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75086", "source" : "637", "target" : "4725", "shared_name" : "6654 (interacts with) 7010", "name" : "6654 (interacts with) 7010", "interaction" : "interacts with", "SUID" : 75086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75082", "source" : "637", "target" : "2969", "shared_name" : "6654 (interacts with) 8867", "name" : "6654 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 75082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75078", "source" : "637", "target" : "1973", "shared_name" : "6654 (interacts with) 6709", "name" : "6654 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 75078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75074", "source" : "637", "target" : "3637", "shared_name" : "6654 (interacts with) 6712", "name" : "6654 (interacts with) 6712", "interaction" : "interacts with", "SUID" : 75074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75070", "source" : "637", "target" : "1633", "shared_name" : "6654 (interacts with) 57731", "name" : "6654 (interacts with) 57731", "interaction" : "interacts with", "SUID" : 75070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75066", "source" : "637", "target" : "4213", "shared_name" : "6654 (interacts with) 5295", "name" : "6654 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 75066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75062", "source" : "637", "target" : "4197", "shared_name" : "6654 (interacts with) 1398", "name" : "6654 (interacts with) 1398", "interaction" : "interacts with", "SUID" : 75062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75150", "source" : "629", "target" : "4765", "shared_name" : "7013 (interacts with) 7015", "name" : "7013 (interacts with) 7015", "interaction" : "interacts with", "SUID" : 75150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75146", "source" : "629", "target" : "981", "shared_name" : "7013 (interacts with) 7157", "name" : "7013 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 75146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75142", "source" : "629", "target" : "1329", "shared_name" : "7013 (interacts with) 26277", "name" : "7013 (interacts with) 26277", "interaction" : "interacts with", "SUID" : 75142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75138", "source" : "629", "target" : "741", "shared_name" : "7013 (interacts with) 4830", "name" : "7013 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 75138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75134", "source" : "629", "target" : "2993", "shared_name" : "7013 (interacts with) 51132", "name" : "7013 (interacts with) 51132", "interaction" : "interacts with", "SUID" : 75134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75170", "source" : "625", "target" : "1013", "shared_name" : "8942 (interacts with) 6898", "name" : "8942 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 75170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75166", "source" : "625", "target" : "2321", "shared_name" : "8942 (interacts with) 6509", "name" : "8942 (interacts with) 6509", "interaction" : "interacts with", "SUID" : 75166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75162", "source" : "625", "target" : "1385", "shared_name" : "8942 (interacts with) 6520", "name" : "8942 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 75162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75158", "source" : "625", "target" : "1017", "shared_name" : "8942 (interacts with) 11212", "name" : "8942 (interacts with) 11212", "interaction" : "interacts with", "SUID" : 75158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75154", "source" : "625", "target" : "5869", "shared_name" : "8942 (interacts with) 59", "name" : "8942 (interacts with) 59", "interaction" : "interacts with", "SUID" : 75154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75434", "source" : "621", "target" : "721", "shared_name" : "122961 (interacts with) 79731", "name" : "122961 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 75434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75430", "source" : "621", "target" : "5169", "shared_name" : "122961 (interacts with) 1355", "name" : "122961 (interacts with) 1355", "interaction" : "interacts with", "SUID" : 75430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75426", "source" : "621", "target" : "1573", "shared_name" : "122961 (interacts with) 4723", "name" : "122961 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 75426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75422", "source" : "621", "target" : "2609", "shared_name" : "122961 (interacts with) 29960", "name" : "122961 (interacts with) 29960", "interaction" : "interacts with", "SUID" : 75422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75418", "source" : "621", "target" : "1581", "shared_name" : "122961 (interacts with) 7407", "name" : "122961 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 75418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75414", "source" : "621", "target" : "5737", "shared_name" : "122961 (interacts with) 84340", "name" : "122961 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 75414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75410", "source" : "621", "target" : "5189", "shared_name" : "122961 (interacts with) 57176", "name" : "122961 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 75410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75406", "source" : "621", "target" : "5685", "shared_name" : "122961 (interacts with) 1340", "name" : "122961 (interacts with) 1340", "interaction" : "interacts with", "SUID" : 75406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75402", "source" : "621", "target" : "3617", "shared_name" : "122961 (interacts with) 4704", "name" : "122961 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 75402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75398", "source" : "621", "target" : "4945", "shared_name" : "122961 (interacts with) 4722", "name" : "122961 (interacts with) 4722", "interaction" : "interacts with", "SUID" : 75398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75394", "source" : "621", "target" : "1129", "shared_name" : "122961 (interacts with) 57505", "name" : "122961 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 75394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75390", "source" : "621", "target" : "5085", "shared_name" : "122961 (interacts with) 56652", "name" : "122961 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 75390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75386", "source" : "621", "target" : "3545", "shared_name" : "122961 (interacts with) 708", "name" : "122961 (interacts with) 708", "interaction" : "interacts with", "SUID" : 75386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75382", "source" : "621", "target" : "1105", "shared_name" : "122961 (interacts with) 493753", "name" : "122961 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 75382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75378", "source" : "621", "target" : "6073", "shared_name" : "122961 (interacts with) 92170", "name" : "122961 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 75378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75374", "source" : "621", "target" : "1921", "shared_name" : "122961 (interacts with) 1352", "name" : "122961 (interacts with) 1352", "interaction" : "interacts with", "SUID" : 75374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75370", "source" : "621", "target" : "2021", "shared_name" : "122961 (interacts with) 5428", "name" : "122961 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 75370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75366", "source" : "621", "target" : "6001", "shared_name" : "122961 (interacts with) 55157", "name" : "122961 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 75366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75362", "source" : "621", "target" : "2297", "shared_name" : "122961 (interacts with) 55005", "name" : "122961 (interacts with) 55005", "interaction" : "interacts with", "SUID" : 75362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75358", "source" : "621", "target" : "1197", "shared_name" : "122961 (interacts with) 79587", "name" : "122961 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 75358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75354", "source" : "621", "target" : "4141", "shared_name" : "122961 (interacts with) 617", "name" : "122961 (interacts with) 617", "interaction" : "interacts with", "SUID" : 75354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75350", "source" : "621", "target" : "793", "shared_name" : "122961 (interacts with) 137682", "name" : "122961 (interacts with) 137682", "interaction" : "interacts with", "SUID" : 75350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75346", "source" : "621", "target" : "1669", "shared_name" : "122961 (interacts with) 6390", "name" : "122961 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 75346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75342", "source" : "621", "target" : "4693", "shared_name" : "122961 (interacts with) 6301", "name" : "122961 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 75342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75338", "source" : "621", "target" : "5689", "shared_name" : "122961 (interacts with) 27089", "name" : "122961 (interacts with) 27089", "interaction" : "interacts with", "SUID" : 75338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75334", "source" : "621", "target" : "4621", "shared_name" : "122961 (interacts with) 57038", "name" : "122961 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 75334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75330", "source" : "621", "target" : "2105", "shared_name" : "122961 (interacts with) 56945", "name" : "122961 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 75330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75326", "source" : "621", "target" : "2689", "shared_name" : "122961 (interacts with) 4715", "name" : "122961 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 75326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75322", "source" : "621", "target" : "5853", "shared_name" : "122961 (interacts with) 4709", "name" : "122961 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 75322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75318", "source" : "621", "target" : "4757", "shared_name" : "122961 (interacts with) 9997", "name" : "122961 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 75318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75314", "source" : "621", "target" : "4069", "shared_name" : "122961 (interacts with) 374291", "name" : "122961 (interacts with) 374291", "interaction" : "interacts with", "SUID" : 75314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75310", "source" : "621", "target" : "4261", "shared_name" : "122961 (interacts with) 124454", "name" : "122961 (interacts with) 124454", "interaction" : "interacts with", "SUID" : 75310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75306", "source" : "621", "target" : "4897", "shared_name" : "122961 (interacts with) 55149", "name" : "122961 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 75306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75302", "source" : "621", "target" : "2337", "shared_name" : "122961 (interacts with) 28976", "name" : "122961 (interacts with) 28976", "interaction" : "interacts with", "SUID" : 75302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75298", "source" : "621", "target" : "2477", "shared_name" : "122961 (interacts with) 57107", "name" : "122961 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 75298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75294", "source" : "621", "target" : "2009", "shared_name" : "122961 (interacts with) 79133", "name" : "122961 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 75294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75290", "source" : "621", "target" : "1369", "shared_name" : "122961 (interacts with) 27247", "name" : "122961 (interacts with) 27247", "interaction" : "interacts with", "SUID" : 75290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75286", "source" : "621", "target" : "3633", "shared_name" : "122961 (interacts with) 51067", "name" : "122961 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 75286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75282", "source" : "621", "target" : "477", "shared_name" : "122961 (interacts with) 51021", "name" : "122961 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 75282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75278", "source" : "621", "target" : "4409", "shared_name" : "122961 (interacts with) 6341", "name" : "122961 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 75278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75274", "source" : "621", "target" : "4061", "shared_name" : "122961 (interacts with) 4705", "name" : "122961 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 75274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75270", "source" : "621", "target" : "1089", "shared_name" : "122961 (interacts with) 5917", "name" : "122961 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 75270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75266", "source" : "621", "target" : "501", "shared_name" : "122961 (interacts with) 65993", "name" : "122961 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 75266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75262", "source" : "621", "target" : "4101", "shared_name" : "122961 (interacts with) 65260", "name" : "122961 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 75262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75258", "source" : "621", "target" : "3761", "shared_name" : "122961 (interacts with) 25915", "name" : "122961 (interacts with) 25915", "interaction" : "interacts with", "SUID" : 75258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75254", "source" : "621", "target" : "4869", "shared_name" : "122961 (interacts with) 92935", "name" : "122961 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 75254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75250", "source" : "621", "target" : "713", "shared_name" : "122961 (interacts with) 7019", "name" : "122961 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 75250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75246", "source" : "621", "target" : "2825", "shared_name" : "122961 (interacts with) 126328", "name" : "122961 (interacts with) 126328", "interaction" : "interacts with", "SUID" : 75246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75242", "source" : "621", "target" : "5985", "shared_name" : "122961 (interacts with) 27235", "name" : "122961 (interacts with) 27235", "interaction" : "interacts with", "SUID" : 75242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75238", "source" : "621", "target" : "1561", "shared_name" : "122961 (interacts with) 51117", "name" : "122961 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 75238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75234", "source" : "621", "target" : "2109", "shared_name" : "122961 (interacts with) 51103", "name" : "122961 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 75234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75230", "source" : "621", "target" : "4017", "shared_name" : "122961 (interacts with) 4719", "name" : "122961 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 75230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75226", "source" : "621", "target" : "2741", "shared_name" : "122961 (interacts with) 4695", "name" : "122961 (interacts with) 4695", "interaction" : "interacts with", "SUID" : 75226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75222", "source" : "621", "target" : "3973", "shared_name" : "122961 (interacts with) 55572", "name" : "122961 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 75222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75218", "source" : "621", "target" : "5505", "shared_name" : "122961 (interacts with) 29078", "name" : "122961 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 75218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75214", "source" : "621", "target" : "1929", "shared_name" : "122961 (interacts with) 51218", "name" : "122961 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 75214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75210", "source" : "621", "target" : "2285", "shared_name" : "122961 (interacts with) 51300", "name" : "122961 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 75210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75206", "source" : "621", "target" : "5845", "shared_name" : "122961 (interacts with) 4714", "name" : "122961 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 75206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75202", "source" : "621", "target" : "1869", "shared_name" : "122961 (interacts with) 4729", "name" : "122961 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 75202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75198", "source" : "621", "target" : "2797", "shared_name" : "122961 (interacts with) 4728", "name" : "122961 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 75198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75194", "source" : "621", "target" : "2753", "shared_name" : "122961 (interacts with) 4720", "name" : "122961 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 75194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75190", "source" : "621", "target" : "2801", "shared_name" : "122961 (interacts with) 4700", "name" : "122961 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 75190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75186", "source" : "621", "target" : "489", "shared_name" : "122961 (interacts with) 1629", "name" : "122961 (interacts with) 1629", "interaction" : "interacts with", "SUID" : 75186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75182", "source" : "621", "target" : "1053", "shared_name" : "122961 (interacts with) 81689", "name" : "122961 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 75182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75178", "source" : "621", "target" : "2345", "shared_name" : "122961 (interacts with) 200205", "name" : "122961 (interacts with) 200205", "interaction" : "interacts with", "SUID" : 75178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75174", "source" : "621", "target" : "1049", "shared_name" : "122961 (interacts with) 5422", "name" : "122961 (interacts with) 5422", "interaction" : "interacts with", "SUID" : 75174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75454", "source" : "617", "target" : "2509", "shared_name" : "1630 (interacts with) 7204", "name" : "1630 (interacts with) 7204", "interaction" : "interacts with", "SUID" : 75454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75450", "source" : "617", "target" : "3277", "shared_name" : "1630 (interacts with) 9423", "name" : "1630 (interacts with) 9423", "interaction" : "interacts with", "SUID" : 75450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75446", "source" : "617", "target" : "1069", "shared_name" : "1630 (interacts with) 5879", "name" : "1630 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 75446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75442", "source" : "617", "target" : "817", "shared_name" : "1630 (interacts with) 5728", "name" : "1630 (interacts with) 5728", "interaction" : "interacts with", "SUID" : 75442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75438", "source" : "617", "target" : "1845", "shared_name" : "1630 (interacts with) 836", "name" : "1630 (interacts with) 836", "interaction" : "interacts with", "SUID" : 75438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75482", "source" : "613", "target" : "5773", "shared_name" : "10381 (interacts with) 9181", "name" : "10381 (interacts with) 9181", "interaction" : "interacts with", "SUID" : 75482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75478", "source" : "613", "target" : "4049", "shared_name" : "10381 (interacts with) 27436", "name" : "10381 (interacts with) 27436", "interaction" : "interacts with", "SUID" : 75478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75474", "source" : "613", "target" : "5573", "shared_name" : "10381 (interacts with) 84061", "name" : "10381 (interacts with) 84061", "interaction" : "interacts with", "SUID" : 75474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75470", "source" : "613", "target" : "3297", "shared_name" : "10381 (interacts with) 3383", "name" : "10381 (interacts with) 3383", "interaction" : "interacts with", "SUID" : 75470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75466", "source" : "613", "target" : "6185", "shared_name" : "10381 (interacts with) 4035", "name" : "10381 (interacts with) 4035", "interaction" : "interacts with", "SUID" : 75466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75462", "source" : "613", "target" : "5337", "shared_name" : "10381 (interacts with) 84876", "name" : "10381 (interacts with) 84876", "interaction" : "interacts with", "SUID" : 75462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75458", "source" : "613", "target" : "5373", "shared_name" : "10381 (interacts with) 28962", "name" : "10381 (interacts with) 28962", "interaction" : "interacts with", "SUID" : 75458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75490", "source" : "609", "target" : "5785", "shared_name" : "6812 (interacts with) 6857", "name" : "6812 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 75490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75486", "source" : "609", "target" : "4661", "shared_name" : "6812 (interacts with) 6813", "name" : "6812 (interacts with) 6813", "interaction" : "interacts with", "SUID" : 75486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75710", "source" : "597", "target" : "957", "shared_name" : "271 (interacts with) 5230", "name" : "271 (interacts with) 5230", "interaction" : "interacts with", "SUID" : 75710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75706", "source" : "597", "target" : "781", "shared_name" : "271 (interacts with) 4860", "name" : "271 (interacts with) 4860", "interaction" : "interacts with", "SUID" : 75706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75702", "source" : "597", "target" : "5201", "shared_name" : "271 (interacts with) 353", "name" : "271 (interacts with) 353", "interaction" : "interacts with", "SUID" : 75702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75698", "source" : "597", "target" : "1657", "shared_name" : "271 (interacts with) 3251", "name" : "271 (interacts with) 3251", "interaction" : "interacts with", "SUID" : 75698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75694", "source" : "597", "target" : "1493", "shared_name" : "271 (interacts with) 7428", "name" : "271 (interacts with) 7428", "interaction" : "interacts with", "SUID" : 75694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75690", "source" : "597", "target" : "1581", "shared_name" : "271 (interacts with) 7407", "name" : "271 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 75690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75686", "source" : "597", "target" : "3321", "shared_name" : "271 (interacts with) 79876", "name" : "271 (interacts with) 79876", "interaction" : "interacts with", "SUID" : 75686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75682", "source" : "597", "target" : "1413", "shared_name" : "271 (interacts with) 7337", "name" : "271 (interacts with) 7337", "interaction" : "interacts with", "SUID" : 75682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75678", "source" : "597", "target" : "961", "shared_name" : "271 (interacts with) 7318", "name" : "271 (interacts with) 7318", "interaction" : "interacts with", "SUID" : 75678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75674", "source" : "597", "target" : "4645", "shared_name" : "271 (interacts with) 84231", "name" : "271 (interacts with) 84231", "interaction" : "interacts with", "SUID" : 75674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75670", "source" : "597", "target" : "1073", "shared_name" : "271 (interacts with) 27010", "name" : "271 (interacts with) 27010", "interaction" : "interacts with", "SUID" : 75670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75666", "source" : "597", "target" : "5809", "shared_name" : "271 (interacts with) 140691", "name" : "271 (interacts with) 140691", "interaction" : "interacts with", "SUID" : 75666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75662", "source" : "597", "target" : "1629", "shared_name" : "271 (interacts with) 6047", "name" : "271 (interacts with) 6047", "interaction" : "interacts with", "SUID" : 75662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75658", "source" : "597", "target" : "4693", "shared_name" : "271 (interacts with) 6301", "name" : "271 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 75658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75654", "source" : "597", "target" : "2993", "shared_name" : "271 (interacts with) 51132", "name" : "271 (interacts with) 51132", "interaction" : "interacts with", "SUID" : 75654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75650", "source" : "597", "target" : "5117", "shared_name" : "271 (interacts with) 25897", "name" : "271 (interacts with) 25897", "interaction" : "interacts with", "SUID" : 75650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75646", "source" : "597", "target" : "4993", "shared_name" : "271 (interacts with) 8622", "name" : "271 (interacts with) 8622", "interaction" : "interacts with", "SUID" : 75646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75642", "source" : "597", "target" : "1089", "shared_name" : "271 (interacts with) 5917", "name" : "271 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 75642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75638", "source" : "597", "target" : "1713", "shared_name" : "271 (interacts with) 5631", "name" : "271 (interacts with) 5631", "interaction" : "interacts with", "SUID" : 75638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75634", "source" : "597", "target" : "4957", "shared_name" : "271 (interacts with) 5071", "name" : "271 (interacts with) 5071", "interaction" : "interacts with", "SUID" : 75634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75630", "source" : "597", "target" : "5841", "shared_name" : "271 (interacts with) 10846", "name" : "271 (interacts with) 10846", "interaction" : "interacts with", "SUID" : 75630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75626", "source" : "597", "target" : "3641", "shared_name" : "271 (interacts with) 4141", "name" : "271 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 75626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75622", "source" : "597", "target" : "3917", "shared_name" : "271 (interacts with) 22978", "name" : "271 (interacts with) 22978", "interaction" : "interacts with", "SUID" : 75622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75618", "source" : "597", "target" : "3649", "shared_name" : "271 (interacts with) 51520", "name" : "271 (interacts with) 51520", "interaction" : "interacts with", "SUID" : 75618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75614", "source" : "597", "target" : "4289", "shared_name" : "271 (interacts with) 90678", "name" : "271 (interacts with) 90678", "interaction" : "interacts with", "SUID" : 75614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75610", "source" : "597", "target" : "6157", "shared_name" : "271 (interacts with) 3735", "name" : "271 (interacts with) 3735", "interaction" : "interacts with", "SUID" : 75610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75606", "source" : "597", "target" : "2145", "shared_name" : "271 (interacts with) 8924", "name" : "271 (interacts with) 8924", "interaction" : "interacts with", "SUID" : 75606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75602", "source" : "597", "target" : "4229", "shared_name" : "271 (interacts with) 3035", "name" : "271 (interacts with) 3035", "interaction" : "interacts with", "SUID" : 75602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75598", "source" : "597", "target" : "4597", "shared_name" : "271 (interacts with) 3376", "name" : "271 (interacts with) 3376", "interaction" : "interacts with", "SUID" : 75598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75594", "source" : "597", "target" : "3249", "shared_name" : "271 (interacts with) 10075", "name" : "271 (interacts with) 10075", "interaction" : "interacts with", "SUID" : 75594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75590", "source" : "597", "target" : "2617", "shared_name" : "271 (interacts with) 57531", "name" : "271 (interacts with) 57531", "interaction" : "interacts with", "SUID" : 75590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75586", "source" : "597", "target" : "4917", "shared_name" : "271 (interacts with) 10243", "name" : "271 (interacts with) 10243", "interaction" : "interacts with", "SUID" : 75586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75582", "source" : "597", "target" : "4093", "shared_name" : "271 (interacts with) 2752", "name" : "271 (interacts with) 2752", "interaction" : "interacts with", "SUID" : 75582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75578", "source" : "597", "target" : "3217", "shared_name" : "271 (interacts with) 8139", "name" : "271 (interacts with) 8139", "interaction" : "interacts with", "SUID" : 75578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75574", "source" : "597", "target" : "561", "shared_name" : "271 (interacts with) 26235", "name" : "271 (interacts with) 26235", "interaction" : "interacts with", "SUID" : 75574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75570", "source" : "597", "target" : "2361", "shared_name" : "271 (interacts with) 51010", "name" : "271 (interacts with) 51010", "interaction" : "interacts with", "SUID" : 75570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75566", "source" : "597", "target" : "4733", "shared_name" : "271 (interacts with) 23404", "name" : "271 (interacts with) 23404", "interaction" : "interacts with", "SUID" : 75566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75562", "source" : "597", "target" : "4593", "shared_name" : "271 (interacts with) 2058", "name" : "271 (interacts with) 2058", "interaction" : "interacts with", "SUID" : 75562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75558", "source" : "597", "target" : "645", "shared_name" : "271 (interacts with) 10056", "name" : "271 (interacts with) 10056", "interaction" : "interacts with", "SUID" : 75558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75554", "source" : "597", "target" : "2073", "shared_name" : "271 (interacts with) 5393", "name" : "271 (interacts with) 5393", "interaction" : "interacts with", "SUID" : 75554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75550", "source" : "597", "target" : "3097", "shared_name" : "271 (interacts with) 11340", "name" : "271 (interacts with) 11340", "interaction" : "interacts with", "SUID" : 75550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75546", "source" : "597", "target" : "3169", "shared_name" : "271 (interacts with) 1615", "name" : "271 (interacts with) 1615", "interaction" : "interacts with", "SUID" : 75546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75542", "source" : "597", "target" : "2113", "shared_name" : "271 (interacts with) 158506", "name" : "271 (interacts with) 158506", "interaction" : "interacts with", "SUID" : 75542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75538", "source" : "597", "target" : "1725", "shared_name" : "271 (interacts with) 23019", "name" : "271 (interacts with) 23019", "interaction" : "interacts with", "SUID" : 75538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75534", "source" : "597", "target" : "4737", "shared_name" : "271 (interacts with) 445", "name" : "271 (interacts with) 445", "interaction" : "interacts with", "SUID" : 75534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75530", "source" : "597", "target" : "5349", "shared_name" : "271 (interacts with) 440", "name" : "271 (interacts with) 440", "interaction" : "interacts with", "SUID" : 75530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75526", "source" : "597", "target" : "3793", "shared_name" : "271 (interacts with) 28965", "name" : "271 (interacts with) 28965", "interaction" : "interacts with", "SUID" : 75526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75522", "source" : "597", "target" : "1681", "shared_name" : "271 (interacts with) 9990", "name" : "271 (interacts with) 9990", "interaction" : "interacts with", "SUID" : 75522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75518", "source" : "597", "target" : "1809", "shared_name" : "271 (interacts with) 6548", "name" : "271 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 75518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75514", "source" : "597", "target" : "1849", "shared_name" : "271 (interacts with) 26275", "name" : "271 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 75514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75510", "source" : "597", "target" : "4045", "shared_name" : "271 (interacts with) 29920", "name" : "271 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 75510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75506", "source" : "597", "target" : "3501", "shared_name" : "271 (interacts with) 5831", "name" : "271 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 75506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75502", "source" : "597", "target" : "2161", "shared_name" : "271 (interacts with) 55163", "name" : "271 (interacts with) 55163", "interaction" : "interacts with", "SUID" : 75502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75498", "source" : "597", "target" : "2945", "shared_name" : "271 (interacts with) 471", "name" : "271 (interacts with) 471", "interaction" : "interacts with", "SUID" : 75498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75494", "source" : "597", "target" : "589", "shared_name" : "271 (interacts with) 270", "name" : "271 (interacts with) 270", "interaction" : "interacts with", "SUID" : 75494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75714", "source" : "593", "target" : "829", "shared_name" : "8743 (interacts with) 8772", "name" : "8743 (interacts with) 8772", "interaction" : "interacts with", "SUID" : 75714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75934", "source" : "589", "target" : "597", "shared_name" : "270 (interacts with) 271", "name" : "270 (interacts with) 271", "interaction" : "interacts with", "SUID" : 75934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75930", "source" : "589", "target" : "957", "shared_name" : "270 (interacts with) 5230", "name" : "270 (interacts with) 5230", "interaction" : "interacts with", "SUID" : 75930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75926", "source" : "589", "target" : "781", "shared_name" : "270 (interacts with) 4860", "name" : "270 (interacts with) 4860", "interaction" : "interacts with", "SUID" : 75926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75922", "source" : "589", "target" : "5201", "shared_name" : "270 (interacts with) 353", "name" : "270 (interacts with) 353", "interaction" : "interacts with", "SUID" : 75922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75918", "source" : "589", "target" : "1657", "shared_name" : "270 (interacts with) 3251", "name" : "270 (interacts with) 3251", "interaction" : "interacts with", "SUID" : 75918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75914", "source" : "589", "target" : "1581", "shared_name" : "270 (interacts with) 7407", "name" : "270 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 75914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75910", "source" : "589", "target" : "1493", "shared_name" : "270 (interacts with) 7428", "name" : "270 (interacts with) 7428", "interaction" : "interacts with", "SUID" : 75910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75906", "source" : "589", "target" : "961", "shared_name" : "270 (interacts with) 7318", "name" : "270 (interacts with) 7318", "interaction" : "interacts with", "SUID" : 75906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75902", "source" : "589", "target" : "3321", "shared_name" : "270 (interacts with) 79876", "name" : "270 (interacts with) 79876", "interaction" : "interacts with", "SUID" : 75902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75898", "source" : "589", "target" : "1413", "shared_name" : "270 (interacts with) 7337", "name" : "270 (interacts with) 7337", "interaction" : "interacts with", "SUID" : 75898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75894", "source" : "589", "target" : "4645", "shared_name" : "270 (interacts with) 84231", "name" : "270 (interacts with) 84231", "interaction" : "interacts with", "SUID" : 75894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75890", "source" : "589", "target" : "5809", "shared_name" : "270 (interacts with) 140691", "name" : "270 (interacts with) 140691", "interaction" : "interacts with", "SUID" : 75890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75886", "source" : "589", "target" : "1073", "shared_name" : "270 (interacts with) 27010", "name" : "270 (interacts with) 27010", "interaction" : "interacts with", "SUID" : 75886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75882", "source" : "589", "target" : "4693", "shared_name" : "270 (interacts with) 6301", "name" : "270 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 75882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75878", "source" : "589", "target" : "1629", "shared_name" : "270 (interacts with) 6047", "name" : "270 (interacts with) 6047", "interaction" : "interacts with", "SUID" : 75878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75874", "source" : "589", "target" : "2993", "shared_name" : "270 (interacts with) 51132", "name" : "270 (interacts with) 51132", "interaction" : "interacts with", "SUID" : 75874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75870", "source" : "589", "target" : "5117", "shared_name" : "270 (interacts with) 25897", "name" : "270 (interacts with) 25897", "interaction" : "interacts with", "SUID" : 75870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75866", "source" : "589", "target" : "4957", "shared_name" : "270 (interacts with) 5071", "name" : "270 (interacts with) 5071", "interaction" : "interacts with", "SUID" : 75866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75862", "source" : "589", "target" : "4993", "shared_name" : "270 (interacts with) 8622", "name" : "270 (interacts with) 8622", "interaction" : "interacts with", "SUID" : 75862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75858", "source" : "589", "target" : "1089", "shared_name" : "270 (interacts with) 5917", "name" : "270 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 75858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75854", "source" : "589", "target" : "1713", "shared_name" : "270 (interacts with) 5631", "name" : "270 (interacts with) 5631", "interaction" : "interacts with", "SUID" : 75854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75850", "source" : "589", "target" : "5841", "shared_name" : "270 (interacts with) 10846", "name" : "270 (interacts with) 10846", "interaction" : "interacts with", "SUID" : 75850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75846", "source" : "589", "target" : "3917", "shared_name" : "270 (interacts with) 22978", "name" : "270 (interacts with) 22978", "interaction" : "interacts with", "SUID" : 75846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75842", "source" : "589", "target" : "3649", "shared_name" : "270 (interacts with) 51520", "name" : "270 (interacts with) 51520", "interaction" : "interacts with", "SUID" : 75842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75838", "source" : "589", "target" : "3641", "shared_name" : "270 (interacts with) 4141", "name" : "270 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 75838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75834", "source" : "589", "target" : "4289", "shared_name" : "270 (interacts with) 90678", "name" : "270 (interacts with) 90678", "interaction" : "interacts with", "SUID" : 75834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75830", "source" : "589", "target" : "6157", "shared_name" : "270 (interacts with) 3735", "name" : "270 (interacts with) 3735", "interaction" : "interacts with", "SUID" : 75830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75826", "source" : "589", "target" : "2145", "shared_name" : "270 (interacts with) 8924", "name" : "270 (interacts with) 8924", "interaction" : "interacts with", "SUID" : 75826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75822", "source" : "589", "target" : "4597", "shared_name" : "270 (interacts with) 3376", "name" : "270 (interacts with) 3376", "interaction" : "interacts with", "SUID" : 75822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75818", "source" : "589", "target" : "3249", "shared_name" : "270 (interacts with) 10075", "name" : "270 (interacts with) 10075", "interaction" : "interacts with", "SUID" : 75818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75814", "source" : "589", "target" : "4229", "shared_name" : "270 (interacts with) 3035", "name" : "270 (interacts with) 3035", "interaction" : "interacts with", "SUID" : 75814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75810", "source" : "589", "target" : "2617", "shared_name" : "270 (interacts with) 57531", "name" : "270 (interacts with) 57531", "interaction" : "interacts with", "SUID" : 75810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75806", "source" : "589", "target" : "4917", "shared_name" : "270 (interacts with) 10243", "name" : "270 (interacts with) 10243", "interaction" : "interacts with", "SUID" : 75806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75802", "source" : "589", "target" : "4093", "shared_name" : "270 (interacts with) 2752", "name" : "270 (interacts with) 2752", "interaction" : "interacts with", "SUID" : 75802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75798", "source" : "589", "target" : "3217", "shared_name" : "270 (interacts with) 8139", "name" : "270 (interacts with) 8139", "interaction" : "interacts with", "SUID" : 75798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75794", "source" : "589", "target" : "561", "shared_name" : "270 (interacts with) 26235", "name" : "270 (interacts with) 26235", "interaction" : "interacts with", "SUID" : 75794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75790", "source" : "589", "target" : "2361", "shared_name" : "270 (interacts with) 51010", "name" : "270 (interacts with) 51010", "interaction" : "interacts with", "SUID" : 75790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75786", "source" : "589", "target" : "4733", "shared_name" : "270 (interacts with) 23404", "name" : "270 (interacts with) 23404", "interaction" : "interacts with", "SUID" : 75786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75782", "source" : "589", "target" : "4593", "shared_name" : "270 (interacts with) 2058", "name" : "270 (interacts with) 2058", "interaction" : "interacts with", "SUID" : 75782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75778", "source" : "589", "target" : "645", "shared_name" : "270 (interacts with) 10056", "name" : "270 (interacts with) 10056", "interaction" : "interacts with", "SUID" : 75778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75774", "source" : "589", "target" : "2073", "shared_name" : "270 (interacts with) 5393", "name" : "270 (interacts with) 5393", "interaction" : "interacts with", "SUID" : 75774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75770", "source" : "589", "target" : "3097", "shared_name" : "270 (interacts with) 11340", "name" : "270 (interacts with) 11340", "interaction" : "interacts with", "SUID" : 75770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75766", "source" : "589", "target" : "3169", "shared_name" : "270 (interacts with) 1615", "name" : "270 (interacts with) 1615", "interaction" : "interacts with", "SUID" : 75766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75762", "source" : "589", "target" : "2113", "shared_name" : "270 (interacts with) 158506", "name" : "270 (interacts with) 158506", "interaction" : "interacts with", "SUID" : 75762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75758", "source" : "589", "target" : "1725", "shared_name" : "270 (interacts with) 23019", "name" : "270 (interacts with) 23019", "interaction" : "interacts with", "SUID" : 75758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75754", "source" : "589", "target" : "5349", "shared_name" : "270 (interacts with) 440", "name" : "270 (interacts with) 440", "interaction" : "interacts with", "SUID" : 75754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75750", "source" : "589", "target" : "4737", "shared_name" : "270 (interacts with) 445", "name" : "270 (interacts with) 445", "interaction" : "interacts with", "SUID" : 75750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75746", "source" : "589", "target" : "1809", "shared_name" : "270 (interacts with) 6548", "name" : "270 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 75746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75742", "source" : "589", "target" : "3793", "shared_name" : "270 (interacts with) 28965", "name" : "270 (interacts with) 28965", "interaction" : "interacts with", "SUID" : 75742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75738", "source" : "589", "target" : "1681", "shared_name" : "270 (interacts with) 9990", "name" : "270 (interacts with) 9990", "interaction" : "interacts with", "SUID" : 75738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75734", "source" : "589", "target" : "1849", "shared_name" : "270 (interacts with) 26275", "name" : "270 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 75734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75730", "source" : "589", "target" : "4045", "shared_name" : "270 (interacts with) 29920", "name" : "270 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 75730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75726", "source" : "589", "target" : "3501", "shared_name" : "270 (interacts with) 5831", "name" : "270 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 75726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75722", "source" : "589", "target" : "2161", "shared_name" : "270 (interacts with) 55163", "name" : "270 (interacts with) 55163", "interaction" : "interacts with", "SUID" : 75722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75718", "source" : "589", "target" : "2945", "shared_name" : "270 (interacts with) 471", "name" : "270 (interacts with) 471", "interaction" : "interacts with", "SUID" : 75718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75958", "source" : "585", "target" : "5941", "shared_name" : "3214 (interacts with) 5914", "name" : "3214 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 75958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75954", "source" : "585", "target" : "3825", "shared_name" : "3214 (interacts with) 5915", "name" : "3214 (interacts with) 5915", "interaction" : "interacts with", "SUID" : 75954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75950", "source" : "585", "target" : "5861", "shared_name" : "3214 (interacts with) 5435", "name" : "3214 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 75950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75946", "source" : "585", "target" : "2649", "shared_name" : "3214 (interacts with) 5430", "name" : "3214 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 75946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75942", "source" : "585", "target" : "4097", "shared_name" : "3214 (interacts with) 9611", "name" : "3214 (interacts with) 9611", "interaction" : "interacts with", "SUID" : 75942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75938", "source" : "585", "target" : "3769", "shared_name" : "3214 (interacts with) 8085", "name" : "3214 (interacts with) 8085", "interaction" : "interacts with", "SUID" : 75938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75966", "source" : "581", "target" : "3077", "shared_name" : "57679 (interacts with) 6506", "name" : "57679 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 75966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75962", "source" : "581", "target" : "4697", "shared_name" : "57679 (interacts with) 7534", "name" : "57679 (interacts with) 7534", "interaction" : "interacts with", "SUID" : 75962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76122", "source" : "573", "target" : "4349", "shared_name" : "3155 (interacts with) 5859", "name" : "3155 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 76122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76118", "source" : "573", "target" : "1969", "shared_name" : "3155 (interacts with) 4598", "name" : "3155 (interacts with) 4598", "interaction" : "interacts with", "SUID" : 76118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76114", "source" : "573", "target" : "517", "shared_name" : "3155 (interacts with) 5052", "name" : "3155 (interacts with) 5052", "interaction" : "interacts with", "SUID" : 76114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76110", "source" : "573", "target" : "845", "shared_name" : "3155 (interacts with) 4358", "name" : "3155 (interacts with) 4358", "interaction" : "interacts with", "SUID" : 76110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76106", "source" : "573", "target" : "5825", "shared_name" : "3155 (interacts with) 4594", "name" : "3155 (interacts with) 4594", "interaction" : "interacts with", "SUID" : 76106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76102", "source" : "573", "target" : "1525", "shared_name" : "3155 (interacts with) 3295", "name" : "3155 (interacts with) 3295", "interaction" : "interacts with", "SUID" : 76102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76098", "source" : "573", "target" : "2353", "shared_name" : "3155 (interacts with) 5264", "name" : "3155 (interacts with) 5264", "interaction" : "interacts with", "SUID" : 76098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76094", "source" : "573", "target" : "5545", "shared_name" : "3155 (interacts with) 5195", "name" : "3155 (interacts with) 5195", "interaction" : "interacts with", "SUID" : 76094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76090", "source" : "573", "target" : "1953", "shared_name" : "3155 (interacts with) 5194", "name" : "3155 (interacts with) 5194", "interaction" : "interacts with", "SUID" : 76090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76086", "source" : "573", "target" : "4297", "shared_name" : "3155 (interacts with) 5193", "name" : "3155 (interacts with) 5193", "interaction" : "interacts with", "SUID" : 76086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76082", "source" : "573", "target" : "5865", "shared_name" : "3155 (interacts with) 5192", "name" : "3155 (interacts with) 5192", "interaction" : "interacts with", "SUID" : 76082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76078", "source" : "573", "target" : "1977", "shared_name" : "3155 (interacts with) 5191", "name" : "3155 (interacts with) 5191", "interaction" : "interacts with", "SUID" : 76078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76074", "source" : "573", "target" : "4505", "shared_name" : "3155 (interacts with) 5190", "name" : "3155 (interacts with) 5190", "interaction" : "interacts with", "SUID" : 76074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76070", "source" : "573", "target" : "5677", "shared_name" : "3155 (interacts with) 5189", "name" : "3155 (interacts with) 5189", "interaction" : "interacts with", "SUID" : 76070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76066", "source" : "573", "target" : "196", "shared_name" : "3155 (interacts with) 84188", "name" : "3155 (interacts with) 84188", "interaction" : "interacts with", "SUID" : 76066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76062", "source" : "573", "target" : "5237", "shared_name" : "3155 (interacts with) 5830", "name" : "3155 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 76062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76058", "source" : "573", "target" : "5205", "shared_name" : "3155 (interacts with) 5828", "name" : "3155 (interacts with) 5828", "interaction" : "interacts with", "SUID" : 76058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76054", "source" : "573", "target" : "5873", "shared_name" : "3155 (interacts with) 5827", "name" : "3155 (interacts with) 5827", "interaction" : "interacts with", "SUID" : 76054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76050", "source" : "573", "target" : "3329", "shared_name" : "3155 (interacts with) 5824", "name" : "3155 (interacts with) 5824", "interaction" : "interacts with", "SUID" : 76050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76046", "source" : "573", "target" : "2325", "shared_name" : "3155 (interacts with) 55670", "name" : "3155 (interacts with) 55670", "interaction" : "interacts with", "SUID" : 76046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76042", "source" : "573", "target" : "3333", "shared_name" : "3155 (interacts with) 9409", "name" : "3155 (interacts with) 9409", "interaction" : "interacts with", "SUID" : 76042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76038", "source" : "573", "target" : "4301", "shared_name" : "3155 (interacts with) 8799", "name" : "3155 (interacts with) 8799", "interaction" : "interacts with", "SUID" : 76038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76034", "source" : "573", "target" : "3341", "shared_name" : "3155 (interacts with) 8504", "name" : "3155 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 76034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76030", "source" : "573", "target" : "2025", "shared_name" : "3155 (interacts with) 549", "name" : "3155 (interacts with) 549", "interaction" : "interacts with", "SUID" : 76030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76026", "source" : "573", "target" : "1189", "shared_name" : "3155 (interacts with) 7915", "name" : "3155 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 76026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76022", "source" : "573", "target" : "493", "shared_name" : "3155 (interacts with) 594", "name" : "3155 (interacts with) 594", "interaction" : "interacts with", "SUID" : 76022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76018", "source" : "573", "target" : "485", "shared_name" : "3155 (interacts with) 593", "name" : "3155 (interacts with) 593", "interaction" : "interacts with", "SUID" : 76018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76014", "source" : "573", "target" : "1301", "shared_name" : "3155 (interacts with) 5095", "name" : "3155 (interacts with) 5095", "interaction" : "interacts with", "SUID" : 76014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76010", "source" : "573", "target" : "4745", "shared_name" : "3155 (interacts with) 35", "name" : "3155 (interacts with) 35", "interaction" : "interacts with", "SUID" : 76010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76006", "source" : "573", "target" : "977", "shared_name" : "3155 (interacts with) 79944", "name" : "3155 (interacts with) 79944", "interaction" : "interacts with", "SUID" : 76006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76002", "source" : "573", "target" : "3445", "shared_name" : "3155 (interacts with) 5091", "name" : "3155 (interacts with) 5091", "interaction" : "interacts with", "SUID" : 76002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75998", "source" : "573", "target" : "1981", "shared_name" : "3155 (interacts with) 339983", "name" : "3155 (interacts with) 339983", "interaction" : "interacts with", "SUID" : 75998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75994", "source" : "573", "target" : "2881", "shared_name" : "3155 (interacts with) 5160", "name" : "3155 (interacts with) 5160", "interaction" : "interacts with", "SUID" : 75994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75990", "source" : "573", "target" : "1485", "shared_name" : "3155 (interacts with) 8050", "name" : "3155 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 75990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75986", "source" : "573", "target" : "1437", "shared_name" : "3155 (interacts with) 80025", "name" : "3155 (interacts with) 80025", "interaction" : "interacts with", "SUID" : 75986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75982", "source" : "573", "target" : "4169", "shared_name" : "3155 (interacts with) 10993", "name" : "3155 (interacts with) 10993", "interaction" : "interacts with", "SUID" : 75982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75978", "source" : "573", "target" : "4189", "shared_name" : "3155 (interacts with) 2744", "name" : "3155 (interacts with) 2744", "interaction" : "interacts with", "SUID" : 75978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75974", "source" : "573", "target" : "3705", "shared_name" : "3155 (interacts with) 87178", "name" : "3155 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 75974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "75970", "source" : "573", "target" : "1021", "shared_name" : "3155 (interacts with) 5096", "name" : "3155 (interacts with) 5096", "interaction" : "interacts with", "SUID" : 75970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76162", "source" : "569", "target" : "981", "shared_name" : "7048 (interacts with) 7157", "name" : "7048 (interacts with) 7157", "interaction" : "interacts with", "SUID" : 76162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76158", "source" : "569", "target" : "4065", "shared_name" : "7048 (interacts with) 7124", "name" : "7048 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 76158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76154", "source" : "569", "target" : "5745", "shared_name" : "7048 (interacts with) 7471", "name" : "7048 (interacts with) 7471", "interaction" : "interacts with", "SUID" : 76154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76150", "source" : "569", "target" : "789", "shared_name" : "7048 (interacts with) 1616", "name" : "7048 (interacts with) 1616", "interaction" : "interacts with", "SUID" : 76150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76146", "source" : "569", "target" : "6121", "shared_name" : "7048 (interacts with) 2260", "name" : "7048 (interacts with) 2260", "interaction" : "interacts with", "SUID" : 76146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76142", "source" : "569", "target" : "4213", "shared_name" : "7048 (interacts with) 5295", "name" : "7048 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 76142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76138", "source" : "569", "target" : "1733", "shared_name" : "7048 (interacts with) 6305", "name" : "7048 (interacts with) 6305", "interaction" : "interacts with", "SUID" : 76138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76134", "source" : "569", "target" : "3465", "shared_name" : "7048 (interacts with) 5296", "name" : "7048 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 76134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76130", "source" : "569", "target" : "3409", "shared_name" : "7048 (interacts with) 7043", "name" : "7048 (interacts with) 7043", "interaction" : "interacts with", "SUID" : 76130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76126", "source" : "569", "target" : "3305", "shared_name" : "7048 (interacts with) 7040", "name" : "7048 (interacts with) 7040", "interaction" : "interacts with", "SUID" : 76126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76250", "source" : "565", "target" : "5081", "shared_name" : "4772 (interacts with) 5594", "name" : "4772 (interacts with) 5594", "interaction" : "interacts with", "SUID" : 76250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76246", "source" : "565", "target" : "973", "shared_name" : "4772 (interacts with) 5595", "name" : "4772 (interacts with) 5595", "interaction" : "interacts with", "SUID" : 76246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76242", "source" : "565", "target" : "5225", "shared_name" : "4772 (interacts with) 5290", "name" : "4772 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 76242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76238", "source" : "565", "target" : "4521", "shared_name" : "4772 (interacts with) 5894", "name" : "4772 (interacts with) 5894", "interaction" : "interacts with", "SUID" : 76238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76234", "source" : "565", "target" : "4949", "shared_name" : "4772 (interacts with) 5970", "name" : "4772 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 76234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76230", "source" : "565", "target" : "4213", "shared_name" : "4772 (interacts with) 5295", "name" : "4772 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 76230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76226", "source" : "565", "target" : "5361", "shared_name" : "4772 (interacts with) 5604", "name" : "4772 (interacts with) 5604", "interaction" : "interacts with", "SUID" : 76226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76222", "source" : "565", "target" : "3017", "shared_name" : "4772 (interacts with) 4790", "name" : "4772 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 76222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76218", "source" : "565", "target" : "4857", "shared_name" : "4772 (interacts with) 5573", "name" : "4772 (interacts with) 5573", "interaction" : "interacts with", "SUID" : 76218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76214", "source" : "565", "target" : "1069", "shared_name" : "4772 (interacts with) 5879", "name" : "4772 (interacts with) 5879", "interaction" : "interacts with", "SUID" : 76214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76210", "source" : "565", "target" : "993", "shared_name" : "4772 (interacts with) 801", "name" : "4772 (interacts with) 801", "interaction" : "interacts with", "SUID" : 76210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76206", "source" : "565", "target" : "1241", "shared_name" : "4772 (interacts with) 808", "name" : "4772 (interacts with) 808", "interaction" : "interacts with", "SUID" : 76206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76202", "source" : "565", "target" : "1201", "shared_name" : "4772 (interacts with) 805", "name" : "4772 (interacts with) 805", "interaction" : "interacts with", "SUID" : 76202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76198", "source" : "565", "target" : "5149", "shared_name" : "4772 (interacts with) 5058", "name" : "4772 (interacts with) 5058", "interaction" : "interacts with", "SUID" : 76198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76194", "source" : "565", "target" : "637", "shared_name" : "4772 (interacts with) 6654", "name" : "4772 (interacts with) 6654", "interaction" : "interacts with", "SUID" : 76194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76190", "source" : "565", "target" : "3577", "shared_name" : "4772 (interacts with) 5605", "name" : "4772 (interacts with) 5605", "interaction" : "interacts with", "SUID" : 76190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76186", "source" : "565", "target" : "5313", "shared_name" : "4772 (interacts with) 6197", "name" : "4772 (interacts with) 6197", "interaction" : "interacts with", "SUID" : 76186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76182", "source" : "565", "target" : "3177", "shared_name" : "4772 (interacts with) 5321", "name" : "4772 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 76182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76178", "source" : "565", "target" : "5389", "shared_name" : "4772 (interacts with) 551", "name" : "4772 (interacts with) 551", "interaction" : "interacts with", "SUID" : 76178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76174", "source" : "565", "target" : "3853", "shared_name" : "4772 (interacts with) 6786", "name" : "4772 (interacts with) 6786", "interaction" : "interacts with", "SUID" : 76174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76170", "source" : "565", "target" : "2873", "shared_name" : "4772 (interacts with) 6261", "name" : "4772 (interacts with) 6261", "interaction" : "interacts with", "SUID" : 76170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76166", "source" : "565", "target" : "5337", "shared_name" : "4772 (interacts with) 84876", "name" : "4772 (interacts with) 84876", "interaction" : "interacts with", "SUID" : 76166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76270", "source" : "561", "target" : "1933", "shared_name" : "26235 (interacts with) 7335", "name" : "26235 (interacts with) 7335", "interaction" : "interacts with", "SUID" : 76270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76266", "source" : "561", "target" : "3729", "shared_name" : "26235 (interacts with) 7319", "name" : "26235 (interacts with) 7319", "interaction" : "interacts with", "SUID" : 76266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76262", "source" : "561", "target" : "961", "shared_name" : "26235 (interacts with) 7318", "name" : "26235 (interacts with) 7318", "interaction" : "interacts with", "SUID" : 76262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76258", "source" : "561", "target" : "541", "shared_name" : "26235 (interacts with) 10457", "name" : "26235 (interacts with) 10457", "interaction" : "interacts with", "SUID" : 76258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76254", "source" : "561", "target" : "693", "shared_name" : "26235 (interacts with) 7296", "name" : "26235 (interacts with) 7296", "interaction" : "interacts with", "SUID" : 76254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76274", "source" : "557", "target" : "5321", "shared_name" : "5730 (interacts with) 5743", "name" : "5730 (interacts with) 5743", "interaction" : "interacts with", "SUID" : 76274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76282", "source" : "553", "target" : "5693", "shared_name" : "7248 (interacts with) 92335", "name" : "7248 (interacts with) 92335", "interaction" : "interacts with", "SUID" : 76282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76278", "source" : "553", "target" : "1285", "shared_name" : "7248 (interacts with) 7249", "name" : "7248 (interacts with) 7249", "interaction" : "interacts with", "SUID" : 76278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76294", "source" : "545", "target" : "2525", "shared_name" : "51014 (interacts with) 9451", "name" : "51014 (interacts with) 9451", "interaction" : "interacts with", "SUID" : 76294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76290", "source" : "545", "target" : "1177", "shared_name" : "51014 (interacts with) 9928", "name" : "51014 (interacts with) 9928", "interaction" : "interacts with", "SUID" : 76290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76286", "source" : "545", "target" : "1153", "shared_name" : "51014 (interacts with) 116150", "name" : "51014 (interacts with) 116150", "interaction" : "interacts with", "SUID" : 76286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76318", "source" : "541", "target" : "3733", "shared_name" : "10457 (interacts with) 2760", "name" : "10457 (interacts with) 2760", "interaction" : "interacts with", "SUID" : 76318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76314", "source" : "541", "target" : "5073", "shared_name" : "10457 (interacts with) 7305", "name" : "10457 (interacts with) 7305", "interaction" : "interacts with", "SUID" : 76314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76310", "source" : "541", "target" : "5569", "shared_name" : "10457 (interacts with) 59345", "name" : "10457 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 76310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76306", "source" : "541", "target" : "3493", "shared_name" : "10457 (interacts with) 348", "name" : "10457 (interacts with) 348", "interaction" : "interacts with", "SUID" : 76306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76302", "source" : "541", "target" : "5577", "shared_name" : "10457 (interacts with) 3091", "name" : "10457 (interacts with) 3091", "interaction" : "interacts with", "SUID" : 76302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76298", "source" : "541", "target" : "4145", "shared_name" : "10457 (interacts with) 120892", "name" : "10457 (interacts with) 120892", "interaction" : "interacts with", "SUID" : 76298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76350", "source" : "537", "target" : "521", "shared_name" : "27429 (interacts with) 85476", "name" : "27429 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 76350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76346", "source" : "537", "target" : "5737", "shared_name" : "27429 (interacts with) 84340", "name" : "27429 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 76346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76342", "source" : "537", "target" : "2457", "shared_name" : "27429 (interacts with) 4143", "name" : "27429 (interacts with) 4143", "interaction" : "interacts with", "SUID" : 76342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76338", "source" : "537", "target" : "4309", "shared_name" : "27429 (interacts with) 5654", "name" : "27429 (interacts with) 5654", "interaction" : "interacts with", "SUID" : 76338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76334", "source" : "537", "target" : "1377", "shared_name" : "27429 (interacts with) 81570", "name" : "27429 (interacts with) 81570", "interaction" : "interacts with", "SUID" : 76334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76330", "source" : "537", "target" : "5965", "shared_name" : "27429 (interacts with) 596", "name" : "27429 (interacts with) 596", "interaction" : "interacts with", "SUID" : 76330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76326", "source" : "537", "target" : "4541", "shared_name" : "27429 (interacts with) 65018", "name" : "27429 (interacts with) 65018", "interaction" : "interacts with", "SUID" : 76326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76322", "source" : "537", "target" : "2757", "shared_name" : "27429 (interacts with) 51079", "name" : "27429 (interacts with) 51079", "interaction" : "interacts with", "SUID" : 76322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76406", "source" : "533", "target" : "5249", "shared_name" : "4036 (interacts with) 8643", "name" : "4036 (interacts with) 8643", "interaction" : "interacts with", "SUID" : 76406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76402", "source" : "533", "target" : "1181", "shared_name" : "4036 (interacts with) 51684", "name" : "4036 (interacts with) 51684", "interaction" : "interacts with", "SUID" : 76402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76398", "source" : "533", "target" : "4605", "shared_name" : "4036 (interacts with) 7276", "name" : "4036 (interacts with) 7276", "interaction" : "interacts with", "SUID" : 76398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76394", "source" : "533", "target" : "3473", "shared_name" : "4036 (interacts with) 6528", "name" : "4036 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 76394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76390", "source" : "533", "target" : "2765", "shared_name" : "4036 (interacts with) 50846", "name" : "4036 (interacts with) 50846", "interaction" : "interacts with", "SUID" : 76390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76386", "source" : "533", "target" : "2677", "shared_name" : "4036 (interacts with) 7436", "name" : "4036 (interacts with) 7436", "interaction" : "interacts with", "SUID" : 76386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76382", "source" : "533", "target" : "2969", "shared_name" : "4036 (interacts with) 8867", "name" : "4036 (interacts with) 8867", "interaction" : "interacts with", "SUID" : 76382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76378", "source" : "533", "target" : "4157", "shared_name" : "4036 (interacts with) 85021", "name" : "4036 (interacts with) 85021", "interaction" : "interacts with", "SUID" : 76378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76374", "source" : "533", "target" : "3465", "shared_name" : "4036 (interacts with) 5296", "name" : "4036 (interacts with) 5296", "interaction" : "interacts with", "SUID" : 76374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76370", "source" : "533", "target" : "4213", "shared_name" : "4036 (interacts with) 5295", "name" : "4036 (interacts with) 5295", "interaction" : "interacts with", "SUID" : 76370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76366", "source" : "533", "target" : "1909", "shared_name" : "4036 (interacts with) 5286", "name" : "4036 (interacts with) 5286", "interaction" : "interacts with", "SUID" : 76366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76362", "source" : "533", "target" : "5225", "shared_name" : "4036 (interacts with) 5290", "name" : "4036 (interacts with) 5290", "interaction" : "interacts with", "SUID" : 76362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76358", "source" : "533", "target" : "2429", "shared_name" : "4036 (interacts with) 4952", "name" : "4036 (interacts with) 4952", "interaction" : "interacts with", "SUID" : 76358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76354", "source" : "533", "target" : "5157", "shared_name" : "4036 (interacts with) 1600", "name" : "4036 (interacts with) 1600", "interaction" : "interacts with", "SUID" : 76354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76434", "source" : "529", "target" : "2249", "shared_name" : "23203 (interacts with) 25824", "name" : "23203 (interacts with) 25824", "interaction" : "interacts with", "SUID" : 76434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76430", "source" : "529", "target" : "893", "shared_name" : "23203 (interacts with) 9361", "name" : "23203 (interacts with) 9361", "interaction" : "interacts with", "SUID" : 76430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76426", "source" : "529", "target" : "3705", "shared_name" : "23203 (interacts with) 87178", "name" : "23203 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 76426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76422", "source" : "529", "target" : "3621", "shared_name" : "23203 (interacts with) 6834", "name" : "23203 (interacts with) 6834", "interaction" : "interacts with", "SUID" : 76422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76418", "source" : "529", "target" : "1389", "shared_name" : "23203 (interacts with) 92609", "name" : "23203 (interacts with) 92609", "interaction" : "interacts with", "SUID" : 76418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76414", "source" : "529", "target" : "2377", "shared_name" : "23203 (interacts with) 6687", "name" : "23203 (interacts with) 6687", "interaction" : "interacts with", "SUID" : 76414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76410", "source" : "529", "target" : "4353", "shared_name" : "23203 (interacts with) 9512", "name" : "23203 (interacts with) 9512", "interaction" : "interacts with", "SUID" : 76410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76462", "source" : "525", "target" : "2305", "shared_name" : "6598 (interacts with) 6908", "name" : "6598 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 76462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76458", "source" : "525", "target" : "4357", "shared_name" : "6598 (interacts with) 196528", "name" : "6598 (interacts with) 196528", "interaction" : "interacts with", "SUID" : 76458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76454", "source" : "525", "target" : "2317", "shared_name" : "6598 (interacts with) 51412", "name" : "6598 (interacts with) 51412", "interaction" : "interacts with", "SUID" : 76454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76450", "source" : "525", "target" : "3069", "shared_name" : "6598 (interacts with) 57492", "name" : "6598 (interacts with) 57492", "interaction" : "interacts with", "SUID" : 76450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76446", "source" : "525", "target" : "3093", "shared_name" : "6598 (interacts with) 6597", "name" : "6598 (interacts with) 6597", "interaction" : "interacts with", "SUID" : 76446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76442", "source" : "525", "target" : "3105", "shared_name" : "6598 (interacts with) 8289", "name" : "6598 (interacts with) 8289", "interaction" : "interacts with", "SUID" : 76442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76438", "source" : "525", "target" : "4629", "shared_name" : "6598 (interacts with) 6605", "name" : "6598 (interacts with) 6605", "interaction" : "interacts with", "SUID" : 76438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76486", "source" : "521", "target" : "5341", "shared_name" : "85476 (interacts with) 91647", "name" : "85476 (interacts with) 91647", "interaction" : "interacts with", "SUID" : 76486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76482", "source" : "521", "target" : "1085", "shared_name" : "85476 (interacts with) 9377", "name" : "85476 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 76482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76478", "source" : "521", "target" : "3705", "shared_name" : "85476 (interacts with) 87178", "name" : "85476 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 76478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76474", "source" : "521", "target" : "4757", "shared_name" : "85476 (interacts with) 9997", "name" : "85476 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 76474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76470", "source" : "521", "target" : "6073", "shared_name" : "85476 (interacts with) 92170", "name" : "85476 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 76470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76466", "source" : "521", "target" : "4869", "shared_name" : "85476 (interacts with) 92935", "name" : "85476 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 76466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76578", "source" : "517", "target" : "2593", "shared_name" : "5052 (interacts with) 64324", "name" : "5052 (interacts with) 64324", "interaction" : "interacts with", "SUID" : 76578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76574", "source" : "517", "target" : "4889", "shared_name" : "5052 (interacts with) 7295", "name" : "5052 (interacts with) 7295", "interaction" : "interacts with", "SUID" : 76574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76570", "source" : "517", "target" : "4941", "shared_name" : "5052 (interacts with) 6342", "name" : "5052 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 76570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76566", "source" : "517", "target" : "5865", "shared_name" : "5052 (interacts with) 5192", "name" : "5052 (interacts with) 5192", "interaction" : "interacts with", "SUID" : 76566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76562", "source" : "517", "target" : "1977", "shared_name" : "5052 (interacts with) 5191", "name" : "5052 (interacts with) 5191", "interaction" : "interacts with", "SUID" : 76562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76558", "source" : "517", "target" : "4505", "shared_name" : "5052 (interacts with) 5190", "name" : "5052 (interacts with) 5190", "interaction" : "interacts with", "SUID" : 76558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76554", "source" : "517", "target" : "5677", "shared_name" : "5052 (interacts with) 5189", "name" : "5052 (interacts with) 5189", "interaction" : "interacts with", "SUID" : 76554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76550", "source" : "517", "target" : "2353", "shared_name" : "5052 (interacts with) 5264", "name" : "5052 (interacts with) 5264", "interaction" : "interacts with", "SUID" : 76550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76546", "source" : "517", "target" : "5545", "shared_name" : "5052 (interacts with) 5195", "name" : "5052 (interacts with) 5195", "interaction" : "interacts with", "SUID" : 76546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76542", "source" : "517", "target" : "1953", "shared_name" : "5052 (interacts with) 5194", "name" : "5052 (interacts with) 5194", "interaction" : "interacts with", "SUID" : 76542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76538", "source" : "517", "target" : "4297", "shared_name" : "5052 (interacts with) 5193", "name" : "5052 (interacts with) 5193", "interaction" : "interacts with", "SUID" : 76538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76534", "source" : "517", "target" : "3329", "shared_name" : "5052 (interacts with) 5824", "name" : "5052 (interacts with) 5824", "interaction" : "interacts with", "SUID" : 76534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76530", "source" : "517", "target" : "2325", "shared_name" : "5052 (interacts with) 55670", "name" : "5052 (interacts with) 55670", "interaction" : "interacts with", "SUID" : 76530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76526", "source" : "517", "target" : "196", "shared_name" : "5052 (interacts with) 84188", "name" : "5052 (interacts with) 84188", "interaction" : "interacts with", "SUID" : 76526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76522", "source" : "517", "target" : "5237", "shared_name" : "5052 (interacts with) 5830", "name" : "5052 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 76522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76518", "source" : "517", "target" : "5205", "shared_name" : "5052 (interacts with) 5828", "name" : "5052 (interacts with) 5828", "interaction" : "interacts with", "SUID" : 76518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76514", "source" : "517", "target" : "5873", "shared_name" : "5052 (interacts with) 5827", "name" : "5052 (interacts with) 5827", "interaction" : "interacts with", "SUID" : 76514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76510", "source" : "517", "target" : "4301", "shared_name" : "5052 (interacts with) 8799", "name" : "5052 (interacts with) 8799", "interaction" : "interacts with", "SUID" : 76510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76506", "source" : "517", "target" : "3341", "shared_name" : "5052 (interacts with) 8504", "name" : "5052 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 76506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76502", "source" : "517", "target" : "3333", "shared_name" : "5052 (interacts with) 9409", "name" : "5052 (interacts with) 9409", "interaction" : "interacts with", "SUID" : 76502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76498", "source" : "517", "target" : "1605", "shared_name" : "5052 (interacts with) 6648", "name" : "5052 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 76498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76494", "source" : "517", "target" : "2901", "shared_name" : "5052 (interacts with) 6647", "name" : "5052 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 76494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76490", "source" : "517", "target" : "509", "shared_name" : "5052 (interacts with) 3661", "name" : "5052 (interacts with) 3661", "interaction" : "interacts with", "SUID" : 76490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76598", "source" : "513", "target" : "453", "shared_name" : "348980 (interacts with) 9758", "name" : "348980 (interacts with) 9758", "interaction" : "interacts with", "SUID" : 76598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76594", "source" : "513", "target" : "5913", "shared_name" : "348980 (interacts with) 3767", "name" : "348980 (interacts with) 3767", "interaction" : "interacts with", "SUID" : 76594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76590", "source" : "513", "target" : "5237", "shared_name" : "348980 (interacts with) 5830", "name" : "348980 (interacts with) 5830", "interaction" : "interacts with", "SUID" : 76590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76586", "source" : "513", "target" : "3997", "shared_name" : "348980 (interacts with) 1890", "name" : "348980 (interacts with) 1890", "interaction" : "interacts with", "SUID" : 76586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76582", "source" : "513", "target" : "5649", "shared_name" : "348980 (interacts with) 5265", "name" : "348980 (interacts with) 5265", "interaction" : "interacts with", "SUID" : 76582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76630", "source" : "509", "target" : "3017", "shared_name" : "3661 (interacts with) 4790", "name" : "3661 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 76630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76626", "source" : "509", "target" : "4949", "shared_name" : "3661 (interacts with) 5970", "name" : "3661 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 76626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76622", "source" : "509", "target" : "3817", "shared_name" : "3661 (interacts with) 3663", "name" : "3661 (interacts with) 3663", "interaction" : "interacts with", "SUID" : 76622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76618", "source" : "509", "target" : "2637", "shared_name" : "3661 (interacts with) 353376", "name" : "3661 (interacts with) 353376", "interaction" : "interacts with", "SUID" : 76618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76614", "source" : "509", "target" : "3697", "shared_name" : "3661 (interacts with) 7099", "name" : "3661 (interacts with) 7099", "interaction" : "interacts with", "SUID" : 76614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76610", "source" : "509", "target" : "2841", "shared_name" : "3661 (interacts with) 7098", "name" : "3661 (interacts with) 7098", "interaction" : "interacts with", "SUID" : 76610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76606", "source" : "509", "target" : "805", "shared_name" : "3661 (interacts with) 6772", "name" : "3661 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 76606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76602", "source" : "509", "target" : "5333", "shared_name" : "3661 (interacts with) 5591", "name" : "3661 (interacts with) 5591", "interaction" : "interacts with", "SUID" : 76602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76754", "source" : "505", "target" : "2161", "shared_name" : "2071 (interacts with) 55163", "name" : "2071 (interacts with) 55163", "interaction" : "interacts with", "SUID" : 76754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76750", "source" : "505", "target" : "481", "shared_name" : "2071 (interacts with) 7507", "name" : "2071 (interacts with) 7507", "interaction" : "interacts with", "SUID" : 76750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76746", "source" : "505", "target" : "4285", "shared_name" : "2071 (interacts with) 8450", "name" : "2071 (interacts with) 8450", "interaction" : "interacts with", "SUID" : 76746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76742", "source" : "505", "target" : "3953", "shared_name" : "2071 (interacts with) 8731", "name" : "2071 (interacts with) 8731", "interaction" : "interacts with", "SUID" : 76742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76738", "source" : "505", "target" : "2921", "shared_name" : "2071 (interacts with) 5981", "name" : "2071 (interacts with) 5981", "interaction" : "interacts with", "SUID" : 76738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76734", "source" : "505", "target" : "1237", "shared_name" : "2071 (interacts with) 3329", "name" : "2071 (interacts with) 3329", "interaction" : "interacts with", "SUID" : 76734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76730", "source" : "505", "target" : "2709", "shared_name" : "2071 (interacts with) 2072", "name" : "2071 (interacts with) 2072", "interaction" : "interacts with", "SUID" : 76730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76726", "source" : "505", "target" : "1709", "shared_name" : "2071 (interacts with) 2074", "name" : "2071 (interacts with) 2074", "interaction" : "interacts with", "SUID" : 76726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76722", "source" : "505", "target" : "749", "shared_name" : "2071 (interacts with) 6873", "name" : "2071 (interacts with) 6873", "interaction" : "interacts with", "SUID" : 76722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76718", "source" : "505", "target" : "1793", "shared_name" : "2071 (interacts with) 7515", "name" : "2071 (interacts with) 7515", "interaction" : "interacts with", "SUID" : 76718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76714", "source" : "505", "target" : "5197", "shared_name" : "2071 (interacts with) 7156", "name" : "2071 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 76714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76710", "source" : "505", "target" : "1817", "shared_name" : "2071 (interacts with) 7343", "name" : "2071 (interacts with) 7343", "interaction" : "interacts with", "SUID" : 76710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76706", "source" : "505", "target" : "2305", "shared_name" : "2071 (interacts with) 6908", "name" : "2071 (interacts with) 6908", "interaction" : "interacts with", "SUID" : 76706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76702", "source" : "505", "target" : "4425", "shared_name" : "2071 (interacts with) 6884", "name" : "2071 (interacts with) 6884", "interaction" : "interacts with", "SUID" : 76702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76698", "source" : "505", "target" : "877", "shared_name" : "2071 (interacts with) 7341", "name" : "2071 (interacts with) 7341", "interaction" : "interacts with", "SUID" : 76698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76694", "source" : "505", "target" : "4413", "shared_name" : "2071 (interacts with) 6612", "name" : "2071 (interacts with) 6612", "interaction" : "interacts with", "SUID" : 76694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76690", "source" : "505", "target" : "5849", "shared_name" : "2071 (interacts with) 6613", "name" : "2071 (interacts with) 6613", "interaction" : "interacts with", "SUID" : 76690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76686", "source" : "505", "target" : "2649", "shared_name" : "2071 (interacts with) 5430", "name" : "2071 (interacts with) 5430", "interaction" : "interacts with", "SUID" : 76686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76682", "source" : "505", "target" : "5861", "shared_name" : "2071 (interacts with) 5435", "name" : "2071 (interacts with) 5435", "interaction" : "interacts with", "SUID" : 76682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76678", "source" : "505", "target" : "5621", "shared_name" : "2071 (interacts with) 25885", "name" : "2071 (interacts with) 25885", "interaction" : "interacts with", "SUID" : 76678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76674", "source" : "505", "target" : "1857", "shared_name" : "2071 (interacts with) 9533", "name" : "2071 (interacts with) 9533", "interaction" : "interacts with", "SUID" : 76674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76670", "source" : "505", "target" : "2529", "shared_name" : "2071 (interacts with) 5424", "name" : "2071 (interacts with) 5424", "interaction" : "interacts with", "SUID" : 76670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76666", "source" : "505", "target" : "1729", "shared_name" : "2071 (interacts with) 5111", "name" : "2071 (interacts with) 5111", "interaction" : "interacts with", "SUID" : 76666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76662", "source" : "505", "target" : "3049", "shared_name" : "2071 (interacts with) 142", "name" : "2071 (interacts with) 142", "interaction" : "interacts with", "SUID" : 76662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76658", "source" : "505", "target" : "3933", "shared_name" : "2071 (interacts with) 10524", "name" : "2071 (interacts with) 10524", "interaction" : "interacts with", "SUID" : 76658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76654", "source" : "505", "target" : "1937", "shared_name" : "2071 (interacts with) 2965", "name" : "2071 (interacts with) 2965", "interaction" : "interacts with", "SUID" : 76654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76650", "source" : "505", "target" : "4037", "shared_name" : "2071 (interacts with) 2073", "name" : "2071 (interacts with) 2073", "interaction" : "interacts with", "SUID" : 76650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76646", "source" : "505", "target" : "5449", "shared_name" : "2071 (interacts with) 923", "name" : "2071 (interacts with) 923", "interaction" : "interacts with", "SUID" : 76646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76642", "source" : "505", "target" : "4249", "shared_name" : "2071 (interacts with) 4331", "name" : "2071 (interacts with) 4331", "interaction" : "interacts with", "SUID" : 76642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76638", "source" : "505", "target" : "913", "shared_name" : "2071 (interacts with) 404672", "name" : "2071 (interacts with) 404672", "interaction" : "interacts with", "SUID" : 76638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76634", "source" : "505", "target" : "4473", "shared_name" : "2071 (interacts with) 54888", "name" : "2071 (interacts with) 54888", "interaction" : "interacts with", "SUID" : 76634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76810", "source" : "501", "target" : "721", "shared_name" : "65993 (interacts with) 79731", "name" : "65993 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 76810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76806", "source" : "501", "target" : "3545", "shared_name" : "65993 (interacts with) 708", "name" : "65993 (interacts with) 708", "interaction" : "interacts with", "SUID" : 76806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76802", "source" : "501", "target" : "3705", "shared_name" : "65993 (interacts with) 87178", "name" : "65993 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 76802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76798", "source" : "501", "target" : "2009", "shared_name" : "65993 (interacts with) 79133", "name" : "65993 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 76798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76794", "source" : "501", "target" : "521", "shared_name" : "65993 (interacts with) 85476", "name" : "65993 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 76794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76790", "source" : "501", "target" : "1197", "shared_name" : "65993 (interacts with) 79587", "name" : "65993 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 76790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76786", "source" : "501", "target" : "4757", "shared_name" : "65993 (interacts with) 9997", "name" : "65993 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 76786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76782", "source" : "501", "target" : "5737", "shared_name" : "65993 (interacts with) 84340", "name" : "65993 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 76782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76778", "source" : "501", "target" : "6073", "shared_name" : "65993 (interacts with) 92170", "name" : "65993 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 76778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76774", "source" : "501", "target" : "713", "shared_name" : "65993 (interacts with) 7019", "name" : "65993 (interacts with) 7019", "interaction" : "interacts with", "SUID" : 76774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76770", "source" : "501", "target" : "1325", "shared_name" : "65993 (interacts with) 7284", "name" : "65993 (interacts with) 7284", "interaction" : "interacts with", "SUID" : 76770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76766", "source" : "501", "target" : "4869", "shared_name" : "65993 (interacts with) 92935", "name" : "65993 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 76766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76762", "source" : "501", "target" : "477", "shared_name" : "65993 (interacts with) 51021", "name" : "65993 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 76762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76758", "source" : "501", "target" : "2105", "shared_name" : "65993 (interacts with) 56945", "name" : "65993 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 76758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76818", "source" : "497", "target" : "609", "shared_name" : "65082 (interacts with) 6812", "name" : "65082 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 76818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76814", "source" : "497", "target" : "4661", "shared_name" : "65082 (interacts with) 6813", "name" : "65082 (interacts with) 6813", "interaction" : "interacts with", "SUID" : 76814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76926", "source" : "493", "target" : "1485", "shared_name" : "594 (interacts with) 8050", "name" : "594 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 76926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76922", "source" : "493", "target" : "1073", "shared_name" : "594 (interacts with) 27010", "name" : "594 (interacts with) 27010", "interaction" : "interacts with", "SUID" : 76922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76918", "source" : "493", "target" : "2925", "shared_name" : "594 (interacts with) 8802", "name" : "594 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 76918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76914", "source" : "493", "target" : "3425", "shared_name" : "594 (interacts with) 8803", "name" : "594 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 76914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76910", "source" : "493", "target" : "1849", "shared_name" : "594 (interacts with) 26275", "name" : "594 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 76910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76906", "source" : "493", "target" : "3421", "shared_name" : "594 (interacts with) 4967", "name" : "594 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 76906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76902", "source" : "493", "target" : "1489", "shared_name" : "594 (interacts with) 1738", "name" : "594 (interacts with) 1738", "interaction" : "interacts with", "SUID" : 76902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76898", "source" : "493", "target" : "1981", "shared_name" : "594 (interacts with) 339983", "name" : "594 (interacts with) 339983", "interaction" : "interacts with", "SUID" : 76898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76894", "source" : "493", "target" : "3777", "shared_name" : "594 (interacts with) 6571", "name" : "594 (interacts with) 6571", "interaction" : "interacts with", "SUID" : 76894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76890", "source" : "493", "target" : "3433", "shared_name" : "594 (interacts with) 26503", "name" : "594 (interacts with) 26503", "interaction" : "interacts with", "SUID" : 76890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76886", "source" : "493", "target" : "4169", "shared_name" : "594 (interacts with) 10993", "name" : "594 (interacts with) 10993", "interaction" : "interacts with", "SUID" : 76886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76882", "source" : "493", "target" : "4941", "shared_name" : "594 (interacts with) 6342", "name" : "594 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 76882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76878", "source" : "493", "target" : "1721", "shared_name" : "594 (interacts with) 51807", "name" : "594 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 76878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76874", "source" : "493", "target" : "5049", "shared_name" : "594 (interacts with) 6697", "name" : "594 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 76874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76870", "source" : "493", "target" : "1605", "shared_name" : "594 (interacts with) 6648", "name" : "594 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 76870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76866", "source" : "493", "target" : "1437", "shared_name" : "594 (interacts with) 80025", "name" : "594 (interacts with) 80025", "interaction" : "interacts with", "SUID" : 76866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76862", "source" : "493", "target" : "3185", "shared_name" : "594 (interacts with) 5053", "name" : "594 (interacts with) 5053", "interaction" : "interacts with", "SUID" : 76862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76858", "source" : "493", "target" : "3929", "shared_name" : "594 (interacts with) 5860", "name" : "594 (interacts with) 5860", "interaction" : "interacts with", "SUID" : 76858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76854", "source" : "493", "target" : "4045", "shared_name" : "594 (interacts with) 29920", "name" : "594 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 76854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76850", "source" : "493", "target" : "3501", "shared_name" : "594 (interacts with) 5831", "name" : "594 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 76850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76846", "source" : "493", "target" : "6093", "shared_name" : "594 (interacts with) 953", "name" : "594 (interacts with) 953", "interaction" : "interacts with", "SUID" : 76846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76842", "source" : "493", "target" : "801", "shared_name" : "594 (interacts with) 1376", "name" : "594 (interacts with) 1376", "interaction" : "interacts with", "SUID" : 76842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76838", "source" : "493", "target" : "2365", "shared_name" : "594 (interacts with) 2731", "name" : "594 (interacts with) 2731", "interaction" : "interacts with", "SUID" : 76838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76834", "source" : "493", "target" : "4041", "shared_name" : "594 (interacts with) 847", "name" : "594 (interacts with) 847", "interaction" : "interacts with", "SUID" : 76834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76830", "source" : "493", "target" : "489", "shared_name" : "594 (interacts with) 1629", "name" : "594 (interacts with) 1629", "interaction" : "interacts with", "SUID" : 76830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76826", "source" : "493", "target" : "4869", "shared_name" : "594 (interacts with) 92935", "name" : "594 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 76826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76822", "source" : "493", "target" : "6185", "shared_name" : "594 (interacts with) 4035", "name" : "594 (interacts with) 4035", "interaction" : "interacts with", "SUID" : 76822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77082", "source" : "489", "target" : "3077", "shared_name" : "1629 (interacts with) 6506", "name" : "1629 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 77082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77078", "source" : "489", "target" : "2405", "shared_name" : "1629 (interacts with) 3658", "name" : "1629 (interacts with) 3658", "interaction" : "interacts with", "SUID" : 77078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77074", "source" : "489", "target" : "3537", "shared_name" : "1629 (interacts with) 501", "name" : "1629 (interacts with) 501", "interaction" : "interacts with", "SUID" : 77074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77070", "source" : "489", "target" : "3681", "shared_name" : "1629 (interacts with) 1892", "name" : "1629 (interacts with) 1892", "interaction" : "interacts with", "SUID" : 77070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77066", "source" : "489", "target" : "5797", "shared_name" : "1629 (interacts with) 3030", "name" : "1629 (interacts with) 3030", "interaction" : "interacts with", "SUID" : 77066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77062", "source" : "489", "target" : "573", "shared_name" : "1629 (interacts with) 3155", "name" : "1629 (interacts with) 3155", "interaction" : "interacts with", "SUID" : 77062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77058", "source" : "489", "target" : "4805", "shared_name" : "1629 (interacts with) 18", "name" : "1629 (interacts with) 18", "interaction" : "interacts with", "SUID" : 77058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77054", "source" : "489", "target" : "1021", "shared_name" : "1629 (interacts with) 5096", "name" : "1629 (interacts with) 5096", "interaction" : "interacts with", "SUID" : 77054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77050", "source" : "489", "target" : "1301", "shared_name" : "1629 (interacts with) 5095", "name" : "1629 (interacts with) 5095", "interaction" : "interacts with", "SUID" : 77050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77046", "source" : "489", "target" : "5825", "shared_name" : "1629 (interacts with) 4594", "name" : "1629 (interacts with) 4594", "interaction" : "interacts with", "SUID" : 77046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77042", "source" : "489", "target" : "4745", "shared_name" : "1629 (interacts with) 35", "name" : "1629 (interacts with) 35", "interaction" : "interacts with", "SUID" : 77042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77038", "source" : "489", "target" : "3425", "shared_name" : "1629 (interacts with) 8803", "name" : "1629 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 77038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77034", "source" : "489", "target" : "2925", "shared_name" : "1629 (interacts with) 8802", "name" : "1629 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 77034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77030", "source" : "489", "target" : "3421", "shared_name" : "1629 (interacts with) 4967", "name" : "1629 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 77030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77026", "source" : "489", "target" : "5605", "shared_name" : "1629 (interacts with) 51601", "name" : "1629 (interacts with) 51601", "interaction" : "interacts with", "SUID" : 77026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77022", "source" : "489", "target" : "2029", "shared_name" : "1629 (interacts with) 4329", "name" : "1629 (interacts with) 4329", "interaction" : "interacts with", "SUID" : 77022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77018", "source" : "489", "target" : "1037", "shared_name" : "1629 (interacts with) 387787", "name" : "1629 (interacts with) 387787", "interaction" : "interacts with", "SUID" : 77018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77014", "source" : "489", "target" : "4749", "shared_name" : "1629 (interacts with) 3028", "name" : "1629 (interacts with) 3028", "interaction" : "interacts with", "SUID" : 77014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77010", "source" : "489", "target" : "2881", "shared_name" : "1629 (interacts with) 5160", "name" : "1629 (interacts with) 5160", "interaction" : "interacts with", "SUID" : 77010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77006", "source" : "489", "target" : "4401", "shared_name" : "1629 (interacts with) 55526", "name" : "1629 (interacts with) 55526", "interaction" : "interacts with", "SUID" : 77006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77002", "source" : "489", "target" : "693", "shared_name" : "1629 (interacts with) 7296", "name" : "1629 (interacts with) 7296", "interaction" : "interacts with", "SUID" : 77002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76998", "source" : "489", "target" : "245", "shared_name" : "1629 (interacts with) 2936", "name" : "1629 (interacts with) 2936", "interaction" : "interacts with", "SUID" : 76998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76994", "source" : "489", "target" : "1849", "shared_name" : "1629 (interacts with) 26275", "name" : "1629 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 76994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76990", "source" : "489", "target" : "1485", "shared_name" : "1629 (interacts with) 8050", "name" : "1629 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 76990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76986", "source" : "489", "target" : "485", "shared_name" : "1629 (interacts with) 593", "name" : "1629 (interacts with) 593", "interaction" : "interacts with", "SUID" : 76986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76982", "source" : "489", "target" : "2897", "shared_name" : "1629 (interacts with) 1737", "name" : "1629 (interacts with) 1737", "interaction" : "interacts with", "SUID" : 76982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76978", "source" : "489", "target" : "493", "shared_name" : "1629 (interacts with) 594", "name" : "1629 (interacts with) 594", "interaction" : "interacts with", "SUID" : 76978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76974", "source" : "489", "target" : "1489", "shared_name" : "1629 (interacts with) 1738", "name" : "1629 (interacts with) 1738", "interaction" : "interacts with", "SUID" : 76974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76970", "source" : "489", "target" : "2025", "shared_name" : "1629 (interacts with) 549", "name" : "1629 (interacts with) 549", "interaction" : "interacts with", "SUID" : 76970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76966", "source" : "489", "target" : "1981", "shared_name" : "1629 (interacts with) 339983", "name" : "1629 (interacts with) 339983", "interaction" : "interacts with", "SUID" : 76966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76962", "source" : "489", "target" : "4941", "shared_name" : "1629 (interacts with) 6342", "name" : "1629 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 76962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76958", "source" : "489", "target" : "4169", "shared_name" : "1629 (interacts with) 10993", "name" : "1629 (interacts with) 10993", "interaction" : "interacts with", "SUID" : 76958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76954", "source" : "489", "target" : "2321", "shared_name" : "1629 (interacts with) 6509", "name" : "1629 (interacts with) 6509", "interaction" : "interacts with", "SUID" : 76954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76950", "source" : "489", "target" : "5049", "shared_name" : "1629 (interacts with) 6697", "name" : "1629 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 76950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76946", "source" : "489", "target" : "1721", "shared_name" : "1629 (interacts with) 51807", "name" : "1629 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 76946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76942", "source" : "489", "target" : "1437", "shared_name" : "1629 (interacts with) 80025", "name" : "1629 (interacts with) 80025", "interaction" : "interacts with", "SUID" : 76942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76938", "source" : "489", "target" : "3501", "shared_name" : "1629 (interacts with) 5831", "name" : "1629 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 76938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76934", "source" : "489", "target" : "4045", "shared_name" : "1629 (interacts with) 29920", "name" : "1629 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 76934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "76930", "source" : "489", "target" : "6093", "shared_name" : "1629 (interacts with) 953", "name" : "1629 (interacts with) 953", "interaction" : "interacts with", "SUID" : 76930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77170", "source" : "485", "target" : "693", "shared_name" : "593 (interacts with) 7296", "name" : "593 (interacts with) 7296", "interaction" : "interacts with", "SUID" : 77170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77166", "source" : "485", "target" : "3425", "shared_name" : "593 (interacts with) 8803", "name" : "593 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 77166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77162", "source" : "485", "target" : "2925", "shared_name" : "593 (interacts with) 8802", "name" : "593 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 77162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77158", "source" : "485", "target" : "1073", "shared_name" : "593 (interacts with) 27010", "name" : "593 (interacts with) 27010", "interaction" : "interacts with", "SUID" : 77158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77154", "source" : "485", "target" : "1485", "shared_name" : "593 (interacts with) 8050", "name" : "593 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 77154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77150", "source" : "485", "target" : "1981", "shared_name" : "593 (interacts with) 339983", "name" : "593 (interacts with) 339983", "interaction" : "interacts with", "SUID" : 77150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77146", "source" : "485", "target" : "1489", "shared_name" : "593 (interacts with) 1738", "name" : "593 (interacts with) 1738", "interaction" : "interacts with", "SUID" : 77146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77142", "source" : "485", "target" : "3421", "shared_name" : "593 (interacts with) 4967", "name" : "593 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 77142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77138", "source" : "485", "target" : "1849", "shared_name" : "593 (interacts with) 26275", "name" : "593 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 77138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77134", "source" : "485", "target" : "4169", "shared_name" : "593 (interacts with) 10993", "name" : "593 (interacts with) 10993", "interaction" : "interacts with", "SUID" : 77134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77130", "source" : "485", "target" : "1605", "shared_name" : "593 (interacts with) 6648", "name" : "593 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 77130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77126", "source" : "485", "target" : "5049", "shared_name" : "593 (interacts with) 6697", "name" : "593 (interacts with) 6697", "interaction" : "interacts with", "SUID" : 77126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77122", "source" : "485", "target" : "1721", "shared_name" : "593 (interacts with) 51807", "name" : "593 (interacts with) 51807", "interaction" : "interacts with", "SUID" : 77122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77118", "source" : "485", "target" : "3501", "shared_name" : "593 (interacts with) 5831", "name" : "593 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 77118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77114", "source" : "485", "target" : "4045", "shared_name" : "593 (interacts with) 29920", "name" : "593 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 77114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77110", "source" : "485", "target" : "4941", "shared_name" : "593 (interacts with) 6342", "name" : "593 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 77110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77106", "source" : "485", "target" : "1437", "shared_name" : "593 (interacts with) 80025", "name" : "593 (interacts with) 80025", "interaction" : "interacts with", "SUID" : 77106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77102", "source" : "485", "target" : "4041", "shared_name" : "593 (interacts with) 847", "name" : "593 (interacts with) 847", "interaction" : "interacts with", "SUID" : 77102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77098", "source" : "485", "target" : "801", "shared_name" : "593 (interacts with) 1376", "name" : "593 (interacts with) 1376", "interaction" : "interacts with", "SUID" : 77098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77094", "source" : "485", "target" : "3681", "shared_name" : "593 (interacts with) 1892", "name" : "593 (interacts with) 1892", "interaction" : "interacts with", "SUID" : 77094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77090", "source" : "485", "target" : "6093", "shared_name" : "593 (interacts with) 953", "name" : "593 (interacts with) 953", "interaction" : "interacts with", "SUID" : 77090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77086", "source" : "485", "target" : "493", "shared_name" : "593 (interacts with) 594", "name" : "593 (interacts with) 594", "interaction" : "interacts with", "SUID" : 77086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77186", "source" : "481", "target" : "5197", "shared_name" : "7507 (interacts with) 7156", "name" : "7507 (interacts with) 7156", "interaction" : "interacts with", "SUID" : 77186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77182", "source" : "481", "target" : "2145", "shared_name" : "7507 (interacts with) 8924", "name" : "7507 (interacts with) 8924", "interaction" : "interacts with", "SUID" : 77182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77178", "source" : "481", "target" : "1857", "shared_name" : "7507 (interacts with) 9533", "name" : "7507 (interacts with) 9533", "interaction" : "interacts with", "SUID" : 77178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77174", "source" : "481", "target" : "1509", "shared_name" : "7507 (interacts with) 63976", "name" : "7507 (interacts with) 63976", "interaction" : "interacts with", "SUID" : 77174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77330", "source" : "477", "target" : "5605", "shared_name" : "51021 (interacts with) 51601", "name" : "51021 (interacts with) 51601", "interaction" : "interacts with", "SUID" : 77330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77326", "source" : "477", "target" : "2297", "shared_name" : "51021 (interacts with) 55005", "name" : "51021 (interacts with) 55005", "interaction" : "interacts with", "SUID" : 77326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77322", "source" : "477", "target" : "1053", "shared_name" : "51021 (interacts with) 81689", "name" : "51021 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 77322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77318", "source" : "477", "target" : "1325", "shared_name" : "51021 (interacts with) 7284", "name" : "51021 (interacts with) 7284", "interaction" : "interacts with", "SUID" : 77318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77314", "source" : "477", "target" : "3545", "shared_name" : "51021 (interacts with) 708", "name" : "51021 (interacts with) 708", "interaction" : "interacts with", "SUID" : 77314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77310", "source" : "477", "target" : "1085", "shared_name" : "51021 (interacts with) 9377", "name" : "51021 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 77310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77306", "source" : "477", "target" : "6181", "shared_name" : "51021 (interacts with) 84987", "name" : "51021 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 77306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77302", "source" : "477", "target" : "2477", "shared_name" : "51021 (interacts with) 57107", "name" : "51021 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 77302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77298", "source" : "477", "target" : "1929", "shared_name" : "51021 (interacts with) 51218", "name" : "51021 (interacts with) 51218", "interaction" : "interacts with", "SUID" : 77298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77294", "source" : "477", "target" : "2285", "shared_name" : "51021 (interacts with) 51300", "name" : "51021 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 77294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77290", "source" : "477", "target" : "889", "shared_name" : "51021 (interacts with) 80224", "name" : "51021 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 77290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77286", "source" : "477", "target" : "3705", "shared_name" : "51021 (interacts with) 87178", "name" : "51021 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 77286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77282", "source" : "477", "target" : "1561", "shared_name" : "51021 (interacts with) 51117", "name" : "51021 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 77282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77278", "source" : "477", "target" : "4409", "shared_name" : "51021 (interacts with) 6341", "name" : "51021 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 77278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77274", "source" : "477", "target" : "2109", "shared_name" : "51021 (interacts with) 51103", "name" : "51021 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 77274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77270", "source" : "477", "target" : "3973", "shared_name" : "51021 (interacts with) 55572", "name" : "51021 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 77270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77266", "source" : "477", "target" : "501", "shared_name" : "51021 (interacts with) 65993", "name" : "51021 (interacts with) 65993", "interaction" : "interacts with", "SUID" : 77266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77262", "source" : "477", "target" : "4757", "shared_name" : "51021 (interacts with) 9997", "name" : "51021 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 77262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77258", "source" : "477", "target" : "2021", "shared_name" : "51021 (interacts with) 5428", "name" : "51021 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 77258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77254", "source" : "477", "target" : "1129", "shared_name" : "51021 (interacts with) 57505", "name" : "51021 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 77254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77250", "source" : "477", "target" : "4141", "shared_name" : "51021 (interacts with) 617", "name" : "51021 (interacts with) 617", "interaction" : "interacts with", "SUID" : 77250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77246", "source" : "477", "target" : "721", "shared_name" : "51021 (interacts with) 79731", "name" : "51021 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 77246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77242", "source" : "477", "target" : "2009", "shared_name" : "51021 (interacts with) 79133", "name" : "51021 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 77242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77238", "source" : "477", "target" : "4621", "shared_name" : "51021 (interacts with) 57038", "name" : "51021 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 77238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77234", "source" : "477", "target" : "5737", "shared_name" : "51021 (interacts with) 84340", "name" : "51021 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 77234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77230", "source" : "477", "target" : "5189", "shared_name" : "51021 (interacts with) 57176", "name" : "51021 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 77230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77226", "source" : "477", "target" : "6001", "shared_name" : "51021 (interacts with) 55157", "name" : "51021 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 77226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77222", "source" : "477", "target" : "6073", "shared_name" : "51021 (interacts with) 92170", "name" : "51021 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 77222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77218", "source" : "477", "target" : "3633", "shared_name" : "51021 (interacts with) 51067", "name" : "51021 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 77218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77214", "source" : "477", "target" : "1197", "shared_name" : "51021 (interacts with) 79587", "name" : "51021 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 77214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77210", "source" : "477", "target" : "2105", "shared_name" : "51021 (interacts with) 56945", "name" : "51021 (interacts with) 56945", "interaction" : "interacts with", "SUID" : 77210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77206", "source" : "477", "target" : "4101", "shared_name" : "51021 (interacts with) 65260", "name" : "51021 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 77206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77202", "source" : "477", "target" : "4897", "shared_name" : "51021 (interacts with) 55149", "name" : "51021 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 77202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77198", "source" : "477", "target" : "4869", "shared_name" : "51021 (interacts with) 92935", "name" : "51021 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 77198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77194", "source" : "477", "target" : "521", "shared_name" : "51021 (interacts with) 85476", "name" : "51021 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 77194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77190", "source" : "477", "target" : "5085", "shared_name" : "51021 (interacts with) 56652", "name" : "51021 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 77190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77334", "source" : "473", "target" : "4445", "shared_name" : "7072 (interacts with) 80208", "name" : "7072 (interacts with) 80208", "interaction" : "interacts with", "SUID" : 77334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77378", "source" : "461", "target" : "1713", "shared_name" : "5198 (interacts with) 5631", "name" : "5198 (interacts with) 5631", "interaction" : "interacts with", "SUID" : 77378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77374", "source" : "461", "target" : "5025", "shared_name" : "5198 (interacts with) 6389", "name" : "5198 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 77374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77370", "source" : "461", "target" : "5109", "shared_name" : "5198 (interacts with) 790", "name" : "5198 (interacts with) 790", "interaction" : "interacts with", "SUID" : 77370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77366", "source" : "461", "target" : "1669", "shared_name" : "5198 (interacts with) 6390", "name" : "5198 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 77366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77362", "source" : "461", "target" : "1013", "shared_name" : "5198 (interacts with) 6898", "name" : "5198 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 77362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77358", "source" : "461", "target" : "4185", "shared_name" : "5198 (interacts with) 29968", "name" : "5198 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 77358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77354", "source" : "461", "target" : "1385", "shared_name" : "5198 (interacts with) 6520", "name" : "5198 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 77354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77350", "source" : "461", "target" : "2721", "shared_name" : "5198 (interacts with) 79751", "name" : "5198 (interacts with) 79751", "interaction" : "interacts with", "SUID" : 77350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77346", "source" : "461", "target" : "5785", "shared_name" : "5198 (interacts with) 6857", "name" : "5198 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 77346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77342", "source" : "461", "target" : "1089", "shared_name" : "5198 (interacts with) 5917", "name" : "5198 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 77342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77338", "source" : "461", "target" : "1885", "shared_name" : "5198 (interacts with) 8604", "name" : "5198 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 77338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77534", "source" : "457", "target" : "3901", "shared_name" : "16 (interacts with) 19", "name" : "16 (interacts with) 19", "interaction" : "interacts with", "SUID" : 77534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77530", "source" : "457", "target" : "461", "shared_name" : "16 (interacts with) 5198", "name" : "16 (interacts with) 5198", "interaction" : "interacts with", "SUID" : 77530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77526", "source" : "457", "target" : "1021", "shared_name" : "16 (interacts with) 5096", "name" : "16 (interacts with) 5096", "interaction" : "interacts with", "SUID" : 77526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77522", "source" : "457", "target" : "3997", "shared_name" : "16 (interacts with) 1890", "name" : "16 (interacts with) 1890", "interaction" : "interacts with", "SUID" : 77522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77518", "source" : "457", "target" : "3421", "shared_name" : "16 (interacts with) 4967", "name" : "16 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 77518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77514", "source" : "457", "target" : "4401", "shared_name" : "16 (interacts with) 55526", "name" : "16 (interacts with) 55526", "interaction" : "interacts with", "SUID" : 77514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77510", "source" : "457", "target" : "3881", "shared_name" : "16 (interacts with) 1654", "name" : "16 (interacts with) 1654", "interaction" : "interacts with", "SUID" : 77510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77506", "source" : "457", "target" : "517", "shared_name" : "16 (interacts with) 5052", "name" : "16 (interacts with) 5052", "interaction" : "interacts with", "SUID" : 77506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77502", "source" : "457", "target" : "1545", "shared_name" : "16 (interacts with) 5277", "name" : "16 (interacts with) 5277", "interaction" : "interacts with", "SUID" : 77502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77498", "source" : "457", "target" : "4717", "shared_name" : "16 (interacts with) 51204", "name" : "16 (interacts with) 51204", "interaction" : "interacts with", "SUID" : 77498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77494", "source" : "457", "target" : "4869", "shared_name" : "16 (interacts with) 92935", "name" : "16 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 77494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77490", "source" : "457", "target" : "1577", "shared_name" : "16 (interacts with) 51091", "name" : "16 (interacts with) 51091", "interaction" : "interacts with", "SUID" : 77490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77486", "source" : "457", "target" : "4085", "shared_name" : "16 (interacts with) 55699", "name" : "16 (interacts with) 55699", "interaction" : "interacts with", "SUID" : 77486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77482", "source" : "457", "target" : "3633", "shared_name" : "16 (interacts with) 51067", "name" : "16 (interacts with) 51067", "interaction" : "interacts with", "SUID" : 77482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77478", "source" : "457", "target" : "6049", "shared_name" : "16 (interacts with) 25973", "name" : "16 (interacts with) 25973", "interaction" : "interacts with", "SUID" : 77478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77474", "source" : "457", "target" : "3529", "shared_name" : "16 (interacts with) 7965", "name" : "16 (interacts with) 7965", "interaction" : "interacts with", "SUID" : 77474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77470", "source" : "457", "target" : "3157", "shared_name" : "16 (interacts with) 9255", "name" : "16 (interacts with) 9255", "interaction" : "interacts with", "SUID" : 77470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77466", "source" : "457", "target" : "1197", "shared_name" : "16 (interacts with) 79587", "name" : "16 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 77466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77462", "source" : "457", "target" : "721", "shared_name" : "16 (interacts with) 79731", "name" : "16 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 77462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77458", "source" : "457", "target" : "4621", "shared_name" : "16 (interacts with) 57038", "name" : "16 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 77458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77454", "source" : "457", "target" : "5189", "shared_name" : "16 (interacts with) 57176", "name" : "16 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 77454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77450", "source" : "457", "target" : "6157", "shared_name" : "16 (interacts with) 3735", "name" : "16 (interacts with) 3735", "interaction" : "interacts with", "SUID" : 77450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77446", "source" : "457", "target" : "4349", "shared_name" : "16 (interacts with) 5859", "name" : "16 (interacts with) 5859", "interaction" : "interacts with", "SUID" : 77446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77442", "source" : "457", "target" : "5017", "shared_name" : "16 (interacts with) 3417", "name" : "16 (interacts with) 3417", "interaction" : "interacts with", "SUID" : 77442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77438", "source" : "457", "target" : "1133", "shared_name" : "16 (interacts with) 3418", "name" : "16 (interacts with) 3418", "interaction" : "interacts with", "SUID" : 77438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77434", "source" : "457", "target" : "3649", "shared_name" : "16 (interacts with) 51520", "name" : "16 (interacts with) 51520", "interaction" : "interacts with", "SUID" : 77434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77430", "source" : "457", "target" : "4229", "shared_name" : "16 (interacts with) 3035", "name" : "16 (interacts with) 3035", "interaction" : "interacts with", "SUID" : 77430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77426", "source" : "457", "target" : "4597", "shared_name" : "16 (interacts with) 3376", "name" : "16 (interacts with) 3376", "interaction" : "interacts with", "SUID" : 77426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77422", "source" : "457", "target" : "3169", "shared_name" : "16 (interacts with) 1615", "name" : "16 (interacts with) 1615", "interaction" : "interacts with", "SUID" : 77422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77418", "source" : "457", "target" : "3641", "shared_name" : "16 (interacts with) 4141", "name" : "16 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 77418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77414", "source" : "457", "target" : "6001", "shared_name" : "16 (interacts with) 55157", "name" : "16 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 77414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77410", "source" : "457", "target" : "4593", "shared_name" : "16 (interacts with) 2058", "name" : "16 (interacts with) 2058", "interaction" : "interacts with", "SUID" : 77410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77406", "source" : "457", "target" : "4693", "shared_name" : "16 (interacts with) 6301", "name" : "16 (interacts with) 6301", "interaction" : "interacts with", "SUID" : 77406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77402", "source" : "457", "target" : "1089", "shared_name" : "16 (interacts with) 5917", "name" : "16 (interacts with) 5917", "interaction" : "interacts with", "SUID" : 77402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77398", "source" : "457", "target" : "1581", "shared_name" : "16 (interacts with) 7407", "name" : "16 (interacts with) 7407", "interaction" : "interacts with", "SUID" : 77398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77394", "source" : "457", "target" : "1129", "shared_name" : "16 (interacts with) 57505", "name" : "16 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 77394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77390", "source" : "457", "target" : "589", "shared_name" : "16 (interacts with) 270", "name" : "16 (interacts with) 270", "interaction" : "interacts with", "SUID" : 77390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77386", "source" : "457", "target" : "597", "shared_name" : "16 (interacts with) 271", "name" : "16 (interacts with) 271", "interaction" : "interacts with", "SUID" : 77386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77382", "source" : "457", "target" : "625", "shared_name" : "16 (interacts with) 8942", "name" : "16 (interacts with) 8942", "interaction" : "interacts with", "SUID" : 77382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77538", "source" : "445", "target" : "3205", "shared_name" : "389827 (interacts with) 862", "name" : "389827 (interacts with) 862", "interaction" : "interacts with", "SUID" : 77538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77546", "source" : "441", "target" : "4665", "shared_name" : "51761 (interacts with) 538", "name" : "51761 (interacts with) 538", "interaction" : "interacts with", "SUID" : 77546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77542", "source" : "441", "target" : "3773", "shared_name" : "51761 (interacts with) 540", "name" : "51761 (interacts with) 540", "interaction" : "interacts with", "SUID" : 77542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77550", "source" : "437", "target" : "2197", "shared_name" : "8913 (interacts with) 4684", "name" : "8913 (interacts with) 4684", "interaction" : "interacts with", "SUID" : 77550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77602", "source" : "429", "target" : "1849", "shared_name" : "1757 (interacts with) 26275", "name" : "1757 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 77602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77598", "source" : "429", "target" : "2029", "shared_name" : "1757 (interacts with) 4329", "name" : "1757 (interacts with) 4329", "interaction" : "interacts with", "SUID" : 77598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77594", "source" : "429", "target" : "5565", "shared_name" : "1757 (interacts with) 217", "name" : "1757 (interacts with) 217", "interaction" : "interacts with", "SUID" : 77594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77590", "source" : "429", "target" : "1189", "shared_name" : "1757 (interacts with) 7915", "name" : "1757 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 77590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77586", "source" : "429", "target" : "977", "shared_name" : "1757 (interacts with) 79944", "name" : "1757 (interacts with) 79944", "interaction" : "interacts with", "SUID" : 77586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77582", "source" : "429", "target" : "4833", "shared_name" : "1757 (interacts with) 2593", "name" : "1757 (interacts with) 2593", "interaction" : "interacts with", "SUID" : 77582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77578", "source" : "429", "target" : "2365", "shared_name" : "1757 (interacts with) 2731", "name" : "1757 (interacts with) 2731", "interaction" : "interacts with", "SUID" : 77578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77574", "source" : "429", "target" : "5593", "shared_name" : "1757 (interacts with) 875", "name" : "1757 (interacts with) 875", "interaction" : "interacts with", "SUID" : 77574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77570", "source" : "429", "target" : "4617", "shared_name" : "1757 (interacts with) 26227", "name" : "1757 (interacts with) 26227", "interaction" : "interacts with", "SUID" : 77570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77566", "source" : "429", "target" : "4185", "shared_name" : "1757 (interacts with) 29968", "name" : "1757 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 77566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77562", "source" : "429", "target" : "3537", "shared_name" : "1757 (interacts with) 501", "name" : "1757 (interacts with) 501", "interaction" : "interacts with", "SUID" : 77562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77558", "source" : "429", "target" : "1013", "shared_name" : "1757 (interacts with) 6898", "name" : "1757 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 77558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77554", "source" : "429", "target" : "369", "shared_name" : "1757 (interacts with) 7173", "name" : "1757 (interacts with) 7173", "interaction" : "interacts with", "SUID" : 77554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77730", "source" : "425", "target" : "609", "shared_name" : "1103 (interacts with) 6812", "name" : "1103 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 77730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77726", "source" : "425", "target" : "5785", "shared_name" : "1103 (interacts with) 6857", "name" : "1103 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 77726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77722", "source" : "425", "target" : "5909", "shared_name" : "1103 (interacts with) 1374", "name" : "1103 (interacts with) 1374", "interaction" : "interacts with", "SUID" : 77722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77718", "source" : "425", "target" : "801", "shared_name" : "1103 (interacts with) 1376", "name" : "1103 (interacts with) 1376", "interaction" : "interacts with", "SUID" : 77718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77714", "source" : "425", "target" : "1521", "shared_name" : "1103 (interacts with) 84879", "name" : "1103 (interacts with) 84879", "interaction" : "interacts with", "SUID" : 77714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77710", "source" : "425", "target" : "681", "shared_name" : "1103 (interacts with) 6646", "name" : "1103 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 77710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77706", "source" : "425", "target" : "4941", "shared_name" : "1103 (interacts with) 6342", "name" : "1103 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 77706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77702", "source" : "425", "target" : "3461", "shared_name" : "1103 (interacts with) 5538", "name" : "1103 (interacts with) 5538", "interaction" : "interacts with", "SUID" : 77702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77698", "source" : "425", "target" : "3893", "shared_name" : "1103 (interacts with) 151056", "name" : "1103 (interacts with) 151056", "interaction" : "interacts with", "SUID" : 77698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77694", "source" : "425", "target" : "2925", "shared_name" : "1103 (interacts with) 8802", "name" : "1103 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 77694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77690", "source" : "425", "target" : "3425", "shared_name" : "1103 (interacts with) 8803", "name" : "1103 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 77690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77686", "source" : "425", "target" : "409", "shared_name" : "1103 (interacts with) 10558", "name" : "1103 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 77686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77682", "source" : "425", "target" : "385", "shared_name" : "1103 (interacts with) 5319", "name" : "1103 (interacts with) 5319", "interaction" : "interacts with", "SUID" : 77682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77678", "source" : "425", "target" : "2853", "shared_name" : "1103 (interacts with) 8398", "name" : "1103 (interacts with) 8398", "interaction" : "interacts with", "SUID" : 77678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77674", "source" : "425", "target" : "3177", "shared_name" : "1103 (interacts with) 5321", "name" : "1103 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 77674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77670", "source" : "425", "target" : "1849", "shared_name" : "1103 (interacts with) 26275", "name" : "1103 (interacts with) 26275", "interaction" : "interacts with", "SUID" : 77670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77666", "source" : "425", "target" : "1489", "shared_name" : "1103 (interacts with) 1738", "name" : "1103 (interacts with) 1738", "interaction" : "interacts with", "SUID" : 77666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77662", "source" : "425", "target" : "2897", "shared_name" : "1103 (interacts with) 1737", "name" : "1103 (interacts with) 1737", "interaction" : "interacts with", "SUID" : 77662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77658", "source" : "425", "target" : "3421", "shared_name" : "1103 (interacts with) 4967", "name" : "1103 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 77658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77654", "source" : "425", "target" : "3861", "shared_name" : "1103 (interacts with) 23646", "name" : "1103 (interacts with) 23646", "interaction" : "interacts with", "SUID" : 77654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77650", "source" : "425", "target" : "2965", "shared_name" : "1103 (interacts with) 22880", "name" : "1103 (interacts with) 22880", "interaction" : "interacts with", "SUID" : 77650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77646", "source" : "425", "target" : "3325", "shared_name" : "1103 (interacts with) 9517", "name" : "1103 (interacts with) 9517", "interaction" : "interacts with", "SUID" : 77646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77642", "source" : "425", "target" : "1585", "shared_name" : "1103 (interacts with) 80347", "name" : "1103 (interacts with) 80347", "interaction" : "interacts with", "SUID" : 77642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77638", "source" : "425", "target" : "4045", "shared_name" : "1103 (interacts with) 29920", "name" : "1103 (interacts with) 29920", "interaction" : "interacts with", "SUID" : 77638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77634", "source" : "425", "target" : "3501", "shared_name" : "1103 (interacts with) 5831", "name" : "1103 (interacts with) 5831", "interaction" : "interacts with", "SUID" : 77634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77630", "source" : "425", "target" : "2165", "shared_name" : "1103 (interacts with) 23417", "name" : "1103 (interacts with) 23417", "interaction" : "interacts with", "SUID" : 77630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77626", "source" : "425", "target" : "2669", "shared_name" : "1103 (interacts with) 9197", "name" : "1103 (interacts with) 9197", "interaction" : "interacts with", "SUID" : 77626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77622", "source" : "425", "target" : "3793", "shared_name" : "1103 (interacts with) 28965", "name" : "1103 (interacts with) 28965", "interaction" : "interacts with", "SUID" : 77622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77618", "source" : "425", "target" : "5001", "shared_name" : "1103 (interacts with) 132158", "name" : "1103 (interacts with) 132158", "interaction" : "interacts with", "SUID" : 77618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77614", "source" : "425", "target" : "4625", "shared_name" : "1103 (interacts with) 6785", "name" : "1103 (interacts with) 6785", "interaction" : "interacts with", "SUID" : 77614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77610", "source" : "425", "target" : "1133", "shared_name" : "1103 (interacts with) 3418", "name" : "1103 (interacts with) 3418", "interaction" : "interacts with", "SUID" : 77610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77606", "source" : "425", "target" : "5017", "shared_name" : "1103 (interacts with) 3417", "name" : "1103 (interacts with) 3417", "interaction" : "interacts with", "SUID" : 77606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77742", "source" : "417", "target" : "1541", "shared_name" : "6689 (interacts with) 958", "name" : "6689 (interacts with) 958", "interaction" : "interacts with", "SUID" : 77742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77738", "source" : "417", "target" : "2229", "shared_name" : "6689 (interacts with) 738", "name" : "6689 (interacts with) 738", "interaction" : "interacts with", "SUID" : 77738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77734", "source" : "417", "target" : "2389", "shared_name" : "6689 (interacts with) 6925", "name" : "6689 (interacts with) 6925", "interaction" : "interacts with", "SUID" : 77734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77762", "source" : "413", "target" : "6001", "shared_name" : "51733 (interacts with) 55157", "name" : "51733 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 77762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77758", "source" : "413", "target" : "4885", "shared_name" : "51733 (interacts with) 5340", "name" : "51733 (interacts with) 5340", "interaction" : "interacts with", "SUID" : 77758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77754", "source" : "413", "target" : "1585", "shared_name" : "51733 (interacts with) 80347", "name" : "51733 (interacts with) 80347", "interaction" : "interacts with", "SUID" : 77754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77750", "source" : "413", "target" : "1437", "shared_name" : "51733 (interacts with) 80025", "name" : "51733 (interacts with) 80025", "interaction" : "interacts with", "SUID" : 77750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77746", "source" : "413", "target" : "2277", "shared_name" : "51733 (interacts with) 686", "name" : "51733 (interacts with) 686", "interaction" : "interacts with", "SUID" : 77746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77822", "source" : "409", "target" : "977", "shared_name" : "10558 (interacts with) 79944", "name" : "10558 (interacts with) 79944", "interaction" : "interacts with", "SUID" : 77822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77818", "source" : "409", "target" : "3025", "shared_name" : "10558 (interacts with) 55627", "name" : "10558 (interacts with) 55627", "interaction" : "interacts with", "SUID" : 77818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77814", "source" : "409", "target" : "2245", "shared_name" : "10558 (interacts with) 5587", "name" : "10558 (interacts with) 5587", "interaction" : "interacts with", "SUID" : 77814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77810", "source" : "409", "target" : "1013", "shared_name" : "10558 (interacts with) 6898", "name" : "10558 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 77810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77806", "source" : "409", "target" : "2989", "shared_name" : "10558 (interacts with) 224", "name" : "10558 (interacts with) 224", "interaction" : "interacts with", "SUID" : 77806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77802", "source" : "409", "target" : "5529", "shared_name" : "10558 (interacts with) 2875", "name" : "10558 (interacts with) 2875", "interaction" : "interacts with", "SUID" : 77802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77798", "source" : "409", "target" : "4253", "shared_name" : "10558 (interacts with) 84706", "name" : "10558 (interacts with) 84706", "interaction" : "interacts with", "SUID" : 77798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77794", "source" : "409", "target" : "2893", "shared_name" : "10558 (interacts with) 79152", "name" : "10558 (interacts with) 79152", "interaction" : "interacts with", "SUID" : 77794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77790", "source" : "409", "target" : "6041", "shared_name" : "10558 (interacts with) 9217", "name" : "10558 (interacts with) 9217", "interaction" : "interacts with", "SUID" : 77790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77786", "source" : "409", "target" : "4641", "shared_name" : "10558 (interacts with) 55331", "name" : "10558 (interacts with) 55331", "interaction" : "interacts with", "SUID" : 77786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77782", "source" : "409", "target" : "3325", "shared_name" : "10558 (interacts with) 9517", "name" : "10558 (interacts with) 9517", "interaction" : "interacts with", "SUID" : 77782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77778", "source" : "409", "target" : "4169", "shared_name" : "10558 (interacts with) 10993", "name" : "10558 (interacts with) 10993", "interaction" : "interacts with", "SUID" : 77778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77774", "source" : "409", "target" : "5305", "shared_name" : "10558 (interacts with) 6901", "name" : "10558 (interacts with) 6901", "interaction" : "interacts with", "SUID" : 77774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77770", "source" : "409", "target" : "2925", "shared_name" : "10558 (interacts with) 8802", "name" : "10558 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 77770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77766", "source" : "409", "target" : "3425", "shared_name" : "10558 (interacts with) 8803", "name" : "10558 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 77766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77838", "source" : "405", "target" : "5517", "shared_name" : "54187 (interacts with) 8514", "name" : "54187 (interacts with) 8514", "interaction" : "interacts with", "SUID" : 77838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77834", "source" : "405", "target" : "273", "shared_name" : "54187 (interacts with) 8869", "name" : "54187 (interacts with) 8869", "interaction" : "interacts with", "SUID" : 77834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77830", "source" : "405", "target" : "741", "shared_name" : "54187 (interacts with) 4830", "name" : "54187 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 77830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77826", "source" : "405", "target" : "361", "shared_name" : "54187 (interacts with) 6576", "name" : "54187 (interacts with) 6576", "interaction" : "interacts with", "SUID" : 77826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77870", "source" : "401", "target" : "3781", "shared_name" : "6532 (interacts with) 9152", "name" : "6532 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 77870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77866", "source" : "401", "target" : "3845", "shared_name" : "6532 (interacts with) 10479", "name" : "6532 (interacts with) 10479", "interaction" : "interacts with", "SUID" : 77866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77862", "source" : "401", "target" : "277", "shared_name" : "6532 (interacts with) 285175", "name" : "6532 (interacts with) 285175", "interaction" : "interacts with", "SUID" : 77862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77858", "source" : "401", "target" : "1809", "shared_name" : "6532 (interacts with) 6548", "name" : "6532 (interacts with) 6548", "interaction" : "interacts with", "SUID" : 77858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77854", "source" : "401", "target" : "5785", "shared_name" : "6532 (interacts with) 6857", "name" : "6532 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 77854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77850", "source" : "401", "target" : "609", "shared_name" : "6532 (interacts with) 6812", "name" : "6532 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 77850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77846", "source" : "401", "target" : "5929", "shared_name" : "6532 (interacts with) 6616", "name" : "6532 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 77846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77842", "source" : "401", "target" : "5877", "shared_name" : "6532 (interacts with) 6535", "name" : "6532 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 77842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77986", "source" : "397", "target" : "2881", "shared_name" : "50 (interacts with) 5160", "name" : "50 (interacts with) 5160", "interaction" : "interacts with", "SUID" : 77986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77982", "source" : "397", "target" : "2161", "shared_name" : "50 (interacts with) 55163", "name" : "50 (interacts with) 55163", "interaction" : "interacts with", "SUID" : 77982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77978", "source" : "397", "target" : "1289", "shared_name" : "50 (interacts with) 6392", "name" : "50 (interacts with) 6392", "interaction" : "interacts with", "SUID" : 77978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77974", "source" : "397", "target" : "1669", "shared_name" : "50 (interacts with) 6390", "name" : "50 (interacts with) 6390", "interaction" : "interacts with", "SUID" : 77974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77970", "source" : "397", "target" : "2925", "shared_name" : "50 (interacts with) 8802", "name" : "50 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 77970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77966", "source" : "397", "target" : "3425", "shared_name" : "50 (interacts with) 8803", "name" : "50 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 77966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77962", "source" : "397", "target" : "5025", "shared_name" : "50 (interacts with) 6389", "name" : "50 (interacts with) 6389", "interaction" : "interacts with", "SUID" : 77962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77958", "source" : "397", "target" : "1301", "shared_name" : "50 (interacts with) 5095", "name" : "50 (interacts with) 5095", "interaction" : "interacts with", "SUID" : 77958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77954", "source" : "397", "target" : "1021", "shared_name" : "50 (interacts with) 5096", "name" : "50 (interacts with) 5096", "interaction" : "interacts with", "SUID" : 77954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77950", "source" : "397", "target" : "3445", "shared_name" : "50 (interacts with) 5091", "name" : "50 (interacts with) 5091", "interaction" : "interacts with", "SUID" : 77950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77946", "source" : "397", "target" : "361", "shared_name" : "50 (interacts with) 6576", "name" : "50 (interacts with) 6576", "interaction" : "interacts with", "SUID" : 77946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77942", "source" : "397", "target" : "1013", "shared_name" : "50 (interacts with) 6898", "name" : "50 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 77942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77938", "source" : "397", "target" : "1133", "shared_name" : "50 (interacts with) 3418", "name" : "50 (interacts with) 3418", "interaction" : "interacts with", "SUID" : 77938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77934", "source" : "397", "target" : "5017", "shared_name" : "50 (interacts with) 3417", "name" : "50 (interacts with) 3417", "interaction" : "interacts with", "SUID" : 77934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77930", "source" : "397", "target" : "3481", "shared_name" : "50 (interacts with) 6513", "name" : "50 (interacts with) 6513", "interaction" : "interacts with", "SUID" : 77930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77926", "source" : "397", "target" : "2721", "shared_name" : "50 (interacts with) 79751", "name" : "50 (interacts with) 79751", "interaction" : "interacts with", "SUID" : 77926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77922", "source" : "397", "target" : "1433", "shared_name" : "50 (interacts with) 6515", "name" : "50 (interacts with) 6515", "interaction" : "interacts with", "SUID" : 77922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77918", "source" : "397", "target" : "1485", "shared_name" : "50 (interacts with) 8050", "name" : "50 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 77918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77914", "source" : "397", "target" : "349", "shared_name" : "50 (interacts with) 60386", "name" : "50 (interacts with) 60386", "interaction" : "interacts with", "SUID" : 77914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77910", "source" : "397", "target" : "1885", "shared_name" : "50 (interacts with) 8604", "name" : "50 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 77910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77906", "source" : "397", "target" : "3929", "shared_name" : "50 (interacts with) 5860", "name" : "50 (interacts with) 5860", "interaction" : "interacts with", "SUID" : 77906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77902", "source" : "397", "target" : "3537", "shared_name" : "50 (interacts with) 501", "name" : "50 (interacts with) 501", "interaction" : "interacts with", "SUID" : 77902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77898", "source" : "397", "target" : "741", "shared_name" : "50 (interacts with) 4830", "name" : "50 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 77898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77894", "source" : "397", "target" : "3977", "shared_name" : "50 (interacts with) 51477", "name" : "50 (interacts with) 51477", "interaction" : "interacts with", "SUID" : 77894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77890", "source" : "397", "target" : "6165", "shared_name" : "50 (interacts with) 2629", "name" : "50 (interacts with) 2629", "interaction" : "interacts with", "SUID" : 77890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77886", "source" : "397", "target" : "5133", "shared_name" : "50 (interacts with) 51", "name" : "50 (interacts with) 51", "interaction" : "interacts with", "SUID" : 77886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77882", "source" : "397", "target" : "2989", "shared_name" : "50 (interacts with) 224", "name" : "50 (interacts with) 224", "interaction" : "interacts with", "SUID" : 77882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77878", "source" : "397", "target" : "5565", "shared_name" : "50 (interacts with) 217", "name" : "50 (interacts with) 217", "interaction" : "interacts with", "SUID" : 77878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77874", "source" : "397", "target" : "1461", "shared_name" : "50 (interacts with) 5832", "name" : "50 (interacts with) 5832", "interaction" : "interacts with", "SUID" : 77874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77990", "source" : "393", "target" : "2393", "shared_name" : "6664 (interacts with) 6683", "name" : "6664 (interacts with) 6683", "interaction" : "interacts with", "SUID" : 77990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78022", "source" : "385", "target" : "2853", "shared_name" : "5319 (interacts with) 8398", "name" : "5319 (interacts with) 8398", "interaction" : "interacts with", "SUID" : 78022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78018", "source" : "385", "target" : "5305", "shared_name" : "5319 (interacts with) 6901", "name" : "5319 (interacts with) 6901", "interaction" : "interacts with", "SUID" : 78018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78014", "source" : "385", "target" : "2925", "shared_name" : "5319 (interacts with) 8802", "name" : "5319 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 78014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78010", "source" : "385", "target" : "3425", "shared_name" : "5319 (interacts with) 8803", "name" : "5319 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 78010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78006", "source" : "385", "target" : "409", "shared_name" : "5319 (interacts with) 10558", "name" : "5319 (interacts with) 10558", "interaction" : "interacts with", "SUID" : 78006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78002", "source" : "385", "target" : "681", "shared_name" : "5319 (interacts with) 6646", "name" : "5319 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 78002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77998", "source" : "385", "target" : "3461", "shared_name" : "5319 (interacts with) 5538", "name" : "5319 (interacts with) 5538", "interaction" : "interacts with", "SUID" : 77998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "77994", "source" : "385", "target" : "4941", "shared_name" : "5319 (interacts with) 6342", "name" : "5319 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 77994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78106", "source" : "381", "target" : "5557", "shared_name" : "6323 (interacts with) 9254", "name" : "6323 (interacts with) 9254", "interaction" : "interacts with", "SUID" : 78106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78102", "source" : "381", "target" : "377", "shared_name" : "6323 (interacts with) 6326", "name" : "6323 (interacts with) 6326", "interaction" : "interacts with", "SUID" : 78102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78098", "source" : "381", "target" : "689", "shared_name" : "6323 (interacts with) 6329", "name" : "6323 (interacts with) 6329", "interaction" : "interacts with", "SUID" : 78098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78094", "source" : "381", "target" : "373", "shared_name" : "6323 (interacts with) 6328", "name" : "6323 (interacts with) 6328", "interaction" : "interacts with", "SUID" : 78094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78090", "source" : "381", "target" : "5229", "shared_name" : "6323 (interacts with) 6335", "name" : "6323 (interacts with) 6335", "interaction" : "interacts with", "SUID" : 78090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78086", "source" : "381", "target" : "4841", "shared_name" : "6323 (interacts with) 6334", "name" : "6323 (interacts with) 6334", "interaction" : "interacts with", "SUID" : 78086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78082", "source" : "381", "target" : "1633", "shared_name" : "6323 (interacts with) 57731", "name" : "6323 (interacts with) 57731", "interaction" : "interacts with", "SUID" : 78082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78078", "source" : "381", "target" : "1973", "shared_name" : "6323 (interacts with) 6709", "name" : "6323 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 78078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78074", "source" : "381", "target" : "3637", "shared_name" : "6323 (interacts with) 6712", "name" : "6323 (interacts with) 6712", "interaction" : "interacts with", "SUID" : 78074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78070", "source" : "381", "target" : "5877", "shared_name" : "6323 (interacts with) 6535", "name" : "6323 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 78070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78066", "source" : "381", "target" : "309", "shared_name" : "6323 (interacts with) 6536", "name" : "6323 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 78066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78062", "source" : "381", "target" : "401", "shared_name" : "6323 (interacts with) 6532", "name" : "6323 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 78062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78058", "source" : "381", "target" : "3781", "shared_name" : "6323 (interacts with) 9152", "name" : "6323 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 78058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78054", "source" : "381", "target" : "3601", "shared_name" : "6323 (interacts with) 6531", "name" : "6323 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 78054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78050", "source" : "381", "target" : "2877", "shared_name" : "6323 (interacts with) 340024", "name" : "6323 (interacts with) 340024", "interaction" : "interacts with", "SUID" : 78050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78046", "source" : "381", "target" : "3473", "shared_name" : "6323 (interacts with) 6528", "name" : "6323 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 78046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78042", "source" : "381", "target" : "1385", "shared_name" : "6323 (interacts with) 6520", "name" : "6323 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 78042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78038", "source" : "381", "target" : "5805", "shared_name" : "6323 (interacts with) 6575", "name" : "6323 (interacts with) 6575", "interaction" : "interacts with", "SUID" : 78038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78034", "source" : "381", "target" : "3077", "shared_name" : "6323 (interacts with) 6506", "name" : "6323 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 78034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78030", "source" : "381", "target" : "6009", "shared_name" : "6323 (interacts with) 64849", "name" : "6323 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 78030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78026", "source" : "381", "target" : "4025", "shared_name" : "6323 (interacts with) 284111", "name" : "6323 (interacts with) 284111", "interaction" : "interacts with", "SUID" : 78026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78186", "source" : "377", "target" : "5557", "shared_name" : "6326 (interacts with) 9254", "name" : "6326 (interacts with) 9254", "interaction" : "interacts with", "SUID" : 78186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78182", "source" : "377", "target" : "689", "shared_name" : "6326 (interacts with) 6329", "name" : "6326 (interacts with) 6329", "interaction" : "interacts with", "SUID" : 78182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78178", "source" : "377", "target" : "5229", "shared_name" : "6326 (interacts with) 6335", "name" : "6326 (interacts with) 6335", "interaction" : "interacts with", "SUID" : 78178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78174", "source" : "377", "target" : "373", "shared_name" : "6326 (interacts with) 6328", "name" : "6326 (interacts with) 6328", "interaction" : "interacts with", "SUID" : 78174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78170", "source" : "377", "target" : "4841", "shared_name" : "6326 (interacts with) 6334", "name" : "6326 (interacts with) 6334", "interaction" : "interacts with", "SUID" : 78170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78166", "source" : "377", "target" : "3637", "shared_name" : "6326 (interacts with) 6712", "name" : "6326 (interacts with) 6712", "interaction" : "interacts with", "SUID" : 78166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78162", "source" : "377", "target" : "1633", "shared_name" : "6326 (interacts with) 57731", "name" : "6326 (interacts with) 57731", "interaction" : "interacts with", "SUID" : 78162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78158", "source" : "377", "target" : "1973", "shared_name" : "6326 (interacts with) 6709", "name" : "6326 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 78158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78154", "source" : "377", "target" : "5877", "shared_name" : "6326 (interacts with) 6535", "name" : "6326 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 78154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78150", "source" : "377", "target" : "309", "shared_name" : "6326 (interacts with) 6536", "name" : "6326 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 78150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78146", "source" : "377", "target" : "3601", "shared_name" : "6326 (interacts with) 6531", "name" : "6326 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 78146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78142", "source" : "377", "target" : "401", "shared_name" : "6326 (interacts with) 6532", "name" : "6326 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 78142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78138", "source" : "377", "target" : "3781", "shared_name" : "6326 (interacts with) 9152", "name" : "6326 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 78138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78134", "source" : "377", "target" : "2877", "shared_name" : "6326 (interacts with) 340024", "name" : "6326 (interacts with) 340024", "interaction" : "interacts with", "SUID" : 78134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78130", "source" : "377", "target" : "3473", "shared_name" : "6326 (interacts with) 6528", "name" : "6326 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 78130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78126", "source" : "377", "target" : "1385", "shared_name" : "6326 (interacts with) 6520", "name" : "6326 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 78126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78122", "source" : "377", "target" : "5805", "shared_name" : "6326 (interacts with) 6575", "name" : "6326 (interacts with) 6575", "interaction" : "interacts with", "SUID" : 78122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78118", "source" : "377", "target" : "3077", "shared_name" : "6326 (interacts with) 6506", "name" : "6326 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 78118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78114", "source" : "377", "target" : "6009", "shared_name" : "6326 (interacts with) 64849", "name" : "6326 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 78114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78110", "source" : "377", "target" : "4025", "shared_name" : "6326 (interacts with) 284111", "name" : "6326 (interacts with) 284111", "interaction" : "interacts with", "SUID" : 78110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78266", "source" : "373", "target" : "5937", "shared_name" : "6328 (interacts with) 8120", "name" : "6328 (interacts with) 8120", "interaction" : "interacts with", "SUID" : 78266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78262", "source" : "373", "target" : "5557", "shared_name" : "6328 (interacts with) 9254", "name" : "6328 (interacts with) 9254", "interaction" : "interacts with", "SUID" : 78262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78258", "source" : "373", "target" : "689", "shared_name" : "6328 (interacts with) 6329", "name" : "6328 (interacts with) 6329", "interaction" : "interacts with", "SUID" : 78258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78254", "source" : "373", "target" : "4841", "shared_name" : "6328 (interacts with) 6334", "name" : "6328 (interacts with) 6334", "interaction" : "interacts with", "SUID" : 78254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78250", "source" : "373", "target" : "5229", "shared_name" : "6328 (interacts with) 6335", "name" : "6328 (interacts with) 6335", "interaction" : "interacts with", "SUID" : 78250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78246", "source" : "373", "target" : "3637", "shared_name" : "6328 (interacts with) 6712", "name" : "6328 (interacts with) 6712", "interaction" : "interacts with", "SUID" : 78246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78242", "source" : "373", "target" : "1633", "shared_name" : "6328 (interacts with) 57731", "name" : "6328 (interacts with) 57731", "interaction" : "interacts with", "SUID" : 78242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78238", "source" : "373", "target" : "1973", "shared_name" : "6328 (interacts with) 6709", "name" : "6328 (interacts with) 6709", "interaction" : "interacts with", "SUID" : 78238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78234", "source" : "373", "target" : "309", "shared_name" : "6328 (interacts with) 6536", "name" : "6328 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 78234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78230", "source" : "373", "target" : "3781", "shared_name" : "6328 (interacts with) 9152", "name" : "6328 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 78230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78226", "source" : "373", "target" : "5877", "shared_name" : "6328 (interacts with) 6535", "name" : "6328 (interacts with) 6535", "interaction" : "interacts with", "SUID" : 78226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78222", "source" : "373", "target" : "3601", "shared_name" : "6328 (interacts with) 6531", "name" : "6328 (interacts with) 6531", "interaction" : "interacts with", "SUID" : 78222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78218", "source" : "373", "target" : "401", "shared_name" : "6328 (interacts with) 6532", "name" : "6328 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 78218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78214", "source" : "373", "target" : "2877", "shared_name" : "6328 (interacts with) 340024", "name" : "6328 (interacts with) 340024", "interaction" : "interacts with", "SUID" : 78214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78210", "source" : "373", "target" : "3473", "shared_name" : "6328 (interacts with) 6528", "name" : "6328 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 78210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78206", "source" : "373", "target" : "1385", "shared_name" : "6328 (interacts with) 6520", "name" : "6328 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 78206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78202", "source" : "373", "target" : "5805", "shared_name" : "6328 (interacts with) 6575", "name" : "6328 (interacts with) 6575", "interaction" : "interacts with", "SUID" : 78202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78198", "source" : "373", "target" : "3077", "shared_name" : "6328 (interacts with) 6506", "name" : "6328 (interacts with) 6506", "interaction" : "interacts with", "SUID" : 78198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78194", "source" : "373", "target" : "4025", "shared_name" : "6328 (interacts with) 284111", "name" : "6328 (interacts with) 284111", "interaction" : "interacts with", "SUID" : 78194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78190", "source" : "373", "target" : "6009", "shared_name" : "6328 (interacts with) 64849", "name" : "6328 (interacts with) 64849", "interaction" : "interacts with", "SUID" : 78190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78270", "source" : "369", "target" : "4605", "shared_name" : "7173 (interacts with) 7276", "name" : "7173 (interacts with) 7276", "interaction" : "interacts with", "SUID" : 78270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78286", "source" : "365", "target" : "4625", "shared_name" : "64834 (interacts with) 6785", "name" : "64834 (interacts with) 6785", "interaction" : "interacts with", "SUID" : 78286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78282", "source" : "365", "target" : "1133", "shared_name" : "64834 (interacts with) 3418", "name" : "64834 (interacts with) 3418", "interaction" : "interacts with", "SUID" : 78282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78278", "source" : "365", "target" : "5017", "shared_name" : "64834 (interacts with) 3417", "name" : "64834 (interacts with) 3417", "interaction" : "interacts with", "SUID" : 78278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78274", "source" : "365", "target" : "2965", "shared_name" : "64834 (interacts with) 22880", "name" : "64834 (interacts with) 22880", "interaction" : "interacts with", "SUID" : 78274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78302", "source" : "361", "target" : "4577", "shared_name" : "6576 (interacts with) 7167", "name" : "6576 (interacts with) 7167", "interaction" : "interacts with", "SUID" : 78302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78298", "source" : "361", "target" : "5497", "shared_name" : "6576 (interacts with) 91137", "name" : "6576 (interacts with) 91137", "interaction" : "interacts with", "SUID" : 78298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78294", "source" : "361", "target" : "2721", "shared_name" : "6576 (interacts with) 79751", "name" : "6576 (interacts with) 79751", "interaction" : "interacts with", "SUID" : 78294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78290", "source" : "361", "target" : "1885", "shared_name" : "6576 (interacts with) 8604", "name" : "6576 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 78290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78362", "source" : "357", "target" : "5557", "shared_name" : "777 (interacts with) 9254", "name" : "777 (interacts with) 9254", "interaction" : "interacts with", "SUID" : 78362, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78358", "source" : "357", "target" : "997", "shared_name" : "777 (interacts with) 7431", "name" : "777 (interacts with) 7431", "interaction" : "interacts with", "SUID" : 78358, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78354", "source" : "357", "target" : "5989", "shared_name" : "777 (interacts with) 7273", "name" : "777 (interacts with) 7273", "interaction" : "interacts with", "SUID" : 78354, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78350", "source" : "357", "target" : "2581", "shared_name" : "777 (interacts with) 7170", "name" : "777 (interacts with) 7170", "interaction" : "interacts with", "SUID" : 78350, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78346", "source" : "357", "target" : "5785", "shared_name" : "777 (interacts with) 6857", "name" : "777 (interacts with) 6857", "interaction" : "interacts with", "SUID" : 78346, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78342", "source" : "357", "target" : "609", "shared_name" : "777 (interacts with) 6812", "name" : "777 (interacts with) 6812", "interaction" : "interacts with", "SUID" : 78342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78338", "source" : "357", "target" : "5929", "shared_name" : "777 (interacts with) 6616", "name" : "777 (interacts with) 6616", "interaction" : "interacts with", "SUID" : 78338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78334", "source" : "357", "target" : "3593", "shared_name" : "777 (interacts with) 5530", "name" : "777 (interacts with) 5530", "interaction" : "interacts with", "SUID" : 78334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78330", "source" : "357", "target" : "565", "shared_name" : "777 (interacts with) 4772", "name" : "777 (interacts with) 4772", "interaction" : "interacts with", "SUID" : 78330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78326", "source" : "357", "target" : "3177", "shared_name" : "777 (interacts with) 5321", "name" : "777 (interacts with) 5321", "interaction" : "interacts with", "SUID" : 78326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78322", "source" : "357", "target" : "1357", "shared_name" : "777 (interacts with) 58498", "name" : "777 (interacts with) 58498", "interaction" : "interacts with", "SUID" : 78322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78318", "source" : "357", "target" : "6097", "shared_name" : "777 (interacts with) 1756", "name" : "777 (interacts with) 1756", "interaction" : "interacts with", "SUID" : 78318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78314", "source" : "357", "target" : "4893", "shared_name" : "777 (interacts with) 10815", "name" : "777 (interacts with) 10815", "interaction" : "interacts with", "SUID" : 78314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78310", "source" : "357", "target" : "993", "shared_name" : "777 (interacts with) 801", "name" : "777 (interacts with) 801", "interaction" : "interacts with", "SUID" : 78310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78306", "source" : "357", "target" : "2553", "shared_name" : "777 (interacts with) 815", "name" : "777 (interacts with) 815", "interaction" : "interacts with", "SUID" : 78306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78366", "source" : "353", "target" : "633", "shared_name" : "100289462 (interacts with) 1673", "name" : "100289462 (interacts with) 1673", "interaction" : "interacts with", "SUID" : 78366, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78394", "source" : "349", "target" : "5497", "shared_name" : "60386 (interacts with) 91137", "name" : "60386 (interacts with) 91137", "interaction" : "interacts with", "SUID" : 78394, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78390", "source" : "349", "target" : "361", "shared_name" : "60386 (interacts with) 6576", "name" : "60386 (interacts with) 6576", "interaction" : "interacts with", "SUID" : 78390, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78386", "source" : "349", "target" : "1885", "shared_name" : "60386 (interacts with) 8604", "name" : "60386 (interacts with) 8604", "interaction" : "interacts with", "SUID" : 78386, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78382", "source" : "349", "target" : "5113", "shared_name" : "60386 (interacts with) 7084", "name" : "60386 (interacts with) 7084", "interaction" : "interacts with", "SUID" : 78382, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78378", "source" : "349", "target" : "6025", "shared_name" : "60386 (interacts with) 80704", "name" : "60386 (interacts with) 80704", "interaction" : "interacts with", "SUID" : 78378, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78374", "source" : "349", "target" : "2721", "shared_name" : "60386 (interacts with) 79751", "name" : "60386 (interacts with) 79751", "interaction" : "interacts with", "SUID" : 78374, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78370", "source" : "349", "target" : "1385", "shared_name" : "60386 (interacts with) 6520", "name" : "60386 (interacts with) 6520", "interaction" : "interacts with", "SUID" : 78370, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78398", "source" : "345", "target" : "4465", "shared_name" : "26137 (interacts with) 6314", "name" : "26137 (interacts with) 6314", "interaction" : "interacts with", "SUID" : 78398, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78402", "source" : "341", "target" : "4125", "shared_name" : "4547 (interacts with) 51360", "name" : "4547 (interacts with) 51360", "interaction" : "interacts with", "SUID" : 78402, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78406", "source" : "337", "target" : "1145", "shared_name" : "9289 (interacts with) 1281", "name" : "9289 (interacts with) 1281", "interaction" : "interacts with", "SUID" : 78406, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78414", "source" : "333", "target" : "5765", "shared_name" : "170302 (interacts with) 2290", "name" : "170302 (interacts with) 2290", "interaction" : "interacts with", "SUID" : 78414, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78410", "source" : "333", "target" : "2253", "shared_name" : "170302 (interacts with) 253738", "name" : "170302 (interacts with) 253738", "interaction" : "interacts with", "SUID" : 78410, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78426", "source" : "325", "target" : "3349", "shared_name" : "23135 (interacts with) 8878", "name" : "23135 (interacts with) 8878", "interaction" : "interacts with", "SUID" : 78426, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78422", "source" : "325", "target" : "3017", "shared_name" : "23135 (interacts with) 4790", "name" : "23135 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 78422, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78418", "source" : "325", "target" : "5941", "shared_name" : "23135 (interacts with) 5914", "name" : "23135 (interacts with) 5914", "interaction" : "interacts with", "SUID" : 78418, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78474", "source" : "321", "target" : "6149", "shared_name" : "1593 (interacts with) 335", "name" : "1593 (interacts with) 335", "interaction" : "interacts with", "SUID" : 78474, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78470", "source" : "321", "target" : "3793", "shared_name" : "1593 (interacts with) 28965", "name" : "1593 (interacts with) 28965", "interaction" : "interacts with", "SUID" : 78470, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78466", "source" : "321", "target" : "6153", "shared_name" : "1593 (interacts with) 9915", "name" : "1593 (interacts with) 9915", "interaction" : "interacts with", "SUID" : 78466, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78462", "source" : "321", "target" : "5645", "shared_name" : "1593 (interacts with) 9420", "name" : "1593 (interacts with) 9420", "interaction" : "interacts with", "SUID" : 78462, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78458", "source" : "321", "target" : "861", "shared_name" : "1593 (interacts with) 23600", "name" : "1593 (interacts with) 23600", "interaction" : "interacts with", "SUID" : 78458, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78454", "source" : "321", "target" : "1525", "shared_name" : "1593 (interacts with) 3295", "name" : "1593 (interacts with) 3295", "interaction" : "interacts with", "SUID" : 78454, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78450", "source" : "321", "target" : "4941", "shared_name" : "1593 (interacts with) 6342", "name" : "1593 (interacts with) 6342", "interaction" : "interacts with", "SUID" : 78450, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78446", "source" : "321", "target" : "261", "shared_name" : "1593 (interacts with) 1717", "name" : "1593 (interacts with) 1717", "interaction" : "interacts with", "SUID" : 78446, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78442", "source" : "321", "target" : "681", "shared_name" : "1593 (interacts with) 6646", "name" : "1593 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 78442, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78438", "source" : "321", "target" : "2457", "shared_name" : "1593 (interacts with) 4143", "name" : "1593 (interacts with) 4143", "interaction" : "interacts with", "SUID" : 78438, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78434", "source" : "321", "target" : "4833", "shared_name" : "1593 (interacts with) 2593", "name" : "1593 (interacts with) 2593", "interaction" : "interacts with", "SUID" : 78434, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78430", "source" : "321", "target" : "317", "shared_name" : "1593 (interacts with) 3176", "name" : "1593 (interacts with) 3176", "interaction" : "interacts with", "SUID" : 78430, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78486", "source" : "317", "target" : "2177", "shared_name" : "3176 (interacts with) 443", "name" : "3176 (interacts with) 443", "interaction" : "interacts with", "SUID" : 78486, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78482", "source" : "317", "target" : "3537", "shared_name" : "3176 (interacts with) 501", "name" : "3176 (interacts with) 501", "interaction" : "interacts with", "SUID" : 78482, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78478", "source" : "317", "target" : "2457", "shared_name" : "3176 (interacts with) 4143", "name" : "3176 (interacts with) 4143", "interaction" : "interacts with", "SUID" : 78478, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78506", "source" : "309", "target" : "1157", "shared_name" : "6536 (interacts with) 6580", "name" : "6536 (interacts with) 6580", "interaction" : "interacts with", "SUID" : 78506, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78502", "source" : "309", "target" : "3777", "shared_name" : "6536 (interacts with) 6571", "name" : "6536 (interacts with) 6571", "interaction" : "interacts with", "SUID" : 78502, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78498", "source" : "309", "target" : "3781", "shared_name" : "6536 (interacts with) 9152", "name" : "6536 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 78498, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78494", "source" : "309", "target" : "277", "shared_name" : "6536 (interacts with) 285175", "name" : "6536 (interacts with) 285175", "interaction" : "interacts with", "SUID" : 78494, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78490", "source" : "309", "target" : "3845", "shared_name" : "6536 (interacts with) 10479", "name" : "6536 (interacts with) 10479", "interaction" : "interacts with", "SUID" : 78490, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78514", "source" : "305", "target" : "5645", "shared_name" : "79644 (interacts with) 9420", "name" : "79644 (interacts with) 9420", "interaction" : "interacts with", "SUID" : 78514, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78510", "source" : "305", "target" : "4461", "shared_name" : "79644 (interacts with) 79947", "name" : "79644 (interacts with) 79947", "interaction" : "interacts with", "SUID" : 78510, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78534", "source" : "301", "target" : "1781", "shared_name" : "219285 (interacts with) 4084", "name" : "219285 (interacts with) 4084", "interaction" : "interacts with", "SUID" : 78534, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78530", "source" : "301", "target" : "4681", "shared_name" : "219285 (interacts with) 4843", "name" : "219285 (interacts with) 4843", "interaction" : "interacts with", "SUID" : 78530, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78526", "source" : "301", "target" : "3853", "shared_name" : "219285 (interacts with) 6786", "name" : "219285 (interacts with) 6786", "interaction" : "interacts with", "SUID" : 78526, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78522", "source" : "301", "target" : "3417", "shared_name" : "219285 (interacts with) 5371", "name" : "219285 (interacts with) 5371", "interaction" : "interacts with", "SUID" : 78522, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78518", "source" : "301", "target" : "3197", "shared_name" : "219285 (interacts with) 64135", "name" : "219285 (interacts with) 64135", "interaction" : "interacts with", "SUID" : 78518, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78550", "source" : "297", "target" : "2785", "shared_name" : "1339 (interacts with) 1351", "name" : "1339 (interacts with) 1351", "interaction" : "interacts with", "SUID" : 78550, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78546", "source" : "297", "target" : "1605", "shared_name" : "1339 (interacts with) 6648", "name" : "1339 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 78546, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78542", "source" : "297", "target" : "5385", "shared_name" : "1339 (interacts with) 1349", "name" : "1339 (interacts with) 1349", "interaction" : "interacts with", "SUID" : 78542, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78538", "source" : "297", "target" : "5685", "shared_name" : "1339 (interacts with) 1340", "name" : "1339 (interacts with) 1340", "interaction" : "interacts with", "SUID" : 78538, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78558", "source" : "293", "target" : "3705", "shared_name" : "54802 (interacts with) 87178", "name" : "54802 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 78558, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78554", "source" : "293", "target" : "4577", "shared_name" : "54802 (interacts with) 7167", "name" : "54802 (interacts with) 7167", "interaction" : "interacts with", "SUID" : 78554, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78590", "source" : "289", "target" : "1697", "shared_name" : "56052 (interacts with) 8818", "name" : "56052 (interacts with) 8818", "interaction" : "interacts with", "SUID" : 78590, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78586", "source" : "289", "target" : "3605", "shared_name" : "56052 (interacts with) 7841", "name" : "56052 (interacts with) 7841", "interaction" : "interacts with", "SUID" : 78586, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78582", "source" : "289", "target" : "1797", "shared_name" : "56052 (interacts with) 85365", "name" : "56052 (interacts with) 85365", "interaction" : "interacts with", "SUID" : 78582, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78578", "source" : "289", "target" : "6017", "shared_name" : "56052 (interacts with) 79796", "name" : "56052 (interacts with) 79796", "interaction" : "interacts with", "SUID" : 78578, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78574", "source" : "289", "target" : "5289", "shared_name" : "56052 (interacts with) 9526", "name" : "56052 (interacts with) 9526", "interaction" : "interacts with", "SUID" : 78574, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78570", "source" : "289", "target" : "3037", "shared_name" : "56052 (interacts with) 8813", "name" : "56052 (interacts with) 8813", "interaction" : "interacts with", "SUID" : 78570, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78566", "source" : "289", "target" : "2633", "shared_name" : "56052 (interacts with) 29926", "name" : "56052 (interacts with) 29926", "interaction" : "interacts with", "SUID" : 78566, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78562", "source" : "289", "target" : "5717", "shared_name" : "56052 (interacts with) 29925", "name" : "56052 (interacts with) 29925", "interaction" : "interacts with", "SUID" : 78562, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78598", "source" : "285", "target" : "405", "shared_name" : "5238 (interacts with) 54187", "name" : "5238 (interacts with) 54187", "interaction" : "interacts with", "SUID" : 78598, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78594", "source" : "285", "target" : "5401", "shared_name" : "5238 (interacts with) 5373", "name" : "5238 (interacts with) 5373", "interaction" : "interacts with", "SUID" : 78594, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78662", "source" : "281", "target" : "5969", "shared_name" : "26005 (interacts with) 10382", "name" : "26005 (interacts with) 10382", "interaction" : "interacts with", "SUID" : 78662, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78658", "source" : "281", "target" : "5713", "shared_name" : "26005 (interacts with) 7531", "name" : "26005 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 78658, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78654", "source" : "281", "target" : "4021", "shared_name" : "26005 (interacts with) 203068", "name" : "26005 (interacts with) 203068", "interaction" : "interacts with", "SUID" : 78654, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78650", "source" : "281", "target" : "2357", "shared_name" : "26005 (interacts with) 79600", "name" : "26005 (interacts with) 79600", "interaction" : "interacts with", "SUID" : 78650, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78646", "source" : "281", "target" : "4245", "shared_name" : "26005 (interacts with) 91147", "name" : "26005 (interacts with) 91147", "interaction" : "interacts with", "SUID" : 78646, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78642", "source" : "281", "target" : "269", "shared_name" : "26005 (interacts with) 51259", "name" : "26005 (interacts with) 51259", "interaction" : "interacts with", "SUID" : 78642, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78638", "source" : "281", "target" : "4321", "shared_name" : "26005 (interacts with) 132320", "name" : "26005 (interacts with) 132320", "interaction" : "interacts with", "SUID" : 78638, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78634", "source" : "281", "target" : "2341", "shared_name" : "26005 (interacts with) 23322", "name" : "26005 (interacts with) 23322", "interaction" : "interacts with", "SUID" : 78634, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78630", "source" : "281", "target" : "5429", "shared_name" : "26005 (interacts with) 5048", "name" : "26005 (interacts with) 5048", "interaction" : "interacts with", "SUID" : 78630, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78626", "source" : "281", "target" : "4977", "shared_name" : "26005 (interacts with) 8481", "name" : "26005 (interacts with) 8481", "interaction" : "interacts with", "SUID" : 78626, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78622", "source" : "281", "target" : "5641", "shared_name" : "26005 (interacts with) 5518", "name" : "26005 (interacts with) 5518", "interaction" : "interacts with", "SUID" : 78622, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78618", "source" : "281", "target" : "5437", "shared_name" : "26005 (interacts with) 10733", "name" : "26005 (interacts with) 10733", "interaction" : "interacts with", "SUID" : 78618, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78614", "source" : "281", "target" : "4997", "shared_name" : "26005 (interacts with) 54820", "name" : "26005 (interacts with) 54820", "interaction" : "interacts with", "SUID" : 78614, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78610", "source" : "281", "target" : "3785", "shared_name" : "26005 (interacts with) 1781", "name" : "26005 (interacts with) 1781", "interaction" : "interacts with", "SUID" : 78610, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78606", "source" : "281", "target" : "1321", "shared_name" : "26005 (interacts with) 1778", "name" : "26005 (interacts with) 1778", "interaction" : "interacts with", "SUID" : 78606, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78602", "source" : "281", "target" : "1317", "shared_name" : "26005 (interacts with) 57545", "name" : "26005 (interacts with) 57545", "interaction" : "interacts with", "SUID" : 78602, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78670", "source" : "277", "target" : "5373", "shared_name" : "285175 (interacts with) 28962", "name" : "285175 (interacts with) 28962", "interaction" : "interacts with", "SUID" : 78670, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78666", "source" : "277", "target" : "1429", "shared_name" : "285175 (interacts with) 65125", "name" : "285175 (interacts with) 65125", "interaction" : "interacts with", "SUID" : 78666, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78674", "source" : "273", "target" : "2669", "shared_name" : "8869 (interacts with) 9197", "name" : "8869 (interacts with) 9197", "interaction" : "interacts with", "SUID" : 78674, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78690", "source" : "269", "target" : "5969", "shared_name" : "51259 (interacts with) 10382", "name" : "51259 (interacts with) 10382", "interaction" : "interacts with", "SUID" : 78690, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78686", "source" : "269", "target" : "5713", "shared_name" : "51259 (interacts with) 7531", "name" : "51259 (interacts with) 7531", "interaction" : "interacts with", "SUID" : 78686, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78682", "source" : "269", "target" : "4021", "shared_name" : "51259 (interacts with) 203068", "name" : "51259 (interacts with) 203068", "interaction" : "interacts with", "SUID" : 78682, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78678", "source" : "269", "target" : "4245", "shared_name" : "51259 (interacts with) 91147", "name" : "51259 (interacts with) 91147", "interaction" : "interacts with", "SUID" : 78678, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78718", "source" : "265", "target" : "1549", "shared_name" : "1293 (interacts with) 7070", "name" : "1293 (interacts with) 7070", "interaction" : "interacts with", "SUID" : 78718, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78714", "source" : "265", "target" : "1497", "shared_name" : "1293 (interacts with) 3912", "name" : "1293 (interacts with) 3912", "interaction" : "interacts with", "SUID" : 78714, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78710", "source" : "265", "target" : "1297", "shared_name" : "1293 (interacts with) 6678", "name" : "1293 (interacts with) 6678", "interaction" : "interacts with", "SUID" : 78710, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78706", "source" : "265", "target" : "809", "shared_name" : "1293 (interacts with) 2335", "name" : "1293 (interacts with) 2335", "interaction" : "interacts with", "SUID" : 78706, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78702", "source" : "265", "target" : "5973", "shared_name" : "1293 (interacts with) 5155", "name" : "1293 (interacts with) 5155", "interaction" : "interacts with", "SUID" : 78702, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78698", "source" : "265", "target" : "4001", "shared_name" : "1293 (interacts with) 79709", "name" : "1293 (interacts with) 79709", "interaction" : "interacts with", "SUID" : 78698, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78694", "source" : "265", "target" : "2197", "shared_name" : "1293 (interacts with) 4684", "name" : "1293 (interacts with) 4684", "interaction" : "interacts with", "SUID" : 78694, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78742", "source" : "261", "target" : "681", "shared_name" : "1717 (interacts with) 6646", "name" : "1717 (interacts with) 6646", "interaction" : "interacts with", "SUID" : 78742, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78738", "source" : "261", "target" : "3013", "shared_name" : "1717 (interacts with) 50814", "name" : "1717 (interacts with) 50814", "interaction" : "interacts with", "SUID" : 78738, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78734", "source" : "261", "target" : "1969", "shared_name" : "1717 (interacts with) 4598", "name" : "1717 (interacts with) 4598", "interaction" : "interacts with", "SUID" : 78734, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78730", "source" : "261", "target" : "5173", "shared_name" : "1717 (interacts with) 1718", "name" : "1717 (interacts with) 1718", "interaction" : "interacts with", "SUID" : 78730, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78726", "source" : "261", "target" : "4489", "shared_name" : "1717 (interacts with) 2222", "name" : "1717 (interacts with) 2222", "interaction" : "interacts with", "SUID" : 78726, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78722", "source" : "261", "target" : "5893", "shared_name" : "1717 (interacts with) 6309", "name" : "1717 (interacts with) 6309", "interaction" : "interacts with", "SUID" : 78722, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78750", "source" : "257", "target" : "4241", "shared_name" : "6469 (interacts with) 1356", "name" : "6469 (interacts with) 1356", "interaction" : "interacts with", "SUID" : 78750, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78746", "source" : "257", "target" : "1601", "shared_name" : "6469 (interacts with) 7415", "name" : "6469 (interacts with) 7415", "interaction" : "interacts with", "SUID" : 78746, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78806", "source" : "253", "target" : "4665", "shared_name" : "113235 (interacts with) 538", "name" : "113235 (interacts with) 538", "interaction" : "interacts with", "SUID" : 78806, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78802", "source" : "253", "target" : "2877", "shared_name" : "113235 (interacts with) 340024", "name" : "113235 (interacts with) 340024", "interaction" : "interacts with", "SUID" : 78802, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78798", "source" : "253", "target" : "2125", "shared_name" : "113235 (interacts with) 2512", "name" : "113235 (interacts with) 2512", "interaction" : "interacts with", "SUID" : 78798, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78794", "source" : "253", "target" : "917", "shared_name" : "113235 (interacts with) 1181", "name" : "113235 (interacts with) 1181", "interaction" : "interacts with", "SUID" : 78794, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78790", "source" : "253", "target" : "833", "shared_name" : "113235 (interacts with) 25974", "name" : "113235 (interacts with) 25974", "interaction" : "interacts with", "SUID" : 78790, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78786", "source" : "253", "target" : "217", "shared_name" : "113235 (interacts with) 113278", "name" : "113235 (interacts with) 113278", "interaction" : "interacts with", "SUID" : 78786, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78782", "source" : "253", "target" : "2277", "shared_name" : "113235 (interacts with) 686", "name" : "113235 (interacts with) 686", "interaction" : "interacts with", "SUID" : 78782, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78778", "source" : "253", "target" : "4241", "shared_name" : "113235 (interacts with) 1356", "name" : "113235 (interacts with) 1356", "interaction" : "interacts with", "SUID" : 78778, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78774", "source" : "253", "target" : "6057", "shared_name" : "113235 (interacts with) 3162", "name" : "113235 (interacts with) 3162", "interaction" : "interacts with", "SUID" : 78774, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78770", "source" : "253", "target" : "6025", "shared_name" : "113235 (interacts with) 80704", "name" : "113235 (interacts with) 80704", "interaction" : "interacts with", "SUID" : 78770, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78766", "source" : "253", "target" : "653", "shared_name" : "113235 (interacts with) 6948", "name" : "113235 (interacts with) 6948", "interaction" : "interacts with", "SUID" : 78766, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78762", "source" : "253", "target" : "1821", "shared_name" : "113235 (interacts with) 1719", "name" : "113235 (interacts with) 1719", "interaction" : "interacts with", "SUID" : 78762, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78758", "source" : "253", "target" : "4821", "shared_name" : "113235 (interacts with) 28982", "name" : "113235 (interacts with) 28982", "interaction" : "interacts with", "SUID" : 78758, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78754", "source" : "253", "target" : "1473", "shared_name" : "113235 (interacts with) 4524", "name" : "113235 (interacts with) 4524", "interaction" : "interacts with", "SUID" : 78754, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78818", "source" : "249", "target" : "1305", "shared_name" : "1769 (interacts with) 25", "name" : "1769 (interacts with) 25", "interaction" : "interacts with", "SUID" : 78818, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78814", "source" : "249", "target" : "237", "shared_name" : "1769 (interacts with) 5649", "name" : "1769 (interacts with) 5649", "interaction" : "interacts with", "SUID" : 78814, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78810", "source" : "249", "target" : "5429", "shared_name" : "1769 (interacts with) 5048", "name" : "1769 (interacts with) 5048", "interaction" : "interacts with", "SUID" : 78810, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78926", "source" : "245", "target" : "493", "shared_name" : "2936 (interacts with) 594", "name" : "2936 (interacts with) 594", "interaction" : "interacts with", "SUID" : 78926, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78922", "source" : "245", "target" : "4401", "shared_name" : "2936 (interacts with) 55526", "name" : "2936 (interacts with) 55526", "interaction" : "interacts with", "SUID" : 78922, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78918", "source" : "245", "target" : "3421", "shared_name" : "2936 (interacts with) 4967", "name" : "2936 (interacts with) 4967", "interaction" : "interacts with", "SUID" : 78918, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78914", "source" : "245", "target" : "1749", "shared_name" : "2936 (interacts with) 728294", "name" : "2936 (interacts with) 728294", "interaction" : "interacts with", "SUID" : 78914, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78910", "source" : "245", "target" : "2457", "shared_name" : "2936 (interacts with) 4143", "name" : "2936 (interacts with) 4143", "interaction" : "interacts with", "SUID" : 78910, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78906", "source" : "245", "target" : "4185", "shared_name" : "2936 (interacts with) 29968", "name" : "2936 (interacts with) 29968", "interaction" : "interacts with", "SUID" : 78906, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78902", "source" : "245", "target" : "2925", "shared_name" : "2936 (interacts with) 8802", "name" : "2936 (interacts with) 8802", "interaction" : "interacts with", "SUID" : 78902, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78898", "source" : "245", "target" : "3117", "shared_name" : "2936 (interacts with) 84668", "name" : "2936 (interacts with) 84668", "interaction" : "interacts with", "SUID" : 78898, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78894", "source" : "245", "target" : "1461", "shared_name" : "2936 (interacts with) 5832", "name" : "2936 (interacts with) 5832", "interaction" : "interacts with", "SUID" : 78894, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78890", "source" : "245", "target" : "4065", "shared_name" : "2936 (interacts with) 7124", "name" : "2936 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 78890, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78886", "source" : "245", "target" : "3017", "shared_name" : "2936 (interacts with) 4790", "name" : "2936 (interacts with) 4790", "interaction" : "interacts with", "SUID" : 78886, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78882", "source" : "245", "target" : "769", "shared_name" : "2936 (interacts with) 4953", "name" : "2936 (interacts with) 4953", "interaction" : "interacts with", "SUID" : 78882, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78878", "source" : "245", "target" : "4949", "shared_name" : "2936 (interacts with) 5970", "name" : "2936 (interacts with) 5970", "interaction" : "interacts with", "SUID" : 78878, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78874", "source" : "245", "target" : "533", "shared_name" : "2936 (interacts with) 4036", "name" : "2936 (interacts with) 4036", "interaction" : "interacts with", "SUID" : 78874, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78870", "source" : "245", "target" : "3473", "shared_name" : "2936 (interacts with) 6528", "name" : "2936 (interacts with) 6528", "interaction" : "interacts with", "SUID" : 78870, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78866", "source" : "245", "target" : "1189", "shared_name" : "2936 (interacts with) 7915", "name" : "2936 (interacts with) 7915", "interaction" : "interacts with", "SUID" : 78866, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78862", "source" : "245", "target" : "4605", "shared_name" : "2936 (interacts with) 7276", "name" : "2936 (interacts with) 7276", "interaction" : "interacts with", "SUID" : 78862, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78858", "source" : "245", "target" : "1605", "shared_name" : "2936 (interacts with) 6648", "name" : "2936 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 78858, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78854", "source" : "245", "target" : "741", "shared_name" : "2936 (interacts with) 4830", "name" : "2936 (interacts with) 4830", "interaction" : "interacts with", "SUID" : 78854, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78850", "source" : "245", "target" : "1485", "shared_name" : "2936 (interacts with) 8050", "name" : "2936 (interacts with) 8050", "interaction" : "interacts with", "SUID" : 78850, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78846", "source" : "245", "target" : "3425", "shared_name" : "2936 (interacts with) 8803", "name" : "2936 (interacts with) 8803", "interaction" : "interacts with", "SUID" : 78846, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78842", "source" : "245", "target" : "2901", "shared_name" : "2936 (interacts with) 6647", "name" : "2936 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 78842, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78838", "source" : "245", "target" : "6117", "shared_name" : "2936 (interacts with) 9131", "name" : "2936 (interacts with) 9131", "interaction" : "interacts with", "SUID" : 78838, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78834", "source" : "245", "target" : "1037", "shared_name" : "2936 (interacts with) 387787", "name" : "2936 (interacts with) 387787", "interaction" : "interacts with", "SUID" : 78834, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78830", "source" : "245", "target" : "1617", "shared_name" : "2936 (interacts with) 373156", "name" : "2936 (interacts with) 373156", "interaction" : "interacts with", "SUID" : 78830, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78826", "source" : "245", "target" : "2045", "shared_name" : "2936 (interacts with) 51102", "name" : "2936 (interacts with) 51102", "interaction" : "interacts with", "SUID" : 78826, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78822", "source" : "245", "target" : "2413", "shared_name" : "2936 (interacts with) 50484", "name" : "2936 (interacts with) 50484", "interaction" : "interacts with", "SUID" : 78822, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78962", "source" : "241", "target" : "805", "shared_name" : "3627 (interacts with) 6772", "name" : "3627 (interacts with) 6772", "interaction" : "interacts with", "SUID" : 78962, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78958", "source" : "241", "target" : "593", "shared_name" : "3627 (interacts with) 8743", "name" : "3627 (interacts with) 8743", "interaction" : "interacts with", "SUID" : 78958, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78954", "source" : "241", "target" : "1605", "shared_name" : "3627 (interacts with) 6648", "name" : "3627 (interacts with) 6648", "interaction" : "interacts with", "SUID" : 78954, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78950", "source" : "241", "target" : "4681", "shared_name" : "3627 (interacts with) 4843", "name" : "3627 (interacts with) 4843", "interaction" : "interacts with", "SUID" : 78950, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78946", "source" : "241", "target" : "1781", "shared_name" : "3627 (interacts with) 4084", "name" : "3627 (interacts with) 4084", "interaction" : "interacts with", "SUID" : 78946, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78942", "source" : "241", "target" : "3417", "shared_name" : "3627 (interacts with) 5371", "name" : "3627 (interacts with) 5371", "interaction" : "interacts with", "SUID" : 78942, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78938", "source" : "241", "target" : "4065", "shared_name" : "3627 (interacts with) 7124", "name" : "3627 (interacts with) 7124", "interaction" : "interacts with", "SUID" : 78938, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78934", "source" : "241", "target" : "3197", "shared_name" : "3627 (interacts with) 64135", "name" : "3627 (interacts with) 64135", "interaction" : "interacts with", "SUID" : 78934, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78930", "source" : "241", "target" : "5569", "shared_name" : "3627 (interacts with) 59345", "name" : "3627 (interacts with) 59345", "interaction" : "interacts with", "SUID" : 78930, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78970", "source" : "237", "target" : "2625", "shared_name" : "5649 (interacts with) 3065", "name" : "5649 (interacts with) 3065", "interaction" : "interacts with", "SUID" : 78970, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78966", "source" : "237", "target" : "2677", "shared_name" : "5649 (interacts with) 7436", "name" : "5649 (interacts with) 7436", "interaction" : "interacts with", "SUID" : 78966, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78974", "source" : "233", "target" : "2161", "shared_name" : "8566 (interacts with) 55163", "name" : "8566 (interacts with) 55163", "interaction" : "interacts with", "SUID" : 78974, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79038", "source" : "229", "target" : "4613", "shared_name" : "1371 (interacts with) 84896", "name" : "1371 (interacts with) 84896", "interaction" : "interacts with", "SUID" : 79038, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79034", "source" : "229", "target" : "1601", "shared_name" : "1371 (interacts with) 7415", "name" : "1371 (interacts with) 7415", "interaction" : "interacts with", "SUID" : 79034, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79030", "source" : "229", "target" : "2393", "shared_name" : "1371 (interacts with) 6683", "name" : "1371 (interacts with) 6683", "interaction" : "interacts with", "SUID" : 79030, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79026", "source" : "229", "target" : "4505", "shared_name" : "1371 (interacts with) 5190", "name" : "1371 (interacts with) 5190", "interaction" : "interacts with", "SUID" : 79026, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79022", "source" : "229", "target" : "5677", "shared_name" : "1371 (interacts with) 5189", "name" : "1371 (interacts with) 5189", "interaction" : "interacts with", "SUID" : 79022, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79018", "source" : "229", "target" : "6057", "shared_name" : "1371 (interacts with) 3162", "name" : "1371 (interacts with) 3162", "interaction" : "interacts with", "SUID" : 79018, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79014", "source" : "229", "target" : "6133", "shared_name" : "1371 (interacts with) 54658", "name" : "1371 (interacts with) 54658", "interaction" : "interacts with", "SUID" : 79014, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79010", "source" : "229", "target" : "2241", "shared_name" : "1371 (interacts with) 3043", "name" : "1371 (interacts with) 3043", "interaction" : "interacts with", "SUID" : 79010, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79006", "source" : "229", "target" : "4593", "shared_name" : "1371 (interacts with) 2058", "name" : "1371 (interacts with) 2058", "interaction" : "interacts with", "SUID" : 79006, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79002", "source" : "229", "target" : "5393", "shared_name" : "1371 (interacts with) 2395", "name" : "1371 (interacts with) 2395", "interaction" : "interacts with", "SUID" : 79002, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78998", "source" : "229", "target" : "6089", "shared_name" : "1371 (interacts with) 3145", "name" : "1371 (interacts with) 3145", "interaction" : "interacts with", "SUID" : 78998, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78994", "source" : "229", "target" : "4273", "shared_name" : "1371 (interacts with) 4548", "name" : "1371 (interacts with) 4548", "interaction" : "interacts with", "SUID" : 78994, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78990", "source" : "229", "target" : "1013", "shared_name" : "1371 (interacts with) 6898", "name" : "1371 (interacts with) 6898", "interaction" : "interacts with", "SUID" : 78990, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78986", "source" : "229", "target" : "4833", "shared_name" : "1371 (interacts with) 2593", "name" : "1371 (interacts with) 2593", "interaction" : "interacts with", "SUID" : 78986, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78982", "source" : "229", "target" : "317", "shared_name" : "1371 (interacts with) 3176", "name" : "1371 (interacts with) 3176", "interaction" : "interacts with", "SUID" : 78982, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "78978", "source" : "229", "target" : "3641", "shared_name" : "1371 (interacts with) 4141", "name" : "1371 (interacts with) 4141", "interaction" : "interacts with", "SUID" : 78978, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79042", "source" : "225", "target" : "5421", "shared_name" : "174 (interacts with) 213", "name" : "174 (interacts with) 213", "interaction" : "interacts with", "SUID" : 79042, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79070", "source" : "217", "target" : "3893", "shared_name" : "113278 (interacts with) 151056", "name" : "113278 (interacts with) 151056", "interaction" : "interacts with", "SUID" : 79070, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79066", "source" : "217", "target" : "6149", "shared_name" : "113278 (interacts with) 335", "name" : "113278 (interacts with) 335", "interaction" : "interacts with", "SUID" : 79066, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79062", "source" : "217", "target" : "2277", "shared_name" : "113278 (interacts with) 686", "name" : "113278 (interacts with) 686", "interaction" : "interacts with", "SUID" : 79062, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79058", "source" : "217", "target" : "833", "shared_name" : "113278 (interacts with) 25974", "name" : "113278 (interacts with) 25974", "interaction" : "interacts with", "SUID" : 79058, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79054", "source" : "217", "target" : "653", "shared_name" : "113278 (interacts with) 6948", "name" : "113278 (interacts with) 6948", "interaction" : "interacts with", "SUID" : 79054, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79050", "source" : "217", "target" : "6025", "shared_name" : "113278 (interacts with) 80704", "name" : "113278 (interacts with) 80704", "interaction" : "interacts with", "SUID" : 79050, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79046", "source" : "217", "target" : "953", "shared_name" : "113278 (interacts with) 79581", "name" : "113278 (interacts with) 79581", "interaction" : "interacts with", "SUID" : 79046, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79074", "source" : "209", "target" : "5781", "shared_name" : "3431 (interacts with) 6672", "name" : "3431 (interacts with) 6672", "interaction" : "interacts with", "SUID" : 79074, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79114", "source" : "205", "target" : "1161", "shared_name" : "2555 (interacts with) 2561", "name" : "2555 (interacts with) 2561", "interaction" : "interacts with", "SUID" : 79114, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79110", "source" : "205", "target" : "3389", "shared_name" : "2555 (interacts with) 2562", "name" : "2555 (interacts with) 2562", "interaction" : "interacts with", "SUID" : 79110, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79106", "source" : "205", "target" : "2901", "shared_name" : "2555 (interacts with) 6647", "name" : "2555 (interacts with) 6647", "interaction" : "interacts with", "SUID" : 79106, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79102", "source" : "205", "target" : "1253", "shared_name" : "2555 (interacts with) 2876", "name" : "2555 (interacts with) 2876", "interaction" : "interacts with", "SUID" : 79102, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79098", "source" : "205", "target" : "4153", "shared_name" : "2555 (interacts with) 2566", "name" : "2555 (interacts with) 2566", "interaction" : "interacts with", "SUID" : 79098, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79094", "source" : "205", "target" : "1149", "shared_name" : "2555 (interacts with) 2558", "name" : "2555 (interacts with) 2558", "interaction" : "interacts with", "SUID" : 79094, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79090", "source" : "205", "target" : "3781", "shared_name" : "2555 (interacts with) 9152", "name" : "2555 (interacts with) 9152", "interaction" : "interacts with", "SUID" : 79090, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79086", "source" : "205", "target" : "401", "shared_name" : "2555 (interacts with) 6532", "name" : "2555 (interacts with) 6532", "interaction" : "interacts with", "SUID" : 79086, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79082", "source" : "205", "target" : "309", "shared_name" : "2555 (interacts with) 6536", "name" : "2555 (interacts with) 6536", "interaction" : "interacts with", "SUID" : 79082, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79078", "source" : "205", "target" : "5373", "shared_name" : "2555 (interacts with) 28962", "name" : "2555 (interacts with) 28962", "interaction" : "interacts with", "SUID" : 79078, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79326", "source" : "201", "target" : "2801", "shared_name" : "100131801 (interacts with) 4700", "name" : "100131801 (interacts with) 4700", "interaction" : "interacts with", "SUID" : 79326, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79322", "source" : "201", "target" : "1573", "shared_name" : "100131801 (interacts with) 4723", "name" : "100131801 (interacts with) 4723", "interaction" : "interacts with", "SUID" : 79322, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79318", "source" : "201", "target" : "2609", "shared_name" : "100131801 (interacts with) 29960", "name" : "100131801 (interacts with) 29960", "interaction" : "interacts with", "SUID" : 79318, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79314", "source" : "201", "target" : "2285", "shared_name" : "100131801 (interacts with) 51300", "name" : "100131801 (interacts with) 51300", "interaction" : "interacts with", "SUID" : 79314, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79310", "source" : "201", "target" : "5381", "shared_name" : "100131801 (interacts with) 10229", "name" : "100131801 (interacts with) 10229", "interaction" : "interacts with", "SUID" : 79310, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79306", "source" : "201", "target" : "2477", "shared_name" : "100131801 (interacts with) 57107", "name" : "100131801 (interacts with) 57107", "interaction" : "interacts with", "SUID" : 79306, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79302", "source" : "201", "target" : "1085", "shared_name" : "100131801 (interacts with) 9377", "name" : "100131801 (interacts with) 9377", "interaction" : "interacts with", "SUID" : 79302, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79298", "source" : "201", "target" : "1921", "shared_name" : "100131801 (interacts with) 1352", "name" : "100131801 (interacts with) 1352", "interaction" : "interacts with", "SUID" : 79298, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79294", "source" : "201", "target" : "5505", "shared_name" : "100131801 (interacts with) 29078", "name" : "100131801 (interacts with) 29078", "interaction" : "interacts with", "SUID" : 79294, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79290", "source" : "201", "target" : "889", "shared_name" : "100131801 (interacts with) 80224", "name" : "100131801 (interacts with) 80224", "interaction" : "interacts with", "SUID" : 79290, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79286", "source" : "201", "target" : "3705", "shared_name" : "100131801 (interacts with) 87178", "name" : "100131801 (interacts with) 87178", "interaction" : "interacts with", "SUID" : 79286, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79282", "source" : "201", "target" : "2753", "shared_name" : "100131801 (interacts with) 4720", "name" : "100131801 (interacts with) 4720", "interaction" : "interacts with", "SUID" : 79282, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79278", "source" : "201", "target" : "5845", "shared_name" : "100131801 (interacts with) 4714", "name" : "100131801 (interacts with) 4714", "interaction" : "interacts with", "SUID" : 79278, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79274", "source" : "201", "target" : "4409", "shared_name" : "100131801 (interacts with) 6341", "name" : "100131801 (interacts with) 6341", "interaction" : "interacts with", "SUID" : 79274, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79270", "source" : "201", "target" : "4869", "shared_name" : "100131801 (interacts with) 92935", "name" : "100131801 (interacts with) 92935", "interaction" : "interacts with", "SUID" : 79270, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79266", "source" : "201", "target" : "2345", "shared_name" : "100131801 (interacts with) 200205", "name" : "100131801 (interacts with) 200205", "interaction" : "interacts with", "SUID" : 79266, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79262", "source" : "201", "target" : "1053", "shared_name" : "100131801 (interacts with) 81689", "name" : "100131801 (interacts with) 81689", "interaction" : "interacts with", "SUID" : 79262, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79258", "source" : "201", "target" : "1561", "shared_name" : "100131801 (interacts with) 51117", "name" : "100131801 (interacts with) 51117", "interaction" : "interacts with", "SUID" : 79258, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79254", "source" : "201", "target" : "1869", "shared_name" : "100131801 (interacts with) 4729", "name" : "100131801 (interacts with) 4729", "interaction" : "interacts with", "SUID" : 79254, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79250", "source" : "201", "target" : "2689", "shared_name" : "100131801 (interacts with) 4715", "name" : "100131801 (interacts with) 4715", "interaction" : "interacts with", "SUID" : 79250, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79246", "source" : "201", "target" : "1129", "shared_name" : "100131801 (interacts with) 57505", "name" : "100131801 (interacts with) 57505", "interaction" : "interacts with", "SUID" : 79246, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79242", "source" : "201", "target" : "2021", "shared_name" : "100131801 (interacts with) 5428", "name" : "100131801 (interacts with) 5428", "interaction" : "interacts with", "SUID" : 79242, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79238", "source" : "201", "target" : "6049", "shared_name" : "100131801 (interacts with) 25973", "name" : "100131801 (interacts with) 25973", "interaction" : "interacts with", "SUID" : 79238, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79234", "source" : "201", "target" : "2009", "shared_name" : "100131801 (interacts with) 79133", "name" : "100131801 (interacts with) 79133", "interaction" : "interacts with", "SUID" : 79234, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79230", "source" : "201", "target" : "4621", "shared_name" : "100131801 (interacts with) 57038", "name" : "100131801 (interacts with) 57038", "interaction" : "interacts with", "SUID" : 79230, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79226", "source" : "201", "target" : "1477", "shared_name" : "100131801 (interacts with) 10352", "name" : "100131801 (interacts with) 10352", "interaction" : "interacts with", "SUID" : 79226, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79222", "source" : "201", "target" : "2797", "shared_name" : "100131801 (interacts with) 4728", "name" : "100131801 (interacts with) 4728", "interaction" : "interacts with", "SUID" : 79222, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79218", "source" : "201", "target" : "1105", "shared_name" : "100131801 (interacts with) 493753", "name" : "100131801 (interacts with) 493753", "interaction" : "interacts with", "SUID" : 79218, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79214", "source" : "201", "target" : "6081", "shared_name" : "100131801 (interacts with) 10128", "name" : "100131801 (interacts with) 10128", "interaction" : "interacts with", "SUID" : 79214, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79210", "source" : "201", "target" : "4897", "shared_name" : "100131801 (interacts with) 55149", "name" : "100131801 (interacts with) 55149", "interaction" : "interacts with", "SUID" : 79210, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79206", "source" : "201", "target" : "4061", "shared_name" : "100131801 (interacts with) 4705", "name" : "100131801 (interacts with) 4705", "interaction" : "interacts with", "SUID" : 79206, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79202", "source" : "201", "target" : "2109", "shared_name" : "100131801 (interacts with) 51103", "name" : "100131801 (interacts with) 51103", "interaction" : "interacts with", "SUID" : 79202, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79198", "source" : "201", "target" : "1197", "shared_name" : "100131801 (interacts with) 79587", "name" : "100131801 (interacts with) 79587", "interaction" : "interacts with", "SUID" : 79198, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79194", "source" : "201", "target" : "3973", "shared_name" : "100131801 (interacts with) 55572", "name" : "100131801 (interacts with) 55572", "interaction" : "interacts with", "SUID" : 79194, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79190", "source" : "201", "target" : "6001", "shared_name" : "100131801 (interacts with) 55157", "name" : "100131801 (interacts with) 55157", "interaction" : "interacts with", "SUID" : 79190, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79186", "source" : "201", "target" : "6073", "shared_name" : "100131801 (interacts with) 92170", "name" : "100131801 (interacts with) 92170", "interaction" : "interacts with", "SUID" : 79186, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79182", "source" : "201", "target" : "5685", "shared_name" : "100131801 (interacts with) 1340", "name" : "100131801 (interacts with) 1340", "interaction" : "interacts with", "SUID" : 79182, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79178", "source" : "201", "target" : "521", "shared_name" : "100131801 (interacts with) 85476", "name" : "100131801 (interacts with) 85476", "interaction" : "interacts with", "SUID" : 79178, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79174", "source" : "201", "target" : "2837", "shared_name" : "100131801 (interacts with) 123263", "name" : "100131801 (interacts with) 123263", "interaction" : "interacts with", "SUID" : 79174, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79170", "source" : "201", "target" : "3617", "shared_name" : "100131801 (interacts with) 4704", "name" : "100131801 (interacts with) 4704", "interaction" : "interacts with", "SUID" : 79170, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79166", "source" : "201", "target" : "5189", "shared_name" : "100131801 (interacts with) 57176", "name" : "100131801 (interacts with) 57176", "interaction" : "interacts with", "SUID" : 79166, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79162", "source" : "201", "target" : "4757", "shared_name" : "100131801 (interacts with) 9997", "name" : "100131801 (interacts with) 9997", "interaction" : "interacts with", "SUID" : 79162, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79158", "source" : "201", "target" : "4017", "shared_name" : "100131801 (interacts with) 4719", "name" : "100131801 (interacts with) 4719", "interaction" : "interacts with", "SUID" : 79158, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79154", "source" : "201", "target" : "477", "shared_name" : "100131801 (interacts with) 51021", "name" : "100131801 (interacts with) 51021", "interaction" : "interacts with", "SUID" : 79154, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79150", "source" : "201", "target" : "4405", "shared_name" : "100131801 (interacts with) 10667", "name" : "100131801 (interacts with) 10667", "interaction" : "interacts with", "SUID" : 79150, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79146", "source" : "201", "target" : "4261", "shared_name" : "100131801 (interacts with) 124454", "name" : "100131801 (interacts with) 124454", "interaction" : "interacts with", "SUID" : 79146, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79142", "source" : "201", "target" : "5085", "shared_name" : "100131801 (interacts with) 56652", "name" : "100131801 (interacts with) 56652", "interaction" : "interacts with", "SUID" : 79142, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79138", "source" : "201", "target" : "4141", "shared_name" : "100131801 (interacts with) 617", "name" : "100131801 (interacts with) 617", "interaction" : "interacts with", "SUID" : 79138, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79134", "source" : "201", "target" : "5853", "shared_name" : "100131801 (interacts with) 4709", "name" : "100131801 (interacts with) 4709", "interaction" : "interacts with", "SUID" : 79134, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79130", "source" : "201", "target" : "4101", "shared_name" : "100131801 (interacts with) 65260", "name" : "100131801 (interacts with) 65260", "interaction" : "interacts with", "SUID" : 79130, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79126", "source" : "201", "target" : "721", "shared_name" : "100131801 (interacts with) 79731", "name" : "100131801 (interacts with) 79731", "interaction" : "interacts with", "SUID" : 79126, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79122", "source" : "201", "target" : "6181", "shared_name" : "100131801 (interacts with) 84987", "name" : "100131801 (interacts with) 84987", "interaction" : "interacts with", "SUID" : 79122, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79118", "source" : "201", "target" : "5737", "shared_name" : "100131801 (interacts with) 84340", "name" : "100131801 (interacts with) 84340", "interaction" : "interacts with", "SUID" : 79118, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79342", "source" : "196", "target" : "3333", "shared_name" : "84188 (interacts with) 9409", "name" : "84188 (interacts with) 9409", "interaction" : "interacts with", "SUID" : 79342, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79338", "source" : "196", "target" : "4301", "shared_name" : "84188 (interacts with) 8799", "name" : "84188 (interacts with) 8799", "interaction" : "interacts with", "SUID" : 79338, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79334", "source" : "196", "target" : "3341", "shared_name" : "84188 (interacts with) 8504", "name" : "84188 (interacts with) 8504", "interaction" : "interacts with", "SUID" : 79334, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false }, { "data" : { "id" : "79330", "source" : "196", "target" : "2965", "shared_name" : "84188 (interacts with) 22880", "name" : "84188 (interacts with) 22880", "interaction" : "interacts with", "SUID" : 79330, "shared_interaction" : "interacts with", "selected" : false }, "selected" : false } ] } } ================================================ FILE: debug/webgl/networks.js ================================================ // The style can be in the same file as the netowrk or in a separate file. var networks = { 'style_test': { desc: 'Style Test', nodes: 5, edges: 13, url: 'network-styles.json', layout: { name: 'preset' } }, 'curve_test': { desc: 'Curve Test', nodes: 3, edges: 7, url: 'network-curve.json', layout: { name: 'preset' } }, 'compound': { desc: 'Compound nodes', nodes: 6, edges: 2, url: 'network-compound-nodes.json', layout: { name: 'preset' } }, // 'images': { // desc: 'Image Load Test', // nodes: 5, // edges: 10, // url: 'network-images.json', // layout: { name: 'preset' } // }, 'em-web': { desc: 'EnrichmentMap web', nodes: 569, edges: 6899, url: 'network-em-web.json', layout: { name: 'preset' } }, 'em-desktop': { desc: 'EnrichmentMap desktop', nodes: 1260, edges: 16030, url: 'network-em-desktop.json', layout: { name: 'preset' }, style: { file: 'network-em-desktop-style.json' }, }, 'white-matter': { desc: 'White Matter', nodes: 1499, edges: 18288, url: 'network-white-matter.json', layout: { name: 'preset' }, style: { file: 'network-white-matter-style.json' }, }, 'ndex-large': { desc: 'NDEX large', nodes: 3238, edges: 68641, url: 'https://pub-835fc16db602427ba8b9a874e4754257.r2.dev/network-ndex-large.json', // url: 'network-ndex-large.json', layout: { name: 'preset' }, style: { file: 'network-ndex-large-style.json' }, }, // 'ndex-x-large': { // desc: 'NDEX x-large', // nodes: 19607, // edges: 464657, // url: 'https://pub-835fc16db602427ba8b9a874e4754257.r2.dev/network-ndex-x-large.json', // layout: { name: 'preset' }, // style: { file: 'network-ndex-x-large-style.json' }, // } }; ================================================ FILE: debug/webgl/style.css ================================================ body { font: 14pt helvetica; width: 100%; -webkit-text-size-adjust: 100%; margin: 0; padding: 0; height: 100%; width: 100%;} #cytoscape { position: absolute; left: 0; right: 19.5em; top: 0; bottom: 0; } #commands { padding: 0.25em; width: 25em; z-index: 3; position: absolute; right: 0; top: 0; bottom: 0; overflow: auto; font-size: 0.75em; line-height: 1; background: rgba(200, 200, 200, 0.5); border-radius: 0.333em; } #commands h2 { margin-top: 1em; font-size: 1.25em; } #nodes-number, #edges-number, #parent-node { width: 5em; } .ui-tooltip { font-size: 0.75em; max-width: 400px; } #string-stylesheet { display: block; min-height: 7em; width: 22em; } #hide-commands { position: fixed; right: 0; top: 0; } #commands-show-area { z-index: 2; position: absolute; right: 0; top: 0; font-size: 0.75em; } #show-commands { position: fixed; right: 0; top: 0; } #show-commands, #hide-commands { width: 3em; } #bb { position: absolute; left: 0; top: 0; background: rgba(0, 255, 255, 0.333); z-index: 999999999; pointer-events: none; } #note { z-index: 999999; cursor: pointer; display: none; position: fixed; right: 0; top: 0; margin: 1em; padding: 1em; width: 15em; background: rgba(0,0,0,0.8); color: #fff; border-radius: 1em; font-size: 0.8em; } #note-descr { margin-top: 0.5em; font-size: 0.8em; } #cytoscape.full { z-index: 1; position: absolute; left: 0; top: 0; width: 100%; height: 100%; max-width: 100%; max-height: 100%; } @media screen and ( max-width: 889px ){ body:not(.commands-shown) #commands { display: none; } body:not(.commands-shown) #cytoscape { right: 0; } } @media screen and ( min-width: 900px ){ body.commands-hidden #commands { display: none; } body.commands-hidden #cytoscape { right: 0; } } body.commands-shown #commands { display: block !important; } body.commands-shown #cytoscape { right: 15.5em !important; } ================================================ FILE: debug/webgl/upscaler.html ================================================ FXAA Upscaler Test

FXAA Upscaler Test

Input Canvas (200×200)

Source image

Pixelated Upscaling (400×400)

Regular browser scaling (pixelated)

WebGL2 H/W Antialiased (400×400)

WebGL2 built-in antialiasing

Misc. Upscaled (400×400)

With very simple anti-aliasing applied
0.75
0.166
0.0833
Processing time: 0 ms
================================================ FILE: dist/cytoscape.cjs.js ================================================ /** * Copyright (c) 2016-2024, The Cytoscape Consortium. * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the “Software”), to deal in * the Software without restriction, including without limitation the rights to * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies * of the Software, and to permit persons to whom the Software is furnished to do * so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ 'use strict'; function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; } function _defineProperty$1(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); } function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; } function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function () {}; return { s: F, n: function () { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function (e) { throw e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function () { it = it.call(o); }, n: function () { var step = it.next(); normalCompletion = step.done; return step; }, e: function (e) { didErr = true; err = e; }, f: function () { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; } var _window = typeof window === 'undefined' ? null : window; // eslint-disable-line no-undef var navigator = _window ? _window.navigator : null; _window ? _window.document : null; var typeofstr = _typeof(''); var typeofobj = _typeof({}); var typeoffn = _typeof(function () {}); var typeofhtmlele = typeof HTMLElement === "undefined" ? "undefined" : _typeof(HTMLElement); var instanceStr = function instanceStr(obj) { return obj && obj.instanceString && fn$6(obj.instanceString) ? obj.instanceString() : null; }; var string = function string(obj) { return obj != null && _typeof(obj) == typeofstr; }; var fn$6 = function fn(obj) { return obj != null && _typeof(obj) === typeoffn; }; var array = function array(obj) { return !elementOrCollection(obj) && (Array.isArray ? Array.isArray(obj) : obj != null && obj instanceof Array); }; var plainObject = function plainObject(obj) { return obj != null && _typeof(obj) === typeofobj && !array(obj) && obj.constructor === Object; }; var object = function object(obj) { return obj != null && _typeof(obj) === typeofobj; }; var number$1 = function number(obj) { return obj != null && _typeof(obj) === _typeof(1) && !isNaN(obj); }; var integer = function integer(obj) { return number$1(obj) && Math.floor(obj) === obj; }; var htmlElement = function htmlElement(obj) { if ('undefined' === typeofhtmlele) { return undefined; } else { return null != obj && obj instanceof HTMLElement; } }; var elementOrCollection = function elementOrCollection(obj) { return element(obj) || collection(obj); }; var element = function element(obj) { return instanceStr(obj) === 'collection' && obj._private.single; }; var collection = function collection(obj) { return instanceStr(obj) === 'collection' && !obj._private.single; }; var core = function core(obj) { return instanceStr(obj) === 'core'; }; var stylesheet = function stylesheet(obj) { return instanceStr(obj) === 'stylesheet'; }; var event = function event(obj) { return instanceStr(obj) === 'event'; }; var emptyString = function emptyString(obj) { if (obj === undefined || obj === null) { // null is empty return true; } else if (obj === '' || obj.match(/^\s+$/)) { return true; // empty string is empty } return false; // otherwise, we don't know what we've got }; var domElement = function domElement(obj) { if (typeof HTMLElement === 'undefined') { return false; // we're not in a browser so it doesn't matter } else { return obj instanceof HTMLElement; } }; var boundingBox = function boundingBox(obj) { return plainObject(obj) && number$1(obj.x1) && number$1(obj.x2) && number$1(obj.y1) && number$1(obj.y2); }; var promise = function promise(obj) { return object(obj) && fn$6(obj.then); }; var ms = function ms() { return navigator && navigator.userAgent.match(/msie|trident|edge/i); }; // probably a better way to detect this... var memoize$1 = function memoize(fn, keyFn) { if (!keyFn) { keyFn = function keyFn() { if (arguments.length === 1) { return arguments[0]; } else if (arguments.length === 0) { return 'undefined'; } var args = []; for (var i = 0; i < arguments.length; i++) { args.push(arguments[i]); } return args.join('$'); }; } var memoizedFn = function memoizedFn() { var self = this; var args = arguments; var ret; var k = keyFn.apply(self, args); var cache = memoizedFn.cache; if (!(ret = cache[k])) { ret = cache[k] = fn.apply(self, args); } return ret; }; memoizedFn.cache = {}; return memoizedFn; }; var camel2dash = memoize$1(function (str) { return str.replace(/([A-Z])/g, function (v) { return '-' + v.toLowerCase(); }); }); var dash2camel = memoize$1(function (str) { return str.replace(/(-\w)/g, function (v) { return v[1].toUpperCase(); }); }); var prependCamel = memoize$1(function (prefix, str) { return prefix + str[0].toUpperCase() + str.substring(1); }, function (prefix, str) { return prefix + '$' + str; }); var capitalize = function capitalize(str) { if (emptyString(str)) { return str; } return str.charAt(0).toUpperCase() + str.substring(1); }; var number = '(?:[-+]?(?:(?:\\d+|\\d*\\.\\d+)(?:[Ee][+-]?\\d+)?))'; var rgba = 'rgb[a]?\\((' + number + '[%]?)\\s*,\\s*(' + number + '[%]?)\\s*,\\s*(' + number + '[%]?)(?:\\s*,\\s*(' + number + '))?\\)'; var rgbaNoBackRefs = 'rgb[a]?\\((?:' + number + '[%]?)\\s*,\\s*(?:' + number + '[%]?)\\s*,\\s*(?:' + number + '[%]?)(?:\\s*,\\s*(?:' + number + '))?\\)'; var hsla = 'hsl[a]?\\((' + number + ')\\s*,\\s*(' + number + '[%])\\s*,\\s*(' + number + '[%])(?:\\s*,\\s*(' + number + '))?\\)'; var hslaNoBackRefs = 'hsl[a]?\\((?:' + number + ')\\s*,\\s*(?:' + number + '[%])\\s*,\\s*(?:' + number + '[%])(?:\\s*,\\s*(?:' + number + '))?\\)'; var hex3 = '\\#[0-9a-fA-F]{3}'; var hex6 = '\\#[0-9a-fA-F]{6}'; var ascending = function ascending(a, b) { if (a < b) { return -1; } else if (a > b) { return 1; } else { return 0; } }; var descending = function descending(a, b) { return -1 * ascending(a, b); }; var extend = Object.assign != null ? Object.assign.bind(Object) : function (tgt) { var args = arguments; for (var i = 1; i < args.length; i++) { var obj = args[i]; if (obj == null) { continue; } var keys = Object.keys(obj); for (var j = 0; j < keys.length; j++) { var k = keys[j]; tgt[k] = obj[k]; } } return tgt; }; // get [r, g, b] from #abc or #aabbcc var hex2tuple = function hex2tuple(hex) { if (!(hex.length === 4 || hex.length === 7) || hex[0] !== '#') { return; } var shortHex = hex.length === 4; var r, g, b; var base = 16; if (shortHex) { r = parseInt(hex[1] + hex[1], base); g = parseInt(hex[2] + hex[2], base); b = parseInt(hex[3] + hex[3], base); } else { r = parseInt(hex[1] + hex[2], base); g = parseInt(hex[3] + hex[4], base); b = parseInt(hex[5] + hex[6], base); } return [r, g, b]; }; // get [r, g, b, a] from hsl(0, 0, 0) or hsla(0, 0, 0, 0) var hsl2tuple = function hsl2tuple(hsl) { var ret; var h, s, l, a, r, g, b; function hue2rgb(p, q, t) { if (t < 0) t += 1; if (t > 1) t -= 1; if (t < 1 / 6) return p + (q - p) * 6 * t; if (t < 1 / 2) return q; if (t < 2 / 3) return p + (q - p) * (2 / 3 - t) * 6; return p; } var m = new RegExp('^' + hsla + '$').exec(hsl); if (m) { // get hue h = parseInt(m[1]); if (h < 0) { h = (360 - -1 * h % 360) % 360; } else if (h > 360) { h = h % 360; } h /= 360; // normalise on [0, 1] s = parseFloat(m[2]); if (s < 0 || s > 100) { return; } // saturation is [0, 100] s = s / 100; // normalise on [0, 1] l = parseFloat(m[3]); if (l < 0 || l > 100) { return; } // lightness is [0, 100] l = l / 100; // normalise on [0, 1] a = m[4]; if (a !== undefined) { a = parseFloat(a); if (a < 0 || a > 1) { return; } // alpha is [0, 1] } // now, convert to rgb // code from http://mjijackson.com/2008/02/rgb-to-hsl-and-rgb-to-hsv-color-model-conversion-algorithms-in-javascript if (s === 0) { r = g = b = Math.round(l * 255); // achromatic } else { var q = l < 0.5 ? l * (1 + s) : l + s - l * s; var p = 2 * l - q; r = Math.round(255 * hue2rgb(p, q, h + 1 / 3)); g = Math.round(255 * hue2rgb(p, q, h)); b = Math.round(255 * hue2rgb(p, q, h - 1 / 3)); } ret = [r, g, b, a]; } return ret; }; // get [r, g, b, a] from rgb(0, 0, 0) or rgba(0, 0, 0, 0) var rgb2tuple = function rgb2tuple(rgb) { var ret; var m = new RegExp('^' + rgba + '$').exec(rgb); if (m) { ret = []; var isPct = []; for (var i = 1; i <= 3; i++) { var channel = m[i]; if (channel[channel.length - 1] === '%') { isPct[i] = true; } channel = parseFloat(channel); if (isPct[i]) { channel = channel / 100 * 255; // normalise to [0, 255] } if (channel < 0 || channel > 255) { return; } // invalid channel value ret.push(Math.floor(channel)); } var atLeastOneIsPct = isPct[1] || isPct[2] || isPct[3]; var allArePct = isPct[1] && isPct[2] && isPct[3]; if (atLeastOneIsPct && !allArePct) { return; } // must all be percent values if one is var alpha = m[4]; if (alpha !== undefined) { alpha = parseFloat(alpha); if (alpha < 0 || alpha > 1) { return; } // invalid alpha value ret.push(alpha); } } return ret; }; var colorname2tuple = function colorname2tuple(color) { return colors[color.toLowerCase()]; }; var color2tuple = function color2tuple(color) { return (array(color) ? color : null) || colorname2tuple(color) || hex2tuple(color) || rgb2tuple(color) || hsl2tuple(color); }; var colors = { // special colour names transparent: [0, 0, 0, 0], // NB alpha === 0 // regular colours aliceblue: [240, 248, 255], antiquewhite: [250, 235, 215], aqua: [0, 255, 255], aquamarine: [127, 255, 212], azure: [240, 255, 255], beige: [245, 245, 220], bisque: [255, 228, 196], black: [0, 0, 0], blanchedalmond: [255, 235, 205], blue: [0, 0, 255], blueviolet: [138, 43, 226], brown: [165, 42, 42], burlywood: [222, 184, 135], cadetblue: [95, 158, 160], chartreuse: [127, 255, 0], chocolate: [210, 105, 30], coral: [255, 127, 80], cornflowerblue: [100, 149, 237], cornsilk: [255, 248, 220], crimson: [220, 20, 60], cyan: [0, 255, 255], darkblue: [0, 0, 139], darkcyan: [0, 139, 139], darkgoldenrod: [184, 134, 11], darkgray: [169, 169, 169], darkgreen: [0, 100, 0], darkgrey: [169, 169, 169], darkkhaki: [189, 183, 107], darkmagenta: [139, 0, 139], darkolivegreen: [85, 107, 47], darkorange: [255, 140, 0], darkorchid: [153, 50, 204], darkred: [139, 0, 0], darksalmon: [233, 150, 122], darkseagreen: [143, 188, 143], darkslateblue: [72, 61, 139], darkslategray: [47, 79, 79], darkslategrey: [47, 79, 79], darkturquoise: [0, 206, 209], darkviolet: [148, 0, 211], deeppink: [255, 20, 147], deepskyblue: [0, 191, 255], dimgray: [105, 105, 105], dimgrey: [105, 105, 105], dodgerblue: [30, 144, 255], firebrick: [178, 34, 34], floralwhite: [255, 250, 240], forestgreen: [34, 139, 34], fuchsia: [255, 0, 255], gainsboro: [220, 220, 220], ghostwhite: [248, 248, 255], gold: [255, 215, 0], goldenrod: [218, 165, 32], gray: [128, 128, 128], grey: [128, 128, 128], green: [0, 128, 0], greenyellow: [173, 255, 47], honeydew: [240, 255, 240], hotpink: [255, 105, 180], indianred: [205, 92, 92], indigo: [75, 0, 130], ivory: [255, 255, 240], khaki: [240, 230, 140], lavender: [230, 230, 250], lavenderblush: [255, 240, 245], lawngreen: [124, 252, 0], lemonchiffon: [255, 250, 205], lightblue: [173, 216, 230], lightcoral: [240, 128, 128], lightcyan: [224, 255, 255], lightgoldenrodyellow: [250, 250, 210], lightgray: [211, 211, 211], lightgreen: [144, 238, 144], lightgrey: [211, 211, 211], lightpink: [255, 182, 193], lightsalmon: [255, 160, 122], lightseagreen: [32, 178, 170], lightskyblue: [135, 206, 250], lightslategray: [119, 136, 153], lightslategrey: [119, 136, 153], lightsteelblue: [176, 196, 222], lightyellow: [255, 255, 224], lime: [0, 255, 0], limegreen: [50, 205, 50], linen: [250, 240, 230], magenta: [255, 0, 255], maroon: [128, 0, 0], mediumaquamarine: [102, 205, 170], mediumblue: [0, 0, 205], mediumorchid: [186, 85, 211], mediumpurple: [147, 112, 219], mediumseagreen: [60, 179, 113], mediumslateblue: [123, 104, 238], mediumspringgreen: [0, 250, 154], mediumturquoise: [72, 209, 204], mediumvioletred: [199, 21, 133], midnightblue: [25, 25, 112], mintcream: [245, 255, 250], mistyrose: [255, 228, 225], moccasin: [255, 228, 181], navajowhite: [255, 222, 173], navy: [0, 0, 128], oldlace: [253, 245, 230], olive: [128, 128, 0], olivedrab: [107, 142, 35], orange: [255, 165, 0], orangered: [255, 69, 0], orchid: [218, 112, 214], palegoldenrod: [238, 232, 170], palegreen: [152, 251, 152], paleturquoise: [175, 238, 238], palevioletred: [219, 112, 147], papayawhip: [255, 239, 213], peachpuff: [255, 218, 185], peru: [205, 133, 63], pink: [255, 192, 203], plum: [221, 160, 221], powderblue: [176, 224, 230], purple: [128, 0, 128], red: [255, 0, 0], rosybrown: [188, 143, 143], royalblue: [65, 105, 225], saddlebrown: [139, 69, 19], salmon: [250, 128, 114], sandybrown: [244, 164, 96], seagreen: [46, 139, 87], seashell: [255, 245, 238], sienna: [160, 82, 45], silver: [192, 192, 192], skyblue: [135, 206, 235], slateblue: [106, 90, 205], slategray: [112, 128, 144], slategrey: [112, 128, 144], snow: [255, 250, 250], springgreen: [0, 255, 127], steelblue: [70, 130, 180], tan: [210, 180, 140], teal: [0, 128, 128], thistle: [216, 191, 216], tomato: [255, 99, 71], turquoise: [64, 224, 208], violet: [238, 130, 238], wheat: [245, 222, 179], white: [255, 255, 255], whitesmoke: [245, 245, 245], yellow: [255, 255, 0], yellowgreen: [154, 205, 50] }; // sets the value in a map (map may not be built) var setMap = function setMap(options) { var obj = options.map; var keys = options.keys; var l = keys.length; for (var i = 0; i < l; i++) { var key = keys[i]; if (plainObject(key)) { throw Error('Tried to set map with object key'); } if (i < keys.length - 1) { // extend the map if necessary if (obj[key] == null) { obj[key] = {}; } obj = obj[key]; } else { // set the value obj[key] = options.value; } } }; // gets the value in a map even if it's not built in places var getMap = function getMap(options) { var obj = options.map; var keys = options.keys; var l = keys.length; for (var i = 0; i < l; i++) { var key = keys[i]; if (plainObject(key)) { throw Error('Tried to get map with object key'); } obj = obj[key]; if (obj == null) { return obj; } } return obj; }; /** * Checks if `value` is the * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types) * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`) * * @static * @memberOf _ * @since 0.1.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is an object, else `false`. * @example * * _.isObject({}); * // => true * * _.isObject([1, 2, 3]); * // => true * * _.isObject(_.noop); * // => true * * _.isObject(null); * // => false */ function isObject(value) { var type = typeof value; return value != null && (type == 'object' || type == 'function'); } var isObject_1 = isObject; var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; function createCommonjsModule(fn, module) { return module = { exports: {} }, fn(module, module.exports), module.exports; } /** Detect free variable `global` from Node.js. */ var freeGlobal = typeof commonjsGlobal == 'object' && commonjsGlobal && commonjsGlobal.Object === Object && commonjsGlobal; var _freeGlobal = freeGlobal; /** Detect free variable `self`. */ var freeSelf = typeof self == 'object' && self && self.Object === Object && self; /** Used as a reference to the global object. */ var root = _freeGlobal || freeSelf || Function('return this')(); var _root = root; /** * Gets the timestamp of the number of milliseconds that have elapsed since * the Unix epoch (1 January 1970 00:00:00 UTC). * * @static * @memberOf _ * @since 2.4.0 * @category Date * @returns {number} Returns the timestamp. * @example * * _.defer(function(stamp) { * console.log(_.now() - stamp); * }, _.now()); * // => Logs the number of milliseconds it took for the deferred invocation. */ var now = function() { return _root.Date.now(); }; var now_1 = now; /** Used to match a single whitespace character. */ var reWhitespace = /\s/; /** * Used by `_.trim` and `_.trimEnd` to get the index of the last non-whitespace * character of `string`. * * @private * @param {string} string The string to inspect. * @returns {number} Returns the index of the last non-whitespace character. */ function trimmedEndIndex(string) { var index = string.length; while (index-- && reWhitespace.test(string.charAt(index))) {} return index; } var _trimmedEndIndex = trimmedEndIndex; /** Used to match leading whitespace. */ var reTrimStart = /^\s+/; /** * The base implementation of `_.trim`. * * @private * @param {string} string The string to trim. * @returns {string} Returns the trimmed string. */ function baseTrim(string) { return string ? string.slice(0, _trimmedEndIndex(string) + 1).replace(reTrimStart, '') : string; } var _baseTrim = baseTrim; /** Built-in value references. */ var Symbol$1 = _root.Symbol; var _Symbol = Symbol$1; /** Used for built-in method references. */ var objectProto$5 = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty$4 = objectProto$5.hasOwnProperty; /** * Used to resolve the * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) * of values. */ var nativeObjectToString$1 = objectProto$5.toString; /** Built-in value references. */ var symToStringTag$1 = _Symbol ? _Symbol.toStringTag : undefined; /** * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values. * * @private * @param {*} value The value to query. * @returns {string} Returns the raw `toStringTag`. */ function getRawTag(value) { var isOwn = hasOwnProperty$4.call(value, symToStringTag$1), tag = value[symToStringTag$1]; try { value[symToStringTag$1] = undefined; var unmasked = true; } catch (e) {} var result = nativeObjectToString$1.call(value); if (unmasked) { if (isOwn) { value[symToStringTag$1] = tag; } else { delete value[symToStringTag$1]; } } return result; } var _getRawTag = getRawTag; /** Used for built-in method references. */ var objectProto$4 = Object.prototype; /** * Used to resolve the * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) * of values. */ var nativeObjectToString = objectProto$4.toString; /** * Converts `value` to a string using `Object.prototype.toString`. * * @private * @param {*} value The value to convert. * @returns {string} Returns the converted string. */ function objectToString(value) { return nativeObjectToString.call(value); } var _objectToString = objectToString; /** `Object#toString` result references. */ var nullTag = '[object Null]', undefinedTag = '[object Undefined]'; /** Built-in value references. */ var symToStringTag = _Symbol ? _Symbol.toStringTag : undefined; /** * The base implementation of `getTag` without fallbacks for buggy environments. * * @private * @param {*} value The value to query. * @returns {string} Returns the `toStringTag`. */ function baseGetTag(value) { if (value == null) { return value === undefined ? undefinedTag : nullTag; } return (symToStringTag && symToStringTag in Object(value)) ? _getRawTag(value) : _objectToString(value); } var _baseGetTag = baseGetTag; /** * Checks if `value` is object-like. A value is object-like if it's not `null` * and has a `typeof` result of "object". * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is object-like, else `false`. * @example * * _.isObjectLike({}); * // => true * * _.isObjectLike([1, 2, 3]); * // => true * * _.isObjectLike(_.noop); * // => false * * _.isObjectLike(null); * // => false */ function isObjectLike(value) { return value != null && typeof value == 'object'; } var isObjectLike_1 = isObjectLike; /** `Object#toString` result references. */ var symbolTag = '[object Symbol]'; /** * Checks if `value` is classified as a `Symbol` primitive or object. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a symbol, else `false`. * @example * * _.isSymbol(Symbol.iterator); * // => true * * _.isSymbol('abc'); * // => false */ function isSymbol(value) { return typeof value == 'symbol' || (isObjectLike_1(value) && _baseGetTag(value) == symbolTag); } var isSymbol_1 = isSymbol; /** Used as references for various `Number` constants. */ var NAN = 0 / 0; /** Used to detect bad signed hexadecimal string values. */ var reIsBadHex = /^[-+]0x[0-9a-f]+$/i; /** Used to detect binary string values. */ var reIsBinary = /^0b[01]+$/i; /** Used to detect octal string values. */ var reIsOctal = /^0o[0-7]+$/i; /** Built-in method references without a dependency on `root`. */ var freeParseInt = parseInt; /** * Converts `value` to a number. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to process. * @returns {number} Returns the number. * @example * * _.toNumber(3.2); * // => 3.2 * * _.toNumber(Number.MIN_VALUE); * // => 5e-324 * * _.toNumber(Infinity); * // => Infinity * * _.toNumber('3.2'); * // => 3.2 */ function toNumber(value) { if (typeof value == 'number') { return value; } if (isSymbol_1(value)) { return NAN; } if (isObject_1(value)) { var other = typeof value.valueOf == 'function' ? value.valueOf() : value; value = isObject_1(other) ? (other + '') : other; } if (typeof value != 'string') { return value === 0 ? value : +value; } value = _baseTrim(value); var isBinary = reIsBinary.test(value); return (isBinary || reIsOctal.test(value)) ? freeParseInt(value.slice(2), isBinary ? 2 : 8) : (reIsBadHex.test(value) ? NAN : +value); } var toNumber_1 = toNumber; /** Error message constants. */ var FUNC_ERROR_TEXT$1 = 'Expected a function'; /* Built-in method references for those with the same name as other `lodash` methods. */ var nativeMax = Math.max, nativeMin = Math.min; /** * Creates a debounced function that delays invoking `func` until after `wait` * milliseconds have elapsed since the last time the debounced function was * invoked. The debounced function comes with a `cancel` method to cancel * delayed `func` invocations and a `flush` method to immediately invoke them. * Provide `options` to indicate whether `func` should be invoked on the * leading and/or trailing edge of the `wait` timeout. The `func` is invoked * with the last arguments provided to the debounced function. Subsequent * calls to the debounced function return the result of the last `func` * invocation. * * **Note:** If `leading` and `trailing` options are `true`, `func` is * invoked on the trailing edge of the timeout only if the debounced function * is invoked more than once during the `wait` timeout. * * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred * until to the next tick, similar to `setTimeout` with a timeout of `0`. * * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/) * for details over the differences between `_.debounce` and `_.throttle`. * * @static * @memberOf _ * @since 0.1.0 * @category Function * @param {Function} func The function to debounce. * @param {number} [wait=0] The number of milliseconds to delay. * @param {Object} [options={}] The options object. * @param {boolean} [options.leading=false] * Specify invoking on the leading edge of the timeout. * @param {number} [options.maxWait] * The maximum time `func` is allowed to be delayed before it's invoked. * @param {boolean} [options.trailing=true] * Specify invoking on the trailing edge of the timeout. * @returns {Function} Returns the new debounced function. * @example * * // Avoid costly calculations while the window size is in flux. * jQuery(window).on('resize', _.debounce(calculateLayout, 150)); * * // Invoke `sendMail` when clicked, debouncing subsequent calls. * jQuery(element).on('click', _.debounce(sendMail, 300, { * 'leading': true, * 'trailing': false * })); * * // Ensure `batchLog` is invoked once after 1 second of debounced calls. * var debounced = _.debounce(batchLog, 250, { 'maxWait': 1000 }); * var source = new EventSource('/stream'); * jQuery(source).on('message', debounced); * * // Cancel the trailing debounced invocation. * jQuery(window).on('popstate', debounced.cancel); */ function debounce(func, wait, options) { var lastArgs, lastThis, maxWait, result, timerId, lastCallTime, lastInvokeTime = 0, leading = false, maxing = false, trailing = true; if (typeof func != 'function') { throw new TypeError(FUNC_ERROR_TEXT$1); } wait = toNumber_1(wait) || 0; if (isObject_1(options)) { leading = !!options.leading; maxing = 'maxWait' in options; maxWait = maxing ? nativeMax(toNumber_1(options.maxWait) || 0, wait) : maxWait; trailing = 'trailing' in options ? !!options.trailing : trailing; } function invokeFunc(time) { var args = lastArgs, thisArg = lastThis; lastArgs = lastThis = undefined; lastInvokeTime = time; result = func.apply(thisArg, args); return result; } function leadingEdge(time) { // Reset any `maxWait` timer. lastInvokeTime = time; // Start the timer for the trailing edge. timerId = setTimeout(timerExpired, wait); // Invoke the leading edge. return leading ? invokeFunc(time) : result; } function remainingWait(time) { var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime, timeWaiting = wait - timeSinceLastCall; return maxing ? nativeMin(timeWaiting, maxWait - timeSinceLastInvoke) : timeWaiting; } function shouldInvoke(time) { var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime; // Either this is the first call, activity has stopped and we're at the // trailing edge, the system time has gone backwards and we're treating // it as the trailing edge, or we've hit the `maxWait` limit. return (lastCallTime === undefined || (timeSinceLastCall >= wait) || (timeSinceLastCall < 0) || (maxing && timeSinceLastInvoke >= maxWait)); } function timerExpired() { var time = now_1(); if (shouldInvoke(time)) { return trailingEdge(time); } // Restart the timer. timerId = setTimeout(timerExpired, remainingWait(time)); } function trailingEdge(time) { timerId = undefined; // Only invoke if we have `lastArgs` which means `func` has been // debounced at least once. if (trailing && lastArgs) { return invokeFunc(time); } lastArgs = lastThis = undefined; return result; } function cancel() { if (timerId !== undefined) { clearTimeout(timerId); } lastInvokeTime = 0; lastArgs = lastCallTime = lastThis = timerId = undefined; } function flush() { return timerId === undefined ? result : trailingEdge(now_1()); } function debounced() { var time = now_1(), isInvoking = shouldInvoke(time); lastArgs = arguments; lastThis = this; lastCallTime = time; if (isInvoking) { if (timerId === undefined) { return leadingEdge(lastCallTime); } if (maxing) { // Handle invocations in a tight loop. clearTimeout(timerId); timerId = setTimeout(timerExpired, wait); return invokeFunc(lastCallTime); } } if (timerId === undefined) { timerId = setTimeout(timerExpired, wait); } return result; } debounced.cancel = cancel; debounced.flush = flush; return debounced; } var debounce_1 = debounce; var performance = _window ? _window.performance : null; var pnow = performance && performance.now ? function () { return performance.now(); } : function () { return Date.now(); }; var raf = function () { if (_window) { if (_window.requestAnimationFrame) { return function (fn) { _window.requestAnimationFrame(fn); }; } else if (_window.mozRequestAnimationFrame) { return function (fn) { _window.mozRequestAnimationFrame(fn); }; } else if (_window.webkitRequestAnimationFrame) { return function (fn) { _window.webkitRequestAnimationFrame(fn); }; } else if (_window.msRequestAnimationFrame) { return function (fn) { _window.msRequestAnimationFrame(fn); }; } } return function (fn) { if (fn) { setTimeout(function () { fn(pnow()); }, 1000 / 60); } }; }(); var requestAnimationFrame = function requestAnimationFrame(fn) { return raf(fn); }; var performanceNow = pnow; var DEFAULT_HASH_SEED = 9261; var K = 65599; // 37 also works pretty well var DEFAULT_HASH_SEED_ALT = 5381; var hashIterableInts = function hashIterableInts(iterator) { var seed = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : DEFAULT_HASH_SEED; // sdbm/string-hash var hash = seed; var entry; for (;;) { entry = iterator.next(); if (entry.done) { break; } hash = hash * K + entry.value | 0; } return hash; }; var hashInt = function hashInt(num) { var seed = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : DEFAULT_HASH_SEED; // sdbm/string-hash return seed * K + num | 0; }; var hashIntAlt = function hashIntAlt(num) { var seed = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : DEFAULT_HASH_SEED_ALT; // djb2/string-hash return (seed << 5) + seed + num | 0; }; var combineHashes = function combineHashes(hash1, hash2) { return hash1 * 0x200000 + hash2; }; var combineHashesArray = function combineHashesArray(hashes) { return hashes[0] * 0x200000 + hashes[1]; }; var hashArrays = function hashArrays(hashes1, hashes2) { return [hashInt(hashes1[0], hashes2[0]), hashIntAlt(hashes1[1], hashes2[1])]; }; var hashIntsArray = function hashIntsArray(ints, seed) { var entry = { value: 0, done: false }; var i = 0; var length = ints.length; var iterator = { next: function next() { if (i < length) { entry.value = ints[i++]; } else { entry.done = true; } return entry; } }; return hashIterableInts(iterator, seed); }; var hashString = function hashString(str, seed) { var entry = { value: 0, done: false }; var i = 0; var length = str.length; var iterator = { next: function next() { if (i < length) { entry.value = str.charCodeAt(i++); } else { entry.done = true; } return entry; } }; return hashIterableInts(iterator, seed); }; var hashStrings = function hashStrings() { return hashStringsArray(arguments); }; var hashStringsArray = function hashStringsArray(strs) { var hash; for (var i = 0; i < strs.length; i++) { var str = strs[i]; if (i === 0) { hash = hashString(str); } else { hash = hashString(str, hash); } } return hash; }; /*global console */ var warningsEnabled = true; var warnSupported = console.warn != null; // eslint-disable-line no-console var traceSupported = console.trace != null; // eslint-disable-line no-console var MAX_INT$1 = Number.MAX_SAFE_INTEGER || 9007199254740991; var trueify = function trueify() { return true; }; var falsify = function falsify() { return false; }; var zeroify = function zeroify() { return 0; }; var noop$1 = function noop() {}; var error = function error(msg) { throw new Error(msg); }; var warnings = function warnings(enabled) { if (enabled !== undefined) { warningsEnabled = !!enabled; } else { return warningsEnabled; } }; var warn = function warn(msg) { /* eslint-disable no-console */ if (!warnings()) { return; } if (warnSupported) { console.warn(msg); } else { console.log(msg); if (traceSupported) { console.trace(); } } }; /* eslint-enable */ var clone = function clone(obj) { return extend({}, obj); }; // gets a shallow copy of the argument var copy = function copy(obj) { if (obj == null) { return obj; } if (array(obj)) { return obj.slice(); } else if (plainObject(obj)) { return clone(obj); } else { return obj; } }; var copyArray$1 = function copyArray(arr) { return arr.slice(); }; var uuid = function uuid(a, b /* placeholders */) { for ( // loop :) b = a = ''; // b - result , a - numeric letiable a++ < 36; // b += a * 51 & 52 // if "a" is not 9 or 14 or 19 or 24 ? // return a random number or 4 (a ^ 15 // if "a" is not 15 ? // generate a random number from 0 to 15 8 ^ Math.random() * (a ^ 20 ? 16 : 4) // unless "a" is 20, in which case a random number from 8 to 11 : 4 // otherwise 4 ).toString(16) : '-' // in other cases (if "a" is 9,14,19,24) insert "-" ) { } return b; }; var _staticEmptyObject = {}; var staticEmptyObject = function staticEmptyObject() { return _staticEmptyObject; }; var defaults$g = function defaults(_defaults) { var keys = Object.keys(_defaults); return function (opts) { var filledOpts = {}; for (var i = 0; i < keys.length; i++) { var key = keys[i]; var optVal = opts == null ? undefined : opts[key]; filledOpts[key] = optVal === undefined ? _defaults[key] : optVal; } return filledOpts; }; }; var removeFromArray = function removeFromArray(arr, ele, oneCopy) { for (var i = arr.length - 1; i >= 0; i--) { if (arr[i] === ele) { arr.splice(i, 1); if (oneCopy) { break; } } } }; var clearArray = function clearArray(arr) { arr.splice(0, arr.length); }; var push = function push(arr, otherArr) { for (var i = 0; i < otherArr.length; i++) { var el = otherArr[i]; arr.push(el); } }; var getPrefixedProperty = function getPrefixedProperty(obj, propName, prefix) { if (prefix) { propName = prependCamel(prefix, propName); // e.g. (labelWidth, source) => sourceLabelWidth } return obj[propName]; }; var setPrefixedProperty = function setPrefixedProperty(obj, propName, prefix, value) { if (prefix) { propName = prependCamel(prefix, propName); // e.g. (labelWidth, source) => sourceLabelWidth } obj[propName] = value; }; /* global Map */ var ObjectMap = /*#__PURE__*/function () { function ObjectMap() { _classCallCheck(this, ObjectMap); this._obj = {}; } _createClass(ObjectMap, [{ key: "set", value: function set(key, val) { this._obj[key] = val; return this; } }, { key: "delete", value: function _delete(key) { this._obj[key] = undefined; return this; } }, { key: "clear", value: function clear() { this._obj = {}; } }, { key: "has", value: function has(key) { return this._obj[key] !== undefined; } }, { key: "get", value: function get(key) { return this._obj[key]; } }]); return ObjectMap; }(); var Map$2 = typeof Map !== 'undefined' ? Map : ObjectMap; /* global Set */ var undef = "undefined" ; var ObjectSet = /*#__PURE__*/function () { function ObjectSet(arrayOrObjectSet) { _classCallCheck(this, ObjectSet); this._obj = Object.create(null); this.size = 0; if (arrayOrObjectSet != null) { var arr; if (arrayOrObjectSet.instanceString != null && arrayOrObjectSet.instanceString() === this.instanceString()) { arr = arrayOrObjectSet.toArray(); } else { arr = arrayOrObjectSet; } for (var i = 0; i < arr.length; i++) { this.add(arr[i]); } } } _createClass(ObjectSet, [{ key: "instanceString", value: function instanceString() { return 'set'; } }, { key: "add", value: function add(val) { var o = this._obj; if (o[val] !== 1) { o[val] = 1; this.size++; } } }, { key: "delete", value: function _delete(val) { var o = this._obj; if (o[val] === 1) { o[val] = 0; this.size--; } } }, { key: "clear", value: function clear() { this._obj = Object.create(null); } }, { key: "has", value: function has(val) { return this._obj[val] === 1; } }, { key: "toArray", value: function toArray() { var _this = this; return Object.keys(this._obj).filter(function (key) { return _this.has(key); }); } }, { key: "forEach", value: function forEach(callback, thisArg) { return this.toArray().forEach(callback, thisArg); } }]); return ObjectSet; }(); var Set$1 = (typeof Set === "undefined" ? "undefined" : _typeof(Set)) !== undef ? Set : ObjectSet; // represents a node or an edge var Element = function Element(cy, params) { var restore = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true; if (cy === undefined || params === undefined || !core(cy)) { error('An element must have a core reference and parameters set'); return; } var group = params.group; // try to automatically infer the group if unspecified if (group == null) { if (params.data && params.data.source != null && params.data.target != null) { group = 'edges'; } else { group = 'nodes'; } } // validate group if (group !== 'nodes' && group !== 'edges') { error('An element must be of type `nodes` or `edges`; you specified `' + group + '`'); return; } // make the element array-like, just like a collection this.length = 1; this[0] = this; // NOTE: when something is added here, add also to ele.json() var _p = this._private = { cy: cy, single: true, // indicates this is an element data: params.data || {}, // data object position: params.position || { x: 0, y: 0 }, // (x, y) position pair autoWidth: undefined, // width and height of nodes calculated by the renderer when set to special 'auto' value autoHeight: undefined, autoPadding: undefined, compoundBoundsClean: false, // whether the compound dimensions need to be recalculated the next time dimensions are read listeners: [], // array of bound listeners group: group, // string; 'nodes' or 'edges' style: {}, // properties as set by the style rstyle: {}, // properties for style sent from the renderer to the core styleCxts: [], // applied style contexts from the styler styleKeys: {}, // per-group keys of style property values removed: true, // whether it's inside the vis; true if removed (set true here since we call restore) selected: params.selected ? true : false, // whether it's selected selectable: params.selectable === undefined ? true : params.selectable ? true : false, // whether it's selectable locked: params.locked ? true : false, // whether the element is locked (cannot be moved) grabbed: false, // whether the element is grabbed by the mouse; renderer sets this privately grabbable: params.grabbable === undefined ? true : params.grabbable ? true : false, // whether the element can be grabbed pannable: params.pannable === undefined ? group === 'edges' ? true : false : params.pannable ? true : false, // whether the element has passthrough panning enabled active: false, // whether the element is active from user interaction classes: new Set$1(), // map ( className => true ) animation: { // object for currently-running animations current: [], queue: [] }, rscratch: {}, // object in which the renderer can store information scratch: params.scratch || {}, // scratch objects edges: [], // array of connected edges children: [], // array of children parent: params.parent && params.parent.isNode() ? params.parent : null, // parent ref traversalCache: {}, // cache of output of traversal functions backgrounding: false, // whether background images are loading bbCache: null, // cache of the current bounding box bbCacheShift: { x: 0, y: 0 }, // shift applied to cached bb to be applied on next get bodyBounds: null, // bounds cache of element body, w/o overlay overlayBounds: null, // bounds cache of element body, including overlay labelBounds: { // bounds cache of labels all: null, source: null, target: null, main: null }, arrowBounds: { // bounds cache of edge arrows source: null, target: null, 'mid-source': null, 'mid-target': null } }; if (_p.position.x == null) { _p.position.x = 0; } if (_p.position.y == null) { _p.position.y = 0; } // renderedPosition overrides if specified if (params.renderedPosition) { var rpos = params.renderedPosition; var pan = cy.pan(); var zoom = cy.zoom(); _p.position = { x: (rpos.x - pan.x) / zoom, y: (rpos.y - pan.y) / zoom }; } var classes = []; if (array(params.classes)) { classes = params.classes; } else if (string(params.classes)) { classes = params.classes.split(/\s+/); } for (var i = 0, l = classes.length; i < l; i++) { var cls = classes[i]; if (!cls || cls === '') { continue; } _p.classes.add(cls); } this.createEmitter(); var bypass = params.style || params.css; if (bypass) { warn('Setting a `style` bypass at element creation should be done only when absolutely necessary. Try to use the stylesheet instead.'); this.style(bypass); } if (restore === undefined || restore) { this.restore(); } }; var defineSearch = function defineSearch(params) { params = { bfs: params.bfs || !params.dfs, dfs: params.dfs || !params.bfs }; // from pseudocode on wikipedia return function searchFn(roots, fn, directed) { var options; if (plainObject(roots) && !elementOrCollection(roots)) { options = roots; roots = options.roots || options.root; fn = options.visit; directed = options.directed; } directed = arguments.length === 2 && !fn$6(fn) ? fn : directed; fn = fn$6(fn) ? fn : function () {}; var cy = this._private.cy; var v = roots = string(roots) ? this.filter(roots) : roots; var Q = []; var connectedNodes = []; var connectedBy = {}; var id2depth = {}; var V = {}; var j = 0; var found; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; // enqueue v for (var i = 0; i < v.length; i++) { var vi = v[i]; var viId = vi.id(); if (vi.isNode()) { Q.unshift(vi); if (params.bfs) { V[viId] = true; connectedNodes.push(vi); } id2depth[viId] = 0; } } var _loop = function _loop() { var v = params.bfs ? Q.shift() : Q.pop(); var vId = v.id(); if (params.dfs) { if (V[vId]) { return "continue"; } V[vId] = true; connectedNodes.push(v); } var depth = id2depth[vId]; var prevEdge = connectedBy[vId]; var src = prevEdge != null ? prevEdge.source() : null; var tgt = prevEdge != null ? prevEdge.target() : null; var prevNode = prevEdge == null ? undefined : v.same(src) ? tgt[0] : src[0]; var ret = void 0; ret = fn(v, prevEdge, prevNode, j++, depth); if (ret === true) { found = v; return "break"; } if (ret === false) { return "break"; } var vwEdges = v.connectedEdges().filter(function (e) { return (!directed || e.source().same(v)) && edges.has(e); }); for (var _i2 = 0; _i2 < vwEdges.length; _i2++) { var e = vwEdges[_i2]; var w = e.connectedNodes().filter(function (n) { return !n.same(v) && nodes.has(n); }); var wId = w.id(); if (w.length !== 0 && !V[wId]) { w = w[0]; Q.push(w); if (params.bfs) { V[wId] = true; connectedNodes.push(w); } connectedBy[wId] = e; id2depth[wId] = id2depth[vId] + 1; } } }; while (Q.length !== 0) { var _ret = _loop(); if (_ret === "continue") continue; if (_ret === "break") break; } var connectedEles = cy.collection(); for (var _i = 0; _i < connectedNodes.length; _i++) { var node = connectedNodes[_i]; var edge = connectedBy[node.id()]; if (edge != null) { connectedEles.push(edge); } connectedEles.push(node); } return { path: cy.collection(connectedEles), found: cy.collection(found) }; }; }; // search, spanning trees, etc var elesfn$v = { breadthFirstSearch: defineSearch({ bfs: true }), depthFirstSearch: defineSearch({ dfs: true }) }; // nice, short mathematical alias elesfn$v.bfs = elesfn$v.breadthFirstSearch; elesfn$v.dfs = elesfn$v.depthFirstSearch; var heap$1 = createCommonjsModule(function (module, exports) { // Generated by CoffeeScript 1.8.0 (function() { var Heap, defaultCmp, floor, heapify, heappop, heappush, heappushpop, heapreplace, insort, min, nlargest, nsmallest, updateItem, _siftdown, _siftup; floor = Math.floor, min = Math.min; /* Default comparison function to be used */ defaultCmp = function(x, y) { if (x < y) { return -1; } if (x > y) { return 1; } return 0; }; /* Insert item x in list a, and keep it sorted assuming a is sorted. If x is already in a, insert it to the right of the rightmost x. Optional args lo (default 0) and hi (default a.length) bound the slice of a to be searched. */ insort = function(a, x, lo, hi, cmp) { var mid; if (lo == null) { lo = 0; } if (cmp == null) { cmp = defaultCmp; } if (lo < 0) { throw new Error('lo must be non-negative'); } if (hi == null) { hi = a.length; } while (lo < hi) { mid = floor((lo + hi) / 2); if (cmp(x, a[mid]) < 0) { hi = mid; } else { lo = mid + 1; } } return ([].splice.apply(a, [lo, lo - lo].concat(x)), x); }; /* Push item onto heap, maintaining the heap invariant. */ heappush = function(array, item, cmp) { if (cmp == null) { cmp = defaultCmp; } array.push(item); return _siftdown(array, 0, array.length - 1, cmp); }; /* Pop the smallest item off the heap, maintaining the heap invariant. */ heappop = function(array, cmp) { var lastelt, returnitem; if (cmp == null) { cmp = defaultCmp; } lastelt = array.pop(); if (array.length) { returnitem = array[0]; array[0] = lastelt; _siftup(array, 0, cmp); } else { returnitem = lastelt; } return returnitem; }; /* Pop and return the current smallest value, and add the new item. This is more efficient than heappop() followed by heappush(), and can be more appropriate when using a fixed size heap. Note that the value returned may be larger than item! That constrains reasonable use of this routine unless written as part of a conditional replacement: if item > array[0] item = heapreplace(array, item) */ heapreplace = function(array, item, cmp) { var returnitem; if (cmp == null) { cmp = defaultCmp; } returnitem = array[0]; array[0] = item; _siftup(array, 0, cmp); return returnitem; }; /* Fast version of a heappush followed by a heappop. */ heappushpop = function(array, item, cmp) { var _ref; if (cmp == null) { cmp = defaultCmp; } if (array.length && cmp(array[0], item) < 0) { _ref = [array[0], item], item = _ref[0], array[0] = _ref[1]; _siftup(array, 0, cmp); } return item; }; /* Transform list into a heap, in-place, in O(array.length) time. */ heapify = function(array, cmp) { var i, _i, _len, _ref1, _results, _results1; if (cmp == null) { cmp = defaultCmp; } _ref1 = (function() { _results1 = []; for (var _j = 0, _ref = floor(array.length / 2); 0 <= _ref ? _j < _ref : _j > _ref; 0 <= _ref ? _j++ : _j--){ _results1.push(_j); } return _results1; }).apply(this).reverse(); _results = []; for (_i = 0, _len = _ref1.length; _i < _len; _i++) { i = _ref1[_i]; _results.push(_siftup(array, i, cmp)); } return _results; }; /* Update the position of the given item in the heap. This function should be called every time the item is being modified. */ updateItem = function(array, item, cmp) { var pos; if (cmp == null) { cmp = defaultCmp; } pos = array.indexOf(item); if (pos === -1) { return; } _siftdown(array, 0, pos, cmp); return _siftup(array, pos, cmp); }; /* Find the n largest elements in a dataset. */ nlargest = function(array, n, cmp) { var elem, result, _i, _len, _ref; if (cmp == null) { cmp = defaultCmp; } result = array.slice(0, n); if (!result.length) { return result; } heapify(result, cmp); _ref = array.slice(n); for (_i = 0, _len = _ref.length; _i < _len; _i++) { elem = _ref[_i]; heappushpop(result, elem, cmp); } return result.sort(cmp).reverse(); }; /* Find the n smallest elements in a dataset. */ nsmallest = function(array, n, cmp) { var elem, los, result, _i, _j, _len, _ref, _ref1, _results; if (cmp == null) { cmp = defaultCmp; } if (n * 10 <= array.length) { result = array.slice(0, n).sort(cmp); if (!result.length) { return result; } los = result[result.length - 1]; _ref = array.slice(n); for (_i = 0, _len = _ref.length; _i < _len; _i++) { elem = _ref[_i]; if (cmp(elem, los) < 0) { insort(result, elem, 0, null, cmp); result.pop(); los = result[result.length - 1]; } } return result; } heapify(array, cmp); _results = []; for (_j = 0, _ref1 = min(n, array.length); 0 <= _ref1 ? _j < _ref1 : _j > _ref1; 0 <= _ref1 ? ++_j : --_j) { _results.push(heappop(array, cmp)); } return _results; }; _siftdown = function(array, startpos, pos, cmp) { var newitem, parent, parentpos; if (cmp == null) { cmp = defaultCmp; } newitem = array[pos]; while (pos > startpos) { parentpos = (pos - 1) >> 1; parent = array[parentpos]; if (cmp(newitem, parent) < 0) { array[pos] = parent; pos = parentpos; continue; } break; } return array[pos] = newitem; }; _siftup = function(array, pos, cmp) { var childpos, endpos, newitem, rightpos, startpos; if (cmp == null) { cmp = defaultCmp; } endpos = array.length; startpos = pos; newitem = array[pos]; childpos = 2 * pos + 1; while (childpos < endpos) { rightpos = childpos + 1; if (rightpos < endpos && !(cmp(array[childpos], array[rightpos]) < 0)) { childpos = rightpos; } array[pos] = array[childpos]; pos = childpos; childpos = 2 * pos + 1; } array[pos] = newitem; return _siftdown(array, startpos, pos, cmp); }; Heap = (function() { Heap.push = heappush; Heap.pop = heappop; Heap.replace = heapreplace; Heap.pushpop = heappushpop; Heap.heapify = heapify; Heap.updateItem = updateItem; Heap.nlargest = nlargest; Heap.nsmallest = nsmallest; function Heap(cmp) { this.cmp = cmp != null ? cmp : defaultCmp; this.nodes = []; } Heap.prototype.push = function(x) { return heappush(this.nodes, x, this.cmp); }; Heap.prototype.pop = function() { return heappop(this.nodes, this.cmp); }; Heap.prototype.peek = function() { return this.nodes[0]; }; Heap.prototype.contains = function(x) { return this.nodes.indexOf(x) !== -1; }; Heap.prototype.replace = function(x) { return heapreplace(this.nodes, x, this.cmp); }; Heap.prototype.pushpop = function(x) { return heappushpop(this.nodes, x, this.cmp); }; Heap.prototype.heapify = function() { return heapify(this.nodes, this.cmp); }; Heap.prototype.updateItem = function(x) { return updateItem(this.nodes, x, this.cmp); }; Heap.prototype.clear = function() { return this.nodes = []; }; Heap.prototype.empty = function() { return this.nodes.length === 0; }; Heap.prototype.size = function() { return this.nodes.length; }; Heap.prototype.clone = function() { var heap; heap = new Heap(); heap.nodes = this.nodes.slice(0); return heap; }; Heap.prototype.toArray = function() { return this.nodes.slice(0); }; Heap.prototype.insert = Heap.prototype.push; Heap.prototype.top = Heap.prototype.peek; Heap.prototype.front = Heap.prototype.peek; Heap.prototype.has = Heap.prototype.contains; Heap.prototype.copy = Heap.prototype.clone; return Heap; })(); (function(root, factory) { { return module.exports = factory(); } })(this, function() { return Heap; }); }).call(commonjsGlobal); }); var heap = heap$1; var dijkstraDefaults = defaults$g({ root: null, weight: function weight(edge) { return 1; }, directed: false }); var elesfn$u = { dijkstra: function dijkstra(options) { if (!plainObject(options)) { var args = arguments; options = { root: args[0], weight: args[1], directed: args[2] }; } var _dijkstraDefaults = dijkstraDefaults(options), root = _dijkstraDefaults.root, weight = _dijkstraDefaults.weight, directed = _dijkstraDefaults.directed; var eles = this; var weightFn = weight; var source = string(root) ? this.filter(root)[0] : root[0]; var dist = {}; var prev = {}; var knownDist = {}; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; edges.unmergeBy(function (ele) { return ele.isLoop(); }); var getDist = function getDist(node) { return dist[node.id()]; }; var setDist = function setDist(node, d) { dist[node.id()] = d; Q.updateItem(node); }; var Q = new heap(function (a, b) { return getDist(a) - getDist(b); }); for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; dist[node.id()] = node.same(source) ? 0 : Infinity; Q.push(node); } var distBetween = function distBetween(u, v) { var uvs = (directed ? u.edgesTo(v) : u.edgesWith(v)).intersect(edges); var smallestDistance = Infinity; var smallestEdge; for (var _i = 0; _i < uvs.length; _i++) { var edge = uvs[_i]; var _weight = weightFn(edge); if (_weight < smallestDistance || !smallestEdge) { smallestDistance = _weight; smallestEdge = edge; } } return { edge: smallestEdge, dist: smallestDistance }; }; while (Q.size() > 0) { var u = Q.pop(); var smalletsDist = getDist(u); var uid = u.id(); knownDist[uid] = smalletsDist; if (smalletsDist === Infinity) { continue; } var neighbors = u.neighborhood().intersect(nodes); for (var _i2 = 0; _i2 < neighbors.length; _i2++) { var v = neighbors[_i2]; var vid = v.id(); var vDist = distBetween(u, v); var alt = smalletsDist + vDist.dist; if (alt < getDist(v)) { setDist(v, alt); prev[vid] = { node: u, edge: vDist.edge }; } } // for } // while return { distanceTo: function distanceTo(node) { var target = string(node) ? nodes.filter(node)[0] : node[0]; return knownDist[target.id()]; }, pathTo: function pathTo(node) { var target = string(node) ? nodes.filter(node)[0] : node[0]; var S = []; var u = target; var uid = u.id(); if (target.length > 0) { S.unshift(target); while (prev[uid]) { var p = prev[uid]; S.unshift(p.edge); S.unshift(p.node); u = p.node; uid = u.id(); } } return eles.spawn(S); } }; } }; var elesfn$t = { // kruskal's algorithm (finds min spanning tree, assuming undirected graph) // implemented from pseudocode from wikipedia kruskal: function kruskal(weightFn) { weightFn = weightFn || function (edge) { return 1; }; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; var numNodes = nodes.length; var forest = new Array(numNodes); var A = nodes; // assumes byGroup() creates new collections that can be safely mutated var findSetIndex = function findSetIndex(ele) { for (var i = 0; i < forest.length; i++) { var eles = forest[i]; if (eles.has(ele)) { return i; } } }; // start with one forest per node for (var i = 0; i < numNodes; i++) { forest[i] = this.spawn(nodes[i]); } var S = edges.sort(function (a, b) { return weightFn(a) - weightFn(b); }); for (var _i = 0; _i < S.length; _i++) { var edge = S[_i]; var u = edge.source()[0]; var v = edge.target()[0]; var setUIndex = findSetIndex(u); var setVIndex = findSetIndex(v); var setU = forest[setUIndex]; var setV = forest[setVIndex]; if (setUIndex !== setVIndex) { A.merge(edge); // combine forests for u and v setU.merge(setV); forest.splice(setVIndex, 1); } } return A; } }; var aStarDefaults = defaults$g({ root: null, goal: null, weight: function weight(edge) { return 1; }, heuristic: function heuristic(edge) { return 0; }, directed: false }); var elesfn$s = { // Implemented from pseudocode from wikipedia aStar: function aStar(options) { var cy = this.cy(); var _aStarDefaults = aStarDefaults(options), root = _aStarDefaults.root, goal = _aStarDefaults.goal, heuristic = _aStarDefaults.heuristic, directed = _aStarDefaults.directed, weight = _aStarDefaults.weight; root = cy.collection(root)[0]; goal = cy.collection(goal)[0]; var sid = root.id(); var tid = goal.id(); var gScore = {}; var fScore = {}; var closedSetIds = {}; var openSet = new heap(function (a, b) { return fScore[a.id()] - fScore[b.id()]; }); var openSetIds = new Set$1(); var cameFrom = {}; var cameFromEdge = {}; var addToOpenSet = function addToOpenSet(ele, id) { openSet.push(ele); openSetIds.add(id); }; var cMin, cMinId; var popFromOpenSet = function popFromOpenSet() { cMin = openSet.pop(); cMinId = cMin.id(); openSetIds["delete"](cMinId); }; var isInOpenSet = function isInOpenSet(id) { return openSetIds.has(id); }; addToOpenSet(root, sid); gScore[sid] = 0; fScore[sid] = heuristic(root); // Counter var steps = 0; // Main loop while (openSet.size() > 0) { popFromOpenSet(); steps++; // If we've found our goal, then we are done if (cMinId === tid) { var path = []; var pathNode = goal; var pathNodeId = tid; var pathEdge = cameFromEdge[pathNodeId]; for (;;) { path.unshift(pathNode); if (pathEdge != null) { path.unshift(pathEdge); } pathNode = cameFrom[pathNodeId]; if (pathNode == null) { break; } pathNodeId = pathNode.id(); pathEdge = cameFromEdge[pathNodeId]; } return { found: true, distance: gScore[cMinId], path: this.spawn(path), steps: steps }; } // Add cMin to processed nodes closedSetIds[cMinId] = true; // Update scores for neighbors of cMin // Take into account if graph is directed or not var vwEdges = cMin._private.edges; for (var i = 0; i < vwEdges.length; i++) { var e = vwEdges[i]; // edge must be in set of calling eles if (!this.hasElementWithId(e.id())) { continue; } // cMin must be the source of edge if directed if (directed && e.data('source') !== cMinId) { continue; } var wSrc = e.source(); var wTgt = e.target(); var w = wSrc.id() !== cMinId ? wSrc : wTgt; var wid = w.id(); // node must be in set of calling eles if (!this.hasElementWithId(wid)) { continue; } // if node is in closedSet, ignore it if (closedSetIds[wid]) { continue; } // New tentative score for node w var tempScore = gScore[cMinId] + weight(e); // Update gScore for node w if: // w not present in openSet // OR // tentative gScore is less than previous value // w not in openSet if (!isInOpenSet(wid)) { gScore[wid] = tempScore; fScore[wid] = tempScore + heuristic(w); addToOpenSet(w, wid); cameFrom[wid] = cMin; cameFromEdge[wid] = e; continue; } // w already in openSet, but with greater gScore if (tempScore < gScore[wid]) { gScore[wid] = tempScore; fScore[wid] = tempScore + heuristic(w); cameFrom[wid] = cMin; cameFromEdge[wid] = e; } } // End of neighbors update } // End of main loop // If we've reached here, then we've not reached our goal return { found: false, distance: undefined, path: undefined, steps: steps }; } }; // elesfn var floydWarshallDefaults = defaults$g({ weight: function weight(edge) { return 1; }, directed: false }); var elesfn$r = { // Implemented from pseudocode from wikipedia floydWarshall: function floydWarshall(options) { var cy = this.cy(); var _floydWarshallDefault = floydWarshallDefaults(options), weight = _floydWarshallDefault.weight, directed = _floydWarshallDefault.directed; var weightFn = weight; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; var N = nodes.length; var Nsq = N * N; var indexOf = function indexOf(node) { return nodes.indexOf(node); }; var atIndex = function atIndex(i) { return nodes[i]; }; // Initialize distance matrix var dist = new Array(Nsq); for (var n = 0; n < Nsq; n++) { var j = n % N; var i = (n - j) / N; if (i === j) { dist[n] = 0; } else { dist[n] = Infinity; } } // Initialize matrix used for path reconstruction // Initialize distance matrix var next = new Array(Nsq); var edgeNext = new Array(Nsq); // Process edges for (var _i = 0; _i < edges.length; _i++) { var edge = edges[_i]; var src = edge.source()[0]; var tgt = edge.target()[0]; if (src === tgt) { continue; } // exclude loops var s = indexOf(src); var t = indexOf(tgt); var st = s * N + t; // source to target index var _weight = weightFn(edge); // Check if already process another edge between same 2 nodes if (dist[st] > _weight) { dist[st] = _weight; next[st] = t; edgeNext[st] = edge; } // If undirected graph, process 'reversed' edge if (!directed) { var ts = t * N + s; // target to source index if (!directed && dist[ts] > _weight) { dist[ts] = _weight; next[ts] = s; edgeNext[ts] = edge; } } } // Main loop for (var k = 0; k < N; k++) { for (var _i2 = 0; _i2 < N; _i2++) { var ik = _i2 * N + k; for (var _j = 0; _j < N; _j++) { var ij = _i2 * N + _j; var kj = k * N + _j; if (dist[ik] + dist[kj] < dist[ij]) { dist[ij] = dist[ik] + dist[kj]; next[ij] = next[ik]; } } } } var getArgEle = function getArgEle(ele) { return (string(ele) ? cy.filter(ele) : ele)[0]; }; var indexOfArgEle = function indexOfArgEle(ele) { return indexOf(getArgEle(ele)); }; var res = { distance: function distance(from, to) { var i = indexOfArgEle(from); var j = indexOfArgEle(to); return dist[i * N + j]; }, path: function path(from, to) { var i = indexOfArgEle(from); var j = indexOfArgEle(to); var fromNode = atIndex(i); if (i === j) { return fromNode.collection(); } if (next[i * N + j] == null) { return cy.collection(); } var path = cy.collection(); var prev = i; var edge; path.merge(fromNode); while (i !== j) { prev = i; i = next[i * N + j]; edge = edgeNext[prev * N + i]; path.merge(edge); path.merge(atIndex(i)); } return path; } }; return res; } // floydWarshall }; // elesfn var bellmanFordDefaults = defaults$g({ weight: function weight(edge) { return 1; }, directed: false, root: null }); var elesfn$q = { // Implemented from pseudocode from wikipedia bellmanFord: function bellmanFord(options) { var _this = this; var _bellmanFordDefaults = bellmanFordDefaults(options), weight = _bellmanFordDefaults.weight, directed = _bellmanFordDefaults.directed, root = _bellmanFordDefaults.root; var weightFn = weight; var eles = this; var cy = this.cy(); var _this$byGroup = this.byGroup(), edges = _this$byGroup.edges, nodes = _this$byGroup.nodes; var numNodes = nodes.length; var infoMap = new Map$2(); var hasNegativeWeightCycle = false; var negativeWeightCycles = []; root = cy.collection(root)[0]; // in case selector passed edges.unmergeBy(function (edge) { return edge.isLoop(); }); var numEdges = edges.length; var getInfo = function getInfo(node) { var obj = infoMap.get(node.id()); if (!obj) { obj = {}; infoMap.set(node.id(), obj); } return obj; }; var getNodeFromTo = function getNodeFromTo(to) { return (string(to) ? cy.$(to) : to)[0]; }; var distanceTo = function distanceTo(to) { return getInfo(getNodeFromTo(to)).dist; }; var pathTo = function pathTo(to) { var thisStart = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : root; var end = getNodeFromTo(to); var path = []; var node = end; for (;;) { if (node == null) { return _this.spawn(); } var _getInfo = getInfo(node), edge = _getInfo.edge, pred = _getInfo.pred; path.unshift(node[0]); if (node.same(thisStart) && path.length > 0) { break; } if (edge != null) { path.unshift(edge); } node = pred; } return eles.spawn(path); }; // Initializations { dist, pred, edge } for (var i = 0; i < numNodes; i++) { var node = nodes[i]; var info = getInfo(node); if (node.same(root)) { info.dist = 0; } else { info.dist = Infinity; } info.pred = null; info.edge = null; } // Edges relaxation var replacedEdge = false; var checkForEdgeReplacement = function checkForEdgeReplacement(node1, node2, edge, info1, info2, weight) { var dist = info1.dist + weight; if (dist < info2.dist && !edge.same(info1.edge)) { info2.dist = dist; info2.pred = node1; info2.edge = edge; replacedEdge = true; } }; for (var _i = 1; _i < numNodes; _i++) { replacedEdge = false; for (var e = 0; e < numEdges; e++) { var edge = edges[e]; var src = edge.source(); var tgt = edge.target(); var _weight = weightFn(edge); var srcInfo = getInfo(src); var tgtInfo = getInfo(tgt); checkForEdgeReplacement(src, tgt, edge, srcInfo, tgtInfo, _weight); // If undirected graph, we need to take into account the 'reverse' edge if (!directed) { checkForEdgeReplacement(tgt, src, edge, tgtInfo, srcInfo, _weight); } } if (!replacedEdge) { break; } } if (replacedEdge) { // Check for negative weight cycles var negativeWeightCycleIds = []; for (var _e = 0; _e < numEdges; _e++) { var _edge = edges[_e]; var _src = _edge.source(); var _tgt = _edge.target(); var _weight2 = weightFn(_edge); var srcDist = getInfo(_src).dist; var tgtDist = getInfo(_tgt).dist; if (srcDist + _weight2 < tgtDist || !directed && tgtDist + _weight2 < srcDist) { if (!hasNegativeWeightCycle) { warn('Graph contains a negative weight cycle for Bellman-Ford'); hasNegativeWeightCycle = true; } if (options.findNegativeWeightCycles !== false) { var negativeNodes = []; if (srcDist + _weight2 < tgtDist) { negativeNodes.push(_src); } if (!directed && tgtDist + _weight2 < srcDist) { negativeNodes.push(_tgt); } var numNegativeNodes = negativeNodes.length; for (var n = 0; n < numNegativeNodes; n++) { var start = negativeNodes[n]; var cycle = [start]; cycle.push(getInfo(start).edge); var _node = getInfo(start).pred; while (cycle.indexOf(_node) === -1) { cycle.push(_node); cycle.push(getInfo(_node).edge); _node = getInfo(_node).pred; } cycle = cycle.slice(cycle.indexOf(_node)); var smallestId = cycle[0].id(); var smallestIndex = 0; for (var c = 2; c < cycle.length; c += 2) { if (cycle[c].id() < smallestId) { smallestId = cycle[c].id(); smallestIndex = c; } } cycle = cycle.slice(smallestIndex).concat(cycle.slice(0, smallestIndex)); cycle.push(cycle[0]); var cycleId = cycle.map(function (el) { return el.id(); }).join(","); if (negativeWeightCycleIds.indexOf(cycleId) === -1) { negativeWeightCycles.push(eles.spawn(cycle)); negativeWeightCycleIds.push(cycleId); } } } else { break; } } } } return { distanceTo: distanceTo, pathTo: pathTo, hasNegativeWeightCycle: hasNegativeWeightCycle, negativeWeightCycles: negativeWeightCycles }; } // bellmanFord }; // elesfn var sqrt2 = Math.sqrt(2); // Function which colapses 2 (meta) nodes into one // Updates the remaining edge lists // Receives as a paramater the edge which causes the collapse var collapse = function collapse(edgeIndex, nodeMap, remainingEdges) { if (remainingEdges.length === 0) { error("Karger-Stein must be run on a connected (sub)graph"); } var edgeInfo = remainingEdges[edgeIndex]; var sourceIn = edgeInfo[1]; var targetIn = edgeInfo[2]; var partition1 = nodeMap[sourceIn]; var partition2 = nodeMap[targetIn]; var newEdges = remainingEdges; // re-use array // Delete all edges between partition1 and partition2 for (var i = newEdges.length - 1; i >= 0; i--) { var edge = newEdges[i]; var src = edge[1]; var tgt = edge[2]; if (nodeMap[src] === partition1 && nodeMap[tgt] === partition2 || nodeMap[src] === partition2 && nodeMap[tgt] === partition1) { newEdges.splice(i, 1); } } // All edges pointing to partition2 should now point to partition1 for (var _i = 0; _i < newEdges.length; _i++) { var _edge = newEdges[_i]; if (_edge[1] === partition2) { // Check source newEdges[_i] = _edge.slice(); // copy newEdges[_i][1] = partition1; } else if (_edge[2] === partition2) { // Check target newEdges[_i] = _edge.slice(); // copy newEdges[_i][2] = partition1; } } // Move all nodes from partition2 to partition1 for (var _i2 = 0; _i2 < nodeMap.length; _i2++) { if (nodeMap[_i2] === partition2) { nodeMap[_i2] = partition1; } } return newEdges; }; // Contracts a graph until we reach a certain number of meta nodes var contractUntil = function contractUntil(metaNodeMap, remainingEdges, size, sizeLimit) { while (size > sizeLimit) { // Choose an edge randomly var edgeIndex = Math.floor(Math.random() * remainingEdges.length); // Collapse graph based on edge remainingEdges = collapse(edgeIndex, metaNodeMap, remainingEdges); size--; } return remainingEdges; }; var elesfn$p = { // Computes the minimum cut of an undirected graph // Returns the correct answer with high probability kargerStein: function kargerStein() { var _this = this; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; edges.unmergeBy(function (edge) { return edge.isLoop(); }); var numNodes = nodes.length; var numEdges = edges.length; var numIter = Math.ceil(Math.pow(Math.log(numNodes) / Math.LN2, 2)); var stopSize = Math.floor(numNodes / sqrt2); if (numNodes < 2) { error('At least 2 nodes are required for Karger-Stein algorithm'); return undefined; } // Now store edge destination as indexes // Format for each edge (edge index, source node index, target node index) var edgeIndexes = []; for (var i = 0; i < numEdges; i++) { var e = edges[i]; edgeIndexes.push([i, nodes.indexOf(e.source()), nodes.indexOf(e.target())]); } // We will store the best cut found here var minCutSize = Infinity; var minCutEdgeIndexes = []; var minCutNodeMap = new Array(numNodes); // Initial meta node partition var metaNodeMap = new Array(numNodes); var metaNodeMap2 = new Array(numNodes); var copyNodesMap = function copyNodesMap(from, to) { for (var _i3 = 0; _i3 < numNodes; _i3++) { to[_i3] = from[_i3]; } }; // Main loop for (var iter = 0; iter <= numIter; iter++) { // Reset meta node partition for (var _i4 = 0; _i4 < numNodes; _i4++) { metaNodeMap[_i4] = _i4; } // Contract until stop point (stopSize nodes) var edgesState = contractUntil(metaNodeMap, edgeIndexes.slice(), numNodes, stopSize); var edgesState2 = edgesState.slice(); // copy // Create a copy of the colapsed nodes state copyNodesMap(metaNodeMap, metaNodeMap2); // Run 2 iterations starting in the stop state var res1 = contractUntil(metaNodeMap, edgesState, stopSize, 2); var res2 = contractUntil(metaNodeMap2, edgesState2, stopSize, 2); // Is any of the 2 results the best cut so far? if (res1.length <= res2.length && res1.length < minCutSize) { minCutSize = res1.length; minCutEdgeIndexes = res1; copyNodesMap(metaNodeMap, minCutNodeMap); } else if (res2.length <= res1.length && res2.length < minCutSize) { minCutSize = res2.length; minCutEdgeIndexes = res2; copyNodesMap(metaNodeMap2, minCutNodeMap); } } // end of main loop // Construct result var cut = this.spawn(minCutEdgeIndexes.map(function (e) { return edges[e[0]]; })); var partition1 = this.spawn(); var partition2 = this.spawn(); // traverse metaNodeMap for best cut var witnessNodePartition = minCutNodeMap[0]; for (var _i5 = 0; _i5 < minCutNodeMap.length; _i5++) { var partitionId = minCutNodeMap[_i5]; var node = nodes[_i5]; if (partitionId === witnessNodePartition) { partition1.merge(node); } else { partition2.merge(node); } } // construct components corresponding to each disjoint subset of nodes var constructComponent = function constructComponent(subset) { var component = _this.spawn(); subset.forEach(function (node) { component.merge(node); node.connectedEdges().forEach(function (edge) { // ensure edge is within calling collection and edge is not in cut if (_this.contains(edge) && !cut.contains(edge)) { component.merge(edge); } }); }); return component; }; var components = [constructComponent(partition1), constructComponent(partition2)]; var ret = { cut: cut, components: components, // n.b. partitions are included to be compatible with the old api spec // (could be removed in a future major version) partition1: partition1, partition2: partition2 }; return ret; } }; // elesfn var copyPosition = function copyPosition(p) { return { x: p.x, y: p.y }; }; var modelToRenderedPosition = function modelToRenderedPosition(p, zoom, pan) { return { x: p.x * zoom + pan.x, y: p.y * zoom + pan.y }; }; var renderedToModelPosition = function renderedToModelPosition(p, zoom, pan) { return { x: (p.x - pan.x) / zoom, y: (p.y - pan.y) / zoom }; }; var array2point = function array2point(arr) { return { x: arr[0], y: arr[1] }; }; var min = function min(arr) { var begin = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; var end = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : arr.length; var min = Infinity; for (var i = begin; i < end; i++) { var val = arr[i]; if (isFinite(val)) { min = Math.min(val, min); } } return min; }; var max = function max(arr) { var begin = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; var end = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : arr.length; var max = -Infinity; for (var i = begin; i < end; i++) { var val = arr[i]; if (isFinite(val)) { max = Math.max(val, max); } } return max; }; var mean = function mean(arr) { var begin = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; var end = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : arr.length; var total = 0; var n = 0; for (var i = begin; i < end; i++) { var val = arr[i]; if (isFinite(val)) { total += val; n++; } } return total / n; }; var median = function median(arr) { var begin = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; var end = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : arr.length; var copy = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true; var sort = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true; var includeHoles = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : true; if (copy) { arr = arr.slice(begin, end); } else { if (end < arr.length) { arr.splice(end, arr.length - end); } if (begin > 0) { arr.splice(0, begin); } } // all non finite (e.g. Infinity, NaN) elements must be -Infinity so they go to the start var off = 0; // offset from non-finite values for (var i = arr.length - 1; i >= 0; i--) { var v = arr[i]; if (includeHoles) { if (!isFinite(v)) { arr[i] = -Infinity; off++; } } else { // just remove it if we don't want to consider holes arr.splice(i, 1); } } if (sort) { arr.sort(function (a, b) { return a - b; }); // requires copy = true if you don't want to change the orig } var len = arr.length; var mid = Math.floor(len / 2); if (len % 2 !== 0) { return arr[mid + 1 + off]; } else { return (arr[mid - 1 + off] + arr[mid + off]) / 2; } }; var deg2rad = function deg2rad(deg) { return Math.PI * deg / 180; }; var getAngleFromDisp = function getAngleFromDisp(dispX, dispY) { return Math.atan2(dispY, dispX) - Math.PI / 2; }; var log2 = Math.log2 || function (n) { return Math.log(n) / Math.log(2); }; var signum = function signum(x) { if (x > 0) { return 1; } else if (x < 0) { return -1; } else { return 0; } }; var dist = function dist(p1, p2) { return Math.sqrt(sqdist(p1, p2)); }; var sqdist = function sqdist(p1, p2) { var dx = p2.x - p1.x; var dy = p2.y - p1.y; return dx * dx + dy * dy; }; var inPlaceSumNormalize = function inPlaceSumNormalize(v) { var length = v.length; // First, get sum of all elements var total = 0; for (var i = 0; i < length; i++) { total += v[i]; } // Now, divide each by the sum of all elements for (var _i = 0; _i < length; _i++) { v[_i] = v[_i] / total; } return v; }; // from http://en.wikipedia.org/wiki/Bézier_curve#Quadratic_curves var qbezierAt = function qbezierAt(p0, p1, p2, t) { return (1 - t) * (1 - t) * p0 + 2 * (1 - t) * t * p1 + t * t * p2; }; var qbezierPtAt = function qbezierPtAt(p0, p1, p2, t) { return { x: qbezierAt(p0.x, p1.x, p2.x, t), y: qbezierAt(p0.y, p1.y, p2.y, t) }; }; var lineAt = function lineAt(p0, p1, t, d) { var vec = { x: p1.x - p0.x, y: p1.y - p0.y }; var vecDist = dist(p0, p1); var normVec = { x: vec.x / vecDist, y: vec.y / vecDist }; t = t == null ? 0 : t; d = d != null ? d : t * vecDist; return { x: p0.x + normVec.x * d, y: p0.y + normVec.y * d }; }; var bound = function bound(min, val, max) { return Math.max(min, Math.min(max, val)); }; // makes a full bb (x1, y1, x2, y2, w, h) from implicit params var makeBoundingBox = function makeBoundingBox(bb) { if (bb == null) { return { x1: Infinity, y1: Infinity, x2: -Infinity, y2: -Infinity, w: 0, h: 0 }; } else if (bb.x1 != null && bb.y1 != null) { if (bb.x2 != null && bb.y2 != null && bb.x2 >= bb.x1 && bb.y2 >= bb.y1) { return { x1: bb.x1, y1: bb.y1, x2: bb.x2, y2: bb.y2, w: bb.x2 - bb.x1, h: bb.y2 - bb.y1 }; } else if (bb.w != null && bb.h != null && bb.w >= 0 && bb.h >= 0) { return { x1: bb.x1, y1: bb.y1, x2: bb.x1 + bb.w, y2: bb.y1 + bb.h, w: bb.w, h: bb.h }; } } }; var copyBoundingBox = function copyBoundingBox(bb) { return { x1: bb.x1, x2: bb.x2, w: bb.w, y1: bb.y1, y2: bb.y2, h: bb.h }; }; var clearBoundingBox = function clearBoundingBox(bb) { bb.x1 = Infinity; bb.y1 = Infinity; bb.x2 = -Infinity; bb.y2 = -Infinity; bb.w = 0; bb.h = 0; }; var shiftBoundingBox = function shiftBoundingBox(bb, dx, dy) { return { x1: bb.x1 + dx, x2: bb.x2 + dx, y1: bb.y1 + dy, y2: bb.y2 + dy, w: bb.w, h: bb.h }; }; var updateBoundingBox = function updateBoundingBox(bb1, bb2) { // update bb1 with bb2 bounds bb1.x1 = Math.min(bb1.x1, bb2.x1); bb1.x2 = Math.max(bb1.x2, bb2.x2); bb1.w = bb1.x2 - bb1.x1; bb1.y1 = Math.min(bb1.y1, bb2.y1); bb1.y2 = Math.max(bb1.y2, bb2.y2); bb1.h = bb1.y2 - bb1.y1; }; var expandBoundingBoxByPoint = function expandBoundingBoxByPoint(bb, x, y) { bb.x1 = Math.min(bb.x1, x); bb.x2 = Math.max(bb.x2, x); bb.w = bb.x2 - bb.x1; bb.y1 = Math.min(bb.y1, y); bb.y2 = Math.max(bb.y2, y); bb.h = bb.y2 - bb.y1; }; var expandBoundingBox = function expandBoundingBox(bb) { var padding = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; bb.x1 -= padding; bb.x2 += padding; bb.y1 -= padding; bb.y2 += padding; bb.w = bb.x2 - bb.x1; bb.h = bb.y2 - bb.y1; return bb; }; var expandBoundingBoxSides = function expandBoundingBoxSides(bb) { var padding = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [0]; var top, right, bottom, left; if (padding.length === 1) { top = right = bottom = left = padding[0]; } else if (padding.length === 2) { top = bottom = padding[0]; left = right = padding[1]; } else if (padding.length === 4) { var _padding = _slicedToArray(padding, 4); top = _padding[0]; right = _padding[1]; bottom = _padding[2]; left = _padding[3]; } bb.x1 -= left; bb.x2 += right; bb.y1 -= top; bb.y2 += bottom; bb.w = bb.x2 - bb.x1; bb.h = bb.y2 - bb.y1; return bb; }; // assign the values of bb2 into bb1 var assignBoundingBox = function assignBoundingBox(bb1, bb2) { bb1.x1 = bb2.x1; bb1.y1 = bb2.y1; bb1.x2 = bb2.x2; bb1.y2 = bb2.y2; bb1.w = bb1.x2 - bb1.x1; bb1.h = bb1.y2 - bb1.y1; }; var boundingBoxesIntersect = function boundingBoxesIntersect(bb1, bb2) { // case: one bb to right of other if (bb1.x1 > bb2.x2) { return false; } if (bb2.x1 > bb1.x2) { return false; } // case: one bb to left of other if (bb1.x2 < bb2.x1) { return false; } if (bb2.x2 < bb1.x1) { return false; } // case: one bb above other if (bb1.y2 < bb2.y1) { return false; } if (bb2.y2 < bb1.y1) { return false; } // case: one bb below other if (bb1.y1 > bb2.y2) { return false; } if (bb2.y1 > bb1.y2) { return false; } // otherwise, must have some overlap return true; }; var inBoundingBox = function inBoundingBox(bb, x, y) { return bb.x1 <= x && x <= bb.x2 && bb.y1 <= y && y <= bb.y2; }; var pointInBoundingBox = function pointInBoundingBox(bb, pt) { return inBoundingBox(bb, pt.x, pt.y); }; var boundingBoxInBoundingBox = function boundingBoxInBoundingBox(bb1, bb2) { return inBoundingBox(bb1, bb2.x1, bb2.y1) && inBoundingBox(bb1, bb2.x2, bb2.y2); }; var roundRectangleIntersectLine = function roundRectangleIntersectLine(x, y, nodeX, nodeY, width, height, padding) { var radius = arguments.length > 7 && arguments[7] !== undefined ? arguments[7] : 'auto'; var cornerRadius = radius === 'auto' ? getRoundRectangleRadius(width, height) : radius; var halfWidth = width / 2; var halfHeight = height / 2; cornerRadius = Math.min(cornerRadius, halfWidth, halfHeight); var doWidth = cornerRadius !== halfWidth, doHeight = cornerRadius !== halfHeight; // Check intersections with straight line segments var straightLineIntersections; // Top segment, left to right if (doWidth) { var topStartX = nodeX - halfWidth + cornerRadius - padding; var topStartY = nodeY - halfHeight - padding; var topEndX = nodeX + halfWidth - cornerRadius + padding; var topEndY = topStartY; straightLineIntersections = finiteLinesIntersect(x, y, nodeX, nodeY, topStartX, topStartY, topEndX, topEndY, false); if (straightLineIntersections.length > 0) { return straightLineIntersections; } } // Right segment, top to bottom if (doHeight) { var rightStartX = nodeX + halfWidth + padding; var rightStartY = nodeY - halfHeight + cornerRadius - padding; var rightEndX = rightStartX; var rightEndY = nodeY + halfHeight - cornerRadius + padding; straightLineIntersections = finiteLinesIntersect(x, y, nodeX, nodeY, rightStartX, rightStartY, rightEndX, rightEndY, false); if (straightLineIntersections.length > 0) { return straightLineIntersections; } } // Bottom segment, left to right if (doWidth) { var bottomStartX = nodeX - halfWidth + cornerRadius - padding; var bottomStartY = nodeY + halfHeight + padding; var bottomEndX = nodeX + halfWidth - cornerRadius + padding; var bottomEndY = bottomStartY; straightLineIntersections = finiteLinesIntersect(x, y, nodeX, nodeY, bottomStartX, bottomStartY, bottomEndX, bottomEndY, false); if (straightLineIntersections.length > 0) { return straightLineIntersections; } } // Left segment, top to bottom if (doHeight) { var leftStartX = nodeX - halfWidth - padding; var leftStartY = nodeY - halfHeight + cornerRadius - padding; var leftEndX = leftStartX; var leftEndY = nodeY + halfHeight - cornerRadius + padding; straightLineIntersections = finiteLinesIntersect(x, y, nodeX, nodeY, leftStartX, leftStartY, leftEndX, leftEndY, false); if (straightLineIntersections.length > 0) { return straightLineIntersections; } } // Check intersections with arc segments var arcIntersections; // Top Left { var topLeftCenterX = nodeX - halfWidth + cornerRadius; var topLeftCenterY = nodeY - halfHeight + cornerRadius; arcIntersections = intersectLineCircle(x, y, nodeX, nodeY, topLeftCenterX, topLeftCenterY, cornerRadius + padding); // Ensure the intersection is on the desired quarter of the circle if (arcIntersections.length > 0 && arcIntersections[0] <= topLeftCenterX && arcIntersections[1] <= topLeftCenterY) { return [arcIntersections[0], arcIntersections[1]]; } } // Top Right { var topRightCenterX = nodeX + halfWidth - cornerRadius; var topRightCenterY = nodeY - halfHeight + cornerRadius; arcIntersections = intersectLineCircle(x, y, nodeX, nodeY, topRightCenterX, topRightCenterY, cornerRadius + padding); // Ensure the intersection is on the desired quarter of the circle if (arcIntersections.length > 0 && arcIntersections[0] >= topRightCenterX && arcIntersections[1] <= topRightCenterY) { return [arcIntersections[0], arcIntersections[1]]; } } // Bottom Right { var bottomRightCenterX = nodeX + halfWidth - cornerRadius; var bottomRightCenterY = nodeY + halfHeight - cornerRadius; arcIntersections = intersectLineCircle(x, y, nodeX, nodeY, bottomRightCenterX, bottomRightCenterY, cornerRadius + padding); // Ensure the intersection is on the desired quarter of the circle if (arcIntersections.length > 0 && arcIntersections[0] >= bottomRightCenterX && arcIntersections[1] >= bottomRightCenterY) { return [arcIntersections[0], arcIntersections[1]]; } } // Bottom Left { var bottomLeftCenterX = nodeX - halfWidth + cornerRadius; var bottomLeftCenterY = nodeY + halfHeight - cornerRadius; arcIntersections = intersectLineCircle(x, y, nodeX, nodeY, bottomLeftCenterX, bottomLeftCenterY, cornerRadius + padding); // Ensure the intersection is on the desired quarter of the circle if (arcIntersections.length > 0 && arcIntersections[0] <= bottomLeftCenterX && arcIntersections[1] >= bottomLeftCenterY) { return [arcIntersections[0], arcIntersections[1]]; } } return []; // if nothing }; var inLineVicinity = function inLineVicinity(x, y, lx1, ly1, lx2, ly2, tolerance) { var t = tolerance; var x1 = Math.min(lx1, lx2); var x2 = Math.max(lx1, lx2); var y1 = Math.min(ly1, ly2); var y2 = Math.max(ly1, ly2); return x1 - t <= x && x <= x2 + t && y1 - t <= y && y <= y2 + t; }; var inBezierVicinity = function inBezierVicinity(x, y, x1, y1, x2, y2, x3, y3, tolerance) { var bb = { x1: Math.min(x1, x3, x2) - tolerance, x2: Math.max(x1, x3, x2) + tolerance, y1: Math.min(y1, y3, y2) - tolerance, y2: Math.max(y1, y3, y2) + tolerance }; // if outside the rough bounding box for the bezier, then it can't be a hit if (x < bb.x1 || x > bb.x2 || y < bb.y1 || y > bb.y2) { // console.log('bezier out of rough bb') return false; } else { // console.log('do more expensive check'); return true; } }; var solveQuadratic = function solveQuadratic(a, b, c, val) { c -= val; var r = b * b - 4 * a * c; if (r < 0) { return []; } var sqrtR = Math.sqrt(r); var denom = 2 * a; var root1 = (-b + sqrtR) / denom; var root2 = (-b - sqrtR) / denom; return [root1, root2]; }; var solveCubic = function solveCubic(a, b, c, d, result) { // Solves a cubic function, returns root in form [r1, i1, r2, i2, r3, i3], where // r is the real component, i is the imaginary component // An implementation of the Cardano method from the year 1545 // http://en.wikipedia.org/wiki/Cubic_function#The_nature_of_the_roots var epsilon = 0.00001; // avoid division by zero while keeping the overall expression close in value if (a === 0) { a = epsilon; } b /= a; c /= a; d /= a; var discriminant, q, r, dum1, s, t, term1, r13; q = (3.0 * c - b * b) / 9.0; r = -(27.0 * d) + b * (9.0 * c - 2.0 * (b * b)); r /= 54.0; discriminant = q * q * q + r * r; result[1] = 0; term1 = b / 3.0; if (discriminant > 0) { s = r + Math.sqrt(discriminant); s = s < 0 ? -Math.pow(-s, 1.0 / 3.0) : Math.pow(s, 1.0 / 3.0); t = r - Math.sqrt(discriminant); t = t < 0 ? -Math.pow(-t, 1.0 / 3.0) : Math.pow(t, 1.0 / 3.0); result[0] = -term1 + s + t; term1 += (s + t) / 2.0; result[4] = result[2] = -term1; term1 = Math.sqrt(3.0) * (-t + s) / 2; result[3] = term1; result[5] = -term1; return; } result[5] = result[3] = 0; if (discriminant === 0) { r13 = r < 0 ? -Math.pow(-r, 1.0 / 3.0) : Math.pow(r, 1.0 / 3.0); result[0] = -term1 + 2.0 * r13; result[4] = result[2] = -(r13 + term1); return; } q = -q; dum1 = q * q * q; dum1 = Math.acos(r / Math.sqrt(dum1)); r13 = 2.0 * Math.sqrt(q); result[0] = -term1 + r13 * Math.cos(dum1 / 3.0); result[2] = -term1 + r13 * Math.cos((dum1 + 2.0 * Math.PI) / 3.0); result[4] = -term1 + r13 * Math.cos((dum1 + 4.0 * Math.PI) / 3.0); return; }; var sqdistToQuadraticBezier = function sqdistToQuadraticBezier(x, y, x1, y1, x2, y2, x3, y3) { // Find minimum distance by using the minimum of the distance // function between the given point and the curve // This gives the coefficients of the resulting cubic equation // whose roots tell us where a possible minimum is // (Coefficients are divided by 4) var a = 1.0 * x1 * x1 - 4 * x1 * x2 + 2 * x1 * x3 + 4 * x2 * x2 - 4 * x2 * x3 + x3 * x3 + y1 * y1 - 4 * y1 * y2 + 2 * y1 * y3 + 4 * y2 * y2 - 4 * y2 * y3 + y3 * y3; var b = 1.0 * 9 * x1 * x2 - 3 * x1 * x1 - 3 * x1 * x3 - 6 * x2 * x2 + 3 * x2 * x3 + 9 * y1 * y2 - 3 * y1 * y1 - 3 * y1 * y3 - 6 * y2 * y2 + 3 * y2 * y3; var c = 1.0 * 3 * x1 * x1 - 6 * x1 * x2 + x1 * x3 - x1 * x + 2 * x2 * x2 + 2 * x2 * x - x3 * x + 3 * y1 * y1 - 6 * y1 * y2 + y1 * y3 - y1 * y + 2 * y2 * y2 + 2 * y2 * y - y3 * y; var d = 1.0 * x1 * x2 - x1 * x1 + x1 * x - x2 * x + y1 * y2 - y1 * y1 + y1 * y - y2 * y; // debug("coefficients: " + a / a + ", " + b / a + ", " + c / a + ", " + d / a); var roots = []; // Use the cubic solving algorithm solveCubic(a, b, c, d, roots); var zeroThreshold = 0.0000001; var params = []; for (var index = 0; index < 6; index += 2) { if (Math.abs(roots[index + 1]) < zeroThreshold && roots[index] >= 0 && roots[index] <= 1.0) { params.push(roots[index]); } } params.push(1.0); params.push(0.0); var minDistanceSquared = -1; var curX, curY, distSquared; for (var i = 0; i < params.length; i++) { curX = Math.pow(1.0 - params[i], 2.0) * x1 + 2.0 * (1 - params[i]) * params[i] * x2 + params[i] * params[i] * x3; curY = Math.pow(1 - params[i], 2.0) * y1 + 2 * (1.0 - params[i]) * params[i] * y2 + params[i] * params[i] * y3; distSquared = Math.pow(curX - x, 2) + Math.pow(curY - y, 2); // debug('distance for param ' + params[i] + ": " + Math.sqrt(distSquared)); if (minDistanceSquared >= 0) { if (distSquared < minDistanceSquared) { minDistanceSquared = distSquared; } } else { minDistanceSquared = distSquared; } } return minDistanceSquared; }; var sqdistToFiniteLine = function sqdistToFiniteLine(x, y, x1, y1, x2, y2) { var offset = [x - x1, y - y1]; var line = [x2 - x1, y2 - y1]; var lineSq = line[0] * line[0] + line[1] * line[1]; var hypSq = offset[0] * offset[0] + offset[1] * offset[1]; var dotProduct = offset[0] * line[0] + offset[1] * line[1]; var adjSq = dotProduct * dotProduct / lineSq; if (dotProduct < 0) { return hypSq; } if (adjSq > lineSq) { return (x - x2) * (x - x2) + (y - y2) * (y - y2); } return hypSq - adjSq; }; var pointInsidePolygonPoints = function pointInsidePolygonPoints(x, y, points) { var x1, y1, x2, y2; var y3; // Intersect with vertical line through (x, y) var up = 0; // let down = 0; for (var i = 0; i < points.length / 2; i++) { x1 = points[i * 2]; y1 = points[i * 2 + 1]; if (i + 1 < points.length / 2) { x2 = points[(i + 1) * 2]; y2 = points[(i + 1) * 2 + 1]; } else { x2 = points[(i + 1 - points.length / 2) * 2]; y2 = points[(i + 1 - points.length / 2) * 2 + 1]; } if (x1 == x && x2 == x) ; else if (x1 >= x && x >= x2 || x1 <= x && x <= x2) { y3 = (x - x1) / (x2 - x1) * (y2 - y1) + y1; if (y3 > y) { up++; } // if( y3 < y ){ // down++; // } } else { continue; } } if (up % 2 === 0) { return false; } else { return true; } }; var pointInsidePolygon = function pointInsidePolygon(x, y, basePoints, centerX, centerY, width, height, direction, padding) { var transformedPoints = new Array(basePoints.length); // Gives negative angle var angle; if (direction[0] != null) { angle = Math.atan(direction[1] / direction[0]); if (direction[0] < 0) { angle = angle + Math.PI / 2; } else { angle = -angle - Math.PI / 2; } } else { angle = direction; } var cos = Math.cos(-angle); var sin = Math.sin(-angle); // console.log("base: " + basePoints); for (var i = 0; i < transformedPoints.length / 2; i++) { transformedPoints[i * 2] = width / 2 * (basePoints[i * 2] * cos - basePoints[i * 2 + 1] * sin); transformedPoints[i * 2 + 1] = height / 2 * (basePoints[i * 2 + 1] * cos + basePoints[i * 2] * sin); transformedPoints[i * 2] += centerX; transformedPoints[i * 2 + 1] += centerY; } var points; if (padding > 0) { var expandedLineSet = expandPolygon(transformedPoints, -padding); points = joinLines(expandedLineSet); } else { points = transformedPoints; } return pointInsidePolygonPoints(x, y, points); }; var pointInsideRoundPolygon = function pointInsideRoundPolygon(x, y, basePoints, centerX, centerY, width, height, corners) { var cutPolygonPoints = new Array(basePoints.length * 2); for (var i = 0; i < corners.length; i++) { var corner = corners[i]; cutPolygonPoints[i * 4 + 0] = corner.startX; cutPolygonPoints[i * 4 + 1] = corner.startY; cutPolygonPoints[i * 4 + 2] = corner.stopX; cutPolygonPoints[i * 4 + 3] = corner.stopY; var squaredDistance = Math.pow(corner.cx - x, 2) + Math.pow(corner.cy - y, 2); if (squaredDistance <= Math.pow(corner.radius, 2)) { return true; } } return pointInsidePolygonPoints(x, y, cutPolygonPoints); }; var joinLines = function joinLines(lineSet) { var vertices = new Array(lineSet.length / 2); var currentLineStartX, currentLineStartY, currentLineEndX, currentLineEndY; var nextLineStartX, nextLineStartY, nextLineEndX, nextLineEndY; for (var i = 0; i < lineSet.length / 4; i++) { currentLineStartX = lineSet[i * 4]; currentLineStartY = lineSet[i * 4 + 1]; currentLineEndX = lineSet[i * 4 + 2]; currentLineEndY = lineSet[i * 4 + 3]; if (i < lineSet.length / 4 - 1) { nextLineStartX = lineSet[(i + 1) * 4]; nextLineStartY = lineSet[(i + 1) * 4 + 1]; nextLineEndX = lineSet[(i + 1) * 4 + 2]; nextLineEndY = lineSet[(i + 1) * 4 + 3]; } else { nextLineStartX = lineSet[0]; nextLineStartY = lineSet[1]; nextLineEndX = lineSet[2]; nextLineEndY = lineSet[3]; } var intersection = finiteLinesIntersect(currentLineStartX, currentLineStartY, currentLineEndX, currentLineEndY, nextLineStartX, nextLineStartY, nextLineEndX, nextLineEndY, true); vertices[i * 2] = intersection[0]; vertices[i * 2 + 1] = intersection[1]; } return vertices; }; var expandPolygon = function expandPolygon(points, pad) { var expandedLineSet = new Array(points.length * 2); var currentPointX, currentPointY, nextPointX, nextPointY; for (var i = 0; i < points.length / 2; i++) { currentPointX = points[i * 2]; currentPointY = points[i * 2 + 1]; if (i < points.length / 2 - 1) { nextPointX = points[(i + 1) * 2]; nextPointY = points[(i + 1) * 2 + 1]; } else { nextPointX = points[0]; nextPointY = points[1]; } // Current line: [currentPointX, currentPointY] to [nextPointX, nextPointY] // Assume CCW polygon winding var offsetX = nextPointY - currentPointY; var offsetY = -(nextPointX - currentPointX); // Normalize var offsetLength = Math.sqrt(offsetX * offsetX + offsetY * offsetY); var normalizedOffsetX = offsetX / offsetLength; var normalizedOffsetY = offsetY / offsetLength; expandedLineSet[i * 4] = currentPointX + normalizedOffsetX * pad; expandedLineSet[i * 4 + 1] = currentPointY + normalizedOffsetY * pad; expandedLineSet[i * 4 + 2] = nextPointX + normalizedOffsetX * pad; expandedLineSet[i * 4 + 3] = nextPointY + normalizedOffsetY * pad; } return expandedLineSet; }; var intersectLineEllipse = function intersectLineEllipse(x, y, centerX, centerY, ellipseWradius, ellipseHradius) { var dispX = centerX - x; var dispY = centerY - y; dispX /= ellipseWradius; dispY /= ellipseHradius; var len = Math.sqrt(dispX * dispX + dispY * dispY); var newLength = len - 1; if (newLength < 0) { return []; } var lenProportion = newLength / len; return [(centerX - x) * lenProportion + x, (centerY - y) * lenProportion + y]; }; var checkInEllipse = function checkInEllipse(x, y, width, height, centerX, centerY, padding) { x -= centerX; y -= centerY; x /= width / 2 + padding; y /= height / 2 + padding; return x * x + y * y <= 1; }; // Returns intersections of increasing distance from line's start point var intersectLineCircle = function intersectLineCircle(x1, y1, x2, y2, centerX, centerY, radius) { // Calculate d, direction vector of line var d = [x2 - x1, y2 - y1]; // Direction vector of line var f = [x1 - centerX, y1 - centerY]; var a = d[0] * d[0] + d[1] * d[1]; var b = 2 * (f[0] * d[0] + f[1] * d[1]); var c = f[0] * f[0] + f[1] * f[1] - radius * radius; var discriminant = b * b - 4 * a * c; if (discriminant < 0) { return []; } var t1 = (-b + Math.sqrt(discriminant)) / (2 * a); var t2 = (-b - Math.sqrt(discriminant)) / (2 * a); var tMin = Math.min(t1, t2); var tMax = Math.max(t1, t2); var inRangeParams = []; if (tMin >= 0 && tMin <= 1) { inRangeParams.push(tMin); } if (tMax >= 0 && tMax <= 1) { inRangeParams.push(tMax); } if (inRangeParams.length === 0) { return []; } var nearIntersectionX = inRangeParams[0] * d[0] + x1; var nearIntersectionY = inRangeParams[0] * d[1] + y1; if (inRangeParams.length > 1) { if (inRangeParams[0] == inRangeParams[1]) { return [nearIntersectionX, nearIntersectionY]; } else { var farIntersectionX = inRangeParams[1] * d[0] + x1; var farIntersectionY = inRangeParams[1] * d[1] + y1; return [nearIntersectionX, nearIntersectionY, farIntersectionX, farIntersectionY]; } } else { return [nearIntersectionX, nearIntersectionY]; } }; var midOfThree = function midOfThree(a, b, c) { if (b <= a && a <= c || c <= a && a <= b) { return a; } else if (a <= b && b <= c || c <= b && b <= a) { return b; } else { return c; } }; // (x1,y1)=>(x2,y2) intersect with (x3,y3)=>(x4,y4) var finiteLinesIntersect = function finiteLinesIntersect(x1, y1, x2, y2, x3, y3, x4, y4, infiniteLines) { var dx13 = x1 - x3; var dx21 = x2 - x1; var dx43 = x4 - x3; var dy13 = y1 - y3; var dy21 = y2 - y1; var dy43 = y4 - y3; var ua_t = dx43 * dy13 - dy43 * dx13; var ub_t = dx21 * dy13 - dy21 * dx13; var u_b = dy43 * dx21 - dx43 * dy21; if (u_b !== 0) { var ua = ua_t / u_b; var ub = ub_t / u_b; var flptThreshold = 0.001; var _min = 0 - flptThreshold; var _max = 1 + flptThreshold; if (_min <= ua && ua <= _max && _min <= ub && ub <= _max) { return [x1 + ua * dx21, y1 + ua * dy21]; } else { if (!infiniteLines) { return []; } else { return [x1 + ua * dx21, y1 + ua * dy21]; } } } else { if (ua_t === 0 || ub_t === 0) { // Parallel, coincident lines. Check if overlap // Check endpoint of second line if (midOfThree(x1, x2, x4) === x4) { return [x4, y4]; } // Check start point of second line if (midOfThree(x1, x2, x3) === x3) { return [x3, y3]; } // Endpoint of first line if (midOfThree(x3, x4, x2) === x2) { return [x2, y2]; } return []; } else { // Parallel, non-coincident return []; } } }; // math.polygonIntersectLine( x, y, basePoints, centerX, centerY, width, height, padding ) // intersect a node polygon (pts transformed) // // math.polygonIntersectLine( x, y, basePoints, centerX, centerY ) // intersect the points (no transform) var polygonIntersectLine = function polygonIntersectLine(x, y, basePoints, centerX, centerY, width, height, padding) { var intersections = []; var intersection; var transformedPoints = new Array(basePoints.length); var doTransform = true; if (width == null) { doTransform = false; } var points; if (doTransform) { for (var i = 0; i < transformedPoints.length / 2; i++) { transformedPoints[i * 2] = basePoints[i * 2] * width + centerX; transformedPoints[i * 2 + 1] = basePoints[i * 2 + 1] * height + centerY; } if (padding > 0) { var expandedLineSet = expandPolygon(transformedPoints, -padding); points = joinLines(expandedLineSet); } else { points = transformedPoints; } } else { points = basePoints; } var currentX, currentY, nextX, nextY; for (var _i2 = 0; _i2 < points.length / 2; _i2++) { currentX = points[_i2 * 2]; currentY = points[_i2 * 2 + 1]; if (_i2 < points.length / 2 - 1) { nextX = points[(_i2 + 1) * 2]; nextY = points[(_i2 + 1) * 2 + 1]; } else { nextX = points[0]; nextY = points[1]; } intersection = finiteLinesIntersect(x, y, centerX, centerY, currentX, currentY, nextX, nextY); if (intersection.length !== 0) { intersections.push(intersection[0], intersection[1]); } } return intersections; }; var roundPolygonIntersectLine = function roundPolygonIntersectLine(x, y, basePoints, centerX, centerY, width, height, padding, corners) { var intersections = []; var intersection; var lines = new Array(basePoints.length * 2); corners.forEach(function (corner, i) { if (i === 0) { lines[lines.length - 2] = corner.startX; lines[lines.length - 1] = corner.startY; } else { lines[i * 4 - 2] = corner.startX; lines[i * 4 - 1] = corner.startY; } lines[i * 4] = corner.stopX; lines[i * 4 + 1] = corner.stopY; intersection = intersectLineCircle(x, y, centerX, centerY, corner.cx, corner.cy, corner.radius); if (intersection.length !== 0) { intersections.push(intersection[0], intersection[1]); } }); for (var i = 0; i < lines.length / 4; i++) { intersection = finiteLinesIntersect(x, y, centerX, centerY, lines[i * 4], lines[i * 4 + 1], lines[i * 4 + 2], lines[i * 4 + 3], false); if (intersection.length !== 0) { intersections.push(intersection[0], intersection[1]); } } if (intersections.length > 2) { var lowestIntersection = [intersections[0], intersections[1]]; var lowestSquaredDistance = Math.pow(lowestIntersection[0] - x, 2) + Math.pow(lowestIntersection[1] - y, 2); for (var _i3 = 1; _i3 < intersections.length / 2; _i3++) { var squaredDistance = Math.pow(intersections[_i3 * 2] - x, 2) + Math.pow(intersections[_i3 * 2 + 1] - y, 2); if (squaredDistance <= lowestSquaredDistance) { lowestIntersection[0] = intersections[_i3 * 2]; lowestIntersection[1] = intersections[_i3 * 2 + 1]; lowestSquaredDistance = squaredDistance; } } return lowestIntersection; } return intersections; }; var shortenIntersection = function shortenIntersection(intersection, offset, amount) { var disp = [intersection[0] - offset[0], intersection[1] - offset[1]]; var length = Math.sqrt(disp[0] * disp[0] + disp[1] * disp[1]); var lenRatio = (length - amount) / length; if (lenRatio < 0) { lenRatio = 0.00001; } return [offset[0] + lenRatio * disp[0], offset[1] + lenRatio * disp[1]]; }; var generateUnitNgonPointsFitToSquare = function generateUnitNgonPointsFitToSquare(sides, rotationRadians) { var points = generateUnitNgonPoints(sides, rotationRadians); points = fitPolygonToSquare(points); return points; }; var fitPolygonToSquare = function fitPolygonToSquare(points) { var x, y; var sides = points.length / 2; var minX = Infinity, minY = Infinity, maxX = -Infinity, maxY = -Infinity; for (var i = 0; i < sides; i++) { x = points[2 * i]; y = points[2 * i + 1]; minX = Math.min(minX, x); maxX = Math.max(maxX, x); minY = Math.min(minY, y); maxY = Math.max(maxY, y); } // stretch factors var sx = 2 / (maxX - minX); var sy = 2 / (maxY - minY); for (var _i4 = 0; _i4 < sides; _i4++) { x = points[2 * _i4] = points[2 * _i4] * sx; y = points[2 * _i4 + 1] = points[2 * _i4 + 1] * sy; minX = Math.min(minX, x); maxX = Math.max(maxX, x); minY = Math.min(minY, y); maxY = Math.max(maxY, y); } if (minY < -1) { for (var _i5 = 0; _i5 < sides; _i5++) { y = points[2 * _i5 + 1] = points[2 * _i5 + 1] + (-1 - minY); } } return points; }; var generateUnitNgonPoints = function generateUnitNgonPoints(sides, rotationRadians) { var increment = 1.0 / sides * 2 * Math.PI; var startAngle = sides % 2 === 0 ? Math.PI / 2.0 + increment / 2.0 : Math.PI / 2.0; startAngle += rotationRadians; var points = new Array(sides * 2); var currentAngle; for (var i = 0; i < sides; i++) { currentAngle = i * increment + startAngle; points[2 * i] = Math.cos(currentAngle); // x points[2 * i + 1] = Math.sin(-currentAngle); // y } return points; }; // Set the default radius, unless half of width or height is smaller than default var getRoundRectangleRadius = function getRoundRectangleRadius(width, height) { return Math.min(width / 4, height / 4, 8); }; // Set the default radius var getRoundPolygonRadius = function getRoundPolygonRadius(width, height) { return Math.min(width / 10, height / 10, 8); }; var getCutRectangleCornerLength = function getCutRectangleCornerLength() { return 8; }; var bezierPtsToQuadCoeff = function bezierPtsToQuadCoeff(p0, p1, p2) { return [p0 - 2 * p1 + p2, 2 * (p1 - p0), p0]; }; // get curve width, height, and control point position offsets as a percentage of node height / width var getBarrelCurveConstants = function getBarrelCurveConstants(width, height) { return { heightOffset: Math.min(15, 0.05 * height), widthOffset: Math.min(100, 0.25 * width), ctrlPtOffsetPct: 0.05 }; }; var pageRankDefaults = defaults$g({ dampingFactor: 0.8, precision: 0.000001, iterations: 200, weight: function weight(edge) { return 1; } }); var elesfn$o = { pageRank: function pageRank(options) { var _pageRankDefaults = pageRankDefaults(options), dampingFactor = _pageRankDefaults.dampingFactor, precision = _pageRankDefaults.precision, iterations = _pageRankDefaults.iterations, weight = _pageRankDefaults.weight; var cy = this._private.cy; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; var numNodes = nodes.length; var numNodesSqd = numNodes * numNodes; var numEdges = edges.length; // Construct transposed adjacency matrix // First lets have a zeroed matrix of the right size // We'll also keep track of the sum of each column var matrix = new Array(numNodesSqd); var columnSum = new Array(numNodes); var additionalProb = (1 - dampingFactor) / numNodes; // Create null matrix for (var i = 0; i < numNodes; i++) { for (var j = 0; j < numNodes; j++) { var n = i * numNodes + j; matrix[n] = 0; } columnSum[i] = 0; } // Now, process edges for (var _i = 0; _i < numEdges; _i++) { var edge = edges[_i]; var srcId = edge.data('source'); var tgtId = edge.data('target'); // Don't include loops in the matrix if (srcId === tgtId) { continue; } var s = nodes.indexOfId(srcId); var t = nodes.indexOfId(tgtId); var w = weight(edge); var _n = t * numNodes + s; // Update matrix matrix[_n] += w; // Update column sum columnSum[s] += w; } // Add additional probability based on damping factor // Also, take into account columns that have sum = 0 var p = 1.0 / numNodes + additionalProb; // Shorthand // Traverse matrix, column by column for (var _j = 0; _j < numNodes; _j++) { if (columnSum[_j] === 0) { // No 'links' out from node jth, assume equal probability for each possible node for (var _i2 = 0; _i2 < numNodes; _i2++) { var _n2 = _i2 * numNodes + _j; matrix[_n2] = p; } } else { // Node jth has outgoing link, compute normalized probabilities for (var _i3 = 0; _i3 < numNodes; _i3++) { var _n3 = _i3 * numNodes + _j; matrix[_n3] = matrix[_n3] / columnSum[_j] + additionalProb; } } } // Compute dominant eigenvector using power method var eigenvector = new Array(numNodes); var temp = new Array(numNodes); var previous; // Start with a vector of all 1's // Also, initialize a null vector which will be used as shorthand for (var _i4 = 0; _i4 < numNodes; _i4++) { eigenvector[_i4] = 1; } for (var iter = 0; iter < iterations; iter++) { // Temp array with all 0's for (var _i5 = 0; _i5 < numNodes; _i5++) { temp[_i5] = 0; } // Multiply matrix with previous result for (var _i6 = 0; _i6 < numNodes; _i6++) { for (var _j2 = 0; _j2 < numNodes; _j2++) { var _n4 = _i6 * numNodes + _j2; temp[_i6] += matrix[_n4] * eigenvector[_j2]; } } inPlaceSumNormalize(temp); previous = eigenvector; eigenvector = temp; temp = previous; var diff = 0; // Compute difference (squared module) of both vectors for (var _i7 = 0; _i7 < numNodes; _i7++) { var delta = previous[_i7] - eigenvector[_i7]; diff += delta * delta; } // If difference is less than the desired threshold, stop iterating if (diff < precision) { break; } } // Construct result var res = { rank: function rank(node) { node = cy.collection(node)[0]; return eigenvector[nodes.indexOf(node)]; } }; return res; } // pageRank }; // elesfn var defaults$f = defaults$g({ root: null, weight: function weight(edge) { return 1; }, directed: false, alpha: 0 }); var elesfn$n = { degreeCentralityNormalized: function degreeCentralityNormalized(options) { options = defaults$f(options); var cy = this.cy(); var nodes = this.nodes(); var numNodes = nodes.length; if (!options.directed) { var degrees = {}; var maxDegree = 0; for (var i = 0; i < numNodes; i++) { var node = nodes[i]; // add current node to the current options object and call degreeCentrality options.root = node; var currDegree = this.degreeCentrality(options); if (maxDegree < currDegree.degree) { maxDegree = currDegree.degree; } degrees[node.id()] = currDegree.degree; } return { degree: function degree(node) { if (maxDegree === 0) { return 0; } if (string(node)) { // from is a selector string node = cy.filter(node); } return degrees[node.id()] / maxDegree; } }; } else { var indegrees = {}; var outdegrees = {}; var maxIndegree = 0; var maxOutdegree = 0; for (var _i = 0; _i < numNodes; _i++) { var _node = nodes[_i]; var id = _node.id(); // add current node to the current options object and call degreeCentrality options.root = _node; var _currDegree = this.degreeCentrality(options); if (maxIndegree < _currDegree.indegree) maxIndegree = _currDegree.indegree; if (maxOutdegree < _currDegree.outdegree) maxOutdegree = _currDegree.outdegree; indegrees[id] = _currDegree.indegree; outdegrees[id] = _currDegree.outdegree; } return { indegree: function indegree(node) { if (maxIndegree == 0) { return 0; } if (string(node)) { // from is a selector string node = cy.filter(node); } return indegrees[node.id()] / maxIndegree; }, outdegree: function outdegree(node) { if (maxOutdegree === 0) { return 0; } if (string(node)) { // from is a selector string node = cy.filter(node); } return outdegrees[node.id()] / maxOutdegree; } }; } }, // degreeCentralityNormalized // Implemented from the algorithm in Opsahl's paper // "Node centrality in weighted networks: Generalizing degree and shortest paths" // check the heading 2 "Degree" degreeCentrality: function degreeCentrality(options) { options = defaults$f(options); var cy = this.cy(); var callingEles = this; var _options = options, root = _options.root, weight = _options.weight, directed = _options.directed, alpha = _options.alpha; root = cy.collection(root)[0]; if (!directed) { var connEdges = root.connectedEdges().intersection(callingEles); var k = connEdges.length; var s = 0; // Now, sum edge weights for (var i = 0; i < connEdges.length; i++) { s += weight(connEdges[i]); } return { degree: Math.pow(k, 1 - alpha) * Math.pow(s, alpha) }; } else { var edges = root.connectedEdges(); var incoming = edges.filter(function (edge) { return edge.target().same(root) && callingEles.has(edge); }); var outgoing = edges.filter(function (edge) { return edge.source().same(root) && callingEles.has(edge); }); var k_in = incoming.length; var k_out = outgoing.length; var s_in = 0; var s_out = 0; // Now, sum incoming edge weights for (var _i2 = 0; _i2 < incoming.length; _i2++) { s_in += weight(incoming[_i2]); } // Now, sum outgoing edge weights for (var _i3 = 0; _i3 < outgoing.length; _i3++) { s_out += weight(outgoing[_i3]); } return { indegree: Math.pow(k_in, 1 - alpha) * Math.pow(s_in, alpha), outdegree: Math.pow(k_out, 1 - alpha) * Math.pow(s_out, alpha) }; } } // degreeCentrality }; // elesfn // nice, short mathematical alias elesfn$n.dc = elesfn$n.degreeCentrality; elesfn$n.dcn = elesfn$n.degreeCentralityNormalised = elesfn$n.degreeCentralityNormalized; var defaults$e = defaults$g({ harmonic: true, weight: function weight() { return 1; }, directed: false, root: null }); var elesfn$m = { closenessCentralityNormalized: function closenessCentralityNormalized(options) { var _defaults = defaults$e(options), harmonic = _defaults.harmonic, weight = _defaults.weight, directed = _defaults.directed; var cy = this.cy(); var closenesses = {}; var maxCloseness = 0; var nodes = this.nodes(); var fw = this.floydWarshall({ weight: weight, directed: directed }); // Compute closeness for every node and find the maximum closeness for (var i = 0; i < nodes.length; i++) { var currCloseness = 0; var node_i = nodes[i]; for (var j = 0; j < nodes.length; j++) { if (i !== j) { var d = fw.distance(node_i, nodes[j]); if (harmonic) { currCloseness += 1 / d; } else { currCloseness += d; } } } if (!harmonic) { currCloseness = 1 / currCloseness; } if (maxCloseness < currCloseness) { maxCloseness = currCloseness; } closenesses[node_i.id()] = currCloseness; } return { closeness: function closeness(node) { if (maxCloseness == 0) { return 0; } if (string(node)) { // from is a selector string node = cy.filter(node)[0].id(); } else { // from is a node node = node.id(); } return closenesses[node] / maxCloseness; } }; }, // Implemented from pseudocode from wikipedia closenessCentrality: function closenessCentrality(options) { var _defaults2 = defaults$e(options), root = _defaults2.root, weight = _defaults2.weight, directed = _defaults2.directed, harmonic = _defaults2.harmonic; root = this.filter(root)[0]; // we need distance from this node to every other node var dijkstra = this.dijkstra({ root: root, weight: weight, directed: directed }); var totalDistance = 0; var nodes = this.nodes(); for (var i = 0; i < nodes.length; i++) { var n = nodes[i]; if (!n.same(root)) { var d = dijkstra.distanceTo(n); if (harmonic) { totalDistance += 1 / d; } else { totalDistance += d; } } } return harmonic ? totalDistance : 1 / totalDistance; } // closenessCentrality }; // elesfn // nice, short mathematical alias elesfn$m.cc = elesfn$m.closenessCentrality; elesfn$m.ccn = elesfn$m.closenessCentralityNormalised = elesfn$m.closenessCentralityNormalized; var defaults$d = defaults$g({ weight: null, directed: false }); var elesfn$l = { // Implemented from the algorithm in the paper "On Variants of Shortest-Path Betweenness Centrality and their Generic Computation" by Ulrik Brandes betweennessCentrality: function betweennessCentrality(options) { var _defaults = defaults$d(options), directed = _defaults.directed, weight = _defaults.weight; var weighted = weight != null; var cy = this.cy(); // starting var V = this.nodes(); var A = {}; var _C = {}; var max = 0; var C = { set: function set(key, val) { _C[key] = val; if (val > max) { max = val; } }, get: function get(key) { return _C[key]; } }; // A contains the neighborhoods of every node for (var i = 0; i < V.length; i++) { var v = V[i]; var vid = v.id(); if (directed) { A[vid] = v.outgoers().nodes(); // get outgoers of every node } else { A[vid] = v.openNeighborhood().nodes(); // get neighbors of every node } C.set(vid, 0); } var _loop = function _loop(s) { var sid = V[s].id(); var S = []; // stack var P = {}; var g = {}; var d = {}; var Q = new heap(function (a, b) { return d[a] - d[b]; }); // queue // init dictionaries for (var _i = 0; _i < V.length; _i++) { var _vid = V[_i].id(); P[_vid] = []; g[_vid] = 0; d[_vid] = Infinity; } g[sid] = 1; // sigma d[sid] = 0; // distance to s Q.push(sid); while (!Q.empty()) { var _v = Q.pop(); S.push(_v); if (weighted) { for (var j = 0; j < A[_v].length; j++) { var w = A[_v][j]; var vEle = cy.getElementById(_v); var edge = void 0; if (vEle.edgesTo(w).length > 0) { edge = vEle.edgesTo(w)[0]; } else { edge = w.edgesTo(vEle)[0]; } var edgeWeight = weight(edge); w = w.id(); if (d[w] > d[_v] + edgeWeight) { d[w] = d[_v] + edgeWeight; if (Q.nodes.indexOf(w) < 0) { //if w is not in Q Q.push(w); } else { // update position if w is in Q Q.updateItem(w); } g[w] = 0; P[w] = []; } if (d[w] == d[_v] + edgeWeight) { g[w] = g[w] + g[_v]; P[w].push(_v); } } } else { for (var _j = 0; _j < A[_v].length; _j++) { var _w = A[_v][_j].id(); if (d[_w] == Infinity) { Q.push(_w); d[_w] = d[_v] + 1; } if (d[_w] == d[_v] + 1) { g[_w] = g[_w] + g[_v]; P[_w].push(_v); } } } } var e = {}; for (var _i2 = 0; _i2 < V.length; _i2++) { e[V[_i2].id()] = 0; } while (S.length > 0) { var _w2 = S.pop(); for (var _j2 = 0; _j2 < P[_w2].length; _j2++) { var _v2 = P[_w2][_j2]; e[_v2] = e[_v2] + g[_v2] / g[_w2] * (1 + e[_w2]); } if (_w2 != V[s].id()) { C.set(_w2, C.get(_w2) + e[_w2]); } } }; for (var s = 0; s < V.length; s++) { _loop(s); } var ret = { betweenness: function betweenness(node) { var id = cy.collection(node).id(); return C.get(id); }, betweennessNormalized: function betweennessNormalized(node) { if (max == 0) { return 0; } var id = cy.collection(node).id(); return C.get(id) / max; } }; // alias ret.betweennessNormalised = ret.betweennessNormalized; return ret; } // betweennessCentrality }; // elesfn // nice, short mathematical alias elesfn$l.bc = elesfn$l.betweennessCentrality; // Implemented by Zoe Xi @zoexi for GSOC 2016 /* eslint-disable no-unused-vars */ var defaults$c = defaults$g({ expandFactor: 2, // affects time of computation and cluster granularity to some extent: M * M inflateFactor: 2, // affects cluster granularity (the greater the value, the more clusters): M(i,j) / E(j) multFactor: 1, // optional self loops for each node. Use a neutral value to improve cluster computations. maxIterations: 20, // maximum number of iterations of the MCL algorithm in a single run attributes: [ // attributes/features used to group nodes, ie. similarity values between nodes function (edge) { return 1; }] }); /* eslint-enable */ var setOptions$3 = function setOptions(options) { return defaults$c(options); }; /* eslint-enable */ var getSimilarity$1 = function getSimilarity(edge, attributes) { var total = 0; for (var i = 0; i < attributes.length; i++) { total += attributes[i](edge); } return total; }; var addLoops = function addLoops(M, n, val) { for (var i = 0; i < n; i++) { M[i * n + i] = val; } }; var normalize = function normalize(M, n) { var sum; for (var col = 0; col < n; col++) { sum = 0; for (var row = 0; row < n; row++) { sum += M[row * n + col]; } for (var _row = 0; _row < n; _row++) { M[_row * n + col] = M[_row * n + col] / sum; } } }; // TODO: blocked matrix multiplication? var mmult = function mmult(A, B, n) { var C = new Array(n * n); for (var i = 0; i < n; i++) { for (var j = 0; j < n; j++) { C[i * n + j] = 0; } for (var k = 0; k < n; k++) { for (var _j = 0; _j < n; _j++) { C[i * n + _j] += A[i * n + k] * B[k * n + _j]; } } } return C; }; var expand = function expand(M, n, expandFactor /** power **/) { var _M = M.slice(0); for (var p = 1; p < expandFactor; p++) { M = mmult(M, _M, n); } return M; }; var inflate = function inflate(M, n, inflateFactor /** r **/) { var _M = new Array(n * n); // M(i,j) ^ inflatePower for (var i = 0; i < n * n; i++) { _M[i] = Math.pow(M[i], inflateFactor); } normalize(_M, n); return _M; }; var hasConverged = function hasConverged(M, _M, n2, roundFactor) { // Check that both matrices have the same elements (i,j) for (var i = 0; i < n2; i++) { var v1 = Math.round(M[i] * Math.pow(10, roundFactor)) / Math.pow(10, roundFactor); // truncate to 'roundFactor' decimal places var v2 = Math.round(_M[i] * Math.pow(10, roundFactor)) / Math.pow(10, roundFactor); if (v1 !== v2) { return false; } } return true; }; var assign$2 = function assign(M, n, nodes, cy) { var clusters = []; for (var i = 0; i < n; i++) { var cluster = []; for (var j = 0; j < n; j++) { // Row-wise attractors and elements that they attract belong in same cluster if (Math.round(M[i * n + j] * 1000) / 1000 > 0) { cluster.push(nodes[j]); } } if (cluster.length !== 0) { clusters.push(cy.collection(cluster)); } } return clusters; }; var isDuplicate = function isDuplicate(c1, c2) { for (var i = 0; i < c1.length; i++) { if (!c2[i] || c1[i].id() !== c2[i].id()) { return false; } } return true; }; var removeDuplicates = function removeDuplicates(clusters) { for (var i = 0; i < clusters.length; i++) { for (var j = 0; j < clusters.length; j++) { if (i != j && isDuplicate(clusters[i], clusters[j])) { clusters.splice(j, 1); } } } return clusters; }; var markovClustering = function markovClustering(options) { var nodes = this.nodes(); var edges = this.edges(); var cy = this.cy(); // Set parameters of algorithm: var opts = setOptions$3(options); // Map each node to its position in node array var id2position = {}; for (var i = 0; i < nodes.length; i++) { id2position[nodes[i].id()] = i; } // Generate stochastic matrix M from input graph G (should be symmetric/undirected) var n = nodes.length, n2 = n * n; var M = new Array(n2), _M; for (var _i = 0; _i < n2; _i++) { M[_i] = 0; } for (var e = 0; e < edges.length; e++) { var edge = edges[e]; var _i2 = id2position[edge.source().id()]; var j = id2position[edge.target().id()]; var sim = getSimilarity$1(edge, opts.attributes); M[_i2 * n + j] += sim; // G should be symmetric and undirected M[j * n + _i2] += sim; } // Begin Markov cluster algorithm // Step 1: Add self loops to each node, ie. add multFactor to matrix diagonal addLoops(M, n, opts.multFactor); // Step 2: M = normalize( M ); normalize(M, n); var isStillMoving = true; var iterations = 0; while (isStillMoving && iterations < opts.maxIterations) { isStillMoving = false; // Step 3: _M = expand(M, n, opts.expandFactor); // Step 4: M = inflate(_M, n, opts.inflateFactor); // Step 5: check to see if ~steady state has been reached if (!hasConverged(M, _M, n2, 4)) { isStillMoving = true; } iterations++; } // Build clusters from matrix var clusters = assign$2(M, n, nodes, cy); // Remove duplicate clusters due to symmetry of graph and M matrix clusters = removeDuplicates(clusters); return clusters; }; var markovClustering$1 = { markovClustering: markovClustering, mcl: markovClustering }; // Common distance metrics for clustering algorithms var identity = function identity(x) { return x; }; var absDiff = function absDiff(p, q) { return Math.abs(q - p); }; var addAbsDiff = function addAbsDiff(total, p, q) { return total + absDiff(p, q); }; var addSquaredDiff = function addSquaredDiff(total, p, q) { return total + Math.pow(q - p, 2); }; var sqrt = function sqrt(x) { return Math.sqrt(x); }; var maxAbsDiff = function maxAbsDiff(currentMax, p, q) { return Math.max(currentMax, absDiff(p, q)); }; var getDistance = function getDistance(length, getP, getQ, init, visit) { var post = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : identity; var ret = init; var p, q; for (var dim = 0; dim < length; dim++) { p = getP(dim); q = getQ(dim); ret = visit(ret, p, q); } return post(ret); }; var distances = { euclidean: function euclidean(length, getP, getQ) { if (length >= 2) { return getDistance(length, getP, getQ, 0, addSquaredDiff, sqrt); } else { // for single attr case, more efficient to avoid sqrt return getDistance(length, getP, getQ, 0, addAbsDiff); } }, squaredEuclidean: function squaredEuclidean(length, getP, getQ) { return getDistance(length, getP, getQ, 0, addSquaredDiff); }, manhattan: function manhattan(length, getP, getQ) { return getDistance(length, getP, getQ, 0, addAbsDiff); }, max: function max(length, getP, getQ) { return getDistance(length, getP, getQ, -Infinity, maxAbsDiff); } }; // in case the user accidentally doesn't use camel case distances['squared-euclidean'] = distances['squaredEuclidean']; distances['squaredeuclidean'] = distances['squaredEuclidean']; function clusteringDistance (method, length, getP, getQ, nodeP, nodeQ) { var impl; if (fn$6(method)) { impl = method; } else { impl = distances[method] || distances.euclidean; } if (length === 0 && fn$6(method)) { return impl(nodeP, nodeQ); } else { return impl(length, getP, getQ, nodeP, nodeQ); } } var defaults$b = defaults$g({ k: 2, m: 2, sensitivityThreshold: 0.0001, distance: 'euclidean', maxIterations: 10, attributes: [], testMode: false, testCentroids: null }); var setOptions$2 = function setOptions(options) { return defaults$b(options); }; var getDist = function getDist(type, node, centroid, attributes, mode) { var noNodeP = mode !== 'kMedoids'; var getP = noNodeP ? function (i) { return centroid[i]; } : function (i) { return attributes[i](centroid); }; var getQ = function getQ(i) { return attributes[i](node); }; var nodeP = centroid; var nodeQ = node; return clusteringDistance(type, attributes.length, getP, getQ, nodeP, nodeQ); }; var randomCentroids = function randomCentroids(nodes, k, attributes) { var ndim = attributes.length; var min = new Array(ndim); var max = new Array(ndim); var centroids = new Array(k); var centroid = null; // Find min, max values for each attribute dimension for (var i = 0; i < ndim; i++) { min[i] = nodes.min(attributes[i]).value; max[i] = nodes.max(attributes[i]).value; } // Build k centroids, each represented as an n-dim feature vector for (var c = 0; c < k; c++) { centroid = []; for (var _i = 0; _i < ndim; _i++) { centroid[_i] = Math.random() * (max[_i] - min[_i]) + min[_i]; // random initial value } centroids[c] = centroid; } return centroids; }; var classify = function classify(node, centroids, distance, attributes, type) { var min = Infinity; var index = 0; for (var i = 0; i < centroids.length; i++) { var dist = getDist(distance, node, centroids[i], attributes, type); if (dist < min) { min = dist; index = i; } } return index; }; var buildCluster = function buildCluster(centroid, nodes, assignment) { var cluster = []; var node = null; for (var n = 0; n < nodes.length; n++) { node = nodes[n]; if (assignment[node.id()] === centroid) { //console.log("Node " + node.id() + " is associated with medoid #: " + m); cluster.push(node); } } return cluster; }; var haveValuesConverged = function haveValuesConverged(v1, v2, sensitivityThreshold) { return Math.abs(v2 - v1) <= sensitivityThreshold; }; var haveMatricesConverged = function haveMatricesConverged(v1, v2, sensitivityThreshold) { for (var i = 0; i < v1.length; i++) { for (var j = 0; j < v1[i].length; j++) { var diff = Math.abs(v1[i][j] - v2[i][j]); if (diff > sensitivityThreshold) { return false; } } } return true; }; var seenBefore = function seenBefore(node, medoids, n) { for (var i = 0; i < n; i++) { if (node === medoids[i]) return true; } return false; }; var randomMedoids = function randomMedoids(nodes, k) { var medoids = new Array(k); // For small data sets, the probability of medoid conflict is greater, // so we need to check to see if we've already seen or chose this node before. if (nodes.length < 50) { // Randomly select k medoids from the n nodes for (var i = 0; i < k; i++) { var node = nodes[Math.floor(Math.random() * nodes.length)]; // If we've already chosen this node to be a medoid, don't choose it again (for small data sets). // Instead choose a different random node. while (seenBefore(node, medoids, i)) { node = nodes[Math.floor(Math.random() * nodes.length)]; } medoids[i] = node; } } else { // Relatively large data set, so pretty safe to not check and just select random nodes for (var _i2 = 0; _i2 < k; _i2++) { medoids[_i2] = nodes[Math.floor(Math.random() * nodes.length)]; } } return medoids; }; var findCost = function findCost(potentialNewMedoid, cluster, attributes) { var cost = 0; for (var n = 0; n < cluster.length; n++) { cost += getDist('manhattan', cluster[n], potentialNewMedoid, attributes, 'kMedoids'); } return cost; }; var kMeans = function kMeans(options) { var cy = this.cy(); var nodes = this.nodes(); var node = null; // Set parameters of algorithm: # of clusters, distance metric, etc. var opts = setOptions$2(options); // Begin k-means algorithm var clusters = new Array(opts.k); var assignment = {}; var centroids; // Step 1: Initialize centroid positions if (opts.testMode) { if (typeof opts.testCentroids === 'number') { // TODO: implement a seeded random number generator. opts.testCentroids; centroids = randomCentroids(nodes, opts.k, opts.attributes); } else if (_typeof(opts.testCentroids) === 'object') { centroids = opts.testCentroids; } else { centroids = randomCentroids(nodes, opts.k, opts.attributes); } } else { centroids = randomCentroids(nodes, opts.k, opts.attributes); } var isStillMoving = true; var iterations = 0; while (isStillMoving && iterations < opts.maxIterations) { // Step 2: Assign nodes to the nearest centroid for (var n = 0; n < nodes.length; n++) { node = nodes[n]; // Determine which cluster this node belongs to: node id => cluster # assignment[node.id()] = classify(node, centroids, opts.distance, opts.attributes, 'kMeans'); } // Step 3: For each of the k clusters, update its centroid isStillMoving = false; for (var c = 0; c < opts.k; c++) { // Get all nodes that belong to this cluster var cluster = buildCluster(c, nodes, assignment); if (cluster.length === 0) { // If cluster is empty, break out early & move to next cluster continue; } // Update centroids by calculating avg of all nodes within the cluster. var ndim = opts.attributes.length; var centroid = centroids[c]; // [ dim_1, dim_2, dim_3, ... , dim_n ] var newCentroid = new Array(ndim); var sum = new Array(ndim); for (var d = 0; d < ndim; d++) { sum[d] = 0.0; for (var i = 0; i < cluster.length; i++) { node = cluster[i]; sum[d] += opts.attributes[d](node); } newCentroid[d] = sum[d] / cluster.length; // Check to see if algorithm has converged, i.e. when centroids no longer change if (!haveValuesConverged(newCentroid[d], centroid[d], opts.sensitivityThreshold)) { isStillMoving = true; } } centroids[c] = newCentroid; clusters[c] = cy.collection(cluster); } iterations++; } return clusters; }; var kMedoids = function kMedoids(options) { var cy = this.cy(); var nodes = this.nodes(); var node = null; var opts = setOptions$2(options); // Begin k-medoids algorithm var clusters = new Array(opts.k); var medoids; var assignment = {}; var curCost; var minCosts = new Array(opts.k); // minimum cost configuration for each cluster // Step 1: Initialize k medoids if (opts.testMode) { if (typeof opts.testCentroids === 'number') ; else if (_typeof(opts.testCentroids) === 'object') { medoids = opts.testCentroids; } else { medoids = randomMedoids(nodes, opts.k); } } else { medoids = randomMedoids(nodes, opts.k); } var isStillMoving = true; var iterations = 0; while (isStillMoving && iterations < opts.maxIterations) { // Step 2: Assign nodes to the nearest medoid for (var n = 0; n < nodes.length; n++) { node = nodes[n]; // Determine which cluster this node belongs to: node id => cluster # assignment[node.id()] = classify(node, medoids, opts.distance, opts.attributes, 'kMedoids'); } isStillMoving = false; // Step 3: For each medoid m, and for each node associated with mediod m, // select the node with the lowest configuration cost as new medoid. for (var m = 0; m < medoids.length; m++) { // Get all nodes that belong to this medoid var cluster = buildCluster(m, nodes, assignment); if (cluster.length === 0) { // If cluster is empty, break out early & move to next cluster continue; } minCosts[m] = findCost(medoids[m], cluster, opts.attributes); // original cost // Select different medoid if its configuration has the lowest cost for (var _n = 0; _n < cluster.length; _n++) { curCost = findCost(cluster[_n], cluster, opts.attributes); if (curCost < minCosts[m]) { minCosts[m] = curCost; medoids[m] = cluster[_n]; isStillMoving = true; } } clusters[m] = cy.collection(cluster); } iterations++; } return clusters; }; var updateCentroids = function updateCentroids(centroids, nodes, U, weight, opts) { var numerator, denominator; for (var n = 0; n < nodes.length; n++) { for (var c = 0; c < centroids.length; c++) { weight[n][c] = Math.pow(U[n][c], opts.m); } } for (var _c = 0; _c < centroids.length; _c++) { for (var dim = 0; dim < opts.attributes.length; dim++) { numerator = 0; denominator = 0; for (var _n2 = 0; _n2 < nodes.length; _n2++) { numerator += weight[_n2][_c] * opts.attributes[dim](nodes[_n2]); denominator += weight[_n2][_c]; } centroids[_c][dim] = numerator / denominator; } } }; var updateMembership = function updateMembership(U, _U, centroids, nodes, opts) { // Save previous step for (var i = 0; i < U.length; i++) { _U[i] = U[i].slice(); } var sum, numerator, denominator; var pow = 2 / (opts.m - 1); for (var c = 0; c < centroids.length; c++) { for (var n = 0; n < nodes.length; n++) { sum = 0; for (var k = 0; k < centroids.length; k++) { // against all other centroids numerator = getDist(opts.distance, nodes[n], centroids[c], opts.attributes, 'cmeans'); denominator = getDist(opts.distance, nodes[n], centroids[k], opts.attributes, 'cmeans'); sum += Math.pow(numerator / denominator, pow); } U[n][c] = 1 / sum; } } }; var assign$1 = function assign(nodes, U, opts, cy) { var clusters = new Array(opts.k); for (var c = 0; c < clusters.length; c++) { clusters[c] = []; } var max; var index; for (var n = 0; n < U.length; n++) { // for each node (U is N x C matrix) max = -Infinity; index = -1; // Determine which cluster the node is most likely to belong in for (var _c2 = 0; _c2 < U[0].length; _c2++) { if (U[n][_c2] > max) { max = U[n][_c2]; index = _c2; } } clusters[index].push(nodes[n]); } // Turn every array into a collection of nodes for (var _c3 = 0; _c3 < clusters.length; _c3++) { clusters[_c3] = cy.collection(clusters[_c3]); } return clusters; }; var fuzzyCMeans = function fuzzyCMeans(options) { var cy = this.cy(); var nodes = this.nodes(); var opts = setOptions$2(options); // Begin fuzzy c-means algorithm var clusters; var centroids; var U; var _U; var weight; // Step 1: Initialize letiables. _U = new Array(nodes.length); for (var i = 0; i < nodes.length; i++) { // N x C matrix _U[i] = new Array(opts.k); } U = new Array(nodes.length); for (var _i3 = 0; _i3 < nodes.length; _i3++) { // N x C matrix U[_i3] = new Array(opts.k); } for (var _i4 = 0; _i4 < nodes.length; _i4++) { var total = 0; for (var j = 0; j < opts.k; j++) { U[_i4][j] = Math.random(); total += U[_i4][j]; } for (var _j = 0; _j < opts.k; _j++) { U[_i4][_j] = U[_i4][_j] / total; } } centroids = new Array(opts.k); for (var _i5 = 0; _i5 < opts.k; _i5++) { centroids[_i5] = new Array(opts.attributes.length); } weight = new Array(nodes.length); for (var _i6 = 0; _i6 < nodes.length; _i6++) { // N x C matrix weight[_i6] = new Array(opts.k); } // end init FCM var isStillMoving = true; var iterations = 0; while (isStillMoving && iterations < opts.maxIterations) { isStillMoving = false; // Step 2: Calculate the centroids for each step. updateCentroids(centroids, nodes, U, weight, opts); // Step 3: Update the partition matrix U. updateMembership(U, _U, centroids, nodes, opts); // Step 4: Check for convergence. if (!haveMatricesConverged(U, _U, opts.sensitivityThreshold)) { isStillMoving = true; } iterations++; } // Assign nodes to clusters with highest probability. clusters = assign$1(nodes, U, opts, cy); return { clusters: clusters, degreeOfMembership: U }; }; var kClustering = { kMeans: kMeans, kMedoids: kMedoids, fuzzyCMeans: fuzzyCMeans, fcm: fuzzyCMeans }; // Implemented by Zoe Xi @zoexi for GSOC 2016 var defaults$a = defaults$g({ distance: 'euclidean', // distance metric to compare nodes linkage: 'min', // linkage criterion : how to determine the distance between clusters of nodes mode: 'threshold', // mode:'threshold' => clusters must be threshold distance apart threshold: Infinity, // the distance threshold // mode:'dendrogram' => the nodes are organised as leaves in a tree (siblings are close), merging makes clusters addDendrogram: false, // whether to add the dendrogram to the graph for viz dendrogramDepth: 0, // depth at which dendrogram branches are merged into the returned clusters attributes: [] // array of attr functions }); var linkageAliases = { 'single': 'min', 'complete': 'max' }; var setOptions$1 = function setOptions(options) { var opts = defaults$a(options); var preferredAlias = linkageAliases[opts.linkage]; if (preferredAlias != null) { opts.linkage = preferredAlias; } return opts; }; var mergeClosest = function mergeClosest(clusters, index, dists, mins, opts) { // Find two closest clusters from cached mins var minKey = 0; var min = Infinity; var dist; var attrs = opts.attributes; var getDist = function getDist(n1, n2) { return clusteringDistance(opts.distance, attrs.length, function (i) { return attrs[i](n1); }, function (i) { return attrs[i](n2); }, n1, n2); }; for (var i = 0; i < clusters.length; i++) { var key = clusters[i].key; var _dist = dists[key][mins[key]]; if (_dist < min) { minKey = key; min = _dist; } } if (opts.mode === 'threshold' && min >= opts.threshold || opts.mode === 'dendrogram' && clusters.length === 1) { return false; } var c1 = index[minKey]; var c2 = index[mins[minKey]]; var merged; // Merge two closest clusters if (opts.mode === 'dendrogram') { merged = { left: c1, right: c2, key: c1.key }; } else { merged = { value: c1.value.concat(c2.value), key: c1.key }; } clusters[c1.index] = merged; clusters.splice(c2.index, 1); index[c1.key] = merged; // Update distances with new merged cluster for (var _i = 0; _i < clusters.length; _i++) { var cur = clusters[_i]; if (c1.key === cur.key) { dist = Infinity; } else if (opts.linkage === 'min') { dist = dists[c1.key][cur.key]; if (dists[c1.key][cur.key] > dists[c2.key][cur.key]) { dist = dists[c2.key][cur.key]; } } else if (opts.linkage === 'max') { dist = dists[c1.key][cur.key]; if (dists[c1.key][cur.key] < dists[c2.key][cur.key]) { dist = dists[c2.key][cur.key]; } } else if (opts.linkage === 'mean') { dist = (dists[c1.key][cur.key] * c1.size + dists[c2.key][cur.key] * c2.size) / (c1.size + c2.size); } else { if (opts.mode === 'dendrogram') dist = getDist(cur.value, c1.value);else dist = getDist(cur.value[0], c1.value[0]); } dists[c1.key][cur.key] = dists[cur.key][c1.key] = dist; // distance matrix is symmetric } // Update cached mins for (var _i2 = 0; _i2 < clusters.length; _i2++) { var key1 = clusters[_i2].key; if (mins[key1] === c1.key || mins[key1] === c2.key) { var _min = key1; for (var j = 0; j < clusters.length; j++) { var key2 = clusters[j].key; if (dists[key1][key2] < dists[key1][_min]) { _min = key2; } } mins[key1] = _min; } clusters[_i2].index = _i2; } // Clean up meta data used for clustering c1.key = c2.key = c1.index = c2.index = null; return true; }; var getAllChildren = function getAllChildren(root, arr, cy) { if (!root) return; if (root.value) { arr.push(root.value); } else { if (root.left) getAllChildren(root.left, arr); if (root.right) getAllChildren(root.right, arr); } }; var buildDendrogram = function buildDendrogram(root, cy) { if (!root) return ''; if (root.left && root.right) { var leftStr = buildDendrogram(root.left, cy); var rightStr = buildDendrogram(root.right, cy); var node = cy.add({ group: 'nodes', data: { id: leftStr + ',' + rightStr } }); cy.add({ group: 'edges', data: { source: leftStr, target: node.id() } }); cy.add({ group: 'edges', data: { source: rightStr, target: node.id() } }); return node.id(); } else if (root.value) { return root.value.id(); } }; var buildClustersFromTree = function buildClustersFromTree(root, k, cy) { if (!root) return []; var left = [], right = [], leaves = []; if (k === 0) { // don't cut tree, simply return all nodes as 1 single cluster if (root.left) getAllChildren(root.left, left); if (root.right) getAllChildren(root.right, right); leaves = left.concat(right); return [cy.collection(leaves)]; } else if (k === 1) { // cut at root if (root.value) { // leaf node return [cy.collection(root.value)]; } else { if (root.left) getAllChildren(root.left, left); if (root.right) getAllChildren(root.right, right); return [cy.collection(left), cy.collection(right)]; } } else { if (root.value) { return [cy.collection(root.value)]; } else { if (root.left) left = buildClustersFromTree(root.left, k - 1, cy); if (root.right) right = buildClustersFromTree(root.right, k - 1, cy); return left.concat(right); } } }; var hierarchicalClustering = function hierarchicalClustering(options) { var cy = this.cy(); var nodes = this.nodes(); // Set parameters of algorithm: linkage type, distance metric, etc. var opts = setOptions$1(options); var attrs = opts.attributes; var getDist = function getDist(n1, n2) { return clusteringDistance(opts.distance, attrs.length, function (i) { return attrs[i](n1); }, function (i) { return attrs[i](n2); }, n1, n2); }; // Begin hierarchical algorithm var clusters = []; var dists = []; // distances between each pair of clusters var mins = []; // closest cluster for each cluster var index = []; // hash of all clusters by key // In agglomerative (bottom-up) clustering, each node starts as its own cluster for (var n = 0; n < nodes.length; n++) { var cluster = { value: opts.mode === 'dendrogram' ? nodes[n] : [nodes[n]], key: n, index: n }; clusters[n] = cluster; index[n] = cluster; dists[n] = []; mins[n] = 0; } // Calculate the distance between each pair of clusters for (var i = 0; i < clusters.length; i++) { for (var j = 0; j <= i; j++) { var dist = void 0; if (opts.mode === 'dendrogram') { // modes store cluster values differently dist = i === j ? Infinity : getDist(clusters[i].value, clusters[j].value); } else { dist = i === j ? Infinity : getDist(clusters[i].value[0], clusters[j].value[0]); } dists[i][j] = dist; dists[j][i] = dist; if (dist < dists[i][mins[i]]) { mins[i] = j; // Cache mins: closest cluster to cluster i is cluster j } } } // Find the closest pair of clusters and merge them into a single cluster. // Update distances between new cluster and each of the old clusters, and loop until threshold reached. var merged = mergeClosest(clusters, index, dists, mins, opts); while (merged) { merged = mergeClosest(clusters, index, dists, mins, opts); } var retClusters; // Dendrogram mode builds the hierarchy and adds intermediary nodes + edges // in addition to returning the clusters. if (opts.mode === 'dendrogram') { retClusters = buildClustersFromTree(clusters[0], opts.dendrogramDepth, cy); if (opts.addDendrogram) buildDendrogram(clusters[0], cy); } else { // Regular mode simply returns the clusters retClusters = new Array(clusters.length); clusters.forEach(function (cluster, i) { // Clean up meta data used for clustering cluster.key = cluster.index = null; retClusters[i] = cy.collection(cluster.value); }); } return retClusters; }; var hierarchicalClustering$1 = { hierarchicalClustering: hierarchicalClustering, hca: hierarchicalClustering }; // Implemented by Zoe Xi @zoexi for GSOC 2016 var defaults$9 = defaults$g({ distance: 'euclidean', // distance metric to compare attributes between two nodes preference: 'median', // suitability of a data point to serve as an exemplar damping: 0.8, // damping factor between [0.5, 1) maxIterations: 1000, // max number of iterations to run minIterations: 100, // min number of iterations to run in order for clustering to stop attributes: [// functions to quantify the similarity between any two points // e.g. node => node.data('weight') ] }); var setOptions = function setOptions(options) { var dmp = options.damping; var pref = options.preference; if (!(0.5 <= dmp && dmp < 1)) { error("Damping must range on [0.5, 1). Got: ".concat(dmp)); } var validPrefs = ['median', 'mean', 'min', 'max']; if (!(validPrefs.some(function (v) { return v === pref; }) || number$1(pref))) { error("Preference must be one of [".concat(validPrefs.map(function (p) { return "'".concat(p, "'"); }).join(', '), "] or a number. Got: ").concat(pref)); } return defaults$9(options); }; var getSimilarity = function getSimilarity(type, n1, n2, attributes) { var attr = function attr(n, i) { return attributes[i](n); }; // nb negative because similarity should have an inverse relationship to distance return -clusteringDistance(type, attributes.length, function (i) { return attr(n1, i); }, function (i) { return attr(n2, i); }, n1, n2); }; var getPreference = function getPreference(S, preference) { // larger preference = greater # of clusters var p = null; if (preference === 'median') { p = median(S); } else if (preference === 'mean') { p = mean(S); } else if (preference === 'min') { p = min(S); } else if (preference === 'max') { p = max(S); } else { // Custom preference number, as set by user p = preference; } return p; }; var findExemplars = function findExemplars(n, R, A) { var indices = []; for (var i = 0; i < n; i++) { if (R[i * n + i] + A[i * n + i] > 0) { indices.push(i); } } return indices; }; var assignClusters = function assignClusters(n, S, exemplars) { var clusters = []; for (var i = 0; i < n; i++) { var index = -1; var max = -Infinity; for (var ei = 0; ei < exemplars.length; ei++) { var e = exemplars[ei]; if (S[i * n + e] > max) { index = e; max = S[i * n + e]; } } if (index > 0) { clusters.push(index); } } for (var _ei = 0; _ei < exemplars.length; _ei++) { clusters[exemplars[_ei]] = exemplars[_ei]; } return clusters; }; var assign = function assign(n, S, exemplars) { var clusters = assignClusters(n, S, exemplars); for (var ei = 0; ei < exemplars.length; ei++) { var ii = []; for (var c = 0; c < clusters.length; c++) { if (clusters[c] === exemplars[ei]) { ii.push(c); } } var maxI = -1; var maxSum = -Infinity; for (var i = 0; i < ii.length; i++) { var sum = 0; for (var j = 0; j < ii.length; j++) { sum += S[ii[j] * n + ii[i]]; } if (sum > maxSum) { maxI = i; maxSum = sum; } } exemplars[ei] = ii[maxI]; } clusters = assignClusters(n, S, exemplars); return clusters; }; var affinityPropagation = function affinityPropagation(options) { var cy = this.cy(); var nodes = this.nodes(); var opts = setOptions(options); // Map each node to its position in node array var id2position = {}; for (var i = 0; i < nodes.length; i++) { id2position[nodes[i].id()] = i; } // Begin affinity propagation algorithm var n; // number of data points var n2; // size of matrices var S; // similarity matrix (1D array) var p; // preference/suitability of a data point to serve as an exemplar var R; // responsibility matrix (1D array) var A; // availability matrix (1D array) n = nodes.length; n2 = n * n; // Initialize and build S similarity matrix S = new Array(n2); for (var _i = 0; _i < n2; _i++) { S[_i] = -Infinity; // for cases where two data points shouldn't be linked together } for (var _i2 = 0; _i2 < n; _i2++) { for (var j = 0; j < n; j++) { if (_i2 !== j) { S[_i2 * n + j] = getSimilarity(opts.distance, nodes[_i2], nodes[j], opts.attributes); } } } // Place preferences on the diagonal of S p = getPreference(S, opts.preference); for (var _i3 = 0; _i3 < n; _i3++) { S[_i3 * n + _i3] = p; } // Initialize R responsibility matrix R = new Array(n2); for (var _i4 = 0; _i4 < n2; _i4++) { R[_i4] = 0.0; } // Initialize A availability matrix A = new Array(n2); for (var _i5 = 0; _i5 < n2; _i5++) { A[_i5] = 0.0; } var old = new Array(n); var Rp = new Array(n); var se = new Array(n); for (var _i6 = 0; _i6 < n; _i6++) { old[_i6] = 0.0; Rp[_i6] = 0.0; se[_i6] = 0; } var e = new Array(n * opts.minIterations); for (var _i7 = 0; _i7 < e.length; _i7++) { e[_i7] = 0; } var iter; for (iter = 0; iter < opts.maxIterations; iter++) { // main algorithmic loop // Update R responsibility matrix for (var _i8 = 0; _i8 < n; _i8++) { var max = -Infinity, max2 = -Infinity, maxI = -1, AS = 0.0; for (var _j = 0; _j < n; _j++) { old[_j] = R[_i8 * n + _j]; AS = A[_i8 * n + _j] + S[_i8 * n + _j]; if (AS >= max) { max2 = max; max = AS; maxI = _j; } else if (AS > max2) { max2 = AS; } } for (var _j2 = 0; _j2 < n; _j2++) { R[_i8 * n + _j2] = (1 - opts.damping) * (S[_i8 * n + _j2] - max) + opts.damping * old[_j2]; } R[_i8 * n + maxI] = (1 - opts.damping) * (S[_i8 * n + maxI] - max2) + opts.damping * old[maxI]; } // Update A availability matrix for (var _i9 = 0; _i9 < n; _i9++) { var sum = 0; for (var _j3 = 0; _j3 < n; _j3++) { old[_j3] = A[_j3 * n + _i9]; Rp[_j3] = Math.max(0, R[_j3 * n + _i9]); sum += Rp[_j3]; } sum -= Rp[_i9]; Rp[_i9] = R[_i9 * n + _i9]; sum += Rp[_i9]; for (var _j4 = 0; _j4 < n; _j4++) { A[_j4 * n + _i9] = (1 - opts.damping) * Math.min(0, sum - Rp[_j4]) + opts.damping * old[_j4]; } A[_i9 * n + _i9] = (1 - opts.damping) * (sum - Rp[_i9]) + opts.damping * old[_i9]; } // Check for convergence var K = 0; for (var _i10 = 0; _i10 < n; _i10++) { var E = A[_i10 * n + _i10] + R[_i10 * n + _i10] > 0 ? 1 : 0; e[iter % opts.minIterations * n + _i10] = E; K += E; } if (K > 0 && (iter >= opts.minIterations - 1 || iter == opts.maxIterations - 1)) { var _sum = 0; for (var _i11 = 0; _i11 < n; _i11++) { se[_i11] = 0; for (var _j5 = 0; _j5 < opts.minIterations; _j5++) { se[_i11] += e[_j5 * n + _i11]; } if (se[_i11] === 0 || se[_i11] === opts.minIterations) { _sum++; } } if (_sum === n) { // then we have convergence break; } } } // Identify exemplars (cluster centers) var exemplarsIndices = findExemplars(n, R, A); // Assign nodes to clusters var clusterIndices = assign(n, S, exemplarsIndices); var clusters = {}; for (var c = 0; c < exemplarsIndices.length; c++) { clusters[exemplarsIndices[c]] = []; } for (var _i12 = 0; _i12 < nodes.length; _i12++) { var pos = id2position[nodes[_i12].id()]; var clusterIndex = clusterIndices[pos]; if (clusterIndex != null) { // the node may have not been assigned a cluster if no valid attributes were specified clusters[clusterIndex].push(nodes[_i12]); } } var retClusters = new Array(exemplarsIndices.length); for (var _c = 0; _c < exemplarsIndices.length; _c++) { retClusters[_c] = cy.collection(clusters[exemplarsIndices[_c]]); } return retClusters; }; var affinityPropagation$1 = { affinityPropagation: affinityPropagation, ap: affinityPropagation }; var hierholzerDefaults = defaults$g({ root: undefined, directed: false }); var elesfn$k = { hierholzer: function hierholzer(options) { if (!plainObject(options)) { var args = arguments; options = { root: args[0], directed: args[1] }; } var _hierholzerDefaults = hierholzerDefaults(options), root = _hierholzerDefaults.root, directed = _hierholzerDefaults.directed; var eles = this; var dflag = false; var oddIn; var oddOut; var startVertex; if (root) startVertex = string(root) ? this.filter(root)[0].id() : root[0].id(); var nodes = {}; var edges = {}; if (directed) { eles.forEach(function (ele) { var id = ele.id(); if (ele.isNode()) { var ind = ele.indegree(true); var outd = ele.outdegree(true); var d1 = ind - outd; var d2 = outd - ind; if (d1 == 1) { if (oddIn) dflag = true;else oddIn = id; } else if (d2 == 1) { if (oddOut) dflag = true;else oddOut = id; } else if (d2 > 1 || d1 > 1) { dflag = true; } nodes[id] = []; ele.outgoers().forEach(function (e) { if (e.isEdge()) nodes[id].push(e.id()); }); } else { edges[id] = [undefined, ele.target().id()]; } }); } else { eles.forEach(function (ele) { var id = ele.id(); if (ele.isNode()) { var d = ele.degree(true); if (d % 2) { if (!oddIn) oddIn = id;else if (!oddOut) oddOut = id;else dflag = true; } nodes[id] = []; ele.connectedEdges().forEach(function (e) { return nodes[id].push(e.id()); }); } else { edges[id] = [ele.source().id(), ele.target().id()]; } }); } var result = { found: false, trail: undefined }; if (dflag) return result;else if (oddOut && oddIn) { if (directed) { if (startVertex && oddOut != startVertex) { return result; } startVertex = oddOut; } else { if (startVertex && oddOut != startVertex && oddIn != startVertex) { return result; } else if (!startVertex) { startVertex = oddOut; } } } else { if (!startVertex) startVertex = eles[0].id(); } var walk = function walk(v) { var currentNode = v; var subtour = [v]; var adj, adjTail, adjHead; while (nodes[currentNode].length) { adj = nodes[currentNode].shift(); adjTail = edges[adj][0]; adjHead = edges[adj][1]; if (currentNode != adjHead) { nodes[adjHead] = nodes[adjHead].filter(function (e) { return e != adj; }); currentNode = adjHead; } else if (!directed && currentNode != adjTail) { nodes[adjTail] = nodes[adjTail].filter(function (e) { return e != adj; }); currentNode = adjTail; } subtour.unshift(adj); subtour.unshift(currentNode); } return subtour; }; var trail = []; var subtour = []; subtour = walk(startVertex); while (subtour.length != 1) { if (nodes[subtour[0]].length == 0) { trail.unshift(eles.getElementById(subtour.shift())); trail.unshift(eles.getElementById(subtour.shift())); } else { subtour = walk(subtour.shift()).concat(subtour); } } trail.unshift(eles.getElementById(subtour.shift())); // final node for (var d in nodes) { if (nodes[d].length) { return result; } } result.found = true; result.trail = this.spawn(trail, true); return result; } }; var hopcroftTarjanBiconnected = function hopcroftTarjanBiconnected() { var eles = this; var nodes = {}; var id = 0; var edgeCount = 0; var components = []; var stack = []; var visitedEdges = {}; var buildComponent = function buildComponent(x, y) { var i = stack.length - 1; var cutset = []; var component = eles.spawn(); while (stack[i].x != x || stack[i].y != y) { cutset.push(stack.pop().edge); i--; } cutset.push(stack.pop().edge); cutset.forEach(function (edge) { var connectedNodes = edge.connectedNodes().intersection(eles); component.merge(edge); connectedNodes.forEach(function (node) { var nodeId = node.id(); var connectedEdges = node.connectedEdges().intersection(eles); component.merge(node); if (!nodes[nodeId].cutVertex) { component.merge(connectedEdges); } else { component.merge(connectedEdges.filter(function (edge) { return edge.isLoop(); })); } }); }); components.push(component); }; var biconnectedSearch = function biconnectedSearch(root, currentNode, parent) { if (root === parent) edgeCount += 1; nodes[currentNode] = { id: id, low: id++, cutVertex: false }; var edges = eles.getElementById(currentNode).connectedEdges().intersection(eles); if (edges.size() === 0) { components.push(eles.spawn(eles.getElementById(currentNode))); } else { var sourceId, targetId, otherNodeId, edgeId; edges.forEach(function (edge) { sourceId = edge.source().id(); targetId = edge.target().id(); otherNodeId = sourceId === currentNode ? targetId : sourceId; if (otherNodeId !== parent) { edgeId = edge.id(); if (!visitedEdges[edgeId]) { visitedEdges[edgeId] = true; stack.push({ x: currentNode, y: otherNodeId, edge: edge }); } if (!(otherNodeId in nodes)) { biconnectedSearch(root, otherNodeId, currentNode); nodes[currentNode].low = Math.min(nodes[currentNode].low, nodes[otherNodeId].low); if (nodes[currentNode].id <= nodes[otherNodeId].low) { nodes[currentNode].cutVertex = true; buildComponent(currentNode, otherNodeId); } } else { nodes[currentNode].low = Math.min(nodes[currentNode].low, nodes[otherNodeId].id); } } }); } }; eles.forEach(function (ele) { if (ele.isNode()) { var nodeId = ele.id(); if (!(nodeId in nodes)) { edgeCount = 0; biconnectedSearch(nodeId, nodeId); nodes[nodeId].cutVertex = edgeCount > 1; } } }); var cutVertices = Object.keys(nodes).filter(function (id) { return nodes[id].cutVertex; }).map(function (id) { return eles.getElementById(id); }); return { cut: eles.spawn(cutVertices), components: components }; }; var hopcroftTarjanBiconnected$1 = { hopcroftTarjanBiconnected: hopcroftTarjanBiconnected, htbc: hopcroftTarjanBiconnected, htb: hopcroftTarjanBiconnected, hopcroftTarjanBiconnectedComponents: hopcroftTarjanBiconnected }; var tarjanStronglyConnected = function tarjanStronglyConnected() { var eles = this; var nodes = {}; var index = 0; var components = []; var stack = []; var cut = eles.spawn(eles); var stronglyConnectedSearch = function stronglyConnectedSearch(sourceNodeId) { stack.push(sourceNodeId); nodes[sourceNodeId] = { index: index, low: index++, explored: false }; var connectedEdges = eles.getElementById(sourceNodeId).connectedEdges().intersection(eles); connectedEdges.forEach(function (edge) { var targetNodeId = edge.target().id(); if (targetNodeId !== sourceNodeId) { if (!(targetNodeId in nodes)) { stronglyConnectedSearch(targetNodeId); } if (!nodes[targetNodeId].explored) { nodes[sourceNodeId].low = Math.min(nodes[sourceNodeId].low, nodes[targetNodeId].low); } } }); if (nodes[sourceNodeId].index === nodes[sourceNodeId].low) { var componentNodes = eles.spawn(); for (;;) { var nodeId = stack.pop(); componentNodes.merge(eles.getElementById(nodeId)); nodes[nodeId].low = nodes[sourceNodeId].index; nodes[nodeId].explored = true; if (nodeId === sourceNodeId) { break; } } var componentEdges = componentNodes.edgesWith(componentNodes); var component = componentNodes.merge(componentEdges); components.push(component); cut = cut.difference(component); } }; eles.forEach(function (ele) { if (ele.isNode()) { var nodeId = ele.id(); if (!(nodeId in nodes)) { stronglyConnectedSearch(nodeId); } } }); return { cut: cut, components: components }; }; var tarjanStronglyConnected$1 = { tarjanStronglyConnected: tarjanStronglyConnected, tsc: tarjanStronglyConnected, tscc: tarjanStronglyConnected, tarjanStronglyConnectedComponents: tarjanStronglyConnected }; var elesfn$j = {}; [elesfn$v, elesfn$u, elesfn$t, elesfn$s, elesfn$r, elesfn$q, elesfn$p, elesfn$o, elesfn$n, elesfn$m, elesfn$l, markovClustering$1, kClustering, hierarchicalClustering$1, affinityPropagation$1, elesfn$k, hopcroftTarjanBiconnected$1, tarjanStronglyConnected$1].forEach(function (props) { extend(elesfn$j, props); }); /*! Embeddable Minimum Strictly-Compliant Promises/A+ 1.1.1 Thenable Copyright (c) 2013-2014 Ralf S. Engelschall (http://engelschall.com) Licensed under The MIT License (http://opensource.org/licenses/MIT) */ /* promise states [Promises/A+ 2.1] */ var STATE_PENDING = 0; /* [Promises/A+ 2.1.1] */ var STATE_FULFILLED = 1; /* [Promises/A+ 2.1.2] */ var STATE_REJECTED = 2; /* [Promises/A+ 2.1.3] */ /* promise object constructor */ var api = function api(executor) { /* optionally support non-constructor/plain-function call */ if (!(this instanceof api)) return new api(executor); /* initialize object */ this.id = 'Thenable/1.0.7'; this.state = STATE_PENDING; /* initial state */ this.fulfillValue = undefined; /* initial value */ /* [Promises/A+ 1.3, 2.1.2.2] */ this.rejectReason = undefined; /* initial reason */ /* [Promises/A+ 1.5, 2.1.3.2] */ this.onFulfilled = []; /* initial handlers */ this.onRejected = []; /* initial handlers */ /* provide optional information-hiding proxy */ this.proxy = { then: this.then.bind(this) }; /* support optional executor function */ if (typeof executor === 'function') executor.call(this, this.fulfill.bind(this), this.reject.bind(this)); }; /* promise API methods */ api.prototype = { /* promise resolving methods */ fulfill: function fulfill(value) { return deliver(this, STATE_FULFILLED, 'fulfillValue', value); }, reject: function reject(value) { return deliver(this, STATE_REJECTED, 'rejectReason', value); }, /* "The then Method" [Promises/A+ 1.1, 1.2, 2.2] */ then: function then(onFulfilled, onRejected) { var curr = this; var next = new api(); /* [Promises/A+ 2.2.7] */ curr.onFulfilled.push(resolver(onFulfilled, next, 'fulfill')); /* [Promises/A+ 2.2.2/2.2.6] */ curr.onRejected.push(resolver(onRejected, next, 'reject')); /* [Promises/A+ 2.2.3/2.2.6] */ execute(curr); return next.proxy; /* [Promises/A+ 2.2.7, 3.3] */ } }; /* deliver an action */ var deliver = function deliver(curr, state, name, value) { if (curr.state === STATE_PENDING) { curr.state = state; /* [Promises/A+ 2.1.2.1, 2.1.3.1] */ curr[name] = value; /* [Promises/A+ 2.1.2.2, 2.1.3.2] */ execute(curr); } return curr; }; /* execute all handlers */ var execute = function execute(curr) { if (curr.state === STATE_FULFILLED) execute_handlers(curr, 'onFulfilled', curr.fulfillValue);else if (curr.state === STATE_REJECTED) execute_handlers(curr, 'onRejected', curr.rejectReason); }; /* execute particular set of handlers */ var execute_handlers = function execute_handlers(curr, name, value) { /* global setImmediate: true */ /* global setTimeout: true */ /* short-circuit processing */ if (curr[name].length === 0) return; /* iterate over all handlers, exactly once */ var handlers = curr[name]; curr[name] = []; /* [Promises/A+ 2.2.2.3, 2.2.3.3] */ var func = function func() { for (var i = 0; i < handlers.length; i++) { handlers[i](value); } /* [Promises/A+ 2.2.5] */ }; /* execute procedure asynchronously */ /* [Promises/A+ 2.2.4, 3.1] */ if (typeof setImmediate === 'function') setImmediate(func);else setTimeout(func, 0); }; /* generate a resolver function */ var resolver = function resolver(cb, next, method) { return function (value) { if (typeof cb !== 'function') /* [Promises/A+ 2.2.1, 2.2.7.3, 2.2.7.4] */ next[method].call(next, value); /* [Promises/A+ 2.2.7.3, 2.2.7.4] */else { var result; try { result = cb(value); } /* [Promises/A+ 2.2.2.1, 2.2.3.1, 2.2.5, 3.2] */ catch (e) { next.reject(e); /* [Promises/A+ 2.2.7.2] */ return; } resolve(next, result); /* [Promises/A+ 2.2.7.1] */ } }; }; /* "Promise Resolution Procedure" */ /* [Promises/A+ 2.3] */ var resolve = function resolve(promise, x) { /* sanity check arguments */ /* [Promises/A+ 2.3.1] */ if (promise === x || promise.proxy === x) { promise.reject(new TypeError('cannot resolve promise with itself')); return; } /* surgically check for a "then" method (mainly to just call the "getter" of "then" only once) */ var then; if (_typeof(x) === 'object' && x !== null || typeof x === 'function') { try { then = x.then; } /* [Promises/A+ 2.3.3.1, 3.5] */ catch (e) { promise.reject(e); /* [Promises/A+ 2.3.3.2] */ return; } } /* handle own Thenables [Promises/A+ 2.3.2] and similar "thenables" [Promises/A+ 2.3.3] */ if (typeof then === 'function') { var resolved = false; try { /* call retrieved "then" method */ /* [Promises/A+ 2.3.3.3] */ then.call(x, /* resolvePromise */ /* [Promises/A+ 2.3.3.3.1] */ function (y) { if (resolved) return; resolved = true; /* [Promises/A+ 2.3.3.3.3] */ if (y === x) /* [Promises/A+ 3.6] */ promise.reject(new TypeError('circular thenable chain'));else resolve(promise, y); }, /* rejectPromise */ /* [Promises/A+ 2.3.3.3.2] */ function (r) { if (resolved) return; resolved = true; /* [Promises/A+ 2.3.3.3.3] */ promise.reject(r); }); } catch (e) { if (!resolved) /* [Promises/A+ 2.3.3.3.3] */ promise.reject(e); /* [Promises/A+ 2.3.3.3.4] */ } return; } /* handle other values */ promise.fulfill(x); /* [Promises/A+ 2.3.4, 2.3.3.4] */ }; // so we always have Promise.all() api.all = function (ps) { return new api(function (resolveAll, rejectAll) { var vals = new Array(ps.length); var doneCount = 0; var fulfill = function fulfill(i, val) { vals[i] = val; doneCount++; if (doneCount === ps.length) { resolveAll(vals); } }; for (var i = 0; i < ps.length; i++) { (function (i) { var p = ps[i]; var isPromise = p != null && p.then != null; if (isPromise) { p.then(function (val) { fulfill(i, val); }, function (err) { rejectAll(err); }); } else { var val = p; fulfill(i, val); } })(i); } }); }; api.resolve = function (val) { return new api(function (resolve, reject) { resolve(val); }); }; api.reject = function (val) { return new api(function (resolve, reject) { reject(val); }); }; var Promise$1 = typeof Promise !== 'undefined' ? Promise : api; // eslint-disable-line no-undef var Animation = function Animation(target, opts, opts2) { var isCore = core(target); var isEle = !isCore; var _p = this._private = extend({ duration: 1000 }, opts, opts2); _p.target = target; _p.style = _p.style || _p.css; _p.started = false; _p.playing = false; _p.hooked = false; _p.applying = false; _p.progress = 0; _p.completes = []; _p.frames = []; if (_p.complete && fn$6(_p.complete)) { _p.completes.push(_p.complete); } if (isEle) { var pos = target.position(); _p.startPosition = _p.startPosition || { x: pos.x, y: pos.y }; _p.startStyle = _p.startStyle || target.cy().style().getAnimationStartStyle(target, _p.style); } if (isCore) { var pan = target.pan(); _p.startPan = { x: pan.x, y: pan.y }; _p.startZoom = target.zoom(); } // for future timeline/animations impl this.length = 1; this[0] = this; }; var anifn = Animation.prototype; extend(anifn, { instanceString: function instanceString() { return 'animation'; }, hook: function hook() { var _p = this._private; if (!_p.hooked) { // add to target's animation queue var q; var tAni = _p.target._private.animation; if (_p.queue) { q = tAni.queue; } else { q = tAni.current; } q.push(this); // add to the animation loop pool if (elementOrCollection(_p.target)) { _p.target.cy().addToAnimationPool(_p.target); } _p.hooked = true; } return this; }, play: function play() { var _p = this._private; // autorewind if (_p.progress === 1) { _p.progress = 0; } _p.playing = true; _p.started = false; // needs to be started by animation loop _p.stopped = false; this.hook(); // the animation loop will start the animation... return this; }, playing: function playing() { return this._private.playing; }, apply: function apply() { var _p = this._private; _p.applying = true; _p.started = false; // needs to be started by animation loop _p.stopped = false; this.hook(); // the animation loop will apply the animation at this progress return this; }, applying: function applying() { return this._private.applying; }, pause: function pause() { var _p = this._private; _p.playing = false; _p.started = false; return this; }, stop: function stop() { var _p = this._private; _p.playing = false; _p.started = false; _p.stopped = true; // to be removed from animation queues return this; }, rewind: function rewind() { return this.progress(0); }, fastforward: function fastforward() { return this.progress(1); }, time: function time(t) { var _p = this._private; if (t === undefined) { return _p.progress * _p.duration; } else { return this.progress(t / _p.duration); } }, progress: function progress(p) { var _p = this._private; var wasPlaying = _p.playing; if (p === undefined) { return _p.progress; } else { if (wasPlaying) { this.pause(); } _p.progress = p; _p.started = false; if (wasPlaying) { this.play(); } } return this; }, completed: function completed() { return this._private.progress === 1; }, reverse: function reverse() { var _p = this._private; var wasPlaying = _p.playing; if (wasPlaying) { this.pause(); } _p.progress = 1 - _p.progress; _p.started = false; var swap = function swap(a, b) { var _pa = _p[a]; if (_pa == null) { return; } _p[a] = _p[b]; _p[b] = _pa; }; swap('zoom', 'startZoom'); swap('pan', 'startPan'); swap('position', 'startPosition'); // swap styles if (_p.style) { for (var i = 0; i < _p.style.length; i++) { var prop = _p.style[i]; var name = prop.name; var startStyleProp = _p.startStyle[name]; _p.startStyle[name] = prop; _p.style[i] = startStyleProp; } } if (wasPlaying) { this.play(); } return this; }, promise: function promise(type) { var _p = this._private; var arr; switch (type) { case 'frame': arr = _p.frames; break; default: case 'complete': case 'completed': arr = _p.completes; } return new Promise$1(function (resolve, reject) { arr.push(function () { resolve(); }); }); } }); anifn.complete = anifn.completed; anifn.run = anifn.play; anifn.running = anifn.playing; var define$3 = { animated: function animated() { return function animatedImpl() { var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var cy = this._private.cy || this; if (!cy.styleEnabled()) { return false; } var ele = all[0]; if (ele) { return ele._private.animation.current.length > 0; } }; }, // animated clearQueue: function clearQueue() { return function clearQueueImpl() { var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var cy = this._private.cy || this; if (!cy.styleEnabled()) { return this; } for (var i = 0; i < all.length; i++) { var ele = all[i]; ele._private.animation.queue = []; } return this; }; }, // clearQueue delay: function delay() { return function delayImpl(time, complete) { var cy = this._private.cy || this; if (!cy.styleEnabled()) { return this; } return this.animate({ delay: time, duration: time, complete: complete }); }; }, // delay delayAnimation: function delayAnimation() { return function delayAnimationImpl(time, complete) { var cy = this._private.cy || this; if (!cy.styleEnabled()) { return this; } return this.animation({ delay: time, duration: time, complete: complete }); }; }, // delay animation: function animation() { return function animationImpl(properties, params) { var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var cy = this._private.cy || this; var isCore = !selfIsArrayLike; var isEles = !isCore; if (!cy.styleEnabled()) { return this; } var style = cy.style(); properties = extend({}, properties, params); var propertiesEmpty = Object.keys(properties).length === 0; if (propertiesEmpty) { return new Animation(all[0], properties); // nothing to animate } if (properties.duration === undefined) { properties.duration = 400; } switch (properties.duration) { case 'slow': properties.duration = 600; break; case 'fast': properties.duration = 200; break; } if (isEles) { properties.style = style.getPropsList(properties.style || properties.css); properties.css = undefined; } if (isEles && properties.renderedPosition != null) { var rpos = properties.renderedPosition; var pan = cy.pan(); var zoom = cy.zoom(); properties.position = renderedToModelPosition(rpos, zoom, pan); } // override pan w/ panBy if set if (isCore && properties.panBy != null) { var panBy = properties.panBy; var cyPan = cy.pan(); properties.pan = { x: cyPan.x + panBy.x, y: cyPan.y + panBy.y }; } // override pan w/ center if set var center = properties.center || properties.centre; if (isCore && center != null) { var centerPan = cy.getCenterPan(center.eles, properties.zoom); if (centerPan != null) { properties.pan = centerPan; } } // override pan & zoom w/ fit if set if (isCore && properties.fit != null) { var fit = properties.fit; var fitVp = cy.getFitViewport(fit.eles || fit.boundingBox, fit.padding); if (fitVp != null) { properties.pan = fitVp.pan; properties.zoom = fitVp.zoom; } } // override zoom (& potentially pan) w/ zoom obj if set if (isCore && plainObject(properties.zoom)) { var vp = cy.getZoomedViewport(properties.zoom); if (vp != null) { if (vp.zoomed) { properties.zoom = vp.zoom; } if (vp.panned) { properties.pan = vp.pan; } } else { properties.zoom = null; // an inavalid zoom (e.g. no delta) gets automatically destroyed } } return new Animation(all[0], properties); }; }, // animate animate: function animate() { return function animateImpl(properties, params) { var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var cy = this._private.cy || this; if (!cy.styleEnabled()) { return this; } if (params) { properties = extend({}, properties, params); } // manually hook and run the animation for (var i = 0; i < all.length; i++) { var ele = all[i]; var queue = ele.animated() && (properties.queue === undefined || properties.queue); var ani = ele.animation(properties, queue ? { queue: true } : undefined); ani.play(); } return this; // chaining }; }, // animate stop: function stop() { return function stopImpl(clearQueue, jumpToEnd) { var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var cy = this._private.cy || this; if (!cy.styleEnabled()) { return this; } for (var i = 0; i < all.length; i++) { var ele = all[i]; var _p = ele._private; var anis = _p.animation.current; for (var j = 0; j < anis.length; j++) { var ani = anis[j]; var ani_p = ani._private; if (jumpToEnd) { // next iteration of the animation loop, the animation // will go straight to the end and be removed ani_p.duration = 0; } } // clear the queue of future animations if (clearQueue) { _p.animation.queue = []; } if (!jumpToEnd) { _p.animation.current = []; } } // we have to notify (the animation loop doesn't do it for us on `stop`) cy.notify('draw'); return this; }; } // stop }; // define /** * Checks if `value` is classified as an `Array` object. * * @static * @memberOf _ * @since 0.1.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is an array, else `false`. * @example * * _.isArray([1, 2, 3]); * // => true * * _.isArray(document.body.children); * // => false * * _.isArray('abc'); * // => false * * _.isArray(_.noop); * // => false */ var isArray = Array.isArray; var isArray_1 = isArray; /** Used to match property names within property paths. */ var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, reIsPlainProp = /^\w*$/; /** * Checks if `value` is a property name and not a property path. * * @private * @param {*} value The value to check. * @param {Object} [object] The object to query keys on. * @returns {boolean} Returns `true` if `value` is a property name, else `false`. */ function isKey(value, object) { if (isArray_1(value)) { return false; } var type = typeof value; if (type == 'number' || type == 'symbol' || type == 'boolean' || value == null || isSymbol_1(value)) { return true; } return reIsPlainProp.test(value) || !reIsDeepProp.test(value) || (object != null && value in Object(object)); } var _isKey = isKey; /** `Object#toString` result references. */ var asyncTag = '[object AsyncFunction]', funcTag = '[object Function]', genTag = '[object GeneratorFunction]', proxyTag = '[object Proxy]'; /** * Checks if `value` is classified as a `Function` object. * * @static * @memberOf _ * @since 0.1.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a function, else `false`. * @example * * _.isFunction(_); * // => true * * _.isFunction(/abc/); * // => false */ function isFunction(value) { if (!isObject_1(value)) { return false; } // The use of `Object#toString` avoids issues with the `typeof` operator // in Safari 9 which returns 'object' for typed arrays and other constructors. var tag = _baseGetTag(value); return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag; } var isFunction_1 = isFunction; /** Used to detect overreaching core-js shims. */ var coreJsData = _root['__core-js_shared__']; var _coreJsData = coreJsData; /** Used to detect methods masquerading as native. */ var maskSrcKey = (function() { var uid = /[^.]+$/.exec(_coreJsData && _coreJsData.keys && _coreJsData.keys.IE_PROTO || ''); return uid ? ('Symbol(src)_1.' + uid) : ''; }()); /** * Checks if `func` has its source masked. * * @private * @param {Function} func The function to check. * @returns {boolean} Returns `true` if `func` is masked, else `false`. */ function isMasked(func) { return !!maskSrcKey && (maskSrcKey in func); } var _isMasked = isMasked; /** Used for built-in method references. */ var funcProto$1 = Function.prototype; /** Used to resolve the decompiled source of functions. */ var funcToString$1 = funcProto$1.toString; /** * Converts `func` to its source code. * * @private * @param {Function} func The function to convert. * @returns {string} Returns the source code. */ function toSource(func) { if (func != null) { try { return funcToString$1.call(func); } catch (e) {} try { return (func + ''); } catch (e) {} } return ''; } var _toSource = toSource; /** * Used to match `RegExp` * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns). */ var reRegExpChar = /[\\^$.*+?()[\]{}|]/g; /** Used to detect host constructors (Safari). */ var reIsHostCtor = /^\[object .+?Constructor\]$/; /** Used for built-in method references. */ var funcProto = Function.prototype, objectProto$3 = Object.prototype; /** Used to resolve the decompiled source of functions. */ var funcToString = funcProto.toString; /** Used to check objects for own properties. */ var hasOwnProperty$3 = objectProto$3.hasOwnProperty; /** Used to detect if a method is native. */ var reIsNative = RegExp('^' + funcToString.call(hasOwnProperty$3).replace(reRegExpChar, '\\$&') .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$' ); /** * The base implementation of `_.isNative` without bad shim checks. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a native function, * else `false`. */ function baseIsNative(value) { if (!isObject_1(value) || _isMasked(value)) { return false; } var pattern = isFunction_1(value) ? reIsNative : reIsHostCtor; return pattern.test(_toSource(value)); } var _baseIsNative = baseIsNative; /** * Gets the value at `key` of `object`. * * @private * @param {Object} [object] The object to query. * @param {string} key The key of the property to get. * @returns {*} Returns the property value. */ function getValue$1(object, key) { return object == null ? undefined : object[key]; } var _getValue = getValue$1; /** * Gets the native function at `key` of `object`. * * @private * @param {Object} object The object to query. * @param {string} key The key of the method to get. * @returns {*} Returns the function if it's native, else `undefined`. */ function getNative(object, key) { var value = _getValue(object, key); return _baseIsNative(value) ? value : undefined; } var _getNative = getNative; /* Built-in method references that are verified to be native. */ var nativeCreate = _getNative(Object, 'create'); var _nativeCreate = nativeCreate; /** * Removes all key-value entries from the hash. * * @private * @name clear * @memberOf Hash */ function hashClear() { this.__data__ = _nativeCreate ? _nativeCreate(null) : {}; this.size = 0; } var _hashClear = hashClear; /** * Removes `key` and its value from the hash. * * @private * @name delete * @memberOf Hash * @param {Object} hash The hash to modify. * @param {string} key The key of the value to remove. * @returns {boolean} Returns `true` if the entry was removed, else `false`. */ function hashDelete(key) { var result = this.has(key) && delete this.__data__[key]; this.size -= result ? 1 : 0; return result; } var _hashDelete = hashDelete; /** Used to stand-in for `undefined` hash values. */ var HASH_UNDEFINED$1 = '__lodash_hash_undefined__'; /** Used for built-in method references. */ var objectProto$2 = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty$2 = objectProto$2.hasOwnProperty; /** * Gets the hash value for `key`. * * @private * @name get * @memberOf Hash * @param {string} key The key of the value to get. * @returns {*} Returns the entry value. */ function hashGet(key) { var data = this.__data__; if (_nativeCreate) { var result = data[key]; return result === HASH_UNDEFINED$1 ? undefined : result; } return hasOwnProperty$2.call(data, key) ? data[key] : undefined; } var _hashGet = hashGet; /** Used for built-in method references. */ var objectProto$1 = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty$1 = objectProto$1.hasOwnProperty; /** * Checks if a hash value for `key` exists. * * @private * @name has * @memberOf Hash * @param {string} key The key of the entry to check. * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. */ function hashHas(key) { var data = this.__data__; return _nativeCreate ? (data[key] !== undefined) : hasOwnProperty$1.call(data, key); } var _hashHas = hashHas; /** Used to stand-in for `undefined` hash values. */ var HASH_UNDEFINED = '__lodash_hash_undefined__'; /** * Sets the hash `key` to `value`. * * @private * @name set * @memberOf Hash * @param {string} key The key of the value to set. * @param {*} value The value to set. * @returns {Object} Returns the hash instance. */ function hashSet(key, value) { var data = this.__data__; this.size += this.has(key) ? 0 : 1; data[key] = (_nativeCreate && value === undefined) ? HASH_UNDEFINED : value; return this; } var _hashSet = hashSet; /** * Creates a hash object. * * @private * @constructor * @param {Array} [entries] The key-value pairs to cache. */ function Hash(entries) { var index = -1, length = entries == null ? 0 : entries.length; this.clear(); while (++index < length) { var entry = entries[index]; this.set(entry[0], entry[1]); } } // Add methods to `Hash`. Hash.prototype.clear = _hashClear; Hash.prototype['delete'] = _hashDelete; Hash.prototype.get = _hashGet; Hash.prototype.has = _hashHas; Hash.prototype.set = _hashSet; var _Hash = Hash; /** * Removes all key-value entries from the list cache. * * @private * @name clear * @memberOf ListCache */ function listCacheClear() { this.__data__ = []; this.size = 0; } var _listCacheClear = listCacheClear; /** * Performs a * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) * comparison between two values to determine if they are equivalent. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to compare. * @param {*} other The other value to compare. * @returns {boolean} Returns `true` if the values are equivalent, else `false`. * @example * * var object = { 'a': 1 }; * var other = { 'a': 1 }; * * _.eq(object, object); * // => true * * _.eq(object, other); * // => false * * _.eq('a', 'a'); * // => true * * _.eq('a', Object('a')); * // => false * * _.eq(NaN, NaN); * // => true */ function eq(value, other) { return value === other || (value !== value && other !== other); } var eq_1 = eq; /** * Gets the index at which the `key` is found in `array` of key-value pairs. * * @private * @param {Array} array The array to inspect. * @param {*} key The key to search for. * @returns {number} Returns the index of the matched value, else `-1`. */ function assocIndexOf(array, key) { var length = array.length; while (length--) { if (eq_1(array[length][0], key)) { return length; } } return -1; } var _assocIndexOf = assocIndexOf; /** Used for built-in method references. */ var arrayProto = Array.prototype; /** Built-in value references. */ var splice = arrayProto.splice; /** * Removes `key` and its value from the list cache. * * @private * @name delete * @memberOf ListCache * @param {string} key The key of the value to remove. * @returns {boolean} Returns `true` if the entry was removed, else `false`. */ function listCacheDelete(key) { var data = this.__data__, index = _assocIndexOf(data, key); if (index < 0) { return false; } var lastIndex = data.length - 1; if (index == lastIndex) { data.pop(); } else { splice.call(data, index, 1); } --this.size; return true; } var _listCacheDelete = listCacheDelete; /** * Gets the list cache value for `key`. * * @private * @name get * @memberOf ListCache * @param {string} key The key of the value to get. * @returns {*} Returns the entry value. */ function listCacheGet(key) { var data = this.__data__, index = _assocIndexOf(data, key); return index < 0 ? undefined : data[index][1]; } var _listCacheGet = listCacheGet; /** * Checks if a list cache value for `key` exists. * * @private * @name has * @memberOf ListCache * @param {string} key The key of the entry to check. * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. */ function listCacheHas(key) { return _assocIndexOf(this.__data__, key) > -1; } var _listCacheHas = listCacheHas; /** * Sets the list cache `key` to `value`. * * @private * @name set * @memberOf ListCache * @param {string} key The key of the value to set. * @param {*} value The value to set. * @returns {Object} Returns the list cache instance. */ function listCacheSet(key, value) { var data = this.__data__, index = _assocIndexOf(data, key); if (index < 0) { ++this.size; data.push([key, value]); } else { data[index][1] = value; } return this; } var _listCacheSet = listCacheSet; /** * Creates an list cache object. * * @private * @constructor * @param {Array} [entries] The key-value pairs to cache. */ function ListCache(entries) { var index = -1, length = entries == null ? 0 : entries.length; this.clear(); while (++index < length) { var entry = entries[index]; this.set(entry[0], entry[1]); } } // Add methods to `ListCache`. ListCache.prototype.clear = _listCacheClear; ListCache.prototype['delete'] = _listCacheDelete; ListCache.prototype.get = _listCacheGet; ListCache.prototype.has = _listCacheHas; ListCache.prototype.set = _listCacheSet; var _ListCache = ListCache; /* Built-in method references that are verified to be native. */ var Map$1 = _getNative(_root, 'Map'); var _Map = Map$1; /** * Removes all key-value entries from the map. * * @private * @name clear * @memberOf MapCache */ function mapCacheClear() { this.size = 0; this.__data__ = { 'hash': new _Hash, 'map': new (_Map || _ListCache), 'string': new _Hash }; } var _mapCacheClear = mapCacheClear; /** * Checks if `value` is suitable for use as unique object key. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is suitable, else `false`. */ function isKeyable(value) { var type = typeof value; return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean') ? (value !== '__proto__') : (value === null); } var _isKeyable = isKeyable; /** * Gets the data for `map`. * * @private * @param {Object} map The map to query. * @param {string} key The reference key. * @returns {*} Returns the map data. */ function getMapData(map, key) { var data = map.__data__; return _isKeyable(key) ? data[typeof key == 'string' ? 'string' : 'hash'] : data.map; } var _getMapData = getMapData; /** * Removes `key` and its value from the map. * * @private * @name delete * @memberOf MapCache * @param {string} key The key of the value to remove. * @returns {boolean} Returns `true` if the entry was removed, else `false`. */ function mapCacheDelete(key) { var result = _getMapData(this, key)['delete'](key); this.size -= result ? 1 : 0; return result; } var _mapCacheDelete = mapCacheDelete; /** * Gets the map value for `key`. * * @private * @name get * @memberOf MapCache * @param {string} key The key of the value to get. * @returns {*} Returns the entry value. */ function mapCacheGet(key) { return _getMapData(this, key).get(key); } var _mapCacheGet = mapCacheGet; /** * Checks if a map value for `key` exists. * * @private * @name has * @memberOf MapCache * @param {string} key The key of the entry to check. * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. */ function mapCacheHas(key) { return _getMapData(this, key).has(key); } var _mapCacheHas = mapCacheHas; /** * Sets the map `key` to `value`. * * @private * @name set * @memberOf MapCache * @param {string} key The key of the value to set. * @param {*} value The value to set. * @returns {Object} Returns the map cache instance. */ function mapCacheSet(key, value) { var data = _getMapData(this, key), size = data.size; data.set(key, value); this.size += data.size == size ? 0 : 1; return this; } var _mapCacheSet = mapCacheSet; /** * Creates a map cache object to store key-value pairs. * * @private * @constructor * @param {Array} [entries] The key-value pairs to cache. */ function MapCache(entries) { var index = -1, length = entries == null ? 0 : entries.length; this.clear(); while (++index < length) { var entry = entries[index]; this.set(entry[0], entry[1]); } } // Add methods to `MapCache`. MapCache.prototype.clear = _mapCacheClear; MapCache.prototype['delete'] = _mapCacheDelete; MapCache.prototype.get = _mapCacheGet; MapCache.prototype.has = _mapCacheHas; MapCache.prototype.set = _mapCacheSet; var _MapCache = MapCache; /** Error message constants. */ var FUNC_ERROR_TEXT = 'Expected a function'; /** * Creates a function that memoizes the result of `func`. If `resolver` is * provided, it determines the cache key for storing the result based on the * arguments provided to the memoized function. By default, the first argument * provided to the memoized function is used as the map cache key. The `func` * is invoked with the `this` binding of the memoized function. * * **Note:** The cache is exposed as the `cache` property on the memoized * function. Its creation may be customized by replacing the `_.memoize.Cache` * constructor with one whose instances implement the * [`Map`](http://ecma-international.org/ecma-262/7.0/#sec-properties-of-the-map-prototype-object) * method interface of `clear`, `delete`, `get`, `has`, and `set`. * * @static * @memberOf _ * @since 0.1.0 * @category Function * @param {Function} func The function to have its output memoized. * @param {Function} [resolver] The function to resolve the cache key. * @returns {Function} Returns the new memoized function. * @example * * var object = { 'a': 1, 'b': 2 }; * var other = { 'c': 3, 'd': 4 }; * * var values = _.memoize(_.values); * values(object); * // => [1, 2] * * values(other); * // => [3, 4] * * object.a = 2; * values(object); * // => [1, 2] * * // Modify the result cache. * values.cache.set(object, ['a', 'b']); * values(object); * // => ['a', 'b'] * * // Replace `_.memoize.Cache`. * _.memoize.Cache = WeakMap; */ function memoize(func, resolver) { if (typeof func != 'function' || (resolver != null && typeof resolver != 'function')) { throw new TypeError(FUNC_ERROR_TEXT); } var memoized = function() { var args = arguments, key = resolver ? resolver.apply(this, args) : args[0], cache = memoized.cache; if (cache.has(key)) { return cache.get(key); } var result = func.apply(this, args); memoized.cache = cache.set(key, result) || cache; return result; }; memoized.cache = new (memoize.Cache || _MapCache); return memoized; } // Expose `MapCache`. memoize.Cache = _MapCache; var memoize_1 = memoize; /** Used as the maximum memoize cache size. */ var MAX_MEMOIZE_SIZE = 500; /** * A specialized version of `_.memoize` which clears the memoized function's * cache when it exceeds `MAX_MEMOIZE_SIZE`. * * @private * @param {Function} func The function to have its output memoized. * @returns {Function} Returns the new memoized function. */ function memoizeCapped(func) { var result = memoize_1(func, function(key) { if (cache.size === MAX_MEMOIZE_SIZE) { cache.clear(); } return key; }); var cache = result.cache; return result; } var _memoizeCapped = memoizeCapped; /** Used to match property names within property paths. */ var rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g; /** Used to match backslashes in property paths. */ var reEscapeChar = /\\(\\)?/g; /** * Converts `string` to a property path array. * * @private * @param {string} string The string to convert. * @returns {Array} Returns the property path array. */ var stringToPath = _memoizeCapped(function(string) { var result = []; if (string.charCodeAt(0) === 46 /* . */) { result.push(''); } string.replace(rePropName, function(match, number, quote, subString) { result.push(quote ? subString.replace(reEscapeChar, '$1') : (number || match)); }); return result; }); var _stringToPath = stringToPath; /** * A specialized version of `_.map` for arrays without support for iteratee * shorthands. * * @private * @param {Array} [array] The array to iterate over. * @param {Function} iteratee The function invoked per iteration. * @returns {Array} Returns the new mapped array. */ function arrayMap(array, iteratee) { var index = -1, length = array == null ? 0 : array.length, result = Array(length); while (++index < length) { result[index] = iteratee(array[index], index, array); } return result; } var _arrayMap = arrayMap; /** Used as references for various `Number` constants. */ var INFINITY$1 = 1 / 0; /** Used to convert symbols to primitives and strings. */ var symbolProto = _Symbol ? _Symbol.prototype : undefined, symbolToString = symbolProto ? symbolProto.toString : undefined; /** * The base implementation of `_.toString` which doesn't convert nullish * values to empty strings. * * @private * @param {*} value The value to process. * @returns {string} Returns the string. */ function baseToString(value) { // Exit early for strings to avoid a performance hit in some environments. if (typeof value == 'string') { return value; } if (isArray_1(value)) { // Recursively convert values (susceptible to call stack limits). return _arrayMap(value, baseToString) + ''; } if (isSymbol_1(value)) { return symbolToString ? symbolToString.call(value) : ''; } var result = (value + ''); return (result == '0' && (1 / value) == -INFINITY$1) ? '-0' : result; } var _baseToString = baseToString; /** * Converts `value` to a string. An empty string is returned for `null` * and `undefined` values. The sign of `-0` is preserved. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to convert. * @returns {string} Returns the converted string. * @example * * _.toString(null); * // => '' * * _.toString(-0); * // => '-0' * * _.toString([1, 2, 3]); * // => '1,2,3' */ function toString$1(value) { return value == null ? '' : _baseToString(value); } var toString_1 = toString$1; /** * Casts `value` to a path array if it's not one. * * @private * @param {*} value The value to inspect. * @param {Object} [object] The object to query keys on. * @returns {Array} Returns the cast property path array. */ function castPath(value, object) { if (isArray_1(value)) { return value; } return _isKey(value, object) ? [value] : _stringToPath(toString_1(value)); } var _castPath = castPath; /** Used as references for various `Number` constants. */ var INFINITY = 1 / 0; /** * Converts `value` to a string key if it's not a string or symbol. * * @private * @param {*} value The value to inspect. * @returns {string|symbol} Returns the key. */ function toKey(value) { if (typeof value == 'string' || isSymbol_1(value)) { return value; } var result = (value + ''); return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result; } var _toKey = toKey; /** * The base implementation of `_.get` without support for default values. * * @private * @param {Object} object The object to query. * @param {Array|string} path The path of the property to get. * @returns {*} Returns the resolved value. */ function baseGet(object, path) { path = _castPath(path, object); var index = 0, length = path.length; while (object != null && index < length) { object = object[_toKey(path[index++])]; } return (index && index == length) ? object : undefined; } var _baseGet = baseGet; /** * Gets the value at `path` of `object`. If the resolved value is * `undefined`, the `defaultValue` is returned in its place. * * @static * @memberOf _ * @since 3.7.0 * @category Object * @param {Object} object The object to query. * @param {Array|string} path The path of the property to get. * @param {*} [defaultValue] The value returned for `undefined` resolved values. * @returns {*} Returns the resolved value. * @example * * var object = { 'a': [{ 'b': { 'c': 3 } }] }; * * _.get(object, 'a[0].b.c'); * // => 3 * * _.get(object, ['a', '0', 'b', 'c']); * // => 3 * * _.get(object, 'a.b.c', 'default'); * // => 'default' */ function get(object, path, defaultValue) { var result = object == null ? undefined : _baseGet(object, path); return result === undefined ? defaultValue : result; } var get_1 = get; var defineProperty = (function() { try { var func = _getNative(Object, 'defineProperty'); func({}, '', {}); return func; } catch (e) {} }()); var _defineProperty = defineProperty; /** * The base implementation of `assignValue` and `assignMergeValue` without * value checks. * * @private * @param {Object} object The object to modify. * @param {string} key The key of the property to assign. * @param {*} value The value to assign. */ function baseAssignValue(object, key, value) { if (key == '__proto__' && _defineProperty) { _defineProperty(object, key, { 'configurable': true, 'enumerable': true, 'value': value, 'writable': true }); } else { object[key] = value; } } var _baseAssignValue = baseAssignValue; /** Used for built-in method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** * Assigns `value` to `key` of `object` if the existing value is not equivalent * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) * for equality comparisons. * * @private * @param {Object} object The object to modify. * @param {string} key The key of the property to assign. * @param {*} value The value to assign. */ function assignValue(object, key, value) { var objValue = object[key]; if (!(hasOwnProperty.call(object, key) && eq_1(objValue, value)) || (value === undefined && !(key in object))) { _baseAssignValue(object, key, value); } } var _assignValue = assignValue; /** Used as references for various `Number` constants. */ var MAX_SAFE_INTEGER = 9007199254740991; /** Used to detect unsigned integer values. */ var reIsUint = /^(?:0|[1-9]\d*)$/; /** * Checks if `value` is a valid array-like index. * * @private * @param {*} value The value to check. * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index. * @returns {boolean} Returns `true` if `value` is a valid index, else `false`. */ function isIndex(value, length) { var type = typeof value; length = length == null ? MAX_SAFE_INTEGER : length; return !!length && (type == 'number' || (type != 'symbol' && reIsUint.test(value))) && (value > -1 && value % 1 == 0 && value < length); } var _isIndex = isIndex; /** * The base implementation of `_.set`. * * @private * @param {Object} object The object to modify. * @param {Array|string} path The path of the property to set. * @param {*} value The value to set. * @param {Function} [customizer] The function to customize path creation. * @returns {Object} Returns `object`. */ function baseSet(object, path, value, customizer) { if (!isObject_1(object)) { return object; } path = _castPath(path, object); var index = -1, length = path.length, lastIndex = length - 1, nested = object; while (nested != null && ++index < length) { var key = _toKey(path[index]), newValue = value; if (key === '__proto__' || key === 'constructor' || key === 'prototype') { return object; } if (index != lastIndex) { var objValue = nested[key]; newValue = customizer ? customizer(objValue, key, nested) : undefined; if (newValue === undefined) { newValue = isObject_1(objValue) ? objValue : (_isIndex(path[index + 1]) ? [] : {}); } } _assignValue(nested, key, newValue); nested = nested[key]; } return object; } var _baseSet = baseSet; /** * Sets the value at `path` of `object`. If a portion of `path` doesn't exist, * it's created. Arrays are created for missing index properties while objects * are created for all other missing properties. Use `_.setWith` to customize * `path` creation. * * **Note:** This method mutates `object`. * * @static * @memberOf _ * @since 3.7.0 * @category Object * @param {Object} object The object to modify. * @param {Array|string} path The path of the property to set. * @param {*} value The value to set. * @returns {Object} Returns `object`. * @example * * var object = { 'a': [{ 'b': { 'c': 3 } }] }; * * _.set(object, 'a[0].b.c', 4); * console.log(object.a[0].b.c); * // => 4 * * _.set(object, ['x', '0', 'y', 'z'], 5); * console.log(object.x[0].y.z); * // => 5 */ function set(object, path, value) { return object == null ? object : _baseSet(object, path, value); } var set_1 = set; /** * Copies the values of `source` to `array`. * * @private * @param {Array} source The array to copy values from. * @param {Array} [array=[]] The array to copy values to. * @returns {Array} Returns `array`. */ function copyArray(source, array) { var index = -1, length = source.length; array || (array = Array(length)); while (++index < length) { array[index] = source[index]; } return array; } var _copyArray = copyArray; /** * Converts `value` to a property path array. * * @static * @memberOf _ * @since 4.0.0 * @category Util * @param {*} value The value to convert. * @returns {Array} Returns the new property path array. * @example * * _.toPath('a.b.c'); * // => ['a', 'b', 'c'] * * _.toPath('a[0].b.c'); * // => ['a', '0', 'b', 'c'] */ function toPath(value) { if (isArray_1(value)) { return _arrayMap(value, _toKey); } return isSymbol_1(value) ? [value] : _copyArray(_stringToPath(toString_1(value))); } var toPath_1 = toPath; var define$2 = { // access data field data: function data(params) { var defaults = { field: 'data', bindingEvent: 'data', allowBinding: false, allowSetting: false, allowGetting: false, settingEvent: 'data', settingTriggersEvent: false, triggerFnName: 'trigger', immutableKeys: {}, // key => true if immutable updateStyle: false, beforeGet: function beforeGet(self) {}, beforeSet: function beforeSet(self, obj) {}, onSet: function onSet(self) {}, canSet: function canSet(self) { return true; } }; params = extend({}, defaults, params); return function dataImpl(name, value) { var p = params; var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var single = selfIsArrayLike ? self[0] : self; // .data('foo', ...) if (string(name)) { // set or get property var isPathLike = name.indexOf('.') !== -1; // there might be a normal field with a dot var path = isPathLike && toPath_1(name); // .data('foo') if (p.allowGetting && value === undefined) { // get var ret; if (single) { p.beforeGet(single); // check if it's path and a field with the same name doesn't exist if (path && single._private[p.field][name] === undefined) { ret = get_1(single._private[p.field], path); } else { ret = single._private[p.field][name]; } } return ret; // .data('foo', 'bar') } else if (p.allowSetting && value !== undefined) { // set var valid = !p.immutableKeys[name]; if (valid) { var change = _defineProperty$1({}, name, value); p.beforeSet(self, change); for (var i = 0, l = all.length; i < l; i++) { var ele = all[i]; if (p.canSet(ele)) { if (path && single._private[p.field][name] === undefined) { set_1(ele._private[p.field], path, value); } else { ele._private[p.field][name] = value; } } } // update mappers if asked if (p.updateStyle) { self.updateStyle(); } // call onSet callback p.onSet(self); if (p.settingTriggersEvent) { self[p.triggerFnName](p.settingEvent); } } } // .data({ 'foo': 'bar' }) } else if (p.allowSetting && plainObject(name)) { // extend var obj = name; var k, v; var keys = Object.keys(obj); p.beforeSet(self, obj); for (var _i = 0; _i < keys.length; _i++) { k = keys[_i]; v = obj[k]; var _valid = !p.immutableKeys[k]; if (_valid) { for (var j = 0; j < all.length; j++) { var _ele = all[j]; if (p.canSet(_ele)) { _ele._private[p.field][k] = v; } } } } // update mappers if asked if (p.updateStyle) { self.updateStyle(); } // call onSet callback p.onSet(self); if (p.settingTriggersEvent) { self[p.triggerFnName](p.settingEvent); } // .data(function(){ ... }) } else if (p.allowBinding && fn$6(name)) { // bind to event var fn = name; self.on(p.bindingEvent, fn); // .data() } else if (p.allowGetting && name === undefined) { // get whole object var _ret; if (single) { p.beforeGet(single); _ret = single._private[p.field]; } return _ret; } return self; // maintain chainability }; // function }, // data // remove data field removeData: function removeData(params) { var defaults = { field: 'data', event: 'data', triggerFnName: 'trigger', triggerEvent: false, immutableKeys: {} // key => true if immutable }; params = extend({}, defaults, params); return function removeDataImpl(names) { var p = params; var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like // .removeData('foo bar') if (string(names)) { // then get the list of keys, and delete them var keys = names.split(/\s+/); var l = keys.length; for (var i = 0; i < l; i++) { // delete each non-empty key var key = keys[i]; if (emptyString(key)) { continue; } var valid = !p.immutableKeys[key]; // not valid if immutable if (valid) { for (var i_a = 0, l_a = all.length; i_a < l_a; i_a++) { all[i_a]._private[p.field][key] = undefined; } } } if (p.triggerEvent) { self[p.triggerFnName](p.event); } // .removeData() } else if (names === undefined) { // then delete all keys for (var _i_a = 0, _l_a = all.length; _i_a < _l_a; _i_a++) { var _privateFields = all[_i_a]._private[p.field]; var _keys = Object.keys(_privateFields); for (var _i2 = 0; _i2 < _keys.length; _i2++) { var _key = _keys[_i2]; var validKeyToDelete = !p.immutableKeys[_key]; if (validKeyToDelete) { _privateFields[_key] = undefined; } } } if (p.triggerEvent) { self[p.triggerFnName](p.event); } } return self; // maintain chaining }; // function } // removeData }; // define var define$1 = { eventAliasesOn: function eventAliasesOn(proto) { var p = proto; p.addListener = p.listen = p.bind = p.on; p.unlisten = p.unbind = p.off = p.removeListener; p.trigger = p.emit; // this is just a wrapper alias of .on() p.pon = p.promiseOn = function (events, selector) { var self = this; var args = Array.prototype.slice.call(arguments, 0); return new Promise$1(function (resolve, reject) { var callback = function callback(e) { self.off.apply(self, offArgs); resolve(e); }; var onArgs = args.concat([callback]); var offArgs = onArgs.concat([]); self.on.apply(self, onArgs); }); }; } }; // define // use this module to cherry pick functions into your prototype var define = {}; [define$3, define$2, define$1].forEach(function (m) { extend(define, m); }); var elesfn$i = { animate: define.animate(), animation: define.animation(), animated: define.animated(), clearQueue: define.clearQueue(), delay: define.delay(), delayAnimation: define.delayAnimation(), stop: define.stop() }; var elesfn$h = { classes: function classes(_classes) { var self = this; if (_classes === undefined) { var ret = []; self[0]._private.classes.forEach(function (cls) { return ret.push(cls); }); return ret; } else if (!array(_classes)) { // extract classes from string _classes = (_classes || '').match(/\S+/g) || []; } var changed = []; var classesSet = new Set$1(_classes); // check and update each ele for (var j = 0; j < self.length; j++) { var ele = self[j]; var _p = ele._private; var eleClasses = _p.classes; var changedEle = false; // check if ele has all of the passed classes for (var i = 0; i < _classes.length; i++) { var cls = _classes[i]; var eleHasClass = eleClasses.has(cls); if (!eleHasClass) { changedEle = true; break; } } // check if ele has classes outside of those passed if (!changedEle) { changedEle = eleClasses.size !== _classes.length; } if (changedEle) { _p.classes = classesSet; changed.push(ele); } } // trigger update style on those eles that had class changes if (changed.length > 0) { this.spawn(changed).updateStyle().emit('class'); } return self; }, addClass: function addClass(classes) { return this.toggleClass(classes, true); }, hasClass: function hasClass(className) { var ele = this[0]; return ele != null && ele._private.classes.has(className); }, toggleClass: function toggleClass(classes, toggle) { if (!array(classes)) { // extract classes from string classes = classes.match(/\S+/g) || []; } var self = this; var toggleUndefd = toggle === undefined; var changed = []; // eles who had classes changed for (var i = 0, il = self.length; i < il; i++) { var ele = self[i]; var eleClasses = ele._private.classes; var changedEle = false; for (var j = 0; j < classes.length; j++) { var cls = classes[j]; var hasClass = eleClasses.has(cls); var changedNow = false; if (toggle || toggleUndefd && !hasClass) { eleClasses.add(cls); changedNow = true; } else if (!toggle || toggleUndefd && hasClass) { eleClasses["delete"](cls); changedNow = true; } if (!changedEle && changedNow) { changed.push(ele); changedEle = true; } } // for j classes } // for i eles // trigger update style on those eles that had class changes if (changed.length > 0) { this.spawn(changed).updateStyle().emit('class'); } return self; }, removeClass: function removeClass(classes) { return this.toggleClass(classes, false); }, flashClass: function flashClass(classes, duration) { var self = this; if (duration == null) { duration = 250; } else if (duration === 0) { return self; // nothing to do really } self.addClass(classes); setTimeout(function () { self.removeClass(classes); }, duration); return self; } }; elesfn$h.className = elesfn$h.classNames = elesfn$h.classes; // tokens in the query language var tokens = { metaChar: '[\\!\\"\\#\\$\\%\\&\\\'\\(\\)\\*\\+\\,\\.\\/\\:\\;\\<\\=\\>\\?\\@\\[\\]\\^\\`\\{\\|\\}\\~]', // chars we need to escape in let names, etc comparatorOp: '=|\\!=|>|>=|<|<=|\\$=|\\^=|\\*=', // binary comparison op (used in data selectors) boolOp: '\\?|\\!|\\^', // boolean (unary) operators (used in data selectors) string: '"(?:\\\\"|[^"])*"' + '|' + "'(?:\\\\'|[^'])*'", // string literals (used in data selectors) -- doublequotes | singlequotes number: number, // number literal (used in data selectors) --- e.g. 0.1234, 1234, 12e123 meta: 'degree|indegree|outdegree', // allowed metadata fields (i.e. allowed functions to use from Collection) separator: '\\s*,\\s*', // queries are separated by commas, e.g. edge[foo = 'bar'], node.someClass descendant: '\\s+', child: '\\s+>\\s+', subject: '\\$', group: 'node|edge|\\*', directedEdge: '\\s+->\\s+', undirectedEdge: '\\s+<->\\s+' }; tokens.variable = '(?:[\\w-.]|(?:\\\\' + tokens.metaChar + '))+'; // a variable name can have letters, numbers, dashes, and periods tokens.className = '(?:[\\w-]|(?:\\\\' + tokens.metaChar + '))+'; // a class name has the same rules as a variable except it can't have a '.' in the name tokens.value = tokens.string + '|' + tokens.number; // a value literal, either a string or number tokens.id = tokens.variable; // an element id (follows variable conventions) (function () { var ops, op, i; // add @ variants to comparatorOp ops = tokens.comparatorOp.split('|'); for (i = 0; i < ops.length; i++) { op = ops[i]; tokens.comparatorOp += '|@' + op; } // add ! variants to comparatorOp ops = tokens.comparatorOp.split('|'); for (i = 0; i < ops.length; i++) { op = ops[i]; if (op.indexOf('!') >= 0) { continue; } // skip ops that explicitly contain ! if (op === '=') { continue; } // skip = b/c != is explicitly defined tokens.comparatorOp += '|\\!' + op; } })(); /** * Make a new query object * * @prop type {Type} The type enum (int) of the query * @prop checks List of checks to make against an ele to test for a match */ var newQuery = function newQuery() { return { checks: [] }; }; /** * A check type enum-like object. Uses integer values for fast match() lookup. * The ordering does not matter as long as the ints are unique. */ var Type = { /** E.g. node */ GROUP: 0, /** A collection of elements */ COLLECTION: 1, /** A filter(ele) function */ FILTER: 2, /** E.g. [foo > 1] */ DATA_COMPARE: 3, /** E.g. [foo] */ DATA_EXIST: 4, /** E.g. [?foo] */ DATA_BOOL: 5, /** E.g. [[degree > 2]] */ META_COMPARE: 6, /** E.g. :selected */ STATE: 7, /** E.g. #foo */ ID: 8, /** E.g. .foo */ CLASS: 9, /** E.g. #foo <-> #bar */ UNDIRECTED_EDGE: 10, /** E.g. #foo -> #bar */ DIRECTED_EDGE: 11, /** E.g. $#foo -> #bar */ NODE_SOURCE: 12, /** E.g. #foo -> $#bar */ NODE_TARGET: 13, /** E.g. $#foo <-> #bar */ NODE_NEIGHBOR: 14, /** E.g. #foo > #bar */ CHILD: 15, /** E.g. #foo #bar */ DESCENDANT: 16, /** E.g. $#foo > #bar */ PARENT: 17, /** E.g. $#foo #bar */ ANCESTOR: 18, /** E.g. #foo > $bar > #baz */ COMPOUND_SPLIT: 19, /** Always matches, useful placeholder for subject in `COMPOUND_SPLIT` */ TRUE: 20 }; var stateSelectors = [{ selector: ':selected', matches: function matches(ele) { return ele.selected(); } }, { selector: ':unselected', matches: function matches(ele) { return !ele.selected(); } }, { selector: ':selectable', matches: function matches(ele) { return ele.selectable(); } }, { selector: ':unselectable', matches: function matches(ele) { return !ele.selectable(); } }, { selector: ':locked', matches: function matches(ele) { return ele.locked(); } }, { selector: ':unlocked', matches: function matches(ele) { return !ele.locked(); } }, { selector: ':visible', matches: function matches(ele) { return ele.visible(); } }, { selector: ':hidden', matches: function matches(ele) { return !ele.visible(); } }, { selector: ':transparent', matches: function matches(ele) { return ele.transparent(); } }, { selector: ':grabbed', matches: function matches(ele) { return ele.grabbed(); } }, { selector: ':free', matches: function matches(ele) { return !ele.grabbed(); } }, { selector: ':removed', matches: function matches(ele) { return ele.removed(); } }, { selector: ':inside', matches: function matches(ele) { return !ele.removed(); } }, { selector: ':grabbable', matches: function matches(ele) { return ele.grabbable(); } }, { selector: ':ungrabbable', matches: function matches(ele) { return !ele.grabbable(); } }, { selector: ':animated', matches: function matches(ele) { return ele.animated(); } }, { selector: ':unanimated', matches: function matches(ele) { return !ele.animated(); } }, { selector: ':parent', matches: function matches(ele) { return ele.isParent(); } }, { selector: ':childless', matches: function matches(ele) { return ele.isChildless(); } }, { selector: ':child', matches: function matches(ele) { return ele.isChild(); } }, { selector: ':orphan', matches: function matches(ele) { return ele.isOrphan(); } }, { selector: ':nonorphan', matches: function matches(ele) { return ele.isChild(); } }, { selector: ':compound', matches: function matches(ele) { if (ele.isNode()) { return ele.isParent(); } else { return ele.source().isParent() || ele.target().isParent(); } } }, { selector: ':loop', matches: function matches(ele) { return ele.isLoop(); } }, { selector: ':simple', matches: function matches(ele) { return ele.isSimple(); } }, { selector: ':active', matches: function matches(ele) { return ele.active(); } }, { selector: ':inactive', matches: function matches(ele) { return !ele.active(); } }, { selector: ':backgrounding', matches: function matches(ele) { return ele.backgrounding(); } }, { selector: ':nonbackgrounding', matches: function matches(ele) { return !ele.backgrounding(); } }].sort(function (a, b) { // n.b. selectors that are starting substrings of others must have the longer ones first return descending(a.selector, b.selector); }); var lookup = function () { var selToFn = {}; var s; for (var i = 0; i < stateSelectors.length; i++) { s = stateSelectors[i]; selToFn[s.selector] = s.matches; } return selToFn; }(); var stateSelectorMatches = function stateSelectorMatches(sel, ele) { return lookup[sel](ele); }; var stateSelectorRegex = '(' + stateSelectors.map(function (s) { return s.selector; }).join('|') + ')'; // when a token like a variable has escaped meta characters, we need to clean the backslashes out // so that values get compared properly in Selector.filter() var cleanMetaChars = function cleanMetaChars(str) { return str.replace(new RegExp('\\\\(' + tokens.metaChar + ')', 'g'), function (match, $1) { return $1; }); }; var replaceLastQuery = function replaceLastQuery(selector, examiningQuery, replacementQuery) { selector[selector.length - 1] = replacementQuery; }; // NOTE: add new expression syntax here to have it recognised by the parser; // - a query contains all adjacent (i.e. no separator in between) expressions; // - the current query is stored in selector[i] // - you need to check the query objects in match() for it actually filter properly, but that's pretty straight forward var exprs = [{ name: 'group', // just used for identifying when debugging query: true, regex: '(' + tokens.group + ')', populate: function populate(selector, query, _ref) { var _ref2 = _slicedToArray(_ref, 1), group = _ref2[0]; query.checks.push({ type: Type.GROUP, value: group === '*' ? group : group + 's' }); } }, { name: 'state', query: true, regex: stateSelectorRegex, populate: function populate(selector, query, _ref3) { var _ref4 = _slicedToArray(_ref3, 1), state = _ref4[0]; query.checks.push({ type: Type.STATE, value: state }); } }, { name: 'id', query: true, regex: '\\#(' + tokens.id + ')', populate: function populate(selector, query, _ref5) { var _ref6 = _slicedToArray(_ref5, 1), id = _ref6[0]; query.checks.push({ type: Type.ID, value: cleanMetaChars(id) }); } }, { name: 'className', query: true, regex: '\\.(' + tokens.className + ')', populate: function populate(selector, query, _ref7) { var _ref8 = _slicedToArray(_ref7, 1), className = _ref8[0]; query.checks.push({ type: Type.CLASS, value: cleanMetaChars(className) }); } }, { name: 'dataExists', query: true, regex: '\\[\\s*(' + tokens.variable + ')\\s*\\]', populate: function populate(selector, query, _ref9) { var _ref10 = _slicedToArray(_ref9, 1), variable = _ref10[0]; query.checks.push({ type: Type.DATA_EXIST, field: cleanMetaChars(variable) }); } }, { name: 'dataCompare', query: true, regex: '\\[\\s*(' + tokens.variable + ')\\s*(' + tokens.comparatorOp + ')\\s*(' + tokens.value + ')\\s*\\]', populate: function populate(selector, query, _ref11) { var _ref12 = _slicedToArray(_ref11, 3), variable = _ref12[0], comparatorOp = _ref12[1], value = _ref12[2]; var valueIsString = new RegExp('^' + tokens.string + '$').exec(value) != null; if (valueIsString) { value = value.substring(1, value.length - 1); } else { value = parseFloat(value); } query.checks.push({ type: Type.DATA_COMPARE, field: cleanMetaChars(variable), operator: comparatorOp, value: value }); } }, { name: 'dataBool', query: true, regex: '\\[\\s*(' + tokens.boolOp + ')\\s*(' + tokens.variable + ')\\s*\\]', populate: function populate(selector, query, _ref13) { var _ref14 = _slicedToArray(_ref13, 2), boolOp = _ref14[0], variable = _ref14[1]; query.checks.push({ type: Type.DATA_BOOL, field: cleanMetaChars(variable), operator: boolOp }); } }, { name: 'metaCompare', query: true, regex: '\\[\\[\\s*(' + tokens.meta + ')\\s*(' + tokens.comparatorOp + ')\\s*(' + tokens.number + ')\\s*\\]\\]', populate: function populate(selector, query, _ref15) { var _ref16 = _slicedToArray(_ref15, 3), meta = _ref16[0], comparatorOp = _ref16[1], number = _ref16[2]; query.checks.push({ type: Type.META_COMPARE, field: cleanMetaChars(meta), operator: comparatorOp, value: parseFloat(number) }); } }, { name: 'nextQuery', separator: true, regex: tokens.separator, populate: function populate(selector, query) { var currentSubject = selector.currentSubject; var edgeCount = selector.edgeCount; var compoundCount = selector.compoundCount; var lastQ = selector[selector.length - 1]; if (currentSubject != null) { lastQ.subject = currentSubject; selector.currentSubject = null; } lastQ.edgeCount = edgeCount; lastQ.compoundCount = compoundCount; selector.edgeCount = 0; selector.compoundCount = 0; // go on to next query var nextQuery = selector[selector.length++] = newQuery(); return nextQuery; // this is the new query to be filled by the following exprs } }, { name: 'directedEdge', separator: true, regex: tokens.directedEdge, populate: function populate(selector, query) { if (selector.currentSubject == null) { // undirected edge var edgeQuery = newQuery(); var source = query; var target = newQuery(); edgeQuery.checks.push({ type: Type.DIRECTED_EDGE, source: source, target: target }); // the query in the selector should be the edge rather than the source replaceLastQuery(selector, query, edgeQuery); selector.edgeCount++; // we're now populating the target query with expressions that follow return target; } else { // source/target var srcTgtQ = newQuery(); var _source = query; var _target = newQuery(); srcTgtQ.checks.push({ type: Type.NODE_SOURCE, source: _source, target: _target }); // the query in the selector should be the neighbourhood rather than the node replaceLastQuery(selector, query, srcTgtQ); selector.edgeCount++; return _target; // now populating the target with the following expressions } } }, { name: 'undirectedEdge', separator: true, regex: tokens.undirectedEdge, populate: function populate(selector, query) { if (selector.currentSubject == null) { // undirected edge var edgeQuery = newQuery(); var source = query; var target = newQuery(); edgeQuery.checks.push({ type: Type.UNDIRECTED_EDGE, nodes: [source, target] }); // the query in the selector should be the edge rather than the source replaceLastQuery(selector, query, edgeQuery); selector.edgeCount++; // we're now populating the target query with expressions that follow return target; } else { // neighbourhood var nhoodQ = newQuery(); var node = query; var neighbor = newQuery(); nhoodQ.checks.push({ type: Type.NODE_NEIGHBOR, node: node, neighbor: neighbor }); // the query in the selector should be the neighbourhood rather than the node replaceLastQuery(selector, query, nhoodQ); return neighbor; // now populating the neighbor with following expressions } } }, { name: 'child', separator: true, regex: tokens.child, populate: function populate(selector, query) { if (selector.currentSubject == null) { // default: child query var parentChildQuery = newQuery(); var child = newQuery(); var parent = selector[selector.length - 1]; parentChildQuery.checks.push({ type: Type.CHILD, parent: parent, child: child }); // the query in the selector should be the '>' itself replaceLastQuery(selector, query, parentChildQuery); selector.compoundCount++; // we're now populating the child query with expressions that follow return child; } else if (selector.currentSubject === query) { // compound split query var compound = newQuery(); var left = selector[selector.length - 1]; var right = newQuery(); var subject = newQuery(); var _child = newQuery(); var _parent = newQuery(); // set up the root compound q compound.checks.push({ type: Type.COMPOUND_SPLIT, left: left, right: right, subject: subject }); // populate the subject and replace the q at the old spot (within left) with TRUE subject.checks = query.checks; // take the checks from the left query.checks = [{ type: Type.TRUE }]; // checks under left refs the subject implicitly // set up the right q _parent.checks.push({ type: Type.TRUE }); // parent implicitly refs the subject right.checks.push({ type: Type.PARENT, // type is swapped on right side queries parent: _parent, child: _child // empty for now }); replaceLastQuery(selector, left, compound); // update the ref since we moved things around for `query` selector.currentSubject = subject; selector.compoundCount++; return _child; // now populating the right side's child } else { // parent query // info for parent query var _parent2 = newQuery(); var _child2 = newQuery(); var pcQChecks = [{ type: Type.PARENT, parent: _parent2, child: _child2 }]; // the parent-child query takes the place of the query previously being populated _parent2.checks = query.checks; // the previous query contains the checks for the parent query.checks = pcQChecks; // pc query takes over selector.compoundCount++; return _child2; // we're now populating the child } } }, { name: 'descendant', separator: true, regex: tokens.descendant, populate: function populate(selector, query) { if (selector.currentSubject == null) { // default: descendant query var ancChQuery = newQuery(); var descendant = newQuery(); var ancestor = selector[selector.length - 1]; ancChQuery.checks.push({ type: Type.DESCENDANT, ancestor: ancestor, descendant: descendant }); // the query in the selector should be the '>' itself replaceLastQuery(selector, query, ancChQuery); selector.compoundCount++; // we're now populating the descendant query with expressions that follow return descendant; } else if (selector.currentSubject === query) { // compound split query var compound = newQuery(); var left = selector[selector.length - 1]; var right = newQuery(); var subject = newQuery(); var _descendant = newQuery(); var _ancestor = newQuery(); // set up the root compound q compound.checks.push({ type: Type.COMPOUND_SPLIT, left: left, right: right, subject: subject }); // populate the subject and replace the q at the old spot (within left) with TRUE subject.checks = query.checks; // take the checks from the left query.checks = [{ type: Type.TRUE }]; // checks under left refs the subject implicitly // set up the right q _ancestor.checks.push({ type: Type.TRUE }); // ancestor implicitly refs the subject right.checks.push({ type: Type.ANCESTOR, // type is swapped on right side queries ancestor: _ancestor, descendant: _descendant // empty for now }); replaceLastQuery(selector, left, compound); // update the ref since we moved things around for `query` selector.currentSubject = subject; selector.compoundCount++; return _descendant; // now populating the right side's descendant } else { // ancestor query // info for parent query var _ancestor2 = newQuery(); var _descendant2 = newQuery(); var adQChecks = [{ type: Type.ANCESTOR, ancestor: _ancestor2, descendant: _descendant2 }]; // the parent-child query takes the place of the query previously being populated _ancestor2.checks = query.checks; // the previous query contains the checks for the parent query.checks = adQChecks; // pc query takes over selector.compoundCount++; return _descendant2; // we're now populating the child } } }, { name: 'subject', modifier: true, regex: tokens.subject, populate: function populate(selector, query) { if (selector.currentSubject != null && selector.currentSubject !== query) { warn('Redefinition of subject in selector `' + selector.toString() + '`'); return false; } selector.currentSubject = query; var topQ = selector[selector.length - 1]; var topChk = topQ.checks[0]; var topType = topChk == null ? null : topChk.type; if (topType === Type.DIRECTED_EDGE) { // directed edge with subject on the target // change to target node check topChk.type = Type.NODE_TARGET; } else if (topType === Type.UNDIRECTED_EDGE) { // undirected edge with subject on the second node // change to neighbor check topChk.type = Type.NODE_NEIGHBOR; topChk.node = topChk.nodes[1]; // second node is subject topChk.neighbor = topChk.nodes[0]; // clean up unused fields for new type topChk.nodes = null; } } }]; exprs.forEach(function (e) { return e.regexObj = new RegExp('^' + e.regex); }); /** * Of all the expressions, find the first match in the remaining text. * @param {string} remaining The remaining text to parse * @returns The matched expression and the newly remaining text `{ expr, match, name, remaining }` */ var consumeExpr = function consumeExpr(remaining) { var expr; var match; var name; for (var j = 0; j < exprs.length; j++) { var e = exprs[j]; var n = e.name; var m = remaining.match(e.regexObj); if (m != null) { match = m; expr = e; name = n; var consumed = m[0]; remaining = remaining.substring(consumed.length); break; // we've consumed one expr, so we can return now } } return { expr: expr, match: match, name: name, remaining: remaining }; }; /** * Consume all the leading whitespace * @param {string} remaining The text to consume * @returns The text with the leading whitespace removed */ var consumeWhitespace = function consumeWhitespace(remaining) { var match = remaining.match(/^\s+/); if (match) { var consumed = match[0]; remaining = remaining.substring(consumed.length); } return remaining; }; /** * Parse the string and store the parsed representation in the Selector. * @param {string} selector The selector string * @returns `true` if the selector was successfully parsed, `false` otherwise */ var parse = function parse(selector) { var self = this; var remaining = self.inputText = selector; var currentQuery = self[0] = newQuery(); self.length = 1; remaining = consumeWhitespace(remaining); // get rid of leading whitespace for (;;) { var exprInfo = consumeExpr(remaining); if (exprInfo.expr == null) { warn('The selector `' + selector + '`is invalid'); return false; } else { var args = exprInfo.match.slice(1); // let the token populate the selector object in currentQuery var ret = exprInfo.expr.populate(self, currentQuery, args); if (ret === false) { return false; // exit if population failed } else if (ret != null) { currentQuery = ret; // change the current query to be filled if the expr specifies } } remaining = exprInfo.remaining; // we're done when there's nothing left to parse if (remaining.match(/^\s*$/)) { break; } } var lastQ = self[self.length - 1]; if (self.currentSubject != null) { lastQ.subject = self.currentSubject; } lastQ.edgeCount = self.edgeCount; lastQ.compoundCount = self.compoundCount; for (var i = 0; i < self.length; i++) { var q = self[i]; // in future, this could potentially be allowed if there were operator precedence and detection of invalid combinations if (q.compoundCount > 0 && q.edgeCount > 0) { warn('The selector `' + selector + '` is invalid because it uses both a compound selector and an edge selector'); return false; } if (q.edgeCount > 1) { warn('The selector `' + selector + '` is invalid because it uses multiple edge selectors'); return false; } else if (q.edgeCount === 1) { warn('The selector `' + selector + '` is deprecated. Edge selectors do not take effect on changes to source and target nodes after an edge is added, for performance reasons. Use a class or data selector on edges instead, updating the class or data of an edge when your app detects a change in source or target nodes.'); } } return true; // success }; /** * Get the selector represented as a string. This value uses default formatting, * so things like spacing may differ from the input text passed to the constructor. * @returns {string} The selector string */ var toString = function toString() { if (this.toStringCache != null) { return this.toStringCache; } var clean = function clean(obj) { if (obj == null) { return ''; } else { return obj; } }; var cleanVal = function cleanVal(val) { if (string(val)) { return '"' + val + '"'; } else { return clean(val); } }; var space = function space(val) { return ' ' + val + ' '; }; var checkToString = function checkToString(check, subject) { var type = check.type, value = check.value; switch (type) { case Type.GROUP: { var group = clean(value); return group.substring(0, group.length - 1); } case Type.DATA_COMPARE: { var field = check.field, operator = check.operator; return '[' + field + space(clean(operator)) + cleanVal(value) + ']'; } case Type.DATA_BOOL: { var _operator = check.operator, _field = check.field; return '[' + clean(_operator) + _field + ']'; } case Type.DATA_EXIST: { var _field2 = check.field; return '[' + _field2 + ']'; } case Type.META_COMPARE: { var _operator2 = check.operator, _field3 = check.field; return '[[' + _field3 + space(clean(_operator2)) + cleanVal(value) + ']]'; } case Type.STATE: { return value; } case Type.ID: { return '#' + value; } case Type.CLASS: { return '.' + value; } case Type.PARENT: case Type.CHILD: { return queryToString(check.parent, subject) + space('>') + queryToString(check.child, subject); } case Type.ANCESTOR: case Type.DESCENDANT: { return queryToString(check.ancestor, subject) + ' ' + queryToString(check.descendant, subject); } case Type.COMPOUND_SPLIT: { var lhs = queryToString(check.left, subject); var sub = queryToString(check.subject, subject); var rhs = queryToString(check.right, subject); return lhs + (lhs.length > 0 ? ' ' : '') + sub + rhs; } case Type.TRUE: { return ''; } } }; var queryToString = function queryToString(query, subject) { return query.checks.reduce(function (str, chk, i) { return str + (subject === query && i === 0 ? '$' : '') + checkToString(chk, subject); }, ''); }; var str = ''; for (var i = 0; i < this.length; i++) { var query = this[i]; str += queryToString(query, query.subject); if (this.length > 1 && i < this.length - 1) { str += ', '; } } this.toStringCache = str; return str; }; var parse$1 = { parse: parse, toString: toString }; var valCmp = function valCmp(fieldVal, operator, value) { var matches; var isFieldStr = string(fieldVal); var isFieldNum = number$1(fieldVal); var isValStr = string(value); var fieldStr, valStr; var caseInsensitive = false; var notExpr = false; var isIneqCmp = false; if (operator.indexOf('!') >= 0) { operator = operator.replace('!', ''); notExpr = true; } if (operator.indexOf('@') >= 0) { operator = operator.replace('@', ''); caseInsensitive = true; } if (isFieldStr || isValStr || caseInsensitive) { fieldStr = !isFieldStr && !isFieldNum ? '' : '' + fieldVal; valStr = '' + value; } // if we're doing a case insensitive comparison, then we're using a STRING comparison // even if we're comparing numbers if (caseInsensitive) { fieldVal = fieldStr = fieldStr.toLowerCase(); value = valStr = valStr.toLowerCase(); } switch (operator) { case '*=': matches = fieldStr.indexOf(valStr) >= 0; break; case '$=': matches = fieldStr.indexOf(valStr, fieldStr.length - valStr.length) >= 0; break; case '^=': matches = fieldStr.indexOf(valStr) === 0; break; case '=': matches = fieldVal === value; break; case '>': isIneqCmp = true; matches = fieldVal > value; break; case '>=': isIneqCmp = true; matches = fieldVal >= value; break; case '<': isIneqCmp = true; matches = fieldVal < value; break; case '<=': isIneqCmp = true; matches = fieldVal <= value; break; default: matches = false; break; } // apply the not op, but null vals for inequalities should always stay non-matching if (notExpr && (fieldVal != null || !isIneqCmp)) { matches = !matches; } return matches; }; var boolCmp = function boolCmp(fieldVal, operator) { switch (operator) { case '?': return fieldVal ? true : false; case '!': return fieldVal ? false : true; case '^': return fieldVal === undefined; } }; var existCmp = function existCmp(fieldVal) { return fieldVal !== undefined; }; var data$1 = function data(ele, field) { return ele.data(field); }; var meta = function meta(ele, field) { return ele[field](); }; /** A lookup of `match(check, ele)` functions by `Type` int */ var match = []; /** * Returns whether the query matches for the element * @param query The `{ type, value, ... }` query object * @param ele The element to compare against */ var matches$1 = function matches(query, ele) { return query.checks.every(function (chk) { return match[chk.type](chk, ele); }); }; match[Type.GROUP] = function (check, ele) { var group = check.value; return group === '*' || group === ele.group(); }; match[Type.STATE] = function (check, ele) { var stateSelector = check.value; return stateSelectorMatches(stateSelector, ele); }; match[Type.ID] = function (check, ele) { var id = check.value; return ele.id() === id; }; match[Type.CLASS] = function (check, ele) { var cls = check.value; return ele.hasClass(cls); }; match[Type.META_COMPARE] = function (check, ele) { var field = check.field, operator = check.operator, value = check.value; return valCmp(meta(ele, field), operator, value); }; match[Type.DATA_COMPARE] = function (check, ele) { var field = check.field, operator = check.operator, value = check.value; return valCmp(data$1(ele, field), operator, value); }; match[Type.DATA_BOOL] = function (check, ele) { var field = check.field, operator = check.operator; return boolCmp(data$1(ele, field), operator); }; match[Type.DATA_EXIST] = function (check, ele) { var field = check.field; check.operator; return existCmp(data$1(ele, field)); }; match[Type.UNDIRECTED_EDGE] = function (check, ele) { var qA = check.nodes[0]; var qB = check.nodes[1]; var src = ele.source(); var tgt = ele.target(); return matches$1(qA, src) && matches$1(qB, tgt) || matches$1(qB, src) && matches$1(qA, tgt); }; match[Type.NODE_NEIGHBOR] = function (check, ele) { return matches$1(check.node, ele) && ele.neighborhood().some(function (n) { return n.isNode() && matches$1(check.neighbor, n); }); }; match[Type.DIRECTED_EDGE] = function (check, ele) { return matches$1(check.source, ele.source()) && matches$1(check.target, ele.target()); }; match[Type.NODE_SOURCE] = function (check, ele) { return matches$1(check.source, ele) && ele.outgoers().some(function (n) { return n.isNode() && matches$1(check.target, n); }); }; match[Type.NODE_TARGET] = function (check, ele) { return matches$1(check.target, ele) && ele.incomers().some(function (n) { return n.isNode() && matches$1(check.source, n); }); }; match[Type.CHILD] = function (check, ele) { return matches$1(check.child, ele) && matches$1(check.parent, ele.parent()); }; match[Type.PARENT] = function (check, ele) { return matches$1(check.parent, ele) && ele.children().some(function (c) { return matches$1(check.child, c); }); }; match[Type.DESCENDANT] = function (check, ele) { return matches$1(check.descendant, ele) && ele.ancestors().some(function (a) { return matches$1(check.ancestor, a); }); }; match[Type.ANCESTOR] = function (check, ele) { return matches$1(check.ancestor, ele) && ele.descendants().some(function (d) { return matches$1(check.descendant, d); }); }; match[Type.COMPOUND_SPLIT] = function (check, ele) { return matches$1(check.subject, ele) && matches$1(check.left, ele) && matches$1(check.right, ele); }; match[Type.TRUE] = function () { return true; }; match[Type.COLLECTION] = function (check, ele) { var collection = check.value; return collection.has(ele); }; match[Type.FILTER] = function (check, ele) { var filter = check.value; return filter(ele); }; // filter an existing collection var filter = function filter(collection) { var self = this; // for 1 id #foo queries, just get the element if (self.length === 1 && self[0].checks.length === 1 && self[0].checks[0].type === Type.ID) { return collection.getElementById(self[0].checks[0].value).collection(); } var selectorFunction = function selectorFunction(element) { for (var j = 0; j < self.length; j++) { var query = self[j]; if (matches$1(query, element)) { return true; } } return false; }; if (self.text() == null) { selectorFunction = function selectorFunction() { return true; }; } return collection.filter(selectorFunction); }; // filter // does selector match a single element? var matches = function matches(ele) { var self = this; for (var j = 0; j < self.length; j++) { var query = self[j]; if (matches$1(query, ele)) { return true; } } return false; }; // matches var matching = { matches: matches, filter: filter }; var Selector = function Selector(selector) { this.inputText = selector; this.currentSubject = null; this.compoundCount = 0; this.edgeCount = 0; this.length = 0; if (selector == null || string(selector) && selector.match(/^\s*$/)) ; else if (elementOrCollection(selector)) { this.addQuery({ checks: [{ type: Type.COLLECTION, value: selector.collection() }] }); } else if (fn$6(selector)) { this.addQuery({ checks: [{ type: Type.FILTER, value: selector }] }); } else if (string(selector)) { if (!this.parse(selector)) { this.invalid = true; } } else { error('A selector must be created from a string; found '); } }; var selfn = Selector.prototype; [parse$1, matching].forEach(function (p) { return extend(selfn, p); }); selfn.text = function () { return this.inputText; }; selfn.size = function () { return this.length; }; selfn.eq = function (i) { return this[i]; }; selfn.sameText = function (otherSel) { return !this.invalid && !otherSel.invalid && this.text() === otherSel.text(); }; selfn.addQuery = function (q) { this[this.length++] = q; }; selfn.selector = selfn.toString; var elesfn$g = { allAre: function allAre(selector) { var selObj = new Selector(selector); return this.every(function (ele) { return selObj.matches(ele); }); }, is: function is(selector) { var selObj = new Selector(selector); return this.some(function (ele) { return selObj.matches(ele); }); }, some: function some(fn, thisArg) { for (var i = 0; i < this.length; i++) { var ret = !thisArg ? fn(this[i], i, this) : fn.apply(thisArg, [this[i], i, this]); if (ret) { return true; } } return false; }, every: function every(fn, thisArg) { for (var i = 0; i < this.length; i++) { var ret = !thisArg ? fn(this[i], i, this) : fn.apply(thisArg, [this[i], i, this]); if (!ret) { return false; } } return true; }, same: function same(collection) { // cheap collection ref check if (this === collection) { return true; } collection = this.cy().collection(collection); var thisLength = this.length; var collectionLength = collection.length; // cheap length check if (thisLength !== collectionLength) { return false; } // cheap element ref check if (thisLength === 1) { return this[0] === collection[0]; } return this.every(function (ele) { return collection.hasElementWithId(ele.id()); }); }, anySame: function anySame(collection) { collection = this.cy().collection(collection); return this.some(function (ele) { return collection.hasElementWithId(ele.id()); }); }, allAreNeighbors: function allAreNeighbors(collection) { collection = this.cy().collection(collection); var nhood = this.neighborhood(); return collection.every(function (ele) { return nhood.hasElementWithId(ele.id()); }); }, contains: function contains(collection) { collection = this.cy().collection(collection); var self = this; return collection.every(function (ele) { return self.hasElementWithId(ele.id()); }); } }; elesfn$g.allAreNeighbours = elesfn$g.allAreNeighbors; elesfn$g.has = elesfn$g.contains; elesfn$g.equal = elesfn$g.equals = elesfn$g.same; var cache = function cache(fn, name) { return function traversalCache(arg1, arg2, arg3, arg4) { var selectorOrEles = arg1; var eles = this; var key; if (selectorOrEles == null) { key = ''; } else if (elementOrCollection(selectorOrEles) && selectorOrEles.length === 1) { key = selectorOrEles.id(); } if (eles.length === 1 && key) { var _p = eles[0]._private; var tch = _p.traversalCache = _p.traversalCache || {}; var ch = tch[name] = tch[name] || []; var hash = hashString(key); var cacheHit = ch[hash]; if (cacheHit) { return cacheHit; } else { return ch[hash] = fn.call(eles, arg1, arg2, arg3, arg4); } } else { return fn.call(eles, arg1, arg2, arg3, arg4); } }; }; var elesfn$f = { parent: function parent(selector) { var parents = []; // optimisation for single ele call if (this.length === 1) { var parent = this[0]._private.parent; if (parent) { return parent; } } for (var i = 0; i < this.length; i++) { var ele = this[i]; var _parent = ele._private.parent; if (_parent) { parents.push(_parent); } } return this.spawn(parents, true).filter(selector); }, parents: function parents(selector) { var parents = []; var eles = this.parent(); while (eles.nonempty()) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; parents.push(ele); } eles = eles.parent(); } return this.spawn(parents, true).filter(selector); }, commonAncestors: function commonAncestors(selector) { var ancestors; for (var i = 0; i < this.length; i++) { var ele = this[i]; var parents = ele.parents(); ancestors = ancestors || parents; ancestors = ancestors.intersect(parents); // current list must be common with current ele parents set } return ancestors.filter(selector); }, orphans: function orphans(selector) { return this.stdFilter(function (ele) { return ele.isOrphan(); }).filter(selector); }, nonorphans: function nonorphans(selector) { return this.stdFilter(function (ele) { return ele.isChild(); }).filter(selector); }, children: cache(function (selector) { var children = []; for (var i = 0; i < this.length; i++) { var ele = this[i]; var eleChildren = ele._private.children; for (var j = 0; j < eleChildren.length; j++) { children.push(eleChildren[j]); } } return this.spawn(children, true).filter(selector); }, 'children'), siblings: function siblings(selector) { return this.parent().children().not(this).filter(selector); }, isParent: function isParent() { var ele = this[0]; if (ele) { return ele.isNode() && ele._private.children.length !== 0; } }, isChildless: function isChildless() { var ele = this[0]; if (ele) { return ele.isNode() && ele._private.children.length === 0; } }, isChild: function isChild() { var ele = this[0]; if (ele) { return ele.isNode() && ele._private.parent != null; } }, isOrphan: function isOrphan() { var ele = this[0]; if (ele) { return ele.isNode() && ele._private.parent == null; } }, descendants: function descendants(selector) { var elements = []; function add(eles) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; elements.push(ele); if (ele.children().nonempty()) { add(ele.children()); } } } add(this.children()); return this.spawn(elements, true).filter(selector); } }; function forEachCompound(eles, fn, includeSelf, recursiveStep) { var q = []; var did = new Set$1(); var cy = eles.cy(); var hasCompounds = cy.hasCompoundNodes(); for (var i = 0; i < eles.length; i++) { var ele = eles[i]; if (includeSelf) { q.push(ele); } else if (hasCompounds) { recursiveStep(q, did, ele); } } while (q.length > 0) { var _ele = q.shift(); fn(_ele); did.add(_ele.id()); if (hasCompounds) { recursiveStep(q, did, _ele); } } return eles; } function addChildren(q, did, ele) { if (ele.isParent()) { var children = ele._private.children; for (var i = 0; i < children.length; i++) { var child = children[i]; if (!did.has(child.id())) { q.push(child); } } } } // very efficient version of eles.add( eles.descendants() ).forEach() // for internal use elesfn$f.forEachDown = function (fn) { var includeSelf = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; return forEachCompound(this, fn, includeSelf, addChildren); }; function addParent(q, did, ele) { if (ele.isChild()) { var parent = ele._private.parent; if (!did.has(parent.id())) { q.push(parent); } } } elesfn$f.forEachUp = function (fn) { var includeSelf = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; return forEachCompound(this, fn, includeSelf, addParent); }; function addParentAndChildren(q, did, ele) { addParent(q, did, ele); addChildren(q, did, ele); } elesfn$f.forEachUpAndDown = function (fn) { var includeSelf = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; return forEachCompound(this, fn, includeSelf, addParentAndChildren); }; // aliases elesfn$f.ancestors = elesfn$f.parents; var fn$5, elesfn$e; fn$5 = elesfn$e = { data: define.data({ field: 'data', bindingEvent: 'data', allowBinding: true, allowSetting: true, settingEvent: 'data', settingTriggersEvent: true, triggerFnName: 'trigger', allowGetting: true, immutableKeys: { 'id': true, 'source': true, 'target': true, 'parent': true }, updateStyle: true }), removeData: define.removeData({ field: 'data', event: 'data', triggerFnName: 'trigger', triggerEvent: true, immutableKeys: { 'id': true, 'source': true, 'target': true, 'parent': true }, updateStyle: true }), scratch: define.data({ field: 'scratch', bindingEvent: 'scratch', allowBinding: true, allowSetting: true, settingEvent: 'scratch', settingTriggersEvent: true, triggerFnName: 'trigger', allowGetting: true, updateStyle: true }), removeScratch: define.removeData({ field: 'scratch', event: 'scratch', triggerFnName: 'trigger', triggerEvent: true, updateStyle: true }), rscratch: define.data({ field: 'rscratch', allowBinding: false, allowSetting: true, settingTriggersEvent: false, allowGetting: true }), removeRscratch: define.removeData({ field: 'rscratch', triggerEvent: false }), id: function id() { var ele = this[0]; if (ele) { return ele._private.data.id; } } }; // aliases fn$5.attr = fn$5.data; fn$5.removeAttr = fn$5.removeData; var data = elesfn$e; var elesfn$d = {}; function defineDegreeFunction(callback) { return function (includeLoops) { var self = this; if (includeLoops === undefined) { includeLoops = true; } if (self.length === 0) { return; } if (self.isNode() && !self.removed()) { var degree = 0; var node = self[0]; var connectedEdges = node._private.edges; for (var i = 0; i < connectedEdges.length; i++) { var edge = connectedEdges[i]; if (!includeLoops && edge.isLoop()) { continue; } degree += callback(node, edge); } return degree; } else { return; } }; } extend(elesfn$d, { degree: defineDegreeFunction(function (node, edge) { if (edge.source().same(edge.target())) { return 2; } else { return 1; } }), indegree: defineDegreeFunction(function (node, edge) { if (edge.target().same(node)) { return 1; } else { return 0; } }), outdegree: defineDegreeFunction(function (node, edge) { if (edge.source().same(node)) { return 1; } else { return 0; } }) }); function defineDegreeBoundsFunction(degreeFn, callback) { return function (includeLoops) { var ret; var nodes = this.nodes(); for (var i = 0; i < nodes.length; i++) { var ele = nodes[i]; var degree = ele[degreeFn](includeLoops); if (degree !== undefined && (ret === undefined || callback(degree, ret))) { ret = degree; } } return ret; }; } extend(elesfn$d, { minDegree: defineDegreeBoundsFunction('degree', function (degree, min) { return degree < min; }), maxDegree: defineDegreeBoundsFunction('degree', function (degree, max) { return degree > max; }), minIndegree: defineDegreeBoundsFunction('indegree', function (degree, min) { return degree < min; }), maxIndegree: defineDegreeBoundsFunction('indegree', function (degree, max) { return degree > max; }), minOutdegree: defineDegreeBoundsFunction('outdegree', function (degree, min) { return degree < min; }), maxOutdegree: defineDegreeBoundsFunction('outdegree', function (degree, max) { return degree > max; }) }); extend(elesfn$d, { totalDegree: function totalDegree(includeLoops) { var total = 0; var nodes = this.nodes(); for (var i = 0; i < nodes.length; i++) { total += nodes[i].degree(includeLoops); } return total; } }); var fn$4, elesfn$c; var beforePositionSet = function beforePositionSet(eles, newPos, silent) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; if (!ele.locked()) { var oldPos = ele._private.position; var delta = { x: newPos.x != null ? newPos.x - oldPos.x : 0, y: newPos.y != null ? newPos.y - oldPos.y : 0 }; if (ele.isParent() && !(delta.x === 0 && delta.y === 0)) { ele.children().shift(delta, silent); } ele.dirtyBoundingBoxCache(); } } }; var positionDef = { field: 'position', bindingEvent: 'position', allowBinding: true, allowSetting: true, settingEvent: 'position', settingTriggersEvent: true, triggerFnName: 'emitAndNotify', allowGetting: true, validKeys: ['x', 'y'], beforeGet: function beforeGet(ele) { ele.updateCompoundBounds(); }, beforeSet: function beforeSet(eles, newPos) { beforePositionSet(eles, newPos, false); }, onSet: function onSet(eles) { eles.dirtyCompoundBoundsCache(); }, canSet: function canSet(ele) { return !ele.locked(); } }; fn$4 = elesfn$c = { position: define.data(positionDef), // position but no notification to renderer silentPosition: define.data(extend({}, positionDef, { allowBinding: false, allowSetting: true, settingTriggersEvent: false, allowGetting: false, beforeSet: function beforeSet(eles, newPos) { beforePositionSet(eles, newPos, true); }, onSet: function onSet(eles) { eles.dirtyCompoundBoundsCache(); } })), positions: function positions(pos, silent) { if (plainObject(pos)) { if (silent) { this.silentPosition(pos); } else { this.position(pos); } } else if (fn$6(pos)) { var _fn = pos; var cy = this.cy(); cy.startBatch(); for (var i = 0; i < this.length; i++) { var ele = this[i]; var _pos = void 0; if (_pos = _fn(ele, i)) { if (silent) { ele.silentPosition(_pos); } else { ele.position(_pos); } } } cy.endBatch(); } return this; // chaining }, silentPositions: function silentPositions(pos) { return this.positions(pos, true); }, shift: function shift(dim, val, silent) { var delta; if (plainObject(dim)) { delta = { x: number$1(dim.x) ? dim.x : 0, y: number$1(dim.y) ? dim.y : 0 }; silent = val; } else if (string(dim) && number$1(val)) { delta = { x: 0, y: 0 }; delta[dim] = val; } if (delta != null) { var cy = this.cy(); cy.startBatch(); for (var i = 0; i < this.length; i++) { var ele = this[i]; // exclude any node that is a descendant of the calling collection if (cy.hasCompoundNodes() && ele.isChild() && ele.ancestors().anySame(this)) { continue; } var pos = ele.position(); var newPos = { x: pos.x + delta.x, y: pos.y + delta.y }; if (silent) { ele.silentPosition(newPos); } else { ele.position(newPos); } } cy.endBatch(); } return this; }, silentShift: function silentShift(dim, val) { if (plainObject(dim)) { this.shift(dim, true); } else if (string(dim) && number$1(val)) { this.shift(dim, val, true); } return this; }, // get/set the rendered (i.e. on screen) positon of the element renderedPosition: function renderedPosition(dim, val) { var ele = this[0]; var cy = this.cy(); var zoom = cy.zoom(); var pan = cy.pan(); var rpos = plainObject(dim) ? dim : undefined; var setting = rpos !== undefined || val !== undefined && string(dim); if (ele && ele.isNode()) { // must have an element and must be a node to return position if (setting) { for (var i = 0; i < this.length; i++) { var _ele = this[i]; if (val !== undefined) { // set one dimension _ele.position(dim, (val - pan[dim]) / zoom); } else if (rpos !== undefined) { // set whole position _ele.position(renderedToModelPosition(rpos, zoom, pan)); } } } else { // getting var pos = ele.position(); rpos = modelToRenderedPosition(pos, zoom, pan); if (dim === undefined) { // then return the whole rendered position return rpos; } else { // then return the specified dimension return rpos[dim]; } } } else if (!setting) { return undefined; // for empty collection case } return this; // chaining }, // get/set the position relative to the parent relativePosition: function relativePosition(dim, val) { var ele = this[0]; var cy = this.cy(); var ppos = plainObject(dim) ? dim : undefined; var setting = ppos !== undefined || val !== undefined && string(dim); var hasCompoundNodes = cy.hasCompoundNodes(); if (ele && ele.isNode()) { // must have an element and must be a node to return position if (setting) { for (var i = 0; i < this.length; i++) { var _ele2 = this[i]; var parent = hasCompoundNodes ? _ele2.parent() : null; var hasParent = parent && parent.length > 0; var relativeToParent = hasParent; if (hasParent) { parent = parent[0]; } var origin = relativeToParent ? parent.position() : { x: 0, y: 0 }; if (val !== undefined) { // set one dimension _ele2.position(dim, val + origin[dim]); } else if (ppos !== undefined) { // set whole position _ele2.position({ x: ppos.x + origin.x, y: ppos.y + origin.y }); } } } else { // getting var pos = ele.position(); var _parent = hasCompoundNodes ? ele.parent() : null; var _hasParent = _parent && _parent.length > 0; var _relativeToParent = _hasParent; if (_hasParent) { _parent = _parent[0]; } var _origin = _relativeToParent ? _parent.position() : { x: 0, y: 0 }; ppos = { x: pos.x - _origin.x, y: pos.y - _origin.y }; if (dim === undefined) { // then return the whole rendered position return ppos; } else { // then return the specified dimension return ppos[dim]; } } } else if (!setting) { return undefined; // for empty collection case } return this; // chaining } }; // aliases fn$4.modelPosition = fn$4.point = fn$4.position; fn$4.modelPositions = fn$4.points = fn$4.positions; fn$4.renderedPoint = fn$4.renderedPosition; fn$4.relativePoint = fn$4.relativePosition; var position = elesfn$c; var fn$3, elesfn$b; fn$3 = elesfn$b = {}; elesfn$b.renderedBoundingBox = function (options) { var bb = this.boundingBox(options); var cy = this.cy(); var zoom = cy.zoom(); var pan = cy.pan(); var x1 = bb.x1 * zoom + pan.x; var x2 = bb.x2 * zoom + pan.x; var y1 = bb.y1 * zoom + pan.y; var y2 = bb.y2 * zoom + pan.y; return { x1: x1, x2: x2, y1: y1, y2: y2, w: x2 - x1, h: y2 - y1 }; }; elesfn$b.dirtyCompoundBoundsCache = function () { var silent = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false; var cy = this.cy(); if (!cy.styleEnabled() || !cy.hasCompoundNodes()) { return this; } this.forEachUp(function (ele) { if (ele.isParent()) { var _p = ele._private; _p.compoundBoundsClean = false; _p.bbCache = null; if (!silent) { ele.emitAndNotify('bounds'); } } }); return this; }; elesfn$b.updateCompoundBounds = function () { var force = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false; var cy = this.cy(); // not possible to do on non-compound graphs or with the style disabled if (!cy.styleEnabled() || !cy.hasCompoundNodes()) { return this; } // save cycles when batching -- but bounds will be stale (or not exist yet) if (!force && cy.batching()) { return this; } function update(parent) { if (!parent.isParent()) { return; } var _p = parent._private; var children = parent.children(); var includeLabels = parent.pstyle('compound-sizing-wrt-labels').value === 'include'; var min = { width: { val: parent.pstyle('min-width').pfValue, left: parent.pstyle('min-width-bias-left'), right: parent.pstyle('min-width-bias-right') }, height: { val: parent.pstyle('min-height').pfValue, top: parent.pstyle('min-height-bias-top'), bottom: parent.pstyle('min-height-bias-bottom') } }; var bb = children.boundingBox({ includeLabels: includeLabels, includeOverlays: false, // updating the compound bounds happens outside of the regular // cache cycle (i.e. before fired events) useCache: false }); var pos = _p.position; // if children take up zero area then keep position and fall back on stylesheet w/h if (bb.w === 0 || bb.h === 0) { bb = { w: parent.pstyle('width').pfValue, h: parent.pstyle('height').pfValue }; bb.x1 = pos.x - bb.w / 2; bb.x2 = pos.x + bb.w / 2; bb.y1 = pos.y - bb.h / 2; bb.y2 = pos.y + bb.h / 2; } function computeBiasValues(propDiff, propBias, propBiasComplement) { var biasDiff = 0; var biasComplementDiff = 0; var biasTotal = propBias + propBiasComplement; if (propDiff > 0 && biasTotal > 0) { biasDiff = propBias / biasTotal * propDiff; biasComplementDiff = propBiasComplement / biasTotal * propDiff; } return { biasDiff: biasDiff, biasComplementDiff: biasComplementDiff }; } function computePaddingValues(width, height, paddingObject, relativeTo) { // Assuming percentage is number from 0 to 1 if (paddingObject.units === '%') { switch (relativeTo) { case 'width': return width > 0 ? paddingObject.pfValue * width : 0; case 'height': return height > 0 ? paddingObject.pfValue * height : 0; case 'average': return width > 0 && height > 0 ? paddingObject.pfValue * (width + height) / 2 : 0; case 'min': return width > 0 && height > 0 ? width > height ? paddingObject.pfValue * height : paddingObject.pfValue * width : 0; case 'max': return width > 0 && height > 0 ? width > height ? paddingObject.pfValue * width : paddingObject.pfValue * height : 0; default: return 0; } } else if (paddingObject.units === 'px') { return paddingObject.pfValue; } else { return 0; } } var leftVal = min.width.left.value; if (min.width.left.units === 'px' && min.width.val > 0) { leftVal = leftVal * 100 / min.width.val; } var rightVal = min.width.right.value; if (min.width.right.units === 'px' && min.width.val > 0) { rightVal = rightVal * 100 / min.width.val; } var topVal = min.height.top.value; if (min.height.top.units === 'px' && min.height.val > 0) { topVal = topVal * 100 / min.height.val; } var bottomVal = min.height.bottom.value; if (min.height.bottom.units === 'px' && min.height.val > 0) { bottomVal = bottomVal * 100 / min.height.val; } var widthBiasDiffs = computeBiasValues(min.width.val - bb.w, leftVal, rightVal); var diffLeft = widthBiasDiffs.biasDiff; var diffRight = widthBiasDiffs.biasComplementDiff; var heightBiasDiffs = computeBiasValues(min.height.val - bb.h, topVal, bottomVal); var diffTop = heightBiasDiffs.biasDiff; var diffBottom = heightBiasDiffs.biasComplementDiff; _p.autoPadding = computePaddingValues(bb.w, bb.h, parent.pstyle('padding'), parent.pstyle('padding-relative-to').value); _p.autoWidth = Math.max(bb.w, min.width.val); pos.x = (-diffLeft + bb.x1 + bb.x2 + diffRight) / 2; _p.autoHeight = Math.max(bb.h, min.height.val); pos.y = (-diffTop + bb.y1 + bb.y2 + diffBottom) / 2; } for (var i = 0; i < this.length; i++) { var ele = this[i]; var _p = ele._private; if (!_p.compoundBoundsClean || force) { update(ele); if (!cy.batching()) { _p.compoundBoundsClean = true; } } } return this; }; var noninf = function noninf(x) { if (x === Infinity || x === -Infinity) { return 0; } return x; }; var updateBounds = function updateBounds(b, x1, y1, x2, y2) { // don't update with zero area boxes if (x2 - x1 === 0 || y2 - y1 === 0) { return; } // don't update with null dim if (x1 == null || y1 == null || x2 == null || y2 == null) { return; } b.x1 = x1 < b.x1 ? x1 : b.x1; b.x2 = x2 > b.x2 ? x2 : b.x2; b.y1 = y1 < b.y1 ? y1 : b.y1; b.y2 = y2 > b.y2 ? y2 : b.y2; b.w = b.x2 - b.x1; b.h = b.y2 - b.y1; }; var updateBoundsFromBox = function updateBoundsFromBox(b, b2) { if (b2 == null) { return b; } return updateBounds(b, b2.x1, b2.y1, b2.x2, b2.y2); }; var prefixedProperty = function prefixedProperty(obj, field, prefix) { return getPrefixedProperty(obj, field, prefix); }; var updateBoundsFromArrow = function updateBoundsFromArrow(bounds, ele, prefix) { if (ele.cy().headless()) { return; } var _p = ele._private; var rstyle = _p.rstyle; var halfArW = rstyle.arrowWidth / 2; var arrowType = ele.pstyle(prefix + '-arrow-shape').value; var x; var y; if (arrowType !== 'none') { if (prefix === 'source') { x = rstyle.srcX; y = rstyle.srcY; } else if (prefix === 'target') { x = rstyle.tgtX; y = rstyle.tgtY; } else { x = rstyle.midX; y = rstyle.midY; } // always store the individual arrow bounds var bbs = _p.arrowBounds = _p.arrowBounds || {}; var bb = bbs[prefix] = bbs[prefix] || {}; bb.x1 = x - halfArW; bb.y1 = y - halfArW; bb.x2 = x + halfArW; bb.y2 = y + halfArW; bb.w = bb.x2 - bb.x1; bb.h = bb.y2 - bb.y1; expandBoundingBox(bb, 1); updateBounds(bounds, bb.x1, bb.y1, bb.x2, bb.y2); } }; var updateBoundsFromLabel = function updateBoundsFromLabel(bounds, ele, prefix) { if (ele.cy().headless()) { return; } var prefixDash; if (prefix) { prefixDash = prefix + '-'; } else { prefixDash = ''; } var _p = ele._private; var rstyle = _p.rstyle; var label = ele.pstyle(prefixDash + 'label').strValue; if (label) { var halign = ele.pstyle('text-halign'); var valign = ele.pstyle('text-valign'); var labelWidth = prefixedProperty(rstyle, 'labelWidth', prefix); var labelHeight = prefixedProperty(rstyle, 'labelHeight', prefix); var labelX = prefixedProperty(rstyle, 'labelX', prefix); var labelY = prefixedProperty(rstyle, 'labelY', prefix); var marginX = ele.pstyle(prefixDash + 'text-margin-x').pfValue; var marginY = ele.pstyle(prefixDash + 'text-margin-y').pfValue; var isEdge = ele.isEdge(); var rotation = ele.pstyle(prefixDash + 'text-rotation'); var outlineWidth = ele.pstyle('text-outline-width').pfValue; var borderWidth = ele.pstyle('text-border-width').pfValue; var halfBorderWidth = borderWidth / 2; var padding = ele.pstyle('text-background-padding').pfValue; var marginOfError = 2; // expand to work around browser dimension inaccuracies var lh = labelHeight; var lw = labelWidth; var lw_2 = lw / 2; var lh_2 = lh / 2; var lx1, lx2, ly1, ly2; if (isEdge) { lx1 = labelX - lw_2; lx2 = labelX + lw_2; ly1 = labelY - lh_2; ly2 = labelY + lh_2; } else { switch (halign.value) { case 'left': lx1 = labelX - lw; lx2 = labelX; break; case 'center': lx1 = labelX - lw_2; lx2 = labelX + lw_2; break; case 'right': lx1 = labelX; lx2 = labelX + lw; break; } switch (valign.value) { case 'top': ly1 = labelY - lh; ly2 = labelY; break; case 'center': ly1 = labelY - lh_2; ly2 = labelY + lh_2; break; case 'bottom': ly1 = labelY; ly2 = labelY + lh; break; } } // shift by margin and expand by outline and border lx1 += marginX - Math.max(outlineWidth, halfBorderWidth) - padding - marginOfError; lx2 += marginX + Math.max(outlineWidth, halfBorderWidth) + padding + marginOfError; ly1 += marginY - Math.max(outlineWidth, halfBorderWidth) - padding - marginOfError; ly2 += marginY + Math.max(outlineWidth, halfBorderWidth) + padding + marginOfError; // always store the unrotated label bounds separately var bbPrefix = prefix || 'main'; var bbs = _p.labelBounds; var bb = bbs[bbPrefix] = bbs[bbPrefix] || {}; bb.x1 = lx1; bb.y1 = ly1; bb.x2 = lx2; bb.y2 = ly2; bb.w = lx2 - lx1; bb.h = ly2 - ly1; var isAutorotate = isEdge && rotation.strValue === 'autorotate'; var isPfValue = rotation.pfValue != null && rotation.pfValue !== 0; if (isAutorotate || isPfValue) { var theta = isAutorotate ? prefixedProperty(_p.rstyle, 'labelAngle', prefix) : rotation.pfValue; var cos = Math.cos(theta); var sin = Math.sin(theta); // rotation point (default value for center-center) var xo = (lx1 + lx2) / 2; var yo = (ly1 + ly2) / 2; if (!isEdge) { switch (halign.value) { case 'left': xo = lx2; break; case 'right': xo = lx1; break; } switch (valign.value) { case 'top': yo = ly2; break; case 'bottom': yo = ly1; break; } } var rotate = function rotate(x, y) { x = x - xo; y = y - yo; return { x: x * cos - y * sin + xo, y: x * sin + y * cos + yo }; }; var px1y1 = rotate(lx1, ly1); var px1y2 = rotate(lx1, ly2); var px2y1 = rotate(lx2, ly1); var px2y2 = rotate(lx2, ly2); lx1 = Math.min(px1y1.x, px1y2.x, px2y1.x, px2y2.x); lx2 = Math.max(px1y1.x, px1y2.x, px2y1.x, px2y2.x); ly1 = Math.min(px1y1.y, px1y2.y, px2y1.y, px2y2.y); ly2 = Math.max(px1y1.y, px1y2.y, px2y1.y, px2y2.y); } var bbPrefixRot = bbPrefix + 'Rot'; var bbRot = bbs[bbPrefixRot] = bbs[bbPrefixRot] || {}; bbRot.x1 = lx1; bbRot.y1 = ly1; bbRot.x2 = lx2; bbRot.y2 = ly2; bbRot.w = lx2 - lx1; bbRot.h = ly2 - ly1; updateBounds(bounds, lx1, ly1, lx2, ly2); updateBounds(_p.labelBounds.all, lx1, ly1, lx2, ly2); } return bounds; }; var updateBoundsFromOutline = function updateBoundsFromOutline(bounds, ele) { if (ele.cy().headless()) { return; } var outlineOpacity = ele.pstyle('outline-opacity').value; var outlineWidth = ele.pstyle('outline-width').value; if (outlineOpacity > 0 && outlineWidth > 0) { var outlineOffset = ele.pstyle('outline-offset').value; var nodeShape = ele.pstyle('shape').value; var outlineSize = outlineWidth + outlineOffset; var scaleX = (bounds.w + outlineSize * 2) / bounds.w; var scaleY = (bounds.h + outlineSize * 2) / bounds.h; var xOffset = 0; var yOffset = 0; if (["diamond", "pentagon", "round-triangle"].includes(nodeShape)) { scaleX = (bounds.w + outlineSize * 2.4) / bounds.w; yOffset = -outlineSize / 3.6; } else if (["concave-hexagon", "rhomboid", "right-rhomboid"].includes(nodeShape)) { scaleX = (bounds.w + outlineSize * 2.4) / bounds.w; } else if (nodeShape === "star") { scaleX = (bounds.w + outlineSize * 2.8) / bounds.w; scaleY = (bounds.h + outlineSize * 2.6) / bounds.h; yOffset = -outlineSize / 3.8; } else if (nodeShape === "triangle") { scaleX = (bounds.w + outlineSize * 2.8) / bounds.w; scaleY = (bounds.h + outlineSize * 2.4) / bounds.h; yOffset = -outlineSize / 1.4; } else if (nodeShape === "vee") { scaleX = (bounds.w + outlineSize * 4.4) / bounds.w; scaleY = (bounds.h + outlineSize * 3.8) / bounds.h; yOffset = -outlineSize * .5; } var hDelta = bounds.h * scaleY - bounds.h; var wDelta = bounds.w * scaleX - bounds.w; expandBoundingBoxSides(bounds, [Math.ceil(hDelta / 2), Math.ceil(wDelta / 2)]); if (xOffset != 0 || yOffset !== 0) { var oBounds = shiftBoundingBox(bounds, xOffset, yOffset); updateBoundingBox(bounds, oBounds); } } }; // get the bounding box of the elements (in raw model position) var boundingBoxImpl = function boundingBoxImpl(ele, options) { var cy = ele._private.cy; var styleEnabled = cy.styleEnabled(); var headless = cy.headless(); var bounds = makeBoundingBox(); var _p = ele._private; var isNode = ele.isNode(); var isEdge = ele.isEdge(); var ex1, ex2, ey1, ey2; // extrema of body / lines var x, y; // node pos var rstyle = _p.rstyle; var manualExpansion = isNode && styleEnabled ? ele.pstyle('bounds-expansion').pfValue : [0]; // must use `display` prop only, as reading `compound.width()` causes recursion // (other factors like width values will be considered later in this function anyway) var isDisplayed = function isDisplayed(ele) { return ele.pstyle('display').value !== 'none'; }; var displayed = !styleEnabled || isDisplayed(ele) // must take into account connected nodes b/c of implicit edge hiding on display:none node && (!isEdge || isDisplayed(ele.source()) && isDisplayed(ele.target())); if (displayed) { // displayed suffices, since we will find zero area eles anyway var overlayOpacity = 0; var overlayPadding = 0; if (styleEnabled && options.includeOverlays) { overlayOpacity = ele.pstyle('overlay-opacity').value; if (overlayOpacity !== 0) { overlayPadding = ele.pstyle('overlay-padding').value; } } var underlayOpacity = 0; var underlayPadding = 0; if (styleEnabled && options.includeUnderlays) { underlayOpacity = ele.pstyle('underlay-opacity').value; if (underlayOpacity !== 0) { underlayPadding = ele.pstyle('underlay-padding').value; } } var padding = Math.max(overlayPadding, underlayPadding); var w = 0; var wHalf = 0; if (styleEnabled) { w = ele.pstyle('width').pfValue; wHalf = w / 2; } if (isNode && options.includeNodes) { var pos = ele.position(); x = pos.x; y = pos.y; var _w = ele.outerWidth(); var halfW = _w / 2; var h = ele.outerHeight(); var halfH = h / 2; // handle node dimensions ///////////////////////// ex1 = x - halfW; ex2 = x + halfW; ey1 = y - halfH; ey2 = y + halfH; updateBounds(bounds, ex1, ey1, ex2, ey2); if (styleEnabled && options.includeOutlines) { updateBoundsFromOutline(bounds, ele); } } else if (isEdge && options.includeEdges) { if (styleEnabled && !headless) { var curveStyle = ele.pstyle('curve-style').strValue; // handle edge dimensions (rough box estimate) ////////////////////////////////////////////// ex1 = Math.min(rstyle.srcX, rstyle.midX, rstyle.tgtX); ex2 = Math.max(rstyle.srcX, rstyle.midX, rstyle.tgtX); ey1 = Math.min(rstyle.srcY, rstyle.midY, rstyle.tgtY); ey2 = Math.max(rstyle.srcY, rstyle.midY, rstyle.tgtY); // take into account edge width ex1 -= wHalf; ex2 += wHalf; ey1 -= wHalf; ey2 += wHalf; updateBounds(bounds, ex1, ey1, ex2, ey2); // precise edges //////////////// if (curveStyle === 'haystack') { var hpts = rstyle.haystackPts; if (hpts && hpts.length === 2) { ex1 = hpts[0].x; ey1 = hpts[0].y; ex2 = hpts[1].x; ey2 = hpts[1].y; if (ex1 > ex2) { var temp = ex1; ex1 = ex2; ex2 = temp; } if (ey1 > ey2) { var _temp = ey1; ey1 = ey2; ey2 = _temp; } updateBounds(bounds, ex1 - wHalf, ey1 - wHalf, ex2 + wHalf, ey2 + wHalf); } } else if (curveStyle === 'bezier' || curveStyle === 'unbundled-bezier' || curveStyle.endsWith('segments') || curveStyle.endsWith('taxi')) { var pts; switch (curveStyle) { case 'bezier': case 'unbundled-bezier': pts = rstyle.bezierPts; break; case 'segments': case 'taxi': case 'round-segments': case 'round-taxi': pts = rstyle.linePts; break; } if (pts != null) { for (var j = 0; j < pts.length; j++) { var pt = pts[j]; ex1 = pt.x - wHalf; ex2 = pt.x + wHalf; ey1 = pt.y - wHalf; ey2 = pt.y + wHalf; updateBounds(bounds, ex1, ey1, ex2, ey2); } } } // bezier-like or segment-like edge } else { // headless or style disabled // fallback on source and target positions ////////////////////////////////////////// var n1 = ele.source(); var n1pos = n1.position(); var n2 = ele.target(); var n2pos = n2.position(); ex1 = n1pos.x; ex2 = n2pos.x; ey1 = n1pos.y; ey2 = n2pos.y; if (ex1 > ex2) { var _temp2 = ex1; ex1 = ex2; ex2 = _temp2; } if (ey1 > ey2) { var _temp3 = ey1; ey1 = ey2; ey2 = _temp3; } // take into account edge width ex1 -= wHalf; ex2 += wHalf; ey1 -= wHalf; ey2 += wHalf; updateBounds(bounds, ex1, ey1, ex2, ey2); } // headless or style disabled } // edges // handle edge arrow size ///////////////////////// if (styleEnabled && options.includeEdges && isEdge) { updateBoundsFromArrow(bounds, ele, 'mid-source'); updateBoundsFromArrow(bounds, ele, 'mid-target'); updateBoundsFromArrow(bounds, ele, 'source'); updateBoundsFromArrow(bounds, ele, 'target'); } // ghost //////// if (styleEnabled) { var ghost = ele.pstyle('ghost').value === 'yes'; if (ghost) { var gx = ele.pstyle('ghost-offset-x').pfValue; var gy = ele.pstyle('ghost-offset-y').pfValue; updateBounds(bounds, bounds.x1 + gx, bounds.y1 + gy, bounds.x2 + gx, bounds.y2 + gy); } } // always store the body bounds separately from the labels var bbBody = _p.bodyBounds = _p.bodyBounds || {}; assignBoundingBox(bbBody, bounds); expandBoundingBoxSides(bbBody, manualExpansion); expandBoundingBox(bbBody, 1); // expand to work around browser dimension inaccuracies // overlay ////////// if (styleEnabled) { ex1 = bounds.x1; ex2 = bounds.x2; ey1 = bounds.y1; ey2 = bounds.y2; updateBounds(bounds, ex1 - padding, ey1 - padding, ex2 + padding, ey2 + padding); } // always store the body bounds separately from the labels var bbOverlay = _p.overlayBounds = _p.overlayBounds || {}; assignBoundingBox(bbOverlay, bounds); expandBoundingBoxSides(bbOverlay, manualExpansion); expandBoundingBox(bbOverlay, 1); // expand to work around browser dimension inaccuracies // handle label dimensions ////////////////////////// var bbLabels = _p.labelBounds = _p.labelBounds || {}; if (bbLabels.all != null) { clearBoundingBox(bbLabels.all); } else { bbLabels.all = makeBoundingBox(); } if (styleEnabled && options.includeLabels) { if (options.includeMainLabels) { updateBoundsFromLabel(bounds, ele, null); } if (isEdge) { if (options.includeSourceLabels) { updateBoundsFromLabel(bounds, ele, 'source'); } if (options.includeTargetLabels) { updateBoundsFromLabel(bounds, ele, 'target'); } } } // style enabled for labels } // if displayed bounds.x1 = noninf(bounds.x1); bounds.y1 = noninf(bounds.y1); bounds.x2 = noninf(bounds.x2); bounds.y2 = noninf(bounds.y2); bounds.w = noninf(bounds.x2 - bounds.x1); bounds.h = noninf(bounds.y2 - bounds.y1); if (bounds.w > 0 && bounds.h > 0 && displayed) { expandBoundingBoxSides(bounds, manualExpansion); // expand bounds by 1 because antialiasing can increase the visual/effective size by 1 on all sides expandBoundingBox(bounds, 1); } return bounds; }; var getKey = function getKey(opts) { var i = 0; var tf = function tf(val) { return (val ? 1 : 0) << i++; }; var key = 0; key += tf(opts.incudeNodes); key += tf(opts.includeEdges); key += tf(opts.includeLabels); key += tf(opts.includeMainLabels); key += tf(opts.includeSourceLabels); key += tf(opts.includeTargetLabels); key += tf(opts.includeOverlays); key += tf(opts.includeOutlines); return key; }; var getBoundingBoxPosKey = function getBoundingBoxPosKey(ele) { if (ele.isEdge()) { var p1 = ele.source().position(); var p2 = ele.target().position(); var r = function r(x) { return Math.round(x); }; return hashIntsArray([r(p1.x), r(p1.y), r(p2.x), r(p2.y)]); } else { return 0; } }; var cachedBoundingBoxImpl = function cachedBoundingBoxImpl(ele, opts) { var _p = ele._private; var bb; var isEdge = ele.isEdge(); var key = opts == null ? defBbOptsKey : getKey(opts); var usingDefOpts = key === defBbOptsKey; var currPosKey = getBoundingBoxPosKey(ele); var isPosKeySame = _p.bbCachePosKey === currPosKey; var useCache = opts.useCache && isPosKeySame; var isDirty = function isDirty(ele) { return ele._private.bbCache == null || ele._private.styleDirty; }; var needRecalc = !useCache || isDirty(ele) || isEdge && isDirty(ele.source()) || isDirty(ele.target()); if (needRecalc) { if (!isPosKeySame) { ele.recalculateRenderedStyle(useCache); } bb = boundingBoxImpl(ele, defBbOpts); _p.bbCache = bb; _p.bbCachePosKey = currPosKey; } else { bb = _p.bbCache; } // not using def opts => need to build up bb from combination of sub bbs if (!usingDefOpts) { var isNode = ele.isNode(); bb = makeBoundingBox(); if (opts.includeNodes && isNode || opts.includeEdges && !isNode) { if (opts.includeOverlays) { updateBoundsFromBox(bb, _p.overlayBounds); } else { updateBoundsFromBox(bb, _p.bodyBounds); } } if (opts.includeLabels) { if (opts.includeMainLabels && (!isEdge || opts.includeSourceLabels && opts.includeTargetLabels)) { updateBoundsFromBox(bb, _p.labelBounds.all); } else { if (opts.includeMainLabels) { updateBoundsFromBox(bb, _p.labelBounds.mainRot); } if (opts.includeSourceLabels) { updateBoundsFromBox(bb, _p.labelBounds.sourceRot); } if (opts.includeTargetLabels) { updateBoundsFromBox(bb, _p.labelBounds.targetRot); } } } bb.w = bb.x2 - bb.x1; bb.h = bb.y2 - bb.y1; } return bb; }; var defBbOpts = { includeNodes: true, includeEdges: true, includeLabels: true, includeMainLabels: true, includeSourceLabels: true, includeTargetLabels: true, includeOverlays: true, includeUnderlays: true, includeOutlines: true, useCache: true }; var defBbOptsKey = getKey(defBbOpts); var filledBbOpts = defaults$g(defBbOpts); elesfn$b.boundingBox = function (options) { var bounds; // the main usecase is ele.boundingBox() for a single element with no/def options // specified s.t. the cache is used, so check for this case to make it faster by // avoiding the overhead of the rest of the function if (this.length === 1 && this[0]._private.bbCache != null && !this[0]._private.styleDirty && (options === undefined || options.useCache === undefined || options.useCache === true)) { if (options === undefined) { options = defBbOpts; } else { options = filledBbOpts(options); } bounds = cachedBoundingBoxImpl(this[0], options); } else { bounds = makeBoundingBox(); options = options || defBbOpts; var opts = filledBbOpts(options); var eles = this; var cy = eles.cy(); var styleEnabled = cy.styleEnabled(); if (styleEnabled) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var _p = ele._private; var currPosKey = getBoundingBoxPosKey(ele); var isPosKeySame = _p.bbCachePosKey === currPosKey; var useCache = opts.useCache && isPosKeySame && !_p.styleDirty; ele.recalculateRenderedStyle(useCache); } } this.updateCompoundBounds(!options.useCache); for (var _i = 0; _i < eles.length; _i++) { var _ele = eles[_i]; updateBoundsFromBox(bounds, cachedBoundingBoxImpl(_ele, opts)); } } bounds.x1 = noninf(bounds.x1); bounds.y1 = noninf(bounds.y1); bounds.x2 = noninf(bounds.x2); bounds.y2 = noninf(bounds.y2); bounds.w = noninf(bounds.x2 - bounds.x1); bounds.h = noninf(bounds.y2 - bounds.y1); return bounds; }; elesfn$b.dirtyBoundingBoxCache = function () { for (var i = 0; i < this.length; i++) { var _p = this[i]._private; _p.bbCache = null; _p.bbCachePosKey = null; _p.bodyBounds = null; _p.overlayBounds = null; _p.labelBounds.all = null; _p.labelBounds.source = null; _p.labelBounds.target = null; _p.labelBounds.main = null; _p.labelBounds.sourceRot = null; _p.labelBounds.targetRot = null; _p.labelBounds.mainRot = null; _p.arrowBounds.source = null; _p.arrowBounds.target = null; _p.arrowBounds['mid-source'] = null; _p.arrowBounds['mid-target'] = null; } this.emitAndNotify('bounds'); return this; }; // private helper to get bounding box for custom node positions // - good for perf in certain cases but currently requires dirtying the rendered style // - would be better to not modify the nodes but the nodes are read directly everywhere in the renderer... // - try to use for only things like discrete layouts where the node position would change anyway elesfn$b.boundingBoxAt = function (fn) { var nodes = this.nodes(); var cy = this.cy(); var hasCompoundNodes = cy.hasCompoundNodes(); var parents = cy.collection(); if (hasCompoundNodes) { parents = nodes.filter(function (node) { return node.isParent(); }); nodes = nodes.not(parents); } if (plainObject(fn)) { var obj = fn; fn = function fn() { return obj; }; } var storeOldPos = function storeOldPos(node, i) { return node._private.bbAtOldPos = fn(node, i); }; var getOldPos = function getOldPos(node) { return node._private.bbAtOldPos; }; cy.startBatch(); nodes.forEach(storeOldPos).silentPositions(fn); if (hasCompoundNodes) { parents.dirtyCompoundBoundsCache(); parents.dirtyBoundingBoxCache(); parents.updateCompoundBounds(true); // force update b/c we're inside a batch cycle } var bb = copyBoundingBox(this.boundingBox({ useCache: false })); nodes.silentPositions(getOldPos); if (hasCompoundNodes) { parents.dirtyCompoundBoundsCache(); parents.dirtyBoundingBoxCache(); parents.updateCompoundBounds(true); // force update b/c we're inside a batch cycle } cy.endBatch(); return bb; }; fn$3.boundingbox = fn$3.bb = fn$3.boundingBox; fn$3.renderedBoundingbox = fn$3.renderedBoundingBox; var bounds = elesfn$b; var fn$2, elesfn$a; fn$2 = elesfn$a = {}; var defineDimFns = function defineDimFns(opts) { opts.uppercaseName = capitalize(opts.name); opts.autoName = 'auto' + opts.uppercaseName; opts.labelName = 'label' + opts.uppercaseName; opts.outerName = 'outer' + opts.uppercaseName; opts.uppercaseOuterName = capitalize(opts.outerName); fn$2[opts.name] = function dimImpl() { var ele = this[0]; var _p = ele._private; var cy = _p.cy; var styleEnabled = cy._private.styleEnabled; if (ele) { if (styleEnabled) { if (ele.isParent()) { ele.updateCompoundBounds(); return _p[opts.autoName] || 0; } var d = ele.pstyle(opts.name); switch (d.strValue) { case 'label': ele.recalculateRenderedStyle(); return _p.rstyle[opts.labelName] || 0; default: return d.pfValue; } } else { return 1; } } }; fn$2['outer' + opts.uppercaseName] = function outerDimImpl() { var ele = this[0]; var _p = ele._private; var cy = _p.cy; var styleEnabled = cy._private.styleEnabled; if (ele) { if (styleEnabled) { var dim = ele[opts.name](); var border = ele.pstyle('border-width').pfValue; // n.b. 1/2 each side var padding = 2 * ele.padding(); return dim + border + padding; } else { return 1; } } }; fn$2['rendered' + opts.uppercaseName] = function renderedDimImpl() { var ele = this[0]; if (ele) { var d = ele[opts.name](); return d * this.cy().zoom(); } }; fn$2['rendered' + opts.uppercaseOuterName] = function renderedOuterDimImpl() { var ele = this[0]; if (ele) { var od = ele[opts.outerName](); return od * this.cy().zoom(); } }; }; defineDimFns({ name: 'width' }); defineDimFns({ name: 'height' }); elesfn$a.padding = function () { var ele = this[0]; var _p = ele._private; if (ele.isParent()) { ele.updateCompoundBounds(); if (_p.autoPadding !== undefined) { return _p.autoPadding; } else { return ele.pstyle('padding').pfValue; } } else { return ele.pstyle('padding').pfValue; } }; elesfn$a.paddedHeight = function () { var ele = this[0]; return ele.height() + 2 * ele.padding(); }; elesfn$a.paddedWidth = function () { var ele = this[0]; return ele.width() + 2 * ele.padding(); }; var widthHeight = elesfn$a; var ifEdge = function ifEdge(ele, getValue) { if (ele.isEdge()) { return getValue(ele); } }; var ifEdgeRenderedPosition = function ifEdgeRenderedPosition(ele, getPoint) { if (ele.isEdge()) { var cy = ele.cy(); return modelToRenderedPosition(getPoint(ele), cy.zoom(), cy.pan()); } }; var ifEdgeRenderedPositions = function ifEdgeRenderedPositions(ele, getPoints) { if (ele.isEdge()) { var cy = ele.cy(); var pan = cy.pan(); var zoom = cy.zoom(); return getPoints(ele).map(function (p) { return modelToRenderedPosition(p, zoom, pan); }); } }; var controlPoints = function controlPoints(ele) { return ele.renderer().getControlPoints(ele); }; var segmentPoints = function segmentPoints(ele) { return ele.renderer().getSegmentPoints(ele); }; var sourceEndpoint = function sourceEndpoint(ele) { return ele.renderer().getSourceEndpoint(ele); }; var targetEndpoint = function targetEndpoint(ele) { return ele.renderer().getTargetEndpoint(ele); }; var midpoint = function midpoint(ele) { return ele.renderer().getEdgeMidpoint(ele); }; var pts = { controlPoints: { get: controlPoints, mult: true }, segmentPoints: { get: segmentPoints, mult: true }, sourceEndpoint: { get: sourceEndpoint }, targetEndpoint: { get: targetEndpoint }, midpoint: { get: midpoint } }; var renderedName = function renderedName(name) { return 'rendered' + name[0].toUpperCase() + name.substr(1); }; var edgePoints = Object.keys(pts).reduce(function (obj, name) { var spec = pts[name]; var rName = renderedName(name); obj[name] = function () { return ifEdge(this, spec.get); }; if (spec.mult) { obj[rName] = function () { return ifEdgeRenderedPositions(this, spec.get); }; } else { obj[rName] = function () { return ifEdgeRenderedPosition(this, spec.get); }; } return obj; }, {}); var dimensions = extend({}, position, bounds, widthHeight, edgePoints); /*! Event object based on jQuery events, MIT license https://jquery.org/license/ https://tldrlegal.com/license/mit-license https://github.com/jquery/jquery/blob/master/src/event.js */ var Event = function Event(src, props) { this.recycle(src, props); }; function returnFalse() { return false; } function returnTrue() { return true; } // http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html Event.prototype = { instanceString: function instanceString() { return 'event'; }, recycle: function recycle(src, props) { this.isImmediatePropagationStopped = this.isPropagationStopped = this.isDefaultPrevented = returnFalse; if (src != null && src.preventDefault) { // Browser Event object this.type = src.type; // Events bubbling up the document may have been marked as prevented // by a handler lower down the tree; reflect the correct value. this.isDefaultPrevented = src.defaultPrevented ? returnTrue : returnFalse; } else if (src != null && src.type) { // Plain object containing all event details props = src; } else { // Event string this.type = src; } // Put explicitly provided properties onto the event object if (props != null) { // more efficient to manually copy fields we use this.originalEvent = props.originalEvent; this.type = props.type != null ? props.type : this.type; this.cy = props.cy; this.target = props.target; this.position = props.position; this.renderedPosition = props.renderedPosition; this.namespace = props.namespace; this.layout = props.layout; } if (this.cy != null && this.position != null && this.renderedPosition == null) { // create a rendered position based on the passed position var pos = this.position; var zoom = this.cy.zoom(); var pan = this.cy.pan(); this.renderedPosition = { x: pos.x * zoom + pan.x, y: pos.y * zoom + pan.y }; } // Create a timestamp if incoming event doesn't have one this.timeStamp = src && src.timeStamp || Date.now(); }, preventDefault: function preventDefault() { this.isDefaultPrevented = returnTrue; var e = this.originalEvent; if (!e) { return; } // if preventDefault exists run it on the original event if (e.preventDefault) { e.preventDefault(); } }, stopPropagation: function stopPropagation() { this.isPropagationStopped = returnTrue; var e = this.originalEvent; if (!e) { return; } // if stopPropagation exists run it on the original event if (e.stopPropagation) { e.stopPropagation(); } }, stopImmediatePropagation: function stopImmediatePropagation() { this.isImmediatePropagationStopped = returnTrue; this.stopPropagation(); }, isDefaultPrevented: returnFalse, isPropagationStopped: returnFalse, isImmediatePropagationStopped: returnFalse }; var eventRegex = /^([^.]+)(\.(?:[^.]+))?$/; // regex for matching event strings (e.g. "click.namespace") var universalNamespace = '.*'; // matches as if no namespace specified and prevents users from unbinding accidentally var defaults$8 = { qualifierCompare: function qualifierCompare(q1, q2) { return q1 === q2; }, eventMatches: function eventMatches( /*context, listener, eventObj*/ ) { return true; }, addEventFields: function addEventFields( /*context, evt*/ ) {}, callbackContext: function callbackContext(context /*, listener, eventObj*/) { return context; }, beforeEmit: function beforeEmit( /* context, listener, eventObj */ ) {}, afterEmit: function afterEmit( /* context, listener, eventObj */ ) {}, bubble: function bubble( /*context*/ ) { return false; }, parent: function parent( /*context*/ ) { return null; }, context: null }; var defaultsKeys = Object.keys(defaults$8); var emptyOpts = {}; function Emitter() { var opts = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : emptyOpts; var context = arguments.length > 1 ? arguments[1] : undefined; // micro-optimisation vs Object.assign() -- reduces Element instantiation time for (var i = 0; i < defaultsKeys.length; i++) { var key = defaultsKeys[i]; this[key] = opts[key] || defaults$8[key]; } this.context = context || this.context; this.listeners = []; this.emitting = 0; } var p = Emitter.prototype; var forEachEvent = function forEachEvent(self, handler, events, qualifier, callback, conf, confOverrides) { if (fn$6(qualifier)) { callback = qualifier; qualifier = null; } if (confOverrides) { if (conf == null) { conf = confOverrides; } else { conf = extend({}, conf, confOverrides); } } var eventList = array(events) ? events : events.split(/\s+/); for (var i = 0; i < eventList.length; i++) { var evt = eventList[i]; if (emptyString(evt)) { continue; } var match = evt.match(eventRegex); // type[.namespace] if (match) { var type = match[1]; var namespace = match[2] ? match[2] : null; var ret = handler(self, evt, type, namespace, qualifier, callback, conf); if (ret === false) { break; } // allow exiting early } } }; var makeEventObj = function makeEventObj(self, obj) { self.addEventFields(self.context, obj); return new Event(obj.type, obj); }; var forEachEventObj = function forEachEventObj(self, handler, events) { if (event(events)) { handler(self, events); return; } else if (plainObject(events)) { handler(self, makeEventObj(self, events)); return; } var eventList = array(events) ? events : events.split(/\s+/); for (var i = 0; i < eventList.length; i++) { var evt = eventList[i]; if (emptyString(evt)) { continue; } var match = evt.match(eventRegex); // type[.namespace] if (match) { var type = match[1]; var namespace = match[2] ? match[2] : null; var eventObj = makeEventObj(self, { type: type, namespace: namespace, target: self.context }); handler(self, eventObj); } } }; p.on = p.addListener = function (events, qualifier, callback, conf, confOverrides) { forEachEvent(this, function (self, event, type, namespace, qualifier, callback, conf) { if (fn$6(callback)) { self.listeners.push({ event: event, // full event string callback: callback, // callback to run type: type, // the event type (e.g. 'click') namespace: namespace, // the event namespace (e.g. ".foo") qualifier: qualifier, // a restriction on whether to match this emitter conf: conf // additional configuration }); } }, events, qualifier, callback, conf, confOverrides); return this; }; p.one = function (events, qualifier, callback, conf) { return this.on(events, qualifier, callback, conf, { one: true }); }; p.removeListener = p.off = function (events, qualifier, callback, conf) { var _this = this; if (this.emitting !== 0) { this.listeners = copyArray$1(this.listeners); } var listeners = this.listeners; var _loop = function _loop(i) { var listener = listeners[i]; forEachEvent(_this, function (self, event, type, namespace, qualifier, callback /*, conf*/) { if ((listener.type === type || events === '*') && (!namespace && listener.namespace !== '.*' || listener.namespace === namespace) && (!qualifier || self.qualifierCompare(listener.qualifier, qualifier)) && (!callback || listener.callback === callback)) { listeners.splice(i, 1); return false; } }, events, qualifier, callback, conf); }; for (var i = listeners.length - 1; i >= 0; i--) { _loop(i); } return this; }; p.removeAllListeners = function () { return this.removeListener('*'); }; p.emit = p.trigger = function (events, extraParams, manualCallback) { var listeners = this.listeners; var numListenersBeforeEmit = listeners.length; this.emitting++; if (!array(extraParams)) { extraParams = [extraParams]; } forEachEventObj(this, function (self, eventObj) { if (manualCallback != null) { listeners = [{ event: eventObj.event, type: eventObj.type, namespace: eventObj.namespace, callback: manualCallback }]; numListenersBeforeEmit = listeners.length; } var _loop2 = function _loop2(i) { var listener = listeners[i]; if (listener.type === eventObj.type && (!listener.namespace || listener.namespace === eventObj.namespace || listener.namespace === universalNamespace) && self.eventMatches(self.context, listener, eventObj)) { var args = [eventObj]; if (extraParams != null) { push(args, extraParams); } self.beforeEmit(self.context, listener, eventObj); if (listener.conf && listener.conf.one) { self.listeners = self.listeners.filter(function (l) { return l !== listener; }); } var context = self.callbackContext(self.context, listener, eventObj); var ret = listener.callback.apply(context, args); self.afterEmit(self.context, listener, eventObj); if (ret === false) { eventObj.stopPropagation(); eventObj.preventDefault(); } } // if listener matches }; for (var i = 0; i < numListenersBeforeEmit; i++) { _loop2(i); } // for listener if (self.bubble(self.context) && !eventObj.isPropagationStopped()) { self.parent(self.context).emit(eventObj, extraParams); } }, events); this.emitting--; return this; }; var emitterOptions$1 = { qualifierCompare: function qualifierCompare(selector1, selector2) { if (selector1 == null || selector2 == null) { return selector1 == null && selector2 == null; } else { return selector1.sameText(selector2); } }, eventMatches: function eventMatches(ele, listener, eventObj) { var selector = listener.qualifier; if (selector != null) { return ele !== eventObj.target && element(eventObj.target) && selector.matches(eventObj.target); } return true; }, addEventFields: function addEventFields(ele, evt) { evt.cy = ele.cy(); evt.target = ele; }, callbackContext: function callbackContext(ele, listener, eventObj) { return listener.qualifier != null ? eventObj.target : ele; }, beforeEmit: function beforeEmit(context, listener /*, eventObj*/) { if (listener.conf && listener.conf.once) { listener.conf.onceCollection.removeListener(listener.event, listener.qualifier, listener.callback); } }, bubble: function bubble() { return true; }, parent: function parent(ele) { return ele.isChild() ? ele.parent() : ele.cy(); } }; var argSelector$1 = function argSelector(arg) { if (string(arg)) { return new Selector(arg); } else { return arg; } }; var elesfn$9 = { createEmitter: function createEmitter() { for (var i = 0; i < this.length; i++) { var ele = this[i]; var _p = ele._private; if (!_p.emitter) { _p.emitter = new Emitter(emitterOptions$1, ele); } } return this; }, emitter: function emitter() { return this._private.emitter; }, on: function on(events, selector, callback) { var argSel = argSelector$1(selector); for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().on(events, argSel, callback); } return this; }, removeListener: function removeListener(events, selector, callback) { var argSel = argSelector$1(selector); for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().removeListener(events, argSel, callback); } return this; }, removeAllListeners: function removeAllListeners() { for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().removeAllListeners(); } return this; }, one: function one(events, selector, callback) { var argSel = argSelector$1(selector); for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().one(events, argSel, callback); } return this; }, once: function once(events, selector, callback) { var argSel = argSelector$1(selector); for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().on(events, argSel, callback, { once: true, onceCollection: this }); } }, emit: function emit(events, extraParams) { for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().emit(events, extraParams); } return this; }, emitAndNotify: function emitAndNotify(event, extraParams) { // for internal use only if (this.length === 0) { return; } // empty collections don't need to notify anything // notify renderer this.cy().notify(event, this); this.emit(event, extraParams); return this; } }; define.eventAliasesOn(elesfn$9); var elesfn$8 = { nodes: function nodes(selector) { return this.filter(function (ele) { return ele.isNode(); }).filter(selector); }, edges: function edges(selector) { return this.filter(function (ele) { return ele.isEdge(); }).filter(selector); }, // internal helper to get nodes and edges as separate collections with single iteration over elements byGroup: function byGroup() { var nodes = this.spawn(); var edges = this.spawn(); for (var i = 0; i < this.length; i++) { var ele = this[i]; if (ele.isNode()) { nodes.push(ele); } else { edges.push(ele); } } return { nodes: nodes, edges: edges }; }, filter: function filter(_filter, thisArg) { if (_filter === undefined) { // check this first b/c it's the most common/performant case return this; } else if (string(_filter) || elementOrCollection(_filter)) { return new Selector(_filter).filter(this); } else if (fn$6(_filter)) { var filterEles = this.spawn(); var eles = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var include = thisArg ? _filter.apply(thisArg, [ele, i, eles]) : _filter(ele, i, eles); if (include) { filterEles.push(ele); } } return filterEles; } return this.spawn(); // if not handled by above, give 'em an empty collection }, not: function not(toRemove) { if (!toRemove) { return this; } else { if (string(toRemove)) { toRemove = this.filter(toRemove); } var elements = this.spawn(); for (var i = 0; i < this.length; i++) { var element = this[i]; var remove = toRemove.has(element); if (!remove) { elements.push(element); } } return elements; } }, absoluteComplement: function absoluteComplement() { var cy = this.cy(); return cy.mutableElements().not(this); }, intersect: function intersect(other) { // if a selector is specified, then filter by it instead if (string(other)) { var selector = other; return this.filter(selector); } var elements = this.spawn(); var col1 = this; var col2 = other; var col1Smaller = this.length < other.length; var colS = col1Smaller ? col1 : col2; var colL = col1Smaller ? col2 : col1; for (var i = 0; i < colS.length; i++) { var ele = colS[i]; if (colL.has(ele)) { elements.push(ele); } } return elements; }, xor: function xor(other) { var cy = this._private.cy; if (string(other)) { other = cy.$(other); } var elements = this.spawn(); var col1 = this; var col2 = other; var add = function add(col, other) { for (var i = 0; i < col.length; i++) { var ele = col[i]; var id = ele._private.data.id; var inOther = other.hasElementWithId(id); if (!inOther) { elements.push(ele); } } }; add(col1, col2); add(col2, col1); return elements; }, diff: function diff(other) { var cy = this._private.cy; if (string(other)) { other = cy.$(other); } var left = this.spawn(); var right = this.spawn(); var both = this.spawn(); var col1 = this; var col2 = other; var add = function add(col, other, retEles) { for (var i = 0; i < col.length; i++) { var ele = col[i]; var id = ele._private.data.id; var inOther = other.hasElementWithId(id); if (inOther) { both.merge(ele); } else { retEles.push(ele); } } }; add(col1, col2, left); add(col2, col1, right); return { left: left, right: right, both: both }; }, add: function add(toAdd) { var cy = this._private.cy; if (!toAdd) { return this; } if (string(toAdd)) { var selector = toAdd; toAdd = cy.mutableElements().filter(selector); } var elements = this.spawnSelf(); for (var i = 0; i < toAdd.length; i++) { var ele = toAdd[i]; var add = !this.has(ele); if (add) { elements.push(ele); } } return elements; }, // in place merge on calling collection merge: function merge(toAdd) { var _p = this._private; var cy = _p.cy; if (!toAdd) { return this; } if (toAdd && string(toAdd)) { var selector = toAdd; toAdd = cy.mutableElements().filter(selector); } var map = _p.map; for (var i = 0; i < toAdd.length; i++) { var toAddEle = toAdd[i]; var id = toAddEle._private.data.id; var add = !map.has(id); if (add) { var index = this.length++; this[index] = toAddEle; map.set(id, { ele: toAddEle, index: index }); } } return this; // chaining }, unmergeAt: function unmergeAt(i) { var ele = this[i]; var id = ele.id(); var _p = this._private; var map = _p.map; // remove ele this[i] = undefined; map["delete"](id); var unmergedLastEle = i === this.length - 1; // replace empty spot with last ele in collection if (this.length > 1 && !unmergedLastEle) { var lastEleI = this.length - 1; var lastEle = this[lastEleI]; var lastEleId = lastEle._private.data.id; this[lastEleI] = undefined; this[i] = lastEle; map.set(lastEleId, { ele: lastEle, index: i }); } // the collection is now 1 ele smaller this.length--; return this; }, // remove single ele in place in calling collection unmergeOne: function unmergeOne(ele) { ele = ele[0]; var _p = this._private; var id = ele._private.data.id; var map = _p.map; var entry = map.get(id); if (!entry) { return this; // no need to remove } var i = entry.index; this.unmergeAt(i); return this; }, // remove eles in place on calling collection unmerge: function unmerge(toRemove) { var cy = this._private.cy; if (!toRemove) { return this; } if (toRemove && string(toRemove)) { var selector = toRemove; toRemove = cy.mutableElements().filter(selector); } for (var i = 0; i < toRemove.length; i++) { this.unmergeOne(toRemove[i]); } return this; // chaining }, unmergeBy: function unmergeBy(toRmFn) { for (var i = this.length - 1; i >= 0; i--) { var ele = this[i]; if (toRmFn(ele)) { this.unmergeAt(i); } } return this; }, map: function map(mapFn, thisArg) { var arr = []; var eles = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var ret = thisArg ? mapFn.apply(thisArg, [ele, i, eles]) : mapFn(ele, i, eles); arr.push(ret); } return arr; }, reduce: function reduce(fn, initialValue) { var val = initialValue; var eles = this; for (var i = 0; i < eles.length; i++) { val = fn(val, eles[i], i, eles); } return val; }, max: function max(valFn, thisArg) { var max = -Infinity; var maxEle; var eles = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var val = thisArg ? valFn.apply(thisArg, [ele, i, eles]) : valFn(ele, i, eles); if (val > max) { max = val; maxEle = ele; } } return { value: max, ele: maxEle }; }, min: function min(valFn, thisArg) { var min = Infinity; var minEle; var eles = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var val = thisArg ? valFn.apply(thisArg, [ele, i, eles]) : valFn(ele, i, eles); if (val < min) { min = val; minEle = ele; } } return { value: min, ele: minEle }; } }; // aliases var fn$1 = elesfn$8; fn$1['u'] = fn$1['|'] = fn$1['+'] = fn$1.union = fn$1.or = fn$1.add; fn$1['\\'] = fn$1['!'] = fn$1['-'] = fn$1.difference = fn$1.relativeComplement = fn$1.subtract = fn$1.not; fn$1['n'] = fn$1['&'] = fn$1['.'] = fn$1.and = fn$1.intersection = fn$1.intersect; fn$1['^'] = fn$1['(+)'] = fn$1['(-)'] = fn$1.symmetricDifference = fn$1.symdiff = fn$1.xor; fn$1.fnFilter = fn$1.filterFn = fn$1.stdFilter = fn$1.filter; fn$1.complement = fn$1.abscomp = fn$1.absoluteComplement; var elesfn$7 = { isNode: function isNode() { return this.group() === 'nodes'; }, isEdge: function isEdge() { return this.group() === 'edges'; }, isLoop: function isLoop() { return this.isEdge() && this.source()[0] === this.target()[0]; }, isSimple: function isSimple() { return this.isEdge() && this.source()[0] !== this.target()[0]; }, group: function group() { var ele = this[0]; if (ele) { return ele._private.group; } } }; /** * Elements are drawn in a specific order based on compound depth (low to high), the element type (nodes above edges), * and z-index (low to high). These styles affect how this applies: * * z-compound-depth: May be `bottom | orphan | auto | top`. The first drawn is `bottom`, then `orphan` which is the * same depth as the root of the compound graph, followed by the default value `auto` which draws in order from * root to leaves of the compound graph. The last drawn is `top`. * z-index-compare: May be `auto | manual`. The default value is `auto` which always draws edges under nodes. * `manual` ignores this convention and draws based on the `z-index` value setting. * z-index: An integer value that affects the relative draw order of elements. In general, an element with a higher * `z-index` will be drawn on top of an element with a lower `z-index`. */ var zIndexSort = function zIndexSort(a, b) { var cy = a.cy(); var hasCompoundNodes = cy.hasCompoundNodes(); function getDepth(ele) { var style = ele.pstyle('z-compound-depth'); if (style.value === 'auto') { return hasCompoundNodes ? ele.zDepth() : 0; } else if (style.value === 'bottom') { return -1; } else if (style.value === 'top') { return MAX_INT$1; } // 'orphan' return 0; } var depthDiff = getDepth(a) - getDepth(b); if (depthDiff !== 0) { return depthDiff; } function getEleDepth(ele) { var style = ele.pstyle('z-index-compare'); if (style.value === 'auto') { return ele.isNode() ? 1 : 0; } // 'manual' return 0; } var eleDiff = getEleDepth(a) - getEleDepth(b); if (eleDiff !== 0) { return eleDiff; } var zDiff = a.pstyle('z-index').value - b.pstyle('z-index').value; if (zDiff !== 0) { return zDiff; } // compare indices in the core (order added to graph w/ last on top) return a.poolIndex() - b.poolIndex(); }; var elesfn$6 = { forEach: function forEach(fn, thisArg) { if (fn$6(fn)) { var N = this.length; for (var i = 0; i < N; i++) { var ele = this[i]; var ret = thisArg ? fn.apply(thisArg, [ele, i, this]) : fn(ele, i, this); if (ret === false) { break; } // exit each early on return false } } return this; }, toArray: function toArray() { var array = []; for (var i = 0; i < this.length; i++) { array.push(this[i]); } return array; }, slice: function slice(start, end) { var array = []; var thisSize = this.length; if (end == null) { end = thisSize; } if (start == null) { start = 0; } if (start < 0) { start = thisSize + start; } if (end < 0) { end = thisSize + end; } for (var i = start; i >= 0 && i < end && i < thisSize; i++) { array.push(this[i]); } return this.spawn(array); }, size: function size() { return this.length; }, eq: function eq(i) { return this[i] || this.spawn(); }, first: function first() { return this[0] || this.spawn(); }, last: function last() { return this[this.length - 1] || this.spawn(); }, empty: function empty() { return this.length === 0; }, nonempty: function nonempty() { return !this.empty(); }, sort: function sort(sortFn) { if (!fn$6(sortFn)) { return this; } var sorted = this.toArray().sort(sortFn); return this.spawn(sorted); }, sortByZIndex: function sortByZIndex() { return this.sort(zIndexSort); }, zDepth: function zDepth() { var ele = this[0]; if (!ele) { return undefined; } // let cy = ele.cy(); var _p = ele._private; var group = _p.group; if (group === 'nodes') { var depth = _p.data.parent ? ele.parents().size() : 0; if (!ele.isParent()) { return MAX_INT$1 - 1; // childless nodes always on top } return depth; } else { var src = _p.source; var tgt = _p.target; var srcDepth = src.zDepth(); var tgtDepth = tgt.zDepth(); return Math.max(srcDepth, tgtDepth, 0); // depth of deepest parent } } }; elesfn$6.each = elesfn$6.forEach; var defineSymbolIterator = function defineSymbolIterator() { var typeofUndef = "undefined" ; var isIteratorSupported = (typeof Symbol === "undefined" ? "undefined" : _typeof(Symbol)) != typeofUndef && _typeof(Symbol.iterator) != typeofUndef; // eslint-disable-line no-undef if (isIteratorSupported) { elesfn$6[Symbol.iterator] = function () { var _this = this; // eslint-disable-line no-undef var entry = { value: undefined, done: false }; var i = 0; var length = this.length; return _defineProperty$1({ next: function next() { if (i < length) { entry.value = _this[i++]; } else { entry.value = undefined; entry.done = true; } return entry; } }, Symbol.iterator, function () { // eslint-disable-line no-undef return this; }); }; } }; defineSymbolIterator(); var getLayoutDimensionOptions = defaults$g({ nodeDimensionsIncludeLabels: false }); var elesfn$5 = { // Calculates and returns node dimensions { x, y } based on options given layoutDimensions: function layoutDimensions(options) { options = getLayoutDimensionOptions(options); var dims; if (!this.takesUpSpace()) { dims = { w: 0, h: 0 }; } else if (options.nodeDimensionsIncludeLabels) { var bbDim = this.boundingBox(); dims = { w: bbDim.w, h: bbDim.h }; } else { dims = { w: this.outerWidth(), h: this.outerHeight() }; } // sanitise the dimensions for external layouts (avoid division by zero) if (dims.w === 0 || dims.h === 0) { dims.w = dims.h = 1; } return dims; }, // using standard layout options, apply position function (w/ or w/o animation) layoutPositions: function layoutPositions(layout, options, fn) { var nodes = this.nodes().filter(function (n) { return !n.isParent(); }); var cy = this.cy(); var layoutEles = options.eles; // nodes & edges var getMemoizeKey = function getMemoizeKey(node) { return node.id(); }; var fnMem = memoize$1(fn, getMemoizeKey); // memoized version of position function layout.emit({ type: 'layoutstart', layout: layout }); layout.animations = []; var calculateSpacing = function calculateSpacing(spacing, nodesBb, pos) { var center = { x: nodesBb.x1 + nodesBb.w / 2, y: nodesBb.y1 + nodesBb.h / 2 }; var spacingVector = { // scale from center of bounding box (not necessarily 0,0) x: (pos.x - center.x) * spacing, y: (pos.y - center.y) * spacing }; return { x: center.x + spacingVector.x, y: center.y + spacingVector.y }; }; var useSpacingFactor = options.spacingFactor && options.spacingFactor !== 1; var spacingBb = function spacingBb() { if (!useSpacingFactor) { return null; } var bb = makeBoundingBox(); for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; var pos = fnMem(node, i); expandBoundingBoxByPoint(bb, pos.x, pos.y); } return bb; }; var bb = spacingBb(); var getFinalPos = memoize$1(function (node, i) { var newPos = fnMem(node, i); if (useSpacingFactor) { var spacing = Math.abs(options.spacingFactor); newPos = calculateSpacing(spacing, bb, newPos); } if (options.transform != null) { newPos = options.transform(node, newPos); } return newPos; }, getMemoizeKey); if (options.animate) { for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; var newPos = getFinalPos(node, i); var animateNode = options.animateFilter == null || options.animateFilter(node, i); if (animateNode) { var ani = node.animation({ position: newPos, duration: options.animationDuration, easing: options.animationEasing }); layout.animations.push(ani); } else { node.position(newPos); } } if (options.fit) { var fitAni = cy.animation({ fit: { boundingBox: layoutEles.boundingBoxAt(getFinalPos), padding: options.padding }, duration: options.animationDuration, easing: options.animationEasing }); layout.animations.push(fitAni); } else if (options.zoom !== undefined && options.pan !== undefined) { var zoomPanAni = cy.animation({ zoom: options.zoom, pan: options.pan, duration: options.animationDuration, easing: options.animationEasing }); layout.animations.push(zoomPanAni); } layout.animations.forEach(function (ani) { return ani.play(); }); layout.one('layoutready', options.ready); layout.emit({ type: 'layoutready', layout: layout }); Promise$1.all(layout.animations.map(function (ani) { return ani.promise(); })).then(function () { layout.one('layoutstop', options.stop); layout.emit({ type: 'layoutstop', layout: layout }); }); } else { nodes.positions(getFinalPos); if (options.fit) { cy.fit(options.eles, options.padding); } if (options.zoom != null) { cy.zoom(options.zoom); } if (options.pan) { cy.pan(options.pan); } layout.one('layoutready', options.ready); layout.emit({ type: 'layoutready', layout: layout }); layout.one('layoutstop', options.stop); layout.emit({ type: 'layoutstop', layout: layout }); } return this; // chaining }, layout: function layout(options) { var cy = this.cy(); return cy.makeLayout(extend({}, options, { eles: this })); } }; // aliases: elesfn$5.createLayout = elesfn$5.makeLayout = elesfn$5.layout; function styleCache(key, fn, ele) { var _p = ele._private; var cache = _p.styleCache = _p.styleCache || []; var val; if ((val = cache[key]) != null) { return val; } else { val = cache[key] = fn(ele); return val; } } function cacheStyleFunction(key, fn) { key = hashString(key); return function cachedStyleFunction(ele) { return styleCache(key, fn, ele); }; } function cachePrototypeStyleFunction(key, fn) { key = hashString(key); var selfFn = function selfFn(ele) { return fn.call(ele); }; return function cachedPrototypeStyleFunction() { var ele = this[0]; if (ele) { return styleCache(key, selfFn, ele); } }; } var elesfn$4 = { recalculateRenderedStyle: function recalculateRenderedStyle(useCache) { var cy = this.cy(); var renderer = cy.renderer(); var styleEnabled = cy.styleEnabled(); if (renderer && styleEnabled) { renderer.recalculateRenderedStyle(this, useCache); } return this; }, dirtyStyleCache: function dirtyStyleCache() { var cy = this.cy(); var dirty = function dirty(ele) { return ele._private.styleCache = null; }; if (cy.hasCompoundNodes()) { var eles; eles = this.spawnSelf().merge(this.descendants()).merge(this.parents()); eles.merge(eles.connectedEdges()); eles.forEach(dirty); } else { this.forEach(function (ele) { dirty(ele); ele.connectedEdges().forEach(dirty); }); } return this; }, // fully updates (recalculates) the style for the elements updateStyle: function updateStyle(notifyRenderer) { var cy = this._private.cy; if (!cy.styleEnabled()) { return this; } if (cy.batching()) { var bEles = cy._private.batchStyleEles; bEles.merge(this); return this; // chaining and exit early when batching } var hasCompounds = cy.hasCompoundNodes(); var updatedEles = this; notifyRenderer = notifyRenderer || notifyRenderer === undefined ? true : false; if (hasCompounds) { // then add everything up and down for compound selector checks updatedEles = this.spawnSelf().merge(this.descendants()).merge(this.parents()); } // let changedEles = style.apply( updatedEles ); var changedEles = updatedEles; if (notifyRenderer) { changedEles.emitAndNotify('style'); // let renderer know we changed style } else { changedEles.emit('style'); // just fire the event } updatedEles.forEach(function (ele) { return ele._private.styleDirty = true; }); return this; // chaining }, // private: clears dirty flag and recalculates style cleanStyle: function cleanStyle() { var cy = this.cy(); if (!cy.styleEnabled()) { return; } for (var i = 0; i < this.length; i++) { var ele = this[i]; if (ele._private.styleDirty) { // n.b. this flag should be set before apply() to avoid potential infinite recursion ele._private.styleDirty = false; cy.style().apply(ele); } } }, // get the internal parsed style object for the specified property parsedStyle: function parsedStyle(property) { var includeNonDefault = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; var ele = this[0]; var cy = ele.cy(); if (!cy.styleEnabled()) { return; } if (ele) { this.cleanStyle(); var overriddenStyle = ele._private.style[property]; if (overriddenStyle != null) { return overriddenStyle; } else if (includeNonDefault) { return cy.style().getDefaultProperty(property); } else { return null; } } }, numericStyle: function numericStyle(property) { var ele = this[0]; if (!ele.cy().styleEnabled()) { return; } if (ele) { var pstyle = ele.pstyle(property); return pstyle.pfValue !== undefined ? pstyle.pfValue : pstyle.value; } }, numericStyleUnits: function numericStyleUnits(property) { var ele = this[0]; if (!ele.cy().styleEnabled()) { return; } if (ele) { return ele.pstyle(property).units; } }, // get the specified css property as a rendered value (i.e. on-screen value) // or get the whole rendered style if no property specified (NB doesn't allow setting) renderedStyle: function renderedStyle(property) { var cy = this.cy(); if (!cy.styleEnabled()) { return this; } var ele = this[0]; if (ele) { return cy.style().getRenderedStyle(ele, property); } }, // read the calculated css style of the element or override the style (via a bypass) style: function style(name, value) { var cy = this.cy(); if (!cy.styleEnabled()) { return this; } var updateTransitions = false; var style = cy.style(); if (plainObject(name)) { // then extend the bypass var props = name; style.applyBypass(this, props, updateTransitions); this.emitAndNotify('style'); // let the renderer know we've updated style } else if (string(name)) { if (value === undefined) { // then get the property from the style var ele = this[0]; if (ele) { return style.getStylePropertyValue(ele, name); } else { // empty collection => can't get any value return; } } else { // then set the bypass with the property value style.applyBypass(this, name, value, updateTransitions); this.emitAndNotify('style'); // let the renderer know we've updated style } } else if (name === undefined) { var _ele = this[0]; if (_ele) { return style.getRawStyle(_ele); } else { // empty collection => can't get any value return; } } return this; // chaining }, removeStyle: function removeStyle(names) { var cy = this.cy(); if (!cy.styleEnabled()) { return this; } var updateTransitions = false; var style = cy.style(); var eles = this; if (names === undefined) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; style.removeAllBypasses(ele, updateTransitions); } } else { names = names.split(/\s+/); for (var _i = 0; _i < eles.length; _i++) { var _ele2 = eles[_i]; style.removeBypasses(_ele2, names, updateTransitions); } } this.emitAndNotify('style'); // let the renderer know we've updated style return this; // chaining }, show: function show() { this.css('display', 'element'); return this; // chaining }, hide: function hide() { this.css('display', 'none'); return this; // chaining }, effectiveOpacity: function effectiveOpacity() { var cy = this.cy(); if (!cy.styleEnabled()) { return 1; } var hasCompoundNodes = cy.hasCompoundNodes(); var ele = this[0]; if (ele) { var _p = ele._private; var parentOpacity = ele.pstyle('opacity').value; if (!hasCompoundNodes) { return parentOpacity; } var parents = !_p.data.parent ? null : ele.parents(); if (parents) { for (var i = 0; i < parents.length; i++) { var parent = parents[i]; var opacity = parent.pstyle('opacity').value; parentOpacity = opacity * parentOpacity; } } return parentOpacity; } }, transparent: function transparent() { var cy = this.cy(); if (!cy.styleEnabled()) { return false; } var ele = this[0]; var hasCompoundNodes = ele.cy().hasCompoundNodes(); if (ele) { if (!hasCompoundNodes) { return ele.pstyle('opacity').value === 0; } else { return ele.effectiveOpacity() === 0; } } }, backgrounding: function backgrounding() { var cy = this.cy(); if (!cy.styleEnabled()) { return false; } var ele = this[0]; return ele._private.backgrounding ? true : false; } }; function checkCompound(ele, parentOk) { var _p = ele._private; var parents = _p.data.parent ? ele.parents() : null; if (parents) { for (var i = 0; i < parents.length; i++) { var parent = parents[i]; if (!parentOk(parent)) { return false; } } } return true; } function defineDerivedStateFunction(specs) { var ok = specs.ok; var edgeOkViaNode = specs.edgeOkViaNode || specs.ok; var parentOk = specs.parentOk || specs.ok; return function () { var cy = this.cy(); if (!cy.styleEnabled()) { return true; } var ele = this[0]; var hasCompoundNodes = cy.hasCompoundNodes(); if (ele) { var _p = ele._private; if (!ok(ele)) { return false; } if (ele.isNode()) { return !hasCompoundNodes || checkCompound(ele, parentOk); } else { var src = _p.source; var tgt = _p.target; return edgeOkViaNode(src) && (!hasCompoundNodes || checkCompound(src, edgeOkViaNode)) && (src === tgt || edgeOkViaNode(tgt) && (!hasCompoundNodes || checkCompound(tgt, edgeOkViaNode))); } } }; } var eleTakesUpSpace = cacheStyleFunction('eleTakesUpSpace', function (ele) { return ele.pstyle('display').value === 'element' && ele.width() !== 0 && (ele.isNode() ? ele.height() !== 0 : true); }); elesfn$4.takesUpSpace = cachePrototypeStyleFunction('takesUpSpace', defineDerivedStateFunction({ ok: eleTakesUpSpace })); var eleInteractive = cacheStyleFunction('eleInteractive', function (ele) { return ele.pstyle('events').value === 'yes' && ele.pstyle('visibility').value === 'visible' && eleTakesUpSpace(ele); }); var parentInteractive = cacheStyleFunction('parentInteractive', function (parent) { return parent.pstyle('visibility').value === 'visible' && eleTakesUpSpace(parent); }); elesfn$4.interactive = cachePrototypeStyleFunction('interactive', defineDerivedStateFunction({ ok: eleInteractive, parentOk: parentInteractive, edgeOkViaNode: eleTakesUpSpace })); elesfn$4.noninteractive = function () { var ele = this[0]; if (ele) { return !ele.interactive(); } }; var eleVisible = cacheStyleFunction('eleVisible', function (ele) { return ele.pstyle('visibility').value === 'visible' && ele.pstyle('opacity').pfValue !== 0 && eleTakesUpSpace(ele); }); var edgeVisibleViaNode = eleTakesUpSpace; elesfn$4.visible = cachePrototypeStyleFunction('visible', defineDerivedStateFunction({ ok: eleVisible, edgeOkViaNode: edgeVisibleViaNode })); elesfn$4.hidden = function () { var ele = this[0]; if (ele) { return !ele.visible(); } }; elesfn$4.isBundledBezier = cachePrototypeStyleFunction('isBundledBezier', function () { if (!this.cy().styleEnabled()) { return false; } return !this.removed() && this.pstyle('curve-style').value === 'bezier' && this.takesUpSpace(); }); elesfn$4.bypass = elesfn$4.css = elesfn$4.style; elesfn$4.renderedCss = elesfn$4.renderedStyle; elesfn$4.removeBypass = elesfn$4.removeCss = elesfn$4.removeStyle; elesfn$4.pstyle = elesfn$4.parsedStyle; var elesfn$3 = {}; function defineSwitchFunction(params) { return function () { var args = arguments; var changedEles = []; // e.g. cy.nodes().select( data, handler ) if (args.length === 2) { var data = args[0]; var handler = args[1]; this.on(params.event, data, handler); } // e.g. cy.nodes().select( handler ) else if (args.length === 1 && fn$6(args[0])) { var _handler = args[0]; this.on(params.event, _handler); } // e.g. cy.nodes().select() // e.g. (private) cy.nodes().select(['tapselect']) else if (args.length === 0 || args.length === 1 && array(args[0])) { var addlEvents = args.length === 1 ? args[0] : null; for (var i = 0; i < this.length; i++) { var ele = this[i]; var able = !params.ableField || ele._private[params.ableField]; var changed = ele._private[params.field] != params.value; if (params.overrideAble) { var overrideAble = params.overrideAble(ele); if (overrideAble !== undefined) { able = overrideAble; if (!overrideAble) { return this; } // to save cycles assume not able for all on override } } if (able) { ele._private[params.field] = params.value; if (changed) { changedEles.push(ele); } } } var changedColl = this.spawn(changedEles); changedColl.updateStyle(); // change of state => possible change of style changedColl.emit(params.event); if (addlEvents) { changedColl.emit(addlEvents); } } return this; }; } function defineSwitchSet(params) { elesfn$3[params.field] = function () { var ele = this[0]; if (ele) { if (params.overrideField) { var val = params.overrideField(ele); if (val !== undefined) { return val; } } return ele._private[params.field]; } }; elesfn$3[params.on] = defineSwitchFunction({ event: params.on, field: params.field, ableField: params.ableField, overrideAble: params.overrideAble, value: true }); elesfn$3[params.off] = defineSwitchFunction({ event: params.off, field: params.field, ableField: params.ableField, overrideAble: params.overrideAble, value: false }); } defineSwitchSet({ field: 'locked', overrideField: function overrideField(ele) { return ele.cy().autolock() ? true : undefined; }, on: 'lock', off: 'unlock' }); defineSwitchSet({ field: 'grabbable', overrideField: function overrideField(ele) { return ele.cy().autoungrabify() || ele.pannable() ? false : undefined; }, on: 'grabify', off: 'ungrabify' }); defineSwitchSet({ field: 'selected', ableField: 'selectable', overrideAble: function overrideAble(ele) { return ele.cy().autounselectify() ? false : undefined; }, on: 'select', off: 'unselect' }); defineSwitchSet({ field: 'selectable', overrideField: function overrideField(ele) { return ele.cy().autounselectify() ? false : undefined; }, on: 'selectify', off: 'unselectify' }); elesfn$3.deselect = elesfn$3.unselect; elesfn$3.grabbed = function () { var ele = this[0]; if (ele) { return ele._private.grabbed; } }; defineSwitchSet({ field: 'active', on: 'activate', off: 'unactivate' }); defineSwitchSet({ field: 'pannable', on: 'panify', off: 'unpanify' }); elesfn$3.inactive = function () { var ele = this[0]; if (ele) { return !ele._private.active; } }; var elesfn$2 = {}; // DAG functions //////////////// var defineDagExtremity = function defineDagExtremity(params) { return function dagExtremityImpl(selector) { var eles = this; var ret = []; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; if (!ele.isNode()) { continue; } var disqualified = false; var edges = ele.connectedEdges(); for (var j = 0; j < edges.length; j++) { var edge = edges[j]; var src = edge.source(); var tgt = edge.target(); if (params.noIncomingEdges && tgt === ele && src !== ele || params.noOutgoingEdges && src === ele && tgt !== ele) { disqualified = true; break; } } if (!disqualified) { ret.push(ele); } } return this.spawn(ret, true).filter(selector); }; }; var defineDagOneHop = function defineDagOneHop(params) { return function (selector) { var eles = this; var oEles = []; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; if (!ele.isNode()) { continue; } var edges = ele.connectedEdges(); for (var j = 0; j < edges.length; j++) { var edge = edges[j]; var src = edge.source(); var tgt = edge.target(); if (params.outgoing && src === ele) { oEles.push(edge); oEles.push(tgt); } else if (params.incoming && tgt === ele) { oEles.push(edge); oEles.push(src); } } } return this.spawn(oEles, true).filter(selector); }; }; var defineDagAllHops = function defineDagAllHops(params) { return function (selector) { var eles = this; var sEles = []; var sElesIds = {}; for (;;) { var next = params.outgoing ? eles.outgoers() : eles.incomers(); if (next.length === 0) { break; } // done if none left var newNext = false; for (var i = 0; i < next.length; i++) { var n = next[i]; var nid = n.id(); if (!sElesIds[nid]) { sElesIds[nid] = true; sEles.push(n); newNext = true; } } if (!newNext) { break; } // done if touched all outgoers already eles = next; } return this.spawn(sEles, true).filter(selector); }; }; elesfn$2.clearTraversalCache = function () { for (var i = 0; i < this.length; i++) { this[i]._private.traversalCache = null; } }; extend(elesfn$2, { // get the root nodes in the DAG roots: defineDagExtremity({ noIncomingEdges: true }), // get the leaf nodes in the DAG leaves: defineDagExtremity({ noOutgoingEdges: true }), // normally called children in graph theory // these nodes =edges=> outgoing nodes outgoers: cache(defineDagOneHop({ outgoing: true }), 'outgoers'), // aka DAG descendants successors: defineDagAllHops({ outgoing: true }), // normally called parents in graph theory // these nodes <=edges= incoming nodes incomers: cache(defineDagOneHop({ incoming: true }), 'incomers'), // aka DAG ancestors predecessors: defineDagAllHops({ incoming: true }) }); // Neighbourhood functions ////////////////////////// extend(elesfn$2, { neighborhood: cache(function (selector) { var elements = []; var nodes = this.nodes(); for (var i = 0; i < nodes.length; i++) { // for all nodes var node = nodes[i]; var connectedEdges = node.connectedEdges(); // for each connected edge, add the edge and the other node for (var j = 0; j < connectedEdges.length; j++) { var edge = connectedEdges[j]; var src = edge.source(); var tgt = edge.target(); var otherNode = node === src ? tgt : src; // need check in case of loop if (otherNode.length > 0) { elements.push(otherNode[0]); // add node 1 hop away } // add connected edge elements.push(edge[0]); } } return this.spawn(elements, true).filter(selector); }, 'neighborhood'), closedNeighborhood: function closedNeighborhood(selector) { return this.neighborhood().add(this).filter(selector); }, openNeighborhood: function openNeighborhood(selector) { return this.neighborhood(selector); } }); // aliases elesfn$2.neighbourhood = elesfn$2.neighborhood; elesfn$2.closedNeighbourhood = elesfn$2.closedNeighborhood; elesfn$2.openNeighbourhood = elesfn$2.openNeighborhood; // Edge functions ///////////////// extend(elesfn$2, { source: cache(function sourceImpl(selector) { var ele = this[0]; var src; if (ele) { src = ele._private.source || ele.cy().collection(); } return src && selector ? src.filter(selector) : src; }, 'source'), target: cache(function targetImpl(selector) { var ele = this[0]; var tgt; if (ele) { tgt = ele._private.target || ele.cy().collection(); } return tgt && selector ? tgt.filter(selector) : tgt; }, 'target'), sources: defineSourceFunction({ attr: 'source' }), targets: defineSourceFunction({ attr: 'target' }) }); function defineSourceFunction(params) { return function sourceImpl(selector) { var sources = []; for (var i = 0; i < this.length; i++) { var ele = this[i]; var src = ele._private[params.attr]; if (src) { sources.push(src); } } return this.spawn(sources, true).filter(selector); }; } extend(elesfn$2, { edgesWith: cache(defineEdgesWithFunction(), 'edgesWith'), edgesTo: cache(defineEdgesWithFunction({ thisIsSrc: true }), 'edgesTo') }); function defineEdgesWithFunction(params) { return function edgesWithImpl(otherNodes) { var elements = []; var cy = this._private.cy; var p = params || {}; // get elements if a selector is specified if (string(otherNodes)) { otherNodes = cy.$(otherNodes); } for (var h = 0; h < otherNodes.length; h++) { var edges = otherNodes[h]._private.edges; for (var i = 0; i < edges.length; i++) { var edge = edges[i]; var edgeData = edge._private.data; var thisToOther = this.hasElementWithId(edgeData.source) && otherNodes.hasElementWithId(edgeData.target); var otherToThis = otherNodes.hasElementWithId(edgeData.source) && this.hasElementWithId(edgeData.target); var edgeConnectsThisAndOther = thisToOther || otherToThis; if (!edgeConnectsThisAndOther) { continue; } if (p.thisIsSrc || p.thisIsTgt) { if (p.thisIsSrc && !thisToOther) { continue; } if (p.thisIsTgt && !otherToThis) { continue; } } elements.push(edge); } } return this.spawn(elements, true); }; } extend(elesfn$2, { connectedEdges: cache(function (selector) { var retEles = []; var eles = this; for (var i = 0; i < eles.length; i++) { var node = eles[i]; if (!node.isNode()) { continue; } var edges = node._private.edges; for (var j = 0; j < edges.length; j++) { var edge = edges[j]; retEles.push(edge); } } return this.spawn(retEles, true).filter(selector); }, 'connectedEdges'), connectedNodes: cache(function (selector) { var retEles = []; var eles = this; for (var i = 0; i < eles.length; i++) { var edge = eles[i]; if (!edge.isEdge()) { continue; } retEles.push(edge.source()[0]); retEles.push(edge.target()[0]); } return this.spawn(retEles, true).filter(selector); }, 'connectedNodes'), parallelEdges: cache(defineParallelEdgesFunction(), 'parallelEdges'), codirectedEdges: cache(defineParallelEdgesFunction({ codirected: true }), 'codirectedEdges') }); function defineParallelEdgesFunction(params) { var defaults = { codirected: false }; params = extend({}, defaults, params); return function parallelEdgesImpl(selector) { // micro-optimised for renderer var elements = []; var edges = this.edges(); var p = params; // look at all the edges in the collection for (var i = 0; i < edges.length; i++) { var edge1 = edges[i]; var edge1_p = edge1._private; var src1 = edge1_p.source; var srcid1 = src1._private.data.id; var tgtid1 = edge1_p.data.target; var srcEdges1 = src1._private.edges; // look at edges connected to the src node of this edge for (var j = 0; j < srcEdges1.length; j++) { var edge2 = srcEdges1[j]; var edge2data = edge2._private.data; var tgtid2 = edge2data.target; var srcid2 = edge2data.source; var codirected = tgtid2 === tgtid1 && srcid2 === srcid1; var oppdirected = srcid1 === tgtid2 && tgtid1 === srcid2; if (p.codirected && codirected || !p.codirected && (codirected || oppdirected)) { elements.push(edge2); } } } return this.spawn(elements, true).filter(selector); }; } // Misc functions ///////////////// extend(elesfn$2, { components: function components(root) { var self = this; var cy = self.cy(); var visited = cy.collection(); var unvisited = root == null ? self.nodes() : root.nodes(); var components = []; if (root != null && unvisited.empty()) { // root may contain only edges unvisited = root.sources(); // doesn't matter which node to use (undirected), so just use the source sides } var visitInComponent = function visitInComponent(node, component) { visited.merge(node); unvisited.unmerge(node); component.merge(node); }; if (unvisited.empty()) { return self.spawn(); } var _loop = function _loop() { // each iteration yields a component var cmpt = cy.collection(); components.push(cmpt); var root = unvisited[0]; visitInComponent(root, cmpt); self.bfs({ directed: false, roots: root, visit: function visit(v) { return visitInComponent(v, cmpt); } }); cmpt.forEach(function (node) { node.connectedEdges().forEach(function (e) { // connectedEdges() usually cached if (self.has(e) && cmpt.has(e.source()) && cmpt.has(e.target())) { // has() is cheap cmpt.merge(e); // forEach() only considers nodes -- sets N at call time } }); }); }; do { _loop(); } while (unvisited.length > 0); return components; }, component: function component() { var ele = this[0]; return ele.cy().mutableElements().components(ele)[0]; } }); elesfn$2.componentsOf = elesfn$2.components; // represents a set of nodes, edges, or both together var Collection = function Collection(cy, elements) { var unique = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false; var removed = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false; if (cy === undefined) { error('A collection must have a reference to the core'); return; } var map = new Map$2(); var createdElements = false; if (!elements) { elements = []; } else if (elements.length > 0 && plainObject(elements[0]) && !element(elements[0])) { createdElements = true; // make elements from json and restore all at once later var eles = []; var elesIds = new Set$1(); for (var i = 0, l = elements.length; i < l; i++) { var json = elements[i]; if (json.data == null) { json.data = {}; } var _data = json.data; // make sure newly created elements have valid ids if (_data.id == null) { _data.id = uuid(); } else if (cy.hasElementWithId(_data.id) || elesIds.has(_data.id)) { continue; // can't create element if prior id already exists } var ele = new Element(cy, json, false); eles.push(ele); elesIds.add(_data.id); } elements = eles; } this.length = 0; for (var _i = 0, _l = elements.length; _i < _l; _i++) { var element$1 = elements[_i][0]; // [0] in case elements is an array of collections, rather than array of elements if (element$1 == null) { continue; } var id = element$1._private.data.id; if (!unique || !map.has(id)) { if (unique) { map.set(id, { index: this.length, ele: element$1 }); } this[this.length] = element$1; this.length++; } } this._private = { eles: this, cy: cy, get map() { if (this.lazyMap == null) { this.rebuildMap(); } return this.lazyMap; }, set map(m) { this.lazyMap = m; }, rebuildMap: function rebuildMap() { var m = this.lazyMap = new Map$2(); var eles = this.eles; for (var _i2 = 0; _i2 < eles.length; _i2++) { var _ele = eles[_i2]; m.set(_ele.id(), { index: _i2, ele: _ele }); } } }; if (unique) { this._private.map = map; } // restore the elements if we created them from json if (createdElements && !removed) { this.restore(); } }; // Functions //////////////////////////////////////////////////////////////////////////////////////////////////// // keep the prototypes in sync (an element has the same functions as a collection) // and use elefn and elesfn as shorthands to the prototypes var elesfn$1 = Element.prototype = Collection.prototype = Object.create(Array.prototype); elesfn$1.instanceString = function () { return 'collection'; }; elesfn$1.spawn = function (eles, unique) { return new Collection(this.cy(), eles, unique); }; elesfn$1.spawnSelf = function () { return this.spawn(this); }; elesfn$1.cy = function () { return this._private.cy; }; elesfn$1.renderer = function () { return this._private.cy.renderer(); }; elesfn$1.element = function () { return this[0]; }; elesfn$1.collection = function () { if (collection(this)) { return this; } else { // an element return new Collection(this._private.cy, [this]); } }; elesfn$1.unique = function () { return new Collection(this._private.cy, this, true); }; elesfn$1.hasElementWithId = function (id) { id = '' + id; // id must be string return this._private.map.has(id); }; elesfn$1.getElementById = function (id) { id = '' + id; // id must be string var cy = this._private.cy; var entry = this._private.map.get(id); return entry ? entry.ele : new Collection(cy); // get ele or empty collection }; elesfn$1.$id = elesfn$1.getElementById; elesfn$1.poolIndex = function () { var cy = this._private.cy; var eles = cy._private.elements; var id = this[0]._private.data.id; return eles._private.map.get(id).index; }; elesfn$1.indexOf = function (ele) { var id = ele[0]._private.data.id; return this._private.map.get(id).index; }; elesfn$1.indexOfId = function (id) { id = '' + id; // id must be string return this._private.map.get(id).index; }; elesfn$1.json = function (obj) { var ele = this.element(); var cy = this.cy(); if (ele == null && obj) { return this; } // can't set to no eles if (ele == null) { return undefined; } // can't get from no eles var p = ele._private; if (plainObject(obj)) { // set cy.startBatch(); if (obj.data) { ele.data(obj.data); var _data2 = p.data; if (ele.isEdge()) { // source and target are immutable via data() var move = false; var spec = {}; var src = obj.data.source; var tgt = obj.data.target; if (src != null && src != _data2.source) { spec.source = '' + src; // id must be string move = true; } if (tgt != null && tgt != _data2.target) { spec.target = '' + tgt; // id must be string move = true; } if (move) { ele = ele.move(spec); } } else { // parent is immutable via data() var newParentValSpecd = ('parent' in obj.data); var parent = obj.data.parent; if (newParentValSpecd && (parent != null || _data2.parent != null) && parent != _data2.parent) { if (parent === undefined) { // can't set undefined imperatively, so use null parent = null; } if (parent != null) { parent = '' + parent; // id must be string } ele = ele.move({ parent: parent }); } } } if (obj.position) { ele.position(obj.position); } // ignore group -- immutable var checkSwitch = function checkSwitch(k, trueFnName, falseFnName) { var obj_k = obj[k]; if (obj_k != null && obj_k !== p[k]) { if (obj_k) { ele[trueFnName](); } else { ele[falseFnName](); } } }; checkSwitch('removed', 'remove', 'restore'); checkSwitch('selected', 'select', 'unselect'); checkSwitch('selectable', 'selectify', 'unselectify'); checkSwitch('locked', 'lock', 'unlock'); checkSwitch('grabbable', 'grabify', 'ungrabify'); checkSwitch('pannable', 'panify', 'unpanify'); if (obj.classes != null) { ele.classes(obj.classes); } cy.endBatch(); return this; } else if (obj === undefined) { // get var json = { data: copy(p.data), position: copy(p.position), group: p.group, removed: p.removed, selected: p.selected, selectable: p.selectable, locked: p.locked, grabbable: p.grabbable, pannable: p.pannable, classes: null }; json.classes = ''; var i = 0; p.classes.forEach(function (cls) { return json.classes += i++ === 0 ? cls : ' ' + cls; }); return json; } }; elesfn$1.jsons = function () { var jsons = []; for (var i = 0; i < this.length; i++) { var ele = this[i]; var json = ele.json(); jsons.push(json); } return jsons; }; elesfn$1.clone = function () { var cy = this.cy(); var elesArr = []; for (var i = 0; i < this.length; i++) { var ele = this[i]; var json = ele.json(); var clone = new Element(cy, json, false); // NB no restore elesArr.push(clone); } return new Collection(cy, elesArr); }; elesfn$1.copy = elesfn$1.clone; elesfn$1.restore = function () { var notifyRenderer = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true; var addToPool = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; var self = this; var cy = self.cy(); var cy_p = cy._private; // create arrays of nodes and edges, since we need to // restore the nodes first var nodes = []; var edges = []; var elements; for (var _i3 = 0, l = self.length; _i3 < l; _i3++) { var ele = self[_i3]; if (addToPool && !ele.removed()) { // don't need to handle this ele continue; } // keep nodes first in the array and edges after if (ele.isNode()) { // put to front of array if node nodes.push(ele); } else { // put to end of array if edge edges.push(ele); } } elements = nodes.concat(edges); var i; var removeFromElements = function removeFromElements() { elements.splice(i, 1); i--; }; // now, restore each element for (i = 0; i < elements.length; i++) { var _ele2 = elements[i]; var _private = _ele2._private; var _data3 = _private.data; // the traversal cache should start fresh when ele is added _ele2.clearTraversalCache(); // set id and validate if (!addToPool && !_private.removed) ; else if (_data3.id === undefined) { _data3.id = uuid(); } else if (number$1(_data3.id)) { _data3.id = '' + _data3.id; // now it's a string } else if (emptyString(_data3.id) || !string(_data3.id)) { error('Can not create element with invalid string ID `' + _data3.id + '`'); // can't create element if it has empty string as id or non-string id removeFromElements(); continue; } else if (cy.hasElementWithId(_data3.id)) { error('Can not create second element with ID `' + _data3.id + '`'); // can't create element if one already has that id removeFromElements(); continue; } var id = _data3.id; // id is finalised, now let's keep a ref if (_ele2.isNode()) { // extra checks for nodes var pos = _private.position; // make sure the nodes have a defined position if (pos.x == null) { pos.x = 0; } if (pos.y == null) { pos.y = 0; } } if (_ele2.isEdge()) { // extra checks for edges var edge = _ele2; var fields = ['source', 'target']; var fieldsLength = fields.length; var badSourceOrTarget = false; for (var j = 0; j < fieldsLength; j++) { var field = fields[j]; var val = _data3[field]; if (number$1(val)) { val = _data3[field] = '' + _data3[field]; // now string } if (val == null || val === '') { // can't create if source or target is not defined properly error('Can not create edge `' + id + '` with unspecified ' + field); badSourceOrTarget = true; } else if (!cy.hasElementWithId(val)) { // can't create edge if one of its nodes doesn't exist error('Can not create edge `' + id + '` with nonexistant ' + field + ' `' + val + '`'); badSourceOrTarget = true; } } if (badSourceOrTarget) { removeFromElements(); continue; } // can't create this var src = cy.getElementById(_data3.source); var tgt = cy.getElementById(_data3.target); // only one edge in node if loop if (src.same(tgt)) { src._private.edges.push(edge); } else { src._private.edges.push(edge); tgt._private.edges.push(edge); } edge._private.source = src; edge._private.target = tgt; } // if is edge // create mock ids / indexes maps for element so it can be used like collections _private.map = new Map$2(); _private.map.set(id, { ele: _ele2, index: 0 }); _private.removed = false; if (addToPool) { cy.addToPool(_ele2); } } // for each element // do compound node sanity checks for (var _i4 = 0; _i4 < nodes.length; _i4++) { // each node var node = nodes[_i4]; var _data4 = node._private.data; if (number$1(_data4.parent)) { // then automake string _data4.parent = '' + _data4.parent; } var parentId = _data4.parent; var specifiedParent = parentId != null; if (specifiedParent || node._private.parent) { var parent = node._private.parent ? cy.collection().merge(node._private.parent) : cy.getElementById(parentId); if (parent.empty()) { // non-existant parent; just remove it _data4.parent = undefined; } else if (parent[0].removed()) { warn('Node added with missing parent, reference to parent removed'); _data4.parent = undefined; node._private.parent = null; } else { var selfAsParent = false; var ancestor = parent; while (!ancestor.empty()) { if (node.same(ancestor)) { // mark self as parent and remove from data selfAsParent = true; _data4.parent = undefined; // remove parent reference // exit or we loop forever break; } ancestor = ancestor.parent(); } if (!selfAsParent) { // connect with children parent[0]._private.children.push(node); node._private.parent = parent[0]; // let the core know we have a compound graph cy_p.hasCompoundNodes = true; } } // else } // if specified parent } // for each node if (elements.length > 0) { var restored = elements.length === self.length ? self : new Collection(cy, elements); for (var _i5 = 0; _i5 < restored.length; _i5++) { var _ele3 = restored[_i5]; if (_ele3.isNode()) { continue; } // adding an edge invalidates the traversal caches for the parallel edges _ele3.parallelEdges().clearTraversalCache(); // adding an edge invalidates the traversal cache for the connected nodes _ele3.source().clearTraversalCache(); _ele3.target().clearTraversalCache(); } var toUpdateStyle; if (cy_p.hasCompoundNodes) { toUpdateStyle = cy.collection().merge(restored).merge(restored.connectedNodes()).merge(restored.parent()); } else { toUpdateStyle = restored; } toUpdateStyle.dirtyCompoundBoundsCache().dirtyBoundingBoxCache().updateStyle(notifyRenderer); if (notifyRenderer) { restored.emitAndNotify('add'); } else if (addToPool) { restored.emit('add'); } } return self; // chainability }; elesfn$1.removed = function () { var ele = this[0]; return ele && ele._private.removed; }; elesfn$1.inside = function () { var ele = this[0]; return ele && !ele._private.removed; }; elesfn$1.remove = function () { var notifyRenderer = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true; var removeFromPool = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; var self = this; var elesToRemove = []; var elesToRemoveIds = {}; var cy = self._private.cy; // add connected edges function addConnectedEdges(node) { var edges = node._private.edges; for (var i = 0; i < edges.length; i++) { add(edges[i]); } } // add descendant nodes function addChildren(node) { var children = node._private.children; for (var i = 0; i < children.length; i++) { add(children[i]); } } function add(ele) { var alreadyAdded = elesToRemoveIds[ele.id()]; if (removeFromPool && ele.removed() || alreadyAdded) { return; } else { elesToRemoveIds[ele.id()] = true; } if (ele.isNode()) { elesToRemove.push(ele); // nodes are removed last addConnectedEdges(ele); addChildren(ele); } else { elesToRemove.unshift(ele); // edges are removed first } } // make the list of elements to remove // (may be removing more than specified due to connected edges etc) for (var i = 0, l = self.length; i < l; i++) { var ele = self[i]; add(ele); } function removeEdgeRef(node, edge) { var connectedEdges = node._private.edges; removeFromArray(connectedEdges, edge); // removing an edges invalidates the traversal cache for its nodes node.clearTraversalCache(); } function removeParallelRef(pllEdge) { // removing an edge invalidates the traversal caches for the parallel edges pllEdge.clearTraversalCache(); } var alteredParents = []; alteredParents.ids = {}; function removeChildRef(parent, ele) { ele = ele[0]; parent = parent[0]; var children = parent._private.children; var pid = parent.id(); removeFromArray(children, ele); // remove parent => child ref ele._private.parent = null; // remove child => parent ref if (!alteredParents.ids[pid]) { alteredParents.ids[pid] = true; alteredParents.push(parent); } } self.dirtyCompoundBoundsCache(); if (removeFromPool) { cy.removeFromPool(elesToRemove); // remove from core pool } for (var _i6 = 0; _i6 < elesToRemove.length; _i6++) { var _ele4 = elesToRemove[_i6]; if (_ele4.isEdge()) { // remove references to this edge in its connected nodes var src = _ele4.source()[0]; var tgt = _ele4.target()[0]; removeEdgeRef(src, _ele4); removeEdgeRef(tgt, _ele4); var pllEdges = _ele4.parallelEdges(); for (var j = 0; j < pllEdges.length; j++) { var pllEdge = pllEdges[j]; removeParallelRef(pllEdge); if (pllEdge.isBundledBezier()) { pllEdge.dirtyBoundingBoxCache(); } } } else { // remove reference to parent var parent = _ele4.parent(); if (parent.length !== 0) { removeChildRef(parent, _ele4); } } if (removeFromPool) { // mark as removed _ele4._private.removed = true; } } // check to see if we have a compound graph or not var elesStillInside = cy._private.elements; cy._private.hasCompoundNodes = false; for (var _i7 = 0; _i7 < elesStillInside.length; _i7++) { var _ele5 = elesStillInside[_i7]; if (_ele5.isParent()) { cy._private.hasCompoundNodes = true; break; } } var removedElements = new Collection(this.cy(), elesToRemove); if (removedElements.size() > 0) { // must manually notify since trigger won't do this automatically once removed if (notifyRenderer) { removedElements.emitAndNotify('remove'); } else if (removeFromPool) { removedElements.emit('remove'); } } // the parents who were modified by the removal need their style updated for (var _i8 = 0; _i8 < alteredParents.length; _i8++) { var _ele6 = alteredParents[_i8]; if (!removeFromPool || !_ele6.removed()) { _ele6.updateStyle(); } } return removedElements; }; elesfn$1.move = function (struct) { var cy = this._private.cy; var eles = this; // just clean up refs, caches, etc. in the same way as when removing and then restoring // (our calls to remove/restore do not remove from the graph or make events) var notifyRenderer = false; var modifyPool = false; var toString = function toString(id) { return id == null ? id : '' + id; }; // id must be string if (struct.source !== undefined || struct.target !== undefined) { var srcId = toString(struct.source); var tgtId = toString(struct.target); var srcExists = srcId != null && cy.hasElementWithId(srcId); var tgtExists = tgtId != null && cy.hasElementWithId(tgtId); if (srcExists || tgtExists) { cy.batch(function () { // avoid duplicate style updates eles.remove(notifyRenderer, modifyPool); // clean up refs etc. eles.emitAndNotify('moveout'); for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var _data5 = ele._private.data; if (ele.isEdge()) { if (srcExists) { _data5.source = srcId; } if (tgtExists) { _data5.target = tgtId; } } } eles.restore(notifyRenderer, modifyPool); // make new refs, style, etc. }); eles.emitAndNotify('move'); } } else if (struct.parent !== undefined) { // move node to new parent var parentId = toString(struct.parent); var parentExists = parentId === null || cy.hasElementWithId(parentId); if (parentExists) { var pidToAssign = parentId === null ? undefined : parentId; cy.batch(function () { // avoid duplicate style updates var updated = eles.remove(notifyRenderer, modifyPool); // clean up refs etc. updated.emitAndNotify('moveout'); for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var _data6 = ele._private.data; if (ele.isNode()) { _data6.parent = pidToAssign; } } updated.restore(notifyRenderer, modifyPool); // make new refs, style, etc. }); eles.emitAndNotify('move'); } } return this; }; [elesfn$j, elesfn$i, elesfn$h, elesfn$g, elesfn$f, data, elesfn$d, dimensions, elesfn$9, elesfn$8, elesfn$7, elesfn$6, elesfn$5, elesfn$4, elesfn$3, elesfn$2].forEach(function (props) { extend(elesfn$1, props); }); var corefn$9 = { add: function add(opts) { var elements; var cy = this; // add the elements if (elementOrCollection(opts)) { var eles = opts; if (eles._private.cy === cy) { // same instance => just restore elements = eles.restore(); } else { // otherwise, copy from json var jsons = []; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; jsons.push(ele.json()); } elements = new Collection(cy, jsons); } } // specify an array of options else if (array(opts)) { var _jsons = opts; elements = new Collection(cy, _jsons); } // specify via opts.nodes and opts.edges else if (plainObject(opts) && (array(opts.nodes) || array(opts.edges))) { var elesByGroup = opts; var _jsons2 = []; var grs = ['nodes', 'edges']; for (var _i = 0, il = grs.length; _i < il; _i++) { var group = grs[_i]; var elesArray = elesByGroup[group]; if (array(elesArray)) { for (var j = 0, jl = elesArray.length; j < jl; j++) { var json = extend({ group: group }, elesArray[j]); _jsons2.push(json); } } } elements = new Collection(cy, _jsons2); } // specify options for one element else { var _json = opts; elements = new Element(cy, _json).collection(); } return elements; }, remove: function remove(collection) { if (elementOrCollection(collection)) ; else if (string(collection)) { var selector = collection; collection = this.$(selector); } return collection.remove(); } }; /* global Float32Array */ /*! Bezier curve function generator. Copyright Gaetan Renaudeau. MIT License: http://en.wikipedia.org/wiki/MIT_License */ function generateCubicBezier(mX1, mY1, mX2, mY2) { var NEWTON_ITERATIONS = 4, NEWTON_MIN_SLOPE = 0.001, SUBDIVISION_PRECISION = 0.0000001, SUBDIVISION_MAX_ITERATIONS = 10, kSplineTableSize = 11, kSampleStepSize = 1.0 / (kSplineTableSize - 1.0), float32ArraySupported = typeof Float32Array !== 'undefined'; /* Must contain four arguments. */ if (arguments.length !== 4) { return false; } /* Arguments must be numbers. */ for (var i = 0; i < 4; ++i) { if (typeof arguments[i] !== "number" || isNaN(arguments[i]) || !isFinite(arguments[i])) { return false; } } /* X values must be in the [0, 1] range. */ mX1 = Math.min(mX1, 1); mX2 = Math.min(mX2, 1); mX1 = Math.max(mX1, 0); mX2 = Math.max(mX2, 0); var mSampleValues = float32ArraySupported ? new Float32Array(kSplineTableSize) : new Array(kSplineTableSize); function A(aA1, aA2) { return 1.0 - 3.0 * aA2 + 3.0 * aA1; } function B(aA1, aA2) { return 3.0 * aA2 - 6.0 * aA1; } function C(aA1) { return 3.0 * aA1; } function calcBezier(aT, aA1, aA2) { return ((A(aA1, aA2) * aT + B(aA1, aA2)) * aT + C(aA1)) * aT; } function getSlope(aT, aA1, aA2) { return 3.0 * A(aA1, aA2) * aT * aT + 2.0 * B(aA1, aA2) * aT + C(aA1); } function newtonRaphsonIterate(aX, aGuessT) { for (var _i = 0; _i < NEWTON_ITERATIONS; ++_i) { var currentSlope = getSlope(aGuessT, mX1, mX2); if (currentSlope === 0.0) { return aGuessT; } var currentX = calcBezier(aGuessT, mX1, mX2) - aX; aGuessT -= currentX / currentSlope; } return aGuessT; } function calcSampleValues() { for (var _i2 = 0; _i2 < kSplineTableSize; ++_i2) { mSampleValues[_i2] = calcBezier(_i2 * kSampleStepSize, mX1, mX2); } } function binarySubdivide(aX, aA, aB) { var currentX, currentT, i = 0; do { currentT = aA + (aB - aA) / 2.0; currentX = calcBezier(currentT, mX1, mX2) - aX; if (currentX > 0.0) { aB = currentT; } else { aA = currentT; } } while (Math.abs(currentX) > SUBDIVISION_PRECISION && ++i < SUBDIVISION_MAX_ITERATIONS); return currentT; } function getTForX(aX) { var intervalStart = 0.0, currentSample = 1, lastSample = kSplineTableSize - 1; for (; currentSample !== lastSample && mSampleValues[currentSample] <= aX; ++currentSample) { intervalStart += kSampleStepSize; } --currentSample; var dist = (aX - mSampleValues[currentSample]) / (mSampleValues[currentSample + 1] - mSampleValues[currentSample]), guessForT = intervalStart + dist * kSampleStepSize, initialSlope = getSlope(guessForT, mX1, mX2); if (initialSlope >= NEWTON_MIN_SLOPE) { return newtonRaphsonIterate(aX, guessForT); } else if (initialSlope === 0.0) { return guessForT; } else { return binarySubdivide(aX, intervalStart, intervalStart + kSampleStepSize); } } var _precomputed = false; function precompute() { _precomputed = true; if (mX1 !== mY1 || mX2 !== mY2) { calcSampleValues(); } } var f = function f(aX) { if (!_precomputed) { precompute(); } if (mX1 === mY1 && mX2 === mY2) { return aX; } if (aX === 0) { return 0; } if (aX === 1) { return 1; } return calcBezier(getTForX(aX), mY1, mY2); }; f.getControlPoints = function () { return [{ x: mX1, y: mY1 }, { x: mX2, y: mY2 }]; }; var str = "generateBezier(" + [mX1, mY1, mX2, mY2] + ")"; f.toString = function () { return str; }; return f; } /*! Runge-Kutta spring physics function generator. Adapted from Framer.js, copyright Koen Bok. MIT License: http://en.wikipedia.org/wiki/MIT_License */ /* Given a tension, friction, and duration, a simulation at 60FPS will first run without a defined duration in order to calculate the full path. A second pass then adjusts the time delta -- using the relation between actual time and duration -- to calculate the path for the duration-constrained animation. */ var generateSpringRK4 = function () { function springAccelerationForState(state) { return -state.tension * state.x - state.friction * state.v; } function springEvaluateStateWithDerivative(initialState, dt, derivative) { var state = { x: initialState.x + derivative.dx * dt, v: initialState.v + derivative.dv * dt, tension: initialState.tension, friction: initialState.friction }; return { dx: state.v, dv: springAccelerationForState(state) }; } function springIntegrateState(state, dt) { var a = { dx: state.v, dv: springAccelerationForState(state) }, b = springEvaluateStateWithDerivative(state, dt * 0.5, a), c = springEvaluateStateWithDerivative(state, dt * 0.5, b), d = springEvaluateStateWithDerivative(state, dt, c), dxdt = 1.0 / 6.0 * (a.dx + 2.0 * (b.dx + c.dx) + d.dx), dvdt = 1.0 / 6.0 * (a.dv + 2.0 * (b.dv + c.dv) + d.dv); state.x = state.x + dxdt * dt; state.v = state.v + dvdt * dt; return state; } return function springRK4Factory(tension, friction, duration) { var initState = { x: -1, v: 0, tension: null, friction: null }, path = [0], time_lapsed = 0, tolerance = 1 / 10000, DT = 16 / 1000, have_duration, dt, last_state; tension = parseFloat(tension) || 500; friction = parseFloat(friction) || 20; duration = duration || null; initState.tension = tension; initState.friction = friction; have_duration = duration !== null; /* Calculate the actual time it takes for this animation to complete with the provided conditions. */ if (have_duration) { /* Run the simulation without a duration. */ time_lapsed = springRK4Factory(tension, friction); /* Compute the adjusted time delta. */ dt = time_lapsed / duration * DT; } else { dt = DT; } for (;;) { /* Next/step function .*/ last_state = springIntegrateState(last_state || initState, dt); /* Store the position. */ path.push(1 + last_state.x); time_lapsed += 16; /* If the change threshold is reached, break. */ if (!(Math.abs(last_state.x) > tolerance && Math.abs(last_state.v) > tolerance)) { break; } } /* If duration is not defined, return the actual time required for completing this animation. Otherwise, return a closure that holds the computed path and returns a snapshot of the position according to a given percentComplete. */ return !have_duration ? time_lapsed : function (percentComplete) { return path[percentComplete * (path.length - 1) | 0]; }; }; }(); var cubicBezier = function cubicBezier(t1, p1, t2, p2) { var bezier = generateCubicBezier(t1, p1, t2, p2); return function (start, end, percent) { return start + (end - start) * bezier(percent); }; }; var easings = { 'linear': function linear(start, end, percent) { return start + (end - start) * percent; }, // default easings 'ease': cubicBezier(0.25, 0.1, 0.25, 1), 'ease-in': cubicBezier(0.42, 0, 1, 1), 'ease-out': cubicBezier(0, 0, 0.58, 1), 'ease-in-out': cubicBezier(0.42, 0, 0.58, 1), // sine 'ease-in-sine': cubicBezier(0.47, 0, 0.745, 0.715), 'ease-out-sine': cubicBezier(0.39, 0.575, 0.565, 1), 'ease-in-out-sine': cubicBezier(0.445, 0.05, 0.55, 0.95), // quad 'ease-in-quad': cubicBezier(0.55, 0.085, 0.68, 0.53), 'ease-out-quad': cubicBezier(0.25, 0.46, 0.45, 0.94), 'ease-in-out-quad': cubicBezier(0.455, 0.03, 0.515, 0.955), // cubic 'ease-in-cubic': cubicBezier(0.55, 0.055, 0.675, 0.19), 'ease-out-cubic': cubicBezier(0.215, 0.61, 0.355, 1), 'ease-in-out-cubic': cubicBezier(0.645, 0.045, 0.355, 1), // quart 'ease-in-quart': cubicBezier(0.895, 0.03, 0.685, 0.22), 'ease-out-quart': cubicBezier(0.165, 0.84, 0.44, 1), 'ease-in-out-quart': cubicBezier(0.77, 0, 0.175, 1), // quint 'ease-in-quint': cubicBezier(0.755, 0.05, 0.855, 0.06), 'ease-out-quint': cubicBezier(0.23, 1, 0.32, 1), 'ease-in-out-quint': cubicBezier(0.86, 0, 0.07, 1), // expo 'ease-in-expo': cubicBezier(0.95, 0.05, 0.795, 0.035), 'ease-out-expo': cubicBezier(0.19, 1, 0.22, 1), 'ease-in-out-expo': cubicBezier(1, 0, 0, 1), // circ 'ease-in-circ': cubicBezier(0.6, 0.04, 0.98, 0.335), 'ease-out-circ': cubicBezier(0.075, 0.82, 0.165, 1), 'ease-in-out-circ': cubicBezier(0.785, 0.135, 0.15, 0.86), // user param easings... 'spring': function spring(tension, friction, duration) { if (duration === 0) { // can't get a spring w/ duration 0 return easings.linear; // duration 0 => jump to end so impl doesn't matter } var spring = generateSpringRK4(tension, friction, duration); return function (start, end, percent) { return start + (end - start) * spring(percent); }; }, 'cubic-bezier': cubicBezier }; function getEasedValue(type, start, end, percent, easingFn) { if (percent === 1) { return end; } if (start === end) { return end; } var val = easingFn(start, end, percent); if (type == null) { return val; } if (type.roundValue || type.color) { val = Math.round(val); } if (type.min !== undefined) { val = Math.max(val, type.min); } if (type.max !== undefined) { val = Math.min(val, type.max); } return val; } function getValue(prop, spec) { if (prop.pfValue != null || prop.value != null) { if (prop.pfValue != null && (spec == null || spec.type.units !== '%')) { return prop.pfValue; } else { return prop.value; } } else { return prop; } } function ease(startProp, endProp, percent, easingFn, propSpec) { var type = propSpec != null ? propSpec.type : null; if (percent < 0) { percent = 0; } else if (percent > 1) { percent = 1; } var start = getValue(startProp, propSpec); var end = getValue(endProp, propSpec); if (number$1(start) && number$1(end)) { return getEasedValue(type, start, end, percent, easingFn); } else if (array(start) && array(end)) { var easedArr = []; for (var i = 0; i < end.length; i++) { var si = start[i]; var ei = end[i]; if (si != null && ei != null) { var val = getEasedValue(type, si, ei, percent, easingFn); easedArr.push(val); } else { easedArr.push(ei); } } return easedArr; } return undefined; } function step$1(self, ani, now, isCore) { var isEles = !isCore; var _p = self._private; var ani_p = ani._private; var pEasing = ani_p.easing; var startTime = ani_p.startTime; var cy = isCore ? self : self.cy(); var style = cy.style(); if (!ani_p.easingImpl) { if (pEasing == null) { // use default ani_p.easingImpl = easings['linear']; } else { // then define w/ name var easingVals; if (string(pEasing)) { var easingProp = style.parse('transition-timing-function', pEasing); easingVals = easingProp.value; } else { // then assume preparsed array easingVals = pEasing; } var name, args; if (string(easingVals)) { name = easingVals; args = []; } else { name = easingVals[1]; args = easingVals.slice(2).map(function (n) { return +n; }); } if (args.length > 0) { // create with args if (name === 'spring') { args.push(ani_p.duration); // need duration to generate spring } ani_p.easingImpl = easings[name].apply(null, args); } else { // static impl by name ani_p.easingImpl = easings[name]; } } } var easing = ani_p.easingImpl; var percent; if (ani_p.duration === 0) { percent = 1; } else { percent = (now - startTime) / ani_p.duration; } if (ani_p.applying) { percent = ani_p.progress; } if (percent < 0) { percent = 0; } else if (percent > 1) { percent = 1; } if (ani_p.delay == null) { // then update var startPos = ani_p.startPosition; var endPos = ani_p.position; if (endPos && isEles && !self.locked()) { var newPos = {}; if (valid(startPos.x, endPos.x)) { newPos.x = ease(startPos.x, endPos.x, percent, easing); } if (valid(startPos.y, endPos.y)) { newPos.y = ease(startPos.y, endPos.y, percent, easing); } self.position(newPos); } var startPan = ani_p.startPan; var endPan = ani_p.pan; var pan = _p.pan; var animatingPan = endPan != null && isCore; if (animatingPan) { if (valid(startPan.x, endPan.x)) { pan.x = ease(startPan.x, endPan.x, percent, easing); } if (valid(startPan.y, endPan.y)) { pan.y = ease(startPan.y, endPan.y, percent, easing); } self.emit('pan'); } var startZoom = ani_p.startZoom; var endZoom = ani_p.zoom; var animatingZoom = endZoom != null && isCore; if (animatingZoom) { if (valid(startZoom, endZoom)) { _p.zoom = bound(_p.minZoom, ease(startZoom, endZoom, percent, easing), _p.maxZoom); } self.emit('zoom'); } if (animatingPan || animatingZoom) { self.emit('viewport'); } var props = ani_p.style; if (props && props.length > 0 && isEles) { for (var i = 0; i < props.length; i++) { var prop = props[i]; var _name = prop.name; var end = prop; var start = ani_p.startStyle[_name]; var propSpec = style.properties[start.name]; var easedVal = ease(start, end, percent, easing, propSpec); style.overrideBypass(self, _name, easedVal); } // for props self.emit('style'); } // if } ani_p.progress = percent; return percent; } function valid(start, end) { if (start == null || end == null) { return false; } if (number$1(start) && number$1(end)) { return true; } else if (start && end) { return true; } return false; } function startAnimation(self, ani, now, isCore) { var ani_p = ani._private; ani_p.started = true; ani_p.startTime = now - ani_p.progress * ani_p.duration; } function stepAll(now, cy) { var eles = cy._private.aniEles; var doneEles = []; function stepOne(ele, isCore) { var _p = ele._private; var current = _p.animation.current; var queue = _p.animation.queue; var ranAnis = false; // if nothing currently animating, get something from the queue if (current.length === 0) { var next = queue.shift(); if (next) { current.push(next); } } var callbacks = function callbacks(_callbacks) { for (var j = _callbacks.length - 1; j >= 0; j--) { var cb = _callbacks[j]; cb(); } _callbacks.splice(0, _callbacks.length); }; // step and remove if done for (var i = current.length - 1; i >= 0; i--) { var ani = current[i]; var ani_p = ani._private; if (ani_p.stopped) { current.splice(i, 1); ani_p.hooked = false; ani_p.playing = false; ani_p.started = false; callbacks(ani_p.frames); continue; } if (!ani_p.playing && !ani_p.applying) { continue; } // an apply() while playing shouldn't do anything if (ani_p.playing && ani_p.applying) { ani_p.applying = false; } if (!ani_p.started) { startAnimation(ele, ani, now); } step$1(ele, ani, now, isCore); if (ani_p.applying) { ani_p.applying = false; } callbacks(ani_p.frames); if (ani_p.step != null) { ani_p.step(now); } if (ani.completed()) { current.splice(i, 1); ani_p.hooked = false; ani_p.playing = false; ani_p.started = false; callbacks(ani_p.completes); } ranAnis = true; } if (!isCore && current.length === 0 && queue.length === 0) { doneEles.push(ele); } return ranAnis; } // stepElement // handle all eles var ranEleAni = false; for (var e = 0; e < eles.length; e++) { var ele = eles[e]; var handledThisEle = stepOne(ele); ranEleAni = ranEleAni || handledThisEle; } // each element var ranCoreAni = stepOne(cy, true); // notify renderer if (ranEleAni || ranCoreAni) { if (eles.length > 0) { cy.notify('draw', eles); } else { cy.notify('draw'); } } // remove elements from list of currently animating if its queues are empty eles.unmerge(doneEles); cy.emit('step'); } // stepAll var corefn$8 = { // pull in animation functions animate: define.animate(), animation: define.animation(), animated: define.animated(), clearQueue: define.clearQueue(), delay: define.delay(), delayAnimation: define.delayAnimation(), stop: define.stop(), addToAnimationPool: function addToAnimationPool(eles) { var cy = this; if (!cy.styleEnabled()) { return; } // save cycles when no style used cy._private.aniEles.merge(eles); }, stopAnimationLoop: function stopAnimationLoop() { this._private.animationsRunning = false; }, startAnimationLoop: function startAnimationLoop() { var cy = this; cy._private.animationsRunning = true; if (!cy.styleEnabled()) { return; } // save cycles when no style used // NB the animation loop will exec in headless environments if style enabled // and explicit cy.destroy() is necessary to stop the loop function headlessStep() { if (!cy._private.animationsRunning) { return; } requestAnimationFrame(function animationStep(now) { stepAll(now, cy); headlessStep(); }); } var renderer = cy.renderer(); if (renderer && renderer.beforeRender) { // let the renderer schedule animations renderer.beforeRender(function rendererAnimationStep(willDraw, now) { stepAll(now, cy); }, renderer.beforeRenderPriorities.animations); } else { // manage the animation loop ourselves headlessStep(); // first call } } }; var emitterOptions = { qualifierCompare: function qualifierCompare(selector1, selector2) { if (selector1 == null || selector2 == null) { return selector1 == null && selector2 == null; } else { return selector1.sameText(selector2); } }, eventMatches: function eventMatches(cy, listener, eventObj) { var selector = listener.qualifier; if (selector != null) { return cy !== eventObj.target && element(eventObj.target) && selector.matches(eventObj.target); } return true; }, addEventFields: function addEventFields(cy, evt) { evt.cy = cy; evt.target = cy; }, callbackContext: function callbackContext(cy, listener, eventObj) { return listener.qualifier != null ? eventObj.target : cy; } }; var argSelector = function argSelector(arg) { if (string(arg)) { return new Selector(arg); } else { return arg; } }; var elesfn = { createEmitter: function createEmitter() { var _p = this._private; if (!_p.emitter) { _p.emitter = new Emitter(emitterOptions, this); } return this; }, emitter: function emitter() { return this._private.emitter; }, on: function on(events, selector, callback) { this.emitter().on(events, argSelector(selector), callback); return this; }, removeListener: function removeListener(events, selector, callback) { this.emitter().removeListener(events, argSelector(selector), callback); return this; }, removeAllListeners: function removeAllListeners() { this.emitter().removeAllListeners(); return this; }, one: function one(events, selector, callback) { this.emitter().one(events, argSelector(selector), callback); return this; }, once: function once(events, selector, callback) { this.emitter().one(events, argSelector(selector), callback); return this; }, emit: function emit(events, extraParams) { this.emitter().emit(events, extraParams); return this; }, emitAndNotify: function emitAndNotify(event, eles) { this.emit(event); this.notify(event, eles); return this; } }; define.eventAliasesOn(elesfn); var corefn$7 = { png: function png(options) { var renderer = this._private.renderer; options = options || {}; return renderer.png(options); }, jpg: function jpg(options) { var renderer = this._private.renderer; options = options || {}; options.bg = options.bg || '#fff'; return renderer.jpg(options); } }; corefn$7.jpeg = corefn$7.jpg; var corefn$6 = { layout: function layout(options) { var cy = this; if (options == null) { error('Layout options must be specified to make a layout'); return; } if (options.name == null) { error('A `name` must be specified to make a layout'); return; } var name = options.name; var Layout = cy.extension('layout', name); if (Layout == null) { error('No such layout `' + name + '` found. Did you forget to import it and `cytoscape.use()` it?'); return; } var eles; if (string(options.eles)) { eles = cy.$(options.eles); } else { eles = options.eles != null ? options.eles : cy.$(); } var layout = new Layout(extend({}, options, { cy: cy, eles: eles })); return layout; } }; corefn$6.createLayout = corefn$6.makeLayout = corefn$6.layout; var corefn$5 = { notify: function notify(eventName, eventEles) { var _p = this._private; if (this.batching()) { _p.batchNotifications = _p.batchNotifications || {}; var eles = _p.batchNotifications[eventName] = _p.batchNotifications[eventName] || this.collection(); if (eventEles != null) { eles.merge(eventEles); } return; // notifications are disabled during batching } if (!_p.notificationsEnabled) { return; } // exit on disabled var renderer = this.renderer(); // exit if destroy() called on core or renderer in between frames #1499 #1528 if (this.destroyed() || !renderer) { return; } renderer.notify(eventName, eventEles); }, notifications: function notifications(bool) { var p = this._private; if (bool === undefined) { return p.notificationsEnabled; } else { p.notificationsEnabled = bool ? true : false; } return this; }, noNotifications: function noNotifications(callback) { this.notifications(false); callback(); this.notifications(true); }, batching: function batching() { return this._private.batchCount > 0; }, startBatch: function startBatch() { var _p = this._private; if (_p.batchCount == null) { _p.batchCount = 0; } if (_p.batchCount === 0) { _p.batchStyleEles = this.collection(); _p.batchNotifications = {}; } _p.batchCount++; return this; }, endBatch: function endBatch() { var _p = this._private; if (_p.batchCount === 0) { return this; } _p.batchCount--; if (_p.batchCount === 0) { // update style for dirty eles _p.batchStyleEles.updateStyle(); var renderer = this.renderer(); // notify the renderer of queued eles and event types Object.keys(_p.batchNotifications).forEach(function (eventName) { var eles = _p.batchNotifications[eventName]; if (eles.empty()) { renderer.notify(eventName); } else { renderer.notify(eventName, eles); } }); } return this; }, batch: function batch(callback) { this.startBatch(); callback(); this.endBatch(); return this; }, // for backwards compatibility batchData: function batchData(map) { var cy = this; return this.batch(function () { var ids = Object.keys(map); for (var i = 0; i < ids.length; i++) { var id = ids[i]; var data = map[id]; var ele = cy.getElementById(id); ele.data(data); } }); } }; var rendererDefaults = defaults$g({ hideEdgesOnViewport: false, textureOnViewport: false, motionBlur: false, motionBlurOpacity: 0.05, pixelRatio: undefined, desktopTapThreshold: 4, touchTapThreshold: 8, wheelSensitivity: 1, debug: false, showFps: false }); var corefn$4 = { renderTo: function renderTo(context, zoom, pan, pxRatio) { var r = this._private.renderer; r.renderTo(context, zoom, pan, pxRatio); return this; }, renderer: function renderer() { return this._private.renderer; }, forceRender: function forceRender() { this.notify('draw'); return this; }, resize: function resize() { this.invalidateSize(); this.emitAndNotify('resize'); return this; }, initRenderer: function initRenderer(options) { var cy = this; var RendererProto = cy.extension('renderer', options.name); if (RendererProto == null) { error("Can not initialise: No such renderer `".concat(options.name, "` found. Did you forget to import it and `cytoscape.use()` it?")); return; } if (options.wheelSensitivity !== undefined) { warn("You have set a custom wheel sensitivity. This will make your app zoom unnaturally when using mainstream mice. You should change this value from the default only if you can guarantee that all your users will use the same hardware and OS configuration as your current machine."); } var rOpts = rendererDefaults(options); rOpts.cy = cy; cy._private.renderer = new RendererProto(rOpts); this.notify('init'); }, destroyRenderer: function destroyRenderer() { var cy = this; cy.notify('destroy'); // destroy the renderer var domEle = cy.container(); if (domEle) { domEle._cyreg = null; while (domEle.childNodes.length > 0) { domEle.removeChild(domEle.childNodes[0]); } } cy._private.renderer = null; // to be extra safe, remove the ref cy.mutableElements().forEach(function (ele) { var _p = ele._private; _p.rscratch = {}; _p.rstyle = {}; _p.animation.current = []; _p.animation.queue = []; }); }, onRender: function onRender(fn) { return this.on('render', fn); }, offRender: function offRender(fn) { return this.off('render', fn); } }; corefn$4.invalidateDimensions = corefn$4.resize; var corefn$3 = { // get a collection // - empty collection on no args // - collection of elements in the graph on selector arg // - guarantee a returned collection when elements or collection specified collection: function collection(eles, opts) { if (string(eles)) { return this.$(eles); } else if (elementOrCollection(eles)) { return eles.collection(); } else if (array(eles)) { if (!opts) { opts = {}; } return new Collection(this, eles, opts.unique, opts.removed); } return new Collection(this); }, nodes: function nodes(selector) { var nodes = this.$(function (ele) { return ele.isNode(); }); if (selector) { return nodes.filter(selector); } return nodes; }, edges: function edges(selector) { var edges = this.$(function (ele) { return ele.isEdge(); }); if (selector) { return edges.filter(selector); } return edges; }, // search the graph like jQuery $: function $(selector) { var eles = this._private.elements; if (selector) { return eles.filter(selector); } else { return eles.spawnSelf(); } }, mutableElements: function mutableElements() { return this._private.elements; } }; // aliases corefn$3.elements = corefn$3.filter = corefn$3.$; var styfn$8 = {}; // keys for style blocks, e.g. ttfftt var TRUE = 't'; var FALSE = 'f'; // (potentially expensive calculation) // apply the style to the element based on // - its bypass // - what selectors match it styfn$8.apply = function (eles) { var self = this; var _p = self._private; var cy = _p.cy; var updatedEles = cy.collection(); for (var ie = 0; ie < eles.length; ie++) { var ele = eles[ie]; var cxtMeta = self.getContextMeta(ele); if (cxtMeta.empty) { continue; } var cxtStyle = self.getContextStyle(cxtMeta); var app = self.applyContextStyle(cxtMeta, cxtStyle, ele); if (ele._private.appliedInitStyle) { self.updateTransitions(ele, app.diffProps); } else { ele._private.appliedInitStyle = true; } var hintsDiff = self.updateStyleHints(ele); if (hintsDiff) { updatedEles.push(ele); } } // for elements return updatedEles; }; styfn$8.getPropertiesDiff = function (oldCxtKey, newCxtKey) { var self = this; var cache = self._private.propDiffs = self._private.propDiffs || {}; var dualCxtKey = oldCxtKey + '-' + newCxtKey; var cachedVal = cache[dualCxtKey]; if (cachedVal) { return cachedVal; } var diffProps = []; var addedProp = {}; for (var i = 0; i < self.length; i++) { var cxt = self[i]; var oldHasCxt = oldCxtKey[i] === TRUE; var newHasCxt = newCxtKey[i] === TRUE; var cxtHasDiffed = oldHasCxt !== newHasCxt; var cxtHasMappedProps = cxt.mappedProperties.length > 0; if (cxtHasDiffed || newHasCxt && cxtHasMappedProps) { var props = void 0; if (cxtHasDiffed && cxtHasMappedProps) { props = cxt.properties; // suffices b/c mappedProperties is a subset of properties } else if (cxtHasDiffed) { props = cxt.properties; // need to check them all } else if (cxtHasMappedProps) { props = cxt.mappedProperties; // only need to check mapped } for (var j = 0; j < props.length; j++) { var prop = props[j]; var name = prop.name; // if a later context overrides this property, then the fact that this context has switched/diffed doesn't matter // (semi expensive check since it makes this function O(n^2) on context length, but worth it since overall result // is cached) var laterCxtOverrides = false; for (var k = i + 1; k < self.length; k++) { var laterCxt = self[k]; var hasLaterCxt = newCxtKey[k] === TRUE; if (!hasLaterCxt) { continue; } // can't override unless the context is active laterCxtOverrides = laterCxt.properties[prop.name] != null; if (laterCxtOverrides) { break; } // exit early as long as one later context overrides } if (!addedProp[name] && !laterCxtOverrides) { addedProp[name] = true; diffProps.push(name); } } // for props } // if } // for contexts cache[dualCxtKey] = diffProps; return diffProps; }; styfn$8.getContextMeta = function (ele) { var self = this; var cxtKey = ''; var diffProps; var prevKey = ele._private.styleCxtKey || ''; // get the cxt key for (var i = 0; i < self.length; i++) { var context = self[i]; var contextSelectorMatches = context.selector && context.selector.matches(ele); // NB: context.selector may be null for 'core' if (contextSelectorMatches) { cxtKey += TRUE; } else { cxtKey += FALSE; } } // for context diffProps = self.getPropertiesDiff(prevKey, cxtKey); ele._private.styleCxtKey = cxtKey; return { key: cxtKey, diffPropNames: diffProps, empty: diffProps.length === 0 }; }; // gets a computed ele style object based on matched contexts styfn$8.getContextStyle = function (cxtMeta) { var cxtKey = cxtMeta.key; var self = this; var cxtStyles = this._private.contextStyles = this._private.contextStyles || {}; // if already computed style, returned cached copy if (cxtStyles[cxtKey]) { return cxtStyles[cxtKey]; } var style = { _private: { key: cxtKey } }; for (var i = 0; i < self.length; i++) { var cxt = self[i]; var hasCxt = cxtKey[i] === TRUE; if (!hasCxt) { continue; } for (var j = 0; j < cxt.properties.length; j++) { var prop = cxt.properties[j]; style[prop.name] = prop; } } cxtStyles[cxtKey] = style; return style; }; styfn$8.applyContextStyle = function (cxtMeta, cxtStyle, ele) { var self = this; var diffProps = cxtMeta.diffPropNames; var retDiffProps = {}; var types = self.types; for (var i = 0; i < diffProps.length; i++) { var diffPropName = diffProps[i]; var cxtProp = cxtStyle[diffPropName]; var eleProp = ele.pstyle(diffPropName); if (!cxtProp) { // no context prop means delete if (!eleProp) { continue; // no existing prop means nothing needs to be removed // nb affects initial application on mapped values like control-point-distances } else if (eleProp.bypass) { cxtProp = { name: diffPropName, deleteBypassed: true }; } else { cxtProp = { name: diffPropName, "delete": true }; } } // save cycles when the context prop doesn't need to be applied if (eleProp === cxtProp) { continue; } // save cycles when a mapped context prop doesn't need to be applied if (cxtProp.mapped === types.fn // context prop is function mapper && eleProp != null // some props can be null even by default (e.g. a prop that overrides another one) && eleProp.mapping != null // ele prop is a concrete value from from a mapper && eleProp.mapping.value === cxtProp.value // the current prop on the ele is a flat prop value for the function mapper ) { // NB don't write to cxtProp, as it's shared among eles (stored in stylesheet) var mapping = eleProp.mapping; // can write to mapping, as it's a per-ele copy var fnValue = mapping.fnValue = cxtProp.value(ele); // temporarily cache the value in case of a miss if (fnValue === mapping.prevFnValue) { continue; } } var retDiffProp = retDiffProps[diffPropName] = { prev: eleProp }; self.applyParsedProperty(ele, cxtProp); retDiffProp.next = ele.pstyle(diffPropName); if (retDiffProp.next && retDiffProp.next.bypass) { retDiffProp.next = retDiffProp.next.bypassed; } } return { diffProps: retDiffProps }; }; styfn$8.updateStyleHints = function (ele) { var _p = ele._private; var self = this; var propNames = self.propertyGroupNames; var propGrKeys = self.propertyGroupKeys; var propHash = function propHash(ele, propNames, seedKey) { return self.getPropertiesHash(ele, propNames, seedKey); }; var oldStyleKey = _p.styleKey; if (ele.removed()) { return false; } var isNode = _p.group === 'nodes'; // get the style key hashes per prop group // but lazily -- only use non-default prop values to reduce the number of hashes // var overriddenStyles = ele._private.style; propNames = Object.keys(overriddenStyles); for (var i = 0; i < propGrKeys.length; i++) { var grKey = propGrKeys[i]; _p.styleKeys[grKey] = [DEFAULT_HASH_SEED, DEFAULT_HASH_SEED_ALT]; } var updateGrKey1 = function updateGrKey1(val, grKey) { return _p.styleKeys[grKey][0] = hashInt(val, _p.styleKeys[grKey][0]); }; var updateGrKey2 = function updateGrKey2(val, grKey) { return _p.styleKeys[grKey][1] = hashIntAlt(val, _p.styleKeys[grKey][1]); }; var updateGrKey = function updateGrKey(val, grKey) { updateGrKey1(val, grKey); updateGrKey2(val, grKey); }; var updateGrKeyWStr = function updateGrKeyWStr(strVal, grKey) { for (var j = 0; j < strVal.length; j++) { var ch = strVal.charCodeAt(j); updateGrKey1(ch, grKey); updateGrKey2(ch, grKey); } }; // - hashing works on 32 bit ints b/c we use bitwise ops // - small numbers get cut off (e.g. 0.123 is seen as 0 by the hashing function) // - raise up small numbers so more significant digits are seen by hashing // - make small numbers larger than a normal value to avoid collisions // - works in practice and it's relatively cheap var N = 2000000000; var cleanNum = function cleanNum(val) { return -128 < val && val < 128 && Math.floor(val) !== val ? N - (val * 1024 | 0) : val; }; for (var _i = 0; _i < propNames.length; _i++) { var name = propNames[_i]; var parsedProp = overriddenStyles[name]; if (parsedProp == null) { continue; } var propInfo = this.properties[name]; var type = propInfo.type; var _grKey = propInfo.groupKey; var normalizedNumberVal = void 0; if (propInfo.hashOverride != null) { normalizedNumberVal = propInfo.hashOverride(ele, parsedProp); } else if (parsedProp.pfValue != null) { normalizedNumberVal = parsedProp.pfValue; } // might not be a number if it allows enums var numberVal = propInfo.enums == null ? parsedProp.value : null; var haveNormNum = normalizedNumberVal != null; var haveUnitedNum = numberVal != null; var haveNum = haveNormNum || haveUnitedNum; var units = parsedProp.units; // numbers are cheaper to hash than strings // 1 hash op vs n hash ops (for length n string) if (type.number && haveNum && !type.multiple) { var v = haveNormNum ? normalizedNumberVal : numberVal; updateGrKey(cleanNum(v), _grKey); if (!haveNormNum && units != null) { updateGrKeyWStr(units, _grKey); } } else { updateGrKeyWStr(parsedProp.strValue, _grKey); } } // overall style key // var hash = [DEFAULT_HASH_SEED, DEFAULT_HASH_SEED_ALT]; for (var _i2 = 0; _i2 < propGrKeys.length; _i2++) { var _grKey2 = propGrKeys[_i2]; var grHash = _p.styleKeys[_grKey2]; hash[0] = hashInt(grHash[0], hash[0]); hash[1] = hashIntAlt(grHash[1], hash[1]); } _p.styleKey = combineHashes(hash[0], hash[1]); // label dims // var sk = _p.styleKeys; _p.labelDimsKey = combineHashesArray(sk.labelDimensions); var labelKeys = propHash(ele, ['label'], sk.labelDimensions); _p.labelKey = combineHashesArray(labelKeys); _p.labelStyleKey = combineHashesArray(hashArrays(sk.commonLabel, labelKeys)); if (!isNode) { var sourceLabelKeys = propHash(ele, ['source-label'], sk.labelDimensions); _p.sourceLabelKey = combineHashesArray(sourceLabelKeys); _p.sourceLabelStyleKey = combineHashesArray(hashArrays(sk.commonLabel, sourceLabelKeys)); var targetLabelKeys = propHash(ele, ['target-label'], sk.labelDimensions); _p.targetLabelKey = combineHashesArray(targetLabelKeys); _p.targetLabelStyleKey = combineHashesArray(hashArrays(sk.commonLabel, targetLabelKeys)); } // node // if (isNode) { var _p$styleKeys = _p.styleKeys, nodeBody = _p$styleKeys.nodeBody, nodeBorder = _p$styleKeys.nodeBorder, nodeOutline = _p$styleKeys.nodeOutline, backgroundImage = _p$styleKeys.backgroundImage, compound = _p$styleKeys.compound, pie = _p$styleKeys.pie; var nodeKeys = [nodeBody, nodeBorder, nodeOutline, backgroundImage, compound, pie].filter(function (k) { return k != null; }).reduce(hashArrays, [DEFAULT_HASH_SEED, DEFAULT_HASH_SEED_ALT]); _p.nodeKey = combineHashesArray(nodeKeys); _p.hasPie = pie != null && pie[0] !== DEFAULT_HASH_SEED && pie[1] !== DEFAULT_HASH_SEED_ALT; } return oldStyleKey !== _p.styleKey; }; styfn$8.clearStyleHints = function (ele) { var _p = ele._private; _p.styleCxtKey = ''; _p.styleKeys = {}; _p.styleKey = null; _p.labelKey = null; _p.labelStyleKey = null; _p.sourceLabelKey = null; _p.sourceLabelStyleKey = null; _p.targetLabelKey = null; _p.targetLabelStyleKey = null; _p.nodeKey = null; _p.hasPie = null; }; // apply a property to the style (for internal use) // returns whether application was successful // // now, this function flattens the property, and here's how: // // for parsedProp:{ bypass: true, deleteBypass: true } // no property is generated, instead the bypass property in the // element's style is replaced by what's pointed to by the `bypassed` // field in the bypass property (i.e. restoring the property the // bypass was overriding) // // for parsedProp:{ mapped: truthy } // the generated flattenedProp:{ mapping: prop } // // for parsedProp:{ bypass: true } // the generated flattenedProp:{ bypassed: parsedProp } styfn$8.applyParsedProperty = function (ele, parsedProp) { var self = this; var prop = parsedProp; var style = ele._private.style; var flatProp; var types = self.types; var type = self.properties[prop.name].type; var propIsBypass = prop.bypass; var origProp = style[prop.name]; var origPropIsBypass = origProp && origProp.bypass; var _p = ele._private; var flatPropMapping = 'mapping'; var getVal = function getVal(p) { if (p == null) { return null; } else if (p.pfValue != null) { return p.pfValue; } else { return p.value; } }; var checkTriggers = function checkTriggers() { var fromVal = getVal(origProp); var toVal = getVal(prop); self.checkTriggers(ele, prop.name, fromVal, toVal); }; // edge sanity checks to prevent the client from making serious mistakes if (parsedProp.name === 'curve-style' && ele.isEdge() && ( // loops must be bundled beziers parsedProp.value !== 'bezier' && ele.isLoop() || // edges connected to compound nodes can not be haystacks parsedProp.value === 'haystack' && (ele.source().isParent() || ele.target().isParent()))) { prop = parsedProp = this.parse(parsedProp.name, 'bezier', propIsBypass); } if (prop["delete"]) { // delete the property and use the default value on falsey value style[prop.name] = undefined; checkTriggers(); return true; } if (prop.deleteBypassed) { // delete the property that the if (!origProp) { checkTriggers(); return true; // can't delete if no prop } else if (origProp.bypass) { // delete bypassed origProp.bypassed = undefined; checkTriggers(); return true; } else { return false; // we're unsuccessful deleting the bypassed } } // check if we need to delete the current bypass if (prop.deleteBypass) { // then this property is just here to indicate we need to delete if (!origProp) { checkTriggers(); return true; // property is already not defined } else if (origProp.bypass) { // then replace the bypass property with the original // because the bypassed property was already applied (and therefore parsed), we can just replace it (no reapplying necessary) style[prop.name] = origProp.bypassed; checkTriggers(); return true; } else { return false; // we're unsuccessful deleting the bypass } } var printMappingErr = function printMappingErr() { warn('Do not assign mappings to elements without corresponding data (i.e. ele `' + ele.id() + '` has no mapping for property `' + prop.name + '` with data field `' + prop.field + '`); try a `[' + prop.field + ']` selector to limit scope to elements with `' + prop.field + '` defined'); }; // put the property in the style objects switch (prop.mapped) { // flatten the property if mapped case types.mapData: { // flatten the field (e.g. data.foo.bar) var fields = prop.field.split('.'); var fieldVal = _p.data; for (var i = 0; i < fields.length && fieldVal; i++) { var field = fields[i]; fieldVal = fieldVal[field]; } if (fieldVal == null) { printMappingErr(); return false; } var percent; if (!number$1(fieldVal)) { // then don't apply and fall back on the existing style warn('Do not use continuous mappers without specifying numeric data (i.e. `' + prop.field + ': ' + fieldVal + '` for `' + ele.id() + '` is non-numeric)'); return false; } else { var fieldWidth = prop.fieldMax - prop.fieldMin; if (fieldWidth === 0) { // safety check -- not strictly necessary as no props of zero range should be passed here percent = 0; } else { percent = (fieldVal - prop.fieldMin) / fieldWidth; } } // make sure to bound percent value if (percent < 0) { percent = 0; } else if (percent > 1) { percent = 1; } if (type.color) { var r1 = prop.valueMin[0]; var r2 = prop.valueMax[0]; var g1 = prop.valueMin[1]; var g2 = prop.valueMax[1]; var b1 = prop.valueMin[2]; var b2 = prop.valueMax[2]; var a1 = prop.valueMin[3] == null ? 1 : prop.valueMin[3]; var a2 = prop.valueMax[3] == null ? 1 : prop.valueMax[3]; var clr = [Math.round(r1 + (r2 - r1) * percent), Math.round(g1 + (g2 - g1) * percent), Math.round(b1 + (b2 - b1) * percent), Math.round(a1 + (a2 - a1) * percent)]; flatProp = { // colours are simple, so just create the flat property instead of expensive string parsing bypass: prop.bypass, // we're a bypass if the mapping property is a bypass name: prop.name, value: clr, strValue: 'rgb(' + clr[0] + ', ' + clr[1] + ', ' + clr[2] + ')' }; } else if (type.number) { var calcValue = prop.valueMin + (prop.valueMax - prop.valueMin) * percent; flatProp = this.parse(prop.name, calcValue, prop.bypass, flatPropMapping); } else { return false; // can only map to colours and numbers } if (!flatProp) { // if we can't flatten the property, then don't apply the property and fall back on the existing style printMappingErr(); return false; } flatProp.mapping = prop; // keep a reference to the mapping prop = flatProp; // the flattened (mapped) property is the one we want break; } // direct mapping case types.data: { // flatten the field (e.g. data.foo.bar) var _fields = prop.field.split('.'); var _fieldVal = _p.data; for (var _i3 = 0; _i3 < _fields.length && _fieldVal; _i3++) { var _field = _fields[_i3]; _fieldVal = _fieldVal[_field]; } if (_fieldVal != null) { flatProp = this.parse(prop.name, _fieldVal, prop.bypass, flatPropMapping); } if (!flatProp) { // if we can't flatten the property, then don't apply and fall back on the existing style printMappingErr(); return false; } flatProp.mapping = prop; // keep a reference to the mapping prop = flatProp; // the flattened (mapped) property is the one we want break; } case types.fn: { var fn = prop.value; var fnRetVal = prop.fnValue != null ? prop.fnValue : fn(ele); // check for cached value before calling function prop.prevFnValue = fnRetVal; if (fnRetVal == null) { warn('Custom function mappers may not return null (i.e. `' + prop.name + '` for ele `' + ele.id() + '` is null)'); return false; } flatProp = this.parse(prop.name, fnRetVal, prop.bypass, flatPropMapping); if (!flatProp) { warn('Custom function mappers may not return invalid values for the property type (i.e. `' + prop.name + '` for ele `' + ele.id() + '` is invalid)'); return false; } flatProp.mapping = copy(prop); // keep a reference to the mapping prop = flatProp; // the flattened (mapped) property is the one we want break; } case undefined: break; // just set the property default: return false; // not a valid mapping } // if the property is a bypass property, then link the resultant property to the original one if (propIsBypass) { if (origPropIsBypass) { // then this bypass overrides the existing one prop.bypassed = origProp.bypassed; // steal bypassed prop from old bypass } else { // then link the orig prop to the new bypass prop.bypassed = origProp; } style[prop.name] = prop; // and set } else { // prop is not bypass if (origPropIsBypass) { // then keep the orig prop (since it's a bypass) and link to the new prop origProp.bypassed = prop; } else { // then just replace the old prop with the new one style[prop.name] = prop; } } checkTriggers(); return true; }; styfn$8.cleanElements = function (eles, keepBypasses) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; this.clearStyleHints(ele); ele.dirtyCompoundBoundsCache(); ele.dirtyBoundingBoxCache(); if (!keepBypasses) { ele._private.style = {}; } else { var style = ele._private.style; var propNames = Object.keys(style); for (var j = 0; j < propNames.length; j++) { var propName = propNames[j]; var eleProp = style[propName]; if (eleProp != null) { if (eleProp.bypass) { eleProp.bypassed = null; } else { style[propName] = null; } } } } } }; // updates the visual style for all elements (useful for manual style modification after init) styfn$8.update = function () { var cy = this._private.cy; var eles = cy.mutableElements(); eles.updateStyle(); }; // diffProps : { name => { prev, next } } styfn$8.updateTransitions = function (ele, diffProps) { var self = this; var _p = ele._private; var props = ele.pstyle('transition-property').value; var duration = ele.pstyle('transition-duration').pfValue; var delay = ele.pstyle('transition-delay').pfValue; if (props.length > 0 && duration > 0) { var style = {}; // build up the style to animate towards var anyPrev = false; for (var i = 0; i < props.length; i++) { var prop = props[i]; var styProp = ele.pstyle(prop); var diffProp = diffProps[prop]; if (!diffProp) { continue; } var prevProp = diffProp.prev; var fromProp = prevProp; var toProp = diffProp.next != null ? diffProp.next : styProp; var diff = false; var initVal = void 0; var initDt = 0.000001; // delta time % value for initVal (allows animating out of init zero opacity) if (!fromProp) { continue; } // consider px values if (number$1(fromProp.pfValue) && number$1(toProp.pfValue)) { diff = toProp.pfValue - fromProp.pfValue; // nonzero is truthy initVal = fromProp.pfValue + initDt * diff; // consider numerical values } else if (number$1(fromProp.value) && number$1(toProp.value)) { diff = toProp.value - fromProp.value; // nonzero is truthy initVal = fromProp.value + initDt * diff; // consider colour values } else if (array(fromProp.value) && array(toProp.value)) { diff = fromProp.value[0] !== toProp.value[0] || fromProp.value[1] !== toProp.value[1] || fromProp.value[2] !== toProp.value[2]; initVal = fromProp.strValue; } // the previous value is good for an animation only if it's different if (diff) { style[prop] = toProp.strValue; // to val this.applyBypass(ele, prop, initVal); // from val anyPrev = true; } } // end if props allow ani // can't transition if there's nothing previous to transition from if (!anyPrev) { return; } _p.transitioning = true; new Promise$1(function (resolve) { if (delay > 0) { ele.delayAnimation(delay).play().promise().then(resolve); } else { resolve(); } }).then(function () { return ele.animation({ style: style, duration: duration, easing: ele.pstyle('transition-timing-function').value, queue: false }).play().promise(); }).then(function () { // if( !isBypass ){ self.removeBypasses(ele, props); ele.emitAndNotify('style'); // } _p.transitioning = false; }); } else if (_p.transitioning) { this.removeBypasses(ele, props); ele.emitAndNotify('style'); _p.transitioning = false; } }; styfn$8.checkTrigger = function (ele, name, fromValue, toValue, getTrigger, onTrigger) { var prop = this.properties[name]; var triggerCheck = getTrigger(prop); if (triggerCheck != null && triggerCheck(fromValue, toValue)) { onTrigger(prop); } }; styfn$8.checkZOrderTrigger = function (ele, name, fromValue, toValue) { var _this = this; this.checkTrigger(ele, name, fromValue, toValue, function (prop) { return prop.triggersZOrder; }, function () { _this._private.cy.notify('zorder', ele); }); }; styfn$8.checkBoundsTrigger = function (ele, name, fromValue, toValue) { this.checkTrigger(ele, name, fromValue, toValue, function (prop) { return prop.triggersBounds; }, function (prop) { ele.dirtyCompoundBoundsCache(); ele.dirtyBoundingBoxCache(); // if the prop change makes the bb of pll bezier edges invalid, // then dirty the pll edge bb cache as well if ( // only for beziers -- so performance of other edges isn't affected prop.triggersBoundsOfParallelBeziers && name === 'curve-style' && (fromValue === 'bezier' || toValue === 'bezier')) { ele.parallelEdges().forEach(function (pllEdge) { if (pllEdge.isBundledBezier()) { pllEdge.dirtyBoundingBoxCache(); } }); } if (prop.triggersBoundsOfConnectedEdges && name === 'display' && (fromValue === 'none' || toValue === 'none')) { ele.connectedEdges().forEach(function (edge) { edge.dirtyBoundingBoxCache(); }); } }); }; styfn$8.checkTriggers = function (ele, name, fromValue, toValue) { ele.dirtyStyleCache(); this.checkZOrderTrigger(ele, name, fromValue, toValue); this.checkBoundsTrigger(ele, name, fromValue, toValue); }; var styfn$7 = {}; // bypasses are applied to an existing style on an element, and just tacked on temporarily // returns true iff application was successful for at least 1 specified property styfn$7.applyBypass = function (eles, name, value, updateTransitions) { var self = this; var props = []; var isBypass = true; // put all the properties (can specify one or many) in an array after parsing them if (name === '*' || name === '**') { // apply to all property names if (value !== undefined) { for (var i = 0; i < self.properties.length; i++) { var prop = self.properties[i]; var _name = prop.name; var parsedProp = this.parse(_name, value, true); if (parsedProp) { props.push(parsedProp); } } } } else if (string(name)) { // then parse the single property var _parsedProp = this.parse(name, value, true); if (_parsedProp) { props.push(_parsedProp); } } else if (plainObject(name)) { // then parse each property var specifiedProps = name; updateTransitions = value; var names = Object.keys(specifiedProps); for (var _i = 0; _i < names.length; _i++) { var _name2 = names[_i]; var _value = specifiedProps[_name2]; if (_value === undefined) { // try camel case name too _value = specifiedProps[dash2camel(_name2)]; } if (_value !== undefined) { var _parsedProp2 = this.parse(_name2, _value, true); if (_parsedProp2) { props.push(_parsedProp2); } } } } else { // can't do anything without well defined properties return false; } // we've failed if there are no valid properties if (props.length === 0) { return false; } // now, apply the bypass properties on the elements var ret = false; // return true if at least one succesful bypass applied for (var _i2 = 0; _i2 < eles.length; _i2++) { // for each ele var ele = eles[_i2]; var diffProps = {}; var diffProp = void 0; for (var j = 0; j < props.length; j++) { // for each prop var _prop = props[j]; if (updateTransitions) { var prevProp = ele.pstyle(_prop.name); diffProp = diffProps[_prop.name] = { prev: prevProp }; } ret = this.applyParsedProperty(ele, copy(_prop)) || ret; if (updateTransitions) { diffProp.next = ele.pstyle(_prop.name); } } // for props if (ret) { this.updateStyleHints(ele); } if (updateTransitions) { this.updateTransitions(ele, diffProps, isBypass); } } // for eles return ret; }; // only useful in specific cases like animation styfn$7.overrideBypass = function (eles, name, value) { name = camel2dash(name); for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var prop = ele._private.style[name]; var type = this.properties[name].type; var isColor = type.color; var isMulti = type.mutiple; var oldValue = !prop ? null : prop.pfValue != null ? prop.pfValue : prop.value; if (!prop || !prop.bypass) { // need a bypass if one doesn't exist this.applyBypass(ele, name, value); } else { prop.value = value; if (prop.pfValue != null) { prop.pfValue = value; } if (isColor) { prop.strValue = 'rgb(' + value.join(',') + ')'; } else if (isMulti) { prop.strValue = value.join(' '); } else { prop.strValue = '' + value; } this.updateStyleHints(ele); } this.checkTriggers(ele, name, oldValue, value); } }; styfn$7.removeAllBypasses = function (eles, updateTransitions) { return this.removeBypasses(eles, this.propertyNames, updateTransitions); }; styfn$7.removeBypasses = function (eles, props, updateTransitions) { var isBypass = true; for (var j = 0; j < eles.length; j++) { var ele = eles[j]; var diffProps = {}; for (var i = 0; i < props.length; i++) { var name = props[i]; var prop = this.properties[name]; var prevProp = ele.pstyle(prop.name); if (!prevProp || !prevProp.bypass) { // if a bypass doesn't exist for the prop, nothing needs to be removed continue; } var value = ''; // empty => remove bypass var parsedProp = this.parse(name, value, true); var diffProp = diffProps[prop.name] = { prev: prevProp }; this.applyParsedProperty(ele, parsedProp); diffProp.next = ele.pstyle(prop.name); } // for props this.updateStyleHints(ele); if (updateTransitions) { this.updateTransitions(ele, diffProps, isBypass); } } // for eles }; var styfn$6 = {}; // gets what an em size corresponds to in pixels relative to a dom element styfn$6.getEmSizeInPixels = function () { var px = this.containerCss('font-size'); if (px != null) { return parseFloat(px); } else { return 1; // for headless } }; // gets css property from the core container styfn$6.containerCss = function (propName) { var cy = this._private.cy; var domElement = cy.container(); var containerWindow = cy.window(); if (containerWindow && domElement && containerWindow.getComputedStyle) { return containerWindow.getComputedStyle(domElement).getPropertyValue(propName); } }; var styfn$5 = {}; // gets the rendered style for an element styfn$5.getRenderedStyle = function (ele, prop) { if (prop) { return this.getStylePropertyValue(ele, prop, true); } else { return this.getRawStyle(ele, true); } }; // gets the raw style for an element styfn$5.getRawStyle = function (ele, isRenderedVal) { var self = this; ele = ele[0]; // insure it's an element if (ele) { var rstyle = {}; for (var i = 0; i < self.properties.length; i++) { var prop = self.properties[i]; var val = self.getStylePropertyValue(ele, prop.name, isRenderedVal); if (val != null) { rstyle[prop.name] = val; rstyle[dash2camel(prop.name)] = val; } } return rstyle; } }; styfn$5.getIndexedStyle = function (ele, property, subproperty, index) { var pstyle = ele.pstyle(property)[subproperty][index]; return pstyle != null ? pstyle : ele.cy().style().getDefaultProperty(property)[subproperty][0]; }; styfn$5.getStylePropertyValue = function (ele, propName, isRenderedVal) { var self = this; ele = ele[0]; // insure it's an element if (ele) { var prop = self.properties[propName]; if (prop.alias) { prop = prop.pointsTo; } var type = prop.type; var styleProp = ele.pstyle(prop.name); if (styleProp) { var value = styleProp.value, units = styleProp.units, strValue = styleProp.strValue; if (isRenderedVal && type.number && value != null && number$1(value)) { var zoom = ele.cy().zoom(); var getRenderedValue = function getRenderedValue(val) { return val * zoom; }; var getValueStringWithUnits = function getValueStringWithUnits(val, units) { return getRenderedValue(val) + units; }; var isArrayValue = array(value); var haveUnits = isArrayValue ? units.every(function (u) { return u != null; }) : units != null; if (haveUnits) { if (isArrayValue) { return value.map(function (v, i) { return getValueStringWithUnits(v, units[i]); }).join(' '); } else { return getValueStringWithUnits(value, units); } } else { if (isArrayValue) { return value.map(function (v) { return string(v) ? v : '' + getRenderedValue(v); }).join(' '); } else { return '' + getRenderedValue(value); } } } else if (strValue != null) { return strValue; } } return null; } }; styfn$5.getAnimationStartStyle = function (ele, aniProps) { var rstyle = {}; for (var i = 0; i < aniProps.length; i++) { var aniProp = aniProps[i]; var name = aniProp.name; var styleProp = ele.pstyle(name); if (styleProp !== undefined) { // then make a prop of it if (plainObject(styleProp)) { styleProp = this.parse(name, styleProp.strValue); } else { styleProp = this.parse(name, styleProp); } } if (styleProp) { rstyle[name] = styleProp; } } return rstyle; }; styfn$5.getPropsList = function (propsObj) { var self = this; var rstyle = []; var style = propsObj; var props = self.properties; if (style) { var names = Object.keys(style); for (var i = 0; i < names.length; i++) { var name = names[i]; var val = style[name]; var prop = props[name] || props[camel2dash(name)]; var styleProp = this.parse(prop.name, val); if (styleProp) { rstyle.push(styleProp); } } } return rstyle; }; styfn$5.getNonDefaultPropertiesHash = function (ele, propNames, seed) { var hash = seed.slice(); var name, val, strVal, chVal; var i, j; for (i = 0; i < propNames.length; i++) { name = propNames[i]; val = ele.pstyle(name, false); if (val == null) { continue; } else if (val.pfValue != null) { hash[0] = hashInt(chVal, hash[0]); hash[1] = hashIntAlt(chVal, hash[1]); } else { strVal = val.strValue; for (j = 0; j < strVal.length; j++) { chVal = strVal.charCodeAt(j); hash[0] = hashInt(chVal, hash[0]); hash[1] = hashIntAlt(chVal, hash[1]); } } } return hash; }; styfn$5.getPropertiesHash = styfn$5.getNonDefaultPropertiesHash; var styfn$4 = {}; styfn$4.appendFromJson = function (json) { var style = this; for (var i = 0; i < json.length; i++) { var context = json[i]; var selector = context.selector; var props = context.style || context.css; var names = Object.keys(props); style.selector(selector); // apply selector for (var j = 0; j < names.length; j++) { var name = names[j]; var value = props[name]; style.css(name, value); // apply property } } return style; }; // accessible cy.style() function styfn$4.fromJson = function (json) { var style = this; style.resetToDefault(); style.appendFromJson(json); return style; }; // get json from cy.style() api styfn$4.json = function () { var json = []; for (var i = this.defaultLength; i < this.length; i++) { var cxt = this[i]; var selector = cxt.selector; var props = cxt.properties; var css = {}; for (var j = 0; j < props.length; j++) { var prop = props[j]; css[prop.name] = prop.strValue; } json.push({ selector: !selector ? 'core' : selector.toString(), style: css }); } return json; }; var styfn$3 = {}; styfn$3.appendFromString = function (string) { var self = this; var style = this; var remaining = '' + string; var selAndBlockStr; var blockRem; var propAndValStr; // remove comments from the style string remaining = remaining.replace(/[/][*](\s|.)+?[*][/]/g, ''); function removeSelAndBlockFromRemaining() { // remove the parsed selector and block from the remaining text to parse if (remaining.length > selAndBlockStr.length) { remaining = remaining.substr(selAndBlockStr.length); } else { remaining = ''; } } function removePropAndValFromRem() { // remove the parsed property and value from the remaining block text to parse if (blockRem.length > propAndValStr.length) { blockRem = blockRem.substr(propAndValStr.length); } else { blockRem = ''; } } for (;;) { var nothingLeftToParse = remaining.match(/^\s*$/); if (nothingLeftToParse) { break; } var selAndBlock = remaining.match(/^\s*((?:.|\s)+?)\s*\{((?:.|\s)+?)\}/); if (!selAndBlock) { warn('Halting stylesheet parsing: String stylesheet contains more to parse but no selector and block found in: ' + remaining); break; } selAndBlockStr = selAndBlock[0]; // parse the selector var selectorStr = selAndBlock[1]; if (selectorStr !== 'core') { var selector = new Selector(selectorStr); if (selector.invalid) { warn('Skipping parsing of block: Invalid selector found in string stylesheet: ' + selectorStr); // skip this selector and block removeSelAndBlockFromRemaining(); continue; } } // parse the block of properties and values var blockStr = selAndBlock[2]; var invalidBlock = false; blockRem = blockStr; var props = []; for (;;) { var _nothingLeftToParse = blockRem.match(/^\s*$/); if (_nothingLeftToParse) { break; } var propAndVal = blockRem.match(/^\s*(.+?)\s*:\s*(.+?)(?:\s*;|\s*$)/); if (!propAndVal) { warn('Skipping parsing of block: Invalid formatting of style property and value definitions found in:' + blockStr); invalidBlock = true; break; } propAndValStr = propAndVal[0]; var propStr = propAndVal[1]; var valStr = propAndVal[2]; var prop = self.properties[propStr]; if (!prop) { warn('Skipping property: Invalid property name in: ' + propAndValStr); // skip this property in the block removePropAndValFromRem(); continue; } var parsedProp = style.parse(propStr, valStr); if (!parsedProp) { warn('Skipping property: Invalid property definition in: ' + propAndValStr); // skip this property in the block removePropAndValFromRem(); continue; } props.push({ name: propStr, val: valStr }); removePropAndValFromRem(); } if (invalidBlock) { removeSelAndBlockFromRemaining(); break; } // put the parsed block in the style style.selector(selectorStr); for (var i = 0; i < props.length; i++) { var _prop = props[i]; style.css(_prop.name, _prop.val); } removeSelAndBlockFromRemaining(); } return style; }; styfn$3.fromString = function (string) { var style = this; style.resetToDefault(); style.appendFromString(string); return style; }; var styfn$2 = {}; (function () { var number$1 = number; var rgba = rgbaNoBackRefs; var hsla = hslaNoBackRefs; var hex3$1 = hex3; var hex6$1 = hex6; var data = function data(prefix) { return '^' + prefix + '\\s*\\(\\s*([\\w\\.]+)\\s*\\)$'; }; var mapData = function mapData(prefix) { var mapArg = number$1 + '|\\w+|' + rgba + '|' + hsla + '|' + hex3$1 + '|' + hex6$1; return '^' + prefix + '\\s*\\(([\\w\\.]+)\\s*\\,\\s*(' + number$1 + ')\\s*\\,\\s*(' + number$1 + ')\\s*,\\s*(' + mapArg + ')\\s*\\,\\s*(' + mapArg + ')\\)$'; }; var urlRegexes = ['^url\\s*\\(\\s*[\'"]?(.+?)[\'"]?\\s*\\)$', '^(none)$', '^(.+)$']; // each visual style property has a type and needs to be validated according to it styfn$2.types = { time: { number: true, min: 0, units: 's|ms', implicitUnits: 'ms' }, percent: { number: true, min: 0, max: 100, units: '%', implicitUnits: '%' }, percentages: { number: true, min: 0, max: 100, units: '%', implicitUnits: '%', multiple: true }, zeroOneNumber: { number: true, min: 0, max: 1, unitless: true }, zeroOneNumbers: { number: true, min: 0, max: 1, unitless: true, multiple: true }, nOneOneNumber: { number: true, min: -1, max: 1, unitless: true }, nonNegativeInt: { number: true, min: 0, integer: true, unitless: true }, nonNegativeNumber: { number: true, min: 0, unitless: true }, position: { enums: ['parent', 'origin'] }, nodeSize: { number: true, min: 0, enums: ['label'] }, number: { number: true, unitless: true }, numbers: { number: true, unitless: true, multiple: true }, positiveNumber: { number: true, unitless: true, min: 0, strictMin: true }, size: { number: true, min: 0 }, bidirectionalSize: { number: true }, // allows negative bidirectionalSizeMaybePercent: { number: true, allowPercent: true }, // allows negative bidirectionalSizes: { number: true, multiple: true }, // allows negative sizeMaybePercent: { number: true, min: 0, allowPercent: true }, axisDirection: { enums: ['horizontal', 'leftward', 'rightward', 'vertical', 'upward', 'downward', 'auto'] }, paddingRelativeTo: { enums: ['width', 'height', 'average', 'min', 'max'] }, bgWH: { number: true, min: 0, allowPercent: true, enums: ['auto'], multiple: true }, bgPos: { number: true, allowPercent: true, multiple: true }, bgRelativeTo: { enums: ['inner', 'include-padding'], multiple: true }, bgRepeat: { enums: ['repeat', 'repeat-x', 'repeat-y', 'no-repeat'], multiple: true }, bgFit: { enums: ['none', 'contain', 'cover'], multiple: true }, bgCrossOrigin: { enums: ['anonymous', 'use-credentials', 'null'], multiple: true }, bgClip: { enums: ['none', 'node'], multiple: true }, bgContainment: { enums: ['inside', 'over'], multiple: true }, color: { color: true }, colors: { color: true, multiple: true }, fill: { enums: ['solid', 'linear-gradient', 'radial-gradient'] }, bool: { enums: ['yes', 'no'] }, bools: { enums: ['yes', 'no'], multiple: true }, lineStyle: { enums: ['solid', 'dotted', 'dashed'] }, lineCap: { enums: ['butt', 'round', 'square'] }, linePosition: { enums: ['center', 'inside', 'outside'] }, lineJoin: { enums: ['round', 'bevel', 'miter'] }, borderStyle: { enums: ['solid', 'dotted', 'dashed', 'double'] }, curveStyle: { enums: ['bezier', 'unbundled-bezier', 'haystack', 'segments', 'straight', 'straight-triangle', 'taxi', 'round-segments', 'round-taxi'] }, radiusType: { enums: ['arc-radius', 'influence-radius'], multiple: true }, fontFamily: { regex: '^([\\w- \\"]+(?:\\s*,\\s*[\\w- \\"]+)*)$' }, fontStyle: { enums: ['italic', 'normal', 'oblique'] }, fontWeight: { enums: ['normal', 'bold', 'bolder', 'lighter', '100', '200', '300', '400', '500', '600', '800', '900', 100, 200, 300, 400, 500, 600, 700, 800, 900] }, textDecoration: { enums: ['none', 'underline', 'overline', 'line-through'] }, textTransform: { enums: ['none', 'uppercase', 'lowercase'] }, textWrap: { enums: ['none', 'wrap', 'ellipsis'] }, textOverflowWrap: { enums: ['whitespace', 'anywhere'] }, textBackgroundShape: { enums: ['rectangle', 'roundrectangle', 'round-rectangle'] }, nodeShape: { enums: ['rectangle', 'roundrectangle', 'round-rectangle', 'cutrectangle', 'cut-rectangle', 'bottomroundrectangle', 'bottom-round-rectangle', 'barrel', 'ellipse', 'triangle', 'round-triangle', 'square', 'pentagon', 'round-pentagon', 'hexagon', 'round-hexagon', 'concavehexagon', 'concave-hexagon', 'heptagon', 'round-heptagon', 'octagon', 'round-octagon', 'tag', 'round-tag', 'star', 'diamond', 'round-diamond', 'vee', 'rhomboid', 'right-rhomboid', 'polygon'] }, overlayShape: { enums: ['roundrectangle', 'round-rectangle', 'ellipse'] }, cornerRadius: { number: true, min: 0, units: 'px|em', implicitUnits: 'px', enums: ['auto'] }, compoundIncludeLabels: { enums: ['include', 'exclude'] }, arrowShape: { enums: ['tee', 'triangle', 'triangle-tee', 'circle-triangle', 'triangle-cross', 'triangle-backcurve', 'vee', 'square', 'circle', 'diamond', 'chevron', 'none'] }, arrowFill: { enums: ['filled', 'hollow'] }, arrowWidth: { number: true, units: '%|px|em', implicitUnits: 'px', enums: ['match-line'] }, display: { enums: ['element', 'none'] }, visibility: { enums: ['hidden', 'visible'] }, zCompoundDepth: { enums: ['bottom', 'orphan', 'auto', 'top'] }, zIndexCompare: { enums: ['auto', 'manual'] }, valign: { enums: ['top', 'center', 'bottom'] }, halign: { enums: ['left', 'center', 'right'] }, justification: { enums: ['left', 'center', 'right', 'auto'] }, text: { string: true }, data: { mapping: true, regex: data('data') }, layoutData: { mapping: true, regex: data('layoutData') }, scratch: { mapping: true, regex: data('scratch') }, mapData: { mapping: true, regex: mapData('mapData') }, mapLayoutData: { mapping: true, regex: mapData('mapLayoutData') }, mapScratch: { mapping: true, regex: mapData('mapScratch') }, fn: { mapping: true, fn: true }, url: { regexes: urlRegexes, singleRegexMatchValue: true }, urls: { regexes: urlRegexes, singleRegexMatchValue: true, multiple: true }, propList: { propList: true }, angle: { number: true, units: 'deg|rad', implicitUnits: 'rad' }, textRotation: { number: true, units: 'deg|rad', implicitUnits: 'rad', enums: ['none', 'autorotate'] }, polygonPointList: { number: true, multiple: true, evenMultiple: true, min: -1, max: 1, unitless: true }, edgeDistances: { enums: ['intersection', 'node-position', 'endpoints'] }, edgeEndpoint: { number: true, multiple: true, units: '%|px|em|deg|rad', implicitUnits: 'px', enums: ['inside-to-node', 'outside-to-node', 'outside-to-node-or-label', 'outside-to-line', 'outside-to-line-or-label'], singleEnum: true, validate: function validate(valArr, unitsArr) { switch (valArr.length) { case 2: // can be % or px only return unitsArr[0] !== 'deg' && unitsArr[0] !== 'rad' && unitsArr[1] !== 'deg' && unitsArr[1] !== 'rad'; case 1: // can be enum, deg, or rad only return string(valArr[0]) || unitsArr[0] === 'deg' || unitsArr[0] === 'rad'; default: return false; } } }, easing: { regexes: ['^(spring)\\s*\\(\\s*(' + number$1 + ')\\s*,\\s*(' + number$1 + ')\\s*\\)$', '^(cubic-bezier)\\s*\\(\\s*(' + number$1 + ')\\s*,\\s*(' + number$1 + ')\\s*,\\s*(' + number$1 + ')\\s*,\\s*(' + number$1 + ')\\s*\\)$'], enums: ['linear', 'ease', 'ease-in', 'ease-out', 'ease-in-out', 'ease-in-sine', 'ease-out-sine', 'ease-in-out-sine', 'ease-in-quad', 'ease-out-quad', 'ease-in-out-quad', 'ease-in-cubic', 'ease-out-cubic', 'ease-in-out-cubic', 'ease-in-quart', 'ease-out-quart', 'ease-in-out-quart', 'ease-in-quint', 'ease-out-quint', 'ease-in-out-quint', 'ease-in-expo', 'ease-out-expo', 'ease-in-out-expo', 'ease-in-circ', 'ease-out-circ', 'ease-in-out-circ'] }, gradientDirection: { enums: ['to-bottom', 'to-top', 'to-left', 'to-right', 'to-bottom-right', 'to-bottom-left', 'to-top-right', 'to-top-left', 'to-right-bottom', 'to-left-bottom', 'to-right-top', 'to-left-top' // different order ] }, boundsExpansion: { number: true, multiple: true, min: 0, validate: function validate(valArr) { var length = valArr.length; return length === 1 || length === 2 || length === 4; } } }; var diff = { zeroNonZero: function zeroNonZero(val1, val2) { if ((val1 == null || val2 == null) && val1 !== val2) { return true; // null cases could represent any value } if (val1 == 0 && val2 != 0) { return true; } else if (val1 != 0 && val2 == 0) { return true; } else { return false; } }, any: function any(val1, val2) { return val1 != val2; }, emptyNonEmpty: function emptyNonEmpty(str1, str2) { var empty1 = emptyString(str1); var empty2 = emptyString(str2); return empty1 && !empty2 || !empty1 && empty2; } }; // define visual style properties // // - n.b. adding a new group of props may require updates to updateStyleHints() // - adding new props to an existing group gets handled automatically var t = styfn$2.types; var mainLabel = [{ name: 'label', type: t.text, triggersBounds: diff.any, triggersZOrder: diff.emptyNonEmpty }, { name: 'text-rotation', type: t.textRotation, triggersBounds: diff.any }, { name: 'text-margin-x', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'text-margin-y', type: t.bidirectionalSize, triggersBounds: diff.any }]; var sourceLabel = [{ name: 'source-label', type: t.text, triggersBounds: diff.any }, { name: 'source-text-rotation', type: t.textRotation, triggersBounds: diff.any }, { name: 'source-text-margin-x', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'source-text-margin-y', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'source-text-offset', type: t.size, triggersBounds: diff.any }]; var targetLabel = [{ name: 'target-label', type: t.text, triggersBounds: diff.any }, { name: 'target-text-rotation', type: t.textRotation, triggersBounds: diff.any }, { name: 'target-text-margin-x', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'target-text-margin-y', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'target-text-offset', type: t.size, triggersBounds: diff.any }]; var labelDimensions = [{ name: 'font-family', type: t.fontFamily, triggersBounds: diff.any }, { name: 'font-style', type: t.fontStyle, triggersBounds: diff.any }, { name: 'font-weight', type: t.fontWeight, triggersBounds: diff.any }, { name: 'font-size', type: t.size, triggersBounds: diff.any }, { name: 'text-transform', type: t.textTransform, triggersBounds: diff.any }, { name: 'text-wrap', type: t.textWrap, triggersBounds: diff.any }, { name: 'text-overflow-wrap', type: t.textOverflowWrap, triggersBounds: diff.any }, { name: 'text-max-width', type: t.size, triggersBounds: diff.any }, { name: 'text-outline-width', type: t.size, triggersBounds: diff.any }, { name: 'line-height', type: t.positiveNumber, triggersBounds: diff.any }]; var commonLabel = [{ name: 'text-valign', type: t.valign, triggersBounds: diff.any }, { name: 'text-halign', type: t.halign, triggersBounds: diff.any }, { name: 'color', type: t.color }, { name: 'text-outline-color', type: t.color }, { name: 'text-outline-opacity', type: t.zeroOneNumber }, { name: 'text-background-color', type: t.color }, { name: 'text-background-opacity', type: t.zeroOneNumber }, { name: 'text-background-padding', type: t.size, triggersBounds: diff.any }, { name: 'text-border-opacity', type: t.zeroOneNumber }, { name: 'text-border-color', type: t.color }, { name: 'text-border-width', type: t.size, triggersBounds: diff.any }, { name: 'text-border-style', type: t.borderStyle, triggersBounds: diff.any }, { name: 'text-background-shape', type: t.textBackgroundShape, triggersBounds: diff.any }, { name: 'text-justification', type: t.justification }]; var behavior = [{ name: 'events', type: t.bool, triggersZOrder: diff.any }, { name: 'text-events', type: t.bool, triggersZOrder: diff.any }]; var visibility = [{ name: 'display', type: t.display, triggersZOrder: diff.any, triggersBounds: diff.any, triggersBoundsOfConnectedEdges: true }, { name: 'visibility', type: t.visibility, triggersZOrder: diff.any }, { name: 'opacity', type: t.zeroOneNumber, triggersZOrder: diff.zeroNonZero }, { name: 'text-opacity', type: t.zeroOneNumber }, { name: 'min-zoomed-font-size', type: t.size }, { name: 'z-compound-depth', type: t.zCompoundDepth, triggersZOrder: diff.any }, { name: 'z-index-compare', type: t.zIndexCompare, triggersZOrder: diff.any }, { name: 'z-index', type: t.number, triggersZOrder: diff.any }]; var overlay = [{ name: 'overlay-padding', type: t.size, triggersBounds: diff.any }, { name: 'overlay-color', type: t.color }, { name: 'overlay-opacity', type: t.zeroOneNumber, triggersBounds: diff.zeroNonZero }, { name: 'overlay-shape', type: t.overlayShape, triggersBounds: diff.any }, { name: 'overlay-corner-radius', type: t.cornerRadius }]; var underlay = [{ name: 'underlay-padding', type: t.size, triggersBounds: diff.any }, { name: 'underlay-color', type: t.color }, { name: 'underlay-opacity', type: t.zeroOneNumber, triggersBounds: diff.zeroNonZero }, { name: 'underlay-shape', type: t.overlayShape, triggersBounds: diff.any }, { name: 'underlay-corner-radius', type: t.cornerRadius }]; var transition = [{ name: 'transition-property', type: t.propList }, { name: 'transition-duration', type: t.time }, { name: 'transition-delay', type: t.time }, { name: 'transition-timing-function', type: t.easing }]; var nodeSizeHashOverride = function nodeSizeHashOverride(ele, parsedProp) { if (parsedProp.value === 'label') { return -ele.poolIndex(); // no hash key hits is using label size (hitrate for perf probably low anyway) } else { return parsedProp.pfValue; } }; var nodeBody = [{ name: 'height', type: t.nodeSize, triggersBounds: diff.any, hashOverride: nodeSizeHashOverride }, { name: 'width', type: t.nodeSize, triggersBounds: diff.any, hashOverride: nodeSizeHashOverride }, { name: 'shape', type: t.nodeShape, triggersBounds: diff.any }, { name: 'shape-polygon-points', type: t.polygonPointList, triggersBounds: diff.any }, { name: 'corner-radius', type: t.cornerRadius }, { name: 'background-color', type: t.color }, { name: 'background-fill', type: t.fill }, { name: 'background-opacity', type: t.zeroOneNumber }, { name: 'background-blacken', type: t.nOneOneNumber }, { name: 'background-gradient-stop-colors', type: t.colors }, { name: 'background-gradient-stop-positions', type: t.percentages }, { name: 'background-gradient-direction', type: t.gradientDirection }, { name: 'padding', type: t.sizeMaybePercent, triggersBounds: diff.any }, { name: 'padding-relative-to', type: t.paddingRelativeTo, triggersBounds: diff.any }, { name: 'bounds-expansion', type: t.boundsExpansion, triggersBounds: diff.any }]; var nodeBorder = [{ name: 'border-color', type: t.color }, { name: 'border-opacity', type: t.zeroOneNumber }, { name: 'border-width', type: t.size, triggersBounds: diff.any }, { name: 'border-style', type: t.borderStyle }, { name: 'border-cap', type: t.lineCap }, { name: 'border-join', type: t.lineJoin }, { name: 'border-dash-pattern', type: t.numbers }, { name: 'border-dash-offset', type: t.number }, { name: 'border-position', type: t.linePosition }]; var nodeOutline = [{ name: 'outline-color', type: t.color }, { name: 'outline-opacity', type: t.zeroOneNumber }, { name: 'outline-width', type: t.size, triggersBounds: diff.any }, { name: 'outline-style', type: t.borderStyle }, { name: 'outline-offset', type: t.size, triggersBounds: diff.any }]; var backgroundImage = [{ name: 'background-image', type: t.urls }, { name: 'background-image-crossorigin', type: t.bgCrossOrigin }, { name: 'background-image-opacity', type: t.zeroOneNumbers }, { name: 'background-image-containment', type: t.bgContainment }, { name: 'background-image-smoothing', type: t.bools }, { name: 'background-position-x', type: t.bgPos }, { name: 'background-position-y', type: t.bgPos }, { name: 'background-width-relative-to', type: t.bgRelativeTo }, { name: 'background-height-relative-to', type: t.bgRelativeTo }, { name: 'background-repeat', type: t.bgRepeat }, { name: 'background-fit', type: t.bgFit }, { name: 'background-clip', type: t.bgClip }, { name: 'background-width', type: t.bgWH }, { name: 'background-height', type: t.bgWH }, { name: 'background-offset-x', type: t.bgPos }, { name: 'background-offset-y', type: t.bgPos }]; var compound = [{ name: 'position', type: t.position, triggersBounds: diff.any }, { name: 'compound-sizing-wrt-labels', type: t.compoundIncludeLabels, triggersBounds: diff.any }, { name: 'min-width', type: t.size, triggersBounds: diff.any }, { name: 'min-width-bias-left', type: t.sizeMaybePercent, triggersBounds: diff.any }, { name: 'min-width-bias-right', type: t.sizeMaybePercent, triggersBounds: diff.any }, { name: 'min-height', type: t.size, triggersBounds: diff.any }, { name: 'min-height-bias-top', type: t.sizeMaybePercent, triggersBounds: diff.any }, { name: 'min-height-bias-bottom', type: t.sizeMaybePercent, triggersBounds: diff.any }]; var edgeLine = [{ name: 'line-style', type: t.lineStyle }, { name: 'line-color', type: t.color }, { name: 'line-fill', type: t.fill }, { name: 'line-cap', type: t.lineCap }, { name: 'line-opacity', type: t.zeroOneNumber }, { name: 'line-dash-pattern', type: t.numbers }, { name: 'line-dash-offset', type: t.number }, { name: 'line-gradient-stop-colors', type: t.colors }, { name: 'line-gradient-stop-positions', type: t.percentages }, { name: 'curve-style', type: t.curveStyle, triggersBounds: diff.any, triggersBoundsOfParallelBeziers: true }, { name: 'haystack-radius', type: t.zeroOneNumber, triggersBounds: diff.any }, { name: 'source-endpoint', type: t.edgeEndpoint, triggersBounds: diff.any }, { name: 'target-endpoint', type: t.edgeEndpoint, triggersBounds: diff.any }, { name: 'control-point-step-size', type: t.size, triggersBounds: diff.any }, { name: 'control-point-distances', type: t.bidirectionalSizes, triggersBounds: diff.any }, { name: 'control-point-weights', type: t.numbers, triggersBounds: diff.any }, { name: 'segment-distances', type: t.bidirectionalSizes, triggersBounds: diff.any }, { name: 'segment-weights', type: t.numbers, triggersBounds: diff.any }, { name: 'segment-radii', type: t.numbers, triggersBounds: diff.any }, { name: 'radius-type', type: t.radiusType, triggersBounds: diff.any }, { name: 'taxi-turn', type: t.bidirectionalSizeMaybePercent, triggersBounds: diff.any }, { name: 'taxi-turn-min-distance', type: t.size, triggersBounds: diff.any }, { name: 'taxi-direction', type: t.axisDirection, triggersBounds: diff.any }, { name: 'taxi-radius', type: t.number, triggersBounds: diff.any }, { name: 'edge-distances', type: t.edgeDistances, triggersBounds: diff.any }, { name: 'arrow-scale', type: t.positiveNumber, triggersBounds: diff.any }, { name: 'loop-direction', type: t.angle, triggersBounds: diff.any }, { name: 'loop-sweep', type: t.angle, triggersBounds: diff.any }, { name: 'source-distance-from-node', type: t.size, triggersBounds: diff.any }, { name: 'target-distance-from-node', type: t.size, triggersBounds: diff.any }]; var ghost = [{ name: 'ghost', type: t.bool, triggersBounds: diff.any }, { name: 'ghost-offset-x', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'ghost-offset-y', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'ghost-opacity', type: t.zeroOneNumber }]; var core = [{ name: 'selection-box-color', type: t.color }, { name: 'selection-box-opacity', type: t.zeroOneNumber }, { name: 'selection-box-border-color', type: t.color }, { name: 'selection-box-border-width', type: t.size }, { name: 'active-bg-color', type: t.color }, { name: 'active-bg-opacity', type: t.zeroOneNumber }, { name: 'active-bg-size', type: t.size }, { name: 'outside-texture-bg-color', type: t.color }, { name: 'outside-texture-bg-opacity', type: t.zeroOneNumber }]; // pie backgrounds for nodes var pie = []; styfn$2.pieBackgroundN = 16; // because the pie properties are numbered, give access to a constant N (for renderer use) pie.push({ name: 'pie-size', type: t.sizeMaybePercent }); for (var i = 1; i <= styfn$2.pieBackgroundN; i++) { pie.push({ name: 'pie-' + i + '-background-color', type: t.color }); pie.push({ name: 'pie-' + i + '-background-size', type: t.percent }); pie.push({ name: 'pie-' + i + '-background-opacity', type: t.zeroOneNumber }); } // edge arrows var edgeArrow = []; var arrowPrefixes = styfn$2.arrowPrefixes = ['source', 'mid-source', 'target', 'mid-target']; [{ name: 'arrow-shape', type: t.arrowShape, triggersBounds: diff.any }, { name: 'arrow-color', type: t.color }, { name: 'arrow-fill', type: t.arrowFill }, { name: 'arrow-width', type: t.arrowWidth }].forEach(function (prop) { arrowPrefixes.forEach(function (prefix) { var name = prefix + '-' + prop.name; var type = prop.type, triggersBounds = prop.triggersBounds; edgeArrow.push({ name: name, type: type, triggersBounds: triggersBounds }); }); }, {}); var props = styfn$2.properties = [].concat(behavior, transition, visibility, overlay, underlay, ghost, commonLabel, labelDimensions, mainLabel, sourceLabel, targetLabel, nodeBody, nodeBorder, nodeOutline, backgroundImage, pie, compound, edgeLine, edgeArrow, core); var propGroups = styfn$2.propertyGroups = { // common to all eles behavior: behavior, transition: transition, visibility: visibility, overlay: overlay, underlay: underlay, ghost: ghost, // labels commonLabel: commonLabel, labelDimensions: labelDimensions, mainLabel: mainLabel, sourceLabel: sourceLabel, targetLabel: targetLabel, // node props nodeBody: nodeBody, nodeBorder: nodeBorder, nodeOutline: nodeOutline, backgroundImage: backgroundImage, pie: pie, compound: compound, // edge props edgeLine: edgeLine, edgeArrow: edgeArrow, core: core }; var propGroupNames = styfn$2.propertyGroupNames = {}; var propGroupKeys = styfn$2.propertyGroupKeys = Object.keys(propGroups); propGroupKeys.forEach(function (key) { propGroupNames[key] = propGroups[key].map(function (prop) { return prop.name; }); propGroups[key].forEach(function (prop) { return prop.groupKey = key; }); }); // define aliases var aliases = styfn$2.aliases = [{ name: 'content', pointsTo: 'label' }, { name: 'control-point-distance', pointsTo: 'control-point-distances' }, { name: 'control-point-weight', pointsTo: 'control-point-weights' }, { name: 'segment-distance', pointsTo: 'segment-distances' }, { name: 'segment-weight', pointsTo: 'segment-weights' }, { name: 'segment-radius', pointsTo: 'segment-radii' }, { name: 'edge-text-rotation', pointsTo: 'text-rotation' }, { name: 'padding-left', pointsTo: 'padding' }, { name: 'padding-right', pointsTo: 'padding' }, { name: 'padding-top', pointsTo: 'padding' }, { name: 'padding-bottom', pointsTo: 'padding' }]; // list of property names styfn$2.propertyNames = props.map(function (p) { return p.name; }); // allow access of properties by name ( e.g. style.properties.height ) for (var _i = 0; _i < props.length; _i++) { var prop = props[_i]; props[prop.name] = prop; // allow lookup by name } // map aliases for (var _i2 = 0; _i2 < aliases.length; _i2++) { var alias = aliases[_i2]; var pointsToProp = props[alias.pointsTo]; var aliasProp = { name: alias.name, alias: true, pointsTo: pointsToProp }; // add alias prop for parsing props.push(aliasProp); props[alias.name] = aliasProp; // allow lookup by name } })(); styfn$2.getDefaultProperty = function (name) { return this.getDefaultProperties()[name]; }; styfn$2.getDefaultProperties = function () { var _p = this._private; if (_p.defaultProperties != null) { return _p.defaultProperties; } var rawProps = extend({ // core props 'selection-box-color': '#ddd', 'selection-box-opacity': 0.65, 'selection-box-border-color': '#aaa', 'selection-box-border-width': 1, 'active-bg-color': 'black', 'active-bg-opacity': 0.15, 'active-bg-size': 30, 'outside-texture-bg-color': '#000', 'outside-texture-bg-opacity': 0.125, // common node/edge props 'events': 'yes', 'text-events': 'no', 'text-valign': 'top', 'text-halign': 'center', 'text-justification': 'auto', 'line-height': 1, 'color': '#000', 'text-outline-color': '#000', 'text-outline-width': 0, 'text-outline-opacity': 1, 'text-opacity': 1, 'text-decoration': 'none', 'text-transform': 'none', 'text-wrap': 'none', 'text-overflow-wrap': 'whitespace', 'text-max-width': 9999, 'text-background-color': '#000', 'text-background-opacity': 0, 'text-background-shape': 'rectangle', 'text-background-padding': 0, 'text-border-opacity': 0, 'text-border-width': 0, 'text-border-style': 'solid', 'text-border-color': '#000', 'font-family': 'Helvetica Neue, Helvetica, sans-serif', 'font-style': 'normal', 'font-weight': 'normal', 'font-size': 16, 'min-zoomed-font-size': 0, 'text-rotation': 'none', 'source-text-rotation': 'none', 'target-text-rotation': 'none', 'visibility': 'visible', 'display': 'element', 'opacity': 1, 'z-compound-depth': 'auto', 'z-index-compare': 'auto', 'z-index': 0, 'label': '', 'text-margin-x': 0, 'text-margin-y': 0, 'source-label': '', 'source-text-offset': 0, 'source-text-margin-x': 0, 'source-text-margin-y': 0, 'target-label': '', 'target-text-offset': 0, 'target-text-margin-x': 0, 'target-text-margin-y': 0, 'overlay-opacity': 0, 'overlay-color': '#000', 'overlay-padding': 10, 'overlay-shape': 'round-rectangle', 'overlay-corner-radius': 'auto', 'underlay-opacity': 0, 'underlay-color': '#000', 'underlay-padding': 10, 'underlay-shape': 'round-rectangle', 'underlay-corner-radius': 'auto', 'transition-property': 'none', 'transition-duration': 0, 'transition-delay': 0, 'transition-timing-function': 'linear', // node props 'background-blacken': 0, 'background-color': '#999', 'background-fill': 'solid', 'background-opacity': 1, 'background-image': 'none', 'background-image-crossorigin': 'anonymous', 'background-image-opacity': 1, 'background-image-containment': 'inside', 'background-image-smoothing': 'yes', 'background-position-x': '50%', 'background-position-y': '50%', 'background-offset-x': 0, 'background-offset-y': 0, 'background-width-relative-to': 'include-padding', 'background-height-relative-to': 'include-padding', 'background-repeat': 'no-repeat', 'background-fit': 'none', 'background-clip': 'node', 'background-width': 'auto', 'background-height': 'auto', 'border-color': '#000', 'border-opacity': 1, 'border-width': 0, 'border-style': 'solid', 'border-dash-pattern': [4, 2], 'border-dash-offset': 0, 'border-cap': 'butt', 'border-join': 'miter', 'border-position': 'center', 'outline-color': '#999', 'outline-opacity': 1, 'outline-width': 0, 'outline-offset': 0, 'outline-style': 'solid', 'height': 30, 'width': 30, 'shape': 'ellipse', 'shape-polygon-points': '-1, -1, 1, -1, 1, 1, -1, 1', 'corner-radius': 'auto', 'bounds-expansion': 0, // node gradient 'background-gradient-direction': 'to-bottom', 'background-gradient-stop-colors': '#999', 'background-gradient-stop-positions': '0%', // ghost props 'ghost': 'no', 'ghost-offset-y': 0, 'ghost-offset-x': 0, 'ghost-opacity': 0, // compound props 'padding': 0, 'padding-relative-to': 'width', 'position': 'origin', 'compound-sizing-wrt-labels': 'include', 'min-width': 0, 'min-width-bias-left': 0, 'min-width-bias-right': 0, 'min-height': 0, 'min-height-bias-top': 0, 'min-height-bias-bottom': 0 }, { // node pie bg 'pie-size': '100%' }, [{ name: 'pie-{{i}}-background-color', value: 'black' }, { name: 'pie-{{i}}-background-size', value: '0%' }, { name: 'pie-{{i}}-background-opacity', value: 1 }].reduce(function (css, prop) { for (var i = 1; i <= styfn$2.pieBackgroundN; i++) { var name = prop.name.replace('{{i}}', i); var val = prop.value; css[name] = val; } return css; }, {}), { // edge props 'line-style': 'solid', 'line-color': '#999', 'line-fill': 'solid', 'line-cap': 'butt', 'line-opacity': 1, 'line-gradient-stop-colors': '#999', 'line-gradient-stop-positions': '0%', 'control-point-step-size': 40, 'control-point-weights': 0.5, 'segment-weights': 0.5, 'segment-distances': 20, 'segment-radii': 15, 'radius-type': 'arc-radius', 'taxi-turn': '50%', 'taxi-radius': 15, 'taxi-turn-min-distance': 10, 'taxi-direction': 'auto', 'edge-distances': 'intersection', 'curve-style': 'haystack', 'haystack-radius': 0, 'arrow-scale': 1, 'loop-direction': '-45deg', 'loop-sweep': '-90deg', 'source-distance-from-node': 0, 'target-distance-from-node': 0, 'source-endpoint': 'outside-to-node', 'target-endpoint': 'outside-to-node', 'line-dash-pattern': [6, 3], 'line-dash-offset': 0 }, [{ name: 'arrow-shape', value: 'none' }, { name: 'arrow-color', value: '#999' }, { name: 'arrow-fill', value: 'filled' }, { name: 'arrow-width', value: 1 }].reduce(function (css, prop) { styfn$2.arrowPrefixes.forEach(function (prefix) { var name = prefix + '-' + prop.name; var val = prop.value; css[name] = val; }); return css; }, {})); var parsedProps = {}; for (var i = 0; i < this.properties.length; i++) { var prop = this.properties[i]; if (prop.pointsTo) { continue; } var name = prop.name; var val = rawProps[name]; var parsedProp = this.parse(name, val); parsedProps[name] = parsedProp; } _p.defaultProperties = parsedProps; return _p.defaultProperties; }; styfn$2.addDefaultStylesheet = function () { this.selector(':parent').css({ 'shape': 'rectangle', 'padding': 10, 'background-color': '#eee', 'border-color': '#ccc', 'border-width': 1 }).selector('edge').css({ 'width': 3 }).selector(':loop').css({ 'curve-style': 'bezier' }).selector('edge:compound').css({ 'curve-style': 'bezier', 'source-endpoint': 'outside-to-line', 'target-endpoint': 'outside-to-line' }).selector(':selected').css({ 'background-color': '#0169D9', 'line-color': '#0169D9', 'source-arrow-color': '#0169D9', 'target-arrow-color': '#0169D9', 'mid-source-arrow-color': '#0169D9', 'mid-target-arrow-color': '#0169D9' }).selector(':parent:selected').css({ 'background-color': '#CCE1F9', 'border-color': '#aec8e5' }).selector(':active').css({ 'overlay-color': 'black', 'overlay-padding': 10, 'overlay-opacity': 0.25 }); this.defaultLength = this.length; }; var styfn$1 = {}; // a caching layer for property parsing styfn$1.parse = function (name, value, propIsBypass, propIsFlat) { var self = this; // function values can't be cached in all cases, and there isn't much benefit of caching them anyway if (fn$6(value)) { return self.parseImplWarn(name, value, propIsBypass, propIsFlat); } var flatKey = propIsFlat === 'mapping' || propIsFlat === true || propIsFlat === false || propIsFlat == null ? 'dontcare' : propIsFlat; var bypassKey = propIsBypass ? 't' : 'f'; var valueKey = '' + value; var argHash = hashStrings(name, valueKey, bypassKey, flatKey); var propCache = self.propCache = self.propCache || []; var ret; if (!(ret = propCache[argHash])) { ret = propCache[argHash] = self.parseImplWarn(name, value, propIsBypass, propIsFlat); } // - bypasses can't be shared b/c the value can be changed by animations or otherwise overridden // - mappings can't be shared b/c mappings are per-element if (propIsBypass || propIsFlat === 'mapping') { // need a copy since props are mutated later in their lifecycles ret = copy(ret); if (ret) { ret.value = copy(ret.value); // because it could be an array, e.g. colour } } return ret; }; styfn$1.parseImplWarn = function (name, value, propIsBypass, propIsFlat) { var prop = this.parseImpl(name, value, propIsBypass, propIsFlat); if (!prop && value != null) { warn("The style property `".concat(name, ": ").concat(value, "` is invalid")); } if (prop && (prop.name === 'width' || prop.name === 'height') && value === 'label') { warn('The style value of `label` is deprecated for `' + prop.name + '`'); } return prop; }; // parse a property; return null on invalid; return parsed property otherwise // fields : // - name : the name of the property // - value : the parsed, native-typed value of the property // - strValue : a string value that represents the property value in valid css // - bypass : true iff the property is a bypass property styfn$1.parseImpl = function (name, value, propIsBypass, propIsFlat) { var self = this; name = camel2dash(name); // make sure the property name is in dash form (e.g. 'property-name' not 'propertyName') var property = self.properties[name]; var passedValue = value; var types = self.types; if (!property) { return null; } // return null on property of unknown name if (value === undefined) { return null; } // can't assign undefined // the property may be an alias if (property.alias) { property = property.pointsTo; name = property.name; } var valueIsString = string(value); if (valueIsString) { // trim the value to make parsing easier value = value.trim(); } var type = property.type; if (!type) { return null; } // no type, no luck // check if bypass is null or empty string (i.e. indication to delete bypass property) if (propIsBypass && (value === '' || value === null)) { return { name: name, value: value, bypass: true, deleteBypass: true }; } // check if value is a function used as a mapper if (fn$6(value)) { return { name: name, value: value, strValue: 'fn', mapped: types.fn, bypass: propIsBypass }; } // check if value is mapped var data, mapData; if (!valueIsString || propIsFlat || value.length < 7 || value[1] !== 'a') ; else if (value.length >= 7 && value[0] === 'd' && (data = new RegExp(types.data.regex).exec(value))) { if (propIsBypass) { return false; } // mappers not allowed in bypass var mapped = types.data; return { name: name, value: data, strValue: '' + value, mapped: mapped, field: data[1], bypass: propIsBypass }; } else if (value.length >= 10 && value[0] === 'm' && (mapData = new RegExp(types.mapData.regex).exec(value))) { if (propIsBypass) { return false; } // mappers not allowed in bypass if (type.multiple) { return false; } // impossible to map to num var _mapped = types.mapData; // we can map only if the type is a colour or a number if (!(type.color || type.number)) { return false; } var valueMin = this.parse(name, mapData[4]); // parse to validate if (!valueMin || valueMin.mapped) { return false; } // can't be invalid or mapped var valueMax = this.parse(name, mapData[5]); // parse to validate if (!valueMax || valueMax.mapped) { return false; } // can't be invalid or mapped // check if valueMin and valueMax are the same if (valueMin.pfValue === valueMax.pfValue || valueMin.strValue === valueMax.strValue) { warn('`' + name + ': ' + value + '` is not a valid mapper because the output range is zero; converting to `' + name + ': ' + valueMin.strValue + '`'); return this.parse(name, valueMin.strValue); // can't make much of a mapper without a range } else if (type.color) { var c1 = valueMin.value; var c2 = valueMax.value; var same = c1[0] === c2[0] // red && c1[1] === c2[1] // green && c1[2] === c2[2] // blue && ( // optional alpha c1[3] === c2[3] // same alpha outright || (c1[3] == null || c1[3] === 1 // full opacity for colour 1? ) && (c2[3] == null || c2[3] === 1) // full opacity for colour 2? ); if (same) { return false; } // can't make a mapper without a range } return { name: name, value: mapData, strValue: '' + value, mapped: _mapped, field: mapData[1], fieldMin: parseFloat(mapData[2]), // min & max are numeric fieldMax: parseFloat(mapData[3]), valueMin: valueMin.value, valueMax: valueMax.value, bypass: propIsBypass }; } if (type.multiple && propIsFlat !== 'multiple') { var vals; if (valueIsString) { vals = value.split(/\s+/); } else if (array(value)) { vals = value; } else { vals = [value]; } if (type.evenMultiple && vals.length % 2 !== 0) { return null; } var valArr = []; var unitsArr = []; var pfValArr = []; var strVal = ''; var hasEnum = false; for (var i = 0; i < vals.length; i++) { var p = self.parse(name, vals[i], propIsBypass, 'multiple'); hasEnum = hasEnum || string(p.value); valArr.push(p.value); pfValArr.push(p.pfValue != null ? p.pfValue : p.value); unitsArr.push(p.units); strVal += (i > 0 ? ' ' : '') + p.strValue; } if (type.validate && !type.validate(valArr, unitsArr)) { return null; } if (type.singleEnum && hasEnum) { if (valArr.length === 1 && string(valArr[0])) { return { name: name, value: valArr[0], strValue: valArr[0], bypass: propIsBypass }; } else { return null; } } return { name: name, value: valArr, pfValue: pfValArr, strValue: strVal, bypass: propIsBypass, units: unitsArr }; } // several types also allow enums var checkEnums = function checkEnums() { for (var _i = 0; _i < type.enums.length; _i++) { var en = type.enums[_i]; if (en === value) { return { name: name, value: value, strValue: '' + value, bypass: propIsBypass }; } } return null; }; // check the type and return the appropriate object if (type.number) { var units; var implicitUnits = 'px'; // not set => px if (type.units) { // use specified units if set units = type.units; } if (type.implicitUnits) { implicitUnits = type.implicitUnits; } if (!type.unitless) { if (valueIsString) { var unitsRegex = 'px|em' + (type.allowPercent ? '|\\%' : ''); if (units) { unitsRegex = units; } // only allow explicit units if so set var match = value.match('^(' + number + ')(' + unitsRegex + ')?' + '$'); if (match) { value = match[1]; units = match[2] || implicitUnits; } } else if (!units || type.implicitUnits) { units = implicitUnits; // implicitly px if unspecified } } value = parseFloat(value); // if not a number and enums not allowed, then the value is invalid if (isNaN(value) && type.enums === undefined) { return null; } // check if this number type also accepts special keywords in place of numbers // (i.e. `left`, `auto`, etc) if (isNaN(value) && type.enums !== undefined) { value = passedValue; return checkEnums(); } // check if value must be an integer if (type.integer && !integer(value)) { return null; } // check value is within range if (type.min !== undefined && (value < type.min || type.strictMin && value === type.min) || type.max !== undefined && (value > type.max || type.strictMax && value === type.max)) { return null; } var ret = { name: name, value: value, strValue: '' + value + (units ? units : ''), units: units, bypass: propIsBypass }; // normalise value in pixels if (type.unitless || units !== 'px' && units !== 'em') { ret.pfValue = value; } else { ret.pfValue = units === 'px' || !units ? value : this.getEmSizeInPixels() * value; } // normalise value in ms if (units === 'ms' || units === 's') { ret.pfValue = units === 'ms' ? value : 1000 * value; } // normalise value in rad if (units === 'deg' || units === 'rad') { ret.pfValue = units === 'rad' ? value : deg2rad(value); } // normalize value in % if (units === '%') { ret.pfValue = value / 100; } return ret; } else if (type.propList) { var props = []; var propsStr = '' + value; if (propsStr === 'none') ; else { // go over each prop var propsSplit = propsStr.split(/\s*,\s*|\s+/); for (var _i2 = 0; _i2 < propsSplit.length; _i2++) { var propName = propsSplit[_i2].trim(); if (self.properties[propName]) { props.push(propName); } else { warn('`' + propName + '` is not a valid property name'); } } if (props.length === 0) { return null; } } return { name: name, value: props, strValue: props.length === 0 ? 'none' : props.join(' '), bypass: propIsBypass }; } else if (type.color) { var tuple = color2tuple(value); if (!tuple) { return null; } return { name: name, value: tuple, pfValue: tuple, strValue: 'rgb(' + tuple[0] + ',' + tuple[1] + ',' + tuple[2] + ')', // n.b. no spaces b/c of multiple support bypass: propIsBypass }; } else if (type.regex || type.regexes) { // first check enums if (type.enums) { var enumProp = checkEnums(); if (enumProp) { return enumProp; } } var regexes = type.regexes ? type.regexes : [type.regex]; for (var _i3 = 0; _i3 < regexes.length; _i3++) { var regex = new RegExp(regexes[_i3]); // make a regex from the type string var m = regex.exec(value); if (m) { // regex matches return { name: name, value: type.singleRegexMatchValue ? m[1] : m, strValue: '' + value, bypass: propIsBypass }; } } return null; // didn't match any } else if (type.string) { // just return return { name: name, value: '' + value, strValue: '' + value, bypass: propIsBypass }; } else if (type.enums) { // check enums last because it's a combo type in others return checkEnums(); } else { return null; // not a type we can handle } }; var Style = function Style(cy) { if (!(this instanceof Style)) { return new Style(cy); } if (!core(cy)) { error('A style must have a core reference'); return; } this._private = { cy: cy, coreStyle: {} }; this.length = 0; this.resetToDefault(); }; var styfn = Style.prototype; styfn.instanceString = function () { return 'style'; }; // remove all contexts styfn.clear = function () { var _p = this._private; var cy = _p.cy; var eles = cy.elements(); for (var i = 0; i < this.length; i++) { this[i] = undefined; } this.length = 0; _p.contextStyles = {}; _p.propDiffs = {}; this.cleanElements(eles, true); eles.forEach(function (ele) { var ele_p = ele[0]._private; ele_p.styleDirty = true; ele_p.appliedInitStyle = false; }); return this; // chaining }; styfn.resetToDefault = function () { this.clear(); this.addDefaultStylesheet(); return this; }; // builds a style object for the 'core' selector styfn.core = function (propName) { return this._private.coreStyle[propName] || this.getDefaultProperty(propName); }; // create a new context from the specified selector string and switch to that context styfn.selector = function (selectorStr) { // 'core' is a special case and does not need a selector var selector = selectorStr === 'core' ? null : new Selector(selectorStr); var i = this.length++; // new context means new index this[i] = { selector: selector, properties: [], mappedProperties: [], index: i }; return this; // chaining }; // add one or many css rules to the current context styfn.css = function () { var self = this; var args = arguments; if (args.length === 1) { var map = args[0]; for (var i = 0; i < self.properties.length; i++) { var prop = self.properties[i]; var mapVal = map[prop.name]; if (mapVal === undefined) { mapVal = map[dash2camel(prop.name)]; } if (mapVal !== undefined) { this.cssRule(prop.name, mapVal); } } } else if (args.length === 2) { this.cssRule(args[0], args[1]); } // do nothing if args are invalid return this; // chaining }; styfn.style = styfn.css; // add a single css rule to the current context styfn.cssRule = function (name, value) { // name-value pair var property = this.parse(name, value); // add property to current context if valid if (property) { var i = this.length - 1; this[i].properties.push(property); this[i].properties[property.name] = property; // allow access by name as well if (property.name.match(/pie-(\d+)-background-size/) && property.value) { this._private.hasPie = true; } if (property.mapped) { this[i].mappedProperties.push(property); } // add to core style if necessary var currentSelectorIsCore = !this[i].selector; if (currentSelectorIsCore) { this._private.coreStyle[property.name] = property; } } return this; // chaining }; styfn.append = function (style) { if (stylesheet(style)) { style.appendToStyle(this); } else if (array(style)) { this.appendFromJson(style); } else if (string(style)) { this.appendFromString(style); } // you probably wouldn't want to append a Style, since you'd duplicate the default parts return this; }; // static function Style.fromJson = function (cy, json) { var style = new Style(cy); style.fromJson(json); return style; }; Style.fromString = function (cy, string) { return new Style(cy).fromString(string); }; [styfn$8, styfn$7, styfn$6, styfn$5, styfn$4, styfn$3, styfn$2, styfn$1].forEach(function (props) { extend(styfn, props); }); Style.types = styfn.types; Style.properties = styfn.properties; Style.propertyGroups = styfn.propertyGroups; Style.propertyGroupNames = styfn.propertyGroupNames; Style.propertyGroupKeys = styfn.propertyGroupKeys; var corefn$2 = { style: function style(newStyle) { if (newStyle) { var s = this.setStyle(newStyle); s.update(); } return this._private.style; }, setStyle: function setStyle(style) { var _p = this._private; if (stylesheet(style)) { _p.style = style.generateStyle(this); } else if (array(style)) { _p.style = Style.fromJson(this, style); } else if (string(style)) { _p.style = Style.fromString(this, style); } else { _p.style = Style(this); } return _p.style; }, // e.g. cy.data() changed => recalc ele mappers updateStyle: function updateStyle() { this.mutableElements().updateStyle(); // just send to all eles } }; var defaultSelectionType = 'single'; var corefn$1 = { autolock: function autolock(bool) { if (bool !== undefined) { this._private.autolock = bool ? true : false; } else { return this._private.autolock; } return this; // chaining }, autoungrabify: function autoungrabify(bool) { if (bool !== undefined) { this._private.autoungrabify = bool ? true : false; } else { return this._private.autoungrabify; } return this; // chaining }, autounselectify: function autounselectify(bool) { if (bool !== undefined) { this._private.autounselectify = bool ? true : false; } else { return this._private.autounselectify; } return this; // chaining }, selectionType: function selectionType(selType) { var _p = this._private; if (_p.selectionType == null) { _p.selectionType = defaultSelectionType; } if (selType !== undefined) { if (selType === 'additive' || selType === 'single') { _p.selectionType = selType; } } else { return _p.selectionType; } return this; }, panningEnabled: function panningEnabled(bool) { if (bool !== undefined) { this._private.panningEnabled = bool ? true : false; } else { return this._private.panningEnabled; } return this; // chaining }, userPanningEnabled: function userPanningEnabled(bool) { if (bool !== undefined) { this._private.userPanningEnabled = bool ? true : false; } else { return this._private.userPanningEnabled; } return this; // chaining }, zoomingEnabled: function zoomingEnabled(bool) { if (bool !== undefined) { this._private.zoomingEnabled = bool ? true : false; } else { return this._private.zoomingEnabled; } return this; // chaining }, userZoomingEnabled: function userZoomingEnabled(bool) { if (bool !== undefined) { this._private.userZoomingEnabled = bool ? true : false; } else { return this._private.userZoomingEnabled; } return this; // chaining }, boxSelectionEnabled: function boxSelectionEnabled(bool) { if (bool !== undefined) { this._private.boxSelectionEnabled = bool ? true : false; } else { return this._private.boxSelectionEnabled; } return this; // chaining }, pan: function pan() { var args = arguments; var pan = this._private.pan; var dim, val, dims, x, y; switch (args.length) { case 0: // .pan() return pan; case 1: if (string(args[0])) { // .pan('x') dim = args[0]; return pan[dim]; } else if (plainObject(args[0])) { // .pan({ x: 0, y: 100 }) if (!this._private.panningEnabled) { return this; } dims = args[0]; x = dims.x; y = dims.y; if (number$1(x)) { pan.x = x; } if (number$1(y)) { pan.y = y; } this.emit('pan viewport'); } break; case 2: // .pan('x', 100) if (!this._private.panningEnabled) { return this; } dim = args[0]; val = args[1]; if ((dim === 'x' || dim === 'y') && number$1(val)) { pan[dim] = val; } this.emit('pan viewport'); break; // invalid } this.notify('viewport'); return this; // chaining }, panBy: function panBy(arg0, arg1) { var args = arguments; var pan = this._private.pan; var dim, val, dims, x, y; if (!this._private.panningEnabled) { return this; } switch (args.length) { case 1: if (plainObject(arg0)) { // .panBy({ x: 0, y: 100 }) dims = args[0]; x = dims.x; y = dims.y; if (number$1(x)) { pan.x += x; } if (number$1(y)) { pan.y += y; } this.emit('pan viewport'); } break; case 2: // .panBy('x', 100) dim = arg0; val = arg1; if ((dim === 'x' || dim === 'y') && number$1(val)) { pan[dim] += val; } this.emit('pan viewport'); break; // invalid } this.notify('viewport'); return this; // chaining }, fit: function fit(elements, padding) { var viewportState = this.getFitViewport(elements, padding); if (viewportState) { var _p = this._private; _p.zoom = viewportState.zoom; _p.pan = viewportState.pan; this.emit('pan zoom viewport'); this.notify('viewport'); } return this; // chaining }, getFitViewport: function getFitViewport(elements, padding) { if (number$1(elements) && padding === undefined) { // elements is optional padding = elements; elements = undefined; } if (!this._private.panningEnabled || !this._private.zoomingEnabled) { return; } var bb; if (string(elements)) { var sel = elements; elements = this.$(sel); } else if (boundingBox(elements)) { // assume bb var bbe = elements; bb = { x1: bbe.x1, y1: bbe.y1, x2: bbe.x2, y2: bbe.y2 }; bb.w = bb.x2 - bb.x1; bb.h = bb.y2 - bb.y1; } else if (!elementOrCollection(elements)) { elements = this.mutableElements(); } if (elementOrCollection(elements) && elements.empty()) { return; } // can't fit to nothing bb = bb || elements.boundingBox(); var w = this.width(); var h = this.height(); var zoom; padding = number$1(padding) ? padding : 0; if (!isNaN(w) && !isNaN(h) && w > 0 && h > 0 && !isNaN(bb.w) && !isNaN(bb.h) && bb.w > 0 && bb.h > 0) { zoom = Math.min((w - 2 * padding) / bb.w, (h - 2 * padding) / bb.h); // crop zoom zoom = zoom > this._private.maxZoom ? this._private.maxZoom : zoom; zoom = zoom < this._private.minZoom ? this._private.minZoom : zoom; var pan = { // now pan to middle x: (w - zoom * (bb.x1 + bb.x2)) / 2, y: (h - zoom * (bb.y1 + bb.y2)) / 2 }; return { zoom: zoom, pan: pan }; } return; }, zoomRange: function zoomRange(min, max) { var _p = this._private; if (max == null) { var opts = min; min = opts.min; max = opts.max; } if (number$1(min) && number$1(max) && min <= max) { _p.minZoom = min; _p.maxZoom = max; } else if (number$1(min) && max === undefined && min <= _p.maxZoom) { _p.minZoom = min; } else if (number$1(max) && min === undefined && max >= _p.minZoom) { _p.maxZoom = max; } return this; }, minZoom: function minZoom(zoom) { if (zoom === undefined) { return this._private.minZoom; } else { return this.zoomRange({ min: zoom }); } }, maxZoom: function maxZoom(zoom) { if (zoom === undefined) { return this._private.maxZoom; } else { return this.zoomRange({ max: zoom }); } }, getZoomedViewport: function getZoomedViewport(params) { var _p = this._private; var currentPan = _p.pan; var currentZoom = _p.zoom; var pos; // in rendered px var zoom; var bail = false; if (!_p.zoomingEnabled) { // zooming disabled bail = true; } if (number$1(params)) { // then set the zoom zoom = params; } else if (plainObject(params)) { // then zoom about a point zoom = params.level; if (params.position != null) { pos = modelToRenderedPosition(params.position, currentZoom, currentPan); } else if (params.renderedPosition != null) { pos = params.renderedPosition; } if (pos != null && !_p.panningEnabled) { // panning disabled bail = true; } } // crop zoom zoom = zoom > _p.maxZoom ? _p.maxZoom : zoom; zoom = zoom < _p.minZoom ? _p.minZoom : zoom; // can't zoom with invalid params if (bail || !number$1(zoom) || zoom === currentZoom || pos != null && (!number$1(pos.x) || !number$1(pos.y))) { return null; } if (pos != null) { // set zoom about position var pan1 = currentPan; var zoom1 = currentZoom; var zoom2 = zoom; var pan2 = { x: -zoom2 / zoom1 * (pos.x - pan1.x) + pos.x, y: -zoom2 / zoom1 * (pos.y - pan1.y) + pos.y }; return { zoomed: true, panned: true, zoom: zoom2, pan: pan2 }; } else { // just set the zoom return { zoomed: true, panned: false, zoom: zoom, pan: currentPan }; } }, zoom: function zoom(params) { if (params === undefined) { // get return this._private.zoom; } else { // set var vp = this.getZoomedViewport(params); var _p = this._private; if (vp == null || !vp.zoomed) { return this; } _p.zoom = vp.zoom; if (vp.panned) { _p.pan.x = vp.pan.x; _p.pan.y = vp.pan.y; } this.emit('zoom' + (vp.panned ? ' pan' : '') + ' viewport'); this.notify('viewport'); return this; // chaining } }, viewport: function viewport(opts) { var _p = this._private; var zoomDefd = true; var panDefd = true; var events = []; // to trigger var zoomFailed = false; var panFailed = false; if (!opts) { return this; } if (!number$1(opts.zoom)) { zoomDefd = false; } if (!plainObject(opts.pan)) { panDefd = false; } if (!zoomDefd && !panDefd) { return this; } if (zoomDefd) { var z = opts.zoom; if (z < _p.minZoom || z > _p.maxZoom || !_p.zoomingEnabled) { zoomFailed = true; } else { _p.zoom = z; events.push('zoom'); } } if (panDefd && (!zoomFailed || !opts.cancelOnFailedZoom) && _p.panningEnabled) { var p = opts.pan; if (number$1(p.x)) { _p.pan.x = p.x; panFailed = false; } if (number$1(p.y)) { _p.pan.y = p.y; panFailed = false; } if (!panFailed) { events.push('pan'); } } if (events.length > 0) { events.push('viewport'); this.emit(events.join(' ')); this.notify('viewport'); } return this; // chaining }, center: function center(elements) { var pan = this.getCenterPan(elements); if (pan) { this._private.pan = pan; this.emit('pan viewport'); this.notify('viewport'); } return this; // chaining }, getCenterPan: function getCenterPan(elements, zoom) { if (!this._private.panningEnabled) { return; } if (string(elements)) { var selector = elements; elements = this.mutableElements().filter(selector); } else if (!elementOrCollection(elements)) { elements = this.mutableElements(); } if (elements.length === 0) { return; } // can't centre pan to nothing var bb = elements.boundingBox(); var w = this.width(); var h = this.height(); zoom = zoom === undefined ? this._private.zoom : zoom; var pan = { // middle x: (w - zoom * (bb.x1 + bb.x2)) / 2, y: (h - zoom * (bb.y1 + bb.y2)) / 2 }; return pan; }, reset: function reset() { if (!this._private.panningEnabled || !this._private.zoomingEnabled) { return this; } this.viewport({ pan: { x: 0, y: 0 }, zoom: 1 }); return this; // chaining }, invalidateSize: function invalidateSize() { this._private.sizeCache = null; }, size: function size() { var _p = this._private; var container = _p.container; var cy = this; return _p.sizeCache = _p.sizeCache || (container ? function () { var style = cy.window().getComputedStyle(container); var val = function val(name) { return parseFloat(style.getPropertyValue(name)); }; return { width: container.clientWidth - val('padding-left') - val('padding-right'), height: container.clientHeight - val('padding-top') - val('padding-bottom') }; }() : { // fallback if no container (not 0 b/c can be used for dividing etc) width: 1, height: 1 }); }, width: function width() { return this.size().width; }, height: function height() { return this.size().height; }, extent: function extent() { var pan = this._private.pan; var zoom = this._private.zoom; var rb = this.renderedExtent(); var b = { x1: (rb.x1 - pan.x) / zoom, x2: (rb.x2 - pan.x) / zoom, y1: (rb.y1 - pan.y) / zoom, y2: (rb.y2 - pan.y) / zoom }; b.w = b.x2 - b.x1; b.h = b.y2 - b.y1; return b; }, renderedExtent: function renderedExtent() { var width = this.width(); var height = this.height(); return { x1: 0, y1: 0, x2: width, y2: height, w: width, h: height }; }, multiClickDebounceTime: function multiClickDebounceTime(_int) { if (_int) this._private.multiClickDebounceTime = _int;else return this._private.multiClickDebounceTime; return this; // chaining } }; // aliases corefn$1.centre = corefn$1.center; // backwards compatibility corefn$1.autolockNodes = corefn$1.autolock; corefn$1.autoungrabifyNodes = corefn$1.autoungrabify; var fn = { data: define.data({ field: 'data', bindingEvent: 'data', allowBinding: true, allowSetting: true, settingEvent: 'data', settingTriggersEvent: true, triggerFnName: 'trigger', allowGetting: true, updateStyle: true }), removeData: define.removeData({ field: 'data', event: 'data', triggerFnName: 'trigger', triggerEvent: true, updateStyle: true }), scratch: define.data({ field: 'scratch', bindingEvent: 'scratch', allowBinding: true, allowSetting: true, settingEvent: 'scratch', settingTriggersEvent: true, triggerFnName: 'trigger', allowGetting: true, updateStyle: true }), removeScratch: define.removeData({ field: 'scratch', event: 'scratch', triggerFnName: 'trigger', triggerEvent: true, updateStyle: true }) }; // aliases fn.attr = fn.data; fn.removeAttr = fn.removeData; var Core = function Core(opts) { var cy = this; opts = extend({}, opts); var container = opts.container; // allow for passing a wrapped jquery object // e.g. cytoscape({ container: $('#cy') }) if (container && !htmlElement(container) && htmlElement(container[0])) { container = container[0]; } var reg = container ? container._cyreg : null; // e.g. already registered some info (e.g. readies) via jquery reg = reg || {}; if (reg && reg.cy) { reg.cy.destroy(); reg = {}; // old instance => replace reg completely } var readies = reg.readies = reg.readies || []; if (container) { container._cyreg = reg; } // make sure container assoc'd reg points to this cy reg.cy = cy; var head = _window !== undefined && container !== undefined && !opts.headless; var options = opts; options.layout = extend({ name: head ? 'grid' : 'null' }, options.layout); options.renderer = extend({ name: head ? 'canvas' : 'null' }, options.renderer); var defVal = function defVal(def, val, altVal) { if (val !== undefined) { return val; } else if (altVal !== undefined) { return altVal; } else { return def; } }; var _p = this._private = { container: container, // html dom ele container ready: false, // whether ready has been triggered options: options, // cached options elements: new Collection(this), // elements in the graph listeners: [], // list of listeners aniEles: new Collection(this), // elements being animated data: options.data || {}, // data for the core scratch: {}, // scratch object for core layout: null, renderer: null, destroyed: false, // whether destroy was called notificationsEnabled: true, // whether notifications are sent to the renderer minZoom: 1e-50, maxZoom: 1e50, zoomingEnabled: defVal(true, options.zoomingEnabled), userZoomingEnabled: defVal(true, options.userZoomingEnabled), panningEnabled: defVal(true, options.panningEnabled), userPanningEnabled: defVal(true, options.userPanningEnabled), boxSelectionEnabled: defVal(true, options.boxSelectionEnabled), autolock: defVal(false, options.autolock, options.autolockNodes), autoungrabify: defVal(false, options.autoungrabify, options.autoungrabifyNodes), autounselectify: defVal(false, options.autounselectify), styleEnabled: options.styleEnabled === undefined ? head : options.styleEnabled, zoom: number$1(options.zoom) ? options.zoom : 1, pan: { x: plainObject(options.pan) && number$1(options.pan.x) ? options.pan.x : 0, y: plainObject(options.pan) && number$1(options.pan.y) ? options.pan.y : 0 }, animation: { // object for currently-running animations current: [], queue: [] }, hasCompoundNodes: false, multiClickDebounceTime: defVal(250, options.multiClickDebounceTime) }; this.createEmitter(); // set selection type this.selectionType(options.selectionType); // init zoom bounds this.zoomRange({ min: options.minZoom, max: options.maxZoom }); var loadExtData = function loadExtData(extData, next) { var anyIsPromise = extData.some(promise); if (anyIsPromise) { return Promise$1.all(extData).then(next); // load all data asynchronously, then exec rest of init } else { next(extData); // exec synchronously for convenience } }; // start with the default stylesheet so we have something before loading an external stylesheet if (_p.styleEnabled) { cy.setStyle([]); } // create the renderer var rendererOptions = extend({}, options, options.renderer); // allow rendering hints in top level options cy.initRenderer(rendererOptions); var setElesAndLayout = function setElesAndLayout(elements, onload, ondone) { cy.notifications(false); // remove old elements var oldEles = cy.mutableElements(); if (oldEles.length > 0) { oldEles.remove(); } if (elements != null) { if (plainObject(elements) || array(elements)) { cy.add(elements); } } cy.one('layoutready', function (e) { cy.notifications(true); cy.emit(e); // we missed this event by turning notifications off, so pass it on cy.one('load', onload); cy.emitAndNotify('load'); }).one('layoutstop', function () { cy.one('done', ondone); cy.emit('done'); }); var layoutOpts = extend({}, cy._private.options.layout); layoutOpts.eles = cy.elements(); cy.layout(layoutOpts).run(); }; loadExtData([options.style, options.elements], function (thens) { var initStyle = thens[0]; var initEles = thens[1]; // init style if (_p.styleEnabled) { cy.style().append(initStyle); } // initial load setElesAndLayout(initEles, function () { // onready cy.startAnimationLoop(); _p.ready = true; // if a ready callback is specified as an option, the bind it if (fn$6(options.ready)) { cy.on('ready', options.ready); } // bind all the ready handlers registered before creating this instance for (var i = 0; i < readies.length; i++) { var fn = readies[i]; cy.on('ready', fn); } if (reg) { reg.readies = []; } // clear b/c we've bound them all and don't want to keep it around in case a new core uses the same div etc cy.emit('ready'); }, options.done); }); }; var corefn = Core.prototype; // short alias extend(corefn, { instanceString: function instanceString() { return 'core'; }, isReady: function isReady() { return this._private.ready; }, destroyed: function destroyed() { return this._private.destroyed; }, ready: function ready(fn) { if (this.isReady()) { this.emitter().emit('ready', [], fn); // just calls fn as though triggered via ready event } else { this.on('ready', fn); } return this; }, destroy: function destroy() { var cy = this; if (cy.destroyed()) return; cy.stopAnimationLoop(); cy.destroyRenderer(); this.emit('destroy'); cy._private.destroyed = true; return cy; }, hasElementWithId: function hasElementWithId(id) { return this._private.elements.hasElementWithId(id); }, getElementById: function getElementById(id) { return this._private.elements.getElementById(id); }, hasCompoundNodes: function hasCompoundNodes() { return this._private.hasCompoundNodes; }, headless: function headless() { return this._private.renderer.isHeadless(); }, styleEnabled: function styleEnabled() { return this._private.styleEnabled; }, addToPool: function addToPool(eles) { this._private.elements.merge(eles); return this; // chaining }, removeFromPool: function removeFromPool(eles) { this._private.elements.unmerge(eles); return this; }, container: function container() { return this._private.container || null; }, window: function window() { var container = this._private.container; if (container == null) return _window; var ownerDocument = this._private.container.ownerDocument; if (ownerDocument === undefined || ownerDocument == null) { return _window; } return ownerDocument.defaultView || _window; }, mount: function mount(container) { if (container == null) { return; } var cy = this; var _p = cy._private; var options = _p.options; if (!htmlElement(container) && htmlElement(container[0])) { container = container[0]; } cy.stopAnimationLoop(); cy.destroyRenderer(); _p.container = container; _p.styleEnabled = true; cy.invalidateSize(); cy.initRenderer(extend({}, options, options.renderer, { // allow custom renderer name to be re-used, otherwise use canvas name: options.renderer.name === 'null' ? 'canvas' : options.renderer.name })); cy.startAnimationLoop(); cy.style(options.style); cy.emit('mount'); return cy; }, unmount: function unmount() { var cy = this; cy.stopAnimationLoop(); cy.destroyRenderer(); cy.initRenderer({ name: 'null' }); cy.emit('unmount'); return cy; }, options: function options() { return copy(this._private.options); }, json: function json(obj) { var cy = this; var _p = cy._private; var eles = cy.mutableElements(); var getFreshRef = function getFreshRef(ele) { return cy.getElementById(ele.id()); }; if (plainObject(obj)) { // set cy.startBatch(); if (obj.elements) { var idInJson = {}; var updateEles = function updateEles(jsons, gr) { var toAdd = []; var toMod = []; for (var i = 0; i < jsons.length; i++) { var json = jsons[i]; if (!json.data.id) { warn('cy.json() cannot handle elements without an ID attribute'); continue; } var id = '' + json.data.id; // id must be string var ele = cy.getElementById(id); idInJson[id] = true; if (ele.length !== 0) { // existing element should be updated toMod.push({ ele: ele, json: json }); } else { // otherwise should be added if (gr) { json.group = gr; toAdd.push(json); } else { toAdd.push(json); } } } cy.add(toAdd); for (var _i = 0; _i < toMod.length; _i++) { var _toMod$_i = toMod[_i], _ele = _toMod$_i.ele, _json = _toMod$_i.json; _ele.json(_json); } }; if (array(obj.elements)) { // elements: [] updateEles(obj.elements); } else { // elements: { nodes: [], edges: [] } var grs = ['nodes', 'edges']; for (var i = 0; i < grs.length; i++) { var gr = grs[i]; var elements = obj.elements[gr]; if (array(elements)) { updateEles(elements, gr); } } } var parentsToRemove = cy.collection(); eles.filter(function (ele) { return !idInJson[ele.id()]; }).forEach(function (ele) { if (ele.isParent()) { parentsToRemove.merge(ele); } else { ele.remove(); } }); // so that children are not removed w/parent parentsToRemove.forEach(function (ele) { return ele.children().move({ parent: null }); }); // intermediate parents may be moved by prior line, so make sure we remove by fresh refs parentsToRemove.forEach(function (ele) { return getFreshRef(ele).remove(); }); } if (obj.style) { cy.style(obj.style); } if (obj.zoom != null && obj.zoom !== _p.zoom) { cy.zoom(obj.zoom); } if (obj.pan) { if (obj.pan.x !== _p.pan.x || obj.pan.y !== _p.pan.y) { cy.pan(obj.pan); } } if (obj.data) { cy.data(obj.data); } var fields = ['minZoom', 'maxZoom', 'zoomingEnabled', 'userZoomingEnabled', 'panningEnabled', 'userPanningEnabled', 'boxSelectionEnabled', 'autolock', 'autoungrabify', 'autounselectify', 'multiClickDebounceTime']; for (var _i2 = 0; _i2 < fields.length; _i2++) { var f = fields[_i2]; if (obj[f] != null) { cy[f](obj[f]); } } cy.endBatch(); return this; // chaining } else { // get var flat = !!obj; var json = {}; if (flat) { json.elements = this.elements().map(function (ele) { return ele.json(); }); } else { json.elements = {}; eles.forEach(function (ele) { var group = ele.group(); if (!json.elements[group]) { json.elements[group] = []; } json.elements[group].push(ele.json()); }); } if (this._private.styleEnabled) { json.style = cy.style().json(); } json.data = copy(cy.data()); var options = _p.options; json.zoomingEnabled = _p.zoomingEnabled; json.userZoomingEnabled = _p.userZoomingEnabled; json.zoom = _p.zoom; json.minZoom = _p.minZoom; json.maxZoom = _p.maxZoom; json.panningEnabled = _p.panningEnabled; json.userPanningEnabled = _p.userPanningEnabled; json.pan = copy(_p.pan); json.boxSelectionEnabled = _p.boxSelectionEnabled; json.renderer = copy(options.renderer); json.hideEdgesOnViewport = options.hideEdgesOnViewport; json.textureOnViewport = options.textureOnViewport; json.wheelSensitivity = options.wheelSensitivity; json.motionBlur = options.motionBlur; json.multiClickDebounceTime = options.multiClickDebounceTime; return json; } } }); corefn.$id = corefn.getElementById; [corefn$9, corefn$8, elesfn, corefn$7, corefn$6, corefn$5, corefn$4, corefn$3, corefn$2, corefn$1, fn].forEach(function (props) { extend(corefn, props); }); /* eslint-disable no-unused-vars */ var defaults$7 = { fit: true, // whether to fit the viewport to the graph directed: false, // whether the tree is directed downwards (or edges can point in any direction if false) padding: 30, // padding on fit circle: false, // put depths in concentric circles if true, put depths top down if false grid: false, // whether to create an even grid into which the DAG is placed (circle:false only) spacingFactor: 1.75, // positive spacing factor, larger => more space between nodes (N.B. n/a if causes overlap) boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } avoidOverlap: true, // prevents node overlap, may overflow boundingBox if not enough space nodeDimensionsIncludeLabels: false, // Excludes the label when calculating node bounding boxes for the layout algorithm roots: undefined, // the roots of the trees depthSort: undefined, // a sorting function to order nodes at equal depth. e.g. function(a, b){ return a.data('weight') - b.data('weight') } animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled, animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; var deprecatedOptionDefaults = { maximal: false, // whether to shift nodes down their natural BFS depths in order to avoid upwards edges (DAGS only); setting acyclic to true sets maximal to true also acyclic: false // whether the tree is acyclic and thus a node could be shifted (due to the maximal option) multiple times without causing an infinite loop; setting to true sets maximal to true also; if you are uncertain whether a tree is acyclic, set to false to avoid potential infinite loops }; /* eslint-enable */ var getInfo = function getInfo(ele) { return ele.scratch('breadthfirst'); }; var setInfo = function setInfo(ele, obj) { return ele.scratch('breadthfirst', obj); }; function BreadthFirstLayout(options) { this.options = extend({}, defaults$7, deprecatedOptionDefaults, options); } BreadthFirstLayout.prototype.run = function () { var params = this.options; var options = params; var cy = params.cy; var eles = options.eles; var nodes = eles.nodes().filter(function (n) { return !n.isParent(); }); var graph = eles; var directed = options.directed; var maximal = options.acyclic || options.maximal || options.maximalAdjustments > 0; // maximalAdjustments for compat. w/ old code; also, setting acyclic to true sets maximal to true var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); var roots; if (elementOrCollection(options.roots)) { roots = options.roots; } else if (array(options.roots)) { var rootsArray = []; for (var i = 0; i < options.roots.length; i++) { var id = options.roots[i]; var ele = cy.getElementById(id); rootsArray.push(ele); } roots = cy.collection(rootsArray); } else if (string(options.roots)) { roots = cy.$(options.roots); } else { if (directed) { roots = nodes.roots(); } else { var components = eles.components(); roots = cy.collection(); var _loop = function _loop(_i) { var comp = components[_i]; var maxDegree = comp.maxDegree(false); var compRoots = comp.filter(function (ele) { return ele.degree(false) === maxDegree; }); roots = roots.add(compRoots); }; for (var _i = 0; _i < components.length; _i++) { _loop(_i); } } } var depths = []; var foundByBfs = {}; var addToDepth = function addToDepth(ele, d) { if (depths[d] == null) { depths[d] = []; } var i = depths[d].length; depths[d].push(ele); setInfo(ele, { index: i, depth: d }); }; var changeDepth = function changeDepth(ele, newDepth) { var _getInfo = getInfo(ele), depth = _getInfo.depth, index = _getInfo.index; depths[depth][index] = null; addToDepth(ele, newDepth); }; // find the depths of the nodes graph.bfs({ roots: roots, directed: options.directed, visit: function visit(node, edge, pNode, i, depth) { var ele = node[0]; var id = ele.id(); addToDepth(ele, depth); foundByBfs[id] = true; } }); // check for nodes not found by bfs var orphanNodes = []; for (var _i2 = 0; _i2 < nodes.length; _i2++) { var _ele = nodes[_i2]; if (foundByBfs[_ele.id()]) { continue; } else { orphanNodes.push(_ele); } } // assign the nodes a depth and index var assignDepthsAt = function assignDepthsAt(i) { var eles = depths[i]; for (var j = 0; j < eles.length; j++) { var _ele2 = eles[j]; if (_ele2 == null) { eles.splice(j, 1); j--; continue; } setInfo(_ele2, { depth: i, index: j }); } }; var assignDepths = function assignDepths() { for (var _i3 = 0; _i3 < depths.length; _i3++) { assignDepthsAt(_i3); } }; var adjustMaximally = function adjustMaximally(ele, shifted) { var eInfo = getInfo(ele); var incomers = ele.incomers().filter(function (el) { return el.isNode() && eles.has(el); }); var maxDepth = -1; var id = ele.id(); for (var k = 0; k < incomers.length; k++) { var incmr = incomers[k]; var iInfo = getInfo(incmr); maxDepth = Math.max(maxDepth, iInfo.depth); } if (eInfo.depth <= maxDepth) { if (!options.acyclic && shifted[id]) { return null; } var newDepth = maxDepth + 1; changeDepth(ele, newDepth); shifted[id] = newDepth; return true; } return false; }; // for the directed case, try to make the edges all go down (i.e. depth i => depth i + 1) if (directed && maximal) { var Q = []; var shifted = {}; var enqueue = function enqueue(n) { return Q.push(n); }; var dequeue = function dequeue() { return Q.shift(); }; nodes.forEach(function (n) { return Q.push(n); }); while (Q.length > 0) { var _ele3 = dequeue(); var didShift = adjustMaximally(_ele3, shifted); if (didShift) { _ele3.outgoers().filter(function (el) { return el.isNode() && eles.has(el); }).forEach(enqueue); } else if (didShift === null) { warn('Detected double maximal shift for node `' + _ele3.id() + '`. Bailing maximal adjustment due to cycle. Use `options.maximal: true` only on DAGs.'); break; // exit on failure } } } assignDepths(); // clear holes // find min distance we need to leave between nodes var minDistance = 0; if (options.avoidOverlap) { for (var _i4 = 0; _i4 < nodes.length; _i4++) { var n = nodes[_i4]; var nbb = n.layoutDimensions(options); var w = nbb.w; var h = nbb.h; minDistance = Math.max(minDistance, w, h); } } // get the weighted percent for an element based on its connectivity to other levels var cachedWeightedPercent = {}; var getWeightedPercent = function getWeightedPercent(ele) { if (cachedWeightedPercent[ele.id()]) { return cachedWeightedPercent[ele.id()]; } var eleDepth = getInfo(ele).depth; var neighbors = ele.neighborhood(); var percent = 0; var samples = 0; for (var _i5 = 0; _i5 < neighbors.length; _i5++) { var neighbor = neighbors[_i5]; if (neighbor.isEdge() || neighbor.isParent() || !nodes.has(neighbor)) { continue; } var bf = getInfo(neighbor); if (bf == null) { continue; } var index = bf.index; var depth = bf.depth; // unassigned neighbours shouldn't affect the ordering if (index == null || depth == null) { continue; } var nDepth = depths[depth].length; if (depth < eleDepth) { // only get influenced by elements above percent += index / nDepth; samples++; } } samples = Math.max(1, samples); percent = percent / samples; if (samples === 0) { // put lone nodes at the start percent = 0; } cachedWeightedPercent[ele.id()] = percent; return percent; }; // rearrange the indices in each depth level based on connectivity var sortFn = function sortFn(a, b) { var apct = getWeightedPercent(a); var bpct = getWeightedPercent(b); var diff = apct - bpct; if (diff === 0) { return ascending(a.id(), b.id()); // make sure sort doesn't have don't-care comparisons } else { return diff; } }; if (options.depthSort !== undefined) { sortFn = options.depthSort; } // sort each level to make connected nodes closer for (var _i6 = 0; _i6 < depths.length; _i6++) { depths[_i6].sort(sortFn); assignDepthsAt(_i6); } // assign orphan nodes to a new top-level depth var orphanDepth = []; for (var _i7 = 0; _i7 < orphanNodes.length; _i7++) { orphanDepth.push(orphanNodes[_i7]); } depths.unshift(orphanDepth); assignDepths(); var biggestDepthSize = 0; for (var _i8 = 0; _i8 < depths.length; _i8++) { biggestDepthSize = Math.max(depths[_i8].length, biggestDepthSize); } var center = { x: bb.x1 + bb.w / 2, y: bb.x1 + bb.h / 2 }; var maxDepthSize = depths.reduce(function (max, eles) { return Math.max(max, eles.length); }, 0); var getPosition = function getPosition(ele) { var _getInfo2 = getInfo(ele), depth = _getInfo2.depth, index = _getInfo2.index; var depthSize = depths[depth].length; var distanceX = Math.max(bb.w / ((options.grid ? maxDepthSize : depthSize) + 1), minDistance); var distanceY = Math.max(bb.h / (depths.length + 1), minDistance); var radiusStepSize = Math.min(bb.w / 2 / depths.length, bb.h / 2 / depths.length); radiusStepSize = Math.max(radiusStepSize, minDistance); if (!options.circle) { var epos = { x: center.x + (index + 1 - (depthSize + 1) / 2) * distanceX, y: (depth + 1) * distanceY }; return epos; } else { var radius = radiusStepSize * depth + radiusStepSize - (depths.length > 0 && depths[0].length <= 3 ? radiusStepSize / 2 : 0); var theta = 2 * Math.PI / depths[depth].length * index; if (depth === 0 && depths[0].length === 1) { radius = 1; } return { x: center.x + radius * Math.cos(theta), y: center.y + radius * Math.sin(theta) }; } }; eles.nodes().layoutPositions(this, options, getPosition); return this; // chaining }; var defaults$6 = { fit: true, // whether to fit the viewport to the graph padding: 30, // the padding on fit boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } avoidOverlap: true, // prevents node overlap, may overflow boundingBox and radius if not enough space nodeDimensionsIncludeLabels: false, // Excludes the label when calculating node bounding boxes for the layout algorithm spacingFactor: undefined, // Applies a multiplicative factor (>0) to expand or compress the overall area that the nodes take up radius: undefined, // the radius of the circle startAngle: 3 / 2 * Math.PI, // where nodes start in radians sweep: undefined, // how many radians should be between the first and last node (defaults to full circle) clockwise: true, // whether the layout should go clockwise (true) or counterclockwise/anticlockwise (false) sort: undefined, // a sorting function to order the nodes; e.g. function(a, b){ return a.data('weight') - b.data('weight') } animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function CircleLayout(options) { this.options = extend({}, defaults$6, options); } CircleLayout.prototype.run = function () { var params = this.options; var options = params; var cy = params.cy; var eles = options.eles; var clockwise = options.counterclockwise !== undefined ? !options.counterclockwise : options.clockwise; var nodes = eles.nodes().not(':parent'); if (options.sort) { nodes = nodes.sort(options.sort); } var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); var center = { x: bb.x1 + bb.w / 2, y: bb.y1 + bb.h / 2 }; var sweep = options.sweep === undefined ? 2 * Math.PI - 2 * Math.PI / nodes.length : options.sweep; var dTheta = sweep / Math.max(1, nodes.length - 1); var r; var minDistance = 0; for (var i = 0; i < nodes.length; i++) { var n = nodes[i]; var nbb = n.layoutDimensions(options); var w = nbb.w; var h = nbb.h; minDistance = Math.max(minDistance, w, h); } if (number$1(options.radius)) { r = options.radius; } else if (nodes.length <= 1) { r = 0; } else { r = Math.min(bb.h, bb.w) / 2 - minDistance; } // calculate the radius if (nodes.length > 1 && options.avoidOverlap) { // but only if more than one node (can't overlap) minDistance *= 1.75; // just to have some nice spacing var dcos = Math.cos(dTheta) - Math.cos(0); var dsin = Math.sin(dTheta) - Math.sin(0); var rMin = Math.sqrt(minDistance * minDistance / (dcos * dcos + dsin * dsin)); // s.t. no nodes overlapping r = Math.max(rMin, r); } var getPos = function getPos(ele, i) { var theta = options.startAngle + i * dTheta * (clockwise ? 1 : -1); var rx = r * Math.cos(theta); var ry = r * Math.sin(theta); var pos = { x: center.x + rx, y: center.y + ry }; return pos; }; eles.nodes().layoutPositions(this, options, getPos); return this; // chaining }; var defaults$5 = { fit: true, // whether to fit the viewport to the graph padding: 30, // the padding on fit startAngle: 3 / 2 * Math.PI, // where nodes start in radians sweep: undefined, // how many radians should be between the first and last node (defaults to full circle) clockwise: true, // whether the layout should go clockwise (true) or counterclockwise/anticlockwise (false) equidistant: false, // whether levels have an equal radial distance betwen them, may cause bounding box overflow minNodeSpacing: 10, // min spacing between outside of nodes (used for radius adjustment) boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } avoidOverlap: true, // prevents node overlap, may overflow boundingBox if not enough space nodeDimensionsIncludeLabels: false, // Excludes the label when calculating node bounding boxes for the layout algorithm height: undefined, // height of layout area (overrides container height) width: undefined, // width of layout area (overrides container width) spacingFactor: undefined, // Applies a multiplicative factor (>0) to expand or compress the overall area that the nodes take up concentric: function concentric(node) { // returns numeric value for each node, placing higher nodes in levels towards the centre return node.degree(); }, levelWidth: function levelWidth(nodes) { // the variation of concentric values in each level return nodes.maxDegree() / 4; }, animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function ConcentricLayout(options) { this.options = extend({}, defaults$5, options); } ConcentricLayout.prototype.run = function () { var params = this.options; var options = params; var clockwise = options.counterclockwise !== undefined ? !options.counterclockwise : options.clockwise; var cy = params.cy; var eles = options.eles; var nodes = eles.nodes().not(':parent'); var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); var center = { x: bb.x1 + bb.w / 2, y: bb.y1 + bb.h / 2 }; var nodeValues = []; // { node, value } var maxNodeSize = 0; for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; var value = void 0; // calculate the node value value = options.concentric(node); nodeValues.push({ value: value, node: node }); // for style mapping node._private.scratch.concentric = value; } // in case we used the `concentric` in style nodes.updateStyle(); // calculate max size now based on potentially updated mappers for (var _i = 0; _i < nodes.length; _i++) { var _node = nodes[_i]; var nbb = _node.layoutDimensions(options); maxNodeSize = Math.max(maxNodeSize, nbb.w, nbb.h); } // sort node values in descreasing order nodeValues.sort(function (a, b) { return b.value - a.value; }); var levelWidth = options.levelWidth(nodes); // put the values into levels var levels = [[]]; var currentLevel = levels[0]; for (var _i2 = 0; _i2 < nodeValues.length; _i2++) { var val = nodeValues[_i2]; if (currentLevel.length > 0) { var diff = Math.abs(currentLevel[0].value - val.value); if (diff >= levelWidth) { currentLevel = []; levels.push(currentLevel); } } currentLevel.push(val); } // create positions from levels var minDist = maxNodeSize + options.minNodeSpacing; // min dist between nodes if (!options.avoidOverlap) { // then strictly constrain to bb var firstLvlHasMulti = levels.length > 0 && levels[0].length > 1; var maxR = Math.min(bb.w, bb.h) / 2 - minDist; var rStep = maxR / (levels.length + firstLvlHasMulti ? 1 : 0); minDist = Math.min(minDist, rStep); } // find the metrics for each level var r = 0; for (var _i3 = 0; _i3 < levels.length; _i3++) { var level = levels[_i3]; var sweep = options.sweep === undefined ? 2 * Math.PI - 2 * Math.PI / level.length : options.sweep; var dTheta = level.dTheta = sweep / Math.max(1, level.length - 1); // calculate the radius if (level.length > 1 && options.avoidOverlap) { // but only if more than one node (can't overlap) var dcos = Math.cos(dTheta) - Math.cos(0); var dsin = Math.sin(dTheta) - Math.sin(0); var rMin = Math.sqrt(minDist * minDist / (dcos * dcos + dsin * dsin)); // s.t. no nodes overlapping r = Math.max(rMin, r); } level.r = r; r += minDist; } if (options.equidistant) { var rDeltaMax = 0; var _r = 0; for (var _i4 = 0; _i4 < levels.length; _i4++) { var _level = levels[_i4]; var rDelta = _level.r - _r; rDeltaMax = Math.max(rDeltaMax, rDelta); } _r = 0; for (var _i5 = 0; _i5 < levels.length; _i5++) { var _level2 = levels[_i5]; if (_i5 === 0) { _r = _level2.r; } _level2.r = _r; _r += rDeltaMax; } } // calculate the node positions var pos = {}; // id => position for (var _i6 = 0; _i6 < levels.length; _i6++) { var _level3 = levels[_i6]; var _dTheta = _level3.dTheta; var _r2 = _level3.r; for (var j = 0; j < _level3.length; j++) { var _val = _level3[j]; var theta = options.startAngle + (clockwise ? 1 : -1) * _dTheta * j; var p = { x: center.x + _r2 * Math.cos(theta), y: center.y + _r2 * Math.sin(theta) }; pos[_val.node.id()] = p; } } // position the nodes eles.nodes().layoutPositions(this, options, function (ele) { var id = ele.id(); return pos[id]; }); return this; // chaining }; /* The CoSE layout was written by Gerardo Huck. https://www.linkedin.com/in/gerardohuck/ Based on the following article: http://dl.acm.org/citation.cfm?id=1498047 Modifications tracked on Github. */ var DEBUG; /** * @brief : default layout options */ var defaults$4 = { // Called on `layoutready` ready: function ready() {}, // Called on `layoutstop` stop: function stop() {}, // Whether to animate while running the layout // true : Animate continuously as the layout is running // false : Just show the end result // 'end' : Animate with the end result, from the initial positions to the end positions animate: true, // Easing of the animation for animate:'end' animationEasing: undefined, // The duration of the animation for animate:'end' animationDuration: undefined, // A function that determines whether the node should be animated // All nodes animated by default on animate enabled // Non-animated nodes are positioned immediately when the layout starts animateFilter: function animateFilter(node, i) { return true; }, // The layout animates only after this many milliseconds for animate:true // (prevents flashing on fast runs) animationThreshold: 250, // Number of iterations between consecutive screen positions update refresh: 20, // Whether to fit the network view after when done fit: true, // Padding on fit padding: 30, // Constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } boundingBox: undefined, // Excludes the label when calculating node bounding boxes for the layout algorithm nodeDimensionsIncludeLabels: false, // Randomize the initial positions of the nodes (true) or use existing positions (false) randomize: false, // Extra spacing between components in non-compound graphs componentSpacing: 40, // Node repulsion (non overlapping) multiplier nodeRepulsion: function nodeRepulsion(node) { return 2048; }, // Node repulsion (overlapping) multiplier nodeOverlap: 4, // Ideal edge (non nested) length idealEdgeLength: function idealEdgeLength(edge) { return 32; }, // Divisor to compute edge forces edgeElasticity: function edgeElasticity(edge) { return 32; }, // Nesting factor (multiplier) to compute ideal edge length for nested edges nestingFactor: 1.2, // Gravity force (constant) gravity: 1, // Maximum number of iterations to perform numIter: 1000, // Initial temperature (maximum node displacement) initialTemp: 1000, // Cooling factor (how the temperature is reduced between consecutive iterations coolingFactor: 0.99, // Lower temperature threshold (below this point the layout will end) minTemp: 1.0 }; /** * @brief : constructor * @arg options : object containing layout options */ function CoseLayout(options) { this.options = extend({}, defaults$4, options); this.options.layout = this; // Exclude any edge that has a source or target node that is not in the set of passed-in nodes var nodes = this.options.eles.nodes(); var edges = this.options.eles.edges(); var notEdges = edges.filter(function (e) { var sourceId = e.source().data('id'); var targetId = e.target().data('id'); var hasSource = nodes.some(function (n) { return n.data('id') === sourceId; }); var hasTarget = nodes.some(function (n) { return n.data('id') === targetId; }); return !hasSource || !hasTarget; }); this.options.eles = this.options.eles.not(notEdges); } /** * @brief : runs the layout */ CoseLayout.prototype.run = function () { var options = this.options; var cy = options.cy; var layout = this; layout.stopped = false; if (options.animate === true || options.animate === false) { layout.emit({ type: 'layoutstart', layout: layout }); } // Set DEBUG - Global variable if (true === options.debug) { DEBUG = true; } else { DEBUG = false; } // Initialize layout info var layoutInfo = createLayoutInfo(cy, layout, options); // Show LayoutInfo contents if debugging if (DEBUG) { printLayoutInfo(layoutInfo); } // If required, randomize node positions if (options.randomize) { randomizePositions(layoutInfo); } var startTime = performanceNow(); var refresh = function refresh() { refreshPositions(layoutInfo, cy, options); // Fit the graph if necessary if (true === options.fit) { cy.fit(options.padding); } }; var mainLoop = function mainLoop(i) { if (layout.stopped || i >= options.numIter) { // logDebug("Layout manually stopped. Stopping computation in step " + i); return false; } // Do one step in the phisical simulation step(layoutInfo, options); // Update temperature layoutInfo.temperature = layoutInfo.temperature * options.coolingFactor; // logDebug("New temperature: " + layoutInfo.temperature); if (layoutInfo.temperature < options.minTemp) { // logDebug("Temperature drop below minimum threshold. Stopping computation in step " + i); return false; } return true; }; var done = function done() { if (options.animate === true || options.animate === false) { refresh(); // Layout has finished layout.one('layoutstop', options.stop); layout.emit({ type: 'layoutstop', layout: layout }); } else { var nodes = options.eles.nodes(); var getScaledPos = getScaleInBoundsFn(layoutInfo, options, nodes); nodes.layoutPositions(layout, options, getScaledPos); } }; var i = 0; var loopRet = true; if (options.animate === true) { var frame = function frame() { var f = 0; while (loopRet && f < options.refresh) { loopRet = mainLoop(i); i++; f++; } if (!loopRet) { // it's done separateComponents(layoutInfo, options); done(); } else { var now = performanceNow(); if (now - startTime >= options.animationThreshold) { refresh(); } requestAnimationFrame(frame); } }; frame(); } else { while (loopRet) { loopRet = mainLoop(i); i++; } separateComponents(layoutInfo, options); done(); } return this; // chaining }; /** * @brief : called on continuous layouts to stop them before they finish */ CoseLayout.prototype.stop = function () { this.stopped = true; if (this.thread) { this.thread.stop(); } this.emit('layoutstop'); return this; // chaining }; CoseLayout.prototype.destroy = function () { if (this.thread) { this.thread.stop(); } return this; // chaining }; /** * @brief : Creates an object which is contains all the data * used in the layout process * @arg cy : cytoscape.js object * @return : layoutInfo object initialized */ var createLayoutInfo = function createLayoutInfo(cy, layout, options) { // Shortcut var edges = options.eles.edges(); var nodes = options.eles.nodes(); var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); var layoutInfo = { isCompound: cy.hasCompoundNodes(), layoutNodes: [], idToIndex: {}, nodeSize: nodes.size(), graphSet: [], indexToGraph: [], layoutEdges: [], edgeSize: edges.size(), temperature: options.initialTemp, clientWidth: bb.w, clientHeight: bb.h, boundingBox: bb }; var components = options.eles.components(); var id2cmptId = {}; for (var i = 0; i < components.length; i++) { var component = components[i]; for (var j = 0; j < component.length; j++) { var node = component[j]; id2cmptId[node.id()] = i; } } // Iterate over all nodes, creating layout nodes for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = nodes[i]; var nbb = n.layoutDimensions(options); var tempNode = {}; tempNode.isLocked = n.locked(); tempNode.id = n.data('id'); tempNode.parentId = n.data('parent'); tempNode.cmptId = id2cmptId[n.id()]; tempNode.children = []; tempNode.positionX = n.position('x'); tempNode.positionY = n.position('y'); tempNode.offsetX = 0; tempNode.offsetY = 0; tempNode.height = nbb.w; tempNode.width = nbb.h; tempNode.maxX = tempNode.positionX + tempNode.width / 2; tempNode.minX = tempNode.positionX - tempNode.width / 2; tempNode.maxY = tempNode.positionY + tempNode.height / 2; tempNode.minY = tempNode.positionY - tempNode.height / 2; tempNode.padLeft = parseFloat(n.style('padding')); tempNode.padRight = parseFloat(n.style('padding')); tempNode.padTop = parseFloat(n.style('padding')); tempNode.padBottom = parseFloat(n.style('padding')); // forces tempNode.nodeRepulsion = fn$6(options.nodeRepulsion) ? options.nodeRepulsion(n) : options.nodeRepulsion; // Add new node layoutInfo.layoutNodes.push(tempNode); // Add entry to id-index map layoutInfo.idToIndex[tempNode.id] = i; } // Inline implementation of a queue, used for traversing the graph in BFS order var queue = []; var start = 0; // Points to the start the queue var end = -1; // Points to the end of the queue var tempGraph = []; // Second pass to add child information and // initialize queue for hierarchical traversal for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = layoutInfo.layoutNodes[i]; var p_id = n.parentId; // Check if node n has a parent node if (null != p_id) { // Add node Id to parent's list of children layoutInfo.layoutNodes[layoutInfo.idToIndex[p_id]].children.push(n.id); } else { // If a node doesn't have a parent, then it's in the root graph queue[++end] = n.id; tempGraph.push(n.id); } } // Add root graph to graphSet layoutInfo.graphSet.push(tempGraph); // Traverse the graph, level by level, while (start <= end) { // Get the node to visit and remove it from queue var node_id = queue[start++]; var node_ix = layoutInfo.idToIndex[node_id]; var node = layoutInfo.layoutNodes[node_ix]; var children = node.children; if (children.length > 0) { // Add children nodes as a new graph to graph set layoutInfo.graphSet.push(children); // Add children to que queue to be visited for (var i = 0; i < children.length; i++) { queue[++end] = children[i]; } } } // Create indexToGraph map for (var i = 0; i < layoutInfo.graphSet.length; i++) { var graph = layoutInfo.graphSet[i]; for (var j = 0; j < graph.length; j++) { var index = layoutInfo.idToIndex[graph[j]]; layoutInfo.indexToGraph[index] = i; } } // Iterate over all edges, creating Layout Edges for (var i = 0; i < layoutInfo.edgeSize; i++) { var e = edges[i]; var tempEdge = {}; tempEdge.id = e.data('id'); tempEdge.sourceId = e.data('source'); tempEdge.targetId = e.data('target'); // Compute ideal length var idealLength = fn$6(options.idealEdgeLength) ? options.idealEdgeLength(e) : options.idealEdgeLength; var elasticity = fn$6(options.edgeElasticity) ? options.edgeElasticity(e) : options.edgeElasticity; // Check if it's an inter graph edge var sourceIx = layoutInfo.idToIndex[tempEdge.sourceId]; var targetIx = layoutInfo.idToIndex[tempEdge.targetId]; var sourceGraph = layoutInfo.indexToGraph[sourceIx]; var targetGraph = layoutInfo.indexToGraph[targetIx]; if (sourceGraph != targetGraph) { // Find lowest common graph ancestor var lca = findLCA(tempEdge.sourceId, tempEdge.targetId, layoutInfo); // Compute sum of node depths, relative to lca graph var lcaGraph = layoutInfo.graphSet[lca]; var depth = 0; // Source depth var tempNode = layoutInfo.layoutNodes[sourceIx]; while (-1 === lcaGraph.indexOf(tempNode.id)) { tempNode = layoutInfo.layoutNodes[layoutInfo.idToIndex[tempNode.parentId]]; depth++; } // Target depth tempNode = layoutInfo.layoutNodes[targetIx]; while (-1 === lcaGraph.indexOf(tempNode.id)) { tempNode = layoutInfo.layoutNodes[layoutInfo.idToIndex[tempNode.parentId]]; depth++; } // logDebug('LCA of nodes ' + tempEdge.sourceId + ' and ' + tempEdge.targetId + // ". Index: " + lca + " Contents: " + lcaGraph.toString() + // ". Depth: " + depth); // Update idealLength idealLength *= depth * options.nestingFactor; } tempEdge.idealLength = idealLength; tempEdge.elasticity = elasticity; layoutInfo.layoutEdges.push(tempEdge); } // Finally, return layoutInfo object return layoutInfo; }; /** * @brief : This function finds the index of the lowest common * graph ancestor between 2 nodes in the subtree * (from the graph hierarchy induced tree) whose * root is graphIx * * @arg node1: node1's ID * @arg node2: node2's ID * @arg layoutInfo: layoutInfo object * */ var findLCA = function findLCA(node1, node2, layoutInfo) { // Find their common ancester, starting from the root graph var res = findLCA_aux(node1, node2, 0, layoutInfo); if (2 > res.count) { // If aux function couldn't find the common ancester, // then it is the root graph return 0; } else { return res.graph; } }; /** * @brief : Auxiliary function used for LCA computation * * @arg node1 : node1's ID * @arg node2 : node2's ID * @arg graphIx : subgraph index * @arg layoutInfo : layoutInfo object * * @return : object of the form {count: X, graph: Y}, where: * X is the number of ancestors (max: 2) found in * graphIx (and it's subgraphs), * Y is the graph index of the lowest graph containing * all X nodes */ var findLCA_aux = function findLCA_aux(node1, node2, graphIx, layoutInfo) { var graph = layoutInfo.graphSet[graphIx]; // If both nodes belongs to graphIx if (-1 < graph.indexOf(node1) && -1 < graph.indexOf(node2)) { return { count: 2, graph: graphIx }; } // Make recursive calls for all subgraphs var c = 0; for (var i = 0; i < graph.length; i++) { var nodeId = graph[i]; var nodeIx = layoutInfo.idToIndex[nodeId]; var children = layoutInfo.layoutNodes[nodeIx].children; // If the node has no child, skip it if (0 === children.length) { continue; } var childGraphIx = layoutInfo.indexToGraph[layoutInfo.idToIndex[children[0]]]; var result = findLCA_aux(node1, node2, childGraphIx, layoutInfo); if (0 === result.count) { // Neither node1 nor node2 are present in this subgraph continue; } else if (1 === result.count) { // One of (node1, node2) is present in this subgraph c++; if (2 === c) { // We've already found both nodes, no need to keep searching break; } } else { // Both nodes are present in this subgraph return result; } } return { count: c, graph: graphIx }; }; /** * @brief: printsLayoutInfo into js console * Only used for debbuging */ var printLayoutInfo; /** * @brief : Randomizes the position of all nodes */ var randomizePositions = function randomizePositions(layoutInfo, cy) { var width = layoutInfo.clientWidth; var height = layoutInfo.clientHeight; for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = layoutInfo.layoutNodes[i]; // No need to randomize compound nodes or locked nodes if (0 === n.children.length && !n.isLocked) { n.positionX = Math.random() * width; n.positionY = Math.random() * height; } } }; var getScaleInBoundsFn = function getScaleInBoundsFn(layoutInfo, options, nodes) { var bb = layoutInfo.boundingBox; var coseBB = { x1: Infinity, x2: -Infinity, y1: Infinity, y2: -Infinity }; if (options.boundingBox) { nodes.forEach(function (node) { var lnode = layoutInfo.layoutNodes[layoutInfo.idToIndex[node.data('id')]]; coseBB.x1 = Math.min(coseBB.x1, lnode.positionX); coseBB.x2 = Math.max(coseBB.x2, lnode.positionX); coseBB.y1 = Math.min(coseBB.y1, lnode.positionY); coseBB.y2 = Math.max(coseBB.y2, lnode.positionY); }); coseBB.w = coseBB.x2 - coseBB.x1; coseBB.h = coseBB.y2 - coseBB.y1; } return function (ele, i) { var lnode = layoutInfo.layoutNodes[layoutInfo.idToIndex[ele.data('id')]]; if (options.boundingBox) { // then add extra bounding box constraint var pctX = (lnode.positionX - coseBB.x1) / coseBB.w; var pctY = (lnode.positionY - coseBB.y1) / coseBB.h; return { x: bb.x1 + pctX * bb.w, y: bb.y1 + pctY * bb.h }; } else { return { x: lnode.positionX, y: lnode.positionY }; } }; }; /** * @brief : Updates the positions of nodes in the network * @arg layoutInfo : LayoutInfo object * @arg cy : Cytoscape object * @arg options : Layout options */ var refreshPositions = function refreshPositions(layoutInfo, cy, options) { // var s = 'Refreshing positions'; // logDebug(s); var layout = options.layout; var nodes = options.eles.nodes(); var getScaledPos = getScaleInBoundsFn(layoutInfo, options, nodes); nodes.positions(getScaledPos); // Trigger layoutReady only on first call if (true !== layoutInfo.ready) { // s = 'Triggering layoutready'; // logDebug(s); layoutInfo.ready = true; layout.one('layoutready', options.ready); layout.emit({ type: 'layoutready', layout: this }); } }; /** * @brief : Logs a debug message in JS console, if DEBUG is ON */ // var logDebug = function(text) { // if (DEBUG) { // console.debug(text); // } // }; /** * @brief : Performs one iteration of the physical simulation * @arg layoutInfo : LayoutInfo object already initialized * @arg cy : Cytoscape object * @arg options : Layout options */ var step = function step(layoutInfo, options, _step) { // var s = "\n\n###############################"; // s += "\nSTEP: " + step; // s += "\n###############################\n"; // logDebug(s); // Calculate node repulsions calculateNodeForces(layoutInfo, options); // Calculate edge forces calculateEdgeForces(layoutInfo); // Calculate gravity forces calculateGravityForces(layoutInfo, options); // Propagate forces from parent to child propagateForces(layoutInfo); // Update positions based on calculated forces updatePositions(layoutInfo); }; /** * @brief : Computes the node repulsion forces */ var calculateNodeForces = function calculateNodeForces(layoutInfo, options) { // Go through each of the graphs in graphSet // Nodes only repel each other if they belong to the same graph // var s = 'calculateNodeForces'; // logDebug(s); for (var i = 0; i < layoutInfo.graphSet.length; i++) { var graph = layoutInfo.graphSet[i]; var numNodes = graph.length; // s = "Set: " + graph.toString(); // logDebug(s); // Now get all the pairs of nodes // Only get each pair once, (A, B) = (B, A) for (var j = 0; j < numNodes; j++) { var node1 = layoutInfo.layoutNodes[layoutInfo.idToIndex[graph[j]]]; for (var k = j + 1; k < numNodes; k++) { var node2 = layoutInfo.layoutNodes[layoutInfo.idToIndex[graph[k]]]; nodeRepulsion(node1, node2, layoutInfo, options); } } } }; var randomDistance = function randomDistance(max) { return -max + 2 * max * Math.random(); }; /** * @brief : Compute the node repulsion forces between a pair of nodes */ var nodeRepulsion = function nodeRepulsion(node1, node2, layoutInfo, options) { // var s = "Node repulsion. Node1: " + node1.id + " Node2: " + node2.id; var cmptId1 = node1.cmptId; var cmptId2 = node2.cmptId; if (cmptId1 !== cmptId2 && !layoutInfo.isCompound) { return; } // Get direction of line connecting both node centers var directionX = node2.positionX - node1.positionX; var directionY = node2.positionY - node1.positionY; var maxRandDist = 1; // s += "\ndirectionX: " + directionX + ", directionY: " + directionY; // If both centers are the same, apply a random force if (0 === directionX && 0 === directionY) { directionX = randomDistance(maxRandDist); directionY = randomDistance(maxRandDist); } var overlap = nodesOverlap(node1, node2, directionX, directionY); if (overlap > 0) { // s += "\nNodes DO overlap."; // s += "\nOverlap: " + overlap; // If nodes overlap, repulsion force is proportional // to the overlap var force = options.nodeOverlap * overlap; // Compute the module and components of the force vector var distance = Math.sqrt(directionX * directionX + directionY * directionY); // s += "\nDistance: " + distance; var forceX = force * directionX / distance; var forceY = force * directionY / distance; } else { // s += "\nNodes do NOT overlap."; // If there's no overlap, force is inversely proportional // to squared distance // Get clipping points for both nodes var point1 = findClippingPoint(node1, directionX, directionY); var point2 = findClippingPoint(node2, -1 * directionX, -1 * directionY); // Use clipping points to compute distance var distanceX = point2.x - point1.x; var distanceY = point2.y - point1.y; var distanceSqr = distanceX * distanceX + distanceY * distanceY; var distance = Math.sqrt(distanceSqr); // s += "\nDistance: " + distance; // Compute the module and components of the force vector var force = (node1.nodeRepulsion + node2.nodeRepulsion) / distanceSqr; var forceX = force * distanceX / distance; var forceY = force * distanceY / distance; } // Apply force if (!node1.isLocked) { node1.offsetX -= forceX; node1.offsetY -= forceY; } if (!node2.isLocked) { node2.offsetX += forceX; node2.offsetY += forceY; } // s += "\nForceX: " + forceX + " ForceY: " + forceY; // logDebug(s); return; }; /** * @brief : Determines whether two nodes overlap or not * @return : Amount of overlapping (0 => no overlap) */ var nodesOverlap = function nodesOverlap(node1, node2, dX, dY) { if (dX > 0) { var overlapX = node1.maxX - node2.minX; } else { var overlapX = node2.maxX - node1.minX; } if (dY > 0) { var overlapY = node1.maxY - node2.minY; } else { var overlapY = node2.maxY - node1.minY; } if (overlapX >= 0 && overlapY >= 0) { return Math.sqrt(overlapX * overlapX + overlapY * overlapY); } else { return 0; } }; /** * @brief : Finds the point in which an edge (direction dX, dY) intersects * the rectangular bounding box of it's source/target node */ var findClippingPoint = function findClippingPoint(node, dX, dY) { // Shorcuts var X = node.positionX; var Y = node.positionY; var H = node.height || 1; var W = node.width || 1; var dirSlope = dY / dX; var nodeSlope = H / W; // var s = 'Computing clipping point of node ' + node.id + // " . Height: " + H + ", Width: " + W + // "\nDirection " + dX + ", " + dY; // // Compute intersection var res = {}; // Case: Vertical direction (up) if (0 === dX && 0 < dY) { res.x = X; // s += "\nUp direction"; res.y = Y + H / 2; return res; } // Case: Vertical direction (down) if (0 === dX && 0 > dY) { res.x = X; res.y = Y + H / 2; // s += "\nDown direction"; return res; } // Case: Intersects the right border if (0 < dX && -1 * nodeSlope <= dirSlope && dirSlope <= nodeSlope) { res.x = X + W / 2; res.y = Y + W * dY / 2 / dX; // s += "\nRightborder"; return res; } // Case: Intersects the left border if (0 > dX && -1 * nodeSlope <= dirSlope && dirSlope <= nodeSlope) { res.x = X - W / 2; res.y = Y - W * dY / 2 / dX; // s += "\nLeftborder"; return res; } // Case: Intersects the top border if (0 < dY && (dirSlope <= -1 * nodeSlope || dirSlope >= nodeSlope)) { res.x = X + H * dX / 2 / dY; res.y = Y + H / 2; // s += "\nTop border"; return res; } // Case: Intersects the bottom border if (0 > dY && (dirSlope <= -1 * nodeSlope || dirSlope >= nodeSlope)) { res.x = X - H * dX / 2 / dY; res.y = Y - H / 2; // s += "\nBottom border"; return res; } // s += "\nClipping point found at " + res.x + ", " + res.y; // logDebug(s); return res; }; /** * @brief : Calculates all edge forces */ var calculateEdgeForces = function calculateEdgeForces(layoutInfo, options) { // Iterate over all edges for (var i = 0; i < layoutInfo.edgeSize; i++) { // Get edge, source & target nodes var edge = layoutInfo.layoutEdges[i]; var sourceIx = layoutInfo.idToIndex[edge.sourceId]; var source = layoutInfo.layoutNodes[sourceIx]; var targetIx = layoutInfo.idToIndex[edge.targetId]; var target = layoutInfo.layoutNodes[targetIx]; // Get direction of line connecting both node centers var directionX = target.positionX - source.positionX; var directionY = target.positionY - source.positionY; // If both centers are the same, do nothing. // A random force has already been applied as node repulsion if (0 === directionX && 0 === directionY) { continue; } // Get clipping points for both nodes var point1 = findClippingPoint(source, directionX, directionY); var point2 = findClippingPoint(target, -1 * directionX, -1 * directionY); var lx = point2.x - point1.x; var ly = point2.y - point1.y; var l = Math.sqrt(lx * lx + ly * ly); var force = Math.pow(edge.idealLength - l, 2) / edge.elasticity; if (0 !== l) { var forceX = force * lx / l; var forceY = force * ly / l; } else { var forceX = 0; var forceY = 0; } // Add this force to target and source nodes if (!source.isLocked) { source.offsetX += forceX; source.offsetY += forceY; } if (!target.isLocked) { target.offsetX -= forceX; target.offsetY -= forceY; } // var s = 'Edge force between nodes ' + source.id + ' and ' + target.id; // s += "\nDistance: " + l + " Force: (" + forceX + ", " + forceY + ")"; // logDebug(s); } }; /** * @brief : Computes gravity forces for all nodes */ var calculateGravityForces = function calculateGravityForces(layoutInfo, options) { if (options.gravity === 0) { return; } var distThreshold = 1; // var s = 'calculateGravityForces'; // logDebug(s); for (var i = 0; i < layoutInfo.graphSet.length; i++) { var graph = layoutInfo.graphSet[i]; var numNodes = graph.length; // s = "Set: " + graph.toString(); // logDebug(s); // Compute graph center if (0 === i) { var centerX = layoutInfo.clientHeight / 2; var centerY = layoutInfo.clientWidth / 2; } else { // Get Parent node for this graph, and use its position as center var temp = layoutInfo.layoutNodes[layoutInfo.idToIndex[graph[0]]]; var parent = layoutInfo.layoutNodes[layoutInfo.idToIndex[temp.parentId]]; var centerX = parent.positionX; var centerY = parent.positionY; } // s = "Center found at: " + centerX + ", " + centerY; // logDebug(s); // Apply force to all nodes in graph for (var j = 0; j < numNodes; j++) { var node = layoutInfo.layoutNodes[layoutInfo.idToIndex[graph[j]]]; // s = "Node: " + node.id; if (node.isLocked) { continue; } var dx = centerX - node.positionX; var dy = centerY - node.positionY; var d = Math.sqrt(dx * dx + dy * dy); if (d > distThreshold) { var fx = options.gravity * dx / d; var fy = options.gravity * dy / d; node.offsetX += fx; node.offsetY += fy; // s += ": Applied force: " + fx + ", " + fy; } // logDebug(s); } } }; /** * @brief : This function propagates the existing offsets from * parent nodes to its descendents. * @arg layoutInfo : layoutInfo Object * @arg cy : cytoscape Object * @arg options : Layout options */ var propagateForces = function propagateForces(layoutInfo, options) { // Inline implementation of a queue, used for traversing the graph in BFS order var queue = []; var start = 0; // Points to the start the queue var end = -1; // Points to the end of the queue // logDebug('propagateForces'); // Start by visiting the nodes in the root graph queue.push.apply(queue, layoutInfo.graphSet[0]); end += layoutInfo.graphSet[0].length; // Traverse the graph, level by level, while (start <= end) { // Get the node to visit and remove it from queue var nodeId = queue[start++]; var nodeIndex = layoutInfo.idToIndex[nodeId]; var node = layoutInfo.layoutNodes[nodeIndex]; var children = node.children; // We only need to process the node if it's compound if (0 < children.length && !node.isLocked) { var offX = node.offsetX; var offY = node.offsetY; // var s = "Propagating offset from parent node : " + node.id + // ". OffsetX: " + offX + ". OffsetY: " + offY; // s += "\n Children: " + children.toString(); // logDebug(s); for (var i = 0; i < children.length; i++) { var childNode = layoutInfo.layoutNodes[layoutInfo.idToIndex[children[i]]]; // Propagate offset childNode.offsetX += offX; childNode.offsetY += offY; // Add children to queue to be visited queue[++end] = children[i]; } // Reset parent offsets node.offsetX = 0; node.offsetY = 0; } } }; /** * @brief : Updates the layout model positions, based on * the accumulated forces */ var updatePositions = function updatePositions(layoutInfo, options) { // var s = 'Updating positions'; // logDebug(s); // Reset boundaries for compound nodes for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = layoutInfo.layoutNodes[i]; if (0 < n.children.length) { // logDebug("Resetting boundaries of compound node: " + n.id); n.maxX = undefined; n.minX = undefined; n.maxY = undefined; n.minY = undefined; } } for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = layoutInfo.layoutNodes[i]; if (0 < n.children.length || n.isLocked) { // No need to set compound or locked node position // logDebug("Skipping position update of node: " + n.id); continue; } // s = "Node: " + n.id + " Previous position: (" + // n.positionX + ", " + n.positionY + ")."; // Limit displacement in order to improve stability var tempForce = limitForce(n.offsetX, n.offsetY, layoutInfo.temperature); n.positionX += tempForce.x; n.positionY += tempForce.y; n.offsetX = 0; n.offsetY = 0; n.minX = n.positionX - n.width; n.maxX = n.positionX + n.width; n.minY = n.positionY - n.height; n.maxY = n.positionY + n.height; // s += " New Position: (" + n.positionX + ", " + n.positionY + ")."; // logDebug(s); // Update ancestry boudaries updateAncestryBoundaries(n, layoutInfo); } // Update size, position of compund nodes for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = layoutInfo.layoutNodes[i]; if (0 < n.children.length && !n.isLocked) { n.positionX = (n.maxX + n.minX) / 2; n.positionY = (n.maxY + n.minY) / 2; n.width = n.maxX - n.minX; n.height = n.maxY - n.minY; // s = "Updating position, size of compound node " + n.id; // s += "\nPositionX: " + n.positionX + ", PositionY: " + n.positionY; // s += "\nWidth: " + n.width + ", Height: " + n.height; // logDebug(s); } } }; /** * @brief : Limits a force (forceX, forceY) to be not * greater (in modulo) than max. 8 Preserves force direction. */ var limitForce = function limitForce(forceX, forceY, max) { // var s = "Limiting force: (" + forceX + ", " + forceY + "). Max: " + max; var force = Math.sqrt(forceX * forceX + forceY * forceY); if (force > max) { var res = { x: max * forceX / force, y: max * forceY / force }; } else { var res = { x: forceX, y: forceY }; } // s += ".\nResult: (" + res.x + ", " + res.y + ")"; // logDebug(s); return res; }; /** * @brief : Function used for keeping track of compound node * sizes, since they should bound all their subnodes. */ var updateAncestryBoundaries = function updateAncestryBoundaries(node, layoutInfo) { // var s = "Propagating new position/size of node " + node.id; var parentId = node.parentId; if (null == parentId) { // If there's no parent, we are done // s += ". No parent node."; // logDebug(s); return; } // Get Parent Node var p = layoutInfo.layoutNodes[layoutInfo.idToIndex[parentId]]; var flag = false; // MaxX if (null == p.maxX || node.maxX + p.padRight > p.maxX) { p.maxX = node.maxX + p.padRight; flag = true; // s += "\nNew maxX for parent node " + p.id + ": " + p.maxX; } // MinX if (null == p.minX || node.minX - p.padLeft < p.minX) { p.minX = node.minX - p.padLeft; flag = true; // s += "\nNew minX for parent node " + p.id + ": " + p.minX; } // MaxY if (null == p.maxY || node.maxY + p.padBottom > p.maxY) { p.maxY = node.maxY + p.padBottom; flag = true; // s += "\nNew maxY for parent node " + p.id + ": " + p.maxY; } // MinY if (null == p.minY || node.minY - p.padTop < p.minY) { p.minY = node.minY - p.padTop; flag = true; // s += "\nNew minY for parent node " + p.id + ": " + p.minY; } // If updated boundaries, propagate changes upward if (flag) { // logDebug(s); return updateAncestryBoundaries(p, layoutInfo); } // s += ". No changes in boundaries/position of parent node " + p.id; // logDebug(s); return; }; var separateComponents = function separateComponents(layoutInfo, options) { var nodes = layoutInfo.layoutNodes; var components = []; for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; var cid = node.cmptId; var component = components[cid] = components[cid] || []; component.push(node); } var totalA = 0; for (var i = 0; i < components.length; i++) { var c = components[i]; if (!c) { continue; } c.x1 = Infinity; c.x2 = -Infinity; c.y1 = Infinity; c.y2 = -Infinity; for (var j = 0; j < c.length; j++) { var n = c[j]; c.x1 = Math.min(c.x1, n.positionX - n.width / 2); c.x2 = Math.max(c.x2, n.positionX + n.width / 2); c.y1 = Math.min(c.y1, n.positionY - n.height / 2); c.y2 = Math.max(c.y2, n.positionY + n.height / 2); } c.w = c.x2 - c.x1; c.h = c.y2 - c.y1; totalA += c.w * c.h; } components.sort(function (c1, c2) { return c2.w * c2.h - c1.w * c1.h; }); var x = 0; var y = 0; var usedW = 0; var rowH = 0; var maxRowW = Math.sqrt(totalA) * layoutInfo.clientWidth / layoutInfo.clientHeight; for (var i = 0; i < components.length; i++) { var c = components[i]; if (!c) { continue; } for (var j = 0; j < c.length; j++) { var n = c[j]; if (!n.isLocked) { n.positionX += x - c.x1; n.positionY += y - c.y1; } } x += c.w + options.componentSpacing; usedW += c.w + options.componentSpacing; rowH = Math.max(rowH, c.h); if (usedW > maxRowW) { y += rowH + options.componentSpacing; x = 0; usedW = 0; rowH = 0; } } }; var defaults$3 = { fit: true, // whether to fit the viewport to the graph padding: 30, // padding used on fit boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } avoidOverlap: true, // prevents node overlap, may overflow boundingBox if not enough space avoidOverlapPadding: 10, // extra spacing around nodes when avoidOverlap: true nodeDimensionsIncludeLabels: false, // Excludes the label when calculating node bounding boxes for the layout algorithm spacingFactor: undefined, // Applies a multiplicative factor (>0) to expand or compress the overall area that the nodes take up condense: false, // uses all available space on false, uses minimal space on true rows: undefined, // force num of rows in the grid cols: undefined, // force num of columns in the grid position: function position(node) {}, // returns { row, col } for element sort: undefined, // a sorting function to order the nodes; e.g. function(a, b){ return a.data('weight') - b.data('weight') } animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function GridLayout(options) { this.options = extend({}, defaults$3, options); } GridLayout.prototype.run = function () { var params = this.options; var options = params; var cy = params.cy; var eles = options.eles; var nodes = eles.nodes().not(':parent'); if (options.sort) { nodes = nodes.sort(options.sort); } var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); if (bb.h === 0 || bb.w === 0) { eles.nodes().layoutPositions(this, options, function (ele) { return { x: bb.x1, y: bb.y1 }; }); } else { // width/height * splits^2 = cells where splits is number of times to split width var cells = nodes.size(); var splits = Math.sqrt(cells * bb.h / bb.w); var rows = Math.round(splits); var cols = Math.round(bb.w / bb.h * splits); var small = function small(val) { if (val == null) { return Math.min(rows, cols); } else { var min = Math.min(rows, cols); if (min == rows) { rows = val; } else { cols = val; } } }; var large = function large(val) { if (val == null) { return Math.max(rows, cols); } else { var max = Math.max(rows, cols); if (max == rows) { rows = val; } else { cols = val; } } }; var oRows = options.rows; var oCols = options.cols != null ? options.cols : options.columns; // if rows or columns were set in options, use those values if (oRows != null && oCols != null) { rows = oRows; cols = oCols; } else if (oRows != null && oCols == null) { rows = oRows; cols = Math.ceil(cells / rows); } else if (oRows == null && oCols != null) { cols = oCols; rows = Math.ceil(cells / cols); } // otherwise use the automatic values and adjust accordingly // if rounding was up, see if we can reduce rows or columns else if (cols * rows > cells) { var sm = small(); var lg = large(); // reducing the small side takes away the most cells, so try it first if ((sm - 1) * lg >= cells) { small(sm - 1); } else if ((lg - 1) * sm >= cells) { large(lg - 1); } } else { // if rounding was too low, add rows or columns while (cols * rows < cells) { var _sm = small(); var _lg = large(); // try to add to larger side first (adds less in multiplication) if ((_lg + 1) * _sm >= cells) { large(_lg + 1); } else { small(_sm + 1); } } } var cellWidth = bb.w / cols; var cellHeight = bb.h / rows; if (options.condense) { cellWidth = 0; cellHeight = 0; } if (options.avoidOverlap) { for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; var pos = node._private.position; if (pos.x == null || pos.y == null) { // for bb pos.x = 0; pos.y = 0; } var nbb = node.layoutDimensions(options); var p = options.avoidOverlapPadding; var w = nbb.w + p; var h = nbb.h + p; cellWidth = Math.max(cellWidth, w); cellHeight = Math.max(cellHeight, h); } } var cellUsed = {}; // e.g. 'c-0-2' => true var used = function used(row, col) { return cellUsed['c-' + row + '-' + col] ? true : false; }; var use = function use(row, col) { cellUsed['c-' + row + '-' + col] = true; }; // to keep track of current cell position var row = 0; var col = 0; var moveToNextCell = function moveToNextCell() { col++; if (col >= cols) { col = 0; row++; } }; // get a cache of all the manual positions var id2manPos = {}; for (var _i = 0; _i < nodes.length; _i++) { var _node = nodes[_i]; var rcPos = options.position(_node); if (rcPos && (rcPos.row !== undefined || rcPos.col !== undefined)) { // must have at least row or col def'd var _pos = { row: rcPos.row, col: rcPos.col }; if (_pos.col === undefined) { // find unused col _pos.col = 0; while (used(_pos.row, _pos.col)) { _pos.col++; } } else if (_pos.row === undefined) { // find unused row _pos.row = 0; while (used(_pos.row, _pos.col)) { _pos.row++; } } id2manPos[_node.id()] = _pos; use(_pos.row, _pos.col); } } var getPos = function getPos(element, i) { var x, y; if (element.locked() || element.isParent()) { return false; } // see if we have a manual position set var rcPos = id2manPos[element.id()]; if (rcPos) { x = rcPos.col * cellWidth + cellWidth / 2 + bb.x1; y = rcPos.row * cellHeight + cellHeight / 2 + bb.y1; } else { // otherwise set automatically while (used(row, col)) { moveToNextCell(); } x = col * cellWidth + cellWidth / 2 + bb.x1; y = row * cellHeight + cellHeight / 2 + bb.y1; use(row, col); moveToNextCell(); } return { x: x, y: y }; }; nodes.layoutPositions(this, options, getPos); } return this; // chaining }; // default layout options var defaults$2 = { ready: function ready() {}, // on layoutready stop: function stop() {} // on layoutstop }; // constructor // options : object containing layout options function NullLayout(options) { this.options = extend({}, defaults$2, options); } // runs the layout NullLayout.prototype.run = function () { var options = this.options; var eles = options.eles; // elements to consider in the layout var layout = this; // cy is automatically populated for us in the constructor // (disable eslint for next line as this serves as example layout code to external developers) // eslint-disable-next-line no-unused-vars options.cy; layout.emit('layoutstart'); // puts all nodes at (0, 0) // n.b. most layouts would use layoutPositions(), instead of positions() and manual events eles.nodes().positions(function () { return { x: 0, y: 0 }; }); // trigger layoutready when each node has had its position set at least once layout.one('layoutready', options.ready); layout.emit('layoutready'); // trigger layoutstop when the layout stops (e.g. finishes) layout.one('layoutstop', options.stop); layout.emit('layoutstop'); return this; // chaining }; // called on continuous layouts to stop them before they finish NullLayout.prototype.stop = function () { return this; // chaining }; var defaults$1 = { positions: undefined, // map of (node id) => (position obj); or function(node){ return somPos; } zoom: undefined, // the zoom level to set (prob want fit = false if set) pan: undefined, // the pan level to set (prob want fit = false if set) fit: true, // whether to fit to viewport padding: 30, // padding on fit spacingFactor: undefined, // Applies a multiplicative factor (>0) to expand or compress the overall area that the nodes take up animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function PresetLayout(options) { this.options = extend({}, defaults$1, options); } PresetLayout.prototype.run = function () { var options = this.options; var eles = options.eles; var nodes = eles.nodes(); var posIsFn = fn$6(options.positions); function getPosition(node) { if (options.positions == null) { return copyPosition(node.position()); } if (posIsFn) { return options.positions(node); } var pos = options.positions[node._private.data.id]; if (pos == null) { return null; } return pos; } nodes.layoutPositions(this, options, function (node, i) { var position = getPosition(node); if (node.locked() || position == null) { return false; } return position; }); return this; // chaining }; var defaults = { fit: true, // whether to fit to viewport padding: 30, // fit padding boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function RandomLayout(options) { this.options = extend({}, defaults, options); } RandomLayout.prototype.run = function () { var options = this.options; var cy = options.cy; var eles = options.eles; var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); var getPos = function getPos(node, i) { return { x: bb.x1 + Math.round(Math.random() * bb.w), y: bb.y1 + Math.round(Math.random() * bb.h) }; }; eles.nodes().layoutPositions(this, options, getPos); return this; // chaining }; var layout = [{ name: 'breadthfirst', impl: BreadthFirstLayout }, { name: 'circle', impl: CircleLayout }, { name: 'concentric', impl: ConcentricLayout }, { name: 'cose', impl: CoseLayout }, { name: 'grid', impl: GridLayout }, { name: 'null', impl: NullLayout }, { name: 'preset', impl: PresetLayout }, { name: 'random', impl: RandomLayout }]; function NullRenderer(options) { this.options = options; this.notifications = 0; // for testing } var noop = function noop() {}; var throwImgErr = function throwImgErr() { throw new Error('A headless instance can not render images'); }; NullRenderer.prototype = { recalculateRenderedStyle: noop, notify: function notify() { this.notifications++; }, init: noop, isHeadless: function isHeadless() { return true; }, png: throwImgErr, jpg: throwImgErr }; var BRp$f = {}; BRp$f.arrowShapeWidth = 0.3; BRp$f.registerArrowShapes = function () { var arrowShapes = this.arrowShapes = {}; var renderer = this; // Contract for arrow shapes: // 0, 0 is arrow tip // (0, 1) is direction towards node // (1, 0) is right // // functional api: // collide: check x, y in shape // roughCollide: called before collide, no false negatives // draw: draw // spacing: dist(arrowTip, nodeBoundary) // gap: dist(edgeTip, nodeBoundary), edgeTip may != arrowTip var bbCollide = function bbCollide(x, y, size, angle, translation, edgeWidth, padding) { var x1 = translation.x - size / 2 - padding; var x2 = translation.x + size / 2 + padding; var y1 = translation.y - size / 2 - padding; var y2 = translation.y + size / 2 + padding; var inside = x1 <= x && x <= x2 && y1 <= y && y <= y2; return inside; }; var transform = function transform(x, y, size, angle, translation) { var xRotated = x * Math.cos(angle) - y * Math.sin(angle); var yRotated = x * Math.sin(angle) + y * Math.cos(angle); var xScaled = xRotated * size; var yScaled = yRotated * size; var xTranslated = xScaled + translation.x; var yTranslated = yScaled + translation.y; return { x: xTranslated, y: yTranslated }; }; var transformPoints = function transformPoints(pts, size, angle, translation) { var retPts = []; for (var i = 0; i < pts.length; i += 2) { var x = pts[i]; var y = pts[i + 1]; retPts.push(transform(x, y, size, angle, translation)); } return retPts; }; var pointsToArr = function pointsToArr(pts) { var ret = []; for (var i = 0; i < pts.length; i++) { var p = pts[i]; ret.push(p.x, p.y); } return ret; }; var standardGap = function standardGap(edge) { return edge.pstyle('width').pfValue * edge.pstyle('arrow-scale').pfValue * 2; }; var defineArrowShape = function defineArrowShape(name, defn) { if (string(defn)) { defn = arrowShapes[defn]; } arrowShapes[name] = extend({ name: name, points: [-0.15, -0.3, 0.15, -0.3, 0.15, 0.3, -0.15, 0.3], collide: function collide(x, y, size, angle, translation, padding) { var points = pointsToArr(transformPoints(this.points, size + 2 * padding, angle, translation)); var inside = pointInsidePolygonPoints(x, y, points); return inside; }, roughCollide: bbCollide, draw: function draw(context, size, angle, translation) { var points = transformPoints(this.points, size, angle, translation); renderer.arrowShapeImpl('polygon')(context, points); }, spacing: function spacing(edge) { return 0; }, gap: standardGap }, defn); }; defineArrowShape('none', { collide: falsify, roughCollide: falsify, draw: noop$1, spacing: zeroify, gap: zeroify }); defineArrowShape('triangle', { points: [-0.15, -0.3, 0, 0, 0.15, -0.3] }); defineArrowShape('arrow', 'triangle'); defineArrowShape('triangle-backcurve', { points: arrowShapes['triangle'].points, controlPoint: [0, -0.15], roughCollide: bbCollide, draw: function draw(context, size, angle, translation, edgeWidth) { var ptsTrans = transformPoints(this.points, size, angle, translation); var ctrlPt = this.controlPoint; var ctrlPtTrans = transform(ctrlPt[0], ctrlPt[1], size, angle, translation); renderer.arrowShapeImpl(this.name)(context, ptsTrans, ctrlPtTrans); }, gap: function gap(edge) { return standardGap(edge) * 0.8; } }); defineArrowShape('triangle-tee', { points: [0, 0, 0.15, -0.3, -0.15, -0.3, 0, 0], pointsTee: [-0.15, -0.4, -0.15, -0.5, 0.15, -0.5, 0.15, -0.4], collide: function collide(x, y, size, angle, translation, edgeWidth, padding) { var triPts = pointsToArr(transformPoints(this.points, size + 2 * padding, angle, translation)); var teePts = pointsToArr(transformPoints(this.pointsTee, size + 2 * padding, angle, translation)); var inside = pointInsidePolygonPoints(x, y, triPts) || pointInsidePolygonPoints(x, y, teePts); return inside; }, draw: function draw(context, size, angle, translation, edgeWidth) { var triPts = transformPoints(this.points, size, angle, translation); var teePts = transformPoints(this.pointsTee, size, angle, translation); renderer.arrowShapeImpl(this.name)(context, triPts, teePts); } }); defineArrowShape('circle-triangle', { radius: 0.15, pointsTr: [0, -0.15, 0.15, -0.45, -0.15, -0.45, 0, -0.15], collide: function collide(x, y, size, angle, translation, edgeWidth, padding) { var t = translation; var circleInside = Math.pow(t.x - x, 2) + Math.pow(t.y - y, 2) <= Math.pow((size + 2 * padding) * this.radius, 2); var triPts = pointsToArr(transformPoints(this.points, size + 2 * padding, angle, translation)); return pointInsidePolygonPoints(x, y, triPts) || circleInside; }, draw: function draw(context, size, angle, translation, edgeWidth) { var triPts = transformPoints(this.pointsTr, size, angle, translation); renderer.arrowShapeImpl(this.name)(context, triPts, translation.x, translation.y, this.radius * size); }, spacing: function spacing(edge) { return renderer.getArrowWidth(edge.pstyle('width').pfValue, edge.pstyle('arrow-scale').value) * this.radius; } }); defineArrowShape('triangle-cross', { points: [0, 0, 0.15, -0.3, -0.15, -0.3, 0, 0], baseCrossLinePts: [-0.15, -0.4, // first half of the rectangle -0.15, -0.4, 0.15, -0.4, // second half of the rectangle 0.15, -0.4], crossLinePts: function crossLinePts(size, edgeWidth) { // shift points so that the distance between the cross points matches edge width var p = this.baseCrossLinePts.slice(); var shiftFactor = edgeWidth / size; var y0 = 3; var y1 = 5; p[y0] = p[y0] - shiftFactor; p[y1] = p[y1] - shiftFactor; return p; }, collide: function collide(x, y, size, angle, translation, edgeWidth, padding) { var triPts = pointsToArr(transformPoints(this.points, size + 2 * padding, angle, translation)); var teePts = pointsToArr(transformPoints(this.crossLinePts(size, edgeWidth), size + 2 * padding, angle, translation)); var inside = pointInsidePolygonPoints(x, y, triPts) || pointInsidePolygonPoints(x, y, teePts); return inside; }, draw: function draw(context, size, angle, translation, edgeWidth) { var triPts = transformPoints(this.points, size, angle, translation); var crossLinePts = transformPoints(this.crossLinePts(size, edgeWidth), size, angle, translation); renderer.arrowShapeImpl(this.name)(context, triPts, crossLinePts); } }); defineArrowShape('vee', { points: [-0.15, -0.3, 0, 0, 0.15, -0.3, 0, -0.15], gap: function gap(edge) { return standardGap(edge) * 0.525; } }); defineArrowShape('circle', { radius: 0.15, collide: function collide(x, y, size, angle, translation, edgeWidth, padding) { var t = translation; var inside = Math.pow(t.x - x, 2) + Math.pow(t.y - y, 2) <= Math.pow((size + 2 * padding) * this.radius, 2); return inside; }, draw: function draw(context, size, angle, translation, edgeWidth) { renderer.arrowShapeImpl(this.name)(context, translation.x, translation.y, this.radius * size); }, spacing: function spacing(edge) { return renderer.getArrowWidth(edge.pstyle('width').pfValue, edge.pstyle('arrow-scale').value) * this.radius; } }); defineArrowShape('tee', { points: [-0.15, 0, -0.15, -0.1, 0.15, -0.1, 0.15, 0], spacing: function spacing(edge) { return 1; }, gap: function gap(edge) { return 1; } }); defineArrowShape('square', { points: [-0.15, 0.00, 0.15, 0.00, 0.15, -0.3, -0.15, -0.3] }); defineArrowShape('diamond', { points: [-0.15, -0.15, 0, -0.3, 0.15, -0.15, 0, 0], gap: function gap(edge) { return edge.pstyle('width').pfValue * edge.pstyle('arrow-scale').value; } }); defineArrowShape('chevron', { points: [0, 0, -0.15, -0.15, -0.1, -0.2, 0, -0.1, 0.1, -0.2, 0.15, -0.15], gap: function gap(edge) { return 0.95 * edge.pstyle('width').pfValue * edge.pstyle('arrow-scale').value; } }); }; var BRp$e = {}; // Project mouse BRp$e.projectIntoViewport = function (clientX, clientY) { var cy = this.cy; var offsets = this.findContainerClientCoords(); var offsetLeft = offsets[0]; var offsetTop = offsets[1]; var scale = offsets[4]; var pan = cy.pan(); var zoom = cy.zoom(); var x = ((clientX - offsetLeft) / scale - pan.x) / zoom; var y = ((clientY - offsetTop) / scale - pan.y) / zoom; return [x, y]; }; BRp$e.findContainerClientCoords = function () { if (this.containerBB) { return this.containerBB; } var container = this.container; var rect = container.getBoundingClientRect(); var style = this.cy.window().getComputedStyle(container); var styleValue = function styleValue(name) { return parseFloat(style.getPropertyValue(name)); }; var padding = { left: styleValue('padding-left'), right: styleValue('padding-right'), top: styleValue('padding-top'), bottom: styleValue('padding-bottom') }; var border = { left: styleValue('border-left-width'), right: styleValue('border-right-width'), top: styleValue('border-top-width'), bottom: styleValue('border-bottom-width') }; var clientWidth = container.clientWidth; var clientHeight = container.clientHeight; var paddingHor = padding.left + padding.right; var paddingVer = padding.top + padding.bottom; var borderHor = border.left + border.right; var scale = rect.width / (clientWidth + borderHor); var unscaledW = clientWidth - paddingHor; var unscaledH = clientHeight - paddingVer; var left = rect.left + padding.left + border.left; var top = rect.top + padding.top + border.top; return this.containerBB = [left, top, unscaledW, unscaledH, scale]; }; BRp$e.invalidateContainerClientCoordsCache = function () { this.containerBB = null; }; BRp$e.findNearestElement = function (x, y, interactiveElementsOnly, isTouch) { return this.findNearestElements(x, y, interactiveElementsOnly, isTouch)[0]; }; BRp$e.findNearestElements = function (x, y, interactiveElementsOnly, isTouch) { var self = this; var r = this; var eles = r.getCachedZSortedEles(); var near = []; // 1 node max, 1 edge max var zoom = r.cy.zoom(); var hasCompounds = r.cy.hasCompoundNodes(); var edgeThreshold = (isTouch ? 24 : 8) / zoom; var nodeThreshold = (isTouch ? 8 : 2) / zoom; var labelThreshold = (isTouch ? 8 : 2) / zoom; var minSqDist = Infinity; var nearEdge; var nearNode; if (interactiveElementsOnly) { eles = eles.interactive; } function addEle(ele, sqDist) { if (ele.isNode()) { if (nearNode) { return; // can't replace node } else { nearNode = ele; near.push(ele); } } if (ele.isEdge() && (sqDist == null || sqDist < minSqDist)) { if (nearEdge) { // then replace existing edge // can replace only if same z-index if (nearEdge.pstyle('z-compound-depth').value === ele.pstyle('z-compound-depth').value && nearEdge.pstyle('z-compound-depth').value === ele.pstyle('z-compound-depth').value) { for (var i = 0; i < near.length; i++) { if (near[i].isEdge()) { near[i] = ele; nearEdge = ele; minSqDist = sqDist != null ? sqDist : minSqDist; break; } } } } else { near.push(ele); nearEdge = ele; minSqDist = sqDist != null ? sqDist : minSqDist; } } } function checkNode(node) { var width = node.outerWidth() + 2 * nodeThreshold; var height = node.outerHeight() + 2 * nodeThreshold; var hw = width / 2; var hh = height / 2; var pos = node.position(); var cornerRadius = node.pstyle('corner-radius').value === 'auto' ? 'auto' : node.pstyle('corner-radius').pfValue; var rs = node._private.rscratch; if (pos.x - hw <= x && x <= pos.x + hw // bb check x && pos.y - hh <= y && y <= pos.y + hh // bb check y ) { var shape = r.nodeShapes[self.getNodeShape(node)]; if (shape.checkPoint(x, y, 0, width, height, pos.x, pos.y, cornerRadius, rs)) { addEle(node, 0); return true; } } } function checkEdge(edge) { var _p = edge._private; var rs = _p.rscratch; var styleWidth = edge.pstyle('width').pfValue; var scale = edge.pstyle('arrow-scale').value; var width = styleWidth / 2 + edgeThreshold; // more like a distance radius from centre var widthSq = width * width; var width2 = width * 2; var src = _p.source; var tgt = _p.target; var sqDist; if (rs.edgeType === 'segments' || rs.edgeType === 'straight' || rs.edgeType === 'haystack') { var pts = rs.allpts; for (var i = 0; i + 3 < pts.length; i += 2) { if (inLineVicinity(x, y, pts[i], pts[i + 1], pts[i + 2], pts[i + 3], width2) && widthSq > (sqDist = sqdistToFiniteLine(x, y, pts[i], pts[i + 1], pts[i + 2], pts[i + 3]))) { addEle(edge, sqDist); return true; } } } else if (rs.edgeType === 'bezier' || rs.edgeType === 'multibezier' || rs.edgeType === 'self' || rs.edgeType === 'compound') { var pts = rs.allpts; for (var i = 0; i + 5 < rs.allpts.length; i += 4) { if (inBezierVicinity(x, y, pts[i], pts[i + 1], pts[i + 2], pts[i + 3], pts[i + 4], pts[i + 5], width2) && widthSq > (sqDist = sqdistToQuadraticBezier(x, y, pts[i], pts[i + 1], pts[i + 2], pts[i + 3], pts[i + 4], pts[i + 5]))) { addEle(edge, sqDist); return true; } } } // if we're close to the edge but didn't hit it, maybe we hit its arrows var src = src || _p.source; var tgt = tgt || _p.target; var arSize = self.getArrowWidth(styleWidth, scale); var arrows = [{ name: 'source', x: rs.arrowStartX, y: rs.arrowStartY, angle: rs.srcArrowAngle }, { name: 'target', x: rs.arrowEndX, y: rs.arrowEndY, angle: rs.tgtArrowAngle }, { name: 'mid-source', x: rs.midX, y: rs.midY, angle: rs.midsrcArrowAngle }, { name: 'mid-target', x: rs.midX, y: rs.midY, angle: rs.midtgtArrowAngle }]; for (var i = 0; i < arrows.length; i++) { var ar = arrows[i]; var shape = r.arrowShapes[edge.pstyle(ar.name + '-arrow-shape').value]; var edgeWidth = edge.pstyle('width').pfValue; if (shape.roughCollide(x, y, arSize, ar.angle, { x: ar.x, y: ar.y }, edgeWidth, edgeThreshold) && shape.collide(x, y, arSize, ar.angle, { x: ar.x, y: ar.y }, edgeWidth, edgeThreshold)) { addEle(edge); return true; } } // for compound graphs, hitting edge may actually want a connected node instead (b/c edge may have greater z-index precedence) if (hasCompounds && near.length > 0) { checkNode(src); checkNode(tgt); } } function preprop(obj, name, pre) { return getPrefixedProperty(obj, name, pre); } function checkLabel(ele, prefix) { var _p = ele._private; var th = labelThreshold; var prefixDash; if (prefix) { prefixDash = prefix + '-'; } else { prefixDash = ''; } ele.boundingBox(); var bb = _p.labelBounds[prefix || 'main']; var text = ele.pstyle(prefixDash + 'label').value; var eventsEnabled = ele.pstyle('text-events').strValue === 'yes'; if (!eventsEnabled || !text) { return; } var lx = preprop(_p.rscratch, 'labelX', prefix); var ly = preprop(_p.rscratch, 'labelY', prefix); var theta = preprop(_p.rscratch, 'labelAngle', prefix); var ox = ele.pstyle(prefixDash + 'text-margin-x').pfValue; var oy = ele.pstyle(prefixDash + 'text-margin-y').pfValue; var lx1 = bb.x1 - th - ox; // (-ox, -oy) as bb already includes margin var lx2 = bb.x2 + th - ox; // and rotation is about (lx, ly) var ly1 = bb.y1 - th - oy; var ly2 = bb.y2 + th - oy; if (theta) { var cos = Math.cos(theta); var sin = Math.sin(theta); var rotate = function rotate(x, y) { x = x - lx; y = y - ly; return { x: x * cos - y * sin + lx, y: x * sin + y * cos + ly }; }; var px1y1 = rotate(lx1, ly1); var px1y2 = rotate(lx1, ly2); var px2y1 = rotate(lx2, ly1); var px2y2 = rotate(lx2, ly2); var points = [ // with the margin added after the rotation is applied px1y1.x + ox, px1y1.y + oy, px2y1.x + ox, px2y1.y + oy, px2y2.x + ox, px2y2.y + oy, px1y2.x + ox, px1y2.y + oy]; if (pointInsidePolygonPoints(x, y, points)) { addEle(ele); return true; } } else { // do a cheaper bb check if (inBoundingBox(bb, x, y)) { addEle(ele); return true; } } } for (var i = eles.length - 1; i >= 0; i--) { // reverse order for precedence var ele = eles[i]; if (ele.isNode()) { checkNode(ele) || checkLabel(ele); } else { // then edge checkEdge(ele) || checkLabel(ele) || checkLabel(ele, 'source') || checkLabel(ele, 'target'); } } return near; }; // 'Give me everything from this box' BRp$e.getAllInBox = function (x1, y1, x2, y2) { var eles = this.getCachedZSortedEles().interactive; var box = []; var x1c = Math.min(x1, x2); var x2c = Math.max(x1, x2); var y1c = Math.min(y1, y2); var y2c = Math.max(y1, y2); x1 = x1c; x2 = x2c; y1 = y1c; y2 = y2c; var boxBb = makeBoundingBox({ x1: x1, y1: y1, x2: x2, y2: y2 }); for (var e = 0; e < eles.length; e++) { var ele = eles[e]; if (ele.isNode()) { var node = ele; var nodeBb = node.boundingBox({ includeNodes: true, includeEdges: false, includeLabels: false }); if (boundingBoxesIntersect(boxBb, nodeBb) && !boundingBoxInBoundingBox(nodeBb, boxBb)) { box.push(node); } } else { var edge = ele; var _p = edge._private; var rs = _p.rscratch; if (rs.startX != null && rs.startY != null && !inBoundingBox(boxBb, rs.startX, rs.startY)) { continue; } if (rs.endX != null && rs.endY != null && !inBoundingBox(boxBb, rs.endX, rs.endY)) { continue; } if (rs.edgeType === 'bezier' || rs.edgeType === 'multibezier' || rs.edgeType === 'self' || rs.edgeType === 'compound' || rs.edgeType === 'segments' || rs.edgeType === 'haystack') { var pts = _p.rstyle.bezierPts || _p.rstyle.linePts || _p.rstyle.haystackPts; var allInside = true; for (var i = 0; i < pts.length; i++) { if (!pointInBoundingBox(boxBb, pts[i])) { allInside = false; break; } } if (allInside) { box.push(edge); } } else if (rs.edgeType === 'haystack' || rs.edgeType === 'straight') { box.push(edge); } } } return box; }; var BRp$d = {}; BRp$d.calculateArrowAngles = function (edge) { var rs = edge._private.rscratch; var isHaystack = rs.edgeType === 'haystack'; var isBezier = rs.edgeType === 'bezier'; var isMultibezier = rs.edgeType === 'multibezier'; var isSegments = rs.edgeType === 'segments'; var isCompound = rs.edgeType === 'compound'; var isSelf = rs.edgeType === 'self'; // Displacement gives direction for arrowhead orientation var dispX, dispY; var startX, startY, endX, endY, midX, midY; if (isHaystack) { startX = rs.haystackPts[0]; startY = rs.haystackPts[1]; endX = rs.haystackPts[2]; endY = rs.haystackPts[3]; } else { startX = rs.arrowStartX; startY = rs.arrowStartY; endX = rs.arrowEndX; endY = rs.arrowEndY; } midX = rs.midX; midY = rs.midY; // source // if (isSegments) { dispX = startX - rs.segpts[0]; dispY = startY - rs.segpts[1]; } else if (isMultibezier || isCompound || isSelf || isBezier) { var pts = rs.allpts; var bX = qbezierAt(pts[0], pts[2], pts[4], 0.1); var bY = qbezierAt(pts[1], pts[3], pts[5], 0.1); dispX = startX - bX; dispY = startY - bY; } else { dispX = startX - midX; dispY = startY - midY; } rs.srcArrowAngle = getAngleFromDisp(dispX, dispY); // mid target // var midX = rs.midX; var midY = rs.midY; if (isHaystack) { midX = (startX + endX) / 2; midY = (startY + endY) / 2; } dispX = endX - startX; dispY = endY - startY; if (isSegments) { var pts = rs.allpts; if (pts.length / 2 % 2 === 0) { var i2 = pts.length / 2; var i1 = i2 - 2; dispX = pts[i2] - pts[i1]; dispY = pts[i2 + 1] - pts[i1 + 1]; } else if (rs.isRound) { dispX = rs.midVector[1]; dispY = -rs.midVector[0]; } else { var i2 = pts.length / 2 - 1; var i1 = i2 - 2; dispX = pts[i2] - pts[i1]; dispY = pts[i2 + 1] - pts[i1 + 1]; } } else if (isMultibezier || isCompound || isSelf) { var pts = rs.allpts; var cpts = rs.ctrlpts; var bp0x, bp0y; var bp1x, bp1y; if (cpts.length / 2 % 2 === 0) { var p0 = pts.length / 2 - 1; // startpt var ic = p0 + 2; var p1 = ic + 2; bp0x = qbezierAt(pts[p0], pts[ic], pts[p1], 0.0); bp0y = qbezierAt(pts[p0 + 1], pts[ic + 1], pts[p1 + 1], 0.0); bp1x = qbezierAt(pts[p0], pts[ic], pts[p1], 0.0001); bp1y = qbezierAt(pts[p0 + 1], pts[ic + 1], pts[p1 + 1], 0.0001); } else { var ic = pts.length / 2 - 1; // ctrpt var p0 = ic - 2; // startpt var p1 = ic + 2; // endpt bp0x = qbezierAt(pts[p0], pts[ic], pts[p1], 0.4999); bp0y = qbezierAt(pts[p0 + 1], pts[ic + 1], pts[p1 + 1], 0.4999); bp1x = qbezierAt(pts[p0], pts[ic], pts[p1], 0.5); bp1y = qbezierAt(pts[p0 + 1], pts[ic + 1], pts[p1 + 1], 0.5); } dispX = bp1x - bp0x; dispY = bp1y - bp0y; } rs.midtgtArrowAngle = getAngleFromDisp(dispX, dispY); rs.midDispX = dispX; rs.midDispY = dispY; // mid source // dispX *= -1; dispY *= -1; if (isSegments) { var pts = rs.allpts; if (pts.length / 2 % 2 === 0) ; else if (!rs.isRound) { var i2 = pts.length / 2 - 1; var i3 = i2 + 2; dispX = -(pts[i3] - pts[i2]); dispY = -(pts[i3 + 1] - pts[i2 + 1]); } } rs.midsrcArrowAngle = getAngleFromDisp(dispX, dispY); // target // if (isSegments) { dispX = endX - rs.segpts[rs.segpts.length - 2]; dispY = endY - rs.segpts[rs.segpts.length - 1]; } else if (isMultibezier || isCompound || isSelf || isBezier) { var pts = rs.allpts; var l = pts.length; var bX = qbezierAt(pts[l - 6], pts[l - 4], pts[l - 2], 0.9); var bY = qbezierAt(pts[l - 5], pts[l - 3], pts[l - 1], 0.9); dispX = endX - bX; dispY = endY - bY; } else { dispX = endX - midX; dispY = endY - midY; } rs.tgtArrowAngle = getAngleFromDisp(dispX, dispY); }; BRp$d.getArrowWidth = BRp$d.getArrowHeight = function (edgeWidth, scale) { var cache = this.arrowWidthCache = this.arrowWidthCache || {}; var cachedVal = cache[edgeWidth + ', ' + scale]; if (cachedVal) { return cachedVal; } cachedVal = Math.max(Math.pow(edgeWidth * 13.37, 0.9), 29) * scale; cache[edgeWidth + ', ' + scale] = cachedVal; return cachedVal; }; /** * Explained by Blindman67 at https://stackoverflow.com/a/44856925/11028828 */ // Declare reused variable to avoid reallocating variables every time the function is called var x, y, v1 = {}, v2 = {}, sinA, sinA90, radDirection, drawDirection, angle, halfAngle, cRadius, lenOut, radius, limit; var startX, startY, stopX, stopY; var lastPoint; // convert 2 points into vector form, polar form, and normalised var asVec = function asVec(p, pp, v) { v.x = pp.x - p.x; v.y = pp.y - p.y; v.len = Math.sqrt(v.x * v.x + v.y * v.y); v.nx = v.x / v.len; v.ny = v.y / v.len; v.ang = Math.atan2(v.ny, v.nx); }; var invertVec = function invertVec(originalV, invertedV) { invertedV.x = originalV.x * -1; invertedV.y = originalV.y * -1; invertedV.nx = originalV.nx * -1; invertedV.ny = originalV.ny * -1; invertedV.ang = originalV.ang > 0 ? -(Math.PI - originalV.ang) : Math.PI + originalV.ang; }; var calcCornerArc = function calcCornerArc(previousPoint, currentPoint, nextPoint, radiusMax, isArcRadius) { //----------------------------------------- // Part 1 previousPoint !== lastPoint ? asVec(currentPoint, previousPoint, v1) : invertVec(v2, v1); // Avoid recalculating vec if it is the invert of the last one calculated asVec(currentPoint, nextPoint, v2); sinA = v1.nx * v2.ny - v1.ny * v2.nx; sinA90 = v1.nx * v2.nx - v1.ny * -v2.ny; angle = Math.asin(Math.max(-1, Math.min(1, sinA))); if (Math.abs(angle) < 1e-6) { x = currentPoint.x; y = currentPoint.y; cRadius = radius = 0; return; } //----------------------------------------- radDirection = 1; drawDirection = false; if (sinA90 < 0) { if (angle < 0) { angle = Math.PI + angle; } else { angle = Math.PI - angle; radDirection = -1; drawDirection = true; } } else { if (angle > 0) { radDirection = -1; drawDirection = true; } } if (currentPoint.radius !== undefined) { radius = currentPoint.radius; } else { radius = radiusMax; } //----------------------------------------- // Part 2 halfAngle = angle / 2; //----------------------------------------- limit = Math.min(v1.len / 2, v2.len / 2); if (isArcRadius) { //----------------------------------------- // Part 3 lenOut = Math.abs(Math.cos(halfAngle) * radius / Math.sin(halfAngle)); //----------------------------------------- // Special part A if (lenOut > limit) { lenOut = limit; cRadius = Math.abs(lenOut * Math.sin(halfAngle) / Math.cos(halfAngle)); } else { cRadius = radius; } } else { lenOut = Math.min(limit, radius); cRadius = Math.abs(lenOut * Math.sin(halfAngle) / Math.cos(halfAngle)); } //----------------------------------------- //----------------------------------------- // Part 4 stopX = currentPoint.x + v2.nx * lenOut; stopY = currentPoint.y + v2.ny * lenOut; //----------------------------------------- // Part 5 x = stopX - v2.ny * cRadius * radDirection; y = stopY + v2.nx * cRadius * radDirection; //----------------------------------------- // Additional Part : calculate start point E startX = currentPoint.x + v1.nx * lenOut; startY = currentPoint.y + v1.ny * lenOut; // Save last point to avoid recalculating vector when not needed lastPoint = currentPoint; }; /** * Draw corner provided by {@link getRoundCorner} * * @param ctx :CanvasRenderingContext2D * @param roundCorner {{cx:number, cy:number, radius:number, endAngle: number, startAngle: number, counterClockwise: boolean}} */ function drawPreparedRoundCorner(ctx, roundCorner) { if (roundCorner.radius === 0) ctx.lineTo(roundCorner.cx, roundCorner.cy);else ctx.arc(roundCorner.cx, roundCorner.cy, roundCorner.radius, roundCorner.startAngle, roundCorner.endAngle, roundCorner.counterClockwise); } /** * Get round corner from a point and its previous and next neighbours in a path * * @param previousPoint {{x: number, y:number, radius: number?}} * @param currentPoint {{x: number, y:number, radius: number?}} * @param nextPoint {{x: number, y:number, radius: number?}} * @param radiusMax :number * @param isArcRadius :boolean * @return {{ * cx:number, cy:number, radius:number, * startX:number, startY:number, * stopX:number, stopY: number, * endAngle: number, startAngle: number, counterClockwise: boolean * }} */ function getRoundCorner(previousPoint, currentPoint, nextPoint, radiusMax) { var isArcRadius = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true; if (radiusMax === 0 || currentPoint.radius === 0) return { cx: currentPoint.x, cy: currentPoint.y, radius: 0, startX: currentPoint.x, startY: currentPoint.y, stopX: currentPoint.x, stopY: currentPoint.y, startAngle: undefined, endAngle: undefined, counterClockwise: undefined }; calcCornerArc(previousPoint, currentPoint, nextPoint, radiusMax, isArcRadius); return { cx: x, cy: y, radius: cRadius, startX: startX, startY: startY, stopX: stopX, stopY: stopY, startAngle: v1.ang + Math.PI / 2 * radDirection, endAngle: v2.ang - Math.PI / 2 * radDirection, counterClockwise: drawDirection }; } var BRp$c = {}; BRp$c.findMidptPtsEtc = function (edge, pairInfo) { var posPts = pairInfo.posPts, intersectionPts = pairInfo.intersectionPts, vectorNormInverse = pairInfo.vectorNormInverse; var midptPts; // n.b. assumes all edges in bezier bundle have same endpoints specified var srcManEndpt = edge.pstyle('source-endpoint'); var tgtManEndpt = edge.pstyle('target-endpoint'); var haveManualEndPts = srcManEndpt.units != null && tgtManEndpt.units != null; var recalcVectorNormInverse = function recalcVectorNormInverse(x1, y1, x2, y2) { var dy = y2 - y1; var dx = x2 - x1; var l = Math.sqrt(dx * dx + dy * dy); return { x: -dy / l, y: dx / l }; }; var edgeDistances = edge.pstyle('edge-distances').value; switch (edgeDistances) { case 'node-position': midptPts = posPts; break; case 'intersection': midptPts = intersectionPts; break; case 'endpoints': { if (haveManualEndPts) { var _this$manualEndptToPx = this.manualEndptToPx(edge.source()[0], srcManEndpt), _this$manualEndptToPx2 = _slicedToArray(_this$manualEndptToPx, 2), x1 = _this$manualEndptToPx2[0], y1 = _this$manualEndptToPx2[1]; var _this$manualEndptToPx3 = this.manualEndptToPx(edge.target()[0], tgtManEndpt), _this$manualEndptToPx4 = _slicedToArray(_this$manualEndptToPx3, 2), x2 = _this$manualEndptToPx4[0], y2 = _this$manualEndptToPx4[1]; var endPts = { x1: x1, y1: y1, x2: x2, y2: y2 }; vectorNormInverse = recalcVectorNormInverse(x1, y1, x2, y2); midptPts = endPts; } else { warn("Edge ".concat(edge.id(), " has edge-distances:endpoints specified without manual endpoints specified via source-endpoint and target-endpoint. Falling back on edge-distances:intersection (default).")); midptPts = intersectionPts; // back to default } break; } } return { midptPts: midptPts, vectorNormInverse: vectorNormInverse }; }; BRp$c.findHaystackPoints = function (edges) { for (var i = 0; i < edges.length; i++) { var edge = edges[i]; var _p = edge._private; var rs = _p.rscratch; if (!rs.haystack) { var angle = Math.random() * 2 * Math.PI; rs.source = { x: Math.cos(angle), y: Math.sin(angle) }; angle = Math.random() * 2 * Math.PI; rs.target = { x: Math.cos(angle), y: Math.sin(angle) }; } var src = _p.source; var tgt = _p.target; var srcPos = src.position(); var tgtPos = tgt.position(); var srcW = src.width(); var tgtW = tgt.width(); var srcH = src.height(); var tgtH = tgt.height(); var radius = edge.pstyle('haystack-radius').value; var halfRadius = radius / 2; // b/c have to half width/height rs.haystackPts = rs.allpts = [rs.source.x * srcW * halfRadius + srcPos.x, rs.source.y * srcH * halfRadius + srcPos.y, rs.target.x * tgtW * halfRadius + tgtPos.x, rs.target.y * tgtH * halfRadius + tgtPos.y]; rs.midX = (rs.allpts[0] + rs.allpts[2]) / 2; rs.midY = (rs.allpts[1] + rs.allpts[3]) / 2; // always override as haystack in case set to different type previously rs.edgeType = 'haystack'; rs.haystack = true; this.storeEdgeProjections(edge); this.calculateArrowAngles(edge); this.recalculateEdgeLabelProjections(edge); this.calculateLabelAngles(edge); } }; BRp$c.findSegmentsPoints = function (edge, pairInfo) { // Segments (multiple straight lines) var rs = edge._private.rscratch; var segmentWs = edge.pstyle('segment-weights'); var segmentDs = edge.pstyle('segment-distances'); var segmentRs = edge.pstyle('segment-radii'); var segmentTs = edge.pstyle('radius-type'); var segmentsN = Math.min(segmentWs.pfValue.length, segmentDs.pfValue.length); var lastRadius = segmentRs.pfValue[segmentRs.pfValue.length - 1]; var lastRadiusType = segmentTs.pfValue[segmentTs.pfValue.length - 1]; rs.edgeType = 'segments'; rs.segpts = []; rs.radii = []; rs.isArcRadius = []; for (var s = 0; s < segmentsN; s++) { var w = segmentWs.pfValue[s]; var d = segmentDs.pfValue[s]; var w1 = 1 - w; var w2 = w; var _this$findMidptPtsEtc = this.findMidptPtsEtc(edge, pairInfo), midptPts = _this$findMidptPtsEtc.midptPts, vectorNormInverse = _this$findMidptPtsEtc.vectorNormInverse; var adjustedMidpt = { x: midptPts.x1 * w1 + midptPts.x2 * w2, y: midptPts.y1 * w1 + midptPts.y2 * w2 }; rs.segpts.push(adjustedMidpt.x + vectorNormInverse.x * d, adjustedMidpt.y + vectorNormInverse.y * d); rs.radii.push(segmentRs.pfValue[s] !== undefined ? segmentRs.pfValue[s] : lastRadius); rs.isArcRadius.push((segmentTs.pfValue[s] !== undefined ? segmentTs.pfValue[s] : lastRadiusType) === 'arc-radius'); } }; BRp$c.findLoopPoints = function (edge, pairInfo, i, edgeIsUnbundled) { // Self-edge var rs = edge._private.rscratch; var dirCounts = pairInfo.dirCounts, srcPos = pairInfo.srcPos; var ctrlptDists = edge.pstyle('control-point-distances'); var ctrlptDist = ctrlptDists ? ctrlptDists.pfValue[0] : undefined; var loopDir = edge.pstyle('loop-direction').pfValue; var loopSwp = edge.pstyle('loop-sweep').pfValue; var stepSize = edge.pstyle('control-point-step-size').pfValue; rs.edgeType = 'self'; var j = i; var loopDist = stepSize; if (edgeIsUnbundled) { j = 0; loopDist = ctrlptDist; } var loopAngle = loopDir - Math.PI / 2; var outAngle = loopAngle - loopSwp / 2; var inAngle = loopAngle + loopSwp / 2; // increase by step size for overlapping loops, keyed on direction and sweep values var dc = String(loopDir + '_' + loopSwp); j = dirCounts[dc] === undefined ? dirCounts[dc] = 0 : ++dirCounts[dc]; rs.ctrlpts = [srcPos.x + Math.cos(outAngle) * 1.4 * loopDist * (j / 3 + 1), srcPos.y + Math.sin(outAngle) * 1.4 * loopDist * (j / 3 + 1), srcPos.x + Math.cos(inAngle) * 1.4 * loopDist * (j / 3 + 1), srcPos.y + Math.sin(inAngle) * 1.4 * loopDist * (j / 3 + 1)]; }; BRp$c.findCompoundLoopPoints = function (edge, pairInfo, i, edgeIsUnbundled) { // Compound edge var rs = edge._private.rscratch; rs.edgeType = 'compound'; var srcPos = pairInfo.srcPos, tgtPos = pairInfo.tgtPos, srcW = pairInfo.srcW, srcH = pairInfo.srcH, tgtW = pairInfo.tgtW, tgtH = pairInfo.tgtH; var stepSize = edge.pstyle('control-point-step-size').pfValue; var ctrlptDists = edge.pstyle('control-point-distances'); var ctrlptDist = ctrlptDists ? ctrlptDists.pfValue[0] : undefined; var j = i; var loopDist = stepSize; if (edgeIsUnbundled) { j = 0; loopDist = ctrlptDist; } var loopW = 50; var loopaPos = { x: srcPos.x - srcW / 2, y: srcPos.y - srcH / 2 }; var loopbPos = { x: tgtPos.x - tgtW / 2, y: tgtPos.y - tgtH / 2 }; var loopPos = { x: Math.min(loopaPos.x, loopbPos.x), y: Math.min(loopaPos.y, loopbPos.y) }; // avoids cases with impossible beziers var minCompoundStretch = 0.5; var compoundStretchA = Math.max(minCompoundStretch, Math.log(srcW * 0.01)); var compoundStretchB = Math.max(minCompoundStretch, Math.log(tgtW * 0.01)); rs.ctrlpts = [loopPos.x, loopPos.y - (1 + Math.pow(loopW, 1.12) / 100) * loopDist * (j / 3 + 1) * compoundStretchA, loopPos.x - (1 + Math.pow(loopW, 1.12) / 100) * loopDist * (j / 3 + 1) * compoundStretchB, loopPos.y]; }; BRp$c.findStraightEdgePoints = function (edge) { // Straight edge within bundle edge._private.rscratch.edgeType = 'straight'; }; BRp$c.findBezierPoints = function (edge, pairInfo, i, edgeIsUnbundled, edgeIsSwapped) { var rs = edge._private.rscratch; var stepSize = edge.pstyle('control-point-step-size').pfValue; var ctrlptDists = edge.pstyle('control-point-distances'); var ctrlptWs = edge.pstyle('control-point-weights'); var bezierN = ctrlptDists && ctrlptWs ? Math.min(ctrlptDists.value.length, ctrlptWs.value.length) : 1; var ctrlptDist = ctrlptDists ? ctrlptDists.pfValue[0] : undefined; var ctrlptWeight = ctrlptWs.value[0]; // (Multi)bezier var multi = edgeIsUnbundled; rs.edgeType = multi ? 'multibezier' : 'bezier'; rs.ctrlpts = []; for (var b = 0; b < bezierN; b++) { var normctrlptDist = (0.5 - pairInfo.eles.length / 2 + i) * stepSize * (edgeIsSwapped ? -1 : 1); var manctrlptDist = void 0; var sign = signum(normctrlptDist); if (multi) { ctrlptDist = ctrlptDists ? ctrlptDists.pfValue[b] : stepSize; // fall back on step size ctrlptWeight = ctrlptWs.value[b]; } if (edgeIsUnbundled) { // multi or single unbundled manctrlptDist = ctrlptDist; } else { manctrlptDist = ctrlptDist !== undefined ? sign * ctrlptDist : undefined; } var distanceFromMidpoint = manctrlptDist !== undefined ? manctrlptDist : normctrlptDist; var w1 = 1 - ctrlptWeight; var w2 = ctrlptWeight; var _this$findMidptPtsEtc2 = this.findMidptPtsEtc(edge, pairInfo), midptPts = _this$findMidptPtsEtc2.midptPts, vectorNormInverse = _this$findMidptPtsEtc2.vectorNormInverse; var adjustedMidpt = { x: midptPts.x1 * w1 + midptPts.x2 * w2, y: midptPts.y1 * w1 + midptPts.y2 * w2 }; rs.ctrlpts.push(adjustedMidpt.x + vectorNormInverse.x * distanceFromMidpoint, adjustedMidpt.y + vectorNormInverse.y * distanceFromMidpoint); } }; BRp$c.findTaxiPoints = function (edge, pairInfo) { // Taxicab geometry with two turns maximum var rs = edge._private.rscratch; rs.edgeType = 'segments'; var VERTICAL = 'vertical'; var HORIZONTAL = 'horizontal'; var LEFTWARD = 'leftward'; var RIGHTWARD = 'rightward'; var DOWNWARD = 'downward'; var UPWARD = 'upward'; var AUTO = 'auto'; var posPts = pairInfo.posPts, srcW = pairInfo.srcW, srcH = pairInfo.srcH, tgtW = pairInfo.tgtW, tgtH = pairInfo.tgtH; var edgeDistances = edge.pstyle('edge-distances').value; var dIncludesNodeBody = edgeDistances !== 'node-position'; var taxiDir = edge.pstyle('taxi-direction').value; var rawTaxiDir = taxiDir; // unprocessed value var taxiTurn = edge.pstyle('taxi-turn'); var turnIsPercent = taxiTurn.units === '%'; var taxiTurnPfVal = taxiTurn.pfValue; var turnIsNegative = taxiTurnPfVal < 0; // i.e. from target side var minD = edge.pstyle('taxi-turn-min-distance').pfValue; var dw = dIncludesNodeBody ? (srcW + tgtW) / 2 : 0; var dh = dIncludesNodeBody ? (srcH + tgtH) / 2 : 0; var pdx = posPts.x2 - posPts.x1; var pdy = posPts.y2 - posPts.y1; // take away the effective w/h from the magnitude of the delta value var subDWH = function subDWH(dxy, dwh) { if (dxy > 0) { return Math.max(dxy - dwh, 0); } else { return Math.min(dxy + dwh, 0); } }; var dx = subDWH(pdx, dw); var dy = subDWH(pdy, dh); var isExplicitDir = false; if (rawTaxiDir === AUTO) { taxiDir = Math.abs(dx) > Math.abs(dy) ? HORIZONTAL : VERTICAL; } else if (rawTaxiDir === UPWARD || rawTaxiDir === DOWNWARD) { taxiDir = VERTICAL; isExplicitDir = true; } else if (rawTaxiDir === LEFTWARD || rawTaxiDir === RIGHTWARD) { taxiDir = HORIZONTAL; isExplicitDir = true; } var isVert = taxiDir === VERTICAL; var l = isVert ? dy : dx; var pl = isVert ? pdy : pdx; var sgnL = signum(pl); var forcedDir = false; if (!(isExplicitDir && (turnIsPercent || turnIsNegative)) // forcing in this case would cause weird growing in the opposite direction && (rawTaxiDir === DOWNWARD && pl < 0 || rawTaxiDir === UPWARD && pl > 0 || rawTaxiDir === LEFTWARD && pl > 0 || rawTaxiDir === RIGHTWARD && pl < 0)) { sgnL *= -1; l = sgnL * Math.abs(l); forcedDir = true; } var d; if (turnIsPercent) { var p = taxiTurnPfVal < 0 ? 1 + taxiTurnPfVal : taxiTurnPfVal; d = p * l; } else { var k = taxiTurnPfVal < 0 ? l : 0; d = k + taxiTurnPfVal * sgnL; } var getIsTooClose = function getIsTooClose(d) { return Math.abs(d) < minD || Math.abs(d) >= Math.abs(l); }; var isTooCloseSrc = getIsTooClose(d); var isTooCloseTgt = getIsTooClose(Math.abs(l) - Math.abs(d)); var isTooClose = isTooCloseSrc || isTooCloseTgt; if (isTooClose && !forcedDir) { // non-ideal routing if (isVert) { // vertical fallbacks var lShapeInsideSrc = Math.abs(pl) <= srcH / 2; var lShapeInsideTgt = Math.abs(pdx) <= tgtW / 2; if (lShapeInsideSrc) { // horizontal Z-shape (direction not respected) var x = (posPts.x1 + posPts.x2) / 2; var y1 = posPts.y1, y2 = posPts.y2; rs.segpts = [x, y1, x, y2]; } else if (lShapeInsideTgt) { // vertical Z-shape (distance not respected) var y = (posPts.y1 + posPts.y2) / 2; var x1 = posPts.x1, x2 = posPts.x2; rs.segpts = [x1, y, x2, y]; } else { // L-shape fallback (turn distance not respected, but works well with tree siblings) rs.segpts = [posPts.x1, posPts.y2]; } } else { // horizontal fallbacks var _lShapeInsideSrc = Math.abs(pl) <= srcW / 2; var _lShapeInsideTgt = Math.abs(pdy) <= tgtH / 2; if (_lShapeInsideSrc) { // vertical Z-shape (direction not respected) var _y = (posPts.y1 + posPts.y2) / 2; var _x = posPts.x1, _x2 = posPts.x2; rs.segpts = [_x, _y, _x2, _y]; } else if (_lShapeInsideTgt) { // horizontal Z-shape (turn distance not respected) var _x3 = (posPts.x1 + posPts.x2) / 2; var _y2 = posPts.y1, _y3 = posPts.y2; rs.segpts = [_x3, _y2, _x3, _y3]; } else { // L-shape (turn distance not respected, but works well for tree siblings) rs.segpts = [posPts.x2, posPts.y1]; } } } else { // ideal routing if (isVert) { var _y4 = posPts.y1 + d + (dIncludesNodeBody ? srcH / 2 * sgnL : 0); var _x4 = posPts.x1, _x5 = posPts.x2; rs.segpts = [_x4, _y4, _x5, _y4]; } else { // horizontal var _x6 = posPts.x1 + d + (dIncludesNodeBody ? srcW / 2 * sgnL : 0); var _y5 = posPts.y1, _y6 = posPts.y2; rs.segpts = [_x6, _y5, _x6, _y6]; } } if (rs.isRound) { var radius = edge.pstyle('taxi-radius').value; var isArcRadius = edge.pstyle('radius-type').value[0] === 'arc-radius'; rs.radii = new Array(rs.segpts.length / 2).fill(radius); rs.isArcRadius = new Array(rs.segpts.length / 2).fill(isArcRadius); } }; BRp$c.tryToCorrectInvalidPoints = function (edge, pairInfo) { var rs = edge._private.rscratch; // can only correct beziers for now... if (rs.edgeType === 'bezier') { var srcPos = pairInfo.srcPos, tgtPos = pairInfo.tgtPos, srcW = pairInfo.srcW, srcH = pairInfo.srcH, tgtW = pairInfo.tgtW, tgtH = pairInfo.tgtH, srcShape = pairInfo.srcShape, tgtShape = pairInfo.tgtShape, srcCornerRadius = pairInfo.srcCornerRadius, tgtCornerRadius = pairInfo.tgtCornerRadius, srcRs = pairInfo.srcRs, tgtRs = pairInfo.tgtRs; var badStart = !number$1(rs.startX) || !number$1(rs.startY); var badAStart = !number$1(rs.arrowStartX) || !number$1(rs.arrowStartY); var badEnd = !number$1(rs.endX) || !number$1(rs.endY); var badAEnd = !number$1(rs.arrowEndX) || !number$1(rs.arrowEndY); var minCpADistFactor = 3; var arrowW = this.getArrowWidth(edge.pstyle('width').pfValue, edge.pstyle('arrow-scale').value) * this.arrowShapeWidth; var minCpADist = minCpADistFactor * arrowW; var startACpDist = dist({ x: rs.ctrlpts[0], y: rs.ctrlpts[1] }, { x: rs.startX, y: rs.startY }); var closeStartACp = startACpDist < minCpADist; var endACpDist = dist({ x: rs.ctrlpts[0], y: rs.ctrlpts[1] }, { x: rs.endX, y: rs.endY }); var closeEndACp = endACpDist < minCpADist; var overlapping = false; if (badStart || badAStart || closeStartACp) { overlapping = true; // project control point along line from src centre to outside the src shape // (otherwise intersection will yield nothing) var cpD = { // delta x: rs.ctrlpts[0] - srcPos.x, y: rs.ctrlpts[1] - srcPos.y }; var cpL = Math.sqrt(cpD.x * cpD.x + cpD.y * cpD.y); // length of line var cpM = { // normalised delta x: cpD.x / cpL, y: cpD.y / cpL }; var radius = Math.max(srcW, srcH); var cpProj = { // *2 radius guarantees outside shape x: rs.ctrlpts[0] + cpM.x * 2 * radius, y: rs.ctrlpts[1] + cpM.y * 2 * radius }; var srcCtrlPtIntn = srcShape.intersectLine(srcPos.x, srcPos.y, srcW, srcH, cpProj.x, cpProj.y, 0, srcCornerRadius, srcRs); if (closeStartACp) { rs.ctrlpts[0] = rs.ctrlpts[0] + cpM.x * (minCpADist - startACpDist); rs.ctrlpts[1] = rs.ctrlpts[1] + cpM.y * (minCpADist - startACpDist); } else { rs.ctrlpts[0] = srcCtrlPtIntn[0] + cpM.x * minCpADist; rs.ctrlpts[1] = srcCtrlPtIntn[1] + cpM.y * minCpADist; } } if (badEnd || badAEnd || closeEndACp) { overlapping = true; // project control point along line from tgt centre to outside the tgt shape // (otherwise intersection will yield nothing) var _cpD = { // delta x: rs.ctrlpts[0] - tgtPos.x, y: rs.ctrlpts[1] - tgtPos.y }; var _cpL = Math.sqrt(_cpD.x * _cpD.x + _cpD.y * _cpD.y); // length of line var _cpM = { // normalised delta x: _cpD.x / _cpL, y: _cpD.y / _cpL }; var _radius = Math.max(srcW, srcH); var _cpProj = { // *2 radius guarantees outside shape x: rs.ctrlpts[0] + _cpM.x * 2 * _radius, y: rs.ctrlpts[1] + _cpM.y * 2 * _radius }; var tgtCtrlPtIntn = tgtShape.intersectLine(tgtPos.x, tgtPos.y, tgtW, tgtH, _cpProj.x, _cpProj.y, 0, tgtCornerRadius, tgtRs); if (closeEndACp) { rs.ctrlpts[0] = rs.ctrlpts[0] + _cpM.x * (minCpADist - endACpDist); rs.ctrlpts[1] = rs.ctrlpts[1] + _cpM.y * (minCpADist - endACpDist); } else { rs.ctrlpts[0] = tgtCtrlPtIntn[0] + _cpM.x * minCpADist; rs.ctrlpts[1] = tgtCtrlPtIntn[1] + _cpM.y * minCpADist; } } if (overlapping) { // recalc endpts this.findEndpoints(edge); } } }; BRp$c.storeAllpts = function (edge) { var rs = edge._private.rscratch; if (rs.edgeType === 'multibezier' || rs.edgeType === 'bezier' || rs.edgeType === 'self' || rs.edgeType === 'compound') { rs.allpts = []; rs.allpts.push(rs.startX, rs.startY); for (var b = 0; b + 1 < rs.ctrlpts.length; b += 2) { // ctrl pt itself rs.allpts.push(rs.ctrlpts[b], rs.ctrlpts[b + 1]); // the midpt between ctrlpts as intermediate destination pts if (b + 3 < rs.ctrlpts.length) { rs.allpts.push((rs.ctrlpts[b] + rs.ctrlpts[b + 2]) / 2, (rs.ctrlpts[b + 1] + rs.ctrlpts[b + 3]) / 2); } } rs.allpts.push(rs.endX, rs.endY); var m, mt; if (rs.ctrlpts.length / 2 % 2 === 0) { m = rs.allpts.length / 2 - 1; rs.midX = rs.allpts[m]; rs.midY = rs.allpts[m + 1]; } else { m = rs.allpts.length / 2 - 3; mt = 0.5; rs.midX = qbezierAt(rs.allpts[m], rs.allpts[m + 2], rs.allpts[m + 4], mt); rs.midY = qbezierAt(rs.allpts[m + 1], rs.allpts[m + 3], rs.allpts[m + 5], mt); } } else if (rs.edgeType === 'straight') { // need to calc these after endpts rs.allpts = [rs.startX, rs.startY, rs.endX, rs.endY]; // default midpt for labels etc rs.midX = (rs.startX + rs.endX + rs.arrowStartX + rs.arrowEndX) / 4; rs.midY = (rs.startY + rs.endY + rs.arrowStartY + rs.arrowEndY) / 4; } else if (rs.edgeType === 'segments') { rs.allpts = []; rs.allpts.push(rs.startX, rs.startY); rs.allpts.push.apply(rs.allpts, rs.segpts); rs.allpts.push(rs.endX, rs.endY); if (rs.isRound) { rs.roundCorners = []; for (var i = 2; i + 3 < rs.allpts.length; i += 2) { var radius = rs.radii[i / 2 - 1]; var isArcRadius = rs.isArcRadius[i / 2 - 1]; rs.roundCorners.push(getRoundCorner({ x: rs.allpts[i - 2], y: rs.allpts[i - 1] }, { x: rs.allpts[i], y: rs.allpts[i + 1], radius: radius }, { x: rs.allpts[i + 2], y: rs.allpts[i + 3] }, radius, isArcRadius)); } } if (rs.segpts.length % 4 === 0) { var i2 = rs.segpts.length / 2; var i1 = i2 - 2; rs.midX = (rs.segpts[i1] + rs.segpts[i2]) / 2; rs.midY = (rs.segpts[i1 + 1] + rs.segpts[i2 + 1]) / 2; } else { var _i = rs.segpts.length / 2 - 1; if (!rs.isRound) { rs.midX = rs.segpts[_i]; rs.midY = rs.segpts[_i + 1]; } else { var point = { x: rs.segpts[_i], y: rs.segpts[_i + 1] }; var corner = rs.roundCorners[_i / 2]; var v = [point.x - corner.cx, point.y - corner.cy]; var factor = corner.radius / Math.sqrt(Math.pow(v[0], 2) + Math.pow(v[1], 2)); v = v.map(function (c) { return c * factor; }); rs.midX = corner.cx + v[0]; rs.midY = corner.cy + v[1]; rs.midVector = v; } } } }; BRp$c.checkForInvalidEdgeWarning = function (edge) { var rs = edge[0]._private.rscratch; if (rs.nodesOverlap || number$1(rs.startX) && number$1(rs.startY) && number$1(rs.endX) && number$1(rs.endY)) { rs.loggedErr = false; } else { if (!rs.loggedErr) { rs.loggedErr = true; warn('Edge `' + edge.id() + '` has invalid endpoints and so it is impossible to draw. Adjust your edge style (e.g. control points) accordingly or use an alternative edge type. This is expected behaviour when the source node and the target node overlap.'); } } }; BRp$c.findEdgeControlPoints = function (edges) { var _this = this; if (!edges || edges.length === 0) { return; } var r = this; var cy = r.cy; var hasCompounds = cy.hasCompoundNodes(); var hashTable = { map: new Map$2(), get: function get(pairId) { var map2 = this.map.get(pairId[0]); if (map2 != null) { return map2.get(pairId[1]); } else { return null; } }, set: function set(pairId, val) { var map2 = this.map.get(pairId[0]); if (map2 == null) { map2 = new Map$2(); this.map.set(pairId[0], map2); } map2.set(pairId[1], val); } }; var pairIds = []; var haystackEdges = []; // create a table of edge (src, tgt) => list of edges between them for (var i = 0; i < edges.length; i++) { var edge = edges[i]; var _p = edge._private; var curveStyle = edge.pstyle('curve-style').value; // ignore edges who are not to be displayed // they shouldn't take up space if (edge.removed() || !edge.takesUpSpace()) { continue; } if (curveStyle === 'haystack') { haystackEdges.push(edge); continue; } var edgeIsUnbundled = curveStyle === 'unbundled-bezier' || curveStyle.endsWith('segments') || curveStyle === 'straight' || curveStyle === 'straight-triangle' || curveStyle.endsWith('taxi'); var edgeIsBezier = curveStyle === 'unbundled-bezier' || curveStyle === 'bezier'; var src = _p.source; var tgt = _p.target; var srcIndex = src.poolIndex(); var tgtIndex = tgt.poolIndex(); var pairId = [srcIndex, tgtIndex].sort(); var tableEntry = hashTable.get(pairId); if (tableEntry == null) { tableEntry = { eles: [] }; hashTable.set(pairId, tableEntry); pairIds.push(pairId); } tableEntry.eles.push(edge); if (edgeIsUnbundled) { tableEntry.hasUnbundled = true; } if (edgeIsBezier) { tableEntry.hasBezier = true; } } // for each pair (src, tgt), create the ctrl pts // Nested for loop is OK; total number of iterations for both loops = edgeCount var _loop = function _loop(p) { var pairId = pairIds[p]; var pairInfo = hashTable.get(pairId); var swappedpairInfo = void 0; if (!pairInfo.hasUnbundled) { var pllEdges = pairInfo.eles[0].parallelEdges().filter(function (e) { return e.isBundledBezier(); }); clearArray(pairInfo.eles); pllEdges.forEach(function (edge) { return pairInfo.eles.push(edge); }); // for each pair id, the edges should be sorted by index pairInfo.eles.sort(function (edge1, edge2) { return edge1.poolIndex() - edge2.poolIndex(); }); } var firstEdge = pairInfo.eles[0]; var src = firstEdge.source(); var tgt = firstEdge.target(); // make sure src/tgt distinction is consistent w.r.t. pairId if (src.poolIndex() > tgt.poolIndex()) { var temp = src; src = tgt; tgt = temp; } var srcPos = pairInfo.srcPos = src.position(); var tgtPos = pairInfo.tgtPos = tgt.position(); var srcW = pairInfo.srcW = src.outerWidth(); var srcH = pairInfo.srcH = src.outerHeight(); var tgtW = pairInfo.tgtW = tgt.outerWidth(); var tgtH = pairInfo.tgtH = tgt.outerHeight(); var srcShape = pairInfo.srcShape = r.nodeShapes[_this.getNodeShape(src)]; var tgtShape = pairInfo.tgtShape = r.nodeShapes[_this.getNodeShape(tgt)]; var srcCornerRadius = pairInfo.srcCornerRadius = src.pstyle('corner-radius').value === 'auto' ? 'auto' : src.pstyle('corner-radius').pfValue; var tgtCornerRadius = pairInfo.tgtCornerRadius = tgt.pstyle('corner-radius').value === 'auto' ? 'auto' : tgt.pstyle('corner-radius').pfValue; var tgtRs = pairInfo.tgtRs = tgt._private.rscratch; var srcRs = pairInfo.srcRs = src._private.rscratch; pairInfo.dirCounts = { 'north': 0, 'west': 0, 'south': 0, 'east': 0, 'northwest': 0, 'southwest': 0, 'northeast': 0, 'southeast': 0 }; for (var _i2 = 0; _i2 < pairInfo.eles.length; _i2++) { var _edge = pairInfo.eles[_i2]; var rs = _edge[0]._private.rscratch; var _curveStyle = _edge.pstyle('curve-style').value; var _edgeIsUnbundled = _curveStyle === 'unbundled-bezier' || _curveStyle.endsWith('segments') || _curveStyle.endsWith('taxi'); // whether the normalised pair order is the reverse of the edge's src-tgt order var edgeIsSwapped = !src.same(_edge.source()); if (!pairInfo.calculatedIntersection && src !== tgt && (pairInfo.hasBezier || pairInfo.hasUnbundled)) { pairInfo.calculatedIntersection = true; // pt outside src shape to calc distance/displacement from src to tgt var srcOutside = srcShape.intersectLine(srcPos.x, srcPos.y, srcW, srcH, tgtPos.x, tgtPos.y, 0, srcCornerRadius, srcRs); var srcIntn = pairInfo.srcIntn = srcOutside; // pt outside tgt shape to calc distance/displacement from src to tgt var tgtOutside = tgtShape.intersectLine(tgtPos.x, tgtPos.y, tgtW, tgtH, srcPos.x, srcPos.y, 0, tgtCornerRadius, tgtRs); var tgtIntn = pairInfo.tgtIntn = tgtOutside; var intersectionPts = pairInfo.intersectionPts = { x1: srcOutside[0], x2: tgtOutside[0], y1: srcOutside[1], y2: tgtOutside[1] }; var posPts = pairInfo.posPts = { x1: srcPos.x, x2: tgtPos.x, y1: srcPos.y, y2: tgtPos.y }; var dy = tgtOutside[1] - srcOutside[1]; var dx = tgtOutside[0] - srcOutside[0]; var l = Math.sqrt(dx * dx + dy * dy); var vector = pairInfo.vector = { x: dx, y: dy }; var vectorNorm = pairInfo.vectorNorm = { x: vector.x / l, y: vector.y / l }; var vectorNormInverse = { x: -vectorNorm.y, y: vectorNorm.x }; // if node shapes overlap, then no ctrl pts to draw pairInfo.nodesOverlap = !number$1(l) || tgtShape.checkPoint(srcOutside[0], srcOutside[1], 0, tgtW, tgtH, tgtPos.x, tgtPos.y, tgtCornerRadius, tgtRs) || srcShape.checkPoint(tgtOutside[0], tgtOutside[1], 0, srcW, srcH, srcPos.x, srcPos.y, srcCornerRadius, srcRs); pairInfo.vectorNormInverse = vectorNormInverse; swappedpairInfo = { nodesOverlap: pairInfo.nodesOverlap, dirCounts: pairInfo.dirCounts, calculatedIntersection: true, hasBezier: pairInfo.hasBezier, hasUnbundled: pairInfo.hasUnbundled, eles: pairInfo.eles, srcPos: tgtPos, tgtPos: srcPos, srcW: tgtW, srcH: tgtH, tgtW: srcW, tgtH: srcH, srcIntn: tgtIntn, tgtIntn: srcIntn, srcShape: tgtShape, tgtShape: srcShape, posPts: { x1: posPts.x2, y1: posPts.y2, x2: posPts.x1, y2: posPts.y1 }, intersectionPts: { x1: intersectionPts.x2, y1: intersectionPts.y2, x2: intersectionPts.x1, y2: intersectionPts.y1 }, vector: { x: -vector.x, y: -vector.y }, vectorNorm: { x: -vectorNorm.x, y: -vectorNorm.y }, vectorNormInverse: { x: -vectorNormInverse.x, y: -vectorNormInverse.y } }; } var passedPairInfo = edgeIsSwapped ? swappedpairInfo : pairInfo; rs.nodesOverlap = passedPairInfo.nodesOverlap; rs.srcIntn = passedPairInfo.srcIntn; rs.tgtIntn = passedPairInfo.tgtIntn; rs.isRound = _curveStyle.startsWith('round'); if (hasCompounds && (src.isParent() || src.isChild() || tgt.isParent() || tgt.isChild()) && (src.parents().anySame(tgt) || tgt.parents().anySame(src) || src.same(tgt) && src.isParent())) { _this.findCompoundLoopPoints(_edge, passedPairInfo, _i2, _edgeIsUnbundled); } else if (src === tgt) { _this.findLoopPoints(_edge, passedPairInfo, _i2, _edgeIsUnbundled); } else if (_curveStyle.endsWith('segments')) { _this.findSegmentsPoints(_edge, passedPairInfo); } else if (_curveStyle.endsWith('taxi')) { _this.findTaxiPoints(_edge, passedPairInfo); } else if (_curveStyle === 'straight' || !_edgeIsUnbundled && pairInfo.eles.length % 2 === 1 && _i2 === Math.floor(pairInfo.eles.length / 2)) { _this.findStraightEdgePoints(_edge); } else { _this.findBezierPoints(_edge, passedPairInfo, _i2, _edgeIsUnbundled, edgeIsSwapped); } _this.findEndpoints(_edge); _this.tryToCorrectInvalidPoints(_edge, passedPairInfo); _this.checkForInvalidEdgeWarning(_edge); _this.storeAllpts(_edge); _this.storeEdgeProjections(_edge); _this.calculateArrowAngles(_edge); _this.recalculateEdgeLabelProjections(_edge); _this.calculateLabelAngles(_edge); } // for pair edges }; for (var p = 0; p < pairIds.length; p++) { _loop(p); } // for pair ids // haystacks avoid the expense of pairInfo stuff (intersections etc.) this.findHaystackPoints(haystackEdges); }; function getPts(pts) { var retPts = []; if (pts == null) { return; } for (var i = 0; i < pts.length; i += 2) { var x = pts[i]; var y = pts[i + 1]; retPts.push({ x: x, y: y }); } return retPts; } BRp$c.getSegmentPoints = function (edge) { var rs = edge[0]._private.rscratch; var type = rs.edgeType; if (type === 'segments') { this.recalculateRenderedStyle(edge); return getPts(rs.segpts); } }; BRp$c.getControlPoints = function (edge) { var rs = edge[0]._private.rscratch; var type = rs.edgeType; if (type === 'bezier' || type === 'multibezier' || type === 'self' || type === 'compound') { this.recalculateRenderedStyle(edge); return getPts(rs.ctrlpts); } }; BRp$c.getEdgeMidpoint = function (edge) { var rs = edge[0]._private.rscratch; this.recalculateRenderedStyle(edge); return { x: rs.midX, y: rs.midY }; }; var BRp$b = {}; BRp$b.manualEndptToPx = function (node, prop) { var r = this; var npos = node.position(); var w = node.outerWidth(); var h = node.outerHeight(); var rs = node._private.rscratch; if (prop.value.length === 2) { var p = [prop.pfValue[0], prop.pfValue[1]]; if (prop.units[0] === '%') { p[0] = p[0] * w; } if (prop.units[1] === '%') { p[1] = p[1] * h; } p[0] += npos.x; p[1] += npos.y; return p; } else { var angle = prop.pfValue[0]; angle = -Math.PI / 2 + angle; // start at 12 o'clock var l = 2 * Math.max(w, h); var _p = [npos.x + Math.cos(angle) * l, npos.y + Math.sin(angle) * l]; return r.nodeShapes[this.getNodeShape(node)].intersectLine(npos.x, npos.y, w, h, _p[0], _p[1], 0, node.pstyle('corner-radius').value === 'auto' ? 'auto' : node.pstyle('corner-radius').pfValue, rs); } }; BRp$b.findEndpoints = function (edge) { var r = this; var intersect; var source = edge.source()[0]; var target = edge.target()[0]; var srcPos = source.position(); var tgtPos = target.position(); var tgtArShape = edge.pstyle('target-arrow-shape').value; var srcArShape = edge.pstyle('source-arrow-shape').value; var tgtDist = edge.pstyle('target-distance-from-node').pfValue; var srcDist = edge.pstyle('source-distance-from-node').pfValue; var srcRs = source._private.rscratch; var tgtRs = target._private.rscratch; var curveStyle = edge.pstyle('curve-style').value; var rs = edge._private.rscratch; var et = rs.edgeType; var taxi = curveStyle === 'taxi'; var self = et === 'self' || et === 'compound'; var bezier = et === 'bezier' || et === 'multibezier' || self; var multi = et !== 'bezier'; var lines = et === 'straight' || et === 'segments'; var segments = et === 'segments'; var hasEndpts = bezier || multi || lines; var overrideEndpts = self || taxi; var srcManEndpt = edge.pstyle('source-endpoint'); var srcManEndptVal = overrideEndpts ? 'outside-to-node' : srcManEndpt.value; var srcCornerRadius = source.pstyle('corner-radius').value === 'auto' ? 'auto' : source.pstyle('corner-radius').pfValue; var tgtManEndpt = edge.pstyle('target-endpoint'); var tgtManEndptVal = overrideEndpts ? 'outside-to-node' : tgtManEndpt.value; var tgtCornerRadius = target.pstyle('corner-radius').value === 'auto' ? 'auto' : target.pstyle('corner-radius').pfValue; rs.srcManEndpt = srcManEndpt; rs.tgtManEndpt = tgtManEndpt; var p1; // last known point of edge on target side var p2; // last known point of edge on source side var p1_i; // point to intersect with target shape var p2_i; // point to intersect with source shape if (bezier) { var cpStart = [rs.ctrlpts[0], rs.ctrlpts[1]]; var cpEnd = multi ? [rs.ctrlpts[rs.ctrlpts.length - 2], rs.ctrlpts[rs.ctrlpts.length - 1]] : cpStart; p1 = cpEnd; p2 = cpStart; } else if (lines) { var srcArrowFromPt = !segments ? [tgtPos.x, tgtPos.y] : rs.segpts.slice(0, 2); var tgtArrowFromPt = !segments ? [srcPos.x, srcPos.y] : rs.segpts.slice(rs.segpts.length - 2); p1 = tgtArrowFromPt; p2 = srcArrowFromPt; } if (tgtManEndptVal === 'inside-to-node') { intersect = [tgtPos.x, tgtPos.y]; } else if (tgtManEndpt.units) { intersect = this.manualEndptToPx(target, tgtManEndpt); } else if (tgtManEndptVal === 'outside-to-line') { intersect = rs.tgtIntn; // use cached value from ctrlpt calc } else { if (tgtManEndptVal === 'outside-to-node' || tgtManEndptVal === 'outside-to-node-or-label') { p1_i = p1; } else if (tgtManEndptVal === 'outside-to-line' || tgtManEndptVal === 'outside-to-line-or-label') { p1_i = [srcPos.x, srcPos.y]; } intersect = r.nodeShapes[this.getNodeShape(target)].intersectLine(tgtPos.x, tgtPos.y, target.outerWidth(), target.outerHeight(), p1_i[0], p1_i[1], 0, tgtCornerRadius, tgtRs); if (tgtManEndptVal === 'outside-to-node-or-label' || tgtManEndptVal === 'outside-to-line-or-label') { var trs = target._private.rscratch; var lw = trs.labelWidth; var lh = trs.labelHeight; var lx = trs.labelX; var ly = trs.labelY; var lw2 = lw / 2; var lh2 = lh / 2; var va = target.pstyle('text-valign').value; if (va === 'top') { ly -= lh2; } else if (va === 'bottom') { ly += lh2; } var ha = target.pstyle('text-halign').value; if (ha === 'left') { lx -= lw2; } else if (ha === 'right') { lx += lw2; } var labelIntersect = polygonIntersectLine(p1_i[0], p1_i[1], [lx - lw2, ly - lh2, lx + lw2, ly - lh2, lx + lw2, ly + lh2, lx - lw2, ly + lh2], tgtPos.x, tgtPos.y); if (labelIntersect.length > 0) { var refPt = srcPos; var intSqdist = sqdist(refPt, array2point(intersect)); var labIntSqdist = sqdist(refPt, array2point(labelIntersect)); var minSqDist = intSqdist; if (labIntSqdist < intSqdist) { intersect = labelIntersect; minSqDist = labIntSqdist; } if (labelIntersect.length > 2) { var labInt2SqDist = sqdist(refPt, { x: labelIntersect[2], y: labelIntersect[3] }); if (labInt2SqDist < minSqDist) { intersect = [labelIntersect[2], labelIntersect[3]]; } } } } } var arrowEnd = shortenIntersection(intersect, p1, r.arrowShapes[tgtArShape].spacing(edge) + tgtDist); var edgeEnd = shortenIntersection(intersect, p1, r.arrowShapes[tgtArShape].gap(edge) + tgtDist); rs.endX = edgeEnd[0]; rs.endY = edgeEnd[1]; rs.arrowEndX = arrowEnd[0]; rs.arrowEndY = arrowEnd[1]; if (srcManEndptVal === 'inside-to-node') { intersect = [srcPos.x, srcPos.y]; } else if (srcManEndpt.units) { intersect = this.manualEndptToPx(source, srcManEndpt); } else if (srcManEndptVal === 'outside-to-line') { intersect = rs.srcIntn; // use cached value from ctrlpt calc } else { if (srcManEndptVal === 'outside-to-node' || srcManEndptVal === 'outside-to-node-or-label') { p2_i = p2; } else if (srcManEndptVal === 'outside-to-line' || srcManEndptVal === 'outside-to-line-or-label') { p2_i = [tgtPos.x, tgtPos.y]; } intersect = r.nodeShapes[this.getNodeShape(source)].intersectLine(srcPos.x, srcPos.y, source.outerWidth(), source.outerHeight(), p2_i[0], p2_i[1], 0, srcCornerRadius, srcRs); if (srcManEndptVal === 'outside-to-node-or-label' || srcManEndptVal === 'outside-to-line-or-label') { var srs = source._private.rscratch; var _lw = srs.labelWidth; var _lh = srs.labelHeight; var _lx = srs.labelX; var _ly = srs.labelY; var _lw2 = _lw / 2; var _lh2 = _lh / 2; var _va = source.pstyle('text-valign').value; if (_va === 'top') { _ly -= _lh2; } else if (_va === 'bottom') { _ly += _lh2; } var _ha = source.pstyle('text-halign').value; if (_ha === 'left') { _lx -= _lw2; } else if (_ha === 'right') { _lx += _lw2; } var _labelIntersect = polygonIntersectLine(p2_i[0], p2_i[1], [_lx - _lw2, _ly - _lh2, _lx + _lw2, _ly - _lh2, _lx + _lw2, _ly + _lh2, _lx - _lw2, _ly + _lh2], srcPos.x, srcPos.y); if (_labelIntersect.length > 0) { var _refPt = tgtPos; var _intSqdist = sqdist(_refPt, array2point(intersect)); var _labIntSqdist = sqdist(_refPt, array2point(_labelIntersect)); var _minSqDist = _intSqdist; if (_labIntSqdist < _intSqdist) { intersect = [_labelIntersect[0], _labelIntersect[1]]; _minSqDist = _labIntSqdist; } if (_labelIntersect.length > 2) { var _labInt2SqDist = sqdist(_refPt, { x: _labelIntersect[2], y: _labelIntersect[3] }); if (_labInt2SqDist < _minSqDist) { intersect = [_labelIntersect[2], _labelIntersect[3]]; } } } } } var arrowStart = shortenIntersection(intersect, p2, r.arrowShapes[srcArShape].spacing(edge) + srcDist); var edgeStart = shortenIntersection(intersect, p2, r.arrowShapes[srcArShape].gap(edge) + srcDist); rs.startX = edgeStart[0]; rs.startY = edgeStart[1]; rs.arrowStartX = arrowStart[0]; rs.arrowStartY = arrowStart[1]; if (hasEndpts) { if (!number$1(rs.startX) || !number$1(rs.startY) || !number$1(rs.endX) || !number$1(rs.endY)) { rs.badLine = true; } else { rs.badLine = false; } } }; BRp$b.getSourceEndpoint = function (edge) { var rs = edge[0]._private.rscratch; this.recalculateRenderedStyle(edge); switch (rs.edgeType) { case 'haystack': return { x: rs.haystackPts[0], y: rs.haystackPts[1] }; default: return { x: rs.arrowStartX, y: rs.arrowStartY }; } }; BRp$b.getTargetEndpoint = function (edge) { var rs = edge[0]._private.rscratch; this.recalculateRenderedStyle(edge); switch (rs.edgeType) { case 'haystack': return { x: rs.haystackPts[2], y: rs.haystackPts[3] }; default: return { x: rs.arrowEndX, y: rs.arrowEndY }; } }; var BRp$a = {}; function pushBezierPts(r, edge, pts) { var qbezierAt$1 = function qbezierAt$1(p1, p2, p3, t) { return qbezierAt(p1, p2, p3, t); }; var _p = edge._private; var bpts = _p.rstyle.bezierPts; for (var i = 0; i < r.bezierProjPcts.length; i++) { var p = r.bezierProjPcts[i]; bpts.push({ x: qbezierAt$1(pts[0], pts[2], pts[4], p), y: qbezierAt$1(pts[1], pts[3], pts[5], p) }); } } BRp$a.storeEdgeProjections = function (edge) { var _p = edge._private; var rs = _p.rscratch; var et = rs.edgeType; // clear the cached points state _p.rstyle.bezierPts = null; _p.rstyle.linePts = null; _p.rstyle.haystackPts = null; if (et === 'multibezier' || et === 'bezier' || et === 'self' || et === 'compound') { _p.rstyle.bezierPts = []; for (var i = 0; i + 5 < rs.allpts.length; i += 4) { pushBezierPts(this, edge, rs.allpts.slice(i, i + 6)); } } else if (et === 'segments') { var lpts = _p.rstyle.linePts = []; for (var i = 0; i + 1 < rs.allpts.length; i += 2) { lpts.push({ x: rs.allpts[i], y: rs.allpts[i + 1] }); } } else if (et === 'haystack') { var hpts = rs.haystackPts; _p.rstyle.haystackPts = [{ x: hpts[0], y: hpts[1] }, { x: hpts[2], y: hpts[3] }]; } _p.rstyle.arrowWidth = this.getArrowWidth(edge.pstyle('width').pfValue, edge.pstyle('arrow-scale').value) * this.arrowShapeWidth; }; BRp$a.recalculateEdgeProjections = function (edges) { this.findEdgeControlPoints(edges); }; /* global document */ var BRp$9 = {}; BRp$9.recalculateNodeLabelProjection = function (node) { var content = node.pstyle('label').strValue; if (emptyString(content)) { return; } var textX, textY; var _p = node._private; var nodeWidth = node.width(); var nodeHeight = node.height(); var padding = node.padding(); var nodePos = node.position(); var textHalign = node.pstyle('text-halign').strValue; var textValign = node.pstyle('text-valign').strValue; var rs = _p.rscratch; var rstyle = _p.rstyle; switch (textHalign) { case 'left': textX = nodePos.x - nodeWidth / 2 - padding; break; case 'right': textX = nodePos.x + nodeWidth / 2 + padding; break; default: // e.g. center textX = nodePos.x; } switch (textValign) { case 'top': textY = nodePos.y - nodeHeight / 2 - padding; break; case 'bottom': textY = nodePos.y + nodeHeight / 2 + padding; break; default: // e.g. middle textY = nodePos.y; } rs.labelX = textX; rs.labelY = textY; rstyle.labelX = textX; rstyle.labelY = textY; this.calculateLabelAngles(node); this.applyLabelDimensions(node); }; var lineAngleFromDelta = function lineAngleFromDelta(dx, dy) { var angle = Math.atan(dy / dx); if (dx === 0 && angle < 0) { angle = angle * -1; } return angle; }; var lineAngle = function lineAngle(p0, p1) { var dx = p1.x - p0.x; var dy = p1.y - p0.y; return lineAngleFromDelta(dx, dy); }; var bezierAngle = function bezierAngle(p0, p1, p2, t) { var t0 = bound(0, t - 0.001, 1); var t1 = bound(0, t + 0.001, 1); var lp0 = qbezierPtAt(p0, p1, p2, t0); var lp1 = qbezierPtAt(p0, p1, p2, t1); return lineAngle(lp0, lp1); }; BRp$9.recalculateEdgeLabelProjections = function (edge) { var p; var _p = edge._private; var rs = _p.rscratch; var r = this; var content = { mid: edge.pstyle('label').strValue, source: edge.pstyle('source-label').strValue, target: edge.pstyle('target-label').strValue }; if (content.mid || content.source || content.target) ; else { return; // no labels => no calcs } // add center point to style so bounding box calculations can use it // p = { x: rs.midX, y: rs.midY }; var setRs = function setRs(propName, prefix, value) { setPrefixedProperty(_p.rscratch, propName, prefix, value); setPrefixedProperty(_p.rstyle, propName, prefix, value); }; setRs('labelX', null, p.x); setRs('labelY', null, p.y); var midAngle = lineAngleFromDelta(rs.midDispX, rs.midDispY); setRs('labelAutoAngle', null, midAngle); var createControlPointInfo = function createControlPointInfo() { if (createControlPointInfo.cache) { return createControlPointInfo.cache; } // use cache so only 1x per edge var ctrlpts = []; // store each ctrlpt info init for (var i = 0; i + 5 < rs.allpts.length; i += 4) { var p0 = { x: rs.allpts[i], y: rs.allpts[i + 1] }; var p1 = { x: rs.allpts[i + 2], y: rs.allpts[i + 3] }; // ctrlpt var p2 = { x: rs.allpts[i + 4], y: rs.allpts[i + 5] }; ctrlpts.push({ p0: p0, p1: p1, p2: p2, startDist: 0, length: 0, segments: [] }); } var bpts = _p.rstyle.bezierPts; var nProjs = r.bezierProjPcts.length; function addSegment(cp, p0, p1, t0, t1) { var length = dist(p0, p1); var prevSegment = cp.segments[cp.segments.length - 1]; var segment = { p0: p0, p1: p1, t0: t0, t1: t1, startDist: prevSegment ? prevSegment.startDist + prevSegment.length : 0, length: length }; cp.segments.push(segment); cp.length += length; } // update each ctrlpt with segment info for (var _i = 0; _i < ctrlpts.length; _i++) { var cp = ctrlpts[_i]; var prevCp = ctrlpts[_i - 1]; if (prevCp) { cp.startDist = prevCp.startDist + prevCp.length; } addSegment(cp, cp.p0, bpts[_i * nProjs], 0, r.bezierProjPcts[0]); // first for (var j = 0; j < nProjs - 1; j++) { addSegment(cp, bpts[_i * nProjs + j], bpts[_i * nProjs + j + 1], r.bezierProjPcts[j], r.bezierProjPcts[j + 1]); } addSegment(cp, bpts[_i * nProjs + nProjs - 1], cp.p2, r.bezierProjPcts[nProjs - 1], 1); // last } return createControlPointInfo.cache = ctrlpts; }; var calculateEndProjection = function calculateEndProjection(prefix) { var angle; var isSrc = prefix === 'source'; if (!content[prefix]) { return; } var offset = edge.pstyle(prefix + '-text-offset').pfValue; switch (rs.edgeType) { case 'self': case 'compound': case 'bezier': case 'multibezier': { var cps = createControlPointInfo(); var selected; var startDist = 0; var totalDist = 0; // find the segment we're on for (var i = 0; i < cps.length; i++) { var _cp = cps[isSrc ? i : cps.length - 1 - i]; for (var j = 0; j < _cp.segments.length; j++) { var _seg = _cp.segments[isSrc ? j : _cp.segments.length - 1 - j]; var lastSeg = i === cps.length - 1 && j === _cp.segments.length - 1; startDist = totalDist; totalDist += _seg.length; if (totalDist >= offset || lastSeg) { selected = { cp: _cp, segment: _seg }; break; } } if (selected) { break; } } var cp = selected.cp; var seg = selected.segment; var tSegment = (offset - startDist) / seg.length; var segDt = seg.t1 - seg.t0; var t = isSrc ? seg.t0 + segDt * tSegment : seg.t1 - segDt * tSegment; t = bound(0, t, 1); p = qbezierPtAt(cp.p0, cp.p1, cp.p2, t); angle = bezierAngle(cp.p0, cp.p1, cp.p2, t); break; } case 'straight': case 'segments': case 'haystack': { var d = 0, di, d0; var p0, p1; var l = rs.allpts.length; for (var _i2 = 0; _i2 + 3 < l; _i2 += 2) { if (isSrc) { p0 = { x: rs.allpts[_i2], y: rs.allpts[_i2 + 1] }; p1 = { x: rs.allpts[_i2 + 2], y: rs.allpts[_i2 + 3] }; } else { p0 = { x: rs.allpts[l - 2 - _i2], y: rs.allpts[l - 1 - _i2] }; p1 = { x: rs.allpts[l - 4 - _i2], y: rs.allpts[l - 3 - _i2] }; } di = dist(p0, p1); d0 = d; d += di; if (d >= offset) { break; } } var pD = offset - d0; var _t = pD / di; _t = bound(0, _t, 1); p = lineAt(p0, p1, _t); angle = lineAngle(p0, p1); break; } } setRs('labelX', prefix, p.x); setRs('labelY', prefix, p.y); setRs('labelAutoAngle', prefix, angle); }; calculateEndProjection('source'); calculateEndProjection('target'); this.applyLabelDimensions(edge); }; BRp$9.applyLabelDimensions = function (ele) { this.applyPrefixedLabelDimensions(ele); if (ele.isEdge()) { this.applyPrefixedLabelDimensions(ele, 'source'); this.applyPrefixedLabelDimensions(ele, 'target'); } }; BRp$9.applyPrefixedLabelDimensions = function (ele, prefix) { var _p = ele._private; var text = this.getLabelText(ele, prefix); var labelDims = this.calculateLabelDimensions(ele, text); var lineHeight = ele.pstyle('line-height').pfValue; var textWrap = ele.pstyle('text-wrap').strValue; var lines = getPrefixedProperty(_p.rscratch, 'labelWrapCachedLines', prefix) || []; var numLines = textWrap !== 'wrap' ? 1 : Math.max(lines.length, 1); var normPerLineHeight = labelDims.height / numLines; var labelLineHeight = normPerLineHeight * lineHeight; var width = labelDims.width; var height = labelDims.height + (numLines - 1) * (lineHeight - 1) * normPerLineHeight; setPrefixedProperty(_p.rstyle, 'labelWidth', prefix, width); setPrefixedProperty(_p.rscratch, 'labelWidth', prefix, width); setPrefixedProperty(_p.rstyle, 'labelHeight', prefix, height); setPrefixedProperty(_p.rscratch, 'labelHeight', prefix, height); setPrefixedProperty(_p.rscratch, 'labelLineHeight', prefix, labelLineHeight); }; BRp$9.getLabelText = function (ele, prefix) { var _p = ele._private; var pfd = prefix ? prefix + '-' : ''; var text = ele.pstyle(pfd + 'label').strValue; var textTransform = ele.pstyle('text-transform').value; var rscratch = function rscratch(propName, value) { if (value) { setPrefixedProperty(_p.rscratch, propName, prefix, value); return value; } else { return getPrefixedProperty(_p.rscratch, propName, prefix); } }; // for empty text, skip all processing if (!text) { return ''; } if (textTransform == 'none') ; else if (textTransform == 'uppercase') { text = text.toUpperCase(); } else if (textTransform == 'lowercase') { text = text.toLowerCase(); } var wrapStyle = ele.pstyle('text-wrap').value; if (wrapStyle === 'wrap') { var labelKey = rscratch('labelKey'); // save recalc if the label is the same as before if (labelKey != null && rscratch('labelWrapKey') === labelKey) { return rscratch('labelWrapCachedText'); } var zwsp = "\u200B"; var lines = text.split('\n'); var maxW = ele.pstyle('text-max-width').pfValue; var overflow = ele.pstyle('text-overflow-wrap').value; var overflowAny = overflow === 'anywhere'; var wrappedLines = []; var wordsRegex = /[\s\u200b]+/; var wordSeparator = overflowAny ? '' : ' '; for (var l = 0; l < lines.length; l++) { var line = lines[l]; var lineDims = this.calculateLabelDimensions(ele, line); var lineW = lineDims.width; if (overflowAny) { var processedLine = line.split('').join(zwsp); line = processedLine; } if (lineW > maxW) { // line is too long var words = line.split(wordsRegex); var subline = ''; for (var w = 0; w < words.length; w++) { var word = words[w]; var testLine = subline.length === 0 ? word : subline + wordSeparator + word; var testDims = this.calculateLabelDimensions(ele, testLine); var testW = testDims.width; if (testW <= maxW) { // word fits on current line subline += word + wordSeparator; } else { // word starts new line if (subline) { wrappedLines.push(subline); } subline = word + wordSeparator; } } // if there's remaining text, put it in a wrapped line if (!subline.match(/^[\s\u200b]+$/)) { wrappedLines.push(subline); } } else { // line is already short enough wrappedLines.push(line); } } // for rscratch('labelWrapCachedLines', wrappedLines); text = rscratch('labelWrapCachedText', wrappedLines.join('\n')); rscratch('labelWrapKey', labelKey); } else if (wrapStyle === 'ellipsis') { var _maxW = ele.pstyle('text-max-width').pfValue; var ellipsized = ''; var ellipsis = "\u2026"; var incLastCh = false; if (this.calculateLabelDimensions(ele, text).width < _maxW) { // the label already fits return text; } for (var i = 0; i < text.length; i++) { var widthWithNextCh = this.calculateLabelDimensions(ele, ellipsized + text[i] + ellipsis).width; if (widthWithNextCh > _maxW) { break; } ellipsized += text[i]; if (i === text.length - 1) { incLastCh = true; } } if (!incLastCh) { ellipsized += ellipsis; } return ellipsized; } // if ellipsize return text; }; BRp$9.getLabelJustification = function (ele) { var justification = ele.pstyle('text-justification').strValue; var textHalign = ele.pstyle('text-halign').strValue; if (justification === 'auto') { if (ele.isNode()) { switch (textHalign) { case 'left': return 'right'; case 'right': return 'left'; default: return 'center'; } } else { return 'center'; } } else { return justification; } }; BRp$9.calculateLabelDimensions = function (ele, text) { var r = this; var cacheKey = hashString(text, ele._private.labelDimsKey); var cache = r.labelDimCache || (r.labelDimCache = []); var existingVal = cache[cacheKey]; if (existingVal != null) { return existingVal; } var padding = 0; // add padding around text dims, as the measurement isn't that accurate var fStyle = ele.pstyle('font-style').strValue; var size = ele.pstyle('font-size').pfValue; var family = ele.pstyle('font-family').strValue; var weight = ele.pstyle('font-weight').strValue; var canvas = this.labelCalcCanvas; var c2d = this.labelCalcCanvasContext; if (!canvas) { canvas = this.labelCalcCanvas = document.createElement('canvas'); c2d = this.labelCalcCanvasContext = canvas.getContext('2d'); var ds = canvas.style; ds.position = 'absolute'; ds.left = '-9999px'; ds.top = '-9999px'; ds.zIndex = '-1'; ds.visibility = 'hidden'; ds.pointerEvents = 'none'; } c2d.font = "".concat(fStyle, " ").concat(weight, " ").concat(size, "px ").concat(family); var width = 0; var height = 0; var lines = text.split('\n'); for (var i = 0; i < lines.length; i++) { var line = lines[i]; var metrics = c2d.measureText(line); var w = Math.ceil(metrics.width); var h = size; width = Math.max(w, width); height += h; } width += padding; height += padding; return cache[cacheKey] = { width: width, height: height }; }; BRp$9.calculateLabelAngle = function (ele, prefix) { var _p = ele._private; var rs = _p.rscratch; var isEdge = ele.isEdge(); var prefixDash = prefix ? prefix + '-' : ''; var rot = ele.pstyle(prefixDash + 'text-rotation'); var rotStr = rot.strValue; if (rotStr === 'none') { return 0; } else if (isEdge && rotStr === 'autorotate') { return rs.labelAutoAngle; } else if (rotStr === 'autorotate') { return 0; } else { return rot.pfValue; } }; BRp$9.calculateLabelAngles = function (ele) { var r = this; var isEdge = ele.isEdge(); var _p = ele._private; var rs = _p.rscratch; rs.labelAngle = r.calculateLabelAngle(ele); if (isEdge) { rs.sourceLabelAngle = r.calculateLabelAngle(ele, 'source'); rs.targetLabelAngle = r.calculateLabelAngle(ele, 'target'); } }; var BRp$8 = {}; var TOO_SMALL_CUT_RECT = 28; var warnedCutRect = false; BRp$8.getNodeShape = function (node) { var r = this; var shape = node.pstyle('shape').value; if (shape === 'cutrectangle' && (node.width() < TOO_SMALL_CUT_RECT || node.height() < TOO_SMALL_CUT_RECT)) { if (!warnedCutRect) { warn('The `cutrectangle` node shape can not be used at small sizes so `rectangle` is used instead'); warnedCutRect = true; } return 'rectangle'; } if (node.isParent()) { if (shape === 'rectangle' || shape === 'roundrectangle' || shape === 'round-rectangle' || shape === 'cutrectangle' || shape === 'cut-rectangle' || shape === 'barrel') { return shape; } else { return 'rectangle'; } } if (shape === 'polygon') { var points = node.pstyle('shape-polygon-points').value; return r.nodeShapes.makePolygon(points).name; } return shape; }; var BRp$7 = {}; BRp$7.registerCalculationListeners = function () { var cy = this.cy; var elesToUpdate = cy.collection(); var r = this; var enqueue = function enqueue(eles) { var dirtyStyleCaches = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; elesToUpdate.merge(eles); if (dirtyStyleCaches) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var _p = ele._private; var rstyle = _p.rstyle; rstyle.clean = false; rstyle.cleanConnected = false; } } }; r.binder(cy).on('bounds.* dirty.*', function onDirtyBounds(e) { var ele = e.target; enqueue(ele); }).on('style.* background.*', function onDirtyStyle(e) { var ele = e.target; enqueue(ele, false); }); var updateEleCalcs = function updateEleCalcs(willDraw) { if (willDraw) { var fns = r.onUpdateEleCalcsFns; // because we need to have up-to-date style (e.g. stylesheet mappers) // before calculating rendered style (and pstyle might not be called yet) elesToUpdate.cleanStyle(); for (var i = 0; i < elesToUpdate.length; i++) { var ele = elesToUpdate[i]; var rstyle = ele._private.rstyle; if (ele.isNode() && !rstyle.cleanConnected) { enqueue(ele.connectedEdges()); rstyle.cleanConnected = true; } } if (fns) { for (var _i = 0; _i < fns.length; _i++) { var fn = fns[_i]; fn(willDraw, elesToUpdate); } } r.recalculateRenderedStyle(elesToUpdate); elesToUpdate = cy.collection(); } }; r.flushRenderedStyleQueue = function () { updateEleCalcs(true); }; r.beforeRender(updateEleCalcs, r.beforeRenderPriorities.eleCalcs); }; BRp$7.onUpdateEleCalcs = function (fn) { var fns = this.onUpdateEleCalcsFns = this.onUpdateEleCalcsFns || []; fns.push(fn); }; BRp$7.recalculateRenderedStyle = function (eles, useCache) { var isCleanConnected = function isCleanConnected(ele) { return ele._private.rstyle.cleanConnected; }; var edges = []; var nodes = []; // the renderer can't be used for calcs when destroyed, e.g. ele.boundingBox() if (this.destroyed) { return; } // use cache by default for perf if (useCache === undefined) { useCache = true; } for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var _p = ele._private; var rstyle = _p.rstyle; // an edge may be implicitly dirty b/c of one of its connected nodes // (and a request for recalc may come in between frames) if (ele.isEdge() && (!isCleanConnected(ele.source()) || !isCleanConnected(ele.target()))) { rstyle.clean = false; } // only update if dirty and in graph if (useCache && rstyle.clean || ele.removed()) { continue; } // only update if not display: none if (ele.pstyle('display').value === 'none') { continue; } if (_p.group === 'nodes') { nodes.push(ele); } else { // edges edges.push(ele); } rstyle.clean = true; } // update node data from projections for (var _i2 = 0; _i2 < nodes.length; _i2++) { var _ele = nodes[_i2]; var _p2 = _ele._private; var _rstyle = _p2.rstyle; var pos = _ele.position(); this.recalculateNodeLabelProjection(_ele); _rstyle.nodeX = pos.x; _rstyle.nodeY = pos.y; _rstyle.nodeW = _ele.pstyle('width').pfValue; _rstyle.nodeH = _ele.pstyle('height').pfValue; } this.recalculateEdgeProjections(edges); // update edge data from projections for (var _i3 = 0; _i3 < edges.length; _i3++) { var _ele2 = edges[_i3]; var _p3 = _ele2._private; var _rstyle2 = _p3.rstyle; var rs = _p3.rscratch; // update rstyle positions _rstyle2.srcX = rs.arrowStartX; _rstyle2.srcY = rs.arrowStartY; _rstyle2.tgtX = rs.arrowEndX; _rstyle2.tgtY = rs.arrowEndY; _rstyle2.midX = rs.midX; _rstyle2.midY = rs.midY; _rstyle2.labelAngle = rs.labelAngle; _rstyle2.sourceLabelAngle = rs.sourceLabelAngle; _rstyle2.targetLabelAngle = rs.targetLabelAngle; } }; var BRp$6 = {}; BRp$6.updateCachedGrabbedEles = function () { var eles = this.cachedZSortedEles; if (!eles) { // just let this be recalculated on the next z sort tick return; } eles.drag = []; eles.nondrag = []; var grabTargets = []; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var rs = ele._private.rscratch; if (ele.grabbed() && !ele.isParent()) { grabTargets.push(ele); } else if (rs.inDragLayer) { eles.drag.push(ele); } else { eles.nondrag.push(ele); } } // put the grab target nodes last so it's on top of its neighbourhood for (var i = 0; i < grabTargets.length; i++) { var ele = grabTargets[i]; eles.drag.push(ele); } }; BRp$6.invalidateCachedZSortedEles = function () { this.cachedZSortedEles = null; }; BRp$6.getCachedZSortedEles = function (forceRecalc) { if (forceRecalc || !this.cachedZSortedEles) { var eles = this.cy.mutableElements().toArray(); eles.sort(zIndexSort); eles.interactive = eles.filter(function (ele) { return ele.interactive(); }); this.cachedZSortedEles = eles; this.updateCachedGrabbedEles(); } else { eles = this.cachedZSortedEles; } return eles; }; var BRp$5 = {}; [BRp$e, BRp$d, BRp$c, BRp$b, BRp$a, BRp$9, BRp$8, BRp$7, BRp$6].forEach(function (props) { extend(BRp$5, props); }); var BRp$4 = {}; BRp$4.getCachedImage = function (url, crossOrigin, onLoad) { var r = this; var imageCache = r.imageCache = r.imageCache || {}; var cache = imageCache[url]; if (cache) { if (!cache.image.complete) { cache.image.addEventListener('load', onLoad); } return cache.image; } else { cache = imageCache[url] = imageCache[url] || {}; var image = cache.image = new Image(); // eslint-disable-line no-undef image.addEventListener('load', onLoad); image.addEventListener('error', function () { image.error = true; }); // #1582 safari doesn't load data uris with crossOrigin properly // https://bugs.webkit.org/show_bug.cgi?id=123978 var dataUriPrefix = 'data:'; var isDataUri = url.substring(0, dataUriPrefix.length).toLowerCase() === dataUriPrefix; if (!isDataUri) { // if crossorigin is 'null'(stringified), then manually set it to null crossOrigin = crossOrigin === 'null' ? null : crossOrigin; image.crossOrigin = crossOrigin; // prevent tainted canvas } image.src = url; return image; } }; var BRp$3 = {}; /* global document, window, ResizeObserver, MutationObserver */ BRp$3.registerBinding = function (target, event, handler, useCapture) { // eslint-disable-line no-unused-vars var args = Array.prototype.slice.apply(arguments, [1]); // copy var b = this.binder(target); return b.on.apply(b, args); }; BRp$3.binder = function (tgt) { var r = this; var containerWindow = r.cy.window(); var tgtIsDom = tgt === containerWindow || tgt === containerWindow.document || tgt === containerWindow.document.body || domElement(tgt); if (r.supportsPassiveEvents == null) { // from https://github.com/WICG/EventListenerOptions/blob/gh-pages/explainer.md#feature-detection var supportsPassive = false; try { var opts = Object.defineProperty({}, 'passive', { get: function get() { supportsPassive = true; return true; } }); containerWindow.addEventListener('test', null, opts); } catch (err) { // not supported } r.supportsPassiveEvents = supportsPassive; } var on = function on(event, handler, useCapture) { var args = Array.prototype.slice.call(arguments); if (tgtIsDom && r.supportsPassiveEvents) { // replace useCapture w/ opts obj args[2] = { capture: useCapture != null ? useCapture : false, passive: false, once: false }; } r.bindings.push({ target: tgt, args: args }); (tgt.addEventListener || tgt.on).apply(tgt, args); return this; }; return { on: on, addEventListener: on, addListener: on, bind: on }; }; BRp$3.nodeIsDraggable = function (node) { return node && node.isNode() && !node.locked() && node.grabbable(); }; BRp$3.nodeIsGrabbable = function (node) { return this.nodeIsDraggable(node) && node.interactive(); }; BRp$3.load = function () { var r = this; var containerWindow = r.cy.window(); var isSelected = function isSelected(ele) { return ele.selected(); }; var triggerEvents = function triggerEvents(target, names, e, position) { if (target == null) { target = r.cy; } for (var i = 0; i < names.length; i++) { var name = names[i]; target.emit({ originalEvent: e, type: name, position: position }); } }; var isMultSelKeyDown = function isMultSelKeyDown(e) { return e.shiftKey || e.metaKey || e.ctrlKey; // maybe e.altKey }; var allowPanningPassthrough = function allowPanningPassthrough(down, downs) { var allowPassthrough = true; if (r.cy.hasCompoundNodes() && down && down.pannable()) { // a grabbable compound node below the ele => no passthrough panning for (var i = 0; downs && i < downs.length; i++) { var down = downs[i]; //if any parent node in event hierarchy isn't pannable, reject passthrough if (down.isNode() && down.isParent() && !down.pannable()) { allowPassthrough = false; break; } } } else { allowPassthrough = true; } return allowPassthrough; }; var setGrabbed = function setGrabbed(ele) { ele[0]._private.grabbed = true; }; var setFreed = function setFreed(ele) { ele[0]._private.grabbed = false; }; var setInDragLayer = function setInDragLayer(ele) { ele[0]._private.rscratch.inDragLayer = true; }; var setOutDragLayer = function setOutDragLayer(ele) { ele[0]._private.rscratch.inDragLayer = false; }; var setGrabTarget = function setGrabTarget(ele) { ele[0]._private.rscratch.isGrabTarget = true; }; var removeGrabTarget = function removeGrabTarget(ele) { ele[0]._private.rscratch.isGrabTarget = false; }; var addToDragList = function addToDragList(ele, opts) { var list = opts.addToList; var listHasEle = list.has(ele); if (!listHasEle && ele.grabbable() && !ele.locked()) { list.merge(ele); setGrabbed(ele); } }; // helper function to determine which child nodes and inner edges // of a compound node to be dragged as well as the grabbed and selected nodes var addDescendantsToDrag = function addDescendantsToDrag(node, opts) { if (!node.cy().hasCompoundNodes()) { return; } if (opts.inDragLayer == null && opts.addToList == null) { return; } // nothing to do var innerNodes = node.descendants(); if (opts.inDragLayer) { innerNodes.forEach(setInDragLayer); innerNodes.connectedEdges().forEach(setInDragLayer); } if (opts.addToList) { addToDragList(innerNodes, opts); } }; // adds the given nodes and its neighbourhood to the drag layer var addNodesToDrag = function addNodesToDrag(nodes, opts) { opts = opts || {}; var hasCompoundNodes = nodes.cy().hasCompoundNodes(); if (opts.inDragLayer) { nodes.forEach(setInDragLayer); nodes.neighborhood().stdFilter(function (ele) { return !hasCompoundNodes || ele.isEdge(); }).forEach(setInDragLayer); } if (opts.addToList) { nodes.forEach(function (ele) { addToDragList(ele, opts); }); } addDescendantsToDrag(nodes, opts); // always add to drag // also add nodes and edges related to the topmost ancestor updateAncestorsInDragLayer(nodes, { inDragLayer: opts.inDragLayer }); r.updateCachedGrabbedEles(); }; var addNodeToDrag = addNodesToDrag; var freeDraggedElements = function freeDraggedElements(grabbedEles) { if (!grabbedEles) { return; } // just go over all elements rather than doing a bunch of (possibly expensive) traversals r.getCachedZSortedEles().forEach(function (ele) { setFreed(ele); setOutDragLayer(ele); removeGrabTarget(ele); }); r.updateCachedGrabbedEles(); }; // helper function to determine which ancestor nodes and edges should go // to the drag layer (or should be removed from drag layer). var updateAncestorsInDragLayer = function updateAncestorsInDragLayer(node, opts) { if (opts.inDragLayer == null && opts.addToList == null) { return; } // nothing to do if (!node.cy().hasCompoundNodes()) { return; } // find top-level parent var parent = node.ancestors().orphans(); // no parent node: no nodes to add to the drag layer if (parent.same(node)) { return; } var nodes = parent.descendants().spawnSelf().merge(parent).unmerge(node).unmerge(node.descendants()); var edges = nodes.connectedEdges(); if (opts.inDragLayer) { edges.forEach(setInDragLayer); nodes.forEach(setInDragLayer); } if (opts.addToList) { nodes.forEach(function (ele) { addToDragList(ele, opts); }); } }; var blurActiveDomElement = function blurActiveDomElement() { if (document.activeElement != null && document.activeElement.blur != null) { document.activeElement.blur(); } }; var haveMutationsApi = typeof MutationObserver !== 'undefined'; var haveResizeObserverApi = typeof ResizeObserver !== 'undefined'; // watch for when the cy container is removed from the dom if (haveMutationsApi) { r.removeObserver = new MutationObserver(function (mutns) { // eslint-disable-line no-undef for (var i = 0; i < mutns.length; i++) { var mutn = mutns[i]; var rNodes = mutn.removedNodes; if (rNodes) { for (var j = 0; j < rNodes.length; j++) { var rNode = rNodes[j]; if (rNode === r.container) { r.destroy(); break; } } } } }); if (r.container.parentNode) { r.removeObserver.observe(r.container.parentNode, { childList: true }); } } else { r.registerBinding(r.container, 'DOMNodeRemoved', function (e) { // eslint-disable-line no-unused-vars r.destroy(); }); } var onResize = debounce_1(function () { r.cy.resize(); }, 100); if (haveMutationsApi) { r.styleObserver = new MutationObserver(onResize); // eslint-disable-line no-undef r.styleObserver.observe(r.container, { attributes: true }); } // auto resize r.registerBinding(containerWindow, 'resize', onResize); // eslint-disable-line no-undef if (haveResizeObserverApi) { r.resizeObserver = new ResizeObserver(onResize); // eslint-disable-line no-undef r.resizeObserver.observe(r.container); } var forEachUp = function forEachUp(domEle, fn) { while (domEle != null) { fn(domEle); domEle = domEle.parentNode; } }; var invalidateCoords = function invalidateCoords() { r.invalidateContainerClientCoordsCache(); }; forEachUp(r.container, function (domEle) { r.registerBinding(domEle, 'transitionend', invalidateCoords); r.registerBinding(domEle, 'animationend', invalidateCoords); r.registerBinding(domEle, 'scroll', invalidateCoords); }); // stop right click menu from appearing on cy r.registerBinding(r.container, 'contextmenu', function (e) { e.preventDefault(); }); var inBoxSelection = function inBoxSelection() { return r.selection[4] !== 0; }; var eventInContainer = function eventInContainer(e) { // save cycles if mouse events aren't to be captured var containerPageCoords = r.findContainerClientCoords(); var x = containerPageCoords[0]; var y = containerPageCoords[1]; var width = containerPageCoords[2]; var height = containerPageCoords[3]; var positions = e.touches ? e.touches : [e]; var atLeastOnePosInside = false; for (var i = 0; i < positions.length; i++) { var p = positions[i]; if (x <= p.clientX && p.clientX <= x + width && y <= p.clientY && p.clientY <= y + height) { atLeastOnePosInside = true; break; } } if (!atLeastOnePosInside) { return false; } var container = r.container; var target = e.target; var tParent = target.parentNode; var containerIsTarget = false; while (tParent) { if (tParent === container) { containerIsTarget = true; break; } tParent = tParent.parentNode; } if (!containerIsTarget) { return false; } // if target is outisde cy container, then this event is not for us return true; }; // Primary key r.registerBinding(r.container, 'mousedown', function mousedownHandler(e) { if (!eventInContainer(e)) { return; } e.preventDefault(); blurActiveDomElement(); r.hoverData.capture = true; r.hoverData.which = e.which; var cy = r.cy; var gpos = [e.clientX, e.clientY]; var pos = r.projectIntoViewport(gpos[0], gpos[1]); var select = r.selection; var nears = r.findNearestElements(pos[0], pos[1], true, false); var near = nears[0]; var draggedElements = r.dragData.possibleDragElements; r.hoverData.mdownPos = pos; r.hoverData.mdownGPos = gpos; var checkForTaphold = function checkForTaphold() { r.hoverData.tapholdCancelled = false; clearTimeout(r.hoverData.tapholdTimeout); r.hoverData.tapholdTimeout = setTimeout(function () { if (r.hoverData.tapholdCancelled) { return; } else { var ele = r.hoverData.down; if (ele) { ele.emit({ originalEvent: e, type: 'taphold', position: { x: pos[0], y: pos[1] } }); } else { cy.emit({ originalEvent: e, type: 'taphold', position: { x: pos[0], y: pos[1] } }); } } }, r.tapholdDuration); }; // Right click button if (e.which == 3) { r.hoverData.cxtStarted = true; var cxtEvt = { originalEvent: e, type: 'cxttapstart', position: { x: pos[0], y: pos[1] } }; if (near) { near.activate(); near.emit(cxtEvt); r.hoverData.down = near; } else { cy.emit(cxtEvt); } r.hoverData.downTime = new Date().getTime(); r.hoverData.cxtDragged = false; // Primary button } else if (e.which == 1) { if (near) { near.activate(); } // Element dragging { // If something is under the cursor and it is draggable, prepare to grab it if (near != null) { if (r.nodeIsGrabbable(near)) { var makeEvent = function makeEvent(type) { return { originalEvent: e, type: type, position: { x: pos[0], y: pos[1] } }; }; var triggerGrab = function triggerGrab(ele) { ele.emit(makeEvent('grab')); }; setGrabTarget(near); if (!near.selected()) { draggedElements = r.dragData.possibleDragElements = cy.collection(); addNodeToDrag(near, { addToList: draggedElements }); near.emit(makeEvent('grabon')).emit(makeEvent('grab')); } else { draggedElements = r.dragData.possibleDragElements = cy.collection(); var selectedNodes = cy.$(function (ele) { return ele.isNode() && ele.selected() && r.nodeIsGrabbable(ele); }); addNodesToDrag(selectedNodes, { addToList: draggedElements }); near.emit(makeEvent('grabon')); selectedNodes.forEach(triggerGrab); } r.redrawHint('eles', true); r.redrawHint('drag', true); } } r.hoverData.down = near; r.hoverData.downs = nears; r.hoverData.downTime = new Date().getTime(); } triggerEvents(near, ['mousedown', 'tapstart', 'vmousedown'], e, { x: pos[0], y: pos[1] }); if (near == null) { select[4] = 1; r.data.bgActivePosistion = { x: pos[0], y: pos[1] }; r.redrawHint('select', true); r.redraw(); } else if (near.pannable()) { select[4] = 1; // for future pan } checkForTaphold(); } // Initialize selection box coordinates select[0] = select[2] = pos[0]; select[1] = select[3] = pos[1]; }, false); r.registerBinding(containerWindow, 'mousemove', function mousemoveHandler(e) { // eslint-disable-line no-undef var capture = r.hoverData.capture; if (!capture && !eventInContainer(e)) { return; } var preventDefault = false; var cy = r.cy; var zoom = cy.zoom(); var gpos = [e.clientX, e.clientY]; var pos = r.projectIntoViewport(gpos[0], gpos[1]); var mdownPos = r.hoverData.mdownPos; var mdownGPos = r.hoverData.mdownGPos; var select = r.selection; var near = null; if (!r.hoverData.draggingEles && !r.hoverData.dragging && !r.hoverData.selecting) { near = r.findNearestElement(pos[0], pos[1], true, false); } var last = r.hoverData.last; var down = r.hoverData.down; var disp = [pos[0] - select[2], pos[1] - select[3]]; var draggedElements = r.dragData.possibleDragElements; var isOverThresholdDrag; if (mdownGPos) { var dx = gpos[0] - mdownGPos[0]; var dx2 = dx * dx; var dy = gpos[1] - mdownGPos[1]; var dy2 = dy * dy; var dist2 = dx2 + dy2; r.hoverData.isOverThresholdDrag = isOverThresholdDrag = dist2 >= r.desktopTapThreshold2; } var multSelKeyDown = isMultSelKeyDown(e); if (isOverThresholdDrag) { r.hoverData.tapholdCancelled = true; } var updateDragDelta = function updateDragDelta() { var dragDelta = r.hoverData.dragDelta = r.hoverData.dragDelta || []; if (dragDelta.length === 0) { dragDelta.push(disp[0]); dragDelta.push(disp[1]); } else { dragDelta[0] += disp[0]; dragDelta[1] += disp[1]; } }; preventDefault = true; triggerEvents(near, ['mousemove', 'vmousemove', 'tapdrag'], e, { x: pos[0], y: pos[1] }); var goIntoBoxMode = function goIntoBoxMode() { r.data.bgActivePosistion = undefined; if (!r.hoverData.selecting) { cy.emit({ originalEvent: e, type: 'boxstart', position: { x: pos[0], y: pos[1] } }); } select[4] = 1; r.hoverData.selecting = true; r.redrawHint('select', true); r.redraw(); }; // trigger context drag if rmouse down if (r.hoverData.which === 3) { // but only if over threshold if (isOverThresholdDrag) { var cxtEvt = { originalEvent: e, type: 'cxtdrag', position: { x: pos[0], y: pos[1] } }; if (down) { down.emit(cxtEvt); } else { cy.emit(cxtEvt); } r.hoverData.cxtDragged = true; if (!r.hoverData.cxtOver || near !== r.hoverData.cxtOver) { if (r.hoverData.cxtOver) { r.hoverData.cxtOver.emit({ originalEvent: e, type: 'cxtdragout', position: { x: pos[0], y: pos[1] } }); } r.hoverData.cxtOver = near; if (near) { near.emit({ originalEvent: e, type: 'cxtdragover', position: { x: pos[0], y: pos[1] } }); } } } // Check if we are drag panning the entire graph } else if (r.hoverData.dragging) { preventDefault = true; if (cy.panningEnabled() && cy.userPanningEnabled()) { var deltaP; if (r.hoverData.justStartedPan) { var mdPos = r.hoverData.mdownPos; deltaP = { x: (pos[0] - mdPos[0]) * zoom, y: (pos[1] - mdPos[1]) * zoom }; r.hoverData.justStartedPan = false; } else { deltaP = { x: disp[0] * zoom, y: disp[1] * zoom }; } cy.panBy(deltaP); cy.emit('dragpan'); r.hoverData.dragged = true; } // Needs reproject due to pan changing viewport pos = r.projectIntoViewport(e.clientX, e.clientY); // Checks primary button down & out of time & mouse not moved much } else if (select[4] == 1 && (down == null || down.pannable())) { if (isOverThresholdDrag) { if (!r.hoverData.dragging && cy.boxSelectionEnabled() && (multSelKeyDown || !cy.panningEnabled() || !cy.userPanningEnabled())) { goIntoBoxMode(); } else if (!r.hoverData.selecting && cy.panningEnabled() && cy.userPanningEnabled()) { var allowPassthrough = allowPanningPassthrough(down, r.hoverData.downs); if (allowPassthrough) { r.hoverData.dragging = true; r.hoverData.justStartedPan = true; select[4] = 0; r.data.bgActivePosistion = array2point(mdownPos); r.redrawHint('select', true); r.redraw(); } } if (down && down.pannable() && down.active()) { down.unactivate(); } } } else { if (down && down.pannable() && down.active()) { down.unactivate(); } if ((!down || !down.grabbed()) && near != last) { if (last) { triggerEvents(last, ['mouseout', 'tapdragout'], e, { x: pos[0], y: pos[1] }); } if (near) { triggerEvents(near, ['mouseover', 'tapdragover'], e, { x: pos[0], y: pos[1] }); } r.hoverData.last = near; } if (down) { if (isOverThresholdDrag) { // then we can take action if (cy.boxSelectionEnabled() && multSelKeyDown) { // then selection overrides if (down && down.grabbed()) { freeDraggedElements(draggedElements); down.emit('freeon'); draggedElements.emit('free'); if (r.dragData.didDrag) { down.emit('dragfreeon'); draggedElements.emit('dragfree'); } } goIntoBoxMode(); } else if (down && down.grabbed() && r.nodeIsDraggable(down)) { // drag node var justStartedDrag = !r.dragData.didDrag; if (justStartedDrag) { r.redrawHint('eles', true); } r.dragData.didDrag = true; // indicate that we actually did drag the node // now, add the elements to the drag layer if not done already if (!r.hoverData.draggingEles) { addNodesToDrag(draggedElements, { inDragLayer: true }); } var totalShift = { x: 0, y: 0 }; if (number$1(disp[0]) && number$1(disp[1])) { totalShift.x += disp[0]; totalShift.y += disp[1]; if (justStartedDrag) { var dragDelta = r.hoverData.dragDelta; if (dragDelta && number$1(dragDelta[0]) && number$1(dragDelta[1])) { totalShift.x += dragDelta[0]; totalShift.y += dragDelta[1]; } } } r.hoverData.draggingEles = true; draggedElements.silentShift(totalShift).emit('position drag'); r.redrawHint('drag', true); r.redraw(); } } else { // otherwise save drag delta for when we actually start dragging so the relative grab pos is constant updateDragDelta(); } } // prevent the dragging from triggering text selection on the page preventDefault = true; } select[2] = pos[0]; select[3] = pos[1]; if (preventDefault) { if (e.stopPropagation) e.stopPropagation(); if (e.preventDefault) e.preventDefault(); return false; } }, false); var clickTimeout, didDoubleClick, prevClickTimeStamp; r.registerBinding(containerWindow, 'mouseup', function mouseupHandler(e) { // eslint-disable-line no-undef var capture = r.hoverData.capture; if (!capture) { return; } r.hoverData.capture = false; var cy = r.cy; var pos = r.projectIntoViewport(e.clientX, e.clientY); var select = r.selection; var near = r.findNearestElement(pos[0], pos[1], true, false); var draggedElements = r.dragData.possibleDragElements; var down = r.hoverData.down; var multSelKeyDown = isMultSelKeyDown(e); if (r.data.bgActivePosistion) { r.redrawHint('select', true); r.redraw(); } r.hoverData.tapholdCancelled = true; r.data.bgActivePosistion = undefined; // not active bg now if (down) { down.unactivate(); } if (r.hoverData.which === 3) { var cxtEvt = { originalEvent: e, type: 'cxttapend', position: { x: pos[0], y: pos[1] } }; if (down) { down.emit(cxtEvt); } else { cy.emit(cxtEvt); } if (!r.hoverData.cxtDragged) { var cxtTap = { originalEvent: e, type: 'cxttap', position: { x: pos[0], y: pos[1] } }; if (down) { down.emit(cxtTap); } else { cy.emit(cxtTap); } } r.hoverData.cxtDragged = false; r.hoverData.which = null; } else if (r.hoverData.which === 1) { triggerEvents(near, ['mouseup', 'tapend', 'vmouseup'], e, { x: pos[0], y: pos[1] }); if (!r.dragData.didDrag && // didn't move a node around !r.hoverData.dragged && // didn't pan !r.hoverData.selecting && // not box selection !r.hoverData.isOverThresholdDrag // didn't move too much ) { triggerEvents(down, ["click", "tap", "vclick"], e, { x: pos[0], y: pos[1] }); didDoubleClick = false; if (e.timeStamp - prevClickTimeStamp <= cy.multiClickDebounceTime()) { clickTimeout && clearTimeout(clickTimeout); didDoubleClick = true; prevClickTimeStamp = null; triggerEvents(down, ["dblclick", "dbltap", "vdblclick"], e, { x: pos[0], y: pos[1] }); } else { clickTimeout = setTimeout(function () { if (didDoubleClick) return; triggerEvents(down, ["oneclick", "onetap", "voneclick"], e, { x: pos[0], y: pos[1] }); }, cy.multiClickDebounceTime()); prevClickTimeStamp = e.timeStamp; } } // Deselect all elements if nothing is currently under the mouse cursor and we aren't dragging something if (down == null // not mousedown on node && !r.dragData.didDrag // didn't move the node around && !r.hoverData.selecting // not box selection && !r.hoverData.dragged // didn't pan && !isMultSelKeyDown(e)) { cy.$(isSelected).unselect(['tapunselect']); if (draggedElements.length > 0) { r.redrawHint('eles', true); } r.dragData.possibleDragElements = draggedElements = cy.collection(); } // Single selection if (near == down && !r.dragData.didDrag && !r.hoverData.selecting) { if (near != null && near._private.selectable) { if (r.hoverData.dragging) ; else if (cy.selectionType() === 'additive' || multSelKeyDown) { if (near.selected()) { near.unselect(['tapunselect']); } else { near.select(['tapselect']); } } else { if (!multSelKeyDown) { cy.$(isSelected).unmerge(near).unselect(['tapunselect']); near.select(['tapselect']); } } r.redrawHint('eles', true); } } if (r.hoverData.selecting) { var box = cy.collection(r.getAllInBox(select[0], select[1], select[2], select[3])); r.redrawHint('select', true); if (box.length > 0) { r.redrawHint('eles', true); } cy.emit({ type: 'boxend', originalEvent: e, position: { x: pos[0], y: pos[1] } }); var eleWouldBeSelected = function eleWouldBeSelected(ele) { return ele.selectable() && !ele.selected(); }; if (cy.selectionType() === 'additive') { box.emit('box').stdFilter(eleWouldBeSelected).select().emit('boxselect'); } else { if (!multSelKeyDown) { cy.$(isSelected).unmerge(box).unselect(); } box.emit('box').stdFilter(eleWouldBeSelected).select().emit('boxselect'); } // always need redraw in case eles unselectable r.redraw(); } // Cancel drag pan if (r.hoverData.dragging) { r.hoverData.dragging = false; r.redrawHint('select', true); r.redrawHint('eles', true); r.redraw(); } if (!select[4]) { r.redrawHint('drag', true); r.redrawHint('eles', true); var downWasGrabbed = down && down.grabbed(); freeDraggedElements(draggedElements); if (downWasGrabbed) { down.emit('freeon'); draggedElements.emit('free'); if (r.dragData.didDrag) { down.emit('dragfreeon'); draggedElements.emit('dragfree'); } } } } // else not right mouse select[4] = 0; r.hoverData.down = null; r.hoverData.cxtStarted = false; r.hoverData.draggingEles = false; r.hoverData.selecting = false; r.hoverData.isOverThresholdDrag = false; r.dragData.didDrag = false; r.hoverData.dragged = false; r.hoverData.dragDelta = []; r.hoverData.mdownPos = null; r.hoverData.mdownGPos = null; }, false); var wheelHandler = function wheelHandler(e) { if (r.scrollingPage) { return; } // while scrolling, ignore wheel-to-zoom var cy = r.cy; var zoom = cy.zoom(); var pan = cy.pan(); var pos = r.projectIntoViewport(e.clientX, e.clientY); var rpos = [pos[0] * zoom + pan.x, pos[1] * zoom + pan.y]; if (r.hoverData.draggingEles || r.hoverData.dragging || r.hoverData.cxtStarted || inBoxSelection()) { // if pan dragging or cxt dragging, wheel movements make no zoom e.preventDefault(); return; } if (cy.panningEnabled() && cy.userPanningEnabled() && cy.zoomingEnabled() && cy.userZoomingEnabled()) { e.preventDefault(); r.data.wheelZooming = true; clearTimeout(r.data.wheelTimeout); r.data.wheelTimeout = setTimeout(function () { r.data.wheelZooming = false; r.redrawHint('eles', true); r.redraw(); }, 150); var diff; if (e.deltaY != null) { diff = e.deltaY / -250; } else if (e.wheelDeltaY != null) { diff = e.wheelDeltaY / 1000; } else { diff = e.wheelDelta / 1000; } diff = diff * r.wheelSensitivity; var needsWheelFix = e.deltaMode === 1; if (needsWheelFix) { // fixes slow wheel events on ff/linux and ff/windows diff *= 33; } var newZoom = cy.zoom() * Math.pow(10, diff); if (e.type === 'gesturechange') { newZoom = r.gestureStartZoom * e.scale; } cy.zoom({ level: newZoom, renderedPosition: { x: rpos[0], y: rpos[1] } }); cy.emit(e.type === 'gesturechange' ? 'pinchzoom' : 'scrollzoom'); } }; // Functions to help with whether mouse wheel should trigger zooming // -- r.registerBinding(r.container, 'wheel', wheelHandler, true); // disable nonstandard wheel events // r.registerBinding(r.container, 'mousewheel', wheelHandler, true); // r.registerBinding(r.container, 'DOMMouseScroll', wheelHandler, true); // r.registerBinding(r.container, 'MozMousePixelScroll', wheelHandler, true); // older firefox r.registerBinding(containerWindow, 'scroll', function scrollHandler(e) { // eslint-disable-line no-unused-vars r.scrollingPage = true; clearTimeout(r.scrollingPageTimeout); r.scrollingPageTimeout = setTimeout(function () { r.scrollingPage = false; }, 250); }, true); // desktop safari pinch to zoom start r.registerBinding(r.container, 'gesturestart', function gestureStartHandler(e) { r.gestureStartZoom = r.cy.zoom(); if (!r.hasTouchStarted) { // don't affect touch devices like iphone e.preventDefault(); } }, true); r.registerBinding(r.container, 'gesturechange', function (e) { if (!r.hasTouchStarted) { // don't affect touch devices like iphone wheelHandler(e); } }, true); // Functions to help with handling mouseout/mouseover on the Cytoscape container // Handle mouseout on Cytoscape container r.registerBinding(r.container, 'mouseout', function mouseOutHandler(e) { var pos = r.projectIntoViewport(e.clientX, e.clientY); r.cy.emit({ originalEvent: e, type: 'mouseout', position: { x: pos[0], y: pos[1] } }); }, false); r.registerBinding(r.container, 'mouseover', function mouseOverHandler(e) { var pos = r.projectIntoViewport(e.clientX, e.clientY); r.cy.emit({ originalEvent: e, type: 'mouseover', position: { x: pos[0], y: pos[1] } }); }, false); var f1x1, f1y1, f2x1, f2y1; // starting points for pinch-to-zoom var distance1, distance1Sq; // initial distance between finger 1 and finger 2 for pinch-to-zoom var center1, modelCenter1; // center point on start pinch to zoom var offsetLeft, offsetTop; var containerWidth, containerHeight; var twoFingersStartInside; var distance = function distance(x1, y1, x2, y2) { return Math.sqrt((x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1)); }; var distanceSq = function distanceSq(x1, y1, x2, y2) { return (x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1); }; var touchstartHandler; r.registerBinding(r.container, 'touchstart', touchstartHandler = function touchstartHandler(e) { r.hasTouchStarted = true; if (!eventInContainer(e)) { return; } blurActiveDomElement(); r.touchData.capture = true; r.data.bgActivePosistion = undefined; var cy = r.cy; var now = r.touchData.now; var earlier = r.touchData.earlier; if (e.touches[0]) { var pos = r.projectIntoViewport(e.touches[0].clientX, e.touches[0].clientY); now[0] = pos[0]; now[1] = pos[1]; } if (e.touches[1]) { var pos = r.projectIntoViewport(e.touches[1].clientX, e.touches[1].clientY); now[2] = pos[0]; now[3] = pos[1]; } if (e.touches[2]) { var pos = r.projectIntoViewport(e.touches[2].clientX, e.touches[2].clientY); now[4] = pos[0]; now[5] = pos[1]; } // record starting points for pinch-to-zoom if (e.touches[1]) { r.touchData.singleTouchMoved = true; freeDraggedElements(r.dragData.touchDragEles); var offsets = r.findContainerClientCoords(); offsetLeft = offsets[0]; offsetTop = offsets[1]; containerWidth = offsets[2]; containerHeight = offsets[3]; f1x1 = e.touches[0].clientX - offsetLeft; f1y1 = e.touches[0].clientY - offsetTop; f2x1 = e.touches[1].clientX - offsetLeft; f2y1 = e.touches[1].clientY - offsetTop; twoFingersStartInside = 0 <= f1x1 && f1x1 <= containerWidth && 0 <= f2x1 && f2x1 <= containerWidth && 0 <= f1y1 && f1y1 <= containerHeight && 0 <= f2y1 && f2y1 <= containerHeight; var pan = cy.pan(); var zoom = cy.zoom(); distance1 = distance(f1x1, f1y1, f2x1, f2y1); distance1Sq = distanceSq(f1x1, f1y1, f2x1, f2y1); center1 = [(f1x1 + f2x1) / 2, (f1y1 + f2y1) / 2]; modelCenter1 = [(center1[0] - pan.x) / zoom, (center1[1] - pan.y) / zoom]; // consider context tap var cxtDistThreshold = 200; var cxtDistThresholdSq = cxtDistThreshold * cxtDistThreshold; if (distance1Sq < cxtDistThresholdSq && !e.touches[2]) { var near1 = r.findNearestElement(now[0], now[1], true, true); var near2 = r.findNearestElement(now[2], now[3], true, true); if (near1 && near1.isNode()) { near1.activate().emit({ originalEvent: e, type: 'cxttapstart', position: { x: now[0], y: now[1] } }); r.touchData.start = near1; } else if (near2 && near2.isNode()) { near2.activate().emit({ originalEvent: e, type: 'cxttapstart', position: { x: now[0], y: now[1] } }); r.touchData.start = near2; } else { cy.emit({ originalEvent: e, type: 'cxttapstart', position: { x: now[0], y: now[1] } }); } if (r.touchData.start) { r.touchData.start._private.grabbed = false; } r.touchData.cxt = true; r.touchData.cxtDragged = false; r.data.bgActivePosistion = undefined; r.redraw(); return; } } if (e.touches[2]) { // ignore // safari on ios pans the page otherwise (normally you should be able to preventdefault on touchmove...) if (cy.boxSelectionEnabled()) { e.preventDefault(); } } else if (e.touches[1]) ; else if (e.touches[0]) { var nears = r.findNearestElements(now[0], now[1], true, true); var near = nears[0]; if (near != null) { near.activate(); r.touchData.start = near; r.touchData.starts = nears; if (r.nodeIsGrabbable(near)) { var draggedEles = r.dragData.touchDragEles = cy.collection(); var selectedNodes = null; r.redrawHint('eles', true); r.redrawHint('drag', true); if (near.selected()) { // reset drag elements, since near will be added again selectedNodes = cy.$(function (ele) { return ele.selected() && r.nodeIsGrabbable(ele); }); addNodesToDrag(selectedNodes, { addToList: draggedEles }); } else { addNodeToDrag(near, { addToList: draggedEles }); } setGrabTarget(near); var makeEvent = function makeEvent(type) { return { originalEvent: e, type: type, position: { x: now[0], y: now[1] } }; }; near.emit(makeEvent('grabon')); if (selectedNodes) { selectedNodes.forEach(function (n) { n.emit(makeEvent('grab')); }); } else { near.emit(makeEvent('grab')); } } } triggerEvents(near, ['touchstart', 'tapstart', 'vmousedown'], e, { x: now[0], y: now[1] }); if (near == null) { r.data.bgActivePosistion = { x: pos[0], y: pos[1] }; r.redrawHint('select', true); r.redraw(); } // Tap, taphold // ----- r.touchData.singleTouchMoved = false; r.touchData.singleTouchStartTime = +new Date(); clearTimeout(r.touchData.tapholdTimeout); r.touchData.tapholdTimeout = setTimeout(function () { if (r.touchData.singleTouchMoved === false && !r.pinching // if pinching, then taphold unselect shouldn't take effect && !r.touchData.selecting // box selection shouldn't allow taphold through ) { triggerEvents(r.touchData.start, ['taphold'], e, { x: now[0], y: now[1] }); } }, r.tapholdDuration); } if (e.touches.length >= 1) { var sPos = r.touchData.startPosition = [null, null, null, null, null, null]; for (var i = 0; i < now.length; i++) { sPos[i] = earlier[i] = now[i]; } var touch0 = e.touches[0]; r.touchData.startGPosition = [touch0.clientX, touch0.clientY]; } }, false); var touchmoveHandler; r.registerBinding(window, 'touchmove', touchmoveHandler = function touchmoveHandler(e) { // eslint-disable-line no-undef var capture = r.touchData.capture; if (!capture && !eventInContainer(e)) { return; } var select = r.selection; var cy = r.cy; var now = r.touchData.now; var earlier = r.touchData.earlier; var zoom = cy.zoom(); if (e.touches[0]) { var pos = r.projectIntoViewport(e.touches[0].clientX, e.touches[0].clientY); now[0] = pos[0]; now[1] = pos[1]; } if (e.touches[1]) { var pos = r.projectIntoViewport(e.touches[1].clientX, e.touches[1].clientY); now[2] = pos[0]; now[3] = pos[1]; } if (e.touches[2]) { var pos = r.projectIntoViewport(e.touches[2].clientX, e.touches[2].clientY); now[4] = pos[0]; now[5] = pos[1]; } var startGPos = r.touchData.startGPosition; var isOverThresholdDrag; if (capture && e.touches[0] && startGPos) { var disp = []; for (var j = 0; j < now.length; j++) { disp[j] = now[j] - earlier[j]; } var dx = e.touches[0].clientX - startGPos[0]; var dx2 = dx * dx; var dy = e.touches[0].clientY - startGPos[1]; var dy2 = dy * dy; var dist2 = dx2 + dy2; isOverThresholdDrag = dist2 >= r.touchTapThreshold2; } // context swipe cancelling if (capture && r.touchData.cxt) { e.preventDefault(); var f1x2 = e.touches[0].clientX - offsetLeft, f1y2 = e.touches[0].clientY - offsetTop; var f2x2 = e.touches[1].clientX - offsetLeft, f2y2 = e.touches[1].clientY - offsetTop; // var distance2 = distance( f1x2, f1y2, f2x2, f2y2 ); var distance2Sq = distanceSq(f1x2, f1y2, f2x2, f2y2); var factorSq = distance2Sq / distance1Sq; var distThreshold = 150; var distThresholdSq = distThreshold * distThreshold; var factorThreshold = 1.5; var factorThresholdSq = factorThreshold * factorThreshold; // cancel ctx gestures if the distance b/t the fingers increases if (factorSq >= factorThresholdSq || distance2Sq >= distThresholdSq) { r.touchData.cxt = false; r.data.bgActivePosistion = undefined; r.redrawHint('select', true); var cxtEvt = { originalEvent: e, type: 'cxttapend', position: { x: now[0], y: now[1] } }; if (r.touchData.start) { r.touchData.start.unactivate().emit(cxtEvt); r.touchData.start = null; } else { cy.emit(cxtEvt); } } } // context swipe if (capture && r.touchData.cxt) { var cxtEvt = { originalEvent: e, type: 'cxtdrag', position: { x: now[0], y: now[1] } }; r.data.bgActivePosistion = undefined; r.redrawHint('select', true); if (r.touchData.start) { r.touchData.start.emit(cxtEvt); } else { cy.emit(cxtEvt); } if (r.touchData.start) { r.touchData.start._private.grabbed = false; } r.touchData.cxtDragged = true; var near = r.findNearestElement(now[0], now[1], true, true); if (!r.touchData.cxtOver || near !== r.touchData.cxtOver) { if (r.touchData.cxtOver) { r.touchData.cxtOver.emit({ originalEvent: e, type: 'cxtdragout', position: { x: now[0], y: now[1] } }); } r.touchData.cxtOver = near; if (near) { near.emit({ originalEvent: e, type: 'cxtdragover', position: { x: now[0], y: now[1] } }); } } // box selection } else if (capture && e.touches[2] && cy.boxSelectionEnabled()) { e.preventDefault(); r.data.bgActivePosistion = undefined; this.lastThreeTouch = +new Date(); if (!r.touchData.selecting) { cy.emit({ originalEvent: e, type: 'boxstart', position: { x: now[0], y: now[1] } }); } r.touchData.selecting = true; r.touchData.didSelect = true; select[4] = 1; if (!select || select.length === 0 || select[0] === undefined) { select[0] = (now[0] + now[2] + now[4]) / 3; select[1] = (now[1] + now[3] + now[5]) / 3; select[2] = (now[0] + now[2] + now[4]) / 3 + 1; select[3] = (now[1] + now[3] + now[5]) / 3 + 1; } else { select[2] = (now[0] + now[2] + now[4]) / 3; select[3] = (now[1] + now[3] + now[5]) / 3; } r.redrawHint('select', true); r.redraw(); // pinch to zoom } else if (capture && e.touches[1] && !r.touchData.didSelect // don't allow box selection to degrade to pinch-to-zoom && cy.zoomingEnabled() && cy.panningEnabled() && cy.userZoomingEnabled() && cy.userPanningEnabled()) { // two fingers => pinch to zoom e.preventDefault(); r.data.bgActivePosistion = undefined; r.redrawHint('select', true); var draggedEles = r.dragData.touchDragEles; if (draggedEles) { r.redrawHint('drag', true); for (var i = 0; i < draggedEles.length; i++) { var de_p = draggedEles[i]._private; de_p.grabbed = false; de_p.rscratch.inDragLayer = false; } } var _start = r.touchData.start; // (x2, y2) for fingers 1 and 2 var f1x2 = e.touches[0].clientX - offsetLeft, f1y2 = e.touches[0].clientY - offsetTop; var f2x2 = e.touches[1].clientX - offsetLeft, f2y2 = e.touches[1].clientY - offsetTop; var distance2 = distance(f1x2, f1y2, f2x2, f2y2); // var distance2Sq = distanceSq( f1x2, f1y2, f2x2, f2y2 ); // var factor = Math.sqrt( distance2Sq ) / Math.sqrt( distance1Sq ); var factor = distance2 / distance1; if (twoFingersStartInside) { // delta finger1 var df1x = f1x2 - f1x1; var df1y = f1y2 - f1y1; // delta finger 2 var df2x = f2x2 - f2x1; var df2y = f2y2 - f2y1; // translation is the normalised vector of the two fingers movement // i.e. so pinching cancels out and moving together pans var tx = (df1x + df2x) / 2; var ty = (df1y + df2y) / 2; // now calculate the zoom var zoom1 = cy.zoom(); var zoom2 = zoom1 * factor; var pan1 = cy.pan(); // the model center point converted to the current rendered pos var ctrx = modelCenter1[0] * zoom1 + pan1.x; var ctry = modelCenter1[1] * zoom1 + pan1.y; var pan2 = { x: -zoom2 / zoom1 * (ctrx - pan1.x - tx) + ctrx, y: -zoom2 / zoom1 * (ctry - pan1.y - ty) + ctry }; // remove dragged eles if (_start && _start.active()) { var draggedEles = r.dragData.touchDragEles; freeDraggedElements(draggedEles); r.redrawHint('drag', true); r.redrawHint('eles', true); _start.unactivate().emit('freeon'); draggedEles.emit('free'); if (r.dragData.didDrag) { _start.emit('dragfreeon'); draggedEles.emit('dragfree'); } } cy.viewport({ zoom: zoom2, pan: pan2, cancelOnFailedZoom: true }); cy.emit('pinchzoom'); distance1 = distance2; f1x1 = f1x2; f1y1 = f1y2; f2x1 = f2x2; f2y1 = f2y2; r.pinching = true; } // Re-project if (e.touches[0]) { var pos = r.projectIntoViewport(e.touches[0].clientX, e.touches[0].clientY); now[0] = pos[0]; now[1] = pos[1]; } if (e.touches[1]) { var pos = r.projectIntoViewport(e.touches[1].clientX, e.touches[1].clientY); now[2] = pos[0]; now[3] = pos[1]; } if (e.touches[2]) { var pos = r.projectIntoViewport(e.touches[2].clientX, e.touches[2].clientY); now[4] = pos[0]; now[5] = pos[1]; } } else if (e.touches[0] && !r.touchData.didSelect // don't allow box selection to degrade to single finger events like panning ) { var start = r.touchData.start; var last = r.touchData.last; var near; if (!r.hoverData.draggingEles && !r.swipePanning) { near = r.findNearestElement(now[0], now[1], true, true); } if (capture && start != null) { e.preventDefault(); } // dragging nodes if (capture && start != null && r.nodeIsDraggable(start)) { if (isOverThresholdDrag) { // then dragging can happen var draggedEles = r.dragData.touchDragEles; var justStartedDrag = !r.dragData.didDrag; if (justStartedDrag) { addNodesToDrag(draggedEles, { inDragLayer: true }); } r.dragData.didDrag = true; var totalShift = { x: 0, y: 0 }; if (number$1(disp[0]) && number$1(disp[1])) { totalShift.x += disp[0]; totalShift.y += disp[1]; if (justStartedDrag) { r.redrawHint('eles', true); var dragDelta = r.touchData.dragDelta; if (dragDelta && number$1(dragDelta[0]) && number$1(dragDelta[1])) { totalShift.x += dragDelta[0]; totalShift.y += dragDelta[1]; } } } r.hoverData.draggingEles = true; draggedEles.silentShift(totalShift).emit('position drag'); r.redrawHint('drag', true); if (r.touchData.startPosition[0] == earlier[0] && r.touchData.startPosition[1] == earlier[1]) { r.redrawHint('eles', true); } r.redraw(); } else { // otherwise keep track of drag delta for later var dragDelta = r.touchData.dragDelta = r.touchData.dragDelta || []; if (dragDelta.length === 0) { dragDelta.push(disp[0]); dragDelta.push(disp[1]); } else { dragDelta[0] += disp[0]; dragDelta[1] += disp[1]; } } } // touchmove { triggerEvents(start || near, ['touchmove', 'tapdrag', 'vmousemove'], e, { x: now[0], y: now[1] }); if ((!start || !start.grabbed()) && near != last) { if (last) { last.emit({ originalEvent: e, type: 'tapdragout', position: { x: now[0], y: now[1] } }); } if (near) { near.emit({ originalEvent: e, type: 'tapdragover', position: { x: now[0], y: now[1] } }); } } r.touchData.last = near; } // check to cancel taphold if (capture) { for (var i = 0; i < now.length; i++) { if (now[i] && r.touchData.startPosition[i] && isOverThresholdDrag) { r.touchData.singleTouchMoved = true; } } } // panning if (capture && (start == null || start.pannable()) && cy.panningEnabled() && cy.userPanningEnabled()) { var allowPassthrough = allowPanningPassthrough(start, r.touchData.starts); if (allowPassthrough) { e.preventDefault(); if (!r.data.bgActivePosistion) { r.data.bgActivePosistion = array2point(r.touchData.startPosition); } if (r.swipePanning) { cy.panBy({ x: disp[0] * zoom, y: disp[1] * zoom }); cy.emit('dragpan'); } else if (isOverThresholdDrag) { r.swipePanning = true; cy.panBy({ x: dx * zoom, y: dy * zoom }); cy.emit('dragpan'); if (start) { start.unactivate(); r.redrawHint('select', true); r.touchData.start = null; } } } // Re-project var pos = r.projectIntoViewport(e.touches[0].clientX, e.touches[0].clientY); now[0] = pos[0]; now[1] = pos[1]; } } for (var j = 0; j < now.length; j++) { earlier[j] = now[j]; } // the active bg indicator should be removed when making a swipe that is neither for dragging nodes or panning if (capture && e.touches.length > 0 && !r.hoverData.draggingEles && !r.swipePanning && r.data.bgActivePosistion != null) { r.data.bgActivePosistion = undefined; r.redrawHint('select', true); r.redraw(); } }, false); var touchcancelHandler; r.registerBinding(containerWindow, 'touchcancel', touchcancelHandler = function touchcancelHandler(e) { // eslint-disable-line no-unused-vars var start = r.touchData.start; r.touchData.capture = false; if (start) { start.unactivate(); } }); var touchendHandler, didDoubleTouch, touchTimeout, prevTouchTimeStamp; r.registerBinding(containerWindow, 'touchend', touchendHandler = function touchendHandler(e) { // eslint-disable-line no-unused-vars var start = r.touchData.start; var capture = r.touchData.capture; if (capture) { if (e.touches.length === 0) { r.touchData.capture = false; } e.preventDefault(); } else { return; } var select = r.selection; r.swipePanning = false; r.hoverData.draggingEles = false; var cy = r.cy; var zoom = cy.zoom(); var now = r.touchData.now; var earlier = r.touchData.earlier; if (e.touches[0]) { var pos = r.projectIntoViewport(e.touches[0].clientX, e.touches[0].clientY); now[0] = pos[0]; now[1] = pos[1]; } if (e.touches[1]) { var pos = r.projectIntoViewport(e.touches[1].clientX, e.touches[1].clientY); now[2] = pos[0]; now[3] = pos[1]; } if (e.touches[2]) { var pos = r.projectIntoViewport(e.touches[2].clientX, e.touches[2].clientY); now[4] = pos[0]; now[5] = pos[1]; } if (start) { start.unactivate(); } var ctxTapend; if (r.touchData.cxt) { ctxTapend = { originalEvent: e, type: 'cxttapend', position: { x: now[0], y: now[1] } }; if (start) { start.emit(ctxTapend); } else { cy.emit(ctxTapend); } if (!r.touchData.cxtDragged) { var ctxTap = { originalEvent: e, type: 'cxttap', position: { x: now[0], y: now[1] } }; if (start) { start.emit(ctxTap); } else { cy.emit(ctxTap); } } if (r.touchData.start) { r.touchData.start._private.grabbed = false; } r.touchData.cxt = false; r.touchData.start = null; r.redraw(); return; } // no more box selection if we don't have three fingers if (!e.touches[2] && cy.boxSelectionEnabled() && r.touchData.selecting) { r.touchData.selecting = false; var box = cy.collection(r.getAllInBox(select[0], select[1], select[2], select[3])); select[0] = undefined; select[1] = undefined; select[2] = undefined; select[3] = undefined; select[4] = 0; r.redrawHint('select', true); cy.emit({ type: 'boxend', originalEvent: e, position: { x: now[0], y: now[1] } }); var eleWouldBeSelected = function eleWouldBeSelected(ele) { return ele.selectable() && !ele.selected(); }; box.emit('box').stdFilter(eleWouldBeSelected).select().emit('boxselect'); if (box.nonempty()) { r.redrawHint('eles', true); } r.redraw(); } if (start != null) { start.unactivate(); } if (e.touches[2]) { r.data.bgActivePosistion = undefined; r.redrawHint('select', true); } else if (e.touches[1]) ; else if (e.touches[0]) ; else if (!e.touches[0]) { r.data.bgActivePosistion = undefined; r.redrawHint('select', true); var draggedEles = r.dragData.touchDragEles; if (start != null) { var startWasGrabbed = start._private.grabbed; freeDraggedElements(draggedEles); r.redrawHint('drag', true); r.redrawHint('eles', true); if (startWasGrabbed) { start.emit('freeon'); draggedEles.emit('free'); if (r.dragData.didDrag) { start.emit('dragfreeon'); draggedEles.emit('dragfree'); } } triggerEvents(start, ['touchend', 'tapend', 'vmouseup', 'tapdragout'], e, { x: now[0], y: now[1] }); start.unactivate(); r.touchData.start = null; } else { var near = r.findNearestElement(now[0], now[1], true, true); triggerEvents(near, ['touchend', 'tapend', 'vmouseup', 'tapdragout'], e, { x: now[0], y: now[1] }); } var dx = r.touchData.startPosition[0] - now[0]; var dx2 = dx * dx; var dy = r.touchData.startPosition[1] - now[1]; var dy2 = dy * dy; var dist2 = dx2 + dy2; var rdist2 = dist2 * zoom * zoom; // Tap event, roughly same as mouse click event for touch if (!r.touchData.singleTouchMoved) { if (!start) { cy.$(':selected').unselect(['tapunselect']); } triggerEvents(start, ['tap', 'vclick'], e, { x: now[0], y: now[1] }); didDoubleTouch = false; if (e.timeStamp - prevTouchTimeStamp <= cy.multiClickDebounceTime()) { touchTimeout && clearTimeout(touchTimeout); didDoubleTouch = true; prevTouchTimeStamp = null; triggerEvents(start, ['dbltap', 'vdblclick'], e, { x: now[0], y: now[1] }); } else { touchTimeout = setTimeout(function () { if (didDoubleTouch) return; triggerEvents(start, ['onetap', 'voneclick'], e, { x: now[0], y: now[1] }); }, cy.multiClickDebounceTime()); prevTouchTimeStamp = e.timeStamp; } } // Prepare to select the currently touched node, only if it hasn't been dragged past a certain distance if (start != null && !r.dragData.didDrag // didn't drag nodes around && start._private.selectable && rdist2 < r.touchTapThreshold2 && !r.pinching // pinch to zoom should not affect selection ) { if (cy.selectionType() === 'single') { cy.$(isSelected).unmerge(start).unselect(['tapunselect']); start.select(['tapselect']); } else { if (start.selected()) { start.unselect(['tapunselect']); } else { start.select(['tapselect']); } } r.redrawHint('eles', true); } r.touchData.singleTouchMoved = true; } for (var j = 0; j < now.length; j++) { earlier[j] = now[j]; } r.dragData.didDrag = false; // reset for next touchstart if (e.touches.length === 0) { r.touchData.dragDelta = []; r.touchData.startPosition = [null, null, null, null, null, null]; r.touchData.startGPosition = null; r.touchData.didSelect = false; } if (e.touches.length < 2) { if (e.touches.length === 1) { // the old start global pos'n may not be the same finger that remains r.touchData.startGPosition = [e.touches[0].clientX, e.touches[0].clientY]; } r.pinching = false; r.redrawHint('eles', true); r.redraw(); } //r.redraw(); }, false); // fallback compatibility layer for ms pointer events if (typeof TouchEvent === 'undefined') { var pointers = []; var makeTouch = function makeTouch(e) { return { clientX: e.clientX, clientY: e.clientY, force: 1, identifier: e.pointerId, pageX: e.pageX, pageY: e.pageY, radiusX: e.width / 2, radiusY: e.height / 2, screenX: e.screenX, screenY: e.screenY, target: e.target }; }; var makePointer = function makePointer(e) { return { event: e, touch: makeTouch(e) }; }; var addPointer = function addPointer(e) { pointers.push(makePointer(e)); }; var removePointer = function removePointer(e) { for (var i = 0; i < pointers.length; i++) { var p = pointers[i]; if (p.event.pointerId === e.pointerId) { pointers.splice(i, 1); return; } } }; var updatePointer = function updatePointer(e) { var p = pointers.filter(function (p) { return p.event.pointerId === e.pointerId; })[0]; p.event = e; p.touch = makeTouch(e); }; var addTouchesToEvent = function addTouchesToEvent(e) { e.touches = pointers.map(function (p) { return p.touch; }); }; var pointerIsMouse = function pointerIsMouse(e) { return e.pointerType === 'mouse' || e.pointerType === 4; }; r.registerBinding(r.container, 'pointerdown', function (e) { if (pointerIsMouse(e)) { return; } // mouse already handled e.preventDefault(); addPointer(e); addTouchesToEvent(e); touchstartHandler(e); }); r.registerBinding(r.container, 'pointerup', function (e) { if (pointerIsMouse(e)) { return; } // mouse already handled removePointer(e); addTouchesToEvent(e); touchendHandler(e); }); r.registerBinding(r.container, 'pointercancel', function (e) { if (pointerIsMouse(e)) { return; } // mouse already handled removePointer(e); addTouchesToEvent(e); touchcancelHandler(e); }); r.registerBinding(r.container, 'pointermove', function (e) { if (pointerIsMouse(e)) { return; } // mouse already handled e.preventDefault(); updatePointer(e); addTouchesToEvent(e); touchmoveHandler(e); }); } }; var BRp$2 = {}; BRp$2.generatePolygon = function (name, points) { return this.nodeShapes[name] = { renderer: this, name: name, points: points, draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl('polygon', context, centerX, centerY, width, height, this.points); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { return polygonIntersectLine(x, y, this.points, nodeX, nodeY, width / 2, height / 2, padding); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { return pointInsidePolygon(x, y, this.points, centerX, centerY, width, height, [0, -1], padding); } }; }; BRp$2.generateEllipse = function () { return this.nodeShapes['ellipse'] = { renderer: this, name: 'ellipse', draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl(this.name, context, centerX, centerY, width, height); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { return intersectLineEllipse(x, y, nodeX, nodeY, width / 2 + padding, height / 2 + padding); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { return checkInEllipse(x, y, width, height, centerX, centerY, padding); } }; }; BRp$2.generateRoundPolygon = function (name, points) { return this.nodeShapes[name] = { renderer: this, name: name, points: points, getOrCreateCorners: function getOrCreateCorners(centerX, centerY, width, height, cornerRadius, rs, field) { if (rs[field] !== undefined && rs[field + '-cx'] === centerX && rs[field + '-cy'] === centerY) { return rs[field]; } rs[field] = new Array(points.length / 2); rs[field + '-cx'] = centerX; rs[field + '-cy'] = centerY; var halfW = width / 2; var halfH = height / 2; cornerRadius = cornerRadius === 'auto' ? getRoundPolygonRadius(width, height) : cornerRadius; var p = new Array(points.length / 2); for (var _i = 0; _i < points.length / 2; _i++) { p[_i] = { x: centerX + halfW * points[_i * 2], y: centerY + halfH * points[_i * 2 + 1] }; } var i, p1, p2, p3, len = p.length; p1 = p[len - 1]; // for each point for (i = 0; i < len; i++) { p2 = p[i % len]; p3 = p[(i + 1) % len]; rs[field][i] = getRoundCorner(p1, p2, p3, cornerRadius); p1 = p2; p2 = p3; } return rs[field]; }, draw: function draw(context, centerX, centerY, width, height, cornerRadius, rs) { this.renderer.nodeShapeImpl('round-polygon', context, centerX, centerY, width, height, this.points, this.getOrCreateCorners(centerX, centerY, width, height, cornerRadius, rs, 'drawCorners')); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius, rs) { return roundPolygonIntersectLine(x, y, this.points, nodeX, nodeY, width, height, padding, this.getOrCreateCorners(nodeX, nodeY, width, height, cornerRadius, rs, 'corners')); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius, rs) { return pointInsideRoundPolygon(x, y, this.points, centerX, centerY, width, height, this.getOrCreateCorners(centerX, centerY, width, height, cornerRadius, rs, 'corners')); } }; }; BRp$2.generateRoundRectangle = function () { return this.nodeShapes['round-rectangle'] = this.nodeShapes['roundrectangle'] = { renderer: this, name: 'round-rectangle', points: generateUnitNgonPointsFitToSquare(4, 0), draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl(this.name, context, centerX, centerY, width, height, this.points, cornerRadius); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { return roundRectangleIntersectLine(x, y, nodeX, nodeY, width, height, padding, cornerRadius); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { var halfWidth = width / 2; var halfHeight = height / 2; cornerRadius = cornerRadius === 'auto' ? getRoundRectangleRadius(width, height) : cornerRadius; cornerRadius = Math.min(halfWidth, halfHeight, cornerRadius); var diam = cornerRadius * 2; // Check hBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width, height - diam, [0, -1], padding)) { return true; } // Check vBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width - diam, height, [0, -1], padding)) { return true; } // Check top left quarter circle if (checkInEllipse(x, y, diam, diam, centerX - halfWidth + cornerRadius, centerY - halfHeight + cornerRadius, padding)) { return true; } // Check top right quarter circle if (checkInEllipse(x, y, diam, diam, centerX + halfWidth - cornerRadius, centerY - halfHeight + cornerRadius, padding)) { return true; } // Check bottom right quarter circle if (checkInEllipse(x, y, diam, diam, centerX + halfWidth - cornerRadius, centerY + halfHeight - cornerRadius, padding)) { return true; } // Check bottom left quarter circle if (checkInEllipse(x, y, diam, diam, centerX - halfWidth + cornerRadius, centerY + halfHeight - cornerRadius, padding)) { return true; } return false; } }; }; BRp$2.generateCutRectangle = function () { return this.nodeShapes['cut-rectangle'] = this.nodeShapes['cutrectangle'] = { renderer: this, name: 'cut-rectangle', cornerLength: getCutRectangleCornerLength(), points: generateUnitNgonPointsFitToSquare(4, 0), draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl(this.name, context, centerX, centerY, width, height, null, cornerRadius); }, generateCutTrianglePts: function generateCutTrianglePts(width, height, centerX, centerY, cornerRadius) { var cl = cornerRadius === 'auto' ? this.cornerLength : cornerRadius; var hh = height / 2; var hw = width / 2; var xBegin = centerX - hw; var xEnd = centerX + hw; var yBegin = centerY - hh; var yEnd = centerY + hh; // points are in clockwise order, inner (imaginary) triangle pt on [4, 5] return { topLeft: [xBegin, yBegin + cl, xBegin + cl, yBegin, xBegin + cl, yBegin + cl], topRight: [xEnd - cl, yBegin, xEnd, yBegin + cl, xEnd - cl, yBegin + cl], bottomRight: [xEnd, yEnd - cl, xEnd - cl, yEnd, xEnd - cl, yEnd - cl], bottomLeft: [xBegin + cl, yEnd, xBegin, yEnd - cl, xBegin + cl, yEnd - cl] }; }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { var cPts = this.generateCutTrianglePts(width + 2 * padding, height + 2 * padding, nodeX, nodeY, cornerRadius); var pts = [].concat.apply([], [cPts.topLeft.splice(0, 4), cPts.topRight.splice(0, 4), cPts.bottomRight.splice(0, 4), cPts.bottomLeft.splice(0, 4)]); return polygonIntersectLine(x, y, pts, nodeX, nodeY); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { var cl = cornerRadius === 'auto' ? this.cornerLength : cornerRadius; // Check hBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width, height - 2 * cl, [0, -1], padding)) { return true; } // Check vBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width - 2 * cl, height, [0, -1], padding)) { return true; } var cutTrianglePts = this.generateCutTrianglePts(width, height, centerX, centerY); return pointInsidePolygonPoints(x, y, cutTrianglePts.topLeft) || pointInsidePolygonPoints(x, y, cutTrianglePts.topRight) || pointInsidePolygonPoints(x, y, cutTrianglePts.bottomRight) || pointInsidePolygonPoints(x, y, cutTrianglePts.bottomLeft); } }; }; BRp$2.generateBarrel = function () { return this.nodeShapes['barrel'] = { renderer: this, name: 'barrel', points: generateUnitNgonPointsFitToSquare(4, 0), draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl(this.name, context, centerX, centerY, width, height); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { // use two fixed t values for the bezier curve approximation var t0 = 0.15; var t1 = 0.5; var t2 = 0.85; var bPts = this.generateBarrelBezierPts(width + 2 * padding, height + 2 * padding, nodeX, nodeY); var approximateBarrelCurvePts = function approximateBarrelCurvePts(pts) { // approximate curve pts based on the two t values var m0 = qbezierPtAt({ x: pts[0], y: pts[1] }, { x: pts[2], y: pts[3] }, { x: pts[4], y: pts[5] }, t0); var m1 = qbezierPtAt({ x: pts[0], y: pts[1] }, { x: pts[2], y: pts[3] }, { x: pts[4], y: pts[5] }, t1); var m2 = qbezierPtAt({ x: pts[0], y: pts[1] }, { x: pts[2], y: pts[3] }, { x: pts[4], y: pts[5] }, t2); return [pts[0], pts[1], m0.x, m0.y, m1.x, m1.y, m2.x, m2.y, pts[4], pts[5]]; }; var pts = [].concat(approximateBarrelCurvePts(bPts.topLeft), approximateBarrelCurvePts(bPts.topRight), approximateBarrelCurvePts(bPts.bottomRight), approximateBarrelCurvePts(bPts.bottomLeft)); return polygonIntersectLine(x, y, pts, nodeX, nodeY); }, generateBarrelBezierPts: function generateBarrelBezierPts(width, height, centerX, centerY) { var hh = height / 2; var hw = width / 2; var xBegin = centerX - hw; var xEnd = centerX + hw; var yBegin = centerY - hh; var yEnd = centerY + hh; var curveConstants = getBarrelCurveConstants(width, height); var hOffset = curveConstants.heightOffset; var wOffset = curveConstants.widthOffset; var ctrlPtXOffset = curveConstants.ctrlPtOffsetPct * width; // points are in clockwise order, inner (imaginary) control pt on [4, 5] var pts = { topLeft: [xBegin, yBegin + hOffset, xBegin + ctrlPtXOffset, yBegin, xBegin + wOffset, yBegin], topRight: [xEnd - wOffset, yBegin, xEnd - ctrlPtXOffset, yBegin, xEnd, yBegin + hOffset], bottomRight: [xEnd, yEnd - hOffset, xEnd - ctrlPtXOffset, yEnd, xEnd - wOffset, yEnd], bottomLeft: [xBegin + wOffset, yEnd, xBegin + ctrlPtXOffset, yEnd, xBegin, yEnd - hOffset] }; pts.topLeft.isTop = true; pts.topRight.isTop = true; pts.bottomLeft.isBottom = true; pts.bottomRight.isBottom = true; return pts; }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { var curveConstants = getBarrelCurveConstants(width, height); var hOffset = curveConstants.heightOffset; var wOffset = curveConstants.widthOffset; // Check hBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width, height - 2 * hOffset, [0, -1], padding)) { return true; } // Check vBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width - 2 * wOffset, height, [0, -1], padding)) { return true; } var barrelCurvePts = this.generateBarrelBezierPts(width, height, centerX, centerY); var getCurveT = function getCurveT(x, y, curvePts) { var x0 = curvePts[4]; var x1 = curvePts[2]; var x2 = curvePts[0]; var y0 = curvePts[5]; // var y1 = curvePts[ 3 ]; var y2 = curvePts[1]; var xMin = Math.min(x0, x2); var xMax = Math.max(x0, x2); var yMin = Math.min(y0, y2); var yMax = Math.max(y0, y2); if (xMin <= x && x <= xMax && yMin <= y && y <= yMax) { var coeff = bezierPtsToQuadCoeff(x0, x1, x2); var roots = solveQuadratic(coeff[0], coeff[1], coeff[2], x); var validRoots = roots.filter(function (r) { return 0 <= r && r <= 1; }); if (validRoots.length > 0) { return validRoots[0]; } } return null; }; var curveRegions = Object.keys(barrelCurvePts); for (var i = 0; i < curveRegions.length; i++) { var corner = curveRegions[i]; var cornerPts = barrelCurvePts[corner]; var t = getCurveT(x, y, cornerPts); if (t == null) { continue; } var y0 = cornerPts[5]; var y1 = cornerPts[3]; var y2 = cornerPts[1]; var bezY = qbezierAt(y0, y1, y2, t); if (cornerPts.isTop && bezY <= y) { return true; } if (cornerPts.isBottom && y <= bezY) { return true; } } return false; } }; }; BRp$2.generateBottomRoundrectangle = function () { return this.nodeShapes['bottom-round-rectangle'] = this.nodeShapes['bottomroundrectangle'] = { renderer: this, name: 'bottom-round-rectangle', points: generateUnitNgonPointsFitToSquare(4, 0), draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl(this.name, context, centerX, centerY, width, height, this.points, cornerRadius); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { var topStartX = nodeX - (width / 2 + padding); var topStartY = nodeY - (height / 2 + padding); var topEndY = topStartY; var topEndX = nodeX + (width / 2 + padding); var topIntersections = finiteLinesIntersect(x, y, nodeX, nodeY, topStartX, topStartY, topEndX, topEndY, false); if (topIntersections.length > 0) { return topIntersections; } return roundRectangleIntersectLine(x, y, nodeX, nodeY, width, height, padding, cornerRadius); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { cornerRadius = cornerRadius === 'auto' ? getRoundRectangleRadius(width, height) : cornerRadius; var diam = 2 * cornerRadius; // Check hBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width, height - diam, [0, -1], padding)) { return true; } // Check vBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width - diam, height, [0, -1], padding)) { return true; } // check non-rounded top side var outerWidth = width / 2 + 2 * padding; var outerHeight = height / 2 + 2 * padding; var points = [centerX - outerWidth, centerY - outerHeight, centerX - outerWidth, centerY, centerX + outerWidth, centerY, centerX + outerWidth, centerY - outerHeight]; if (pointInsidePolygonPoints(x, y, points)) { return true; } // Check bottom right quarter circle if (checkInEllipse(x, y, diam, diam, centerX + width / 2 - cornerRadius, centerY + height / 2 - cornerRadius, padding)) { return true; } // Check bottom left quarter circle if (checkInEllipse(x, y, diam, diam, centerX - width / 2 + cornerRadius, centerY + height / 2 - cornerRadius, padding)) { return true; } return false; } }; }; BRp$2.registerNodeShapes = function () { var nodeShapes = this.nodeShapes = {}; var renderer = this; this.generateEllipse(); this.generatePolygon('triangle', generateUnitNgonPointsFitToSquare(3, 0)); this.generateRoundPolygon('round-triangle', generateUnitNgonPointsFitToSquare(3, 0)); this.generatePolygon('rectangle', generateUnitNgonPointsFitToSquare(4, 0)); nodeShapes['square'] = nodeShapes['rectangle']; this.generateRoundRectangle(); this.generateCutRectangle(); this.generateBarrel(); this.generateBottomRoundrectangle(); { var diamondPoints = [0, 1, 1, 0, 0, -1, -1, 0]; this.generatePolygon('diamond', diamondPoints); this.generateRoundPolygon('round-diamond', diamondPoints); } this.generatePolygon('pentagon', generateUnitNgonPointsFitToSquare(5, 0)); this.generateRoundPolygon('round-pentagon', generateUnitNgonPointsFitToSquare(5, 0)); this.generatePolygon('hexagon', generateUnitNgonPointsFitToSquare(6, 0)); this.generateRoundPolygon('round-hexagon', generateUnitNgonPointsFitToSquare(6, 0)); this.generatePolygon('heptagon', generateUnitNgonPointsFitToSquare(7, 0)); this.generateRoundPolygon('round-heptagon', generateUnitNgonPointsFitToSquare(7, 0)); this.generatePolygon('octagon', generateUnitNgonPointsFitToSquare(8, 0)); this.generateRoundPolygon('round-octagon', generateUnitNgonPointsFitToSquare(8, 0)); var star5Points = new Array(20); { var outerPoints = generateUnitNgonPoints(5, 0); var innerPoints = generateUnitNgonPoints(5, Math.PI / 5); // Outer radius is 1; inner radius of star is smaller var innerRadius = 0.5 * (3 - Math.sqrt(5)); innerRadius *= 1.57; for (var i = 0; i < innerPoints.length / 2; i++) { innerPoints[i * 2] *= innerRadius; innerPoints[i * 2 + 1] *= innerRadius; } for (var i = 0; i < 20 / 4; i++) { star5Points[i * 4] = outerPoints[i * 2]; star5Points[i * 4 + 1] = outerPoints[i * 2 + 1]; star5Points[i * 4 + 2] = innerPoints[i * 2]; star5Points[i * 4 + 3] = innerPoints[i * 2 + 1]; } } star5Points = fitPolygonToSquare(star5Points); this.generatePolygon('star', star5Points); this.generatePolygon('vee', [-1, -1, 0, -0.333, 1, -1, 0, 1]); this.generatePolygon('rhomboid', [-1, -1, 0.333, -1, 1, 1, -0.333, 1]); this.generatePolygon('right-rhomboid', [-0.333, -1, 1, -1, 0.333, 1, -1, 1]); this.nodeShapes['concavehexagon'] = this.generatePolygon('concave-hexagon', [-1, -0.95, -0.75, 0, -1, 0.95, 1, 0.95, 0.75, 0, 1, -0.95]); { var tagPoints = [-1, -1, 0.25, -1, 1, 0, 0.25, 1, -1, 1]; this.generatePolygon('tag', tagPoints); this.generateRoundPolygon('round-tag', tagPoints); } nodeShapes.makePolygon = function (points) { // use caching on user-specified polygons so they are as fast as native shapes var key = points.join('$'); var name = 'polygon-' + key; var shape; if (shape = this[name]) { // got cached shape return shape; } // create and cache new shape return renderer.generatePolygon(name, points); }; }; var BRp$1 = {}; BRp$1.timeToRender = function () { return this.redrawTotalTime / this.redrawCount; }; BRp$1.redraw = function (options) { options = options || staticEmptyObject(); var r = this; if (r.averageRedrawTime === undefined) { r.averageRedrawTime = 0; } if (r.lastRedrawTime === undefined) { r.lastRedrawTime = 0; } if (r.lastDrawTime === undefined) { r.lastDrawTime = 0; } r.requestedFrame = true; r.renderOptions = options; }; BRp$1.beforeRender = function (fn, priority) { // the renderer can't add tick callbacks when destroyed if (this.destroyed) { return; } if (priority == null) { error('Priority is not optional for beforeRender'); } var cbs = this.beforeRenderCallbacks; cbs.push({ fn: fn, priority: priority }); // higher priority callbacks executed first cbs.sort(function (a, b) { return b.priority - a.priority; }); }; var beforeRenderCallbacks = function beforeRenderCallbacks(r, willDraw, startTime) { var cbs = r.beforeRenderCallbacks; for (var i = 0; i < cbs.length; i++) { cbs[i].fn(willDraw, startTime); } }; BRp$1.startRenderLoop = function () { var r = this; var cy = r.cy; if (r.renderLoopStarted) { return; } else { r.renderLoopStarted = true; } var renderFn = function renderFn(requestTime) { if (r.destroyed) { return; } if (cy.batching()) ; else if (r.requestedFrame && !r.skipFrame) { beforeRenderCallbacks(r, true, requestTime); var startTime = performanceNow(); r.render(r.renderOptions); var endTime = r.lastDrawTime = performanceNow(); if (r.averageRedrawTime === undefined) { r.averageRedrawTime = endTime - startTime; } if (r.redrawCount === undefined) { r.redrawCount = 0; } r.redrawCount++; if (r.redrawTotalTime === undefined) { r.redrawTotalTime = 0; } var duration = endTime - startTime; r.redrawTotalTime += duration; r.lastRedrawTime = duration; // use a weighted average with a bias from the previous average so we don't spike so easily r.averageRedrawTime = r.averageRedrawTime / 2 + duration / 2; r.requestedFrame = false; } else { beforeRenderCallbacks(r, false, requestTime); } r.skipFrame = false; requestAnimationFrame(renderFn); }; requestAnimationFrame(renderFn); }; var BaseRenderer = function BaseRenderer(options) { this.init(options); }; var BR = BaseRenderer; var BRp = BR.prototype; BRp.clientFunctions = ['redrawHint', 'render', 'renderTo', 'matchCanvasSize', 'nodeShapeImpl', 'arrowShapeImpl']; BRp.init = function (options) { var r = this; r.options = options; r.cy = options.cy; var ctr = r.container = options.cy.container(); var containerWindow = r.cy.window(); // prepend a stylesheet in the head such that if (containerWindow) { var document = containerWindow.document; var head = document.head; var stylesheetId = '__________cytoscape_stylesheet'; var className = '__________cytoscape_container'; var stylesheetAlreadyExists = document.getElementById(stylesheetId) != null; if (ctr.className.indexOf(className) < 0) { ctr.className = (ctr.className || '') + ' ' + className; } if (!stylesheetAlreadyExists) { var stylesheet = document.createElement('style'); stylesheet.id = stylesheetId; stylesheet.textContent = '.' + className + ' { position: relative; }'; head.insertBefore(stylesheet, head.children[0]); // first so lowest priority } var computedStyle = containerWindow.getComputedStyle(ctr); var position = computedStyle.getPropertyValue('position'); if (position === 'static') { warn('A Cytoscape container has style position:static and so can not use UI extensions properly'); } } r.selection = [undefined, undefined, undefined, undefined, 0]; // Coordinates for selection box, plus enabled flag r.bezierProjPcts = [0.05, 0.225, 0.4, 0.5, 0.6, 0.775, 0.95]; //--Pointer-related data r.hoverData = { down: null, last: null, downTime: null, triggerMode: null, dragging: false, initialPan: [null, null], capture: false }; r.dragData = { possibleDragElements: [] }; r.touchData = { start: null, capture: false, // These 3 fields related to tap, taphold events startPosition: [null, null, null, null, null, null], singleTouchStartTime: null, singleTouchMoved: true, now: [null, null, null, null, null, null], earlier: [null, null, null, null, null, null] }; r.redraws = 0; r.showFps = options.showFps; r.debug = options.debug; r.hideEdgesOnViewport = options.hideEdgesOnViewport; r.textureOnViewport = options.textureOnViewport; r.wheelSensitivity = options.wheelSensitivity; r.motionBlurEnabled = options.motionBlur; // on by default r.forcedPixelRatio = number$1(options.pixelRatio) ? options.pixelRatio : null; r.motionBlur = options.motionBlur; // for initial kick off r.motionBlurOpacity = options.motionBlurOpacity; r.motionBlurTransparency = 1 - r.motionBlurOpacity; r.motionBlurPxRatio = 1; r.mbPxRBlurry = 1; //0.8; r.minMbLowQualFrames = 4; r.fullQualityMb = false; r.clearedForMotionBlur = []; r.desktopTapThreshold = options.desktopTapThreshold; r.desktopTapThreshold2 = options.desktopTapThreshold * options.desktopTapThreshold; r.touchTapThreshold = options.touchTapThreshold; r.touchTapThreshold2 = options.touchTapThreshold * options.touchTapThreshold; r.tapholdDuration = 500; r.bindings = []; r.beforeRenderCallbacks = []; r.beforeRenderPriorities = { // higher priority execs before lower one animations: 400, eleCalcs: 300, eleTxrDeq: 200, lyrTxrDeq: 150, lyrTxrSkip: 100 }; r.registerNodeShapes(); r.registerArrowShapes(); r.registerCalculationListeners(); }; BRp.notify = function (eventName, eles) { var r = this; var cy = r.cy; // the renderer can't be notified after it's destroyed if (this.destroyed) { return; } if (eventName === 'init') { r.load(); return; } if (eventName === 'destroy') { r.destroy(); return; } if (eventName === 'add' || eventName === 'remove' || eventName === 'move' && cy.hasCompoundNodes() || eventName === 'load' || eventName === 'zorder' || eventName === 'mount') { r.invalidateCachedZSortedEles(); } if (eventName === 'viewport') { r.redrawHint('select', true); } if (eventName === 'load' || eventName === 'resize' || eventName === 'mount') { r.invalidateContainerClientCoordsCache(); r.matchCanvasSize(r.container); } r.redrawHint('eles', true); r.redrawHint('drag', true); this.startRenderLoop(); this.redraw(); }; BRp.destroy = function () { var r = this; r.destroyed = true; r.cy.stopAnimationLoop(); for (var i = 0; i < r.bindings.length; i++) { var binding = r.bindings[i]; var b = binding; var tgt = b.target; (tgt.off || tgt.removeEventListener).apply(tgt, b.args); } r.bindings = []; r.beforeRenderCallbacks = []; r.onUpdateEleCalcsFns = []; if (r.removeObserver) { r.removeObserver.disconnect(); } if (r.styleObserver) { r.styleObserver.disconnect(); } if (r.resizeObserver) { r.resizeObserver.disconnect(); } if (r.labelCalcDiv) { try { document.body.removeChild(r.labelCalcDiv); // eslint-disable-line no-undef } catch (e) { // ie10 issue #1014 } } }; BRp.isHeadless = function () { return false; }; [BRp$f, BRp$5, BRp$4, BRp$3, BRp$2, BRp$1].forEach(function (props) { extend(BRp, props); }); var fullFpsTime = 1000 / 60; // assume 60 frames per second var defs = { setupDequeueing: function setupDequeueing(opts) { return function setupDequeueingImpl() { var self = this; var r = this.renderer; if (self.dequeueingSetup) { return; } else { self.dequeueingSetup = true; } var queueRedraw = debounce_1(function () { r.redrawHint('eles', true); r.redrawHint('drag', true); r.redraw(); }, opts.deqRedrawThreshold); var dequeue = function dequeue(willDraw, frameStartTime) { var startTime = performanceNow(); var avgRenderTime = r.averageRedrawTime; var renderTime = r.lastRedrawTime; var deqd = []; var extent = r.cy.extent(); var pixelRatio = r.getPixelRatio(); // if we aren't in a tick that causes a draw, then the rendered style // queue won't automatically be flushed before dequeueing starts if (!willDraw) { r.flushRenderedStyleQueue(); } while (true) { // eslint-disable-line no-constant-condition var now = performanceNow(); var duration = now - startTime; var frameDuration = now - frameStartTime; if (renderTime < fullFpsTime) { // if we're rendering faster than the ideal fps, then do dequeueing // during all of the remaining frame time var timeAvailable = fullFpsTime - (willDraw ? avgRenderTime : 0); if (frameDuration >= opts.deqFastCost * timeAvailable) { break; } } else { if (willDraw) { if (duration >= opts.deqCost * renderTime || duration >= opts.deqAvgCost * avgRenderTime) { break; } } else if (frameDuration >= opts.deqNoDrawCost * fullFpsTime) { break; } } var thisDeqd = opts.deq(self, pixelRatio, extent); if (thisDeqd.length > 0) { for (var i = 0; i < thisDeqd.length; i++) { deqd.push(thisDeqd[i]); } } else { break; } } // callbacks on dequeue if (deqd.length > 0) { opts.onDeqd(self, deqd); if (!willDraw && opts.shouldRedraw(self, deqd, pixelRatio, extent)) { queueRedraw(); } } }; var priority = opts.priority || noop$1; r.beforeRender(dequeue, priority(self)); }; } }; // Allows lookups for (ele, lvl) => cache. // Uses keys so elements may share the same cache. var ElementTextureCacheLookup = /*#__PURE__*/function () { function ElementTextureCacheLookup(getKey) { var doesEleInvalidateKey = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : falsify; _classCallCheck(this, ElementTextureCacheLookup); this.idsByKey = new Map$2(); this.keyForId = new Map$2(); this.cachesByLvl = new Map$2(); this.lvls = []; this.getKey = getKey; this.doesEleInvalidateKey = doesEleInvalidateKey; } _createClass(ElementTextureCacheLookup, [{ key: "getIdsFor", value: function getIdsFor(key) { if (key == null) { error("Can not get id list for null key"); } var idsByKey = this.idsByKey; var ids = this.idsByKey.get(key); if (!ids) { ids = new Set$1(); idsByKey.set(key, ids); } return ids; } }, { key: "addIdForKey", value: function addIdForKey(key, id) { if (key != null) { this.getIdsFor(key).add(id); } } }, { key: "deleteIdForKey", value: function deleteIdForKey(key, id) { if (key != null) { this.getIdsFor(key)["delete"](id); } } }, { key: "getNumberOfIdsForKey", value: function getNumberOfIdsForKey(key) { if (key == null) { return 0; } else { return this.getIdsFor(key).size; } } }, { key: "updateKeyMappingFor", value: function updateKeyMappingFor(ele) { var id = ele.id(); var prevKey = this.keyForId.get(id); var currKey = this.getKey(ele); this.deleteIdForKey(prevKey, id); this.addIdForKey(currKey, id); this.keyForId.set(id, currKey); } }, { key: "deleteKeyMappingFor", value: function deleteKeyMappingFor(ele) { var id = ele.id(); var prevKey = this.keyForId.get(id); this.deleteIdForKey(prevKey, id); this.keyForId["delete"](id); } }, { key: "keyHasChangedFor", value: function keyHasChangedFor(ele) { var id = ele.id(); var prevKey = this.keyForId.get(id); var newKey = this.getKey(ele); return prevKey !== newKey; } }, { key: "isInvalid", value: function isInvalid(ele) { return this.keyHasChangedFor(ele) || this.doesEleInvalidateKey(ele); } }, { key: "getCachesAt", value: function getCachesAt(lvl) { var cachesByLvl = this.cachesByLvl, lvls = this.lvls; var caches = cachesByLvl.get(lvl); if (!caches) { caches = new Map$2(); cachesByLvl.set(lvl, caches); lvls.push(lvl); } return caches; } }, { key: "getCache", value: function getCache(key, lvl) { return this.getCachesAt(lvl).get(key); } }, { key: "get", value: function get(ele, lvl) { var key = this.getKey(ele); var cache = this.getCache(key, lvl); // getting for an element may need to add to the id list b/c eles can share keys if (cache != null) { this.updateKeyMappingFor(ele); } return cache; } }, { key: "getForCachedKey", value: function getForCachedKey(ele, lvl) { var key = this.keyForId.get(ele.id()); // n.b. use cached key, not newly computed key var cache = this.getCache(key, lvl); return cache; } }, { key: "hasCache", value: function hasCache(key, lvl) { return this.getCachesAt(lvl).has(key); } }, { key: "has", value: function has(ele, lvl) { var key = this.getKey(ele); return this.hasCache(key, lvl); } }, { key: "setCache", value: function setCache(key, lvl, cache) { cache.key = key; this.getCachesAt(lvl).set(key, cache); } }, { key: "set", value: function set(ele, lvl, cache) { var key = this.getKey(ele); this.setCache(key, lvl, cache); this.updateKeyMappingFor(ele); } }, { key: "deleteCache", value: function deleteCache(key, lvl) { this.getCachesAt(lvl)["delete"](key); } }, { key: "delete", value: function _delete(ele, lvl) { var key = this.getKey(ele); this.deleteCache(key, lvl); } }, { key: "invalidateKey", value: function invalidateKey(key) { var _this = this; this.lvls.forEach(function (lvl) { return _this.deleteCache(key, lvl); }); } // returns true if no other eles reference the invalidated cache (n.b. other eles may need the cache with the same key) }, { key: "invalidate", value: function invalidate(ele) { var id = ele.id(); var key = this.keyForId.get(id); // n.b. use stored key rather than current (potential key) this.deleteKeyMappingFor(ele); var entireKeyInvalidated = this.doesEleInvalidateKey(ele); if (entireKeyInvalidated) { // clear mapping for current key this.invalidateKey(key); } return entireKeyInvalidated || this.getNumberOfIdsForKey(key) === 0; } }]); return ElementTextureCacheLookup; }(); var minTxrH = 25; // the size of the texture cache for small height eles (special case) var txrStepH = 50; // the min size of the regular cache, and the size it increases with each step up var minLvl$1 = -4; // when scaling smaller than that we don't need to re-render var maxLvl$1 = 3; // when larger than this scale just render directly (caching is not helpful) var maxZoom$1 = 7.99; // beyond this zoom level, layered textures are not used var eleTxrSpacing = 8; // spacing between elements on textures to avoid blitting overlaps var defTxrWidth = 1024; // default/minimum texture width var maxTxrW = 1024; // the maximum width of a texture var maxTxrH = 1024; // the maximum height of a texture var minUtility = 0.2; // if usage of texture is less than this, it is retired var maxFullness = 0.8; // fullness of texture after which queue removal is checked var maxFullnessChecks = 10; // dequeued after this many checks var deqCost$1 = 0.15; // % of add'l rendering cost allowed for dequeuing ele caches each frame var deqAvgCost$1 = 0.1; // % of add'l rendering cost compared to average overall redraw time var deqNoDrawCost$1 = 0.9; // % of avg frame time that can be used for dequeueing when not drawing var deqFastCost$1 = 0.9; // % of frame time to be used when >60fps var deqRedrawThreshold$1 = 100; // time to batch redraws together from dequeueing to allow more dequeueing calcs to happen in the meanwhile var maxDeqSize$1 = 1; // number of eles to dequeue and render at higher texture in each batch var getTxrReasons = { dequeue: 'dequeue', downscale: 'downscale', highQuality: 'highQuality' }; var initDefaults = defaults$g({ getKey: null, doesEleInvalidateKey: falsify, drawElement: null, getBoundingBox: null, getRotationPoint: null, getRotationOffset: null, isVisible: trueify, allowEdgeTxrCaching: true, allowParentTxrCaching: true }); var ElementTextureCache = function ElementTextureCache(renderer, initOptions) { var self = this; self.renderer = renderer; self.onDequeues = []; var opts = initDefaults(initOptions); extend(self, opts); self.lookup = new ElementTextureCacheLookup(opts.getKey, opts.doesEleInvalidateKey); self.setupDequeueing(); }; var ETCp = ElementTextureCache.prototype; ETCp.reasons = getTxrReasons; // the list of textures in which new subtextures for elements can be placed ETCp.getTextureQueue = function (txrH) { var self = this; self.eleImgCaches = self.eleImgCaches || {}; return self.eleImgCaches[txrH] = self.eleImgCaches[txrH] || []; }; // the list of usused textures which can be recycled (in use in texture queue) ETCp.getRetiredTextureQueue = function (txrH) { var self = this; var rtxtrQs = self.eleImgCaches.retired = self.eleImgCaches.retired || {}; var rtxtrQ = rtxtrQs[txrH] = rtxtrQs[txrH] || []; return rtxtrQ; }; // queue of element draw requests at different scale levels ETCp.getElementQueue = function () { var self = this; var q = self.eleCacheQueue = self.eleCacheQueue || new heap(function (a, b) { return b.reqs - a.reqs; }); return q; }; // queue of element draw requests at different scale levels (element id lookup) ETCp.getElementKeyToQueue = function () { var self = this; var k2q = self.eleKeyToCacheQueue = self.eleKeyToCacheQueue || {}; return k2q; }; ETCp.getElement = function (ele, bb, pxRatio, lvl, reason) { var self = this; var r = this.renderer; var zoom = r.cy.zoom(); var lookup = this.lookup; if (!bb || bb.w === 0 || bb.h === 0 || isNaN(bb.w) || isNaN(bb.h) || !ele.visible() || ele.removed()) { return null; } if (!self.allowEdgeTxrCaching && ele.isEdge() || !self.allowParentTxrCaching && ele.isParent()) { return null; } if (lvl == null) { lvl = Math.ceil(log2(zoom * pxRatio)); } if (lvl < minLvl$1) { lvl = minLvl$1; } else if (zoom >= maxZoom$1 || lvl > maxLvl$1) { return null; } var scale = Math.pow(2, lvl); var eleScaledH = bb.h * scale; var eleScaledW = bb.w * scale; var scaledLabelShown = r.eleTextBiggerThanMin(ele, scale); if (!this.isVisible(ele, scaledLabelShown)) { return null; } var eleCache = lookup.get(ele, lvl); // if this get was on an unused/invalidated cache, then restore the texture usage metric if (eleCache && eleCache.invalidated) { eleCache.invalidated = false; eleCache.texture.invalidatedWidth -= eleCache.width; } if (eleCache) { return eleCache; } var txrH; // which texture height this ele belongs to if (eleScaledH <= minTxrH) { txrH = minTxrH; } else if (eleScaledH <= txrStepH) { txrH = txrStepH; } else { txrH = Math.ceil(eleScaledH / txrStepH) * txrStepH; } if (eleScaledH > maxTxrH || eleScaledW > maxTxrW) { return null; // caching large elements is not efficient } var txrQ = self.getTextureQueue(txrH); // first try the second last one in case it has space at the end var txr = txrQ[txrQ.length - 2]; var addNewTxr = function addNewTxr() { return self.recycleTexture(txrH, eleScaledW) || self.addTexture(txrH, eleScaledW); }; // try the last one if there is no second last one if (!txr) { txr = txrQ[txrQ.length - 1]; } // if the last one doesn't exist, we need a first one if (!txr) { txr = addNewTxr(); } // if there's no room in the current texture, we need a new one if (txr.width - txr.usedWidth < eleScaledW) { txr = addNewTxr(); } var scalableFrom = function scalableFrom(otherCache) { return otherCache && otherCache.scaledLabelShown === scaledLabelShown; }; var deqing = reason && reason === getTxrReasons.dequeue; var highQualityReq = reason && reason === getTxrReasons.highQuality; var downscaleReq = reason && reason === getTxrReasons.downscale; var higherCache; // the nearest cache with a higher level for (var l = lvl + 1; l <= maxLvl$1; l++) { var c = lookup.get(ele, l); if (c) { higherCache = c; break; } } var oneUpCache = higherCache && higherCache.level === lvl + 1 ? higherCache : null; var downscale = function downscale() { txr.context.drawImage(oneUpCache.texture.canvas, oneUpCache.x, 0, oneUpCache.width, oneUpCache.height, txr.usedWidth, 0, eleScaledW, eleScaledH); }; // reset ele area in texture txr.context.setTransform(1, 0, 0, 1, 0, 0); txr.context.clearRect(txr.usedWidth, 0, eleScaledW, txrH); if (scalableFrom(oneUpCache)) { // then we can relatively cheaply rescale the existing image w/o rerendering downscale(); } else if (scalableFrom(higherCache)) { // then use the higher cache for now and queue the next level down // to cheaply scale towards the smaller level if (highQualityReq) { for (var _l = higherCache.level; _l > lvl; _l--) { oneUpCache = self.getElement(ele, bb, pxRatio, _l, getTxrReasons.downscale); } downscale(); } else { self.queueElement(ele, higherCache.level - 1); return higherCache; } } else { var lowerCache; // the nearest cache with a lower level if (!deqing && !highQualityReq && !downscaleReq) { for (var _l2 = lvl - 1; _l2 >= minLvl$1; _l2--) { var _c = lookup.get(ele, _l2); if (_c) { lowerCache = _c; break; } } } if (scalableFrom(lowerCache)) { // then use the lower quality cache for now and queue the better one for later self.queueElement(ele, lvl); return lowerCache; } txr.context.translate(txr.usedWidth, 0); txr.context.scale(scale, scale); this.drawElement(txr.context, ele, bb, scaledLabelShown, false); txr.context.scale(1 / scale, 1 / scale); txr.context.translate(-txr.usedWidth, 0); } eleCache = { x: txr.usedWidth, texture: txr, level: lvl, scale: scale, width: eleScaledW, height: eleScaledH, scaledLabelShown: scaledLabelShown }; txr.usedWidth += Math.ceil(eleScaledW + eleTxrSpacing); txr.eleCaches.push(eleCache); lookup.set(ele, lvl, eleCache); self.checkTextureFullness(txr); return eleCache; }; ETCp.invalidateElements = function (eles) { for (var i = 0; i < eles.length; i++) { this.invalidateElement(eles[i]); } }; ETCp.invalidateElement = function (ele) { var self = this; var lookup = self.lookup; var caches = []; var invalid = lookup.isInvalid(ele); if (!invalid) { return; // override the invalidation request if the element key has not changed } for (var lvl = minLvl$1; lvl <= maxLvl$1; lvl++) { var cache = lookup.getForCachedKey(ele, lvl); if (cache) { caches.push(cache); } } var noOtherElesUseCache = lookup.invalidate(ele); if (noOtherElesUseCache) { for (var i = 0; i < caches.length; i++) { var _cache = caches[i]; var txr = _cache.texture; // remove space from the texture it belongs to txr.invalidatedWidth += _cache.width; // mark the cache as invalidated _cache.invalidated = true; // retire the texture if its utility is low self.checkTextureUtility(txr); } } // remove from queue since the old req was for the old state self.removeFromQueue(ele); }; ETCp.checkTextureUtility = function (txr) { // invalidate all entries in the cache if the cache size is small if (txr.invalidatedWidth >= minUtility * txr.width) { this.retireTexture(txr); } }; ETCp.checkTextureFullness = function (txr) { // if texture has been mostly filled and passed over several times, remove // it from the queue so we don't need to waste time looking at it to put new things var self = this; var txrQ = self.getTextureQueue(txr.height); if (txr.usedWidth / txr.width > maxFullness && txr.fullnessChecks >= maxFullnessChecks) { removeFromArray(txrQ, txr); } else { txr.fullnessChecks++; } }; ETCp.retireTexture = function (txr) { var self = this; var txrH = txr.height; var txrQ = self.getTextureQueue(txrH); var lookup = this.lookup; // retire the texture from the active / searchable queue: removeFromArray(txrQ, txr); txr.retired = true; // remove the refs from the eles to the caches: var eleCaches = txr.eleCaches; for (var i = 0; i < eleCaches.length; i++) { var eleCache = eleCaches[i]; lookup.deleteCache(eleCache.key, eleCache.level); } clearArray(eleCaches); // add the texture to a retired queue so it can be recycled in future: var rtxtrQ = self.getRetiredTextureQueue(txrH); rtxtrQ.push(txr); }; ETCp.addTexture = function (txrH, minW) { var self = this; var txrQ = self.getTextureQueue(txrH); var txr = {}; txrQ.push(txr); txr.eleCaches = []; txr.height = txrH; txr.width = Math.max(defTxrWidth, minW); txr.usedWidth = 0; txr.invalidatedWidth = 0; txr.fullnessChecks = 0; txr.canvas = self.renderer.makeOffscreenCanvas(txr.width, txr.height); txr.context = txr.canvas.getContext('2d'); return txr; }; ETCp.recycleTexture = function (txrH, minW) { var self = this; var txrQ = self.getTextureQueue(txrH); var rtxtrQ = self.getRetiredTextureQueue(txrH); for (var i = 0; i < rtxtrQ.length; i++) { var txr = rtxtrQ[i]; if (txr.width >= minW) { txr.retired = false; txr.usedWidth = 0; txr.invalidatedWidth = 0; txr.fullnessChecks = 0; clearArray(txr.eleCaches); txr.context.setTransform(1, 0, 0, 1, 0, 0); txr.context.clearRect(0, 0, txr.width, txr.height); removeFromArray(rtxtrQ, txr); txrQ.push(txr); return txr; } } }; ETCp.queueElement = function (ele, lvl) { var self = this; var q = self.getElementQueue(); var k2q = self.getElementKeyToQueue(); var key = this.getKey(ele); var existingReq = k2q[key]; if (existingReq) { // use the max lvl b/c in between lvls are cheap to make existingReq.level = Math.max(existingReq.level, lvl); existingReq.eles.merge(ele); existingReq.reqs++; q.updateItem(existingReq); } else { var req = { eles: ele.spawn().merge(ele), level: lvl, reqs: 1, key: key }; q.push(req); k2q[key] = req; } }; ETCp.dequeue = function (pxRatio /*, extent*/) { var self = this; var q = self.getElementQueue(); var k2q = self.getElementKeyToQueue(); var dequeued = []; var lookup = self.lookup; for (var i = 0; i < maxDeqSize$1; i++) { if (q.size() > 0) { var req = q.pop(); var key = req.key; var ele = req.eles[0]; // all eles have the same key var cacheExists = lookup.hasCache(ele, req.level); // clear out the key to req lookup k2q[key] = null; // dequeueing isn't necessary with an existing cache if (cacheExists) { continue; } dequeued.push(req); var bb = self.getBoundingBox(ele); self.getElement(ele, bb, pxRatio, req.level, getTxrReasons.dequeue); } else { break; } } return dequeued; }; ETCp.removeFromQueue = function (ele) { var self = this; var q = self.getElementQueue(); var k2q = self.getElementKeyToQueue(); var key = this.getKey(ele); var req = k2q[key]; if (req != null) { if (req.eles.length === 1) { // remove if last ele in the req // bring to front of queue req.reqs = MAX_INT$1; q.updateItem(req); q.pop(); // remove from queue k2q[key] = null; // remove from lookup map } else { // otherwise just remove ele from req req.eles.unmerge(ele); } } }; ETCp.onDequeue = function (fn) { this.onDequeues.push(fn); }; ETCp.offDequeue = function (fn) { removeFromArray(this.onDequeues, fn); }; ETCp.setupDequeueing = defs.setupDequeueing({ deqRedrawThreshold: deqRedrawThreshold$1, deqCost: deqCost$1, deqAvgCost: deqAvgCost$1, deqNoDrawCost: deqNoDrawCost$1, deqFastCost: deqFastCost$1, deq: function deq(self, pxRatio, extent) { return self.dequeue(pxRatio, extent); }, onDeqd: function onDeqd(self, deqd) { for (var i = 0; i < self.onDequeues.length; i++) { var fn = self.onDequeues[i]; fn(deqd); } }, shouldRedraw: function shouldRedraw(self, deqd, pxRatio, extent) { for (var i = 0; i < deqd.length; i++) { var eles = deqd[i].eles; for (var j = 0; j < eles.length; j++) { var bb = eles[j].boundingBox(); if (boundingBoxesIntersect(bb, extent)) { return true; } } } return false; }, priority: function priority(self) { return self.renderer.beforeRenderPriorities.eleTxrDeq; } }); var defNumLayers = 1; // default number of layers to use var minLvl = -4; // when scaling smaller than that we don't need to re-render var maxLvl = 2; // when larger than this scale just render directly (caching is not helpful) var maxZoom = 3.99; // beyond this zoom level, layered textures are not used var deqRedrawThreshold = 50; // time to batch redraws together from dequeueing to allow more dequeueing calcs to happen in the meanwhile var refineEleDebounceTime = 50; // time to debounce sharper ele texture updates var deqCost = 0.15; // % of add'l rendering cost allowed for dequeuing ele caches each frame var deqAvgCost = 0.1; // % of add'l rendering cost compared to average overall redraw time var deqNoDrawCost = 0.9; // % of avg frame time that can be used for dequeueing when not drawing var deqFastCost = 0.9; // % of frame time to be used when >60fps var maxDeqSize = 1; // number of eles to dequeue and render at higher texture in each batch var invalidThreshold = 250; // time threshold for disabling b/c of invalidations var maxLayerArea = 4000 * 4000; // layers can't be bigger than this var useHighQualityEleTxrReqs = true; // whether to use high quality ele txr requests (generally faster and cheaper in the longterm) // var log = function(){ console.log.apply( console, arguments ); }; var LayeredTextureCache = function LayeredTextureCache(renderer) { var self = this; var r = self.renderer = renderer; var cy = r.cy; self.layersByLevel = {}; // e.g. 2 => [ layer1, layer2, ..., layerN ] self.firstGet = true; self.lastInvalidationTime = performanceNow() - 2 * invalidThreshold; self.skipping = false; self.eleTxrDeqs = cy.collection(); self.scheduleElementRefinement = debounce_1(function () { self.refineElementTextures(self.eleTxrDeqs); self.eleTxrDeqs.unmerge(self.eleTxrDeqs); }, refineEleDebounceTime); r.beforeRender(function (willDraw, now) { if (now - self.lastInvalidationTime <= invalidThreshold) { self.skipping = true; } else { self.skipping = false; } }, r.beforeRenderPriorities.lyrTxrSkip); var qSort = function qSort(a, b) { return b.reqs - a.reqs; }; self.layersQueue = new heap(qSort); self.setupDequeueing(); }; var LTCp = LayeredTextureCache.prototype; var layerIdPool = 0; var MAX_INT = Math.pow(2, 53) - 1; LTCp.makeLayer = function (bb, lvl) { var scale = Math.pow(2, lvl); var w = Math.ceil(bb.w * scale); var h = Math.ceil(bb.h * scale); var canvas = this.renderer.makeOffscreenCanvas(w, h); var layer = { id: layerIdPool = ++layerIdPool % MAX_INT, bb: bb, level: lvl, width: w, height: h, canvas: canvas, context: canvas.getContext('2d'), eles: [], elesQueue: [], reqs: 0 }; // log('make layer %s with w %s and h %s and lvl %s', layer.id, layer.width, layer.height, layer.level); var cxt = layer.context; var dx = -layer.bb.x1; var dy = -layer.bb.y1; // do the transform on creation to save cycles (it's the same for all eles) cxt.scale(scale, scale); cxt.translate(dx, dy); return layer; }; LTCp.getLayers = function (eles, pxRatio, lvl) { var self = this; var r = self.renderer; var cy = r.cy; var zoom = cy.zoom(); var firstGet = self.firstGet; self.firstGet = false; // log('--\nget layers with %s eles', eles.length); //log eles.map(function(ele){ return ele.id() }) ); if (lvl == null) { lvl = Math.ceil(log2(zoom * pxRatio)); if (lvl < minLvl) { lvl = minLvl; } else if (zoom >= maxZoom || lvl > maxLvl) { return null; } } self.validateLayersElesOrdering(lvl, eles); var layersByLvl = self.layersByLevel; var scale = Math.pow(2, lvl); var layers = layersByLvl[lvl] = layersByLvl[lvl] || []; var bb; var lvlComplete = self.levelIsComplete(lvl, eles); var tmpLayers; var checkTempLevels = function checkTempLevels() { var canUseAsTmpLvl = function canUseAsTmpLvl(l) { self.validateLayersElesOrdering(l, eles); if (self.levelIsComplete(l, eles)) { tmpLayers = layersByLvl[l]; return true; } }; var checkLvls = function checkLvls(dir) { if (tmpLayers) { return; } for (var l = lvl + dir; minLvl <= l && l <= maxLvl; l += dir) { if (canUseAsTmpLvl(l)) { break; } } }; checkLvls(+1); checkLvls(-1); // remove the invalid layers; they will be replaced as needed later in this function for (var i = layers.length - 1; i >= 0; i--) { var layer = layers[i]; if (layer.invalid) { removeFromArray(layers, layer); } } }; if (!lvlComplete) { // if the current level is incomplete, then use the closest, best quality layerset temporarily // and later queue the current layerset so we can get the proper quality level soon checkTempLevels(); } else { // log('level complete, using existing layers\n--'); return layers; } var getBb = function getBb() { if (!bb) { bb = makeBoundingBox(); for (var i = 0; i < eles.length; i++) { updateBoundingBox(bb, eles[i].boundingBox()); } } return bb; }; var makeLayer = function makeLayer(opts) { opts = opts || {}; var after = opts.after; getBb(); var area = bb.w * scale * (bb.h * scale); if (area > maxLayerArea) { return null; } var layer = self.makeLayer(bb, lvl); if (after != null) { var index = layers.indexOf(after) + 1; layers.splice(index, 0, layer); } else if (opts.insert === undefined || opts.insert) { // no after specified => first layer made so put at start layers.unshift(layer); } // if( tmpLayers ){ //self.queueLayer( layer ); // } return layer; }; if (self.skipping && !firstGet) { // log('skip layers'); return null; } // log('do layers'); var layer = null; var maxElesPerLayer = eles.length / defNumLayers; var allowLazyQueueing = !firstGet; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var rs = ele._private.rscratch; var caches = rs.imgLayerCaches = rs.imgLayerCaches || {}; // log('look at ele', ele.id()); var existingLayer = caches[lvl]; if (existingLayer) { // reuse layer for later eles // log('reuse layer for', ele.id()); layer = existingLayer; continue; } if (!layer || layer.eles.length >= maxElesPerLayer || !boundingBoxInBoundingBox(layer.bb, ele.boundingBox())) { // log('make new layer for ele %s', ele.id()); layer = makeLayer({ insert: true, after: layer }); // if now layer can be built then we can't use layers at this level if (!layer) { return null; } // log('new layer with id %s', layer.id); } if (tmpLayers || allowLazyQueueing) { // log('queue ele %s in layer %s', ele.id(), layer.id); self.queueLayer(layer, ele); } else { // log('draw ele %s in layer %s', ele.id(), layer.id); self.drawEleInLayer(layer, ele, lvl, pxRatio); } layer.eles.push(ele); caches[lvl] = layer; } // log('--'); if (tmpLayers) { // then we only queued the current layerset and can't draw it yet return tmpLayers; } if (allowLazyQueueing) { // log('lazy queue level', lvl); return null; } return layers; }; // a layer may want to use an ele cache of a higher level to avoid blurriness // so the layer level might not equal the ele level LTCp.getEleLevelForLayerLevel = function (lvl, pxRatio) { return lvl; }; LTCp.drawEleInLayer = function (layer, ele, lvl, pxRatio) { var self = this; var r = this.renderer; var context = layer.context; var bb = ele.boundingBox(); if (bb.w === 0 || bb.h === 0 || !ele.visible()) { return; } lvl = self.getEleLevelForLayerLevel(lvl, pxRatio); { r.setImgSmoothing(context, false); } { r.drawCachedElement(context, ele, null, null, lvl, useHighQualityEleTxrReqs); } { r.setImgSmoothing(context, true); } }; LTCp.levelIsComplete = function (lvl, eles) { var self = this; var layers = self.layersByLevel[lvl]; if (!layers || layers.length === 0) { return false; } var numElesInLayers = 0; for (var i = 0; i < layers.length; i++) { var layer = layers[i]; // if there are any eles needed to be drawn yet, the level is not complete if (layer.reqs > 0) { return false; } // if the layer is invalid, the level is not complete if (layer.invalid) { return false; } numElesInLayers += layer.eles.length; } // we should have exactly the number of eles passed in to be complete if (numElesInLayers !== eles.length) { return false; } return true; }; LTCp.validateLayersElesOrdering = function (lvl, eles) { var layers = this.layersByLevel[lvl]; if (!layers) { return; } // if in a layer the eles are not in the same order, then the layer is invalid // (i.e. there is an ele in between the eles in the layer) for (var i = 0; i < layers.length; i++) { var layer = layers[i]; var offset = -1; // find the offset for (var j = 0; j < eles.length; j++) { if (layer.eles[0] === eles[j]) { offset = j; break; } } if (offset < 0) { // then the layer has nonexistent elements and is invalid this.invalidateLayer(layer); continue; } // the eles in the layer must be in the same continuous order, else the layer is invalid var o = offset; for (var j = 0; j < layer.eles.length; j++) { if (layer.eles[j] !== eles[o + j]) { // log('invalidate based on ordering', layer.id); this.invalidateLayer(layer); break; } } } }; LTCp.updateElementsInLayers = function (eles, update) { var self = this; var isEles = element(eles[0]); // collect udpated elements (cascaded from the layers) and update each // layer itself along the way for (var i = 0; i < eles.length; i++) { var req = isEles ? null : eles[i]; var ele = isEles ? eles[i] : eles[i].ele; var rs = ele._private.rscratch; var caches = rs.imgLayerCaches = rs.imgLayerCaches || {}; for (var l = minLvl; l <= maxLvl; l++) { var layer = caches[l]; if (!layer) { continue; } // if update is a request from the ele cache, then it affects only // the matching level if (req && self.getEleLevelForLayerLevel(layer.level) !== req.level) { continue; } update(layer, ele, req); } } }; LTCp.haveLayers = function () { var self = this; var haveLayers = false; for (var l = minLvl; l <= maxLvl; l++) { var layers = self.layersByLevel[l]; if (layers && layers.length > 0) { haveLayers = true; break; } } return haveLayers; }; LTCp.invalidateElements = function (eles) { var self = this; if (eles.length === 0) { return; } self.lastInvalidationTime = performanceNow(); // log('update invalidate layer time from eles'); if (eles.length === 0 || !self.haveLayers()) { return; } self.updateElementsInLayers(eles, function invalAssocLayers(layer, ele, req) { self.invalidateLayer(layer); }); }; LTCp.invalidateLayer = function (layer) { // log('update invalidate layer time'); this.lastInvalidationTime = performanceNow(); if (layer.invalid) { return; } // save cycles var lvl = layer.level; var eles = layer.eles; var layers = this.layersByLevel[lvl]; // log('invalidate layer', layer.id ); removeFromArray(layers, layer); // layer.eles = []; layer.elesQueue = []; layer.invalid = true; if (layer.replacement) { layer.replacement.invalid = true; } for (var i = 0; i < eles.length; i++) { var caches = eles[i]._private.rscratch.imgLayerCaches; if (caches) { caches[lvl] = null; } } }; LTCp.refineElementTextures = function (eles) { var self = this; // log('refine', eles.length); self.updateElementsInLayers(eles, function refineEachEle(layer, ele, req) { var rLyr = layer.replacement; if (!rLyr) { rLyr = layer.replacement = self.makeLayer(layer.bb, layer.level); rLyr.replaces = layer; rLyr.eles = layer.eles; // log('make replacement layer %s for %s with level %s', rLyr.id, layer.id, rLyr.level); } if (!rLyr.reqs) { for (var i = 0; i < rLyr.eles.length; i++) { self.queueLayer(rLyr, rLyr.eles[i]); } // log('queue replacement layer refinement', rLyr.id); } }); }; LTCp.enqueueElementRefinement = function (ele) { this.eleTxrDeqs.merge(ele); this.scheduleElementRefinement(); }; LTCp.queueLayer = function (layer, ele) { var self = this; var q = self.layersQueue; var elesQ = layer.elesQueue; var hasId = elesQ.hasId = elesQ.hasId || {}; // if a layer is going to be replaced, queuing is a waste of time if (layer.replacement) { return; } if (ele) { if (hasId[ele.id()]) { return; } elesQ.push(ele); hasId[ele.id()] = true; } if (layer.reqs) { layer.reqs++; q.updateItem(layer); } else { layer.reqs = 1; q.push(layer); } }; LTCp.dequeue = function (pxRatio) { var self = this; var q = self.layersQueue; var deqd = []; var eleDeqs = 0; while (eleDeqs < maxDeqSize) { if (q.size() === 0) { break; } var layer = q.peek(); // if a layer has been or will be replaced, then don't waste time with it if (layer.replacement) { // log('layer %s in queue skipped b/c it already has a replacement', layer.id); q.pop(); continue; } // if this is a replacement layer that has been superceded, then forget it if (layer.replaces && layer !== layer.replaces.replacement) { // log('layer is no longer the most uptodate replacement; dequeued', layer.id) q.pop(); continue; } if (layer.invalid) { // log('replacement layer %s is invalid; dequeued', layer.id); q.pop(); continue; } var ele = layer.elesQueue.shift(); if (ele) { // log('dequeue layer %s', layer.id); self.drawEleInLayer(layer, ele, layer.level, pxRatio); eleDeqs++; } if (deqd.length === 0) { // we need only one entry in deqd to queue redrawing etc deqd.push(true); } // if the layer has all its eles done, then remove from the queue if (layer.elesQueue.length === 0) { q.pop(); layer.reqs = 0; // log('dequeue of layer %s complete', layer.id); // when a replacement layer is dequeued, it replaces the old layer in the level if (layer.replaces) { self.applyLayerReplacement(layer); } self.requestRedraw(); } } return deqd; }; LTCp.applyLayerReplacement = function (layer) { var self = this; var layersInLevel = self.layersByLevel[layer.level]; var replaced = layer.replaces; var index = layersInLevel.indexOf(replaced); // if the replaced layer is not in the active list for the level, then replacing // refs would be a mistake (i.e. overwriting the true active layer) if (index < 0 || replaced.invalid) { // log('replacement layer would have no effect', layer.id); return; } layersInLevel[index] = layer; // replace level ref // replace refs in eles for (var i = 0; i < layer.eles.length; i++) { var _p = layer.eles[i]._private; var cache = _p.imgLayerCaches = _p.imgLayerCaches || {}; if (cache) { cache[layer.level] = layer; } } // log('apply replacement layer %s over %s', layer.id, replaced.id); self.requestRedraw(); }; LTCp.requestRedraw = debounce_1(function () { var r = this.renderer; r.redrawHint('eles', true); r.redrawHint('drag', true); r.redraw(); }, 100); LTCp.setupDequeueing = defs.setupDequeueing({ deqRedrawThreshold: deqRedrawThreshold, deqCost: deqCost, deqAvgCost: deqAvgCost, deqNoDrawCost: deqNoDrawCost, deqFastCost: deqFastCost, deq: function deq(self, pxRatio) { return self.dequeue(pxRatio); }, onDeqd: noop$1, shouldRedraw: trueify, priority: function priority(self) { return self.renderer.beforeRenderPriorities.lyrTxrDeq; } }); var CRp$a = {}; var impl; function polygon(context, points) { for (var i = 0; i < points.length; i++) { var pt = points[i]; context.lineTo(pt.x, pt.y); } } function triangleBackcurve(context, points, controlPoint) { var firstPt; for (var i = 0; i < points.length; i++) { var pt = points[i]; if (i === 0) { firstPt = pt; } context.lineTo(pt.x, pt.y); } context.quadraticCurveTo(controlPoint.x, controlPoint.y, firstPt.x, firstPt.y); } function triangleTee(context, trianglePoints, teePoints) { if (context.beginPath) { context.beginPath(); } var triPts = trianglePoints; for (var i = 0; i < triPts.length; i++) { var pt = triPts[i]; context.lineTo(pt.x, pt.y); } var teePts = teePoints; var firstTeePt = teePoints[0]; context.moveTo(firstTeePt.x, firstTeePt.y); for (var i = 1; i < teePts.length; i++) { var pt = teePts[i]; context.lineTo(pt.x, pt.y); } if (context.closePath) { context.closePath(); } } function circleTriangle(context, trianglePoints, rx, ry, r) { if (context.beginPath) { context.beginPath(); } context.arc(rx, ry, r, 0, Math.PI * 2, false); var triPts = trianglePoints; var firstTrPt = triPts[0]; context.moveTo(firstTrPt.x, firstTrPt.y); for (var i = 0; i < triPts.length; i++) { var pt = triPts[i]; context.lineTo(pt.x, pt.y); } if (context.closePath) { context.closePath(); } } function circle(context, rx, ry, r) { context.arc(rx, ry, r, 0, Math.PI * 2, false); } CRp$a.arrowShapeImpl = function (name) { return (impl || (impl = { 'polygon': polygon, 'triangle-backcurve': triangleBackcurve, 'triangle-tee': triangleTee, 'circle-triangle': circleTriangle, 'triangle-cross': triangleTee, 'circle': circle }))[name]; }; var CRp$9 = {}; CRp$9.drawElement = function (context, ele, shiftToOriginWithBb, showLabel, showOverlay, showOpacity) { var r = this; if (ele.isNode()) { r.drawNode(context, ele, shiftToOriginWithBb, showLabel, showOverlay, showOpacity); } else { r.drawEdge(context, ele, shiftToOriginWithBb, showLabel, showOverlay, showOpacity); } }; CRp$9.drawElementOverlay = function (context, ele) { var r = this; if (ele.isNode()) { r.drawNodeOverlay(context, ele); } else { r.drawEdgeOverlay(context, ele); } }; CRp$9.drawElementUnderlay = function (context, ele) { var r = this; if (ele.isNode()) { r.drawNodeUnderlay(context, ele); } else { r.drawEdgeUnderlay(context, ele); } }; CRp$9.drawCachedElementPortion = function (context, ele, eleTxrCache, pxRatio, lvl, reason, getRotation, getOpacity) { var r = this; var bb = eleTxrCache.getBoundingBox(ele); if (bb.w === 0 || bb.h === 0) { return; } // ignore zero size case var eleCache = eleTxrCache.getElement(ele, bb, pxRatio, lvl, reason); if (eleCache != null) { var opacity = getOpacity(r, ele); if (opacity === 0) { return; } var theta = getRotation(r, ele); var x1 = bb.x1, y1 = bb.y1, w = bb.w, h = bb.h; var x, y, sx, sy, smooth; if (theta !== 0) { var rotPt = eleTxrCache.getRotationPoint(ele); sx = rotPt.x; sy = rotPt.y; context.translate(sx, sy); context.rotate(theta); smooth = r.getImgSmoothing(context); if (!smooth) { r.setImgSmoothing(context, true); } var off = eleTxrCache.getRotationOffset(ele); x = off.x; y = off.y; } else { x = x1; y = y1; } var oldGlobalAlpha; if (opacity !== 1) { oldGlobalAlpha = context.globalAlpha; context.globalAlpha = oldGlobalAlpha * opacity; } context.drawImage(eleCache.texture.canvas, eleCache.x, 0, eleCache.width, eleCache.height, x, y, w, h); if (opacity !== 1) { context.globalAlpha = oldGlobalAlpha; } if (theta !== 0) { context.rotate(-theta); context.translate(-sx, -sy); if (!smooth) { r.setImgSmoothing(context, false); } } } else { eleTxrCache.drawElement(context, ele); // direct draw fallback } }; var getZeroRotation = function getZeroRotation() { return 0; }; var getLabelRotation = function getLabelRotation(r, ele) { return r.getTextAngle(ele, null); }; var getSourceLabelRotation = function getSourceLabelRotation(r, ele) { return r.getTextAngle(ele, 'source'); }; var getTargetLabelRotation = function getTargetLabelRotation(r, ele) { return r.getTextAngle(ele, 'target'); }; var getOpacity = function getOpacity(r, ele) { return ele.effectiveOpacity(); }; var getTextOpacity = function getTextOpacity(e, ele) { return ele.pstyle('text-opacity').pfValue * ele.effectiveOpacity(); }; CRp$9.drawCachedElement = function (context, ele, pxRatio, extent, lvl, requestHighQuality) { var r = this; var _r$data = r.data, eleTxrCache = _r$data.eleTxrCache, lblTxrCache = _r$data.lblTxrCache, slbTxrCache = _r$data.slbTxrCache, tlbTxrCache = _r$data.tlbTxrCache; var bb = ele.boundingBox(); var reason = requestHighQuality === true ? eleTxrCache.reasons.highQuality : null; if (bb.w === 0 || bb.h === 0 || !ele.visible()) { return; } if (!extent || boundingBoxesIntersect(bb, extent)) { var isEdge = ele.isEdge(); var badLine = ele.element()._private.rscratch.badLine; r.drawElementUnderlay(context, ele); r.drawCachedElementPortion(context, ele, eleTxrCache, pxRatio, lvl, reason, getZeroRotation, getOpacity); if (!isEdge || !badLine) { r.drawCachedElementPortion(context, ele, lblTxrCache, pxRatio, lvl, reason, getLabelRotation, getTextOpacity); } if (isEdge && !badLine) { r.drawCachedElementPortion(context, ele, slbTxrCache, pxRatio, lvl, reason, getSourceLabelRotation, getTextOpacity); r.drawCachedElementPortion(context, ele, tlbTxrCache, pxRatio, lvl, reason, getTargetLabelRotation, getTextOpacity); } r.drawElementOverlay(context, ele); } }; CRp$9.drawElements = function (context, eles) { var r = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; r.drawElement(context, ele); } }; CRp$9.drawCachedElements = function (context, eles, pxRatio, extent) { var r = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; r.drawCachedElement(context, ele, pxRatio, extent); } }; CRp$9.drawCachedNodes = function (context, eles, pxRatio, extent) { var r = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; if (!ele.isNode()) { continue; } r.drawCachedElement(context, ele, pxRatio, extent); } }; CRp$9.drawLayeredElements = function (context, eles, pxRatio, extent) { var r = this; var layers = r.data.lyrTxrCache.getLayers(eles, pxRatio); if (layers) { for (var i = 0; i < layers.length; i++) { var layer = layers[i]; var bb = layer.bb; if (bb.w === 0 || bb.h === 0) { continue; } context.drawImage(layer.canvas, bb.x1, bb.y1, bb.w, bb.h); } } else { // fall back on plain caching if no layers r.drawCachedElements(context, eles, pxRatio, extent); } }; var CRp$8 = {}; CRp$8.drawEdge = function (context, edge, shiftToOriginWithBb) { var drawLabel = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true; var shouldDrawOverlay = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true; var shouldDrawOpacity = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : true; var r = this; var rs = edge._private.rscratch; if (shouldDrawOpacity && !edge.visible()) { return; } // if bezier ctrl pts can not be calculated, then die if (rs.badLine || rs.allpts == null || isNaN(rs.allpts[0])) { // isNaN in case edge is impossible and browser bugs (e.g. safari) return; } var bb; if (shiftToOriginWithBb) { bb = shiftToOriginWithBb; context.translate(-bb.x1, -bb.y1); } var opacity = shouldDrawOpacity ? edge.pstyle('opacity').value : 1; var lineOpacity = shouldDrawOpacity ? edge.pstyle('line-opacity').value : 1; var curveStyle = edge.pstyle('curve-style').value; var lineStyle = edge.pstyle('line-style').value; var edgeWidth = edge.pstyle('width').pfValue; var lineCap = edge.pstyle('line-cap').value; var effectiveLineOpacity = opacity * lineOpacity; // separate arrow opacity would require arrow-opacity property var effectiveArrowOpacity = opacity * lineOpacity; var drawLine = function drawLine() { var strokeOpacity = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : effectiveLineOpacity; if (curveStyle === 'straight-triangle') { r.eleStrokeStyle(context, edge, strokeOpacity); r.drawEdgeTrianglePath(edge, context, rs.allpts); } else { context.lineWidth = edgeWidth; context.lineCap = lineCap; r.eleStrokeStyle(context, edge, strokeOpacity); r.drawEdgePath(edge, context, rs.allpts, lineStyle); context.lineCap = 'butt'; // reset for other drawing functions } }; var drawOverlay = function drawOverlay() { if (!shouldDrawOverlay) { return; } r.drawEdgeOverlay(context, edge); }; var drawUnderlay = function drawUnderlay() { if (!shouldDrawOverlay) { return; } r.drawEdgeUnderlay(context, edge); }; var drawArrows = function drawArrows() { var arrowOpacity = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : effectiveArrowOpacity; r.drawArrowheads(context, edge, arrowOpacity); }; var drawText = function drawText() { r.drawElementText(context, edge, null, drawLabel); }; context.lineJoin = 'round'; var ghost = edge.pstyle('ghost').value === 'yes'; if (ghost) { var gx = edge.pstyle('ghost-offset-x').pfValue; var gy = edge.pstyle('ghost-offset-y').pfValue; var ghostOpacity = edge.pstyle('ghost-opacity').value; var effectiveGhostOpacity = effectiveLineOpacity * ghostOpacity; context.translate(gx, gy); drawLine(effectiveGhostOpacity); drawArrows(effectiveGhostOpacity); context.translate(-gx, -gy); } drawUnderlay(); drawLine(); drawArrows(); drawOverlay(); drawText(); if (shiftToOriginWithBb) { context.translate(bb.x1, bb.y1); } }; var drawEdgeOverlayUnderlay = function drawEdgeOverlayUnderlay(overlayOrUnderlay) { if (!['overlay', 'underlay'].includes(overlayOrUnderlay)) { throw new Error('Invalid state'); } return function (context, edge) { if (!edge.visible()) { return; } var opacity = edge.pstyle("".concat(overlayOrUnderlay, "-opacity")).value; if (opacity === 0) { return; } var r = this; var usePaths = r.usePaths(); var rs = edge._private.rscratch; var padding = edge.pstyle("".concat(overlayOrUnderlay, "-padding")).pfValue; var width = 2 * padding; var color = edge.pstyle("".concat(overlayOrUnderlay, "-color")).value; context.lineWidth = width; if (rs.edgeType === 'self' && !usePaths) { context.lineCap = 'butt'; } else { context.lineCap = 'round'; } r.colorStrokeStyle(context, color[0], color[1], color[2], opacity); r.drawEdgePath(edge, context, rs.allpts, 'solid'); }; }; CRp$8.drawEdgeOverlay = drawEdgeOverlayUnderlay('overlay'); CRp$8.drawEdgeUnderlay = drawEdgeOverlayUnderlay('underlay'); CRp$8.drawEdgePath = function (edge, context, pts, type) { var rs = edge._private.rscratch; var canvasCxt = context; var path; var pathCacheHit = false; var usePaths = this.usePaths(); var lineDashPattern = edge.pstyle('line-dash-pattern').pfValue; var lineDashOffset = edge.pstyle('line-dash-offset').pfValue; if (usePaths) { var pathCacheKey = pts.join('$'); var keyMatches = rs.pathCacheKey && rs.pathCacheKey === pathCacheKey; if (keyMatches) { path = context = rs.pathCache; pathCacheHit = true; } else { path = context = new Path2D(); rs.pathCacheKey = pathCacheKey; rs.pathCache = path; } } if (canvasCxt.setLineDash) { // for very outofdate browsers switch (type) { case 'dotted': canvasCxt.setLineDash([1, 1]); break; case 'dashed': canvasCxt.setLineDash(lineDashPattern); canvasCxt.lineDashOffset = lineDashOffset; break; case 'solid': canvasCxt.setLineDash([]); break; } } if (!pathCacheHit && !rs.badLine) { if (context.beginPath) { context.beginPath(); } context.moveTo(pts[0], pts[1]); switch (rs.edgeType) { case 'bezier': case 'self': case 'compound': case 'multibezier': for (var i = 2; i + 3 < pts.length; i += 4) { context.quadraticCurveTo(pts[i], pts[i + 1], pts[i + 2], pts[i + 3]); } break; case 'straight': case 'haystack': for (var _i = 2; _i + 1 < pts.length; _i += 2) { context.lineTo(pts[_i], pts[_i + 1]); } break; case 'segments': if (rs.isRound) { var _iterator = _createForOfIteratorHelper(rs.roundCorners), _step; try { for (_iterator.s(); !(_step = _iterator.n()).done;) { var corner = _step.value; drawPreparedRoundCorner(context, corner); } } catch (err) { _iterator.e(err); } finally { _iterator.f(); } context.lineTo(pts[pts.length - 2], pts[pts.length - 1]); } else { for (var _i2 = 2; _i2 + 1 < pts.length; _i2 += 2) { context.lineTo(pts[_i2], pts[_i2 + 1]); } } break; } } context = canvasCxt; if (usePaths) { context.stroke(path); } else { context.stroke(); } // reset any line dashes if (context.setLineDash) { // for very outofdate browsers context.setLineDash([]); } }; CRp$8.drawEdgeTrianglePath = function (edge, context, pts) { // use line stroke style for triangle fill style context.fillStyle = context.strokeStyle; var edgeWidth = edge.pstyle('width').pfValue; for (var i = 0; i + 1 < pts.length; i += 2) { var vector = [pts[i + 2] - pts[i], pts[i + 3] - pts[i + 1]]; var length = Math.sqrt(vector[0] * vector[0] + vector[1] * vector[1]); var normal = [vector[1] / length, -vector[0] / length]; var triangleHead = [normal[0] * edgeWidth / 2, normal[1] * edgeWidth / 2]; context.beginPath(); context.moveTo(pts[i] - triangleHead[0], pts[i + 1] - triangleHead[1]); context.lineTo(pts[i] + triangleHead[0], pts[i + 1] + triangleHead[1]); context.lineTo(pts[i + 2], pts[i + 3]); context.closePath(); context.fill(); } }; CRp$8.drawArrowheads = function (context, edge, opacity) { var rs = edge._private.rscratch; var isHaystack = rs.edgeType === 'haystack'; if (!isHaystack) { this.drawArrowhead(context, edge, 'source', rs.arrowStartX, rs.arrowStartY, rs.srcArrowAngle, opacity); } this.drawArrowhead(context, edge, 'mid-target', rs.midX, rs.midY, rs.midtgtArrowAngle, opacity); this.drawArrowhead(context, edge, 'mid-source', rs.midX, rs.midY, rs.midsrcArrowAngle, opacity); if (!isHaystack) { this.drawArrowhead(context, edge, 'target', rs.arrowEndX, rs.arrowEndY, rs.tgtArrowAngle, opacity); } }; CRp$8.drawArrowhead = function (context, edge, prefix, x, y, angle, opacity) { if (isNaN(x) || x == null || isNaN(y) || y == null || isNaN(angle) || angle == null) { return; } var self = this; var arrowShape = edge.pstyle(prefix + '-arrow-shape').value; if (arrowShape === 'none') { return; } var arrowClearFill = edge.pstyle(prefix + '-arrow-fill').value === 'hollow' ? 'both' : 'filled'; var arrowFill = edge.pstyle(prefix + '-arrow-fill').value; var edgeWidth = edge.pstyle('width').pfValue; var pArrowWidth = edge.pstyle(prefix + '-arrow-width'); var arrowWidth = pArrowWidth.value === 'match-line' ? edgeWidth : pArrowWidth.pfValue; if (pArrowWidth.units === '%') arrowWidth *= edgeWidth; var edgeOpacity = edge.pstyle('opacity').value; if (opacity === undefined) { opacity = edgeOpacity; } var gco = context.globalCompositeOperation; if (opacity !== 1 || arrowFill === 'hollow') { // then extra clear is needed context.globalCompositeOperation = 'destination-out'; self.colorFillStyle(context, 255, 255, 255, 1); self.colorStrokeStyle(context, 255, 255, 255, 1); self.drawArrowShape(edge, context, arrowClearFill, edgeWidth, arrowShape, arrowWidth, x, y, angle); context.globalCompositeOperation = gco; } // otherwise, the opaque arrow clears it for free :) var color = edge.pstyle(prefix + '-arrow-color').value; self.colorFillStyle(context, color[0], color[1], color[2], opacity); self.colorStrokeStyle(context, color[0], color[1], color[2], opacity); self.drawArrowShape(edge, context, arrowFill, edgeWidth, arrowShape, arrowWidth, x, y, angle); }; CRp$8.drawArrowShape = function (edge, context, fill, edgeWidth, shape, shapeWidth, x, y, angle) { var r = this; var usePaths = this.usePaths() && shape !== 'triangle-cross'; var pathCacheHit = false; var path; var canvasContext = context; var translation = { x: x, y: y }; var scale = edge.pstyle('arrow-scale').value; var size = this.getArrowWidth(edgeWidth, scale); var shapeImpl = r.arrowShapes[shape]; if (usePaths) { var cache = r.arrowPathCache = r.arrowPathCache || []; var key = hashString(shape); var cachedPath = cache[key]; if (cachedPath != null) { path = context = cachedPath; pathCacheHit = true; } else { path = context = new Path2D(); cache[key] = path; } } if (!pathCacheHit) { if (context.beginPath) { context.beginPath(); } if (usePaths) { // store in the path cache with values easily manipulated later shapeImpl.draw(context, 1, 0, { x: 0, y: 0 }, 1); } else { shapeImpl.draw(context, size, angle, translation, edgeWidth); } if (context.closePath) { context.closePath(); } } context = canvasContext; if (usePaths) { // set transform to arrow position/orientation context.translate(x, y); context.rotate(angle); context.scale(size, size); } if (fill === 'filled' || fill === 'both') { if (usePaths) { context.fill(path); } else { context.fill(); } } if (fill === 'hollow' || fill === 'both') { context.lineWidth = shapeWidth / (usePaths ? size : 1); context.lineJoin = 'miter'; if (usePaths) { context.stroke(path); } else { context.stroke(); } } if (usePaths) { // reset transform by applying inverse context.scale(1 / size, 1 / size); context.rotate(-angle); context.translate(-x, -y); } }; var CRp$7 = {}; CRp$7.safeDrawImage = function (context, img, ix, iy, iw, ih, x, y, w, h) { // detect problematic cases for old browsers with bad images (cheaper than try-catch) if (iw <= 0 || ih <= 0 || w <= 0 || h <= 0) { return; } try { context.drawImage(img, ix, iy, iw, ih, x, y, w, h); } catch (e) { warn(e); } }; CRp$7.drawInscribedImage = function (context, img, node, index, nodeOpacity) { var r = this; var pos = node.position(); var nodeX = pos.x; var nodeY = pos.y; var styleObj = node.cy().style(); var getIndexedStyle = styleObj.getIndexedStyle.bind(styleObj); var fit = getIndexedStyle(node, 'background-fit', 'value', index); var repeat = getIndexedStyle(node, 'background-repeat', 'value', index); var nodeW = node.width(); var nodeH = node.height(); var paddingX2 = node.padding() * 2; var nodeTW = nodeW + (getIndexedStyle(node, 'background-width-relative-to', 'value', index) === 'inner' ? 0 : paddingX2); var nodeTH = nodeH + (getIndexedStyle(node, 'background-height-relative-to', 'value', index) === 'inner' ? 0 : paddingX2); var rs = node._private.rscratch; var clip = getIndexedStyle(node, 'background-clip', 'value', index); var shouldClip = clip === 'node'; var imgOpacity = getIndexedStyle(node, 'background-image-opacity', 'value', index) * nodeOpacity; var smooth = getIndexedStyle(node, 'background-image-smoothing', 'value', index); var cornerRadius = node.pstyle('corner-radius').value; if (cornerRadius !== 'auto') cornerRadius = node.pstyle('corner-radius').pfValue; var imgW = img.width || img.cachedW; var imgH = img.height || img.cachedH; // workaround for broken browsers like ie if (null == imgW || null == imgH) { document.body.appendChild(img); // eslint-disable-line no-undef imgW = img.cachedW = img.width || img.offsetWidth; imgH = img.cachedH = img.height || img.offsetHeight; document.body.removeChild(img); // eslint-disable-line no-undef } var w = imgW; var h = imgH; if (getIndexedStyle(node, 'background-width', 'value', index) !== 'auto') { if (getIndexedStyle(node, 'background-width', 'units', index) === '%') { w = getIndexedStyle(node, 'background-width', 'pfValue', index) * nodeTW; } else { w = getIndexedStyle(node, 'background-width', 'pfValue', index); } } if (getIndexedStyle(node, 'background-height', 'value', index) !== 'auto') { if (getIndexedStyle(node, 'background-height', 'units', index) === '%') { h = getIndexedStyle(node, 'background-height', 'pfValue', index) * nodeTH; } else { h = getIndexedStyle(node, 'background-height', 'pfValue', index); } } if (w === 0 || h === 0) { return; // no point in drawing empty image (and chrome is broken in this case) } if (fit === 'contain') { var scale = Math.min(nodeTW / w, nodeTH / h); w *= scale; h *= scale; } else if (fit === 'cover') { var scale = Math.max(nodeTW / w, nodeTH / h); w *= scale; h *= scale; } var x = nodeX - nodeTW / 2; // left var posXUnits = getIndexedStyle(node, 'background-position-x', 'units', index); var posXPfVal = getIndexedStyle(node, 'background-position-x', 'pfValue', index); if (posXUnits === '%') { x += (nodeTW - w) * posXPfVal; } else { x += posXPfVal; } var offXUnits = getIndexedStyle(node, 'background-offset-x', 'units', index); var offXPfVal = getIndexedStyle(node, 'background-offset-x', 'pfValue', index); if (offXUnits === '%') { x += (nodeTW - w) * offXPfVal; } else { x += offXPfVal; } var y = nodeY - nodeTH / 2; // top var posYUnits = getIndexedStyle(node, 'background-position-y', 'units', index); var posYPfVal = getIndexedStyle(node, 'background-position-y', 'pfValue', index); if (posYUnits === '%') { y += (nodeTH - h) * posYPfVal; } else { y += posYPfVal; } var offYUnits = getIndexedStyle(node, 'background-offset-y', 'units', index); var offYPfVal = getIndexedStyle(node, 'background-offset-y', 'pfValue', index); if (offYUnits === '%') { y += (nodeTH - h) * offYPfVal; } else { y += offYPfVal; } if (rs.pathCache) { x -= nodeX; y -= nodeY; nodeX = 0; nodeY = 0; } var gAlpha = context.globalAlpha; context.globalAlpha = imgOpacity; var smoothingEnabled = r.getImgSmoothing(context); var isSmoothingSwitched = false; if (smooth === 'no' && smoothingEnabled) { r.setImgSmoothing(context, false); isSmoothingSwitched = true; } else if (smooth === 'yes' && !smoothingEnabled) { r.setImgSmoothing(context, true); isSmoothingSwitched = true; } if (repeat === 'no-repeat') { if (shouldClip) { context.save(); if (rs.pathCache) { context.clip(rs.pathCache); } else { r.nodeShapes[r.getNodeShape(node)].draw(context, nodeX, nodeY, nodeTW, nodeTH, cornerRadius, rs); context.clip(); } } r.safeDrawImage(context, img, 0, 0, imgW, imgH, x, y, w, h); if (shouldClip) { context.restore(); } } else { var pattern = context.createPattern(img, repeat); context.fillStyle = pattern; r.nodeShapes[r.getNodeShape(node)].draw(context, nodeX, nodeY, nodeTW, nodeTH, cornerRadius, rs); context.translate(x, y); context.fill(); context.translate(-x, -y); } context.globalAlpha = gAlpha; if (isSmoothingSwitched) { r.setImgSmoothing(context, smoothingEnabled); } }; var CRp$6 = {}; CRp$6.eleTextBiggerThanMin = function (ele, scale) { if (!scale) { var zoom = ele.cy().zoom(); var pxRatio = this.getPixelRatio(); var lvl = Math.ceil(log2(zoom * pxRatio)); // the effective texture level scale = Math.pow(2, lvl); } var computedSize = ele.pstyle('font-size').pfValue * scale; var minSize = ele.pstyle('min-zoomed-font-size').pfValue; if (computedSize < minSize) { return false; } return true; }; CRp$6.drawElementText = function (context, ele, shiftToOriginWithBb, force, prefix) { var useEleOpacity = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : true; var r = this; if (force == null) { if (useEleOpacity && !r.eleTextBiggerThanMin(ele)) { return; } } else if (force === false) { return; } if (ele.isNode()) { var label = ele.pstyle('label'); if (!label || !label.value) { return; } var justification = r.getLabelJustification(ele); context.textAlign = justification; context.textBaseline = 'bottom'; } else { var badLine = ele.element()._private.rscratch.badLine; var _label = ele.pstyle('label'); var srcLabel = ele.pstyle('source-label'); var tgtLabel = ele.pstyle('target-label'); if (badLine || (!_label || !_label.value) && (!srcLabel || !srcLabel.value) && (!tgtLabel || !tgtLabel.value)) { return; } context.textAlign = 'center'; context.textBaseline = 'bottom'; } var applyRotation = !shiftToOriginWithBb; var bb; if (shiftToOriginWithBb) { bb = shiftToOriginWithBb; context.translate(-bb.x1, -bb.y1); } if (prefix == null) { r.drawText(context, ele, null, applyRotation, useEleOpacity); if (ele.isEdge()) { r.drawText(context, ele, 'source', applyRotation, useEleOpacity); r.drawText(context, ele, 'target', applyRotation, useEleOpacity); } } else { r.drawText(context, ele, prefix, applyRotation, useEleOpacity); } if (shiftToOriginWithBb) { context.translate(bb.x1, bb.y1); } }; CRp$6.getFontCache = function (context) { var cache; this.fontCaches = this.fontCaches || []; for (var i = 0; i < this.fontCaches.length; i++) { cache = this.fontCaches[i]; if (cache.context === context) { return cache; } } cache = { context: context }; this.fontCaches.push(cache); return cache; }; // set up canvas context with font // returns transformed text string CRp$6.setupTextStyle = function (context, ele) { var useEleOpacity = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true; // Font style var labelStyle = ele.pstyle('font-style').strValue; var labelSize = ele.pstyle('font-size').pfValue + 'px'; var labelFamily = ele.pstyle('font-family').strValue; var labelWeight = ele.pstyle('font-weight').strValue; var opacity = useEleOpacity ? ele.effectiveOpacity() * ele.pstyle('text-opacity').value : 1; var outlineOpacity = ele.pstyle('text-outline-opacity').value * opacity; var color = ele.pstyle('color').value; var outlineColor = ele.pstyle('text-outline-color').value; context.font = labelStyle + ' ' + labelWeight + ' ' + labelSize + ' ' + labelFamily; context.lineJoin = 'round'; // so text outlines aren't jagged this.colorFillStyle(context, color[0], color[1], color[2], opacity); this.colorStrokeStyle(context, outlineColor[0], outlineColor[1], outlineColor[2], outlineOpacity); }; // TODO ensure re-used function roundRect(ctx, x, y, width, height) { var radius = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : 5; var stroke = arguments.length > 6 ? arguments[6] : undefined; ctx.beginPath(); ctx.moveTo(x + radius, y); ctx.lineTo(x + width - radius, y); ctx.quadraticCurveTo(x + width, y, x + width, y + radius); ctx.lineTo(x + width, y + height - radius); ctx.quadraticCurveTo(x + width, y + height, x + width - radius, y + height); ctx.lineTo(x + radius, y + height); ctx.quadraticCurveTo(x, y + height, x, y + height - radius); ctx.lineTo(x, y + radius); ctx.quadraticCurveTo(x, y, x + radius, y); ctx.closePath(); if (stroke) ctx.stroke();else ctx.fill(); } CRp$6.getTextAngle = function (ele, prefix) { var theta; var _p = ele._private; var rscratch = _p.rscratch; var pdash = prefix ? prefix + '-' : ''; var rotation = ele.pstyle(pdash + 'text-rotation'); var textAngle = getPrefixedProperty(rscratch, 'labelAngle', prefix); if (rotation.strValue === 'autorotate') { theta = ele.isEdge() ? textAngle : 0; } else if (rotation.strValue === 'none') { theta = 0; } else { theta = rotation.pfValue; } return theta; }; CRp$6.drawText = function (context, ele, prefix) { var applyRotation = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true; var useEleOpacity = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true; var _p = ele._private; var rscratch = _p.rscratch; var parentOpacity = useEleOpacity ? ele.effectiveOpacity() : 1; if (useEleOpacity && (parentOpacity === 0 || ele.pstyle('text-opacity').value === 0)) { return; } // use 'main' as an alias for the main label (i.e. null prefix) if (prefix === 'main') { prefix = null; } var textX = getPrefixedProperty(rscratch, 'labelX', prefix); var textY = getPrefixedProperty(rscratch, 'labelY', prefix); var orgTextX, orgTextY; // used for rotation var text = this.getLabelText(ele, prefix); if (text != null && text !== '' && !isNaN(textX) && !isNaN(textY)) { this.setupTextStyle(context, ele, useEleOpacity); var pdash = prefix ? prefix + '-' : ''; var textW = getPrefixedProperty(rscratch, 'labelWidth', prefix); var textH = getPrefixedProperty(rscratch, 'labelHeight', prefix); var marginX = ele.pstyle(pdash + 'text-margin-x').pfValue; var marginY = ele.pstyle(pdash + 'text-margin-y').pfValue; var isEdge = ele.isEdge(); var halign = ele.pstyle('text-halign').value; var valign = ele.pstyle('text-valign').value; if (isEdge) { halign = 'center'; valign = 'center'; } textX += marginX; textY += marginY; var theta; if (!applyRotation) { theta = 0; } else { theta = this.getTextAngle(ele, prefix); } if (theta !== 0) { orgTextX = textX; orgTextY = textY; context.translate(orgTextX, orgTextY); context.rotate(theta); textX = 0; textY = 0; } switch (valign) { case 'top': break; case 'center': textY += textH / 2; break; case 'bottom': textY += textH; break; } var backgroundOpacity = ele.pstyle('text-background-opacity').value; var borderOpacity = ele.pstyle('text-border-opacity').value; var textBorderWidth = ele.pstyle('text-border-width').pfValue; var backgroundPadding = ele.pstyle('text-background-padding').pfValue; var styleShape = ele.pstyle('text-background-shape').strValue; var rounded = styleShape.indexOf('round') === 0; var roundRadius = 2; if (backgroundOpacity > 0 || textBorderWidth > 0 && borderOpacity > 0) { var bgX = textX - backgroundPadding; switch (halign) { case 'left': bgX -= textW; break; case 'center': bgX -= textW / 2; break; } var bgY = textY - textH - backgroundPadding; var bgW = textW + 2 * backgroundPadding; var bgH = textH + 2 * backgroundPadding; if (backgroundOpacity > 0) { var textFill = context.fillStyle; var textBackgroundColor = ele.pstyle('text-background-color').value; context.fillStyle = 'rgba(' + textBackgroundColor[0] + ',' + textBackgroundColor[1] + ',' + textBackgroundColor[2] + ',' + backgroundOpacity * parentOpacity + ')'; if (rounded) { roundRect(context, bgX, bgY, bgW, bgH, roundRadius); } else { context.fillRect(bgX, bgY, bgW, bgH); } context.fillStyle = textFill; } if (textBorderWidth > 0 && borderOpacity > 0) { var textStroke = context.strokeStyle; var textLineWidth = context.lineWidth; var textBorderColor = ele.pstyle('text-border-color').value; var textBorderStyle = ele.pstyle('text-border-style').value; context.strokeStyle = 'rgba(' + textBorderColor[0] + ',' + textBorderColor[1] + ',' + textBorderColor[2] + ',' + borderOpacity * parentOpacity + ')'; context.lineWidth = textBorderWidth; if (context.setLineDash) { // for very outofdate browsers switch (textBorderStyle) { case 'dotted': context.setLineDash([1, 1]); break; case 'dashed': context.setLineDash([4, 2]); break; case 'double': context.lineWidth = textBorderWidth / 4; // 50% reserved for white between the two borders context.setLineDash([]); break; case 'solid': context.setLineDash([]); break; } } if (rounded) { roundRect(context, bgX, bgY, bgW, bgH, roundRadius, 'stroke'); } else { context.strokeRect(bgX, bgY, bgW, bgH); } if (textBorderStyle === 'double') { var whiteWidth = textBorderWidth / 2; if (rounded) { roundRect(context, bgX + whiteWidth, bgY + whiteWidth, bgW - whiteWidth * 2, bgH - whiteWidth * 2, roundRadius, 'stroke'); } else { context.strokeRect(bgX + whiteWidth, bgY + whiteWidth, bgW - whiteWidth * 2, bgH - whiteWidth * 2); } } if (context.setLineDash) { // for very outofdate browsers context.setLineDash([]); } context.lineWidth = textLineWidth; context.strokeStyle = textStroke; } } var lineWidth = 2 * ele.pstyle('text-outline-width').pfValue; // *2 b/c the stroke is drawn centred on the middle if (lineWidth > 0) { context.lineWidth = lineWidth; } if (ele.pstyle('text-wrap').value === 'wrap') { var lines = getPrefixedProperty(rscratch, 'labelWrapCachedLines', prefix); var lineHeight = getPrefixedProperty(rscratch, 'labelLineHeight', prefix); var halfTextW = textW / 2; var justification = this.getLabelJustification(ele); if (justification === 'auto') ; else if (halign === 'left') { // auto justification : right if (justification === 'left') { textX += -textW; } else if (justification === 'center') { textX += -halfTextW; } // else same as auto } else if (halign === 'center') { // auto justfication : center if (justification === 'left') { textX += -halfTextW; } else if (justification === 'right') { textX += halfTextW; } // else same as auto } else if (halign === 'right') { // auto justification : left if (justification === 'center') { textX += halfTextW; } else if (justification === 'right') { textX += textW; } // else same as auto } switch (valign) { case 'top': textY -= (lines.length - 1) * lineHeight; break; case 'center': case 'bottom': textY -= (lines.length - 1) * lineHeight; break; } for (var l = 0; l < lines.length; l++) { if (lineWidth > 0) { context.strokeText(lines[l], textX, textY); } context.fillText(lines[l], textX, textY); textY += lineHeight; } } else { if (lineWidth > 0) { context.strokeText(text, textX, textY); } context.fillText(text, textX, textY); } if (theta !== 0) { context.rotate(-theta); context.translate(-orgTextX, -orgTextY); } } }; /* global Path2D */ var CRp$5 = {}; CRp$5.drawNode = function (context, node, shiftToOriginWithBb) { var drawLabel = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true; var shouldDrawOverlay = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true; var shouldDrawOpacity = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : true; var r = this; var nodeWidth, nodeHeight; var _p = node._private; var rs = _p.rscratch; var pos = node.position(); if (!number$1(pos.x) || !number$1(pos.y)) { return; // can't draw node with undefined position } if (shouldDrawOpacity && !node.visible()) { return; } var eleOpacity = shouldDrawOpacity ? node.effectiveOpacity() : 1; var usePaths = r.usePaths(); var path; var pathCacheHit = false; var padding = node.padding(); nodeWidth = node.width() + 2 * padding; nodeHeight = node.height() + 2 * padding; // // setup shift var bb; if (shiftToOriginWithBb) { bb = shiftToOriginWithBb; context.translate(-bb.x1, -bb.y1); } // // load bg image var bgImgProp = node.pstyle('background-image'); var urls = bgImgProp.value; var urlDefined = new Array(urls.length); var image = new Array(urls.length); var numImages = 0; for (var i = 0; i < urls.length; i++) { var url = urls[i]; var defd = urlDefined[i] = url != null && url !== 'none'; if (defd) { var bgImgCrossOrigin = node.cy().style().getIndexedStyle(node, 'background-image-crossorigin', 'value', i); numImages++; // get image, and if not loaded then ask to redraw when later loaded image[i] = r.getCachedImage(url, bgImgCrossOrigin, function () { _p.backgroundTimestamp = Date.now(); node.emitAndNotify('background'); }); } } // // setup styles var darkness = node.pstyle('background-blacken').value; var borderWidth = node.pstyle('border-width').pfValue; var bgOpacity = node.pstyle('background-opacity').value * eleOpacity; var borderColor = node.pstyle('border-color').value; var borderStyle = node.pstyle('border-style').value; var borderJoin = node.pstyle('border-join').value; var borderCap = node.pstyle('border-cap').value; var borderPosition = node.pstyle('border-position').value; var borderPattern = node.pstyle('border-dash-pattern').pfValue; var borderOffset = node.pstyle('border-dash-offset').pfValue; var borderOpacity = node.pstyle('border-opacity').value * eleOpacity; var outlineWidth = node.pstyle('outline-width').pfValue; var outlineColor = node.pstyle('outline-color').value; var outlineStyle = node.pstyle('outline-style').value; var outlineOpacity = node.pstyle('outline-opacity').value * eleOpacity; var outlineOffset = node.pstyle('outline-offset').value; var cornerRadius = node.pstyle('corner-radius').value; if (cornerRadius !== 'auto') cornerRadius = node.pstyle('corner-radius').pfValue; var setupShapeColor = function setupShapeColor() { var bgOpy = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : bgOpacity; r.eleFillStyle(context, node, bgOpy); }; var setupBorderColor = function setupBorderColor() { var bdrOpy = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : borderOpacity; r.colorStrokeStyle(context, borderColor[0], borderColor[1], borderColor[2], bdrOpy); }; var setupOutlineColor = function setupOutlineColor() { var otlnOpy = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : outlineOpacity; r.colorStrokeStyle(context, outlineColor[0], outlineColor[1], outlineColor[2], otlnOpy); }; // // setup shape var getPath = function getPath(width, height, shape, points) { var pathCache = r.nodePathCache = r.nodePathCache || []; var key = hashStrings(shape === 'polygon' ? shape + ',' + points.join(',') : shape, '' + height, '' + width, '' + cornerRadius); var cachedPath = pathCache[key]; var path; var cacheHit = false; if (cachedPath != null) { path = cachedPath; cacheHit = true; rs.pathCache = path; } else { path = new Path2D(); pathCache[key] = rs.pathCache = path; } return { path: path, cacheHit: cacheHit }; }; var styleShape = node.pstyle('shape').strValue; var shapePts = node.pstyle('shape-polygon-points').pfValue; if (usePaths) { context.translate(pos.x, pos.y); var shapePath = getPath(nodeWidth, nodeHeight, styleShape, shapePts); path = shapePath.path; pathCacheHit = shapePath.cacheHit; } var drawShape = function drawShape() { if (!pathCacheHit) { var npos = pos; if (usePaths) { npos = { x: 0, y: 0 }; } r.nodeShapes[r.getNodeShape(node)].draw(path || context, npos.x, npos.y, nodeWidth, nodeHeight, cornerRadius, rs); } if (usePaths) { context.fill(path); } else { context.fill(); } }; var drawImages = function drawImages() { var nodeOpacity = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : eleOpacity; var inside = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; var prevBging = _p.backgrounding; var totalCompleted = 0; for (var _i = 0; _i < image.length; _i++) { var bgContainment = node.cy().style().getIndexedStyle(node, 'background-image-containment', 'value', _i); if (inside && bgContainment === 'over' || !inside && bgContainment === 'inside') { totalCompleted++; continue; } if (urlDefined[_i] && image[_i].complete && !image[_i].error) { totalCompleted++; r.drawInscribedImage(context, image[_i], node, _i, nodeOpacity); } } _p.backgrounding = !(totalCompleted === numImages); if (prevBging !== _p.backgrounding) { // update style b/c :backgrounding state changed node.updateStyle(false); } }; var drawPie = function drawPie() { var redrawShape = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false; var pieOpacity = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : eleOpacity; if (r.hasPie(node)) { r.drawPie(context, node, pieOpacity); // redraw/restore path if steps after pie need it if (redrawShape) { if (!usePaths) { r.nodeShapes[r.getNodeShape(node)].draw(context, pos.x, pos.y, nodeWidth, nodeHeight, cornerRadius, rs); } } } }; var darken = function darken() { var darkenOpacity = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : eleOpacity; var opacity = (darkness > 0 ? darkness : -darkness) * darkenOpacity; var c = darkness > 0 ? 0 : 255; if (darkness !== 0) { r.colorFillStyle(context, c, c, c, opacity); if (usePaths) { context.fill(path); } else { context.fill(); } } }; var drawBorder = function drawBorder() { if (borderWidth > 0) { context.lineWidth = borderWidth; context.lineCap = borderCap; context.lineJoin = borderJoin; if (context.setLineDash) { // for very outofdate browsers switch (borderStyle) { case 'dotted': context.setLineDash([1, 1]); break; case 'dashed': context.setLineDash(borderPattern); context.lineDashOffset = borderOffset; break; case 'solid': case 'double': context.setLineDash([]); break; } } if (borderPosition !== 'center') { context.save(); context.lineWidth *= 2; if (borderPosition === 'inside') { usePaths ? context.clip(path) : context.clip(); } else { var region = new Path2D(); region.rect(-nodeWidth / 2 - borderWidth, -nodeHeight / 2 - borderWidth, nodeWidth + 2 * borderWidth, nodeHeight + 2 * borderWidth); region.addPath(path); context.clip(region, 'evenodd'); } usePaths ? context.stroke(path) : context.stroke(); context.restore(); } else { usePaths ? context.stroke(path) : context.stroke(); } if (borderStyle === 'double') { context.lineWidth = borderWidth / 3; var gco = context.globalCompositeOperation; context.globalCompositeOperation = 'destination-out'; if (usePaths) { context.stroke(path); } else { context.stroke(); } context.globalCompositeOperation = gco; } // reset in case we changed the border style if (context.setLineDash) { // for very outofdate browsers context.setLineDash([]); } } }; var drawOutline = function drawOutline() { if (outlineWidth > 0) { context.lineWidth = outlineWidth; context.lineCap = 'butt'; if (context.setLineDash) { // for very outofdate browsers switch (outlineStyle) { case 'dotted': context.setLineDash([1, 1]); break; case 'dashed': context.setLineDash([4, 2]); break; case 'solid': case 'double': context.setLineDash([]); break; } } var npos = pos; if (usePaths) { npos = { x: 0, y: 0 }; } var shape = r.getNodeShape(node); var bWidth = borderWidth; if (borderPosition === 'inside') bWidth = 0; if (borderPosition === 'outside') bWidth *= 2; var scaleX = (nodeWidth + bWidth + (outlineWidth + outlineOffset)) / nodeWidth; var scaleY = (nodeHeight + bWidth + (outlineWidth + outlineOffset)) / nodeHeight; var sWidth = nodeWidth * scaleX; var sHeight = nodeHeight * scaleY; var points = r.nodeShapes[shape].points; var _path; if (usePaths) { var outlinePath = getPath(sWidth, sHeight, shape, points); _path = outlinePath.path; } // draw the outline path, either by using expanded points or by scaling // the dimensions, depending on shape if (shape === "ellipse") { r.drawEllipsePath(_path || context, npos.x, npos.y, sWidth, sHeight); } else if (['round-diamond', 'round-heptagon', 'round-hexagon', 'round-octagon', 'round-pentagon', 'round-polygon', 'round-triangle', 'round-tag'].includes(shape)) { var sMult = 0; var offsetX = 0; var offsetY = 0; if (shape === 'round-diamond') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.4; } else if (shape === 'round-heptagon') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.075; offsetY = -(bWidth / 2 + outlineOffset + outlineWidth) / 35; } else if (shape === 'round-hexagon') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.12; } else if (shape === 'round-pentagon') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.13; offsetY = -(bWidth / 2 + outlineOffset + outlineWidth) / 15; } else if (shape === 'round-tag') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.12; offsetX = (bWidth / 2 + outlineWidth + outlineOffset) * .07; } else if (shape === 'round-triangle') { sMult = (bWidth + outlineOffset + outlineWidth) * (Math.PI / 2); offsetY = -(bWidth + outlineOffset / 2 + outlineWidth) / Math.PI; } if (sMult !== 0) { scaleX = (nodeWidth + sMult) / nodeWidth; sWidth = nodeWidth * scaleX; if (!['round-hexagon', 'round-tag'].includes(shape)) { scaleY = (nodeHeight + sMult) / nodeHeight; sHeight = nodeHeight * scaleY; } } cornerRadius = cornerRadius === 'auto' ? getRoundPolygonRadius(sWidth, sHeight) : cornerRadius; var halfW = sWidth / 2; var halfH = sHeight / 2; var radius = cornerRadius + (bWidth + outlineWidth + outlineOffset) / 2; var p = new Array(points.length / 2); var corners = new Array(points.length / 2); for (var _i3 = 0; _i3 < points.length / 2; _i3++) { p[_i3] = { x: npos.x + offsetX + halfW * points[_i3 * 2], y: npos.y + offsetY + halfH * points[_i3 * 2 + 1] }; } var _i2, p1, p2, p3, len = p.length; p1 = p[len - 1]; // for each point for (_i2 = 0; _i2 < len; _i2++) { p2 = p[_i2 % len]; p3 = p[(_i2 + 1) % len]; corners[_i2] = getRoundCorner(p1, p2, p3, radius); p1 = p2; p2 = p3; } r.drawRoundPolygonPath(_path || context, npos.x + offsetX, npos.y + offsetY, nodeWidth * scaleX, nodeHeight * scaleY, points, corners); } else if (['roundrectangle', 'round-rectangle'].includes(shape)) { cornerRadius = cornerRadius === 'auto' ? getRoundRectangleRadius(sWidth, sHeight) : cornerRadius; r.drawRoundRectanglePath(_path || context, npos.x, npos.y, sWidth, sHeight, cornerRadius + (bWidth + outlineWidth + outlineOffset) / 2); } else if (['cutrectangle', 'cut-rectangle'].includes(shape)) { cornerRadius = cornerRadius === 'auto' ? getCutRectangleCornerLength() : cornerRadius; r.drawCutRectanglePath(_path || context, npos.x, npos.y, sWidth, sHeight, null, cornerRadius + (bWidth + outlineWidth + outlineOffset) / 4); } else if (['bottomroundrectangle', 'bottom-round-rectangle'].includes(shape)) { cornerRadius = cornerRadius === 'auto' ? getRoundRectangleRadius(sWidth, sHeight) : cornerRadius; r.drawBottomRoundRectanglePath(_path || context, npos.x, npos.y, sWidth, sHeight, cornerRadius + (bWidth + outlineWidth + outlineOffset) / 2); } else if (shape === "barrel") { r.drawBarrelPath(_path || context, npos.x, npos.y, sWidth, sHeight); } else if (shape.startsWith("polygon") || ['rhomboid', 'right-rhomboid', 'round-tag', 'tag', 'vee'].includes(shape)) { var pad = (bWidth + outlineWidth + outlineOffset) / nodeWidth; points = joinLines(expandPolygon(points, pad)); r.drawPolygonPath(_path || context, npos.x, npos.y, nodeWidth, nodeHeight, points); } else { var _pad = (bWidth + outlineWidth + outlineOffset) / nodeWidth; points = joinLines(expandPolygon(points, -_pad)); r.drawPolygonPath(_path || context, npos.x, npos.y, nodeWidth, nodeHeight, points); } if (usePaths) { context.stroke(_path); } else { context.stroke(); } if (outlineStyle === 'double') { context.lineWidth = bWidth / 3; var gco = context.globalCompositeOperation; context.globalCompositeOperation = 'destination-out'; if (usePaths) { context.stroke(_path); } else { context.stroke(); } context.globalCompositeOperation = gco; } // reset in case we changed the border style if (context.setLineDash) { // for very outofdate browsers context.setLineDash([]); } } }; var drawOverlay = function drawOverlay() { if (shouldDrawOverlay) { r.drawNodeOverlay(context, node, pos, nodeWidth, nodeHeight); } }; var drawUnderlay = function drawUnderlay() { if (shouldDrawOverlay) { r.drawNodeUnderlay(context, node, pos, nodeWidth, nodeHeight); } }; var drawText = function drawText() { r.drawElementText(context, node, null, drawLabel); }; var ghost = node.pstyle('ghost').value === 'yes'; if (ghost) { var gx = node.pstyle('ghost-offset-x').pfValue; var gy = node.pstyle('ghost-offset-y').pfValue; var ghostOpacity = node.pstyle('ghost-opacity').value; var effGhostOpacity = ghostOpacity * eleOpacity; context.translate(gx, gy); setupOutlineColor(); drawOutline(); setupShapeColor(ghostOpacity * bgOpacity); drawShape(); drawImages(effGhostOpacity, true); setupBorderColor(ghostOpacity * borderOpacity); drawBorder(); drawPie(darkness !== 0 || borderWidth !== 0); drawImages(effGhostOpacity, false); darken(effGhostOpacity); context.translate(-gx, -gy); } if (usePaths) { context.translate(-pos.x, -pos.y); } drawUnderlay(); if (usePaths) { context.translate(pos.x, pos.y); } setupOutlineColor(); drawOutline(); setupShapeColor(); drawShape(); drawImages(eleOpacity, true); setupBorderColor(); drawBorder(); drawPie(darkness !== 0 || borderWidth !== 0); drawImages(eleOpacity, false); darken(); if (usePaths) { context.translate(-pos.x, -pos.y); } drawText(); drawOverlay(); // // clean up shift if (shiftToOriginWithBb) { context.translate(bb.x1, bb.y1); } }; var drawNodeOverlayUnderlay = function drawNodeOverlayUnderlay(overlayOrUnderlay) { if (!['overlay', 'underlay'].includes(overlayOrUnderlay)) { throw new Error('Invalid state'); } return function (context, node, pos, nodeWidth, nodeHeight) { var r = this; if (!node.visible()) { return; } var padding = node.pstyle("".concat(overlayOrUnderlay, "-padding")).pfValue; var opacity = node.pstyle("".concat(overlayOrUnderlay, "-opacity")).value; var color = node.pstyle("".concat(overlayOrUnderlay, "-color")).value; var shape = node.pstyle("".concat(overlayOrUnderlay, "-shape")).value; var radius = node.pstyle("".concat(overlayOrUnderlay, "-corner-radius")).value; if (opacity > 0) { pos = pos || node.position(); if (nodeWidth == null || nodeHeight == null) { var _padding = node.padding(); nodeWidth = node.width() + 2 * _padding; nodeHeight = node.height() + 2 * _padding; } r.colorFillStyle(context, color[0], color[1], color[2], opacity); r.nodeShapes[shape].draw(context, pos.x, pos.y, nodeWidth + padding * 2, nodeHeight + padding * 2, radius); context.fill(); } }; }; CRp$5.drawNodeOverlay = drawNodeOverlayUnderlay('overlay'); CRp$5.drawNodeUnderlay = drawNodeOverlayUnderlay('underlay'); // does the node have at least one pie piece? CRp$5.hasPie = function (node) { node = node[0]; // ensure ele ref return node._private.hasPie; }; CRp$5.drawPie = function (context, node, nodeOpacity, pos) { node = node[0]; // ensure ele ref pos = pos || node.position(); var cyStyle = node.cy().style(); var pieSize = node.pstyle('pie-size'); var x = pos.x; var y = pos.y; var nodeW = node.width(); var nodeH = node.height(); var radius = Math.min(nodeW, nodeH) / 2; // must fit in node var lastPercent = 0; // what % to continue drawing pie slices from on [0, 1] var usePaths = this.usePaths(); if (usePaths) { x = 0; y = 0; } if (pieSize.units === '%') { radius = radius * pieSize.pfValue; } else if (pieSize.pfValue !== undefined) { radius = pieSize.pfValue / 2; } for (var i = 1; i <= cyStyle.pieBackgroundN; i++) { // 1..N var size = node.pstyle('pie-' + i + '-background-size').value; var color = node.pstyle('pie-' + i + '-background-color').value; var opacity = node.pstyle('pie-' + i + '-background-opacity').value * nodeOpacity; var percent = size / 100; // map integer range [0, 100] to [0, 1] // percent can't push beyond 1 if (percent + lastPercent > 1) { percent = 1 - lastPercent; } var angleStart = 1.5 * Math.PI + 2 * Math.PI * lastPercent; // start at 12 o'clock and go clockwise var angleDelta = 2 * Math.PI * percent; var angleEnd = angleStart + angleDelta; // ignore if // - zero size // - we're already beyond the full circle // - adding the current slice would go beyond the full circle if (size === 0 || lastPercent >= 1 || lastPercent + percent > 1) { continue; } context.beginPath(); context.moveTo(x, y); context.arc(x, y, radius, angleStart, angleEnd); context.closePath(); this.colorFillStyle(context, color[0], color[1], color[2], opacity); context.fill(); lastPercent += percent; } }; var CRp$4 = {}; var motionBlurDelay = 100; // var isFirefox = typeof InstallTrigger !== 'undefined'; CRp$4.getPixelRatio = function () { var context = this.data.contexts[0]; if (this.forcedPixelRatio != null) { return this.forcedPixelRatio; } var backingStore = context.backingStorePixelRatio || context.webkitBackingStorePixelRatio || context.mozBackingStorePixelRatio || context.msBackingStorePixelRatio || context.oBackingStorePixelRatio || context.backingStorePixelRatio || 1; return (window.devicePixelRatio || 1) / backingStore; // eslint-disable-line no-undef }; CRp$4.paintCache = function (context) { var caches = this.paintCaches = this.paintCaches || []; var needToCreateCache = true; var cache; for (var i = 0; i < caches.length; i++) { cache = caches[i]; if (cache.context === context) { needToCreateCache = false; break; } } if (needToCreateCache) { cache = { context: context }; caches.push(cache); } return cache; }; CRp$4.createGradientStyleFor = function (context, shapeStyleName, ele, fill, opacity) { var gradientStyle; var usePaths = this.usePaths(); var colors = ele.pstyle(shapeStyleName + '-gradient-stop-colors').value, positions = ele.pstyle(shapeStyleName + '-gradient-stop-positions').pfValue; if (fill === 'radial-gradient') { if (ele.isEdge()) { var start = ele.sourceEndpoint(), end = ele.targetEndpoint(), mid = ele.midpoint(); var d1 = dist(start, mid); var d2 = dist(end, mid); gradientStyle = context.createRadialGradient(mid.x, mid.y, 0, mid.x, mid.y, Math.max(d1, d2)); } else { var pos = usePaths ? { x: 0, y: 0 } : ele.position(), width = ele.paddedWidth(), height = ele.paddedHeight(); gradientStyle = context.createRadialGradient(pos.x, pos.y, 0, pos.x, pos.y, Math.max(width, height)); } } else { if (ele.isEdge()) { var _start = ele.sourceEndpoint(), _end = ele.targetEndpoint(); gradientStyle = context.createLinearGradient(_start.x, _start.y, _end.x, _end.y); } else { var _pos = usePaths ? { x: 0, y: 0 } : ele.position(), _width = ele.paddedWidth(), _height = ele.paddedHeight(), halfWidth = _width / 2, halfHeight = _height / 2; var direction = ele.pstyle('background-gradient-direction').value; switch (direction) { case 'to-bottom': gradientStyle = context.createLinearGradient(_pos.x, _pos.y - halfHeight, _pos.x, _pos.y + halfHeight); break; case 'to-top': gradientStyle = context.createLinearGradient(_pos.x, _pos.y + halfHeight, _pos.x, _pos.y - halfHeight); break; case 'to-left': gradientStyle = context.createLinearGradient(_pos.x + halfWidth, _pos.y, _pos.x - halfWidth, _pos.y); break; case 'to-right': gradientStyle = context.createLinearGradient(_pos.x - halfWidth, _pos.y, _pos.x + halfWidth, _pos.y); break; case 'to-bottom-right': case 'to-right-bottom': gradientStyle = context.createLinearGradient(_pos.x - halfWidth, _pos.y - halfHeight, _pos.x + halfWidth, _pos.y + halfHeight); break; case 'to-top-right': case 'to-right-top': gradientStyle = context.createLinearGradient(_pos.x - halfWidth, _pos.y + halfHeight, _pos.x + halfWidth, _pos.y - halfHeight); break; case 'to-bottom-left': case 'to-left-bottom': gradientStyle = context.createLinearGradient(_pos.x + halfWidth, _pos.y - halfHeight, _pos.x - halfWidth, _pos.y + halfHeight); break; case 'to-top-left': case 'to-left-top': gradientStyle = context.createLinearGradient(_pos.x + halfWidth, _pos.y + halfHeight, _pos.x - halfWidth, _pos.y - halfHeight); break; } } } if (!gradientStyle) return null; // invalid gradient style var hasPositions = positions.length === colors.length; var length = colors.length; for (var i = 0; i < length; i++) { gradientStyle.addColorStop(hasPositions ? positions[i] : i / (length - 1), 'rgba(' + colors[i][0] + ',' + colors[i][1] + ',' + colors[i][2] + ',' + opacity + ')'); } return gradientStyle; }; CRp$4.gradientFillStyle = function (context, ele, fill, opacity) { var gradientStyle = this.createGradientStyleFor(context, 'background', ele, fill, opacity); if (!gradientStyle) return null; // error context.fillStyle = gradientStyle; }; CRp$4.colorFillStyle = function (context, r, g, b, a) { context.fillStyle = 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')'; // turn off for now, seems context does its own caching // var cache = this.paintCache(context); // var fillStyle = 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')'; // if( cache.fillStyle !== fillStyle ){ // context.fillStyle = cache.fillStyle = fillStyle; // } }; CRp$4.eleFillStyle = function (context, ele, opacity) { var backgroundFill = ele.pstyle('background-fill').value; if (backgroundFill === 'linear-gradient' || backgroundFill === 'radial-gradient') { this.gradientFillStyle(context, ele, backgroundFill, opacity); } else { var backgroundColor = ele.pstyle('background-color').value; this.colorFillStyle(context, backgroundColor[0], backgroundColor[1], backgroundColor[2], opacity); } }; CRp$4.gradientStrokeStyle = function (context, ele, fill, opacity) { var gradientStyle = this.createGradientStyleFor(context, 'line', ele, fill, opacity); if (!gradientStyle) return null; // error context.strokeStyle = gradientStyle; }; CRp$4.colorStrokeStyle = function (context, r, g, b, a) { context.strokeStyle = 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')'; // turn off for now, seems context does its own caching // var cache = this.paintCache(context); // var strokeStyle = 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')'; // if( cache.strokeStyle !== strokeStyle ){ // context.strokeStyle = cache.strokeStyle = strokeStyle; // } }; CRp$4.eleStrokeStyle = function (context, ele, opacity) { var lineFill = ele.pstyle('line-fill').value; if (lineFill === 'linear-gradient' || lineFill === 'radial-gradient') { this.gradientStrokeStyle(context, ele, lineFill, opacity); } else { var lineColor = ele.pstyle('line-color').value; this.colorStrokeStyle(context, lineColor[0], lineColor[1], lineColor[2], opacity); } }; // Resize canvas CRp$4.matchCanvasSize = function (container) { var r = this; var data = r.data; var bb = r.findContainerClientCoords(); var width = bb[2]; var height = bb[3]; var pixelRatio = r.getPixelRatio(); var mbPxRatio = r.motionBlurPxRatio; if (container === r.data.bufferCanvases[r.MOTIONBLUR_BUFFER_NODE] || container === r.data.bufferCanvases[r.MOTIONBLUR_BUFFER_DRAG]) { pixelRatio = mbPxRatio; } var canvasWidth = width * pixelRatio; var canvasHeight = height * pixelRatio; var canvas; if (canvasWidth === r.canvasWidth && canvasHeight === r.canvasHeight) { return; // save cycles if same } r.fontCaches = null; // resizing resets the style var canvasContainer = data.canvasContainer; canvasContainer.style.width = width + 'px'; canvasContainer.style.height = height + 'px'; for (var i = 0; i < r.CANVAS_LAYERS; i++) { canvas = data.canvases[i]; canvas.width = canvasWidth; canvas.height = canvasHeight; canvas.style.width = width + 'px'; canvas.style.height = height + 'px'; } for (var i = 0; i < r.BUFFER_COUNT; i++) { canvas = data.bufferCanvases[i]; canvas.width = canvasWidth; canvas.height = canvasHeight; canvas.style.width = width + 'px'; canvas.style.height = height + 'px'; } r.textureMult = 1; if (pixelRatio <= 1) { canvas = data.bufferCanvases[r.TEXTURE_BUFFER]; r.textureMult = 2; canvas.width = canvasWidth * r.textureMult; canvas.height = canvasHeight * r.textureMult; } r.canvasWidth = canvasWidth; r.canvasHeight = canvasHeight; }; CRp$4.renderTo = function (cxt, zoom, pan, pxRatio) { this.render({ forcedContext: cxt, forcedZoom: zoom, forcedPan: pan, drawAllLayers: true, forcedPxRatio: pxRatio }); }; CRp$4.render = function (options) { options = options || staticEmptyObject(); var forcedContext = options.forcedContext; var drawAllLayers = options.drawAllLayers; var drawOnlyNodeLayer = options.drawOnlyNodeLayer; var forcedZoom = options.forcedZoom; var forcedPan = options.forcedPan; var r = this; var pixelRatio = options.forcedPxRatio === undefined ? this.getPixelRatio() : options.forcedPxRatio; var cy = r.cy; var data = r.data; var needDraw = data.canvasNeedsRedraw; var textureDraw = r.textureOnViewport && !forcedContext && (r.pinching || r.hoverData.dragging || r.swipePanning || r.data.wheelZooming); var motionBlur = options.motionBlur !== undefined ? options.motionBlur : r.motionBlur; var mbPxRatio = r.motionBlurPxRatio; var hasCompoundNodes = cy.hasCompoundNodes(); var inNodeDragGesture = r.hoverData.draggingEles; var inBoxSelection = r.hoverData.selecting || r.touchData.selecting ? true : false; motionBlur = motionBlur && !forcedContext && r.motionBlurEnabled && !inBoxSelection; var motionBlurFadeEffect = motionBlur; if (!forcedContext) { if (r.prevPxRatio !== pixelRatio) { r.invalidateContainerClientCoordsCache(); r.matchCanvasSize(r.container); r.redrawHint('eles', true); r.redrawHint('drag', true); } r.prevPxRatio = pixelRatio; } if (!forcedContext && r.motionBlurTimeout) { clearTimeout(r.motionBlurTimeout); } if (motionBlur) { if (r.mbFrames == null) { r.mbFrames = 0; } r.mbFrames++; if (r.mbFrames < 3) { // need several frames before even high quality motionblur motionBlurFadeEffect = false; } // go to lower quality blurry frames when several m/b frames have been rendered (avoids flashing) if (r.mbFrames > r.minMbLowQualFrames) { //r.fullQualityMb = false; r.motionBlurPxRatio = r.mbPxRBlurry; } } if (r.clearingMotionBlur) { r.motionBlurPxRatio = 1; } // b/c drawToContext() may be async w.r.t. redraw(), keep track of last texture frame // because a rogue async texture frame would clear needDraw if (r.textureDrawLastFrame && !textureDraw) { needDraw[r.NODE] = true; needDraw[r.SELECT_BOX] = true; } var style = cy.style(); var zoom = cy.zoom(); var effectiveZoom = forcedZoom !== undefined ? forcedZoom : zoom; var pan = cy.pan(); var effectivePan = { x: pan.x, y: pan.y }; var vp = { zoom: zoom, pan: { x: pan.x, y: pan.y } }; var prevVp = r.prevViewport; var viewportIsDiff = prevVp === undefined || vp.zoom !== prevVp.zoom || vp.pan.x !== prevVp.pan.x || vp.pan.y !== prevVp.pan.y; // we want the low quality motionblur only when the viewport is being manipulated etc (where it's not noticed) if (!viewportIsDiff && !(inNodeDragGesture && !hasCompoundNodes)) { r.motionBlurPxRatio = 1; } if (forcedPan) { effectivePan = forcedPan; } // apply pixel ratio effectiveZoom *= pixelRatio; effectivePan.x *= pixelRatio; effectivePan.y *= pixelRatio; var eles = r.getCachedZSortedEles(); function mbclear(context, x, y, w, h) { var gco = context.globalCompositeOperation; context.globalCompositeOperation = 'destination-out'; r.colorFillStyle(context, 255, 255, 255, r.motionBlurTransparency); context.fillRect(x, y, w, h); context.globalCompositeOperation = gco; } function setContextTransform(context, clear) { var ePan, eZoom, w, h; if (!r.clearingMotionBlur && (context === data.bufferContexts[r.MOTIONBLUR_BUFFER_NODE] || context === data.bufferContexts[r.MOTIONBLUR_BUFFER_DRAG])) { ePan = { x: pan.x * mbPxRatio, y: pan.y * mbPxRatio }; eZoom = zoom * mbPxRatio; w = r.canvasWidth * mbPxRatio; h = r.canvasHeight * mbPxRatio; } else { ePan = effectivePan; eZoom = effectiveZoom; w = r.canvasWidth; h = r.canvasHeight; } context.setTransform(1, 0, 0, 1, 0, 0); if (clear === 'motionBlur') { mbclear(context, 0, 0, w, h); } else if (!forcedContext && (clear === undefined || clear)) { context.clearRect(0, 0, w, h); } if (!drawAllLayers) { context.translate(ePan.x, ePan.y); context.scale(eZoom, eZoom); } if (forcedPan) { context.translate(forcedPan.x, forcedPan.y); } if (forcedZoom) { context.scale(forcedZoom, forcedZoom); } } if (!textureDraw) { r.textureDrawLastFrame = false; } if (textureDraw) { r.textureDrawLastFrame = true; if (!r.textureCache) { r.textureCache = {}; r.textureCache.bb = cy.mutableElements().boundingBox(); r.textureCache.texture = r.data.bufferCanvases[r.TEXTURE_BUFFER]; var cxt = r.data.bufferContexts[r.TEXTURE_BUFFER]; cxt.setTransform(1, 0, 0, 1, 0, 0); cxt.clearRect(0, 0, r.canvasWidth * r.textureMult, r.canvasHeight * r.textureMult); r.render({ forcedContext: cxt, drawOnlyNodeLayer: true, forcedPxRatio: pixelRatio * r.textureMult }); var vp = r.textureCache.viewport = { zoom: cy.zoom(), pan: cy.pan(), width: r.canvasWidth, height: r.canvasHeight }; vp.mpan = { x: (0 - vp.pan.x) / vp.zoom, y: (0 - vp.pan.y) / vp.zoom }; } needDraw[r.DRAG] = false; needDraw[r.NODE] = false; var context = data.contexts[r.NODE]; var texture = r.textureCache.texture; var vp = r.textureCache.viewport; context.setTransform(1, 0, 0, 1, 0, 0); if (motionBlur) { mbclear(context, 0, 0, vp.width, vp.height); } else { context.clearRect(0, 0, vp.width, vp.height); } var outsideBgColor = style.core('outside-texture-bg-color').value; var outsideBgOpacity = style.core('outside-texture-bg-opacity').value; r.colorFillStyle(context, outsideBgColor[0], outsideBgColor[1], outsideBgColor[2], outsideBgOpacity); context.fillRect(0, 0, vp.width, vp.height); var zoom = cy.zoom(); setContextTransform(context, false); context.clearRect(vp.mpan.x, vp.mpan.y, vp.width / vp.zoom / pixelRatio, vp.height / vp.zoom / pixelRatio); context.drawImage(texture, vp.mpan.x, vp.mpan.y, vp.width / vp.zoom / pixelRatio, vp.height / vp.zoom / pixelRatio); } else if (r.textureOnViewport && !forcedContext) { // clear the cache since we don't need it r.textureCache = null; } var extent = cy.extent(); var vpManip = r.pinching || r.hoverData.dragging || r.swipePanning || r.data.wheelZooming || r.hoverData.draggingEles || r.cy.animated(); var hideEdges = r.hideEdgesOnViewport && vpManip; var needMbClear = []; needMbClear[r.NODE] = !needDraw[r.NODE] && motionBlur && !r.clearedForMotionBlur[r.NODE] || r.clearingMotionBlur; if (needMbClear[r.NODE]) { r.clearedForMotionBlur[r.NODE] = true; } needMbClear[r.DRAG] = !needDraw[r.DRAG] && motionBlur && !r.clearedForMotionBlur[r.DRAG] || r.clearingMotionBlur; if (needMbClear[r.DRAG]) { r.clearedForMotionBlur[r.DRAG] = true; } if (needDraw[r.NODE] || drawAllLayers || drawOnlyNodeLayer || needMbClear[r.NODE]) { var useBuffer = motionBlur && !needMbClear[r.NODE] && mbPxRatio !== 1; var context = forcedContext || (useBuffer ? r.data.bufferContexts[r.MOTIONBLUR_BUFFER_NODE] : data.contexts[r.NODE]); var clear = motionBlur && !useBuffer ? 'motionBlur' : undefined; setContextTransform(context, clear); if (hideEdges) { r.drawCachedNodes(context, eles.nondrag, pixelRatio, extent); } else { r.drawLayeredElements(context, eles.nondrag, pixelRatio, extent); } if (r.debug) { r.drawDebugPoints(context, eles.nondrag); } if (!drawAllLayers && !motionBlur) { needDraw[r.NODE] = false; } } if (!drawOnlyNodeLayer && (needDraw[r.DRAG] || drawAllLayers || needMbClear[r.DRAG])) { var useBuffer = motionBlur && !needMbClear[r.DRAG] && mbPxRatio !== 1; var context = forcedContext || (useBuffer ? r.data.bufferContexts[r.MOTIONBLUR_BUFFER_DRAG] : data.contexts[r.DRAG]); setContextTransform(context, motionBlur && !useBuffer ? 'motionBlur' : undefined); if (hideEdges) { r.drawCachedNodes(context, eles.drag, pixelRatio, extent); } else { r.drawCachedElements(context, eles.drag, pixelRatio, extent); } if (r.debug) { r.drawDebugPoints(context, eles.drag); } if (!drawAllLayers && !motionBlur) { needDraw[r.DRAG] = false; } } if (r.showFps || !drawOnlyNodeLayer && needDraw[r.SELECT_BOX] && !drawAllLayers) { var context = forcedContext || data.contexts[r.SELECT_BOX]; setContextTransform(context); if (r.selection[4] == 1 && (r.hoverData.selecting || r.touchData.selecting)) { var zoom = r.cy.zoom(); var borderWidth = style.core('selection-box-border-width').value / zoom; context.lineWidth = borderWidth; context.fillStyle = 'rgba(' + style.core('selection-box-color').value[0] + ',' + style.core('selection-box-color').value[1] + ',' + style.core('selection-box-color').value[2] + ',' + style.core('selection-box-opacity').value + ')'; context.fillRect(r.selection[0], r.selection[1], r.selection[2] - r.selection[0], r.selection[3] - r.selection[1]); if (borderWidth > 0) { context.strokeStyle = 'rgba(' + style.core('selection-box-border-color').value[0] + ',' + style.core('selection-box-border-color').value[1] + ',' + style.core('selection-box-border-color').value[2] + ',' + style.core('selection-box-opacity').value + ')'; context.strokeRect(r.selection[0], r.selection[1], r.selection[2] - r.selection[0], r.selection[3] - r.selection[1]); } } if (data.bgActivePosistion && !r.hoverData.selecting) { var zoom = r.cy.zoom(); var pos = data.bgActivePosistion; context.fillStyle = 'rgba(' + style.core('active-bg-color').value[0] + ',' + style.core('active-bg-color').value[1] + ',' + style.core('active-bg-color').value[2] + ',' + style.core('active-bg-opacity').value + ')'; context.beginPath(); context.arc(pos.x, pos.y, style.core('active-bg-size').pfValue / zoom, 0, 2 * Math.PI); context.fill(); } var timeToRender = r.lastRedrawTime; if (r.showFps && timeToRender) { timeToRender = Math.round(timeToRender); var fps = Math.round(1000 / timeToRender); context.setTransform(1, 0, 0, 1, 0, 0); context.fillStyle = 'rgba(255, 0, 0, 0.75)'; context.strokeStyle = 'rgba(255, 0, 0, 0.75)'; context.lineWidth = 1; context.fillText('1 frame = ' + timeToRender + ' ms = ' + fps + ' fps', 0, 20); var maxFps = 60; context.strokeRect(0, 30, 250, 20); context.fillRect(0, 30, 250 * Math.min(fps / maxFps, 1), 20); } if (!drawAllLayers) { needDraw[r.SELECT_BOX] = false; } } // motionblur: blit rendered blurry frames if (motionBlur && mbPxRatio !== 1) { var cxtNode = data.contexts[r.NODE]; var txtNode = r.data.bufferCanvases[r.MOTIONBLUR_BUFFER_NODE]; var cxtDrag = data.contexts[r.DRAG]; var txtDrag = r.data.bufferCanvases[r.MOTIONBLUR_BUFFER_DRAG]; var drawMotionBlur = function drawMotionBlur(cxt, txt, needClear) { cxt.setTransform(1, 0, 0, 1, 0, 0); if (needClear || !motionBlurFadeEffect) { cxt.clearRect(0, 0, r.canvasWidth, r.canvasHeight); } else { mbclear(cxt, 0, 0, r.canvasWidth, r.canvasHeight); } var pxr = mbPxRatio; cxt.drawImage(txt, // img 0, 0, // sx, sy r.canvasWidth * pxr, r.canvasHeight * pxr, // sw, sh 0, 0, // x, y r.canvasWidth, r.canvasHeight // w, h ); }; if (needDraw[r.NODE] || needMbClear[r.NODE]) { drawMotionBlur(cxtNode, txtNode, needMbClear[r.NODE]); needDraw[r.NODE] = false; } if (needDraw[r.DRAG] || needMbClear[r.DRAG]) { drawMotionBlur(cxtDrag, txtDrag, needMbClear[r.DRAG]); needDraw[r.DRAG] = false; } } r.prevViewport = vp; if (r.clearingMotionBlur) { r.clearingMotionBlur = false; r.motionBlurCleared = true; r.motionBlur = true; } if (motionBlur) { r.motionBlurTimeout = setTimeout(function () { r.motionBlurTimeout = null; r.clearedForMotionBlur[r.NODE] = false; r.clearedForMotionBlur[r.DRAG] = false; r.motionBlur = false; r.clearingMotionBlur = !textureDraw; r.mbFrames = 0; needDraw[r.NODE] = true; needDraw[r.DRAG] = true; r.redraw(); }, motionBlurDelay); } if (!forcedContext) { cy.emit('render'); } }; var CRp$3 = {}; // @O Polygon drawing CRp$3.drawPolygonPath = function (context, x, y, width, height, points) { var halfW = width / 2; var halfH = height / 2; if (context.beginPath) { context.beginPath(); } context.moveTo(x + halfW * points[0], y + halfH * points[1]); for (var i = 1; i < points.length / 2; i++) { context.lineTo(x + halfW * points[i * 2], y + halfH * points[i * 2 + 1]); } context.closePath(); }; CRp$3.drawRoundPolygonPath = function (context, x, y, width, height, points, corners) { corners.forEach(function (corner) { return drawPreparedRoundCorner(context, corner); }); context.closePath(); }; // Round rectangle drawing CRp$3.drawRoundRectanglePath = function (context, x, y, width, height, radius) { var halfWidth = width / 2; var halfHeight = height / 2; var cornerRadius = radius === 'auto' ? getRoundRectangleRadius(width, height) : Math.min(radius, halfHeight, halfWidth); if (context.beginPath) { context.beginPath(); } // Start at top middle context.moveTo(x, y - halfHeight); // Arc from middle top to right side context.arcTo(x + halfWidth, y - halfHeight, x + halfWidth, y, cornerRadius); // Arc from right side to bottom context.arcTo(x + halfWidth, y + halfHeight, x, y + halfHeight, cornerRadius); // Arc from bottom to left side context.arcTo(x - halfWidth, y + halfHeight, x - halfWidth, y, cornerRadius); // Arc from left side to topBorder context.arcTo(x - halfWidth, y - halfHeight, x, y - halfHeight, cornerRadius); // Join line context.lineTo(x, y - halfHeight); context.closePath(); }; CRp$3.drawBottomRoundRectanglePath = function (context, x, y, width, height, radius) { var halfWidth = width / 2; var halfHeight = height / 2; var cornerRadius = radius === 'auto' ? getRoundRectangleRadius(width, height) : radius; if (context.beginPath) { context.beginPath(); } // Start at top middle context.moveTo(x, y - halfHeight); context.lineTo(x + halfWidth, y - halfHeight); context.lineTo(x + halfWidth, y); context.arcTo(x + halfWidth, y + halfHeight, x, y + halfHeight, cornerRadius); context.arcTo(x - halfWidth, y + halfHeight, x - halfWidth, y, cornerRadius); context.lineTo(x - halfWidth, y - halfHeight); context.lineTo(x, y - halfHeight); context.closePath(); }; CRp$3.drawCutRectanglePath = function (context, x, y, width, height, points, corners) { var halfWidth = width / 2; var halfHeight = height / 2; var cornerLength = corners === 'auto' ? getCutRectangleCornerLength() : corners; if (context.beginPath) { context.beginPath(); } context.moveTo(x - halfWidth + cornerLength, y - halfHeight); context.lineTo(x + halfWidth - cornerLength, y - halfHeight); context.lineTo(x + halfWidth, y - halfHeight + cornerLength); context.lineTo(x + halfWidth, y + halfHeight - cornerLength); context.lineTo(x + halfWidth - cornerLength, y + halfHeight); context.lineTo(x - halfWidth + cornerLength, y + halfHeight); context.lineTo(x - halfWidth, y + halfHeight - cornerLength); context.lineTo(x - halfWidth, y - halfHeight + cornerLength); context.closePath(); }; CRp$3.drawBarrelPath = function (context, x, y, width, height) { var halfWidth = width / 2; var halfHeight = height / 2; var xBegin = x - halfWidth; var xEnd = x + halfWidth; var yBegin = y - halfHeight; var yEnd = y + halfHeight; var barrelCurveConstants = getBarrelCurveConstants(width, height); var wOffset = barrelCurveConstants.widthOffset; var hOffset = barrelCurveConstants.heightOffset; var ctrlPtXOffset = barrelCurveConstants.ctrlPtOffsetPct * wOffset; if (context.beginPath) { context.beginPath(); } context.moveTo(xBegin, yBegin + hOffset); context.lineTo(xBegin, yEnd - hOffset); context.quadraticCurveTo(xBegin + ctrlPtXOffset, yEnd, xBegin + wOffset, yEnd); context.lineTo(xEnd - wOffset, yEnd); context.quadraticCurveTo(xEnd - ctrlPtXOffset, yEnd, xEnd, yEnd - hOffset); context.lineTo(xEnd, yBegin + hOffset); context.quadraticCurveTo(xEnd - ctrlPtXOffset, yBegin, xEnd - wOffset, yBegin); context.lineTo(xBegin + wOffset, yBegin); context.quadraticCurveTo(xBegin + ctrlPtXOffset, yBegin, xBegin, yBegin + hOffset); context.closePath(); }; var sin0 = Math.sin(0); var cos0 = Math.cos(0); var sin = {}; var cos = {}; var ellipseStepSize = Math.PI / 40; for (var i = 0 * Math.PI; i < 2 * Math.PI; i += ellipseStepSize) { sin[i] = Math.sin(i); cos[i] = Math.cos(i); } CRp$3.drawEllipsePath = function (context, centerX, centerY, width, height) { if (context.beginPath) { context.beginPath(); } if (context.ellipse) { context.ellipse(centerX, centerY, width / 2, height / 2, 0, 0, 2 * Math.PI); } else { var xPos, yPos; var rw = width / 2; var rh = height / 2; for (var i = 0 * Math.PI; i < 2 * Math.PI; i += ellipseStepSize) { xPos = centerX - rw * sin[i] * sin0 + rw * cos[i] * cos0; yPos = centerY + rh * cos[i] * sin0 + rh * sin[i] * cos0; if (i === 0) { context.moveTo(xPos, yPos); } else { context.lineTo(xPos, yPos); } } } context.closePath(); }; /* global atob, ArrayBuffer, Uint8Array, Blob */ var CRp$2 = {}; CRp$2.createBuffer = function (w, h) { var buffer = document.createElement('canvas'); // eslint-disable-line no-undef buffer.width = w; buffer.height = h; return [buffer, buffer.getContext('2d')]; }; CRp$2.bufferCanvasImage = function (options) { var cy = this.cy; var eles = cy.mutableElements(); var bb = eles.boundingBox(); var ctrRect = this.findContainerClientCoords(); var width = options.full ? Math.ceil(bb.w) : ctrRect[2]; var height = options.full ? Math.ceil(bb.h) : ctrRect[3]; var specdMaxDims = number$1(options.maxWidth) || number$1(options.maxHeight); var pxRatio = this.getPixelRatio(); var scale = 1; if (options.scale !== undefined) { width *= options.scale; height *= options.scale; scale = options.scale; } else if (specdMaxDims) { var maxScaleW = Infinity; var maxScaleH = Infinity; if (number$1(options.maxWidth)) { maxScaleW = scale * options.maxWidth / width; } if (number$1(options.maxHeight)) { maxScaleH = scale * options.maxHeight / height; } scale = Math.min(maxScaleW, maxScaleH); width *= scale; height *= scale; } if (!specdMaxDims) { width *= pxRatio; height *= pxRatio; scale *= pxRatio; } var buffCanvas = document.createElement('canvas'); // eslint-disable-line no-undef buffCanvas.width = width; buffCanvas.height = height; buffCanvas.style.width = width + 'px'; buffCanvas.style.height = height + 'px'; var buffCxt = buffCanvas.getContext('2d'); // Rasterize the layers, but only if container has nonzero size if (width > 0 && height > 0) { buffCxt.clearRect(0, 0, width, height); buffCxt.globalCompositeOperation = 'source-over'; var zsortedEles = this.getCachedZSortedEles(); if (options.full) { // draw the full bounds of the graph buffCxt.translate(-bb.x1 * scale, -bb.y1 * scale); buffCxt.scale(scale, scale); this.drawElements(buffCxt, zsortedEles); buffCxt.scale(1 / scale, 1 / scale); buffCxt.translate(bb.x1 * scale, bb.y1 * scale); } else { // draw the current view var pan = cy.pan(); var translation = { x: pan.x * scale, y: pan.y * scale }; scale *= cy.zoom(); buffCxt.translate(translation.x, translation.y); buffCxt.scale(scale, scale); this.drawElements(buffCxt, zsortedEles); buffCxt.scale(1 / scale, 1 / scale); buffCxt.translate(-translation.x, -translation.y); } // need to fill bg at end like this in order to fill cleared transparent pixels in jpgs if (options.bg) { buffCxt.globalCompositeOperation = 'destination-over'; buffCxt.fillStyle = options.bg; buffCxt.rect(0, 0, width, height); buffCxt.fill(); } } return buffCanvas; }; function b64ToBlob(b64, mimeType) { var bytes = atob(b64); var buff = new ArrayBuffer(bytes.length); var buffUint8 = new Uint8Array(buff); for (var i = 0; i < bytes.length; i++) { buffUint8[i] = bytes.charCodeAt(i); } return new Blob([buff], { type: mimeType }); } function b64UriToB64(b64uri) { var i = b64uri.indexOf(','); return b64uri.substr(i + 1); } function output(options, canvas, mimeType) { var getB64Uri = function getB64Uri() { return canvas.toDataURL(mimeType, options.quality); }; switch (options.output) { case 'blob-promise': return new Promise$1(function (resolve, reject) { try { canvas.toBlob(function (blob) { if (blob != null) { resolve(blob); } else { reject(new Error('`canvas.toBlob()` sent a null value in its callback')); } }, mimeType, options.quality); } catch (err) { reject(err); } }); case 'blob': return b64ToBlob(b64UriToB64(getB64Uri()), mimeType); case 'base64': return b64UriToB64(getB64Uri()); case 'base64uri': default: return getB64Uri(); } } CRp$2.png = function (options) { return output(options, this.bufferCanvasImage(options), 'image/png'); }; CRp$2.jpg = function (options) { return output(options, this.bufferCanvasImage(options), 'image/jpeg'); }; var CRp$1 = {}; CRp$1.nodeShapeImpl = function (name, context, centerX, centerY, width, height, points, corners) { switch (name) { case 'ellipse': return this.drawEllipsePath(context, centerX, centerY, width, height); case 'polygon': return this.drawPolygonPath(context, centerX, centerY, width, height, points); case 'round-polygon': return this.drawRoundPolygonPath(context, centerX, centerY, width, height, points, corners); case 'roundrectangle': case 'round-rectangle': return this.drawRoundRectanglePath(context, centerX, centerY, width, height, corners); case 'cutrectangle': case 'cut-rectangle': return this.drawCutRectanglePath(context, centerX, centerY, width, height, points, corners); case 'bottomroundrectangle': case 'bottom-round-rectangle': return this.drawBottomRoundRectanglePath(context, centerX, centerY, width, height, corners); case 'barrel': return this.drawBarrelPath(context, centerX, centerY, width, height); } }; var CR = CanvasRenderer; var CRp = CanvasRenderer.prototype; CRp.CANVAS_LAYERS = 3; // CRp.SELECT_BOX = 0; CRp.DRAG = 1; CRp.NODE = 2; CRp.BUFFER_COUNT = 3; // CRp.TEXTURE_BUFFER = 0; CRp.MOTIONBLUR_BUFFER_NODE = 1; CRp.MOTIONBLUR_BUFFER_DRAG = 2; function CanvasRenderer(options) { var r = this; r.data = { canvases: new Array(CRp.CANVAS_LAYERS), contexts: new Array(CRp.CANVAS_LAYERS), canvasNeedsRedraw: new Array(CRp.CANVAS_LAYERS), bufferCanvases: new Array(CRp.BUFFER_COUNT), bufferContexts: new Array(CRp.CANVAS_LAYERS) }; var tapHlOffAttr = '-webkit-tap-highlight-color'; var tapHlOffStyle = 'rgba(0,0,0,0)'; r.data.canvasContainer = document.createElement('div'); // eslint-disable-line no-undef var containerStyle = r.data.canvasContainer.style; r.data.canvasContainer.style[tapHlOffAttr] = tapHlOffStyle; containerStyle.position = 'relative'; containerStyle.zIndex = '0'; containerStyle.overflow = 'hidden'; var container = options.cy.container(); container.appendChild(r.data.canvasContainer); container.style[tapHlOffAttr] = tapHlOffStyle; var styleMap = { '-webkit-user-select': 'none', '-moz-user-select': '-moz-none', 'user-select': 'none', '-webkit-tap-highlight-color': 'rgba(0,0,0,0)', 'outline-style': 'none' }; if (ms()) { styleMap['-ms-touch-action'] = 'none'; styleMap['touch-action'] = 'none'; } for (var i = 0; i < CRp.CANVAS_LAYERS; i++) { var canvas = r.data.canvases[i] = document.createElement('canvas'); // eslint-disable-line no-undef r.data.contexts[i] = canvas.getContext('2d'); Object.keys(styleMap).forEach(function (k) { canvas.style[k] = styleMap[k]; }); canvas.style.position = 'absolute'; canvas.setAttribute('data-id', 'layer' + i); canvas.style.zIndex = String(CRp.CANVAS_LAYERS - i); r.data.canvasContainer.appendChild(canvas); r.data.canvasNeedsRedraw[i] = false; } r.data.topCanvas = r.data.canvases[0]; r.data.canvases[CRp.NODE].setAttribute('data-id', 'layer' + CRp.NODE + '-node'); r.data.canvases[CRp.SELECT_BOX].setAttribute('data-id', 'layer' + CRp.SELECT_BOX + '-selectbox'); r.data.canvases[CRp.DRAG].setAttribute('data-id', 'layer' + CRp.DRAG + '-drag'); for (var i = 0; i < CRp.BUFFER_COUNT; i++) { r.data.bufferCanvases[i] = document.createElement('canvas'); // eslint-disable-line no-undef r.data.bufferContexts[i] = r.data.bufferCanvases[i].getContext('2d'); r.data.bufferCanvases[i].style.position = 'absolute'; r.data.bufferCanvases[i].setAttribute('data-id', 'buffer' + i); r.data.bufferCanvases[i].style.zIndex = String(-i - 1); r.data.bufferCanvases[i].style.visibility = 'hidden'; //r.data.canvasContainer.appendChild(r.data.bufferCanvases[i]); } r.pathsEnabled = true; var emptyBb = makeBoundingBox(); var getBoxCenter = function getBoxCenter(bb) { return { x: (bb.x1 + bb.x2) / 2, y: (bb.y1 + bb.y2) / 2 }; }; var getCenterOffset = function getCenterOffset(bb) { return { x: -bb.w / 2, y: -bb.h / 2 }; }; var backgroundTimestampHasChanged = function backgroundTimestampHasChanged(ele) { var _p = ele[0]._private; var same = _p.oldBackgroundTimestamp === _p.backgroundTimestamp; return !same; }; var getStyleKey = function getStyleKey(ele) { return ele[0]._private.nodeKey; }; var getLabelKey = function getLabelKey(ele) { return ele[0]._private.labelStyleKey; }; var getSourceLabelKey = function getSourceLabelKey(ele) { return ele[0]._private.sourceLabelStyleKey; }; var getTargetLabelKey = function getTargetLabelKey(ele) { return ele[0]._private.targetLabelStyleKey; }; var drawElement = function drawElement(context, ele, bb, scaledLabelShown, useEleOpacity) { return r.drawElement(context, ele, bb, false, false, useEleOpacity); }; var drawLabel = function drawLabel(context, ele, bb, scaledLabelShown, useEleOpacity) { return r.drawElementText(context, ele, bb, scaledLabelShown, 'main', useEleOpacity); }; var drawSourceLabel = function drawSourceLabel(context, ele, bb, scaledLabelShown, useEleOpacity) { return r.drawElementText(context, ele, bb, scaledLabelShown, 'source', useEleOpacity); }; var drawTargetLabel = function drawTargetLabel(context, ele, bb, scaledLabelShown, useEleOpacity) { return r.drawElementText(context, ele, bb, scaledLabelShown, 'target', useEleOpacity); }; var getElementBox = function getElementBox(ele) { ele.boundingBox(); return ele[0]._private.bodyBounds; }; var getLabelBox = function getLabelBox(ele) { ele.boundingBox(); return ele[0]._private.labelBounds.main || emptyBb; }; var getSourceLabelBox = function getSourceLabelBox(ele) { ele.boundingBox(); return ele[0]._private.labelBounds.source || emptyBb; }; var getTargetLabelBox = function getTargetLabelBox(ele) { ele.boundingBox(); return ele[0]._private.labelBounds.target || emptyBb; }; var isLabelVisibleAtScale = function isLabelVisibleAtScale(ele, scaledLabelShown) { return scaledLabelShown; }; var getElementRotationPoint = function getElementRotationPoint(ele) { return getBoxCenter(getElementBox(ele)); }; var addTextMargin = function addTextMargin(prefix, pt, ele) { var pre = prefix ? prefix + '-' : ''; return { x: pt.x + ele.pstyle(pre + 'text-margin-x').pfValue, y: pt.y + ele.pstyle(pre + 'text-margin-y').pfValue }; }; var getRsPt = function getRsPt(ele, x, y) { var rs = ele[0]._private.rscratch; return { x: rs[x], y: rs[y] }; }; var getLabelRotationPoint = function getLabelRotationPoint(ele) { return addTextMargin('', getRsPt(ele, 'labelX', 'labelY'), ele); }; var getSourceLabelRotationPoint = function getSourceLabelRotationPoint(ele) { return addTextMargin('source', getRsPt(ele, 'sourceLabelX', 'sourceLabelY'), ele); }; var getTargetLabelRotationPoint = function getTargetLabelRotationPoint(ele) { return addTextMargin('target', getRsPt(ele, 'targetLabelX', 'targetLabelY'), ele); }; var getElementRotationOffset = function getElementRotationOffset(ele) { return getCenterOffset(getElementBox(ele)); }; var getSourceLabelRotationOffset = function getSourceLabelRotationOffset(ele) { return getCenterOffset(getSourceLabelBox(ele)); }; var getTargetLabelRotationOffset = function getTargetLabelRotationOffset(ele) { return getCenterOffset(getTargetLabelBox(ele)); }; var getLabelRotationOffset = function getLabelRotationOffset(ele) { var bb = getLabelBox(ele); var p = getCenterOffset(getLabelBox(ele)); if (ele.isNode()) { switch (ele.pstyle('text-halign').value) { case 'left': p.x = -bb.w; break; case 'right': p.x = 0; break; } switch (ele.pstyle('text-valign').value) { case 'top': p.y = -bb.h; break; case 'bottom': p.y = 0; break; } } return p; }; var eleTxrCache = r.data.eleTxrCache = new ElementTextureCache(r, { getKey: getStyleKey, doesEleInvalidateKey: backgroundTimestampHasChanged, drawElement: drawElement, getBoundingBox: getElementBox, getRotationPoint: getElementRotationPoint, getRotationOffset: getElementRotationOffset, allowEdgeTxrCaching: false, allowParentTxrCaching: false }); var lblTxrCache = r.data.lblTxrCache = new ElementTextureCache(r, { getKey: getLabelKey, drawElement: drawLabel, getBoundingBox: getLabelBox, getRotationPoint: getLabelRotationPoint, getRotationOffset: getLabelRotationOffset, isVisible: isLabelVisibleAtScale }); var slbTxrCache = r.data.slbTxrCache = new ElementTextureCache(r, { getKey: getSourceLabelKey, drawElement: drawSourceLabel, getBoundingBox: getSourceLabelBox, getRotationPoint: getSourceLabelRotationPoint, getRotationOffset: getSourceLabelRotationOffset, isVisible: isLabelVisibleAtScale }); var tlbTxrCache = r.data.tlbTxrCache = new ElementTextureCache(r, { getKey: getTargetLabelKey, drawElement: drawTargetLabel, getBoundingBox: getTargetLabelBox, getRotationPoint: getTargetLabelRotationPoint, getRotationOffset: getTargetLabelRotationOffset, isVisible: isLabelVisibleAtScale }); var lyrTxrCache = r.data.lyrTxrCache = new LayeredTextureCache(r); r.onUpdateEleCalcs(function invalidateTextureCaches(willDraw, eles) { // each cache should check for sub-key diff to see that the update affects that cache particularly eleTxrCache.invalidateElements(eles); lblTxrCache.invalidateElements(eles); slbTxrCache.invalidateElements(eles); tlbTxrCache.invalidateElements(eles); // any change invalidates the layers lyrTxrCache.invalidateElements(eles); // update the old bg timestamp so diffs can be done in the ele txr caches for (var _i = 0; _i < eles.length; _i++) { var _p = eles[_i]._private; _p.oldBackgroundTimestamp = _p.backgroundTimestamp; } }); var refineInLayers = function refineInLayers(reqs) { for (var i = 0; i < reqs.length; i++) { lyrTxrCache.enqueueElementRefinement(reqs[i].ele); } }; eleTxrCache.onDequeue(refineInLayers); lblTxrCache.onDequeue(refineInLayers); slbTxrCache.onDequeue(refineInLayers); tlbTxrCache.onDequeue(refineInLayers); } CRp.redrawHint = function (group, bool) { var r = this; switch (group) { case 'eles': r.data.canvasNeedsRedraw[CRp.NODE] = bool; break; case 'drag': r.data.canvasNeedsRedraw[CRp.DRAG] = bool; break; case 'select': r.data.canvasNeedsRedraw[CRp.SELECT_BOX] = bool; break; } }; // whether to use Path2D caching for drawing var pathsImpld = typeof Path2D !== 'undefined'; CRp.path2dEnabled = function (on) { if (on === undefined) { return this.pathsEnabled; } this.pathsEnabled = on ? true : false; }; CRp.usePaths = function () { return pathsImpld && this.pathsEnabled; }; CRp.setImgSmoothing = function (context, bool) { if (context.imageSmoothingEnabled != null) { context.imageSmoothingEnabled = bool; } else { context.webkitImageSmoothingEnabled = bool; context.mozImageSmoothingEnabled = bool; context.msImageSmoothingEnabled = bool; } }; CRp.getImgSmoothing = function (context) { if (context.imageSmoothingEnabled != null) { return context.imageSmoothingEnabled; } else { return context.webkitImageSmoothingEnabled || context.mozImageSmoothingEnabled || context.msImageSmoothingEnabled; } }; CRp.makeOffscreenCanvas = function (width, height) { var canvas; if ((typeof OffscreenCanvas === "undefined" ? "undefined" : _typeof(OffscreenCanvas)) !== ("undefined" )) { canvas = new OffscreenCanvas(width, height); } else { canvas = document.createElement('canvas'); // eslint-disable-line no-undef canvas.width = width; canvas.height = height; } return canvas; }; [CRp$a, CRp$9, CRp$8, CRp$7, CRp$6, CRp$5, CRp$4, CRp$3, CRp$2, CRp$1].forEach(function (props) { extend(CRp, props); }); var renderer = [{ name: 'null', impl: NullRenderer }, { name: 'base', impl: BR }, { name: 'canvas', impl: CR }]; var incExts = [{ type: 'layout', extensions: layout }, { type: 'renderer', extensions: renderer }]; // registered extensions to cytoscape, indexed by name var extensions = {}; // registered modules for extensions, indexed by name var modules = {}; function setExtension(type, name, registrant) { var ext = registrant; var overrideErr = function overrideErr(field) { warn('Can not register `' + name + '` for `' + type + '` since `' + field + '` already exists in the prototype and can not be overridden'); }; if (type === 'core') { if (Core.prototype[name]) { return overrideErr(name); } else { Core.prototype[name] = registrant; } } else if (type === 'collection') { if (Collection.prototype[name]) { return overrideErr(name); } else { Collection.prototype[name] = registrant; } } else if (type === 'layout') { // fill in missing layout functions in the prototype var Layout = function Layout(options) { this.options = options; registrant.call(this, options); // make sure layout has _private for use w/ std apis like .on() if (!plainObject(this._private)) { this._private = {}; } this._private.cy = options.cy; this._private.listeners = []; this.createEmitter(); }; var layoutProto = Layout.prototype = Object.create(registrant.prototype); var optLayoutFns = []; for (var i = 0; i < optLayoutFns.length; i++) { var fnName = optLayoutFns[i]; layoutProto[fnName] = layoutProto[fnName] || function () { return this; }; } // either .start() or .run() is defined, so autogen the other if (layoutProto.start && !layoutProto.run) { layoutProto.run = function () { this.start(); return this; }; } else if (!layoutProto.start && layoutProto.run) { layoutProto.start = function () { this.run(); return this; }; } var regStop = registrant.prototype.stop; layoutProto.stop = function () { var opts = this.options; if (opts && opts.animate) { var anis = this.animations; if (anis) { for (var _i = 0; _i < anis.length; _i++) { anis[_i].stop(); } } } if (regStop) { regStop.call(this); } else { this.emit('layoutstop'); } return this; }; if (!layoutProto.destroy) { layoutProto.destroy = function () { return this; }; } layoutProto.cy = function () { return this._private.cy; }; var getCy = function getCy(layout) { return layout._private.cy; }; var emitterOpts = { addEventFields: function addEventFields(layout, evt) { evt.layout = layout; evt.cy = getCy(layout); evt.target = layout; }, bubble: function bubble() { return true; }, parent: function parent(layout) { return getCy(layout); } }; extend(layoutProto, { createEmitter: function createEmitter() { this._private.emitter = new Emitter(emitterOpts, this); return this; }, emitter: function emitter() { return this._private.emitter; }, on: function on(evt, cb) { this.emitter().on(evt, cb); return this; }, one: function one(evt, cb) { this.emitter().one(evt, cb); return this; }, once: function once(evt, cb) { this.emitter().one(evt, cb); return this; }, removeListener: function removeListener(evt, cb) { this.emitter().removeListener(evt, cb); return this; }, removeAllListeners: function removeAllListeners() { this.emitter().removeAllListeners(); return this; }, emit: function emit(evt, params) { this.emitter().emit(evt, params); return this; } }); define.eventAliasesOn(layoutProto); ext = Layout; // replace with our wrapped layout } else if (type === 'renderer' && name !== 'null' && name !== 'base') { // user registered renderers inherit from base var BaseRenderer = getExtension('renderer', 'base'); var bProto = BaseRenderer.prototype; var RegistrantRenderer = registrant; var rProto = registrant.prototype; var Renderer = function Renderer() { BaseRenderer.apply(this, arguments); RegistrantRenderer.apply(this, arguments); }; var proto = Renderer.prototype; for (var pName in bProto) { var pVal = bProto[pName]; var existsInR = rProto[pName] != null; if (existsInR) { return overrideErr(pName); } proto[pName] = pVal; // take impl from base } for (var _pName in rProto) { proto[_pName] = rProto[_pName]; // take impl from registrant } bProto.clientFunctions.forEach(function (name) { proto[name] = proto[name] || function () { error('Renderer does not implement `renderer.' + name + '()` on its prototype'); }; }); ext = Renderer; } else if (type === '__proto__' || type === 'constructor' || type === 'prototype') { // to avoid potential prototype pollution return error(type + ' is an illegal type to be registered, possibly lead to prototype pollutions'); } return setMap({ map: extensions, keys: [type, name], value: ext }); } function getExtension(type, name) { return getMap({ map: extensions, keys: [type, name] }); } function setModule(type, name, moduleType, moduleName, registrant) { return setMap({ map: modules, keys: [type, name, moduleType, moduleName], value: registrant }); } function getModule(type, name, moduleType, moduleName) { return getMap({ map: modules, keys: [type, name, moduleType, moduleName] }); } var extension = function extension() { // e.g. extension('renderer', 'svg') if (arguments.length === 2) { return getExtension.apply(null, arguments); } // e.g. extension('renderer', 'svg', { ... }) else if (arguments.length === 3) { return setExtension.apply(null, arguments); } // e.g. extension('renderer', 'svg', 'nodeShape', 'ellipse') else if (arguments.length === 4) { return getModule.apply(null, arguments); } // e.g. extension('renderer', 'svg', 'nodeShape', 'ellipse', { ... }) else if (arguments.length === 5) { return setModule.apply(null, arguments); } else { error('Invalid extension access syntax'); } }; // allows a core instance to access extensions internally Core.prototype.extension = extension; // included extensions incExts.forEach(function (group) { group.extensions.forEach(function (ext) { setExtension(group.type, ext.name, ext.impl); }); }); // a dummy stylesheet object that doesn't need a reference to the core // (useful for init) var Stylesheet = function Stylesheet() { if (!(this instanceof Stylesheet)) { return new Stylesheet(); } this.length = 0; }; var sheetfn = Stylesheet.prototype; sheetfn.instanceString = function () { return 'stylesheet'; }; // just store the selector to be parsed later sheetfn.selector = function (selector) { var i = this.length++; this[i] = { selector: selector, properties: [] }; return this; // chaining }; // just store the property to be parsed later sheetfn.css = function (name, value) { var i = this.length - 1; if (string(name)) { this[i].properties.push({ name: name, value: value }); } else if (plainObject(name)) { var map = name; var propNames = Object.keys(map); for (var j = 0; j < propNames.length; j++) { var key = propNames[j]; var mapVal = map[key]; if (mapVal == null) { continue; } var prop = Style.properties[key] || Style.properties[dash2camel(key)]; if (prop == null) { continue; } var _name = prop.name; var _value = mapVal; this[i].properties.push({ name: _name, value: _value }); } } return this; // chaining }; sheetfn.style = sheetfn.css; // generate a real style object from the dummy stylesheet sheetfn.generateStyle = function (cy) { var style = new Style(cy); return this.appendToStyle(style); }; // append a dummy stylesheet object on a real style object sheetfn.appendToStyle = function (style) { for (var i = 0; i < this.length; i++) { var context = this[i]; var selector = context.selector; var props = context.properties; style.selector(selector); // apply selector for (var j = 0; j < props.length; j++) { var prop = props[j]; style.css(prop.name, prop.value); // apply property } } return style; }; var version = "3.29.1"; var cytoscape = function cytoscape(options) { // if no options specified, use default if (options === undefined) { options = {}; } // create instance if (plainObject(options)) { return new Core(options); } // allow for registration of extensions else if (string(options)) { return extension.apply(extension, arguments); } }; // e.g. cytoscape.use( require('cytoscape-foo'), bar ) cytoscape.use = function (ext) { var args = Array.prototype.slice.call(arguments, 1); // args to pass to ext args.unshift(cytoscape); // cytoscape is first arg to ext ext.apply(null, args); return this; }; cytoscape.warnings = function (bool) { return warnings(bool); }; // replaced by build system cytoscape.version = version; // expose public apis (mostly for extensions) cytoscape.stylesheet = cytoscape.Stylesheet = Stylesheet; module.exports = cytoscape; ================================================ FILE: dist/cytoscape.esm.min.mjs ================================================ function e(t){return(e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(t)}function t(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function n(e,t){for(var n=0;ne.length)&&(t=e.length);for(var n=0,r=new Array(t);nt?1:0},A=null!=Object.assign?Object.assign.bind(Object):function(e){for(var t=arguments,n=1;n255)return;t.push(Math.floor(a))}var o=r[1]||r[2]||r[3],s=r[1]&&r[2]&&r[3];if(o&&!s)return;var l=n[4];if(void 0!==l){if((l=parseFloat(l))<0||l>1)return;t.push(l)}}return t}(e)||function(e){var t,n,r,i,a,o,s,l;function u(e,t,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?e+6*(t-e)*n:n<.5?t:n<2/3?e+(t-e)*(2/3-n)*6:e}var c=new RegExp("^hsl[a]?\\(((?:[-+]?(?:(?:\\d+|\\d*\\.\\d+)(?:[Ee][+-]?\\d+)?)))\\s*,\\s*((?:[-+]?(?:(?:\\d+|\\d*\\.\\d+)(?:[Ee][+-]?\\d+)?))[%])\\s*,\\s*((?:[-+]?(?:(?:\\d+|\\d*\\.\\d+)(?:[Ee][+-]?\\d+)?))[%])(?:\\s*,\\s*((?:[-+]?(?:(?:\\d+|\\d*\\.\\d+)(?:[Ee][+-]?\\d+)?))))?\\)$").exec(e);if(c){if((n=parseInt(c[1]))<0?n=(360- -1*n%360)%360:n>360&&(n%=360),n/=360,(r=parseFloat(c[2]))<0||r>100)return;if(r/=100,(i=parseFloat(c[3]))<0||i>100)return;if(i/=100,void 0!==(a=c[4])&&((a=parseFloat(a))<0||a>1))return;if(0===r)o=s=l=Math.round(255*i);else{var d=i<.5?i*(1+r):i+r-i*r,h=2*i-d;o=Math.round(255*u(h,d,n+1/3)),s=Math.round(255*u(h,d,n)),l=Math.round(255*u(h,d,n-1/3))}t=[o,s,l,a]}return t}(e)},O={transparent:[0,0,0,0],aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],grey:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]},R=function(e){for(var t=e.map,n=e.keys,r=n.length,i=0;i=t||n<0||d&&e-u>=a}function v(){var e=W();if(g(e))return y(e);s=setTimeout(v,function(e){var n=t-(e-l);return d?fe(n,a-(e-u)):n}(e))}function y(e){return s=void 0,h&&r?p(e):(r=i=void 0,o)}function m(){var e=W(),n=g(e);if(r=arguments,i=this,l=e,n){if(void 0===s)return f(l);if(d)return clearTimeout(s),s=setTimeout(v,t),p(l)}return void 0===s&&(s=setTimeout(v,t)),o}return t=he(t)||0,F(n)&&(c=!!n.leading,a=(d="maxWait"in n)?pe(he(n.maxWait)||0,t):a,h="trailing"in n?!!n.trailing:h),m.cancel=function(){void 0!==s&&clearTimeout(s),u=0,r=l=i=s=void 0},m.flush=function(){return void 0===s?o:y(W())},m},ve=l?l.performance:null,ye=ve&&ve.now?function(){return ve.now()}:function(){return Date.now()},me=function(){if(l){if(l.requestAnimationFrame)return function(e){l.requestAnimationFrame(e)};if(l.mozRequestAnimationFrame)return function(e){l.mozRequestAnimationFrame(e)};if(l.webkitRequestAnimationFrame)return function(e){l.webkitRequestAnimationFrame(e)};if(l.msRequestAnimationFrame)return function(e){l.msRequestAnimationFrame(e)}}return function(e){e&&setTimeout((function(){e(ye())}),1e3/60)}}(),be=function(e){return me(e)},xe=ye,we=65599,Ee=function(e){for(var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:9261,r=n;!(t=e.next()).done;)r=r*we+t.value|0;return r},ke=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:9261;return t*we+e|0},Ce=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:5381;return(t<<5)+t+e|0},Se=function(e){return 2097152*e[0]+e[1]},Pe=function(e,t){return[ke(e[0],t[0]),Ce(e[1],t[1])]},De=function(e,t){var n={value:0,done:!1},r=0,i=e.length;return Ee({next:function(){return r=0&&(e[r]!==t||(e.splice(r,1),!n));r--);},Ke=function(e){e.splice(0,e.length)},Ge=function(e,t,n){return n&&(t=B(n,t)),e[t]},Ue=function(e,t,n,r){n&&(t=B(n,t)),e[t]=r},Ze="undefined"!=typeof Map?Map:function(){function e(){t(this,e),this._obj={}}return r(e,[{key:"set",value:function(e,t){return this._obj[e]=t,this}},{key:"delete",value:function(e){return this._obj[e]=void 0,this}},{key:"clear",value:function(){this._obj={}}},{key:"has",value:function(e){return void 0!==this._obj[e]}},{key:"get",value:function(e){return this._obj[e]}}]),e}(),$e=function(){function e(n){if(t(this,e),this._obj=Object.create(null),this.size=0,null!=n){var r;r=null!=n.instanceString&&n.instanceString()===this.instanceString()?n.toArray():n;for(var i=0;i2&&void 0!==arguments[2])||arguments[2];if(void 0!==e&&void 0!==t&&C(e)){var r=t.group;if(null==r&&(r=t.data&&null!=t.data.source&&null!=t.data.target?"edges":"nodes"),"nodes"===r||"edges"===r){this.length=1,this[0]=this;var i=this._private={cy:e,single:!0,data:t.data||{},position:t.position||{x:0,y:0},autoWidth:void 0,autoHeight:void 0,autoPadding:void 0,compoundBoundsClean:!1,listeners:[],group:r,style:{},rstyle:{},styleCxts:[],styleKeys:{},removed:!0,selected:!!t.selected,selectable:void 0===t.selectable||!!t.selectable,locked:!!t.locked,grabbed:!1,grabbable:void 0===t.grabbable||!!t.grabbable,pannable:void 0===t.pannable?"edges"===r:!!t.pannable,active:!1,classes:new Qe,animation:{current:[],queue:[]},rscratch:{},scratch:t.scratch||{},edges:[],children:[],parent:t.parent&&t.parent.isNode()?t.parent:null,traversalCache:{},backgrounding:!1,bbCache:null,bbCacheShift:{x:0,y:0},bodyBounds:null,overlayBounds:null,labelBounds:{all:null,source:null,target:null,main:null},arrowBounds:{source:null,target:null,"mid-source":null,"mid-target":null}};if(null==i.position.x&&(i.position.x=0),null==i.position.y&&(i.position.y=0),t.renderedPosition){var a=t.renderedPosition,o=e.pan(),s=e.zoom();i.position={x:(a.x-o.x)/s,y:(a.y-o.y)/s}}var l=[];y(t.classes)?l=t.classes:g(t.classes)&&(l=t.classes.split(/\s+/));for(var u=0,c=l.length;ut?1:0},u=function(e,t,i,a,o){var s;if(null==i&&(i=0),null==o&&(o=n),i<0)throw new Error("lo must be non-negative");for(null==a&&(a=e.length);in;0<=n?t++:t--)u.push(t);return u}.apply(this).reverse()).length;ag;0<=g?++h:--h)v.push(a(e,r));return v},f=function(e,t,r,i){var a,o,s;for(null==i&&(i=n),a=e[r];r>t&&i(a,o=e[s=r-1>>1])<0;)e[r]=o,r=s;return e[r]=a},g=function(e,t,r){var i,a,o,s,l;for(null==r&&(r=n),a=e.length,l=t,o=e[t],i=2*t+1;i0;){var k=b.pop(),C=v(k),S=k.id();if(d[S]=C,C!==1/0)for(var P=k.neighborhood().intersect(p),D=0;D0)for(n.unshift(t);c[i];){var a=c[i];n.unshift(a.edge),n.unshift(a.node),i=(r=a.node).id()}return o.spawn(n)}}}},at={kruskal:function(e){e=e||function(e){return 1};for(var t=this.byGroup(),n=t.nodes,r=t.edges,i=n.length,a=new Array(i),o=n,s=function(e){for(var t=0;t0;){if(l=g.pop(),u=l.id(),v.delete(u),w++,u===d){for(var E=[],k=i,C=d,S=m[C];E.unshift(k),null!=S&&E.unshift(S),null!=(k=y[C]);)S=m[C=k.id()];return{found:!0,distance:h[u],path:this.spawn(E),steps:w}}f[u]=!0;for(var P=l._private.edges,D=0;DD&&(p[P]=D,m[P]=S,b[P]=w),!i){var T=S*u+C;!i&&p[T]>D&&(p[T]=D,m[T]=C,b[T]=w)}}}for(var _=0;_1&&void 0!==arguments[1]?arguments[1]:a,r=b(e),i=[],o=r;;){if(null==o)return t.spawn();var l=m(o),u=l.edge,c=l.pred;if(i.unshift(o[0]),o.same(n)&&i.length>0)break;null!=u&&i.unshift(u),o=c}return s.spawn(i)},hasNegativeWeightCycle:f,negativeWeightCycles:v}}},ht=Math.sqrt(2),pt=function(e,t,n){0===n.length&&Re("Karger-Stein must be run on a connected (sub)graph");for(var r=n[e],i=r[1],a=r[2],o=t[i],s=t[a],l=n,u=l.length-1;u>=0;u--){var c=l[u],d=c[1],h=c[2];(t[d]===o&&t[h]===s||t[d]===s&&t[h]===o)&&l.splice(u,1)}for(var p=0;pr;){var i=Math.floor(Math.random()*t.length);t=pt(i,e,t),n--}return t},gt={kargerStein:function(){var e=this,t=this.byGroup(),n=t.nodes,r=t.edges;r.unmergeBy((function(e){return e.isLoop()}));var i=n.length,a=r.length,o=Math.ceil(Math.pow(Math.log(i)/Math.LN2,2)),s=Math.floor(i/ht);if(!(i<2)){for(var l=[],u=0;u0?1:e<0?-1:0},Et=function(e,t){return Math.sqrt(kt(e,t))},kt=function(e,t){var n=t.x-e.x,r=t.y-e.y;return n*n+r*r},Ct=function(e){for(var t=e.length,n=0,r=0;r=e.x1&&e.y2>=e.y1)return{x1:e.x1,y1:e.y1,x2:e.x2,y2:e.y2,w:e.x2-e.x1,h:e.y2-e.y1};if(null!=e.w&&null!=e.h&&e.w>=0&&e.h>=0)return{x1:e.x1,y1:e.y1,x2:e.x1+e.w,y2:e.y1+e.h,w:e.w,h:e.h}}},_t=function(e,t){e.x1=Math.min(e.x1,t.x1),e.x2=Math.max(e.x2,t.x2),e.w=e.x2-e.x1,e.y1=Math.min(e.y1,t.y1),e.y2=Math.max(e.y2,t.y2),e.h=e.y2-e.y1},Mt=function(e,t,n){e.x1=Math.min(e.x1,t),e.x2=Math.max(e.x2,t),e.w=e.x2-e.x1,e.y1=Math.min(e.y1,n),e.y2=Math.max(e.y2,n),e.h=e.y2-e.y1},Bt=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return e.x1-=t,e.x2+=t,e.y1-=t,e.y2+=t,e.w=e.x2-e.x1,e.h=e.y2-e.y1,e},Nt=function(e){var t,n,r,i,o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[0];if(1===o.length)t=n=r=i=o[0];else if(2===o.length)t=r=o[0],i=n=o[1];else if(4===o.length){var s=a(o,4);t=s[0],n=s[1],r=s[2],i=s[3]}return e.x1-=i,e.x2+=n,e.y1-=t,e.y2+=r,e.w=e.x2-e.x1,e.h=e.y2-e.y1,e},zt=function(e,t){e.x1=t.x1,e.y1=t.y1,e.x2=t.x2,e.y2=t.y2,e.w=e.x2-e.x1,e.h=e.y2-e.y1},It=function(e,t){return!(e.x1>t.x2)&&(!(t.x1>e.x2)&&(!(e.x2t.y2)&&!(t.y1>e.y2)))))))},At=function(e,t,n){return e.x1<=t&&t<=e.x2&&e.y1<=n&&n<=e.y2},Lt=function(e,t){return At(e,t.x1,t.y1)&&At(e,t.x2,t.y2)},Ot=function(e,t,n,r,i,a,o){var s,l,u=arguments.length>7&&void 0!==arguments[7]?arguments[7]:"auto",c="auto"===u?tn(i,a):u,d=i/2,h=a/2,p=(c=Math.min(c,d,h))!==d,f=c!==h;if(p){var g=n-d+c-o,v=r-h-o,y=n+d-c+o,m=v;if((s=Ut(e,t,n,r,g,v,y,m,!1)).length>0)return s}if(f){var b=n+d+o,x=r-h+c-o,w=b,E=r+h-c+o;if((s=Ut(e,t,n,r,b,x,w,E,!1)).length>0)return s}if(p){var k=n-d+c-o,C=r+h+o,S=n+d-c+o,P=C;if((s=Ut(e,t,n,r,k,C,S,P,!1)).length>0)return s}if(f){var D=n-d-o,T=r-h+c-o,_=D,M=r+h-c+o;if((s=Ut(e,t,n,r,D,T,_,M,!1)).length>0)return s}var B=n-d+c,N=r-h+c;if((l=Kt(e,t,n,r,B,N,c+o)).length>0&&l[0]<=B&&l[1]<=N)return[l[0],l[1]];var z=n+d-c,I=r-h+c;if((l=Kt(e,t,n,r,z,I,c+o)).length>0&&l[0]>=z&&l[1]<=I)return[l[0],l[1]];var A=n+d-c,L=r+h-c;if((l=Kt(e,t,n,r,A,L,c+o)).length>0&&l[0]>=A&&l[1]>=L)return[l[0],l[1]];var O=n-d+c,R=r+h-c;return(l=Kt(e,t,n,r,O,R,c+o)).length>0&&l[0]<=O&&l[1]>=R?[l[0],l[1]]:[]},Rt=function(e,t,n,r,i,a,o){var s=o,l=Math.min(n,i),u=Math.max(n,i),c=Math.min(r,a),d=Math.max(r,a);return l-s<=e&&e<=u+s&&c-s<=t&&t<=d+s},Vt=function(e,t,n,r,i,a,o,s,l){var u=Math.min(n,o,i)-l,c=Math.max(n,o,i)+l,d=Math.min(r,s,a)-l,h=Math.max(r,s,a)+l;return!(ec||th)},Ft=function(e,t,n,r,i,a,o,s){var l=[];!function(e,t,n,r,i){var a,o,s,l,u,c,d,h;0===e&&(e=1e-5),s=-27*(r/=e)+(t/=e)*(9*(n/=e)-t*t*2),a=(o=(3*n-t*t)/9)*o*o+(s/=54)*s,i[1]=0,d=t/3,a>0?(u=(u=s+Math.sqrt(a))<0?-Math.pow(-u,1/3):Math.pow(u,1/3),c=(c=s-Math.sqrt(a))<0?-Math.pow(-c,1/3):Math.pow(c,1/3),i[0]=-d+u+c,d+=(u+c)/2,i[4]=i[2]=-d,d=Math.sqrt(3)*(-c+u)/2,i[3]=d,i[5]=-d):(i[5]=i[3]=0,0===a?(h=s<0?-Math.pow(-s,1/3):Math.pow(s,1/3),i[0]=2*h-d,i[4]=i[2]=-(h+d)):(l=(o=-o)*o*o,l=Math.acos(s/Math.sqrt(l)),h=2*Math.sqrt(o),i[0]=-d+h*Math.cos(l/3),i[2]=-d+h*Math.cos((l+2*Math.PI)/3),i[4]=-d+h*Math.cos((l+4*Math.PI)/3)))}(1*n*n-4*n*i+2*n*o+4*i*i-4*i*o+o*o+r*r-4*r*a+2*r*s+4*a*a-4*a*s+s*s,9*n*i-3*n*n-3*n*o-6*i*i+3*i*o+9*r*a-3*r*r-3*r*s-6*a*a+3*a*s,3*n*n-6*n*i+n*o-n*e+2*i*i+2*i*e-o*e+3*r*r-6*r*a+r*s-r*t+2*a*a+2*a*t-s*t,1*n*i-n*n+n*e-i*e+r*a-r*r+r*t-a*t,l);for(var u=[],c=0;c<6;c+=2)Math.abs(l[c+1])<1e-7&&l[c]>=0&&l[c]<=1&&u.push(l[c]);u.push(1),u.push(0);for(var d,h,p,f=-1,g=0;g=0?pl?(e-i)*(e-i)+(t-a)*(t-a):u-d},qt=function(e,t,n){for(var r,i,a,o,s=0,l=0;l=e&&e>=a||r<=e&&e<=a))continue;(e-r)/(a-r)*(o-i)+i>t&&s++}return s%2!=0},Yt=function(e,t,n,r,i,a,o,s,l){var u,c=new Array(n.length);null!=s[0]?(u=Math.atan(s[1]/s[0]),s[0]<0?u+=Math.PI/2:u=-u-Math.PI/2):u=s;for(var d,h=Math.cos(-u),p=Math.sin(-u),f=0;f0){var g=Wt(c,-l);d=Xt(g)}else d=c;return qt(e,t,d)},Xt=function(e){for(var t,n,r,i,a,o,s,l,u=new Array(e.length/2),c=0;c=0&&f<=1&&v.push(f),g>=0&&g<=1&&v.push(g),0===v.length)return[];var y=v[0]*s[0]+e,m=v[0]*s[1]+t;return v.length>1?v[0]==v[1]?[y,m]:[y,m,v[1]*s[0]+e,v[1]*s[1]+t]:[y,m]},Gt=function(e,t,n){return t<=e&&e<=n||n<=e&&e<=t?e:e<=t&&t<=n||n<=t&&t<=e?t:n},Ut=function(e,t,n,r,i,a,o,s,l){var u=e-i,c=n-e,d=o-i,h=t-a,p=r-t,f=s-a,g=d*h-f*u,v=c*h-p*u,y=f*c-d*p;if(0!==y){var m=g/y,b=v/y;return-.001<=m&&m<=1.001&&-.001<=b&&b<=1.001||l?[e+m*c,t+m*p]:[]}return 0===g||0===v?Gt(e,n,o)===o?[o,s]:Gt(e,n,i)===i?[i,a]:Gt(i,o,n)===n?[n,r]:[]:[]},Zt=function(e,t,n,r,i,a,o,s){var l,u,c,d,h,p,f=[],g=new Array(n.length),v=!0;if(null==a&&(v=!1),v){for(var y=0;y0){var m=Wt(g,-s);u=Xt(m)}else u=g}else u=n;for(var b=0;bu&&(u=t)},d=function(e){return l[e]},h=0;h0?b.edgesTo(m)[0]:m.edgesTo(b)[0];var w=r(x);m=m.id(),h[m]>h[v]+w&&(h[m]=h[v]+w,p.nodes.indexOf(m)<0?p.push(m):p.updateItem(m),u[m]=0,l[m]=[]),h[m]==h[v]+w&&(u[m]=u[m]+u[v],l[m].push(v))}else for(var E=0;E0;){for(var P=n.pop(),D=0;D0&&o.push(n[s]);0!==o.length&&i.push(r.collection(o))}return i}(c,l,t,r);return b=function(e){for(var t=0;t5&&void 0!==arguments[5]?arguments[5]:kn,o=r,s=0;s=2?_n(e,t,n,0,Pn,Dn):_n(e,t,n,0,Sn)},squaredEuclidean:function(e,t,n){return _n(e,t,n,0,Pn)},manhattan:function(e,t,n){return _n(e,t,n,0,Sn)},max:function(e,t,n){return _n(e,t,n,-1/0,Tn)}};function Bn(e,t,n,r,i,a){var o;return o=v(e)?e:Mn[e]||Mn.euclidean,0===t&&v(e)?o(i,a):o(t,n,r,i,a)}Mn["squared-euclidean"]=Mn.squaredEuclidean,Mn.squaredeuclidean=Mn.squaredEuclidean;var Nn=We({k:2,m:2,sensitivityThreshold:1e-4,distance:"euclidean",maxIterations:10,attributes:[],testMode:!1,testCentroids:null}),zn=function(e){return Nn(e)},In=function(e,t,n,r,i){var a="kMedoids"!==i?function(e){return n[e]}:function(e){return r[e](n)},o=n,s=t;return Bn(e,r.length,a,(function(e){return r[e](t)}),o,s)},An=function(e,t,n){for(var r=n.length,i=new Array(r),a=new Array(r),o=new Array(t),s=null,l=0;ln)return!1}return!0},Fn=function(e,t,n){for(var r=0;ri&&(i=t[l][u],a=u);o[a].push(e[l])}for(var c=0;c=i.threshold||"dendrogram"===i.mode&&1===e.length)return!1;var p,f=t[o],g=t[r[o]];p="dendrogram"===i.mode?{left:f,right:g,key:f.key}:{value:f.value.concat(g.value),key:f.key},e[f.index]=p,e.splice(g.index,1),t[f.key]=p;for(var v=0;vn[g.key][y.key]&&(a=n[g.key][y.key])):"max"===i.linkage?(a=n[f.key][y.key],n[f.key][y.key]1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:e.length,r=!(arguments.length>3&&void 0!==arguments[3])||arguments[3],i=!(arguments.length>4&&void 0!==arguments[4])||arguments[4],a=!(arguments.length>5&&void 0!==arguments[5])||arguments[5];r?e=e.slice(t,n):(n0&&e.splice(0,t));for(var o=0,s=e.length-1;s>=0;s--){var l=e[s];a?isFinite(l)||(e[s]=-1/0,o++):e.splice(s,1)}i&&e.sort((function(e,t){return e-t}));var u=e.length,c=Math.floor(u/2);return u%2!=0?e[c+1+o]:(e[c-1+o]+e[c+o])/2}(e):"mean"===t?function(e){for(var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:e.length,r=0,i=0,a=t;a1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:e.length,r=1/0,i=t;i1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:e.length,r=-1/0,i=t;io&&(a=l,o=t[i*e+l])}a>0&&r.push(a)}for(var u=0;u=D?(T=D,D=M,_=B):M>T&&(T=M);for(var N=0;N0?1:0;C[k%u.minIterations*t+R]=V,O+=V}if(O>0&&(k>=u.minIterations-1||k==u.maxIterations-1)){for(var F=0,j=0;j0&&r.push(i);return r}(t,a,o),X=function(e,t,n){for(var r=nr(e,t,n),i=0;il&&(s=u,l=c)}n[i]=a[s]}return r=nr(e,t,n)}(t,r,Y),W={},H=0;H1)}}));var l=Object.keys(t).filter((function(e){return t[e].cutVertex})).map((function(t){return e.getElementById(t)}));return{cut:e.spawn(l),components:i}},sr=function(){var e=this,t={},n=0,r=[],i=[],a=e.spawn(e);return e.forEach((function(o){if(o.isNode()){var s=o.id();s in t||function o(s){if(i.push(s),t[s]={index:n,low:n++,explored:!1},e.getElementById(s).connectedEdges().intersection(e).forEach((function(e){var n=e.target().id();n!==s&&(n in t||o(n),t[n].explored||(t[s].low=Math.min(t[s].low,t[n].low)))})),t[s].index===t[s].low){for(var l=e.spawn();;){var u=i.pop();if(l.merge(e.getElementById(u)),t[u].low=t[s].index,t[u].explored=!0,u===s)break}var c=l.edgesWith(l),d=l.merge(c);r.push(d),a=a.difference(d)}}(s)}})),{cut:a,components:r}},lr={};[tt,it,at,st,ut,dt,gt,on,ln,cn,hn,En,Hn,Qn,ir,{hierholzer:function(e){if(!m(e)){var t=arguments;e={root:t[0],directed:t[1]}}var n,r,i,a=ar(e),o=a.root,s=a.directed,l=this,u=!1;o&&(i=g(o)?this.filter(o)[0].id():o[0].id());var c={},d={};s?l.forEach((function(e){var t=e.id();if(e.isNode()){var i=e.indegree(!0),a=e.outdegree(!0),o=i-a,s=a-i;1==o?n?u=!0:n=t:1==s?r?u=!0:r=t:(s>1||o>1)&&(u=!0),c[t]=[],e.outgoers().forEach((function(e){e.isEdge()&&c[t].push(e.id())}))}else d[t]=[void 0,e.target().id()]})):l.forEach((function(e){var t=e.id();e.isNode()?(e.degree(!0)%2&&(n?r?u=!0:r=t:n=t),c[t]=[],e.connectedEdges().forEach((function(e){return c[t].push(e.id())}))):d[t]=[e.source().id(),e.target().id()]}));var h={found:!1,trail:void 0};if(u)return h;if(r&&n)if(s){if(i&&r!=i)return h;i=r}else{if(i&&r!=i&&n!=i)return h;i||(i=r)}else i||(i=l[0].id());var p=function(e){for(var t,n,r,i=e,a=[e];c[i].length;)t=c[i].shift(),n=d[t][0],i!=(r=d[t][1])?(c[r]=c[r].filter((function(e){return e!=t})),i=r):s||i==n||(c[n]=c[n].filter((function(e){return e!=t})),i=n),a.unshift(t),a.unshift(i);return a},f=[],v=[];for(v=p(i);1!=v.length;)0==c[v[0]].length?(f.unshift(l.getElementById(v.shift())),f.unshift(l.getElementById(v.shift()))):v=p(v.shift()).concat(v);for(var y in f.unshift(l.getElementById(v.shift())),c)if(c[y].length)return h;return h.found=!0,h.trail=this.spawn(f,!0),h}},{hopcroftTarjanBiconnected:or,htbc:or,htb:or,hopcroftTarjanBiconnectedComponents:or},{tarjanStronglyConnected:sr,tsc:sr,tscc:sr,tarjanStronglyConnectedComponents:sr}].forEach((function(e){A(lr,e)})); /*! Embeddable Minimum Strictly-Compliant Promises/A+ 1.1.1 Thenable Copyright (c) 2013-2014 Ralf S. Engelschall (http://engelschall.com) Licensed under The MIT License (http://opensource.org/licenses/MIT) */ var ur=function e(t){if(!(this instanceof e))return new e(t);this.id="Thenable/1.0.7",this.state=0,this.fulfillValue=void 0,this.rejectReason=void 0,this.onFulfilled=[],this.onRejected=[],this.proxy={then:this.then.bind(this)},"function"==typeof t&&t.call(this,this.fulfill.bind(this),this.reject.bind(this))};ur.prototype={fulfill:function(e){return cr(this,1,"fulfillValue",e)},reject:function(e){return cr(this,2,"rejectReason",e)},then:function(e,t){var n=new ur;return this.onFulfilled.push(pr(e,n,"fulfill")),this.onRejected.push(pr(t,n,"reject")),dr(this),n.proxy}};var cr=function(e,t,n,r){return 0===e.state&&(e.state=t,e[n]=r,dr(e)),e},dr=function(e){1===e.state?hr(e,"onFulfilled",e.fulfillValue):2===e.state&&hr(e,"onRejected",e.rejectReason)},hr=function(e,t,n){if(0!==e[t].length){var r=e[t];e[t]=[];var i=function(){for(var e=0;e0:void 0}},clearQueue:function(){return function(){var e=void 0!==this.length?this:[this];if(!(this._private.cy||this).styleEnabled())return this;for(var t=0;t-1};var ni=function(e,t){var n=this.__data__,r=$r(n,e);return r<0?(++this.size,n.push([e,t])):n[r][1]=t,this};function ri(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t-1&&e%1==0&&e0&&this.spawn(n).updateStyle().emit("class"),this},addClass:function(e){return this.toggleClass(e,!0)},hasClass:function(e){var t=this[0];return null!=t&&t._private.classes.has(e)},toggleClass:function(e,t){y(e)||(e=e.match(/\S+/g)||[]);for(var n=void 0===t,r=[],i=0,a=this.length;i0&&this.spawn(r).updateStyle().emit("class"),this},removeClass:function(e){return this.toggleClass(e,!1)},flashClass:function(e,t){var n=this;if(null==t)t=250;else if(0===t)return n;return n.addClass(e),setTimeout((function(){n.removeClass(e)}),t),n}};ji.className=ji.classNames=ji.classes;var qi={metaChar:"[\\!\\\"\\#\\$\\%\\&\\'\\(\\)\\*\\+\\,\\.\\/\\:\\;\\<\\=\\>\\?\\@\\[\\]\\^\\`\\{\\|\\}\\~]",comparatorOp:"=|\\!=|>|>=|<|<=|\\$=|\\^=|\\*=",boolOp:"\\?|\\!|\\^",string:"\"(?:\\\\\"|[^\"])*\"|'(?:\\\\'|[^'])*'",number:z,meta:"degree|indegree|outdegree",separator:"\\s*,\\s*",descendant:"\\s+",child:"\\s+>\\s+",subject:"\\$",group:"node|edge|\\*",directedEdge:"\\s+->\\s+",undirectedEdge:"\\s+<->\\s+"};qi.variable="(?:[\\w-.]|(?:\\\\"+qi.metaChar+"))+",qi.className="(?:[\\w-]|(?:\\\\"+qi.metaChar+"))+",qi.value=qi.string+"|"+qi.number,qi.id=qi.variable,function(){var e,t,n;for(e=qi.comparatorOp.split("|"),n=0;n=0||"="!==t&&(qi.comparatorOp+="|\\!"+t)}();var Yi=0,Xi=1,Wi=2,Hi=3,Ki=4,Gi=5,Ui=6,Zi=7,$i=8,Qi=9,Ji=10,ea=11,ta=12,na=13,ra=14,ia=15,aa=16,oa=17,sa=18,la=19,ua=20,ca=[{selector:":selected",matches:function(e){return e.selected()}},{selector:":unselected",matches:function(e){return!e.selected()}},{selector:":selectable",matches:function(e){return e.selectable()}},{selector:":unselectable",matches:function(e){return!e.selectable()}},{selector:":locked",matches:function(e){return e.locked()}},{selector:":unlocked",matches:function(e){return!e.locked()}},{selector:":visible",matches:function(e){return e.visible()}},{selector:":hidden",matches:function(e){return!e.visible()}},{selector:":transparent",matches:function(e){return e.transparent()}},{selector:":grabbed",matches:function(e){return e.grabbed()}},{selector:":free",matches:function(e){return!e.grabbed()}},{selector:":removed",matches:function(e){return e.removed()}},{selector:":inside",matches:function(e){return!e.removed()}},{selector:":grabbable",matches:function(e){return e.grabbable()}},{selector:":ungrabbable",matches:function(e){return!e.grabbable()}},{selector:":animated",matches:function(e){return e.animated()}},{selector:":unanimated",matches:function(e){return!e.animated()}},{selector:":parent",matches:function(e){return e.isParent()}},{selector:":childless",matches:function(e){return e.isChildless()}},{selector:":child",matches:function(e){return e.isChild()}},{selector:":orphan",matches:function(e){return e.isOrphan()}},{selector:":nonorphan",matches:function(e){return e.isChild()}},{selector:":compound",matches:function(e){return e.isNode()?e.isParent():e.source().isParent()||e.target().isParent()}},{selector:":loop",matches:function(e){return e.isLoop()}},{selector:":simple",matches:function(e){return e.isSimple()}},{selector:":active",matches:function(e){return e.active()}},{selector:":inactive",matches:function(e){return!e.active()}},{selector:":backgrounding",matches:function(e){return e.backgrounding()}},{selector:":nonbackgrounding",matches:function(e){return!e.backgrounding()}}].sort((function(e,t){return function(e,t){return-1*I(e,t)}(e.selector,t.selector)})),da=function(){for(var e,t={},n=0;n0&&l.edgeCount>0)return Fe("The selector `"+e+"` is invalid because it uses both a compound selector and an edge selector"),!1;if(l.edgeCount>1)return Fe("The selector `"+e+"` is invalid because it uses multiple edge selectors"),!1;1===l.edgeCount&&Fe("The selector `"+e+"` is deprecated. Edge selectors do not take effect on changes to source and target nodes after an edge is added, for performance reasons. Use a class or data selector on edges instead, updating the class or data of an edge when your app detects a change in source or target nodes.")}return!0},toString:function(){if(null!=this.toStringCache)return this.toStringCache;for(var e=function(e){return null==e?"":e},t=function(t){return g(t)?'"'+t+'"':e(t)},n=function(e){return" "+e+" "},r=function(r,a){var o=r.type,s=r.value;switch(o){case Yi:var l=e(s);return l.substring(0,l.length-1);case Hi:var u=r.field,c=r.operator;return"["+u+n(e(c))+t(s)+"]";case Gi:var d=r.operator,h=r.field;return"["+e(d)+h+"]";case Ki:return"["+r.field+"]";case Ui:var p=r.operator;return"[["+r.field+n(e(p))+t(s)+"]]";case Zi:return s;case $i:return"#"+s;case Qi:return"."+s;case oa:case ia:return i(r.parent,a)+n(">")+i(r.child,a);case sa:case aa:return i(r.ancestor,a)+" "+i(r.descendant,a);case la:var f=i(r.left,a),g=i(r.subject,a),v=i(r.right,a);return f+(f.length>0?" ":"")+g+v;case ua:return""}},i=function(e,t){return e.checks.reduce((function(n,i,a){return n+(t===e&&0===a?"$":"")+r(i,t)}),"")},a="",o=0;o1&&o=0&&(t=t.replace("!",""),c=!0),t.indexOf("@")>=0&&(t=t.replace("@",""),u=!0),(o||l||u)&&(i=o||s?""+e:"",a=""+n),u&&(e=i=i.toLowerCase(),n=a=a.toLowerCase()),t){case"*=":r=i.indexOf(a)>=0;break;case"$=":r=i.indexOf(a,i.length-a.length)>=0;break;case"^=":r=0===i.indexOf(a);break;case"=":r=e===n;break;case">":d=!0,r=e>n;break;case">=":d=!0,r=e>=n;break;case"<":d=!0,r=e0;){var u=i.shift();t(u),a.add(u.id()),o&&r(i,a,u)}return e}function Ma(e,t,n){if(n.isParent())for(var r=n._private.children,i=0;i1&&void 0!==arguments[1])||arguments[1];return _a(this,e,t,Ma)},Ta.forEachUp=function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return _a(this,e,t,Ba)},Ta.forEachUpAndDown=function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return _a(this,e,t,Na)},Ta.ancestors=Ta.parents,(Sa=Pa={data:Vi.data({field:"data",bindingEvent:"data",allowBinding:!0,allowSetting:!0,settingEvent:"data",settingTriggersEvent:!0,triggerFnName:"trigger",allowGetting:!0,immutableKeys:{id:!0,source:!0,target:!0,parent:!0},updateStyle:!0}),removeData:Vi.removeData({field:"data",event:"data",triggerFnName:"trigger",triggerEvent:!0,immutableKeys:{id:!0,source:!0,target:!0,parent:!0},updateStyle:!0}),scratch:Vi.data({field:"scratch",bindingEvent:"scratch",allowBinding:!0,allowSetting:!0,settingEvent:"scratch",settingTriggersEvent:!0,triggerFnName:"trigger",allowGetting:!0,updateStyle:!0}),removeScratch:Vi.removeData({field:"scratch",event:"scratch",triggerFnName:"trigger",triggerEvent:!0,updateStyle:!0}),rscratch:Vi.data({field:"rscratch",allowBinding:!1,allowSetting:!0,settingTriggersEvent:!1,allowGetting:!0}),removeRscratch:Vi.removeData({field:"rscratch",triggerEvent:!1}),id:function(){var e=this[0];if(e)return e._private.data.id}}).attr=Sa.data,Sa.removeAttr=Sa.removeData;var za,Ia,Aa=Pa,La={};function Oa(e){return function(t){if(void 0===t&&(t=!0),0!==this.length&&this.isNode()&&!this.removed()){for(var n=0,r=this[0],i=r._private.edges,a=0;at})),minIndegree:Ra("indegree",(function(e,t){return et})),minOutdegree:Ra("outdegree",(function(e,t){return et}))}),A(La,{totalDegree:function(e){for(var t=0,n=this.nodes(),r=0;r0,c=u;u&&(l=l[0]);var d=c?l.position():{x:0,y:0};return i={x:s.x-d.x,y:s.y-d.y},void 0===e?i:i[e]}for(var h=0;h0,y=v;v&&(f=f[0]);var b=y?f.position():{x:0,y:0};void 0!==t?p.position(e,t+b[e]):void 0!==i&&p.position({x:i.x+b.x,y:i.y+b.y})}}else if(!a)return;return this}}).modelPosition=za.point=za.position,za.modelPositions=za.points=za.positions,za.renderedPoint=za.renderedPosition,za.relativePoint=za.relativePosition;var ja,qa,Ya=Ia;ja=qa={},qa.renderedBoundingBox=function(e){var t=this.boundingBox(e),n=this.cy(),r=n.zoom(),i=n.pan(),a=t.x1*r+i.x,o=t.x2*r+i.x,s=t.y1*r+i.y,l=t.y2*r+i.y;return{x1:a,x2:o,y1:s,y2:l,w:o-a,h:l-s}},qa.dirtyCompoundBoundsCache=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=this.cy();return t.styleEnabled()&&t.hasCompoundNodes()?(this.forEachUp((function(t){if(t.isParent()){var n=t._private;n.compoundBoundsClean=!1,n.bbCache=null,e||t.emitAndNotify("bounds")}})),this):this},qa.updateCompoundBounds=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=this.cy();if(!t.styleEnabled()||!t.hasCompoundNodes())return this;if(!e&&t.batching())return this;function n(e){if(e.isParent()){var t=e._private,n=e.children(),r="include"===e.pstyle("compound-sizing-wrt-labels").value,i={width:{val:e.pstyle("min-width").pfValue,left:e.pstyle("min-width-bias-left"),right:e.pstyle("min-width-bias-right")},height:{val:e.pstyle("min-height").pfValue,top:e.pstyle("min-height-bias-top"),bottom:e.pstyle("min-height-bias-bottom")}},a=n.boundingBox({includeLabels:r,includeOverlays:!1,useCache:!1}),o=t.position;0!==a.w&&0!==a.h||((a={w:e.pstyle("width").pfValue,h:e.pstyle("height").pfValue}).x1=o.x-a.w/2,a.x2=o.x+a.w/2,a.y1=o.y-a.h/2,a.y2=o.y+a.h/2);var s=i.width.left.value;"px"===i.width.left.units&&i.width.val>0&&(s=100*s/i.width.val);var l=i.width.right.value;"px"===i.width.right.units&&i.width.val>0&&(l=100*l/i.width.val);var u=i.height.top.value;"px"===i.height.top.units&&i.height.val>0&&(u=100*u/i.height.val);var c=i.height.bottom.value;"px"===i.height.bottom.units&&i.height.val>0&&(c=100*c/i.height.val);var d=y(i.width.val-a.w,s,l),h=d.biasDiff,p=d.biasComplementDiff,f=y(i.height.val-a.h,u,c),g=f.biasDiff,v=f.biasComplementDiff;t.autoPadding=function(e,t,n,r){if("%"!==n.units)return"px"===n.units?n.pfValue:0;switch(r){case"width":return e>0?n.pfValue*e:0;case"height":return t>0?n.pfValue*t:0;case"average":return e>0&&t>0?n.pfValue*(e+t)/2:0;case"min":return e>0&&t>0?e>t?n.pfValue*t:n.pfValue*e:0;case"max":return e>0&&t>0?e>t?n.pfValue*e:n.pfValue*t:0;default:return 0}}(a.w,a.h,e.pstyle("padding"),e.pstyle("padding-relative-to").value),t.autoWidth=Math.max(a.w,i.width.val),o.x=(-h+a.x1+a.x2+p)/2,t.autoHeight=Math.max(a.h,i.height.val),o.y=(-g+a.y1+a.y2+v)/2}function y(e,t,n){var r=0,i=0,a=t+n;return e>0&&a>0&&(r=t/a*e,i=n/a*e),{biasDiff:r,biasComplementDiff:i}}}for(var r=0;re.x2?r:e.x2,e.y1=ne.y2?i:e.y2,e.w=e.x2-e.x1,e.h=e.y2-e.y1)},Ha=function(e,t){return null==t?e:Wa(e,t.x1,t.y1,t.x2,t.y2)},Ka=function(e,t,n){return Ge(e,t,n)},Ga=function(e,t,n){if(!t.cy().headless()){var r,i,a=t._private,o=a.rstyle,s=o.arrowWidth/2;if("none"!==t.pstyle(n+"-arrow-shape").value){"source"===n?(r=o.srcX,i=o.srcY):"target"===n?(r=o.tgtX,i=o.tgtY):(r=o.midX,i=o.midY);var l=a.arrowBounds=a.arrowBounds||{},u=l[n]=l[n]||{};u.x1=r-s,u.y1=i-s,u.x2=r+s,u.y2=i+s,u.w=u.x2-u.x1,u.h=u.y2-u.y1,Bt(u,1),Wa(e,u.x1,u.y1,u.x2,u.y2)}}},Ua=function(e,t,n){if(!t.cy().headless()){var r;r=n?n+"-":"";var i=t._private,a=i.rstyle;if(t.pstyle(r+"label").strValue){var o,s,l,u,c=t.pstyle("text-halign"),d=t.pstyle("text-valign"),h=Ka(a,"labelWidth",n),p=Ka(a,"labelHeight",n),f=Ka(a,"labelX",n),g=Ka(a,"labelY",n),v=t.pstyle(r+"text-margin-x").pfValue,y=t.pstyle(r+"text-margin-y").pfValue,m=t.isEdge(),b=t.pstyle(r+"text-rotation"),x=t.pstyle("text-outline-width").pfValue,w=t.pstyle("text-border-width").pfValue/2,E=t.pstyle("text-background-padding").pfValue,k=p,C=h,S=C/2,P=k/2;if(m)o=f-S,s=f+S,l=g-P,u=g+P;else{switch(c.value){case"left":o=f-C,s=f;break;case"center":o=f-S,s=f+S;break;case"right":o=f,s=f+C}switch(d.value){case"top":l=g-k,u=g;break;case"center":l=g-P,u=g+P;break;case"bottom":l=g,u=g+k}}o+=v-Math.max(x,w)-E-2,s+=v+Math.max(x,w)+E+2,l+=y-Math.max(x,w)-E-2,u+=y+Math.max(x,w)+E+2;var D=n||"main",T=i.labelBounds,_=T[D]=T[D]||{};_.x1=o,_.y1=l,_.x2=s,_.y2=u,_.w=s-o,_.h=u-l;var M=m&&"autorotate"===b.strValue,B=null!=b.pfValue&&0!==b.pfValue;if(M||B){var N=M?Ka(i.rstyle,"labelAngle",n):b.pfValue,z=Math.cos(N),I=Math.sin(N),A=(o+s)/2,L=(l+u)/2;if(!m){switch(c.value){case"left":A=s;break;case"right":A=o}switch(d.value){case"top":L=u;break;case"bottom":L=l}}var O=function(e,t){return{x:(e-=A)*z-(t-=L)*I+A,y:e*I+t*z+L}},R=O(o,l),V=O(o,u),F=O(s,l),j=O(s,u);o=Math.min(R.x,V.x,F.x,j.x),s=Math.max(R.x,V.x,F.x,j.x),l=Math.min(R.y,V.y,F.y,j.y),u=Math.max(R.y,V.y,F.y,j.y)}var q=D+"Rot",Y=T[q]=T[q]||{};Y.x1=o,Y.y1=l,Y.x2=s,Y.y2=u,Y.w=s-o,Y.h=u-l,Wa(e,o,l,s,u),Wa(i.labelBounds.all,o,l,s,u)}return e}},Za=function(e,t){var n,r,i,a,o,s,l,u=e._private.cy,c=u.styleEnabled(),d=u.headless(),h=Tt(),p=e._private,f=e.isNode(),g=e.isEdge(),v=p.rstyle,y=f&&c?e.pstyle("bounds-expansion").pfValue:[0],m=function(e){return"none"!==e.pstyle("display").value},b=!c||m(e)&&(!g||m(e.source())&&m(e.target()));if(b){var x=0;c&&t.includeOverlays&&0!==e.pstyle("overlay-opacity").value&&(x=e.pstyle("overlay-padding").value);var w=0;c&&t.includeUnderlays&&0!==e.pstyle("underlay-opacity").value&&(w=e.pstyle("underlay-padding").value);var E=Math.max(x,w),k=0;if(c&&(k=e.pstyle("width").pfValue/2),f&&t.includeNodes){var C=e.position();o=C.x,s=C.y;var S=e.outerWidth()/2,P=e.outerHeight()/2;Wa(h,n=o-S,i=s-P,r=o+S,a=s+P),c&&t.includeOutlines&&function(e,t){if(!t.cy().headless()){var n,r,i,a=t.pstyle("outline-opacity").value,o=t.pstyle("outline-width").value;if(a>0&&o>0){var s=t.pstyle("outline-offset").value,l=t.pstyle("shape").value,u=o+s,c=(e.w+2*u)/e.w,d=(e.h+2*u)/e.h,h=0;["diamond","pentagon","round-triangle"].includes(l)?(c=(e.w+2.4*u)/e.w,h=-u/3.6):["concave-hexagon","rhomboid","right-rhomboid"].includes(l)?c=(e.w+2.4*u)/e.w:"star"===l?(c=(e.w+2.8*u)/e.w,d=(e.h+2.6*u)/e.h,h=-u/3.8):"triangle"===l?(c=(e.w+2.8*u)/e.w,d=(e.h+2.4*u)/e.h,h=-u/1.4):"vee"===l&&(c=(e.w+4.4*u)/e.w,d=(e.h+3.8*u)/e.h,h=.5*-u);var p=e.h*d-e.h,f=e.w*c-e.w;if(Nt(e,[Math.ceil(p/2),Math.ceil(f/2)]),0!==h){var g=(r=0,i=h,{x1:(n=e).x1+r,x2:n.x2+r,y1:n.y1+i,y2:n.y2+i,w:n.w,h:n.h});_t(e,g)}}}}(h,e)}else if(g&&t.includeEdges)if(c&&!d){var D=e.pstyle("curve-style").strValue;if(n=Math.min(v.srcX,v.midX,v.tgtX),r=Math.max(v.srcX,v.midX,v.tgtX),i=Math.min(v.srcY,v.midY,v.tgtY),a=Math.max(v.srcY,v.midY,v.tgtY),Wa(h,n-=k,i-=k,r+=k,a+=k),"haystack"===D){var T=v.haystackPts;if(T&&2===T.length){if(n=T[0].x,i=T[0].y,n>(r=T[1].x)){var _=n;n=r,r=_}if(i>(a=T[1].y)){var M=i;i=a,a=M}Wa(h,n-k,i-k,r+k,a+k)}}else if("bezier"===D||"unbundled-bezier"===D||D.endsWith("segments")||D.endsWith("taxi")){var B;switch(D){case"bezier":case"unbundled-bezier":B=v.bezierPts;break;case"segments":case"taxi":case"round-segments":case"round-taxi":B=v.linePts}if(null!=B)for(var N=0;N(r=A.x)){var L=n;n=r,r=L}if((i=I.y)>(a=A.y)){var O=i;i=a,a=O}Wa(h,n-=k,i-=k,r+=k,a+=k)}if(c&&t.includeEdges&&g&&(Ga(h,e,"mid-source"),Ga(h,e,"mid-target"),Ga(h,e,"source"),Ga(h,e,"target")),c)if("yes"===e.pstyle("ghost").value){var R=e.pstyle("ghost-offset-x").pfValue,V=e.pstyle("ghost-offset-y").pfValue;Wa(h,h.x1+R,h.y1+V,h.x2+R,h.y2+V)}var F=p.bodyBounds=p.bodyBounds||{};zt(F,h),Nt(F,y),Bt(F,1),c&&(n=h.x1,r=h.x2,i=h.y1,a=h.y2,Wa(h,n-E,i-E,r+E,a+E));var j=p.overlayBounds=p.overlayBounds||{};zt(j,h),Nt(j,y),Bt(j,1);var q=p.labelBounds=p.labelBounds||{};null!=q.all?((l=q.all).x1=1/0,l.y1=1/0,l.x2=-1/0,l.y2=-1/0,l.w=0,l.h=0):q.all=Tt(),c&&t.includeLabels&&(t.includeMainLabels&&Ua(h,e,null),g&&(t.includeSourceLabels&&Ua(h,e,"source"),t.includeTargetLabels&&Ua(h,e,"target")))}return h.x1=Xa(h.x1),h.y1=Xa(h.y1),h.x2=Xa(h.x2),h.y2=Xa(h.y2),h.w=Xa(h.x2-h.x1),h.h=Xa(h.y2-h.y1),h.w>0&&h.h>0&&b&&(Nt(h,y),Bt(h,1)),h},$a=function(e){var t=0,n=function(e){return(e?1:0)<0&&void 0!==arguments[0]?arguments[0]:mo,t=arguments.length>1?arguments[1]:void 0,n=0;n=0;s--)o(s);return this},xo.removeAllListeners=function(){return this.removeListener("*")},xo.emit=xo.trigger=function(e,t,n){var r=this.listeners,i=r.length;return this.emitting++,y(t)||(t=[t]),ko(this,(function(e,a){null!=n&&(r=[{event:a.event,type:a.type,namespace:a.namespace,callback:n}],i=r.length);for(var o=function(n){var i=r[n];if(i.type===a.type&&(!i.namespace||i.namespace===a.namespace||".*"===i.namespace)&&e.eventMatches(e.context,i,a)){var o=[a];null!=t&&function(e,t){for(var n=0;n1&&!r){var i=this.length-1,a=this[i],o=a._private.data.id;this[i]=void 0,this[e]=a,n.set(o,{ele:a,index:e})}return this.length--,this},unmergeOne:function(e){e=e[0];var t=this._private,n=e._private.data.id,r=t.map.get(n);if(!r)return this;var i=r.index;return this.unmergeAt(i),this},unmerge:function(e){var t=this._private.cy;if(!e)return this;if(e&&g(e)){var n=e;e=t.mutableElements().filter(n)}for(var r=0;r=0;t--){e(this[t])&&this.unmergeAt(t)}return this},map:function(e,t){for(var n=[],r=0;rr&&(r=o,n=a)}return{value:r,ele:n}},min:function(e,t){for(var n,r=1/0,i=0;i=0&&i1&&void 0!==arguments[1])||arguments[1],n=this[0],r=n.cy();if(r.styleEnabled()&&n){this.cleanStyle();var i=n._private.style[e];return null!=i?i:t?r.style().getDefaultProperty(e):null}},numericStyle:function(e){var t=this[0];if(t.cy().styleEnabled()&&t){var n=t.pstyle(e);return void 0!==n.pfValue?n.pfValue:n.value}},numericStyleUnits:function(e){var t=this[0];if(t.cy().styleEnabled())return t?t.pstyle(e).units:void 0},renderedStyle:function(e){var t=this.cy();if(!t.styleEnabled())return this;var n=this[0];return n?t.style().getRenderedStyle(n,e):void 0},style:function(e,t){var n=this.cy();if(!n.styleEnabled())return this;var r=n.style();if(m(e)){var i=e;r.applyBypass(this,i,!1),this.emitAndNotify("style")}else if(g(e)){if(void 0===t){var a=this[0];return a?r.getStylePropertyValue(a,e):void 0}r.applyBypass(this,e,t,!1),this.emitAndNotify("style")}else if(void 0===e){var o=this[0];return o?r.getRawStyle(o):void 0}return this},removeStyle:function(e){var t=this.cy();if(!t.styleEnabled())return this;var n=t.style();if(void 0===e)for(var r=0;r0&&t.push(c[0]),t.push(s[0])}return this.spawn(t,!0).filter(e)}),"neighborhood"),closedNeighborhood:function(e){return this.neighborhood().add(this).filter(e)},openNeighborhood:function(e){return this.neighborhood(e)}}),Ko.neighbourhood=Ko.neighborhood,Ko.closedNeighbourhood=Ko.closedNeighborhood,Ko.openNeighbourhood=Ko.openNeighborhood,A(Ko,{source:Da((function(e){var t,n=this[0];return n&&(t=n._private.source||n.cy().collection()),t&&e?t.filter(e):t}),"source"),target:Da((function(e){var t,n=this[0];return n&&(t=n._private.target||n.cy().collection()),t&&e?t.filter(e):t}),"target"),sources:$o({attr:"source"}),targets:$o({attr:"target"})}),A(Ko,{edgesWith:Da(Qo(),"edgesWith"),edgesTo:Da(Qo({thisIsSrc:!0}),"edgesTo")}),A(Ko,{connectedEdges:Da((function(e){for(var t=[],n=0;n0);return a},component:function(){var e=this[0];return e.cy().mutableElements().components(e)[0]}}),Ko.componentsOf=Ko.components;var es=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if(void 0!==e){var i=new Ze,a=!1;if(t){if(t.length>0&&m(t[0])&&!E(t[0])){a=!0;for(var o=[],s=new Qe,l=0,u=t.length;l0&&void 0!==arguments[0])||arguments[0],r=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=this,a=i.cy(),o=a._private,s=[],l=[],u=0,c=i.length;u0){for(var R=e.length===i.length?i:new es(a,e),V=0;V0&&void 0!==arguments[0])||arguments[0],t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],n=this,r=[],i={},a=n._private.cy;function o(e){for(var t=e._private.edges,n=0;n0&&(e?D.emitAndNotify("remove"):t&&D.emit("remove"));for(var T=0;T1e-4&&Math.abs(s.v)>1e-4;);return a?function(e){return u[e*(u.length-1)|0]}:c}}(),is=function(e,t,n,r){var i=function(e,t,n,r){var i=4,a=.001,o=1e-7,s=10,l=11,u=1/(l-1),c="undefined"!=typeof Float32Array;if(4!==arguments.length)return!1;for(var d=0;d<4;++d)if("number"!=typeof arguments[d]||isNaN(arguments[d])||!isFinite(arguments[d]))return!1;e=Math.min(e,1),n=Math.min(n,1),e=Math.max(e,0),n=Math.max(n,0);var h=c?new Float32Array(l):new Array(l);function p(e,t){return 1-3*t+3*e}function f(e,t){return 3*t-6*e}function g(e){return 3*e}function v(e,t,n){return((p(t,n)*e+f(t,n))*e+g(t))*e}function y(e,t,n){return 3*p(t,n)*e*e+2*f(t,n)*e+g(t)}function m(t,r){for(var a=0;a0?i=l:r=l}while(Math.abs(a)>o&&++u=a?m(t,s):0===c?s:x(t,r,r+u)}var E=!1;function k(){E=!0,e===t&&n===r||b()}var C=function(i){return E||k(),e===t&&n===r?i:0===i?0:1===i?1:v(w(i),t,r)};C.getControlPoints=function(){return[{x:e,y:t},{x:n,y:r}]};var S="generateBezier("+[e,t,n,r]+")";return C.toString=function(){return S},C}(e,t,n,r);return function(e,t,n){return e+(t-e)*i(n)}},as={linear:function(e,t,n){return e+(t-e)*n},ease:is(.25,.1,.25,1),"ease-in":is(.42,0,1,1),"ease-out":is(0,0,.58,1),"ease-in-out":is(.42,0,.58,1),"ease-in-sine":is(.47,0,.745,.715),"ease-out-sine":is(.39,.575,.565,1),"ease-in-out-sine":is(.445,.05,.55,.95),"ease-in-quad":is(.55,.085,.68,.53),"ease-out-quad":is(.25,.46,.45,.94),"ease-in-out-quad":is(.455,.03,.515,.955),"ease-in-cubic":is(.55,.055,.675,.19),"ease-out-cubic":is(.215,.61,.355,1),"ease-in-out-cubic":is(.645,.045,.355,1),"ease-in-quart":is(.895,.03,.685,.22),"ease-out-quart":is(.165,.84,.44,1),"ease-in-out-quart":is(.77,0,.175,1),"ease-in-quint":is(.755,.05,.855,.06),"ease-out-quint":is(.23,1,.32,1),"ease-in-out-quint":is(.86,0,.07,1),"ease-in-expo":is(.95,.05,.795,.035),"ease-out-expo":is(.19,1,.22,1),"ease-in-out-expo":is(1,0,0,1),"ease-in-circ":is(.6,.04,.98,.335),"ease-out-circ":is(.075,.82,.165,1),"ease-in-out-circ":is(.785,.135,.15,.86),spring:function(e,t,n){if(0===n)return as.linear;var r=rs(e,t,n);return function(e,t,n){return e+(t-e)*r(n)}},"cubic-bezier":is};function os(e,t,n,r,i){if(1===r)return n;if(t===n)return n;var a=i(t,n,r);return null==e||((e.roundValue||e.color)&&(a=Math.round(a)),void 0!==e.min&&(a=Math.max(a,e.min)),void 0!==e.max&&(a=Math.min(a,e.max))),a}function ss(e,t){return null!=e.pfValue||null!=e.value?null==e.pfValue||null!=t&&"%"===t.type.units?e.value:e.pfValue:e}function ls(e,t,n,r,i){var a=null!=i?i.type:null;n<0?n=0:n>1&&(n=1);var o=ss(e,i),s=ss(t,i);if(b(o)&&b(s))return os(a,o,s,n,r);if(y(o)&&y(s)){for(var l=[],u=0;u0?("spring"===d&&h.push(o.duration),o.easingImpl=as[d].apply(null,h)):o.easingImpl=as[d]}var p,f=o.easingImpl;if(p=0===o.duration?1:(n-l)/o.duration,o.applying&&(p=o.progress),p<0?p=0:p>1&&(p=1),null==o.delay){var v=o.startPosition,y=o.position;if(y&&i&&!e.locked()){var m={};cs(v.x,y.x)&&(m.x=ls(v.x,y.x,p,f)),cs(v.y,y.y)&&(m.y=ls(v.y,y.y,p,f)),e.position(m)}var b=o.startPan,x=o.pan,w=a.pan,E=null!=x&&r;E&&(cs(b.x,x.x)&&(w.x=ls(b.x,x.x,p,f)),cs(b.y,x.y)&&(w.y=ls(b.y,x.y,p,f)),e.emit("pan"));var k=o.startZoom,C=o.zoom,S=null!=C&&r;S&&(cs(k,C)&&(a.zoom=Dt(a.minZoom,ls(k,C,p,f),a.maxZoom)),e.emit("zoom")),(E||S)&&e.emit("viewport");var P=o.style;if(P&&P.length>0&&i){for(var D=0;D=0;t--){(0,e[t])()}e.splice(0,e.length)},c=a.length-1;c>=0;c--){var d=a[c],h=d._private;h.stopped?(a.splice(c,1),h.hooked=!1,h.playing=!1,h.started=!1,u(h.frames)):(h.playing||h.applying)&&(h.playing&&h.applying&&(h.applying=!1),h.started||ds(0,d,e),us(t,d,e,n),h.applying&&(h.applying=!1),u(h.frames),null!=h.step&&h.step(e),d.completed()&&(a.splice(c,1),h.hooked=!1,h.playing=!1,h.started=!1,u(h.completes)),s=!0)}return n||0!==a.length||0!==o.length||r.push(t),s}for(var a=!1,o=0;o0?t.notify("draw",n):t.notify("draw")),n.unmerge(r),t.emit("step")}var ps={animate:Vi.animate(),animation:Vi.animation(),animated:Vi.animated(),clearQueue:Vi.clearQueue(),delay:Vi.delay(),delayAnimation:Vi.delayAnimation(),stop:Vi.stop(),addToAnimationPool:function(e){this.styleEnabled()&&this._private.aniEles.merge(e)},stopAnimationLoop:function(){this._private.animationsRunning=!1},startAnimationLoop:function(){var e=this;if(e._private.animationsRunning=!0,e.styleEnabled()){var t=e.renderer();t&&t.beforeRender?t.beforeRender((function(t,n){hs(n,e)}),t.beforeRenderPriorities.animations):function t(){e._private.animationsRunning&&be((function(n){hs(n,e),t()}))}()}}},fs={qualifierCompare:function(e,t){return null==e||null==t?null==e&&null==t:e.sameText(t)},eventMatches:function(e,t,n){var r=t.qualifier;return null==r||e!==n.target&&E(n.target)&&r.matches(n.target)},addEventFields:function(e,t){t.cy=e,t.target=e},callbackContext:function(e,t,n){return null!=t.qualifier?n.target:e}},gs=function(e){return g(e)?new Ea(e):e},vs={createEmitter:function(){var e=this._private;return e.emitter||(e.emitter=new bo(fs,this)),this},emitter:function(){return this._private.emitter},on:function(e,t,n){return this.emitter().on(e,gs(t),n),this},removeListener:function(e,t,n){return this.emitter().removeListener(e,gs(t),n),this},removeAllListeners:function(){return this.emitter().removeAllListeners(),this},one:function(e,t,n){return this.emitter().one(e,gs(t),n),this},once:function(e,t,n){return this.emitter().one(e,gs(t),n),this},emit:function(e,t){return this.emitter().emit(e,t),this},emitAndNotify:function(e,t){return this.emit(e),this.notify(e,t),this}};Vi.eventAliasesOn(vs);var ys={png:function(e){return e=e||{},this._private.renderer.png(e)},jpg:function(e){var t=this._private.renderer;return(e=e||{}).bg=e.bg||"#fff",t.jpg(e)}};ys.jpeg=ys.jpg;var ms={layout:function(e){if(null!=e)if(null!=e.name){var t=e.name,n=this.extension("layout",t);if(null!=n){var r;r=g(e.eles)?this.$(e.eles):null!=e.eles?e.eles:this.$();var i=new n(A({},e,{cy:this,eles:r}));return i}Re("No such layout `"+t+"` found. Did you forget to import it and `cytoscape.use()` it?")}else Re("A `name` must be specified to make a layout");else Re("Layout options must be specified to make a layout")}};ms.createLayout=ms.makeLayout=ms.layout;var bs={notify:function(e,t){var n=this._private;if(this.batching()){n.batchNotifications=n.batchNotifications||{};var r=n.batchNotifications[e]=n.batchNotifications[e]||this.collection();null!=t&&r.merge(t)}else if(n.notificationsEnabled){var i=this.renderer();!this.destroyed()&&i&&i.notify(e,t)}},notifications:function(e){var t=this._private;return void 0===e?t.notificationsEnabled:(t.notificationsEnabled=!!e,this)},noNotifications:function(e){this.notifications(!1),e(),this.notifications(!0)},batching:function(){return this._private.batchCount>0},startBatch:function(){var e=this._private;return null==e.batchCount&&(e.batchCount=0),0===e.batchCount&&(e.batchStyleEles=this.collection(),e.batchNotifications={}),e.batchCount++,this},endBatch:function(){var e=this._private;if(0===e.batchCount)return this;if(e.batchCount--,0===e.batchCount){e.batchStyleEles.updateStyle();var t=this.renderer();Object.keys(e.batchNotifications).forEach((function(n){var r=e.batchNotifications[n];r.empty()?t.notify(n):t.notify(n,r)}))}return this},batch:function(e){return this.startBatch(),e(),this.endBatch(),this},batchData:function(e){var t=this;return this.batch((function(){for(var n=Object.keys(e),r=0;r0;)e.removeChild(e.childNodes[0]);this._private.renderer=null,this.mutableElements().forEach((function(e){var t=e._private;t.rscratch={},t.rstyle={},t.animation.current=[],t.animation.queue=[]}))},onRender:function(e){return this.on("render",e)},offRender:function(e){return this.off("render",e)}};ws.invalidateDimensions=ws.resize;var Es={collection:function(e,t){return g(e)?this.$(e):w(e)?e.collection():y(e)?(t||(t={}),new es(this,e,t.unique,t.removed)):new es(this)},nodes:function(e){var t=this.$((function(e){return e.isNode()}));return e?t.filter(e):t},edges:function(e){var t=this.$((function(e){return e.isEdge()}));return e?t.filter(e):t},$:function(e){var t=this._private.elements;return e?t.filter(e):t.spawnSelf()},mutableElements:function(){return this._private.elements}};Es.elements=Es.filter=Es.$;var ks={};ks.apply=function(e){for(var t=this._private.cy.collection(),n=0;n0;if(d||c&&h){var p=void 0;d&&h||d?p=l.properties:h&&(p=l.mappedProperties);for(var f=0;f1&&(g=1),s.color){var w=i.valueMin[0],E=i.valueMax[0],k=i.valueMin[1],C=i.valueMax[1],S=i.valueMin[2],P=i.valueMax[2],D=null==i.valueMin[3]?1:i.valueMin[3],T=null==i.valueMax[3]?1:i.valueMax[3],_=[Math.round(w+(E-w)*g),Math.round(k+(C-k)*g),Math.round(S+(P-S)*g),Math.round(D+(T-D)*g)];n={bypass:i.bypass,name:i.name,value:_,strValue:"rgb("+_[0]+", "+_[1]+", "+_[2]+")"}}else{if(!s.number)return!1;var M=i.valueMin+(i.valueMax-i.valueMin)*g;n=this.parse(i.name,M,i.bypass,"mapping")}if(!n)return f(),!1;n.mapping=i,i=n;break;case o.data:for(var B=i.field.split("."),N=d.data,z=0;z0&&a>0){for(var s={},l=!1,u=0;u0?e.delayAnimation(o).play().promise().then(t):t()})).then((function(){return e.animation({style:s,duration:a,easing:e.pstyle("transition-timing-function").value,queue:!1}).play().promise()})).then((function(){n.removeBypasses(e,i),e.emitAndNotify("style"),r.transitioning=!1}))}else r.transitioning&&(this.removeBypasses(e,i),e.emitAndNotify("style"),r.transitioning=!1)},ks.checkTrigger=function(e,t,n,r,i,a){var o=this.properties[t],s=i(o);null!=s&&s(n,r)&&a(o)},ks.checkZOrderTrigger=function(e,t,n,r){var i=this;this.checkTrigger(e,t,n,r,(function(e){return e.triggersZOrder}),(function(){i._private.cy.notify("zorder",e)}))},ks.checkBoundsTrigger=function(e,t,n,r){this.checkTrigger(e,t,n,r,(function(e){return e.triggersBounds}),(function(i){e.dirtyCompoundBoundsCache(),e.dirtyBoundingBoxCache(),!i.triggersBoundsOfParallelBeziers||"curve-style"!==t||"bezier"!==n&&"bezier"!==r||e.parallelEdges().forEach((function(e){e.isBundledBezier()&&e.dirtyBoundingBoxCache()})),!i.triggersBoundsOfConnectedEdges||"display"!==t||"none"!==n&&"none"!==r||e.connectedEdges().forEach((function(e){e.dirtyBoundingBoxCache()}))}))},ks.checkTriggers=function(e,t,n,r){e.dirtyStyleCache(),this.checkZOrderTrigger(e,t,n,r),this.checkBoundsTrigger(e,t,n,r)};var Cs={applyBypass:function(e,t,n,r){var i=[];if("*"===t||"**"===t){if(void 0!==n)for(var a=0;at.length?i.substr(t.length):""}function o(){n=n.length>r.length?n.substr(r.length):""}for(i=i.replace(/[/][*](\s|.)+?[*][/]/g,"");;){if(i.match(/^\s*$/))break;var s=i.match(/^\s*((?:.|\s)+?)\s*\{((?:.|\s)+?)\}/);if(!s){Fe("Halting stylesheet parsing: String stylesheet contains more to parse but no selector and block found in: "+i);break}t=s[0];var l=s[1];if("core"!==l)if(new Ea(l).invalid){Fe("Skipping parsing of block: Invalid selector found in string stylesheet: "+l),a();continue}var u=s[2],c=!1;n=u;for(var d=[];;){if(n.match(/^\s*$/))break;var h=n.match(/^\s*(.+?)\s*:\s*(.+?)(?:\s*;|\s*$)/);if(!h){Fe("Skipping parsing of block: Invalid formatting of style property and value definitions found in:"+u),c=!0;break}r=h[0];var p=h[1],f=h[2];if(this.properties[p])this.parse(p,f)?(d.push({name:p,val:f}),o()):(Fe("Skipping property: Invalid property definition in: "+r),o());else Fe("Skipping property: Invalid property name in: "+r),o()}if(c){a();break}this.selector(l);for(var g=0;g=7&&"d"===t[0]&&(l=new RegExp(o.data.regex).exec(t))){if(n)return!1;var d=o.data;return{name:e,value:l,strValue:""+t,mapped:d,field:l[1],bypass:n}}if(t.length>=10&&"m"===t[0]&&(u=new RegExp(o.mapData.regex).exec(t))){if(n)return!1;if(c.multiple)return!1;var h=o.mapData;if(!c.color&&!c.number)return!1;var p=this.parse(e,u[4]);if(!p||p.mapped)return!1;var f=this.parse(e,u[5]);if(!f||f.mapped)return!1;if(p.pfValue===f.pfValue||p.strValue===f.strValue)return Fe("`"+e+": "+t+"` is not a valid mapper because the output range is zero; converting to `"+e+": "+p.strValue+"`"),this.parse(e,p.strValue);if(c.color){var m=p.value,x=f.value;if(!(m[0]!==x[0]||m[1]!==x[1]||m[2]!==x[2]||m[3]!==x[3]&&(null!=m[3]&&1!==m[3]||null!=x[3]&&1!==x[3])))return!1}return{name:e,value:u,strValue:""+t,mapped:h,field:u[1],fieldMin:parseFloat(u[2]),fieldMax:parseFloat(u[3]),valueMin:p.value,valueMax:f.value,bypass:n}}}if(c.multiple&&"multiple"!==r){var w;if(w=s?t.split(/\s+/):y(t)?t:[t],c.evenMultiple&&w.length%2!=0)return null;for(var E=[],k=[],C=[],S="",P=!1,D=0;D0?" ":"")+T.strValue}return c.validate&&!c.validate(E,k)?null:c.singleEnum&&P?1===E.length&&g(E[0])?{name:e,value:E[0],strValue:E[0],bypass:n}:null:{name:e,value:E,pfValue:C,strValue:S,bypass:n,units:k}}var M,B,N=function(){for(var r=0;rc.max||c.strictMax&&t===c.max))return null;var V={name:e,value:t,strValue:""+t+(I||""),units:I,bypass:n};return c.unitless||"px"!==I&&"em"!==I?V.pfValue=t:V.pfValue="px"!==I&&I?this.getEmSizeInPixels()*t:t,"ms"!==I&&"s"!==I||(V.pfValue="ms"===I?t:1e3*t),"deg"!==I&&"rad"!==I||(V.pfValue="rad"===I?t:(M=t,Math.PI*M/180)),"%"===I&&(V.pfValue=t/100),V}if(c.propList){var F=[],j=""+t;if("none"===j);else{for(var q=j.split(/\s*,\s*|\s+/),Y=0;Y0&&l>0&&!isNaN(n.w)&&!isNaN(n.h)&&n.w>0&&n.h>0)return{zoom:o=(o=(o=Math.min((s-2*t)/n.w,(l-2*t)/n.h))>this._private.maxZoom?this._private.maxZoom:o)=n.minZoom&&(n.maxZoom=t),this},minZoom:function(e){return void 0===e?this._private.minZoom:this.zoomRange({min:e})},maxZoom:function(e){return void 0===e?this._private.maxZoom:this.zoomRange({max:e})},getZoomedViewport:function(e){var t,n,r=this._private,i=r.pan,a=r.zoom,o=!1;if(r.zoomingEnabled||(o=!0),b(e)?n=e:m(e)&&(n=e.level,null!=e.position?t=vt(e.position,a,i):null!=e.renderedPosition&&(t=e.renderedPosition),null==t||r.panningEnabled||(o=!0)),n=(n=n>r.maxZoom?r.maxZoom:n)t.maxZoom||!t.zoomingEnabled?a=!0:(t.zoom=s,i.push("zoom"))}if(r&&(!a||!e.cancelOnFailedZoom)&&t.panningEnabled){var l=e.pan;b(l.x)&&(t.pan.x=l.x,o=!1),b(l.y)&&(t.pan.y=l.y,o=!1),o||i.push("pan")}return i.length>0&&(i.push("viewport"),this.emit(i.join(" ")),this.notify("viewport")),this},center:function(e){var t=this.getCenterPan(e);return t&&(this._private.pan=t,this.emit("pan viewport"),this.notify("viewport")),this},getCenterPan:function(e,t){if(this._private.panningEnabled){if(g(e)){var n=e;e=this.mutableElements().filter(n)}else w(e)||(e=this.mutableElements());if(0!==e.length){var r=e.boundingBox(),i=this.width(),a=this.height();return{x:(i-(t=void 0===t?this._private.zoom:t)*(r.x1+r.x2))/2,y:(a-t*(r.y1+r.y2))/2}}}},reset:function(){return this._private.panningEnabled&&this._private.zoomingEnabled?(this.viewport({pan:{x:0,y:0},zoom:1}),this):this},invalidateSize:function(){this._private.sizeCache=null},size:function(){var e,t,n=this._private,r=n.container,i=this;return n.sizeCache=n.sizeCache||(r?(e=i.window().getComputedStyle(r),t=function(t){return parseFloat(e.getPropertyValue(t))},{width:r.clientWidth-t("padding-left")-t("padding-right"),height:r.clientHeight-t("padding-top")-t("padding-bottom")}):{width:1,height:1})},width:function(){return this.size().width},height:function(){return this.size().height},extent:function(){var e=this._private.pan,t=this._private.zoom,n=this.renderedExtent(),r={x1:(n.x1-e.x)/t,x2:(n.x2-e.x)/t,y1:(n.y1-e.y)/t,y2:(n.y2-e.y)/t};return r.w=r.x2-r.x1,r.h=r.y2-r.y1,r},renderedExtent:function(){var e=this.width(),t=this.height();return{x1:0,y1:0,x2:e,y2:t,w:e,h:t}},multiClickDebounceTime:function(e){return e?(this._private.multiClickDebounceTime=e,this):this._private.multiClickDebounceTime}};Is.centre=Is.center,Is.autolockNodes=Is.autolock,Is.autoungrabifyNodes=Is.autoungrabify;var As={data:Vi.data({field:"data",bindingEvent:"data",allowBinding:!0,allowSetting:!0,settingEvent:"data",settingTriggersEvent:!0,triggerFnName:"trigger",allowGetting:!0,updateStyle:!0}),removeData:Vi.removeData({field:"data",event:"data",triggerFnName:"trigger",triggerEvent:!0,updateStyle:!0}),scratch:Vi.data({field:"scratch",bindingEvent:"scratch",allowBinding:!0,allowSetting:!0,settingEvent:"scratch",settingTriggersEvent:!0,triggerFnName:"trigger",allowGetting:!0,updateStyle:!0}),removeScratch:Vi.removeData({field:"scratch",event:"scratch",triggerFnName:"trigger",triggerEvent:!0,updateStyle:!0})};As.attr=As.data,As.removeAttr=As.removeData;var Ls=function(e){var t=this,n=(e=A({},e)).container;n&&!x(n)&&x(n[0])&&(n=n[0]);var r=n?n._cyreg:null;(r=r||{})&&r.cy&&(r.cy.destroy(),r={});var i=r.readies=r.readies||[];n&&(n._cyreg=r),r.cy=t;var a=void 0!==l&&void 0!==n&&!e.headless,o=e;o.layout=A({name:a?"grid":"null"},o.layout),o.renderer=A({name:a?"canvas":"null"},o.renderer);var s=function(e,t,n){return void 0!==t?t:void 0!==n?n:e},u=this._private={container:n,ready:!1,options:o,elements:new es(this),listeners:[],aniEles:new es(this),data:o.data||{},scratch:{},layout:null,renderer:null,destroyed:!1,notificationsEnabled:!0,minZoom:1e-50,maxZoom:1e50,zoomingEnabled:s(!0,o.zoomingEnabled),userZoomingEnabled:s(!0,o.userZoomingEnabled),panningEnabled:s(!0,o.panningEnabled),userPanningEnabled:s(!0,o.userPanningEnabled),boxSelectionEnabled:s(!0,o.boxSelectionEnabled),autolock:s(!1,o.autolock,o.autolockNodes),autoungrabify:s(!1,o.autoungrabify,o.autoungrabifyNodes),autounselectify:s(!1,o.autounselectify),styleEnabled:void 0===o.styleEnabled?a:o.styleEnabled,zoom:b(o.zoom)?o.zoom:1,pan:{x:m(o.pan)&&b(o.pan.x)?o.pan.x:0,y:m(o.pan)&&b(o.pan.y)?o.pan.y:0},animation:{current:[],queue:[]},hasCompoundNodes:!1,multiClickDebounceTime:s(250,o.multiClickDebounceTime)};this.createEmitter(),this.selectionType(o.selectionType),this.zoomRange({min:o.minZoom,max:o.maxZoom});u.styleEnabled&&t.setStyle([]);var c=A({},o,o.renderer);t.initRenderer(c);!function(e,t){if(e.some(D))return gr.all(e).then(t);t(e)}([o.style,o.elements],(function(e){var n=e[0],a=e[1];u.styleEnabled&&t.style().append(n),function(e,n,r){t.notifications(!1);var i=t.mutableElements();i.length>0&&i.remove(),null!=e&&(m(e)||y(e))&&t.add(e),t.one("layoutready",(function(e){t.notifications(!0),t.emit(e),t.one("load",n),t.emitAndNotify("load")})).one("layoutstop",(function(){t.one("done",r),t.emit("done")}));var a=A({},t._private.options.layout);a.eles=t.elements(),t.layout(a).run()}(a,(function(){t.startAnimationLoop(),u.ready=!0,v(o.ready)&&t.on("ready",o.ready);for(var e=0;e0,u=Tt(n.boundingBox?n.boundingBox:{x1:0,y1:0,w:r.width(),h:r.height()});if(w(n.roots))e=n.roots;else if(y(n.roots)){for(var c=[],d=0;d0;){var N=_.shift(),z=T(N,M);if(z)N.outgoers().filter((function(e){return e.isNode()&&i.has(e)})).forEach(B);else if(null===z){Fe("Detected double maximal shift for node `"+N.id()+"`. Bailing maximal adjustment due to cycle. Use `options.maximal: true` only on DAGs.");break}}}D();var A=0;if(n.avoidOverlap)for(var L=0;L0&&b[0].length<=3?l/2:0),d=2*Math.PI/b[r].length*i;return 0===r&&1===b[0].length&&(c=1),{x:G+c*Math.cos(d),y:U+c*Math.sin(d)}}return{x:G+(i+1-(a+1)/2)*o,y:(r+1)*s}})),this};var Ys={fit:!0,padding:30,boundingBox:void 0,avoidOverlap:!0,nodeDimensionsIncludeLabels:!1,spacingFactor:void 0,radius:void 0,startAngle:1.5*Math.PI,sweep:void 0,clockwise:!0,sort:void 0,animate:!1,animationDuration:500,animationEasing:void 0,animateFilter:function(e,t){return!0},ready:void 0,stop:void 0,transform:function(e,t){return t}};function Xs(e){this.options=A({},Ys,e)}Xs.prototype.run=function(){var e=this.options,t=e,n=e.cy,r=t.eles,i=void 0!==t.counterclockwise?!t.counterclockwise:t.clockwise,a=r.nodes().not(":parent");t.sort&&(a=a.sort(t.sort));for(var o,s=Tt(t.boundingBox?t.boundingBox:{x1:0,y1:0,w:n.width(),h:n.height()}),l=s.x1+s.w/2,u=s.y1+s.h/2,c=(void 0===t.sweep?2*Math.PI-2*Math.PI/a.length:t.sweep)/Math.max(1,a.length-1),d=0,h=0;h1&&t.avoidOverlap){d*=1.75;var v=Math.cos(c)-Math.cos(0),y=Math.sin(c)-Math.sin(0),m=Math.sqrt(d*d/(v*v+y*y));o=Math.max(m,o)}return r.nodes().layoutPositions(this,t,(function(e,n){var r=t.startAngle+n*c*(i?1:-1),a=o*Math.cos(r),s=o*Math.sin(r);return{x:l+a,y:u+s}})),this};var Ws,Hs={fit:!0,padding:30,startAngle:1.5*Math.PI,sweep:void 0,clockwise:!0,equidistant:!1,minNodeSpacing:10,boundingBox:void 0,avoidOverlap:!0,nodeDimensionsIncludeLabels:!1,height:void 0,width:void 0,spacingFactor:void 0,concentric:function(e){return e.degree()},levelWidth:function(e){return e.maxDegree()/4},animate:!1,animationDuration:500,animationEasing:void 0,animateFilter:function(e,t){return!0},ready:void 0,stop:void 0,transform:function(e,t){return t}};function Ks(e){this.options=A({},Hs,e)}Ks.prototype.run=function(){for(var e=this.options,t=e,n=void 0!==t.counterclockwise?!t.counterclockwise:t.clockwise,r=e.cy,i=t.eles,a=i.nodes().not(":parent"),o=Tt(t.boundingBox?t.boundingBox:{x1:0,y1:0,w:r.width(),h:r.height()}),s=o.x1+o.w/2,l=o.y1+o.h/2,u=[],c=0,d=0;d0)Math.abs(m[0].value-x.value)>=v&&(m=[],y.push(m));m.push(x)}var w=c+t.minNodeSpacing;if(!t.avoidOverlap){var E=y.length>0&&y[0].length>1,k=(Math.min(o.w,o.h)/2-w)/(y.length+E?1:0);w=Math.min(w,k)}for(var C=0,S=0;S1&&t.avoidOverlap){var _=Math.cos(T)-Math.cos(0),M=Math.sin(T)-Math.sin(0),B=Math.sqrt(w*w/(_*_+M*M));C=Math.max(B,C)}P.r=C,C+=w}if(t.equidistant){for(var N=0,z=0,I=0;I=e.numIter)&&(nl(r,e),r.temperature=r.temperature*e.coolingFactor,!(r.temperature=e.animationThreshold&&a(),be(t)):(fl(r,e),s())}()}else{for(;u;)u=o(l),l++;fl(r,e),s()}return this},Us.prototype.stop=function(){return this.stopped=!0,this.thread&&this.thread.stop(),this.emit("layoutstop"),this},Us.prototype.destroy=function(){return this.thread&&this.thread.stop(),this};var Zs=function(e,t,n){for(var r=n.eles.edges(),i=n.eles.nodes(),a=Tt(n.boundingBox?n.boundingBox:{x1:0,y1:0,w:e.width(),h:e.height()}),o={isCompound:e.hasCompoundNodes(),layoutNodes:[],idToIndex:{},nodeSize:i.size(),graphSet:[],indexToGraph:[],layoutEdges:[],edgeSize:r.size(),temperature:n.initialTemp,clientWidth:a.w,clientHeight:a.h,boundingBox:a},s=n.eles.components(),l={},u=0;u0){o.graphSet.push(E);for(u=0;ur.count?0:r.graph},Qs=function e(t,n,r,i){var a=i.graphSet[r];if(-10)var s=(u=r.nodeOverlap*o)*i/(g=Math.sqrt(i*i+a*a)),l=u*a/g;else{var u,c=sl(e,i,a),d=sl(t,-1*i,-1*a),h=d.x-c.x,p=d.y-c.y,f=h*h+p*p,g=Math.sqrt(f);s=(u=(e.nodeRepulsion+t.nodeRepulsion)/f)*h/g,l=u*p/g}e.isLocked||(e.offsetX-=s,e.offsetY-=l),t.isLocked||(t.offsetX+=s,t.offsetY+=l)}},ol=function(e,t,n,r){if(n>0)var i=e.maxX-t.minX;else i=t.maxX-e.minX;if(r>0)var a=e.maxY-t.minY;else a=t.maxY-e.minY;return i>=0&&a>=0?Math.sqrt(i*i+a*a):0},sl=function(e,t,n){var r=e.positionX,i=e.positionY,a=e.height||1,o=e.width||1,s=n/t,l=a/o,u={};return 0===t&&0n?(u.x=r,u.y=i+a/2,u):0t&&-1*l<=s&&s<=l?(u.x=r-o/2,u.y=i-o*n/2/t,u):0=l)?(u.x=r+a*t/2/n,u.y=i+a/2,u):0>n&&(s<=-1*l||s>=l)?(u.x=r-a*t/2/n,u.y=i-a/2,u):u},ll=function(e,t){for(var n=0;n1){var f=t.gravity*d/p,g=t.gravity*h/p;c.offsetX+=f,c.offsetY+=g}}}}},cl=function(e,t){var n=[],r=0,i=-1;for(n.push.apply(n,e.graphSet[0]),i+=e.graphSet[0].length;r<=i;){var a=n[r++],o=e.idToIndex[a],s=e.layoutNodes[o],l=s.children;if(0n)var i={x:n*e/r,y:n*t/r};else i={x:e,y:t};return i},pl=function e(t,n){var r=t.parentId;if(null!=r){var i=n.layoutNodes[n.idToIndex[r]],a=!1;return(null==i.maxX||t.maxX+i.padRight>i.maxX)&&(i.maxX=t.maxX+i.padRight,a=!0),(null==i.minX||t.minX-i.padLefti.maxY)&&(i.maxY=t.maxY+i.padBottom,a=!0),(null==i.minY||t.minY-i.padTopf&&(d+=p+t.componentSpacing,c=0,h=0,p=0)}}},gl={fit:!0,padding:30,boundingBox:void 0,avoidOverlap:!0,avoidOverlapPadding:10,nodeDimensionsIncludeLabels:!1,spacingFactor:void 0,condense:!1,rows:void 0,cols:void 0,position:function(e){},sort:void 0,animate:!1,animationDuration:500,animationEasing:void 0,animateFilter:function(e,t){return!0},ready:void 0,stop:void 0,transform:function(e,t){return t}};function vl(e){this.options=A({},gl,e)}vl.prototype.run=function(){var e=this.options,t=e,n=e.cy,r=t.eles,i=r.nodes().not(":parent");t.sort&&(i=i.sort(t.sort));var a=Tt(t.boundingBox?t.boundingBox:{x1:0,y1:0,w:n.width(),h:n.height()});if(0===a.h||0===a.w)r.nodes().layoutPositions(this,t,(function(e){return{x:a.x1,y:a.y1}}));else{var o=i.size(),s=Math.sqrt(o*a.h/a.w),l=Math.round(s),u=Math.round(a.w/a.h*s),c=function(e){if(null==e)return Math.min(l,u);Math.min(l,u)==l?l=e:u=e},d=function(e){if(null==e)return Math.max(l,u);Math.max(l,u)==l?l=e:u=e},h=t.rows,p=null!=t.cols?t.cols:t.columns;if(null!=h&&null!=p)l=h,u=p;else if(null!=h&&null==p)l=h,u=Math.ceil(o/l);else if(null==h&&null!=p)u=p,l=Math.ceil(o/u);else if(u*l>o){var f=c(),g=d();(f-1)*g>=o?c(f-1):(g-1)*f>=o&&d(g-1)}else for(;u*l=o?d(y+1):c(v+1)}var m=a.w/u,b=a.h/l;if(t.condense&&(m=0,b=0),t.avoidOverlap)for(var x=0;x=u&&(B=0,M++)},z={},I=0;I(r=jt(e,t,x[w],x[w+1],x[w+2],x[w+3])))return v(n,r),!0}else if("bezier"===a.edgeType||"multibezier"===a.edgeType||"self"===a.edgeType||"compound"===a.edgeType)for(x=a.allpts,w=0;w+5(r=Ft(e,t,x[w],x[w+1],x[w+2],x[w+3],x[w+4],x[w+5])))return v(n,r),!0;m=m||i.source,b=b||i.target;var E=o.getArrowWidth(l,c),k=[{name:"source",x:a.arrowStartX,y:a.arrowStartY,angle:a.srcArrowAngle},{name:"target",x:a.arrowEndX,y:a.arrowEndY,angle:a.tgtArrowAngle},{name:"mid-source",x:a.midX,y:a.midY,angle:a.midsrcArrowAngle},{name:"mid-target",x:a.midX,y:a.midY,angle:a.midtgtArrowAngle}];for(w=0;w0&&(y(m),y(b))}function b(e,t,n){return Ge(e,t,n)}function x(n,r){var i,a=n._private,o=f;i=r?r+"-":"",n.boundingBox();var s=a.labelBounds[r||"main"],l=n.pstyle(i+"label").value;if("yes"===n.pstyle("text-events").strValue&&l){var u=b(a.rscratch,"labelX",r),c=b(a.rscratch,"labelY",r),d=b(a.rscratch,"labelAngle",r),h=n.pstyle(i+"text-margin-x").pfValue,p=n.pstyle(i+"text-margin-y").pfValue,g=s.x1-o-h,y=s.x2+o-h,m=s.y1-o-p,x=s.y2+o-p;if(d){var w=Math.cos(d),E=Math.sin(d),k=function(e,t){return{x:(e-=u)*w-(t-=c)*E+u,y:e*E+t*w+c}},C=k(g,m),S=k(g,x),P=k(y,m),D=k(y,x),T=[C.x+h,C.y+p,P.x+h,P.y+p,D.x+h,D.y+p,S.x+h,S.y+p];if(qt(e,t,T))return v(n),!0}else if(At(s,e,t))return v(n),!0}}n&&(l=l.interactive);for(var w=l.length-1;w>=0;w--){var E=l[w];E.isNode()?y(E)||x(E):m(E)||x(E)||x(E,"source")||x(E,"target")}return u},getAllInBox:function(e,t,n,r){for(var i,a,o=this.getCachedZSortedEles().interactive,s=[],l=Math.min(e,n),u=Math.max(e,n),c=Math.min(t,r),d=Math.max(t,r),h=Tt({x1:e=l,y1:t=c,x2:n=u,y2:r=d}),p=0;p0?-(Math.PI-a.ang):Math.PI+a.ang),Ul(t,n,Gl),Nl=Kl.nx*Gl.ny-Kl.ny*Gl.nx,zl=Kl.nx*Gl.nx-Kl.ny*-Gl.ny,Ll=Math.asin(Math.max(-1,Math.min(1,Nl))),Math.abs(Ll)<1e-6)return Ml=t.x,Bl=t.y,void(Rl=Fl=0);Il=1,Al=!1,zl<0?Ll<0?Ll=Math.PI+Ll:(Ll=Math.PI-Ll,Il=-1,Al=!0):Ll>0&&(Il=-1,Al=!0),Fl=void 0!==t.radius?t.radius:r,Ol=Ll/2,jl=Math.min(Kl.len/2,Gl.len/2),i?(Vl=Math.abs(Math.cos(Ol)*Fl/Math.sin(Ol)))>jl?(Vl=jl,Rl=Math.abs(Vl*Math.sin(Ol)/Math.cos(Ol))):Rl=Fl:(Vl=Math.min(jl,Fl),Rl=Math.abs(Vl*Math.sin(Ol)/Math.cos(Ol))),Xl=t.x+Gl.nx*Vl,Wl=t.y+Gl.ny*Vl,Ml=Xl-Gl.ny*Rl*Il,Bl=Wl+Gl.nx*Rl*Il,ql=t.x+Kl.nx*Vl,Yl=t.y+Kl.ny*Vl,Hl=t};function $l(e,t){0===t.radius?e.lineTo(t.cx,t.cy):e.arc(t.cx,t.cy,t.radius,t.startAngle,t.endAngle,t.counterClockwise)}function Ql(e,t,n,r){var i=!(arguments.length>4&&void 0!==arguments[4])||arguments[4];return 0===r||0===t.radius?{cx:t.x,cy:t.y,radius:0,startX:t.x,startY:t.y,stopX:t.x,stopY:t.y,startAngle:void 0,endAngle:void 0,counterClockwise:void 0}:(Zl(e,t,n,r,i),{cx:Ml,cy:Bl,radius:Rl,startX:ql,startY:Yl,stopX:Xl,stopY:Wl,startAngle:Kl.ang+Math.PI/2*Il,endAngle:Gl.ang-Math.PI/2*Il,counterClockwise:Al})}var Jl={};function eu(e){var t=[];if(null!=e){for(var n=0;n0?Math.max(e-t,0):Math.min(e+t,0)},w=x(m,v),E=x(b,y),k=!1;"auto"===c?u=Math.abs(w)>Math.abs(E)?"horizontal":"vertical":"upward"===c||"downward"===c?(u="vertical",k=!0):"leftward"!==c&&"rightward"!==c||(u="horizontal",k=!0);var C,S="vertical"===u,P=S?E:w,D=S?b:m,T=wt(D),_=!1;(k&&(h||f)||!("downward"===c&&D<0||"upward"===c&&D>0||"leftward"===c&&D>0||"rightward"===c&&D<0)||(P=(T*=-1)*Math.abs(P),_=!0),h)?C=(p<0?1+p:p)*P:C=(p<0?P:0)+p*T;var M=function(e){return Math.abs(e)=Math.abs(P)},B=M(C),N=M(Math.abs(P)-Math.abs(C));if((B||N)&&!_)if(S){var z=Math.abs(D)<=a/2,I=Math.abs(m)<=o/2;if(z){var A=(r.x1+r.x2)/2,L=r.y1,O=r.y2;n.segpts=[A,L,A,O]}else if(I){var R=(r.y1+r.y2)/2,V=r.x1,F=r.x2;n.segpts=[V,R,F,R]}else n.segpts=[r.x1,r.y2]}else{var j=Math.abs(D)<=i/2,q=Math.abs(b)<=s/2;if(j){var Y=(r.y1+r.y2)/2,X=r.x1,W=r.x2;n.segpts=[X,Y,W,Y]}else if(q){var H=(r.x1+r.x2)/2,K=r.y1,G=r.y2;n.segpts=[H,K,H,G]}else n.segpts=[r.x2,r.y1]}else if(S){var U=r.y1+C+(l?a/2*T:0),Z=r.x1,$=r.x2;n.segpts=[Z,U,$,U]}else{var Q=r.x1+C+(l?i/2*T:0),J=r.y1,ee=r.y2;n.segpts=[Q,J,Q,ee]}if(n.isRound){var te=e.pstyle("taxi-radius").value,ne="arc-radius"===e.pstyle("radius-type").value[0];n.radii=new Array(n.segpts.length/2).fill(te),n.isArcRadius=new Array(n.segpts.length/2).fill(ne)}},Jl.tryToCorrectInvalidPoints=function(e,t){var n=e._private.rscratch;if("bezier"===n.edgeType){var r=t.srcPos,i=t.tgtPos,a=t.srcW,o=t.srcH,s=t.tgtW,l=t.tgtH,u=t.srcShape,c=t.tgtShape,d=t.srcCornerRadius,h=t.tgtCornerRadius,p=t.srcRs,f=t.tgtRs,g=!b(n.startX)||!b(n.startY),v=!b(n.arrowStartX)||!b(n.arrowStartY),y=!b(n.endX)||!b(n.endY),m=!b(n.arrowEndX)||!b(n.arrowEndY),x=3*(this.getArrowWidth(e.pstyle("width").pfValue,e.pstyle("arrow-scale").value)*this.arrowShapeWidth),w=Et({x:n.ctrlpts[0],y:n.ctrlpts[1]},{x:n.startX,y:n.startY}),E=wh.poolIndex()){var p=d;d=h,h=p}var f=s.srcPos=d.position(),g=s.tgtPos=h.position(),v=s.srcW=d.outerWidth(),y=s.srcH=d.outerHeight(),m=s.tgtW=h.outerWidth(),x=s.tgtH=h.outerHeight(),w=s.srcShape=n.nodeShapes[t.getNodeShape(d)],E=s.tgtShape=n.nodeShapes[t.getNodeShape(h)],k=s.srcCornerRadius="auto"===d.pstyle("corner-radius").value?"auto":d.pstyle("corner-radius").pfValue,C=s.tgtCornerRadius="auto"===h.pstyle("corner-radius").value?"auto":h.pstyle("corner-radius").pfValue,S=s.tgtRs=h._private.rscratch,P=s.srcRs=d._private.rscratch;s.dirCounts={north:0,west:0,south:0,east:0,northwest:0,southwest:0,northeast:0,southeast:0};for(var D=0;D0){var H=u,K=kt(H,mt(t)),G=kt(H,mt(W)),U=K;if(G2)kt(H,{x:W[2],y:W[3]})0){var le=c,ue=kt(le,mt(t)),ce=kt(le,mt(se)),de=ue;if(ce2)kt(le,{x:se[2],y:se[3]})=c||b){d={cp:v,segment:m};break}}if(d)break}var x=d.cp,w=d.segment,E=(c-p)/w.length,k=w.t1-w.t0,C=u?w.t0+k*E:w.t1-k*E;C=Dt(0,C,1),t=Pt(x.p0,x.p1,x.p2,C),l=function(e,t,n,r){var i=Dt(0,r-.001,1),a=Dt(0,r+.001,1),o=Pt(e,t,n,i),s=Pt(e,t,n,a);return ou(o,s)}(x.p0,x.p1,x.p2,C);break;case"straight":case"segments":case"haystack":for(var S,P,D,T,_=0,M=r.allpts.length,B=0;B+3=c));B+=2);var N=(c-P)/S;N=Dt(0,N,1),t=function(e,t,n,r){var i=t.x-e.x,a=t.y-e.y,o=Et(e,t),s=i/o,l=a/o;return n=null==n?0:n,r=null!=r?r:n*o,{x:e.x+s*r,y:e.y+l*r}}(D,T,N),l=ou(D,T)}o("labelX",s,t.x),o("labelY",s,t.y),o("labelAutoAngle",s,l)}};l("source"),l("target"),this.applyLabelDimensions(e)}},iu.applyLabelDimensions=function(e){this.applyPrefixedLabelDimensions(e),e.isEdge()&&(this.applyPrefixedLabelDimensions(e,"source"),this.applyPrefixedLabelDimensions(e,"target"))},iu.applyPrefixedLabelDimensions=function(e,t){var n=e._private,r=this.getLabelText(e,t),i=this.calculateLabelDimensions(e,r),a=e.pstyle("line-height").pfValue,o=e.pstyle("text-wrap").strValue,s=Ge(n.rscratch,"labelWrapCachedLines",t)||[],l="wrap"!==o?1:Math.max(s.length,1),u=i.height/l,c=u*a,d=i.width,h=i.height+(l-1)*(a-1)*u;Ue(n.rstyle,"labelWidth",t,d),Ue(n.rscratch,"labelWidth",t,d),Ue(n.rstyle,"labelHeight",t,h),Ue(n.rscratch,"labelHeight",t,h),Ue(n.rscratch,"labelLineHeight",t,c)},iu.getLabelText=function(e,t){var n=e._private,r=t?t+"-":"",i=e.pstyle(r+"label").strValue,a=e.pstyle("text-transform").value,o=function(e,r){return r?(Ue(n.rscratch,e,t,r),r):Ge(n.rscratch,e,t)};if(!i)return"";"none"==a||("uppercase"==a?i=i.toUpperCase():"lowercase"==a&&(i=i.toLowerCase()));var s=e.pstyle("text-wrap").value;if("wrap"===s){var l=o("labelKey");if(null!=l&&o("labelWrapKey")===l)return o("labelWrapCachedText");for(var u=i.split("\n"),c=e.pstyle("text-max-width").pfValue,d="anywhere"===e.pstyle("text-overflow-wrap").value,h=[],p=/[\s\u200b]+/,f=d?"":" ",g=0;gc){for(var b=v.split(p),x="",w=0;wC)break;S+=i[D],D===i.length-1&&(P=!0)}return P||(S+="…"),S}return i},iu.getLabelJustification=function(e){var t=e.pstyle("text-justification").strValue,n=e.pstyle("text-halign").strValue;if("auto"!==t)return t;if(!e.isNode())return"center";switch(n){case"left":return"right";case"right":return"left";default:return"center"}},iu.calculateLabelDimensions=function(e,t){var n=De(t,e._private.labelDimsKey),r=this.labelDimCache||(this.labelDimCache=[]),i=r[n];if(null!=i)return i;var a=e.pstyle("font-style").strValue,o=e.pstyle("font-size").pfValue,s=e.pstyle("font-family").strValue,l=e.pstyle("font-weight").strValue,u=this.labelCalcCanvas,c=this.labelCalcCanvasContext;if(!u){u=this.labelCalcCanvas=document.createElement("canvas"),c=this.labelCalcCanvasContext=u.getContext("2d");var d=u.style;d.position="absolute",d.left="-9999px",d.top="-9999px",d.zIndex="-1",d.visibility="hidden",d.pointerEvents="none"}c.font="".concat(a," ").concat(l," ").concat(o,"px ").concat(s);for(var h=0,p=0,f=t.split("\n"),g=0;g1&&void 0!==arguments[1])||arguments[1];if(t.merge(e),n)for(var r=0;r=e.desktopTapThreshold2}var D=i(t);v&&(e.hoverData.tapholdCancelled=!0);n=!0,r(g,["mousemove","vmousemove","tapdrag"],t,{x:c[0],y:c[1]});var T=function(){e.data.bgActivePosistion=void 0,e.hoverData.selecting||o.emit({originalEvent:t,type:"boxstart",position:{x:c[0],y:c[1]}}),f[4]=1,e.hoverData.selecting=!0,e.redrawHint("select",!0),e.redraw()};if(3===e.hoverData.which){if(v){var _={originalEvent:t,type:"cxtdrag",position:{x:c[0],y:c[1]}};m?m.emit(_):o.emit(_),e.hoverData.cxtDragged=!0,e.hoverData.cxtOver&&g===e.hoverData.cxtOver||(e.hoverData.cxtOver&&e.hoverData.cxtOver.emit({originalEvent:t,type:"cxtdragout",position:{x:c[0],y:c[1]}}),e.hoverData.cxtOver=g,g&&g.emit({originalEvent:t,type:"cxtdragover",position:{x:c[0],y:c[1]}}))}}else if(e.hoverData.dragging){if(n=!0,o.panningEnabled()&&o.userPanningEnabled()){var M;if(e.hoverData.justStartedPan){var B=e.hoverData.mdownPos;M={x:(c[0]-B[0])*s,y:(c[1]-B[1])*s},e.hoverData.justStartedPan=!1}else M={x:x[0]*s,y:x[1]*s};o.panBy(M),o.emit("dragpan"),e.hoverData.dragged=!0}c=e.projectIntoViewport(t.clientX,t.clientY)}else if(1!=f[4]||null!=m&&!m.pannable()){if(m&&m.pannable()&&m.active()&&m.unactivate(),m&&m.grabbed()||g==y||(y&&r(y,["mouseout","tapdragout"],t,{x:c[0],y:c[1]}),g&&r(g,["mouseover","tapdragover"],t,{x:c[0],y:c[1]}),e.hoverData.last=g),m)if(v){if(o.boxSelectionEnabled()&&D)m&&m.grabbed()&&(d(w),m.emit("freeon"),w.emit("free"),e.dragData.didDrag&&(m.emit("dragfreeon"),w.emit("dragfree"))),T();else if(m&&m.grabbed()&&e.nodeIsDraggable(m)){var N=!e.dragData.didDrag;N&&e.redrawHint("eles",!0),e.dragData.didDrag=!0,e.hoverData.draggingEles||u(w,{inDragLayer:!0});var z={x:0,y:0};if(b(x[0])&&b(x[1])&&(z.x+=x[0],z.y+=x[1],N)){var I=e.hoverData.dragDelta;I&&b(I[0])&&b(I[1])&&(z.x+=I[0],z.y+=I[1])}e.hoverData.draggingEles=!0,w.silentShift(z).emit("position drag"),e.redrawHint("drag",!0),e.redraw()}}else!function(){var t=e.hoverData.dragDelta=e.hoverData.dragDelta||[];0===t.length?(t.push(x[0]),t.push(x[1])):(t[0]+=x[0],t[1]+=x[1])}();n=!0}else if(v){if(e.hoverData.dragging||!o.boxSelectionEnabled()||!D&&o.panningEnabled()&&o.userPanningEnabled()){if(!e.hoverData.selecting&&o.panningEnabled()&&o.userPanningEnabled()){a(m,e.hoverData.downs)&&(e.hoverData.dragging=!0,e.hoverData.justStartedPan=!0,f[4]=0,e.data.bgActivePosistion=mt(h),e.redrawHint("select",!0),e.redraw())}}else T();m&&m.pannable()&&m.active()&&m.unactivate()}return f[2]=c[0],f[3]=c[1],n?(t.stopPropagation&&t.stopPropagation(),t.preventDefault&&t.preventDefault(),!1):void 0}}),!1),e.registerBinding(t,"mouseup",(function(t){if(e.hoverData.capture){e.hoverData.capture=!1;var a=e.cy,o=e.projectIntoViewport(t.clientX,t.clientY),s=e.selection,l=e.findNearestElement(o[0],o[1],!0,!1),u=e.dragData.possibleDragElements,c=e.hoverData.down,h=i(t);if(e.data.bgActivePosistion&&(e.redrawHint("select",!0),e.redraw()),e.hoverData.tapholdCancelled=!0,e.data.bgActivePosistion=void 0,c&&c.unactivate(),3===e.hoverData.which){var p={originalEvent:t,type:"cxttapend",position:{x:o[0],y:o[1]}};if(c?c.emit(p):a.emit(p),!e.hoverData.cxtDragged){var f={originalEvent:t,type:"cxttap",position:{x:o[0],y:o[1]}};c?c.emit(f):a.emit(f)}e.hoverData.cxtDragged=!1,e.hoverData.which=null}else if(1===e.hoverData.which){if(r(l,["mouseup","tapend","vmouseup"],t,{x:o[0],y:o[1]}),e.dragData.didDrag||e.hoverData.dragged||e.hoverData.selecting||e.hoverData.isOverThresholdDrag||(r(c,["click","tap","vclick"],t,{x:o[0],y:o[1]}),x=!1,t.timeStamp-w<=a.multiClickDebounceTime()?(m&&clearTimeout(m),x=!0,w=null,r(c,["dblclick","dbltap","vdblclick"],t,{x:o[0],y:o[1]})):(m=setTimeout((function(){x||r(c,["oneclick","onetap","voneclick"],t,{x:o[0],y:o[1]})}),a.multiClickDebounceTime()),w=t.timeStamp)),null!=c||e.dragData.didDrag||e.hoverData.selecting||e.hoverData.dragged||i(t)||(a.$(n).unselect(["tapunselect"]),u.length>0&&e.redrawHint("eles",!0),e.dragData.possibleDragElements=u=a.collection()),l!=c||e.dragData.didDrag||e.hoverData.selecting||null!=l&&l._private.selectable&&(e.hoverData.dragging||("additive"===a.selectionType()||h?l.selected()?l.unselect(["tapunselect"]):l.select(["tapselect"]):h||(a.$(n).unmerge(l).unselect(["tapunselect"]),l.select(["tapselect"]))),e.redrawHint("eles",!0)),e.hoverData.selecting){var g=a.collection(e.getAllInBox(s[0],s[1],s[2],s[3]));e.redrawHint("select",!0),g.length>0&&e.redrawHint("eles",!0),a.emit({type:"boxend",originalEvent:t,position:{x:o[0],y:o[1]}});var v=function(e){return e.selectable()&&!e.selected()};"additive"===a.selectionType()||h||a.$(n).unmerge(g).unselect(),g.emit("box").stdFilter(v).select().emit("boxselect"),e.redraw()}if(e.hoverData.dragging&&(e.hoverData.dragging=!1,e.redrawHint("select",!0),e.redrawHint("eles",!0),e.redraw()),!s[4]){e.redrawHint("drag",!0),e.redrawHint("eles",!0);var y=c&&c.grabbed();d(u),y&&(c.emit("freeon"),u.emit("free"),e.dragData.didDrag&&(c.emit("dragfreeon"),u.emit("dragfree")))}}s[4]=0,e.hoverData.down=null,e.hoverData.cxtStarted=!1,e.hoverData.draggingEles=!1,e.hoverData.selecting=!1,e.hoverData.isOverThresholdDrag=!1,e.dragData.didDrag=!1,e.hoverData.dragged=!1,e.hoverData.dragDelta=[],e.hoverData.mdownPos=null,e.hoverData.mdownGPos=null}}),!1);var k,C,S,P,D,T,_,M,B,N,z,I,A,L=function(t){if(!e.scrollingPage){var n=e.cy,r=n.zoom(),i=n.pan(),a=e.projectIntoViewport(t.clientX,t.clientY),o=[a[0]*r+i.x,a[1]*r+i.y];if(e.hoverData.draggingEles||e.hoverData.dragging||e.hoverData.cxtStarted||0!==e.selection[4])t.preventDefault();else if(n.panningEnabled()&&n.userPanningEnabled()&&n.zoomingEnabled()&&n.userZoomingEnabled()){var s;t.preventDefault(),e.data.wheelZooming=!0,clearTimeout(e.data.wheelTimeout),e.data.wheelTimeout=setTimeout((function(){e.data.wheelZooming=!1,e.redrawHint("eles",!0),e.redraw()}),150),s=null!=t.deltaY?t.deltaY/-250:null!=t.wheelDeltaY?t.wheelDeltaY/1e3:t.wheelDelta/1e3,s*=e.wheelSensitivity,1===t.deltaMode&&(s*=33);var l=n.zoom()*Math.pow(10,s);"gesturechange"===t.type&&(l=e.gestureStartZoom*t.scale),n.zoom({level:l,renderedPosition:{x:o[0],y:o[1]}}),n.emit("gesturechange"===t.type?"pinchzoom":"scrollzoom")}}};e.registerBinding(e.container,"wheel",L,!0),e.registerBinding(t,"scroll",(function(t){e.scrollingPage=!0,clearTimeout(e.scrollingPageTimeout),e.scrollingPageTimeout=setTimeout((function(){e.scrollingPage=!1}),250)}),!0),e.registerBinding(e.container,"gesturestart",(function(t){e.gestureStartZoom=e.cy.zoom(),e.hasTouchStarted||t.preventDefault()}),!0),e.registerBinding(e.container,"gesturechange",(function(t){e.hasTouchStarted||L(t)}),!0),e.registerBinding(e.container,"mouseout",(function(t){var n=e.projectIntoViewport(t.clientX,t.clientY);e.cy.emit({originalEvent:t,type:"mouseout",position:{x:n[0],y:n[1]}})}),!1),e.registerBinding(e.container,"mouseover",(function(t){var n=e.projectIntoViewport(t.clientX,t.clientY);e.cy.emit({originalEvent:t,type:"mouseover",position:{x:n[0],y:n[1]}})}),!1);var O,R,V,F,j,q,Y,X=function(e,t,n,r){return Math.sqrt((n-e)*(n-e)+(r-t)*(r-t))},W=function(e,t,n,r){return(n-e)*(n-e)+(r-t)*(r-t)};if(e.registerBinding(e.container,"touchstart",O=function(t){if(e.hasTouchStarted=!0,E(t)){p(),e.touchData.capture=!0,e.data.bgActivePosistion=void 0;var n=e.cy,i=e.touchData.now,a=e.touchData.earlier;if(t.touches[0]){var o=e.projectIntoViewport(t.touches[0].clientX,t.touches[0].clientY);i[0]=o[0],i[1]=o[1]}if(t.touches[1]){o=e.projectIntoViewport(t.touches[1].clientX,t.touches[1].clientY);i[2]=o[0],i[3]=o[1]}if(t.touches[2]){o=e.projectIntoViewport(t.touches[2].clientX,t.touches[2].clientY);i[4]=o[0],i[5]=o[1]}if(t.touches[1]){e.touchData.singleTouchMoved=!0,d(e.dragData.touchDragEles);var l=e.findContainerClientCoords();B=l[0],N=l[1],z=l[2],I=l[3],k=t.touches[0].clientX-B,C=t.touches[0].clientY-N,S=t.touches[1].clientX-B,P=t.touches[1].clientY-N,A=0<=k&&k<=z&&0<=S&&S<=z&&0<=C&&C<=I&&0<=P&&P<=I;var h=n.pan(),f=n.zoom();D=X(k,C,S,P),T=W(k,C,S,P),M=[((_=[(k+S)/2,(C+P)/2])[0]-h.x)/f,(_[1]-h.y)/f];if(T<4e4&&!t.touches[2]){var g=e.findNearestElement(i[0],i[1],!0,!0),v=e.findNearestElement(i[2],i[3],!0,!0);return g&&g.isNode()?(g.activate().emit({originalEvent:t,type:"cxttapstart",position:{x:i[0],y:i[1]}}),e.touchData.start=g):v&&v.isNode()?(v.activate().emit({originalEvent:t,type:"cxttapstart",position:{x:i[0],y:i[1]}}),e.touchData.start=v):n.emit({originalEvent:t,type:"cxttapstart",position:{x:i[0],y:i[1]}}),e.touchData.start&&(e.touchData.start._private.grabbed=!1),e.touchData.cxt=!0,e.touchData.cxtDragged=!1,e.data.bgActivePosistion=void 0,void e.redraw()}}if(t.touches[2])n.boxSelectionEnabled()&&t.preventDefault();else if(t.touches[1]);else if(t.touches[0]){var y=e.findNearestElements(i[0],i[1],!0,!0),m=y[0];if(null!=m&&(m.activate(),e.touchData.start=m,e.touchData.starts=y,e.nodeIsGrabbable(m))){var b=e.dragData.touchDragEles=n.collection(),x=null;e.redrawHint("eles",!0),e.redrawHint("drag",!0),m.selected()?(x=n.$((function(t){return t.selected()&&e.nodeIsGrabbable(t)})),u(x,{addToList:b})):c(m,{addToList:b}),s(m);var w=function(e){return{originalEvent:t,type:e,position:{x:i[0],y:i[1]}}};m.emit(w("grabon")),x?x.forEach((function(e){e.emit(w("grab"))})):m.emit(w("grab"))}r(m,["touchstart","tapstart","vmousedown"],t,{x:i[0],y:i[1]}),null==m&&(e.data.bgActivePosistion={x:o[0],y:o[1]},e.redrawHint("select",!0),e.redraw()),e.touchData.singleTouchMoved=!1,e.touchData.singleTouchStartTime=+new Date,clearTimeout(e.touchData.tapholdTimeout),e.touchData.tapholdTimeout=setTimeout((function(){!1!==e.touchData.singleTouchMoved||e.pinching||e.touchData.selecting||r(e.touchData.start,["taphold"],t,{x:i[0],y:i[1]})}),e.tapholdDuration)}if(t.touches.length>=1){for(var L=e.touchData.startPosition=[null,null,null,null,null,null],O=0;O=e.touchTapThreshold2}if(n&&e.touchData.cxt){t.preventDefault();var w=t.touches[0].clientX-B,_=t.touches[0].clientY-N,z=t.touches[1].clientX-B,I=t.touches[1].clientY-N,L=W(w,_,z,I);if(L/T>=2.25||L>=22500){e.touchData.cxt=!1,e.data.bgActivePosistion=void 0,e.redrawHint("select",!0);var O={originalEvent:t,type:"cxttapend",position:{x:s[0],y:s[1]}};e.touchData.start?(e.touchData.start.unactivate().emit(O),e.touchData.start=null):o.emit(O)}}if(n&&e.touchData.cxt){O={originalEvent:t,type:"cxtdrag",position:{x:s[0],y:s[1]}};e.data.bgActivePosistion=void 0,e.redrawHint("select",!0),e.touchData.start?e.touchData.start.emit(O):o.emit(O),e.touchData.start&&(e.touchData.start._private.grabbed=!1),e.touchData.cxtDragged=!0;var R=e.findNearestElement(s[0],s[1],!0,!0);e.touchData.cxtOver&&R===e.touchData.cxtOver||(e.touchData.cxtOver&&e.touchData.cxtOver.emit({originalEvent:t,type:"cxtdragout",position:{x:s[0],y:s[1]}}),e.touchData.cxtOver=R,R&&R.emit({originalEvent:t,type:"cxtdragover",position:{x:s[0],y:s[1]}}))}else if(n&&t.touches[2]&&o.boxSelectionEnabled())t.preventDefault(),e.data.bgActivePosistion=void 0,this.lastThreeTouch=+new Date,e.touchData.selecting||o.emit({originalEvent:t,type:"boxstart",position:{x:s[0],y:s[1]}}),e.touchData.selecting=!0,e.touchData.didSelect=!0,i[4]=1,i&&0!==i.length&&void 0!==i[0]?(i[2]=(s[0]+s[2]+s[4])/3,i[3]=(s[1]+s[3]+s[5])/3):(i[0]=(s[0]+s[2]+s[4])/3,i[1]=(s[1]+s[3]+s[5])/3,i[2]=(s[0]+s[2]+s[4])/3+1,i[3]=(s[1]+s[3]+s[5])/3+1),e.redrawHint("select",!0),e.redraw();else if(n&&t.touches[1]&&!e.touchData.didSelect&&o.zoomingEnabled()&&o.panningEnabled()&&o.userZoomingEnabled()&&o.userPanningEnabled()){if(t.preventDefault(),e.data.bgActivePosistion=void 0,e.redrawHint("select",!0),ee=e.dragData.touchDragEles){e.redrawHint("drag",!0);for(var V=0;V0&&!e.hoverData.draggingEles&&!e.swipePanning&&null!=e.data.bgActivePosistion&&(e.data.bgActivePosistion=void 0,e.redrawHint("select",!0),e.redraw())}},!1),e.registerBinding(t,"touchcancel",V=function(t){var n=e.touchData.start;e.touchData.capture=!1,n&&n.unactivate()}),e.registerBinding(t,"touchend",F=function(t){var i=e.touchData.start;if(e.touchData.capture){0===t.touches.length&&(e.touchData.capture=!1),t.preventDefault();var a=e.selection;e.swipePanning=!1,e.hoverData.draggingEles=!1;var o,s=e.cy,l=s.zoom(),u=e.touchData.now,c=e.touchData.earlier;if(t.touches[0]){var h=e.projectIntoViewport(t.touches[0].clientX,t.touches[0].clientY);u[0]=h[0],u[1]=h[1]}if(t.touches[1]){h=e.projectIntoViewport(t.touches[1].clientX,t.touches[1].clientY);u[2]=h[0],u[3]=h[1]}if(t.touches[2]){h=e.projectIntoViewport(t.touches[2].clientX,t.touches[2].clientY);u[4]=h[0],u[5]=h[1]}if(i&&i.unactivate(),e.touchData.cxt){if(o={originalEvent:t,type:"cxttapend",position:{x:u[0],y:u[1]}},i?i.emit(o):s.emit(o),!e.touchData.cxtDragged){var p={originalEvent:t,type:"cxttap",position:{x:u[0],y:u[1]}};i?i.emit(p):s.emit(p)}return e.touchData.start&&(e.touchData.start._private.grabbed=!1),e.touchData.cxt=!1,e.touchData.start=null,void e.redraw()}if(!t.touches[2]&&s.boxSelectionEnabled()&&e.touchData.selecting){e.touchData.selecting=!1;var f=s.collection(e.getAllInBox(a[0],a[1],a[2],a[3]));a[0]=void 0,a[1]=void 0,a[2]=void 0,a[3]=void 0,a[4]=0,e.redrawHint("select",!0),s.emit({type:"boxend",originalEvent:t,position:{x:u[0],y:u[1]}});f.emit("box").stdFilter((function(e){return e.selectable()&&!e.selected()})).select().emit("boxselect"),f.nonempty()&&e.redrawHint("eles",!0),e.redraw()}if(null!=i&&i.unactivate(),t.touches[2])e.data.bgActivePosistion=void 0,e.redrawHint("select",!0);else if(t.touches[1]);else if(t.touches[0]);else if(!t.touches[0]){e.data.bgActivePosistion=void 0,e.redrawHint("select",!0);var g=e.dragData.touchDragEles;if(null!=i){var v=i._private.grabbed;d(g),e.redrawHint("drag",!0),e.redrawHint("eles",!0),v&&(i.emit("freeon"),g.emit("free"),e.dragData.didDrag&&(i.emit("dragfreeon"),g.emit("dragfree"))),r(i,["touchend","tapend","vmouseup","tapdragout"],t,{x:u[0],y:u[1]}),i.unactivate(),e.touchData.start=null}else{var y=e.findNearestElement(u[0],u[1],!0,!0);r(y,["touchend","tapend","vmouseup","tapdragout"],t,{x:u[0],y:u[1]})}var m=e.touchData.startPosition[0]-u[0],b=m*m,x=e.touchData.startPosition[1]-u[1],w=(b+x*x)*l*l;e.touchData.singleTouchMoved||(i||s.$(":selected").unselect(["tapunselect"]),r(i,["tap","vclick"],t,{x:u[0],y:u[1]}),j=!1,t.timeStamp-Y<=s.multiClickDebounceTime()?(q&&clearTimeout(q),j=!0,Y=null,r(i,["dbltap","vdblclick"],t,{x:u[0],y:u[1]})):(q=setTimeout((function(){j||r(i,["onetap","voneclick"],t,{x:u[0],y:u[1]})}),s.multiClickDebounceTime()),Y=t.timeStamp)),null!=i&&!e.dragData.didDrag&&i._private.selectable&&w2){for(var p=[c[0],c[1]],f=Math.pow(p[0]-e,2)+Math.pow(p[1]-t,2),g=1;g0)return g[0]}return null},p=Object.keys(d),f=0;f0?u:Ot(i,a,e,t,n,r,o,s)},checkPoint:function(e,t,n,r,i,a,o,s){var l=2*(s="auto"===s?tn(r,i):s);if(Yt(e,t,this.points,a,o,r,i-l,[0,-1],n))return!0;if(Yt(e,t,this.points,a,o,r-l,i,[0,-1],n))return!0;var u=r/2+2*n,c=i/2+2*n;return!!qt(e,t,[a-u,o-c,a-u,o,a+u,o,a+u,o-c])||(!!Ht(e,t,l,l,a+r/2-s,o+i/2-s,n)||!!Ht(e,t,l,l,a-r/2+s,o+i/2-s,n))}}},fu.registerNodeShapes=function(){var e=this.nodeShapes={},t=this;this.generateEllipse(),this.generatePolygon("triangle",Qt(3,0)),this.generateRoundPolygon("round-triangle",Qt(3,0)),this.generatePolygon("rectangle",Qt(4,0)),e.square=e.rectangle,this.generateRoundRectangle(),this.generateCutRectangle(),this.generateBarrel(),this.generateBottomRoundrectangle();var n=[0,1,1,0,0,-1,-1,0];this.generatePolygon("diamond",n),this.generateRoundPolygon("round-diamond",n),this.generatePolygon("pentagon",Qt(5,0)),this.generateRoundPolygon("round-pentagon",Qt(5,0)),this.generatePolygon("hexagon",Qt(6,0)),this.generateRoundPolygon("round-hexagon",Qt(6,0)),this.generatePolygon("heptagon",Qt(7,0)),this.generateRoundPolygon("round-heptagon",Qt(7,0)),this.generatePolygon("octagon",Qt(8,0)),this.generateRoundPolygon("round-octagon",Qt(8,0));var r=new Array(20),i=en(5,0),a=en(5,Math.PI/5),o=.5*(3-Math.sqrt(5));o*=1.57;for(var s=0;s=e.deqFastCost*g)break}else if(i){if(p>=e.deqCost*l||p>=e.deqAvgCost*s)break}else if(f>=e.deqNoDrawCost*(1e3/60))break;var v=e.deq(t,d,c);if(!(v.length>0))break;for(var y=0;y0&&(e.onDeqd(t,u),!i&&e.shouldRedraw(t,u,d,c)&&r())}),i(t))}}},xu=function(){function e(n){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Ae;t(this,e),this.idsByKey=new Ze,this.keyForId=new Ze,this.cachesByLvl=new Ze,this.lvls=[],this.getKey=n,this.doesEleInvalidateKey=r}return r(e,[{key:"getIdsFor",value:function(e){null==e&&Re("Can not get id list for null key");var t=this.idsByKey,n=this.idsByKey.get(e);return n||(n=new Qe,t.set(e,n)),n}},{key:"addIdForKey",value:function(e,t){null!=e&&this.getIdsFor(e).add(t)}},{key:"deleteIdForKey",value:function(e,t){null!=e&&this.getIdsFor(e).delete(t)}},{key:"getNumberOfIdsForKey",value:function(e){return null==e?0:this.getIdsFor(e).size}},{key:"updateKeyMappingFor",value:function(e){var t=e.id(),n=this.keyForId.get(t),r=this.getKey(e);this.deleteIdForKey(n,t),this.addIdForKey(r,t),this.keyForId.set(t,r)}},{key:"deleteKeyMappingFor",value:function(e){var t=e.id(),n=this.keyForId.get(t);this.deleteIdForKey(n,t),this.keyForId.delete(t)}},{key:"keyHasChangedFor",value:function(e){var t=e.id();return this.keyForId.get(t)!==this.getKey(e)}},{key:"isInvalid",value:function(e){return this.keyHasChangedFor(e)||this.doesEleInvalidateKey(e)}},{key:"getCachesAt",value:function(e){var t=this.cachesByLvl,n=this.lvls,r=t.get(e);return r||(r=new Ze,t.set(e,r),n.push(e)),r}},{key:"getCache",value:function(e,t){return this.getCachesAt(t).get(e)}},{key:"get",value:function(e,t){var n=this.getKey(e),r=this.getCache(n,t);return null!=r&&this.updateKeyMappingFor(e),r}},{key:"getForCachedKey",value:function(e,t){var n=this.keyForId.get(e.id());return this.getCache(n,t)}},{key:"hasCache",value:function(e,t){return this.getCachesAt(t).has(e)}},{key:"has",value:function(e,t){var n=this.getKey(e);return this.hasCache(n,t)}},{key:"setCache",value:function(e,t,n){n.key=e,this.getCachesAt(t).set(e,n)}},{key:"set",value:function(e,t,n){var r=this.getKey(e);this.setCache(r,t,n),this.updateKeyMappingFor(e)}},{key:"deleteCache",value:function(e,t){this.getCachesAt(t).delete(e)}},{key:"delete",value:function(e,t){var n=this.getKey(e);this.deleteCache(n,t)}},{key:"invalidateKey",value:function(e){var t=this;this.lvls.forEach((function(n){return t.deleteCache(e,n)}))}},{key:"invalidate",value:function(e){var t=e.id(),n=this.keyForId.get(t);this.deleteKeyMappingFor(e);var r=this.doesEleInvalidateKey(e);return r&&this.invalidateKey(n),r||0===this.getNumberOfIdsForKey(n)}}]),e}(),wu={dequeue:"dequeue",downscale:"downscale",highQuality:"highQuality"},Eu=We({getKey:null,doesEleInvalidateKey:Ae,drawElement:null,getBoundingBox:null,getRotationPoint:null,getRotationOffset:null,isVisible:Ie,allowEdgeTxrCaching:!0,allowParentTxrCaching:!0}),ku=function(e,t){this.renderer=e,this.onDequeues=[];var n=Eu(t);A(this,n),this.lookup=new xu(n.getKey,n.doesEleInvalidateKey),this.setupDequeueing()},Cu=ku.prototype;Cu.reasons=wu,Cu.getTextureQueue=function(e){return this.eleImgCaches=this.eleImgCaches||{},this.eleImgCaches[e]=this.eleImgCaches[e]||[]},Cu.getRetiredTextureQueue=function(e){var t=this.eleImgCaches.retired=this.eleImgCaches.retired||{};return t[e]=t[e]||[]},Cu.getElementQueue=function(){return this.eleCacheQueue=this.eleCacheQueue||new nt((function(e,t){return t.reqs-e.reqs}))},Cu.getElementKeyToQueue=function(){return this.eleKeyToCacheQueue=this.eleKeyToCacheQueue||{}},Cu.getElement=function(e,t,n,r,i){var a=this,o=this.renderer,s=o.cy.zoom(),l=this.lookup;if(!t||0===t.w||0===t.h||isNaN(t.w)||isNaN(t.h)||!e.visible()||e.removed())return null;if(!a.allowEdgeTxrCaching&&e.isEdge()||!a.allowParentTxrCaching&&e.isParent())return null;if(null==r&&(r=Math.ceil(xt(s*n))),r<-4)r=-4;else if(s>=7.99||r>3)return null;var u=Math.pow(2,r),c=t.h*u,d=t.w*u,h=o.eleTextBiggerThanMin(e,u);if(!this.isVisible(e,h))return null;var p,f=l.get(e,r);if(f&&f.invalidated&&(f.invalidated=!1,f.texture.invalidatedWidth-=f.width),f)return f;if(p=c<=25?25:c<=50?50:50*Math.ceil(c/50),c>1024||d>1024)return null;var g=a.getTextureQueue(p),v=g[g.length-2],y=function(){return a.recycleTexture(p,d)||a.addTexture(p,d)};v||(v=g[g.length-1]),v||(v=y()),v.width-v.usedWidthr;D--)S=a.getElement(e,t,n,D,wu.downscale);P()}else{var T;if(!x&&!w&&!E)for(var _=r-1;_>=-4;_--){var M=l.get(e,_);if(M){T=M;break}}if(b(T))return a.queueElement(e,r),T;v.context.translate(v.usedWidth,0),v.context.scale(u,u),this.drawElement(v.context,e,t,h,!1),v.context.scale(1/u,1/u),v.context.translate(-v.usedWidth,0)}return f={x:v.usedWidth,texture:v,level:r,scale:u,width:d,height:c,scaledLabelShown:h},v.usedWidth+=Math.ceil(d+8),v.eleCaches.push(f),l.set(e,r,f),a.checkTextureFullness(v),f},Cu.invalidateElements=function(e){for(var t=0;t=.2*e.width&&this.retireTexture(e)},Cu.checkTextureFullness=function(e){var t=this.getTextureQueue(e.height);e.usedWidth/e.width>.8&&e.fullnessChecks>=10?He(t,e):e.fullnessChecks++},Cu.retireTexture=function(e){var t=e.height,n=this.getTextureQueue(t),r=this.lookup;He(n,e),e.retired=!0;for(var i=e.eleCaches,a=0;a=t)return a.retired=!1,a.usedWidth=0,a.invalidatedWidth=0,a.fullnessChecks=0,Ke(a.eleCaches),a.context.setTransform(1,0,0,1,0,0),a.context.clearRect(0,0,a.width,a.height),He(r,a),n.push(a),a}},Cu.queueElement=function(e,t){var n=this.getElementQueue(),r=this.getElementKeyToQueue(),i=this.getKey(e),a=r[i];if(a)a.level=Math.max(a.level,t),a.eles.merge(e),a.reqs++,n.updateItem(a);else{var o={eles:e.spawn().merge(e),level:t,reqs:1,key:i};n.push(o),r[i]=o}},Cu.dequeue=function(e){for(var t=this.getElementQueue(),n=this.getElementKeyToQueue(),r=[],i=this.lookup,a=0;a<1&&t.size()>0;a++){var o=t.pop(),s=o.key,l=o.eles[0],u=i.hasCache(l,o.level);if(n[s]=null,!u){r.push(o);var c=this.getBoundingBox(l);this.getElement(l,c,e,o.level,wu.dequeue)}}return r},Cu.removeFromQueue=function(e){var t=this.getElementQueue(),n=this.getElementKeyToQueue(),r=this.getKey(e),i=n[r];null!=i&&(1===i.eles.length?(i.reqs=ze,t.updateItem(i),t.pop(),n[r]=null):i.eles.unmerge(e))},Cu.onDequeue=function(e){this.onDequeues.push(e)},Cu.offDequeue=function(e){He(this.onDequeues,e)},Cu.setupDequeueing=bu({deqRedrawThreshold:100,deqCost:.15,deqAvgCost:.1,deqNoDrawCost:.9,deqFastCost:.9,deq:function(e,t,n){return e.dequeue(t,n)},onDeqd:function(e,t){for(var n=0;n=3.99||n>2)return null;r.validateLayersElesOrdering(n,e);var o,s,l=r.layersByLevel,u=Math.pow(2,n),c=l[n]=l[n]||[];if(r.levelIsComplete(n,e))return c;!function(){var t=function(t){if(r.validateLayersElesOrdering(t,e),r.levelIsComplete(t,e))return s=l[t],!0},i=function(e){if(!s)for(var r=n+e;-4<=r&&r<=2&&!t(r);r+=e);};i(1),i(-1);for(var a=c.length-1;a>=0;a--){var o=c[a];o.invalid&&He(c,o)}}();var d=function(t){var i=(t=t||{}).after;if(function(){if(!o){o=Tt();for(var t=0;t16e6)return null;var a=r.makeLayer(o,n);if(null!=i){var s=c.indexOf(i)+1;c.splice(s,0,a)}else(void 0===t.insert||t.insert)&&c.unshift(a);return a};if(r.skipping&&!a)return null;for(var h=null,p=e.length/1,f=!a,g=0;g=p||!Lt(h.bb,v.boundingBox()))&&!(h=d({insert:!0,after:h})))return null;s||f?r.queueLayer(h,v):r.drawEleInLayer(h,v,n,t),h.eles.push(v),m[n]=h}}return s||(f?null:c)},Pu.getEleLevelForLayerLevel=function(e,t){return e},Pu.drawEleInLayer=function(e,t,n,r){var i=this.renderer,a=e.context,o=t.boundingBox();0!==o.w&&0!==o.h&&t.visible()&&(n=this.getEleLevelForLayerLevel(n,r),i.setImgSmoothing(a,!1),i.drawCachedElement(a,t,null,null,n,!0),i.setImgSmoothing(a,!0))},Pu.levelIsComplete=function(e,t){var n=this.layersByLevel[e];if(!n||0===n.length)return!1;for(var r=0,i=0;i0)return!1;if(a.invalid)return!1;r+=a.eles.length}return r===t.length},Pu.validateLayersElesOrdering=function(e,t){var n=this.layersByLevel[e];if(n)for(var r=0;r0){e=!0;break}}return e},Pu.invalidateElements=function(e){var t=this;0!==e.length&&(t.lastInvalidationTime=xe(),0!==e.length&&t.haveLayers()&&t.updateElementsInLayers(e,(function(e,n,r){t.invalidateLayer(e)})))},Pu.invalidateLayer=function(e){if(this.lastInvalidationTime=xe(),!e.invalid){var t=e.level,n=e.eles,r=this.layersByLevel[t];He(r,e),e.elesQueue=[],e.invalid=!0,e.replacement&&(e.replacement.invalid=!0);for(var i=0;i3&&void 0!==arguments[3])||arguments[3],i=!(arguments.length>4&&void 0!==arguments[4])||arguments[4],a=!(arguments.length>5&&void 0!==arguments[5])||arguments[5],o=this,s=t._private.rscratch;if((!a||t.visible())&&!s.badLine&&null!=s.allpts&&!isNaN(s.allpts[0])){var l;n&&(l=n,e.translate(-l.x1,-l.y1));var u=a?t.pstyle("opacity").value:1,c=a?t.pstyle("line-opacity").value:1,d=t.pstyle("curve-style").value,h=t.pstyle("line-style").value,p=t.pstyle("width").pfValue,f=t.pstyle("line-cap").value,g=u*c,v=u*c,y=function(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:g;"straight-triangle"===d?(o.eleStrokeStyle(e,t,n),o.drawEdgeTrianglePath(t,e,s.allpts)):(e.lineWidth=p,e.lineCap=f,o.eleStrokeStyle(e,t,n),o.drawEdgePath(t,e,s.allpts,h),e.lineCap="butt")},m=function(){i&&o.drawEdgeOverlay(e,t)},b=function(){i&&o.drawEdgeUnderlay(e,t)},x=function(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:v;o.drawArrowheads(e,t,n)},w=function(){o.drawElementText(e,t,null,r)};e.lineJoin="round";var E="yes"===t.pstyle("ghost").value;if(E){var k=t.pstyle("ghost-offset-x").pfValue,C=t.pstyle("ghost-offset-y").pfValue,S=t.pstyle("ghost-opacity").value,P=g*S;e.translate(k,C),y(P),x(P),e.translate(-k,-C)}b(),y(),x(),m(),w(),n&&e.translate(l.x1,l.y1)}}},Xu=function(e){if(!["overlay","underlay"].includes(e))throw new Error("Invalid state");return function(t,n){if(n.visible()){var r=n.pstyle("".concat(e,"-opacity")).value;if(0!==r){var i=this,a=i.usePaths(),o=n._private.rscratch,s=2*n.pstyle("".concat(e,"-padding")).pfValue,l=n.pstyle("".concat(e,"-color")).value;t.lineWidth=s,"self"!==o.edgeType||a?t.lineCap="round":t.lineCap="butt",i.colorStrokeStyle(t,l[0],l[1],l[2],r),i.drawEdgePath(n,t,o.allpts,"solid")}}}};Yu.drawEdgeOverlay=Xu("overlay"),Yu.drawEdgeUnderlay=Xu("underlay"),Yu.drawEdgePath=function(e,t,n,r){var i,a=e._private.rscratch,s=t,l=!1,u=this.usePaths(),c=e.pstyle("line-dash-pattern").pfValue,d=e.pstyle("line-dash-offset").pfValue;if(u){var h=n.join("$");a.pathCacheKey&&a.pathCacheKey===h?(i=t=a.pathCache,l=!0):(i=t=new Path2D,a.pathCacheKey=h,a.pathCache=i)}if(s.setLineDash)switch(r){case"dotted":s.setLineDash([1,1]);break;case"dashed":s.setLineDash(c),s.lineDashOffset=d;break;case"solid":s.setLineDash([])}if(!l&&!a.badLine)switch(t.beginPath&&t.beginPath(),t.moveTo(n[0],n[1]),a.edgeType){case"bezier":case"self":case"compound":case"multibezier":for(var p=2;p+3=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:i}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,s=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return s=e.done,e},e:function(e){l=!0,a=e},f:function(){try{s||null==n.return||n.return()}finally{if(l)throw a}}}}(a.roundCorners);try{for(v.s();!(g=v.n()).done;){$l(t,g.value)}}catch(e){v.e(e)}finally{v.f()}t.lineTo(n[n.length-2],n[n.length-1])}else for(var y=2;y+15&&void 0!==arguments[5]?arguments[5]:5,o=arguments.length>6?arguments[6]:void 0;e.beginPath(),e.moveTo(t+a,n),e.lineTo(t+r-a,n),e.quadraticCurveTo(t+r,n,t+r,n+a),e.lineTo(t+r,n+i-a),e.quadraticCurveTo(t+r,n+i,t+r-a,n+i),e.lineTo(t+a,n+i),e.quadraticCurveTo(t,n+i,t,n+i-a),e.lineTo(t,n+a),e.quadraticCurveTo(t,n,t+a,n),e.closePath(),o?e.stroke():e.fill()}Hu.eleTextBiggerThanMin=function(e,t){if(!t){var n=e.cy().zoom(),r=this.getPixelRatio(),i=Math.ceil(xt(n*r));t=Math.pow(2,i)}return!(e.pstyle("font-size").pfValue*t5&&void 0!==arguments[5])||arguments[5],o=this;if(null==r){if(a&&!o.eleTextBiggerThanMin(t))return}else if(!1===r)return;if(t.isNode()){var s=t.pstyle("label");if(!s||!s.value)return;var l=o.getLabelJustification(t);e.textAlign=l,e.textBaseline="bottom"}else{var u=t.element()._private.rscratch.badLine,c=t.pstyle("label"),d=t.pstyle("source-label"),h=t.pstyle("target-label");if(u||(!c||!c.value)&&(!d||!d.value)&&(!h||!h.value))return;e.textAlign="center",e.textBaseline="bottom"}var p,f=!n;n&&(p=n,e.translate(-p.x1,-p.y1)),null==i?(o.drawText(e,t,null,f,a),t.isEdge()&&(o.drawText(e,t,"source",f,a),o.drawText(e,t,"target",f,a))):o.drawText(e,t,i,f,a),n&&e.translate(p.x1,p.y1)},Hu.getFontCache=function(e){var t;this.fontCaches=this.fontCaches||[];for(var n=0;n2&&void 0!==arguments[2])||arguments[2],r=t.pstyle("font-style").strValue,i=t.pstyle("font-size").pfValue+"px",a=t.pstyle("font-family").strValue,o=t.pstyle("font-weight").strValue,s=n?t.effectiveOpacity()*t.pstyle("text-opacity").value:1,l=t.pstyle("text-outline-opacity").value*s,u=t.pstyle("color").value,c=t.pstyle("text-outline-color").value;e.font=r+" "+o+" "+i+" "+a,e.lineJoin="round",this.colorFillStyle(e,u[0],u[1],u[2],s),this.colorStrokeStyle(e,c[0],c[1],c[2],l)},Hu.getTextAngle=function(e,t){var n=e._private.rscratch,r=t?t+"-":"",i=e.pstyle(r+"text-rotation"),a=Ge(n,"labelAngle",t);return"autorotate"===i.strValue?e.isEdge()?a:0:"none"===i.strValue?0:i.pfValue},Hu.drawText=function(e,t,n){var r=!(arguments.length>3&&void 0!==arguments[3])||arguments[3],i=!(arguments.length>4&&void 0!==arguments[4])||arguments[4],a=t._private,o=a.rscratch,s=i?t.effectiveOpacity():1;if(!i||0!==s&&0!==t.pstyle("text-opacity").value){"main"===n&&(n=null);var l,u,c=Ge(o,"labelX",n),d=Ge(o,"labelY",n),h=this.getLabelText(t,n);if(null!=h&&""!==h&&!isNaN(c)&&!isNaN(d)){this.setupTextStyle(e,t,i);var p,f=n?n+"-":"",g=Ge(o,"labelWidth",n),v=Ge(o,"labelHeight",n),y=t.pstyle(f+"text-margin-x").pfValue,m=t.pstyle(f+"text-margin-y").pfValue,b=t.isEdge(),x=t.pstyle("text-halign").value,w=t.pstyle("text-valign").value;switch(b&&(x="center",w="center"),c+=y,d+=m,0!==(p=r?this.getTextAngle(t,n):0)&&(l=c,u=d,e.translate(l,u),e.rotate(p),c=0,d=0),w){case"top":break;case"center":d+=v/2;break;case"bottom":d+=v}var E=t.pstyle("text-background-opacity").value,k=t.pstyle("text-border-opacity").value,C=t.pstyle("text-border-width").pfValue,S=t.pstyle("text-background-padding").pfValue,P=t.pstyle("text-background-shape").strValue,D=0===P.indexOf("round"),T=2;if(E>0||C>0&&k>0){var _=c-S;switch(x){case"left":_-=g;break;case"center":_-=g/2}var M=d-v-S,B=g+2*S,N=v+2*S;if(E>0){var z=e.fillStyle,I=t.pstyle("text-background-color").value;e.fillStyle="rgba("+I[0]+","+I[1]+","+I[2]+","+E*s+")",D?Ku(e,_,M,B,N,T):e.fillRect(_,M,B,N),e.fillStyle=z}if(C>0&&k>0){var A=e.strokeStyle,L=e.lineWidth,O=t.pstyle("text-border-color").value,R=t.pstyle("text-border-style").value;if(e.strokeStyle="rgba("+O[0]+","+O[1]+","+O[2]+","+k*s+")",e.lineWidth=C,e.setLineDash)switch(R){case"dotted":e.setLineDash([1,1]);break;case"dashed":e.setLineDash([4,2]);break;case"double":e.lineWidth=C/4,e.setLineDash([]);break;case"solid":e.setLineDash([])}if(D?Ku(e,_,M,B,N,T,"stroke"):e.strokeRect(_,M,B,N),"double"===R){var V=C/2;D?Ku(e,_+V,M+V,B-2*V,N-2*V,T,"stroke"):e.strokeRect(_+V,M+V,B-2*V,N-2*V)}e.setLineDash&&e.setLineDash([]),e.lineWidth=L,e.strokeStyle=A}}var F=2*t.pstyle("text-outline-width").pfValue;if(F>0&&(e.lineWidth=F),"wrap"===t.pstyle("text-wrap").value){var j=Ge(o,"labelWrapCachedLines",n),q=Ge(o,"labelLineHeight",n),Y=g/2,X=this.getLabelJustification(t);switch("auto"===X||("left"===x?"left"===X?c+=-g:"center"===X&&(c+=-Y):"center"===x?"left"===X?c+=-Y:"right"===X&&(c+=Y):"right"===x&&("center"===X?c+=Y:"right"===X&&(c+=g))),w){case"top":d-=(j.length-1)*q;break;case"center":case"bottom":d-=(j.length-1)*q}for(var W=0;W0&&e.strokeText(j[W],c,d),e.fillText(j[W],c,d),d+=q}else F>0&&e.strokeText(h,c,d),e.fillText(h,c,d);0!==p&&(e.rotate(-p),e.translate(-l,-u))}}};var Gu={drawNode:function(e,t,n){var r,i,a=!(arguments.length>3&&void 0!==arguments[3])||arguments[3],o=!(arguments.length>4&&void 0!==arguments[4])||arguments[4],s=!(arguments.length>5&&void 0!==arguments[5])||arguments[5],l=this,u=t._private,c=u.rscratch,d=t.position();if(b(d.x)&&b(d.y)&&(!s||t.visible())){var h,p,f=s?t.effectiveOpacity():1,g=l.usePaths(),v=!1,y=t.padding();r=t.width()+2*y,i=t.height()+2*y,n&&(p=n,e.translate(-p.x1,-p.y1));for(var m=t.pstyle("background-image"),x=m.value,w=new Array(x.length),E=new Array(x.length),k=0,C=0;C0&&void 0!==arguments[0]?arguments[0]:M;l.eleFillStyle(e,t,n)},H=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:R;l.colorStrokeStyle(e,B[0],B[1],B[2],t)},K=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:q;l.colorStrokeStyle(e,F[0],F[1],F[2],t)},G=function(e,t,n,r){var i,a=l.nodePathCache=l.nodePathCache||[],o=Te("polygon"===n?n+","+r.join(","):n,""+t,""+e,""+X),s=a[o],u=!1;return null!=s?(i=s,u=!0,c.pathCache=i):(i=new Path2D,a[o]=c.pathCache=i),{path:i,cacheHit:u}},U=t.pstyle("shape").strValue,Z=t.pstyle("shape-polygon-points").pfValue;if(g){e.translate(d.x,d.y);var $=G(r,i,U,Z);h=$.path,v=$.cacheHit}var Q=function(){if(!v){var n=d;g&&(n={x:0,y:0}),l.nodeShapes[l.getNodeShape(t)].draw(h||e,n.x,n.y,r,i,X,c)}g?e.fill(h):e.fill()},J=function(){for(var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:f,r=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=u.backgrounding,a=0,o=0;o0&&void 0!==arguments[0]&&arguments[0],a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:f;l.hasPie(t)&&(l.drawPie(e,t,a),n&&(g||l.nodeShapes[l.getNodeShape(t)].draw(e,d.x,d.y,r,i,X,c)))},te=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:f,n=(T>0?T:-T)*t,r=T>0?0:255;0!==T&&(l.colorFillStyle(e,r,r,r,n),g?e.fill(h):e.fill())},ne=function(){if(_>0){if(e.lineWidth=_,e.lineCap=I,e.lineJoin=z,e.setLineDash)switch(N){case"dotted":e.setLineDash([1,1]);break;case"dashed":e.setLineDash(L),e.lineDashOffset=O;break;case"solid":case"double":e.setLineDash([])}if("center"!==A){if(e.save(),e.lineWidth*=2,"inside"===A)g?e.clip(h):e.clip();else{var t=new Path2D;t.rect(-r/2-_,-i/2-_,r+2*_,i+2*_),t.addPath(h),e.clip(t,"evenodd")}g?e.stroke(h):e.stroke(),e.restore()}else g?e.stroke(h):e.stroke();if("double"===N){e.lineWidth=_/3;var n=e.globalCompositeOperation;e.globalCompositeOperation="destination-out",g?e.stroke(h):e.stroke(),e.globalCompositeOperation=n}e.setLineDash&&e.setLineDash([])}},re=function(){if(V>0){if(e.lineWidth=V,e.lineCap="butt",e.setLineDash)switch(j){case"dotted":e.setLineDash([1,1]);break;case"dashed":e.setLineDash([4,2]);break;case"solid":case"double":e.setLineDash([])}var n=d;g&&(n={x:0,y:0});var a=l.getNodeShape(t),o=_;"inside"===A&&(o=0),"outside"===A&&(o*=2);var s,u=(r+o+(V+Y))/r,c=(i+o+(V+Y))/i,h=r*u,p=i*c,f=l.nodeShapes[a].points;if(g)s=G(h,p,a,f).path;if("ellipse"===a)l.drawEllipsePath(s||e,n.x,n.y,h,p);else if(["round-diamond","round-heptagon","round-hexagon","round-octagon","round-pentagon","round-polygon","round-triangle","round-tag"].includes(a)){var v=0,y=0,m=0;"round-diamond"===a?v=1.4*(o+Y+V):"round-heptagon"===a?(v=1.075*(o+Y+V),m=-(o/2+Y+V)/35):"round-hexagon"===a?v=1.12*(o+Y+V):"round-pentagon"===a?(v=1.13*(o+Y+V),m=-(o/2+Y+V)/15):"round-tag"===a?(v=1.12*(o+Y+V),y=.07*(o/2+V+Y)):"round-triangle"===a&&(v=(o+Y+V)*(Math.PI/2),m=-(o+Y/2+V)/Math.PI),0!==v&&(h=r*(u=(r+v)/r),["round-hexagon","round-tag"].includes(a)||(p=i*(c=(i+v)/i)));for(var b=h/2,x=p/2,w=(X="auto"===X?nn(h,p):X)+(o+V+Y)/2,E=new Array(f.length/2),k=new Array(f.length/2),C=0;C0){if(r=r||n.position(),null==i||null==a){var d=n.padding();i=n.width()+2*d,a=n.height()+2*d}this.colorFillStyle(t,l[0],l[1],l[2],s),this.nodeShapes[u].draw(t,r.x,r.y,i+2*o,a+2*o,c),t.fill()}}}};Gu.drawNodeOverlay=Uu("overlay"),Gu.drawNodeUnderlay=Uu("underlay"),Gu.hasPie=function(e){return(e=e[0])._private.hasPie},Gu.drawPie=function(e,t,n,r){t=t[0],r=r||t.position();var i=t.cy().style(),a=t.pstyle("pie-size"),o=r.x,s=r.y,l=t.width(),u=t.height(),c=Math.min(l,u)/2,d=0;this.usePaths()&&(o=0,s=0),"%"===a.units?c*=a.pfValue:void 0!==a.pfValue&&(c=a.pfValue/2);for(var h=1;h<=i.pieBackgroundN;h++){var p=t.pstyle("pie-"+h+"-background-size").value,f=t.pstyle("pie-"+h+"-background-color").value,g=t.pstyle("pie-"+h+"-background-opacity").value*n,v=p/100;v+d>1&&(v=1-d);var y=1.5*Math.PI+2*Math.PI*d,m=y+2*Math.PI*v;0===p||d>=1||d+v>1||(e.beginPath(),e.moveTo(o,s),e.arc(o,s,c,y,m),e.closePath(),this.colorFillStyle(e,f[0],f[1],f[2],g),e.fill(),d+=v)}};var Zu={};Zu.getPixelRatio=function(){var e=this.data.contexts[0];if(null!=this.forcedPixelRatio)return this.forcedPixelRatio;var t=e.backingStorePixelRatio||e.webkitBackingStorePixelRatio||e.mozBackingStorePixelRatio||e.msBackingStorePixelRatio||e.oBackingStorePixelRatio||e.backingStorePixelRatio||1;return(window.devicePixelRatio||1)/t},Zu.paintCache=function(e){for(var t,n=this.paintCaches=this.paintCaches||[],r=!0,i=0;io.minMbLowQualFrames&&(o.motionBlurPxRatio=o.mbPxRBlurry)),o.clearingMotionBlur&&(o.motionBlurPxRatio=1),o.textureDrawLastFrame&&!d&&(c[o.NODE]=!0,c[o.SELECT_BOX]=!0);var m=l.style(),b=l.zoom(),x=void 0!==i?i:b,w=l.pan(),E={x:w.x,y:w.y},k={zoom:b,pan:{x:w.x,y:w.y}},C=o.prevViewport;void 0===C||k.zoom!==C.zoom||k.pan.x!==C.pan.x||k.pan.y!==C.pan.y||g&&!f||(o.motionBlurPxRatio=1),a&&(E=a),x*=s,E.x*=s,E.y*=s;var S=o.getCachedZSortedEles();function P(e,t,n,r,i){var a=e.globalCompositeOperation;e.globalCompositeOperation="destination-out",o.colorFillStyle(e,255,255,255,o.motionBlurTransparency),e.fillRect(t,n,r,i),e.globalCompositeOperation=a}function D(e,r){var s,l,c,d;o.clearingMotionBlur||e!==u.bufferContexts[o.MOTIONBLUR_BUFFER_NODE]&&e!==u.bufferContexts[o.MOTIONBLUR_BUFFER_DRAG]?(s=E,l=x,c=o.canvasWidth,d=o.canvasHeight):(s={x:w.x*p,y:w.y*p},l=b*p,c=o.canvasWidth*p,d=o.canvasHeight*p),e.setTransform(1,0,0,1,0,0),"motionBlur"===r?P(e,0,0,c,d):t||void 0!==r&&!r||e.clearRect(0,0,c,d),n||(e.translate(s.x,s.y),e.scale(l,l)),a&&e.translate(a.x,a.y),i&&e.scale(i,i)}if(d||(o.textureDrawLastFrame=!1),d){if(o.textureDrawLastFrame=!0,!o.textureCache){o.textureCache={},o.textureCache.bb=l.mutableElements().boundingBox(),o.textureCache.texture=o.data.bufferCanvases[o.TEXTURE_BUFFER];var T=o.data.bufferContexts[o.TEXTURE_BUFFER];T.setTransform(1,0,0,1,0,0),T.clearRect(0,0,o.canvasWidth*o.textureMult,o.canvasHeight*o.textureMult),o.render({forcedContext:T,drawOnlyNodeLayer:!0,forcedPxRatio:s*o.textureMult}),(k=o.textureCache.viewport={zoom:l.zoom(),pan:l.pan(),width:o.canvasWidth,height:o.canvasHeight}).mpan={x:(0-k.pan.x)/k.zoom,y:(0-k.pan.y)/k.zoom}}c[o.DRAG]=!1,c[o.NODE]=!1;var _=u.contexts[o.NODE],M=o.textureCache.texture;k=o.textureCache.viewport;_.setTransform(1,0,0,1,0,0),h?P(_,0,0,k.width,k.height):_.clearRect(0,0,k.width,k.height);var B=m.core("outside-texture-bg-color").value,N=m.core("outside-texture-bg-opacity").value;o.colorFillStyle(_,B[0],B[1],B[2],N),_.fillRect(0,0,k.width,k.height);b=l.zoom();D(_,!1),_.clearRect(k.mpan.x,k.mpan.y,k.width/k.zoom/s,k.height/k.zoom/s),_.drawImage(M,k.mpan.x,k.mpan.y,k.width/k.zoom/s,k.height/k.zoom/s)}else o.textureOnViewport&&!t&&(o.textureCache=null);var z=l.extent(),I=o.pinching||o.hoverData.dragging||o.swipePanning||o.data.wheelZooming||o.hoverData.draggingEles||o.cy.animated(),A=o.hideEdgesOnViewport&&I,L=[];if(L[o.NODE]=!c[o.NODE]&&h&&!o.clearedForMotionBlur[o.NODE]||o.clearingMotionBlur,L[o.NODE]&&(o.clearedForMotionBlur[o.NODE]=!0),L[o.DRAG]=!c[o.DRAG]&&h&&!o.clearedForMotionBlur[o.DRAG]||o.clearingMotionBlur,L[o.DRAG]&&(o.clearedForMotionBlur[o.DRAG]=!0),c[o.NODE]||n||r||L[o.NODE]){var O=h&&!L[o.NODE]&&1!==p;D(_=t||(O?o.data.bufferContexts[o.MOTIONBLUR_BUFFER_NODE]:u.contexts[o.NODE]),h&&!O?"motionBlur":void 0),A?o.drawCachedNodes(_,S.nondrag,s,z):o.drawLayeredElements(_,S.nondrag,s,z),o.debug&&o.drawDebugPoints(_,S.nondrag),n||h||(c[o.NODE]=!1)}if(!r&&(c[o.DRAG]||n||L[o.DRAG])){O=h&&!L[o.DRAG]&&1!==p;D(_=t||(O?o.data.bufferContexts[o.MOTIONBLUR_BUFFER_DRAG]:u.contexts[o.DRAG]),h&&!O?"motionBlur":void 0),A?o.drawCachedNodes(_,S.drag,s,z):o.drawCachedElements(_,S.drag,s,z),o.debug&&o.drawDebugPoints(_,S.drag),n||h||(c[o.DRAG]=!1)}if(o.showFps||!r&&c[o.SELECT_BOX]&&!n){if(D(_=t||u.contexts[o.SELECT_BOX]),1==o.selection[4]&&(o.hoverData.selecting||o.touchData.selecting)){b=o.cy.zoom();var R=m.core("selection-box-border-width").value/b;_.lineWidth=R,_.fillStyle="rgba("+m.core("selection-box-color").value[0]+","+m.core("selection-box-color").value[1]+","+m.core("selection-box-color").value[2]+","+m.core("selection-box-opacity").value+")",_.fillRect(o.selection[0],o.selection[1],o.selection[2]-o.selection[0],o.selection[3]-o.selection[1]),R>0&&(_.strokeStyle="rgba("+m.core("selection-box-border-color").value[0]+","+m.core("selection-box-border-color").value[1]+","+m.core("selection-box-border-color").value[2]+","+m.core("selection-box-opacity").value+")",_.strokeRect(o.selection[0],o.selection[1],o.selection[2]-o.selection[0],o.selection[3]-o.selection[1]))}if(u.bgActivePosistion&&!o.hoverData.selecting){b=o.cy.zoom();var V=u.bgActivePosistion;_.fillStyle="rgba("+m.core("active-bg-color").value[0]+","+m.core("active-bg-color").value[1]+","+m.core("active-bg-color").value[2]+","+m.core("active-bg-opacity").value+")",_.beginPath(),_.arc(V.x,V.y,m.core("active-bg-size").pfValue/b,0,2*Math.PI),_.fill()}var F=o.lastRedrawTime;if(o.showFps&&F){F=Math.round(F);var j=Math.round(1e3/F);_.setTransform(1,0,0,1,0,0),_.fillStyle="rgba(255, 0, 0, 0.75)",_.strokeStyle="rgba(255, 0, 0, 0.75)",_.lineWidth=1,_.fillText("1 frame = "+F+" ms = "+j+" fps",0,20);_.strokeRect(0,30,250,20),_.fillRect(0,30,250*Math.min(j/60,1),20)}n||(c[o.SELECT_BOX]=!1)}if(h&&1!==p){var q=u.contexts[o.NODE],Y=o.data.bufferCanvases[o.MOTIONBLUR_BUFFER_NODE],X=u.contexts[o.DRAG],W=o.data.bufferCanvases[o.MOTIONBLUR_BUFFER_DRAG],H=function(e,t,n){e.setTransform(1,0,0,1,0,0),n||!y?e.clearRect(0,0,o.canvasWidth,o.canvasHeight):P(e,0,0,o.canvasWidth,o.canvasHeight);var r=p;e.drawImage(t,0,0,o.canvasWidth*r,o.canvasHeight*r,0,0,o.canvasWidth,o.canvasHeight)};(c[o.NODE]||L[o.NODE])&&(H(q,Y,L[o.NODE]),c[o.NODE]=!1),(c[o.DRAG]||L[o.DRAG])&&(H(X,W,L[o.DRAG]),c[o.DRAG]=!1)}o.prevViewport=k,o.clearingMotionBlur&&(o.clearingMotionBlur=!1,o.motionBlurCleared=!0,o.motionBlur=!0),h&&(o.motionBlurTimeout=setTimeout((function(){o.motionBlurTimeout=null,o.clearedForMotionBlur[o.NODE]=!1,o.clearedForMotionBlur[o.DRAG]=!1,o.motionBlur=!1,o.clearingMotionBlur=!d,o.mbFrames=0,c[o.NODE]=!0,c[o.DRAG]=!0,o.redraw()}),100)),t||l.emit("render")};for(var $u={drawPolygonPath:function(e,t,n,r,i,a){var o=r/2,s=i/2;e.beginPath&&e.beginPath(),e.moveTo(t+o*a[0],n+s*a[1]);for(var l=1;l0&&a>0){h.clearRect(0,0,i,a),h.globalCompositeOperation="source-over";var p=this.getCachedZSortedEles();if(e.full)h.translate(-n.x1*l,-n.y1*l),h.scale(l,l),this.drawElements(h,p),h.scale(1/l,1/l),h.translate(n.x1*l,n.y1*l);else{var f=t.pan(),g={x:f.x*l,y:f.y*l};l*=t.zoom(),h.translate(g.x,g.y),h.scale(l,l),this.drawElements(h,p),h.scale(1/l,1/l),h.translate(-g.x,-g.y)}e.bg&&(h.globalCompositeOperation="destination-over",h.fillStyle=e.bg,h.rect(0,0,i,a),h.fill())}return d},ic.png=function(e){return oc(e,this.bufferCanvasImage(e),"image/png")},ic.jpg=function(e){return oc(e,this.bufferCanvasImage(e),"image/jpeg")};var sc={nodeShapeImpl:function(e,t,n,r,i,a,o,s){switch(e){case"ellipse":return this.drawEllipsePath(t,n,r,i,a);case"polygon":return this.drawPolygonPath(t,n,r,i,a,o);case"round-polygon":return this.drawRoundPolygonPath(t,n,r,i,a,o,s);case"roundrectangle":case"round-rectangle":return this.drawRoundRectanglePath(t,n,r,i,a,s);case"cutrectangle":case"cut-rectangle":return this.drawCutRectanglePath(t,n,r,i,a,o,s);case"bottomroundrectangle":case"bottom-round-rectangle":return this.drawBottomRoundRectanglePath(t,n,r,i,a,s);case"barrel":return this.drawBarrelPath(t,n,r,i,a)}}},lc=cc,uc=cc.prototype;function cc(e){var t=this;t.data={canvases:new Array(uc.CANVAS_LAYERS),contexts:new Array(uc.CANVAS_LAYERS),canvasNeedsRedraw:new Array(uc.CANVAS_LAYERS),bufferCanvases:new Array(uc.BUFFER_COUNT),bufferContexts:new Array(uc.CANVAS_LAYERS)};t.data.canvasContainer=document.createElement("div");var n=t.data.canvasContainer.style;t.data.canvasContainer.style["-webkit-tap-highlight-color"]="rgba(0,0,0,0)",n.position="relative",n.zIndex="0",n.overflow="hidden";var r=e.cy.container();r.appendChild(t.data.canvasContainer),r.style["-webkit-tap-highlight-color"]="rgba(0,0,0,0)";var i={"-webkit-user-select":"none","-moz-user-select":"-moz-none","user-select":"none","-webkit-tap-highlight-color":"rgba(0,0,0,0)","outline-style":"none"};u&&u.userAgent.match(/msie|trident|edge/i)&&(i["-ms-touch-action"]="none",i["touch-action"]="none");for(var a=0;a arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; } function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function () {}; return { s: F, n: function () { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function (e) { throw e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function () { it = it.call(o); }, n: function () { var step = it.next(); normalCompletion = step.done; return step; }, e: function (e) { didErr = true; err = e; }, f: function () { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; } var _window = typeof window === 'undefined' ? null : window; // eslint-disable-line no-undef var navigator = _window ? _window.navigator : null; _window ? _window.document : null; var typeofstr = _typeof(''); var typeofobj = _typeof({}); var typeoffn = _typeof(function () {}); var typeofhtmlele = typeof HTMLElement === "undefined" ? "undefined" : _typeof(HTMLElement); var instanceStr = function instanceStr(obj) { return obj && obj.instanceString && fn$6(obj.instanceString) ? obj.instanceString() : null; }; var string = function string(obj) { return obj != null && _typeof(obj) == typeofstr; }; var fn$6 = function fn(obj) { return obj != null && _typeof(obj) === typeoffn; }; var array = function array(obj) { return !elementOrCollection(obj) && (Array.isArray ? Array.isArray(obj) : obj != null && obj instanceof Array); }; var plainObject = function plainObject(obj) { return obj != null && _typeof(obj) === typeofobj && !array(obj) && obj.constructor === Object; }; var object = function object(obj) { return obj != null && _typeof(obj) === typeofobj; }; var number$1 = function number(obj) { return obj != null && _typeof(obj) === _typeof(1) && !isNaN(obj); }; var integer = function integer(obj) { return number$1(obj) && Math.floor(obj) === obj; }; var htmlElement = function htmlElement(obj) { if ('undefined' === typeofhtmlele) { return undefined; } else { return null != obj && obj instanceof HTMLElement; } }; var elementOrCollection = function elementOrCollection(obj) { return element(obj) || collection(obj); }; var element = function element(obj) { return instanceStr(obj) === 'collection' && obj._private.single; }; var collection = function collection(obj) { return instanceStr(obj) === 'collection' && !obj._private.single; }; var core = function core(obj) { return instanceStr(obj) === 'core'; }; var stylesheet = function stylesheet(obj) { return instanceStr(obj) === 'stylesheet'; }; var event = function event(obj) { return instanceStr(obj) === 'event'; }; var emptyString = function emptyString(obj) { if (obj === undefined || obj === null) { // null is empty return true; } else if (obj === '' || obj.match(/^\s+$/)) { return true; // empty string is empty } return false; // otherwise, we don't know what we've got }; var domElement = function domElement(obj) { if (typeof HTMLElement === 'undefined') { return false; // we're not in a browser so it doesn't matter } else { return obj instanceof HTMLElement; } }; var boundingBox = function boundingBox(obj) { return plainObject(obj) && number$1(obj.x1) && number$1(obj.x2) && number$1(obj.y1) && number$1(obj.y2); }; var promise = function promise(obj) { return object(obj) && fn$6(obj.then); }; var ms = function ms() { return navigator && navigator.userAgent.match(/msie|trident|edge/i); }; // probably a better way to detect this... var memoize$1 = function memoize(fn, keyFn) { if (!keyFn) { keyFn = function keyFn() { if (arguments.length === 1) { return arguments[0]; } else if (arguments.length === 0) { return 'undefined'; } var args = []; for (var i = 0; i < arguments.length; i++) { args.push(arguments[i]); } return args.join('$'); }; } var memoizedFn = function memoizedFn() { var self = this; var args = arguments; var ret; var k = keyFn.apply(self, args); var cache = memoizedFn.cache; if (!(ret = cache[k])) { ret = cache[k] = fn.apply(self, args); } return ret; }; memoizedFn.cache = {}; return memoizedFn; }; var camel2dash = memoize$1(function (str) { return str.replace(/([A-Z])/g, function (v) { return '-' + v.toLowerCase(); }); }); var dash2camel = memoize$1(function (str) { return str.replace(/(-\w)/g, function (v) { return v[1].toUpperCase(); }); }); var prependCamel = memoize$1(function (prefix, str) { return prefix + str[0].toUpperCase() + str.substring(1); }, function (prefix, str) { return prefix + '$' + str; }); var capitalize = function capitalize(str) { if (emptyString(str)) { return str; } return str.charAt(0).toUpperCase() + str.substring(1); }; var number = '(?:[-+]?(?:(?:\\d+|\\d*\\.\\d+)(?:[Ee][+-]?\\d+)?))'; var rgba = 'rgb[a]?\\((' + number + '[%]?)\\s*,\\s*(' + number + '[%]?)\\s*,\\s*(' + number + '[%]?)(?:\\s*,\\s*(' + number + '))?\\)'; var rgbaNoBackRefs = 'rgb[a]?\\((?:' + number + '[%]?)\\s*,\\s*(?:' + number + '[%]?)\\s*,\\s*(?:' + number + '[%]?)(?:\\s*,\\s*(?:' + number + '))?\\)'; var hsla = 'hsl[a]?\\((' + number + ')\\s*,\\s*(' + number + '[%])\\s*,\\s*(' + number + '[%])(?:\\s*,\\s*(' + number + '))?\\)'; var hslaNoBackRefs = 'hsl[a]?\\((?:' + number + ')\\s*,\\s*(?:' + number + '[%])\\s*,\\s*(?:' + number + '[%])(?:\\s*,\\s*(?:' + number + '))?\\)'; var hex3 = '\\#[0-9a-fA-F]{3}'; var hex6 = '\\#[0-9a-fA-F]{6}'; var ascending = function ascending(a, b) { if (a < b) { return -1; } else if (a > b) { return 1; } else { return 0; } }; var descending = function descending(a, b) { return -1 * ascending(a, b); }; var extend = Object.assign != null ? Object.assign.bind(Object) : function (tgt) { var args = arguments; for (var i = 1; i < args.length; i++) { var obj = args[i]; if (obj == null) { continue; } var keys = Object.keys(obj); for (var j = 0; j < keys.length; j++) { var k = keys[j]; tgt[k] = obj[k]; } } return tgt; }; // get [r, g, b] from #abc or #aabbcc var hex2tuple = function hex2tuple(hex) { if (!(hex.length === 4 || hex.length === 7) || hex[0] !== '#') { return; } var shortHex = hex.length === 4; var r, g, b; var base = 16; if (shortHex) { r = parseInt(hex[1] + hex[1], base); g = parseInt(hex[2] + hex[2], base); b = parseInt(hex[3] + hex[3], base); } else { r = parseInt(hex[1] + hex[2], base); g = parseInt(hex[3] + hex[4], base); b = parseInt(hex[5] + hex[6], base); } return [r, g, b]; }; // get [r, g, b, a] from hsl(0, 0, 0) or hsla(0, 0, 0, 0) var hsl2tuple = function hsl2tuple(hsl) { var ret; var h, s, l, a, r, g, b; function hue2rgb(p, q, t) { if (t < 0) t += 1; if (t > 1) t -= 1; if (t < 1 / 6) return p + (q - p) * 6 * t; if (t < 1 / 2) return q; if (t < 2 / 3) return p + (q - p) * (2 / 3 - t) * 6; return p; } var m = new RegExp('^' + hsla + '$').exec(hsl); if (m) { // get hue h = parseInt(m[1]); if (h < 0) { h = (360 - -1 * h % 360) % 360; } else if (h > 360) { h = h % 360; } h /= 360; // normalise on [0, 1] s = parseFloat(m[2]); if (s < 0 || s > 100) { return; } // saturation is [0, 100] s = s / 100; // normalise on [0, 1] l = parseFloat(m[3]); if (l < 0 || l > 100) { return; } // lightness is [0, 100] l = l / 100; // normalise on [0, 1] a = m[4]; if (a !== undefined) { a = parseFloat(a); if (a < 0 || a > 1) { return; } // alpha is [0, 1] } // now, convert to rgb // code from http://mjijackson.com/2008/02/rgb-to-hsl-and-rgb-to-hsv-color-model-conversion-algorithms-in-javascript if (s === 0) { r = g = b = Math.round(l * 255); // achromatic } else { var q = l < 0.5 ? l * (1 + s) : l + s - l * s; var p = 2 * l - q; r = Math.round(255 * hue2rgb(p, q, h + 1 / 3)); g = Math.round(255 * hue2rgb(p, q, h)); b = Math.round(255 * hue2rgb(p, q, h - 1 / 3)); } ret = [r, g, b, a]; } return ret; }; // get [r, g, b, a] from rgb(0, 0, 0) or rgba(0, 0, 0, 0) var rgb2tuple = function rgb2tuple(rgb) { var ret; var m = new RegExp('^' + rgba + '$').exec(rgb); if (m) { ret = []; var isPct = []; for (var i = 1; i <= 3; i++) { var channel = m[i]; if (channel[channel.length - 1] === '%') { isPct[i] = true; } channel = parseFloat(channel); if (isPct[i]) { channel = channel / 100 * 255; // normalise to [0, 255] } if (channel < 0 || channel > 255) { return; } // invalid channel value ret.push(Math.floor(channel)); } var atLeastOneIsPct = isPct[1] || isPct[2] || isPct[3]; var allArePct = isPct[1] && isPct[2] && isPct[3]; if (atLeastOneIsPct && !allArePct) { return; } // must all be percent values if one is var alpha = m[4]; if (alpha !== undefined) { alpha = parseFloat(alpha); if (alpha < 0 || alpha > 1) { return; } // invalid alpha value ret.push(alpha); } } return ret; }; var colorname2tuple = function colorname2tuple(color) { return colors[color.toLowerCase()]; }; var color2tuple = function color2tuple(color) { return (array(color) ? color : null) || colorname2tuple(color) || hex2tuple(color) || rgb2tuple(color) || hsl2tuple(color); }; var colors = { // special colour names transparent: [0, 0, 0, 0], // NB alpha === 0 // regular colours aliceblue: [240, 248, 255], antiquewhite: [250, 235, 215], aqua: [0, 255, 255], aquamarine: [127, 255, 212], azure: [240, 255, 255], beige: [245, 245, 220], bisque: [255, 228, 196], black: [0, 0, 0], blanchedalmond: [255, 235, 205], blue: [0, 0, 255], blueviolet: [138, 43, 226], brown: [165, 42, 42], burlywood: [222, 184, 135], cadetblue: [95, 158, 160], chartreuse: [127, 255, 0], chocolate: [210, 105, 30], coral: [255, 127, 80], cornflowerblue: [100, 149, 237], cornsilk: [255, 248, 220], crimson: [220, 20, 60], cyan: [0, 255, 255], darkblue: [0, 0, 139], darkcyan: [0, 139, 139], darkgoldenrod: [184, 134, 11], darkgray: [169, 169, 169], darkgreen: [0, 100, 0], darkgrey: [169, 169, 169], darkkhaki: [189, 183, 107], darkmagenta: [139, 0, 139], darkolivegreen: [85, 107, 47], darkorange: [255, 140, 0], darkorchid: [153, 50, 204], darkred: [139, 0, 0], darksalmon: [233, 150, 122], darkseagreen: [143, 188, 143], darkslateblue: [72, 61, 139], darkslategray: [47, 79, 79], darkslategrey: [47, 79, 79], darkturquoise: [0, 206, 209], darkviolet: [148, 0, 211], deeppink: [255, 20, 147], deepskyblue: [0, 191, 255], dimgray: [105, 105, 105], dimgrey: [105, 105, 105], dodgerblue: [30, 144, 255], firebrick: [178, 34, 34], floralwhite: [255, 250, 240], forestgreen: [34, 139, 34], fuchsia: [255, 0, 255], gainsboro: [220, 220, 220], ghostwhite: [248, 248, 255], gold: [255, 215, 0], goldenrod: [218, 165, 32], gray: [128, 128, 128], grey: [128, 128, 128], green: [0, 128, 0], greenyellow: [173, 255, 47], honeydew: [240, 255, 240], hotpink: [255, 105, 180], indianred: [205, 92, 92], indigo: [75, 0, 130], ivory: [255, 255, 240], khaki: [240, 230, 140], lavender: [230, 230, 250], lavenderblush: [255, 240, 245], lawngreen: [124, 252, 0], lemonchiffon: [255, 250, 205], lightblue: [173, 216, 230], lightcoral: [240, 128, 128], lightcyan: [224, 255, 255], lightgoldenrodyellow: [250, 250, 210], lightgray: [211, 211, 211], lightgreen: [144, 238, 144], lightgrey: [211, 211, 211], lightpink: [255, 182, 193], lightsalmon: [255, 160, 122], lightseagreen: [32, 178, 170], lightskyblue: [135, 206, 250], lightslategray: [119, 136, 153], lightslategrey: [119, 136, 153], lightsteelblue: [176, 196, 222], lightyellow: [255, 255, 224], lime: [0, 255, 0], limegreen: [50, 205, 50], linen: [250, 240, 230], magenta: [255, 0, 255], maroon: [128, 0, 0], mediumaquamarine: [102, 205, 170], mediumblue: [0, 0, 205], mediumorchid: [186, 85, 211], mediumpurple: [147, 112, 219], mediumseagreen: [60, 179, 113], mediumslateblue: [123, 104, 238], mediumspringgreen: [0, 250, 154], mediumturquoise: [72, 209, 204], mediumvioletred: [199, 21, 133], midnightblue: [25, 25, 112], mintcream: [245, 255, 250], mistyrose: [255, 228, 225], moccasin: [255, 228, 181], navajowhite: [255, 222, 173], navy: [0, 0, 128], oldlace: [253, 245, 230], olive: [128, 128, 0], olivedrab: [107, 142, 35], orange: [255, 165, 0], orangered: [255, 69, 0], orchid: [218, 112, 214], palegoldenrod: [238, 232, 170], palegreen: [152, 251, 152], paleturquoise: [175, 238, 238], palevioletred: [219, 112, 147], papayawhip: [255, 239, 213], peachpuff: [255, 218, 185], peru: [205, 133, 63], pink: [255, 192, 203], plum: [221, 160, 221], powderblue: [176, 224, 230], purple: [128, 0, 128], red: [255, 0, 0], rosybrown: [188, 143, 143], royalblue: [65, 105, 225], saddlebrown: [139, 69, 19], salmon: [250, 128, 114], sandybrown: [244, 164, 96], seagreen: [46, 139, 87], seashell: [255, 245, 238], sienna: [160, 82, 45], silver: [192, 192, 192], skyblue: [135, 206, 235], slateblue: [106, 90, 205], slategray: [112, 128, 144], slategrey: [112, 128, 144], snow: [255, 250, 250], springgreen: [0, 255, 127], steelblue: [70, 130, 180], tan: [210, 180, 140], teal: [0, 128, 128], thistle: [216, 191, 216], tomato: [255, 99, 71], turquoise: [64, 224, 208], violet: [238, 130, 238], wheat: [245, 222, 179], white: [255, 255, 255], whitesmoke: [245, 245, 245], yellow: [255, 255, 0], yellowgreen: [154, 205, 50] }; // sets the value in a map (map may not be built) var setMap = function setMap(options) { var obj = options.map; var keys = options.keys; var l = keys.length; for (var i = 0; i < l; i++) { var key = keys[i]; if (plainObject(key)) { throw Error('Tried to set map with object key'); } if (i < keys.length - 1) { // extend the map if necessary if (obj[key] == null) { obj[key] = {}; } obj = obj[key]; } else { // set the value obj[key] = options.value; } } }; // gets the value in a map even if it's not built in places var getMap = function getMap(options) { var obj = options.map; var keys = options.keys; var l = keys.length; for (var i = 0; i < l; i++) { var key = keys[i]; if (plainObject(key)) { throw Error('Tried to get map with object key'); } obj = obj[key]; if (obj == null) { return obj; } } return obj; }; /** * Checks if `value` is the * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types) * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`) * * @static * @memberOf _ * @since 0.1.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is an object, else `false`. * @example * * _.isObject({}); * // => true * * _.isObject([1, 2, 3]); * // => true * * _.isObject(_.noop); * // => true * * _.isObject(null); * // => false */ function isObject(value) { var type = typeof value; return value != null && (type == 'object' || type == 'function'); } var isObject_1 = isObject; var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; function createCommonjsModule(fn, module) { return module = { exports: {} }, fn(module, module.exports), module.exports; } /** Detect free variable `global` from Node.js. */ var freeGlobal = typeof commonjsGlobal == 'object' && commonjsGlobal && commonjsGlobal.Object === Object && commonjsGlobal; var _freeGlobal = freeGlobal; /** Detect free variable `self`. */ var freeSelf = typeof self == 'object' && self && self.Object === Object && self; /** Used as a reference to the global object. */ var root = _freeGlobal || freeSelf || Function('return this')(); var _root = root; /** * Gets the timestamp of the number of milliseconds that have elapsed since * the Unix epoch (1 January 1970 00:00:00 UTC). * * @static * @memberOf _ * @since 2.4.0 * @category Date * @returns {number} Returns the timestamp. * @example * * _.defer(function(stamp) { * console.log(_.now() - stamp); * }, _.now()); * // => Logs the number of milliseconds it took for the deferred invocation. */ var now = function() { return _root.Date.now(); }; var now_1 = now; /** Used to match a single whitespace character. */ var reWhitespace = /\s/; /** * Used by `_.trim` and `_.trimEnd` to get the index of the last non-whitespace * character of `string`. * * @private * @param {string} string The string to inspect. * @returns {number} Returns the index of the last non-whitespace character. */ function trimmedEndIndex(string) { var index = string.length; while (index-- && reWhitespace.test(string.charAt(index))) {} return index; } var _trimmedEndIndex = trimmedEndIndex; /** Used to match leading whitespace. */ var reTrimStart = /^\s+/; /** * The base implementation of `_.trim`. * * @private * @param {string} string The string to trim. * @returns {string} Returns the trimmed string. */ function baseTrim(string) { return string ? string.slice(0, _trimmedEndIndex(string) + 1).replace(reTrimStart, '') : string; } var _baseTrim = baseTrim; /** Built-in value references. */ var Symbol$1 = _root.Symbol; var _Symbol = Symbol$1; /** Used for built-in method references. */ var objectProto$5 = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty$4 = objectProto$5.hasOwnProperty; /** * Used to resolve the * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) * of values. */ var nativeObjectToString$1 = objectProto$5.toString; /** Built-in value references. */ var symToStringTag$1 = _Symbol ? _Symbol.toStringTag : undefined; /** * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values. * * @private * @param {*} value The value to query. * @returns {string} Returns the raw `toStringTag`. */ function getRawTag(value) { var isOwn = hasOwnProperty$4.call(value, symToStringTag$1), tag = value[symToStringTag$1]; try { value[symToStringTag$1] = undefined; var unmasked = true; } catch (e) {} var result = nativeObjectToString$1.call(value); if (unmasked) { if (isOwn) { value[symToStringTag$1] = tag; } else { delete value[symToStringTag$1]; } } return result; } var _getRawTag = getRawTag; /** Used for built-in method references. */ var objectProto$4 = Object.prototype; /** * Used to resolve the * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) * of values. */ var nativeObjectToString = objectProto$4.toString; /** * Converts `value` to a string using `Object.prototype.toString`. * * @private * @param {*} value The value to convert. * @returns {string} Returns the converted string. */ function objectToString(value) { return nativeObjectToString.call(value); } var _objectToString = objectToString; /** `Object#toString` result references. */ var nullTag = '[object Null]', undefinedTag = '[object Undefined]'; /** Built-in value references. */ var symToStringTag = _Symbol ? _Symbol.toStringTag : undefined; /** * The base implementation of `getTag` without fallbacks for buggy environments. * * @private * @param {*} value The value to query. * @returns {string} Returns the `toStringTag`. */ function baseGetTag(value) { if (value == null) { return value === undefined ? undefinedTag : nullTag; } return (symToStringTag && symToStringTag in Object(value)) ? _getRawTag(value) : _objectToString(value); } var _baseGetTag = baseGetTag; /** * Checks if `value` is object-like. A value is object-like if it's not `null` * and has a `typeof` result of "object". * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is object-like, else `false`. * @example * * _.isObjectLike({}); * // => true * * _.isObjectLike([1, 2, 3]); * // => true * * _.isObjectLike(_.noop); * // => false * * _.isObjectLike(null); * // => false */ function isObjectLike(value) { return value != null && typeof value == 'object'; } var isObjectLike_1 = isObjectLike; /** `Object#toString` result references. */ var symbolTag = '[object Symbol]'; /** * Checks if `value` is classified as a `Symbol` primitive or object. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a symbol, else `false`. * @example * * _.isSymbol(Symbol.iterator); * // => true * * _.isSymbol('abc'); * // => false */ function isSymbol(value) { return typeof value == 'symbol' || (isObjectLike_1(value) && _baseGetTag(value) == symbolTag); } var isSymbol_1 = isSymbol; /** Used as references for various `Number` constants. */ var NAN = 0 / 0; /** Used to detect bad signed hexadecimal string values. */ var reIsBadHex = /^[-+]0x[0-9a-f]+$/i; /** Used to detect binary string values. */ var reIsBinary = /^0b[01]+$/i; /** Used to detect octal string values. */ var reIsOctal = /^0o[0-7]+$/i; /** Built-in method references without a dependency on `root`. */ var freeParseInt = parseInt; /** * Converts `value` to a number. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to process. * @returns {number} Returns the number. * @example * * _.toNumber(3.2); * // => 3.2 * * _.toNumber(Number.MIN_VALUE); * // => 5e-324 * * _.toNumber(Infinity); * // => Infinity * * _.toNumber('3.2'); * // => 3.2 */ function toNumber(value) { if (typeof value == 'number') { return value; } if (isSymbol_1(value)) { return NAN; } if (isObject_1(value)) { var other = typeof value.valueOf == 'function' ? value.valueOf() : value; value = isObject_1(other) ? (other + '') : other; } if (typeof value != 'string') { return value === 0 ? value : +value; } value = _baseTrim(value); var isBinary = reIsBinary.test(value); return (isBinary || reIsOctal.test(value)) ? freeParseInt(value.slice(2), isBinary ? 2 : 8) : (reIsBadHex.test(value) ? NAN : +value); } var toNumber_1 = toNumber; /** Error message constants. */ var FUNC_ERROR_TEXT$1 = 'Expected a function'; /* Built-in method references for those with the same name as other `lodash` methods. */ var nativeMax = Math.max, nativeMin = Math.min; /** * Creates a debounced function that delays invoking `func` until after `wait` * milliseconds have elapsed since the last time the debounced function was * invoked. The debounced function comes with a `cancel` method to cancel * delayed `func` invocations and a `flush` method to immediately invoke them. * Provide `options` to indicate whether `func` should be invoked on the * leading and/or trailing edge of the `wait` timeout. The `func` is invoked * with the last arguments provided to the debounced function. Subsequent * calls to the debounced function return the result of the last `func` * invocation. * * **Note:** If `leading` and `trailing` options are `true`, `func` is * invoked on the trailing edge of the timeout only if the debounced function * is invoked more than once during the `wait` timeout. * * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred * until to the next tick, similar to `setTimeout` with a timeout of `0`. * * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/) * for details over the differences between `_.debounce` and `_.throttle`. * * @static * @memberOf _ * @since 0.1.0 * @category Function * @param {Function} func The function to debounce. * @param {number} [wait=0] The number of milliseconds to delay. * @param {Object} [options={}] The options object. * @param {boolean} [options.leading=false] * Specify invoking on the leading edge of the timeout. * @param {number} [options.maxWait] * The maximum time `func` is allowed to be delayed before it's invoked. * @param {boolean} [options.trailing=true] * Specify invoking on the trailing edge of the timeout. * @returns {Function} Returns the new debounced function. * @example * * // Avoid costly calculations while the window size is in flux. * jQuery(window).on('resize', _.debounce(calculateLayout, 150)); * * // Invoke `sendMail` when clicked, debouncing subsequent calls. * jQuery(element).on('click', _.debounce(sendMail, 300, { * 'leading': true, * 'trailing': false * })); * * // Ensure `batchLog` is invoked once after 1 second of debounced calls. * var debounced = _.debounce(batchLog, 250, { 'maxWait': 1000 }); * var source = new EventSource('/stream'); * jQuery(source).on('message', debounced); * * // Cancel the trailing debounced invocation. * jQuery(window).on('popstate', debounced.cancel); */ function debounce(func, wait, options) { var lastArgs, lastThis, maxWait, result, timerId, lastCallTime, lastInvokeTime = 0, leading = false, maxing = false, trailing = true; if (typeof func != 'function') { throw new TypeError(FUNC_ERROR_TEXT$1); } wait = toNumber_1(wait) || 0; if (isObject_1(options)) { leading = !!options.leading; maxing = 'maxWait' in options; maxWait = maxing ? nativeMax(toNumber_1(options.maxWait) || 0, wait) : maxWait; trailing = 'trailing' in options ? !!options.trailing : trailing; } function invokeFunc(time) { var args = lastArgs, thisArg = lastThis; lastArgs = lastThis = undefined; lastInvokeTime = time; result = func.apply(thisArg, args); return result; } function leadingEdge(time) { // Reset any `maxWait` timer. lastInvokeTime = time; // Start the timer for the trailing edge. timerId = setTimeout(timerExpired, wait); // Invoke the leading edge. return leading ? invokeFunc(time) : result; } function remainingWait(time) { var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime, timeWaiting = wait - timeSinceLastCall; return maxing ? nativeMin(timeWaiting, maxWait - timeSinceLastInvoke) : timeWaiting; } function shouldInvoke(time) { var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime; // Either this is the first call, activity has stopped and we're at the // trailing edge, the system time has gone backwards and we're treating // it as the trailing edge, or we've hit the `maxWait` limit. return (lastCallTime === undefined || (timeSinceLastCall >= wait) || (timeSinceLastCall < 0) || (maxing && timeSinceLastInvoke >= maxWait)); } function timerExpired() { var time = now_1(); if (shouldInvoke(time)) { return trailingEdge(time); } // Restart the timer. timerId = setTimeout(timerExpired, remainingWait(time)); } function trailingEdge(time) { timerId = undefined; // Only invoke if we have `lastArgs` which means `func` has been // debounced at least once. if (trailing && lastArgs) { return invokeFunc(time); } lastArgs = lastThis = undefined; return result; } function cancel() { if (timerId !== undefined) { clearTimeout(timerId); } lastInvokeTime = 0; lastArgs = lastCallTime = lastThis = timerId = undefined; } function flush() { return timerId === undefined ? result : trailingEdge(now_1()); } function debounced() { var time = now_1(), isInvoking = shouldInvoke(time); lastArgs = arguments; lastThis = this; lastCallTime = time; if (isInvoking) { if (timerId === undefined) { return leadingEdge(lastCallTime); } if (maxing) { // Handle invocations in a tight loop. clearTimeout(timerId); timerId = setTimeout(timerExpired, wait); return invokeFunc(lastCallTime); } } if (timerId === undefined) { timerId = setTimeout(timerExpired, wait); } return result; } debounced.cancel = cancel; debounced.flush = flush; return debounced; } var debounce_1 = debounce; var performance = _window ? _window.performance : null; var pnow = performance && performance.now ? function () { return performance.now(); } : function () { return Date.now(); }; var raf = function () { if (_window) { if (_window.requestAnimationFrame) { return function (fn) { _window.requestAnimationFrame(fn); }; } else if (_window.mozRequestAnimationFrame) { return function (fn) { _window.mozRequestAnimationFrame(fn); }; } else if (_window.webkitRequestAnimationFrame) { return function (fn) { _window.webkitRequestAnimationFrame(fn); }; } else if (_window.msRequestAnimationFrame) { return function (fn) { _window.msRequestAnimationFrame(fn); }; } } return function (fn) { if (fn) { setTimeout(function () { fn(pnow()); }, 1000 / 60); } }; }(); var requestAnimationFrame = function requestAnimationFrame(fn) { return raf(fn); }; var performanceNow = pnow; var DEFAULT_HASH_SEED = 9261; var K = 65599; // 37 also works pretty well var DEFAULT_HASH_SEED_ALT = 5381; var hashIterableInts = function hashIterableInts(iterator) { var seed = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : DEFAULT_HASH_SEED; // sdbm/string-hash var hash = seed; var entry; for (;;) { entry = iterator.next(); if (entry.done) { break; } hash = hash * K + entry.value | 0; } return hash; }; var hashInt = function hashInt(num) { var seed = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : DEFAULT_HASH_SEED; // sdbm/string-hash return seed * K + num | 0; }; var hashIntAlt = function hashIntAlt(num) { var seed = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : DEFAULT_HASH_SEED_ALT; // djb2/string-hash return (seed << 5) + seed + num | 0; }; var combineHashes = function combineHashes(hash1, hash2) { return hash1 * 0x200000 + hash2; }; var combineHashesArray = function combineHashesArray(hashes) { return hashes[0] * 0x200000 + hashes[1]; }; var hashArrays = function hashArrays(hashes1, hashes2) { return [hashInt(hashes1[0], hashes2[0]), hashIntAlt(hashes1[1], hashes2[1])]; }; var hashIntsArray = function hashIntsArray(ints, seed) { var entry = { value: 0, done: false }; var i = 0; var length = ints.length; var iterator = { next: function next() { if (i < length) { entry.value = ints[i++]; } else { entry.done = true; } return entry; } }; return hashIterableInts(iterator, seed); }; var hashString = function hashString(str, seed) { var entry = { value: 0, done: false }; var i = 0; var length = str.length; var iterator = { next: function next() { if (i < length) { entry.value = str.charCodeAt(i++); } else { entry.done = true; } return entry; } }; return hashIterableInts(iterator, seed); }; var hashStrings = function hashStrings() { return hashStringsArray(arguments); }; var hashStringsArray = function hashStringsArray(strs) { var hash; for (var i = 0; i < strs.length; i++) { var str = strs[i]; if (i === 0) { hash = hashString(str); } else { hash = hashString(str, hash); } } return hash; }; /*global console */ var warningsEnabled = true; var warnSupported = console.warn != null; // eslint-disable-line no-console var traceSupported = console.trace != null; // eslint-disable-line no-console var MAX_INT$1 = Number.MAX_SAFE_INTEGER || 9007199254740991; var trueify = function trueify() { return true; }; var falsify = function falsify() { return false; }; var zeroify = function zeroify() { return 0; }; var noop$1 = function noop() {}; var error = function error(msg) { throw new Error(msg); }; var warnings = function warnings(enabled) { if (enabled !== undefined) { warningsEnabled = !!enabled; } else { return warningsEnabled; } }; var warn = function warn(msg) { /* eslint-disable no-console */ if (!warnings()) { return; } if (warnSupported) { console.warn(msg); } else { console.log(msg); if (traceSupported) { console.trace(); } } }; /* eslint-enable */ var clone = function clone(obj) { return extend({}, obj); }; // gets a shallow copy of the argument var copy = function copy(obj) { if (obj == null) { return obj; } if (array(obj)) { return obj.slice(); } else if (plainObject(obj)) { return clone(obj); } else { return obj; } }; var copyArray$1 = function copyArray(arr) { return arr.slice(); }; var uuid = function uuid(a, b /* placeholders */) { for ( // loop :) b = a = ''; // b - result , a - numeric letiable a++ < 36; // b += a * 51 & 52 // if "a" is not 9 or 14 or 19 or 24 ? // return a random number or 4 (a ^ 15 // if "a" is not 15 ? // generate a random number from 0 to 15 8 ^ Math.random() * (a ^ 20 ? 16 : 4) // unless "a" is 20, in which case a random number from 8 to 11 : 4 // otherwise 4 ).toString(16) : '-' // in other cases (if "a" is 9,14,19,24) insert "-" ) { } return b; }; var _staticEmptyObject = {}; var staticEmptyObject = function staticEmptyObject() { return _staticEmptyObject; }; var defaults$g = function defaults(_defaults) { var keys = Object.keys(_defaults); return function (opts) { var filledOpts = {}; for (var i = 0; i < keys.length; i++) { var key = keys[i]; var optVal = opts == null ? undefined : opts[key]; filledOpts[key] = optVal === undefined ? _defaults[key] : optVal; } return filledOpts; }; }; var removeFromArray = function removeFromArray(arr, ele, oneCopy) { for (var i = arr.length - 1; i >= 0; i--) { if (arr[i] === ele) { arr.splice(i, 1); if (oneCopy) { break; } } } }; var clearArray = function clearArray(arr) { arr.splice(0, arr.length); }; var push = function push(arr, otherArr) { for (var i = 0; i < otherArr.length; i++) { var el = otherArr[i]; arr.push(el); } }; var getPrefixedProperty = function getPrefixedProperty(obj, propName, prefix) { if (prefix) { propName = prependCamel(prefix, propName); // e.g. (labelWidth, source) => sourceLabelWidth } return obj[propName]; }; var setPrefixedProperty = function setPrefixedProperty(obj, propName, prefix, value) { if (prefix) { propName = prependCamel(prefix, propName); // e.g. (labelWidth, source) => sourceLabelWidth } obj[propName] = value; }; /* global Map */ var ObjectMap = /*#__PURE__*/function () { function ObjectMap() { _classCallCheck(this, ObjectMap); this._obj = {}; } _createClass(ObjectMap, [{ key: "set", value: function set(key, val) { this._obj[key] = val; return this; } }, { key: "delete", value: function _delete(key) { this._obj[key] = undefined; return this; } }, { key: "clear", value: function clear() { this._obj = {}; } }, { key: "has", value: function has(key) { return this._obj[key] !== undefined; } }, { key: "get", value: function get(key) { return this._obj[key]; } }]); return ObjectMap; }(); var Map$2 = typeof Map !== 'undefined' ? Map : ObjectMap; /* global Set */ var undef = "undefined" ; var ObjectSet = /*#__PURE__*/function () { function ObjectSet(arrayOrObjectSet) { _classCallCheck(this, ObjectSet); this._obj = Object.create(null); this.size = 0; if (arrayOrObjectSet != null) { var arr; if (arrayOrObjectSet.instanceString != null && arrayOrObjectSet.instanceString() === this.instanceString()) { arr = arrayOrObjectSet.toArray(); } else { arr = arrayOrObjectSet; } for (var i = 0; i < arr.length; i++) { this.add(arr[i]); } } } _createClass(ObjectSet, [{ key: "instanceString", value: function instanceString() { return 'set'; } }, { key: "add", value: function add(val) { var o = this._obj; if (o[val] !== 1) { o[val] = 1; this.size++; } } }, { key: "delete", value: function _delete(val) { var o = this._obj; if (o[val] === 1) { o[val] = 0; this.size--; } } }, { key: "clear", value: function clear() { this._obj = Object.create(null); } }, { key: "has", value: function has(val) { return this._obj[val] === 1; } }, { key: "toArray", value: function toArray() { var _this = this; return Object.keys(this._obj).filter(function (key) { return _this.has(key); }); } }, { key: "forEach", value: function forEach(callback, thisArg) { return this.toArray().forEach(callback, thisArg); } }]); return ObjectSet; }(); var Set$1 = (typeof Set === "undefined" ? "undefined" : _typeof(Set)) !== undef ? Set : ObjectSet; // represents a node or an edge var Element = function Element(cy, params) { var restore = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true; if (cy === undefined || params === undefined || !core(cy)) { error('An element must have a core reference and parameters set'); return; } var group = params.group; // try to automatically infer the group if unspecified if (group == null) { if (params.data && params.data.source != null && params.data.target != null) { group = 'edges'; } else { group = 'nodes'; } } // validate group if (group !== 'nodes' && group !== 'edges') { error('An element must be of type `nodes` or `edges`; you specified `' + group + '`'); return; } // make the element array-like, just like a collection this.length = 1; this[0] = this; // NOTE: when something is added here, add also to ele.json() var _p = this._private = { cy: cy, single: true, // indicates this is an element data: params.data || {}, // data object position: params.position || { x: 0, y: 0 }, // (x, y) position pair autoWidth: undefined, // width and height of nodes calculated by the renderer when set to special 'auto' value autoHeight: undefined, autoPadding: undefined, compoundBoundsClean: false, // whether the compound dimensions need to be recalculated the next time dimensions are read listeners: [], // array of bound listeners group: group, // string; 'nodes' or 'edges' style: {}, // properties as set by the style rstyle: {}, // properties for style sent from the renderer to the core styleCxts: [], // applied style contexts from the styler styleKeys: {}, // per-group keys of style property values removed: true, // whether it's inside the vis; true if removed (set true here since we call restore) selected: params.selected ? true : false, // whether it's selected selectable: params.selectable === undefined ? true : params.selectable ? true : false, // whether it's selectable locked: params.locked ? true : false, // whether the element is locked (cannot be moved) grabbed: false, // whether the element is grabbed by the mouse; renderer sets this privately grabbable: params.grabbable === undefined ? true : params.grabbable ? true : false, // whether the element can be grabbed pannable: params.pannable === undefined ? group === 'edges' ? true : false : params.pannable ? true : false, // whether the element has passthrough panning enabled active: false, // whether the element is active from user interaction classes: new Set$1(), // map ( className => true ) animation: { // object for currently-running animations current: [], queue: [] }, rscratch: {}, // object in which the renderer can store information scratch: params.scratch || {}, // scratch objects edges: [], // array of connected edges children: [], // array of children parent: params.parent && params.parent.isNode() ? params.parent : null, // parent ref traversalCache: {}, // cache of output of traversal functions backgrounding: false, // whether background images are loading bbCache: null, // cache of the current bounding box bbCacheShift: { x: 0, y: 0 }, // shift applied to cached bb to be applied on next get bodyBounds: null, // bounds cache of element body, w/o overlay overlayBounds: null, // bounds cache of element body, including overlay labelBounds: { // bounds cache of labels all: null, source: null, target: null, main: null }, arrowBounds: { // bounds cache of edge arrows source: null, target: null, 'mid-source': null, 'mid-target': null } }; if (_p.position.x == null) { _p.position.x = 0; } if (_p.position.y == null) { _p.position.y = 0; } // renderedPosition overrides if specified if (params.renderedPosition) { var rpos = params.renderedPosition; var pan = cy.pan(); var zoom = cy.zoom(); _p.position = { x: (rpos.x - pan.x) / zoom, y: (rpos.y - pan.y) / zoom }; } var classes = []; if (array(params.classes)) { classes = params.classes; } else if (string(params.classes)) { classes = params.classes.split(/\s+/); } for (var i = 0, l = classes.length; i < l; i++) { var cls = classes[i]; if (!cls || cls === '') { continue; } _p.classes.add(cls); } this.createEmitter(); var bypass = params.style || params.css; if (bypass) { warn('Setting a `style` bypass at element creation should be done only when absolutely necessary. Try to use the stylesheet instead.'); this.style(bypass); } if (restore === undefined || restore) { this.restore(); } }; var defineSearch = function defineSearch(params) { params = { bfs: params.bfs || !params.dfs, dfs: params.dfs || !params.bfs }; // from pseudocode on wikipedia return function searchFn(roots, fn, directed) { var options; if (plainObject(roots) && !elementOrCollection(roots)) { options = roots; roots = options.roots || options.root; fn = options.visit; directed = options.directed; } directed = arguments.length === 2 && !fn$6(fn) ? fn : directed; fn = fn$6(fn) ? fn : function () {}; var cy = this._private.cy; var v = roots = string(roots) ? this.filter(roots) : roots; var Q = []; var connectedNodes = []; var connectedBy = {}; var id2depth = {}; var V = {}; var j = 0; var found; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; // enqueue v for (var i = 0; i < v.length; i++) { var vi = v[i]; var viId = vi.id(); if (vi.isNode()) { Q.unshift(vi); if (params.bfs) { V[viId] = true; connectedNodes.push(vi); } id2depth[viId] = 0; } } var _loop = function _loop() { var v = params.bfs ? Q.shift() : Q.pop(); var vId = v.id(); if (params.dfs) { if (V[vId]) { return "continue"; } V[vId] = true; connectedNodes.push(v); } var depth = id2depth[vId]; var prevEdge = connectedBy[vId]; var src = prevEdge != null ? prevEdge.source() : null; var tgt = prevEdge != null ? prevEdge.target() : null; var prevNode = prevEdge == null ? undefined : v.same(src) ? tgt[0] : src[0]; var ret = void 0; ret = fn(v, prevEdge, prevNode, j++, depth); if (ret === true) { found = v; return "break"; } if (ret === false) { return "break"; } var vwEdges = v.connectedEdges().filter(function (e) { return (!directed || e.source().same(v)) && edges.has(e); }); for (var _i2 = 0; _i2 < vwEdges.length; _i2++) { var e = vwEdges[_i2]; var w = e.connectedNodes().filter(function (n) { return !n.same(v) && nodes.has(n); }); var wId = w.id(); if (w.length !== 0 && !V[wId]) { w = w[0]; Q.push(w); if (params.bfs) { V[wId] = true; connectedNodes.push(w); } connectedBy[wId] = e; id2depth[wId] = id2depth[vId] + 1; } } }; while (Q.length !== 0) { var _ret = _loop(); if (_ret === "continue") continue; if (_ret === "break") break; } var connectedEles = cy.collection(); for (var _i = 0; _i < connectedNodes.length; _i++) { var node = connectedNodes[_i]; var edge = connectedBy[node.id()]; if (edge != null) { connectedEles.push(edge); } connectedEles.push(node); } return { path: cy.collection(connectedEles), found: cy.collection(found) }; }; }; // search, spanning trees, etc var elesfn$v = { breadthFirstSearch: defineSearch({ bfs: true }), depthFirstSearch: defineSearch({ dfs: true }) }; // nice, short mathematical alias elesfn$v.bfs = elesfn$v.breadthFirstSearch; elesfn$v.dfs = elesfn$v.depthFirstSearch; var heap$1 = createCommonjsModule(function (module, exports) { // Generated by CoffeeScript 1.8.0 (function() { var Heap, defaultCmp, floor, heapify, heappop, heappush, heappushpop, heapreplace, insort, min, nlargest, nsmallest, updateItem, _siftdown, _siftup; floor = Math.floor, min = Math.min; /* Default comparison function to be used */ defaultCmp = function(x, y) { if (x < y) { return -1; } if (x > y) { return 1; } return 0; }; /* Insert item x in list a, and keep it sorted assuming a is sorted. If x is already in a, insert it to the right of the rightmost x. Optional args lo (default 0) and hi (default a.length) bound the slice of a to be searched. */ insort = function(a, x, lo, hi, cmp) { var mid; if (lo == null) { lo = 0; } if (cmp == null) { cmp = defaultCmp; } if (lo < 0) { throw new Error('lo must be non-negative'); } if (hi == null) { hi = a.length; } while (lo < hi) { mid = floor((lo + hi) / 2); if (cmp(x, a[mid]) < 0) { hi = mid; } else { lo = mid + 1; } } return ([].splice.apply(a, [lo, lo - lo].concat(x)), x); }; /* Push item onto heap, maintaining the heap invariant. */ heappush = function(array, item, cmp) { if (cmp == null) { cmp = defaultCmp; } array.push(item); return _siftdown(array, 0, array.length - 1, cmp); }; /* Pop the smallest item off the heap, maintaining the heap invariant. */ heappop = function(array, cmp) { var lastelt, returnitem; if (cmp == null) { cmp = defaultCmp; } lastelt = array.pop(); if (array.length) { returnitem = array[0]; array[0] = lastelt; _siftup(array, 0, cmp); } else { returnitem = lastelt; } return returnitem; }; /* Pop and return the current smallest value, and add the new item. This is more efficient than heappop() followed by heappush(), and can be more appropriate when using a fixed size heap. Note that the value returned may be larger than item! That constrains reasonable use of this routine unless written as part of a conditional replacement: if item > array[0] item = heapreplace(array, item) */ heapreplace = function(array, item, cmp) { var returnitem; if (cmp == null) { cmp = defaultCmp; } returnitem = array[0]; array[0] = item; _siftup(array, 0, cmp); return returnitem; }; /* Fast version of a heappush followed by a heappop. */ heappushpop = function(array, item, cmp) { var _ref; if (cmp == null) { cmp = defaultCmp; } if (array.length && cmp(array[0], item) < 0) { _ref = [array[0], item], item = _ref[0], array[0] = _ref[1]; _siftup(array, 0, cmp); } return item; }; /* Transform list into a heap, in-place, in O(array.length) time. */ heapify = function(array, cmp) { var i, _i, _len, _ref1, _results, _results1; if (cmp == null) { cmp = defaultCmp; } _ref1 = (function() { _results1 = []; for (var _j = 0, _ref = floor(array.length / 2); 0 <= _ref ? _j < _ref : _j > _ref; 0 <= _ref ? _j++ : _j--){ _results1.push(_j); } return _results1; }).apply(this).reverse(); _results = []; for (_i = 0, _len = _ref1.length; _i < _len; _i++) { i = _ref1[_i]; _results.push(_siftup(array, i, cmp)); } return _results; }; /* Update the position of the given item in the heap. This function should be called every time the item is being modified. */ updateItem = function(array, item, cmp) { var pos; if (cmp == null) { cmp = defaultCmp; } pos = array.indexOf(item); if (pos === -1) { return; } _siftdown(array, 0, pos, cmp); return _siftup(array, pos, cmp); }; /* Find the n largest elements in a dataset. */ nlargest = function(array, n, cmp) { var elem, result, _i, _len, _ref; if (cmp == null) { cmp = defaultCmp; } result = array.slice(0, n); if (!result.length) { return result; } heapify(result, cmp); _ref = array.slice(n); for (_i = 0, _len = _ref.length; _i < _len; _i++) { elem = _ref[_i]; heappushpop(result, elem, cmp); } return result.sort(cmp).reverse(); }; /* Find the n smallest elements in a dataset. */ nsmallest = function(array, n, cmp) { var elem, los, result, _i, _j, _len, _ref, _ref1, _results; if (cmp == null) { cmp = defaultCmp; } if (n * 10 <= array.length) { result = array.slice(0, n).sort(cmp); if (!result.length) { return result; } los = result[result.length - 1]; _ref = array.slice(n); for (_i = 0, _len = _ref.length; _i < _len; _i++) { elem = _ref[_i]; if (cmp(elem, los) < 0) { insort(result, elem, 0, null, cmp); result.pop(); los = result[result.length - 1]; } } return result; } heapify(array, cmp); _results = []; for (_j = 0, _ref1 = min(n, array.length); 0 <= _ref1 ? _j < _ref1 : _j > _ref1; 0 <= _ref1 ? ++_j : --_j) { _results.push(heappop(array, cmp)); } return _results; }; _siftdown = function(array, startpos, pos, cmp) { var newitem, parent, parentpos; if (cmp == null) { cmp = defaultCmp; } newitem = array[pos]; while (pos > startpos) { parentpos = (pos - 1) >> 1; parent = array[parentpos]; if (cmp(newitem, parent) < 0) { array[pos] = parent; pos = parentpos; continue; } break; } return array[pos] = newitem; }; _siftup = function(array, pos, cmp) { var childpos, endpos, newitem, rightpos, startpos; if (cmp == null) { cmp = defaultCmp; } endpos = array.length; startpos = pos; newitem = array[pos]; childpos = 2 * pos + 1; while (childpos < endpos) { rightpos = childpos + 1; if (rightpos < endpos && !(cmp(array[childpos], array[rightpos]) < 0)) { childpos = rightpos; } array[pos] = array[childpos]; pos = childpos; childpos = 2 * pos + 1; } array[pos] = newitem; return _siftdown(array, startpos, pos, cmp); }; Heap = (function() { Heap.push = heappush; Heap.pop = heappop; Heap.replace = heapreplace; Heap.pushpop = heappushpop; Heap.heapify = heapify; Heap.updateItem = updateItem; Heap.nlargest = nlargest; Heap.nsmallest = nsmallest; function Heap(cmp) { this.cmp = cmp != null ? cmp : defaultCmp; this.nodes = []; } Heap.prototype.push = function(x) { return heappush(this.nodes, x, this.cmp); }; Heap.prototype.pop = function() { return heappop(this.nodes, this.cmp); }; Heap.prototype.peek = function() { return this.nodes[0]; }; Heap.prototype.contains = function(x) { return this.nodes.indexOf(x) !== -1; }; Heap.prototype.replace = function(x) { return heapreplace(this.nodes, x, this.cmp); }; Heap.prototype.pushpop = function(x) { return heappushpop(this.nodes, x, this.cmp); }; Heap.prototype.heapify = function() { return heapify(this.nodes, this.cmp); }; Heap.prototype.updateItem = function(x) { return updateItem(this.nodes, x, this.cmp); }; Heap.prototype.clear = function() { return this.nodes = []; }; Heap.prototype.empty = function() { return this.nodes.length === 0; }; Heap.prototype.size = function() { return this.nodes.length; }; Heap.prototype.clone = function() { var heap; heap = new Heap(); heap.nodes = this.nodes.slice(0); return heap; }; Heap.prototype.toArray = function() { return this.nodes.slice(0); }; Heap.prototype.insert = Heap.prototype.push; Heap.prototype.top = Heap.prototype.peek; Heap.prototype.front = Heap.prototype.peek; Heap.prototype.has = Heap.prototype.contains; Heap.prototype.copy = Heap.prototype.clone; return Heap; })(); (function(root, factory) { { return module.exports = factory(); } })(this, function() { return Heap; }); }).call(commonjsGlobal); }); var heap = heap$1; var dijkstraDefaults = defaults$g({ root: null, weight: function weight(edge) { return 1; }, directed: false }); var elesfn$u = { dijkstra: function dijkstra(options) { if (!plainObject(options)) { var args = arguments; options = { root: args[0], weight: args[1], directed: args[2] }; } var _dijkstraDefaults = dijkstraDefaults(options), root = _dijkstraDefaults.root, weight = _dijkstraDefaults.weight, directed = _dijkstraDefaults.directed; var eles = this; var weightFn = weight; var source = string(root) ? this.filter(root)[0] : root[0]; var dist = {}; var prev = {}; var knownDist = {}; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; edges.unmergeBy(function (ele) { return ele.isLoop(); }); var getDist = function getDist(node) { return dist[node.id()]; }; var setDist = function setDist(node, d) { dist[node.id()] = d; Q.updateItem(node); }; var Q = new heap(function (a, b) { return getDist(a) - getDist(b); }); for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; dist[node.id()] = node.same(source) ? 0 : Infinity; Q.push(node); } var distBetween = function distBetween(u, v) { var uvs = (directed ? u.edgesTo(v) : u.edgesWith(v)).intersect(edges); var smallestDistance = Infinity; var smallestEdge; for (var _i = 0; _i < uvs.length; _i++) { var edge = uvs[_i]; var _weight = weightFn(edge); if (_weight < smallestDistance || !smallestEdge) { smallestDistance = _weight; smallestEdge = edge; } } return { edge: smallestEdge, dist: smallestDistance }; }; while (Q.size() > 0) { var u = Q.pop(); var smalletsDist = getDist(u); var uid = u.id(); knownDist[uid] = smalletsDist; if (smalletsDist === Infinity) { continue; } var neighbors = u.neighborhood().intersect(nodes); for (var _i2 = 0; _i2 < neighbors.length; _i2++) { var v = neighbors[_i2]; var vid = v.id(); var vDist = distBetween(u, v); var alt = smalletsDist + vDist.dist; if (alt < getDist(v)) { setDist(v, alt); prev[vid] = { node: u, edge: vDist.edge }; } } // for } // while return { distanceTo: function distanceTo(node) { var target = string(node) ? nodes.filter(node)[0] : node[0]; return knownDist[target.id()]; }, pathTo: function pathTo(node) { var target = string(node) ? nodes.filter(node)[0] : node[0]; var S = []; var u = target; var uid = u.id(); if (target.length > 0) { S.unshift(target); while (prev[uid]) { var p = prev[uid]; S.unshift(p.edge); S.unshift(p.node); u = p.node; uid = u.id(); } } return eles.spawn(S); } }; } }; var elesfn$t = { // kruskal's algorithm (finds min spanning tree, assuming undirected graph) // implemented from pseudocode from wikipedia kruskal: function kruskal(weightFn) { weightFn = weightFn || function (edge) { return 1; }; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; var numNodes = nodes.length; var forest = new Array(numNodes); var A = nodes; // assumes byGroup() creates new collections that can be safely mutated var findSetIndex = function findSetIndex(ele) { for (var i = 0; i < forest.length; i++) { var eles = forest[i]; if (eles.has(ele)) { return i; } } }; // start with one forest per node for (var i = 0; i < numNodes; i++) { forest[i] = this.spawn(nodes[i]); } var S = edges.sort(function (a, b) { return weightFn(a) - weightFn(b); }); for (var _i = 0; _i < S.length; _i++) { var edge = S[_i]; var u = edge.source()[0]; var v = edge.target()[0]; var setUIndex = findSetIndex(u); var setVIndex = findSetIndex(v); var setU = forest[setUIndex]; var setV = forest[setVIndex]; if (setUIndex !== setVIndex) { A.merge(edge); // combine forests for u and v setU.merge(setV); forest.splice(setVIndex, 1); } } return A; } }; var aStarDefaults = defaults$g({ root: null, goal: null, weight: function weight(edge) { return 1; }, heuristic: function heuristic(edge) { return 0; }, directed: false }); var elesfn$s = { // Implemented from pseudocode from wikipedia aStar: function aStar(options) { var cy = this.cy(); var _aStarDefaults = aStarDefaults(options), root = _aStarDefaults.root, goal = _aStarDefaults.goal, heuristic = _aStarDefaults.heuristic, directed = _aStarDefaults.directed, weight = _aStarDefaults.weight; root = cy.collection(root)[0]; goal = cy.collection(goal)[0]; var sid = root.id(); var tid = goal.id(); var gScore = {}; var fScore = {}; var closedSetIds = {}; var openSet = new heap(function (a, b) { return fScore[a.id()] - fScore[b.id()]; }); var openSetIds = new Set$1(); var cameFrom = {}; var cameFromEdge = {}; var addToOpenSet = function addToOpenSet(ele, id) { openSet.push(ele); openSetIds.add(id); }; var cMin, cMinId; var popFromOpenSet = function popFromOpenSet() { cMin = openSet.pop(); cMinId = cMin.id(); openSetIds["delete"](cMinId); }; var isInOpenSet = function isInOpenSet(id) { return openSetIds.has(id); }; addToOpenSet(root, sid); gScore[sid] = 0; fScore[sid] = heuristic(root); // Counter var steps = 0; // Main loop while (openSet.size() > 0) { popFromOpenSet(); steps++; // If we've found our goal, then we are done if (cMinId === tid) { var path = []; var pathNode = goal; var pathNodeId = tid; var pathEdge = cameFromEdge[pathNodeId]; for (;;) { path.unshift(pathNode); if (pathEdge != null) { path.unshift(pathEdge); } pathNode = cameFrom[pathNodeId]; if (pathNode == null) { break; } pathNodeId = pathNode.id(); pathEdge = cameFromEdge[pathNodeId]; } return { found: true, distance: gScore[cMinId], path: this.spawn(path), steps: steps }; } // Add cMin to processed nodes closedSetIds[cMinId] = true; // Update scores for neighbors of cMin // Take into account if graph is directed or not var vwEdges = cMin._private.edges; for (var i = 0; i < vwEdges.length; i++) { var e = vwEdges[i]; // edge must be in set of calling eles if (!this.hasElementWithId(e.id())) { continue; } // cMin must be the source of edge if directed if (directed && e.data('source') !== cMinId) { continue; } var wSrc = e.source(); var wTgt = e.target(); var w = wSrc.id() !== cMinId ? wSrc : wTgt; var wid = w.id(); // node must be in set of calling eles if (!this.hasElementWithId(wid)) { continue; } // if node is in closedSet, ignore it if (closedSetIds[wid]) { continue; } // New tentative score for node w var tempScore = gScore[cMinId] + weight(e); // Update gScore for node w if: // w not present in openSet // OR // tentative gScore is less than previous value // w not in openSet if (!isInOpenSet(wid)) { gScore[wid] = tempScore; fScore[wid] = tempScore + heuristic(w); addToOpenSet(w, wid); cameFrom[wid] = cMin; cameFromEdge[wid] = e; continue; } // w already in openSet, but with greater gScore if (tempScore < gScore[wid]) { gScore[wid] = tempScore; fScore[wid] = tempScore + heuristic(w); cameFrom[wid] = cMin; cameFromEdge[wid] = e; } } // End of neighbors update } // End of main loop // If we've reached here, then we've not reached our goal return { found: false, distance: undefined, path: undefined, steps: steps }; } }; // elesfn var floydWarshallDefaults = defaults$g({ weight: function weight(edge) { return 1; }, directed: false }); var elesfn$r = { // Implemented from pseudocode from wikipedia floydWarshall: function floydWarshall(options) { var cy = this.cy(); var _floydWarshallDefault = floydWarshallDefaults(options), weight = _floydWarshallDefault.weight, directed = _floydWarshallDefault.directed; var weightFn = weight; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; var N = nodes.length; var Nsq = N * N; var indexOf = function indexOf(node) { return nodes.indexOf(node); }; var atIndex = function atIndex(i) { return nodes[i]; }; // Initialize distance matrix var dist = new Array(Nsq); for (var n = 0; n < Nsq; n++) { var j = n % N; var i = (n - j) / N; if (i === j) { dist[n] = 0; } else { dist[n] = Infinity; } } // Initialize matrix used for path reconstruction // Initialize distance matrix var next = new Array(Nsq); var edgeNext = new Array(Nsq); // Process edges for (var _i = 0; _i < edges.length; _i++) { var edge = edges[_i]; var src = edge.source()[0]; var tgt = edge.target()[0]; if (src === tgt) { continue; } // exclude loops var s = indexOf(src); var t = indexOf(tgt); var st = s * N + t; // source to target index var _weight = weightFn(edge); // Check if already process another edge between same 2 nodes if (dist[st] > _weight) { dist[st] = _weight; next[st] = t; edgeNext[st] = edge; } // If undirected graph, process 'reversed' edge if (!directed) { var ts = t * N + s; // target to source index if (!directed && dist[ts] > _weight) { dist[ts] = _weight; next[ts] = s; edgeNext[ts] = edge; } } } // Main loop for (var k = 0; k < N; k++) { for (var _i2 = 0; _i2 < N; _i2++) { var ik = _i2 * N + k; for (var _j = 0; _j < N; _j++) { var ij = _i2 * N + _j; var kj = k * N + _j; if (dist[ik] + dist[kj] < dist[ij]) { dist[ij] = dist[ik] + dist[kj]; next[ij] = next[ik]; } } } } var getArgEle = function getArgEle(ele) { return (string(ele) ? cy.filter(ele) : ele)[0]; }; var indexOfArgEle = function indexOfArgEle(ele) { return indexOf(getArgEle(ele)); }; var res = { distance: function distance(from, to) { var i = indexOfArgEle(from); var j = indexOfArgEle(to); return dist[i * N + j]; }, path: function path(from, to) { var i = indexOfArgEle(from); var j = indexOfArgEle(to); var fromNode = atIndex(i); if (i === j) { return fromNode.collection(); } if (next[i * N + j] == null) { return cy.collection(); } var path = cy.collection(); var prev = i; var edge; path.merge(fromNode); while (i !== j) { prev = i; i = next[i * N + j]; edge = edgeNext[prev * N + i]; path.merge(edge); path.merge(atIndex(i)); } return path; } }; return res; } // floydWarshall }; // elesfn var bellmanFordDefaults = defaults$g({ weight: function weight(edge) { return 1; }, directed: false, root: null }); var elesfn$q = { // Implemented from pseudocode from wikipedia bellmanFord: function bellmanFord(options) { var _this = this; var _bellmanFordDefaults = bellmanFordDefaults(options), weight = _bellmanFordDefaults.weight, directed = _bellmanFordDefaults.directed, root = _bellmanFordDefaults.root; var weightFn = weight; var eles = this; var cy = this.cy(); var _this$byGroup = this.byGroup(), edges = _this$byGroup.edges, nodes = _this$byGroup.nodes; var numNodes = nodes.length; var infoMap = new Map$2(); var hasNegativeWeightCycle = false; var negativeWeightCycles = []; root = cy.collection(root)[0]; // in case selector passed edges.unmergeBy(function (edge) { return edge.isLoop(); }); var numEdges = edges.length; var getInfo = function getInfo(node) { var obj = infoMap.get(node.id()); if (!obj) { obj = {}; infoMap.set(node.id(), obj); } return obj; }; var getNodeFromTo = function getNodeFromTo(to) { return (string(to) ? cy.$(to) : to)[0]; }; var distanceTo = function distanceTo(to) { return getInfo(getNodeFromTo(to)).dist; }; var pathTo = function pathTo(to) { var thisStart = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : root; var end = getNodeFromTo(to); var path = []; var node = end; for (;;) { if (node == null) { return _this.spawn(); } var _getInfo = getInfo(node), edge = _getInfo.edge, pred = _getInfo.pred; path.unshift(node[0]); if (node.same(thisStart) && path.length > 0) { break; } if (edge != null) { path.unshift(edge); } node = pred; } return eles.spawn(path); }; // Initializations { dist, pred, edge } for (var i = 0; i < numNodes; i++) { var node = nodes[i]; var info = getInfo(node); if (node.same(root)) { info.dist = 0; } else { info.dist = Infinity; } info.pred = null; info.edge = null; } // Edges relaxation var replacedEdge = false; var checkForEdgeReplacement = function checkForEdgeReplacement(node1, node2, edge, info1, info2, weight) { var dist = info1.dist + weight; if (dist < info2.dist && !edge.same(info1.edge)) { info2.dist = dist; info2.pred = node1; info2.edge = edge; replacedEdge = true; } }; for (var _i = 1; _i < numNodes; _i++) { replacedEdge = false; for (var e = 0; e < numEdges; e++) { var edge = edges[e]; var src = edge.source(); var tgt = edge.target(); var _weight = weightFn(edge); var srcInfo = getInfo(src); var tgtInfo = getInfo(tgt); checkForEdgeReplacement(src, tgt, edge, srcInfo, tgtInfo, _weight); // If undirected graph, we need to take into account the 'reverse' edge if (!directed) { checkForEdgeReplacement(tgt, src, edge, tgtInfo, srcInfo, _weight); } } if (!replacedEdge) { break; } } if (replacedEdge) { // Check for negative weight cycles var negativeWeightCycleIds = []; for (var _e = 0; _e < numEdges; _e++) { var _edge = edges[_e]; var _src = _edge.source(); var _tgt = _edge.target(); var _weight2 = weightFn(_edge); var srcDist = getInfo(_src).dist; var tgtDist = getInfo(_tgt).dist; if (srcDist + _weight2 < tgtDist || !directed && tgtDist + _weight2 < srcDist) { if (!hasNegativeWeightCycle) { warn('Graph contains a negative weight cycle for Bellman-Ford'); hasNegativeWeightCycle = true; } if (options.findNegativeWeightCycles !== false) { var negativeNodes = []; if (srcDist + _weight2 < tgtDist) { negativeNodes.push(_src); } if (!directed && tgtDist + _weight2 < srcDist) { negativeNodes.push(_tgt); } var numNegativeNodes = negativeNodes.length; for (var n = 0; n < numNegativeNodes; n++) { var start = negativeNodes[n]; var cycle = [start]; cycle.push(getInfo(start).edge); var _node = getInfo(start).pred; while (cycle.indexOf(_node) === -1) { cycle.push(_node); cycle.push(getInfo(_node).edge); _node = getInfo(_node).pred; } cycle = cycle.slice(cycle.indexOf(_node)); var smallestId = cycle[0].id(); var smallestIndex = 0; for (var c = 2; c < cycle.length; c += 2) { if (cycle[c].id() < smallestId) { smallestId = cycle[c].id(); smallestIndex = c; } } cycle = cycle.slice(smallestIndex).concat(cycle.slice(0, smallestIndex)); cycle.push(cycle[0]); var cycleId = cycle.map(function (el) { return el.id(); }).join(","); if (negativeWeightCycleIds.indexOf(cycleId) === -1) { negativeWeightCycles.push(eles.spawn(cycle)); negativeWeightCycleIds.push(cycleId); } } } else { break; } } } } return { distanceTo: distanceTo, pathTo: pathTo, hasNegativeWeightCycle: hasNegativeWeightCycle, negativeWeightCycles: negativeWeightCycles }; } // bellmanFord }; // elesfn var sqrt2 = Math.sqrt(2); // Function which colapses 2 (meta) nodes into one // Updates the remaining edge lists // Receives as a paramater the edge which causes the collapse var collapse = function collapse(edgeIndex, nodeMap, remainingEdges) { if (remainingEdges.length === 0) { error("Karger-Stein must be run on a connected (sub)graph"); } var edgeInfo = remainingEdges[edgeIndex]; var sourceIn = edgeInfo[1]; var targetIn = edgeInfo[2]; var partition1 = nodeMap[sourceIn]; var partition2 = nodeMap[targetIn]; var newEdges = remainingEdges; // re-use array // Delete all edges between partition1 and partition2 for (var i = newEdges.length - 1; i >= 0; i--) { var edge = newEdges[i]; var src = edge[1]; var tgt = edge[2]; if (nodeMap[src] === partition1 && nodeMap[tgt] === partition2 || nodeMap[src] === partition2 && nodeMap[tgt] === partition1) { newEdges.splice(i, 1); } } // All edges pointing to partition2 should now point to partition1 for (var _i = 0; _i < newEdges.length; _i++) { var _edge = newEdges[_i]; if (_edge[1] === partition2) { // Check source newEdges[_i] = _edge.slice(); // copy newEdges[_i][1] = partition1; } else if (_edge[2] === partition2) { // Check target newEdges[_i] = _edge.slice(); // copy newEdges[_i][2] = partition1; } } // Move all nodes from partition2 to partition1 for (var _i2 = 0; _i2 < nodeMap.length; _i2++) { if (nodeMap[_i2] === partition2) { nodeMap[_i2] = partition1; } } return newEdges; }; // Contracts a graph until we reach a certain number of meta nodes var contractUntil = function contractUntil(metaNodeMap, remainingEdges, size, sizeLimit) { while (size > sizeLimit) { // Choose an edge randomly var edgeIndex = Math.floor(Math.random() * remainingEdges.length); // Collapse graph based on edge remainingEdges = collapse(edgeIndex, metaNodeMap, remainingEdges); size--; } return remainingEdges; }; var elesfn$p = { // Computes the minimum cut of an undirected graph // Returns the correct answer with high probability kargerStein: function kargerStein() { var _this = this; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; edges.unmergeBy(function (edge) { return edge.isLoop(); }); var numNodes = nodes.length; var numEdges = edges.length; var numIter = Math.ceil(Math.pow(Math.log(numNodes) / Math.LN2, 2)); var stopSize = Math.floor(numNodes / sqrt2); if (numNodes < 2) { error('At least 2 nodes are required for Karger-Stein algorithm'); return undefined; } // Now store edge destination as indexes // Format for each edge (edge index, source node index, target node index) var edgeIndexes = []; for (var i = 0; i < numEdges; i++) { var e = edges[i]; edgeIndexes.push([i, nodes.indexOf(e.source()), nodes.indexOf(e.target())]); } // We will store the best cut found here var minCutSize = Infinity; var minCutEdgeIndexes = []; var minCutNodeMap = new Array(numNodes); // Initial meta node partition var metaNodeMap = new Array(numNodes); var metaNodeMap2 = new Array(numNodes); var copyNodesMap = function copyNodesMap(from, to) { for (var _i3 = 0; _i3 < numNodes; _i3++) { to[_i3] = from[_i3]; } }; // Main loop for (var iter = 0; iter <= numIter; iter++) { // Reset meta node partition for (var _i4 = 0; _i4 < numNodes; _i4++) { metaNodeMap[_i4] = _i4; } // Contract until stop point (stopSize nodes) var edgesState = contractUntil(metaNodeMap, edgeIndexes.slice(), numNodes, stopSize); var edgesState2 = edgesState.slice(); // copy // Create a copy of the colapsed nodes state copyNodesMap(metaNodeMap, metaNodeMap2); // Run 2 iterations starting in the stop state var res1 = contractUntil(metaNodeMap, edgesState, stopSize, 2); var res2 = contractUntil(metaNodeMap2, edgesState2, stopSize, 2); // Is any of the 2 results the best cut so far? if (res1.length <= res2.length && res1.length < minCutSize) { minCutSize = res1.length; minCutEdgeIndexes = res1; copyNodesMap(metaNodeMap, minCutNodeMap); } else if (res2.length <= res1.length && res2.length < minCutSize) { minCutSize = res2.length; minCutEdgeIndexes = res2; copyNodesMap(metaNodeMap2, minCutNodeMap); } } // end of main loop // Construct result var cut = this.spawn(minCutEdgeIndexes.map(function (e) { return edges[e[0]]; })); var partition1 = this.spawn(); var partition2 = this.spawn(); // traverse metaNodeMap for best cut var witnessNodePartition = minCutNodeMap[0]; for (var _i5 = 0; _i5 < minCutNodeMap.length; _i5++) { var partitionId = minCutNodeMap[_i5]; var node = nodes[_i5]; if (partitionId === witnessNodePartition) { partition1.merge(node); } else { partition2.merge(node); } } // construct components corresponding to each disjoint subset of nodes var constructComponent = function constructComponent(subset) { var component = _this.spawn(); subset.forEach(function (node) { component.merge(node); node.connectedEdges().forEach(function (edge) { // ensure edge is within calling collection and edge is not in cut if (_this.contains(edge) && !cut.contains(edge)) { component.merge(edge); } }); }); return component; }; var components = [constructComponent(partition1), constructComponent(partition2)]; var ret = { cut: cut, components: components, // n.b. partitions are included to be compatible with the old api spec // (could be removed in a future major version) partition1: partition1, partition2: partition2 }; return ret; } }; // elesfn var copyPosition = function copyPosition(p) { return { x: p.x, y: p.y }; }; var modelToRenderedPosition = function modelToRenderedPosition(p, zoom, pan) { return { x: p.x * zoom + pan.x, y: p.y * zoom + pan.y }; }; var renderedToModelPosition = function renderedToModelPosition(p, zoom, pan) { return { x: (p.x - pan.x) / zoom, y: (p.y - pan.y) / zoom }; }; var array2point = function array2point(arr) { return { x: arr[0], y: arr[1] }; }; var min = function min(arr) { var begin = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; var end = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : arr.length; var min = Infinity; for (var i = begin; i < end; i++) { var val = arr[i]; if (isFinite(val)) { min = Math.min(val, min); } } return min; }; var max = function max(arr) { var begin = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; var end = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : arr.length; var max = -Infinity; for (var i = begin; i < end; i++) { var val = arr[i]; if (isFinite(val)) { max = Math.max(val, max); } } return max; }; var mean = function mean(arr) { var begin = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; var end = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : arr.length; var total = 0; var n = 0; for (var i = begin; i < end; i++) { var val = arr[i]; if (isFinite(val)) { total += val; n++; } } return total / n; }; var median = function median(arr) { var begin = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; var end = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : arr.length; var copy = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true; var sort = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true; var includeHoles = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : true; if (copy) { arr = arr.slice(begin, end); } else { if (end < arr.length) { arr.splice(end, arr.length - end); } if (begin > 0) { arr.splice(0, begin); } } // all non finite (e.g. Infinity, NaN) elements must be -Infinity so they go to the start var off = 0; // offset from non-finite values for (var i = arr.length - 1; i >= 0; i--) { var v = arr[i]; if (includeHoles) { if (!isFinite(v)) { arr[i] = -Infinity; off++; } } else { // just remove it if we don't want to consider holes arr.splice(i, 1); } } if (sort) { arr.sort(function (a, b) { return a - b; }); // requires copy = true if you don't want to change the orig } var len = arr.length; var mid = Math.floor(len / 2); if (len % 2 !== 0) { return arr[mid + 1 + off]; } else { return (arr[mid - 1 + off] + arr[mid + off]) / 2; } }; var deg2rad = function deg2rad(deg) { return Math.PI * deg / 180; }; var getAngleFromDisp = function getAngleFromDisp(dispX, dispY) { return Math.atan2(dispY, dispX) - Math.PI / 2; }; var log2 = Math.log2 || function (n) { return Math.log(n) / Math.log(2); }; var signum = function signum(x) { if (x > 0) { return 1; } else if (x < 0) { return -1; } else { return 0; } }; var dist = function dist(p1, p2) { return Math.sqrt(sqdist(p1, p2)); }; var sqdist = function sqdist(p1, p2) { var dx = p2.x - p1.x; var dy = p2.y - p1.y; return dx * dx + dy * dy; }; var inPlaceSumNormalize = function inPlaceSumNormalize(v) { var length = v.length; // First, get sum of all elements var total = 0; for (var i = 0; i < length; i++) { total += v[i]; } // Now, divide each by the sum of all elements for (var _i = 0; _i < length; _i++) { v[_i] = v[_i] / total; } return v; }; // from http://en.wikipedia.org/wiki/Bézier_curve#Quadratic_curves var qbezierAt = function qbezierAt(p0, p1, p2, t) { return (1 - t) * (1 - t) * p0 + 2 * (1 - t) * t * p1 + t * t * p2; }; var qbezierPtAt = function qbezierPtAt(p0, p1, p2, t) { return { x: qbezierAt(p0.x, p1.x, p2.x, t), y: qbezierAt(p0.y, p1.y, p2.y, t) }; }; var lineAt = function lineAt(p0, p1, t, d) { var vec = { x: p1.x - p0.x, y: p1.y - p0.y }; var vecDist = dist(p0, p1); var normVec = { x: vec.x / vecDist, y: vec.y / vecDist }; t = t == null ? 0 : t; d = d != null ? d : t * vecDist; return { x: p0.x + normVec.x * d, y: p0.y + normVec.y * d }; }; var bound = function bound(min, val, max) { return Math.max(min, Math.min(max, val)); }; // makes a full bb (x1, y1, x2, y2, w, h) from implicit params var makeBoundingBox = function makeBoundingBox(bb) { if (bb == null) { return { x1: Infinity, y1: Infinity, x2: -Infinity, y2: -Infinity, w: 0, h: 0 }; } else if (bb.x1 != null && bb.y1 != null) { if (bb.x2 != null && bb.y2 != null && bb.x2 >= bb.x1 && bb.y2 >= bb.y1) { return { x1: bb.x1, y1: bb.y1, x2: bb.x2, y2: bb.y2, w: bb.x2 - bb.x1, h: bb.y2 - bb.y1 }; } else if (bb.w != null && bb.h != null && bb.w >= 0 && bb.h >= 0) { return { x1: bb.x1, y1: bb.y1, x2: bb.x1 + bb.w, y2: bb.y1 + bb.h, w: bb.w, h: bb.h }; } } }; var copyBoundingBox = function copyBoundingBox(bb) { return { x1: bb.x1, x2: bb.x2, w: bb.w, y1: bb.y1, y2: bb.y2, h: bb.h }; }; var clearBoundingBox = function clearBoundingBox(bb) { bb.x1 = Infinity; bb.y1 = Infinity; bb.x2 = -Infinity; bb.y2 = -Infinity; bb.w = 0; bb.h = 0; }; var shiftBoundingBox = function shiftBoundingBox(bb, dx, dy) { return { x1: bb.x1 + dx, x2: bb.x2 + dx, y1: bb.y1 + dy, y2: bb.y2 + dy, w: bb.w, h: bb.h }; }; var updateBoundingBox = function updateBoundingBox(bb1, bb2) { // update bb1 with bb2 bounds bb1.x1 = Math.min(bb1.x1, bb2.x1); bb1.x2 = Math.max(bb1.x2, bb2.x2); bb1.w = bb1.x2 - bb1.x1; bb1.y1 = Math.min(bb1.y1, bb2.y1); bb1.y2 = Math.max(bb1.y2, bb2.y2); bb1.h = bb1.y2 - bb1.y1; }; var expandBoundingBoxByPoint = function expandBoundingBoxByPoint(bb, x, y) { bb.x1 = Math.min(bb.x1, x); bb.x2 = Math.max(bb.x2, x); bb.w = bb.x2 - bb.x1; bb.y1 = Math.min(bb.y1, y); bb.y2 = Math.max(bb.y2, y); bb.h = bb.y2 - bb.y1; }; var expandBoundingBox = function expandBoundingBox(bb) { var padding = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; bb.x1 -= padding; bb.x2 += padding; bb.y1 -= padding; bb.y2 += padding; bb.w = bb.x2 - bb.x1; bb.h = bb.y2 - bb.y1; return bb; }; var expandBoundingBoxSides = function expandBoundingBoxSides(bb) { var padding = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [0]; var top, right, bottom, left; if (padding.length === 1) { top = right = bottom = left = padding[0]; } else if (padding.length === 2) { top = bottom = padding[0]; left = right = padding[1]; } else if (padding.length === 4) { var _padding = _slicedToArray(padding, 4); top = _padding[0]; right = _padding[1]; bottom = _padding[2]; left = _padding[3]; } bb.x1 -= left; bb.x2 += right; bb.y1 -= top; bb.y2 += bottom; bb.w = bb.x2 - bb.x1; bb.h = bb.y2 - bb.y1; return bb; }; // assign the values of bb2 into bb1 var assignBoundingBox = function assignBoundingBox(bb1, bb2) { bb1.x1 = bb2.x1; bb1.y1 = bb2.y1; bb1.x2 = bb2.x2; bb1.y2 = bb2.y2; bb1.w = bb1.x2 - bb1.x1; bb1.h = bb1.y2 - bb1.y1; }; var boundingBoxesIntersect = function boundingBoxesIntersect(bb1, bb2) { // case: one bb to right of other if (bb1.x1 > bb2.x2) { return false; } if (bb2.x1 > bb1.x2) { return false; } // case: one bb to left of other if (bb1.x2 < bb2.x1) { return false; } if (bb2.x2 < bb1.x1) { return false; } // case: one bb above other if (bb1.y2 < bb2.y1) { return false; } if (bb2.y2 < bb1.y1) { return false; } // case: one bb below other if (bb1.y1 > bb2.y2) { return false; } if (bb2.y1 > bb1.y2) { return false; } // otherwise, must have some overlap return true; }; var inBoundingBox = function inBoundingBox(bb, x, y) { return bb.x1 <= x && x <= bb.x2 && bb.y1 <= y && y <= bb.y2; }; var pointInBoundingBox = function pointInBoundingBox(bb, pt) { return inBoundingBox(bb, pt.x, pt.y); }; var boundingBoxInBoundingBox = function boundingBoxInBoundingBox(bb1, bb2) { return inBoundingBox(bb1, bb2.x1, bb2.y1) && inBoundingBox(bb1, bb2.x2, bb2.y2); }; var roundRectangleIntersectLine = function roundRectangleIntersectLine(x, y, nodeX, nodeY, width, height, padding) { var radius = arguments.length > 7 && arguments[7] !== undefined ? arguments[7] : 'auto'; var cornerRadius = radius === 'auto' ? getRoundRectangleRadius(width, height) : radius; var halfWidth = width / 2; var halfHeight = height / 2; cornerRadius = Math.min(cornerRadius, halfWidth, halfHeight); var doWidth = cornerRadius !== halfWidth, doHeight = cornerRadius !== halfHeight; // Check intersections with straight line segments var straightLineIntersections; // Top segment, left to right if (doWidth) { var topStartX = nodeX - halfWidth + cornerRadius - padding; var topStartY = nodeY - halfHeight - padding; var topEndX = nodeX + halfWidth - cornerRadius + padding; var topEndY = topStartY; straightLineIntersections = finiteLinesIntersect(x, y, nodeX, nodeY, topStartX, topStartY, topEndX, topEndY, false); if (straightLineIntersections.length > 0) { return straightLineIntersections; } } // Right segment, top to bottom if (doHeight) { var rightStartX = nodeX + halfWidth + padding; var rightStartY = nodeY - halfHeight + cornerRadius - padding; var rightEndX = rightStartX; var rightEndY = nodeY + halfHeight - cornerRadius + padding; straightLineIntersections = finiteLinesIntersect(x, y, nodeX, nodeY, rightStartX, rightStartY, rightEndX, rightEndY, false); if (straightLineIntersections.length > 0) { return straightLineIntersections; } } // Bottom segment, left to right if (doWidth) { var bottomStartX = nodeX - halfWidth + cornerRadius - padding; var bottomStartY = nodeY + halfHeight + padding; var bottomEndX = nodeX + halfWidth - cornerRadius + padding; var bottomEndY = bottomStartY; straightLineIntersections = finiteLinesIntersect(x, y, nodeX, nodeY, bottomStartX, bottomStartY, bottomEndX, bottomEndY, false); if (straightLineIntersections.length > 0) { return straightLineIntersections; } } // Left segment, top to bottom if (doHeight) { var leftStartX = nodeX - halfWidth - padding; var leftStartY = nodeY - halfHeight + cornerRadius - padding; var leftEndX = leftStartX; var leftEndY = nodeY + halfHeight - cornerRadius + padding; straightLineIntersections = finiteLinesIntersect(x, y, nodeX, nodeY, leftStartX, leftStartY, leftEndX, leftEndY, false); if (straightLineIntersections.length > 0) { return straightLineIntersections; } } // Check intersections with arc segments var arcIntersections; // Top Left { var topLeftCenterX = nodeX - halfWidth + cornerRadius; var topLeftCenterY = nodeY - halfHeight + cornerRadius; arcIntersections = intersectLineCircle(x, y, nodeX, nodeY, topLeftCenterX, topLeftCenterY, cornerRadius + padding); // Ensure the intersection is on the desired quarter of the circle if (arcIntersections.length > 0 && arcIntersections[0] <= topLeftCenterX && arcIntersections[1] <= topLeftCenterY) { return [arcIntersections[0], arcIntersections[1]]; } } // Top Right { var topRightCenterX = nodeX + halfWidth - cornerRadius; var topRightCenterY = nodeY - halfHeight + cornerRadius; arcIntersections = intersectLineCircle(x, y, nodeX, nodeY, topRightCenterX, topRightCenterY, cornerRadius + padding); // Ensure the intersection is on the desired quarter of the circle if (arcIntersections.length > 0 && arcIntersections[0] >= topRightCenterX && arcIntersections[1] <= topRightCenterY) { return [arcIntersections[0], arcIntersections[1]]; } } // Bottom Right { var bottomRightCenterX = nodeX + halfWidth - cornerRadius; var bottomRightCenterY = nodeY + halfHeight - cornerRadius; arcIntersections = intersectLineCircle(x, y, nodeX, nodeY, bottomRightCenterX, bottomRightCenterY, cornerRadius + padding); // Ensure the intersection is on the desired quarter of the circle if (arcIntersections.length > 0 && arcIntersections[0] >= bottomRightCenterX && arcIntersections[1] >= bottomRightCenterY) { return [arcIntersections[0], arcIntersections[1]]; } } // Bottom Left { var bottomLeftCenterX = nodeX - halfWidth + cornerRadius; var bottomLeftCenterY = nodeY + halfHeight - cornerRadius; arcIntersections = intersectLineCircle(x, y, nodeX, nodeY, bottomLeftCenterX, bottomLeftCenterY, cornerRadius + padding); // Ensure the intersection is on the desired quarter of the circle if (arcIntersections.length > 0 && arcIntersections[0] <= bottomLeftCenterX && arcIntersections[1] >= bottomLeftCenterY) { return [arcIntersections[0], arcIntersections[1]]; } } return []; // if nothing }; var inLineVicinity = function inLineVicinity(x, y, lx1, ly1, lx2, ly2, tolerance) { var t = tolerance; var x1 = Math.min(lx1, lx2); var x2 = Math.max(lx1, lx2); var y1 = Math.min(ly1, ly2); var y2 = Math.max(ly1, ly2); return x1 - t <= x && x <= x2 + t && y1 - t <= y && y <= y2 + t; }; var inBezierVicinity = function inBezierVicinity(x, y, x1, y1, x2, y2, x3, y3, tolerance) { var bb = { x1: Math.min(x1, x3, x2) - tolerance, x2: Math.max(x1, x3, x2) + tolerance, y1: Math.min(y1, y3, y2) - tolerance, y2: Math.max(y1, y3, y2) + tolerance }; // if outside the rough bounding box for the bezier, then it can't be a hit if (x < bb.x1 || x > bb.x2 || y < bb.y1 || y > bb.y2) { // console.log('bezier out of rough bb') return false; } else { // console.log('do more expensive check'); return true; } }; var solveQuadratic = function solveQuadratic(a, b, c, val) { c -= val; var r = b * b - 4 * a * c; if (r < 0) { return []; } var sqrtR = Math.sqrt(r); var denom = 2 * a; var root1 = (-b + sqrtR) / denom; var root2 = (-b - sqrtR) / denom; return [root1, root2]; }; var solveCubic = function solveCubic(a, b, c, d, result) { // Solves a cubic function, returns root in form [r1, i1, r2, i2, r3, i3], where // r is the real component, i is the imaginary component // An implementation of the Cardano method from the year 1545 // http://en.wikipedia.org/wiki/Cubic_function#The_nature_of_the_roots var epsilon = 0.00001; // avoid division by zero while keeping the overall expression close in value if (a === 0) { a = epsilon; } b /= a; c /= a; d /= a; var discriminant, q, r, dum1, s, t, term1, r13; q = (3.0 * c - b * b) / 9.0; r = -(27.0 * d) + b * (9.0 * c - 2.0 * (b * b)); r /= 54.0; discriminant = q * q * q + r * r; result[1] = 0; term1 = b / 3.0; if (discriminant > 0) { s = r + Math.sqrt(discriminant); s = s < 0 ? -Math.pow(-s, 1.0 / 3.0) : Math.pow(s, 1.0 / 3.0); t = r - Math.sqrt(discriminant); t = t < 0 ? -Math.pow(-t, 1.0 / 3.0) : Math.pow(t, 1.0 / 3.0); result[0] = -term1 + s + t; term1 += (s + t) / 2.0; result[4] = result[2] = -term1; term1 = Math.sqrt(3.0) * (-t + s) / 2; result[3] = term1; result[5] = -term1; return; } result[5] = result[3] = 0; if (discriminant === 0) { r13 = r < 0 ? -Math.pow(-r, 1.0 / 3.0) : Math.pow(r, 1.0 / 3.0); result[0] = -term1 + 2.0 * r13; result[4] = result[2] = -(r13 + term1); return; } q = -q; dum1 = q * q * q; dum1 = Math.acos(r / Math.sqrt(dum1)); r13 = 2.0 * Math.sqrt(q); result[0] = -term1 + r13 * Math.cos(dum1 / 3.0); result[2] = -term1 + r13 * Math.cos((dum1 + 2.0 * Math.PI) / 3.0); result[4] = -term1 + r13 * Math.cos((dum1 + 4.0 * Math.PI) / 3.0); return; }; var sqdistToQuadraticBezier = function sqdistToQuadraticBezier(x, y, x1, y1, x2, y2, x3, y3) { // Find minimum distance by using the minimum of the distance // function between the given point and the curve // This gives the coefficients of the resulting cubic equation // whose roots tell us where a possible minimum is // (Coefficients are divided by 4) var a = 1.0 * x1 * x1 - 4 * x1 * x2 + 2 * x1 * x3 + 4 * x2 * x2 - 4 * x2 * x3 + x3 * x3 + y1 * y1 - 4 * y1 * y2 + 2 * y1 * y3 + 4 * y2 * y2 - 4 * y2 * y3 + y3 * y3; var b = 1.0 * 9 * x1 * x2 - 3 * x1 * x1 - 3 * x1 * x3 - 6 * x2 * x2 + 3 * x2 * x3 + 9 * y1 * y2 - 3 * y1 * y1 - 3 * y1 * y3 - 6 * y2 * y2 + 3 * y2 * y3; var c = 1.0 * 3 * x1 * x1 - 6 * x1 * x2 + x1 * x3 - x1 * x + 2 * x2 * x2 + 2 * x2 * x - x3 * x + 3 * y1 * y1 - 6 * y1 * y2 + y1 * y3 - y1 * y + 2 * y2 * y2 + 2 * y2 * y - y3 * y; var d = 1.0 * x1 * x2 - x1 * x1 + x1 * x - x2 * x + y1 * y2 - y1 * y1 + y1 * y - y2 * y; // debug("coefficients: " + a / a + ", " + b / a + ", " + c / a + ", " + d / a); var roots = []; // Use the cubic solving algorithm solveCubic(a, b, c, d, roots); var zeroThreshold = 0.0000001; var params = []; for (var index = 0; index < 6; index += 2) { if (Math.abs(roots[index + 1]) < zeroThreshold && roots[index] >= 0 && roots[index] <= 1.0) { params.push(roots[index]); } } params.push(1.0); params.push(0.0); var minDistanceSquared = -1; var curX, curY, distSquared; for (var i = 0; i < params.length; i++) { curX = Math.pow(1.0 - params[i], 2.0) * x1 + 2.0 * (1 - params[i]) * params[i] * x2 + params[i] * params[i] * x3; curY = Math.pow(1 - params[i], 2.0) * y1 + 2 * (1.0 - params[i]) * params[i] * y2 + params[i] * params[i] * y3; distSquared = Math.pow(curX - x, 2) + Math.pow(curY - y, 2); // debug('distance for param ' + params[i] + ": " + Math.sqrt(distSquared)); if (minDistanceSquared >= 0) { if (distSquared < minDistanceSquared) { minDistanceSquared = distSquared; } } else { minDistanceSquared = distSquared; } } return minDistanceSquared; }; var sqdistToFiniteLine = function sqdistToFiniteLine(x, y, x1, y1, x2, y2) { var offset = [x - x1, y - y1]; var line = [x2 - x1, y2 - y1]; var lineSq = line[0] * line[0] + line[1] * line[1]; var hypSq = offset[0] * offset[0] + offset[1] * offset[1]; var dotProduct = offset[0] * line[0] + offset[1] * line[1]; var adjSq = dotProduct * dotProduct / lineSq; if (dotProduct < 0) { return hypSq; } if (adjSq > lineSq) { return (x - x2) * (x - x2) + (y - y2) * (y - y2); } return hypSq - adjSq; }; var pointInsidePolygonPoints = function pointInsidePolygonPoints(x, y, points) { var x1, y1, x2, y2; var y3; // Intersect with vertical line through (x, y) var up = 0; // let down = 0; for (var i = 0; i < points.length / 2; i++) { x1 = points[i * 2]; y1 = points[i * 2 + 1]; if (i + 1 < points.length / 2) { x2 = points[(i + 1) * 2]; y2 = points[(i + 1) * 2 + 1]; } else { x2 = points[(i + 1 - points.length / 2) * 2]; y2 = points[(i + 1 - points.length / 2) * 2 + 1]; } if (x1 == x && x2 == x) ; else if (x1 >= x && x >= x2 || x1 <= x && x <= x2) { y3 = (x - x1) / (x2 - x1) * (y2 - y1) + y1; if (y3 > y) { up++; } // if( y3 < y ){ // down++; // } } else { continue; } } if (up % 2 === 0) { return false; } else { return true; } }; var pointInsidePolygon = function pointInsidePolygon(x, y, basePoints, centerX, centerY, width, height, direction, padding) { var transformedPoints = new Array(basePoints.length); // Gives negative angle var angle; if (direction[0] != null) { angle = Math.atan(direction[1] / direction[0]); if (direction[0] < 0) { angle = angle + Math.PI / 2; } else { angle = -angle - Math.PI / 2; } } else { angle = direction; } var cos = Math.cos(-angle); var sin = Math.sin(-angle); // console.log("base: " + basePoints); for (var i = 0; i < transformedPoints.length / 2; i++) { transformedPoints[i * 2] = width / 2 * (basePoints[i * 2] * cos - basePoints[i * 2 + 1] * sin); transformedPoints[i * 2 + 1] = height / 2 * (basePoints[i * 2 + 1] * cos + basePoints[i * 2] * sin); transformedPoints[i * 2] += centerX; transformedPoints[i * 2 + 1] += centerY; } var points; if (padding > 0) { var expandedLineSet = expandPolygon(transformedPoints, -padding); points = joinLines(expandedLineSet); } else { points = transformedPoints; } return pointInsidePolygonPoints(x, y, points); }; var pointInsideRoundPolygon = function pointInsideRoundPolygon(x, y, basePoints, centerX, centerY, width, height, corners) { var cutPolygonPoints = new Array(basePoints.length * 2); for (var i = 0; i < corners.length; i++) { var corner = corners[i]; cutPolygonPoints[i * 4 + 0] = corner.startX; cutPolygonPoints[i * 4 + 1] = corner.startY; cutPolygonPoints[i * 4 + 2] = corner.stopX; cutPolygonPoints[i * 4 + 3] = corner.stopY; var squaredDistance = Math.pow(corner.cx - x, 2) + Math.pow(corner.cy - y, 2); if (squaredDistance <= Math.pow(corner.radius, 2)) { return true; } } return pointInsidePolygonPoints(x, y, cutPolygonPoints); }; var joinLines = function joinLines(lineSet) { var vertices = new Array(lineSet.length / 2); var currentLineStartX, currentLineStartY, currentLineEndX, currentLineEndY; var nextLineStartX, nextLineStartY, nextLineEndX, nextLineEndY; for (var i = 0; i < lineSet.length / 4; i++) { currentLineStartX = lineSet[i * 4]; currentLineStartY = lineSet[i * 4 + 1]; currentLineEndX = lineSet[i * 4 + 2]; currentLineEndY = lineSet[i * 4 + 3]; if (i < lineSet.length / 4 - 1) { nextLineStartX = lineSet[(i + 1) * 4]; nextLineStartY = lineSet[(i + 1) * 4 + 1]; nextLineEndX = lineSet[(i + 1) * 4 + 2]; nextLineEndY = lineSet[(i + 1) * 4 + 3]; } else { nextLineStartX = lineSet[0]; nextLineStartY = lineSet[1]; nextLineEndX = lineSet[2]; nextLineEndY = lineSet[3]; } var intersection = finiteLinesIntersect(currentLineStartX, currentLineStartY, currentLineEndX, currentLineEndY, nextLineStartX, nextLineStartY, nextLineEndX, nextLineEndY, true); vertices[i * 2] = intersection[0]; vertices[i * 2 + 1] = intersection[1]; } return vertices; }; var expandPolygon = function expandPolygon(points, pad) { var expandedLineSet = new Array(points.length * 2); var currentPointX, currentPointY, nextPointX, nextPointY; for (var i = 0; i < points.length / 2; i++) { currentPointX = points[i * 2]; currentPointY = points[i * 2 + 1]; if (i < points.length / 2 - 1) { nextPointX = points[(i + 1) * 2]; nextPointY = points[(i + 1) * 2 + 1]; } else { nextPointX = points[0]; nextPointY = points[1]; } // Current line: [currentPointX, currentPointY] to [nextPointX, nextPointY] // Assume CCW polygon winding var offsetX = nextPointY - currentPointY; var offsetY = -(nextPointX - currentPointX); // Normalize var offsetLength = Math.sqrt(offsetX * offsetX + offsetY * offsetY); var normalizedOffsetX = offsetX / offsetLength; var normalizedOffsetY = offsetY / offsetLength; expandedLineSet[i * 4] = currentPointX + normalizedOffsetX * pad; expandedLineSet[i * 4 + 1] = currentPointY + normalizedOffsetY * pad; expandedLineSet[i * 4 + 2] = nextPointX + normalizedOffsetX * pad; expandedLineSet[i * 4 + 3] = nextPointY + normalizedOffsetY * pad; } return expandedLineSet; }; var intersectLineEllipse = function intersectLineEllipse(x, y, centerX, centerY, ellipseWradius, ellipseHradius) { var dispX = centerX - x; var dispY = centerY - y; dispX /= ellipseWradius; dispY /= ellipseHradius; var len = Math.sqrt(dispX * dispX + dispY * dispY); var newLength = len - 1; if (newLength < 0) { return []; } var lenProportion = newLength / len; return [(centerX - x) * lenProportion + x, (centerY - y) * lenProportion + y]; }; var checkInEllipse = function checkInEllipse(x, y, width, height, centerX, centerY, padding) { x -= centerX; y -= centerY; x /= width / 2 + padding; y /= height / 2 + padding; return x * x + y * y <= 1; }; // Returns intersections of increasing distance from line's start point var intersectLineCircle = function intersectLineCircle(x1, y1, x2, y2, centerX, centerY, radius) { // Calculate d, direction vector of line var d = [x2 - x1, y2 - y1]; // Direction vector of line var f = [x1 - centerX, y1 - centerY]; var a = d[0] * d[0] + d[1] * d[1]; var b = 2 * (f[0] * d[0] + f[1] * d[1]); var c = f[0] * f[0] + f[1] * f[1] - radius * radius; var discriminant = b * b - 4 * a * c; if (discriminant < 0) { return []; } var t1 = (-b + Math.sqrt(discriminant)) / (2 * a); var t2 = (-b - Math.sqrt(discriminant)) / (2 * a); var tMin = Math.min(t1, t2); var tMax = Math.max(t1, t2); var inRangeParams = []; if (tMin >= 0 && tMin <= 1) { inRangeParams.push(tMin); } if (tMax >= 0 && tMax <= 1) { inRangeParams.push(tMax); } if (inRangeParams.length === 0) { return []; } var nearIntersectionX = inRangeParams[0] * d[0] + x1; var nearIntersectionY = inRangeParams[0] * d[1] + y1; if (inRangeParams.length > 1) { if (inRangeParams[0] == inRangeParams[1]) { return [nearIntersectionX, nearIntersectionY]; } else { var farIntersectionX = inRangeParams[1] * d[0] + x1; var farIntersectionY = inRangeParams[1] * d[1] + y1; return [nearIntersectionX, nearIntersectionY, farIntersectionX, farIntersectionY]; } } else { return [nearIntersectionX, nearIntersectionY]; } }; var midOfThree = function midOfThree(a, b, c) { if (b <= a && a <= c || c <= a && a <= b) { return a; } else if (a <= b && b <= c || c <= b && b <= a) { return b; } else { return c; } }; // (x1,y1)=>(x2,y2) intersect with (x3,y3)=>(x4,y4) var finiteLinesIntersect = function finiteLinesIntersect(x1, y1, x2, y2, x3, y3, x4, y4, infiniteLines) { var dx13 = x1 - x3; var dx21 = x2 - x1; var dx43 = x4 - x3; var dy13 = y1 - y3; var dy21 = y2 - y1; var dy43 = y4 - y3; var ua_t = dx43 * dy13 - dy43 * dx13; var ub_t = dx21 * dy13 - dy21 * dx13; var u_b = dy43 * dx21 - dx43 * dy21; if (u_b !== 0) { var ua = ua_t / u_b; var ub = ub_t / u_b; var flptThreshold = 0.001; var _min = 0 - flptThreshold; var _max = 1 + flptThreshold; if (_min <= ua && ua <= _max && _min <= ub && ub <= _max) { return [x1 + ua * dx21, y1 + ua * dy21]; } else { if (!infiniteLines) { return []; } else { return [x1 + ua * dx21, y1 + ua * dy21]; } } } else { if (ua_t === 0 || ub_t === 0) { // Parallel, coincident lines. Check if overlap // Check endpoint of second line if (midOfThree(x1, x2, x4) === x4) { return [x4, y4]; } // Check start point of second line if (midOfThree(x1, x2, x3) === x3) { return [x3, y3]; } // Endpoint of first line if (midOfThree(x3, x4, x2) === x2) { return [x2, y2]; } return []; } else { // Parallel, non-coincident return []; } } }; // math.polygonIntersectLine( x, y, basePoints, centerX, centerY, width, height, padding ) // intersect a node polygon (pts transformed) // // math.polygonIntersectLine( x, y, basePoints, centerX, centerY ) // intersect the points (no transform) var polygonIntersectLine = function polygonIntersectLine(x, y, basePoints, centerX, centerY, width, height, padding) { var intersections = []; var intersection; var transformedPoints = new Array(basePoints.length); var doTransform = true; if (width == null) { doTransform = false; } var points; if (doTransform) { for (var i = 0; i < transformedPoints.length / 2; i++) { transformedPoints[i * 2] = basePoints[i * 2] * width + centerX; transformedPoints[i * 2 + 1] = basePoints[i * 2 + 1] * height + centerY; } if (padding > 0) { var expandedLineSet = expandPolygon(transformedPoints, -padding); points = joinLines(expandedLineSet); } else { points = transformedPoints; } } else { points = basePoints; } var currentX, currentY, nextX, nextY; for (var _i2 = 0; _i2 < points.length / 2; _i2++) { currentX = points[_i2 * 2]; currentY = points[_i2 * 2 + 1]; if (_i2 < points.length / 2 - 1) { nextX = points[(_i2 + 1) * 2]; nextY = points[(_i2 + 1) * 2 + 1]; } else { nextX = points[0]; nextY = points[1]; } intersection = finiteLinesIntersect(x, y, centerX, centerY, currentX, currentY, nextX, nextY); if (intersection.length !== 0) { intersections.push(intersection[0], intersection[1]); } } return intersections; }; var roundPolygonIntersectLine = function roundPolygonIntersectLine(x, y, basePoints, centerX, centerY, width, height, padding, corners) { var intersections = []; var intersection; var lines = new Array(basePoints.length * 2); corners.forEach(function (corner, i) { if (i === 0) { lines[lines.length - 2] = corner.startX; lines[lines.length - 1] = corner.startY; } else { lines[i * 4 - 2] = corner.startX; lines[i * 4 - 1] = corner.startY; } lines[i * 4] = corner.stopX; lines[i * 4 + 1] = corner.stopY; intersection = intersectLineCircle(x, y, centerX, centerY, corner.cx, corner.cy, corner.radius); if (intersection.length !== 0) { intersections.push(intersection[0], intersection[1]); } }); for (var i = 0; i < lines.length / 4; i++) { intersection = finiteLinesIntersect(x, y, centerX, centerY, lines[i * 4], lines[i * 4 + 1], lines[i * 4 + 2], lines[i * 4 + 3], false); if (intersection.length !== 0) { intersections.push(intersection[0], intersection[1]); } } if (intersections.length > 2) { var lowestIntersection = [intersections[0], intersections[1]]; var lowestSquaredDistance = Math.pow(lowestIntersection[0] - x, 2) + Math.pow(lowestIntersection[1] - y, 2); for (var _i3 = 1; _i3 < intersections.length / 2; _i3++) { var squaredDistance = Math.pow(intersections[_i3 * 2] - x, 2) + Math.pow(intersections[_i3 * 2 + 1] - y, 2); if (squaredDistance <= lowestSquaredDistance) { lowestIntersection[0] = intersections[_i3 * 2]; lowestIntersection[1] = intersections[_i3 * 2 + 1]; lowestSquaredDistance = squaredDistance; } } return lowestIntersection; } return intersections; }; var shortenIntersection = function shortenIntersection(intersection, offset, amount) { var disp = [intersection[0] - offset[0], intersection[1] - offset[1]]; var length = Math.sqrt(disp[0] * disp[0] + disp[1] * disp[1]); var lenRatio = (length - amount) / length; if (lenRatio < 0) { lenRatio = 0.00001; } return [offset[0] + lenRatio * disp[0], offset[1] + lenRatio * disp[1]]; }; var generateUnitNgonPointsFitToSquare = function generateUnitNgonPointsFitToSquare(sides, rotationRadians) { var points = generateUnitNgonPoints(sides, rotationRadians); points = fitPolygonToSquare(points); return points; }; var fitPolygonToSquare = function fitPolygonToSquare(points) { var x, y; var sides = points.length / 2; var minX = Infinity, minY = Infinity, maxX = -Infinity, maxY = -Infinity; for (var i = 0; i < sides; i++) { x = points[2 * i]; y = points[2 * i + 1]; minX = Math.min(minX, x); maxX = Math.max(maxX, x); minY = Math.min(minY, y); maxY = Math.max(maxY, y); } // stretch factors var sx = 2 / (maxX - minX); var sy = 2 / (maxY - minY); for (var _i4 = 0; _i4 < sides; _i4++) { x = points[2 * _i4] = points[2 * _i4] * sx; y = points[2 * _i4 + 1] = points[2 * _i4 + 1] * sy; minX = Math.min(minX, x); maxX = Math.max(maxX, x); minY = Math.min(minY, y); maxY = Math.max(maxY, y); } if (minY < -1) { for (var _i5 = 0; _i5 < sides; _i5++) { y = points[2 * _i5 + 1] = points[2 * _i5 + 1] + (-1 - minY); } } return points; }; var generateUnitNgonPoints = function generateUnitNgonPoints(sides, rotationRadians) { var increment = 1.0 / sides * 2 * Math.PI; var startAngle = sides % 2 === 0 ? Math.PI / 2.0 + increment / 2.0 : Math.PI / 2.0; startAngle += rotationRadians; var points = new Array(sides * 2); var currentAngle; for (var i = 0; i < sides; i++) { currentAngle = i * increment + startAngle; points[2 * i] = Math.cos(currentAngle); // x points[2 * i + 1] = Math.sin(-currentAngle); // y } return points; }; // Set the default radius, unless half of width or height is smaller than default var getRoundRectangleRadius = function getRoundRectangleRadius(width, height) { return Math.min(width / 4, height / 4, 8); }; // Set the default radius var getRoundPolygonRadius = function getRoundPolygonRadius(width, height) { return Math.min(width / 10, height / 10, 8); }; var getCutRectangleCornerLength = function getCutRectangleCornerLength() { return 8; }; var bezierPtsToQuadCoeff = function bezierPtsToQuadCoeff(p0, p1, p2) { return [p0 - 2 * p1 + p2, 2 * (p1 - p0), p0]; }; // get curve width, height, and control point position offsets as a percentage of node height / width var getBarrelCurveConstants = function getBarrelCurveConstants(width, height) { return { heightOffset: Math.min(15, 0.05 * height), widthOffset: Math.min(100, 0.25 * width), ctrlPtOffsetPct: 0.05 }; }; var pageRankDefaults = defaults$g({ dampingFactor: 0.8, precision: 0.000001, iterations: 200, weight: function weight(edge) { return 1; } }); var elesfn$o = { pageRank: function pageRank(options) { var _pageRankDefaults = pageRankDefaults(options), dampingFactor = _pageRankDefaults.dampingFactor, precision = _pageRankDefaults.precision, iterations = _pageRankDefaults.iterations, weight = _pageRankDefaults.weight; var cy = this._private.cy; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; var numNodes = nodes.length; var numNodesSqd = numNodes * numNodes; var numEdges = edges.length; // Construct transposed adjacency matrix // First lets have a zeroed matrix of the right size // We'll also keep track of the sum of each column var matrix = new Array(numNodesSqd); var columnSum = new Array(numNodes); var additionalProb = (1 - dampingFactor) / numNodes; // Create null matrix for (var i = 0; i < numNodes; i++) { for (var j = 0; j < numNodes; j++) { var n = i * numNodes + j; matrix[n] = 0; } columnSum[i] = 0; } // Now, process edges for (var _i = 0; _i < numEdges; _i++) { var edge = edges[_i]; var srcId = edge.data('source'); var tgtId = edge.data('target'); // Don't include loops in the matrix if (srcId === tgtId) { continue; } var s = nodes.indexOfId(srcId); var t = nodes.indexOfId(tgtId); var w = weight(edge); var _n = t * numNodes + s; // Update matrix matrix[_n] += w; // Update column sum columnSum[s] += w; } // Add additional probability based on damping factor // Also, take into account columns that have sum = 0 var p = 1.0 / numNodes + additionalProb; // Shorthand // Traverse matrix, column by column for (var _j = 0; _j < numNodes; _j++) { if (columnSum[_j] === 0) { // No 'links' out from node jth, assume equal probability for each possible node for (var _i2 = 0; _i2 < numNodes; _i2++) { var _n2 = _i2 * numNodes + _j; matrix[_n2] = p; } } else { // Node jth has outgoing link, compute normalized probabilities for (var _i3 = 0; _i3 < numNodes; _i3++) { var _n3 = _i3 * numNodes + _j; matrix[_n3] = matrix[_n3] / columnSum[_j] + additionalProb; } } } // Compute dominant eigenvector using power method var eigenvector = new Array(numNodes); var temp = new Array(numNodes); var previous; // Start with a vector of all 1's // Also, initialize a null vector which will be used as shorthand for (var _i4 = 0; _i4 < numNodes; _i4++) { eigenvector[_i4] = 1; } for (var iter = 0; iter < iterations; iter++) { // Temp array with all 0's for (var _i5 = 0; _i5 < numNodes; _i5++) { temp[_i5] = 0; } // Multiply matrix with previous result for (var _i6 = 0; _i6 < numNodes; _i6++) { for (var _j2 = 0; _j2 < numNodes; _j2++) { var _n4 = _i6 * numNodes + _j2; temp[_i6] += matrix[_n4] * eigenvector[_j2]; } } inPlaceSumNormalize(temp); previous = eigenvector; eigenvector = temp; temp = previous; var diff = 0; // Compute difference (squared module) of both vectors for (var _i7 = 0; _i7 < numNodes; _i7++) { var delta = previous[_i7] - eigenvector[_i7]; diff += delta * delta; } // If difference is less than the desired threshold, stop iterating if (diff < precision) { break; } } // Construct result var res = { rank: function rank(node) { node = cy.collection(node)[0]; return eigenvector[nodes.indexOf(node)]; } }; return res; } // pageRank }; // elesfn var defaults$f = defaults$g({ root: null, weight: function weight(edge) { return 1; }, directed: false, alpha: 0 }); var elesfn$n = { degreeCentralityNormalized: function degreeCentralityNormalized(options) { options = defaults$f(options); var cy = this.cy(); var nodes = this.nodes(); var numNodes = nodes.length; if (!options.directed) { var degrees = {}; var maxDegree = 0; for (var i = 0; i < numNodes; i++) { var node = nodes[i]; // add current node to the current options object and call degreeCentrality options.root = node; var currDegree = this.degreeCentrality(options); if (maxDegree < currDegree.degree) { maxDegree = currDegree.degree; } degrees[node.id()] = currDegree.degree; } return { degree: function degree(node) { if (maxDegree === 0) { return 0; } if (string(node)) { // from is a selector string node = cy.filter(node); } return degrees[node.id()] / maxDegree; } }; } else { var indegrees = {}; var outdegrees = {}; var maxIndegree = 0; var maxOutdegree = 0; for (var _i = 0; _i < numNodes; _i++) { var _node = nodes[_i]; var id = _node.id(); // add current node to the current options object and call degreeCentrality options.root = _node; var _currDegree = this.degreeCentrality(options); if (maxIndegree < _currDegree.indegree) maxIndegree = _currDegree.indegree; if (maxOutdegree < _currDegree.outdegree) maxOutdegree = _currDegree.outdegree; indegrees[id] = _currDegree.indegree; outdegrees[id] = _currDegree.outdegree; } return { indegree: function indegree(node) { if (maxIndegree == 0) { return 0; } if (string(node)) { // from is a selector string node = cy.filter(node); } return indegrees[node.id()] / maxIndegree; }, outdegree: function outdegree(node) { if (maxOutdegree === 0) { return 0; } if (string(node)) { // from is a selector string node = cy.filter(node); } return outdegrees[node.id()] / maxOutdegree; } }; } }, // degreeCentralityNormalized // Implemented from the algorithm in Opsahl's paper // "Node centrality in weighted networks: Generalizing degree and shortest paths" // check the heading 2 "Degree" degreeCentrality: function degreeCentrality(options) { options = defaults$f(options); var cy = this.cy(); var callingEles = this; var _options = options, root = _options.root, weight = _options.weight, directed = _options.directed, alpha = _options.alpha; root = cy.collection(root)[0]; if (!directed) { var connEdges = root.connectedEdges().intersection(callingEles); var k = connEdges.length; var s = 0; // Now, sum edge weights for (var i = 0; i < connEdges.length; i++) { s += weight(connEdges[i]); } return { degree: Math.pow(k, 1 - alpha) * Math.pow(s, alpha) }; } else { var edges = root.connectedEdges(); var incoming = edges.filter(function (edge) { return edge.target().same(root) && callingEles.has(edge); }); var outgoing = edges.filter(function (edge) { return edge.source().same(root) && callingEles.has(edge); }); var k_in = incoming.length; var k_out = outgoing.length; var s_in = 0; var s_out = 0; // Now, sum incoming edge weights for (var _i2 = 0; _i2 < incoming.length; _i2++) { s_in += weight(incoming[_i2]); } // Now, sum outgoing edge weights for (var _i3 = 0; _i3 < outgoing.length; _i3++) { s_out += weight(outgoing[_i3]); } return { indegree: Math.pow(k_in, 1 - alpha) * Math.pow(s_in, alpha), outdegree: Math.pow(k_out, 1 - alpha) * Math.pow(s_out, alpha) }; } } // degreeCentrality }; // elesfn // nice, short mathematical alias elesfn$n.dc = elesfn$n.degreeCentrality; elesfn$n.dcn = elesfn$n.degreeCentralityNormalised = elesfn$n.degreeCentralityNormalized; var defaults$e = defaults$g({ harmonic: true, weight: function weight() { return 1; }, directed: false, root: null }); var elesfn$m = { closenessCentralityNormalized: function closenessCentralityNormalized(options) { var _defaults = defaults$e(options), harmonic = _defaults.harmonic, weight = _defaults.weight, directed = _defaults.directed; var cy = this.cy(); var closenesses = {}; var maxCloseness = 0; var nodes = this.nodes(); var fw = this.floydWarshall({ weight: weight, directed: directed }); // Compute closeness for every node and find the maximum closeness for (var i = 0; i < nodes.length; i++) { var currCloseness = 0; var node_i = nodes[i]; for (var j = 0; j < nodes.length; j++) { if (i !== j) { var d = fw.distance(node_i, nodes[j]); if (harmonic) { currCloseness += 1 / d; } else { currCloseness += d; } } } if (!harmonic) { currCloseness = 1 / currCloseness; } if (maxCloseness < currCloseness) { maxCloseness = currCloseness; } closenesses[node_i.id()] = currCloseness; } return { closeness: function closeness(node) { if (maxCloseness == 0) { return 0; } if (string(node)) { // from is a selector string node = cy.filter(node)[0].id(); } else { // from is a node node = node.id(); } return closenesses[node] / maxCloseness; } }; }, // Implemented from pseudocode from wikipedia closenessCentrality: function closenessCentrality(options) { var _defaults2 = defaults$e(options), root = _defaults2.root, weight = _defaults2.weight, directed = _defaults2.directed, harmonic = _defaults2.harmonic; root = this.filter(root)[0]; // we need distance from this node to every other node var dijkstra = this.dijkstra({ root: root, weight: weight, directed: directed }); var totalDistance = 0; var nodes = this.nodes(); for (var i = 0; i < nodes.length; i++) { var n = nodes[i]; if (!n.same(root)) { var d = dijkstra.distanceTo(n); if (harmonic) { totalDistance += 1 / d; } else { totalDistance += d; } } } return harmonic ? totalDistance : 1 / totalDistance; } // closenessCentrality }; // elesfn // nice, short mathematical alias elesfn$m.cc = elesfn$m.closenessCentrality; elesfn$m.ccn = elesfn$m.closenessCentralityNormalised = elesfn$m.closenessCentralityNormalized; var defaults$d = defaults$g({ weight: null, directed: false }); var elesfn$l = { // Implemented from the algorithm in the paper "On Variants of Shortest-Path Betweenness Centrality and their Generic Computation" by Ulrik Brandes betweennessCentrality: function betweennessCentrality(options) { var _defaults = defaults$d(options), directed = _defaults.directed, weight = _defaults.weight; var weighted = weight != null; var cy = this.cy(); // starting var V = this.nodes(); var A = {}; var _C = {}; var max = 0; var C = { set: function set(key, val) { _C[key] = val; if (val > max) { max = val; } }, get: function get(key) { return _C[key]; } }; // A contains the neighborhoods of every node for (var i = 0; i < V.length; i++) { var v = V[i]; var vid = v.id(); if (directed) { A[vid] = v.outgoers().nodes(); // get outgoers of every node } else { A[vid] = v.openNeighborhood().nodes(); // get neighbors of every node } C.set(vid, 0); } var _loop = function _loop(s) { var sid = V[s].id(); var S = []; // stack var P = {}; var g = {}; var d = {}; var Q = new heap(function (a, b) { return d[a] - d[b]; }); // queue // init dictionaries for (var _i = 0; _i < V.length; _i++) { var _vid = V[_i].id(); P[_vid] = []; g[_vid] = 0; d[_vid] = Infinity; } g[sid] = 1; // sigma d[sid] = 0; // distance to s Q.push(sid); while (!Q.empty()) { var _v = Q.pop(); S.push(_v); if (weighted) { for (var j = 0; j < A[_v].length; j++) { var w = A[_v][j]; var vEle = cy.getElementById(_v); var edge = void 0; if (vEle.edgesTo(w).length > 0) { edge = vEle.edgesTo(w)[0]; } else { edge = w.edgesTo(vEle)[0]; } var edgeWeight = weight(edge); w = w.id(); if (d[w] > d[_v] + edgeWeight) { d[w] = d[_v] + edgeWeight; if (Q.nodes.indexOf(w) < 0) { //if w is not in Q Q.push(w); } else { // update position if w is in Q Q.updateItem(w); } g[w] = 0; P[w] = []; } if (d[w] == d[_v] + edgeWeight) { g[w] = g[w] + g[_v]; P[w].push(_v); } } } else { for (var _j = 0; _j < A[_v].length; _j++) { var _w = A[_v][_j].id(); if (d[_w] == Infinity) { Q.push(_w); d[_w] = d[_v] + 1; } if (d[_w] == d[_v] + 1) { g[_w] = g[_w] + g[_v]; P[_w].push(_v); } } } } var e = {}; for (var _i2 = 0; _i2 < V.length; _i2++) { e[V[_i2].id()] = 0; } while (S.length > 0) { var _w2 = S.pop(); for (var _j2 = 0; _j2 < P[_w2].length; _j2++) { var _v2 = P[_w2][_j2]; e[_v2] = e[_v2] + g[_v2] / g[_w2] * (1 + e[_w2]); } if (_w2 != V[s].id()) { C.set(_w2, C.get(_w2) + e[_w2]); } } }; for (var s = 0; s < V.length; s++) { _loop(s); } var ret = { betweenness: function betweenness(node) { var id = cy.collection(node).id(); return C.get(id); }, betweennessNormalized: function betweennessNormalized(node) { if (max == 0) { return 0; } var id = cy.collection(node).id(); return C.get(id) / max; } }; // alias ret.betweennessNormalised = ret.betweennessNormalized; return ret; } // betweennessCentrality }; // elesfn // nice, short mathematical alias elesfn$l.bc = elesfn$l.betweennessCentrality; // Implemented by Zoe Xi @zoexi for GSOC 2016 /* eslint-disable no-unused-vars */ var defaults$c = defaults$g({ expandFactor: 2, // affects time of computation and cluster granularity to some extent: M * M inflateFactor: 2, // affects cluster granularity (the greater the value, the more clusters): M(i,j) / E(j) multFactor: 1, // optional self loops for each node. Use a neutral value to improve cluster computations. maxIterations: 20, // maximum number of iterations of the MCL algorithm in a single run attributes: [ // attributes/features used to group nodes, ie. similarity values between nodes function (edge) { return 1; }] }); /* eslint-enable */ var setOptions$3 = function setOptions(options) { return defaults$c(options); }; /* eslint-enable */ var getSimilarity$1 = function getSimilarity(edge, attributes) { var total = 0; for (var i = 0; i < attributes.length; i++) { total += attributes[i](edge); } return total; }; var addLoops = function addLoops(M, n, val) { for (var i = 0; i < n; i++) { M[i * n + i] = val; } }; var normalize = function normalize(M, n) { var sum; for (var col = 0; col < n; col++) { sum = 0; for (var row = 0; row < n; row++) { sum += M[row * n + col]; } for (var _row = 0; _row < n; _row++) { M[_row * n + col] = M[_row * n + col] / sum; } } }; // TODO: blocked matrix multiplication? var mmult = function mmult(A, B, n) { var C = new Array(n * n); for (var i = 0; i < n; i++) { for (var j = 0; j < n; j++) { C[i * n + j] = 0; } for (var k = 0; k < n; k++) { for (var _j = 0; _j < n; _j++) { C[i * n + _j] += A[i * n + k] * B[k * n + _j]; } } } return C; }; var expand = function expand(M, n, expandFactor /** power **/) { var _M = M.slice(0); for (var p = 1; p < expandFactor; p++) { M = mmult(M, _M, n); } return M; }; var inflate = function inflate(M, n, inflateFactor /** r **/) { var _M = new Array(n * n); // M(i,j) ^ inflatePower for (var i = 0; i < n * n; i++) { _M[i] = Math.pow(M[i], inflateFactor); } normalize(_M, n); return _M; }; var hasConverged = function hasConverged(M, _M, n2, roundFactor) { // Check that both matrices have the same elements (i,j) for (var i = 0; i < n2; i++) { var v1 = Math.round(M[i] * Math.pow(10, roundFactor)) / Math.pow(10, roundFactor); // truncate to 'roundFactor' decimal places var v2 = Math.round(_M[i] * Math.pow(10, roundFactor)) / Math.pow(10, roundFactor); if (v1 !== v2) { return false; } } return true; }; var assign$2 = function assign(M, n, nodes, cy) { var clusters = []; for (var i = 0; i < n; i++) { var cluster = []; for (var j = 0; j < n; j++) { // Row-wise attractors and elements that they attract belong in same cluster if (Math.round(M[i * n + j] * 1000) / 1000 > 0) { cluster.push(nodes[j]); } } if (cluster.length !== 0) { clusters.push(cy.collection(cluster)); } } return clusters; }; var isDuplicate = function isDuplicate(c1, c2) { for (var i = 0; i < c1.length; i++) { if (!c2[i] || c1[i].id() !== c2[i].id()) { return false; } } return true; }; var removeDuplicates = function removeDuplicates(clusters) { for (var i = 0; i < clusters.length; i++) { for (var j = 0; j < clusters.length; j++) { if (i != j && isDuplicate(clusters[i], clusters[j])) { clusters.splice(j, 1); } } } return clusters; }; var markovClustering = function markovClustering(options) { var nodes = this.nodes(); var edges = this.edges(); var cy = this.cy(); // Set parameters of algorithm: var opts = setOptions$3(options); // Map each node to its position in node array var id2position = {}; for (var i = 0; i < nodes.length; i++) { id2position[nodes[i].id()] = i; } // Generate stochastic matrix M from input graph G (should be symmetric/undirected) var n = nodes.length, n2 = n * n; var M = new Array(n2), _M; for (var _i = 0; _i < n2; _i++) { M[_i] = 0; } for (var e = 0; e < edges.length; e++) { var edge = edges[e]; var _i2 = id2position[edge.source().id()]; var j = id2position[edge.target().id()]; var sim = getSimilarity$1(edge, opts.attributes); M[_i2 * n + j] += sim; // G should be symmetric and undirected M[j * n + _i2] += sim; } // Begin Markov cluster algorithm // Step 1: Add self loops to each node, ie. add multFactor to matrix diagonal addLoops(M, n, opts.multFactor); // Step 2: M = normalize( M ); normalize(M, n); var isStillMoving = true; var iterations = 0; while (isStillMoving && iterations < opts.maxIterations) { isStillMoving = false; // Step 3: _M = expand(M, n, opts.expandFactor); // Step 4: M = inflate(_M, n, opts.inflateFactor); // Step 5: check to see if ~steady state has been reached if (!hasConverged(M, _M, n2, 4)) { isStillMoving = true; } iterations++; } // Build clusters from matrix var clusters = assign$2(M, n, nodes, cy); // Remove duplicate clusters due to symmetry of graph and M matrix clusters = removeDuplicates(clusters); return clusters; }; var markovClustering$1 = { markovClustering: markovClustering, mcl: markovClustering }; // Common distance metrics for clustering algorithms var identity = function identity(x) { return x; }; var absDiff = function absDiff(p, q) { return Math.abs(q - p); }; var addAbsDiff = function addAbsDiff(total, p, q) { return total + absDiff(p, q); }; var addSquaredDiff = function addSquaredDiff(total, p, q) { return total + Math.pow(q - p, 2); }; var sqrt = function sqrt(x) { return Math.sqrt(x); }; var maxAbsDiff = function maxAbsDiff(currentMax, p, q) { return Math.max(currentMax, absDiff(p, q)); }; var getDistance = function getDistance(length, getP, getQ, init, visit) { var post = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : identity; var ret = init; var p, q; for (var dim = 0; dim < length; dim++) { p = getP(dim); q = getQ(dim); ret = visit(ret, p, q); } return post(ret); }; var distances = { euclidean: function euclidean(length, getP, getQ) { if (length >= 2) { return getDistance(length, getP, getQ, 0, addSquaredDiff, sqrt); } else { // for single attr case, more efficient to avoid sqrt return getDistance(length, getP, getQ, 0, addAbsDiff); } }, squaredEuclidean: function squaredEuclidean(length, getP, getQ) { return getDistance(length, getP, getQ, 0, addSquaredDiff); }, manhattan: function manhattan(length, getP, getQ) { return getDistance(length, getP, getQ, 0, addAbsDiff); }, max: function max(length, getP, getQ) { return getDistance(length, getP, getQ, -Infinity, maxAbsDiff); } }; // in case the user accidentally doesn't use camel case distances['squared-euclidean'] = distances['squaredEuclidean']; distances['squaredeuclidean'] = distances['squaredEuclidean']; function clusteringDistance (method, length, getP, getQ, nodeP, nodeQ) { var impl; if (fn$6(method)) { impl = method; } else { impl = distances[method] || distances.euclidean; } if (length === 0 && fn$6(method)) { return impl(nodeP, nodeQ); } else { return impl(length, getP, getQ, nodeP, nodeQ); } } var defaults$b = defaults$g({ k: 2, m: 2, sensitivityThreshold: 0.0001, distance: 'euclidean', maxIterations: 10, attributes: [], testMode: false, testCentroids: null }); var setOptions$2 = function setOptions(options) { return defaults$b(options); }; var getDist = function getDist(type, node, centroid, attributes, mode) { var noNodeP = mode !== 'kMedoids'; var getP = noNodeP ? function (i) { return centroid[i]; } : function (i) { return attributes[i](centroid); }; var getQ = function getQ(i) { return attributes[i](node); }; var nodeP = centroid; var nodeQ = node; return clusteringDistance(type, attributes.length, getP, getQ, nodeP, nodeQ); }; var randomCentroids = function randomCentroids(nodes, k, attributes) { var ndim = attributes.length; var min = new Array(ndim); var max = new Array(ndim); var centroids = new Array(k); var centroid = null; // Find min, max values for each attribute dimension for (var i = 0; i < ndim; i++) { min[i] = nodes.min(attributes[i]).value; max[i] = nodes.max(attributes[i]).value; } // Build k centroids, each represented as an n-dim feature vector for (var c = 0; c < k; c++) { centroid = []; for (var _i = 0; _i < ndim; _i++) { centroid[_i] = Math.random() * (max[_i] - min[_i]) + min[_i]; // random initial value } centroids[c] = centroid; } return centroids; }; var classify = function classify(node, centroids, distance, attributes, type) { var min = Infinity; var index = 0; for (var i = 0; i < centroids.length; i++) { var dist = getDist(distance, node, centroids[i], attributes, type); if (dist < min) { min = dist; index = i; } } return index; }; var buildCluster = function buildCluster(centroid, nodes, assignment) { var cluster = []; var node = null; for (var n = 0; n < nodes.length; n++) { node = nodes[n]; if (assignment[node.id()] === centroid) { //console.log("Node " + node.id() + " is associated with medoid #: " + m); cluster.push(node); } } return cluster; }; var haveValuesConverged = function haveValuesConverged(v1, v2, sensitivityThreshold) { return Math.abs(v2 - v1) <= sensitivityThreshold; }; var haveMatricesConverged = function haveMatricesConverged(v1, v2, sensitivityThreshold) { for (var i = 0; i < v1.length; i++) { for (var j = 0; j < v1[i].length; j++) { var diff = Math.abs(v1[i][j] - v2[i][j]); if (diff > sensitivityThreshold) { return false; } } } return true; }; var seenBefore = function seenBefore(node, medoids, n) { for (var i = 0; i < n; i++) { if (node === medoids[i]) return true; } return false; }; var randomMedoids = function randomMedoids(nodes, k) { var medoids = new Array(k); // For small data sets, the probability of medoid conflict is greater, // so we need to check to see if we've already seen or chose this node before. if (nodes.length < 50) { // Randomly select k medoids from the n nodes for (var i = 0; i < k; i++) { var node = nodes[Math.floor(Math.random() * nodes.length)]; // If we've already chosen this node to be a medoid, don't choose it again (for small data sets). // Instead choose a different random node. while (seenBefore(node, medoids, i)) { node = nodes[Math.floor(Math.random() * nodes.length)]; } medoids[i] = node; } } else { // Relatively large data set, so pretty safe to not check and just select random nodes for (var _i2 = 0; _i2 < k; _i2++) { medoids[_i2] = nodes[Math.floor(Math.random() * nodes.length)]; } } return medoids; }; var findCost = function findCost(potentialNewMedoid, cluster, attributes) { var cost = 0; for (var n = 0; n < cluster.length; n++) { cost += getDist('manhattan', cluster[n], potentialNewMedoid, attributes, 'kMedoids'); } return cost; }; var kMeans = function kMeans(options) { var cy = this.cy(); var nodes = this.nodes(); var node = null; // Set parameters of algorithm: # of clusters, distance metric, etc. var opts = setOptions$2(options); // Begin k-means algorithm var clusters = new Array(opts.k); var assignment = {}; var centroids; // Step 1: Initialize centroid positions if (opts.testMode) { if (typeof opts.testCentroids === 'number') { // TODO: implement a seeded random number generator. opts.testCentroids; centroids = randomCentroids(nodes, opts.k, opts.attributes); } else if (_typeof(opts.testCentroids) === 'object') { centroids = opts.testCentroids; } else { centroids = randomCentroids(nodes, opts.k, opts.attributes); } } else { centroids = randomCentroids(nodes, opts.k, opts.attributes); } var isStillMoving = true; var iterations = 0; while (isStillMoving && iterations < opts.maxIterations) { // Step 2: Assign nodes to the nearest centroid for (var n = 0; n < nodes.length; n++) { node = nodes[n]; // Determine which cluster this node belongs to: node id => cluster # assignment[node.id()] = classify(node, centroids, opts.distance, opts.attributes, 'kMeans'); } // Step 3: For each of the k clusters, update its centroid isStillMoving = false; for (var c = 0; c < opts.k; c++) { // Get all nodes that belong to this cluster var cluster = buildCluster(c, nodes, assignment); if (cluster.length === 0) { // If cluster is empty, break out early & move to next cluster continue; } // Update centroids by calculating avg of all nodes within the cluster. var ndim = opts.attributes.length; var centroid = centroids[c]; // [ dim_1, dim_2, dim_3, ... , dim_n ] var newCentroid = new Array(ndim); var sum = new Array(ndim); for (var d = 0; d < ndim; d++) { sum[d] = 0.0; for (var i = 0; i < cluster.length; i++) { node = cluster[i]; sum[d] += opts.attributes[d](node); } newCentroid[d] = sum[d] / cluster.length; // Check to see if algorithm has converged, i.e. when centroids no longer change if (!haveValuesConverged(newCentroid[d], centroid[d], opts.sensitivityThreshold)) { isStillMoving = true; } } centroids[c] = newCentroid; clusters[c] = cy.collection(cluster); } iterations++; } return clusters; }; var kMedoids = function kMedoids(options) { var cy = this.cy(); var nodes = this.nodes(); var node = null; var opts = setOptions$2(options); // Begin k-medoids algorithm var clusters = new Array(opts.k); var medoids; var assignment = {}; var curCost; var minCosts = new Array(opts.k); // minimum cost configuration for each cluster // Step 1: Initialize k medoids if (opts.testMode) { if (typeof opts.testCentroids === 'number') ; else if (_typeof(opts.testCentroids) === 'object') { medoids = opts.testCentroids; } else { medoids = randomMedoids(nodes, opts.k); } } else { medoids = randomMedoids(nodes, opts.k); } var isStillMoving = true; var iterations = 0; while (isStillMoving && iterations < opts.maxIterations) { // Step 2: Assign nodes to the nearest medoid for (var n = 0; n < nodes.length; n++) { node = nodes[n]; // Determine which cluster this node belongs to: node id => cluster # assignment[node.id()] = classify(node, medoids, opts.distance, opts.attributes, 'kMedoids'); } isStillMoving = false; // Step 3: For each medoid m, and for each node associated with mediod m, // select the node with the lowest configuration cost as new medoid. for (var m = 0; m < medoids.length; m++) { // Get all nodes that belong to this medoid var cluster = buildCluster(m, nodes, assignment); if (cluster.length === 0) { // If cluster is empty, break out early & move to next cluster continue; } minCosts[m] = findCost(medoids[m], cluster, opts.attributes); // original cost // Select different medoid if its configuration has the lowest cost for (var _n = 0; _n < cluster.length; _n++) { curCost = findCost(cluster[_n], cluster, opts.attributes); if (curCost < minCosts[m]) { minCosts[m] = curCost; medoids[m] = cluster[_n]; isStillMoving = true; } } clusters[m] = cy.collection(cluster); } iterations++; } return clusters; }; var updateCentroids = function updateCentroids(centroids, nodes, U, weight, opts) { var numerator, denominator; for (var n = 0; n < nodes.length; n++) { for (var c = 0; c < centroids.length; c++) { weight[n][c] = Math.pow(U[n][c], opts.m); } } for (var _c = 0; _c < centroids.length; _c++) { for (var dim = 0; dim < opts.attributes.length; dim++) { numerator = 0; denominator = 0; for (var _n2 = 0; _n2 < nodes.length; _n2++) { numerator += weight[_n2][_c] * opts.attributes[dim](nodes[_n2]); denominator += weight[_n2][_c]; } centroids[_c][dim] = numerator / denominator; } } }; var updateMembership = function updateMembership(U, _U, centroids, nodes, opts) { // Save previous step for (var i = 0; i < U.length; i++) { _U[i] = U[i].slice(); } var sum, numerator, denominator; var pow = 2 / (opts.m - 1); for (var c = 0; c < centroids.length; c++) { for (var n = 0; n < nodes.length; n++) { sum = 0; for (var k = 0; k < centroids.length; k++) { // against all other centroids numerator = getDist(opts.distance, nodes[n], centroids[c], opts.attributes, 'cmeans'); denominator = getDist(opts.distance, nodes[n], centroids[k], opts.attributes, 'cmeans'); sum += Math.pow(numerator / denominator, pow); } U[n][c] = 1 / sum; } } }; var assign$1 = function assign(nodes, U, opts, cy) { var clusters = new Array(opts.k); for (var c = 0; c < clusters.length; c++) { clusters[c] = []; } var max; var index; for (var n = 0; n < U.length; n++) { // for each node (U is N x C matrix) max = -Infinity; index = -1; // Determine which cluster the node is most likely to belong in for (var _c2 = 0; _c2 < U[0].length; _c2++) { if (U[n][_c2] > max) { max = U[n][_c2]; index = _c2; } } clusters[index].push(nodes[n]); } // Turn every array into a collection of nodes for (var _c3 = 0; _c3 < clusters.length; _c3++) { clusters[_c3] = cy.collection(clusters[_c3]); } return clusters; }; var fuzzyCMeans = function fuzzyCMeans(options) { var cy = this.cy(); var nodes = this.nodes(); var opts = setOptions$2(options); // Begin fuzzy c-means algorithm var clusters; var centroids; var U; var _U; var weight; // Step 1: Initialize letiables. _U = new Array(nodes.length); for (var i = 0; i < nodes.length; i++) { // N x C matrix _U[i] = new Array(opts.k); } U = new Array(nodes.length); for (var _i3 = 0; _i3 < nodes.length; _i3++) { // N x C matrix U[_i3] = new Array(opts.k); } for (var _i4 = 0; _i4 < nodes.length; _i4++) { var total = 0; for (var j = 0; j < opts.k; j++) { U[_i4][j] = Math.random(); total += U[_i4][j]; } for (var _j = 0; _j < opts.k; _j++) { U[_i4][_j] = U[_i4][_j] / total; } } centroids = new Array(opts.k); for (var _i5 = 0; _i5 < opts.k; _i5++) { centroids[_i5] = new Array(opts.attributes.length); } weight = new Array(nodes.length); for (var _i6 = 0; _i6 < nodes.length; _i6++) { // N x C matrix weight[_i6] = new Array(opts.k); } // end init FCM var isStillMoving = true; var iterations = 0; while (isStillMoving && iterations < opts.maxIterations) { isStillMoving = false; // Step 2: Calculate the centroids for each step. updateCentroids(centroids, nodes, U, weight, opts); // Step 3: Update the partition matrix U. updateMembership(U, _U, centroids, nodes, opts); // Step 4: Check for convergence. if (!haveMatricesConverged(U, _U, opts.sensitivityThreshold)) { isStillMoving = true; } iterations++; } // Assign nodes to clusters with highest probability. clusters = assign$1(nodes, U, opts, cy); return { clusters: clusters, degreeOfMembership: U }; }; var kClustering = { kMeans: kMeans, kMedoids: kMedoids, fuzzyCMeans: fuzzyCMeans, fcm: fuzzyCMeans }; // Implemented by Zoe Xi @zoexi for GSOC 2016 var defaults$a = defaults$g({ distance: 'euclidean', // distance metric to compare nodes linkage: 'min', // linkage criterion : how to determine the distance between clusters of nodes mode: 'threshold', // mode:'threshold' => clusters must be threshold distance apart threshold: Infinity, // the distance threshold // mode:'dendrogram' => the nodes are organised as leaves in a tree (siblings are close), merging makes clusters addDendrogram: false, // whether to add the dendrogram to the graph for viz dendrogramDepth: 0, // depth at which dendrogram branches are merged into the returned clusters attributes: [] // array of attr functions }); var linkageAliases = { 'single': 'min', 'complete': 'max' }; var setOptions$1 = function setOptions(options) { var opts = defaults$a(options); var preferredAlias = linkageAliases[opts.linkage]; if (preferredAlias != null) { opts.linkage = preferredAlias; } return opts; }; var mergeClosest = function mergeClosest(clusters, index, dists, mins, opts) { // Find two closest clusters from cached mins var minKey = 0; var min = Infinity; var dist; var attrs = opts.attributes; var getDist = function getDist(n1, n2) { return clusteringDistance(opts.distance, attrs.length, function (i) { return attrs[i](n1); }, function (i) { return attrs[i](n2); }, n1, n2); }; for (var i = 0; i < clusters.length; i++) { var key = clusters[i].key; var _dist = dists[key][mins[key]]; if (_dist < min) { minKey = key; min = _dist; } } if (opts.mode === 'threshold' && min >= opts.threshold || opts.mode === 'dendrogram' && clusters.length === 1) { return false; } var c1 = index[minKey]; var c2 = index[mins[minKey]]; var merged; // Merge two closest clusters if (opts.mode === 'dendrogram') { merged = { left: c1, right: c2, key: c1.key }; } else { merged = { value: c1.value.concat(c2.value), key: c1.key }; } clusters[c1.index] = merged; clusters.splice(c2.index, 1); index[c1.key] = merged; // Update distances with new merged cluster for (var _i = 0; _i < clusters.length; _i++) { var cur = clusters[_i]; if (c1.key === cur.key) { dist = Infinity; } else if (opts.linkage === 'min') { dist = dists[c1.key][cur.key]; if (dists[c1.key][cur.key] > dists[c2.key][cur.key]) { dist = dists[c2.key][cur.key]; } } else if (opts.linkage === 'max') { dist = dists[c1.key][cur.key]; if (dists[c1.key][cur.key] < dists[c2.key][cur.key]) { dist = dists[c2.key][cur.key]; } } else if (opts.linkage === 'mean') { dist = (dists[c1.key][cur.key] * c1.size + dists[c2.key][cur.key] * c2.size) / (c1.size + c2.size); } else { if (opts.mode === 'dendrogram') dist = getDist(cur.value, c1.value);else dist = getDist(cur.value[0], c1.value[0]); } dists[c1.key][cur.key] = dists[cur.key][c1.key] = dist; // distance matrix is symmetric } // Update cached mins for (var _i2 = 0; _i2 < clusters.length; _i2++) { var key1 = clusters[_i2].key; if (mins[key1] === c1.key || mins[key1] === c2.key) { var _min = key1; for (var j = 0; j < clusters.length; j++) { var key2 = clusters[j].key; if (dists[key1][key2] < dists[key1][_min]) { _min = key2; } } mins[key1] = _min; } clusters[_i2].index = _i2; } // Clean up meta data used for clustering c1.key = c2.key = c1.index = c2.index = null; return true; }; var getAllChildren = function getAllChildren(root, arr, cy) { if (!root) return; if (root.value) { arr.push(root.value); } else { if (root.left) getAllChildren(root.left, arr); if (root.right) getAllChildren(root.right, arr); } }; var buildDendrogram = function buildDendrogram(root, cy) { if (!root) return ''; if (root.left && root.right) { var leftStr = buildDendrogram(root.left, cy); var rightStr = buildDendrogram(root.right, cy); var node = cy.add({ group: 'nodes', data: { id: leftStr + ',' + rightStr } }); cy.add({ group: 'edges', data: { source: leftStr, target: node.id() } }); cy.add({ group: 'edges', data: { source: rightStr, target: node.id() } }); return node.id(); } else if (root.value) { return root.value.id(); } }; var buildClustersFromTree = function buildClustersFromTree(root, k, cy) { if (!root) return []; var left = [], right = [], leaves = []; if (k === 0) { // don't cut tree, simply return all nodes as 1 single cluster if (root.left) getAllChildren(root.left, left); if (root.right) getAllChildren(root.right, right); leaves = left.concat(right); return [cy.collection(leaves)]; } else if (k === 1) { // cut at root if (root.value) { // leaf node return [cy.collection(root.value)]; } else { if (root.left) getAllChildren(root.left, left); if (root.right) getAllChildren(root.right, right); return [cy.collection(left), cy.collection(right)]; } } else { if (root.value) { return [cy.collection(root.value)]; } else { if (root.left) left = buildClustersFromTree(root.left, k - 1, cy); if (root.right) right = buildClustersFromTree(root.right, k - 1, cy); return left.concat(right); } } }; var hierarchicalClustering = function hierarchicalClustering(options) { var cy = this.cy(); var nodes = this.nodes(); // Set parameters of algorithm: linkage type, distance metric, etc. var opts = setOptions$1(options); var attrs = opts.attributes; var getDist = function getDist(n1, n2) { return clusteringDistance(opts.distance, attrs.length, function (i) { return attrs[i](n1); }, function (i) { return attrs[i](n2); }, n1, n2); }; // Begin hierarchical algorithm var clusters = []; var dists = []; // distances between each pair of clusters var mins = []; // closest cluster for each cluster var index = []; // hash of all clusters by key // In agglomerative (bottom-up) clustering, each node starts as its own cluster for (var n = 0; n < nodes.length; n++) { var cluster = { value: opts.mode === 'dendrogram' ? nodes[n] : [nodes[n]], key: n, index: n }; clusters[n] = cluster; index[n] = cluster; dists[n] = []; mins[n] = 0; } // Calculate the distance between each pair of clusters for (var i = 0; i < clusters.length; i++) { for (var j = 0; j <= i; j++) { var dist = void 0; if (opts.mode === 'dendrogram') { // modes store cluster values differently dist = i === j ? Infinity : getDist(clusters[i].value, clusters[j].value); } else { dist = i === j ? Infinity : getDist(clusters[i].value[0], clusters[j].value[0]); } dists[i][j] = dist; dists[j][i] = dist; if (dist < dists[i][mins[i]]) { mins[i] = j; // Cache mins: closest cluster to cluster i is cluster j } } } // Find the closest pair of clusters and merge them into a single cluster. // Update distances between new cluster and each of the old clusters, and loop until threshold reached. var merged = mergeClosest(clusters, index, dists, mins, opts); while (merged) { merged = mergeClosest(clusters, index, dists, mins, opts); } var retClusters; // Dendrogram mode builds the hierarchy and adds intermediary nodes + edges // in addition to returning the clusters. if (opts.mode === 'dendrogram') { retClusters = buildClustersFromTree(clusters[0], opts.dendrogramDepth, cy); if (opts.addDendrogram) buildDendrogram(clusters[0], cy); } else { // Regular mode simply returns the clusters retClusters = new Array(clusters.length); clusters.forEach(function (cluster, i) { // Clean up meta data used for clustering cluster.key = cluster.index = null; retClusters[i] = cy.collection(cluster.value); }); } return retClusters; }; var hierarchicalClustering$1 = { hierarchicalClustering: hierarchicalClustering, hca: hierarchicalClustering }; // Implemented by Zoe Xi @zoexi for GSOC 2016 var defaults$9 = defaults$g({ distance: 'euclidean', // distance metric to compare attributes between two nodes preference: 'median', // suitability of a data point to serve as an exemplar damping: 0.8, // damping factor between [0.5, 1) maxIterations: 1000, // max number of iterations to run minIterations: 100, // min number of iterations to run in order for clustering to stop attributes: [// functions to quantify the similarity between any two points // e.g. node => node.data('weight') ] }); var setOptions = function setOptions(options) { var dmp = options.damping; var pref = options.preference; if (!(0.5 <= dmp && dmp < 1)) { error("Damping must range on [0.5, 1). Got: ".concat(dmp)); } var validPrefs = ['median', 'mean', 'min', 'max']; if (!(validPrefs.some(function (v) { return v === pref; }) || number$1(pref))) { error("Preference must be one of [".concat(validPrefs.map(function (p) { return "'".concat(p, "'"); }).join(', '), "] or a number. Got: ").concat(pref)); } return defaults$9(options); }; var getSimilarity = function getSimilarity(type, n1, n2, attributes) { var attr = function attr(n, i) { return attributes[i](n); }; // nb negative because similarity should have an inverse relationship to distance return -clusteringDistance(type, attributes.length, function (i) { return attr(n1, i); }, function (i) { return attr(n2, i); }, n1, n2); }; var getPreference = function getPreference(S, preference) { // larger preference = greater # of clusters var p = null; if (preference === 'median') { p = median(S); } else if (preference === 'mean') { p = mean(S); } else if (preference === 'min') { p = min(S); } else if (preference === 'max') { p = max(S); } else { // Custom preference number, as set by user p = preference; } return p; }; var findExemplars = function findExemplars(n, R, A) { var indices = []; for (var i = 0; i < n; i++) { if (R[i * n + i] + A[i * n + i] > 0) { indices.push(i); } } return indices; }; var assignClusters = function assignClusters(n, S, exemplars) { var clusters = []; for (var i = 0; i < n; i++) { var index = -1; var max = -Infinity; for (var ei = 0; ei < exemplars.length; ei++) { var e = exemplars[ei]; if (S[i * n + e] > max) { index = e; max = S[i * n + e]; } } if (index > 0) { clusters.push(index); } } for (var _ei = 0; _ei < exemplars.length; _ei++) { clusters[exemplars[_ei]] = exemplars[_ei]; } return clusters; }; var assign = function assign(n, S, exemplars) { var clusters = assignClusters(n, S, exemplars); for (var ei = 0; ei < exemplars.length; ei++) { var ii = []; for (var c = 0; c < clusters.length; c++) { if (clusters[c] === exemplars[ei]) { ii.push(c); } } var maxI = -1; var maxSum = -Infinity; for (var i = 0; i < ii.length; i++) { var sum = 0; for (var j = 0; j < ii.length; j++) { sum += S[ii[j] * n + ii[i]]; } if (sum > maxSum) { maxI = i; maxSum = sum; } } exemplars[ei] = ii[maxI]; } clusters = assignClusters(n, S, exemplars); return clusters; }; var affinityPropagation = function affinityPropagation(options) { var cy = this.cy(); var nodes = this.nodes(); var opts = setOptions(options); // Map each node to its position in node array var id2position = {}; for (var i = 0; i < nodes.length; i++) { id2position[nodes[i].id()] = i; } // Begin affinity propagation algorithm var n; // number of data points var n2; // size of matrices var S; // similarity matrix (1D array) var p; // preference/suitability of a data point to serve as an exemplar var R; // responsibility matrix (1D array) var A; // availability matrix (1D array) n = nodes.length; n2 = n * n; // Initialize and build S similarity matrix S = new Array(n2); for (var _i = 0; _i < n2; _i++) { S[_i] = -Infinity; // for cases where two data points shouldn't be linked together } for (var _i2 = 0; _i2 < n; _i2++) { for (var j = 0; j < n; j++) { if (_i2 !== j) { S[_i2 * n + j] = getSimilarity(opts.distance, nodes[_i2], nodes[j], opts.attributes); } } } // Place preferences on the diagonal of S p = getPreference(S, opts.preference); for (var _i3 = 0; _i3 < n; _i3++) { S[_i3 * n + _i3] = p; } // Initialize R responsibility matrix R = new Array(n2); for (var _i4 = 0; _i4 < n2; _i4++) { R[_i4] = 0.0; } // Initialize A availability matrix A = new Array(n2); for (var _i5 = 0; _i5 < n2; _i5++) { A[_i5] = 0.0; } var old = new Array(n); var Rp = new Array(n); var se = new Array(n); for (var _i6 = 0; _i6 < n; _i6++) { old[_i6] = 0.0; Rp[_i6] = 0.0; se[_i6] = 0; } var e = new Array(n * opts.minIterations); for (var _i7 = 0; _i7 < e.length; _i7++) { e[_i7] = 0; } var iter; for (iter = 0; iter < opts.maxIterations; iter++) { // main algorithmic loop // Update R responsibility matrix for (var _i8 = 0; _i8 < n; _i8++) { var max = -Infinity, max2 = -Infinity, maxI = -1, AS = 0.0; for (var _j = 0; _j < n; _j++) { old[_j] = R[_i8 * n + _j]; AS = A[_i8 * n + _j] + S[_i8 * n + _j]; if (AS >= max) { max2 = max; max = AS; maxI = _j; } else if (AS > max2) { max2 = AS; } } for (var _j2 = 0; _j2 < n; _j2++) { R[_i8 * n + _j2] = (1 - opts.damping) * (S[_i8 * n + _j2] - max) + opts.damping * old[_j2]; } R[_i8 * n + maxI] = (1 - opts.damping) * (S[_i8 * n + maxI] - max2) + opts.damping * old[maxI]; } // Update A availability matrix for (var _i9 = 0; _i9 < n; _i9++) { var sum = 0; for (var _j3 = 0; _j3 < n; _j3++) { old[_j3] = A[_j3 * n + _i9]; Rp[_j3] = Math.max(0, R[_j3 * n + _i9]); sum += Rp[_j3]; } sum -= Rp[_i9]; Rp[_i9] = R[_i9 * n + _i9]; sum += Rp[_i9]; for (var _j4 = 0; _j4 < n; _j4++) { A[_j4 * n + _i9] = (1 - opts.damping) * Math.min(0, sum - Rp[_j4]) + opts.damping * old[_j4]; } A[_i9 * n + _i9] = (1 - opts.damping) * (sum - Rp[_i9]) + opts.damping * old[_i9]; } // Check for convergence var K = 0; for (var _i10 = 0; _i10 < n; _i10++) { var E = A[_i10 * n + _i10] + R[_i10 * n + _i10] > 0 ? 1 : 0; e[iter % opts.minIterations * n + _i10] = E; K += E; } if (K > 0 && (iter >= opts.minIterations - 1 || iter == opts.maxIterations - 1)) { var _sum = 0; for (var _i11 = 0; _i11 < n; _i11++) { se[_i11] = 0; for (var _j5 = 0; _j5 < opts.minIterations; _j5++) { se[_i11] += e[_j5 * n + _i11]; } if (se[_i11] === 0 || se[_i11] === opts.minIterations) { _sum++; } } if (_sum === n) { // then we have convergence break; } } } // Identify exemplars (cluster centers) var exemplarsIndices = findExemplars(n, R, A); // Assign nodes to clusters var clusterIndices = assign(n, S, exemplarsIndices); var clusters = {}; for (var c = 0; c < exemplarsIndices.length; c++) { clusters[exemplarsIndices[c]] = []; } for (var _i12 = 0; _i12 < nodes.length; _i12++) { var pos = id2position[nodes[_i12].id()]; var clusterIndex = clusterIndices[pos]; if (clusterIndex != null) { // the node may have not been assigned a cluster if no valid attributes were specified clusters[clusterIndex].push(nodes[_i12]); } } var retClusters = new Array(exemplarsIndices.length); for (var _c = 0; _c < exemplarsIndices.length; _c++) { retClusters[_c] = cy.collection(clusters[exemplarsIndices[_c]]); } return retClusters; }; var affinityPropagation$1 = { affinityPropagation: affinityPropagation, ap: affinityPropagation }; var hierholzerDefaults = defaults$g({ root: undefined, directed: false }); var elesfn$k = { hierholzer: function hierholzer(options) { if (!plainObject(options)) { var args = arguments; options = { root: args[0], directed: args[1] }; } var _hierholzerDefaults = hierholzerDefaults(options), root = _hierholzerDefaults.root, directed = _hierholzerDefaults.directed; var eles = this; var dflag = false; var oddIn; var oddOut; var startVertex; if (root) startVertex = string(root) ? this.filter(root)[0].id() : root[0].id(); var nodes = {}; var edges = {}; if (directed) { eles.forEach(function (ele) { var id = ele.id(); if (ele.isNode()) { var ind = ele.indegree(true); var outd = ele.outdegree(true); var d1 = ind - outd; var d2 = outd - ind; if (d1 == 1) { if (oddIn) dflag = true;else oddIn = id; } else if (d2 == 1) { if (oddOut) dflag = true;else oddOut = id; } else if (d2 > 1 || d1 > 1) { dflag = true; } nodes[id] = []; ele.outgoers().forEach(function (e) { if (e.isEdge()) nodes[id].push(e.id()); }); } else { edges[id] = [undefined, ele.target().id()]; } }); } else { eles.forEach(function (ele) { var id = ele.id(); if (ele.isNode()) { var d = ele.degree(true); if (d % 2) { if (!oddIn) oddIn = id;else if (!oddOut) oddOut = id;else dflag = true; } nodes[id] = []; ele.connectedEdges().forEach(function (e) { return nodes[id].push(e.id()); }); } else { edges[id] = [ele.source().id(), ele.target().id()]; } }); } var result = { found: false, trail: undefined }; if (dflag) return result;else if (oddOut && oddIn) { if (directed) { if (startVertex && oddOut != startVertex) { return result; } startVertex = oddOut; } else { if (startVertex && oddOut != startVertex && oddIn != startVertex) { return result; } else if (!startVertex) { startVertex = oddOut; } } } else { if (!startVertex) startVertex = eles[0].id(); } var walk = function walk(v) { var currentNode = v; var subtour = [v]; var adj, adjTail, adjHead; while (nodes[currentNode].length) { adj = nodes[currentNode].shift(); adjTail = edges[adj][0]; adjHead = edges[adj][1]; if (currentNode != adjHead) { nodes[adjHead] = nodes[adjHead].filter(function (e) { return e != adj; }); currentNode = adjHead; } else if (!directed && currentNode != adjTail) { nodes[adjTail] = nodes[adjTail].filter(function (e) { return e != adj; }); currentNode = adjTail; } subtour.unshift(adj); subtour.unshift(currentNode); } return subtour; }; var trail = []; var subtour = []; subtour = walk(startVertex); while (subtour.length != 1) { if (nodes[subtour[0]].length == 0) { trail.unshift(eles.getElementById(subtour.shift())); trail.unshift(eles.getElementById(subtour.shift())); } else { subtour = walk(subtour.shift()).concat(subtour); } } trail.unshift(eles.getElementById(subtour.shift())); // final node for (var d in nodes) { if (nodes[d].length) { return result; } } result.found = true; result.trail = this.spawn(trail, true); return result; } }; var hopcroftTarjanBiconnected = function hopcroftTarjanBiconnected() { var eles = this; var nodes = {}; var id = 0; var edgeCount = 0; var components = []; var stack = []; var visitedEdges = {}; var buildComponent = function buildComponent(x, y) { var i = stack.length - 1; var cutset = []; var component = eles.spawn(); while (stack[i].x != x || stack[i].y != y) { cutset.push(stack.pop().edge); i--; } cutset.push(stack.pop().edge); cutset.forEach(function (edge) { var connectedNodes = edge.connectedNodes().intersection(eles); component.merge(edge); connectedNodes.forEach(function (node) { var nodeId = node.id(); var connectedEdges = node.connectedEdges().intersection(eles); component.merge(node); if (!nodes[nodeId].cutVertex) { component.merge(connectedEdges); } else { component.merge(connectedEdges.filter(function (edge) { return edge.isLoop(); })); } }); }); components.push(component); }; var biconnectedSearch = function biconnectedSearch(root, currentNode, parent) { if (root === parent) edgeCount += 1; nodes[currentNode] = { id: id, low: id++, cutVertex: false }; var edges = eles.getElementById(currentNode).connectedEdges().intersection(eles); if (edges.size() === 0) { components.push(eles.spawn(eles.getElementById(currentNode))); } else { var sourceId, targetId, otherNodeId, edgeId; edges.forEach(function (edge) { sourceId = edge.source().id(); targetId = edge.target().id(); otherNodeId = sourceId === currentNode ? targetId : sourceId; if (otherNodeId !== parent) { edgeId = edge.id(); if (!visitedEdges[edgeId]) { visitedEdges[edgeId] = true; stack.push({ x: currentNode, y: otherNodeId, edge: edge }); } if (!(otherNodeId in nodes)) { biconnectedSearch(root, otherNodeId, currentNode); nodes[currentNode].low = Math.min(nodes[currentNode].low, nodes[otherNodeId].low); if (nodes[currentNode].id <= nodes[otherNodeId].low) { nodes[currentNode].cutVertex = true; buildComponent(currentNode, otherNodeId); } } else { nodes[currentNode].low = Math.min(nodes[currentNode].low, nodes[otherNodeId].id); } } }); } }; eles.forEach(function (ele) { if (ele.isNode()) { var nodeId = ele.id(); if (!(nodeId in nodes)) { edgeCount = 0; biconnectedSearch(nodeId, nodeId); nodes[nodeId].cutVertex = edgeCount > 1; } } }); var cutVertices = Object.keys(nodes).filter(function (id) { return nodes[id].cutVertex; }).map(function (id) { return eles.getElementById(id); }); return { cut: eles.spawn(cutVertices), components: components }; }; var hopcroftTarjanBiconnected$1 = { hopcroftTarjanBiconnected: hopcroftTarjanBiconnected, htbc: hopcroftTarjanBiconnected, htb: hopcroftTarjanBiconnected, hopcroftTarjanBiconnectedComponents: hopcroftTarjanBiconnected }; var tarjanStronglyConnected = function tarjanStronglyConnected() { var eles = this; var nodes = {}; var index = 0; var components = []; var stack = []; var cut = eles.spawn(eles); var stronglyConnectedSearch = function stronglyConnectedSearch(sourceNodeId) { stack.push(sourceNodeId); nodes[sourceNodeId] = { index: index, low: index++, explored: false }; var connectedEdges = eles.getElementById(sourceNodeId).connectedEdges().intersection(eles); connectedEdges.forEach(function (edge) { var targetNodeId = edge.target().id(); if (targetNodeId !== sourceNodeId) { if (!(targetNodeId in nodes)) { stronglyConnectedSearch(targetNodeId); } if (!nodes[targetNodeId].explored) { nodes[sourceNodeId].low = Math.min(nodes[sourceNodeId].low, nodes[targetNodeId].low); } } }); if (nodes[sourceNodeId].index === nodes[sourceNodeId].low) { var componentNodes = eles.spawn(); for (;;) { var nodeId = stack.pop(); componentNodes.merge(eles.getElementById(nodeId)); nodes[nodeId].low = nodes[sourceNodeId].index; nodes[nodeId].explored = true; if (nodeId === sourceNodeId) { break; } } var componentEdges = componentNodes.edgesWith(componentNodes); var component = componentNodes.merge(componentEdges); components.push(component); cut = cut.difference(component); } }; eles.forEach(function (ele) { if (ele.isNode()) { var nodeId = ele.id(); if (!(nodeId in nodes)) { stronglyConnectedSearch(nodeId); } } }); return { cut: cut, components: components }; }; var tarjanStronglyConnected$1 = { tarjanStronglyConnected: tarjanStronglyConnected, tsc: tarjanStronglyConnected, tscc: tarjanStronglyConnected, tarjanStronglyConnectedComponents: tarjanStronglyConnected }; var elesfn$j = {}; [elesfn$v, elesfn$u, elesfn$t, elesfn$s, elesfn$r, elesfn$q, elesfn$p, elesfn$o, elesfn$n, elesfn$m, elesfn$l, markovClustering$1, kClustering, hierarchicalClustering$1, affinityPropagation$1, elesfn$k, hopcroftTarjanBiconnected$1, tarjanStronglyConnected$1].forEach(function (props) { extend(elesfn$j, props); }); /*! Embeddable Minimum Strictly-Compliant Promises/A+ 1.1.1 Thenable Copyright (c) 2013-2014 Ralf S. Engelschall (http://engelschall.com) Licensed under The MIT License (http://opensource.org/licenses/MIT) */ /* promise states [Promises/A+ 2.1] */ var STATE_PENDING = 0; /* [Promises/A+ 2.1.1] */ var STATE_FULFILLED = 1; /* [Promises/A+ 2.1.2] */ var STATE_REJECTED = 2; /* [Promises/A+ 2.1.3] */ /* promise object constructor */ var api = function api(executor) { /* optionally support non-constructor/plain-function call */ if (!(this instanceof api)) return new api(executor); /* initialize object */ this.id = 'Thenable/1.0.7'; this.state = STATE_PENDING; /* initial state */ this.fulfillValue = undefined; /* initial value */ /* [Promises/A+ 1.3, 2.1.2.2] */ this.rejectReason = undefined; /* initial reason */ /* [Promises/A+ 1.5, 2.1.3.2] */ this.onFulfilled = []; /* initial handlers */ this.onRejected = []; /* initial handlers */ /* provide optional information-hiding proxy */ this.proxy = { then: this.then.bind(this) }; /* support optional executor function */ if (typeof executor === 'function') executor.call(this, this.fulfill.bind(this), this.reject.bind(this)); }; /* promise API methods */ api.prototype = { /* promise resolving methods */ fulfill: function fulfill(value) { return deliver(this, STATE_FULFILLED, 'fulfillValue', value); }, reject: function reject(value) { return deliver(this, STATE_REJECTED, 'rejectReason', value); }, /* "The then Method" [Promises/A+ 1.1, 1.2, 2.2] */ then: function then(onFulfilled, onRejected) { var curr = this; var next = new api(); /* [Promises/A+ 2.2.7] */ curr.onFulfilled.push(resolver(onFulfilled, next, 'fulfill')); /* [Promises/A+ 2.2.2/2.2.6] */ curr.onRejected.push(resolver(onRejected, next, 'reject')); /* [Promises/A+ 2.2.3/2.2.6] */ execute(curr); return next.proxy; /* [Promises/A+ 2.2.7, 3.3] */ } }; /* deliver an action */ var deliver = function deliver(curr, state, name, value) { if (curr.state === STATE_PENDING) { curr.state = state; /* [Promises/A+ 2.1.2.1, 2.1.3.1] */ curr[name] = value; /* [Promises/A+ 2.1.2.2, 2.1.3.2] */ execute(curr); } return curr; }; /* execute all handlers */ var execute = function execute(curr) { if (curr.state === STATE_FULFILLED) execute_handlers(curr, 'onFulfilled', curr.fulfillValue);else if (curr.state === STATE_REJECTED) execute_handlers(curr, 'onRejected', curr.rejectReason); }; /* execute particular set of handlers */ var execute_handlers = function execute_handlers(curr, name, value) { /* global setImmediate: true */ /* global setTimeout: true */ /* short-circuit processing */ if (curr[name].length === 0) return; /* iterate over all handlers, exactly once */ var handlers = curr[name]; curr[name] = []; /* [Promises/A+ 2.2.2.3, 2.2.3.3] */ var func = function func() { for (var i = 0; i < handlers.length; i++) { handlers[i](value); } /* [Promises/A+ 2.2.5] */ }; /* execute procedure asynchronously */ /* [Promises/A+ 2.2.4, 3.1] */ if (typeof setImmediate === 'function') setImmediate(func);else setTimeout(func, 0); }; /* generate a resolver function */ var resolver = function resolver(cb, next, method) { return function (value) { if (typeof cb !== 'function') /* [Promises/A+ 2.2.1, 2.2.7.3, 2.2.7.4] */ next[method].call(next, value); /* [Promises/A+ 2.2.7.3, 2.2.7.4] */else { var result; try { result = cb(value); } /* [Promises/A+ 2.2.2.1, 2.2.3.1, 2.2.5, 3.2] */ catch (e) { next.reject(e); /* [Promises/A+ 2.2.7.2] */ return; } resolve(next, result); /* [Promises/A+ 2.2.7.1] */ } }; }; /* "Promise Resolution Procedure" */ /* [Promises/A+ 2.3] */ var resolve = function resolve(promise, x) { /* sanity check arguments */ /* [Promises/A+ 2.3.1] */ if (promise === x || promise.proxy === x) { promise.reject(new TypeError('cannot resolve promise with itself')); return; } /* surgically check for a "then" method (mainly to just call the "getter" of "then" only once) */ var then; if (_typeof(x) === 'object' && x !== null || typeof x === 'function') { try { then = x.then; } /* [Promises/A+ 2.3.3.1, 3.5] */ catch (e) { promise.reject(e); /* [Promises/A+ 2.3.3.2] */ return; } } /* handle own Thenables [Promises/A+ 2.3.2] and similar "thenables" [Promises/A+ 2.3.3] */ if (typeof then === 'function') { var resolved = false; try { /* call retrieved "then" method */ /* [Promises/A+ 2.3.3.3] */ then.call(x, /* resolvePromise */ /* [Promises/A+ 2.3.3.3.1] */ function (y) { if (resolved) return; resolved = true; /* [Promises/A+ 2.3.3.3.3] */ if (y === x) /* [Promises/A+ 3.6] */ promise.reject(new TypeError('circular thenable chain'));else resolve(promise, y); }, /* rejectPromise */ /* [Promises/A+ 2.3.3.3.2] */ function (r) { if (resolved) return; resolved = true; /* [Promises/A+ 2.3.3.3.3] */ promise.reject(r); }); } catch (e) { if (!resolved) /* [Promises/A+ 2.3.3.3.3] */ promise.reject(e); /* [Promises/A+ 2.3.3.3.4] */ } return; } /* handle other values */ promise.fulfill(x); /* [Promises/A+ 2.3.4, 2.3.3.4] */ }; // so we always have Promise.all() api.all = function (ps) { return new api(function (resolveAll, rejectAll) { var vals = new Array(ps.length); var doneCount = 0; var fulfill = function fulfill(i, val) { vals[i] = val; doneCount++; if (doneCount === ps.length) { resolveAll(vals); } }; for (var i = 0; i < ps.length; i++) { (function (i) { var p = ps[i]; var isPromise = p != null && p.then != null; if (isPromise) { p.then(function (val) { fulfill(i, val); }, function (err) { rejectAll(err); }); } else { var val = p; fulfill(i, val); } })(i); } }); }; api.resolve = function (val) { return new api(function (resolve, reject) { resolve(val); }); }; api.reject = function (val) { return new api(function (resolve, reject) { reject(val); }); }; var Promise$1 = typeof Promise !== 'undefined' ? Promise : api; // eslint-disable-line no-undef var Animation = function Animation(target, opts, opts2) { var isCore = core(target); var isEle = !isCore; var _p = this._private = extend({ duration: 1000 }, opts, opts2); _p.target = target; _p.style = _p.style || _p.css; _p.started = false; _p.playing = false; _p.hooked = false; _p.applying = false; _p.progress = 0; _p.completes = []; _p.frames = []; if (_p.complete && fn$6(_p.complete)) { _p.completes.push(_p.complete); } if (isEle) { var pos = target.position(); _p.startPosition = _p.startPosition || { x: pos.x, y: pos.y }; _p.startStyle = _p.startStyle || target.cy().style().getAnimationStartStyle(target, _p.style); } if (isCore) { var pan = target.pan(); _p.startPan = { x: pan.x, y: pan.y }; _p.startZoom = target.zoom(); } // for future timeline/animations impl this.length = 1; this[0] = this; }; var anifn = Animation.prototype; extend(anifn, { instanceString: function instanceString() { return 'animation'; }, hook: function hook() { var _p = this._private; if (!_p.hooked) { // add to target's animation queue var q; var tAni = _p.target._private.animation; if (_p.queue) { q = tAni.queue; } else { q = tAni.current; } q.push(this); // add to the animation loop pool if (elementOrCollection(_p.target)) { _p.target.cy().addToAnimationPool(_p.target); } _p.hooked = true; } return this; }, play: function play() { var _p = this._private; // autorewind if (_p.progress === 1) { _p.progress = 0; } _p.playing = true; _p.started = false; // needs to be started by animation loop _p.stopped = false; this.hook(); // the animation loop will start the animation... return this; }, playing: function playing() { return this._private.playing; }, apply: function apply() { var _p = this._private; _p.applying = true; _p.started = false; // needs to be started by animation loop _p.stopped = false; this.hook(); // the animation loop will apply the animation at this progress return this; }, applying: function applying() { return this._private.applying; }, pause: function pause() { var _p = this._private; _p.playing = false; _p.started = false; return this; }, stop: function stop() { var _p = this._private; _p.playing = false; _p.started = false; _p.stopped = true; // to be removed from animation queues return this; }, rewind: function rewind() { return this.progress(0); }, fastforward: function fastforward() { return this.progress(1); }, time: function time(t) { var _p = this._private; if (t === undefined) { return _p.progress * _p.duration; } else { return this.progress(t / _p.duration); } }, progress: function progress(p) { var _p = this._private; var wasPlaying = _p.playing; if (p === undefined) { return _p.progress; } else { if (wasPlaying) { this.pause(); } _p.progress = p; _p.started = false; if (wasPlaying) { this.play(); } } return this; }, completed: function completed() { return this._private.progress === 1; }, reverse: function reverse() { var _p = this._private; var wasPlaying = _p.playing; if (wasPlaying) { this.pause(); } _p.progress = 1 - _p.progress; _p.started = false; var swap = function swap(a, b) { var _pa = _p[a]; if (_pa == null) { return; } _p[a] = _p[b]; _p[b] = _pa; }; swap('zoom', 'startZoom'); swap('pan', 'startPan'); swap('position', 'startPosition'); // swap styles if (_p.style) { for (var i = 0; i < _p.style.length; i++) { var prop = _p.style[i]; var name = prop.name; var startStyleProp = _p.startStyle[name]; _p.startStyle[name] = prop; _p.style[i] = startStyleProp; } } if (wasPlaying) { this.play(); } return this; }, promise: function promise(type) { var _p = this._private; var arr; switch (type) { case 'frame': arr = _p.frames; break; default: case 'complete': case 'completed': arr = _p.completes; } return new Promise$1(function (resolve, reject) { arr.push(function () { resolve(); }); }); } }); anifn.complete = anifn.completed; anifn.run = anifn.play; anifn.running = anifn.playing; var define$3 = { animated: function animated() { return function animatedImpl() { var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var cy = this._private.cy || this; if (!cy.styleEnabled()) { return false; } var ele = all[0]; if (ele) { return ele._private.animation.current.length > 0; } }; }, // animated clearQueue: function clearQueue() { return function clearQueueImpl() { var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var cy = this._private.cy || this; if (!cy.styleEnabled()) { return this; } for (var i = 0; i < all.length; i++) { var ele = all[i]; ele._private.animation.queue = []; } return this; }; }, // clearQueue delay: function delay() { return function delayImpl(time, complete) { var cy = this._private.cy || this; if (!cy.styleEnabled()) { return this; } return this.animate({ delay: time, duration: time, complete: complete }); }; }, // delay delayAnimation: function delayAnimation() { return function delayAnimationImpl(time, complete) { var cy = this._private.cy || this; if (!cy.styleEnabled()) { return this; } return this.animation({ delay: time, duration: time, complete: complete }); }; }, // delay animation: function animation() { return function animationImpl(properties, params) { var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var cy = this._private.cy || this; var isCore = !selfIsArrayLike; var isEles = !isCore; if (!cy.styleEnabled()) { return this; } var style = cy.style(); properties = extend({}, properties, params); var propertiesEmpty = Object.keys(properties).length === 0; if (propertiesEmpty) { return new Animation(all[0], properties); // nothing to animate } if (properties.duration === undefined) { properties.duration = 400; } switch (properties.duration) { case 'slow': properties.duration = 600; break; case 'fast': properties.duration = 200; break; } if (isEles) { properties.style = style.getPropsList(properties.style || properties.css); properties.css = undefined; } if (isEles && properties.renderedPosition != null) { var rpos = properties.renderedPosition; var pan = cy.pan(); var zoom = cy.zoom(); properties.position = renderedToModelPosition(rpos, zoom, pan); } // override pan w/ panBy if set if (isCore && properties.panBy != null) { var panBy = properties.panBy; var cyPan = cy.pan(); properties.pan = { x: cyPan.x + panBy.x, y: cyPan.y + panBy.y }; } // override pan w/ center if set var center = properties.center || properties.centre; if (isCore && center != null) { var centerPan = cy.getCenterPan(center.eles, properties.zoom); if (centerPan != null) { properties.pan = centerPan; } } // override pan & zoom w/ fit if set if (isCore && properties.fit != null) { var fit = properties.fit; var fitVp = cy.getFitViewport(fit.eles || fit.boundingBox, fit.padding); if (fitVp != null) { properties.pan = fitVp.pan; properties.zoom = fitVp.zoom; } } // override zoom (& potentially pan) w/ zoom obj if set if (isCore && plainObject(properties.zoom)) { var vp = cy.getZoomedViewport(properties.zoom); if (vp != null) { if (vp.zoomed) { properties.zoom = vp.zoom; } if (vp.panned) { properties.pan = vp.pan; } } else { properties.zoom = null; // an inavalid zoom (e.g. no delta) gets automatically destroyed } } return new Animation(all[0], properties); }; }, // animate animate: function animate() { return function animateImpl(properties, params) { var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var cy = this._private.cy || this; if (!cy.styleEnabled()) { return this; } if (params) { properties = extend({}, properties, params); } // manually hook and run the animation for (var i = 0; i < all.length; i++) { var ele = all[i]; var queue = ele.animated() && (properties.queue === undefined || properties.queue); var ani = ele.animation(properties, queue ? { queue: true } : undefined); ani.play(); } return this; // chaining }; }, // animate stop: function stop() { return function stopImpl(clearQueue, jumpToEnd) { var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var cy = this._private.cy || this; if (!cy.styleEnabled()) { return this; } for (var i = 0; i < all.length; i++) { var ele = all[i]; var _p = ele._private; var anis = _p.animation.current; for (var j = 0; j < anis.length; j++) { var ani = anis[j]; var ani_p = ani._private; if (jumpToEnd) { // next iteration of the animation loop, the animation // will go straight to the end and be removed ani_p.duration = 0; } } // clear the queue of future animations if (clearQueue) { _p.animation.queue = []; } if (!jumpToEnd) { _p.animation.current = []; } } // we have to notify (the animation loop doesn't do it for us on `stop`) cy.notify('draw'); return this; }; } // stop }; // define /** * Checks if `value` is classified as an `Array` object. * * @static * @memberOf _ * @since 0.1.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is an array, else `false`. * @example * * _.isArray([1, 2, 3]); * // => true * * _.isArray(document.body.children); * // => false * * _.isArray('abc'); * // => false * * _.isArray(_.noop); * // => false */ var isArray = Array.isArray; var isArray_1 = isArray; /** Used to match property names within property paths. */ var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, reIsPlainProp = /^\w*$/; /** * Checks if `value` is a property name and not a property path. * * @private * @param {*} value The value to check. * @param {Object} [object] The object to query keys on. * @returns {boolean} Returns `true` if `value` is a property name, else `false`. */ function isKey(value, object) { if (isArray_1(value)) { return false; } var type = typeof value; if (type == 'number' || type == 'symbol' || type == 'boolean' || value == null || isSymbol_1(value)) { return true; } return reIsPlainProp.test(value) || !reIsDeepProp.test(value) || (object != null && value in Object(object)); } var _isKey = isKey; /** `Object#toString` result references. */ var asyncTag = '[object AsyncFunction]', funcTag = '[object Function]', genTag = '[object GeneratorFunction]', proxyTag = '[object Proxy]'; /** * Checks if `value` is classified as a `Function` object. * * @static * @memberOf _ * @since 0.1.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a function, else `false`. * @example * * _.isFunction(_); * // => true * * _.isFunction(/abc/); * // => false */ function isFunction(value) { if (!isObject_1(value)) { return false; } // The use of `Object#toString` avoids issues with the `typeof` operator // in Safari 9 which returns 'object' for typed arrays and other constructors. var tag = _baseGetTag(value); return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag; } var isFunction_1 = isFunction; /** Used to detect overreaching core-js shims. */ var coreJsData = _root['__core-js_shared__']; var _coreJsData = coreJsData; /** Used to detect methods masquerading as native. */ var maskSrcKey = (function() { var uid = /[^.]+$/.exec(_coreJsData && _coreJsData.keys && _coreJsData.keys.IE_PROTO || ''); return uid ? ('Symbol(src)_1.' + uid) : ''; }()); /** * Checks if `func` has its source masked. * * @private * @param {Function} func The function to check. * @returns {boolean} Returns `true` if `func` is masked, else `false`. */ function isMasked(func) { return !!maskSrcKey && (maskSrcKey in func); } var _isMasked = isMasked; /** Used for built-in method references. */ var funcProto$1 = Function.prototype; /** Used to resolve the decompiled source of functions. */ var funcToString$1 = funcProto$1.toString; /** * Converts `func` to its source code. * * @private * @param {Function} func The function to convert. * @returns {string} Returns the source code. */ function toSource(func) { if (func != null) { try { return funcToString$1.call(func); } catch (e) {} try { return (func + ''); } catch (e) {} } return ''; } var _toSource = toSource; /** * Used to match `RegExp` * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns). */ var reRegExpChar = /[\\^$.*+?()[\]{}|]/g; /** Used to detect host constructors (Safari). */ var reIsHostCtor = /^\[object .+?Constructor\]$/; /** Used for built-in method references. */ var funcProto = Function.prototype, objectProto$3 = Object.prototype; /** Used to resolve the decompiled source of functions. */ var funcToString = funcProto.toString; /** Used to check objects for own properties. */ var hasOwnProperty$3 = objectProto$3.hasOwnProperty; /** Used to detect if a method is native. */ var reIsNative = RegExp('^' + funcToString.call(hasOwnProperty$3).replace(reRegExpChar, '\\$&') .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$' ); /** * The base implementation of `_.isNative` without bad shim checks. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a native function, * else `false`. */ function baseIsNative(value) { if (!isObject_1(value) || _isMasked(value)) { return false; } var pattern = isFunction_1(value) ? reIsNative : reIsHostCtor; return pattern.test(_toSource(value)); } var _baseIsNative = baseIsNative; /** * Gets the value at `key` of `object`. * * @private * @param {Object} [object] The object to query. * @param {string} key The key of the property to get. * @returns {*} Returns the property value. */ function getValue$1(object, key) { return object == null ? undefined : object[key]; } var _getValue = getValue$1; /** * Gets the native function at `key` of `object`. * * @private * @param {Object} object The object to query. * @param {string} key The key of the method to get. * @returns {*} Returns the function if it's native, else `undefined`. */ function getNative(object, key) { var value = _getValue(object, key); return _baseIsNative(value) ? value : undefined; } var _getNative = getNative; /* Built-in method references that are verified to be native. */ var nativeCreate = _getNative(Object, 'create'); var _nativeCreate = nativeCreate; /** * Removes all key-value entries from the hash. * * @private * @name clear * @memberOf Hash */ function hashClear() { this.__data__ = _nativeCreate ? _nativeCreate(null) : {}; this.size = 0; } var _hashClear = hashClear; /** * Removes `key` and its value from the hash. * * @private * @name delete * @memberOf Hash * @param {Object} hash The hash to modify. * @param {string} key The key of the value to remove. * @returns {boolean} Returns `true` if the entry was removed, else `false`. */ function hashDelete(key) { var result = this.has(key) && delete this.__data__[key]; this.size -= result ? 1 : 0; return result; } var _hashDelete = hashDelete; /** Used to stand-in for `undefined` hash values. */ var HASH_UNDEFINED$1 = '__lodash_hash_undefined__'; /** Used for built-in method references. */ var objectProto$2 = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty$2 = objectProto$2.hasOwnProperty; /** * Gets the hash value for `key`. * * @private * @name get * @memberOf Hash * @param {string} key The key of the value to get. * @returns {*} Returns the entry value. */ function hashGet(key) { var data = this.__data__; if (_nativeCreate) { var result = data[key]; return result === HASH_UNDEFINED$1 ? undefined : result; } return hasOwnProperty$2.call(data, key) ? data[key] : undefined; } var _hashGet = hashGet; /** Used for built-in method references. */ var objectProto$1 = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty$1 = objectProto$1.hasOwnProperty; /** * Checks if a hash value for `key` exists. * * @private * @name has * @memberOf Hash * @param {string} key The key of the entry to check. * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. */ function hashHas(key) { var data = this.__data__; return _nativeCreate ? (data[key] !== undefined) : hasOwnProperty$1.call(data, key); } var _hashHas = hashHas; /** Used to stand-in for `undefined` hash values. */ var HASH_UNDEFINED = '__lodash_hash_undefined__'; /** * Sets the hash `key` to `value`. * * @private * @name set * @memberOf Hash * @param {string} key The key of the value to set. * @param {*} value The value to set. * @returns {Object} Returns the hash instance. */ function hashSet(key, value) { var data = this.__data__; this.size += this.has(key) ? 0 : 1; data[key] = (_nativeCreate && value === undefined) ? HASH_UNDEFINED : value; return this; } var _hashSet = hashSet; /** * Creates a hash object. * * @private * @constructor * @param {Array} [entries] The key-value pairs to cache. */ function Hash(entries) { var index = -1, length = entries == null ? 0 : entries.length; this.clear(); while (++index < length) { var entry = entries[index]; this.set(entry[0], entry[1]); } } // Add methods to `Hash`. Hash.prototype.clear = _hashClear; Hash.prototype['delete'] = _hashDelete; Hash.prototype.get = _hashGet; Hash.prototype.has = _hashHas; Hash.prototype.set = _hashSet; var _Hash = Hash; /** * Removes all key-value entries from the list cache. * * @private * @name clear * @memberOf ListCache */ function listCacheClear() { this.__data__ = []; this.size = 0; } var _listCacheClear = listCacheClear; /** * Performs a * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) * comparison between two values to determine if they are equivalent. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to compare. * @param {*} other The other value to compare. * @returns {boolean} Returns `true` if the values are equivalent, else `false`. * @example * * var object = { 'a': 1 }; * var other = { 'a': 1 }; * * _.eq(object, object); * // => true * * _.eq(object, other); * // => false * * _.eq('a', 'a'); * // => true * * _.eq('a', Object('a')); * // => false * * _.eq(NaN, NaN); * // => true */ function eq(value, other) { return value === other || (value !== value && other !== other); } var eq_1 = eq; /** * Gets the index at which the `key` is found in `array` of key-value pairs. * * @private * @param {Array} array The array to inspect. * @param {*} key The key to search for. * @returns {number} Returns the index of the matched value, else `-1`. */ function assocIndexOf(array, key) { var length = array.length; while (length--) { if (eq_1(array[length][0], key)) { return length; } } return -1; } var _assocIndexOf = assocIndexOf; /** Used for built-in method references. */ var arrayProto = Array.prototype; /** Built-in value references. */ var splice = arrayProto.splice; /** * Removes `key` and its value from the list cache. * * @private * @name delete * @memberOf ListCache * @param {string} key The key of the value to remove. * @returns {boolean} Returns `true` if the entry was removed, else `false`. */ function listCacheDelete(key) { var data = this.__data__, index = _assocIndexOf(data, key); if (index < 0) { return false; } var lastIndex = data.length - 1; if (index == lastIndex) { data.pop(); } else { splice.call(data, index, 1); } --this.size; return true; } var _listCacheDelete = listCacheDelete; /** * Gets the list cache value for `key`. * * @private * @name get * @memberOf ListCache * @param {string} key The key of the value to get. * @returns {*} Returns the entry value. */ function listCacheGet(key) { var data = this.__data__, index = _assocIndexOf(data, key); return index < 0 ? undefined : data[index][1]; } var _listCacheGet = listCacheGet; /** * Checks if a list cache value for `key` exists. * * @private * @name has * @memberOf ListCache * @param {string} key The key of the entry to check. * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. */ function listCacheHas(key) { return _assocIndexOf(this.__data__, key) > -1; } var _listCacheHas = listCacheHas; /** * Sets the list cache `key` to `value`. * * @private * @name set * @memberOf ListCache * @param {string} key The key of the value to set. * @param {*} value The value to set. * @returns {Object} Returns the list cache instance. */ function listCacheSet(key, value) { var data = this.__data__, index = _assocIndexOf(data, key); if (index < 0) { ++this.size; data.push([key, value]); } else { data[index][1] = value; } return this; } var _listCacheSet = listCacheSet; /** * Creates an list cache object. * * @private * @constructor * @param {Array} [entries] The key-value pairs to cache. */ function ListCache(entries) { var index = -1, length = entries == null ? 0 : entries.length; this.clear(); while (++index < length) { var entry = entries[index]; this.set(entry[0], entry[1]); } } // Add methods to `ListCache`. ListCache.prototype.clear = _listCacheClear; ListCache.prototype['delete'] = _listCacheDelete; ListCache.prototype.get = _listCacheGet; ListCache.prototype.has = _listCacheHas; ListCache.prototype.set = _listCacheSet; var _ListCache = ListCache; /* Built-in method references that are verified to be native. */ var Map$1 = _getNative(_root, 'Map'); var _Map = Map$1; /** * Removes all key-value entries from the map. * * @private * @name clear * @memberOf MapCache */ function mapCacheClear() { this.size = 0; this.__data__ = { 'hash': new _Hash, 'map': new (_Map || _ListCache), 'string': new _Hash }; } var _mapCacheClear = mapCacheClear; /** * Checks if `value` is suitable for use as unique object key. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is suitable, else `false`. */ function isKeyable(value) { var type = typeof value; return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean') ? (value !== '__proto__') : (value === null); } var _isKeyable = isKeyable; /** * Gets the data for `map`. * * @private * @param {Object} map The map to query. * @param {string} key The reference key. * @returns {*} Returns the map data. */ function getMapData(map, key) { var data = map.__data__; return _isKeyable(key) ? data[typeof key == 'string' ? 'string' : 'hash'] : data.map; } var _getMapData = getMapData; /** * Removes `key` and its value from the map. * * @private * @name delete * @memberOf MapCache * @param {string} key The key of the value to remove. * @returns {boolean} Returns `true` if the entry was removed, else `false`. */ function mapCacheDelete(key) { var result = _getMapData(this, key)['delete'](key); this.size -= result ? 1 : 0; return result; } var _mapCacheDelete = mapCacheDelete; /** * Gets the map value for `key`. * * @private * @name get * @memberOf MapCache * @param {string} key The key of the value to get. * @returns {*} Returns the entry value. */ function mapCacheGet(key) { return _getMapData(this, key).get(key); } var _mapCacheGet = mapCacheGet; /** * Checks if a map value for `key` exists. * * @private * @name has * @memberOf MapCache * @param {string} key The key of the entry to check. * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. */ function mapCacheHas(key) { return _getMapData(this, key).has(key); } var _mapCacheHas = mapCacheHas; /** * Sets the map `key` to `value`. * * @private * @name set * @memberOf MapCache * @param {string} key The key of the value to set. * @param {*} value The value to set. * @returns {Object} Returns the map cache instance. */ function mapCacheSet(key, value) { var data = _getMapData(this, key), size = data.size; data.set(key, value); this.size += data.size == size ? 0 : 1; return this; } var _mapCacheSet = mapCacheSet; /** * Creates a map cache object to store key-value pairs. * * @private * @constructor * @param {Array} [entries] The key-value pairs to cache. */ function MapCache(entries) { var index = -1, length = entries == null ? 0 : entries.length; this.clear(); while (++index < length) { var entry = entries[index]; this.set(entry[0], entry[1]); } } // Add methods to `MapCache`. MapCache.prototype.clear = _mapCacheClear; MapCache.prototype['delete'] = _mapCacheDelete; MapCache.prototype.get = _mapCacheGet; MapCache.prototype.has = _mapCacheHas; MapCache.prototype.set = _mapCacheSet; var _MapCache = MapCache; /** Error message constants. */ var FUNC_ERROR_TEXT = 'Expected a function'; /** * Creates a function that memoizes the result of `func`. If `resolver` is * provided, it determines the cache key for storing the result based on the * arguments provided to the memoized function. By default, the first argument * provided to the memoized function is used as the map cache key. The `func` * is invoked with the `this` binding of the memoized function. * * **Note:** The cache is exposed as the `cache` property on the memoized * function. Its creation may be customized by replacing the `_.memoize.Cache` * constructor with one whose instances implement the * [`Map`](http://ecma-international.org/ecma-262/7.0/#sec-properties-of-the-map-prototype-object) * method interface of `clear`, `delete`, `get`, `has`, and `set`. * * @static * @memberOf _ * @since 0.1.0 * @category Function * @param {Function} func The function to have its output memoized. * @param {Function} [resolver] The function to resolve the cache key. * @returns {Function} Returns the new memoized function. * @example * * var object = { 'a': 1, 'b': 2 }; * var other = { 'c': 3, 'd': 4 }; * * var values = _.memoize(_.values); * values(object); * // => [1, 2] * * values(other); * // => [3, 4] * * object.a = 2; * values(object); * // => [1, 2] * * // Modify the result cache. * values.cache.set(object, ['a', 'b']); * values(object); * // => ['a', 'b'] * * // Replace `_.memoize.Cache`. * _.memoize.Cache = WeakMap; */ function memoize(func, resolver) { if (typeof func != 'function' || (resolver != null && typeof resolver != 'function')) { throw new TypeError(FUNC_ERROR_TEXT); } var memoized = function() { var args = arguments, key = resolver ? resolver.apply(this, args) : args[0], cache = memoized.cache; if (cache.has(key)) { return cache.get(key); } var result = func.apply(this, args); memoized.cache = cache.set(key, result) || cache; return result; }; memoized.cache = new (memoize.Cache || _MapCache); return memoized; } // Expose `MapCache`. memoize.Cache = _MapCache; var memoize_1 = memoize; /** Used as the maximum memoize cache size. */ var MAX_MEMOIZE_SIZE = 500; /** * A specialized version of `_.memoize` which clears the memoized function's * cache when it exceeds `MAX_MEMOIZE_SIZE`. * * @private * @param {Function} func The function to have its output memoized. * @returns {Function} Returns the new memoized function. */ function memoizeCapped(func) { var result = memoize_1(func, function(key) { if (cache.size === MAX_MEMOIZE_SIZE) { cache.clear(); } return key; }); var cache = result.cache; return result; } var _memoizeCapped = memoizeCapped; /** Used to match property names within property paths. */ var rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g; /** Used to match backslashes in property paths. */ var reEscapeChar = /\\(\\)?/g; /** * Converts `string` to a property path array. * * @private * @param {string} string The string to convert. * @returns {Array} Returns the property path array. */ var stringToPath = _memoizeCapped(function(string) { var result = []; if (string.charCodeAt(0) === 46 /* . */) { result.push(''); } string.replace(rePropName, function(match, number, quote, subString) { result.push(quote ? subString.replace(reEscapeChar, '$1') : (number || match)); }); return result; }); var _stringToPath = stringToPath; /** * A specialized version of `_.map` for arrays without support for iteratee * shorthands. * * @private * @param {Array} [array] The array to iterate over. * @param {Function} iteratee The function invoked per iteration. * @returns {Array} Returns the new mapped array. */ function arrayMap(array, iteratee) { var index = -1, length = array == null ? 0 : array.length, result = Array(length); while (++index < length) { result[index] = iteratee(array[index], index, array); } return result; } var _arrayMap = arrayMap; /** Used as references for various `Number` constants. */ var INFINITY$1 = 1 / 0; /** Used to convert symbols to primitives and strings. */ var symbolProto = _Symbol ? _Symbol.prototype : undefined, symbolToString = symbolProto ? symbolProto.toString : undefined; /** * The base implementation of `_.toString` which doesn't convert nullish * values to empty strings. * * @private * @param {*} value The value to process. * @returns {string} Returns the string. */ function baseToString(value) { // Exit early for strings to avoid a performance hit in some environments. if (typeof value == 'string') { return value; } if (isArray_1(value)) { // Recursively convert values (susceptible to call stack limits). return _arrayMap(value, baseToString) + ''; } if (isSymbol_1(value)) { return symbolToString ? symbolToString.call(value) : ''; } var result = (value + ''); return (result == '0' && (1 / value) == -INFINITY$1) ? '-0' : result; } var _baseToString = baseToString; /** * Converts `value` to a string. An empty string is returned for `null` * and `undefined` values. The sign of `-0` is preserved. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to convert. * @returns {string} Returns the converted string. * @example * * _.toString(null); * // => '' * * _.toString(-0); * // => '-0' * * _.toString([1, 2, 3]); * // => '1,2,3' */ function toString$1(value) { return value == null ? '' : _baseToString(value); } var toString_1 = toString$1; /** * Casts `value` to a path array if it's not one. * * @private * @param {*} value The value to inspect. * @param {Object} [object] The object to query keys on. * @returns {Array} Returns the cast property path array. */ function castPath(value, object) { if (isArray_1(value)) { return value; } return _isKey(value, object) ? [value] : _stringToPath(toString_1(value)); } var _castPath = castPath; /** Used as references for various `Number` constants. */ var INFINITY = 1 / 0; /** * Converts `value` to a string key if it's not a string or symbol. * * @private * @param {*} value The value to inspect. * @returns {string|symbol} Returns the key. */ function toKey(value) { if (typeof value == 'string' || isSymbol_1(value)) { return value; } var result = (value + ''); return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result; } var _toKey = toKey; /** * The base implementation of `_.get` without support for default values. * * @private * @param {Object} object The object to query. * @param {Array|string} path The path of the property to get. * @returns {*} Returns the resolved value. */ function baseGet(object, path) { path = _castPath(path, object); var index = 0, length = path.length; while (object != null && index < length) { object = object[_toKey(path[index++])]; } return (index && index == length) ? object : undefined; } var _baseGet = baseGet; /** * Gets the value at `path` of `object`. If the resolved value is * `undefined`, the `defaultValue` is returned in its place. * * @static * @memberOf _ * @since 3.7.0 * @category Object * @param {Object} object The object to query. * @param {Array|string} path The path of the property to get. * @param {*} [defaultValue] The value returned for `undefined` resolved values. * @returns {*} Returns the resolved value. * @example * * var object = { 'a': [{ 'b': { 'c': 3 } }] }; * * _.get(object, 'a[0].b.c'); * // => 3 * * _.get(object, ['a', '0', 'b', 'c']); * // => 3 * * _.get(object, 'a.b.c', 'default'); * // => 'default' */ function get(object, path, defaultValue) { var result = object == null ? undefined : _baseGet(object, path); return result === undefined ? defaultValue : result; } var get_1 = get; var defineProperty = (function() { try { var func = _getNative(Object, 'defineProperty'); func({}, '', {}); return func; } catch (e) {} }()); var _defineProperty = defineProperty; /** * The base implementation of `assignValue` and `assignMergeValue` without * value checks. * * @private * @param {Object} object The object to modify. * @param {string} key The key of the property to assign. * @param {*} value The value to assign. */ function baseAssignValue(object, key, value) { if (key == '__proto__' && _defineProperty) { _defineProperty(object, key, { 'configurable': true, 'enumerable': true, 'value': value, 'writable': true }); } else { object[key] = value; } } var _baseAssignValue = baseAssignValue; /** Used for built-in method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** * Assigns `value` to `key` of `object` if the existing value is not equivalent * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) * for equality comparisons. * * @private * @param {Object} object The object to modify. * @param {string} key The key of the property to assign. * @param {*} value The value to assign. */ function assignValue(object, key, value) { var objValue = object[key]; if (!(hasOwnProperty.call(object, key) && eq_1(objValue, value)) || (value === undefined && !(key in object))) { _baseAssignValue(object, key, value); } } var _assignValue = assignValue; /** Used as references for various `Number` constants. */ var MAX_SAFE_INTEGER = 9007199254740991; /** Used to detect unsigned integer values. */ var reIsUint = /^(?:0|[1-9]\d*)$/; /** * Checks if `value` is a valid array-like index. * * @private * @param {*} value The value to check. * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index. * @returns {boolean} Returns `true` if `value` is a valid index, else `false`. */ function isIndex(value, length) { var type = typeof value; length = length == null ? MAX_SAFE_INTEGER : length; return !!length && (type == 'number' || (type != 'symbol' && reIsUint.test(value))) && (value > -1 && value % 1 == 0 && value < length); } var _isIndex = isIndex; /** * The base implementation of `_.set`. * * @private * @param {Object} object The object to modify. * @param {Array|string} path The path of the property to set. * @param {*} value The value to set. * @param {Function} [customizer] The function to customize path creation. * @returns {Object} Returns `object`. */ function baseSet(object, path, value, customizer) { if (!isObject_1(object)) { return object; } path = _castPath(path, object); var index = -1, length = path.length, lastIndex = length - 1, nested = object; while (nested != null && ++index < length) { var key = _toKey(path[index]), newValue = value; if (key === '__proto__' || key === 'constructor' || key === 'prototype') { return object; } if (index != lastIndex) { var objValue = nested[key]; newValue = customizer ? customizer(objValue, key, nested) : undefined; if (newValue === undefined) { newValue = isObject_1(objValue) ? objValue : (_isIndex(path[index + 1]) ? [] : {}); } } _assignValue(nested, key, newValue); nested = nested[key]; } return object; } var _baseSet = baseSet; /** * Sets the value at `path` of `object`. If a portion of `path` doesn't exist, * it's created. Arrays are created for missing index properties while objects * are created for all other missing properties. Use `_.setWith` to customize * `path` creation. * * **Note:** This method mutates `object`. * * @static * @memberOf _ * @since 3.7.0 * @category Object * @param {Object} object The object to modify. * @param {Array|string} path The path of the property to set. * @param {*} value The value to set. * @returns {Object} Returns `object`. * @example * * var object = { 'a': [{ 'b': { 'c': 3 } }] }; * * _.set(object, 'a[0].b.c', 4); * console.log(object.a[0].b.c); * // => 4 * * _.set(object, ['x', '0', 'y', 'z'], 5); * console.log(object.x[0].y.z); * // => 5 */ function set(object, path, value) { return object == null ? object : _baseSet(object, path, value); } var set_1 = set; /** * Copies the values of `source` to `array`. * * @private * @param {Array} source The array to copy values from. * @param {Array} [array=[]] The array to copy values to. * @returns {Array} Returns `array`. */ function copyArray(source, array) { var index = -1, length = source.length; array || (array = Array(length)); while (++index < length) { array[index] = source[index]; } return array; } var _copyArray = copyArray; /** * Converts `value` to a property path array. * * @static * @memberOf _ * @since 4.0.0 * @category Util * @param {*} value The value to convert. * @returns {Array} Returns the new property path array. * @example * * _.toPath('a.b.c'); * // => ['a', 'b', 'c'] * * _.toPath('a[0].b.c'); * // => ['a', '0', 'b', 'c'] */ function toPath(value) { if (isArray_1(value)) { return _arrayMap(value, _toKey); } return isSymbol_1(value) ? [value] : _copyArray(_stringToPath(toString_1(value))); } var toPath_1 = toPath; var define$2 = { // access data field data: function data(params) { var defaults = { field: 'data', bindingEvent: 'data', allowBinding: false, allowSetting: false, allowGetting: false, settingEvent: 'data', settingTriggersEvent: false, triggerFnName: 'trigger', immutableKeys: {}, // key => true if immutable updateStyle: false, beforeGet: function beforeGet(self) {}, beforeSet: function beforeSet(self, obj) {}, onSet: function onSet(self) {}, canSet: function canSet(self) { return true; } }; params = extend({}, defaults, params); return function dataImpl(name, value) { var p = params; var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var single = selfIsArrayLike ? self[0] : self; // .data('foo', ...) if (string(name)) { // set or get property var isPathLike = name.indexOf('.') !== -1; // there might be a normal field with a dot var path = isPathLike && toPath_1(name); // .data('foo') if (p.allowGetting && value === undefined) { // get var ret; if (single) { p.beforeGet(single); // check if it's path and a field with the same name doesn't exist if (path && single._private[p.field][name] === undefined) { ret = get_1(single._private[p.field], path); } else { ret = single._private[p.field][name]; } } return ret; // .data('foo', 'bar') } else if (p.allowSetting && value !== undefined) { // set var valid = !p.immutableKeys[name]; if (valid) { var change = _defineProperty$1({}, name, value); p.beforeSet(self, change); for (var i = 0, l = all.length; i < l; i++) { var ele = all[i]; if (p.canSet(ele)) { if (path && single._private[p.field][name] === undefined) { set_1(ele._private[p.field], path, value); } else { ele._private[p.field][name] = value; } } } // update mappers if asked if (p.updateStyle) { self.updateStyle(); } // call onSet callback p.onSet(self); if (p.settingTriggersEvent) { self[p.triggerFnName](p.settingEvent); } } } // .data({ 'foo': 'bar' }) } else if (p.allowSetting && plainObject(name)) { // extend var obj = name; var k, v; var keys = Object.keys(obj); p.beforeSet(self, obj); for (var _i = 0; _i < keys.length; _i++) { k = keys[_i]; v = obj[k]; var _valid = !p.immutableKeys[k]; if (_valid) { for (var j = 0; j < all.length; j++) { var _ele = all[j]; if (p.canSet(_ele)) { _ele._private[p.field][k] = v; } } } } // update mappers if asked if (p.updateStyle) { self.updateStyle(); } // call onSet callback p.onSet(self); if (p.settingTriggersEvent) { self[p.triggerFnName](p.settingEvent); } // .data(function(){ ... }) } else if (p.allowBinding && fn$6(name)) { // bind to event var fn = name; self.on(p.bindingEvent, fn); // .data() } else if (p.allowGetting && name === undefined) { // get whole object var _ret; if (single) { p.beforeGet(single); _ret = single._private[p.field]; } return _ret; } return self; // maintain chainability }; // function }, // data // remove data field removeData: function removeData(params) { var defaults = { field: 'data', event: 'data', triggerFnName: 'trigger', triggerEvent: false, immutableKeys: {} // key => true if immutable }; params = extend({}, defaults, params); return function removeDataImpl(names) { var p = params; var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like // .removeData('foo bar') if (string(names)) { // then get the list of keys, and delete them var keys = names.split(/\s+/); var l = keys.length; for (var i = 0; i < l; i++) { // delete each non-empty key var key = keys[i]; if (emptyString(key)) { continue; } var valid = !p.immutableKeys[key]; // not valid if immutable if (valid) { for (var i_a = 0, l_a = all.length; i_a < l_a; i_a++) { all[i_a]._private[p.field][key] = undefined; } } } if (p.triggerEvent) { self[p.triggerFnName](p.event); } // .removeData() } else if (names === undefined) { // then delete all keys for (var _i_a = 0, _l_a = all.length; _i_a < _l_a; _i_a++) { var _privateFields = all[_i_a]._private[p.field]; var _keys = Object.keys(_privateFields); for (var _i2 = 0; _i2 < _keys.length; _i2++) { var _key = _keys[_i2]; var validKeyToDelete = !p.immutableKeys[_key]; if (validKeyToDelete) { _privateFields[_key] = undefined; } } } if (p.triggerEvent) { self[p.triggerFnName](p.event); } } return self; // maintain chaining }; // function } // removeData }; // define var define$1 = { eventAliasesOn: function eventAliasesOn(proto) { var p = proto; p.addListener = p.listen = p.bind = p.on; p.unlisten = p.unbind = p.off = p.removeListener; p.trigger = p.emit; // this is just a wrapper alias of .on() p.pon = p.promiseOn = function (events, selector) { var self = this; var args = Array.prototype.slice.call(arguments, 0); return new Promise$1(function (resolve, reject) { var callback = function callback(e) { self.off.apply(self, offArgs); resolve(e); }; var onArgs = args.concat([callback]); var offArgs = onArgs.concat([]); self.on.apply(self, onArgs); }); }; } }; // define // use this module to cherry pick functions into your prototype var define = {}; [define$3, define$2, define$1].forEach(function (m) { extend(define, m); }); var elesfn$i = { animate: define.animate(), animation: define.animation(), animated: define.animated(), clearQueue: define.clearQueue(), delay: define.delay(), delayAnimation: define.delayAnimation(), stop: define.stop() }; var elesfn$h = { classes: function classes(_classes) { var self = this; if (_classes === undefined) { var ret = []; self[0]._private.classes.forEach(function (cls) { return ret.push(cls); }); return ret; } else if (!array(_classes)) { // extract classes from string _classes = (_classes || '').match(/\S+/g) || []; } var changed = []; var classesSet = new Set$1(_classes); // check and update each ele for (var j = 0; j < self.length; j++) { var ele = self[j]; var _p = ele._private; var eleClasses = _p.classes; var changedEle = false; // check if ele has all of the passed classes for (var i = 0; i < _classes.length; i++) { var cls = _classes[i]; var eleHasClass = eleClasses.has(cls); if (!eleHasClass) { changedEle = true; break; } } // check if ele has classes outside of those passed if (!changedEle) { changedEle = eleClasses.size !== _classes.length; } if (changedEle) { _p.classes = classesSet; changed.push(ele); } } // trigger update style on those eles that had class changes if (changed.length > 0) { this.spawn(changed).updateStyle().emit('class'); } return self; }, addClass: function addClass(classes) { return this.toggleClass(classes, true); }, hasClass: function hasClass(className) { var ele = this[0]; return ele != null && ele._private.classes.has(className); }, toggleClass: function toggleClass(classes, toggle) { if (!array(classes)) { // extract classes from string classes = classes.match(/\S+/g) || []; } var self = this; var toggleUndefd = toggle === undefined; var changed = []; // eles who had classes changed for (var i = 0, il = self.length; i < il; i++) { var ele = self[i]; var eleClasses = ele._private.classes; var changedEle = false; for (var j = 0; j < classes.length; j++) { var cls = classes[j]; var hasClass = eleClasses.has(cls); var changedNow = false; if (toggle || toggleUndefd && !hasClass) { eleClasses.add(cls); changedNow = true; } else if (!toggle || toggleUndefd && hasClass) { eleClasses["delete"](cls); changedNow = true; } if (!changedEle && changedNow) { changed.push(ele); changedEle = true; } } // for j classes } // for i eles // trigger update style on those eles that had class changes if (changed.length > 0) { this.spawn(changed).updateStyle().emit('class'); } return self; }, removeClass: function removeClass(classes) { return this.toggleClass(classes, false); }, flashClass: function flashClass(classes, duration) { var self = this; if (duration == null) { duration = 250; } else if (duration === 0) { return self; // nothing to do really } self.addClass(classes); setTimeout(function () { self.removeClass(classes); }, duration); return self; } }; elesfn$h.className = elesfn$h.classNames = elesfn$h.classes; // tokens in the query language var tokens = { metaChar: '[\\!\\"\\#\\$\\%\\&\\\'\\(\\)\\*\\+\\,\\.\\/\\:\\;\\<\\=\\>\\?\\@\\[\\]\\^\\`\\{\\|\\}\\~]', // chars we need to escape in let names, etc comparatorOp: '=|\\!=|>|>=|<|<=|\\$=|\\^=|\\*=', // binary comparison op (used in data selectors) boolOp: '\\?|\\!|\\^', // boolean (unary) operators (used in data selectors) string: '"(?:\\\\"|[^"])*"' + '|' + "'(?:\\\\'|[^'])*'", // string literals (used in data selectors) -- doublequotes | singlequotes number: number, // number literal (used in data selectors) --- e.g. 0.1234, 1234, 12e123 meta: 'degree|indegree|outdegree', // allowed metadata fields (i.e. allowed functions to use from Collection) separator: '\\s*,\\s*', // queries are separated by commas, e.g. edge[foo = 'bar'], node.someClass descendant: '\\s+', child: '\\s+>\\s+', subject: '\\$', group: 'node|edge|\\*', directedEdge: '\\s+->\\s+', undirectedEdge: '\\s+<->\\s+' }; tokens.variable = '(?:[\\w-.]|(?:\\\\' + tokens.metaChar + '))+'; // a variable name can have letters, numbers, dashes, and periods tokens.className = '(?:[\\w-]|(?:\\\\' + tokens.metaChar + '))+'; // a class name has the same rules as a variable except it can't have a '.' in the name tokens.value = tokens.string + '|' + tokens.number; // a value literal, either a string or number tokens.id = tokens.variable; // an element id (follows variable conventions) (function () { var ops, op, i; // add @ variants to comparatorOp ops = tokens.comparatorOp.split('|'); for (i = 0; i < ops.length; i++) { op = ops[i]; tokens.comparatorOp += '|@' + op; } // add ! variants to comparatorOp ops = tokens.comparatorOp.split('|'); for (i = 0; i < ops.length; i++) { op = ops[i]; if (op.indexOf('!') >= 0) { continue; } // skip ops that explicitly contain ! if (op === '=') { continue; } // skip = b/c != is explicitly defined tokens.comparatorOp += '|\\!' + op; } })(); /** * Make a new query object * * @prop type {Type} The type enum (int) of the query * @prop checks List of checks to make against an ele to test for a match */ var newQuery = function newQuery() { return { checks: [] }; }; /** * A check type enum-like object. Uses integer values for fast match() lookup. * The ordering does not matter as long as the ints are unique. */ var Type = { /** E.g. node */ GROUP: 0, /** A collection of elements */ COLLECTION: 1, /** A filter(ele) function */ FILTER: 2, /** E.g. [foo > 1] */ DATA_COMPARE: 3, /** E.g. [foo] */ DATA_EXIST: 4, /** E.g. [?foo] */ DATA_BOOL: 5, /** E.g. [[degree > 2]] */ META_COMPARE: 6, /** E.g. :selected */ STATE: 7, /** E.g. #foo */ ID: 8, /** E.g. .foo */ CLASS: 9, /** E.g. #foo <-> #bar */ UNDIRECTED_EDGE: 10, /** E.g. #foo -> #bar */ DIRECTED_EDGE: 11, /** E.g. $#foo -> #bar */ NODE_SOURCE: 12, /** E.g. #foo -> $#bar */ NODE_TARGET: 13, /** E.g. $#foo <-> #bar */ NODE_NEIGHBOR: 14, /** E.g. #foo > #bar */ CHILD: 15, /** E.g. #foo #bar */ DESCENDANT: 16, /** E.g. $#foo > #bar */ PARENT: 17, /** E.g. $#foo #bar */ ANCESTOR: 18, /** E.g. #foo > $bar > #baz */ COMPOUND_SPLIT: 19, /** Always matches, useful placeholder for subject in `COMPOUND_SPLIT` */ TRUE: 20 }; var stateSelectors = [{ selector: ':selected', matches: function matches(ele) { return ele.selected(); } }, { selector: ':unselected', matches: function matches(ele) { return !ele.selected(); } }, { selector: ':selectable', matches: function matches(ele) { return ele.selectable(); } }, { selector: ':unselectable', matches: function matches(ele) { return !ele.selectable(); } }, { selector: ':locked', matches: function matches(ele) { return ele.locked(); } }, { selector: ':unlocked', matches: function matches(ele) { return !ele.locked(); } }, { selector: ':visible', matches: function matches(ele) { return ele.visible(); } }, { selector: ':hidden', matches: function matches(ele) { return !ele.visible(); } }, { selector: ':transparent', matches: function matches(ele) { return ele.transparent(); } }, { selector: ':grabbed', matches: function matches(ele) { return ele.grabbed(); } }, { selector: ':free', matches: function matches(ele) { return !ele.grabbed(); } }, { selector: ':removed', matches: function matches(ele) { return ele.removed(); } }, { selector: ':inside', matches: function matches(ele) { return !ele.removed(); } }, { selector: ':grabbable', matches: function matches(ele) { return ele.grabbable(); } }, { selector: ':ungrabbable', matches: function matches(ele) { return !ele.grabbable(); } }, { selector: ':animated', matches: function matches(ele) { return ele.animated(); } }, { selector: ':unanimated', matches: function matches(ele) { return !ele.animated(); } }, { selector: ':parent', matches: function matches(ele) { return ele.isParent(); } }, { selector: ':childless', matches: function matches(ele) { return ele.isChildless(); } }, { selector: ':child', matches: function matches(ele) { return ele.isChild(); } }, { selector: ':orphan', matches: function matches(ele) { return ele.isOrphan(); } }, { selector: ':nonorphan', matches: function matches(ele) { return ele.isChild(); } }, { selector: ':compound', matches: function matches(ele) { if (ele.isNode()) { return ele.isParent(); } else { return ele.source().isParent() || ele.target().isParent(); } } }, { selector: ':loop', matches: function matches(ele) { return ele.isLoop(); } }, { selector: ':simple', matches: function matches(ele) { return ele.isSimple(); } }, { selector: ':active', matches: function matches(ele) { return ele.active(); } }, { selector: ':inactive', matches: function matches(ele) { return !ele.active(); } }, { selector: ':backgrounding', matches: function matches(ele) { return ele.backgrounding(); } }, { selector: ':nonbackgrounding', matches: function matches(ele) { return !ele.backgrounding(); } }].sort(function (a, b) { // n.b. selectors that are starting substrings of others must have the longer ones first return descending(a.selector, b.selector); }); var lookup = function () { var selToFn = {}; var s; for (var i = 0; i < stateSelectors.length; i++) { s = stateSelectors[i]; selToFn[s.selector] = s.matches; } return selToFn; }(); var stateSelectorMatches = function stateSelectorMatches(sel, ele) { return lookup[sel](ele); }; var stateSelectorRegex = '(' + stateSelectors.map(function (s) { return s.selector; }).join('|') + ')'; // when a token like a variable has escaped meta characters, we need to clean the backslashes out // so that values get compared properly in Selector.filter() var cleanMetaChars = function cleanMetaChars(str) { return str.replace(new RegExp('\\\\(' + tokens.metaChar + ')', 'g'), function (match, $1) { return $1; }); }; var replaceLastQuery = function replaceLastQuery(selector, examiningQuery, replacementQuery) { selector[selector.length - 1] = replacementQuery; }; // NOTE: add new expression syntax here to have it recognised by the parser; // - a query contains all adjacent (i.e. no separator in between) expressions; // - the current query is stored in selector[i] // - you need to check the query objects in match() for it actually filter properly, but that's pretty straight forward var exprs = [{ name: 'group', // just used for identifying when debugging query: true, regex: '(' + tokens.group + ')', populate: function populate(selector, query, _ref) { var _ref2 = _slicedToArray(_ref, 1), group = _ref2[0]; query.checks.push({ type: Type.GROUP, value: group === '*' ? group : group + 's' }); } }, { name: 'state', query: true, regex: stateSelectorRegex, populate: function populate(selector, query, _ref3) { var _ref4 = _slicedToArray(_ref3, 1), state = _ref4[0]; query.checks.push({ type: Type.STATE, value: state }); } }, { name: 'id', query: true, regex: '\\#(' + tokens.id + ')', populate: function populate(selector, query, _ref5) { var _ref6 = _slicedToArray(_ref5, 1), id = _ref6[0]; query.checks.push({ type: Type.ID, value: cleanMetaChars(id) }); } }, { name: 'className', query: true, regex: '\\.(' + tokens.className + ')', populate: function populate(selector, query, _ref7) { var _ref8 = _slicedToArray(_ref7, 1), className = _ref8[0]; query.checks.push({ type: Type.CLASS, value: cleanMetaChars(className) }); } }, { name: 'dataExists', query: true, regex: '\\[\\s*(' + tokens.variable + ')\\s*\\]', populate: function populate(selector, query, _ref9) { var _ref10 = _slicedToArray(_ref9, 1), variable = _ref10[0]; query.checks.push({ type: Type.DATA_EXIST, field: cleanMetaChars(variable) }); } }, { name: 'dataCompare', query: true, regex: '\\[\\s*(' + tokens.variable + ')\\s*(' + tokens.comparatorOp + ')\\s*(' + tokens.value + ')\\s*\\]', populate: function populate(selector, query, _ref11) { var _ref12 = _slicedToArray(_ref11, 3), variable = _ref12[0], comparatorOp = _ref12[1], value = _ref12[2]; var valueIsString = new RegExp('^' + tokens.string + '$').exec(value) != null; if (valueIsString) { value = value.substring(1, value.length - 1); } else { value = parseFloat(value); } query.checks.push({ type: Type.DATA_COMPARE, field: cleanMetaChars(variable), operator: comparatorOp, value: value }); } }, { name: 'dataBool', query: true, regex: '\\[\\s*(' + tokens.boolOp + ')\\s*(' + tokens.variable + ')\\s*\\]', populate: function populate(selector, query, _ref13) { var _ref14 = _slicedToArray(_ref13, 2), boolOp = _ref14[0], variable = _ref14[1]; query.checks.push({ type: Type.DATA_BOOL, field: cleanMetaChars(variable), operator: boolOp }); } }, { name: 'metaCompare', query: true, regex: '\\[\\[\\s*(' + tokens.meta + ')\\s*(' + tokens.comparatorOp + ')\\s*(' + tokens.number + ')\\s*\\]\\]', populate: function populate(selector, query, _ref15) { var _ref16 = _slicedToArray(_ref15, 3), meta = _ref16[0], comparatorOp = _ref16[1], number = _ref16[2]; query.checks.push({ type: Type.META_COMPARE, field: cleanMetaChars(meta), operator: comparatorOp, value: parseFloat(number) }); } }, { name: 'nextQuery', separator: true, regex: tokens.separator, populate: function populate(selector, query) { var currentSubject = selector.currentSubject; var edgeCount = selector.edgeCount; var compoundCount = selector.compoundCount; var lastQ = selector[selector.length - 1]; if (currentSubject != null) { lastQ.subject = currentSubject; selector.currentSubject = null; } lastQ.edgeCount = edgeCount; lastQ.compoundCount = compoundCount; selector.edgeCount = 0; selector.compoundCount = 0; // go on to next query var nextQuery = selector[selector.length++] = newQuery(); return nextQuery; // this is the new query to be filled by the following exprs } }, { name: 'directedEdge', separator: true, regex: tokens.directedEdge, populate: function populate(selector, query) { if (selector.currentSubject == null) { // undirected edge var edgeQuery = newQuery(); var source = query; var target = newQuery(); edgeQuery.checks.push({ type: Type.DIRECTED_EDGE, source: source, target: target }); // the query in the selector should be the edge rather than the source replaceLastQuery(selector, query, edgeQuery); selector.edgeCount++; // we're now populating the target query with expressions that follow return target; } else { // source/target var srcTgtQ = newQuery(); var _source = query; var _target = newQuery(); srcTgtQ.checks.push({ type: Type.NODE_SOURCE, source: _source, target: _target }); // the query in the selector should be the neighbourhood rather than the node replaceLastQuery(selector, query, srcTgtQ); selector.edgeCount++; return _target; // now populating the target with the following expressions } } }, { name: 'undirectedEdge', separator: true, regex: tokens.undirectedEdge, populate: function populate(selector, query) { if (selector.currentSubject == null) { // undirected edge var edgeQuery = newQuery(); var source = query; var target = newQuery(); edgeQuery.checks.push({ type: Type.UNDIRECTED_EDGE, nodes: [source, target] }); // the query in the selector should be the edge rather than the source replaceLastQuery(selector, query, edgeQuery); selector.edgeCount++; // we're now populating the target query with expressions that follow return target; } else { // neighbourhood var nhoodQ = newQuery(); var node = query; var neighbor = newQuery(); nhoodQ.checks.push({ type: Type.NODE_NEIGHBOR, node: node, neighbor: neighbor }); // the query in the selector should be the neighbourhood rather than the node replaceLastQuery(selector, query, nhoodQ); return neighbor; // now populating the neighbor with following expressions } } }, { name: 'child', separator: true, regex: tokens.child, populate: function populate(selector, query) { if (selector.currentSubject == null) { // default: child query var parentChildQuery = newQuery(); var child = newQuery(); var parent = selector[selector.length - 1]; parentChildQuery.checks.push({ type: Type.CHILD, parent: parent, child: child }); // the query in the selector should be the '>' itself replaceLastQuery(selector, query, parentChildQuery); selector.compoundCount++; // we're now populating the child query with expressions that follow return child; } else if (selector.currentSubject === query) { // compound split query var compound = newQuery(); var left = selector[selector.length - 1]; var right = newQuery(); var subject = newQuery(); var _child = newQuery(); var _parent = newQuery(); // set up the root compound q compound.checks.push({ type: Type.COMPOUND_SPLIT, left: left, right: right, subject: subject }); // populate the subject and replace the q at the old spot (within left) with TRUE subject.checks = query.checks; // take the checks from the left query.checks = [{ type: Type.TRUE }]; // checks under left refs the subject implicitly // set up the right q _parent.checks.push({ type: Type.TRUE }); // parent implicitly refs the subject right.checks.push({ type: Type.PARENT, // type is swapped on right side queries parent: _parent, child: _child // empty for now }); replaceLastQuery(selector, left, compound); // update the ref since we moved things around for `query` selector.currentSubject = subject; selector.compoundCount++; return _child; // now populating the right side's child } else { // parent query // info for parent query var _parent2 = newQuery(); var _child2 = newQuery(); var pcQChecks = [{ type: Type.PARENT, parent: _parent2, child: _child2 }]; // the parent-child query takes the place of the query previously being populated _parent2.checks = query.checks; // the previous query contains the checks for the parent query.checks = pcQChecks; // pc query takes over selector.compoundCount++; return _child2; // we're now populating the child } } }, { name: 'descendant', separator: true, regex: tokens.descendant, populate: function populate(selector, query) { if (selector.currentSubject == null) { // default: descendant query var ancChQuery = newQuery(); var descendant = newQuery(); var ancestor = selector[selector.length - 1]; ancChQuery.checks.push({ type: Type.DESCENDANT, ancestor: ancestor, descendant: descendant }); // the query in the selector should be the '>' itself replaceLastQuery(selector, query, ancChQuery); selector.compoundCount++; // we're now populating the descendant query with expressions that follow return descendant; } else if (selector.currentSubject === query) { // compound split query var compound = newQuery(); var left = selector[selector.length - 1]; var right = newQuery(); var subject = newQuery(); var _descendant = newQuery(); var _ancestor = newQuery(); // set up the root compound q compound.checks.push({ type: Type.COMPOUND_SPLIT, left: left, right: right, subject: subject }); // populate the subject and replace the q at the old spot (within left) with TRUE subject.checks = query.checks; // take the checks from the left query.checks = [{ type: Type.TRUE }]; // checks under left refs the subject implicitly // set up the right q _ancestor.checks.push({ type: Type.TRUE }); // ancestor implicitly refs the subject right.checks.push({ type: Type.ANCESTOR, // type is swapped on right side queries ancestor: _ancestor, descendant: _descendant // empty for now }); replaceLastQuery(selector, left, compound); // update the ref since we moved things around for `query` selector.currentSubject = subject; selector.compoundCount++; return _descendant; // now populating the right side's descendant } else { // ancestor query // info for parent query var _ancestor2 = newQuery(); var _descendant2 = newQuery(); var adQChecks = [{ type: Type.ANCESTOR, ancestor: _ancestor2, descendant: _descendant2 }]; // the parent-child query takes the place of the query previously being populated _ancestor2.checks = query.checks; // the previous query contains the checks for the parent query.checks = adQChecks; // pc query takes over selector.compoundCount++; return _descendant2; // we're now populating the child } } }, { name: 'subject', modifier: true, regex: tokens.subject, populate: function populate(selector, query) { if (selector.currentSubject != null && selector.currentSubject !== query) { warn('Redefinition of subject in selector `' + selector.toString() + '`'); return false; } selector.currentSubject = query; var topQ = selector[selector.length - 1]; var topChk = topQ.checks[0]; var topType = topChk == null ? null : topChk.type; if (topType === Type.DIRECTED_EDGE) { // directed edge with subject on the target // change to target node check topChk.type = Type.NODE_TARGET; } else if (topType === Type.UNDIRECTED_EDGE) { // undirected edge with subject on the second node // change to neighbor check topChk.type = Type.NODE_NEIGHBOR; topChk.node = topChk.nodes[1]; // second node is subject topChk.neighbor = topChk.nodes[0]; // clean up unused fields for new type topChk.nodes = null; } } }]; exprs.forEach(function (e) { return e.regexObj = new RegExp('^' + e.regex); }); /** * Of all the expressions, find the first match in the remaining text. * @param {string} remaining The remaining text to parse * @returns The matched expression and the newly remaining text `{ expr, match, name, remaining }` */ var consumeExpr = function consumeExpr(remaining) { var expr; var match; var name; for (var j = 0; j < exprs.length; j++) { var e = exprs[j]; var n = e.name; var m = remaining.match(e.regexObj); if (m != null) { match = m; expr = e; name = n; var consumed = m[0]; remaining = remaining.substring(consumed.length); break; // we've consumed one expr, so we can return now } } return { expr: expr, match: match, name: name, remaining: remaining }; }; /** * Consume all the leading whitespace * @param {string} remaining The text to consume * @returns The text with the leading whitespace removed */ var consumeWhitespace = function consumeWhitespace(remaining) { var match = remaining.match(/^\s+/); if (match) { var consumed = match[0]; remaining = remaining.substring(consumed.length); } return remaining; }; /** * Parse the string and store the parsed representation in the Selector. * @param {string} selector The selector string * @returns `true` if the selector was successfully parsed, `false` otherwise */ var parse = function parse(selector) { var self = this; var remaining = self.inputText = selector; var currentQuery = self[0] = newQuery(); self.length = 1; remaining = consumeWhitespace(remaining); // get rid of leading whitespace for (;;) { var exprInfo = consumeExpr(remaining); if (exprInfo.expr == null) { warn('The selector `' + selector + '`is invalid'); return false; } else { var args = exprInfo.match.slice(1); // let the token populate the selector object in currentQuery var ret = exprInfo.expr.populate(self, currentQuery, args); if (ret === false) { return false; // exit if population failed } else if (ret != null) { currentQuery = ret; // change the current query to be filled if the expr specifies } } remaining = exprInfo.remaining; // we're done when there's nothing left to parse if (remaining.match(/^\s*$/)) { break; } } var lastQ = self[self.length - 1]; if (self.currentSubject != null) { lastQ.subject = self.currentSubject; } lastQ.edgeCount = self.edgeCount; lastQ.compoundCount = self.compoundCount; for (var i = 0; i < self.length; i++) { var q = self[i]; // in future, this could potentially be allowed if there were operator precedence and detection of invalid combinations if (q.compoundCount > 0 && q.edgeCount > 0) { warn('The selector `' + selector + '` is invalid because it uses both a compound selector and an edge selector'); return false; } if (q.edgeCount > 1) { warn('The selector `' + selector + '` is invalid because it uses multiple edge selectors'); return false; } else if (q.edgeCount === 1) { warn('The selector `' + selector + '` is deprecated. Edge selectors do not take effect on changes to source and target nodes after an edge is added, for performance reasons. Use a class or data selector on edges instead, updating the class or data of an edge when your app detects a change in source or target nodes.'); } } return true; // success }; /** * Get the selector represented as a string. This value uses default formatting, * so things like spacing may differ from the input text passed to the constructor. * @returns {string} The selector string */ var toString = function toString() { if (this.toStringCache != null) { return this.toStringCache; } var clean = function clean(obj) { if (obj == null) { return ''; } else { return obj; } }; var cleanVal = function cleanVal(val) { if (string(val)) { return '"' + val + '"'; } else { return clean(val); } }; var space = function space(val) { return ' ' + val + ' '; }; var checkToString = function checkToString(check, subject) { var type = check.type, value = check.value; switch (type) { case Type.GROUP: { var group = clean(value); return group.substring(0, group.length - 1); } case Type.DATA_COMPARE: { var field = check.field, operator = check.operator; return '[' + field + space(clean(operator)) + cleanVal(value) + ']'; } case Type.DATA_BOOL: { var _operator = check.operator, _field = check.field; return '[' + clean(_operator) + _field + ']'; } case Type.DATA_EXIST: { var _field2 = check.field; return '[' + _field2 + ']'; } case Type.META_COMPARE: { var _operator2 = check.operator, _field3 = check.field; return '[[' + _field3 + space(clean(_operator2)) + cleanVal(value) + ']]'; } case Type.STATE: { return value; } case Type.ID: { return '#' + value; } case Type.CLASS: { return '.' + value; } case Type.PARENT: case Type.CHILD: { return queryToString(check.parent, subject) + space('>') + queryToString(check.child, subject); } case Type.ANCESTOR: case Type.DESCENDANT: { return queryToString(check.ancestor, subject) + ' ' + queryToString(check.descendant, subject); } case Type.COMPOUND_SPLIT: { var lhs = queryToString(check.left, subject); var sub = queryToString(check.subject, subject); var rhs = queryToString(check.right, subject); return lhs + (lhs.length > 0 ? ' ' : '') + sub + rhs; } case Type.TRUE: { return ''; } } }; var queryToString = function queryToString(query, subject) { return query.checks.reduce(function (str, chk, i) { return str + (subject === query && i === 0 ? '$' : '') + checkToString(chk, subject); }, ''); }; var str = ''; for (var i = 0; i < this.length; i++) { var query = this[i]; str += queryToString(query, query.subject); if (this.length > 1 && i < this.length - 1) { str += ', '; } } this.toStringCache = str; return str; }; var parse$1 = { parse: parse, toString: toString }; var valCmp = function valCmp(fieldVal, operator, value) { var matches; var isFieldStr = string(fieldVal); var isFieldNum = number$1(fieldVal); var isValStr = string(value); var fieldStr, valStr; var caseInsensitive = false; var notExpr = false; var isIneqCmp = false; if (operator.indexOf('!') >= 0) { operator = operator.replace('!', ''); notExpr = true; } if (operator.indexOf('@') >= 0) { operator = operator.replace('@', ''); caseInsensitive = true; } if (isFieldStr || isValStr || caseInsensitive) { fieldStr = !isFieldStr && !isFieldNum ? '' : '' + fieldVal; valStr = '' + value; } // if we're doing a case insensitive comparison, then we're using a STRING comparison // even if we're comparing numbers if (caseInsensitive) { fieldVal = fieldStr = fieldStr.toLowerCase(); value = valStr = valStr.toLowerCase(); } switch (operator) { case '*=': matches = fieldStr.indexOf(valStr) >= 0; break; case '$=': matches = fieldStr.indexOf(valStr, fieldStr.length - valStr.length) >= 0; break; case '^=': matches = fieldStr.indexOf(valStr) === 0; break; case '=': matches = fieldVal === value; break; case '>': isIneqCmp = true; matches = fieldVal > value; break; case '>=': isIneqCmp = true; matches = fieldVal >= value; break; case '<': isIneqCmp = true; matches = fieldVal < value; break; case '<=': isIneqCmp = true; matches = fieldVal <= value; break; default: matches = false; break; } // apply the not op, but null vals for inequalities should always stay non-matching if (notExpr && (fieldVal != null || !isIneqCmp)) { matches = !matches; } return matches; }; var boolCmp = function boolCmp(fieldVal, operator) { switch (operator) { case '?': return fieldVal ? true : false; case '!': return fieldVal ? false : true; case '^': return fieldVal === undefined; } }; var existCmp = function existCmp(fieldVal) { return fieldVal !== undefined; }; var data$1 = function data(ele, field) { return ele.data(field); }; var meta = function meta(ele, field) { return ele[field](); }; /** A lookup of `match(check, ele)` functions by `Type` int */ var match = []; /** * Returns whether the query matches for the element * @param query The `{ type, value, ... }` query object * @param ele The element to compare against */ var matches$1 = function matches(query, ele) { return query.checks.every(function (chk) { return match[chk.type](chk, ele); }); }; match[Type.GROUP] = function (check, ele) { var group = check.value; return group === '*' || group === ele.group(); }; match[Type.STATE] = function (check, ele) { var stateSelector = check.value; return stateSelectorMatches(stateSelector, ele); }; match[Type.ID] = function (check, ele) { var id = check.value; return ele.id() === id; }; match[Type.CLASS] = function (check, ele) { var cls = check.value; return ele.hasClass(cls); }; match[Type.META_COMPARE] = function (check, ele) { var field = check.field, operator = check.operator, value = check.value; return valCmp(meta(ele, field), operator, value); }; match[Type.DATA_COMPARE] = function (check, ele) { var field = check.field, operator = check.operator, value = check.value; return valCmp(data$1(ele, field), operator, value); }; match[Type.DATA_BOOL] = function (check, ele) { var field = check.field, operator = check.operator; return boolCmp(data$1(ele, field), operator); }; match[Type.DATA_EXIST] = function (check, ele) { var field = check.field; check.operator; return existCmp(data$1(ele, field)); }; match[Type.UNDIRECTED_EDGE] = function (check, ele) { var qA = check.nodes[0]; var qB = check.nodes[1]; var src = ele.source(); var tgt = ele.target(); return matches$1(qA, src) && matches$1(qB, tgt) || matches$1(qB, src) && matches$1(qA, tgt); }; match[Type.NODE_NEIGHBOR] = function (check, ele) { return matches$1(check.node, ele) && ele.neighborhood().some(function (n) { return n.isNode() && matches$1(check.neighbor, n); }); }; match[Type.DIRECTED_EDGE] = function (check, ele) { return matches$1(check.source, ele.source()) && matches$1(check.target, ele.target()); }; match[Type.NODE_SOURCE] = function (check, ele) { return matches$1(check.source, ele) && ele.outgoers().some(function (n) { return n.isNode() && matches$1(check.target, n); }); }; match[Type.NODE_TARGET] = function (check, ele) { return matches$1(check.target, ele) && ele.incomers().some(function (n) { return n.isNode() && matches$1(check.source, n); }); }; match[Type.CHILD] = function (check, ele) { return matches$1(check.child, ele) && matches$1(check.parent, ele.parent()); }; match[Type.PARENT] = function (check, ele) { return matches$1(check.parent, ele) && ele.children().some(function (c) { return matches$1(check.child, c); }); }; match[Type.DESCENDANT] = function (check, ele) { return matches$1(check.descendant, ele) && ele.ancestors().some(function (a) { return matches$1(check.ancestor, a); }); }; match[Type.ANCESTOR] = function (check, ele) { return matches$1(check.ancestor, ele) && ele.descendants().some(function (d) { return matches$1(check.descendant, d); }); }; match[Type.COMPOUND_SPLIT] = function (check, ele) { return matches$1(check.subject, ele) && matches$1(check.left, ele) && matches$1(check.right, ele); }; match[Type.TRUE] = function () { return true; }; match[Type.COLLECTION] = function (check, ele) { var collection = check.value; return collection.has(ele); }; match[Type.FILTER] = function (check, ele) { var filter = check.value; return filter(ele); }; // filter an existing collection var filter = function filter(collection) { var self = this; // for 1 id #foo queries, just get the element if (self.length === 1 && self[0].checks.length === 1 && self[0].checks[0].type === Type.ID) { return collection.getElementById(self[0].checks[0].value).collection(); } var selectorFunction = function selectorFunction(element) { for (var j = 0; j < self.length; j++) { var query = self[j]; if (matches$1(query, element)) { return true; } } return false; }; if (self.text() == null) { selectorFunction = function selectorFunction() { return true; }; } return collection.filter(selectorFunction); }; // filter // does selector match a single element? var matches = function matches(ele) { var self = this; for (var j = 0; j < self.length; j++) { var query = self[j]; if (matches$1(query, ele)) { return true; } } return false; }; // matches var matching = { matches: matches, filter: filter }; var Selector = function Selector(selector) { this.inputText = selector; this.currentSubject = null; this.compoundCount = 0; this.edgeCount = 0; this.length = 0; if (selector == null || string(selector) && selector.match(/^\s*$/)) ; else if (elementOrCollection(selector)) { this.addQuery({ checks: [{ type: Type.COLLECTION, value: selector.collection() }] }); } else if (fn$6(selector)) { this.addQuery({ checks: [{ type: Type.FILTER, value: selector }] }); } else if (string(selector)) { if (!this.parse(selector)) { this.invalid = true; } } else { error('A selector must be created from a string; found '); } }; var selfn = Selector.prototype; [parse$1, matching].forEach(function (p) { return extend(selfn, p); }); selfn.text = function () { return this.inputText; }; selfn.size = function () { return this.length; }; selfn.eq = function (i) { return this[i]; }; selfn.sameText = function (otherSel) { return !this.invalid && !otherSel.invalid && this.text() === otherSel.text(); }; selfn.addQuery = function (q) { this[this.length++] = q; }; selfn.selector = selfn.toString; var elesfn$g = { allAre: function allAre(selector) { var selObj = new Selector(selector); return this.every(function (ele) { return selObj.matches(ele); }); }, is: function is(selector) { var selObj = new Selector(selector); return this.some(function (ele) { return selObj.matches(ele); }); }, some: function some(fn, thisArg) { for (var i = 0; i < this.length; i++) { var ret = !thisArg ? fn(this[i], i, this) : fn.apply(thisArg, [this[i], i, this]); if (ret) { return true; } } return false; }, every: function every(fn, thisArg) { for (var i = 0; i < this.length; i++) { var ret = !thisArg ? fn(this[i], i, this) : fn.apply(thisArg, [this[i], i, this]); if (!ret) { return false; } } return true; }, same: function same(collection) { // cheap collection ref check if (this === collection) { return true; } collection = this.cy().collection(collection); var thisLength = this.length; var collectionLength = collection.length; // cheap length check if (thisLength !== collectionLength) { return false; } // cheap element ref check if (thisLength === 1) { return this[0] === collection[0]; } return this.every(function (ele) { return collection.hasElementWithId(ele.id()); }); }, anySame: function anySame(collection) { collection = this.cy().collection(collection); return this.some(function (ele) { return collection.hasElementWithId(ele.id()); }); }, allAreNeighbors: function allAreNeighbors(collection) { collection = this.cy().collection(collection); var nhood = this.neighborhood(); return collection.every(function (ele) { return nhood.hasElementWithId(ele.id()); }); }, contains: function contains(collection) { collection = this.cy().collection(collection); var self = this; return collection.every(function (ele) { return self.hasElementWithId(ele.id()); }); } }; elesfn$g.allAreNeighbours = elesfn$g.allAreNeighbors; elesfn$g.has = elesfn$g.contains; elesfn$g.equal = elesfn$g.equals = elesfn$g.same; var cache = function cache(fn, name) { return function traversalCache(arg1, arg2, arg3, arg4) { var selectorOrEles = arg1; var eles = this; var key; if (selectorOrEles == null) { key = ''; } else if (elementOrCollection(selectorOrEles) && selectorOrEles.length === 1) { key = selectorOrEles.id(); } if (eles.length === 1 && key) { var _p = eles[0]._private; var tch = _p.traversalCache = _p.traversalCache || {}; var ch = tch[name] = tch[name] || []; var hash = hashString(key); var cacheHit = ch[hash]; if (cacheHit) { return cacheHit; } else { return ch[hash] = fn.call(eles, arg1, arg2, arg3, arg4); } } else { return fn.call(eles, arg1, arg2, arg3, arg4); } }; }; var elesfn$f = { parent: function parent(selector) { var parents = []; // optimisation for single ele call if (this.length === 1) { var parent = this[0]._private.parent; if (parent) { return parent; } } for (var i = 0; i < this.length; i++) { var ele = this[i]; var _parent = ele._private.parent; if (_parent) { parents.push(_parent); } } return this.spawn(parents, true).filter(selector); }, parents: function parents(selector) { var parents = []; var eles = this.parent(); while (eles.nonempty()) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; parents.push(ele); } eles = eles.parent(); } return this.spawn(parents, true).filter(selector); }, commonAncestors: function commonAncestors(selector) { var ancestors; for (var i = 0; i < this.length; i++) { var ele = this[i]; var parents = ele.parents(); ancestors = ancestors || parents; ancestors = ancestors.intersect(parents); // current list must be common with current ele parents set } return ancestors.filter(selector); }, orphans: function orphans(selector) { return this.stdFilter(function (ele) { return ele.isOrphan(); }).filter(selector); }, nonorphans: function nonorphans(selector) { return this.stdFilter(function (ele) { return ele.isChild(); }).filter(selector); }, children: cache(function (selector) { var children = []; for (var i = 0; i < this.length; i++) { var ele = this[i]; var eleChildren = ele._private.children; for (var j = 0; j < eleChildren.length; j++) { children.push(eleChildren[j]); } } return this.spawn(children, true).filter(selector); }, 'children'), siblings: function siblings(selector) { return this.parent().children().not(this).filter(selector); }, isParent: function isParent() { var ele = this[0]; if (ele) { return ele.isNode() && ele._private.children.length !== 0; } }, isChildless: function isChildless() { var ele = this[0]; if (ele) { return ele.isNode() && ele._private.children.length === 0; } }, isChild: function isChild() { var ele = this[0]; if (ele) { return ele.isNode() && ele._private.parent != null; } }, isOrphan: function isOrphan() { var ele = this[0]; if (ele) { return ele.isNode() && ele._private.parent == null; } }, descendants: function descendants(selector) { var elements = []; function add(eles) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; elements.push(ele); if (ele.children().nonempty()) { add(ele.children()); } } } add(this.children()); return this.spawn(elements, true).filter(selector); } }; function forEachCompound(eles, fn, includeSelf, recursiveStep) { var q = []; var did = new Set$1(); var cy = eles.cy(); var hasCompounds = cy.hasCompoundNodes(); for (var i = 0; i < eles.length; i++) { var ele = eles[i]; if (includeSelf) { q.push(ele); } else if (hasCompounds) { recursiveStep(q, did, ele); } } while (q.length > 0) { var _ele = q.shift(); fn(_ele); did.add(_ele.id()); if (hasCompounds) { recursiveStep(q, did, _ele); } } return eles; } function addChildren(q, did, ele) { if (ele.isParent()) { var children = ele._private.children; for (var i = 0; i < children.length; i++) { var child = children[i]; if (!did.has(child.id())) { q.push(child); } } } } // very efficient version of eles.add( eles.descendants() ).forEach() // for internal use elesfn$f.forEachDown = function (fn) { var includeSelf = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; return forEachCompound(this, fn, includeSelf, addChildren); }; function addParent(q, did, ele) { if (ele.isChild()) { var parent = ele._private.parent; if (!did.has(parent.id())) { q.push(parent); } } } elesfn$f.forEachUp = function (fn) { var includeSelf = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; return forEachCompound(this, fn, includeSelf, addParent); }; function addParentAndChildren(q, did, ele) { addParent(q, did, ele); addChildren(q, did, ele); } elesfn$f.forEachUpAndDown = function (fn) { var includeSelf = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; return forEachCompound(this, fn, includeSelf, addParentAndChildren); }; // aliases elesfn$f.ancestors = elesfn$f.parents; var fn$5, elesfn$e; fn$5 = elesfn$e = { data: define.data({ field: 'data', bindingEvent: 'data', allowBinding: true, allowSetting: true, settingEvent: 'data', settingTriggersEvent: true, triggerFnName: 'trigger', allowGetting: true, immutableKeys: { 'id': true, 'source': true, 'target': true, 'parent': true }, updateStyle: true }), removeData: define.removeData({ field: 'data', event: 'data', triggerFnName: 'trigger', triggerEvent: true, immutableKeys: { 'id': true, 'source': true, 'target': true, 'parent': true }, updateStyle: true }), scratch: define.data({ field: 'scratch', bindingEvent: 'scratch', allowBinding: true, allowSetting: true, settingEvent: 'scratch', settingTriggersEvent: true, triggerFnName: 'trigger', allowGetting: true, updateStyle: true }), removeScratch: define.removeData({ field: 'scratch', event: 'scratch', triggerFnName: 'trigger', triggerEvent: true, updateStyle: true }), rscratch: define.data({ field: 'rscratch', allowBinding: false, allowSetting: true, settingTriggersEvent: false, allowGetting: true }), removeRscratch: define.removeData({ field: 'rscratch', triggerEvent: false }), id: function id() { var ele = this[0]; if (ele) { return ele._private.data.id; } } }; // aliases fn$5.attr = fn$5.data; fn$5.removeAttr = fn$5.removeData; var data = elesfn$e; var elesfn$d = {}; function defineDegreeFunction(callback) { return function (includeLoops) { var self = this; if (includeLoops === undefined) { includeLoops = true; } if (self.length === 0) { return; } if (self.isNode() && !self.removed()) { var degree = 0; var node = self[0]; var connectedEdges = node._private.edges; for (var i = 0; i < connectedEdges.length; i++) { var edge = connectedEdges[i]; if (!includeLoops && edge.isLoop()) { continue; } degree += callback(node, edge); } return degree; } else { return; } }; } extend(elesfn$d, { degree: defineDegreeFunction(function (node, edge) { if (edge.source().same(edge.target())) { return 2; } else { return 1; } }), indegree: defineDegreeFunction(function (node, edge) { if (edge.target().same(node)) { return 1; } else { return 0; } }), outdegree: defineDegreeFunction(function (node, edge) { if (edge.source().same(node)) { return 1; } else { return 0; } }) }); function defineDegreeBoundsFunction(degreeFn, callback) { return function (includeLoops) { var ret; var nodes = this.nodes(); for (var i = 0; i < nodes.length; i++) { var ele = nodes[i]; var degree = ele[degreeFn](includeLoops); if (degree !== undefined && (ret === undefined || callback(degree, ret))) { ret = degree; } } return ret; }; } extend(elesfn$d, { minDegree: defineDegreeBoundsFunction('degree', function (degree, min) { return degree < min; }), maxDegree: defineDegreeBoundsFunction('degree', function (degree, max) { return degree > max; }), minIndegree: defineDegreeBoundsFunction('indegree', function (degree, min) { return degree < min; }), maxIndegree: defineDegreeBoundsFunction('indegree', function (degree, max) { return degree > max; }), minOutdegree: defineDegreeBoundsFunction('outdegree', function (degree, min) { return degree < min; }), maxOutdegree: defineDegreeBoundsFunction('outdegree', function (degree, max) { return degree > max; }) }); extend(elesfn$d, { totalDegree: function totalDegree(includeLoops) { var total = 0; var nodes = this.nodes(); for (var i = 0; i < nodes.length; i++) { total += nodes[i].degree(includeLoops); } return total; } }); var fn$4, elesfn$c; var beforePositionSet = function beforePositionSet(eles, newPos, silent) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; if (!ele.locked()) { var oldPos = ele._private.position; var delta = { x: newPos.x != null ? newPos.x - oldPos.x : 0, y: newPos.y != null ? newPos.y - oldPos.y : 0 }; if (ele.isParent() && !(delta.x === 0 && delta.y === 0)) { ele.children().shift(delta, silent); } ele.dirtyBoundingBoxCache(); } } }; var positionDef = { field: 'position', bindingEvent: 'position', allowBinding: true, allowSetting: true, settingEvent: 'position', settingTriggersEvent: true, triggerFnName: 'emitAndNotify', allowGetting: true, validKeys: ['x', 'y'], beforeGet: function beforeGet(ele) { ele.updateCompoundBounds(); }, beforeSet: function beforeSet(eles, newPos) { beforePositionSet(eles, newPos, false); }, onSet: function onSet(eles) { eles.dirtyCompoundBoundsCache(); }, canSet: function canSet(ele) { return !ele.locked(); } }; fn$4 = elesfn$c = { position: define.data(positionDef), // position but no notification to renderer silentPosition: define.data(extend({}, positionDef, { allowBinding: false, allowSetting: true, settingTriggersEvent: false, allowGetting: false, beforeSet: function beforeSet(eles, newPos) { beforePositionSet(eles, newPos, true); }, onSet: function onSet(eles) { eles.dirtyCompoundBoundsCache(); } })), positions: function positions(pos, silent) { if (plainObject(pos)) { if (silent) { this.silentPosition(pos); } else { this.position(pos); } } else if (fn$6(pos)) { var _fn = pos; var cy = this.cy(); cy.startBatch(); for (var i = 0; i < this.length; i++) { var ele = this[i]; var _pos = void 0; if (_pos = _fn(ele, i)) { if (silent) { ele.silentPosition(_pos); } else { ele.position(_pos); } } } cy.endBatch(); } return this; // chaining }, silentPositions: function silentPositions(pos) { return this.positions(pos, true); }, shift: function shift(dim, val, silent) { var delta; if (plainObject(dim)) { delta = { x: number$1(dim.x) ? dim.x : 0, y: number$1(dim.y) ? dim.y : 0 }; silent = val; } else if (string(dim) && number$1(val)) { delta = { x: 0, y: 0 }; delta[dim] = val; } if (delta != null) { var cy = this.cy(); cy.startBatch(); for (var i = 0; i < this.length; i++) { var ele = this[i]; // exclude any node that is a descendant of the calling collection if (cy.hasCompoundNodes() && ele.isChild() && ele.ancestors().anySame(this)) { continue; } var pos = ele.position(); var newPos = { x: pos.x + delta.x, y: pos.y + delta.y }; if (silent) { ele.silentPosition(newPos); } else { ele.position(newPos); } } cy.endBatch(); } return this; }, silentShift: function silentShift(dim, val) { if (plainObject(dim)) { this.shift(dim, true); } else if (string(dim) && number$1(val)) { this.shift(dim, val, true); } return this; }, // get/set the rendered (i.e. on screen) positon of the element renderedPosition: function renderedPosition(dim, val) { var ele = this[0]; var cy = this.cy(); var zoom = cy.zoom(); var pan = cy.pan(); var rpos = plainObject(dim) ? dim : undefined; var setting = rpos !== undefined || val !== undefined && string(dim); if (ele && ele.isNode()) { // must have an element and must be a node to return position if (setting) { for (var i = 0; i < this.length; i++) { var _ele = this[i]; if (val !== undefined) { // set one dimension _ele.position(dim, (val - pan[dim]) / zoom); } else if (rpos !== undefined) { // set whole position _ele.position(renderedToModelPosition(rpos, zoom, pan)); } } } else { // getting var pos = ele.position(); rpos = modelToRenderedPosition(pos, zoom, pan); if (dim === undefined) { // then return the whole rendered position return rpos; } else { // then return the specified dimension return rpos[dim]; } } } else if (!setting) { return undefined; // for empty collection case } return this; // chaining }, // get/set the position relative to the parent relativePosition: function relativePosition(dim, val) { var ele = this[0]; var cy = this.cy(); var ppos = plainObject(dim) ? dim : undefined; var setting = ppos !== undefined || val !== undefined && string(dim); var hasCompoundNodes = cy.hasCompoundNodes(); if (ele && ele.isNode()) { // must have an element and must be a node to return position if (setting) { for (var i = 0; i < this.length; i++) { var _ele2 = this[i]; var parent = hasCompoundNodes ? _ele2.parent() : null; var hasParent = parent && parent.length > 0; var relativeToParent = hasParent; if (hasParent) { parent = parent[0]; } var origin = relativeToParent ? parent.position() : { x: 0, y: 0 }; if (val !== undefined) { // set one dimension _ele2.position(dim, val + origin[dim]); } else if (ppos !== undefined) { // set whole position _ele2.position({ x: ppos.x + origin.x, y: ppos.y + origin.y }); } } } else { // getting var pos = ele.position(); var _parent = hasCompoundNodes ? ele.parent() : null; var _hasParent = _parent && _parent.length > 0; var _relativeToParent = _hasParent; if (_hasParent) { _parent = _parent[0]; } var _origin = _relativeToParent ? _parent.position() : { x: 0, y: 0 }; ppos = { x: pos.x - _origin.x, y: pos.y - _origin.y }; if (dim === undefined) { // then return the whole rendered position return ppos; } else { // then return the specified dimension return ppos[dim]; } } } else if (!setting) { return undefined; // for empty collection case } return this; // chaining } }; // aliases fn$4.modelPosition = fn$4.point = fn$4.position; fn$4.modelPositions = fn$4.points = fn$4.positions; fn$4.renderedPoint = fn$4.renderedPosition; fn$4.relativePoint = fn$4.relativePosition; var position = elesfn$c; var fn$3, elesfn$b; fn$3 = elesfn$b = {}; elesfn$b.renderedBoundingBox = function (options) { var bb = this.boundingBox(options); var cy = this.cy(); var zoom = cy.zoom(); var pan = cy.pan(); var x1 = bb.x1 * zoom + pan.x; var x2 = bb.x2 * zoom + pan.x; var y1 = bb.y1 * zoom + pan.y; var y2 = bb.y2 * zoom + pan.y; return { x1: x1, x2: x2, y1: y1, y2: y2, w: x2 - x1, h: y2 - y1 }; }; elesfn$b.dirtyCompoundBoundsCache = function () { var silent = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false; var cy = this.cy(); if (!cy.styleEnabled() || !cy.hasCompoundNodes()) { return this; } this.forEachUp(function (ele) { if (ele.isParent()) { var _p = ele._private; _p.compoundBoundsClean = false; _p.bbCache = null; if (!silent) { ele.emitAndNotify('bounds'); } } }); return this; }; elesfn$b.updateCompoundBounds = function () { var force = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false; var cy = this.cy(); // not possible to do on non-compound graphs or with the style disabled if (!cy.styleEnabled() || !cy.hasCompoundNodes()) { return this; } // save cycles when batching -- but bounds will be stale (or not exist yet) if (!force && cy.batching()) { return this; } function update(parent) { if (!parent.isParent()) { return; } var _p = parent._private; var children = parent.children(); var includeLabels = parent.pstyle('compound-sizing-wrt-labels').value === 'include'; var min = { width: { val: parent.pstyle('min-width').pfValue, left: parent.pstyle('min-width-bias-left'), right: parent.pstyle('min-width-bias-right') }, height: { val: parent.pstyle('min-height').pfValue, top: parent.pstyle('min-height-bias-top'), bottom: parent.pstyle('min-height-bias-bottom') } }; var bb = children.boundingBox({ includeLabels: includeLabels, includeOverlays: false, // updating the compound bounds happens outside of the regular // cache cycle (i.e. before fired events) useCache: false }); var pos = _p.position; // if children take up zero area then keep position and fall back on stylesheet w/h if (bb.w === 0 || bb.h === 0) { bb = { w: parent.pstyle('width').pfValue, h: parent.pstyle('height').pfValue }; bb.x1 = pos.x - bb.w / 2; bb.x2 = pos.x + bb.w / 2; bb.y1 = pos.y - bb.h / 2; bb.y2 = pos.y + bb.h / 2; } function computeBiasValues(propDiff, propBias, propBiasComplement) { var biasDiff = 0; var biasComplementDiff = 0; var biasTotal = propBias + propBiasComplement; if (propDiff > 0 && biasTotal > 0) { biasDiff = propBias / biasTotal * propDiff; biasComplementDiff = propBiasComplement / biasTotal * propDiff; } return { biasDiff: biasDiff, biasComplementDiff: biasComplementDiff }; } function computePaddingValues(width, height, paddingObject, relativeTo) { // Assuming percentage is number from 0 to 1 if (paddingObject.units === '%') { switch (relativeTo) { case 'width': return width > 0 ? paddingObject.pfValue * width : 0; case 'height': return height > 0 ? paddingObject.pfValue * height : 0; case 'average': return width > 0 && height > 0 ? paddingObject.pfValue * (width + height) / 2 : 0; case 'min': return width > 0 && height > 0 ? width > height ? paddingObject.pfValue * height : paddingObject.pfValue * width : 0; case 'max': return width > 0 && height > 0 ? width > height ? paddingObject.pfValue * width : paddingObject.pfValue * height : 0; default: return 0; } } else if (paddingObject.units === 'px') { return paddingObject.pfValue; } else { return 0; } } var leftVal = min.width.left.value; if (min.width.left.units === 'px' && min.width.val > 0) { leftVal = leftVal * 100 / min.width.val; } var rightVal = min.width.right.value; if (min.width.right.units === 'px' && min.width.val > 0) { rightVal = rightVal * 100 / min.width.val; } var topVal = min.height.top.value; if (min.height.top.units === 'px' && min.height.val > 0) { topVal = topVal * 100 / min.height.val; } var bottomVal = min.height.bottom.value; if (min.height.bottom.units === 'px' && min.height.val > 0) { bottomVal = bottomVal * 100 / min.height.val; } var widthBiasDiffs = computeBiasValues(min.width.val - bb.w, leftVal, rightVal); var diffLeft = widthBiasDiffs.biasDiff; var diffRight = widthBiasDiffs.biasComplementDiff; var heightBiasDiffs = computeBiasValues(min.height.val - bb.h, topVal, bottomVal); var diffTop = heightBiasDiffs.biasDiff; var diffBottom = heightBiasDiffs.biasComplementDiff; _p.autoPadding = computePaddingValues(bb.w, bb.h, parent.pstyle('padding'), parent.pstyle('padding-relative-to').value); _p.autoWidth = Math.max(bb.w, min.width.val); pos.x = (-diffLeft + bb.x1 + bb.x2 + diffRight) / 2; _p.autoHeight = Math.max(bb.h, min.height.val); pos.y = (-diffTop + bb.y1 + bb.y2 + diffBottom) / 2; } for (var i = 0; i < this.length; i++) { var ele = this[i]; var _p = ele._private; if (!_p.compoundBoundsClean || force) { update(ele); if (!cy.batching()) { _p.compoundBoundsClean = true; } } } return this; }; var noninf = function noninf(x) { if (x === Infinity || x === -Infinity) { return 0; } return x; }; var updateBounds = function updateBounds(b, x1, y1, x2, y2) { // don't update with zero area boxes if (x2 - x1 === 0 || y2 - y1 === 0) { return; } // don't update with null dim if (x1 == null || y1 == null || x2 == null || y2 == null) { return; } b.x1 = x1 < b.x1 ? x1 : b.x1; b.x2 = x2 > b.x2 ? x2 : b.x2; b.y1 = y1 < b.y1 ? y1 : b.y1; b.y2 = y2 > b.y2 ? y2 : b.y2; b.w = b.x2 - b.x1; b.h = b.y2 - b.y1; }; var updateBoundsFromBox = function updateBoundsFromBox(b, b2) { if (b2 == null) { return b; } return updateBounds(b, b2.x1, b2.y1, b2.x2, b2.y2); }; var prefixedProperty = function prefixedProperty(obj, field, prefix) { return getPrefixedProperty(obj, field, prefix); }; var updateBoundsFromArrow = function updateBoundsFromArrow(bounds, ele, prefix) { if (ele.cy().headless()) { return; } var _p = ele._private; var rstyle = _p.rstyle; var halfArW = rstyle.arrowWidth / 2; var arrowType = ele.pstyle(prefix + '-arrow-shape').value; var x; var y; if (arrowType !== 'none') { if (prefix === 'source') { x = rstyle.srcX; y = rstyle.srcY; } else if (prefix === 'target') { x = rstyle.tgtX; y = rstyle.tgtY; } else { x = rstyle.midX; y = rstyle.midY; } // always store the individual arrow bounds var bbs = _p.arrowBounds = _p.arrowBounds || {}; var bb = bbs[prefix] = bbs[prefix] || {}; bb.x1 = x - halfArW; bb.y1 = y - halfArW; bb.x2 = x + halfArW; bb.y2 = y + halfArW; bb.w = bb.x2 - bb.x1; bb.h = bb.y2 - bb.y1; expandBoundingBox(bb, 1); updateBounds(bounds, bb.x1, bb.y1, bb.x2, bb.y2); } }; var updateBoundsFromLabel = function updateBoundsFromLabel(bounds, ele, prefix) { if (ele.cy().headless()) { return; } var prefixDash; if (prefix) { prefixDash = prefix + '-'; } else { prefixDash = ''; } var _p = ele._private; var rstyle = _p.rstyle; var label = ele.pstyle(prefixDash + 'label').strValue; if (label) { var halign = ele.pstyle('text-halign'); var valign = ele.pstyle('text-valign'); var labelWidth = prefixedProperty(rstyle, 'labelWidth', prefix); var labelHeight = prefixedProperty(rstyle, 'labelHeight', prefix); var labelX = prefixedProperty(rstyle, 'labelX', prefix); var labelY = prefixedProperty(rstyle, 'labelY', prefix); var marginX = ele.pstyle(prefixDash + 'text-margin-x').pfValue; var marginY = ele.pstyle(prefixDash + 'text-margin-y').pfValue; var isEdge = ele.isEdge(); var rotation = ele.pstyle(prefixDash + 'text-rotation'); var outlineWidth = ele.pstyle('text-outline-width').pfValue; var borderWidth = ele.pstyle('text-border-width').pfValue; var halfBorderWidth = borderWidth / 2; var padding = ele.pstyle('text-background-padding').pfValue; var marginOfError = 2; // expand to work around browser dimension inaccuracies var lh = labelHeight; var lw = labelWidth; var lw_2 = lw / 2; var lh_2 = lh / 2; var lx1, lx2, ly1, ly2; if (isEdge) { lx1 = labelX - lw_2; lx2 = labelX + lw_2; ly1 = labelY - lh_2; ly2 = labelY + lh_2; } else { switch (halign.value) { case 'left': lx1 = labelX - lw; lx2 = labelX; break; case 'center': lx1 = labelX - lw_2; lx2 = labelX + lw_2; break; case 'right': lx1 = labelX; lx2 = labelX + lw; break; } switch (valign.value) { case 'top': ly1 = labelY - lh; ly2 = labelY; break; case 'center': ly1 = labelY - lh_2; ly2 = labelY + lh_2; break; case 'bottom': ly1 = labelY; ly2 = labelY + lh; break; } } // shift by margin and expand by outline and border lx1 += marginX - Math.max(outlineWidth, halfBorderWidth) - padding - marginOfError; lx2 += marginX + Math.max(outlineWidth, halfBorderWidth) + padding + marginOfError; ly1 += marginY - Math.max(outlineWidth, halfBorderWidth) - padding - marginOfError; ly2 += marginY + Math.max(outlineWidth, halfBorderWidth) + padding + marginOfError; // always store the unrotated label bounds separately var bbPrefix = prefix || 'main'; var bbs = _p.labelBounds; var bb = bbs[bbPrefix] = bbs[bbPrefix] || {}; bb.x1 = lx1; bb.y1 = ly1; bb.x2 = lx2; bb.y2 = ly2; bb.w = lx2 - lx1; bb.h = ly2 - ly1; var isAutorotate = isEdge && rotation.strValue === 'autorotate'; var isPfValue = rotation.pfValue != null && rotation.pfValue !== 0; if (isAutorotate || isPfValue) { var theta = isAutorotate ? prefixedProperty(_p.rstyle, 'labelAngle', prefix) : rotation.pfValue; var cos = Math.cos(theta); var sin = Math.sin(theta); // rotation point (default value for center-center) var xo = (lx1 + lx2) / 2; var yo = (ly1 + ly2) / 2; if (!isEdge) { switch (halign.value) { case 'left': xo = lx2; break; case 'right': xo = lx1; break; } switch (valign.value) { case 'top': yo = ly2; break; case 'bottom': yo = ly1; break; } } var rotate = function rotate(x, y) { x = x - xo; y = y - yo; return { x: x * cos - y * sin + xo, y: x * sin + y * cos + yo }; }; var px1y1 = rotate(lx1, ly1); var px1y2 = rotate(lx1, ly2); var px2y1 = rotate(lx2, ly1); var px2y2 = rotate(lx2, ly2); lx1 = Math.min(px1y1.x, px1y2.x, px2y1.x, px2y2.x); lx2 = Math.max(px1y1.x, px1y2.x, px2y1.x, px2y2.x); ly1 = Math.min(px1y1.y, px1y2.y, px2y1.y, px2y2.y); ly2 = Math.max(px1y1.y, px1y2.y, px2y1.y, px2y2.y); } var bbPrefixRot = bbPrefix + 'Rot'; var bbRot = bbs[bbPrefixRot] = bbs[bbPrefixRot] || {}; bbRot.x1 = lx1; bbRot.y1 = ly1; bbRot.x2 = lx2; bbRot.y2 = ly2; bbRot.w = lx2 - lx1; bbRot.h = ly2 - ly1; updateBounds(bounds, lx1, ly1, lx2, ly2); updateBounds(_p.labelBounds.all, lx1, ly1, lx2, ly2); } return bounds; }; var updateBoundsFromOutline = function updateBoundsFromOutline(bounds, ele) { if (ele.cy().headless()) { return; } var outlineOpacity = ele.pstyle('outline-opacity').value; var outlineWidth = ele.pstyle('outline-width').value; if (outlineOpacity > 0 && outlineWidth > 0) { var outlineOffset = ele.pstyle('outline-offset').value; var nodeShape = ele.pstyle('shape').value; var outlineSize = outlineWidth + outlineOffset; var scaleX = (bounds.w + outlineSize * 2) / bounds.w; var scaleY = (bounds.h + outlineSize * 2) / bounds.h; var xOffset = 0; var yOffset = 0; if (["diamond", "pentagon", "round-triangle"].includes(nodeShape)) { scaleX = (bounds.w + outlineSize * 2.4) / bounds.w; yOffset = -outlineSize / 3.6; } else if (["concave-hexagon", "rhomboid", "right-rhomboid"].includes(nodeShape)) { scaleX = (bounds.w + outlineSize * 2.4) / bounds.w; } else if (nodeShape === "star") { scaleX = (bounds.w + outlineSize * 2.8) / bounds.w; scaleY = (bounds.h + outlineSize * 2.6) / bounds.h; yOffset = -outlineSize / 3.8; } else if (nodeShape === "triangle") { scaleX = (bounds.w + outlineSize * 2.8) / bounds.w; scaleY = (bounds.h + outlineSize * 2.4) / bounds.h; yOffset = -outlineSize / 1.4; } else if (nodeShape === "vee") { scaleX = (bounds.w + outlineSize * 4.4) / bounds.w; scaleY = (bounds.h + outlineSize * 3.8) / bounds.h; yOffset = -outlineSize * .5; } var hDelta = bounds.h * scaleY - bounds.h; var wDelta = bounds.w * scaleX - bounds.w; expandBoundingBoxSides(bounds, [Math.ceil(hDelta / 2), Math.ceil(wDelta / 2)]); if (xOffset != 0 || yOffset !== 0) { var oBounds = shiftBoundingBox(bounds, xOffset, yOffset); updateBoundingBox(bounds, oBounds); } } }; // get the bounding box of the elements (in raw model position) var boundingBoxImpl = function boundingBoxImpl(ele, options) { var cy = ele._private.cy; var styleEnabled = cy.styleEnabled(); var headless = cy.headless(); var bounds = makeBoundingBox(); var _p = ele._private; var isNode = ele.isNode(); var isEdge = ele.isEdge(); var ex1, ex2, ey1, ey2; // extrema of body / lines var x, y; // node pos var rstyle = _p.rstyle; var manualExpansion = isNode && styleEnabled ? ele.pstyle('bounds-expansion').pfValue : [0]; // must use `display` prop only, as reading `compound.width()` causes recursion // (other factors like width values will be considered later in this function anyway) var isDisplayed = function isDisplayed(ele) { return ele.pstyle('display').value !== 'none'; }; var displayed = !styleEnabled || isDisplayed(ele) // must take into account connected nodes b/c of implicit edge hiding on display:none node && (!isEdge || isDisplayed(ele.source()) && isDisplayed(ele.target())); if (displayed) { // displayed suffices, since we will find zero area eles anyway var overlayOpacity = 0; var overlayPadding = 0; if (styleEnabled && options.includeOverlays) { overlayOpacity = ele.pstyle('overlay-opacity').value; if (overlayOpacity !== 0) { overlayPadding = ele.pstyle('overlay-padding').value; } } var underlayOpacity = 0; var underlayPadding = 0; if (styleEnabled && options.includeUnderlays) { underlayOpacity = ele.pstyle('underlay-opacity').value; if (underlayOpacity !== 0) { underlayPadding = ele.pstyle('underlay-padding').value; } } var padding = Math.max(overlayPadding, underlayPadding); var w = 0; var wHalf = 0; if (styleEnabled) { w = ele.pstyle('width').pfValue; wHalf = w / 2; } if (isNode && options.includeNodes) { var pos = ele.position(); x = pos.x; y = pos.y; var _w = ele.outerWidth(); var halfW = _w / 2; var h = ele.outerHeight(); var halfH = h / 2; // handle node dimensions ///////////////////////// ex1 = x - halfW; ex2 = x + halfW; ey1 = y - halfH; ey2 = y + halfH; updateBounds(bounds, ex1, ey1, ex2, ey2); if (styleEnabled && options.includeOutlines) { updateBoundsFromOutline(bounds, ele); } } else if (isEdge && options.includeEdges) { if (styleEnabled && !headless) { var curveStyle = ele.pstyle('curve-style').strValue; // handle edge dimensions (rough box estimate) ////////////////////////////////////////////// ex1 = Math.min(rstyle.srcX, rstyle.midX, rstyle.tgtX); ex2 = Math.max(rstyle.srcX, rstyle.midX, rstyle.tgtX); ey1 = Math.min(rstyle.srcY, rstyle.midY, rstyle.tgtY); ey2 = Math.max(rstyle.srcY, rstyle.midY, rstyle.tgtY); // take into account edge width ex1 -= wHalf; ex2 += wHalf; ey1 -= wHalf; ey2 += wHalf; updateBounds(bounds, ex1, ey1, ex2, ey2); // precise edges //////////////// if (curveStyle === 'haystack') { var hpts = rstyle.haystackPts; if (hpts && hpts.length === 2) { ex1 = hpts[0].x; ey1 = hpts[0].y; ex2 = hpts[1].x; ey2 = hpts[1].y; if (ex1 > ex2) { var temp = ex1; ex1 = ex2; ex2 = temp; } if (ey1 > ey2) { var _temp = ey1; ey1 = ey2; ey2 = _temp; } updateBounds(bounds, ex1 - wHalf, ey1 - wHalf, ex2 + wHalf, ey2 + wHalf); } } else if (curveStyle === 'bezier' || curveStyle === 'unbundled-bezier' || curveStyle.endsWith('segments') || curveStyle.endsWith('taxi')) { var pts; switch (curveStyle) { case 'bezier': case 'unbundled-bezier': pts = rstyle.bezierPts; break; case 'segments': case 'taxi': case 'round-segments': case 'round-taxi': pts = rstyle.linePts; break; } if (pts != null) { for (var j = 0; j < pts.length; j++) { var pt = pts[j]; ex1 = pt.x - wHalf; ex2 = pt.x + wHalf; ey1 = pt.y - wHalf; ey2 = pt.y + wHalf; updateBounds(bounds, ex1, ey1, ex2, ey2); } } } // bezier-like or segment-like edge } else { // headless or style disabled // fallback on source and target positions ////////////////////////////////////////// var n1 = ele.source(); var n1pos = n1.position(); var n2 = ele.target(); var n2pos = n2.position(); ex1 = n1pos.x; ex2 = n2pos.x; ey1 = n1pos.y; ey2 = n2pos.y; if (ex1 > ex2) { var _temp2 = ex1; ex1 = ex2; ex2 = _temp2; } if (ey1 > ey2) { var _temp3 = ey1; ey1 = ey2; ey2 = _temp3; } // take into account edge width ex1 -= wHalf; ex2 += wHalf; ey1 -= wHalf; ey2 += wHalf; updateBounds(bounds, ex1, ey1, ex2, ey2); } // headless or style disabled } // edges // handle edge arrow size ///////////////////////// if (styleEnabled && options.includeEdges && isEdge) { updateBoundsFromArrow(bounds, ele, 'mid-source'); updateBoundsFromArrow(bounds, ele, 'mid-target'); updateBoundsFromArrow(bounds, ele, 'source'); updateBoundsFromArrow(bounds, ele, 'target'); } // ghost //////// if (styleEnabled) { var ghost = ele.pstyle('ghost').value === 'yes'; if (ghost) { var gx = ele.pstyle('ghost-offset-x').pfValue; var gy = ele.pstyle('ghost-offset-y').pfValue; updateBounds(bounds, bounds.x1 + gx, bounds.y1 + gy, bounds.x2 + gx, bounds.y2 + gy); } } // always store the body bounds separately from the labels var bbBody = _p.bodyBounds = _p.bodyBounds || {}; assignBoundingBox(bbBody, bounds); expandBoundingBoxSides(bbBody, manualExpansion); expandBoundingBox(bbBody, 1); // expand to work around browser dimension inaccuracies // overlay ////////// if (styleEnabled) { ex1 = bounds.x1; ex2 = bounds.x2; ey1 = bounds.y1; ey2 = bounds.y2; updateBounds(bounds, ex1 - padding, ey1 - padding, ex2 + padding, ey2 + padding); } // always store the body bounds separately from the labels var bbOverlay = _p.overlayBounds = _p.overlayBounds || {}; assignBoundingBox(bbOverlay, bounds); expandBoundingBoxSides(bbOverlay, manualExpansion); expandBoundingBox(bbOverlay, 1); // expand to work around browser dimension inaccuracies // handle label dimensions ////////////////////////// var bbLabels = _p.labelBounds = _p.labelBounds || {}; if (bbLabels.all != null) { clearBoundingBox(bbLabels.all); } else { bbLabels.all = makeBoundingBox(); } if (styleEnabled && options.includeLabels) { if (options.includeMainLabels) { updateBoundsFromLabel(bounds, ele, null); } if (isEdge) { if (options.includeSourceLabels) { updateBoundsFromLabel(bounds, ele, 'source'); } if (options.includeTargetLabels) { updateBoundsFromLabel(bounds, ele, 'target'); } } } // style enabled for labels } // if displayed bounds.x1 = noninf(bounds.x1); bounds.y1 = noninf(bounds.y1); bounds.x2 = noninf(bounds.x2); bounds.y2 = noninf(bounds.y2); bounds.w = noninf(bounds.x2 - bounds.x1); bounds.h = noninf(bounds.y2 - bounds.y1); if (bounds.w > 0 && bounds.h > 0 && displayed) { expandBoundingBoxSides(bounds, manualExpansion); // expand bounds by 1 because antialiasing can increase the visual/effective size by 1 on all sides expandBoundingBox(bounds, 1); } return bounds; }; var getKey = function getKey(opts) { var i = 0; var tf = function tf(val) { return (val ? 1 : 0) << i++; }; var key = 0; key += tf(opts.incudeNodes); key += tf(opts.includeEdges); key += tf(opts.includeLabels); key += tf(opts.includeMainLabels); key += tf(opts.includeSourceLabels); key += tf(opts.includeTargetLabels); key += tf(opts.includeOverlays); key += tf(opts.includeOutlines); return key; }; var getBoundingBoxPosKey = function getBoundingBoxPosKey(ele) { if (ele.isEdge()) { var p1 = ele.source().position(); var p2 = ele.target().position(); var r = function r(x) { return Math.round(x); }; return hashIntsArray([r(p1.x), r(p1.y), r(p2.x), r(p2.y)]); } else { return 0; } }; var cachedBoundingBoxImpl = function cachedBoundingBoxImpl(ele, opts) { var _p = ele._private; var bb; var isEdge = ele.isEdge(); var key = opts == null ? defBbOptsKey : getKey(opts); var usingDefOpts = key === defBbOptsKey; var currPosKey = getBoundingBoxPosKey(ele); var isPosKeySame = _p.bbCachePosKey === currPosKey; var useCache = opts.useCache && isPosKeySame; var isDirty = function isDirty(ele) { return ele._private.bbCache == null || ele._private.styleDirty; }; var needRecalc = !useCache || isDirty(ele) || isEdge && isDirty(ele.source()) || isDirty(ele.target()); if (needRecalc) { if (!isPosKeySame) { ele.recalculateRenderedStyle(useCache); } bb = boundingBoxImpl(ele, defBbOpts); _p.bbCache = bb; _p.bbCachePosKey = currPosKey; } else { bb = _p.bbCache; } // not using def opts => need to build up bb from combination of sub bbs if (!usingDefOpts) { var isNode = ele.isNode(); bb = makeBoundingBox(); if (opts.includeNodes && isNode || opts.includeEdges && !isNode) { if (opts.includeOverlays) { updateBoundsFromBox(bb, _p.overlayBounds); } else { updateBoundsFromBox(bb, _p.bodyBounds); } } if (opts.includeLabels) { if (opts.includeMainLabels && (!isEdge || opts.includeSourceLabels && opts.includeTargetLabels)) { updateBoundsFromBox(bb, _p.labelBounds.all); } else { if (opts.includeMainLabels) { updateBoundsFromBox(bb, _p.labelBounds.mainRot); } if (opts.includeSourceLabels) { updateBoundsFromBox(bb, _p.labelBounds.sourceRot); } if (opts.includeTargetLabels) { updateBoundsFromBox(bb, _p.labelBounds.targetRot); } } } bb.w = bb.x2 - bb.x1; bb.h = bb.y2 - bb.y1; } return bb; }; var defBbOpts = { includeNodes: true, includeEdges: true, includeLabels: true, includeMainLabels: true, includeSourceLabels: true, includeTargetLabels: true, includeOverlays: true, includeUnderlays: true, includeOutlines: true, useCache: true }; var defBbOptsKey = getKey(defBbOpts); var filledBbOpts = defaults$g(defBbOpts); elesfn$b.boundingBox = function (options) { var bounds; // the main usecase is ele.boundingBox() for a single element with no/def options // specified s.t. the cache is used, so check for this case to make it faster by // avoiding the overhead of the rest of the function if (this.length === 1 && this[0]._private.bbCache != null && !this[0]._private.styleDirty && (options === undefined || options.useCache === undefined || options.useCache === true)) { if (options === undefined) { options = defBbOpts; } else { options = filledBbOpts(options); } bounds = cachedBoundingBoxImpl(this[0], options); } else { bounds = makeBoundingBox(); options = options || defBbOpts; var opts = filledBbOpts(options); var eles = this; var cy = eles.cy(); var styleEnabled = cy.styleEnabled(); if (styleEnabled) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var _p = ele._private; var currPosKey = getBoundingBoxPosKey(ele); var isPosKeySame = _p.bbCachePosKey === currPosKey; var useCache = opts.useCache && isPosKeySame && !_p.styleDirty; ele.recalculateRenderedStyle(useCache); } } this.updateCompoundBounds(!options.useCache); for (var _i = 0; _i < eles.length; _i++) { var _ele = eles[_i]; updateBoundsFromBox(bounds, cachedBoundingBoxImpl(_ele, opts)); } } bounds.x1 = noninf(bounds.x1); bounds.y1 = noninf(bounds.y1); bounds.x2 = noninf(bounds.x2); bounds.y2 = noninf(bounds.y2); bounds.w = noninf(bounds.x2 - bounds.x1); bounds.h = noninf(bounds.y2 - bounds.y1); return bounds; }; elesfn$b.dirtyBoundingBoxCache = function () { for (var i = 0; i < this.length; i++) { var _p = this[i]._private; _p.bbCache = null; _p.bbCachePosKey = null; _p.bodyBounds = null; _p.overlayBounds = null; _p.labelBounds.all = null; _p.labelBounds.source = null; _p.labelBounds.target = null; _p.labelBounds.main = null; _p.labelBounds.sourceRot = null; _p.labelBounds.targetRot = null; _p.labelBounds.mainRot = null; _p.arrowBounds.source = null; _p.arrowBounds.target = null; _p.arrowBounds['mid-source'] = null; _p.arrowBounds['mid-target'] = null; } this.emitAndNotify('bounds'); return this; }; // private helper to get bounding box for custom node positions // - good for perf in certain cases but currently requires dirtying the rendered style // - would be better to not modify the nodes but the nodes are read directly everywhere in the renderer... // - try to use for only things like discrete layouts where the node position would change anyway elesfn$b.boundingBoxAt = function (fn) { var nodes = this.nodes(); var cy = this.cy(); var hasCompoundNodes = cy.hasCompoundNodes(); var parents = cy.collection(); if (hasCompoundNodes) { parents = nodes.filter(function (node) { return node.isParent(); }); nodes = nodes.not(parents); } if (plainObject(fn)) { var obj = fn; fn = function fn() { return obj; }; } var storeOldPos = function storeOldPos(node, i) { return node._private.bbAtOldPos = fn(node, i); }; var getOldPos = function getOldPos(node) { return node._private.bbAtOldPos; }; cy.startBatch(); nodes.forEach(storeOldPos).silentPositions(fn); if (hasCompoundNodes) { parents.dirtyCompoundBoundsCache(); parents.dirtyBoundingBoxCache(); parents.updateCompoundBounds(true); // force update b/c we're inside a batch cycle } var bb = copyBoundingBox(this.boundingBox({ useCache: false })); nodes.silentPositions(getOldPos); if (hasCompoundNodes) { parents.dirtyCompoundBoundsCache(); parents.dirtyBoundingBoxCache(); parents.updateCompoundBounds(true); // force update b/c we're inside a batch cycle } cy.endBatch(); return bb; }; fn$3.boundingbox = fn$3.bb = fn$3.boundingBox; fn$3.renderedBoundingbox = fn$3.renderedBoundingBox; var bounds = elesfn$b; var fn$2, elesfn$a; fn$2 = elesfn$a = {}; var defineDimFns = function defineDimFns(opts) { opts.uppercaseName = capitalize(opts.name); opts.autoName = 'auto' + opts.uppercaseName; opts.labelName = 'label' + opts.uppercaseName; opts.outerName = 'outer' + opts.uppercaseName; opts.uppercaseOuterName = capitalize(opts.outerName); fn$2[opts.name] = function dimImpl() { var ele = this[0]; var _p = ele._private; var cy = _p.cy; var styleEnabled = cy._private.styleEnabled; if (ele) { if (styleEnabled) { if (ele.isParent()) { ele.updateCompoundBounds(); return _p[opts.autoName] || 0; } var d = ele.pstyle(opts.name); switch (d.strValue) { case 'label': ele.recalculateRenderedStyle(); return _p.rstyle[opts.labelName] || 0; default: return d.pfValue; } } else { return 1; } } }; fn$2['outer' + opts.uppercaseName] = function outerDimImpl() { var ele = this[0]; var _p = ele._private; var cy = _p.cy; var styleEnabled = cy._private.styleEnabled; if (ele) { if (styleEnabled) { var dim = ele[opts.name](); var border = ele.pstyle('border-width').pfValue; // n.b. 1/2 each side var padding = 2 * ele.padding(); return dim + border + padding; } else { return 1; } } }; fn$2['rendered' + opts.uppercaseName] = function renderedDimImpl() { var ele = this[0]; if (ele) { var d = ele[opts.name](); return d * this.cy().zoom(); } }; fn$2['rendered' + opts.uppercaseOuterName] = function renderedOuterDimImpl() { var ele = this[0]; if (ele) { var od = ele[opts.outerName](); return od * this.cy().zoom(); } }; }; defineDimFns({ name: 'width' }); defineDimFns({ name: 'height' }); elesfn$a.padding = function () { var ele = this[0]; var _p = ele._private; if (ele.isParent()) { ele.updateCompoundBounds(); if (_p.autoPadding !== undefined) { return _p.autoPadding; } else { return ele.pstyle('padding').pfValue; } } else { return ele.pstyle('padding').pfValue; } }; elesfn$a.paddedHeight = function () { var ele = this[0]; return ele.height() + 2 * ele.padding(); }; elesfn$a.paddedWidth = function () { var ele = this[0]; return ele.width() + 2 * ele.padding(); }; var widthHeight = elesfn$a; var ifEdge = function ifEdge(ele, getValue) { if (ele.isEdge()) { return getValue(ele); } }; var ifEdgeRenderedPosition = function ifEdgeRenderedPosition(ele, getPoint) { if (ele.isEdge()) { var cy = ele.cy(); return modelToRenderedPosition(getPoint(ele), cy.zoom(), cy.pan()); } }; var ifEdgeRenderedPositions = function ifEdgeRenderedPositions(ele, getPoints) { if (ele.isEdge()) { var cy = ele.cy(); var pan = cy.pan(); var zoom = cy.zoom(); return getPoints(ele).map(function (p) { return modelToRenderedPosition(p, zoom, pan); }); } }; var controlPoints = function controlPoints(ele) { return ele.renderer().getControlPoints(ele); }; var segmentPoints = function segmentPoints(ele) { return ele.renderer().getSegmentPoints(ele); }; var sourceEndpoint = function sourceEndpoint(ele) { return ele.renderer().getSourceEndpoint(ele); }; var targetEndpoint = function targetEndpoint(ele) { return ele.renderer().getTargetEndpoint(ele); }; var midpoint = function midpoint(ele) { return ele.renderer().getEdgeMidpoint(ele); }; var pts = { controlPoints: { get: controlPoints, mult: true }, segmentPoints: { get: segmentPoints, mult: true }, sourceEndpoint: { get: sourceEndpoint }, targetEndpoint: { get: targetEndpoint }, midpoint: { get: midpoint } }; var renderedName = function renderedName(name) { return 'rendered' + name[0].toUpperCase() + name.substr(1); }; var edgePoints = Object.keys(pts).reduce(function (obj, name) { var spec = pts[name]; var rName = renderedName(name); obj[name] = function () { return ifEdge(this, spec.get); }; if (spec.mult) { obj[rName] = function () { return ifEdgeRenderedPositions(this, spec.get); }; } else { obj[rName] = function () { return ifEdgeRenderedPosition(this, spec.get); }; } return obj; }, {}); var dimensions = extend({}, position, bounds, widthHeight, edgePoints); /*! Event object based on jQuery events, MIT license https://jquery.org/license/ https://tldrlegal.com/license/mit-license https://github.com/jquery/jquery/blob/master/src/event.js */ var Event = function Event(src, props) { this.recycle(src, props); }; function returnFalse() { return false; } function returnTrue() { return true; } // http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html Event.prototype = { instanceString: function instanceString() { return 'event'; }, recycle: function recycle(src, props) { this.isImmediatePropagationStopped = this.isPropagationStopped = this.isDefaultPrevented = returnFalse; if (src != null && src.preventDefault) { // Browser Event object this.type = src.type; // Events bubbling up the document may have been marked as prevented // by a handler lower down the tree; reflect the correct value. this.isDefaultPrevented = src.defaultPrevented ? returnTrue : returnFalse; } else if (src != null && src.type) { // Plain object containing all event details props = src; } else { // Event string this.type = src; } // Put explicitly provided properties onto the event object if (props != null) { // more efficient to manually copy fields we use this.originalEvent = props.originalEvent; this.type = props.type != null ? props.type : this.type; this.cy = props.cy; this.target = props.target; this.position = props.position; this.renderedPosition = props.renderedPosition; this.namespace = props.namespace; this.layout = props.layout; } if (this.cy != null && this.position != null && this.renderedPosition == null) { // create a rendered position based on the passed position var pos = this.position; var zoom = this.cy.zoom(); var pan = this.cy.pan(); this.renderedPosition = { x: pos.x * zoom + pan.x, y: pos.y * zoom + pan.y }; } // Create a timestamp if incoming event doesn't have one this.timeStamp = src && src.timeStamp || Date.now(); }, preventDefault: function preventDefault() { this.isDefaultPrevented = returnTrue; var e = this.originalEvent; if (!e) { return; } // if preventDefault exists run it on the original event if (e.preventDefault) { e.preventDefault(); } }, stopPropagation: function stopPropagation() { this.isPropagationStopped = returnTrue; var e = this.originalEvent; if (!e) { return; } // if stopPropagation exists run it on the original event if (e.stopPropagation) { e.stopPropagation(); } }, stopImmediatePropagation: function stopImmediatePropagation() { this.isImmediatePropagationStopped = returnTrue; this.stopPropagation(); }, isDefaultPrevented: returnFalse, isPropagationStopped: returnFalse, isImmediatePropagationStopped: returnFalse }; var eventRegex = /^([^.]+)(\.(?:[^.]+))?$/; // regex for matching event strings (e.g. "click.namespace") var universalNamespace = '.*'; // matches as if no namespace specified and prevents users from unbinding accidentally var defaults$8 = { qualifierCompare: function qualifierCompare(q1, q2) { return q1 === q2; }, eventMatches: function eventMatches( /*context, listener, eventObj*/ ) { return true; }, addEventFields: function addEventFields( /*context, evt*/ ) {}, callbackContext: function callbackContext(context /*, listener, eventObj*/) { return context; }, beforeEmit: function beforeEmit( /* context, listener, eventObj */ ) {}, afterEmit: function afterEmit( /* context, listener, eventObj */ ) {}, bubble: function bubble( /*context*/ ) { return false; }, parent: function parent( /*context*/ ) { return null; }, context: null }; var defaultsKeys = Object.keys(defaults$8); var emptyOpts = {}; function Emitter() { var opts = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : emptyOpts; var context = arguments.length > 1 ? arguments[1] : undefined; // micro-optimisation vs Object.assign() -- reduces Element instantiation time for (var i = 0; i < defaultsKeys.length; i++) { var key = defaultsKeys[i]; this[key] = opts[key] || defaults$8[key]; } this.context = context || this.context; this.listeners = []; this.emitting = 0; } var p = Emitter.prototype; var forEachEvent = function forEachEvent(self, handler, events, qualifier, callback, conf, confOverrides) { if (fn$6(qualifier)) { callback = qualifier; qualifier = null; } if (confOverrides) { if (conf == null) { conf = confOverrides; } else { conf = extend({}, conf, confOverrides); } } var eventList = array(events) ? events : events.split(/\s+/); for (var i = 0; i < eventList.length; i++) { var evt = eventList[i]; if (emptyString(evt)) { continue; } var match = evt.match(eventRegex); // type[.namespace] if (match) { var type = match[1]; var namespace = match[2] ? match[2] : null; var ret = handler(self, evt, type, namespace, qualifier, callback, conf); if (ret === false) { break; } // allow exiting early } } }; var makeEventObj = function makeEventObj(self, obj) { self.addEventFields(self.context, obj); return new Event(obj.type, obj); }; var forEachEventObj = function forEachEventObj(self, handler, events) { if (event(events)) { handler(self, events); return; } else if (plainObject(events)) { handler(self, makeEventObj(self, events)); return; } var eventList = array(events) ? events : events.split(/\s+/); for (var i = 0; i < eventList.length; i++) { var evt = eventList[i]; if (emptyString(evt)) { continue; } var match = evt.match(eventRegex); // type[.namespace] if (match) { var type = match[1]; var namespace = match[2] ? match[2] : null; var eventObj = makeEventObj(self, { type: type, namespace: namespace, target: self.context }); handler(self, eventObj); } } }; p.on = p.addListener = function (events, qualifier, callback, conf, confOverrides) { forEachEvent(this, function (self, event, type, namespace, qualifier, callback, conf) { if (fn$6(callback)) { self.listeners.push({ event: event, // full event string callback: callback, // callback to run type: type, // the event type (e.g. 'click') namespace: namespace, // the event namespace (e.g. ".foo") qualifier: qualifier, // a restriction on whether to match this emitter conf: conf // additional configuration }); } }, events, qualifier, callback, conf, confOverrides); return this; }; p.one = function (events, qualifier, callback, conf) { return this.on(events, qualifier, callback, conf, { one: true }); }; p.removeListener = p.off = function (events, qualifier, callback, conf) { var _this = this; if (this.emitting !== 0) { this.listeners = copyArray$1(this.listeners); } var listeners = this.listeners; var _loop = function _loop(i) { var listener = listeners[i]; forEachEvent(_this, function (self, event, type, namespace, qualifier, callback /*, conf*/) { if ((listener.type === type || events === '*') && (!namespace && listener.namespace !== '.*' || listener.namespace === namespace) && (!qualifier || self.qualifierCompare(listener.qualifier, qualifier)) && (!callback || listener.callback === callback)) { listeners.splice(i, 1); return false; } }, events, qualifier, callback, conf); }; for (var i = listeners.length - 1; i >= 0; i--) { _loop(i); } return this; }; p.removeAllListeners = function () { return this.removeListener('*'); }; p.emit = p.trigger = function (events, extraParams, manualCallback) { var listeners = this.listeners; var numListenersBeforeEmit = listeners.length; this.emitting++; if (!array(extraParams)) { extraParams = [extraParams]; } forEachEventObj(this, function (self, eventObj) { if (manualCallback != null) { listeners = [{ event: eventObj.event, type: eventObj.type, namespace: eventObj.namespace, callback: manualCallback }]; numListenersBeforeEmit = listeners.length; } var _loop2 = function _loop2(i) { var listener = listeners[i]; if (listener.type === eventObj.type && (!listener.namespace || listener.namespace === eventObj.namespace || listener.namespace === universalNamespace) && self.eventMatches(self.context, listener, eventObj)) { var args = [eventObj]; if (extraParams != null) { push(args, extraParams); } self.beforeEmit(self.context, listener, eventObj); if (listener.conf && listener.conf.one) { self.listeners = self.listeners.filter(function (l) { return l !== listener; }); } var context = self.callbackContext(self.context, listener, eventObj); var ret = listener.callback.apply(context, args); self.afterEmit(self.context, listener, eventObj); if (ret === false) { eventObj.stopPropagation(); eventObj.preventDefault(); } } // if listener matches }; for (var i = 0; i < numListenersBeforeEmit; i++) { _loop2(i); } // for listener if (self.bubble(self.context) && !eventObj.isPropagationStopped()) { self.parent(self.context).emit(eventObj, extraParams); } }, events); this.emitting--; return this; }; var emitterOptions$1 = { qualifierCompare: function qualifierCompare(selector1, selector2) { if (selector1 == null || selector2 == null) { return selector1 == null && selector2 == null; } else { return selector1.sameText(selector2); } }, eventMatches: function eventMatches(ele, listener, eventObj) { var selector = listener.qualifier; if (selector != null) { return ele !== eventObj.target && element(eventObj.target) && selector.matches(eventObj.target); } return true; }, addEventFields: function addEventFields(ele, evt) { evt.cy = ele.cy(); evt.target = ele; }, callbackContext: function callbackContext(ele, listener, eventObj) { return listener.qualifier != null ? eventObj.target : ele; }, beforeEmit: function beforeEmit(context, listener /*, eventObj*/) { if (listener.conf && listener.conf.once) { listener.conf.onceCollection.removeListener(listener.event, listener.qualifier, listener.callback); } }, bubble: function bubble() { return true; }, parent: function parent(ele) { return ele.isChild() ? ele.parent() : ele.cy(); } }; var argSelector$1 = function argSelector(arg) { if (string(arg)) { return new Selector(arg); } else { return arg; } }; var elesfn$9 = { createEmitter: function createEmitter() { for (var i = 0; i < this.length; i++) { var ele = this[i]; var _p = ele._private; if (!_p.emitter) { _p.emitter = new Emitter(emitterOptions$1, ele); } } return this; }, emitter: function emitter() { return this._private.emitter; }, on: function on(events, selector, callback) { var argSel = argSelector$1(selector); for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().on(events, argSel, callback); } return this; }, removeListener: function removeListener(events, selector, callback) { var argSel = argSelector$1(selector); for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().removeListener(events, argSel, callback); } return this; }, removeAllListeners: function removeAllListeners() { for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().removeAllListeners(); } return this; }, one: function one(events, selector, callback) { var argSel = argSelector$1(selector); for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().one(events, argSel, callback); } return this; }, once: function once(events, selector, callback) { var argSel = argSelector$1(selector); for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().on(events, argSel, callback, { once: true, onceCollection: this }); } }, emit: function emit(events, extraParams) { for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().emit(events, extraParams); } return this; }, emitAndNotify: function emitAndNotify(event, extraParams) { // for internal use only if (this.length === 0) { return; } // empty collections don't need to notify anything // notify renderer this.cy().notify(event, this); this.emit(event, extraParams); return this; } }; define.eventAliasesOn(elesfn$9); var elesfn$8 = { nodes: function nodes(selector) { return this.filter(function (ele) { return ele.isNode(); }).filter(selector); }, edges: function edges(selector) { return this.filter(function (ele) { return ele.isEdge(); }).filter(selector); }, // internal helper to get nodes and edges as separate collections with single iteration over elements byGroup: function byGroup() { var nodes = this.spawn(); var edges = this.spawn(); for (var i = 0; i < this.length; i++) { var ele = this[i]; if (ele.isNode()) { nodes.push(ele); } else { edges.push(ele); } } return { nodes: nodes, edges: edges }; }, filter: function filter(_filter, thisArg) { if (_filter === undefined) { // check this first b/c it's the most common/performant case return this; } else if (string(_filter) || elementOrCollection(_filter)) { return new Selector(_filter).filter(this); } else if (fn$6(_filter)) { var filterEles = this.spawn(); var eles = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var include = thisArg ? _filter.apply(thisArg, [ele, i, eles]) : _filter(ele, i, eles); if (include) { filterEles.push(ele); } } return filterEles; } return this.spawn(); // if not handled by above, give 'em an empty collection }, not: function not(toRemove) { if (!toRemove) { return this; } else { if (string(toRemove)) { toRemove = this.filter(toRemove); } var elements = this.spawn(); for (var i = 0; i < this.length; i++) { var element = this[i]; var remove = toRemove.has(element); if (!remove) { elements.push(element); } } return elements; } }, absoluteComplement: function absoluteComplement() { var cy = this.cy(); return cy.mutableElements().not(this); }, intersect: function intersect(other) { // if a selector is specified, then filter by it instead if (string(other)) { var selector = other; return this.filter(selector); } var elements = this.spawn(); var col1 = this; var col2 = other; var col1Smaller = this.length < other.length; var colS = col1Smaller ? col1 : col2; var colL = col1Smaller ? col2 : col1; for (var i = 0; i < colS.length; i++) { var ele = colS[i]; if (colL.has(ele)) { elements.push(ele); } } return elements; }, xor: function xor(other) { var cy = this._private.cy; if (string(other)) { other = cy.$(other); } var elements = this.spawn(); var col1 = this; var col2 = other; var add = function add(col, other) { for (var i = 0; i < col.length; i++) { var ele = col[i]; var id = ele._private.data.id; var inOther = other.hasElementWithId(id); if (!inOther) { elements.push(ele); } } }; add(col1, col2); add(col2, col1); return elements; }, diff: function diff(other) { var cy = this._private.cy; if (string(other)) { other = cy.$(other); } var left = this.spawn(); var right = this.spawn(); var both = this.spawn(); var col1 = this; var col2 = other; var add = function add(col, other, retEles) { for (var i = 0; i < col.length; i++) { var ele = col[i]; var id = ele._private.data.id; var inOther = other.hasElementWithId(id); if (inOther) { both.merge(ele); } else { retEles.push(ele); } } }; add(col1, col2, left); add(col2, col1, right); return { left: left, right: right, both: both }; }, add: function add(toAdd) { var cy = this._private.cy; if (!toAdd) { return this; } if (string(toAdd)) { var selector = toAdd; toAdd = cy.mutableElements().filter(selector); } var elements = this.spawnSelf(); for (var i = 0; i < toAdd.length; i++) { var ele = toAdd[i]; var add = !this.has(ele); if (add) { elements.push(ele); } } return elements; }, // in place merge on calling collection merge: function merge(toAdd) { var _p = this._private; var cy = _p.cy; if (!toAdd) { return this; } if (toAdd && string(toAdd)) { var selector = toAdd; toAdd = cy.mutableElements().filter(selector); } var map = _p.map; for (var i = 0; i < toAdd.length; i++) { var toAddEle = toAdd[i]; var id = toAddEle._private.data.id; var add = !map.has(id); if (add) { var index = this.length++; this[index] = toAddEle; map.set(id, { ele: toAddEle, index: index }); } } return this; // chaining }, unmergeAt: function unmergeAt(i) { var ele = this[i]; var id = ele.id(); var _p = this._private; var map = _p.map; // remove ele this[i] = undefined; map["delete"](id); var unmergedLastEle = i === this.length - 1; // replace empty spot with last ele in collection if (this.length > 1 && !unmergedLastEle) { var lastEleI = this.length - 1; var lastEle = this[lastEleI]; var lastEleId = lastEle._private.data.id; this[lastEleI] = undefined; this[i] = lastEle; map.set(lastEleId, { ele: lastEle, index: i }); } // the collection is now 1 ele smaller this.length--; return this; }, // remove single ele in place in calling collection unmergeOne: function unmergeOne(ele) { ele = ele[0]; var _p = this._private; var id = ele._private.data.id; var map = _p.map; var entry = map.get(id); if (!entry) { return this; // no need to remove } var i = entry.index; this.unmergeAt(i); return this; }, // remove eles in place on calling collection unmerge: function unmerge(toRemove) { var cy = this._private.cy; if (!toRemove) { return this; } if (toRemove && string(toRemove)) { var selector = toRemove; toRemove = cy.mutableElements().filter(selector); } for (var i = 0; i < toRemove.length; i++) { this.unmergeOne(toRemove[i]); } return this; // chaining }, unmergeBy: function unmergeBy(toRmFn) { for (var i = this.length - 1; i >= 0; i--) { var ele = this[i]; if (toRmFn(ele)) { this.unmergeAt(i); } } return this; }, map: function map(mapFn, thisArg) { var arr = []; var eles = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var ret = thisArg ? mapFn.apply(thisArg, [ele, i, eles]) : mapFn(ele, i, eles); arr.push(ret); } return arr; }, reduce: function reduce(fn, initialValue) { var val = initialValue; var eles = this; for (var i = 0; i < eles.length; i++) { val = fn(val, eles[i], i, eles); } return val; }, max: function max(valFn, thisArg) { var max = -Infinity; var maxEle; var eles = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var val = thisArg ? valFn.apply(thisArg, [ele, i, eles]) : valFn(ele, i, eles); if (val > max) { max = val; maxEle = ele; } } return { value: max, ele: maxEle }; }, min: function min(valFn, thisArg) { var min = Infinity; var minEle; var eles = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var val = thisArg ? valFn.apply(thisArg, [ele, i, eles]) : valFn(ele, i, eles); if (val < min) { min = val; minEle = ele; } } return { value: min, ele: minEle }; } }; // aliases var fn$1 = elesfn$8; fn$1['u'] = fn$1['|'] = fn$1['+'] = fn$1.union = fn$1.or = fn$1.add; fn$1['\\'] = fn$1['!'] = fn$1['-'] = fn$1.difference = fn$1.relativeComplement = fn$1.subtract = fn$1.not; fn$1['n'] = fn$1['&'] = fn$1['.'] = fn$1.and = fn$1.intersection = fn$1.intersect; fn$1['^'] = fn$1['(+)'] = fn$1['(-)'] = fn$1.symmetricDifference = fn$1.symdiff = fn$1.xor; fn$1.fnFilter = fn$1.filterFn = fn$1.stdFilter = fn$1.filter; fn$1.complement = fn$1.abscomp = fn$1.absoluteComplement; var elesfn$7 = { isNode: function isNode() { return this.group() === 'nodes'; }, isEdge: function isEdge() { return this.group() === 'edges'; }, isLoop: function isLoop() { return this.isEdge() && this.source()[0] === this.target()[0]; }, isSimple: function isSimple() { return this.isEdge() && this.source()[0] !== this.target()[0]; }, group: function group() { var ele = this[0]; if (ele) { return ele._private.group; } } }; /** * Elements are drawn in a specific order based on compound depth (low to high), the element type (nodes above edges), * and z-index (low to high). These styles affect how this applies: * * z-compound-depth: May be `bottom | orphan | auto | top`. The first drawn is `bottom`, then `orphan` which is the * same depth as the root of the compound graph, followed by the default value `auto` which draws in order from * root to leaves of the compound graph. The last drawn is `top`. * z-index-compare: May be `auto | manual`. The default value is `auto` which always draws edges under nodes. * `manual` ignores this convention and draws based on the `z-index` value setting. * z-index: An integer value that affects the relative draw order of elements. In general, an element with a higher * `z-index` will be drawn on top of an element with a lower `z-index`. */ var zIndexSort = function zIndexSort(a, b) { var cy = a.cy(); var hasCompoundNodes = cy.hasCompoundNodes(); function getDepth(ele) { var style = ele.pstyle('z-compound-depth'); if (style.value === 'auto') { return hasCompoundNodes ? ele.zDepth() : 0; } else if (style.value === 'bottom') { return -1; } else if (style.value === 'top') { return MAX_INT$1; } // 'orphan' return 0; } var depthDiff = getDepth(a) - getDepth(b); if (depthDiff !== 0) { return depthDiff; } function getEleDepth(ele) { var style = ele.pstyle('z-index-compare'); if (style.value === 'auto') { return ele.isNode() ? 1 : 0; } // 'manual' return 0; } var eleDiff = getEleDepth(a) - getEleDepth(b); if (eleDiff !== 0) { return eleDiff; } var zDiff = a.pstyle('z-index').value - b.pstyle('z-index').value; if (zDiff !== 0) { return zDiff; } // compare indices in the core (order added to graph w/ last on top) return a.poolIndex() - b.poolIndex(); }; var elesfn$6 = { forEach: function forEach(fn, thisArg) { if (fn$6(fn)) { var N = this.length; for (var i = 0; i < N; i++) { var ele = this[i]; var ret = thisArg ? fn.apply(thisArg, [ele, i, this]) : fn(ele, i, this); if (ret === false) { break; } // exit each early on return false } } return this; }, toArray: function toArray() { var array = []; for (var i = 0; i < this.length; i++) { array.push(this[i]); } return array; }, slice: function slice(start, end) { var array = []; var thisSize = this.length; if (end == null) { end = thisSize; } if (start == null) { start = 0; } if (start < 0) { start = thisSize + start; } if (end < 0) { end = thisSize + end; } for (var i = start; i >= 0 && i < end && i < thisSize; i++) { array.push(this[i]); } return this.spawn(array); }, size: function size() { return this.length; }, eq: function eq(i) { return this[i] || this.spawn(); }, first: function first() { return this[0] || this.spawn(); }, last: function last() { return this[this.length - 1] || this.spawn(); }, empty: function empty() { return this.length === 0; }, nonempty: function nonempty() { return !this.empty(); }, sort: function sort(sortFn) { if (!fn$6(sortFn)) { return this; } var sorted = this.toArray().sort(sortFn); return this.spawn(sorted); }, sortByZIndex: function sortByZIndex() { return this.sort(zIndexSort); }, zDepth: function zDepth() { var ele = this[0]; if (!ele) { return undefined; } // let cy = ele.cy(); var _p = ele._private; var group = _p.group; if (group === 'nodes') { var depth = _p.data.parent ? ele.parents().size() : 0; if (!ele.isParent()) { return MAX_INT$1 - 1; // childless nodes always on top } return depth; } else { var src = _p.source; var tgt = _p.target; var srcDepth = src.zDepth(); var tgtDepth = tgt.zDepth(); return Math.max(srcDepth, tgtDepth, 0); // depth of deepest parent } } }; elesfn$6.each = elesfn$6.forEach; var defineSymbolIterator = function defineSymbolIterator() { var typeofUndef = "undefined" ; var isIteratorSupported = (typeof Symbol === "undefined" ? "undefined" : _typeof(Symbol)) != typeofUndef && _typeof(Symbol.iterator) != typeofUndef; // eslint-disable-line no-undef if (isIteratorSupported) { elesfn$6[Symbol.iterator] = function () { var _this = this; // eslint-disable-line no-undef var entry = { value: undefined, done: false }; var i = 0; var length = this.length; return _defineProperty$1({ next: function next() { if (i < length) { entry.value = _this[i++]; } else { entry.value = undefined; entry.done = true; } return entry; } }, Symbol.iterator, function () { // eslint-disable-line no-undef return this; }); }; } }; defineSymbolIterator(); var getLayoutDimensionOptions = defaults$g({ nodeDimensionsIncludeLabels: false }); var elesfn$5 = { // Calculates and returns node dimensions { x, y } based on options given layoutDimensions: function layoutDimensions(options) { options = getLayoutDimensionOptions(options); var dims; if (!this.takesUpSpace()) { dims = { w: 0, h: 0 }; } else if (options.nodeDimensionsIncludeLabels) { var bbDim = this.boundingBox(); dims = { w: bbDim.w, h: bbDim.h }; } else { dims = { w: this.outerWidth(), h: this.outerHeight() }; } // sanitise the dimensions for external layouts (avoid division by zero) if (dims.w === 0 || dims.h === 0) { dims.w = dims.h = 1; } return dims; }, // using standard layout options, apply position function (w/ or w/o animation) layoutPositions: function layoutPositions(layout, options, fn) { var nodes = this.nodes().filter(function (n) { return !n.isParent(); }); var cy = this.cy(); var layoutEles = options.eles; // nodes & edges var getMemoizeKey = function getMemoizeKey(node) { return node.id(); }; var fnMem = memoize$1(fn, getMemoizeKey); // memoized version of position function layout.emit({ type: 'layoutstart', layout: layout }); layout.animations = []; var calculateSpacing = function calculateSpacing(spacing, nodesBb, pos) { var center = { x: nodesBb.x1 + nodesBb.w / 2, y: nodesBb.y1 + nodesBb.h / 2 }; var spacingVector = { // scale from center of bounding box (not necessarily 0,0) x: (pos.x - center.x) * spacing, y: (pos.y - center.y) * spacing }; return { x: center.x + spacingVector.x, y: center.y + spacingVector.y }; }; var useSpacingFactor = options.spacingFactor && options.spacingFactor !== 1; var spacingBb = function spacingBb() { if (!useSpacingFactor) { return null; } var bb = makeBoundingBox(); for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; var pos = fnMem(node, i); expandBoundingBoxByPoint(bb, pos.x, pos.y); } return bb; }; var bb = spacingBb(); var getFinalPos = memoize$1(function (node, i) { var newPos = fnMem(node, i); if (useSpacingFactor) { var spacing = Math.abs(options.spacingFactor); newPos = calculateSpacing(spacing, bb, newPos); } if (options.transform != null) { newPos = options.transform(node, newPos); } return newPos; }, getMemoizeKey); if (options.animate) { for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; var newPos = getFinalPos(node, i); var animateNode = options.animateFilter == null || options.animateFilter(node, i); if (animateNode) { var ani = node.animation({ position: newPos, duration: options.animationDuration, easing: options.animationEasing }); layout.animations.push(ani); } else { node.position(newPos); } } if (options.fit) { var fitAni = cy.animation({ fit: { boundingBox: layoutEles.boundingBoxAt(getFinalPos), padding: options.padding }, duration: options.animationDuration, easing: options.animationEasing }); layout.animations.push(fitAni); } else if (options.zoom !== undefined && options.pan !== undefined) { var zoomPanAni = cy.animation({ zoom: options.zoom, pan: options.pan, duration: options.animationDuration, easing: options.animationEasing }); layout.animations.push(zoomPanAni); } layout.animations.forEach(function (ani) { return ani.play(); }); layout.one('layoutready', options.ready); layout.emit({ type: 'layoutready', layout: layout }); Promise$1.all(layout.animations.map(function (ani) { return ani.promise(); })).then(function () { layout.one('layoutstop', options.stop); layout.emit({ type: 'layoutstop', layout: layout }); }); } else { nodes.positions(getFinalPos); if (options.fit) { cy.fit(options.eles, options.padding); } if (options.zoom != null) { cy.zoom(options.zoom); } if (options.pan) { cy.pan(options.pan); } layout.one('layoutready', options.ready); layout.emit({ type: 'layoutready', layout: layout }); layout.one('layoutstop', options.stop); layout.emit({ type: 'layoutstop', layout: layout }); } return this; // chaining }, layout: function layout(options) { var cy = this.cy(); return cy.makeLayout(extend({}, options, { eles: this })); } }; // aliases: elesfn$5.createLayout = elesfn$5.makeLayout = elesfn$5.layout; function styleCache(key, fn, ele) { var _p = ele._private; var cache = _p.styleCache = _p.styleCache || []; var val; if ((val = cache[key]) != null) { return val; } else { val = cache[key] = fn(ele); return val; } } function cacheStyleFunction(key, fn) { key = hashString(key); return function cachedStyleFunction(ele) { return styleCache(key, fn, ele); }; } function cachePrototypeStyleFunction(key, fn) { key = hashString(key); var selfFn = function selfFn(ele) { return fn.call(ele); }; return function cachedPrototypeStyleFunction() { var ele = this[0]; if (ele) { return styleCache(key, selfFn, ele); } }; } var elesfn$4 = { recalculateRenderedStyle: function recalculateRenderedStyle(useCache) { var cy = this.cy(); var renderer = cy.renderer(); var styleEnabled = cy.styleEnabled(); if (renderer && styleEnabled) { renderer.recalculateRenderedStyle(this, useCache); } return this; }, dirtyStyleCache: function dirtyStyleCache() { var cy = this.cy(); var dirty = function dirty(ele) { return ele._private.styleCache = null; }; if (cy.hasCompoundNodes()) { var eles; eles = this.spawnSelf().merge(this.descendants()).merge(this.parents()); eles.merge(eles.connectedEdges()); eles.forEach(dirty); } else { this.forEach(function (ele) { dirty(ele); ele.connectedEdges().forEach(dirty); }); } return this; }, // fully updates (recalculates) the style for the elements updateStyle: function updateStyle(notifyRenderer) { var cy = this._private.cy; if (!cy.styleEnabled()) { return this; } if (cy.batching()) { var bEles = cy._private.batchStyleEles; bEles.merge(this); return this; // chaining and exit early when batching } var hasCompounds = cy.hasCompoundNodes(); var updatedEles = this; notifyRenderer = notifyRenderer || notifyRenderer === undefined ? true : false; if (hasCompounds) { // then add everything up and down for compound selector checks updatedEles = this.spawnSelf().merge(this.descendants()).merge(this.parents()); } // let changedEles = style.apply( updatedEles ); var changedEles = updatedEles; if (notifyRenderer) { changedEles.emitAndNotify('style'); // let renderer know we changed style } else { changedEles.emit('style'); // just fire the event } updatedEles.forEach(function (ele) { return ele._private.styleDirty = true; }); return this; // chaining }, // private: clears dirty flag and recalculates style cleanStyle: function cleanStyle() { var cy = this.cy(); if (!cy.styleEnabled()) { return; } for (var i = 0; i < this.length; i++) { var ele = this[i]; if (ele._private.styleDirty) { // n.b. this flag should be set before apply() to avoid potential infinite recursion ele._private.styleDirty = false; cy.style().apply(ele); } } }, // get the internal parsed style object for the specified property parsedStyle: function parsedStyle(property) { var includeNonDefault = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; var ele = this[0]; var cy = ele.cy(); if (!cy.styleEnabled()) { return; } if (ele) { this.cleanStyle(); var overriddenStyle = ele._private.style[property]; if (overriddenStyle != null) { return overriddenStyle; } else if (includeNonDefault) { return cy.style().getDefaultProperty(property); } else { return null; } } }, numericStyle: function numericStyle(property) { var ele = this[0]; if (!ele.cy().styleEnabled()) { return; } if (ele) { var pstyle = ele.pstyle(property); return pstyle.pfValue !== undefined ? pstyle.pfValue : pstyle.value; } }, numericStyleUnits: function numericStyleUnits(property) { var ele = this[0]; if (!ele.cy().styleEnabled()) { return; } if (ele) { return ele.pstyle(property).units; } }, // get the specified css property as a rendered value (i.e. on-screen value) // or get the whole rendered style if no property specified (NB doesn't allow setting) renderedStyle: function renderedStyle(property) { var cy = this.cy(); if (!cy.styleEnabled()) { return this; } var ele = this[0]; if (ele) { return cy.style().getRenderedStyle(ele, property); } }, // read the calculated css style of the element or override the style (via a bypass) style: function style(name, value) { var cy = this.cy(); if (!cy.styleEnabled()) { return this; } var updateTransitions = false; var style = cy.style(); if (plainObject(name)) { // then extend the bypass var props = name; style.applyBypass(this, props, updateTransitions); this.emitAndNotify('style'); // let the renderer know we've updated style } else if (string(name)) { if (value === undefined) { // then get the property from the style var ele = this[0]; if (ele) { return style.getStylePropertyValue(ele, name); } else { // empty collection => can't get any value return; } } else { // then set the bypass with the property value style.applyBypass(this, name, value, updateTransitions); this.emitAndNotify('style'); // let the renderer know we've updated style } } else if (name === undefined) { var _ele = this[0]; if (_ele) { return style.getRawStyle(_ele); } else { // empty collection => can't get any value return; } } return this; // chaining }, removeStyle: function removeStyle(names) { var cy = this.cy(); if (!cy.styleEnabled()) { return this; } var updateTransitions = false; var style = cy.style(); var eles = this; if (names === undefined) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; style.removeAllBypasses(ele, updateTransitions); } } else { names = names.split(/\s+/); for (var _i = 0; _i < eles.length; _i++) { var _ele2 = eles[_i]; style.removeBypasses(_ele2, names, updateTransitions); } } this.emitAndNotify('style'); // let the renderer know we've updated style return this; // chaining }, show: function show() { this.css('display', 'element'); return this; // chaining }, hide: function hide() { this.css('display', 'none'); return this; // chaining }, effectiveOpacity: function effectiveOpacity() { var cy = this.cy(); if (!cy.styleEnabled()) { return 1; } var hasCompoundNodes = cy.hasCompoundNodes(); var ele = this[0]; if (ele) { var _p = ele._private; var parentOpacity = ele.pstyle('opacity').value; if (!hasCompoundNodes) { return parentOpacity; } var parents = !_p.data.parent ? null : ele.parents(); if (parents) { for (var i = 0; i < parents.length; i++) { var parent = parents[i]; var opacity = parent.pstyle('opacity').value; parentOpacity = opacity * parentOpacity; } } return parentOpacity; } }, transparent: function transparent() { var cy = this.cy(); if (!cy.styleEnabled()) { return false; } var ele = this[0]; var hasCompoundNodes = ele.cy().hasCompoundNodes(); if (ele) { if (!hasCompoundNodes) { return ele.pstyle('opacity').value === 0; } else { return ele.effectiveOpacity() === 0; } } }, backgrounding: function backgrounding() { var cy = this.cy(); if (!cy.styleEnabled()) { return false; } var ele = this[0]; return ele._private.backgrounding ? true : false; } }; function checkCompound(ele, parentOk) { var _p = ele._private; var parents = _p.data.parent ? ele.parents() : null; if (parents) { for (var i = 0; i < parents.length; i++) { var parent = parents[i]; if (!parentOk(parent)) { return false; } } } return true; } function defineDerivedStateFunction(specs) { var ok = specs.ok; var edgeOkViaNode = specs.edgeOkViaNode || specs.ok; var parentOk = specs.parentOk || specs.ok; return function () { var cy = this.cy(); if (!cy.styleEnabled()) { return true; } var ele = this[0]; var hasCompoundNodes = cy.hasCompoundNodes(); if (ele) { var _p = ele._private; if (!ok(ele)) { return false; } if (ele.isNode()) { return !hasCompoundNodes || checkCompound(ele, parentOk); } else { var src = _p.source; var tgt = _p.target; return edgeOkViaNode(src) && (!hasCompoundNodes || checkCompound(src, edgeOkViaNode)) && (src === tgt || edgeOkViaNode(tgt) && (!hasCompoundNodes || checkCompound(tgt, edgeOkViaNode))); } } }; } var eleTakesUpSpace = cacheStyleFunction('eleTakesUpSpace', function (ele) { return ele.pstyle('display').value === 'element' && ele.width() !== 0 && (ele.isNode() ? ele.height() !== 0 : true); }); elesfn$4.takesUpSpace = cachePrototypeStyleFunction('takesUpSpace', defineDerivedStateFunction({ ok: eleTakesUpSpace })); var eleInteractive = cacheStyleFunction('eleInteractive', function (ele) { return ele.pstyle('events').value === 'yes' && ele.pstyle('visibility').value === 'visible' && eleTakesUpSpace(ele); }); var parentInteractive = cacheStyleFunction('parentInteractive', function (parent) { return parent.pstyle('visibility').value === 'visible' && eleTakesUpSpace(parent); }); elesfn$4.interactive = cachePrototypeStyleFunction('interactive', defineDerivedStateFunction({ ok: eleInteractive, parentOk: parentInteractive, edgeOkViaNode: eleTakesUpSpace })); elesfn$4.noninteractive = function () { var ele = this[0]; if (ele) { return !ele.interactive(); } }; var eleVisible = cacheStyleFunction('eleVisible', function (ele) { return ele.pstyle('visibility').value === 'visible' && ele.pstyle('opacity').pfValue !== 0 && eleTakesUpSpace(ele); }); var edgeVisibleViaNode = eleTakesUpSpace; elesfn$4.visible = cachePrototypeStyleFunction('visible', defineDerivedStateFunction({ ok: eleVisible, edgeOkViaNode: edgeVisibleViaNode })); elesfn$4.hidden = function () { var ele = this[0]; if (ele) { return !ele.visible(); } }; elesfn$4.isBundledBezier = cachePrototypeStyleFunction('isBundledBezier', function () { if (!this.cy().styleEnabled()) { return false; } return !this.removed() && this.pstyle('curve-style').value === 'bezier' && this.takesUpSpace(); }); elesfn$4.bypass = elesfn$4.css = elesfn$4.style; elesfn$4.renderedCss = elesfn$4.renderedStyle; elesfn$4.removeBypass = elesfn$4.removeCss = elesfn$4.removeStyle; elesfn$4.pstyle = elesfn$4.parsedStyle; var elesfn$3 = {}; function defineSwitchFunction(params) { return function () { var args = arguments; var changedEles = []; // e.g. cy.nodes().select( data, handler ) if (args.length === 2) { var data = args[0]; var handler = args[1]; this.on(params.event, data, handler); } // e.g. cy.nodes().select( handler ) else if (args.length === 1 && fn$6(args[0])) { var _handler = args[0]; this.on(params.event, _handler); } // e.g. cy.nodes().select() // e.g. (private) cy.nodes().select(['tapselect']) else if (args.length === 0 || args.length === 1 && array(args[0])) { var addlEvents = args.length === 1 ? args[0] : null; for (var i = 0; i < this.length; i++) { var ele = this[i]; var able = !params.ableField || ele._private[params.ableField]; var changed = ele._private[params.field] != params.value; if (params.overrideAble) { var overrideAble = params.overrideAble(ele); if (overrideAble !== undefined) { able = overrideAble; if (!overrideAble) { return this; } // to save cycles assume not able for all on override } } if (able) { ele._private[params.field] = params.value; if (changed) { changedEles.push(ele); } } } var changedColl = this.spawn(changedEles); changedColl.updateStyle(); // change of state => possible change of style changedColl.emit(params.event); if (addlEvents) { changedColl.emit(addlEvents); } } return this; }; } function defineSwitchSet(params) { elesfn$3[params.field] = function () { var ele = this[0]; if (ele) { if (params.overrideField) { var val = params.overrideField(ele); if (val !== undefined) { return val; } } return ele._private[params.field]; } }; elesfn$3[params.on] = defineSwitchFunction({ event: params.on, field: params.field, ableField: params.ableField, overrideAble: params.overrideAble, value: true }); elesfn$3[params.off] = defineSwitchFunction({ event: params.off, field: params.field, ableField: params.ableField, overrideAble: params.overrideAble, value: false }); } defineSwitchSet({ field: 'locked', overrideField: function overrideField(ele) { return ele.cy().autolock() ? true : undefined; }, on: 'lock', off: 'unlock' }); defineSwitchSet({ field: 'grabbable', overrideField: function overrideField(ele) { return ele.cy().autoungrabify() || ele.pannable() ? false : undefined; }, on: 'grabify', off: 'ungrabify' }); defineSwitchSet({ field: 'selected', ableField: 'selectable', overrideAble: function overrideAble(ele) { return ele.cy().autounselectify() ? false : undefined; }, on: 'select', off: 'unselect' }); defineSwitchSet({ field: 'selectable', overrideField: function overrideField(ele) { return ele.cy().autounselectify() ? false : undefined; }, on: 'selectify', off: 'unselectify' }); elesfn$3.deselect = elesfn$3.unselect; elesfn$3.grabbed = function () { var ele = this[0]; if (ele) { return ele._private.grabbed; } }; defineSwitchSet({ field: 'active', on: 'activate', off: 'unactivate' }); defineSwitchSet({ field: 'pannable', on: 'panify', off: 'unpanify' }); elesfn$3.inactive = function () { var ele = this[0]; if (ele) { return !ele._private.active; } }; var elesfn$2 = {}; // DAG functions //////////////// var defineDagExtremity = function defineDagExtremity(params) { return function dagExtremityImpl(selector) { var eles = this; var ret = []; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; if (!ele.isNode()) { continue; } var disqualified = false; var edges = ele.connectedEdges(); for (var j = 0; j < edges.length; j++) { var edge = edges[j]; var src = edge.source(); var tgt = edge.target(); if (params.noIncomingEdges && tgt === ele && src !== ele || params.noOutgoingEdges && src === ele && tgt !== ele) { disqualified = true; break; } } if (!disqualified) { ret.push(ele); } } return this.spawn(ret, true).filter(selector); }; }; var defineDagOneHop = function defineDagOneHop(params) { return function (selector) { var eles = this; var oEles = []; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; if (!ele.isNode()) { continue; } var edges = ele.connectedEdges(); for (var j = 0; j < edges.length; j++) { var edge = edges[j]; var src = edge.source(); var tgt = edge.target(); if (params.outgoing && src === ele) { oEles.push(edge); oEles.push(tgt); } else if (params.incoming && tgt === ele) { oEles.push(edge); oEles.push(src); } } } return this.spawn(oEles, true).filter(selector); }; }; var defineDagAllHops = function defineDagAllHops(params) { return function (selector) { var eles = this; var sEles = []; var sElesIds = {}; for (;;) { var next = params.outgoing ? eles.outgoers() : eles.incomers(); if (next.length === 0) { break; } // done if none left var newNext = false; for (var i = 0; i < next.length; i++) { var n = next[i]; var nid = n.id(); if (!sElesIds[nid]) { sElesIds[nid] = true; sEles.push(n); newNext = true; } } if (!newNext) { break; } // done if touched all outgoers already eles = next; } return this.spawn(sEles, true).filter(selector); }; }; elesfn$2.clearTraversalCache = function () { for (var i = 0; i < this.length; i++) { this[i]._private.traversalCache = null; } }; extend(elesfn$2, { // get the root nodes in the DAG roots: defineDagExtremity({ noIncomingEdges: true }), // get the leaf nodes in the DAG leaves: defineDagExtremity({ noOutgoingEdges: true }), // normally called children in graph theory // these nodes =edges=> outgoing nodes outgoers: cache(defineDagOneHop({ outgoing: true }), 'outgoers'), // aka DAG descendants successors: defineDagAllHops({ outgoing: true }), // normally called parents in graph theory // these nodes <=edges= incoming nodes incomers: cache(defineDagOneHop({ incoming: true }), 'incomers'), // aka DAG ancestors predecessors: defineDagAllHops({ incoming: true }) }); // Neighbourhood functions ////////////////////////// extend(elesfn$2, { neighborhood: cache(function (selector) { var elements = []; var nodes = this.nodes(); for (var i = 0; i < nodes.length; i++) { // for all nodes var node = nodes[i]; var connectedEdges = node.connectedEdges(); // for each connected edge, add the edge and the other node for (var j = 0; j < connectedEdges.length; j++) { var edge = connectedEdges[j]; var src = edge.source(); var tgt = edge.target(); var otherNode = node === src ? tgt : src; // need check in case of loop if (otherNode.length > 0) { elements.push(otherNode[0]); // add node 1 hop away } // add connected edge elements.push(edge[0]); } } return this.spawn(elements, true).filter(selector); }, 'neighborhood'), closedNeighborhood: function closedNeighborhood(selector) { return this.neighborhood().add(this).filter(selector); }, openNeighborhood: function openNeighborhood(selector) { return this.neighborhood(selector); } }); // aliases elesfn$2.neighbourhood = elesfn$2.neighborhood; elesfn$2.closedNeighbourhood = elesfn$2.closedNeighborhood; elesfn$2.openNeighbourhood = elesfn$2.openNeighborhood; // Edge functions ///////////////// extend(elesfn$2, { source: cache(function sourceImpl(selector) { var ele = this[0]; var src; if (ele) { src = ele._private.source || ele.cy().collection(); } return src && selector ? src.filter(selector) : src; }, 'source'), target: cache(function targetImpl(selector) { var ele = this[0]; var tgt; if (ele) { tgt = ele._private.target || ele.cy().collection(); } return tgt && selector ? tgt.filter(selector) : tgt; }, 'target'), sources: defineSourceFunction({ attr: 'source' }), targets: defineSourceFunction({ attr: 'target' }) }); function defineSourceFunction(params) { return function sourceImpl(selector) { var sources = []; for (var i = 0; i < this.length; i++) { var ele = this[i]; var src = ele._private[params.attr]; if (src) { sources.push(src); } } return this.spawn(sources, true).filter(selector); }; } extend(elesfn$2, { edgesWith: cache(defineEdgesWithFunction(), 'edgesWith'), edgesTo: cache(defineEdgesWithFunction({ thisIsSrc: true }), 'edgesTo') }); function defineEdgesWithFunction(params) { return function edgesWithImpl(otherNodes) { var elements = []; var cy = this._private.cy; var p = params || {}; // get elements if a selector is specified if (string(otherNodes)) { otherNodes = cy.$(otherNodes); } for (var h = 0; h < otherNodes.length; h++) { var edges = otherNodes[h]._private.edges; for (var i = 0; i < edges.length; i++) { var edge = edges[i]; var edgeData = edge._private.data; var thisToOther = this.hasElementWithId(edgeData.source) && otherNodes.hasElementWithId(edgeData.target); var otherToThis = otherNodes.hasElementWithId(edgeData.source) && this.hasElementWithId(edgeData.target); var edgeConnectsThisAndOther = thisToOther || otherToThis; if (!edgeConnectsThisAndOther) { continue; } if (p.thisIsSrc || p.thisIsTgt) { if (p.thisIsSrc && !thisToOther) { continue; } if (p.thisIsTgt && !otherToThis) { continue; } } elements.push(edge); } } return this.spawn(elements, true); }; } extend(elesfn$2, { connectedEdges: cache(function (selector) { var retEles = []; var eles = this; for (var i = 0; i < eles.length; i++) { var node = eles[i]; if (!node.isNode()) { continue; } var edges = node._private.edges; for (var j = 0; j < edges.length; j++) { var edge = edges[j]; retEles.push(edge); } } return this.spawn(retEles, true).filter(selector); }, 'connectedEdges'), connectedNodes: cache(function (selector) { var retEles = []; var eles = this; for (var i = 0; i < eles.length; i++) { var edge = eles[i]; if (!edge.isEdge()) { continue; } retEles.push(edge.source()[0]); retEles.push(edge.target()[0]); } return this.spawn(retEles, true).filter(selector); }, 'connectedNodes'), parallelEdges: cache(defineParallelEdgesFunction(), 'parallelEdges'), codirectedEdges: cache(defineParallelEdgesFunction({ codirected: true }), 'codirectedEdges') }); function defineParallelEdgesFunction(params) { var defaults = { codirected: false }; params = extend({}, defaults, params); return function parallelEdgesImpl(selector) { // micro-optimised for renderer var elements = []; var edges = this.edges(); var p = params; // look at all the edges in the collection for (var i = 0; i < edges.length; i++) { var edge1 = edges[i]; var edge1_p = edge1._private; var src1 = edge1_p.source; var srcid1 = src1._private.data.id; var tgtid1 = edge1_p.data.target; var srcEdges1 = src1._private.edges; // look at edges connected to the src node of this edge for (var j = 0; j < srcEdges1.length; j++) { var edge2 = srcEdges1[j]; var edge2data = edge2._private.data; var tgtid2 = edge2data.target; var srcid2 = edge2data.source; var codirected = tgtid2 === tgtid1 && srcid2 === srcid1; var oppdirected = srcid1 === tgtid2 && tgtid1 === srcid2; if (p.codirected && codirected || !p.codirected && (codirected || oppdirected)) { elements.push(edge2); } } } return this.spawn(elements, true).filter(selector); }; } // Misc functions ///////////////// extend(elesfn$2, { components: function components(root) { var self = this; var cy = self.cy(); var visited = cy.collection(); var unvisited = root == null ? self.nodes() : root.nodes(); var components = []; if (root != null && unvisited.empty()) { // root may contain only edges unvisited = root.sources(); // doesn't matter which node to use (undirected), so just use the source sides } var visitInComponent = function visitInComponent(node, component) { visited.merge(node); unvisited.unmerge(node); component.merge(node); }; if (unvisited.empty()) { return self.spawn(); } var _loop = function _loop() { // each iteration yields a component var cmpt = cy.collection(); components.push(cmpt); var root = unvisited[0]; visitInComponent(root, cmpt); self.bfs({ directed: false, roots: root, visit: function visit(v) { return visitInComponent(v, cmpt); } }); cmpt.forEach(function (node) { node.connectedEdges().forEach(function (e) { // connectedEdges() usually cached if (self.has(e) && cmpt.has(e.source()) && cmpt.has(e.target())) { // has() is cheap cmpt.merge(e); // forEach() only considers nodes -- sets N at call time } }); }); }; do { _loop(); } while (unvisited.length > 0); return components; }, component: function component() { var ele = this[0]; return ele.cy().mutableElements().components(ele)[0]; } }); elesfn$2.componentsOf = elesfn$2.components; // represents a set of nodes, edges, or both together var Collection = function Collection(cy, elements) { var unique = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false; var removed = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false; if (cy === undefined) { error('A collection must have a reference to the core'); return; } var map = new Map$2(); var createdElements = false; if (!elements) { elements = []; } else if (elements.length > 0 && plainObject(elements[0]) && !element(elements[0])) { createdElements = true; // make elements from json and restore all at once later var eles = []; var elesIds = new Set$1(); for (var i = 0, l = elements.length; i < l; i++) { var json = elements[i]; if (json.data == null) { json.data = {}; } var _data = json.data; // make sure newly created elements have valid ids if (_data.id == null) { _data.id = uuid(); } else if (cy.hasElementWithId(_data.id) || elesIds.has(_data.id)) { continue; // can't create element if prior id already exists } var ele = new Element(cy, json, false); eles.push(ele); elesIds.add(_data.id); } elements = eles; } this.length = 0; for (var _i = 0, _l = elements.length; _i < _l; _i++) { var element$1 = elements[_i][0]; // [0] in case elements is an array of collections, rather than array of elements if (element$1 == null) { continue; } var id = element$1._private.data.id; if (!unique || !map.has(id)) { if (unique) { map.set(id, { index: this.length, ele: element$1 }); } this[this.length] = element$1; this.length++; } } this._private = { eles: this, cy: cy, get map() { if (this.lazyMap == null) { this.rebuildMap(); } return this.lazyMap; }, set map(m) { this.lazyMap = m; }, rebuildMap: function rebuildMap() { var m = this.lazyMap = new Map$2(); var eles = this.eles; for (var _i2 = 0; _i2 < eles.length; _i2++) { var _ele = eles[_i2]; m.set(_ele.id(), { index: _i2, ele: _ele }); } } }; if (unique) { this._private.map = map; } // restore the elements if we created them from json if (createdElements && !removed) { this.restore(); } }; // Functions //////////////////////////////////////////////////////////////////////////////////////////////////// // keep the prototypes in sync (an element has the same functions as a collection) // and use elefn and elesfn as shorthands to the prototypes var elesfn$1 = Element.prototype = Collection.prototype = Object.create(Array.prototype); elesfn$1.instanceString = function () { return 'collection'; }; elesfn$1.spawn = function (eles, unique) { return new Collection(this.cy(), eles, unique); }; elesfn$1.spawnSelf = function () { return this.spawn(this); }; elesfn$1.cy = function () { return this._private.cy; }; elesfn$1.renderer = function () { return this._private.cy.renderer(); }; elesfn$1.element = function () { return this[0]; }; elesfn$1.collection = function () { if (collection(this)) { return this; } else { // an element return new Collection(this._private.cy, [this]); } }; elesfn$1.unique = function () { return new Collection(this._private.cy, this, true); }; elesfn$1.hasElementWithId = function (id) { id = '' + id; // id must be string return this._private.map.has(id); }; elesfn$1.getElementById = function (id) { id = '' + id; // id must be string var cy = this._private.cy; var entry = this._private.map.get(id); return entry ? entry.ele : new Collection(cy); // get ele or empty collection }; elesfn$1.$id = elesfn$1.getElementById; elesfn$1.poolIndex = function () { var cy = this._private.cy; var eles = cy._private.elements; var id = this[0]._private.data.id; return eles._private.map.get(id).index; }; elesfn$1.indexOf = function (ele) { var id = ele[0]._private.data.id; return this._private.map.get(id).index; }; elesfn$1.indexOfId = function (id) { id = '' + id; // id must be string return this._private.map.get(id).index; }; elesfn$1.json = function (obj) { var ele = this.element(); var cy = this.cy(); if (ele == null && obj) { return this; } // can't set to no eles if (ele == null) { return undefined; } // can't get from no eles var p = ele._private; if (plainObject(obj)) { // set cy.startBatch(); if (obj.data) { ele.data(obj.data); var _data2 = p.data; if (ele.isEdge()) { // source and target are immutable via data() var move = false; var spec = {}; var src = obj.data.source; var tgt = obj.data.target; if (src != null && src != _data2.source) { spec.source = '' + src; // id must be string move = true; } if (tgt != null && tgt != _data2.target) { spec.target = '' + tgt; // id must be string move = true; } if (move) { ele = ele.move(spec); } } else { // parent is immutable via data() var newParentValSpecd = ('parent' in obj.data); var parent = obj.data.parent; if (newParentValSpecd && (parent != null || _data2.parent != null) && parent != _data2.parent) { if (parent === undefined) { // can't set undefined imperatively, so use null parent = null; } if (parent != null) { parent = '' + parent; // id must be string } ele = ele.move({ parent: parent }); } } } if (obj.position) { ele.position(obj.position); } // ignore group -- immutable var checkSwitch = function checkSwitch(k, trueFnName, falseFnName) { var obj_k = obj[k]; if (obj_k != null && obj_k !== p[k]) { if (obj_k) { ele[trueFnName](); } else { ele[falseFnName](); } } }; checkSwitch('removed', 'remove', 'restore'); checkSwitch('selected', 'select', 'unselect'); checkSwitch('selectable', 'selectify', 'unselectify'); checkSwitch('locked', 'lock', 'unlock'); checkSwitch('grabbable', 'grabify', 'ungrabify'); checkSwitch('pannable', 'panify', 'unpanify'); if (obj.classes != null) { ele.classes(obj.classes); } cy.endBatch(); return this; } else if (obj === undefined) { // get var json = { data: copy(p.data), position: copy(p.position), group: p.group, removed: p.removed, selected: p.selected, selectable: p.selectable, locked: p.locked, grabbable: p.grabbable, pannable: p.pannable, classes: null }; json.classes = ''; var i = 0; p.classes.forEach(function (cls) { return json.classes += i++ === 0 ? cls : ' ' + cls; }); return json; } }; elesfn$1.jsons = function () { var jsons = []; for (var i = 0; i < this.length; i++) { var ele = this[i]; var json = ele.json(); jsons.push(json); } return jsons; }; elesfn$1.clone = function () { var cy = this.cy(); var elesArr = []; for (var i = 0; i < this.length; i++) { var ele = this[i]; var json = ele.json(); var clone = new Element(cy, json, false); // NB no restore elesArr.push(clone); } return new Collection(cy, elesArr); }; elesfn$1.copy = elesfn$1.clone; elesfn$1.restore = function () { var notifyRenderer = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true; var addToPool = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; var self = this; var cy = self.cy(); var cy_p = cy._private; // create arrays of nodes and edges, since we need to // restore the nodes first var nodes = []; var edges = []; var elements; for (var _i3 = 0, l = self.length; _i3 < l; _i3++) { var ele = self[_i3]; if (addToPool && !ele.removed()) { // don't need to handle this ele continue; } // keep nodes first in the array and edges after if (ele.isNode()) { // put to front of array if node nodes.push(ele); } else { // put to end of array if edge edges.push(ele); } } elements = nodes.concat(edges); var i; var removeFromElements = function removeFromElements() { elements.splice(i, 1); i--; }; // now, restore each element for (i = 0; i < elements.length; i++) { var _ele2 = elements[i]; var _private = _ele2._private; var _data3 = _private.data; // the traversal cache should start fresh when ele is added _ele2.clearTraversalCache(); // set id and validate if (!addToPool && !_private.removed) ; else if (_data3.id === undefined) { _data3.id = uuid(); } else if (number$1(_data3.id)) { _data3.id = '' + _data3.id; // now it's a string } else if (emptyString(_data3.id) || !string(_data3.id)) { error('Can not create element with invalid string ID `' + _data3.id + '`'); // can't create element if it has empty string as id or non-string id removeFromElements(); continue; } else if (cy.hasElementWithId(_data3.id)) { error('Can not create second element with ID `' + _data3.id + '`'); // can't create element if one already has that id removeFromElements(); continue; } var id = _data3.id; // id is finalised, now let's keep a ref if (_ele2.isNode()) { // extra checks for nodes var pos = _private.position; // make sure the nodes have a defined position if (pos.x == null) { pos.x = 0; } if (pos.y == null) { pos.y = 0; } } if (_ele2.isEdge()) { // extra checks for edges var edge = _ele2; var fields = ['source', 'target']; var fieldsLength = fields.length; var badSourceOrTarget = false; for (var j = 0; j < fieldsLength; j++) { var field = fields[j]; var val = _data3[field]; if (number$1(val)) { val = _data3[field] = '' + _data3[field]; // now string } if (val == null || val === '') { // can't create if source or target is not defined properly error('Can not create edge `' + id + '` with unspecified ' + field); badSourceOrTarget = true; } else if (!cy.hasElementWithId(val)) { // can't create edge if one of its nodes doesn't exist error('Can not create edge `' + id + '` with nonexistant ' + field + ' `' + val + '`'); badSourceOrTarget = true; } } if (badSourceOrTarget) { removeFromElements(); continue; } // can't create this var src = cy.getElementById(_data3.source); var tgt = cy.getElementById(_data3.target); // only one edge in node if loop if (src.same(tgt)) { src._private.edges.push(edge); } else { src._private.edges.push(edge); tgt._private.edges.push(edge); } edge._private.source = src; edge._private.target = tgt; } // if is edge // create mock ids / indexes maps for element so it can be used like collections _private.map = new Map$2(); _private.map.set(id, { ele: _ele2, index: 0 }); _private.removed = false; if (addToPool) { cy.addToPool(_ele2); } } // for each element // do compound node sanity checks for (var _i4 = 0; _i4 < nodes.length; _i4++) { // each node var node = nodes[_i4]; var _data4 = node._private.data; if (number$1(_data4.parent)) { // then automake string _data4.parent = '' + _data4.parent; } var parentId = _data4.parent; var specifiedParent = parentId != null; if (specifiedParent || node._private.parent) { var parent = node._private.parent ? cy.collection().merge(node._private.parent) : cy.getElementById(parentId); if (parent.empty()) { // non-existant parent; just remove it _data4.parent = undefined; } else if (parent[0].removed()) { warn('Node added with missing parent, reference to parent removed'); _data4.parent = undefined; node._private.parent = null; } else { var selfAsParent = false; var ancestor = parent; while (!ancestor.empty()) { if (node.same(ancestor)) { // mark self as parent and remove from data selfAsParent = true; _data4.parent = undefined; // remove parent reference // exit or we loop forever break; } ancestor = ancestor.parent(); } if (!selfAsParent) { // connect with children parent[0]._private.children.push(node); node._private.parent = parent[0]; // let the core know we have a compound graph cy_p.hasCompoundNodes = true; } } // else } // if specified parent } // for each node if (elements.length > 0) { var restored = elements.length === self.length ? self : new Collection(cy, elements); for (var _i5 = 0; _i5 < restored.length; _i5++) { var _ele3 = restored[_i5]; if (_ele3.isNode()) { continue; } // adding an edge invalidates the traversal caches for the parallel edges _ele3.parallelEdges().clearTraversalCache(); // adding an edge invalidates the traversal cache for the connected nodes _ele3.source().clearTraversalCache(); _ele3.target().clearTraversalCache(); } var toUpdateStyle; if (cy_p.hasCompoundNodes) { toUpdateStyle = cy.collection().merge(restored).merge(restored.connectedNodes()).merge(restored.parent()); } else { toUpdateStyle = restored; } toUpdateStyle.dirtyCompoundBoundsCache().dirtyBoundingBoxCache().updateStyle(notifyRenderer); if (notifyRenderer) { restored.emitAndNotify('add'); } else if (addToPool) { restored.emit('add'); } } return self; // chainability }; elesfn$1.removed = function () { var ele = this[0]; return ele && ele._private.removed; }; elesfn$1.inside = function () { var ele = this[0]; return ele && !ele._private.removed; }; elesfn$1.remove = function () { var notifyRenderer = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true; var removeFromPool = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; var self = this; var elesToRemove = []; var elesToRemoveIds = {}; var cy = self._private.cy; // add connected edges function addConnectedEdges(node) { var edges = node._private.edges; for (var i = 0; i < edges.length; i++) { add(edges[i]); } } // add descendant nodes function addChildren(node) { var children = node._private.children; for (var i = 0; i < children.length; i++) { add(children[i]); } } function add(ele) { var alreadyAdded = elesToRemoveIds[ele.id()]; if (removeFromPool && ele.removed() || alreadyAdded) { return; } else { elesToRemoveIds[ele.id()] = true; } if (ele.isNode()) { elesToRemove.push(ele); // nodes are removed last addConnectedEdges(ele); addChildren(ele); } else { elesToRemove.unshift(ele); // edges are removed first } } // make the list of elements to remove // (may be removing more than specified due to connected edges etc) for (var i = 0, l = self.length; i < l; i++) { var ele = self[i]; add(ele); } function removeEdgeRef(node, edge) { var connectedEdges = node._private.edges; removeFromArray(connectedEdges, edge); // removing an edges invalidates the traversal cache for its nodes node.clearTraversalCache(); } function removeParallelRef(pllEdge) { // removing an edge invalidates the traversal caches for the parallel edges pllEdge.clearTraversalCache(); } var alteredParents = []; alteredParents.ids = {}; function removeChildRef(parent, ele) { ele = ele[0]; parent = parent[0]; var children = parent._private.children; var pid = parent.id(); removeFromArray(children, ele); // remove parent => child ref ele._private.parent = null; // remove child => parent ref if (!alteredParents.ids[pid]) { alteredParents.ids[pid] = true; alteredParents.push(parent); } } self.dirtyCompoundBoundsCache(); if (removeFromPool) { cy.removeFromPool(elesToRemove); // remove from core pool } for (var _i6 = 0; _i6 < elesToRemove.length; _i6++) { var _ele4 = elesToRemove[_i6]; if (_ele4.isEdge()) { // remove references to this edge in its connected nodes var src = _ele4.source()[0]; var tgt = _ele4.target()[0]; removeEdgeRef(src, _ele4); removeEdgeRef(tgt, _ele4); var pllEdges = _ele4.parallelEdges(); for (var j = 0; j < pllEdges.length; j++) { var pllEdge = pllEdges[j]; removeParallelRef(pllEdge); if (pllEdge.isBundledBezier()) { pllEdge.dirtyBoundingBoxCache(); } } } else { // remove reference to parent var parent = _ele4.parent(); if (parent.length !== 0) { removeChildRef(parent, _ele4); } } if (removeFromPool) { // mark as removed _ele4._private.removed = true; } } // check to see if we have a compound graph or not var elesStillInside = cy._private.elements; cy._private.hasCompoundNodes = false; for (var _i7 = 0; _i7 < elesStillInside.length; _i7++) { var _ele5 = elesStillInside[_i7]; if (_ele5.isParent()) { cy._private.hasCompoundNodes = true; break; } } var removedElements = new Collection(this.cy(), elesToRemove); if (removedElements.size() > 0) { // must manually notify since trigger won't do this automatically once removed if (notifyRenderer) { removedElements.emitAndNotify('remove'); } else if (removeFromPool) { removedElements.emit('remove'); } } // the parents who were modified by the removal need their style updated for (var _i8 = 0; _i8 < alteredParents.length; _i8++) { var _ele6 = alteredParents[_i8]; if (!removeFromPool || !_ele6.removed()) { _ele6.updateStyle(); } } return removedElements; }; elesfn$1.move = function (struct) { var cy = this._private.cy; var eles = this; // just clean up refs, caches, etc. in the same way as when removing and then restoring // (our calls to remove/restore do not remove from the graph or make events) var notifyRenderer = false; var modifyPool = false; var toString = function toString(id) { return id == null ? id : '' + id; }; // id must be string if (struct.source !== undefined || struct.target !== undefined) { var srcId = toString(struct.source); var tgtId = toString(struct.target); var srcExists = srcId != null && cy.hasElementWithId(srcId); var tgtExists = tgtId != null && cy.hasElementWithId(tgtId); if (srcExists || tgtExists) { cy.batch(function () { // avoid duplicate style updates eles.remove(notifyRenderer, modifyPool); // clean up refs etc. eles.emitAndNotify('moveout'); for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var _data5 = ele._private.data; if (ele.isEdge()) { if (srcExists) { _data5.source = srcId; } if (tgtExists) { _data5.target = tgtId; } } } eles.restore(notifyRenderer, modifyPool); // make new refs, style, etc. }); eles.emitAndNotify('move'); } } else if (struct.parent !== undefined) { // move node to new parent var parentId = toString(struct.parent); var parentExists = parentId === null || cy.hasElementWithId(parentId); if (parentExists) { var pidToAssign = parentId === null ? undefined : parentId; cy.batch(function () { // avoid duplicate style updates var updated = eles.remove(notifyRenderer, modifyPool); // clean up refs etc. updated.emitAndNotify('moveout'); for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var _data6 = ele._private.data; if (ele.isNode()) { _data6.parent = pidToAssign; } } updated.restore(notifyRenderer, modifyPool); // make new refs, style, etc. }); eles.emitAndNotify('move'); } } return this; }; [elesfn$j, elesfn$i, elesfn$h, elesfn$g, elesfn$f, data, elesfn$d, dimensions, elesfn$9, elesfn$8, elesfn$7, elesfn$6, elesfn$5, elesfn$4, elesfn$3, elesfn$2].forEach(function (props) { extend(elesfn$1, props); }); var corefn$9 = { add: function add(opts) { var elements; var cy = this; // add the elements if (elementOrCollection(opts)) { var eles = opts; if (eles._private.cy === cy) { // same instance => just restore elements = eles.restore(); } else { // otherwise, copy from json var jsons = []; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; jsons.push(ele.json()); } elements = new Collection(cy, jsons); } } // specify an array of options else if (array(opts)) { var _jsons = opts; elements = new Collection(cy, _jsons); } // specify via opts.nodes and opts.edges else if (plainObject(opts) && (array(opts.nodes) || array(opts.edges))) { var elesByGroup = opts; var _jsons2 = []; var grs = ['nodes', 'edges']; for (var _i = 0, il = grs.length; _i < il; _i++) { var group = grs[_i]; var elesArray = elesByGroup[group]; if (array(elesArray)) { for (var j = 0, jl = elesArray.length; j < jl; j++) { var json = extend({ group: group }, elesArray[j]); _jsons2.push(json); } } } elements = new Collection(cy, _jsons2); } // specify options for one element else { var _json = opts; elements = new Element(cy, _json).collection(); } return elements; }, remove: function remove(collection) { if (elementOrCollection(collection)) ; else if (string(collection)) { var selector = collection; collection = this.$(selector); } return collection.remove(); } }; /* global Float32Array */ /*! Bezier curve function generator. Copyright Gaetan Renaudeau. MIT License: http://en.wikipedia.org/wiki/MIT_License */ function generateCubicBezier(mX1, mY1, mX2, mY2) { var NEWTON_ITERATIONS = 4, NEWTON_MIN_SLOPE = 0.001, SUBDIVISION_PRECISION = 0.0000001, SUBDIVISION_MAX_ITERATIONS = 10, kSplineTableSize = 11, kSampleStepSize = 1.0 / (kSplineTableSize - 1.0), float32ArraySupported = typeof Float32Array !== 'undefined'; /* Must contain four arguments. */ if (arguments.length !== 4) { return false; } /* Arguments must be numbers. */ for (var i = 0; i < 4; ++i) { if (typeof arguments[i] !== "number" || isNaN(arguments[i]) || !isFinite(arguments[i])) { return false; } } /* X values must be in the [0, 1] range. */ mX1 = Math.min(mX1, 1); mX2 = Math.min(mX2, 1); mX1 = Math.max(mX1, 0); mX2 = Math.max(mX2, 0); var mSampleValues = float32ArraySupported ? new Float32Array(kSplineTableSize) : new Array(kSplineTableSize); function A(aA1, aA2) { return 1.0 - 3.0 * aA2 + 3.0 * aA1; } function B(aA1, aA2) { return 3.0 * aA2 - 6.0 * aA1; } function C(aA1) { return 3.0 * aA1; } function calcBezier(aT, aA1, aA2) { return ((A(aA1, aA2) * aT + B(aA1, aA2)) * aT + C(aA1)) * aT; } function getSlope(aT, aA1, aA2) { return 3.0 * A(aA1, aA2) * aT * aT + 2.0 * B(aA1, aA2) * aT + C(aA1); } function newtonRaphsonIterate(aX, aGuessT) { for (var _i = 0; _i < NEWTON_ITERATIONS; ++_i) { var currentSlope = getSlope(aGuessT, mX1, mX2); if (currentSlope === 0.0) { return aGuessT; } var currentX = calcBezier(aGuessT, mX1, mX2) - aX; aGuessT -= currentX / currentSlope; } return aGuessT; } function calcSampleValues() { for (var _i2 = 0; _i2 < kSplineTableSize; ++_i2) { mSampleValues[_i2] = calcBezier(_i2 * kSampleStepSize, mX1, mX2); } } function binarySubdivide(aX, aA, aB) { var currentX, currentT, i = 0; do { currentT = aA + (aB - aA) / 2.0; currentX = calcBezier(currentT, mX1, mX2) - aX; if (currentX > 0.0) { aB = currentT; } else { aA = currentT; } } while (Math.abs(currentX) > SUBDIVISION_PRECISION && ++i < SUBDIVISION_MAX_ITERATIONS); return currentT; } function getTForX(aX) { var intervalStart = 0.0, currentSample = 1, lastSample = kSplineTableSize - 1; for (; currentSample !== lastSample && mSampleValues[currentSample] <= aX; ++currentSample) { intervalStart += kSampleStepSize; } --currentSample; var dist = (aX - mSampleValues[currentSample]) / (mSampleValues[currentSample + 1] - mSampleValues[currentSample]), guessForT = intervalStart + dist * kSampleStepSize, initialSlope = getSlope(guessForT, mX1, mX2); if (initialSlope >= NEWTON_MIN_SLOPE) { return newtonRaphsonIterate(aX, guessForT); } else if (initialSlope === 0.0) { return guessForT; } else { return binarySubdivide(aX, intervalStart, intervalStart + kSampleStepSize); } } var _precomputed = false; function precompute() { _precomputed = true; if (mX1 !== mY1 || mX2 !== mY2) { calcSampleValues(); } } var f = function f(aX) { if (!_precomputed) { precompute(); } if (mX1 === mY1 && mX2 === mY2) { return aX; } if (aX === 0) { return 0; } if (aX === 1) { return 1; } return calcBezier(getTForX(aX), mY1, mY2); }; f.getControlPoints = function () { return [{ x: mX1, y: mY1 }, { x: mX2, y: mY2 }]; }; var str = "generateBezier(" + [mX1, mY1, mX2, mY2] + ")"; f.toString = function () { return str; }; return f; } /*! Runge-Kutta spring physics function generator. Adapted from Framer.js, copyright Koen Bok. MIT License: http://en.wikipedia.org/wiki/MIT_License */ /* Given a tension, friction, and duration, a simulation at 60FPS will first run without a defined duration in order to calculate the full path. A second pass then adjusts the time delta -- using the relation between actual time and duration -- to calculate the path for the duration-constrained animation. */ var generateSpringRK4 = function () { function springAccelerationForState(state) { return -state.tension * state.x - state.friction * state.v; } function springEvaluateStateWithDerivative(initialState, dt, derivative) { var state = { x: initialState.x + derivative.dx * dt, v: initialState.v + derivative.dv * dt, tension: initialState.tension, friction: initialState.friction }; return { dx: state.v, dv: springAccelerationForState(state) }; } function springIntegrateState(state, dt) { var a = { dx: state.v, dv: springAccelerationForState(state) }, b = springEvaluateStateWithDerivative(state, dt * 0.5, a), c = springEvaluateStateWithDerivative(state, dt * 0.5, b), d = springEvaluateStateWithDerivative(state, dt, c), dxdt = 1.0 / 6.0 * (a.dx + 2.0 * (b.dx + c.dx) + d.dx), dvdt = 1.0 / 6.0 * (a.dv + 2.0 * (b.dv + c.dv) + d.dv); state.x = state.x + dxdt * dt; state.v = state.v + dvdt * dt; return state; } return function springRK4Factory(tension, friction, duration) { var initState = { x: -1, v: 0, tension: null, friction: null }, path = [0], time_lapsed = 0, tolerance = 1 / 10000, DT = 16 / 1000, have_duration, dt, last_state; tension = parseFloat(tension) || 500; friction = parseFloat(friction) || 20; duration = duration || null; initState.tension = tension; initState.friction = friction; have_duration = duration !== null; /* Calculate the actual time it takes for this animation to complete with the provided conditions. */ if (have_duration) { /* Run the simulation without a duration. */ time_lapsed = springRK4Factory(tension, friction); /* Compute the adjusted time delta. */ dt = time_lapsed / duration * DT; } else { dt = DT; } for (;;) { /* Next/step function .*/ last_state = springIntegrateState(last_state || initState, dt); /* Store the position. */ path.push(1 + last_state.x); time_lapsed += 16; /* If the change threshold is reached, break. */ if (!(Math.abs(last_state.x) > tolerance && Math.abs(last_state.v) > tolerance)) { break; } } /* If duration is not defined, return the actual time required for completing this animation. Otherwise, return a closure that holds the computed path and returns a snapshot of the position according to a given percentComplete. */ return !have_duration ? time_lapsed : function (percentComplete) { return path[percentComplete * (path.length - 1) | 0]; }; }; }(); var cubicBezier = function cubicBezier(t1, p1, t2, p2) { var bezier = generateCubicBezier(t1, p1, t2, p2); return function (start, end, percent) { return start + (end - start) * bezier(percent); }; }; var easings = { 'linear': function linear(start, end, percent) { return start + (end - start) * percent; }, // default easings 'ease': cubicBezier(0.25, 0.1, 0.25, 1), 'ease-in': cubicBezier(0.42, 0, 1, 1), 'ease-out': cubicBezier(0, 0, 0.58, 1), 'ease-in-out': cubicBezier(0.42, 0, 0.58, 1), // sine 'ease-in-sine': cubicBezier(0.47, 0, 0.745, 0.715), 'ease-out-sine': cubicBezier(0.39, 0.575, 0.565, 1), 'ease-in-out-sine': cubicBezier(0.445, 0.05, 0.55, 0.95), // quad 'ease-in-quad': cubicBezier(0.55, 0.085, 0.68, 0.53), 'ease-out-quad': cubicBezier(0.25, 0.46, 0.45, 0.94), 'ease-in-out-quad': cubicBezier(0.455, 0.03, 0.515, 0.955), // cubic 'ease-in-cubic': cubicBezier(0.55, 0.055, 0.675, 0.19), 'ease-out-cubic': cubicBezier(0.215, 0.61, 0.355, 1), 'ease-in-out-cubic': cubicBezier(0.645, 0.045, 0.355, 1), // quart 'ease-in-quart': cubicBezier(0.895, 0.03, 0.685, 0.22), 'ease-out-quart': cubicBezier(0.165, 0.84, 0.44, 1), 'ease-in-out-quart': cubicBezier(0.77, 0, 0.175, 1), // quint 'ease-in-quint': cubicBezier(0.755, 0.05, 0.855, 0.06), 'ease-out-quint': cubicBezier(0.23, 1, 0.32, 1), 'ease-in-out-quint': cubicBezier(0.86, 0, 0.07, 1), // expo 'ease-in-expo': cubicBezier(0.95, 0.05, 0.795, 0.035), 'ease-out-expo': cubicBezier(0.19, 1, 0.22, 1), 'ease-in-out-expo': cubicBezier(1, 0, 0, 1), // circ 'ease-in-circ': cubicBezier(0.6, 0.04, 0.98, 0.335), 'ease-out-circ': cubicBezier(0.075, 0.82, 0.165, 1), 'ease-in-out-circ': cubicBezier(0.785, 0.135, 0.15, 0.86), // user param easings... 'spring': function spring(tension, friction, duration) { if (duration === 0) { // can't get a spring w/ duration 0 return easings.linear; // duration 0 => jump to end so impl doesn't matter } var spring = generateSpringRK4(tension, friction, duration); return function (start, end, percent) { return start + (end - start) * spring(percent); }; }, 'cubic-bezier': cubicBezier }; function getEasedValue(type, start, end, percent, easingFn) { if (percent === 1) { return end; } if (start === end) { return end; } var val = easingFn(start, end, percent); if (type == null) { return val; } if (type.roundValue || type.color) { val = Math.round(val); } if (type.min !== undefined) { val = Math.max(val, type.min); } if (type.max !== undefined) { val = Math.min(val, type.max); } return val; } function getValue(prop, spec) { if (prop.pfValue != null || prop.value != null) { if (prop.pfValue != null && (spec == null || spec.type.units !== '%')) { return prop.pfValue; } else { return prop.value; } } else { return prop; } } function ease(startProp, endProp, percent, easingFn, propSpec) { var type = propSpec != null ? propSpec.type : null; if (percent < 0) { percent = 0; } else if (percent > 1) { percent = 1; } var start = getValue(startProp, propSpec); var end = getValue(endProp, propSpec); if (number$1(start) && number$1(end)) { return getEasedValue(type, start, end, percent, easingFn); } else if (array(start) && array(end)) { var easedArr = []; for (var i = 0; i < end.length; i++) { var si = start[i]; var ei = end[i]; if (si != null && ei != null) { var val = getEasedValue(type, si, ei, percent, easingFn); easedArr.push(val); } else { easedArr.push(ei); } } return easedArr; } return undefined; } function step$1(self, ani, now, isCore) { var isEles = !isCore; var _p = self._private; var ani_p = ani._private; var pEasing = ani_p.easing; var startTime = ani_p.startTime; var cy = isCore ? self : self.cy(); var style = cy.style(); if (!ani_p.easingImpl) { if (pEasing == null) { // use default ani_p.easingImpl = easings['linear']; } else { // then define w/ name var easingVals; if (string(pEasing)) { var easingProp = style.parse('transition-timing-function', pEasing); easingVals = easingProp.value; } else { // then assume preparsed array easingVals = pEasing; } var name, args; if (string(easingVals)) { name = easingVals; args = []; } else { name = easingVals[1]; args = easingVals.slice(2).map(function (n) { return +n; }); } if (args.length > 0) { // create with args if (name === 'spring') { args.push(ani_p.duration); // need duration to generate spring } ani_p.easingImpl = easings[name].apply(null, args); } else { // static impl by name ani_p.easingImpl = easings[name]; } } } var easing = ani_p.easingImpl; var percent; if (ani_p.duration === 0) { percent = 1; } else { percent = (now - startTime) / ani_p.duration; } if (ani_p.applying) { percent = ani_p.progress; } if (percent < 0) { percent = 0; } else if (percent > 1) { percent = 1; } if (ani_p.delay == null) { // then update var startPos = ani_p.startPosition; var endPos = ani_p.position; if (endPos && isEles && !self.locked()) { var newPos = {}; if (valid(startPos.x, endPos.x)) { newPos.x = ease(startPos.x, endPos.x, percent, easing); } if (valid(startPos.y, endPos.y)) { newPos.y = ease(startPos.y, endPos.y, percent, easing); } self.position(newPos); } var startPan = ani_p.startPan; var endPan = ani_p.pan; var pan = _p.pan; var animatingPan = endPan != null && isCore; if (animatingPan) { if (valid(startPan.x, endPan.x)) { pan.x = ease(startPan.x, endPan.x, percent, easing); } if (valid(startPan.y, endPan.y)) { pan.y = ease(startPan.y, endPan.y, percent, easing); } self.emit('pan'); } var startZoom = ani_p.startZoom; var endZoom = ani_p.zoom; var animatingZoom = endZoom != null && isCore; if (animatingZoom) { if (valid(startZoom, endZoom)) { _p.zoom = bound(_p.minZoom, ease(startZoom, endZoom, percent, easing), _p.maxZoom); } self.emit('zoom'); } if (animatingPan || animatingZoom) { self.emit('viewport'); } var props = ani_p.style; if (props && props.length > 0 && isEles) { for (var i = 0; i < props.length; i++) { var prop = props[i]; var _name = prop.name; var end = prop; var start = ani_p.startStyle[_name]; var propSpec = style.properties[start.name]; var easedVal = ease(start, end, percent, easing, propSpec); style.overrideBypass(self, _name, easedVal); } // for props self.emit('style'); } // if } ani_p.progress = percent; return percent; } function valid(start, end) { if (start == null || end == null) { return false; } if (number$1(start) && number$1(end)) { return true; } else if (start && end) { return true; } return false; } function startAnimation(self, ani, now, isCore) { var ani_p = ani._private; ani_p.started = true; ani_p.startTime = now - ani_p.progress * ani_p.duration; } function stepAll(now, cy) { var eles = cy._private.aniEles; var doneEles = []; function stepOne(ele, isCore) { var _p = ele._private; var current = _p.animation.current; var queue = _p.animation.queue; var ranAnis = false; // if nothing currently animating, get something from the queue if (current.length === 0) { var next = queue.shift(); if (next) { current.push(next); } } var callbacks = function callbacks(_callbacks) { for (var j = _callbacks.length - 1; j >= 0; j--) { var cb = _callbacks[j]; cb(); } _callbacks.splice(0, _callbacks.length); }; // step and remove if done for (var i = current.length - 1; i >= 0; i--) { var ani = current[i]; var ani_p = ani._private; if (ani_p.stopped) { current.splice(i, 1); ani_p.hooked = false; ani_p.playing = false; ani_p.started = false; callbacks(ani_p.frames); continue; } if (!ani_p.playing && !ani_p.applying) { continue; } // an apply() while playing shouldn't do anything if (ani_p.playing && ani_p.applying) { ani_p.applying = false; } if (!ani_p.started) { startAnimation(ele, ani, now); } step$1(ele, ani, now, isCore); if (ani_p.applying) { ani_p.applying = false; } callbacks(ani_p.frames); if (ani_p.step != null) { ani_p.step(now); } if (ani.completed()) { current.splice(i, 1); ani_p.hooked = false; ani_p.playing = false; ani_p.started = false; callbacks(ani_p.completes); } ranAnis = true; } if (!isCore && current.length === 0 && queue.length === 0) { doneEles.push(ele); } return ranAnis; } // stepElement // handle all eles var ranEleAni = false; for (var e = 0; e < eles.length; e++) { var ele = eles[e]; var handledThisEle = stepOne(ele); ranEleAni = ranEleAni || handledThisEle; } // each element var ranCoreAni = stepOne(cy, true); // notify renderer if (ranEleAni || ranCoreAni) { if (eles.length > 0) { cy.notify('draw', eles); } else { cy.notify('draw'); } } // remove elements from list of currently animating if its queues are empty eles.unmerge(doneEles); cy.emit('step'); } // stepAll var corefn$8 = { // pull in animation functions animate: define.animate(), animation: define.animation(), animated: define.animated(), clearQueue: define.clearQueue(), delay: define.delay(), delayAnimation: define.delayAnimation(), stop: define.stop(), addToAnimationPool: function addToAnimationPool(eles) { var cy = this; if (!cy.styleEnabled()) { return; } // save cycles when no style used cy._private.aniEles.merge(eles); }, stopAnimationLoop: function stopAnimationLoop() { this._private.animationsRunning = false; }, startAnimationLoop: function startAnimationLoop() { var cy = this; cy._private.animationsRunning = true; if (!cy.styleEnabled()) { return; } // save cycles when no style used // NB the animation loop will exec in headless environments if style enabled // and explicit cy.destroy() is necessary to stop the loop function headlessStep() { if (!cy._private.animationsRunning) { return; } requestAnimationFrame(function animationStep(now) { stepAll(now, cy); headlessStep(); }); } var renderer = cy.renderer(); if (renderer && renderer.beforeRender) { // let the renderer schedule animations renderer.beforeRender(function rendererAnimationStep(willDraw, now) { stepAll(now, cy); }, renderer.beforeRenderPriorities.animations); } else { // manage the animation loop ourselves headlessStep(); // first call } } }; var emitterOptions = { qualifierCompare: function qualifierCompare(selector1, selector2) { if (selector1 == null || selector2 == null) { return selector1 == null && selector2 == null; } else { return selector1.sameText(selector2); } }, eventMatches: function eventMatches(cy, listener, eventObj) { var selector = listener.qualifier; if (selector != null) { return cy !== eventObj.target && element(eventObj.target) && selector.matches(eventObj.target); } return true; }, addEventFields: function addEventFields(cy, evt) { evt.cy = cy; evt.target = cy; }, callbackContext: function callbackContext(cy, listener, eventObj) { return listener.qualifier != null ? eventObj.target : cy; } }; var argSelector = function argSelector(arg) { if (string(arg)) { return new Selector(arg); } else { return arg; } }; var elesfn = { createEmitter: function createEmitter() { var _p = this._private; if (!_p.emitter) { _p.emitter = new Emitter(emitterOptions, this); } return this; }, emitter: function emitter() { return this._private.emitter; }, on: function on(events, selector, callback) { this.emitter().on(events, argSelector(selector), callback); return this; }, removeListener: function removeListener(events, selector, callback) { this.emitter().removeListener(events, argSelector(selector), callback); return this; }, removeAllListeners: function removeAllListeners() { this.emitter().removeAllListeners(); return this; }, one: function one(events, selector, callback) { this.emitter().one(events, argSelector(selector), callback); return this; }, once: function once(events, selector, callback) { this.emitter().one(events, argSelector(selector), callback); return this; }, emit: function emit(events, extraParams) { this.emitter().emit(events, extraParams); return this; }, emitAndNotify: function emitAndNotify(event, eles) { this.emit(event); this.notify(event, eles); return this; } }; define.eventAliasesOn(elesfn); var corefn$7 = { png: function png(options) { var renderer = this._private.renderer; options = options || {}; return renderer.png(options); }, jpg: function jpg(options) { var renderer = this._private.renderer; options = options || {}; options.bg = options.bg || '#fff'; return renderer.jpg(options); } }; corefn$7.jpeg = corefn$7.jpg; var corefn$6 = { layout: function layout(options) { var cy = this; if (options == null) { error('Layout options must be specified to make a layout'); return; } if (options.name == null) { error('A `name` must be specified to make a layout'); return; } var name = options.name; var Layout = cy.extension('layout', name); if (Layout == null) { error('No such layout `' + name + '` found. Did you forget to import it and `cytoscape.use()` it?'); return; } var eles; if (string(options.eles)) { eles = cy.$(options.eles); } else { eles = options.eles != null ? options.eles : cy.$(); } var layout = new Layout(extend({}, options, { cy: cy, eles: eles })); return layout; } }; corefn$6.createLayout = corefn$6.makeLayout = corefn$6.layout; var corefn$5 = { notify: function notify(eventName, eventEles) { var _p = this._private; if (this.batching()) { _p.batchNotifications = _p.batchNotifications || {}; var eles = _p.batchNotifications[eventName] = _p.batchNotifications[eventName] || this.collection(); if (eventEles != null) { eles.merge(eventEles); } return; // notifications are disabled during batching } if (!_p.notificationsEnabled) { return; } // exit on disabled var renderer = this.renderer(); // exit if destroy() called on core or renderer in between frames #1499 #1528 if (this.destroyed() || !renderer) { return; } renderer.notify(eventName, eventEles); }, notifications: function notifications(bool) { var p = this._private; if (bool === undefined) { return p.notificationsEnabled; } else { p.notificationsEnabled = bool ? true : false; } return this; }, noNotifications: function noNotifications(callback) { this.notifications(false); callback(); this.notifications(true); }, batching: function batching() { return this._private.batchCount > 0; }, startBatch: function startBatch() { var _p = this._private; if (_p.batchCount == null) { _p.batchCount = 0; } if (_p.batchCount === 0) { _p.batchStyleEles = this.collection(); _p.batchNotifications = {}; } _p.batchCount++; return this; }, endBatch: function endBatch() { var _p = this._private; if (_p.batchCount === 0) { return this; } _p.batchCount--; if (_p.batchCount === 0) { // update style for dirty eles _p.batchStyleEles.updateStyle(); var renderer = this.renderer(); // notify the renderer of queued eles and event types Object.keys(_p.batchNotifications).forEach(function (eventName) { var eles = _p.batchNotifications[eventName]; if (eles.empty()) { renderer.notify(eventName); } else { renderer.notify(eventName, eles); } }); } return this; }, batch: function batch(callback) { this.startBatch(); callback(); this.endBatch(); return this; }, // for backwards compatibility batchData: function batchData(map) { var cy = this; return this.batch(function () { var ids = Object.keys(map); for (var i = 0; i < ids.length; i++) { var id = ids[i]; var data = map[id]; var ele = cy.getElementById(id); ele.data(data); } }); } }; var rendererDefaults = defaults$g({ hideEdgesOnViewport: false, textureOnViewport: false, motionBlur: false, motionBlurOpacity: 0.05, pixelRatio: undefined, desktopTapThreshold: 4, touchTapThreshold: 8, wheelSensitivity: 1, debug: false, showFps: false }); var corefn$4 = { renderTo: function renderTo(context, zoom, pan, pxRatio) { var r = this._private.renderer; r.renderTo(context, zoom, pan, pxRatio); return this; }, renderer: function renderer() { return this._private.renderer; }, forceRender: function forceRender() { this.notify('draw'); return this; }, resize: function resize() { this.invalidateSize(); this.emitAndNotify('resize'); return this; }, initRenderer: function initRenderer(options) { var cy = this; var RendererProto = cy.extension('renderer', options.name); if (RendererProto == null) { error("Can not initialise: No such renderer `".concat(options.name, "` found. Did you forget to import it and `cytoscape.use()` it?")); return; } if (options.wheelSensitivity !== undefined) { warn("You have set a custom wheel sensitivity. This will make your app zoom unnaturally when using mainstream mice. You should change this value from the default only if you can guarantee that all your users will use the same hardware and OS configuration as your current machine."); } var rOpts = rendererDefaults(options); rOpts.cy = cy; cy._private.renderer = new RendererProto(rOpts); this.notify('init'); }, destroyRenderer: function destroyRenderer() { var cy = this; cy.notify('destroy'); // destroy the renderer var domEle = cy.container(); if (domEle) { domEle._cyreg = null; while (domEle.childNodes.length > 0) { domEle.removeChild(domEle.childNodes[0]); } } cy._private.renderer = null; // to be extra safe, remove the ref cy.mutableElements().forEach(function (ele) { var _p = ele._private; _p.rscratch = {}; _p.rstyle = {}; _p.animation.current = []; _p.animation.queue = []; }); }, onRender: function onRender(fn) { return this.on('render', fn); }, offRender: function offRender(fn) { return this.off('render', fn); } }; corefn$4.invalidateDimensions = corefn$4.resize; var corefn$3 = { // get a collection // - empty collection on no args // - collection of elements in the graph on selector arg // - guarantee a returned collection when elements or collection specified collection: function collection(eles, opts) { if (string(eles)) { return this.$(eles); } else if (elementOrCollection(eles)) { return eles.collection(); } else if (array(eles)) { if (!opts) { opts = {}; } return new Collection(this, eles, opts.unique, opts.removed); } return new Collection(this); }, nodes: function nodes(selector) { var nodes = this.$(function (ele) { return ele.isNode(); }); if (selector) { return nodes.filter(selector); } return nodes; }, edges: function edges(selector) { var edges = this.$(function (ele) { return ele.isEdge(); }); if (selector) { return edges.filter(selector); } return edges; }, // search the graph like jQuery $: function $(selector) { var eles = this._private.elements; if (selector) { return eles.filter(selector); } else { return eles.spawnSelf(); } }, mutableElements: function mutableElements() { return this._private.elements; } }; // aliases corefn$3.elements = corefn$3.filter = corefn$3.$; var styfn$8 = {}; // keys for style blocks, e.g. ttfftt var TRUE = 't'; var FALSE = 'f'; // (potentially expensive calculation) // apply the style to the element based on // - its bypass // - what selectors match it styfn$8.apply = function (eles) { var self = this; var _p = self._private; var cy = _p.cy; var updatedEles = cy.collection(); for (var ie = 0; ie < eles.length; ie++) { var ele = eles[ie]; var cxtMeta = self.getContextMeta(ele); if (cxtMeta.empty) { continue; } var cxtStyle = self.getContextStyle(cxtMeta); var app = self.applyContextStyle(cxtMeta, cxtStyle, ele); if (ele._private.appliedInitStyle) { self.updateTransitions(ele, app.diffProps); } else { ele._private.appliedInitStyle = true; } var hintsDiff = self.updateStyleHints(ele); if (hintsDiff) { updatedEles.push(ele); } } // for elements return updatedEles; }; styfn$8.getPropertiesDiff = function (oldCxtKey, newCxtKey) { var self = this; var cache = self._private.propDiffs = self._private.propDiffs || {}; var dualCxtKey = oldCxtKey + '-' + newCxtKey; var cachedVal = cache[dualCxtKey]; if (cachedVal) { return cachedVal; } var diffProps = []; var addedProp = {}; for (var i = 0; i < self.length; i++) { var cxt = self[i]; var oldHasCxt = oldCxtKey[i] === TRUE; var newHasCxt = newCxtKey[i] === TRUE; var cxtHasDiffed = oldHasCxt !== newHasCxt; var cxtHasMappedProps = cxt.mappedProperties.length > 0; if (cxtHasDiffed || newHasCxt && cxtHasMappedProps) { var props = void 0; if (cxtHasDiffed && cxtHasMappedProps) { props = cxt.properties; // suffices b/c mappedProperties is a subset of properties } else if (cxtHasDiffed) { props = cxt.properties; // need to check them all } else if (cxtHasMappedProps) { props = cxt.mappedProperties; // only need to check mapped } for (var j = 0; j < props.length; j++) { var prop = props[j]; var name = prop.name; // if a later context overrides this property, then the fact that this context has switched/diffed doesn't matter // (semi expensive check since it makes this function O(n^2) on context length, but worth it since overall result // is cached) var laterCxtOverrides = false; for (var k = i + 1; k < self.length; k++) { var laterCxt = self[k]; var hasLaterCxt = newCxtKey[k] === TRUE; if (!hasLaterCxt) { continue; } // can't override unless the context is active laterCxtOverrides = laterCxt.properties[prop.name] != null; if (laterCxtOverrides) { break; } // exit early as long as one later context overrides } if (!addedProp[name] && !laterCxtOverrides) { addedProp[name] = true; diffProps.push(name); } } // for props } // if } // for contexts cache[dualCxtKey] = diffProps; return diffProps; }; styfn$8.getContextMeta = function (ele) { var self = this; var cxtKey = ''; var diffProps; var prevKey = ele._private.styleCxtKey || ''; // get the cxt key for (var i = 0; i < self.length; i++) { var context = self[i]; var contextSelectorMatches = context.selector && context.selector.matches(ele); // NB: context.selector may be null for 'core' if (contextSelectorMatches) { cxtKey += TRUE; } else { cxtKey += FALSE; } } // for context diffProps = self.getPropertiesDiff(prevKey, cxtKey); ele._private.styleCxtKey = cxtKey; return { key: cxtKey, diffPropNames: diffProps, empty: diffProps.length === 0 }; }; // gets a computed ele style object based on matched contexts styfn$8.getContextStyle = function (cxtMeta) { var cxtKey = cxtMeta.key; var self = this; var cxtStyles = this._private.contextStyles = this._private.contextStyles || {}; // if already computed style, returned cached copy if (cxtStyles[cxtKey]) { return cxtStyles[cxtKey]; } var style = { _private: { key: cxtKey } }; for (var i = 0; i < self.length; i++) { var cxt = self[i]; var hasCxt = cxtKey[i] === TRUE; if (!hasCxt) { continue; } for (var j = 0; j < cxt.properties.length; j++) { var prop = cxt.properties[j]; style[prop.name] = prop; } } cxtStyles[cxtKey] = style; return style; }; styfn$8.applyContextStyle = function (cxtMeta, cxtStyle, ele) { var self = this; var diffProps = cxtMeta.diffPropNames; var retDiffProps = {}; var types = self.types; for (var i = 0; i < diffProps.length; i++) { var diffPropName = diffProps[i]; var cxtProp = cxtStyle[diffPropName]; var eleProp = ele.pstyle(diffPropName); if (!cxtProp) { // no context prop means delete if (!eleProp) { continue; // no existing prop means nothing needs to be removed // nb affects initial application on mapped values like control-point-distances } else if (eleProp.bypass) { cxtProp = { name: diffPropName, deleteBypassed: true }; } else { cxtProp = { name: diffPropName, "delete": true }; } } // save cycles when the context prop doesn't need to be applied if (eleProp === cxtProp) { continue; } // save cycles when a mapped context prop doesn't need to be applied if (cxtProp.mapped === types.fn // context prop is function mapper && eleProp != null // some props can be null even by default (e.g. a prop that overrides another one) && eleProp.mapping != null // ele prop is a concrete value from from a mapper && eleProp.mapping.value === cxtProp.value // the current prop on the ele is a flat prop value for the function mapper ) { // NB don't write to cxtProp, as it's shared among eles (stored in stylesheet) var mapping = eleProp.mapping; // can write to mapping, as it's a per-ele copy var fnValue = mapping.fnValue = cxtProp.value(ele); // temporarily cache the value in case of a miss if (fnValue === mapping.prevFnValue) { continue; } } var retDiffProp = retDiffProps[diffPropName] = { prev: eleProp }; self.applyParsedProperty(ele, cxtProp); retDiffProp.next = ele.pstyle(diffPropName); if (retDiffProp.next && retDiffProp.next.bypass) { retDiffProp.next = retDiffProp.next.bypassed; } } return { diffProps: retDiffProps }; }; styfn$8.updateStyleHints = function (ele) { var _p = ele._private; var self = this; var propNames = self.propertyGroupNames; var propGrKeys = self.propertyGroupKeys; var propHash = function propHash(ele, propNames, seedKey) { return self.getPropertiesHash(ele, propNames, seedKey); }; var oldStyleKey = _p.styleKey; if (ele.removed()) { return false; } var isNode = _p.group === 'nodes'; // get the style key hashes per prop group // but lazily -- only use non-default prop values to reduce the number of hashes // var overriddenStyles = ele._private.style; propNames = Object.keys(overriddenStyles); for (var i = 0; i < propGrKeys.length; i++) { var grKey = propGrKeys[i]; _p.styleKeys[grKey] = [DEFAULT_HASH_SEED, DEFAULT_HASH_SEED_ALT]; } var updateGrKey1 = function updateGrKey1(val, grKey) { return _p.styleKeys[grKey][0] = hashInt(val, _p.styleKeys[grKey][0]); }; var updateGrKey2 = function updateGrKey2(val, grKey) { return _p.styleKeys[grKey][1] = hashIntAlt(val, _p.styleKeys[grKey][1]); }; var updateGrKey = function updateGrKey(val, grKey) { updateGrKey1(val, grKey); updateGrKey2(val, grKey); }; var updateGrKeyWStr = function updateGrKeyWStr(strVal, grKey) { for (var j = 0; j < strVal.length; j++) { var ch = strVal.charCodeAt(j); updateGrKey1(ch, grKey); updateGrKey2(ch, grKey); } }; // - hashing works on 32 bit ints b/c we use bitwise ops // - small numbers get cut off (e.g. 0.123 is seen as 0 by the hashing function) // - raise up small numbers so more significant digits are seen by hashing // - make small numbers larger than a normal value to avoid collisions // - works in practice and it's relatively cheap var N = 2000000000; var cleanNum = function cleanNum(val) { return -128 < val && val < 128 && Math.floor(val) !== val ? N - (val * 1024 | 0) : val; }; for (var _i = 0; _i < propNames.length; _i++) { var name = propNames[_i]; var parsedProp = overriddenStyles[name]; if (parsedProp == null) { continue; } var propInfo = this.properties[name]; var type = propInfo.type; var _grKey = propInfo.groupKey; var normalizedNumberVal = void 0; if (propInfo.hashOverride != null) { normalizedNumberVal = propInfo.hashOverride(ele, parsedProp); } else if (parsedProp.pfValue != null) { normalizedNumberVal = parsedProp.pfValue; } // might not be a number if it allows enums var numberVal = propInfo.enums == null ? parsedProp.value : null; var haveNormNum = normalizedNumberVal != null; var haveUnitedNum = numberVal != null; var haveNum = haveNormNum || haveUnitedNum; var units = parsedProp.units; // numbers are cheaper to hash than strings // 1 hash op vs n hash ops (for length n string) if (type.number && haveNum && !type.multiple) { var v = haveNormNum ? normalizedNumberVal : numberVal; updateGrKey(cleanNum(v), _grKey); if (!haveNormNum && units != null) { updateGrKeyWStr(units, _grKey); } } else { updateGrKeyWStr(parsedProp.strValue, _grKey); } } // overall style key // var hash = [DEFAULT_HASH_SEED, DEFAULT_HASH_SEED_ALT]; for (var _i2 = 0; _i2 < propGrKeys.length; _i2++) { var _grKey2 = propGrKeys[_i2]; var grHash = _p.styleKeys[_grKey2]; hash[0] = hashInt(grHash[0], hash[0]); hash[1] = hashIntAlt(grHash[1], hash[1]); } _p.styleKey = combineHashes(hash[0], hash[1]); // label dims // var sk = _p.styleKeys; _p.labelDimsKey = combineHashesArray(sk.labelDimensions); var labelKeys = propHash(ele, ['label'], sk.labelDimensions); _p.labelKey = combineHashesArray(labelKeys); _p.labelStyleKey = combineHashesArray(hashArrays(sk.commonLabel, labelKeys)); if (!isNode) { var sourceLabelKeys = propHash(ele, ['source-label'], sk.labelDimensions); _p.sourceLabelKey = combineHashesArray(sourceLabelKeys); _p.sourceLabelStyleKey = combineHashesArray(hashArrays(sk.commonLabel, sourceLabelKeys)); var targetLabelKeys = propHash(ele, ['target-label'], sk.labelDimensions); _p.targetLabelKey = combineHashesArray(targetLabelKeys); _p.targetLabelStyleKey = combineHashesArray(hashArrays(sk.commonLabel, targetLabelKeys)); } // node // if (isNode) { var _p$styleKeys = _p.styleKeys, nodeBody = _p$styleKeys.nodeBody, nodeBorder = _p$styleKeys.nodeBorder, nodeOutline = _p$styleKeys.nodeOutline, backgroundImage = _p$styleKeys.backgroundImage, compound = _p$styleKeys.compound, pie = _p$styleKeys.pie; var nodeKeys = [nodeBody, nodeBorder, nodeOutline, backgroundImage, compound, pie].filter(function (k) { return k != null; }).reduce(hashArrays, [DEFAULT_HASH_SEED, DEFAULT_HASH_SEED_ALT]); _p.nodeKey = combineHashesArray(nodeKeys); _p.hasPie = pie != null && pie[0] !== DEFAULT_HASH_SEED && pie[1] !== DEFAULT_HASH_SEED_ALT; } return oldStyleKey !== _p.styleKey; }; styfn$8.clearStyleHints = function (ele) { var _p = ele._private; _p.styleCxtKey = ''; _p.styleKeys = {}; _p.styleKey = null; _p.labelKey = null; _p.labelStyleKey = null; _p.sourceLabelKey = null; _p.sourceLabelStyleKey = null; _p.targetLabelKey = null; _p.targetLabelStyleKey = null; _p.nodeKey = null; _p.hasPie = null; }; // apply a property to the style (for internal use) // returns whether application was successful // // now, this function flattens the property, and here's how: // // for parsedProp:{ bypass: true, deleteBypass: true } // no property is generated, instead the bypass property in the // element's style is replaced by what's pointed to by the `bypassed` // field in the bypass property (i.e. restoring the property the // bypass was overriding) // // for parsedProp:{ mapped: truthy } // the generated flattenedProp:{ mapping: prop } // // for parsedProp:{ bypass: true } // the generated flattenedProp:{ bypassed: parsedProp } styfn$8.applyParsedProperty = function (ele, parsedProp) { var self = this; var prop = parsedProp; var style = ele._private.style; var flatProp; var types = self.types; var type = self.properties[prop.name].type; var propIsBypass = prop.bypass; var origProp = style[prop.name]; var origPropIsBypass = origProp && origProp.bypass; var _p = ele._private; var flatPropMapping = 'mapping'; var getVal = function getVal(p) { if (p == null) { return null; } else if (p.pfValue != null) { return p.pfValue; } else { return p.value; } }; var checkTriggers = function checkTriggers() { var fromVal = getVal(origProp); var toVal = getVal(prop); self.checkTriggers(ele, prop.name, fromVal, toVal); }; // edge sanity checks to prevent the client from making serious mistakes if (parsedProp.name === 'curve-style' && ele.isEdge() && ( // loops must be bundled beziers parsedProp.value !== 'bezier' && ele.isLoop() || // edges connected to compound nodes can not be haystacks parsedProp.value === 'haystack' && (ele.source().isParent() || ele.target().isParent()))) { prop = parsedProp = this.parse(parsedProp.name, 'bezier', propIsBypass); } if (prop["delete"]) { // delete the property and use the default value on falsey value style[prop.name] = undefined; checkTriggers(); return true; } if (prop.deleteBypassed) { // delete the property that the if (!origProp) { checkTriggers(); return true; // can't delete if no prop } else if (origProp.bypass) { // delete bypassed origProp.bypassed = undefined; checkTriggers(); return true; } else { return false; // we're unsuccessful deleting the bypassed } } // check if we need to delete the current bypass if (prop.deleteBypass) { // then this property is just here to indicate we need to delete if (!origProp) { checkTriggers(); return true; // property is already not defined } else if (origProp.bypass) { // then replace the bypass property with the original // because the bypassed property was already applied (and therefore parsed), we can just replace it (no reapplying necessary) style[prop.name] = origProp.bypassed; checkTriggers(); return true; } else { return false; // we're unsuccessful deleting the bypass } } var printMappingErr = function printMappingErr() { warn('Do not assign mappings to elements without corresponding data (i.e. ele `' + ele.id() + '` has no mapping for property `' + prop.name + '` with data field `' + prop.field + '`); try a `[' + prop.field + ']` selector to limit scope to elements with `' + prop.field + '` defined'); }; // put the property in the style objects switch (prop.mapped) { // flatten the property if mapped case types.mapData: { // flatten the field (e.g. data.foo.bar) var fields = prop.field.split('.'); var fieldVal = _p.data; for (var i = 0; i < fields.length && fieldVal; i++) { var field = fields[i]; fieldVal = fieldVal[field]; } if (fieldVal == null) { printMappingErr(); return false; } var percent; if (!number$1(fieldVal)) { // then don't apply and fall back on the existing style warn('Do not use continuous mappers without specifying numeric data (i.e. `' + prop.field + ': ' + fieldVal + '` for `' + ele.id() + '` is non-numeric)'); return false; } else { var fieldWidth = prop.fieldMax - prop.fieldMin; if (fieldWidth === 0) { // safety check -- not strictly necessary as no props of zero range should be passed here percent = 0; } else { percent = (fieldVal - prop.fieldMin) / fieldWidth; } } // make sure to bound percent value if (percent < 0) { percent = 0; } else if (percent > 1) { percent = 1; } if (type.color) { var r1 = prop.valueMin[0]; var r2 = prop.valueMax[0]; var g1 = prop.valueMin[1]; var g2 = prop.valueMax[1]; var b1 = prop.valueMin[2]; var b2 = prop.valueMax[2]; var a1 = prop.valueMin[3] == null ? 1 : prop.valueMin[3]; var a2 = prop.valueMax[3] == null ? 1 : prop.valueMax[3]; var clr = [Math.round(r1 + (r2 - r1) * percent), Math.round(g1 + (g2 - g1) * percent), Math.round(b1 + (b2 - b1) * percent), Math.round(a1 + (a2 - a1) * percent)]; flatProp = { // colours are simple, so just create the flat property instead of expensive string parsing bypass: prop.bypass, // we're a bypass if the mapping property is a bypass name: prop.name, value: clr, strValue: 'rgb(' + clr[0] + ', ' + clr[1] + ', ' + clr[2] + ')' }; } else if (type.number) { var calcValue = prop.valueMin + (prop.valueMax - prop.valueMin) * percent; flatProp = this.parse(prop.name, calcValue, prop.bypass, flatPropMapping); } else { return false; // can only map to colours and numbers } if (!flatProp) { // if we can't flatten the property, then don't apply the property and fall back on the existing style printMappingErr(); return false; } flatProp.mapping = prop; // keep a reference to the mapping prop = flatProp; // the flattened (mapped) property is the one we want break; } // direct mapping case types.data: { // flatten the field (e.g. data.foo.bar) var _fields = prop.field.split('.'); var _fieldVal = _p.data; for (var _i3 = 0; _i3 < _fields.length && _fieldVal; _i3++) { var _field = _fields[_i3]; _fieldVal = _fieldVal[_field]; } if (_fieldVal != null) { flatProp = this.parse(prop.name, _fieldVal, prop.bypass, flatPropMapping); } if (!flatProp) { // if we can't flatten the property, then don't apply and fall back on the existing style printMappingErr(); return false; } flatProp.mapping = prop; // keep a reference to the mapping prop = flatProp; // the flattened (mapped) property is the one we want break; } case types.fn: { var fn = prop.value; var fnRetVal = prop.fnValue != null ? prop.fnValue : fn(ele); // check for cached value before calling function prop.prevFnValue = fnRetVal; if (fnRetVal == null) { warn('Custom function mappers may not return null (i.e. `' + prop.name + '` for ele `' + ele.id() + '` is null)'); return false; } flatProp = this.parse(prop.name, fnRetVal, prop.bypass, flatPropMapping); if (!flatProp) { warn('Custom function mappers may not return invalid values for the property type (i.e. `' + prop.name + '` for ele `' + ele.id() + '` is invalid)'); return false; } flatProp.mapping = copy(prop); // keep a reference to the mapping prop = flatProp; // the flattened (mapped) property is the one we want break; } case undefined: break; // just set the property default: return false; // not a valid mapping } // if the property is a bypass property, then link the resultant property to the original one if (propIsBypass) { if (origPropIsBypass) { // then this bypass overrides the existing one prop.bypassed = origProp.bypassed; // steal bypassed prop from old bypass } else { // then link the orig prop to the new bypass prop.bypassed = origProp; } style[prop.name] = prop; // and set } else { // prop is not bypass if (origPropIsBypass) { // then keep the orig prop (since it's a bypass) and link to the new prop origProp.bypassed = prop; } else { // then just replace the old prop with the new one style[prop.name] = prop; } } checkTriggers(); return true; }; styfn$8.cleanElements = function (eles, keepBypasses) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; this.clearStyleHints(ele); ele.dirtyCompoundBoundsCache(); ele.dirtyBoundingBoxCache(); if (!keepBypasses) { ele._private.style = {}; } else { var style = ele._private.style; var propNames = Object.keys(style); for (var j = 0; j < propNames.length; j++) { var propName = propNames[j]; var eleProp = style[propName]; if (eleProp != null) { if (eleProp.bypass) { eleProp.bypassed = null; } else { style[propName] = null; } } } } } }; // updates the visual style for all elements (useful for manual style modification after init) styfn$8.update = function () { var cy = this._private.cy; var eles = cy.mutableElements(); eles.updateStyle(); }; // diffProps : { name => { prev, next } } styfn$8.updateTransitions = function (ele, diffProps) { var self = this; var _p = ele._private; var props = ele.pstyle('transition-property').value; var duration = ele.pstyle('transition-duration').pfValue; var delay = ele.pstyle('transition-delay').pfValue; if (props.length > 0 && duration > 0) { var style = {}; // build up the style to animate towards var anyPrev = false; for (var i = 0; i < props.length; i++) { var prop = props[i]; var styProp = ele.pstyle(prop); var diffProp = diffProps[prop]; if (!diffProp) { continue; } var prevProp = diffProp.prev; var fromProp = prevProp; var toProp = diffProp.next != null ? diffProp.next : styProp; var diff = false; var initVal = void 0; var initDt = 0.000001; // delta time % value for initVal (allows animating out of init zero opacity) if (!fromProp) { continue; } // consider px values if (number$1(fromProp.pfValue) && number$1(toProp.pfValue)) { diff = toProp.pfValue - fromProp.pfValue; // nonzero is truthy initVal = fromProp.pfValue + initDt * diff; // consider numerical values } else if (number$1(fromProp.value) && number$1(toProp.value)) { diff = toProp.value - fromProp.value; // nonzero is truthy initVal = fromProp.value + initDt * diff; // consider colour values } else if (array(fromProp.value) && array(toProp.value)) { diff = fromProp.value[0] !== toProp.value[0] || fromProp.value[1] !== toProp.value[1] || fromProp.value[2] !== toProp.value[2]; initVal = fromProp.strValue; } // the previous value is good for an animation only if it's different if (diff) { style[prop] = toProp.strValue; // to val this.applyBypass(ele, prop, initVal); // from val anyPrev = true; } } // end if props allow ani // can't transition if there's nothing previous to transition from if (!anyPrev) { return; } _p.transitioning = true; new Promise$1(function (resolve) { if (delay > 0) { ele.delayAnimation(delay).play().promise().then(resolve); } else { resolve(); } }).then(function () { return ele.animation({ style: style, duration: duration, easing: ele.pstyle('transition-timing-function').value, queue: false }).play().promise(); }).then(function () { // if( !isBypass ){ self.removeBypasses(ele, props); ele.emitAndNotify('style'); // } _p.transitioning = false; }); } else if (_p.transitioning) { this.removeBypasses(ele, props); ele.emitAndNotify('style'); _p.transitioning = false; } }; styfn$8.checkTrigger = function (ele, name, fromValue, toValue, getTrigger, onTrigger) { var prop = this.properties[name]; var triggerCheck = getTrigger(prop); if (triggerCheck != null && triggerCheck(fromValue, toValue)) { onTrigger(prop); } }; styfn$8.checkZOrderTrigger = function (ele, name, fromValue, toValue) { var _this = this; this.checkTrigger(ele, name, fromValue, toValue, function (prop) { return prop.triggersZOrder; }, function () { _this._private.cy.notify('zorder', ele); }); }; styfn$8.checkBoundsTrigger = function (ele, name, fromValue, toValue) { this.checkTrigger(ele, name, fromValue, toValue, function (prop) { return prop.triggersBounds; }, function (prop) { ele.dirtyCompoundBoundsCache(); ele.dirtyBoundingBoxCache(); // if the prop change makes the bb of pll bezier edges invalid, // then dirty the pll edge bb cache as well if ( // only for beziers -- so performance of other edges isn't affected prop.triggersBoundsOfParallelBeziers && name === 'curve-style' && (fromValue === 'bezier' || toValue === 'bezier')) { ele.parallelEdges().forEach(function (pllEdge) { if (pllEdge.isBundledBezier()) { pllEdge.dirtyBoundingBoxCache(); } }); } if (prop.triggersBoundsOfConnectedEdges && name === 'display' && (fromValue === 'none' || toValue === 'none')) { ele.connectedEdges().forEach(function (edge) { edge.dirtyBoundingBoxCache(); }); } }); }; styfn$8.checkTriggers = function (ele, name, fromValue, toValue) { ele.dirtyStyleCache(); this.checkZOrderTrigger(ele, name, fromValue, toValue); this.checkBoundsTrigger(ele, name, fromValue, toValue); }; var styfn$7 = {}; // bypasses are applied to an existing style on an element, and just tacked on temporarily // returns true iff application was successful for at least 1 specified property styfn$7.applyBypass = function (eles, name, value, updateTransitions) { var self = this; var props = []; var isBypass = true; // put all the properties (can specify one or many) in an array after parsing them if (name === '*' || name === '**') { // apply to all property names if (value !== undefined) { for (var i = 0; i < self.properties.length; i++) { var prop = self.properties[i]; var _name = prop.name; var parsedProp = this.parse(_name, value, true); if (parsedProp) { props.push(parsedProp); } } } } else if (string(name)) { // then parse the single property var _parsedProp = this.parse(name, value, true); if (_parsedProp) { props.push(_parsedProp); } } else if (plainObject(name)) { // then parse each property var specifiedProps = name; updateTransitions = value; var names = Object.keys(specifiedProps); for (var _i = 0; _i < names.length; _i++) { var _name2 = names[_i]; var _value = specifiedProps[_name2]; if (_value === undefined) { // try camel case name too _value = specifiedProps[dash2camel(_name2)]; } if (_value !== undefined) { var _parsedProp2 = this.parse(_name2, _value, true); if (_parsedProp2) { props.push(_parsedProp2); } } } } else { // can't do anything without well defined properties return false; } // we've failed if there are no valid properties if (props.length === 0) { return false; } // now, apply the bypass properties on the elements var ret = false; // return true if at least one succesful bypass applied for (var _i2 = 0; _i2 < eles.length; _i2++) { // for each ele var ele = eles[_i2]; var diffProps = {}; var diffProp = void 0; for (var j = 0; j < props.length; j++) { // for each prop var _prop = props[j]; if (updateTransitions) { var prevProp = ele.pstyle(_prop.name); diffProp = diffProps[_prop.name] = { prev: prevProp }; } ret = this.applyParsedProperty(ele, copy(_prop)) || ret; if (updateTransitions) { diffProp.next = ele.pstyle(_prop.name); } } // for props if (ret) { this.updateStyleHints(ele); } if (updateTransitions) { this.updateTransitions(ele, diffProps, isBypass); } } // for eles return ret; }; // only useful in specific cases like animation styfn$7.overrideBypass = function (eles, name, value) { name = camel2dash(name); for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var prop = ele._private.style[name]; var type = this.properties[name].type; var isColor = type.color; var isMulti = type.mutiple; var oldValue = !prop ? null : prop.pfValue != null ? prop.pfValue : prop.value; if (!prop || !prop.bypass) { // need a bypass if one doesn't exist this.applyBypass(ele, name, value); } else { prop.value = value; if (prop.pfValue != null) { prop.pfValue = value; } if (isColor) { prop.strValue = 'rgb(' + value.join(',') + ')'; } else if (isMulti) { prop.strValue = value.join(' '); } else { prop.strValue = '' + value; } this.updateStyleHints(ele); } this.checkTriggers(ele, name, oldValue, value); } }; styfn$7.removeAllBypasses = function (eles, updateTransitions) { return this.removeBypasses(eles, this.propertyNames, updateTransitions); }; styfn$7.removeBypasses = function (eles, props, updateTransitions) { var isBypass = true; for (var j = 0; j < eles.length; j++) { var ele = eles[j]; var diffProps = {}; for (var i = 0; i < props.length; i++) { var name = props[i]; var prop = this.properties[name]; var prevProp = ele.pstyle(prop.name); if (!prevProp || !prevProp.bypass) { // if a bypass doesn't exist for the prop, nothing needs to be removed continue; } var value = ''; // empty => remove bypass var parsedProp = this.parse(name, value, true); var diffProp = diffProps[prop.name] = { prev: prevProp }; this.applyParsedProperty(ele, parsedProp); diffProp.next = ele.pstyle(prop.name); } // for props this.updateStyleHints(ele); if (updateTransitions) { this.updateTransitions(ele, diffProps, isBypass); } } // for eles }; var styfn$6 = {}; // gets what an em size corresponds to in pixels relative to a dom element styfn$6.getEmSizeInPixels = function () { var px = this.containerCss('font-size'); if (px != null) { return parseFloat(px); } else { return 1; // for headless } }; // gets css property from the core container styfn$6.containerCss = function (propName) { var cy = this._private.cy; var domElement = cy.container(); var containerWindow = cy.window(); if (containerWindow && domElement && containerWindow.getComputedStyle) { return containerWindow.getComputedStyle(domElement).getPropertyValue(propName); } }; var styfn$5 = {}; // gets the rendered style for an element styfn$5.getRenderedStyle = function (ele, prop) { if (prop) { return this.getStylePropertyValue(ele, prop, true); } else { return this.getRawStyle(ele, true); } }; // gets the raw style for an element styfn$5.getRawStyle = function (ele, isRenderedVal) { var self = this; ele = ele[0]; // insure it's an element if (ele) { var rstyle = {}; for (var i = 0; i < self.properties.length; i++) { var prop = self.properties[i]; var val = self.getStylePropertyValue(ele, prop.name, isRenderedVal); if (val != null) { rstyle[prop.name] = val; rstyle[dash2camel(prop.name)] = val; } } return rstyle; } }; styfn$5.getIndexedStyle = function (ele, property, subproperty, index) { var pstyle = ele.pstyle(property)[subproperty][index]; return pstyle != null ? pstyle : ele.cy().style().getDefaultProperty(property)[subproperty][0]; }; styfn$5.getStylePropertyValue = function (ele, propName, isRenderedVal) { var self = this; ele = ele[0]; // insure it's an element if (ele) { var prop = self.properties[propName]; if (prop.alias) { prop = prop.pointsTo; } var type = prop.type; var styleProp = ele.pstyle(prop.name); if (styleProp) { var value = styleProp.value, units = styleProp.units, strValue = styleProp.strValue; if (isRenderedVal && type.number && value != null && number$1(value)) { var zoom = ele.cy().zoom(); var getRenderedValue = function getRenderedValue(val) { return val * zoom; }; var getValueStringWithUnits = function getValueStringWithUnits(val, units) { return getRenderedValue(val) + units; }; var isArrayValue = array(value); var haveUnits = isArrayValue ? units.every(function (u) { return u != null; }) : units != null; if (haveUnits) { if (isArrayValue) { return value.map(function (v, i) { return getValueStringWithUnits(v, units[i]); }).join(' '); } else { return getValueStringWithUnits(value, units); } } else { if (isArrayValue) { return value.map(function (v) { return string(v) ? v : '' + getRenderedValue(v); }).join(' '); } else { return '' + getRenderedValue(value); } } } else if (strValue != null) { return strValue; } } return null; } }; styfn$5.getAnimationStartStyle = function (ele, aniProps) { var rstyle = {}; for (var i = 0; i < aniProps.length; i++) { var aniProp = aniProps[i]; var name = aniProp.name; var styleProp = ele.pstyle(name); if (styleProp !== undefined) { // then make a prop of it if (plainObject(styleProp)) { styleProp = this.parse(name, styleProp.strValue); } else { styleProp = this.parse(name, styleProp); } } if (styleProp) { rstyle[name] = styleProp; } } return rstyle; }; styfn$5.getPropsList = function (propsObj) { var self = this; var rstyle = []; var style = propsObj; var props = self.properties; if (style) { var names = Object.keys(style); for (var i = 0; i < names.length; i++) { var name = names[i]; var val = style[name]; var prop = props[name] || props[camel2dash(name)]; var styleProp = this.parse(prop.name, val); if (styleProp) { rstyle.push(styleProp); } } } return rstyle; }; styfn$5.getNonDefaultPropertiesHash = function (ele, propNames, seed) { var hash = seed.slice(); var name, val, strVal, chVal; var i, j; for (i = 0; i < propNames.length; i++) { name = propNames[i]; val = ele.pstyle(name, false); if (val == null) { continue; } else if (val.pfValue != null) { hash[0] = hashInt(chVal, hash[0]); hash[1] = hashIntAlt(chVal, hash[1]); } else { strVal = val.strValue; for (j = 0; j < strVal.length; j++) { chVal = strVal.charCodeAt(j); hash[0] = hashInt(chVal, hash[0]); hash[1] = hashIntAlt(chVal, hash[1]); } } } return hash; }; styfn$5.getPropertiesHash = styfn$5.getNonDefaultPropertiesHash; var styfn$4 = {}; styfn$4.appendFromJson = function (json) { var style = this; for (var i = 0; i < json.length; i++) { var context = json[i]; var selector = context.selector; var props = context.style || context.css; var names = Object.keys(props); style.selector(selector); // apply selector for (var j = 0; j < names.length; j++) { var name = names[j]; var value = props[name]; style.css(name, value); // apply property } } return style; }; // accessible cy.style() function styfn$4.fromJson = function (json) { var style = this; style.resetToDefault(); style.appendFromJson(json); return style; }; // get json from cy.style() api styfn$4.json = function () { var json = []; for (var i = this.defaultLength; i < this.length; i++) { var cxt = this[i]; var selector = cxt.selector; var props = cxt.properties; var css = {}; for (var j = 0; j < props.length; j++) { var prop = props[j]; css[prop.name] = prop.strValue; } json.push({ selector: !selector ? 'core' : selector.toString(), style: css }); } return json; }; var styfn$3 = {}; styfn$3.appendFromString = function (string) { var self = this; var style = this; var remaining = '' + string; var selAndBlockStr; var blockRem; var propAndValStr; // remove comments from the style string remaining = remaining.replace(/[/][*](\s|.)+?[*][/]/g, ''); function removeSelAndBlockFromRemaining() { // remove the parsed selector and block from the remaining text to parse if (remaining.length > selAndBlockStr.length) { remaining = remaining.substr(selAndBlockStr.length); } else { remaining = ''; } } function removePropAndValFromRem() { // remove the parsed property and value from the remaining block text to parse if (blockRem.length > propAndValStr.length) { blockRem = blockRem.substr(propAndValStr.length); } else { blockRem = ''; } } for (;;) { var nothingLeftToParse = remaining.match(/^\s*$/); if (nothingLeftToParse) { break; } var selAndBlock = remaining.match(/^\s*((?:.|\s)+?)\s*\{((?:.|\s)+?)\}/); if (!selAndBlock) { warn('Halting stylesheet parsing: String stylesheet contains more to parse but no selector and block found in: ' + remaining); break; } selAndBlockStr = selAndBlock[0]; // parse the selector var selectorStr = selAndBlock[1]; if (selectorStr !== 'core') { var selector = new Selector(selectorStr); if (selector.invalid) { warn('Skipping parsing of block: Invalid selector found in string stylesheet: ' + selectorStr); // skip this selector and block removeSelAndBlockFromRemaining(); continue; } } // parse the block of properties and values var blockStr = selAndBlock[2]; var invalidBlock = false; blockRem = blockStr; var props = []; for (;;) { var _nothingLeftToParse = blockRem.match(/^\s*$/); if (_nothingLeftToParse) { break; } var propAndVal = blockRem.match(/^\s*(.+?)\s*:\s*(.+?)(?:\s*;|\s*$)/); if (!propAndVal) { warn('Skipping parsing of block: Invalid formatting of style property and value definitions found in:' + blockStr); invalidBlock = true; break; } propAndValStr = propAndVal[0]; var propStr = propAndVal[1]; var valStr = propAndVal[2]; var prop = self.properties[propStr]; if (!prop) { warn('Skipping property: Invalid property name in: ' + propAndValStr); // skip this property in the block removePropAndValFromRem(); continue; } var parsedProp = style.parse(propStr, valStr); if (!parsedProp) { warn('Skipping property: Invalid property definition in: ' + propAndValStr); // skip this property in the block removePropAndValFromRem(); continue; } props.push({ name: propStr, val: valStr }); removePropAndValFromRem(); } if (invalidBlock) { removeSelAndBlockFromRemaining(); break; } // put the parsed block in the style style.selector(selectorStr); for (var i = 0; i < props.length; i++) { var _prop = props[i]; style.css(_prop.name, _prop.val); } removeSelAndBlockFromRemaining(); } return style; }; styfn$3.fromString = function (string) { var style = this; style.resetToDefault(); style.appendFromString(string); return style; }; var styfn$2 = {}; (function () { var number$1 = number; var rgba = rgbaNoBackRefs; var hsla = hslaNoBackRefs; var hex3$1 = hex3; var hex6$1 = hex6; var data = function data(prefix) { return '^' + prefix + '\\s*\\(\\s*([\\w\\.]+)\\s*\\)$'; }; var mapData = function mapData(prefix) { var mapArg = number$1 + '|\\w+|' + rgba + '|' + hsla + '|' + hex3$1 + '|' + hex6$1; return '^' + prefix + '\\s*\\(([\\w\\.]+)\\s*\\,\\s*(' + number$1 + ')\\s*\\,\\s*(' + number$1 + ')\\s*,\\s*(' + mapArg + ')\\s*\\,\\s*(' + mapArg + ')\\)$'; }; var urlRegexes = ['^url\\s*\\(\\s*[\'"]?(.+?)[\'"]?\\s*\\)$', '^(none)$', '^(.+)$']; // each visual style property has a type and needs to be validated according to it styfn$2.types = { time: { number: true, min: 0, units: 's|ms', implicitUnits: 'ms' }, percent: { number: true, min: 0, max: 100, units: '%', implicitUnits: '%' }, percentages: { number: true, min: 0, max: 100, units: '%', implicitUnits: '%', multiple: true }, zeroOneNumber: { number: true, min: 0, max: 1, unitless: true }, zeroOneNumbers: { number: true, min: 0, max: 1, unitless: true, multiple: true }, nOneOneNumber: { number: true, min: -1, max: 1, unitless: true }, nonNegativeInt: { number: true, min: 0, integer: true, unitless: true }, nonNegativeNumber: { number: true, min: 0, unitless: true }, position: { enums: ['parent', 'origin'] }, nodeSize: { number: true, min: 0, enums: ['label'] }, number: { number: true, unitless: true }, numbers: { number: true, unitless: true, multiple: true }, positiveNumber: { number: true, unitless: true, min: 0, strictMin: true }, size: { number: true, min: 0 }, bidirectionalSize: { number: true }, // allows negative bidirectionalSizeMaybePercent: { number: true, allowPercent: true }, // allows negative bidirectionalSizes: { number: true, multiple: true }, // allows negative sizeMaybePercent: { number: true, min: 0, allowPercent: true }, axisDirection: { enums: ['horizontal', 'leftward', 'rightward', 'vertical', 'upward', 'downward', 'auto'] }, paddingRelativeTo: { enums: ['width', 'height', 'average', 'min', 'max'] }, bgWH: { number: true, min: 0, allowPercent: true, enums: ['auto'], multiple: true }, bgPos: { number: true, allowPercent: true, multiple: true }, bgRelativeTo: { enums: ['inner', 'include-padding'], multiple: true }, bgRepeat: { enums: ['repeat', 'repeat-x', 'repeat-y', 'no-repeat'], multiple: true }, bgFit: { enums: ['none', 'contain', 'cover'], multiple: true }, bgCrossOrigin: { enums: ['anonymous', 'use-credentials', 'null'], multiple: true }, bgClip: { enums: ['none', 'node'], multiple: true }, bgContainment: { enums: ['inside', 'over'], multiple: true }, color: { color: true }, colors: { color: true, multiple: true }, fill: { enums: ['solid', 'linear-gradient', 'radial-gradient'] }, bool: { enums: ['yes', 'no'] }, bools: { enums: ['yes', 'no'], multiple: true }, lineStyle: { enums: ['solid', 'dotted', 'dashed'] }, lineCap: { enums: ['butt', 'round', 'square'] }, linePosition: { enums: ['center', 'inside', 'outside'] }, lineJoin: { enums: ['round', 'bevel', 'miter'] }, borderStyle: { enums: ['solid', 'dotted', 'dashed', 'double'] }, curveStyle: { enums: ['bezier', 'unbundled-bezier', 'haystack', 'segments', 'straight', 'straight-triangle', 'taxi', 'round-segments', 'round-taxi'] }, radiusType: { enums: ['arc-radius', 'influence-radius'], multiple: true }, fontFamily: { regex: '^([\\w- \\"]+(?:\\s*,\\s*[\\w- \\"]+)*)$' }, fontStyle: { enums: ['italic', 'normal', 'oblique'] }, fontWeight: { enums: ['normal', 'bold', 'bolder', 'lighter', '100', '200', '300', '400', '500', '600', '800', '900', 100, 200, 300, 400, 500, 600, 700, 800, 900] }, textDecoration: { enums: ['none', 'underline', 'overline', 'line-through'] }, textTransform: { enums: ['none', 'uppercase', 'lowercase'] }, textWrap: { enums: ['none', 'wrap', 'ellipsis'] }, textOverflowWrap: { enums: ['whitespace', 'anywhere'] }, textBackgroundShape: { enums: ['rectangle', 'roundrectangle', 'round-rectangle'] }, nodeShape: { enums: ['rectangle', 'roundrectangle', 'round-rectangle', 'cutrectangle', 'cut-rectangle', 'bottomroundrectangle', 'bottom-round-rectangle', 'barrel', 'ellipse', 'triangle', 'round-triangle', 'square', 'pentagon', 'round-pentagon', 'hexagon', 'round-hexagon', 'concavehexagon', 'concave-hexagon', 'heptagon', 'round-heptagon', 'octagon', 'round-octagon', 'tag', 'round-tag', 'star', 'diamond', 'round-diamond', 'vee', 'rhomboid', 'right-rhomboid', 'polygon'] }, overlayShape: { enums: ['roundrectangle', 'round-rectangle', 'ellipse'] }, cornerRadius: { number: true, min: 0, units: 'px|em', implicitUnits: 'px', enums: ['auto'] }, compoundIncludeLabels: { enums: ['include', 'exclude'] }, arrowShape: { enums: ['tee', 'triangle', 'triangle-tee', 'circle-triangle', 'triangle-cross', 'triangle-backcurve', 'vee', 'square', 'circle', 'diamond', 'chevron', 'none'] }, arrowFill: { enums: ['filled', 'hollow'] }, arrowWidth: { number: true, units: '%|px|em', implicitUnits: 'px', enums: ['match-line'] }, display: { enums: ['element', 'none'] }, visibility: { enums: ['hidden', 'visible'] }, zCompoundDepth: { enums: ['bottom', 'orphan', 'auto', 'top'] }, zIndexCompare: { enums: ['auto', 'manual'] }, valign: { enums: ['top', 'center', 'bottom'] }, halign: { enums: ['left', 'center', 'right'] }, justification: { enums: ['left', 'center', 'right', 'auto'] }, text: { string: true }, data: { mapping: true, regex: data('data') }, layoutData: { mapping: true, regex: data('layoutData') }, scratch: { mapping: true, regex: data('scratch') }, mapData: { mapping: true, regex: mapData('mapData') }, mapLayoutData: { mapping: true, regex: mapData('mapLayoutData') }, mapScratch: { mapping: true, regex: mapData('mapScratch') }, fn: { mapping: true, fn: true }, url: { regexes: urlRegexes, singleRegexMatchValue: true }, urls: { regexes: urlRegexes, singleRegexMatchValue: true, multiple: true }, propList: { propList: true }, angle: { number: true, units: 'deg|rad', implicitUnits: 'rad' }, textRotation: { number: true, units: 'deg|rad', implicitUnits: 'rad', enums: ['none', 'autorotate'] }, polygonPointList: { number: true, multiple: true, evenMultiple: true, min: -1, max: 1, unitless: true }, edgeDistances: { enums: ['intersection', 'node-position', 'endpoints'] }, edgeEndpoint: { number: true, multiple: true, units: '%|px|em|deg|rad', implicitUnits: 'px', enums: ['inside-to-node', 'outside-to-node', 'outside-to-node-or-label', 'outside-to-line', 'outside-to-line-or-label'], singleEnum: true, validate: function validate(valArr, unitsArr) { switch (valArr.length) { case 2: // can be % or px only return unitsArr[0] !== 'deg' && unitsArr[0] !== 'rad' && unitsArr[1] !== 'deg' && unitsArr[1] !== 'rad'; case 1: // can be enum, deg, or rad only return string(valArr[0]) || unitsArr[0] === 'deg' || unitsArr[0] === 'rad'; default: return false; } } }, easing: { regexes: ['^(spring)\\s*\\(\\s*(' + number$1 + ')\\s*,\\s*(' + number$1 + ')\\s*\\)$', '^(cubic-bezier)\\s*\\(\\s*(' + number$1 + ')\\s*,\\s*(' + number$1 + ')\\s*,\\s*(' + number$1 + ')\\s*,\\s*(' + number$1 + ')\\s*\\)$'], enums: ['linear', 'ease', 'ease-in', 'ease-out', 'ease-in-out', 'ease-in-sine', 'ease-out-sine', 'ease-in-out-sine', 'ease-in-quad', 'ease-out-quad', 'ease-in-out-quad', 'ease-in-cubic', 'ease-out-cubic', 'ease-in-out-cubic', 'ease-in-quart', 'ease-out-quart', 'ease-in-out-quart', 'ease-in-quint', 'ease-out-quint', 'ease-in-out-quint', 'ease-in-expo', 'ease-out-expo', 'ease-in-out-expo', 'ease-in-circ', 'ease-out-circ', 'ease-in-out-circ'] }, gradientDirection: { enums: ['to-bottom', 'to-top', 'to-left', 'to-right', 'to-bottom-right', 'to-bottom-left', 'to-top-right', 'to-top-left', 'to-right-bottom', 'to-left-bottom', 'to-right-top', 'to-left-top' // different order ] }, boundsExpansion: { number: true, multiple: true, min: 0, validate: function validate(valArr) { var length = valArr.length; return length === 1 || length === 2 || length === 4; } } }; var diff = { zeroNonZero: function zeroNonZero(val1, val2) { if ((val1 == null || val2 == null) && val1 !== val2) { return true; // null cases could represent any value } if (val1 == 0 && val2 != 0) { return true; } else if (val1 != 0 && val2 == 0) { return true; } else { return false; } }, any: function any(val1, val2) { return val1 != val2; }, emptyNonEmpty: function emptyNonEmpty(str1, str2) { var empty1 = emptyString(str1); var empty2 = emptyString(str2); return empty1 && !empty2 || !empty1 && empty2; } }; // define visual style properties // // - n.b. adding a new group of props may require updates to updateStyleHints() // - adding new props to an existing group gets handled automatically var t = styfn$2.types; var mainLabel = [{ name: 'label', type: t.text, triggersBounds: diff.any, triggersZOrder: diff.emptyNonEmpty }, { name: 'text-rotation', type: t.textRotation, triggersBounds: diff.any }, { name: 'text-margin-x', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'text-margin-y', type: t.bidirectionalSize, triggersBounds: diff.any }]; var sourceLabel = [{ name: 'source-label', type: t.text, triggersBounds: diff.any }, { name: 'source-text-rotation', type: t.textRotation, triggersBounds: diff.any }, { name: 'source-text-margin-x', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'source-text-margin-y', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'source-text-offset', type: t.size, triggersBounds: diff.any }]; var targetLabel = [{ name: 'target-label', type: t.text, triggersBounds: diff.any }, { name: 'target-text-rotation', type: t.textRotation, triggersBounds: diff.any }, { name: 'target-text-margin-x', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'target-text-margin-y', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'target-text-offset', type: t.size, triggersBounds: diff.any }]; var labelDimensions = [{ name: 'font-family', type: t.fontFamily, triggersBounds: diff.any }, { name: 'font-style', type: t.fontStyle, triggersBounds: diff.any }, { name: 'font-weight', type: t.fontWeight, triggersBounds: diff.any }, { name: 'font-size', type: t.size, triggersBounds: diff.any }, { name: 'text-transform', type: t.textTransform, triggersBounds: diff.any }, { name: 'text-wrap', type: t.textWrap, triggersBounds: diff.any }, { name: 'text-overflow-wrap', type: t.textOverflowWrap, triggersBounds: diff.any }, { name: 'text-max-width', type: t.size, triggersBounds: diff.any }, { name: 'text-outline-width', type: t.size, triggersBounds: diff.any }, { name: 'line-height', type: t.positiveNumber, triggersBounds: diff.any }]; var commonLabel = [{ name: 'text-valign', type: t.valign, triggersBounds: diff.any }, { name: 'text-halign', type: t.halign, triggersBounds: diff.any }, { name: 'color', type: t.color }, { name: 'text-outline-color', type: t.color }, { name: 'text-outline-opacity', type: t.zeroOneNumber }, { name: 'text-background-color', type: t.color }, { name: 'text-background-opacity', type: t.zeroOneNumber }, { name: 'text-background-padding', type: t.size, triggersBounds: diff.any }, { name: 'text-border-opacity', type: t.zeroOneNumber }, { name: 'text-border-color', type: t.color }, { name: 'text-border-width', type: t.size, triggersBounds: diff.any }, { name: 'text-border-style', type: t.borderStyle, triggersBounds: diff.any }, { name: 'text-background-shape', type: t.textBackgroundShape, triggersBounds: diff.any }, { name: 'text-justification', type: t.justification }]; var behavior = [{ name: 'events', type: t.bool, triggersZOrder: diff.any }, { name: 'text-events', type: t.bool, triggersZOrder: diff.any }]; var visibility = [{ name: 'display', type: t.display, triggersZOrder: diff.any, triggersBounds: diff.any, triggersBoundsOfConnectedEdges: true }, { name: 'visibility', type: t.visibility, triggersZOrder: diff.any }, { name: 'opacity', type: t.zeroOneNumber, triggersZOrder: diff.zeroNonZero }, { name: 'text-opacity', type: t.zeroOneNumber }, { name: 'min-zoomed-font-size', type: t.size }, { name: 'z-compound-depth', type: t.zCompoundDepth, triggersZOrder: diff.any }, { name: 'z-index-compare', type: t.zIndexCompare, triggersZOrder: diff.any }, { name: 'z-index', type: t.number, triggersZOrder: diff.any }]; var overlay = [{ name: 'overlay-padding', type: t.size, triggersBounds: diff.any }, { name: 'overlay-color', type: t.color }, { name: 'overlay-opacity', type: t.zeroOneNumber, triggersBounds: diff.zeroNonZero }, { name: 'overlay-shape', type: t.overlayShape, triggersBounds: diff.any }, { name: 'overlay-corner-radius', type: t.cornerRadius }]; var underlay = [{ name: 'underlay-padding', type: t.size, triggersBounds: diff.any }, { name: 'underlay-color', type: t.color }, { name: 'underlay-opacity', type: t.zeroOneNumber, triggersBounds: diff.zeroNonZero }, { name: 'underlay-shape', type: t.overlayShape, triggersBounds: diff.any }, { name: 'underlay-corner-radius', type: t.cornerRadius }]; var transition = [{ name: 'transition-property', type: t.propList }, { name: 'transition-duration', type: t.time }, { name: 'transition-delay', type: t.time }, { name: 'transition-timing-function', type: t.easing }]; var nodeSizeHashOverride = function nodeSizeHashOverride(ele, parsedProp) { if (parsedProp.value === 'label') { return -ele.poolIndex(); // no hash key hits is using label size (hitrate for perf probably low anyway) } else { return parsedProp.pfValue; } }; var nodeBody = [{ name: 'height', type: t.nodeSize, triggersBounds: diff.any, hashOverride: nodeSizeHashOverride }, { name: 'width', type: t.nodeSize, triggersBounds: diff.any, hashOverride: nodeSizeHashOverride }, { name: 'shape', type: t.nodeShape, triggersBounds: diff.any }, { name: 'shape-polygon-points', type: t.polygonPointList, triggersBounds: diff.any }, { name: 'corner-radius', type: t.cornerRadius }, { name: 'background-color', type: t.color }, { name: 'background-fill', type: t.fill }, { name: 'background-opacity', type: t.zeroOneNumber }, { name: 'background-blacken', type: t.nOneOneNumber }, { name: 'background-gradient-stop-colors', type: t.colors }, { name: 'background-gradient-stop-positions', type: t.percentages }, { name: 'background-gradient-direction', type: t.gradientDirection }, { name: 'padding', type: t.sizeMaybePercent, triggersBounds: diff.any }, { name: 'padding-relative-to', type: t.paddingRelativeTo, triggersBounds: diff.any }, { name: 'bounds-expansion', type: t.boundsExpansion, triggersBounds: diff.any }]; var nodeBorder = [{ name: 'border-color', type: t.color }, { name: 'border-opacity', type: t.zeroOneNumber }, { name: 'border-width', type: t.size, triggersBounds: diff.any }, { name: 'border-style', type: t.borderStyle }, { name: 'border-cap', type: t.lineCap }, { name: 'border-join', type: t.lineJoin }, { name: 'border-dash-pattern', type: t.numbers }, { name: 'border-dash-offset', type: t.number }, { name: 'border-position', type: t.linePosition }]; var nodeOutline = [{ name: 'outline-color', type: t.color }, { name: 'outline-opacity', type: t.zeroOneNumber }, { name: 'outline-width', type: t.size, triggersBounds: diff.any }, { name: 'outline-style', type: t.borderStyle }, { name: 'outline-offset', type: t.size, triggersBounds: diff.any }]; var backgroundImage = [{ name: 'background-image', type: t.urls }, { name: 'background-image-crossorigin', type: t.bgCrossOrigin }, { name: 'background-image-opacity', type: t.zeroOneNumbers }, { name: 'background-image-containment', type: t.bgContainment }, { name: 'background-image-smoothing', type: t.bools }, { name: 'background-position-x', type: t.bgPos }, { name: 'background-position-y', type: t.bgPos }, { name: 'background-width-relative-to', type: t.bgRelativeTo }, { name: 'background-height-relative-to', type: t.bgRelativeTo }, { name: 'background-repeat', type: t.bgRepeat }, { name: 'background-fit', type: t.bgFit }, { name: 'background-clip', type: t.bgClip }, { name: 'background-width', type: t.bgWH }, { name: 'background-height', type: t.bgWH }, { name: 'background-offset-x', type: t.bgPos }, { name: 'background-offset-y', type: t.bgPos }]; var compound = [{ name: 'position', type: t.position, triggersBounds: diff.any }, { name: 'compound-sizing-wrt-labels', type: t.compoundIncludeLabels, triggersBounds: diff.any }, { name: 'min-width', type: t.size, triggersBounds: diff.any }, { name: 'min-width-bias-left', type: t.sizeMaybePercent, triggersBounds: diff.any }, { name: 'min-width-bias-right', type: t.sizeMaybePercent, triggersBounds: diff.any }, { name: 'min-height', type: t.size, triggersBounds: diff.any }, { name: 'min-height-bias-top', type: t.sizeMaybePercent, triggersBounds: diff.any }, { name: 'min-height-bias-bottom', type: t.sizeMaybePercent, triggersBounds: diff.any }]; var edgeLine = [{ name: 'line-style', type: t.lineStyle }, { name: 'line-color', type: t.color }, { name: 'line-fill', type: t.fill }, { name: 'line-cap', type: t.lineCap }, { name: 'line-opacity', type: t.zeroOneNumber }, { name: 'line-dash-pattern', type: t.numbers }, { name: 'line-dash-offset', type: t.number }, { name: 'line-gradient-stop-colors', type: t.colors }, { name: 'line-gradient-stop-positions', type: t.percentages }, { name: 'curve-style', type: t.curveStyle, triggersBounds: diff.any, triggersBoundsOfParallelBeziers: true }, { name: 'haystack-radius', type: t.zeroOneNumber, triggersBounds: diff.any }, { name: 'source-endpoint', type: t.edgeEndpoint, triggersBounds: diff.any }, { name: 'target-endpoint', type: t.edgeEndpoint, triggersBounds: diff.any }, { name: 'control-point-step-size', type: t.size, triggersBounds: diff.any }, { name: 'control-point-distances', type: t.bidirectionalSizes, triggersBounds: diff.any }, { name: 'control-point-weights', type: t.numbers, triggersBounds: diff.any }, { name: 'segment-distances', type: t.bidirectionalSizes, triggersBounds: diff.any }, { name: 'segment-weights', type: t.numbers, triggersBounds: diff.any }, { name: 'segment-radii', type: t.numbers, triggersBounds: diff.any }, { name: 'radius-type', type: t.radiusType, triggersBounds: diff.any }, { name: 'taxi-turn', type: t.bidirectionalSizeMaybePercent, triggersBounds: diff.any }, { name: 'taxi-turn-min-distance', type: t.size, triggersBounds: diff.any }, { name: 'taxi-direction', type: t.axisDirection, triggersBounds: diff.any }, { name: 'taxi-radius', type: t.number, triggersBounds: diff.any }, { name: 'edge-distances', type: t.edgeDistances, triggersBounds: diff.any }, { name: 'arrow-scale', type: t.positiveNumber, triggersBounds: diff.any }, { name: 'loop-direction', type: t.angle, triggersBounds: diff.any }, { name: 'loop-sweep', type: t.angle, triggersBounds: diff.any }, { name: 'source-distance-from-node', type: t.size, triggersBounds: diff.any }, { name: 'target-distance-from-node', type: t.size, triggersBounds: diff.any }]; var ghost = [{ name: 'ghost', type: t.bool, triggersBounds: diff.any }, { name: 'ghost-offset-x', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'ghost-offset-y', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'ghost-opacity', type: t.zeroOneNumber }]; var core = [{ name: 'selection-box-color', type: t.color }, { name: 'selection-box-opacity', type: t.zeroOneNumber }, { name: 'selection-box-border-color', type: t.color }, { name: 'selection-box-border-width', type: t.size }, { name: 'active-bg-color', type: t.color }, { name: 'active-bg-opacity', type: t.zeroOneNumber }, { name: 'active-bg-size', type: t.size }, { name: 'outside-texture-bg-color', type: t.color }, { name: 'outside-texture-bg-opacity', type: t.zeroOneNumber }]; // pie backgrounds for nodes var pie = []; styfn$2.pieBackgroundN = 16; // because the pie properties are numbered, give access to a constant N (for renderer use) pie.push({ name: 'pie-size', type: t.sizeMaybePercent }); for (var i = 1; i <= styfn$2.pieBackgroundN; i++) { pie.push({ name: 'pie-' + i + '-background-color', type: t.color }); pie.push({ name: 'pie-' + i + '-background-size', type: t.percent }); pie.push({ name: 'pie-' + i + '-background-opacity', type: t.zeroOneNumber }); } // edge arrows var edgeArrow = []; var arrowPrefixes = styfn$2.arrowPrefixes = ['source', 'mid-source', 'target', 'mid-target']; [{ name: 'arrow-shape', type: t.arrowShape, triggersBounds: diff.any }, { name: 'arrow-color', type: t.color }, { name: 'arrow-fill', type: t.arrowFill }, { name: 'arrow-width', type: t.arrowWidth }].forEach(function (prop) { arrowPrefixes.forEach(function (prefix) { var name = prefix + '-' + prop.name; var type = prop.type, triggersBounds = prop.triggersBounds; edgeArrow.push({ name: name, type: type, triggersBounds: triggersBounds }); }); }, {}); var props = styfn$2.properties = [].concat(behavior, transition, visibility, overlay, underlay, ghost, commonLabel, labelDimensions, mainLabel, sourceLabel, targetLabel, nodeBody, nodeBorder, nodeOutline, backgroundImage, pie, compound, edgeLine, edgeArrow, core); var propGroups = styfn$2.propertyGroups = { // common to all eles behavior: behavior, transition: transition, visibility: visibility, overlay: overlay, underlay: underlay, ghost: ghost, // labels commonLabel: commonLabel, labelDimensions: labelDimensions, mainLabel: mainLabel, sourceLabel: sourceLabel, targetLabel: targetLabel, // node props nodeBody: nodeBody, nodeBorder: nodeBorder, nodeOutline: nodeOutline, backgroundImage: backgroundImage, pie: pie, compound: compound, // edge props edgeLine: edgeLine, edgeArrow: edgeArrow, core: core }; var propGroupNames = styfn$2.propertyGroupNames = {}; var propGroupKeys = styfn$2.propertyGroupKeys = Object.keys(propGroups); propGroupKeys.forEach(function (key) { propGroupNames[key] = propGroups[key].map(function (prop) { return prop.name; }); propGroups[key].forEach(function (prop) { return prop.groupKey = key; }); }); // define aliases var aliases = styfn$2.aliases = [{ name: 'content', pointsTo: 'label' }, { name: 'control-point-distance', pointsTo: 'control-point-distances' }, { name: 'control-point-weight', pointsTo: 'control-point-weights' }, { name: 'segment-distance', pointsTo: 'segment-distances' }, { name: 'segment-weight', pointsTo: 'segment-weights' }, { name: 'segment-radius', pointsTo: 'segment-radii' }, { name: 'edge-text-rotation', pointsTo: 'text-rotation' }, { name: 'padding-left', pointsTo: 'padding' }, { name: 'padding-right', pointsTo: 'padding' }, { name: 'padding-top', pointsTo: 'padding' }, { name: 'padding-bottom', pointsTo: 'padding' }]; // list of property names styfn$2.propertyNames = props.map(function (p) { return p.name; }); // allow access of properties by name ( e.g. style.properties.height ) for (var _i = 0; _i < props.length; _i++) { var prop = props[_i]; props[prop.name] = prop; // allow lookup by name } // map aliases for (var _i2 = 0; _i2 < aliases.length; _i2++) { var alias = aliases[_i2]; var pointsToProp = props[alias.pointsTo]; var aliasProp = { name: alias.name, alias: true, pointsTo: pointsToProp }; // add alias prop for parsing props.push(aliasProp); props[alias.name] = aliasProp; // allow lookup by name } })(); styfn$2.getDefaultProperty = function (name) { return this.getDefaultProperties()[name]; }; styfn$2.getDefaultProperties = function () { var _p = this._private; if (_p.defaultProperties != null) { return _p.defaultProperties; } var rawProps = extend({ // core props 'selection-box-color': '#ddd', 'selection-box-opacity': 0.65, 'selection-box-border-color': '#aaa', 'selection-box-border-width': 1, 'active-bg-color': 'black', 'active-bg-opacity': 0.15, 'active-bg-size': 30, 'outside-texture-bg-color': '#000', 'outside-texture-bg-opacity': 0.125, // common node/edge props 'events': 'yes', 'text-events': 'no', 'text-valign': 'top', 'text-halign': 'center', 'text-justification': 'auto', 'line-height': 1, 'color': '#000', 'text-outline-color': '#000', 'text-outline-width': 0, 'text-outline-opacity': 1, 'text-opacity': 1, 'text-decoration': 'none', 'text-transform': 'none', 'text-wrap': 'none', 'text-overflow-wrap': 'whitespace', 'text-max-width': 9999, 'text-background-color': '#000', 'text-background-opacity': 0, 'text-background-shape': 'rectangle', 'text-background-padding': 0, 'text-border-opacity': 0, 'text-border-width': 0, 'text-border-style': 'solid', 'text-border-color': '#000', 'font-family': 'Helvetica Neue, Helvetica, sans-serif', 'font-style': 'normal', 'font-weight': 'normal', 'font-size': 16, 'min-zoomed-font-size': 0, 'text-rotation': 'none', 'source-text-rotation': 'none', 'target-text-rotation': 'none', 'visibility': 'visible', 'display': 'element', 'opacity': 1, 'z-compound-depth': 'auto', 'z-index-compare': 'auto', 'z-index': 0, 'label': '', 'text-margin-x': 0, 'text-margin-y': 0, 'source-label': '', 'source-text-offset': 0, 'source-text-margin-x': 0, 'source-text-margin-y': 0, 'target-label': '', 'target-text-offset': 0, 'target-text-margin-x': 0, 'target-text-margin-y': 0, 'overlay-opacity': 0, 'overlay-color': '#000', 'overlay-padding': 10, 'overlay-shape': 'round-rectangle', 'overlay-corner-radius': 'auto', 'underlay-opacity': 0, 'underlay-color': '#000', 'underlay-padding': 10, 'underlay-shape': 'round-rectangle', 'underlay-corner-radius': 'auto', 'transition-property': 'none', 'transition-duration': 0, 'transition-delay': 0, 'transition-timing-function': 'linear', // node props 'background-blacken': 0, 'background-color': '#999', 'background-fill': 'solid', 'background-opacity': 1, 'background-image': 'none', 'background-image-crossorigin': 'anonymous', 'background-image-opacity': 1, 'background-image-containment': 'inside', 'background-image-smoothing': 'yes', 'background-position-x': '50%', 'background-position-y': '50%', 'background-offset-x': 0, 'background-offset-y': 0, 'background-width-relative-to': 'include-padding', 'background-height-relative-to': 'include-padding', 'background-repeat': 'no-repeat', 'background-fit': 'none', 'background-clip': 'node', 'background-width': 'auto', 'background-height': 'auto', 'border-color': '#000', 'border-opacity': 1, 'border-width': 0, 'border-style': 'solid', 'border-dash-pattern': [4, 2], 'border-dash-offset': 0, 'border-cap': 'butt', 'border-join': 'miter', 'border-position': 'center', 'outline-color': '#999', 'outline-opacity': 1, 'outline-width': 0, 'outline-offset': 0, 'outline-style': 'solid', 'height': 30, 'width': 30, 'shape': 'ellipse', 'shape-polygon-points': '-1, -1, 1, -1, 1, 1, -1, 1', 'corner-radius': 'auto', 'bounds-expansion': 0, // node gradient 'background-gradient-direction': 'to-bottom', 'background-gradient-stop-colors': '#999', 'background-gradient-stop-positions': '0%', // ghost props 'ghost': 'no', 'ghost-offset-y': 0, 'ghost-offset-x': 0, 'ghost-opacity': 0, // compound props 'padding': 0, 'padding-relative-to': 'width', 'position': 'origin', 'compound-sizing-wrt-labels': 'include', 'min-width': 0, 'min-width-bias-left': 0, 'min-width-bias-right': 0, 'min-height': 0, 'min-height-bias-top': 0, 'min-height-bias-bottom': 0 }, { // node pie bg 'pie-size': '100%' }, [{ name: 'pie-{{i}}-background-color', value: 'black' }, { name: 'pie-{{i}}-background-size', value: '0%' }, { name: 'pie-{{i}}-background-opacity', value: 1 }].reduce(function (css, prop) { for (var i = 1; i <= styfn$2.pieBackgroundN; i++) { var name = prop.name.replace('{{i}}', i); var val = prop.value; css[name] = val; } return css; }, {}), { // edge props 'line-style': 'solid', 'line-color': '#999', 'line-fill': 'solid', 'line-cap': 'butt', 'line-opacity': 1, 'line-gradient-stop-colors': '#999', 'line-gradient-stop-positions': '0%', 'control-point-step-size': 40, 'control-point-weights': 0.5, 'segment-weights': 0.5, 'segment-distances': 20, 'segment-radii': 15, 'radius-type': 'arc-radius', 'taxi-turn': '50%', 'taxi-radius': 15, 'taxi-turn-min-distance': 10, 'taxi-direction': 'auto', 'edge-distances': 'intersection', 'curve-style': 'haystack', 'haystack-radius': 0, 'arrow-scale': 1, 'loop-direction': '-45deg', 'loop-sweep': '-90deg', 'source-distance-from-node': 0, 'target-distance-from-node': 0, 'source-endpoint': 'outside-to-node', 'target-endpoint': 'outside-to-node', 'line-dash-pattern': [6, 3], 'line-dash-offset': 0 }, [{ name: 'arrow-shape', value: 'none' }, { name: 'arrow-color', value: '#999' }, { name: 'arrow-fill', value: 'filled' }, { name: 'arrow-width', value: 1 }].reduce(function (css, prop) { styfn$2.arrowPrefixes.forEach(function (prefix) { var name = prefix + '-' + prop.name; var val = prop.value; css[name] = val; }); return css; }, {})); var parsedProps = {}; for (var i = 0; i < this.properties.length; i++) { var prop = this.properties[i]; if (prop.pointsTo) { continue; } var name = prop.name; var val = rawProps[name]; var parsedProp = this.parse(name, val); parsedProps[name] = parsedProp; } _p.defaultProperties = parsedProps; return _p.defaultProperties; }; styfn$2.addDefaultStylesheet = function () { this.selector(':parent').css({ 'shape': 'rectangle', 'padding': 10, 'background-color': '#eee', 'border-color': '#ccc', 'border-width': 1 }).selector('edge').css({ 'width': 3 }).selector(':loop').css({ 'curve-style': 'bezier' }).selector('edge:compound').css({ 'curve-style': 'bezier', 'source-endpoint': 'outside-to-line', 'target-endpoint': 'outside-to-line' }).selector(':selected').css({ 'background-color': '#0169D9', 'line-color': '#0169D9', 'source-arrow-color': '#0169D9', 'target-arrow-color': '#0169D9', 'mid-source-arrow-color': '#0169D9', 'mid-target-arrow-color': '#0169D9' }).selector(':parent:selected').css({ 'background-color': '#CCE1F9', 'border-color': '#aec8e5' }).selector(':active').css({ 'overlay-color': 'black', 'overlay-padding': 10, 'overlay-opacity': 0.25 }); this.defaultLength = this.length; }; var styfn$1 = {}; // a caching layer for property parsing styfn$1.parse = function (name, value, propIsBypass, propIsFlat) { var self = this; // function values can't be cached in all cases, and there isn't much benefit of caching them anyway if (fn$6(value)) { return self.parseImplWarn(name, value, propIsBypass, propIsFlat); } var flatKey = propIsFlat === 'mapping' || propIsFlat === true || propIsFlat === false || propIsFlat == null ? 'dontcare' : propIsFlat; var bypassKey = propIsBypass ? 't' : 'f'; var valueKey = '' + value; var argHash = hashStrings(name, valueKey, bypassKey, flatKey); var propCache = self.propCache = self.propCache || []; var ret; if (!(ret = propCache[argHash])) { ret = propCache[argHash] = self.parseImplWarn(name, value, propIsBypass, propIsFlat); } // - bypasses can't be shared b/c the value can be changed by animations or otherwise overridden // - mappings can't be shared b/c mappings are per-element if (propIsBypass || propIsFlat === 'mapping') { // need a copy since props are mutated later in their lifecycles ret = copy(ret); if (ret) { ret.value = copy(ret.value); // because it could be an array, e.g. colour } } return ret; }; styfn$1.parseImplWarn = function (name, value, propIsBypass, propIsFlat) { var prop = this.parseImpl(name, value, propIsBypass, propIsFlat); if (!prop && value != null) { warn("The style property `".concat(name, ": ").concat(value, "` is invalid")); } if (prop && (prop.name === 'width' || prop.name === 'height') && value === 'label') { warn('The style value of `label` is deprecated for `' + prop.name + '`'); } return prop; }; // parse a property; return null on invalid; return parsed property otherwise // fields : // - name : the name of the property // - value : the parsed, native-typed value of the property // - strValue : a string value that represents the property value in valid css // - bypass : true iff the property is a bypass property styfn$1.parseImpl = function (name, value, propIsBypass, propIsFlat) { var self = this; name = camel2dash(name); // make sure the property name is in dash form (e.g. 'property-name' not 'propertyName') var property = self.properties[name]; var passedValue = value; var types = self.types; if (!property) { return null; } // return null on property of unknown name if (value === undefined) { return null; } // can't assign undefined // the property may be an alias if (property.alias) { property = property.pointsTo; name = property.name; } var valueIsString = string(value); if (valueIsString) { // trim the value to make parsing easier value = value.trim(); } var type = property.type; if (!type) { return null; } // no type, no luck // check if bypass is null or empty string (i.e. indication to delete bypass property) if (propIsBypass && (value === '' || value === null)) { return { name: name, value: value, bypass: true, deleteBypass: true }; } // check if value is a function used as a mapper if (fn$6(value)) { return { name: name, value: value, strValue: 'fn', mapped: types.fn, bypass: propIsBypass }; } // check if value is mapped var data, mapData; if (!valueIsString || propIsFlat || value.length < 7 || value[1] !== 'a') ; else if (value.length >= 7 && value[0] === 'd' && (data = new RegExp(types.data.regex).exec(value))) { if (propIsBypass) { return false; } // mappers not allowed in bypass var mapped = types.data; return { name: name, value: data, strValue: '' + value, mapped: mapped, field: data[1], bypass: propIsBypass }; } else if (value.length >= 10 && value[0] === 'm' && (mapData = new RegExp(types.mapData.regex).exec(value))) { if (propIsBypass) { return false; } // mappers not allowed in bypass if (type.multiple) { return false; } // impossible to map to num var _mapped = types.mapData; // we can map only if the type is a colour or a number if (!(type.color || type.number)) { return false; } var valueMin = this.parse(name, mapData[4]); // parse to validate if (!valueMin || valueMin.mapped) { return false; } // can't be invalid or mapped var valueMax = this.parse(name, mapData[5]); // parse to validate if (!valueMax || valueMax.mapped) { return false; } // can't be invalid or mapped // check if valueMin and valueMax are the same if (valueMin.pfValue === valueMax.pfValue || valueMin.strValue === valueMax.strValue) { warn('`' + name + ': ' + value + '` is not a valid mapper because the output range is zero; converting to `' + name + ': ' + valueMin.strValue + '`'); return this.parse(name, valueMin.strValue); // can't make much of a mapper without a range } else if (type.color) { var c1 = valueMin.value; var c2 = valueMax.value; var same = c1[0] === c2[0] // red && c1[1] === c2[1] // green && c1[2] === c2[2] // blue && ( // optional alpha c1[3] === c2[3] // same alpha outright || (c1[3] == null || c1[3] === 1 // full opacity for colour 1? ) && (c2[3] == null || c2[3] === 1) // full opacity for colour 2? ); if (same) { return false; } // can't make a mapper without a range } return { name: name, value: mapData, strValue: '' + value, mapped: _mapped, field: mapData[1], fieldMin: parseFloat(mapData[2]), // min & max are numeric fieldMax: parseFloat(mapData[3]), valueMin: valueMin.value, valueMax: valueMax.value, bypass: propIsBypass }; } if (type.multiple && propIsFlat !== 'multiple') { var vals; if (valueIsString) { vals = value.split(/\s+/); } else if (array(value)) { vals = value; } else { vals = [value]; } if (type.evenMultiple && vals.length % 2 !== 0) { return null; } var valArr = []; var unitsArr = []; var pfValArr = []; var strVal = ''; var hasEnum = false; for (var i = 0; i < vals.length; i++) { var p = self.parse(name, vals[i], propIsBypass, 'multiple'); hasEnum = hasEnum || string(p.value); valArr.push(p.value); pfValArr.push(p.pfValue != null ? p.pfValue : p.value); unitsArr.push(p.units); strVal += (i > 0 ? ' ' : '') + p.strValue; } if (type.validate && !type.validate(valArr, unitsArr)) { return null; } if (type.singleEnum && hasEnum) { if (valArr.length === 1 && string(valArr[0])) { return { name: name, value: valArr[0], strValue: valArr[0], bypass: propIsBypass }; } else { return null; } } return { name: name, value: valArr, pfValue: pfValArr, strValue: strVal, bypass: propIsBypass, units: unitsArr }; } // several types also allow enums var checkEnums = function checkEnums() { for (var _i = 0; _i < type.enums.length; _i++) { var en = type.enums[_i]; if (en === value) { return { name: name, value: value, strValue: '' + value, bypass: propIsBypass }; } } return null; }; // check the type and return the appropriate object if (type.number) { var units; var implicitUnits = 'px'; // not set => px if (type.units) { // use specified units if set units = type.units; } if (type.implicitUnits) { implicitUnits = type.implicitUnits; } if (!type.unitless) { if (valueIsString) { var unitsRegex = 'px|em' + (type.allowPercent ? '|\\%' : ''); if (units) { unitsRegex = units; } // only allow explicit units if so set var match = value.match('^(' + number + ')(' + unitsRegex + ')?' + '$'); if (match) { value = match[1]; units = match[2] || implicitUnits; } } else if (!units || type.implicitUnits) { units = implicitUnits; // implicitly px if unspecified } } value = parseFloat(value); // if not a number and enums not allowed, then the value is invalid if (isNaN(value) && type.enums === undefined) { return null; } // check if this number type also accepts special keywords in place of numbers // (i.e. `left`, `auto`, etc) if (isNaN(value) && type.enums !== undefined) { value = passedValue; return checkEnums(); } // check if value must be an integer if (type.integer && !integer(value)) { return null; } // check value is within range if (type.min !== undefined && (value < type.min || type.strictMin && value === type.min) || type.max !== undefined && (value > type.max || type.strictMax && value === type.max)) { return null; } var ret = { name: name, value: value, strValue: '' + value + (units ? units : ''), units: units, bypass: propIsBypass }; // normalise value in pixels if (type.unitless || units !== 'px' && units !== 'em') { ret.pfValue = value; } else { ret.pfValue = units === 'px' || !units ? value : this.getEmSizeInPixels() * value; } // normalise value in ms if (units === 'ms' || units === 's') { ret.pfValue = units === 'ms' ? value : 1000 * value; } // normalise value in rad if (units === 'deg' || units === 'rad') { ret.pfValue = units === 'rad' ? value : deg2rad(value); } // normalize value in % if (units === '%') { ret.pfValue = value / 100; } return ret; } else if (type.propList) { var props = []; var propsStr = '' + value; if (propsStr === 'none') ; else { // go over each prop var propsSplit = propsStr.split(/\s*,\s*|\s+/); for (var _i2 = 0; _i2 < propsSplit.length; _i2++) { var propName = propsSplit[_i2].trim(); if (self.properties[propName]) { props.push(propName); } else { warn('`' + propName + '` is not a valid property name'); } } if (props.length === 0) { return null; } } return { name: name, value: props, strValue: props.length === 0 ? 'none' : props.join(' '), bypass: propIsBypass }; } else if (type.color) { var tuple = color2tuple(value); if (!tuple) { return null; } return { name: name, value: tuple, pfValue: tuple, strValue: 'rgb(' + tuple[0] + ',' + tuple[1] + ',' + tuple[2] + ')', // n.b. no spaces b/c of multiple support bypass: propIsBypass }; } else if (type.regex || type.regexes) { // first check enums if (type.enums) { var enumProp = checkEnums(); if (enumProp) { return enumProp; } } var regexes = type.regexes ? type.regexes : [type.regex]; for (var _i3 = 0; _i3 < regexes.length; _i3++) { var regex = new RegExp(regexes[_i3]); // make a regex from the type string var m = regex.exec(value); if (m) { // regex matches return { name: name, value: type.singleRegexMatchValue ? m[1] : m, strValue: '' + value, bypass: propIsBypass }; } } return null; // didn't match any } else if (type.string) { // just return return { name: name, value: '' + value, strValue: '' + value, bypass: propIsBypass }; } else if (type.enums) { // check enums last because it's a combo type in others return checkEnums(); } else { return null; // not a type we can handle } }; var Style = function Style(cy) { if (!(this instanceof Style)) { return new Style(cy); } if (!core(cy)) { error('A style must have a core reference'); return; } this._private = { cy: cy, coreStyle: {} }; this.length = 0; this.resetToDefault(); }; var styfn = Style.prototype; styfn.instanceString = function () { return 'style'; }; // remove all contexts styfn.clear = function () { var _p = this._private; var cy = _p.cy; var eles = cy.elements(); for (var i = 0; i < this.length; i++) { this[i] = undefined; } this.length = 0; _p.contextStyles = {}; _p.propDiffs = {}; this.cleanElements(eles, true); eles.forEach(function (ele) { var ele_p = ele[0]._private; ele_p.styleDirty = true; ele_p.appliedInitStyle = false; }); return this; // chaining }; styfn.resetToDefault = function () { this.clear(); this.addDefaultStylesheet(); return this; }; // builds a style object for the 'core' selector styfn.core = function (propName) { return this._private.coreStyle[propName] || this.getDefaultProperty(propName); }; // create a new context from the specified selector string and switch to that context styfn.selector = function (selectorStr) { // 'core' is a special case and does not need a selector var selector = selectorStr === 'core' ? null : new Selector(selectorStr); var i = this.length++; // new context means new index this[i] = { selector: selector, properties: [], mappedProperties: [], index: i }; return this; // chaining }; // add one or many css rules to the current context styfn.css = function () { var self = this; var args = arguments; if (args.length === 1) { var map = args[0]; for (var i = 0; i < self.properties.length; i++) { var prop = self.properties[i]; var mapVal = map[prop.name]; if (mapVal === undefined) { mapVal = map[dash2camel(prop.name)]; } if (mapVal !== undefined) { this.cssRule(prop.name, mapVal); } } } else if (args.length === 2) { this.cssRule(args[0], args[1]); } // do nothing if args are invalid return this; // chaining }; styfn.style = styfn.css; // add a single css rule to the current context styfn.cssRule = function (name, value) { // name-value pair var property = this.parse(name, value); // add property to current context if valid if (property) { var i = this.length - 1; this[i].properties.push(property); this[i].properties[property.name] = property; // allow access by name as well if (property.name.match(/pie-(\d+)-background-size/) && property.value) { this._private.hasPie = true; } if (property.mapped) { this[i].mappedProperties.push(property); } // add to core style if necessary var currentSelectorIsCore = !this[i].selector; if (currentSelectorIsCore) { this._private.coreStyle[property.name] = property; } } return this; // chaining }; styfn.append = function (style) { if (stylesheet(style)) { style.appendToStyle(this); } else if (array(style)) { this.appendFromJson(style); } else if (string(style)) { this.appendFromString(style); } // you probably wouldn't want to append a Style, since you'd duplicate the default parts return this; }; // static function Style.fromJson = function (cy, json) { var style = new Style(cy); style.fromJson(json); return style; }; Style.fromString = function (cy, string) { return new Style(cy).fromString(string); }; [styfn$8, styfn$7, styfn$6, styfn$5, styfn$4, styfn$3, styfn$2, styfn$1].forEach(function (props) { extend(styfn, props); }); Style.types = styfn.types; Style.properties = styfn.properties; Style.propertyGroups = styfn.propertyGroups; Style.propertyGroupNames = styfn.propertyGroupNames; Style.propertyGroupKeys = styfn.propertyGroupKeys; var corefn$2 = { style: function style(newStyle) { if (newStyle) { var s = this.setStyle(newStyle); s.update(); } return this._private.style; }, setStyle: function setStyle(style) { var _p = this._private; if (stylesheet(style)) { _p.style = style.generateStyle(this); } else if (array(style)) { _p.style = Style.fromJson(this, style); } else if (string(style)) { _p.style = Style.fromString(this, style); } else { _p.style = Style(this); } return _p.style; }, // e.g. cy.data() changed => recalc ele mappers updateStyle: function updateStyle() { this.mutableElements().updateStyle(); // just send to all eles } }; var defaultSelectionType = 'single'; var corefn$1 = { autolock: function autolock(bool) { if (bool !== undefined) { this._private.autolock = bool ? true : false; } else { return this._private.autolock; } return this; // chaining }, autoungrabify: function autoungrabify(bool) { if (bool !== undefined) { this._private.autoungrabify = bool ? true : false; } else { return this._private.autoungrabify; } return this; // chaining }, autounselectify: function autounselectify(bool) { if (bool !== undefined) { this._private.autounselectify = bool ? true : false; } else { return this._private.autounselectify; } return this; // chaining }, selectionType: function selectionType(selType) { var _p = this._private; if (_p.selectionType == null) { _p.selectionType = defaultSelectionType; } if (selType !== undefined) { if (selType === 'additive' || selType === 'single') { _p.selectionType = selType; } } else { return _p.selectionType; } return this; }, panningEnabled: function panningEnabled(bool) { if (bool !== undefined) { this._private.panningEnabled = bool ? true : false; } else { return this._private.panningEnabled; } return this; // chaining }, userPanningEnabled: function userPanningEnabled(bool) { if (bool !== undefined) { this._private.userPanningEnabled = bool ? true : false; } else { return this._private.userPanningEnabled; } return this; // chaining }, zoomingEnabled: function zoomingEnabled(bool) { if (bool !== undefined) { this._private.zoomingEnabled = bool ? true : false; } else { return this._private.zoomingEnabled; } return this; // chaining }, userZoomingEnabled: function userZoomingEnabled(bool) { if (bool !== undefined) { this._private.userZoomingEnabled = bool ? true : false; } else { return this._private.userZoomingEnabled; } return this; // chaining }, boxSelectionEnabled: function boxSelectionEnabled(bool) { if (bool !== undefined) { this._private.boxSelectionEnabled = bool ? true : false; } else { return this._private.boxSelectionEnabled; } return this; // chaining }, pan: function pan() { var args = arguments; var pan = this._private.pan; var dim, val, dims, x, y; switch (args.length) { case 0: // .pan() return pan; case 1: if (string(args[0])) { // .pan('x') dim = args[0]; return pan[dim]; } else if (plainObject(args[0])) { // .pan({ x: 0, y: 100 }) if (!this._private.panningEnabled) { return this; } dims = args[0]; x = dims.x; y = dims.y; if (number$1(x)) { pan.x = x; } if (number$1(y)) { pan.y = y; } this.emit('pan viewport'); } break; case 2: // .pan('x', 100) if (!this._private.panningEnabled) { return this; } dim = args[0]; val = args[1]; if ((dim === 'x' || dim === 'y') && number$1(val)) { pan[dim] = val; } this.emit('pan viewport'); break; // invalid } this.notify('viewport'); return this; // chaining }, panBy: function panBy(arg0, arg1) { var args = arguments; var pan = this._private.pan; var dim, val, dims, x, y; if (!this._private.panningEnabled) { return this; } switch (args.length) { case 1: if (plainObject(arg0)) { // .panBy({ x: 0, y: 100 }) dims = args[0]; x = dims.x; y = dims.y; if (number$1(x)) { pan.x += x; } if (number$1(y)) { pan.y += y; } this.emit('pan viewport'); } break; case 2: // .panBy('x', 100) dim = arg0; val = arg1; if ((dim === 'x' || dim === 'y') && number$1(val)) { pan[dim] += val; } this.emit('pan viewport'); break; // invalid } this.notify('viewport'); return this; // chaining }, fit: function fit(elements, padding) { var viewportState = this.getFitViewport(elements, padding); if (viewportState) { var _p = this._private; _p.zoom = viewportState.zoom; _p.pan = viewportState.pan; this.emit('pan zoom viewport'); this.notify('viewport'); } return this; // chaining }, getFitViewport: function getFitViewport(elements, padding) { if (number$1(elements) && padding === undefined) { // elements is optional padding = elements; elements = undefined; } if (!this._private.panningEnabled || !this._private.zoomingEnabled) { return; } var bb; if (string(elements)) { var sel = elements; elements = this.$(sel); } else if (boundingBox(elements)) { // assume bb var bbe = elements; bb = { x1: bbe.x1, y1: bbe.y1, x2: bbe.x2, y2: bbe.y2 }; bb.w = bb.x2 - bb.x1; bb.h = bb.y2 - bb.y1; } else if (!elementOrCollection(elements)) { elements = this.mutableElements(); } if (elementOrCollection(elements) && elements.empty()) { return; } // can't fit to nothing bb = bb || elements.boundingBox(); var w = this.width(); var h = this.height(); var zoom; padding = number$1(padding) ? padding : 0; if (!isNaN(w) && !isNaN(h) && w > 0 && h > 0 && !isNaN(bb.w) && !isNaN(bb.h) && bb.w > 0 && bb.h > 0) { zoom = Math.min((w - 2 * padding) / bb.w, (h - 2 * padding) / bb.h); // crop zoom zoom = zoom > this._private.maxZoom ? this._private.maxZoom : zoom; zoom = zoom < this._private.minZoom ? this._private.minZoom : zoom; var pan = { // now pan to middle x: (w - zoom * (bb.x1 + bb.x2)) / 2, y: (h - zoom * (bb.y1 + bb.y2)) / 2 }; return { zoom: zoom, pan: pan }; } return; }, zoomRange: function zoomRange(min, max) { var _p = this._private; if (max == null) { var opts = min; min = opts.min; max = opts.max; } if (number$1(min) && number$1(max) && min <= max) { _p.minZoom = min; _p.maxZoom = max; } else if (number$1(min) && max === undefined && min <= _p.maxZoom) { _p.minZoom = min; } else if (number$1(max) && min === undefined && max >= _p.minZoom) { _p.maxZoom = max; } return this; }, minZoom: function minZoom(zoom) { if (zoom === undefined) { return this._private.minZoom; } else { return this.zoomRange({ min: zoom }); } }, maxZoom: function maxZoom(zoom) { if (zoom === undefined) { return this._private.maxZoom; } else { return this.zoomRange({ max: zoom }); } }, getZoomedViewport: function getZoomedViewport(params) { var _p = this._private; var currentPan = _p.pan; var currentZoom = _p.zoom; var pos; // in rendered px var zoom; var bail = false; if (!_p.zoomingEnabled) { // zooming disabled bail = true; } if (number$1(params)) { // then set the zoom zoom = params; } else if (plainObject(params)) { // then zoom about a point zoom = params.level; if (params.position != null) { pos = modelToRenderedPosition(params.position, currentZoom, currentPan); } else if (params.renderedPosition != null) { pos = params.renderedPosition; } if (pos != null && !_p.panningEnabled) { // panning disabled bail = true; } } // crop zoom zoom = zoom > _p.maxZoom ? _p.maxZoom : zoom; zoom = zoom < _p.minZoom ? _p.minZoom : zoom; // can't zoom with invalid params if (bail || !number$1(zoom) || zoom === currentZoom || pos != null && (!number$1(pos.x) || !number$1(pos.y))) { return null; } if (pos != null) { // set zoom about position var pan1 = currentPan; var zoom1 = currentZoom; var zoom2 = zoom; var pan2 = { x: -zoom2 / zoom1 * (pos.x - pan1.x) + pos.x, y: -zoom2 / zoom1 * (pos.y - pan1.y) + pos.y }; return { zoomed: true, panned: true, zoom: zoom2, pan: pan2 }; } else { // just set the zoom return { zoomed: true, panned: false, zoom: zoom, pan: currentPan }; } }, zoom: function zoom(params) { if (params === undefined) { // get return this._private.zoom; } else { // set var vp = this.getZoomedViewport(params); var _p = this._private; if (vp == null || !vp.zoomed) { return this; } _p.zoom = vp.zoom; if (vp.panned) { _p.pan.x = vp.pan.x; _p.pan.y = vp.pan.y; } this.emit('zoom' + (vp.panned ? ' pan' : '') + ' viewport'); this.notify('viewport'); return this; // chaining } }, viewport: function viewport(opts) { var _p = this._private; var zoomDefd = true; var panDefd = true; var events = []; // to trigger var zoomFailed = false; var panFailed = false; if (!opts) { return this; } if (!number$1(opts.zoom)) { zoomDefd = false; } if (!plainObject(opts.pan)) { panDefd = false; } if (!zoomDefd && !panDefd) { return this; } if (zoomDefd) { var z = opts.zoom; if (z < _p.minZoom || z > _p.maxZoom || !_p.zoomingEnabled) { zoomFailed = true; } else { _p.zoom = z; events.push('zoom'); } } if (panDefd && (!zoomFailed || !opts.cancelOnFailedZoom) && _p.panningEnabled) { var p = opts.pan; if (number$1(p.x)) { _p.pan.x = p.x; panFailed = false; } if (number$1(p.y)) { _p.pan.y = p.y; panFailed = false; } if (!panFailed) { events.push('pan'); } } if (events.length > 0) { events.push('viewport'); this.emit(events.join(' ')); this.notify('viewport'); } return this; // chaining }, center: function center(elements) { var pan = this.getCenterPan(elements); if (pan) { this._private.pan = pan; this.emit('pan viewport'); this.notify('viewport'); } return this; // chaining }, getCenterPan: function getCenterPan(elements, zoom) { if (!this._private.panningEnabled) { return; } if (string(elements)) { var selector = elements; elements = this.mutableElements().filter(selector); } else if (!elementOrCollection(elements)) { elements = this.mutableElements(); } if (elements.length === 0) { return; } // can't centre pan to nothing var bb = elements.boundingBox(); var w = this.width(); var h = this.height(); zoom = zoom === undefined ? this._private.zoom : zoom; var pan = { // middle x: (w - zoom * (bb.x1 + bb.x2)) / 2, y: (h - zoom * (bb.y1 + bb.y2)) / 2 }; return pan; }, reset: function reset() { if (!this._private.panningEnabled || !this._private.zoomingEnabled) { return this; } this.viewport({ pan: { x: 0, y: 0 }, zoom: 1 }); return this; // chaining }, invalidateSize: function invalidateSize() { this._private.sizeCache = null; }, size: function size() { var _p = this._private; var container = _p.container; var cy = this; return _p.sizeCache = _p.sizeCache || (container ? function () { var style = cy.window().getComputedStyle(container); var val = function val(name) { return parseFloat(style.getPropertyValue(name)); }; return { width: container.clientWidth - val('padding-left') - val('padding-right'), height: container.clientHeight - val('padding-top') - val('padding-bottom') }; }() : { // fallback if no container (not 0 b/c can be used for dividing etc) width: 1, height: 1 }); }, width: function width() { return this.size().width; }, height: function height() { return this.size().height; }, extent: function extent() { var pan = this._private.pan; var zoom = this._private.zoom; var rb = this.renderedExtent(); var b = { x1: (rb.x1 - pan.x) / zoom, x2: (rb.x2 - pan.x) / zoom, y1: (rb.y1 - pan.y) / zoom, y2: (rb.y2 - pan.y) / zoom }; b.w = b.x2 - b.x1; b.h = b.y2 - b.y1; return b; }, renderedExtent: function renderedExtent() { var width = this.width(); var height = this.height(); return { x1: 0, y1: 0, x2: width, y2: height, w: width, h: height }; }, multiClickDebounceTime: function multiClickDebounceTime(_int) { if (_int) this._private.multiClickDebounceTime = _int;else return this._private.multiClickDebounceTime; return this; // chaining } }; // aliases corefn$1.centre = corefn$1.center; // backwards compatibility corefn$1.autolockNodes = corefn$1.autolock; corefn$1.autoungrabifyNodes = corefn$1.autoungrabify; var fn = { data: define.data({ field: 'data', bindingEvent: 'data', allowBinding: true, allowSetting: true, settingEvent: 'data', settingTriggersEvent: true, triggerFnName: 'trigger', allowGetting: true, updateStyle: true }), removeData: define.removeData({ field: 'data', event: 'data', triggerFnName: 'trigger', triggerEvent: true, updateStyle: true }), scratch: define.data({ field: 'scratch', bindingEvent: 'scratch', allowBinding: true, allowSetting: true, settingEvent: 'scratch', settingTriggersEvent: true, triggerFnName: 'trigger', allowGetting: true, updateStyle: true }), removeScratch: define.removeData({ field: 'scratch', event: 'scratch', triggerFnName: 'trigger', triggerEvent: true, updateStyle: true }) }; // aliases fn.attr = fn.data; fn.removeAttr = fn.removeData; var Core = function Core(opts) { var cy = this; opts = extend({}, opts); var container = opts.container; // allow for passing a wrapped jquery object // e.g. cytoscape({ container: $('#cy') }) if (container && !htmlElement(container) && htmlElement(container[0])) { container = container[0]; } var reg = container ? container._cyreg : null; // e.g. already registered some info (e.g. readies) via jquery reg = reg || {}; if (reg && reg.cy) { reg.cy.destroy(); reg = {}; // old instance => replace reg completely } var readies = reg.readies = reg.readies || []; if (container) { container._cyreg = reg; } // make sure container assoc'd reg points to this cy reg.cy = cy; var head = _window !== undefined && container !== undefined && !opts.headless; var options = opts; options.layout = extend({ name: head ? 'grid' : 'null' }, options.layout); options.renderer = extend({ name: head ? 'canvas' : 'null' }, options.renderer); var defVal = function defVal(def, val, altVal) { if (val !== undefined) { return val; } else if (altVal !== undefined) { return altVal; } else { return def; } }; var _p = this._private = { container: container, // html dom ele container ready: false, // whether ready has been triggered options: options, // cached options elements: new Collection(this), // elements in the graph listeners: [], // list of listeners aniEles: new Collection(this), // elements being animated data: options.data || {}, // data for the core scratch: {}, // scratch object for core layout: null, renderer: null, destroyed: false, // whether destroy was called notificationsEnabled: true, // whether notifications are sent to the renderer minZoom: 1e-50, maxZoom: 1e50, zoomingEnabled: defVal(true, options.zoomingEnabled), userZoomingEnabled: defVal(true, options.userZoomingEnabled), panningEnabled: defVal(true, options.panningEnabled), userPanningEnabled: defVal(true, options.userPanningEnabled), boxSelectionEnabled: defVal(true, options.boxSelectionEnabled), autolock: defVal(false, options.autolock, options.autolockNodes), autoungrabify: defVal(false, options.autoungrabify, options.autoungrabifyNodes), autounselectify: defVal(false, options.autounselectify), styleEnabled: options.styleEnabled === undefined ? head : options.styleEnabled, zoom: number$1(options.zoom) ? options.zoom : 1, pan: { x: plainObject(options.pan) && number$1(options.pan.x) ? options.pan.x : 0, y: plainObject(options.pan) && number$1(options.pan.y) ? options.pan.y : 0 }, animation: { // object for currently-running animations current: [], queue: [] }, hasCompoundNodes: false, multiClickDebounceTime: defVal(250, options.multiClickDebounceTime) }; this.createEmitter(); // set selection type this.selectionType(options.selectionType); // init zoom bounds this.zoomRange({ min: options.minZoom, max: options.maxZoom }); var loadExtData = function loadExtData(extData, next) { var anyIsPromise = extData.some(promise); if (anyIsPromise) { return Promise$1.all(extData).then(next); // load all data asynchronously, then exec rest of init } else { next(extData); // exec synchronously for convenience } }; // start with the default stylesheet so we have something before loading an external stylesheet if (_p.styleEnabled) { cy.setStyle([]); } // create the renderer var rendererOptions = extend({}, options, options.renderer); // allow rendering hints in top level options cy.initRenderer(rendererOptions); var setElesAndLayout = function setElesAndLayout(elements, onload, ondone) { cy.notifications(false); // remove old elements var oldEles = cy.mutableElements(); if (oldEles.length > 0) { oldEles.remove(); } if (elements != null) { if (plainObject(elements) || array(elements)) { cy.add(elements); } } cy.one('layoutready', function (e) { cy.notifications(true); cy.emit(e); // we missed this event by turning notifications off, so pass it on cy.one('load', onload); cy.emitAndNotify('load'); }).one('layoutstop', function () { cy.one('done', ondone); cy.emit('done'); }); var layoutOpts = extend({}, cy._private.options.layout); layoutOpts.eles = cy.elements(); cy.layout(layoutOpts).run(); }; loadExtData([options.style, options.elements], function (thens) { var initStyle = thens[0]; var initEles = thens[1]; // init style if (_p.styleEnabled) { cy.style().append(initStyle); } // initial load setElesAndLayout(initEles, function () { // onready cy.startAnimationLoop(); _p.ready = true; // if a ready callback is specified as an option, the bind it if (fn$6(options.ready)) { cy.on('ready', options.ready); } // bind all the ready handlers registered before creating this instance for (var i = 0; i < readies.length; i++) { var fn = readies[i]; cy.on('ready', fn); } if (reg) { reg.readies = []; } // clear b/c we've bound them all and don't want to keep it around in case a new core uses the same div etc cy.emit('ready'); }, options.done); }); }; var corefn = Core.prototype; // short alias extend(corefn, { instanceString: function instanceString() { return 'core'; }, isReady: function isReady() { return this._private.ready; }, destroyed: function destroyed() { return this._private.destroyed; }, ready: function ready(fn) { if (this.isReady()) { this.emitter().emit('ready', [], fn); // just calls fn as though triggered via ready event } else { this.on('ready', fn); } return this; }, destroy: function destroy() { var cy = this; if (cy.destroyed()) return; cy.stopAnimationLoop(); cy.destroyRenderer(); this.emit('destroy'); cy._private.destroyed = true; return cy; }, hasElementWithId: function hasElementWithId(id) { return this._private.elements.hasElementWithId(id); }, getElementById: function getElementById(id) { return this._private.elements.getElementById(id); }, hasCompoundNodes: function hasCompoundNodes() { return this._private.hasCompoundNodes; }, headless: function headless() { return this._private.renderer.isHeadless(); }, styleEnabled: function styleEnabled() { return this._private.styleEnabled; }, addToPool: function addToPool(eles) { this._private.elements.merge(eles); return this; // chaining }, removeFromPool: function removeFromPool(eles) { this._private.elements.unmerge(eles); return this; }, container: function container() { return this._private.container || null; }, window: function window() { var container = this._private.container; if (container == null) return _window; var ownerDocument = this._private.container.ownerDocument; if (ownerDocument === undefined || ownerDocument == null) { return _window; } return ownerDocument.defaultView || _window; }, mount: function mount(container) { if (container == null) { return; } var cy = this; var _p = cy._private; var options = _p.options; if (!htmlElement(container) && htmlElement(container[0])) { container = container[0]; } cy.stopAnimationLoop(); cy.destroyRenderer(); _p.container = container; _p.styleEnabled = true; cy.invalidateSize(); cy.initRenderer(extend({}, options, options.renderer, { // allow custom renderer name to be re-used, otherwise use canvas name: options.renderer.name === 'null' ? 'canvas' : options.renderer.name })); cy.startAnimationLoop(); cy.style(options.style); cy.emit('mount'); return cy; }, unmount: function unmount() { var cy = this; cy.stopAnimationLoop(); cy.destroyRenderer(); cy.initRenderer({ name: 'null' }); cy.emit('unmount'); return cy; }, options: function options() { return copy(this._private.options); }, json: function json(obj) { var cy = this; var _p = cy._private; var eles = cy.mutableElements(); var getFreshRef = function getFreshRef(ele) { return cy.getElementById(ele.id()); }; if (plainObject(obj)) { // set cy.startBatch(); if (obj.elements) { var idInJson = {}; var updateEles = function updateEles(jsons, gr) { var toAdd = []; var toMod = []; for (var i = 0; i < jsons.length; i++) { var json = jsons[i]; if (!json.data.id) { warn('cy.json() cannot handle elements without an ID attribute'); continue; } var id = '' + json.data.id; // id must be string var ele = cy.getElementById(id); idInJson[id] = true; if (ele.length !== 0) { // existing element should be updated toMod.push({ ele: ele, json: json }); } else { // otherwise should be added if (gr) { json.group = gr; toAdd.push(json); } else { toAdd.push(json); } } } cy.add(toAdd); for (var _i = 0; _i < toMod.length; _i++) { var _toMod$_i = toMod[_i], _ele = _toMod$_i.ele, _json = _toMod$_i.json; _ele.json(_json); } }; if (array(obj.elements)) { // elements: [] updateEles(obj.elements); } else { // elements: { nodes: [], edges: [] } var grs = ['nodes', 'edges']; for (var i = 0; i < grs.length; i++) { var gr = grs[i]; var elements = obj.elements[gr]; if (array(elements)) { updateEles(elements, gr); } } } var parentsToRemove = cy.collection(); eles.filter(function (ele) { return !idInJson[ele.id()]; }).forEach(function (ele) { if (ele.isParent()) { parentsToRemove.merge(ele); } else { ele.remove(); } }); // so that children are not removed w/parent parentsToRemove.forEach(function (ele) { return ele.children().move({ parent: null }); }); // intermediate parents may be moved by prior line, so make sure we remove by fresh refs parentsToRemove.forEach(function (ele) { return getFreshRef(ele).remove(); }); } if (obj.style) { cy.style(obj.style); } if (obj.zoom != null && obj.zoom !== _p.zoom) { cy.zoom(obj.zoom); } if (obj.pan) { if (obj.pan.x !== _p.pan.x || obj.pan.y !== _p.pan.y) { cy.pan(obj.pan); } } if (obj.data) { cy.data(obj.data); } var fields = ['minZoom', 'maxZoom', 'zoomingEnabled', 'userZoomingEnabled', 'panningEnabled', 'userPanningEnabled', 'boxSelectionEnabled', 'autolock', 'autoungrabify', 'autounselectify', 'multiClickDebounceTime']; for (var _i2 = 0; _i2 < fields.length; _i2++) { var f = fields[_i2]; if (obj[f] != null) { cy[f](obj[f]); } } cy.endBatch(); return this; // chaining } else { // get var flat = !!obj; var json = {}; if (flat) { json.elements = this.elements().map(function (ele) { return ele.json(); }); } else { json.elements = {}; eles.forEach(function (ele) { var group = ele.group(); if (!json.elements[group]) { json.elements[group] = []; } json.elements[group].push(ele.json()); }); } if (this._private.styleEnabled) { json.style = cy.style().json(); } json.data = copy(cy.data()); var options = _p.options; json.zoomingEnabled = _p.zoomingEnabled; json.userZoomingEnabled = _p.userZoomingEnabled; json.zoom = _p.zoom; json.minZoom = _p.minZoom; json.maxZoom = _p.maxZoom; json.panningEnabled = _p.panningEnabled; json.userPanningEnabled = _p.userPanningEnabled; json.pan = copy(_p.pan); json.boxSelectionEnabled = _p.boxSelectionEnabled; json.renderer = copy(options.renderer); json.hideEdgesOnViewport = options.hideEdgesOnViewport; json.textureOnViewport = options.textureOnViewport; json.wheelSensitivity = options.wheelSensitivity; json.motionBlur = options.motionBlur; json.multiClickDebounceTime = options.multiClickDebounceTime; return json; } } }); corefn.$id = corefn.getElementById; [corefn$9, corefn$8, elesfn, corefn$7, corefn$6, corefn$5, corefn$4, corefn$3, corefn$2, corefn$1, fn].forEach(function (props) { extend(corefn, props); }); /* eslint-disable no-unused-vars */ var defaults$7 = { fit: true, // whether to fit the viewport to the graph directed: false, // whether the tree is directed downwards (or edges can point in any direction if false) padding: 30, // padding on fit circle: false, // put depths in concentric circles if true, put depths top down if false grid: false, // whether to create an even grid into which the DAG is placed (circle:false only) spacingFactor: 1.75, // positive spacing factor, larger => more space between nodes (N.B. n/a if causes overlap) boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } avoidOverlap: true, // prevents node overlap, may overflow boundingBox if not enough space nodeDimensionsIncludeLabels: false, // Excludes the label when calculating node bounding boxes for the layout algorithm roots: undefined, // the roots of the trees depthSort: undefined, // a sorting function to order nodes at equal depth. e.g. function(a, b){ return a.data('weight') - b.data('weight') } animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled, animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; var deprecatedOptionDefaults = { maximal: false, // whether to shift nodes down their natural BFS depths in order to avoid upwards edges (DAGS only); setting acyclic to true sets maximal to true also acyclic: false // whether the tree is acyclic and thus a node could be shifted (due to the maximal option) multiple times without causing an infinite loop; setting to true sets maximal to true also; if you are uncertain whether a tree is acyclic, set to false to avoid potential infinite loops }; /* eslint-enable */ var getInfo = function getInfo(ele) { return ele.scratch('breadthfirst'); }; var setInfo = function setInfo(ele, obj) { return ele.scratch('breadthfirst', obj); }; function BreadthFirstLayout(options) { this.options = extend({}, defaults$7, deprecatedOptionDefaults, options); } BreadthFirstLayout.prototype.run = function () { var params = this.options; var options = params; var cy = params.cy; var eles = options.eles; var nodes = eles.nodes().filter(function (n) { return !n.isParent(); }); var graph = eles; var directed = options.directed; var maximal = options.acyclic || options.maximal || options.maximalAdjustments > 0; // maximalAdjustments for compat. w/ old code; also, setting acyclic to true sets maximal to true var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); var roots; if (elementOrCollection(options.roots)) { roots = options.roots; } else if (array(options.roots)) { var rootsArray = []; for (var i = 0; i < options.roots.length; i++) { var id = options.roots[i]; var ele = cy.getElementById(id); rootsArray.push(ele); } roots = cy.collection(rootsArray); } else if (string(options.roots)) { roots = cy.$(options.roots); } else { if (directed) { roots = nodes.roots(); } else { var components = eles.components(); roots = cy.collection(); var _loop = function _loop(_i) { var comp = components[_i]; var maxDegree = comp.maxDegree(false); var compRoots = comp.filter(function (ele) { return ele.degree(false) === maxDegree; }); roots = roots.add(compRoots); }; for (var _i = 0; _i < components.length; _i++) { _loop(_i); } } } var depths = []; var foundByBfs = {}; var addToDepth = function addToDepth(ele, d) { if (depths[d] == null) { depths[d] = []; } var i = depths[d].length; depths[d].push(ele); setInfo(ele, { index: i, depth: d }); }; var changeDepth = function changeDepth(ele, newDepth) { var _getInfo = getInfo(ele), depth = _getInfo.depth, index = _getInfo.index; depths[depth][index] = null; addToDepth(ele, newDepth); }; // find the depths of the nodes graph.bfs({ roots: roots, directed: options.directed, visit: function visit(node, edge, pNode, i, depth) { var ele = node[0]; var id = ele.id(); addToDepth(ele, depth); foundByBfs[id] = true; } }); // check for nodes not found by bfs var orphanNodes = []; for (var _i2 = 0; _i2 < nodes.length; _i2++) { var _ele = nodes[_i2]; if (foundByBfs[_ele.id()]) { continue; } else { orphanNodes.push(_ele); } } // assign the nodes a depth and index var assignDepthsAt = function assignDepthsAt(i) { var eles = depths[i]; for (var j = 0; j < eles.length; j++) { var _ele2 = eles[j]; if (_ele2 == null) { eles.splice(j, 1); j--; continue; } setInfo(_ele2, { depth: i, index: j }); } }; var assignDepths = function assignDepths() { for (var _i3 = 0; _i3 < depths.length; _i3++) { assignDepthsAt(_i3); } }; var adjustMaximally = function adjustMaximally(ele, shifted) { var eInfo = getInfo(ele); var incomers = ele.incomers().filter(function (el) { return el.isNode() && eles.has(el); }); var maxDepth = -1; var id = ele.id(); for (var k = 0; k < incomers.length; k++) { var incmr = incomers[k]; var iInfo = getInfo(incmr); maxDepth = Math.max(maxDepth, iInfo.depth); } if (eInfo.depth <= maxDepth) { if (!options.acyclic && shifted[id]) { return null; } var newDepth = maxDepth + 1; changeDepth(ele, newDepth); shifted[id] = newDepth; return true; } return false; }; // for the directed case, try to make the edges all go down (i.e. depth i => depth i + 1) if (directed && maximal) { var Q = []; var shifted = {}; var enqueue = function enqueue(n) { return Q.push(n); }; var dequeue = function dequeue() { return Q.shift(); }; nodes.forEach(function (n) { return Q.push(n); }); while (Q.length > 0) { var _ele3 = dequeue(); var didShift = adjustMaximally(_ele3, shifted); if (didShift) { _ele3.outgoers().filter(function (el) { return el.isNode() && eles.has(el); }).forEach(enqueue); } else if (didShift === null) { warn('Detected double maximal shift for node `' + _ele3.id() + '`. Bailing maximal adjustment due to cycle. Use `options.maximal: true` only on DAGs.'); break; // exit on failure } } } assignDepths(); // clear holes // find min distance we need to leave between nodes var minDistance = 0; if (options.avoidOverlap) { for (var _i4 = 0; _i4 < nodes.length; _i4++) { var n = nodes[_i4]; var nbb = n.layoutDimensions(options); var w = nbb.w; var h = nbb.h; minDistance = Math.max(minDistance, w, h); } } // get the weighted percent for an element based on its connectivity to other levels var cachedWeightedPercent = {}; var getWeightedPercent = function getWeightedPercent(ele) { if (cachedWeightedPercent[ele.id()]) { return cachedWeightedPercent[ele.id()]; } var eleDepth = getInfo(ele).depth; var neighbors = ele.neighborhood(); var percent = 0; var samples = 0; for (var _i5 = 0; _i5 < neighbors.length; _i5++) { var neighbor = neighbors[_i5]; if (neighbor.isEdge() || neighbor.isParent() || !nodes.has(neighbor)) { continue; } var bf = getInfo(neighbor); if (bf == null) { continue; } var index = bf.index; var depth = bf.depth; // unassigned neighbours shouldn't affect the ordering if (index == null || depth == null) { continue; } var nDepth = depths[depth].length; if (depth < eleDepth) { // only get influenced by elements above percent += index / nDepth; samples++; } } samples = Math.max(1, samples); percent = percent / samples; if (samples === 0) { // put lone nodes at the start percent = 0; } cachedWeightedPercent[ele.id()] = percent; return percent; }; // rearrange the indices in each depth level based on connectivity var sortFn = function sortFn(a, b) { var apct = getWeightedPercent(a); var bpct = getWeightedPercent(b); var diff = apct - bpct; if (diff === 0) { return ascending(a.id(), b.id()); // make sure sort doesn't have don't-care comparisons } else { return diff; } }; if (options.depthSort !== undefined) { sortFn = options.depthSort; } // sort each level to make connected nodes closer for (var _i6 = 0; _i6 < depths.length; _i6++) { depths[_i6].sort(sortFn); assignDepthsAt(_i6); } // assign orphan nodes to a new top-level depth var orphanDepth = []; for (var _i7 = 0; _i7 < orphanNodes.length; _i7++) { orphanDepth.push(orphanNodes[_i7]); } depths.unshift(orphanDepth); assignDepths(); var biggestDepthSize = 0; for (var _i8 = 0; _i8 < depths.length; _i8++) { biggestDepthSize = Math.max(depths[_i8].length, biggestDepthSize); } var center = { x: bb.x1 + bb.w / 2, y: bb.x1 + bb.h / 2 }; var maxDepthSize = depths.reduce(function (max, eles) { return Math.max(max, eles.length); }, 0); var getPosition = function getPosition(ele) { var _getInfo2 = getInfo(ele), depth = _getInfo2.depth, index = _getInfo2.index; var depthSize = depths[depth].length; var distanceX = Math.max(bb.w / ((options.grid ? maxDepthSize : depthSize) + 1), minDistance); var distanceY = Math.max(bb.h / (depths.length + 1), minDistance); var radiusStepSize = Math.min(bb.w / 2 / depths.length, bb.h / 2 / depths.length); radiusStepSize = Math.max(radiusStepSize, minDistance); if (!options.circle) { var epos = { x: center.x + (index + 1 - (depthSize + 1) / 2) * distanceX, y: (depth + 1) * distanceY }; return epos; } else { var radius = radiusStepSize * depth + radiusStepSize - (depths.length > 0 && depths[0].length <= 3 ? radiusStepSize / 2 : 0); var theta = 2 * Math.PI / depths[depth].length * index; if (depth === 0 && depths[0].length === 1) { radius = 1; } return { x: center.x + radius * Math.cos(theta), y: center.y + radius * Math.sin(theta) }; } }; eles.nodes().layoutPositions(this, options, getPosition); return this; // chaining }; var defaults$6 = { fit: true, // whether to fit the viewport to the graph padding: 30, // the padding on fit boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } avoidOverlap: true, // prevents node overlap, may overflow boundingBox and radius if not enough space nodeDimensionsIncludeLabels: false, // Excludes the label when calculating node bounding boxes for the layout algorithm spacingFactor: undefined, // Applies a multiplicative factor (>0) to expand or compress the overall area that the nodes take up radius: undefined, // the radius of the circle startAngle: 3 / 2 * Math.PI, // where nodes start in radians sweep: undefined, // how many radians should be between the first and last node (defaults to full circle) clockwise: true, // whether the layout should go clockwise (true) or counterclockwise/anticlockwise (false) sort: undefined, // a sorting function to order the nodes; e.g. function(a, b){ return a.data('weight') - b.data('weight') } animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function CircleLayout(options) { this.options = extend({}, defaults$6, options); } CircleLayout.prototype.run = function () { var params = this.options; var options = params; var cy = params.cy; var eles = options.eles; var clockwise = options.counterclockwise !== undefined ? !options.counterclockwise : options.clockwise; var nodes = eles.nodes().not(':parent'); if (options.sort) { nodes = nodes.sort(options.sort); } var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); var center = { x: bb.x1 + bb.w / 2, y: bb.y1 + bb.h / 2 }; var sweep = options.sweep === undefined ? 2 * Math.PI - 2 * Math.PI / nodes.length : options.sweep; var dTheta = sweep / Math.max(1, nodes.length - 1); var r; var minDistance = 0; for (var i = 0; i < nodes.length; i++) { var n = nodes[i]; var nbb = n.layoutDimensions(options); var w = nbb.w; var h = nbb.h; minDistance = Math.max(minDistance, w, h); } if (number$1(options.radius)) { r = options.radius; } else if (nodes.length <= 1) { r = 0; } else { r = Math.min(bb.h, bb.w) / 2 - minDistance; } // calculate the radius if (nodes.length > 1 && options.avoidOverlap) { // but only if more than one node (can't overlap) minDistance *= 1.75; // just to have some nice spacing var dcos = Math.cos(dTheta) - Math.cos(0); var dsin = Math.sin(dTheta) - Math.sin(0); var rMin = Math.sqrt(minDistance * minDistance / (dcos * dcos + dsin * dsin)); // s.t. no nodes overlapping r = Math.max(rMin, r); } var getPos = function getPos(ele, i) { var theta = options.startAngle + i * dTheta * (clockwise ? 1 : -1); var rx = r * Math.cos(theta); var ry = r * Math.sin(theta); var pos = { x: center.x + rx, y: center.y + ry }; return pos; }; eles.nodes().layoutPositions(this, options, getPos); return this; // chaining }; var defaults$5 = { fit: true, // whether to fit the viewport to the graph padding: 30, // the padding on fit startAngle: 3 / 2 * Math.PI, // where nodes start in radians sweep: undefined, // how many radians should be between the first and last node (defaults to full circle) clockwise: true, // whether the layout should go clockwise (true) or counterclockwise/anticlockwise (false) equidistant: false, // whether levels have an equal radial distance betwen them, may cause bounding box overflow minNodeSpacing: 10, // min spacing between outside of nodes (used for radius adjustment) boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } avoidOverlap: true, // prevents node overlap, may overflow boundingBox if not enough space nodeDimensionsIncludeLabels: false, // Excludes the label when calculating node bounding boxes for the layout algorithm height: undefined, // height of layout area (overrides container height) width: undefined, // width of layout area (overrides container width) spacingFactor: undefined, // Applies a multiplicative factor (>0) to expand or compress the overall area that the nodes take up concentric: function concentric(node) { // returns numeric value for each node, placing higher nodes in levels towards the centre return node.degree(); }, levelWidth: function levelWidth(nodes) { // the variation of concentric values in each level return nodes.maxDegree() / 4; }, animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function ConcentricLayout(options) { this.options = extend({}, defaults$5, options); } ConcentricLayout.prototype.run = function () { var params = this.options; var options = params; var clockwise = options.counterclockwise !== undefined ? !options.counterclockwise : options.clockwise; var cy = params.cy; var eles = options.eles; var nodes = eles.nodes().not(':parent'); var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); var center = { x: bb.x1 + bb.w / 2, y: bb.y1 + bb.h / 2 }; var nodeValues = []; // { node, value } var maxNodeSize = 0; for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; var value = void 0; // calculate the node value value = options.concentric(node); nodeValues.push({ value: value, node: node }); // for style mapping node._private.scratch.concentric = value; } // in case we used the `concentric` in style nodes.updateStyle(); // calculate max size now based on potentially updated mappers for (var _i = 0; _i < nodes.length; _i++) { var _node = nodes[_i]; var nbb = _node.layoutDimensions(options); maxNodeSize = Math.max(maxNodeSize, nbb.w, nbb.h); } // sort node values in descreasing order nodeValues.sort(function (a, b) { return b.value - a.value; }); var levelWidth = options.levelWidth(nodes); // put the values into levels var levels = [[]]; var currentLevel = levels[0]; for (var _i2 = 0; _i2 < nodeValues.length; _i2++) { var val = nodeValues[_i2]; if (currentLevel.length > 0) { var diff = Math.abs(currentLevel[0].value - val.value); if (diff >= levelWidth) { currentLevel = []; levels.push(currentLevel); } } currentLevel.push(val); } // create positions from levels var minDist = maxNodeSize + options.minNodeSpacing; // min dist between nodes if (!options.avoidOverlap) { // then strictly constrain to bb var firstLvlHasMulti = levels.length > 0 && levels[0].length > 1; var maxR = Math.min(bb.w, bb.h) / 2 - minDist; var rStep = maxR / (levels.length + firstLvlHasMulti ? 1 : 0); minDist = Math.min(minDist, rStep); } // find the metrics for each level var r = 0; for (var _i3 = 0; _i3 < levels.length; _i3++) { var level = levels[_i3]; var sweep = options.sweep === undefined ? 2 * Math.PI - 2 * Math.PI / level.length : options.sweep; var dTheta = level.dTheta = sweep / Math.max(1, level.length - 1); // calculate the radius if (level.length > 1 && options.avoidOverlap) { // but only if more than one node (can't overlap) var dcos = Math.cos(dTheta) - Math.cos(0); var dsin = Math.sin(dTheta) - Math.sin(0); var rMin = Math.sqrt(minDist * minDist / (dcos * dcos + dsin * dsin)); // s.t. no nodes overlapping r = Math.max(rMin, r); } level.r = r; r += minDist; } if (options.equidistant) { var rDeltaMax = 0; var _r = 0; for (var _i4 = 0; _i4 < levels.length; _i4++) { var _level = levels[_i4]; var rDelta = _level.r - _r; rDeltaMax = Math.max(rDeltaMax, rDelta); } _r = 0; for (var _i5 = 0; _i5 < levels.length; _i5++) { var _level2 = levels[_i5]; if (_i5 === 0) { _r = _level2.r; } _level2.r = _r; _r += rDeltaMax; } } // calculate the node positions var pos = {}; // id => position for (var _i6 = 0; _i6 < levels.length; _i6++) { var _level3 = levels[_i6]; var _dTheta = _level3.dTheta; var _r2 = _level3.r; for (var j = 0; j < _level3.length; j++) { var _val = _level3[j]; var theta = options.startAngle + (clockwise ? 1 : -1) * _dTheta * j; var p = { x: center.x + _r2 * Math.cos(theta), y: center.y + _r2 * Math.sin(theta) }; pos[_val.node.id()] = p; } } // position the nodes eles.nodes().layoutPositions(this, options, function (ele) { var id = ele.id(); return pos[id]; }); return this; // chaining }; /* The CoSE layout was written by Gerardo Huck. https://www.linkedin.com/in/gerardohuck/ Based on the following article: http://dl.acm.org/citation.cfm?id=1498047 Modifications tracked on Github. */ var DEBUG; /** * @brief : default layout options */ var defaults$4 = { // Called on `layoutready` ready: function ready() {}, // Called on `layoutstop` stop: function stop() {}, // Whether to animate while running the layout // true : Animate continuously as the layout is running // false : Just show the end result // 'end' : Animate with the end result, from the initial positions to the end positions animate: true, // Easing of the animation for animate:'end' animationEasing: undefined, // The duration of the animation for animate:'end' animationDuration: undefined, // A function that determines whether the node should be animated // All nodes animated by default on animate enabled // Non-animated nodes are positioned immediately when the layout starts animateFilter: function animateFilter(node, i) { return true; }, // The layout animates only after this many milliseconds for animate:true // (prevents flashing on fast runs) animationThreshold: 250, // Number of iterations between consecutive screen positions update refresh: 20, // Whether to fit the network view after when done fit: true, // Padding on fit padding: 30, // Constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } boundingBox: undefined, // Excludes the label when calculating node bounding boxes for the layout algorithm nodeDimensionsIncludeLabels: false, // Randomize the initial positions of the nodes (true) or use existing positions (false) randomize: false, // Extra spacing between components in non-compound graphs componentSpacing: 40, // Node repulsion (non overlapping) multiplier nodeRepulsion: function nodeRepulsion(node) { return 2048; }, // Node repulsion (overlapping) multiplier nodeOverlap: 4, // Ideal edge (non nested) length idealEdgeLength: function idealEdgeLength(edge) { return 32; }, // Divisor to compute edge forces edgeElasticity: function edgeElasticity(edge) { return 32; }, // Nesting factor (multiplier) to compute ideal edge length for nested edges nestingFactor: 1.2, // Gravity force (constant) gravity: 1, // Maximum number of iterations to perform numIter: 1000, // Initial temperature (maximum node displacement) initialTemp: 1000, // Cooling factor (how the temperature is reduced between consecutive iterations coolingFactor: 0.99, // Lower temperature threshold (below this point the layout will end) minTemp: 1.0 }; /** * @brief : constructor * @arg options : object containing layout options */ function CoseLayout(options) { this.options = extend({}, defaults$4, options); this.options.layout = this; // Exclude any edge that has a source or target node that is not in the set of passed-in nodes var nodes = this.options.eles.nodes(); var edges = this.options.eles.edges(); var notEdges = edges.filter(function (e) { var sourceId = e.source().data('id'); var targetId = e.target().data('id'); var hasSource = nodes.some(function (n) { return n.data('id') === sourceId; }); var hasTarget = nodes.some(function (n) { return n.data('id') === targetId; }); return !hasSource || !hasTarget; }); this.options.eles = this.options.eles.not(notEdges); } /** * @brief : runs the layout */ CoseLayout.prototype.run = function () { var options = this.options; var cy = options.cy; var layout = this; layout.stopped = false; if (options.animate === true || options.animate === false) { layout.emit({ type: 'layoutstart', layout: layout }); } // Set DEBUG - Global variable if (true === options.debug) { DEBUG = true; } else { DEBUG = false; } // Initialize layout info var layoutInfo = createLayoutInfo(cy, layout, options); // Show LayoutInfo contents if debugging if (DEBUG) { printLayoutInfo(layoutInfo); } // If required, randomize node positions if (options.randomize) { randomizePositions(layoutInfo); } var startTime = performanceNow(); var refresh = function refresh() { refreshPositions(layoutInfo, cy, options); // Fit the graph if necessary if (true === options.fit) { cy.fit(options.padding); } }; var mainLoop = function mainLoop(i) { if (layout.stopped || i >= options.numIter) { // logDebug("Layout manually stopped. Stopping computation in step " + i); return false; } // Do one step in the phisical simulation step(layoutInfo, options); // Update temperature layoutInfo.temperature = layoutInfo.temperature * options.coolingFactor; // logDebug("New temperature: " + layoutInfo.temperature); if (layoutInfo.temperature < options.minTemp) { // logDebug("Temperature drop below minimum threshold. Stopping computation in step " + i); return false; } return true; }; var done = function done() { if (options.animate === true || options.animate === false) { refresh(); // Layout has finished layout.one('layoutstop', options.stop); layout.emit({ type: 'layoutstop', layout: layout }); } else { var nodes = options.eles.nodes(); var getScaledPos = getScaleInBoundsFn(layoutInfo, options, nodes); nodes.layoutPositions(layout, options, getScaledPos); } }; var i = 0; var loopRet = true; if (options.animate === true) { var frame = function frame() { var f = 0; while (loopRet && f < options.refresh) { loopRet = mainLoop(i); i++; f++; } if (!loopRet) { // it's done separateComponents(layoutInfo, options); done(); } else { var now = performanceNow(); if (now - startTime >= options.animationThreshold) { refresh(); } requestAnimationFrame(frame); } }; frame(); } else { while (loopRet) { loopRet = mainLoop(i); i++; } separateComponents(layoutInfo, options); done(); } return this; // chaining }; /** * @brief : called on continuous layouts to stop them before they finish */ CoseLayout.prototype.stop = function () { this.stopped = true; if (this.thread) { this.thread.stop(); } this.emit('layoutstop'); return this; // chaining }; CoseLayout.prototype.destroy = function () { if (this.thread) { this.thread.stop(); } return this; // chaining }; /** * @brief : Creates an object which is contains all the data * used in the layout process * @arg cy : cytoscape.js object * @return : layoutInfo object initialized */ var createLayoutInfo = function createLayoutInfo(cy, layout, options) { // Shortcut var edges = options.eles.edges(); var nodes = options.eles.nodes(); var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); var layoutInfo = { isCompound: cy.hasCompoundNodes(), layoutNodes: [], idToIndex: {}, nodeSize: nodes.size(), graphSet: [], indexToGraph: [], layoutEdges: [], edgeSize: edges.size(), temperature: options.initialTemp, clientWidth: bb.w, clientHeight: bb.h, boundingBox: bb }; var components = options.eles.components(); var id2cmptId = {}; for (var i = 0; i < components.length; i++) { var component = components[i]; for (var j = 0; j < component.length; j++) { var node = component[j]; id2cmptId[node.id()] = i; } } // Iterate over all nodes, creating layout nodes for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = nodes[i]; var nbb = n.layoutDimensions(options); var tempNode = {}; tempNode.isLocked = n.locked(); tempNode.id = n.data('id'); tempNode.parentId = n.data('parent'); tempNode.cmptId = id2cmptId[n.id()]; tempNode.children = []; tempNode.positionX = n.position('x'); tempNode.positionY = n.position('y'); tempNode.offsetX = 0; tempNode.offsetY = 0; tempNode.height = nbb.w; tempNode.width = nbb.h; tempNode.maxX = tempNode.positionX + tempNode.width / 2; tempNode.minX = tempNode.positionX - tempNode.width / 2; tempNode.maxY = tempNode.positionY + tempNode.height / 2; tempNode.minY = tempNode.positionY - tempNode.height / 2; tempNode.padLeft = parseFloat(n.style('padding')); tempNode.padRight = parseFloat(n.style('padding')); tempNode.padTop = parseFloat(n.style('padding')); tempNode.padBottom = parseFloat(n.style('padding')); // forces tempNode.nodeRepulsion = fn$6(options.nodeRepulsion) ? options.nodeRepulsion(n) : options.nodeRepulsion; // Add new node layoutInfo.layoutNodes.push(tempNode); // Add entry to id-index map layoutInfo.idToIndex[tempNode.id] = i; } // Inline implementation of a queue, used for traversing the graph in BFS order var queue = []; var start = 0; // Points to the start the queue var end = -1; // Points to the end of the queue var tempGraph = []; // Second pass to add child information and // initialize queue for hierarchical traversal for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = layoutInfo.layoutNodes[i]; var p_id = n.parentId; // Check if node n has a parent node if (null != p_id) { // Add node Id to parent's list of children layoutInfo.layoutNodes[layoutInfo.idToIndex[p_id]].children.push(n.id); } else { // If a node doesn't have a parent, then it's in the root graph queue[++end] = n.id; tempGraph.push(n.id); } } // Add root graph to graphSet layoutInfo.graphSet.push(tempGraph); // Traverse the graph, level by level, while (start <= end) { // Get the node to visit and remove it from queue var node_id = queue[start++]; var node_ix = layoutInfo.idToIndex[node_id]; var node = layoutInfo.layoutNodes[node_ix]; var children = node.children; if (children.length > 0) { // Add children nodes as a new graph to graph set layoutInfo.graphSet.push(children); // Add children to que queue to be visited for (var i = 0; i < children.length; i++) { queue[++end] = children[i]; } } } // Create indexToGraph map for (var i = 0; i < layoutInfo.graphSet.length; i++) { var graph = layoutInfo.graphSet[i]; for (var j = 0; j < graph.length; j++) { var index = layoutInfo.idToIndex[graph[j]]; layoutInfo.indexToGraph[index] = i; } } // Iterate over all edges, creating Layout Edges for (var i = 0; i < layoutInfo.edgeSize; i++) { var e = edges[i]; var tempEdge = {}; tempEdge.id = e.data('id'); tempEdge.sourceId = e.data('source'); tempEdge.targetId = e.data('target'); // Compute ideal length var idealLength = fn$6(options.idealEdgeLength) ? options.idealEdgeLength(e) : options.idealEdgeLength; var elasticity = fn$6(options.edgeElasticity) ? options.edgeElasticity(e) : options.edgeElasticity; // Check if it's an inter graph edge var sourceIx = layoutInfo.idToIndex[tempEdge.sourceId]; var targetIx = layoutInfo.idToIndex[tempEdge.targetId]; var sourceGraph = layoutInfo.indexToGraph[sourceIx]; var targetGraph = layoutInfo.indexToGraph[targetIx]; if (sourceGraph != targetGraph) { // Find lowest common graph ancestor var lca = findLCA(tempEdge.sourceId, tempEdge.targetId, layoutInfo); // Compute sum of node depths, relative to lca graph var lcaGraph = layoutInfo.graphSet[lca]; var depth = 0; // Source depth var tempNode = layoutInfo.layoutNodes[sourceIx]; while (-1 === lcaGraph.indexOf(tempNode.id)) { tempNode = layoutInfo.layoutNodes[layoutInfo.idToIndex[tempNode.parentId]]; depth++; } // Target depth tempNode = layoutInfo.layoutNodes[targetIx]; while (-1 === lcaGraph.indexOf(tempNode.id)) { tempNode = layoutInfo.layoutNodes[layoutInfo.idToIndex[tempNode.parentId]]; depth++; } // logDebug('LCA of nodes ' + tempEdge.sourceId + ' and ' + tempEdge.targetId + // ". Index: " + lca + " Contents: " + lcaGraph.toString() + // ". Depth: " + depth); // Update idealLength idealLength *= depth * options.nestingFactor; } tempEdge.idealLength = idealLength; tempEdge.elasticity = elasticity; layoutInfo.layoutEdges.push(tempEdge); } // Finally, return layoutInfo object return layoutInfo; }; /** * @brief : This function finds the index of the lowest common * graph ancestor between 2 nodes in the subtree * (from the graph hierarchy induced tree) whose * root is graphIx * * @arg node1: node1's ID * @arg node2: node2's ID * @arg layoutInfo: layoutInfo object * */ var findLCA = function findLCA(node1, node2, layoutInfo) { // Find their common ancester, starting from the root graph var res = findLCA_aux(node1, node2, 0, layoutInfo); if (2 > res.count) { // If aux function couldn't find the common ancester, // then it is the root graph return 0; } else { return res.graph; } }; /** * @brief : Auxiliary function used for LCA computation * * @arg node1 : node1's ID * @arg node2 : node2's ID * @arg graphIx : subgraph index * @arg layoutInfo : layoutInfo object * * @return : object of the form {count: X, graph: Y}, where: * X is the number of ancestors (max: 2) found in * graphIx (and it's subgraphs), * Y is the graph index of the lowest graph containing * all X nodes */ var findLCA_aux = function findLCA_aux(node1, node2, graphIx, layoutInfo) { var graph = layoutInfo.graphSet[graphIx]; // If both nodes belongs to graphIx if (-1 < graph.indexOf(node1) && -1 < graph.indexOf(node2)) { return { count: 2, graph: graphIx }; } // Make recursive calls for all subgraphs var c = 0; for (var i = 0; i < graph.length; i++) { var nodeId = graph[i]; var nodeIx = layoutInfo.idToIndex[nodeId]; var children = layoutInfo.layoutNodes[nodeIx].children; // If the node has no child, skip it if (0 === children.length) { continue; } var childGraphIx = layoutInfo.indexToGraph[layoutInfo.idToIndex[children[0]]]; var result = findLCA_aux(node1, node2, childGraphIx, layoutInfo); if (0 === result.count) { // Neither node1 nor node2 are present in this subgraph continue; } else if (1 === result.count) { // One of (node1, node2) is present in this subgraph c++; if (2 === c) { // We've already found both nodes, no need to keep searching break; } } else { // Both nodes are present in this subgraph return result; } } return { count: c, graph: graphIx }; }; /** * @brief: printsLayoutInfo into js console * Only used for debbuging */ var printLayoutInfo; /** * @brief : Randomizes the position of all nodes */ var randomizePositions = function randomizePositions(layoutInfo, cy) { var width = layoutInfo.clientWidth; var height = layoutInfo.clientHeight; for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = layoutInfo.layoutNodes[i]; // No need to randomize compound nodes or locked nodes if (0 === n.children.length && !n.isLocked) { n.positionX = Math.random() * width; n.positionY = Math.random() * height; } } }; var getScaleInBoundsFn = function getScaleInBoundsFn(layoutInfo, options, nodes) { var bb = layoutInfo.boundingBox; var coseBB = { x1: Infinity, x2: -Infinity, y1: Infinity, y2: -Infinity }; if (options.boundingBox) { nodes.forEach(function (node) { var lnode = layoutInfo.layoutNodes[layoutInfo.idToIndex[node.data('id')]]; coseBB.x1 = Math.min(coseBB.x1, lnode.positionX); coseBB.x2 = Math.max(coseBB.x2, lnode.positionX); coseBB.y1 = Math.min(coseBB.y1, lnode.positionY); coseBB.y2 = Math.max(coseBB.y2, lnode.positionY); }); coseBB.w = coseBB.x2 - coseBB.x1; coseBB.h = coseBB.y2 - coseBB.y1; } return function (ele, i) { var lnode = layoutInfo.layoutNodes[layoutInfo.idToIndex[ele.data('id')]]; if (options.boundingBox) { // then add extra bounding box constraint var pctX = (lnode.positionX - coseBB.x1) / coseBB.w; var pctY = (lnode.positionY - coseBB.y1) / coseBB.h; return { x: bb.x1 + pctX * bb.w, y: bb.y1 + pctY * bb.h }; } else { return { x: lnode.positionX, y: lnode.positionY }; } }; }; /** * @brief : Updates the positions of nodes in the network * @arg layoutInfo : LayoutInfo object * @arg cy : Cytoscape object * @arg options : Layout options */ var refreshPositions = function refreshPositions(layoutInfo, cy, options) { // var s = 'Refreshing positions'; // logDebug(s); var layout = options.layout; var nodes = options.eles.nodes(); var getScaledPos = getScaleInBoundsFn(layoutInfo, options, nodes); nodes.positions(getScaledPos); // Trigger layoutReady only on first call if (true !== layoutInfo.ready) { // s = 'Triggering layoutready'; // logDebug(s); layoutInfo.ready = true; layout.one('layoutready', options.ready); layout.emit({ type: 'layoutready', layout: this }); } }; /** * @brief : Logs a debug message in JS console, if DEBUG is ON */ // var logDebug = function(text) { // if (DEBUG) { // console.debug(text); // } // }; /** * @brief : Performs one iteration of the physical simulation * @arg layoutInfo : LayoutInfo object already initialized * @arg cy : Cytoscape object * @arg options : Layout options */ var step = function step(layoutInfo, options, _step) { // var s = "\n\n###############################"; // s += "\nSTEP: " + step; // s += "\n###############################\n"; // logDebug(s); // Calculate node repulsions calculateNodeForces(layoutInfo, options); // Calculate edge forces calculateEdgeForces(layoutInfo); // Calculate gravity forces calculateGravityForces(layoutInfo, options); // Propagate forces from parent to child propagateForces(layoutInfo); // Update positions based on calculated forces updatePositions(layoutInfo); }; /** * @brief : Computes the node repulsion forces */ var calculateNodeForces = function calculateNodeForces(layoutInfo, options) { // Go through each of the graphs in graphSet // Nodes only repel each other if they belong to the same graph // var s = 'calculateNodeForces'; // logDebug(s); for (var i = 0; i < layoutInfo.graphSet.length; i++) { var graph = layoutInfo.graphSet[i]; var numNodes = graph.length; // s = "Set: " + graph.toString(); // logDebug(s); // Now get all the pairs of nodes // Only get each pair once, (A, B) = (B, A) for (var j = 0; j < numNodes; j++) { var node1 = layoutInfo.layoutNodes[layoutInfo.idToIndex[graph[j]]]; for (var k = j + 1; k < numNodes; k++) { var node2 = layoutInfo.layoutNodes[layoutInfo.idToIndex[graph[k]]]; nodeRepulsion(node1, node2, layoutInfo, options); } } } }; var randomDistance = function randomDistance(max) { return -max + 2 * max * Math.random(); }; /** * @brief : Compute the node repulsion forces between a pair of nodes */ var nodeRepulsion = function nodeRepulsion(node1, node2, layoutInfo, options) { // var s = "Node repulsion. Node1: " + node1.id + " Node2: " + node2.id; var cmptId1 = node1.cmptId; var cmptId2 = node2.cmptId; if (cmptId1 !== cmptId2 && !layoutInfo.isCompound) { return; } // Get direction of line connecting both node centers var directionX = node2.positionX - node1.positionX; var directionY = node2.positionY - node1.positionY; var maxRandDist = 1; // s += "\ndirectionX: " + directionX + ", directionY: " + directionY; // If both centers are the same, apply a random force if (0 === directionX && 0 === directionY) { directionX = randomDistance(maxRandDist); directionY = randomDistance(maxRandDist); } var overlap = nodesOverlap(node1, node2, directionX, directionY); if (overlap > 0) { // s += "\nNodes DO overlap."; // s += "\nOverlap: " + overlap; // If nodes overlap, repulsion force is proportional // to the overlap var force = options.nodeOverlap * overlap; // Compute the module and components of the force vector var distance = Math.sqrt(directionX * directionX + directionY * directionY); // s += "\nDistance: " + distance; var forceX = force * directionX / distance; var forceY = force * directionY / distance; } else { // s += "\nNodes do NOT overlap."; // If there's no overlap, force is inversely proportional // to squared distance // Get clipping points for both nodes var point1 = findClippingPoint(node1, directionX, directionY); var point2 = findClippingPoint(node2, -1 * directionX, -1 * directionY); // Use clipping points to compute distance var distanceX = point2.x - point1.x; var distanceY = point2.y - point1.y; var distanceSqr = distanceX * distanceX + distanceY * distanceY; var distance = Math.sqrt(distanceSqr); // s += "\nDistance: " + distance; // Compute the module and components of the force vector var force = (node1.nodeRepulsion + node2.nodeRepulsion) / distanceSqr; var forceX = force * distanceX / distance; var forceY = force * distanceY / distance; } // Apply force if (!node1.isLocked) { node1.offsetX -= forceX; node1.offsetY -= forceY; } if (!node2.isLocked) { node2.offsetX += forceX; node2.offsetY += forceY; } // s += "\nForceX: " + forceX + " ForceY: " + forceY; // logDebug(s); return; }; /** * @brief : Determines whether two nodes overlap or not * @return : Amount of overlapping (0 => no overlap) */ var nodesOverlap = function nodesOverlap(node1, node2, dX, dY) { if (dX > 0) { var overlapX = node1.maxX - node2.minX; } else { var overlapX = node2.maxX - node1.minX; } if (dY > 0) { var overlapY = node1.maxY - node2.minY; } else { var overlapY = node2.maxY - node1.minY; } if (overlapX >= 0 && overlapY >= 0) { return Math.sqrt(overlapX * overlapX + overlapY * overlapY); } else { return 0; } }; /** * @brief : Finds the point in which an edge (direction dX, dY) intersects * the rectangular bounding box of it's source/target node */ var findClippingPoint = function findClippingPoint(node, dX, dY) { // Shorcuts var X = node.positionX; var Y = node.positionY; var H = node.height || 1; var W = node.width || 1; var dirSlope = dY / dX; var nodeSlope = H / W; // var s = 'Computing clipping point of node ' + node.id + // " . Height: " + H + ", Width: " + W + // "\nDirection " + dX + ", " + dY; // // Compute intersection var res = {}; // Case: Vertical direction (up) if (0 === dX && 0 < dY) { res.x = X; // s += "\nUp direction"; res.y = Y + H / 2; return res; } // Case: Vertical direction (down) if (0 === dX && 0 > dY) { res.x = X; res.y = Y + H / 2; // s += "\nDown direction"; return res; } // Case: Intersects the right border if (0 < dX && -1 * nodeSlope <= dirSlope && dirSlope <= nodeSlope) { res.x = X + W / 2; res.y = Y + W * dY / 2 / dX; // s += "\nRightborder"; return res; } // Case: Intersects the left border if (0 > dX && -1 * nodeSlope <= dirSlope && dirSlope <= nodeSlope) { res.x = X - W / 2; res.y = Y - W * dY / 2 / dX; // s += "\nLeftborder"; return res; } // Case: Intersects the top border if (0 < dY && (dirSlope <= -1 * nodeSlope || dirSlope >= nodeSlope)) { res.x = X + H * dX / 2 / dY; res.y = Y + H / 2; // s += "\nTop border"; return res; } // Case: Intersects the bottom border if (0 > dY && (dirSlope <= -1 * nodeSlope || dirSlope >= nodeSlope)) { res.x = X - H * dX / 2 / dY; res.y = Y - H / 2; // s += "\nBottom border"; return res; } // s += "\nClipping point found at " + res.x + ", " + res.y; // logDebug(s); return res; }; /** * @brief : Calculates all edge forces */ var calculateEdgeForces = function calculateEdgeForces(layoutInfo, options) { // Iterate over all edges for (var i = 0; i < layoutInfo.edgeSize; i++) { // Get edge, source & target nodes var edge = layoutInfo.layoutEdges[i]; var sourceIx = layoutInfo.idToIndex[edge.sourceId]; var source = layoutInfo.layoutNodes[sourceIx]; var targetIx = layoutInfo.idToIndex[edge.targetId]; var target = layoutInfo.layoutNodes[targetIx]; // Get direction of line connecting both node centers var directionX = target.positionX - source.positionX; var directionY = target.positionY - source.positionY; // If both centers are the same, do nothing. // A random force has already been applied as node repulsion if (0 === directionX && 0 === directionY) { continue; } // Get clipping points for both nodes var point1 = findClippingPoint(source, directionX, directionY); var point2 = findClippingPoint(target, -1 * directionX, -1 * directionY); var lx = point2.x - point1.x; var ly = point2.y - point1.y; var l = Math.sqrt(lx * lx + ly * ly); var force = Math.pow(edge.idealLength - l, 2) / edge.elasticity; if (0 !== l) { var forceX = force * lx / l; var forceY = force * ly / l; } else { var forceX = 0; var forceY = 0; } // Add this force to target and source nodes if (!source.isLocked) { source.offsetX += forceX; source.offsetY += forceY; } if (!target.isLocked) { target.offsetX -= forceX; target.offsetY -= forceY; } // var s = 'Edge force between nodes ' + source.id + ' and ' + target.id; // s += "\nDistance: " + l + " Force: (" + forceX + ", " + forceY + ")"; // logDebug(s); } }; /** * @brief : Computes gravity forces for all nodes */ var calculateGravityForces = function calculateGravityForces(layoutInfo, options) { if (options.gravity === 0) { return; } var distThreshold = 1; // var s = 'calculateGravityForces'; // logDebug(s); for (var i = 0; i < layoutInfo.graphSet.length; i++) { var graph = layoutInfo.graphSet[i]; var numNodes = graph.length; // s = "Set: " + graph.toString(); // logDebug(s); // Compute graph center if (0 === i) { var centerX = layoutInfo.clientHeight / 2; var centerY = layoutInfo.clientWidth / 2; } else { // Get Parent node for this graph, and use its position as center var temp = layoutInfo.layoutNodes[layoutInfo.idToIndex[graph[0]]]; var parent = layoutInfo.layoutNodes[layoutInfo.idToIndex[temp.parentId]]; var centerX = parent.positionX; var centerY = parent.positionY; } // s = "Center found at: " + centerX + ", " + centerY; // logDebug(s); // Apply force to all nodes in graph for (var j = 0; j < numNodes; j++) { var node = layoutInfo.layoutNodes[layoutInfo.idToIndex[graph[j]]]; // s = "Node: " + node.id; if (node.isLocked) { continue; } var dx = centerX - node.positionX; var dy = centerY - node.positionY; var d = Math.sqrt(dx * dx + dy * dy); if (d > distThreshold) { var fx = options.gravity * dx / d; var fy = options.gravity * dy / d; node.offsetX += fx; node.offsetY += fy; // s += ": Applied force: " + fx + ", " + fy; } // logDebug(s); } } }; /** * @brief : This function propagates the existing offsets from * parent nodes to its descendents. * @arg layoutInfo : layoutInfo Object * @arg cy : cytoscape Object * @arg options : Layout options */ var propagateForces = function propagateForces(layoutInfo, options) { // Inline implementation of a queue, used for traversing the graph in BFS order var queue = []; var start = 0; // Points to the start the queue var end = -1; // Points to the end of the queue // logDebug('propagateForces'); // Start by visiting the nodes in the root graph queue.push.apply(queue, layoutInfo.graphSet[0]); end += layoutInfo.graphSet[0].length; // Traverse the graph, level by level, while (start <= end) { // Get the node to visit and remove it from queue var nodeId = queue[start++]; var nodeIndex = layoutInfo.idToIndex[nodeId]; var node = layoutInfo.layoutNodes[nodeIndex]; var children = node.children; // We only need to process the node if it's compound if (0 < children.length && !node.isLocked) { var offX = node.offsetX; var offY = node.offsetY; // var s = "Propagating offset from parent node : " + node.id + // ". OffsetX: " + offX + ". OffsetY: " + offY; // s += "\n Children: " + children.toString(); // logDebug(s); for (var i = 0; i < children.length; i++) { var childNode = layoutInfo.layoutNodes[layoutInfo.idToIndex[children[i]]]; // Propagate offset childNode.offsetX += offX; childNode.offsetY += offY; // Add children to queue to be visited queue[++end] = children[i]; } // Reset parent offsets node.offsetX = 0; node.offsetY = 0; } } }; /** * @brief : Updates the layout model positions, based on * the accumulated forces */ var updatePositions = function updatePositions(layoutInfo, options) { // var s = 'Updating positions'; // logDebug(s); // Reset boundaries for compound nodes for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = layoutInfo.layoutNodes[i]; if (0 < n.children.length) { // logDebug("Resetting boundaries of compound node: " + n.id); n.maxX = undefined; n.minX = undefined; n.maxY = undefined; n.minY = undefined; } } for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = layoutInfo.layoutNodes[i]; if (0 < n.children.length || n.isLocked) { // No need to set compound or locked node position // logDebug("Skipping position update of node: " + n.id); continue; } // s = "Node: " + n.id + " Previous position: (" + // n.positionX + ", " + n.positionY + ")."; // Limit displacement in order to improve stability var tempForce = limitForce(n.offsetX, n.offsetY, layoutInfo.temperature); n.positionX += tempForce.x; n.positionY += tempForce.y; n.offsetX = 0; n.offsetY = 0; n.minX = n.positionX - n.width; n.maxX = n.positionX + n.width; n.minY = n.positionY - n.height; n.maxY = n.positionY + n.height; // s += " New Position: (" + n.positionX + ", " + n.positionY + ")."; // logDebug(s); // Update ancestry boudaries updateAncestryBoundaries(n, layoutInfo); } // Update size, position of compund nodes for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = layoutInfo.layoutNodes[i]; if (0 < n.children.length && !n.isLocked) { n.positionX = (n.maxX + n.minX) / 2; n.positionY = (n.maxY + n.minY) / 2; n.width = n.maxX - n.minX; n.height = n.maxY - n.minY; // s = "Updating position, size of compound node " + n.id; // s += "\nPositionX: " + n.positionX + ", PositionY: " + n.positionY; // s += "\nWidth: " + n.width + ", Height: " + n.height; // logDebug(s); } } }; /** * @brief : Limits a force (forceX, forceY) to be not * greater (in modulo) than max. 8 Preserves force direction. */ var limitForce = function limitForce(forceX, forceY, max) { // var s = "Limiting force: (" + forceX + ", " + forceY + "). Max: " + max; var force = Math.sqrt(forceX * forceX + forceY * forceY); if (force > max) { var res = { x: max * forceX / force, y: max * forceY / force }; } else { var res = { x: forceX, y: forceY }; } // s += ".\nResult: (" + res.x + ", " + res.y + ")"; // logDebug(s); return res; }; /** * @brief : Function used for keeping track of compound node * sizes, since they should bound all their subnodes. */ var updateAncestryBoundaries = function updateAncestryBoundaries(node, layoutInfo) { // var s = "Propagating new position/size of node " + node.id; var parentId = node.parentId; if (null == parentId) { // If there's no parent, we are done // s += ". No parent node."; // logDebug(s); return; } // Get Parent Node var p = layoutInfo.layoutNodes[layoutInfo.idToIndex[parentId]]; var flag = false; // MaxX if (null == p.maxX || node.maxX + p.padRight > p.maxX) { p.maxX = node.maxX + p.padRight; flag = true; // s += "\nNew maxX for parent node " + p.id + ": " + p.maxX; } // MinX if (null == p.minX || node.minX - p.padLeft < p.minX) { p.minX = node.minX - p.padLeft; flag = true; // s += "\nNew minX for parent node " + p.id + ": " + p.minX; } // MaxY if (null == p.maxY || node.maxY + p.padBottom > p.maxY) { p.maxY = node.maxY + p.padBottom; flag = true; // s += "\nNew maxY for parent node " + p.id + ": " + p.maxY; } // MinY if (null == p.minY || node.minY - p.padTop < p.minY) { p.minY = node.minY - p.padTop; flag = true; // s += "\nNew minY for parent node " + p.id + ": " + p.minY; } // If updated boundaries, propagate changes upward if (flag) { // logDebug(s); return updateAncestryBoundaries(p, layoutInfo); } // s += ". No changes in boundaries/position of parent node " + p.id; // logDebug(s); return; }; var separateComponents = function separateComponents(layoutInfo, options) { var nodes = layoutInfo.layoutNodes; var components = []; for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; var cid = node.cmptId; var component = components[cid] = components[cid] || []; component.push(node); } var totalA = 0; for (var i = 0; i < components.length; i++) { var c = components[i]; if (!c) { continue; } c.x1 = Infinity; c.x2 = -Infinity; c.y1 = Infinity; c.y2 = -Infinity; for (var j = 0; j < c.length; j++) { var n = c[j]; c.x1 = Math.min(c.x1, n.positionX - n.width / 2); c.x2 = Math.max(c.x2, n.positionX + n.width / 2); c.y1 = Math.min(c.y1, n.positionY - n.height / 2); c.y2 = Math.max(c.y2, n.positionY + n.height / 2); } c.w = c.x2 - c.x1; c.h = c.y2 - c.y1; totalA += c.w * c.h; } components.sort(function (c1, c2) { return c2.w * c2.h - c1.w * c1.h; }); var x = 0; var y = 0; var usedW = 0; var rowH = 0; var maxRowW = Math.sqrt(totalA) * layoutInfo.clientWidth / layoutInfo.clientHeight; for (var i = 0; i < components.length; i++) { var c = components[i]; if (!c) { continue; } for (var j = 0; j < c.length; j++) { var n = c[j]; if (!n.isLocked) { n.positionX += x - c.x1; n.positionY += y - c.y1; } } x += c.w + options.componentSpacing; usedW += c.w + options.componentSpacing; rowH = Math.max(rowH, c.h); if (usedW > maxRowW) { y += rowH + options.componentSpacing; x = 0; usedW = 0; rowH = 0; } } }; var defaults$3 = { fit: true, // whether to fit the viewport to the graph padding: 30, // padding used on fit boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } avoidOverlap: true, // prevents node overlap, may overflow boundingBox if not enough space avoidOverlapPadding: 10, // extra spacing around nodes when avoidOverlap: true nodeDimensionsIncludeLabels: false, // Excludes the label when calculating node bounding boxes for the layout algorithm spacingFactor: undefined, // Applies a multiplicative factor (>0) to expand or compress the overall area that the nodes take up condense: false, // uses all available space on false, uses minimal space on true rows: undefined, // force num of rows in the grid cols: undefined, // force num of columns in the grid position: function position(node) {}, // returns { row, col } for element sort: undefined, // a sorting function to order the nodes; e.g. function(a, b){ return a.data('weight') - b.data('weight') } animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function GridLayout(options) { this.options = extend({}, defaults$3, options); } GridLayout.prototype.run = function () { var params = this.options; var options = params; var cy = params.cy; var eles = options.eles; var nodes = eles.nodes().not(':parent'); if (options.sort) { nodes = nodes.sort(options.sort); } var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); if (bb.h === 0 || bb.w === 0) { eles.nodes().layoutPositions(this, options, function (ele) { return { x: bb.x1, y: bb.y1 }; }); } else { // width/height * splits^2 = cells where splits is number of times to split width var cells = nodes.size(); var splits = Math.sqrt(cells * bb.h / bb.w); var rows = Math.round(splits); var cols = Math.round(bb.w / bb.h * splits); var small = function small(val) { if (val == null) { return Math.min(rows, cols); } else { var min = Math.min(rows, cols); if (min == rows) { rows = val; } else { cols = val; } } }; var large = function large(val) { if (val == null) { return Math.max(rows, cols); } else { var max = Math.max(rows, cols); if (max == rows) { rows = val; } else { cols = val; } } }; var oRows = options.rows; var oCols = options.cols != null ? options.cols : options.columns; // if rows or columns were set in options, use those values if (oRows != null && oCols != null) { rows = oRows; cols = oCols; } else if (oRows != null && oCols == null) { rows = oRows; cols = Math.ceil(cells / rows); } else if (oRows == null && oCols != null) { cols = oCols; rows = Math.ceil(cells / cols); } // otherwise use the automatic values and adjust accordingly // if rounding was up, see if we can reduce rows or columns else if (cols * rows > cells) { var sm = small(); var lg = large(); // reducing the small side takes away the most cells, so try it first if ((sm - 1) * lg >= cells) { small(sm - 1); } else if ((lg - 1) * sm >= cells) { large(lg - 1); } } else { // if rounding was too low, add rows or columns while (cols * rows < cells) { var _sm = small(); var _lg = large(); // try to add to larger side first (adds less in multiplication) if ((_lg + 1) * _sm >= cells) { large(_lg + 1); } else { small(_sm + 1); } } } var cellWidth = bb.w / cols; var cellHeight = bb.h / rows; if (options.condense) { cellWidth = 0; cellHeight = 0; } if (options.avoidOverlap) { for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; var pos = node._private.position; if (pos.x == null || pos.y == null) { // for bb pos.x = 0; pos.y = 0; } var nbb = node.layoutDimensions(options); var p = options.avoidOverlapPadding; var w = nbb.w + p; var h = nbb.h + p; cellWidth = Math.max(cellWidth, w); cellHeight = Math.max(cellHeight, h); } } var cellUsed = {}; // e.g. 'c-0-2' => true var used = function used(row, col) { return cellUsed['c-' + row + '-' + col] ? true : false; }; var use = function use(row, col) { cellUsed['c-' + row + '-' + col] = true; }; // to keep track of current cell position var row = 0; var col = 0; var moveToNextCell = function moveToNextCell() { col++; if (col >= cols) { col = 0; row++; } }; // get a cache of all the manual positions var id2manPos = {}; for (var _i = 0; _i < nodes.length; _i++) { var _node = nodes[_i]; var rcPos = options.position(_node); if (rcPos && (rcPos.row !== undefined || rcPos.col !== undefined)) { // must have at least row or col def'd var _pos = { row: rcPos.row, col: rcPos.col }; if (_pos.col === undefined) { // find unused col _pos.col = 0; while (used(_pos.row, _pos.col)) { _pos.col++; } } else if (_pos.row === undefined) { // find unused row _pos.row = 0; while (used(_pos.row, _pos.col)) { _pos.row++; } } id2manPos[_node.id()] = _pos; use(_pos.row, _pos.col); } } var getPos = function getPos(element, i) { var x, y; if (element.locked() || element.isParent()) { return false; } // see if we have a manual position set var rcPos = id2manPos[element.id()]; if (rcPos) { x = rcPos.col * cellWidth + cellWidth / 2 + bb.x1; y = rcPos.row * cellHeight + cellHeight / 2 + bb.y1; } else { // otherwise set automatically while (used(row, col)) { moveToNextCell(); } x = col * cellWidth + cellWidth / 2 + bb.x1; y = row * cellHeight + cellHeight / 2 + bb.y1; use(row, col); moveToNextCell(); } return { x: x, y: y }; }; nodes.layoutPositions(this, options, getPos); } return this; // chaining }; // default layout options var defaults$2 = { ready: function ready() {}, // on layoutready stop: function stop() {} // on layoutstop }; // constructor // options : object containing layout options function NullLayout(options) { this.options = extend({}, defaults$2, options); } // runs the layout NullLayout.prototype.run = function () { var options = this.options; var eles = options.eles; // elements to consider in the layout var layout = this; // cy is automatically populated for us in the constructor // (disable eslint for next line as this serves as example layout code to external developers) // eslint-disable-next-line no-unused-vars options.cy; layout.emit('layoutstart'); // puts all nodes at (0, 0) // n.b. most layouts would use layoutPositions(), instead of positions() and manual events eles.nodes().positions(function () { return { x: 0, y: 0 }; }); // trigger layoutready when each node has had its position set at least once layout.one('layoutready', options.ready); layout.emit('layoutready'); // trigger layoutstop when the layout stops (e.g. finishes) layout.one('layoutstop', options.stop); layout.emit('layoutstop'); return this; // chaining }; // called on continuous layouts to stop them before they finish NullLayout.prototype.stop = function () { return this; // chaining }; var defaults$1 = { positions: undefined, // map of (node id) => (position obj); or function(node){ return somPos; } zoom: undefined, // the zoom level to set (prob want fit = false if set) pan: undefined, // the pan level to set (prob want fit = false if set) fit: true, // whether to fit to viewport padding: 30, // padding on fit spacingFactor: undefined, // Applies a multiplicative factor (>0) to expand or compress the overall area that the nodes take up animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function PresetLayout(options) { this.options = extend({}, defaults$1, options); } PresetLayout.prototype.run = function () { var options = this.options; var eles = options.eles; var nodes = eles.nodes(); var posIsFn = fn$6(options.positions); function getPosition(node) { if (options.positions == null) { return copyPosition(node.position()); } if (posIsFn) { return options.positions(node); } var pos = options.positions[node._private.data.id]; if (pos == null) { return null; } return pos; } nodes.layoutPositions(this, options, function (node, i) { var position = getPosition(node); if (node.locked() || position == null) { return false; } return position; }); return this; // chaining }; var defaults = { fit: true, // whether to fit to viewport padding: 30, // fit padding boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function RandomLayout(options) { this.options = extend({}, defaults, options); } RandomLayout.prototype.run = function () { var options = this.options; var cy = options.cy; var eles = options.eles; var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); var getPos = function getPos(node, i) { return { x: bb.x1 + Math.round(Math.random() * bb.w), y: bb.y1 + Math.round(Math.random() * bb.h) }; }; eles.nodes().layoutPositions(this, options, getPos); return this; // chaining }; var layout = [{ name: 'breadthfirst', impl: BreadthFirstLayout }, { name: 'circle', impl: CircleLayout }, { name: 'concentric', impl: ConcentricLayout }, { name: 'cose', impl: CoseLayout }, { name: 'grid', impl: GridLayout }, { name: 'null', impl: NullLayout }, { name: 'preset', impl: PresetLayout }, { name: 'random', impl: RandomLayout }]; function NullRenderer(options) { this.options = options; this.notifications = 0; // for testing } var noop = function noop() {}; var throwImgErr = function throwImgErr() { throw new Error('A headless instance can not render images'); }; NullRenderer.prototype = { recalculateRenderedStyle: noop, notify: function notify() { this.notifications++; }, init: noop, isHeadless: function isHeadless() { return true; }, png: throwImgErr, jpg: throwImgErr }; var BRp$f = {}; BRp$f.arrowShapeWidth = 0.3; BRp$f.registerArrowShapes = function () { var arrowShapes = this.arrowShapes = {}; var renderer = this; // Contract for arrow shapes: // 0, 0 is arrow tip // (0, 1) is direction towards node // (1, 0) is right // // functional api: // collide: check x, y in shape // roughCollide: called before collide, no false negatives // draw: draw // spacing: dist(arrowTip, nodeBoundary) // gap: dist(edgeTip, nodeBoundary), edgeTip may != arrowTip var bbCollide = function bbCollide(x, y, size, angle, translation, edgeWidth, padding) { var x1 = translation.x - size / 2 - padding; var x2 = translation.x + size / 2 + padding; var y1 = translation.y - size / 2 - padding; var y2 = translation.y + size / 2 + padding; var inside = x1 <= x && x <= x2 && y1 <= y && y <= y2; return inside; }; var transform = function transform(x, y, size, angle, translation) { var xRotated = x * Math.cos(angle) - y * Math.sin(angle); var yRotated = x * Math.sin(angle) + y * Math.cos(angle); var xScaled = xRotated * size; var yScaled = yRotated * size; var xTranslated = xScaled + translation.x; var yTranslated = yScaled + translation.y; return { x: xTranslated, y: yTranslated }; }; var transformPoints = function transformPoints(pts, size, angle, translation) { var retPts = []; for (var i = 0; i < pts.length; i += 2) { var x = pts[i]; var y = pts[i + 1]; retPts.push(transform(x, y, size, angle, translation)); } return retPts; }; var pointsToArr = function pointsToArr(pts) { var ret = []; for (var i = 0; i < pts.length; i++) { var p = pts[i]; ret.push(p.x, p.y); } return ret; }; var standardGap = function standardGap(edge) { return edge.pstyle('width').pfValue * edge.pstyle('arrow-scale').pfValue * 2; }; var defineArrowShape = function defineArrowShape(name, defn) { if (string(defn)) { defn = arrowShapes[defn]; } arrowShapes[name] = extend({ name: name, points: [-0.15, -0.3, 0.15, -0.3, 0.15, 0.3, -0.15, 0.3], collide: function collide(x, y, size, angle, translation, padding) { var points = pointsToArr(transformPoints(this.points, size + 2 * padding, angle, translation)); var inside = pointInsidePolygonPoints(x, y, points); return inside; }, roughCollide: bbCollide, draw: function draw(context, size, angle, translation) { var points = transformPoints(this.points, size, angle, translation); renderer.arrowShapeImpl('polygon')(context, points); }, spacing: function spacing(edge) { return 0; }, gap: standardGap }, defn); }; defineArrowShape('none', { collide: falsify, roughCollide: falsify, draw: noop$1, spacing: zeroify, gap: zeroify }); defineArrowShape('triangle', { points: [-0.15, -0.3, 0, 0, 0.15, -0.3] }); defineArrowShape('arrow', 'triangle'); defineArrowShape('triangle-backcurve', { points: arrowShapes['triangle'].points, controlPoint: [0, -0.15], roughCollide: bbCollide, draw: function draw(context, size, angle, translation, edgeWidth) { var ptsTrans = transformPoints(this.points, size, angle, translation); var ctrlPt = this.controlPoint; var ctrlPtTrans = transform(ctrlPt[0], ctrlPt[1], size, angle, translation); renderer.arrowShapeImpl(this.name)(context, ptsTrans, ctrlPtTrans); }, gap: function gap(edge) { return standardGap(edge) * 0.8; } }); defineArrowShape('triangle-tee', { points: [0, 0, 0.15, -0.3, -0.15, -0.3, 0, 0], pointsTee: [-0.15, -0.4, -0.15, -0.5, 0.15, -0.5, 0.15, -0.4], collide: function collide(x, y, size, angle, translation, edgeWidth, padding) { var triPts = pointsToArr(transformPoints(this.points, size + 2 * padding, angle, translation)); var teePts = pointsToArr(transformPoints(this.pointsTee, size + 2 * padding, angle, translation)); var inside = pointInsidePolygonPoints(x, y, triPts) || pointInsidePolygonPoints(x, y, teePts); return inside; }, draw: function draw(context, size, angle, translation, edgeWidth) { var triPts = transformPoints(this.points, size, angle, translation); var teePts = transformPoints(this.pointsTee, size, angle, translation); renderer.arrowShapeImpl(this.name)(context, triPts, teePts); } }); defineArrowShape('circle-triangle', { radius: 0.15, pointsTr: [0, -0.15, 0.15, -0.45, -0.15, -0.45, 0, -0.15], collide: function collide(x, y, size, angle, translation, edgeWidth, padding) { var t = translation; var circleInside = Math.pow(t.x - x, 2) + Math.pow(t.y - y, 2) <= Math.pow((size + 2 * padding) * this.radius, 2); var triPts = pointsToArr(transformPoints(this.points, size + 2 * padding, angle, translation)); return pointInsidePolygonPoints(x, y, triPts) || circleInside; }, draw: function draw(context, size, angle, translation, edgeWidth) { var triPts = transformPoints(this.pointsTr, size, angle, translation); renderer.arrowShapeImpl(this.name)(context, triPts, translation.x, translation.y, this.radius * size); }, spacing: function spacing(edge) { return renderer.getArrowWidth(edge.pstyle('width').pfValue, edge.pstyle('arrow-scale').value) * this.radius; } }); defineArrowShape('triangle-cross', { points: [0, 0, 0.15, -0.3, -0.15, -0.3, 0, 0], baseCrossLinePts: [-0.15, -0.4, // first half of the rectangle -0.15, -0.4, 0.15, -0.4, // second half of the rectangle 0.15, -0.4], crossLinePts: function crossLinePts(size, edgeWidth) { // shift points so that the distance between the cross points matches edge width var p = this.baseCrossLinePts.slice(); var shiftFactor = edgeWidth / size; var y0 = 3; var y1 = 5; p[y0] = p[y0] - shiftFactor; p[y1] = p[y1] - shiftFactor; return p; }, collide: function collide(x, y, size, angle, translation, edgeWidth, padding) { var triPts = pointsToArr(transformPoints(this.points, size + 2 * padding, angle, translation)); var teePts = pointsToArr(transformPoints(this.crossLinePts(size, edgeWidth), size + 2 * padding, angle, translation)); var inside = pointInsidePolygonPoints(x, y, triPts) || pointInsidePolygonPoints(x, y, teePts); return inside; }, draw: function draw(context, size, angle, translation, edgeWidth) { var triPts = transformPoints(this.points, size, angle, translation); var crossLinePts = transformPoints(this.crossLinePts(size, edgeWidth), size, angle, translation); renderer.arrowShapeImpl(this.name)(context, triPts, crossLinePts); } }); defineArrowShape('vee', { points: [-0.15, -0.3, 0, 0, 0.15, -0.3, 0, -0.15], gap: function gap(edge) { return standardGap(edge) * 0.525; } }); defineArrowShape('circle', { radius: 0.15, collide: function collide(x, y, size, angle, translation, edgeWidth, padding) { var t = translation; var inside = Math.pow(t.x - x, 2) + Math.pow(t.y - y, 2) <= Math.pow((size + 2 * padding) * this.radius, 2); return inside; }, draw: function draw(context, size, angle, translation, edgeWidth) { renderer.arrowShapeImpl(this.name)(context, translation.x, translation.y, this.radius * size); }, spacing: function spacing(edge) { return renderer.getArrowWidth(edge.pstyle('width').pfValue, edge.pstyle('arrow-scale').value) * this.radius; } }); defineArrowShape('tee', { points: [-0.15, 0, -0.15, -0.1, 0.15, -0.1, 0.15, 0], spacing: function spacing(edge) { return 1; }, gap: function gap(edge) { return 1; } }); defineArrowShape('square', { points: [-0.15, 0.00, 0.15, 0.00, 0.15, -0.3, -0.15, -0.3] }); defineArrowShape('diamond', { points: [-0.15, -0.15, 0, -0.3, 0.15, -0.15, 0, 0], gap: function gap(edge) { return edge.pstyle('width').pfValue * edge.pstyle('arrow-scale').value; } }); defineArrowShape('chevron', { points: [0, 0, -0.15, -0.15, -0.1, -0.2, 0, -0.1, 0.1, -0.2, 0.15, -0.15], gap: function gap(edge) { return 0.95 * edge.pstyle('width').pfValue * edge.pstyle('arrow-scale').value; } }); }; var BRp$e = {}; // Project mouse BRp$e.projectIntoViewport = function (clientX, clientY) { var cy = this.cy; var offsets = this.findContainerClientCoords(); var offsetLeft = offsets[0]; var offsetTop = offsets[1]; var scale = offsets[4]; var pan = cy.pan(); var zoom = cy.zoom(); var x = ((clientX - offsetLeft) / scale - pan.x) / zoom; var y = ((clientY - offsetTop) / scale - pan.y) / zoom; return [x, y]; }; BRp$e.findContainerClientCoords = function () { if (this.containerBB) { return this.containerBB; } var container = this.container; var rect = container.getBoundingClientRect(); var style = this.cy.window().getComputedStyle(container); var styleValue = function styleValue(name) { return parseFloat(style.getPropertyValue(name)); }; var padding = { left: styleValue('padding-left'), right: styleValue('padding-right'), top: styleValue('padding-top'), bottom: styleValue('padding-bottom') }; var border = { left: styleValue('border-left-width'), right: styleValue('border-right-width'), top: styleValue('border-top-width'), bottom: styleValue('border-bottom-width') }; var clientWidth = container.clientWidth; var clientHeight = container.clientHeight; var paddingHor = padding.left + padding.right; var paddingVer = padding.top + padding.bottom; var borderHor = border.left + border.right; var scale = rect.width / (clientWidth + borderHor); var unscaledW = clientWidth - paddingHor; var unscaledH = clientHeight - paddingVer; var left = rect.left + padding.left + border.left; var top = rect.top + padding.top + border.top; return this.containerBB = [left, top, unscaledW, unscaledH, scale]; }; BRp$e.invalidateContainerClientCoordsCache = function () { this.containerBB = null; }; BRp$e.findNearestElement = function (x, y, interactiveElementsOnly, isTouch) { return this.findNearestElements(x, y, interactiveElementsOnly, isTouch)[0]; }; BRp$e.findNearestElements = function (x, y, interactiveElementsOnly, isTouch) { var self = this; var r = this; var eles = r.getCachedZSortedEles(); var near = []; // 1 node max, 1 edge max var zoom = r.cy.zoom(); var hasCompounds = r.cy.hasCompoundNodes(); var edgeThreshold = (isTouch ? 24 : 8) / zoom; var nodeThreshold = (isTouch ? 8 : 2) / zoom; var labelThreshold = (isTouch ? 8 : 2) / zoom; var minSqDist = Infinity; var nearEdge; var nearNode; if (interactiveElementsOnly) { eles = eles.interactive; } function addEle(ele, sqDist) { if (ele.isNode()) { if (nearNode) { return; // can't replace node } else { nearNode = ele; near.push(ele); } } if (ele.isEdge() && (sqDist == null || sqDist < minSqDist)) { if (nearEdge) { // then replace existing edge // can replace only if same z-index if (nearEdge.pstyle('z-compound-depth').value === ele.pstyle('z-compound-depth').value && nearEdge.pstyle('z-compound-depth').value === ele.pstyle('z-compound-depth').value) { for (var i = 0; i < near.length; i++) { if (near[i].isEdge()) { near[i] = ele; nearEdge = ele; minSqDist = sqDist != null ? sqDist : minSqDist; break; } } } } else { near.push(ele); nearEdge = ele; minSqDist = sqDist != null ? sqDist : minSqDist; } } } function checkNode(node) { var width = node.outerWidth() + 2 * nodeThreshold; var height = node.outerHeight() + 2 * nodeThreshold; var hw = width / 2; var hh = height / 2; var pos = node.position(); var cornerRadius = node.pstyle('corner-radius').value === 'auto' ? 'auto' : node.pstyle('corner-radius').pfValue; var rs = node._private.rscratch; if (pos.x - hw <= x && x <= pos.x + hw // bb check x && pos.y - hh <= y && y <= pos.y + hh // bb check y ) { var shape = r.nodeShapes[self.getNodeShape(node)]; if (shape.checkPoint(x, y, 0, width, height, pos.x, pos.y, cornerRadius, rs)) { addEle(node, 0); return true; } } } function checkEdge(edge) { var _p = edge._private; var rs = _p.rscratch; var styleWidth = edge.pstyle('width').pfValue; var scale = edge.pstyle('arrow-scale').value; var width = styleWidth / 2 + edgeThreshold; // more like a distance radius from centre var widthSq = width * width; var width2 = width * 2; var src = _p.source; var tgt = _p.target; var sqDist; if (rs.edgeType === 'segments' || rs.edgeType === 'straight' || rs.edgeType === 'haystack') { var pts = rs.allpts; for (var i = 0; i + 3 < pts.length; i += 2) { if (inLineVicinity(x, y, pts[i], pts[i + 1], pts[i + 2], pts[i + 3], width2) && widthSq > (sqDist = sqdistToFiniteLine(x, y, pts[i], pts[i + 1], pts[i + 2], pts[i + 3]))) { addEle(edge, sqDist); return true; } } } else if (rs.edgeType === 'bezier' || rs.edgeType === 'multibezier' || rs.edgeType === 'self' || rs.edgeType === 'compound') { var pts = rs.allpts; for (var i = 0; i + 5 < rs.allpts.length; i += 4) { if (inBezierVicinity(x, y, pts[i], pts[i + 1], pts[i + 2], pts[i + 3], pts[i + 4], pts[i + 5], width2) && widthSq > (sqDist = sqdistToQuadraticBezier(x, y, pts[i], pts[i + 1], pts[i + 2], pts[i + 3], pts[i + 4], pts[i + 5]))) { addEle(edge, sqDist); return true; } } } // if we're close to the edge but didn't hit it, maybe we hit its arrows var src = src || _p.source; var tgt = tgt || _p.target; var arSize = self.getArrowWidth(styleWidth, scale); var arrows = [{ name: 'source', x: rs.arrowStartX, y: rs.arrowStartY, angle: rs.srcArrowAngle }, { name: 'target', x: rs.arrowEndX, y: rs.arrowEndY, angle: rs.tgtArrowAngle }, { name: 'mid-source', x: rs.midX, y: rs.midY, angle: rs.midsrcArrowAngle }, { name: 'mid-target', x: rs.midX, y: rs.midY, angle: rs.midtgtArrowAngle }]; for (var i = 0; i < arrows.length; i++) { var ar = arrows[i]; var shape = r.arrowShapes[edge.pstyle(ar.name + '-arrow-shape').value]; var edgeWidth = edge.pstyle('width').pfValue; if (shape.roughCollide(x, y, arSize, ar.angle, { x: ar.x, y: ar.y }, edgeWidth, edgeThreshold) && shape.collide(x, y, arSize, ar.angle, { x: ar.x, y: ar.y }, edgeWidth, edgeThreshold)) { addEle(edge); return true; } } // for compound graphs, hitting edge may actually want a connected node instead (b/c edge may have greater z-index precedence) if (hasCompounds && near.length > 0) { checkNode(src); checkNode(tgt); } } function preprop(obj, name, pre) { return getPrefixedProperty(obj, name, pre); } function checkLabel(ele, prefix) { var _p = ele._private; var th = labelThreshold; var prefixDash; if (prefix) { prefixDash = prefix + '-'; } else { prefixDash = ''; } ele.boundingBox(); var bb = _p.labelBounds[prefix || 'main']; var text = ele.pstyle(prefixDash + 'label').value; var eventsEnabled = ele.pstyle('text-events').strValue === 'yes'; if (!eventsEnabled || !text) { return; } var lx = preprop(_p.rscratch, 'labelX', prefix); var ly = preprop(_p.rscratch, 'labelY', prefix); var theta = preprop(_p.rscratch, 'labelAngle', prefix); var ox = ele.pstyle(prefixDash + 'text-margin-x').pfValue; var oy = ele.pstyle(prefixDash + 'text-margin-y').pfValue; var lx1 = bb.x1 - th - ox; // (-ox, -oy) as bb already includes margin var lx2 = bb.x2 + th - ox; // and rotation is about (lx, ly) var ly1 = bb.y1 - th - oy; var ly2 = bb.y2 + th - oy; if (theta) { var cos = Math.cos(theta); var sin = Math.sin(theta); var rotate = function rotate(x, y) { x = x - lx; y = y - ly; return { x: x * cos - y * sin + lx, y: x * sin + y * cos + ly }; }; var px1y1 = rotate(lx1, ly1); var px1y2 = rotate(lx1, ly2); var px2y1 = rotate(lx2, ly1); var px2y2 = rotate(lx2, ly2); var points = [ // with the margin added after the rotation is applied px1y1.x + ox, px1y1.y + oy, px2y1.x + ox, px2y1.y + oy, px2y2.x + ox, px2y2.y + oy, px1y2.x + ox, px1y2.y + oy]; if (pointInsidePolygonPoints(x, y, points)) { addEle(ele); return true; } } else { // do a cheaper bb check if (inBoundingBox(bb, x, y)) { addEle(ele); return true; } } } for (var i = eles.length - 1; i >= 0; i--) { // reverse order for precedence var ele = eles[i]; if (ele.isNode()) { checkNode(ele) || checkLabel(ele); } else { // then edge checkEdge(ele) || checkLabel(ele) || checkLabel(ele, 'source') || checkLabel(ele, 'target'); } } return near; }; // 'Give me everything from this box' BRp$e.getAllInBox = function (x1, y1, x2, y2) { var eles = this.getCachedZSortedEles().interactive; var box = []; var x1c = Math.min(x1, x2); var x2c = Math.max(x1, x2); var y1c = Math.min(y1, y2); var y2c = Math.max(y1, y2); x1 = x1c; x2 = x2c; y1 = y1c; y2 = y2c; var boxBb = makeBoundingBox({ x1: x1, y1: y1, x2: x2, y2: y2 }); for (var e = 0; e < eles.length; e++) { var ele = eles[e]; if (ele.isNode()) { var node = ele; var nodeBb = node.boundingBox({ includeNodes: true, includeEdges: false, includeLabels: false }); if (boundingBoxesIntersect(boxBb, nodeBb) && !boundingBoxInBoundingBox(nodeBb, boxBb)) { box.push(node); } } else { var edge = ele; var _p = edge._private; var rs = _p.rscratch; if (rs.startX != null && rs.startY != null && !inBoundingBox(boxBb, rs.startX, rs.startY)) { continue; } if (rs.endX != null && rs.endY != null && !inBoundingBox(boxBb, rs.endX, rs.endY)) { continue; } if (rs.edgeType === 'bezier' || rs.edgeType === 'multibezier' || rs.edgeType === 'self' || rs.edgeType === 'compound' || rs.edgeType === 'segments' || rs.edgeType === 'haystack') { var pts = _p.rstyle.bezierPts || _p.rstyle.linePts || _p.rstyle.haystackPts; var allInside = true; for (var i = 0; i < pts.length; i++) { if (!pointInBoundingBox(boxBb, pts[i])) { allInside = false; break; } } if (allInside) { box.push(edge); } } else if (rs.edgeType === 'haystack' || rs.edgeType === 'straight') { box.push(edge); } } } return box; }; var BRp$d = {}; BRp$d.calculateArrowAngles = function (edge) { var rs = edge._private.rscratch; var isHaystack = rs.edgeType === 'haystack'; var isBezier = rs.edgeType === 'bezier'; var isMultibezier = rs.edgeType === 'multibezier'; var isSegments = rs.edgeType === 'segments'; var isCompound = rs.edgeType === 'compound'; var isSelf = rs.edgeType === 'self'; // Displacement gives direction for arrowhead orientation var dispX, dispY; var startX, startY, endX, endY, midX, midY; if (isHaystack) { startX = rs.haystackPts[0]; startY = rs.haystackPts[1]; endX = rs.haystackPts[2]; endY = rs.haystackPts[3]; } else { startX = rs.arrowStartX; startY = rs.arrowStartY; endX = rs.arrowEndX; endY = rs.arrowEndY; } midX = rs.midX; midY = rs.midY; // source // if (isSegments) { dispX = startX - rs.segpts[0]; dispY = startY - rs.segpts[1]; } else if (isMultibezier || isCompound || isSelf || isBezier) { var pts = rs.allpts; var bX = qbezierAt(pts[0], pts[2], pts[4], 0.1); var bY = qbezierAt(pts[1], pts[3], pts[5], 0.1); dispX = startX - bX; dispY = startY - bY; } else { dispX = startX - midX; dispY = startY - midY; } rs.srcArrowAngle = getAngleFromDisp(dispX, dispY); // mid target // var midX = rs.midX; var midY = rs.midY; if (isHaystack) { midX = (startX + endX) / 2; midY = (startY + endY) / 2; } dispX = endX - startX; dispY = endY - startY; if (isSegments) { var pts = rs.allpts; if (pts.length / 2 % 2 === 0) { var i2 = pts.length / 2; var i1 = i2 - 2; dispX = pts[i2] - pts[i1]; dispY = pts[i2 + 1] - pts[i1 + 1]; } else if (rs.isRound) { dispX = rs.midVector[1]; dispY = -rs.midVector[0]; } else { var i2 = pts.length / 2 - 1; var i1 = i2 - 2; dispX = pts[i2] - pts[i1]; dispY = pts[i2 + 1] - pts[i1 + 1]; } } else if (isMultibezier || isCompound || isSelf) { var pts = rs.allpts; var cpts = rs.ctrlpts; var bp0x, bp0y; var bp1x, bp1y; if (cpts.length / 2 % 2 === 0) { var p0 = pts.length / 2 - 1; // startpt var ic = p0 + 2; var p1 = ic + 2; bp0x = qbezierAt(pts[p0], pts[ic], pts[p1], 0.0); bp0y = qbezierAt(pts[p0 + 1], pts[ic + 1], pts[p1 + 1], 0.0); bp1x = qbezierAt(pts[p0], pts[ic], pts[p1], 0.0001); bp1y = qbezierAt(pts[p0 + 1], pts[ic + 1], pts[p1 + 1], 0.0001); } else { var ic = pts.length / 2 - 1; // ctrpt var p0 = ic - 2; // startpt var p1 = ic + 2; // endpt bp0x = qbezierAt(pts[p0], pts[ic], pts[p1], 0.4999); bp0y = qbezierAt(pts[p0 + 1], pts[ic + 1], pts[p1 + 1], 0.4999); bp1x = qbezierAt(pts[p0], pts[ic], pts[p1], 0.5); bp1y = qbezierAt(pts[p0 + 1], pts[ic + 1], pts[p1 + 1], 0.5); } dispX = bp1x - bp0x; dispY = bp1y - bp0y; } rs.midtgtArrowAngle = getAngleFromDisp(dispX, dispY); rs.midDispX = dispX; rs.midDispY = dispY; // mid source // dispX *= -1; dispY *= -1; if (isSegments) { var pts = rs.allpts; if (pts.length / 2 % 2 === 0) ; else if (!rs.isRound) { var i2 = pts.length / 2 - 1; var i3 = i2 + 2; dispX = -(pts[i3] - pts[i2]); dispY = -(pts[i3 + 1] - pts[i2 + 1]); } } rs.midsrcArrowAngle = getAngleFromDisp(dispX, dispY); // target // if (isSegments) { dispX = endX - rs.segpts[rs.segpts.length - 2]; dispY = endY - rs.segpts[rs.segpts.length - 1]; } else if (isMultibezier || isCompound || isSelf || isBezier) { var pts = rs.allpts; var l = pts.length; var bX = qbezierAt(pts[l - 6], pts[l - 4], pts[l - 2], 0.9); var bY = qbezierAt(pts[l - 5], pts[l - 3], pts[l - 1], 0.9); dispX = endX - bX; dispY = endY - bY; } else { dispX = endX - midX; dispY = endY - midY; } rs.tgtArrowAngle = getAngleFromDisp(dispX, dispY); }; BRp$d.getArrowWidth = BRp$d.getArrowHeight = function (edgeWidth, scale) { var cache = this.arrowWidthCache = this.arrowWidthCache || {}; var cachedVal = cache[edgeWidth + ', ' + scale]; if (cachedVal) { return cachedVal; } cachedVal = Math.max(Math.pow(edgeWidth * 13.37, 0.9), 29) * scale; cache[edgeWidth + ', ' + scale] = cachedVal; return cachedVal; }; /** * Explained by Blindman67 at https://stackoverflow.com/a/44856925/11028828 */ // Declare reused variable to avoid reallocating variables every time the function is called var x, y, v1 = {}, v2 = {}, sinA, sinA90, radDirection, drawDirection, angle, halfAngle, cRadius, lenOut, radius, limit; var startX, startY, stopX, stopY; var lastPoint; // convert 2 points into vector form, polar form, and normalised var asVec = function asVec(p, pp, v) { v.x = pp.x - p.x; v.y = pp.y - p.y; v.len = Math.sqrt(v.x * v.x + v.y * v.y); v.nx = v.x / v.len; v.ny = v.y / v.len; v.ang = Math.atan2(v.ny, v.nx); }; var invertVec = function invertVec(originalV, invertedV) { invertedV.x = originalV.x * -1; invertedV.y = originalV.y * -1; invertedV.nx = originalV.nx * -1; invertedV.ny = originalV.ny * -1; invertedV.ang = originalV.ang > 0 ? -(Math.PI - originalV.ang) : Math.PI + originalV.ang; }; var calcCornerArc = function calcCornerArc(previousPoint, currentPoint, nextPoint, radiusMax, isArcRadius) { //----------------------------------------- // Part 1 previousPoint !== lastPoint ? asVec(currentPoint, previousPoint, v1) : invertVec(v2, v1); // Avoid recalculating vec if it is the invert of the last one calculated asVec(currentPoint, nextPoint, v2); sinA = v1.nx * v2.ny - v1.ny * v2.nx; sinA90 = v1.nx * v2.nx - v1.ny * -v2.ny; angle = Math.asin(Math.max(-1, Math.min(1, sinA))); if (Math.abs(angle) < 1e-6) { x = currentPoint.x; y = currentPoint.y; cRadius = radius = 0; return; } //----------------------------------------- radDirection = 1; drawDirection = false; if (sinA90 < 0) { if (angle < 0) { angle = Math.PI + angle; } else { angle = Math.PI - angle; radDirection = -1; drawDirection = true; } } else { if (angle > 0) { radDirection = -1; drawDirection = true; } } if (currentPoint.radius !== undefined) { radius = currentPoint.radius; } else { radius = radiusMax; } //----------------------------------------- // Part 2 halfAngle = angle / 2; //----------------------------------------- limit = Math.min(v1.len / 2, v2.len / 2); if (isArcRadius) { //----------------------------------------- // Part 3 lenOut = Math.abs(Math.cos(halfAngle) * radius / Math.sin(halfAngle)); //----------------------------------------- // Special part A if (lenOut > limit) { lenOut = limit; cRadius = Math.abs(lenOut * Math.sin(halfAngle) / Math.cos(halfAngle)); } else { cRadius = radius; } } else { lenOut = Math.min(limit, radius); cRadius = Math.abs(lenOut * Math.sin(halfAngle) / Math.cos(halfAngle)); } //----------------------------------------- //----------------------------------------- // Part 4 stopX = currentPoint.x + v2.nx * lenOut; stopY = currentPoint.y + v2.ny * lenOut; //----------------------------------------- // Part 5 x = stopX - v2.ny * cRadius * radDirection; y = stopY + v2.nx * cRadius * radDirection; //----------------------------------------- // Additional Part : calculate start point E startX = currentPoint.x + v1.nx * lenOut; startY = currentPoint.y + v1.ny * lenOut; // Save last point to avoid recalculating vector when not needed lastPoint = currentPoint; }; /** * Draw corner provided by {@link getRoundCorner} * * @param ctx :CanvasRenderingContext2D * @param roundCorner {{cx:number, cy:number, radius:number, endAngle: number, startAngle: number, counterClockwise: boolean}} */ function drawPreparedRoundCorner(ctx, roundCorner) { if (roundCorner.radius === 0) ctx.lineTo(roundCorner.cx, roundCorner.cy);else ctx.arc(roundCorner.cx, roundCorner.cy, roundCorner.radius, roundCorner.startAngle, roundCorner.endAngle, roundCorner.counterClockwise); } /** * Get round corner from a point and its previous and next neighbours in a path * * @param previousPoint {{x: number, y:number, radius: number?}} * @param currentPoint {{x: number, y:number, radius: number?}} * @param nextPoint {{x: number, y:number, radius: number?}} * @param radiusMax :number * @param isArcRadius :boolean * @return {{ * cx:number, cy:number, radius:number, * startX:number, startY:number, * stopX:number, stopY: number, * endAngle: number, startAngle: number, counterClockwise: boolean * }} */ function getRoundCorner(previousPoint, currentPoint, nextPoint, radiusMax) { var isArcRadius = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true; if (radiusMax === 0 || currentPoint.radius === 0) return { cx: currentPoint.x, cy: currentPoint.y, radius: 0, startX: currentPoint.x, startY: currentPoint.y, stopX: currentPoint.x, stopY: currentPoint.y, startAngle: undefined, endAngle: undefined, counterClockwise: undefined }; calcCornerArc(previousPoint, currentPoint, nextPoint, radiusMax, isArcRadius); return { cx: x, cy: y, radius: cRadius, startX: startX, startY: startY, stopX: stopX, stopY: stopY, startAngle: v1.ang + Math.PI / 2 * radDirection, endAngle: v2.ang - Math.PI / 2 * radDirection, counterClockwise: drawDirection }; } var BRp$c = {}; BRp$c.findMidptPtsEtc = function (edge, pairInfo) { var posPts = pairInfo.posPts, intersectionPts = pairInfo.intersectionPts, vectorNormInverse = pairInfo.vectorNormInverse; var midptPts; // n.b. assumes all edges in bezier bundle have same endpoints specified var srcManEndpt = edge.pstyle('source-endpoint'); var tgtManEndpt = edge.pstyle('target-endpoint'); var haveManualEndPts = srcManEndpt.units != null && tgtManEndpt.units != null; var recalcVectorNormInverse = function recalcVectorNormInverse(x1, y1, x2, y2) { var dy = y2 - y1; var dx = x2 - x1; var l = Math.sqrt(dx * dx + dy * dy); return { x: -dy / l, y: dx / l }; }; var edgeDistances = edge.pstyle('edge-distances').value; switch (edgeDistances) { case 'node-position': midptPts = posPts; break; case 'intersection': midptPts = intersectionPts; break; case 'endpoints': { if (haveManualEndPts) { var _this$manualEndptToPx = this.manualEndptToPx(edge.source()[0], srcManEndpt), _this$manualEndptToPx2 = _slicedToArray(_this$manualEndptToPx, 2), x1 = _this$manualEndptToPx2[0], y1 = _this$manualEndptToPx2[1]; var _this$manualEndptToPx3 = this.manualEndptToPx(edge.target()[0], tgtManEndpt), _this$manualEndptToPx4 = _slicedToArray(_this$manualEndptToPx3, 2), x2 = _this$manualEndptToPx4[0], y2 = _this$manualEndptToPx4[1]; var endPts = { x1: x1, y1: y1, x2: x2, y2: y2 }; vectorNormInverse = recalcVectorNormInverse(x1, y1, x2, y2); midptPts = endPts; } else { warn("Edge ".concat(edge.id(), " has edge-distances:endpoints specified without manual endpoints specified via source-endpoint and target-endpoint. Falling back on edge-distances:intersection (default).")); midptPts = intersectionPts; // back to default } break; } } return { midptPts: midptPts, vectorNormInverse: vectorNormInverse }; }; BRp$c.findHaystackPoints = function (edges) { for (var i = 0; i < edges.length; i++) { var edge = edges[i]; var _p = edge._private; var rs = _p.rscratch; if (!rs.haystack) { var angle = Math.random() * 2 * Math.PI; rs.source = { x: Math.cos(angle), y: Math.sin(angle) }; angle = Math.random() * 2 * Math.PI; rs.target = { x: Math.cos(angle), y: Math.sin(angle) }; } var src = _p.source; var tgt = _p.target; var srcPos = src.position(); var tgtPos = tgt.position(); var srcW = src.width(); var tgtW = tgt.width(); var srcH = src.height(); var tgtH = tgt.height(); var radius = edge.pstyle('haystack-radius').value; var halfRadius = radius / 2; // b/c have to half width/height rs.haystackPts = rs.allpts = [rs.source.x * srcW * halfRadius + srcPos.x, rs.source.y * srcH * halfRadius + srcPos.y, rs.target.x * tgtW * halfRadius + tgtPos.x, rs.target.y * tgtH * halfRadius + tgtPos.y]; rs.midX = (rs.allpts[0] + rs.allpts[2]) / 2; rs.midY = (rs.allpts[1] + rs.allpts[3]) / 2; // always override as haystack in case set to different type previously rs.edgeType = 'haystack'; rs.haystack = true; this.storeEdgeProjections(edge); this.calculateArrowAngles(edge); this.recalculateEdgeLabelProjections(edge); this.calculateLabelAngles(edge); } }; BRp$c.findSegmentsPoints = function (edge, pairInfo) { // Segments (multiple straight lines) var rs = edge._private.rscratch; var segmentWs = edge.pstyle('segment-weights'); var segmentDs = edge.pstyle('segment-distances'); var segmentRs = edge.pstyle('segment-radii'); var segmentTs = edge.pstyle('radius-type'); var segmentsN = Math.min(segmentWs.pfValue.length, segmentDs.pfValue.length); var lastRadius = segmentRs.pfValue[segmentRs.pfValue.length - 1]; var lastRadiusType = segmentTs.pfValue[segmentTs.pfValue.length - 1]; rs.edgeType = 'segments'; rs.segpts = []; rs.radii = []; rs.isArcRadius = []; for (var s = 0; s < segmentsN; s++) { var w = segmentWs.pfValue[s]; var d = segmentDs.pfValue[s]; var w1 = 1 - w; var w2 = w; var _this$findMidptPtsEtc = this.findMidptPtsEtc(edge, pairInfo), midptPts = _this$findMidptPtsEtc.midptPts, vectorNormInverse = _this$findMidptPtsEtc.vectorNormInverse; var adjustedMidpt = { x: midptPts.x1 * w1 + midptPts.x2 * w2, y: midptPts.y1 * w1 + midptPts.y2 * w2 }; rs.segpts.push(adjustedMidpt.x + vectorNormInverse.x * d, adjustedMidpt.y + vectorNormInverse.y * d); rs.radii.push(segmentRs.pfValue[s] !== undefined ? segmentRs.pfValue[s] : lastRadius); rs.isArcRadius.push((segmentTs.pfValue[s] !== undefined ? segmentTs.pfValue[s] : lastRadiusType) === 'arc-radius'); } }; BRp$c.findLoopPoints = function (edge, pairInfo, i, edgeIsUnbundled) { // Self-edge var rs = edge._private.rscratch; var dirCounts = pairInfo.dirCounts, srcPos = pairInfo.srcPos; var ctrlptDists = edge.pstyle('control-point-distances'); var ctrlptDist = ctrlptDists ? ctrlptDists.pfValue[0] : undefined; var loopDir = edge.pstyle('loop-direction').pfValue; var loopSwp = edge.pstyle('loop-sweep').pfValue; var stepSize = edge.pstyle('control-point-step-size').pfValue; rs.edgeType = 'self'; var j = i; var loopDist = stepSize; if (edgeIsUnbundled) { j = 0; loopDist = ctrlptDist; } var loopAngle = loopDir - Math.PI / 2; var outAngle = loopAngle - loopSwp / 2; var inAngle = loopAngle + loopSwp / 2; // increase by step size for overlapping loops, keyed on direction and sweep values var dc = String(loopDir + '_' + loopSwp); j = dirCounts[dc] === undefined ? dirCounts[dc] = 0 : ++dirCounts[dc]; rs.ctrlpts = [srcPos.x + Math.cos(outAngle) * 1.4 * loopDist * (j / 3 + 1), srcPos.y + Math.sin(outAngle) * 1.4 * loopDist * (j / 3 + 1), srcPos.x + Math.cos(inAngle) * 1.4 * loopDist * (j / 3 + 1), srcPos.y + Math.sin(inAngle) * 1.4 * loopDist * (j / 3 + 1)]; }; BRp$c.findCompoundLoopPoints = function (edge, pairInfo, i, edgeIsUnbundled) { // Compound edge var rs = edge._private.rscratch; rs.edgeType = 'compound'; var srcPos = pairInfo.srcPos, tgtPos = pairInfo.tgtPos, srcW = pairInfo.srcW, srcH = pairInfo.srcH, tgtW = pairInfo.tgtW, tgtH = pairInfo.tgtH; var stepSize = edge.pstyle('control-point-step-size').pfValue; var ctrlptDists = edge.pstyle('control-point-distances'); var ctrlptDist = ctrlptDists ? ctrlptDists.pfValue[0] : undefined; var j = i; var loopDist = stepSize; if (edgeIsUnbundled) { j = 0; loopDist = ctrlptDist; } var loopW = 50; var loopaPos = { x: srcPos.x - srcW / 2, y: srcPos.y - srcH / 2 }; var loopbPos = { x: tgtPos.x - tgtW / 2, y: tgtPos.y - tgtH / 2 }; var loopPos = { x: Math.min(loopaPos.x, loopbPos.x), y: Math.min(loopaPos.y, loopbPos.y) }; // avoids cases with impossible beziers var minCompoundStretch = 0.5; var compoundStretchA = Math.max(minCompoundStretch, Math.log(srcW * 0.01)); var compoundStretchB = Math.max(minCompoundStretch, Math.log(tgtW * 0.01)); rs.ctrlpts = [loopPos.x, loopPos.y - (1 + Math.pow(loopW, 1.12) / 100) * loopDist * (j / 3 + 1) * compoundStretchA, loopPos.x - (1 + Math.pow(loopW, 1.12) / 100) * loopDist * (j / 3 + 1) * compoundStretchB, loopPos.y]; }; BRp$c.findStraightEdgePoints = function (edge) { // Straight edge within bundle edge._private.rscratch.edgeType = 'straight'; }; BRp$c.findBezierPoints = function (edge, pairInfo, i, edgeIsUnbundled, edgeIsSwapped) { var rs = edge._private.rscratch; var stepSize = edge.pstyle('control-point-step-size').pfValue; var ctrlptDists = edge.pstyle('control-point-distances'); var ctrlptWs = edge.pstyle('control-point-weights'); var bezierN = ctrlptDists && ctrlptWs ? Math.min(ctrlptDists.value.length, ctrlptWs.value.length) : 1; var ctrlptDist = ctrlptDists ? ctrlptDists.pfValue[0] : undefined; var ctrlptWeight = ctrlptWs.value[0]; // (Multi)bezier var multi = edgeIsUnbundled; rs.edgeType = multi ? 'multibezier' : 'bezier'; rs.ctrlpts = []; for (var b = 0; b < bezierN; b++) { var normctrlptDist = (0.5 - pairInfo.eles.length / 2 + i) * stepSize * (edgeIsSwapped ? -1 : 1); var manctrlptDist = void 0; var sign = signum(normctrlptDist); if (multi) { ctrlptDist = ctrlptDists ? ctrlptDists.pfValue[b] : stepSize; // fall back on step size ctrlptWeight = ctrlptWs.value[b]; } if (edgeIsUnbundled) { // multi or single unbundled manctrlptDist = ctrlptDist; } else { manctrlptDist = ctrlptDist !== undefined ? sign * ctrlptDist : undefined; } var distanceFromMidpoint = manctrlptDist !== undefined ? manctrlptDist : normctrlptDist; var w1 = 1 - ctrlptWeight; var w2 = ctrlptWeight; var _this$findMidptPtsEtc2 = this.findMidptPtsEtc(edge, pairInfo), midptPts = _this$findMidptPtsEtc2.midptPts, vectorNormInverse = _this$findMidptPtsEtc2.vectorNormInverse; var adjustedMidpt = { x: midptPts.x1 * w1 + midptPts.x2 * w2, y: midptPts.y1 * w1 + midptPts.y2 * w2 }; rs.ctrlpts.push(adjustedMidpt.x + vectorNormInverse.x * distanceFromMidpoint, adjustedMidpt.y + vectorNormInverse.y * distanceFromMidpoint); } }; BRp$c.findTaxiPoints = function (edge, pairInfo) { // Taxicab geometry with two turns maximum var rs = edge._private.rscratch; rs.edgeType = 'segments'; var VERTICAL = 'vertical'; var HORIZONTAL = 'horizontal'; var LEFTWARD = 'leftward'; var RIGHTWARD = 'rightward'; var DOWNWARD = 'downward'; var UPWARD = 'upward'; var AUTO = 'auto'; var posPts = pairInfo.posPts, srcW = pairInfo.srcW, srcH = pairInfo.srcH, tgtW = pairInfo.tgtW, tgtH = pairInfo.tgtH; var edgeDistances = edge.pstyle('edge-distances').value; var dIncludesNodeBody = edgeDistances !== 'node-position'; var taxiDir = edge.pstyle('taxi-direction').value; var rawTaxiDir = taxiDir; // unprocessed value var taxiTurn = edge.pstyle('taxi-turn'); var turnIsPercent = taxiTurn.units === '%'; var taxiTurnPfVal = taxiTurn.pfValue; var turnIsNegative = taxiTurnPfVal < 0; // i.e. from target side var minD = edge.pstyle('taxi-turn-min-distance').pfValue; var dw = dIncludesNodeBody ? (srcW + tgtW) / 2 : 0; var dh = dIncludesNodeBody ? (srcH + tgtH) / 2 : 0; var pdx = posPts.x2 - posPts.x1; var pdy = posPts.y2 - posPts.y1; // take away the effective w/h from the magnitude of the delta value var subDWH = function subDWH(dxy, dwh) { if (dxy > 0) { return Math.max(dxy - dwh, 0); } else { return Math.min(dxy + dwh, 0); } }; var dx = subDWH(pdx, dw); var dy = subDWH(pdy, dh); var isExplicitDir = false; if (rawTaxiDir === AUTO) { taxiDir = Math.abs(dx) > Math.abs(dy) ? HORIZONTAL : VERTICAL; } else if (rawTaxiDir === UPWARD || rawTaxiDir === DOWNWARD) { taxiDir = VERTICAL; isExplicitDir = true; } else if (rawTaxiDir === LEFTWARD || rawTaxiDir === RIGHTWARD) { taxiDir = HORIZONTAL; isExplicitDir = true; } var isVert = taxiDir === VERTICAL; var l = isVert ? dy : dx; var pl = isVert ? pdy : pdx; var sgnL = signum(pl); var forcedDir = false; if (!(isExplicitDir && (turnIsPercent || turnIsNegative)) // forcing in this case would cause weird growing in the opposite direction && (rawTaxiDir === DOWNWARD && pl < 0 || rawTaxiDir === UPWARD && pl > 0 || rawTaxiDir === LEFTWARD && pl > 0 || rawTaxiDir === RIGHTWARD && pl < 0)) { sgnL *= -1; l = sgnL * Math.abs(l); forcedDir = true; } var d; if (turnIsPercent) { var p = taxiTurnPfVal < 0 ? 1 + taxiTurnPfVal : taxiTurnPfVal; d = p * l; } else { var k = taxiTurnPfVal < 0 ? l : 0; d = k + taxiTurnPfVal * sgnL; } var getIsTooClose = function getIsTooClose(d) { return Math.abs(d) < minD || Math.abs(d) >= Math.abs(l); }; var isTooCloseSrc = getIsTooClose(d); var isTooCloseTgt = getIsTooClose(Math.abs(l) - Math.abs(d)); var isTooClose = isTooCloseSrc || isTooCloseTgt; if (isTooClose && !forcedDir) { // non-ideal routing if (isVert) { // vertical fallbacks var lShapeInsideSrc = Math.abs(pl) <= srcH / 2; var lShapeInsideTgt = Math.abs(pdx) <= tgtW / 2; if (lShapeInsideSrc) { // horizontal Z-shape (direction not respected) var x = (posPts.x1 + posPts.x2) / 2; var y1 = posPts.y1, y2 = posPts.y2; rs.segpts = [x, y1, x, y2]; } else if (lShapeInsideTgt) { // vertical Z-shape (distance not respected) var y = (posPts.y1 + posPts.y2) / 2; var x1 = posPts.x1, x2 = posPts.x2; rs.segpts = [x1, y, x2, y]; } else { // L-shape fallback (turn distance not respected, but works well with tree siblings) rs.segpts = [posPts.x1, posPts.y2]; } } else { // horizontal fallbacks var _lShapeInsideSrc = Math.abs(pl) <= srcW / 2; var _lShapeInsideTgt = Math.abs(pdy) <= tgtH / 2; if (_lShapeInsideSrc) { // vertical Z-shape (direction not respected) var _y = (posPts.y1 + posPts.y2) / 2; var _x = posPts.x1, _x2 = posPts.x2; rs.segpts = [_x, _y, _x2, _y]; } else if (_lShapeInsideTgt) { // horizontal Z-shape (turn distance not respected) var _x3 = (posPts.x1 + posPts.x2) / 2; var _y2 = posPts.y1, _y3 = posPts.y2; rs.segpts = [_x3, _y2, _x3, _y3]; } else { // L-shape (turn distance not respected, but works well for tree siblings) rs.segpts = [posPts.x2, posPts.y1]; } } } else { // ideal routing if (isVert) { var _y4 = posPts.y1 + d + (dIncludesNodeBody ? srcH / 2 * sgnL : 0); var _x4 = posPts.x1, _x5 = posPts.x2; rs.segpts = [_x4, _y4, _x5, _y4]; } else { // horizontal var _x6 = posPts.x1 + d + (dIncludesNodeBody ? srcW / 2 * sgnL : 0); var _y5 = posPts.y1, _y6 = posPts.y2; rs.segpts = [_x6, _y5, _x6, _y6]; } } if (rs.isRound) { var radius = edge.pstyle('taxi-radius').value; var isArcRadius = edge.pstyle('radius-type').value[0] === 'arc-radius'; rs.radii = new Array(rs.segpts.length / 2).fill(radius); rs.isArcRadius = new Array(rs.segpts.length / 2).fill(isArcRadius); } }; BRp$c.tryToCorrectInvalidPoints = function (edge, pairInfo) { var rs = edge._private.rscratch; // can only correct beziers for now... if (rs.edgeType === 'bezier') { var srcPos = pairInfo.srcPos, tgtPos = pairInfo.tgtPos, srcW = pairInfo.srcW, srcH = pairInfo.srcH, tgtW = pairInfo.tgtW, tgtH = pairInfo.tgtH, srcShape = pairInfo.srcShape, tgtShape = pairInfo.tgtShape, srcCornerRadius = pairInfo.srcCornerRadius, tgtCornerRadius = pairInfo.tgtCornerRadius, srcRs = pairInfo.srcRs, tgtRs = pairInfo.tgtRs; var badStart = !number$1(rs.startX) || !number$1(rs.startY); var badAStart = !number$1(rs.arrowStartX) || !number$1(rs.arrowStartY); var badEnd = !number$1(rs.endX) || !number$1(rs.endY); var badAEnd = !number$1(rs.arrowEndX) || !number$1(rs.arrowEndY); var minCpADistFactor = 3; var arrowW = this.getArrowWidth(edge.pstyle('width').pfValue, edge.pstyle('arrow-scale').value) * this.arrowShapeWidth; var minCpADist = minCpADistFactor * arrowW; var startACpDist = dist({ x: rs.ctrlpts[0], y: rs.ctrlpts[1] }, { x: rs.startX, y: rs.startY }); var closeStartACp = startACpDist < minCpADist; var endACpDist = dist({ x: rs.ctrlpts[0], y: rs.ctrlpts[1] }, { x: rs.endX, y: rs.endY }); var closeEndACp = endACpDist < minCpADist; var overlapping = false; if (badStart || badAStart || closeStartACp) { overlapping = true; // project control point along line from src centre to outside the src shape // (otherwise intersection will yield nothing) var cpD = { // delta x: rs.ctrlpts[0] - srcPos.x, y: rs.ctrlpts[1] - srcPos.y }; var cpL = Math.sqrt(cpD.x * cpD.x + cpD.y * cpD.y); // length of line var cpM = { // normalised delta x: cpD.x / cpL, y: cpD.y / cpL }; var radius = Math.max(srcW, srcH); var cpProj = { // *2 radius guarantees outside shape x: rs.ctrlpts[0] + cpM.x * 2 * radius, y: rs.ctrlpts[1] + cpM.y * 2 * radius }; var srcCtrlPtIntn = srcShape.intersectLine(srcPos.x, srcPos.y, srcW, srcH, cpProj.x, cpProj.y, 0, srcCornerRadius, srcRs); if (closeStartACp) { rs.ctrlpts[0] = rs.ctrlpts[0] + cpM.x * (minCpADist - startACpDist); rs.ctrlpts[1] = rs.ctrlpts[1] + cpM.y * (minCpADist - startACpDist); } else { rs.ctrlpts[0] = srcCtrlPtIntn[0] + cpM.x * minCpADist; rs.ctrlpts[1] = srcCtrlPtIntn[1] + cpM.y * minCpADist; } } if (badEnd || badAEnd || closeEndACp) { overlapping = true; // project control point along line from tgt centre to outside the tgt shape // (otherwise intersection will yield nothing) var _cpD = { // delta x: rs.ctrlpts[0] - tgtPos.x, y: rs.ctrlpts[1] - tgtPos.y }; var _cpL = Math.sqrt(_cpD.x * _cpD.x + _cpD.y * _cpD.y); // length of line var _cpM = { // normalised delta x: _cpD.x / _cpL, y: _cpD.y / _cpL }; var _radius = Math.max(srcW, srcH); var _cpProj = { // *2 radius guarantees outside shape x: rs.ctrlpts[0] + _cpM.x * 2 * _radius, y: rs.ctrlpts[1] + _cpM.y * 2 * _radius }; var tgtCtrlPtIntn = tgtShape.intersectLine(tgtPos.x, tgtPos.y, tgtW, tgtH, _cpProj.x, _cpProj.y, 0, tgtCornerRadius, tgtRs); if (closeEndACp) { rs.ctrlpts[0] = rs.ctrlpts[0] + _cpM.x * (minCpADist - endACpDist); rs.ctrlpts[1] = rs.ctrlpts[1] + _cpM.y * (minCpADist - endACpDist); } else { rs.ctrlpts[0] = tgtCtrlPtIntn[0] + _cpM.x * minCpADist; rs.ctrlpts[1] = tgtCtrlPtIntn[1] + _cpM.y * minCpADist; } } if (overlapping) { // recalc endpts this.findEndpoints(edge); } } }; BRp$c.storeAllpts = function (edge) { var rs = edge._private.rscratch; if (rs.edgeType === 'multibezier' || rs.edgeType === 'bezier' || rs.edgeType === 'self' || rs.edgeType === 'compound') { rs.allpts = []; rs.allpts.push(rs.startX, rs.startY); for (var b = 0; b + 1 < rs.ctrlpts.length; b += 2) { // ctrl pt itself rs.allpts.push(rs.ctrlpts[b], rs.ctrlpts[b + 1]); // the midpt between ctrlpts as intermediate destination pts if (b + 3 < rs.ctrlpts.length) { rs.allpts.push((rs.ctrlpts[b] + rs.ctrlpts[b + 2]) / 2, (rs.ctrlpts[b + 1] + rs.ctrlpts[b + 3]) / 2); } } rs.allpts.push(rs.endX, rs.endY); var m, mt; if (rs.ctrlpts.length / 2 % 2 === 0) { m = rs.allpts.length / 2 - 1; rs.midX = rs.allpts[m]; rs.midY = rs.allpts[m + 1]; } else { m = rs.allpts.length / 2 - 3; mt = 0.5; rs.midX = qbezierAt(rs.allpts[m], rs.allpts[m + 2], rs.allpts[m + 4], mt); rs.midY = qbezierAt(rs.allpts[m + 1], rs.allpts[m + 3], rs.allpts[m + 5], mt); } } else if (rs.edgeType === 'straight') { // need to calc these after endpts rs.allpts = [rs.startX, rs.startY, rs.endX, rs.endY]; // default midpt for labels etc rs.midX = (rs.startX + rs.endX + rs.arrowStartX + rs.arrowEndX) / 4; rs.midY = (rs.startY + rs.endY + rs.arrowStartY + rs.arrowEndY) / 4; } else if (rs.edgeType === 'segments') { rs.allpts = []; rs.allpts.push(rs.startX, rs.startY); rs.allpts.push.apply(rs.allpts, rs.segpts); rs.allpts.push(rs.endX, rs.endY); if (rs.isRound) { rs.roundCorners = []; for (var i = 2; i + 3 < rs.allpts.length; i += 2) { var radius = rs.radii[i / 2 - 1]; var isArcRadius = rs.isArcRadius[i / 2 - 1]; rs.roundCorners.push(getRoundCorner({ x: rs.allpts[i - 2], y: rs.allpts[i - 1] }, { x: rs.allpts[i], y: rs.allpts[i + 1], radius: radius }, { x: rs.allpts[i + 2], y: rs.allpts[i + 3] }, radius, isArcRadius)); } } if (rs.segpts.length % 4 === 0) { var i2 = rs.segpts.length / 2; var i1 = i2 - 2; rs.midX = (rs.segpts[i1] + rs.segpts[i2]) / 2; rs.midY = (rs.segpts[i1 + 1] + rs.segpts[i2 + 1]) / 2; } else { var _i = rs.segpts.length / 2 - 1; if (!rs.isRound) { rs.midX = rs.segpts[_i]; rs.midY = rs.segpts[_i + 1]; } else { var point = { x: rs.segpts[_i], y: rs.segpts[_i + 1] }; var corner = rs.roundCorners[_i / 2]; var v = [point.x - corner.cx, point.y - corner.cy]; var factor = corner.radius / Math.sqrt(Math.pow(v[0], 2) + Math.pow(v[1], 2)); v = v.map(function (c) { return c * factor; }); rs.midX = corner.cx + v[0]; rs.midY = corner.cy + v[1]; rs.midVector = v; } } } }; BRp$c.checkForInvalidEdgeWarning = function (edge) { var rs = edge[0]._private.rscratch; if (rs.nodesOverlap || number$1(rs.startX) && number$1(rs.startY) && number$1(rs.endX) && number$1(rs.endY)) { rs.loggedErr = false; } else { if (!rs.loggedErr) { rs.loggedErr = true; warn('Edge `' + edge.id() + '` has invalid endpoints and so it is impossible to draw. Adjust your edge style (e.g. control points) accordingly or use an alternative edge type. This is expected behaviour when the source node and the target node overlap.'); } } }; BRp$c.findEdgeControlPoints = function (edges) { var _this = this; if (!edges || edges.length === 0) { return; } var r = this; var cy = r.cy; var hasCompounds = cy.hasCompoundNodes(); var hashTable = { map: new Map$2(), get: function get(pairId) { var map2 = this.map.get(pairId[0]); if (map2 != null) { return map2.get(pairId[1]); } else { return null; } }, set: function set(pairId, val) { var map2 = this.map.get(pairId[0]); if (map2 == null) { map2 = new Map$2(); this.map.set(pairId[0], map2); } map2.set(pairId[1], val); } }; var pairIds = []; var haystackEdges = []; // create a table of edge (src, tgt) => list of edges between them for (var i = 0; i < edges.length; i++) { var edge = edges[i]; var _p = edge._private; var curveStyle = edge.pstyle('curve-style').value; // ignore edges who are not to be displayed // they shouldn't take up space if (edge.removed() || !edge.takesUpSpace()) { continue; } if (curveStyle === 'haystack') { haystackEdges.push(edge); continue; } var edgeIsUnbundled = curveStyle === 'unbundled-bezier' || curveStyle.endsWith('segments') || curveStyle === 'straight' || curveStyle === 'straight-triangle' || curveStyle.endsWith('taxi'); var edgeIsBezier = curveStyle === 'unbundled-bezier' || curveStyle === 'bezier'; var src = _p.source; var tgt = _p.target; var srcIndex = src.poolIndex(); var tgtIndex = tgt.poolIndex(); var pairId = [srcIndex, tgtIndex].sort(); var tableEntry = hashTable.get(pairId); if (tableEntry == null) { tableEntry = { eles: [] }; hashTable.set(pairId, tableEntry); pairIds.push(pairId); } tableEntry.eles.push(edge); if (edgeIsUnbundled) { tableEntry.hasUnbundled = true; } if (edgeIsBezier) { tableEntry.hasBezier = true; } } // for each pair (src, tgt), create the ctrl pts // Nested for loop is OK; total number of iterations for both loops = edgeCount var _loop = function _loop(p) { var pairId = pairIds[p]; var pairInfo = hashTable.get(pairId); var swappedpairInfo = void 0; if (!pairInfo.hasUnbundled) { var pllEdges = pairInfo.eles[0].parallelEdges().filter(function (e) { return e.isBundledBezier(); }); clearArray(pairInfo.eles); pllEdges.forEach(function (edge) { return pairInfo.eles.push(edge); }); // for each pair id, the edges should be sorted by index pairInfo.eles.sort(function (edge1, edge2) { return edge1.poolIndex() - edge2.poolIndex(); }); } var firstEdge = pairInfo.eles[0]; var src = firstEdge.source(); var tgt = firstEdge.target(); // make sure src/tgt distinction is consistent w.r.t. pairId if (src.poolIndex() > tgt.poolIndex()) { var temp = src; src = tgt; tgt = temp; } var srcPos = pairInfo.srcPos = src.position(); var tgtPos = pairInfo.tgtPos = tgt.position(); var srcW = pairInfo.srcW = src.outerWidth(); var srcH = pairInfo.srcH = src.outerHeight(); var tgtW = pairInfo.tgtW = tgt.outerWidth(); var tgtH = pairInfo.tgtH = tgt.outerHeight(); var srcShape = pairInfo.srcShape = r.nodeShapes[_this.getNodeShape(src)]; var tgtShape = pairInfo.tgtShape = r.nodeShapes[_this.getNodeShape(tgt)]; var srcCornerRadius = pairInfo.srcCornerRadius = src.pstyle('corner-radius').value === 'auto' ? 'auto' : src.pstyle('corner-radius').pfValue; var tgtCornerRadius = pairInfo.tgtCornerRadius = tgt.pstyle('corner-radius').value === 'auto' ? 'auto' : tgt.pstyle('corner-radius').pfValue; var tgtRs = pairInfo.tgtRs = tgt._private.rscratch; var srcRs = pairInfo.srcRs = src._private.rscratch; pairInfo.dirCounts = { 'north': 0, 'west': 0, 'south': 0, 'east': 0, 'northwest': 0, 'southwest': 0, 'northeast': 0, 'southeast': 0 }; for (var _i2 = 0; _i2 < pairInfo.eles.length; _i2++) { var _edge = pairInfo.eles[_i2]; var rs = _edge[0]._private.rscratch; var _curveStyle = _edge.pstyle('curve-style').value; var _edgeIsUnbundled = _curveStyle === 'unbundled-bezier' || _curveStyle.endsWith('segments') || _curveStyle.endsWith('taxi'); // whether the normalised pair order is the reverse of the edge's src-tgt order var edgeIsSwapped = !src.same(_edge.source()); if (!pairInfo.calculatedIntersection && src !== tgt && (pairInfo.hasBezier || pairInfo.hasUnbundled)) { pairInfo.calculatedIntersection = true; // pt outside src shape to calc distance/displacement from src to tgt var srcOutside = srcShape.intersectLine(srcPos.x, srcPos.y, srcW, srcH, tgtPos.x, tgtPos.y, 0, srcCornerRadius, srcRs); var srcIntn = pairInfo.srcIntn = srcOutside; // pt outside tgt shape to calc distance/displacement from src to tgt var tgtOutside = tgtShape.intersectLine(tgtPos.x, tgtPos.y, tgtW, tgtH, srcPos.x, srcPos.y, 0, tgtCornerRadius, tgtRs); var tgtIntn = pairInfo.tgtIntn = tgtOutside; var intersectionPts = pairInfo.intersectionPts = { x1: srcOutside[0], x2: tgtOutside[0], y1: srcOutside[1], y2: tgtOutside[1] }; var posPts = pairInfo.posPts = { x1: srcPos.x, x2: tgtPos.x, y1: srcPos.y, y2: tgtPos.y }; var dy = tgtOutside[1] - srcOutside[1]; var dx = tgtOutside[0] - srcOutside[0]; var l = Math.sqrt(dx * dx + dy * dy); var vector = pairInfo.vector = { x: dx, y: dy }; var vectorNorm = pairInfo.vectorNorm = { x: vector.x / l, y: vector.y / l }; var vectorNormInverse = { x: -vectorNorm.y, y: vectorNorm.x }; // if node shapes overlap, then no ctrl pts to draw pairInfo.nodesOverlap = !number$1(l) || tgtShape.checkPoint(srcOutside[0], srcOutside[1], 0, tgtW, tgtH, tgtPos.x, tgtPos.y, tgtCornerRadius, tgtRs) || srcShape.checkPoint(tgtOutside[0], tgtOutside[1], 0, srcW, srcH, srcPos.x, srcPos.y, srcCornerRadius, srcRs); pairInfo.vectorNormInverse = vectorNormInverse; swappedpairInfo = { nodesOverlap: pairInfo.nodesOverlap, dirCounts: pairInfo.dirCounts, calculatedIntersection: true, hasBezier: pairInfo.hasBezier, hasUnbundled: pairInfo.hasUnbundled, eles: pairInfo.eles, srcPos: tgtPos, tgtPos: srcPos, srcW: tgtW, srcH: tgtH, tgtW: srcW, tgtH: srcH, srcIntn: tgtIntn, tgtIntn: srcIntn, srcShape: tgtShape, tgtShape: srcShape, posPts: { x1: posPts.x2, y1: posPts.y2, x2: posPts.x1, y2: posPts.y1 }, intersectionPts: { x1: intersectionPts.x2, y1: intersectionPts.y2, x2: intersectionPts.x1, y2: intersectionPts.y1 }, vector: { x: -vector.x, y: -vector.y }, vectorNorm: { x: -vectorNorm.x, y: -vectorNorm.y }, vectorNormInverse: { x: -vectorNormInverse.x, y: -vectorNormInverse.y } }; } var passedPairInfo = edgeIsSwapped ? swappedpairInfo : pairInfo; rs.nodesOverlap = passedPairInfo.nodesOverlap; rs.srcIntn = passedPairInfo.srcIntn; rs.tgtIntn = passedPairInfo.tgtIntn; rs.isRound = _curveStyle.startsWith('round'); if (hasCompounds && (src.isParent() || src.isChild() || tgt.isParent() || tgt.isChild()) && (src.parents().anySame(tgt) || tgt.parents().anySame(src) || src.same(tgt) && src.isParent())) { _this.findCompoundLoopPoints(_edge, passedPairInfo, _i2, _edgeIsUnbundled); } else if (src === tgt) { _this.findLoopPoints(_edge, passedPairInfo, _i2, _edgeIsUnbundled); } else if (_curveStyle.endsWith('segments')) { _this.findSegmentsPoints(_edge, passedPairInfo); } else if (_curveStyle.endsWith('taxi')) { _this.findTaxiPoints(_edge, passedPairInfo); } else if (_curveStyle === 'straight' || !_edgeIsUnbundled && pairInfo.eles.length % 2 === 1 && _i2 === Math.floor(pairInfo.eles.length / 2)) { _this.findStraightEdgePoints(_edge); } else { _this.findBezierPoints(_edge, passedPairInfo, _i2, _edgeIsUnbundled, edgeIsSwapped); } _this.findEndpoints(_edge); _this.tryToCorrectInvalidPoints(_edge, passedPairInfo); _this.checkForInvalidEdgeWarning(_edge); _this.storeAllpts(_edge); _this.storeEdgeProjections(_edge); _this.calculateArrowAngles(_edge); _this.recalculateEdgeLabelProjections(_edge); _this.calculateLabelAngles(_edge); } // for pair edges }; for (var p = 0; p < pairIds.length; p++) { _loop(p); } // for pair ids // haystacks avoid the expense of pairInfo stuff (intersections etc.) this.findHaystackPoints(haystackEdges); }; function getPts(pts) { var retPts = []; if (pts == null) { return; } for (var i = 0; i < pts.length; i += 2) { var x = pts[i]; var y = pts[i + 1]; retPts.push({ x: x, y: y }); } return retPts; } BRp$c.getSegmentPoints = function (edge) { var rs = edge[0]._private.rscratch; var type = rs.edgeType; if (type === 'segments') { this.recalculateRenderedStyle(edge); return getPts(rs.segpts); } }; BRp$c.getControlPoints = function (edge) { var rs = edge[0]._private.rscratch; var type = rs.edgeType; if (type === 'bezier' || type === 'multibezier' || type === 'self' || type === 'compound') { this.recalculateRenderedStyle(edge); return getPts(rs.ctrlpts); } }; BRp$c.getEdgeMidpoint = function (edge) { var rs = edge[0]._private.rscratch; this.recalculateRenderedStyle(edge); return { x: rs.midX, y: rs.midY }; }; var BRp$b = {}; BRp$b.manualEndptToPx = function (node, prop) { var r = this; var npos = node.position(); var w = node.outerWidth(); var h = node.outerHeight(); var rs = node._private.rscratch; if (prop.value.length === 2) { var p = [prop.pfValue[0], prop.pfValue[1]]; if (prop.units[0] === '%') { p[0] = p[0] * w; } if (prop.units[1] === '%') { p[1] = p[1] * h; } p[0] += npos.x; p[1] += npos.y; return p; } else { var angle = prop.pfValue[0]; angle = -Math.PI / 2 + angle; // start at 12 o'clock var l = 2 * Math.max(w, h); var _p = [npos.x + Math.cos(angle) * l, npos.y + Math.sin(angle) * l]; return r.nodeShapes[this.getNodeShape(node)].intersectLine(npos.x, npos.y, w, h, _p[0], _p[1], 0, node.pstyle('corner-radius').value === 'auto' ? 'auto' : node.pstyle('corner-radius').pfValue, rs); } }; BRp$b.findEndpoints = function (edge) { var r = this; var intersect; var source = edge.source()[0]; var target = edge.target()[0]; var srcPos = source.position(); var tgtPos = target.position(); var tgtArShape = edge.pstyle('target-arrow-shape').value; var srcArShape = edge.pstyle('source-arrow-shape').value; var tgtDist = edge.pstyle('target-distance-from-node').pfValue; var srcDist = edge.pstyle('source-distance-from-node').pfValue; var srcRs = source._private.rscratch; var tgtRs = target._private.rscratch; var curveStyle = edge.pstyle('curve-style').value; var rs = edge._private.rscratch; var et = rs.edgeType; var taxi = curveStyle === 'taxi'; var self = et === 'self' || et === 'compound'; var bezier = et === 'bezier' || et === 'multibezier' || self; var multi = et !== 'bezier'; var lines = et === 'straight' || et === 'segments'; var segments = et === 'segments'; var hasEndpts = bezier || multi || lines; var overrideEndpts = self || taxi; var srcManEndpt = edge.pstyle('source-endpoint'); var srcManEndptVal = overrideEndpts ? 'outside-to-node' : srcManEndpt.value; var srcCornerRadius = source.pstyle('corner-radius').value === 'auto' ? 'auto' : source.pstyle('corner-radius').pfValue; var tgtManEndpt = edge.pstyle('target-endpoint'); var tgtManEndptVal = overrideEndpts ? 'outside-to-node' : tgtManEndpt.value; var tgtCornerRadius = target.pstyle('corner-radius').value === 'auto' ? 'auto' : target.pstyle('corner-radius').pfValue; rs.srcManEndpt = srcManEndpt; rs.tgtManEndpt = tgtManEndpt; var p1; // last known point of edge on target side var p2; // last known point of edge on source side var p1_i; // point to intersect with target shape var p2_i; // point to intersect with source shape if (bezier) { var cpStart = [rs.ctrlpts[0], rs.ctrlpts[1]]; var cpEnd = multi ? [rs.ctrlpts[rs.ctrlpts.length - 2], rs.ctrlpts[rs.ctrlpts.length - 1]] : cpStart; p1 = cpEnd; p2 = cpStart; } else if (lines) { var srcArrowFromPt = !segments ? [tgtPos.x, tgtPos.y] : rs.segpts.slice(0, 2); var tgtArrowFromPt = !segments ? [srcPos.x, srcPos.y] : rs.segpts.slice(rs.segpts.length - 2); p1 = tgtArrowFromPt; p2 = srcArrowFromPt; } if (tgtManEndptVal === 'inside-to-node') { intersect = [tgtPos.x, tgtPos.y]; } else if (tgtManEndpt.units) { intersect = this.manualEndptToPx(target, tgtManEndpt); } else if (tgtManEndptVal === 'outside-to-line') { intersect = rs.tgtIntn; // use cached value from ctrlpt calc } else { if (tgtManEndptVal === 'outside-to-node' || tgtManEndptVal === 'outside-to-node-or-label') { p1_i = p1; } else if (tgtManEndptVal === 'outside-to-line' || tgtManEndptVal === 'outside-to-line-or-label') { p1_i = [srcPos.x, srcPos.y]; } intersect = r.nodeShapes[this.getNodeShape(target)].intersectLine(tgtPos.x, tgtPos.y, target.outerWidth(), target.outerHeight(), p1_i[0], p1_i[1], 0, tgtCornerRadius, tgtRs); if (tgtManEndptVal === 'outside-to-node-or-label' || tgtManEndptVal === 'outside-to-line-or-label') { var trs = target._private.rscratch; var lw = trs.labelWidth; var lh = trs.labelHeight; var lx = trs.labelX; var ly = trs.labelY; var lw2 = lw / 2; var lh2 = lh / 2; var va = target.pstyle('text-valign').value; if (va === 'top') { ly -= lh2; } else if (va === 'bottom') { ly += lh2; } var ha = target.pstyle('text-halign').value; if (ha === 'left') { lx -= lw2; } else if (ha === 'right') { lx += lw2; } var labelIntersect = polygonIntersectLine(p1_i[0], p1_i[1], [lx - lw2, ly - lh2, lx + lw2, ly - lh2, lx + lw2, ly + lh2, lx - lw2, ly + lh2], tgtPos.x, tgtPos.y); if (labelIntersect.length > 0) { var refPt = srcPos; var intSqdist = sqdist(refPt, array2point(intersect)); var labIntSqdist = sqdist(refPt, array2point(labelIntersect)); var minSqDist = intSqdist; if (labIntSqdist < intSqdist) { intersect = labelIntersect; minSqDist = labIntSqdist; } if (labelIntersect.length > 2) { var labInt2SqDist = sqdist(refPt, { x: labelIntersect[2], y: labelIntersect[3] }); if (labInt2SqDist < minSqDist) { intersect = [labelIntersect[2], labelIntersect[3]]; } } } } } var arrowEnd = shortenIntersection(intersect, p1, r.arrowShapes[tgtArShape].spacing(edge) + tgtDist); var edgeEnd = shortenIntersection(intersect, p1, r.arrowShapes[tgtArShape].gap(edge) + tgtDist); rs.endX = edgeEnd[0]; rs.endY = edgeEnd[1]; rs.arrowEndX = arrowEnd[0]; rs.arrowEndY = arrowEnd[1]; if (srcManEndptVal === 'inside-to-node') { intersect = [srcPos.x, srcPos.y]; } else if (srcManEndpt.units) { intersect = this.manualEndptToPx(source, srcManEndpt); } else if (srcManEndptVal === 'outside-to-line') { intersect = rs.srcIntn; // use cached value from ctrlpt calc } else { if (srcManEndptVal === 'outside-to-node' || srcManEndptVal === 'outside-to-node-or-label') { p2_i = p2; } else if (srcManEndptVal === 'outside-to-line' || srcManEndptVal === 'outside-to-line-or-label') { p2_i = [tgtPos.x, tgtPos.y]; } intersect = r.nodeShapes[this.getNodeShape(source)].intersectLine(srcPos.x, srcPos.y, source.outerWidth(), source.outerHeight(), p2_i[0], p2_i[1], 0, srcCornerRadius, srcRs); if (srcManEndptVal === 'outside-to-node-or-label' || srcManEndptVal === 'outside-to-line-or-label') { var srs = source._private.rscratch; var _lw = srs.labelWidth; var _lh = srs.labelHeight; var _lx = srs.labelX; var _ly = srs.labelY; var _lw2 = _lw / 2; var _lh2 = _lh / 2; var _va = source.pstyle('text-valign').value; if (_va === 'top') { _ly -= _lh2; } else if (_va === 'bottom') { _ly += _lh2; } var _ha = source.pstyle('text-halign').value; if (_ha === 'left') { _lx -= _lw2; } else if (_ha === 'right') { _lx += _lw2; } var _labelIntersect = polygonIntersectLine(p2_i[0], p2_i[1], [_lx - _lw2, _ly - _lh2, _lx + _lw2, _ly - _lh2, _lx + _lw2, _ly + _lh2, _lx - _lw2, _ly + _lh2], srcPos.x, srcPos.y); if (_labelIntersect.length > 0) { var _refPt = tgtPos; var _intSqdist = sqdist(_refPt, array2point(intersect)); var _labIntSqdist = sqdist(_refPt, array2point(_labelIntersect)); var _minSqDist = _intSqdist; if (_labIntSqdist < _intSqdist) { intersect = [_labelIntersect[0], _labelIntersect[1]]; _minSqDist = _labIntSqdist; } if (_labelIntersect.length > 2) { var _labInt2SqDist = sqdist(_refPt, { x: _labelIntersect[2], y: _labelIntersect[3] }); if (_labInt2SqDist < _minSqDist) { intersect = [_labelIntersect[2], _labelIntersect[3]]; } } } } } var arrowStart = shortenIntersection(intersect, p2, r.arrowShapes[srcArShape].spacing(edge) + srcDist); var edgeStart = shortenIntersection(intersect, p2, r.arrowShapes[srcArShape].gap(edge) + srcDist); rs.startX = edgeStart[0]; rs.startY = edgeStart[1]; rs.arrowStartX = arrowStart[0]; rs.arrowStartY = arrowStart[1]; if (hasEndpts) { if (!number$1(rs.startX) || !number$1(rs.startY) || !number$1(rs.endX) || !number$1(rs.endY)) { rs.badLine = true; } else { rs.badLine = false; } } }; BRp$b.getSourceEndpoint = function (edge) { var rs = edge[0]._private.rscratch; this.recalculateRenderedStyle(edge); switch (rs.edgeType) { case 'haystack': return { x: rs.haystackPts[0], y: rs.haystackPts[1] }; default: return { x: rs.arrowStartX, y: rs.arrowStartY }; } }; BRp$b.getTargetEndpoint = function (edge) { var rs = edge[0]._private.rscratch; this.recalculateRenderedStyle(edge); switch (rs.edgeType) { case 'haystack': return { x: rs.haystackPts[2], y: rs.haystackPts[3] }; default: return { x: rs.arrowEndX, y: rs.arrowEndY }; } }; var BRp$a = {}; function pushBezierPts(r, edge, pts) { var qbezierAt$1 = function qbezierAt$1(p1, p2, p3, t) { return qbezierAt(p1, p2, p3, t); }; var _p = edge._private; var bpts = _p.rstyle.bezierPts; for (var i = 0; i < r.bezierProjPcts.length; i++) { var p = r.bezierProjPcts[i]; bpts.push({ x: qbezierAt$1(pts[0], pts[2], pts[4], p), y: qbezierAt$1(pts[1], pts[3], pts[5], p) }); } } BRp$a.storeEdgeProjections = function (edge) { var _p = edge._private; var rs = _p.rscratch; var et = rs.edgeType; // clear the cached points state _p.rstyle.bezierPts = null; _p.rstyle.linePts = null; _p.rstyle.haystackPts = null; if (et === 'multibezier' || et === 'bezier' || et === 'self' || et === 'compound') { _p.rstyle.bezierPts = []; for (var i = 0; i + 5 < rs.allpts.length; i += 4) { pushBezierPts(this, edge, rs.allpts.slice(i, i + 6)); } } else if (et === 'segments') { var lpts = _p.rstyle.linePts = []; for (var i = 0; i + 1 < rs.allpts.length; i += 2) { lpts.push({ x: rs.allpts[i], y: rs.allpts[i + 1] }); } } else if (et === 'haystack') { var hpts = rs.haystackPts; _p.rstyle.haystackPts = [{ x: hpts[0], y: hpts[1] }, { x: hpts[2], y: hpts[3] }]; } _p.rstyle.arrowWidth = this.getArrowWidth(edge.pstyle('width').pfValue, edge.pstyle('arrow-scale').value) * this.arrowShapeWidth; }; BRp$a.recalculateEdgeProjections = function (edges) { this.findEdgeControlPoints(edges); }; /* global document */ var BRp$9 = {}; BRp$9.recalculateNodeLabelProjection = function (node) { var content = node.pstyle('label').strValue; if (emptyString(content)) { return; } var textX, textY; var _p = node._private; var nodeWidth = node.width(); var nodeHeight = node.height(); var padding = node.padding(); var nodePos = node.position(); var textHalign = node.pstyle('text-halign').strValue; var textValign = node.pstyle('text-valign').strValue; var rs = _p.rscratch; var rstyle = _p.rstyle; switch (textHalign) { case 'left': textX = nodePos.x - nodeWidth / 2 - padding; break; case 'right': textX = nodePos.x + nodeWidth / 2 + padding; break; default: // e.g. center textX = nodePos.x; } switch (textValign) { case 'top': textY = nodePos.y - nodeHeight / 2 - padding; break; case 'bottom': textY = nodePos.y + nodeHeight / 2 + padding; break; default: // e.g. middle textY = nodePos.y; } rs.labelX = textX; rs.labelY = textY; rstyle.labelX = textX; rstyle.labelY = textY; this.calculateLabelAngles(node); this.applyLabelDimensions(node); }; var lineAngleFromDelta = function lineAngleFromDelta(dx, dy) { var angle = Math.atan(dy / dx); if (dx === 0 && angle < 0) { angle = angle * -1; } return angle; }; var lineAngle = function lineAngle(p0, p1) { var dx = p1.x - p0.x; var dy = p1.y - p0.y; return lineAngleFromDelta(dx, dy); }; var bezierAngle = function bezierAngle(p0, p1, p2, t) { var t0 = bound(0, t - 0.001, 1); var t1 = bound(0, t + 0.001, 1); var lp0 = qbezierPtAt(p0, p1, p2, t0); var lp1 = qbezierPtAt(p0, p1, p2, t1); return lineAngle(lp0, lp1); }; BRp$9.recalculateEdgeLabelProjections = function (edge) { var p; var _p = edge._private; var rs = _p.rscratch; var r = this; var content = { mid: edge.pstyle('label').strValue, source: edge.pstyle('source-label').strValue, target: edge.pstyle('target-label').strValue }; if (content.mid || content.source || content.target) ; else { return; // no labels => no calcs } // add center point to style so bounding box calculations can use it // p = { x: rs.midX, y: rs.midY }; var setRs = function setRs(propName, prefix, value) { setPrefixedProperty(_p.rscratch, propName, prefix, value); setPrefixedProperty(_p.rstyle, propName, prefix, value); }; setRs('labelX', null, p.x); setRs('labelY', null, p.y); var midAngle = lineAngleFromDelta(rs.midDispX, rs.midDispY); setRs('labelAutoAngle', null, midAngle); var createControlPointInfo = function createControlPointInfo() { if (createControlPointInfo.cache) { return createControlPointInfo.cache; } // use cache so only 1x per edge var ctrlpts = []; // store each ctrlpt info init for (var i = 0; i + 5 < rs.allpts.length; i += 4) { var p0 = { x: rs.allpts[i], y: rs.allpts[i + 1] }; var p1 = { x: rs.allpts[i + 2], y: rs.allpts[i + 3] }; // ctrlpt var p2 = { x: rs.allpts[i + 4], y: rs.allpts[i + 5] }; ctrlpts.push({ p0: p0, p1: p1, p2: p2, startDist: 0, length: 0, segments: [] }); } var bpts = _p.rstyle.bezierPts; var nProjs = r.bezierProjPcts.length; function addSegment(cp, p0, p1, t0, t1) { var length = dist(p0, p1); var prevSegment = cp.segments[cp.segments.length - 1]; var segment = { p0: p0, p1: p1, t0: t0, t1: t1, startDist: prevSegment ? prevSegment.startDist + prevSegment.length : 0, length: length }; cp.segments.push(segment); cp.length += length; } // update each ctrlpt with segment info for (var _i = 0; _i < ctrlpts.length; _i++) { var cp = ctrlpts[_i]; var prevCp = ctrlpts[_i - 1]; if (prevCp) { cp.startDist = prevCp.startDist + prevCp.length; } addSegment(cp, cp.p0, bpts[_i * nProjs], 0, r.bezierProjPcts[0]); // first for (var j = 0; j < nProjs - 1; j++) { addSegment(cp, bpts[_i * nProjs + j], bpts[_i * nProjs + j + 1], r.bezierProjPcts[j], r.bezierProjPcts[j + 1]); } addSegment(cp, bpts[_i * nProjs + nProjs - 1], cp.p2, r.bezierProjPcts[nProjs - 1], 1); // last } return createControlPointInfo.cache = ctrlpts; }; var calculateEndProjection = function calculateEndProjection(prefix) { var angle; var isSrc = prefix === 'source'; if (!content[prefix]) { return; } var offset = edge.pstyle(prefix + '-text-offset').pfValue; switch (rs.edgeType) { case 'self': case 'compound': case 'bezier': case 'multibezier': { var cps = createControlPointInfo(); var selected; var startDist = 0; var totalDist = 0; // find the segment we're on for (var i = 0; i < cps.length; i++) { var _cp = cps[isSrc ? i : cps.length - 1 - i]; for (var j = 0; j < _cp.segments.length; j++) { var _seg = _cp.segments[isSrc ? j : _cp.segments.length - 1 - j]; var lastSeg = i === cps.length - 1 && j === _cp.segments.length - 1; startDist = totalDist; totalDist += _seg.length; if (totalDist >= offset || lastSeg) { selected = { cp: _cp, segment: _seg }; break; } } if (selected) { break; } } var cp = selected.cp; var seg = selected.segment; var tSegment = (offset - startDist) / seg.length; var segDt = seg.t1 - seg.t0; var t = isSrc ? seg.t0 + segDt * tSegment : seg.t1 - segDt * tSegment; t = bound(0, t, 1); p = qbezierPtAt(cp.p0, cp.p1, cp.p2, t); angle = bezierAngle(cp.p0, cp.p1, cp.p2, t); break; } case 'straight': case 'segments': case 'haystack': { var d = 0, di, d0; var p0, p1; var l = rs.allpts.length; for (var _i2 = 0; _i2 + 3 < l; _i2 += 2) { if (isSrc) { p0 = { x: rs.allpts[_i2], y: rs.allpts[_i2 + 1] }; p1 = { x: rs.allpts[_i2 + 2], y: rs.allpts[_i2 + 3] }; } else { p0 = { x: rs.allpts[l - 2 - _i2], y: rs.allpts[l - 1 - _i2] }; p1 = { x: rs.allpts[l - 4 - _i2], y: rs.allpts[l - 3 - _i2] }; } di = dist(p0, p1); d0 = d; d += di; if (d >= offset) { break; } } var pD = offset - d0; var _t = pD / di; _t = bound(0, _t, 1); p = lineAt(p0, p1, _t); angle = lineAngle(p0, p1); break; } } setRs('labelX', prefix, p.x); setRs('labelY', prefix, p.y); setRs('labelAutoAngle', prefix, angle); }; calculateEndProjection('source'); calculateEndProjection('target'); this.applyLabelDimensions(edge); }; BRp$9.applyLabelDimensions = function (ele) { this.applyPrefixedLabelDimensions(ele); if (ele.isEdge()) { this.applyPrefixedLabelDimensions(ele, 'source'); this.applyPrefixedLabelDimensions(ele, 'target'); } }; BRp$9.applyPrefixedLabelDimensions = function (ele, prefix) { var _p = ele._private; var text = this.getLabelText(ele, prefix); var labelDims = this.calculateLabelDimensions(ele, text); var lineHeight = ele.pstyle('line-height').pfValue; var textWrap = ele.pstyle('text-wrap').strValue; var lines = getPrefixedProperty(_p.rscratch, 'labelWrapCachedLines', prefix) || []; var numLines = textWrap !== 'wrap' ? 1 : Math.max(lines.length, 1); var normPerLineHeight = labelDims.height / numLines; var labelLineHeight = normPerLineHeight * lineHeight; var width = labelDims.width; var height = labelDims.height + (numLines - 1) * (lineHeight - 1) * normPerLineHeight; setPrefixedProperty(_p.rstyle, 'labelWidth', prefix, width); setPrefixedProperty(_p.rscratch, 'labelWidth', prefix, width); setPrefixedProperty(_p.rstyle, 'labelHeight', prefix, height); setPrefixedProperty(_p.rscratch, 'labelHeight', prefix, height); setPrefixedProperty(_p.rscratch, 'labelLineHeight', prefix, labelLineHeight); }; BRp$9.getLabelText = function (ele, prefix) { var _p = ele._private; var pfd = prefix ? prefix + '-' : ''; var text = ele.pstyle(pfd + 'label').strValue; var textTransform = ele.pstyle('text-transform').value; var rscratch = function rscratch(propName, value) { if (value) { setPrefixedProperty(_p.rscratch, propName, prefix, value); return value; } else { return getPrefixedProperty(_p.rscratch, propName, prefix); } }; // for empty text, skip all processing if (!text) { return ''; } if (textTransform == 'none') ; else if (textTransform == 'uppercase') { text = text.toUpperCase(); } else if (textTransform == 'lowercase') { text = text.toLowerCase(); } var wrapStyle = ele.pstyle('text-wrap').value; if (wrapStyle === 'wrap') { var labelKey = rscratch('labelKey'); // save recalc if the label is the same as before if (labelKey != null && rscratch('labelWrapKey') === labelKey) { return rscratch('labelWrapCachedText'); } var zwsp = "\u200B"; var lines = text.split('\n'); var maxW = ele.pstyle('text-max-width').pfValue; var overflow = ele.pstyle('text-overflow-wrap').value; var overflowAny = overflow === 'anywhere'; var wrappedLines = []; var wordsRegex = /[\s\u200b]+/; var wordSeparator = overflowAny ? '' : ' '; for (var l = 0; l < lines.length; l++) { var line = lines[l]; var lineDims = this.calculateLabelDimensions(ele, line); var lineW = lineDims.width; if (overflowAny) { var processedLine = line.split('').join(zwsp); line = processedLine; } if (lineW > maxW) { // line is too long var words = line.split(wordsRegex); var subline = ''; for (var w = 0; w < words.length; w++) { var word = words[w]; var testLine = subline.length === 0 ? word : subline + wordSeparator + word; var testDims = this.calculateLabelDimensions(ele, testLine); var testW = testDims.width; if (testW <= maxW) { // word fits on current line subline += word + wordSeparator; } else { // word starts new line if (subline) { wrappedLines.push(subline); } subline = word + wordSeparator; } } // if there's remaining text, put it in a wrapped line if (!subline.match(/^[\s\u200b]+$/)) { wrappedLines.push(subline); } } else { // line is already short enough wrappedLines.push(line); } } // for rscratch('labelWrapCachedLines', wrappedLines); text = rscratch('labelWrapCachedText', wrappedLines.join('\n')); rscratch('labelWrapKey', labelKey); } else if (wrapStyle === 'ellipsis') { var _maxW = ele.pstyle('text-max-width').pfValue; var ellipsized = ''; var ellipsis = "\u2026"; var incLastCh = false; if (this.calculateLabelDimensions(ele, text).width < _maxW) { // the label already fits return text; } for (var i = 0; i < text.length; i++) { var widthWithNextCh = this.calculateLabelDimensions(ele, ellipsized + text[i] + ellipsis).width; if (widthWithNextCh > _maxW) { break; } ellipsized += text[i]; if (i === text.length - 1) { incLastCh = true; } } if (!incLastCh) { ellipsized += ellipsis; } return ellipsized; } // if ellipsize return text; }; BRp$9.getLabelJustification = function (ele) { var justification = ele.pstyle('text-justification').strValue; var textHalign = ele.pstyle('text-halign').strValue; if (justification === 'auto') { if (ele.isNode()) { switch (textHalign) { case 'left': return 'right'; case 'right': return 'left'; default: return 'center'; } } else { return 'center'; } } else { return justification; } }; BRp$9.calculateLabelDimensions = function (ele, text) { var r = this; var cacheKey = hashString(text, ele._private.labelDimsKey); var cache = r.labelDimCache || (r.labelDimCache = []); var existingVal = cache[cacheKey]; if (existingVal != null) { return existingVal; } var padding = 0; // add padding around text dims, as the measurement isn't that accurate var fStyle = ele.pstyle('font-style').strValue; var size = ele.pstyle('font-size').pfValue; var family = ele.pstyle('font-family').strValue; var weight = ele.pstyle('font-weight').strValue; var canvas = this.labelCalcCanvas; var c2d = this.labelCalcCanvasContext; if (!canvas) { canvas = this.labelCalcCanvas = document.createElement('canvas'); c2d = this.labelCalcCanvasContext = canvas.getContext('2d'); var ds = canvas.style; ds.position = 'absolute'; ds.left = '-9999px'; ds.top = '-9999px'; ds.zIndex = '-1'; ds.visibility = 'hidden'; ds.pointerEvents = 'none'; } c2d.font = "".concat(fStyle, " ").concat(weight, " ").concat(size, "px ").concat(family); var width = 0; var height = 0; var lines = text.split('\n'); for (var i = 0; i < lines.length; i++) { var line = lines[i]; var metrics = c2d.measureText(line); var w = Math.ceil(metrics.width); var h = size; width = Math.max(w, width); height += h; } width += padding; height += padding; return cache[cacheKey] = { width: width, height: height }; }; BRp$9.calculateLabelAngle = function (ele, prefix) { var _p = ele._private; var rs = _p.rscratch; var isEdge = ele.isEdge(); var prefixDash = prefix ? prefix + '-' : ''; var rot = ele.pstyle(prefixDash + 'text-rotation'); var rotStr = rot.strValue; if (rotStr === 'none') { return 0; } else if (isEdge && rotStr === 'autorotate') { return rs.labelAutoAngle; } else if (rotStr === 'autorotate') { return 0; } else { return rot.pfValue; } }; BRp$9.calculateLabelAngles = function (ele) { var r = this; var isEdge = ele.isEdge(); var _p = ele._private; var rs = _p.rscratch; rs.labelAngle = r.calculateLabelAngle(ele); if (isEdge) { rs.sourceLabelAngle = r.calculateLabelAngle(ele, 'source'); rs.targetLabelAngle = r.calculateLabelAngle(ele, 'target'); } }; var BRp$8 = {}; var TOO_SMALL_CUT_RECT = 28; var warnedCutRect = false; BRp$8.getNodeShape = function (node) { var r = this; var shape = node.pstyle('shape').value; if (shape === 'cutrectangle' && (node.width() < TOO_SMALL_CUT_RECT || node.height() < TOO_SMALL_CUT_RECT)) { if (!warnedCutRect) { warn('The `cutrectangle` node shape can not be used at small sizes so `rectangle` is used instead'); warnedCutRect = true; } return 'rectangle'; } if (node.isParent()) { if (shape === 'rectangle' || shape === 'roundrectangle' || shape === 'round-rectangle' || shape === 'cutrectangle' || shape === 'cut-rectangle' || shape === 'barrel') { return shape; } else { return 'rectangle'; } } if (shape === 'polygon') { var points = node.pstyle('shape-polygon-points').value; return r.nodeShapes.makePolygon(points).name; } return shape; }; var BRp$7 = {}; BRp$7.registerCalculationListeners = function () { var cy = this.cy; var elesToUpdate = cy.collection(); var r = this; var enqueue = function enqueue(eles) { var dirtyStyleCaches = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; elesToUpdate.merge(eles); if (dirtyStyleCaches) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var _p = ele._private; var rstyle = _p.rstyle; rstyle.clean = false; rstyle.cleanConnected = false; } } }; r.binder(cy).on('bounds.* dirty.*', function onDirtyBounds(e) { var ele = e.target; enqueue(ele); }).on('style.* background.*', function onDirtyStyle(e) { var ele = e.target; enqueue(ele, false); }); var updateEleCalcs = function updateEleCalcs(willDraw) { if (willDraw) { var fns = r.onUpdateEleCalcsFns; // because we need to have up-to-date style (e.g. stylesheet mappers) // before calculating rendered style (and pstyle might not be called yet) elesToUpdate.cleanStyle(); for (var i = 0; i < elesToUpdate.length; i++) { var ele = elesToUpdate[i]; var rstyle = ele._private.rstyle; if (ele.isNode() && !rstyle.cleanConnected) { enqueue(ele.connectedEdges()); rstyle.cleanConnected = true; } } if (fns) { for (var _i = 0; _i < fns.length; _i++) { var fn = fns[_i]; fn(willDraw, elesToUpdate); } } r.recalculateRenderedStyle(elesToUpdate); elesToUpdate = cy.collection(); } }; r.flushRenderedStyleQueue = function () { updateEleCalcs(true); }; r.beforeRender(updateEleCalcs, r.beforeRenderPriorities.eleCalcs); }; BRp$7.onUpdateEleCalcs = function (fn) { var fns = this.onUpdateEleCalcsFns = this.onUpdateEleCalcsFns || []; fns.push(fn); }; BRp$7.recalculateRenderedStyle = function (eles, useCache) { var isCleanConnected = function isCleanConnected(ele) { return ele._private.rstyle.cleanConnected; }; var edges = []; var nodes = []; // the renderer can't be used for calcs when destroyed, e.g. ele.boundingBox() if (this.destroyed) { return; } // use cache by default for perf if (useCache === undefined) { useCache = true; } for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var _p = ele._private; var rstyle = _p.rstyle; // an edge may be implicitly dirty b/c of one of its connected nodes // (and a request for recalc may come in between frames) if (ele.isEdge() && (!isCleanConnected(ele.source()) || !isCleanConnected(ele.target()))) { rstyle.clean = false; } // only update if dirty and in graph if (useCache && rstyle.clean || ele.removed()) { continue; } // only update if not display: none if (ele.pstyle('display').value === 'none') { continue; } if (_p.group === 'nodes') { nodes.push(ele); } else { // edges edges.push(ele); } rstyle.clean = true; } // update node data from projections for (var _i2 = 0; _i2 < nodes.length; _i2++) { var _ele = nodes[_i2]; var _p2 = _ele._private; var _rstyle = _p2.rstyle; var pos = _ele.position(); this.recalculateNodeLabelProjection(_ele); _rstyle.nodeX = pos.x; _rstyle.nodeY = pos.y; _rstyle.nodeW = _ele.pstyle('width').pfValue; _rstyle.nodeH = _ele.pstyle('height').pfValue; } this.recalculateEdgeProjections(edges); // update edge data from projections for (var _i3 = 0; _i3 < edges.length; _i3++) { var _ele2 = edges[_i3]; var _p3 = _ele2._private; var _rstyle2 = _p3.rstyle; var rs = _p3.rscratch; // update rstyle positions _rstyle2.srcX = rs.arrowStartX; _rstyle2.srcY = rs.arrowStartY; _rstyle2.tgtX = rs.arrowEndX; _rstyle2.tgtY = rs.arrowEndY; _rstyle2.midX = rs.midX; _rstyle2.midY = rs.midY; _rstyle2.labelAngle = rs.labelAngle; _rstyle2.sourceLabelAngle = rs.sourceLabelAngle; _rstyle2.targetLabelAngle = rs.targetLabelAngle; } }; var BRp$6 = {}; BRp$6.updateCachedGrabbedEles = function () { var eles = this.cachedZSortedEles; if (!eles) { // just let this be recalculated on the next z sort tick return; } eles.drag = []; eles.nondrag = []; var grabTargets = []; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var rs = ele._private.rscratch; if (ele.grabbed() && !ele.isParent()) { grabTargets.push(ele); } else if (rs.inDragLayer) { eles.drag.push(ele); } else { eles.nondrag.push(ele); } } // put the grab target nodes last so it's on top of its neighbourhood for (var i = 0; i < grabTargets.length; i++) { var ele = grabTargets[i]; eles.drag.push(ele); } }; BRp$6.invalidateCachedZSortedEles = function () { this.cachedZSortedEles = null; }; BRp$6.getCachedZSortedEles = function (forceRecalc) { if (forceRecalc || !this.cachedZSortedEles) { var eles = this.cy.mutableElements().toArray(); eles.sort(zIndexSort); eles.interactive = eles.filter(function (ele) { return ele.interactive(); }); this.cachedZSortedEles = eles; this.updateCachedGrabbedEles(); } else { eles = this.cachedZSortedEles; } return eles; }; var BRp$5 = {}; [BRp$e, BRp$d, BRp$c, BRp$b, BRp$a, BRp$9, BRp$8, BRp$7, BRp$6].forEach(function (props) { extend(BRp$5, props); }); var BRp$4 = {}; BRp$4.getCachedImage = function (url, crossOrigin, onLoad) { var r = this; var imageCache = r.imageCache = r.imageCache || {}; var cache = imageCache[url]; if (cache) { if (!cache.image.complete) { cache.image.addEventListener('load', onLoad); } return cache.image; } else { cache = imageCache[url] = imageCache[url] || {}; var image = cache.image = new Image(); // eslint-disable-line no-undef image.addEventListener('load', onLoad); image.addEventListener('error', function () { image.error = true; }); // #1582 safari doesn't load data uris with crossOrigin properly // https://bugs.webkit.org/show_bug.cgi?id=123978 var dataUriPrefix = 'data:'; var isDataUri = url.substring(0, dataUriPrefix.length).toLowerCase() === dataUriPrefix; if (!isDataUri) { // if crossorigin is 'null'(stringified), then manually set it to null crossOrigin = crossOrigin === 'null' ? null : crossOrigin; image.crossOrigin = crossOrigin; // prevent tainted canvas } image.src = url; return image; } }; var BRp$3 = {}; /* global document, window, ResizeObserver, MutationObserver */ BRp$3.registerBinding = function (target, event, handler, useCapture) { // eslint-disable-line no-unused-vars var args = Array.prototype.slice.apply(arguments, [1]); // copy var b = this.binder(target); return b.on.apply(b, args); }; BRp$3.binder = function (tgt) { var r = this; var containerWindow = r.cy.window(); var tgtIsDom = tgt === containerWindow || tgt === containerWindow.document || tgt === containerWindow.document.body || domElement(tgt); if (r.supportsPassiveEvents == null) { // from https://github.com/WICG/EventListenerOptions/blob/gh-pages/explainer.md#feature-detection var supportsPassive = false; try { var opts = Object.defineProperty({}, 'passive', { get: function get() { supportsPassive = true; return true; } }); containerWindow.addEventListener('test', null, opts); } catch (err) { // not supported } r.supportsPassiveEvents = supportsPassive; } var on = function on(event, handler, useCapture) { var args = Array.prototype.slice.call(arguments); if (tgtIsDom && r.supportsPassiveEvents) { // replace useCapture w/ opts obj args[2] = { capture: useCapture != null ? useCapture : false, passive: false, once: false }; } r.bindings.push({ target: tgt, args: args }); (tgt.addEventListener || tgt.on).apply(tgt, args); return this; }; return { on: on, addEventListener: on, addListener: on, bind: on }; }; BRp$3.nodeIsDraggable = function (node) { return node && node.isNode() && !node.locked() && node.grabbable(); }; BRp$3.nodeIsGrabbable = function (node) { return this.nodeIsDraggable(node) && node.interactive(); }; BRp$3.load = function () { var r = this; var containerWindow = r.cy.window(); var isSelected = function isSelected(ele) { return ele.selected(); }; var triggerEvents = function triggerEvents(target, names, e, position) { if (target == null) { target = r.cy; } for (var i = 0; i < names.length; i++) { var name = names[i]; target.emit({ originalEvent: e, type: name, position: position }); } }; var isMultSelKeyDown = function isMultSelKeyDown(e) { return e.shiftKey || e.metaKey || e.ctrlKey; // maybe e.altKey }; var allowPanningPassthrough = function allowPanningPassthrough(down, downs) { var allowPassthrough = true; if (r.cy.hasCompoundNodes() && down && down.pannable()) { // a grabbable compound node below the ele => no passthrough panning for (var i = 0; downs && i < downs.length; i++) { var down = downs[i]; //if any parent node in event hierarchy isn't pannable, reject passthrough if (down.isNode() && down.isParent() && !down.pannable()) { allowPassthrough = false; break; } } } else { allowPassthrough = true; } return allowPassthrough; }; var setGrabbed = function setGrabbed(ele) { ele[0]._private.grabbed = true; }; var setFreed = function setFreed(ele) { ele[0]._private.grabbed = false; }; var setInDragLayer = function setInDragLayer(ele) { ele[0]._private.rscratch.inDragLayer = true; }; var setOutDragLayer = function setOutDragLayer(ele) { ele[0]._private.rscratch.inDragLayer = false; }; var setGrabTarget = function setGrabTarget(ele) { ele[0]._private.rscratch.isGrabTarget = true; }; var removeGrabTarget = function removeGrabTarget(ele) { ele[0]._private.rscratch.isGrabTarget = false; }; var addToDragList = function addToDragList(ele, opts) { var list = opts.addToList; var listHasEle = list.has(ele); if (!listHasEle && ele.grabbable() && !ele.locked()) { list.merge(ele); setGrabbed(ele); } }; // helper function to determine which child nodes and inner edges // of a compound node to be dragged as well as the grabbed and selected nodes var addDescendantsToDrag = function addDescendantsToDrag(node, opts) { if (!node.cy().hasCompoundNodes()) { return; } if (opts.inDragLayer == null && opts.addToList == null) { return; } // nothing to do var innerNodes = node.descendants(); if (opts.inDragLayer) { innerNodes.forEach(setInDragLayer); innerNodes.connectedEdges().forEach(setInDragLayer); } if (opts.addToList) { addToDragList(innerNodes, opts); } }; // adds the given nodes and its neighbourhood to the drag layer var addNodesToDrag = function addNodesToDrag(nodes, opts) { opts = opts || {}; var hasCompoundNodes = nodes.cy().hasCompoundNodes(); if (opts.inDragLayer) { nodes.forEach(setInDragLayer); nodes.neighborhood().stdFilter(function (ele) { return !hasCompoundNodes || ele.isEdge(); }).forEach(setInDragLayer); } if (opts.addToList) { nodes.forEach(function (ele) { addToDragList(ele, opts); }); } addDescendantsToDrag(nodes, opts); // always add to drag // also add nodes and edges related to the topmost ancestor updateAncestorsInDragLayer(nodes, { inDragLayer: opts.inDragLayer }); r.updateCachedGrabbedEles(); }; var addNodeToDrag = addNodesToDrag; var freeDraggedElements = function freeDraggedElements(grabbedEles) { if (!grabbedEles) { return; } // just go over all elements rather than doing a bunch of (possibly expensive) traversals r.getCachedZSortedEles().forEach(function (ele) { setFreed(ele); setOutDragLayer(ele); removeGrabTarget(ele); }); r.updateCachedGrabbedEles(); }; // helper function to determine which ancestor nodes and edges should go // to the drag layer (or should be removed from drag layer). var updateAncestorsInDragLayer = function updateAncestorsInDragLayer(node, opts) { if (opts.inDragLayer == null && opts.addToList == null) { return; } // nothing to do if (!node.cy().hasCompoundNodes()) { return; } // find top-level parent var parent = node.ancestors().orphans(); // no parent node: no nodes to add to the drag layer if (parent.same(node)) { return; } var nodes = parent.descendants().spawnSelf().merge(parent).unmerge(node).unmerge(node.descendants()); var edges = nodes.connectedEdges(); if (opts.inDragLayer) { edges.forEach(setInDragLayer); nodes.forEach(setInDragLayer); } if (opts.addToList) { nodes.forEach(function (ele) { addToDragList(ele, opts); }); } }; var blurActiveDomElement = function blurActiveDomElement() { if (document.activeElement != null && document.activeElement.blur != null) { document.activeElement.blur(); } }; var haveMutationsApi = typeof MutationObserver !== 'undefined'; var haveResizeObserverApi = typeof ResizeObserver !== 'undefined'; // watch for when the cy container is removed from the dom if (haveMutationsApi) { r.removeObserver = new MutationObserver(function (mutns) { // eslint-disable-line no-undef for (var i = 0; i < mutns.length; i++) { var mutn = mutns[i]; var rNodes = mutn.removedNodes; if (rNodes) { for (var j = 0; j < rNodes.length; j++) { var rNode = rNodes[j]; if (rNode === r.container) { r.destroy(); break; } } } } }); if (r.container.parentNode) { r.removeObserver.observe(r.container.parentNode, { childList: true }); } } else { r.registerBinding(r.container, 'DOMNodeRemoved', function (e) { // eslint-disable-line no-unused-vars r.destroy(); }); } var onResize = debounce_1(function () { r.cy.resize(); }, 100); if (haveMutationsApi) { r.styleObserver = new MutationObserver(onResize); // eslint-disable-line no-undef r.styleObserver.observe(r.container, { attributes: true }); } // auto resize r.registerBinding(containerWindow, 'resize', onResize); // eslint-disable-line no-undef if (haveResizeObserverApi) { r.resizeObserver = new ResizeObserver(onResize); // eslint-disable-line no-undef r.resizeObserver.observe(r.container); } var forEachUp = function forEachUp(domEle, fn) { while (domEle != null) { fn(domEle); domEle = domEle.parentNode; } }; var invalidateCoords = function invalidateCoords() { r.invalidateContainerClientCoordsCache(); }; forEachUp(r.container, function (domEle) { r.registerBinding(domEle, 'transitionend', invalidateCoords); r.registerBinding(domEle, 'animationend', invalidateCoords); r.registerBinding(domEle, 'scroll', invalidateCoords); }); // stop right click menu from appearing on cy r.registerBinding(r.container, 'contextmenu', function (e) { e.preventDefault(); }); var inBoxSelection = function inBoxSelection() { return r.selection[4] !== 0; }; var eventInContainer = function eventInContainer(e) { // save cycles if mouse events aren't to be captured var containerPageCoords = r.findContainerClientCoords(); var x = containerPageCoords[0]; var y = containerPageCoords[1]; var width = containerPageCoords[2]; var height = containerPageCoords[3]; var positions = e.touches ? e.touches : [e]; var atLeastOnePosInside = false; for (var i = 0; i < positions.length; i++) { var p = positions[i]; if (x <= p.clientX && p.clientX <= x + width && y <= p.clientY && p.clientY <= y + height) { atLeastOnePosInside = true; break; } } if (!atLeastOnePosInside) { return false; } var container = r.container; var target = e.target; var tParent = target.parentNode; var containerIsTarget = false; while (tParent) { if (tParent === container) { containerIsTarget = true; break; } tParent = tParent.parentNode; } if (!containerIsTarget) { return false; } // if target is outisde cy container, then this event is not for us return true; }; // Primary key r.registerBinding(r.container, 'mousedown', function mousedownHandler(e) { if (!eventInContainer(e)) { return; } e.preventDefault(); blurActiveDomElement(); r.hoverData.capture = true; r.hoverData.which = e.which; var cy = r.cy; var gpos = [e.clientX, e.clientY]; var pos = r.projectIntoViewport(gpos[0], gpos[1]); var select = r.selection; var nears = r.findNearestElements(pos[0], pos[1], true, false); var near = nears[0]; var draggedElements = r.dragData.possibleDragElements; r.hoverData.mdownPos = pos; r.hoverData.mdownGPos = gpos; var checkForTaphold = function checkForTaphold() { r.hoverData.tapholdCancelled = false; clearTimeout(r.hoverData.tapholdTimeout); r.hoverData.tapholdTimeout = setTimeout(function () { if (r.hoverData.tapholdCancelled) { return; } else { var ele = r.hoverData.down; if (ele) { ele.emit({ originalEvent: e, type: 'taphold', position: { x: pos[0], y: pos[1] } }); } else { cy.emit({ originalEvent: e, type: 'taphold', position: { x: pos[0], y: pos[1] } }); } } }, r.tapholdDuration); }; // Right click button if (e.which == 3) { r.hoverData.cxtStarted = true; var cxtEvt = { originalEvent: e, type: 'cxttapstart', position: { x: pos[0], y: pos[1] } }; if (near) { near.activate(); near.emit(cxtEvt); r.hoverData.down = near; } else { cy.emit(cxtEvt); } r.hoverData.downTime = new Date().getTime(); r.hoverData.cxtDragged = false; // Primary button } else if (e.which == 1) { if (near) { near.activate(); } // Element dragging { // If something is under the cursor and it is draggable, prepare to grab it if (near != null) { if (r.nodeIsGrabbable(near)) { var makeEvent = function makeEvent(type) { return { originalEvent: e, type: type, position: { x: pos[0], y: pos[1] } }; }; var triggerGrab = function triggerGrab(ele) { ele.emit(makeEvent('grab')); }; setGrabTarget(near); if (!near.selected()) { draggedElements = r.dragData.possibleDragElements = cy.collection(); addNodeToDrag(near, { addToList: draggedElements }); near.emit(makeEvent('grabon')).emit(makeEvent('grab')); } else { draggedElements = r.dragData.possibleDragElements = cy.collection(); var selectedNodes = cy.$(function (ele) { return ele.isNode() && ele.selected() && r.nodeIsGrabbable(ele); }); addNodesToDrag(selectedNodes, { addToList: draggedElements }); near.emit(makeEvent('grabon')); selectedNodes.forEach(triggerGrab); } r.redrawHint('eles', true); r.redrawHint('drag', true); } } r.hoverData.down = near; r.hoverData.downs = nears; r.hoverData.downTime = new Date().getTime(); } triggerEvents(near, ['mousedown', 'tapstart', 'vmousedown'], e, { x: pos[0], y: pos[1] }); if (near == null) { select[4] = 1; r.data.bgActivePosistion = { x: pos[0], y: pos[1] }; r.redrawHint('select', true); r.redraw(); } else if (near.pannable()) { select[4] = 1; // for future pan } checkForTaphold(); } // Initialize selection box coordinates select[0] = select[2] = pos[0]; select[1] = select[3] = pos[1]; }, false); r.registerBinding(containerWindow, 'mousemove', function mousemoveHandler(e) { // eslint-disable-line no-undef var capture = r.hoverData.capture; if (!capture && !eventInContainer(e)) { return; } var preventDefault = false; var cy = r.cy; var zoom = cy.zoom(); var gpos = [e.clientX, e.clientY]; var pos = r.projectIntoViewport(gpos[0], gpos[1]); var mdownPos = r.hoverData.mdownPos; var mdownGPos = r.hoverData.mdownGPos; var select = r.selection; var near = null; if (!r.hoverData.draggingEles && !r.hoverData.dragging && !r.hoverData.selecting) { near = r.findNearestElement(pos[0], pos[1], true, false); } var last = r.hoverData.last; var down = r.hoverData.down; var disp = [pos[0] - select[2], pos[1] - select[3]]; var draggedElements = r.dragData.possibleDragElements; var isOverThresholdDrag; if (mdownGPos) { var dx = gpos[0] - mdownGPos[0]; var dx2 = dx * dx; var dy = gpos[1] - mdownGPos[1]; var dy2 = dy * dy; var dist2 = dx2 + dy2; r.hoverData.isOverThresholdDrag = isOverThresholdDrag = dist2 >= r.desktopTapThreshold2; } var multSelKeyDown = isMultSelKeyDown(e); if (isOverThresholdDrag) { r.hoverData.tapholdCancelled = true; } var updateDragDelta = function updateDragDelta() { var dragDelta = r.hoverData.dragDelta = r.hoverData.dragDelta || []; if (dragDelta.length === 0) { dragDelta.push(disp[0]); dragDelta.push(disp[1]); } else { dragDelta[0] += disp[0]; dragDelta[1] += disp[1]; } }; preventDefault = true; triggerEvents(near, ['mousemove', 'vmousemove', 'tapdrag'], e, { x: pos[0], y: pos[1] }); var goIntoBoxMode = function goIntoBoxMode() { r.data.bgActivePosistion = undefined; if (!r.hoverData.selecting) { cy.emit({ originalEvent: e, type: 'boxstart', position: { x: pos[0], y: pos[1] } }); } select[4] = 1; r.hoverData.selecting = true; r.redrawHint('select', true); r.redraw(); }; // trigger context drag if rmouse down if (r.hoverData.which === 3) { // but only if over threshold if (isOverThresholdDrag) { var cxtEvt = { originalEvent: e, type: 'cxtdrag', position: { x: pos[0], y: pos[1] } }; if (down) { down.emit(cxtEvt); } else { cy.emit(cxtEvt); } r.hoverData.cxtDragged = true; if (!r.hoverData.cxtOver || near !== r.hoverData.cxtOver) { if (r.hoverData.cxtOver) { r.hoverData.cxtOver.emit({ originalEvent: e, type: 'cxtdragout', position: { x: pos[0], y: pos[1] } }); } r.hoverData.cxtOver = near; if (near) { near.emit({ originalEvent: e, type: 'cxtdragover', position: { x: pos[0], y: pos[1] } }); } } } // Check if we are drag panning the entire graph } else if (r.hoverData.dragging) { preventDefault = true; if (cy.panningEnabled() && cy.userPanningEnabled()) { var deltaP; if (r.hoverData.justStartedPan) { var mdPos = r.hoverData.mdownPos; deltaP = { x: (pos[0] - mdPos[0]) * zoom, y: (pos[1] - mdPos[1]) * zoom }; r.hoverData.justStartedPan = false; } else { deltaP = { x: disp[0] * zoom, y: disp[1] * zoom }; } cy.panBy(deltaP); cy.emit('dragpan'); r.hoverData.dragged = true; } // Needs reproject due to pan changing viewport pos = r.projectIntoViewport(e.clientX, e.clientY); // Checks primary button down & out of time & mouse not moved much } else if (select[4] == 1 && (down == null || down.pannable())) { if (isOverThresholdDrag) { if (!r.hoverData.dragging && cy.boxSelectionEnabled() && (multSelKeyDown || !cy.panningEnabled() || !cy.userPanningEnabled())) { goIntoBoxMode(); } else if (!r.hoverData.selecting && cy.panningEnabled() && cy.userPanningEnabled()) { var allowPassthrough = allowPanningPassthrough(down, r.hoverData.downs); if (allowPassthrough) { r.hoverData.dragging = true; r.hoverData.justStartedPan = true; select[4] = 0; r.data.bgActivePosistion = array2point(mdownPos); r.redrawHint('select', true); r.redraw(); } } if (down && down.pannable() && down.active()) { down.unactivate(); } } } else { if (down && down.pannable() && down.active()) { down.unactivate(); } if ((!down || !down.grabbed()) && near != last) { if (last) { triggerEvents(last, ['mouseout', 'tapdragout'], e, { x: pos[0], y: pos[1] }); } if (near) { triggerEvents(near, ['mouseover', 'tapdragover'], e, { x: pos[0], y: pos[1] }); } r.hoverData.last = near; } if (down) { if (isOverThresholdDrag) { // then we can take action if (cy.boxSelectionEnabled() && multSelKeyDown) { // then selection overrides if (down && down.grabbed()) { freeDraggedElements(draggedElements); down.emit('freeon'); draggedElements.emit('free'); if (r.dragData.didDrag) { down.emit('dragfreeon'); draggedElements.emit('dragfree'); } } goIntoBoxMode(); } else if (down && down.grabbed() && r.nodeIsDraggable(down)) { // drag node var justStartedDrag = !r.dragData.didDrag; if (justStartedDrag) { r.redrawHint('eles', true); } r.dragData.didDrag = true; // indicate that we actually did drag the node // now, add the elements to the drag layer if not done already if (!r.hoverData.draggingEles) { addNodesToDrag(draggedElements, { inDragLayer: true }); } var totalShift = { x: 0, y: 0 }; if (number$1(disp[0]) && number$1(disp[1])) { totalShift.x += disp[0]; totalShift.y += disp[1]; if (justStartedDrag) { var dragDelta = r.hoverData.dragDelta; if (dragDelta && number$1(dragDelta[0]) && number$1(dragDelta[1])) { totalShift.x += dragDelta[0]; totalShift.y += dragDelta[1]; } } } r.hoverData.draggingEles = true; draggedElements.silentShift(totalShift).emit('position drag'); r.redrawHint('drag', true); r.redraw(); } } else { // otherwise save drag delta for when we actually start dragging so the relative grab pos is constant updateDragDelta(); } } // prevent the dragging from triggering text selection on the page preventDefault = true; } select[2] = pos[0]; select[3] = pos[1]; if (preventDefault) { if (e.stopPropagation) e.stopPropagation(); if (e.preventDefault) e.preventDefault(); return false; } }, false); var clickTimeout, didDoubleClick, prevClickTimeStamp; r.registerBinding(containerWindow, 'mouseup', function mouseupHandler(e) { // eslint-disable-line no-undef var capture = r.hoverData.capture; if (!capture) { return; } r.hoverData.capture = false; var cy = r.cy; var pos = r.projectIntoViewport(e.clientX, e.clientY); var select = r.selection; var near = r.findNearestElement(pos[0], pos[1], true, false); var draggedElements = r.dragData.possibleDragElements; var down = r.hoverData.down; var multSelKeyDown = isMultSelKeyDown(e); if (r.data.bgActivePosistion) { r.redrawHint('select', true); r.redraw(); } r.hoverData.tapholdCancelled = true; r.data.bgActivePosistion = undefined; // not active bg now if (down) { down.unactivate(); } if (r.hoverData.which === 3) { var cxtEvt = { originalEvent: e, type: 'cxttapend', position: { x: pos[0], y: pos[1] } }; if (down) { down.emit(cxtEvt); } else { cy.emit(cxtEvt); } if (!r.hoverData.cxtDragged) { var cxtTap = { originalEvent: e, type: 'cxttap', position: { x: pos[0], y: pos[1] } }; if (down) { down.emit(cxtTap); } else { cy.emit(cxtTap); } } r.hoverData.cxtDragged = false; r.hoverData.which = null; } else if (r.hoverData.which === 1) { triggerEvents(near, ['mouseup', 'tapend', 'vmouseup'], e, { x: pos[0], y: pos[1] }); if (!r.dragData.didDrag && // didn't move a node around !r.hoverData.dragged && // didn't pan !r.hoverData.selecting && // not box selection !r.hoverData.isOverThresholdDrag // didn't move too much ) { triggerEvents(down, ["click", "tap", "vclick"], e, { x: pos[0], y: pos[1] }); didDoubleClick = false; if (e.timeStamp - prevClickTimeStamp <= cy.multiClickDebounceTime()) { clickTimeout && clearTimeout(clickTimeout); didDoubleClick = true; prevClickTimeStamp = null; triggerEvents(down, ["dblclick", "dbltap", "vdblclick"], e, { x: pos[0], y: pos[1] }); } else { clickTimeout = setTimeout(function () { if (didDoubleClick) return; triggerEvents(down, ["oneclick", "onetap", "voneclick"], e, { x: pos[0], y: pos[1] }); }, cy.multiClickDebounceTime()); prevClickTimeStamp = e.timeStamp; } } // Deselect all elements if nothing is currently under the mouse cursor and we aren't dragging something if (down == null // not mousedown on node && !r.dragData.didDrag // didn't move the node around && !r.hoverData.selecting // not box selection && !r.hoverData.dragged // didn't pan && !isMultSelKeyDown(e)) { cy.$(isSelected).unselect(['tapunselect']); if (draggedElements.length > 0) { r.redrawHint('eles', true); } r.dragData.possibleDragElements = draggedElements = cy.collection(); } // Single selection if (near == down && !r.dragData.didDrag && !r.hoverData.selecting) { if (near != null && near._private.selectable) { if (r.hoverData.dragging) ; else if (cy.selectionType() === 'additive' || multSelKeyDown) { if (near.selected()) { near.unselect(['tapunselect']); } else { near.select(['tapselect']); } } else { if (!multSelKeyDown) { cy.$(isSelected).unmerge(near).unselect(['tapunselect']); near.select(['tapselect']); } } r.redrawHint('eles', true); } } if (r.hoverData.selecting) { var box = cy.collection(r.getAllInBox(select[0], select[1], select[2], select[3])); r.redrawHint('select', true); if (box.length > 0) { r.redrawHint('eles', true); } cy.emit({ type: 'boxend', originalEvent: e, position: { x: pos[0], y: pos[1] } }); var eleWouldBeSelected = function eleWouldBeSelected(ele) { return ele.selectable() && !ele.selected(); }; if (cy.selectionType() === 'additive') { box.emit('box').stdFilter(eleWouldBeSelected).select().emit('boxselect'); } else { if (!multSelKeyDown) { cy.$(isSelected).unmerge(box).unselect(); } box.emit('box').stdFilter(eleWouldBeSelected).select().emit('boxselect'); } // always need redraw in case eles unselectable r.redraw(); } // Cancel drag pan if (r.hoverData.dragging) { r.hoverData.dragging = false; r.redrawHint('select', true); r.redrawHint('eles', true); r.redraw(); } if (!select[4]) { r.redrawHint('drag', true); r.redrawHint('eles', true); var downWasGrabbed = down && down.grabbed(); freeDraggedElements(draggedElements); if (downWasGrabbed) { down.emit('freeon'); draggedElements.emit('free'); if (r.dragData.didDrag) { down.emit('dragfreeon'); draggedElements.emit('dragfree'); } } } } // else not right mouse select[4] = 0; r.hoverData.down = null; r.hoverData.cxtStarted = false; r.hoverData.draggingEles = false; r.hoverData.selecting = false; r.hoverData.isOverThresholdDrag = false; r.dragData.didDrag = false; r.hoverData.dragged = false; r.hoverData.dragDelta = []; r.hoverData.mdownPos = null; r.hoverData.mdownGPos = null; }, false); var wheelHandler = function wheelHandler(e) { if (r.scrollingPage) { return; } // while scrolling, ignore wheel-to-zoom var cy = r.cy; var zoom = cy.zoom(); var pan = cy.pan(); var pos = r.projectIntoViewport(e.clientX, e.clientY); var rpos = [pos[0] * zoom + pan.x, pos[1] * zoom + pan.y]; if (r.hoverData.draggingEles || r.hoverData.dragging || r.hoverData.cxtStarted || inBoxSelection()) { // if pan dragging or cxt dragging, wheel movements make no zoom e.preventDefault(); return; } if (cy.panningEnabled() && cy.userPanningEnabled() && cy.zoomingEnabled() && cy.userZoomingEnabled()) { e.preventDefault(); r.data.wheelZooming = true; clearTimeout(r.data.wheelTimeout); r.data.wheelTimeout = setTimeout(function () { r.data.wheelZooming = false; r.redrawHint('eles', true); r.redraw(); }, 150); var diff; if (e.deltaY != null) { diff = e.deltaY / -250; } else if (e.wheelDeltaY != null) { diff = e.wheelDeltaY / 1000; } else { diff = e.wheelDelta / 1000; } diff = diff * r.wheelSensitivity; var needsWheelFix = e.deltaMode === 1; if (needsWheelFix) { // fixes slow wheel events on ff/linux and ff/windows diff *= 33; } var newZoom = cy.zoom() * Math.pow(10, diff); if (e.type === 'gesturechange') { newZoom = r.gestureStartZoom * e.scale; } cy.zoom({ level: newZoom, renderedPosition: { x: rpos[0], y: rpos[1] } }); cy.emit(e.type === 'gesturechange' ? 'pinchzoom' : 'scrollzoom'); } }; // Functions to help with whether mouse wheel should trigger zooming // -- r.registerBinding(r.container, 'wheel', wheelHandler, true); // disable nonstandard wheel events // r.registerBinding(r.container, 'mousewheel', wheelHandler, true); // r.registerBinding(r.container, 'DOMMouseScroll', wheelHandler, true); // r.registerBinding(r.container, 'MozMousePixelScroll', wheelHandler, true); // older firefox r.registerBinding(containerWindow, 'scroll', function scrollHandler(e) { // eslint-disable-line no-unused-vars r.scrollingPage = true; clearTimeout(r.scrollingPageTimeout); r.scrollingPageTimeout = setTimeout(function () { r.scrollingPage = false; }, 250); }, true); // desktop safari pinch to zoom start r.registerBinding(r.container, 'gesturestart', function gestureStartHandler(e) { r.gestureStartZoom = r.cy.zoom(); if (!r.hasTouchStarted) { // don't affect touch devices like iphone e.preventDefault(); } }, true); r.registerBinding(r.container, 'gesturechange', function (e) { if (!r.hasTouchStarted) { // don't affect touch devices like iphone wheelHandler(e); } }, true); // Functions to help with handling mouseout/mouseover on the Cytoscape container // Handle mouseout on Cytoscape container r.registerBinding(r.container, 'mouseout', function mouseOutHandler(e) { var pos = r.projectIntoViewport(e.clientX, e.clientY); r.cy.emit({ originalEvent: e, type: 'mouseout', position: { x: pos[0], y: pos[1] } }); }, false); r.registerBinding(r.container, 'mouseover', function mouseOverHandler(e) { var pos = r.projectIntoViewport(e.clientX, e.clientY); r.cy.emit({ originalEvent: e, type: 'mouseover', position: { x: pos[0], y: pos[1] } }); }, false); var f1x1, f1y1, f2x1, f2y1; // starting points for pinch-to-zoom var distance1, distance1Sq; // initial distance between finger 1 and finger 2 for pinch-to-zoom var center1, modelCenter1; // center point on start pinch to zoom var offsetLeft, offsetTop; var containerWidth, containerHeight; var twoFingersStartInside; var distance = function distance(x1, y1, x2, y2) { return Math.sqrt((x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1)); }; var distanceSq = function distanceSq(x1, y1, x2, y2) { return (x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1); }; var touchstartHandler; r.registerBinding(r.container, 'touchstart', touchstartHandler = function touchstartHandler(e) { r.hasTouchStarted = true; if (!eventInContainer(e)) { return; } blurActiveDomElement(); r.touchData.capture = true; r.data.bgActivePosistion = undefined; var cy = r.cy; var now = r.touchData.now; var earlier = r.touchData.earlier; if (e.touches[0]) { var pos = r.projectIntoViewport(e.touches[0].clientX, e.touches[0].clientY); now[0] = pos[0]; now[1] = pos[1]; } if (e.touches[1]) { var pos = r.projectIntoViewport(e.touches[1].clientX, e.touches[1].clientY); now[2] = pos[0]; now[3] = pos[1]; } if (e.touches[2]) { var pos = r.projectIntoViewport(e.touches[2].clientX, e.touches[2].clientY); now[4] = pos[0]; now[5] = pos[1]; } // record starting points for pinch-to-zoom if (e.touches[1]) { r.touchData.singleTouchMoved = true; freeDraggedElements(r.dragData.touchDragEles); var offsets = r.findContainerClientCoords(); offsetLeft = offsets[0]; offsetTop = offsets[1]; containerWidth = offsets[2]; containerHeight = offsets[3]; f1x1 = e.touches[0].clientX - offsetLeft; f1y1 = e.touches[0].clientY - offsetTop; f2x1 = e.touches[1].clientX - offsetLeft; f2y1 = e.touches[1].clientY - offsetTop; twoFingersStartInside = 0 <= f1x1 && f1x1 <= containerWidth && 0 <= f2x1 && f2x1 <= containerWidth && 0 <= f1y1 && f1y1 <= containerHeight && 0 <= f2y1 && f2y1 <= containerHeight; var pan = cy.pan(); var zoom = cy.zoom(); distance1 = distance(f1x1, f1y1, f2x1, f2y1); distance1Sq = distanceSq(f1x1, f1y1, f2x1, f2y1); center1 = [(f1x1 + f2x1) / 2, (f1y1 + f2y1) / 2]; modelCenter1 = [(center1[0] - pan.x) / zoom, (center1[1] - pan.y) / zoom]; // consider context tap var cxtDistThreshold = 200; var cxtDistThresholdSq = cxtDistThreshold * cxtDistThreshold; if (distance1Sq < cxtDistThresholdSq && !e.touches[2]) { var near1 = r.findNearestElement(now[0], now[1], true, true); var near2 = r.findNearestElement(now[2], now[3], true, true); if (near1 && near1.isNode()) { near1.activate().emit({ originalEvent: e, type: 'cxttapstart', position: { x: now[0], y: now[1] } }); r.touchData.start = near1; } else if (near2 && near2.isNode()) { near2.activate().emit({ originalEvent: e, type: 'cxttapstart', position: { x: now[0], y: now[1] } }); r.touchData.start = near2; } else { cy.emit({ originalEvent: e, type: 'cxttapstart', position: { x: now[0], y: now[1] } }); } if (r.touchData.start) { r.touchData.start._private.grabbed = false; } r.touchData.cxt = true; r.touchData.cxtDragged = false; r.data.bgActivePosistion = undefined; r.redraw(); return; } } if (e.touches[2]) { // ignore // safari on ios pans the page otherwise (normally you should be able to preventdefault on touchmove...) if (cy.boxSelectionEnabled()) { e.preventDefault(); } } else if (e.touches[1]) ; else if (e.touches[0]) { var nears = r.findNearestElements(now[0], now[1], true, true); var near = nears[0]; if (near != null) { near.activate(); r.touchData.start = near; r.touchData.starts = nears; if (r.nodeIsGrabbable(near)) { var draggedEles = r.dragData.touchDragEles = cy.collection(); var selectedNodes = null; r.redrawHint('eles', true); r.redrawHint('drag', true); if (near.selected()) { // reset drag elements, since near will be added again selectedNodes = cy.$(function (ele) { return ele.selected() && r.nodeIsGrabbable(ele); }); addNodesToDrag(selectedNodes, { addToList: draggedEles }); } else { addNodeToDrag(near, { addToList: draggedEles }); } setGrabTarget(near); var makeEvent = function makeEvent(type) { return { originalEvent: e, type: type, position: { x: now[0], y: now[1] } }; }; near.emit(makeEvent('grabon')); if (selectedNodes) { selectedNodes.forEach(function (n) { n.emit(makeEvent('grab')); }); } else { near.emit(makeEvent('grab')); } } } triggerEvents(near, ['touchstart', 'tapstart', 'vmousedown'], e, { x: now[0], y: now[1] }); if (near == null) { r.data.bgActivePosistion = { x: pos[0], y: pos[1] }; r.redrawHint('select', true); r.redraw(); } // Tap, taphold // ----- r.touchData.singleTouchMoved = false; r.touchData.singleTouchStartTime = +new Date(); clearTimeout(r.touchData.tapholdTimeout); r.touchData.tapholdTimeout = setTimeout(function () { if (r.touchData.singleTouchMoved === false && !r.pinching // if pinching, then taphold unselect shouldn't take effect && !r.touchData.selecting // box selection shouldn't allow taphold through ) { triggerEvents(r.touchData.start, ['taphold'], e, { x: now[0], y: now[1] }); } }, r.tapholdDuration); } if (e.touches.length >= 1) { var sPos = r.touchData.startPosition = [null, null, null, null, null, null]; for (var i = 0; i < now.length; i++) { sPos[i] = earlier[i] = now[i]; } var touch0 = e.touches[0]; r.touchData.startGPosition = [touch0.clientX, touch0.clientY]; } }, false); var touchmoveHandler; r.registerBinding(window, 'touchmove', touchmoveHandler = function touchmoveHandler(e) { // eslint-disable-line no-undef var capture = r.touchData.capture; if (!capture && !eventInContainer(e)) { return; } var select = r.selection; var cy = r.cy; var now = r.touchData.now; var earlier = r.touchData.earlier; var zoom = cy.zoom(); if (e.touches[0]) { var pos = r.projectIntoViewport(e.touches[0].clientX, e.touches[0].clientY); now[0] = pos[0]; now[1] = pos[1]; } if (e.touches[1]) { var pos = r.projectIntoViewport(e.touches[1].clientX, e.touches[1].clientY); now[2] = pos[0]; now[3] = pos[1]; } if (e.touches[2]) { var pos = r.projectIntoViewport(e.touches[2].clientX, e.touches[2].clientY); now[4] = pos[0]; now[5] = pos[1]; } var startGPos = r.touchData.startGPosition; var isOverThresholdDrag; if (capture && e.touches[0] && startGPos) { var disp = []; for (var j = 0; j < now.length; j++) { disp[j] = now[j] - earlier[j]; } var dx = e.touches[0].clientX - startGPos[0]; var dx2 = dx * dx; var dy = e.touches[0].clientY - startGPos[1]; var dy2 = dy * dy; var dist2 = dx2 + dy2; isOverThresholdDrag = dist2 >= r.touchTapThreshold2; } // context swipe cancelling if (capture && r.touchData.cxt) { e.preventDefault(); var f1x2 = e.touches[0].clientX - offsetLeft, f1y2 = e.touches[0].clientY - offsetTop; var f2x2 = e.touches[1].clientX - offsetLeft, f2y2 = e.touches[1].clientY - offsetTop; // var distance2 = distance( f1x2, f1y2, f2x2, f2y2 ); var distance2Sq = distanceSq(f1x2, f1y2, f2x2, f2y2); var factorSq = distance2Sq / distance1Sq; var distThreshold = 150; var distThresholdSq = distThreshold * distThreshold; var factorThreshold = 1.5; var factorThresholdSq = factorThreshold * factorThreshold; // cancel ctx gestures if the distance b/t the fingers increases if (factorSq >= factorThresholdSq || distance2Sq >= distThresholdSq) { r.touchData.cxt = false; r.data.bgActivePosistion = undefined; r.redrawHint('select', true); var cxtEvt = { originalEvent: e, type: 'cxttapend', position: { x: now[0], y: now[1] } }; if (r.touchData.start) { r.touchData.start.unactivate().emit(cxtEvt); r.touchData.start = null; } else { cy.emit(cxtEvt); } } } // context swipe if (capture && r.touchData.cxt) { var cxtEvt = { originalEvent: e, type: 'cxtdrag', position: { x: now[0], y: now[1] } }; r.data.bgActivePosistion = undefined; r.redrawHint('select', true); if (r.touchData.start) { r.touchData.start.emit(cxtEvt); } else { cy.emit(cxtEvt); } if (r.touchData.start) { r.touchData.start._private.grabbed = false; } r.touchData.cxtDragged = true; var near = r.findNearestElement(now[0], now[1], true, true); if (!r.touchData.cxtOver || near !== r.touchData.cxtOver) { if (r.touchData.cxtOver) { r.touchData.cxtOver.emit({ originalEvent: e, type: 'cxtdragout', position: { x: now[0], y: now[1] } }); } r.touchData.cxtOver = near; if (near) { near.emit({ originalEvent: e, type: 'cxtdragover', position: { x: now[0], y: now[1] } }); } } // box selection } else if (capture && e.touches[2] && cy.boxSelectionEnabled()) { e.preventDefault(); r.data.bgActivePosistion = undefined; this.lastThreeTouch = +new Date(); if (!r.touchData.selecting) { cy.emit({ originalEvent: e, type: 'boxstart', position: { x: now[0], y: now[1] } }); } r.touchData.selecting = true; r.touchData.didSelect = true; select[4] = 1; if (!select || select.length === 0 || select[0] === undefined) { select[0] = (now[0] + now[2] + now[4]) / 3; select[1] = (now[1] + now[3] + now[5]) / 3; select[2] = (now[0] + now[2] + now[4]) / 3 + 1; select[3] = (now[1] + now[3] + now[5]) / 3 + 1; } else { select[2] = (now[0] + now[2] + now[4]) / 3; select[3] = (now[1] + now[3] + now[5]) / 3; } r.redrawHint('select', true); r.redraw(); // pinch to zoom } else if (capture && e.touches[1] && !r.touchData.didSelect // don't allow box selection to degrade to pinch-to-zoom && cy.zoomingEnabled() && cy.panningEnabled() && cy.userZoomingEnabled() && cy.userPanningEnabled()) { // two fingers => pinch to zoom e.preventDefault(); r.data.bgActivePosistion = undefined; r.redrawHint('select', true); var draggedEles = r.dragData.touchDragEles; if (draggedEles) { r.redrawHint('drag', true); for (var i = 0; i < draggedEles.length; i++) { var de_p = draggedEles[i]._private; de_p.grabbed = false; de_p.rscratch.inDragLayer = false; } } var _start = r.touchData.start; // (x2, y2) for fingers 1 and 2 var f1x2 = e.touches[0].clientX - offsetLeft, f1y2 = e.touches[0].clientY - offsetTop; var f2x2 = e.touches[1].clientX - offsetLeft, f2y2 = e.touches[1].clientY - offsetTop; var distance2 = distance(f1x2, f1y2, f2x2, f2y2); // var distance2Sq = distanceSq( f1x2, f1y2, f2x2, f2y2 ); // var factor = Math.sqrt( distance2Sq ) / Math.sqrt( distance1Sq ); var factor = distance2 / distance1; if (twoFingersStartInside) { // delta finger1 var df1x = f1x2 - f1x1; var df1y = f1y2 - f1y1; // delta finger 2 var df2x = f2x2 - f2x1; var df2y = f2y2 - f2y1; // translation is the normalised vector of the two fingers movement // i.e. so pinching cancels out and moving together pans var tx = (df1x + df2x) / 2; var ty = (df1y + df2y) / 2; // now calculate the zoom var zoom1 = cy.zoom(); var zoom2 = zoom1 * factor; var pan1 = cy.pan(); // the model center point converted to the current rendered pos var ctrx = modelCenter1[0] * zoom1 + pan1.x; var ctry = modelCenter1[1] * zoom1 + pan1.y; var pan2 = { x: -zoom2 / zoom1 * (ctrx - pan1.x - tx) + ctrx, y: -zoom2 / zoom1 * (ctry - pan1.y - ty) + ctry }; // remove dragged eles if (_start && _start.active()) { var draggedEles = r.dragData.touchDragEles; freeDraggedElements(draggedEles); r.redrawHint('drag', true); r.redrawHint('eles', true); _start.unactivate().emit('freeon'); draggedEles.emit('free'); if (r.dragData.didDrag) { _start.emit('dragfreeon'); draggedEles.emit('dragfree'); } } cy.viewport({ zoom: zoom2, pan: pan2, cancelOnFailedZoom: true }); cy.emit('pinchzoom'); distance1 = distance2; f1x1 = f1x2; f1y1 = f1y2; f2x1 = f2x2; f2y1 = f2y2; r.pinching = true; } // Re-project if (e.touches[0]) { var pos = r.projectIntoViewport(e.touches[0].clientX, e.touches[0].clientY); now[0] = pos[0]; now[1] = pos[1]; } if (e.touches[1]) { var pos = r.projectIntoViewport(e.touches[1].clientX, e.touches[1].clientY); now[2] = pos[0]; now[3] = pos[1]; } if (e.touches[2]) { var pos = r.projectIntoViewport(e.touches[2].clientX, e.touches[2].clientY); now[4] = pos[0]; now[5] = pos[1]; } } else if (e.touches[0] && !r.touchData.didSelect // don't allow box selection to degrade to single finger events like panning ) { var start = r.touchData.start; var last = r.touchData.last; var near; if (!r.hoverData.draggingEles && !r.swipePanning) { near = r.findNearestElement(now[0], now[1], true, true); } if (capture && start != null) { e.preventDefault(); } // dragging nodes if (capture && start != null && r.nodeIsDraggable(start)) { if (isOverThresholdDrag) { // then dragging can happen var draggedEles = r.dragData.touchDragEles; var justStartedDrag = !r.dragData.didDrag; if (justStartedDrag) { addNodesToDrag(draggedEles, { inDragLayer: true }); } r.dragData.didDrag = true; var totalShift = { x: 0, y: 0 }; if (number$1(disp[0]) && number$1(disp[1])) { totalShift.x += disp[0]; totalShift.y += disp[1]; if (justStartedDrag) { r.redrawHint('eles', true); var dragDelta = r.touchData.dragDelta; if (dragDelta && number$1(dragDelta[0]) && number$1(dragDelta[1])) { totalShift.x += dragDelta[0]; totalShift.y += dragDelta[1]; } } } r.hoverData.draggingEles = true; draggedEles.silentShift(totalShift).emit('position drag'); r.redrawHint('drag', true); if (r.touchData.startPosition[0] == earlier[0] && r.touchData.startPosition[1] == earlier[1]) { r.redrawHint('eles', true); } r.redraw(); } else { // otherwise keep track of drag delta for later var dragDelta = r.touchData.dragDelta = r.touchData.dragDelta || []; if (dragDelta.length === 0) { dragDelta.push(disp[0]); dragDelta.push(disp[1]); } else { dragDelta[0] += disp[0]; dragDelta[1] += disp[1]; } } } // touchmove { triggerEvents(start || near, ['touchmove', 'tapdrag', 'vmousemove'], e, { x: now[0], y: now[1] }); if ((!start || !start.grabbed()) && near != last) { if (last) { last.emit({ originalEvent: e, type: 'tapdragout', position: { x: now[0], y: now[1] } }); } if (near) { near.emit({ originalEvent: e, type: 'tapdragover', position: { x: now[0], y: now[1] } }); } } r.touchData.last = near; } // check to cancel taphold if (capture) { for (var i = 0; i < now.length; i++) { if (now[i] && r.touchData.startPosition[i] && isOverThresholdDrag) { r.touchData.singleTouchMoved = true; } } } // panning if (capture && (start == null || start.pannable()) && cy.panningEnabled() && cy.userPanningEnabled()) { var allowPassthrough = allowPanningPassthrough(start, r.touchData.starts); if (allowPassthrough) { e.preventDefault(); if (!r.data.bgActivePosistion) { r.data.bgActivePosistion = array2point(r.touchData.startPosition); } if (r.swipePanning) { cy.panBy({ x: disp[0] * zoom, y: disp[1] * zoom }); cy.emit('dragpan'); } else if (isOverThresholdDrag) { r.swipePanning = true; cy.panBy({ x: dx * zoom, y: dy * zoom }); cy.emit('dragpan'); if (start) { start.unactivate(); r.redrawHint('select', true); r.touchData.start = null; } } } // Re-project var pos = r.projectIntoViewport(e.touches[0].clientX, e.touches[0].clientY); now[0] = pos[0]; now[1] = pos[1]; } } for (var j = 0; j < now.length; j++) { earlier[j] = now[j]; } // the active bg indicator should be removed when making a swipe that is neither for dragging nodes or panning if (capture && e.touches.length > 0 && !r.hoverData.draggingEles && !r.swipePanning && r.data.bgActivePosistion != null) { r.data.bgActivePosistion = undefined; r.redrawHint('select', true); r.redraw(); } }, false); var touchcancelHandler; r.registerBinding(containerWindow, 'touchcancel', touchcancelHandler = function touchcancelHandler(e) { // eslint-disable-line no-unused-vars var start = r.touchData.start; r.touchData.capture = false; if (start) { start.unactivate(); } }); var touchendHandler, didDoubleTouch, touchTimeout, prevTouchTimeStamp; r.registerBinding(containerWindow, 'touchend', touchendHandler = function touchendHandler(e) { // eslint-disable-line no-unused-vars var start = r.touchData.start; var capture = r.touchData.capture; if (capture) { if (e.touches.length === 0) { r.touchData.capture = false; } e.preventDefault(); } else { return; } var select = r.selection; r.swipePanning = false; r.hoverData.draggingEles = false; var cy = r.cy; var zoom = cy.zoom(); var now = r.touchData.now; var earlier = r.touchData.earlier; if (e.touches[0]) { var pos = r.projectIntoViewport(e.touches[0].clientX, e.touches[0].clientY); now[0] = pos[0]; now[1] = pos[1]; } if (e.touches[1]) { var pos = r.projectIntoViewport(e.touches[1].clientX, e.touches[1].clientY); now[2] = pos[0]; now[3] = pos[1]; } if (e.touches[2]) { var pos = r.projectIntoViewport(e.touches[2].clientX, e.touches[2].clientY); now[4] = pos[0]; now[5] = pos[1]; } if (start) { start.unactivate(); } var ctxTapend; if (r.touchData.cxt) { ctxTapend = { originalEvent: e, type: 'cxttapend', position: { x: now[0], y: now[1] } }; if (start) { start.emit(ctxTapend); } else { cy.emit(ctxTapend); } if (!r.touchData.cxtDragged) { var ctxTap = { originalEvent: e, type: 'cxttap', position: { x: now[0], y: now[1] } }; if (start) { start.emit(ctxTap); } else { cy.emit(ctxTap); } } if (r.touchData.start) { r.touchData.start._private.grabbed = false; } r.touchData.cxt = false; r.touchData.start = null; r.redraw(); return; } // no more box selection if we don't have three fingers if (!e.touches[2] && cy.boxSelectionEnabled() && r.touchData.selecting) { r.touchData.selecting = false; var box = cy.collection(r.getAllInBox(select[0], select[1], select[2], select[3])); select[0] = undefined; select[1] = undefined; select[2] = undefined; select[3] = undefined; select[4] = 0; r.redrawHint('select', true); cy.emit({ type: 'boxend', originalEvent: e, position: { x: now[0], y: now[1] } }); var eleWouldBeSelected = function eleWouldBeSelected(ele) { return ele.selectable() && !ele.selected(); }; box.emit('box').stdFilter(eleWouldBeSelected).select().emit('boxselect'); if (box.nonempty()) { r.redrawHint('eles', true); } r.redraw(); } if (start != null) { start.unactivate(); } if (e.touches[2]) { r.data.bgActivePosistion = undefined; r.redrawHint('select', true); } else if (e.touches[1]) ; else if (e.touches[0]) ; else if (!e.touches[0]) { r.data.bgActivePosistion = undefined; r.redrawHint('select', true); var draggedEles = r.dragData.touchDragEles; if (start != null) { var startWasGrabbed = start._private.grabbed; freeDraggedElements(draggedEles); r.redrawHint('drag', true); r.redrawHint('eles', true); if (startWasGrabbed) { start.emit('freeon'); draggedEles.emit('free'); if (r.dragData.didDrag) { start.emit('dragfreeon'); draggedEles.emit('dragfree'); } } triggerEvents(start, ['touchend', 'tapend', 'vmouseup', 'tapdragout'], e, { x: now[0], y: now[1] }); start.unactivate(); r.touchData.start = null; } else { var near = r.findNearestElement(now[0], now[1], true, true); triggerEvents(near, ['touchend', 'tapend', 'vmouseup', 'tapdragout'], e, { x: now[0], y: now[1] }); } var dx = r.touchData.startPosition[0] - now[0]; var dx2 = dx * dx; var dy = r.touchData.startPosition[1] - now[1]; var dy2 = dy * dy; var dist2 = dx2 + dy2; var rdist2 = dist2 * zoom * zoom; // Tap event, roughly same as mouse click event for touch if (!r.touchData.singleTouchMoved) { if (!start) { cy.$(':selected').unselect(['tapunselect']); } triggerEvents(start, ['tap', 'vclick'], e, { x: now[0], y: now[1] }); didDoubleTouch = false; if (e.timeStamp - prevTouchTimeStamp <= cy.multiClickDebounceTime()) { touchTimeout && clearTimeout(touchTimeout); didDoubleTouch = true; prevTouchTimeStamp = null; triggerEvents(start, ['dbltap', 'vdblclick'], e, { x: now[0], y: now[1] }); } else { touchTimeout = setTimeout(function () { if (didDoubleTouch) return; triggerEvents(start, ['onetap', 'voneclick'], e, { x: now[0], y: now[1] }); }, cy.multiClickDebounceTime()); prevTouchTimeStamp = e.timeStamp; } } // Prepare to select the currently touched node, only if it hasn't been dragged past a certain distance if (start != null && !r.dragData.didDrag // didn't drag nodes around && start._private.selectable && rdist2 < r.touchTapThreshold2 && !r.pinching // pinch to zoom should not affect selection ) { if (cy.selectionType() === 'single') { cy.$(isSelected).unmerge(start).unselect(['tapunselect']); start.select(['tapselect']); } else { if (start.selected()) { start.unselect(['tapunselect']); } else { start.select(['tapselect']); } } r.redrawHint('eles', true); } r.touchData.singleTouchMoved = true; } for (var j = 0; j < now.length; j++) { earlier[j] = now[j]; } r.dragData.didDrag = false; // reset for next touchstart if (e.touches.length === 0) { r.touchData.dragDelta = []; r.touchData.startPosition = [null, null, null, null, null, null]; r.touchData.startGPosition = null; r.touchData.didSelect = false; } if (e.touches.length < 2) { if (e.touches.length === 1) { // the old start global pos'n may not be the same finger that remains r.touchData.startGPosition = [e.touches[0].clientX, e.touches[0].clientY]; } r.pinching = false; r.redrawHint('eles', true); r.redraw(); } //r.redraw(); }, false); // fallback compatibility layer for ms pointer events if (typeof TouchEvent === 'undefined') { var pointers = []; var makeTouch = function makeTouch(e) { return { clientX: e.clientX, clientY: e.clientY, force: 1, identifier: e.pointerId, pageX: e.pageX, pageY: e.pageY, radiusX: e.width / 2, radiusY: e.height / 2, screenX: e.screenX, screenY: e.screenY, target: e.target }; }; var makePointer = function makePointer(e) { return { event: e, touch: makeTouch(e) }; }; var addPointer = function addPointer(e) { pointers.push(makePointer(e)); }; var removePointer = function removePointer(e) { for (var i = 0; i < pointers.length; i++) { var p = pointers[i]; if (p.event.pointerId === e.pointerId) { pointers.splice(i, 1); return; } } }; var updatePointer = function updatePointer(e) { var p = pointers.filter(function (p) { return p.event.pointerId === e.pointerId; })[0]; p.event = e; p.touch = makeTouch(e); }; var addTouchesToEvent = function addTouchesToEvent(e) { e.touches = pointers.map(function (p) { return p.touch; }); }; var pointerIsMouse = function pointerIsMouse(e) { return e.pointerType === 'mouse' || e.pointerType === 4; }; r.registerBinding(r.container, 'pointerdown', function (e) { if (pointerIsMouse(e)) { return; } // mouse already handled e.preventDefault(); addPointer(e); addTouchesToEvent(e); touchstartHandler(e); }); r.registerBinding(r.container, 'pointerup', function (e) { if (pointerIsMouse(e)) { return; } // mouse already handled removePointer(e); addTouchesToEvent(e); touchendHandler(e); }); r.registerBinding(r.container, 'pointercancel', function (e) { if (pointerIsMouse(e)) { return; } // mouse already handled removePointer(e); addTouchesToEvent(e); touchcancelHandler(e); }); r.registerBinding(r.container, 'pointermove', function (e) { if (pointerIsMouse(e)) { return; } // mouse already handled e.preventDefault(); updatePointer(e); addTouchesToEvent(e); touchmoveHandler(e); }); } }; var BRp$2 = {}; BRp$2.generatePolygon = function (name, points) { return this.nodeShapes[name] = { renderer: this, name: name, points: points, draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl('polygon', context, centerX, centerY, width, height, this.points); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { return polygonIntersectLine(x, y, this.points, nodeX, nodeY, width / 2, height / 2, padding); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { return pointInsidePolygon(x, y, this.points, centerX, centerY, width, height, [0, -1], padding); } }; }; BRp$2.generateEllipse = function () { return this.nodeShapes['ellipse'] = { renderer: this, name: 'ellipse', draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl(this.name, context, centerX, centerY, width, height); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { return intersectLineEllipse(x, y, nodeX, nodeY, width / 2 + padding, height / 2 + padding); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { return checkInEllipse(x, y, width, height, centerX, centerY, padding); } }; }; BRp$2.generateRoundPolygon = function (name, points) { return this.nodeShapes[name] = { renderer: this, name: name, points: points, getOrCreateCorners: function getOrCreateCorners(centerX, centerY, width, height, cornerRadius, rs, field) { if (rs[field] !== undefined && rs[field + '-cx'] === centerX && rs[field + '-cy'] === centerY) { return rs[field]; } rs[field] = new Array(points.length / 2); rs[field + '-cx'] = centerX; rs[field + '-cy'] = centerY; var halfW = width / 2; var halfH = height / 2; cornerRadius = cornerRadius === 'auto' ? getRoundPolygonRadius(width, height) : cornerRadius; var p = new Array(points.length / 2); for (var _i = 0; _i < points.length / 2; _i++) { p[_i] = { x: centerX + halfW * points[_i * 2], y: centerY + halfH * points[_i * 2 + 1] }; } var i, p1, p2, p3, len = p.length; p1 = p[len - 1]; // for each point for (i = 0; i < len; i++) { p2 = p[i % len]; p3 = p[(i + 1) % len]; rs[field][i] = getRoundCorner(p1, p2, p3, cornerRadius); p1 = p2; p2 = p3; } return rs[field]; }, draw: function draw(context, centerX, centerY, width, height, cornerRadius, rs) { this.renderer.nodeShapeImpl('round-polygon', context, centerX, centerY, width, height, this.points, this.getOrCreateCorners(centerX, centerY, width, height, cornerRadius, rs, 'drawCorners')); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius, rs) { return roundPolygonIntersectLine(x, y, this.points, nodeX, nodeY, width, height, padding, this.getOrCreateCorners(nodeX, nodeY, width, height, cornerRadius, rs, 'corners')); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius, rs) { return pointInsideRoundPolygon(x, y, this.points, centerX, centerY, width, height, this.getOrCreateCorners(centerX, centerY, width, height, cornerRadius, rs, 'corners')); } }; }; BRp$2.generateRoundRectangle = function () { return this.nodeShapes['round-rectangle'] = this.nodeShapes['roundrectangle'] = { renderer: this, name: 'round-rectangle', points: generateUnitNgonPointsFitToSquare(4, 0), draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl(this.name, context, centerX, centerY, width, height, this.points, cornerRadius); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { return roundRectangleIntersectLine(x, y, nodeX, nodeY, width, height, padding, cornerRadius); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { var halfWidth = width / 2; var halfHeight = height / 2; cornerRadius = cornerRadius === 'auto' ? getRoundRectangleRadius(width, height) : cornerRadius; cornerRadius = Math.min(halfWidth, halfHeight, cornerRadius); var diam = cornerRadius * 2; // Check hBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width, height - diam, [0, -1], padding)) { return true; } // Check vBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width - diam, height, [0, -1], padding)) { return true; } // Check top left quarter circle if (checkInEllipse(x, y, diam, diam, centerX - halfWidth + cornerRadius, centerY - halfHeight + cornerRadius, padding)) { return true; } // Check top right quarter circle if (checkInEllipse(x, y, diam, diam, centerX + halfWidth - cornerRadius, centerY - halfHeight + cornerRadius, padding)) { return true; } // Check bottom right quarter circle if (checkInEllipse(x, y, diam, diam, centerX + halfWidth - cornerRadius, centerY + halfHeight - cornerRadius, padding)) { return true; } // Check bottom left quarter circle if (checkInEllipse(x, y, diam, diam, centerX - halfWidth + cornerRadius, centerY + halfHeight - cornerRadius, padding)) { return true; } return false; } }; }; BRp$2.generateCutRectangle = function () { return this.nodeShapes['cut-rectangle'] = this.nodeShapes['cutrectangle'] = { renderer: this, name: 'cut-rectangle', cornerLength: getCutRectangleCornerLength(), points: generateUnitNgonPointsFitToSquare(4, 0), draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl(this.name, context, centerX, centerY, width, height, null, cornerRadius); }, generateCutTrianglePts: function generateCutTrianglePts(width, height, centerX, centerY, cornerRadius) { var cl = cornerRadius === 'auto' ? this.cornerLength : cornerRadius; var hh = height / 2; var hw = width / 2; var xBegin = centerX - hw; var xEnd = centerX + hw; var yBegin = centerY - hh; var yEnd = centerY + hh; // points are in clockwise order, inner (imaginary) triangle pt on [4, 5] return { topLeft: [xBegin, yBegin + cl, xBegin + cl, yBegin, xBegin + cl, yBegin + cl], topRight: [xEnd - cl, yBegin, xEnd, yBegin + cl, xEnd - cl, yBegin + cl], bottomRight: [xEnd, yEnd - cl, xEnd - cl, yEnd, xEnd - cl, yEnd - cl], bottomLeft: [xBegin + cl, yEnd, xBegin, yEnd - cl, xBegin + cl, yEnd - cl] }; }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { var cPts = this.generateCutTrianglePts(width + 2 * padding, height + 2 * padding, nodeX, nodeY, cornerRadius); var pts = [].concat.apply([], [cPts.topLeft.splice(0, 4), cPts.topRight.splice(0, 4), cPts.bottomRight.splice(0, 4), cPts.bottomLeft.splice(0, 4)]); return polygonIntersectLine(x, y, pts, nodeX, nodeY); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { var cl = cornerRadius === 'auto' ? this.cornerLength : cornerRadius; // Check hBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width, height - 2 * cl, [0, -1], padding)) { return true; } // Check vBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width - 2 * cl, height, [0, -1], padding)) { return true; } var cutTrianglePts = this.generateCutTrianglePts(width, height, centerX, centerY); return pointInsidePolygonPoints(x, y, cutTrianglePts.topLeft) || pointInsidePolygonPoints(x, y, cutTrianglePts.topRight) || pointInsidePolygonPoints(x, y, cutTrianglePts.bottomRight) || pointInsidePolygonPoints(x, y, cutTrianglePts.bottomLeft); } }; }; BRp$2.generateBarrel = function () { return this.nodeShapes['barrel'] = { renderer: this, name: 'barrel', points: generateUnitNgonPointsFitToSquare(4, 0), draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl(this.name, context, centerX, centerY, width, height); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { // use two fixed t values for the bezier curve approximation var t0 = 0.15; var t1 = 0.5; var t2 = 0.85; var bPts = this.generateBarrelBezierPts(width + 2 * padding, height + 2 * padding, nodeX, nodeY); var approximateBarrelCurvePts = function approximateBarrelCurvePts(pts) { // approximate curve pts based on the two t values var m0 = qbezierPtAt({ x: pts[0], y: pts[1] }, { x: pts[2], y: pts[3] }, { x: pts[4], y: pts[5] }, t0); var m1 = qbezierPtAt({ x: pts[0], y: pts[1] }, { x: pts[2], y: pts[3] }, { x: pts[4], y: pts[5] }, t1); var m2 = qbezierPtAt({ x: pts[0], y: pts[1] }, { x: pts[2], y: pts[3] }, { x: pts[4], y: pts[5] }, t2); return [pts[0], pts[1], m0.x, m0.y, m1.x, m1.y, m2.x, m2.y, pts[4], pts[5]]; }; var pts = [].concat(approximateBarrelCurvePts(bPts.topLeft), approximateBarrelCurvePts(bPts.topRight), approximateBarrelCurvePts(bPts.bottomRight), approximateBarrelCurvePts(bPts.bottomLeft)); return polygonIntersectLine(x, y, pts, nodeX, nodeY); }, generateBarrelBezierPts: function generateBarrelBezierPts(width, height, centerX, centerY) { var hh = height / 2; var hw = width / 2; var xBegin = centerX - hw; var xEnd = centerX + hw; var yBegin = centerY - hh; var yEnd = centerY + hh; var curveConstants = getBarrelCurveConstants(width, height); var hOffset = curveConstants.heightOffset; var wOffset = curveConstants.widthOffset; var ctrlPtXOffset = curveConstants.ctrlPtOffsetPct * width; // points are in clockwise order, inner (imaginary) control pt on [4, 5] var pts = { topLeft: [xBegin, yBegin + hOffset, xBegin + ctrlPtXOffset, yBegin, xBegin + wOffset, yBegin], topRight: [xEnd - wOffset, yBegin, xEnd - ctrlPtXOffset, yBegin, xEnd, yBegin + hOffset], bottomRight: [xEnd, yEnd - hOffset, xEnd - ctrlPtXOffset, yEnd, xEnd - wOffset, yEnd], bottomLeft: [xBegin + wOffset, yEnd, xBegin + ctrlPtXOffset, yEnd, xBegin, yEnd - hOffset] }; pts.topLeft.isTop = true; pts.topRight.isTop = true; pts.bottomLeft.isBottom = true; pts.bottomRight.isBottom = true; return pts; }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { var curveConstants = getBarrelCurveConstants(width, height); var hOffset = curveConstants.heightOffset; var wOffset = curveConstants.widthOffset; // Check hBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width, height - 2 * hOffset, [0, -1], padding)) { return true; } // Check vBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width - 2 * wOffset, height, [0, -1], padding)) { return true; } var barrelCurvePts = this.generateBarrelBezierPts(width, height, centerX, centerY); var getCurveT = function getCurveT(x, y, curvePts) { var x0 = curvePts[4]; var x1 = curvePts[2]; var x2 = curvePts[0]; var y0 = curvePts[5]; // var y1 = curvePts[ 3 ]; var y2 = curvePts[1]; var xMin = Math.min(x0, x2); var xMax = Math.max(x0, x2); var yMin = Math.min(y0, y2); var yMax = Math.max(y0, y2); if (xMin <= x && x <= xMax && yMin <= y && y <= yMax) { var coeff = bezierPtsToQuadCoeff(x0, x1, x2); var roots = solveQuadratic(coeff[0], coeff[1], coeff[2], x); var validRoots = roots.filter(function (r) { return 0 <= r && r <= 1; }); if (validRoots.length > 0) { return validRoots[0]; } } return null; }; var curveRegions = Object.keys(barrelCurvePts); for (var i = 0; i < curveRegions.length; i++) { var corner = curveRegions[i]; var cornerPts = barrelCurvePts[corner]; var t = getCurveT(x, y, cornerPts); if (t == null) { continue; } var y0 = cornerPts[5]; var y1 = cornerPts[3]; var y2 = cornerPts[1]; var bezY = qbezierAt(y0, y1, y2, t); if (cornerPts.isTop && bezY <= y) { return true; } if (cornerPts.isBottom && y <= bezY) { return true; } } return false; } }; }; BRp$2.generateBottomRoundrectangle = function () { return this.nodeShapes['bottom-round-rectangle'] = this.nodeShapes['bottomroundrectangle'] = { renderer: this, name: 'bottom-round-rectangle', points: generateUnitNgonPointsFitToSquare(4, 0), draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl(this.name, context, centerX, centerY, width, height, this.points, cornerRadius); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { var topStartX = nodeX - (width / 2 + padding); var topStartY = nodeY - (height / 2 + padding); var topEndY = topStartY; var topEndX = nodeX + (width / 2 + padding); var topIntersections = finiteLinesIntersect(x, y, nodeX, nodeY, topStartX, topStartY, topEndX, topEndY, false); if (topIntersections.length > 0) { return topIntersections; } return roundRectangleIntersectLine(x, y, nodeX, nodeY, width, height, padding, cornerRadius); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { cornerRadius = cornerRadius === 'auto' ? getRoundRectangleRadius(width, height) : cornerRadius; var diam = 2 * cornerRadius; // Check hBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width, height - diam, [0, -1], padding)) { return true; } // Check vBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width - diam, height, [0, -1], padding)) { return true; } // check non-rounded top side var outerWidth = width / 2 + 2 * padding; var outerHeight = height / 2 + 2 * padding; var points = [centerX - outerWidth, centerY - outerHeight, centerX - outerWidth, centerY, centerX + outerWidth, centerY, centerX + outerWidth, centerY - outerHeight]; if (pointInsidePolygonPoints(x, y, points)) { return true; } // Check bottom right quarter circle if (checkInEllipse(x, y, diam, diam, centerX + width / 2 - cornerRadius, centerY + height / 2 - cornerRadius, padding)) { return true; } // Check bottom left quarter circle if (checkInEllipse(x, y, diam, diam, centerX - width / 2 + cornerRadius, centerY + height / 2 - cornerRadius, padding)) { return true; } return false; } }; }; BRp$2.registerNodeShapes = function () { var nodeShapes = this.nodeShapes = {}; var renderer = this; this.generateEllipse(); this.generatePolygon('triangle', generateUnitNgonPointsFitToSquare(3, 0)); this.generateRoundPolygon('round-triangle', generateUnitNgonPointsFitToSquare(3, 0)); this.generatePolygon('rectangle', generateUnitNgonPointsFitToSquare(4, 0)); nodeShapes['square'] = nodeShapes['rectangle']; this.generateRoundRectangle(); this.generateCutRectangle(); this.generateBarrel(); this.generateBottomRoundrectangle(); { var diamondPoints = [0, 1, 1, 0, 0, -1, -1, 0]; this.generatePolygon('diamond', diamondPoints); this.generateRoundPolygon('round-diamond', diamondPoints); } this.generatePolygon('pentagon', generateUnitNgonPointsFitToSquare(5, 0)); this.generateRoundPolygon('round-pentagon', generateUnitNgonPointsFitToSquare(5, 0)); this.generatePolygon('hexagon', generateUnitNgonPointsFitToSquare(6, 0)); this.generateRoundPolygon('round-hexagon', generateUnitNgonPointsFitToSquare(6, 0)); this.generatePolygon('heptagon', generateUnitNgonPointsFitToSquare(7, 0)); this.generateRoundPolygon('round-heptagon', generateUnitNgonPointsFitToSquare(7, 0)); this.generatePolygon('octagon', generateUnitNgonPointsFitToSquare(8, 0)); this.generateRoundPolygon('round-octagon', generateUnitNgonPointsFitToSquare(8, 0)); var star5Points = new Array(20); { var outerPoints = generateUnitNgonPoints(5, 0); var innerPoints = generateUnitNgonPoints(5, Math.PI / 5); // Outer radius is 1; inner radius of star is smaller var innerRadius = 0.5 * (3 - Math.sqrt(5)); innerRadius *= 1.57; for (var i = 0; i < innerPoints.length / 2; i++) { innerPoints[i * 2] *= innerRadius; innerPoints[i * 2 + 1] *= innerRadius; } for (var i = 0; i < 20 / 4; i++) { star5Points[i * 4] = outerPoints[i * 2]; star5Points[i * 4 + 1] = outerPoints[i * 2 + 1]; star5Points[i * 4 + 2] = innerPoints[i * 2]; star5Points[i * 4 + 3] = innerPoints[i * 2 + 1]; } } star5Points = fitPolygonToSquare(star5Points); this.generatePolygon('star', star5Points); this.generatePolygon('vee', [-1, -1, 0, -0.333, 1, -1, 0, 1]); this.generatePolygon('rhomboid', [-1, -1, 0.333, -1, 1, 1, -0.333, 1]); this.generatePolygon('right-rhomboid', [-0.333, -1, 1, -1, 0.333, 1, -1, 1]); this.nodeShapes['concavehexagon'] = this.generatePolygon('concave-hexagon', [-1, -0.95, -0.75, 0, -1, 0.95, 1, 0.95, 0.75, 0, 1, -0.95]); { var tagPoints = [-1, -1, 0.25, -1, 1, 0, 0.25, 1, -1, 1]; this.generatePolygon('tag', tagPoints); this.generateRoundPolygon('round-tag', tagPoints); } nodeShapes.makePolygon = function (points) { // use caching on user-specified polygons so they are as fast as native shapes var key = points.join('$'); var name = 'polygon-' + key; var shape; if (shape = this[name]) { // got cached shape return shape; } // create and cache new shape return renderer.generatePolygon(name, points); }; }; var BRp$1 = {}; BRp$1.timeToRender = function () { return this.redrawTotalTime / this.redrawCount; }; BRp$1.redraw = function (options) { options = options || staticEmptyObject(); var r = this; if (r.averageRedrawTime === undefined) { r.averageRedrawTime = 0; } if (r.lastRedrawTime === undefined) { r.lastRedrawTime = 0; } if (r.lastDrawTime === undefined) { r.lastDrawTime = 0; } r.requestedFrame = true; r.renderOptions = options; }; BRp$1.beforeRender = function (fn, priority) { // the renderer can't add tick callbacks when destroyed if (this.destroyed) { return; } if (priority == null) { error('Priority is not optional for beforeRender'); } var cbs = this.beforeRenderCallbacks; cbs.push({ fn: fn, priority: priority }); // higher priority callbacks executed first cbs.sort(function (a, b) { return b.priority - a.priority; }); }; var beforeRenderCallbacks = function beforeRenderCallbacks(r, willDraw, startTime) { var cbs = r.beforeRenderCallbacks; for (var i = 0; i < cbs.length; i++) { cbs[i].fn(willDraw, startTime); } }; BRp$1.startRenderLoop = function () { var r = this; var cy = r.cy; if (r.renderLoopStarted) { return; } else { r.renderLoopStarted = true; } var renderFn = function renderFn(requestTime) { if (r.destroyed) { return; } if (cy.batching()) ; else if (r.requestedFrame && !r.skipFrame) { beforeRenderCallbacks(r, true, requestTime); var startTime = performanceNow(); r.render(r.renderOptions); var endTime = r.lastDrawTime = performanceNow(); if (r.averageRedrawTime === undefined) { r.averageRedrawTime = endTime - startTime; } if (r.redrawCount === undefined) { r.redrawCount = 0; } r.redrawCount++; if (r.redrawTotalTime === undefined) { r.redrawTotalTime = 0; } var duration = endTime - startTime; r.redrawTotalTime += duration; r.lastRedrawTime = duration; // use a weighted average with a bias from the previous average so we don't spike so easily r.averageRedrawTime = r.averageRedrawTime / 2 + duration / 2; r.requestedFrame = false; } else { beforeRenderCallbacks(r, false, requestTime); } r.skipFrame = false; requestAnimationFrame(renderFn); }; requestAnimationFrame(renderFn); }; var BaseRenderer = function BaseRenderer(options) { this.init(options); }; var BR = BaseRenderer; var BRp = BR.prototype; BRp.clientFunctions = ['redrawHint', 'render', 'renderTo', 'matchCanvasSize', 'nodeShapeImpl', 'arrowShapeImpl']; BRp.init = function (options) { var r = this; r.options = options; r.cy = options.cy; var ctr = r.container = options.cy.container(); var containerWindow = r.cy.window(); // prepend a stylesheet in the head such that if (containerWindow) { var document = containerWindow.document; var head = document.head; var stylesheetId = '__________cytoscape_stylesheet'; var className = '__________cytoscape_container'; var stylesheetAlreadyExists = document.getElementById(stylesheetId) != null; if (ctr.className.indexOf(className) < 0) { ctr.className = (ctr.className || '') + ' ' + className; } if (!stylesheetAlreadyExists) { var stylesheet = document.createElement('style'); stylesheet.id = stylesheetId; stylesheet.textContent = '.' + className + ' { position: relative; }'; head.insertBefore(stylesheet, head.children[0]); // first so lowest priority } var computedStyle = containerWindow.getComputedStyle(ctr); var position = computedStyle.getPropertyValue('position'); if (position === 'static') { warn('A Cytoscape container has style position:static and so can not use UI extensions properly'); } } r.selection = [undefined, undefined, undefined, undefined, 0]; // Coordinates for selection box, plus enabled flag r.bezierProjPcts = [0.05, 0.225, 0.4, 0.5, 0.6, 0.775, 0.95]; //--Pointer-related data r.hoverData = { down: null, last: null, downTime: null, triggerMode: null, dragging: false, initialPan: [null, null], capture: false }; r.dragData = { possibleDragElements: [] }; r.touchData = { start: null, capture: false, // These 3 fields related to tap, taphold events startPosition: [null, null, null, null, null, null], singleTouchStartTime: null, singleTouchMoved: true, now: [null, null, null, null, null, null], earlier: [null, null, null, null, null, null] }; r.redraws = 0; r.showFps = options.showFps; r.debug = options.debug; r.hideEdgesOnViewport = options.hideEdgesOnViewport; r.textureOnViewport = options.textureOnViewport; r.wheelSensitivity = options.wheelSensitivity; r.motionBlurEnabled = options.motionBlur; // on by default r.forcedPixelRatio = number$1(options.pixelRatio) ? options.pixelRatio : null; r.motionBlur = options.motionBlur; // for initial kick off r.motionBlurOpacity = options.motionBlurOpacity; r.motionBlurTransparency = 1 - r.motionBlurOpacity; r.motionBlurPxRatio = 1; r.mbPxRBlurry = 1; //0.8; r.minMbLowQualFrames = 4; r.fullQualityMb = false; r.clearedForMotionBlur = []; r.desktopTapThreshold = options.desktopTapThreshold; r.desktopTapThreshold2 = options.desktopTapThreshold * options.desktopTapThreshold; r.touchTapThreshold = options.touchTapThreshold; r.touchTapThreshold2 = options.touchTapThreshold * options.touchTapThreshold; r.tapholdDuration = 500; r.bindings = []; r.beforeRenderCallbacks = []; r.beforeRenderPriorities = { // higher priority execs before lower one animations: 400, eleCalcs: 300, eleTxrDeq: 200, lyrTxrDeq: 150, lyrTxrSkip: 100 }; r.registerNodeShapes(); r.registerArrowShapes(); r.registerCalculationListeners(); }; BRp.notify = function (eventName, eles) { var r = this; var cy = r.cy; // the renderer can't be notified after it's destroyed if (this.destroyed) { return; } if (eventName === 'init') { r.load(); return; } if (eventName === 'destroy') { r.destroy(); return; } if (eventName === 'add' || eventName === 'remove' || eventName === 'move' && cy.hasCompoundNodes() || eventName === 'load' || eventName === 'zorder' || eventName === 'mount') { r.invalidateCachedZSortedEles(); } if (eventName === 'viewport') { r.redrawHint('select', true); } if (eventName === 'load' || eventName === 'resize' || eventName === 'mount') { r.invalidateContainerClientCoordsCache(); r.matchCanvasSize(r.container); } r.redrawHint('eles', true); r.redrawHint('drag', true); this.startRenderLoop(); this.redraw(); }; BRp.destroy = function () { var r = this; r.destroyed = true; r.cy.stopAnimationLoop(); for (var i = 0; i < r.bindings.length; i++) { var binding = r.bindings[i]; var b = binding; var tgt = b.target; (tgt.off || tgt.removeEventListener).apply(tgt, b.args); } r.bindings = []; r.beforeRenderCallbacks = []; r.onUpdateEleCalcsFns = []; if (r.removeObserver) { r.removeObserver.disconnect(); } if (r.styleObserver) { r.styleObserver.disconnect(); } if (r.resizeObserver) { r.resizeObserver.disconnect(); } if (r.labelCalcDiv) { try { document.body.removeChild(r.labelCalcDiv); // eslint-disable-line no-undef } catch (e) { // ie10 issue #1014 } } }; BRp.isHeadless = function () { return false; }; [BRp$f, BRp$5, BRp$4, BRp$3, BRp$2, BRp$1].forEach(function (props) { extend(BRp, props); }); var fullFpsTime = 1000 / 60; // assume 60 frames per second var defs = { setupDequeueing: function setupDequeueing(opts) { return function setupDequeueingImpl() { var self = this; var r = this.renderer; if (self.dequeueingSetup) { return; } else { self.dequeueingSetup = true; } var queueRedraw = debounce_1(function () { r.redrawHint('eles', true); r.redrawHint('drag', true); r.redraw(); }, opts.deqRedrawThreshold); var dequeue = function dequeue(willDraw, frameStartTime) { var startTime = performanceNow(); var avgRenderTime = r.averageRedrawTime; var renderTime = r.lastRedrawTime; var deqd = []; var extent = r.cy.extent(); var pixelRatio = r.getPixelRatio(); // if we aren't in a tick that causes a draw, then the rendered style // queue won't automatically be flushed before dequeueing starts if (!willDraw) { r.flushRenderedStyleQueue(); } while (true) { // eslint-disable-line no-constant-condition var now = performanceNow(); var duration = now - startTime; var frameDuration = now - frameStartTime; if (renderTime < fullFpsTime) { // if we're rendering faster than the ideal fps, then do dequeueing // during all of the remaining frame time var timeAvailable = fullFpsTime - (willDraw ? avgRenderTime : 0); if (frameDuration >= opts.deqFastCost * timeAvailable) { break; } } else { if (willDraw) { if (duration >= opts.deqCost * renderTime || duration >= opts.deqAvgCost * avgRenderTime) { break; } } else if (frameDuration >= opts.deqNoDrawCost * fullFpsTime) { break; } } var thisDeqd = opts.deq(self, pixelRatio, extent); if (thisDeqd.length > 0) { for (var i = 0; i < thisDeqd.length; i++) { deqd.push(thisDeqd[i]); } } else { break; } } // callbacks on dequeue if (deqd.length > 0) { opts.onDeqd(self, deqd); if (!willDraw && opts.shouldRedraw(self, deqd, pixelRatio, extent)) { queueRedraw(); } } }; var priority = opts.priority || noop$1; r.beforeRender(dequeue, priority(self)); }; } }; // Allows lookups for (ele, lvl) => cache. // Uses keys so elements may share the same cache. var ElementTextureCacheLookup = /*#__PURE__*/function () { function ElementTextureCacheLookup(getKey) { var doesEleInvalidateKey = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : falsify; _classCallCheck(this, ElementTextureCacheLookup); this.idsByKey = new Map$2(); this.keyForId = new Map$2(); this.cachesByLvl = new Map$2(); this.lvls = []; this.getKey = getKey; this.doesEleInvalidateKey = doesEleInvalidateKey; } _createClass(ElementTextureCacheLookup, [{ key: "getIdsFor", value: function getIdsFor(key) { if (key == null) { error("Can not get id list for null key"); } var idsByKey = this.idsByKey; var ids = this.idsByKey.get(key); if (!ids) { ids = new Set$1(); idsByKey.set(key, ids); } return ids; } }, { key: "addIdForKey", value: function addIdForKey(key, id) { if (key != null) { this.getIdsFor(key).add(id); } } }, { key: "deleteIdForKey", value: function deleteIdForKey(key, id) { if (key != null) { this.getIdsFor(key)["delete"](id); } } }, { key: "getNumberOfIdsForKey", value: function getNumberOfIdsForKey(key) { if (key == null) { return 0; } else { return this.getIdsFor(key).size; } } }, { key: "updateKeyMappingFor", value: function updateKeyMappingFor(ele) { var id = ele.id(); var prevKey = this.keyForId.get(id); var currKey = this.getKey(ele); this.deleteIdForKey(prevKey, id); this.addIdForKey(currKey, id); this.keyForId.set(id, currKey); } }, { key: "deleteKeyMappingFor", value: function deleteKeyMappingFor(ele) { var id = ele.id(); var prevKey = this.keyForId.get(id); this.deleteIdForKey(prevKey, id); this.keyForId["delete"](id); } }, { key: "keyHasChangedFor", value: function keyHasChangedFor(ele) { var id = ele.id(); var prevKey = this.keyForId.get(id); var newKey = this.getKey(ele); return prevKey !== newKey; } }, { key: "isInvalid", value: function isInvalid(ele) { return this.keyHasChangedFor(ele) || this.doesEleInvalidateKey(ele); } }, { key: "getCachesAt", value: function getCachesAt(lvl) { var cachesByLvl = this.cachesByLvl, lvls = this.lvls; var caches = cachesByLvl.get(lvl); if (!caches) { caches = new Map$2(); cachesByLvl.set(lvl, caches); lvls.push(lvl); } return caches; } }, { key: "getCache", value: function getCache(key, lvl) { return this.getCachesAt(lvl).get(key); } }, { key: "get", value: function get(ele, lvl) { var key = this.getKey(ele); var cache = this.getCache(key, lvl); // getting for an element may need to add to the id list b/c eles can share keys if (cache != null) { this.updateKeyMappingFor(ele); } return cache; } }, { key: "getForCachedKey", value: function getForCachedKey(ele, lvl) { var key = this.keyForId.get(ele.id()); // n.b. use cached key, not newly computed key var cache = this.getCache(key, lvl); return cache; } }, { key: "hasCache", value: function hasCache(key, lvl) { return this.getCachesAt(lvl).has(key); } }, { key: "has", value: function has(ele, lvl) { var key = this.getKey(ele); return this.hasCache(key, lvl); } }, { key: "setCache", value: function setCache(key, lvl, cache) { cache.key = key; this.getCachesAt(lvl).set(key, cache); } }, { key: "set", value: function set(ele, lvl, cache) { var key = this.getKey(ele); this.setCache(key, lvl, cache); this.updateKeyMappingFor(ele); } }, { key: "deleteCache", value: function deleteCache(key, lvl) { this.getCachesAt(lvl)["delete"](key); } }, { key: "delete", value: function _delete(ele, lvl) { var key = this.getKey(ele); this.deleteCache(key, lvl); } }, { key: "invalidateKey", value: function invalidateKey(key) { var _this = this; this.lvls.forEach(function (lvl) { return _this.deleteCache(key, lvl); }); } // returns true if no other eles reference the invalidated cache (n.b. other eles may need the cache with the same key) }, { key: "invalidate", value: function invalidate(ele) { var id = ele.id(); var key = this.keyForId.get(id); // n.b. use stored key rather than current (potential key) this.deleteKeyMappingFor(ele); var entireKeyInvalidated = this.doesEleInvalidateKey(ele); if (entireKeyInvalidated) { // clear mapping for current key this.invalidateKey(key); } return entireKeyInvalidated || this.getNumberOfIdsForKey(key) === 0; } }]); return ElementTextureCacheLookup; }(); var minTxrH = 25; // the size of the texture cache for small height eles (special case) var txrStepH = 50; // the min size of the regular cache, and the size it increases with each step up var minLvl$1 = -4; // when scaling smaller than that we don't need to re-render var maxLvl$1 = 3; // when larger than this scale just render directly (caching is not helpful) var maxZoom$1 = 7.99; // beyond this zoom level, layered textures are not used var eleTxrSpacing = 8; // spacing between elements on textures to avoid blitting overlaps var defTxrWidth = 1024; // default/minimum texture width var maxTxrW = 1024; // the maximum width of a texture var maxTxrH = 1024; // the maximum height of a texture var minUtility = 0.2; // if usage of texture is less than this, it is retired var maxFullness = 0.8; // fullness of texture after which queue removal is checked var maxFullnessChecks = 10; // dequeued after this many checks var deqCost$1 = 0.15; // % of add'l rendering cost allowed for dequeuing ele caches each frame var deqAvgCost$1 = 0.1; // % of add'l rendering cost compared to average overall redraw time var deqNoDrawCost$1 = 0.9; // % of avg frame time that can be used for dequeueing when not drawing var deqFastCost$1 = 0.9; // % of frame time to be used when >60fps var deqRedrawThreshold$1 = 100; // time to batch redraws together from dequeueing to allow more dequeueing calcs to happen in the meanwhile var maxDeqSize$1 = 1; // number of eles to dequeue and render at higher texture in each batch var getTxrReasons = { dequeue: 'dequeue', downscale: 'downscale', highQuality: 'highQuality' }; var initDefaults = defaults$g({ getKey: null, doesEleInvalidateKey: falsify, drawElement: null, getBoundingBox: null, getRotationPoint: null, getRotationOffset: null, isVisible: trueify, allowEdgeTxrCaching: true, allowParentTxrCaching: true }); var ElementTextureCache = function ElementTextureCache(renderer, initOptions) { var self = this; self.renderer = renderer; self.onDequeues = []; var opts = initDefaults(initOptions); extend(self, opts); self.lookup = new ElementTextureCacheLookup(opts.getKey, opts.doesEleInvalidateKey); self.setupDequeueing(); }; var ETCp = ElementTextureCache.prototype; ETCp.reasons = getTxrReasons; // the list of textures in which new subtextures for elements can be placed ETCp.getTextureQueue = function (txrH) { var self = this; self.eleImgCaches = self.eleImgCaches || {}; return self.eleImgCaches[txrH] = self.eleImgCaches[txrH] || []; }; // the list of usused textures which can be recycled (in use in texture queue) ETCp.getRetiredTextureQueue = function (txrH) { var self = this; var rtxtrQs = self.eleImgCaches.retired = self.eleImgCaches.retired || {}; var rtxtrQ = rtxtrQs[txrH] = rtxtrQs[txrH] || []; return rtxtrQ; }; // queue of element draw requests at different scale levels ETCp.getElementQueue = function () { var self = this; var q = self.eleCacheQueue = self.eleCacheQueue || new heap(function (a, b) { return b.reqs - a.reqs; }); return q; }; // queue of element draw requests at different scale levels (element id lookup) ETCp.getElementKeyToQueue = function () { var self = this; var k2q = self.eleKeyToCacheQueue = self.eleKeyToCacheQueue || {}; return k2q; }; ETCp.getElement = function (ele, bb, pxRatio, lvl, reason) { var self = this; var r = this.renderer; var zoom = r.cy.zoom(); var lookup = this.lookup; if (!bb || bb.w === 0 || bb.h === 0 || isNaN(bb.w) || isNaN(bb.h) || !ele.visible() || ele.removed()) { return null; } if (!self.allowEdgeTxrCaching && ele.isEdge() || !self.allowParentTxrCaching && ele.isParent()) { return null; } if (lvl == null) { lvl = Math.ceil(log2(zoom * pxRatio)); } if (lvl < minLvl$1) { lvl = minLvl$1; } else if (zoom >= maxZoom$1 || lvl > maxLvl$1) { return null; } var scale = Math.pow(2, lvl); var eleScaledH = bb.h * scale; var eleScaledW = bb.w * scale; var scaledLabelShown = r.eleTextBiggerThanMin(ele, scale); if (!this.isVisible(ele, scaledLabelShown)) { return null; } var eleCache = lookup.get(ele, lvl); // if this get was on an unused/invalidated cache, then restore the texture usage metric if (eleCache && eleCache.invalidated) { eleCache.invalidated = false; eleCache.texture.invalidatedWidth -= eleCache.width; } if (eleCache) { return eleCache; } var txrH; // which texture height this ele belongs to if (eleScaledH <= minTxrH) { txrH = minTxrH; } else if (eleScaledH <= txrStepH) { txrH = txrStepH; } else { txrH = Math.ceil(eleScaledH / txrStepH) * txrStepH; } if (eleScaledH > maxTxrH || eleScaledW > maxTxrW) { return null; // caching large elements is not efficient } var txrQ = self.getTextureQueue(txrH); // first try the second last one in case it has space at the end var txr = txrQ[txrQ.length - 2]; var addNewTxr = function addNewTxr() { return self.recycleTexture(txrH, eleScaledW) || self.addTexture(txrH, eleScaledW); }; // try the last one if there is no second last one if (!txr) { txr = txrQ[txrQ.length - 1]; } // if the last one doesn't exist, we need a first one if (!txr) { txr = addNewTxr(); } // if there's no room in the current texture, we need a new one if (txr.width - txr.usedWidth < eleScaledW) { txr = addNewTxr(); } var scalableFrom = function scalableFrom(otherCache) { return otherCache && otherCache.scaledLabelShown === scaledLabelShown; }; var deqing = reason && reason === getTxrReasons.dequeue; var highQualityReq = reason && reason === getTxrReasons.highQuality; var downscaleReq = reason && reason === getTxrReasons.downscale; var higherCache; // the nearest cache with a higher level for (var l = lvl + 1; l <= maxLvl$1; l++) { var c = lookup.get(ele, l); if (c) { higherCache = c; break; } } var oneUpCache = higherCache && higherCache.level === lvl + 1 ? higherCache : null; var downscale = function downscale() { txr.context.drawImage(oneUpCache.texture.canvas, oneUpCache.x, 0, oneUpCache.width, oneUpCache.height, txr.usedWidth, 0, eleScaledW, eleScaledH); }; // reset ele area in texture txr.context.setTransform(1, 0, 0, 1, 0, 0); txr.context.clearRect(txr.usedWidth, 0, eleScaledW, txrH); if (scalableFrom(oneUpCache)) { // then we can relatively cheaply rescale the existing image w/o rerendering downscale(); } else if (scalableFrom(higherCache)) { // then use the higher cache for now and queue the next level down // to cheaply scale towards the smaller level if (highQualityReq) { for (var _l = higherCache.level; _l > lvl; _l--) { oneUpCache = self.getElement(ele, bb, pxRatio, _l, getTxrReasons.downscale); } downscale(); } else { self.queueElement(ele, higherCache.level - 1); return higherCache; } } else { var lowerCache; // the nearest cache with a lower level if (!deqing && !highQualityReq && !downscaleReq) { for (var _l2 = lvl - 1; _l2 >= minLvl$1; _l2--) { var _c = lookup.get(ele, _l2); if (_c) { lowerCache = _c; break; } } } if (scalableFrom(lowerCache)) { // then use the lower quality cache for now and queue the better one for later self.queueElement(ele, lvl); return lowerCache; } txr.context.translate(txr.usedWidth, 0); txr.context.scale(scale, scale); this.drawElement(txr.context, ele, bb, scaledLabelShown, false); txr.context.scale(1 / scale, 1 / scale); txr.context.translate(-txr.usedWidth, 0); } eleCache = { x: txr.usedWidth, texture: txr, level: lvl, scale: scale, width: eleScaledW, height: eleScaledH, scaledLabelShown: scaledLabelShown }; txr.usedWidth += Math.ceil(eleScaledW + eleTxrSpacing); txr.eleCaches.push(eleCache); lookup.set(ele, lvl, eleCache); self.checkTextureFullness(txr); return eleCache; }; ETCp.invalidateElements = function (eles) { for (var i = 0; i < eles.length; i++) { this.invalidateElement(eles[i]); } }; ETCp.invalidateElement = function (ele) { var self = this; var lookup = self.lookup; var caches = []; var invalid = lookup.isInvalid(ele); if (!invalid) { return; // override the invalidation request if the element key has not changed } for (var lvl = minLvl$1; lvl <= maxLvl$1; lvl++) { var cache = lookup.getForCachedKey(ele, lvl); if (cache) { caches.push(cache); } } var noOtherElesUseCache = lookup.invalidate(ele); if (noOtherElesUseCache) { for (var i = 0; i < caches.length; i++) { var _cache = caches[i]; var txr = _cache.texture; // remove space from the texture it belongs to txr.invalidatedWidth += _cache.width; // mark the cache as invalidated _cache.invalidated = true; // retire the texture if its utility is low self.checkTextureUtility(txr); } } // remove from queue since the old req was for the old state self.removeFromQueue(ele); }; ETCp.checkTextureUtility = function (txr) { // invalidate all entries in the cache if the cache size is small if (txr.invalidatedWidth >= minUtility * txr.width) { this.retireTexture(txr); } }; ETCp.checkTextureFullness = function (txr) { // if texture has been mostly filled and passed over several times, remove // it from the queue so we don't need to waste time looking at it to put new things var self = this; var txrQ = self.getTextureQueue(txr.height); if (txr.usedWidth / txr.width > maxFullness && txr.fullnessChecks >= maxFullnessChecks) { removeFromArray(txrQ, txr); } else { txr.fullnessChecks++; } }; ETCp.retireTexture = function (txr) { var self = this; var txrH = txr.height; var txrQ = self.getTextureQueue(txrH); var lookup = this.lookup; // retire the texture from the active / searchable queue: removeFromArray(txrQ, txr); txr.retired = true; // remove the refs from the eles to the caches: var eleCaches = txr.eleCaches; for (var i = 0; i < eleCaches.length; i++) { var eleCache = eleCaches[i]; lookup.deleteCache(eleCache.key, eleCache.level); } clearArray(eleCaches); // add the texture to a retired queue so it can be recycled in future: var rtxtrQ = self.getRetiredTextureQueue(txrH); rtxtrQ.push(txr); }; ETCp.addTexture = function (txrH, minW) { var self = this; var txrQ = self.getTextureQueue(txrH); var txr = {}; txrQ.push(txr); txr.eleCaches = []; txr.height = txrH; txr.width = Math.max(defTxrWidth, minW); txr.usedWidth = 0; txr.invalidatedWidth = 0; txr.fullnessChecks = 0; txr.canvas = self.renderer.makeOffscreenCanvas(txr.width, txr.height); txr.context = txr.canvas.getContext('2d'); return txr; }; ETCp.recycleTexture = function (txrH, minW) { var self = this; var txrQ = self.getTextureQueue(txrH); var rtxtrQ = self.getRetiredTextureQueue(txrH); for (var i = 0; i < rtxtrQ.length; i++) { var txr = rtxtrQ[i]; if (txr.width >= minW) { txr.retired = false; txr.usedWidth = 0; txr.invalidatedWidth = 0; txr.fullnessChecks = 0; clearArray(txr.eleCaches); txr.context.setTransform(1, 0, 0, 1, 0, 0); txr.context.clearRect(0, 0, txr.width, txr.height); removeFromArray(rtxtrQ, txr); txrQ.push(txr); return txr; } } }; ETCp.queueElement = function (ele, lvl) { var self = this; var q = self.getElementQueue(); var k2q = self.getElementKeyToQueue(); var key = this.getKey(ele); var existingReq = k2q[key]; if (existingReq) { // use the max lvl b/c in between lvls are cheap to make existingReq.level = Math.max(existingReq.level, lvl); existingReq.eles.merge(ele); existingReq.reqs++; q.updateItem(existingReq); } else { var req = { eles: ele.spawn().merge(ele), level: lvl, reqs: 1, key: key }; q.push(req); k2q[key] = req; } }; ETCp.dequeue = function (pxRatio /*, extent*/) { var self = this; var q = self.getElementQueue(); var k2q = self.getElementKeyToQueue(); var dequeued = []; var lookup = self.lookup; for (var i = 0; i < maxDeqSize$1; i++) { if (q.size() > 0) { var req = q.pop(); var key = req.key; var ele = req.eles[0]; // all eles have the same key var cacheExists = lookup.hasCache(ele, req.level); // clear out the key to req lookup k2q[key] = null; // dequeueing isn't necessary with an existing cache if (cacheExists) { continue; } dequeued.push(req); var bb = self.getBoundingBox(ele); self.getElement(ele, bb, pxRatio, req.level, getTxrReasons.dequeue); } else { break; } } return dequeued; }; ETCp.removeFromQueue = function (ele) { var self = this; var q = self.getElementQueue(); var k2q = self.getElementKeyToQueue(); var key = this.getKey(ele); var req = k2q[key]; if (req != null) { if (req.eles.length === 1) { // remove if last ele in the req // bring to front of queue req.reqs = MAX_INT$1; q.updateItem(req); q.pop(); // remove from queue k2q[key] = null; // remove from lookup map } else { // otherwise just remove ele from req req.eles.unmerge(ele); } } }; ETCp.onDequeue = function (fn) { this.onDequeues.push(fn); }; ETCp.offDequeue = function (fn) { removeFromArray(this.onDequeues, fn); }; ETCp.setupDequeueing = defs.setupDequeueing({ deqRedrawThreshold: deqRedrawThreshold$1, deqCost: deqCost$1, deqAvgCost: deqAvgCost$1, deqNoDrawCost: deqNoDrawCost$1, deqFastCost: deqFastCost$1, deq: function deq(self, pxRatio, extent) { return self.dequeue(pxRatio, extent); }, onDeqd: function onDeqd(self, deqd) { for (var i = 0; i < self.onDequeues.length; i++) { var fn = self.onDequeues[i]; fn(deqd); } }, shouldRedraw: function shouldRedraw(self, deqd, pxRatio, extent) { for (var i = 0; i < deqd.length; i++) { var eles = deqd[i].eles; for (var j = 0; j < eles.length; j++) { var bb = eles[j].boundingBox(); if (boundingBoxesIntersect(bb, extent)) { return true; } } } return false; }, priority: function priority(self) { return self.renderer.beforeRenderPriorities.eleTxrDeq; } }); var defNumLayers = 1; // default number of layers to use var minLvl = -4; // when scaling smaller than that we don't need to re-render var maxLvl = 2; // when larger than this scale just render directly (caching is not helpful) var maxZoom = 3.99; // beyond this zoom level, layered textures are not used var deqRedrawThreshold = 50; // time to batch redraws together from dequeueing to allow more dequeueing calcs to happen in the meanwhile var refineEleDebounceTime = 50; // time to debounce sharper ele texture updates var deqCost = 0.15; // % of add'l rendering cost allowed for dequeuing ele caches each frame var deqAvgCost = 0.1; // % of add'l rendering cost compared to average overall redraw time var deqNoDrawCost = 0.9; // % of avg frame time that can be used for dequeueing when not drawing var deqFastCost = 0.9; // % of frame time to be used when >60fps var maxDeqSize = 1; // number of eles to dequeue and render at higher texture in each batch var invalidThreshold = 250; // time threshold for disabling b/c of invalidations var maxLayerArea = 4000 * 4000; // layers can't be bigger than this var useHighQualityEleTxrReqs = true; // whether to use high quality ele txr requests (generally faster and cheaper in the longterm) // var log = function(){ console.log.apply( console, arguments ); }; var LayeredTextureCache = function LayeredTextureCache(renderer) { var self = this; var r = self.renderer = renderer; var cy = r.cy; self.layersByLevel = {}; // e.g. 2 => [ layer1, layer2, ..., layerN ] self.firstGet = true; self.lastInvalidationTime = performanceNow() - 2 * invalidThreshold; self.skipping = false; self.eleTxrDeqs = cy.collection(); self.scheduleElementRefinement = debounce_1(function () { self.refineElementTextures(self.eleTxrDeqs); self.eleTxrDeqs.unmerge(self.eleTxrDeqs); }, refineEleDebounceTime); r.beforeRender(function (willDraw, now) { if (now - self.lastInvalidationTime <= invalidThreshold) { self.skipping = true; } else { self.skipping = false; } }, r.beforeRenderPriorities.lyrTxrSkip); var qSort = function qSort(a, b) { return b.reqs - a.reqs; }; self.layersQueue = new heap(qSort); self.setupDequeueing(); }; var LTCp = LayeredTextureCache.prototype; var layerIdPool = 0; var MAX_INT = Math.pow(2, 53) - 1; LTCp.makeLayer = function (bb, lvl) { var scale = Math.pow(2, lvl); var w = Math.ceil(bb.w * scale); var h = Math.ceil(bb.h * scale); var canvas = this.renderer.makeOffscreenCanvas(w, h); var layer = { id: layerIdPool = ++layerIdPool % MAX_INT, bb: bb, level: lvl, width: w, height: h, canvas: canvas, context: canvas.getContext('2d'), eles: [], elesQueue: [], reqs: 0 }; // log('make layer %s with w %s and h %s and lvl %s', layer.id, layer.width, layer.height, layer.level); var cxt = layer.context; var dx = -layer.bb.x1; var dy = -layer.bb.y1; // do the transform on creation to save cycles (it's the same for all eles) cxt.scale(scale, scale); cxt.translate(dx, dy); return layer; }; LTCp.getLayers = function (eles, pxRatio, lvl) { var self = this; var r = self.renderer; var cy = r.cy; var zoom = cy.zoom(); var firstGet = self.firstGet; self.firstGet = false; // log('--\nget layers with %s eles', eles.length); //log eles.map(function(ele){ return ele.id() }) ); if (lvl == null) { lvl = Math.ceil(log2(zoom * pxRatio)); if (lvl < minLvl) { lvl = minLvl; } else if (zoom >= maxZoom || lvl > maxLvl) { return null; } } self.validateLayersElesOrdering(lvl, eles); var layersByLvl = self.layersByLevel; var scale = Math.pow(2, lvl); var layers = layersByLvl[lvl] = layersByLvl[lvl] || []; var bb; var lvlComplete = self.levelIsComplete(lvl, eles); var tmpLayers; var checkTempLevels = function checkTempLevels() { var canUseAsTmpLvl = function canUseAsTmpLvl(l) { self.validateLayersElesOrdering(l, eles); if (self.levelIsComplete(l, eles)) { tmpLayers = layersByLvl[l]; return true; } }; var checkLvls = function checkLvls(dir) { if (tmpLayers) { return; } for (var l = lvl + dir; minLvl <= l && l <= maxLvl; l += dir) { if (canUseAsTmpLvl(l)) { break; } } }; checkLvls(+1); checkLvls(-1); // remove the invalid layers; they will be replaced as needed later in this function for (var i = layers.length - 1; i >= 0; i--) { var layer = layers[i]; if (layer.invalid) { removeFromArray(layers, layer); } } }; if (!lvlComplete) { // if the current level is incomplete, then use the closest, best quality layerset temporarily // and later queue the current layerset so we can get the proper quality level soon checkTempLevels(); } else { // log('level complete, using existing layers\n--'); return layers; } var getBb = function getBb() { if (!bb) { bb = makeBoundingBox(); for (var i = 0; i < eles.length; i++) { updateBoundingBox(bb, eles[i].boundingBox()); } } return bb; }; var makeLayer = function makeLayer(opts) { opts = opts || {}; var after = opts.after; getBb(); var area = bb.w * scale * (bb.h * scale); if (area > maxLayerArea) { return null; } var layer = self.makeLayer(bb, lvl); if (after != null) { var index = layers.indexOf(after) + 1; layers.splice(index, 0, layer); } else if (opts.insert === undefined || opts.insert) { // no after specified => first layer made so put at start layers.unshift(layer); } // if( tmpLayers ){ //self.queueLayer( layer ); // } return layer; }; if (self.skipping && !firstGet) { // log('skip layers'); return null; } // log('do layers'); var layer = null; var maxElesPerLayer = eles.length / defNumLayers; var allowLazyQueueing = !firstGet; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var rs = ele._private.rscratch; var caches = rs.imgLayerCaches = rs.imgLayerCaches || {}; // log('look at ele', ele.id()); var existingLayer = caches[lvl]; if (existingLayer) { // reuse layer for later eles // log('reuse layer for', ele.id()); layer = existingLayer; continue; } if (!layer || layer.eles.length >= maxElesPerLayer || !boundingBoxInBoundingBox(layer.bb, ele.boundingBox())) { // log('make new layer for ele %s', ele.id()); layer = makeLayer({ insert: true, after: layer }); // if now layer can be built then we can't use layers at this level if (!layer) { return null; } // log('new layer with id %s', layer.id); } if (tmpLayers || allowLazyQueueing) { // log('queue ele %s in layer %s', ele.id(), layer.id); self.queueLayer(layer, ele); } else { // log('draw ele %s in layer %s', ele.id(), layer.id); self.drawEleInLayer(layer, ele, lvl, pxRatio); } layer.eles.push(ele); caches[lvl] = layer; } // log('--'); if (tmpLayers) { // then we only queued the current layerset and can't draw it yet return tmpLayers; } if (allowLazyQueueing) { // log('lazy queue level', lvl); return null; } return layers; }; // a layer may want to use an ele cache of a higher level to avoid blurriness // so the layer level might not equal the ele level LTCp.getEleLevelForLayerLevel = function (lvl, pxRatio) { return lvl; }; LTCp.drawEleInLayer = function (layer, ele, lvl, pxRatio) { var self = this; var r = this.renderer; var context = layer.context; var bb = ele.boundingBox(); if (bb.w === 0 || bb.h === 0 || !ele.visible()) { return; } lvl = self.getEleLevelForLayerLevel(lvl, pxRatio); { r.setImgSmoothing(context, false); } { r.drawCachedElement(context, ele, null, null, lvl, useHighQualityEleTxrReqs); } { r.setImgSmoothing(context, true); } }; LTCp.levelIsComplete = function (lvl, eles) { var self = this; var layers = self.layersByLevel[lvl]; if (!layers || layers.length === 0) { return false; } var numElesInLayers = 0; for (var i = 0; i < layers.length; i++) { var layer = layers[i]; // if there are any eles needed to be drawn yet, the level is not complete if (layer.reqs > 0) { return false; } // if the layer is invalid, the level is not complete if (layer.invalid) { return false; } numElesInLayers += layer.eles.length; } // we should have exactly the number of eles passed in to be complete if (numElesInLayers !== eles.length) { return false; } return true; }; LTCp.validateLayersElesOrdering = function (lvl, eles) { var layers = this.layersByLevel[lvl]; if (!layers) { return; } // if in a layer the eles are not in the same order, then the layer is invalid // (i.e. there is an ele in between the eles in the layer) for (var i = 0; i < layers.length; i++) { var layer = layers[i]; var offset = -1; // find the offset for (var j = 0; j < eles.length; j++) { if (layer.eles[0] === eles[j]) { offset = j; break; } } if (offset < 0) { // then the layer has nonexistent elements and is invalid this.invalidateLayer(layer); continue; } // the eles in the layer must be in the same continuous order, else the layer is invalid var o = offset; for (var j = 0; j < layer.eles.length; j++) { if (layer.eles[j] !== eles[o + j]) { // log('invalidate based on ordering', layer.id); this.invalidateLayer(layer); break; } } } }; LTCp.updateElementsInLayers = function (eles, update) { var self = this; var isEles = element(eles[0]); // collect udpated elements (cascaded from the layers) and update each // layer itself along the way for (var i = 0; i < eles.length; i++) { var req = isEles ? null : eles[i]; var ele = isEles ? eles[i] : eles[i].ele; var rs = ele._private.rscratch; var caches = rs.imgLayerCaches = rs.imgLayerCaches || {}; for (var l = minLvl; l <= maxLvl; l++) { var layer = caches[l]; if (!layer) { continue; } // if update is a request from the ele cache, then it affects only // the matching level if (req && self.getEleLevelForLayerLevel(layer.level) !== req.level) { continue; } update(layer, ele, req); } } }; LTCp.haveLayers = function () { var self = this; var haveLayers = false; for (var l = minLvl; l <= maxLvl; l++) { var layers = self.layersByLevel[l]; if (layers && layers.length > 0) { haveLayers = true; break; } } return haveLayers; }; LTCp.invalidateElements = function (eles) { var self = this; if (eles.length === 0) { return; } self.lastInvalidationTime = performanceNow(); // log('update invalidate layer time from eles'); if (eles.length === 0 || !self.haveLayers()) { return; } self.updateElementsInLayers(eles, function invalAssocLayers(layer, ele, req) { self.invalidateLayer(layer); }); }; LTCp.invalidateLayer = function (layer) { // log('update invalidate layer time'); this.lastInvalidationTime = performanceNow(); if (layer.invalid) { return; } // save cycles var lvl = layer.level; var eles = layer.eles; var layers = this.layersByLevel[lvl]; // log('invalidate layer', layer.id ); removeFromArray(layers, layer); // layer.eles = []; layer.elesQueue = []; layer.invalid = true; if (layer.replacement) { layer.replacement.invalid = true; } for (var i = 0; i < eles.length; i++) { var caches = eles[i]._private.rscratch.imgLayerCaches; if (caches) { caches[lvl] = null; } } }; LTCp.refineElementTextures = function (eles) { var self = this; // log('refine', eles.length); self.updateElementsInLayers(eles, function refineEachEle(layer, ele, req) { var rLyr = layer.replacement; if (!rLyr) { rLyr = layer.replacement = self.makeLayer(layer.bb, layer.level); rLyr.replaces = layer; rLyr.eles = layer.eles; // log('make replacement layer %s for %s with level %s', rLyr.id, layer.id, rLyr.level); } if (!rLyr.reqs) { for (var i = 0; i < rLyr.eles.length; i++) { self.queueLayer(rLyr, rLyr.eles[i]); } // log('queue replacement layer refinement', rLyr.id); } }); }; LTCp.enqueueElementRefinement = function (ele) { this.eleTxrDeqs.merge(ele); this.scheduleElementRefinement(); }; LTCp.queueLayer = function (layer, ele) { var self = this; var q = self.layersQueue; var elesQ = layer.elesQueue; var hasId = elesQ.hasId = elesQ.hasId || {}; // if a layer is going to be replaced, queuing is a waste of time if (layer.replacement) { return; } if (ele) { if (hasId[ele.id()]) { return; } elesQ.push(ele); hasId[ele.id()] = true; } if (layer.reqs) { layer.reqs++; q.updateItem(layer); } else { layer.reqs = 1; q.push(layer); } }; LTCp.dequeue = function (pxRatio) { var self = this; var q = self.layersQueue; var deqd = []; var eleDeqs = 0; while (eleDeqs < maxDeqSize) { if (q.size() === 0) { break; } var layer = q.peek(); // if a layer has been or will be replaced, then don't waste time with it if (layer.replacement) { // log('layer %s in queue skipped b/c it already has a replacement', layer.id); q.pop(); continue; } // if this is a replacement layer that has been superceded, then forget it if (layer.replaces && layer !== layer.replaces.replacement) { // log('layer is no longer the most uptodate replacement; dequeued', layer.id) q.pop(); continue; } if (layer.invalid) { // log('replacement layer %s is invalid; dequeued', layer.id); q.pop(); continue; } var ele = layer.elesQueue.shift(); if (ele) { // log('dequeue layer %s', layer.id); self.drawEleInLayer(layer, ele, layer.level, pxRatio); eleDeqs++; } if (deqd.length === 0) { // we need only one entry in deqd to queue redrawing etc deqd.push(true); } // if the layer has all its eles done, then remove from the queue if (layer.elesQueue.length === 0) { q.pop(); layer.reqs = 0; // log('dequeue of layer %s complete', layer.id); // when a replacement layer is dequeued, it replaces the old layer in the level if (layer.replaces) { self.applyLayerReplacement(layer); } self.requestRedraw(); } } return deqd; }; LTCp.applyLayerReplacement = function (layer) { var self = this; var layersInLevel = self.layersByLevel[layer.level]; var replaced = layer.replaces; var index = layersInLevel.indexOf(replaced); // if the replaced layer is not in the active list for the level, then replacing // refs would be a mistake (i.e. overwriting the true active layer) if (index < 0 || replaced.invalid) { // log('replacement layer would have no effect', layer.id); return; } layersInLevel[index] = layer; // replace level ref // replace refs in eles for (var i = 0; i < layer.eles.length; i++) { var _p = layer.eles[i]._private; var cache = _p.imgLayerCaches = _p.imgLayerCaches || {}; if (cache) { cache[layer.level] = layer; } } // log('apply replacement layer %s over %s', layer.id, replaced.id); self.requestRedraw(); }; LTCp.requestRedraw = debounce_1(function () { var r = this.renderer; r.redrawHint('eles', true); r.redrawHint('drag', true); r.redraw(); }, 100); LTCp.setupDequeueing = defs.setupDequeueing({ deqRedrawThreshold: deqRedrawThreshold, deqCost: deqCost, deqAvgCost: deqAvgCost, deqNoDrawCost: deqNoDrawCost, deqFastCost: deqFastCost, deq: function deq(self, pxRatio) { return self.dequeue(pxRatio); }, onDeqd: noop$1, shouldRedraw: trueify, priority: function priority(self) { return self.renderer.beforeRenderPriorities.lyrTxrDeq; } }); var CRp$a = {}; var impl; function polygon(context, points) { for (var i = 0; i < points.length; i++) { var pt = points[i]; context.lineTo(pt.x, pt.y); } } function triangleBackcurve(context, points, controlPoint) { var firstPt; for (var i = 0; i < points.length; i++) { var pt = points[i]; if (i === 0) { firstPt = pt; } context.lineTo(pt.x, pt.y); } context.quadraticCurveTo(controlPoint.x, controlPoint.y, firstPt.x, firstPt.y); } function triangleTee(context, trianglePoints, teePoints) { if (context.beginPath) { context.beginPath(); } var triPts = trianglePoints; for (var i = 0; i < triPts.length; i++) { var pt = triPts[i]; context.lineTo(pt.x, pt.y); } var teePts = teePoints; var firstTeePt = teePoints[0]; context.moveTo(firstTeePt.x, firstTeePt.y); for (var i = 1; i < teePts.length; i++) { var pt = teePts[i]; context.lineTo(pt.x, pt.y); } if (context.closePath) { context.closePath(); } } function circleTriangle(context, trianglePoints, rx, ry, r) { if (context.beginPath) { context.beginPath(); } context.arc(rx, ry, r, 0, Math.PI * 2, false); var triPts = trianglePoints; var firstTrPt = triPts[0]; context.moveTo(firstTrPt.x, firstTrPt.y); for (var i = 0; i < triPts.length; i++) { var pt = triPts[i]; context.lineTo(pt.x, pt.y); } if (context.closePath) { context.closePath(); } } function circle(context, rx, ry, r) { context.arc(rx, ry, r, 0, Math.PI * 2, false); } CRp$a.arrowShapeImpl = function (name) { return (impl || (impl = { 'polygon': polygon, 'triangle-backcurve': triangleBackcurve, 'triangle-tee': triangleTee, 'circle-triangle': circleTriangle, 'triangle-cross': triangleTee, 'circle': circle }))[name]; }; var CRp$9 = {}; CRp$9.drawElement = function (context, ele, shiftToOriginWithBb, showLabel, showOverlay, showOpacity) { var r = this; if (ele.isNode()) { r.drawNode(context, ele, shiftToOriginWithBb, showLabel, showOverlay, showOpacity); } else { r.drawEdge(context, ele, shiftToOriginWithBb, showLabel, showOverlay, showOpacity); } }; CRp$9.drawElementOverlay = function (context, ele) { var r = this; if (ele.isNode()) { r.drawNodeOverlay(context, ele); } else { r.drawEdgeOverlay(context, ele); } }; CRp$9.drawElementUnderlay = function (context, ele) { var r = this; if (ele.isNode()) { r.drawNodeUnderlay(context, ele); } else { r.drawEdgeUnderlay(context, ele); } }; CRp$9.drawCachedElementPortion = function (context, ele, eleTxrCache, pxRatio, lvl, reason, getRotation, getOpacity) { var r = this; var bb = eleTxrCache.getBoundingBox(ele); if (bb.w === 0 || bb.h === 0) { return; } // ignore zero size case var eleCache = eleTxrCache.getElement(ele, bb, pxRatio, lvl, reason); if (eleCache != null) { var opacity = getOpacity(r, ele); if (opacity === 0) { return; } var theta = getRotation(r, ele); var x1 = bb.x1, y1 = bb.y1, w = bb.w, h = bb.h; var x, y, sx, sy, smooth; if (theta !== 0) { var rotPt = eleTxrCache.getRotationPoint(ele); sx = rotPt.x; sy = rotPt.y; context.translate(sx, sy); context.rotate(theta); smooth = r.getImgSmoothing(context); if (!smooth) { r.setImgSmoothing(context, true); } var off = eleTxrCache.getRotationOffset(ele); x = off.x; y = off.y; } else { x = x1; y = y1; } var oldGlobalAlpha; if (opacity !== 1) { oldGlobalAlpha = context.globalAlpha; context.globalAlpha = oldGlobalAlpha * opacity; } context.drawImage(eleCache.texture.canvas, eleCache.x, 0, eleCache.width, eleCache.height, x, y, w, h); if (opacity !== 1) { context.globalAlpha = oldGlobalAlpha; } if (theta !== 0) { context.rotate(-theta); context.translate(-sx, -sy); if (!smooth) { r.setImgSmoothing(context, false); } } } else { eleTxrCache.drawElement(context, ele); // direct draw fallback } }; var getZeroRotation = function getZeroRotation() { return 0; }; var getLabelRotation = function getLabelRotation(r, ele) { return r.getTextAngle(ele, null); }; var getSourceLabelRotation = function getSourceLabelRotation(r, ele) { return r.getTextAngle(ele, 'source'); }; var getTargetLabelRotation = function getTargetLabelRotation(r, ele) { return r.getTextAngle(ele, 'target'); }; var getOpacity = function getOpacity(r, ele) { return ele.effectiveOpacity(); }; var getTextOpacity = function getTextOpacity(e, ele) { return ele.pstyle('text-opacity').pfValue * ele.effectiveOpacity(); }; CRp$9.drawCachedElement = function (context, ele, pxRatio, extent, lvl, requestHighQuality) { var r = this; var _r$data = r.data, eleTxrCache = _r$data.eleTxrCache, lblTxrCache = _r$data.lblTxrCache, slbTxrCache = _r$data.slbTxrCache, tlbTxrCache = _r$data.tlbTxrCache; var bb = ele.boundingBox(); var reason = requestHighQuality === true ? eleTxrCache.reasons.highQuality : null; if (bb.w === 0 || bb.h === 0 || !ele.visible()) { return; } if (!extent || boundingBoxesIntersect(bb, extent)) { var isEdge = ele.isEdge(); var badLine = ele.element()._private.rscratch.badLine; r.drawElementUnderlay(context, ele); r.drawCachedElementPortion(context, ele, eleTxrCache, pxRatio, lvl, reason, getZeroRotation, getOpacity); if (!isEdge || !badLine) { r.drawCachedElementPortion(context, ele, lblTxrCache, pxRatio, lvl, reason, getLabelRotation, getTextOpacity); } if (isEdge && !badLine) { r.drawCachedElementPortion(context, ele, slbTxrCache, pxRatio, lvl, reason, getSourceLabelRotation, getTextOpacity); r.drawCachedElementPortion(context, ele, tlbTxrCache, pxRatio, lvl, reason, getTargetLabelRotation, getTextOpacity); } r.drawElementOverlay(context, ele); } }; CRp$9.drawElements = function (context, eles) { var r = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; r.drawElement(context, ele); } }; CRp$9.drawCachedElements = function (context, eles, pxRatio, extent) { var r = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; r.drawCachedElement(context, ele, pxRatio, extent); } }; CRp$9.drawCachedNodes = function (context, eles, pxRatio, extent) { var r = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; if (!ele.isNode()) { continue; } r.drawCachedElement(context, ele, pxRatio, extent); } }; CRp$9.drawLayeredElements = function (context, eles, pxRatio, extent) { var r = this; var layers = r.data.lyrTxrCache.getLayers(eles, pxRatio); if (layers) { for (var i = 0; i < layers.length; i++) { var layer = layers[i]; var bb = layer.bb; if (bb.w === 0 || bb.h === 0) { continue; } context.drawImage(layer.canvas, bb.x1, bb.y1, bb.w, bb.h); } } else { // fall back on plain caching if no layers r.drawCachedElements(context, eles, pxRatio, extent); } }; var CRp$8 = {}; CRp$8.drawEdge = function (context, edge, shiftToOriginWithBb) { var drawLabel = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true; var shouldDrawOverlay = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true; var shouldDrawOpacity = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : true; var r = this; var rs = edge._private.rscratch; if (shouldDrawOpacity && !edge.visible()) { return; } // if bezier ctrl pts can not be calculated, then die if (rs.badLine || rs.allpts == null || isNaN(rs.allpts[0])) { // isNaN in case edge is impossible and browser bugs (e.g. safari) return; } var bb; if (shiftToOriginWithBb) { bb = shiftToOriginWithBb; context.translate(-bb.x1, -bb.y1); } var opacity = shouldDrawOpacity ? edge.pstyle('opacity').value : 1; var lineOpacity = shouldDrawOpacity ? edge.pstyle('line-opacity').value : 1; var curveStyle = edge.pstyle('curve-style').value; var lineStyle = edge.pstyle('line-style').value; var edgeWidth = edge.pstyle('width').pfValue; var lineCap = edge.pstyle('line-cap').value; var effectiveLineOpacity = opacity * lineOpacity; // separate arrow opacity would require arrow-opacity property var effectiveArrowOpacity = opacity * lineOpacity; var drawLine = function drawLine() { var strokeOpacity = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : effectiveLineOpacity; if (curveStyle === 'straight-triangle') { r.eleStrokeStyle(context, edge, strokeOpacity); r.drawEdgeTrianglePath(edge, context, rs.allpts); } else { context.lineWidth = edgeWidth; context.lineCap = lineCap; r.eleStrokeStyle(context, edge, strokeOpacity); r.drawEdgePath(edge, context, rs.allpts, lineStyle); context.lineCap = 'butt'; // reset for other drawing functions } }; var drawOverlay = function drawOverlay() { if (!shouldDrawOverlay) { return; } r.drawEdgeOverlay(context, edge); }; var drawUnderlay = function drawUnderlay() { if (!shouldDrawOverlay) { return; } r.drawEdgeUnderlay(context, edge); }; var drawArrows = function drawArrows() { var arrowOpacity = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : effectiveArrowOpacity; r.drawArrowheads(context, edge, arrowOpacity); }; var drawText = function drawText() { r.drawElementText(context, edge, null, drawLabel); }; context.lineJoin = 'round'; var ghost = edge.pstyle('ghost').value === 'yes'; if (ghost) { var gx = edge.pstyle('ghost-offset-x').pfValue; var gy = edge.pstyle('ghost-offset-y').pfValue; var ghostOpacity = edge.pstyle('ghost-opacity').value; var effectiveGhostOpacity = effectiveLineOpacity * ghostOpacity; context.translate(gx, gy); drawLine(effectiveGhostOpacity); drawArrows(effectiveGhostOpacity); context.translate(-gx, -gy); } drawUnderlay(); drawLine(); drawArrows(); drawOverlay(); drawText(); if (shiftToOriginWithBb) { context.translate(bb.x1, bb.y1); } }; var drawEdgeOverlayUnderlay = function drawEdgeOverlayUnderlay(overlayOrUnderlay) { if (!['overlay', 'underlay'].includes(overlayOrUnderlay)) { throw new Error('Invalid state'); } return function (context, edge) { if (!edge.visible()) { return; } var opacity = edge.pstyle("".concat(overlayOrUnderlay, "-opacity")).value; if (opacity === 0) { return; } var r = this; var usePaths = r.usePaths(); var rs = edge._private.rscratch; var padding = edge.pstyle("".concat(overlayOrUnderlay, "-padding")).pfValue; var width = 2 * padding; var color = edge.pstyle("".concat(overlayOrUnderlay, "-color")).value; context.lineWidth = width; if (rs.edgeType === 'self' && !usePaths) { context.lineCap = 'butt'; } else { context.lineCap = 'round'; } r.colorStrokeStyle(context, color[0], color[1], color[2], opacity); r.drawEdgePath(edge, context, rs.allpts, 'solid'); }; }; CRp$8.drawEdgeOverlay = drawEdgeOverlayUnderlay('overlay'); CRp$8.drawEdgeUnderlay = drawEdgeOverlayUnderlay('underlay'); CRp$8.drawEdgePath = function (edge, context, pts, type) { var rs = edge._private.rscratch; var canvasCxt = context; var path; var pathCacheHit = false; var usePaths = this.usePaths(); var lineDashPattern = edge.pstyle('line-dash-pattern').pfValue; var lineDashOffset = edge.pstyle('line-dash-offset').pfValue; if (usePaths) { var pathCacheKey = pts.join('$'); var keyMatches = rs.pathCacheKey && rs.pathCacheKey === pathCacheKey; if (keyMatches) { path = context = rs.pathCache; pathCacheHit = true; } else { path = context = new Path2D(); rs.pathCacheKey = pathCacheKey; rs.pathCache = path; } } if (canvasCxt.setLineDash) { // for very outofdate browsers switch (type) { case 'dotted': canvasCxt.setLineDash([1, 1]); break; case 'dashed': canvasCxt.setLineDash(lineDashPattern); canvasCxt.lineDashOffset = lineDashOffset; break; case 'solid': canvasCxt.setLineDash([]); break; } } if (!pathCacheHit && !rs.badLine) { if (context.beginPath) { context.beginPath(); } context.moveTo(pts[0], pts[1]); switch (rs.edgeType) { case 'bezier': case 'self': case 'compound': case 'multibezier': for (var i = 2; i + 3 < pts.length; i += 4) { context.quadraticCurveTo(pts[i], pts[i + 1], pts[i + 2], pts[i + 3]); } break; case 'straight': case 'haystack': for (var _i = 2; _i + 1 < pts.length; _i += 2) { context.lineTo(pts[_i], pts[_i + 1]); } break; case 'segments': if (rs.isRound) { var _iterator = _createForOfIteratorHelper(rs.roundCorners), _step; try { for (_iterator.s(); !(_step = _iterator.n()).done;) { var corner = _step.value; drawPreparedRoundCorner(context, corner); } } catch (err) { _iterator.e(err); } finally { _iterator.f(); } context.lineTo(pts[pts.length - 2], pts[pts.length - 1]); } else { for (var _i2 = 2; _i2 + 1 < pts.length; _i2 += 2) { context.lineTo(pts[_i2], pts[_i2 + 1]); } } break; } } context = canvasCxt; if (usePaths) { context.stroke(path); } else { context.stroke(); } // reset any line dashes if (context.setLineDash) { // for very outofdate browsers context.setLineDash([]); } }; CRp$8.drawEdgeTrianglePath = function (edge, context, pts) { // use line stroke style for triangle fill style context.fillStyle = context.strokeStyle; var edgeWidth = edge.pstyle('width').pfValue; for (var i = 0; i + 1 < pts.length; i += 2) { var vector = [pts[i + 2] - pts[i], pts[i + 3] - pts[i + 1]]; var length = Math.sqrt(vector[0] * vector[0] + vector[1] * vector[1]); var normal = [vector[1] / length, -vector[0] / length]; var triangleHead = [normal[0] * edgeWidth / 2, normal[1] * edgeWidth / 2]; context.beginPath(); context.moveTo(pts[i] - triangleHead[0], pts[i + 1] - triangleHead[1]); context.lineTo(pts[i] + triangleHead[0], pts[i + 1] + triangleHead[1]); context.lineTo(pts[i + 2], pts[i + 3]); context.closePath(); context.fill(); } }; CRp$8.drawArrowheads = function (context, edge, opacity) { var rs = edge._private.rscratch; var isHaystack = rs.edgeType === 'haystack'; if (!isHaystack) { this.drawArrowhead(context, edge, 'source', rs.arrowStartX, rs.arrowStartY, rs.srcArrowAngle, opacity); } this.drawArrowhead(context, edge, 'mid-target', rs.midX, rs.midY, rs.midtgtArrowAngle, opacity); this.drawArrowhead(context, edge, 'mid-source', rs.midX, rs.midY, rs.midsrcArrowAngle, opacity); if (!isHaystack) { this.drawArrowhead(context, edge, 'target', rs.arrowEndX, rs.arrowEndY, rs.tgtArrowAngle, opacity); } }; CRp$8.drawArrowhead = function (context, edge, prefix, x, y, angle, opacity) { if (isNaN(x) || x == null || isNaN(y) || y == null || isNaN(angle) || angle == null) { return; } var self = this; var arrowShape = edge.pstyle(prefix + '-arrow-shape').value; if (arrowShape === 'none') { return; } var arrowClearFill = edge.pstyle(prefix + '-arrow-fill').value === 'hollow' ? 'both' : 'filled'; var arrowFill = edge.pstyle(prefix + '-arrow-fill').value; var edgeWidth = edge.pstyle('width').pfValue; var pArrowWidth = edge.pstyle(prefix + '-arrow-width'); var arrowWidth = pArrowWidth.value === 'match-line' ? edgeWidth : pArrowWidth.pfValue; if (pArrowWidth.units === '%') arrowWidth *= edgeWidth; var edgeOpacity = edge.pstyle('opacity').value; if (opacity === undefined) { opacity = edgeOpacity; } var gco = context.globalCompositeOperation; if (opacity !== 1 || arrowFill === 'hollow') { // then extra clear is needed context.globalCompositeOperation = 'destination-out'; self.colorFillStyle(context, 255, 255, 255, 1); self.colorStrokeStyle(context, 255, 255, 255, 1); self.drawArrowShape(edge, context, arrowClearFill, edgeWidth, arrowShape, arrowWidth, x, y, angle); context.globalCompositeOperation = gco; } // otherwise, the opaque arrow clears it for free :) var color = edge.pstyle(prefix + '-arrow-color').value; self.colorFillStyle(context, color[0], color[1], color[2], opacity); self.colorStrokeStyle(context, color[0], color[1], color[2], opacity); self.drawArrowShape(edge, context, arrowFill, edgeWidth, arrowShape, arrowWidth, x, y, angle); }; CRp$8.drawArrowShape = function (edge, context, fill, edgeWidth, shape, shapeWidth, x, y, angle) { var r = this; var usePaths = this.usePaths() && shape !== 'triangle-cross'; var pathCacheHit = false; var path; var canvasContext = context; var translation = { x: x, y: y }; var scale = edge.pstyle('arrow-scale').value; var size = this.getArrowWidth(edgeWidth, scale); var shapeImpl = r.arrowShapes[shape]; if (usePaths) { var cache = r.arrowPathCache = r.arrowPathCache || []; var key = hashString(shape); var cachedPath = cache[key]; if (cachedPath != null) { path = context = cachedPath; pathCacheHit = true; } else { path = context = new Path2D(); cache[key] = path; } } if (!pathCacheHit) { if (context.beginPath) { context.beginPath(); } if (usePaths) { // store in the path cache with values easily manipulated later shapeImpl.draw(context, 1, 0, { x: 0, y: 0 }, 1); } else { shapeImpl.draw(context, size, angle, translation, edgeWidth); } if (context.closePath) { context.closePath(); } } context = canvasContext; if (usePaths) { // set transform to arrow position/orientation context.translate(x, y); context.rotate(angle); context.scale(size, size); } if (fill === 'filled' || fill === 'both') { if (usePaths) { context.fill(path); } else { context.fill(); } } if (fill === 'hollow' || fill === 'both') { context.lineWidth = shapeWidth / (usePaths ? size : 1); context.lineJoin = 'miter'; if (usePaths) { context.stroke(path); } else { context.stroke(); } } if (usePaths) { // reset transform by applying inverse context.scale(1 / size, 1 / size); context.rotate(-angle); context.translate(-x, -y); } }; var CRp$7 = {}; CRp$7.safeDrawImage = function (context, img, ix, iy, iw, ih, x, y, w, h) { // detect problematic cases for old browsers with bad images (cheaper than try-catch) if (iw <= 0 || ih <= 0 || w <= 0 || h <= 0) { return; } try { context.drawImage(img, ix, iy, iw, ih, x, y, w, h); } catch (e) { warn(e); } }; CRp$7.drawInscribedImage = function (context, img, node, index, nodeOpacity) { var r = this; var pos = node.position(); var nodeX = pos.x; var nodeY = pos.y; var styleObj = node.cy().style(); var getIndexedStyle = styleObj.getIndexedStyle.bind(styleObj); var fit = getIndexedStyle(node, 'background-fit', 'value', index); var repeat = getIndexedStyle(node, 'background-repeat', 'value', index); var nodeW = node.width(); var nodeH = node.height(); var paddingX2 = node.padding() * 2; var nodeTW = nodeW + (getIndexedStyle(node, 'background-width-relative-to', 'value', index) === 'inner' ? 0 : paddingX2); var nodeTH = nodeH + (getIndexedStyle(node, 'background-height-relative-to', 'value', index) === 'inner' ? 0 : paddingX2); var rs = node._private.rscratch; var clip = getIndexedStyle(node, 'background-clip', 'value', index); var shouldClip = clip === 'node'; var imgOpacity = getIndexedStyle(node, 'background-image-opacity', 'value', index) * nodeOpacity; var smooth = getIndexedStyle(node, 'background-image-smoothing', 'value', index); var cornerRadius = node.pstyle('corner-radius').value; if (cornerRadius !== 'auto') cornerRadius = node.pstyle('corner-radius').pfValue; var imgW = img.width || img.cachedW; var imgH = img.height || img.cachedH; // workaround for broken browsers like ie if (null == imgW || null == imgH) { document.body.appendChild(img); // eslint-disable-line no-undef imgW = img.cachedW = img.width || img.offsetWidth; imgH = img.cachedH = img.height || img.offsetHeight; document.body.removeChild(img); // eslint-disable-line no-undef } var w = imgW; var h = imgH; if (getIndexedStyle(node, 'background-width', 'value', index) !== 'auto') { if (getIndexedStyle(node, 'background-width', 'units', index) === '%') { w = getIndexedStyle(node, 'background-width', 'pfValue', index) * nodeTW; } else { w = getIndexedStyle(node, 'background-width', 'pfValue', index); } } if (getIndexedStyle(node, 'background-height', 'value', index) !== 'auto') { if (getIndexedStyle(node, 'background-height', 'units', index) === '%') { h = getIndexedStyle(node, 'background-height', 'pfValue', index) * nodeTH; } else { h = getIndexedStyle(node, 'background-height', 'pfValue', index); } } if (w === 0 || h === 0) { return; // no point in drawing empty image (and chrome is broken in this case) } if (fit === 'contain') { var scale = Math.min(nodeTW / w, nodeTH / h); w *= scale; h *= scale; } else if (fit === 'cover') { var scale = Math.max(nodeTW / w, nodeTH / h); w *= scale; h *= scale; } var x = nodeX - nodeTW / 2; // left var posXUnits = getIndexedStyle(node, 'background-position-x', 'units', index); var posXPfVal = getIndexedStyle(node, 'background-position-x', 'pfValue', index); if (posXUnits === '%') { x += (nodeTW - w) * posXPfVal; } else { x += posXPfVal; } var offXUnits = getIndexedStyle(node, 'background-offset-x', 'units', index); var offXPfVal = getIndexedStyle(node, 'background-offset-x', 'pfValue', index); if (offXUnits === '%') { x += (nodeTW - w) * offXPfVal; } else { x += offXPfVal; } var y = nodeY - nodeTH / 2; // top var posYUnits = getIndexedStyle(node, 'background-position-y', 'units', index); var posYPfVal = getIndexedStyle(node, 'background-position-y', 'pfValue', index); if (posYUnits === '%') { y += (nodeTH - h) * posYPfVal; } else { y += posYPfVal; } var offYUnits = getIndexedStyle(node, 'background-offset-y', 'units', index); var offYPfVal = getIndexedStyle(node, 'background-offset-y', 'pfValue', index); if (offYUnits === '%') { y += (nodeTH - h) * offYPfVal; } else { y += offYPfVal; } if (rs.pathCache) { x -= nodeX; y -= nodeY; nodeX = 0; nodeY = 0; } var gAlpha = context.globalAlpha; context.globalAlpha = imgOpacity; var smoothingEnabled = r.getImgSmoothing(context); var isSmoothingSwitched = false; if (smooth === 'no' && smoothingEnabled) { r.setImgSmoothing(context, false); isSmoothingSwitched = true; } else if (smooth === 'yes' && !smoothingEnabled) { r.setImgSmoothing(context, true); isSmoothingSwitched = true; } if (repeat === 'no-repeat') { if (shouldClip) { context.save(); if (rs.pathCache) { context.clip(rs.pathCache); } else { r.nodeShapes[r.getNodeShape(node)].draw(context, nodeX, nodeY, nodeTW, nodeTH, cornerRadius, rs); context.clip(); } } r.safeDrawImage(context, img, 0, 0, imgW, imgH, x, y, w, h); if (shouldClip) { context.restore(); } } else { var pattern = context.createPattern(img, repeat); context.fillStyle = pattern; r.nodeShapes[r.getNodeShape(node)].draw(context, nodeX, nodeY, nodeTW, nodeTH, cornerRadius, rs); context.translate(x, y); context.fill(); context.translate(-x, -y); } context.globalAlpha = gAlpha; if (isSmoothingSwitched) { r.setImgSmoothing(context, smoothingEnabled); } }; var CRp$6 = {}; CRp$6.eleTextBiggerThanMin = function (ele, scale) { if (!scale) { var zoom = ele.cy().zoom(); var pxRatio = this.getPixelRatio(); var lvl = Math.ceil(log2(zoom * pxRatio)); // the effective texture level scale = Math.pow(2, lvl); } var computedSize = ele.pstyle('font-size').pfValue * scale; var minSize = ele.pstyle('min-zoomed-font-size').pfValue; if (computedSize < minSize) { return false; } return true; }; CRp$6.drawElementText = function (context, ele, shiftToOriginWithBb, force, prefix) { var useEleOpacity = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : true; var r = this; if (force == null) { if (useEleOpacity && !r.eleTextBiggerThanMin(ele)) { return; } } else if (force === false) { return; } if (ele.isNode()) { var label = ele.pstyle('label'); if (!label || !label.value) { return; } var justification = r.getLabelJustification(ele); context.textAlign = justification; context.textBaseline = 'bottom'; } else { var badLine = ele.element()._private.rscratch.badLine; var _label = ele.pstyle('label'); var srcLabel = ele.pstyle('source-label'); var tgtLabel = ele.pstyle('target-label'); if (badLine || (!_label || !_label.value) && (!srcLabel || !srcLabel.value) && (!tgtLabel || !tgtLabel.value)) { return; } context.textAlign = 'center'; context.textBaseline = 'bottom'; } var applyRotation = !shiftToOriginWithBb; var bb; if (shiftToOriginWithBb) { bb = shiftToOriginWithBb; context.translate(-bb.x1, -bb.y1); } if (prefix == null) { r.drawText(context, ele, null, applyRotation, useEleOpacity); if (ele.isEdge()) { r.drawText(context, ele, 'source', applyRotation, useEleOpacity); r.drawText(context, ele, 'target', applyRotation, useEleOpacity); } } else { r.drawText(context, ele, prefix, applyRotation, useEleOpacity); } if (shiftToOriginWithBb) { context.translate(bb.x1, bb.y1); } }; CRp$6.getFontCache = function (context) { var cache; this.fontCaches = this.fontCaches || []; for (var i = 0; i < this.fontCaches.length; i++) { cache = this.fontCaches[i]; if (cache.context === context) { return cache; } } cache = { context: context }; this.fontCaches.push(cache); return cache; }; // set up canvas context with font // returns transformed text string CRp$6.setupTextStyle = function (context, ele) { var useEleOpacity = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true; // Font style var labelStyle = ele.pstyle('font-style').strValue; var labelSize = ele.pstyle('font-size').pfValue + 'px'; var labelFamily = ele.pstyle('font-family').strValue; var labelWeight = ele.pstyle('font-weight').strValue; var opacity = useEleOpacity ? ele.effectiveOpacity() * ele.pstyle('text-opacity').value : 1; var outlineOpacity = ele.pstyle('text-outline-opacity').value * opacity; var color = ele.pstyle('color').value; var outlineColor = ele.pstyle('text-outline-color').value; context.font = labelStyle + ' ' + labelWeight + ' ' + labelSize + ' ' + labelFamily; context.lineJoin = 'round'; // so text outlines aren't jagged this.colorFillStyle(context, color[0], color[1], color[2], opacity); this.colorStrokeStyle(context, outlineColor[0], outlineColor[1], outlineColor[2], outlineOpacity); }; // TODO ensure re-used function roundRect(ctx, x, y, width, height) { var radius = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : 5; var stroke = arguments.length > 6 ? arguments[6] : undefined; ctx.beginPath(); ctx.moveTo(x + radius, y); ctx.lineTo(x + width - radius, y); ctx.quadraticCurveTo(x + width, y, x + width, y + radius); ctx.lineTo(x + width, y + height - radius); ctx.quadraticCurveTo(x + width, y + height, x + width - radius, y + height); ctx.lineTo(x + radius, y + height); ctx.quadraticCurveTo(x, y + height, x, y + height - radius); ctx.lineTo(x, y + radius); ctx.quadraticCurveTo(x, y, x + radius, y); ctx.closePath(); if (stroke) ctx.stroke();else ctx.fill(); } CRp$6.getTextAngle = function (ele, prefix) { var theta; var _p = ele._private; var rscratch = _p.rscratch; var pdash = prefix ? prefix + '-' : ''; var rotation = ele.pstyle(pdash + 'text-rotation'); var textAngle = getPrefixedProperty(rscratch, 'labelAngle', prefix); if (rotation.strValue === 'autorotate') { theta = ele.isEdge() ? textAngle : 0; } else if (rotation.strValue === 'none') { theta = 0; } else { theta = rotation.pfValue; } return theta; }; CRp$6.drawText = function (context, ele, prefix) { var applyRotation = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true; var useEleOpacity = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true; var _p = ele._private; var rscratch = _p.rscratch; var parentOpacity = useEleOpacity ? ele.effectiveOpacity() : 1; if (useEleOpacity && (parentOpacity === 0 || ele.pstyle('text-opacity').value === 0)) { return; } // use 'main' as an alias for the main label (i.e. null prefix) if (prefix === 'main') { prefix = null; } var textX = getPrefixedProperty(rscratch, 'labelX', prefix); var textY = getPrefixedProperty(rscratch, 'labelY', prefix); var orgTextX, orgTextY; // used for rotation var text = this.getLabelText(ele, prefix); if (text != null && text !== '' && !isNaN(textX) && !isNaN(textY)) { this.setupTextStyle(context, ele, useEleOpacity); var pdash = prefix ? prefix + '-' : ''; var textW = getPrefixedProperty(rscratch, 'labelWidth', prefix); var textH = getPrefixedProperty(rscratch, 'labelHeight', prefix); var marginX = ele.pstyle(pdash + 'text-margin-x').pfValue; var marginY = ele.pstyle(pdash + 'text-margin-y').pfValue; var isEdge = ele.isEdge(); var halign = ele.pstyle('text-halign').value; var valign = ele.pstyle('text-valign').value; if (isEdge) { halign = 'center'; valign = 'center'; } textX += marginX; textY += marginY; var theta; if (!applyRotation) { theta = 0; } else { theta = this.getTextAngle(ele, prefix); } if (theta !== 0) { orgTextX = textX; orgTextY = textY; context.translate(orgTextX, orgTextY); context.rotate(theta); textX = 0; textY = 0; } switch (valign) { case 'top': break; case 'center': textY += textH / 2; break; case 'bottom': textY += textH; break; } var backgroundOpacity = ele.pstyle('text-background-opacity').value; var borderOpacity = ele.pstyle('text-border-opacity').value; var textBorderWidth = ele.pstyle('text-border-width').pfValue; var backgroundPadding = ele.pstyle('text-background-padding').pfValue; var styleShape = ele.pstyle('text-background-shape').strValue; var rounded = styleShape.indexOf('round') === 0; var roundRadius = 2; if (backgroundOpacity > 0 || textBorderWidth > 0 && borderOpacity > 0) { var bgX = textX - backgroundPadding; switch (halign) { case 'left': bgX -= textW; break; case 'center': bgX -= textW / 2; break; } var bgY = textY - textH - backgroundPadding; var bgW = textW + 2 * backgroundPadding; var bgH = textH + 2 * backgroundPadding; if (backgroundOpacity > 0) { var textFill = context.fillStyle; var textBackgroundColor = ele.pstyle('text-background-color').value; context.fillStyle = 'rgba(' + textBackgroundColor[0] + ',' + textBackgroundColor[1] + ',' + textBackgroundColor[2] + ',' + backgroundOpacity * parentOpacity + ')'; if (rounded) { roundRect(context, bgX, bgY, bgW, bgH, roundRadius); } else { context.fillRect(bgX, bgY, bgW, bgH); } context.fillStyle = textFill; } if (textBorderWidth > 0 && borderOpacity > 0) { var textStroke = context.strokeStyle; var textLineWidth = context.lineWidth; var textBorderColor = ele.pstyle('text-border-color').value; var textBorderStyle = ele.pstyle('text-border-style').value; context.strokeStyle = 'rgba(' + textBorderColor[0] + ',' + textBorderColor[1] + ',' + textBorderColor[2] + ',' + borderOpacity * parentOpacity + ')'; context.lineWidth = textBorderWidth; if (context.setLineDash) { // for very outofdate browsers switch (textBorderStyle) { case 'dotted': context.setLineDash([1, 1]); break; case 'dashed': context.setLineDash([4, 2]); break; case 'double': context.lineWidth = textBorderWidth / 4; // 50% reserved for white between the two borders context.setLineDash([]); break; case 'solid': context.setLineDash([]); break; } } if (rounded) { roundRect(context, bgX, bgY, bgW, bgH, roundRadius, 'stroke'); } else { context.strokeRect(bgX, bgY, bgW, bgH); } if (textBorderStyle === 'double') { var whiteWidth = textBorderWidth / 2; if (rounded) { roundRect(context, bgX + whiteWidth, bgY + whiteWidth, bgW - whiteWidth * 2, bgH - whiteWidth * 2, roundRadius, 'stroke'); } else { context.strokeRect(bgX + whiteWidth, bgY + whiteWidth, bgW - whiteWidth * 2, bgH - whiteWidth * 2); } } if (context.setLineDash) { // for very outofdate browsers context.setLineDash([]); } context.lineWidth = textLineWidth; context.strokeStyle = textStroke; } } var lineWidth = 2 * ele.pstyle('text-outline-width').pfValue; // *2 b/c the stroke is drawn centred on the middle if (lineWidth > 0) { context.lineWidth = lineWidth; } if (ele.pstyle('text-wrap').value === 'wrap') { var lines = getPrefixedProperty(rscratch, 'labelWrapCachedLines', prefix); var lineHeight = getPrefixedProperty(rscratch, 'labelLineHeight', prefix); var halfTextW = textW / 2; var justification = this.getLabelJustification(ele); if (justification === 'auto') ; else if (halign === 'left') { // auto justification : right if (justification === 'left') { textX += -textW; } else if (justification === 'center') { textX += -halfTextW; } // else same as auto } else if (halign === 'center') { // auto justfication : center if (justification === 'left') { textX += -halfTextW; } else if (justification === 'right') { textX += halfTextW; } // else same as auto } else if (halign === 'right') { // auto justification : left if (justification === 'center') { textX += halfTextW; } else if (justification === 'right') { textX += textW; } // else same as auto } switch (valign) { case 'top': textY -= (lines.length - 1) * lineHeight; break; case 'center': case 'bottom': textY -= (lines.length - 1) * lineHeight; break; } for (var l = 0; l < lines.length; l++) { if (lineWidth > 0) { context.strokeText(lines[l], textX, textY); } context.fillText(lines[l], textX, textY); textY += lineHeight; } } else { if (lineWidth > 0) { context.strokeText(text, textX, textY); } context.fillText(text, textX, textY); } if (theta !== 0) { context.rotate(-theta); context.translate(-orgTextX, -orgTextY); } } }; /* global Path2D */ var CRp$5 = {}; CRp$5.drawNode = function (context, node, shiftToOriginWithBb) { var drawLabel = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true; var shouldDrawOverlay = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true; var shouldDrawOpacity = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : true; var r = this; var nodeWidth, nodeHeight; var _p = node._private; var rs = _p.rscratch; var pos = node.position(); if (!number$1(pos.x) || !number$1(pos.y)) { return; // can't draw node with undefined position } if (shouldDrawOpacity && !node.visible()) { return; } var eleOpacity = shouldDrawOpacity ? node.effectiveOpacity() : 1; var usePaths = r.usePaths(); var path; var pathCacheHit = false; var padding = node.padding(); nodeWidth = node.width() + 2 * padding; nodeHeight = node.height() + 2 * padding; // // setup shift var bb; if (shiftToOriginWithBb) { bb = shiftToOriginWithBb; context.translate(-bb.x1, -bb.y1); } // // load bg image var bgImgProp = node.pstyle('background-image'); var urls = bgImgProp.value; var urlDefined = new Array(urls.length); var image = new Array(urls.length); var numImages = 0; for (var i = 0; i < urls.length; i++) { var url = urls[i]; var defd = urlDefined[i] = url != null && url !== 'none'; if (defd) { var bgImgCrossOrigin = node.cy().style().getIndexedStyle(node, 'background-image-crossorigin', 'value', i); numImages++; // get image, and if not loaded then ask to redraw when later loaded image[i] = r.getCachedImage(url, bgImgCrossOrigin, function () { _p.backgroundTimestamp = Date.now(); node.emitAndNotify('background'); }); } } // // setup styles var darkness = node.pstyle('background-blacken').value; var borderWidth = node.pstyle('border-width').pfValue; var bgOpacity = node.pstyle('background-opacity').value * eleOpacity; var borderColor = node.pstyle('border-color').value; var borderStyle = node.pstyle('border-style').value; var borderJoin = node.pstyle('border-join').value; var borderCap = node.pstyle('border-cap').value; var borderPosition = node.pstyle('border-position').value; var borderPattern = node.pstyle('border-dash-pattern').pfValue; var borderOffset = node.pstyle('border-dash-offset').pfValue; var borderOpacity = node.pstyle('border-opacity').value * eleOpacity; var outlineWidth = node.pstyle('outline-width').pfValue; var outlineColor = node.pstyle('outline-color').value; var outlineStyle = node.pstyle('outline-style').value; var outlineOpacity = node.pstyle('outline-opacity').value * eleOpacity; var outlineOffset = node.pstyle('outline-offset').value; var cornerRadius = node.pstyle('corner-radius').value; if (cornerRadius !== 'auto') cornerRadius = node.pstyle('corner-radius').pfValue; var setupShapeColor = function setupShapeColor() { var bgOpy = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : bgOpacity; r.eleFillStyle(context, node, bgOpy); }; var setupBorderColor = function setupBorderColor() { var bdrOpy = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : borderOpacity; r.colorStrokeStyle(context, borderColor[0], borderColor[1], borderColor[2], bdrOpy); }; var setupOutlineColor = function setupOutlineColor() { var otlnOpy = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : outlineOpacity; r.colorStrokeStyle(context, outlineColor[0], outlineColor[1], outlineColor[2], otlnOpy); }; // // setup shape var getPath = function getPath(width, height, shape, points) { var pathCache = r.nodePathCache = r.nodePathCache || []; var key = hashStrings(shape === 'polygon' ? shape + ',' + points.join(',') : shape, '' + height, '' + width, '' + cornerRadius); var cachedPath = pathCache[key]; var path; var cacheHit = false; if (cachedPath != null) { path = cachedPath; cacheHit = true; rs.pathCache = path; } else { path = new Path2D(); pathCache[key] = rs.pathCache = path; } return { path: path, cacheHit: cacheHit }; }; var styleShape = node.pstyle('shape').strValue; var shapePts = node.pstyle('shape-polygon-points').pfValue; if (usePaths) { context.translate(pos.x, pos.y); var shapePath = getPath(nodeWidth, nodeHeight, styleShape, shapePts); path = shapePath.path; pathCacheHit = shapePath.cacheHit; } var drawShape = function drawShape() { if (!pathCacheHit) { var npos = pos; if (usePaths) { npos = { x: 0, y: 0 }; } r.nodeShapes[r.getNodeShape(node)].draw(path || context, npos.x, npos.y, nodeWidth, nodeHeight, cornerRadius, rs); } if (usePaths) { context.fill(path); } else { context.fill(); } }; var drawImages = function drawImages() { var nodeOpacity = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : eleOpacity; var inside = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; var prevBging = _p.backgrounding; var totalCompleted = 0; for (var _i = 0; _i < image.length; _i++) { var bgContainment = node.cy().style().getIndexedStyle(node, 'background-image-containment', 'value', _i); if (inside && bgContainment === 'over' || !inside && bgContainment === 'inside') { totalCompleted++; continue; } if (urlDefined[_i] && image[_i].complete && !image[_i].error) { totalCompleted++; r.drawInscribedImage(context, image[_i], node, _i, nodeOpacity); } } _p.backgrounding = !(totalCompleted === numImages); if (prevBging !== _p.backgrounding) { // update style b/c :backgrounding state changed node.updateStyle(false); } }; var drawPie = function drawPie() { var redrawShape = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false; var pieOpacity = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : eleOpacity; if (r.hasPie(node)) { r.drawPie(context, node, pieOpacity); // redraw/restore path if steps after pie need it if (redrawShape) { if (!usePaths) { r.nodeShapes[r.getNodeShape(node)].draw(context, pos.x, pos.y, nodeWidth, nodeHeight, cornerRadius, rs); } } } }; var darken = function darken() { var darkenOpacity = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : eleOpacity; var opacity = (darkness > 0 ? darkness : -darkness) * darkenOpacity; var c = darkness > 0 ? 0 : 255; if (darkness !== 0) { r.colorFillStyle(context, c, c, c, opacity); if (usePaths) { context.fill(path); } else { context.fill(); } } }; var drawBorder = function drawBorder() { if (borderWidth > 0) { context.lineWidth = borderWidth; context.lineCap = borderCap; context.lineJoin = borderJoin; if (context.setLineDash) { // for very outofdate browsers switch (borderStyle) { case 'dotted': context.setLineDash([1, 1]); break; case 'dashed': context.setLineDash(borderPattern); context.lineDashOffset = borderOffset; break; case 'solid': case 'double': context.setLineDash([]); break; } } if (borderPosition !== 'center') { context.save(); context.lineWidth *= 2; if (borderPosition === 'inside') { usePaths ? context.clip(path) : context.clip(); } else { var region = new Path2D(); region.rect(-nodeWidth / 2 - borderWidth, -nodeHeight / 2 - borderWidth, nodeWidth + 2 * borderWidth, nodeHeight + 2 * borderWidth); region.addPath(path); context.clip(region, 'evenodd'); } usePaths ? context.stroke(path) : context.stroke(); context.restore(); } else { usePaths ? context.stroke(path) : context.stroke(); } if (borderStyle === 'double') { context.lineWidth = borderWidth / 3; var gco = context.globalCompositeOperation; context.globalCompositeOperation = 'destination-out'; if (usePaths) { context.stroke(path); } else { context.stroke(); } context.globalCompositeOperation = gco; } // reset in case we changed the border style if (context.setLineDash) { // for very outofdate browsers context.setLineDash([]); } } }; var drawOutline = function drawOutline() { if (outlineWidth > 0) { context.lineWidth = outlineWidth; context.lineCap = 'butt'; if (context.setLineDash) { // for very outofdate browsers switch (outlineStyle) { case 'dotted': context.setLineDash([1, 1]); break; case 'dashed': context.setLineDash([4, 2]); break; case 'solid': case 'double': context.setLineDash([]); break; } } var npos = pos; if (usePaths) { npos = { x: 0, y: 0 }; } var shape = r.getNodeShape(node); var bWidth = borderWidth; if (borderPosition === 'inside') bWidth = 0; if (borderPosition === 'outside') bWidth *= 2; var scaleX = (nodeWidth + bWidth + (outlineWidth + outlineOffset)) / nodeWidth; var scaleY = (nodeHeight + bWidth + (outlineWidth + outlineOffset)) / nodeHeight; var sWidth = nodeWidth * scaleX; var sHeight = nodeHeight * scaleY; var points = r.nodeShapes[shape].points; var _path; if (usePaths) { var outlinePath = getPath(sWidth, sHeight, shape, points); _path = outlinePath.path; } // draw the outline path, either by using expanded points or by scaling // the dimensions, depending on shape if (shape === "ellipse") { r.drawEllipsePath(_path || context, npos.x, npos.y, sWidth, sHeight); } else if (['round-diamond', 'round-heptagon', 'round-hexagon', 'round-octagon', 'round-pentagon', 'round-polygon', 'round-triangle', 'round-tag'].includes(shape)) { var sMult = 0; var offsetX = 0; var offsetY = 0; if (shape === 'round-diamond') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.4; } else if (shape === 'round-heptagon') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.075; offsetY = -(bWidth / 2 + outlineOffset + outlineWidth) / 35; } else if (shape === 'round-hexagon') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.12; } else if (shape === 'round-pentagon') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.13; offsetY = -(bWidth / 2 + outlineOffset + outlineWidth) / 15; } else if (shape === 'round-tag') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.12; offsetX = (bWidth / 2 + outlineWidth + outlineOffset) * .07; } else if (shape === 'round-triangle') { sMult = (bWidth + outlineOffset + outlineWidth) * (Math.PI / 2); offsetY = -(bWidth + outlineOffset / 2 + outlineWidth) / Math.PI; } if (sMult !== 0) { scaleX = (nodeWidth + sMult) / nodeWidth; sWidth = nodeWidth * scaleX; if (!['round-hexagon', 'round-tag'].includes(shape)) { scaleY = (nodeHeight + sMult) / nodeHeight; sHeight = nodeHeight * scaleY; } } cornerRadius = cornerRadius === 'auto' ? getRoundPolygonRadius(sWidth, sHeight) : cornerRadius; var halfW = sWidth / 2; var halfH = sHeight / 2; var radius = cornerRadius + (bWidth + outlineWidth + outlineOffset) / 2; var p = new Array(points.length / 2); var corners = new Array(points.length / 2); for (var _i3 = 0; _i3 < points.length / 2; _i3++) { p[_i3] = { x: npos.x + offsetX + halfW * points[_i3 * 2], y: npos.y + offsetY + halfH * points[_i3 * 2 + 1] }; } var _i2, p1, p2, p3, len = p.length; p1 = p[len - 1]; // for each point for (_i2 = 0; _i2 < len; _i2++) { p2 = p[_i2 % len]; p3 = p[(_i2 + 1) % len]; corners[_i2] = getRoundCorner(p1, p2, p3, radius); p1 = p2; p2 = p3; } r.drawRoundPolygonPath(_path || context, npos.x + offsetX, npos.y + offsetY, nodeWidth * scaleX, nodeHeight * scaleY, points, corners); } else if (['roundrectangle', 'round-rectangle'].includes(shape)) { cornerRadius = cornerRadius === 'auto' ? getRoundRectangleRadius(sWidth, sHeight) : cornerRadius; r.drawRoundRectanglePath(_path || context, npos.x, npos.y, sWidth, sHeight, cornerRadius + (bWidth + outlineWidth + outlineOffset) / 2); } else if (['cutrectangle', 'cut-rectangle'].includes(shape)) { cornerRadius = cornerRadius === 'auto' ? getCutRectangleCornerLength() : cornerRadius; r.drawCutRectanglePath(_path || context, npos.x, npos.y, sWidth, sHeight, null, cornerRadius + (bWidth + outlineWidth + outlineOffset) / 4); } else if (['bottomroundrectangle', 'bottom-round-rectangle'].includes(shape)) { cornerRadius = cornerRadius === 'auto' ? getRoundRectangleRadius(sWidth, sHeight) : cornerRadius; r.drawBottomRoundRectanglePath(_path || context, npos.x, npos.y, sWidth, sHeight, cornerRadius + (bWidth + outlineWidth + outlineOffset) / 2); } else if (shape === "barrel") { r.drawBarrelPath(_path || context, npos.x, npos.y, sWidth, sHeight); } else if (shape.startsWith("polygon") || ['rhomboid', 'right-rhomboid', 'round-tag', 'tag', 'vee'].includes(shape)) { var pad = (bWidth + outlineWidth + outlineOffset) / nodeWidth; points = joinLines(expandPolygon(points, pad)); r.drawPolygonPath(_path || context, npos.x, npos.y, nodeWidth, nodeHeight, points); } else { var _pad = (bWidth + outlineWidth + outlineOffset) / nodeWidth; points = joinLines(expandPolygon(points, -_pad)); r.drawPolygonPath(_path || context, npos.x, npos.y, nodeWidth, nodeHeight, points); } if (usePaths) { context.stroke(_path); } else { context.stroke(); } if (outlineStyle === 'double') { context.lineWidth = bWidth / 3; var gco = context.globalCompositeOperation; context.globalCompositeOperation = 'destination-out'; if (usePaths) { context.stroke(_path); } else { context.stroke(); } context.globalCompositeOperation = gco; } // reset in case we changed the border style if (context.setLineDash) { // for very outofdate browsers context.setLineDash([]); } } }; var drawOverlay = function drawOverlay() { if (shouldDrawOverlay) { r.drawNodeOverlay(context, node, pos, nodeWidth, nodeHeight); } }; var drawUnderlay = function drawUnderlay() { if (shouldDrawOverlay) { r.drawNodeUnderlay(context, node, pos, nodeWidth, nodeHeight); } }; var drawText = function drawText() { r.drawElementText(context, node, null, drawLabel); }; var ghost = node.pstyle('ghost').value === 'yes'; if (ghost) { var gx = node.pstyle('ghost-offset-x').pfValue; var gy = node.pstyle('ghost-offset-y').pfValue; var ghostOpacity = node.pstyle('ghost-opacity').value; var effGhostOpacity = ghostOpacity * eleOpacity; context.translate(gx, gy); setupOutlineColor(); drawOutline(); setupShapeColor(ghostOpacity * bgOpacity); drawShape(); drawImages(effGhostOpacity, true); setupBorderColor(ghostOpacity * borderOpacity); drawBorder(); drawPie(darkness !== 0 || borderWidth !== 0); drawImages(effGhostOpacity, false); darken(effGhostOpacity); context.translate(-gx, -gy); } if (usePaths) { context.translate(-pos.x, -pos.y); } drawUnderlay(); if (usePaths) { context.translate(pos.x, pos.y); } setupOutlineColor(); drawOutline(); setupShapeColor(); drawShape(); drawImages(eleOpacity, true); setupBorderColor(); drawBorder(); drawPie(darkness !== 0 || borderWidth !== 0); drawImages(eleOpacity, false); darken(); if (usePaths) { context.translate(-pos.x, -pos.y); } drawText(); drawOverlay(); // // clean up shift if (shiftToOriginWithBb) { context.translate(bb.x1, bb.y1); } }; var drawNodeOverlayUnderlay = function drawNodeOverlayUnderlay(overlayOrUnderlay) { if (!['overlay', 'underlay'].includes(overlayOrUnderlay)) { throw new Error('Invalid state'); } return function (context, node, pos, nodeWidth, nodeHeight) { var r = this; if (!node.visible()) { return; } var padding = node.pstyle("".concat(overlayOrUnderlay, "-padding")).pfValue; var opacity = node.pstyle("".concat(overlayOrUnderlay, "-opacity")).value; var color = node.pstyle("".concat(overlayOrUnderlay, "-color")).value; var shape = node.pstyle("".concat(overlayOrUnderlay, "-shape")).value; var radius = node.pstyle("".concat(overlayOrUnderlay, "-corner-radius")).value; if (opacity > 0) { pos = pos || node.position(); if (nodeWidth == null || nodeHeight == null) { var _padding = node.padding(); nodeWidth = node.width() + 2 * _padding; nodeHeight = node.height() + 2 * _padding; } r.colorFillStyle(context, color[0], color[1], color[2], opacity); r.nodeShapes[shape].draw(context, pos.x, pos.y, nodeWidth + padding * 2, nodeHeight + padding * 2, radius); context.fill(); } }; }; CRp$5.drawNodeOverlay = drawNodeOverlayUnderlay('overlay'); CRp$5.drawNodeUnderlay = drawNodeOverlayUnderlay('underlay'); // does the node have at least one pie piece? CRp$5.hasPie = function (node) { node = node[0]; // ensure ele ref return node._private.hasPie; }; CRp$5.drawPie = function (context, node, nodeOpacity, pos) { node = node[0]; // ensure ele ref pos = pos || node.position(); var cyStyle = node.cy().style(); var pieSize = node.pstyle('pie-size'); var x = pos.x; var y = pos.y; var nodeW = node.width(); var nodeH = node.height(); var radius = Math.min(nodeW, nodeH) / 2; // must fit in node var lastPercent = 0; // what % to continue drawing pie slices from on [0, 1] var usePaths = this.usePaths(); if (usePaths) { x = 0; y = 0; } if (pieSize.units === '%') { radius = radius * pieSize.pfValue; } else if (pieSize.pfValue !== undefined) { radius = pieSize.pfValue / 2; } for (var i = 1; i <= cyStyle.pieBackgroundN; i++) { // 1..N var size = node.pstyle('pie-' + i + '-background-size').value; var color = node.pstyle('pie-' + i + '-background-color').value; var opacity = node.pstyle('pie-' + i + '-background-opacity').value * nodeOpacity; var percent = size / 100; // map integer range [0, 100] to [0, 1] // percent can't push beyond 1 if (percent + lastPercent > 1) { percent = 1 - lastPercent; } var angleStart = 1.5 * Math.PI + 2 * Math.PI * lastPercent; // start at 12 o'clock and go clockwise var angleDelta = 2 * Math.PI * percent; var angleEnd = angleStart + angleDelta; // ignore if // - zero size // - we're already beyond the full circle // - adding the current slice would go beyond the full circle if (size === 0 || lastPercent >= 1 || lastPercent + percent > 1) { continue; } context.beginPath(); context.moveTo(x, y); context.arc(x, y, radius, angleStart, angleEnd); context.closePath(); this.colorFillStyle(context, color[0], color[1], color[2], opacity); context.fill(); lastPercent += percent; } }; var CRp$4 = {}; var motionBlurDelay = 100; // var isFirefox = typeof InstallTrigger !== 'undefined'; CRp$4.getPixelRatio = function () { var context = this.data.contexts[0]; if (this.forcedPixelRatio != null) { return this.forcedPixelRatio; } var backingStore = context.backingStorePixelRatio || context.webkitBackingStorePixelRatio || context.mozBackingStorePixelRatio || context.msBackingStorePixelRatio || context.oBackingStorePixelRatio || context.backingStorePixelRatio || 1; return (window.devicePixelRatio || 1) / backingStore; // eslint-disable-line no-undef }; CRp$4.paintCache = function (context) { var caches = this.paintCaches = this.paintCaches || []; var needToCreateCache = true; var cache; for (var i = 0; i < caches.length; i++) { cache = caches[i]; if (cache.context === context) { needToCreateCache = false; break; } } if (needToCreateCache) { cache = { context: context }; caches.push(cache); } return cache; }; CRp$4.createGradientStyleFor = function (context, shapeStyleName, ele, fill, opacity) { var gradientStyle; var usePaths = this.usePaths(); var colors = ele.pstyle(shapeStyleName + '-gradient-stop-colors').value, positions = ele.pstyle(shapeStyleName + '-gradient-stop-positions').pfValue; if (fill === 'radial-gradient') { if (ele.isEdge()) { var start = ele.sourceEndpoint(), end = ele.targetEndpoint(), mid = ele.midpoint(); var d1 = dist(start, mid); var d2 = dist(end, mid); gradientStyle = context.createRadialGradient(mid.x, mid.y, 0, mid.x, mid.y, Math.max(d1, d2)); } else { var pos = usePaths ? { x: 0, y: 0 } : ele.position(), width = ele.paddedWidth(), height = ele.paddedHeight(); gradientStyle = context.createRadialGradient(pos.x, pos.y, 0, pos.x, pos.y, Math.max(width, height)); } } else { if (ele.isEdge()) { var _start = ele.sourceEndpoint(), _end = ele.targetEndpoint(); gradientStyle = context.createLinearGradient(_start.x, _start.y, _end.x, _end.y); } else { var _pos = usePaths ? { x: 0, y: 0 } : ele.position(), _width = ele.paddedWidth(), _height = ele.paddedHeight(), halfWidth = _width / 2, halfHeight = _height / 2; var direction = ele.pstyle('background-gradient-direction').value; switch (direction) { case 'to-bottom': gradientStyle = context.createLinearGradient(_pos.x, _pos.y - halfHeight, _pos.x, _pos.y + halfHeight); break; case 'to-top': gradientStyle = context.createLinearGradient(_pos.x, _pos.y + halfHeight, _pos.x, _pos.y - halfHeight); break; case 'to-left': gradientStyle = context.createLinearGradient(_pos.x + halfWidth, _pos.y, _pos.x - halfWidth, _pos.y); break; case 'to-right': gradientStyle = context.createLinearGradient(_pos.x - halfWidth, _pos.y, _pos.x + halfWidth, _pos.y); break; case 'to-bottom-right': case 'to-right-bottom': gradientStyle = context.createLinearGradient(_pos.x - halfWidth, _pos.y - halfHeight, _pos.x + halfWidth, _pos.y + halfHeight); break; case 'to-top-right': case 'to-right-top': gradientStyle = context.createLinearGradient(_pos.x - halfWidth, _pos.y + halfHeight, _pos.x + halfWidth, _pos.y - halfHeight); break; case 'to-bottom-left': case 'to-left-bottom': gradientStyle = context.createLinearGradient(_pos.x + halfWidth, _pos.y - halfHeight, _pos.x - halfWidth, _pos.y + halfHeight); break; case 'to-top-left': case 'to-left-top': gradientStyle = context.createLinearGradient(_pos.x + halfWidth, _pos.y + halfHeight, _pos.x - halfWidth, _pos.y - halfHeight); break; } } } if (!gradientStyle) return null; // invalid gradient style var hasPositions = positions.length === colors.length; var length = colors.length; for (var i = 0; i < length; i++) { gradientStyle.addColorStop(hasPositions ? positions[i] : i / (length - 1), 'rgba(' + colors[i][0] + ',' + colors[i][1] + ',' + colors[i][2] + ',' + opacity + ')'); } return gradientStyle; }; CRp$4.gradientFillStyle = function (context, ele, fill, opacity) { var gradientStyle = this.createGradientStyleFor(context, 'background', ele, fill, opacity); if (!gradientStyle) return null; // error context.fillStyle = gradientStyle; }; CRp$4.colorFillStyle = function (context, r, g, b, a) { context.fillStyle = 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')'; // turn off for now, seems context does its own caching // var cache = this.paintCache(context); // var fillStyle = 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')'; // if( cache.fillStyle !== fillStyle ){ // context.fillStyle = cache.fillStyle = fillStyle; // } }; CRp$4.eleFillStyle = function (context, ele, opacity) { var backgroundFill = ele.pstyle('background-fill').value; if (backgroundFill === 'linear-gradient' || backgroundFill === 'radial-gradient') { this.gradientFillStyle(context, ele, backgroundFill, opacity); } else { var backgroundColor = ele.pstyle('background-color').value; this.colorFillStyle(context, backgroundColor[0], backgroundColor[1], backgroundColor[2], opacity); } }; CRp$4.gradientStrokeStyle = function (context, ele, fill, opacity) { var gradientStyle = this.createGradientStyleFor(context, 'line', ele, fill, opacity); if (!gradientStyle) return null; // error context.strokeStyle = gradientStyle; }; CRp$4.colorStrokeStyle = function (context, r, g, b, a) { context.strokeStyle = 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')'; // turn off for now, seems context does its own caching // var cache = this.paintCache(context); // var strokeStyle = 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')'; // if( cache.strokeStyle !== strokeStyle ){ // context.strokeStyle = cache.strokeStyle = strokeStyle; // } }; CRp$4.eleStrokeStyle = function (context, ele, opacity) { var lineFill = ele.pstyle('line-fill').value; if (lineFill === 'linear-gradient' || lineFill === 'radial-gradient') { this.gradientStrokeStyle(context, ele, lineFill, opacity); } else { var lineColor = ele.pstyle('line-color').value; this.colorStrokeStyle(context, lineColor[0], lineColor[1], lineColor[2], opacity); } }; // Resize canvas CRp$4.matchCanvasSize = function (container) { var r = this; var data = r.data; var bb = r.findContainerClientCoords(); var width = bb[2]; var height = bb[3]; var pixelRatio = r.getPixelRatio(); var mbPxRatio = r.motionBlurPxRatio; if (container === r.data.bufferCanvases[r.MOTIONBLUR_BUFFER_NODE] || container === r.data.bufferCanvases[r.MOTIONBLUR_BUFFER_DRAG]) { pixelRatio = mbPxRatio; } var canvasWidth = width * pixelRatio; var canvasHeight = height * pixelRatio; var canvas; if (canvasWidth === r.canvasWidth && canvasHeight === r.canvasHeight) { return; // save cycles if same } r.fontCaches = null; // resizing resets the style var canvasContainer = data.canvasContainer; canvasContainer.style.width = width + 'px'; canvasContainer.style.height = height + 'px'; for (var i = 0; i < r.CANVAS_LAYERS; i++) { canvas = data.canvases[i]; canvas.width = canvasWidth; canvas.height = canvasHeight; canvas.style.width = width + 'px'; canvas.style.height = height + 'px'; } for (var i = 0; i < r.BUFFER_COUNT; i++) { canvas = data.bufferCanvases[i]; canvas.width = canvasWidth; canvas.height = canvasHeight; canvas.style.width = width + 'px'; canvas.style.height = height + 'px'; } r.textureMult = 1; if (pixelRatio <= 1) { canvas = data.bufferCanvases[r.TEXTURE_BUFFER]; r.textureMult = 2; canvas.width = canvasWidth * r.textureMult; canvas.height = canvasHeight * r.textureMult; } r.canvasWidth = canvasWidth; r.canvasHeight = canvasHeight; }; CRp$4.renderTo = function (cxt, zoom, pan, pxRatio) { this.render({ forcedContext: cxt, forcedZoom: zoom, forcedPan: pan, drawAllLayers: true, forcedPxRatio: pxRatio }); }; CRp$4.render = function (options) { options = options || staticEmptyObject(); var forcedContext = options.forcedContext; var drawAllLayers = options.drawAllLayers; var drawOnlyNodeLayer = options.drawOnlyNodeLayer; var forcedZoom = options.forcedZoom; var forcedPan = options.forcedPan; var r = this; var pixelRatio = options.forcedPxRatio === undefined ? this.getPixelRatio() : options.forcedPxRatio; var cy = r.cy; var data = r.data; var needDraw = data.canvasNeedsRedraw; var textureDraw = r.textureOnViewport && !forcedContext && (r.pinching || r.hoverData.dragging || r.swipePanning || r.data.wheelZooming); var motionBlur = options.motionBlur !== undefined ? options.motionBlur : r.motionBlur; var mbPxRatio = r.motionBlurPxRatio; var hasCompoundNodes = cy.hasCompoundNodes(); var inNodeDragGesture = r.hoverData.draggingEles; var inBoxSelection = r.hoverData.selecting || r.touchData.selecting ? true : false; motionBlur = motionBlur && !forcedContext && r.motionBlurEnabled && !inBoxSelection; var motionBlurFadeEffect = motionBlur; if (!forcedContext) { if (r.prevPxRatio !== pixelRatio) { r.invalidateContainerClientCoordsCache(); r.matchCanvasSize(r.container); r.redrawHint('eles', true); r.redrawHint('drag', true); } r.prevPxRatio = pixelRatio; } if (!forcedContext && r.motionBlurTimeout) { clearTimeout(r.motionBlurTimeout); } if (motionBlur) { if (r.mbFrames == null) { r.mbFrames = 0; } r.mbFrames++; if (r.mbFrames < 3) { // need several frames before even high quality motionblur motionBlurFadeEffect = false; } // go to lower quality blurry frames when several m/b frames have been rendered (avoids flashing) if (r.mbFrames > r.minMbLowQualFrames) { //r.fullQualityMb = false; r.motionBlurPxRatio = r.mbPxRBlurry; } } if (r.clearingMotionBlur) { r.motionBlurPxRatio = 1; } // b/c drawToContext() may be async w.r.t. redraw(), keep track of last texture frame // because a rogue async texture frame would clear needDraw if (r.textureDrawLastFrame && !textureDraw) { needDraw[r.NODE] = true; needDraw[r.SELECT_BOX] = true; } var style = cy.style(); var zoom = cy.zoom(); var effectiveZoom = forcedZoom !== undefined ? forcedZoom : zoom; var pan = cy.pan(); var effectivePan = { x: pan.x, y: pan.y }; var vp = { zoom: zoom, pan: { x: pan.x, y: pan.y } }; var prevVp = r.prevViewport; var viewportIsDiff = prevVp === undefined || vp.zoom !== prevVp.zoom || vp.pan.x !== prevVp.pan.x || vp.pan.y !== prevVp.pan.y; // we want the low quality motionblur only when the viewport is being manipulated etc (where it's not noticed) if (!viewportIsDiff && !(inNodeDragGesture && !hasCompoundNodes)) { r.motionBlurPxRatio = 1; } if (forcedPan) { effectivePan = forcedPan; } // apply pixel ratio effectiveZoom *= pixelRatio; effectivePan.x *= pixelRatio; effectivePan.y *= pixelRatio; var eles = r.getCachedZSortedEles(); function mbclear(context, x, y, w, h) { var gco = context.globalCompositeOperation; context.globalCompositeOperation = 'destination-out'; r.colorFillStyle(context, 255, 255, 255, r.motionBlurTransparency); context.fillRect(x, y, w, h); context.globalCompositeOperation = gco; } function setContextTransform(context, clear) { var ePan, eZoom, w, h; if (!r.clearingMotionBlur && (context === data.bufferContexts[r.MOTIONBLUR_BUFFER_NODE] || context === data.bufferContexts[r.MOTIONBLUR_BUFFER_DRAG])) { ePan = { x: pan.x * mbPxRatio, y: pan.y * mbPxRatio }; eZoom = zoom * mbPxRatio; w = r.canvasWidth * mbPxRatio; h = r.canvasHeight * mbPxRatio; } else { ePan = effectivePan; eZoom = effectiveZoom; w = r.canvasWidth; h = r.canvasHeight; } context.setTransform(1, 0, 0, 1, 0, 0); if (clear === 'motionBlur') { mbclear(context, 0, 0, w, h); } else if (!forcedContext && (clear === undefined || clear)) { context.clearRect(0, 0, w, h); } if (!drawAllLayers) { context.translate(ePan.x, ePan.y); context.scale(eZoom, eZoom); } if (forcedPan) { context.translate(forcedPan.x, forcedPan.y); } if (forcedZoom) { context.scale(forcedZoom, forcedZoom); } } if (!textureDraw) { r.textureDrawLastFrame = false; } if (textureDraw) { r.textureDrawLastFrame = true; if (!r.textureCache) { r.textureCache = {}; r.textureCache.bb = cy.mutableElements().boundingBox(); r.textureCache.texture = r.data.bufferCanvases[r.TEXTURE_BUFFER]; var cxt = r.data.bufferContexts[r.TEXTURE_BUFFER]; cxt.setTransform(1, 0, 0, 1, 0, 0); cxt.clearRect(0, 0, r.canvasWidth * r.textureMult, r.canvasHeight * r.textureMult); r.render({ forcedContext: cxt, drawOnlyNodeLayer: true, forcedPxRatio: pixelRatio * r.textureMult }); var vp = r.textureCache.viewport = { zoom: cy.zoom(), pan: cy.pan(), width: r.canvasWidth, height: r.canvasHeight }; vp.mpan = { x: (0 - vp.pan.x) / vp.zoom, y: (0 - vp.pan.y) / vp.zoom }; } needDraw[r.DRAG] = false; needDraw[r.NODE] = false; var context = data.contexts[r.NODE]; var texture = r.textureCache.texture; var vp = r.textureCache.viewport; context.setTransform(1, 0, 0, 1, 0, 0); if (motionBlur) { mbclear(context, 0, 0, vp.width, vp.height); } else { context.clearRect(0, 0, vp.width, vp.height); } var outsideBgColor = style.core('outside-texture-bg-color').value; var outsideBgOpacity = style.core('outside-texture-bg-opacity').value; r.colorFillStyle(context, outsideBgColor[0], outsideBgColor[1], outsideBgColor[2], outsideBgOpacity); context.fillRect(0, 0, vp.width, vp.height); var zoom = cy.zoom(); setContextTransform(context, false); context.clearRect(vp.mpan.x, vp.mpan.y, vp.width / vp.zoom / pixelRatio, vp.height / vp.zoom / pixelRatio); context.drawImage(texture, vp.mpan.x, vp.mpan.y, vp.width / vp.zoom / pixelRatio, vp.height / vp.zoom / pixelRatio); } else if (r.textureOnViewport && !forcedContext) { // clear the cache since we don't need it r.textureCache = null; } var extent = cy.extent(); var vpManip = r.pinching || r.hoverData.dragging || r.swipePanning || r.data.wheelZooming || r.hoverData.draggingEles || r.cy.animated(); var hideEdges = r.hideEdgesOnViewport && vpManip; var needMbClear = []; needMbClear[r.NODE] = !needDraw[r.NODE] && motionBlur && !r.clearedForMotionBlur[r.NODE] || r.clearingMotionBlur; if (needMbClear[r.NODE]) { r.clearedForMotionBlur[r.NODE] = true; } needMbClear[r.DRAG] = !needDraw[r.DRAG] && motionBlur && !r.clearedForMotionBlur[r.DRAG] || r.clearingMotionBlur; if (needMbClear[r.DRAG]) { r.clearedForMotionBlur[r.DRAG] = true; } if (needDraw[r.NODE] || drawAllLayers || drawOnlyNodeLayer || needMbClear[r.NODE]) { var useBuffer = motionBlur && !needMbClear[r.NODE] && mbPxRatio !== 1; var context = forcedContext || (useBuffer ? r.data.bufferContexts[r.MOTIONBLUR_BUFFER_NODE] : data.contexts[r.NODE]); var clear = motionBlur && !useBuffer ? 'motionBlur' : undefined; setContextTransform(context, clear); if (hideEdges) { r.drawCachedNodes(context, eles.nondrag, pixelRatio, extent); } else { r.drawLayeredElements(context, eles.nondrag, pixelRatio, extent); } if (r.debug) { r.drawDebugPoints(context, eles.nondrag); } if (!drawAllLayers && !motionBlur) { needDraw[r.NODE] = false; } } if (!drawOnlyNodeLayer && (needDraw[r.DRAG] || drawAllLayers || needMbClear[r.DRAG])) { var useBuffer = motionBlur && !needMbClear[r.DRAG] && mbPxRatio !== 1; var context = forcedContext || (useBuffer ? r.data.bufferContexts[r.MOTIONBLUR_BUFFER_DRAG] : data.contexts[r.DRAG]); setContextTransform(context, motionBlur && !useBuffer ? 'motionBlur' : undefined); if (hideEdges) { r.drawCachedNodes(context, eles.drag, pixelRatio, extent); } else { r.drawCachedElements(context, eles.drag, pixelRatio, extent); } if (r.debug) { r.drawDebugPoints(context, eles.drag); } if (!drawAllLayers && !motionBlur) { needDraw[r.DRAG] = false; } } if (r.showFps || !drawOnlyNodeLayer && needDraw[r.SELECT_BOX] && !drawAllLayers) { var context = forcedContext || data.contexts[r.SELECT_BOX]; setContextTransform(context); if (r.selection[4] == 1 && (r.hoverData.selecting || r.touchData.selecting)) { var zoom = r.cy.zoom(); var borderWidth = style.core('selection-box-border-width').value / zoom; context.lineWidth = borderWidth; context.fillStyle = 'rgba(' + style.core('selection-box-color').value[0] + ',' + style.core('selection-box-color').value[1] + ',' + style.core('selection-box-color').value[2] + ',' + style.core('selection-box-opacity').value + ')'; context.fillRect(r.selection[0], r.selection[1], r.selection[2] - r.selection[0], r.selection[3] - r.selection[1]); if (borderWidth > 0) { context.strokeStyle = 'rgba(' + style.core('selection-box-border-color').value[0] + ',' + style.core('selection-box-border-color').value[1] + ',' + style.core('selection-box-border-color').value[2] + ',' + style.core('selection-box-opacity').value + ')'; context.strokeRect(r.selection[0], r.selection[1], r.selection[2] - r.selection[0], r.selection[3] - r.selection[1]); } } if (data.bgActivePosistion && !r.hoverData.selecting) { var zoom = r.cy.zoom(); var pos = data.bgActivePosistion; context.fillStyle = 'rgba(' + style.core('active-bg-color').value[0] + ',' + style.core('active-bg-color').value[1] + ',' + style.core('active-bg-color').value[2] + ',' + style.core('active-bg-opacity').value + ')'; context.beginPath(); context.arc(pos.x, pos.y, style.core('active-bg-size').pfValue / zoom, 0, 2 * Math.PI); context.fill(); } var timeToRender = r.lastRedrawTime; if (r.showFps && timeToRender) { timeToRender = Math.round(timeToRender); var fps = Math.round(1000 / timeToRender); context.setTransform(1, 0, 0, 1, 0, 0); context.fillStyle = 'rgba(255, 0, 0, 0.75)'; context.strokeStyle = 'rgba(255, 0, 0, 0.75)'; context.lineWidth = 1; context.fillText('1 frame = ' + timeToRender + ' ms = ' + fps + ' fps', 0, 20); var maxFps = 60; context.strokeRect(0, 30, 250, 20); context.fillRect(0, 30, 250 * Math.min(fps / maxFps, 1), 20); } if (!drawAllLayers) { needDraw[r.SELECT_BOX] = false; } } // motionblur: blit rendered blurry frames if (motionBlur && mbPxRatio !== 1) { var cxtNode = data.contexts[r.NODE]; var txtNode = r.data.bufferCanvases[r.MOTIONBLUR_BUFFER_NODE]; var cxtDrag = data.contexts[r.DRAG]; var txtDrag = r.data.bufferCanvases[r.MOTIONBLUR_BUFFER_DRAG]; var drawMotionBlur = function drawMotionBlur(cxt, txt, needClear) { cxt.setTransform(1, 0, 0, 1, 0, 0); if (needClear || !motionBlurFadeEffect) { cxt.clearRect(0, 0, r.canvasWidth, r.canvasHeight); } else { mbclear(cxt, 0, 0, r.canvasWidth, r.canvasHeight); } var pxr = mbPxRatio; cxt.drawImage(txt, // img 0, 0, // sx, sy r.canvasWidth * pxr, r.canvasHeight * pxr, // sw, sh 0, 0, // x, y r.canvasWidth, r.canvasHeight // w, h ); }; if (needDraw[r.NODE] || needMbClear[r.NODE]) { drawMotionBlur(cxtNode, txtNode, needMbClear[r.NODE]); needDraw[r.NODE] = false; } if (needDraw[r.DRAG] || needMbClear[r.DRAG]) { drawMotionBlur(cxtDrag, txtDrag, needMbClear[r.DRAG]); needDraw[r.DRAG] = false; } } r.prevViewport = vp; if (r.clearingMotionBlur) { r.clearingMotionBlur = false; r.motionBlurCleared = true; r.motionBlur = true; } if (motionBlur) { r.motionBlurTimeout = setTimeout(function () { r.motionBlurTimeout = null; r.clearedForMotionBlur[r.NODE] = false; r.clearedForMotionBlur[r.DRAG] = false; r.motionBlur = false; r.clearingMotionBlur = !textureDraw; r.mbFrames = 0; needDraw[r.NODE] = true; needDraw[r.DRAG] = true; r.redraw(); }, motionBlurDelay); } if (!forcedContext) { cy.emit('render'); } }; var CRp$3 = {}; // @O Polygon drawing CRp$3.drawPolygonPath = function (context, x, y, width, height, points) { var halfW = width / 2; var halfH = height / 2; if (context.beginPath) { context.beginPath(); } context.moveTo(x + halfW * points[0], y + halfH * points[1]); for (var i = 1; i < points.length / 2; i++) { context.lineTo(x + halfW * points[i * 2], y + halfH * points[i * 2 + 1]); } context.closePath(); }; CRp$3.drawRoundPolygonPath = function (context, x, y, width, height, points, corners) { corners.forEach(function (corner) { return drawPreparedRoundCorner(context, corner); }); context.closePath(); }; // Round rectangle drawing CRp$3.drawRoundRectanglePath = function (context, x, y, width, height, radius) { var halfWidth = width / 2; var halfHeight = height / 2; var cornerRadius = radius === 'auto' ? getRoundRectangleRadius(width, height) : Math.min(radius, halfHeight, halfWidth); if (context.beginPath) { context.beginPath(); } // Start at top middle context.moveTo(x, y - halfHeight); // Arc from middle top to right side context.arcTo(x + halfWidth, y - halfHeight, x + halfWidth, y, cornerRadius); // Arc from right side to bottom context.arcTo(x + halfWidth, y + halfHeight, x, y + halfHeight, cornerRadius); // Arc from bottom to left side context.arcTo(x - halfWidth, y + halfHeight, x - halfWidth, y, cornerRadius); // Arc from left side to topBorder context.arcTo(x - halfWidth, y - halfHeight, x, y - halfHeight, cornerRadius); // Join line context.lineTo(x, y - halfHeight); context.closePath(); }; CRp$3.drawBottomRoundRectanglePath = function (context, x, y, width, height, radius) { var halfWidth = width / 2; var halfHeight = height / 2; var cornerRadius = radius === 'auto' ? getRoundRectangleRadius(width, height) : radius; if (context.beginPath) { context.beginPath(); } // Start at top middle context.moveTo(x, y - halfHeight); context.lineTo(x + halfWidth, y - halfHeight); context.lineTo(x + halfWidth, y); context.arcTo(x + halfWidth, y + halfHeight, x, y + halfHeight, cornerRadius); context.arcTo(x - halfWidth, y + halfHeight, x - halfWidth, y, cornerRadius); context.lineTo(x - halfWidth, y - halfHeight); context.lineTo(x, y - halfHeight); context.closePath(); }; CRp$3.drawCutRectanglePath = function (context, x, y, width, height, points, corners) { var halfWidth = width / 2; var halfHeight = height / 2; var cornerLength = corners === 'auto' ? getCutRectangleCornerLength() : corners; if (context.beginPath) { context.beginPath(); } context.moveTo(x - halfWidth + cornerLength, y - halfHeight); context.lineTo(x + halfWidth - cornerLength, y - halfHeight); context.lineTo(x + halfWidth, y - halfHeight + cornerLength); context.lineTo(x + halfWidth, y + halfHeight - cornerLength); context.lineTo(x + halfWidth - cornerLength, y + halfHeight); context.lineTo(x - halfWidth + cornerLength, y + halfHeight); context.lineTo(x - halfWidth, y + halfHeight - cornerLength); context.lineTo(x - halfWidth, y - halfHeight + cornerLength); context.closePath(); }; CRp$3.drawBarrelPath = function (context, x, y, width, height) { var halfWidth = width / 2; var halfHeight = height / 2; var xBegin = x - halfWidth; var xEnd = x + halfWidth; var yBegin = y - halfHeight; var yEnd = y + halfHeight; var barrelCurveConstants = getBarrelCurveConstants(width, height); var wOffset = barrelCurveConstants.widthOffset; var hOffset = barrelCurveConstants.heightOffset; var ctrlPtXOffset = barrelCurveConstants.ctrlPtOffsetPct * wOffset; if (context.beginPath) { context.beginPath(); } context.moveTo(xBegin, yBegin + hOffset); context.lineTo(xBegin, yEnd - hOffset); context.quadraticCurveTo(xBegin + ctrlPtXOffset, yEnd, xBegin + wOffset, yEnd); context.lineTo(xEnd - wOffset, yEnd); context.quadraticCurveTo(xEnd - ctrlPtXOffset, yEnd, xEnd, yEnd - hOffset); context.lineTo(xEnd, yBegin + hOffset); context.quadraticCurveTo(xEnd - ctrlPtXOffset, yBegin, xEnd - wOffset, yBegin); context.lineTo(xBegin + wOffset, yBegin); context.quadraticCurveTo(xBegin + ctrlPtXOffset, yBegin, xBegin, yBegin + hOffset); context.closePath(); }; var sin0 = Math.sin(0); var cos0 = Math.cos(0); var sin = {}; var cos = {}; var ellipseStepSize = Math.PI / 40; for (var i = 0 * Math.PI; i < 2 * Math.PI; i += ellipseStepSize) { sin[i] = Math.sin(i); cos[i] = Math.cos(i); } CRp$3.drawEllipsePath = function (context, centerX, centerY, width, height) { if (context.beginPath) { context.beginPath(); } if (context.ellipse) { context.ellipse(centerX, centerY, width / 2, height / 2, 0, 0, 2 * Math.PI); } else { var xPos, yPos; var rw = width / 2; var rh = height / 2; for (var i = 0 * Math.PI; i < 2 * Math.PI; i += ellipseStepSize) { xPos = centerX - rw * sin[i] * sin0 + rw * cos[i] * cos0; yPos = centerY + rh * cos[i] * sin0 + rh * sin[i] * cos0; if (i === 0) { context.moveTo(xPos, yPos); } else { context.lineTo(xPos, yPos); } } } context.closePath(); }; /* global atob, ArrayBuffer, Uint8Array, Blob */ var CRp$2 = {}; CRp$2.createBuffer = function (w, h) { var buffer = document.createElement('canvas'); // eslint-disable-line no-undef buffer.width = w; buffer.height = h; return [buffer, buffer.getContext('2d')]; }; CRp$2.bufferCanvasImage = function (options) { var cy = this.cy; var eles = cy.mutableElements(); var bb = eles.boundingBox(); var ctrRect = this.findContainerClientCoords(); var width = options.full ? Math.ceil(bb.w) : ctrRect[2]; var height = options.full ? Math.ceil(bb.h) : ctrRect[3]; var specdMaxDims = number$1(options.maxWidth) || number$1(options.maxHeight); var pxRatio = this.getPixelRatio(); var scale = 1; if (options.scale !== undefined) { width *= options.scale; height *= options.scale; scale = options.scale; } else if (specdMaxDims) { var maxScaleW = Infinity; var maxScaleH = Infinity; if (number$1(options.maxWidth)) { maxScaleW = scale * options.maxWidth / width; } if (number$1(options.maxHeight)) { maxScaleH = scale * options.maxHeight / height; } scale = Math.min(maxScaleW, maxScaleH); width *= scale; height *= scale; } if (!specdMaxDims) { width *= pxRatio; height *= pxRatio; scale *= pxRatio; } var buffCanvas = document.createElement('canvas'); // eslint-disable-line no-undef buffCanvas.width = width; buffCanvas.height = height; buffCanvas.style.width = width + 'px'; buffCanvas.style.height = height + 'px'; var buffCxt = buffCanvas.getContext('2d'); // Rasterize the layers, but only if container has nonzero size if (width > 0 && height > 0) { buffCxt.clearRect(0, 0, width, height); buffCxt.globalCompositeOperation = 'source-over'; var zsortedEles = this.getCachedZSortedEles(); if (options.full) { // draw the full bounds of the graph buffCxt.translate(-bb.x1 * scale, -bb.y1 * scale); buffCxt.scale(scale, scale); this.drawElements(buffCxt, zsortedEles); buffCxt.scale(1 / scale, 1 / scale); buffCxt.translate(bb.x1 * scale, bb.y1 * scale); } else { // draw the current view var pan = cy.pan(); var translation = { x: pan.x * scale, y: pan.y * scale }; scale *= cy.zoom(); buffCxt.translate(translation.x, translation.y); buffCxt.scale(scale, scale); this.drawElements(buffCxt, zsortedEles); buffCxt.scale(1 / scale, 1 / scale); buffCxt.translate(-translation.x, -translation.y); } // need to fill bg at end like this in order to fill cleared transparent pixels in jpgs if (options.bg) { buffCxt.globalCompositeOperation = 'destination-over'; buffCxt.fillStyle = options.bg; buffCxt.rect(0, 0, width, height); buffCxt.fill(); } } return buffCanvas; }; function b64ToBlob(b64, mimeType) { var bytes = atob(b64); var buff = new ArrayBuffer(bytes.length); var buffUint8 = new Uint8Array(buff); for (var i = 0; i < bytes.length; i++) { buffUint8[i] = bytes.charCodeAt(i); } return new Blob([buff], { type: mimeType }); } function b64UriToB64(b64uri) { var i = b64uri.indexOf(','); return b64uri.substr(i + 1); } function output(options, canvas, mimeType) { var getB64Uri = function getB64Uri() { return canvas.toDataURL(mimeType, options.quality); }; switch (options.output) { case 'blob-promise': return new Promise$1(function (resolve, reject) { try { canvas.toBlob(function (blob) { if (blob != null) { resolve(blob); } else { reject(new Error('`canvas.toBlob()` sent a null value in its callback')); } }, mimeType, options.quality); } catch (err) { reject(err); } }); case 'blob': return b64ToBlob(b64UriToB64(getB64Uri()), mimeType); case 'base64': return b64UriToB64(getB64Uri()); case 'base64uri': default: return getB64Uri(); } } CRp$2.png = function (options) { return output(options, this.bufferCanvasImage(options), 'image/png'); }; CRp$2.jpg = function (options) { return output(options, this.bufferCanvasImage(options), 'image/jpeg'); }; var CRp$1 = {}; CRp$1.nodeShapeImpl = function (name, context, centerX, centerY, width, height, points, corners) { switch (name) { case 'ellipse': return this.drawEllipsePath(context, centerX, centerY, width, height); case 'polygon': return this.drawPolygonPath(context, centerX, centerY, width, height, points); case 'round-polygon': return this.drawRoundPolygonPath(context, centerX, centerY, width, height, points, corners); case 'roundrectangle': case 'round-rectangle': return this.drawRoundRectanglePath(context, centerX, centerY, width, height, corners); case 'cutrectangle': case 'cut-rectangle': return this.drawCutRectanglePath(context, centerX, centerY, width, height, points, corners); case 'bottomroundrectangle': case 'bottom-round-rectangle': return this.drawBottomRoundRectanglePath(context, centerX, centerY, width, height, corners); case 'barrel': return this.drawBarrelPath(context, centerX, centerY, width, height); } }; var CR = CanvasRenderer; var CRp = CanvasRenderer.prototype; CRp.CANVAS_LAYERS = 3; // CRp.SELECT_BOX = 0; CRp.DRAG = 1; CRp.NODE = 2; CRp.BUFFER_COUNT = 3; // CRp.TEXTURE_BUFFER = 0; CRp.MOTIONBLUR_BUFFER_NODE = 1; CRp.MOTIONBLUR_BUFFER_DRAG = 2; function CanvasRenderer(options) { var r = this; r.data = { canvases: new Array(CRp.CANVAS_LAYERS), contexts: new Array(CRp.CANVAS_LAYERS), canvasNeedsRedraw: new Array(CRp.CANVAS_LAYERS), bufferCanvases: new Array(CRp.BUFFER_COUNT), bufferContexts: new Array(CRp.CANVAS_LAYERS) }; var tapHlOffAttr = '-webkit-tap-highlight-color'; var tapHlOffStyle = 'rgba(0,0,0,0)'; r.data.canvasContainer = document.createElement('div'); // eslint-disable-line no-undef var containerStyle = r.data.canvasContainer.style; r.data.canvasContainer.style[tapHlOffAttr] = tapHlOffStyle; containerStyle.position = 'relative'; containerStyle.zIndex = '0'; containerStyle.overflow = 'hidden'; var container = options.cy.container(); container.appendChild(r.data.canvasContainer); container.style[tapHlOffAttr] = tapHlOffStyle; var styleMap = { '-webkit-user-select': 'none', '-moz-user-select': '-moz-none', 'user-select': 'none', '-webkit-tap-highlight-color': 'rgba(0,0,0,0)', 'outline-style': 'none' }; if (ms()) { styleMap['-ms-touch-action'] = 'none'; styleMap['touch-action'] = 'none'; } for (var i = 0; i < CRp.CANVAS_LAYERS; i++) { var canvas = r.data.canvases[i] = document.createElement('canvas'); // eslint-disable-line no-undef r.data.contexts[i] = canvas.getContext('2d'); Object.keys(styleMap).forEach(function (k) { canvas.style[k] = styleMap[k]; }); canvas.style.position = 'absolute'; canvas.setAttribute('data-id', 'layer' + i); canvas.style.zIndex = String(CRp.CANVAS_LAYERS - i); r.data.canvasContainer.appendChild(canvas); r.data.canvasNeedsRedraw[i] = false; } r.data.topCanvas = r.data.canvases[0]; r.data.canvases[CRp.NODE].setAttribute('data-id', 'layer' + CRp.NODE + '-node'); r.data.canvases[CRp.SELECT_BOX].setAttribute('data-id', 'layer' + CRp.SELECT_BOX + '-selectbox'); r.data.canvases[CRp.DRAG].setAttribute('data-id', 'layer' + CRp.DRAG + '-drag'); for (var i = 0; i < CRp.BUFFER_COUNT; i++) { r.data.bufferCanvases[i] = document.createElement('canvas'); // eslint-disable-line no-undef r.data.bufferContexts[i] = r.data.bufferCanvases[i].getContext('2d'); r.data.bufferCanvases[i].style.position = 'absolute'; r.data.bufferCanvases[i].setAttribute('data-id', 'buffer' + i); r.data.bufferCanvases[i].style.zIndex = String(-i - 1); r.data.bufferCanvases[i].style.visibility = 'hidden'; //r.data.canvasContainer.appendChild(r.data.bufferCanvases[i]); } r.pathsEnabled = true; var emptyBb = makeBoundingBox(); var getBoxCenter = function getBoxCenter(bb) { return { x: (bb.x1 + bb.x2) / 2, y: (bb.y1 + bb.y2) / 2 }; }; var getCenterOffset = function getCenterOffset(bb) { return { x: -bb.w / 2, y: -bb.h / 2 }; }; var backgroundTimestampHasChanged = function backgroundTimestampHasChanged(ele) { var _p = ele[0]._private; var same = _p.oldBackgroundTimestamp === _p.backgroundTimestamp; return !same; }; var getStyleKey = function getStyleKey(ele) { return ele[0]._private.nodeKey; }; var getLabelKey = function getLabelKey(ele) { return ele[0]._private.labelStyleKey; }; var getSourceLabelKey = function getSourceLabelKey(ele) { return ele[0]._private.sourceLabelStyleKey; }; var getTargetLabelKey = function getTargetLabelKey(ele) { return ele[0]._private.targetLabelStyleKey; }; var drawElement = function drawElement(context, ele, bb, scaledLabelShown, useEleOpacity) { return r.drawElement(context, ele, bb, false, false, useEleOpacity); }; var drawLabel = function drawLabel(context, ele, bb, scaledLabelShown, useEleOpacity) { return r.drawElementText(context, ele, bb, scaledLabelShown, 'main', useEleOpacity); }; var drawSourceLabel = function drawSourceLabel(context, ele, bb, scaledLabelShown, useEleOpacity) { return r.drawElementText(context, ele, bb, scaledLabelShown, 'source', useEleOpacity); }; var drawTargetLabel = function drawTargetLabel(context, ele, bb, scaledLabelShown, useEleOpacity) { return r.drawElementText(context, ele, bb, scaledLabelShown, 'target', useEleOpacity); }; var getElementBox = function getElementBox(ele) { ele.boundingBox(); return ele[0]._private.bodyBounds; }; var getLabelBox = function getLabelBox(ele) { ele.boundingBox(); return ele[0]._private.labelBounds.main || emptyBb; }; var getSourceLabelBox = function getSourceLabelBox(ele) { ele.boundingBox(); return ele[0]._private.labelBounds.source || emptyBb; }; var getTargetLabelBox = function getTargetLabelBox(ele) { ele.boundingBox(); return ele[0]._private.labelBounds.target || emptyBb; }; var isLabelVisibleAtScale = function isLabelVisibleAtScale(ele, scaledLabelShown) { return scaledLabelShown; }; var getElementRotationPoint = function getElementRotationPoint(ele) { return getBoxCenter(getElementBox(ele)); }; var addTextMargin = function addTextMargin(prefix, pt, ele) { var pre = prefix ? prefix + '-' : ''; return { x: pt.x + ele.pstyle(pre + 'text-margin-x').pfValue, y: pt.y + ele.pstyle(pre + 'text-margin-y').pfValue }; }; var getRsPt = function getRsPt(ele, x, y) { var rs = ele[0]._private.rscratch; return { x: rs[x], y: rs[y] }; }; var getLabelRotationPoint = function getLabelRotationPoint(ele) { return addTextMargin('', getRsPt(ele, 'labelX', 'labelY'), ele); }; var getSourceLabelRotationPoint = function getSourceLabelRotationPoint(ele) { return addTextMargin('source', getRsPt(ele, 'sourceLabelX', 'sourceLabelY'), ele); }; var getTargetLabelRotationPoint = function getTargetLabelRotationPoint(ele) { return addTextMargin('target', getRsPt(ele, 'targetLabelX', 'targetLabelY'), ele); }; var getElementRotationOffset = function getElementRotationOffset(ele) { return getCenterOffset(getElementBox(ele)); }; var getSourceLabelRotationOffset = function getSourceLabelRotationOffset(ele) { return getCenterOffset(getSourceLabelBox(ele)); }; var getTargetLabelRotationOffset = function getTargetLabelRotationOffset(ele) { return getCenterOffset(getTargetLabelBox(ele)); }; var getLabelRotationOffset = function getLabelRotationOffset(ele) { var bb = getLabelBox(ele); var p = getCenterOffset(getLabelBox(ele)); if (ele.isNode()) { switch (ele.pstyle('text-halign').value) { case 'left': p.x = -bb.w; break; case 'right': p.x = 0; break; } switch (ele.pstyle('text-valign').value) { case 'top': p.y = -bb.h; break; case 'bottom': p.y = 0; break; } } return p; }; var eleTxrCache = r.data.eleTxrCache = new ElementTextureCache(r, { getKey: getStyleKey, doesEleInvalidateKey: backgroundTimestampHasChanged, drawElement: drawElement, getBoundingBox: getElementBox, getRotationPoint: getElementRotationPoint, getRotationOffset: getElementRotationOffset, allowEdgeTxrCaching: false, allowParentTxrCaching: false }); var lblTxrCache = r.data.lblTxrCache = new ElementTextureCache(r, { getKey: getLabelKey, drawElement: drawLabel, getBoundingBox: getLabelBox, getRotationPoint: getLabelRotationPoint, getRotationOffset: getLabelRotationOffset, isVisible: isLabelVisibleAtScale }); var slbTxrCache = r.data.slbTxrCache = new ElementTextureCache(r, { getKey: getSourceLabelKey, drawElement: drawSourceLabel, getBoundingBox: getSourceLabelBox, getRotationPoint: getSourceLabelRotationPoint, getRotationOffset: getSourceLabelRotationOffset, isVisible: isLabelVisibleAtScale }); var tlbTxrCache = r.data.tlbTxrCache = new ElementTextureCache(r, { getKey: getTargetLabelKey, drawElement: drawTargetLabel, getBoundingBox: getTargetLabelBox, getRotationPoint: getTargetLabelRotationPoint, getRotationOffset: getTargetLabelRotationOffset, isVisible: isLabelVisibleAtScale }); var lyrTxrCache = r.data.lyrTxrCache = new LayeredTextureCache(r); r.onUpdateEleCalcs(function invalidateTextureCaches(willDraw, eles) { // each cache should check for sub-key diff to see that the update affects that cache particularly eleTxrCache.invalidateElements(eles); lblTxrCache.invalidateElements(eles); slbTxrCache.invalidateElements(eles); tlbTxrCache.invalidateElements(eles); // any change invalidates the layers lyrTxrCache.invalidateElements(eles); // update the old bg timestamp so diffs can be done in the ele txr caches for (var _i = 0; _i < eles.length; _i++) { var _p = eles[_i]._private; _p.oldBackgroundTimestamp = _p.backgroundTimestamp; } }); var refineInLayers = function refineInLayers(reqs) { for (var i = 0; i < reqs.length; i++) { lyrTxrCache.enqueueElementRefinement(reqs[i].ele); } }; eleTxrCache.onDequeue(refineInLayers); lblTxrCache.onDequeue(refineInLayers); slbTxrCache.onDequeue(refineInLayers); tlbTxrCache.onDequeue(refineInLayers); } CRp.redrawHint = function (group, bool) { var r = this; switch (group) { case 'eles': r.data.canvasNeedsRedraw[CRp.NODE] = bool; break; case 'drag': r.data.canvasNeedsRedraw[CRp.DRAG] = bool; break; case 'select': r.data.canvasNeedsRedraw[CRp.SELECT_BOX] = bool; break; } }; // whether to use Path2D caching for drawing var pathsImpld = typeof Path2D !== 'undefined'; CRp.path2dEnabled = function (on) { if (on === undefined) { return this.pathsEnabled; } this.pathsEnabled = on ? true : false; }; CRp.usePaths = function () { return pathsImpld && this.pathsEnabled; }; CRp.setImgSmoothing = function (context, bool) { if (context.imageSmoothingEnabled != null) { context.imageSmoothingEnabled = bool; } else { context.webkitImageSmoothingEnabled = bool; context.mozImageSmoothingEnabled = bool; context.msImageSmoothingEnabled = bool; } }; CRp.getImgSmoothing = function (context) { if (context.imageSmoothingEnabled != null) { return context.imageSmoothingEnabled; } else { return context.webkitImageSmoothingEnabled || context.mozImageSmoothingEnabled || context.msImageSmoothingEnabled; } }; CRp.makeOffscreenCanvas = function (width, height) { var canvas; if ((typeof OffscreenCanvas === "undefined" ? "undefined" : _typeof(OffscreenCanvas)) !== ("undefined" )) { canvas = new OffscreenCanvas(width, height); } else { canvas = document.createElement('canvas'); // eslint-disable-line no-undef canvas.width = width; canvas.height = height; } return canvas; }; [CRp$a, CRp$9, CRp$8, CRp$7, CRp$6, CRp$5, CRp$4, CRp$3, CRp$2, CRp$1].forEach(function (props) { extend(CRp, props); }); var renderer = [{ name: 'null', impl: NullRenderer }, { name: 'base', impl: BR }, { name: 'canvas', impl: CR }]; var incExts = [{ type: 'layout', extensions: layout }, { type: 'renderer', extensions: renderer }]; // registered extensions to cytoscape, indexed by name var extensions = {}; // registered modules for extensions, indexed by name var modules = {}; function setExtension(type, name, registrant) { var ext = registrant; var overrideErr = function overrideErr(field) { warn('Can not register `' + name + '` for `' + type + '` since `' + field + '` already exists in the prototype and can not be overridden'); }; if (type === 'core') { if (Core.prototype[name]) { return overrideErr(name); } else { Core.prototype[name] = registrant; } } else if (type === 'collection') { if (Collection.prototype[name]) { return overrideErr(name); } else { Collection.prototype[name] = registrant; } } else if (type === 'layout') { // fill in missing layout functions in the prototype var Layout = function Layout(options) { this.options = options; registrant.call(this, options); // make sure layout has _private for use w/ std apis like .on() if (!plainObject(this._private)) { this._private = {}; } this._private.cy = options.cy; this._private.listeners = []; this.createEmitter(); }; var layoutProto = Layout.prototype = Object.create(registrant.prototype); var optLayoutFns = []; for (var i = 0; i < optLayoutFns.length; i++) { var fnName = optLayoutFns[i]; layoutProto[fnName] = layoutProto[fnName] || function () { return this; }; } // either .start() or .run() is defined, so autogen the other if (layoutProto.start && !layoutProto.run) { layoutProto.run = function () { this.start(); return this; }; } else if (!layoutProto.start && layoutProto.run) { layoutProto.start = function () { this.run(); return this; }; } var regStop = registrant.prototype.stop; layoutProto.stop = function () { var opts = this.options; if (opts && opts.animate) { var anis = this.animations; if (anis) { for (var _i = 0; _i < anis.length; _i++) { anis[_i].stop(); } } } if (regStop) { regStop.call(this); } else { this.emit('layoutstop'); } return this; }; if (!layoutProto.destroy) { layoutProto.destroy = function () { return this; }; } layoutProto.cy = function () { return this._private.cy; }; var getCy = function getCy(layout) { return layout._private.cy; }; var emitterOpts = { addEventFields: function addEventFields(layout, evt) { evt.layout = layout; evt.cy = getCy(layout); evt.target = layout; }, bubble: function bubble() { return true; }, parent: function parent(layout) { return getCy(layout); } }; extend(layoutProto, { createEmitter: function createEmitter() { this._private.emitter = new Emitter(emitterOpts, this); return this; }, emitter: function emitter() { return this._private.emitter; }, on: function on(evt, cb) { this.emitter().on(evt, cb); return this; }, one: function one(evt, cb) { this.emitter().one(evt, cb); return this; }, once: function once(evt, cb) { this.emitter().one(evt, cb); return this; }, removeListener: function removeListener(evt, cb) { this.emitter().removeListener(evt, cb); return this; }, removeAllListeners: function removeAllListeners() { this.emitter().removeAllListeners(); return this; }, emit: function emit(evt, params) { this.emitter().emit(evt, params); return this; } }); define.eventAliasesOn(layoutProto); ext = Layout; // replace with our wrapped layout } else if (type === 'renderer' && name !== 'null' && name !== 'base') { // user registered renderers inherit from base var BaseRenderer = getExtension('renderer', 'base'); var bProto = BaseRenderer.prototype; var RegistrantRenderer = registrant; var rProto = registrant.prototype; var Renderer = function Renderer() { BaseRenderer.apply(this, arguments); RegistrantRenderer.apply(this, arguments); }; var proto = Renderer.prototype; for (var pName in bProto) { var pVal = bProto[pName]; var existsInR = rProto[pName] != null; if (existsInR) { return overrideErr(pName); } proto[pName] = pVal; // take impl from base } for (var _pName in rProto) { proto[_pName] = rProto[_pName]; // take impl from registrant } bProto.clientFunctions.forEach(function (name) { proto[name] = proto[name] || function () { error('Renderer does not implement `renderer.' + name + '()` on its prototype'); }; }); ext = Renderer; } else if (type === '__proto__' || type === 'constructor' || type === 'prototype') { // to avoid potential prototype pollution return error(type + ' is an illegal type to be registered, possibly lead to prototype pollutions'); } return setMap({ map: extensions, keys: [type, name], value: ext }); } function getExtension(type, name) { return getMap({ map: extensions, keys: [type, name] }); } function setModule(type, name, moduleType, moduleName, registrant) { return setMap({ map: modules, keys: [type, name, moduleType, moduleName], value: registrant }); } function getModule(type, name, moduleType, moduleName) { return getMap({ map: modules, keys: [type, name, moduleType, moduleName] }); } var extension = function extension() { // e.g. extension('renderer', 'svg') if (arguments.length === 2) { return getExtension.apply(null, arguments); } // e.g. extension('renderer', 'svg', { ... }) else if (arguments.length === 3) { return setExtension.apply(null, arguments); } // e.g. extension('renderer', 'svg', 'nodeShape', 'ellipse') else if (arguments.length === 4) { return getModule.apply(null, arguments); } // e.g. extension('renderer', 'svg', 'nodeShape', 'ellipse', { ... }) else if (arguments.length === 5) { return setModule.apply(null, arguments); } else { error('Invalid extension access syntax'); } }; // allows a core instance to access extensions internally Core.prototype.extension = extension; // included extensions incExts.forEach(function (group) { group.extensions.forEach(function (ext) { setExtension(group.type, ext.name, ext.impl); }); }); // a dummy stylesheet object that doesn't need a reference to the core // (useful for init) var Stylesheet = function Stylesheet() { if (!(this instanceof Stylesheet)) { return new Stylesheet(); } this.length = 0; }; var sheetfn = Stylesheet.prototype; sheetfn.instanceString = function () { return 'stylesheet'; }; // just store the selector to be parsed later sheetfn.selector = function (selector) { var i = this.length++; this[i] = { selector: selector, properties: [] }; return this; // chaining }; // just store the property to be parsed later sheetfn.css = function (name, value) { var i = this.length - 1; if (string(name)) { this[i].properties.push({ name: name, value: value }); } else if (plainObject(name)) { var map = name; var propNames = Object.keys(map); for (var j = 0; j < propNames.length; j++) { var key = propNames[j]; var mapVal = map[key]; if (mapVal == null) { continue; } var prop = Style.properties[key] || Style.properties[dash2camel(key)]; if (prop == null) { continue; } var _name = prop.name; var _value = mapVal; this[i].properties.push({ name: _name, value: _value }); } } return this; // chaining }; sheetfn.style = sheetfn.css; // generate a real style object from the dummy stylesheet sheetfn.generateStyle = function (cy) { var style = new Style(cy); return this.appendToStyle(style); }; // append a dummy stylesheet object on a real style object sheetfn.appendToStyle = function (style) { for (var i = 0; i < this.length; i++) { var context = this[i]; var selector = context.selector; var props = context.properties; style.selector(selector); // apply selector for (var j = 0; j < props.length; j++) { var prop = props[j]; style.css(prop.name, prop.value); // apply property } } return style; }; var version = "3.29.1"; var cytoscape = function cytoscape(options) { // if no options specified, use default if (options === undefined) { options = {}; } // create instance if (plainObject(options)) { return new Core(options); } // allow for registration of extensions else if (string(options)) { return extension.apply(extension, arguments); } }; // e.g. cytoscape.use( require('cytoscape-foo'), bar ) cytoscape.use = function (ext) { var args = Array.prototype.slice.call(arguments, 1); // args to pass to ext args.unshift(cytoscape); // cytoscape is first arg to ext ext.apply(null, args); return this; }; cytoscape.warnings = function (bool) { return warnings(bool); }; // replaced by build system cytoscape.version = version; // expose public apis (mostly for extensions) cytoscape.stylesheet = cytoscape.Stylesheet = Stylesheet; export { cytoscape as default }; ================================================ FILE: dist/cytoscape.umd.js ================================================ /** * Copyright (c) 2016-2024, The Cytoscape Consortium. * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the “Software”), to deal in * the Software without restriction, including without limitation the rights to * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies * of the Software, and to permit persons to whom the Software is furnished to do * so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define === 'function' && define.amd ? define(factory) : (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.cytoscape = factory()); })(this, (function () { 'use strict'; function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; } function _defineProperty$1(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); } function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; } function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function () {}; return { s: F, n: function () { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function (e) { throw e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function () { it = it.call(o); }, n: function () { var step = it.next(); normalCompletion = step.done; return step; }, e: function (e) { didErr = true; err = e; }, f: function () { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; } var _window = typeof window === 'undefined' ? null : window; // eslint-disable-line no-undef var navigator = _window ? _window.navigator : null; _window ? _window.document : null; var typeofstr = _typeof(''); var typeofobj = _typeof({}); var typeoffn = _typeof(function () {}); var typeofhtmlele = typeof HTMLElement === "undefined" ? "undefined" : _typeof(HTMLElement); var instanceStr = function instanceStr(obj) { return obj && obj.instanceString && fn$6(obj.instanceString) ? obj.instanceString() : null; }; var string = function string(obj) { return obj != null && _typeof(obj) == typeofstr; }; var fn$6 = function fn(obj) { return obj != null && _typeof(obj) === typeoffn; }; var array = function array(obj) { return !elementOrCollection(obj) && (Array.isArray ? Array.isArray(obj) : obj != null && obj instanceof Array); }; var plainObject = function plainObject(obj) { return obj != null && _typeof(obj) === typeofobj && !array(obj) && obj.constructor === Object; }; var object = function object(obj) { return obj != null && _typeof(obj) === typeofobj; }; var number$1 = function number(obj) { return obj != null && _typeof(obj) === _typeof(1) && !isNaN(obj); }; var integer = function integer(obj) { return number$1(obj) && Math.floor(obj) === obj; }; var htmlElement = function htmlElement(obj) { if ('undefined' === typeofhtmlele) { return undefined; } else { return null != obj && obj instanceof HTMLElement; } }; var elementOrCollection = function elementOrCollection(obj) { return element(obj) || collection(obj); }; var element = function element(obj) { return instanceStr(obj) === 'collection' && obj._private.single; }; var collection = function collection(obj) { return instanceStr(obj) === 'collection' && !obj._private.single; }; var core = function core(obj) { return instanceStr(obj) === 'core'; }; var stylesheet = function stylesheet(obj) { return instanceStr(obj) === 'stylesheet'; }; var event = function event(obj) { return instanceStr(obj) === 'event'; }; var emptyString = function emptyString(obj) { if (obj === undefined || obj === null) { // null is empty return true; } else if (obj === '' || obj.match(/^\s+$/)) { return true; // empty string is empty } return false; // otherwise, we don't know what we've got }; var domElement = function domElement(obj) { if (typeof HTMLElement === 'undefined') { return false; // we're not in a browser so it doesn't matter } else { return obj instanceof HTMLElement; } }; var boundingBox = function boundingBox(obj) { return plainObject(obj) && number$1(obj.x1) && number$1(obj.x2) && number$1(obj.y1) && number$1(obj.y2); }; var promise = function promise(obj) { return object(obj) && fn$6(obj.then); }; var ms = function ms() { return navigator && navigator.userAgent.match(/msie|trident|edge/i); }; // probably a better way to detect this... var memoize$1 = function memoize(fn, keyFn) { if (!keyFn) { keyFn = function keyFn() { if (arguments.length === 1) { return arguments[0]; } else if (arguments.length === 0) { return 'undefined'; } var args = []; for (var i = 0; i < arguments.length; i++) { args.push(arguments[i]); } return args.join('$'); }; } var memoizedFn = function memoizedFn() { var self = this; var args = arguments; var ret; var k = keyFn.apply(self, args); var cache = memoizedFn.cache; if (!(ret = cache[k])) { ret = cache[k] = fn.apply(self, args); } return ret; }; memoizedFn.cache = {}; return memoizedFn; }; var camel2dash = memoize$1(function (str) { return str.replace(/([A-Z])/g, function (v) { return '-' + v.toLowerCase(); }); }); var dash2camel = memoize$1(function (str) { return str.replace(/(-\w)/g, function (v) { return v[1].toUpperCase(); }); }); var prependCamel = memoize$1(function (prefix, str) { return prefix + str[0].toUpperCase() + str.substring(1); }, function (prefix, str) { return prefix + '$' + str; }); var capitalize = function capitalize(str) { if (emptyString(str)) { return str; } return str.charAt(0).toUpperCase() + str.substring(1); }; var number = '(?:[-+]?(?:(?:\\d+|\\d*\\.\\d+)(?:[Ee][+-]?\\d+)?))'; var rgba = 'rgb[a]?\\((' + number + '[%]?)\\s*,\\s*(' + number + '[%]?)\\s*,\\s*(' + number + '[%]?)(?:\\s*,\\s*(' + number + '))?\\)'; var rgbaNoBackRefs = 'rgb[a]?\\((?:' + number + '[%]?)\\s*,\\s*(?:' + number + '[%]?)\\s*,\\s*(?:' + number + '[%]?)(?:\\s*,\\s*(?:' + number + '))?\\)'; var hsla = 'hsl[a]?\\((' + number + ')\\s*,\\s*(' + number + '[%])\\s*,\\s*(' + number + '[%])(?:\\s*,\\s*(' + number + '))?\\)'; var hslaNoBackRefs = 'hsl[a]?\\((?:' + number + ')\\s*,\\s*(?:' + number + '[%])\\s*,\\s*(?:' + number + '[%])(?:\\s*,\\s*(?:' + number + '))?\\)'; var hex3 = '\\#[0-9a-fA-F]{3}'; var hex6 = '\\#[0-9a-fA-F]{6}'; var ascending = function ascending(a, b) { if (a < b) { return -1; } else if (a > b) { return 1; } else { return 0; } }; var descending = function descending(a, b) { return -1 * ascending(a, b); }; var extend = Object.assign != null ? Object.assign.bind(Object) : function (tgt) { var args = arguments; for (var i = 1; i < args.length; i++) { var obj = args[i]; if (obj == null) { continue; } var keys = Object.keys(obj); for (var j = 0; j < keys.length; j++) { var k = keys[j]; tgt[k] = obj[k]; } } return tgt; }; // get [r, g, b] from #abc or #aabbcc var hex2tuple = function hex2tuple(hex) { if (!(hex.length === 4 || hex.length === 7) || hex[0] !== '#') { return; } var shortHex = hex.length === 4; var r, g, b; var base = 16; if (shortHex) { r = parseInt(hex[1] + hex[1], base); g = parseInt(hex[2] + hex[2], base); b = parseInt(hex[3] + hex[3], base); } else { r = parseInt(hex[1] + hex[2], base); g = parseInt(hex[3] + hex[4], base); b = parseInt(hex[5] + hex[6], base); } return [r, g, b]; }; // get [r, g, b, a] from hsl(0, 0, 0) or hsla(0, 0, 0, 0) var hsl2tuple = function hsl2tuple(hsl) { var ret; var h, s, l, a, r, g, b; function hue2rgb(p, q, t) { if (t < 0) t += 1; if (t > 1) t -= 1; if (t < 1 / 6) return p + (q - p) * 6 * t; if (t < 1 / 2) return q; if (t < 2 / 3) return p + (q - p) * (2 / 3 - t) * 6; return p; } var m = new RegExp('^' + hsla + '$').exec(hsl); if (m) { // get hue h = parseInt(m[1]); if (h < 0) { h = (360 - -1 * h % 360) % 360; } else if (h > 360) { h = h % 360; } h /= 360; // normalise on [0, 1] s = parseFloat(m[2]); if (s < 0 || s > 100) { return; } // saturation is [0, 100] s = s / 100; // normalise on [0, 1] l = parseFloat(m[3]); if (l < 0 || l > 100) { return; } // lightness is [0, 100] l = l / 100; // normalise on [0, 1] a = m[4]; if (a !== undefined) { a = parseFloat(a); if (a < 0 || a > 1) { return; } // alpha is [0, 1] } // now, convert to rgb // code from http://mjijackson.com/2008/02/rgb-to-hsl-and-rgb-to-hsv-color-model-conversion-algorithms-in-javascript if (s === 0) { r = g = b = Math.round(l * 255); // achromatic } else { var q = l < 0.5 ? l * (1 + s) : l + s - l * s; var p = 2 * l - q; r = Math.round(255 * hue2rgb(p, q, h + 1 / 3)); g = Math.round(255 * hue2rgb(p, q, h)); b = Math.round(255 * hue2rgb(p, q, h - 1 / 3)); } ret = [r, g, b, a]; } return ret; }; // get [r, g, b, a] from rgb(0, 0, 0) or rgba(0, 0, 0, 0) var rgb2tuple = function rgb2tuple(rgb) { var ret; var m = new RegExp('^' + rgba + '$').exec(rgb); if (m) { ret = []; var isPct = []; for (var i = 1; i <= 3; i++) { var channel = m[i]; if (channel[channel.length - 1] === '%') { isPct[i] = true; } channel = parseFloat(channel); if (isPct[i]) { channel = channel / 100 * 255; // normalise to [0, 255] } if (channel < 0 || channel > 255) { return; } // invalid channel value ret.push(Math.floor(channel)); } var atLeastOneIsPct = isPct[1] || isPct[2] || isPct[3]; var allArePct = isPct[1] && isPct[2] && isPct[3]; if (atLeastOneIsPct && !allArePct) { return; } // must all be percent values if one is var alpha = m[4]; if (alpha !== undefined) { alpha = parseFloat(alpha); if (alpha < 0 || alpha > 1) { return; } // invalid alpha value ret.push(alpha); } } return ret; }; var colorname2tuple = function colorname2tuple(color) { return colors[color.toLowerCase()]; }; var color2tuple = function color2tuple(color) { return (array(color) ? color : null) || colorname2tuple(color) || hex2tuple(color) || rgb2tuple(color) || hsl2tuple(color); }; var colors = { // special colour names transparent: [0, 0, 0, 0], // NB alpha === 0 // regular colours aliceblue: [240, 248, 255], antiquewhite: [250, 235, 215], aqua: [0, 255, 255], aquamarine: [127, 255, 212], azure: [240, 255, 255], beige: [245, 245, 220], bisque: [255, 228, 196], black: [0, 0, 0], blanchedalmond: [255, 235, 205], blue: [0, 0, 255], blueviolet: [138, 43, 226], brown: [165, 42, 42], burlywood: [222, 184, 135], cadetblue: [95, 158, 160], chartreuse: [127, 255, 0], chocolate: [210, 105, 30], coral: [255, 127, 80], cornflowerblue: [100, 149, 237], cornsilk: [255, 248, 220], crimson: [220, 20, 60], cyan: [0, 255, 255], darkblue: [0, 0, 139], darkcyan: [0, 139, 139], darkgoldenrod: [184, 134, 11], darkgray: [169, 169, 169], darkgreen: [0, 100, 0], darkgrey: [169, 169, 169], darkkhaki: [189, 183, 107], darkmagenta: [139, 0, 139], darkolivegreen: [85, 107, 47], darkorange: [255, 140, 0], darkorchid: [153, 50, 204], darkred: [139, 0, 0], darksalmon: [233, 150, 122], darkseagreen: [143, 188, 143], darkslateblue: [72, 61, 139], darkslategray: [47, 79, 79], darkslategrey: [47, 79, 79], darkturquoise: [0, 206, 209], darkviolet: [148, 0, 211], deeppink: [255, 20, 147], deepskyblue: [0, 191, 255], dimgray: [105, 105, 105], dimgrey: [105, 105, 105], dodgerblue: [30, 144, 255], firebrick: [178, 34, 34], floralwhite: [255, 250, 240], forestgreen: [34, 139, 34], fuchsia: [255, 0, 255], gainsboro: [220, 220, 220], ghostwhite: [248, 248, 255], gold: [255, 215, 0], goldenrod: [218, 165, 32], gray: [128, 128, 128], grey: [128, 128, 128], green: [0, 128, 0], greenyellow: [173, 255, 47], honeydew: [240, 255, 240], hotpink: [255, 105, 180], indianred: [205, 92, 92], indigo: [75, 0, 130], ivory: [255, 255, 240], khaki: [240, 230, 140], lavender: [230, 230, 250], lavenderblush: [255, 240, 245], lawngreen: [124, 252, 0], lemonchiffon: [255, 250, 205], lightblue: [173, 216, 230], lightcoral: [240, 128, 128], lightcyan: [224, 255, 255], lightgoldenrodyellow: [250, 250, 210], lightgray: [211, 211, 211], lightgreen: [144, 238, 144], lightgrey: [211, 211, 211], lightpink: [255, 182, 193], lightsalmon: [255, 160, 122], lightseagreen: [32, 178, 170], lightskyblue: [135, 206, 250], lightslategray: [119, 136, 153], lightslategrey: [119, 136, 153], lightsteelblue: [176, 196, 222], lightyellow: [255, 255, 224], lime: [0, 255, 0], limegreen: [50, 205, 50], linen: [250, 240, 230], magenta: [255, 0, 255], maroon: [128, 0, 0], mediumaquamarine: [102, 205, 170], mediumblue: [0, 0, 205], mediumorchid: [186, 85, 211], mediumpurple: [147, 112, 219], mediumseagreen: [60, 179, 113], mediumslateblue: [123, 104, 238], mediumspringgreen: [0, 250, 154], mediumturquoise: [72, 209, 204], mediumvioletred: [199, 21, 133], midnightblue: [25, 25, 112], mintcream: [245, 255, 250], mistyrose: [255, 228, 225], moccasin: [255, 228, 181], navajowhite: [255, 222, 173], navy: [0, 0, 128], oldlace: [253, 245, 230], olive: [128, 128, 0], olivedrab: [107, 142, 35], orange: [255, 165, 0], orangered: [255, 69, 0], orchid: [218, 112, 214], palegoldenrod: [238, 232, 170], palegreen: [152, 251, 152], paleturquoise: [175, 238, 238], palevioletred: [219, 112, 147], papayawhip: [255, 239, 213], peachpuff: [255, 218, 185], peru: [205, 133, 63], pink: [255, 192, 203], plum: [221, 160, 221], powderblue: [176, 224, 230], purple: [128, 0, 128], red: [255, 0, 0], rosybrown: [188, 143, 143], royalblue: [65, 105, 225], saddlebrown: [139, 69, 19], salmon: [250, 128, 114], sandybrown: [244, 164, 96], seagreen: [46, 139, 87], seashell: [255, 245, 238], sienna: [160, 82, 45], silver: [192, 192, 192], skyblue: [135, 206, 235], slateblue: [106, 90, 205], slategray: [112, 128, 144], slategrey: [112, 128, 144], snow: [255, 250, 250], springgreen: [0, 255, 127], steelblue: [70, 130, 180], tan: [210, 180, 140], teal: [0, 128, 128], thistle: [216, 191, 216], tomato: [255, 99, 71], turquoise: [64, 224, 208], violet: [238, 130, 238], wheat: [245, 222, 179], white: [255, 255, 255], whitesmoke: [245, 245, 245], yellow: [255, 255, 0], yellowgreen: [154, 205, 50] }; // sets the value in a map (map may not be built) var setMap = function setMap(options) { var obj = options.map; var keys = options.keys; var l = keys.length; for (var i = 0; i < l; i++) { var key = keys[i]; if (plainObject(key)) { throw Error('Tried to set map with object key'); } if (i < keys.length - 1) { // extend the map if necessary if (obj[key] == null) { obj[key] = {}; } obj = obj[key]; } else { // set the value obj[key] = options.value; } } }; // gets the value in a map even if it's not built in places var getMap = function getMap(options) { var obj = options.map; var keys = options.keys; var l = keys.length; for (var i = 0; i < l; i++) { var key = keys[i]; if (plainObject(key)) { throw Error('Tried to get map with object key'); } obj = obj[key]; if (obj == null) { return obj; } } return obj; }; /** * Checks if `value` is the * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types) * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`) * * @static * @memberOf _ * @since 0.1.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is an object, else `false`. * @example * * _.isObject({}); * // => true * * _.isObject([1, 2, 3]); * // => true * * _.isObject(_.noop); * // => true * * _.isObject(null); * // => false */ function isObject(value) { var type = typeof value; return value != null && (type == 'object' || type == 'function'); } var isObject_1 = isObject; var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; function createCommonjsModule(fn, module) { return module = { exports: {} }, fn(module, module.exports), module.exports; } /** Detect free variable `global` from Node.js. */ var freeGlobal = typeof commonjsGlobal == 'object' && commonjsGlobal && commonjsGlobal.Object === Object && commonjsGlobal; var _freeGlobal = freeGlobal; /** Detect free variable `self`. */ var freeSelf = typeof self == 'object' && self && self.Object === Object && self; /** Used as a reference to the global object. */ var root = _freeGlobal || freeSelf || Function('return this')(); var _root = root; /** * Gets the timestamp of the number of milliseconds that have elapsed since * the Unix epoch (1 January 1970 00:00:00 UTC). * * @static * @memberOf _ * @since 2.4.0 * @category Date * @returns {number} Returns the timestamp. * @example * * _.defer(function(stamp) { * console.log(_.now() - stamp); * }, _.now()); * // => Logs the number of milliseconds it took for the deferred invocation. */ var now = function() { return _root.Date.now(); }; var now_1 = now; /** Used to match a single whitespace character. */ var reWhitespace = /\s/; /** * Used by `_.trim` and `_.trimEnd` to get the index of the last non-whitespace * character of `string`. * * @private * @param {string} string The string to inspect. * @returns {number} Returns the index of the last non-whitespace character. */ function trimmedEndIndex(string) { var index = string.length; while (index-- && reWhitespace.test(string.charAt(index))) {} return index; } var _trimmedEndIndex = trimmedEndIndex; /** Used to match leading whitespace. */ var reTrimStart = /^\s+/; /** * The base implementation of `_.trim`. * * @private * @param {string} string The string to trim. * @returns {string} Returns the trimmed string. */ function baseTrim(string) { return string ? string.slice(0, _trimmedEndIndex(string) + 1).replace(reTrimStart, '') : string; } var _baseTrim = baseTrim; /** Built-in value references. */ var Symbol$1 = _root.Symbol; var _Symbol = Symbol$1; /** Used for built-in method references. */ var objectProto$5 = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty$4 = objectProto$5.hasOwnProperty; /** * Used to resolve the * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) * of values. */ var nativeObjectToString$1 = objectProto$5.toString; /** Built-in value references. */ var symToStringTag$1 = _Symbol ? _Symbol.toStringTag : undefined; /** * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values. * * @private * @param {*} value The value to query. * @returns {string} Returns the raw `toStringTag`. */ function getRawTag(value) { var isOwn = hasOwnProperty$4.call(value, symToStringTag$1), tag = value[symToStringTag$1]; try { value[symToStringTag$1] = undefined; var unmasked = true; } catch (e) {} var result = nativeObjectToString$1.call(value); if (unmasked) { if (isOwn) { value[symToStringTag$1] = tag; } else { delete value[symToStringTag$1]; } } return result; } var _getRawTag = getRawTag; /** Used for built-in method references. */ var objectProto$4 = Object.prototype; /** * Used to resolve the * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) * of values. */ var nativeObjectToString = objectProto$4.toString; /** * Converts `value` to a string using `Object.prototype.toString`. * * @private * @param {*} value The value to convert. * @returns {string} Returns the converted string. */ function objectToString(value) { return nativeObjectToString.call(value); } var _objectToString = objectToString; /** `Object#toString` result references. */ var nullTag = '[object Null]', undefinedTag = '[object Undefined]'; /** Built-in value references. */ var symToStringTag = _Symbol ? _Symbol.toStringTag : undefined; /** * The base implementation of `getTag` without fallbacks for buggy environments. * * @private * @param {*} value The value to query. * @returns {string} Returns the `toStringTag`. */ function baseGetTag(value) { if (value == null) { return value === undefined ? undefinedTag : nullTag; } return (symToStringTag && symToStringTag in Object(value)) ? _getRawTag(value) : _objectToString(value); } var _baseGetTag = baseGetTag; /** * Checks if `value` is object-like. A value is object-like if it's not `null` * and has a `typeof` result of "object". * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is object-like, else `false`. * @example * * _.isObjectLike({}); * // => true * * _.isObjectLike([1, 2, 3]); * // => true * * _.isObjectLike(_.noop); * // => false * * _.isObjectLike(null); * // => false */ function isObjectLike(value) { return value != null && typeof value == 'object'; } var isObjectLike_1 = isObjectLike; /** `Object#toString` result references. */ var symbolTag = '[object Symbol]'; /** * Checks if `value` is classified as a `Symbol` primitive or object. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a symbol, else `false`. * @example * * _.isSymbol(Symbol.iterator); * // => true * * _.isSymbol('abc'); * // => false */ function isSymbol(value) { return typeof value == 'symbol' || (isObjectLike_1(value) && _baseGetTag(value) == symbolTag); } var isSymbol_1 = isSymbol; /** Used as references for various `Number` constants. */ var NAN = 0 / 0; /** Used to detect bad signed hexadecimal string values. */ var reIsBadHex = /^[-+]0x[0-9a-f]+$/i; /** Used to detect binary string values. */ var reIsBinary = /^0b[01]+$/i; /** Used to detect octal string values. */ var reIsOctal = /^0o[0-7]+$/i; /** Built-in method references without a dependency on `root`. */ var freeParseInt = parseInt; /** * Converts `value` to a number. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to process. * @returns {number} Returns the number. * @example * * _.toNumber(3.2); * // => 3.2 * * _.toNumber(Number.MIN_VALUE); * // => 5e-324 * * _.toNumber(Infinity); * // => Infinity * * _.toNumber('3.2'); * // => 3.2 */ function toNumber(value) { if (typeof value == 'number') { return value; } if (isSymbol_1(value)) { return NAN; } if (isObject_1(value)) { var other = typeof value.valueOf == 'function' ? value.valueOf() : value; value = isObject_1(other) ? (other + '') : other; } if (typeof value != 'string') { return value === 0 ? value : +value; } value = _baseTrim(value); var isBinary = reIsBinary.test(value); return (isBinary || reIsOctal.test(value)) ? freeParseInt(value.slice(2), isBinary ? 2 : 8) : (reIsBadHex.test(value) ? NAN : +value); } var toNumber_1 = toNumber; /** Error message constants. */ var FUNC_ERROR_TEXT$1 = 'Expected a function'; /* Built-in method references for those with the same name as other `lodash` methods. */ var nativeMax = Math.max, nativeMin = Math.min; /** * Creates a debounced function that delays invoking `func` until after `wait` * milliseconds have elapsed since the last time the debounced function was * invoked. The debounced function comes with a `cancel` method to cancel * delayed `func` invocations and a `flush` method to immediately invoke them. * Provide `options` to indicate whether `func` should be invoked on the * leading and/or trailing edge of the `wait` timeout. The `func` is invoked * with the last arguments provided to the debounced function. Subsequent * calls to the debounced function return the result of the last `func` * invocation. * * **Note:** If `leading` and `trailing` options are `true`, `func` is * invoked on the trailing edge of the timeout only if the debounced function * is invoked more than once during the `wait` timeout. * * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred * until to the next tick, similar to `setTimeout` with a timeout of `0`. * * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/) * for details over the differences between `_.debounce` and `_.throttle`. * * @static * @memberOf _ * @since 0.1.0 * @category Function * @param {Function} func The function to debounce. * @param {number} [wait=0] The number of milliseconds to delay. * @param {Object} [options={}] The options object. * @param {boolean} [options.leading=false] * Specify invoking on the leading edge of the timeout. * @param {number} [options.maxWait] * The maximum time `func` is allowed to be delayed before it's invoked. * @param {boolean} [options.trailing=true] * Specify invoking on the trailing edge of the timeout. * @returns {Function} Returns the new debounced function. * @example * * // Avoid costly calculations while the window size is in flux. * jQuery(window).on('resize', _.debounce(calculateLayout, 150)); * * // Invoke `sendMail` when clicked, debouncing subsequent calls. * jQuery(element).on('click', _.debounce(sendMail, 300, { * 'leading': true, * 'trailing': false * })); * * // Ensure `batchLog` is invoked once after 1 second of debounced calls. * var debounced = _.debounce(batchLog, 250, { 'maxWait': 1000 }); * var source = new EventSource('/stream'); * jQuery(source).on('message', debounced); * * // Cancel the trailing debounced invocation. * jQuery(window).on('popstate', debounced.cancel); */ function debounce(func, wait, options) { var lastArgs, lastThis, maxWait, result, timerId, lastCallTime, lastInvokeTime = 0, leading = false, maxing = false, trailing = true; if (typeof func != 'function') { throw new TypeError(FUNC_ERROR_TEXT$1); } wait = toNumber_1(wait) || 0; if (isObject_1(options)) { leading = !!options.leading; maxing = 'maxWait' in options; maxWait = maxing ? nativeMax(toNumber_1(options.maxWait) || 0, wait) : maxWait; trailing = 'trailing' in options ? !!options.trailing : trailing; } function invokeFunc(time) { var args = lastArgs, thisArg = lastThis; lastArgs = lastThis = undefined; lastInvokeTime = time; result = func.apply(thisArg, args); return result; } function leadingEdge(time) { // Reset any `maxWait` timer. lastInvokeTime = time; // Start the timer for the trailing edge. timerId = setTimeout(timerExpired, wait); // Invoke the leading edge. return leading ? invokeFunc(time) : result; } function remainingWait(time) { var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime, timeWaiting = wait - timeSinceLastCall; return maxing ? nativeMin(timeWaiting, maxWait - timeSinceLastInvoke) : timeWaiting; } function shouldInvoke(time) { var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime; // Either this is the first call, activity has stopped and we're at the // trailing edge, the system time has gone backwards and we're treating // it as the trailing edge, or we've hit the `maxWait` limit. return (lastCallTime === undefined || (timeSinceLastCall >= wait) || (timeSinceLastCall < 0) || (maxing && timeSinceLastInvoke >= maxWait)); } function timerExpired() { var time = now_1(); if (shouldInvoke(time)) { return trailingEdge(time); } // Restart the timer. timerId = setTimeout(timerExpired, remainingWait(time)); } function trailingEdge(time) { timerId = undefined; // Only invoke if we have `lastArgs` which means `func` has been // debounced at least once. if (trailing && lastArgs) { return invokeFunc(time); } lastArgs = lastThis = undefined; return result; } function cancel() { if (timerId !== undefined) { clearTimeout(timerId); } lastInvokeTime = 0; lastArgs = lastCallTime = lastThis = timerId = undefined; } function flush() { return timerId === undefined ? result : trailingEdge(now_1()); } function debounced() { var time = now_1(), isInvoking = shouldInvoke(time); lastArgs = arguments; lastThis = this; lastCallTime = time; if (isInvoking) { if (timerId === undefined) { return leadingEdge(lastCallTime); } if (maxing) { // Handle invocations in a tight loop. clearTimeout(timerId); timerId = setTimeout(timerExpired, wait); return invokeFunc(lastCallTime); } } if (timerId === undefined) { timerId = setTimeout(timerExpired, wait); } return result; } debounced.cancel = cancel; debounced.flush = flush; return debounced; } var debounce_1 = debounce; var performance = _window ? _window.performance : null; var pnow = performance && performance.now ? function () { return performance.now(); } : function () { return Date.now(); }; var raf = function () { if (_window) { if (_window.requestAnimationFrame) { return function (fn) { _window.requestAnimationFrame(fn); }; } else if (_window.mozRequestAnimationFrame) { return function (fn) { _window.mozRequestAnimationFrame(fn); }; } else if (_window.webkitRequestAnimationFrame) { return function (fn) { _window.webkitRequestAnimationFrame(fn); }; } else if (_window.msRequestAnimationFrame) { return function (fn) { _window.msRequestAnimationFrame(fn); }; } } return function (fn) { if (fn) { setTimeout(function () { fn(pnow()); }, 1000 / 60); } }; }(); var requestAnimationFrame = function requestAnimationFrame(fn) { return raf(fn); }; var performanceNow = pnow; var DEFAULT_HASH_SEED = 9261; var K = 65599; // 37 also works pretty well var DEFAULT_HASH_SEED_ALT = 5381; var hashIterableInts = function hashIterableInts(iterator) { var seed = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : DEFAULT_HASH_SEED; // sdbm/string-hash var hash = seed; var entry; for (;;) { entry = iterator.next(); if (entry.done) { break; } hash = hash * K + entry.value | 0; } return hash; }; var hashInt = function hashInt(num) { var seed = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : DEFAULT_HASH_SEED; // sdbm/string-hash return seed * K + num | 0; }; var hashIntAlt = function hashIntAlt(num) { var seed = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : DEFAULT_HASH_SEED_ALT; // djb2/string-hash return (seed << 5) + seed + num | 0; }; var combineHashes = function combineHashes(hash1, hash2) { return hash1 * 0x200000 + hash2; }; var combineHashesArray = function combineHashesArray(hashes) { return hashes[0] * 0x200000 + hashes[1]; }; var hashArrays = function hashArrays(hashes1, hashes2) { return [hashInt(hashes1[0], hashes2[0]), hashIntAlt(hashes1[1], hashes2[1])]; }; var hashIntsArray = function hashIntsArray(ints, seed) { var entry = { value: 0, done: false }; var i = 0; var length = ints.length; var iterator = { next: function next() { if (i < length) { entry.value = ints[i++]; } else { entry.done = true; } return entry; } }; return hashIterableInts(iterator, seed); }; var hashString = function hashString(str, seed) { var entry = { value: 0, done: false }; var i = 0; var length = str.length; var iterator = { next: function next() { if (i < length) { entry.value = str.charCodeAt(i++); } else { entry.done = true; } return entry; } }; return hashIterableInts(iterator, seed); }; var hashStrings = function hashStrings() { return hashStringsArray(arguments); }; var hashStringsArray = function hashStringsArray(strs) { var hash; for (var i = 0; i < strs.length; i++) { var str = strs[i]; if (i === 0) { hash = hashString(str); } else { hash = hashString(str, hash); } } return hash; }; /*global console */ var warningsEnabled = true; var warnSupported = console.warn != null; // eslint-disable-line no-console var traceSupported = console.trace != null; // eslint-disable-line no-console var MAX_INT$1 = Number.MAX_SAFE_INTEGER || 9007199254740991; var trueify = function trueify() { return true; }; var falsify = function falsify() { return false; }; var zeroify = function zeroify() { return 0; }; var noop$1 = function noop() {}; var error = function error(msg) { throw new Error(msg); }; var warnings = function warnings(enabled) { if (enabled !== undefined) { warningsEnabled = !!enabled; } else { return warningsEnabled; } }; var warn = function warn(msg) { /* eslint-disable no-console */ if (!warnings()) { return; } if (warnSupported) { console.warn(msg); } else { console.log(msg); if (traceSupported) { console.trace(); } } }; /* eslint-enable */ var clone = function clone(obj) { return extend({}, obj); }; // gets a shallow copy of the argument var copy = function copy(obj) { if (obj == null) { return obj; } if (array(obj)) { return obj.slice(); } else if (plainObject(obj)) { return clone(obj); } else { return obj; } }; var copyArray$1 = function copyArray(arr) { return arr.slice(); }; var uuid = function uuid(a, b /* placeholders */) { for ( // loop :) b = a = ''; // b - result , a - numeric letiable a++ < 36; // b += a * 51 & 52 // if "a" is not 9 or 14 or 19 or 24 ? // return a random number or 4 (a ^ 15 // if "a" is not 15 ? // generate a random number from 0 to 15 8 ^ Math.random() * (a ^ 20 ? 16 : 4) // unless "a" is 20, in which case a random number from 8 to 11 : 4 // otherwise 4 ).toString(16) : '-' // in other cases (if "a" is 9,14,19,24) insert "-" ) { } return b; }; var _staticEmptyObject = {}; var staticEmptyObject = function staticEmptyObject() { return _staticEmptyObject; }; var defaults$g = function defaults(_defaults) { var keys = Object.keys(_defaults); return function (opts) { var filledOpts = {}; for (var i = 0; i < keys.length; i++) { var key = keys[i]; var optVal = opts == null ? undefined : opts[key]; filledOpts[key] = optVal === undefined ? _defaults[key] : optVal; } return filledOpts; }; }; var removeFromArray = function removeFromArray(arr, ele, oneCopy) { for (var i = arr.length - 1; i >= 0; i--) { if (arr[i] === ele) { arr.splice(i, 1); if (oneCopy) { break; } } } }; var clearArray = function clearArray(arr) { arr.splice(0, arr.length); }; var push = function push(arr, otherArr) { for (var i = 0; i < otherArr.length; i++) { var el = otherArr[i]; arr.push(el); } }; var getPrefixedProperty = function getPrefixedProperty(obj, propName, prefix) { if (prefix) { propName = prependCamel(prefix, propName); // e.g. (labelWidth, source) => sourceLabelWidth } return obj[propName]; }; var setPrefixedProperty = function setPrefixedProperty(obj, propName, prefix, value) { if (prefix) { propName = prependCamel(prefix, propName); // e.g. (labelWidth, source) => sourceLabelWidth } obj[propName] = value; }; /* global Map */ var ObjectMap = /*#__PURE__*/function () { function ObjectMap() { _classCallCheck(this, ObjectMap); this._obj = {}; } _createClass(ObjectMap, [{ key: "set", value: function set(key, val) { this._obj[key] = val; return this; } }, { key: "delete", value: function _delete(key) { this._obj[key] = undefined; return this; } }, { key: "clear", value: function clear() { this._obj = {}; } }, { key: "has", value: function has(key) { return this._obj[key] !== undefined; } }, { key: "get", value: function get(key) { return this._obj[key]; } }]); return ObjectMap; }(); var Map$2 = typeof Map !== 'undefined' ? Map : ObjectMap; /* global Set */ var undef = "undefined" ; var ObjectSet = /*#__PURE__*/function () { function ObjectSet(arrayOrObjectSet) { _classCallCheck(this, ObjectSet); this._obj = Object.create(null); this.size = 0; if (arrayOrObjectSet != null) { var arr; if (arrayOrObjectSet.instanceString != null && arrayOrObjectSet.instanceString() === this.instanceString()) { arr = arrayOrObjectSet.toArray(); } else { arr = arrayOrObjectSet; } for (var i = 0; i < arr.length; i++) { this.add(arr[i]); } } } _createClass(ObjectSet, [{ key: "instanceString", value: function instanceString() { return 'set'; } }, { key: "add", value: function add(val) { var o = this._obj; if (o[val] !== 1) { o[val] = 1; this.size++; } } }, { key: "delete", value: function _delete(val) { var o = this._obj; if (o[val] === 1) { o[val] = 0; this.size--; } } }, { key: "clear", value: function clear() { this._obj = Object.create(null); } }, { key: "has", value: function has(val) { return this._obj[val] === 1; } }, { key: "toArray", value: function toArray() { var _this = this; return Object.keys(this._obj).filter(function (key) { return _this.has(key); }); } }, { key: "forEach", value: function forEach(callback, thisArg) { return this.toArray().forEach(callback, thisArg); } }]); return ObjectSet; }(); var Set$1 = (typeof Set === "undefined" ? "undefined" : _typeof(Set)) !== undef ? Set : ObjectSet; // represents a node or an edge var Element = function Element(cy, params) { var restore = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true; if (cy === undefined || params === undefined || !core(cy)) { error('An element must have a core reference and parameters set'); return; } var group = params.group; // try to automatically infer the group if unspecified if (group == null) { if (params.data && params.data.source != null && params.data.target != null) { group = 'edges'; } else { group = 'nodes'; } } // validate group if (group !== 'nodes' && group !== 'edges') { error('An element must be of type `nodes` or `edges`; you specified `' + group + '`'); return; } // make the element array-like, just like a collection this.length = 1; this[0] = this; // NOTE: when something is added here, add also to ele.json() var _p = this._private = { cy: cy, single: true, // indicates this is an element data: params.data || {}, // data object position: params.position || { x: 0, y: 0 }, // (x, y) position pair autoWidth: undefined, // width and height of nodes calculated by the renderer when set to special 'auto' value autoHeight: undefined, autoPadding: undefined, compoundBoundsClean: false, // whether the compound dimensions need to be recalculated the next time dimensions are read listeners: [], // array of bound listeners group: group, // string; 'nodes' or 'edges' style: {}, // properties as set by the style rstyle: {}, // properties for style sent from the renderer to the core styleCxts: [], // applied style contexts from the styler styleKeys: {}, // per-group keys of style property values removed: true, // whether it's inside the vis; true if removed (set true here since we call restore) selected: params.selected ? true : false, // whether it's selected selectable: params.selectable === undefined ? true : params.selectable ? true : false, // whether it's selectable locked: params.locked ? true : false, // whether the element is locked (cannot be moved) grabbed: false, // whether the element is grabbed by the mouse; renderer sets this privately grabbable: params.grabbable === undefined ? true : params.grabbable ? true : false, // whether the element can be grabbed pannable: params.pannable === undefined ? group === 'edges' ? true : false : params.pannable ? true : false, // whether the element has passthrough panning enabled active: false, // whether the element is active from user interaction classes: new Set$1(), // map ( className => true ) animation: { // object for currently-running animations current: [], queue: [] }, rscratch: {}, // object in which the renderer can store information scratch: params.scratch || {}, // scratch objects edges: [], // array of connected edges children: [], // array of children parent: params.parent && params.parent.isNode() ? params.parent : null, // parent ref traversalCache: {}, // cache of output of traversal functions backgrounding: false, // whether background images are loading bbCache: null, // cache of the current bounding box bbCacheShift: { x: 0, y: 0 }, // shift applied to cached bb to be applied on next get bodyBounds: null, // bounds cache of element body, w/o overlay overlayBounds: null, // bounds cache of element body, including overlay labelBounds: { // bounds cache of labels all: null, source: null, target: null, main: null }, arrowBounds: { // bounds cache of edge arrows source: null, target: null, 'mid-source': null, 'mid-target': null } }; if (_p.position.x == null) { _p.position.x = 0; } if (_p.position.y == null) { _p.position.y = 0; } // renderedPosition overrides if specified if (params.renderedPosition) { var rpos = params.renderedPosition; var pan = cy.pan(); var zoom = cy.zoom(); _p.position = { x: (rpos.x - pan.x) / zoom, y: (rpos.y - pan.y) / zoom }; } var classes = []; if (array(params.classes)) { classes = params.classes; } else if (string(params.classes)) { classes = params.classes.split(/\s+/); } for (var i = 0, l = classes.length; i < l; i++) { var cls = classes[i]; if (!cls || cls === '') { continue; } _p.classes.add(cls); } this.createEmitter(); var bypass = params.style || params.css; if (bypass) { warn('Setting a `style` bypass at element creation should be done only when absolutely necessary. Try to use the stylesheet instead.'); this.style(bypass); } if (restore === undefined || restore) { this.restore(); } }; var defineSearch = function defineSearch(params) { params = { bfs: params.bfs || !params.dfs, dfs: params.dfs || !params.bfs }; // from pseudocode on wikipedia return function searchFn(roots, fn, directed) { var options; if (plainObject(roots) && !elementOrCollection(roots)) { options = roots; roots = options.roots || options.root; fn = options.visit; directed = options.directed; } directed = arguments.length === 2 && !fn$6(fn) ? fn : directed; fn = fn$6(fn) ? fn : function () {}; var cy = this._private.cy; var v = roots = string(roots) ? this.filter(roots) : roots; var Q = []; var connectedNodes = []; var connectedBy = {}; var id2depth = {}; var V = {}; var j = 0; var found; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; // enqueue v for (var i = 0; i < v.length; i++) { var vi = v[i]; var viId = vi.id(); if (vi.isNode()) { Q.unshift(vi); if (params.bfs) { V[viId] = true; connectedNodes.push(vi); } id2depth[viId] = 0; } } var _loop = function _loop() { var v = params.bfs ? Q.shift() : Q.pop(); var vId = v.id(); if (params.dfs) { if (V[vId]) { return "continue"; } V[vId] = true; connectedNodes.push(v); } var depth = id2depth[vId]; var prevEdge = connectedBy[vId]; var src = prevEdge != null ? prevEdge.source() : null; var tgt = prevEdge != null ? prevEdge.target() : null; var prevNode = prevEdge == null ? undefined : v.same(src) ? tgt[0] : src[0]; var ret = void 0; ret = fn(v, prevEdge, prevNode, j++, depth); if (ret === true) { found = v; return "break"; } if (ret === false) { return "break"; } var vwEdges = v.connectedEdges().filter(function (e) { return (!directed || e.source().same(v)) && edges.has(e); }); for (var _i2 = 0; _i2 < vwEdges.length; _i2++) { var e = vwEdges[_i2]; var w = e.connectedNodes().filter(function (n) { return !n.same(v) && nodes.has(n); }); var wId = w.id(); if (w.length !== 0 && !V[wId]) { w = w[0]; Q.push(w); if (params.bfs) { V[wId] = true; connectedNodes.push(w); } connectedBy[wId] = e; id2depth[wId] = id2depth[vId] + 1; } } }; while (Q.length !== 0) { var _ret = _loop(); if (_ret === "continue") continue; if (_ret === "break") break; } var connectedEles = cy.collection(); for (var _i = 0; _i < connectedNodes.length; _i++) { var node = connectedNodes[_i]; var edge = connectedBy[node.id()]; if (edge != null) { connectedEles.push(edge); } connectedEles.push(node); } return { path: cy.collection(connectedEles), found: cy.collection(found) }; }; }; // search, spanning trees, etc var elesfn$v = { breadthFirstSearch: defineSearch({ bfs: true }), depthFirstSearch: defineSearch({ dfs: true }) }; // nice, short mathematical alias elesfn$v.bfs = elesfn$v.breadthFirstSearch; elesfn$v.dfs = elesfn$v.depthFirstSearch; var heap$1 = createCommonjsModule(function (module, exports) { // Generated by CoffeeScript 1.8.0 (function() { var Heap, defaultCmp, floor, heapify, heappop, heappush, heappushpop, heapreplace, insort, min, nlargest, nsmallest, updateItem, _siftdown, _siftup; floor = Math.floor, min = Math.min; /* Default comparison function to be used */ defaultCmp = function(x, y) { if (x < y) { return -1; } if (x > y) { return 1; } return 0; }; /* Insert item x in list a, and keep it sorted assuming a is sorted. If x is already in a, insert it to the right of the rightmost x. Optional args lo (default 0) and hi (default a.length) bound the slice of a to be searched. */ insort = function(a, x, lo, hi, cmp) { var mid; if (lo == null) { lo = 0; } if (cmp == null) { cmp = defaultCmp; } if (lo < 0) { throw new Error('lo must be non-negative'); } if (hi == null) { hi = a.length; } while (lo < hi) { mid = floor((lo + hi) / 2); if (cmp(x, a[mid]) < 0) { hi = mid; } else { lo = mid + 1; } } return ([].splice.apply(a, [lo, lo - lo].concat(x)), x); }; /* Push item onto heap, maintaining the heap invariant. */ heappush = function(array, item, cmp) { if (cmp == null) { cmp = defaultCmp; } array.push(item); return _siftdown(array, 0, array.length - 1, cmp); }; /* Pop the smallest item off the heap, maintaining the heap invariant. */ heappop = function(array, cmp) { var lastelt, returnitem; if (cmp == null) { cmp = defaultCmp; } lastelt = array.pop(); if (array.length) { returnitem = array[0]; array[0] = lastelt; _siftup(array, 0, cmp); } else { returnitem = lastelt; } return returnitem; }; /* Pop and return the current smallest value, and add the new item. This is more efficient than heappop() followed by heappush(), and can be more appropriate when using a fixed size heap. Note that the value returned may be larger than item! That constrains reasonable use of this routine unless written as part of a conditional replacement: if item > array[0] item = heapreplace(array, item) */ heapreplace = function(array, item, cmp) { var returnitem; if (cmp == null) { cmp = defaultCmp; } returnitem = array[0]; array[0] = item; _siftup(array, 0, cmp); return returnitem; }; /* Fast version of a heappush followed by a heappop. */ heappushpop = function(array, item, cmp) { var _ref; if (cmp == null) { cmp = defaultCmp; } if (array.length && cmp(array[0], item) < 0) { _ref = [array[0], item], item = _ref[0], array[0] = _ref[1]; _siftup(array, 0, cmp); } return item; }; /* Transform list into a heap, in-place, in O(array.length) time. */ heapify = function(array, cmp) { var i, _i, _len, _ref1, _results, _results1; if (cmp == null) { cmp = defaultCmp; } _ref1 = (function() { _results1 = []; for (var _j = 0, _ref = floor(array.length / 2); 0 <= _ref ? _j < _ref : _j > _ref; 0 <= _ref ? _j++ : _j--){ _results1.push(_j); } return _results1; }).apply(this).reverse(); _results = []; for (_i = 0, _len = _ref1.length; _i < _len; _i++) { i = _ref1[_i]; _results.push(_siftup(array, i, cmp)); } return _results; }; /* Update the position of the given item in the heap. This function should be called every time the item is being modified. */ updateItem = function(array, item, cmp) { var pos; if (cmp == null) { cmp = defaultCmp; } pos = array.indexOf(item); if (pos === -1) { return; } _siftdown(array, 0, pos, cmp); return _siftup(array, pos, cmp); }; /* Find the n largest elements in a dataset. */ nlargest = function(array, n, cmp) { var elem, result, _i, _len, _ref; if (cmp == null) { cmp = defaultCmp; } result = array.slice(0, n); if (!result.length) { return result; } heapify(result, cmp); _ref = array.slice(n); for (_i = 0, _len = _ref.length; _i < _len; _i++) { elem = _ref[_i]; heappushpop(result, elem, cmp); } return result.sort(cmp).reverse(); }; /* Find the n smallest elements in a dataset. */ nsmallest = function(array, n, cmp) { var elem, los, result, _i, _j, _len, _ref, _ref1, _results; if (cmp == null) { cmp = defaultCmp; } if (n * 10 <= array.length) { result = array.slice(0, n).sort(cmp); if (!result.length) { return result; } los = result[result.length - 1]; _ref = array.slice(n); for (_i = 0, _len = _ref.length; _i < _len; _i++) { elem = _ref[_i]; if (cmp(elem, los) < 0) { insort(result, elem, 0, null, cmp); result.pop(); los = result[result.length - 1]; } } return result; } heapify(array, cmp); _results = []; for (_j = 0, _ref1 = min(n, array.length); 0 <= _ref1 ? _j < _ref1 : _j > _ref1; 0 <= _ref1 ? ++_j : --_j) { _results.push(heappop(array, cmp)); } return _results; }; _siftdown = function(array, startpos, pos, cmp) { var newitem, parent, parentpos; if (cmp == null) { cmp = defaultCmp; } newitem = array[pos]; while (pos > startpos) { parentpos = (pos - 1) >> 1; parent = array[parentpos]; if (cmp(newitem, parent) < 0) { array[pos] = parent; pos = parentpos; continue; } break; } return array[pos] = newitem; }; _siftup = function(array, pos, cmp) { var childpos, endpos, newitem, rightpos, startpos; if (cmp == null) { cmp = defaultCmp; } endpos = array.length; startpos = pos; newitem = array[pos]; childpos = 2 * pos + 1; while (childpos < endpos) { rightpos = childpos + 1; if (rightpos < endpos && !(cmp(array[childpos], array[rightpos]) < 0)) { childpos = rightpos; } array[pos] = array[childpos]; pos = childpos; childpos = 2 * pos + 1; } array[pos] = newitem; return _siftdown(array, startpos, pos, cmp); }; Heap = (function() { Heap.push = heappush; Heap.pop = heappop; Heap.replace = heapreplace; Heap.pushpop = heappushpop; Heap.heapify = heapify; Heap.updateItem = updateItem; Heap.nlargest = nlargest; Heap.nsmallest = nsmallest; function Heap(cmp) { this.cmp = cmp != null ? cmp : defaultCmp; this.nodes = []; } Heap.prototype.push = function(x) { return heappush(this.nodes, x, this.cmp); }; Heap.prototype.pop = function() { return heappop(this.nodes, this.cmp); }; Heap.prototype.peek = function() { return this.nodes[0]; }; Heap.prototype.contains = function(x) { return this.nodes.indexOf(x) !== -1; }; Heap.prototype.replace = function(x) { return heapreplace(this.nodes, x, this.cmp); }; Heap.prototype.pushpop = function(x) { return heappushpop(this.nodes, x, this.cmp); }; Heap.prototype.heapify = function() { return heapify(this.nodes, this.cmp); }; Heap.prototype.updateItem = function(x) { return updateItem(this.nodes, x, this.cmp); }; Heap.prototype.clear = function() { return this.nodes = []; }; Heap.prototype.empty = function() { return this.nodes.length === 0; }; Heap.prototype.size = function() { return this.nodes.length; }; Heap.prototype.clone = function() { var heap; heap = new Heap(); heap.nodes = this.nodes.slice(0); return heap; }; Heap.prototype.toArray = function() { return this.nodes.slice(0); }; Heap.prototype.insert = Heap.prototype.push; Heap.prototype.top = Heap.prototype.peek; Heap.prototype.front = Heap.prototype.peek; Heap.prototype.has = Heap.prototype.contains; Heap.prototype.copy = Heap.prototype.clone; return Heap; })(); (function(root, factory) { { return module.exports = factory(); } })(this, function() { return Heap; }); }).call(commonjsGlobal); }); var heap = heap$1; var dijkstraDefaults = defaults$g({ root: null, weight: function weight(edge) { return 1; }, directed: false }); var elesfn$u = { dijkstra: function dijkstra(options) { if (!plainObject(options)) { var args = arguments; options = { root: args[0], weight: args[1], directed: args[2] }; } var _dijkstraDefaults = dijkstraDefaults(options), root = _dijkstraDefaults.root, weight = _dijkstraDefaults.weight, directed = _dijkstraDefaults.directed; var eles = this; var weightFn = weight; var source = string(root) ? this.filter(root)[0] : root[0]; var dist = {}; var prev = {}; var knownDist = {}; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; edges.unmergeBy(function (ele) { return ele.isLoop(); }); var getDist = function getDist(node) { return dist[node.id()]; }; var setDist = function setDist(node, d) { dist[node.id()] = d; Q.updateItem(node); }; var Q = new heap(function (a, b) { return getDist(a) - getDist(b); }); for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; dist[node.id()] = node.same(source) ? 0 : Infinity; Q.push(node); } var distBetween = function distBetween(u, v) { var uvs = (directed ? u.edgesTo(v) : u.edgesWith(v)).intersect(edges); var smallestDistance = Infinity; var smallestEdge; for (var _i = 0; _i < uvs.length; _i++) { var edge = uvs[_i]; var _weight = weightFn(edge); if (_weight < smallestDistance || !smallestEdge) { smallestDistance = _weight; smallestEdge = edge; } } return { edge: smallestEdge, dist: smallestDistance }; }; while (Q.size() > 0) { var u = Q.pop(); var smalletsDist = getDist(u); var uid = u.id(); knownDist[uid] = smalletsDist; if (smalletsDist === Infinity) { continue; } var neighbors = u.neighborhood().intersect(nodes); for (var _i2 = 0; _i2 < neighbors.length; _i2++) { var v = neighbors[_i2]; var vid = v.id(); var vDist = distBetween(u, v); var alt = smalletsDist + vDist.dist; if (alt < getDist(v)) { setDist(v, alt); prev[vid] = { node: u, edge: vDist.edge }; } } // for } // while return { distanceTo: function distanceTo(node) { var target = string(node) ? nodes.filter(node)[0] : node[0]; return knownDist[target.id()]; }, pathTo: function pathTo(node) { var target = string(node) ? nodes.filter(node)[0] : node[0]; var S = []; var u = target; var uid = u.id(); if (target.length > 0) { S.unshift(target); while (prev[uid]) { var p = prev[uid]; S.unshift(p.edge); S.unshift(p.node); u = p.node; uid = u.id(); } } return eles.spawn(S); } }; } }; var elesfn$t = { // kruskal's algorithm (finds min spanning tree, assuming undirected graph) // implemented from pseudocode from wikipedia kruskal: function kruskal(weightFn) { weightFn = weightFn || function (edge) { return 1; }; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; var numNodes = nodes.length; var forest = new Array(numNodes); var A = nodes; // assumes byGroup() creates new collections that can be safely mutated var findSetIndex = function findSetIndex(ele) { for (var i = 0; i < forest.length; i++) { var eles = forest[i]; if (eles.has(ele)) { return i; } } }; // start with one forest per node for (var i = 0; i < numNodes; i++) { forest[i] = this.spawn(nodes[i]); } var S = edges.sort(function (a, b) { return weightFn(a) - weightFn(b); }); for (var _i = 0; _i < S.length; _i++) { var edge = S[_i]; var u = edge.source()[0]; var v = edge.target()[0]; var setUIndex = findSetIndex(u); var setVIndex = findSetIndex(v); var setU = forest[setUIndex]; var setV = forest[setVIndex]; if (setUIndex !== setVIndex) { A.merge(edge); // combine forests for u and v setU.merge(setV); forest.splice(setVIndex, 1); } } return A; } }; var aStarDefaults = defaults$g({ root: null, goal: null, weight: function weight(edge) { return 1; }, heuristic: function heuristic(edge) { return 0; }, directed: false }); var elesfn$s = { // Implemented from pseudocode from wikipedia aStar: function aStar(options) { var cy = this.cy(); var _aStarDefaults = aStarDefaults(options), root = _aStarDefaults.root, goal = _aStarDefaults.goal, heuristic = _aStarDefaults.heuristic, directed = _aStarDefaults.directed, weight = _aStarDefaults.weight; root = cy.collection(root)[0]; goal = cy.collection(goal)[0]; var sid = root.id(); var tid = goal.id(); var gScore = {}; var fScore = {}; var closedSetIds = {}; var openSet = new heap(function (a, b) { return fScore[a.id()] - fScore[b.id()]; }); var openSetIds = new Set$1(); var cameFrom = {}; var cameFromEdge = {}; var addToOpenSet = function addToOpenSet(ele, id) { openSet.push(ele); openSetIds.add(id); }; var cMin, cMinId; var popFromOpenSet = function popFromOpenSet() { cMin = openSet.pop(); cMinId = cMin.id(); openSetIds["delete"](cMinId); }; var isInOpenSet = function isInOpenSet(id) { return openSetIds.has(id); }; addToOpenSet(root, sid); gScore[sid] = 0; fScore[sid] = heuristic(root); // Counter var steps = 0; // Main loop while (openSet.size() > 0) { popFromOpenSet(); steps++; // If we've found our goal, then we are done if (cMinId === tid) { var path = []; var pathNode = goal; var pathNodeId = tid; var pathEdge = cameFromEdge[pathNodeId]; for (;;) { path.unshift(pathNode); if (pathEdge != null) { path.unshift(pathEdge); } pathNode = cameFrom[pathNodeId]; if (pathNode == null) { break; } pathNodeId = pathNode.id(); pathEdge = cameFromEdge[pathNodeId]; } return { found: true, distance: gScore[cMinId], path: this.spawn(path), steps: steps }; } // Add cMin to processed nodes closedSetIds[cMinId] = true; // Update scores for neighbors of cMin // Take into account if graph is directed or not var vwEdges = cMin._private.edges; for (var i = 0; i < vwEdges.length; i++) { var e = vwEdges[i]; // edge must be in set of calling eles if (!this.hasElementWithId(e.id())) { continue; } // cMin must be the source of edge if directed if (directed && e.data('source') !== cMinId) { continue; } var wSrc = e.source(); var wTgt = e.target(); var w = wSrc.id() !== cMinId ? wSrc : wTgt; var wid = w.id(); // node must be in set of calling eles if (!this.hasElementWithId(wid)) { continue; } // if node is in closedSet, ignore it if (closedSetIds[wid]) { continue; } // New tentative score for node w var tempScore = gScore[cMinId] + weight(e); // Update gScore for node w if: // w not present in openSet // OR // tentative gScore is less than previous value // w not in openSet if (!isInOpenSet(wid)) { gScore[wid] = tempScore; fScore[wid] = tempScore + heuristic(w); addToOpenSet(w, wid); cameFrom[wid] = cMin; cameFromEdge[wid] = e; continue; } // w already in openSet, but with greater gScore if (tempScore < gScore[wid]) { gScore[wid] = tempScore; fScore[wid] = tempScore + heuristic(w); cameFrom[wid] = cMin; cameFromEdge[wid] = e; } } // End of neighbors update } // End of main loop // If we've reached here, then we've not reached our goal return { found: false, distance: undefined, path: undefined, steps: steps }; } }; // elesfn var floydWarshallDefaults = defaults$g({ weight: function weight(edge) { return 1; }, directed: false }); var elesfn$r = { // Implemented from pseudocode from wikipedia floydWarshall: function floydWarshall(options) { var cy = this.cy(); var _floydWarshallDefault = floydWarshallDefaults(options), weight = _floydWarshallDefault.weight, directed = _floydWarshallDefault.directed; var weightFn = weight; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; var N = nodes.length; var Nsq = N * N; var indexOf = function indexOf(node) { return nodes.indexOf(node); }; var atIndex = function atIndex(i) { return nodes[i]; }; // Initialize distance matrix var dist = new Array(Nsq); for (var n = 0; n < Nsq; n++) { var j = n % N; var i = (n - j) / N; if (i === j) { dist[n] = 0; } else { dist[n] = Infinity; } } // Initialize matrix used for path reconstruction // Initialize distance matrix var next = new Array(Nsq); var edgeNext = new Array(Nsq); // Process edges for (var _i = 0; _i < edges.length; _i++) { var edge = edges[_i]; var src = edge.source()[0]; var tgt = edge.target()[0]; if (src === tgt) { continue; } // exclude loops var s = indexOf(src); var t = indexOf(tgt); var st = s * N + t; // source to target index var _weight = weightFn(edge); // Check if already process another edge between same 2 nodes if (dist[st] > _weight) { dist[st] = _weight; next[st] = t; edgeNext[st] = edge; } // If undirected graph, process 'reversed' edge if (!directed) { var ts = t * N + s; // target to source index if (!directed && dist[ts] > _weight) { dist[ts] = _weight; next[ts] = s; edgeNext[ts] = edge; } } } // Main loop for (var k = 0; k < N; k++) { for (var _i2 = 0; _i2 < N; _i2++) { var ik = _i2 * N + k; for (var _j = 0; _j < N; _j++) { var ij = _i2 * N + _j; var kj = k * N + _j; if (dist[ik] + dist[kj] < dist[ij]) { dist[ij] = dist[ik] + dist[kj]; next[ij] = next[ik]; } } } } var getArgEle = function getArgEle(ele) { return (string(ele) ? cy.filter(ele) : ele)[0]; }; var indexOfArgEle = function indexOfArgEle(ele) { return indexOf(getArgEle(ele)); }; var res = { distance: function distance(from, to) { var i = indexOfArgEle(from); var j = indexOfArgEle(to); return dist[i * N + j]; }, path: function path(from, to) { var i = indexOfArgEle(from); var j = indexOfArgEle(to); var fromNode = atIndex(i); if (i === j) { return fromNode.collection(); } if (next[i * N + j] == null) { return cy.collection(); } var path = cy.collection(); var prev = i; var edge; path.merge(fromNode); while (i !== j) { prev = i; i = next[i * N + j]; edge = edgeNext[prev * N + i]; path.merge(edge); path.merge(atIndex(i)); } return path; } }; return res; } // floydWarshall }; // elesfn var bellmanFordDefaults = defaults$g({ weight: function weight(edge) { return 1; }, directed: false, root: null }); var elesfn$q = { // Implemented from pseudocode from wikipedia bellmanFord: function bellmanFord(options) { var _this = this; var _bellmanFordDefaults = bellmanFordDefaults(options), weight = _bellmanFordDefaults.weight, directed = _bellmanFordDefaults.directed, root = _bellmanFordDefaults.root; var weightFn = weight; var eles = this; var cy = this.cy(); var _this$byGroup = this.byGroup(), edges = _this$byGroup.edges, nodes = _this$byGroup.nodes; var numNodes = nodes.length; var infoMap = new Map$2(); var hasNegativeWeightCycle = false; var negativeWeightCycles = []; root = cy.collection(root)[0]; // in case selector passed edges.unmergeBy(function (edge) { return edge.isLoop(); }); var numEdges = edges.length; var getInfo = function getInfo(node) { var obj = infoMap.get(node.id()); if (!obj) { obj = {}; infoMap.set(node.id(), obj); } return obj; }; var getNodeFromTo = function getNodeFromTo(to) { return (string(to) ? cy.$(to) : to)[0]; }; var distanceTo = function distanceTo(to) { return getInfo(getNodeFromTo(to)).dist; }; var pathTo = function pathTo(to) { var thisStart = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : root; var end = getNodeFromTo(to); var path = []; var node = end; for (;;) { if (node == null) { return _this.spawn(); } var _getInfo = getInfo(node), edge = _getInfo.edge, pred = _getInfo.pred; path.unshift(node[0]); if (node.same(thisStart) && path.length > 0) { break; } if (edge != null) { path.unshift(edge); } node = pred; } return eles.spawn(path); }; // Initializations { dist, pred, edge } for (var i = 0; i < numNodes; i++) { var node = nodes[i]; var info = getInfo(node); if (node.same(root)) { info.dist = 0; } else { info.dist = Infinity; } info.pred = null; info.edge = null; } // Edges relaxation var replacedEdge = false; var checkForEdgeReplacement = function checkForEdgeReplacement(node1, node2, edge, info1, info2, weight) { var dist = info1.dist + weight; if (dist < info2.dist && !edge.same(info1.edge)) { info2.dist = dist; info2.pred = node1; info2.edge = edge; replacedEdge = true; } }; for (var _i = 1; _i < numNodes; _i++) { replacedEdge = false; for (var e = 0; e < numEdges; e++) { var edge = edges[e]; var src = edge.source(); var tgt = edge.target(); var _weight = weightFn(edge); var srcInfo = getInfo(src); var tgtInfo = getInfo(tgt); checkForEdgeReplacement(src, tgt, edge, srcInfo, tgtInfo, _weight); // If undirected graph, we need to take into account the 'reverse' edge if (!directed) { checkForEdgeReplacement(tgt, src, edge, tgtInfo, srcInfo, _weight); } } if (!replacedEdge) { break; } } if (replacedEdge) { // Check for negative weight cycles var negativeWeightCycleIds = []; for (var _e = 0; _e < numEdges; _e++) { var _edge = edges[_e]; var _src = _edge.source(); var _tgt = _edge.target(); var _weight2 = weightFn(_edge); var srcDist = getInfo(_src).dist; var tgtDist = getInfo(_tgt).dist; if (srcDist + _weight2 < tgtDist || !directed && tgtDist + _weight2 < srcDist) { if (!hasNegativeWeightCycle) { warn('Graph contains a negative weight cycle for Bellman-Ford'); hasNegativeWeightCycle = true; } if (options.findNegativeWeightCycles !== false) { var negativeNodes = []; if (srcDist + _weight2 < tgtDist) { negativeNodes.push(_src); } if (!directed && tgtDist + _weight2 < srcDist) { negativeNodes.push(_tgt); } var numNegativeNodes = negativeNodes.length; for (var n = 0; n < numNegativeNodes; n++) { var start = negativeNodes[n]; var cycle = [start]; cycle.push(getInfo(start).edge); var _node = getInfo(start).pred; while (cycle.indexOf(_node) === -1) { cycle.push(_node); cycle.push(getInfo(_node).edge); _node = getInfo(_node).pred; } cycle = cycle.slice(cycle.indexOf(_node)); var smallestId = cycle[0].id(); var smallestIndex = 0; for (var c = 2; c < cycle.length; c += 2) { if (cycle[c].id() < smallestId) { smallestId = cycle[c].id(); smallestIndex = c; } } cycle = cycle.slice(smallestIndex).concat(cycle.slice(0, smallestIndex)); cycle.push(cycle[0]); var cycleId = cycle.map(function (el) { return el.id(); }).join(","); if (negativeWeightCycleIds.indexOf(cycleId) === -1) { negativeWeightCycles.push(eles.spawn(cycle)); negativeWeightCycleIds.push(cycleId); } } } else { break; } } } } return { distanceTo: distanceTo, pathTo: pathTo, hasNegativeWeightCycle: hasNegativeWeightCycle, negativeWeightCycles: negativeWeightCycles }; } // bellmanFord }; // elesfn var sqrt2 = Math.sqrt(2); // Function which colapses 2 (meta) nodes into one // Updates the remaining edge lists // Receives as a paramater the edge which causes the collapse var collapse = function collapse(edgeIndex, nodeMap, remainingEdges) { if (remainingEdges.length === 0) { error("Karger-Stein must be run on a connected (sub)graph"); } var edgeInfo = remainingEdges[edgeIndex]; var sourceIn = edgeInfo[1]; var targetIn = edgeInfo[2]; var partition1 = nodeMap[sourceIn]; var partition2 = nodeMap[targetIn]; var newEdges = remainingEdges; // re-use array // Delete all edges between partition1 and partition2 for (var i = newEdges.length - 1; i >= 0; i--) { var edge = newEdges[i]; var src = edge[1]; var tgt = edge[2]; if (nodeMap[src] === partition1 && nodeMap[tgt] === partition2 || nodeMap[src] === partition2 && nodeMap[tgt] === partition1) { newEdges.splice(i, 1); } } // All edges pointing to partition2 should now point to partition1 for (var _i = 0; _i < newEdges.length; _i++) { var _edge = newEdges[_i]; if (_edge[1] === partition2) { // Check source newEdges[_i] = _edge.slice(); // copy newEdges[_i][1] = partition1; } else if (_edge[2] === partition2) { // Check target newEdges[_i] = _edge.slice(); // copy newEdges[_i][2] = partition1; } } // Move all nodes from partition2 to partition1 for (var _i2 = 0; _i2 < nodeMap.length; _i2++) { if (nodeMap[_i2] === partition2) { nodeMap[_i2] = partition1; } } return newEdges; }; // Contracts a graph until we reach a certain number of meta nodes var contractUntil = function contractUntil(metaNodeMap, remainingEdges, size, sizeLimit) { while (size > sizeLimit) { // Choose an edge randomly var edgeIndex = Math.floor(Math.random() * remainingEdges.length); // Collapse graph based on edge remainingEdges = collapse(edgeIndex, metaNodeMap, remainingEdges); size--; } return remainingEdges; }; var elesfn$p = { // Computes the minimum cut of an undirected graph // Returns the correct answer with high probability kargerStein: function kargerStein() { var _this = this; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; edges.unmergeBy(function (edge) { return edge.isLoop(); }); var numNodes = nodes.length; var numEdges = edges.length; var numIter = Math.ceil(Math.pow(Math.log(numNodes) / Math.LN2, 2)); var stopSize = Math.floor(numNodes / sqrt2); if (numNodes < 2) { error('At least 2 nodes are required for Karger-Stein algorithm'); return undefined; } // Now store edge destination as indexes // Format for each edge (edge index, source node index, target node index) var edgeIndexes = []; for (var i = 0; i < numEdges; i++) { var e = edges[i]; edgeIndexes.push([i, nodes.indexOf(e.source()), nodes.indexOf(e.target())]); } // We will store the best cut found here var minCutSize = Infinity; var minCutEdgeIndexes = []; var minCutNodeMap = new Array(numNodes); // Initial meta node partition var metaNodeMap = new Array(numNodes); var metaNodeMap2 = new Array(numNodes); var copyNodesMap = function copyNodesMap(from, to) { for (var _i3 = 0; _i3 < numNodes; _i3++) { to[_i3] = from[_i3]; } }; // Main loop for (var iter = 0; iter <= numIter; iter++) { // Reset meta node partition for (var _i4 = 0; _i4 < numNodes; _i4++) { metaNodeMap[_i4] = _i4; } // Contract until stop point (stopSize nodes) var edgesState = contractUntil(metaNodeMap, edgeIndexes.slice(), numNodes, stopSize); var edgesState2 = edgesState.slice(); // copy // Create a copy of the colapsed nodes state copyNodesMap(metaNodeMap, metaNodeMap2); // Run 2 iterations starting in the stop state var res1 = contractUntil(metaNodeMap, edgesState, stopSize, 2); var res2 = contractUntil(metaNodeMap2, edgesState2, stopSize, 2); // Is any of the 2 results the best cut so far? if (res1.length <= res2.length && res1.length < minCutSize) { minCutSize = res1.length; minCutEdgeIndexes = res1; copyNodesMap(metaNodeMap, minCutNodeMap); } else if (res2.length <= res1.length && res2.length < minCutSize) { minCutSize = res2.length; minCutEdgeIndexes = res2; copyNodesMap(metaNodeMap2, minCutNodeMap); } } // end of main loop // Construct result var cut = this.spawn(minCutEdgeIndexes.map(function (e) { return edges[e[0]]; })); var partition1 = this.spawn(); var partition2 = this.spawn(); // traverse metaNodeMap for best cut var witnessNodePartition = minCutNodeMap[0]; for (var _i5 = 0; _i5 < minCutNodeMap.length; _i5++) { var partitionId = minCutNodeMap[_i5]; var node = nodes[_i5]; if (partitionId === witnessNodePartition) { partition1.merge(node); } else { partition2.merge(node); } } // construct components corresponding to each disjoint subset of nodes var constructComponent = function constructComponent(subset) { var component = _this.spawn(); subset.forEach(function (node) { component.merge(node); node.connectedEdges().forEach(function (edge) { // ensure edge is within calling collection and edge is not in cut if (_this.contains(edge) && !cut.contains(edge)) { component.merge(edge); } }); }); return component; }; var components = [constructComponent(partition1), constructComponent(partition2)]; var ret = { cut: cut, components: components, // n.b. partitions are included to be compatible with the old api spec // (could be removed in a future major version) partition1: partition1, partition2: partition2 }; return ret; } }; // elesfn var copyPosition = function copyPosition(p) { return { x: p.x, y: p.y }; }; var modelToRenderedPosition = function modelToRenderedPosition(p, zoom, pan) { return { x: p.x * zoom + pan.x, y: p.y * zoom + pan.y }; }; var renderedToModelPosition = function renderedToModelPosition(p, zoom, pan) { return { x: (p.x - pan.x) / zoom, y: (p.y - pan.y) / zoom }; }; var array2point = function array2point(arr) { return { x: arr[0], y: arr[1] }; }; var min = function min(arr) { var begin = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; var end = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : arr.length; var min = Infinity; for (var i = begin; i < end; i++) { var val = arr[i]; if (isFinite(val)) { min = Math.min(val, min); } } return min; }; var max = function max(arr) { var begin = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; var end = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : arr.length; var max = -Infinity; for (var i = begin; i < end; i++) { var val = arr[i]; if (isFinite(val)) { max = Math.max(val, max); } } return max; }; var mean = function mean(arr) { var begin = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; var end = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : arr.length; var total = 0; var n = 0; for (var i = begin; i < end; i++) { var val = arr[i]; if (isFinite(val)) { total += val; n++; } } return total / n; }; var median = function median(arr) { var begin = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; var end = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : arr.length; var copy = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true; var sort = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true; var includeHoles = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : true; if (copy) { arr = arr.slice(begin, end); } else { if (end < arr.length) { arr.splice(end, arr.length - end); } if (begin > 0) { arr.splice(0, begin); } } // all non finite (e.g. Infinity, NaN) elements must be -Infinity so they go to the start var off = 0; // offset from non-finite values for (var i = arr.length - 1; i >= 0; i--) { var v = arr[i]; if (includeHoles) { if (!isFinite(v)) { arr[i] = -Infinity; off++; } } else { // just remove it if we don't want to consider holes arr.splice(i, 1); } } if (sort) { arr.sort(function (a, b) { return a - b; }); // requires copy = true if you don't want to change the orig } var len = arr.length; var mid = Math.floor(len / 2); if (len % 2 !== 0) { return arr[mid + 1 + off]; } else { return (arr[mid - 1 + off] + arr[mid + off]) / 2; } }; var deg2rad = function deg2rad(deg) { return Math.PI * deg / 180; }; var getAngleFromDisp = function getAngleFromDisp(dispX, dispY) { return Math.atan2(dispY, dispX) - Math.PI / 2; }; var log2 = Math.log2 || function (n) { return Math.log(n) / Math.log(2); }; var signum = function signum(x) { if (x > 0) { return 1; } else if (x < 0) { return -1; } else { return 0; } }; var dist = function dist(p1, p2) { return Math.sqrt(sqdist(p1, p2)); }; var sqdist = function sqdist(p1, p2) { var dx = p2.x - p1.x; var dy = p2.y - p1.y; return dx * dx + dy * dy; }; var inPlaceSumNormalize = function inPlaceSumNormalize(v) { var length = v.length; // First, get sum of all elements var total = 0; for (var i = 0; i < length; i++) { total += v[i]; } // Now, divide each by the sum of all elements for (var _i = 0; _i < length; _i++) { v[_i] = v[_i] / total; } return v; }; // from http://en.wikipedia.org/wiki/Bézier_curve#Quadratic_curves var qbezierAt = function qbezierAt(p0, p1, p2, t) { return (1 - t) * (1 - t) * p0 + 2 * (1 - t) * t * p1 + t * t * p2; }; var qbezierPtAt = function qbezierPtAt(p0, p1, p2, t) { return { x: qbezierAt(p0.x, p1.x, p2.x, t), y: qbezierAt(p0.y, p1.y, p2.y, t) }; }; var lineAt = function lineAt(p0, p1, t, d) { var vec = { x: p1.x - p0.x, y: p1.y - p0.y }; var vecDist = dist(p0, p1); var normVec = { x: vec.x / vecDist, y: vec.y / vecDist }; t = t == null ? 0 : t; d = d != null ? d : t * vecDist; return { x: p0.x + normVec.x * d, y: p0.y + normVec.y * d }; }; var bound = function bound(min, val, max) { return Math.max(min, Math.min(max, val)); }; // makes a full bb (x1, y1, x2, y2, w, h) from implicit params var makeBoundingBox = function makeBoundingBox(bb) { if (bb == null) { return { x1: Infinity, y1: Infinity, x2: -Infinity, y2: -Infinity, w: 0, h: 0 }; } else if (bb.x1 != null && bb.y1 != null) { if (bb.x2 != null && bb.y2 != null && bb.x2 >= bb.x1 && bb.y2 >= bb.y1) { return { x1: bb.x1, y1: bb.y1, x2: bb.x2, y2: bb.y2, w: bb.x2 - bb.x1, h: bb.y2 - bb.y1 }; } else if (bb.w != null && bb.h != null && bb.w >= 0 && bb.h >= 0) { return { x1: bb.x1, y1: bb.y1, x2: bb.x1 + bb.w, y2: bb.y1 + bb.h, w: bb.w, h: bb.h }; } } }; var copyBoundingBox = function copyBoundingBox(bb) { return { x1: bb.x1, x2: bb.x2, w: bb.w, y1: bb.y1, y2: bb.y2, h: bb.h }; }; var clearBoundingBox = function clearBoundingBox(bb) { bb.x1 = Infinity; bb.y1 = Infinity; bb.x2 = -Infinity; bb.y2 = -Infinity; bb.w = 0; bb.h = 0; }; var shiftBoundingBox = function shiftBoundingBox(bb, dx, dy) { return { x1: bb.x1 + dx, x2: bb.x2 + dx, y1: bb.y1 + dy, y2: bb.y2 + dy, w: bb.w, h: bb.h }; }; var updateBoundingBox = function updateBoundingBox(bb1, bb2) { // update bb1 with bb2 bounds bb1.x1 = Math.min(bb1.x1, bb2.x1); bb1.x2 = Math.max(bb1.x2, bb2.x2); bb1.w = bb1.x2 - bb1.x1; bb1.y1 = Math.min(bb1.y1, bb2.y1); bb1.y2 = Math.max(bb1.y2, bb2.y2); bb1.h = bb1.y2 - bb1.y1; }; var expandBoundingBoxByPoint = function expandBoundingBoxByPoint(bb, x, y) { bb.x1 = Math.min(bb.x1, x); bb.x2 = Math.max(bb.x2, x); bb.w = bb.x2 - bb.x1; bb.y1 = Math.min(bb.y1, y); bb.y2 = Math.max(bb.y2, y); bb.h = bb.y2 - bb.y1; }; var expandBoundingBox = function expandBoundingBox(bb) { var padding = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; bb.x1 -= padding; bb.x2 += padding; bb.y1 -= padding; bb.y2 += padding; bb.w = bb.x2 - bb.x1; bb.h = bb.y2 - bb.y1; return bb; }; var expandBoundingBoxSides = function expandBoundingBoxSides(bb) { var padding = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [0]; var top, right, bottom, left; if (padding.length === 1) { top = right = bottom = left = padding[0]; } else if (padding.length === 2) { top = bottom = padding[0]; left = right = padding[1]; } else if (padding.length === 4) { var _padding = _slicedToArray(padding, 4); top = _padding[0]; right = _padding[1]; bottom = _padding[2]; left = _padding[3]; } bb.x1 -= left; bb.x2 += right; bb.y1 -= top; bb.y2 += bottom; bb.w = bb.x2 - bb.x1; bb.h = bb.y2 - bb.y1; return bb; }; // assign the values of bb2 into bb1 var assignBoundingBox = function assignBoundingBox(bb1, bb2) { bb1.x1 = bb2.x1; bb1.y1 = bb2.y1; bb1.x2 = bb2.x2; bb1.y2 = bb2.y2; bb1.w = bb1.x2 - bb1.x1; bb1.h = bb1.y2 - bb1.y1; }; var boundingBoxesIntersect = function boundingBoxesIntersect(bb1, bb2) { // case: one bb to right of other if (bb1.x1 > bb2.x2) { return false; } if (bb2.x1 > bb1.x2) { return false; } // case: one bb to left of other if (bb1.x2 < bb2.x1) { return false; } if (bb2.x2 < bb1.x1) { return false; } // case: one bb above other if (bb1.y2 < bb2.y1) { return false; } if (bb2.y2 < bb1.y1) { return false; } // case: one bb below other if (bb1.y1 > bb2.y2) { return false; } if (bb2.y1 > bb1.y2) { return false; } // otherwise, must have some overlap return true; }; var inBoundingBox = function inBoundingBox(bb, x, y) { return bb.x1 <= x && x <= bb.x2 && bb.y1 <= y && y <= bb.y2; }; var pointInBoundingBox = function pointInBoundingBox(bb, pt) { return inBoundingBox(bb, pt.x, pt.y); }; var boundingBoxInBoundingBox = function boundingBoxInBoundingBox(bb1, bb2) { return inBoundingBox(bb1, bb2.x1, bb2.y1) && inBoundingBox(bb1, bb2.x2, bb2.y2); }; var roundRectangleIntersectLine = function roundRectangleIntersectLine(x, y, nodeX, nodeY, width, height, padding) { var radius = arguments.length > 7 && arguments[7] !== undefined ? arguments[7] : 'auto'; var cornerRadius = radius === 'auto' ? getRoundRectangleRadius(width, height) : radius; var halfWidth = width / 2; var halfHeight = height / 2; cornerRadius = Math.min(cornerRadius, halfWidth, halfHeight); var doWidth = cornerRadius !== halfWidth, doHeight = cornerRadius !== halfHeight; // Check intersections with straight line segments var straightLineIntersections; // Top segment, left to right if (doWidth) { var topStartX = nodeX - halfWidth + cornerRadius - padding; var topStartY = nodeY - halfHeight - padding; var topEndX = nodeX + halfWidth - cornerRadius + padding; var topEndY = topStartY; straightLineIntersections = finiteLinesIntersect(x, y, nodeX, nodeY, topStartX, topStartY, topEndX, topEndY, false); if (straightLineIntersections.length > 0) { return straightLineIntersections; } } // Right segment, top to bottom if (doHeight) { var rightStartX = nodeX + halfWidth + padding; var rightStartY = nodeY - halfHeight + cornerRadius - padding; var rightEndX = rightStartX; var rightEndY = nodeY + halfHeight - cornerRadius + padding; straightLineIntersections = finiteLinesIntersect(x, y, nodeX, nodeY, rightStartX, rightStartY, rightEndX, rightEndY, false); if (straightLineIntersections.length > 0) { return straightLineIntersections; } } // Bottom segment, left to right if (doWidth) { var bottomStartX = nodeX - halfWidth + cornerRadius - padding; var bottomStartY = nodeY + halfHeight + padding; var bottomEndX = nodeX + halfWidth - cornerRadius + padding; var bottomEndY = bottomStartY; straightLineIntersections = finiteLinesIntersect(x, y, nodeX, nodeY, bottomStartX, bottomStartY, bottomEndX, bottomEndY, false); if (straightLineIntersections.length > 0) { return straightLineIntersections; } } // Left segment, top to bottom if (doHeight) { var leftStartX = nodeX - halfWidth - padding; var leftStartY = nodeY - halfHeight + cornerRadius - padding; var leftEndX = leftStartX; var leftEndY = nodeY + halfHeight - cornerRadius + padding; straightLineIntersections = finiteLinesIntersect(x, y, nodeX, nodeY, leftStartX, leftStartY, leftEndX, leftEndY, false); if (straightLineIntersections.length > 0) { return straightLineIntersections; } } // Check intersections with arc segments var arcIntersections; // Top Left { var topLeftCenterX = nodeX - halfWidth + cornerRadius; var topLeftCenterY = nodeY - halfHeight + cornerRadius; arcIntersections = intersectLineCircle(x, y, nodeX, nodeY, topLeftCenterX, topLeftCenterY, cornerRadius + padding); // Ensure the intersection is on the desired quarter of the circle if (arcIntersections.length > 0 && arcIntersections[0] <= topLeftCenterX && arcIntersections[1] <= topLeftCenterY) { return [arcIntersections[0], arcIntersections[1]]; } } // Top Right { var topRightCenterX = nodeX + halfWidth - cornerRadius; var topRightCenterY = nodeY - halfHeight + cornerRadius; arcIntersections = intersectLineCircle(x, y, nodeX, nodeY, topRightCenterX, topRightCenterY, cornerRadius + padding); // Ensure the intersection is on the desired quarter of the circle if (arcIntersections.length > 0 && arcIntersections[0] >= topRightCenterX && arcIntersections[1] <= topRightCenterY) { return [arcIntersections[0], arcIntersections[1]]; } } // Bottom Right { var bottomRightCenterX = nodeX + halfWidth - cornerRadius; var bottomRightCenterY = nodeY + halfHeight - cornerRadius; arcIntersections = intersectLineCircle(x, y, nodeX, nodeY, bottomRightCenterX, bottomRightCenterY, cornerRadius + padding); // Ensure the intersection is on the desired quarter of the circle if (arcIntersections.length > 0 && arcIntersections[0] >= bottomRightCenterX && arcIntersections[1] >= bottomRightCenterY) { return [arcIntersections[0], arcIntersections[1]]; } } // Bottom Left { var bottomLeftCenterX = nodeX - halfWidth + cornerRadius; var bottomLeftCenterY = nodeY + halfHeight - cornerRadius; arcIntersections = intersectLineCircle(x, y, nodeX, nodeY, bottomLeftCenterX, bottomLeftCenterY, cornerRadius + padding); // Ensure the intersection is on the desired quarter of the circle if (arcIntersections.length > 0 && arcIntersections[0] <= bottomLeftCenterX && arcIntersections[1] >= bottomLeftCenterY) { return [arcIntersections[0], arcIntersections[1]]; } } return []; // if nothing }; var inLineVicinity = function inLineVicinity(x, y, lx1, ly1, lx2, ly2, tolerance) { var t = tolerance; var x1 = Math.min(lx1, lx2); var x2 = Math.max(lx1, lx2); var y1 = Math.min(ly1, ly2); var y2 = Math.max(ly1, ly2); return x1 - t <= x && x <= x2 + t && y1 - t <= y && y <= y2 + t; }; var inBezierVicinity = function inBezierVicinity(x, y, x1, y1, x2, y2, x3, y3, tolerance) { var bb = { x1: Math.min(x1, x3, x2) - tolerance, x2: Math.max(x1, x3, x2) + tolerance, y1: Math.min(y1, y3, y2) - tolerance, y2: Math.max(y1, y3, y2) + tolerance }; // if outside the rough bounding box for the bezier, then it can't be a hit if (x < bb.x1 || x > bb.x2 || y < bb.y1 || y > bb.y2) { // console.log('bezier out of rough bb') return false; } else { // console.log('do more expensive check'); return true; } }; var solveQuadratic = function solveQuadratic(a, b, c, val) { c -= val; var r = b * b - 4 * a * c; if (r < 0) { return []; } var sqrtR = Math.sqrt(r); var denom = 2 * a; var root1 = (-b + sqrtR) / denom; var root2 = (-b - sqrtR) / denom; return [root1, root2]; }; var solveCubic = function solveCubic(a, b, c, d, result) { // Solves a cubic function, returns root in form [r1, i1, r2, i2, r3, i3], where // r is the real component, i is the imaginary component // An implementation of the Cardano method from the year 1545 // http://en.wikipedia.org/wiki/Cubic_function#The_nature_of_the_roots var epsilon = 0.00001; // avoid division by zero while keeping the overall expression close in value if (a === 0) { a = epsilon; } b /= a; c /= a; d /= a; var discriminant, q, r, dum1, s, t, term1, r13; q = (3.0 * c - b * b) / 9.0; r = -(27.0 * d) + b * (9.0 * c - 2.0 * (b * b)); r /= 54.0; discriminant = q * q * q + r * r; result[1] = 0; term1 = b / 3.0; if (discriminant > 0) { s = r + Math.sqrt(discriminant); s = s < 0 ? -Math.pow(-s, 1.0 / 3.0) : Math.pow(s, 1.0 / 3.0); t = r - Math.sqrt(discriminant); t = t < 0 ? -Math.pow(-t, 1.0 / 3.0) : Math.pow(t, 1.0 / 3.0); result[0] = -term1 + s + t; term1 += (s + t) / 2.0; result[4] = result[2] = -term1; term1 = Math.sqrt(3.0) * (-t + s) / 2; result[3] = term1; result[5] = -term1; return; } result[5] = result[3] = 0; if (discriminant === 0) { r13 = r < 0 ? -Math.pow(-r, 1.0 / 3.0) : Math.pow(r, 1.0 / 3.0); result[0] = -term1 + 2.0 * r13; result[4] = result[2] = -(r13 + term1); return; } q = -q; dum1 = q * q * q; dum1 = Math.acos(r / Math.sqrt(dum1)); r13 = 2.0 * Math.sqrt(q); result[0] = -term1 + r13 * Math.cos(dum1 / 3.0); result[2] = -term1 + r13 * Math.cos((dum1 + 2.0 * Math.PI) / 3.0); result[4] = -term1 + r13 * Math.cos((dum1 + 4.0 * Math.PI) / 3.0); return; }; var sqdistToQuadraticBezier = function sqdistToQuadraticBezier(x, y, x1, y1, x2, y2, x3, y3) { // Find minimum distance by using the minimum of the distance // function between the given point and the curve // This gives the coefficients of the resulting cubic equation // whose roots tell us where a possible minimum is // (Coefficients are divided by 4) var a = 1.0 * x1 * x1 - 4 * x1 * x2 + 2 * x1 * x3 + 4 * x2 * x2 - 4 * x2 * x3 + x3 * x3 + y1 * y1 - 4 * y1 * y2 + 2 * y1 * y3 + 4 * y2 * y2 - 4 * y2 * y3 + y3 * y3; var b = 1.0 * 9 * x1 * x2 - 3 * x1 * x1 - 3 * x1 * x3 - 6 * x2 * x2 + 3 * x2 * x3 + 9 * y1 * y2 - 3 * y1 * y1 - 3 * y1 * y3 - 6 * y2 * y2 + 3 * y2 * y3; var c = 1.0 * 3 * x1 * x1 - 6 * x1 * x2 + x1 * x3 - x1 * x + 2 * x2 * x2 + 2 * x2 * x - x3 * x + 3 * y1 * y1 - 6 * y1 * y2 + y1 * y3 - y1 * y + 2 * y2 * y2 + 2 * y2 * y - y3 * y; var d = 1.0 * x1 * x2 - x1 * x1 + x1 * x - x2 * x + y1 * y2 - y1 * y1 + y1 * y - y2 * y; // debug("coefficients: " + a / a + ", " + b / a + ", " + c / a + ", " + d / a); var roots = []; // Use the cubic solving algorithm solveCubic(a, b, c, d, roots); var zeroThreshold = 0.0000001; var params = []; for (var index = 0; index < 6; index += 2) { if (Math.abs(roots[index + 1]) < zeroThreshold && roots[index] >= 0 && roots[index] <= 1.0) { params.push(roots[index]); } } params.push(1.0); params.push(0.0); var minDistanceSquared = -1; var curX, curY, distSquared; for (var i = 0; i < params.length; i++) { curX = Math.pow(1.0 - params[i], 2.0) * x1 + 2.0 * (1 - params[i]) * params[i] * x2 + params[i] * params[i] * x3; curY = Math.pow(1 - params[i], 2.0) * y1 + 2 * (1.0 - params[i]) * params[i] * y2 + params[i] * params[i] * y3; distSquared = Math.pow(curX - x, 2) + Math.pow(curY - y, 2); // debug('distance for param ' + params[i] + ": " + Math.sqrt(distSquared)); if (minDistanceSquared >= 0) { if (distSquared < minDistanceSquared) { minDistanceSquared = distSquared; } } else { minDistanceSquared = distSquared; } } return minDistanceSquared; }; var sqdistToFiniteLine = function sqdistToFiniteLine(x, y, x1, y1, x2, y2) { var offset = [x - x1, y - y1]; var line = [x2 - x1, y2 - y1]; var lineSq = line[0] * line[0] + line[1] * line[1]; var hypSq = offset[0] * offset[0] + offset[1] * offset[1]; var dotProduct = offset[0] * line[0] + offset[1] * line[1]; var adjSq = dotProduct * dotProduct / lineSq; if (dotProduct < 0) { return hypSq; } if (adjSq > lineSq) { return (x - x2) * (x - x2) + (y - y2) * (y - y2); } return hypSq - adjSq; }; var pointInsidePolygonPoints = function pointInsidePolygonPoints(x, y, points) { var x1, y1, x2, y2; var y3; // Intersect with vertical line through (x, y) var up = 0; // let down = 0; for (var i = 0; i < points.length / 2; i++) { x1 = points[i * 2]; y1 = points[i * 2 + 1]; if (i + 1 < points.length / 2) { x2 = points[(i + 1) * 2]; y2 = points[(i + 1) * 2 + 1]; } else { x2 = points[(i + 1 - points.length / 2) * 2]; y2 = points[(i + 1 - points.length / 2) * 2 + 1]; } if (x1 == x && x2 == x) ; else if (x1 >= x && x >= x2 || x1 <= x && x <= x2) { y3 = (x - x1) / (x2 - x1) * (y2 - y1) + y1; if (y3 > y) { up++; } // if( y3 < y ){ // down++; // } } else { continue; } } if (up % 2 === 0) { return false; } else { return true; } }; var pointInsidePolygon = function pointInsidePolygon(x, y, basePoints, centerX, centerY, width, height, direction, padding) { var transformedPoints = new Array(basePoints.length); // Gives negative angle var angle; if (direction[0] != null) { angle = Math.atan(direction[1] / direction[0]); if (direction[0] < 0) { angle = angle + Math.PI / 2; } else { angle = -angle - Math.PI / 2; } } else { angle = direction; } var cos = Math.cos(-angle); var sin = Math.sin(-angle); // console.log("base: " + basePoints); for (var i = 0; i < transformedPoints.length / 2; i++) { transformedPoints[i * 2] = width / 2 * (basePoints[i * 2] * cos - basePoints[i * 2 + 1] * sin); transformedPoints[i * 2 + 1] = height / 2 * (basePoints[i * 2 + 1] * cos + basePoints[i * 2] * sin); transformedPoints[i * 2] += centerX; transformedPoints[i * 2 + 1] += centerY; } var points; if (padding > 0) { var expandedLineSet = expandPolygon(transformedPoints, -padding); points = joinLines(expandedLineSet); } else { points = transformedPoints; } return pointInsidePolygonPoints(x, y, points); }; var pointInsideRoundPolygon = function pointInsideRoundPolygon(x, y, basePoints, centerX, centerY, width, height, corners) { var cutPolygonPoints = new Array(basePoints.length * 2); for (var i = 0; i < corners.length; i++) { var corner = corners[i]; cutPolygonPoints[i * 4 + 0] = corner.startX; cutPolygonPoints[i * 4 + 1] = corner.startY; cutPolygonPoints[i * 4 + 2] = corner.stopX; cutPolygonPoints[i * 4 + 3] = corner.stopY; var squaredDistance = Math.pow(corner.cx - x, 2) + Math.pow(corner.cy - y, 2); if (squaredDistance <= Math.pow(corner.radius, 2)) { return true; } } return pointInsidePolygonPoints(x, y, cutPolygonPoints); }; var joinLines = function joinLines(lineSet) { var vertices = new Array(lineSet.length / 2); var currentLineStartX, currentLineStartY, currentLineEndX, currentLineEndY; var nextLineStartX, nextLineStartY, nextLineEndX, nextLineEndY; for (var i = 0; i < lineSet.length / 4; i++) { currentLineStartX = lineSet[i * 4]; currentLineStartY = lineSet[i * 4 + 1]; currentLineEndX = lineSet[i * 4 + 2]; currentLineEndY = lineSet[i * 4 + 3]; if (i < lineSet.length / 4 - 1) { nextLineStartX = lineSet[(i + 1) * 4]; nextLineStartY = lineSet[(i + 1) * 4 + 1]; nextLineEndX = lineSet[(i + 1) * 4 + 2]; nextLineEndY = lineSet[(i + 1) * 4 + 3]; } else { nextLineStartX = lineSet[0]; nextLineStartY = lineSet[1]; nextLineEndX = lineSet[2]; nextLineEndY = lineSet[3]; } var intersection = finiteLinesIntersect(currentLineStartX, currentLineStartY, currentLineEndX, currentLineEndY, nextLineStartX, nextLineStartY, nextLineEndX, nextLineEndY, true); vertices[i * 2] = intersection[0]; vertices[i * 2 + 1] = intersection[1]; } return vertices; }; var expandPolygon = function expandPolygon(points, pad) { var expandedLineSet = new Array(points.length * 2); var currentPointX, currentPointY, nextPointX, nextPointY; for (var i = 0; i < points.length / 2; i++) { currentPointX = points[i * 2]; currentPointY = points[i * 2 + 1]; if (i < points.length / 2 - 1) { nextPointX = points[(i + 1) * 2]; nextPointY = points[(i + 1) * 2 + 1]; } else { nextPointX = points[0]; nextPointY = points[1]; } // Current line: [currentPointX, currentPointY] to [nextPointX, nextPointY] // Assume CCW polygon winding var offsetX = nextPointY - currentPointY; var offsetY = -(nextPointX - currentPointX); // Normalize var offsetLength = Math.sqrt(offsetX * offsetX + offsetY * offsetY); var normalizedOffsetX = offsetX / offsetLength; var normalizedOffsetY = offsetY / offsetLength; expandedLineSet[i * 4] = currentPointX + normalizedOffsetX * pad; expandedLineSet[i * 4 + 1] = currentPointY + normalizedOffsetY * pad; expandedLineSet[i * 4 + 2] = nextPointX + normalizedOffsetX * pad; expandedLineSet[i * 4 + 3] = nextPointY + normalizedOffsetY * pad; } return expandedLineSet; }; var intersectLineEllipse = function intersectLineEllipse(x, y, centerX, centerY, ellipseWradius, ellipseHradius) { var dispX = centerX - x; var dispY = centerY - y; dispX /= ellipseWradius; dispY /= ellipseHradius; var len = Math.sqrt(dispX * dispX + dispY * dispY); var newLength = len - 1; if (newLength < 0) { return []; } var lenProportion = newLength / len; return [(centerX - x) * lenProportion + x, (centerY - y) * lenProportion + y]; }; var checkInEllipse = function checkInEllipse(x, y, width, height, centerX, centerY, padding) { x -= centerX; y -= centerY; x /= width / 2 + padding; y /= height / 2 + padding; return x * x + y * y <= 1; }; // Returns intersections of increasing distance from line's start point var intersectLineCircle = function intersectLineCircle(x1, y1, x2, y2, centerX, centerY, radius) { // Calculate d, direction vector of line var d = [x2 - x1, y2 - y1]; // Direction vector of line var f = [x1 - centerX, y1 - centerY]; var a = d[0] * d[0] + d[1] * d[1]; var b = 2 * (f[0] * d[0] + f[1] * d[1]); var c = f[0] * f[0] + f[1] * f[1] - radius * radius; var discriminant = b * b - 4 * a * c; if (discriminant < 0) { return []; } var t1 = (-b + Math.sqrt(discriminant)) / (2 * a); var t2 = (-b - Math.sqrt(discriminant)) / (2 * a); var tMin = Math.min(t1, t2); var tMax = Math.max(t1, t2); var inRangeParams = []; if (tMin >= 0 && tMin <= 1) { inRangeParams.push(tMin); } if (tMax >= 0 && tMax <= 1) { inRangeParams.push(tMax); } if (inRangeParams.length === 0) { return []; } var nearIntersectionX = inRangeParams[0] * d[0] + x1; var nearIntersectionY = inRangeParams[0] * d[1] + y1; if (inRangeParams.length > 1) { if (inRangeParams[0] == inRangeParams[1]) { return [nearIntersectionX, nearIntersectionY]; } else { var farIntersectionX = inRangeParams[1] * d[0] + x1; var farIntersectionY = inRangeParams[1] * d[1] + y1; return [nearIntersectionX, nearIntersectionY, farIntersectionX, farIntersectionY]; } } else { return [nearIntersectionX, nearIntersectionY]; } }; var midOfThree = function midOfThree(a, b, c) { if (b <= a && a <= c || c <= a && a <= b) { return a; } else if (a <= b && b <= c || c <= b && b <= a) { return b; } else { return c; } }; // (x1,y1)=>(x2,y2) intersect with (x3,y3)=>(x4,y4) var finiteLinesIntersect = function finiteLinesIntersect(x1, y1, x2, y2, x3, y3, x4, y4, infiniteLines) { var dx13 = x1 - x3; var dx21 = x2 - x1; var dx43 = x4 - x3; var dy13 = y1 - y3; var dy21 = y2 - y1; var dy43 = y4 - y3; var ua_t = dx43 * dy13 - dy43 * dx13; var ub_t = dx21 * dy13 - dy21 * dx13; var u_b = dy43 * dx21 - dx43 * dy21; if (u_b !== 0) { var ua = ua_t / u_b; var ub = ub_t / u_b; var flptThreshold = 0.001; var _min = 0 - flptThreshold; var _max = 1 + flptThreshold; if (_min <= ua && ua <= _max && _min <= ub && ub <= _max) { return [x1 + ua * dx21, y1 + ua * dy21]; } else { if (!infiniteLines) { return []; } else { return [x1 + ua * dx21, y1 + ua * dy21]; } } } else { if (ua_t === 0 || ub_t === 0) { // Parallel, coincident lines. Check if overlap // Check endpoint of second line if (midOfThree(x1, x2, x4) === x4) { return [x4, y4]; } // Check start point of second line if (midOfThree(x1, x2, x3) === x3) { return [x3, y3]; } // Endpoint of first line if (midOfThree(x3, x4, x2) === x2) { return [x2, y2]; } return []; } else { // Parallel, non-coincident return []; } } }; // math.polygonIntersectLine( x, y, basePoints, centerX, centerY, width, height, padding ) // intersect a node polygon (pts transformed) // // math.polygonIntersectLine( x, y, basePoints, centerX, centerY ) // intersect the points (no transform) var polygonIntersectLine = function polygonIntersectLine(x, y, basePoints, centerX, centerY, width, height, padding) { var intersections = []; var intersection; var transformedPoints = new Array(basePoints.length); var doTransform = true; if (width == null) { doTransform = false; } var points; if (doTransform) { for (var i = 0; i < transformedPoints.length / 2; i++) { transformedPoints[i * 2] = basePoints[i * 2] * width + centerX; transformedPoints[i * 2 + 1] = basePoints[i * 2 + 1] * height + centerY; } if (padding > 0) { var expandedLineSet = expandPolygon(transformedPoints, -padding); points = joinLines(expandedLineSet); } else { points = transformedPoints; } } else { points = basePoints; } var currentX, currentY, nextX, nextY; for (var _i2 = 0; _i2 < points.length / 2; _i2++) { currentX = points[_i2 * 2]; currentY = points[_i2 * 2 + 1]; if (_i2 < points.length / 2 - 1) { nextX = points[(_i2 + 1) * 2]; nextY = points[(_i2 + 1) * 2 + 1]; } else { nextX = points[0]; nextY = points[1]; } intersection = finiteLinesIntersect(x, y, centerX, centerY, currentX, currentY, nextX, nextY); if (intersection.length !== 0) { intersections.push(intersection[0], intersection[1]); } } return intersections; }; var roundPolygonIntersectLine = function roundPolygonIntersectLine(x, y, basePoints, centerX, centerY, width, height, padding, corners) { var intersections = []; var intersection; var lines = new Array(basePoints.length * 2); corners.forEach(function (corner, i) { if (i === 0) { lines[lines.length - 2] = corner.startX; lines[lines.length - 1] = corner.startY; } else { lines[i * 4 - 2] = corner.startX; lines[i * 4 - 1] = corner.startY; } lines[i * 4] = corner.stopX; lines[i * 4 + 1] = corner.stopY; intersection = intersectLineCircle(x, y, centerX, centerY, corner.cx, corner.cy, corner.radius); if (intersection.length !== 0) { intersections.push(intersection[0], intersection[1]); } }); for (var i = 0; i < lines.length / 4; i++) { intersection = finiteLinesIntersect(x, y, centerX, centerY, lines[i * 4], lines[i * 4 + 1], lines[i * 4 + 2], lines[i * 4 + 3], false); if (intersection.length !== 0) { intersections.push(intersection[0], intersection[1]); } } if (intersections.length > 2) { var lowestIntersection = [intersections[0], intersections[1]]; var lowestSquaredDistance = Math.pow(lowestIntersection[0] - x, 2) + Math.pow(lowestIntersection[1] - y, 2); for (var _i3 = 1; _i3 < intersections.length / 2; _i3++) { var squaredDistance = Math.pow(intersections[_i3 * 2] - x, 2) + Math.pow(intersections[_i3 * 2 + 1] - y, 2); if (squaredDistance <= lowestSquaredDistance) { lowestIntersection[0] = intersections[_i3 * 2]; lowestIntersection[1] = intersections[_i3 * 2 + 1]; lowestSquaredDistance = squaredDistance; } } return lowestIntersection; } return intersections; }; var shortenIntersection = function shortenIntersection(intersection, offset, amount) { var disp = [intersection[0] - offset[0], intersection[1] - offset[1]]; var length = Math.sqrt(disp[0] * disp[0] + disp[1] * disp[1]); var lenRatio = (length - amount) / length; if (lenRatio < 0) { lenRatio = 0.00001; } return [offset[0] + lenRatio * disp[0], offset[1] + lenRatio * disp[1]]; }; var generateUnitNgonPointsFitToSquare = function generateUnitNgonPointsFitToSquare(sides, rotationRadians) { var points = generateUnitNgonPoints(sides, rotationRadians); points = fitPolygonToSquare(points); return points; }; var fitPolygonToSquare = function fitPolygonToSquare(points) { var x, y; var sides = points.length / 2; var minX = Infinity, minY = Infinity, maxX = -Infinity, maxY = -Infinity; for (var i = 0; i < sides; i++) { x = points[2 * i]; y = points[2 * i + 1]; minX = Math.min(minX, x); maxX = Math.max(maxX, x); minY = Math.min(minY, y); maxY = Math.max(maxY, y); } // stretch factors var sx = 2 / (maxX - minX); var sy = 2 / (maxY - minY); for (var _i4 = 0; _i4 < sides; _i4++) { x = points[2 * _i4] = points[2 * _i4] * sx; y = points[2 * _i4 + 1] = points[2 * _i4 + 1] * sy; minX = Math.min(minX, x); maxX = Math.max(maxX, x); minY = Math.min(minY, y); maxY = Math.max(maxY, y); } if (minY < -1) { for (var _i5 = 0; _i5 < sides; _i5++) { y = points[2 * _i5 + 1] = points[2 * _i5 + 1] + (-1 - minY); } } return points; }; var generateUnitNgonPoints = function generateUnitNgonPoints(sides, rotationRadians) { var increment = 1.0 / sides * 2 * Math.PI; var startAngle = sides % 2 === 0 ? Math.PI / 2.0 + increment / 2.0 : Math.PI / 2.0; startAngle += rotationRadians; var points = new Array(sides * 2); var currentAngle; for (var i = 0; i < sides; i++) { currentAngle = i * increment + startAngle; points[2 * i] = Math.cos(currentAngle); // x points[2 * i + 1] = Math.sin(-currentAngle); // y } return points; }; // Set the default radius, unless half of width or height is smaller than default var getRoundRectangleRadius = function getRoundRectangleRadius(width, height) { return Math.min(width / 4, height / 4, 8); }; // Set the default radius var getRoundPolygonRadius = function getRoundPolygonRadius(width, height) { return Math.min(width / 10, height / 10, 8); }; var getCutRectangleCornerLength = function getCutRectangleCornerLength() { return 8; }; var bezierPtsToQuadCoeff = function bezierPtsToQuadCoeff(p0, p1, p2) { return [p0 - 2 * p1 + p2, 2 * (p1 - p0), p0]; }; // get curve width, height, and control point position offsets as a percentage of node height / width var getBarrelCurveConstants = function getBarrelCurveConstants(width, height) { return { heightOffset: Math.min(15, 0.05 * height), widthOffset: Math.min(100, 0.25 * width), ctrlPtOffsetPct: 0.05 }; }; var pageRankDefaults = defaults$g({ dampingFactor: 0.8, precision: 0.000001, iterations: 200, weight: function weight(edge) { return 1; } }); var elesfn$o = { pageRank: function pageRank(options) { var _pageRankDefaults = pageRankDefaults(options), dampingFactor = _pageRankDefaults.dampingFactor, precision = _pageRankDefaults.precision, iterations = _pageRankDefaults.iterations, weight = _pageRankDefaults.weight; var cy = this._private.cy; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; var numNodes = nodes.length; var numNodesSqd = numNodes * numNodes; var numEdges = edges.length; // Construct transposed adjacency matrix // First lets have a zeroed matrix of the right size // We'll also keep track of the sum of each column var matrix = new Array(numNodesSqd); var columnSum = new Array(numNodes); var additionalProb = (1 - dampingFactor) / numNodes; // Create null matrix for (var i = 0; i < numNodes; i++) { for (var j = 0; j < numNodes; j++) { var n = i * numNodes + j; matrix[n] = 0; } columnSum[i] = 0; } // Now, process edges for (var _i = 0; _i < numEdges; _i++) { var edge = edges[_i]; var srcId = edge.data('source'); var tgtId = edge.data('target'); // Don't include loops in the matrix if (srcId === tgtId) { continue; } var s = nodes.indexOfId(srcId); var t = nodes.indexOfId(tgtId); var w = weight(edge); var _n = t * numNodes + s; // Update matrix matrix[_n] += w; // Update column sum columnSum[s] += w; } // Add additional probability based on damping factor // Also, take into account columns that have sum = 0 var p = 1.0 / numNodes + additionalProb; // Shorthand // Traverse matrix, column by column for (var _j = 0; _j < numNodes; _j++) { if (columnSum[_j] === 0) { // No 'links' out from node jth, assume equal probability for each possible node for (var _i2 = 0; _i2 < numNodes; _i2++) { var _n2 = _i2 * numNodes + _j; matrix[_n2] = p; } } else { // Node jth has outgoing link, compute normalized probabilities for (var _i3 = 0; _i3 < numNodes; _i3++) { var _n3 = _i3 * numNodes + _j; matrix[_n3] = matrix[_n3] / columnSum[_j] + additionalProb; } } } // Compute dominant eigenvector using power method var eigenvector = new Array(numNodes); var temp = new Array(numNodes); var previous; // Start with a vector of all 1's // Also, initialize a null vector which will be used as shorthand for (var _i4 = 0; _i4 < numNodes; _i4++) { eigenvector[_i4] = 1; } for (var iter = 0; iter < iterations; iter++) { // Temp array with all 0's for (var _i5 = 0; _i5 < numNodes; _i5++) { temp[_i5] = 0; } // Multiply matrix with previous result for (var _i6 = 0; _i6 < numNodes; _i6++) { for (var _j2 = 0; _j2 < numNodes; _j2++) { var _n4 = _i6 * numNodes + _j2; temp[_i6] += matrix[_n4] * eigenvector[_j2]; } } inPlaceSumNormalize(temp); previous = eigenvector; eigenvector = temp; temp = previous; var diff = 0; // Compute difference (squared module) of both vectors for (var _i7 = 0; _i7 < numNodes; _i7++) { var delta = previous[_i7] - eigenvector[_i7]; diff += delta * delta; } // If difference is less than the desired threshold, stop iterating if (diff < precision) { break; } } // Construct result var res = { rank: function rank(node) { node = cy.collection(node)[0]; return eigenvector[nodes.indexOf(node)]; } }; return res; } // pageRank }; // elesfn var defaults$f = defaults$g({ root: null, weight: function weight(edge) { return 1; }, directed: false, alpha: 0 }); var elesfn$n = { degreeCentralityNormalized: function degreeCentralityNormalized(options) { options = defaults$f(options); var cy = this.cy(); var nodes = this.nodes(); var numNodes = nodes.length; if (!options.directed) { var degrees = {}; var maxDegree = 0; for (var i = 0; i < numNodes; i++) { var node = nodes[i]; // add current node to the current options object and call degreeCentrality options.root = node; var currDegree = this.degreeCentrality(options); if (maxDegree < currDegree.degree) { maxDegree = currDegree.degree; } degrees[node.id()] = currDegree.degree; } return { degree: function degree(node) { if (maxDegree === 0) { return 0; } if (string(node)) { // from is a selector string node = cy.filter(node); } return degrees[node.id()] / maxDegree; } }; } else { var indegrees = {}; var outdegrees = {}; var maxIndegree = 0; var maxOutdegree = 0; for (var _i = 0; _i < numNodes; _i++) { var _node = nodes[_i]; var id = _node.id(); // add current node to the current options object and call degreeCentrality options.root = _node; var _currDegree = this.degreeCentrality(options); if (maxIndegree < _currDegree.indegree) maxIndegree = _currDegree.indegree; if (maxOutdegree < _currDegree.outdegree) maxOutdegree = _currDegree.outdegree; indegrees[id] = _currDegree.indegree; outdegrees[id] = _currDegree.outdegree; } return { indegree: function indegree(node) { if (maxIndegree == 0) { return 0; } if (string(node)) { // from is a selector string node = cy.filter(node); } return indegrees[node.id()] / maxIndegree; }, outdegree: function outdegree(node) { if (maxOutdegree === 0) { return 0; } if (string(node)) { // from is a selector string node = cy.filter(node); } return outdegrees[node.id()] / maxOutdegree; } }; } }, // degreeCentralityNormalized // Implemented from the algorithm in Opsahl's paper // "Node centrality in weighted networks: Generalizing degree and shortest paths" // check the heading 2 "Degree" degreeCentrality: function degreeCentrality(options) { options = defaults$f(options); var cy = this.cy(); var callingEles = this; var _options = options, root = _options.root, weight = _options.weight, directed = _options.directed, alpha = _options.alpha; root = cy.collection(root)[0]; if (!directed) { var connEdges = root.connectedEdges().intersection(callingEles); var k = connEdges.length; var s = 0; // Now, sum edge weights for (var i = 0; i < connEdges.length; i++) { s += weight(connEdges[i]); } return { degree: Math.pow(k, 1 - alpha) * Math.pow(s, alpha) }; } else { var edges = root.connectedEdges(); var incoming = edges.filter(function (edge) { return edge.target().same(root) && callingEles.has(edge); }); var outgoing = edges.filter(function (edge) { return edge.source().same(root) && callingEles.has(edge); }); var k_in = incoming.length; var k_out = outgoing.length; var s_in = 0; var s_out = 0; // Now, sum incoming edge weights for (var _i2 = 0; _i2 < incoming.length; _i2++) { s_in += weight(incoming[_i2]); } // Now, sum outgoing edge weights for (var _i3 = 0; _i3 < outgoing.length; _i3++) { s_out += weight(outgoing[_i3]); } return { indegree: Math.pow(k_in, 1 - alpha) * Math.pow(s_in, alpha), outdegree: Math.pow(k_out, 1 - alpha) * Math.pow(s_out, alpha) }; } } // degreeCentrality }; // elesfn // nice, short mathematical alias elesfn$n.dc = elesfn$n.degreeCentrality; elesfn$n.dcn = elesfn$n.degreeCentralityNormalised = elesfn$n.degreeCentralityNormalized; var defaults$e = defaults$g({ harmonic: true, weight: function weight() { return 1; }, directed: false, root: null }); var elesfn$m = { closenessCentralityNormalized: function closenessCentralityNormalized(options) { var _defaults = defaults$e(options), harmonic = _defaults.harmonic, weight = _defaults.weight, directed = _defaults.directed; var cy = this.cy(); var closenesses = {}; var maxCloseness = 0; var nodes = this.nodes(); var fw = this.floydWarshall({ weight: weight, directed: directed }); // Compute closeness for every node and find the maximum closeness for (var i = 0; i < nodes.length; i++) { var currCloseness = 0; var node_i = nodes[i]; for (var j = 0; j < nodes.length; j++) { if (i !== j) { var d = fw.distance(node_i, nodes[j]); if (harmonic) { currCloseness += 1 / d; } else { currCloseness += d; } } } if (!harmonic) { currCloseness = 1 / currCloseness; } if (maxCloseness < currCloseness) { maxCloseness = currCloseness; } closenesses[node_i.id()] = currCloseness; } return { closeness: function closeness(node) { if (maxCloseness == 0) { return 0; } if (string(node)) { // from is a selector string node = cy.filter(node)[0].id(); } else { // from is a node node = node.id(); } return closenesses[node] / maxCloseness; } }; }, // Implemented from pseudocode from wikipedia closenessCentrality: function closenessCentrality(options) { var _defaults2 = defaults$e(options), root = _defaults2.root, weight = _defaults2.weight, directed = _defaults2.directed, harmonic = _defaults2.harmonic; root = this.filter(root)[0]; // we need distance from this node to every other node var dijkstra = this.dijkstra({ root: root, weight: weight, directed: directed }); var totalDistance = 0; var nodes = this.nodes(); for (var i = 0; i < nodes.length; i++) { var n = nodes[i]; if (!n.same(root)) { var d = dijkstra.distanceTo(n); if (harmonic) { totalDistance += 1 / d; } else { totalDistance += d; } } } return harmonic ? totalDistance : 1 / totalDistance; } // closenessCentrality }; // elesfn // nice, short mathematical alias elesfn$m.cc = elesfn$m.closenessCentrality; elesfn$m.ccn = elesfn$m.closenessCentralityNormalised = elesfn$m.closenessCentralityNormalized; var defaults$d = defaults$g({ weight: null, directed: false }); var elesfn$l = { // Implemented from the algorithm in the paper "On Variants of Shortest-Path Betweenness Centrality and their Generic Computation" by Ulrik Brandes betweennessCentrality: function betweennessCentrality(options) { var _defaults = defaults$d(options), directed = _defaults.directed, weight = _defaults.weight; var weighted = weight != null; var cy = this.cy(); // starting var V = this.nodes(); var A = {}; var _C = {}; var max = 0; var C = { set: function set(key, val) { _C[key] = val; if (val > max) { max = val; } }, get: function get(key) { return _C[key]; } }; // A contains the neighborhoods of every node for (var i = 0; i < V.length; i++) { var v = V[i]; var vid = v.id(); if (directed) { A[vid] = v.outgoers().nodes(); // get outgoers of every node } else { A[vid] = v.openNeighborhood().nodes(); // get neighbors of every node } C.set(vid, 0); } var _loop = function _loop(s) { var sid = V[s].id(); var S = []; // stack var P = {}; var g = {}; var d = {}; var Q = new heap(function (a, b) { return d[a] - d[b]; }); // queue // init dictionaries for (var _i = 0; _i < V.length; _i++) { var _vid = V[_i].id(); P[_vid] = []; g[_vid] = 0; d[_vid] = Infinity; } g[sid] = 1; // sigma d[sid] = 0; // distance to s Q.push(sid); while (!Q.empty()) { var _v = Q.pop(); S.push(_v); if (weighted) { for (var j = 0; j < A[_v].length; j++) { var w = A[_v][j]; var vEle = cy.getElementById(_v); var edge = void 0; if (vEle.edgesTo(w).length > 0) { edge = vEle.edgesTo(w)[0]; } else { edge = w.edgesTo(vEle)[0]; } var edgeWeight = weight(edge); w = w.id(); if (d[w] > d[_v] + edgeWeight) { d[w] = d[_v] + edgeWeight; if (Q.nodes.indexOf(w) < 0) { //if w is not in Q Q.push(w); } else { // update position if w is in Q Q.updateItem(w); } g[w] = 0; P[w] = []; } if (d[w] == d[_v] + edgeWeight) { g[w] = g[w] + g[_v]; P[w].push(_v); } } } else { for (var _j = 0; _j < A[_v].length; _j++) { var _w = A[_v][_j].id(); if (d[_w] == Infinity) { Q.push(_w); d[_w] = d[_v] + 1; } if (d[_w] == d[_v] + 1) { g[_w] = g[_w] + g[_v]; P[_w].push(_v); } } } } var e = {}; for (var _i2 = 0; _i2 < V.length; _i2++) { e[V[_i2].id()] = 0; } while (S.length > 0) { var _w2 = S.pop(); for (var _j2 = 0; _j2 < P[_w2].length; _j2++) { var _v2 = P[_w2][_j2]; e[_v2] = e[_v2] + g[_v2] / g[_w2] * (1 + e[_w2]); } if (_w2 != V[s].id()) { C.set(_w2, C.get(_w2) + e[_w2]); } } }; for (var s = 0; s < V.length; s++) { _loop(s); } var ret = { betweenness: function betweenness(node) { var id = cy.collection(node).id(); return C.get(id); }, betweennessNormalized: function betweennessNormalized(node) { if (max == 0) { return 0; } var id = cy.collection(node).id(); return C.get(id) / max; } }; // alias ret.betweennessNormalised = ret.betweennessNormalized; return ret; } // betweennessCentrality }; // elesfn // nice, short mathematical alias elesfn$l.bc = elesfn$l.betweennessCentrality; // Implemented by Zoe Xi @zoexi for GSOC 2016 /* eslint-disable no-unused-vars */ var defaults$c = defaults$g({ expandFactor: 2, // affects time of computation and cluster granularity to some extent: M * M inflateFactor: 2, // affects cluster granularity (the greater the value, the more clusters): M(i,j) / E(j) multFactor: 1, // optional self loops for each node. Use a neutral value to improve cluster computations. maxIterations: 20, // maximum number of iterations of the MCL algorithm in a single run attributes: [ // attributes/features used to group nodes, ie. similarity values between nodes function (edge) { return 1; }] }); /* eslint-enable */ var setOptions$3 = function setOptions(options) { return defaults$c(options); }; /* eslint-enable */ var getSimilarity$1 = function getSimilarity(edge, attributes) { var total = 0; for (var i = 0; i < attributes.length; i++) { total += attributes[i](edge); } return total; }; var addLoops = function addLoops(M, n, val) { for (var i = 0; i < n; i++) { M[i * n + i] = val; } }; var normalize = function normalize(M, n) { var sum; for (var col = 0; col < n; col++) { sum = 0; for (var row = 0; row < n; row++) { sum += M[row * n + col]; } for (var _row = 0; _row < n; _row++) { M[_row * n + col] = M[_row * n + col] / sum; } } }; // TODO: blocked matrix multiplication? var mmult = function mmult(A, B, n) { var C = new Array(n * n); for (var i = 0; i < n; i++) { for (var j = 0; j < n; j++) { C[i * n + j] = 0; } for (var k = 0; k < n; k++) { for (var _j = 0; _j < n; _j++) { C[i * n + _j] += A[i * n + k] * B[k * n + _j]; } } } return C; }; var expand = function expand(M, n, expandFactor /** power **/) { var _M = M.slice(0); for (var p = 1; p < expandFactor; p++) { M = mmult(M, _M, n); } return M; }; var inflate = function inflate(M, n, inflateFactor /** r **/) { var _M = new Array(n * n); // M(i,j) ^ inflatePower for (var i = 0; i < n * n; i++) { _M[i] = Math.pow(M[i], inflateFactor); } normalize(_M, n); return _M; }; var hasConverged = function hasConverged(M, _M, n2, roundFactor) { // Check that both matrices have the same elements (i,j) for (var i = 0; i < n2; i++) { var v1 = Math.round(M[i] * Math.pow(10, roundFactor)) / Math.pow(10, roundFactor); // truncate to 'roundFactor' decimal places var v2 = Math.round(_M[i] * Math.pow(10, roundFactor)) / Math.pow(10, roundFactor); if (v1 !== v2) { return false; } } return true; }; var assign$2 = function assign(M, n, nodes, cy) { var clusters = []; for (var i = 0; i < n; i++) { var cluster = []; for (var j = 0; j < n; j++) { // Row-wise attractors and elements that they attract belong in same cluster if (Math.round(M[i * n + j] * 1000) / 1000 > 0) { cluster.push(nodes[j]); } } if (cluster.length !== 0) { clusters.push(cy.collection(cluster)); } } return clusters; }; var isDuplicate = function isDuplicate(c1, c2) { for (var i = 0; i < c1.length; i++) { if (!c2[i] || c1[i].id() !== c2[i].id()) { return false; } } return true; }; var removeDuplicates = function removeDuplicates(clusters) { for (var i = 0; i < clusters.length; i++) { for (var j = 0; j < clusters.length; j++) { if (i != j && isDuplicate(clusters[i], clusters[j])) { clusters.splice(j, 1); } } } return clusters; }; var markovClustering = function markovClustering(options) { var nodes = this.nodes(); var edges = this.edges(); var cy = this.cy(); // Set parameters of algorithm: var opts = setOptions$3(options); // Map each node to its position in node array var id2position = {}; for (var i = 0; i < nodes.length; i++) { id2position[nodes[i].id()] = i; } // Generate stochastic matrix M from input graph G (should be symmetric/undirected) var n = nodes.length, n2 = n * n; var M = new Array(n2), _M; for (var _i = 0; _i < n2; _i++) { M[_i] = 0; } for (var e = 0; e < edges.length; e++) { var edge = edges[e]; var _i2 = id2position[edge.source().id()]; var j = id2position[edge.target().id()]; var sim = getSimilarity$1(edge, opts.attributes); M[_i2 * n + j] += sim; // G should be symmetric and undirected M[j * n + _i2] += sim; } // Begin Markov cluster algorithm // Step 1: Add self loops to each node, ie. add multFactor to matrix diagonal addLoops(M, n, opts.multFactor); // Step 2: M = normalize( M ); normalize(M, n); var isStillMoving = true; var iterations = 0; while (isStillMoving && iterations < opts.maxIterations) { isStillMoving = false; // Step 3: _M = expand(M, n, opts.expandFactor); // Step 4: M = inflate(_M, n, opts.inflateFactor); // Step 5: check to see if ~steady state has been reached if (!hasConverged(M, _M, n2, 4)) { isStillMoving = true; } iterations++; } // Build clusters from matrix var clusters = assign$2(M, n, nodes, cy); // Remove duplicate clusters due to symmetry of graph and M matrix clusters = removeDuplicates(clusters); return clusters; }; var markovClustering$1 = { markovClustering: markovClustering, mcl: markovClustering }; // Common distance metrics for clustering algorithms var identity = function identity(x) { return x; }; var absDiff = function absDiff(p, q) { return Math.abs(q - p); }; var addAbsDiff = function addAbsDiff(total, p, q) { return total + absDiff(p, q); }; var addSquaredDiff = function addSquaredDiff(total, p, q) { return total + Math.pow(q - p, 2); }; var sqrt = function sqrt(x) { return Math.sqrt(x); }; var maxAbsDiff = function maxAbsDiff(currentMax, p, q) { return Math.max(currentMax, absDiff(p, q)); }; var getDistance = function getDistance(length, getP, getQ, init, visit) { var post = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : identity; var ret = init; var p, q; for (var dim = 0; dim < length; dim++) { p = getP(dim); q = getQ(dim); ret = visit(ret, p, q); } return post(ret); }; var distances = { euclidean: function euclidean(length, getP, getQ) { if (length >= 2) { return getDistance(length, getP, getQ, 0, addSquaredDiff, sqrt); } else { // for single attr case, more efficient to avoid sqrt return getDistance(length, getP, getQ, 0, addAbsDiff); } }, squaredEuclidean: function squaredEuclidean(length, getP, getQ) { return getDistance(length, getP, getQ, 0, addSquaredDiff); }, manhattan: function manhattan(length, getP, getQ) { return getDistance(length, getP, getQ, 0, addAbsDiff); }, max: function max(length, getP, getQ) { return getDistance(length, getP, getQ, -Infinity, maxAbsDiff); } }; // in case the user accidentally doesn't use camel case distances['squared-euclidean'] = distances['squaredEuclidean']; distances['squaredeuclidean'] = distances['squaredEuclidean']; function clusteringDistance (method, length, getP, getQ, nodeP, nodeQ) { var impl; if (fn$6(method)) { impl = method; } else { impl = distances[method] || distances.euclidean; } if (length === 0 && fn$6(method)) { return impl(nodeP, nodeQ); } else { return impl(length, getP, getQ, nodeP, nodeQ); } } var defaults$b = defaults$g({ k: 2, m: 2, sensitivityThreshold: 0.0001, distance: 'euclidean', maxIterations: 10, attributes: [], testMode: false, testCentroids: null }); var setOptions$2 = function setOptions(options) { return defaults$b(options); }; var getDist = function getDist(type, node, centroid, attributes, mode) { var noNodeP = mode !== 'kMedoids'; var getP = noNodeP ? function (i) { return centroid[i]; } : function (i) { return attributes[i](centroid); }; var getQ = function getQ(i) { return attributes[i](node); }; var nodeP = centroid; var nodeQ = node; return clusteringDistance(type, attributes.length, getP, getQ, nodeP, nodeQ); }; var randomCentroids = function randomCentroids(nodes, k, attributes) { var ndim = attributes.length; var min = new Array(ndim); var max = new Array(ndim); var centroids = new Array(k); var centroid = null; // Find min, max values for each attribute dimension for (var i = 0; i < ndim; i++) { min[i] = nodes.min(attributes[i]).value; max[i] = nodes.max(attributes[i]).value; } // Build k centroids, each represented as an n-dim feature vector for (var c = 0; c < k; c++) { centroid = []; for (var _i = 0; _i < ndim; _i++) { centroid[_i] = Math.random() * (max[_i] - min[_i]) + min[_i]; // random initial value } centroids[c] = centroid; } return centroids; }; var classify = function classify(node, centroids, distance, attributes, type) { var min = Infinity; var index = 0; for (var i = 0; i < centroids.length; i++) { var dist = getDist(distance, node, centroids[i], attributes, type); if (dist < min) { min = dist; index = i; } } return index; }; var buildCluster = function buildCluster(centroid, nodes, assignment) { var cluster = []; var node = null; for (var n = 0; n < nodes.length; n++) { node = nodes[n]; if (assignment[node.id()] === centroid) { //console.log("Node " + node.id() + " is associated with medoid #: " + m); cluster.push(node); } } return cluster; }; var haveValuesConverged = function haveValuesConverged(v1, v2, sensitivityThreshold) { return Math.abs(v2 - v1) <= sensitivityThreshold; }; var haveMatricesConverged = function haveMatricesConverged(v1, v2, sensitivityThreshold) { for (var i = 0; i < v1.length; i++) { for (var j = 0; j < v1[i].length; j++) { var diff = Math.abs(v1[i][j] - v2[i][j]); if (diff > sensitivityThreshold) { return false; } } } return true; }; var seenBefore = function seenBefore(node, medoids, n) { for (var i = 0; i < n; i++) { if (node === medoids[i]) return true; } return false; }; var randomMedoids = function randomMedoids(nodes, k) { var medoids = new Array(k); // For small data sets, the probability of medoid conflict is greater, // so we need to check to see if we've already seen or chose this node before. if (nodes.length < 50) { // Randomly select k medoids from the n nodes for (var i = 0; i < k; i++) { var node = nodes[Math.floor(Math.random() * nodes.length)]; // If we've already chosen this node to be a medoid, don't choose it again (for small data sets). // Instead choose a different random node. while (seenBefore(node, medoids, i)) { node = nodes[Math.floor(Math.random() * nodes.length)]; } medoids[i] = node; } } else { // Relatively large data set, so pretty safe to not check and just select random nodes for (var _i2 = 0; _i2 < k; _i2++) { medoids[_i2] = nodes[Math.floor(Math.random() * nodes.length)]; } } return medoids; }; var findCost = function findCost(potentialNewMedoid, cluster, attributes) { var cost = 0; for (var n = 0; n < cluster.length; n++) { cost += getDist('manhattan', cluster[n], potentialNewMedoid, attributes, 'kMedoids'); } return cost; }; var kMeans = function kMeans(options) { var cy = this.cy(); var nodes = this.nodes(); var node = null; // Set parameters of algorithm: # of clusters, distance metric, etc. var opts = setOptions$2(options); // Begin k-means algorithm var clusters = new Array(opts.k); var assignment = {}; var centroids; // Step 1: Initialize centroid positions if (opts.testMode) { if (typeof opts.testCentroids === 'number') { // TODO: implement a seeded random number generator. opts.testCentroids; centroids = randomCentroids(nodes, opts.k, opts.attributes); } else if (_typeof(opts.testCentroids) === 'object') { centroids = opts.testCentroids; } else { centroids = randomCentroids(nodes, opts.k, opts.attributes); } } else { centroids = randomCentroids(nodes, opts.k, opts.attributes); } var isStillMoving = true; var iterations = 0; while (isStillMoving && iterations < opts.maxIterations) { // Step 2: Assign nodes to the nearest centroid for (var n = 0; n < nodes.length; n++) { node = nodes[n]; // Determine which cluster this node belongs to: node id => cluster # assignment[node.id()] = classify(node, centroids, opts.distance, opts.attributes, 'kMeans'); } // Step 3: For each of the k clusters, update its centroid isStillMoving = false; for (var c = 0; c < opts.k; c++) { // Get all nodes that belong to this cluster var cluster = buildCluster(c, nodes, assignment); if (cluster.length === 0) { // If cluster is empty, break out early & move to next cluster continue; } // Update centroids by calculating avg of all nodes within the cluster. var ndim = opts.attributes.length; var centroid = centroids[c]; // [ dim_1, dim_2, dim_3, ... , dim_n ] var newCentroid = new Array(ndim); var sum = new Array(ndim); for (var d = 0; d < ndim; d++) { sum[d] = 0.0; for (var i = 0; i < cluster.length; i++) { node = cluster[i]; sum[d] += opts.attributes[d](node); } newCentroid[d] = sum[d] / cluster.length; // Check to see if algorithm has converged, i.e. when centroids no longer change if (!haveValuesConverged(newCentroid[d], centroid[d], opts.sensitivityThreshold)) { isStillMoving = true; } } centroids[c] = newCentroid; clusters[c] = cy.collection(cluster); } iterations++; } return clusters; }; var kMedoids = function kMedoids(options) { var cy = this.cy(); var nodes = this.nodes(); var node = null; var opts = setOptions$2(options); // Begin k-medoids algorithm var clusters = new Array(opts.k); var medoids; var assignment = {}; var curCost; var minCosts = new Array(opts.k); // minimum cost configuration for each cluster // Step 1: Initialize k medoids if (opts.testMode) { if (typeof opts.testCentroids === 'number') ; else if (_typeof(opts.testCentroids) === 'object') { medoids = opts.testCentroids; } else { medoids = randomMedoids(nodes, opts.k); } } else { medoids = randomMedoids(nodes, opts.k); } var isStillMoving = true; var iterations = 0; while (isStillMoving && iterations < opts.maxIterations) { // Step 2: Assign nodes to the nearest medoid for (var n = 0; n < nodes.length; n++) { node = nodes[n]; // Determine which cluster this node belongs to: node id => cluster # assignment[node.id()] = classify(node, medoids, opts.distance, opts.attributes, 'kMedoids'); } isStillMoving = false; // Step 3: For each medoid m, and for each node associated with mediod m, // select the node with the lowest configuration cost as new medoid. for (var m = 0; m < medoids.length; m++) { // Get all nodes that belong to this medoid var cluster = buildCluster(m, nodes, assignment); if (cluster.length === 0) { // If cluster is empty, break out early & move to next cluster continue; } minCosts[m] = findCost(medoids[m], cluster, opts.attributes); // original cost // Select different medoid if its configuration has the lowest cost for (var _n = 0; _n < cluster.length; _n++) { curCost = findCost(cluster[_n], cluster, opts.attributes); if (curCost < minCosts[m]) { minCosts[m] = curCost; medoids[m] = cluster[_n]; isStillMoving = true; } } clusters[m] = cy.collection(cluster); } iterations++; } return clusters; }; var updateCentroids = function updateCentroids(centroids, nodes, U, weight, opts) { var numerator, denominator; for (var n = 0; n < nodes.length; n++) { for (var c = 0; c < centroids.length; c++) { weight[n][c] = Math.pow(U[n][c], opts.m); } } for (var _c = 0; _c < centroids.length; _c++) { for (var dim = 0; dim < opts.attributes.length; dim++) { numerator = 0; denominator = 0; for (var _n2 = 0; _n2 < nodes.length; _n2++) { numerator += weight[_n2][_c] * opts.attributes[dim](nodes[_n2]); denominator += weight[_n2][_c]; } centroids[_c][dim] = numerator / denominator; } } }; var updateMembership = function updateMembership(U, _U, centroids, nodes, opts) { // Save previous step for (var i = 0; i < U.length; i++) { _U[i] = U[i].slice(); } var sum, numerator, denominator; var pow = 2 / (opts.m - 1); for (var c = 0; c < centroids.length; c++) { for (var n = 0; n < nodes.length; n++) { sum = 0; for (var k = 0; k < centroids.length; k++) { // against all other centroids numerator = getDist(opts.distance, nodes[n], centroids[c], opts.attributes, 'cmeans'); denominator = getDist(opts.distance, nodes[n], centroids[k], opts.attributes, 'cmeans'); sum += Math.pow(numerator / denominator, pow); } U[n][c] = 1 / sum; } } }; var assign$1 = function assign(nodes, U, opts, cy) { var clusters = new Array(opts.k); for (var c = 0; c < clusters.length; c++) { clusters[c] = []; } var max; var index; for (var n = 0; n < U.length; n++) { // for each node (U is N x C matrix) max = -Infinity; index = -1; // Determine which cluster the node is most likely to belong in for (var _c2 = 0; _c2 < U[0].length; _c2++) { if (U[n][_c2] > max) { max = U[n][_c2]; index = _c2; } } clusters[index].push(nodes[n]); } // Turn every array into a collection of nodes for (var _c3 = 0; _c3 < clusters.length; _c3++) { clusters[_c3] = cy.collection(clusters[_c3]); } return clusters; }; var fuzzyCMeans = function fuzzyCMeans(options) { var cy = this.cy(); var nodes = this.nodes(); var opts = setOptions$2(options); // Begin fuzzy c-means algorithm var clusters; var centroids; var U; var _U; var weight; // Step 1: Initialize letiables. _U = new Array(nodes.length); for (var i = 0; i < nodes.length; i++) { // N x C matrix _U[i] = new Array(opts.k); } U = new Array(nodes.length); for (var _i3 = 0; _i3 < nodes.length; _i3++) { // N x C matrix U[_i3] = new Array(opts.k); } for (var _i4 = 0; _i4 < nodes.length; _i4++) { var total = 0; for (var j = 0; j < opts.k; j++) { U[_i4][j] = Math.random(); total += U[_i4][j]; } for (var _j = 0; _j < opts.k; _j++) { U[_i4][_j] = U[_i4][_j] / total; } } centroids = new Array(opts.k); for (var _i5 = 0; _i5 < opts.k; _i5++) { centroids[_i5] = new Array(opts.attributes.length); } weight = new Array(nodes.length); for (var _i6 = 0; _i6 < nodes.length; _i6++) { // N x C matrix weight[_i6] = new Array(opts.k); } // end init FCM var isStillMoving = true; var iterations = 0; while (isStillMoving && iterations < opts.maxIterations) { isStillMoving = false; // Step 2: Calculate the centroids for each step. updateCentroids(centroids, nodes, U, weight, opts); // Step 3: Update the partition matrix U. updateMembership(U, _U, centroids, nodes, opts); // Step 4: Check for convergence. if (!haveMatricesConverged(U, _U, opts.sensitivityThreshold)) { isStillMoving = true; } iterations++; } // Assign nodes to clusters with highest probability. clusters = assign$1(nodes, U, opts, cy); return { clusters: clusters, degreeOfMembership: U }; }; var kClustering = { kMeans: kMeans, kMedoids: kMedoids, fuzzyCMeans: fuzzyCMeans, fcm: fuzzyCMeans }; // Implemented by Zoe Xi @zoexi for GSOC 2016 var defaults$a = defaults$g({ distance: 'euclidean', // distance metric to compare nodes linkage: 'min', // linkage criterion : how to determine the distance between clusters of nodes mode: 'threshold', // mode:'threshold' => clusters must be threshold distance apart threshold: Infinity, // the distance threshold // mode:'dendrogram' => the nodes are organised as leaves in a tree (siblings are close), merging makes clusters addDendrogram: false, // whether to add the dendrogram to the graph for viz dendrogramDepth: 0, // depth at which dendrogram branches are merged into the returned clusters attributes: [] // array of attr functions }); var linkageAliases = { 'single': 'min', 'complete': 'max' }; var setOptions$1 = function setOptions(options) { var opts = defaults$a(options); var preferredAlias = linkageAliases[opts.linkage]; if (preferredAlias != null) { opts.linkage = preferredAlias; } return opts; }; var mergeClosest = function mergeClosest(clusters, index, dists, mins, opts) { // Find two closest clusters from cached mins var minKey = 0; var min = Infinity; var dist; var attrs = opts.attributes; var getDist = function getDist(n1, n2) { return clusteringDistance(opts.distance, attrs.length, function (i) { return attrs[i](n1); }, function (i) { return attrs[i](n2); }, n1, n2); }; for (var i = 0; i < clusters.length; i++) { var key = clusters[i].key; var _dist = dists[key][mins[key]]; if (_dist < min) { minKey = key; min = _dist; } } if (opts.mode === 'threshold' && min >= opts.threshold || opts.mode === 'dendrogram' && clusters.length === 1) { return false; } var c1 = index[minKey]; var c2 = index[mins[minKey]]; var merged; // Merge two closest clusters if (opts.mode === 'dendrogram') { merged = { left: c1, right: c2, key: c1.key }; } else { merged = { value: c1.value.concat(c2.value), key: c1.key }; } clusters[c1.index] = merged; clusters.splice(c2.index, 1); index[c1.key] = merged; // Update distances with new merged cluster for (var _i = 0; _i < clusters.length; _i++) { var cur = clusters[_i]; if (c1.key === cur.key) { dist = Infinity; } else if (opts.linkage === 'min') { dist = dists[c1.key][cur.key]; if (dists[c1.key][cur.key] > dists[c2.key][cur.key]) { dist = dists[c2.key][cur.key]; } } else if (opts.linkage === 'max') { dist = dists[c1.key][cur.key]; if (dists[c1.key][cur.key] < dists[c2.key][cur.key]) { dist = dists[c2.key][cur.key]; } } else if (opts.linkage === 'mean') { dist = (dists[c1.key][cur.key] * c1.size + dists[c2.key][cur.key] * c2.size) / (c1.size + c2.size); } else { if (opts.mode === 'dendrogram') dist = getDist(cur.value, c1.value);else dist = getDist(cur.value[0], c1.value[0]); } dists[c1.key][cur.key] = dists[cur.key][c1.key] = dist; // distance matrix is symmetric } // Update cached mins for (var _i2 = 0; _i2 < clusters.length; _i2++) { var key1 = clusters[_i2].key; if (mins[key1] === c1.key || mins[key1] === c2.key) { var _min = key1; for (var j = 0; j < clusters.length; j++) { var key2 = clusters[j].key; if (dists[key1][key2] < dists[key1][_min]) { _min = key2; } } mins[key1] = _min; } clusters[_i2].index = _i2; } // Clean up meta data used for clustering c1.key = c2.key = c1.index = c2.index = null; return true; }; var getAllChildren = function getAllChildren(root, arr, cy) { if (!root) return; if (root.value) { arr.push(root.value); } else { if (root.left) getAllChildren(root.left, arr); if (root.right) getAllChildren(root.right, arr); } }; var buildDendrogram = function buildDendrogram(root, cy) { if (!root) return ''; if (root.left && root.right) { var leftStr = buildDendrogram(root.left, cy); var rightStr = buildDendrogram(root.right, cy); var node = cy.add({ group: 'nodes', data: { id: leftStr + ',' + rightStr } }); cy.add({ group: 'edges', data: { source: leftStr, target: node.id() } }); cy.add({ group: 'edges', data: { source: rightStr, target: node.id() } }); return node.id(); } else if (root.value) { return root.value.id(); } }; var buildClustersFromTree = function buildClustersFromTree(root, k, cy) { if (!root) return []; var left = [], right = [], leaves = []; if (k === 0) { // don't cut tree, simply return all nodes as 1 single cluster if (root.left) getAllChildren(root.left, left); if (root.right) getAllChildren(root.right, right); leaves = left.concat(right); return [cy.collection(leaves)]; } else if (k === 1) { // cut at root if (root.value) { // leaf node return [cy.collection(root.value)]; } else { if (root.left) getAllChildren(root.left, left); if (root.right) getAllChildren(root.right, right); return [cy.collection(left), cy.collection(right)]; } } else { if (root.value) { return [cy.collection(root.value)]; } else { if (root.left) left = buildClustersFromTree(root.left, k - 1, cy); if (root.right) right = buildClustersFromTree(root.right, k - 1, cy); return left.concat(right); } } }; var hierarchicalClustering = function hierarchicalClustering(options) { var cy = this.cy(); var nodes = this.nodes(); // Set parameters of algorithm: linkage type, distance metric, etc. var opts = setOptions$1(options); var attrs = opts.attributes; var getDist = function getDist(n1, n2) { return clusteringDistance(opts.distance, attrs.length, function (i) { return attrs[i](n1); }, function (i) { return attrs[i](n2); }, n1, n2); }; // Begin hierarchical algorithm var clusters = []; var dists = []; // distances between each pair of clusters var mins = []; // closest cluster for each cluster var index = []; // hash of all clusters by key // In agglomerative (bottom-up) clustering, each node starts as its own cluster for (var n = 0; n < nodes.length; n++) { var cluster = { value: opts.mode === 'dendrogram' ? nodes[n] : [nodes[n]], key: n, index: n }; clusters[n] = cluster; index[n] = cluster; dists[n] = []; mins[n] = 0; } // Calculate the distance between each pair of clusters for (var i = 0; i < clusters.length; i++) { for (var j = 0; j <= i; j++) { var dist = void 0; if (opts.mode === 'dendrogram') { // modes store cluster values differently dist = i === j ? Infinity : getDist(clusters[i].value, clusters[j].value); } else { dist = i === j ? Infinity : getDist(clusters[i].value[0], clusters[j].value[0]); } dists[i][j] = dist; dists[j][i] = dist; if (dist < dists[i][mins[i]]) { mins[i] = j; // Cache mins: closest cluster to cluster i is cluster j } } } // Find the closest pair of clusters and merge them into a single cluster. // Update distances between new cluster and each of the old clusters, and loop until threshold reached. var merged = mergeClosest(clusters, index, dists, mins, opts); while (merged) { merged = mergeClosest(clusters, index, dists, mins, opts); } var retClusters; // Dendrogram mode builds the hierarchy and adds intermediary nodes + edges // in addition to returning the clusters. if (opts.mode === 'dendrogram') { retClusters = buildClustersFromTree(clusters[0], opts.dendrogramDepth, cy); if (opts.addDendrogram) buildDendrogram(clusters[0], cy); } else { // Regular mode simply returns the clusters retClusters = new Array(clusters.length); clusters.forEach(function (cluster, i) { // Clean up meta data used for clustering cluster.key = cluster.index = null; retClusters[i] = cy.collection(cluster.value); }); } return retClusters; }; var hierarchicalClustering$1 = { hierarchicalClustering: hierarchicalClustering, hca: hierarchicalClustering }; // Implemented by Zoe Xi @zoexi for GSOC 2016 var defaults$9 = defaults$g({ distance: 'euclidean', // distance metric to compare attributes between two nodes preference: 'median', // suitability of a data point to serve as an exemplar damping: 0.8, // damping factor between [0.5, 1) maxIterations: 1000, // max number of iterations to run minIterations: 100, // min number of iterations to run in order for clustering to stop attributes: [// functions to quantify the similarity between any two points // e.g. node => node.data('weight') ] }); var setOptions = function setOptions(options) { var dmp = options.damping; var pref = options.preference; if (!(0.5 <= dmp && dmp < 1)) { error("Damping must range on [0.5, 1). Got: ".concat(dmp)); } var validPrefs = ['median', 'mean', 'min', 'max']; if (!(validPrefs.some(function (v) { return v === pref; }) || number$1(pref))) { error("Preference must be one of [".concat(validPrefs.map(function (p) { return "'".concat(p, "'"); }).join(', '), "] or a number. Got: ").concat(pref)); } return defaults$9(options); }; var getSimilarity = function getSimilarity(type, n1, n2, attributes) { var attr = function attr(n, i) { return attributes[i](n); }; // nb negative because similarity should have an inverse relationship to distance return -clusteringDistance(type, attributes.length, function (i) { return attr(n1, i); }, function (i) { return attr(n2, i); }, n1, n2); }; var getPreference = function getPreference(S, preference) { // larger preference = greater # of clusters var p = null; if (preference === 'median') { p = median(S); } else if (preference === 'mean') { p = mean(S); } else if (preference === 'min') { p = min(S); } else if (preference === 'max') { p = max(S); } else { // Custom preference number, as set by user p = preference; } return p; }; var findExemplars = function findExemplars(n, R, A) { var indices = []; for (var i = 0; i < n; i++) { if (R[i * n + i] + A[i * n + i] > 0) { indices.push(i); } } return indices; }; var assignClusters = function assignClusters(n, S, exemplars) { var clusters = []; for (var i = 0; i < n; i++) { var index = -1; var max = -Infinity; for (var ei = 0; ei < exemplars.length; ei++) { var e = exemplars[ei]; if (S[i * n + e] > max) { index = e; max = S[i * n + e]; } } if (index > 0) { clusters.push(index); } } for (var _ei = 0; _ei < exemplars.length; _ei++) { clusters[exemplars[_ei]] = exemplars[_ei]; } return clusters; }; var assign = function assign(n, S, exemplars) { var clusters = assignClusters(n, S, exemplars); for (var ei = 0; ei < exemplars.length; ei++) { var ii = []; for (var c = 0; c < clusters.length; c++) { if (clusters[c] === exemplars[ei]) { ii.push(c); } } var maxI = -1; var maxSum = -Infinity; for (var i = 0; i < ii.length; i++) { var sum = 0; for (var j = 0; j < ii.length; j++) { sum += S[ii[j] * n + ii[i]]; } if (sum > maxSum) { maxI = i; maxSum = sum; } } exemplars[ei] = ii[maxI]; } clusters = assignClusters(n, S, exemplars); return clusters; }; var affinityPropagation = function affinityPropagation(options) { var cy = this.cy(); var nodes = this.nodes(); var opts = setOptions(options); // Map each node to its position in node array var id2position = {}; for (var i = 0; i < nodes.length; i++) { id2position[nodes[i].id()] = i; } // Begin affinity propagation algorithm var n; // number of data points var n2; // size of matrices var S; // similarity matrix (1D array) var p; // preference/suitability of a data point to serve as an exemplar var R; // responsibility matrix (1D array) var A; // availability matrix (1D array) n = nodes.length; n2 = n * n; // Initialize and build S similarity matrix S = new Array(n2); for (var _i = 0; _i < n2; _i++) { S[_i] = -Infinity; // for cases where two data points shouldn't be linked together } for (var _i2 = 0; _i2 < n; _i2++) { for (var j = 0; j < n; j++) { if (_i2 !== j) { S[_i2 * n + j] = getSimilarity(opts.distance, nodes[_i2], nodes[j], opts.attributes); } } } // Place preferences on the diagonal of S p = getPreference(S, opts.preference); for (var _i3 = 0; _i3 < n; _i3++) { S[_i3 * n + _i3] = p; } // Initialize R responsibility matrix R = new Array(n2); for (var _i4 = 0; _i4 < n2; _i4++) { R[_i4] = 0.0; } // Initialize A availability matrix A = new Array(n2); for (var _i5 = 0; _i5 < n2; _i5++) { A[_i5] = 0.0; } var old = new Array(n); var Rp = new Array(n); var se = new Array(n); for (var _i6 = 0; _i6 < n; _i6++) { old[_i6] = 0.0; Rp[_i6] = 0.0; se[_i6] = 0; } var e = new Array(n * opts.minIterations); for (var _i7 = 0; _i7 < e.length; _i7++) { e[_i7] = 0; } var iter; for (iter = 0; iter < opts.maxIterations; iter++) { // main algorithmic loop // Update R responsibility matrix for (var _i8 = 0; _i8 < n; _i8++) { var max = -Infinity, max2 = -Infinity, maxI = -1, AS = 0.0; for (var _j = 0; _j < n; _j++) { old[_j] = R[_i8 * n + _j]; AS = A[_i8 * n + _j] + S[_i8 * n + _j]; if (AS >= max) { max2 = max; max = AS; maxI = _j; } else if (AS > max2) { max2 = AS; } } for (var _j2 = 0; _j2 < n; _j2++) { R[_i8 * n + _j2] = (1 - opts.damping) * (S[_i8 * n + _j2] - max) + opts.damping * old[_j2]; } R[_i8 * n + maxI] = (1 - opts.damping) * (S[_i8 * n + maxI] - max2) + opts.damping * old[maxI]; } // Update A availability matrix for (var _i9 = 0; _i9 < n; _i9++) { var sum = 0; for (var _j3 = 0; _j3 < n; _j3++) { old[_j3] = A[_j3 * n + _i9]; Rp[_j3] = Math.max(0, R[_j3 * n + _i9]); sum += Rp[_j3]; } sum -= Rp[_i9]; Rp[_i9] = R[_i9 * n + _i9]; sum += Rp[_i9]; for (var _j4 = 0; _j4 < n; _j4++) { A[_j4 * n + _i9] = (1 - opts.damping) * Math.min(0, sum - Rp[_j4]) + opts.damping * old[_j4]; } A[_i9 * n + _i9] = (1 - opts.damping) * (sum - Rp[_i9]) + opts.damping * old[_i9]; } // Check for convergence var K = 0; for (var _i10 = 0; _i10 < n; _i10++) { var E = A[_i10 * n + _i10] + R[_i10 * n + _i10] > 0 ? 1 : 0; e[iter % opts.minIterations * n + _i10] = E; K += E; } if (K > 0 && (iter >= opts.minIterations - 1 || iter == opts.maxIterations - 1)) { var _sum = 0; for (var _i11 = 0; _i11 < n; _i11++) { se[_i11] = 0; for (var _j5 = 0; _j5 < opts.minIterations; _j5++) { se[_i11] += e[_j5 * n + _i11]; } if (se[_i11] === 0 || se[_i11] === opts.minIterations) { _sum++; } } if (_sum === n) { // then we have convergence break; } } } // Identify exemplars (cluster centers) var exemplarsIndices = findExemplars(n, R, A); // Assign nodes to clusters var clusterIndices = assign(n, S, exemplarsIndices); var clusters = {}; for (var c = 0; c < exemplarsIndices.length; c++) { clusters[exemplarsIndices[c]] = []; } for (var _i12 = 0; _i12 < nodes.length; _i12++) { var pos = id2position[nodes[_i12].id()]; var clusterIndex = clusterIndices[pos]; if (clusterIndex != null) { // the node may have not been assigned a cluster if no valid attributes were specified clusters[clusterIndex].push(nodes[_i12]); } } var retClusters = new Array(exemplarsIndices.length); for (var _c = 0; _c < exemplarsIndices.length; _c++) { retClusters[_c] = cy.collection(clusters[exemplarsIndices[_c]]); } return retClusters; }; var affinityPropagation$1 = { affinityPropagation: affinityPropagation, ap: affinityPropagation }; var hierholzerDefaults = defaults$g({ root: undefined, directed: false }); var elesfn$k = { hierholzer: function hierholzer(options) { if (!plainObject(options)) { var args = arguments; options = { root: args[0], directed: args[1] }; } var _hierholzerDefaults = hierholzerDefaults(options), root = _hierholzerDefaults.root, directed = _hierholzerDefaults.directed; var eles = this; var dflag = false; var oddIn; var oddOut; var startVertex; if (root) startVertex = string(root) ? this.filter(root)[0].id() : root[0].id(); var nodes = {}; var edges = {}; if (directed) { eles.forEach(function (ele) { var id = ele.id(); if (ele.isNode()) { var ind = ele.indegree(true); var outd = ele.outdegree(true); var d1 = ind - outd; var d2 = outd - ind; if (d1 == 1) { if (oddIn) dflag = true;else oddIn = id; } else if (d2 == 1) { if (oddOut) dflag = true;else oddOut = id; } else if (d2 > 1 || d1 > 1) { dflag = true; } nodes[id] = []; ele.outgoers().forEach(function (e) { if (e.isEdge()) nodes[id].push(e.id()); }); } else { edges[id] = [undefined, ele.target().id()]; } }); } else { eles.forEach(function (ele) { var id = ele.id(); if (ele.isNode()) { var d = ele.degree(true); if (d % 2) { if (!oddIn) oddIn = id;else if (!oddOut) oddOut = id;else dflag = true; } nodes[id] = []; ele.connectedEdges().forEach(function (e) { return nodes[id].push(e.id()); }); } else { edges[id] = [ele.source().id(), ele.target().id()]; } }); } var result = { found: false, trail: undefined }; if (dflag) return result;else if (oddOut && oddIn) { if (directed) { if (startVertex && oddOut != startVertex) { return result; } startVertex = oddOut; } else { if (startVertex && oddOut != startVertex && oddIn != startVertex) { return result; } else if (!startVertex) { startVertex = oddOut; } } } else { if (!startVertex) startVertex = eles[0].id(); } var walk = function walk(v) { var currentNode = v; var subtour = [v]; var adj, adjTail, adjHead; while (nodes[currentNode].length) { adj = nodes[currentNode].shift(); adjTail = edges[adj][0]; adjHead = edges[adj][1]; if (currentNode != adjHead) { nodes[adjHead] = nodes[adjHead].filter(function (e) { return e != adj; }); currentNode = adjHead; } else if (!directed && currentNode != adjTail) { nodes[adjTail] = nodes[adjTail].filter(function (e) { return e != adj; }); currentNode = adjTail; } subtour.unshift(adj); subtour.unshift(currentNode); } return subtour; }; var trail = []; var subtour = []; subtour = walk(startVertex); while (subtour.length != 1) { if (nodes[subtour[0]].length == 0) { trail.unshift(eles.getElementById(subtour.shift())); trail.unshift(eles.getElementById(subtour.shift())); } else { subtour = walk(subtour.shift()).concat(subtour); } } trail.unshift(eles.getElementById(subtour.shift())); // final node for (var d in nodes) { if (nodes[d].length) { return result; } } result.found = true; result.trail = this.spawn(trail, true); return result; } }; var hopcroftTarjanBiconnected = function hopcroftTarjanBiconnected() { var eles = this; var nodes = {}; var id = 0; var edgeCount = 0; var components = []; var stack = []; var visitedEdges = {}; var buildComponent = function buildComponent(x, y) { var i = stack.length - 1; var cutset = []; var component = eles.spawn(); while (stack[i].x != x || stack[i].y != y) { cutset.push(stack.pop().edge); i--; } cutset.push(stack.pop().edge); cutset.forEach(function (edge) { var connectedNodes = edge.connectedNodes().intersection(eles); component.merge(edge); connectedNodes.forEach(function (node) { var nodeId = node.id(); var connectedEdges = node.connectedEdges().intersection(eles); component.merge(node); if (!nodes[nodeId].cutVertex) { component.merge(connectedEdges); } else { component.merge(connectedEdges.filter(function (edge) { return edge.isLoop(); })); } }); }); components.push(component); }; var biconnectedSearch = function biconnectedSearch(root, currentNode, parent) { if (root === parent) edgeCount += 1; nodes[currentNode] = { id: id, low: id++, cutVertex: false }; var edges = eles.getElementById(currentNode).connectedEdges().intersection(eles); if (edges.size() === 0) { components.push(eles.spawn(eles.getElementById(currentNode))); } else { var sourceId, targetId, otherNodeId, edgeId; edges.forEach(function (edge) { sourceId = edge.source().id(); targetId = edge.target().id(); otherNodeId = sourceId === currentNode ? targetId : sourceId; if (otherNodeId !== parent) { edgeId = edge.id(); if (!visitedEdges[edgeId]) { visitedEdges[edgeId] = true; stack.push({ x: currentNode, y: otherNodeId, edge: edge }); } if (!(otherNodeId in nodes)) { biconnectedSearch(root, otherNodeId, currentNode); nodes[currentNode].low = Math.min(nodes[currentNode].low, nodes[otherNodeId].low); if (nodes[currentNode].id <= nodes[otherNodeId].low) { nodes[currentNode].cutVertex = true; buildComponent(currentNode, otherNodeId); } } else { nodes[currentNode].low = Math.min(nodes[currentNode].low, nodes[otherNodeId].id); } } }); } }; eles.forEach(function (ele) { if (ele.isNode()) { var nodeId = ele.id(); if (!(nodeId in nodes)) { edgeCount = 0; biconnectedSearch(nodeId, nodeId); nodes[nodeId].cutVertex = edgeCount > 1; } } }); var cutVertices = Object.keys(nodes).filter(function (id) { return nodes[id].cutVertex; }).map(function (id) { return eles.getElementById(id); }); return { cut: eles.spawn(cutVertices), components: components }; }; var hopcroftTarjanBiconnected$1 = { hopcroftTarjanBiconnected: hopcroftTarjanBiconnected, htbc: hopcroftTarjanBiconnected, htb: hopcroftTarjanBiconnected, hopcroftTarjanBiconnectedComponents: hopcroftTarjanBiconnected }; var tarjanStronglyConnected = function tarjanStronglyConnected() { var eles = this; var nodes = {}; var index = 0; var components = []; var stack = []; var cut = eles.spawn(eles); var stronglyConnectedSearch = function stronglyConnectedSearch(sourceNodeId) { stack.push(sourceNodeId); nodes[sourceNodeId] = { index: index, low: index++, explored: false }; var connectedEdges = eles.getElementById(sourceNodeId).connectedEdges().intersection(eles); connectedEdges.forEach(function (edge) { var targetNodeId = edge.target().id(); if (targetNodeId !== sourceNodeId) { if (!(targetNodeId in nodes)) { stronglyConnectedSearch(targetNodeId); } if (!nodes[targetNodeId].explored) { nodes[sourceNodeId].low = Math.min(nodes[sourceNodeId].low, nodes[targetNodeId].low); } } }); if (nodes[sourceNodeId].index === nodes[sourceNodeId].low) { var componentNodes = eles.spawn(); for (;;) { var nodeId = stack.pop(); componentNodes.merge(eles.getElementById(nodeId)); nodes[nodeId].low = nodes[sourceNodeId].index; nodes[nodeId].explored = true; if (nodeId === sourceNodeId) { break; } } var componentEdges = componentNodes.edgesWith(componentNodes); var component = componentNodes.merge(componentEdges); components.push(component); cut = cut.difference(component); } }; eles.forEach(function (ele) { if (ele.isNode()) { var nodeId = ele.id(); if (!(nodeId in nodes)) { stronglyConnectedSearch(nodeId); } } }); return { cut: cut, components: components }; }; var tarjanStronglyConnected$1 = { tarjanStronglyConnected: tarjanStronglyConnected, tsc: tarjanStronglyConnected, tscc: tarjanStronglyConnected, tarjanStronglyConnectedComponents: tarjanStronglyConnected }; var elesfn$j = {}; [elesfn$v, elesfn$u, elesfn$t, elesfn$s, elesfn$r, elesfn$q, elesfn$p, elesfn$o, elesfn$n, elesfn$m, elesfn$l, markovClustering$1, kClustering, hierarchicalClustering$1, affinityPropagation$1, elesfn$k, hopcroftTarjanBiconnected$1, tarjanStronglyConnected$1].forEach(function (props) { extend(elesfn$j, props); }); /*! Embeddable Minimum Strictly-Compliant Promises/A+ 1.1.1 Thenable Copyright (c) 2013-2014 Ralf S. Engelschall (http://engelschall.com) Licensed under The MIT License (http://opensource.org/licenses/MIT) */ /* promise states [Promises/A+ 2.1] */ var STATE_PENDING = 0; /* [Promises/A+ 2.1.1] */ var STATE_FULFILLED = 1; /* [Promises/A+ 2.1.2] */ var STATE_REJECTED = 2; /* [Promises/A+ 2.1.3] */ /* promise object constructor */ var api = function api(executor) { /* optionally support non-constructor/plain-function call */ if (!(this instanceof api)) return new api(executor); /* initialize object */ this.id = 'Thenable/1.0.7'; this.state = STATE_PENDING; /* initial state */ this.fulfillValue = undefined; /* initial value */ /* [Promises/A+ 1.3, 2.1.2.2] */ this.rejectReason = undefined; /* initial reason */ /* [Promises/A+ 1.5, 2.1.3.2] */ this.onFulfilled = []; /* initial handlers */ this.onRejected = []; /* initial handlers */ /* provide optional information-hiding proxy */ this.proxy = { then: this.then.bind(this) }; /* support optional executor function */ if (typeof executor === 'function') executor.call(this, this.fulfill.bind(this), this.reject.bind(this)); }; /* promise API methods */ api.prototype = { /* promise resolving methods */ fulfill: function fulfill(value) { return deliver(this, STATE_FULFILLED, 'fulfillValue', value); }, reject: function reject(value) { return deliver(this, STATE_REJECTED, 'rejectReason', value); }, /* "The then Method" [Promises/A+ 1.1, 1.2, 2.2] */ then: function then(onFulfilled, onRejected) { var curr = this; var next = new api(); /* [Promises/A+ 2.2.7] */ curr.onFulfilled.push(resolver(onFulfilled, next, 'fulfill')); /* [Promises/A+ 2.2.2/2.2.6] */ curr.onRejected.push(resolver(onRejected, next, 'reject')); /* [Promises/A+ 2.2.3/2.2.6] */ execute(curr); return next.proxy; /* [Promises/A+ 2.2.7, 3.3] */ } }; /* deliver an action */ var deliver = function deliver(curr, state, name, value) { if (curr.state === STATE_PENDING) { curr.state = state; /* [Promises/A+ 2.1.2.1, 2.1.3.1] */ curr[name] = value; /* [Promises/A+ 2.1.2.2, 2.1.3.2] */ execute(curr); } return curr; }; /* execute all handlers */ var execute = function execute(curr) { if (curr.state === STATE_FULFILLED) execute_handlers(curr, 'onFulfilled', curr.fulfillValue);else if (curr.state === STATE_REJECTED) execute_handlers(curr, 'onRejected', curr.rejectReason); }; /* execute particular set of handlers */ var execute_handlers = function execute_handlers(curr, name, value) { /* global setImmediate: true */ /* global setTimeout: true */ /* short-circuit processing */ if (curr[name].length === 0) return; /* iterate over all handlers, exactly once */ var handlers = curr[name]; curr[name] = []; /* [Promises/A+ 2.2.2.3, 2.2.3.3] */ var func = function func() { for (var i = 0; i < handlers.length; i++) { handlers[i](value); } /* [Promises/A+ 2.2.5] */ }; /* execute procedure asynchronously */ /* [Promises/A+ 2.2.4, 3.1] */ if (typeof setImmediate === 'function') setImmediate(func);else setTimeout(func, 0); }; /* generate a resolver function */ var resolver = function resolver(cb, next, method) { return function (value) { if (typeof cb !== 'function') /* [Promises/A+ 2.2.1, 2.2.7.3, 2.2.7.4] */ next[method].call(next, value); /* [Promises/A+ 2.2.7.3, 2.2.7.4] */else { var result; try { result = cb(value); } /* [Promises/A+ 2.2.2.1, 2.2.3.1, 2.2.5, 3.2] */ catch (e) { next.reject(e); /* [Promises/A+ 2.2.7.2] */ return; } resolve(next, result); /* [Promises/A+ 2.2.7.1] */ } }; }; /* "Promise Resolution Procedure" */ /* [Promises/A+ 2.3] */ var resolve = function resolve(promise, x) { /* sanity check arguments */ /* [Promises/A+ 2.3.1] */ if (promise === x || promise.proxy === x) { promise.reject(new TypeError('cannot resolve promise with itself')); return; } /* surgically check for a "then" method (mainly to just call the "getter" of "then" only once) */ var then; if (_typeof(x) === 'object' && x !== null || typeof x === 'function') { try { then = x.then; } /* [Promises/A+ 2.3.3.1, 3.5] */ catch (e) { promise.reject(e); /* [Promises/A+ 2.3.3.2] */ return; } } /* handle own Thenables [Promises/A+ 2.3.2] and similar "thenables" [Promises/A+ 2.3.3] */ if (typeof then === 'function') { var resolved = false; try { /* call retrieved "then" method */ /* [Promises/A+ 2.3.3.3] */ then.call(x, /* resolvePromise */ /* [Promises/A+ 2.3.3.3.1] */ function (y) { if (resolved) return; resolved = true; /* [Promises/A+ 2.3.3.3.3] */ if (y === x) /* [Promises/A+ 3.6] */ promise.reject(new TypeError('circular thenable chain'));else resolve(promise, y); }, /* rejectPromise */ /* [Promises/A+ 2.3.3.3.2] */ function (r) { if (resolved) return; resolved = true; /* [Promises/A+ 2.3.3.3.3] */ promise.reject(r); }); } catch (e) { if (!resolved) /* [Promises/A+ 2.3.3.3.3] */ promise.reject(e); /* [Promises/A+ 2.3.3.3.4] */ } return; } /* handle other values */ promise.fulfill(x); /* [Promises/A+ 2.3.4, 2.3.3.4] */ }; // so we always have Promise.all() api.all = function (ps) { return new api(function (resolveAll, rejectAll) { var vals = new Array(ps.length); var doneCount = 0; var fulfill = function fulfill(i, val) { vals[i] = val; doneCount++; if (doneCount === ps.length) { resolveAll(vals); } }; for (var i = 0; i < ps.length; i++) { (function (i) { var p = ps[i]; var isPromise = p != null && p.then != null; if (isPromise) { p.then(function (val) { fulfill(i, val); }, function (err) { rejectAll(err); }); } else { var val = p; fulfill(i, val); } })(i); } }); }; api.resolve = function (val) { return new api(function (resolve, reject) { resolve(val); }); }; api.reject = function (val) { return new api(function (resolve, reject) { reject(val); }); }; var Promise$1 = typeof Promise !== 'undefined' ? Promise : api; // eslint-disable-line no-undef var Animation = function Animation(target, opts, opts2) { var isCore = core(target); var isEle = !isCore; var _p = this._private = extend({ duration: 1000 }, opts, opts2); _p.target = target; _p.style = _p.style || _p.css; _p.started = false; _p.playing = false; _p.hooked = false; _p.applying = false; _p.progress = 0; _p.completes = []; _p.frames = []; if (_p.complete && fn$6(_p.complete)) { _p.completes.push(_p.complete); } if (isEle) { var pos = target.position(); _p.startPosition = _p.startPosition || { x: pos.x, y: pos.y }; _p.startStyle = _p.startStyle || target.cy().style().getAnimationStartStyle(target, _p.style); } if (isCore) { var pan = target.pan(); _p.startPan = { x: pan.x, y: pan.y }; _p.startZoom = target.zoom(); } // for future timeline/animations impl this.length = 1; this[0] = this; }; var anifn = Animation.prototype; extend(anifn, { instanceString: function instanceString() { return 'animation'; }, hook: function hook() { var _p = this._private; if (!_p.hooked) { // add to target's animation queue var q; var tAni = _p.target._private.animation; if (_p.queue) { q = tAni.queue; } else { q = tAni.current; } q.push(this); // add to the animation loop pool if (elementOrCollection(_p.target)) { _p.target.cy().addToAnimationPool(_p.target); } _p.hooked = true; } return this; }, play: function play() { var _p = this._private; // autorewind if (_p.progress === 1) { _p.progress = 0; } _p.playing = true; _p.started = false; // needs to be started by animation loop _p.stopped = false; this.hook(); // the animation loop will start the animation... return this; }, playing: function playing() { return this._private.playing; }, apply: function apply() { var _p = this._private; _p.applying = true; _p.started = false; // needs to be started by animation loop _p.stopped = false; this.hook(); // the animation loop will apply the animation at this progress return this; }, applying: function applying() { return this._private.applying; }, pause: function pause() { var _p = this._private; _p.playing = false; _p.started = false; return this; }, stop: function stop() { var _p = this._private; _p.playing = false; _p.started = false; _p.stopped = true; // to be removed from animation queues return this; }, rewind: function rewind() { return this.progress(0); }, fastforward: function fastforward() { return this.progress(1); }, time: function time(t) { var _p = this._private; if (t === undefined) { return _p.progress * _p.duration; } else { return this.progress(t / _p.duration); } }, progress: function progress(p) { var _p = this._private; var wasPlaying = _p.playing; if (p === undefined) { return _p.progress; } else { if (wasPlaying) { this.pause(); } _p.progress = p; _p.started = false; if (wasPlaying) { this.play(); } } return this; }, completed: function completed() { return this._private.progress === 1; }, reverse: function reverse() { var _p = this._private; var wasPlaying = _p.playing; if (wasPlaying) { this.pause(); } _p.progress = 1 - _p.progress; _p.started = false; var swap = function swap(a, b) { var _pa = _p[a]; if (_pa == null) { return; } _p[a] = _p[b]; _p[b] = _pa; }; swap('zoom', 'startZoom'); swap('pan', 'startPan'); swap('position', 'startPosition'); // swap styles if (_p.style) { for (var i = 0; i < _p.style.length; i++) { var prop = _p.style[i]; var name = prop.name; var startStyleProp = _p.startStyle[name]; _p.startStyle[name] = prop; _p.style[i] = startStyleProp; } } if (wasPlaying) { this.play(); } return this; }, promise: function promise(type) { var _p = this._private; var arr; switch (type) { case 'frame': arr = _p.frames; break; default: case 'complete': case 'completed': arr = _p.completes; } return new Promise$1(function (resolve, reject) { arr.push(function () { resolve(); }); }); } }); anifn.complete = anifn.completed; anifn.run = anifn.play; anifn.running = anifn.playing; var define$3 = { animated: function animated() { return function animatedImpl() { var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var cy = this._private.cy || this; if (!cy.styleEnabled()) { return false; } var ele = all[0]; if (ele) { return ele._private.animation.current.length > 0; } }; }, // animated clearQueue: function clearQueue() { return function clearQueueImpl() { var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var cy = this._private.cy || this; if (!cy.styleEnabled()) { return this; } for (var i = 0; i < all.length; i++) { var ele = all[i]; ele._private.animation.queue = []; } return this; }; }, // clearQueue delay: function delay() { return function delayImpl(time, complete) { var cy = this._private.cy || this; if (!cy.styleEnabled()) { return this; } return this.animate({ delay: time, duration: time, complete: complete }); }; }, // delay delayAnimation: function delayAnimation() { return function delayAnimationImpl(time, complete) { var cy = this._private.cy || this; if (!cy.styleEnabled()) { return this; } return this.animation({ delay: time, duration: time, complete: complete }); }; }, // delay animation: function animation() { return function animationImpl(properties, params) { var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var cy = this._private.cy || this; var isCore = !selfIsArrayLike; var isEles = !isCore; if (!cy.styleEnabled()) { return this; } var style = cy.style(); properties = extend({}, properties, params); var propertiesEmpty = Object.keys(properties).length === 0; if (propertiesEmpty) { return new Animation(all[0], properties); // nothing to animate } if (properties.duration === undefined) { properties.duration = 400; } switch (properties.duration) { case 'slow': properties.duration = 600; break; case 'fast': properties.duration = 200; break; } if (isEles) { properties.style = style.getPropsList(properties.style || properties.css); properties.css = undefined; } if (isEles && properties.renderedPosition != null) { var rpos = properties.renderedPosition; var pan = cy.pan(); var zoom = cy.zoom(); properties.position = renderedToModelPosition(rpos, zoom, pan); } // override pan w/ panBy if set if (isCore && properties.panBy != null) { var panBy = properties.panBy; var cyPan = cy.pan(); properties.pan = { x: cyPan.x + panBy.x, y: cyPan.y + panBy.y }; } // override pan w/ center if set var center = properties.center || properties.centre; if (isCore && center != null) { var centerPan = cy.getCenterPan(center.eles, properties.zoom); if (centerPan != null) { properties.pan = centerPan; } } // override pan & zoom w/ fit if set if (isCore && properties.fit != null) { var fit = properties.fit; var fitVp = cy.getFitViewport(fit.eles || fit.boundingBox, fit.padding); if (fitVp != null) { properties.pan = fitVp.pan; properties.zoom = fitVp.zoom; } } // override zoom (& potentially pan) w/ zoom obj if set if (isCore && plainObject(properties.zoom)) { var vp = cy.getZoomedViewport(properties.zoom); if (vp != null) { if (vp.zoomed) { properties.zoom = vp.zoom; } if (vp.panned) { properties.pan = vp.pan; } } else { properties.zoom = null; // an inavalid zoom (e.g. no delta) gets automatically destroyed } } return new Animation(all[0], properties); }; }, // animate animate: function animate() { return function animateImpl(properties, params) { var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var cy = this._private.cy || this; if (!cy.styleEnabled()) { return this; } if (params) { properties = extend({}, properties, params); } // manually hook and run the animation for (var i = 0; i < all.length; i++) { var ele = all[i]; var queue = ele.animated() && (properties.queue === undefined || properties.queue); var ani = ele.animation(properties, queue ? { queue: true } : undefined); ani.play(); } return this; // chaining }; }, // animate stop: function stop() { return function stopImpl(clearQueue, jumpToEnd) { var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var cy = this._private.cy || this; if (!cy.styleEnabled()) { return this; } for (var i = 0; i < all.length; i++) { var ele = all[i]; var _p = ele._private; var anis = _p.animation.current; for (var j = 0; j < anis.length; j++) { var ani = anis[j]; var ani_p = ani._private; if (jumpToEnd) { // next iteration of the animation loop, the animation // will go straight to the end and be removed ani_p.duration = 0; } } // clear the queue of future animations if (clearQueue) { _p.animation.queue = []; } if (!jumpToEnd) { _p.animation.current = []; } } // we have to notify (the animation loop doesn't do it for us on `stop`) cy.notify('draw'); return this; }; } // stop }; // define /** * Checks if `value` is classified as an `Array` object. * * @static * @memberOf _ * @since 0.1.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is an array, else `false`. * @example * * _.isArray([1, 2, 3]); * // => true * * _.isArray(document.body.children); * // => false * * _.isArray('abc'); * // => false * * _.isArray(_.noop); * // => false */ var isArray = Array.isArray; var isArray_1 = isArray; /** Used to match property names within property paths. */ var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, reIsPlainProp = /^\w*$/; /** * Checks if `value` is a property name and not a property path. * * @private * @param {*} value The value to check. * @param {Object} [object] The object to query keys on. * @returns {boolean} Returns `true` if `value` is a property name, else `false`. */ function isKey(value, object) { if (isArray_1(value)) { return false; } var type = typeof value; if (type == 'number' || type == 'symbol' || type == 'boolean' || value == null || isSymbol_1(value)) { return true; } return reIsPlainProp.test(value) || !reIsDeepProp.test(value) || (object != null && value in Object(object)); } var _isKey = isKey; /** `Object#toString` result references. */ var asyncTag = '[object AsyncFunction]', funcTag = '[object Function]', genTag = '[object GeneratorFunction]', proxyTag = '[object Proxy]'; /** * Checks if `value` is classified as a `Function` object. * * @static * @memberOf _ * @since 0.1.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a function, else `false`. * @example * * _.isFunction(_); * // => true * * _.isFunction(/abc/); * // => false */ function isFunction(value) { if (!isObject_1(value)) { return false; } // The use of `Object#toString` avoids issues with the `typeof` operator // in Safari 9 which returns 'object' for typed arrays and other constructors. var tag = _baseGetTag(value); return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag; } var isFunction_1 = isFunction; /** Used to detect overreaching core-js shims. */ var coreJsData = _root['__core-js_shared__']; var _coreJsData = coreJsData; /** Used to detect methods masquerading as native. */ var maskSrcKey = (function() { var uid = /[^.]+$/.exec(_coreJsData && _coreJsData.keys && _coreJsData.keys.IE_PROTO || ''); return uid ? ('Symbol(src)_1.' + uid) : ''; }()); /** * Checks if `func` has its source masked. * * @private * @param {Function} func The function to check. * @returns {boolean} Returns `true` if `func` is masked, else `false`. */ function isMasked(func) { return !!maskSrcKey && (maskSrcKey in func); } var _isMasked = isMasked; /** Used for built-in method references. */ var funcProto$1 = Function.prototype; /** Used to resolve the decompiled source of functions. */ var funcToString$1 = funcProto$1.toString; /** * Converts `func` to its source code. * * @private * @param {Function} func The function to convert. * @returns {string} Returns the source code. */ function toSource(func) { if (func != null) { try { return funcToString$1.call(func); } catch (e) {} try { return (func + ''); } catch (e) {} } return ''; } var _toSource = toSource; /** * Used to match `RegExp` * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns). */ var reRegExpChar = /[\\^$.*+?()[\]{}|]/g; /** Used to detect host constructors (Safari). */ var reIsHostCtor = /^\[object .+?Constructor\]$/; /** Used for built-in method references. */ var funcProto = Function.prototype, objectProto$3 = Object.prototype; /** Used to resolve the decompiled source of functions. */ var funcToString = funcProto.toString; /** Used to check objects for own properties. */ var hasOwnProperty$3 = objectProto$3.hasOwnProperty; /** Used to detect if a method is native. */ var reIsNative = RegExp('^' + funcToString.call(hasOwnProperty$3).replace(reRegExpChar, '\\$&') .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$' ); /** * The base implementation of `_.isNative` without bad shim checks. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a native function, * else `false`. */ function baseIsNative(value) { if (!isObject_1(value) || _isMasked(value)) { return false; } var pattern = isFunction_1(value) ? reIsNative : reIsHostCtor; return pattern.test(_toSource(value)); } var _baseIsNative = baseIsNative; /** * Gets the value at `key` of `object`. * * @private * @param {Object} [object] The object to query. * @param {string} key The key of the property to get. * @returns {*} Returns the property value. */ function getValue$1(object, key) { return object == null ? undefined : object[key]; } var _getValue = getValue$1; /** * Gets the native function at `key` of `object`. * * @private * @param {Object} object The object to query. * @param {string} key The key of the method to get. * @returns {*} Returns the function if it's native, else `undefined`. */ function getNative(object, key) { var value = _getValue(object, key); return _baseIsNative(value) ? value : undefined; } var _getNative = getNative; /* Built-in method references that are verified to be native. */ var nativeCreate = _getNative(Object, 'create'); var _nativeCreate = nativeCreate; /** * Removes all key-value entries from the hash. * * @private * @name clear * @memberOf Hash */ function hashClear() { this.__data__ = _nativeCreate ? _nativeCreate(null) : {}; this.size = 0; } var _hashClear = hashClear; /** * Removes `key` and its value from the hash. * * @private * @name delete * @memberOf Hash * @param {Object} hash The hash to modify. * @param {string} key The key of the value to remove. * @returns {boolean} Returns `true` if the entry was removed, else `false`. */ function hashDelete(key) { var result = this.has(key) && delete this.__data__[key]; this.size -= result ? 1 : 0; return result; } var _hashDelete = hashDelete; /** Used to stand-in for `undefined` hash values. */ var HASH_UNDEFINED$1 = '__lodash_hash_undefined__'; /** Used for built-in method references. */ var objectProto$2 = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty$2 = objectProto$2.hasOwnProperty; /** * Gets the hash value for `key`. * * @private * @name get * @memberOf Hash * @param {string} key The key of the value to get. * @returns {*} Returns the entry value. */ function hashGet(key) { var data = this.__data__; if (_nativeCreate) { var result = data[key]; return result === HASH_UNDEFINED$1 ? undefined : result; } return hasOwnProperty$2.call(data, key) ? data[key] : undefined; } var _hashGet = hashGet; /** Used for built-in method references. */ var objectProto$1 = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty$1 = objectProto$1.hasOwnProperty; /** * Checks if a hash value for `key` exists. * * @private * @name has * @memberOf Hash * @param {string} key The key of the entry to check. * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. */ function hashHas(key) { var data = this.__data__; return _nativeCreate ? (data[key] !== undefined) : hasOwnProperty$1.call(data, key); } var _hashHas = hashHas; /** Used to stand-in for `undefined` hash values. */ var HASH_UNDEFINED = '__lodash_hash_undefined__'; /** * Sets the hash `key` to `value`. * * @private * @name set * @memberOf Hash * @param {string} key The key of the value to set. * @param {*} value The value to set. * @returns {Object} Returns the hash instance. */ function hashSet(key, value) { var data = this.__data__; this.size += this.has(key) ? 0 : 1; data[key] = (_nativeCreate && value === undefined) ? HASH_UNDEFINED : value; return this; } var _hashSet = hashSet; /** * Creates a hash object. * * @private * @constructor * @param {Array} [entries] The key-value pairs to cache. */ function Hash(entries) { var index = -1, length = entries == null ? 0 : entries.length; this.clear(); while (++index < length) { var entry = entries[index]; this.set(entry[0], entry[1]); } } // Add methods to `Hash`. Hash.prototype.clear = _hashClear; Hash.prototype['delete'] = _hashDelete; Hash.prototype.get = _hashGet; Hash.prototype.has = _hashHas; Hash.prototype.set = _hashSet; var _Hash = Hash; /** * Removes all key-value entries from the list cache. * * @private * @name clear * @memberOf ListCache */ function listCacheClear() { this.__data__ = []; this.size = 0; } var _listCacheClear = listCacheClear; /** * Performs a * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) * comparison between two values to determine if they are equivalent. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to compare. * @param {*} other The other value to compare. * @returns {boolean} Returns `true` if the values are equivalent, else `false`. * @example * * var object = { 'a': 1 }; * var other = { 'a': 1 }; * * _.eq(object, object); * // => true * * _.eq(object, other); * // => false * * _.eq('a', 'a'); * // => true * * _.eq('a', Object('a')); * // => false * * _.eq(NaN, NaN); * // => true */ function eq(value, other) { return value === other || (value !== value && other !== other); } var eq_1 = eq; /** * Gets the index at which the `key` is found in `array` of key-value pairs. * * @private * @param {Array} array The array to inspect. * @param {*} key The key to search for. * @returns {number} Returns the index of the matched value, else `-1`. */ function assocIndexOf(array, key) { var length = array.length; while (length--) { if (eq_1(array[length][0], key)) { return length; } } return -1; } var _assocIndexOf = assocIndexOf; /** Used for built-in method references. */ var arrayProto = Array.prototype; /** Built-in value references. */ var splice = arrayProto.splice; /** * Removes `key` and its value from the list cache. * * @private * @name delete * @memberOf ListCache * @param {string} key The key of the value to remove. * @returns {boolean} Returns `true` if the entry was removed, else `false`. */ function listCacheDelete(key) { var data = this.__data__, index = _assocIndexOf(data, key); if (index < 0) { return false; } var lastIndex = data.length - 1; if (index == lastIndex) { data.pop(); } else { splice.call(data, index, 1); } --this.size; return true; } var _listCacheDelete = listCacheDelete; /** * Gets the list cache value for `key`. * * @private * @name get * @memberOf ListCache * @param {string} key The key of the value to get. * @returns {*} Returns the entry value. */ function listCacheGet(key) { var data = this.__data__, index = _assocIndexOf(data, key); return index < 0 ? undefined : data[index][1]; } var _listCacheGet = listCacheGet; /** * Checks if a list cache value for `key` exists. * * @private * @name has * @memberOf ListCache * @param {string} key The key of the entry to check. * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. */ function listCacheHas(key) { return _assocIndexOf(this.__data__, key) > -1; } var _listCacheHas = listCacheHas; /** * Sets the list cache `key` to `value`. * * @private * @name set * @memberOf ListCache * @param {string} key The key of the value to set. * @param {*} value The value to set. * @returns {Object} Returns the list cache instance. */ function listCacheSet(key, value) { var data = this.__data__, index = _assocIndexOf(data, key); if (index < 0) { ++this.size; data.push([key, value]); } else { data[index][1] = value; } return this; } var _listCacheSet = listCacheSet; /** * Creates an list cache object. * * @private * @constructor * @param {Array} [entries] The key-value pairs to cache. */ function ListCache(entries) { var index = -1, length = entries == null ? 0 : entries.length; this.clear(); while (++index < length) { var entry = entries[index]; this.set(entry[0], entry[1]); } } // Add methods to `ListCache`. ListCache.prototype.clear = _listCacheClear; ListCache.prototype['delete'] = _listCacheDelete; ListCache.prototype.get = _listCacheGet; ListCache.prototype.has = _listCacheHas; ListCache.prototype.set = _listCacheSet; var _ListCache = ListCache; /* Built-in method references that are verified to be native. */ var Map$1 = _getNative(_root, 'Map'); var _Map = Map$1; /** * Removes all key-value entries from the map. * * @private * @name clear * @memberOf MapCache */ function mapCacheClear() { this.size = 0; this.__data__ = { 'hash': new _Hash, 'map': new (_Map || _ListCache), 'string': new _Hash }; } var _mapCacheClear = mapCacheClear; /** * Checks if `value` is suitable for use as unique object key. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is suitable, else `false`. */ function isKeyable(value) { var type = typeof value; return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean') ? (value !== '__proto__') : (value === null); } var _isKeyable = isKeyable; /** * Gets the data for `map`. * * @private * @param {Object} map The map to query. * @param {string} key The reference key. * @returns {*} Returns the map data. */ function getMapData(map, key) { var data = map.__data__; return _isKeyable(key) ? data[typeof key == 'string' ? 'string' : 'hash'] : data.map; } var _getMapData = getMapData; /** * Removes `key` and its value from the map. * * @private * @name delete * @memberOf MapCache * @param {string} key The key of the value to remove. * @returns {boolean} Returns `true` if the entry was removed, else `false`. */ function mapCacheDelete(key) { var result = _getMapData(this, key)['delete'](key); this.size -= result ? 1 : 0; return result; } var _mapCacheDelete = mapCacheDelete; /** * Gets the map value for `key`. * * @private * @name get * @memberOf MapCache * @param {string} key The key of the value to get. * @returns {*} Returns the entry value. */ function mapCacheGet(key) { return _getMapData(this, key).get(key); } var _mapCacheGet = mapCacheGet; /** * Checks if a map value for `key` exists. * * @private * @name has * @memberOf MapCache * @param {string} key The key of the entry to check. * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. */ function mapCacheHas(key) { return _getMapData(this, key).has(key); } var _mapCacheHas = mapCacheHas; /** * Sets the map `key` to `value`. * * @private * @name set * @memberOf MapCache * @param {string} key The key of the value to set. * @param {*} value The value to set. * @returns {Object} Returns the map cache instance. */ function mapCacheSet(key, value) { var data = _getMapData(this, key), size = data.size; data.set(key, value); this.size += data.size == size ? 0 : 1; return this; } var _mapCacheSet = mapCacheSet; /** * Creates a map cache object to store key-value pairs. * * @private * @constructor * @param {Array} [entries] The key-value pairs to cache. */ function MapCache(entries) { var index = -1, length = entries == null ? 0 : entries.length; this.clear(); while (++index < length) { var entry = entries[index]; this.set(entry[0], entry[1]); } } // Add methods to `MapCache`. MapCache.prototype.clear = _mapCacheClear; MapCache.prototype['delete'] = _mapCacheDelete; MapCache.prototype.get = _mapCacheGet; MapCache.prototype.has = _mapCacheHas; MapCache.prototype.set = _mapCacheSet; var _MapCache = MapCache; /** Error message constants. */ var FUNC_ERROR_TEXT = 'Expected a function'; /** * Creates a function that memoizes the result of `func`. If `resolver` is * provided, it determines the cache key for storing the result based on the * arguments provided to the memoized function. By default, the first argument * provided to the memoized function is used as the map cache key. The `func` * is invoked with the `this` binding of the memoized function. * * **Note:** The cache is exposed as the `cache` property on the memoized * function. Its creation may be customized by replacing the `_.memoize.Cache` * constructor with one whose instances implement the * [`Map`](http://ecma-international.org/ecma-262/7.0/#sec-properties-of-the-map-prototype-object) * method interface of `clear`, `delete`, `get`, `has`, and `set`. * * @static * @memberOf _ * @since 0.1.0 * @category Function * @param {Function} func The function to have its output memoized. * @param {Function} [resolver] The function to resolve the cache key. * @returns {Function} Returns the new memoized function. * @example * * var object = { 'a': 1, 'b': 2 }; * var other = { 'c': 3, 'd': 4 }; * * var values = _.memoize(_.values); * values(object); * // => [1, 2] * * values(other); * // => [3, 4] * * object.a = 2; * values(object); * // => [1, 2] * * // Modify the result cache. * values.cache.set(object, ['a', 'b']); * values(object); * // => ['a', 'b'] * * // Replace `_.memoize.Cache`. * _.memoize.Cache = WeakMap; */ function memoize(func, resolver) { if (typeof func != 'function' || (resolver != null && typeof resolver != 'function')) { throw new TypeError(FUNC_ERROR_TEXT); } var memoized = function() { var args = arguments, key = resolver ? resolver.apply(this, args) : args[0], cache = memoized.cache; if (cache.has(key)) { return cache.get(key); } var result = func.apply(this, args); memoized.cache = cache.set(key, result) || cache; return result; }; memoized.cache = new (memoize.Cache || _MapCache); return memoized; } // Expose `MapCache`. memoize.Cache = _MapCache; var memoize_1 = memoize; /** Used as the maximum memoize cache size. */ var MAX_MEMOIZE_SIZE = 500; /** * A specialized version of `_.memoize` which clears the memoized function's * cache when it exceeds `MAX_MEMOIZE_SIZE`. * * @private * @param {Function} func The function to have its output memoized. * @returns {Function} Returns the new memoized function. */ function memoizeCapped(func) { var result = memoize_1(func, function(key) { if (cache.size === MAX_MEMOIZE_SIZE) { cache.clear(); } return key; }); var cache = result.cache; return result; } var _memoizeCapped = memoizeCapped; /** Used to match property names within property paths. */ var rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g; /** Used to match backslashes in property paths. */ var reEscapeChar = /\\(\\)?/g; /** * Converts `string` to a property path array. * * @private * @param {string} string The string to convert. * @returns {Array} Returns the property path array. */ var stringToPath = _memoizeCapped(function(string) { var result = []; if (string.charCodeAt(0) === 46 /* . */) { result.push(''); } string.replace(rePropName, function(match, number, quote, subString) { result.push(quote ? subString.replace(reEscapeChar, '$1') : (number || match)); }); return result; }); var _stringToPath = stringToPath; /** * A specialized version of `_.map` for arrays without support for iteratee * shorthands. * * @private * @param {Array} [array] The array to iterate over. * @param {Function} iteratee The function invoked per iteration. * @returns {Array} Returns the new mapped array. */ function arrayMap(array, iteratee) { var index = -1, length = array == null ? 0 : array.length, result = Array(length); while (++index < length) { result[index] = iteratee(array[index], index, array); } return result; } var _arrayMap = arrayMap; /** Used as references for various `Number` constants. */ var INFINITY$1 = 1 / 0; /** Used to convert symbols to primitives and strings. */ var symbolProto = _Symbol ? _Symbol.prototype : undefined, symbolToString = symbolProto ? symbolProto.toString : undefined; /** * The base implementation of `_.toString` which doesn't convert nullish * values to empty strings. * * @private * @param {*} value The value to process. * @returns {string} Returns the string. */ function baseToString(value) { // Exit early for strings to avoid a performance hit in some environments. if (typeof value == 'string') { return value; } if (isArray_1(value)) { // Recursively convert values (susceptible to call stack limits). return _arrayMap(value, baseToString) + ''; } if (isSymbol_1(value)) { return symbolToString ? symbolToString.call(value) : ''; } var result = (value + ''); return (result == '0' && (1 / value) == -INFINITY$1) ? '-0' : result; } var _baseToString = baseToString; /** * Converts `value` to a string. An empty string is returned for `null` * and `undefined` values. The sign of `-0` is preserved. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to convert. * @returns {string} Returns the converted string. * @example * * _.toString(null); * // => '' * * _.toString(-0); * // => '-0' * * _.toString([1, 2, 3]); * // => '1,2,3' */ function toString$1(value) { return value == null ? '' : _baseToString(value); } var toString_1 = toString$1; /** * Casts `value` to a path array if it's not one. * * @private * @param {*} value The value to inspect. * @param {Object} [object] The object to query keys on. * @returns {Array} Returns the cast property path array. */ function castPath(value, object) { if (isArray_1(value)) { return value; } return _isKey(value, object) ? [value] : _stringToPath(toString_1(value)); } var _castPath = castPath; /** Used as references for various `Number` constants. */ var INFINITY = 1 / 0; /** * Converts `value` to a string key if it's not a string or symbol. * * @private * @param {*} value The value to inspect. * @returns {string|symbol} Returns the key. */ function toKey(value) { if (typeof value == 'string' || isSymbol_1(value)) { return value; } var result = (value + ''); return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result; } var _toKey = toKey; /** * The base implementation of `_.get` without support for default values. * * @private * @param {Object} object The object to query. * @param {Array|string} path The path of the property to get. * @returns {*} Returns the resolved value. */ function baseGet(object, path) { path = _castPath(path, object); var index = 0, length = path.length; while (object != null && index < length) { object = object[_toKey(path[index++])]; } return (index && index == length) ? object : undefined; } var _baseGet = baseGet; /** * Gets the value at `path` of `object`. If the resolved value is * `undefined`, the `defaultValue` is returned in its place. * * @static * @memberOf _ * @since 3.7.0 * @category Object * @param {Object} object The object to query. * @param {Array|string} path The path of the property to get. * @param {*} [defaultValue] The value returned for `undefined` resolved values. * @returns {*} Returns the resolved value. * @example * * var object = { 'a': [{ 'b': { 'c': 3 } }] }; * * _.get(object, 'a[0].b.c'); * // => 3 * * _.get(object, ['a', '0', 'b', 'c']); * // => 3 * * _.get(object, 'a.b.c', 'default'); * // => 'default' */ function get(object, path, defaultValue) { var result = object == null ? undefined : _baseGet(object, path); return result === undefined ? defaultValue : result; } var get_1 = get; var defineProperty = (function() { try { var func = _getNative(Object, 'defineProperty'); func({}, '', {}); return func; } catch (e) {} }()); var _defineProperty = defineProperty; /** * The base implementation of `assignValue` and `assignMergeValue` without * value checks. * * @private * @param {Object} object The object to modify. * @param {string} key The key of the property to assign. * @param {*} value The value to assign. */ function baseAssignValue(object, key, value) { if (key == '__proto__' && _defineProperty) { _defineProperty(object, key, { 'configurable': true, 'enumerable': true, 'value': value, 'writable': true }); } else { object[key] = value; } } var _baseAssignValue = baseAssignValue; /** Used for built-in method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** * Assigns `value` to `key` of `object` if the existing value is not equivalent * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) * for equality comparisons. * * @private * @param {Object} object The object to modify. * @param {string} key The key of the property to assign. * @param {*} value The value to assign. */ function assignValue(object, key, value) { var objValue = object[key]; if (!(hasOwnProperty.call(object, key) && eq_1(objValue, value)) || (value === undefined && !(key in object))) { _baseAssignValue(object, key, value); } } var _assignValue = assignValue; /** Used as references for various `Number` constants. */ var MAX_SAFE_INTEGER = 9007199254740991; /** Used to detect unsigned integer values. */ var reIsUint = /^(?:0|[1-9]\d*)$/; /** * Checks if `value` is a valid array-like index. * * @private * @param {*} value The value to check. * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index. * @returns {boolean} Returns `true` if `value` is a valid index, else `false`. */ function isIndex(value, length) { var type = typeof value; length = length == null ? MAX_SAFE_INTEGER : length; return !!length && (type == 'number' || (type != 'symbol' && reIsUint.test(value))) && (value > -1 && value % 1 == 0 && value < length); } var _isIndex = isIndex; /** * The base implementation of `_.set`. * * @private * @param {Object} object The object to modify. * @param {Array|string} path The path of the property to set. * @param {*} value The value to set. * @param {Function} [customizer] The function to customize path creation. * @returns {Object} Returns `object`. */ function baseSet(object, path, value, customizer) { if (!isObject_1(object)) { return object; } path = _castPath(path, object); var index = -1, length = path.length, lastIndex = length - 1, nested = object; while (nested != null && ++index < length) { var key = _toKey(path[index]), newValue = value; if (key === '__proto__' || key === 'constructor' || key === 'prototype') { return object; } if (index != lastIndex) { var objValue = nested[key]; newValue = customizer ? customizer(objValue, key, nested) : undefined; if (newValue === undefined) { newValue = isObject_1(objValue) ? objValue : (_isIndex(path[index + 1]) ? [] : {}); } } _assignValue(nested, key, newValue); nested = nested[key]; } return object; } var _baseSet = baseSet; /** * Sets the value at `path` of `object`. If a portion of `path` doesn't exist, * it's created. Arrays are created for missing index properties while objects * are created for all other missing properties. Use `_.setWith` to customize * `path` creation. * * **Note:** This method mutates `object`. * * @static * @memberOf _ * @since 3.7.0 * @category Object * @param {Object} object The object to modify. * @param {Array|string} path The path of the property to set. * @param {*} value The value to set. * @returns {Object} Returns `object`. * @example * * var object = { 'a': [{ 'b': { 'c': 3 } }] }; * * _.set(object, 'a[0].b.c', 4); * console.log(object.a[0].b.c); * // => 4 * * _.set(object, ['x', '0', 'y', 'z'], 5); * console.log(object.x[0].y.z); * // => 5 */ function set(object, path, value) { return object == null ? object : _baseSet(object, path, value); } var set_1 = set; /** * Copies the values of `source` to `array`. * * @private * @param {Array} source The array to copy values from. * @param {Array} [array=[]] The array to copy values to. * @returns {Array} Returns `array`. */ function copyArray(source, array) { var index = -1, length = source.length; array || (array = Array(length)); while (++index < length) { array[index] = source[index]; } return array; } var _copyArray = copyArray; /** * Converts `value` to a property path array. * * @static * @memberOf _ * @since 4.0.0 * @category Util * @param {*} value The value to convert. * @returns {Array} Returns the new property path array. * @example * * _.toPath('a.b.c'); * // => ['a', 'b', 'c'] * * _.toPath('a[0].b.c'); * // => ['a', '0', 'b', 'c'] */ function toPath(value) { if (isArray_1(value)) { return _arrayMap(value, _toKey); } return isSymbol_1(value) ? [value] : _copyArray(_stringToPath(toString_1(value))); } var toPath_1 = toPath; var define$2 = { // access data field data: function data(params) { var defaults = { field: 'data', bindingEvent: 'data', allowBinding: false, allowSetting: false, allowGetting: false, settingEvent: 'data', settingTriggersEvent: false, triggerFnName: 'trigger', immutableKeys: {}, // key => true if immutable updateStyle: false, beforeGet: function beforeGet(self) {}, beforeSet: function beforeSet(self, obj) {}, onSet: function onSet(self) {}, canSet: function canSet(self) { return true; } }; params = extend({}, defaults, params); return function dataImpl(name, value) { var p = params; var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var single = selfIsArrayLike ? self[0] : self; // .data('foo', ...) if (string(name)) { // set or get property var isPathLike = name.indexOf('.') !== -1; // there might be a normal field with a dot var path = isPathLike && toPath_1(name); // .data('foo') if (p.allowGetting && value === undefined) { // get var ret; if (single) { p.beforeGet(single); // check if it's path and a field with the same name doesn't exist if (path && single._private[p.field][name] === undefined) { ret = get_1(single._private[p.field], path); } else { ret = single._private[p.field][name]; } } return ret; // .data('foo', 'bar') } else if (p.allowSetting && value !== undefined) { // set var valid = !p.immutableKeys[name]; if (valid) { var change = _defineProperty$1({}, name, value); p.beforeSet(self, change); for (var i = 0, l = all.length; i < l; i++) { var ele = all[i]; if (p.canSet(ele)) { if (path && single._private[p.field][name] === undefined) { set_1(ele._private[p.field], path, value); } else { ele._private[p.field][name] = value; } } } // update mappers if asked if (p.updateStyle) { self.updateStyle(); } // call onSet callback p.onSet(self); if (p.settingTriggersEvent) { self[p.triggerFnName](p.settingEvent); } } } // .data({ 'foo': 'bar' }) } else if (p.allowSetting && plainObject(name)) { // extend var obj = name; var k, v; var keys = Object.keys(obj); p.beforeSet(self, obj); for (var _i = 0; _i < keys.length; _i++) { k = keys[_i]; v = obj[k]; var _valid = !p.immutableKeys[k]; if (_valid) { for (var j = 0; j < all.length; j++) { var _ele = all[j]; if (p.canSet(_ele)) { _ele._private[p.field][k] = v; } } } } // update mappers if asked if (p.updateStyle) { self.updateStyle(); } // call onSet callback p.onSet(self); if (p.settingTriggersEvent) { self[p.triggerFnName](p.settingEvent); } // .data(function(){ ... }) } else if (p.allowBinding && fn$6(name)) { // bind to event var fn = name; self.on(p.bindingEvent, fn); // .data() } else if (p.allowGetting && name === undefined) { // get whole object var _ret; if (single) { p.beforeGet(single); _ret = single._private[p.field]; } return _ret; } return self; // maintain chainability }; // function }, // data // remove data field removeData: function removeData(params) { var defaults = { field: 'data', event: 'data', triggerFnName: 'trigger', triggerEvent: false, immutableKeys: {} // key => true if immutable }; params = extend({}, defaults, params); return function removeDataImpl(names) { var p = params; var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like // .removeData('foo bar') if (string(names)) { // then get the list of keys, and delete them var keys = names.split(/\s+/); var l = keys.length; for (var i = 0; i < l; i++) { // delete each non-empty key var key = keys[i]; if (emptyString(key)) { continue; } var valid = !p.immutableKeys[key]; // not valid if immutable if (valid) { for (var i_a = 0, l_a = all.length; i_a < l_a; i_a++) { all[i_a]._private[p.field][key] = undefined; } } } if (p.triggerEvent) { self[p.triggerFnName](p.event); } // .removeData() } else if (names === undefined) { // then delete all keys for (var _i_a = 0, _l_a = all.length; _i_a < _l_a; _i_a++) { var _privateFields = all[_i_a]._private[p.field]; var _keys = Object.keys(_privateFields); for (var _i2 = 0; _i2 < _keys.length; _i2++) { var _key = _keys[_i2]; var validKeyToDelete = !p.immutableKeys[_key]; if (validKeyToDelete) { _privateFields[_key] = undefined; } } } if (p.triggerEvent) { self[p.triggerFnName](p.event); } } return self; // maintain chaining }; // function } // removeData }; // define var define$1 = { eventAliasesOn: function eventAliasesOn(proto) { var p = proto; p.addListener = p.listen = p.bind = p.on; p.unlisten = p.unbind = p.off = p.removeListener; p.trigger = p.emit; // this is just a wrapper alias of .on() p.pon = p.promiseOn = function (events, selector) { var self = this; var args = Array.prototype.slice.call(arguments, 0); return new Promise$1(function (resolve, reject) { var callback = function callback(e) { self.off.apply(self, offArgs); resolve(e); }; var onArgs = args.concat([callback]); var offArgs = onArgs.concat([]); self.on.apply(self, onArgs); }); }; } }; // define // use this module to cherry pick functions into your prototype var define = {}; [define$3, define$2, define$1].forEach(function (m) { extend(define, m); }); var elesfn$i = { animate: define.animate(), animation: define.animation(), animated: define.animated(), clearQueue: define.clearQueue(), delay: define.delay(), delayAnimation: define.delayAnimation(), stop: define.stop() }; var elesfn$h = { classes: function classes(_classes) { var self = this; if (_classes === undefined) { var ret = []; self[0]._private.classes.forEach(function (cls) { return ret.push(cls); }); return ret; } else if (!array(_classes)) { // extract classes from string _classes = (_classes || '').match(/\S+/g) || []; } var changed = []; var classesSet = new Set$1(_classes); // check and update each ele for (var j = 0; j < self.length; j++) { var ele = self[j]; var _p = ele._private; var eleClasses = _p.classes; var changedEle = false; // check if ele has all of the passed classes for (var i = 0; i < _classes.length; i++) { var cls = _classes[i]; var eleHasClass = eleClasses.has(cls); if (!eleHasClass) { changedEle = true; break; } } // check if ele has classes outside of those passed if (!changedEle) { changedEle = eleClasses.size !== _classes.length; } if (changedEle) { _p.classes = classesSet; changed.push(ele); } } // trigger update style on those eles that had class changes if (changed.length > 0) { this.spawn(changed).updateStyle().emit('class'); } return self; }, addClass: function addClass(classes) { return this.toggleClass(classes, true); }, hasClass: function hasClass(className) { var ele = this[0]; return ele != null && ele._private.classes.has(className); }, toggleClass: function toggleClass(classes, toggle) { if (!array(classes)) { // extract classes from string classes = classes.match(/\S+/g) || []; } var self = this; var toggleUndefd = toggle === undefined; var changed = []; // eles who had classes changed for (var i = 0, il = self.length; i < il; i++) { var ele = self[i]; var eleClasses = ele._private.classes; var changedEle = false; for (var j = 0; j < classes.length; j++) { var cls = classes[j]; var hasClass = eleClasses.has(cls); var changedNow = false; if (toggle || toggleUndefd && !hasClass) { eleClasses.add(cls); changedNow = true; } else if (!toggle || toggleUndefd && hasClass) { eleClasses["delete"](cls); changedNow = true; } if (!changedEle && changedNow) { changed.push(ele); changedEle = true; } } // for j classes } // for i eles // trigger update style on those eles that had class changes if (changed.length > 0) { this.spawn(changed).updateStyle().emit('class'); } return self; }, removeClass: function removeClass(classes) { return this.toggleClass(classes, false); }, flashClass: function flashClass(classes, duration) { var self = this; if (duration == null) { duration = 250; } else if (duration === 0) { return self; // nothing to do really } self.addClass(classes); setTimeout(function () { self.removeClass(classes); }, duration); return self; } }; elesfn$h.className = elesfn$h.classNames = elesfn$h.classes; // tokens in the query language var tokens = { metaChar: '[\\!\\"\\#\\$\\%\\&\\\'\\(\\)\\*\\+\\,\\.\\/\\:\\;\\<\\=\\>\\?\\@\\[\\]\\^\\`\\{\\|\\}\\~]', // chars we need to escape in let names, etc comparatorOp: '=|\\!=|>|>=|<|<=|\\$=|\\^=|\\*=', // binary comparison op (used in data selectors) boolOp: '\\?|\\!|\\^', // boolean (unary) operators (used in data selectors) string: '"(?:\\\\"|[^"])*"' + '|' + "'(?:\\\\'|[^'])*'", // string literals (used in data selectors) -- doublequotes | singlequotes number: number, // number literal (used in data selectors) --- e.g. 0.1234, 1234, 12e123 meta: 'degree|indegree|outdegree', // allowed metadata fields (i.e. allowed functions to use from Collection) separator: '\\s*,\\s*', // queries are separated by commas, e.g. edge[foo = 'bar'], node.someClass descendant: '\\s+', child: '\\s+>\\s+', subject: '\\$', group: 'node|edge|\\*', directedEdge: '\\s+->\\s+', undirectedEdge: '\\s+<->\\s+' }; tokens.variable = '(?:[\\w-.]|(?:\\\\' + tokens.metaChar + '))+'; // a variable name can have letters, numbers, dashes, and periods tokens.className = '(?:[\\w-]|(?:\\\\' + tokens.metaChar + '))+'; // a class name has the same rules as a variable except it can't have a '.' in the name tokens.value = tokens.string + '|' + tokens.number; // a value literal, either a string or number tokens.id = tokens.variable; // an element id (follows variable conventions) (function () { var ops, op, i; // add @ variants to comparatorOp ops = tokens.comparatorOp.split('|'); for (i = 0; i < ops.length; i++) { op = ops[i]; tokens.comparatorOp += '|@' + op; } // add ! variants to comparatorOp ops = tokens.comparatorOp.split('|'); for (i = 0; i < ops.length; i++) { op = ops[i]; if (op.indexOf('!') >= 0) { continue; } // skip ops that explicitly contain ! if (op === '=') { continue; } // skip = b/c != is explicitly defined tokens.comparatorOp += '|\\!' + op; } })(); /** * Make a new query object * * @prop type {Type} The type enum (int) of the query * @prop checks List of checks to make against an ele to test for a match */ var newQuery = function newQuery() { return { checks: [] }; }; /** * A check type enum-like object. Uses integer values for fast match() lookup. * The ordering does not matter as long as the ints are unique. */ var Type = { /** E.g. node */ GROUP: 0, /** A collection of elements */ COLLECTION: 1, /** A filter(ele) function */ FILTER: 2, /** E.g. [foo > 1] */ DATA_COMPARE: 3, /** E.g. [foo] */ DATA_EXIST: 4, /** E.g. [?foo] */ DATA_BOOL: 5, /** E.g. [[degree > 2]] */ META_COMPARE: 6, /** E.g. :selected */ STATE: 7, /** E.g. #foo */ ID: 8, /** E.g. .foo */ CLASS: 9, /** E.g. #foo <-> #bar */ UNDIRECTED_EDGE: 10, /** E.g. #foo -> #bar */ DIRECTED_EDGE: 11, /** E.g. $#foo -> #bar */ NODE_SOURCE: 12, /** E.g. #foo -> $#bar */ NODE_TARGET: 13, /** E.g. $#foo <-> #bar */ NODE_NEIGHBOR: 14, /** E.g. #foo > #bar */ CHILD: 15, /** E.g. #foo #bar */ DESCENDANT: 16, /** E.g. $#foo > #bar */ PARENT: 17, /** E.g. $#foo #bar */ ANCESTOR: 18, /** E.g. #foo > $bar > #baz */ COMPOUND_SPLIT: 19, /** Always matches, useful placeholder for subject in `COMPOUND_SPLIT` */ TRUE: 20 }; var stateSelectors = [{ selector: ':selected', matches: function matches(ele) { return ele.selected(); } }, { selector: ':unselected', matches: function matches(ele) { return !ele.selected(); } }, { selector: ':selectable', matches: function matches(ele) { return ele.selectable(); } }, { selector: ':unselectable', matches: function matches(ele) { return !ele.selectable(); } }, { selector: ':locked', matches: function matches(ele) { return ele.locked(); } }, { selector: ':unlocked', matches: function matches(ele) { return !ele.locked(); } }, { selector: ':visible', matches: function matches(ele) { return ele.visible(); } }, { selector: ':hidden', matches: function matches(ele) { return !ele.visible(); } }, { selector: ':transparent', matches: function matches(ele) { return ele.transparent(); } }, { selector: ':grabbed', matches: function matches(ele) { return ele.grabbed(); } }, { selector: ':free', matches: function matches(ele) { return !ele.grabbed(); } }, { selector: ':removed', matches: function matches(ele) { return ele.removed(); } }, { selector: ':inside', matches: function matches(ele) { return !ele.removed(); } }, { selector: ':grabbable', matches: function matches(ele) { return ele.grabbable(); } }, { selector: ':ungrabbable', matches: function matches(ele) { return !ele.grabbable(); } }, { selector: ':animated', matches: function matches(ele) { return ele.animated(); } }, { selector: ':unanimated', matches: function matches(ele) { return !ele.animated(); } }, { selector: ':parent', matches: function matches(ele) { return ele.isParent(); } }, { selector: ':childless', matches: function matches(ele) { return ele.isChildless(); } }, { selector: ':child', matches: function matches(ele) { return ele.isChild(); } }, { selector: ':orphan', matches: function matches(ele) { return ele.isOrphan(); } }, { selector: ':nonorphan', matches: function matches(ele) { return ele.isChild(); } }, { selector: ':compound', matches: function matches(ele) { if (ele.isNode()) { return ele.isParent(); } else { return ele.source().isParent() || ele.target().isParent(); } } }, { selector: ':loop', matches: function matches(ele) { return ele.isLoop(); } }, { selector: ':simple', matches: function matches(ele) { return ele.isSimple(); } }, { selector: ':active', matches: function matches(ele) { return ele.active(); } }, { selector: ':inactive', matches: function matches(ele) { return !ele.active(); } }, { selector: ':backgrounding', matches: function matches(ele) { return ele.backgrounding(); } }, { selector: ':nonbackgrounding', matches: function matches(ele) { return !ele.backgrounding(); } }].sort(function (a, b) { // n.b. selectors that are starting substrings of others must have the longer ones first return descending(a.selector, b.selector); }); var lookup = function () { var selToFn = {}; var s; for (var i = 0; i < stateSelectors.length; i++) { s = stateSelectors[i]; selToFn[s.selector] = s.matches; } return selToFn; }(); var stateSelectorMatches = function stateSelectorMatches(sel, ele) { return lookup[sel](ele); }; var stateSelectorRegex = '(' + stateSelectors.map(function (s) { return s.selector; }).join('|') + ')'; // when a token like a variable has escaped meta characters, we need to clean the backslashes out // so that values get compared properly in Selector.filter() var cleanMetaChars = function cleanMetaChars(str) { return str.replace(new RegExp('\\\\(' + tokens.metaChar + ')', 'g'), function (match, $1) { return $1; }); }; var replaceLastQuery = function replaceLastQuery(selector, examiningQuery, replacementQuery) { selector[selector.length - 1] = replacementQuery; }; // NOTE: add new expression syntax here to have it recognised by the parser; // - a query contains all adjacent (i.e. no separator in between) expressions; // - the current query is stored in selector[i] // - you need to check the query objects in match() for it actually filter properly, but that's pretty straight forward var exprs = [{ name: 'group', // just used for identifying when debugging query: true, regex: '(' + tokens.group + ')', populate: function populate(selector, query, _ref) { var _ref2 = _slicedToArray(_ref, 1), group = _ref2[0]; query.checks.push({ type: Type.GROUP, value: group === '*' ? group : group + 's' }); } }, { name: 'state', query: true, regex: stateSelectorRegex, populate: function populate(selector, query, _ref3) { var _ref4 = _slicedToArray(_ref3, 1), state = _ref4[0]; query.checks.push({ type: Type.STATE, value: state }); } }, { name: 'id', query: true, regex: '\\#(' + tokens.id + ')', populate: function populate(selector, query, _ref5) { var _ref6 = _slicedToArray(_ref5, 1), id = _ref6[0]; query.checks.push({ type: Type.ID, value: cleanMetaChars(id) }); } }, { name: 'className', query: true, regex: '\\.(' + tokens.className + ')', populate: function populate(selector, query, _ref7) { var _ref8 = _slicedToArray(_ref7, 1), className = _ref8[0]; query.checks.push({ type: Type.CLASS, value: cleanMetaChars(className) }); } }, { name: 'dataExists', query: true, regex: '\\[\\s*(' + tokens.variable + ')\\s*\\]', populate: function populate(selector, query, _ref9) { var _ref10 = _slicedToArray(_ref9, 1), variable = _ref10[0]; query.checks.push({ type: Type.DATA_EXIST, field: cleanMetaChars(variable) }); } }, { name: 'dataCompare', query: true, regex: '\\[\\s*(' + tokens.variable + ')\\s*(' + tokens.comparatorOp + ')\\s*(' + tokens.value + ')\\s*\\]', populate: function populate(selector, query, _ref11) { var _ref12 = _slicedToArray(_ref11, 3), variable = _ref12[0], comparatorOp = _ref12[1], value = _ref12[2]; var valueIsString = new RegExp('^' + tokens.string + '$').exec(value) != null; if (valueIsString) { value = value.substring(1, value.length - 1); } else { value = parseFloat(value); } query.checks.push({ type: Type.DATA_COMPARE, field: cleanMetaChars(variable), operator: comparatorOp, value: value }); } }, { name: 'dataBool', query: true, regex: '\\[\\s*(' + tokens.boolOp + ')\\s*(' + tokens.variable + ')\\s*\\]', populate: function populate(selector, query, _ref13) { var _ref14 = _slicedToArray(_ref13, 2), boolOp = _ref14[0], variable = _ref14[1]; query.checks.push({ type: Type.DATA_BOOL, field: cleanMetaChars(variable), operator: boolOp }); } }, { name: 'metaCompare', query: true, regex: '\\[\\[\\s*(' + tokens.meta + ')\\s*(' + tokens.comparatorOp + ')\\s*(' + tokens.number + ')\\s*\\]\\]', populate: function populate(selector, query, _ref15) { var _ref16 = _slicedToArray(_ref15, 3), meta = _ref16[0], comparatorOp = _ref16[1], number = _ref16[2]; query.checks.push({ type: Type.META_COMPARE, field: cleanMetaChars(meta), operator: comparatorOp, value: parseFloat(number) }); } }, { name: 'nextQuery', separator: true, regex: tokens.separator, populate: function populate(selector, query) { var currentSubject = selector.currentSubject; var edgeCount = selector.edgeCount; var compoundCount = selector.compoundCount; var lastQ = selector[selector.length - 1]; if (currentSubject != null) { lastQ.subject = currentSubject; selector.currentSubject = null; } lastQ.edgeCount = edgeCount; lastQ.compoundCount = compoundCount; selector.edgeCount = 0; selector.compoundCount = 0; // go on to next query var nextQuery = selector[selector.length++] = newQuery(); return nextQuery; // this is the new query to be filled by the following exprs } }, { name: 'directedEdge', separator: true, regex: tokens.directedEdge, populate: function populate(selector, query) { if (selector.currentSubject == null) { // undirected edge var edgeQuery = newQuery(); var source = query; var target = newQuery(); edgeQuery.checks.push({ type: Type.DIRECTED_EDGE, source: source, target: target }); // the query in the selector should be the edge rather than the source replaceLastQuery(selector, query, edgeQuery); selector.edgeCount++; // we're now populating the target query with expressions that follow return target; } else { // source/target var srcTgtQ = newQuery(); var _source = query; var _target = newQuery(); srcTgtQ.checks.push({ type: Type.NODE_SOURCE, source: _source, target: _target }); // the query in the selector should be the neighbourhood rather than the node replaceLastQuery(selector, query, srcTgtQ); selector.edgeCount++; return _target; // now populating the target with the following expressions } } }, { name: 'undirectedEdge', separator: true, regex: tokens.undirectedEdge, populate: function populate(selector, query) { if (selector.currentSubject == null) { // undirected edge var edgeQuery = newQuery(); var source = query; var target = newQuery(); edgeQuery.checks.push({ type: Type.UNDIRECTED_EDGE, nodes: [source, target] }); // the query in the selector should be the edge rather than the source replaceLastQuery(selector, query, edgeQuery); selector.edgeCount++; // we're now populating the target query with expressions that follow return target; } else { // neighbourhood var nhoodQ = newQuery(); var node = query; var neighbor = newQuery(); nhoodQ.checks.push({ type: Type.NODE_NEIGHBOR, node: node, neighbor: neighbor }); // the query in the selector should be the neighbourhood rather than the node replaceLastQuery(selector, query, nhoodQ); return neighbor; // now populating the neighbor with following expressions } } }, { name: 'child', separator: true, regex: tokens.child, populate: function populate(selector, query) { if (selector.currentSubject == null) { // default: child query var parentChildQuery = newQuery(); var child = newQuery(); var parent = selector[selector.length - 1]; parentChildQuery.checks.push({ type: Type.CHILD, parent: parent, child: child }); // the query in the selector should be the '>' itself replaceLastQuery(selector, query, parentChildQuery); selector.compoundCount++; // we're now populating the child query with expressions that follow return child; } else if (selector.currentSubject === query) { // compound split query var compound = newQuery(); var left = selector[selector.length - 1]; var right = newQuery(); var subject = newQuery(); var _child = newQuery(); var _parent = newQuery(); // set up the root compound q compound.checks.push({ type: Type.COMPOUND_SPLIT, left: left, right: right, subject: subject }); // populate the subject and replace the q at the old spot (within left) with TRUE subject.checks = query.checks; // take the checks from the left query.checks = [{ type: Type.TRUE }]; // checks under left refs the subject implicitly // set up the right q _parent.checks.push({ type: Type.TRUE }); // parent implicitly refs the subject right.checks.push({ type: Type.PARENT, // type is swapped on right side queries parent: _parent, child: _child // empty for now }); replaceLastQuery(selector, left, compound); // update the ref since we moved things around for `query` selector.currentSubject = subject; selector.compoundCount++; return _child; // now populating the right side's child } else { // parent query // info for parent query var _parent2 = newQuery(); var _child2 = newQuery(); var pcQChecks = [{ type: Type.PARENT, parent: _parent2, child: _child2 }]; // the parent-child query takes the place of the query previously being populated _parent2.checks = query.checks; // the previous query contains the checks for the parent query.checks = pcQChecks; // pc query takes over selector.compoundCount++; return _child2; // we're now populating the child } } }, { name: 'descendant', separator: true, regex: tokens.descendant, populate: function populate(selector, query) { if (selector.currentSubject == null) { // default: descendant query var ancChQuery = newQuery(); var descendant = newQuery(); var ancestor = selector[selector.length - 1]; ancChQuery.checks.push({ type: Type.DESCENDANT, ancestor: ancestor, descendant: descendant }); // the query in the selector should be the '>' itself replaceLastQuery(selector, query, ancChQuery); selector.compoundCount++; // we're now populating the descendant query with expressions that follow return descendant; } else if (selector.currentSubject === query) { // compound split query var compound = newQuery(); var left = selector[selector.length - 1]; var right = newQuery(); var subject = newQuery(); var _descendant = newQuery(); var _ancestor = newQuery(); // set up the root compound q compound.checks.push({ type: Type.COMPOUND_SPLIT, left: left, right: right, subject: subject }); // populate the subject and replace the q at the old spot (within left) with TRUE subject.checks = query.checks; // take the checks from the left query.checks = [{ type: Type.TRUE }]; // checks under left refs the subject implicitly // set up the right q _ancestor.checks.push({ type: Type.TRUE }); // ancestor implicitly refs the subject right.checks.push({ type: Type.ANCESTOR, // type is swapped on right side queries ancestor: _ancestor, descendant: _descendant // empty for now }); replaceLastQuery(selector, left, compound); // update the ref since we moved things around for `query` selector.currentSubject = subject; selector.compoundCount++; return _descendant; // now populating the right side's descendant } else { // ancestor query // info for parent query var _ancestor2 = newQuery(); var _descendant2 = newQuery(); var adQChecks = [{ type: Type.ANCESTOR, ancestor: _ancestor2, descendant: _descendant2 }]; // the parent-child query takes the place of the query previously being populated _ancestor2.checks = query.checks; // the previous query contains the checks for the parent query.checks = adQChecks; // pc query takes over selector.compoundCount++; return _descendant2; // we're now populating the child } } }, { name: 'subject', modifier: true, regex: tokens.subject, populate: function populate(selector, query) { if (selector.currentSubject != null && selector.currentSubject !== query) { warn('Redefinition of subject in selector `' + selector.toString() + '`'); return false; } selector.currentSubject = query; var topQ = selector[selector.length - 1]; var topChk = topQ.checks[0]; var topType = topChk == null ? null : topChk.type; if (topType === Type.DIRECTED_EDGE) { // directed edge with subject on the target // change to target node check topChk.type = Type.NODE_TARGET; } else if (topType === Type.UNDIRECTED_EDGE) { // undirected edge with subject on the second node // change to neighbor check topChk.type = Type.NODE_NEIGHBOR; topChk.node = topChk.nodes[1]; // second node is subject topChk.neighbor = topChk.nodes[0]; // clean up unused fields for new type topChk.nodes = null; } } }]; exprs.forEach(function (e) { return e.regexObj = new RegExp('^' + e.regex); }); /** * Of all the expressions, find the first match in the remaining text. * @param {string} remaining The remaining text to parse * @returns The matched expression and the newly remaining text `{ expr, match, name, remaining }` */ var consumeExpr = function consumeExpr(remaining) { var expr; var match; var name; for (var j = 0; j < exprs.length; j++) { var e = exprs[j]; var n = e.name; var m = remaining.match(e.regexObj); if (m != null) { match = m; expr = e; name = n; var consumed = m[0]; remaining = remaining.substring(consumed.length); break; // we've consumed one expr, so we can return now } } return { expr: expr, match: match, name: name, remaining: remaining }; }; /** * Consume all the leading whitespace * @param {string} remaining The text to consume * @returns The text with the leading whitespace removed */ var consumeWhitespace = function consumeWhitespace(remaining) { var match = remaining.match(/^\s+/); if (match) { var consumed = match[0]; remaining = remaining.substring(consumed.length); } return remaining; }; /** * Parse the string and store the parsed representation in the Selector. * @param {string} selector The selector string * @returns `true` if the selector was successfully parsed, `false` otherwise */ var parse = function parse(selector) { var self = this; var remaining = self.inputText = selector; var currentQuery = self[0] = newQuery(); self.length = 1; remaining = consumeWhitespace(remaining); // get rid of leading whitespace for (;;) { var exprInfo = consumeExpr(remaining); if (exprInfo.expr == null) { warn('The selector `' + selector + '`is invalid'); return false; } else { var args = exprInfo.match.slice(1); // let the token populate the selector object in currentQuery var ret = exprInfo.expr.populate(self, currentQuery, args); if (ret === false) { return false; // exit if population failed } else if (ret != null) { currentQuery = ret; // change the current query to be filled if the expr specifies } } remaining = exprInfo.remaining; // we're done when there's nothing left to parse if (remaining.match(/^\s*$/)) { break; } } var lastQ = self[self.length - 1]; if (self.currentSubject != null) { lastQ.subject = self.currentSubject; } lastQ.edgeCount = self.edgeCount; lastQ.compoundCount = self.compoundCount; for (var i = 0; i < self.length; i++) { var q = self[i]; // in future, this could potentially be allowed if there were operator precedence and detection of invalid combinations if (q.compoundCount > 0 && q.edgeCount > 0) { warn('The selector `' + selector + '` is invalid because it uses both a compound selector and an edge selector'); return false; } if (q.edgeCount > 1) { warn('The selector `' + selector + '` is invalid because it uses multiple edge selectors'); return false; } else if (q.edgeCount === 1) { warn('The selector `' + selector + '` is deprecated. Edge selectors do not take effect on changes to source and target nodes after an edge is added, for performance reasons. Use a class or data selector on edges instead, updating the class or data of an edge when your app detects a change in source or target nodes.'); } } return true; // success }; /** * Get the selector represented as a string. This value uses default formatting, * so things like spacing may differ from the input text passed to the constructor. * @returns {string} The selector string */ var toString = function toString() { if (this.toStringCache != null) { return this.toStringCache; } var clean = function clean(obj) { if (obj == null) { return ''; } else { return obj; } }; var cleanVal = function cleanVal(val) { if (string(val)) { return '"' + val + '"'; } else { return clean(val); } }; var space = function space(val) { return ' ' + val + ' '; }; var checkToString = function checkToString(check, subject) { var type = check.type, value = check.value; switch (type) { case Type.GROUP: { var group = clean(value); return group.substring(0, group.length - 1); } case Type.DATA_COMPARE: { var field = check.field, operator = check.operator; return '[' + field + space(clean(operator)) + cleanVal(value) + ']'; } case Type.DATA_BOOL: { var _operator = check.operator, _field = check.field; return '[' + clean(_operator) + _field + ']'; } case Type.DATA_EXIST: { var _field2 = check.field; return '[' + _field2 + ']'; } case Type.META_COMPARE: { var _operator2 = check.operator, _field3 = check.field; return '[[' + _field3 + space(clean(_operator2)) + cleanVal(value) + ']]'; } case Type.STATE: { return value; } case Type.ID: { return '#' + value; } case Type.CLASS: { return '.' + value; } case Type.PARENT: case Type.CHILD: { return queryToString(check.parent, subject) + space('>') + queryToString(check.child, subject); } case Type.ANCESTOR: case Type.DESCENDANT: { return queryToString(check.ancestor, subject) + ' ' + queryToString(check.descendant, subject); } case Type.COMPOUND_SPLIT: { var lhs = queryToString(check.left, subject); var sub = queryToString(check.subject, subject); var rhs = queryToString(check.right, subject); return lhs + (lhs.length > 0 ? ' ' : '') + sub + rhs; } case Type.TRUE: { return ''; } } }; var queryToString = function queryToString(query, subject) { return query.checks.reduce(function (str, chk, i) { return str + (subject === query && i === 0 ? '$' : '') + checkToString(chk, subject); }, ''); }; var str = ''; for (var i = 0; i < this.length; i++) { var query = this[i]; str += queryToString(query, query.subject); if (this.length > 1 && i < this.length - 1) { str += ', '; } } this.toStringCache = str; return str; }; var parse$1 = { parse: parse, toString: toString }; var valCmp = function valCmp(fieldVal, operator, value) { var matches; var isFieldStr = string(fieldVal); var isFieldNum = number$1(fieldVal); var isValStr = string(value); var fieldStr, valStr; var caseInsensitive = false; var notExpr = false; var isIneqCmp = false; if (operator.indexOf('!') >= 0) { operator = operator.replace('!', ''); notExpr = true; } if (operator.indexOf('@') >= 0) { operator = operator.replace('@', ''); caseInsensitive = true; } if (isFieldStr || isValStr || caseInsensitive) { fieldStr = !isFieldStr && !isFieldNum ? '' : '' + fieldVal; valStr = '' + value; } // if we're doing a case insensitive comparison, then we're using a STRING comparison // even if we're comparing numbers if (caseInsensitive) { fieldVal = fieldStr = fieldStr.toLowerCase(); value = valStr = valStr.toLowerCase(); } switch (operator) { case '*=': matches = fieldStr.indexOf(valStr) >= 0; break; case '$=': matches = fieldStr.indexOf(valStr, fieldStr.length - valStr.length) >= 0; break; case '^=': matches = fieldStr.indexOf(valStr) === 0; break; case '=': matches = fieldVal === value; break; case '>': isIneqCmp = true; matches = fieldVal > value; break; case '>=': isIneqCmp = true; matches = fieldVal >= value; break; case '<': isIneqCmp = true; matches = fieldVal < value; break; case '<=': isIneqCmp = true; matches = fieldVal <= value; break; default: matches = false; break; } // apply the not op, but null vals for inequalities should always stay non-matching if (notExpr && (fieldVal != null || !isIneqCmp)) { matches = !matches; } return matches; }; var boolCmp = function boolCmp(fieldVal, operator) { switch (operator) { case '?': return fieldVal ? true : false; case '!': return fieldVal ? false : true; case '^': return fieldVal === undefined; } }; var existCmp = function existCmp(fieldVal) { return fieldVal !== undefined; }; var data$1 = function data(ele, field) { return ele.data(field); }; var meta = function meta(ele, field) { return ele[field](); }; /** A lookup of `match(check, ele)` functions by `Type` int */ var match = []; /** * Returns whether the query matches for the element * @param query The `{ type, value, ... }` query object * @param ele The element to compare against */ var matches$1 = function matches(query, ele) { return query.checks.every(function (chk) { return match[chk.type](chk, ele); }); }; match[Type.GROUP] = function (check, ele) { var group = check.value; return group === '*' || group === ele.group(); }; match[Type.STATE] = function (check, ele) { var stateSelector = check.value; return stateSelectorMatches(stateSelector, ele); }; match[Type.ID] = function (check, ele) { var id = check.value; return ele.id() === id; }; match[Type.CLASS] = function (check, ele) { var cls = check.value; return ele.hasClass(cls); }; match[Type.META_COMPARE] = function (check, ele) { var field = check.field, operator = check.operator, value = check.value; return valCmp(meta(ele, field), operator, value); }; match[Type.DATA_COMPARE] = function (check, ele) { var field = check.field, operator = check.operator, value = check.value; return valCmp(data$1(ele, field), operator, value); }; match[Type.DATA_BOOL] = function (check, ele) { var field = check.field, operator = check.operator; return boolCmp(data$1(ele, field), operator); }; match[Type.DATA_EXIST] = function (check, ele) { var field = check.field; check.operator; return existCmp(data$1(ele, field)); }; match[Type.UNDIRECTED_EDGE] = function (check, ele) { var qA = check.nodes[0]; var qB = check.nodes[1]; var src = ele.source(); var tgt = ele.target(); return matches$1(qA, src) && matches$1(qB, tgt) || matches$1(qB, src) && matches$1(qA, tgt); }; match[Type.NODE_NEIGHBOR] = function (check, ele) { return matches$1(check.node, ele) && ele.neighborhood().some(function (n) { return n.isNode() && matches$1(check.neighbor, n); }); }; match[Type.DIRECTED_EDGE] = function (check, ele) { return matches$1(check.source, ele.source()) && matches$1(check.target, ele.target()); }; match[Type.NODE_SOURCE] = function (check, ele) { return matches$1(check.source, ele) && ele.outgoers().some(function (n) { return n.isNode() && matches$1(check.target, n); }); }; match[Type.NODE_TARGET] = function (check, ele) { return matches$1(check.target, ele) && ele.incomers().some(function (n) { return n.isNode() && matches$1(check.source, n); }); }; match[Type.CHILD] = function (check, ele) { return matches$1(check.child, ele) && matches$1(check.parent, ele.parent()); }; match[Type.PARENT] = function (check, ele) { return matches$1(check.parent, ele) && ele.children().some(function (c) { return matches$1(check.child, c); }); }; match[Type.DESCENDANT] = function (check, ele) { return matches$1(check.descendant, ele) && ele.ancestors().some(function (a) { return matches$1(check.ancestor, a); }); }; match[Type.ANCESTOR] = function (check, ele) { return matches$1(check.ancestor, ele) && ele.descendants().some(function (d) { return matches$1(check.descendant, d); }); }; match[Type.COMPOUND_SPLIT] = function (check, ele) { return matches$1(check.subject, ele) && matches$1(check.left, ele) && matches$1(check.right, ele); }; match[Type.TRUE] = function () { return true; }; match[Type.COLLECTION] = function (check, ele) { var collection = check.value; return collection.has(ele); }; match[Type.FILTER] = function (check, ele) { var filter = check.value; return filter(ele); }; // filter an existing collection var filter = function filter(collection) { var self = this; // for 1 id #foo queries, just get the element if (self.length === 1 && self[0].checks.length === 1 && self[0].checks[0].type === Type.ID) { return collection.getElementById(self[0].checks[0].value).collection(); } var selectorFunction = function selectorFunction(element) { for (var j = 0; j < self.length; j++) { var query = self[j]; if (matches$1(query, element)) { return true; } } return false; }; if (self.text() == null) { selectorFunction = function selectorFunction() { return true; }; } return collection.filter(selectorFunction); }; // filter // does selector match a single element? var matches = function matches(ele) { var self = this; for (var j = 0; j < self.length; j++) { var query = self[j]; if (matches$1(query, ele)) { return true; } } return false; }; // matches var matching = { matches: matches, filter: filter }; var Selector = function Selector(selector) { this.inputText = selector; this.currentSubject = null; this.compoundCount = 0; this.edgeCount = 0; this.length = 0; if (selector == null || string(selector) && selector.match(/^\s*$/)) ; else if (elementOrCollection(selector)) { this.addQuery({ checks: [{ type: Type.COLLECTION, value: selector.collection() }] }); } else if (fn$6(selector)) { this.addQuery({ checks: [{ type: Type.FILTER, value: selector }] }); } else if (string(selector)) { if (!this.parse(selector)) { this.invalid = true; } } else { error('A selector must be created from a string; found '); } }; var selfn = Selector.prototype; [parse$1, matching].forEach(function (p) { return extend(selfn, p); }); selfn.text = function () { return this.inputText; }; selfn.size = function () { return this.length; }; selfn.eq = function (i) { return this[i]; }; selfn.sameText = function (otherSel) { return !this.invalid && !otherSel.invalid && this.text() === otherSel.text(); }; selfn.addQuery = function (q) { this[this.length++] = q; }; selfn.selector = selfn.toString; var elesfn$g = { allAre: function allAre(selector) { var selObj = new Selector(selector); return this.every(function (ele) { return selObj.matches(ele); }); }, is: function is(selector) { var selObj = new Selector(selector); return this.some(function (ele) { return selObj.matches(ele); }); }, some: function some(fn, thisArg) { for (var i = 0; i < this.length; i++) { var ret = !thisArg ? fn(this[i], i, this) : fn.apply(thisArg, [this[i], i, this]); if (ret) { return true; } } return false; }, every: function every(fn, thisArg) { for (var i = 0; i < this.length; i++) { var ret = !thisArg ? fn(this[i], i, this) : fn.apply(thisArg, [this[i], i, this]); if (!ret) { return false; } } return true; }, same: function same(collection) { // cheap collection ref check if (this === collection) { return true; } collection = this.cy().collection(collection); var thisLength = this.length; var collectionLength = collection.length; // cheap length check if (thisLength !== collectionLength) { return false; } // cheap element ref check if (thisLength === 1) { return this[0] === collection[0]; } return this.every(function (ele) { return collection.hasElementWithId(ele.id()); }); }, anySame: function anySame(collection) { collection = this.cy().collection(collection); return this.some(function (ele) { return collection.hasElementWithId(ele.id()); }); }, allAreNeighbors: function allAreNeighbors(collection) { collection = this.cy().collection(collection); var nhood = this.neighborhood(); return collection.every(function (ele) { return nhood.hasElementWithId(ele.id()); }); }, contains: function contains(collection) { collection = this.cy().collection(collection); var self = this; return collection.every(function (ele) { return self.hasElementWithId(ele.id()); }); } }; elesfn$g.allAreNeighbours = elesfn$g.allAreNeighbors; elesfn$g.has = elesfn$g.contains; elesfn$g.equal = elesfn$g.equals = elesfn$g.same; var cache = function cache(fn, name) { return function traversalCache(arg1, arg2, arg3, arg4) { var selectorOrEles = arg1; var eles = this; var key; if (selectorOrEles == null) { key = ''; } else if (elementOrCollection(selectorOrEles) && selectorOrEles.length === 1) { key = selectorOrEles.id(); } if (eles.length === 1 && key) { var _p = eles[0]._private; var tch = _p.traversalCache = _p.traversalCache || {}; var ch = tch[name] = tch[name] || []; var hash = hashString(key); var cacheHit = ch[hash]; if (cacheHit) { return cacheHit; } else { return ch[hash] = fn.call(eles, arg1, arg2, arg3, arg4); } } else { return fn.call(eles, arg1, arg2, arg3, arg4); } }; }; var elesfn$f = { parent: function parent(selector) { var parents = []; // optimisation for single ele call if (this.length === 1) { var parent = this[0]._private.parent; if (parent) { return parent; } } for (var i = 0; i < this.length; i++) { var ele = this[i]; var _parent = ele._private.parent; if (_parent) { parents.push(_parent); } } return this.spawn(parents, true).filter(selector); }, parents: function parents(selector) { var parents = []; var eles = this.parent(); while (eles.nonempty()) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; parents.push(ele); } eles = eles.parent(); } return this.spawn(parents, true).filter(selector); }, commonAncestors: function commonAncestors(selector) { var ancestors; for (var i = 0; i < this.length; i++) { var ele = this[i]; var parents = ele.parents(); ancestors = ancestors || parents; ancestors = ancestors.intersect(parents); // current list must be common with current ele parents set } return ancestors.filter(selector); }, orphans: function orphans(selector) { return this.stdFilter(function (ele) { return ele.isOrphan(); }).filter(selector); }, nonorphans: function nonorphans(selector) { return this.stdFilter(function (ele) { return ele.isChild(); }).filter(selector); }, children: cache(function (selector) { var children = []; for (var i = 0; i < this.length; i++) { var ele = this[i]; var eleChildren = ele._private.children; for (var j = 0; j < eleChildren.length; j++) { children.push(eleChildren[j]); } } return this.spawn(children, true).filter(selector); }, 'children'), siblings: function siblings(selector) { return this.parent().children().not(this).filter(selector); }, isParent: function isParent() { var ele = this[0]; if (ele) { return ele.isNode() && ele._private.children.length !== 0; } }, isChildless: function isChildless() { var ele = this[0]; if (ele) { return ele.isNode() && ele._private.children.length === 0; } }, isChild: function isChild() { var ele = this[0]; if (ele) { return ele.isNode() && ele._private.parent != null; } }, isOrphan: function isOrphan() { var ele = this[0]; if (ele) { return ele.isNode() && ele._private.parent == null; } }, descendants: function descendants(selector) { var elements = []; function add(eles) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; elements.push(ele); if (ele.children().nonempty()) { add(ele.children()); } } } add(this.children()); return this.spawn(elements, true).filter(selector); } }; function forEachCompound(eles, fn, includeSelf, recursiveStep) { var q = []; var did = new Set$1(); var cy = eles.cy(); var hasCompounds = cy.hasCompoundNodes(); for (var i = 0; i < eles.length; i++) { var ele = eles[i]; if (includeSelf) { q.push(ele); } else if (hasCompounds) { recursiveStep(q, did, ele); } } while (q.length > 0) { var _ele = q.shift(); fn(_ele); did.add(_ele.id()); if (hasCompounds) { recursiveStep(q, did, _ele); } } return eles; } function addChildren(q, did, ele) { if (ele.isParent()) { var children = ele._private.children; for (var i = 0; i < children.length; i++) { var child = children[i]; if (!did.has(child.id())) { q.push(child); } } } } // very efficient version of eles.add( eles.descendants() ).forEach() // for internal use elesfn$f.forEachDown = function (fn) { var includeSelf = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; return forEachCompound(this, fn, includeSelf, addChildren); }; function addParent(q, did, ele) { if (ele.isChild()) { var parent = ele._private.parent; if (!did.has(parent.id())) { q.push(parent); } } } elesfn$f.forEachUp = function (fn) { var includeSelf = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; return forEachCompound(this, fn, includeSelf, addParent); }; function addParentAndChildren(q, did, ele) { addParent(q, did, ele); addChildren(q, did, ele); } elesfn$f.forEachUpAndDown = function (fn) { var includeSelf = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; return forEachCompound(this, fn, includeSelf, addParentAndChildren); }; // aliases elesfn$f.ancestors = elesfn$f.parents; var fn$5, elesfn$e; fn$5 = elesfn$e = { data: define.data({ field: 'data', bindingEvent: 'data', allowBinding: true, allowSetting: true, settingEvent: 'data', settingTriggersEvent: true, triggerFnName: 'trigger', allowGetting: true, immutableKeys: { 'id': true, 'source': true, 'target': true, 'parent': true }, updateStyle: true }), removeData: define.removeData({ field: 'data', event: 'data', triggerFnName: 'trigger', triggerEvent: true, immutableKeys: { 'id': true, 'source': true, 'target': true, 'parent': true }, updateStyle: true }), scratch: define.data({ field: 'scratch', bindingEvent: 'scratch', allowBinding: true, allowSetting: true, settingEvent: 'scratch', settingTriggersEvent: true, triggerFnName: 'trigger', allowGetting: true, updateStyle: true }), removeScratch: define.removeData({ field: 'scratch', event: 'scratch', triggerFnName: 'trigger', triggerEvent: true, updateStyle: true }), rscratch: define.data({ field: 'rscratch', allowBinding: false, allowSetting: true, settingTriggersEvent: false, allowGetting: true }), removeRscratch: define.removeData({ field: 'rscratch', triggerEvent: false }), id: function id() { var ele = this[0]; if (ele) { return ele._private.data.id; } } }; // aliases fn$5.attr = fn$5.data; fn$5.removeAttr = fn$5.removeData; var data = elesfn$e; var elesfn$d = {}; function defineDegreeFunction(callback) { return function (includeLoops) { var self = this; if (includeLoops === undefined) { includeLoops = true; } if (self.length === 0) { return; } if (self.isNode() && !self.removed()) { var degree = 0; var node = self[0]; var connectedEdges = node._private.edges; for (var i = 0; i < connectedEdges.length; i++) { var edge = connectedEdges[i]; if (!includeLoops && edge.isLoop()) { continue; } degree += callback(node, edge); } return degree; } else { return; } }; } extend(elesfn$d, { degree: defineDegreeFunction(function (node, edge) { if (edge.source().same(edge.target())) { return 2; } else { return 1; } }), indegree: defineDegreeFunction(function (node, edge) { if (edge.target().same(node)) { return 1; } else { return 0; } }), outdegree: defineDegreeFunction(function (node, edge) { if (edge.source().same(node)) { return 1; } else { return 0; } }) }); function defineDegreeBoundsFunction(degreeFn, callback) { return function (includeLoops) { var ret; var nodes = this.nodes(); for (var i = 0; i < nodes.length; i++) { var ele = nodes[i]; var degree = ele[degreeFn](includeLoops); if (degree !== undefined && (ret === undefined || callback(degree, ret))) { ret = degree; } } return ret; }; } extend(elesfn$d, { minDegree: defineDegreeBoundsFunction('degree', function (degree, min) { return degree < min; }), maxDegree: defineDegreeBoundsFunction('degree', function (degree, max) { return degree > max; }), minIndegree: defineDegreeBoundsFunction('indegree', function (degree, min) { return degree < min; }), maxIndegree: defineDegreeBoundsFunction('indegree', function (degree, max) { return degree > max; }), minOutdegree: defineDegreeBoundsFunction('outdegree', function (degree, min) { return degree < min; }), maxOutdegree: defineDegreeBoundsFunction('outdegree', function (degree, max) { return degree > max; }) }); extend(elesfn$d, { totalDegree: function totalDegree(includeLoops) { var total = 0; var nodes = this.nodes(); for (var i = 0; i < nodes.length; i++) { total += nodes[i].degree(includeLoops); } return total; } }); var fn$4, elesfn$c; var beforePositionSet = function beforePositionSet(eles, newPos, silent) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; if (!ele.locked()) { var oldPos = ele._private.position; var delta = { x: newPos.x != null ? newPos.x - oldPos.x : 0, y: newPos.y != null ? newPos.y - oldPos.y : 0 }; if (ele.isParent() && !(delta.x === 0 && delta.y === 0)) { ele.children().shift(delta, silent); } ele.dirtyBoundingBoxCache(); } } }; var positionDef = { field: 'position', bindingEvent: 'position', allowBinding: true, allowSetting: true, settingEvent: 'position', settingTriggersEvent: true, triggerFnName: 'emitAndNotify', allowGetting: true, validKeys: ['x', 'y'], beforeGet: function beforeGet(ele) { ele.updateCompoundBounds(); }, beforeSet: function beforeSet(eles, newPos) { beforePositionSet(eles, newPos, false); }, onSet: function onSet(eles) { eles.dirtyCompoundBoundsCache(); }, canSet: function canSet(ele) { return !ele.locked(); } }; fn$4 = elesfn$c = { position: define.data(positionDef), // position but no notification to renderer silentPosition: define.data(extend({}, positionDef, { allowBinding: false, allowSetting: true, settingTriggersEvent: false, allowGetting: false, beforeSet: function beforeSet(eles, newPos) { beforePositionSet(eles, newPos, true); }, onSet: function onSet(eles) { eles.dirtyCompoundBoundsCache(); } })), positions: function positions(pos, silent) { if (plainObject(pos)) { if (silent) { this.silentPosition(pos); } else { this.position(pos); } } else if (fn$6(pos)) { var _fn = pos; var cy = this.cy(); cy.startBatch(); for (var i = 0; i < this.length; i++) { var ele = this[i]; var _pos = void 0; if (_pos = _fn(ele, i)) { if (silent) { ele.silentPosition(_pos); } else { ele.position(_pos); } } } cy.endBatch(); } return this; // chaining }, silentPositions: function silentPositions(pos) { return this.positions(pos, true); }, shift: function shift(dim, val, silent) { var delta; if (plainObject(dim)) { delta = { x: number$1(dim.x) ? dim.x : 0, y: number$1(dim.y) ? dim.y : 0 }; silent = val; } else if (string(dim) && number$1(val)) { delta = { x: 0, y: 0 }; delta[dim] = val; } if (delta != null) { var cy = this.cy(); cy.startBatch(); for (var i = 0; i < this.length; i++) { var ele = this[i]; // exclude any node that is a descendant of the calling collection if (cy.hasCompoundNodes() && ele.isChild() && ele.ancestors().anySame(this)) { continue; } var pos = ele.position(); var newPos = { x: pos.x + delta.x, y: pos.y + delta.y }; if (silent) { ele.silentPosition(newPos); } else { ele.position(newPos); } } cy.endBatch(); } return this; }, silentShift: function silentShift(dim, val) { if (plainObject(dim)) { this.shift(dim, true); } else if (string(dim) && number$1(val)) { this.shift(dim, val, true); } return this; }, // get/set the rendered (i.e. on screen) positon of the element renderedPosition: function renderedPosition(dim, val) { var ele = this[0]; var cy = this.cy(); var zoom = cy.zoom(); var pan = cy.pan(); var rpos = plainObject(dim) ? dim : undefined; var setting = rpos !== undefined || val !== undefined && string(dim); if (ele && ele.isNode()) { // must have an element and must be a node to return position if (setting) { for (var i = 0; i < this.length; i++) { var _ele = this[i]; if (val !== undefined) { // set one dimension _ele.position(dim, (val - pan[dim]) / zoom); } else if (rpos !== undefined) { // set whole position _ele.position(renderedToModelPosition(rpos, zoom, pan)); } } } else { // getting var pos = ele.position(); rpos = modelToRenderedPosition(pos, zoom, pan); if (dim === undefined) { // then return the whole rendered position return rpos; } else { // then return the specified dimension return rpos[dim]; } } } else if (!setting) { return undefined; // for empty collection case } return this; // chaining }, // get/set the position relative to the parent relativePosition: function relativePosition(dim, val) { var ele = this[0]; var cy = this.cy(); var ppos = plainObject(dim) ? dim : undefined; var setting = ppos !== undefined || val !== undefined && string(dim); var hasCompoundNodes = cy.hasCompoundNodes(); if (ele && ele.isNode()) { // must have an element and must be a node to return position if (setting) { for (var i = 0; i < this.length; i++) { var _ele2 = this[i]; var parent = hasCompoundNodes ? _ele2.parent() : null; var hasParent = parent && parent.length > 0; var relativeToParent = hasParent; if (hasParent) { parent = parent[0]; } var origin = relativeToParent ? parent.position() : { x: 0, y: 0 }; if (val !== undefined) { // set one dimension _ele2.position(dim, val + origin[dim]); } else if (ppos !== undefined) { // set whole position _ele2.position({ x: ppos.x + origin.x, y: ppos.y + origin.y }); } } } else { // getting var pos = ele.position(); var _parent = hasCompoundNodes ? ele.parent() : null; var _hasParent = _parent && _parent.length > 0; var _relativeToParent = _hasParent; if (_hasParent) { _parent = _parent[0]; } var _origin = _relativeToParent ? _parent.position() : { x: 0, y: 0 }; ppos = { x: pos.x - _origin.x, y: pos.y - _origin.y }; if (dim === undefined) { // then return the whole rendered position return ppos; } else { // then return the specified dimension return ppos[dim]; } } } else if (!setting) { return undefined; // for empty collection case } return this; // chaining } }; // aliases fn$4.modelPosition = fn$4.point = fn$4.position; fn$4.modelPositions = fn$4.points = fn$4.positions; fn$4.renderedPoint = fn$4.renderedPosition; fn$4.relativePoint = fn$4.relativePosition; var position = elesfn$c; var fn$3, elesfn$b; fn$3 = elesfn$b = {}; elesfn$b.renderedBoundingBox = function (options) { var bb = this.boundingBox(options); var cy = this.cy(); var zoom = cy.zoom(); var pan = cy.pan(); var x1 = bb.x1 * zoom + pan.x; var x2 = bb.x2 * zoom + pan.x; var y1 = bb.y1 * zoom + pan.y; var y2 = bb.y2 * zoom + pan.y; return { x1: x1, x2: x2, y1: y1, y2: y2, w: x2 - x1, h: y2 - y1 }; }; elesfn$b.dirtyCompoundBoundsCache = function () { var silent = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false; var cy = this.cy(); if (!cy.styleEnabled() || !cy.hasCompoundNodes()) { return this; } this.forEachUp(function (ele) { if (ele.isParent()) { var _p = ele._private; _p.compoundBoundsClean = false; _p.bbCache = null; if (!silent) { ele.emitAndNotify('bounds'); } } }); return this; }; elesfn$b.updateCompoundBounds = function () { var force = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false; var cy = this.cy(); // not possible to do on non-compound graphs or with the style disabled if (!cy.styleEnabled() || !cy.hasCompoundNodes()) { return this; } // save cycles when batching -- but bounds will be stale (or not exist yet) if (!force && cy.batching()) { return this; } function update(parent) { if (!parent.isParent()) { return; } var _p = parent._private; var children = parent.children(); var includeLabels = parent.pstyle('compound-sizing-wrt-labels').value === 'include'; var min = { width: { val: parent.pstyle('min-width').pfValue, left: parent.pstyle('min-width-bias-left'), right: parent.pstyle('min-width-bias-right') }, height: { val: parent.pstyle('min-height').pfValue, top: parent.pstyle('min-height-bias-top'), bottom: parent.pstyle('min-height-bias-bottom') } }; var bb = children.boundingBox({ includeLabels: includeLabels, includeOverlays: false, // updating the compound bounds happens outside of the regular // cache cycle (i.e. before fired events) useCache: false }); var pos = _p.position; // if children take up zero area then keep position and fall back on stylesheet w/h if (bb.w === 0 || bb.h === 0) { bb = { w: parent.pstyle('width').pfValue, h: parent.pstyle('height').pfValue }; bb.x1 = pos.x - bb.w / 2; bb.x2 = pos.x + bb.w / 2; bb.y1 = pos.y - bb.h / 2; bb.y2 = pos.y + bb.h / 2; } function computeBiasValues(propDiff, propBias, propBiasComplement) { var biasDiff = 0; var biasComplementDiff = 0; var biasTotal = propBias + propBiasComplement; if (propDiff > 0 && biasTotal > 0) { biasDiff = propBias / biasTotal * propDiff; biasComplementDiff = propBiasComplement / biasTotal * propDiff; } return { biasDiff: biasDiff, biasComplementDiff: biasComplementDiff }; } function computePaddingValues(width, height, paddingObject, relativeTo) { // Assuming percentage is number from 0 to 1 if (paddingObject.units === '%') { switch (relativeTo) { case 'width': return width > 0 ? paddingObject.pfValue * width : 0; case 'height': return height > 0 ? paddingObject.pfValue * height : 0; case 'average': return width > 0 && height > 0 ? paddingObject.pfValue * (width + height) / 2 : 0; case 'min': return width > 0 && height > 0 ? width > height ? paddingObject.pfValue * height : paddingObject.pfValue * width : 0; case 'max': return width > 0 && height > 0 ? width > height ? paddingObject.pfValue * width : paddingObject.pfValue * height : 0; default: return 0; } } else if (paddingObject.units === 'px') { return paddingObject.pfValue; } else { return 0; } } var leftVal = min.width.left.value; if (min.width.left.units === 'px' && min.width.val > 0) { leftVal = leftVal * 100 / min.width.val; } var rightVal = min.width.right.value; if (min.width.right.units === 'px' && min.width.val > 0) { rightVal = rightVal * 100 / min.width.val; } var topVal = min.height.top.value; if (min.height.top.units === 'px' && min.height.val > 0) { topVal = topVal * 100 / min.height.val; } var bottomVal = min.height.bottom.value; if (min.height.bottom.units === 'px' && min.height.val > 0) { bottomVal = bottomVal * 100 / min.height.val; } var widthBiasDiffs = computeBiasValues(min.width.val - bb.w, leftVal, rightVal); var diffLeft = widthBiasDiffs.biasDiff; var diffRight = widthBiasDiffs.biasComplementDiff; var heightBiasDiffs = computeBiasValues(min.height.val - bb.h, topVal, bottomVal); var diffTop = heightBiasDiffs.biasDiff; var diffBottom = heightBiasDiffs.biasComplementDiff; _p.autoPadding = computePaddingValues(bb.w, bb.h, parent.pstyle('padding'), parent.pstyle('padding-relative-to').value); _p.autoWidth = Math.max(bb.w, min.width.val); pos.x = (-diffLeft + bb.x1 + bb.x2 + diffRight) / 2; _p.autoHeight = Math.max(bb.h, min.height.val); pos.y = (-diffTop + bb.y1 + bb.y2 + diffBottom) / 2; } for (var i = 0; i < this.length; i++) { var ele = this[i]; var _p = ele._private; if (!_p.compoundBoundsClean || force) { update(ele); if (!cy.batching()) { _p.compoundBoundsClean = true; } } } return this; }; var noninf = function noninf(x) { if (x === Infinity || x === -Infinity) { return 0; } return x; }; var updateBounds = function updateBounds(b, x1, y1, x2, y2) { // don't update with zero area boxes if (x2 - x1 === 0 || y2 - y1 === 0) { return; } // don't update with null dim if (x1 == null || y1 == null || x2 == null || y2 == null) { return; } b.x1 = x1 < b.x1 ? x1 : b.x1; b.x2 = x2 > b.x2 ? x2 : b.x2; b.y1 = y1 < b.y1 ? y1 : b.y1; b.y2 = y2 > b.y2 ? y2 : b.y2; b.w = b.x2 - b.x1; b.h = b.y2 - b.y1; }; var updateBoundsFromBox = function updateBoundsFromBox(b, b2) { if (b2 == null) { return b; } return updateBounds(b, b2.x1, b2.y1, b2.x2, b2.y2); }; var prefixedProperty = function prefixedProperty(obj, field, prefix) { return getPrefixedProperty(obj, field, prefix); }; var updateBoundsFromArrow = function updateBoundsFromArrow(bounds, ele, prefix) { if (ele.cy().headless()) { return; } var _p = ele._private; var rstyle = _p.rstyle; var halfArW = rstyle.arrowWidth / 2; var arrowType = ele.pstyle(prefix + '-arrow-shape').value; var x; var y; if (arrowType !== 'none') { if (prefix === 'source') { x = rstyle.srcX; y = rstyle.srcY; } else if (prefix === 'target') { x = rstyle.tgtX; y = rstyle.tgtY; } else { x = rstyle.midX; y = rstyle.midY; } // always store the individual arrow bounds var bbs = _p.arrowBounds = _p.arrowBounds || {}; var bb = bbs[prefix] = bbs[prefix] || {}; bb.x1 = x - halfArW; bb.y1 = y - halfArW; bb.x2 = x + halfArW; bb.y2 = y + halfArW; bb.w = bb.x2 - bb.x1; bb.h = bb.y2 - bb.y1; expandBoundingBox(bb, 1); updateBounds(bounds, bb.x1, bb.y1, bb.x2, bb.y2); } }; var updateBoundsFromLabel = function updateBoundsFromLabel(bounds, ele, prefix) { if (ele.cy().headless()) { return; } var prefixDash; if (prefix) { prefixDash = prefix + '-'; } else { prefixDash = ''; } var _p = ele._private; var rstyle = _p.rstyle; var label = ele.pstyle(prefixDash + 'label').strValue; if (label) { var halign = ele.pstyle('text-halign'); var valign = ele.pstyle('text-valign'); var labelWidth = prefixedProperty(rstyle, 'labelWidth', prefix); var labelHeight = prefixedProperty(rstyle, 'labelHeight', prefix); var labelX = prefixedProperty(rstyle, 'labelX', prefix); var labelY = prefixedProperty(rstyle, 'labelY', prefix); var marginX = ele.pstyle(prefixDash + 'text-margin-x').pfValue; var marginY = ele.pstyle(prefixDash + 'text-margin-y').pfValue; var isEdge = ele.isEdge(); var rotation = ele.pstyle(prefixDash + 'text-rotation'); var outlineWidth = ele.pstyle('text-outline-width').pfValue; var borderWidth = ele.pstyle('text-border-width').pfValue; var halfBorderWidth = borderWidth / 2; var padding = ele.pstyle('text-background-padding').pfValue; var marginOfError = 2; // expand to work around browser dimension inaccuracies var lh = labelHeight; var lw = labelWidth; var lw_2 = lw / 2; var lh_2 = lh / 2; var lx1, lx2, ly1, ly2; if (isEdge) { lx1 = labelX - lw_2; lx2 = labelX + lw_2; ly1 = labelY - lh_2; ly2 = labelY + lh_2; } else { switch (halign.value) { case 'left': lx1 = labelX - lw; lx2 = labelX; break; case 'center': lx1 = labelX - lw_2; lx2 = labelX + lw_2; break; case 'right': lx1 = labelX; lx2 = labelX + lw; break; } switch (valign.value) { case 'top': ly1 = labelY - lh; ly2 = labelY; break; case 'center': ly1 = labelY - lh_2; ly2 = labelY + lh_2; break; case 'bottom': ly1 = labelY; ly2 = labelY + lh; break; } } // shift by margin and expand by outline and border lx1 += marginX - Math.max(outlineWidth, halfBorderWidth) - padding - marginOfError; lx2 += marginX + Math.max(outlineWidth, halfBorderWidth) + padding + marginOfError; ly1 += marginY - Math.max(outlineWidth, halfBorderWidth) - padding - marginOfError; ly2 += marginY + Math.max(outlineWidth, halfBorderWidth) + padding + marginOfError; // always store the unrotated label bounds separately var bbPrefix = prefix || 'main'; var bbs = _p.labelBounds; var bb = bbs[bbPrefix] = bbs[bbPrefix] || {}; bb.x1 = lx1; bb.y1 = ly1; bb.x2 = lx2; bb.y2 = ly2; bb.w = lx2 - lx1; bb.h = ly2 - ly1; var isAutorotate = isEdge && rotation.strValue === 'autorotate'; var isPfValue = rotation.pfValue != null && rotation.pfValue !== 0; if (isAutorotate || isPfValue) { var theta = isAutorotate ? prefixedProperty(_p.rstyle, 'labelAngle', prefix) : rotation.pfValue; var cos = Math.cos(theta); var sin = Math.sin(theta); // rotation point (default value for center-center) var xo = (lx1 + lx2) / 2; var yo = (ly1 + ly2) / 2; if (!isEdge) { switch (halign.value) { case 'left': xo = lx2; break; case 'right': xo = lx1; break; } switch (valign.value) { case 'top': yo = ly2; break; case 'bottom': yo = ly1; break; } } var rotate = function rotate(x, y) { x = x - xo; y = y - yo; return { x: x * cos - y * sin + xo, y: x * sin + y * cos + yo }; }; var px1y1 = rotate(lx1, ly1); var px1y2 = rotate(lx1, ly2); var px2y1 = rotate(lx2, ly1); var px2y2 = rotate(lx2, ly2); lx1 = Math.min(px1y1.x, px1y2.x, px2y1.x, px2y2.x); lx2 = Math.max(px1y1.x, px1y2.x, px2y1.x, px2y2.x); ly1 = Math.min(px1y1.y, px1y2.y, px2y1.y, px2y2.y); ly2 = Math.max(px1y1.y, px1y2.y, px2y1.y, px2y2.y); } var bbPrefixRot = bbPrefix + 'Rot'; var bbRot = bbs[bbPrefixRot] = bbs[bbPrefixRot] || {}; bbRot.x1 = lx1; bbRot.y1 = ly1; bbRot.x2 = lx2; bbRot.y2 = ly2; bbRot.w = lx2 - lx1; bbRot.h = ly2 - ly1; updateBounds(bounds, lx1, ly1, lx2, ly2); updateBounds(_p.labelBounds.all, lx1, ly1, lx2, ly2); } return bounds; }; var updateBoundsFromOutline = function updateBoundsFromOutline(bounds, ele) { if (ele.cy().headless()) { return; } var outlineOpacity = ele.pstyle('outline-opacity').value; var outlineWidth = ele.pstyle('outline-width').value; if (outlineOpacity > 0 && outlineWidth > 0) { var outlineOffset = ele.pstyle('outline-offset').value; var nodeShape = ele.pstyle('shape').value; var outlineSize = outlineWidth + outlineOffset; var scaleX = (bounds.w + outlineSize * 2) / bounds.w; var scaleY = (bounds.h + outlineSize * 2) / bounds.h; var xOffset = 0; var yOffset = 0; if (["diamond", "pentagon", "round-triangle"].includes(nodeShape)) { scaleX = (bounds.w + outlineSize * 2.4) / bounds.w; yOffset = -outlineSize / 3.6; } else if (["concave-hexagon", "rhomboid", "right-rhomboid"].includes(nodeShape)) { scaleX = (bounds.w + outlineSize * 2.4) / bounds.w; } else if (nodeShape === "star") { scaleX = (bounds.w + outlineSize * 2.8) / bounds.w; scaleY = (bounds.h + outlineSize * 2.6) / bounds.h; yOffset = -outlineSize / 3.8; } else if (nodeShape === "triangle") { scaleX = (bounds.w + outlineSize * 2.8) / bounds.w; scaleY = (bounds.h + outlineSize * 2.4) / bounds.h; yOffset = -outlineSize / 1.4; } else if (nodeShape === "vee") { scaleX = (bounds.w + outlineSize * 4.4) / bounds.w; scaleY = (bounds.h + outlineSize * 3.8) / bounds.h; yOffset = -outlineSize * .5; } var hDelta = bounds.h * scaleY - bounds.h; var wDelta = bounds.w * scaleX - bounds.w; expandBoundingBoxSides(bounds, [Math.ceil(hDelta / 2), Math.ceil(wDelta / 2)]); if (xOffset != 0 || yOffset !== 0) { var oBounds = shiftBoundingBox(bounds, xOffset, yOffset); updateBoundingBox(bounds, oBounds); } } }; // get the bounding box of the elements (in raw model position) var boundingBoxImpl = function boundingBoxImpl(ele, options) { var cy = ele._private.cy; var styleEnabled = cy.styleEnabled(); var headless = cy.headless(); var bounds = makeBoundingBox(); var _p = ele._private; var isNode = ele.isNode(); var isEdge = ele.isEdge(); var ex1, ex2, ey1, ey2; // extrema of body / lines var x, y; // node pos var rstyle = _p.rstyle; var manualExpansion = isNode && styleEnabled ? ele.pstyle('bounds-expansion').pfValue : [0]; // must use `display` prop only, as reading `compound.width()` causes recursion // (other factors like width values will be considered later in this function anyway) var isDisplayed = function isDisplayed(ele) { return ele.pstyle('display').value !== 'none'; }; var displayed = !styleEnabled || isDisplayed(ele) // must take into account connected nodes b/c of implicit edge hiding on display:none node && (!isEdge || isDisplayed(ele.source()) && isDisplayed(ele.target())); if (displayed) { // displayed suffices, since we will find zero area eles anyway var overlayOpacity = 0; var overlayPadding = 0; if (styleEnabled && options.includeOverlays) { overlayOpacity = ele.pstyle('overlay-opacity').value; if (overlayOpacity !== 0) { overlayPadding = ele.pstyle('overlay-padding').value; } } var underlayOpacity = 0; var underlayPadding = 0; if (styleEnabled && options.includeUnderlays) { underlayOpacity = ele.pstyle('underlay-opacity').value; if (underlayOpacity !== 0) { underlayPadding = ele.pstyle('underlay-padding').value; } } var padding = Math.max(overlayPadding, underlayPadding); var w = 0; var wHalf = 0; if (styleEnabled) { w = ele.pstyle('width').pfValue; wHalf = w / 2; } if (isNode && options.includeNodes) { var pos = ele.position(); x = pos.x; y = pos.y; var _w = ele.outerWidth(); var halfW = _w / 2; var h = ele.outerHeight(); var halfH = h / 2; // handle node dimensions ///////////////////////// ex1 = x - halfW; ex2 = x + halfW; ey1 = y - halfH; ey2 = y + halfH; updateBounds(bounds, ex1, ey1, ex2, ey2); if (styleEnabled && options.includeOutlines) { updateBoundsFromOutline(bounds, ele); } } else if (isEdge && options.includeEdges) { if (styleEnabled && !headless) { var curveStyle = ele.pstyle('curve-style').strValue; // handle edge dimensions (rough box estimate) ////////////////////////////////////////////// ex1 = Math.min(rstyle.srcX, rstyle.midX, rstyle.tgtX); ex2 = Math.max(rstyle.srcX, rstyle.midX, rstyle.tgtX); ey1 = Math.min(rstyle.srcY, rstyle.midY, rstyle.tgtY); ey2 = Math.max(rstyle.srcY, rstyle.midY, rstyle.tgtY); // take into account edge width ex1 -= wHalf; ex2 += wHalf; ey1 -= wHalf; ey2 += wHalf; updateBounds(bounds, ex1, ey1, ex2, ey2); // precise edges //////////////// if (curveStyle === 'haystack') { var hpts = rstyle.haystackPts; if (hpts && hpts.length === 2) { ex1 = hpts[0].x; ey1 = hpts[0].y; ex2 = hpts[1].x; ey2 = hpts[1].y; if (ex1 > ex2) { var temp = ex1; ex1 = ex2; ex2 = temp; } if (ey1 > ey2) { var _temp = ey1; ey1 = ey2; ey2 = _temp; } updateBounds(bounds, ex1 - wHalf, ey1 - wHalf, ex2 + wHalf, ey2 + wHalf); } } else if (curveStyle === 'bezier' || curveStyle === 'unbundled-bezier' || curveStyle.endsWith('segments') || curveStyle.endsWith('taxi')) { var pts; switch (curveStyle) { case 'bezier': case 'unbundled-bezier': pts = rstyle.bezierPts; break; case 'segments': case 'taxi': case 'round-segments': case 'round-taxi': pts = rstyle.linePts; break; } if (pts != null) { for (var j = 0; j < pts.length; j++) { var pt = pts[j]; ex1 = pt.x - wHalf; ex2 = pt.x + wHalf; ey1 = pt.y - wHalf; ey2 = pt.y + wHalf; updateBounds(bounds, ex1, ey1, ex2, ey2); } } } // bezier-like or segment-like edge } else { // headless or style disabled // fallback on source and target positions ////////////////////////////////////////// var n1 = ele.source(); var n1pos = n1.position(); var n2 = ele.target(); var n2pos = n2.position(); ex1 = n1pos.x; ex2 = n2pos.x; ey1 = n1pos.y; ey2 = n2pos.y; if (ex1 > ex2) { var _temp2 = ex1; ex1 = ex2; ex2 = _temp2; } if (ey1 > ey2) { var _temp3 = ey1; ey1 = ey2; ey2 = _temp3; } // take into account edge width ex1 -= wHalf; ex2 += wHalf; ey1 -= wHalf; ey2 += wHalf; updateBounds(bounds, ex1, ey1, ex2, ey2); } // headless or style disabled } // edges // handle edge arrow size ///////////////////////// if (styleEnabled && options.includeEdges && isEdge) { updateBoundsFromArrow(bounds, ele, 'mid-source'); updateBoundsFromArrow(bounds, ele, 'mid-target'); updateBoundsFromArrow(bounds, ele, 'source'); updateBoundsFromArrow(bounds, ele, 'target'); } // ghost //////// if (styleEnabled) { var ghost = ele.pstyle('ghost').value === 'yes'; if (ghost) { var gx = ele.pstyle('ghost-offset-x').pfValue; var gy = ele.pstyle('ghost-offset-y').pfValue; updateBounds(bounds, bounds.x1 + gx, bounds.y1 + gy, bounds.x2 + gx, bounds.y2 + gy); } } // always store the body bounds separately from the labels var bbBody = _p.bodyBounds = _p.bodyBounds || {}; assignBoundingBox(bbBody, bounds); expandBoundingBoxSides(bbBody, manualExpansion); expandBoundingBox(bbBody, 1); // expand to work around browser dimension inaccuracies // overlay ////////// if (styleEnabled) { ex1 = bounds.x1; ex2 = bounds.x2; ey1 = bounds.y1; ey2 = bounds.y2; updateBounds(bounds, ex1 - padding, ey1 - padding, ex2 + padding, ey2 + padding); } // always store the body bounds separately from the labels var bbOverlay = _p.overlayBounds = _p.overlayBounds || {}; assignBoundingBox(bbOverlay, bounds); expandBoundingBoxSides(bbOverlay, manualExpansion); expandBoundingBox(bbOverlay, 1); // expand to work around browser dimension inaccuracies // handle label dimensions ////////////////////////// var bbLabels = _p.labelBounds = _p.labelBounds || {}; if (bbLabels.all != null) { clearBoundingBox(bbLabels.all); } else { bbLabels.all = makeBoundingBox(); } if (styleEnabled && options.includeLabels) { if (options.includeMainLabels) { updateBoundsFromLabel(bounds, ele, null); } if (isEdge) { if (options.includeSourceLabels) { updateBoundsFromLabel(bounds, ele, 'source'); } if (options.includeTargetLabels) { updateBoundsFromLabel(bounds, ele, 'target'); } } } // style enabled for labels } // if displayed bounds.x1 = noninf(bounds.x1); bounds.y1 = noninf(bounds.y1); bounds.x2 = noninf(bounds.x2); bounds.y2 = noninf(bounds.y2); bounds.w = noninf(bounds.x2 - bounds.x1); bounds.h = noninf(bounds.y2 - bounds.y1); if (bounds.w > 0 && bounds.h > 0 && displayed) { expandBoundingBoxSides(bounds, manualExpansion); // expand bounds by 1 because antialiasing can increase the visual/effective size by 1 on all sides expandBoundingBox(bounds, 1); } return bounds; }; var getKey = function getKey(opts) { var i = 0; var tf = function tf(val) { return (val ? 1 : 0) << i++; }; var key = 0; key += tf(opts.incudeNodes); key += tf(opts.includeEdges); key += tf(opts.includeLabels); key += tf(opts.includeMainLabels); key += tf(opts.includeSourceLabels); key += tf(opts.includeTargetLabels); key += tf(opts.includeOverlays); key += tf(opts.includeOutlines); return key; }; var getBoundingBoxPosKey = function getBoundingBoxPosKey(ele) { if (ele.isEdge()) { var p1 = ele.source().position(); var p2 = ele.target().position(); var r = function r(x) { return Math.round(x); }; return hashIntsArray([r(p1.x), r(p1.y), r(p2.x), r(p2.y)]); } else { return 0; } }; var cachedBoundingBoxImpl = function cachedBoundingBoxImpl(ele, opts) { var _p = ele._private; var bb; var isEdge = ele.isEdge(); var key = opts == null ? defBbOptsKey : getKey(opts); var usingDefOpts = key === defBbOptsKey; var currPosKey = getBoundingBoxPosKey(ele); var isPosKeySame = _p.bbCachePosKey === currPosKey; var useCache = opts.useCache && isPosKeySame; var isDirty = function isDirty(ele) { return ele._private.bbCache == null || ele._private.styleDirty; }; var needRecalc = !useCache || isDirty(ele) || isEdge && isDirty(ele.source()) || isDirty(ele.target()); if (needRecalc) { if (!isPosKeySame) { ele.recalculateRenderedStyle(useCache); } bb = boundingBoxImpl(ele, defBbOpts); _p.bbCache = bb; _p.bbCachePosKey = currPosKey; } else { bb = _p.bbCache; } // not using def opts => need to build up bb from combination of sub bbs if (!usingDefOpts) { var isNode = ele.isNode(); bb = makeBoundingBox(); if (opts.includeNodes && isNode || opts.includeEdges && !isNode) { if (opts.includeOverlays) { updateBoundsFromBox(bb, _p.overlayBounds); } else { updateBoundsFromBox(bb, _p.bodyBounds); } } if (opts.includeLabels) { if (opts.includeMainLabels && (!isEdge || opts.includeSourceLabels && opts.includeTargetLabels)) { updateBoundsFromBox(bb, _p.labelBounds.all); } else { if (opts.includeMainLabels) { updateBoundsFromBox(bb, _p.labelBounds.mainRot); } if (opts.includeSourceLabels) { updateBoundsFromBox(bb, _p.labelBounds.sourceRot); } if (opts.includeTargetLabels) { updateBoundsFromBox(bb, _p.labelBounds.targetRot); } } } bb.w = bb.x2 - bb.x1; bb.h = bb.y2 - bb.y1; } return bb; }; var defBbOpts = { includeNodes: true, includeEdges: true, includeLabels: true, includeMainLabels: true, includeSourceLabels: true, includeTargetLabels: true, includeOverlays: true, includeUnderlays: true, includeOutlines: true, useCache: true }; var defBbOptsKey = getKey(defBbOpts); var filledBbOpts = defaults$g(defBbOpts); elesfn$b.boundingBox = function (options) { var bounds; // the main usecase is ele.boundingBox() for a single element with no/def options // specified s.t. the cache is used, so check for this case to make it faster by // avoiding the overhead of the rest of the function if (this.length === 1 && this[0]._private.bbCache != null && !this[0]._private.styleDirty && (options === undefined || options.useCache === undefined || options.useCache === true)) { if (options === undefined) { options = defBbOpts; } else { options = filledBbOpts(options); } bounds = cachedBoundingBoxImpl(this[0], options); } else { bounds = makeBoundingBox(); options = options || defBbOpts; var opts = filledBbOpts(options); var eles = this; var cy = eles.cy(); var styleEnabled = cy.styleEnabled(); if (styleEnabled) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var _p = ele._private; var currPosKey = getBoundingBoxPosKey(ele); var isPosKeySame = _p.bbCachePosKey === currPosKey; var useCache = opts.useCache && isPosKeySame && !_p.styleDirty; ele.recalculateRenderedStyle(useCache); } } this.updateCompoundBounds(!options.useCache); for (var _i = 0; _i < eles.length; _i++) { var _ele = eles[_i]; updateBoundsFromBox(bounds, cachedBoundingBoxImpl(_ele, opts)); } } bounds.x1 = noninf(bounds.x1); bounds.y1 = noninf(bounds.y1); bounds.x2 = noninf(bounds.x2); bounds.y2 = noninf(bounds.y2); bounds.w = noninf(bounds.x2 - bounds.x1); bounds.h = noninf(bounds.y2 - bounds.y1); return bounds; }; elesfn$b.dirtyBoundingBoxCache = function () { for (var i = 0; i < this.length; i++) { var _p = this[i]._private; _p.bbCache = null; _p.bbCachePosKey = null; _p.bodyBounds = null; _p.overlayBounds = null; _p.labelBounds.all = null; _p.labelBounds.source = null; _p.labelBounds.target = null; _p.labelBounds.main = null; _p.labelBounds.sourceRot = null; _p.labelBounds.targetRot = null; _p.labelBounds.mainRot = null; _p.arrowBounds.source = null; _p.arrowBounds.target = null; _p.arrowBounds['mid-source'] = null; _p.arrowBounds['mid-target'] = null; } this.emitAndNotify('bounds'); return this; }; // private helper to get bounding box for custom node positions // - good for perf in certain cases but currently requires dirtying the rendered style // - would be better to not modify the nodes but the nodes are read directly everywhere in the renderer... // - try to use for only things like discrete layouts where the node position would change anyway elesfn$b.boundingBoxAt = function (fn) { var nodes = this.nodes(); var cy = this.cy(); var hasCompoundNodes = cy.hasCompoundNodes(); var parents = cy.collection(); if (hasCompoundNodes) { parents = nodes.filter(function (node) { return node.isParent(); }); nodes = nodes.not(parents); } if (plainObject(fn)) { var obj = fn; fn = function fn() { return obj; }; } var storeOldPos = function storeOldPos(node, i) { return node._private.bbAtOldPos = fn(node, i); }; var getOldPos = function getOldPos(node) { return node._private.bbAtOldPos; }; cy.startBatch(); nodes.forEach(storeOldPos).silentPositions(fn); if (hasCompoundNodes) { parents.dirtyCompoundBoundsCache(); parents.dirtyBoundingBoxCache(); parents.updateCompoundBounds(true); // force update b/c we're inside a batch cycle } var bb = copyBoundingBox(this.boundingBox({ useCache: false })); nodes.silentPositions(getOldPos); if (hasCompoundNodes) { parents.dirtyCompoundBoundsCache(); parents.dirtyBoundingBoxCache(); parents.updateCompoundBounds(true); // force update b/c we're inside a batch cycle } cy.endBatch(); return bb; }; fn$3.boundingbox = fn$3.bb = fn$3.boundingBox; fn$3.renderedBoundingbox = fn$3.renderedBoundingBox; var bounds = elesfn$b; var fn$2, elesfn$a; fn$2 = elesfn$a = {}; var defineDimFns = function defineDimFns(opts) { opts.uppercaseName = capitalize(opts.name); opts.autoName = 'auto' + opts.uppercaseName; opts.labelName = 'label' + opts.uppercaseName; opts.outerName = 'outer' + opts.uppercaseName; opts.uppercaseOuterName = capitalize(opts.outerName); fn$2[opts.name] = function dimImpl() { var ele = this[0]; var _p = ele._private; var cy = _p.cy; var styleEnabled = cy._private.styleEnabled; if (ele) { if (styleEnabled) { if (ele.isParent()) { ele.updateCompoundBounds(); return _p[opts.autoName] || 0; } var d = ele.pstyle(opts.name); switch (d.strValue) { case 'label': ele.recalculateRenderedStyle(); return _p.rstyle[opts.labelName] || 0; default: return d.pfValue; } } else { return 1; } } }; fn$2['outer' + opts.uppercaseName] = function outerDimImpl() { var ele = this[0]; var _p = ele._private; var cy = _p.cy; var styleEnabled = cy._private.styleEnabled; if (ele) { if (styleEnabled) { var dim = ele[opts.name](); var border = ele.pstyle('border-width').pfValue; // n.b. 1/2 each side var padding = 2 * ele.padding(); return dim + border + padding; } else { return 1; } } }; fn$2['rendered' + opts.uppercaseName] = function renderedDimImpl() { var ele = this[0]; if (ele) { var d = ele[opts.name](); return d * this.cy().zoom(); } }; fn$2['rendered' + opts.uppercaseOuterName] = function renderedOuterDimImpl() { var ele = this[0]; if (ele) { var od = ele[opts.outerName](); return od * this.cy().zoom(); } }; }; defineDimFns({ name: 'width' }); defineDimFns({ name: 'height' }); elesfn$a.padding = function () { var ele = this[0]; var _p = ele._private; if (ele.isParent()) { ele.updateCompoundBounds(); if (_p.autoPadding !== undefined) { return _p.autoPadding; } else { return ele.pstyle('padding').pfValue; } } else { return ele.pstyle('padding').pfValue; } }; elesfn$a.paddedHeight = function () { var ele = this[0]; return ele.height() + 2 * ele.padding(); }; elesfn$a.paddedWidth = function () { var ele = this[0]; return ele.width() + 2 * ele.padding(); }; var widthHeight = elesfn$a; var ifEdge = function ifEdge(ele, getValue) { if (ele.isEdge()) { return getValue(ele); } }; var ifEdgeRenderedPosition = function ifEdgeRenderedPosition(ele, getPoint) { if (ele.isEdge()) { var cy = ele.cy(); return modelToRenderedPosition(getPoint(ele), cy.zoom(), cy.pan()); } }; var ifEdgeRenderedPositions = function ifEdgeRenderedPositions(ele, getPoints) { if (ele.isEdge()) { var cy = ele.cy(); var pan = cy.pan(); var zoom = cy.zoom(); return getPoints(ele).map(function (p) { return modelToRenderedPosition(p, zoom, pan); }); } }; var controlPoints = function controlPoints(ele) { return ele.renderer().getControlPoints(ele); }; var segmentPoints = function segmentPoints(ele) { return ele.renderer().getSegmentPoints(ele); }; var sourceEndpoint = function sourceEndpoint(ele) { return ele.renderer().getSourceEndpoint(ele); }; var targetEndpoint = function targetEndpoint(ele) { return ele.renderer().getTargetEndpoint(ele); }; var midpoint = function midpoint(ele) { return ele.renderer().getEdgeMidpoint(ele); }; var pts = { controlPoints: { get: controlPoints, mult: true }, segmentPoints: { get: segmentPoints, mult: true }, sourceEndpoint: { get: sourceEndpoint }, targetEndpoint: { get: targetEndpoint }, midpoint: { get: midpoint } }; var renderedName = function renderedName(name) { return 'rendered' + name[0].toUpperCase() + name.substr(1); }; var edgePoints = Object.keys(pts).reduce(function (obj, name) { var spec = pts[name]; var rName = renderedName(name); obj[name] = function () { return ifEdge(this, spec.get); }; if (spec.mult) { obj[rName] = function () { return ifEdgeRenderedPositions(this, spec.get); }; } else { obj[rName] = function () { return ifEdgeRenderedPosition(this, spec.get); }; } return obj; }, {}); var dimensions = extend({}, position, bounds, widthHeight, edgePoints); /*! Event object based on jQuery events, MIT license https://jquery.org/license/ https://tldrlegal.com/license/mit-license https://github.com/jquery/jquery/blob/master/src/event.js */ var Event = function Event(src, props) { this.recycle(src, props); }; function returnFalse() { return false; } function returnTrue() { return true; } // http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html Event.prototype = { instanceString: function instanceString() { return 'event'; }, recycle: function recycle(src, props) { this.isImmediatePropagationStopped = this.isPropagationStopped = this.isDefaultPrevented = returnFalse; if (src != null && src.preventDefault) { // Browser Event object this.type = src.type; // Events bubbling up the document may have been marked as prevented // by a handler lower down the tree; reflect the correct value. this.isDefaultPrevented = src.defaultPrevented ? returnTrue : returnFalse; } else if (src != null && src.type) { // Plain object containing all event details props = src; } else { // Event string this.type = src; } // Put explicitly provided properties onto the event object if (props != null) { // more efficient to manually copy fields we use this.originalEvent = props.originalEvent; this.type = props.type != null ? props.type : this.type; this.cy = props.cy; this.target = props.target; this.position = props.position; this.renderedPosition = props.renderedPosition; this.namespace = props.namespace; this.layout = props.layout; } if (this.cy != null && this.position != null && this.renderedPosition == null) { // create a rendered position based on the passed position var pos = this.position; var zoom = this.cy.zoom(); var pan = this.cy.pan(); this.renderedPosition = { x: pos.x * zoom + pan.x, y: pos.y * zoom + pan.y }; } // Create a timestamp if incoming event doesn't have one this.timeStamp = src && src.timeStamp || Date.now(); }, preventDefault: function preventDefault() { this.isDefaultPrevented = returnTrue; var e = this.originalEvent; if (!e) { return; } // if preventDefault exists run it on the original event if (e.preventDefault) { e.preventDefault(); } }, stopPropagation: function stopPropagation() { this.isPropagationStopped = returnTrue; var e = this.originalEvent; if (!e) { return; } // if stopPropagation exists run it on the original event if (e.stopPropagation) { e.stopPropagation(); } }, stopImmediatePropagation: function stopImmediatePropagation() { this.isImmediatePropagationStopped = returnTrue; this.stopPropagation(); }, isDefaultPrevented: returnFalse, isPropagationStopped: returnFalse, isImmediatePropagationStopped: returnFalse }; var eventRegex = /^([^.]+)(\.(?:[^.]+))?$/; // regex for matching event strings (e.g. "click.namespace") var universalNamespace = '.*'; // matches as if no namespace specified and prevents users from unbinding accidentally var defaults$8 = { qualifierCompare: function qualifierCompare(q1, q2) { return q1 === q2; }, eventMatches: function eventMatches( /*context, listener, eventObj*/ ) { return true; }, addEventFields: function addEventFields( /*context, evt*/ ) {}, callbackContext: function callbackContext(context /*, listener, eventObj*/) { return context; }, beforeEmit: function beforeEmit( /* context, listener, eventObj */ ) {}, afterEmit: function afterEmit( /* context, listener, eventObj */ ) {}, bubble: function bubble( /*context*/ ) { return false; }, parent: function parent( /*context*/ ) { return null; }, context: null }; var defaultsKeys = Object.keys(defaults$8); var emptyOpts = {}; function Emitter() { var opts = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : emptyOpts; var context = arguments.length > 1 ? arguments[1] : undefined; // micro-optimisation vs Object.assign() -- reduces Element instantiation time for (var i = 0; i < defaultsKeys.length; i++) { var key = defaultsKeys[i]; this[key] = opts[key] || defaults$8[key]; } this.context = context || this.context; this.listeners = []; this.emitting = 0; } var p = Emitter.prototype; var forEachEvent = function forEachEvent(self, handler, events, qualifier, callback, conf, confOverrides) { if (fn$6(qualifier)) { callback = qualifier; qualifier = null; } if (confOverrides) { if (conf == null) { conf = confOverrides; } else { conf = extend({}, conf, confOverrides); } } var eventList = array(events) ? events : events.split(/\s+/); for (var i = 0; i < eventList.length; i++) { var evt = eventList[i]; if (emptyString(evt)) { continue; } var match = evt.match(eventRegex); // type[.namespace] if (match) { var type = match[1]; var namespace = match[2] ? match[2] : null; var ret = handler(self, evt, type, namespace, qualifier, callback, conf); if (ret === false) { break; } // allow exiting early } } }; var makeEventObj = function makeEventObj(self, obj) { self.addEventFields(self.context, obj); return new Event(obj.type, obj); }; var forEachEventObj = function forEachEventObj(self, handler, events) { if (event(events)) { handler(self, events); return; } else if (plainObject(events)) { handler(self, makeEventObj(self, events)); return; } var eventList = array(events) ? events : events.split(/\s+/); for (var i = 0; i < eventList.length; i++) { var evt = eventList[i]; if (emptyString(evt)) { continue; } var match = evt.match(eventRegex); // type[.namespace] if (match) { var type = match[1]; var namespace = match[2] ? match[2] : null; var eventObj = makeEventObj(self, { type: type, namespace: namespace, target: self.context }); handler(self, eventObj); } } }; p.on = p.addListener = function (events, qualifier, callback, conf, confOverrides) { forEachEvent(this, function (self, event, type, namespace, qualifier, callback, conf) { if (fn$6(callback)) { self.listeners.push({ event: event, // full event string callback: callback, // callback to run type: type, // the event type (e.g. 'click') namespace: namespace, // the event namespace (e.g. ".foo") qualifier: qualifier, // a restriction on whether to match this emitter conf: conf // additional configuration }); } }, events, qualifier, callback, conf, confOverrides); return this; }; p.one = function (events, qualifier, callback, conf) { return this.on(events, qualifier, callback, conf, { one: true }); }; p.removeListener = p.off = function (events, qualifier, callback, conf) { var _this = this; if (this.emitting !== 0) { this.listeners = copyArray$1(this.listeners); } var listeners = this.listeners; var _loop = function _loop(i) { var listener = listeners[i]; forEachEvent(_this, function (self, event, type, namespace, qualifier, callback /*, conf*/) { if ((listener.type === type || events === '*') && (!namespace && listener.namespace !== '.*' || listener.namespace === namespace) && (!qualifier || self.qualifierCompare(listener.qualifier, qualifier)) && (!callback || listener.callback === callback)) { listeners.splice(i, 1); return false; } }, events, qualifier, callback, conf); }; for (var i = listeners.length - 1; i >= 0; i--) { _loop(i); } return this; }; p.removeAllListeners = function () { return this.removeListener('*'); }; p.emit = p.trigger = function (events, extraParams, manualCallback) { var listeners = this.listeners; var numListenersBeforeEmit = listeners.length; this.emitting++; if (!array(extraParams)) { extraParams = [extraParams]; } forEachEventObj(this, function (self, eventObj) { if (manualCallback != null) { listeners = [{ event: eventObj.event, type: eventObj.type, namespace: eventObj.namespace, callback: manualCallback }]; numListenersBeforeEmit = listeners.length; } var _loop2 = function _loop2(i) { var listener = listeners[i]; if (listener.type === eventObj.type && (!listener.namespace || listener.namespace === eventObj.namespace || listener.namespace === universalNamespace) && self.eventMatches(self.context, listener, eventObj)) { var args = [eventObj]; if (extraParams != null) { push(args, extraParams); } self.beforeEmit(self.context, listener, eventObj); if (listener.conf && listener.conf.one) { self.listeners = self.listeners.filter(function (l) { return l !== listener; }); } var context = self.callbackContext(self.context, listener, eventObj); var ret = listener.callback.apply(context, args); self.afterEmit(self.context, listener, eventObj); if (ret === false) { eventObj.stopPropagation(); eventObj.preventDefault(); } } // if listener matches }; for (var i = 0; i < numListenersBeforeEmit; i++) { _loop2(i); } // for listener if (self.bubble(self.context) && !eventObj.isPropagationStopped()) { self.parent(self.context).emit(eventObj, extraParams); } }, events); this.emitting--; return this; }; var emitterOptions$1 = { qualifierCompare: function qualifierCompare(selector1, selector2) { if (selector1 == null || selector2 == null) { return selector1 == null && selector2 == null; } else { return selector1.sameText(selector2); } }, eventMatches: function eventMatches(ele, listener, eventObj) { var selector = listener.qualifier; if (selector != null) { return ele !== eventObj.target && element(eventObj.target) && selector.matches(eventObj.target); } return true; }, addEventFields: function addEventFields(ele, evt) { evt.cy = ele.cy(); evt.target = ele; }, callbackContext: function callbackContext(ele, listener, eventObj) { return listener.qualifier != null ? eventObj.target : ele; }, beforeEmit: function beforeEmit(context, listener /*, eventObj*/) { if (listener.conf && listener.conf.once) { listener.conf.onceCollection.removeListener(listener.event, listener.qualifier, listener.callback); } }, bubble: function bubble() { return true; }, parent: function parent(ele) { return ele.isChild() ? ele.parent() : ele.cy(); } }; var argSelector$1 = function argSelector(arg) { if (string(arg)) { return new Selector(arg); } else { return arg; } }; var elesfn$9 = { createEmitter: function createEmitter() { for (var i = 0; i < this.length; i++) { var ele = this[i]; var _p = ele._private; if (!_p.emitter) { _p.emitter = new Emitter(emitterOptions$1, ele); } } return this; }, emitter: function emitter() { return this._private.emitter; }, on: function on(events, selector, callback) { var argSel = argSelector$1(selector); for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().on(events, argSel, callback); } return this; }, removeListener: function removeListener(events, selector, callback) { var argSel = argSelector$1(selector); for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().removeListener(events, argSel, callback); } return this; }, removeAllListeners: function removeAllListeners() { for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().removeAllListeners(); } return this; }, one: function one(events, selector, callback) { var argSel = argSelector$1(selector); for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().one(events, argSel, callback); } return this; }, once: function once(events, selector, callback) { var argSel = argSelector$1(selector); for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().on(events, argSel, callback, { once: true, onceCollection: this }); } }, emit: function emit(events, extraParams) { for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().emit(events, extraParams); } return this; }, emitAndNotify: function emitAndNotify(event, extraParams) { // for internal use only if (this.length === 0) { return; } // empty collections don't need to notify anything // notify renderer this.cy().notify(event, this); this.emit(event, extraParams); return this; } }; define.eventAliasesOn(elesfn$9); var elesfn$8 = { nodes: function nodes(selector) { return this.filter(function (ele) { return ele.isNode(); }).filter(selector); }, edges: function edges(selector) { return this.filter(function (ele) { return ele.isEdge(); }).filter(selector); }, // internal helper to get nodes and edges as separate collections with single iteration over elements byGroup: function byGroup() { var nodes = this.spawn(); var edges = this.spawn(); for (var i = 0; i < this.length; i++) { var ele = this[i]; if (ele.isNode()) { nodes.push(ele); } else { edges.push(ele); } } return { nodes: nodes, edges: edges }; }, filter: function filter(_filter, thisArg) { if (_filter === undefined) { // check this first b/c it's the most common/performant case return this; } else if (string(_filter) || elementOrCollection(_filter)) { return new Selector(_filter).filter(this); } else if (fn$6(_filter)) { var filterEles = this.spawn(); var eles = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var include = thisArg ? _filter.apply(thisArg, [ele, i, eles]) : _filter(ele, i, eles); if (include) { filterEles.push(ele); } } return filterEles; } return this.spawn(); // if not handled by above, give 'em an empty collection }, not: function not(toRemove) { if (!toRemove) { return this; } else { if (string(toRemove)) { toRemove = this.filter(toRemove); } var elements = this.spawn(); for (var i = 0; i < this.length; i++) { var element = this[i]; var remove = toRemove.has(element); if (!remove) { elements.push(element); } } return elements; } }, absoluteComplement: function absoluteComplement() { var cy = this.cy(); return cy.mutableElements().not(this); }, intersect: function intersect(other) { // if a selector is specified, then filter by it instead if (string(other)) { var selector = other; return this.filter(selector); } var elements = this.spawn(); var col1 = this; var col2 = other; var col1Smaller = this.length < other.length; var colS = col1Smaller ? col1 : col2; var colL = col1Smaller ? col2 : col1; for (var i = 0; i < colS.length; i++) { var ele = colS[i]; if (colL.has(ele)) { elements.push(ele); } } return elements; }, xor: function xor(other) { var cy = this._private.cy; if (string(other)) { other = cy.$(other); } var elements = this.spawn(); var col1 = this; var col2 = other; var add = function add(col, other) { for (var i = 0; i < col.length; i++) { var ele = col[i]; var id = ele._private.data.id; var inOther = other.hasElementWithId(id); if (!inOther) { elements.push(ele); } } }; add(col1, col2); add(col2, col1); return elements; }, diff: function diff(other) { var cy = this._private.cy; if (string(other)) { other = cy.$(other); } var left = this.spawn(); var right = this.spawn(); var both = this.spawn(); var col1 = this; var col2 = other; var add = function add(col, other, retEles) { for (var i = 0; i < col.length; i++) { var ele = col[i]; var id = ele._private.data.id; var inOther = other.hasElementWithId(id); if (inOther) { both.merge(ele); } else { retEles.push(ele); } } }; add(col1, col2, left); add(col2, col1, right); return { left: left, right: right, both: both }; }, add: function add(toAdd) { var cy = this._private.cy; if (!toAdd) { return this; } if (string(toAdd)) { var selector = toAdd; toAdd = cy.mutableElements().filter(selector); } var elements = this.spawnSelf(); for (var i = 0; i < toAdd.length; i++) { var ele = toAdd[i]; var add = !this.has(ele); if (add) { elements.push(ele); } } return elements; }, // in place merge on calling collection merge: function merge(toAdd) { var _p = this._private; var cy = _p.cy; if (!toAdd) { return this; } if (toAdd && string(toAdd)) { var selector = toAdd; toAdd = cy.mutableElements().filter(selector); } var map = _p.map; for (var i = 0; i < toAdd.length; i++) { var toAddEle = toAdd[i]; var id = toAddEle._private.data.id; var add = !map.has(id); if (add) { var index = this.length++; this[index] = toAddEle; map.set(id, { ele: toAddEle, index: index }); } } return this; // chaining }, unmergeAt: function unmergeAt(i) { var ele = this[i]; var id = ele.id(); var _p = this._private; var map = _p.map; // remove ele this[i] = undefined; map["delete"](id); var unmergedLastEle = i === this.length - 1; // replace empty spot with last ele in collection if (this.length > 1 && !unmergedLastEle) { var lastEleI = this.length - 1; var lastEle = this[lastEleI]; var lastEleId = lastEle._private.data.id; this[lastEleI] = undefined; this[i] = lastEle; map.set(lastEleId, { ele: lastEle, index: i }); } // the collection is now 1 ele smaller this.length--; return this; }, // remove single ele in place in calling collection unmergeOne: function unmergeOne(ele) { ele = ele[0]; var _p = this._private; var id = ele._private.data.id; var map = _p.map; var entry = map.get(id); if (!entry) { return this; // no need to remove } var i = entry.index; this.unmergeAt(i); return this; }, // remove eles in place on calling collection unmerge: function unmerge(toRemove) { var cy = this._private.cy; if (!toRemove) { return this; } if (toRemove && string(toRemove)) { var selector = toRemove; toRemove = cy.mutableElements().filter(selector); } for (var i = 0; i < toRemove.length; i++) { this.unmergeOne(toRemove[i]); } return this; // chaining }, unmergeBy: function unmergeBy(toRmFn) { for (var i = this.length - 1; i >= 0; i--) { var ele = this[i]; if (toRmFn(ele)) { this.unmergeAt(i); } } return this; }, map: function map(mapFn, thisArg) { var arr = []; var eles = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var ret = thisArg ? mapFn.apply(thisArg, [ele, i, eles]) : mapFn(ele, i, eles); arr.push(ret); } return arr; }, reduce: function reduce(fn, initialValue) { var val = initialValue; var eles = this; for (var i = 0; i < eles.length; i++) { val = fn(val, eles[i], i, eles); } return val; }, max: function max(valFn, thisArg) { var max = -Infinity; var maxEle; var eles = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var val = thisArg ? valFn.apply(thisArg, [ele, i, eles]) : valFn(ele, i, eles); if (val > max) { max = val; maxEle = ele; } } return { value: max, ele: maxEle }; }, min: function min(valFn, thisArg) { var min = Infinity; var minEle; var eles = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var val = thisArg ? valFn.apply(thisArg, [ele, i, eles]) : valFn(ele, i, eles); if (val < min) { min = val; minEle = ele; } } return { value: min, ele: minEle }; } }; // aliases var fn$1 = elesfn$8; fn$1['u'] = fn$1['|'] = fn$1['+'] = fn$1.union = fn$1.or = fn$1.add; fn$1['\\'] = fn$1['!'] = fn$1['-'] = fn$1.difference = fn$1.relativeComplement = fn$1.subtract = fn$1.not; fn$1['n'] = fn$1['&'] = fn$1['.'] = fn$1.and = fn$1.intersection = fn$1.intersect; fn$1['^'] = fn$1['(+)'] = fn$1['(-)'] = fn$1.symmetricDifference = fn$1.symdiff = fn$1.xor; fn$1.fnFilter = fn$1.filterFn = fn$1.stdFilter = fn$1.filter; fn$1.complement = fn$1.abscomp = fn$1.absoluteComplement; var elesfn$7 = { isNode: function isNode() { return this.group() === 'nodes'; }, isEdge: function isEdge() { return this.group() === 'edges'; }, isLoop: function isLoop() { return this.isEdge() && this.source()[0] === this.target()[0]; }, isSimple: function isSimple() { return this.isEdge() && this.source()[0] !== this.target()[0]; }, group: function group() { var ele = this[0]; if (ele) { return ele._private.group; } } }; /** * Elements are drawn in a specific order based on compound depth (low to high), the element type (nodes above edges), * and z-index (low to high). These styles affect how this applies: * * z-compound-depth: May be `bottom | orphan | auto | top`. The first drawn is `bottom`, then `orphan` which is the * same depth as the root of the compound graph, followed by the default value `auto` which draws in order from * root to leaves of the compound graph. The last drawn is `top`. * z-index-compare: May be `auto | manual`. The default value is `auto` which always draws edges under nodes. * `manual` ignores this convention and draws based on the `z-index` value setting. * z-index: An integer value that affects the relative draw order of elements. In general, an element with a higher * `z-index` will be drawn on top of an element with a lower `z-index`. */ var zIndexSort = function zIndexSort(a, b) { var cy = a.cy(); var hasCompoundNodes = cy.hasCompoundNodes(); function getDepth(ele) { var style = ele.pstyle('z-compound-depth'); if (style.value === 'auto') { return hasCompoundNodes ? ele.zDepth() : 0; } else if (style.value === 'bottom') { return -1; } else if (style.value === 'top') { return MAX_INT$1; } // 'orphan' return 0; } var depthDiff = getDepth(a) - getDepth(b); if (depthDiff !== 0) { return depthDiff; } function getEleDepth(ele) { var style = ele.pstyle('z-index-compare'); if (style.value === 'auto') { return ele.isNode() ? 1 : 0; } // 'manual' return 0; } var eleDiff = getEleDepth(a) - getEleDepth(b); if (eleDiff !== 0) { return eleDiff; } var zDiff = a.pstyle('z-index').value - b.pstyle('z-index').value; if (zDiff !== 0) { return zDiff; } // compare indices in the core (order added to graph w/ last on top) return a.poolIndex() - b.poolIndex(); }; var elesfn$6 = { forEach: function forEach(fn, thisArg) { if (fn$6(fn)) { var N = this.length; for (var i = 0; i < N; i++) { var ele = this[i]; var ret = thisArg ? fn.apply(thisArg, [ele, i, this]) : fn(ele, i, this); if (ret === false) { break; } // exit each early on return false } } return this; }, toArray: function toArray() { var array = []; for (var i = 0; i < this.length; i++) { array.push(this[i]); } return array; }, slice: function slice(start, end) { var array = []; var thisSize = this.length; if (end == null) { end = thisSize; } if (start == null) { start = 0; } if (start < 0) { start = thisSize + start; } if (end < 0) { end = thisSize + end; } for (var i = start; i >= 0 && i < end && i < thisSize; i++) { array.push(this[i]); } return this.spawn(array); }, size: function size() { return this.length; }, eq: function eq(i) { return this[i] || this.spawn(); }, first: function first() { return this[0] || this.spawn(); }, last: function last() { return this[this.length - 1] || this.spawn(); }, empty: function empty() { return this.length === 0; }, nonempty: function nonempty() { return !this.empty(); }, sort: function sort(sortFn) { if (!fn$6(sortFn)) { return this; } var sorted = this.toArray().sort(sortFn); return this.spawn(sorted); }, sortByZIndex: function sortByZIndex() { return this.sort(zIndexSort); }, zDepth: function zDepth() { var ele = this[0]; if (!ele) { return undefined; } // let cy = ele.cy(); var _p = ele._private; var group = _p.group; if (group === 'nodes') { var depth = _p.data.parent ? ele.parents().size() : 0; if (!ele.isParent()) { return MAX_INT$1 - 1; // childless nodes always on top } return depth; } else { var src = _p.source; var tgt = _p.target; var srcDepth = src.zDepth(); var tgtDepth = tgt.zDepth(); return Math.max(srcDepth, tgtDepth, 0); // depth of deepest parent } } }; elesfn$6.each = elesfn$6.forEach; var defineSymbolIterator = function defineSymbolIterator() { var typeofUndef = "undefined" ; var isIteratorSupported = (typeof Symbol === "undefined" ? "undefined" : _typeof(Symbol)) != typeofUndef && _typeof(Symbol.iterator) != typeofUndef; // eslint-disable-line no-undef if (isIteratorSupported) { elesfn$6[Symbol.iterator] = function () { var _this = this; // eslint-disable-line no-undef var entry = { value: undefined, done: false }; var i = 0; var length = this.length; return _defineProperty$1({ next: function next() { if (i < length) { entry.value = _this[i++]; } else { entry.value = undefined; entry.done = true; } return entry; } }, Symbol.iterator, function () { // eslint-disable-line no-undef return this; }); }; } }; defineSymbolIterator(); var getLayoutDimensionOptions = defaults$g({ nodeDimensionsIncludeLabels: false }); var elesfn$5 = { // Calculates and returns node dimensions { x, y } based on options given layoutDimensions: function layoutDimensions(options) { options = getLayoutDimensionOptions(options); var dims; if (!this.takesUpSpace()) { dims = { w: 0, h: 0 }; } else if (options.nodeDimensionsIncludeLabels) { var bbDim = this.boundingBox(); dims = { w: bbDim.w, h: bbDim.h }; } else { dims = { w: this.outerWidth(), h: this.outerHeight() }; } // sanitise the dimensions for external layouts (avoid division by zero) if (dims.w === 0 || dims.h === 0) { dims.w = dims.h = 1; } return dims; }, // using standard layout options, apply position function (w/ or w/o animation) layoutPositions: function layoutPositions(layout, options, fn) { var nodes = this.nodes().filter(function (n) { return !n.isParent(); }); var cy = this.cy(); var layoutEles = options.eles; // nodes & edges var getMemoizeKey = function getMemoizeKey(node) { return node.id(); }; var fnMem = memoize$1(fn, getMemoizeKey); // memoized version of position function layout.emit({ type: 'layoutstart', layout: layout }); layout.animations = []; var calculateSpacing = function calculateSpacing(spacing, nodesBb, pos) { var center = { x: nodesBb.x1 + nodesBb.w / 2, y: nodesBb.y1 + nodesBb.h / 2 }; var spacingVector = { // scale from center of bounding box (not necessarily 0,0) x: (pos.x - center.x) * spacing, y: (pos.y - center.y) * spacing }; return { x: center.x + spacingVector.x, y: center.y + spacingVector.y }; }; var useSpacingFactor = options.spacingFactor && options.spacingFactor !== 1; var spacingBb = function spacingBb() { if (!useSpacingFactor) { return null; } var bb = makeBoundingBox(); for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; var pos = fnMem(node, i); expandBoundingBoxByPoint(bb, pos.x, pos.y); } return bb; }; var bb = spacingBb(); var getFinalPos = memoize$1(function (node, i) { var newPos = fnMem(node, i); if (useSpacingFactor) { var spacing = Math.abs(options.spacingFactor); newPos = calculateSpacing(spacing, bb, newPos); } if (options.transform != null) { newPos = options.transform(node, newPos); } return newPos; }, getMemoizeKey); if (options.animate) { for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; var newPos = getFinalPos(node, i); var animateNode = options.animateFilter == null || options.animateFilter(node, i); if (animateNode) { var ani = node.animation({ position: newPos, duration: options.animationDuration, easing: options.animationEasing }); layout.animations.push(ani); } else { node.position(newPos); } } if (options.fit) { var fitAni = cy.animation({ fit: { boundingBox: layoutEles.boundingBoxAt(getFinalPos), padding: options.padding }, duration: options.animationDuration, easing: options.animationEasing }); layout.animations.push(fitAni); } else if (options.zoom !== undefined && options.pan !== undefined) { var zoomPanAni = cy.animation({ zoom: options.zoom, pan: options.pan, duration: options.animationDuration, easing: options.animationEasing }); layout.animations.push(zoomPanAni); } layout.animations.forEach(function (ani) { return ani.play(); }); layout.one('layoutready', options.ready); layout.emit({ type: 'layoutready', layout: layout }); Promise$1.all(layout.animations.map(function (ani) { return ani.promise(); })).then(function () { layout.one('layoutstop', options.stop); layout.emit({ type: 'layoutstop', layout: layout }); }); } else { nodes.positions(getFinalPos); if (options.fit) { cy.fit(options.eles, options.padding); } if (options.zoom != null) { cy.zoom(options.zoom); } if (options.pan) { cy.pan(options.pan); } layout.one('layoutready', options.ready); layout.emit({ type: 'layoutready', layout: layout }); layout.one('layoutstop', options.stop); layout.emit({ type: 'layoutstop', layout: layout }); } return this; // chaining }, layout: function layout(options) { var cy = this.cy(); return cy.makeLayout(extend({}, options, { eles: this })); } }; // aliases: elesfn$5.createLayout = elesfn$5.makeLayout = elesfn$5.layout; function styleCache(key, fn, ele) { var _p = ele._private; var cache = _p.styleCache = _p.styleCache || []; var val; if ((val = cache[key]) != null) { return val; } else { val = cache[key] = fn(ele); return val; } } function cacheStyleFunction(key, fn) { key = hashString(key); return function cachedStyleFunction(ele) { return styleCache(key, fn, ele); }; } function cachePrototypeStyleFunction(key, fn) { key = hashString(key); var selfFn = function selfFn(ele) { return fn.call(ele); }; return function cachedPrototypeStyleFunction() { var ele = this[0]; if (ele) { return styleCache(key, selfFn, ele); } }; } var elesfn$4 = { recalculateRenderedStyle: function recalculateRenderedStyle(useCache) { var cy = this.cy(); var renderer = cy.renderer(); var styleEnabled = cy.styleEnabled(); if (renderer && styleEnabled) { renderer.recalculateRenderedStyle(this, useCache); } return this; }, dirtyStyleCache: function dirtyStyleCache() { var cy = this.cy(); var dirty = function dirty(ele) { return ele._private.styleCache = null; }; if (cy.hasCompoundNodes()) { var eles; eles = this.spawnSelf().merge(this.descendants()).merge(this.parents()); eles.merge(eles.connectedEdges()); eles.forEach(dirty); } else { this.forEach(function (ele) { dirty(ele); ele.connectedEdges().forEach(dirty); }); } return this; }, // fully updates (recalculates) the style for the elements updateStyle: function updateStyle(notifyRenderer) { var cy = this._private.cy; if (!cy.styleEnabled()) { return this; } if (cy.batching()) { var bEles = cy._private.batchStyleEles; bEles.merge(this); return this; // chaining and exit early when batching } var hasCompounds = cy.hasCompoundNodes(); var updatedEles = this; notifyRenderer = notifyRenderer || notifyRenderer === undefined ? true : false; if (hasCompounds) { // then add everything up and down for compound selector checks updatedEles = this.spawnSelf().merge(this.descendants()).merge(this.parents()); } // let changedEles = style.apply( updatedEles ); var changedEles = updatedEles; if (notifyRenderer) { changedEles.emitAndNotify('style'); // let renderer know we changed style } else { changedEles.emit('style'); // just fire the event } updatedEles.forEach(function (ele) { return ele._private.styleDirty = true; }); return this; // chaining }, // private: clears dirty flag and recalculates style cleanStyle: function cleanStyle() { var cy = this.cy(); if (!cy.styleEnabled()) { return; } for (var i = 0; i < this.length; i++) { var ele = this[i]; if (ele._private.styleDirty) { // n.b. this flag should be set before apply() to avoid potential infinite recursion ele._private.styleDirty = false; cy.style().apply(ele); } } }, // get the internal parsed style object for the specified property parsedStyle: function parsedStyle(property) { var includeNonDefault = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; var ele = this[0]; var cy = ele.cy(); if (!cy.styleEnabled()) { return; } if (ele) { this.cleanStyle(); var overriddenStyle = ele._private.style[property]; if (overriddenStyle != null) { return overriddenStyle; } else if (includeNonDefault) { return cy.style().getDefaultProperty(property); } else { return null; } } }, numericStyle: function numericStyle(property) { var ele = this[0]; if (!ele.cy().styleEnabled()) { return; } if (ele) { var pstyle = ele.pstyle(property); return pstyle.pfValue !== undefined ? pstyle.pfValue : pstyle.value; } }, numericStyleUnits: function numericStyleUnits(property) { var ele = this[0]; if (!ele.cy().styleEnabled()) { return; } if (ele) { return ele.pstyle(property).units; } }, // get the specified css property as a rendered value (i.e. on-screen value) // or get the whole rendered style if no property specified (NB doesn't allow setting) renderedStyle: function renderedStyle(property) { var cy = this.cy(); if (!cy.styleEnabled()) { return this; } var ele = this[0]; if (ele) { return cy.style().getRenderedStyle(ele, property); } }, // read the calculated css style of the element or override the style (via a bypass) style: function style(name, value) { var cy = this.cy(); if (!cy.styleEnabled()) { return this; } var updateTransitions = false; var style = cy.style(); if (plainObject(name)) { // then extend the bypass var props = name; style.applyBypass(this, props, updateTransitions); this.emitAndNotify('style'); // let the renderer know we've updated style } else if (string(name)) { if (value === undefined) { // then get the property from the style var ele = this[0]; if (ele) { return style.getStylePropertyValue(ele, name); } else { // empty collection => can't get any value return; } } else { // then set the bypass with the property value style.applyBypass(this, name, value, updateTransitions); this.emitAndNotify('style'); // let the renderer know we've updated style } } else if (name === undefined) { var _ele = this[0]; if (_ele) { return style.getRawStyle(_ele); } else { // empty collection => can't get any value return; } } return this; // chaining }, removeStyle: function removeStyle(names) { var cy = this.cy(); if (!cy.styleEnabled()) { return this; } var updateTransitions = false; var style = cy.style(); var eles = this; if (names === undefined) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; style.removeAllBypasses(ele, updateTransitions); } } else { names = names.split(/\s+/); for (var _i = 0; _i < eles.length; _i++) { var _ele2 = eles[_i]; style.removeBypasses(_ele2, names, updateTransitions); } } this.emitAndNotify('style'); // let the renderer know we've updated style return this; // chaining }, show: function show() { this.css('display', 'element'); return this; // chaining }, hide: function hide() { this.css('display', 'none'); return this; // chaining }, effectiveOpacity: function effectiveOpacity() { var cy = this.cy(); if (!cy.styleEnabled()) { return 1; } var hasCompoundNodes = cy.hasCompoundNodes(); var ele = this[0]; if (ele) { var _p = ele._private; var parentOpacity = ele.pstyle('opacity').value; if (!hasCompoundNodes) { return parentOpacity; } var parents = !_p.data.parent ? null : ele.parents(); if (parents) { for (var i = 0; i < parents.length; i++) { var parent = parents[i]; var opacity = parent.pstyle('opacity').value; parentOpacity = opacity * parentOpacity; } } return parentOpacity; } }, transparent: function transparent() { var cy = this.cy(); if (!cy.styleEnabled()) { return false; } var ele = this[0]; var hasCompoundNodes = ele.cy().hasCompoundNodes(); if (ele) { if (!hasCompoundNodes) { return ele.pstyle('opacity').value === 0; } else { return ele.effectiveOpacity() === 0; } } }, backgrounding: function backgrounding() { var cy = this.cy(); if (!cy.styleEnabled()) { return false; } var ele = this[0]; return ele._private.backgrounding ? true : false; } }; function checkCompound(ele, parentOk) { var _p = ele._private; var parents = _p.data.parent ? ele.parents() : null; if (parents) { for (var i = 0; i < parents.length; i++) { var parent = parents[i]; if (!parentOk(parent)) { return false; } } } return true; } function defineDerivedStateFunction(specs) { var ok = specs.ok; var edgeOkViaNode = specs.edgeOkViaNode || specs.ok; var parentOk = specs.parentOk || specs.ok; return function () { var cy = this.cy(); if (!cy.styleEnabled()) { return true; } var ele = this[0]; var hasCompoundNodes = cy.hasCompoundNodes(); if (ele) { var _p = ele._private; if (!ok(ele)) { return false; } if (ele.isNode()) { return !hasCompoundNodes || checkCompound(ele, parentOk); } else { var src = _p.source; var tgt = _p.target; return edgeOkViaNode(src) && (!hasCompoundNodes || checkCompound(src, edgeOkViaNode)) && (src === tgt || edgeOkViaNode(tgt) && (!hasCompoundNodes || checkCompound(tgt, edgeOkViaNode))); } } }; } var eleTakesUpSpace = cacheStyleFunction('eleTakesUpSpace', function (ele) { return ele.pstyle('display').value === 'element' && ele.width() !== 0 && (ele.isNode() ? ele.height() !== 0 : true); }); elesfn$4.takesUpSpace = cachePrototypeStyleFunction('takesUpSpace', defineDerivedStateFunction({ ok: eleTakesUpSpace })); var eleInteractive = cacheStyleFunction('eleInteractive', function (ele) { return ele.pstyle('events').value === 'yes' && ele.pstyle('visibility').value === 'visible' && eleTakesUpSpace(ele); }); var parentInteractive = cacheStyleFunction('parentInteractive', function (parent) { return parent.pstyle('visibility').value === 'visible' && eleTakesUpSpace(parent); }); elesfn$4.interactive = cachePrototypeStyleFunction('interactive', defineDerivedStateFunction({ ok: eleInteractive, parentOk: parentInteractive, edgeOkViaNode: eleTakesUpSpace })); elesfn$4.noninteractive = function () { var ele = this[0]; if (ele) { return !ele.interactive(); } }; var eleVisible = cacheStyleFunction('eleVisible', function (ele) { return ele.pstyle('visibility').value === 'visible' && ele.pstyle('opacity').pfValue !== 0 && eleTakesUpSpace(ele); }); var edgeVisibleViaNode = eleTakesUpSpace; elesfn$4.visible = cachePrototypeStyleFunction('visible', defineDerivedStateFunction({ ok: eleVisible, edgeOkViaNode: edgeVisibleViaNode })); elesfn$4.hidden = function () { var ele = this[0]; if (ele) { return !ele.visible(); } }; elesfn$4.isBundledBezier = cachePrototypeStyleFunction('isBundledBezier', function () { if (!this.cy().styleEnabled()) { return false; } return !this.removed() && this.pstyle('curve-style').value === 'bezier' && this.takesUpSpace(); }); elesfn$4.bypass = elesfn$4.css = elesfn$4.style; elesfn$4.renderedCss = elesfn$4.renderedStyle; elesfn$4.removeBypass = elesfn$4.removeCss = elesfn$4.removeStyle; elesfn$4.pstyle = elesfn$4.parsedStyle; var elesfn$3 = {}; function defineSwitchFunction(params) { return function () { var args = arguments; var changedEles = []; // e.g. cy.nodes().select( data, handler ) if (args.length === 2) { var data = args[0]; var handler = args[1]; this.on(params.event, data, handler); } // e.g. cy.nodes().select( handler ) else if (args.length === 1 && fn$6(args[0])) { var _handler = args[0]; this.on(params.event, _handler); } // e.g. cy.nodes().select() // e.g. (private) cy.nodes().select(['tapselect']) else if (args.length === 0 || args.length === 1 && array(args[0])) { var addlEvents = args.length === 1 ? args[0] : null; for (var i = 0; i < this.length; i++) { var ele = this[i]; var able = !params.ableField || ele._private[params.ableField]; var changed = ele._private[params.field] != params.value; if (params.overrideAble) { var overrideAble = params.overrideAble(ele); if (overrideAble !== undefined) { able = overrideAble; if (!overrideAble) { return this; } // to save cycles assume not able for all on override } } if (able) { ele._private[params.field] = params.value; if (changed) { changedEles.push(ele); } } } var changedColl = this.spawn(changedEles); changedColl.updateStyle(); // change of state => possible change of style changedColl.emit(params.event); if (addlEvents) { changedColl.emit(addlEvents); } } return this; }; } function defineSwitchSet(params) { elesfn$3[params.field] = function () { var ele = this[0]; if (ele) { if (params.overrideField) { var val = params.overrideField(ele); if (val !== undefined) { return val; } } return ele._private[params.field]; } }; elesfn$3[params.on] = defineSwitchFunction({ event: params.on, field: params.field, ableField: params.ableField, overrideAble: params.overrideAble, value: true }); elesfn$3[params.off] = defineSwitchFunction({ event: params.off, field: params.field, ableField: params.ableField, overrideAble: params.overrideAble, value: false }); } defineSwitchSet({ field: 'locked', overrideField: function overrideField(ele) { return ele.cy().autolock() ? true : undefined; }, on: 'lock', off: 'unlock' }); defineSwitchSet({ field: 'grabbable', overrideField: function overrideField(ele) { return ele.cy().autoungrabify() || ele.pannable() ? false : undefined; }, on: 'grabify', off: 'ungrabify' }); defineSwitchSet({ field: 'selected', ableField: 'selectable', overrideAble: function overrideAble(ele) { return ele.cy().autounselectify() ? false : undefined; }, on: 'select', off: 'unselect' }); defineSwitchSet({ field: 'selectable', overrideField: function overrideField(ele) { return ele.cy().autounselectify() ? false : undefined; }, on: 'selectify', off: 'unselectify' }); elesfn$3.deselect = elesfn$3.unselect; elesfn$3.grabbed = function () { var ele = this[0]; if (ele) { return ele._private.grabbed; } }; defineSwitchSet({ field: 'active', on: 'activate', off: 'unactivate' }); defineSwitchSet({ field: 'pannable', on: 'panify', off: 'unpanify' }); elesfn$3.inactive = function () { var ele = this[0]; if (ele) { return !ele._private.active; } }; var elesfn$2 = {}; // DAG functions //////////////// var defineDagExtremity = function defineDagExtremity(params) { return function dagExtremityImpl(selector) { var eles = this; var ret = []; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; if (!ele.isNode()) { continue; } var disqualified = false; var edges = ele.connectedEdges(); for (var j = 0; j < edges.length; j++) { var edge = edges[j]; var src = edge.source(); var tgt = edge.target(); if (params.noIncomingEdges && tgt === ele && src !== ele || params.noOutgoingEdges && src === ele && tgt !== ele) { disqualified = true; break; } } if (!disqualified) { ret.push(ele); } } return this.spawn(ret, true).filter(selector); }; }; var defineDagOneHop = function defineDagOneHop(params) { return function (selector) { var eles = this; var oEles = []; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; if (!ele.isNode()) { continue; } var edges = ele.connectedEdges(); for (var j = 0; j < edges.length; j++) { var edge = edges[j]; var src = edge.source(); var tgt = edge.target(); if (params.outgoing && src === ele) { oEles.push(edge); oEles.push(tgt); } else if (params.incoming && tgt === ele) { oEles.push(edge); oEles.push(src); } } } return this.spawn(oEles, true).filter(selector); }; }; var defineDagAllHops = function defineDagAllHops(params) { return function (selector) { var eles = this; var sEles = []; var sElesIds = {}; for (;;) { var next = params.outgoing ? eles.outgoers() : eles.incomers(); if (next.length === 0) { break; } // done if none left var newNext = false; for (var i = 0; i < next.length; i++) { var n = next[i]; var nid = n.id(); if (!sElesIds[nid]) { sElesIds[nid] = true; sEles.push(n); newNext = true; } } if (!newNext) { break; } // done if touched all outgoers already eles = next; } return this.spawn(sEles, true).filter(selector); }; }; elesfn$2.clearTraversalCache = function () { for (var i = 0; i < this.length; i++) { this[i]._private.traversalCache = null; } }; extend(elesfn$2, { // get the root nodes in the DAG roots: defineDagExtremity({ noIncomingEdges: true }), // get the leaf nodes in the DAG leaves: defineDagExtremity({ noOutgoingEdges: true }), // normally called children in graph theory // these nodes =edges=> outgoing nodes outgoers: cache(defineDagOneHop({ outgoing: true }), 'outgoers'), // aka DAG descendants successors: defineDagAllHops({ outgoing: true }), // normally called parents in graph theory // these nodes <=edges= incoming nodes incomers: cache(defineDagOneHop({ incoming: true }), 'incomers'), // aka DAG ancestors predecessors: defineDagAllHops({ incoming: true }) }); // Neighbourhood functions ////////////////////////// extend(elesfn$2, { neighborhood: cache(function (selector) { var elements = []; var nodes = this.nodes(); for (var i = 0; i < nodes.length; i++) { // for all nodes var node = nodes[i]; var connectedEdges = node.connectedEdges(); // for each connected edge, add the edge and the other node for (var j = 0; j < connectedEdges.length; j++) { var edge = connectedEdges[j]; var src = edge.source(); var tgt = edge.target(); var otherNode = node === src ? tgt : src; // need check in case of loop if (otherNode.length > 0) { elements.push(otherNode[0]); // add node 1 hop away } // add connected edge elements.push(edge[0]); } } return this.spawn(elements, true).filter(selector); }, 'neighborhood'), closedNeighborhood: function closedNeighborhood(selector) { return this.neighborhood().add(this).filter(selector); }, openNeighborhood: function openNeighborhood(selector) { return this.neighborhood(selector); } }); // aliases elesfn$2.neighbourhood = elesfn$2.neighborhood; elesfn$2.closedNeighbourhood = elesfn$2.closedNeighborhood; elesfn$2.openNeighbourhood = elesfn$2.openNeighborhood; // Edge functions ///////////////// extend(elesfn$2, { source: cache(function sourceImpl(selector) { var ele = this[0]; var src; if (ele) { src = ele._private.source || ele.cy().collection(); } return src && selector ? src.filter(selector) : src; }, 'source'), target: cache(function targetImpl(selector) { var ele = this[0]; var tgt; if (ele) { tgt = ele._private.target || ele.cy().collection(); } return tgt && selector ? tgt.filter(selector) : tgt; }, 'target'), sources: defineSourceFunction({ attr: 'source' }), targets: defineSourceFunction({ attr: 'target' }) }); function defineSourceFunction(params) { return function sourceImpl(selector) { var sources = []; for (var i = 0; i < this.length; i++) { var ele = this[i]; var src = ele._private[params.attr]; if (src) { sources.push(src); } } return this.spawn(sources, true).filter(selector); }; } extend(elesfn$2, { edgesWith: cache(defineEdgesWithFunction(), 'edgesWith'), edgesTo: cache(defineEdgesWithFunction({ thisIsSrc: true }), 'edgesTo') }); function defineEdgesWithFunction(params) { return function edgesWithImpl(otherNodes) { var elements = []; var cy = this._private.cy; var p = params || {}; // get elements if a selector is specified if (string(otherNodes)) { otherNodes = cy.$(otherNodes); } for (var h = 0; h < otherNodes.length; h++) { var edges = otherNodes[h]._private.edges; for (var i = 0; i < edges.length; i++) { var edge = edges[i]; var edgeData = edge._private.data; var thisToOther = this.hasElementWithId(edgeData.source) && otherNodes.hasElementWithId(edgeData.target); var otherToThis = otherNodes.hasElementWithId(edgeData.source) && this.hasElementWithId(edgeData.target); var edgeConnectsThisAndOther = thisToOther || otherToThis; if (!edgeConnectsThisAndOther) { continue; } if (p.thisIsSrc || p.thisIsTgt) { if (p.thisIsSrc && !thisToOther) { continue; } if (p.thisIsTgt && !otherToThis) { continue; } } elements.push(edge); } } return this.spawn(elements, true); }; } extend(elesfn$2, { connectedEdges: cache(function (selector) { var retEles = []; var eles = this; for (var i = 0; i < eles.length; i++) { var node = eles[i]; if (!node.isNode()) { continue; } var edges = node._private.edges; for (var j = 0; j < edges.length; j++) { var edge = edges[j]; retEles.push(edge); } } return this.spawn(retEles, true).filter(selector); }, 'connectedEdges'), connectedNodes: cache(function (selector) { var retEles = []; var eles = this; for (var i = 0; i < eles.length; i++) { var edge = eles[i]; if (!edge.isEdge()) { continue; } retEles.push(edge.source()[0]); retEles.push(edge.target()[0]); } return this.spawn(retEles, true).filter(selector); }, 'connectedNodes'), parallelEdges: cache(defineParallelEdgesFunction(), 'parallelEdges'), codirectedEdges: cache(defineParallelEdgesFunction({ codirected: true }), 'codirectedEdges') }); function defineParallelEdgesFunction(params) { var defaults = { codirected: false }; params = extend({}, defaults, params); return function parallelEdgesImpl(selector) { // micro-optimised for renderer var elements = []; var edges = this.edges(); var p = params; // look at all the edges in the collection for (var i = 0; i < edges.length; i++) { var edge1 = edges[i]; var edge1_p = edge1._private; var src1 = edge1_p.source; var srcid1 = src1._private.data.id; var tgtid1 = edge1_p.data.target; var srcEdges1 = src1._private.edges; // look at edges connected to the src node of this edge for (var j = 0; j < srcEdges1.length; j++) { var edge2 = srcEdges1[j]; var edge2data = edge2._private.data; var tgtid2 = edge2data.target; var srcid2 = edge2data.source; var codirected = tgtid2 === tgtid1 && srcid2 === srcid1; var oppdirected = srcid1 === tgtid2 && tgtid1 === srcid2; if (p.codirected && codirected || !p.codirected && (codirected || oppdirected)) { elements.push(edge2); } } } return this.spawn(elements, true).filter(selector); }; } // Misc functions ///////////////// extend(elesfn$2, { components: function components(root) { var self = this; var cy = self.cy(); var visited = cy.collection(); var unvisited = root == null ? self.nodes() : root.nodes(); var components = []; if (root != null && unvisited.empty()) { // root may contain only edges unvisited = root.sources(); // doesn't matter which node to use (undirected), so just use the source sides } var visitInComponent = function visitInComponent(node, component) { visited.merge(node); unvisited.unmerge(node); component.merge(node); }; if (unvisited.empty()) { return self.spawn(); } var _loop = function _loop() { // each iteration yields a component var cmpt = cy.collection(); components.push(cmpt); var root = unvisited[0]; visitInComponent(root, cmpt); self.bfs({ directed: false, roots: root, visit: function visit(v) { return visitInComponent(v, cmpt); } }); cmpt.forEach(function (node) { node.connectedEdges().forEach(function (e) { // connectedEdges() usually cached if (self.has(e) && cmpt.has(e.source()) && cmpt.has(e.target())) { // has() is cheap cmpt.merge(e); // forEach() only considers nodes -- sets N at call time } }); }); }; do { _loop(); } while (unvisited.length > 0); return components; }, component: function component() { var ele = this[0]; return ele.cy().mutableElements().components(ele)[0]; } }); elesfn$2.componentsOf = elesfn$2.components; // represents a set of nodes, edges, or both together var Collection = function Collection(cy, elements) { var unique = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false; var removed = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false; if (cy === undefined) { error('A collection must have a reference to the core'); return; } var map = new Map$2(); var createdElements = false; if (!elements) { elements = []; } else if (elements.length > 0 && plainObject(elements[0]) && !element(elements[0])) { createdElements = true; // make elements from json and restore all at once later var eles = []; var elesIds = new Set$1(); for (var i = 0, l = elements.length; i < l; i++) { var json = elements[i]; if (json.data == null) { json.data = {}; } var _data = json.data; // make sure newly created elements have valid ids if (_data.id == null) { _data.id = uuid(); } else if (cy.hasElementWithId(_data.id) || elesIds.has(_data.id)) { continue; // can't create element if prior id already exists } var ele = new Element(cy, json, false); eles.push(ele); elesIds.add(_data.id); } elements = eles; } this.length = 0; for (var _i = 0, _l = elements.length; _i < _l; _i++) { var element$1 = elements[_i][0]; // [0] in case elements is an array of collections, rather than array of elements if (element$1 == null) { continue; } var id = element$1._private.data.id; if (!unique || !map.has(id)) { if (unique) { map.set(id, { index: this.length, ele: element$1 }); } this[this.length] = element$1; this.length++; } } this._private = { eles: this, cy: cy, get map() { if (this.lazyMap == null) { this.rebuildMap(); } return this.lazyMap; }, set map(m) { this.lazyMap = m; }, rebuildMap: function rebuildMap() { var m = this.lazyMap = new Map$2(); var eles = this.eles; for (var _i2 = 0; _i2 < eles.length; _i2++) { var _ele = eles[_i2]; m.set(_ele.id(), { index: _i2, ele: _ele }); } } }; if (unique) { this._private.map = map; } // restore the elements if we created them from json if (createdElements && !removed) { this.restore(); } }; // Functions //////////////////////////////////////////////////////////////////////////////////////////////////// // keep the prototypes in sync (an element has the same functions as a collection) // and use elefn and elesfn as shorthands to the prototypes var elesfn$1 = Element.prototype = Collection.prototype = Object.create(Array.prototype); elesfn$1.instanceString = function () { return 'collection'; }; elesfn$1.spawn = function (eles, unique) { return new Collection(this.cy(), eles, unique); }; elesfn$1.spawnSelf = function () { return this.spawn(this); }; elesfn$1.cy = function () { return this._private.cy; }; elesfn$1.renderer = function () { return this._private.cy.renderer(); }; elesfn$1.element = function () { return this[0]; }; elesfn$1.collection = function () { if (collection(this)) { return this; } else { // an element return new Collection(this._private.cy, [this]); } }; elesfn$1.unique = function () { return new Collection(this._private.cy, this, true); }; elesfn$1.hasElementWithId = function (id) { id = '' + id; // id must be string return this._private.map.has(id); }; elesfn$1.getElementById = function (id) { id = '' + id; // id must be string var cy = this._private.cy; var entry = this._private.map.get(id); return entry ? entry.ele : new Collection(cy); // get ele or empty collection }; elesfn$1.$id = elesfn$1.getElementById; elesfn$1.poolIndex = function () { var cy = this._private.cy; var eles = cy._private.elements; var id = this[0]._private.data.id; return eles._private.map.get(id).index; }; elesfn$1.indexOf = function (ele) { var id = ele[0]._private.data.id; return this._private.map.get(id).index; }; elesfn$1.indexOfId = function (id) { id = '' + id; // id must be string return this._private.map.get(id).index; }; elesfn$1.json = function (obj) { var ele = this.element(); var cy = this.cy(); if (ele == null && obj) { return this; } // can't set to no eles if (ele == null) { return undefined; } // can't get from no eles var p = ele._private; if (plainObject(obj)) { // set cy.startBatch(); if (obj.data) { ele.data(obj.data); var _data2 = p.data; if (ele.isEdge()) { // source and target are immutable via data() var move = false; var spec = {}; var src = obj.data.source; var tgt = obj.data.target; if (src != null && src != _data2.source) { spec.source = '' + src; // id must be string move = true; } if (tgt != null && tgt != _data2.target) { spec.target = '' + tgt; // id must be string move = true; } if (move) { ele = ele.move(spec); } } else { // parent is immutable via data() var newParentValSpecd = ('parent' in obj.data); var parent = obj.data.parent; if (newParentValSpecd && (parent != null || _data2.parent != null) && parent != _data2.parent) { if (parent === undefined) { // can't set undefined imperatively, so use null parent = null; } if (parent != null) { parent = '' + parent; // id must be string } ele = ele.move({ parent: parent }); } } } if (obj.position) { ele.position(obj.position); } // ignore group -- immutable var checkSwitch = function checkSwitch(k, trueFnName, falseFnName) { var obj_k = obj[k]; if (obj_k != null && obj_k !== p[k]) { if (obj_k) { ele[trueFnName](); } else { ele[falseFnName](); } } }; checkSwitch('removed', 'remove', 'restore'); checkSwitch('selected', 'select', 'unselect'); checkSwitch('selectable', 'selectify', 'unselectify'); checkSwitch('locked', 'lock', 'unlock'); checkSwitch('grabbable', 'grabify', 'ungrabify'); checkSwitch('pannable', 'panify', 'unpanify'); if (obj.classes != null) { ele.classes(obj.classes); } cy.endBatch(); return this; } else if (obj === undefined) { // get var json = { data: copy(p.data), position: copy(p.position), group: p.group, removed: p.removed, selected: p.selected, selectable: p.selectable, locked: p.locked, grabbable: p.grabbable, pannable: p.pannable, classes: null }; json.classes = ''; var i = 0; p.classes.forEach(function (cls) { return json.classes += i++ === 0 ? cls : ' ' + cls; }); return json; } }; elesfn$1.jsons = function () { var jsons = []; for (var i = 0; i < this.length; i++) { var ele = this[i]; var json = ele.json(); jsons.push(json); } return jsons; }; elesfn$1.clone = function () { var cy = this.cy(); var elesArr = []; for (var i = 0; i < this.length; i++) { var ele = this[i]; var json = ele.json(); var clone = new Element(cy, json, false); // NB no restore elesArr.push(clone); } return new Collection(cy, elesArr); }; elesfn$1.copy = elesfn$1.clone; elesfn$1.restore = function () { var notifyRenderer = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true; var addToPool = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; var self = this; var cy = self.cy(); var cy_p = cy._private; // create arrays of nodes and edges, since we need to // restore the nodes first var nodes = []; var edges = []; var elements; for (var _i3 = 0, l = self.length; _i3 < l; _i3++) { var ele = self[_i3]; if (addToPool && !ele.removed()) { // don't need to handle this ele continue; } // keep nodes first in the array and edges after if (ele.isNode()) { // put to front of array if node nodes.push(ele); } else { // put to end of array if edge edges.push(ele); } } elements = nodes.concat(edges); var i; var removeFromElements = function removeFromElements() { elements.splice(i, 1); i--; }; // now, restore each element for (i = 0; i < elements.length; i++) { var _ele2 = elements[i]; var _private = _ele2._private; var _data3 = _private.data; // the traversal cache should start fresh when ele is added _ele2.clearTraversalCache(); // set id and validate if (!addToPool && !_private.removed) ; else if (_data3.id === undefined) { _data3.id = uuid(); } else if (number$1(_data3.id)) { _data3.id = '' + _data3.id; // now it's a string } else if (emptyString(_data3.id) || !string(_data3.id)) { error('Can not create element with invalid string ID `' + _data3.id + '`'); // can't create element if it has empty string as id or non-string id removeFromElements(); continue; } else if (cy.hasElementWithId(_data3.id)) { error('Can not create second element with ID `' + _data3.id + '`'); // can't create element if one already has that id removeFromElements(); continue; } var id = _data3.id; // id is finalised, now let's keep a ref if (_ele2.isNode()) { // extra checks for nodes var pos = _private.position; // make sure the nodes have a defined position if (pos.x == null) { pos.x = 0; } if (pos.y == null) { pos.y = 0; } } if (_ele2.isEdge()) { // extra checks for edges var edge = _ele2; var fields = ['source', 'target']; var fieldsLength = fields.length; var badSourceOrTarget = false; for (var j = 0; j < fieldsLength; j++) { var field = fields[j]; var val = _data3[field]; if (number$1(val)) { val = _data3[field] = '' + _data3[field]; // now string } if (val == null || val === '') { // can't create if source or target is not defined properly error('Can not create edge `' + id + '` with unspecified ' + field); badSourceOrTarget = true; } else if (!cy.hasElementWithId(val)) { // can't create edge if one of its nodes doesn't exist error('Can not create edge `' + id + '` with nonexistant ' + field + ' `' + val + '`'); badSourceOrTarget = true; } } if (badSourceOrTarget) { removeFromElements(); continue; } // can't create this var src = cy.getElementById(_data3.source); var tgt = cy.getElementById(_data3.target); // only one edge in node if loop if (src.same(tgt)) { src._private.edges.push(edge); } else { src._private.edges.push(edge); tgt._private.edges.push(edge); } edge._private.source = src; edge._private.target = tgt; } // if is edge // create mock ids / indexes maps for element so it can be used like collections _private.map = new Map$2(); _private.map.set(id, { ele: _ele2, index: 0 }); _private.removed = false; if (addToPool) { cy.addToPool(_ele2); } } // for each element // do compound node sanity checks for (var _i4 = 0; _i4 < nodes.length; _i4++) { // each node var node = nodes[_i4]; var _data4 = node._private.data; if (number$1(_data4.parent)) { // then automake string _data4.parent = '' + _data4.parent; } var parentId = _data4.parent; var specifiedParent = parentId != null; if (specifiedParent || node._private.parent) { var parent = node._private.parent ? cy.collection().merge(node._private.parent) : cy.getElementById(parentId); if (parent.empty()) { // non-existant parent; just remove it _data4.parent = undefined; } else if (parent[0].removed()) { warn('Node added with missing parent, reference to parent removed'); _data4.parent = undefined; node._private.parent = null; } else { var selfAsParent = false; var ancestor = parent; while (!ancestor.empty()) { if (node.same(ancestor)) { // mark self as parent and remove from data selfAsParent = true; _data4.parent = undefined; // remove parent reference // exit or we loop forever break; } ancestor = ancestor.parent(); } if (!selfAsParent) { // connect with children parent[0]._private.children.push(node); node._private.parent = parent[0]; // let the core know we have a compound graph cy_p.hasCompoundNodes = true; } } // else } // if specified parent } // for each node if (elements.length > 0) { var restored = elements.length === self.length ? self : new Collection(cy, elements); for (var _i5 = 0; _i5 < restored.length; _i5++) { var _ele3 = restored[_i5]; if (_ele3.isNode()) { continue; } // adding an edge invalidates the traversal caches for the parallel edges _ele3.parallelEdges().clearTraversalCache(); // adding an edge invalidates the traversal cache for the connected nodes _ele3.source().clearTraversalCache(); _ele3.target().clearTraversalCache(); } var toUpdateStyle; if (cy_p.hasCompoundNodes) { toUpdateStyle = cy.collection().merge(restored).merge(restored.connectedNodes()).merge(restored.parent()); } else { toUpdateStyle = restored; } toUpdateStyle.dirtyCompoundBoundsCache().dirtyBoundingBoxCache().updateStyle(notifyRenderer); if (notifyRenderer) { restored.emitAndNotify('add'); } else if (addToPool) { restored.emit('add'); } } return self; // chainability }; elesfn$1.removed = function () { var ele = this[0]; return ele && ele._private.removed; }; elesfn$1.inside = function () { var ele = this[0]; return ele && !ele._private.removed; }; elesfn$1.remove = function () { var notifyRenderer = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true; var removeFromPool = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; var self = this; var elesToRemove = []; var elesToRemoveIds = {}; var cy = self._private.cy; // add connected edges function addConnectedEdges(node) { var edges = node._private.edges; for (var i = 0; i < edges.length; i++) { add(edges[i]); } } // add descendant nodes function addChildren(node) { var children = node._private.children; for (var i = 0; i < children.length; i++) { add(children[i]); } } function add(ele) { var alreadyAdded = elesToRemoveIds[ele.id()]; if (removeFromPool && ele.removed() || alreadyAdded) { return; } else { elesToRemoveIds[ele.id()] = true; } if (ele.isNode()) { elesToRemove.push(ele); // nodes are removed last addConnectedEdges(ele); addChildren(ele); } else { elesToRemove.unshift(ele); // edges are removed first } } // make the list of elements to remove // (may be removing more than specified due to connected edges etc) for (var i = 0, l = self.length; i < l; i++) { var ele = self[i]; add(ele); } function removeEdgeRef(node, edge) { var connectedEdges = node._private.edges; removeFromArray(connectedEdges, edge); // removing an edges invalidates the traversal cache for its nodes node.clearTraversalCache(); } function removeParallelRef(pllEdge) { // removing an edge invalidates the traversal caches for the parallel edges pllEdge.clearTraversalCache(); } var alteredParents = []; alteredParents.ids = {}; function removeChildRef(parent, ele) { ele = ele[0]; parent = parent[0]; var children = parent._private.children; var pid = parent.id(); removeFromArray(children, ele); // remove parent => child ref ele._private.parent = null; // remove child => parent ref if (!alteredParents.ids[pid]) { alteredParents.ids[pid] = true; alteredParents.push(parent); } } self.dirtyCompoundBoundsCache(); if (removeFromPool) { cy.removeFromPool(elesToRemove); // remove from core pool } for (var _i6 = 0; _i6 < elesToRemove.length; _i6++) { var _ele4 = elesToRemove[_i6]; if (_ele4.isEdge()) { // remove references to this edge in its connected nodes var src = _ele4.source()[0]; var tgt = _ele4.target()[0]; removeEdgeRef(src, _ele4); removeEdgeRef(tgt, _ele4); var pllEdges = _ele4.parallelEdges(); for (var j = 0; j < pllEdges.length; j++) { var pllEdge = pllEdges[j]; removeParallelRef(pllEdge); if (pllEdge.isBundledBezier()) { pllEdge.dirtyBoundingBoxCache(); } } } else { // remove reference to parent var parent = _ele4.parent(); if (parent.length !== 0) { removeChildRef(parent, _ele4); } } if (removeFromPool) { // mark as removed _ele4._private.removed = true; } } // check to see if we have a compound graph or not var elesStillInside = cy._private.elements; cy._private.hasCompoundNodes = false; for (var _i7 = 0; _i7 < elesStillInside.length; _i7++) { var _ele5 = elesStillInside[_i7]; if (_ele5.isParent()) { cy._private.hasCompoundNodes = true; break; } } var removedElements = new Collection(this.cy(), elesToRemove); if (removedElements.size() > 0) { // must manually notify since trigger won't do this automatically once removed if (notifyRenderer) { removedElements.emitAndNotify('remove'); } else if (removeFromPool) { removedElements.emit('remove'); } } // the parents who were modified by the removal need their style updated for (var _i8 = 0; _i8 < alteredParents.length; _i8++) { var _ele6 = alteredParents[_i8]; if (!removeFromPool || !_ele6.removed()) { _ele6.updateStyle(); } } return removedElements; }; elesfn$1.move = function (struct) { var cy = this._private.cy; var eles = this; // just clean up refs, caches, etc. in the same way as when removing and then restoring // (our calls to remove/restore do not remove from the graph or make events) var notifyRenderer = false; var modifyPool = false; var toString = function toString(id) { return id == null ? id : '' + id; }; // id must be string if (struct.source !== undefined || struct.target !== undefined) { var srcId = toString(struct.source); var tgtId = toString(struct.target); var srcExists = srcId != null && cy.hasElementWithId(srcId); var tgtExists = tgtId != null && cy.hasElementWithId(tgtId); if (srcExists || tgtExists) { cy.batch(function () { // avoid duplicate style updates eles.remove(notifyRenderer, modifyPool); // clean up refs etc. eles.emitAndNotify('moveout'); for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var _data5 = ele._private.data; if (ele.isEdge()) { if (srcExists) { _data5.source = srcId; } if (tgtExists) { _data5.target = tgtId; } } } eles.restore(notifyRenderer, modifyPool); // make new refs, style, etc. }); eles.emitAndNotify('move'); } } else if (struct.parent !== undefined) { // move node to new parent var parentId = toString(struct.parent); var parentExists = parentId === null || cy.hasElementWithId(parentId); if (parentExists) { var pidToAssign = parentId === null ? undefined : parentId; cy.batch(function () { // avoid duplicate style updates var updated = eles.remove(notifyRenderer, modifyPool); // clean up refs etc. updated.emitAndNotify('moveout'); for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var _data6 = ele._private.data; if (ele.isNode()) { _data6.parent = pidToAssign; } } updated.restore(notifyRenderer, modifyPool); // make new refs, style, etc. }); eles.emitAndNotify('move'); } } return this; }; [elesfn$j, elesfn$i, elesfn$h, elesfn$g, elesfn$f, data, elesfn$d, dimensions, elesfn$9, elesfn$8, elesfn$7, elesfn$6, elesfn$5, elesfn$4, elesfn$3, elesfn$2].forEach(function (props) { extend(elesfn$1, props); }); var corefn$9 = { add: function add(opts) { var elements; var cy = this; // add the elements if (elementOrCollection(opts)) { var eles = opts; if (eles._private.cy === cy) { // same instance => just restore elements = eles.restore(); } else { // otherwise, copy from json var jsons = []; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; jsons.push(ele.json()); } elements = new Collection(cy, jsons); } } // specify an array of options else if (array(opts)) { var _jsons = opts; elements = new Collection(cy, _jsons); } // specify via opts.nodes and opts.edges else if (plainObject(opts) && (array(opts.nodes) || array(opts.edges))) { var elesByGroup = opts; var _jsons2 = []; var grs = ['nodes', 'edges']; for (var _i = 0, il = grs.length; _i < il; _i++) { var group = grs[_i]; var elesArray = elesByGroup[group]; if (array(elesArray)) { for (var j = 0, jl = elesArray.length; j < jl; j++) { var json = extend({ group: group }, elesArray[j]); _jsons2.push(json); } } } elements = new Collection(cy, _jsons2); } // specify options for one element else { var _json = opts; elements = new Element(cy, _json).collection(); } return elements; }, remove: function remove(collection) { if (elementOrCollection(collection)) ; else if (string(collection)) { var selector = collection; collection = this.$(selector); } return collection.remove(); } }; /* global Float32Array */ /*! Bezier curve function generator. Copyright Gaetan Renaudeau. MIT License: http://en.wikipedia.org/wiki/MIT_License */ function generateCubicBezier(mX1, mY1, mX2, mY2) { var NEWTON_ITERATIONS = 4, NEWTON_MIN_SLOPE = 0.001, SUBDIVISION_PRECISION = 0.0000001, SUBDIVISION_MAX_ITERATIONS = 10, kSplineTableSize = 11, kSampleStepSize = 1.0 / (kSplineTableSize - 1.0), float32ArraySupported = typeof Float32Array !== 'undefined'; /* Must contain four arguments. */ if (arguments.length !== 4) { return false; } /* Arguments must be numbers. */ for (var i = 0; i < 4; ++i) { if (typeof arguments[i] !== "number" || isNaN(arguments[i]) || !isFinite(arguments[i])) { return false; } } /* X values must be in the [0, 1] range. */ mX1 = Math.min(mX1, 1); mX2 = Math.min(mX2, 1); mX1 = Math.max(mX1, 0); mX2 = Math.max(mX2, 0); var mSampleValues = float32ArraySupported ? new Float32Array(kSplineTableSize) : new Array(kSplineTableSize); function A(aA1, aA2) { return 1.0 - 3.0 * aA2 + 3.0 * aA1; } function B(aA1, aA2) { return 3.0 * aA2 - 6.0 * aA1; } function C(aA1) { return 3.0 * aA1; } function calcBezier(aT, aA1, aA2) { return ((A(aA1, aA2) * aT + B(aA1, aA2)) * aT + C(aA1)) * aT; } function getSlope(aT, aA1, aA2) { return 3.0 * A(aA1, aA2) * aT * aT + 2.0 * B(aA1, aA2) * aT + C(aA1); } function newtonRaphsonIterate(aX, aGuessT) { for (var _i = 0; _i < NEWTON_ITERATIONS; ++_i) { var currentSlope = getSlope(aGuessT, mX1, mX2); if (currentSlope === 0.0) { return aGuessT; } var currentX = calcBezier(aGuessT, mX1, mX2) - aX; aGuessT -= currentX / currentSlope; } return aGuessT; } function calcSampleValues() { for (var _i2 = 0; _i2 < kSplineTableSize; ++_i2) { mSampleValues[_i2] = calcBezier(_i2 * kSampleStepSize, mX1, mX2); } } function binarySubdivide(aX, aA, aB) { var currentX, currentT, i = 0; do { currentT = aA + (aB - aA) / 2.0; currentX = calcBezier(currentT, mX1, mX2) - aX; if (currentX > 0.0) { aB = currentT; } else { aA = currentT; } } while (Math.abs(currentX) > SUBDIVISION_PRECISION && ++i < SUBDIVISION_MAX_ITERATIONS); return currentT; } function getTForX(aX) { var intervalStart = 0.0, currentSample = 1, lastSample = kSplineTableSize - 1; for (; currentSample !== lastSample && mSampleValues[currentSample] <= aX; ++currentSample) { intervalStart += kSampleStepSize; } --currentSample; var dist = (aX - mSampleValues[currentSample]) / (mSampleValues[currentSample + 1] - mSampleValues[currentSample]), guessForT = intervalStart + dist * kSampleStepSize, initialSlope = getSlope(guessForT, mX1, mX2); if (initialSlope >= NEWTON_MIN_SLOPE) { return newtonRaphsonIterate(aX, guessForT); } else if (initialSlope === 0.0) { return guessForT; } else { return binarySubdivide(aX, intervalStart, intervalStart + kSampleStepSize); } } var _precomputed = false; function precompute() { _precomputed = true; if (mX1 !== mY1 || mX2 !== mY2) { calcSampleValues(); } } var f = function f(aX) { if (!_precomputed) { precompute(); } if (mX1 === mY1 && mX2 === mY2) { return aX; } if (aX === 0) { return 0; } if (aX === 1) { return 1; } return calcBezier(getTForX(aX), mY1, mY2); }; f.getControlPoints = function () { return [{ x: mX1, y: mY1 }, { x: mX2, y: mY2 }]; }; var str = "generateBezier(" + [mX1, mY1, mX2, mY2] + ")"; f.toString = function () { return str; }; return f; } /*! Runge-Kutta spring physics function generator. Adapted from Framer.js, copyright Koen Bok. MIT License: http://en.wikipedia.org/wiki/MIT_License */ /* Given a tension, friction, and duration, a simulation at 60FPS will first run without a defined duration in order to calculate the full path. A second pass then adjusts the time delta -- using the relation between actual time and duration -- to calculate the path for the duration-constrained animation. */ var generateSpringRK4 = function () { function springAccelerationForState(state) { return -state.tension * state.x - state.friction * state.v; } function springEvaluateStateWithDerivative(initialState, dt, derivative) { var state = { x: initialState.x + derivative.dx * dt, v: initialState.v + derivative.dv * dt, tension: initialState.tension, friction: initialState.friction }; return { dx: state.v, dv: springAccelerationForState(state) }; } function springIntegrateState(state, dt) { var a = { dx: state.v, dv: springAccelerationForState(state) }, b = springEvaluateStateWithDerivative(state, dt * 0.5, a), c = springEvaluateStateWithDerivative(state, dt * 0.5, b), d = springEvaluateStateWithDerivative(state, dt, c), dxdt = 1.0 / 6.0 * (a.dx + 2.0 * (b.dx + c.dx) + d.dx), dvdt = 1.0 / 6.0 * (a.dv + 2.0 * (b.dv + c.dv) + d.dv); state.x = state.x + dxdt * dt; state.v = state.v + dvdt * dt; return state; } return function springRK4Factory(tension, friction, duration) { var initState = { x: -1, v: 0, tension: null, friction: null }, path = [0], time_lapsed = 0, tolerance = 1 / 10000, DT = 16 / 1000, have_duration, dt, last_state; tension = parseFloat(tension) || 500; friction = parseFloat(friction) || 20; duration = duration || null; initState.tension = tension; initState.friction = friction; have_duration = duration !== null; /* Calculate the actual time it takes for this animation to complete with the provided conditions. */ if (have_duration) { /* Run the simulation without a duration. */ time_lapsed = springRK4Factory(tension, friction); /* Compute the adjusted time delta. */ dt = time_lapsed / duration * DT; } else { dt = DT; } for (;;) { /* Next/step function .*/ last_state = springIntegrateState(last_state || initState, dt); /* Store the position. */ path.push(1 + last_state.x); time_lapsed += 16; /* If the change threshold is reached, break. */ if (!(Math.abs(last_state.x) > tolerance && Math.abs(last_state.v) > tolerance)) { break; } } /* If duration is not defined, return the actual time required for completing this animation. Otherwise, return a closure that holds the computed path and returns a snapshot of the position according to a given percentComplete. */ return !have_duration ? time_lapsed : function (percentComplete) { return path[percentComplete * (path.length - 1) | 0]; }; }; }(); var cubicBezier = function cubicBezier(t1, p1, t2, p2) { var bezier = generateCubicBezier(t1, p1, t2, p2); return function (start, end, percent) { return start + (end - start) * bezier(percent); }; }; var easings = { 'linear': function linear(start, end, percent) { return start + (end - start) * percent; }, // default easings 'ease': cubicBezier(0.25, 0.1, 0.25, 1), 'ease-in': cubicBezier(0.42, 0, 1, 1), 'ease-out': cubicBezier(0, 0, 0.58, 1), 'ease-in-out': cubicBezier(0.42, 0, 0.58, 1), // sine 'ease-in-sine': cubicBezier(0.47, 0, 0.745, 0.715), 'ease-out-sine': cubicBezier(0.39, 0.575, 0.565, 1), 'ease-in-out-sine': cubicBezier(0.445, 0.05, 0.55, 0.95), // quad 'ease-in-quad': cubicBezier(0.55, 0.085, 0.68, 0.53), 'ease-out-quad': cubicBezier(0.25, 0.46, 0.45, 0.94), 'ease-in-out-quad': cubicBezier(0.455, 0.03, 0.515, 0.955), // cubic 'ease-in-cubic': cubicBezier(0.55, 0.055, 0.675, 0.19), 'ease-out-cubic': cubicBezier(0.215, 0.61, 0.355, 1), 'ease-in-out-cubic': cubicBezier(0.645, 0.045, 0.355, 1), // quart 'ease-in-quart': cubicBezier(0.895, 0.03, 0.685, 0.22), 'ease-out-quart': cubicBezier(0.165, 0.84, 0.44, 1), 'ease-in-out-quart': cubicBezier(0.77, 0, 0.175, 1), // quint 'ease-in-quint': cubicBezier(0.755, 0.05, 0.855, 0.06), 'ease-out-quint': cubicBezier(0.23, 1, 0.32, 1), 'ease-in-out-quint': cubicBezier(0.86, 0, 0.07, 1), // expo 'ease-in-expo': cubicBezier(0.95, 0.05, 0.795, 0.035), 'ease-out-expo': cubicBezier(0.19, 1, 0.22, 1), 'ease-in-out-expo': cubicBezier(1, 0, 0, 1), // circ 'ease-in-circ': cubicBezier(0.6, 0.04, 0.98, 0.335), 'ease-out-circ': cubicBezier(0.075, 0.82, 0.165, 1), 'ease-in-out-circ': cubicBezier(0.785, 0.135, 0.15, 0.86), // user param easings... 'spring': function spring(tension, friction, duration) { if (duration === 0) { // can't get a spring w/ duration 0 return easings.linear; // duration 0 => jump to end so impl doesn't matter } var spring = generateSpringRK4(tension, friction, duration); return function (start, end, percent) { return start + (end - start) * spring(percent); }; }, 'cubic-bezier': cubicBezier }; function getEasedValue(type, start, end, percent, easingFn) { if (percent === 1) { return end; } if (start === end) { return end; } var val = easingFn(start, end, percent); if (type == null) { return val; } if (type.roundValue || type.color) { val = Math.round(val); } if (type.min !== undefined) { val = Math.max(val, type.min); } if (type.max !== undefined) { val = Math.min(val, type.max); } return val; } function getValue(prop, spec) { if (prop.pfValue != null || prop.value != null) { if (prop.pfValue != null && (spec == null || spec.type.units !== '%')) { return prop.pfValue; } else { return prop.value; } } else { return prop; } } function ease(startProp, endProp, percent, easingFn, propSpec) { var type = propSpec != null ? propSpec.type : null; if (percent < 0) { percent = 0; } else if (percent > 1) { percent = 1; } var start = getValue(startProp, propSpec); var end = getValue(endProp, propSpec); if (number$1(start) && number$1(end)) { return getEasedValue(type, start, end, percent, easingFn); } else if (array(start) && array(end)) { var easedArr = []; for (var i = 0; i < end.length; i++) { var si = start[i]; var ei = end[i]; if (si != null && ei != null) { var val = getEasedValue(type, si, ei, percent, easingFn); easedArr.push(val); } else { easedArr.push(ei); } } return easedArr; } return undefined; } function step$1(self, ani, now, isCore) { var isEles = !isCore; var _p = self._private; var ani_p = ani._private; var pEasing = ani_p.easing; var startTime = ani_p.startTime; var cy = isCore ? self : self.cy(); var style = cy.style(); if (!ani_p.easingImpl) { if (pEasing == null) { // use default ani_p.easingImpl = easings['linear']; } else { // then define w/ name var easingVals; if (string(pEasing)) { var easingProp = style.parse('transition-timing-function', pEasing); easingVals = easingProp.value; } else { // then assume preparsed array easingVals = pEasing; } var name, args; if (string(easingVals)) { name = easingVals; args = []; } else { name = easingVals[1]; args = easingVals.slice(2).map(function (n) { return +n; }); } if (args.length > 0) { // create with args if (name === 'spring') { args.push(ani_p.duration); // need duration to generate spring } ani_p.easingImpl = easings[name].apply(null, args); } else { // static impl by name ani_p.easingImpl = easings[name]; } } } var easing = ani_p.easingImpl; var percent; if (ani_p.duration === 0) { percent = 1; } else { percent = (now - startTime) / ani_p.duration; } if (ani_p.applying) { percent = ani_p.progress; } if (percent < 0) { percent = 0; } else if (percent > 1) { percent = 1; } if (ani_p.delay == null) { // then update var startPos = ani_p.startPosition; var endPos = ani_p.position; if (endPos && isEles && !self.locked()) { var newPos = {}; if (valid(startPos.x, endPos.x)) { newPos.x = ease(startPos.x, endPos.x, percent, easing); } if (valid(startPos.y, endPos.y)) { newPos.y = ease(startPos.y, endPos.y, percent, easing); } self.position(newPos); } var startPan = ani_p.startPan; var endPan = ani_p.pan; var pan = _p.pan; var animatingPan = endPan != null && isCore; if (animatingPan) { if (valid(startPan.x, endPan.x)) { pan.x = ease(startPan.x, endPan.x, percent, easing); } if (valid(startPan.y, endPan.y)) { pan.y = ease(startPan.y, endPan.y, percent, easing); } self.emit('pan'); } var startZoom = ani_p.startZoom; var endZoom = ani_p.zoom; var animatingZoom = endZoom != null && isCore; if (animatingZoom) { if (valid(startZoom, endZoom)) { _p.zoom = bound(_p.minZoom, ease(startZoom, endZoom, percent, easing), _p.maxZoom); } self.emit('zoom'); } if (animatingPan || animatingZoom) { self.emit('viewport'); } var props = ani_p.style; if (props && props.length > 0 && isEles) { for (var i = 0; i < props.length; i++) { var prop = props[i]; var _name = prop.name; var end = prop; var start = ani_p.startStyle[_name]; var propSpec = style.properties[start.name]; var easedVal = ease(start, end, percent, easing, propSpec); style.overrideBypass(self, _name, easedVal); } // for props self.emit('style'); } // if } ani_p.progress = percent; return percent; } function valid(start, end) { if (start == null || end == null) { return false; } if (number$1(start) && number$1(end)) { return true; } else if (start && end) { return true; } return false; } function startAnimation(self, ani, now, isCore) { var ani_p = ani._private; ani_p.started = true; ani_p.startTime = now - ani_p.progress * ani_p.duration; } function stepAll(now, cy) { var eles = cy._private.aniEles; var doneEles = []; function stepOne(ele, isCore) { var _p = ele._private; var current = _p.animation.current; var queue = _p.animation.queue; var ranAnis = false; // if nothing currently animating, get something from the queue if (current.length === 0) { var next = queue.shift(); if (next) { current.push(next); } } var callbacks = function callbacks(_callbacks) { for (var j = _callbacks.length - 1; j >= 0; j--) { var cb = _callbacks[j]; cb(); } _callbacks.splice(0, _callbacks.length); }; // step and remove if done for (var i = current.length - 1; i >= 0; i--) { var ani = current[i]; var ani_p = ani._private; if (ani_p.stopped) { current.splice(i, 1); ani_p.hooked = false; ani_p.playing = false; ani_p.started = false; callbacks(ani_p.frames); continue; } if (!ani_p.playing && !ani_p.applying) { continue; } // an apply() while playing shouldn't do anything if (ani_p.playing && ani_p.applying) { ani_p.applying = false; } if (!ani_p.started) { startAnimation(ele, ani, now); } step$1(ele, ani, now, isCore); if (ani_p.applying) { ani_p.applying = false; } callbacks(ani_p.frames); if (ani_p.step != null) { ani_p.step(now); } if (ani.completed()) { current.splice(i, 1); ani_p.hooked = false; ani_p.playing = false; ani_p.started = false; callbacks(ani_p.completes); } ranAnis = true; } if (!isCore && current.length === 0 && queue.length === 0) { doneEles.push(ele); } return ranAnis; } // stepElement // handle all eles var ranEleAni = false; for (var e = 0; e < eles.length; e++) { var ele = eles[e]; var handledThisEle = stepOne(ele); ranEleAni = ranEleAni || handledThisEle; } // each element var ranCoreAni = stepOne(cy, true); // notify renderer if (ranEleAni || ranCoreAni) { if (eles.length > 0) { cy.notify('draw', eles); } else { cy.notify('draw'); } } // remove elements from list of currently animating if its queues are empty eles.unmerge(doneEles); cy.emit('step'); } // stepAll var corefn$8 = { // pull in animation functions animate: define.animate(), animation: define.animation(), animated: define.animated(), clearQueue: define.clearQueue(), delay: define.delay(), delayAnimation: define.delayAnimation(), stop: define.stop(), addToAnimationPool: function addToAnimationPool(eles) { var cy = this; if (!cy.styleEnabled()) { return; } // save cycles when no style used cy._private.aniEles.merge(eles); }, stopAnimationLoop: function stopAnimationLoop() { this._private.animationsRunning = false; }, startAnimationLoop: function startAnimationLoop() { var cy = this; cy._private.animationsRunning = true; if (!cy.styleEnabled()) { return; } // save cycles when no style used // NB the animation loop will exec in headless environments if style enabled // and explicit cy.destroy() is necessary to stop the loop function headlessStep() { if (!cy._private.animationsRunning) { return; } requestAnimationFrame(function animationStep(now) { stepAll(now, cy); headlessStep(); }); } var renderer = cy.renderer(); if (renderer && renderer.beforeRender) { // let the renderer schedule animations renderer.beforeRender(function rendererAnimationStep(willDraw, now) { stepAll(now, cy); }, renderer.beforeRenderPriorities.animations); } else { // manage the animation loop ourselves headlessStep(); // first call } } }; var emitterOptions = { qualifierCompare: function qualifierCompare(selector1, selector2) { if (selector1 == null || selector2 == null) { return selector1 == null && selector2 == null; } else { return selector1.sameText(selector2); } }, eventMatches: function eventMatches(cy, listener, eventObj) { var selector = listener.qualifier; if (selector != null) { return cy !== eventObj.target && element(eventObj.target) && selector.matches(eventObj.target); } return true; }, addEventFields: function addEventFields(cy, evt) { evt.cy = cy; evt.target = cy; }, callbackContext: function callbackContext(cy, listener, eventObj) { return listener.qualifier != null ? eventObj.target : cy; } }; var argSelector = function argSelector(arg) { if (string(arg)) { return new Selector(arg); } else { return arg; } }; var elesfn = { createEmitter: function createEmitter() { var _p = this._private; if (!_p.emitter) { _p.emitter = new Emitter(emitterOptions, this); } return this; }, emitter: function emitter() { return this._private.emitter; }, on: function on(events, selector, callback) { this.emitter().on(events, argSelector(selector), callback); return this; }, removeListener: function removeListener(events, selector, callback) { this.emitter().removeListener(events, argSelector(selector), callback); return this; }, removeAllListeners: function removeAllListeners() { this.emitter().removeAllListeners(); return this; }, one: function one(events, selector, callback) { this.emitter().one(events, argSelector(selector), callback); return this; }, once: function once(events, selector, callback) { this.emitter().one(events, argSelector(selector), callback); return this; }, emit: function emit(events, extraParams) { this.emitter().emit(events, extraParams); return this; }, emitAndNotify: function emitAndNotify(event, eles) { this.emit(event); this.notify(event, eles); return this; } }; define.eventAliasesOn(elesfn); var corefn$7 = { png: function png(options) { var renderer = this._private.renderer; options = options || {}; return renderer.png(options); }, jpg: function jpg(options) { var renderer = this._private.renderer; options = options || {}; options.bg = options.bg || '#fff'; return renderer.jpg(options); } }; corefn$7.jpeg = corefn$7.jpg; var corefn$6 = { layout: function layout(options) { var cy = this; if (options == null) { error('Layout options must be specified to make a layout'); return; } if (options.name == null) { error('A `name` must be specified to make a layout'); return; } var name = options.name; var Layout = cy.extension('layout', name); if (Layout == null) { error('No such layout `' + name + '` found. Did you forget to import it and `cytoscape.use()` it?'); return; } var eles; if (string(options.eles)) { eles = cy.$(options.eles); } else { eles = options.eles != null ? options.eles : cy.$(); } var layout = new Layout(extend({}, options, { cy: cy, eles: eles })); return layout; } }; corefn$6.createLayout = corefn$6.makeLayout = corefn$6.layout; var corefn$5 = { notify: function notify(eventName, eventEles) { var _p = this._private; if (this.batching()) { _p.batchNotifications = _p.batchNotifications || {}; var eles = _p.batchNotifications[eventName] = _p.batchNotifications[eventName] || this.collection(); if (eventEles != null) { eles.merge(eventEles); } return; // notifications are disabled during batching } if (!_p.notificationsEnabled) { return; } // exit on disabled var renderer = this.renderer(); // exit if destroy() called on core or renderer in between frames #1499 #1528 if (this.destroyed() || !renderer) { return; } renderer.notify(eventName, eventEles); }, notifications: function notifications(bool) { var p = this._private; if (bool === undefined) { return p.notificationsEnabled; } else { p.notificationsEnabled = bool ? true : false; } return this; }, noNotifications: function noNotifications(callback) { this.notifications(false); callback(); this.notifications(true); }, batching: function batching() { return this._private.batchCount > 0; }, startBatch: function startBatch() { var _p = this._private; if (_p.batchCount == null) { _p.batchCount = 0; } if (_p.batchCount === 0) { _p.batchStyleEles = this.collection(); _p.batchNotifications = {}; } _p.batchCount++; return this; }, endBatch: function endBatch() { var _p = this._private; if (_p.batchCount === 0) { return this; } _p.batchCount--; if (_p.batchCount === 0) { // update style for dirty eles _p.batchStyleEles.updateStyle(); var renderer = this.renderer(); // notify the renderer of queued eles and event types Object.keys(_p.batchNotifications).forEach(function (eventName) { var eles = _p.batchNotifications[eventName]; if (eles.empty()) { renderer.notify(eventName); } else { renderer.notify(eventName, eles); } }); } return this; }, batch: function batch(callback) { this.startBatch(); callback(); this.endBatch(); return this; }, // for backwards compatibility batchData: function batchData(map) { var cy = this; return this.batch(function () { var ids = Object.keys(map); for (var i = 0; i < ids.length; i++) { var id = ids[i]; var data = map[id]; var ele = cy.getElementById(id); ele.data(data); } }); } }; var rendererDefaults = defaults$g({ hideEdgesOnViewport: false, textureOnViewport: false, motionBlur: false, motionBlurOpacity: 0.05, pixelRatio: undefined, desktopTapThreshold: 4, touchTapThreshold: 8, wheelSensitivity: 1, debug: false, showFps: false }); var corefn$4 = { renderTo: function renderTo(context, zoom, pan, pxRatio) { var r = this._private.renderer; r.renderTo(context, zoom, pan, pxRatio); return this; }, renderer: function renderer() { return this._private.renderer; }, forceRender: function forceRender() { this.notify('draw'); return this; }, resize: function resize() { this.invalidateSize(); this.emitAndNotify('resize'); return this; }, initRenderer: function initRenderer(options) { var cy = this; var RendererProto = cy.extension('renderer', options.name); if (RendererProto == null) { error("Can not initialise: No such renderer `".concat(options.name, "` found. Did you forget to import it and `cytoscape.use()` it?")); return; } if (options.wheelSensitivity !== undefined) { warn("You have set a custom wheel sensitivity. This will make your app zoom unnaturally when using mainstream mice. You should change this value from the default only if you can guarantee that all your users will use the same hardware and OS configuration as your current machine."); } var rOpts = rendererDefaults(options); rOpts.cy = cy; cy._private.renderer = new RendererProto(rOpts); this.notify('init'); }, destroyRenderer: function destroyRenderer() { var cy = this; cy.notify('destroy'); // destroy the renderer var domEle = cy.container(); if (domEle) { domEle._cyreg = null; while (domEle.childNodes.length > 0) { domEle.removeChild(domEle.childNodes[0]); } } cy._private.renderer = null; // to be extra safe, remove the ref cy.mutableElements().forEach(function (ele) { var _p = ele._private; _p.rscratch = {}; _p.rstyle = {}; _p.animation.current = []; _p.animation.queue = []; }); }, onRender: function onRender(fn) { return this.on('render', fn); }, offRender: function offRender(fn) { return this.off('render', fn); } }; corefn$4.invalidateDimensions = corefn$4.resize; var corefn$3 = { // get a collection // - empty collection on no args // - collection of elements in the graph on selector arg // - guarantee a returned collection when elements or collection specified collection: function collection(eles, opts) { if (string(eles)) { return this.$(eles); } else if (elementOrCollection(eles)) { return eles.collection(); } else if (array(eles)) { if (!opts) { opts = {}; } return new Collection(this, eles, opts.unique, opts.removed); } return new Collection(this); }, nodes: function nodes(selector) { var nodes = this.$(function (ele) { return ele.isNode(); }); if (selector) { return nodes.filter(selector); } return nodes; }, edges: function edges(selector) { var edges = this.$(function (ele) { return ele.isEdge(); }); if (selector) { return edges.filter(selector); } return edges; }, // search the graph like jQuery $: function $(selector) { var eles = this._private.elements; if (selector) { return eles.filter(selector); } else { return eles.spawnSelf(); } }, mutableElements: function mutableElements() { return this._private.elements; } }; // aliases corefn$3.elements = corefn$3.filter = corefn$3.$; var styfn$8 = {}; // keys for style blocks, e.g. ttfftt var TRUE = 't'; var FALSE = 'f'; // (potentially expensive calculation) // apply the style to the element based on // - its bypass // - what selectors match it styfn$8.apply = function (eles) { var self = this; var _p = self._private; var cy = _p.cy; var updatedEles = cy.collection(); for (var ie = 0; ie < eles.length; ie++) { var ele = eles[ie]; var cxtMeta = self.getContextMeta(ele); if (cxtMeta.empty) { continue; } var cxtStyle = self.getContextStyle(cxtMeta); var app = self.applyContextStyle(cxtMeta, cxtStyle, ele); if (ele._private.appliedInitStyle) { self.updateTransitions(ele, app.diffProps); } else { ele._private.appliedInitStyle = true; } var hintsDiff = self.updateStyleHints(ele); if (hintsDiff) { updatedEles.push(ele); } } // for elements return updatedEles; }; styfn$8.getPropertiesDiff = function (oldCxtKey, newCxtKey) { var self = this; var cache = self._private.propDiffs = self._private.propDiffs || {}; var dualCxtKey = oldCxtKey + '-' + newCxtKey; var cachedVal = cache[dualCxtKey]; if (cachedVal) { return cachedVal; } var diffProps = []; var addedProp = {}; for (var i = 0; i < self.length; i++) { var cxt = self[i]; var oldHasCxt = oldCxtKey[i] === TRUE; var newHasCxt = newCxtKey[i] === TRUE; var cxtHasDiffed = oldHasCxt !== newHasCxt; var cxtHasMappedProps = cxt.mappedProperties.length > 0; if (cxtHasDiffed || newHasCxt && cxtHasMappedProps) { var props = void 0; if (cxtHasDiffed && cxtHasMappedProps) { props = cxt.properties; // suffices b/c mappedProperties is a subset of properties } else if (cxtHasDiffed) { props = cxt.properties; // need to check them all } else if (cxtHasMappedProps) { props = cxt.mappedProperties; // only need to check mapped } for (var j = 0; j < props.length; j++) { var prop = props[j]; var name = prop.name; // if a later context overrides this property, then the fact that this context has switched/diffed doesn't matter // (semi expensive check since it makes this function O(n^2) on context length, but worth it since overall result // is cached) var laterCxtOverrides = false; for (var k = i + 1; k < self.length; k++) { var laterCxt = self[k]; var hasLaterCxt = newCxtKey[k] === TRUE; if (!hasLaterCxt) { continue; } // can't override unless the context is active laterCxtOverrides = laterCxt.properties[prop.name] != null; if (laterCxtOverrides) { break; } // exit early as long as one later context overrides } if (!addedProp[name] && !laterCxtOverrides) { addedProp[name] = true; diffProps.push(name); } } // for props } // if } // for contexts cache[dualCxtKey] = diffProps; return diffProps; }; styfn$8.getContextMeta = function (ele) { var self = this; var cxtKey = ''; var diffProps; var prevKey = ele._private.styleCxtKey || ''; // get the cxt key for (var i = 0; i < self.length; i++) { var context = self[i]; var contextSelectorMatches = context.selector && context.selector.matches(ele); // NB: context.selector may be null for 'core' if (contextSelectorMatches) { cxtKey += TRUE; } else { cxtKey += FALSE; } } // for context diffProps = self.getPropertiesDiff(prevKey, cxtKey); ele._private.styleCxtKey = cxtKey; return { key: cxtKey, diffPropNames: diffProps, empty: diffProps.length === 0 }; }; // gets a computed ele style object based on matched contexts styfn$8.getContextStyle = function (cxtMeta) { var cxtKey = cxtMeta.key; var self = this; var cxtStyles = this._private.contextStyles = this._private.contextStyles || {}; // if already computed style, returned cached copy if (cxtStyles[cxtKey]) { return cxtStyles[cxtKey]; } var style = { _private: { key: cxtKey } }; for (var i = 0; i < self.length; i++) { var cxt = self[i]; var hasCxt = cxtKey[i] === TRUE; if (!hasCxt) { continue; } for (var j = 0; j < cxt.properties.length; j++) { var prop = cxt.properties[j]; style[prop.name] = prop; } } cxtStyles[cxtKey] = style; return style; }; styfn$8.applyContextStyle = function (cxtMeta, cxtStyle, ele) { var self = this; var diffProps = cxtMeta.diffPropNames; var retDiffProps = {}; var types = self.types; for (var i = 0; i < diffProps.length; i++) { var diffPropName = diffProps[i]; var cxtProp = cxtStyle[diffPropName]; var eleProp = ele.pstyle(diffPropName); if (!cxtProp) { // no context prop means delete if (!eleProp) { continue; // no existing prop means nothing needs to be removed // nb affects initial application on mapped values like control-point-distances } else if (eleProp.bypass) { cxtProp = { name: diffPropName, deleteBypassed: true }; } else { cxtProp = { name: diffPropName, "delete": true }; } } // save cycles when the context prop doesn't need to be applied if (eleProp === cxtProp) { continue; } // save cycles when a mapped context prop doesn't need to be applied if (cxtProp.mapped === types.fn // context prop is function mapper && eleProp != null // some props can be null even by default (e.g. a prop that overrides another one) && eleProp.mapping != null // ele prop is a concrete value from from a mapper && eleProp.mapping.value === cxtProp.value // the current prop on the ele is a flat prop value for the function mapper ) { // NB don't write to cxtProp, as it's shared among eles (stored in stylesheet) var mapping = eleProp.mapping; // can write to mapping, as it's a per-ele copy var fnValue = mapping.fnValue = cxtProp.value(ele); // temporarily cache the value in case of a miss if (fnValue === mapping.prevFnValue) { continue; } } var retDiffProp = retDiffProps[diffPropName] = { prev: eleProp }; self.applyParsedProperty(ele, cxtProp); retDiffProp.next = ele.pstyle(diffPropName); if (retDiffProp.next && retDiffProp.next.bypass) { retDiffProp.next = retDiffProp.next.bypassed; } } return { diffProps: retDiffProps }; }; styfn$8.updateStyleHints = function (ele) { var _p = ele._private; var self = this; var propNames = self.propertyGroupNames; var propGrKeys = self.propertyGroupKeys; var propHash = function propHash(ele, propNames, seedKey) { return self.getPropertiesHash(ele, propNames, seedKey); }; var oldStyleKey = _p.styleKey; if (ele.removed()) { return false; } var isNode = _p.group === 'nodes'; // get the style key hashes per prop group // but lazily -- only use non-default prop values to reduce the number of hashes // var overriddenStyles = ele._private.style; propNames = Object.keys(overriddenStyles); for (var i = 0; i < propGrKeys.length; i++) { var grKey = propGrKeys[i]; _p.styleKeys[grKey] = [DEFAULT_HASH_SEED, DEFAULT_HASH_SEED_ALT]; } var updateGrKey1 = function updateGrKey1(val, grKey) { return _p.styleKeys[grKey][0] = hashInt(val, _p.styleKeys[grKey][0]); }; var updateGrKey2 = function updateGrKey2(val, grKey) { return _p.styleKeys[grKey][1] = hashIntAlt(val, _p.styleKeys[grKey][1]); }; var updateGrKey = function updateGrKey(val, grKey) { updateGrKey1(val, grKey); updateGrKey2(val, grKey); }; var updateGrKeyWStr = function updateGrKeyWStr(strVal, grKey) { for (var j = 0; j < strVal.length; j++) { var ch = strVal.charCodeAt(j); updateGrKey1(ch, grKey); updateGrKey2(ch, grKey); } }; // - hashing works on 32 bit ints b/c we use bitwise ops // - small numbers get cut off (e.g. 0.123 is seen as 0 by the hashing function) // - raise up small numbers so more significant digits are seen by hashing // - make small numbers larger than a normal value to avoid collisions // - works in practice and it's relatively cheap var N = 2000000000; var cleanNum = function cleanNum(val) { return -128 < val && val < 128 && Math.floor(val) !== val ? N - (val * 1024 | 0) : val; }; for (var _i = 0; _i < propNames.length; _i++) { var name = propNames[_i]; var parsedProp = overriddenStyles[name]; if (parsedProp == null) { continue; } var propInfo = this.properties[name]; var type = propInfo.type; var _grKey = propInfo.groupKey; var normalizedNumberVal = void 0; if (propInfo.hashOverride != null) { normalizedNumberVal = propInfo.hashOverride(ele, parsedProp); } else if (parsedProp.pfValue != null) { normalizedNumberVal = parsedProp.pfValue; } // might not be a number if it allows enums var numberVal = propInfo.enums == null ? parsedProp.value : null; var haveNormNum = normalizedNumberVal != null; var haveUnitedNum = numberVal != null; var haveNum = haveNormNum || haveUnitedNum; var units = parsedProp.units; // numbers are cheaper to hash than strings // 1 hash op vs n hash ops (for length n string) if (type.number && haveNum && !type.multiple) { var v = haveNormNum ? normalizedNumberVal : numberVal; updateGrKey(cleanNum(v), _grKey); if (!haveNormNum && units != null) { updateGrKeyWStr(units, _grKey); } } else { updateGrKeyWStr(parsedProp.strValue, _grKey); } } // overall style key // var hash = [DEFAULT_HASH_SEED, DEFAULT_HASH_SEED_ALT]; for (var _i2 = 0; _i2 < propGrKeys.length; _i2++) { var _grKey2 = propGrKeys[_i2]; var grHash = _p.styleKeys[_grKey2]; hash[0] = hashInt(grHash[0], hash[0]); hash[1] = hashIntAlt(grHash[1], hash[1]); } _p.styleKey = combineHashes(hash[0], hash[1]); // label dims // var sk = _p.styleKeys; _p.labelDimsKey = combineHashesArray(sk.labelDimensions); var labelKeys = propHash(ele, ['label'], sk.labelDimensions); _p.labelKey = combineHashesArray(labelKeys); _p.labelStyleKey = combineHashesArray(hashArrays(sk.commonLabel, labelKeys)); if (!isNode) { var sourceLabelKeys = propHash(ele, ['source-label'], sk.labelDimensions); _p.sourceLabelKey = combineHashesArray(sourceLabelKeys); _p.sourceLabelStyleKey = combineHashesArray(hashArrays(sk.commonLabel, sourceLabelKeys)); var targetLabelKeys = propHash(ele, ['target-label'], sk.labelDimensions); _p.targetLabelKey = combineHashesArray(targetLabelKeys); _p.targetLabelStyleKey = combineHashesArray(hashArrays(sk.commonLabel, targetLabelKeys)); } // node // if (isNode) { var _p$styleKeys = _p.styleKeys, nodeBody = _p$styleKeys.nodeBody, nodeBorder = _p$styleKeys.nodeBorder, nodeOutline = _p$styleKeys.nodeOutline, backgroundImage = _p$styleKeys.backgroundImage, compound = _p$styleKeys.compound, pie = _p$styleKeys.pie; var nodeKeys = [nodeBody, nodeBorder, nodeOutline, backgroundImage, compound, pie].filter(function (k) { return k != null; }).reduce(hashArrays, [DEFAULT_HASH_SEED, DEFAULT_HASH_SEED_ALT]); _p.nodeKey = combineHashesArray(nodeKeys); _p.hasPie = pie != null && pie[0] !== DEFAULT_HASH_SEED && pie[1] !== DEFAULT_HASH_SEED_ALT; } return oldStyleKey !== _p.styleKey; }; styfn$8.clearStyleHints = function (ele) { var _p = ele._private; _p.styleCxtKey = ''; _p.styleKeys = {}; _p.styleKey = null; _p.labelKey = null; _p.labelStyleKey = null; _p.sourceLabelKey = null; _p.sourceLabelStyleKey = null; _p.targetLabelKey = null; _p.targetLabelStyleKey = null; _p.nodeKey = null; _p.hasPie = null; }; // apply a property to the style (for internal use) // returns whether application was successful // // now, this function flattens the property, and here's how: // // for parsedProp:{ bypass: true, deleteBypass: true } // no property is generated, instead the bypass property in the // element's style is replaced by what's pointed to by the `bypassed` // field in the bypass property (i.e. restoring the property the // bypass was overriding) // // for parsedProp:{ mapped: truthy } // the generated flattenedProp:{ mapping: prop } // // for parsedProp:{ bypass: true } // the generated flattenedProp:{ bypassed: parsedProp } styfn$8.applyParsedProperty = function (ele, parsedProp) { var self = this; var prop = parsedProp; var style = ele._private.style; var flatProp; var types = self.types; var type = self.properties[prop.name].type; var propIsBypass = prop.bypass; var origProp = style[prop.name]; var origPropIsBypass = origProp && origProp.bypass; var _p = ele._private; var flatPropMapping = 'mapping'; var getVal = function getVal(p) { if (p == null) { return null; } else if (p.pfValue != null) { return p.pfValue; } else { return p.value; } }; var checkTriggers = function checkTriggers() { var fromVal = getVal(origProp); var toVal = getVal(prop); self.checkTriggers(ele, prop.name, fromVal, toVal); }; // edge sanity checks to prevent the client from making serious mistakes if (parsedProp.name === 'curve-style' && ele.isEdge() && ( // loops must be bundled beziers parsedProp.value !== 'bezier' && ele.isLoop() || // edges connected to compound nodes can not be haystacks parsedProp.value === 'haystack' && (ele.source().isParent() || ele.target().isParent()))) { prop = parsedProp = this.parse(parsedProp.name, 'bezier', propIsBypass); } if (prop["delete"]) { // delete the property and use the default value on falsey value style[prop.name] = undefined; checkTriggers(); return true; } if (prop.deleteBypassed) { // delete the property that the if (!origProp) { checkTriggers(); return true; // can't delete if no prop } else if (origProp.bypass) { // delete bypassed origProp.bypassed = undefined; checkTriggers(); return true; } else { return false; // we're unsuccessful deleting the bypassed } } // check if we need to delete the current bypass if (prop.deleteBypass) { // then this property is just here to indicate we need to delete if (!origProp) { checkTriggers(); return true; // property is already not defined } else if (origProp.bypass) { // then replace the bypass property with the original // because the bypassed property was already applied (and therefore parsed), we can just replace it (no reapplying necessary) style[prop.name] = origProp.bypassed; checkTriggers(); return true; } else { return false; // we're unsuccessful deleting the bypass } } var printMappingErr = function printMappingErr() { warn('Do not assign mappings to elements without corresponding data (i.e. ele `' + ele.id() + '` has no mapping for property `' + prop.name + '` with data field `' + prop.field + '`); try a `[' + prop.field + ']` selector to limit scope to elements with `' + prop.field + '` defined'); }; // put the property in the style objects switch (prop.mapped) { // flatten the property if mapped case types.mapData: { // flatten the field (e.g. data.foo.bar) var fields = prop.field.split('.'); var fieldVal = _p.data; for (var i = 0; i < fields.length && fieldVal; i++) { var field = fields[i]; fieldVal = fieldVal[field]; } if (fieldVal == null) { printMappingErr(); return false; } var percent; if (!number$1(fieldVal)) { // then don't apply and fall back on the existing style warn('Do not use continuous mappers without specifying numeric data (i.e. `' + prop.field + ': ' + fieldVal + '` for `' + ele.id() + '` is non-numeric)'); return false; } else { var fieldWidth = prop.fieldMax - prop.fieldMin; if (fieldWidth === 0) { // safety check -- not strictly necessary as no props of zero range should be passed here percent = 0; } else { percent = (fieldVal - prop.fieldMin) / fieldWidth; } } // make sure to bound percent value if (percent < 0) { percent = 0; } else if (percent > 1) { percent = 1; } if (type.color) { var r1 = prop.valueMin[0]; var r2 = prop.valueMax[0]; var g1 = prop.valueMin[1]; var g2 = prop.valueMax[1]; var b1 = prop.valueMin[2]; var b2 = prop.valueMax[2]; var a1 = prop.valueMin[3] == null ? 1 : prop.valueMin[3]; var a2 = prop.valueMax[3] == null ? 1 : prop.valueMax[3]; var clr = [Math.round(r1 + (r2 - r1) * percent), Math.round(g1 + (g2 - g1) * percent), Math.round(b1 + (b2 - b1) * percent), Math.round(a1 + (a2 - a1) * percent)]; flatProp = { // colours are simple, so just create the flat property instead of expensive string parsing bypass: prop.bypass, // we're a bypass if the mapping property is a bypass name: prop.name, value: clr, strValue: 'rgb(' + clr[0] + ', ' + clr[1] + ', ' + clr[2] + ')' }; } else if (type.number) { var calcValue = prop.valueMin + (prop.valueMax - prop.valueMin) * percent; flatProp = this.parse(prop.name, calcValue, prop.bypass, flatPropMapping); } else { return false; // can only map to colours and numbers } if (!flatProp) { // if we can't flatten the property, then don't apply the property and fall back on the existing style printMappingErr(); return false; } flatProp.mapping = prop; // keep a reference to the mapping prop = flatProp; // the flattened (mapped) property is the one we want break; } // direct mapping case types.data: { // flatten the field (e.g. data.foo.bar) var _fields = prop.field.split('.'); var _fieldVal = _p.data; for (var _i3 = 0; _i3 < _fields.length && _fieldVal; _i3++) { var _field = _fields[_i3]; _fieldVal = _fieldVal[_field]; } if (_fieldVal != null) { flatProp = this.parse(prop.name, _fieldVal, prop.bypass, flatPropMapping); } if (!flatProp) { // if we can't flatten the property, then don't apply and fall back on the existing style printMappingErr(); return false; } flatProp.mapping = prop; // keep a reference to the mapping prop = flatProp; // the flattened (mapped) property is the one we want break; } case types.fn: { var fn = prop.value; var fnRetVal = prop.fnValue != null ? prop.fnValue : fn(ele); // check for cached value before calling function prop.prevFnValue = fnRetVal; if (fnRetVal == null) { warn('Custom function mappers may not return null (i.e. `' + prop.name + '` for ele `' + ele.id() + '` is null)'); return false; } flatProp = this.parse(prop.name, fnRetVal, prop.bypass, flatPropMapping); if (!flatProp) { warn('Custom function mappers may not return invalid values for the property type (i.e. `' + prop.name + '` for ele `' + ele.id() + '` is invalid)'); return false; } flatProp.mapping = copy(prop); // keep a reference to the mapping prop = flatProp; // the flattened (mapped) property is the one we want break; } case undefined: break; // just set the property default: return false; // not a valid mapping } // if the property is a bypass property, then link the resultant property to the original one if (propIsBypass) { if (origPropIsBypass) { // then this bypass overrides the existing one prop.bypassed = origProp.bypassed; // steal bypassed prop from old bypass } else { // then link the orig prop to the new bypass prop.bypassed = origProp; } style[prop.name] = prop; // and set } else { // prop is not bypass if (origPropIsBypass) { // then keep the orig prop (since it's a bypass) and link to the new prop origProp.bypassed = prop; } else { // then just replace the old prop with the new one style[prop.name] = prop; } } checkTriggers(); return true; }; styfn$8.cleanElements = function (eles, keepBypasses) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; this.clearStyleHints(ele); ele.dirtyCompoundBoundsCache(); ele.dirtyBoundingBoxCache(); if (!keepBypasses) { ele._private.style = {}; } else { var style = ele._private.style; var propNames = Object.keys(style); for (var j = 0; j < propNames.length; j++) { var propName = propNames[j]; var eleProp = style[propName]; if (eleProp != null) { if (eleProp.bypass) { eleProp.bypassed = null; } else { style[propName] = null; } } } } } }; // updates the visual style for all elements (useful for manual style modification after init) styfn$8.update = function () { var cy = this._private.cy; var eles = cy.mutableElements(); eles.updateStyle(); }; // diffProps : { name => { prev, next } } styfn$8.updateTransitions = function (ele, diffProps) { var self = this; var _p = ele._private; var props = ele.pstyle('transition-property').value; var duration = ele.pstyle('transition-duration').pfValue; var delay = ele.pstyle('transition-delay').pfValue; if (props.length > 0 && duration > 0) { var style = {}; // build up the style to animate towards var anyPrev = false; for (var i = 0; i < props.length; i++) { var prop = props[i]; var styProp = ele.pstyle(prop); var diffProp = diffProps[prop]; if (!diffProp) { continue; } var prevProp = diffProp.prev; var fromProp = prevProp; var toProp = diffProp.next != null ? diffProp.next : styProp; var diff = false; var initVal = void 0; var initDt = 0.000001; // delta time % value for initVal (allows animating out of init zero opacity) if (!fromProp) { continue; } // consider px values if (number$1(fromProp.pfValue) && number$1(toProp.pfValue)) { diff = toProp.pfValue - fromProp.pfValue; // nonzero is truthy initVal = fromProp.pfValue + initDt * diff; // consider numerical values } else if (number$1(fromProp.value) && number$1(toProp.value)) { diff = toProp.value - fromProp.value; // nonzero is truthy initVal = fromProp.value + initDt * diff; // consider colour values } else if (array(fromProp.value) && array(toProp.value)) { diff = fromProp.value[0] !== toProp.value[0] || fromProp.value[1] !== toProp.value[1] || fromProp.value[2] !== toProp.value[2]; initVal = fromProp.strValue; } // the previous value is good for an animation only if it's different if (diff) { style[prop] = toProp.strValue; // to val this.applyBypass(ele, prop, initVal); // from val anyPrev = true; } } // end if props allow ani // can't transition if there's nothing previous to transition from if (!anyPrev) { return; } _p.transitioning = true; new Promise$1(function (resolve) { if (delay > 0) { ele.delayAnimation(delay).play().promise().then(resolve); } else { resolve(); } }).then(function () { return ele.animation({ style: style, duration: duration, easing: ele.pstyle('transition-timing-function').value, queue: false }).play().promise(); }).then(function () { // if( !isBypass ){ self.removeBypasses(ele, props); ele.emitAndNotify('style'); // } _p.transitioning = false; }); } else if (_p.transitioning) { this.removeBypasses(ele, props); ele.emitAndNotify('style'); _p.transitioning = false; } }; styfn$8.checkTrigger = function (ele, name, fromValue, toValue, getTrigger, onTrigger) { var prop = this.properties[name]; var triggerCheck = getTrigger(prop); if (triggerCheck != null && triggerCheck(fromValue, toValue)) { onTrigger(prop); } }; styfn$8.checkZOrderTrigger = function (ele, name, fromValue, toValue) { var _this = this; this.checkTrigger(ele, name, fromValue, toValue, function (prop) { return prop.triggersZOrder; }, function () { _this._private.cy.notify('zorder', ele); }); }; styfn$8.checkBoundsTrigger = function (ele, name, fromValue, toValue) { this.checkTrigger(ele, name, fromValue, toValue, function (prop) { return prop.triggersBounds; }, function (prop) { ele.dirtyCompoundBoundsCache(); ele.dirtyBoundingBoxCache(); // if the prop change makes the bb of pll bezier edges invalid, // then dirty the pll edge bb cache as well if ( // only for beziers -- so performance of other edges isn't affected prop.triggersBoundsOfParallelBeziers && name === 'curve-style' && (fromValue === 'bezier' || toValue === 'bezier')) { ele.parallelEdges().forEach(function (pllEdge) { if (pllEdge.isBundledBezier()) { pllEdge.dirtyBoundingBoxCache(); } }); } if (prop.triggersBoundsOfConnectedEdges && name === 'display' && (fromValue === 'none' || toValue === 'none')) { ele.connectedEdges().forEach(function (edge) { edge.dirtyBoundingBoxCache(); }); } }); }; styfn$8.checkTriggers = function (ele, name, fromValue, toValue) { ele.dirtyStyleCache(); this.checkZOrderTrigger(ele, name, fromValue, toValue); this.checkBoundsTrigger(ele, name, fromValue, toValue); }; var styfn$7 = {}; // bypasses are applied to an existing style on an element, and just tacked on temporarily // returns true iff application was successful for at least 1 specified property styfn$7.applyBypass = function (eles, name, value, updateTransitions) { var self = this; var props = []; var isBypass = true; // put all the properties (can specify one or many) in an array after parsing them if (name === '*' || name === '**') { // apply to all property names if (value !== undefined) { for (var i = 0; i < self.properties.length; i++) { var prop = self.properties[i]; var _name = prop.name; var parsedProp = this.parse(_name, value, true); if (parsedProp) { props.push(parsedProp); } } } } else if (string(name)) { // then parse the single property var _parsedProp = this.parse(name, value, true); if (_parsedProp) { props.push(_parsedProp); } } else if (plainObject(name)) { // then parse each property var specifiedProps = name; updateTransitions = value; var names = Object.keys(specifiedProps); for (var _i = 0; _i < names.length; _i++) { var _name2 = names[_i]; var _value = specifiedProps[_name2]; if (_value === undefined) { // try camel case name too _value = specifiedProps[dash2camel(_name2)]; } if (_value !== undefined) { var _parsedProp2 = this.parse(_name2, _value, true); if (_parsedProp2) { props.push(_parsedProp2); } } } } else { // can't do anything without well defined properties return false; } // we've failed if there are no valid properties if (props.length === 0) { return false; } // now, apply the bypass properties on the elements var ret = false; // return true if at least one succesful bypass applied for (var _i2 = 0; _i2 < eles.length; _i2++) { // for each ele var ele = eles[_i2]; var diffProps = {}; var diffProp = void 0; for (var j = 0; j < props.length; j++) { // for each prop var _prop = props[j]; if (updateTransitions) { var prevProp = ele.pstyle(_prop.name); diffProp = diffProps[_prop.name] = { prev: prevProp }; } ret = this.applyParsedProperty(ele, copy(_prop)) || ret; if (updateTransitions) { diffProp.next = ele.pstyle(_prop.name); } } // for props if (ret) { this.updateStyleHints(ele); } if (updateTransitions) { this.updateTransitions(ele, diffProps, isBypass); } } // for eles return ret; }; // only useful in specific cases like animation styfn$7.overrideBypass = function (eles, name, value) { name = camel2dash(name); for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var prop = ele._private.style[name]; var type = this.properties[name].type; var isColor = type.color; var isMulti = type.mutiple; var oldValue = !prop ? null : prop.pfValue != null ? prop.pfValue : prop.value; if (!prop || !prop.bypass) { // need a bypass if one doesn't exist this.applyBypass(ele, name, value); } else { prop.value = value; if (prop.pfValue != null) { prop.pfValue = value; } if (isColor) { prop.strValue = 'rgb(' + value.join(',') + ')'; } else if (isMulti) { prop.strValue = value.join(' '); } else { prop.strValue = '' + value; } this.updateStyleHints(ele); } this.checkTriggers(ele, name, oldValue, value); } }; styfn$7.removeAllBypasses = function (eles, updateTransitions) { return this.removeBypasses(eles, this.propertyNames, updateTransitions); }; styfn$7.removeBypasses = function (eles, props, updateTransitions) { var isBypass = true; for (var j = 0; j < eles.length; j++) { var ele = eles[j]; var diffProps = {}; for (var i = 0; i < props.length; i++) { var name = props[i]; var prop = this.properties[name]; var prevProp = ele.pstyle(prop.name); if (!prevProp || !prevProp.bypass) { // if a bypass doesn't exist for the prop, nothing needs to be removed continue; } var value = ''; // empty => remove bypass var parsedProp = this.parse(name, value, true); var diffProp = diffProps[prop.name] = { prev: prevProp }; this.applyParsedProperty(ele, parsedProp); diffProp.next = ele.pstyle(prop.name); } // for props this.updateStyleHints(ele); if (updateTransitions) { this.updateTransitions(ele, diffProps, isBypass); } } // for eles }; var styfn$6 = {}; // gets what an em size corresponds to in pixels relative to a dom element styfn$6.getEmSizeInPixels = function () { var px = this.containerCss('font-size'); if (px != null) { return parseFloat(px); } else { return 1; // for headless } }; // gets css property from the core container styfn$6.containerCss = function (propName) { var cy = this._private.cy; var domElement = cy.container(); var containerWindow = cy.window(); if (containerWindow && domElement && containerWindow.getComputedStyle) { return containerWindow.getComputedStyle(domElement).getPropertyValue(propName); } }; var styfn$5 = {}; // gets the rendered style for an element styfn$5.getRenderedStyle = function (ele, prop) { if (prop) { return this.getStylePropertyValue(ele, prop, true); } else { return this.getRawStyle(ele, true); } }; // gets the raw style for an element styfn$5.getRawStyle = function (ele, isRenderedVal) { var self = this; ele = ele[0]; // insure it's an element if (ele) { var rstyle = {}; for (var i = 0; i < self.properties.length; i++) { var prop = self.properties[i]; var val = self.getStylePropertyValue(ele, prop.name, isRenderedVal); if (val != null) { rstyle[prop.name] = val; rstyle[dash2camel(prop.name)] = val; } } return rstyle; } }; styfn$5.getIndexedStyle = function (ele, property, subproperty, index) { var pstyle = ele.pstyle(property)[subproperty][index]; return pstyle != null ? pstyle : ele.cy().style().getDefaultProperty(property)[subproperty][0]; }; styfn$5.getStylePropertyValue = function (ele, propName, isRenderedVal) { var self = this; ele = ele[0]; // insure it's an element if (ele) { var prop = self.properties[propName]; if (prop.alias) { prop = prop.pointsTo; } var type = prop.type; var styleProp = ele.pstyle(prop.name); if (styleProp) { var value = styleProp.value, units = styleProp.units, strValue = styleProp.strValue; if (isRenderedVal && type.number && value != null && number$1(value)) { var zoom = ele.cy().zoom(); var getRenderedValue = function getRenderedValue(val) { return val * zoom; }; var getValueStringWithUnits = function getValueStringWithUnits(val, units) { return getRenderedValue(val) + units; }; var isArrayValue = array(value); var haveUnits = isArrayValue ? units.every(function (u) { return u != null; }) : units != null; if (haveUnits) { if (isArrayValue) { return value.map(function (v, i) { return getValueStringWithUnits(v, units[i]); }).join(' '); } else { return getValueStringWithUnits(value, units); } } else { if (isArrayValue) { return value.map(function (v) { return string(v) ? v : '' + getRenderedValue(v); }).join(' '); } else { return '' + getRenderedValue(value); } } } else if (strValue != null) { return strValue; } } return null; } }; styfn$5.getAnimationStartStyle = function (ele, aniProps) { var rstyle = {}; for (var i = 0; i < aniProps.length; i++) { var aniProp = aniProps[i]; var name = aniProp.name; var styleProp = ele.pstyle(name); if (styleProp !== undefined) { // then make a prop of it if (plainObject(styleProp)) { styleProp = this.parse(name, styleProp.strValue); } else { styleProp = this.parse(name, styleProp); } } if (styleProp) { rstyle[name] = styleProp; } } return rstyle; }; styfn$5.getPropsList = function (propsObj) { var self = this; var rstyle = []; var style = propsObj; var props = self.properties; if (style) { var names = Object.keys(style); for (var i = 0; i < names.length; i++) { var name = names[i]; var val = style[name]; var prop = props[name] || props[camel2dash(name)]; var styleProp = this.parse(prop.name, val); if (styleProp) { rstyle.push(styleProp); } } } return rstyle; }; styfn$5.getNonDefaultPropertiesHash = function (ele, propNames, seed) { var hash = seed.slice(); var name, val, strVal, chVal; var i, j; for (i = 0; i < propNames.length; i++) { name = propNames[i]; val = ele.pstyle(name, false); if (val == null) { continue; } else if (val.pfValue != null) { hash[0] = hashInt(chVal, hash[0]); hash[1] = hashIntAlt(chVal, hash[1]); } else { strVal = val.strValue; for (j = 0; j < strVal.length; j++) { chVal = strVal.charCodeAt(j); hash[0] = hashInt(chVal, hash[0]); hash[1] = hashIntAlt(chVal, hash[1]); } } } return hash; }; styfn$5.getPropertiesHash = styfn$5.getNonDefaultPropertiesHash; var styfn$4 = {}; styfn$4.appendFromJson = function (json) { var style = this; for (var i = 0; i < json.length; i++) { var context = json[i]; var selector = context.selector; var props = context.style || context.css; var names = Object.keys(props); style.selector(selector); // apply selector for (var j = 0; j < names.length; j++) { var name = names[j]; var value = props[name]; style.css(name, value); // apply property } } return style; }; // accessible cy.style() function styfn$4.fromJson = function (json) { var style = this; style.resetToDefault(); style.appendFromJson(json); return style; }; // get json from cy.style() api styfn$4.json = function () { var json = []; for (var i = this.defaultLength; i < this.length; i++) { var cxt = this[i]; var selector = cxt.selector; var props = cxt.properties; var css = {}; for (var j = 0; j < props.length; j++) { var prop = props[j]; css[prop.name] = prop.strValue; } json.push({ selector: !selector ? 'core' : selector.toString(), style: css }); } return json; }; var styfn$3 = {}; styfn$3.appendFromString = function (string) { var self = this; var style = this; var remaining = '' + string; var selAndBlockStr; var blockRem; var propAndValStr; // remove comments from the style string remaining = remaining.replace(/[/][*](\s|.)+?[*][/]/g, ''); function removeSelAndBlockFromRemaining() { // remove the parsed selector and block from the remaining text to parse if (remaining.length > selAndBlockStr.length) { remaining = remaining.substr(selAndBlockStr.length); } else { remaining = ''; } } function removePropAndValFromRem() { // remove the parsed property and value from the remaining block text to parse if (blockRem.length > propAndValStr.length) { blockRem = blockRem.substr(propAndValStr.length); } else { blockRem = ''; } } for (;;) { var nothingLeftToParse = remaining.match(/^\s*$/); if (nothingLeftToParse) { break; } var selAndBlock = remaining.match(/^\s*((?:.|\s)+?)\s*\{((?:.|\s)+?)\}/); if (!selAndBlock) { warn('Halting stylesheet parsing: String stylesheet contains more to parse but no selector and block found in: ' + remaining); break; } selAndBlockStr = selAndBlock[0]; // parse the selector var selectorStr = selAndBlock[1]; if (selectorStr !== 'core') { var selector = new Selector(selectorStr); if (selector.invalid) { warn('Skipping parsing of block: Invalid selector found in string stylesheet: ' + selectorStr); // skip this selector and block removeSelAndBlockFromRemaining(); continue; } } // parse the block of properties and values var blockStr = selAndBlock[2]; var invalidBlock = false; blockRem = blockStr; var props = []; for (;;) { var _nothingLeftToParse = blockRem.match(/^\s*$/); if (_nothingLeftToParse) { break; } var propAndVal = blockRem.match(/^\s*(.+?)\s*:\s*(.+?)(?:\s*;|\s*$)/); if (!propAndVal) { warn('Skipping parsing of block: Invalid formatting of style property and value definitions found in:' + blockStr); invalidBlock = true; break; } propAndValStr = propAndVal[0]; var propStr = propAndVal[1]; var valStr = propAndVal[2]; var prop = self.properties[propStr]; if (!prop) { warn('Skipping property: Invalid property name in: ' + propAndValStr); // skip this property in the block removePropAndValFromRem(); continue; } var parsedProp = style.parse(propStr, valStr); if (!parsedProp) { warn('Skipping property: Invalid property definition in: ' + propAndValStr); // skip this property in the block removePropAndValFromRem(); continue; } props.push({ name: propStr, val: valStr }); removePropAndValFromRem(); } if (invalidBlock) { removeSelAndBlockFromRemaining(); break; } // put the parsed block in the style style.selector(selectorStr); for (var i = 0; i < props.length; i++) { var _prop = props[i]; style.css(_prop.name, _prop.val); } removeSelAndBlockFromRemaining(); } return style; }; styfn$3.fromString = function (string) { var style = this; style.resetToDefault(); style.appendFromString(string); return style; }; var styfn$2 = {}; (function () { var number$1 = number; var rgba = rgbaNoBackRefs; var hsla = hslaNoBackRefs; var hex3$1 = hex3; var hex6$1 = hex6; var data = function data(prefix) { return '^' + prefix + '\\s*\\(\\s*([\\w\\.]+)\\s*\\)$'; }; var mapData = function mapData(prefix) { var mapArg = number$1 + '|\\w+|' + rgba + '|' + hsla + '|' + hex3$1 + '|' + hex6$1; return '^' + prefix + '\\s*\\(([\\w\\.]+)\\s*\\,\\s*(' + number$1 + ')\\s*\\,\\s*(' + number$1 + ')\\s*,\\s*(' + mapArg + ')\\s*\\,\\s*(' + mapArg + ')\\)$'; }; var urlRegexes = ['^url\\s*\\(\\s*[\'"]?(.+?)[\'"]?\\s*\\)$', '^(none)$', '^(.+)$']; // each visual style property has a type and needs to be validated according to it styfn$2.types = { time: { number: true, min: 0, units: 's|ms', implicitUnits: 'ms' }, percent: { number: true, min: 0, max: 100, units: '%', implicitUnits: '%' }, percentages: { number: true, min: 0, max: 100, units: '%', implicitUnits: '%', multiple: true }, zeroOneNumber: { number: true, min: 0, max: 1, unitless: true }, zeroOneNumbers: { number: true, min: 0, max: 1, unitless: true, multiple: true }, nOneOneNumber: { number: true, min: -1, max: 1, unitless: true }, nonNegativeInt: { number: true, min: 0, integer: true, unitless: true }, nonNegativeNumber: { number: true, min: 0, unitless: true }, position: { enums: ['parent', 'origin'] }, nodeSize: { number: true, min: 0, enums: ['label'] }, number: { number: true, unitless: true }, numbers: { number: true, unitless: true, multiple: true }, positiveNumber: { number: true, unitless: true, min: 0, strictMin: true }, size: { number: true, min: 0 }, bidirectionalSize: { number: true }, // allows negative bidirectionalSizeMaybePercent: { number: true, allowPercent: true }, // allows negative bidirectionalSizes: { number: true, multiple: true }, // allows negative sizeMaybePercent: { number: true, min: 0, allowPercent: true }, axisDirection: { enums: ['horizontal', 'leftward', 'rightward', 'vertical', 'upward', 'downward', 'auto'] }, paddingRelativeTo: { enums: ['width', 'height', 'average', 'min', 'max'] }, bgWH: { number: true, min: 0, allowPercent: true, enums: ['auto'], multiple: true }, bgPos: { number: true, allowPercent: true, multiple: true }, bgRelativeTo: { enums: ['inner', 'include-padding'], multiple: true }, bgRepeat: { enums: ['repeat', 'repeat-x', 'repeat-y', 'no-repeat'], multiple: true }, bgFit: { enums: ['none', 'contain', 'cover'], multiple: true }, bgCrossOrigin: { enums: ['anonymous', 'use-credentials', 'null'], multiple: true }, bgClip: { enums: ['none', 'node'], multiple: true }, bgContainment: { enums: ['inside', 'over'], multiple: true }, color: { color: true }, colors: { color: true, multiple: true }, fill: { enums: ['solid', 'linear-gradient', 'radial-gradient'] }, bool: { enums: ['yes', 'no'] }, bools: { enums: ['yes', 'no'], multiple: true }, lineStyle: { enums: ['solid', 'dotted', 'dashed'] }, lineCap: { enums: ['butt', 'round', 'square'] }, linePosition: { enums: ['center', 'inside', 'outside'] }, lineJoin: { enums: ['round', 'bevel', 'miter'] }, borderStyle: { enums: ['solid', 'dotted', 'dashed', 'double'] }, curveStyle: { enums: ['bezier', 'unbundled-bezier', 'haystack', 'segments', 'straight', 'straight-triangle', 'taxi', 'round-segments', 'round-taxi'] }, radiusType: { enums: ['arc-radius', 'influence-radius'], multiple: true }, fontFamily: { regex: '^([\\w- \\"]+(?:\\s*,\\s*[\\w- \\"]+)*)$' }, fontStyle: { enums: ['italic', 'normal', 'oblique'] }, fontWeight: { enums: ['normal', 'bold', 'bolder', 'lighter', '100', '200', '300', '400', '500', '600', '800', '900', 100, 200, 300, 400, 500, 600, 700, 800, 900] }, textDecoration: { enums: ['none', 'underline', 'overline', 'line-through'] }, textTransform: { enums: ['none', 'uppercase', 'lowercase'] }, textWrap: { enums: ['none', 'wrap', 'ellipsis'] }, textOverflowWrap: { enums: ['whitespace', 'anywhere'] }, textBackgroundShape: { enums: ['rectangle', 'roundrectangle', 'round-rectangle'] }, nodeShape: { enums: ['rectangle', 'roundrectangle', 'round-rectangle', 'cutrectangle', 'cut-rectangle', 'bottomroundrectangle', 'bottom-round-rectangle', 'barrel', 'ellipse', 'triangle', 'round-triangle', 'square', 'pentagon', 'round-pentagon', 'hexagon', 'round-hexagon', 'concavehexagon', 'concave-hexagon', 'heptagon', 'round-heptagon', 'octagon', 'round-octagon', 'tag', 'round-tag', 'star', 'diamond', 'round-diamond', 'vee', 'rhomboid', 'right-rhomboid', 'polygon'] }, overlayShape: { enums: ['roundrectangle', 'round-rectangle', 'ellipse'] }, cornerRadius: { number: true, min: 0, units: 'px|em', implicitUnits: 'px', enums: ['auto'] }, compoundIncludeLabels: { enums: ['include', 'exclude'] }, arrowShape: { enums: ['tee', 'triangle', 'triangle-tee', 'circle-triangle', 'triangle-cross', 'triangle-backcurve', 'vee', 'square', 'circle', 'diamond', 'chevron', 'none'] }, arrowFill: { enums: ['filled', 'hollow'] }, arrowWidth: { number: true, units: '%|px|em', implicitUnits: 'px', enums: ['match-line'] }, display: { enums: ['element', 'none'] }, visibility: { enums: ['hidden', 'visible'] }, zCompoundDepth: { enums: ['bottom', 'orphan', 'auto', 'top'] }, zIndexCompare: { enums: ['auto', 'manual'] }, valign: { enums: ['top', 'center', 'bottom'] }, halign: { enums: ['left', 'center', 'right'] }, justification: { enums: ['left', 'center', 'right', 'auto'] }, text: { string: true }, data: { mapping: true, regex: data('data') }, layoutData: { mapping: true, regex: data('layoutData') }, scratch: { mapping: true, regex: data('scratch') }, mapData: { mapping: true, regex: mapData('mapData') }, mapLayoutData: { mapping: true, regex: mapData('mapLayoutData') }, mapScratch: { mapping: true, regex: mapData('mapScratch') }, fn: { mapping: true, fn: true }, url: { regexes: urlRegexes, singleRegexMatchValue: true }, urls: { regexes: urlRegexes, singleRegexMatchValue: true, multiple: true }, propList: { propList: true }, angle: { number: true, units: 'deg|rad', implicitUnits: 'rad' }, textRotation: { number: true, units: 'deg|rad', implicitUnits: 'rad', enums: ['none', 'autorotate'] }, polygonPointList: { number: true, multiple: true, evenMultiple: true, min: -1, max: 1, unitless: true }, edgeDistances: { enums: ['intersection', 'node-position', 'endpoints'] }, edgeEndpoint: { number: true, multiple: true, units: '%|px|em|deg|rad', implicitUnits: 'px', enums: ['inside-to-node', 'outside-to-node', 'outside-to-node-or-label', 'outside-to-line', 'outside-to-line-or-label'], singleEnum: true, validate: function validate(valArr, unitsArr) { switch (valArr.length) { case 2: // can be % or px only return unitsArr[0] !== 'deg' && unitsArr[0] !== 'rad' && unitsArr[1] !== 'deg' && unitsArr[1] !== 'rad'; case 1: // can be enum, deg, or rad only return string(valArr[0]) || unitsArr[0] === 'deg' || unitsArr[0] === 'rad'; default: return false; } } }, easing: { regexes: ['^(spring)\\s*\\(\\s*(' + number$1 + ')\\s*,\\s*(' + number$1 + ')\\s*\\)$', '^(cubic-bezier)\\s*\\(\\s*(' + number$1 + ')\\s*,\\s*(' + number$1 + ')\\s*,\\s*(' + number$1 + ')\\s*,\\s*(' + number$1 + ')\\s*\\)$'], enums: ['linear', 'ease', 'ease-in', 'ease-out', 'ease-in-out', 'ease-in-sine', 'ease-out-sine', 'ease-in-out-sine', 'ease-in-quad', 'ease-out-quad', 'ease-in-out-quad', 'ease-in-cubic', 'ease-out-cubic', 'ease-in-out-cubic', 'ease-in-quart', 'ease-out-quart', 'ease-in-out-quart', 'ease-in-quint', 'ease-out-quint', 'ease-in-out-quint', 'ease-in-expo', 'ease-out-expo', 'ease-in-out-expo', 'ease-in-circ', 'ease-out-circ', 'ease-in-out-circ'] }, gradientDirection: { enums: ['to-bottom', 'to-top', 'to-left', 'to-right', 'to-bottom-right', 'to-bottom-left', 'to-top-right', 'to-top-left', 'to-right-bottom', 'to-left-bottom', 'to-right-top', 'to-left-top' // different order ] }, boundsExpansion: { number: true, multiple: true, min: 0, validate: function validate(valArr) { var length = valArr.length; return length === 1 || length === 2 || length === 4; } } }; var diff = { zeroNonZero: function zeroNonZero(val1, val2) { if ((val1 == null || val2 == null) && val1 !== val2) { return true; // null cases could represent any value } if (val1 == 0 && val2 != 0) { return true; } else if (val1 != 0 && val2 == 0) { return true; } else { return false; } }, any: function any(val1, val2) { return val1 != val2; }, emptyNonEmpty: function emptyNonEmpty(str1, str2) { var empty1 = emptyString(str1); var empty2 = emptyString(str2); return empty1 && !empty2 || !empty1 && empty2; } }; // define visual style properties // // - n.b. adding a new group of props may require updates to updateStyleHints() // - adding new props to an existing group gets handled automatically var t = styfn$2.types; var mainLabel = [{ name: 'label', type: t.text, triggersBounds: diff.any, triggersZOrder: diff.emptyNonEmpty }, { name: 'text-rotation', type: t.textRotation, triggersBounds: diff.any }, { name: 'text-margin-x', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'text-margin-y', type: t.bidirectionalSize, triggersBounds: diff.any }]; var sourceLabel = [{ name: 'source-label', type: t.text, triggersBounds: diff.any }, { name: 'source-text-rotation', type: t.textRotation, triggersBounds: diff.any }, { name: 'source-text-margin-x', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'source-text-margin-y', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'source-text-offset', type: t.size, triggersBounds: diff.any }]; var targetLabel = [{ name: 'target-label', type: t.text, triggersBounds: diff.any }, { name: 'target-text-rotation', type: t.textRotation, triggersBounds: diff.any }, { name: 'target-text-margin-x', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'target-text-margin-y', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'target-text-offset', type: t.size, triggersBounds: diff.any }]; var labelDimensions = [{ name: 'font-family', type: t.fontFamily, triggersBounds: diff.any }, { name: 'font-style', type: t.fontStyle, triggersBounds: diff.any }, { name: 'font-weight', type: t.fontWeight, triggersBounds: diff.any }, { name: 'font-size', type: t.size, triggersBounds: diff.any }, { name: 'text-transform', type: t.textTransform, triggersBounds: diff.any }, { name: 'text-wrap', type: t.textWrap, triggersBounds: diff.any }, { name: 'text-overflow-wrap', type: t.textOverflowWrap, triggersBounds: diff.any }, { name: 'text-max-width', type: t.size, triggersBounds: diff.any }, { name: 'text-outline-width', type: t.size, triggersBounds: diff.any }, { name: 'line-height', type: t.positiveNumber, triggersBounds: diff.any }]; var commonLabel = [{ name: 'text-valign', type: t.valign, triggersBounds: diff.any }, { name: 'text-halign', type: t.halign, triggersBounds: diff.any }, { name: 'color', type: t.color }, { name: 'text-outline-color', type: t.color }, { name: 'text-outline-opacity', type: t.zeroOneNumber }, { name: 'text-background-color', type: t.color }, { name: 'text-background-opacity', type: t.zeroOneNumber }, { name: 'text-background-padding', type: t.size, triggersBounds: diff.any }, { name: 'text-border-opacity', type: t.zeroOneNumber }, { name: 'text-border-color', type: t.color }, { name: 'text-border-width', type: t.size, triggersBounds: diff.any }, { name: 'text-border-style', type: t.borderStyle, triggersBounds: diff.any }, { name: 'text-background-shape', type: t.textBackgroundShape, triggersBounds: diff.any }, { name: 'text-justification', type: t.justification }]; var behavior = [{ name: 'events', type: t.bool, triggersZOrder: diff.any }, { name: 'text-events', type: t.bool, triggersZOrder: diff.any }]; var visibility = [{ name: 'display', type: t.display, triggersZOrder: diff.any, triggersBounds: diff.any, triggersBoundsOfConnectedEdges: true }, { name: 'visibility', type: t.visibility, triggersZOrder: diff.any }, { name: 'opacity', type: t.zeroOneNumber, triggersZOrder: diff.zeroNonZero }, { name: 'text-opacity', type: t.zeroOneNumber }, { name: 'min-zoomed-font-size', type: t.size }, { name: 'z-compound-depth', type: t.zCompoundDepth, triggersZOrder: diff.any }, { name: 'z-index-compare', type: t.zIndexCompare, triggersZOrder: diff.any }, { name: 'z-index', type: t.number, triggersZOrder: diff.any }]; var overlay = [{ name: 'overlay-padding', type: t.size, triggersBounds: diff.any }, { name: 'overlay-color', type: t.color }, { name: 'overlay-opacity', type: t.zeroOneNumber, triggersBounds: diff.zeroNonZero }, { name: 'overlay-shape', type: t.overlayShape, triggersBounds: diff.any }, { name: 'overlay-corner-radius', type: t.cornerRadius }]; var underlay = [{ name: 'underlay-padding', type: t.size, triggersBounds: diff.any }, { name: 'underlay-color', type: t.color }, { name: 'underlay-opacity', type: t.zeroOneNumber, triggersBounds: diff.zeroNonZero }, { name: 'underlay-shape', type: t.overlayShape, triggersBounds: diff.any }, { name: 'underlay-corner-radius', type: t.cornerRadius }]; var transition = [{ name: 'transition-property', type: t.propList }, { name: 'transition-duration', type: t.time }, { name: 'transition-delay', type: t.time }, { name: 'transition-timing-function', type: t.easing }]; var nodeSizeHashOverride = function nodeSizeHashOverride(ele, parsedProp) { if (parsedProp.value === 'label') { return -ele.poolIndex(); // no hash key hits is using label size (hitrate for perf probably low anyway) } else { return parsedProp.pfValue; } }; var nodeBody = [{ name: 'height', type: t.nodeSize, triggersBounds: diff.any, hashOverride: nodeSizeHashOverride }, { name: 'width', type: t.nodeSize, triggersBounds: diff.any, hashOverride: nodeSizeHashOverride }, { name: 'shape', type: t.nodeShape, triggersBounds: diff.any }, { name: 'shape-polygon-points', type: t.polygonPointList, triggersBounds: diff.any }, { name: 'corner-radius', type: t.cornerRadius }, { name: 'background-color', type: t.color }, { name: 'background-fill', type: t.fill }, { name: 'background-opacity', type: t.zeroOneNumber }, { name: 'background-blacken', type: t.nOneOneNumber }, { name: 'background-gradient-stop-colors', type: t.colors }, { name: 'background-gradient-stop-positions', type: t.percentages }, { name: 'background-gradient-direction', type: t.gradientDirection }, { name: 'padding', type: t.sizeMaybePercent, triggersBounds: diff.any }, { name: 'padding-relative-to', type: t.paddingRelativeTo, triggersBounds: diff.any }, { name: 'bounds-expansion', type: t.boundsExpansion, triggersBounds: diff.any }]; var nodeBorder = [{ name: 'border-color', type: t.color }, { name: 'border-opacity', type: t.zeroOneNumber }, { name: 'border-width', type: t.size, triggersBounds: diff.any }, { name: 'border-style', type: t.borderStyle }, { name: 'border-cap', type: t.lineCap }, { name: 'border-join', type: t.lineJoin }, { name: 'border-dash-pattern', type: t.numbers }, { name: 'border-dash-offset', type: t.number }, { name: 'border-position', type: t.linePosition }]; var nodeOutline = [{ name: 'outline-color', type: t.color }, { name: 'outline-opacity', type: t.zeroOneNumber }, { name: 'outline-width', type: t.size, triggersBounds: diff.any }, { name: 'outline-style', type: t.borderStyle }, { name: 'outline-offset', type: t.size, triggersBounds: diff.any }]; var backgroundImage = [{ name: 'background-image', type: t.urls }, { name: 'background-image-crossorigin', type: t.bgCrossOrigin }, { name: 'background-image-opacity', type: t.zeroOneNumbers }, { name: 'background-image-containment', type: t.bgContainment }, { name: 'background-image-smoothing', type: t.bools }, { name: 'background-position-x', type: t.bgPos }, { name: 'background-position-y', type: t.bgPos }, { name: 'background-width-relative-to', type: t.bgRelativeTo }, { name: 'background-height-relative-to', type: t.bgRelativeTo }, { name: 'background-repeat', type: t.bgRepeat }, { name: 'background-fit', type: t.bgFit }, { name: 'background-clip', type: t.bgClip }, { name: 'background-width', type: t.bgWH }, { name: 'background-height', type: t.bgWH }, { name: 'background-offset-x', type: t.bgPos }, { name: 'background-offset-y', type: t.bgPos }]; var compound = [{ name: 'position', type: t.position, triggersBounds: diff.any }, { name: 'compound-sizing-wrt-labels', type: t.compoundIncludeLabels, triggersBounds: diff.any }, { name: 'min-width', type: t.size, triggersBounds: diff.any }, { name: 'min-width-bias-left', type: t.sizeMaybePercent, triggersBounds: diff.any }, { name: 'min-width-bias-right', type: t.sizeMaybePercent, triggersBounds: diff.any }, { name: 'min-height', type: t.size, triggersBounds: diff.any }, { name: 'min-height-bias-top', type: t.sizeMaybePercent, triggersBounds: diff.any }, { name: 'min-height-bias-bottom', type: t.sizeMaybePercent, triggersBounds: diff.any }]; var edgeLine = [{ name: 'line-style', type: t.lineStyle }, { name: 'line-color', type: t.color }, { name: 'line-fill', type: t.fill }, { name: 'line-cap', type: t.lineCap }, { name: 'line-opacity', type: t.zeroOneNumber }, { name: 'line-dash-pattern', type: t.numbers }, { name: 'line-dash-offset', type: t.number }, { name: 'line-gradient-stop-colors', type: t.colors }, { name: 'line-gradient-stop-positions', type: t.percentages }, { name: 'curve-style', type: t.curveStyle, triggersBounds: diff.any, triggersBoundsOfParallelBeziers: true }, { name: 'haystack-radius', type: t.zeroOneNumber, triggersBounds: diff.any }, { name: 'source-endpoint', type: t.edgeEndpoint, triggersBounds: diff.any }, { name: 'target-endpoint', type: t.edgeEndpoint, triggersBounds: diff.any }, { name: 'control-point-step-size', type: t.size, triggersBounds: diff.any }, { name: 'control-point-distances', type: t.bidirectionalSizes, triggersBounds: diff.any }, { name: 'control-point-weights', type: t.numbers, triggersBounds: diff.any }, { name: 'segment-distances', type: t.bidirectionalSizes, triggersBounds: diff.any }, { name: 'segment-weights', type: t.numbers, triggersBounds: diff.any }, { name: 'segment-radii', type: t.numbers, triggersBounds: diff.any }, { name: 'radius-type', type: t.radiusType, triggersBounds: diff.any }, { name: 'taxi-turn', type: t.bidirectionalSizeMaybePercent, triggersBounds: diff.any }, { name: 'taxi-turn-min-distance', type: t.size, triggersBounds: diff.any }, { name: 'taxi-direction', type: t.axisDirection, triggersBounds: diff.any }, { name: 'taxi-radius', type: t.number, triggersBounds: diff.any }, { name: 'edge-distances', type: t.edgeDistances, triggersBounds: diff.any }, { name: 'arrow-scale', type: t.positiveNumber, triggersBounds: diff.any }, { name: 'loop-direction', type: t.angle, triggersBounds: diff.any }, { name: 'loop-sweep', type: t.angle, triggersBounds: diff.any }, { name: 'source-distance-from-node', type: t.size, triggersBounds: diff.any }, { name: 'target-distance-from-node', type: t.size, triggersBounds: diff.any }]; var ghost = [{ name: 'ghost', type: t.bool, triggersBounds: diff.any }, { name: 'ghost-offset-x', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'ghost-offset-y', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'ghost-opacity', type: t.zeroOneNumber }]; var core = [{ name: 'selection-box-color', type: t.color }, { name: 'selection-box-opacity', type: t.zeroOneNumber }, { name: 'selection-box-border-color', type: t.color }, { name: 'selection-box-border-width', type: t.size }, { name: 'active-bg-color', type: t.color }, { name: 'active-bg-opacity', type: t.zeroOneNumber }, { name: 'active-bg-size', type: t.size }, { name: 'outside-texture-bg-color', type: t.color }, { name: 'outside-texture-bg-opacity', type: t.zeroOneNumber }]; // pie backgrounds for nodes var pie = []; styfn$2.pieBackgroundN = 16; // because the pie properties are numbered, give access to a constant N (for renderer use) pie.push({ name: 'pie-size', type: t.sizeMaybePercent }); for (var i = 1; i <= styfn$2.pieBackgroundN; i++) { pie.push({ name: 'pie-' + i + '-background-color', type: t.color }); pie.push({ name: 'pie-' + i + '-background-size', type: t.percent }); pie.push({ name: 'pie-' + i + '-background-opacity', type: t.zeroOneNumber }); } // edge arrows var edgeArrow = []; var arrowPrefixes = styfn$2.arrowPrefixes = ['source', 'mid-source', 'target', 'mid-target']; [{ name: 'arrow-shape', type: t.arrowShape, triggersBounds: diff.any }, { name: 'arrow-color', type: t.color }, { name: 'arrow-fill', type: t.arrowFill }, { name: 'arrow-width', type: t.arrowWidth }].forEach(function (prop) { arrowPrefixes.forEach(function (prefix) { var name = prefix + '-' + prop.name; var type = prop.type, triggersBounds = prop.triggersBounds; edgeArrow.push({ name: name, type: type, triggersBounds: triggersBounds }); }); }, {}); var props = styfn$2.properties = [].concat(behavior, transition, visibility, overlay, underlay, ghost, commonLabel, labelDimensions, mainLabel, sourceLabel, targetLabel, nodeBody, nodeBorder, nodeOutline, backgroundImage, pie, compound, edgeLine, edgeArrow, core); var propGroups = styfn$2.propertyGroups = { // common to all eles behavior: behavior, transition: transition, visibility: visibility, overlay: overlay, underlay: underlay, ghost: ghost, // labels commonLabel: commonLabel, labelDimensions: labelDimensions, mainLabel: mainLabel, sourceLabel: sourceLabel, targetLabel: targetLabel, // node props nodeBody: nodeBody, nodeBorder: nodeBorder, nodeOutline: nodeOutline, backgroundImage: backgroundImage, pie: pie, compound: compound, // edge props edgeLine: edgeLine, edgeArrow: edgeArrow, core: core }; var propGroupNames = styfn$2.propertyGroupNames = {}; var propGroupKeys = styfn$2.propertyGroupKeys = Object.keys(propGroups); propGroupKeys.forEach(function (key) { propGroupNames[key] = propGroups[key].map(function (prop) { return prop.name; }); propGroups[key].forEach(function (prop) { return prop.groupKey = key; }); }); // define aliases var aliases = styfn$2.aliases = [{ name: 'content', pointsTo: 'label' }, { name: 'control-point-distance', pointsTo: 'control-point-distances' }, { name: 'control-point-weight', pointsTo: 'control-point-weights' }, { name: 'segment-distance', pointsTo: 'segment-distances' }, { name: 'segment-weight', pointsTo: 'segment-weights' }, { name: 'segment-radius', pointsTo: 'segment-radii' }, { name: 'edge-text-rotation', pointsTo: 'text-rotation' }, { name: 'padding-left', pointsTo: 'padding' }, { name: 'padding-right', pointsTo: 'padding' }, { name: 'padding-top', pointsTo: 'padding' }, { name: 'padding-bottom', pointsTo: 'padding' }]; // list of property names styfn$2.propertyNames = props.map(function (p) { return p.name; }); // allow access of properties by name ( e.g. style.properties.height ) for (var _i = 0; _i < props.length; _i++) { var prop = props[_i]; props[prop.name] = prop; // allow lookup by name } // map aliases for (var _i2 = 0; _i2 < aliases.length; _i2++) { var alias = aliases[_i2]; var pointsToProp = props[alias.pointsTo]; var aliasProp = { name: alias.name, alias: true, pointsTo: pointsToProp }; // add alias prop for parsing props.push(aliasProp); props[alias.name] = aliasProp; // allow lookup by name } })(); styfn$2.getDefaultProperty = function (name) { return this.getDefaultProperties()[name]; }; styfn$2.getDefaultProperties = function () { var _p = this._private; if (_p.defaultProperties != null) { return _p.defaultProperties; } var rawProps = extend({ // core props 'selection-box-color': '#ddd', 'selection-box-opacity': 0.65, 'selection-box-border-color': '#aaa', 'selection-box-border-width': 1, 'active-bg-color': 'black', 'active-bg-opacity': 0.15, 'active-bg-size': 30, 'outside-texture-bg-color': '#000', 'outside-texture-bg-opacity': 0.125, // common node/edge props 'events': 'yes', 'text-events': 'no', 'text-valign': 'top', 'text-halign': 'center', 'text-justification': 'auto', 'line-height': 1, 'color': '#000', 'text-outline-color': '#000', 'text-outline-width': 0, 'text-outline-opacity': 1, 'text-opacity': 1, 'text-decoration': 'none', 'text-transform': 'none', 'text-wrap': 'none', 'text-overflow-wrap': 'whitespace', 'text-max-width': 9999, 'text-background-color': '#000', 'text-background-opacity': 0, 'text-background-shape': 'rectangle', 'text-background-padding': 0, 'text-border-opacity': 0, 'text-border-width': 0, 'text-border-style': 'solid', 'text-border-color': '#000', 'font-family': 'Helvetica Neue, Helvetica, sans-serif', 'font-style': 'normal', 'font-weight': 'normal', 'font-size': 16, 'min-zoomed-font-size': 0, 'text-rotation': 'none', 'source-text-rotation': 'none', 'target-text-rotation': 'none', 'visibility': 'visible', 'display': 'element', 'opacity': 1, 'z-compound-depth': 'auto', 'z-index-compare': 'auto', 'z-index': 0, 'label': '', 'text-margin-x': 0, 'text-margin-y': 0, 'source-label': '', 'source-text-offset': 0, 'source-text-margin-x': 0, 'source-text-margin-y': 0, 'target-label': '', 'target-text-offset': 0, 'target-text-margin-x': 0, 'target-text-margin-y': 0, 'overlay-opacity': 0, 'overlay-color': '#000', 'overlay-padding': 10, 'overlay-shape': 'round-rectangle', 'overlay-corner-radius': 'auto', 'underlay-opacity': 0, 'underlay-color': '#000', 'underlay-padding': 10, 'underlay-shape': 'round-rectangle', 'underlay-corner-radius': 'auto', 'transition-property': 'none', 'transition-duration': 0, 'transition-delay': 0, 'transition-timing-function': 'linear', // node props 'background-blacken': 0, 'background-color': '#999', 'background-fill': 'solid', 'background-opacity': 1, 'background-image': 'none', 'background-image-crossorigin': 'anonymous', 'background-image-opacity': 1, 'background-image-containment': 'inside', 'background-image-smoothing': 'yes', 'background-position-x': '50%', 'background-position-y': '50%', 'background-offset-x': 0, 'background-offset-y': 0, 'background-width-relative-to': 'include-padding', 'background-height-relative-to': 'include-padding', 'background-repeat': 'no-repeat', 'background-fit': 'none', 'background-clip': 'node', 'background-width': 'auto', 'background-height': 'auto', 'border-color': '#000', 'border-opacity': 1, 'border-width': 0, 'border-style': 'solid', 'border-dash-pattern': [4, 2], 'border-dash-offset': 0, 'border-cap': 'butt', 'border-join': 'miter', 'border-position': 'center', 'outline-color': '#999', 'outline-opacity': 1, 'outline-width': 0, 'outline-offset': 0, 'outline-style': 'solid', 'height': 30, 'width': 30, 'shape': 'ellipse', 'shape-polygon-points': '-1, -1, 1, -1, 1, 1, -1, 1', 'corner-radius': 'auto', 'bounds-expansion': 0, // node gradient 'background-gradient-direction': 'to-bottom', 'background-gradient-stop-colors': '#999', 'background-gradient-stop-positions': '0%', // ghost props 'ghost': 'no', 'ghost-offset-y': 0, 'ghost-offset-x': 0, 'ghost-opacity': 0, // compound props 'padding': 0, 'padding-relative-to': 'width', 'position': 'origin', 'compound-sizing-wrt-labels': 'include', 'min-width': 0, 'min-width-bias-left': 0, 'min-width-bias-right': 0, 'min-height': 0, 'min-height-bias-top': 0, 'min-height-bias-bottom': 0 }, { // node pie bg 'pie-size': '100%' }, [{ name: 'pie-{{i}}-background-color', value: 'black' }, { name: 'pie-{{i}}-background-size', value: '0%' }, { name: 'pie-{{i}}-background-opacity', value: 1 }].reduce(function (css, prop) { for (var i = 1; i <= styfn$2.pieBackgroundN; i++) { var name = prop.name.replace('{{i}}', i); var val = prop.value; css[name] = val; } return css; }, {}), { // edge props 'line-style': 'solid', 'line-color': '#999', 'line-fill': 'solid', 'line-cap': 'butt', 'line-opacity': 1, 'line-gradient-stop-colors': '#999', 'line-gradient-stop-positions': '0%', 'control-point-step-size': 40, 'control-point-weights': 0.5, 'segment-weights': 0.5, 'segment-distances': 20, 'segment-radii': 15, 'radius-type': 'arc-radius', 'taxi-turn': '50%', 'taxi-radius': 15, 'taxi-turn-min-distance': 10, 'taxi-direction': 'auto', 'edge-distances': 'intersection', 'curve-style': 'haystack', 'haystack-radius': 0, 'arrow-scale': 1, 'loop-direction': '-45deg', 'loop-sweep': '-90deg', 'source-distance-from-node': 0, 'target-distance-from-node': 0, 'source-endpoint': 'outside-to-node', 'target-endpoint': 'outside-to-node', 'line-dash-pattern': [6, 3], 'line-dash-offset': 0 }, [{ name: 'arrow-shape', value: 'none' }, { name: 'arrow-color', value: '#999' }, { name: 'arrow-fill', value: 'filled' }, { name: 'arrow-width', value: 1 }].reduce(function (css, prop) { styfn$2.arrowPrefixes.forEach(function (prefix) { var name = prefix + '-' + prop.name; var val = prop.value; css[name] = val; }); return css; }, {})); var parsedProps = {}; for (var i = 0; i < this.properties.length; i++) { var prop = this.properties[i]; if (prop.pointsTo) { continue; } var name = prop.name; var val = rawProps[name]; var parsedProp = this.parse(name, val); parsedProps[name] = parsedProp; } _p.defaultProperties = parsedProps; return _p.defaultProperties; }; styfn$2.addDefaultStylesheet = function () { this.selector(':parent').css({ 'shape': 'rectangle', 'padding': 10, 'background-color': '#eee', 'border-color': '#ccc', 'border-width': 1 }).selector('edge').css({ 'width': 3 }).selector(':loop').css({ 'curve-style': 'bezier' }).selector('edge:compound').css({ 'curve-style': 'bezier', 'source-endpoint': 'outside-to-line', 'target-endpoint': 'outside-to-line' }).selector(':selected').css({ 'background-color': '#0169D9', 'line-color': '#0169D9', 'source-arrow-color': '#0169D9', 'target-arrow-color': '#0169D9', 'mid-source-arrow-color': '#0169D9', 'mid-target-arrow-color': '#0169D9' }).selector(':parent:selected').css({ 'background-color': '#CCE1F9', 'border-color': '#aec8e5' }).selector(':active').css({ 'overlay-color': 'black', 'overlay-padding': 10, 'overlay-opacity': 0.25 }); this.defaultLength = this.length; }; var styfn$1 = {}; // a caching layer for property parsing styfn$1.parse = function (name, value, propIsBypass, propIsFlat) { var self = this; // function values can't be cached in all cases, and there isn't much benefit of caching them anyway if (fn$6(value)) { return self.parseImplWarn(name, value, propIsBypass, propIsFlat); } var flatKey = propIsFlat === 'mapping' || propIsFlat === true || propIsFlat === false || propIsFlat == null ? 'dontcare' : propIsFlat; var bypassKey = propIsBypass ? 't' : 'f'; var valueKey = '' + value; var argHash = hashStrings(name, valueKey, bypassKey, flatKey); var propCache = self.propCache = self.propCache || []; var ret; if (!(ret = propCache[argHash])) { ret = propCache[argHash] = self.parseImplWarn(name, value, propIsBypass, propIsFlat); } // - bypasses can't be shared b/c the value can be changed by animations or otherwise overridden // - mappings can't be shared b/c mappings are per-element if (propIsBypass || propIsFlat === 'mapping') { // need a copy since props are mutated later in their lifecycles ret = copy(ret); if (ret) { ret.value = copy(ret.value); // because it could be an array, e.g. colour } } return ret; }; styfn$1.parseImplWarn = function (name, value, propIsBypass, propIsFlat) { var prop = this.parseImpl(name, value, propIsBypass, propIsFlat); if (!prop && value != null) { warn("The style property `".concat(name, ": ").concat(value, "` is invalid")); } if (prop && (prop.name === 'width' || prop.name === 'height') && value === 'label') { warn('The style value of `label` is deprecated for `' + prop.name + '`'); } return prop; }; // parse a property; return null on invalid; return parsed property otherwise // fields : // - name : the name of the property // - value : the parsed, native-typed value of the property // - strValue : a string value that represents the property value in valid css // - bypass : true iff the property is a bypass property styfn$1.parseImpl = function (name, value, propIsBypass, propIsFlat) { var self = this; name = camel2dash(name); // make sure the property name is in dash form (e.g. 'property-name' not 'propertyName') var property = self.properties[name]; var passedValue = value; var types = self.types; if (!property) { return null; } // return null on property of unknown name if (value === undefined) { return null; } // can't assign undefined // the property may be an alias if (property.alias) { property = property.pointsTo; name = property.name; } var valueIsString = string(value); if (valueIsString) { // trim the value to make parsing easier value = value.trim(); } var type = property.type; if (!type) { return null; } // no type, no luck // check if bypass is null or empty string (i.e. indication to delete bypass property) if (propIsBypass && (value === '' || value === null)) { return { name: name, value: value, bypass: true, deleteBypass: true }; } // check if value is a function used as a mapper if (fn$6(value)) { return { name: name, value: value, strValue: 'fn', mapped: types.fn, bypass: propIsBypass }; } // check if value is mapped var data, mapData; if (!valueIsString || propIsFlat || value.length < 7 || value[1] !== 'a') ; else if (value.length >= 7 && value[0] === 'd' && (data = new RegExp(types.data.regex).exec(value))) { if (propIsBypass) { return false; } // mappers not allowed in bypass var mapped = types.data; return { name: name, value: data, strValue: '' + value, mapped: mapped, field: data[1], bypass: propIsBypass }; } else if (value.length >= 10 && value[0] === 'm' && (mapData = new RegExp(types.mapData.regex).exec(value))) { if (propIsBypass) { return false; } // mappers not allowed in bypass if (type.multiple) { return false; } // impossible to map to num var _mapped = types.mapData; // we can map only if the type is a colour or a number if (!(type.color || type.number)) { return false; } var valueMin = this.parse(name, mapData[4]); // parse to validate if (!valueMin || valueMin.mapped) { return false; } // can't be invalid or mapped var valueMax = this.parse(name, mapData[5]); // parse to validate if (!valueMax || valueMax.mapped) { return false; } // can't be invalid or mapped // check if valueMin and valueMax are the same if (valueMin.pfValue === valueMax.pfValue || valueMin.strValue === valueMax.strValue) { warn('`' + name + ': ' + value + '` is not a valid mapper because the output range is zero; converting to `' + name + ': ' + valueMin.strValue + '`'); return this.parse(name, valueMin.strValue); // can't make much of a mapper without a range } else if (type.color) { var c1 = valueMin.value; var c2 = valueMax.value; var same = c1[0] === c2[0] // red && c1[1] === c2[1] // green && c1[2] === c2[2] // blue && ( // optional alpha c1[3] === c2[3] // same alpha outright || (c1[3] == null || c1[3] === 1 // full opacity for colour 1? ) && (c2[3] == null || c2[3] === 1) // full opacity for colour 2? ); if (same) { return false; } // can't make a mapper without a range } return { name: name, value: mapData, strValue: '' + value, mapped: _mapped, field: mapData[1], fieldMin: parseFloat(mapData[2]), // min & max are numeric fieldMax: parseFloat(mapData[3]), valueMin: valueMin.value, valueMax: valueMax.value, bypass: propIsBypass }; } if (type.multiple && propIsFlat !== 'multiple') { var vals; if (valueIsString) { vals = value.split(/\s+/); } else if (array(value)) { vals = value; } else { vals = [value]; } if (type.evenMultiple && vals.length % 2 !== 0) { return null; } var valArr = []; var unitsArr = []; var pfValArr = []; var strVal = ''; var hasEnum = false; for (var i = 0; i < vals.length; i++) { var p = self.parse(name, vals[i], propIsBypass, 'multiple'); hasEnum = hasEnum || string(p.value); valArr.push(p.value); pfValArr.push(p.pfValue != null ? p.pfValue : p.value); unitsArr.push(p.units); strVal += (i > 0 ? ' ' : '') + p.strValue; } if (type.validate && !type.validate(valArr, unitsArr)) { return null; } if (type.singleEnum && hasEnum) { if (valArr.length === 1 && string(valArr[0])) { return { name: name, value: valArr[0], strValue: valArr[0], bypass: propIsBypass }; } else { return null; } } return { name: name, value: valArr, pfValue: pfValArr, strValue: strVal, bypass: propIsBypass, units: unitsArr }; } // several types also allow enums var checkEnums = function checkEnums() { for (var _i = 0; _i < type.enums.length; _i++) { var en = type.enums[_i]; if (en === value) { return { name: name, value: value, strValue: '' + value, bypass: propIsBypass }; } } return null; }; // check the type and return the appropriate object if (type.number) { var units; var implicitUnits = 'px'; // not set => px if (type.units) { // use specified units if set units = type.units; } if (type.implicitUnits) { implicitUnits = type.implicitUnits; } if (!type.unitless) { if (valueIsString) { var unitsRegex = 'px|em' + (type.allowPercent ? '|\\%' : ''); if (units) { unitsRegex = units; } // only allow explicit units if so set var match = value.match('^(' + number + ')(' + unitsRegex + ')?' + '$'); if (match) { value = match[1]; units = match[2] || implicitUnits; } } else if (!units || type.implicitUnits) { units = implicitUnits; // implicitly px if unspecified } } value = parseFloat(value); // if not a number and enums not allowed, then the value is invalid if (isNaN(value) && type.enums === undefined) { return null; } // check if this number type also accepts special keywords in place of numbers // (i.e. `left`, `auto`, etc) if (isNaN(value) && type.enums !== undefined) { value = passedValue; return checkEnums(); } // check if value must be an integer if (type.integer && !integer(value)) { return null; } // check value is within range if (type.min !== undefined && (value < type.min || type.strictMin && value === type.min) || type.max !== undefined && (value > type.max || type.strictMax && value === type.max)) { return null; } var ret = { name: name, value: value, strValue: '' + value + (units ? units : ''), units: units, bypass: propIsBypass }; // normalise value in pixels if (type.unitless || units !== 'px' && units !== 'em') { ret.pfValue = value; } else { ret.pfValue = units === 'px' || !units ? value : this.getEmSizeInPixels() * value; } // normalise value in ms if (units === 'ms' || units === 's') { ret.pfValue = units === 'ms' ? value : 1000 * value; } // normalise value in rad if (units === 'deg' || units === 'rad') { ret.pfValue = units === 'rad' ? value : deg2rad(value); } // normalize value in % if (units === '%') { ret.pfValue = value / 100; } return ret; } else if (type.propList) { var props = []; var propsStr = '' + value; if (propsStr === 'none') ; else { // go over each prop var propsSplit = propsStr.split(/\s*,\s*|\s+/); for (var _i2 = 0; _i2 < propsSplit.length; _i2++) { var propName = propsSplit[_i2].trim(); if (self.properties[propName]) { props.push(propName); } else { warn('`' + propName + '` is not a valid property name'); } } if (props.length === 0) { return null; } } return { name: name, value: props, strValue: props.length === 0 ? 'none' : props.join(' '), bypass: propIsBypass }; } else if (type.color) { var tuple = color2tuple(value); if (!tuple) { return null; } return { name: name, value: tuple, pfValue: tuple, strValue: 'rgb(' + tuple[0] + ',' + tuple[1] + ',' + tuple[2] + ')', // n.b. no spaces b/c of multiple support bypass: propIsBypass }; } else if (type.regex || type.regexes) { // first check enums if (type.enums) { var enumProp = checkEnums(); if (enumProp) { return enumProp; } } var regexes = type.regexes ? type.regexes : [type.regex]; for (var _i3 = 0; _i3 < regexes.length; _i3++) { var regex = new RegExp(regexes[_i3]); // make a regex from the type string var m = regex.exec(value); if (m) { // regex matches return { name: name, value: type.singleRegexMatchValue ? m[1] : m, strValue: '' + value, bypass: propIsBypass }; } } return null; // didn't match any } else if (type.string) { // just return return { name: name, value: '' + value, strValue: '' + value, bypass: propIsBypass }; } else if (type.enums) { // check enums last because it's a combo type in others return checkEnums(); } else { return null; // not a type we can handle } }; var Style = function Style(cy) { if (!(this instanceof Style)) { return new Style(cy); } if (!core(cy)) { error('A style must have a core reference'); return; } this._private = { cy: cy, coreStyle: {} }; this.length = 0; this.resetToDefault(); }; var styfn = Style.prototype; styfn.instanceString = function () { return 'style'; }; // remove all contexts styfn.clear = function () { var _p = this._private; var cy = _p.cy; var eles = cy.elements(); for (var i = 0; i < this.length; i++) { this[i] = undefined; } this.length = 0; _p.contextStyles = {}; _p.propDiffs = {}; this.cleanElements(eles, true); eles.forEach(function (ele) { var ele_p = ele[0]._private; ele_p.styleDirty = true; ele_p.appliedInitStyle = false; }); return this; // chaining }; styfn.resetToDefault = function () { this.clear(); this.addDefaultStylesheet(); return this; }; // builds a style object for the 'core' selector styfn.core = function (propName) { return this._private.coreStyle[propName] || this.getDefaultProperty(propName); }; // create a new context from the specified selector string and switch to that context styfn.selector = function (selectorStr) { // 'core' is a special case and does not need a selector var selector = selectorStr === 'core' ? null : new Selector(selectorStr); var i = this.length++; // new context means new index this[i] = { selector: selector, properties: [], mappedProperties: [], index: i }; return this; // chaining }; // add one or many css rules to the current context styfn.css = function () { var self = this; var args = arguments; if (args.length === 1) { var map = args[0]; for (var i = 0; i < self.properties.length; i++) { var prop = self.properties[i]; var mapVal = map[prop.name]; if (mapVal === undefined) { mapVal = map[dash2camel(prop.name)]; } if (mapVal !== undefined) { this.cssRule(prop.name, mapVal); } } } else if (args.length === 2) { this.cssRule(args[0], args[1]); } // do nothing if args are invalid return this; // chaining }; styfn.style = styfn.css; // add a single css rule to the current context styfn.cssRule = function (name, value) { // name-value pair var property = this.parse(name, value); // add property to current context if valid if (property) { var i = this.length - 1; this[i].properties.push(property); this[i].properties[property.name] = property; // allow access by name as well if (property.name.match(/pie-(\d+)-background-size/) && property.value) { this._private.hasPie = true; } if (property.mapped) { this[i].mappedProperties.push(property); } // add to core style if necessary var currentSelectorIsCore = !this[i].selector; if (currentSelectorIsCore) { this._private.coreStyle[property.name] = property; } } return this; // chaining }; styfn.append = function (style) { if (stylesheet(style)) { style.appendToStyle(this); } else if (array(style)) { this.appendFromJson(style); } else if (string(style)) { this.appendFromString(style); } // you probably wouldn't want to append a Style, since you'd duplicate the default parts return this; }; // static function Style.fromJson = function (cy, json) { var style = new Style(cy); style.fromJson(json); return style; }; Style.fromString = function (cy, string) { return new Style(cy).fromString(string); }; [styfn$8, styfn$7, styfn$6, styfn$5, styfn$4, styfn$3, styfn$2, styfn$1].forEach(function (props) { extend(styfn, props); }); Style.types = styfn.types; Style.properties = styfn.properties; Style.propertyGroups = styfn.propertyGroups; Style.propertyGroupNames = styfn.propertyGroupNames; Style.propertyGroupKeys = styfn.propertyGroupKeys; var corefn$2 = { style: function style(newStyle) { if (newStyle) { var s = this.setStyle(newStyle); s.update(); } return this._private.style; }, setStyle: function setStyle(style) { var _p = this._private; if (stylesheet(style)) { _p.style = style.generateStyle(this); } else if (array(style)) { _p.style = Style.fromJson(this, style); } else if (string(style)) { _p.style = Style.fromString(this, style); } else { _p.style = Style(this); } return _p.style; }, // e.g. cy.data() changed => recalc ele mappers updateStyle: function updateStyle() { this.mutableElements().updateStyle(); // just send to all eles } }; var defaultSelectionType = 'single'; var corefn$1 = { autolock: function autolock(bool) { if (bool !== undefined) { this._private.autolock = bool ? true : false; } else { return this._private.autolock; } return this; // chaining }, autoungrabify: function autoungrabify(bool) { if (bool !== undefined) { this._private.autoungrabify = bool ? true : false; } else { return this._private.autoungrabify; } return this; // chaining }, autounselectify: function autounselectify(bool) { if (bool !== undefined) { this._private.autounselectify = bool ? true : false; } else { return this._private.autounselectify; } return this; // chaining }, selectionType: function selectionType(selType) { var _p = this._private; if (_p.selectionType == null) { _p.selectionType = defaultSelectionType; } if (selType !== undefined) { if (selType === 'additive' || selType === 'single') { _p.selectionType = selType; } } else { return _p.selectionType; } return this; }, panningEnabled: function panningEnabled(bool) { if (bool !== undefined) { this._private.panningEnabled = bool ? true : false; } else { return this._private.panningEnabled; } return this; // chaining }, userPanningEnabled: function userPanningEnabled(bool) { if (bool !== undefined) { this._private.userPanningEnabled = bool ? true : false; } else { return this._private.userPanningEnabled; } return this; // chaining }, zoomingEnabled: function zoomingEnabled(bool) { if (bool !== undefined) { this._private.zoomingEnabled = bool ? true : false; } else { return this._private.zoomingEnabled; } return this; // chaining }, userZoomingEnabled: function userZoomingEnabled(bool) { if (bool !== undefined) { this._private.userZoomingEnabled = bool ? true : false; } else { return this._private.userZoomingEnabled; } return this; // chaining }, boxSelectionEnabled: function boxSelectionEnabled(bool) { if (bool !== undefined) { this._private.boxSelectionEnabled = bool ? true : false; } else { return this._private.boxSelectionEnabled; } return this; // chaining }, pan: function pan() { var args = arguments; var pan = this._private.pan; var dim, val, dims, x, y; switch (args.length) { case 0: // .pan() return pan; case 1: if (string(args[0])) { // .pan('x') dim = args[0]; return pan[dim]; } else if (plainObject(args[0])) { // .pan({ x: 0, y: 100 }) if (!this._private.panningEnabled) { return this; } dims = args[0]; x = dims.x; y = dims.y; if (number$1(x)) { pan.x = x; } if (number$1(y)) { pan.y = y; } this.emit('pan viewport'); } break; case 2: // .pan('x', 100) if (!this._private.panningEnabled) { return this; } dim = args[0]; val = args[1]; if ((dim === 'x' || dim === 'y') && number$1(val)) { pan[dim] = val; } this.emit('pan viewport'); break; // invalid } this.notify('viewport'); return this; // chaining }, panBy: function panBy(arg0, arg1) { var args = arguments; var pan = this._private.pan; var dim, val, dims, x, y; if (!this._private.panningEnabled) { return this; } switch (args.length) { case 1: if (plainObject(arg0)) { // .panBy({ x: 0, y: 100 }) dims = args[0]; x = dims.x; y = dims.y; if (number$1(x)) { pan.x += x; } if (number$1(y)) { pan.y += y; } this.emit('pan viewport'); } break; case 2: // .panBy('x', 100) dim = arg0; val = arg1; if ((dim === 'x' || dim === 'y') && number$1(val)) { pan[dim] += val; } this.emit('pan viewport'); break; // invalid } this.notify('viewport'); return this; // chaining }, fit: function fit(elements, padding) { var viewportState = this.getFitViewport(elements, padding); if (viewportState) { var _p = this._private; _p.zoom = viewportState.zoom; _p.pan = viewportState.pan; this.emit('pan zoom viewport'); this.notify('viewport'); } return this; // chaining }, getFitViewport: function getFitViewport(elements, padding) { if (number$1(elements) && padding === undefined) { // elements is optional padding = elements; elements = undefined; } if (!this._private.panningEnabled || !this._private.zoomingEnabled) { return; } var bb; if (string(elements)) { var sel = elements; elements = this.$(sel); } else if (boundingBox(elements)) { // assume bb var bbe = elements; bb = { x1: bbe.x1, y1: bbe.y1, x2: bbe.x2, y2: bbe.y2 }; bb.w = bb.x2 - bb.x1; bb.h = bb.y2 - bb.y1; } else if (!elementOrCollection(elements)) { elements = this.mutableElements(); } if (elementOrCollection(elements) && elements.empty()) { return; } // can't fit to nothing bb = bb || elements.boundingBox(); var w = this.width(); var h = this.height(); var zoom; padding = number$1(padding) ? padding : 0; if (!isNaN(w) && !isNaN(h) && w > 0 && h > 0 && !isNaN(bb.w) && !isNaN(bb.h) && bb.w > 0 && bb.h > 0) { zoom = Math.min((w - 2 * padding) / bb.w, (h - 2 * padding) / bb.h); // crop zoom zoom = zoom > this._private.maxZoom ? this._private.maxZoom : zoom; zoom = zoom < this._private.minZoom ? this._private.minZoom : zoom; var pan = { // now pan to middle x: (w - zoom * (bb.x1 + bb.x2)) / 2, y: (h - zoom * (bb.y1 + bb.y2)) / 2 }; return { zoom: zoom, pan: pan }; } return; }, zoomRange: function zoomRange(min, max) { var _p = this._private; if (max == null) { var opts = min; min = opts.min; max = opts.max; } if (number$1(min) && number$1(max) && min <= max) { _p.minZoom = min; _p.maxZoom = max; } else if (number$1(min) && max === undefined && min <= _p.maxZoom) { _p.minZoom = min; } else if (number$1(max) && min === undefined && max >= _p.minZoom) { _p.maxZoom = max; } return this; }, minZoom: function minZoom(zoom) { if (zoom === undefined) { return this._private.minZoom; } else { return this.zoomRange({ min: zoom }); } }, maxZoom: function maxZoom(zoom) { if (zoom === undefined) { return this._private.maxZoom; } else { return this.zoomRange({ max: zoom }); } }, getZoomedViewport: function getZoomedViewport(params) { var _p = this._private; var currentPan = _p.pan; var currentZoom = _p.zoom; var pos; // in rendered px var zoom; var bail = false; if (!_p.zoomingEnabled) { // zooming disabled bail = true; } if (number$1(params)) { // then set the zoom zoom = params; } else if (plainObject(params)) { // then zoom about a point zoom = params.level; if (params.position != null) { pos = modelToRenderedPosition(params.position, currentZoom, currentPan); } else if (params.renderedPosition != null) { pos = params.renderedPosition; } if (pos != null && !_p.panningEnabled) { // panning disabled bail = true; } } // crop zoom zoom = zoom > _p.maxZoom ? _p.maxZoom : zoom; zoom = zoom < _p.minZoom ? _p.minZoom : zoom; // can't zoom with invalid params if (bail || !number$1(zoom) || zoom === currentZoom || pos != null && (!number$1(pos.x) || !number$1(pos.y))) { return null; } if (pos != null) { // set zoom about position var pan1 = currentPan; var zoom1 = currentZoom; var zoom2 = zoom; var pan2 = { x: -zoom2 / zoom1 * (pos.x - pan1.x) + pos.x, y: -zoom2 / zoom1 * (pos.y - pan1.y) + pos.y }; return { zoomed: true, panned: true, zoom: zoom2, pan: pan2 }; } else { // just set the zoom return { zoomed: true, panned: false, zoom: zoom, pan: currentPan }; } }, zoom: function zoom(params) { if (params === undefined) { // get return this._private.zoom; } else { // set var vp = this.getZoomedViewport(params); var _p = this._private; if (vp == null || !vp.zoomed) { return this; } _p.zoom = vp.zoom; if (vp.panned) { _p.pan.x = vp.pan.x; _p.pan.y = vp.pan.y; } this.emit('zoom' + (vp.panned ? ' pan' : '') + ' viewport'); this.notify('viewport'); return this; // chaining } }, viewport: function viewport(opts) { var _p = this._private; var zoomDefd = true; var panDefd = true; var events = []; // to trigger var zoomFailed = false; var panFailed = false; if (!opts) { return this; } if (!number$1(opts.zoom)) { zoomDefd = false; } if (!plainObject(opts.pan)) { panDefd = false; } if (!zoomDefd && !panDefd) { return this; } if (zoomDefd) { var z = opts.zoom; if (z < _p.minZoom || z > _p.maxZoom || !_p.zoomingEnabled) { zoomFailed = true; } else { _p.zoom = z; events.push('zoom'); } } if (panDefd && (!zoomFailed || !opts.cancelOnFailedZoom) && _p.panningEnabled) { var p = opts.pan; if (number$1(p.x)) { _p.pan.x = p.x; panFailed = false; } if (number$1(p.y)) { _p.pan.y = p.y; panFailed = false; } if (!panFailed) { events.push('pan'); } } if (events.length > 0) { events.push('viewport'); this.emit(events.join(' ')); this.notify('viewport'); } return this; // chaining }, center: function center(elements) { var pan = this.getCenterPan(elements); if (pan) { this._private.pan = pan; this.emit('pan viewport'); this.notify('viewport'); } return this; // chaining }, getCenterPan: function getCenterPan(elements, zoom) { if (!this._private.panningEnabled) { return; } if (string(elements)) { var selector = elements; elements = this.mutableElements().filter(selector); } else if (!elementOrCollection(elements)) { elements = this.mutableElements(); } if (elements.length === 0) { return; } // can't centre pan to nothing var bb = elements.boundingBox(); var w = this.width(); var h = this.height(); zoom = zoom === undefined ? this._private.zoom : zoom; var pan = { // middle x: (w - zoom * (bb.x1 + bb.x2)) / 2, y: (h - zoom * (bb.y1 + bb.y2)) / 2 }; return pan; }, reset: function reset() { if (!this._private.panningEnabled || !this._private.zoomingEnabled) { return this; } this.viewport({ pan: { x: 0, y: 0 }, zoom: 1 }); return this; // chaining }, invalidateSize: function invalidateSize() { this._private.sizeCache = null; }, size: function size() { var _p = this._private; var container = _p.container; var cy = this; return _p.sizeCache = _p.sizeCache || (container ? function () { var style = cy.window().getComputedStyle(container); var val = function val(name) { return parseFloat(style.getPropertyValue(name)); }; return { width: container.clientWidth - val('padding-left') - val('padding-right'), height: container.clientHeight - val('padding-top') - val('padding-bottom') }; }() : { // fallback if no container (not 0 b/c can be used for dividing etc) width: 1, height: 1 }); }, width: function width() { return this.size().width; }, height: function height() { return this.size().height; }, extent: function extent() { var pan = this._private.pan; var zoom = this._private.zoom; var rb = this.renderedExtent(); var b = { x1: (rb.x1 - pan.x) / zoom, x2: (rb.x2 - pan.x) / zoom, y1: (rb.y1 - pan.y) / zoom, y2: (rb.y2 - pan.y) / zoom }; b.w = b.x2 - b.x1; b.h = b.y2 - b.y1; return b; }, renderedExtent: function renderedExtent() { var width = this.width(); var height = this.height(); return { x1: 0, y1: 0, x2: width, y2: height, w: width, h: height }; }, multiClickDebounceTime: function multiClickDebounceTime(_int) { if (_int) this._private.multiClickDebounceTime = _int;else return this._private.multiClickDebounceTime; return this; // chaining } }; // aliases corefn$1.centre = corefn$1.center; // backwards compatibility corefn$1.autolockNodes = corefn$1.autolock; corefn$1.autoungrabifyNodes = corefn$1.autoungrabify; var fn = { data: define.data({ field: 'data', bindingEvent: 'data', allowBinding: true, allowSetting: true, settingEvent: 'data', settingTriggersEvent: true, triggerFnName: 'trigger', allowGetting: true, updateStyle: true }), removeData: define.removeData({ field: 'data', event: 'data', triggerFnName: 'trigger', triggerEvent: true, updateStyle: true }), scratch: define.data({ field: 'scratch', bindingEvent: 'scratch', allowBinding: true, allowSetting: true, settingEvent: 'scratch', settingTriggersEvent: true, triggerFnName: 'trigger', allowGetting: true, updateStyle: true }), removeScratch: define.removeData({ field: 'scratch', event: 'scratch', triggerFnName: 'trigger', triggerEvent: true, updateStyle: true }) }; // aliases fn.attr = fn.data; fn.removeAttr = fn.removeData; var Core = function Core(opts) { var cy = this; opts = extend({}, opts); var container = opts.container; // allow for passing a wrapped jquery object // e.g. cytoscape({ container: $('#cy') }) if (container && !htmlElement(container) && htmlElement(container[0])) { container = container[0]; } var reg = container ? container._cyreg : null; // e.g. already registered some info (e.g. readies) via jquery reg = reg || {}; if (reg && reg.cy) { reg.cy.destroy(); reg = {}; // old instance => replace reg completely } var readies = reg.readies = reg.readies || []; if (container) { container._cyreg = reg; } // make sure container assoc'd reg points to this cy reg.cy = cy; var head = _window !== undefined && container !== undefined && !opts.headless; var options = opts; options.layout = extend({ name: head ? 'grid' : 'null' }, options.layout); options.renderer = extend({ name: head ? 'canvas' : 'null' }, options.renderer); var defVal = function defVal(def, val, altVal) { if (val !== undefined) { return val; } else if (altVal !== undefined) { return altVal; } else { return def; } }; var _p = this._private = { container: container, // html dom ele container ready: false, // whether ready has been triggered options: options, // cached options elements: new Collection(this), // elements in the graph listeners: [], // list of listeners aniEles: new Collection(this), // elements being animated data: options.data || {}, // data for the core scratch: {}, // scratch object for core layout: null, renderer: null, destroyed: false, // whether destroy was called notificationsEnabled: true, // whether notifications are sent to the renderer minZoom: 1e-50, maxZoom: 1e50, zoomingEnabled: defVal(true, options.zoomingEnabled), userZoomingEnabled: defVal(true, options.userZoomingEnabled), panningEnabled: defVal(true, options.panningEnabled), userPanningEnabled: defVal(true, options.userPanningEnabled), boxSelectionEnabled: defVal(true, options.boxSelectionEnabled), autolock: defVal(false, options.autolock, options.autolockNodes), autoungrabify: defVal(false, options.autoungrabify, options.autoungrabifyNodes), autounselectify: defVal(false, options.autounselectify), styleEnabled: options.styleEnabled === undefined ? head : options.styleEnabled, zoom: number$1(options.zoom) ? options.zoom : 1, pan: { x: plainObject(options.pan) && number$1(options.pan.x) ? options.pan.x : 0, y: plainObject(options.pan) && number$1(options.pan.y) ? options.pan.y : 0 }, animation: { // object for currently-running animations current: [], queue: [] }, hasCompoundNodes: false, multiClickDebounceTime: defVal(250, options.multiClickDebounceTime) }; this.createEmitter(); // set selection type this.selectionType(options.selectionType); // init zoom bounds this.zoomRange({ min: options.minZoom, max: options.maxZoom }); var loadExtData = function loadExtData(extData, next) { var anyIsPromise = extData.some(promise); if (anyIsPromise) { return Promise$1.all(extData).then(next); // load all data asynchronously, then exec rest of init } else { next(extData); // exec synchronously for convenience } }; // start with the default stylesheet so we have something before loading an external stylesheet if (_p.styleEnabled) { cy.setStyle([]); } // create the renderer var rendererOptions = extend({}, options, options.renderer); // allow rendering hints in top level options cy.initRenderer(rendererOptions); var setElesAndLayout = function setElesAndLayout(elements, onload, ondone) { cy.notifications(false); // remove old elements var oldEles = cy.mutableElements(); if (oldEles.length > 0) { oldEles.remove(); } if (elements != null) { if (plainObject(elements) || array(elements)) { cy.add(elements); } } cy.one('layoutready', function (e) { cy.notifications(true); cy.emit(e); // we missed this event by turning notifications off, so pass it on cy.one('load', onload); cy.emitAndNotify('load'); }).one('layoutstop', function () { cy.one('done', ondone); cy.emit('done'); }); var layoutOpts = extend({}, cy._private.options.layout); layoutOpts.eles = cy.elements(); cy.layout(layoutOpts).run(); }; loadExtData([options.style, options.elements], function (thens) { var initStyle = thens[0]; var initEles = thens[1]; // init style if (_p.styleEnabled) { cy.style().append(initStyle); } // initial load setElesAndLayout(initEles, function () { // onready cy.startAnimationLoop(); _p.ready = true; // if a ready callback is specified as an option, the bind it if (fn$6(options.ready)) { cy.on('ready', options.ready); } // bind all the ready handlers registered before creating this instance for (var i = 0; i < readies.length; i++) { var fn = readies[i]; cy.on('ready', fn); } if (reg) { reg.readies = []; } // clear b/c we've bound them all and don't want to keep it around in case a new core uses the same div etc cy.emit('ready'); }, options.done); }); }; var corefn = Core.prototype; // short alias extend(corefn, { instanceString: function instanceString() { return 'core'; }, isReady: function isReady() { return this._private.ready; }, destroyed: function destroyed() { return this._private.destroyed; }, ready: function ready(fn) { if (this.isReady()) { this.emitter().emit('ready', [], fn); // just calls fn as though triggered via ready event } else { this.on('ready', fn); } return this; }, destroy: function destroy() { var cy = this; if (cy.destroyed()) return; cy.stopAnimationLoop(); cy.destroyRenderer(); this.emit('destroy'); cy._private.destroyed = true; return cy; }, hasElementWithId: function hasElementWithId(id) { return this._private.elements.hasElementWithId(id); }, getElementById: function getElementById(id) { return this._private.elements.getElementById(id); }, hasCompoundNodes: function hasCompoundNodes() { return this._private.hasCompoundNodes; }, headless: function headless() { return this._private.renderer.isHeadless(); }, styleEnabled: function styleEnabled() { return this._private.styleEnabled; }, addToPool: function addToPool(eles) { this._private.elements.merge(eles); return this; // chaining }, removeFromPool: function removeFromPool(eles) { this._private.elements.unmerge(eles); return this; }, container: function container() { return this._private.container || null; }, window: function window() { var container = this._private.container; if (container == null) return _window; var ownerDocument = this._private.container.ownerDocument; if (ownerDocument === undefined || ownerDocument == null) { return _window; } return ownerDocument.defaultView || _window; }, mount: function mount(container) { if (container == null) { return; } var cy = this; var _p = cy._private; var options = _p.options; if (!htmlElement(container) && htmlElement(container[0])) { container = container[0]; } cy.stopAnimationLoop(); cy.destroyRenderer(); _p.container = container; _p.styleEnabled = true; cy.invalidateSize(); cy.initRenderer(extend({}, options, options.renderer, { // allow custom renderer name to be re-used, otherwise use canvas name: options.renderer.name === 'null' ? 'canvas' : options.renderer.name })); cy.startAnimationLoop(); cy.style(options.style); cy.emit('mount'); return cy; }, unmount: function unmount() { var cy = this; cy.stopAnimationLoop(); cy.destroyRenderer(); cy.initRenderer({ name: 'null' }); cy.emit('unmount'); return cy; }, options: function options() { return copy(this._private.options); }, json: function json(obj) { var cy = this; var _p = cy._private; var eles = cy.mutableElements(); var getFreshRef = function getFreshRef(ele) { return cy.getElementById(ele.id()); }; if (plainObject(obj)) { // set cy.startBatch(); if (obj.elements) { var idInJson = {}; var updateEles = function updateEles(jsons, gr) { var toAdd = []; var toMod = []; for (var i = 0; i < jsons.length; i++) { var json = jsons[i]; if (!json.data.id) { warn('cy.json() cannot handle elements without an ID attribute'); continue; } var id = '' + json.data.id; // id must be string var ele = cy.getElementById(id); idInJson[id] = true; if (ele.length !== 0) { // existing element should be updated toMod.push({ ele: ele, json: json }); } else { // otherwise should be added if (gr) { json.group = gr; toAdd.push(json); } else { toAdd.push(json); } } } cy.add(toAdd); for (var _i = 0; _i < toMod.length; _i++) { var _toMod$_i = toMod[_i], _ele = _toMod$_i.ele, _json = _toMod$_i.json; _ele.json(_json); } }; if (array(obj.elements)) { // elements: [] updateEles(obj.elements); } else { // elements: { nodes: [], edges: [] } var grs = ['nodes', 'edges']; for (var i = 0; i < grs.length; i++) { var gr = grs[i]; var elements = obj.elements[gr]; if (array(elements)) { updateEles(elements, gr); } } } var parentsToRemove = cy.collection(); eles.filter(function (ele) { return !idInJson[ele.id()]; }).forEach(function (ele) { if (ele.isParent()) { parentsToRemove.merge(ele); } else { ele.remove(); } }); // so that children are not removed w/parent parentsToRemove.forEach(function (ele) { return ele.children().move({ parent: null }); }); // intermediate parents may be moved by prior line, so make sure we remove by fresh refs parentsToRemove.forEach(function (ele) { return getFreshRef(ele).remove(); }); } if (obj.style) { cy.style(obj.style); } if (obj.zoom != null && obj.zoom !== _p.zoom) { cy.zoom(obj.zoom); } if (obj.pan) { if (obj.pan.x !== _p.pan.x || obj.pan.y !== _p.pan.y) { cy.pan(obj.pan); } } if (obj.data) { cy.data(obj.data); } var fields = ['minZoom', 'maxZoom', 'zoomingEnabled', 'userZoomingEnabled', 'panningEnabled', 'userPanningEnabled', 'boxSelectionEnabled', 'autolock', 'autoungrabify', 'autounselectify', 'multiClickDebounceTime']; for (var _i2 = 0; _i2 < fields.length; _i2++) { var f = fields[_i2]; if (obj[f] != null) { cy[f](obj[f]); } } cy.endBatch(); return this; // chaining } else { // get var flat = !!obj; var json = {}; if (flat) { json.elements = this.elements().map(function (ele) { return ele.json(); }); } else { json.elements = {}; eles.forEach(function (ele) { var group = ele.group(); if (!json.elements[group]) { json.elements[group] = []; } json.elements[group].push(ele.json()); }); } if (this._private.styleEnabled) { json.style = cy.style().json(); } json.data = copy(cy.data()); var options = _p.options; json.zoomingEnabled = _p.zoomingEnabled; json.userZoomingEnabled = _p.userZoomingEnabled; json.zoom = _p.zoom; json.minZoom = _p.minZoom; json.maxZoom = _p.maxZoom; json.panningEnabled = _p.panningEnabled; json.userPanningEnabled = _p.userPanningEnabled; json.pan = copy(_p.pan); json.boxSelectionEnabled = _p.boxSelectionEnabled; json.renderer = copy(options.renderer); json.hideEdgesOnViewport = options.hideEdgesOnViewport; json.textureOnViewport = options.textureOnViewport; json.wheelSensitivity = options.wheelSensitivity; json.motionBlur = options.motionBlur; json.multiClickDebounceTime = options.multiClickDebounceTime; return json; } } }); corefn.$id = corefn.getElementById; [corefn$9, corefn$8, elesfn, corefn$7, corefn$6, corefn$5, corefn$4, corefn$3, corefn$2, corefn$1, fn].forEach(function (props) { extend(corefn, props); }); /* eslint-disable no-unused-vars */ var defaults$7 = { fit: true, // whether to fit the viewport to the graph directed: false, // whether the tree is directed downwards (or edges can point in any direction if false) padding: 30, // padding on fit circle: false, // put depths in concentric circles if true, put depths top down if false grid: false, // whether to create an even grid into which the DAG is placed (circle:false only) spacingFactor: 1.75, // positive spacing factor, larger => more space between nodes (N.B. n/a if causes overlap) boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } avoidOverlap: true, // prevents node overlap, may overflow boundingBox if not enough space nodeDimensionsIncludeLabels: false, // Excludes the label when calculating node bounding boxes for the layout algorithm roots: undefined, // the roots of the trees depthSort: undefined, // a sorting function to order nodes at equal depth. e.g. function(a, b){ return a.data('weight') - b.data('weight') } animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled, animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; var deprecatedOptionDefaults = { maximal: false, // whether to shift nodes down their natural BFS depths in order to avoid upwards edges (DAGS only); setting acyclic to true sets maximal to true also acyclic: false // whether the tree is acyclic and thus a node could be shifted (due to the maximal option) multiple times without causing an infinite loop; setting to true sets maximal to true also; if you are uncertain whether a tree is acyclic, set to false to avoid potential infinite loops }; /* eslint-enable */ var getInfo = function getInfo(ele) { return ele.scratch('breadthfirst'); }; var setInfo = function setInfo(ele, obj) { return ele.scratch('breadthfirst', obj); }; function BreadthFirstLayout(options) { this.options = extend({}, defaults$7, deprecatedOptionDefaults, options); } BreadthFirstLayout.prototype.run = function () { var params = this.options; var options = params; var cy = params.cy; var eles = options.eles; var nodes = eles.nodes().filter(function (n) { return !n.isParent(); }); var graph = eles; var directed = options.directed; var maximal = options.acyclic || options.maximal || options.maximalAdjustments > 0; // maximalAdjustments for compat. w/ old code; also, setting acyclic to true sets maximal to true var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); var roots; if (elementOrCollection(options.roots)) { roots = options.roots; } else if (array(options.roots)) { var rootsArray = []; for (var i = 0; i < options.roots.length; i++) { var id = options.roots[i]; var ele = cy.getElementById(id); rootsArray.push(ele); } roots = cy.collection(rootsArray); } else if (string(options.roots)) { roots = cy.$(options.roots); } else { if (directed) { roots = nodes.roots(); } else { var components = eles.components(); roots = cy.collection(); var _loop = function _loop(_i) { var comp = components[_i]; var maxDegree = comp.maxDegree(false); var compRoots = comp.filter(function (ele) { return ele.degree(false) === maxDegree; }); roots = roots.add(compRoots); }; for (var _i = 0; _i < components.length; _i++) { _loop(_i); } } } var depths = []; var foundByBfs = {}; var addToDepth = function addToDepth(ele, d) { if (depths[d] == null) { depths[d] = []; } var i = depths[d].length; depths[d].push(ele); setInfo(ele, { index: i, depth: d }); }; var changeDepth = function changeDepth(ele, newDepth) { var _getInfo = getInfo(ele), depth = _getInfo.depth, index = _getInfo.index; depths[depth][index] = null; addToDepth(ele, newDepth); }; // find the depths of the nodes graph.bfs({ roots: roots, directed: options.directed, visit: function visit(node, edge, pNode, i, depth) { var ele = node[0]; var id = ele.id(); addToDepth(ele, depth); foundByBfs[id] = true; } }); // check for nodes not found by bfs var orphanNodes = []; for (var _i2 = 0; _i2 < nodes.length; _i2++) { var _ele = nodes[_i2]; if (foundByBfs[_ele.id()]) { continue; } else { orphanNodes.push(_ele); } } // assign the nodes a depth and index var assignDepthsAt = function assignDepthsAt(i) { var eles = depths[i]; for (var j = 0; j < eles.length; j++) { var _ele2 = eles[j]; if (_ele2 == null) { eles.splice(j, 1); j--; continue; } setInfo(_ele2, { depth: i, index: j }); } }; var assignDepths = function assignDepths() { for (var _i3 = 0; _i3 < depths.length; _i3++) { assignDepthsAt(_i3); } }; var adjustMaximally = function adjustMaximally(ele, shifted) { var eInfo = getInfo(ele); var incomers = ele.incomers().filter(function (el) { return el.isNode() && eles.has(el); }); var maxDepth = -1; var id = ele.id(); for (var k = 0; k < incomers.length; k++) { var incmr = incomers[k]; var iInfo = getInfo(incmr); maxDepth = Math.max(maxDepth, iInfo.depth); } if (eInfo.depth <= maxDepth) { if (!options.acyclic && shifted[id]) { return null; } var newDepth = maxDepth + 1; changeDepth(ele, newDepth); shifted[id] = newDepth; return true; } return false; }; // for the directed case, try to make the edges all go down (i.e. depth i => depth i + 1) if (directed && maximal) { var Q = []; var shifted = {}; var enqueue = function enqueue(n) { return Q.push(n); }; var dequeue = function dequeue() { return Q.shift(); }; nodes.forEach(function (n) { return Q.push(n); }); while (Q.length > 0) { var _ele3 = dequeue(); var didShift = adjustMaximally(_ele3, shifted); if (didShift) { _ele3.outgoers().filter(function (el) { return el.isNode() && eles.has(el); }).forEach(enqueue); } else if (didShift === null) { warn('Detected double maximal shift for node `' + _ele3.id() + '`. Bailing maximal adjustment due to cycle. Use `options.maximal: true` only on DAGs.'); break; // exit on failure } } } assignDepths(); // clear holes // find min distance we need to leave between nodes var minDistance = 0; if (options.avoidOverlap) { for (var _i4 = 0; _i4 < nodes.length; _i4++) { var n = nodes[_i4]; var nbb = n.layoutDimensions(options); var w = nbb.w; var h = nbb.h; minDistance = Math.max(minDistance, w, h); } } // get the weighted percent for an element based on its connectivity to other levels var cachedWeightedPercent = {}; var getWeightedPercent = function getWeightedPercent(ele) { if (cachedWeightedPercent[ele.id()]) { return cachedWeightedPercent[ele.id()]; } var eleDepth = getInfo(ele).depth; var neighbors = ele.neighborhood(); var percent = 0; var samples = 0; for (var _i5 = 0; _i5 < neighbors.length; _i5++) { var neighbor = neighbors[_i5]; if (neighbor.isEdge() || neighbor.isParent() || !nodes.has(neighbor)) { continue; } var bf = getInfo(neighbor); if (bf == null) { continue; } var index = bf.index; var depth = bf.depth; // unassigned neighbours shouldn't affect the ordering if (index == null || depth == null) { continue; } var nDepth = depths[depth].length; if (depth < eleDepth) { // only get influenced by elements above percent += index / nDepth; samples++; } } samples = Math.max(1, samples); percent = percent / samples; if (samples === 0) { // put lone nodes at the start percent = 0; } cachedWeightedPercent[ele.id()] = percent; return percent; }; // rearrange the indices in each depth level based on connectivity var sortFn = function sortFn(a, b) { var apct = getWeightedPercent(a); var bpct = getWeightedPercent(b); var diff = apct - bpct; if (diff === 0) { return ascending(a.id(), b.id()); // make sure sort doesn't have don't-care comparisons } else { return diff; } }; if (options.depthSort !== undefined) { sortFn = options.depthSort; } // sort each level to make connected nodes closer for (var _i6 = 0; _i6 < depths.length; _i6++) { depths[_i6].sort(sortFn); assignDepthsAt(_i6); } // assign orphan nodes to a new top-level depth var orphanDepth = []; for (var _i7 = 0; _i7 < orphanNodes.length; _i7++) { orphanDepth.push(orphanNodes[_i7]); } depths.unshift(orphanDepth); assignDepths(); var biggestDepthSize = 0; for (var _i8 = 0; _i8 < depths.length; _i8++) { biggestDepthSize = Math.max(depths[_i8].length, biggestDepthSize); } var center = { x: bb.x1 + bb.w / 2, y: bb.x1 + bb.h / 2 }; var maxDepthSize = depths.reduce(function (max, eles) { return Math.max(max, eles.length); }, 0); var getPosition = function getPosition(ele) { var _getInfo2 = getInfo(ele), depth = _getInfo2.depth, index = _getInfo2.index; var depthSize = depths[depth].length; var distanceX = Math.max(bb.w / ((options.grid ? maxDepthSize : depthSize) + 1), minDistance); var distanceY = Math.max(bb.h / (depths.length + 1), minDistance); var radiusStepSize = Math.min(bb.w / 2 / depths.length, bb.h / 2 / depths.length); radiusStepSize = Math.max(radiusStepSize, minDistance); if (!options.circle) { var epos = { x: center.x + (index + 1 - (depthSize + 1) / 2) * distanceX, y: (depth + 1) * distanceY }; return epos; } else { var radius = radiusStepSize * depth + radiusStepSize - (depths.length > 0 && depths[0].length <= 3 ? radiusStepSize / 2 : 0); var theta = 2 * Math.PI / depths[depth].length * index; if (depth === 0 && depths[0].length === 1) { radius = 1; } return { x: center.x + radius * Math.cos(theta), y: center.y + radius * Math.sin(theta) }; } }; eles.nodes().layoutPositions(this, options, getPosition); return this; // chaining }; var defaults$6 = { fit: true, // whether to fit the viewport to the graph padding: 30, // the padding on fit boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } avoidOverlap: true, // prevents node overlap, may overflow boundingBox and radius if not enough space nodeDimensionsIncludeLabels: false, // Excludes the label when calculating node bounding boxes for the layout algorithm spacingFactor: undefined, // Applies a multiplicative factor (>0) to expand or compress the overall area that the nodes take up radius: undefined, // the radius of the circle startAngle: 3 / 2 * Math.PI, // where nodes start in radians sweep: undefined, // how many radians should be between the first and last node (defaults to full circle) clockwise: true, // whether the layout should go clockwise (true) or counterclockwise/anticlockwise (false) sort: undefined, // a sorting function to order the nodes; e.g. function(a, b){ return a.data('weight') - b.data('weight') } animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function CircleLayout(options) { this.options = extend({}, defaults$6, options); } CircleLayout.prototype.run = function () { var params = this.options; var options = params; var cy = params.cy; var eles = options.eles; var clockwise = options.counterclockwise !== undefined ? !options.counterclockwise : options.clockwise; var nodes = eles.nodes().not(':parent'); if (options.sort) { nodes = nodes.sort(options.sort); } var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); var center = { x: bb.x1 + bb.w / 2, y: bb.y1 + bb.h / 2 }; var sweep = options.sweep === undefined ? 2 * Math.PI - 2 * Math.PI / nodes.length : options.sweep; var dTheta = sweep / Math.max(1, nodes.length - 1); var r; var minDistance = 0; for (var i = 0; i < nodes.length; i++) { var n = nodes[i]; var nbb = n.layoutDimensions(options); var w = nbb.w; var h = nbb.h; minDistance = Math.max(minDistance, w, h); } if (number$1(options.radius)) { r = options.radius; } else if (nodes.length <= 1) { r = 0; } else { r = Math.min(bb.h, bb.w) / 2 - minDistance; } // calculate the radius if (nodes.length > 1 && options.avoidOverlap) { // but only if more than one node (can't overlap) minDistance *= 1.75; // just to have some nice spacing var dcos = Math.cos(dTheta) - Math.cos(0); var dsin = Math.sin(dTheta) - Math.sin(0); var rMin = Math.sqrt(minDistance * minDistance / (dcos * dcos + dsin * dsin)); // s.t. no nodes overlapping r = Math.max(rMin, r); } var getPos = function getPos(ele, i) { var theta = options.startAngle + i * dTheta * (clockwise ? 1 : -1); var rx = r * Math.cos(theta); var ry = r * Math.sin(theta); var pos = { x: center.x + rx, y: center.y + ry }; return pos; }; eles.nodes().layoutPositions(this, options, getPos); return this; // chaining }; var defaults$5 = { fit: true, // whether to fit the viewport to the graph padding: 30, // the padding on fit startAngle: 3 / 2 * Math.PI, // where nodes start in radians sweep: undefined, // how many radians should be between the first and last node (defaults to full circle) clockwise: true, // whether the layout should go clockwise (true) or counterclockwise/anticlockwise (false) equidistant: false, // whether levels have an equal radial distance betwen them, may cause bounding box overflow minNodeSpacing: 10, // min spacing between outside of nodes (used for radius adjustment) boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } avoidOverlap: true, // prevents node overlap, may overflow boundingBox if not enough space nodeDimensionsIncludeLabels: false, // Excludes the label when calculating node bounding boxes for the layout algorithm height: undefined, // height of layout area (overrides container height) width: undefined, // width of layout area (overrides container width) spacingFactor: undefined, // Applies a multiplicative factor (>0) to expand or compress the overall area that the nodes take up concentric: function concentric(node) { // returns numeric value for each node, placing higher nodes in levels towards the centre return node.degree(); }, levelWidth: function levelWidth(nodes) { // the variation of concentric values in each level return nodes.maxDegree() / 4; }, animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function ConcentricLayout(options) { this.options = extend({}, defaults$5, options); } ConcentricLayout.prototype.run = function () { var params = this.options; var options = params; var clockwise = options.counterclockwise !== undefined ? !options.counterclockwise : options.clockwise; var cy = params.cy; var eles = options.eles; var nodes = eles.nodes().not(':parent'); var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); var center = { x: bb.x1 + bb.w / 2, y: bb.y1 + bb.h / 2 }; var nodeValues = []; // { node, value } var maxNodeSize = 0; for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; var value = void 0; // calculate the node value value = options.concentric(node); nodeValues.push({ value: value, node: node }); // for style mapping node._private.scratch.concentric = value; } // in case we used the `concentric` in style nodes.updateStyle(); // calculate max size now based on potentially updated mappers for (var _i = 0; _i < nodes.length; _i++) { var _node = nodes[_i]; var nbb = _node.layoutDimensions(options); maxNodeSize = Math.max(maxNodeSize, nbb.w, nbb.h); } // sort node values in descreasing order nodeValues.sort(function (a, b) { return b.value - a.value; }); var levelWidth = options.levelWidth(nodes); // put the values into levels var levels = [[]]; var currentLevel = levels[0]; for (var _i2 = 0; _i2 < nodeValues.length; _i2++) { var val = nodeValues[_i2]; if (currentLevel.length > 0) { var diff = Math.abs(currentLevel[0].value - val.value); if (diff >= levelWidth) { currentLevel = []; levels.push(currentLevel); } } currentLevel.push(val); } // create positions from levels var minDist = maxNodeSize + options.minNodeSpacing; // min dist between nodes if (!options.avoidOverlap) { // then strictly constrain to bb var firstLvlHasMulti = levels.length > 0 && levels[0].length > 1; var maxR = Math.min(bb.w, bb.h) / 2 - minDist; var rStep = maxR / (levels.length + firstLvlHasMulti ? 1 : 0); minDist = Math.min(minDist, rStep); } // find the metrics for each level var r = 0; for (var _i3 = 0; _i3 < levels.length; _i3++) { var level = levels[_i3]; var sweep = options.sweep === undefined ? 2 * Math.PI - 2 * Math.PI / level.length : options.sweep; var dTheta = level.dTheta = sweep / Math.max(1, level.length - 1); // calculate the radius if (level.length > 1 && options.avoidOverlap) { // but only if more than one node (can't overlap) var dcos = Math.cos(dTheta) - Math.cos(0); var dsin = Math.sin(dTheta) - Math.sin(0); var rMin = Math.sqrt(minDist * minDist / (dcos * dcos + dsin * dsin)); // s.t. no nodes overlapping r = Math.max(rMin, r); } level.r = r; r += minDist; } if (options.equidistant) { var rDeltaMax = 0; var _r = 0; for (var _i4 = 0; _i4 < levels.length; _i4++) { var _level = levels[_i4]; var rDelta = _level.r - _r; rDeltaMax = Math.max(rDeltaMax, rDelta); } _r = 0; for (var _i5 = 0; _i5 < levels.length; _i5++) { var _level2 = levels[_i5]; if (_i5 === 0) { _r = _level2.r; } _level2.r = _r; _r += rDeltaMax; } } // calculate the node positions var pos = {}; // id => position for (var _i6 = 0; _i6 < levels.length; _i6++) { var _level3 = levels[_i6]; var _dTheta = _level3.dTheta; var _r2 = _level3.r; for (var j = 0; j < _level3.length; j++) { var _val = _level3[j]; var theta = options.startAngle + (clockwise ? 1 : -1) * _dTheta * j; var p = { x: center.x + _r2 * Math.cos(theta), y: center.y + _r2 * Math.sin(theta) }; pos[_val.node.id()] = p; } } // position the nodes eles.nodes().layoutPositions(this, options, function (ele) { var id = ele.id(); return pos[id]; }); return this; // chaining }; /* The CoSE layout was written by Gerardo Huck. https://www.linkedin.com/in/gerardohuck/ Based on the following article: http://dl.acm.org/citation.cfm?id=1498047 Modifications tracked on Github. */ var DEBUG; /** * @brief : default layout options */ var defaults$4 = { // Called on `layoutready` ready: function ready() {}, // Called on `layoutstop` stop: function stop() {}, // Whether to animate while running the layout // true : Animate continuously as the layout is running // false : Just show the end result // 'end' : Animate with the end result, from the initial positions to the end positions animate: true, // Easing of the animation for animate:'end' animationEasing: undefined, // The duration of the animation for animate:'end' animationDuration: undefined, // A function that determines whether the node should be animated // All nodes animated by default on animate enabled // Non-animated nodes are positioned immediately when the layout starts animateFilter: function animateFilter(node, i) { return true; }, // The layout animates only after this many milliseconds for animate:true // (prevents flashing on fast runs) animationThreshold: 250, // Number of iterations between consecutive screen positions update refresh: 20, // Whether to fit the network view after when done fit: true, // Padding on fit padding: 30, // Constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } boundingBox: undefined, // Excludes the label when calculating node bounding boxes for the layout algorithm nodeDimensionsIncludeLabels: false, // Randomize the initial positions of the nodes (true) or use existing positions (false) randomize: false, // Extra spacing between components in non-compound graphs componentSpacing: 40, // Node repulsion (non overlapping) multiplier nodeRepulsion: function nodeRepulsion(node) { return 2048; }, // Node repulsion (overlapping) multiplier nodeOverlap: 4, // Ideal edge (non nested) length idealEdgeLength: function idealEdgeLength(edge) { return 32; }, // Divisor to compute edge forces edgeElasticity: function edgeElasticity(edge) { return 32; }, // Nesting factor (multiplier) to compute ideal edge length for nested edges nestingFactor: 1.2, // Gravity force (constant) gravity: 1, // Maximum number of iterations to perform numIter: 1000, // Initial temperature (maximum node displacement) initialTemp: 1000, // Cooling factor (how the temperature is reduced between consecutive iterations coolingFactor: 0.99, // Lower temperature threshold (below this point the layout will end) minTemp: 1.0 }; /** * @brief : constructor * @arg options : object containing layout options */ function CoseLayout(options) { this.options = extend({}, defaults$4, options); this.options.layout = this; // Exclude any edge that has a source or target node that is not in the set of passed-in nodes var nodes = this.options.eles.nodes(); var edges = this.options.eles.edges(); var notEdges = edges.filter(function (e) { var sourceId = e.source().data('id'); var targetId = e.target().data('id'); var hasSource = nodes.some(function (n) { return n.data('id') === sourceId; }); var hasTarget = nodes.some(function (n) { return n.data('id') === targetId; }); return !hasSource || !hasTarget; }); this.options.eles = this.options.eles.not(notEdges); } /** * @brief : runs the layout */ CoseLayout.prototype.run = function () { var options = this.options; var cy = options.cy; var layout = this; layout.stopped = false; if (options.animate === true || options.animate === false) { layout.emit({ type: 'layoutstart', layout: layout }); } // Set DEBUG - Global variable if (true === options.debug) { DEBUG = true; } else { DEBUG = false; } // Initialize layout info var layoutInfo = createLayoutInfo(cy, layout, options); // Show LayoutInfo contents if debugging if (DEBUG) { printLayoutInfo(layoutInfo); } // If required, randomize node positions if (options.randomize) { randomizePositions(layoutInfo); } var startTime = performanceNow(); var refresh = function refresh() { refreshPositions(layoutInfo, cy, options); // Fit the graph if necessary if (true === options.fit) { cy.fit(options.padding); } }; var mainLoop = function mainLoop(i) { if (layout.stopped || i >= options.numIter) { // logDebug("Layout manually stopped. Stopping computation in step " + i); return false; } // Do one step in the phisical simulation step(layoutInfo, options); // Update temperature layoutInfo.temperature = layoutInfo.temperature * options.coolingFactor; // logDebug("New temperature: " + layoutInfo.temperature); if (layoutInfo.temperature < options.minTemp) { // logDebug("Temperature drop below minimum threshold. Stopping computation in step " + i); return false; } return true; }; var done = function done() { if (options.animate === true || options.animate === false) { refresh(); // Layout has finished layout.one('layoutstop', options.stop); layout.emit({ type: 'layoutstop', layout: layout }); } else { var nodes = options.eles.nodes(); var getScaledPos = getScaleInBoundsFn(layoutInfo, options, nodes); nodes.layoutPositions(layout, options, getScaledPos); } }; var i = 0; var loopRet = true; if (options.animate === true) { var frame = function frame() { var f = 0; while (loopRet && f < options.refresh) { loopRet = mainLoop(i); i++; f++; } if (!loopRet) { // it's done separateComponents(layoutInfo, options); done(); } else { var now = performanceNow(); if (now - startTime >= options.animationThreshold) { refresh(); } requestAnimationFrame(frame); } }; frame(); } else { while (loopRet) { loopRet = mainLoop(i); i++; } separateComponents(layoutInfo, options); done(); } return this; // chaining }; /** * @brief : called on continuous layouts to stop them before they finish */ CoseLayout.prototype.stop = function () { this.stopped = true; if (this.thread) { this.thread.stop(); } this.emit('layoutstop'); return this; // chaining }; CoseLayout.prototype.destroy = function () { if (this.thread) { this.thread.stop(); } return this; // chaining }; /** * @brief : Creates an object which is contains all the data * used in the layout process * @arg cy : cytoscape.js object * @return : layoutInfo object initialized */ var createLayoutInfo = function createLayoutInfo(cy, layout, options) { // Shortcut var edges = options.eles.edges(); var nodes = options.eles.nodes(); var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); var layoutInfo = { isCompound: cy.hasCompoundNodes(), layoutNodes: [], idToIndex: {}, nodeSize: nodes.size(), graphSet: [], indexToGraph: [], layoutEdges: [], edgeSize: edges.size(), temperature: options.initialTemp, clientWidth: bb.w, clientHeight: bb.h, boundingBox: bb }; var components = options.eles.components(); var id2cmptId = {}; for (var i = 0; i < components.length; i++) { var component = components[i]; for (var j = 0; j < component.length; j++) { var node = component[j]; id2cmptId[node.id()] = i; } } // Iterate over all nodes, creating layout nodes for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = nodes[i]; var nbb = n.layoutDimensions(options); var tempNode = {}; tempNode.isLocked = n.locked(); tempNode.id = n.data('id'); tempNode.parentId = n.data('parent'); tempNode.cmptId = id2cmptId[n.id()]; tempNode.children = []; tempNode.positionX = n.position('x'); tempNode.positionY = n.position('y'); tempNode.offsetX = 0; tempNode.offsetY = 0; tempNode.height = nbb.w; tempNode.width = nbb.h; tempNode.maxX = tempNode.positionX + tempNode.width / 2; tempNode.minX = tempNode.positionX - tempNode.width / 2; tempNode.maxY = tempNode.positionY + tempNode.height / 2; tempNode.minY = tempNode.positionY - tempNode.height / 2; tempNode.padLeft = parseFloat(n.style('padding')); tempNode.padRight = parseFloat(n.style('padding')); tempNode.padTop = parseFloat(n.style('padding')); tempNode.padBottom = parseFloat(n.style('padding')); // forces tempNode.nodeRepulsion = fn$6(options.nodeRepulsion) ? options.nodeRepulsion(n) : options.nodeRepulsion; // Add new node layoutInfo.layoutNodes.push(tempNode); // Add entry to id-index map layoutInfo.idToIndex[tempNode.id] = i; } // Inline implementation of a queue, used for traversing the graph in BFS order var queue = []; var start = 0; // Points to the start the queue var end = -1; // Points to the end of the queue var tempGraph = []; // Second pass to add child information and // initialize queue for hierarchical traversal for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = layoutInfo.layoutNodes[i]; var p_id = n.parentId; // Check if node n has a parent node if (null != p_id) { // Add node Id to parent's list of children layoutInfo.layoutNodes[layoutInfo.idToIndex[p_id]].children.push(n.id); } else { // If a node doesn't have a parent, then it's in the root graph queue[++end] = n.id; tempGraph.push(n.id); } } // Add root graph to graphSet layoutInfo.graphSet.push(tempGraph); // Traverse the graph, level by level, while (start <= end) { // Get the node to visit and remove it from queue var node_id = queue[start++]; var node_ix = layoutInfo.idToIndex[node_id]; var node = layoutInfo.layoutNodes[node_ix]; var children = node.children; if (children.length > 0) { // Add children nodes as a new graph to graph set layoutInfo.graphSet.push(children); // Add children to que queue to be visited for (var i = 0; i < children.length; i++) { queue[++end] = children[i]; } } } // Create indexToGraph map for (var i = 0; i < layoutInfo.graphSet.length; i++) { var graph = layoutInfo.graphSet[i]; for (var j = 0; j < graph.length; j++) { var index = layoutInfo.idToIndex[graph[j]]; layoutInfo.indexToGraph[index] = i; } } // Iterate over all edges, creating Layout Edges for (var i = 0; i < layoutInfo.edgeSize; i++) { var e = edges[i]; var tempEdge = {}; tempEdge.id = e.data('id'); tempEdge.sourceId = e.data('source'); tempEdge.targetId = e.data('target'); // Compute ideal length var idealLength = fn$6(options.idealEdgeLength) ? options.idealEdgeLength(e) : options.idealEdgeLength; var elasticity = fn$6(options.edgeElasticity) ? options.edgeElasticity(e) : options.edgeElasticity; // Check if it's an inter graph edge var sourceIx = layoutInfo.idToIndex[tempEdge.sourceId]; var targetIx = layoutInfo.idToIndex[tempEdge.targetId]; var sourceGraph = layoutInfo.indexToGraph[sourceIx]; var targetGraph = layoutInfo.indexToGraph[targetIx]; if (sourceGraph != targetGraph) { // Find lowest common graph ancestor var lca = findLCA(tempEdge.sourceId, tempEdge.targetId, layoutInfo); // Compute sum of node depths, relative to lca graph var lcaGraph = layoutInfo.graphSet[lca]; var depth = 0; // Source depth var tempNode = layoutInfo.layoutNodes[sourceIx]; while (-1 === lcaGraph.indexOf(tempNode.id)) { tempNode = layoutInfo.layoutNodes[layoutInfo.idToIndex[tempNode.parentId]]; depth++; } // Target depth tempNode = layoutInfo.layoutNodes[targetIx]; while (-1 === lcaGraph.indexOf(tempNode.id)) { tempNode = layoutInfo.layoutNodes[layoutInfo.idToIndex[tempNode.parentId]]; depth++; } // logDebug('LCA of nodes ' + tempEdge.sourceId + ' and ' + tempEdge.targetId + // ". Index: " + lca + " Contents: " + lcaGraph.toString() + // ". Depth: " + depth); // Update idealLength idealLength *= depth * options.nestingFactor; } tempEdge.idealLength = idealLength; tempEdge.elasticity = elasticity; layoutInfo.layoutEdges.push(tempEdge); } // Finally, return layoutInfo object return layoutInfo; }; /** * @brief : This function finds the index of the lowest common * graph ancestor between 2 nodes in the subtree * (from the graph hierarchy induced tree) whose * root is graphIx * * @arg node1: node1's ID * @arg node2: node2's ID * @arg layoutInfo: layoutInfo object * */ var findLCA = function findLCA(node1, node2, layoutInfo) { // Find their common ancester, starting from the root graph var res = findLCA_aux(node1, node2, 0, layoutInfo); if (2 > res.count) { // If aux function couldn't find the common ancester, // then it is the root graph return 0; } else { return res.graph; } }; /** * @brief : Auxiliary function used for LCA computation * * @arg node1 : node1's ID * @arg node2 : node2's ID * @arg graphIx : subgraph index * @arg layoutInfo : layoutInfo object * * @return : object of the form {count: X, graph: Y}, where: * X is the number of ancestors (max: 2) found in * graphIx (and it's subgraphs), * Y is the graph index of the lowest graph containing * all X nodes */ var findLCA_aux = function findLCA_aux(node1, node2, graphIx, layoutInfo) { var graph = layoutInfo.graphSet[graphIx]; // If both nodes belongs to graphIx if (-1 < graph.indexOf(node1) && -1 < graph.indexOf(node2)) { return { count: 2, graph: graphIx }; } // Make recursive calls for all subgraphs var c = 0; for (var i = 0; i < graph.length; i++) { var nodeId = graph[i]; var nodeIx = layoutInfo.idToIndex[nodeId]; var children = layoutInfo.layoutNodes[nodeIx].children; // If the node has no child, skip it if (0 === children.length) { continue; } var childGraphIx = layoutInfo.indexToGraph[layoutInfo.idToIndex[children[0]]]; var result = findLCA_aux(node1, node2, childGraphIx, layoutInfo); if (0 === result.count) { // Neither node1 nor node2 are present in this subgraph continue; } else if (1 === result.count) { // One of (node1, node2) is present in this subgraph c++; if (2 === c) { // We've already found both nodes, no need to keep searching break; } } else { // Both nodes are present in this subgraph return result; } } return { count: c, graph: graphIx }; }; /** * @brief: printsLayoutInfo into js console * Only used for debbuging */ var printLayoutInfo; /** * @brief : Randomizes the position of all nodes */ var randomizePositions = function randomizePositions(layoutInfo, cy) { var width = layoutInfo.clientWidth; var height = layoutInfo.clientHeight; for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = layoutInfo.layoutNodes[i]; // No need to randomize compound nodes or locked nodes if (0 === n.children.length && !n.isLocked) { n.positionX = Math.random() * width; n.positionY = Math.random() * height; } } }; var getScaleInBoundsFn = function getScaleInBoundsFn(layoutInfo, options, nodes) { var bb = layoutInfo.boundingBox; var coseBB = { x1: Infinity, x2: -Infinity, y1: Infinity, y2: -Infinity }; if (options.boundingBox) { nodes.forEach(function (node) { var lnode = layoutInfo.layoutNodes[layoutInfo.idToIndex[node.data('id')]]; coseBB.x1 = Math.min(coseBB.x1, lnode.positionX); coseBB.x2 = Math.max(coseBB.x2, lnode.positionX); coseBB.y1 = Math.min(coseBB.y1, lnode.positionY); coseBB.y2 = Math.max(coseBB.y2, lnode.positionY); }); coseBB.w = coseBB.x2 - coseBB.x1; coseBB.h = coseBB.y2 - coseBB.y1; } return function (ele, i) { var lnode = layoutInfo.layoutNodes[layoutInfo.idToIndex[ele.data('id')]]; if (options.boundingBox) { // then add extra bounding box constraint var pctX = (lnode.positionX - coseBB.x1) / coseBB.w; var pctY = (lnode.positionY - coseBB.y1) / coseBB.h; return { x: bb.x1 + pctX * bb.w, y: bb.y1 + pctY * bb.h }; } else { return { x: lnode.positionX, y: lnode.positionY }; } }; }; /** * @brief : Updates the positions of nodes in the network * @arg layoutInfo : LayoutInfo object * @arg cy : Cytoscape object * @arg options : Layout options */ var refreshPositions = function refreshPositions(layoutInfo, cy, options) { // var s = 'Refreshing positions'; // logDebug(s); var layout = options.layout; var nodes = options.eles.nodes(); var getScaledPos = getScaleInBoundsFn(layoutInfo, options, nodes); nodes.positions(getScaledPos); // Trigger layoutReady only on first call if (true !== layoutInfo.ready) { // s = 'Triggering layoutready'; // logDebug(s); layoutInfo.ready = true; layout.one('layoutready', options.ready); layout.emit({ type: 'layoutready', layout: this }); } }; /** * @brief : Logs a debug message in JS console, if DEBUG is ON */ // var logDebug = function(text) { // if (DEBUG) { // console.debug(text); // } // }; /** * @brief : Performs one iteration of the physical simulation * @arg layoutInfo : LayoutInfo object already initialized * @arg cy : Cytoscape object * @arg options : Layout options */ var step = function step(layoutInfo, options, _step) { // var s = "\n\n###############################"; // s += "\nSTEP: " + step; // s += "\n###############################\n"; // logDebug(s); // Calculate node repulsions calculateNodeForces(layoutInfo, options); // Calculate edge forces calculateEdgeForces(layoutInfo); // Calculate gravity forces calculateGravityForces(layoutInfo, options); // Propagate forces from parent to child propagateForces(layoutInfo); // Update positions based on calculated forces updatePositions(layoutInfo); }; /** * @brief : Computes the node repulsion forces */ var calculateNodeForces = function calculateNodeForces(layoutInfo, options) { // Go through each of the graphs in graphSet // Nodes only repel each other if they belong to the same graph // var s = 'calculateNodeForces'; // logDebug(s); for (var i = 0; i < layoutInfo.graphSet.length; i++) { var graph = layoutInfo.graphSet[i]; var numNodes = graph.length; // s = "Set: " + graph.toString(); // logDebug(s); // Now get all the pairs of nodes // Only get each pair once, (A, B) = (B, A) for (var j = 0; j < numNodes; j++) { var node1 = layoutInfo.layoutNodes[layoutInfo.idToIndex[graph[j]]]; for (var k = j + 1; k < numNodes; k++) { var node2 = layoutInfo.layoutNodes[layoutInfo.idToIndex[graph[k]]]; nodeRepulsion(node1, node2, layoutInfo, options); } } } }; var randomDistance = function randomDistance(max) { return -max + 2 * max * Math.random(); }; /** * @brief : Compute the node repulsion forces between a pair of nodes */ var nodeRepulsion = function nodeRepulsion(node1, node2, layoutInfo, options) { // var s = "Node repulsion. Node1: " + node1.id + " Node2: " + node2.id; var cmptId1 = node1.cmptId; var cmptId2 = node2.cmptId; if (cmptId1 !== cmptId2 && !layoutInfo.isCompound) { return; } // Get direction of line connecting both node centers var directionX = node2.positionX - node1.positionX; var directionY = node2.positionY - node1.positionY; var maxRandDist = 1; // s += "\ndirectionX: " + directionX + ", directionY: " + directionY; // If both centers are the same, apply a random force if (0 === directionX && 0 === directionY) { directionX = randomDistance(maxRandDist); directionY = randomDistance(maxRandDist); } var overlap = nodesOverlap(node1, node2, directionX, directionY); if (overlap > 0) { // s += "\nNodes DO overlap."; // s += "\nOverlap: " + overlap; // If nodes overlap, repulsion force is proportional // to the overlap var force = options.nodeOverlap * overlap; // Compute the module and components of the force vector var distance = Math.sqrt(directionX * directionX + directionY * directionY); // s += "\nDistance: " + distance; var forceX = force * directionX / distance; var forceY = force * directionY / distance; } else { // s += "\nNodes do NOT overlap."; // If there's no overlap, force is inversely proportional // to squared distance // Get clipping points for both nodes var point1 = findClippingPoint(node1, directionX, directionY); var point2 = findClippingPoint(node2, -1 * directionX, -1 * directionY); // Use clipping points to compute distance var distanceX = point2.x - point1.x; var distanceY = point2.y - point1.y; var distanceSqr = distanceX * distanceX + distanceY * distanceY; var distance = Math.sqrt(distanceSqr); // s += "\nDistance: " + distance; // Compute the module and components of the force vector var force = (node1.nodeRepulsion + node2.nodeRepulsion) / distanceSqr; var forceX = force * distanceX / distance; var forceY = force * distanceY / distance; } // Apply force if (!node1.isLocked) { node1.offsetX -= forceX; node1.offsetY -= forceY; } if (!node2.isLocked) { node2.offsetX += forceX; node2.offsetY += forceY; } // s += "\nForceX: " + forceX + " ForceY: " + forceY; // logDebug(s); return; }; /** * @brief : Determines whether two nodes overlap or not * @return : Amount of overlapping (0 => no overlap) */ var nodesOverlap = function nodesOverlap(node1, node2, dX, dY) { if (dX > 0) { var overlapX = node1.maxX - node2.minX; } else { var overlapX = node2.maxX - node1.minX; } if (dY > 0) { var overlapY = node1.maxY - node2.minY; } else { var overlapY = node2.maxY - node1.minY; } if (overlapX >= 0 && overlapY >= 0) { return Math.sqrt(overlapX * overlapX + overlapY * overlapY); } else { return 0; } }; /** * @brief : Finds the point in which an edge (direction dX, dY) intersects * the rectangular bounding box of it's source/target node */ var findClippingPoint = function findClippingPoint(node, dX, dY) { // Shorcuts var X = node.positionX; var Y = node.positionY; var H = node.height || 1; var W = node.width || 1; var dirSlope = dY / dX; var nodeSlope = H / W; // var s = 'Computing clipping point of node ' + node.id + // " . Height: " + H + ", Width: " + W + // "\nDirection " + dX + ", " + dY; // // Compute intersection var res = {}; // Case: Vertical direction (up) if (0 === dX && 0 < dY) { res.x = X; // s += "\nUp direction"; res.y = Y + H / 2; return res; } // Case: Vertical direction (down) if (0 === dX && 0 > dY) { res.x = X; res.y = Y + H / 2; // s += "\nDown direction"; return res; } // Case: Intersects the right border if (0 < dX && -1 * nodeSlope <= dirSlope && dirSlope <= nodeSlope) { res.x = X + W / 2; res.y = Y + W * dY / 2 / dX; // s += "\nRightborder"; return res; } // Case: Intersects the left border if (0 > dX && -1 * nodeSlope <= dirSlope && dirSlope <= nodeSlope) { res.x = X - W / 2; res.y = Y - W * dY / 2 / dX; // s += "\nLeftborder"; return res; } // Case: Intersects the top border if (0 < dY && (dirSlope <= -1 * nodeSlope || dirSlope >= nodeSlope)) { res.x = X + H * dX / 2 / dY; res.y = Y + H / 2; // s += "\nTop border"; return res; } // Case: Intersects the bottom border if (0 > dY && (dirSlope <= -1 * nodeSlope || dirSlope >= nodeSlope)) { res.x = X - H * dX / 2 / dY; res.y = Y - H / 2; // s += "\nBottom border"; return res; } // s += "\nClipping point found at " + res.x + ", " + res.y; // logDebug(s); return res; }; /** * @brief : Calculates all edge forces */ var calculateEdgeForces = function calculateEdgeForces(layoutInfo, options) { // Iterate over all edges for (var i = 0; i < layoutInfo.edgeSize; i++) { // Get edge, source & target nodes var edge = layoutInfo.layoutEdges[i]; var sourceIx = layoutInfo.idToIndex[edge.sourceId]; var source = layoutInfo.layoutNodes[sourceIx]; var targetIx = layoutInfo.idToIndex[edge.targetId]; var target = layoutInfo.layoutNodes[targetIx]; // Get direction of line connecting both node centers var directionX = target.positionX - source.positionX; var directionY = target.positionY - source.positionY; // If both centers are the same, do nothing. // A random force has already been applied as node repulsion if (0 === directionX && 0 === directionY) { continue; } // Get clipping points for both nodes var point1 = findClippingPoint(source, directionX, directionY); var point2 = findClippingPoint(target, -1 * directionX, -1 * directionY); var lx = point2.x - point1.x; var ly = point2.y - point1.y; var l = Math.sqrt(lx * lx + ly * ly); var force = Math.pow(edge.idealLength - l, 2) / edge.elasticity; if (0 !== l) { var forceX = force * lx / l; var forceY = force * ly / l; } else { var forceX = 0; var forceY = 0; } // Add this force to target and source nodes if (!source.isLocked) { source.offsetX += forceX; source.offsetY += forceY; } if (!target.isLocked) { target.offsetX -= forceX; target.offsetY -= forceY; } // var s = 'Edge force between nodes ' + source.id + ' and ' + target.id; // s += "\nDistance: " + l + " Force: (" + forceX + ", " + forceY + ")"; // logDebug(s); } }; /** * @brief : Computes gravity forces for all nodes */ var calculateGravityForces = function calculateGravityForces(layoutInfo, options) { if (options.gravity === 0) { return; } var distThreshold = 1; // var s = 'calculateGravityForces'; // logDebug(s); for (var i = 0; i < layoutInfo.graphSet.length; i++) { var graph = layoutInfo.graphSet[i]; var numNodes = graph.length; // s = "Set: " + graph.toString(); // logDebug(s); // Compute graph center if (0 === i) { var centerX = layoutInfo.clientHeight / 2; var centerY = layoutInfo.clientWidth / 2; } else { // Get Parent node for this graph, and use its position as center var temp = layoutInfo.layoutNodes[layoutInfo.idToIndex[graph[0]]]; var parent = layoutInfo.layoutNodes[layoutInfo.idToIndex[temp.parentId]]; var centerX = parent.positionX; var centerY = parent.positionY; } // s = "Center found at: " + centerX + ", " + centerY; // logDebug(s); // Apply force to all nodes in graph for (var j = 0; j < numNodes; j++) { var node = layoutInfo.layoutNodes[layoutInfo.idToIndex[graph[j]]]; // s = "Node: " + node.id; if (node.isLocked) { continue; } var dx = centerX - node.positionX; var dy = centerY - node.positionY; var d = Math.sqrt(dx * dx + dy * dy); if (d > distThreshold) { var fx = options.gravity * dx / d; var fy = options.gravity * dy / d; node.offsetX += fx; node.offsetY += fy; // s += ": Applied force: " + fx + ", " + fy; } // logDebug(s); } } }; /** * @brief : This function propagates the existing offsets from * parent nodes to its descendents. * @arg layoutInfo : layoutInfo Object * @arg cy : cytoscape Object * @arg options : Layout options */ var propagateForces = function propagateForces(layoutInfo, options) { // Inline implementation of a queue, used for traversing the graph in BFS order var queue = []; var start = 0; // Points to the start the queue var end = -1; // Points to the end of the queue // logDebug('propagateForces'); // Start by visiting the nodes in the root graph queue.push.apply(queue, layoutInfo.graphSet[0]); end += layoutInfo.graphSet[0].length; // Traverse the graph, level by level, while (start <= end) { // Get the node to visit and remove it from queue var nodeId = queue[start++]; var nodeIndex = layoutInfo.idToIndex[nodeId]; var node = layoutInfo.layoutNodes[nodeIndex]; var children = node.children; // We only need to process the node if it's compound if (0 < children.length && !node.isLocked) { var offX = node.offsetX; var offY = node.offsetY; // var s = "Propagating offset from parent node : " + node.id + // ". OffsetX: " + offX + ". OffsetY: " + offY; // s += "\n Children: " + children.toString(); // logDebug(s); for (var i = 0; i < children.length; i++) { var childNode = layoutInfo.layoutNodes[layoutInfo.idToIndex[children[i]]]; // Propagate offset childNode.offsetX += offX; childNode.offsetY += offY; // Add children to queue to be visited queue[++end] = children[i]; } // Reset parent offsets node.offsetX = 0; node.offsetY = 0; } } }; /** * @brief : Updates the layout model positions, based on * the accumulated forces */ var updatePositions = function updatePositions(layoutInfo, options) { // var s = 'Updating positions'; // logDebug(s); // Reset boundaries for compound nodes for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = layoutInfo.layoutNodes[i]; if (0 < n.children.length) { // logDebug("Resetting boundaries of compound node: " + n.id); n.maxX = undefined; n.minX = undefined; n.maxY = undefined; n.minY = undefined; } } for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = layoutInfo.layoutNodes[i]; if (0 < n.children.length || n.isLocked) { // No need to set compound or locked node position // logDebug("Skipping position update of node: " + n.id); continue; } // s = "Node: " + n.id + " Previous position: (" + // n.positionX + ", " + n.positionY + ")."; // Limit displacement in order to improve stability var tempForce = limitForce(n.offsetX, n.offsetY, layoutInfo.temperature); n.positionX += tempForce.x; n.positionY += tempForce.y; n.offsetX = 0; n.offsetY = 0; n.minX = n.positionX - n.width; n.maxX = n.positionX + n.width; n.minY = n.positionY - n.height; n.maxY = n.positionY + n.height; // s += " New Position: (" + n.positionX + ", " + n.positionY + ")."; // logDebug(s); // Update ancestry boudaries updateAncestryBoundaries(n, layoutInfo); } // Update size, position of compund nodes for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = layoutInfo.layoutNodes[i]; if (0 < n.children.length && !n.isLocked) { n.positionX = (n.maxX + n.minX) / 2; n.positionY = (n.maxY + n.minY) / 2; n.width = n.maxX - n.minX; n.height = n.maxY - n.minY; // s = "Updating position, size of compound node " + n.id; // s += "\nPositionX: " + n.positionX + ", PositionY: " + n.positionY; // s += "\nWidth: " + n.width + ", Height: " + n.height; // logDebug(s); } } }; /** * @brief : Limits a force (forceX, forceY) to be not * greater (in modulo) than max. 8 Preserves force direction. */ var limitForce = function limitForce(forceX, forceY, max) { // var s = "Limiting force: (" + forceX + ", " + forceY + "). Max: " + max; var force = Math.sqrt(forceX * forceX + forceY * forceY); if (force > max) { var res = { x: max * forceX / force, y: max * forceY / force }; } else { var res = { x: forceX, y: forceY }; } // s += ".\nResult: (" + res.x + ", " + res.y + ")"; // logDebug(s); return res; }; /** * @brief : Function used for keeping track of compound node * sizes, since they should bound all their subnodes. */ var updateAncestryBoundaries = function updateAncestryBoundaries(node, layoutInfo) { // var s = "Propagating new position/size of node " + node.id; var parentId = node.parentId; if (null == parentId) { // If there's no parent, we are done // s += ". No parent node."; // logDebug(s); return; } // Get Parent Node var p = layoutInfo.layoutNodes[layoutInfo.idToIndex[parentId]]; var flag = false; // MaxX if (null == p.maxX || node.maxX + p.padRight > p.maxX) { p.maxX = node.maxX + p.padRight; flag = true; // s += "\nNew maxX for parent node " + p.id + ": " + p.maxX; } // MinX if (null == p.minX || node.minX - p.padLeft < p.minX) { p.minX = node.minX - p.padLeft; flag = true; // s += "\nNew minX for parent node " + p.id + ": " + p.minX; } // MaxY if (null == p.maxY || node.maxY + p.padBottom > p.maxY) { p.maxY = node.maxY + p.padBottom; flag = true; // s += "\nNew maxY for parent node " + p.id + ": " + p.maxY; } // MinY if (null == p.minY || node.minY - p.padTop < p.minY) { p.minY = node.minY - p.padTop; flag = true; // s += "\nNew minY for parent node " + p.id + ": " + p.minY; } // If updated boundaries, propagate changes upward if (flag) { // logDebug(s); return updateAncestryBoundaries(p, layoutInfo); } // s += ". No changes in boundaries/position of parent node " + p.id; // logDebug(s); return; }; var separateComponents = function separateComponents(layoutInfo, options) { var nodes = layoutInfo.layoutNodes; var components = []; for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; var cid = node.cmptId; var component = components[cid] = components[cid] || []; component.push(node); } var totalA = 0; for (var i = 0; i < components.length; i++) { var c = components[i]; if (!c) { continue; } c.x1 = Infinity; c.x2 = -Infinity; c.y1 = Infinity; c.y2 = -Infinity; for (var j = 0; j < c.length; j++) { var n = c[j]; c.x1 = Math.min(c.x1, n.positionX - n.width / 2); c.x2 = Math.max(c.x2, n.positionX + n.width / 2); c.y1 = Math.min(c.y1, n.positionY - n.height / 2); c.y2 = Math.max(c.y2, n.positionY + n.height / 2); } c.w = c.x2 - c.x1; c.h = c.y2 - c.y1; totalA += c.w * c.h; } components.sort(function (c1, c2) { return c2.w * c2.h - c1.w * c1.h; }); var x = 0; var y = 0; var usedW = 0; var rowH = 0; var maxRowW = Math.sqrt(totalA) * layoutInfo.clientWidth / layoutInfo.clientHeight; for (var i = 0; i < components.length; i++) { var c = components[i]; if (!c) { continue; } for (var j = 0; j < c.length; j++) { var n = c[j]; if (!n.isLocked) { n.positionX += x - c.x1; n.positionY += y - c.y1; } } x += c.w + options.componentSpacing; usedW += c.w + options.componentSpacing; rowH = Math.max(rowH, c.h); if (usedW > maxRowW) { y += rowH + options.componentSpacing; x = 0; usedW = 0; rowH = 0; } } }; var defaults$3 = { fit: true, // whether to fit the viewport to the graph padding: 30, // padding used on fit boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } avoidOverlap: true, // prevents node overlap, may overflow boundingBox if not enough space avoidOverlapPadding: 10, // extra spacing around nodes when avoidOverlap: true nodeDimensionsIncludeLabels: false, // Excludes the label when calculating node bounding boxes for the layout algorithm spacingFactor: undefined, // Applies a multiplicative factor (>0) to expand or compress the overall area that the nodes take up condense: false, // uses all available space on false, uses minimal space on true rows: undefined, // force num of rows in the grid cols: undefined, // force num of columns in the grid position: function position(node) {}, // returns { row, col } for element sort: undefined, // a sorting function to order the nodes; e.g. function(a, b){ return a.data('weight') - b.data('weight') } animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function GridLayout(options) { this.options = extend({}, defaults$3, options); } GridLayout.prototype.run = function () { var params = this.options; var options = params; var cy = params.cy; var eles = options.eles; var nodes = eles.nodes().not(':parent'); if (options.sort) { nodes = nodes.sort(options.sort); } var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); if (bb.h === 0 || bb.w === 0) { eles.nodes().layoutPositions(this, options, function (ele) { return { x: bb.x1, y: bb.y1 }; }); } else { // width/height * splits^2 = cells where splits is number of times to split width var cells = nodes.size(); var splits = Math.sqrt(cells * bb.h / bb.w); var rows = Math.round(splits); var cols = Math.round(bb.w / bb.h * splits); var small = function small(val) { if (val == null) { return Math.min(rows, cols); } else { var min = Math.min(rows, cols); if (min == rows) { rows = val; } else { cols = val; } } }; var large = function large(val) { if (val == null) { return Math.max(rows, cols); } else { var max = Math.max(rows, cols); if (max == rows) { rows = val; } else { cols = val; } } }; var oRows = options.rows; var oCols = options.cols != null ? options.cols : options.columns; // if rows or columns were set in options, use those values if (oRows != null && oCols != null) { rows = oRows; cols = oCols; } else if (oRows != null && oCols == null) { rows = oRows; cols = Math.ceil(cells / rows); } else if (oRows == null && oCols != null) { cols = oCols; rows = Math.ceil(cells / cols); } // otherwise use the automatic values and adjust accordingly // if rounding was up, see if we can reduce rows or columns else if (cols * rows > cells) { var sm = small(); var lg = large(); // reducing the small side takes away the most cells, so try it first if ((sm - 1) * lg >= cells) { small(sm - 1); } else if ((lg - 1) * sm >= cells) { large(lg - 1); } } else { // if rounding was too low, add rows or columns while (cols * rows < cells) { var _sm = small(); var _lg = large(); // try to add to larger side first (adds less in multiplication) if ((_lg + 1) * _sm >= cells) { large(_lg + 1); } else { small(_sm + 1); } } } var cellWidth = bb.w / cols; var cellHeight = bb.h / rows; if (options.condense) { cellWidth = 0; cellHeight = 0; } if (options.avoidOverlap) { for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; var pos = node._private.position; if (pos.x == null || pos.y == null) { // for bb pos.x = 0; pos.y = 0; } var nbb = node.layoutDimensions(options); var p = options.avoidOverlapPadding; var w = nbb.w + p; var h = nbb.h + p; cellWidth = Math.max(cellWidth, w); cellHeight = Math.max(cellHeight, h); } } var cellUsed = {}; // e.g. 'c-0-2' => true var used = function used(row, col) { return cellUsed['c-' + row + '-' + col] ? true : false; }; var use = function use(row, col) { cellUsed['c-' + row + '-' + col] = true; }; // to keep track of current cell position var row = 0; var col = 0; var moveToNextCell = function moveToNextCell() { col++; if (col >= cols) { col = 0; row++; } }; // get a cache of all the manual positions var id2manPos = {}; for (var _i = 0; _i < nodes.length; _i++) { var _node = nodes[_i]; var rcPos = options.position(_node); if (rcPos && (rcPos.row !== undefined || rcPos.col !== undefined)) { // must have at least row or col def'd var _pos = { row: rcPos.row, col: rcPos.col }; if (_pos.col === undefined) { // find unused col _pos.col = 0; while (used(_pos.row, _pos.col)) { _pos.col++; } } else if (_pos.row === undefined) { // find unused row _pos.row = 0; while (used(_pos.row, _pos.col)) { _pos.row++; } } id2manPos[_node.id()] = _pos; use(_pos.row, _pos.col); } } var getPos = function getPos(element, i) { var x, y; if (element.locked() || element.isParent()) { return false; } // see if we have a manual position set var rcPos = id2manPos[element.id()]; if (rcPos) { x = rcPos.col * cellWidth + cellWidth / 2 + bb.x1; y = rcPos.row * cellHeight + cellHeight / 2 + bb.y1; } else { // otherwise set automatically while (used(row, col)) { moveToNextCell(); } x = col * cellWidth + cellWidth / 2 + bb.x1; y = row * cellHeight + cellHeight / 2 + bb.y1; use(row, col); moveToNextCell(); } return { x: x, y: y }; }; nodes.layoutPositions(this, options, getPos); } return this; // chaining }; // default layout options var defaults$2 = { ready: function ready() {}, // on layoutready stop: function stop() {} // on layoutstop }; // constructor // options : object containing layout options function NullLayout(options) { this.options = extend({}, defaults$2, options); } // runs the layout NullLayout.prototype.run = function () { var options = this.options; var eles = options.eles; // elements to consider in the layout var layout = this; // cy is automatically populated for us in the constructor // (disable eslint for next line as this serves as example layout code to external developers) // eslint-disable-next-line no-unused-vars options.cy; layout.emit('layoutstart'); // puts all nodes at (0, 0) // n.b. most layouts would use layoutPositions(), instead of positions() and manual events eles.nodes().positions(function () { return { x: 0, y: 0 }; }); // trigger layoutready when each node has had its position set at least once layout.one('layoutready', options.ready); layout.emit('layoutready'); // trigger layoutstop when the layout stops (e.g. finishes) layout.one('layoutstop', options.stop); layout.emit('layoutstop'); return this; // chaining }; // called on continuous layouts to stop them before they finish NullLayout.prototype.stop = function () { return this; // chaining }; var defaults$1 = { positions: undefined, // map of (node id) => (position obj); or function(node){ return somPos; } zoom: undefined, // the zoom level to set (prob want fit = false if set) pan: undefined, // the pan level to set (prob want fit = false if set) fit: true, // whether to fit to viewport padding: 30, // padding on fit spacingFactor: undefined, // Applies a multiplicative factor (>0) to expand or compress the overall area that the nodes take up animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function PresetLayout(options) { this.options = extend({}, defaults$1, options); } PresetLayout.prototype.run = function () { var options = this.options; var eles = options.eles; var nodes = eles.nodes(); var posIsFn = fn$6(options.positions); function getPosition(node) { if (options.positions == null) { return copyPosition(node.position()); } if (posIsFn) { return options.positions(node); } var pos = options.positions[node._private.data.id]; if (pos == null) { return null; } return pos; } nodes.layoutPositions(this, options, function (node, i) { var position = getPosition(node); if (node.locked() || position == null) { return false; } return position; }); return this; // chaining }; var defaults = { fit: true, // whether to fit to viewport padding: 30, // fit padding boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function RandomLayout(options) { this.options = extend({}, defaults, options); } RandomLayout.prototype.run = function () { var options = this.options; var cy = options.cy; var eles = options.eles; var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); var getPos = function getPos(node, i) { return { x: bb.x1 + Math.round(Math.random() * bb.w), y: bb.y1 + Math.round(Math.random() * bb.h) }; }; eles.nodes().layoutPositions(this, options, getPos); return this; // chaining }; var layout = [{ name: 'breadthfirst', impl: BreadthFirstLayout }, { name: 'circle', impl: CircleLayout }, { name: 'concentric', impl: ConcentricLayout }, { name: 'cose', impl: CoseLayout }, { name: 'grid', impl: GridLayout }, { name: 'null', impl: NullLayout }, { name: 'preset', impl: PresetLayout }, { name: 'random', impl: RandomLayout }]; function NullRenderer(options) { this.options = options; this.notifications = 0; // for testing } var noop = function noop() {}; var throwImgErr = function throwImgErr() { throw new Error('A headless instance can not render images'); }; NullRenderer.prototype = { recalculateRenderedStyle: noop, notify: function notify() { this.notifications++; }, init: noop, isHeadless: function isHeadless() { return true; }, png: throwImgErr, jpg: throwImgErr }; var BRp$f = {}; BRp$f.arrowShapeWidth = 0.3; BRp$f.registerArrowShapes = function () { var arrowShapes = this.arrowShapes = {}; var renderer = this; // Contract for arrow shapes: // 0, 0 is arrow tip // (0, 1) is direction towards node // (1, 0) is right // // functional api: // collide: check x, y in shape // roughCollide: called before collide, no false negatives // draw: draw // spacing: dist(arrowTip, nodeBoundary) // gap: dist(edgeTip, nodeBoundary), edgeTip may != arrowTip var bbCollide = function bbCollide(x, y, size, angle, translation, edgeWidth, padding) { var x1 = translation.x - size / 2 - padding; var x2 = translation.x + size / 2 + padding; var y1 = translation.y - size / 2 - padding; var y2 = translation.y + size / 2 + padding; var inside = x1 <= x && x <= x2 && y1 <= y && y <= y2; return inside; }; var transform = function transform(x, y, size, angle, translation) { var xRotated = x * Math.cos(angle) - y * Math.sin(angle); var yRotated = x * Math.sin(angle) + y * Math.cos(angle); var xScaled = xRotated * size; var yScaled = yRotated * size; var xTranslated = xScaled + translation.x; var yTranslated = yScaled + translation.y; return { x: xTranslated, y: yTranslated }; }; var transformPoints = function transformPoints(pts, size, angle, translation) { var retPts = []; for (var i = 0; i < pts.length; i += 2) { var x = pts[i]; var y = pts[i + 1]; retPts.push(transform(x, y, size, angle, translation)); } return retPts; }; var pointsToArr = function pointsToArr(pts) { var ret = []; for (var i = 0; i < pts.length; i++) { var p = pts[i]; ret.push(p.x, p.y); } return ret; }; var standardGap = function standardGap(edge) { return edge.pstyle('width').pfValue * edge.pstyle('arrow-scale').pfValue * 2; }; var defineArrowShape = function defineArrowShape(name, defn) { if (string(defn)) { defn = arrowShapes[defn]; } arrowShapes[name] = extend({ name: name, points: [-0.15, -0.3, 0.15, -0.3, 0.15, 0.3, -0.15, 0.3], collide: function collide(x, y, size, angle, translation, padding) { var points = pointsToArr(transformPoints(this.points, size + 2 * padding, angle, translation)); var inside = pointInsidePolygonPoints(x, y, points); return inside; }, roughCollide: bbCollide, draw: function draw(context, size, angle, translation) { var points = transformPoints(this.points, size, angle, translation); renderer.arrowShapeImpl('polygon')(context, points); }, spacing: function spacing(edge) { return 0; }, gap: standardGap }, defn); }; defineArrowShape('none', { collide: falsify, roughCollide: falsify, draw: noop$1, spacing: zeroify, gap: zeroify }); defineArrowShape('triangle', { points: [-0.15, -0.3, 0, 0, 0.15, -0.3] }); defineArrowShape('arrow', 'triangle'); defineArrowShape('triangle-backcurve', { points: arrowShapes['triangle'].points, controlPoint: [0, -0.15], roughCollide: bbCollide, draw: function draw(context, size, angle, translation, edgeWidth) { var ptsTrans = transformPoints(this.points, size, angle, translation); var ctrlPt = this.controlPoint; var ctrlPtTrans = transform(ctrlPt[0], ctrlPt[1], size, angle, translation); renderer.arrowShapeImpl(this.name)(context, ptsTrans, ctrlPtTrans); }, gap: function gap(edge) { return standardGap(edge) * 0.8; } }); defineArrowShape('triangle-tee', { points: [0, 0, 0.15, -0.3, -0.15, -0.3, 0, 0], pointsTee: [-0.15, -0.4, -0.15, -0.5, 0.15, -0.5, 0.15, -0.4], collide: function collide(x, y, size, angle, translation, edgeWidth, padding) { var triPts = pointsToArr(transformPoints(this.points, size + 2 * padding, angle, translation)); var teePts = pointsToArr(transformPoints(this.pointsTee, size + 2 * padding, angle, translation)); var inside = pointInsidePolygonPoints(x, y, triPts) || pointInsidePolygonPoints(x, y, teePts); return inside; }, draw: function draw(context, size, angle, translation, edgeWidth) { var triPts = transformPoints(this.points, size, angle, translation); var teePts = transformPoints(this.pointsTee, size, angle, translation); renderer.arrowShapeImpl(this.name)(context, triPts, teePts); } }); defineArrowShape('circle-triangle', { radius: 0.15, pointsTr: [0, -0.15, 0.15, -0.45, -0.15, -0.45, 0, -0.15], collide: function collide(x, y, size, angle, translation, edgeWidth, padding) { var t = translation; var circleInside = Math.pow(t.x - x, 2) + Math.pow(t.y - y, 2) <= Math.pow((size + 2 * padding) * this.radius, 2); var triPts = pointsToArr(transformPoints(this.points, size + 2 * padding, angle, translation)); return pointInsidePolygonPoints(x, y, triPts) || circleInside; }, draw: function draw(context, size, angle, translation, edgeWidth) { var triPts = transformPoints(this.pointsTr, size, angle, translation); renderer.arrowShapeImpl(this.name)(context, triPts, translation.x, translation.y, this.radius * size); }, spacing: function spacing(edge) { return renderer.getArrowWidth(edge.pstyle('width').pfValue, edge.pstyle('arrow-scale').value) * this.radius; } }); defineArrowShape('triangle-cross', { points: [0, 0, 0.15, -0.3, -0.15, -0.3, 0, 0], baseCrossLinePts: [-0.15, -0.4, // first half of the rectangle -0.15, -0.4, 0.15, -0.4, // second half of the rectangle 0.15, -0.4], crossLinePts: function crossLinePts(size, edgeWidth) { // shift points so that the distance between the cross points matches edge width var p = this.baseCrossLinePts.slice(); var shiftFactor = edgeWidth / size; var y0 = 3; var y1 = 5; p[y0] = p[y0] - shiftFactor; p[y1] = p[y1] - shiftFactor; return p; }, collide: function collide(x, y, size, angle, translation, edgeWidth, padding) { var triPts = pointsToArr(transformPoints(this.points, size + 2 * padding, angle, translation)); var teePts = pointsToArr(transformPoints(this.crossLinePts(size, edgeWidth), size + 2 * padding, angle, translation)); var inside = pointInsidePolygonPoints(x, y, triPts) || pointInsidePolygonPoints(x, y, teePts); return inside; }, draw: function draw(context, size, angle, translation, edgeWidth) { var triPts = transformPoints(this.points, size, angle, translation); var crossLinePts = transformPoints(this.crossLinePts(size, edgeWidth), size, angle, translation); renderer.arrowShapeImpl(this.name)(context, triPts, crossLinePts); } }); defineArrowShape('vee', { points: [-0.15, -0.3, 0, 0, 0.15, -0.3, 0, -0.15], gap: function gap(edge) { return standardGap(edge) * 0.525; } }); defineArrowShape('circle', { radius: 0.15, collide: function collide(x, y, size, angle, translation, edgeWidth, padding) { var t = translation; var inside = Math.pow(t.x - x, 2) + Math.pow(t.y - y, 2) <= Math.pow((size + 2 * padding) * this.radius, 2); return inside; }, draw: function draw(context, size, angle, translation, edgeWidth) { renderer.arrowShapeImpl(this.name)(context, translation.x, translation.y, this.radius * size); }, spacing: function spacing(edge) { return renderer.getArrowWidth(edge.pstyle('width').pfValue, edge.pstyle('arrow-scale').value) * this.radius; } }); defineArrowShape('tee', { points: [-0.15, 0, -0.15, -0.1, 0.15, -0.1, 0.15, 0], spacing: function spacing(edge) { return 1; }, gap: function gap(edge) { return 1; } }); defineArrowShape('square', { points: [-0.15, 0.00, 0.15, 0.00, 0.15, -0.3, -0.15, -0.3] }); defineArrowShape('diamond', { points: [-0.15, -0.15, 0, -0.3, 0.15, -0.15, 0, 0], gap: function gap(edge) { return edge.pstyle('width').pfValue * edge.pstyle('arrow-scale').value; } }); defineArrowShape('chevron', { points: [0, 0, -0.15, -0.15, -0.1, -0.2, 0, -0.1, 0.1, -0.2, 0.15, -0.15], gap: function gap(edge) { return 0.95 * edge.pstyle('width').pfValue * edge.pstyle('arrow-scale').value; } }); }; var BRp$e = {}; // Project mouse BRp$e.projectIntoViewport = function (clientX, clientY) { var cy = this.cy; var offsets = this.findContainerClientCoords(); var offsetLeft = offsets[0]; var offsetTop = offsets[1]; var scale = offsets[4]; var pan = cy.pan(); var zoom = cy.zoom(); var x = ((clientX - offsetLeft) / scale - pan.x) / zoom; var y = ((clientY - offsetTop) / scale - pan.y) / zoom; return [x, y]; }; BRp$e.findContainerClientCoords = function () { if (this.containerBB) { return this.containerBB; } var container = this.container; var rect = container.getBoundingClientRect(); var style = this.cy.window().getComputedStyle(container); var styleValue = function styleValue(name) { return parseFloat(style.getPropertyValue(name)); }; var padding = { left: styleValue('padding-left'), right: styleValue('padding-right'), top: styleValue('padding-top'), bottom: styleValue('padding-bottom') }; var border = { left: styleValue('border-left-width'), right: styleValue('border-right-width'), top: styleValue('border-top-width'), bottom: styleValue('border-bottom-width') }; var clientWidth = container.clientWidth; var clientHeight = container.clientHeight; var paddingHor = padding.left + padding.right; var paddingVer = padding.top + padding.bottom; var borderHor = border.left + border.right; var scale = rect.width / (clientWidth + borderHor); var unscaledW = clientWidth - paddingHor; var unscaledH = clientHeight - paddingVer; var left = rect.left + padding.left + border.left; var top = rect.top + padding.top + border.top; return this.containerBB = [left, top, unscaledW, unscaledH, scale]; }; BRp$e.invalidateContainerClientCoordsCache = function () { this.containerBB = null; }; BRp$e.findNearestElement = function (x, y, interactiveElementsOnly, isTouch) { return this.findNearestElements(x, y, interactiveElementsOnly, isTouch)[0]; }; BRp$e.findNearestElements = function (x, y, interactiveElementsOnly, isTouch) { var self = this; var r = this; var eles = r.getCachedZSortedEles(); var near = []; // 1 node max, 1 edge max var zoom = r.cy.zoom(); var hasCompounds = r.cy.hasCompoundNodes(); var edgeThreshold = (isTouch ? 24 : 8) / zoom; var nodeThreshold = (isTouch ? 8 : 2) / zoom; var labelThreshold = (isTouch ? 8 : 2) / zoom; var minSqDist = Infinity; var nearEdge; var nearNode; if (interactiveElementsOnly) { eles = eles.interactive; } function addEle(ele, sqDist) { if (ele.isNode()) { if (nearNode) { return; // can't replace node } else { nearNode = ele; near.push(ele); } } if (ele.isEdge() && (sqDist == null || sqDist < minSqDist)) { if (nearEdge) { // then replace existing edge // can replace only if same z-index if (nearEdge.pstyle('z-compound-depth').value === ele.pstyle('z-compound-depth').value && nearEdge.pstyle('z-compound-depth').value === ele.pstyle('z-compound-depth').value) { for (var i = 0; i < near.length; i++) { if (near[i].isEdge()) { near[i] = ele; nearEdge = ele; minSqDist = sqDist != null ? sqDist : minSqDist; break; } } } } else { near.push(ele); nearEdge = ele; minSqDist = sqDist != null ? sqDist : minSqDist; } } } function checkNode(node) { var width = node.outerWidth() + 2 * nodeThreshold; var height = node.outerHeight() + 2 * nodeThreshold; var hw = width / 2; var hh = height / 2; var pos = node.position(); var cornerRadius = node.pstyle('corner-radius').value === 'auto' ? 'auto' : node.pstyle('corner-radius').pfValue; var rs = node._private.rscratch; if (pos.x - hw <= x && x <= pos.x + hw // bb check x && pos.y - hh <= y && y <= pos.y + hh // bb check y ) { var shape = r.nodeShapes[self.getNodeShape(node)]; if (shape.checkPoint(x, y, 0, width, height, pos.x, pos.y, cornerRadius, rs)) { addEle(node, 0); return true; } } } function checkEdge(edge) { var _p = edge._private; var rs = _p.rscratch; var styleWidth = edge.pstyle('width').pfValue; var scale = edge.pstyle('arrow-scale').value; var width = styleWidth / 2 + edgeThreshold; // more like a distance radius from centre var widthSq = width * width; var width2 = width * 2; var src = _p.source; var tgt = _p.target; var sqDist; if (rs.edgeType === 'segments' || rs.edgeType === 'straight' || rs.edgeType === 'haystack') { var pts = rs.allpts; for (var i = 0; i + 3 < pts.length; i += 2) { if (inLineVicinity(x, y, pts[i], pts[i + 1], pts[i + 2], pts[i + 3], width2) && widthSq > (sqDist = sqdistToFiniteLine(x, y, pts[i], pts[i + 1], pts[i + 2], pts[i + 3]))) { addEle(edge, sqDist); return true; } } } else if (rs.edgeType === 'bezier' || rs.edgeType === 'multibezier' || rs.edgeType === 'self' || rs.edgeType === 'compound') { var pts = rs.allpts; for (var i = 0; i + 5 < rs.allpts.length; i += 4) { if (inBezierVicinity(x, y, pts[i], pts[i + 1], pts[i + 2], pts[i + 3], pts[i + 4], pts[i + 5], width2) && widthSq > (sqDist = sqdistToQuadraticBezier(x, y, pts[i], pts[i + 1], pts[i + 2], pts[i + 3], pts[i + 4], pts[i + 5]))) { addEle(edge, sqDist); return true; } } } // if we're close to the edge but didn't hit it, maybe we hit its arrows var src = src || _p.source; var tgt = tgt || _p.target; var arSize = self.getArrowWidth(styleWidth, scale); var arrows = [{ name: 'source', x: rs.arrowStartX, y: rs.arrowStartY, angle: rs.srcArrowAngle }, { name: 'target', x: rs.arrowEndX, y: rs.arrowEndY, angle: rs.tgtArrowAngle }, { name: 'mid-source', x: rs.midX, y: rs.midY, angle: rs.midsrcArrowAngle }, { name: 'mid-target', x: rs.midX, y: rs.midY, angle: rs.midtgtArrowAngle }]; for (var i = 0; i < arrows.length; i++) { var ar = arrows[i]; var shape = r.arrowShapes[edge.pstyle(ar.name + '-arrow-shape').value]; var edgeWidth = edge.pstyle('width').pfValue; if (shape.roughCollide(x, y, arSize, ar.angle, { x: ar.x, y: ar.y }, edgeWidth, edgeThreshold) && shape.collide(x, y, arSize, ar.angle, { x: ar.x, y: ar.y }, edgeWidth, edgeThreshold)) { addEle(edge); return true; } } // for compound graphs, hitting edge may actually want a connected node instead (b/c edge may have greater z-index precedence) if (hasCompounds && near.length > 0) { checkNode(src); checkNode(tgt); } } function preprop(obj, name, pre) { return getPrefixedProperty(obj, name, pre); } function checkLabel(ele, prefix) { var _p = ele._private; var th = labelThreshold; var prefixDash; if (prefix) { prefixDash = prefix + '-'; } else { prefixDash = ''; } ele.boundingBox(); var bb = _p.labelBounds[prefix || 'main']; var text = ele.pstyle(prefixDash + 'label').value; var eventsEnabled = ele.pstyle('text-events').strValue === 'yes'; if (!eventsEnabled || !text) { return; } var lx = preprop(_p.rscratch, 'labelX', prefix); var ly = preprop(_p.rscratch, 'labelY', prefix); var theta = preprop(_p.rscratch, 'labelAngle', prefix); var ox = ele.pstyle(prefixDash + 'text-margin-x').pfValue; var oy = ele.pstyle(prefixDash + 'text-margin-y').pfValue; var lx1 = bb.x1 - th - ox; // (-ox, -oy) as bb already includes margin var lx2 = bb.x2 + th - ox; // and rotation is about (lx, ly) var ly1 = bb.y1 - th - oy; var ly2 = bb.y2 + th - oy; if (theta) { var cos = Math.cos(theta); var sin = Math.sin(theta); var rotate = function rotate(x, y) { x = x - lx; y = y - ly; return { x: x * cos - y * sin + lx, y: x * sin + y * cos + ly }; }; var px1y1 = rotate(lx1, ly1); var px1y2 = rotate(lx1, ly2); var px2y1 = rotate(lx2, ly1); var px2y2 = rotate(lx2, ly2); var points = [ // with the margin added after the rotation is applied px1y1.x + ox, px1y1.y + oy, px2y1.x + ox, px2y1.y + oy, px2y2.x + ox, px2y2.y + oy, px1y2.x + ox, px1y2.y + oy]; if (pointInsidePolygonPoints(x, y, points)) { addEle(ele); return true; } } else { // do a cheaper bb check if (inBoundingBox(bb, x, y)) { addEle(ele); return true; } } } for (var i = eles.length - 1; i >= 0; i--) { // reverse order for precedence var ele = eles[i]; if (ele.isNode()) { checkNode(ele) || checkLabel(ele); } else { // then edge checkEdge(ele) || checkLabel(ele) || checkLabel(ele, 'source') || checkLabel(ele, 'target'); } } return near; }; // 'Give me everything from this box' BRp$e.getAllInBox = function (x1, y1, x2, y2) { var eles = this.getCachedZSortedEles().interactive; var box = []; var x1c = Math.min(x1, x2); var x2c = Math.max(x1, x2); var y1c = Math.min(y1, y2); var y2c = Math.max(y1, y2); x1 = x1c; x2 = x2c; y1 = y1c; y2 = y2c; var boxBb = makeBoundingBox({ x1: x1, y1: y1, x2: x2, y2: y2 }); for (var e = 0; e < eles.length; e++) { var ele = eles[e]; if (ele.isNode()) { var node = ele; var nodeBb = node.boundingBox({ includeNodes: true, includeEdges: false, includeLabels: false }); if (boundingBoxesIntersect(boxBb, nodeBb) && !boundingBoxInBoundingBox(nodeBb, boxBb)) { box.push(node); } } else { var edge = ele; var _p = edge._private; var rs = _p.rscratch; if (rs.startX != null && rs.startY != null && !inBoundingBox(boxBb, rs.startX, rs.startY)) { continue; } if (rs.endX != null && rs.endY != null && !inBoundingBox(boxBb, rs.endX, rs.endY)) { continue; } if (rs.edgeType === 'bezier' || rs.edgeType === 'multibezier' || rs.edgeType === 'self' || rs.edgeType === 'compound' || rs.edgeType === 'segments' || rs.edgeType === 'haystack') { var pts = _p.rstyle.bezierPts || _p.rstyle.linePts || _p.rstyle.haystackPts; var allInside = true; for (var i = 0; i < pts.length; i++) { if (!pointInBoundingBox(boxBb, pts[i])) { allInside = false; break; } } if (allInside) { box.push(edge); } } else if (rs.edgeType === 'haystack' || rs.edgeType === 'straight') { box.push(edge); } } } return box; }; var BRp$d = {}; BRp$d.calculateArrowAngles = function (edge) { var rs = edge._private.rscratch; var isHaystack = rs.edgeType === 'haystack'; var isBezier = rs.edgeType === 'bezier'; var isMultibezier = rs.edgeType === 'multibezier'; var isSegments = rs.edgeType === 'segments'; var isCompound = rs.edgeType === 'compound'; var isSelf = rs.edgeType === 'self'; // Displacement gives direction for arrowhead orientation var dispX, dispY; var startX, startY, endX, endY, midX, midY; if (isHaystack) { startX = rs.haystackPts[0]; startY = rs.haystackPts[1]; endX = rs.haystackPts[2]; endY = rs.haystackPts[3]; } else { startX = rs.arrowStartX; startY = rs.arrowStartY; endX = rs.arrowEndX; endY = rs.arrowEndY; } midX = rs.midX; midY = rs.midY; // source // if (isSegments) { dispX = startX - rs.segpts[0]; dispY = startY - rs.segpts[1]; } else if (isMultibezier || isCompound || isSelf || isBezier) { var pts = rs.allpts; var bX = qbezierAt(pts[0], pts[2], pts[4], 0.1); var bY = qbezierAt(pts[1], pts[3], pts[5], 0.1); dispX = startX - bX; dispY = startY - bY; } else { dispX = startX - midX; dispY = startY - midY; } rs.srcArrowAngle = getAngleFromDisp(dispX, dispY); // mid target // var midX = rs.midX; var midY = rs.midY; if (isHaystack) { midX = (startX + endX) / 2; midY = (startY + endY) / 2; } dispX = endX - startX; dispY = endY - startY; if (isSegments) { var pts = rs.allpts; if (pts.length / 2 % 2 === 0) { var i2 = pts.length / 2; var i1 = i2 - 2; dispX = pts[i2] - pts[i1]; dispY = pts[i2 + 1] - pts[i1 + 1]; } else if (rs.isRound) { dispX = rs.midVector[1]; dispY = -rs.midVector[0]; } else { var i2 = pts.length / 2 - 1; var i1 = i2 - 2; dispX = pts[i2] - pts[i1]; dispY = pts[i2 + 1] - pts[i1 + 1]; } } else if (isMultibezier || isCompound || isSelf) { var pts = rs.allpts; var cpts = rs.ctrlpts; var bp0x, bp0y; var bp1x, bp1y; if (cpts.length / 2 % 2 === 0) { var p0 = pts.length / 2 - 1; // startpt var ic = p0 + 2; var p1 = ic + 2; bp0x = qbezierAt(pts[p0], pts[ic], pts[p1], 0.0); bp0y = qbezierAt(pts[p0 + 1], pts[ic + 1], pts[p1 + 1], 0.0); bp1x = qbezierAt(pts[p0], pts[ic], pts[p1], 0.0001); bp1y = qbezierAt(pts[p0 + 1], pts[ic + 1], pts[p1 + 1], 0.0001); } else { var ic = pts.length / 2 - 1; // ctrpt var p0 = ic - 2; // startpt var p1 = ic + 2; // endpt bp0x = qbezierAt(pts[p0], pts[ic], pts[p1], 0.4999); bp0y = qbezierAt(pts[p0 + 1], pts[ic + 1], pts[p1 + 1], 0.4999); bp1x = qbezierAt(pts[p0], pts[ic], pts[p1], 0.5); bp1y = qbezierAt(pts[p0 + 1], pts[ic + 1], pts[p1 + 1], 0.5); } dispX = bp1x - bp0x; dispY = bp1y - bp0y; } rs.midtgtArrowAngle = getAngleFromDisp(dispX, dispY); rs.midDispX = dispX; rs.midDispY = dispY; // mid source // dispX *= -1; dispY *= -1; if (isSegments) { var pts = rs.allpts; if (pts.length / 2 % 2 === 0) ; else if (!rs.isRound) { var i2 = pts.length / 2 - 1; var i3 = i2 + 2; dispX = -(pts[i3] - pts[i2]); dispY = -(pts[i3 + 1] - pts[i2 + 1]); } } rs.midsrcArrowAngle = getAngleFromDisp(dispX, dispY); // target // if (isSegments) { dispX = endX - rs.segpts[rs.segpts.length - 2]; dispY = endY - rs.segpts[rs.segpts.length - 1]; } else if (isMultibezier || isCompound || isSelf || isBezier) { var pts = rs.allpts; var l = pts.length; var bX = qbezierAt(pts[l - 6], pts[l - 4], pts[l - 2], 0.9); var bY = qbezierAt(pts[l - 5], pts[l - 3], pts[l - 1], 0.9); dispX = endX - bX; dispY = endY - bY; } else { dispX = endX - midX; dispY = endY - midY; } rs.tgtArrowAngle = getAngleFromDisp(dispX, dispY); }; BRp$d.getArrowWidth = BRp$d.getArrowHeight = function (edgeWidth, scale) { var cache = this.arrowWidthCache = this.arrowWidthCache || {}; var cachedVal = cache[edgeWidth + ', ' + scale]; if (cachedVal) { return cachedVal; } cachedVal = Math.max(Math.pow(edgeWidth * 13.37, 0.9), 29) * scale; cache[edgeWidth + ', ' + scale] = cachedVal; return cachedVal; }; /** * Explained by Blindman67 at https://stackoverflow.com/a/44856925/11028828 */ // Declare reused variable to avoid reallocating variables every time the function is called var x, y, v1 = {}, v2 = {}, sinA, sinA90, radDirection, drawDirection, angle, halfAngle, cRadius, lenOut, radius, limit; var startX, startY, stopX, stopY; var lastPoint; // convert 2 points into vector form, polar form, and normalised var asVec = function asVec(p, pp, v) { v.x = pp.x - p.x; v.y = pp.y - p.y; v.len = Math.sqrt(v.x * v.x + v.y * v.y); v.nx = v.x / v.len; v.ny = v.y / v.len; v.ang = Math.atan2(v.ny, v.nx); }; var invertVec = function invertVec(originalV, invertedV) { invertedV.x = originalV.x * -1; invertedV.y = originalV.y * -1; invertedV.nx = originalV.nx * -1; invertedV.ny = originalV.ny * -1; invertedV.ang = originalV.ang > 0 ? -(Math.PI - originalV.ang) : Math.PI + originalV.ang; }; var calcCornerArc = function calcCornerArc(previousPoint, currentPoint, nextPoint, radiusMax, isArcRadius) { //----------------------------------------- // Part 1 previousPoint !== lastPoint ? asVec(currentPoint, previousPoint, v1) : invertVec(v2, v1); // Avoid recalculating vec if it is the invert of the last one calculated asVec(currentPoint, nextPoint, v2); sinA = v1.nx * v2.ny - v1.ny * v2.nx; sinA90 = v1.nx * v2.nx - v1.ny * -v2.ny; angle = Math.asin(Math.max(-1, Math.min(1, sinA))); if (Math.abs(angle) < 1e-6) { x = currentPoint.x; y = currentPoint.y; cRadius = radius = 0; return; } //----------------------------------------- radDirection = 1; drawDirection = false; if (sinA90 < 0) { if (angle < 0) { angle = Math.PI + angle; } else { angle = Math.PI - angle; radDirection = -1; drawDirection = true; } } else { if (angle > 0) { radDirection = -1; drawDirection = true; } } if (currentPoint.radius !== undefined) { radius = currentPoint.radius; } else { radius = radiusMax; } //----------------------------------------- // Part 2 halfAngle = angle / 2; //----------------------------------------- limit = Math.min(v1.len / 2, v2.len / 2); if (isArcRadius) { //----------------------------------------- // Part 3 lenOut = Math.abs(Math.cos(halfAngle) * radius / Math.sin(halfAngle)); //----------------------------------------- // Special part A if (lenOut > limit) { lenOut = limit; cRadius = Math.abs(lenOut * Math.sin(halfAngle) / Math.cos(halfAngle)); } else { cRadius = radius; } } else { lenOut = Math.min(limit, radius); cRadius = Math.abs(lenOut * Math.sin(halfAngle) / Math.cos(halfAngle)); } //----------------------------------------- //----------------------------------------- // Part 4 stopX = currentPoint.x + v2.nx * lenOut; stopY = currentPoint.y + v2.ny * lenOut; //----------------------------------------- // Part 5 x = stopX - v2.ny * cRadius * radDirection; y = stopY + v2.nx * cRadius * radDirection; //----------------------------------------- // Additional Part : calculate start point E startX = currentPoint.x + v1.nx * lenOut; startY = currentPoint.y + v1.ny * lenOut; // Save last point to avoid recalculating vector when not needed lastPoint = currentPoint; }; /** * Draw corner provided by {@link getRoundCorner} * * @param ctx :CanvasRenderingContext2D * @param roundCorner {{cx:number, cy:number, radius:number, endAngle: number, startAngle: number, counterClockwise: boolean}} */ function drawPreparedRoundCorner(ctx, roundCorner) { if (roundCorner.radius === 0) ctx.lineTo(roundCorner.cx, roundCorner.cy);else ctx.arc(roundCorner.cx, roundCorner.cy, roundCorner.radius, roundCorner.startAngle, roundCorner.endAngle, roundCorner.counterClockwise); } /** * Get round corner from a point and its previous and next neighbours in a path * * @param previousPoint {{x: number, y:number, radius: number?}} * @param currentPoint {{x: number, y:number, radius: number?}} * @param nextPoint {{x: number, y:number, radius: number?}} * @param radiusMax :number * @param isArcRadius :boolean * @return {{ * cx:number, cy:number, radius:number, * startX:number, startY:number, * stopX:number, stopY: number, * endAngle: number, startAngle: number, counterClockwise: boolean * }} */ function getRoundCorner(previousPoint, currentPoint, nextPoint, radiusMax) { var isArcRadius = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true; if (radiusMax === 0 || currentPoint.radius === 0) return { cx: currentPoint.x, cy: currentPoint.y, radius: 0, startX: currentPoint.x, startY: currentPoint.y, stopX: currentPoint.x, stopY: currentPoint.y, startAngle: undefined, endAngle: undefined, counterClockwise: undefined }; calcCornerArc(previousPoint, currentPoint, nextPoint, radiusMax, isArcRadius); return { cx: x, cy: y, radius: cRadius, startX: startX, startY: startY, stopX: stopX, stopY: stopY, startAngle: v1.ang + Math.PI / 2 * radDirection, endAngle: v2.ang - Math.PI / 2 * radDirection, counterClockwise: drawDirection }; } var BRp$c = {}; BRp$c.findMidptPtsEtc = function (edge, pairInfo) { var posPts = pairInfo.posPts, intersectionPts = pairInfo.intersectionPts, vectorNormInverse = pairInfo.vectorNormInverse; var midptPts; // n.b. assumes all edges in bezier bundle have same endpoints specified var srcManEndpt = edge.pstyle('source-endpoint'); var tgtManEndpt = edge.pstyle('target-endpoint'); var haveManualEndPts = srcManEndpt.units != null && tgtManEndpt.units != null; var recalcVectorNormInverse = function recalcVectorNormInverse(x1, y1, x2, y2) { var dy = y2 - y1; var dx = x2 - x1; var l = Math.sqrt(dx * dx + dy * dy); return { x: -dy / l, y: dx / l }; }; var edgeDistances = edge.pstyle('edge-distances').value; switch (edgeDistances) { case 'node-position': midptPts = posPts; break; case 'intersection': midptPts = intersectionPts; break; case 'endpoints': { if (haveManualEndPts) { var _this$manualEndptToPx = this.manualEndptToPx(edge.source()[0], srcManEndpt), _this$manualEndptToPx2 = _slicedToArray(_this$manualEndptToPx, 2), x1 = _this$manualEndptToPx2[0], y1 = _this$manualEndptToPx2[1]; var _this$manualEndptToPx3 = this.manualEndptToPx(edge.target()[0], tgtManEndpt), _this$manualEndptToPx4 = _slicedToArray(_this$manualEndptToPx3, 2), x2 = _this$manualEndptToPx4[0], y2 = _this$manualEndptToPx4[1]; var endPts = { x1: x1, y1: y1, x2: x2, y2: y2 }; vectorNormInverse = recalcVectorNormInverse(x1, y1, x2, y2); midptPts = endPts; } else { warn("Edge ".concat(edge.id(), " has edge-distances:endpoints specified without manual endpoints specified via source-endpoint and target-endpoint. Falling back on edge-distances:intersection (default).")); midptPts = intersectionPts; // back to default } break; } } return { midptPts: midptPts, vectorNormInverse: vectorNormInverse }; }; BRp$c.findHaystackPoints = function (edges) { for (var i = 0; i < edges.length; i++) { var edge = edges[i]; var _p = edge._private; var rs = _p.rscratch; if (!rs.haystack) { var angle = Math.random() * 2 * Math.PI; rs.source = { x: Math.cos(angle), y: Math.sin(angle) }; angle = Math.random() * 2 * Math.PI; rs.target = { x: Math.cos(angle), y: Math.sin(angle) }; } var src = _p.source; var tgt = _p.target; var srcPos = src.position(); var tgtPos = tgt.position(); var srcW = src.width(); var tgtW = tgt.width(); var srcH = src.height(); var tgtH = tgt.height(); var radius = edge.pstyle('haystack-radius').value; var halfRadius = radius / 2; // b/c have to half width/height rs.haystackPts = rs.allpts = [rs.source.x * srcW * halfRadius + srcPos.x, rs.source.y * srcH * halfRadius + srcPos.y, rs.target.x * tgtW * halfRadius + tgtPos.x, rs.target.y * tgtH * halfRadius + tgtPos.y]; rs.midX = (rs.allpts[0] + rs.allpts[2]) / 2; rs.midY = (rs.allpts[1] + rs.allpts[3]) / 2; // always override as haystack in case set to different type previously rs.edgeType = 'haystack'; rs.haystack = true; this.storeEdgeProjections(edge); this.calculateArrowAngles(edge); this.recalculateEdgeLabelProjections(edge); this.calculateLabelAngles(edge); } }; BRp$c.findSegmentsPoints = function (edge, pairInfo) { // Segments (multiple straight lines) var rs = edge._private.rscratch; var segmentWs = edge.pstyle('segment-weights'); var segmentDs = edge.pstyle('segment-distances'); var segmentRs = edge.pstyle('segment-radii'); var segmentTs = edge.pstyle('radius-type'); var segmentsN = Math.min(segmentWs.pfValue.length, segmentDs.pfValue.length); var lastRadius = segmentRs.pfValue[segmentRs.pfValue.length - 1]; var lastRadiusType = segmentTs.pfValue[segmentTs.pfValue.length - 1]; rs.edgeType = 'segments'; rs.segpts = []; rs.radii = []; rs.isArcRadius = []; for (var s = 0; s < segmentsN; s++) { var w = segmentWs.pfValue[s]; var d = segmentDs.pfValue[s]; var w1 = 1 - w; var w2 = w; var _this$findMidptPtsEtc = this.findMidptPtsEtc(edge, pairInfo), midptPts = _this$findMidptPtsEtc.midptPts, vectorNormInverse = _this$findMidptPtsEtc.vectorNormInverse; var adjustedMidpt = { x: midptPts.x1 * w1 + midptPts.x2 * w2, y: midptPts.y1 * w1 + midptPts.y2 * w2 }; rs.segpts.push(adjustedMidpt.x + vectorNormInverse.x * d, adjustedMidpt.y + vectorNormInverse.y * d); rs.radii.push(segmentRs.pfValue[s] !== undefined ? segmentRs.pfValue[s] : lastRadius); rs.isArcRadius.push((segmentTs.pfValue[s] !== undefined ? segmentTs.pfValue[s] : lastRadiusType) === 'arc-radius'); } }; BRp$c.findLoopPoints = function (edge, pairInfo, i, edgeIsUnbundled) { // Self-edge var rs = edge._private.rscratch; var dirCounts = pairInfo.dirCounts, srcPos = pairInfo.srcPos; var ctrlptDists = edge.pstyle('control-point-distances'); var ctrlptDist = ctrlptDists ? ctrlptDists.pfValue[0] : undefined; var loopDir = edge.pstyle('loop-direction').pfValue; var loopSwp = edge.pstyle('loop-sweep').pfValue; var stepSize = edge.pstyle('control-point-step-size').pfValue; rs.edgeType = 'self'; var j = i; var loopDist = stepSize; if (edgeIsUnbundled) { j = 0; loopDist = ctrlptDist; } var loopAngle = loopDir - Math.PI / 2; var outAngle = loopAngle - loopSwp / 2; var inAngle = loopAngle + loopSwp / 2; // increase by step size for overlapping loops, keyed on direction and sweep values var dc = String(loopDir + '_' + loopSwp); j = dirCounts[dc] === undefined ? dirCounts[dc] = 0 : ++dirCounts[dc]; rs.ctrlpts = [srcPos.x + Math.cos(outAngle) * 1.4 * loopDist * (j / 3 + 1), srcPos.y + Math.sin(outAngle) * 1.4 * loopDist * (j / 3 + 1), srcPos.x + Math.cos(inAngle) * 1.4 * loopDist * (j / 3 + 1), srcPos.y + Math.sin(inAngle) * 1.4 * loopDist * (j / 3 + 1)]; }; BRp$c.findCompoundLoopPoints = function (edge, pairInfo, i, edgeIsUnbundled) { // Compound edge var rs = edge._private.rscratch; rs.edgeType = 'compound'; var srcPos = pairInfo.srcPos, tgtPos = pairInfo.tgtPos, srcW = pairInfo.srcW, srcH = pairInfo.srcH, tgtW = pairInfo.tgtW, tgtH = pairInfo.tgtH; var stepSize = edge.pstyle('control-point-step-size').pfValue; var ctrlptDists = edge.pstyle('control-point-distances'); var ctrlptDist = ctrlptDists ? ctrlptDists.pfValue[0] : undefined; var j = i; var loopDist = stepSize; if (edgeIsUnbundled) { j = 0; loopDist = ctrlptDist; } var loopW = 50; var loopaPos = { x: srcPos.x - srcW / 2, y: srcPos.y - srcH / 2 }; var loopbPos = { x: tgtPos.x - tgtW / 2, y: tgtPos.y - tgtH / 2 }; var loopPos = { x: Math.min(loopaPos.x, loopbPos.x), y: Math.min(loopaPos.y, loopbPos.y) }; // avoids cases with impossible beziers var minCompoundStretch = 0.5; var compoundStretchA = Math.max(minCompoundStretch, Math.log(srcW * 0.01)); var compoundStretchB = Math.max(minCompoundStretch, Math.log(tgtW * 0.01)); rs.ctrlpts = [loopPos.x, loopPos.y - (1 + Math.pow(loopW, 1.12) / 100) * loopDist * (j / 3 + 1) * compoundStretchA, loopPos.x - (1 + Math.pow(loopW, 1.12) / 100) * loopDist * (j / 3 + 1) * compoundStretchB, loopPos.y]; }; BRp$c.findStraightEdgePoints = function (edge) { // Straight edge within bundle edge._private.rscratch.edgeType = 'straight'; }; BRp$c.findBezierPoints = function (edge, pairInfo, i, edgeIsUnbundled, edgeIsSwapped) { var rs = edge._private.rscratch; var stepSize = edge.pstyle('control-point-step-size').pfValue; var ctrlptDists = edge.pstyle('control-point-distances'); var ctrlptWs = edge.pstyle('control-point-weights'); var bezierN = ctrlptDists && ctrlptWs ? Math.min(ctrlptDists.value.length, ctrlptWs.value.length) : 1; var ctrlptDist = ctrlptDists ? ctrlptDists.pfValue[0] : undefined; var ctrlptWeight = ctrlptWs.value[0]; // (Multi)bezier var multi = edgeIsUnbundled; rs.edgeType = multi ? 'multibezier' : 'bezier'; rs.ctrlpts = []; for (var b = 0; b < bezierN; b++) { var normctrlptDist = (0.5 - pairInfo.eles.length / 2 + i) * stepSize * (edgeIsSwapped ? -1 : 1); var manctrlptDist = void 0; var sign = signum(normctrlptDist); if (multi) { ctrlptDist = ctrlptDists ? ctrlptDists.pfValue[b] : stepSize; // fall back on step size ctrlptWeight = ctrlptWs.value[b]; } if (edgeIsUnbundled) { // multi or single unbundled manctrlptDist = ctrlptDist; } else { manctrlptDist = ctrlptDist !== undefined ? sign * ctrlptDist : undefined; } var distanceFromMidpoint = manctrlptDist !== undefined ? manctrlptDist : normctrlptDist; var w1 = 1 - ctrlptWeight; var w2 = ctrlptWeight; var _this$findMidptPtsEtc2 = this.findMidptPtsEtc(edge, pairInfo), midptPts = _this$findMidptPtsEtc2.midptPts, vectorNormInverse = _this$findMidptPtsEtc2.vectorNormInverse; var adjustedMidpt = { x: midptPts.x1 * w1 + midptPts.x2 * w2, y: midptPts.y1 * w1 + midptPts.y2 * w2 }; rs.ctrlpts.push(adjustedMidpt.x + vectorNormInverse.x * distanceFromMidpoint, adjustedMidpt.y + vectorNormInverse.y * distanceFromMidpoint); } }; BRp$c.findTaxiPoints = function (edge, pairInfo) { // Taxicab geometry with two turns maximum var rs = edge._private.rscratch; rs.edgeType = 'segments'; var VERTICAL = 'vertical'; var HORIZONTAL = 'horizontal'; var LEFTWARD = 'leftward'; var RIGHTWARD = 'rightward'; var DOWNWARD = 'downward'; var UPWARD = 'upward'; var AUTO = 'auto'; var posPts = pairInfo.posPts, srcW = pairInfo.srcW, srcH = pairInfo.srcH, tgtW = pairInfo.tgtW, tgtH = pairInfo.tgtH; var edgeDistances = edge.pstyle('edge-distances').value; var dIncludesNodeBody = edgeDistances !== 'node-position'; var taxiDir = edge.pstyle('taxi-direction').value; var rawTaxiDir = taxiDir; // unprocessed value var taxiTurn = edge.pstyle('taxi-turn'); var turnIsPercent = taxiTurn.units === '%'; var taxiTurnPfVal = taxiTurn.pfValue; var turnIsNegative = taxiTurnPfVal < 0; // i.e. from target side var minD = edge.pstyle('taxi-turn-min-distance').pfValue; var dw = dIncludesNodeBody ? (srcW + tgtW) / 2 : 0; var dh = dIncludesNodeBody ? (srcH + tgtH) / 2 : 0; var pdx = posPts.x2 - posPts.x1; var pdy = posPts.y2 - posPts.y1; // take away the effective w/h from the magnitude of the delta value var subDWH = function subDWH(dxy, dwh) { if (dxy > 0) { return Math.max(dxy - dwh, 0); } else { return Math.min(dxy + dwh, 0); } }; var dx = subDWH(pdx, dw); var dy = subDWH(pdy, dh); var isExplicitDir = false; if (rawTaxiDir === AUTO) { taxiDir = Math.abs(dx) > Math.abs(dy) ? HORIZONTAL : VERTICAL; } else if (rawTaxiDir === UPWARD || rawTaxiDir === DOWNWARD) { taxiDir = VERTICAL; isExplicitDir = true; } else if (rawTaxiDir === LEFTWARD || rawTaxiDir === RIGHTWARD) { taxiDir = HORIZONTAL; isExplicitDir = true; } var isVert = taxiDir === VERTICAL; var l = isVert ? dy : dx; var pl = isVert ? pdy : pdx; var sgnL = signum(pl); var forcedDir = false; if (!(isExplicitDir && (turnIsPercent || turnIsNegative)) // forcing in this case would cause weird growing in the opposite direction && (rawTaxiDir === DOWNWARD && pl < 0 || rawTaxiDir === UPWARD && pl > 0 || rawTaxiDir === LEFTWARD && pl > 0 || rawTaxiDir === RIGHTWARD && pl < 0)) { sgnL *= -1; l = sgnL * Math.abs(l); forcedDir = true; } var d; if (turnIsPercent) { var p = taxiTurnPfVal < 0 ? 1 + taxiTurnPfVal : taxiTurnPfVal; d = p * l; } else { var k = taxiTurnPfVal < 0 ? l : 0; d = k + taxiTurnPfVal * sgnL; } var getIsTooClose = function getIsTooClose(d) { return Math.abs(d) < minD || Math.abs(d) >= Math.abs(l); }; var isTooCloseSrc = getIsTooClose(d); var isTooCloseTgt = getIsTooClose(Math.abs(l) - Math.abs(d)); var isTooClose = isTooCloseSrc || isTooCloseTgt; if (isTooClose && !forcedDir) { // non-ideal routing if (isVert) { // vertical fallbacks var lShapeInsideSrc = Math.abs(pl) <= srcH / 2; var lShapeInsideTgt = Math.abs(pdx) <= tgtW / 2; if (lShapeInsideSrc) { // horizontal Z-shape (direction not respected) var x = (posPts.x1 + posPts.x2) / 2; var y1 = posPts.y1, y2 = posPts.y2; rs.segpts = [x, y1, x, y2]; } else if (lShapeInsideTgt) { // vertical Z-shape (distance not respected) var y = (posPts.y1 + posPts.y2) / 2; var x1 = posPts.x1, x2 = posPts.x2; rs.segpts = [x1, y, x2, y]; } else { // L-shape fallback (turn distance not respected, but works well with tree siblings) rs.segpts = [posPts.x1, posPts.y2]; } } else { // horizontal fallbacks var _lShapeInsideSrc = Math.abs(pl) <= srcW / 2; var _lShapeInsideTgt = Math.abs(pdy) <= tgtH / 2; if (_lShapeInsideSrc) { // vertical Z-shape (direction not respected) var _y = (posPts.y1 + posPts.y2) / 2; var _x = posPts.x1, _x2 = posPts.x2; rs.segpts = [_x, _y, _x2, _y]; } else if (_lShapeInsideTgt) { // horizontal Z-shape (turn distance not respected) var _x3 = (posPts.x1 + posPts.x2) / 2; var _y2 = posPts.y1, _y3 = posPts.y2; rs.segpts = [_x3, _y2, _x3, _y3]; } else { // L-shape (turn distance not respected, but works well for tree siblings) rs.segpts = [posPts.x2, posPts.y1]; } } } else { // ideal routing if (isVert) { var _y4 = posPts.y1 + d + (dIncludesNodeBody ? srcH / 2 * sgnL : 0); var _x4 = posPts.x1, _x5 = posPts.x2; rs.segpts = [_x4, _y4, _x5, _y4]; } else { // horizontal var _x6 = posPts.x1 + d + (dIncludesNodeBody ? srcW / 2 * sgnL : 0); var _y5 = posPts.y1, _y6 = posPts.y2; rs.segpts = [_x6, _y5, _x6, _y6]; } } if (rs.isRound) { var radius = edge.pstyle('taxi-radius').value; var isArcRadius = edge.pstyle('radius-type').value[0] === 'arc-radius'; rs.radii = new Array(rs.segpts.length / 2).fill(radius); rs.isArcRadius = new Array(rs.segpts.length / 2).fill(isArcRadius); } }; BRp$c.tryToCorrectInvalidPoints = function (edge, pairInfo) { var rs = edge._private.rscratch; // can only correct beziers for now... if (rs.edgeType === 'bezier') { var srcPos = pairInfo.srcPos, tgtPos = pairInfo.tgtPos, srcW = pairInfo.srcW, srcH = pairInfo.srcH, tgtW = pairInfo.tgtW, tgtH = pairInfo.tgtH, srcShape = pairInfo.srcShape, tgtShape = pairInfo.tgtShape, srcCornerRadius = pairInfo.srcCornerRadius, tgtCornerRadius = pairInfo.tgtCornerRadius, srcRs = pairInfo.srcRs, tgtRs = pairInfo.tgtRs; var badStart = !number$1(rs.startX) || !number$1(rs.startY); var badAStart = !number$1(rs.arrowStartX) || !number$1(rs.arrowStartY); var badEnd = !number$1(rs.endX) || !number$1(rs.endY); var badAEnd = !number$1(rs.arrowEndX) || !number$1(rs.arrowEndY); var minCpADistFactor = 3; var arrowW = this.getArrowWidth(edge.pstyle('width').pfValue, edge.pstyle('arrow-scale').value) * this.arrowShapeWidth; var minCpADist = minCpADistFactor * arrowW; var startACpDist = dist({ x: rs.ctrlpts[0], y: rs.ctrlpts[1] }, { x: rs.startX, y: rs.startY }); var closeStartACp = startACpDist < minCpADist; var endACpDist = dist({ x: rs.ctrlpts[0], y: rs.ctrlpts[1] }, { x: rs.endX, y: rs.endY }); var closeEndACp = endACpDist < minCpADist; var overlapping = false; if (badStart || badAStart || closeStartACp) { overlapping = true; // project control point along line from src centre to outside the src shape // (otherwise intersection will yield nothing) var cpD = { // delta x: rs.ctrlpts[0] - srcPos.x, y: rs.ctrlpts[1] - srcPos.y }; var cpL = Math.sqrt(cpD.x * cpD.x + cpD.y * cpD.y); // length of line var cpM = { // normalised delta x: cpD.x / cpL, y: cpD.y / cpL }; var radius = Math.max(srcW, srcH); var cpProj = { // *2 radius guarantees outside shape x: rs.ctrlpts[0] + cpM.x * 2 * radius, y: rs.ctrlpts[1] + cpM.y * 2 * radius }; var srcCtrlPtIntn = srcShape.intersectLine(srcPos.x, srcPos.y, srcW, srcH, cpProj.x, cpProj.y, 0, srcCornerRadius, srcRs); if (closeStartACp) { rs.ctrlpts[0] = rs.ctrlpts[0] + cpM.x * (minCpADist - startACpDist); rs.ctrlpts[1] = rs.ctrlpts[1] + cpM.y * (minCpADist - startACpDist); } else { rs.ctrlpts[0] = srcCtrlPtIntn[0] + cpM.x * minCpADist; rs.ctrlpts[1] = srcCtrlPtIntn[1] + cpM.y * minCpADist; } } if (badEnd || badAEnd || closeEndACp) { overlapping = true; // project control point along line from tgt centre to outside the tgt shape // (otherwise intersection will yield nothing) var _cpD = { // delta x: rs.ctrlpts[0] - tgtPos.x, y: rs.ctrlpts[1] - tgtPos.y }; var _cpL = Math.sqrt(_cpD.x * _cpD.x + _cpD.y * _cpD.y); // length of line var _cpM = { // normalised delta x: _cpD.x / _cpL, y: _cpD.y / _cpL }; var _radius = Math.max(srcW, srcH); var _cpProj = { // *2 radius guarantees outside shape x: rs.ctrlpts[0] + _cpM.x * 2 * _radius, y: rs.ctrlpts[1] + _cpM.y * 2 * _radius }; var tgtCtrlPtIntn = tgtShape.intersectLine(tgtPos.x, tgtPos.y, tgtW, tgtH, _cpProj.x, _cpProj.y, 0, tgtCornerRadius, tgtRs); if (closeEndACp) { rs.ctrlpts[0] = rs.ctrlpts[0] + _cpM.x * (minCpADist - endACpDist); rs.ctrlpts[1] = rs.ctrlpts[1] + _cpM.y * (minCpADist - endACpDist); } else { rs.ctrlpts[0] = tgtCtrlPtIntn[0] + _cpM.x * minCpADist; rs.ctrlpts[1] = tgtCtrlPtIntn[1] + _cpM.y * minCpADist; } } if (overlapping) { // recalc endpts this.findEndpoints(edge); } } }; BRp$c.storeAllpts = function (edge) { var rs = edge._private.rscratch; if (rs.edgeType === 'multibezier' || rs.edgeType === 'bezier' || rs.edgeType === 'self' || rs.edgeType === 'compound') { rs.allpts = []; rs.allpts.push(rs.startX, rs.startY); for (var b = 0; b + 1 < rs.ctrlpts.length; b += 2) { // ctrl pt itself rs.allpts.push(rs.ctrlpts[b], rs.ctrlpts[b + 1]); // the midpt between ctrlpts as intermediate destination pts if (b + 3 < rs.ctrlpts.length) { rs.allpts.push((rs.ctrlpts[b] + rs.ctrlpts[b + 2]) / 2, (rs.ctrlpts[b + 1] + rs.ctrlpts[b + 3]) / 2); } } rs.allpts.push(rs.endX, rs.endY); var m, mt; if (rs.ctrlpts.length / 2 % 2 === 0) { m = rs.allpts.length / 2 - 1; rs.midX = rs.allpts[m]; rs.midY = rs.allpts[m + 1]; } else { m = rs.allpts.length / 2 - 3; mt = 0.5; rs.midX = qbezierAt(rs.allpts[m], rs.allpts[m + 2], rs.allpts[m + 4], mt); rs.midY = qbezierAt(rs.allpts[m + 1], rs.allpts[m + 3], rs.allpts[m + 5], mt); } } else if (rs.edgeType === 'straight') { // need to calc these after endpts rs.allpts = [rs.startX, rs.startY, rs.endX, rs.endY]; // default midpt for labels etc rs.midX = (rs.startX + rs.endX + rs.arrowStartX + rs.arrowEndX) / 4; rs.midY = (rs.startY + rs.endY + rs.arrowStartY + rs.arrowEndY) / 4; } else if (rs.edgeType === 'segments') { rs.allpts = []; rs.allpts.push(rs.startX, rs.startY); rs.allpts.push.apply(rs.allpts, rs.segpts); rs.allpts.push(rs.endX, rs.endY); if (rs.isRound) { rs.roundCorners = []; for (var i = 2; i + 3 < rs.allpts.length; i += 2) { var radius = rs.radii[i / 2 - 1]; var isArcRadius = rs.isArcRadius[i / 2 - 1]; rs.roundCorners.push(getRoundCorner({ x: rs.allpts[i - 2], y: rs.allpts[i - 1] }, { x: rs.allpts[i], y: rs.allpts[i + 1], radius: radius }, { x: rs.allpts[i + 2], y: rs.allpts[i + 3] }, radius, isArcRadius)); } } if (rs.segpts.length % 4 === 0) { var i2 = rs.segpts.length / 2; var i1 = i2 - 2; rs.midX = (rs.segpts[i1] + rs.segpts[i2]) / 2; rs.midY = (rs.segpts[i1 + 1] + rs.segpts[i2 + 1]) / 2; } else { var _i = rs.segpts.length / 2 - 1; if (!rs.isRound) { rs.midX = rs.segpts[_i]; rs.midY = rs.segpts[_i + 1]; } else { var point = { x: rs.segpts[_i], y: rs.segpts[_i + 1] }; var corner = rs.roundCorners[_i / 2]; var v = [point.x - corner.cx, point.y - corner.cy]; var factor = corner.radius / Math.sqrt(Math.pow(v[0], 2) + Math.pow(v[1], 2)); v = v.map(function (c) { return c * factor; }); rs.midX = corner.cx + v[0]; rs.midY = corner.cy + v[1]; rs.midVector = v; } } } }; BRp$c.checkForInvalidEdgeWarning = function (edge) { var rs = edge[0]._private.rscratch; if (rs.nodesOverlap || number$1(rs.startX) && number$1(rs.startY) && number$1(rs.endX) && number$1(rs.endY)) { rs.loggedErr = false; } else { if (!rs.loggedErr) { rs.loggedErr = true; warn('Edge `' + edge.id() + '` has invalid endpoints and so it is impossible to draw. Adjust your edge style (e.g. control points) accordingly or use an alternative edge type. This is expected behaviour when the source node and the target node overlap.'); } } }; BRp$c.findEdgeControlPoints = function (edges) { var _this = this; if (!edges || edges.length === 0) { return; } var r = this; var cy = r.cy; var hasCompounds = cy.hasCompoundNodes(); var hashTable = { map: new Map$2(), get: function get(pairId) { var map2 = this.map.get(pairId[0]); if (map2 != null) { return map2.get(pairId[1]); } else { return null; } }, set: function set(pairId, val) { var map2 = this.map.get(pairId[0]); if (map2 == null) { map2 = new Map$2(); this.map.set(pairId[0], map2); } map2.set(pairId[1], val); } }; var pairIds = []; var haystackEdges = []; // create a table of edge (src, tgt) => list of edges between them for (var i = 0; i < edges.length; i++) { var edge = edges[i]; var _p = edge._private; var curveStyle = edge.pstyle('curve-style').value; // ignore edges who are not to be displayed // they shouldn't take up space if (edge.removed() || !edge.takesUpSpace()) { continue; } if (curveStyle === 'haystack') { haystackEdges.push(edge); continue; } var edgeIsUnbundled = curveStyle === 'unbundled-bezier' || curveStyle.endsWith('segments') || curveStyle === 'straight' || curveStyle === 'straight-triangle' || curveStyle.endsWith('taxi'); var edgeIsBezier = curveStyle === 'unbundled-bezier' || curveStyle === 'bezier'; var src = _p.source; var tgt = _p.target; var srcIndex = src.poolIndex(); var tgtIndex = tgt.poolIndex(); var pairId = [srcIndex, tgtIndex].sort(); var tableEntry = hashTable.get(pairId); if (tableEntry == null) { tableEntry = { eles: [] }; hashTable.set(pairId, tableEntry); pairIds.push(pairId); } tableEntry.eles.push(edge); if (edgeIsUnbundled) { tableEntry.hasUnbundled = true; } if (edgeIsBezier) { tableEntry.hasBezier = true; } } // for each pair (src, tgt), create the ctrl pts // Nested for loop is OK; total number of iterations for both loops = edgeCount var _loop = function _loop(p) { var pairId = pairIds[p]; var pairInfo = hashTable.get(pairId); var swappedpairInfo = void 0; if (!pairInfo.hasUnbundled) { var pllEdges = pairInfo.eles[0].parallelEdges().filter(function (e) { return e.isBundledBezier(); }); clearArray(pairInfo.eles); pllEdges.forEach(function (edge) { return pairInfo.eles.push(edge); }); // for each pair id, the edges should be sorted by index pairInfo.eles.sort(function (edge1, edge2) { return edge1.poolIndex() - edge2.poolIndex(); }); } var firstEdge = pairInfo.eles[0]; var src = firstEdge.source(); var tgt = firstEdge.target(); // make sure src/tgt distinction is consistent w.r.t. pairId if (src.poolIndex() > tgt.poolIndex()) { var temp = src; src = tgt; tgt = temp; } var srcPos = pairInfo.srcPos = src.position(); var tgtPos = pairInfo.tgtPos = tgt.position(); var srcW = pairInfo.srcW = src.outerWidth(); var srcH = pairInfo.srcH = src.outerHeight(); var tgtW = pairInfo.tgtW = tgt.outerWidth(); var tgtH = pairInfo.tgtH = tgt.outerHeight(); var srcShape = pairInfo.srcShape = r.nodeShapes[_this.getNodeShape(src)]; var tgtShape = pairInfo.tgtShape = r.nodeShapes[_this.getNodeShape(tgt)]; var srcCornerRadius = pairInfo.srcCornerRadius = src.pstyle('corner-radius').value === 'auto' ? 'auto' : src.pstyle('corner-radius').pfValue; var tgtCornerRadius = pairInfo.tgtCornerRadius = tgt.pstyle('corner-radius').value === 'auto' ? 'auto' : tgt.pstyle('corner-radius').pfValue; var tgtRs = pairInfo.tgtRs = tgt._private.rscratch; var srcRs = pairInfo.srcRs = src._private.rscratch; pairInfo.dirCounts = { 'north': 0, 'west': 0, 'south': 0, 'east': 0, 'northwest': 0, 'southwest': 0, 'northeast': 0, 'southeast': 0 }; for (var _i2 = 0; _i2 < pairInfo.eles.length; _i2++) { var _edge = pairInfo.eles[_i2]; var rs = _edge[0]._private.rscratch; var _curveStyle = _edge.pstyle('curve-style').value; var _edgeIsUnbundled = _curveStyle === 'unbundled-bezier' || _curveStyle.endsWith('segments') || _curveStyle.endsWith('taxi'); // whether the normalised pair order is the reverse of the edge's src-tgt order var edgeIsSwapped = !src.same(_edge.source()); if (!pairInfo.calculatedIntersection && src !== tgt && (pairInfo.hasBezier || pairInfo.hasUnbundled)) { pairInfo.calculatedIntersection = true; // pt outside src shape to calc distance/displacement from src to tgt var srcOutside = srcShape.intersectLine(srcPos.x, srcPos.y, srcW, srcH, tgtPos.x, tgtPos.y, 0, srcCornerRadius, srcRs); var srcIntn = pairInfo.srcIntn = srcOutside; // pt outside tgt shape to calc distance/displacement from src to tgt var tgtOutside = tgtShape.intersectLine(tgtPos.x, tgtPos.y, tgtW, tgtH, srcPos.x, srcPos.y, 0, tgtCornerRadius, tgtRs); var tgtIntn = pairInfo.tgtIntn = tgtOutside; var intersectionPts = pairInfo.intersectionPts = { x1: srcOutside[0], x2: tgtOutside[0], y1: srcOutside[1], y2: tgtOutside[1] }; var posPts = pairInfo.posPts = { x1: srcPos.x, x2: tgtPos.x, y1: srcPos.y, y2: tgtPos.y }; var dy = tgtOutside[1] - srcOutside[1]; var dx = tgtOutside[0] - srcOutside[0]; var l = Math.sqrt(dx * dx + dy * dy); var vector = pairInfo.vector = { x: dx, y: dy }; var vectorNorm = pairInfo.vectorNorm = { x: vector.x / l, y: vector.y / l }; var vectorNormInverse = { x: -vectorNorm.y, y: vectorNorm.x }; // if node shapes overlap, then no ctrl pts to draw pairInfo.nodesOverlap = !number$1(l) || tgtShape.checkPoint(srcOutside[0], srcOutside[1], 0, tgtW, tgtH, tgtPos.x, tgtPos.y, tgtCornerRadius, tgtRs) || srcShape.checkPoint(tgtOutside[0], tgtOutside[1], 0, srcW, srcH, srcPos.x, srcPos.y, srcCornerRadius, srcRs); pairInfo.vectorNormInverse = vectorNormInverse; swappedpairInfo = { nodesOverlap: pairInfo.nodesOverlap, dirCounts: pairInfo.dirCounts, calculatedIntersection: true, hasBezier: pairInfo.hasBezier, hasUnbundled: pairInfo.hasUnbundled, eles: pairInfo.eles, srcPos: tgtPos, tgtPos: srcPos, srcW: tgtW, srcH: tgtH, tgtW: srcW, tgtH: srcH, srcIntn: tgtIntn, tgtIntn: srcIntn, srcShape: tgtShape, tgtShape: srcShape, posPts: { x1: posPts.x2, y1: posPts.y2, x2: posPts.x1, y2: posPts.y1 }, intersectionPts: { x1: intersectionPts.x2, y1: intersectionPts.y2, x2: intersectionPts.x1, y2: intersectionPts.y1 }, vector: { x: -vector.x, y: -vector.y }, vectorNorm: { x: -vectorNorm.x, y: -vectorNorm.y }, vectorNormInverse: { x: -vectorNormInverse.x, y: -vectorNormInverse.y } }; } var passedPairInfo = edgeIsSwapped ? swappedpairInfo : pairInfo; rs.nodesOverlap = passedPairInfo.nodesOverlap; rs.srcIntn = passedPairInfo.srcIntn; rs.tgtIntn = passedPairInfo.tgtIntn; rs.isRound = _curveStyle.startsWith('round'); if (hasCompounds && (src.isParent() || src.isChild() || tgt.isParent() || tgt.isChild()) && (src.parents().anySame(tgt) || tgt.parents().anySame(src) || src.same(tgt) && src.isParent())) { _this.findCompoundLoopPoints(_edge, passedPairInfo, _i2, _edgeIsUnbundled); } else if (src === tgt) { _this.findLoopPoints(_edge, passedPairInfo, _i2, _edgeIsUnbundled); } else if (_curveStyle.endsWith('segments')) { _this.findSegmentsPoints(_edge, passedPairInfo); } else if (_curveStyle.endsWith('taxi')) { _this.findTaxiPoints(_edge, passedPairInfo); } else if (_curveStyle === 'straight' || !_edgeIsUnbundled && pairInfo.eles.length % 2 === 1 && _i2 === Math.floor(pairInfo.eles.length / 2)) { _this.findStraightEdgePoints(_edge); } else { _this.findBezierPoints(_edge, passedPairInfo, _i2, _edgeIsUnbundled, edgeIsSwapped); } _this.findEndpoints(_edge); _this.tryToCorrectInvalidPoints(_edge, passedPairInfo); _this.checkForInvalidEdgeWarning(_edge); _this.storeAllpts(_edge); _this.storeEdgeProjections(_edge); _this.calculateArrowAngles(_edge); _this.recalculateEdgeLabelProjections(_edge); _this.calculateLabelAngles(_edge); } // for pair edges }; for (var p = 0; p < pairIds.length; p++) { _loop(p); } // for pair ids // haystacks avoid the expense of pairInfo stuff (intersections etc.) this.findHaystackPoints(haystackEdges); }; function getPts(pts) { var retPts = []; if (pts == null) { return; } for (var i = 0; i < pts.length; i += 2) { var x = pts[i]; var y = pts[i + 1]; retPts.push({ x: x, y: y }); } return retPts; } BRp$c.getSegmentPoints = function (edge) { var rs = edge[0]._private.rscratch; var type = rs.edgeType; if (type === 'segments') { this.recalculateRenderedStyle(edge); return getPts(rs.segpts); } }; BRp$c.getControlPoints = function (edge) { var rs = edge[0]._private.rscratch; var type = rs.edgeType; if (type === 'bezier' || type === 'multibezier' || type === 'self' || type === 'compound') { this.recalculateRenderedStyle(edge); return getPts(rs.ctrlpts); } }; BRp$c.getEdgeMidpoint = function (edge) { var rs = edge[0]._private.rscratch; this.recalculateRenderedStyle(edge); return { x: rs.midX, y: rs.midY }; }; var BRp$b = {}; BRp$b.manualEndptToPx = function (node, prop) { var r = this; var npos = node.position(); var w = node.outerWidth(); var h = node.outerHeight(); var rs = node._private.rscratch; if (prop.value.length === 2) { var p = [prop.pfValue[0], prop.pfValue[1]]; if (prop.units[0] === '%') { p[0] = p[0] * w; } if (prop.units[1] === '%') { p[1] = p[1] * h; } p[0] += npos.x; p[1] += npos.y; return p; } else { var angle = prop.pfValue[0]; angle = -Math.PI / 2 + angle; // start at 12 o'clock var l = 2 * Math.max(w, h); var _p = [npos.x + Math.cos(angle) * l, npos.y + Math.sin(angle) * l]; return r.nodeShapes[this.getNodeShape(node)].intersectLine(npos.x, npos.y, w, h, _p[0], _p[1], 0, node.pstyle('corner-radius').value === 'auto' ? 'auto' : node.pstyle('corner-radius').pfValue, rs); } }; BRp$b.findEndpoints = function (edge) { var r = this; var intersect; var source = edge.source()[0]; var target = edge.target()[0]; var srcPos = source.position(); var tgtPos = target.position(); var tgtArShape = edge.pstyle('target-arrow-shape').value; var srcArShape = edge.pstyle('source-arrow-shape').value; var tgtDist = edge.pstyle('target-distance-from-node').pfValue; var srcDist = edge.pstyle('source-distance-from-node').pfValue; var srcRs = source._private.rscratch; var tgtRs = target._private.rscratch; var curveStyle = edge.pstyle('curve-style').value; var rs = edge._private.rscratch; var et = rs.edgeType; var taxi = curveStyle === 'taxi'; var self = et === 'self' || et === 'compound'; var bezier = et === 'bezier' || et === 'multibezier' || self; var multi = et !== 'bezier'; var lines = et === 'straight' || et === 'segments'; var segments = et === 'segments'; var hasEndpts = bezier || multi || lines; var overrideEndpts = self || taxi; var srcManEndpt = edge.pstyle('source-endpoint'); var srcManEndptVal = overrideEndpts ? 'outside-to-node' : srcManEndpt.value; var srcCornerRadius = source.pstyle('corner-radius').value === 'auto' ? 'auto' : source.pstyle('corner-radius').pfValue; var tgtManEndpt = edge.pstyle('target-endpoint'); var tgtManEndptVal = overrideEndpts ? 'outside-to-node' : tgtManEndpt.value; var tgtCornerRadius = target.pstyle('corner-radius').value === 'auto' ? 'auto' : target.pstyle('corner-radius').pfValue; rs.srcManEndpt = srcManEndpt; rs.tgtManEndpt = tgtManEndpt; var p1; // last known point of edge on target side var p2; // last known point of edge on source side var p1_i; // point to intersect with target shape var p2_i; // point to intersect with source shape if (bezier) { var cpStart = [rs.ctrlpts[0], rs.ctrlpts[1]]; var cpEnd = multi ? [rs.ctrlpts[rs.ctrlpts.length - 2], rs.ctrlpts[rs.ctrlpts.length - 1]] : cpStart; p1 = cpEnd; p2 = cpStart; } else if (lines) { var srcArrowFromPt = !segments ? [tgtPos.x, tgtPos.y] : rs.segpts.slice(0, 2); var tgtArrowFromPt = !segments ? [srcPos.x, srcPos.y] : rs.segpts.slice(rs.segpts.length - 2); p1 = tgtArrowFromPt; p2 = srcArrowFromPt; } if (tgtManEndptVal === 'inside-to-node') { intersect = [tgtPos.x, tgtPos.y]; } else if (tgtManEndpt.units) { intersect = this.manualEndptToPx(target, tgtManEndpt); } else if (tgtManEndptVal === 'outside-to-line') { intersect = rs.tgtIntn; // use cached value from ctrlpt calc } else { if (tgtManEndptVal === 'outside-to-node' || tgtManEndptVal === 'outside-to-node-or-label') { p1_i = p1; } else if (tgtManEndptVal === 'outside-to-line' || tgtManEndptVal === 'outside-to-line-or-label') { p1_i = [srcPos.x, srcPos.y]; } intersect = r.nodeShapes[this.getNodeShape(target)].intersectLine(tgtPos.x, tgtPos.y, target.outerWidth(), target.outerHeight(), p1_i[0], p1_i[1], 0, tgtCornerRadius, tgtRs); if (tgtManEndptVal === 'outside-to-node-or-label' || tgtManEndptVal === 'outside-to-line-or-label') { var trs = target._private.rscratch; var lw = trs.labelWidth; var lh = trs.labelHeight; var lx = trs.labelX; var ly = trs.labelY; var lw2 = lw / 2; var lh2 = lh / 2; var va = target.pstyle('text-valign').value; if (va === 'top') { ly -= lh2; } else if (va === 'bottom') { ly += lh2; } var ha = target.pstyle('text-halign').value; if (ha === 'left') { lx -= lw2; } else if (ha === 'right') { lx += lw2; } var labelIntersect = polygonIntersectLine(p1_i[0], p1_i[1], [lx - lw2, ly - lh2, lx + lw2, ly - lh2, lx + lw2, ly + lh2, lx - lw2, ly + lh2], tgtPos.x, tgtPos.y); if (labelIntersect.length > 0) { var refPt = srcPos; var intSqdist = sqdist(refPt, array2point(intersect)); var labIntSqdist = sqdist(refPt, array2point(labelIntersect)); var minSqDist = intSqdist; if (labIntSqdist < intSqdist) { intersect = labelIntersect; minSqDist = labIntSqdist; } if (labelIntersect.length > 2) { var labInt2SqDist = sqdist(refPt, { x: labelIntersect[2], y: labelIntersect[3] }); if (labInt2SqDist < minSqDist) { intersect = [labelIntersect[2], labelIntersect[3]]; } } } } } var arrowEnd = shortenIntersection(intersect, p1, r.arrowShapes[tgtArShape].spacing(edge) + tgtDist); var edgeEnd = shortenIntersection(intersect, p1, r.arrowShapes[tgtArShape].gap(edge) + tgtDist); rs.endX = edgeEnd[0]; rs.endY = edgeEnd[1]; rs.arrowEndX = arrowEnd[0]; rs.arrowEndY = arrowEnd[1]; if (srcManEndptVal === 'inside-to-node') { intersect = [srcPos.x, srcPos.y]; } else if (srcManEndpt.units) { intersect = this.manualEndptToPx(source, srcManEndpt); } else if (srcManEndptVal === 'outside-to-line') { intersect = rs.srcIntn; // use cached value from ctrlpt calc } else { if (srcManEndptVal === 'outside-to-node' || srcManEndptVal === 'outside-to-node-or-label') { p2_i = p2; } else if (srcManEndptVal === 'outside-to-line' || srcManEndptVal === 'outside-to-line-or-label') { p2_i = [tgtPos.x, tgtPos.y]; } intersect = r.nodeShapes[this.getNodeShape(source)].intersectLine(srcPos.x, srcPos.y, source.outerWidth(), source.outerHeight(), p2_i[0], p2_i[1], 0, srcCornerRadius, srcRs); if (srcManEndptVal === 'outside-to-node-or-label' || srcManEndptVal === 'outside-to-line-or-label') { var srs = source._private.rscratch; var _lw = srs.labelWidth; var _lh = srs.labelHeight; var _lx = srs.labelX; var _ly = srs.labelY; var _lw2 = _lw / 2; var _lh2 = _lh / 2; var _va = source.pstyle('text-valign').value; if (_va === 'top') { _ly -= _lh2; } else if (_va === 'bottom') { _ly += _lh2; } var _ha = source.pstyle('text-halign').value; if (_ha === 'left') { _lx -= _lw2; } else if (_ha === 'right') { _lx += _lw2; } var _labelIntersect = polygonIntersectLine(p2_i[0], p2_i[1], [_lx - _lw2, _ly - _lh2, _lx + _lw2, _ly - _lh2, _lx + _lw2, _ly + _lh2, _lx - _lw2, _ly + _lh2], srcPos.x, srcPos.y); if (_labelIntersect.length > 0) { var _refPt = tgtPos; var _intSqdist = sqdist(_refPt, array2point(intersect)); var _labIntSqdist = sqdist(_refPt, array2point(_labelIntersect)); var _minSqDist = _intSqdist; if (_labIntSqdist < _intSqdist) { intersect = [_labelIntersect[0], _labelIntersect[1]]; _minSqDist = _labIntSqdist; } if (_labelIntersect.length > 2) { var _labInt2SqDist = sqdist(_refPt, { x: _labelIntersect[2], y: _labelIntersect[3] }); if (_labInt2SqDist < _minSqDist) { intersect = [_labelIntersect[2], _labelIntersect[3]]; } } } } } var arrowStart = shortenIntersection(intersect, p2, r.arrowShapes[srcArShape].spacing(edge) + srcDist); var edgeStart = shortenIntersection(intersect, p2, r.arrowShapes[srcArShape].gap(edge) + srcDist); rs.startX = edgeStart[0]; rs.startY = edgeStart[1]; rs.arrowStartX = arrowStart[0]; rs.arrowStartY = arrowStart[1]; if (hasEndpts) { if (!number$1(rs.startX) || !number$1(rs.startY) || !number$1(rs.endX) || !number$1(rs.endY)) { rs.badLine = true; } else { rs.badLine = false; } } }; BRp$b.getSourceEndpoint = function (edge) { var rs = edge[0]._private.rscratch; this.recalculateRenderedStyle(edge); switch (rs.edgeType) { case 'haystack': return { x: rs.haystackPts[0], y: rs.haystackPts[1] }; default: return { x: rs.arrowStartX, y: rs.arrowStartY }; } }; BRp$b.getTargetEndpoint = function (edge) { var rs = edge[0]._private.rscratch; this.recalculateRenderedStyle(edge); switch (rs.edgeType) { case 'haystack': return { x: rs.haystackPts[2], y: rs.haystackPts[3] }; default: return { x: rs.arrowEndX, y: rs.arrowEndY }; } }; var BRp$a = {}; function pushBezierPts(r, edge, pts) { var qbezierAt$1 = function qbezierAt$1(p1, p2, p3, t) { return qbezierAt(p1, p2, p3, t); }; var _p = edge._private; var bpts = _p.rstyle.bezierPts; for (var i = 0; i < r.bezierProjPcts.length; i++) { var p = r.bezierProjPcts[i]; bpts.push({ x: qbezierAt$1(pts[0], pts[2], pts[4], p), y: qbezierAt$1(pts[1], pts[3], pts[5], p) }); } } BRp$a.storeEdgeProjections = function (edge) { var _p = edge._private; var rs = _p.rscratch; var et = rs.edgeType; // clear the cached points state _p.rstyle.bezierPts = null; _p.rstyle.linePts = null; _p.rstyle.haystackPts = null; if (et === 'multibezier' || et === 'bezier' || et === 'self' || et === 'compound') { _p.rstyle.bezierPts = []; for (var i = 0; i + 5 < rs.allpts.length; i += 4) { pushBezierPts(this, edge, rs.allpts.slice(i, i + 6)); } } else if (et === 'segments') { var lpts = _p.rstyle.linePts = []; for (var i = 0; i + 1 < rs.allpts.length; i += 2) { lpts.push({ x: rs.allpts[i], y: rs.allpts[i + 1] }); } } else if (et === 'haystack') { var hpts = rs.haystackPts; _p.rstyle.haystackPts = [{ x: hpts[0], y: hpts[1] }, { x: hpts[2], y: hpts[3] }]; } _p.rstyle.arrowWidth = this.getArrowWidth(edge.pstyle('width').pfValue, edge.pstyle('arrow-scale').value) * this.arrowShapeWidth; }; BRp$a.recalculateEdgeProjections = function (edges) { this.findEdgeControlPoints(edges); }; /* global document */ var BRp$9 = {}; BRp$9.recalculateNodeLabelProjection = function (node) { var content = node.pstyle('label').strValue; if (emptyString(content)) { return; } var textX, textY; var _p = node._private; var nodeWidth = node.width(); var nodeHeight = node.height(); var padding = node.padding(); var nodePos = node.position(); var textHalign = node.pstyle('text-halign').strValue; var textValign = node.pstyle('text-valign').strValue; var rs = _p.rscratch; var rstyle = _p.rstyle; switch (textHalign) { case 'left': textX = nodePos.x - nodeWidth / 2 - padding; break; case 'right': textX = nodePos.x + nodeWidth / 2 + padding; break; default: // e.g. center textX = nodePos.x; } switch (textValign) { case 'top': textY = nodePos.y - nodeHeight / 2 - padding; break; case 'bottom': textY = nodePos.y + nodeHeight / 2 + padding; break; default: // e.g. middle textY = nodePos.y; } rs.labelX = textX; rs.labelY = textY; rstyle.labelX = textX; rstyle.labelY = textY; this.calculateLabelAngles(node); this.applyLabelDimensions(node); }; var lineAngleFromDelta = function lineAngleFromDelta(dx, dy) { var angle = Math.atan(dy / dx); if (dx === 0 && angle < 0) { angle = angle * -1; } return angle; }; var lineAngle = function lineAngle(p0, p1) { var dx = p1.x - p0.x; var dy = p1.y - p0.y; return lineAngleFromDelta(dx, dy); }; var bezierAngle = function bezierAngle(p0, p1, p2, t) { var t0 = bound(0, t - 0.001, 1); var t1 = bound(0, t + 0.001, 1); var lp0 = qbezierPtAt(p0, p1, p2, t0); var lp1 = qbezierPtAt(p0, p1, p2, t1); return lineAngle(lp0, lp1); }; BRp$9.recalculateEdgeLabelProjections = function (edge) { var p; var _p = edge._private; var rs = _p.rscratch; var r = this; var content = { mid: edge.pstyle('label').strValue, source: edge.pstyle('source-label').strValue, target: edge.pstyle('target-label').strValue }; if (content.mid || content.source || content.target) ; else { return; // no labels => no calcs } // add center point to style so bounding box calculations can use it // p = { x: rs.midX, y: rs.midY }; var setRs = function setRs(propName, prefix, value) { setPrefixedProperty(_p.rscratch, propName, prefix, value); setPrefixedProperty(_p.rstyle, propName, prefix, value); }; setRs('labelX', null, p.x); setRs('labelY', null, p.y); var midAngle = lineAngleFromDelta(rs.midDispX, rs.midDispY); setRs('labelAutoAngle', null, midAngle); var createControlPointInfo = function createControlPointInfo() { if (createControlPointInfo.cache) { return createControlPointInfo.cache; } // use cache so only 1x per edge var ctrlpts = []; // store each ctrlpt info init for (var i = 0; i + 5 < rs.allpts.length; i += 4) { var p0 = { x: rs.allpts[i], y: rs.allpts[i + 1] }; var p1 = { x: rs.allpts[i + 2], y: rs.allpts[i + 3] }; // ctrlpt var p2 = { x: rs.allpts[i + 4], y: rs.allpts[i + 5] }; ctrlpts.push({ p0: p0, p1: p1, p2: p2, startDist: 0, length: 0, segments: [] }); } var bpts = _p.rstyle.bezierPts; var nProjs = r.bezierProjPcts.length; function addSegment(cp, p0, p1, t0, t1) { var length = dist(p0, p1); var prevSegment = cp.segments[cp.segments.length - 1]; var segment = { p0: p0, p1: p1, t0: t0, t1: t1, startDist: prevSegment ? prevSegment.startDist + prevSegment.length : 0, length: length }; cp.segments.push(segment); cp.length += length; } // update each ctrlpt with segment info for (var _i = 0; _i < ctrlpts.length; _i++) { var cp = ctrlpts[_i]; var prevCp = ctrlpts[_i - 1]; if (prevCp) { cp.startDist = prevCp.startDist + prevCp.length; } addSegment(cp, cp.p0, bpts[_i * nProjs], 0, r.bezierProjPcts[0]); // first for (var j = 0; j < nProjs - 1; j++) { addSegment(cp, bpts[_i * nProjs + j], bpts[_i * nProjs + j + 1], r.bezierProjPcts[j], r.bezierProjPcts[j + 1]); } addSegment(cp, bpts[_i * nProjs + nProjs - 1], cp.p2, r.bezierProjPcts[nProjs - 1], 1); // last } return createControlPointInfo.cache = ctrlpts; }; var calculateEndProjection = function calculateEndProjection(prefix) { var angle; var isSrc = prefix === 'source'; if (!content[prefix]) { return; } var offset = edge.pstyle(prefix + '-text-offset').pfValue; switch (rs.edgeType) { case 'self': case 'compound': case 'bezier': case 'multibezier': { var cps = createControlPointInfo(); var selected; var startDist = 0; var totalDist = 0; // find the segment we're on for (var i = 0; i < cps.length; i++) { var _cp = cps[isSrc ? i : cps.length - 1 - i]; for (var j = 0; j < _cp.segments.length; j++) { var _seg = _cp.segments[isSrc ? j : _cp.segments.length - 1 - j]; var lastSeg = i === cps.length - 1 && j === _cp.segments.length - 1; startDist = totalDist; totalDist += _seg.length; if (totalDist >= offset || lastSeg) { selected = { cp: _cp, segment: _seg }; break; } } if (selected) { break; } } var cp = selected.cp; var seg = selected.segment; var tSegment = (offset - startDist) / seg.length; var segDt = seg.t1 - seg.t0; var t = isSrc ? seg.t0 + segDt * tSegment : seg.t1 - segDt * tSegment; t = bound(0, t, 1); p = qbezierPtAt(cp.p0, cp.p1, cp.p2, t); angle = bezierAngle(cp.p0, cp.p1, cp.p2, t); break; } case 'straight': case 'segments': case 'haystack': { var d = 0, di, d0; var p0, p1; var l = rs.allpts.length; for (var _i2 = 0; _i2 + 3 < l; _i2 += 2) { if (isSrc) { p0 = { x: rs.allpts[_i2], y: rs.allpts[_i2 + 1] }; p1 = { x: rs.allpts[_i2 + 2], y: rs.allpts[_i2 + 3] }; } else { p0 = { x: rs.allpts[l - 2 - _i2], y: rs.allpts[l - 1 - _i2] }; p1 = { x: rs.allpts[l - 4 - _i2], y: rs.allpts[l - 3 - _i2] }; } di = dist(p0, p1); d0 = d; d += di; if (d >= offset) { break; } } var pD = offset - d0; var _t = pD / di; _t = bound(0, _t, 1); p = lineAt(p0, p1, _t); angle = lineAngle(p0, p1); break; } } setRs('labelX', prefix, p.x); setRs('labelY', prefix, p.y); setRs('labelAutoAngle', prefix, angle); }; calculateEndProjection('source'); calculateEndProjection('target'); this.applyLabelDimensions(edge); }; BRp$9.applyLabelDimensions = function (ele) { this.applyPrefixedLabelDimensions(ele); if (ele.isEdge()) { this.applyPrefixedLabelDimensions(ele, 'source'); this.applyPrefixedLabelDimensions(ele, 'target'); } }; BRp$9.applyPrefixedLabelDimensions = function (ele, prefix) { var _p = ele._private; var text = this.getLabelText(ele, prefix); var labelDims = this.calculateLabelDimensions(ele, text); var lineHeight = ele.pstyle('line-height').pfValue; var textWrap = ele.pstyle('text-wrap').strValue; var lines = getPrefixedProperty(_p.rscratch, 'labelWrapCachedLines', prefix) || []; var numLines = textWrap !== 'wrap' ? 1 : Math.max(lines.length, 1); var normPerLineHeight = labelDims.height / numLines; var labelLineHeight = normPerLineHeight * lineHeight; var width = labelDims.width; var height = labelDims.height + (numLines - 1) * (lineHeight - 1) * normPerLineHeight; setPrefixedProperty(_p.rstyle, 'labelWidth', prefix, width); setPrefixedProperty(_p.rscratch, 'labelWidth', prefix, width); setPrefixedProperty(_p.rstyle, 'labelHeight', prefix, height); setPrefixedProperty(_p.rscratch, 'labelHeight', prefix, height); setPrefixedProperty(_p.rscratch, 'labelLineHeight', prefix, labelLineHeight); }; BRp$9.getLabelText = function (ele, prefix) { var _p = ele._private; var pfd = prefix ? prefix + '-' : ''; var text = ele.pstyle(pfd + 'label').strValue; var textTransform = ele.pstyle('text-transform').value; var rscratch = function rscratch(propName, value) { if (value) { setPrefixedProperty(_p.rscratch, propName, prefix, value); return value; } else { return getPrefixedProperty(_p.rscratch, propName, prefix); } }; // for empty text, skip all processing if (!text) { return ''; } if (textTransform == 'none') ; else if (textTransform == 'uppercase') { text = text.toUpperCase(); } else if (textTransform == 'lowercase') { text = text.toLowerCase(); } var wrapStyle = ele.pstyle('text-wrap').value; if (wrapStyle === 'wrap') { var labelKey = rscratch('labelKey'); // save recalc if the label is the same as before if (labelKey != null && rscratch('labelWrapKey') === labelKey) { return rscratch('labelWrapCachedText'); } var zwsp = "\u200B"; var lines = text.split('\n'); var maxW = ele.pstyle('text-max-width').pfValue; var overflow = ele.pstyle('text-overflow-wrap').value; var overflowAny = overflow === 'anywhere'; var wrappedLines = []; var wordsRegex = /[\s\u200b]+/; var wordSeparator = overflowAny ? '' : ' '; for (var l = 0; l < lines.length; l++) { var line = lines[l]; var lineDims = this.calculateLabelDimensions(ele, line); var lineW = lineDims.width; if (overflowAny) { var processedLine = line.split('').join(zwsp); line = processedLine; } if (lineW > maxW) { // line is too long var words = line.split(wordsRegex); var subline = ''; for (var w = 0; w < words.length; w++) { var word = words[w]; var testLine = subline.length === 0 ? word : subline + wordSeparator + word; var testDims = this.calculateLabelDimensions(ele, testLine); var testW = testDims.width; if (testW <= maxW) { // word fits on current line subline += word + wordSeparator; } else { // word starts new line if (subline) { wrappedLines.push(subline); } subline = word + wordSeparator; } } // if there's remaining text, put it in a wrapped line if (!subline.match(/^[\s\u200b]+$/)) { wrappedLines.push(subline); } } else { // line is already short enough wrappedLines.push(line); } } // for rscratch('labelWrapCachedLines', wrappedLines); text = rscratch('labelWrapCachedText', wrappedLines.join('\n')); rscratch('labelWrapKey', labelKey); } else if (wrapStyle === 'ellipsis') { var _maxW = ele.pstyle('text-max-width').pfValue; var ellipsized = ''; var ellipsis = "\u2026"; var incLastCh = false; if (this.calculateLabelDimensions(ele, text).width < _maxW) { // the label already fits return text; } for (var i = 0; i < text.length; i++) { var widthWithNextCh = this.calculateLabelDimensions(ele, ellipsized + text[i] + ellipsis).width; if (widthWithNextCh > _maxW) { break; } ellipsized += text[i]; if (i === text.length - 1) { incLastCh = true; } } if (!incLastCh) { ellipsized += ellipsis; } return ellipsized; } // if ellipsize return text; }; BRp$9.getLabelJustification = function (ele) { var justification = ele.pstyle('text-justification').strValue; var textHalign = ele.pstyle('text-halign').strValue; if (justification === 'auto') { if (ele.isNode()) { switch (textHalign) { case 'left': return 'right'; case 'right': return 'left'; default: return 'center'; } } else { return 'center'; } } else { return justification; } }; BRp$9.calculateLabelDimensions = function (ele, text) { var r = this; var cacheKey = hashString(text, ele._private.labelDimsKey); var cache = r.labelDimCache || (r.labelDimCache = []); var existingVal = cache[cacheKey]; if (existingVal != null) { return existingVal; } var padding = 0; // add padding around text dims, as the measurement isn't that accurate var fStyle = ele.pstyle('font-style').strValue; var size = ele.pstyle('font-size').pfValue; var family = ele.pstyle('font-family').strValue; var weight = ele.pstyle('font-weight').strValue; var canvas = this.labelCalcCanvas; var c2d = this.labelCalcCanvasContext; if (!canvas) { canvas = this.labelCalcCanvas = document.createElement('canvas'); c2d = this.labelCalcCanvasContext = canvas.getContext('2d'); var ds = canvas.style; ds.position = 'absolute'; ds.left = '-9999px'; ds.top = '-9999px'; ds.zIndex = '-1'; ds.visibility = 'hidden'; ds.pointerEvents = 'none'; } c2d.font = "".concat(fStyle, " ").concat(weight, " ").concat(size, "px ").concat(family); var width = 0; var height = 0; var lines = text.split('\n'); for (var i = 0; i < lines.length; i++) { var line = lines[i]; var metrics = c2d.measureText(line); var w = Math.ceil(metrics.width); var h = size; width = Math.max(w, width); height += h; } width += padding; height += padding; return cache[cacheKey] = { width: width, height: height }; }; BRp$9.calculateLabelAngle = function (ele, prefix) { var _p = ele._private; var rs = _p.rscratch; var isEdge = ele.isEdge(); var prefixDash = prefix ? prefix + '-' : ''; var rot = ele.pstyle(prefixDash + 'text-rotation'); var rotStr = rot.strValue; if (rotStr === 'none') { return 0; } else if (isEdge && rotStr === 'autorotate') { return rs.labelAutoAngle; } else if (rotStr === 'autorotate') { return 0; } else { return rot.pfValue; } }; BRp$9.calculateLabelAngles = function (ele) { var r = this; var isEdge = ele.isEdge(); var _p = ele._private; var rs = _p.rscratch; rs.labelAngle = r.calculateLabelAngle(ele); if (isEdge) { rs.sourceLabelAngle = r.calculateLabelAngle(ele, 'source'); rs.targetLabelAngle = r.calculateLabelAngle(ele, 'target'); } }; var BRp$8 = {}; var TOO_SMALL_CUT_RECT = 28; var warnedCutRect = false; BRp$8.getNodeShape = function (node) { var r = this; var shape = node.pstyle('shape').value; if (shape === 'cutrectangle' && (node.width() < TOO_SMALL_CUT_RECT || node.height() < TOO_SMALL_CUT_RECT)) { if (!warnedCutRect) { warn('The `cutrectangle` node shape can not be used at small sizes so `rectangle` is used instead'); warnedCutRect = true; } return 'rectangle'; } if (node.isParent()) { if (shape === 'rectangle' || shape === 'roundrectangle' || shape === 'round-rectangle' || shape === 'cutrectangle' || shape === 'cut-rectangle' || shape === 'barrel') { return shape; } else { return 'rectangle'; } } if (shape === 'polygon') { var points = node.pstyle('shape-polygon-points').value; return r.nodeShapes.makePolygon(points).name; } return shape; }; var BRp$7 = {}; BRp$7.registerCalculationListeners = function () { var cy = this.cy; var elesToUpdate = cy.collection(); var r = this; var enqueue = function enqueue(eles) { var dirtyStyleCaches = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; elesToUpdate.merge(eles); if (dirtyStyleCaches) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var _p = ele._private; var rstyle = _p.rstyle; rstyle.clean = false; rstyle.cleanConnected = false; } } }; r.binder(cy).on('bounds.* dirty.*', function onDirtyBounds(e) { var ele = e.target; enqueue(ele); }).on('style.* background.*', function onDirtyStyle(e) { var ele = e.target; enqueue(ele, false); }); var updateEleCalcs = function updateEleCalcs(willDraw) { if (willDraw) { var fns = r.onUpdateEleCalcsFns; // because we need to have up-to-date style (e.g. stylesheet mappers) // before calculating rendered style (and pstyle might not be called yet) elesToUpdate.cleanStyle(); for (var i = 0; i < elesToUpdate.length; i++) { var ele = elesToUpdate[i]; var rstyle = ele._private.rstyle; if (ele.isNode() && !rstyle.cleanConnected) { enqueue(ele.connectedEdges()); rstyle.cleanConnected = true; } } if (fns) { for (var _i = 0; _i < fns.length; _i++) { var fn = fns[_i]; fn(willDraw, elesToUpdate); } } r.recalculateRenderedStyle(elesToUpdate); elesToUpdate = cy.collection(); } }; r.flushRenderedStyleQueue = function () { updateEleCalcs(true); }; r.beforeRender(updateEleCalcs, r.beforeRenderPriorities.eleCalcs); }; BRp$7.onUpdateEleCalcs = function (fn) { var fns = this.onUpdateEleCalcsFns = this.onUpdateEleCalcsFns || []; fns.push(fn); }; BRp$7.recalculateRenderedStyle = function (eles, useCache) { var isCleanConnected = function isCleanConnected(ele) { return ele._private.rstyle.cleanConnected; }; var edges = []; var nodes = []; // the renderer can't be used for calcs when destroyed, e.g. ele.boundingBox() if (this.destroyed) { return; } // use cache by default for perf if (useCache === undefined) { useCache = true; } for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var _p = ele._private; var rstyle = _p.rstyle; // an edge may be implicitly dirty b/c of one of its connected nodes // (and a request for recalc may come in between frames) if (ele.isEdge() && (!isCleanConnected(ele.source()) || !isCleanConnected(ele.target()))) { rstyle.clean = false; } // only update if dirty and in graph if (useCache && rstyle.clean || ele.removed()) { continue; } // only update if not display: none if (ele.pstyle('display').value === 'none') { continue; } if (_p.group === 'nodes') { nodes.push(ele); } else { // edges edges.push(ele); } rstyle.clean = true; } // update node data from projections for (var _i2 = 0; _i2 < nodes.length; _i2++) { var _ele = nodes[_i2]; var _p2 = _ele._private; var _rstyle = _p2.rstyle; var pos = _ele.position(); this.recalculateNodeLabelProjection(_ele); _rstyle.nodeX = pos.x; _rstyle.nodeY = pos.y; _rstyle.nodeW = _ele.pstyle('width').pfValue; _rstyle.nodeH = _ele.pstyle('height').pfValue; } this.recalculateEdgeProjections(edges); // update edge data from projections for (var _i3 = 0; _i3 < edges.length; _i3++) { var _ele2 = edges[_i3]; var _p3 = _ele2._private; var _rstyle2 = _p3.rstyle; var rs = _p3.rscratch; // update rstyle positions _rstyle2.srcX = rs.arrowStartX; _rstyle2.srcY = rs.arrowStartY; _rstyle2.tgtX = rs.arrowEndX; _rstyle2.tgtY = rs.arrowEndY; _rstyle2.midX = rs.midX; _rstyle2.midY = rs.midY; _rstyle2.labelAngle = rs.labelAngle; _rstyle2.sourceLabelAngle = rs.sourceLabelAngle; _rstyle2.targetLabelAngle = rs.targetLabelAngle; } }; var BRp$6 = {}; BRp$6.updateCachedGrabbedEles = function () { var eles = this.cachedZSortedEles; if (!eles) { // just let this be recalculated on the next z sort tick return; } eles.drag = []; eles.nondrag = []; var grabTargets = []; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var rs = ele._private.rscratch; if (ele.grabbed() && !ele.isParent()) { grabTargets.push(ele); } else if (rs.inDragLayer) { eles.drag.push(ele); } else { eles.nondrag.push(ele); } } // put the grab target nodes last so it's on top of its neighbourhood for (var i = 0; i < grabTargets.length; i++) { var ele = grabTargets[i]; eles.drag.push(ele); } }; BRp$6.invalidateCachedZSortedEles = function () { this.cachedZSortedEles = null; }; BRp$6.getCachedZSortedEles = function (forceRecalc) { if (forceRecalc || !this.cachedZSortedEles) { var eles = this.cy.mutableElements().toArray(); eles.sort(zIndexSort); eles.interactive = eles.filter(function (ele) { return ele.interactive(); }); this.cachedZSortedEles = eles; this.updateCachedGrabbedEles(); } else { eles = this.cachedZSortedEles; } return eles; }; var BRp$5 = {}; [BRp$e, BRp$d, BRp$c, BRp$b, BRp$a, BRp$9, BRp$8, BRp$7, BRp$6].forEach(function (props) { extend(BRp$5, props); }); var BRp$4 = {}; BRp$4.getCachedImage = function (url, crossOrigin, onLoad) { var r = this; var imageCache = r.imageCache = r.imageCache || {}; var cache = imageCache[url]; if (cache) { if (!cache.image.complete) { cache.image.addEventListener('load', onLoad); } return cache.image; } else { cache = imageCache[url] = imageCache[url] || {}; var image = cache.image = new Image(); // eslint-disable-line no-undef image.addEventListener('load', onLoad); image.addEventListener('error', function () { image.error = true; }); // #1582 safari doesn't load data uris with crossOrigin properly // https://bugs.webkit.org/show_bug.cgi?id=123978 var dataUriPrefix = 'data:'; var isDataUri = url.substring(0, dataUriPrefix.length).toLowerCase() === dataUriPrefix; if (!isDataUri) { // if crossorigin is 'null'(stringified), then manually set it to null crossOrigin = crossOrigin === 'null' ? null : crossOrigin; image.crossOrigin = crossOrigin; // prevent tainted canvas } image.src = url; return image; } }; var BRp$3 = {}; /* global document, window, ResizeObserver, MutationObserver */ BRp$3.registerBinding = function (target, event, handler, useCapture) { // eslint-disable-line no-unused-vars var args = Array.prototype.slice.apply(arguments, [1]); // copy var b = this.binder(target); return b.on.apply(b, args); }; BRp$3.binder = function (tgt) { var r = this; var containerWindow = r.cy.window(); var tgtIsDom = tgt === containerWindow || tgt === containerWindow.document || tgt === containerWindow.document.body || domElement(tgt); if (r.supportsPassiveEvents == null) { // from https://github.com/WICG/EventListenerOptions/blob/gh-pages/explainer.md#feature-detection var supportsPassive = false; try { var opts = Object.defineProperty({}, 'passive', { get: function get() { supportsPassive = true; return true; } }); containerWindow.addEventListener('test', null, opts); } catch (err) { // not supported } r.supportsPassiveEvents = supportsPassive; } var on = function on(event, handler, useCapture) { var args = Array.prototype.slice.call(arguments); if (tgtIsDom && r.supportsPassiveEvents) { // replace useCapture w/ opts obj args[2] = { capture: useCapture != null ? useCapture : false, passive: false, once: false }; } r.bindings.push({ target: tgt, args: args }); (tgt.addEventListener || tgt.on).apply(tgt, args); return this; }; return { on: on, addEventListener: on, addListener: on, bind: on }; }; BRp$3.nodeIsDraggable = function (node) { return node && node.isNode() && !node.locked() && node.grabbable(); }; BRp$3.nodeIsGrabbable = function (node) { return this.nodeIsDraggable(node) && node.interactive(); }; BRp$3.load = function () { var r = this; var containerWindow = r.cy.window(); var isSelected = function isSelected(ele) { return ele.selected(); }; var triggerEvents = function triggerEvents(target, names, e, position) { if (target == null) { target = r.cy; } for (var i = 0; i < names.length; i++) { var name = names[i]; target.emit({ originalEvent: e, type: name, position: position }); } }; var isMultSelKeyDown = function isMultSelKeyDown(e) { return e.shiftKey || e.metaKey || e.ctrlKey; // maybe e.altKey }; var allowPanningPassthrough = function allowPanningPassthrough(down, downs) { var allowPassthrough = true; if (r.cy.hasCompoundNodes() && down && down.pannable()) { // a grabbable compound node below the ele => no passthrough panning for (var i = 0; downs && i < downs.length; i++) { var down = downs[i]; //if any parent node in event hierarchy isn't pannable, reject passthrough if (down.isNode() && down.isParent() && !down.pannable()) { allowPassthrough = false; break; } } } else { allowPassthrough = true; } return allowPassthrough; }; var setGrabbed = function setGrabbed(ele) { ele[0]._private.grabbed = true; }; var setFreed = function setFreed(ele) { ele[0]._private.grabbed = false; }; var setInDragLayer = function setInDragLayer(ele) { ele[0]._private.rscratch.inDragLayer = true; }; var setOutDragLayer = function setOutDragLayer(ele) { ele[0]._private.rscratch.inDragLayer = false; }; var setGrabTarget = function setGrabTarget(ele) { ele[0]._private.rscratch.isGrabTarget = true; }; var removeGrabTarget = function removeGrabTarget(ele) { ele[0]._private.rscratch.isGrabTarget = false; }; var addToDragList = function addToDragList(ele, opts) { var list = opts.addToList; var listHasEle = list.has(ele); if (!listHasEle && ele.grabbable() && !ele.locked()) { list.merge(ele); setGrabbed(ele); } }; // helper function to determine which child nodes and inner edges // of a compound node to be dragged as well as the grabbed and selected nodes var addDescendantsToDrag = function addDescendantsToDrag(node, opts) { if (!node.cy().hasCompoundNodes()) { return; } if (opts.inDragLayer == null && opts.addToList == null) { return; } // nothing to do var innerNodes = node.descendants(); if (opts.inDragLayer) { innerNodes.forEach(setInDragLayer); innerNodes.connectedEdges().forEach(setInDragLayer); } if (opts.addToList) { addToDragList(innerNodes, opts); } }; // adds the given nodes and its neighbourhood to the drag layer var addNodesToDrag = function addNodesToDrag(nodes, opts) { opts = opts || {}; var hasCompoundNodes = nodes.cy().hasCompoundNodes(); if (opts.inDragLayer) { nodes.forEach(setInDragLayer); nodes.neighborhood().stdFilter(function (ele) { return !hasCompoundNodes || ele.isEdge(); }).forEach(setInDragLayer); } if (opts.addToList) { nodes.forEach(function (ele) { addToDragList(ele, opts); }); } addDescendantsToDrag(nodes, opts); // always add to drag // also add nodes and edges related to the topmost ancestor updateAncestorsInDragLayer(nodes, { inDragLayer: opts.inDragLayer }); r.updateCachedGrabbedEles(); }; var addNodeToDrag = addNodesToDrag; var freeDraggedElements = function freeDraggedElements(grabbedEles) { if (!grabbedEles) { return; } // just go over all elements rather than doing a bunch of (possibly expensive) traversals r.getCachedZSortedEles().forEach(function (ele) { setFreed(ele); setOutDragLayer(ele); removeGrabTarget(ele); }); r.updateCachedGrabbedEles(); }; // helper function to determine which ancestor nodes and edges should go // to the drag layer (or should be removed from drag layer). var updateAncestorsInDragLayer = function updateAncestorsInDragLayer(node, opts) { if (opts.inDragLayer == null && opts.addToList == null) { return; } // nothing to do if (!node.cy().hasCompoundNodes()) { return; } // find top-level parent var parent = node.ancestors().orphans(); // no parent node: no nodes to add to the drag layer if (parent.same(node)) { return; } var nodes = parent.descendants().spawnSelf().merge(parent).unmerge(node).unmerge(node.descendants()); var edges = nodes.connectedEdges(); if (opts.inDragLayer) { edges.forEach(setInDragLayer); nodes.forEach(setInDragLayer); } if (opts.addToList) { nodes.forEach(function (ele) { addToDragList(ele, opts); }); } }; var blurActiveDomElement = function blurActiveDomElement() { if (document.activeElement != null && document.activeElement.blur != null) { document.activeElement.blur(); } }; var haveMutationsApi = typeof MutationObserver !== 'undefined'; var haveResizeObserverApi = typeof ResizeObserver !== 'undefined'; // watch for when the cy container is removed from the dom if (haveMutationsApi) { r.removeObserver = new MutationObserver(function (mutns) { // eslint-disable-line no-undef for (var i = 0; i < mutns.length; i++) { var mutn = mutns[i]; var rNodes = mutn.removedNodes; if (rNodes) { for (var j = 0; j < rNodes.length; j++) { var rNode = rNodes[j]; if (rNode === r.container) { r.destroy(); break; } } } } }); if (r.container.parentNode) { r.removeObserver.observe(r.container.parentNode, { childList: true }); } } else { r.registerBinding(r.container, 'DOMNodeRemoved', function (e) { // eslint-disable-line no-unused-vars r.destroy(); }); } var onResize = debounce_1(function () { r.cy.resize(); }, 100); if (haveMutationsApi) { r.styleObserver = new MutationObserver(onResize); // eslint-disable-line no-undef r.styleObserver.observe(r.container, { attributes: true }); } // auto resize r.registerBinding(containerWindow, 'resize', onResize); // eslint-disable-line no-undef if (haveResizeObserverApi) { r.resizeObserver = new ResizeObserver(onResize); // eslint-disable-line no-undef r.resizeObserver.observe(r.container); } var forEachUp = function forEachUp(domEle, fn) { while (domEle != null) { fn(domEle); domEle = domEle.parentNode; } }; var invalidateCoords = function invalidateCoords() { r.invalidateContainerClientCoordsCache(); }; forEachUp(r.container, function (domEle) { r.registerBinding(domEle, 'transitionend', invalidateCoords); r.registerBinding(domEle, 'animationend', invalidateCoords); r.registerBinding(domEle, 'scroll', invalidateCoords); }); // stop right click menu from appearing on cy r.registerBinding(r.container, 'contextmenu', function (e) { e.preventDefault(); }); var inBoxSelection = function inBoxSelection() { return r.selection[4] !== 0; }; var eventInContainer = function eventInContainer(e) { // save cycles if mouse events aren't to be captured var containerPageCoords = r.findContainerClientCoords(); var x = containerPageCoords[0]; var y = containerPageCoords[1]; var width = containerPageCoords[2]; var height = containerPageCoords[3]; var positions = e.touches ? e.touches : [e]; var atLeastOnePosInside = false; for (var i = 0; i < positions.length; i++) { var p = positions[i]; if (x <= p.clientX && p.clientX <= x + width && y <= p.clientY && p.clientY <= y + height) { atLeastOnePosInside = true; break; } } if (!atLeastOnePosInside) { return false; } var container = r.container; var target = e.target; var tParent = target.parentNode; var containerIsTarget = false; while (tParent) { if (tParent === container) { containerIsTarget = true; break; } tParent = tParent.parentNode; } if (!containerIsTarget) { return false; } // if target is outisde cy container, then this event is not for us return true; }; // Primary key r.registerBinding(r.container, 'mousedown', function mousedownHandler(e) { if (!eventInContainer(e)) { return; } e.preventDefault(); blurActiveDomElement(); r.hoverData.capture = true; r.hoverData.which = e.which; var cy = r.cy; var gpos = [e.clientX, e.clientY]; var pos = r.projectIntoViewport(gpos[0], gpos[1]); var select = r.selection; var nears = r.findNearestElements(pos[0], pos[1], true, false); var near = nears[0]; var draggedElements = r.dragData.possibleDragElements; r.hoverData.mdownPos = pos; r.hoverData.mdownGPos = gpos; var checkForTaphold = function checkForTaphold() { r.hoverData.tapholdCancelled = false; clearTimeout(r.hoverData.tapholdTimeout); r.hoverData.tapholdTimeout = setTimeout(function () { if (r.hoverData.tapholdCancelled) { return; } else { var ele = r.hoverData.down; if (ele) { ele.emit({ originalEvent: e, type: 'taphold', position: { x: pos[0], y: pos[1] } }); } else { cy.emit({ originalEvent: e, type: 'taphold', position: { x: pos[0], y: pos[1] } }); } } }, r.tapholdDuration); }; // Right click button if (e.which == 3) { r.hoverData.cxtStarted = true; var cxtEvt = { originalEvent: e, type: 'cxttapstart', position: { x: pos[0], y: pos[1] } }; if (near) { near.activate(); near.emit(cxtEvt); r.hoverData.down = near; } else { cy.emit(cxtEvt); } r.hoverData.downTime = new Date().getTime(); r.hoverData.cxtDragged = false; // Primary button } else if (e.which == 1) { if (near) { near.activate(); } // Element dragging { // If something is under the cursor and it is draggable, prepare to grab it if (near != null) { if (r.nodeIsGrabbable(near)) { var makeEvent = function makeEvent(type) { return { originalEvent: e, type: type, position: { x: pos[0], y: pos[1] } }; }; var triggerGrab = function triggerGrab(ele) { ele.emit(makeEvent('grab')); }; setGrabTarget(near); if (!near.selected()) { draggedElements = r.dragData.possibleDragElements = cy.collection(); addNodeToDrag(near, { addToList: draggedElements }); near.emit(makeEvent('grabon')).emit(makeEvent('grab')); } else { draggedElements = r.dragData.possibleDragElements = cy.collection(); var selectedNodes = cy.$(function (ele) { return ele.isNode() && ele.selected() && r.nodeIsGrabbable(ele); }); addNodesToDrag(selectedNodes, { addToList: draggedElements }); near.emit(makeEvent('grabon')); selectedNodes.forEach(triggerGrab); } r.redrawHint('eles', true); r.redrawHint('drag', true); } } r.hoverData.down = near; r.hoverData.downs = nears; r.hoverData.downTime = new Date().getTime(); } triggerEvents(near, ['mousedown', 'tapstart', 'vmousedown'], e, { x: pos[0], y: pos[1] }); if (near == null) { select[4] = 1; r.data.bgActivePosistion = { x: pos[0], y: pos[1] }; r.redrawHint('select', true); r.redraw(); } else if (near.pannable()) { select[4] = 1; // for future pan } checkForTaphold(); } // Initialize selection box coordinates select[0] = select[2] = pos[0]; select[1] = select[3] = pos[1]; }, false); r.registerBinding(containerWindow, 'mousemove', function mousemoveHandler(e) { // eslint-disable-line no-undef var capture = r.hoverData.capture; if (!capture && !eventInContainer(e)) { return; } var preventDefault = false; var cy = r.cy; var zoom = cy.zoom(); var gpos = [e.clientX, e.clientY]; var pos = r.projectIntoViewport(gpos[0], gpos[1]); var mdownPos = r.hoverData.mdownPos; var mdownGPos = r.hoverData.mdownGPos; var select = r.selection; var near = null; if (!r.hoverData.draggingEles && !r.hoverData.dragging && !r.hoverData.selecting) { near = r.findNearestElement(pos[0], pos[1], true, false); } var last = r.hoverData.last; var down = r.hoverData.down; var disp = [pos[0] - select[2], pos[1] - select[3]]; var draggedElements = r.dragData.possibleDragElements; var isOverThresholdDrag; if (mdownGPos) { var dx = gpos[0] - mdownGPos[0]; var dx2 = dx * dx; var dy = gpos[1] - mdownGPos[1]; var dy2 = dy * dy; var dist2 = dx2 + dy2; r.hoverData.isOverThresholdDrag = isOverThresholdDrag = dist2 >= r.desktopTapThreshold2; } var multSelKeyDown = isMultSelKeyDown(e); if (isOverThresholdDrag) { r.hoverData.tapholdCancelled = true; } var updateDragDelta = function updateDragDelta() { var dragDelta = r.hoverData.dragDelta = r.hoverData.dragDelta || []; if (dragDelta.length === 0) { dragDelta.push(disp[0]); dragDelta.push(disp[1]); } else { dragDelta[0] += disp[0]; dragDelta[1] += disp[1]; } }; preventDefault = true; triggerEvents(near, ['mousemove', 'vmousemove', 'tapdrag'], e, { x: pos[0], y: pos[1] }); var goIntoBoxMode = function goIntoBoxMode() { r.data.bgActivePosistion = undefined; if (!r.hoverData.selecting) { cy.emit({ originalEvent: e, type: 'boxstart', position: { x: pos[0], y: pos[1] } }); } select[4] = 1; r.hoverData.selecting = true; r.redrawHint('select', true); r.redraw(); }; // trigger context drag if rmouse down if (r.hoverData.which === 3) { // but only if over threshold if (isOverThresholdDrag) { var cxtEvt = { originalEvent: e, type: 'cxtdrag', position: { x: pos[0], y: pos[1] } }; if (down) { down.emit(cxtEvt); } else { cy.emit(cxtEvt); } r.hoverData.cxtDragged = true; if (!r.hoverData.cxtOver || near !== r.hoverData.cxtOver) { if (r.hoverData.cxtOver) { r.hoverData.cxtOver.emit({ originalEvent: e, type: 'cxtdragout', position: { x: pos[0], y: pos[1] } }); } r.hoverData.cxtOver = near; if (near) { near.emit({ originalEvent: e, type: 'cxtdragover', position: { x: pos[0], y: pos[1] } }); } } } // Check if we are drag panning the entire graph } else if (r.hoverData.dragging) { preventDefault = true; if (cy.panningEnabled() && cy.userPanningEnabled()) { var deltaP; if (r.hoverData.justStartedPan) { var mdPos = r.hoverData.mdownPos; deltaP = { x: (pos[0] - mdPos[0]) * zoom, y: (pos[1] - mdPos[1]) * zoom }; r.hoverData.justStartedPan = false; } else { deltaP = { x: disp[0] * zoom, y: disp[1] * zoom }; } cy.panBy(deltaP); cy.emit('dragpan'); r.hoverData.dragged = true; } // Needs reproject due to pan changing viewport pos = r.projectIntoViewport(e.clientX, e.clientY); // Checks primary button down & out of time & mouse not moved much } else if (select[4] == 1 && (down == null || down.pannable())) { if (isOverThresholdDrag) { if (!r.hoverData.dragging && cy.boxSelectionEnabled() && (multSelKeyDown || !cy.panningEnabled() || !cy.userPanningEnabled())) { goIntoBoxMode(); } else if (!r.hoverData.selecting && cy.panningEnabled() && cy.userPanningEnabled()) { var allowPassthrough = allowPanningPassthrough(down, r.hoverData.downs); if (allowPassthrough) { r.hoverData.dragging = true; r.hoverData.justStartedPan = true; select[4] = 0; r.data.bgActivePosistion = array2point(mdownPos); r.redrawHint('select', true); r.redraw(); } } if (down && down.pannable() && down.active()) { down.unactivate(); } } } else { if (down && down.pannable() && down.active()) { down.unactivate(); } if ((!down || !down.grabbed()) && near != last) { if (last) { triggerEvents(last, ['mouseout', 'tapdragout'], e, { x: pos[0], y: pos[1] }); } if (near) { triggerEvents(near, ['mouseover', 'tapdragover'], e, { x: pos[0], y: pos[1] }); } r.hoverData.last = near; } if (down) { if (isOverThresholdDrag) { // then we can take action if (cy.boxSelectionEnabled() && multSelKeyDown) { // then selection overrides if (down && down.grabbed()) { freeDraggedElements(draggedElements); down.emit('freeon'); draggedElements.emit('free'); if (r.dragData.didDrag) { down.emit('dragfreeon'); draggedElements.emit('dragfree'); } } goIntoBoxMode(); } else if (down && down.grabbed() && r.nodeIsDraggable(down)) { // drag node var justStartedDrag = !r.dragData.didDrag; if (justStartedDrag) { r.redrawHint('eles', true); } r.dragData.didDrag = true; // indicate that we actually did drag the node // now, add the elements to the drag layer if not done already if (!r.hoverData.draggingEles) { addNodesToDrag(draggedElements, { inDragLayer: true }); } var totalShift = { x: 0, y: 0 }; if (number$1(disp[0]) && number$1(disp[1])) { totalShift.x += disp[0]; totalShift.y += disp[1]; if (justStartedDrag) { var dragDelta = r.hoverData.dragDelta; if (dragDelta && number$1(dragDelta[0]) && number$1(dragDelta[1])) { totalShift.x += dragDelta[0]; totalShift.y += dragDelta[1]; } } } r.hoverData.draggingEles = true; draggedElements.silentShift(totalShift).emit('position drag'); r.redrawHint('drag', true); r.redraw(); } } else { // otherwise save drag delta for when we actually start dragging so the relative grab pos is constant updateDragDelta(); } } // prevent the dragging from triggering text selection on the page preventDefault = true; } select[2] = pos[0]; select[3] = pos[1]; if (preventDefault) { if (e.stopPropagation) e.stopPropagation(); if (e.preventDefault) e.preventDefault(); return false; } }, false); var clickTimeout, didDoubleClick, prevClickTimeStamp; r.registerBinding(containerWindow, 'mouseup', function mouseupHandler(e) { // eslint-disable-line no-undef var capture = r.hoverData.capture; if (!capture) { return; } r.hoverData.capture = false; var cy = r.cy; var pos = r.projectIntoViewport(e.clientX, e.clientY); var select = r.selection; var near = r.findNearestElement(pos[0], pos[1], true, false); var draggedElements = r.dragData.possibleDragElements; var down = r.hoverData.down; var multSelKeyDown = isMultSelKeyDown(e); if (r.data.bgActivePosistion) { r.redrawHint('select', true); r.redraw(); } r.hoverData.tapholdCancelled = true; r.data.bgActivePosistion = undefined; // not active bg now if (down) { down.unactivate(); } if (r.hoverData.which === 3) { var cxtEvt = { originalEvent: e, type: 'cxttapend', position: { x: pos[0], y: pos[1] } }; if (down) { down.emit(cxtEvt); } else { cy.emit(cxtEvt); } if (!r.hoverData.cxtDragged) { var cxtTap = { originalEvent: e, type: 'cxttap', position: { x: pos[0], y: pos[1] } }; if (down) { down.emit(cxtTap); } else { cy.emit(cxtTap); } } r.hoverData.cxtDragged = false; r.hoverData.which = null; } else if (r.hoverData.which === 1) { triggerEvents(near, ['mouseup', 'tapend', 'vmouseup'], e, { x: pos[0], y: pos[1] }); if (!r.dragData.didDrag && // didn't move a node around !r.hoverData.dragged && // didn't pan !r.hoverData.selecting && // not box selection !r.hoverData.isOverThresholdDrag // didn't move too much ) { triggerEvents(down, ["click", "tap", "vclick"], e, { x: pos[0], y: pos[1] }); didDoubleClick = false; if (e.timeStamp - prevClickTimeStamp <= cy.multiClickDebounceTime()) { clickTimeout && clearTimeout(clickTimeout); didDoubleClick = true; prevClickTimeStamp = null; triggerEvents(down, ["dblclick", "dbltap", "vdblclick"], e, { x: pos[0], y: pos[1] }); } else { clickTimeout = setTimeout(function () { if (didDoubleClick) return; triggerEvents(down, ["oneclick", "onetap", "voneclick"], e, { x: pos[0], y: pos[1] }); }, cy.multiClickDebounceTime()); prevClickTimeStamp = e.timeStamp; } } // Deselect all elements if nothing is currently under the mouse cursor and we aren't dragging something if (down == null // not mousedown on node && !r.dragData.didDrag // didn't move the node around && !r.hoverData.selecting // not box selection && !r.hoverData.dragged // didn't pan && !isMultSelKeyDown(e)) { cy.$(isSelected).unselect(['tapunselect']); if (draggedElements.length > 0) { r.redrawHint('eles', true); } r.dragData.possibleDragElements = draggedElements = cy.collection(); } // Single selection if (near == down && !r.dragData.didDrag && !r.hoverData.selecting) { if (near != null && near._private.selectable) { if (r.hoverData.dragging) ; else if (cy.selectionType() === 'additive' || multSelKeyDown) { if (near.selected()) { near.unselect(['tapunselect']); } else { near.select(['tapselect']); } } else { if (!multSelKeyDown) { cy.$(isSelected).unmerge(near).unselect(['tapunselect']); near.select(['tapselect']); } } r.redrawHint('eles', true); } } if (r.hoverData.selecting) { var box = cy.collection(r.getAllInBox(select[0], select[1], select[2], select[3])); r.redrawHint('select', true); if (box.length > 0) { r.redrawHint('eles', true); } cy.emit({ type: 'boxend', originalEvent: e, position: { x: pos[0], y: pos[1] } }); var eleWouldBeSelected = function eleWouldBeSelected(ele) { return ele.selectable() && !ele.selected(); }; if (cy.selectionType() === 'additive') { box.emit('box').stdFilter(eleWouldBeSelected).select().emit('boxselect'); } else { if (!multSelKeyDown) { cy.$(isSelected).unmerge(box).unselect(); } box.emit('box').stdFilter(eleWouldBeSelected).select().emit('boxselect'); } // always need redraw in case eles unselectable r.redraw(); } // Cancel drag pan if (r.hoverData.dragging) { r.hoverData.dragging = false; r.redrawHint('select', true); r.redrawHint('eles', true); r.redraw(); } if (!select[4]) { r.redrawHint('drag', true); r.redrawHint('eles', true); var downWasGrabbed = down && down.grabbed(); freeDraggedElements(draggedElements); if (downWasGrabbed) { down.emit('freeon'); draggedElements.emit('free'); if (r.dragData.didDrag) { down.emit('dragfreeon'); draggedElements.emit('dragfree'); } } } } // else not right mouse select[4] = 0; r.hoverData.down = null; r.hoverData.cxtStarted = false; r.hoverData.draggingEles = false; r.hoverData.selecting = false; r.hoverData.isOverThresholdDrag = false; r.dragData.didDrag = false; r.hoverData.dragged = false; r.hoverData.dragDelta = []; r.hoverData.mdownPos = null; r.hoverData.mdownGPos = null; }, false); var wheelHandler = function wheelHandler(e) { if (r.scrollingPage) { return; } // while scrolling, ignore wheel-to-zoom var cy = r.cy; var zoom = cy.zoom(); var pan = cy.pan(); var pos = r.projectIntoViewport(e.clientX, e.clientY); var rpos = [pos[0] * zoom + pan.x, pos[1] * zoom + pan.y]; if (r.hoverData.draggingEles || r.hoverData.dragging || r.hoverData.cxtStarted || inBoxSelection()) { // if pan dragging or cxt dragging, wheel movements make no zoom e.preventDefault(); return; } if (cy.panningEnabled() && cy.userPanningEnabled() && cy.zoomingEnabled() && cy.userZoomingEnabled()) { e.preventDefault(); r.data.wheelZooming = true; clearTimeout(r.data.wheelTimeout); r.data.wheelTimeout = setTimeout(function () { r.data.wheelZooming = false; r.redrawHint('eles', true); r.redraw(); }, 150); var diff; if (e.deltaY != null) { diff = e.deltaY / -250; } else if (e.wheelDeltaY != null) { diff = e.wheelDeltaY / 1000; } else { diff = e.wheelDelta / 1000; } diff = diff * r.wheelSensitivity; var needsWheelFix = e.deltaMode === 1; if (needsWheelFix) { // fixes slow wheel events on ff/linux and ff/windows diff *= 33; } var newZoom = cy.zoom() * Math.pow(10, diff); if (e.type === 'gesturechange') { newZoom = r.gestureStartZoom * e.scale; } cy.zoom({ level: newZoom, renderedPosition: { x: rpos[0], y: rpos[1] } }); cy.emit(e.type === 'gesturechange' ? 'pinchzoom' : 'scrollzoom'); } }; // Functions to help with whether mouse wheel should trigger zooming // -- r.registerBinding(r.container, 'wheel', wheelHandler, true); // disable nonstandard wheel events // r.registerBinding(r.container, 'mousewheel', wheelHandler, true); // r.registerBinding(r.container, 'DOMMouseScroll', wheelHandler, true); // r.registerBinding(r.container, 'MozMousePixelScroll', wheelHandler, true); // older firefox r.registerBinding(containerWindow, 'scroll', function scrollHandler(e) { // eslint-disable-line no-unused-vars r.scrollingPage = true; clearTimeout(r.scrollingPageTimeout); r.scrollingPageTimeout = setTimeout(function () { r.scrollingPage = false; }, 250); }, true); // desktop safari pinch to zoom start r.registerBinding(r.container, 'gesturestart', function gestureStartHandler(e) { r.gestureStartZoom = r.cy.zoom(); if (!r.hasTouchStarted) { // don't affect touch devices like iphone e.preventDefault(); } }, true); r.registerBinding(r.container, 'gesturechange', function (e) { if (!r.hasTouchStarted) { // don't affect touch devices like iphone wheelHandler(e); } }, true); // Functions to help with handling mouseout/mouseover on the Cytoscape container // Handle mouseout on Cytoscape container r.registerBinding(r.container, 'mouseout', function mouseOutHandler(e) { var pos = r.projectIntoViewport(e.clientX, e.clientY); r.cy.emit({ originalEvent: e, type: 'mouseout', position: { x: pos[0], y: pos[1] } }); }, false); r.registerBinding(r.container, 'mouseover', function mouseOverHandler(e) { var pos = r.projectIntoViewport(e.clientX, e.clientY); r.cy.emit({ originalEvent: e, type: 'mouseover', position: { x: pos[0], y: pos[1] } }); }, false); var f1x1, f1y1, f2x1, f2y1; // starting points for pinch-to-zoom var distance1, distance1Sq; // initial distance between finger 1 and finger 2 for pinch-to-zoom var center1, modelCenter1; // center point on start pinch to zoom var offsetLeft, offsetTop; var containerWidth, containerHeight; var twoFingersStartInside; var distance = function distance(x1, y1, x2, y2) { return Math.sqrt((x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1)); }; var distanceSq = function distanceSq(x1, y1, x2, y2) { return (x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1); }; var touchstartHandler; r.registerBinding(r.container, 'touchstart', touchstartHandler = function touchstartHandler(e) { r.hasTouchStarted = true; if (!eventInContainer(e)) { return; } blurActiveDomElement(); r.touchData.capture = true; r.data.bgActivePosistion = undefined; var cy = r.cy; var now = r.touchData.now; var earlier = r.touchData.earlier; if (e.touches[0]) { var pos = r.projectIntoViewport(e.touches[0].clientX, e.touches[0].clientY); now[0] = pos[0]; now[1] = pos[1]; } if (e.touches[1]) { var pos = r.projectIntoViewport(e.touches[1].clientX, e.touches[1].clientY); now[2] = pos[0]; now[3] = pos[1]; } if (e.touches[2]) { var pos = r.projectIntoViewport(e.touches[2].clientX, e.touches[2].clientY); now[4] = pos[0]; now[5] = pos[1]; } // record starting points for pinch-to-zoom if (e.touches[1]) { r.touchData.singleTouchMoved = true; freeDraggedElements(r.dragData.touchDragEles); var offsets = r.findContainerClientCoords(); offsetLeft = offsets[0]; offsetTop = offsets[1]; containerWidth = offsets[2]; containerHeight = offsets[3]; f1x1 = e.touches[0].clientX - offsetLeft; f1y1 = e.touches[0].clientY - offsetTop; f2x1 = e.touches[1].clientX - offsetLeft; f2y1 = e.touches[1].clientY - offsetTop; twoFingersStartInside = 0 <= f1x1 && f1x1 <= containerWidth && 0 <= f2x1 && f2x1 <= containerWidth && 0 <= f1y1 && f1y1 <= containerHeight && 0 <= f2y1 && f2y1 <= containerHeight; var pan = cy.pan(); var zoom = cy.zoom(); distance1 = distance(f1x1, f1y1, f2x1, f2y1); distance1Sq = distanceSq(f1x1, f1y1, f2x1, f2y1); center1 = [(f1x1 + f2x1) / 2, (f1y1 + f2y1) / 2]; modelCenter1 = [(center1[0] - pan.x) / zoom, (center1[1] - pan.y) / zoom]; // consider context tap var cxtDistThreshold = 200; var cxtDistThresholdSq = cxtDistThreshold * cxtDistThreshold; if (distance1Sq < cxtDistThresholdSq && !e.touches[2]) { var near1 = r.findNearestElement(now[0], now[1], true, true); var near2 = r.findNearestElement(now[2], now[3], true, true); if (near1 && near1.isNode()) { near1.activate().emit({ originalEvent: e, type: 'cxttapstart', position: { x: now[0], y: now[1] } }); r.touchData.start = near1; } else if (near2 && near2.isNode()) { near2.activate().emit({ originalEvent: e, type: 'cxttapstart', position: { x: now[0], y: now[1] } }); r.touchData.start = near2; } else { cy.emit({ originalEvent: e, type: 'cxttapstart', position: { x: now[0], y: now[1] } }); } if (r.touchData.start) { r.touchData.start._private.grabbed = false; } r.touchData.cxt = true; r.touchData.cxtDragged = false; r.data.bgActivePosistion = undefined; r.redraw(); return; } } if (e.touches[2]) { // ignore // safari on ios pans the page otherwise (normally you should be able to preventdefault on touchmove...) if (cy.boxSelectionEnabled()) { e.preventDefault(); } } else if (e.touches[1]) ; else if (e.touches[0]) { var nears = r.findNearestElements(now[0], now[1], true, true); var near = nears[0]; if (near != null) { near.activate(); r.touchData.start = near; r.touchData.starts = nears; if (r.nodeIsGrabbable(near)) { var draggedEles = r.dragData.touchDragEles = cy.collection(); var selectedNodes = null; r.redrawHint('eles', true); r.redrawHint('drag', true); if (near.selected()) { // reset drag elements, since near will be added again selectedNodes = cy.$(function (ele) { return ele.selected() && r.nodeIsGrabbable(ele); }); addNodesToDrag(selectedNodes, { addToList: draggedEles }); } else { addNodeToDrag(near, { addToList: draggedEles }); } setGrabTarget(near); var makeEvent = function makeEvent(type) { return { originalEvent: e, type: type, position: { x: now[0], y: now[1] } }; }; near.emit(makeEvent('grabon')); if (selectedNodes) { selectedNodes.forEach(function (n) { n.emit(makeEvent('grab')); }); } else { near.emit(makeEvent('grab')); } } } triggerEvents(near, ['touchstart', 'tapstart', 'vmousedown'], e, { x: now[0], y: now[1] }); if (near == null) { r.data.bgActivePosistion = { x: pos[0], y: pos[1] }; r.redrawHint('select', true); r.redraw(); } // Tap, taphold // ----- r.touchData.singleTouchMoved = false; r.touchData.singleTouchStartTime = +new Date(); clearTimeout(r.touchData.tapholdTimeout); r.touchData.tapholdTimeout = setTimeout(function () { if (r.touchData.singleTouchMoved === false && !r.pinching // if pinching, then taphold unselect shouldn't take effect && !r.touchData.selecting // box selection shouldn't allow taphold through ) { triggerEvents(r.touchData.start, ['taphold'], e, { x: now[0], y: now[1] }); } }, r.tapholdDuration); } if (e.touches.length >= 1) { var sPos = r.touchData.startPosition = [null, null, null, null, null, null]; for (var i = 0; i < now.length; i++) { sPos[i] = earlier[i] = now[i]; } var touch0 = e.touches[0]; r.touchData.startGPosition = [touch0.clientX, touch0.clientY]; } }, false); var touchmoveHandler; r.registerBinding(window, 'touchmove', touchmoveHandler = function touchmoveHandler(e) { // eslint-disable-line no-undef var capture = r.touchData.capture; if (!capture && !eventInContainer(e)) { return; } var select = r.selection; var cy = r.cy; var now = r.touchData.now; var earlier = r.touchData.earlier; var zoom = cy.zoom(); if (e.touches[0]) { var pos = r.projectIntoViewport(e.touches[0].clientX, e.touches[0].clientY); now[0] = pos[0]; now[1] = pos[1]; } if (e.touches[1]) { var pos = r.projectIntoViewport(e.touches[1].clientX, e.touches[1].clientY); now[2] = pos[0]; now[3] = pos[1]; } if (e.touches[2]) { var pos = r.projectIntoViewport(e.touches[2].clientX, e.touches[2].clientY); now[4] = pos[0]; now[5] = pos[1]; } var startGPos = r.touchData.startGPosition; var isOverThresholdDrag; if (capture && e.touches[0] && startGPos) { var disp = []; for (var j = 0; j < now.length; j++) { disp[j] = now[j] - earlier[j]; } var dx = e.touches[0].clientX - startGPos[0]; var dx2 = dx * dx; var dy = e.touches[0].clientY - startGPos[1]; var dy2 = dy * dy; var dist2 = dx2 + dy2; isOverThresholdDrag = dist2 >= r.touchTapThreshold2; } // context swipe cancelling if (capture && r.touchData.cxt) { e.preventDefault(); var f1x2 = e.touches[0].clientX - offsetLeft, f1y2 = e.touches[0].clientY - offsetTop; var f2x2 = e.touches[1].clientX - offsetLeft, f2y2 = e.touches[1].clientY - offsetTop; // var distance2 = distance( f1x2, f1y2, f2x2, f2y2 ); var distance2Sq = distanceSq(f1x2, f1y2, f2x2, f2y2); var factorSq = distance2Sq / distance1Sq; var distThreshold = 150; var distThresholdSq = distThreshold * distThreshold; var factorThreshold = 1.5; var factorThresholdSq = factorThreshold * factorThreshold; // cancel ctx gestures if the distance b/t the fingers increases if (factorSq >= factorThresholdSq || distance2Sq >= distThresholdSq) { r.touchData.cxt = false; r.data.bgActivePosistion = undefined; r.redrawHint('select', true); var cxtEvt = { originalEvent: e, type: 'cxttapend', position: { x: now[0], y: now[1] } }; if (r.touchData.start) { r.touchData.start.unactivate().emit(cxtEvt); r.touchData.start = null; } else { cy.emit(cxtEvt); } } } // context swipe if (capture && r.touchData.cxt) { var cxtEvt = { originalEvent: e, type: 'cxtdrag', position: { x: now[0], y: now[1] } }; r.data.bgActivePosistion = undefined; r.redrawHint('select', true); if (r.touchData.start) { r.touchData.start.emit(cxtEvt); } else { cy.emit(cxtEvt); } if (r.touchData.start) { r.touchData.start._private.grabbed = false; } r.touchData.cxtDragged = true; var near = r.findNearestElement(now[0], now[1], true, true); if (!r.touchData.cxtOver || near !== r.touchData.cxtOver) { if (r.touchData.cxtOver) { r.touchData.cxtOver.emit({ originalEvent: e, type: 'cxtdragout', position: { x: now[0], y: now[1] } }); } r.touchData.cxtOver = near; if (near) { near.emit({ originalEvent: e, type: 'cxtdragover', position: { x: now[0], y: now[1] } }); } } // box selection } else if (capture && e.touches[2] && cy.boxSelectionEnabled()) { e.preventDefault(); r.data.bgActivePosistion = undefined; this.lastThreeTouch = +new Date(); if (!r.touchData.selecting) { cy.emit({ originalEvent: e, type: 'boxstart', position: { x: now[0], y: now[1] } }); } r.touchData.selecting = true; r.touchData.didSelect = true; select[4] = 1; if (!select || select.length === 0 || select[0] === undefined) { select[0] = (now[0] + now[2] + now[4]) / 3; select[1] = (now[1] + now[3] + now[5]) / 3; select[2] = (now[0] + now[2] + now[4]) / 3 + 1; select[3] = (now[1] + now[3] + now[5]) / 3 + 1; } else { select[2] = (now[0] + now[2] + now[4]) / 3; select[3] = (now[1] + now[3] + now[5]) / 3; } r.redrawHint('select', true); r.redraw(); // pinch to zoom } else if (capture && e.touches[1] && !r.touchData.didSelect // don't allow box selection to degrade to pinch-to-zoom && cy.zoomingEnabled() && cy.panningEnabled() && cy.userZoomingEnabled() && cy.userPanningEnabled()) { // two fingers => pinch to zoom e.preventDefault(); r.data.bgActivePosistion = undefined; r.redrawHint('select', true); var draggedEles = r.dragData.touchDragEles; if (draggedEles) { r.redrawHint('drag', true); for (var i = 0; i < draggedEles.length; i++) { var de_p = draggedEles[i]._private; de_p.grabbed = false; de_p.rscratch.inDragLayer = false; } } var _start = r.touchData.start; // (x2, y2) for fingers 1 and 2 var f1x2 = e.touches[0].clientX - offsetLeft, f1y2 = e.touches[0].clientY - offsetTop; var f2x2 = e.touches[1].clientX - offsetLeft, f2y2 = e.touches[1].clientY - offsetTop; var distance2 = distance(f1x2, f1y2, f2x2, f2y2); // var distance2Sq = distanceSq( f1x2, f1y2, f2x2, f2y2 ); // var factor = Math.sqrt( distance2Sq ) / Math.sqrt( distance1Sq ); var factor = distance2 / distance1; if (twoFingersStartInside) { // delta finger1 var df1x = f1x2 - f1x1; var df1y = f1y2 - f1y1; // delta finger 2 var df2x = f2x2 - f2x1; var df2y = f2y2 - f2y1; // translation is the normalised vector of the two fingers movement // i.e. so pinching cancels out and moving together pans var tx = (df1x + df2x) / 2; var ty = (df1y + df2y) / 2; // now calculate the zoom var zoom1 = cy.zoom(); var zoom2 = zoom1 * factor; var pan1 = cy.pan(); // the model center point converted to the current rendered pos var ctrx = modelCenter1[0] * zoom1 + pan1.x; var ctry = modelCenter1[1] * zoom1 + pan1.y; var pan2 = { x: -zoom2 / zoom1 * (ctrx - pan1.x - tx) + ctrx, y: -zoom2 / zoom1 * (ctry - pan1.y - ty) + ctry }; // remove dragged eles if (_start && _start.active()) { var draggedEles = r.dragData.touchDragEles; freeDraggedElements(draggedEles); r.redrawHint('drag', true); r.redrawHint('eles', true); _start.unactivate().emit('freeon'); draggedEles.emit('free'); if (r.dragData.didDrag) { _start.emit('dragfreeon'); draggedEles.emit('dragfree'); } } cy.viewport({ zoom: zoom2, pan: pan2, cancelOnFailedZoom: true }); cy.emit('pinchzoom'); distance1 = distance2; f1x1 = f1x2; f1y1 = f1y2; f2x1 = f2x2; f2y1 = f2y2; r.pinching = true; } // Re-project if (e.touches[0]) { var pos = r.projectIntoViewport(e.touches[0].clientX, e.touches[0].clientY); now[0] = pos[0]; now[1] = pos[1]; } if (e.touches[1]) { var pos = r.projectIntoViewport(e.touches[1].clientX, e.touches[1].clientY); now[2] = pos[0]; now[3] = pos[1]; } if (e.touches[2]) { var pos = r.projectIntoViewport(e.touches[2].clientX, e.touches[2].clientY); now[4] = pos[0]; now[5] = pos[1]; } } else if (e.touches[0] && !r.touchData.didSelect // don't allow box selection to degrade to single finger events like panning ) { var start = r.touchData.start; var last = r.touchData.last; var near; if (!r.hoverData.draggingEles && !r.swipePanning) { near = r.findNearestElement(now[0], now[1], true, true); } if (capture && start != null) { e.preventDefault(); } // dragging nodes if (capture && start != null && r.nodeIsDraggable(start)) { if (isOverThresholdDrag) { // then dragging can happen var draggedEles = r.dragData.touchDragEles; var justStartedDrag = !r.dragData.didDrag; if (justStartedDrag) { addNodesToDrag(draggedEles, { inDragLayer: true }); } r.dragData.didDrag = true; var totalShift = { x: 0, y: 0 }; if (number$1(disp[0]) && number$1(disp[1])) { totalShift.x += disp[0]; totalShift.y += disp[1]; if (justStartedDrag) { r.redrawHint('eles', true); var dragDelta = r.touchData.dragDelta; if (dragDelta && number$1(dragDelta[0]) && number$1(dragDelta[1])) { totalShift.x += dragDelta[0]; totalShift.y += dragDelta[1]; } } } r.hoverData.draggingEles = true; draggedEles.silentShift(totalShift).emit('position drag'); r.redrawHint('drag', true); if (r.touchData.startPosition[0] == earlier[0] && r.touchData.startPosition[1] == earlier[1]) { r.redrawHint('eles', true); } r.redraw(); } else { // otherwise keep track of drag delta for later var dragDelta = r.touchData.dragDelta = r.touchData.dragDelta || []; if (dragDelta.length === 0) { dragDelta.push(disp[0]); dragDelta.push(disp[1]); } else { dragDelta[0] += disp[0]; dragDelta[1] += disp[1]; } } } // touchmove { triggerEvents(start || near, ['touchmove', 'tapdrag', 'vmousemove'], e, { x: now[0], y: now[1] }); if ((!start || !start.grabbed()) && near != last) { if (last) { last.emit({ originalEvent: e, type: 'tapdragout', position: { x: now[0], y: now[1] } }); } if (near) { near.emit({ originalEvent: e, type: 'tapdragover', position: { x: now[0], y: now[1] } }); } } r.touchData.last = near; } // check to cancel taphold if (capture) { for (var i = 0; i < now.length; i++) { if (now[i] && r.touchData.startPosition[i] && isOverThresholdDrag) { r.touchData.singleTouchMoved = true; } } } // panning if (capture && (start == null || start.pannable()) && cy.panningEnabled() && cy.userPanningEnabled()) { var allowPassthrough = allowPanningPassthrough(start, r.touchData.starts); if (allowPassthrough) { e.preventDefault(); if (!r.data.bgActivePosistion) { r.data.bgActivePosistion = array2point(r.touchData.startPosition); } if (r.swipePanning) { cy.panBy({ x: disp[0] * zoom, y: disp[1] * zoom }); cy.emit('dragpan'); } else if (isOverThresholdDrag) { r.swipePanning = true; cy.panBy({ x: dx * zoom, y: dy * zoom }); cy.emit('dragpan'); if (start) { start.unactivate(); r.redrawHint('select', true); r.touchData.start = null; } } } // Re-project var pos = r.projectIntoViewport(e.touches[0].clientX, e.touches[0].clientY); now[0] = pos[0]; now[1] = pos[1]; } } for (var j = 0; j < now.length; j++) { earlier[j] = now[j]; } // the active bg indicator should be removed when making a swipe that is neither for dragging nodes or panning if (capture && e.touches.length > 0 && !r.hoverData.draggingEles && !r.swipePanning && r.data.bgActivePosistion != null) { r.data.bgActivePosistion = undefined; r.redrawHint('select', true); r.redraw(); } }, false); var touchcancelHandler; r.registerBinding(containerWindow, 'touchcancel', touchcancelHandler = function touchcancelHandler(e) { // eslint-disable-line no-unused-vars var start = r.touchData.start; r.touchData.capture = false; if (start) { start.unactivate(); } }); var touchendHandler, didDoubleTouch, touchTimeout, prevTouchTimeStamp; r.registerBinding(containerWindow, 'touchend', touchendHandler = function touchendHandler(e) { // eslint-disable-line no-unused-vars var start = r.touchData.start; var capture = r.touchData.capture; if (capture) { if (e.touches.length === 0) { r.touchData.capture = false; } e.preventDefault(); } else { return; } var select = r.selection; r.swipePanning = false; r.hoverData.draggingEles = false; var cy = r.cy; var zoom = cy.zoom(); var now = r.touchData.now; var earlier = r.touchData.earlier; if (e.touches[0]) { var pos = r.projectIntoViewport(e.touches[0].clientX, e.touches[0].clientY); now[0] = pos[0]; now[1] = pos[1]; } if (e.touches[1]) { var pos = r.projectIntoViewport(e.touches[1].clientX, e.touches[1].clientY); now[2] = pos[0]; now[3] = pos[1]; } if (e.touches[2]) { var pos = r.projectIntoViewport(e.touches[2].clientX, e.touches[2].clientY); now[4] = pos[0]; now[5] = pos[1]; } if (start) { start.unactivate(); } var ctxTapend; if (r.touchData.cxt) { ctxTapend = { originalEvent: e, type: 'cxttapend', position: { x: now[0], y: now[1] } }; if (start) { start.emit(ctxTapend); } else { cy.emit(ctxTapend); } if (!r.touchData.cxtDragged) { var ctxTap = { originalEvent: e, type: 'cxttap', position: { x: now[0], y: now[1] } }; if (start) { start.emit(ctxTap); } else { cy.emit(ctxTap); } } if (r.touchData.start) { r.touchData.start._private.grabbed = false; } r.touchData.cxt = false; r.touchData.start = null; r.redraw(); return; } // no more box selection if we don't have three fingers if (!e.touches[2] && cy.boxSelectionEnabled() && r.touchData.selecting) { r.touchData.selecting = false; var box = cy.collection(r.getAllInBox(select[0], select[1], select[2], select[3])); select[0] = undefined; select[1] = undefined; select[2] = undefined; select[3] = undefined; select[4] = 0; r.redrawHint('select', true); cy.emit({ type: 'boxend', originalEvent: e, position: { x: now[0], y: now[1] } }); var eleWouldBeSelected = function eleWouldBeSelected(ele) { return ele.selectable() && !ele.selected(); }; box.emit('box').stdFilter(eleWouldBeSelected).select().emit('boxselect'); if (box.nonempty()) { r.redrawHint('eles', true); } r.redraw(); } if (start != null) { start.unactivate(); } if (e.touches[2]) { r.data.bgActivePosistion = undefined; r.redrawHint('select', true); } else if (e.touches[1]) ; else if (e.touches[0]) ; else if (!e.touches[0]) { r.data.bgActivePosistion = undefined; r.redrawHint('select', true); var draggedEles = r.dragData.touchDragEles; if (start != null) { var startWasGrabbed = start._private.grabbed; freeDraggedElements(draggedEles); r.redrawHint('drag', true); r.redrawHint('eles', true); if (startWasGrabbed) { start.emit('freeon'); draggedEles.emit('free'); if (r.dragData.didDrag) { start.emit('dragfreeon'); draggedEles.emit('dragfree'); } } triggerEvents(start, ['touchend', 'tapend', 'vmouseup', 'tapdragout'], e, { x: now[0], y: now[1] }); start.unactivate(); r.touchData.start = null; } else { var near = r.findNearestElement(now[0], now[1], true, true); triggerEvents(near, ['touchend', 'tapend', 'vmouseup', 'tapdragout'], e, { x: now[0], y: now[1] }); } var dx = r.touchData.startPosition[0] - now[0]; var dx2 = dx * dx; var dy = r.touchData.startPosition[1] - now[1]; var dy2 = dy * dy; var dist2 = dx2 + dy2; var rdist2 = dist2 * zoom * zoom; // Tap event, roughly same as mouse click event for touch if (!r.touchData.singleTouchMoved) { if (!start) { cy.$(':selected').unselect(['tapunselect']); } triggerEvents(start, ['tap', 'vclick'], e, { x: now[0], y: now[1] }); didDoubleTouch = false; if (e.timeStamp - prevTouchTimeStamp <= cy.multiClickDebounceTime()) { touchTimeout && clearTimeout(touchTimeout); didDoubleTouch = true; prevTouchTimeStamp = null; triggerEvents(start, ['dbltap', 'vdblclick'], e, { x: now[0], y: now[1] }); } else { touchTimeout = setTimeout(function () { if (didDoubleTouch) return; triggerEvents(start, ['onetap', 'voneclick'], e, { x: now[0], y: now[1] }); }, cy.multiClickDebounceTime()); prevTouchTimeStamp = e.timeStamp; } } // Prepare to select the currently touched node, only if it hasn't been dragged past a certain distance if (start != null && !r.dragData.didDrag // didn't drag nodes around && start._private.selectable && rdist2 < r.touchTapThreshold2 && !r.pinching // pinch to zoom should not affect selection ) { if (cy.selectionType() === 'single') { cy.$(isSelected).unmerge(start).unselect(['tapunselect']); start.select(['tapselect']); } else { if (start.selected()) { start.unselect(['tapunselect']); } else { start.select(['tapselect']); } } r.redrawHint('eles', true); } r.touchData.singleTouchMoved = true; } for (var j = 0; j < now.length; j++) { earlier[j] = now[j]; } r.dragData.didDrag = false; // reset for next touchstart if (e.touches.length === 0) { r.touchData.dragDelta = []; r.touchData.startPosition = [null, null, null, null, null, null]; r.touchData.startGPosition = null; r.touchData.didSelect = false; } if (e.touches.length < 2) { if (e.touches.length === 1) { // the old start global pos'n may not be the same finger that remains r.touchData.startGPosition = [e.touches[0].clientX, e.touches[0].clientY]; } r.pinching = false; r.redrawHint('eles', true); r.redraw(); } //r.redraw(); }, false); // fallback compatibility layer for ms pointer events if (typeof TouchEvent === 'undefined') { var pointers = []; var makeTouch = function makeTouch(e) { return { clientX: e.clientX, clientY: e.clientY, force: 1, identifier: e.pointerId, pageX: e.pageX, pageY: e.pageY, radiusX: e.width / 2, radiusY: e.height / 2, screenX: e.screenX, screenY: e.screenY, target: e.target }; }; var makePointer = function makePointer(e) { return { event: e, touch: makeTouch(e) }; }; var addPointer = function addPointer(e) { pointers.push(makePointer(e)); }; var removePointer = function removePointer(e) { for (var i = 0; i < pointers.length; i++) { var p = pointers[i]; if (p.event.pointerId === e.pointerId) { pointers.splice(i, 1); return; } } }; var updatePointer = function updatePointer(e) { var p = pointers.filter(function (p) { return p.event.pointerId === e.pointerId; })[0]; p.event = e; p.touch = makeTouch(e); }; var addTouchesToEvent = function addTouchesToEvent(e) { e.touches = pointers.map(function (p) { return p.touch; }); }; var pointerIsMouse = function pointerIsMouse(e) { return e.pointerType === 'mouse' || e.pointerType === 4; }; r.registerBinding(r.container, 'pointerdown', function (e) { if (pointerIsMouse(e)) { return; } // mouse already handled e.preventDefault(); addPointer(e); addTouchesToEvent(e); touchstartHandler(e); }); r.registerBinding(r.container, 'pointerup', function (e) { if (pointerIsMouse(e)) { return; } // mouse already handled removePointer(e); addTouchesToEvent(e); touchendHandler(e); }); r.registerBinding(r.container, 'pointercancel', function (e) { if (pointerIsMouse(e)) { return; } // mouse already handled removePointer(e); addTouchesToEvent(e); touchcancelHandler(e); }); r.registerBinding(r.container, 'pointermove', function (e) { if (pointerIsMouse(e)) { return; } // mouse already handled e.preventDefault(); updatePointer(e); addTouchesToEvent(e); touchmoveHandler(e); }); } }; var BRp$2 = {}; BRp$2.generatePolygon = function (name, points) { return this.nodeShapes[name] = { renderer: this, name: name, points: points, draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl('polygon', context, centerX, centerY, width, height, this.points); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { return polygonIntersectLine(x, y, this.points, nodeX, nodeY, width / 2, height / 2, padding); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { return pointInsidePolygon(x, y, this.points, centerX, centerY, width, height, [0, -1], padding); } }; }; BRp$2.generateEllipse = function () { return this.nodeShapes['ellipse'] = { renderer: this, name: 'ellipse', draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl(this.name, context, centerX, centerY, width, height); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { return intersectLineEllipse(x, y, nodeX, nodeY, width / 2 + padding, height / 2 + padding); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { return checkInEllipse(x, y, width, height, centerX, centerY, padding); } }; }; BRp$2.generateRoundPolygon = function (name, points) { return this.nodeShapes[name] = { renderer: this, name: name, points: points, getOrCreateCorners: function getOrCreateCorners(centerX, centerY, width, height, cornerRadius, rs, field) { if (rs[field] !== undefined && rs[field + '-cx'] === centerX && rs[field + '-cy'] === centerY) { return rs[field]; } rs[field] = new Array(points.length / 2); rs[field + '-cx'] = centerX; rs[field + '-cy'] = centerY; var halfW = width / 2; var halfH = height / 2; cornerRadius = cornerRadius === 'auto' ? getRoundPolygonRadius(width, height) : cornerRadius; var p = new Array(points.length / 2); for (var _i = 0; _i < points.length / 2; _i++) { p[_i] = { x: centerX + halfW * points[_i * 2], y: centerY + halfH * points[_i * 2 + 1] }; } var i, p1, p2, p3, len = p.length; p1 = p[len - 1]; // for each point for (i = 0; i < len; i++) { p2 = p[i % len]; p3 = p[(i + 1) % len]; rs[field][i] = getRoundCorner(p1, p2, p3, cornerRadius); p1 = p2; p2 = p3; } return rs[field]; }, draw: function draw(context, centerX, centerY, width, height, cornerRadius, rs) { this.renderer.nodeShapeImpl('round-polygon', context, centerX, centerY, width, height, this.points, this.getOrCreateCorners(centerX, centerY, width, height, cornerRadius, rs, 'drawCorners')); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius, rs) { return roundPolygonIntersectLine(x, y, this.points, nodeX, nodeY, width, height, padding, this.getOrCreateCorners(nodeX, nodeY, width, height, cornerRadius, rs, 'corners')); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius, rs) { return pointInsideRoundPolygon(x, y, this.points, centerX, centerY, width, height, this.getOrCreateCorners(centerX, centerY, width, height, cornerRadius, rs, 'corners')); } }; }; BRp$2.generateRoundRectangle = function () { return this.nodeShapes['round-rectangle'] = this.nodeShapes['roundrectangle'] = { renderer: this, name: 'round-rectangle', points: generateUnitNgonPointsFitToSquare(4, 0), draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl(this.name, context, centerX, centerY, width, height, this.points, cornerRadius); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { return roundRectangleIntersectLine(x, y, nodeX, nodeY, width, height, padding, cornerRadius); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { var halfWidth = width / 2; var halfHeight = height / 2; cornerRadius = cornerRadius === 'auto' ? getRoundRectangleRadius(width, height) : cornerRadius; cornerRadius = Math.min(halfWidth, halfHeight, cornerRadius); var diam = cornerRadius * 2; // Check hBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width, height - diam, [0, -1], padding)) { return true; } // Check vBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width - diam, height, [0, -1], padding)) { return true; } // Check top left quarter circle if (checkInEllipse(x, y, diam, diam, centerX - halfWidth + cornerRadius, centerY - halfHeight + cornerRadius, padding)) { return true; } // Check top right quarter circle if (checkInEllipse(x, y, diam, diam, centerX + halfWidth - cornerRadius, centerY - halfHeight + cornerRadius, padding)) { return true; } // Check bottom right quarter circle if (checkInEllipse(x, y, diam, diam, centerX + halfWidth - cornerRadius, centerY + halfHeight - cornerRadius, padding)) { return true; } // Check bottom left quarter circle if (checkInEllipse(x, y, diam, diam, centerX - halfWidth + cornerRadius, centerY + halfHeight - cornerRadius, padding)) { return true; } return false; } }; }; BRp$2.generateCutRectangle = function () { return this.nodeShapes['cut-rectangle'] = this.nodeShapes['cutrectangle'] = { renderer: this, name: 'cut-rectangle', cornerLength: getCutRectangleCornerLength(), points: generateUnitNgonPointsFitToSquare(4, 0), draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl(this.name, context, centerX, centerY, width, height, null, cornerRadius); }, generateCutTrianglePts: function generateCutTrianglePts(width, height, centerX, centerY, cornerRadius) { var cl = cornerRadius === 'auto' ? this.cornerLength : cornerRadius; var hh = height / 2; var hw = width / 2; var xBegin = centerX - hw; var xEnd = centerX + hw; var yBegin = centerY - hh; var yEnd = centerY + hh; // points are in clockwise order, inner (imaginary) triangle pt on [4, 5] return { topLeft: [xBegin, yBegin + cl, xBegin + cl, yBegin, xBegin + cl, yBegin + cl], topRight: [xEnd - cl, yBegin, xEnd, yBegin + cl, xEnd - cl, yBegin + cl], bottomRight: [xEnd, yEnd - cl, xEnd - cl, yEnd, xEnd - cl, yEnd - cl], bottomLeft: [xBegin + cl, yEnd, xBegin, yEnd - cl, xBegin + cl, yEnd - cl] }; }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { var cPts = this.generateCutTrianglePts(width + 2 * padding, height + 2 * padding, nodeX, nodeY, cornerRadius); var pts = [].concat.apply([], [cPts.topLeft.splice(0, 4), cPts.topRight.splice(0, 4), cPts.bottomRight.splice(0, 4), cPts.bottomLeft.splice(0, 4)]); return polygonIntersectLine(x, y, pts, nodeX, nodeY); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { var cl = cornerRadius === 'auto' ? this.cornerLength : cornerRadius; // Check hBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width, height - 2 * cl, [0, -1], padding)) { return true; } // Check vBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width - 2 * cl, height, [0, -1], padding)) { return true; } var cutTrianglePts = this.generateCutTrianglePts(width, height, centerX, centerY); return pointInsidePolygonPoints(x, y, cutTrianglePts.topLeft) || pointInsidePolygonPoints(x, y, cutTrianglePts.topRight) || pointInsidePolygonPoints(x, y, cutTrianglePts.bottomRight) || pointInsidePolygonPoints(x, y, cutTrianglePts.bottomLeft); } }; }; BRp$2.generateBarrel = function () { return this.nodeShapes['barrel'] = { renderer: this, name: 'barrel', points: generateUnitNgonPointsFitToSquare(4, 0), draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl(this.name, context, centerX, centerY, width, height); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { // use two fixed t values for the bezier curve approximation var t0 = 0.15; var t1 = 0.5; var t2 = 0.85; var bPts = this.generateBarrelBezierPts(width + 2 * padding, height + 2 * padding, nodeX, nodeY); var approximateBarrelCurvePts = function approximateBarrelCurvePts(pts) { // approximate curve pts based on the two t values var m0 = qbezierPtAt({ x: pts[0], y: pts[1] }, { x: pts[2], y: pts[3] }, { x: pts[4], y: pts[5] }, t0); var m1 = qbezierPtAt({ x: pts[0], y: pts[1] }, { x: pts[2], y: pts[3] }, { x: pts[4], y: pts[5] }, t1); var m2 = qbezierPtAt({ x: pts[0], y: pts[1] }, { x: pts[2], y: pts[3] }, { x: pts[4], y: pts[5] }, t2); return [pts[0], pts[1], m0.x, m0.y, m1.x, m1.y, m2.x, m2.y, pts[4], pts[5]]; }; var pts = [].concat(approximateBarrelCurvePts(bPts.topLeft), approximateBarrelCurvePts(bPts.topRight), approximateBarrelCurvePts(bPts.bottomRight), approximateBarrelCurvePts(bPts.bottomLeft)); return polygonIntersectLine(x, y, pts, nodeX, nodeY); }, generateBarrelBezierPts: function generateBarrelBezierPts(width, height, centerX, centerY) { var hh = height / 2; var hw = width / 2; var xBegin = centerX - hw; var xEnd = centerX + hw; var yBegin = centerY - hh; var yEnd = centerY + hh; var curveConstants = getBarrelCurveConstants(width, height); var hOffset = curveConstants.heightOffset; var wOffset = curveConstants.widthOffset; var ctrlPtXOffset = curveConstants.ctrlPtOffsetPct * width; // points are in clockwise order, inner (imaginary) control pt on [4, 5] var pts = { topLeft: [xBegin, yBegin + hOffset, xBegin + ctrlPtXOffset, yBegin, xBegin + wOffset, yBegin], topRight: [xEnd - wOffset, yBegin, xEnd - ctrlPtXOffset, yBegin, xEnd, yBegin + hOffset], bottomRight: [xEnd, yEnd - hOffset, xEnd - ctrlPtXOffset, yEnd, xEnd - wOffset, yEnd], bottomLeft: [xBegin + wOffset, yEnd, xBegin + ctrlPtXOffset, yEnd, xBegin, yEnd - hOffset] }; pts.topLeft.isTop = true; pts.topRight.isTop = true; pts.bottomLeft.isBottom = true; pts.bottomRight.isBottom = true; return pts; }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { var curveConstants = getBarrelCurveConstants(width, height); var hOffset = curveConstants.heightOffset; var wOffset = curveConstants.widthOffset; // Check hBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width, height - 2 * hOffset, [0, -1], padding)) { return true; } // Check vBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width - 2 * wOffset, height, [0, -1], padding)) { return true; } var barrelCurvePts = this.generateBarrelBezierPts(width, height, centerX, centerY); var getCurveT = function getCurveT(x, y, curvePts) { var x0 = curvePts[4]; var x1 = curvePts[2]; var x2 = curvePts[0]; var y0 = curvePts[5]; // var y1 = curvePts[ 3 ]; var y2 = curvePts[1]; var xMin = Math.min(x0, x2); var xMax = Math.max(x0, x2); var yMin = Math.min(y0, y2); var yMax = Math.max(y0, y2); if (xMin <= x && x <= xMax && yMin <= y && y <= yMax) { var coeff = bezierPtsToQuadCoeff(x0, x1, x2); var roots = solveQuadratic(coeff[0], coeff[1], coeff[2], x); var validRoots = roots.filter(function (r) { return 0 <= r && r <= 1; }); if (validRoots.length > 0) { return validRoots[0]; } } return null; }; var curveRegions = Object.keys(barrelCurvePts); for (var i = 0; i < curveRegions.length; i++) { var corner = curveRegions[i]; var cornerPts = barrelCurvePts[corner]; var t = getCurveT(x, y, cornerPts); if (t == null) { continue; } var y0 = cornerPts[5]; var y1 = cornerPts[3]; var y2 = cornerPts[1]; var bezY = qbezierAt(y0, y1, y2, t); if (cornerPts.isTop && bezY <= y) { return true; } if (cornerPts.isBottom && y <= bezY) { return true; } } return false; } }; }; BRp$2.generateBottomRoundrectangle = function () { return this.nodeShapes['bottom-round-rectangle'] = this.nodeShapes['bottomroundrectangle'] = { renderer: this, name: 'bottom-round-rectangle', points: generateUnitNgonPointsFitToSquare(4, 0), draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl(this.name, context, centerX, centerY, width, height, this.points, cornerRadius); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { var topStartX = nodeX - (width / 2 + padding); var topStartY = nodeY - (height / 2 + padding); var topEndY = topStartY; var topEndX = nodeX + (width / 2 + padding); var topIntersections = finiteLinesIntersect(x, y, nodeX, nodeY, topStartX, topStartY, topEndX, topEndY, false); if (topIntersections.length > 0) { return topIntersections; } return roundRectangleIntersectLine(x, y, nodeX, nodeY, width, height, padding, cornerRadius); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { cornerRadius = cornerRadius === 'auto' ? getRoundRectangleRadius(width, height) : cornerRadius; var diam = 2 * cornerRadius; // Check hBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width, height - diam, [0, -1], padding)) { return true; } // Check vBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width - diam, height, [0, -1], padding)) { return true; } // check non-rounded top side var outerWidth = width / 2 + 2 * padding; var outerHeight = height / 2 + 2 * padding; var points = [centerX - outerWidth, centerY - outerHeight, centerX - outerWidth, centerY, centerX + outerWidth, centerY, centerX + outerWidth, centerY - outerHeight]; if (pointInsidePolygonPoints(x, y, points)) { return true; } // Check bottom right quarter circle if (checkInEllipse(x, y, diam, diam, centerX + width / 2 - cornerRadius, centerY + height / 2 - cornerRadius, padding)) { return true; } // Check bottom left quarter circle if (checkInEllipse(x, y, diam, diam, centerX - width / 2 + cornerRadius, centerY + height / 2 - cornerRadius, padding)) { return true; } return false; } }; }; BRp$2.registerNodeShapes = function () { var nodeShapes = this.nodeShapes = {}; var renderer = this; this.generateEllipse(); this.generatePolygon('triangle', generateUnitNgonPointsFitToSquare(3, 0)); this.generateRoundPolygon('round-triangle', generateUnitNgonPointsFitToSquare(3, 0)); this.generatePolygon('rectangle', generateUnitNgonPointsFitToSquare(4, 0)); nodeShapes['square'] = nodeShapes['rectangle']; this.generateRoundRectangle(); this.generateCutRectangle(); this.generateBarrel(); this.generateBottomRoundrectangle(); { var diamondPoints = [0, 1, 1, 0, 0, -1, -1, 0]; this.generatePolygon('diamond', diamondPoints); this.generateRoundPolygon('round-diamond', diamondPoints); } this.generatePolygon('pentagon', generateUnitNgonPointsFitToSquare(5, 0)); this.generateRoundPolygon('round-pentagon', generateUnitNgonPointsFitToSquare(5, 0)); this.generatePolygon('hexagon', generateUnitNgonPointsFitToSquare(6, 0)); this.generateRoundPolygon('round-hexagon', generateUnitNgonPointsFitToSquare(6, 0)); this.generatePolygon('heptagon', generateUnitNgonPointsFitToSquare(7, 0)); this.generateRoundPolygon('round-heptagon', generateUnitNgonPointsFitToSquare(7, 0)); this.generatePolygon('octagon', generateUnitNgonPointsFitToSquare(8, 0)); this.generateRoundPolygon('round-octagon', generateUnitNgonPointsFitToSquare(8, 0)); var star5Points = new Array(20); { var outerPoints = generateUnitNgonPoints(5, 0); var innerPoints = generateUnitNgonPoints(5, Math.PI / 5); // Outer radius is 1; inner radius of star is smaller var innerRadius = 0.5 * (3 - Math.sqrt(5)); innerRadius *= 1.57; for (var i = 0; i < innerPoints.length / 2; i++) { innerPoints[i * 2] *= innerRadius; innerPoints[i * 2 + 1] *= innerRadius; } for (var i = 0; i < 20 / 4; i++) { star5Points[i * 4] = outerPoints[i * 2]; star5Points[i * 4 + 1] = outerPoints[i * 2 + 1]; star5Points[i * 4 + 2] = innerPoints[i * 2]; star5Points[i * 4 + 3] = innerPoints[i * 2 + 1]; } } star5Points = fitPolygonToSquare(star5Points); this.generatePolygon('star', star5Points); this.generatePolygon('vee', [-1, -1, 0, -0.333, 1, -1, 0, 1]); this.generatePolygon('rhomboid', [-1, -1, 0.333, -1, 1, 1, -0.333, 1]); this.generatePolygon('right-rhomboid', [-0.333, -1, 1, -1, 0.333, 1, -1, 1]); this.nodeShapes['concavehexagon'] = this.generatePolygon('concave-hexagon', [-1, -0.95, -0.75, 0, -1, 0.95, 1, 0.95, 0.75, 0, 1, -0.95]); { var tagPoints = [-1, -1, 0.25, -1, 1, 0, 0.25, 1, -1, 1]; this.generatePolygon('tag', tagPoints); this.generateRoundPolygon('round-tag', tagPoints); } nodeShapes.makePolygon = function (points) { // use caching on user-specified polygons so they are as fast as native shapes var key = points.join('$'); var name = 'polygon-' + key; var shape; if (shape = this[name]) { // got cached shape return shape; } // create and cache new shape return renderer.generatePolygon(name, points); }; }; var BRp$1 = {}; BRp$1.timeToRender = function () { return this.redrawTotalTime / this.redrawCount; }; BRp$1.redraw = function (options) { options = options || staticEmptyObject(); var r = this; if (r.averageRedrawTime === undefined) { r.averageRedrawTime = 0; } if (r.lastRedrawTime === undefined) { r.lastRedrawTime = 0; } if (r.lastDrawTime === undefined) { r.lastDrawTime = 0; } r.requestedFrame = true; r.renderOptions = options; }; BRp$1.beforeRender = function (fn, priority) { // the renderer can't add tick callbacks when destroyed if (this.destroyed) { return; } if (priority == null) { error('Priority is not optional for beforeRender'); } var cbs = this.beforeRenderCallbacks; cbs.push({ fn: fn, priority: priority }); // higher priority callbacks executed first cbs.sort(function (a, b) { return b.priority - a.priority; }); }; var beforeRenderCallbacks = function beforeRenderCallbacks(r, willDraw, startTime) { var cbs = r.beforeRenderCallbacks; for (var i = 0; i < cbs.length; i++) { cbs[i].fn(willDraw, startTime); } }; BRp$1.startRenderLoop = function () { var r = this; var cy = r.cy; if (r.renderLoopStarted) { return; } else { r.renderLoopStarted = true; } var renderFn = function renderFn(requestTime) { if (r.destroyed) { return; } if (cy.batching()) ; else if (r.requestedFrame && !r.skipFrame) { beforeRenderCallbacks(r, true, requestTime); var startTime = performanceNow(); r.render(r.renderOptions); var endTime = r.lastDrawTime = performanceNow(); if (r.averageRedrawTime === undefined) { r.averageRedrawTime = endTime - startTime; } if (r.redrawCount === undefined) { r.redrawCount = 0; } r.redrawCount++; if (r.redrawTotalTime === undefined) { r.redrawTotalTime = 0; } var duration = endTime - startTime; r.redrawTotalTime += duration; r.lastRedrawTime = duration; // use a weighted average with a bias from the previous average so we don't spike so easily r.averageRedrawTime = r.averageRedrawTime / 2 + duration / 2; r.requestedFrame = false; } else { beforeRenderCallbacks(r, false, requestTime); } r.skipFrame = false; requestAnimationFrame(renderFn); }; requestAnimationFrame(renderFn); }; var BaseRenderer = function BaseRenderer(options) { this.init(options); }; var BR = BaseRenderer; var BRp = BR.prototype; BRp.clientFunctions = ['redrawHint', 'render', 'renderTo', 'matchCanvasSize', 'nodeShapeImpl', 'arrowShapeImpl']; BRp.init = function (options) { var r = this; r.options = options; r.cy = options.cy; var ctr = r.container = options.cy.container(); var containerWindow = r.cy.window(); // prepend a stylesheet in the head such that if (containerWindow) { var document = containerWindow.document; var head = document.head; var stylesheetId = '__________cytoscape_stylesheet'; var className = '__________cytoscape_container'; var stylesheetAlreadyExists = document.getElementById(stylesheetId) != null; if (ctr.className.indexOf(className) < 0) { ctr.className = (ctr.className || '') + ' ' + className; } if (!stylesheetAlreadyExists) { var stylesheet = document.createElement('style'); stylesheet.id = stylesheetId; stylesheet.textContent = '.' + className + ' { position: relative; }'; head.insertBefore(stylesheet, head.children[0]); // first so lowest priority } var computedStyle = containerWindow.getComputedStyle(ctr); var position = computedStyle.getPropertyValue('position'); if (position === 'static') { warn('A Cytoscape container has style position:static and so can not use UI extensions properly'); } } r.selection = [undefined, undefined, undefined, undefined, 0]; // Coordinates for selection box, plus enabled flag r.bezierProjPcts = [0.05, 0.225, 0.4, 0.5, 0.6, 0.775, 0.95]; //--Pointer-related data r.hoverData = { down: null, last: null, downTime: null, triggerMode: null, dragging: false, initialPan: [null, null], capture: false }; r.dragData = { possibleDragElements: [] }; r.touchData = { start: null, capture: false, // These 3 fields related to tap, taphold events startPosition: [null, null, null, null, null, null], singleTouchStartTime: null, singleTouchMoved: true, now: [null, null, null, null, null, null], earlier: [null, null, null, null, null, null] }; r.redraws = 0; r.showFps = options.showFps; r.debug = options.debug; r.hideEdgesOnViewport = options.hideEdgesOnViewport; r.textureOnViewport = options.textureOnViewport; r.wheelSensitivity = options.wheelSensitivity; r.motionBlurEnabled = options.motionBlur; // on by default r.forcedPixelRatio = number$1(options.pixelRatio) ? options.pixelRatio : null; r.motionBlur = options.motionBlur; // for initial kick off r.motionBlurOpacity = options.motionBlurOpacity; r.motionBlurTransparency = 1 - r.motionBlurOpacity; r.motionBlurPxRatio = 1; r.mbPxRBlurry = 1; //0.8; r.minMbLowQualFrames = 4; r.fullQualityMb = false; r.clearedForMotionBlur = []; r.desktopTapThreshold = options.desktopTapThreshold; r.desktopTapThreshold2 = options.desktopTapThreshold * options.desktopTapThreshold; r.touchTapThreshold = options.touchTapThreshold; r.touchTapThreshold2 = options.touchTapThreshold * options.touchTapThreshold; r.tapholdDuration = 500; r.bindings = []; r.beforeRenderCallbacks = []; r.beforeRenderPriorities = { // higher priority execs before lower one animations: 400, eleCalcs: 300, eleTxrDeq: 200, lyrTxrDeq: 150, lyrTxrSkip: 100 }; r.registerNodeShapes(); r.registerArrowShapes(); r.registerCalculationListeners(); }; BRp.notify = function (eventName, eles) { var r = this; var cy = r.cy; // the renderer can't be notified after it's destroyed if (this.destroyed) { return; } if (eventName === 'init') { r.load(); return; } if (eventName === 'destroy') { r.destroy(); return; } if (eventName === 'add' || eventName === 'remove' || eventName === 'move' && cy.hasCompoundNodes() || eventName === 'load' || eventName === 'zorder' || eventName === 'mount') { r.invalidateCachedZSortedEles(); } if (eventName === 'viewport') { r.redrawHint('select', true); } if (eventName === 'load' || eventName === 'resize' || eventName === 'mount') { r.invalidateContainerClientCoordsCache(); r.matchCanvasSize(r.container); } r.redrawHint('eles', true); r.redrawHint('drag', true); this.startRenderLoop(); this.redraw(); }; BRp.destroy = function () { var r = this; r.destroyed = true; r.cy.stopAnimationLoop(); for (var i = 0; i < r.bindings.length; i++) { var binding = r.bindings[i]; var b = binding; var tgt = b.target; (tgt.off || tgt.removeEventListener).apply(tgt, b.args); } r.bindings = []; r.beforeRenderCallbacks = []; r.onUpdateEleCalcsFns = []; if (r.removeObserver) { r.removeObserver.disconnect(); } if (r.styleObserver) { r.styleObserver.disconnect(); } if (r.resizeObserver) { r.resizeObserver.disconnect(); } if (r.labelCalcDiv) { try { document.body.removeChild(r.labelCalcDiv); // eslint-disable-line no-undef } catch (e) { // ie10 issue #1014 } } }; BRp.isHeadless = function () { return false; }; [BRp$f, BRp$5, BRp$4, BRp$3, BRp$2, BRp$1].forEach(function (props) { extend(BRp, props); }); var fullFpsTime = 1000 / 60; // assume 60 frames per second var defs = { setupDequeueing: function setupDequeueing(opts) { return function setupDequeueingImpl() { var self = this; var r = this.renderer; if (self.dequeueingSetup) { return; } else { self.dequeueingSetup = true; } var queueRedraw = debounce_1(function () { r.redrawHint('eles', true); r.redrawHint('drag', true); r.redraw(); }, opts.deqRedrawThreshold); var dequeue = function dequeue(willDraw, frameStartTime) { var startTime = performanceNow(); var avgRenderTime = r.averageRedrawTime; var renderTime = r.lastRedrawTime; var deqd = []; var extent = r.cy.extent(); var pixelRatio = r.getPixelRatio(); // if we aren't in a tick that causes a draw, then the rendered style // queue won't automatically be flushed before dequeueing starts if (!willDraw) { r.flushRenderedStyleQueue(); } while (true) { // eslint-disable-line no-constant-condition var now = performanceNow(); var duration = now - startTime; var frameDuration = now - frameStartTime; if (renderTime < fullFpsTime) { // if we're rendering faster than the ideal fps, then do dequeueing // during all of the remaining frame time var timeAvailable = fullFpsTime - (willDraw ? avgRenderTime : 0); if (frameDuration >= opts.deqFastCost * timeAvailable) { break; } } else { if (willDraw) { if (duration >= opts.deqCost * renderTime || duration >= opts.deqAvgCost * avgRenderTime) { break; } } else if (frameDuration >= opts.deqNoDrawCost * fullFpsTime) { break; } } var thisDeqd = opts.deq(self, pixelRatio, extent); if (thisDeqd.length > 0) { for (var i = 0; i < thisDeqd.length; i++) { deqd.push(thisDeqd[i]); } } else { break; } } // callbacks on dequeue if (deqd.length > 0) { opts.onDeqd(self, deqd); if (!willDraw && opts.shouldRedraw(self, deqd, pixelRatio, extent)) { queueRedraw(); } } }; var priority = opts.priority || noop$1; r.beforeRender(dequeue, priority(self)); }; } }; // Allows lookups for (ele, lvl) => cache. // Uses keys so elements may share the same cache. var ElementTextureCacheLookup = /*#__PURE__*/function () { function ElementTextureCacheLookup(getKey) { var doesEleInvalidateKey = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : falsify; _classCallCheck(this, ElementTextureCacheLookup); this.idsByKey = new Map$2(); this.keyForId = new Map$2(); this.cachesByLvl = new Map$2(); this.lvls = []; this.getKey = getKey; this.doesEleInvalidateKey = doesEleInvalidateKey; } _createClass(ElementTextureCacheLookup, [{ key: "getIdsFor", value: function getIdsFor(key) { if (key == null) { error("Can not get id list for null key"); } var idsByKey = this.idsByKey; var ids = this.idsByKey.get(key); if (!ids) { ids = new Set$1(); idsByKey.set(key, ids); } return ids; } }, { key: "addIdForKey", value: function addIdForKey(key, id) { if (key != null) { this.getIdsFor(key).add(id); } } }, { key: "deleteIdForKey", value: function deleteIdForKey(key, id) { if (key != null) { this.getIdsFor(key)["delete"](id); } } }, { key: "getNumberOfIdsForKey", value: function getNumberOfIdsForKey(key) { if (key == null) { return 0; } else { return this.getIdsFor(key).size; } } }, { key: "updateKeyMappingFor", value: function updateKeyMappingFor(ele) { var id = ele.id(); var prevKey = this.keyForId.get(id); var currKey = this.getKey(ele); this.deleteIdForKey(prevKey, id); this.addIdForKey(currKey, id); this.keyForId.set(id, currKey); } }, { key: "deleteKeyMappingFor", value: function deleteKeyMappingFor(ele) { var id = ele.id(); var prevKey = this.keyForId.get(id); this.deleteIdForKey(prevKey, id); this.keyForId["delete"](id); } }, { key: "keyHasChangedFor", value: function keyHasChangedFor(ele) { var id = ele.id(); var prevKey = this.keyForId.get(id); var newKey = this.getKey(ele); return prevKey !== newKey; } }, { key: "isInvalid", value: function isInvalid(ele) { return this.keyHasChangedFor(ele) || this.doesEleInvalidateKey(ele); } }, { key: "getCachesAt", value: function getCachesAt(lvl) { var cachesByLvl = this.cachesByLvl, lvls = this.lvls; var caches = cachesByLvl.get(lvl); if (!caches) { caches = new Map$2(); cachesByLvl.set(lvl, caches); lvls.push(lvl); } return caches; } }, { key: "getCache", value: function getCache(key, lvl) { return this.getCachesAt(lvl).get(key); } }, { key: "get", value: function get(ele, lvl) { var key = this.getKey(ele); var cache = this.getCache(key, lvl); // getting for an element may need to add to the id list b/c eles can share keys if (cache != null) { this.updateKeyMappingFor(ele); } return cache; } }, { key: "getForCachedKey", value: function getForCachedKey(ele, lvl) { var key = this.keyForId.get(ele.id()); // n.b. use cached key, not newly computed key var cache = this.getCache(key, lvl); return cache; } }, { key: "hasCache", value: function hasCache(key, lvl) { return this.getCachesAt(lvl).has(key); } }, { key: "has", value: function has(ele, lvl) { var key = this.getKey(ele); return this.hasCache(key, lvl); } }, { key: "setCache", value: function setCache(key, lvl, cache) { cache.key = key; this.getCachesAt(lvl).set(key, cache); } }, { key: "set", value: function set(ele, lvl, cache) { var key = this.getKey(ele); this.setCache(key, lvl, cache); this.updateKeyMappingFor(ele); } }, { key: "deleteCache", value: function deleteCache(key, lvl) { this.getCachesAt(lvl)["delete"](key); } }, { key: "delete", value: function _delete(ele, lvl) { var key = this.getKey(ele); this.deleteCache(key, lvl); } }, { key: "invalidateKey", value: function invalidateKey(key) { var _this = this; this.lvls.forEach(function (lvl) { return _this.deleteCache(key, lvl); }); } // returns true if no other eles reference the invalidated cache (n.b. other eles may need the cache with the same key) }, { key: "invalidate", value: function invalidate(ele) { var id = ele.id(); var key = this.keyForId.get(id); // n.b. use stored key rather than current (potential key) this.deleteKeyMappingFor(ele); var entireKeyInvalidated = this.doesEleInvalidateKey(ele); if (entireKeyInvalidated) { // clear mapping for current key this.invalidateKey(key); } return entireKeyInvalidated || this.getNumberOfIdsForKey(key) === 0; } }]); return ElementTextureCacheLookup; }(); var minTxrH = 25; // the size of the texture cache for small height eles (special case) var txrStepH = 50; // the min size of the regular cache, and the size it increases with each step up var minLvl$1 = -4; // when scaling smaller than that we don't need to re-render var maxLvl$1 = 3; // when larger than this scale just render directly (caching is not helpful) var maxZoom$1 = 7.99; // beyond this zoom level, layered textures are not used var eleTxrSpacing = 8; // spacing between elements on textures to avoid blitting overlaps var defTxrWidth = 1024; // default/minimum texture width var maxTxrW = 1024; // the maximum width of a texture var maxTxrH = 1024; // the maximum height of a texture var minUtility = 0.2; // if usage of texture is less than this, it is retired var maxFullness = 0.8; // fullness of texture after which queue removal is checked var maxFullnessChecks = 10; // dequeued after this many checks var deqCost$1 = 0.15; // % of add'l rendering cost allowed for dequeuing ele caches each frame var deqAvgCost$1 = 0.1; // % of add'l rendering cost compared to average overall redraw time var deqNoDrawCost$1 = 0.9; // % of avg frame time that can be used for dequeueing when not drawing var deqFastCost$1 = 0.9; // % of frame time to be used when >60fps var deqRedrawThreshold$1 = 100; // time to batch redraws together from dequeueing to allow more dequeueing calcs to happen in the meanwhile var maxDeqSize$1 = 1; // number of eles to dequeue and render at higher texture in each batch var getTxrReasons = { dequeue: 'dequeue', downscale: 'downscale', highQuality: 'highQuality' }; var initDefaults = defaults$g({ getKey: null, doesEleInvalidateKey: falsify, drawElement: null, getBoundingBox: null, getRotationPoint: null, getRotationOffset: null, isVisible: trueify, allowEdgeTxrCaching: true, allowParentTxrCaching: true }); var ElementTextureCache = function ElementTextureCache(renderer, initOptions) { var self = this; self.renderer = renderer; self.onDequeues = []; var opts = initDefaults(initOptions); extend(self, opts); self.lookup = new ElementTextureCacheLookup(opts.getKey, opts.doesEleInvalidateKey); self.setupDequeueing(); }; var ETCp = ElementTextureCache.prototype; ETCp.reasons = getTxrReasons; // the list of textures in which new subtextures for elements can be placed ETCp.getTextureQueue = function (txrH) { var self = this; self.eleImgCaches = self.eleImgCaches || {}; return self.eleImgCaches[txrH] = self.eleImgCaches[txrH] || []; }; // the list of usused textures which can be recycled (in use in texture queue) ETCp.getRetiredTextureQueue = function (txrH) { var self = this; var rtxtrQs = self.eleImgCaches.retired = self.eleImgCaches.retired || {}; var rtxtrQ = rtxtrQs[txrH] = rtxtrQs[txrH] || []; return rtxtrQ; }; // queue of element draw requests at different scale levels ETCp.getElementQueue = function () { var self = this; var q = self.eleCacheQueue = self.eleCacheQueue || new heap(function (a, b) { return b.reqs - a.reqs; }); return q; }; // queue of element draw requests at different scale levels (element id lookup) ETCp.getElementKeyToQueue = function () { var self = this; var k2q = self.eleKeyToCacheQueue = self.eleKeyToCacheQueue || {}; return k2q; }; ETCp.getElement = function (ele, bb, pxRatio, lvl, reason) { var self = this; var r = this.renderer; var zoom = r.cy.zoom(); var lookup = this.lookup; if (!bb || bb.w === 0 || bb.h === 0 || isNaN(bb.w) || isNaN(bb.h) || !ele.visible() || ele.removed()) { return null; } if (!self.allowEdgeTxrCaching && ele.isEdge() || !self.allowParentTxrCaching && ele.isParent()) { return null; } if (lvl == null) { lvl = Math.ceil(log2(zoom * pxRatio)); } if (lvl < minLvl$1) { lvl = minLvl$1; } else if (zoom >= maxZoom$1 || lvl > maxLvl$1) { return null; } var scale = Math.pow(2, lvl); var eleScaledH = bb.h * scale; var eleScaledW = bb.w * scale; var scaledLabelShown = r.eleTextBiggerThanMin(ele, scale); if (!this.isVisible(ele, scaledLabelShown)) { return null; } var eleCache = lookup.get(ele, lvl); // if this get was on an unused/invalidated cache, then restore the texture usage metric if (eleCache && eleCache.invalidated) { eleCache.invalidated = false; eleCache.texture.invalidatedWidth -= eleCache.width; } if (eleCache) { return eleCache; } var txrH; // which texture height this ele belongs to if (eleScaledH <= minTxrH) { txrH = minTxrH; } else if (eleScaledH <= txrStepH) { txrH = txrStepH; } else { txrH = Math.ceil(eleScaledH / txrStepH) * txrStepH; } if (eleScaledH > maxTxrH || eleScaledW > maxTxrW) { return null; // caching large elements is not efficient } var txrQ = self.getTextureQueue(txrH); // first try the second last one in case it has space at the end var txr = txrQ[txrQ.length - 2]; var addNewTxr = function addNewTxr() { return self.recycleTexture(txrH, eleScaledW) || self.addTexture(txrH, eleScaledW); }; // try the last one if there is no second last one if (!txr) { txr = txrQ[txrQ.length - 1]; } // if the last one doesn't exist, we need a first one if (!txr) { txr = addNewTxr(); } // if there's no room in the current texture, we need a new one if (txr.width - txr.usedWidth < eleScaledW) { txr = addNewTxr(); } var scalableFrom = function scalableFrom(otherCache) { return otherCache && otherCache.scaledLabelShown === scaledLabelShown; }; var deqing = reason && reason === getTxrReasons.dequeue; var highQualityReq = reason && reason === getTxrReasons.highQuality; var downscaleReq = reason && reason === getTxrReasons.downscale; var higherCache; // the nearest cache with a higher level for (var l = lvl + 1; l <= maxLvl$1; l++) { var c = lookup.get(ele, l); if (c) { higherCache = c; break; } } var oneUpCache = higherCache && higherCache.level === lvl + 1 ? higherCache : null; var downscale = function downscale() { txr.context.drawImage(oneUpCache.texture.canvas, oneUpCache.x, 0, oneUpCache.width, oneUpCache.height, txr.usedWidth, 0, eleScaledW, eleScaledH); }; // reset ele area in texture txr.context.setTransform(1, 0, 0, 1, 0, 0); txr.context.clearRect(txr.usedWidth, 0, eleScaledW, txrH); if (scalableFrom(oneUpCache)) { // then we can relatively cheaply rescale the existing image w/o rerendering downscale(); } else if (scalableFrom(higherCache)) { // then use the higher cache for now and queue the next level down // to cheaply scale towards the smaller level if (highQualityReq) { for (var _l = higherCache.level; _l > lvl; _l--) { oneUpCache = self.getElement(ele, bb, pxRatio, _l, getTxrReasons.downscale); } downscale(); } else { self.queueElement(ele, higherCache.level - 1); return higherCache; } } else { var lowerCache; // the nearest cache with a lower level if (!deqing && !highQualityReq && !downscaleReq) { for (var _l2 = lvl - 1; _l2 >= minLvl$1; _l2--) { var _c = lookup.get(ele, _l2); if (_c) { lowerCache = _c; break; } } } if (scalableFrom(lowerCache)) { // then use the lower quality cache for now and queue the better one for later self.queueElement(ele, lvl); return lowerCache; } txr.context.translate(txr.usedWidth, 0); txr.context.scale(scale, scale); this.drawElement(txr.context, ele, bb, scaledLabelShown, false); txr.context.scale(1 / scale, 1 / scale); txr.context.translate(-txr.usedWidth, 0); } eleCache = { x: txr.usedWidth, texture: txr, level: lvl, scale: scale, width: eleScaledW, height: eleScaledH, scaledLabelShown: scaledLabelShown }; txr.usedWidth += Math.ceil(eleScaledW + eleTxrSpacing); txr.eleCaches.push(eleCache); lookup.set(ele, lvl, eleCache); self.checkTextureFullness(txr); return eleCache; }; ETCp.invalidateElements = function (eles) { for (var i = 0; i < eles.length; i++) { this.invalidateElement(eles[i]); } }; ETCp.invalidateElement = function (ele) { var self = this; var lookup = self.lookup; var caches = []; var invalid = lookup.isInvalid(ele); if (!invalid) { return; // override the invalidation request if the element key has not changed } for (var lvl = minLvl$1; lvl <= maxLvl$1; lvl++) { var cache = lookup.getForCachedKey(ele, lvl); if (cache) { caches.push(cache); } } var noOtherElesUseCache = lookup.invalidate(ele); if (noOtherElesUseCache) { for (var i = 0; i < caches.length; i++) { var _cache = caches[i]; var txr = _cache.texture; // remove space from the texture it belongs to txr.invalidatedWidth += _cache.width; // mark the cache as invalidated _cache.invalidated = true; // retire the texture if its utility is low self.checkTextureUtility(txr); } } // remove from queue since the old req was for the old state self.removeFromQueue(ele); }; ETCp.checkTextureUtility = function (txr) { // invalidate all entries in the cache if the cache size is small if (txr.invalidatedWidth >= minUtility * txr.width) { this.retireTexture(txr); } }; ETCp.checkTextureFullness = function (txr) { // if texture has been mostly filled and passed over several times, remove // it from the queue so we don't need to waste time looking at it to put new things var self = this; var txrQ = self.getTextureQueue(txr.height); if (txr.usedWidth / txr.width > maxFullness && txr.fullnessChecks >= maxFullnessChecks) { removeFromArray(txrQ, txr); } else { txr.fullnessChecks++; } }; ETCp.retireTexture = function (txr) { var self = this; var txrH = txr.height; var txrQ = self.getTextureQueue(txrH); var lookup = this.lookup; // retire the texture from the active / searchable queue: removeFromArray(txrQ, txr); txr.retired = true; // remove the refs from the eles to the caches: var eleCaches = txr.eleCaches; for (var i = 0; i < eleCaches.length; i++) { var eleCache = eleCaches[i]; lookup.deleteCache(eleCache.key, eleCache.level); } clearArray(eleCaches); // add the texture to a retired queue so it can be recycled in future: var rtxtrQ = self.getRetiredTextureQueue(txrH); rtxtrQ.push(txr); }; ETCp.addTexture = function (txrH, minW) { var self = this; var txrQ = self.getTextureQueue(txrH); var txr = {}; txrQ.push(txr); txr.eleCaches = []; txr.height = txrH; txr.width = Math.max(defTxrWidth, minW); txr.usedWidth = 0; txr.invalidatedWidth = 0; txr.fullnessChecks = 0; txr.canvas = self.renderer.makeOffscreenCanvas(txr.width, txr.height); txr.context = txr.canvas.getContext('2d'); return txr; }; ETCp.recycleTexture = function (txrH, minW) { var self = this; var txrQ = self.getTextureQueue(txrH); var rtxtrQ = self.getRetiredTextureQueue(txrH); for (var i = 0; i < rtxtrQ.length; i++) { var txr = rtxtrQ[i]; if (txr.width >= minW) { txr.retired = false; txr.usedWidth = 0; txr.invalidatedWidth = 0; txr.fullnessChecks = 0; clearArray(txr.eleCaches); txr.context.setTransform(1, 0, 0, 1, 0, 0); txr.context.clearRect(0, 0, txr.width, txr.height); removeFromArray(rtxtrQ, txr); txrQ.push(txr); return txr; } } }; ETCp.queueElement = function (ele, lvl) { var self = this; var q = self.getElementQueue(); var k2q = self.getElementKeyToQueue(); var key = this.getKey(ele); var existingReq = k2q[key]; if (existingReq) { // use the max lvl b/c in between lvls are cheap to make existingReq.level = Math.max(existingReq.level, lvl); existingReq.eles.merge(ele); existingReq.reqs++; q.updateItem(existingReq); } else { var req = { eles: ele.spawn().merge(ele), level: lvl, reqs: 1, key: key }; q.push(req); k2q[key] = req; } }; ETCp.dequeue = function (pxRatio /*, extent*/) { var self = this; var q = self.getElementQueue(); var k2q = self.getElementKeyToQueue(); var dequeued = []; var lookup = self.lookup; for (var i = 0; i < maxDeqSize$1; i++) { if (q.size() > 0) { var req = q.pop(); var key = req.key; var ele = req.eles[0]; // all eles have the same key var cacheExists = lookup.hasCache(ele, req.level); // clear out the key to req lookup k2q[key] = null; // dequeueing isn't necessary with an existing cache if (cacheExists) { continue; } dequeued.push(req); var bb = self.getBoundingBox(ele); self.getElement(ele, bb, pxRatio, req.level, getTxrReasons.dequeue); } else { break; } } return dequeued; }; ETCp.removeFromQueue = function (ele) { var self = this; var q = self.getElementQueue(); var k2q = self.getElementKeyToQueue(); var key = this.getKey(ele); var req = k2q[key]; if (req != null) { if (req.eles.length === 1) { // remove if last ele in the req // bring to front of queue req.reqs = MAX_INT$1; q.updateItem(req); q.pop(); // remove from queue k2q[key] = null; // remove from lookup map } else { // otherwise just remove ele from req req.eles.unmerge(ele); } } }; ETCp.onDequeue = function (fn) { this.onDequeues.push(fn); }; ETCp.offDequeue = function (fn) { removeFromArray(this.onDequeues, fn); }; ETCp.setupDequeueing = defs.setupDequeueing({ deqRedrawThreshold: deqRedrawThreshold$1, deqCost: deqCost$1, deqAvgCost: deqAvgCost$1, deqNoDrawCost: deqNoDrawCost$1, deqFastCost: deqFastCost$1, deq: function deq(self, pxRatio, extent) { return self.dequeue(pxRatio, extent); }, onDeqd: function onDeqd(self, deqd) { for (var i = 0; i < self.onDequeues.length; i++) { var fn = self.onDequeues[i]; fn(deqd); } }, shouldRedraw: function shouldRedraw(self, deqd, pxRatio, extent) { for (var i = 0; i < deqd.length; i++) { var eles = deqd[i].eles; for (var j = 0; j < eles.length; j++) { var bb = eles[j].boundingBox(); if (boundingBoxesIntersect(bb, extent)) { return true; } } } return false; }, priority: function priority(self) { return self.renderer.beforeRenderPriorities.eleTxrDeq; } }); var defNumLayers = 1; // default number of layers to use var minLvl = -4; // when scaling smaller than that we don't need to re-render var maxLvl = 2; // when larger than this scale just render directly (caching is not helpful) var maxZoom = 3.99; // beyond this zoom level, layered textures are not used var deqRedrawThreshold = 50; // time to batch redraws together from dequeueing to allow more dequeueing calcs to happen in the meanwhile var refineEleDebounceTime = 50; // time to debounce sharper ele texture updates var deqCost = 0.15; // % of add'l rendering cost allowed for dequeuing ele caches each frame var deqAvgCost = 0.1; // % of add'l rendering cost compared to average overall redraw time var deqNoDrawCost = 0.9; // % of avg frame time that can be used for dequeueing when not drawing var deqFastCost = 0.9; // % of frame time to be used when >60fps var maxDeqSize = 1; // number of eles to dequeue and render at higher texture in each batch var invalidThreshold = 250; // time threshold for disabling b/c of invalidations var maxLayerArea = 4000 * 4000; // layers can't be bigger than this var useHighQualityEleTxrReqs = true; // whether to use high quality ele txr requests (generally faster and cheaper in the longterm) // var log = function(){ console.log.apply( console, arguments ); }; var LayeredTextureCache = function LayeredTextureCache(renderer) { var self = this; var r = self.renderer = renderer; var cy = r.cy; self.layersByLevel = {}; // e.g. 2 => [ layer1, layer2, ..., layerN ] self.firstGet = true; self.lastInvalidationTime = performanceNow() - 2 * invalidThreshold; self.skipping = false; self.eleTxrDeqs = cy.collection(); self.scheduleElementRefinement = debounce_1(function () { self.refineElementTextures(self.eleTxrDeqs); self.eleTxrDeqs.unmerge(self.eleTxrDeqs); }, refineEleDebounceTime); r.beforeRender(function (willDraw, now) { if (now - self.lastInvalidationTime <= invalidThreshold) { self.skipping = true; } else { self.skipping = false; } }, r.beforeRenderPriorities.lyrTxrSkip); var qSort = function qSort(a, b) { return b.reqs - a.reqs; }; self.layersQueue = new heap(qSort); self.setupDequeueing(); }; var LTCp = LayeredTextureCache.prototype; var layerIdPool = 0; var MAX_INT = Math.pow(2, 53) - 1; LTCp.makeLayer = function (bb, lvl) { var scale = Math.pow(2, lvl); var w = Math.ceil(bb.w * scale); var h = Math.ceil(bb.h * scale); var canvas = this.renderer.makeOffscreenCanvas(w, h); var layer = { id: layerIdPool = ++layerIdPool % MAX_INT, bb: bb, level: lvl, width: w, height: h, canvas: canvas, context: canvas.getContext('2d'), eles: [], elesQueue: [], reqs: 0 }; // log('make layer %s with w %s and h %s and lvl %s', layer.id, layer.width, layer.height, layer.level); var cxt = layer.context; var dx = -layer.bb.x1; var dy = -layer.bb.y1; // do the transform on creation to save cycles (it's the same for all eles) cxt.scale(scale, scale); cxt.translate(dx, dy); return layer; }; LTCp.getLayers = function (eles, pxRatio, lvl) { var self = this; var r = self.renderer; var cy = r.cy; var zoom = cy.zoom(); var firstGet = self.firstGet; self.firstGet = false; // log('--\nget layers with %s eles', eles.length); //log eles.map(function(ele){ return ele.id() }) ); if (lvl == null) { lvl = Math.ceil(log2(zoom * pxRatio)); if (lvl < minLvl) { lvl = minLvl; } else if (zoom >= maxZoom || lvl > maxLvl) { return null; } } self.validateLayersElesOrdering(lvl, eles); var layersByLvl = self.layersByLevel; var scale = Math.pow(2, lvl); var layers = layersByLvl[lvl] = layersByLvl[lvl] || []; var bb; var lvlComplete = self.levelIsComplete(lvl, eles); var tmpLayers; var checkTempLevels = function checkTempLevels() { var canUseAsTmpLvl = function canUseAsTmpLvl(l) { self.validateLayersElesOrdering(l, eles); if (self.levelIsComplete(l, eles)) { tmpLayers = layersByLvl[l]; return true; } }; var checkLvls = function checkLvls(dir) { if (tmpLayers) { return; } for (var l = lvl + dir; minLvl <= l && l <= maxLvl; l += dir) { if (canUseAsTmpLvl(l)) { break; } } }; checkLvls(+1); checkLvls(-1); // remove the invalid layers; they will be replaced as needed later in this function for (var i = layers.length - 1; i >= 0; i--) { var layer = layers[i]; if (layer.invalid) { removeFromArray(layers, layer); } } }; if (!lvlComplete) { // if the current level is incomplete, then use the closest, best quality layerset temporarily // and later queue the current layerset so we can get the proper quality level soon checkTempLevels(); } else { // log('level complete, using existing layers\n--'); return layers; } var getBb = function getBb() { if (!bb) { bb = makeBoundingBox(); for (var i = 0; i < eles.length; i++) { updateBoundingBox(bb, eles[i].boundingBox()); } } return bb; }; var makeLayer = function makeLayer(opts) { opts = opts || {}; var after = opts.after; getBb(); var area = bb.w * scale * (bb.h * scale); if (area > maxLayerArea) { return null; } var layer = self.makeLayer(bb, lvl); if (after != null) { var index = layers.indexOf(after) + 1; layers.splice(index, 0, layer); } else if (opts.insert === undefined || opts.insert) { // no after specified => first layer made so put at start layers.unshift(layer); } // if( tmpLayers ){ //self.queueLayer( layer ); // } return layer; }; if (self.skipping && !firstGet) { // log('skip layers'); return null; } // log('do layers'); var layer = null; var maxElesPerLayer = eles.length / defNumLayers; var allowLazyQueueing = !firstGet; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var rs = ele._private.rscratch; var caches = rs.imgLayerCaches = rs.imgLayerCaches || {}; // log('look at ele', ele.id()); var existingLayer = caches[lvl]; if (existingLayer) { // reuse layer for later eles // log('reuse layer for', ele.id()); layer = existingLayer; continue; } if (!layer || layer.eles.length >= maxElesPerLayer || !boundingBoxInBoundingBox(layer.bb, ele.boundingBox())) { // log('make new layer for ele %s', ele.id()); layer = makeLayer({ insert: true, after: layer }); // if now layer can be built then we can't use layers at this level if (!layer) { return null; } // log('new layer with id %s', layer.id); } if (tmpLayers || allowLazyQueueing) { // log('queue ele %s in layer %s', ele.id(), layer.id); self.queueLayer(layer, ele); } else { // log('draw ele %s in layer %s', ele.id(), layer.id); self.drawEleInLayer(layer, ele, lvl, pxRatio); } layer.eles.push(ele); caches[lvl] = layer; } // log('--'); if (tmpLayers) { // then we only queued the current layerset and can't draw it yet return tmpLayers; } if (allowLazyQueueing) { // log('lazy queue level', lvl); return null; } return layers; }; // a layer may want to use an ele cache of a higher level to avoid blurriness // so the layer level might not equal the ele level LTCp.getEleLevelForLayerLevel = function (lvl, pxRatio) { return lvl; }; LTCp.drawEleInLayer = function (layer, ele, lvl, pxRatio) { var self = this; var r = this.renderer; var context = layer.context; var bb = ele.boundingBox(); if (bb.w === 0 || bb.h === 0 || !ele.visible()) { return; } lvl = self.getEleLevelForLayerLevel(lvl, pxRatio); { r.setImgSmoothing(context, false); } { r.drawCachedElement(context, ele, null, null, lvl, useHighQualityEleTxrReqs); } { r.setImgSmoothing(context, true); } }; LTCp.levelIsComplete = function (lvl, eles) { var self = this; var layers = self.layersByLevel[lvl]; if (!layers || layers.length === 0) { return false; } var numElesInLayers = 0; for (var i = 0; i < layers.length; i++) { var layer = layers[i]; // if there are any eles needed to be drawn yet, the level is not complete if (layer.reqs > 0) { return false; } // if the layer is invalid, the level is not complete if (layer.invalid) { return false; } numElesInLayers += layer.eles.length; } // we should have exactly the number of eles passed in to be complete if (numElesInLayers !== eles.length) { return false; } return true; }; LTCp.validateLayersElesOrdering = function (lvl, eles) { var layers = this.layersByLevel[lvl]; if (!layers) { return; } // if in a layer the eles are not in the same order, then the layer is invalid // (i.e. there is an ele in between the eles in the layer) for (var i = 0; i < layers.length; i++) { var layer = layers[i]; var offset = -1; // find the offset for (var j = 0; j < eles.length; j++) { if (layer.eles[0] === eles[j]) { offset = j; break; } } if (offset < 0) { // then the layer has nonexistent elements and is invalid this.invalidateLayer(layer); continue; } // the eles in the layer must be in the same continuous order, else the layer is invalid var o = offset; for (var j = 0; j < layer.eles.length; j++) { if (layer.eles[j] !== eles[o + j]) { // log('invalidate based on ordering', layer.id); this.invalidateLayer(layer); break; } } } }; LTCp.updateElementsInLayers = function (eles, update) { var self = this; var isEles = element(eles[0]); // collect udpated elements (cascaded from the layers) and update each // layer itself along the way for (var i = 0; i < eles.length; i++) { var req = isEles ? null : eles[i]; var ele = isEles ? eles[i] : eles[i].ele; var rs = ele._private.rscratch; var caches = rs.imgLayerCaches = rs.imgLayerCaches || {}; for (var l = minLvl; l <= maxLvl; l++) { var layer = caches[l]; if (!layer) { continue; } // if update is a request from the ele cache, then it affects only // the matching level if (req && self.getEleLevelForLayerLevel(layer.level) !== req.level) { continue; } update(layer, ele, req); } } }; LTCp.haveLayers = function () { var self = this; var haveLayers = false; for (var l = minLvl; l <= maxLvl; l++) { var layers = self.layersByLevel[l]; if (layers && layers.length > 0) { haveLayers = true; break; } } return haveLayers; }; LTCp.invalidateElements = function (eles) { var self = this; if (eles.length === 0) { return; } self.lastInvalidationTime = performanceNow(); // log('update invalidate layer time from eles'); if (eles.length === 0 || !self.haveLayers()) { return; } self.updateElementsInLayers(eles, function invalAssocLayers(layer, ele, req) { self.invalidateLayer(layer); }); }; LTCp.invalidateLayer = function (layer) { // log('update invalidate layer time'); this.lastInvalidationTime = performanceNow(); if (layer.invalid) { return; } // save cycles var lvl = layer.level; var eles = layer.eles; var layers = this.layersByLevel[lvl]; // log('invalidate layer', layer.id ); removeFromArray(layers, layer); // layer.eles = []; layer.elesQueue = []; layer.invalid = true; if (layer.replacement) { layer.replacement.invalid = true; } for (var i = 0; i < eles.length; i++) { var caches = eles[i]._private.rscratch.imgLayerCaches; if (caches) { caches[lvl] = null; } } }; LTCp.refineElementTextures = function (eles) { var self = this; // log('refine', eles.length); self.updateElementsInLayers(eles, function refineEachEle(layer, ele, req) { var rLyr = layer.replacement; if (!rLyr) { rLyr = layer.replacement = self.makeLayer(layer.bb, layer.level); rLyr.replaces = layer; rLyr.eles = layer.eles; // log('make replacement layer %s for %s with level %s', rLyr.id, layer.id, rLyr.level); } if (!rLyr.reqs) { for (var i = 0; i < rLyr.eles.length; i++) { self.queueLayer(rLyr, rLyr.eles[i]); } // log('queue replacement layer refinement', rLyr.id); } }); }; LTCp.enqueueElementRefinement = function (ele) { this.eleTxrDeqs.merge(ele); this.scheduleElementRefinement(); }; LTCp.queueLayer = function (layer, ele) { var self = this; var q = self.layersQueue; var elesQ = layer.elesQueue; var hasId = elesQ.hasId = elesQ.hasId || {}; // if a layer is going to be replaced, queuing is a waste of time if (layer.replacement) { return; } if (ele) { if (hasId[ele.id()]) { return; } elesQ.push(ele); hasId[ele.id()] = true; } if (layer.reqs) { layer.reqs++; q.updateItem(layer); } else { layer.reqs = 1; q.push(layer); } }; LTCp.dequeue = function (pxRatio) { var self = this; var q = self.layersQueue; var deqd = []; var eleDeqs = 0; while (eleDeqs < maxDeqSize) { if (q.size() === 0) { break; } var layer = q.peek(); // if a layer has been or will be replaced, then don't waste time with it if (layer.replacement) { // log('layer %s in queue skipped b/c it already has a replacement', layer.id); q.pop(); continue; } // if this is a replacement layer that has been superceded, then forget it if (layer.replaces && layer !== layer.replaces.replacement) { // log('layer is no longer the most uptodate replacement; dequeued', layer.id) q.pop(); continue; } if (layer.invalid) { // log('replacement layer %s is invalid; dequeued', layer.id); q.pop(); continue; } var ele = layer.elesQueue.shift(); if (ele) { // log('dequeue layer %s', layer.id); self.drawEleInLayer(layer, ele, layer.level, pxRatio); eleDeqs++; } if (deqd.length === 0) { // we need only one entry in deqd to queue redrawing etc deqd.push(true); } // if the layer has all its eles done, then remove from the queue if (layer.elesQueue.length === 0) { q.pop(); layer.reqs = 0; // log('dequeue of layer %s complete', layer.id); // when a replacement layer is dequeued, it replaces the old layer in the level if (layer.replaces) { self.applyLayerReplacement(layer); } self.requestRedraw(); } } return deqd; }; LTCp.applyLayerReplacement = function (layer) { var self = this; var layersInLevel = self.layersByLevel[layer.level]; var replaced = layer.replaces; var index = layersInLevel.indexOf(replaced); // if the replaced layer is not in the active list for the level, then replacing // refs would be a mistake (i.e. overwriting the true active layer) if (index < 0 || replaced.invalid) { // log('replacement layer would have no effect', layer.id); return; } layersInLevel[index] = layer; // replace level ref // replace refs in eles for (var i = 0; i < layer.eles.length; i++) { var _p = layer.eles[i]._private; var cache = _p.imgLayerCaches = _p.imgLayerCaches || {}; if (cache) { cache[layer.level] = layer; } } // log('apply replacement layer %s over %s', layer.id, replaced.id); self.requestRedraw(); }; LTCp.requestRedraw = debounce_1(function () { var r = this.renderer; r.redrawHint('eles', true); r.redrawHint('drag', true); r.redraw(); }, 100); LTCp.setupDequeueing = defs.setupDequeueing({ deqRedrawThreshold: deqRedrawThreshold, deqCost: deqCost, deqAvgCost: deqAvgCost, deqNoDrawCost: deqNoDrawCost, deqFastCost: deqFastCost, deq: function deq(self, pxRatio) { return self.dequeue(pxRatio); }, onDeqd: noop$1, shouldRedraw: trueify, priority: function priority(self) { return self.renderer.beforeRenderPriorities.lyrTxrDeq; } }); var CRp$a = {}; var impl; function polygon(context, points) { for (var i = 0; i < points.length; i++) { var pt = points[i]; context.lineTo(pt.x, pt.y); } } function triangleBackcurve(context, points, controlPoint) { var firstPt; for (var i = 0; i < points.length; i++) { var pt = points[i]; if (i === 0) { firstPt = pt; } context.lineTo(pt.x, pt.y); } context.quadraticCurveTo(controlPoint.x, controlPoint.y, firstPt.x, firstPt.y); } function triangleTee(context, trianglePoints, teePoints) { if (context.beginPath) { context.beginPath(); } var triPts = trianglePoints; for (var i = 0; i < triPts.length; i++) { var pt = triPts[i]; context.lineTo(pt.x, pt.y); } var teePts = teePoints; var firstTeePt = teePoints[0]; context.moveTo(firstTeePt.x, firstTeePt.y); for (var i = 1; i < teePts.length; i++) { var pt = teePts[i]; context.lineTo(pt.x, pt.y); } if (context.closePath) { context.closePath(); } } function circleTriangle(context, trianglePoints, rx, ry, r) { if (context.beginPath) { context.beginPath(); } context.arc(rx, ry, r, 0, Math.PI * 2, false); var triPts = trianglePoints; var firstTrPt = triPts[0]; context.moveTo(firstTrPt.x, firstTrPt.y); for (var i = 0; i < triPts.length; i++) { var pt = triPts[i]; context.lineTo(pt.x, pt.y); } if (context.closePath) { context.closePath(); } } function circle(context, rx, ry, r) { context.arc(rx, ry, r, 0, Math.PI * 2, false); } CRp$a.arrowShapeImpl = function (name) { return (impl || (impl = { 'polygon': polygon, 'triangle-backcurve': triangleBackcurve, 'triangle-tee': triangleTee, 'circle-triangle': circleTriangle, 'triangle-cross': triangleTee, 'circle': circle }))[name]; }; var CRp$9 = {}; CRp$9.drawElement = function (context, ele, shiftToOriginWithBb, showLabel, showOverlay, showOpacity) { var r = this; if (ele.isNode()) { r.drawNode(context, ele, shiftToOriginWithBb, showLabel, showOverlay, showOpacity); } else { r.drawEdge(context, ele, shiftToOriginWithBb, showLabel, showOverlay, showOpacity); } }; CRp$9.drawElementOverlay = function (context, ele) { var r = this; if (ele.isNode()) { r.drawNodeOverlay(context, ele); } else { r.drawEdgeOverlay(context, ele); } }; CRp$9.drawElementUnderlay = function (context, ele) { var r = this; if (ele.isNode()) { r.drawNodeUnderlay(context, ele); } else { r.drawEdgeUnderlay(context, ele); } }; CRp$9.drawCachedElementPortion = function (context, ele, eleTxrCache, pxRatio, lvl, reason, getRotation, getOpacity) { var r = this; var bb = eleTxrCache.getBoundingBox(ele); if (bb.w === 0 || bb.h === 0) { return; } // ignore zero size case var eleCache = eleTxrCache.getElement(ele, bb, pxRatio, lvl, reason); if (eleCache != null) { var opacity = getOpacity(r, ele); if (opacity === 0) { return; } var theta = getRotation(r, ele); var x1 = bb.x1, y1 = bb.y1, w = bb.w, h = bb.h; var x, y, sx, sy, smooth; if (theta !== 0) { var rotPt = eleTxrCache.getRotationPoint(ele); sx = rotPt.x; sy = rotPt.y; context.translate(sx, sy); context.rotate(theta); smooth = r.getImgSmoothing(context); if (!smooth) { r.setImgSmoothing(context, true); } var off = eleTxrCache.getRotationOffset(ele); x = off.x; y = off.y; } else { x = x1; y = y1; } var oldGlobalAlpha; if (opacity !== 1) { oldGlobalAlpha = context.globalAlpha; context.globalAlpha = oldGlobalAlpha * opacity; } context.drawImage(eleCache.texture.canvas, eleCache.x, 0, eleCache.width, eleCache.height, x, y, w, h); if (opacity !== 1) { context.globalAlpha = oldGlobalAlpha; } if (theta !== 0) { context.rotate(-theta); context.translate(-sx, -sy); if (!smooth) { r.setImgSmoothing(context, false); } } } else { eleTxrCache.drawElement(context, ele); // direct draw fallback } }; var getZeroRotation = function getZeroRotation() { return 0; }; var getLabelRotation = function getLabelRotation(r, ele) { return r.getTextAngle(ele, null); }; var getSourceLabelRotation = function getSourceLabelRotation(r, ele) { return r.getTextAngle(ele, 'source'); }; var getTargetLabelRotation = function getTargetLabelRotation(r, ele) { return r.getTextAngle(ele, 'target'); }; var getOpacity = function getOpacity(r, ele) { return ele.effectiveOpacity(); }; var getTextOpacity = function getTextOpacity(e, ele) { return ele.pstyle('text-opacity').pfValue * ele.effectiveOpacity(); }; CRp$9.drawCachedElement = function (context, ele, pxRatio, extent, lvl, requestHighQuality) { var r = this; var _r$data = r.data, eleTxrCache = _r$data.eleTxrCache, lblTxrCache = _r$data.lblTxrCache, slbTxrCache = _r$data.slbTxrCache, tlbTxrCache = _r$data.tlbTxrCache; var bb = ele.boundingBox(); var reason = requestHighQuality === true ? eleTxrCache.reasons.highQuality : null; if (bb.w === 0 || bb.h === 0 || !ele.visible()) { return; } if (!extent || boundingBoxesIntersect(bb, extent)) { var isEdge = ele.isEdge(); var badLine = ele.element()._private.rscratch.badLine; r.drawElementUnderlay(context, ele); r.drawCachedElementPortion(context, ele, eleTxrCache, pxRatio, lvl, reason, getZeroRotation, getOpacity); if (!isEdge || !badLine) { r.drawCachedElementPortion(context, ele, lblTxrCache, pxRatio, lvl, reason, getLabelRotation, getTextOpacity); } if (isEdge && !badLine) { r.drawCachedElementPortion(context, ele, slbTxrCache, pxRatio, lvl, reason, getSourceLabelRotation, getTextOpacity); r.drawCachedElementPortion(context, ele, tlbTxrCache, pxRatio, lvl, reason, getTargetLabelRotation, getTextOpacity); } r.drawElementOverlay(context, ele); } }; CRp$9.drawElements = function (context, eles) { var r = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; r.drawElement(context, ele); } }; CRp$9.drawCachedElements = function (context, eles, pxRatio, extent) { var r = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; r.drawCachedElement(context, ele, pxRatio, extent); } }; CRp$9.drawCachedNodes = function (context, eles, pxRatio, extent) { var r = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; if (!ele.isNode()) { continue; } r.drawCachedElement(context, ele, pxRatio, extent); } }; CRp$9.drawLayeredElements = function (context, eles, pxRatio, extent) { var r = this; var layers = r.data.lyrTxrCache.getLayers(eles, pxRatio); if (layers) { for (var i = 0; i < layers.length; i++) { var layer = layers[i]; var bb = layer.bb; if (bb.w === 0 || bb.h === 0) { continue; } context.drawImage(layer.canvas, bb.x1, bb.y1, bb.w, bb.h); } } else { // fall back on plain caching if no layers r.drawCachedElements(context, eles, pxRatio, extent); } }; var CRp$8 = {}; CRp$8.drawEdge = function (context, edge, shiftToOriginWithBb) { var drawLabel = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true; var shouldDrawOverlay = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true; var shouldDrawOpacity = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : true; var r = this; var rs = edge._private.rscratch; if (shouldDrawOpacity && !edge.visible()) { return; } // if bezier ctrl pts can not be calculated, then die if (rs.badLine || rs.allpts == null || isNaN(rs.allpts[0])) { // isNaN in case edge is impossible and browser bugs (e.g. safari) return; } var bb; if (shiftToOriginWithBb) { bb = shiftToOriginWithBb; context.translate(-bb.x1, -bb.y1); } var opacity = shouldDrawOpacity ? edge.pstyle('opacity').value : 1; var lineOpacity = shouldDrawOpacity ? edge.pstyle('line-opacity').value : 1; var curveStyle = edge.pstyle('curve-style').value; var lineStyle = edge.pstyle('line-style').value; var edgeWidth = edge.pstyle('width').pfValue; var lineCap = edge.pstyle('line-cap').value; var effectiveLineOpacity = opacity * lineOpacity; // separate arrow opacity would require arrow-opacity property var effectiveArrowOpacity = opacity * lineOpacity; var drawLine = function drawLine() { var strokeOpacity = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : effectiveLineOpacity; if (curveStyle === 'straight-triangle') { r.eleStrokeStyle(context, edge, strokeOpacity); r.drawEdgeTrianglePath(edge, context, rs.allpts); } else { context.lineWidth = edgeWidth; context.lineCap = lineCap; r.eleStrokeStyle(context, edge, strokeOpacity); r.drawEdgePath(edge, context, rs.allpts, lineStyle); context.lineCap = 'butt'; // reset for other drawing functions } }; var drawOverlay = function drawOverlay() { if (!shouldDrawOverlay) { return; } r.drawEdgeOverlay(context, edge); }; var drawUnderlay = function drawUnderlay() { if (!shouldDrawOverlay) { return; } r.drawEdgeUnderlay(context, edge); }; var drawArrows = function drawArrows() { var arrowOpacity = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : effectiveArrowOpacity; r.drawArrowheads(context, edge, arrowOpacity); }; var drawText = function drawText() { r.drawElementText(context, edge, null, drawLabel); }; context.lineJoin = 'round'; var ghost = edge.pstyle('ghost').value === 'yes'; if (ghost) { var gx = edge.pstyle('ghost-offset-x').pfValue; var gy = edge.pstyle('ghost-offset-y').pfValue; var ghostOpacity = edge.pstyle('ghost-opacity').value; var effectiveGhostOpacity = effectiveLineOpacity * ghostOpacity; context.translate(gx, gy); drawLine(effectiveGhostOpacity); drawArrows(effectiveGhostOpacity); context.translate(-gx, -gy); } drawUnderlay(); drawLine(); drawArrows(); drawOverlay(); drawText(); if (shiftToOriginWithBb) { context.translate(bb.x1, bb.y1); } }; var drawEdgeOverlayUnderlay = function drawEdgeOverlayUnderlay(overlayOrUnderlay) { if (!['overlay', 'underlay'].includes(overlayOrUnderlay)) { throw new Error('Invalid state'); } return function (context, edge) { if (!edge.visible()) { return; } var opacity = edge.pstyle("".concat(overlayOrUnderlay, "-opacity")).value; if (opacity === 0) { return; } var r = this; var usePaths = r.usePaths(); var rs = edge._private.rscratch; var padding = edge.pstyle("".concat(overlayOrUnderlay, "-padding")).pfValue; var width = 2 * padding; var color = edge.pstyle("".concat(overlayOrUnderlay, "-color")).value; context.lineWidth = width; if (rs.edgeType === 'self' && !usePaths) { context.lineCap = 'butt'; } else { context.lineCap = 'round'; } r.colorStrokeStyle(context, color[0], color[1], color[2], opacity); r.drawEdgePath(edge, context, rs.allpts, 'solid'); }; }; CRp$8.drawEdgeOverlay = drawEdgeOverlayUnderlay('overlay'); CRp$8.drawEdgeUnderlay = drawEdgeOverlayUnderlay('underlay'); CRp$8.drawEdgePath = function (edge, context, pts, type) { var rs = edge._private.rscratch; var canvasCxt = context; var path; var pathCacheHit = false; var usePaths = this.usePaths(); var lineDashPattern = edge.pstyle('line-dash-pattern').pfValue; var lineDashOffset = edge.pstyle('line-dash-offset').pfValue; if (usePaths) { var pathCacheKey = pts.join('$'); var keyMatches = rs.pathCacheKey && rs.pathCacheKey === pathCacheKey; if (keyMatches) { path = context = rs.pathCache; pathCacheHit = true; } else { path = context = new Path2D(); rs.pathCacheKey = pathCacheKey; rs.pathCache = path; } } if (canvasCxt.setLineDash) { // for very outofdate browsers switch (type) { case 'dotted': canvasCxt.setLineDash([1, 1]); break; case 'dashed': canvasCxt.setLineDash(lineDashPattern); canvasCxt.lineDashOffset = lineDashOffset; break; case 'solid': canvasCxt.setLineDash([]); break; } } if (!pathCacheHit && !rs.badLine) { if (context.beginPath) { context.beginPath(); } context.moveTo(pts[0], pts[1]); switch (rs.edgeType) { case 'bezier': case 'self': case 'compound': case 'multibezier': for (var i = 2; i + 3 < pts.length; i += 4) { context.quadraticCurveTo(pts[i], pts[i + 1], pts[i + 2], pts[i + 3]); } break; case 'straight': case 'haystack': for (var _i = 2; _i + 1 < pts.length; _i += 2) { context.lineTo(pts[_i], pts[_i + 1]); } break; case 'segments': if (rs.isRound) { var _iterator = _createForOfIteratorHelper(rs.roundCorners), _step; try { for (_iterator.s(); !(_step = _iterator.n()).done;) { var corner = _step.value; drawPreparedRoundCorner(context, corner); } } catch (err) { _iterator.e(err); } finally { _iterator.f(); } context.lineTo(pts[pts.length - 2], pts[pts.length - 1]); } else { for (var _i2 = 2; _i2 + 1 < pts.length; _i2 += 2) { context.lineTo(pts[_i2], pts[_i2 + 1]); } } break; } } context = canvasCxt; if (usePaths) { context.stroke(path); } else { context.stroke(); } // reset any line dashes if (context.setLineDash) { // for very outofdate browsers context.setLineDash([]); } }; CRp$8.drawEdgeTrianglePath = function (edge, context, pts) { // use line stroke style for triangle fill style context.fillStyle = context.strokeStyle; var edgeWidth = edge.pstyle('width').pfValue; for (var i = 0; i + 1 < pts.length; i += 2) { var vector = [pts[i + 2] - pts[i], pts[i + 3] - pts[i + 1]]; var length = Math.sqrt(vector[0] * vector[0] + vector[1] * vector[1]); var normal = [vector[1] / length, -vector[0] / length]; var triangleHead = [normal[0] * edgeWidth / 2, normal[1] * edgeWidth / 2]; context.beginPath(); context.moveTo(pts[i] - triangleHead[0], pts[i + 1] - triangleHead[1]); context.lineTo(pts[i] + triangleHead[0], pts[i + 1] + triangleHead[1]); context.lineTo(pts[i + 2], pts[i + 3]); context.closePath(); context.fill(); } }; CRp$8.drawArrowheads = function (context, edge, opacity) { var rs = edge._private.rscratch; var isHaystack = rs.edgeType === 'haystack'; if (!isHaystack) { this.drawArrowhead(context, edge, 'source', rs.arrowStartX, rs.arrowStartY, rs.srcArrowAngle, opacity); } this.drawArrowhead(context, edge, 'mid-target', rs.midX, rs.midY, rs.midtgtArrowAngle, opacity); this.drawArrowhead(context, edge, 'mid-source', rs.midX, rs.midY, rs.midsrcArrowAngle, opacity); if (!isHaystack) { this.drawArrowhead(context, edge, 'target', rs.arrowEndX, rs.arrowEndY, rs.tgtArrowAngle, opacity); } }; CRp$8.drawArrowhead = function (context, edge, prefix, x, y, angle, opacity) { if (isNaN(x) || x == null || isNaN(y) || y == null || isNaN(angle) || angle == null) { return; } var self = this; var arrowShape = edge.pstyle(prefix + '-arrow-shape').value; if (arrowShape === 'none') { return; } var arrowClearFill = edge.pstyle(prefix + '-arrow-fill').value === 'hollow' ? 'both' : 'filled'; var arrowFill = edge.pstyle(prefix + '-arrow-fill').value; var edgeWidth = edge.pstyle('width').pfValue; var pArrowWidth = edge.pstyle(prefix + '-arrow-width'); var arrowWidth = pArrowWidth.value === 'match-line' ? edgeWidth : pArrowWidth.pfValue; if (pArrowWidth.units === '%') arrowWidth *= edgeWidth; var edgeOpacity = edge.pstyle('opacity').value; if (opacity === undefined) { opacity = edgeOpacity; } var gco = context.globalCompositeOperation; if (opacity !== 1 || arrowFill === 'hollow') { // then extra clear is needed context.globalCompositeOperation = 'destination-out'; self.colorFillStyle(context, 255, 255, 255, 1); self.colorStrokeStyle(context, 255, 255, 255, 1); self.drawArrowShape(edge, context, arrowClearFill, edgeWidth, arrowShape, arrowWidth, x, y, angle); context.globalCompositeOperation = gco; } // otherwise, the opaque arrow clears it for free :) var color = edge.pstyle(prefix + '-arrow-color').value; self.colorFillStyle(context, color[0], color[1], color[2], opacity); self.colorStrokeStyle(context, color[0], color[1], color[2], opacity); self.drawArrowShape(edge, context, arrowFill, edgeWidth, arrowShape, arrowWidth, x, y, angle); }; CRp$8.drawArrowShape = function (edge, context, fill, edgeWidth, shape, shapeWidth, x, y, angle) { var r = this; var usePaths = this.usePaths() && shape !== 'triangle-cross'; var pathCacheHit = false; var path; var canvasContext = context; var translation = { x: x, y: y }; var scale = edge.pstyle('arrow-scale').value; var size = this.getArrowWidth(edgeWidth, scale); var shapeImpl = r.arrowShapes[shape]; if (usePaths) { var cache = r.arrowPathCache = r.arrowPathCache || []; var key = hashString(shape); var cachedPath = cache[key]; if (cachedPath != null) { path = context = cachedPath; pathCacheHit = true; } else { path = context = new Path2D(); cache[key] = path; } } if (!pathCacheHit) { if (context.beginPath) { context.beginPath(); } if (usePaths) { // store in the path cache with values easily manipulated later shapeImpl.draw(context, 1, 0, { x: 0, y: 0 }, 1); } else { shapeImpl.draw(context, size, angle, translation, edgeWidth); } if (context.closePath) { context.closePath(); } } context = canvasContext; if (usePaths) { // set transform to arrow position/orientation context.translate(x, y); context.rotate(angle); context.scale(size, size); } if (fill === 'filled' || fill === 'both') { if (usePaths) { context.fill(path); } else { context.fill(); } } if (fill === 'hollow' || fill === 'both') { context.lineWidth = shapeWidth / (usePaths ? size : 1); context.lineJoin = 'miter'; if (usePaths) { context.stroke(path); } else { context.stroke(); } } if (usePaths) { // reset transform by applying inverse context.scale(1 / size, 1 / size); context.rotate(-angle); context.translate(-x, -y); } }; var CRp$7 = {}; CRp$7.safeDrawImage = function (context, img, ix, iy, iw, ih, x, y, w, h) { // detect problematic cases for old browsers with bad images (cheaper than try-catch) if (iw <= 0 || ih <= 0 || w <= 0 || h <= 0) { return; } try { context.drawImage(img, ix, iy, iw, ih, x, y, w, h); } catch (e) { warn(e); } }; CRp$7.drawInscribedImage = function (context, img, node, index, nodeOpacity) { var r = this; var pos = node.position(); var nodeX = pos.x; var nodeY = pos.y; var styleObj = node.cy().style(); var getIndexedStyle = styleObj.getIndexedStyle.bind(styleObj); var fit = getIndexedStyle(node, 'background-fit', 'value', index); var repeat = getIndexedStyle(node, 'background-repeat', 'value', index); var nodeW = node.width(); var nodeH = node.height(); var paddingX2 = node.padding() * 2; var nodeTW = nodeW + (getIndexedStyle(node, 'background-width-relative-to', 'value', index) === 'inner' ? 0 : paddingX2); var nodeTH = nodeH + (getIndexedStyle(node, 'background-height-relative-to', 'value', index) === 'inner' ? 0 : paddingX2); var rs = node._private.rscratch; var clip = getIndexedStyle(node, 'background-clip', 'value', index); var shouldClip = clip === 'node'; var imgOpacity = getIndexedStyle(node, 'background-image-opacity', 'value', index) * nodeOpacity; var smooth = getIndexedStyle(node, 'background-image-smoothing', 'value', index); var cornerRadius = node.pstyle('corner-radius').value; if (cornerRadius !== 'auto') cornerRadius = node.pstyle('corner-radius').pfValue; var imgW = img.width || img.cachedW; var imgH = img.height || img.cachedH; // workaround for broken browsers like ie if (null == imgW || null == imgH) { document.body.appendChild(img); // eslint-disable-line no-undef imgW = img.cachedW = img.width || img.offsetWidth; imgH = img.cachedH = img.height || img.offsetHeight; document.body.removeChild(img); // eslint-disable-line no-undef } var w = imgW; var h = imgH; if (getIndexedStyle(node, 'background-width', 'value', index) !== 'auto') { if (getIndexedStyle(node, 'background-width', 'units', index) === '%') { w = getIndexedStyle(node, 'background-width', 'pfValue', index) * nodeTW; } else { w = getIndexedStyle(node, 'background-width', 'pfValue', index); } } if (getIndexedStyle(node, 'background-height', 'value', index) !== 'auto') { if (getIndexedStyle(node, 'background-height', 'units', index) === '%') { h = getIndexedStyle(node, 'background-height', 'pfValue', index) * nodeTH; } else { h = getIndexedStyle(node, 'background-height', 'pfValue', index); } } if (w === 0 || h === 0) { return; // no point in drawing empty image (and chrome is broken in this case) } if (fit === 'contain') { var scale = Math.min(nodeTW / w, nodeTH / h); w *= scale; h *= scale; } else if (fit === 'cover') { var scale = Math.max(nodeTW / w, nodeTH / h); w *= scale; h *= scale; } var x = nodeX - nodeTW / 2; // left var posXUnits = getIndexedStyle(node, 'background-position-x', 'units', index); var posXPfVal = getIndexedStyle(node, 'background-position-x', 'pfValue', index); if (posXUnits === '%') { x += (nodeTW - w) * posXPfVal; } else { x += posXPfVal; } var offXUnits = getIndexedStyle(node, 'background-offset-x', 'units', index); var offXPfVal = getIndexedStyle(node, 'background-offset-x', 'pfValue', index); if (offXUnits === '%') { x += (nodeTW - w) * offXPfVal; } else { x += offXPfVal; } var y = nodeY - nodeTH / 2; // top var posYUnits = getIndexedStyle(node, 'background-position-y', 'units', index); var posYPfVal = getIndexedStyle(node, 'background-position-y', 'pfValue', index); if (posYUnits === '%') { y += (nodeTH - h) * posYPfVal; } else { y += posYPfVal; } var offYUnits = getIndexedStyle(node, 'background-offset-y', 'units', index); var offYPfVal = getIndexedStyle(node, 'background-offset-y', 'pfValue', index); if (offYUnits === '%') { y += (nodeTH - h) * offYPfVal; } else { y += offYPfVal; } if (rs.pathCache) { x -= nodeX; y -= nodeY; nodeX = 0; nodeY = 0; } var gAlpha = context.globalAlpha; context.globalAlpha = imgOpacity; var smoothingEnabled = r.getImgSmoothing(context); var isSmoothingSwitched = false; if (smooth === 'no' && smoothingEnabled) { r.setImgSmoothing(context, false); isSmoothingSwitched = true; } else if (smooth === 'yes' && !smoothingEnabled) { r.setImgSmoothing(context, true); isSmoothingSwitched = true; } if (repeat === 'no-repeat') { if (shouldClip) { context.save(); if (rs.pathCache) { context.clip(rs.pathCache); } else { r.nodeShapes[r.getNodeShape(node)].draw(context, nodeX, nodeY, nodeTW, nodeTH, cornerRadius, rs); context.clip(); } } r.safeDrawImage(context, img, 0, 0, imgW, imgH, x, y, w, h); if (shouldClip) { context.restore(); } } else { var pattern = context.createPattern(img, repeat); context.fillStyle = pattern; r.nodeShapes[r.getNodeShape(node)].draw(context, nodeX, nodeY, nodeTW, nodeTH, cornerRadius, rs); context.translate(x, y); context.fill(); context.translate(-x, -y); } context.globalAlpha = gAlpha; if (isSmoothingSwitched) { r.setImgSmoothing(context, smoothingEnabled); } }; var CRp$6 = {}; CRp$6.eleTextBiggerThanMin = function (ele, scale) { if (!scale) { var zoom = ele.cy().zoom(); var pxRatio = this.getPixelRatio(); var lvl = Math.ceil(log2(zoom * pxRatio)); // the effective texture level scale = Math.pow(2, lvl); } var computedSize = ele.pstyle('font-size').pfValue * scale; var minSize = ele.pstyle('min-zoomed-font-size').pfValue; if (computedSize < minSize) { return false; } return true; }; CRp$6.drawElementText = function (context, ele, shiftToOriginWithBb, force, prefix) { var useEleOpacity = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : true; var r = this; if (force == null) { if (useEleOpacity && !r.eleTextBiggerThanMin(ele)) { return; } } else if (force === false) { return; } if (ele.isNode()) { var label = ele.pstyle('label'); if (!label || !label.value) { return; } var justification = r.getLabelJustification(ele); context.textAlign = justification; context.textBaseline = 'bottom'; } else { var badLine = ele.element()._private.rscratch.badLine; var _label = ele.pstyle('label'); var srcLabel = ele.pstyle('source-label'); var tgtLabel = ele.pstyle('target-label'); if (badLine || (!_label || !_label.value) && (!srcLabel || !srcLabel.value) && (!tgtLabel || !tgtLabel.value)) { return; } context.textAlign = 'center'; context.textBaseline = 'bottom'; } var applyRotation = !shiftToOriginWithBb; var bb; if (shiftToOriginWithBb) { bb = shiftToOriginWithBb; context.translate(-bb.x1, -bb.y1); } if (prefix == null) { r.drawText(context, ele, null, applyRotation, useEleOpacity); if (ele.isEdge()) { r.drawText(context, ele, 'source', applyRotation, useEleOpacity); r.drawText(context, ele, 'target', applyRotation, useEleOpacity); } } else { r.drawText(context, ele, prefix, applyRotation, useEleOpacity); } if (shiftToOriginWithBb) { context.translate(bb.x1, bb.y1); } }; CRp$6.getFontCache = function (context) { var cache; this.fontCaches = this.fontCaches || []; for (var i = 0; i < this.fontCaches.length; i++) { cache = this.fontCaches[i]; if (cache.context === context) { return cache; } } cache = { context: context }; this.fontCaches.push(cache); return cache; }; // set up canvas context with font // returns transformed text string CRp$6.setupTextStyle = function (context, ele) { var useEleOpacity = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true; // Font style var labelStyle = ele.pstyle('font-style').strValue; var labelSize = ele.pstyle('font-size').pfValue + 'px'; var labelFamily = ele.pstyle('font-family').strValue; var labelWeight = ele.pstyle('font-weight').strValue; var opacity = useEleOpacity ? ele.effectiveOpacity() * ele.pstyle('text-opacity').value : 1; var outlineOpacity = ele.pstyle('text-outline-opacity').value * opacity; var color = ele.pstyle('color').value; var outlineColor = ele.pstyle('text-outline-color').value; context.font = labelStyle + ' ' + labelWeight + ' ' + labelSize + ' ' + labelFamily; context.lineJoin = 'round'; // so text outlines aren't jagged this.colorFillStyle(context, color[0], color[1], color[2], opacity); this.colorStrokeStyle(context, outlineColor[0], outlineColor[1], outlineColor[2], outlineOpacity); }; // TODO ensure re-used function roundRect(ctx, x, y, width, height) { var radius = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : 5; var stroke = arguments.length > 6 ? arguments[6] : undefined; ctx.beginPath(); ctx.moveTo(x + radius, y); ctx.lineTo(x + width - radius, y); ctx.quadraticCurveTo(x + width, y, x + width, y + radius); ctx.lineTo(x + width, y + height - radius); ctx.quadraticCurveTo(x + width, y + height, x + width - radius, y + height); ctx.lineTo(x + radius, y + height); ctx.quadraticCurveTo(x, y + height, x, y + height - radius); ctx.lineTo(x, y + radius); ctx.quadraticCurveTo(x, y, x + radius, y); ctx.closePath(); if (stroke) ctx.stroke();else ctx.fill(); } CRp$6.getTextAngle = function (ele, prefix) { var theta; var _p = ele._private; var rscratch = _p.rscratch; var pdash = prefix ? prefix + '-' : ''; var rotation = ele.pstyle(pdash + 'text-rotation'); var textAngle = getPrefixedProperty(rscratch, 'labelAngle', prefix); if (rotation.strValue === 'autorotate') { theta = ele.isEdge() ? textAngle : 0; } else if (rotation.strValue === 'none') { theta = 0; } else { theta = rotation.pfValue; } return theta; }; CRp$6.drawText = function (context, ele, prefix) { var applyRotation = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true; var useEleOpacity = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true; var _p = ele._private; var rscratch = _p.rscratch; var parentOpacity = useEleOpacity ? ele.effectiveOpacity() : 1; if (useEleOpacity && (parentOpacity === 0 || ele.pstyle('text-opacity').value === 0)) { return; } // use 'main' as an alias for the main label (i.e. null prefix) if (prefix === 'main') { prefix = null; } var textX = getPrefixedProperty(rscratch, 'labelX', prefix); var textY = getPrefixedProperty(rscratch, 'labelY', prefix); var orgTextX, orgTextY; // used for rotation var text = this.getLabelText(ele, prefix); if (text != null && text !== '' && !isNaN(textX) && !isNaN(textY)) { this.setupTextStyle(context, ele, useEleOpacity); var pdash = prefix ? prefix + '-' : ''; var textW = getPrefixedProperty(rscratch, 'labelWidth', prefix); var textH = getPrefixedProperty(rscratch, 'labelHeight', prefix); var marginX = ele.pstyle(pdash + 'text-margin-x').pfValue; var marginY = ele.pstyle(pdash + 'text-margin-y').pfValue; var isEdge = ele.isEdge(); var halign = ele.pstyle('text-halign').value; var valign = ele.pstyle('text-valign').value; if (isEdge) { halign = 'center'; valign = 'center'; } textX += marginX; textY += marginY; var theta; if (!applyRotation) { theta = 0; } else { theta = this.getTextAngle(ele, prefix); } if (theta !== 0) { orgTextX = textX; orgTextY = textY; context.translate(orgTextX, orgTextY); context.rotate(theta); textX = 0; textY = 0; } switch (valign) { case 'top': break; case 'center': textY += textH / 2; break; case 'bottom': textY += textH; break; } var backgroundOpacity = ele.pstyle('text-background-opacity').value; var borderOpacity = ele.pstyle('text-border-opacity').value; var textBorderWidth = ele.pstyle('text-border-width').pfValue; var backgroundPadding = ele.pstyle('text-background-padding').pfValue; var styleShape = ele.pstyle('text-background-shape').strValue; var rounded = styleShape.indexOf('round') === 0; var roundRadius = 2; if (backgroundOpacity > 0 || textBorderWidth > 0 && borderOpacity > 0) { var bgX = textX - backgroundPadding; switch (halign) { case 'left': bgX -= textW; break; case 'center': bgX -= textW / 2; break; } var bgY = textY - textH - backgroundPadding; var bgW = textW + 2 * backgroundPadding; var bgH = textH + 2 * backgroundPadding; if (backgroundOpacity > 0) { var textFill = context.fillStyle; var textBackgroundColor = ele.pstyle('text-background-color').value; context.fillStyle = 'rgba(' + textBackgroundColor[0] + ',' + textBackgroundColor[1] + ',' + textBackgroundColor[2] + ',' + backgroundOpacity * parentOpacity + ')'; if (rounded) { roundRect(context, bgX, bgY, bgW, bgH, roundRadius); } else { context.fillRect(bgX, bgY, bgW, bgH); } context.fillStyle = textFill; } if (textBorderWidth > 0 && borderOpacity > 0) { var textStroke = context.strokeStyle; var textLineWidth = context.lineWidth; var textBorderColor = ele.pstyle('text-border-color').value; var textBorderStyle = ele.pstyle('text-border-style').value; context.strokeStyle = 'rgba(' + textBorderColor[0] + ',' + textBorderColor[1] + ',' + textBorderColor[2] + ',' + borderOpacity * parentOpacity + ')'; context.lineWidth = textBorderWidth; if (context.setLineDash) { // for very outofdate browsers switch (textBorderStyle) { case 'dotted': context.setLineDash([1, 1]); break; case 'dashed': context.setLineDash([4, 2]); break; case 'double': context.lineWidth = textBorderWidth / 4; // 50% reserved for white between the two borders context.setLineDash([]); break; case 'solid': context.setLineDash([]); break; } } if (rounded) { roundRect(context, bgX, bgY, bgW, bgH, roundRadius, 'stroke'); } else { context.strokeRect(bgX, bgY, bgW, bgH); } if (textBorderStyle === 'double') { var whiteWidth = textBorderWidth / 2; if (rounded) { roundRect(context, bgX + whiteWidth, bgY + whiteWidth, bgW - whiteWidth * 2, bgH - whiteWidth * 2, roundRadius, 'stroke'); } else { context.strokeRect(bgX + whiteWidth, bgY + whiteWidth, bgW - whiteWidth * 2, bgH - whiteWidth * 2); } } if (context.setLineDash) { // for very outofdate browsers context.setLineDash([]); } context.lineWidth = textLineWidth; context.strokeStyle = textStroke; } } var lineWidth = 2 * ele.pstyle('text-outline-width').pfValue; // *2 b/c the stroke is drawn centred on the middle if (lineWidth > 0) { context.lineWidth = lineWidth; } if (ele.pstyle('text-wrap').value === 'wrap') { var lines = getPrefixedProperty(rscratch, 'labelWrapCachedLines', prefix); var lineHeight = getPrefixedProperty(rscratch, 'labelLineHeight', prefix); var halfTextW = textW / 2; var justification = this.getLabelJustification(ele); if (justification === 'auto') ; else if (halign === 'left') { // auto justification : right if (justification === 'left') { textX += -textW; } else if (justification === 'center') { textX += -halfTextW; } // else same as auto } else if (halign === 'center') { // auto justfication : center if (justification === 'left') { textX += -halfTextW; } else if (justification === 'right') { textX += halfTextW; } // else same as auto } else if (halign === 'right') { // auto justification : left if (justification === 'center') { textX += halfTextW; } else if (justification === 'right') { textX += textW; } // else same as auto } switch (valign) { case 'top': textY -= (lines.length - 1) * lineHeight; break; case 'center': case 'bottom': textY -= (lines.length - 1) * lineHeight; break; } for (var l = 0; l < lines.length; l++) { if (lineWidth > 0) { context.strokeText(lines[l], textX, textY); } context.fillText(lines[l], textX, textY); textY += lineHeight; } } else { if (lineWidth > 0) { context.strokeText(text, textX, textY); } context.fillText(text, textX, textY); } if (theta !== 0) { context.rotate(-theta); context.translate(-orgTextX, -orgTextY); } } }; /* global Path2D */ var CRp$5 = {}; CRp$5.drawNode = function (context, node, shiftToOriginWithBb) { var drawLabel = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true; var shouldDrawOverlay = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true; var shouldDrawOpacity = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : true; var r = this; var nodeWidth, nodeHeight; var _p = node._private; var rs = _p.rscratch; var pos = node.position(); if (!number$1(pos.x) || !number$1(pos.y)) { return; // can't draw node with undefined position } if (shouldDrawOpacity && !node.visible()) { return; } var eleOpacity = shouldDrawOpacity ? node.effectiveOpacity() : 1; var usePaths = r.usePaths(); var path; var pathCacheHit = false; var padding = node.padding(); nodeWidth = node.width() + 2 * padding; nodeHeight = node.height() + 2 * padding; // // setup shift var bb; if (shiftToOriginWithBb) { bb = shiftToOriginWithBb; context.translate(-bb.x1, -bb.y1); } // // load bg image var bgImgProp = node.pstyle('background-image'); var urls = bgImgProp.value; var urlDefined = new Array(urls.length); var image = new Array(urls.length); var numImages = 0; for (var i = 0; i < urls.length; i++) { var url = urls[i]; var defd = urlDefined[i] = url != null && url !== 'none'; if (defd) { var bgImgCrossOrigin = node.cy().style().getIndexedStyle(node, 'background-image-crossorigin', 'value', i); numImages++; // get image, and if not loaded then ask to redraw when later loaded image[i] = r.getCachedImage(url, bgImgCrossOrigin, function () { _p.backgroundTimestamp = Date.now(); node.emitAndNotify('background'); }); } } // // setup styles var darkness = node.pstyle('background-blacken').value; var borderWidth = node.pstyle('border-width').pfValue; var bgOpacity = node.pstyle('background-opacity').value * eleOpacity; var borderColor = node.pstyle('border-color').value; var borderStyle = node.pstyle('border-style').value; var borderJoin = node.pstyle('border-join').value; var borderCap = node.pstyle('border-cap').value; var borderPosition = node.pstyle('border-position').value; var borderPattern = node.pstyle('border-dash-pattern').pfValue; var borderOffset = node.pstyle('border-dash-offset').pfValue; var borderOpacity = node.pstyle('border-opacity').value * eleOpacity; var outlineWidth = node.pstyle('outline-width').pfValue; var outlineColor = node.pstyle('outline-color').value; var outlineStyle = node.pstyle('outline-style').value; var outlineOpacity = node.pstyle('outline-opacity').value * eleOpacity; var outlineOffset = node.pstyle('outline-offset').value; var cornerRadius = node.pstyle('corner-radius').value; if (cornerRadius !== 'auto') cornerRadius = node.pstyle('corner-radius').pfValue; var setupShapeColor = function setupShapeColor() { var bgOpy = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : bgOpacity; r.eleFillStyle(context, node, bgOpy); }; var setupBorderColor = function setupBorderColor() { var bdrOpy = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : borderOpacity; r.colorStrokeStyle(context, borderColor[0], borderColor[1], borderColor[2], bdrOpy); }; var setupOutlineColor = function setupOutlineColor() { var otlnOpy = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : outlineOpacity; r.colorStrokeStyle(context, outlineColor[0], outlineColor[1], outlineColor[2], otlnOpy); }; // // setup shape var getPath = function getPath(width, height, shape, points) { var pathCache = r.nodePathCache = r.nodePathCache || []; var key = hashStrings(shape === 'polygon' ? shape + ',' + points.join(',') : shape, '' + height, '' + width, '' + cornerRadius); var cachedPath = pathCache[key]; var path; var cacheHit = false; if (cachedPath != null) { path = cachedPath; cacheHit = true; rs.pathCache = path; } else { path = new Path2D(); pathCache[key] = rs.pathCache = path; } return { path: path, cacheHit: cacheHit }; }; var styleShape = node.pstyle('shape').strValue; var shapePts = node.pstyle('shape-polygon-points').pfValue; if (usePaths) { context.translate(pos.x, pos.y); var shapePath = getPath(nodeWidth, nodeHeight, styleShape, shapePts); path = shapePath.path; pathCacheHit = shapePath.cacheHit; } var drawShape = function drawShape() { if (!pathCacheHit) { var npos = pos; if (usePaths) { npos = { x: 0, y: 0 }; } r.nodeShapes[r.getNodeShape(node)].draw(path || context, npos.x, npos.y, nodeWidth, nodeHeight, cornerRadius, rs); } if (usePaths) { context.fill(path); } else { context.fill(); } }; var drawImages = function drawImages() { var nodeOpacity = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : eleOpacity; var inside = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; var prevBging = _p.backgrounding; var totalCompleted = 0; for (var _i = 0; _i < image.length; _i++) { var bgContainment = node.cy().style().getIndexedStyle(node, 'background-image-containment', 'value', _i); if (inside && bgContainment === 'over' || !inside && bgContainment === 'inside') { totalCompleted++; continue; } if (urlDefined[_i] && image[_i].complete && !image[_i].error) { totalCompleted++; r.drawInscribedImage(context, image[_i], node, _i, nodeOpacity); } } _p.backgrounding = !(totalCompleted === numImages); if (prevBging !== _p.backgrounding) { // update style b/c :backgrounding state changed node.updateStyle(false); } }; var drawPie = function drawPie() { var redrawShape = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false; var pieOpacity = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : eleOpacity; if (r.hasPie(node)) { r.drawPie(context, node, pieOpacity); // redraw/restore path if steps after pie need it if (redrawShape) { if (!usePaths) { r.nodeShapes[r.getNodeShape(node)].draw(context, pos.x, pos.y, nodeWidth, nodeHeight, cornerRadius, rs); } } } }; var darken = function darken() { var darkenOpacity = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : eleOpacity; var opacity = (darkness > 0 ? darkness : -darkness) * darkenOpacity; var c = darkness > 0 ? 0 : 255; if (darkness !== 0) { r.colorFillStyle(context, c, c, c, opacity); if (usePaths) { context.fill(path); } else { context.fill(); } } }; var drawBorder = function drawBorder() { if (borderWidth > 0) { context.lineWidth = borderWidth; context.lineCap = borderCap; context.lineJoin = borderJoin; if (context.setLineDash) { // for very outofdate browsers switch (borderStyle) { case 'dotted': context.setLineDash([1, 1]); break; case 'dashed': context.setLineDash(borderPattern); context.lineDashOffset = borderOffset; break; case 'solid': case 'double': context.setLineDash([]); break; } } if (borderPosition !== 'center') { context.save(); context.lineWidth *= 2; if (borderPosition === 'inside') { usePaths ? context.clip(path) : context.clip(); } else { var region = new Path2D(); region.rect(-nodeWidth / 2 - borderWidth, -nodeHeight / 2 - borderWidth, nodeWidth + 2 * borderWidth, nodeHeight + 2 * borderWidth); region.addPath(path); context.clip(region, 'evenodd'); } usePaths ? context.stroke(path) : context.stroke(); context.restore(); } else { usePaths ? context.stroke(path) : context.stroke(); } if (borderStyle === 'double') { context.lineWidth = borderWidth / 3; var gco = context.globalCompositeOperation; context.globalCompositeOperation = 'destination-out'; if (usePaths) { context.stroke(path); } else { context.stroke(); } context.globalCompositeOperation = gco; } // reset in case we changed the border style if (context.setLineDash) { // for very outofdate browsers context.setLineDash([]); } } }; var drawOutline = function drawOutline() { if (outlineWidth > 0) { context.lineWidth = outlineWidth; context.lineCap = 'butt'; if (context.setLineDash) { // for very outofdate browsers switch (outlineStyle) { case 'dotted': context.setLineDash([1, 1]); break; case 'dashed': context.setLineDash([4, 2]); break; case 'solid': case 'double': context.setLineDash([]); break; } } var npos = pos; if (usePaths) { npos = { x: 0, y: 0 }; } var shape = r.getNodeShape(node); var bWidth = borderWidth; if (borderPosition === 'inside') bWidth = 0; if (borderPosition === 'outside') bWidth *= 2; var scaleX = (nodeWidth + bWidth + (outlineWidth + outlineOffset)) / nodeWidth; var scaleY = (nodeHeight + bWidth + (outlineWidth + outlineOffset)) / nodeHeight; var sWidth = nodeWidth * scaleX; var sHeight = nodeHeight * scaleY; var points = r.nodeShapes[shape].points; var _path; if (usePaths) { var outlinePath = getPath(sWidth, sHeight, shape, points); _path = outlinePath.path; } // draw the outline path, either by using expanded points or by scaling // the dimensions, depending on shape if (shape === "ellipse") { r.drawEllipsePath(_path || context, npos.x, npos.y, sWidth, sHeight); } else if (['round-diamond', 'round-heptagon', 'round-hexagon', 'round-octagon', 'round-pentagon', 'round-polygon', 'round-triangle', 'round-tag'].includes(shape)) { var sMult = 0; var offsetX = 0; var offsetY = 0; if (shape === 'round-diamond') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.4; } else if (shape === 'round-heptagon') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.075; offsetY = -(bWidth / 2 + outlineOffset + outlineWidth) / 35; } else if (shape === 'round-hexagon') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.12; } else if (shape === 'round-pentagon') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.13; offsetY = -(bWidth / 2 + outlineOffset + outlineWidth) / 15; } else if (shape === 'round-tag') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.12; offsetX = (bWidth / 2 + outlineWidth + outlineOffset) * .07; } else if (shape === 'round-triangle') { sMult = (bWidth + outlineOffset + outlineWidth) * (Math.PI / 2); offsetY = -(bWidth + outlineOffset / 2 + outlineWidth) / Math.PI; } if (sMult !== 0) { scaleX = (nodeWidth + sMult) / nodeWidth; sWidth = nodeWidth * scaleX; if (!['round-hexagon', 'round-tag'].includes(shape)) { scaleY = (nodeHeight + sMult) / nodeHeight; sHeight = nodeHeight * scaleY; } } cornerRadius = cornerRadius === 'auto' ? getRoundPolygonRadius(sWidth, sHeight) : cornerRadius; var halfW = sWidth / 2; var halfH = sHeight / 2; var radius = cornerRadius + (bWidth + outlineWidth + outlineOffset) / 2; var p = new Array(points.length / 2); var corners = new Array(points.length / 2); for (var _i3 = 0; _i3 < points.length / 2; _i3++) { p[_i3] = { x: npos.x + offsetX + halfW * points[_i3 * 2], y: npos.y + offsetY + halfH * points[_i3 * 2 + 1] }; } var _i2, p1, p2, p3, len = p.length; p1 = p[len - 1]; // for each point for (_i2 = 0; _i2 < len; _i2++) { p2 = p[_i2 % len]; p3 = p[(_i2 + 1) % len]; corners[_i2] = getRoundCorner(p1, p2, p3, radius); p1 = p2; p2 = p3; } r.drawRoundPolygonPath(_path || context, npos.x + offsetX, npos.y + offsetY, nodeWidth * scaleX, nodeHeight * scaleY, points, corners); } else if (['roundrectangle', 'round-rectangle'].includes(shape)) { cornerRadius = cornerRadius === 'auto' ? getRoundRectangleRadius(sWidth, sHeight) : cornerRadius; r.drawRoundRectanglePath(_path || context, npos.x, npos.y, sWidth, sHeight, cornerRadius + (bWidth + outlineWidth + outlineOffset) / 2); } else if (['cutrectangle', 'cut-rectangle'].includes(shape)) { cornerRadius = cornerRadius === 'auto' ? getCutRectangleCornerLength() : cornerRadius; r.drawCutRectanglePath(_path || context, npos.x, npos.y, sWidth, sHeight, null, cornerRadius + (bWidth + outlineWidth + outlineOffset) / 4); } else if (['bottomroundrectangle', 'bottom-round-rectangle'].includes(shape)) { cornerRadius = cornerRadius === 'auto' ? getRoundRectangleRadius(sWidth, sHeight) : cornerRadius; r.drawBottomRoundRectanglePath(_path || context, npos.x, npos.y, sWidth, sHeight, cornerRadius + (bWidth + outlineWidth + outlineOffset) / 2); } else if (shape === "barrel") { r.drawBarrelPath(_path || context, npos.x, npos.y, sWidth, sHeight); } else if (shape.startsWith("polygon") || ['rhomboid', 'right-rhomboid', 'round-tag', 'tag', 'vee'].includes(shape)) { var pad = (bWidth + outlineWidth + outlineOffset) / nodeWidth; points = joinLines(expandPolygon(points, pad)); r.drawPolygonPath(_path || context, npos.x, npos.y, nodeWidth, nodeHeight, points); } else { var _pad = (bWidth + outlineWidth + outlineOffset) / nodeWidth; points = joinLines(expandPolygon(points, -_pad)); r.drawPolygonPath(_path || context, npos.x, npos.y, nodeWidth, nodeHeight, points); } if (usePaths) { context.stroke(_path); } else { context.stroke(); } if (outlineStyle === 'double') { context.lineWidth = bWidth / 3; var gco = context.globalCompositeOperation; context.globalCompositeOperation = 'destination-out'; if (usePaths) { context.stroke(_path); } else { context.stroke(); } context.globalCompositeOperation = gco; } // reset in case we changed the border style if (context.setLineDash) { // for very outofdate browsers context.setLineDash([]); } } }; var drawOverlay = function drawOverlay() { if (shouldDrawOverlay) { r.drawNodeOverlay(context, node, pos, nodeWidth, nodeHeight); } }; var drawUnderlay = function drawUnderlay() { if (shouldDrawOverlay) { r.drawNodeUnderlay(context, node, pos, nodeWidth, nodeHeight); } }; var drawText = function drawText() { r.drawElementText(context, node, null, drawLabel); }; var ghost = node.pstyle('ghost').value === 'yes'; if (ghost) { var gx = node.pstyle('ghost-offset-x').pfValue; var gy = node.pstyle('ghost-offset-y').pfValue; var ghostOpacity = node.pstyle('ghost-opacity').value; var effGhostOpacity = ghostOpacity * eleOpacity; context.translate(gx, gy); setupOutlineColor(); drawOutline(); setupShapeColor(ghostOpacity * bgOpacity); drawShape(); drawImages(effGhostOpacity, true); setupBorderColor(ghostOpacity * borderOpacity); drawBorder(); drawPie(darkness !== 0 || borderWidth !== 0); drawImages(effGhostOpacity, false); darken(effGhostOpacity); context.translate(-gx, -gy); } if (usePaths) { context.translate(-pos.x, -pos.y); } drawUnderlay(); if (usePaths) { context.translate(pos.x, pos.y); } setupOutlineColor(); drawOutline(); setupShapeColor(); drawShape(); drawImages(eleOpacity, true); setupBorderColor(); drawBorder(); drawPie(darkness !== 0 || borderWidth !== 0); drawImages(eleOpacity, false); darken(); if (usePaths) { context.translate(-pos.x, -pos.y); } drawText(); drawOverlay(); // // clean up shift if (shiftToOriginWithBb) { context.translate(bb.x1, bb.y1); } }; var drawNodeOverlayUnderlay = function drawNodeOverlayUnderlay(overlayOrUnderlay) { if (!['overlay', 'underlay'].includes(overlayOrUnderlay)) { throw new Error('Invalid state'); } return function (context, node, pos, nodeWidth, nodeHeight) { var r = this; if (!node.visible()) { return; } var padding = node.pstyle("".concat(overlayOrUnderlay, "-padding")).pfValue; var opacity = node.pstyle("".concat(overlayOrUnderlay, "-opacity")).value; var color = node.pstyle("".concat(overlayOrUnderlay, "-color")).value; var shape = node.pstyle("".concat(overlayOrUnderlay, "-shape")).value; var radius = node.pstyle("".concat(overlayOrUnderlay, "-corner-radius")).value; if (opacity > 0) { pos = pos || node.position(); if (nodeWidth == null || nodeHeight == null) { var _padding = node.padding(); nodeWidth = node.width() + 2 * _padding; nodeHeight = node.height() + 2 * _padding; } r.colorFillStyle(context, color[0], color[1], color[2], opacity); r.nodeShapes[shape].draw(context, pos.x, pos.y, nodeWidth + padding * 2, nodeHeight + padding * 2, radius); context.fill(); } }; }; CRp$5.drawNodeOverlay = drawNodeOverlayUnderlay('overlay'); CRp$5.drawNodeUnderlay = drawNodeOverlayUnderlay('underlay'); // does the node have at least one pie piece? CRp$5.hasPie = function (node) { node = node[0]; // ensure ele ref return node._private.hasPie; }; CRp$5.drawPie = function (context, node, nodeOpacity, pos) { node = node[0]; // ensure ele ref pos = pos || node.position(); var cyStyle = node.cy().style(); var pieSize = node.pstyle('pie-size'); var x = pos.x; var y = pos.y; var nodeW = node.width(); var nodeH = node.height(); var radius = Math.min(nodeW, nodeH) / 2; // must fit in node var lastPercent = 0; // what % to continue drawing pie slices from on [0, 1] var usePaths = this.usePaths(); if (usePaths) { x = 0; y = 0; } if (pieSize.units === '%') { radius = radius * pieSize.pfValue; } else if (pieSize.pfValue !== undefined) { radius = pieSize.pfValue / 2; } for (var i = 1; i <= cyStyle.pieBackgroundN; i++) { // 1..N var size = node.pstyle('pie-' + i + '-background-size').value; var color = node.pstyle('pie-' + i + '-background-color').value; var opacity = node.pstyle('pie-' + i + '-background-opacity').value * nodeOpacity; var percent = size / 100; // map integer range [0, 100] to [0, 1] // percent can't push beyond 1 if (percent + lastPercent > 1) { percent = 1 - lastPercent; } var angleStart = 1.5 * Math.PI + 2 * Math.PI * lastPercent; // start at 12 o'clock and go clockwise var angleDelta = 2 * Math.PI * percent; var angleEnd = angleStart + angleDelta; // ignore if // - zero size // - we're already beyond the full circle // - adding the current slice would go beyond the full circle if (size === 0 || lastPercent >= 1 || lastPercent + percent > 1) { continue; } context.beginPath(); context.moveTo(x, y); context.arc(x, y, radius, angleStart, angleEnd); context.closePath(); this.colorFillStyle(context, color[0], color[1], color[2], opacity); context.fill(); lastPercent += percent; } }; var CRp$4 = {}; var motionBlurDelay = 100; // var isFirefox = typeof InstallTrigger !== 'undefined'; CRp$4.getPixelRatio = function () { var context = this.data.contexts[0]; if (this.forcedPixelRatio != null) { return this.forcedPixelRatio; } var backingStore = context.backingStorePixelRatio || context.webkitBackingStorePixelRatio || context.mozBackingStorePixelRatio || context.msBackingStorePixelRatio || context.oBackingStorePixelRatio || context.backingStorePixelRatio || 1; return (window.devicePixelRatio || 1) / backingStore; // eslint-disable-line no-undef }; CRp$4.paintCache = function (context) { var caches = this.paintCaches = this.paintCaches || []; var needToCreateCache = true; var cache; for (var i = 0; i < caches.length; i++) { cache = caches[i]; if (cache.context === context) { needToCreateCache = false; break; } } if (needToCreateCache) { cache = { context: context }; caches.push(cache); } return cache; }; CRp$4.createGradientStyleFor = function (context, shapeStyleName, ele, fill, opacity) { var gradientStyle; var usePaths = this.usePaths(); var colors = ele.pstyle(shapeStyleName + '-gradient-stop-colors').value, positions = ele.pstyle(shapeStyleName + '-gradient-stop-positions').pfValue; if (fill === 'radial-gradient') { if (ele.isEdge()) { var start = ele.sourceEndpoint(), end = ele.targetEndpoint(), mid = ele.midpoint(); var d1 = dist(start, mid); var d2 = dist(end, mid); gradientStyle = context.createRadialGradient(mid.x, mid.y, 0, mid.x, mid.y, Math.max(d1, d2)); } else { var pos = usePaths ? { x: 0, y: 0 } : ele.position(), width = ele.paddedWidth(), height = ele.paddedHeight(); gradientStyle = context.createRadialGradient(pos.x, pos.y, 0, pos.x, pos.y, Math.max(width, height)); } } else { if (ele.isEdge()) { var _start = ele.sourceEndpoint(), _end = ele.targetEndpoint(); gradientStyle = context.createLinearGradient(_start.x, _start.y, _end.x, _end.y); } else { var _pos = usePaths ? { x: 0, y: 0 } : ele.position(), _width = ele.paddedWidth(), _height = ele.paddedHeight(), halfWidth = _width / 2, halfHeight = _height / 2; var direction = ele.pstyle('background-gradient-direction').value; switch (direction) { case 'to-bottom': gradientStyle = context.createLinearGradient(_pos.x, _pos.y - halfHeight, _pos.x, _pos.y + halfHeight); break; case 'to-top': gradientStyle = context.createLinearGradient(_pos.x, _pos.y + halfHeight, _pos.x, _pos.y - halfHeight); break; case 'to-left': gradientStyle = context.createLinearGradient(_pos.x + halfWidth, _pos.y, _pos.x - halfWidth, _pos.y); break; case 'to-right': gradientStyle = context.createLinearGradient(_pos.x - halfWidth, _pos.y, _pos.x + halfWidth, _pos.y); break; case 'to-bottom-right': case 'to-right-bottom': gradientStyle = context.createLinearGradient(_pos.x - halfWidth, _pos.y - halfHeight, _pos.x + halfWidth, _pos.y + halfHeight); break; case 'to-top-right': case 'to-right-top': gradientStyle = context.createLinearGradient(_pos.x - halfWidth, _pos.y + halfHeight, _pos.x + halfWidth, _pos.y - halfHeight); break; case 'to-bottom-left': case 'to-left-bottom': gradientStyle = context.createLinearGradient(_pos.x + halfWidth, _pos.y - halfHeight, _pos.x - halfWidth, _pos.y + halfHeight); break; case 'to-top-left': case 'to-left-top': gradientStyle = context.createLinearGradient(_pos.x + halfWidth, _pos.y + halfHeight, _pos.x - halfWidth, _pos.y - halfHeight); break; } } } if (!gradientStyle) return null; // invalid gradient style var hasPositions = positions.length === colors.length; var length = colors.length; for (var i = 0; i < length; i++) { gradientStyle.addColorStop(hasPositions ? positions[i] : i / (length - 1), 'rgba(' + colors[i][0] + ',' + colors[i][1] + ',' + colors[i][2] + ',' + opacity + ')'); } return gradientStyle; }; CRp$4.gradientFillStyle = function (context, ele, fill, opacity) { var gradientStyle = this.createGradientStyleFor(context, 'background', ele, fill, opacity); if (!gradientStyle) return null; // error context.fillStyle = gradientStyle; }; CRp$4.colorFillStyle = function (context, r, g, b, a) { context.fillStyle = 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')'; // turn off for now, seems context does its own caching // var cache = this.paintCache(context); // var fillStyle = 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')'; // if( cache.fillStyle !== fillStyle ){ // context.fillStyle = cache.fillStyle = fillStyle; // } }; CRp$4.eleFillStyle = function (context, ele, opacity) { var backgroundFill = ele.pstyle('background-fill').value; if (backgroundFill === 'linear-gradient' || backgroundFill === 'radial-gradient') { this.gradientFillStyle(context, ele, backgroundFill, opacity); } else { var backgroundColor = ele.pstyle('background-color').value; this.colorFillStyle(context, backgroundColor[0], backgroundColor[1], backgroundColor[2], opacity); } }; CRp$4.gradientStrokeStyle = function (context, ele, fill, opacity) { var gradientStyle = this.createGradientStyleFor(context, 'line', ele, fill, opacity); if (!gradientStyle) return null; // error context.strokeStyle = gradientStyle; }; CRp$4.colorStrokeStyle = function (context, r, g, b, a) { context.strokeStyle = 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')'; // turn off for now, seems context does its own caching // var cache = this.paintCache(context); // var strokeStyle = 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')'; // if( cache.strokeStyle !== strokeStyle ){ // context.strokeStyle = cache.strokeStyle = strokeStyle; // } }; CRp$4.eleStrokeStyle = function (context, ele, opacity) { var lineFill = ele.pstyle('line-fill').value; if (lineFill === 'linear-gradient' || lineFill === 'radial-gradient') { this.gradientStrokeStyle(context, ele, lineFill, opacity); } else { var lineColor = ele.pstyle('line-color').value; this.colorStrokeStyle(context, lineColor[0], lineColor[1], lineColor[2], opacity); } }; // Resize canvas CRp$4.matchCanvasSize = function (container) { var r = this; var data = r.data; var bb = r.findContainerClientCoords(); var width = bb[2]; var height = bb[3]; var pixelRatio = r.getPixelRatio(); var mbPxRatio = r.motionBlurPxRatio; if (container === r.data.bufferCanvases[r.MOTIONBLUR_BUFFER_NODE] || container === r.data.bufferCanvases[r.MOTIONBLUR_BUFFER_DRAG]) { pixelRatio = mbPxRatio; } var canvasWidth = width * pixelRatio; var canvasHeight = height * pixelRatio; var canvas; if (canvasWidth === r.canvasWidth && canvasHeight === r.canvasHeight) { return; // save cycles if same } r.fontCaches = null; // resizing resets the style var canvasContainer = data.canvasContainer; canvasContainer.style.width = width + 'px'; canvasContainer.style.height = height + 'px'; for (var i = 0; i < r.CANVAS_LAYERS; i++) { canvas = data.canvases[i]; canvas.width = canvasWidth; canvas.height = canvasHeight; canvas.style.width = width + 'px'; canvas.style.height = height + 'px'; } for (var i = 0; i < r.BUFFER_COUNT; i++) { canvas = data.bufferCanvases[i]; canvas.width = canvasWidth; canvas.height = canvasHeight; canvas.style.width = width + 'px'; canvas.style.height = height + 'px'; } r.textureMult = 1; if (pixelRatio <= 1) { canvas = data.bufferCanvases[r.TEXTURE_BUFFER]; r.textureMult = 2; canvas.width = canvasWidth * r.textureMult; canvas.height = canvasHeight * r.textureMult; } r.canvasWidth = canvasWidth; r.canvasHeight = canvasHeight; }; CRp$4.renderTo = function (cxt, zoom, pan, pxRatio) { this.render({ forcedContext: cxt, forcedZoom: zoom, forcedPan: pan, drawAllLayers: true, forcedPxRatio: pxRatio }); }; CRp$4.render = function (options) { options = options || staticEmptyObject(); var forcedContext = options.forcedContext; var drawAllLayers = options.drawAllLayers; var drawOnlyNodeLayer = options.drawOnlyNodeLayer; var forcedZoom = options.forcedZoom; var forcedPan = options.forcedPan; var r = this; var pixelRatio = options.forcedPxRatio === undefined ? this.getPixelRatio() : options.forcedPxRatio; var cy = r.cy; var data = r.data; var needDraw = data.canvasNeedsRedraw; var textureDraw = r.textureOnViewport && !forcedContext && (r.pinching || r.hoverData.dragging || r.swipePanning || r.data.wheelZooming); var motionBlur = options.motionBlur !== undefined ? options.motionBlur : r.motionBlur; var mbPxRatio = r.motionBlurPxRatio; var hasCompoundNodes = cy.hasCompoundNodes(); var inNodeDragGesture = r.hoverData.draggingEles; var inBoxSelection = r.hoverData.selecting || r.touchData.selecting ? true : false; motionBlur = motionBlur && !forcedContext && r.motionBlurEnabled && !inBoxSelection; var motionBlurFadeEffect = motionBlur; if (!forcedContext) { if (r.prevPxRatio !== pixelRatio) { r.invalidateContainerClientCoordsCache(); r.matchCanvasSize(r.container); r.redrawHint('eles', true); r.redrawHint('drag', true); } r.prevPxRatio = pixelRatio; } if (!forcedContext && r.motionBlurTimeout) { clearTimeout(r.motionBlurTimeout); } if (motionBlur) { if (r.mbFrames == null) { r.mbFrames = 0; } r.mbFrames++; if (r.mbFrames < 3) { // need several frames before even high quality motionblur motionBlurFadeEffect = false; } // go to lower quality blurry frames when several m/b frames have been rendered (avoids flashing) if (r.mbFrames > r.minMbLowQualFrames) { //r.fullQualityMb = false; r.motionBlurPxRatio = r.mbPxRBlurry; } } if (r.clearingMotionBlur) { r.motionBlurPxRatio = 1; } // b/c drawToContext() may be async w.r.t. redraw(), keep track of last texture frame // because a rogue async texture frame would clear needDraw if (r.textureDrawLastFrame && !textureDraw) { needDraw[r.NODE] = true; needDraw[r.SELECT_BOX] = true; } var style = cy.style(); var zoom = cy.zoom(); var effectiveZoom = forcedZoom !== undefined ? forcedZoom : zoom; var pan = cy.pan(); var effectivePan = { x: pan.x, y: pan.y }; var vp = { zoom: zoom, pan: { x: pan.x, y: pan.y } }; var prevVp = r.prevViewport; var viewportIsDiff = prevVp === undefined || vp.zoom !== prevVp.zoom || vp.pan.x !== prevVp.pan.x || vp.pan.y !== prevVp.pan.y; // we want the low quality motionblur only when the viewport is being manipulated etc (where it's not noticed) if (!viewportIsDiff && !(inNodeDragGesture && !hasCompoundNodes)) { r.motionBlurPxRatio = 1; } if (forcedPan) { effectivePan = forcedPan; } // apply pixel ratio effectiveZoom *= pixelRatio; effectivePan.x *= pixelRatio; effectivePan.y *= pixelRatio; var eles = r.getCachedZSortedEles(); function mbclear(context, x, y, w, h) { var gco = context.globalCompositeOperation; context.globalCompositeOperation = 'destination-out'; r.colorFillStyle(context, 255, 255, 255, r.motionBlurTransparency); context.fillRect(x, y, w, h); context.globalCompositeOperation = gco; } function setContextTransform(context, clear) { var ePan, eZoom, w, h; if (!r.clearingMotionBlur && (context === data.bufferContexts[r.MOTIONBLUR_BUFFER_NODE] || context === data.bufferContexts[r.MOTIONBLUR_BUFFER_DRAG])) { ePan = { x: pan.x * mbPxRatio, y: pan.y * mbPxRatio }; eZoom = zoom * mbPxRatio; w = r.canvasWidth * mbPxRatio; h = r.canvasHeight * mbPxRatio; } else { ePan = effectivePan; eZoom = effectiveZoom; w = r.canvasWidth; h = r.canvasHeight; } context.setTransform(1, 0, 0, 1, 0, 0); if (clear === 'motionBlur') { mbclear(context, 0, 0, w, h); } else if (!forcedContext && (clear === undefined || clear)) { context.clearRect(0, 0, w, h); } if (!drawAllLayers) { context.translate(ePan.x, ePan.y); context.scale(eZoom, eZoom); } if (forcedPan) { context.translate(forcedPan.x, forcedPan.y); } if (forcedZoom) { context.scale(forcedZoom, forcedZoom); } } if (!textureDraw) { r.textureDrawLastFrame = false; } if (textureDraw) { r.textureDrawLastFrame = true; if (!r.textureCache) { r.textureCache = {}; r.textureCache.bb = cy.mutableElements().boundingBox(); r.textureCache.texture = r.data.bufferCanvases[r.TEXTURE_BUFFER]; var cxt = r.data.bufferContexts[r.TEXTURE_BUFFER]; cxt.setTransform(1, 0, 0, 1, 0, 0); cxt.clearRect(0, 0, r.canvasWidth * r.textureMult, r.canvasHeight * r.textureMult); r.render({ forcedContext: cxt, drawOnlyNodeLayer: true, forcedPxRatio: pixelRatio * r.textureMult }); var vp = r.textureCache.viewport = { zoom: cy.zoom(), pan: cy.pan(), width: r.canvasWidth, height: r.canvasHeight }; vp.mpan = { x: (0 - vp.pan.x) / vp.zoom, y: (0 - vp.pan.y) / vp.zoom }; } needDraw[r.DRAG] = false; needDraw[r.NODE] = false; var context = data.contexts[r.NODE]; var texture = r.textureCache.texture; var vp = r.textureCache.viewport; context.setTransform(1, 0, 0, 1, 0, 0); if (motionBlur) { mbclear(context, 0, 0, vp.width, vp.height); } else { context.clearRect(0, 0, vp.width, vp.height); } var outsideBgColor = style.core('outside-texture-bg-color').value; var outsideBgOpacity = style.core('outside-texture-bg-opacity').value; r.colorFillStyle(context, outsideBgColor[0], outsideBgColor[1], outsideBgColor[2], outsideBgOpacity); context.fillRect(0, 0, vp.width, vp.height); var zoom = cy.zoom(); setContextTransform(context, false); context.clearRect(vp.mpan.x, vp.mpan.y, vp.width / vp.zoom / pixelRatio, vp.height / vp.zoom / pixelRatio); context.drawImage(texture, vp.mpan.x, vp.mpan.y, vp.width / vp.zoom / pixelRatio, vp.height / vp.zoom / pixelRatio); } else if (r.textureOnViewport && !forcedContext) { // clear the cache since we don't need it r.textureCache = null; } var extent = cy.extent(); var vpManip = r.pinching || r.hoverData.dragging || r.swipePanning || r.data.wheelZooming || r.hoverData.draggingEles || r.cy.animated(); var hideEdges = r.hideEdgesOnViewport && vpManip; var needMbClear = []; needMbClear[r.NODE] = !needDraw[r.NODE] && motionBlur && !r.clearedForMotionBlur[r.NODE] || r.clearingMotionBlur; if (needMbClear[r.NODE]) { r.clearedForMotionBlur[r.NODE] = true; } needMbClear[r.DRAG] = !needDraw[r.DRAG] && motionBlur && !r.clearedForMotionBlur[r.DRAG] || r.clearingMotionBlur; if (needMbClear[r.DRAG]) { r.clearedForMotionBlur[r.DRAG] = true; } if (needDraw[r.NODE] || drawAllLayers || drawOnlyNodeLayer || needMbClear[r.NODE]) { var useBuffer = motionBlur && !needMbClear[r.NODE] && mbPxRatio !== 1; var context = forcedContext || (useBuffer ? r.data.bufferContexts[r.MOTIONBLUR_BUFFER_NODE] : data.contexts[r.NODE]); var clear = motionBlur && !useBuffer ? 'motionBlur' : undefined; setContextTransform(context, clear); if (hideEdges) { r.drawCachedNodes(context, eles.nondrag, pixelRatio, extent); } else { r.drawLayeredElements(context, eles.nondrag, pixelRatio, extent); } if (r.debug) { r.drawDebugPoints(context, eles.nondrag); } if (!drawAllLayers && !motionBlur) { needDraw[r.NODE] = false; } } if (!drawOnlyNodeLayer && (needDraw[r.DRAG] || drawAllLayers || needMbClear[r.DRAG])) { var useBuffer = motionBlur && !needMbClear[r.DRAG] && mbPxRatio !== 1; var context = forcedContext || (useBuffer ? r.data.bufferContexts[r.MOTIONBLUR_BUFFER_DRAG] : data.contexts[r.DRAG]); setContextTransform(context, motionBlur && !useBuffer ? 'motionBlur' : undefined); if (hideEdges) { r.drawCachedNodes(context, eles.drag, pixelRatio, extent); } else { r.drawCachedElements(context, eles.drag, pixelRatio, extent); } if (r.debug) { r.drawDebugPoints(context, eles.drag); } if (!drawAllLayers && !motionBlur) { needDraw[r.DRAG] = false; } } if (r.showFps || !drawOnlyNodeLayer && needDraw[r.SELECT_BOX] && !drawAllLayers) { var context = forcedContext || data.contexts[r.SELECT_BOX]; setContextTransform(context); if (r.selection[4] == 1 && (r.hoverData.selecting || r.touchData.selecting)) { var zoom = r.cy.zoom(); var borderWidth = style.core('selection-box-border-width').value / zoom; context.lineWidth = borderWidth; context.fillStyle = 'rgba(' + style.core('selection-box-color').value[0] + ',' + style.core('selection-box-color').value[1] + ',' + style.core('selection-box-color').value[2] + ',' + style.core('selection-box-opacity').value + ')'; context.fillRect(r.selection[0], r.selection[1], r.selection[2] - r.selection[0], r.selection[3] - r.selection[1]); if (borderWidth > 0) { context.strokeStyle = 'rgba(' + style.core('selection-box-border-color').value[0] + ',' + style.core('selection-box-border-color').value[1] + ',' + style.core('selection-box-border-color').value[2] + ',' + style.core('selection-box-opacity').value + ')'; context.strokeRect(r.selection[0], r.selection[1], r.selection[2] - r.selection[0], r.selection[3] - r.selection[1]); } } if (data.bgActivePosistion && !r.hoverData.selecting) { var zoom = r.cy.zoom(); var pos = data.bgActivePosistion; context.fillStyle = 'rgba(' + style.core('active-bg-color').value[0] + ',' + style.core('active-bg-color').value[1] + ',' + style.core('active-bg-color').value[2] + ',' + style.core('active-bg-opacity').value + ')'; context.beginPath(); context.arc(pos.x, pos.y, style.core('active-bg-size').pfValue / zoom, 0, 2 * Math.PI); context.fill(); } var timeToRender = r.lastRedrawTime; if (r.showFps && timeToRender) { timeToRender = Math.round(timeToRender); var fps = Math.round(1000 / timeToRender); context.setTransform(1, 0, 0, 1, 0, 0); context.fillStyle = 'rgba(255, 0, 0, 0.75)'; context.strokeStyle = 'rgba(255, 0, 0, 0.75)'; context.lineWidth = 1; context.fillText('1 frame = ' + timeToRender + ' ms = ' + fps + ' fps', 0, 20); var maxFps = 60; context.strokeRect(0, 30, 250, 20); context.fillRect(0, 30, 250 * Math.min(fps / maxFps, 1), 20); } if (!drawAllLayers) { needDraw[r.SELECT_BOX] = false; } } // motionblur: blit rendered blurry frames if (motionBlur && mbPxRatio !== 1) { var cxtNode = data.contexts[r.NODE]; var txtNode = r.data.bufferCanvases[r.MOTIONBLUR_BUFFER_NODE]; var cxtDrag = data.contexts[r.DRAG]; var txtDrag = r.data.bufferCanvases[r.MOTIONBLUR_BUFFER_DRAG]; var drawMotionBlur = function drawMotionBlur(cxt, txt, needClear) { cxt.setTransform(1, 0, 0, 1, 0, 0); if (needClear || !motionBlurFadeEffect) { cxt.clearRect(0, 0, r.canvasWidth, r.canvasHeight); } else { mbclear(cxt, 0, 0, r.canvasWidth, r.canvasHeight); } var pxr = mbPxRatio; cxt.drawImage(txt, // img 0, 0, // sx, sy r.canvasWidth * pxr, r.canvasHeight * pxr, // sw, sh 0, 0, // x, y r.canvasWidth, r.canvasHeight // w, h ); }; if (needDraw[r.NODE] || needMbClear[r.NODE]) { drawMotionBlur(cxtNode, txtNode, needMbClear[r.NODE]); needDraw[r.NODE] = false; } if (needDraw[r.DRAG] || needMbClear[r.DRAG]) { drawMotionBlur(cxtDrag, txtDrag, needMbClear[r.DRAG]); needDraw[r.DRAG] = false; } } r.prevViewport = vp; if (r.clearingMotionBlur) { r.clearingMotionBlur = false; r.motionBlurCleared = true; r.motionBlur = true; } if (motionBlur) { r.motionBlurTimeout = setTimeout(function () { r.motionBlurTimeout = null; r.clearedForMotionBlur[r.NODE] = false; r.clearedForMotionBlur[r.DRAG] = false; r.motionBlur = false; r.clearingMotionBlur = !textureDraw; r.mbFrames = 0; needDraw[r.NODE] = true; needDraw[r.DRAG] = true; r.redraw(); }, motionBlurDelay); } if (!forcedContext) { cy.emit('render'); } }; var CRp$3 = {}; // @O Polygon drawing CRp$3.drawPolygonPath = function (context, x, y, width, height, points) { var halfW = width / 2; var halfH = height / 2; if (context.beginPath) { context.beginPath(); } context.moveTo(x + halfW * points[0], y + halfH * points[1]); for (var i = 1; i < points.length / 2; i++) { context.lineTo(x + halfW * points[i * 2], y + halfH * points[i * 2 + 1]); } context.closePath(); }; CRp$3.drawRoundPolygonPath = function (context, x, y, width, height, points, corners) { corners.forEach(function (corner) { return drawPreparedRoundCorner(context, corner); }); context.closePath(); }; // Round rectangle drawing CRp$3.drawRoundRectanglePath = function (context, x, y, width, height, radius) { var halfWidth = width / 2; var halfHeight = height / 2; var cornerRadius = radius === 'auto' ? getRoundRectangleRadius(width, height) : Math.min(radius, halfHeight, halfWidth); if (context.beginPath) { context.beginPath(); } // Start at top middle context.moveTo(x, y - halfHeight); // Arc from middle top to right side context.arcTo(x + halfWidth, y - halfHeight, x + halfWidth, y, cornerRadius); // Arc from right side to bottom context.arcTo(x + halfWidth, y + halfHeight, x, y + halfHeight, cornerRadius); // Arc from bottom to left side context.arcTo(x - halfWidth, y + halfHeight, x - halfWidth, y, cornerRadius); // Arc from left side to topBorder context.arcTo(x - halfWidth, y - halfHeight, x, y - halfHeight, cornerRadius); // Join line context.lineTo(x, y - halfHeight); context.closePath(); }; CRp$3.drawBottomRoundRectanglePath = function (context, x, y, width, height, radius) { var halfWidth = width / 2; var halfHeight = height / 2; var cornerRadius = radius === 'auto' ? getRoundRectangleRadius(width, height) : radius; if (context.beginPath) { context.beginPath(); } // Start at top middle context.moveTo(x, y - halfHeight); context.lineTo(x + halfWidth, y - halfHeight); context.lineTo(x + halfWidth, y); context.arcTo(x + halfWidth, y + halfHeight, x, y + halfHeight, cornerRadius); context.arcTo(x - halfWidth, y + halfHeight, x - halfWidth, y, cornerRadius); context.lineTo(x - halfWidth, y - halfHeight); context.lineTo(x, y - halfHeight); context.closePath(); }; CRp$3.drawCutRectanglePath = function (context, x, y, width, height, points, corners) { var halfWidth = width / 2; var halfHeight = height / 2; var cornerLength = corners === 'auto' ? getCutRectangleCornerLength() : corners; if (context.beginPath) { context.beginPath(); } context.moveTo(x - halfWidth + cornerLength, y - halfHeight); context.lineTo(x + halfWidth - cornerLength, y - halfHeight); context.lineTo(x + halfWidth, y - halfHeight + cornerLength); context.lineTo(x + halfWidth, y + halfHeight - cornerLength); context.lineTo(x + halfWidth - cornerLength, y + halfHeight); context.lineTo(x - halfWidth + cornerLength, y + halfHeight); context.lineTo(x - halfWidth, y + halfHeight - cornerLength); context.lineTo(x - halfWidth, y - halfHeight + cornerLength); context.closePath(); }; CRp$3.drawBarrelPath = function (context, x, y, width, height) { var halfWidth = width / 2; var halfHeight = height / 2; var xBegin = x - halfWidth; var xEnd = x + halfWidth; var yBegin = y - halfHeight; var yEnd = y + halfHeight; var barrelCurveConstants = getBarrelCurveConstants(width, height); var wOffset = barrelCurveConstants.widthOffset; var hOffset = barrelCurveConstants.heightOffset; var ctrlPtXOffset = barrelCurveConstants.ctrlPtOffsetPct * wOffset; if (context.beginPath) { context.beginPath(); } context.moveTo(xBegin, yBegin + hOffset); context.lineTo(xBegin, yEnd - hOffset); context.quadraticCurveTo(xBegin + ctrlPtXOffset, yEnd, xBegin + wOffset, yEnd); context.lineTo(xEnd - wOffset, yEnd); context.quadraticCurveTo(xEnd - ctrlPtXOffset, yEnd, xEnd, yEnd - hOffset); context.lineTo(xEnd, yBegin + hOffset); context.quadraticCurveTo(xEnd - ctrlPtXOffset, yBegin, xEnd - wOffset, yBegin); context.lineTo(xBegin + wOffset, yBegin); context.quadraticCurveTo(xBegin + ctrlPtXOffset, yBegin, xBegin, yBegin + hOffset); context.closePath(); }; var sin0 = Math.sin(0); var cos0 = Math.cos(0); var sin = {}; var cos = {}; var ellipseStepSize = Math.PI / 40; for (var i = 0 * Math.PI; i < 2 * Math.PI; i += ellipseStepSize) { sin[i] = Math.sin(i); cos[i] = Math.cos(i); } CRp$3.drawEllipsePath = function (context, centerX, centerY, width, height) { if (context.beginPath) { context.beginPath(); } if (context.ellipse) { context.ellipse(centerX, centerY, width / 2, height / 2, 0, 0, 2 * Math.PI); } else { var xPos, yPos; var rw = width / 2; var rh = height / 2; for (var i = 0 * Math.PI; i < 2 * Math.PI; i += ellipseStepSize) { xPos = centerX - rw * sin[i] * sin0 + rw * cos[i] * cos0; yPos = centerY + rh * cos[i] * sin0 + rh * sin[i] * cos0; if (i === 0) { context.moveTo(xPos, yPos); } else { context.lineTo(xPos, yPos); } } } context.closePath(); }; /* global atob, ArrayBuffer, Uint8Array, Blob */ var CRp$2 = {}; CRp$2.createBuffer = function (w, h) { var buffer = document.createElement('canvas'); // eslint-disable-line no-undef buffer.width = w; buffer.height = h; return [buffer, buffer.getContext('2d')]; }; CRp$2.bufferCanvasImage = function (options) { var cy = this.cy; var eles = cy.mutableElements(); var bb = eles.boundingBox(); var ctrRect = this.findContainerClientCoords(); var width = options.full ? Math.ceil(bb.w) : ctrRect[2]; var height = options.full ? Math.ceil(bb.h) : ctrRect[3]; var specdMaxDims = number$1(options.maxWidth) || number$1(options.maxHeight); var pxRatio = this.getPixelRatio(); var scale = 1; if (options.scale !== undefined) { width *= options.scale; height *= options.scale; scale = options.scale; } else if (specdMaxDims) { var maxScaleW = Infinity; var maxScaleH = Infinity; if (number$1(options.maxWidth)) { maxScaleW = scale * options.maxWidth / width; } if (number$1(options.maxHeight)) { maxScaleH = scale * options.maxHeight / height; } scale = Math.min(maxScaleW, maxScaleH); width *= scale; height *= scale; } if (!specdMaxDims) { width *= pxRatio; height *= pxRatio; scale *= pxRatio; } var buffCanvas = document.createElement('canvas'); // eslint-disable-line no-undef buffCanvas.width = width; buffCanvas.height = height; buffCanvas.style.width = width + 'px'; buffCanvas.style.height = height + 'px'; var buffCxt = buffCanvas.getContext('2d'); // Rasterize the layers, but only if container has nonzero size if (width > 0 && height > 0) { buffCxt.clearRect(0, 0, width, height); buffCxt.globalCompositeOperation = 'source-over'; var zsortedEles = this.getCachedZSortedEles(); if (options.full) { // draw the full bounds of the graph buffCxt.translate(-bb.x1 * scale, -bb.y1 * scale); buffCxt.scale(scale, scale); this.drawElements(buffCxt, zsortedEles); buffCxt.scale(1 / scale, 1 / scale); buffCxt.translate(bb.x1 * scale, bb.y1 * scale); } else { // draw the current view var pan = cy.pan(); var translation = { x: pan.x * scale, y: pan.y * scale }; scale *= cy.zoom(); buffCxt.translate(translation.x, translation.y); buffCxt.scale(scale, scale); this.drawElements(buffCxt, zsortedEles); buffCxt.scale(1 / scale, 1 / scale); buffCxt.translate(-translation.x, -translation.y); } // need to fill bg at end like this in order to fill cleared transparent pixels in jpgs if (options.bg) { buffCxt.globalCompositeOperation = 'destination-over'; buffCxt.fillStyle = options.bg; buffCxt.rect(0, 0, width, height); buffCxt.fill(); } } return buffCanvas; }; function b64ToBlob(b64, mimeType) { var bytes = atob(b64); var buff = new ArrayBuffer(bytes.length); var buffUint8 = new Uint8Array(buff); for (var i = 0; i < bytes.length; i++) { buffUint8[i] = bytes.charCodeAt(i); } return new Blob([buff], { type: mimeType }); } function b64UriToB64(b64uri) { var i = b64uri.indexOf(','); return b64uri.substr(i + 1); } function output(options, canvas, mimeType) { var getB64Uri = function getB64Uri() { return canvas.toDataURL(mimeType, options.quality); }; switch (options.output) { case 'blob-promise': return new Promise$1(function (resolve, reject) { try { canvas.toBlob(function (blob) { if (blob != null) { resolve(blob); } else { reject(new Error('`canvas.toBlob()` sent a null value in its callback')); } }, mimeType, options.quality); } catch (err) { reject(err); } }); case 'blob': return b64ToBlob(b64UriToB64(getB64Uri()), mimeType); case 'base64': return b64UriToB64(getB64Uri()); case 'base64uri': default: return getB64Uri(); } } CRp$2.png = function (options) { return output(options, this.bufferCanvasImage(options), 'image/png'); }; CRp$2.jpg = function (options) { return output(options, this.bufferCanvasImage(options), 'image/jpeg'); }; var CRp$1 = {}; CRp$1.nodeShapeImpl = function (name, context, centerX, centerY, width, height, points, corners) { switch (name) { case 'ellipse': return this.drawEllipsePath(context, centerX, centerY, width, height); case 'polygon': return this.drawPolygonPath(context, centerX, centerY, width, height, points); case 'round-polygon': return this.drawRoundPolygonPath(context, centerX, centerY, width, height, points, corners); case 'roundrectangle': case 'round-rectangle': return this.drawRoundRectanglePath(context, centerX, centerY, width, height, corners); case 'cutrectangle': case 'cut-rectangle': return this.drawCutRectanglePath(context, centerX, centerY, width, height, points, corners); case 'bottomroundrectangle': case 'bottom-round-rectangle': return this.drawBottomRoundRectanglePath(context, centerX, centerY, width, height, corners); case 'barrel': return this.drawBarrelPath(context, centerX, centerY, width, height); } }; var CR = CanvasRenderer; var CRp = CanvasRenderer.prototype; CRp.CANVAS_LAYERS = 3; // CRp.SELECT_BOX = 0; CRp.DRAG = 1; CRp.NODE = 2; CRp.BUFFER_COUNT = 3; // CRp.TEXTURE_BUFFER = 0; CRp.MOTIONBLUR_BUFFER_NODE = 1; CRp.MOTIONBLUR_BUFFER_DRAG = 2; function CanvasRenderer(options) { var r = this; r.data = { canvases: new Array(CRp.CANVAS_LAYERS), contexts: new Array(CRp.CANVAS_LAYERS), canvasNeedsRedraw: new Array(CRp.CANVAS_LAYERS), bufferCanvases: new Array(CRp.BUFFER_COUNT), bufferContexts: new Array(CRp.CANVAS_LAYERS) }; var tapHlOffAttr = '-webkit-tap-highlight-color'; var tapHlOffStyle = 'rgba(0,0,0,0)'; r.data.canvasContainer = document.createElement('div'); // eslint-disable-line no-undef var containerStyle = r.data.canvasContainer.style; r.data.canvasContainer.style[tapHlOffAttr] = tapHlOffStyle; containerStyle.position = 'relative'; containerStyle.zIndex = '0'; containerStyle.overflow = 'hidden'; var container = options.cy.container(); container.appendChild(r.data.canvasContainer); container.style[tapHlOffAttr] = tapHlOffStyle; var styleMap = { '-webkit-user-select': 'none', '-moz-user-select': '-moz-none', 'user-select': 'none', '-webkit-tap-highlight-color': 'rgba(0,0,0,0)', 'outline-style': 'none' }; if (ms()) { styleMap['-ms-touch-action'] = 'none'; styleMap['touch-action'] = 'none'; } for (var i = 0; i < CRp.CANVAS_LAYERS; i++) { var canvas = r.data.canvases[i] = document.createElement('canvas'); // eslint-disable-line no-undef r.data.contexts[i] = canvas.getContext('2d'); Object.keys(styleMap).forEach(function (k) { canvas.style[k] = styleMap[k]; }); canvas.style.position = 'absolute'; canvas.setAttribute('data-id', 'layer' + i); canvas.style.zIndex = String(CRp.CANVAS_LAYERS - i); r.data.canvasContainer.appendChild(canvas); r.data.canvasNeedsRedraw[i] = false; } r.data.topCanvas = r.data.canvases[0]; r.data.canvases[CRp.NODE].setAttribute('data-id', 'layer' + CRp.NODE + '-node'); r.data.canvases[CRp.SELECT_BOX].setAttribute('data-id', 'layer' + CRp.SELECT_BOX + '-selectbox'); r.data.canvases[CRp.DRAG].setAttribute('data-id', 'layer' + CRp.DRAG + '-drag'); for (var i = 0; i < CRp.BUFFER_COUNT; i++) { r.data.bufferCanvases[i] = document.createElement('canvas'); // eslint-disable-line no-undef r.data.bufferContexts[i] = r.data.bufferCanvases[i].getContext('2d'); r.data.bufferCanvases[i].style.position = 'absolute'; r.data.bufferCanvases[i].setAttribute('data-id', 'buffer' + i); r.data.bufferCanvases[i].style.zIndex = String(-i - 1); r.data.bufferCanvases[i].style.visibility = 'hidden'; //r.data.canvasContainer.appendChild(r.data.bufferCanvases[i]); } r.pathsEnabled = true; var emptyBb = makeBoundingBox(); var getBoxCenter = function getBoxCenter(bb) { return { x: (bb.x1 + bb.x2) / 2, y: (bb.y1 + bb.y2) / 2 }; }; var getCenterOffset = function getCenterOffset(bb) { return { x: -bb.w / 2, y: -bb.h / 2 }; }; var backgroundTimestampHasChanged = function backgroundTimestampHasChanged(ele) { var _p = ele[0]._private; var same = _p.oldBackgroundTimestamp === _p.backgroundTimestamp; return !same; }; var getStyleKey = function getStyleKey(ele) { return ele[0]._private.nodeKey; }; var getLabelKey = function getLabelKey(ele) { return ele[0]._private.labelStyleKey; }; var getSourceLabelKey = function getSourceLabelKey(ele) { return ele[0]._private.sourceLabelStyleKey; }; var getTargetLabelKey = function getTargetLabelKey(ele) { return ele[0]._private.targetLabelStyleKey; }; var drawElement = function drawElement(context, ele, bb, scaledLabelShown, useEleOpacity) { return r.drawElement(context, ele, bb, false, false, useEleOpacity); }; var drawLabel = function drawLabel(context, ele, bb, scaledLabelShown, useEleOpacity) { return r.drawElementText(context, ele, bb, scaledLabelShown, 'main', useEleOpacity); }; var drawSourceLabel = function drawSourceLabel(context, ele, bb, scaledLabelShown, useEleOpacity) { return r.drawElementText(context, ele, bb, scaledLabelShown, 'source', useEleOpacity); }; var drawTargetLabel = function drawTargetLabel(context, ele, bb, scaledLabelShown, useEleOpacity) { return r.drawElementText(context, ele, bb, scaledLabelShown, 'target', useEleOpacity); }; var getElementBox = function getElementBox(ele) { ele.boundingBox(); return ele[0]._private.bodyBounds; }; var getLabelBox = function getLabelBox(ele) { ele.boundingBox(); return ele[0]._private.labelBounds.main || emptyBb; }; var getSourceLabelBox = function getSourceLabelBox(ele) { ele.boundingBox(); return ele[0]._private.labelBounds.source || emptyBb; }; var getTargetLabelBox = function getTargetLabelBox(ele) { ele.boundingBox(); return ele[0]._private.labelBounds.target || emptyBb; }; var isLabelVisibleAtScale = function isLabelVisibleAtScale(ele, scaledLabelShown) { return scaledLabelShown; }; var getElementRotationPoint = function getElementRotationPoint(ele) { return getBoxCenter(getElementBox(ele)); }; var addTextMargin = function addTextMargin(prefix, pt, ele) { var pre = prefix ? prefix + '-' : ''; return { x: pt.x + ele.pstyle(pre + 'text-margin-x').pfValue, y: pt.y + ele.pstyle(pre + 'text-margin-y').pfValue }; }; var getRsPt = function getRsPt(ele, x, y) { var rs = ele[0]._private.rscratch; return { x: rs[x], y: rs[y] }; }; var getLabelRotationPoint = function getLabelRotationPoint(ele) { return addTextMargin('', getRsPt(ele, 'labelX', 'labelY'), ele); }; var getSourceLabelRotationPoint = function getSourceLabelRotationPoint(ele) { return addTextMargin('source', getRsPt(ele, 'sourceLabelX', 'sourceLabelY'), ele); }; var getTargetLabelRotationPoint = function getTargetLabelRotationPoint(ele) { return addTextMargin('target', getRsPt(ele, 'targetLabelX', 'targetLabelY'), ele); }; var getElementRotationOffset = function getElementRotationOffset(ele) { return getCenterOffset(getElementBox(ele)); }; var getSourceLabelRotationOffset = function getSourceLabelRotationOffset(ele) { return getCenterOffset(getSourceLabelBox(ele)); }; var getTargetLabelRotationOffset = function getTargetLabelRotationOffset(ele) { return getCenterOffset(getTargetLabelBox(ele)); }; var getLabelRotationOffset = function getLabelRotationOffset(ele) { var bb = getLabelBox(ele); var p = getCenterOffset(getLabelBox(ele)); if (ele.isNode()) { switch (ele.pstyle('text-halign').value) { case 'left': p.x = -bb.w; break; case 'right': p.x = 0; break; } switch (ele.pstyle('text-valign').value) { case 'top': p.y = -bb.h; break; case 'bottom': p.y = 0; break; } } return p; }; var eleTxrCache = r.data.eleTxrCache = new ElementTextureCache(r, { getKey: getStyleKey, doesEleInvalidateKey: backgroundTimestampHasChanged, drawElement: drawElement, getBoundingBox: getElementBox, getRotationPoint: getElementRotationPoint, getRotationOffset: getElementRotationOffset, allowEdgeTxrCaching: false, allowParentTxrCaching: false }); var lblTxrCache = r.data.lblTxrCache = new ElementTextureCache(r, { getKey: getLabelKey, drawElement: drawLabel, getBoundingBox: getLabelBox, getRotationPoint: getLabelRotationPoint, getRotationOffset: getLabelRotationOffset, isVisible: isLabelVisibleAtScale }); var slbTxrCache = r.data.slbTxrCache = new ElementTextureCache(r, { getKey: getSourceLabelKey, drawElement: drawSourceLabel, getBoundingBox: getSourceLabelBox, getRotationPoint: getSourceLabelRotationPoint, getRotationOffset: getSourceLabelRotationOffset, isVisible: isLabelVisibleAtScale }); var tlbTxrCache = r.data.tlbTxrCache = new ElementTextureCache(r, { getKey: getTargetLabelKey, drawElement: drawTargetLabel, getBoundingBox: getTargetLabelBox, getRotationPoint: getTargetLabelRotationPoint, getRotationOffset: getTargetLabelRotationOffset, isVisible: isLabelVisibleAtScale }); var lyrTxrCache = r.data.lyrTxrCache = new LayeredTextureCache(r); r.onUpdateEleCalcs(function invalidateTextureCaches(willDraw, eles) { // each cache should check for sub-key diff to see that the update affects that cache particularly eleTxrCache.invalidateElements(eles); lblTxrCache.invalidateElements(eles); slbTxrCache.invalidateElements(eles); tlbTxrCache.invalidateElements(eles); // any change invalidates the layers lyrTxrCache.invalidateElements(eles); // update the old bg timestamp so diffs can be done in the ele txr caches for (var _i = 0; _i < eles.length; _i++) { var _p = eles[_i]._private; _p.oldBackgroundTimestamp = _p.backgroundTimestamp; } }); var refineInLayers = function refineInLayers(reqs) { for (var i = 0; i < reqs.length; i++) { lyrTxrCache.enqueueElementRefinement(reqs[i].ele); } }; eleTxrCache.onDequeue(refineInLayers); lblTxrCache.onDequeue(refineInLayers); slbTxrCache.onDequeue(refineInLayers); tlbTxrCache.onDequeue(refineInLayers); } CRp.redrawHint = function (group, bool) { var r = this; switch (group) { case 'eles': r.data.canvasNeedsRedraw[CRp.NODE] = bool; break; case 'drag': r.data.canvasNeedsRedraw[CRp.DRAG] = bool; break; case 'select': r.data.canvasNeedsRedraw[CRp.SELECT_BOX] = bool; break; } }; // whether to use Path2D caching for drawing var pathsImpld = typeof Path2D !== 'undefined'; CRp.path2dEnabled = function (on) { if (on === undefined) { return this.pathsEnabled; } this.pathsEnabled = on ? true : false; }; CRp.usePaths = function () { return pathsImpld && this.pathsEnabled; }; CRp.setImgSmoothing = function (context, bool) { if (context.imageSmoothingEnabled != null) { context.imageSmoothingEnabled = bool; } else { context.webkitImageSmoothingEnabled = bool; context.mozImageSmoothingEnabled = bool; context.msImageSmoothingEnabled = bool; } }; CRp.getImgSmoothing = function (context) { if (context.imageSmoothingEnabled != null) { return context.imageSmoothingEnabled; } else { return context.webkitImageSmoothingEnabled || context.mozImageSmoothingEnabled || context.msImageSmoothingEnabled; } }; CRp.makeOffscreenCanvas = function (width, height) { var canvas; if ((typeof OffscreenCanvas === "undefined" ? "undefined" : _typeof(OffscreenCanvas)) !== ("undefined" )) { canvas = new OffscreenCanvas(width, height); } else { canvas = document.createElement('canvas'); // eslint-disable-line no-undef canvas.width = width; canvas.height = height; } return canvas; }; [CRp$a, CRp$9, CRp$8, CRp$7, CRp$6, CRp$5, CRp$4, CRp$3, CRp$2, CRp$1].forEach(function (props) { extend(CRp, props); }); var renderer = [{ name: 'null', impl: NullRenderer }, { name: 'base', impl: BR }, { name: 'canvas', impl: CR }]; var incExts = [{ type: 'layout', extensions: layout }, { type: 'renderer', extensions: renderer }]; // registered extensions to cytoscape, indexed by name var extensions = {}; // registered modules for extensions, indexed by name var modules = {}; function setExtension(type, name, registrant) { var ext = registrant; var overrideErr = function overrideErr(field) { warn('Can not register `' + name + '` for `' + type + '` since `' + field + '` already exists in the prototype and can not be overridden'); }; if (type === 'core') { if (Core.prototype[name]) { return overrideErr(name); } else { Core.prototype[name] = registrant; } } else if (type === 'collection') { if (Collection.prototype[name]) { return overrideErr(name); } else { Collection.prototype[name] = registrant; } } else if (type === 'layout') { // fill in missing layout functions in the prototype var Layout = function Layout(options) { this.options = options; registrant.call(this, options); // make sure layout has _private for use w/ std apis like .on() if (!plainObject(this._private)) { this._private = {}; } this._private.cy = options.cy; this._private.listeners = []; this.createEmitter(); }; var layoutProto = Layout.prototype = Object.create(registrant.prototype); var optLayoutFns = []; for (var i = 0; i < optLayoutFns.length; i++) { var fnName = optLayoutFns[i]; layoutProto[fnName] = layoutProto[fnName] || function () { return this; }; } // either .start() or .run() is defined, so autogen the other if (layoutProto.start && !layoutProto.run) { layoutProto.run = function () { this.start(); return this; }; } else if (!layoutProto.start && layoutProto.run) { layoutProto.start = function () { this.run(); return this; }; } var regStop = registrant.prototype.stop; layoutProto.stop = function () { var opts = this.options; if (opts && opts.animate) { var anis = this.animations; if (anis) { for (var _i = 0; _i < anis.length; _i++) { anis[_i].stop(); } } } if (regStop) { regStop.call(this); } else { this.emit('layoutstop'); } return this; }; if (!layoutProto.destroy) { layoutProto.destroy = function () { return this; }; } layoutProto.cy = function () { return this._private.cy; }; var getCy = function getCy(layout) { return layout._private.cy; }; var emitterOpts = { addEventFields: function addEventFields(layout, evt) { evt.layout = layout; evt.cy = getCy(layout); evt.target = layout; }, bubble: function bubble() { return true; }, parent: function parent(layout) { return getCy(layout); } }; extend(layoutProto, { createEmitter: function createEmitter() { this._private.emitter = new Emitter(emitterOpts, this); return this; }, emitter: function emitter() { return this._private.emitter; }, on: function on(evt, cb) { this.emitter().on(evt, cb); return this; }, one: function one(evt, cb) { this.emitter().one(evt, cb); return this; }, once: function once(evt, cb) { this.emitter().one(evt, cb); return this; }, removeListener: function removeListener(evt, cb) { this.emitter().removeListener(evt, cb); return this; }, removeAllListeners: function removeAllListeners() { this.emitter().removeAllListeners(); return this; }, emit: function emit(evt, params) { this.emitter().emit(evt, params); return this; } }); define.eventAliasesOn(layoutProto); ext = Layout; // replace with our wrapped layout } else if (type === 'renderer' && name !== 'null' && name !== 'base') { // user registered renderers inherit from base var BaseRenderer = getExtension('renderer', 'base'); var bProto = BaseRenderer.prototype; var RegistrantRenderer = registrant; var rProto = registrant.prototype; var Renderer = function Renderer() { BaseRenderer.apply(this, arguments); RegistrantRenderer.apply(this, arguments); }; var proto = Renderer.prototype; for (var pName in bProto) { var pVal = bProto[pName]; var existsInR = rProto[pName] != null; if (existsInR) { return overrideErr(pName); } proto[pName] = pVal; // take impl from base } for (var _pName in rProto) { proto[_pName] = rProto[_pName]; // take impl from registrant } bProto.clientFunctions.forEach(function (name) { proto[name] = proto[name] || function () { error('Renderer does not implement `renderer.' + name + '()` on its prototype'); }; }); ext = Renderer; } else if (type === '__proto__' || type === 'constructor' || type === 'prototype') { // to avoid potential prototype pollution return error(type + ' is an illegal type to be registered, possibly lead to prototype pollutions'); } return setMap({ map: extensions, keys: [type, name], value: ext }); } function getExtension(type, name) { return getMap({ map: extensions, keys: [type, name] }); } function setModule(type, name, moduleType, moduleName, registrant) { return setMap({ map: modules, keys: [type, name, moduleType, moduleName], value: registrant }); } function getModule(type, name, moduleType, moduleName) { return getMap({ map: modules, keys: [type, name, moduleType, moduleName] }); } var extension = function extension() { // e.g. extension('renderer', 'svg') if (arguments.length === 2) { return getExtension.apply(null, arguments); } // e.g. extension('renderer', 'svg', { ... }) else if (arguments.length === 3) { return setExtension.apply(null, arguments); } // e.g. extension('renderer', 'svg', 'nodeShape', 'ellipse') else if (arguments.length === 4) { return getModule.apply(null, arguments); } // e.g. extension('renderer', 'svg', 'nodeShape', 'ellipse', { ... }) else if (arguments.length === 5) { return setModule.apply(null, arguments); } else { error('Invalid extension access syntax'); } }; // allows a core instance to access extensions internally Core.prototype.extension = extension; // included extensions incExts.forEach(function (group) { group.extensions.forEach(function (ext) { setExtension(group.type, ext.name, ext.impl); }); }); // a dummy stylesheet object that doesn't need a reference to the core // (useful for init) var Stylesheet = function Stylesheet() { if (!(this instanceof Stylesheet)) { return new Stylesheet(); } this.length = 0; }; var sheetfn = Stylesheet.prototype; sheetfn.instanceString = function () { return 'stylesheet'; }; // just store the selector to be parsed later sheetfn.selector = function (selector) { var i = this.length++; this[i] = { selector: selector, properties: [] }; return this; // chaining }; // just store the property to be parsed later sheetfn.css = function (name, value) { var i = this.length - 1; if (string(name)) { this[i].properties.push({ name: name, value: value }); } else if (plainObject(name)) { var map = name; var propNames = Object.keys(map); for (var j = 0; j < propNames.length; j++) { var key = propNames[j]; var mapVal = map[key]; if (mapVal == null) { continue; } var prop = Style.properties[key] || Style.properties[dash2camel(key)]; if (prop == null) { continue; } var _name = prop.name; var _value = mapVal; this[i].properties.push({ name: _name, value: _value }); } } return this; // chaining }; sheetfn.style = sheetfn.css; // generate a real style object from the dummy stylesheet sheetfn.generateStyle = function (cy) { var style = new Style(cy); return this.appendToStyle(style); }; // append a dummy stylesheet object on a real style object sheetfn.appendToStyle = function (style) { for (var i = 0; i < this.length; i++) { var context = this[i]; var selector = context.selector; var props = context.properties; style.selector(selector); // apply selector for (var j = 0; j < props.length; j++) { var prop = props[j]; style.css(prop.name, prop.value); // apply property } } return style; }; var version = "3.29.1"; var cytoscape = function cytoscape(options) { // if no options specified, use default if (options === undefined) { options = {}; } // create instance if (plainObject(options)) { return new Core(options); } // allow for registration of extensions else if (string(options)) { return extension.apply(extension, arguments); } }; // e.g. cytoscape.use( require('cytoscape-foo'), bar ) cytoscape.use = function (ext) { var args = Array.prototype.slice.call(arguments, 1); // args to pass to ext args.unshift(cytoscape); // cytoscape is first arg to ext ext.apply(null, args); return this; }; cytoscape.warnings = function (bool) { return warnings(bool); }; // replaced by build system cytoscape.version = version; // expose public apis (mostly for extensions) cytoscape.stylesheet = cytoscape.Stylesheet = Stylesheet; return cytoscape; })); ================================================ FILE: documentation/CNAME ================================================ js.cytoscape.org ================================================ FILE: documentation/css/font-awesome.css ================================================ /*! * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) */ /* FONT PATH * -------------------------- */ @font-face { font-family: 'FontAwesome'; src: url('../font/fontawesome-webfont.eot?v=4.6.3'); src: url('../font/fontawesome-webfont.eot?#iefix&v=4.6.3') format('embedded-opentype'), url('../font/fontawesome-webfont.woff2?v=4.6.3') format('woff2'), url('../font/fontawesome-webfont.woff?v=4.6.3') format('woff'), url('../font/fontawesome-webfont.ttf?v=4.6.3') format('truetype'), url('../font/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular') format('svg'); font-weight: normal; font-style: normal; } .fa { display: inline-block; font: normal normal normal 14px/1 FontAwesome; font-size: inherit; text-rendering: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* makes the font 33% larger relative to the icon container */ .fa-lg { font-size: 1.33333333em; line-height: 0.75em; vertical-align: -15%; } .fa-2x { font-size: 2em; } .fa-3x { font-size: 3em; } .fa-4x { font-size: 4em; } .fa-5x { font-size: 5em; } .fa-fw { width: 1.28571429em; text-align: center; } .fa-ul { padding-left: 0; margin-left: 2.14285714em; list-style-type: none; } .fa-ul > li { position: relative; } .fa-li { position: absolute; left: -2.14285714em; width: 2.14285714em; top: 0.14285714em; text-align: center; } .fa-li.fa-lg { left: -1.85714286em; } .fa-border { padding: .2em .25em .15em; border: solid 0.08em #eeeeee; border-radius: .1em; } .fa-pull-left { float: left; } .fa-pull-right { float: right; } .fa.fa-pull-left { margin-right: .3em; } .fa.fa-pull-right { margin-left: .3em; } /* Deprecated as of 4.4.0 */ .pull-right { float: right; } .pull-left { float: left; } .fa.pull-left { margin-right: .3em; } .fa.pull-right { margin-left: .3em; } .fa-spin { -webkit-animation: fa-spin 2s infinite linear; animation: fa-spin 2s infinite linear; } .fa-pulse { -webkit-animation: fa-spin 1s infinite steps(8); animation: fa-spin 1s infinite steps(8); } @-webkit-keyframes fa-spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(359deg); transform: rotate(359deg); } } @keyframes fa-spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(359deg); transform: rotate(359deg); } } .fa-rotate-90 { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; -webkit-transform: rotate(90deg); -ms-transform: rotate(90deg); transform: rotate(90deg); } .fa-rotate-180 { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; -webkit-transform: rotate(180deg); -ms-transform: rotate(180deg); transform: rotate(180deg); } .fa-rotate-270 { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; -webkit-transform: rotate(270deg); -ms-transform: rotate(270deg); transform: rotate(270deg); } .fa-flip-horizontal { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; -webkit-transform: scale(-1, 1); -ms-transform: scale(-1, 1); transform: scale(-1, 1); } .fa-flip-vertical { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; -webkit-transform: scale(1, -1); -ms-transform: scale(1, -1); transform: scale(1, -1); } :root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical { filter: none; } .fa-stack { position: relative; display: inline-block; width: 2em; height: 2em; line-height: 2em; vertical-align: middle; } .fa-stack-1x, .fa-stack-2x { position: absolute; left: 0; width: 100%; text-align: center; } .fa-stack-1x { line-height: inherit; } .fa-stack-2x { font-size: 2em; } .fa-inverse { color: #ffffff; } /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen readers do not read off random characters that represent icons */ .fa-glass:before { content: "\f000"; } .fa-music:before { content: "\f001"; } .fa-search:before { content: "\f002"; } .fa-envelope-o:before { content: "\f003"; } .fa-heart:before { content: "\f004"; } .fa-star:before { content: "\f005"; } .fa-star-o:before { content: "\f006"; } .fa-user:before { content: "\f007"; } .fa-film:before { content: "\f008"; } .fa-th-large:before { content: "\f009"; } .fa-th:before { content: "\f00a"; } .fa-th-list:before { content: "\f00b"; } .fa-check:before { content: "\f00c"; } .fa-remove:before, .fa-close:before, .fa-times:before { content: "\f00d"; } .fa-search-plus:before { content: "\f00e"; } .fa-search-minus:before { content: "\f010"; } .fa-power-off:before { content: "\f011"; } .fa-signal:before { content: "\f012"; } .fa-gear:before, .fa-cog:before { content: "\f013"; } .fa-trash-o:before { content: "\f014"; } .fa-home:before { content: "\f015"; } .fa-file-o:before { content: "\f016"; } .fa-clock-o:before { content: "\f017"; } .fa-road:before { content: "\f018"; } .fa-download:before { content: "\f019"; } .fa-arrow-circle-o-down:before { content: "\f01a"; } .fa-arrow-circle-o-up:before { content: "\f01b"; } .fa-inbox:before { content: "\f01c"; } .fa-play-circle-o:before { content: "\f01d"; } .fa-rotate-right:before, .fa-repeat:before { content: "\f01e"; } .fa-refresh:before { content: "\f021"; } .fa-list-alt:before { content: "\f022"; } .fa-lock:before { content: "\f023"; } .fa-flag:before { content: "\f024"; } .fa-headphones:before { content: "\f025"; } .fa-volume-off:before { content: "\f026"; } .fa-volume-down:before { content: "\f027"; } .fa-volume-up:before { content: "\f028"; } .fa-qrcode:before { content: "\f029"; } .fa-barcode:before { content: "\f02a"; } .fa-tag:before { content: "\f02b"; } .fa-tags:before { content: "\f02c"; } .fa-book:before { content: "\f02d"; } .fa-bookmark:before { content: "\f02e"; } .fa-print:before { content: "\f02f"; } .fa-camera:before { content: "\f030"; } .fa-font:before { content: "\f031"; } .fa-bold:before { content: "\f032"; } .fa-italic:before { content: "\f033"; } .fa-text-height:before { content: "\f034"; } .fa-text-width:before { content: "\f035"; } .fa-align-left:before { content: "\f036"; } .fa-align-center:before { content: "\f037"; } .fa-align-right:before { content: "\f038"; } .fa-align-justify:before { content: "\f039"; } .fa-list:before { content: "\f03a"; } .fa-dedent:before, .fa-outdent:before { content: "\f03b"; } .fa-indent:before { content: "\f03c"; } .fa-video-camera:before { content: "\f03d"; } .fa-photo:before, .fa-image:before, .fa-picture-o:before { content: "\f03e"; } .fa-pencil:before { content: "\f040"; } .fa-map-marker:before { content: "\f041"; } .fa-adjust:before { content: "\f042"; } .fa-tint:before { content: "\f043"; } .fa-edit:before, .fa-pencil-square-o:before { content: "\f044"; } .fa-share-square-o:before { content: "\f045"; } .fa-check-square-o:before { content: "\f046"; } .fa-arrows:before { content: "\f047"; } .fa-step-backward:before { content: "\f048"; } .fa-fast-backward:before { content: "\f049"; } .fa-backward:before { content: "\f04a"; } .fa-play:before { content: "\f04b"; } .fa-pause:before { content: "\f04c"; } .fa-stop:before { content: "\f04d"; } .fa-forward:before { content: "\f04e"; } .fa-fast-forward:before { content: "\f050"; } .fa-step-forward:before { content: "\f051"; } .fa-eject:before { content: "\f052"; } .fa-chevron-left:before { content: "\f053"; } .fa-chevron-right:before { content: "\f054"; } .fa-plus-circle:before { content: "\f055"; } .fa-minus-circle:before { content: "\f056"; } .fa-times-circle:before { content: "\f057"; } .fa-check-circle:before { content: "\f058"; } .fa-question-circle:before { content: "\f059"; } .fa-info-circle:before { content: "\f05a"; } .fa-crosshairs:before { content: "\f05b"; } .fa-times-circle-o:before { content: "\f05c"; } .fa-check-circle-o:before { content: "\f05d"; } .fa-ban:before { content: "\f05e"; } .fa-arrow-left:before { content: "\f060"; } .fa-arrow-right:before { content: "\f061"; } .fa-arrow-up:before { content: "\f062"; } .fa-arrow-down:before { content: "\f063"; } .fa-mail-forward:before, .fa-share:before { content: "\f064"; } .fa-expand:before { content: "\f065"; } .fa-compress:before { content: "\f066"; } .fa-plus:before { content: "\f067"; } .fa-minus:before { content: "\f068"; } .fa-asterisk:before { content: "\f069"; } .fa-exclamation-circle:before { content: "\f06a"; } .fa-gift:before { content: "\f06b"; } .fa-leaf:before { content: "\f06c"; } .fa-fire:before { content: "\f06d"; } .fa-eye:before { content: "\f06e"; } .fa-eye-slash:before { content: "\f070"; } .fa-warning:before, .fa-exclamation-triangle:before { content: "\f071"; } .fa-plane:before { content: "\f072"; } .fa-calendar:before { content: "\f073"; } .fa-random:before { content: "\f074"; } .fa-comment:before { content: "\f075"; } .fa-magnet:before { content: "\f076"; } .fa-chevron-up:before { content: "\f077"; } .fa-chevron-down:before { content: "\f078"; } .fa-retweet:before { content: "\f079"; } .fa-shopping-cart:before { content: "\f07a"; } .fa-folder:before { content: "\f07b"; } .fa-folder-open:before { content: "\f07c"; } .fa-arrows-v:before { content: "\f07d"; } .fa-arrows-h:before { content: "\f07e"; } .fa-bar-chart-o:before, .fa-bar-chart:before { content: "\f080"; } .fa-twitter-square:before { content: "\f081"; } .fa-facebook-square:before { content: "\f082"; } .fa-camera-retro:before { content: "\f083"; } .fa-key:before { content: "\f084"; } .fa-gears:before, .fa-cogs:before { content: "\f085"; } .fa-comments:before { content: "\f086"; } .fa-thumbs-o-up:before { content: "\f087"; } .fa-thumbs-o-down:before { content: "\f088"; } .fa-star-half:before { content: "\f089"; } .fa-heart-o:before { content: "\f08a"; } .fa-sign-out:before { content: "\f08b"; } .fa-linkedin-square:before { content: "\f08c"; } .fa-thumb-tack:before { content: "\f08d"; } .fa-external-link:before { content: "\f08e"; } .fa-sign-in:before { content: "\f090"; } .fa-trophy:before { content: "\f091"; } .fa-github-square:before { content: "\f092"; } .fa-upload:before { content: "\f093"; } .fa-lemon-o:before { content: "\f094"; } .fa-phone:before { content: "\f095"; } .fa-square-o:before { content: "\f096"; } .fa-bookmark-o:before { content: "\f097"; } .fa-phone-square:before { content: "\f098"; } .fa-twitter:before { content: "\f099"; } .fa-facebook-f:before, .fa-facebook:before { content: "\f09a"; } .fa-github:before { content: "\f09b"; } .fa-unlock:before { content: "\f09c"; } .fa-credit-card:before { content: "\f09d"; } .fa-feed:before, .fa-rss:before { content: "\f09e"; } .fa-hdd-o:before { content: "\f0a0"; } .fa-bullhorn:before { content: "\f0a1"; } .fa-bell:before { content: "\f0f3"; } .fa-certificate:before { content: "\f0a3"; } .fa-hand-o-right:before { content: "\f0a4"; } .fa-hand-o-left:before { content: "\f0a5"; } .fa-hand-o-up:before { content: "\f0a6"; } .fa-hand-o-down:before { content: "\f0a7"; } .fa-arrow-circle-left:before { content: "\f0a8"; } .fa-arrow-circle-right:before { content: "\f0a9"; } .fa-arrow-circle-up:before { content: "\f0aa"; } .fa-arrow-circle-down:before { content: "\f0ab"; } .fa-globe:before { content: "\f0ac"; } .fa-wrench:before { content: "\f0ad"; } .fa-tasks:before { content: "\f0ae"; } .fa-filter:before { content: "\f0b0"; } .fa-briefcase:before { content: "\f0b1"; } .fa-arrows-alt:before { content: "\f0b2"; } .fa-group:before, .fa-users:before { content: "\f0c0"; } .fa-chain:before, .fa-link:before { content: "\f0c1"; } .fa-cloud:before { content: "\f0c2"; } .fa-flask:before { content: "\f0c3"; } .fa-cut:before, .fa-scissors:before { content: "\f0c4"; } .fa-copy:before, .fa-files-o:before { content: "\f0c5"; } .fa-paperclip:before { content: "\f0c6"; } .fa-save:before, .fa-floppy-o:before { content: "\f0c7"; } .fa-square:before { content: "\f0c8"; } .fa-navicon:before, .fa-reorder:before, .fa-bars:before { content: "\f0c9"; } .fa-list-ul:before { content: "\f0ca"; } .fa-list-ol:before { content: "\f0cb"; } .fa-strikethrough:before { content: "\f0cc"; } .fa-underline:before { content: "\f0cd"; } .fa-table:before { content: "\f0ce"; } .fa-magic:before { content: "\f0d0"; } .fa-truck:before { content: "\f0d1"; } .fa-pinterest:before { content: "\f0d2"; } .fa-pinterest-square:before { content: "\f0d3"; } .fa-google-plus-square:before { content: "\f0d4"; } .fa-google-plus:before { content: "\f0d5"; } .fa-money:before { content: "\f0d6"; } .fa-caret-down:before { content: "\f0d7"; } .fa-caret-up:before { content: "\f0d8"; } .fa-caret-left:before { content: "\f0d9"; } .fa-caret-right:before { content: "\f0da"; } .fa-columns:before { content: "\f0db"; } .fa-unsorted:before, .fa-sort:before { content: "\f0dc"; } .fa-sort-down:before, .fa-sort-desc:before { content: "\f0dd"; } .fa-sort-up:before, .fa-sort-asc:before { content: "\f0de"; } .fa-envelope:before { content: "\f0e0"; } .fa-linkedin:before { content: "\f0e1"; } .fa-rotate-left:before, .fa-undo:before { content: "\f0e2"; } .fa-legal:before, .fa-gavel:before { content: "\f0e3"; } .fa-dashboard:before, .fa-tachometer:before { content: "\f0e4"; } .fa-comment-o:before { content: "\f0e5"; } .fa-comments-o:before { content: "\f0e6"; } .fa-flash:before, .fa-bolt:before { content: "\f0e7"; } .fa-sitemap:before { content: "\f0e8"; } .fa-umbrella:before { content: "\f0e9"; } .fa-paste:before, .fa-clipboard:before { content: "\f0ea"; } .fa-lightbulb-o:before { content: "\f0eb"; } .fa-exchange:before { content: "\f0ec"; } .fa-cloud-download:before { content: "\f0ed"; } .fa-cloud-upload:before { content: "\f0ee"; } .fa-user-md:before { content: "\f0f0"; } .fa-stethoscope:before { content: "\f0f1"; } .fa-suitcase:before { content: "\f0f2"; } .fa-bell-o:before { content: "\f0a2"; } .fa-coffee:before { content: "\f0f4"; } .fa-cutlery:before { content: "\f0f5"; } .fa-file-text-o:before { content: "\f0f6"; } .fa-building-o:before { content: "\f0f7"; } .fa-hospital-o:before { content: "\f0f8"; } .fa-ambulance:before { content: "\f0f9"; } .fa-medkit:before { content: "\f0fa"; } .fa-fighter-jet:before { content: "\f0fb"; } .fa-beer:before { content: "\f0fc"; } .fa-h-square:before { content: "\f0fd"; } .fa-plus-square:before { content: "\f0fe"; } .fa-angle-double-left:before { content: "\f100"; } .fa-angle-double-right:before { content: "\f101"; } .fa-angle-double-up:before { content: "\f102"; } .fa-angle-double-down:before { content: "\f103"; } .fa-angle-left:before { content: "\f104"; } .fa-angle-right:before { content: "\f105"; } .fa-angle-up:before { content: "\f106"; } .fa-angle-down:before { content: "\f107"; } .fa-desktop:before { content: "\f108"; } .fa-laptop:before { content: "\f109"; } .fa-tablet:before { content: "\f10a"; } .fa-mobile-phone:before, .fa-mobile:before { content: "\f10b"; } .fa-circle-o:before { content: "\f10c"; } .fa-quote-left:before { content: "\f10d"; } .fa-quote-right:before { content: "\f10e"; } .fa-spinner:before { content: "\f110"; } .fa-circle:before { content: "\f111"; } .fa-mail-reply:before, .fa-reply:before { content: "\f112"; } .fa-github-alt:before { content: "\f113"; } .fa-folder-o:before { content: "\f114"; } .fa-folder-open-o:before { content: "\f115"; } .fa-smile-o:before { content: "\f118"; } .fa-frown-o:before { content: "\f119"; } .fa-meh-o:before { content: "\f11a"; } .fa-gamepad:before { content: "\f11b"; } .fa-keyboard-o:before { content: "\f11c"; } .fa-flag-o:before { content: "\f11d"; } .fa-flag-checkered:before { content: "\f11e"; } .fa-terminal:before { content: "\f120"; } .fa-code:before { content: "\f121"; } .fa-mail-reply-all:before, .fa-reply-all:before { content: "\f122"; } .fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before { content: "\f123"; } .fa-location-arrow:before { content: "\f124"; } .fa-crop:before { content: "\f125"; } .fa-code-fork:before { content: "\f126"; } .fa-unlink:before, .fa-chain-broken:before { content: "\f127"; } .fa-question:before { content: "\f128"; } .fa-info:before { content: "\f129"; } .fa-exclamation:before { content: "\f12a"; } .fa-superscript:before { content: "\f12b"; } .fa-subscript:before { content: "\f12c"; } .fa-eraser:before { content: "\f12d"; } .fa-puzzle-piece:before { content: "\f12e"; } .fa-microphone:before { content: "\f130"; } .fa-microphone-slash:before { content: "\f131"; } .fa-shield:before { content: "\f132"; } .fa-calendar-o:before { content: "\f133"; } .fa-fire-extinguisher:before { content: "\f134"; } .fa-rocket:before { content: "\f135"; } .fa-maxcdn:before { content: "\f136"; } .fa-chevron-circle-left:before { content: "\f137"; } .fa-chevron-circle-right:before { content: "\f138"; } .fa-chevron-circle-up:before { content: "\f139"; } .fa-chevron-circle-down:before { content: "\f13a"; } .fa-html5:before { content: "\f13b"; } .fa-css3:before { content: "\f13c"; } .fa-anchor:before { content: "\f13d"; } .fa-unlock-alt:before { content: "\f13e"; } .fa-bullseye:before { content: "\f140"; } .fa-ellipsis-h:before { content: "\f141"; } .fa-ellipsis-v:before { content: "\f142"; } .fa-rss-square:before { content: "\f143"; } .fa-play-circle:before { content: "\f144"; } .fa-ticket:before { content: "\f145"; } .fa-minus-square:before { content: "\f146"; } .fa-minus-square-o:before { content: "\f147"; } .fa-level-up:before { content: "\f148"; } .fa-level-down:before { content: "\f149"; } .fa-check-square:before { content: "\f14a"; } .fa-pencil-square:before { content: "\f14b"; } .fa-external-link-square:before { content: "\f14c"; } .fa-share-square:before { content: "\f14d"; } .fa-compass:before { content: "\f14e"; } .fa-toggle-down:before, .fa-caret-square-o-down:before { content: "\f150"; } .fa-toggle-up:before, .fa-caret-square-o-up:before { content: "\f151"; } .fa-toggle-right:before, .fa-caret-square-o-right:before { content: "\f152"; } .fa-euro:before, .fa-eur:before { content: "\f153"; } .fa-gbp:before { content: "\f154"; } .fa-dollar:before, .fa-usd:before { content: "\f155"; } .fa-rupee:before, .fa-inr:before { content: "\f156"; } .fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before { content: "\f157"; } .fa-ruble:before, .fa-rouble:before, .fa-rub:before { content: "\f158"; } .fa-won:before, .fa-krw:before { content: "\f159"; } .fa-bitcoin:before, .fa-btc:before { content: "\f15a"; } .fa-file:before { content: "\f15b"; } .fa-file-text:before { content: "\f15c"; } .fa-sort-alpha-asc:before { content: "\f15d"; } .fa-sort-alpha-desc:before { content: "\f15e"; } .fa-sort-amount-asc:before { content: "\f160"; } .fa-sort-amount-desc:before { content: "\f161"; } .fa-sort-numeric-asc:before { content: "\f162"; } .fa-sort-numeric-desc:before { content: "\f163"; } .fa-thumbs-up:before { content: "\f164"; } .fa-thumbs-down:before { content: "\f165"; } .fa-youtube-square:before { content: "\f166"; } .fa-youtube:before { content: "\f167"; } .fa-xing:before { content: "\f168"; } .fa-xing-square:before { content: "\f169"; } .fa-youtube-play:before { content: "\f16a"; } .fa-dropbox:before { content: "\f16b"; } .fa-stack-overflow:before { content: "\f16c"; } .fa-instagram:before { content: "\f16d"; } .fa-flickr:before { content: "\f16e"; } .fa-adn:before { content: "\f170"; } .fa-bitbucket:before { content: "\f171"; } .fa-bitbucket-square:before { content: "\f172"; } .fa-tumblr:before { content: "\f173"; } .fa-tumblr-square:before { content: "\f174"; } .fa-long-arrow-down:before { content: "\f175"; } .fa-long-arrow-up:before { content: "\f176"; } .fa-long-arrow-left:before { content: "\f177"; } .fa-long-arrow-right:before { content: "\f178"; } .fa-apple:before { content: "\f179"; } .fa-windows:before { content: "\f17a"; } .fa-android:before { content: "\f17b"; } .fa-linux:before { content: "\f17c"; } .fa-dribbble:before { content: "\f17d"; } .fa-skype:before { content: "\f17e"; } .fa-foursquare:before { content: "\f180"; } .fa-trello:before { content: "\f181"; } .fa-female:before { content: "\f182"; } .fa-male:before { content: "\f183"; } .fa-gittip:before, .fa-gratipay:before { content: "\f184"; } .fa-sun-o:before { content: "\f185"; } .fa-moon-o:before { content: "\f186"; } .fa-archive:before { content: "\f187"; } .fa-bug:before { content: "\f188"; } .fa-vk:before { content: "\f189"; } .fa-weibo:before { content: "\f18a"; } .fa-renren:before { content: "\f18b"; } .fa-pagelines:before { content: "\f18c"; } .fa-stack-exchange:before { content: "\f18d"; } .fa-arrow-circle-o-right:before { content: "\f18e"; } .fa-arrow-circle-o-left:before { content: "\f190"; } .fa-toggle-left:before, .fa-caret-square-o-left:before { content: "\f191"; } .fa-dot-circle-o:before { content: "\f192"; } .fa-wheelchair:before { content: "\f193"; } .fa-vimeo-square:before { content: "\f194"; } .fa-turkish-lira:before, .fa-try:before { content: "\f195"; } .fa-plus-square-o:before { content: "\f196"; } .fa-space-shuttle:before { content: "\f197"; } .fa-slack:before { content: "\f198"; } .fa-envelope-square:before { content: "\f199"; } .fa-wordpress:before { content: "\f19a"; } .fa-openid:before { content: "\f19b"; } .fa-institution:before, .fa-bank:before, .fa-university:before { content: "\f19c"; } .fa-mortar-board:before, .fa-graduation-cap:before { content: "\f19d"; } .fa-yahoo:before { content: "\f19e"; } .fa-google:before { content: "\f1a0"; } .fa-reddit:before { content: "\f1a1"; } .fa-reddit-square:before { content: "\f1a2"; } .fa-stumbleupon-circle:before { content: "\f1a3"; } .fa-stumbleupon:before { content: "\f1a4"; } .fa-delicious:before { content: "\f1a5"; } .fa-digg:before { content: "\f1a6"; } .fa-pied-piper-pp:before { content: "\f1a7"; } .fa-pied-piper-alt:before { content: "\f1a8"; } .fa-drupal:before { content: "\f1a9"; } .fa-joomla:before { content: "\f1aa"; } .fa-language:before { content: "\f1ab"; } .fa-fax:before { content: "\f1ac"; } .fa-building:before { content: "\f1ad"; } .fa-child:before { content: "\f1ae"; } .fa-paw:before { content: "\f1b0"; } .fa-spoon:before { content: "\f1b1"; } .fa-cube:before { content: "\f1b2"; } .fa-cubes:before { content: "\f1b3"; } .fa-behance:before { content: "\f1b4"; } .fa-behance-square:before { content: "\f1b5"; } .fa-steam:before { content: "\f1b6"; } .fa-steam-square:before { content: "\f1b7"; } .fa-recycle:before { content: "\f1b8"; } .fa-automobile:before, .fa-car:before { content: "\f1b9"; } .fa-cab:before, .fa-taxi:before { content: "\f1ba"; } .fa-tree:before { content: "\f1bb"; } .fa-spotify:before { content: "\f1bc"; } .fa-deviantart:before { content: "\f1bd"; } .fa-soundcloud:before { content: "\f1be"; } .fa-database:before { content: "\f1c0"; } .fa-file-pdf-o:before { content: "\f1c1"; } .fa-file-word-o:before { content: "\f1c2"; } .fa-file-excel-o:before { content: "\f1c3"; } .fa-file-powerpoint-o:before { content: "\f1c4"; } .fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before { content: "\f1c5"; } .fa-file-zip-o:before, .fa-file-archive-o:before { content: "\f1c6"; } .fa-file-sound-o:before, .fa-file-audio-o:before { content: "\f1c7"; } .fa-file-movie-o:before, .fa-file-video-o:before { content: "\f1c8"; } .fa-file-code-o:before { content: "\f1c9"; } .fa-vine:before { content: "\f1ca"; } .fa-codepen:before { content: "\f1cb"; } .fa-jsfiddle:before { content: "\f1cc"; } .fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before { content: "\f1cd"; } .fa-circle-o-notch:before { content: "\f1ce"; } .fa-ra:before, .fa-resistance:before, .fa-rebel:before { content: "\f1d0"; } .fa-ge:before, .fa-empire:before { content: "\f1d1"; } .fa-git-square:before { content: "\f1d2"; } .fa-git:before { content: "\f1d3"; } .fa-y-combinator-square:before, .fa-yc-square:before, .fa-hacker-news:before { content: "\f1d4"; } .fa-tencent-weibo:before { content: "\f1d5"; } .fa-qq:before { content: "\f1d6"; } .fa-wechat:before, .fa-weixin:before { content: "\f1d7"; } .fa-send:before, .fa-paper-plane:before { content: "\f1d8"; } .fa-send-o:before, .fa-paper-plane-o:before { content: "\f1d9"; } .fa-history:before { content: "\f1da"; } .fa-circle-thin:before { content: "\f1db"; } .fa-header:before { content: "\f1dc"; } .fa-paragraph:before { content: "\f1dd"; } .fa-sliders:before { content: "\f1de"; } .fa-share-alt:before { content: "\f1e0"; } .fa-share-alt-square:before { content: "\f1e1"; } .fa-bomb:before { content: "\f1e2"; } .fa-soccer-ball-o:before, .fa-futbol-o:before { content: "\f1e3"; } .fa-tty:before { content: "\f1e4"; } .fa-binoculars:before { content: "\f1e5"; } .fa-plug:before { content: "\f1e6"; } .fa-slideshare:before { content: "\f1e7"; } .fa-twitch:before { content: "\f1e8"; } .fa-yelp:before { content: "\f1e9"; } .fa-newspaper-o:before { content: "\f1ea"; } .fa-wifi:before { content: "\f1eb"; } .fa-calculator:before { content: "\f1ec"; } .fa-paypal:before { content: "\f1ed"; } .fa-google-wallet:before { content: "\f1ee"; } .fa-cc-visa:before { content: "\f1f0"; } .fa-cc-mastercard:before { content: "\f1f1"; } .fa-cc-discover:before { content: "\f1f2"; } .fa-cc-amex:before { content: "\f1f3"; } .fa-cc-paypal:before { content: "\f1f4"; } .fa-cc-stripe:before { content: "\f1f5"; } .fa-bell-slash:before { content: "\f1f6"; } .fa-bell-slash-o:before { content: "\f1f7"; } .fa-trash:before { content: "\f1f8"; } .fa-copyright:before { content: "\f1f9"; } .fa-at:before { content: "\f1fa"; } .fa-eyedropper:before { content: "\f1fb"; } .fa-paint-brush:before { content: "\f1fc"; } .fa-birthday-cake:before { content: "\f1fd"; } .fa-area-chart:before { content: "\f1fe"; } .fa-pie-chart:before { content: "\f200"; } .fa-line-chart:before { content: "\f201"; } .fa-lastfm:before { content: "\f202"; } .fa-lastfm-square:before { content: "\f203"; } .fa-toggle-off:before { content: "\f204"; } .fa-toggle-on:before { content: "\f205"; } .fa-bicycle:before { content: "\f206"; } .fa-bus:before { content: "\f207"; } .fa-ioxhost:before { content: "\f208"; } .fa-angellist:before { content: "\f209"; } .fa-cc:before { content: "\f20a"; } .fa-shekel:before, .fa-sheqel:before, .fa-ils:before { content: "\f20b"; } .fa-meanpath:before { content: "\f20c"; } .fa-buysellads:before { content: "\f20d"; } .fa-connectdevelop:before { content: "\f20e"; } .fa-dashcube:before { content: "\f210"; } .fa-forumbee:before { content: "\f211"; } .fa-leanpub:before { content: "\f212"; } .fa-sellsy:before { content: "\f213"; } .fa-shirtsinbulk:before { content: "\f214"; } .fa-simplybuilt:before { content: "\f215"; } .fa-skyatlas:before { content: "\f216"; } .fa-cart-plus:before { content: "\f217"; } .fa-cart-arrow-down:before { content: "\f218"; } .fa-diamond:before { content: "\f219"; } .fa-ship:before { content: "\f21a"; } .fa-user-secret:before { content: "\f21b"; } .fa-motorcycle:before { content: "\f21c"; } .fa-street-view:before { content: "\f21d"; } .fa-heartbeat:before { content: "\f21e"; } .fa-venus:before { content: "\f221"; } .fa-mars:before { content: "\f222"; } .fa-mercury:before { content: "\f223"; } .fa-intersex:before, .fa-transgender:before { content: "\f224"; } .fa-transgender-alt:before { content: "\f225"; } .fa-venus-double:before { content: "\f226"; } .fa-mars-double:before { content: "\f227"; } .fa-venus-mars:before { content: "\f228"; } .fa-mars-stroke:before { content: "\f229"; } .fa-mars-stroke-v:before { content: "\f22a"; } .fa-mars-stroke-h:before { content: "\f22b"; } .fa-neuter:before { content: "\f22c"; } .fa-genderless:before { content: "\f22d"; } .fa-facebook-official:before { content: "\f230"; } .fa-pinterest-p:before { content: "\f231"; } .fa-whatsapp:before { content: "\f232"; } .fa-server:before { content: "\f233"; } .fa-user-plus:before { content: "\f234"; } .fa-user-times:before { content: "\f235"; } .fa-hotel:before, .fa-bed:before { content: "\f236"; } .fa-viacoin:before { content: "\f237"; } .fa-train:before { content: "\f238"; } .fa-subway:before { content: "\f239"; } .fa-medium:before { content: "\f23a"; } .fa-yc:before, .fa-y-combinator:before { content: "\f23b"; } .fa-optin-monster:before { content: "\f23c"; } .fa-opencart:before { content: "\f23d"; } .fa-expeditedssl:before { content: "\f23e"; } .fa-battery-4:before, .fa-battery-full:before { content: "\f240"; } .fa-battery-3:before, .fa-battery-three-quarters:before { content: "\f241"; } .fa-battery-2:before, .fa-battery-half:before { content: "\f242"; } .fa-battery-1:before, .fa-battery-quarter:before { content: "\f243"; } .fa-battery-0:before, .fa-battery-empty:before { content: "\f244"; } .fa-mouse-pointer:before { content: "\f245"; } .fa-i-cursor:before { content: "\f246"; } .fa-object-group:before { content: "\f247"; } .fa-object-ungroup:before { content: "\f248"; } .fa-sticky-note:before { content: "\f249"; } .fa-sticky-note-o:before { content: "\f24a"; } .fa-cc-jcb:before { content: "\f24b"; } .fa-cc-diners-club:before { content: "\f24c"; } .fa-clone:before { content: "\f24d"; } .fa-balance-scale:before { content: "\f24e"; } .fa-hourglass-o:before { content: "\f250"; } .fa-hourglass-1:before, .fa-hourglass-start:before { content: "\f251"; } .fa-hourglass-2:before, .fa-hourglass-half:before { content: "\f252"; } .fa-hourglass-3:before, .fa-hourglass-end:before { content: "\f253"; } .fa-hourglass:before { content: "\f254"; } .fa-hand-grab-o:before, .fa-hand-rock-o:before { content: "\f255"; } .fa-hand-stop-o:before, .fa-hand-paper-o:before { content: "\f256"; } .fa-hand-scissors-o:before { content: "\f257"; } .fa-hand-lizard-o:before { content: "\f258"; } .fa-hand-spock-o:before { content: "\f259"; } .fa-hand-pointer-o:before { content: "\f25a"; } .fa-hand-peace-o:before { content: "\f25b"; } .fa-trademark:before { content: "\f25c"; } .fa-registered:before { content: "\f25d"; } .fa-creative-commons:before { content: "\f25e"; } .fa-gg:before { content: "\f260"; } .fa-gg-circle:before { content: "\f261"; } .fa-tripadvisor:before { content: "\f262"; } .fa-odnoklassniki:before { content: "\f263"; } .fa-odnoklassniki-square:before { content: "\f264"; } .fa-get-pocket:before { content: "\f265"; } .fa-wikipedia-w:before { content: "\f266"; } .fa-safari:before { content: "\f267"; } .fa-chrome:before { content: "\f268"; } .fa-firefox:before { content: "\f269"; } .fa-opera:before { content: "\f26a"; } .fa-internet-explorer:before { content: "\f26b"; } .fa-tv:before, .fa-television:before { content: "\f26c"; } .fa-contao:before { content: "\f26d"; } .fa-500px:before { content: "\f26e"; } .fa-amazon:before { content: "\f270"; } .fa-calendar-plus-o:before { content: "\f271"; } .fa-calendar-minus-o:before { content: "\f272"; } .fa-calendar-times-o:before { content: "\f273"; } .fa-calendar-check-o:before { content: "\f274"; } .fa-industry:before { content: "\f275"; } .fa-map-pin:before { content: "\f276"; } .fa-map-signs:before { content: "\f277"; } .fa-map-o:before { content: "\f278"; } .fa-map:before { content: "\f279"; } .fa-commenting:before { content: "\f27a"; } .fa-commenting-o:before { content: "\f27b"; } .fa-houzz:before { content: "\f27c"; } .fa-vimeo:before { content: "\f27d"; } .fa-black-tie:before { content: "\f27e"; } .fa-fonticons:before { content: "\f280"; } .fa-reddit-alien:before { content: "\f281"; } .fa-edge:before { content: "\f282"; } .fa-credit-card-alt:before { content: "\f283"; } .fa-codiepie:before { content: "\f284"; } .fa-modx:before { content: "\f285"; } .fa-fort-awesome:before { content: "\f286"; } .fa-usb:before { content: "\f287"; } .fa-product-hunt:before { content: "\f288"; } .fa-mixcloud:before { content: "\f289"; } .fa-scribd:before { content: "\f28a"; } .fa-pause-circle:before { content: "\f28b"; } .fa-pause-circle-o:before { content: "\f28c"; } .fa-stop-circle:before { content: "\f28d"; } .fa-stop-circle-o:before { content: "\f28e"; } .fa-shopping-bag:before { content: "\f290"; } .fa-shopping-basket:before { content: "\f291"; } .fa-hashtag:before { content: "\f292"; } .fa-bluetooth:before { content: "\f293"; } .fa-bluetooth-b:before { content: "\f294"; } .fa-percent:before { content: "\f295"; } .fa-gitlab:before { content: "\f296"; } .fa-wpbeginner:before { content: "\f297"; } .fa-wpforms:before { content: "\f298"; } .fa-envira:before { content: "\f299"; } .fa-universal-access:before { content: "\f29a"; } .fa-wheelchair-alt:before { content: "\f29b"; } .fa-question-circle-o:before { content: "\f29c"; } .fa-blind:before { content: "\f29d"; } .fa-audio-description:before { content: "\f29e"; } .fa-volume-control-phone:before { content: "\f2a0"; } .fa-braille:before { content: "\f2a1"; } .fa-assistive-listening-systems:before { content: "\f2a2"; } .fa-asl-interpreting:before, .fa-american-sign-language-interpreting:before { content: "\f2a3"; } .fa-deafness:before, .fa-hard-of-hearing:before, .fa-deaf:before { content: "\f2a4"; } .fa-glide:before { content: "\f2a5"; } .fa-glide-g:before { content: "\f2a6"; } .fa-signing:before, .fa-sign-language:before { content: "\f2a7"; } .fa-low-vision:before { content: "\f2a8"; } .fa-viadeo:before { content: "\f2a9"; } .fa-viadeo-square:before { content: "\f2aa"; } .fa-snapchat:before { content: "\f2ab"; } .fa-snapchat-ghost:before { content: "\f2ac"; } .fa-snapchat-square:before { content: "\f2ad"; } .fa-pied-piper:before { content: "\f2ae"; } .fa-first-order:before { content: "\f2b0"; } .fa-yoast:before { content: "\f2b1"; } .fa-themeisle:before { content: "\f2b2"; } .fa-google-plus-circle:before, .fa-google-plus-official:before { content: "\f2b3"; } .fa-fa:before, .fa-font-awesome:before { content: "\f2b4"; } .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; } .sr-only-focusable:active, .sr-only-focusable:focus { position: static; width: auto; height: auto; margin: 0; overflow: visible; clip: auto; } ================================================ FILE: documentation/css/highlight/arta.css ================================================ /* Date: 17.V.2011 Author: pumbur */ .hljs { display: block; padding: 0.5em; background: #222; } .profile .hljs-header *, .ini .hljs-title, .nginx .hljs-title { color: #fff; } .hljs-comment, .hljs-javadoc, .hljs-preprocessor, .hljs-preprocessor .hljs-title, .hljs-pragma, .hljs-shebang, .profile .hljs-summary, .diff, .hljs-pi, .hljs-doctype, .hljs-tag, .hljs-template_comment, .css .hljs-rules, .tex .hljs-special { color: #444; } .hljs-string, .hljs-symbol, .diff .hljs-change, .hljs-regexp, .xml .hljs-attribute, .smalltalk .hljs-char, .xml .hljs-value, .ini .hljs-value, .clojure .hljs-attribute, .coffeescript .hljs-attribute { color: #ffcc33; } .hljs-number, .hljs-addition { color: #00cc66; } .hljs-built_in, .hljs-literal, .vhdl .hljs-typename, .go .hljs-constant, .go .hljs-typename, .ini .hljs-keyword, .lua .hljs-title, .perl .hljs-variable, .php .hljs-variable, .mel .hljs-variable, .django .hljs-variable, .css .funtion, .smalltalk .method, .hljs-hexcolor, .hljs-important, .hljs-flow, .hljs-inheritance, .parser3 .hljs-variable { color: #32AAEE; } .hljs-keyword, .hljs-tag .hljs-title, .css .hljs-tag, .css .hljs-class, .css .hljs-id, .css .hljs-pseudo, .css .hljs-attr_selector, .lisp .hljs-title, .clojure .hljs-built_in, .hljs-winutils, .tex .hljs-command, .hljs-request, .hljs-status { color: #6644aa; } .hljs-title, .ruby .hljs-constant, .vala .hljs-constant, .hljs-parent, .hljs-deletion, .hljs-template_tag, .css .hljs-keyword, .objectivec .hljs-class .hljs-id, .smalltalk .hljs-class, .lisp .hljs-keyword, .apache .hljs-tag, .nginx .hljs-variable, .hljs-envvar, .bash .hljs-variable, .go .hljs-built_in, .vbscript .hljs-built_in, .lua .hljs-built_in, .rsl .hljs-built_in, .tail, .avrasm .hljs-label, .tex .hljs-formula, .tex .hljs-formula * { color: #bb1166; } .hljs-yardoctag, .hljs-phpdoc, .profile .hljs-header, .ini .hljs-title, .apache .hljs-tag, .parser3 .hljs-title { font-weight: bold; } .coffeescript .javascript, .javascript .xml, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata { opacity: 0.6; } .hljs, .javascript, .css, .xml, .hljs-subst, .diff .hljs-chunk, .css .hljs-value, .css .hljs-attribute, .lisp .hljs-string, .lisp .hljs-number, .tail .hljs-params, .hljs-container, .haskell *, .erlang *, .erlang_repl * { color: #aaa; } ================================================ FILE: documentation/css/highlight/ascetic.css ================================================ /* Original style from softwaremaniacs.org (c) Ivan Sagalaev */ .hljs { display: block; padding: 0.5em; background: white; color: black; } .hljs-string, .hljs-tag .hljs-value, .hljs-filter .hljs-argument, .hljs-addition, .hljs-change, .apache .hljs-tag, .apache .hljs-cbracket, .nginx .hljs-built_in, .tex .hljs-formula { color: #888; } .hljs-comment, .hljs-template_comment, .hljs-shebang, .hljs-doctype, .hljs-pi, .hljs-javadoc, .hljs-deletion, .apache .hljs-sqbracket { color: #CCC; } .hljs-keyword, .hljs-tag .hljs-title, .ini .hljs-title, .lisp .hljs-title, .clojure .hljs-title, .http .hljs-title, .nginx .hljs-title, .css .hljs-tag, .hljs-winutils, .hljs-flow, .apache .hljs-tag, .tex .hljs-command, .hljs-request, .hljs-status { font-weight: bold; } ================================================ FILE: documentation/css/highlight/atelier-dune.dark.css ================================================ /* Base16 Atelier Dune Dark - Theme */ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) */ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ /* https://github.com/jmblog/color-themes-for-highlightjs */ /* Atelier Dune Dark Comment */ .hljs-comment, .hljs-title { color: #999580; } /* Atelier Dune Dark Red */ .hljs-variable, .hljs-attribute, .hljs-tag, .hljs-regexp, .ruby .hljs-constant, .xml .hljs-tag .hljs-title, .xml .hljs-pi, .xml .hljs-doctype, .html .hljs-doctype, .css .hljs-id, .css .hljs-class, .css .hljs-pseudo { color: #d73737; } /* Atelier Dune Dark Orange */ .hljs-number, .hljs-preprocessor, .hljs-pragma, .hljs-built_in, .hljs-literal, .hljs-params, .hljs-constant { color: #b65611; } /* Atelier Dune Dark Yellow */ .ruby .hljs-class .hljs-title, .css .hljs-rules .hljs-attribute { color: #cfb017; } /* Atelier Dune Dark Green */ .hljs-string, .hljs-value, .hljs-inheritance, .hljs-header, .ruby .hljs-symbol, .xml .hljs-cdata { color: #60ac39; } /* Atelier Dune Dark Aqua */ .css .hljs-hexcolor { color: #1fad83; } /* Atelier Dune Dark Blue */ .hljs-function, .python .hljs-decorator, .python .hljs-title, .ruby .hljs-function .hljs-title, .ruby .hljs-title .hljs-keyword, .perl .hljs-sub, .javascript .hljs-title, .coffeescript .hljs-title { color: #6684e1; } /* Atelier Dune Dark Purple */ .hljs-keyword, .javascript .hljs-function { color: #b854d4; } .hljs { display: block; background: #292824; color: #a6a28c; padding: 0.5em; } .coffeescript .javascript, .javascript .xml, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata { opacity: 0.5; } ================================================ FILE: documentation/css/highlight/atelier-dune.light.css ================================================ /* Base16 Atelier Dune Light - Theme */ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) */ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ /* https://github.com/jmblog/color-themes-for-highlightjs */ /* Atelier Dune Light Comment */ .hljs-comment, .hljs-title { color: #7d7a68; } /* Atelier Dune Light Red */ .hljs-variable, .hljs-attribute, .hljs-tag, .hljs-regexp, .ruby .hljs-constant, .xml .hljs-tag .hljs-title, .xml .hljs-pi, .xml .hljs-doctype, .html .hljs-doctype, .css .hljs-id, .css .hljs-class, .css .hljs-pseudo { color: #d73737; } /* Atelier Dune Light Orange */ .hljs-number, .hljs-preprocessor, .hljs-pragma, .hljs-built_in, .hljs-literal, .hljs-params, .hljs-constant { color: #b65611; } /* Atelier Dune Light Yellow */ .hljs-ruby .hljs-class .hljs-title, .css .hljs-rules .hljs-attribute { color: #cfb017; } /* Atelier Dune Light Green */ .hljs-string, .hljs-value, .hljs-inheritance, .hljs-header, .ruby .hljs-symbol, .xml .hljs-cdata { color: #60ac39; } /* Atelier Dune Light Aqua */ .css .hljs-hexcolor { color: #1fad83; } /* Atelier Dune Light Blue */ .hljs-function, .python .hljs-decorator, .python .hljs-title, .ruby .hljs-function .hljs-title, .ruby .hljs-title .hljs-keyword, .perl .hljs-sub, .javascript .hljs-title, .coffeescript .hljs-title { color: #6684e1; } /* Atelier Dune Light Purple */ .hljs-keyword, .javascript .hljs-function { color: #b854d4; } .hljs { display: block; background: #fefbec; color: #6e6b5e; padding: 0.5em; } .coffeescript .javascript, .javascript .xml, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata { opacity: 0.5; } ================================================ FILE: documentation/css/highlight/atelier-forest.dark.css ================================================ /* Base16 Atelier Forest Dark - Theme */ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/forest) */ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ /* https://github.com/jmblog/color-themes-for-highlightjs */ /* Atelier Forest Dark Comment */ .hljs-comment, .hljs-title { color: #9c9491; } /* Atelier Forest Dark Red */ .hljs-variable, .hljs-attribute, .hljs-tag, .hljs-regexp, .ruby .hljs-constant, .xml .hljs-tag .hljs-title, .xml .hljs-pi, .xml .hljs-doctype, .html .hljs-doctype, .css .hljs-id, .css .hljs-class, .css .hljs-pseudo { color: #f22c40; } /* Atelier Forest Dark Orange */ .hljs-number, .hljs-preprocessor, .hljs-pragma, .hljs-built_in, .hljs-literal, .hljs-params, .hljs-constant { color: #df5320; } /* Atelier Forest Dark Yellow */ .hljs-ruby .hljs-class .hljs-title, .css .hljs-rules .hljs-attribute { color: #d5911a; } /* Atelier Forest Dark Green */ .hljs-string, .hljs-value, .hljs-inheritance, .hljs-header, .ruby .hljs-symbol, .xml .hljs-cdata { color: #5ab738; } /* Atelier Forest Dark Aqua */ .css .hljs-hexcolor { color: #00ad9c; } /* Atelier Forest Dark Blue */ .hljs-function, .python .hljs-decorator, .python .hljs-title, .ruby .hljs-function .hljs-title, .ruby .hljs-title .hljs-keyword, .perl .hljs-sub, .javascript .hljs-title, .coffeescript .hljs-title { color: #407ee7; } /* Atelier Forest Dark Purple */ .hljs-keyword, .javascript .hljs-function { color: #6666ea; } .hljs { display: block; background: #2c2421; color: #a8a19f; padding: 0.5em; } .coffeescript .javascript, .javascript .xml, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata { opacity: 0.5; } ================================================ FILE: documentation/css/highlight/atelier-forest.light.css ================================================ /* Base16 Atelier Forest Light - Theme */ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/forest) */ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ /* https://github.com/jmblog/color-themes-for-highlightjs */ /* Atelier Forest Light Comment */ .hljs-comment, .hljs-title { color: #766e6b; } /* Atelier Forest Light Red */ .hljs-variable, .hljs-attribute, .hljs-tag, .hljs-regexp, .ruby .hljs-constant, .xml .hljs-tag .hljs-title, .xml .hljs-pi, .xml .hljs-doctype, .html .hljs-doctype, .css .hljs-id, .css .hljs-class, .css .hljs-pseudo { color: #f22c40; } /* Atelier Forest Light Orange */ .hljs-number, .hljs-preprocessor, .hljs-pragma, .hljs-built_in, .hljs-literal, .hljs-params, .hljs-constant { color: #df5320; } /* Atelier Forest Light Yellow */ .hljs-ruby .hljs-class .hljs-title, .css .hljs-rules .hljs-attribute { color: #d5911a; } /* Atelier Forest Light Green */ .hljs-string, .hljs-value, .hljs-inheritance, .hljs-header, .ruby .hljs-symbol, .xml .hljs-cdata { color: #5ab738; } /* Atelier Forest Light Aqua */ .css .hljs-hexcolor { color: #00ad9c; } /* Atelier Forest Light Blue */ .hljs-function, .python .hljs-decorator, .python .hljs-title, .ruby .hljs-function .hljs-title, .ruby .hljs-title .hljs-keyword, .perl .hljs-sub, .javascript .hljs-title, .coffeescript .hljs-title { color: #407ee7; } /* Atelier Forest Light Purple */ .hljs-keyword, .javascript .hljs-function { color: #6666ea; } .hljs { display: block; background: #f1efee; color: #68615e; padding: 0.5em; } .coffeescript .javascript, .javascript .xml, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata { opacity: 0.5; } ================================================ FILE: documentation/css/highlight/atelier-heath.dark.css ================================================ /* Base16 Atelier Heath Dark - Theme */ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ /* https://github.com/jmblog/color-themes-for-highlightjs */ /* Atelier Heath Dark Comment */ .hljs-comment, .hljs-title { color: #9e8f9e; } /* Atelier Heath Dark Red */ .hljs-variable, .hljs-attribute, .hljs-tag, .hljs-regexp, .ruby .hljs-constant, .xml .hljs-tag .hljs-title, .xml .hljs-pi, .xml .hljs-doctype, .html .hljs-doctype, .css .hljs-id, .css .hljs-class, .css .hljs-pseudo { color: #ca402b; } /* Atelier Heath Dark Orange */ .hljs-number, .hljs-preprocessor, .hljs-pragma, .hljs-built_in, .hljs-literal, .hljs-params, .hljs-constant { color: #a65926; } /* Atelier Heath Dark Yellow */ .hljs-ruby .hljs-class .hljs-title, .css .hljs-rules .hljs-attribute { color: #bb8a35; } /* Atelier Heath Dark Green */ .hljs-string, .hljs-value, .hljs-inheritance, .hljs-header, .ruby .hljs-symbol, .xml .hljs-cdata { color: #379a37; } /* Atelier Heath Dark Aqua */ .css .hljs-hexcolor { color: #159393; } /* Atelier Heath Dark Blue */ .hljs-function, .python .hljs-decorator, .python .hljs-title, .ruby .hljs-function .hljs-title, .ruby .hljs-title .hljs-keyword, .perl .hljs-sub, .javascript .hljs-title, .coffeescript .hljs-title { color: #516aec; } /* Atelier Heath Dark Purple */ .hljs-keyword, .javascript .hljs-function { color: #7b59c0; } .hljs { display: block; background: #292329; color: #ab9bab; padding: 0.5em; } .coffeescript .javascript, .javascript .xml, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata { opacity: 0.5; } ================================================ FILE: documentation/css/highlight/atelier-heath.light.css ================================================ /* Base16 Atelier Heath Light - Theme */ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ /* https://github.com/jmblog/color-themes-for-highlightjs */ /* Atelier Heath Light Comment */ .hljs-comment, .hljs-title { color: #776977; } /* Atelier Heath Light Red */ .hljs-variable, .hljs-attribute, .hljs-tag, .hljs-regexp, .ruby .hljs-constant, .xml .hljs-tag .hljs-title, .xml .hljs-pi, .xml .hljs-doctype, .html .hljs-doctype, .css .hljs-id, .css .hljs-class, .css .hljs-pseudo { color: #ca402b; } /* Atelier Heath Light Orange */ .hljs-number, .hljs-preprocessor, .hljs-pragma, .hljs-built_in, .hljs-literal, .hljs-params, .hljs-constant { color: #a65926; } /* Atelier Heath Light Yellow */ .hljs-ruby .hljs-class .hljs-title, .css .hljs-rules .hljs-attribute { color: #bb8a35; } /* Atelier Heath Light Green */ .hljs-string, .hljs-value, .hljs-inheritance, .hljs-header, .ruby .hljs-symbol, .xml .hljs-cdata { color: #379a37; } /* Atelier Heath Light Aqua */ .css .hljs-hexcolor { color: #159393; } /* Atelier Heath Light Blue */ .hljs-function, .python .hljs-decorator, .python .hljs-title, .ruby .hljs-function .hljs-title, .ruby .hljs-title .hljs-keyword, .perl .hljs-sub, .javascript .hljs-title, .coffeescript .hljs-title { color: #516aec; } /* Atelier Heath Light Purple */ .hljs-keyword, .javascript .hljs-function { color: #7b59c0; } .hljs { display: block; background: #f7f3f7; color: #695d69; padding: 0.5em; } .coffeescript .javascript, .javascript .xml, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata { opacity: 0.5; } ================================================ FILE: documentation/css/highlight/atelier-lakeside.dark.css ================================================ /* Base16 Atelier Lakeside Dark - Theme */ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside/) */ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ /* https://github.com/jmblog/color-themes-for-highlightjs */ /* Atelier Lakeside Dark Comment */ .hljs-comment, .hljs-title { color: #7195a8; } /* Atelier Lakeside Dark Red */ .hljs-variable, .hljs-attribute, .hljs-tag, .hljs-regexp, .ruby .hljs-constant, .xml .hljs-tag .hljs-title, .xml .hljs-pi, .xml .hljs-doctype, .html .hljs-doctype, .css .hljs-id, .css .hljs-class, .css .hljs-pseudo { color: #d22d72; } /* Atelier Lakeside Dark Orange */ .hljs-number, .hljs-preprocessor, .hljs-pragma, .hljs-built_in, .hljs-literal, .hljs-params, .hljs-constant { color: #935c25; } /* Atelier Lakeside Dark Yellow */ .hljs-ruby .hljs-class .hljs-title, .css .hljs-rules .hljs-attribute { color: #8a8a0f; } /* Atelier Lakeside Dark Green */ .hljs-string, .hljs-value, .hljs-inheritance, .hljs-header, .ruby .hljs-symbol, .xml .hljs-cdata { color: #568c3b; } /* Atelier Lakeside Dark Aqua */ .css .hljs-hexcolor { color: #2d8f6f; } /* Atelier Lakeside Dark Blue */ .hljs-function, .python .hljs-decorator, .python .hljs-title, .ruby .hljs-function .hljs-title, .ruby .hljs-title .hljs-keyword, .perl .hljs-sub, .javascript .hljs-title, .coffeescript .hljs-title { color: #257fad; } /* Atelier Lakeside Dark Purple */ .hljs-keyword, .javascript .hljs-function { color: #5d5db1; } .hljs { display: block; background: #1f292e; color: #7ea2b4; padding: 0.5em; } .coffeescript .javascript, .javascript .xml, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata { opacity: 0.5; } ================================================ FILE: documentation/css/highlight/atelier-lakeside.light.css ================================================ /* Base16 Atelier Lakeside Light - Theme */ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside/) */ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ /* https://github.com/jmblog/color-themes-for-highlightjs */ /* Atelier Lakeside Light Comment */ .hljs-comment, .hljs-title { color: #5a7b8c; } /* Atelier Lakeside Light Red */ .hljs-variable, .hljs-attribute, .hljs-tag, .hljs-regexp, .ruby .hljs-constant, .xml .hljs-tag .hljs-title, .xml .hljs-pi, .xml .hljs-doctype, .html .hljs-doctype, .css .hljs-id, .css .hljs-class, .css .hljs-pseudo { color: #d22d72; } /* Atelier Lakeside Light Orange */ .hljs-number, .hljs-preprocessor, .hljs-pragma, .hljs-built_in, .hljs-literal, .hljs-params, .hljs-constant { color: #935c25; } /* Atelier Lakeside Light Yellow */ .hljs-ruby .hljs-class .hljs-title, .css .hljs-rules .hljs-attribute { color: #8a8a0f; } /* Atelier Lakeside Light Green */ .hljs-string, .hljs-value, .hljs-inheritance, .hljs-header, .ruby .hljs-symbol, .xml .hljs-cdata { color: #568c3b; } /* Atelier Lakeside Light Aqua */ .css .hljs-hexcolor { color: #2d8f6f; } /* Atelier Lakeside Light Blue */ .hljs-function, .python .hljs-decorator, .python .hljs-title, .ruby .hljs-function .hljs-title, .ruby .hljs-title .hljs-keyword, .perl .hljs-sub, .javascript .hljs-title, .coffeescript .hljs-title { color: #257fad; } /* Atelier Lakeside Light Purple */ .hljs-keyword, .javascript .hljs-function { color: #5d5db1; } .hljs { display: block; background: #ebf8ff; color: #516d7b; padding: 0.5em; } .coffeescript .javascript, .javascript .xml, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata { opacity: 0.5; } ================================================ FILE: documentation/css/highlight/atelier-seaside.dark.css ================================================ /* Base16 Atelier Seaside Dark - Theme */ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside/) */ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ /* https://github.com/jmblog/color-themes-for-highlightjs */ /* Atelier Seaside Dark Comment */ .hljs-comment, .hljs-title { color: #809980; } /* Atelier Seaside Dark Red */ .hljs-variable, .hljs-attribute, .hljs-tag, .hljs-regexp, .ruby .hljs-constant, .xml .hljs-tag .hljs-title, .xml .hljs-pi, .xml .hljs-doctype, .html .hljs-doctype, .css .hljs-id, .css .hljs-class, .css .hljs-pseudo { color: #e6193c; } /* Atelier Seaside Dark Orange */ .hljs-number, .hljs-preprocessor, .hljs-pragma, .hljs-built_in, .hljs-literal, .hljs-params, .hljs-constant { color: #87711d; } /* Atelier Seaside Dark Yellow */ .hljs-ruby .hljs-class .hljs-title, .css .hljs-rules .hljs-attribute { color: #c3c322; } /* Atelier Seaside Dark Green */ .hljs-string, .hljs-value, .hljs-inheritance, .hljs-header, .ruby .hljs-symbol, .xml .hljs-cdata { color: #29a329; } /* Atelier Seaside Dark Aqua */ .css .hljs-hexcolor { color: #1999b3; } /* Atelier Seaside Dark Blue */ .hljs-function, .python .hljs-decorator, .python .hljs-title, .ruby .hljs-function .hljs-title, .ruby .hljs-title .hljs-keyword, .perl .hljs-sub, .javascript .hljs-title, .coffeescript .hljs-title { color: #3d62f5; } /* Atelier Seaside Dark Purple */ .hljs-keyword, .javascript .hljs-function { color: #ad2bee; } .hljs { display: block; background: #242924; color: #8ca68c; padding: 0.5em; } .coffeescript .javascript, .javascript .xml, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata { opacity: 0.5; } ================================================ FILE: documentation/css/highlight/atelier-seaside.light.css ================================================ /* Base16 Atelier Seaside Light - Theme */ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside/) */ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ /* https://github.com/jmblog/color-themes-for-highlightjs */ /* Atelier Seaside Light Comment */ .hljs-comment, .hljs-title { color: #687d68; } /* Atelier Seaside Light Red */ .hljs-variable, .hljs-attribute, .hljs-tag, .hljs-regexp, .ruby .hljs-constant, .xml .hljs-tag .hljs-title, .xml .hljs-pi, .xml .hljs-doctype, .html .hljs-doctype, .css .hljs-id, .css .hljs-class, .css .hljs-pseudo { color: #e6193c; } /* Atelier Seaside Light Orange */ .hljs-number, .hljs-preprocessor, .hljs-pragma, .hljs-built_in, .hljs-literal, .hljs-params, .hljs-constant { color: #87711d; } /* Atelier Seaside Light Yellow */ .hljs-ruby .hljs-class .hljs-title, .css .hljs-rules .hljs-attribute { color: #c3c322; } /* Atelier Seaside Light Green */ .hljs-string, .hljs-value, .hljs-inheritance, .hljs-header, .ruby .hljs-symbol, .xml .hljs-cdata { color: #29a329; } /* Atelier Seaside Light Aqua */ .css .hljs-hexcolor { color: #1999b3; } /* Atelier Seaside Light Blue */ .hljs-function, .python .hljs-decorator, .python .hljs-title, .ruby .hljs-function .hljs-title, .ruby .hljs-title .hljs-keyword, .perl .hljs-sub, .javascript .hljs-title, .coffeescript .hljs-title { color: #3d62f5; } /* Atelier Seaside Light Purple */ .hljs-keyword, .javascript .hljs-function { color: #ad2bee; } .hljs { display: block; background: #f0fff0; color: #5e6e5e; padding: 0.5em; } .coffeescript .javascript, .javascript .xml, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata { opacity: 0.5; } ================================================ FILE: documentation/css/highlight/brown_paper.css ================================================ /* Brown Paper style from goldblog.com.ua (c) Zaripov Yura */ .hljs { display: block; padding: 0.5em; background:#b7a68e url(./brown_papersq.png); } .hljs-keyword, .hljs-literal, .hljs-change, .hljs-winutils, .hljs-flow, .lisp .hljs-title, .clojure .hljs-built_in, .nginx .hljs-title, .tex .hljs-special, .hljs-request, .hljs-status { color:#005599; font-weight:bold; } .hljs, .hljs-subst, .hljs-tag .hljs-keyword { color: #363C69; } .hljs-string, .hljs-title, .haskell .hljs-type, .hljs-tag .hljs-value, .css .hljs-rules .hljs-value, .hljs-preprocessor, .hljs-pragma, .ruby .hljs-symbol, .ruby .hljs-symbol .hljs-string, .ruby .hljs-class .hljs-parent, .hljs-built_in, .sql .hljs-aggregate, .django .hljs-template_tag, .django .hljs-variable, .smalltalk .hljs-class, .hljs-javadoc, .ruby .hljs-string, .django .hljs-filter .hljs-argument, .smalltalk .hljs-localvars, .smalltalk .hljs-array, .hljs-attr_selector, .hljs-pseudo, .hljs-addition, .hljs-stream, .hljs-envvar, .apache .hljs-tag, .apache .hljs-cbracket, .tex .hljs-number { color: #2C009F; } .hljs-comment, .java .hljs-annotation, .python .hljs-decorator, .hljs-template_comment, .hljs-pi, .hljs-doctype, .hljs-deletion, .hljs-shebang, .apache .hljs-sqbracket, .nginx .hljs-built_in, .tex .hljs-formula { color: #802022; } .hljs-keyword, .hljs-literal, .css .hljs-id, .hljs-phpdoc, .hljs-title, .haskell .hljs-type, .vbscript .hljs-built_in, .sql .hljs-aggregate, .rsl .hljs-built_in, .smalltalk .hljs-class, .diff .hljs-header, .hljs-chunk, .hljs-winutils, .bash .hljs-variable, .apache .hljs-tag, .tex .hljs-command { font-weight: bold; } .coffeescript .javascript, .javascript .xml, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata { opacity: 0.8; } ================================================ FILE: documentation/css/highlight/dark.css ================================================ /* Dark style from softwaremaniacs.org (c) Ivan Sagalaev */ .hljs { display: block; padding: 0.5em; background: #444; } .hljs-keyword, .hljs-literal, .hljs-change, .hljs-winutils, .hljs-flow, .lisp .hljs-title, .clojure .hljs-built_in, .nginx .hljs-title, .tex .hljs-special { color: white; } .hljs, .hljs-subst { color: #DDD; } .hljs-string, .hljs-title, .haskell .hljs-type, .ini .hljs-title, .hljs-tag .hljs-value, .css .hljs-rules .hljs-value, .hljs-preprocessor, .hljs-pragma, .ruby .hljs-symbol, .ruby .hljs-symbol .hljs-string, .ruby .hljs-class .hljs-parent, .hljs-built_in, .sql .hljs-aggregate, .django .hljs-template_tag, .django .hljs-variable, .smalltalk .hljs-class, .hljs-javadoc, .ruby .hljs-string, .django .hljs-filter .hljs-argument, .smalltalk .hljs-localvars, .smalltalk .hljs-array, .hljs-attr_selector, .hljs-pseudo, .hljs-addition, .hljs-stream, .hljs-envvar, .apache .hljs-tag, .apache .hljs-cbracket, .tex .hljs-command, .hljs-prompt, .coffeescript .hljs-attribute { color: #D88; } .hljs-comment, .java .hljs-annotation, .python .hljs-decorator, .hljs-template_comment, .hljs-pi, .hljs-doctype, .hljs-deletion, .hljs-shebang, .apache .hljs-sqbracket, .tex .hljs-formula { color: #777; } .hljs-keyword, .hljs-literal, .hljs-title, .css .hljs-id, .hljs-phpdoc, .haskell .hljs-type, .vbscript .hljs-built_in, .sql .hljs-aggregate, .rsl .hljs-built_in, .smalltalk .hljs-class, .diff .hljs-header, .hljs-chunk, .hljs-winutils, .bash .hljs-variable, .apache .hljs-tag, .tex .hljs-special, .hljs-request, .hljs-status { font-weight: bold; } .coffeescript .javascript, .javascript .xml, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata { opacity: 0.5; } ================================================ FILE: documentation/css/highlight/default.css ================================================ /* Original style from softwaremaniacs.org (c) Ivan Sagalaev */ .hljs { display: block; padding: 0.5em; background: #F0F0F0; } .hljs, .hljs-subst, .hljs-tag .hljs-title, .lisp .hljs-title, .clojure .hljs-built_in, .nginx .hljs-title { color: black; } .hljs-string, .hljs-title, .hljs-constant, .hljs-parent, .hljs-tag .hljs-value, .hljs-rules .hljs-value, .hljs-rules .hljs-value .hljs-number, .hljs-preprocessor, .hljs-pragma, .haml .hljs-symbol, .ruby .hljs-symbol, .ruby .hljs-symbol .hljs-string, .hljs-aggregate, .hljs-template_tag, .django .hljs-variable, .smalltalk .hljs-class, .hljs-addition, .hljs-flow, .hljs-stream, .bash .hljs-variable, .apache .hljs-tag, .apache .hljs-cbracket, .tex .hljs-command, .tex .hljs-special, .erlang_repl .hljs-function_or_atom, .asciidoc .hljs-header, .markdown .hljs-header, .coffeescript .hljs-attribute { color: #800; } .smartquote, .hljs-comment, .hljs-annotation, .hljs-template_comment, .diff .hljs-header, .hljs-chunk, .asciidoc .hljs-blockquote, .markdown .hljs-blockquote { color: #888; } .hljs-number, .hljs-date, .hljs-regexp, .hljs-literal, .hljs-hexcolor, .smalltalk .hljs-symbol, .smalltalk .hljs-char, .go .hljs-constant, .hljs-change, .lasso .hljs-variable, .makefile .hljs-variable, .asciidoc .hljs-bullet, .markdown .hljs-bullet, .asciidoc .hljs-link_url, .markdown .hljs-link_url { color: #080; } .hljs-label, .hljs-javadoc, .ruby .hljs-string, .hljs-decorator, .hljs-filter .hljs-argument, .hljs-localvars, .hljs-array, .hljs-attr_selector, .hljs-important, .hljs-pseudo, .hljs-pi, .haml .hljs-bullet, .hljs-doctype, .hljs-deletion, .hljs-envvar, .hljs-shebang, .apache .hljs-sqbracket, .nginx .hljs-built_in, .tex .hljs-formula, .erlang_repl .hljs-reserved, .hljs-prompt, .asciidoc .hljs-link_label, .markdown .hljs-link_label, .vhdl .hljs-attribute, .clojure .hljs-attribute, .asciidoc .hljs-attribute, .lasso .hljs-attribute, .coffeescript .hljs-property, .hljs-phony { color: #88F } .hljs-keyword, .hljs-id, .hljs-title, .hljs-built_in, .hljs-aggregate, .css .hljs-tag, .hljs-javadoctag, .hljs-phpdoc, .hljs-yardoctag, .smalltalk .hljs-class, .hljs-winutils, .bash .hljs-variable, .apache .hljs-tag, .go .hljs-typename, .tex .hljs-command, .asciidoc .hljs-strong, .markdown .hljs-strong, .hljs-request, .hljs-status { font-weight: bold; } .asciidoc .hljs-emphasis, .markdown .hljs-emphasis { font-style: italic; } .nginx .hljs-built_in { font-weight: normal; } .coffeescript .javascript, .javascript .xml, .lasso .markup, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata { opacity: 0.5; } ================================================ FILE: documentation/css/highlight/docco.css ================================================ /* Docco style used in http://jashkenas.github.com/docco/ converted by Simon Madine (@thingsinjars) */ .hljs { display: block; padding: 0.5em; color: #000; background: #f8f8ff } .hljs-comment, .hljs-template_comment, .diff .hljs-header, .hljs-javadoc { color: #408080; font-style: italic } .hljs-keyword, .assignment, .hljs-literal, .css .rule .hljs-keyword, .hljs-winutils, .javascript .hljs-title, .lisp .hljs-title, .hljs-subst { color: #954121; } .hljs-number, .hljs-hexcolor { color: #40a070 } .hljs-string, .hljs-tag .hljs-value, .hljs-phpdoc, .tex .hljs-formula { color: #219161; } .hljs-title, .hljs-id { color: #19469D; } .hljs-params { color: #00F; } .javascript .hljs-title, .lisp .hljs-title, .hljs-subst { font-weight: normal } .hljs-class .hljs-title, .haskell .hljs-label, .tex .hljs-command { color: #458; font-weight: bold } .hljs-tag, .hljs-tag .hljs-title, .hljs-rules .hljs-property, .django .hljs-tag .hljs-keyword { color: #000080; font-weight: normal } .hljs-attribute, .hljs-variable, .instancevar, .lisp .hljs-body { color: #008080 } .hljs-regexp { color: #B68 } .hljs-class { color: #458; font-weight: bold } .hljs-symbol, .ruby .hljs-symbol .hljs-string, .ruby .hljs-symbol .hljs-keyword, .ruby .hljs-symbol .keymethods, .lisp .hljs-keyword, .tex .hljs-special, .input_number { color: #990073 } .builtin, .constructor, .hljs-built_in, .lisp .hljs-title { color: #0086b3 } .hljs-preprocessor, .hljs-pragma, .hljs-pi, .hljs-doctype, .hljs-shebang, .hljs-cdata { color: #999; font-weight: bold } .hljs-deletion { background: #fdd } .hljs-addition { background: #dfd } .diff .hljs-change { background: #0086b3 } .hljs-chunk { color: #aaa } .tex .hljs-formula { opacity: 0.5; } ================================================ FILE: documentation/css/highlight/far.css ================================================ /* FAR Style (c) MajestiC */ .hljs { display: block; padding: 0.5em; background: #000080; } .hljs, .hljs-subst { color: #0FF; } .hljs-string, .ruby .hljs-string, .haskell .hljs-type, .hljs-tag .hljs-value, .css .hljs-rules .hljs-value, .css .hljs-rules .hljs-value .hljs-number, .hljs-preprocessor, .hljs-pragma, .ruby .hljs-symbol, .ruby .hljs-symbol .hljs-string, .hljs-built_in, .sql .hljs-aggregate, .django .hljs-template_tag, .django .hljs-variable, .smalltalk .hljs-class, .hljs-addition, .apache .hljs-tag, .apache .hljs-cbracket, .tex .hljs-command, .clojure .hljs-title, .coffeescript .hljs-attribute { color: #FF0; } .hljs-keyword, .css .hljs-id, .hljs-title, .haskell .hljs-type, .vbscript .hljs-built_in, .sql .hljs-aggregate, .rsl .hljs-built_in, .smalltalk .hljs-class, .xml .hljs-tag .hljs-title, .hljs-winutils, .hljs-flow, .hljs-change, .hljs-envvar, .bash .hljs-variable, .tex .hljs-special, .clojure .hljs-built_in { color: #FFF; } .hljs-comment, .hljs-phpdoc, .hljs-javadoc, .java .hljs-annotation, .hljs-template_comment, .hljs-deletion, .apache .hljs-sqbracket, .tex .hljs-formula { color: #888; } .hljs-number, .hljs-date, .hljs-regexp, .hljs-literal, .smalltalk .hljs-symbol, .smalltalk .hljs-char, .clojure .hljs-attribute { color: #0F0; } .python .hljs-decorator, .django .hljs-filter .hljs-argument, .smalltalk .hljs-localvars, .smalltalk .hljs-array, .hljs-attr_selector, .hljs-pseudo, .xml .hljs-pi, .diff .hljs-header, .hljs-chunk, .hljs-shebang, .nginx .hljs-built_in, .hljs-prompt { color: #008080; } .hljs-keyword, .css .hljs-id, .hljs-title, .haskell .hljs-type, .vbscript .hljs-built_in, .sql .hljs-aggregate, .rsl .hljs-built_in, .smalltalk .hljs-class, .hljs-winutils, .hljs-flow, .apache .hljs-tag, .nginx .hljs-built_in, .tex .hljs-command, .tex .hljs-special, .hljs-request, .hljs-status { font-weight: bold; } ================================================ FILE: documentation/css/highlight/foundation.css ================================================ /* Description: Foundation 4 docs style for highlight.js Author: Dan Allen Website: http://foundation.zurb.com/docs/ Version: 1.0 Date: 2013-04-02 */ .hljs { display: block; padding: 0.5em; background: #eee; } .hljs-header, .hljs-decorator, .hljs-annotation { color: #000077; } .hljs-horizontal_rule, .hljs-link_url, .hljs-emphasis, .hljs-attribute { color: #070; } .hljs-emphasis { font-style: italic; } .hljs-link_label, .hljs-strong, .hljs-value, .hljs-string, .scss .hljs-value .hljs-string { color: #d14; } .hljs-strong { font-weight: bold; } .hljs-blockquote, .hljs-comment { color: #998; font-style: italic; } .asciidoc .hljs-title, .hljs-function .hljs-title { color: #900; } .hljs-class { color: #458; } .hljs-id, .hljs-pseudo, .hljs-constant, .hljs-hexcolor { color: teal; } .hljs-variable { color: #336699; } .hljs-bullet, .hljs-javadoc { color: #997700; } .hljs-pi, .hljs-doctype { color: #3344bb; } .hljs-code, .hljs-number { color: #099; } .hljs-important { color: #f00; } .smartquote, .hljs-label { color: #970; } .hljs-preprocessor, .hljs-pragma { color: #579; } .hljs-reserved, .hljs-keyword, .scss .hljs-value { color: #000; } .hljs-regexp { background-color: #fff0ff; color: #880088; } .hljs-symbol { color: #990073; } .hljs-symbol .hljs-string { color: #a60; } .hljs-tag { color: #007700; } .hljs-at_rule, .hljs-at_rule .hljs-keyword { color: #088; } .hljs-at_rule .hljs-preprocessor { color: #808; } .scss .hljs-tag, .scss .hljs-attribute { color: #339; } ================================================ FILE: documentation/css/highlight/github.css ================================================ /* github.com style (c) Vasily Polovnyov */ .hljs { display: block; padding: 0.5em; color: #333; background: #f8f8f8 } .hljs-comment, .hljs-template_comment, .diff .hljs-header, .hljs-javadoc { color: #998; font-style: italic } .hljs-keyword, .css .rule .hljs-keyword, .hljs-winutils, .javascript .hljs-title, .nginx .hljs-title, .hljs-subst, .hljs-request, .hljs-status { color: #333; font-weight: bold } .hljs-number, .hljs-hexcolor, .ruby .hljs-constant { color: #099; } .hljs-string, .hljs-tag .hljs-value, .hljs-phpdoc, .tex .hljs-formula { color: #d14 } .hljs-title, .hljs-id, .coffeescript .hljs-params, .scss .hljs-preprocessor { color: #900; font-weight: bold } .javascript .hljs-title, .lisp .hljs-title, .clojure .hljs-title, .hljs-subst { font-weight: normal } .hljs-class .hljs-title, .haskell .hljs-type, .vhdl .hljs-literal, .tex .hljs-command { color: #458; font-weight: bold } .hljs-tag, .hljs-tag .hljs-title, .hljs-rules .hljs-property, .django .hljs-tag .hljs-keyword { color: #000080; font-weight: normal } .hljs-attribute, .hljs-variable, .lisp .hljs-body { color: #008080 } .hljs-regexp { color: #009926 } .hljs-symbol, .ruby .hljs-symbol .hljs-string, .lisp .hljs-keyword, .tex .hljs-special, .hljs-prompt { color: #990073 } .hljs-built_in, .lisp .hljs-title, .clojure .hljs-built_in { color: #0086b3 } .hljs-preprocessor, .hljs-pragma, .hljs-pi, .hljs-doctype, .hljs-shebang, .hljs-cdata { color: #999; font-weight: bold } .hljs-deletion { background: #fdd } .hljs-addition { background: #dfd } .diff .hljs-change { background: #0086b3 } .hljs-chunk { color: #aaa } ================================================ FILE: documentation/css/highlight/googlecode.css ================================================ /* Google Code style (c) Aahan Krish */ .hljs { display: block; padding: 0.5em; background: white; color: black; } .hljs-comment, .hljs-template_comment, .hljs-javadoc, .hljs-comment * { color: #800; } .hljs-keyword, .method, .hljs-list .hljs-title, .clojure .hljs-built_in, .nginx .hljs-title, .hljs-tag .hljs-title, .setting .hljs-value, .hljs-winutils, .tex .hljs-command, .http .hljs-title, .hljs-request, .hljs-status { color: #008; } .hljs-envvar, .tex .hljs-special { color: #660; } .hljs-string, .hljs-tag .hljs-value, .hljs-cdata, .hljs-filter .hljs-argument, .hljs-attr_selector, .apache .hljs-cbracket, .hljs-date, .hljs-regexp, .coffeescript .hljs-attribute { color: #080; } .hljs-sub .hljs-identifier, .hljs-pi, .hljs-tag, .hljs-tag .hljs-keyword, .hljs-decorator, .ini .hljs-title, .hljs-shebang, .hljs-prompt, .hljs-hexcolor, .hljs-rules .hljs-value, .css .hljs-value .hljs-number, .hljs-literal, .hljs-symbol, .ruby .hljs-symbol .hljs-string, .hljs-number, .css .hljs-function, .clojure .hljs-attribute { color: #066; } .hljs-class .hljs-title, .haskell .hljs-type, .smalltalk .hljs-class, .hljs-javadoctag, .hljs-yardoctag, .hljs-phpdoc, .hljs-typename, .hljs-tag .hljs-attribute, .hljs-doctype, .hljs-class .hljs-id, .hljs-built_in, .setting, .hljs-params, .hljs-variable, .clojure .hljs-title { color: #606; } .css .hljs-tag, .hljs-rules .hljs-property, .hljs-pseudo, .hljs-subst { color: #000; } .css .hljs-class, .css .hljs-id { color: #9B703F; } .hljs-value .hljs-important { color: #ff7700; font-weight: bold; } .hljs-rules .hljs-keyword { color: #C5AF75; } .hljs-annotation, .apache .hljs-sqbracket, .nginx .hljs-built_in { color: #9B859D; } .hljs-preprocessor, .hljs-preprocessor *, .hljs-pragma { color: #444; } .tex .hljs-formula { background-color: #EEE; font-style: italic; } .diff .hljs-header, .hljs-chunk { color: #808080; font-weight: bold; } .diff .hljs-change { background-color: #BCCFF9; } .hljs-addition { background-color: #BAEEBA; } .hljs-deletion { background-color: #FFC8BD; } .hljs-comment .hljs-yardoctag { font-weight: bold; } ================================================ FILE: documentation/css/highlight/idea.css ================================================ /* Intellij Idea-like styling (c) Vasily Polovnyov */ .hljs { display: block; padding: 0.5em; color: #000; background: #fff; } .hljs-subst, .hljs-title { font-weight: normal; color: #000; } .hljs-comment, .hljs-template_comment, .hljs-javadoc, .diff .hljs-header { color: #808080; font-style: italic; } .hljs-annotation, .hljs-decorator, .hljs-preprocessor, .hljs-pragma, .hljs-doctype, .hljs-pi, .hljs-chunk, .hljs-shebang, .apache .hljs-cbracket, .hljs-prompt, .http .hljs-title { color: #808000; } .hljs-tag, .hljs-pi { background: #efefef; } .hljs-tag .hljs-title, .hljs-id, .hljs-attr_selector, .hljs-pseudo, .hljs-literal, .hljs-keyword, .hljs-hexcolor, .css .hljs-function, .ini .hljs-title, .css .hljs-class, .hljs-list .hljs-title, .clojure .hljs-title, .nginx .hljs-title, .tex .hljs-command, .hljs-request, .hljs-status { font-weight: bold; color: #000080; } .hljs-attribute, .hljs-rules .hljs-keyword, .hljs-number, .hljs-date, .hljs-regexp, .tex .hljs-special { font-weight: bold; color: #0000ff; } .hljs-number, .hljs-regexp { font-weight: normal; } .hljs-string, .hljs-value, .hljs-filter .hljs-argument, .css .hljs-function .hljs-params, .apache .hljs-tag { color: #008000; font-weight: bold; } .hljs-symbol, .ruby .hljs-symbol .hljs-string, .hljs-char, .tex .hljs-formula { color: #000; background: #d0eded; font-style: italic; } .hljs-phpdoc, .hljs-yardoctag, .hljs-javadoctag { text-decoration: underline; } .hljs-variable, .hljs-envvar, .apache .hljs-sqbracket, .nginx .hljs-built_in { color: #660e7a; } .hljs-addition { background: #baeeba; } .hljs-deletion { background: #ffc8bd; } .diff .hljs-change { background: #bccff9; } ================================================ FILE: documentation/css/highlight/ir_black.css ================================================ /* IR_Black style (c) Vasily Mikhailitchenko */ .hljs { display: block; padding: 0.5em; background: #000; color: #f8f8f8; } .hljs-shebang, .hljs-comment, .hljs-template_comment, .hljs-javadoc { color: #7c7c7c; } .hljs-keyword, .hljs-tag, .tex .hljs-command, .hljs-request, .hljs-status, .clojure .hljs-attribute { color: #96CBFE; } .hljs-sub .hljs-keyword, .method, .hljs-list .hljs-title, .nginx .hljs-title { color: #FFFFB6; } .hljs-string, .hljs-tag .hljs-value, .hljs-cdata, .hljs-filter .hljs-argument, .hljs-attr_selector, .apache .hljs-cbracket, .hljs-date, .coffeescript .hljs-attribute { color: #A8FF60; } .hljs-subst { color: #DAEFA3; } .hljs-regexp { color: #E9C062; } .hljs-title, .hljs-sub .hljs-identifier, .hljs-pi, .hljs-decorator, .tex .hljs-special, .haskell .hljs-type, .hljs-constant, .smalltalk .hljs-class, .hljs-javadoctag, .hljs-yardoctag, .hljs-phpdoc, .nginx .hljs-built_in { color: #FFFFB6; } .hljs-symbol, .ruby .hljs-symbol .hljs-string, .hljs-number, .hljs-variable, .vbscript, .hljs-literal { color: #C6C5FE; } .css .hljs-tag { color: #96CBFE; } .css .hljs-rules .hljs-property, .css .hljs-id { color: #FFFFB6; } .css .hljs-class { color: #FFF; } .hljs-hexcolor { color: #C6C5FE; } .hljs-number { color:#FF73FD; } .coffeescript .javascript, .javascript .xml, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata { opacity: 0.7; } ================================================ FILE: documentation/css/highlight/magula.css ================================================ /* Description: Magula style for highligh.js Author: Ruslan Keba Website: http://rukeba.com/ Version: 1.0 Date: 2009-01-03 Music: Aphex Twin / Xtal */ .hljs { display: block; padding: 0.5em; background-color: #f4f4f4; } .hljs, .hljs-subst, .lisp .hljs-title, .clojure .hljs-built_in { color: black; } .hljs-string, .hljs-title, .hljs-parent, .hljs-tag .hljs-value, .hljs-rules .hljs-value, .hljs-rules .hljs-value .hljs-number, .hljs-preprocessor, .hljs-pragma, .ruby .hljs-symbol, .ruby .hljs-symbol .hljs-string, .hljs-aggregate, .hljs-template_tag, .django .hljs-variable, .smalltalk .hljs-class, .hljs-addition, .hljs-flow, .hljs-stream, .bash .hljs-variable, .apache .hljs-cbracket, .coffeescript .hljs-attribute { color: #050; } .hljs-comment, .hljs-annotation, .hljs-template_comment, .diff .hljs-header, .hljs-chunk { color: #777; } .hljs-number, .hljs-date, .hljs-regexp, .hljs-literal, .smalltalk .hljs-symbol, .smalltalk .hljs-char, .hljs-change, .tex .hljs-special { color: #800; } .hljs-label, .hljs-javadoc, .ruby .hljs-string, .hljs-decorator, .hljs-filter .hljs-argument, .hljs-localvars, .hljs-array, .hljs-attr_selector, .hljs-pseudo, .hljs-pi, .hljs-doctype, .hljs-deletion, .hljs-envvar, .hljs-shebang, .apache .hljs-sqbracket, .nginx .hljs-built_in, .tex .hljs-formula, .hljs-prompt, .clojure .hljs-attribute { color: #00e; } .hljs-keyword, .hljs-id, .hljs-phpdoc, .hljs-title, .hljs-built_in, .hljs-aggregate, .smalltalk .hljs-class, .hljs-winutils, .bash .hljs-variable, .apache .hljs-tag, .xml .hljs-tag, .tex .hljs-command, .hljs-request, .hljs-status { font-weight: bold; color: navy; } .nginx .hljs-built_in { font-weight: normal; } .coffeescript .javascript, .javascript .xml, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata { opacity: 0.5; } /* --- */ .apache .hljs-tag { font-weight: bold; color: blue; } ================================================ FILE: documentation/css/highlight/mono-blue.css ================================================ /* Five-color theme from a single blue hue. */ .hljs { display: block; padding: 0.5em; background: #EAEEF3; color: #00193A; } .hljs-keyword, .hljs-title, .hljs-important, .hljs-request, .hljs-header, .hljs-javadoctag { font-weight: bold; } .hljs-comment, .hljs-chunk, .hljs-template_comment { color: #738191; } .hljs-string, .hljs-title, .hljs-parent, .hljs-built_in, .hljs-literal, .hljs-filename, .hljs-value, .hljs-addition, .hljs-tag, .hljs-argument, .hljs-link_label, .hljs-blockquote, .hljs-header { color: #0048AB; } .hljs-decorator, .hljs-prompt, .hljs-yardoctag, .hljs-subst, .hljs-symbol, .hljs-doctype, .hljs-regexp, .hljs-preprocessor, .hljs-pragma, .hljs-pi, .hljs-attribute, .hljs-attr_selector, .hljs-javadoc, .hljs-xmlDocTag, .hljs-deletion, .hljs-shebang, .hljs-string .hljs-variable, .hljs-link_url, .hljs-bullet, .hljs-sqbracket, .hljs-phony { color: #4C81C9; } ================================================ FILE: documentation/css/highlight/monokai.css ================================================ /* Monokai style - ported by Luigi Maselli - http://grigio.org */ .hljs { display: block; padding: 0.5em; background: #272822; } .hljs-tag, .hljs-tag .hljs-title, .hljs-keyword, .hljs-literal, .hljs-strong, .hljs-change, .hljs-winutils, .hljs-flow, .lisp .hljs-title, .clojure .hljs-built_in, .nginx .hljs-title, .tex .hljs-special { color: #F92672; } .hljs { color: #DDD; } .hljs .hljs-constant, .asciidoc .hljs-code { color: #66D9EF; } .hljs-code, .hljs-class .hljs-title, .hljs-header { color: white; } .hljs-link_label, .hljs-attribute, .hljs-symbol, .hljs-symbol .hljs-string, .hljs-value, .hljs-regexp { color: #BF79DB; } .hljs-link_url, .hljs-tag .hljs-value, .hljs-string, .hljs-bullet, .hljs-subst, .hljs-title, .hljs-emphasis, .haskell .hljs-type, .hljs-preprocessor, .hljs-pragma, .ruby .hljs-class .hljs-parent, .hljs-built_in, .sql .hljs-aggregate, .django .hljs-template_tag, .django .hljs-variable, .smalltalk .hljs-class, .hljs-javadoc, .django .hljs-filter .hljs-argument, .smalltalk .hljs-localvars, .smalltalk .hljs-array, .hljs-attr_selector, .hljs-pseudo, .hljs-addition, .hljs-stream, .hljs-envvar, .apache .hljs-tag, .apache .hljs-cbracket, .tex .hljs-command, .hljs-prompt { color: #A6E22E; } .hljs-comment, .java .hljs-annotation, .smartquote, .hljs-blockquote, .hljs-horizontal_rule, .python .hljs-decorator, .hljs-template_comment, .hljs-pi, .hljs-doctype, .hljs-deletion, .hljs-shebang, .apache .hljs-sqbracket, .tex .hljs-formula { color: #75715E; } .hljs-keyword, .hljs-literal, .css .hljs-id, .hljs-phpdoc, .hljs-title, .hljs-header, .haskell .hljs-type, .vbscript .hljs-built_in, .sql .hljs-aggregate, .rsl .hljs-built_in, .smalltalk .hljs-class, .diff .hljs-header, .hljs-chunk, .hljs-winutils, .bash .hljs-variable, .apache .hljs-tag, .tex .hljs-special, .hljs-request, .hljs-status { font-weight: bold; } .coffeescript .javascript, .javascript .xml, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata { opacity: 0.5; } ================================================ FILE: documentation/css/highlight/monokai_sublime.css ================================================ /* Monokai Sublime style. Derived from Monokai by noformnocontent http://nn.mit-license.org/ */ .hljs { display: block; padding: 0.5em; background: #23241f; } .hljs, .hljs-tag, .css .hljs-rules, .css .hljs-value, .css .hljs-function .hljs-preprocessor, .hljs-pragma { color: #f8f8f2; } .hljs-strongemphasis, .hljs-strong, .hljs-emphasis { color: #a8a8a2; } .hljs-bullet, .hljs-blockquote, .hljs-horizontal_rule, .hljs-number, .hljs-regexp, .alias .hljs-keyword, .hljs-literal, .hljs-hexcolor { color: #ae81ff; } .hljs-tag .hljs-value, .hljs-code, .hljs-title, .css .hljs-class, .hljs-class .hljs-title:last-child { color: #a6e22e; } .hljs-link_url { font-size: 80%; } .hljs-strong, .hljs-strongemphasis { font-weight: bold; } .hljs-emphasis, .hljs-strongemphasis, .hljs-class .hljs-title:last-child { font-style: italic; } .hljs-keyword, .hljs-function, .hljs-change, .hljs-winutils, .hljs-flow, .lisp .hljs-title, .clojure .hljs-built_in, .nginx .hljs-title, .tex .hljs-special, .hljs-header, .hljs-attribute, .hljs-symbol, .hljs-symbol .hljs-string, .hljs-tag .hljs-title, .hljs-value, .alias .hljs-keyword:first-child, .css .hljs-tag, .css .unit, .css .hljs-important { color: #F92672; } .hljs-function .hljs-keyword, .hljs-class .hljs-keyword:first-child, .hljs-constant, .css .hljs-attribute { color: #66d9ef; } .hljs-variable, .hljs-params, .hljs-class .hljs-title { color: #f8f8f2; } .hljs-string, .css .hljs-id, .hljs-subst, .haskell .hljs-type, .ruby .hljs-class .hljs-parent, .hljs-built_in, .sql .hljs-aggregate, .django .hljs-template_tag, .django .hljs-variable, .smalltalk .hljs-class, .django .hljs-filter .hljs-argument, .smalltalk .hljs-localvars, .smalltalk .hljs-array, .hljs-attr_selector, .hljs-pseudo, .hljs-addition, .hljs-stream, .hljs-envvar, .apache .hljs-tag, .apache .hljs-cbracket, .tex .hljs-command, .hljs-prompt, .hljs-link_label, .hljs-link_url { color: #e6db74; } .hljs-comment, .hljs-javadoc, .java .hljs-annotation, .python .hljs-decorator, .hljs-template_comment, .hljs-pi, .hljs-doctype, .hljs-deletion, .hljs-shebang, .apache .hljs-sqbracket, .tex .hljs-formula { color: #75715e; } .coffeescript .javascript, .javascript .xml, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata, .xml .php, .php .xml { opacity: 0.5; } ================================================ FILE: documentation/css/highlight/obsidian.css ================================================ /** * Obsidian style * ported by Alexander Marenin (http://github.com/ioncreature) */ .hljs { display: block; padding: 0.5em; background: #282B2E; } .hljs-keyword, .hljs-literal, .hljs-change, .hljs-winutils, .hljs-flow, .lisp .hljs-title, .clojure .hljs-built_in, .nginx .hljs-title, .css .hljs-id, .tex .hljs-special { color: #93C763; } .hljs-number { color: #FFCD22; } .hljs { color: #E0E2E4; } .css .hljs-tag, .css .hljs-pseudo { color: #D0D2B5; } .hljs-attribute, .hljs .hljs-constant { color: #668BB0; } .xml .hljs-attribute { color: #B3B689; } .xml .hljs-tag .hljs-value { color: #E8E2B7; } .hljs-code, .hljs-class .hljs-title, .hljs-header { color: white; } .hljs-class, .hljs-hexcolor { color: #93C763; } .hljs-regexp { color: #D39745; } .hljs-at_rule, .hljs-at_rule .hljs-keyword { color: #A082BD; } .hljs-doctype { color: #557182; } .hljs-link_url, .hljs-tag, .hljs-tag .hljs-title, .hljs-bullet, .hljs-subst, .hljs-emphasis, .haskell .hljs-type, .hljs-preprocessor, .hljs-pragma, .ruby .hljs-class .hljs-parent, .hljs-built_in, .sql .hljs-aggregate, .django .hljs-template_tag, .django .hljs-variable, .smalltalk .hljs-class, .hljs-javadoc, .django .hljs-filter .hljs-argument, .smalltalk .hljs-localvars, .smalltalk .hljs-array, .hljs-attr_selector, .hljs-pseudo, .hljs-addition, .hljs-stream, .hljs-envvar, .apache .hljs-tag, .apache .hljs-cbracket, .tex .hljs-command, .hljs-prompt { color: #8CBBAD; } .hljs-string { color: #EC7600; } .hljs-comment, .java .hljs-annotation, .hljs-blockquote, .hljs-horizontal_rule, .python .hljs-decorator, .hljs-template_comment, .hljs-pi, .hljs-deletion, .hljs-shebang, .apache .hljs-sqbracket, .tex .hljs-formula { color: #818E96; } .hljs-keyword, .hljs-literal, .css .hljs-id, .hljs-phpdoc, .hljs-title, .hljs-header, .haskell .hljs-type, .vbscript .hljs-built_in, .sql .hljs-aggregate, .rsl .hljs-built_in, .smalltalk .hljs-class, .diff .hljs-header, .hljs-chunk, .hljs-winutils, .bash .hljs-variable, .apache .hljs-tag, .tex .hljs-special, .hljs-request, .hljs-at_rule .hljs-keyword, .hljs-status { font-weight: bold; } .coffeescript .javascript, .javascript .xml, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata { opacity: 0.5; } ================================================ FILE: documentation/css/highlight/paraiso.dark.css ================================================ /* Paraíso (dark) Created by Jan T. Sott (http://github.com/idleberg) Inspired by the art of Rubens LP (http://www.rubenslp.com.br) */ /* Paraíso Comment */ .hljs-comment, .hljs-title { color: #8d8687; } /* Paraíso Red */ .hljs-variable, .hljs-attribute, .hljs-tag, .hljs-regexp, .ruby .hljs-constant, .xml .hljs-tag .hljs-title, .xml .hljs-pi, .xml .hljs-doctype, .html .hljs-doctype, .css .hljs-id, .css .hljs-class, .css .hljs-pseudo { color: #ef6155; } /* Paraíso Orange */ .hljs-number, .hljs-preprocessor, .hljs-built_in, .hljs-literal, .hljs-params, .hljs-constant { color: #f99b15; } /* Paraíso Yellow */ .ruby .hljs-class .hljs-title, .css .hljs-rules .hljs-attribute { color: #fec418; } /* Paraíso Green */ .hljs-string, .hljs-value, .hljs-inheritance, .hljs-header, .ruby .hljs-symbol, .xml .hljs-cdata { color: #48b685; } /* Paraíso Aqua */ .css .hljs-hexcolor { color: #5bc4bf; } /* Paraíso Blue */ .hljs-function, .python .hljs-decorator, .python .hljs-title, .ruby .hljs-function .hljs-title, .ruby .hljs-title .hljs-keyword, .perl .hljs-sub, .javascript .hljs-title, .coffeescript .hljs-title { color: #06b6ef; } /* Paraíso Purple */ .hljs-keyword, .javascript .hljs-function { color: #815ba4; } .hljs { display: block; background: #2f1e2e; color: #a39e9b; padding: 0.5em; } .coffeescript .javascript, .javascript .xml, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata { opacity: 0.5; } ================================================ FILE: documentation/css/highlight/paraiso.light.css ================================================ /* Paraíso (light) Created by Jan T. Sott (http://github.com/idleberg) Inspired by the art of Rubens LP (http://www.rubenslp.com.br) */ /* Paraíso Comment */ .hljs-comment, .hljs-title { color: #776e71; } /* Paraíso Red */ .hljs-variable, .hljs-attribute, .hljs-tag, .hljs-regexp, .ruby .hljs-constant, .xml .hljs-tag .hljs-title, .xml .hljs-pi, .xml .hljs-doctype, .html .hljs-doctype, .css .hljs-id, .css .hljs-class, .css .hljs-pseudo { color: #ef6155; } /* Paraíso Orange */ .hljs-number, .hljs-preprocessor, .hljs-built_in, .hljs-literal, .hljs-params, .hljs-constant { color: #f99b15; } /* Paraíso Yellow */ .ruby .hljs-class .hljs-title, .css .hljs-rules .hljs-attribute { color: #fec418; } /* Paraíso Green */ .hljs-string, .hljs-value, .hljs-inheritance, .hljs-header, .ruby .hljs-symbol, .xml .hljs-cdata { color: #48b685; } /* Paraíso Aqua */ .css .hljs-hexcolor { color: #5bc4bf; } /* Paraíso Blue */ .hljs-function, .python .hljs-decorator, .python .hljs-title, .ruby .hljs-function .hljs-title, .ruby .hljs-title .hljs-keyword, .perl .hljs-sub, .javascript .hljs-title, .coffeescript .hljs-title { color: #06b6ef; } /* Paraíso Purple */ .hljs-keyword, .javascript .hljs-function { color: #815ba4; } .hljs { display: block; background: #e7e9db; color: #4f424c; padding: 0.5em; } .coffeescript .javascript, .javascript .xml, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata { opacity: 0.5; } ================================================ FILE: documentation/css/highlight/pojoaque.css ================================================ /* Pojoaque Style by Jason Tate http://web-cms-designs.com/ftopict-10-pojoaque-style-for-highlight-js-code-highlighter.html Based on Solarized Style from http://ethanschoonover.com/solarized */ .hljs { display: block; padding: 0.5em; color: #DCCF8F; background: url(./pojoaque.jpg) repeat scroll left top #181914; } .hljs-comment, .hljs-template_comment, .diff .hljs-header, .hljs-doctype, .lisp .hljs-string, .hljs-javadoc { color: #586e75; font-style: italic; } .hljs-keyword, .css .rule .hljs-keyword, .hljs-winutils, .javascript .hljs-title, .method, .hljs-addition, .css .hljs-tag, .clojure .hljs-title, .nginx .hljs-title { color: #B64926; } .hljs-number, .hljs-command, .hljs-string, .hljs-tag .hljs-value, .hljs-phpdoc, .tex .hljs-formula, .hljs-regexp, .hljs-hexcolor { color: #468966; } .hljs-title, .hljs-localvars, .hljs-function .hljs-title, .hljs-chunk, .hljs-decorator, .hljs-built_in, .lisp .hljs-title, .clojure .hljs-built_in, .hljs-identifier, .hljs-id { color: #FFB03B; } .hljs-attribute, .hljs-variable, .lisp .hljs-body, .smalltalk .hljs-number, .hljs-constant, .hljs-class .hljs-title, .hljs-parent, .haskell .hljs-type { color: #b58900; } .css .hljs-attribute { color: #b89859; } .css .hljs-number, .css .hljs-hexcolor { color: #DCCF8F; } .css .hljs-class { color: #d3a60c; } .hljs-preprocessor, .hljs-pragma, .hljs-pi, .hljs-shebang, .hljs-symbol, .hljs-symbol .hljs-string, .diff .hljs-change, .hljs-special, .hljs-attr_selector, .hljs-important, .hljs-subst, .hljs-cdata { color: #cb4b16; } .hljs-deletion { color: #dc322f; } .tex .hljs-formula { background: #073642; } ================================================ FILE: documentation/css/highlight/railscasts.css ================================================ /* Railscasts-like style (c) Visoft, Inc. (Damien White) */ .hljs { display: block; padding: 0.5em; background: #232323; color: #E6E1DC; } .hljs-comment, .hljs-template_comment, .hljs-javadoc, .hljs-shebang { color: #BC9458; font-style: italic; } .hljs-keyword, .ruby .hljs-function .hljs-keyword, .hljs-request, .hljs-status, .nginx .hljs-title, .method, .hljs-list .hljs-title { color: #C26230; } .hljs-string, .hljs-number, .hljs-regexp, .hljs-tag .hljs-value, .hljs-cdata, .hljs-filter .hljs-argument, .hljs-attr_selector, .apache .hljs-cbracket, .hljs-date, .tex .hljs-command, .markdown .hljs-link_label { color: #A5C261; } .hljs-subst { color: #519F50; } .hljs-tag, .hljs-tag .hljs-keyword, .hljs-tag .hljs-title, .hljs-doctype, .hljs-sub .hljs-identifier, .hljs-pi, .input_number { color: #E8BF6A; } .hljs-identifier { color: #D0D0FF; } .hljs-class .hljs-title, .haskell .hljs-type, .smalltalk .hljs-class, .hljs-javadoctag, .hljs-yardoctag, .hljs-phpdoc { text-decoration: none; } .hljs-constant { color: #DA4939; } .hljs-symbol, .hljs-built_in, .ruby .hljs-symbol .hljs-string, .ruby .hljs-symbol .hljs-identifier, .markdown .hljs-link_url, .hljs-attribute { color: #6D9CBE; } .markdown .hljs-link_url { text-decoration: underline; } .hljs-params, .hljs-variable, .clojure .hljs-attribute { color: #D0D0FF; } .css .hljs-tag, .hljs-rules .hljs-property, .hljs-pseudo, .tex .hljs-special { color: #CDA869; } .css .hljs-class { color: #9B703F; } .hljs-rules .hljs-keyword { color: #C5AF75; } .hljs-rules .hljs-value { color: #CF6A4C; } .css .hljs-id { color: #8B98AB; } .hljs-annotation, .apache .hljs-sqbracket, .nginx .hljs-built_in { color: #9B859D; } .hljs-preprocessor, .hljs-preprocessor *, .hljs-pragma { color: #8996A8 !important; } .hljs-hexcolor, .css .hljs-value .hljs-number { color: #A5C261; } .hljs-title, .hljs-decorator, .css .hljs-function { color: #FFC66D; } .diff .hljs-header, .hljs-chunk { background-color: #2F33AB; color: #E6E1DC; display: inline-block; width: 100%; } .diff .hljs-change { background-color: #4A410D; color: #F8F8F8; display: inline-block; width: 100%; } .hljs-addition { background-color: #144212; color: #E6E1DC; display: inline-block; width: 100%; } .hljs-deletion { background-color: #600; color: #E6E1DC; display: inline-block; width: 100%; } .coffeescript .javascript, .javascript .xml, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata { opacity: 0.7; } ================================================ FILE: documentation/css/highlight/rainbow.css ================================================ /* Style with support for rainbow parens */ .hljs { display: block; padding: 0.5em; background: #474949; color: #D1D9E1; } .hljs-body, .hljs-collection { color: #D1D9E1; } .hljs-comment, .hljs-template_comment, .diff .hljs-header, .hljs-doctype, .lisp .hljs-string, .hljs-javadoc { color: #969896; font-style: italic; } .hljs-keyword, .clojure .hljs-attribute, .hljs-winutils, .javascript .hljs-title, .hljs-addition, .css .hljs-tag { color: #cc99cc; } .hljs-number { color: #f99157; } .hljs-command, .hljs-string, .hljs-tag .hljs-value, .hljs-phpdoc, .tex .hljs-formula, .hljs-regexp, .hljs-hexcolor { color: #8abeb7; } .hljs-title, .hljs-localvars, .hljs-function .hljs-title, .hljs-chunk, .hljs-decorator, .hljs-built_in, .lisp .hljs-title, .hljs-identifier { color: #b5bd68; } .hljs-class .hljs-keyword { color: #f2777a; } .hljs-variable, .lisp .hljs-body, .smalltalk .hljs-number, .hljs-constant, .hljs-class .hljs-title, .hljs-parent, .haskell .hljs-label, .hljs-id, .lisp .hljs-title, .clojure .hljs-title .hljs-built_in { color: #ffcc66; } .hljs-tag .hljs-title, .hljs-rules .hljs-property, .django .hljs-tag .hljs-keyword, .clojure .hljs-title .hljs-built_in { font-weight: bold; } .hljs-attribute, .clojure .hljs-title { color: #81a2be; } .hljs-preprocessor, .hljs-pragma, .hljs-pi, .hljs-shebang, .hljs-symbol, .hljs-symbol .hljs-string, .diff .hljs-change, .hljs-special, .hljs-attr_selector, .hljs-important, .hljs-subst, .hljs-cdata { color: #f99157; } .hljs-deletion { color: #dc322f; } .tex .hljs-formula { background: #eee8d5; } ================================================ FILE: documentation/css/highlight/school_book.css ================================================ /* School Book style from goldblog.com.ua (c) Zaripov Yura */ .hljs { display: block; padding: 15px 0.5em 0.5em 30px; font-size: 11px !important; line-height:16px !important; } pre{ background:#f6f6ae url(./school_book.png); border-top: solid 2px #d2e8b9; border-bottom: solid 1px #d2e8b9; } .hljs-keyword, .hljs-literal, .hljs-change, .hljs-winutils, .hljs-flow, .lisp .hljs-title, .clojure .hljs-built_in, .nginx .hljs-title, .tex .hljs-special { color:#005599; font-weight:bold; } .hljs, .hljs-subst, .hljs-tag .hljs-keyword { color: #3E5915; } .hljs-string, .hljs-title, .haskell .hljs-type, .hljs-tag .hljs-value, .css .hljs-rules .hljs-value, .hljs-preprocessor, .hljs-pragma, .ruby .hljs-symbol, .ruby .hljs-symbol .hljs-string, .ruby .hljs-class .hljs-parent, .hljs-built_in, .sql .hljs-aggregate, .django .hljs-template_tag, .django .hljs-variable, .smalltalk .hljs-class, .hljs-javadoc, .ruby .hljs-string, .django .hljs-filter .hljs-argument, .smalltalk .hljs-localvars, .smalltalk .hljs-array, .hljs-attr_selector, .hljs-pseudo, .hljs-addition, .hljs-stream, .hljs-envvar, .apache .hljs-tag, .apache .hljs-cbracket, .nginx .hljs-built_in, .tex .hljs-command, .coffeescript .hljs-attribute { color: #2C009F; } .hljs-comment, .java .hljs-annotation, .python .hljs-decorator, .hljs-template_comment, .hljs-pi, .hljs-doctype, .hljs-deletion, .hljs-shebang, .apache .hljs-sqbracket { color: #E60415; } .hljs-keyword, .hljs-literal, .css .hljs-id, .hljs-phpdoc, .hljs-title, .haskell .hljs-type, .vbscript .hljs-built_in, .sql .hljs-aggregate, .rsl .hljs-built_in, .smalltalk .hljs-class, .xml .hljs-tag .hljs-title, .diff .hljs-header, .hljs-chunk, .hljs-winutils, .bash .hljs-variable, .apache .hljs-tag, .tex .hljs-command, .hljs-request, .hljs-status { font-weight: bold; } .coffeescript .javascript, .javascript .xml, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata { opacity: 0.5; } ================================================ FILE: documentation/css/highlight/solarized_dark.css ================================================ /* Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull */ .hljs { display: block; padding: 0.5em; background: #002b36; color: #839496; } .hljs-comment, .hljs-template_comment, .diff .hljs-header, .hljs-doctype, .hljs-pi, .lisp .hljs-string, .hljs-javadoc { color: #586e75; } /* Solarized Green */ .hljs-keyword, .hljs-winutils, .method, .hljs-addition, .css .hljs-tag, .hljs-request, .hljs-status, .nginx .hljs-title { color: #859900; } /* Solarized Cyan */ .hljs-number, .hljs-command, .hljs-string, .hljs-tag .hljs-value, .hljs-rules .hljs-value, .hljs-phpdoc, .tex .hljs-formula, .hljs-regexp, .hljs-hexcolor, .hljs-link_url { color: #2aa198; } /* Solarized Blue */ .hljs-title, .hljs-localvars, .hljs-chunk, .hljs-decorator, .hljs-built_in, .hljs-identifier, .vhdl .hljs-literal, .hljs-id, .css .hljs-function { color: #268bd2; } /* Solarized Yellow */ .hljs-attribute, .hljs-variable, .lisp .hljs-body, .smalltalk .hljs-number, .hljs-constant, .hljs-class .hljs-title, .hljs-parent, .haskell .hljs-type, .hljs-link_reference { color: #b58900; } /* Solarized Orange */ .hljs-preprocessor, .hljs-preprocessor .hljs-keyword, .hljs-pragma, .hljs-shebang, .hljs-symbol, .hljs-symbol .hljs-string, .diff .hljs-change, .hljs-special, .hljs-attr_selector, .hljs-subst, .hljs-cdata, .clojure .hljs-title, .css .hljs-pseudo, .hljs-header { color: #cb4b16; } /* Solarized Red */ .hljs-deletion, .hljs-important { color: #dc322f; } /* Solarized Violet */ .hljs-link_label { color: #6c71c4; } .tex .hljs-formula { background: #073642; } ================================================ FILE: documentation/css/highlight/solarized_light.css ================================================ /* Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull */ .hljs { display: block; padding: 0.5em; background: #fdf6e3; color: #657b83; } .hljs-comment, .hljs-template_comment, .diff .hljs-header, .hljs-doctype, .hljs-pi, .lisp .hljs-string, .hljs-javadoc { color: #93a1a1; } /* Solarized Green */ .hljs-keyword, .hljs-winutils, .method, .hljs-addition, .css .hljs-tag, .hljs-request, .hljs-status, .nginx .hljs-title { color: #859900; } /* Solarized Cyan */ .hljs-number, .hljs-command, .hljs-string, .hljs-tag .hljs-value, .hljs-rules .hljs-value, .hljs-phpdoc, .tex .hljs-formula, .hljs-regexp, .hljs-hexcolor, .hljs-link_url { color: #2aa198; } /* Solarized Blue */ .hljs-title, .hljs-localvars, .hljs-chunk, .hljs-decorator, .hljs-built_in, .hljs-identifier, .vhdl .hljs-literal, .hljs-id, .css .hljs-function { color: #268bd2; } /* Solarized Yellow */ .hljs-attribute, .hljs-variable, .lisp .hljs-body, .smalltalk .hljs-number, .hljs-constant, .hljs-class .hljs-title, .hljs-parent, .haskell .hljs-type, .hljs-link_reference { color: #b58900; } /* Solarized Orange */ .hljs-preprocessor, .hljs-preprocessor .hljs-keyword, .hljs-pragma, .hljs-shebang, .hljs-symbol, .hljs-symbol .hljs-string, .diff .hljs-change, .hljs-special, .hljs-attr_selector, .hljs-subst, .hljs-cdata, .clojure .hljs-title, .css .hljs-pseudo, .hljs-header { color: #cb4b16; } /* Solarized Red */ .hljs-deletion, .hljs-important { color: #dc322f; } /* Solarized Violet */ .hljs-link_label { color: #6c71c4; } .tex .hljs-formula { background: #eee8d5; } ================================================ FILE: documentation/css/highlight/sunburst.css ================================================ /* Sunburst-like style (c) Vasily Polovnyov */ .hljs { display: block; padding: 0.5em; background: #000; color: #f8f8f8; } .hljs-comment, .hljs-template_comment, .hljs-javadoc { color: #aeaeae; font-style: italic; } .hljs-keyword, .ruby .hljs-function .hljs-keyword, .hljs-request, .hljs-status, .nginx .hljs-title { color: #E28964; } .hljs-function .hljs-keyword, .hljs-sub .hljs-keyword, .method, .hljs-list .hljs-title { color: #99CF50; } .hljs-string, .hljs-tag .hljs-value, .hljs-cdata, .hljs-filter .hljs-argument, .hljs-attr_selector, .apache .hljs-cbracket, .hljs-date, .tex .hljs-command, .coffeescript .hljs-attribute { color: #65B042; } .hljs-subst { color: #DAEFA3; } .hljs-regexp { color: #E9C062; } .hljs-title, .hljs-sub .hljs-identifier, .hljs-pi, .hljs-tag, .hljs-tag .hljs-keyword, .hljs-decorator, .hljs-shebang, .hljs-prompt { color: #89BDFF; } .hljs-class .hljs-title, .haskell .hljs-type, .smalltalk .hljs-class, .hljs-javadoctag, .hljs-yardoctag, .hljs-phpdoc { text-decoration: underline; } .hljs-symbol, .ruby .hljs-symbol .hljs-string, .hljs-number { color: #3387CC; } .hljs-params, .hljs-variable, .clojure .hljs-attribute { color: #3E87E3; } .css .hljs-tag, .hljs-rules .hljs-property, .hljs-pseudo, .tex .hljs-special { color: #CDA869; } .css .hljs-class { color: #9B703F; } .hljs-rules .hljs-keyword { color: #C5AF75; } .hljs-rules .hljs-value { color: #CF6A4C; } .css .hljs-id { color: #8B98AB; } .hljs-annotation, .apache .hljs-sqbracket, .nginx .hljs-built_in { color: #9B859D; } .hljs-preprocessor, .hljs-pragma { color: #8996A8; } .hljs-hexcolor, .css .hljs-value .hljs-number { color: #DD7B3B; } .css .hljs-function { color: #DAD085; } .diff .hljs-header, .hljs-chunk, .tex .hljs-formula { background-color: #0E2231; color: #F8F8F8; font-style: italic; } .diff .hljs-change { background-color: #4A410D; color: #F8F8F8; } .hljs-addition { background-color: #253B22; color: #F8F8F8; } .hljs-deletion { background-color: #420E09; color: #F8F8F8; } .coffeescript .javascript, .javascript .xml, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata { opacity: 0.5; } ================================================ FILE: documentation/css/highlight/tomorrow-night-blue.css ================================================ /* Tomorrow Night Blue Theme */ /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ /* Original theme - https://github.com/chriskempson/tomorrow-theme */ /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ /* Tomorrow Comment */ .hljs-comment, .hljs-title { color: #7285b7; } /* Tomorrow Red */ .hljs-variable, .hljs-attribute, .hljs-tag, .hljs-regexp, .ruby .hljs-constant, .xml .hljs-tag .hljs-title, .xml .hljs-pi, .xml .hljs-doctype, .html .hljs-doctype, .css .hljs-id, .css .hljs-class, .css .hljs-pseudo { color: #ff9da4; } /* Tomorrow Orange */ .hljs-number, .hljs-preprocessor, .hljs-pragma, .hljs-built_in, .hljs-literal, .hljs-params, .hljs-constant { color: #ffc58f; } /* Tomorrow Yellow */ .ruby .hljs-class .hljs-title, .css .hljs-rules .hljs-attribute { color: #ffeead; } /* Tomorrow Green */ .hljs-string, .hljs-value, .hljs-inheritance, .hljs-header, .ruby .hljs-symbol, .xml .hljs-cdata { color: #d1f1a9; } /* Tomorrow Aqua */ .css .hljs-hexcolor { color: #99ffff; } /* Tomorrow Blue */ .hljs-function, .python .hljs-decorator, .python .hljs-title, .ruby .hljs-function .hljs-title, .ruby .hljs-title .hljs-keyword, .perl .hljs-sub, .javascript .hljs-title, .coffeescript .hljs-title { color: #bbdaff; } /* Tomorrow Purple */ .hljs-keyword, .javascript .hljs-function { color: #ebbbff; } .hljs { display: block; background: #002451; color: white; padding: 0.5em; } .coffeescript .javascript, .javascript .xml, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata { opacity: 0.5; } ================================================ FILE: documentation/css/highlight/tomorrow-night-bright.css ================================================ /* Tomorrow Night Bright Theme */ /* Original theme - https://github.com/chriskempson/tomorrow-theme */ /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ /* Tomorrow Comment */ .hljs-comment, .hljs-title { color: #969896; } /* Tomorrow Red */ .hljs-variable, .hljs-attribute, .hljs-tag, .hljs-regexp, .ruby .hljs-constant, .xml .hljs-tag .hljs-title, .xml .hljs-pi, .xml .hljs-doctype, .html .hljs-doctype, .css .hljs-id, .css .hljs-class, .css .hljs-pseudo { color: #d54e53; } /* Tomorrow Orange */ .hljs-number, .hljs-preprocessor, .hljs-pragma, .hljs-built_in, .hljs-literal, .hljs-params, .hljs-constant { color: #e78c45; } /* Tomorrow Yellow */ .ruby .hljs-class .hljs-title, .css .hljs-rules .hljs-attribute { color: #e7c547; } /* Tomorrow Green */ .hljs-string, .hljs-value, .hljs-inheritance, .hljs-header, .ruby .hljs-symbol, .xml .hljs-cdata { color: #b9ca4a; } /* Tomorrow Aqua */ .css .hljs-hexcolor { color: #70c0b1; } /* Tomorrow Blue */ .hljs-function, .python .hljs-decorator, .python .hljs-title, .ruby .hljs-function .hljs-title, .ruby .hljs-title .hljs-keyword, .perl .hljs-sub, .javascript .hljs-title, .coffeescript .hljs-title { color: #7aa6da; } /* Tomorrow Purple */ .hljs-keyword, .javascript .hljs-function { color: #c397d8; } .hljs { display: block; background: black; color: #eaeaea; padding: 0.5em; } .coffeescript .javascript, .javascript .xml, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata { opacity: 0.5; } ================================================ FILE: documentation/css/highlight/tomorrow-night-eighties.css ================================================ /* Tomorrow Night Eighties Theme */ /* Original theme - https://github.com/chriskempson/tomorrow-theme */ /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ /* Tomorrow Comment */ .hljs-comment, .hljs-title { color: #999999; } /* Tomorrow Red */ .hljs-variable, .hljs-attribute, .hljs-tag, .hljs-regexp, .ruby .hljs-constant, .xml .hljs-tag .hljs-title, .xml .hljs-pi, .xml .hljs-doctype, .html .hljs-doctype, .css .hljs-id, .css .hljs-class, .css .hljs-pseudo { color: #f2777a; } /* Tomorrow Orange */ .hljs-number, .hljs-preprocessor, .hljs-pragma, .hljs-built_in, .hljs-literal, .hljs-params, .hljs-constant { color: #f99157; } /* Tomorrow Yellow */ .ruby .hljs-class .hljs-title, .css .hljs-rules .hljs-attribute { color: #ffcc66; } /* Tomorrow Green */ .hljs-string, .hljs-value, .hljs-inheritance, .hljs-header, .ruby .hljs-symbol, .xml .hljs-cdata { color: #99cc99; } /* Tomorrow Aqua */ .css .hljs-hexcolor { color: #66cccc; } /* Tomorrow Blue */ .hljs-function, .python .hljs-decorator, .python .hljs-title, .ruby .hljs-function .hljs-title, .ruby .hljs-title .hljs-keyword, .perl .hljs-sub, .javascript .hljs-title, .coffeescript .hljs-title { color: #6699cc; } /* Tomorrow Purple */ .hljs-keyword, .javascript .hljs-function { color: #cc99cc; } .hljs { display: block; background: #2d2d2d; color: #cccccc; padding: 0.5em; } .coffeescript .javascript, .javascript .xml, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata { opacity: 0.5; } ================================================ FILE: documentation/css/highlight/tomorrow-night.css ================================================ /* Tomorrow Night Theme */ /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ /* Original theme - https://github.com/chriskempson/tomorrow-theme */ /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ /* Tomorrow Comment */ .hljs-comment, .hljs-title { color: #969896; } /* Tomorrow Red */ .hljs-variable, .hljs-attribute, .hljs-tag, .hljs-regexp, .ruby .hljs-constant, .xml .hljs-tag .hljs-title, .xml .hljs-pi, .xml .hljs-doctype, .html .hljs-doctype, .css .hljs-id, .css .hljs-class, .css .hljs-pseudo { color: #cc6666; } /* Tomorrow Orange */ .hljs-number, .hljs-preprocessor, .hljs-pragma, .hljs-built_in, .hljs-literal, .hljs-params, .hljs-constant { color: #de935f; } /* Tomorrow Yellow */ .ruby .hljs-class .hljs-title, .css .hljs-rules .hljs-attribute { color: #f0c674; } /* Tomorrow Green */ .hljs-string, .hljs-value, .hljs-inheritance, .hljs-header, .ruby .hljs-symbol, .xml .hljs-cdata { color: #b5bd68; } /* Tomorrow Aqua */ .css .hljs-hexcolor { color: #8abeb7; } /* Tomorrow Blue */ .hljs-function, .python .hljs-decorator, .python .hljs-title, .ruby .hljs-function .hljs-title, .ruby .hljs-title .hljs-keyword, .perl .hljs-sub, .javascript .hljs-title, .coffeescript .hljs-title { color: #81a2be; } /* Tomorrow Purple */ .hljs-keyword, .javascript .hljs-function { color: #b294bb; } .hljs { display: block; background: #1d1f21; color: #c5c8c6; padding: 0.5em; } .coffeescript .javascript, .javascript .xml, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata { opacity: 0.5; } ================================================ FILE: documentation/css/highlight/tomorrow.css ================================================ /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ /* Tomorrow Comment */ .hljs-comment, .hljs-title { color: #8e908c; } /* Tomorrow Red */ .hljs-variable, .hljs-attribute, .hljs-tag, .hljs-regexp, .ruby .hljs-constant, .xml .hljs-tag .hljs-title, .xml .hljs-pi, .xml .hljs-doctype, .html .hljs-doctype, .css .hljs-id, .css .hljs-class, .css .hljs-pseudo { color: #c82829; } /* Tomorrow Orange */ .hljs-number, .hljs-preprocessor, .hljs-pragma, .hljs-built_in, .hljs-literal, .hljs-params, .hljs-constant { color: #f5871f; } /* Tomorrow Yellow */ .ruby .hljs-class .hljs-title, .css .hljs-rules .hljs-attribute { color: #eab700; } /* Tomorrow Green */ .hljs-string, .hljs-value, .hljs-inheritance, .hljs-header, .ruby .hljs-symbol, .xml .hljs-cdata { color: #718c00; } /* Tomorrow Aqua */ .css .hljs-hexcolor { color: #3e999f; } /* Tomorrow Blue */ .hljs-function, .python .hljs-decorator, .python .hljs-title, .ruby .hljs-function .hljs-title, .ruby .hljs-title .hljs-keyword, .perl .hljs-sub, .javascript .hljs-title, .coffeescript .hljs-title { color: #4271ae; } /* Tomorrow Purple */ .hljs-keyword, .javascript .hljs-function { color: #8959a8; } .hljs { display: block; background: white; color: #4d4d4c; padding: 0.5em; } .coffeescript .javascript, .javascript .xml, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata { opacity: 0.5; } ================================================ FILE: documentation/css/highlight/vs.css ================================================ /* Visual Studio-like style based on original C# coloring by Jason Diamond */ .hljs { display: block; padding: 0.5em; background: white; color: black; } .hljs-comment, .hljs-annotation, .hljs-template_comment, .diff .hljs-header, .hljs-chunk, .apache .hljs-cbracket { color: #008000; } .hljs-keyword, .hljs-id, .hljs-built_in, .smalltalk .hljs-class, .hljs-winutils, .bash .hljs-variable, .tex .hljs-command, .hljs-request, .hljs-status, .nginx .hljs-title, .xml .hljs-tag, .xml .hljs-tag .hljs-value { color: #00f; } .hljs-string, .hljs-title, .hljs-parent, .hljs-tag .hljs-value, .hljs-rules .hljs-value, .hljs-rules .hljs-value .hljs-number, .ruby .hljs-symbol, .ruby .hljs-symbol .hljs-string, .hljs-aggregate, .hljs-template_tag, .django .hljs-variable, .hljs-addition, .hljs-flow, .hljs-stream, .apache .hljs-tag, .hljs-date, .tex .hljs-formula, .coffeescript .hljs-attribute { color: #a31515; } .ruby .hljs-string, .hljs-decorator, .hljs-filter .hljs-argument, .hljs-localvars, .hljs-array, .hljs-attr_selector, .hljs-pseudo, .hljs-pi, .hljs-doctype, .hljs-deletion, .hljs-envvar, .hljs-shebang, .hljs-preprocessor, .hljs-pragma, .userType, .apache .hljs-sqbracket, .nginx .hljs-built_in, .tex .hljs-special, .hljs-prompt { color: #2b91af; } .hljs-phpdoc, .hljs-javadoc, .hljs-xmlDocTag { color: #808080; } .vhdl .hljs-typename { font-weight: bold; } .vhdl .hljs-string { color: #666666; } .vhdl .hljs-literal { color: #a31515; } .vhdl .hljs-attribute { color: #00B0E8; } .xml .hljs-attribute { color: #f00; } ================================================ FILE: documentation/css/highlight/xcode.css ================================================ /* XCode style (c) Angel Garcia */ .hljs { display: block; padding: 0.5em; background: #fff; color: black; } .hljs-comment, .hljs-template_comment, .hljs-javadoc, .hljs-comment * { color: #006a00; } .hljs-keyword, .hljs-literal, .nginx .hljs-title { color: #aa0d91; } .method, .hljs-list .hljs-title, .hljs-tag .hljs-title, .setting .hljs-value, .hljs-winutils, .tex .hljs-command, .http .hljs-title, .hljs-request, .hljs-status { color: #008; } .hljs-envvar, .tex .hljs-special { color: #660; } .hljs-string { color: #c41a16; } .hljs-tag .hljs-value, .hljs-cdata, .hljs-filter .hljs-argument, .hljs-attr_selector, .apache .hljs-cbracket, .hljs-date, .hljs-regexp { color: #080; } .hljs-sub .hljs-identifier, .hljs-pi, .hljs-tag, .hljs-tag .hljs-keyword, .hljs-decorator, .ini .hljs-title, .hljs-shebang, .hljs-prompt, .hljs-hexcolor, .hljs-rules .hljs-value, .css .hljs-value .hljs-number, .hljs-symbol, .hljs-symbol .hljs-string, .hljs-number, .css .hljs-function, .clojure .hljs-title, .clojure .hljs-built_in, .hljs-function .hljs-title, .coffeescript .hljs-attribute { color: #1c00cf; } .hljs-class .hljs-title, .haskell .hljs-type, .smalltalk .hljs-class, .hljs-javadoctag, .hljs-yardoctag, .hljs-phpdoc, .hljs-typename, .hljs-tag .hljs-attribute, .hljs-doctype, .hljs-class .hljs-id, .hljs-built_in, .setting, .hljs-params, .clojure .hljs-attribute { color: #5c2699; } .hljs-variable { color: #3f6e74; } .css .hljs-tag, .hljs-rules .hljs-property, .hljs-pseudo, .hljs-subst { color: #000; } .css .hljs-class, .css .hljs-id { color: #9B703F; } .hljs-value .hljs-important { color: #ff7700; font-weight: bold; } .hljs-rules .hljs-keyword { color: #C5AF75; } .hljs-annotation, .apache .hljs-sqbracket, .nginx .hljs-built_in { color: #9B859D; } .hljs-preprocessor, .hljs-preprocessor *, .hljs-pragma { color: #643820; } .tex .hljs-formula { background-color: #EEE; font-style: italic; } .diff .hljs-header, .hljs-chunk { color: #808080; font-weight: bold; } .diff .hljs-change { background-color: #BCCFF9; } .hljs-addition { background-color: #BAEEBA; } .hljs-deletion { background-color: #FFC8BD; } .hljs-comment .hljs-yardoctag { font-weight: bold; } .method .hljs-id { color: #000; } ================================================ FILE: documentation/css/highlight/zenburn.css ================================================ /* Zenburn style from voldmar.ru (c) Vladimir Epifanov based on dark.css by Ivan Sagalaev */ .hljs { display: block; padding: 0.5em; background: #3F3F3F; color: #DCDCDC; } .hljs-keyword, .hljs-tag, .css .hljs-class, .css .hljs-id, .lisp .hljs-title, .nginx .hljs-title, .hljs-request, .hljs-status, .clojure .hljs-attribute { color: #E3CEAB; } .django .hljs-template_tag, .django .hljs-variable, .django .hljs-filter .hljs-argument { color: #DCDCDC; } .hljs-number, .hljs-date { color: #8CD0D3; } .dos .hljs-envvar, .dos .hljs-stream, .hljs-variable, .apache .hljs-sqbracket { color: #EFDCBC; } .dos .hljs-flow, .diff .hljs-change, .python .exception, .python .hljs-built_in, .hljs-literal, .tex .hljs-special { color: #EFEFAF; } .diff .hljs-chunk, .hljs-subst { color: #8F8F8F; } .dos .hljs-keyword, .python .hljs-decorator, .hljs-title, .haskell .hljs-type, .diff .hljs-header, .ruby .hljs-class .hljs-parent, .apache .hljs-tag, .nginx .hljs-built_in, .tex .hljs-command, .hljs-prompt { color: #efef8f; } .dos .hljs-winutils, .ruby .hljs-symbol, .ruby .hljs-symbol .hljs-string, .ruby .hljs-string { color: #DCA3A3; } .diff .hljs-deletion, .hljs-string, .hljs-tag .hljs-value, .hljs-preprocessor, .hljs-pragma, .hljs-built_in, .sql .hljs-aggregate, .hljs-javadoc, .smalltalk .hljs-class, .smalltalk .hljs-localvars, .smalltalk .hljs-array, .css .hljs-rules .hljs-value, .hljs-attr_selector, .hljs-pseudo, .apache .hljs-cbracket, .tex .hljs-formula, .coffeescript .hljs-attribute { color: #CC9393; } .hljs-shebang, .diff .hljs-addition, .hljs-comment, .java .hljs-annotation, .hljs-template_comment, .hljs-pi, .hljs-doctype { color: #7F9F7F; } .coffeescript .javascript, .javascript .xml, .tex .hljs-formula, .xml .javascript, .xml .vbscript, .xml .css, .xml .hljs-cdata { opacity: 0.5; } ================================================ FILE: documentation/css/reset.css ================================================ /* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 License: none (public domain) */ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } /* HTML5 display-role reset for older browsers */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } table { border-collapse: collapse; border-spacing: 0; } ================================================ FILE: documentation/css/style.css ================================================ * { outline: 0; } body { font: 14pt Helvetica Neue, Adobe Helvetica, Helvetica, DejaVu Sans, Arial, sans-serif; line-height: 1.5; -webkit-text-size-adjust: 100%; background: #fff; font-weight: 400; } body, html { width: 100%; } body { -webkit-tap-highlight-color: transparent !important; outline: 0; } img { max-width: 80%; } form { display: inline-block; } .footnote { font-size: 0.65em; margin: 0.77em 0; } .links a { border: 0; } .pub { font-size: 0.8em; line-height: 1.2; } .pub p { margin: 0.75em 0; } #orphaned-cy-container { position: absolute; left: -99999px; top: -99999px; } #cy-etc { position: relative; margin: 1em; z-index: 999; height: 15em; width: 15em; margin-top: 2.5em; border: 1px solid rgba(127, 127, 127, 0.5); background: rgba(255, 255, 255, 0.66); } #png-eg, #jpg-eg { width: 15em; height: 15em; border: 1px solid #ddd; } #cy { position: absolute; z-index: 999; left: 0; top: 0; height: 100%; width: 100%; } #cy-title { position: absolute; left: 0; bottom: 100%; width: 15em; text-align: left; background: rgba(255, 255, 255, 0.5); overflow: hidden; color: rgba(0, 0, 0, 0.5); text-align: left; font-family: Andale Mono, monospace; display: none; } #cy-title pre { font-size: 0.8em; } #cy-arrow { position: absolute; left: 0; width: 100%; text-align: center; top: -1.33em; font-size: 3em; z-index: 9999; opacity: 0.333; color: #888; pointer-events: none; } #cy-label { position: absolute; top: 0; left: 0; margin-top: -1em; width: 15em; text-align: center; z-index: 1000; } #cy-label code { font-size: 0.8em; background: #fff; border-color: #ccc; } #cy-title .content { width: 9999px; } #cy-title pre { border: 0; background: transparent; } .hidden { visibility: hidden; pointer-events: none; } #cy-refresh, #cy-show, #cy-hide { position: absolute; bottom: 13.75em; right: 13.75em; line-height: 1; padding: 4px 6px; color: #333; cursor: pointer; z-index: 1001; } #cy-hide { right: 0; display: none !important; } #cy-show { right: 0.75em; bottom: 0.75em; background: rgba(255, 255, 255, 0.66); border-radius: 0; border: 1px solid #ccc; display: none; } button { font: inherit; border: 0; background: #4183C4; border-radius: 0.25em; color: #fff; cursor: pointer; } button.outline { border: 1px solid #4183C4; color: #4183C4; background: transparent; } .run { margin: 0 2em; margin-top: -2.25em; position: absolute; right: 0; opacity: 0.666; font-size: 0.8em; border: 1px solid #4183C4; color: #4183C4; background: transparent; } /*.run + * { margin-top: 0.25em; }*/ .important-indicator { font-family: FontAwesome; font-weight: normal; font-style: normal; text-decoration: inherit; -webkit-font-smoothing: antialiased; *margin-right: .3em; } .important-indicator:before { text-decoration: inherit; display: inline-block; speak: none; content: "\f069"; color: #BD1A1D; } .important { color: #BD1A1D; } *::-webkit-input-placeholder { color: #888; opacity: 1; } *:-moz-placeholder { /* FF 4-18 */ color: #888; opacity: 1; } *::-moz-placeholder { /* FF 19+ */ color: #888; opacity: 1; } *:-ms-input-placeholder { /* IE 10+ */ color: #888; opacity: 1; } #navigation { position: fixed; left: 0; top: 2.5em; bottom: 0; width: 17em; /*border-right: 1px solid #eee;*/ z-index: 1; padding: 0 0.5em; overflow-y: auto; /*overflow-x: hidden;*/ -webkit-overflow-scrolling: touch; white-space: nowrap; background: #fff; z-index: 999999; opacity: 1; } .tabofcon-search { font-weight: 400; margin: 0; position: fixed; top: 0; left: 0; width: 18em; z-index: 9999; padding-top: 0.5em; background: #fff; height: 2em; } .question-search { position: relative; font-weight: 400; margin: 0; width: 18em; padding-top: 0.5em; background: #fff; height: 2em; } #tabofcon-top { position: absolute; right: 0.333em; color: #888; } #tabofcon-clear { position: absolute; right: 2.25em; color: #888; } #question-search-submit { position: absolute; right: 2.25em; margin-right: 0.25em; color: #888; } #tabofcon-input { display: inline-block; width: 14em; position: absolute; left: 0.25em; right: 0; font: inherit; margin: 0; padding: 0 0.5em; height: 1.5em; padding-right: 1.4em; border-radius: 1em; background: #f5f5f5; border: 1px solid #e0e0e0; } #question-search-input { display: inline-block; width: 100%; position: absolute; font: inherit; margin: 0; padding: 0 0.5em; height: 1.5em; padding-right: 1.4em; border-radius: 1em; background: #f5f5f5; border: 1px solid #e0e0e0; } .tabofcon-sections { transition-property: opacity; transition-duration: 125ms; transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1); opacity: 1; } .tabofcon-searching { opacity: 0.5; } #navigation .lvl1 { margin-top: 0.5em; } #navigation .lvl2 { margin-left: 1em; font-size: 0.8em; } #navigation .lvl3 { margin-left: 2em; font-size: 0.7em; font-family: Consolas, "Liberation Mono", Courier, monospace; word-break: break-all; white-space: normal; } #navigation .expander { cursor: pointer; display: none; width: 1em; text-align: center; } #navigation .bookmark-icon { opacity: 0.333; } #navigation .expander .collapsed-icon { display: none; } #navigation .expander.collapsed .collapsed-icon { display: inline; } #navigation .expander .expanded-icon { display: inline; } #navigation .expander.collapsed .expanded-icon { display: none; } #navigation .section.collapsed { display: none; } .gallery-demos:after { display: block; content: ' '; height: 0; clear: both; } .gallery-demo { position: relative; float: left; margin: 0 0.5em 0.5em 0; width: 10em; height: 13em; line-height: 1.15; } .gallery-full-demo{ display: inline-block; position: relative; width: 100%; max-width: 600px; border: 1px solid #ddd; border-radius: 0.25em; } .gallery-full-title { font-size: 0.8em; } .gallery-full-padder { margin-top: 100%; } .gallery-title { font-size: 0.8em; } .gallery-download, .gallery-github { margin: 0 0.125em; } .gallery-name { line-height: 1.5; } .gallery-link { border-radius: 0.25em; } .gallery-embed, .gallery-link-overlay, .gallery-preview { display: block; width: 10em; height: 10em; border: 1px solid #ddd; border-radius: 0.25em; background-size: contain; background-repeat: no-repeat; } .gallery-full-embed, .gallery-full-link-overlay, .gallery-full-preview { display: block; position: absolute; left: 0; top: 0; right: 0; bottom: 0; border: 1px solid #ddd; border-radius: 0.25em; background-size: contain; background-repeat: no-repeat; background-position: 50% 0; border-color: transparent; } .gallery-link-overlay, .gallery-full-link-overlay { position: absolute; z-index: 1; } .gallery-embed { pointer-events: none; background: #fafafa; } .gallery-embed + .gallery-loader { display: block; position: absolute; left: 0; width: 100%; text-align: center; top: 50%; font-size: 3em; margin-top: -0.5em; color: #888; } .gallery-footer { font-size: 0.8em; display: none; } .gallery-embed.loaded + .gallery-loader { display: none; } .gallery-link { float: right; } .gallery-footer { margin-top: -0.5em; } #content { margin: 0 0.25em; margin-left: 18.5em; } .title-logo { display: inline-block; width: 0.75em; height: 0.75em; background-image: url('../img/cytoscape-logo.svg'); background-size: 100% 100%; background-position: top left; background-repeat: no-repeat; margin-right: 0.125em; } #demo, #demo-source { border: 1px solid #ddd; margin: 1em 0; border-radius: 0.25em; overflow: hidden !important; } #demo-source { height: auto; width: 100%; position: relative; display: block; } #demo-source pre { margin: 0; border: 0; line-height: 1; } #demo-source .expander, #demo-source .collapser { width: 100%; height: 100%; position: absolute; top: 0; left: 0; cursor: pointer; } #demo-source .expander .text, #demo-source .collapser .text { position: absolute; bottom: 0; left: 0; padding: 0.25em; background: #fff; width: 100%; } #demo-source.collapsed { height: 16em; } #demo-source .collapser { display: none; } #demo-source.collapsed .collapser { display: none; } #demo-source .expander { display: none; } #demo-source.collapsed .expander { display: block; } #demo-source + * { clear: both; padding-top: 1em; } #demo-code { width: 100%; height: 100%; background: #f5f5f5; } #demo-code-area.hidden #hide-demo { display: none; } #show-demo { display: none; } #demo-code-area.hidden #show-demo { display: block; } #demo-code-area.hidden #demo-code { display: none; } .title { font-size: 4em; line-height: 1.25; white-space: nowrap; margin: 0; font-weight: 200 !important; } .title .description { display: none; } .title .version { font-size: 0.5em; color: #888; } .subtitle { font-weight: 400; } h1 { font-size: 2em; margin: 1em 0 0.5em 0; font-weight: 400; } h1 a { font-size: 0.5em; } h2 { font-size: 1.25em; margin: 1.6em 0 0.8em 0; font-weight: 400; } h2 a, .function > .name > a { font-size: 0.8em; } h3 { font-weight: 500; margin: 1em 0; } p { margin: 1em 0; } hr { height: 1px; background: #ddd; border: 0; } th { font-weight: bold; text-align: left; } th, td { padding: 0.25em 0.5em; border: 1px solid #ddd; } a, .link { background: transparent; padding: 0; margin: 0; color: inherit; border-bottom: 2px solid rgba(65, 131, 196, 0.5); text-decoration: none; border-radius: 0.125em; cursor: pointer; } a.light, a.toclink { border-bottom: 2px solid rgba(65, 131, 196, 0.2); } .button { font: inherit; border: 0; background: #4183C4; border-radius: 0.25em; color: #fff; cursor: pointer; padding: 0.25em 0.5em; margin: 0.125em 0; white-space: nowrap; display: inline-block; } .button.small { padding: 0.0625em 0.125em; } .button.outline { border: 1px solid #4183C4; background: transparent; color: #4183C4; } .button.green { background: #41C483; } .button.green-outline { border: 1px solid #41C483; color: #41C483; background-color: transparent; } .plain-link { color: #000; border-bottom: 0; } em { font-style: oblique; } strong { font-weight: 500; } ul, ol { margin-left: 1.5em; } ul { list-style-type: disc; } ol { list-style-type: decimal; } ul p, ol p { margin: 0; } code, pre { font-family: Consolas, "Liberation Mono", Courier, monospace; border: 1px solid rgba(221, 221, 221, 0.666); border-radius: 0.25em; font-size: 1em; background: rgba(250, 250, 250, 0.2); } pre { margin: 0.25em 0; overflow-x: auto; /* -webkit-overflow-scrolling: touch; */ } pre code { background: transparent; border: 0; font-size: 0.8em; overflow: auto; } .function pre { } .function { margin: 1em 0; padding: 0.25em 0.5em; border: 1px solid #e0e0e0; border-radius: 0.25em; } .function + .function { } .function .name { font-family: Consolas, "Liberation Mono", Courier, monospace; } .function > .name { font-size: 1.25em; word-break: break-all; white-space: normal; } .function .ext-function-note { font-size: 0.8em; } .function .pure-aliases { font-size: 0.8em; } .function .pure-alias-name { font-family: Consolas, "Liberation Mono", Courier, monospace; } .function .pure-alias:last-child .pure-alias-comma { display: none; } .function > .formats, .function > .details { margin: 0.25em 0; } .function .formats { margin-top: 1em; border: 1px solid #ddd; background: #fafafa; border-radius: 0.25em; } .function .formats p { display: inline; } .function .formats .args .name { font-weight: bold; } .function .comma:first-child { display: none; } .function ul.args { margin-left: 2em; font-size: 0.8em; } .function .format + .format { margin-top: 0.5em; } .function .format > .descr { font-size: 0.8em; } .args-summary { font-size: 0.8em; } .args .name { margin-right: 0.25em; } .args .fields { margin-left: 2em; } .args .optional { } .args .fields .name { } .build-list { margin: 0.25em; } table { display: block; max-width: 100%; overflow-x: auto; } #open-navigation { display: none; position: fixed; right: 0; top: 0; margin: 1em 0.75em; padding: 0 0.25em; cursor: pointer; background: rgba(255, 255, 255, 0.9); border-radius: 0.25em; } @media only screen and (max-width : 800px) { body { width: 100%; font-size: 11pt; } .title { font-size: 2.5em; } .buttons-subtitle { font-size: 1.25em; } #navigation, .tabofcon-search { opacity: 0; pointer-events: none; } #content { margin-left: 0.5em; } #open-navigation { display: block; } } @media only screen and (max-width : 800px) and (orientation:landscape) { #navigation, .tabofcon-search { opacity: 1; pointer-events: auto; } #content { margin-left: 19em; } #open-navigation { display: none; } } #open-navigation-bg { position: fixed; left: 0; top: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.5); z-index: -1; opacity: 0; pointer-events: none; /* causes flicker on initial load on chrome */ /*transition-property: opacity; transition-duration: 250ms;*/ } .navigation-open #open-navigation-bg, .navigation-open #navigation, .navigation-open .tabofcon-search { opacity: 1; pointer-events: auto; z-index: 9999; } @media only screen and (min-width : 801px) { #open-navigation-bg { opacity: 0 !important; } } small { font-size: 0.8em; } ================================================ FILE: documentation/demos/6000-elements/code.js ================================================ fetch('data.json', {mode: 'no-cors'}) .then(function(res) { return res.json() }) .then(function(data) { var cy = window.cy = cytoscape({ container: document.getElementById('cy'), elements: data.elements, layout: { name: 'preset' }, style: [{ selector: 'node', style: { 'label': 'data(label)', 'background-color': '#aaa' } }, { selector: 'edge', style: { 'opacity': 0.2, 'line-color': '#ccc', 'width': 3 } } ] }); }); ================================================ FILE: documentation/demos/6000-elements/data.json ================================================ { "format_version" : "1.0", "generated_by" : "cytoscape-3.3.0", "target_cytoscapejs_version" : "~2.1", "data" : { "shared_name" : "WGCNA modules--child--child", "Cy2_Parent_Network_SUID" : 785584, "__Annotations" : [ ], "name" : "WGCNA modules--child--child", "SUID" : 796480, "selected" : true }, "elements" : { "nodes" : [ { "data" : { "id" : "589163", "go_mf" : "calcium ion binding; guanyl-nucleotide exchange factor activity; metal ion binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.312223813191, "PValueLDLRT0901317LDLR16wkHighFat" : 1.0962155E-5, "adjPValLDLRT0901317LDLR16wkHighFat" : 1.74484665E-4, "cytoscape_alias_list" : [ "19419" ], "id_original" : "19419", "logFCLDLR16wkHighFatLDLRChow" : 0.369064359269, "selected" : false, "canonicalName" : "Rasgrp1", "xref" : "L:19419", "Degree" : 222, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.107423308406, "PValueLDLR16wkHighFatLDLRChow" : 0.033384240746, "name" : "L:19419", "entrezId" : "19419", "adjPValLDLR16wkHighFatLDLRChow" : 0.21042107013, "entrez" : "19419", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.531638599143, "shared_name" : "L:19419", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.846621826162, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.287694308206, "SUID" : 589163, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.071018015036, "logFCLDLRT0901317LDLR16wkHighFat" : 0.791328132495, "label" : "Rasgrp1", "go_all" : "calcium ion binding; cell differentiation; cytoplasm; endoplasmic reticulum; Golgi apparatus; guanyl-nucleotide exchange factor activity; intracellular; intracellular signal transduction; membrane; metal ion binding; plasma membrane; regulation of catalytic activity; regulation of small GTPase mediated signal transduction; small GTPase mediated signal transduction" }, "position" : { "x" : 4274.19677734375, "y" : 1994.7750244140625 }, "selected" : false }, { "data" : { "id" : "588212", "go_mf" : "calcium-dependent phospholipid binding; calcium ion binding; phospholipase A2 inhibitor activity; phospholipase inhibitor activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.157266947358, "PValueLDLRT0901317LDLR16wkHighFat" : 1.33577E-7, "red_GO" : "immune related", "adjPValLDLRT0901317LDLR16wkHighFat" : 3.69353E-6, "cytoscape_alias_list" : [ "11745" ], "id_original" : "11745", "logFCLDLR16wkHighFatLDLRChow" : 0.223496195154, "selected" : false, "canonicalName" : "Anxa3", "xref" : "L:11745", "Degree" : 288, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.146243538693, "PValueLDLR16wkHighFatLDLRChow" : 0.073171026066, "name" : "L:11745", "entrezId" : "11745", "adjPValLDLR16wkHighFatLDLRChow" : 0.299764515266, "entrez" : "11745", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.218512459188, "shared_name" : "L:11745", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.642205660255, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.491229759835, "SUID" : 588212, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.182619517108, "logFCLDLRT0901317LDLR16wkHighFat" : 0.67299321131, "label" : "Anxa3", "go_all" : "axon; calcium-dependent phospholipid binding; calcium ion binding; cytoplasm; defense response to bacterium; dendrite; membrane; neuronal cell body; neutrophil degranulation; phagocytic vesicle membrane; phagocytosis; phospholipase A2 inhibitor activity; phospholipase inhibitor activity; plasma membrane; positive regulation of angiogenesis; positive regulation of DNA metabolic process; positive regulation of endothelial cell migration; positive regulation of sequence-specific DNA binding transcription factor activity; specific granule" }, "position" : { "x" : 2124.736083984375, "y" : 1981.5223388671875 }, "selected" : false }, { "data" : { "id" : "588322", "go_mf" : "6-phosphofructo-2-kinase activity; ATP binding; catalytic activity; fructose-2,6-bisphosphate 2-phosphatase activity; hydrolase activity; kinase activity; nucleotide binding; transferase activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.199614506842, "PValueLDLRT0901317LDLR16wkHighFat" : 2.37017E-6, "red_GO" : "primary metabolic", "adjPValLDLRT0901317LDLR16wkHighFat" : 4.6591615E-5, "cytoscape_alias_list" : [ "270198" ], "id_original" : "270198", "logFCLDLR16wkHighFatLDLRChow" : 0.345765948929, "selected" : false, "canonicalName" : "Pfkfb4", "xref" : "L:270198", "Degree" : 306, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.204861285492, "PValueLDLR16wkHighFatLDLRChow" : 0.027475344545, "name" : "L:270198", "entrezId" : "270198", "adjPValLDLR16wkHighFatLDLRChow" : 0.189010178615, "entrez" : "270198", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.188083695339, "shared_name" : "L:270198", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.614032222353, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.513441210288, "SUID" : 588322, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.199551868071, "logFCLDLRT0901317LDLR16wkHighFat" : 0.772773189887, "label" : "Pfkfb4", "go_all" : "6-phosphofructo-2-kinase activity; ATP binding; catalytic activity; cellular_component; dephosphorylation; dephosphorylation; fructose-2,6-bisphosphate 2-phosphatase activity; fructose 2,6-bisphosphate metabolic process; fructose metabolic process; hydrolase activity; kinase activity; metabolic process; nucleotide binding; phosphorylation; transferase activity" }, "position" : { "x" : 2593.995849609375, "y" : 1958.6959228515625 }, "selected" : false }, { "data" : { "id" : "589133", "go_mf" : "cell adhesion molecule binding; integrin binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.369770642462, "kwalksLifeStyleroyalblue" : 0.6024506, "PValueLDLRT0901317LDLR16wkHighFat" : 2.33E-10, "goBP" : "heterophilic cell-cell adhesion;cell adhesion;leukocyte cell-cell adhesion;heart development;cell-cell adhesion;positive regulation of T cell proliferation;interspecies interaction between organisms;embryonic placenta morphogenesis;chorio-allantoic fusion;visceral serous pericardium development;cellular response to glucose stimulus", "kwalksLifeStyledarkturquoise" : 0.5134375, "GraphId" : "", "kwalksLifeStyleyellow" : 0.6596065, "goids" : "GO:0007157;GO:0007157;GO:0007155;GO:0007155;GO:0007159;GO:0007159;GO:0007507;GO:0016337;GO:0042102;GO:0044419;GO:0060669;GO:0060710;GO:0061032;GO:0071333;GO:0005886;GO:0002102;GO:0016020;GO:0016021;GO:0005615;GO:0005902;GO:0009897;GO:0009986;GO:0031225;GO:0030175;GO:0042383;GO:0045177;GO:0071065;GO:0071944;GO:0050839;GO:0005178", "red_GO" : "adhesion, structure", "isDrugNeighbor" : "false", "kwalksLifeStyleblack" : 0.6713364, "adjPValLDLRT0901317LDLR16wkHighFat" : 1.4446E-8, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FF9F9F|FFCFCF", "XrefId" : "", "cytoscape_alias_list" : [ "22329" ], "id_original" : "22329", "logFCLDLR16wkHighFatLDLRChow" : 0.751709318465, "selected" : false, "canonicalName" : "VCAM1, Vcam1", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FF9F9F|FF3B3B", "identifier" : "L:22329", "xref" : "L:22329", "Degree" : 393, "module" : "red", "kwalksLifeStylered" : 1.996327, "kwalksT0901317purple" : 0.05425451, "kwalksFromModule_LifeStyle_yellow" : "module.none", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.775727596631, "kwalksFromModule_LifeStyle_black" : "module.below.cutoff", "PValueLDLR16wkHighFatLDLRChow" : 8.13997746E-4, "kwalksLifeStylemagenta" : 0.585335, "kwalksFromModule_T0901317_purple" : "module.below.cutoff", "name" : "L:22329", "entrezId" : "22329", "adjPValLDLR16wkHighFatLDLRChow" : 0.023837855784, "moduleMembership" : 0.941985206324, "entrez" : "22329", "kwalksFromModule_LifeStyle_darkturquoise" : "module.none", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 5.62472352E-4, "kwalksT0901317magenta" : 0.0808043, "kwalksFromModule_LifeStyle_magenta" : "module.below.cutoff", "shared_name" : "L:22329", "ObjectType" : "", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.045166258153, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.339606559313, "SUID" : 589133, "kwalksLifeStylepurple" : 0.513517, "SourceDir" : "", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.092729910066, "kwalksFromModule_LifeStyle_red" : "module.above.cutoff", "logFCLDLRT0901317LDLR16wkHighFat" : 1.531123456018, "label" : "Vcam1", "go_all" : "alpha9-beta1 integrin-vascular cell adhesion molecule-1 complex; anchored to membrane; apical part of cell; cell adhesion; cell adhesion; cell adhesion molecule binding; cell-cell adhesion; cell periphery; cell surface; cellular response to glucose stimulus; chorio-allantoic fusion; embryonic placenta morphogenesis; external side of plasma membrane; extracellular space; filopodium; heart development; heterophilic cell-cell adhesion; heterophilic cell-cell adhesion; integral to membrane; integrin binding; interspecies interaction between organisms; leukocyte cell-cell adhesion; leukocyte cell-cell adhesion; membrane; microvillus; plasma membrane; podosome; positive regulation of T cell proliferation; sarcolemma; visceral serous pericardium development", "XrefStatus" : "", "XrefDatasource" : "", "kwalksFromModule_LifeStyle_royalblue" : "module.below.cutoff", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FF9F9F|9C9CFF", "TFeActingComplex" : "", "kwalksFromModule_LifeStyle_purple" : "module.none", "SourcePathway" : "" }, "position" : { "x" : 290.26239013671875, "y" : 1632.751708984375 }, "selected" : false }, { "data" : { "id" : "588185", "go_mf" : "actin binding; actin filament binding; calcium ion binding; protein binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.311704127245, "PValueLDLRT0901317LDLR16wkHighFat" : 0.141508934673, "red_GO" : "immune related", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.221590382968, "cytoscape_alias_list" : [ "11629" ], "id_original" : "11629", "logFCLDLR16wkHighFatLDLRChow" : 0.192231671427, "selected" : false, "canonicalName" : "Aif1", "xref" : "L:11629", "Degree" : 154, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.1167767049, "PValueLDLR16wkHighFatLDLRChow" : 0.283823397471, "name" : "L:11629", "entrezId" : "11629", "adjPValLDLR16wkHighFatLDLRChow" : 0.512136156718, "entrez" : "11629", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.196437211573, "shared_name" : "L:11629", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.584831710015, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.35012435339, "SUID" : 588185, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.17431434615, "logFCLDLRT0901317LDLR16wkHighFat" : 0.602186795647, "label" : "Aif1", "go_all" : "actin binding; actin filament; actin filament binding; actin filament bundle assembly; actin filament bundle assembly; calcium ion binding; cell projection; cytoplasm; cytoskeleton; cytosol; lamellipodium; membrane; negative regulation of apoptotic process; negative regulation of gene expression; perikaryon; phagocytic cup; plasma membrane; positive regulation of cell migration; positive regulation of muscle hyperplasia; positive regulation of nitric oxide biosynthetic process; positive regulation of protein phosphorylation; positive regulation of smooth muscle cell proliferation; protein binding; ruffle" }, "position" : { "x" : 2140.21337890625, "y" : 1883.8026123046875 }, "selected" : false }, { "data" : { "id" : "588725", "go_mf" : "diacyl lipopeptide binding; Gram-positive bacterial cell surface binding; lipopeptide binding; lipoteichoic acid binding; pattern recognition receptor activity; peptidoglycan binding; protein binding; protein heterodimerization activity; protein heterodimerization activity; receptor activity; transmembrane signaling receptor activity; triacyl lipopeptide binding; triacyl lipopeptide binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.313850115136, "PValueLDLRT0901317LDLR16wkHighFat" : 5.61230614E-4, "goBP" : "pattern recognition receptor signaling pathway;toll-like receptor signaling pathway;response to molecule of fungal origin;microglial cell activation involved in immune response;positive regulation of leukocyte migration;cell surface pattern recognition receptor signaling pathway;MyD88-dependent toll-like receptor signaling pathway;defense response to bacterium;signal transduction;inflammatory response;immune response;I-kappaB phosphorylation;defense response to Gram-positive bacterium;response to bacterium;positive regulation of gene-specific transcription from RNA polymerase II promoter;positive regulation of Wnt receptor signaling pathway;response to bacterial lipoprotein;response to peptidoglycan;negative regulation of interleukin-12 production;negative regulation of interleukin-17 production;positive regulation of chemokine production;positive regulation of interferon-beta production;positive regulation of interleukin-12 production;positive regulation of interleukin-18 production;positive regulation of interleukin-6 production;positive regulation of interleukin-8 production;positive regulation of tumor necrosis factor production;negative regulation of growth of symbiont in host;positive regulation of toll-like receptor signaling pathway;positive regulation of NF-kappaB import into nucleus;detection of triacyl bacterial lipopeptide;detection of diacyl bacterial lipopeptide;positive regulation of tumor necrosis factor biosynthetic process;chloramphenicol transport;innate immune response;positive regulation of nitric oxide biosynthetic process;nitric oxide metabolic process;positive regulation of NF-kappaB transcription factor activity;positive regulation of nitric-oxide synthase biosynthetic process;pathogen-associated molecular pattern dependent induction by symbiont of host innate immunity;induction by symbiont of defense-related host nitric oxide production;positive regulation of macrophage cytokine production;response to fatty acid;cellular response to bacterial lipopeptide;cellular response to lipoteichoic acid;cellular response to peptidoglycan;cellular response to diacyl bacterial lipopeptide;cellular response to triacyl bacterial lipopeptide", "GraphId" : "a6b14, d21f9; bb6a7; e0d0d; d7df4; ef490; a6054; f4b57; c2232; c7421, e4beb", "kwalksFromModule_T0901317_red" : "module.above.cutoff", "goids" : "GO:0002221;GO:0002224;GO:0002238;GO:0002282;GO:0002687;GO:0002752;GO:0002755;GO:0002755;GO:0042742;GO:0007165;GO:0006954;GO:0006955;GO:0007252;GO:0050830;GO:0009617;GO:0010552;GO:0030177;GO:0032493;GO:0032494;GO:0032695;GO:0032700;GO:0032722;GO:0032722;GO:0032728;GO:0032735;GO:0032741;GO:0032755;GO:0032755;GO:0032755;GO:0032757;GO:0032760;GO:0032760;GO:0044130;GO:0034123;GO:0042346;GO:0042495;GO:0042496;GO:0042535;GO:0042892;GO:0045087;GO:0045429;GO:0046209;GO:0051092;GO:0051770;GO:0052033;GO:0052063;GO:0060907;GO:0070542;GO:0071221;GO:0071221;GO:0071223;GO:0071223;GO:0071224;GO:0071726;GO:0071727;GO:0005886;GO:0005886;GO:0016020;GO:0016021;GO:0005737;GO:0009897;GO:0009986;GO:0031224;GO:0031410;GO:0035354;GO:0035355;GO:0004872;GO:0004888;GO:0008329;GO:0042497;GO:0042497;GO:0042498;GO:0042834;GO:0046982;GO:0046982;GO:0051637;GO:0070891", "red_GO" : "immune + inflammation related", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.004886994815, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFB2B2|FFD6D6", "XrefId" : "24088", "cytoscape_alias_list" : [ "24088" ], "id_original" : "24088", "logFCLDLR16wkHighFatLDLRChow" : 0.596186101129, "selected" : false, "canonicalName" : ", Tlr2, Tlr2", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFB2B2|FF9B9B", "identifier" : "L:24088", "xref" : "L:24088", "Degree" : 285, "module" : "red", "kwalksT0901317royalblue" : 0.0520296, "kwalksT0901317purple" : 0.04056177, "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.259661723513, "PValueLDLR16wkHighFatLDLRChow" : 0.007653276652, "kwalksFromModule_T0901317_purple" : "module.below.cutoff", "name" : "L:24088", "entrezId" : "24088", "adjPValLDLR16wkHighFatLDLRChow" : 0.091455492876, "entrez" : "24088", "isDrug" : "false", "kwalksFromModule_T0901317_royalblue" : "module.below.cutoff", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.238812514776, "kwalksT0901317magenta" : 0.04928521, "shared_name" : "L:24088", "ObjectType" : "DATANODE", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.666149567502, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.453801438834, "kwalksFromModule_T0901317_magenta" : "module.below.cutoff", "SUID" : 588725, "SourceDir" : "ETSB_20111201, Mmu-KEGG_20110518, wikipathways_analysis", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.155144834419, "kwalksT0901317red" : 0.0838111, "logFCLDLRT0901317LDLR16wkHighFat" : 0.780312463936, "label" : "Tlr2", "go_all" : "cell surface; cell surface pattern recognition receptor signaling pathway; cellular response to bacterial lipopeptide; cellular response to bacterial lipopeptide; cellular response to diacyl bacterial lipopeptide; cellular response to lipoteichoic acid; cellular response to lipoteichoic acid; cellular response to peptidoglycan; cellular response to triacyl bacterial lipopeptide; chloramphenicol transport; cytoplasm; cytoplasmic vesicle; defense response to bacterium; defense response to Gram-positive bacterium; detection of diacyl bacterial lipopeptide; detection of triacyl bacterial lipopeptide; diacyl lipopeptide binding; external side of plasma membrane; Gram-positive bacterial cell surface binding; I-kappaB phosphorylation; immune response; induction by symbiont of defense-related host nitric oxide production; inflammatory response; innate immune response; integral to membrane; intracellular; intrinsic to membrane; lipopeptide binding; lipoteichoic acid binding; membrane; microglial cell activation involved in immune response; MyD88-dependent toll-like receptor signaling pathway; negative regulation of growth of symbiont in host; negative regulation of interleukin-12 production; negative regulation of interleukin-17 production; nitric oxide metabolic process; pathogen-associated molecular pattern dependent induction by symbiont of host innate immune response; pattern recognition receptor activity; pattern recognition receptor signaling pathway; peptidoglycan binding; plasma membrane; plasma membrane; positive regulation of chemokine production; positive regulation of chemokine production; positive regulation of cytokine secretion; positive regulation of interferon-beta production; positive regulation of interleukin-12 production; positive regulation of interleukin-18 production; positive regulation of interleukin-6 production; positive regulation of interleukin-6 production; positive regulation of interleukin-6 production; positive regulation of interleukin-8 production; positive regulation of leukocyte migration; positive regulation of macrophage cytokine production; positive regulation of NF-kappaB import into nucleus; positive regulation of NF-kappaB transcription factor activity; positive regulation of nitric oxide biosynthetic process; positive regulation of nitric-oxide synthase biosynthetic process; positive regulation of toll-like receptor signaling pathway; positive regulation of transcription from RNA polymerase II promoter; positive regulation of tumor necrosis factor biosynthetic process; positive regulation of tumor necrosis factor production; positive regulation of tumor necrosis factor production; positive regulation of Wnt receptor signaling pathway; protein binding; protein heterodimerization activity; protein heterodimerization activity; receptor activity; response to bacterial lipoprotein; response to bacterium; response to fatty acid; response to molecule of fungal origin; response to peptidoglycan; signal transduction; Toll-like receptor 1-Toll-like receptor 2 protein complex; Toll-like receptor 2-Toll-like receptor 6 protein complex; toll-like receptor signaling pathway; transmembrane signaling receptor activity; triacyl lipopeptide binding; triacyl lipopeptide binding", "XrefStatus" : "mapped", "XrefDatasource" : "Entrez Gene", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFB2B2|DDDDFF", "TFeActingComplex" : "", "SourcePathway" : "overall pathway_inflammatory tone_2.gpml, mmu_Tuberculosis.gpml; mmu_Measles.gpml; mmu_Chagas disease (American trypanosomiasis).gpml; mmu_Toxoplasmosis.gpml; mmu_Toll-like receptor signaling pathway.gpml; mmu_Leishmaniasis.gpml; mmu_Rheumatoid arthritis.gpml; mmu_Malaria.gpml, Mm_Toll_Like_Receptor_signaling_WP88_41390.gpml" }, "position" : { "x" : 1091.0159912109375, "y" : 1682.4598388671875 }, "selected" : false }, { "data" : { "id" : "589222", "go_mf" : "peptidase inhibitor activity; protease binding; protein binding; serine-type endopeptidase inhibitor activity; serine-type endopeptidase inhibitor activity; serine-type endopeptidase inhibitor activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.224006012407, "PValueLDLRT0901317LDLR16wkHighFat" : 0.0, "adjPValLDLRT0901317LDLR16wkHighFat" : 5.6E-11, "cytoscape_alias_list" : [ "20719" ], "id_original" : "20719", "logFCLDLR16wkHighFatLDLRChow" : 0.450977123143, "selected" : false, "canonicalName" : "Serpinb6a", "xref" : "L:20719", "Degree" : 403, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.322470262817, "PValueLDLR16wkHighFatLDLRChow" : 2.64749799E-4, "name" : "L:20719", "entrezId" : "20719", "adjPValLDLR16wkHighFatLDLRChow" : 0.012079723932, "entrez" : "20719", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.008073377302, "shared_name" : "L:20719", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.172502624257, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.267844645106, "SUID" : 589222, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.063409997058, "logFCLDLRT0901317LDLR16wkHighFat" : 0.987132705085, "label" : "Serpinb6a", "go_all" : "centrosome; cytoplasm; cytoplasm; gonad development; intracellular; negative regulation of endopeptidase activity; negative regulation of endopeptidase activity; negative regulation of endopeptidase activity; negative regulation of peptidase activity; peptidase inhibitor activity; protease binding; protein binding; protein complex; regulation of proteolysis; serine-type endopeptidase inhibitor activity; serine-type endopeptidase inhibitor activity; serine-type endopeptidase inhibitor activity" }, "position" : { "x" : 4125.48828125, "y" : 2318.723388671875 }, "selected" : false }, { "data" : { "id" : "588999", "go_mf" : "molecular_function; voltage-gated potassium channel activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.095173071371, "PValueLDLRT0901317LDLR16wkHighFat" : 6.055462E-6, "adjPValLDLRT0901317LDLR16wkHighFat" : 1.04531502E-4, "cytoscape_alias_list" : [ "239217" ], "id_original" : "239217", "logFCLDLR16wkHighFatLDLRChow" : 0.30265391889, "selected" : false, "canonicalName" : "Kctd12", "xref" : "L:239217", "Degree" : 208, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.422246915928, "PValueLDLR16wkHighFatLDLRChow" : 0.042637086163, "name" : "L:239217", "entrezId" : "239217", "adjPValLDLR16wkHighFatLDLRChow" : 0.24346798003, "entrez" : "239217", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.005071544197, "shared_name" : "L:239217", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.142419828644, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.796520469423, "SUID" : 588999, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.520053546647, "logFCLDLRT0901317LDLR16wkHighFat" : 0.703411646545, "label" : "Kctd12", "go_all" : "biological_process; cell junction; cellular_component; membrane; molecular_function; plasma membrane; postsynaptic membrane; potassium ion transmembrane transport; potassium ion transport; regulation of ion transmembrane transport; synapse; voltage-gated potassium channel activity; voltage-gated potassium channel complex" }, "position" : { "x" : 3999.805419921875, "y" : 2393.71044921875 }, "selected" : false }, { "data" : { "id" : "589275", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.303124787258, "PValueLDLRT0901317LDLR16wkHighFat" : 3.555899E-6, "red_GO" : "immune related", "adjPValLDLRT0901317LDLR16wkHighFat" : 6.5932577E-5, "cytoscape_alias_list" : [ "246256" ], "id_original" : "246256", "logFCLDLR16wkHighFatLDLRChow" : 0.513982751484, "selected" : false, "canonicalName" : "Fcgr4", "xref" : "L:246256", "Degree" : 305, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.543209474111, "PValueLDLR16wkHighFatLDLRChow" : 0.004558031813, "name" : "L:246256", "entrezId" : "246256", "adjPValLDLR16wkHighFatLDLRChow" : 0.066914396799, "entrez" : "246256", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.002777272282, "shared_name" : "L:246256", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.102524375374, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.334042541078, "SUID" : 589275, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.090202471039, "logFCLDLRT0901317LDLR16wkHighFat" : 0.868517088261, "label" : "Fcgr4", "go_all" : "cell surface; cellular response to lipopolysaccharide; external side of plasma membrane; NK T cell proliferation; regulation of sensory perception of pain" }, "position" : { "x" : 1568.15185546875, "y" : 2069.676513671875 }, "selected" : false }, { "data" : { "id" : "588342", "go_mf" : "integrin binding; phosphatidylethanolamine binding; phosphatidylserine binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.197349917866, "PValueLDLRT0901317LDLR16wkHighFat" : 1.5927727E-5, "red_GO" : "immune related", "adjPValLDLRT0901317LDLR16wkHighFat" : 2.35441513E-4, "cytoscape_alias_list" : [ "17304" ], "id_original" : "17304", "logFCLDLR16wkHighFatLDLRChow" : 0.630626889078, "selected" : false, "canonicalName" : "Mfge8", "xref" : "L:17304", "Degree" : 408, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.347038126429, "PValueLDLR16wkHighFatLDLRChow" : 0.002056363981, "name" : "L:17304", "entrezId" : "17304", "adjPValLDLR16wkHighFatLDLRChow" : 0.03199177697, "entrez" : "17304", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.034849978275, "shared_name" : "L:17304", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.328965696101, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.544383941009, "SUID" : 588342, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.242468947476, "logFCLDLRT0901317LDLR16wkHighFat" : 0.739226678499, "label" : "Mfge8", "go_all" : "angiogenesis; cell adhesion; external side of plasma membrane; extracellular region; extracellular space; extrinsic to plasma membrane; integrin binding; membrane; phagocytosis, engulfment; phagocytosis, recognition; phosphatidylethanolamine binding; phosphatidylserine binding; positive regulation of apoptotic cell clearance; positive regulation of phagocytosis; single fertilization" }, "position" : { "x" : 1680.421142578125, "y" : 1602.0416259765625 }, "selected" : false }, { "data" : { "id" : "589081", "go_mf" : "ATP binding; identical protein binding; kinase activity; lipid binding; metal ion binding; non-membrane spanning protein tyrosine kinase activity; nucleotide binding; phosphatidylinositol-3,4,5-trisphosphate binding; phospholipid binding; protein binding; protein kinase activity; protein tyrosine kinase activity; protein tyrosine kinase activity; transferase activity; transferase activity, transferring phosphorus-containing groups", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.406877345675, "PValueLDLRT0901317LDLR16wkHighFat" : 3.196173E-6, "goBP" : "response to reactive oxygen species;histamine secretion by mast cell;apoptotic process;intracellular signal transduction;transcription, DNA-dependent;regulation of transcription, DNA-dependent;protein phosphorylation;I-kappaB kinase/NF-kappaB cascade;response to biotic stimulus;response to organic substance;phosphorylation;peptidyl-tyrosine phosphorylation;innate immune response;protein autophosphorylation;cell maturation", "GraphId" : "", "kwalksFromModule_Fenofibrate_magenta" : "module.none", "goids" : "GO:0000302;GO:0002553;GO:0006915;GO:0035556;GO:0006351;GO:0006355;GO:0006468;GO:0007249;GO:0009607;GO:0010033;GO:0016310;GO:0018108;GO:0045087;GO:0046777;GO:0048469;GO:0005886;GO:0005622;GO:0005622;GO:0016020;GO:0005829;GO:0005634;GO:0005737;GO:0031410;GO:0045121;GO:0048471;GO:0000166;GO:0005515;GO:0004672;GO:0004713;GO:0004713;GO:0004715;GO:0046872;GO:0005524;GO:0005543;GO:0005547;GO:0008289;GO:0042802;GO:0016301;GO:0016740;GO:0016772", "red_GO" : "immune + inflammation related", "kwalksFenofibratemagenta" : 0.009562074, "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 6.0051389E-5, "XrefId" : "", "cytoscape_alias_list" : [ "12229" ], "id_original" : "12229", "logFCLDLR16wkHighFatLDLRChow" : 0.23353287802, "selected" : false, "canonicalName" : "Btk", "identifier" : "L:12229", "xref" : "L:12229", "Degree" : 343, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.109797365261, "PValueLDLR16wkHighFatLDLRChow" : 0.147007821302, "name" : "L:12229", "entrezId" : "12229", "adjPValLDLR16wkHighFatLDLRChow" : 0.458881500158, "moduleMembership" : 0.86123738842, "entrez" : "12229", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.493638601599, "shared_name" : "L:12229", "ObjectType" : "", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.827607745068, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.087787103604, "SUID" : 589081, "SourceDir" : "", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.012381604385, "logFCLDLRT0901317LDLR16wkHighFat" : 0.787361987489, "label" : "Btk", "go_all" : "apoptotic process; ATP binding; cell maturation; cytoplasm; cytoplasmic vesicle; cytosol; histamine secretion by mast cell; identical protein binding; I-kappaB kinase/NF-kappaB cascade; innate immune response; intracellular; intracellular; intracellular signal transduction; kinase activity; lipid binding; membrane; membrane raft; metal ion binding; non-membrane spanning protein tyrosine kinase activity; nucleotide binding; nucleus; peptidyl-tyrosine phosphorylation; perinuclear region of cytoplasm; phosphatidylinositol-3,4,5-trisphosphate binding; phospholipid binding; phosphorylation; plasma membrane; protein autophosphorylation; protein binding; protein kinase activity; protein phosphorylation; protein tyrosine kinase activity; protein tyrosine kinase activity; regulation of transcription, DNA-dependent; response to biotic stimulus; response to organic substance; response to reactive oxygen species; transcription, DNA-dependent; transferase activity; transferase activity, transferring phosphorus-containing groups", "XrefStatus" : "", "XrefDatasource" : "", "TFeActingComplex" : "", "SourcePathway" : "", "kwalksFenofibratered" : 0.6459482 }, "position" : { "x" : 1107.7578125, "y" : 1761.2239990234375 }, "selected" : false }, { "data" : { "id" : "587718", "go_mf" : "binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.196474622542, "PValueLDLRT0901317LDLR16wkHighFat" : 7.751732E-6, "adjPValLDLRT0901317LDLR16wkHighFat" : 1.18919694E-4, "cytoscape_alias_list" : [ "15958" ], "id_original" : "15958", "logFCLDLR16wkHighFatLDLRChow" : 0.38310343236, "selected" : false, "canonicalName" : "Ifit2", "xref" : "L:15958", "Degree" : 329, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.495870439332, "PValueLDLR16wkHighFatLDLRChow" : 0.084540209479, "name" : "L:15958", "entrezId" : "15958", "adjPValLDLR16wkHighFatLDLRChow" : 0.29092563108, "entrez" : "15958", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.018396830838, "shared_name" : "L:15958", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.211181413808, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.627795870184, "SUID" : 587718, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.335923761165, "logFCLDLRT0901317LDLR16wkHighFat" : 0.980346384458, "label" : "Ifit2", "go_all" : "binding; cellular response to interferon-alpha; negative regulation of protein binding; response to virus" }, "position" : { "x" : 4033.5341796875, "y" : 2379.097412109375 }, "selected" : false }, { "data" : { "id" : "588481", "go_mf" : "calcium ion binding; CD4 receptor binding; enzyme binding; epidermal growth factor receptor binding; phospholipid scramblase activity; RNA polymerase II core promoter proximal region sequence-specific DNA binding transcription factor activity involved in positive regulation of transcription; SH3 domain binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.017184464543, "kwalksLifeStyleroyalblue" : 0.2267985, "PValueLDLRT0901317LDLR16wkHighFat" : 0.031569103464, "goBP" : "response to virus;immune response;myeloid cell differentiation", "kwalksLifeStyledarkturquoise" : 0.1933434, "GraphId" : "NA", "kwalksLifeStyleyellow" : 0.2531066, "goids" : "GO:0009615;GO:0006955;GO:0030099;GO:0016020;GO:0016021;GO:0017124", "red_GO" : "immune related", "isDrugNeighbor" : "false", "kwalksLifeStyleblack" : 0.2507409, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.10022899514, "XrefId" : "NA", "cytoscape_alias_list" : [ "22038" ], "id_original" : "22038", "logFCLDLR16wkHighFatLDLRChow" : 0.548536273512, "selected" : false, "canonicalName" : "NA", "identifier" : "L:22038", "xref" : "L:22038", "Degree" : 351, "module" : "red", "kwalksLifeStylered" : 0.1443733, "kwalksFromModule_LifeStyle_yellow" : "module.below.cutoff", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.528887118188, "kwalksFromModule_LifeStyle_black" : "module.below.cutoff", "PValueLDLR16wkHighFatLDLRChow" : 5.56452761E-4, "name" : "L:22038", "entrezId" : "22038", "adjPValLDLR16wkHighFatLDLRChow" : 0.015928948769, "entrez" : "22038", "kwalksFromModule_LifeStyle_darkturquoise" : "module.below.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 3.68447167E-4, "shared_name" : "L:22038", "ObjectType" : "NA", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.036527874669, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.761294325445, "SUID" : 588481, "kwalksLifeStylepurple" : 0.189735, "SourceDir" : "NA", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.474320977514, "kwalksFromModule_LifeStyle_red" : "module.above.cutoff", "logFCLDLRT0901317LDLR16wkHighFat" : 0.422612642336, "label" : "Plscr1", "go_all" : "apoptotic process; apoptotic process; calcium ion binding; CD4 receptor binding; cytosol; cytosol; defense response to virus; defense response to virus; enzyme binding; epidermal growth factor receptor binding; extracellular matrix; Golgi apparatus; immune response; integral to membrane; integral to plasma membrane; membrane; membrane raft; myeloid cell differentiation; negative regulation of viral genome replication; negative regulation of viral genome replication; nucleolus; nucleus; nucleus; phosphatidylserine biosynthetic process; phospholipid scramblase activity; phospholipid scrambling; phospholipid scrambling; phospholipid transport; plasma membrane; plasma membrane; positive regulation of DNA topoisomerase (ATP-hydrolyzing) activity; positive regulation of gene expression; positive regulation of innate immune response; positive regulation of innate immune response; positive regulation of transcription from RNA polymerase II promoter; regulation of Fc receptor mediated stimulatory signaling pathway; regulation of mast cell activation; response to interferon-alpha; response to interferon-beta; response to UV-C; response to virus; RNA polymerase II core promoter proximal region sequence-specific DNA binding transcription factor activity involved in positive regulation of transcription; SH3 domain binding", "XrefStatus" : "NA", "XrefDatasource" : "NA", "kwalksFromModule_LifeStyle_royalblue" : "module.below.cutoff", "TFeActingComplex" : "", "kwalksFromModule_LifeStyle_purple" : "module.below.cutoff", "SourcePathway" : "NA" }, "position" : { "x" : 1726.265869140625, "y" : 1583.0521240234375 }, "selected" : false }, { "data" : { "id" : "587864", "go_mf" : "DNA binding; sequence-specific DNA binding; sequence-specific DNA binding transcription factor activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.361766476452, "PValueLDLRT0901317LDLR16wkHighFat" : 0.052929742982, "red_GO" : "primary metabolic", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.142364227766, "cytoscape_alias_list" : [ "20728" ], "id_original" : "20728", "logFCLDLR16wkHighFatLDLRChow" : 0.360229535713, "selected" : false, "canonicalName" : "Spic", "xref" : "L:20728", "Degree" : 169, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.127806389228, "PValueLDLR16wkHighFatLDLRChow" : 0.109682795535, "name" : "L:20728", "entrezId" : "20728", "adjPValLDLR16wkHighFatLDLRChow" : 0.327842796128, "entrez" : "20728", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.521589529995, "shared_name" : "L:20728", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.839225965063, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.475943490203, "SUID" : 587864, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.39850454221, "logFCLDLRT0901317LDLR16wkHighFat" : 0.703394128764, "label" : "Spic", "go_all" : "blastocyst development; DNA binding; nucleus; positive regulation of transcription from RNA polymerase II promoter; regulation of transcription, DNA-dependent; sequence-specific DNA binding; sequence-specific DNA binding transcription factor activity; transcription, DNA-dependent" }, "position" : { "x" : 2943.67529296875, "y" : 1632.1180419921875 }, "selected" : false }, { "data" : { "id" : "588365", "go_mf" : "protein binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.024316070975, "PValueLDLRT0901317LDLR16wkHighFat" : 0.002254952007, "goBP" : "innate immune response", "GraphId" : "", "kwalksFromModule_T0901317_red" : "module.above.cutoff", "goids" : "GO:0008150;GO:0045087;GO:0005575;GO:0005515", "red_GO" : "immune related", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.014519860702, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFECEC|FFFBFB", "XrefId" : "", "cytoscape_alias_list" : [ "69769" ], "kwalksT0901317darkturquoise" : 0.08404995, "id_original" : "69769", "logFCLDLR16wkHighFatLDLRChow" : 0.14591984685, "selected" : false, "canonicalName" : "NA", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFECEC|FFBCBC", "identifier" : "L:69769", "xref" : "L:69769", "kwalksFromModule_T0901317_darkturquoise" : "module.below.cutoff", "Degree" : 189, "module" : "red", "kwalksT0901317royalblue" : 0.08175061, "kwalksT0901317purple" : 0.09092524, "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.313093779023, "PValueLDLR16wkHighFatLDLRChow" : 0.48802673633, "kwalksFromModule_T0901317_purple" : "module.below.cutoff", "name" : "L:69769", "entrezId" : "69769", "adjPValLDLR16wkHighFatLDLRChow" : 0.657308331267, "moduleMembership" : 0.870283555456, "entrez" : "69769", "isDrug" : "false", "kwalksFromModule_T0901317_royalblue" : "module.below.cutoff", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.366848591578, "kwalksT0901317magenta" : 0.08814777, "shared_name" : "L:69769", "ObjectType" : "", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.503511555998, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.801629582935, "kwalksFromModule_T0901317_magenta" : "module.below.cutoff", "SUID" : 588365, "SourceDir" : "", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.552550724845, "kwalksT0901317red" : 0.3557976, "logFCLDLRT0901317LDLR16wkHighFat" : 0.521324510651, "label" : "Tnfaip8l2", "go_all" : "biological_process; cellular_component; innate immune response; protein binding", "XrefStatus" : "", "XrefDatasource" : "", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFECEC|D7D7FF", "TFeActingComplex" : "", "SourcePathway" : "", "kwalksT0901317yellow" : 0.2181389, "kwalksT0901317black" : 0.1780681 }, "position" : { "x" : 2105.74658203125, "y" : 1740.2381591796875 }, "selected" : false }, { "data" : { "id" : "588721", "go_mf" : "cysteine-type endopeptidase inhibitor activity; peptidase inhibitor activity; serine-type endopeptidase inhibitor activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.209621429688, "PValueLDLRT0901317LDLR16wkHighFat" : 1.56464396E-4, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.001674989166, "cytoscape_alias_list" : [ "20715" ], "id_original" : "20715", "logFCLDLR16wkHighFatLDLRChow" : 0.740145812388, "selected" : false, "canonicalName" : "Serpina3g", "xref" : "L:20715", "Degree" : 194, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.681592567011, "PValueLDLR16wkHighFatLDLRChow" : 0.001236503432, "name" : "L:20715", "entrezId" : "20715", "adjPValLDLR16wkHighFatLDLRChow" : 0.031112404766, "entrez" : "20715", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.002827058608, "shared_name" : "L:20715", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.103151563022, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.672171877037, "SUID" : 588721, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.348978919919, "logFCLDLRT0901317LDLR16wkHighFat" : 0.874543024178, "label" : "Serpina3g", "go_all" : "apoptotic process; cysteine-type endopeptidase inhibitor activity; cytoplasm; extracellular region; negative regulation of endopeptidase activity; negative regulation of endopeptidase activity; negative regulation of peptidase activity; nucleus; peptidase inhibitor activity; regulation of proteolysis; response to cytokine stimulus; response to peptide hormone stimulus; serine-type endopeptidase inhibitor activity" }, "position" : { "x" : 3677.166259765625, "y" : 2386.766845703125 }, "selected" : false }, { "data" : { "id" : "589076", "go_mf" : "peptide antigen binding; peptide antigen binding; receptor binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.039773741824, "PValueLDLRT0901317LDLR16wkHighFat" : 7.279199E-6, "red_GO" : "immune related", "adjPValLDLRT0901317LDLR16wkHighFat" : 1.23323378E-4, "cytoscape_alias_list" : [ "14991" ], "id_original" : "14991", "logFCLDLR16wkHighFatLDLRChow" : 0.14141999127, "selected" : false, "canonicalName" : "H2-M3", "xref" : "L:14991", "Degree" : 118, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.128555659092, "PValueLDLR16wkHighFatLDLRChow" : 0.217325758299, "name" : "L:14991", "entrezId" : "14991", "adjPValLDLR16wkHighFatLDLRChow" : 0.550112583441, "entrez" : "14991", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.261791639032, "shared_name" : "L:14991", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.686270264279, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.902686509376, "SUID" : 589076, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.727728574708, "logFCLDLRT0901317LDLR16wkHighFat" : 0.538359853851, "label" : "H2-M3", "go_all" : "alpha-beta T cell activation involved in immune response; antigen processing and presentation of endogenous peptide antigen via MHC class Ib; antigen processing and presentation of exogenous peptide antigen via MHC class Ib; antigen processing and presentation of exogenous protein antigen via MHC class Ib, TAP-dependent; defense response to bacterium; defense response to bacterium; external side of plasma membrane; immune response-inhibiting cell surface receptor signaling pathway; integral to membrane; MHC class Ib protein complex; negative regulation of dendritic cell differentiation; negative regulation of T cell proliferation; peptide antigen binding; peptide antigen binding; positive regulation of interferon-gamma production; positive regulation of interleukin-12 production; positive regulation of natural killer cell mediated cytotoxicity; positive regulation of nitric oxide biosynthetic process; positive regulation of regulatory T cell differentiation; positive regulation of T cell mediated cytotoxicity; positive regulation of T cell mediated cytotoxicity; positive regulation of T cell tolerance induction; receptor binding; response to molecule of bacterial origin" }, "position" : { "x" : 1523.235107421875, "y" : 1786.0828857421875 }, "selected" : false }, { "data" : { "id" : "588927", "go_mf" : "ATP binding; catalytic activity; enzyme binding; hexokinase activity; hormone binding; kinase activity; nucleotide binding; phosphotransferase activity, alcohol group as acceptor; transferase activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.652169122294, "kwalksLifeStyleroyalblue" : 0.3316046, "PValueLDLRT0901317LDLR16wkHighFat" : 6.4298E-8, "goBP" : "metabolic process;carbohydrate metabolic process;glycolysis;phosphorylation", "kwalksLifeStyledarkturquoise" : 0.2700494, "GraphId" : "d1390", "kwalksFromModule_Fenofibrate_magenta" : "module.none", "kwalksLifeStyleyellow" : 0.3563742, "goids" : "GO:0008152;GO:0005975;GO:0006096;GO:0016310;GO:0005739;GO:0043234;GO:0000166;GO:0003824;GO:0004396;GO:0005524;GO:0016301;GO:0016740;GO:0016773;GO:0019899;GO:0042562", "kwalksFenofibratedarkturquoise" : 0.3251482, "red_GO" : "primary metabolic", "kwalksFenofibratemagenta" : 0.03388193, "kwalksFenofibrateroyalblue" : 0.1905281, "isDrugNeighbor" : "false", "kwalksLifeStyleblack" : 0.3981754, "adjPValLDLRT0901317LDLR16wkHighFat" : 2.059382E-6, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFD7D7|FFABAB", "XrefId" : "212032", "cytoscape_alias_list" : [ "212032" ], "id_original" : "212032", "logFCLDLR16wkHighFatLDLRChow" : 0.312045454529, "selected" : false, "canonicalName" : "Hk3", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFD7D7|FF8181", "identifier" : "L:212032", "xref" : "L:212032", "Degree" : 292, "module" : "red", "kwalksFenofibratepurple" : 0.1496998, "kwalksLifeStylered" : 0.9728849, "kwalksFromModule_LifeStyle_yellow" : "module.below.cutoff", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.349674361181, "kwalksFromModule_LifeStyle_black" : "module.below.cutoff", "PValueLDLR16wkHighFatLDLRChow" : 0.066700125273, "name" : "L:212032", "entrezId" : "212032", "adjPValLDLR16wkHighFatLDLRChow" : 0.308649860618, "moduleMembership" : 0.911850301071, "entrez" : "212032", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "kwalksFromModule_LifeStyle_darkturquoise" : "module.below.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.040307574823, "shared_name" : "L:212032", "ObjectType" : "DATANODE", "kwalksFenofibrateblack" : 0.6567579, "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.348868071262, "kwalksFromModule_Fenofibrate_purple" : "module.none", "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.003288448164, "SUID" : 588927, "kwalksLifeStylepurple" : 0.285575, "SourceDir" : "wikipathways_analysis", "PValueLDLRFenofibrateLDLR16wkHighFat" : 1.8861632E-4, "kwalksFromModule_LifeStyle_red" : "module.above.cutoff", "kwalksFromModule_Fenofibrate_yellow" : "module.none", "logFCLDLRT0901317LDLR16wkHighFat" : 0.981321850186, "label" : "Hk3", "go_all" : "ATP binding; carbohydrate metabolic process; catalytic activity; enzyme binding; glycolysis; hexokinase activity; hormone binding; kinase activity; metabolic process; mitochondrion; nucleotide binding; phosphorylation; phosphotransferase activity, alcohol group as acceptor; protein complex; transferase activity", "XrefStatus" : "mapped", "XrefDatasource" : "Entrez Gene", "kwalksFromModule_LifeStyle_royalblue" : "module.below.cutoff", "kwalksFromModule_Fenofibrate_royalblue" : "module.none", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFD7D7|D2D2FF", "TFeActingComplex" : "", "kwalksFromModule_LifeStyle_purple" : "module.below.cutoff", "SourcePathway" : "Mm_Glycolysis_and_Gluconeogenesis_WP157_43573.gpml", "kwalksFenofibratered" : 2.728733, "kwalksFenofibrateyellow" : 0.2615368 }, "position" : { "x" : 2763.640869140625, "y" : 2046.598876953125 }, "selected" : false }, { "data" : { "id" : "588472", "go_mf" : "receptor activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.103451367376, "PValueLDLRT0901317LDLR16wkHighFat" : 0.040733238311, "red_GO" : "adhesion, structure", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.121233341135, "cytoscape_alias_list" : [ "17085" ], "id_original" : "17085", "logFCLDLR16wkHighFatLDLRChow" : 0.417326260318, "selected" : false, "canonicalName" : "Ly9", "xref" : "L:17085", "Degree" : 153, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.323843581072, "PValueLDLR16wkHighFatLDLRChow" : 0.141605930205, "name" : "L:17085", "entrezId" : "17085", "adjPValLDLR16wkHighFatLDLRChow" : 0.319223932273, "entrez" : "17085", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.256321621974, "shared_name" : "L:17085", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.479366930761, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.81173743657, "SUID" : 588472, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.573749406646, "logFCLDLRT0901317LDLR16wkHighFat" : 0.472381733467, "label" : "Ly9", "go_all" : "cell adhesion; integral to membrane; membrane; receptor activity" }, "position" : { "x" : 34.42876434326172, "y" : 1632.751708984375 }, "selected" : false }, { "data" : { "id" : "588697", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.303376883315, "PValueLDLRT0901317LDLR16wkHighFat" : 2.046327E-6, "goBP" : "NA", "GraphId" : "NA", "kwalksFromModule_T0901317_red" : "module.below.cutoff", "goids" : "NA", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 4.1310053E-5, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFC6C6|FFD8D8", "XrefId" : "NA", "cytoscape_alias_list" : [ "23833" ], "id_original" : "23833", "logFCLDLR16wkHighFatLDLRChow" : 0.445082628037, "selected" : false, "canonicalName" : "NA", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFC6C6|FF8D8D", "identifier" : "NA", "xref" : "L:23833", "Degree" : 286, "module" : "red", "kwalksLifeStylered" : 0.1513552, "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.558359715382, "PValueLDLR16wkHighFatLDLRChow" : 0.013423340811, "name" : "L:23833", "entrezId" : "23833", "adjPValLDLR16wkHighFatLDLRChow" : 0.127936640964, "moduleMembership" : 0.958472454826, "entrez" : "NA", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.002097207481, "shared_name" : "L:23833", "ObjectType" : "NA", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.091106864233, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.332456115356, "SUID" : 588697, "SourceDir" : "NA", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.089403339173, "kwalksFromModule_LifeStyle_red" : "module.below.cutoff", "kwalksT0901317red" : 0.060594, "logFCLDLRT0901317LDLR16wkHighFat" : 0.890558086974, "label" : "Cd52", "go_all" : "anchored to membrane; elevation of cytosolic calcium ion concentration; membrane; plasma membrane", "XrefStatus" : "NA", "XrefDatasource" : "NA", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFC6C6|B7B7FF", "TFeActingComplex" : "NA", "SourcePathway" : "NA" }, "position" : { "x" : 3856.188232421875, "y" : 2421.876220703125 }, "selected" : false }, { "data" : { "id" : "589285", "go_mf" : "(1->3)-beta-D-glucan binding; (1->3)-beta-D-glucan receptor activity; binding; metal ion binding; opsonin binding; pattern recognition receptor activity; polysaccharide binding; protein binding; receptor activity; sugar binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.06968991814, "PValueLDLRT0901317LDLR16wkHighFat" : 0.020895222126, "red_GO" : "immune + inflammation related", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.074523612449, "cytoscape_alias_list" : [ "56644" ], "id_original" : "56644", "logFCLDLR16wkHighFatLDLRChow" : 0.841082685191, "selected" : false, "canonicalName" : "Clec7a", "xref" : "L:56644", "Degree" : 261, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.777170291021, "PValueLDLR16wkHighFatLDLRChow" : 0.003010691591, "name" : "L:56644", "entrezId" : "56644", "adjPValLDLR16wkHighFatLDLRChow" : 0.052771748445, "entrez" : "56644", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.036249172193, "shared_name" : "L:56644", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.246984271912, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.897057314672, "SUID" : 589285, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.756055048674, "logFCLDLRT0901317LDLR16wkHighFat" : 0.818028845383, "label" : "Clec7a", "go_all" : "(1->3)-beta-D-glucan binding; (1->3)-beta-D-glucan receptor activity; binding; cell-cell adhesion; cell recognition; cell surface pattern recognition receptor signaling pathway; cellular response to molecule of fungal origin; detection of yeast; external side of plasma membrane; inflammatory response; innate immune response; integral to membrane; leukocyte activation involved in immune response; membrane; metal ion binding; opsonin binding; pattern recognition receptor activity; pattern recognition receptor signaling pathway; phagocytosis, engulfment; phagocytosis, recognition; phagocytosis, recognition; plasma membrane; polysaccharide binding; positive regulation of phagocytosis; positive regulation of tumor necrosis factor production; protein binding; receptor activity; response to molecule of fungal origin; response to yeast; sugar binding" }, "position" : { "x" : 724.691162109375, "y" : 1801.4859619140625 }, "selected" : false }, { "data" : { "id" : "588081", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.284196012917, "PValueLDLRT0901317LDLR16wkHighFat" : 0.001177729509, "red_GO" : "adhesion, structure", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.008193620032, "cytoscape_alias_list" : [ "12332" ], "id_original" : "12332", "logFCLDLR16wkHighFatLDLRChow" : 0.040240594847, "selected" : false, "canonicalName" : "Capg", "xref" : "L:12332", "Degree" : 207, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.27880966628, "PValueLDLR16wkHighFatLDLRChow" : 9.50886832E-4, "name" : "L:12332", "entrezId" : "12332", "adjPValLDLR16wkHighFatLDLRChow" : 0.026286873247, "entrez" : "12332", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.436231970268, "shared_name" : "L:12332", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.569821433535, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.386236381214, "SUID" : 588081, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.121667674515, "logFCLDLRT0901317LDLR16wkHighFat" : 0.663986054531, "label" : "Capg", "go_all" : "cell projection assembly; cytoplasm; nuclear membrane; nucleolus; nucleus" }, "position" : { "x" : 290.26239013671875, "y" : 1818.625732421875 }, "selected" : false }, { "data" : { "id" : "589304", "go_mf" : "endonuclease activity; hydrolase activity; molecular_function; nuclease activity; nucleic acid binding; pancreatic ribonuclease activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.397468327902, "PValueLDLRT0901317LDLR16wkHighFat" : 3.405E-9, "goBP" : "NA", "GraphId" : "NA", "kwalksFromModule_T0901317_red" : "module.below.cutoff", "goids" : "NA", "kwalksFenofibratemagenta" : 0.002217004, "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 1.53429E-7, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FF8484|FFCCCC", "XrefId" : "NA", "cytoscape_alias_list" : [ "53877" ], "id_original" : "53877", "logFCLDLR16wkHighFatLDLRChow" : 0.96266367299, "selected" : false, "canonicalName" : "NA", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FF8484|FF6161", "identifier" : "NA", "xref" : "L:53877", "Degree" : 461, "module" : "red", "kwalksLifeStylered" : 0.1549974, "kwalksT0901317purple" : 0.0311884, "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.851619415388, "PValueLDLR16wkHighFatLDLRChow" : 1.883902E-6, "name" : "L:53877", "entrezId" : "53877", "adjPValLDLR16wkHighFatLDLRChow" : 4.35680118E-4, "moduleMembership" : 0.964709562075, "entrez" : "NA", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 2.0082203E-5, "shared_name" : "L:53877", "ObjectType" : "NA", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.005958730602, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.194167608096, "SUID" : 589304, "SourceDir" : "NA", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.039408967647, "kwalksFromModule_LifeStyle_red" : "module.below.cutoff", "kwalksT0901317red" : 0.06046819, "logFCLDLRT0901317LDLR16wkHighFat" : 1.231719046799, "label" : "Ear4", "go_all" : "biological_process; cellular_component; endonuclease activity; hydrolase activity; lysosome; molecular_function; nuclease activity; nucleic acid binding; nucleic acid phosphodiester bond hydrolysis; pancreatic ribonuclease activity", "XrefStatus" : "NA", "XrefDatasource" : "NA", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FF8484|9292FF", "TFeActingComplex" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.3070279 }, "position" : { "x" : 4272.615234375, "y" : 2031.499267578125 }, "selected" : false }, { "data" : { "id" : "588803", "go_mf" : "receptor binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.302479598528, "PValueLDLRT0901317LDLR16wkHighFat" : 7.8783E-8, "adjPValLDLRT0901317LDLR16wkHighFat" : 2.429287E-6, "cytoscape_alias_list" : [ "230514" ], "id_original" : "230514", "logFCLDLR16wkHighFatLDLRChow" : 0.150271514345, "selected" : false, "canonicalName" : "Obrgrp", "xref" : "L:230514", "Degree" : 383, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.150339209396, "PValueLDLR16wkHighFatLDLRChow" : 0.163164730844, "name" : "L:230514", "entrezId" : "230514", "adjPValLDLR16wkHighFatLDLRChow" : 0.484400581199, "entrez" : "230514", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.162977025123, "shared_name" : "L:230514", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.583157382726, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.048846690671, "SUID" : 588803, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.005640696316, "logFCLDLRT0901317LDLR16wkHighFat" : 0.618727532166, "label" : "Obrgrp", "go_all" : "endosome; Golgi apparatus; integral to membrane; membrane; negative regulation of growth hormone receptor signaling pathway; negative regulation of JAK-STAT cascade; negative regulation of protein localization at cell surface; receptor binding" }, "position" : { "x" : 3644.097412109375, "y" : 2370.71630859375 }, "selected" : false }, { "data" : { "id" : "588835", "go_mf" : "actin binding; actin binding; enzyme binding; enzyme binding; protein binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.188678548083, "PValueLDLRT0901317LDLR16wkHighFat" : 7.87E-10, "goBP" : "", "GraphId" : "", "goids" : "GO:0005622;GO:0005575;GO:0005737;GO:0005856;GO:0005515;GO:0003779;GO:0003779;GO:0019899", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 4.107E-8, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFAFAF|FFE6E6", "XrefId" : "", "cytoscape_alias_list" : [ "72042" ], "id_original" : "72042", "logFCLDLR16wkHighFatLDLRChow" : 0.626218317413, "selected" : false, "canonicalName" : "NA", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFAFAF|FF8080", "identifier" : "L:72042", "xref" : "L:72042", "Degree" : 414, "module" : "red", "kwalksLifeStylered" : 0.1510493, "kwalksT0901317purple" : 0.03065381, "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.495292765503, "PValueLDLR16wkHighFatLDLRChow" : 4.0497504E-5, "name" : "L:72042", "entrezId" : "72042", "adjPValLDLR16wkHighFatLDLRChow" : 0.00352387169, "entrez" : "72042", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 9.83802404E-4, "shared_name" : "L:72042", "ObjectType" : "", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.061151290942, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.512939421791, "SUID" : 588835, "SourceDir" : "", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.199161141387, "kwalksFromModule_LifeStyle_red" : "module.below.cutoff", "logFCLDLRT0901317LDLR16wkHighFat" : 0.989048716531, "label" : "Cotl1", "go_all" : "actin binding; actin binding; cellular_component; cytoplasm; cytoskeleton; defense response to fungus; enzyme binding; enzyme binding; intracellular; protein binding", "XrefStatus" : "", "XrefDatasource" : "", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFAFAF|BFBFFF", "TFeActingComplex" : "", "SourcePathway" : "" }, "position" : { "x" : 3746.822021484375, "y" : 2410.064208984375 }, "selected" : false }, { "data" : { "id" : "588716", "go_mf" : "molecular_function", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.205918279651, "PValueLDLRT0901317LDLR16wkHighFat" : 1.9815E-8, "adjPValLDLRT0901317LDLR16wkHighFat" : 7.38407E-7, "cytoscape_alias_list" : [ "230279" ], "id_original" : "230279", "logFCLDLR16wkHighFatLDLRChow" : 0.143121267214, "selected" : false, "canonicalName" : "6330416G13Rik", "xref" : "L:230279", "Degree" : 224, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : 0.008123762424, "PValueLDLR16wkHighFatLDLRChow" : 0.318005709715, "name" : "L:230279", "entrezId" : "230279", "adjPValLDLR16wkHighFatLDLRChow" : 0.654994627983, "entrez" : "230279", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.954690931439, "shared_name" : "L:230279", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.991282986604, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.449138123656, "SUID" : 588716, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.151854724881, "logFCLDLRT0901317LDLR16wkHighFat" : 0.868183846193, "label" : "6330416G13Rik", "go_all" : "biological_process; cellular_component; integral to membrane; membrane; molecular_function" }, "position" : { "x" : 3582.7001953125, "y" : 2330.40478515625 }, "selected" : false }, { "data" : { "id" : "588496", "go_mf" : "ATP binding; catalytic activity; cytoskeletal protein binding; metal ion binding; nucleotide binding; protein complex scaffold; protein homodimerization activity; receptor binding; transferase activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : -0.068098833791, "PValueLDLRT0901317LDLR16wkHighFat" : 0.004340484712, "red_GO" : "primary metabolic", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.020868654832, "cytoscape_alias_list" : [ "268566" ], "id_original" : "268566", "logFCLDLR16wkHighFatLDLRChow" : -0.202800505754, "selected" : false, "canonicalName" : "Gphn", "xref" : "L:268566", "Degree" : 264, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : 0.185530724199, "PValueLDLR16wkHighFatLDLRChow" : 0.247107846351, "name" : "L:268566", "entrezId" : "268566", "adjPValLDLR16wkHighFatLDLRChow" : 0.47098444298, "entrez" : "268566", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.096252244855, "shared_name" : "L:268566", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.488842003935, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.773861598169, "SUID" : 588496, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.552016647712, "logFCLDLRT0901317LDLR16wkHighFat" : -0.448215602664, "label" : "Gphn", "go_all" : "ATP binding; catalytic activity; cell junction; cytoplasm; cytoskeletal protein binding; cytoskeleton; establishment of protein localization; establishment of synaptic specificity at neuromuscular junction; extrinsic to plasma membrane; inhibitory synapse; intracellular; membrane; metabolic process; metal ion binding; molybdopterin cofactor biosynthetic process; Mo-molybdopterin cofactor biosynthetic process; nucleotide binding; plasma membrane; postsynaptic membrane; protein complex scaffold; protein homodimerization activity; protein homooligomerization; receptor binding; synapse; transferase activity" }, "position" : { "x" : 2890.32470703125, "y" : 2020.2738037109375 }, "selected" : false }, { "data" : { "id" : "588358", "go_mf" : "25-hydroxycholesterol 7alpha-hydroxylase activity; electron carrier activity; heme binding; iron ion binding; metal ion binding; monooxygenase activity; oxidoreductase activity; oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen; oxysterol 7-alpha-hydroxylase activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : -0.665585499881, "PValueLDLRT0901317LDLR16wkHighFat" : 7.5075E-7, "goBP" : "oxidation-reduction process;lipid metabolic process;bile acid biosynthetic process;digestion;memory;circadian rhythm;steroid metabolic process;cholesterol metabolic process;negative regulation of estrogen receptor signaling pathway;positive regulation of epithelial cell proliferation;prostate gland epithelium morphogenesis", "GraphId" : "e9463; db6f4; ffcc4; d2c0e", "goids" : "GO:0055114;GO:0006629;GO:0006699;GO:0007586;GO:0007613;GO:0007623;GO:0008202;GO:0008203;GO:0033147;GO:0050679;GO:0060740;GO:0016020;GO:0005783;GO:0005789;GO:0005792;GO:0009055;GO:0004497;GO:0046872;GO:0005506;GO:0016491;GO:0008396;GO:0008396;GO:0020037;GO:0033783", "red_GO" : "immune related", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 1.7362199E-5, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=A6A6FF|AAAAFF", "XrefId" : "13123", "cytoscape_alias_list" : [ "13123" ], "id_original" : "13123", "logFCLDLR16wkHighFatLDLRChow" : -0.696888503357, "selected" : false, "canonicalName" : "Cyp7b1", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=A6A6FF|1A1AFF", "identifier" : "L:13123", "xref" : "L:13123", "Degree" : 450, "module" : "red", "kwalksLifeStylered" : 0.1809655, "kwalksT0901317purple" : 0.0368413, "logFCLDLRLifeStyleLDLR16wkHighFat" : 0.681155386486, "PValueLDLR16wkHighFatLDLRChow" : 0.04340728129, "kwalksFromModule_T0901317_purple" : "module.below.cutoff", "name" : "L:13123", "entrezId" : "13123", "adjPValLDLR16wkHighFatLDLRChow" : 0.245971114723, "entrez" : "13123", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.048264316923, "shared_name" : "L:13123", "ObjectType" : "DATANODE", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.376303742155, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.240745944228, "SUID" : 588358, "SourceDir" : "Mmu-KEGG_20110518", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.05351951043, "kwalksFromModule_LifeStyle_red" : "module.above.cutoff", "logFCLDLRT0901317LDLR16wkHighFat" : -1.795934642448, "label" : "Cyp7b1", "go_all" : "25-hydroxycholesterol 7alpha-hydroxylase activity; bile acid biosynthetic process; cholesterol metabolic process; circadian rhythm; digestion; electron carrier activity; endoplasmic reticulum; heme binding; iron ion binding; lipid metabolic process; membrane; memory; metal ion binding; microsome; monooxygenase activity; negative regulation of intracellular estrogen receptor signaling pathway; oxidation-reduction process; oxidoreductase activity; oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen; oxysterol 7-alpha-hydroxylase activity; positive regulation of epithelial cell proliferation; prostate gland epithelium morphogenesis; steroid metabolic process", "XrefStatus" : "mapped", "XrefDatasource" : "Entrez Gene", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=A6A6FF|FFA8A8", "TFeActingComplex" : "", "SourcePathway" : "mmu_Primary bile acid biosynthesis.gpml; mmu_Steroid hormone biosynthesis.gpml" }, "position" : { "x" : 1638.111572265625, "y" : 2139.63623046875 }, "selected" : false }, { "data" : { "id" : "588244", "go_mf" : "glycolipid binding; glycolipid transporter activity; lipid binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.29934699073, "PValueLDLRT0901317LDLR16wkHighFat" : 2.152E-9, "goBP" : "NA", "GraphId" : "NA", "goids" : "NA", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 1.01008E-7, "XrefId" : "NA", "cytoscape_alias_list" : [ "56356" ], "id_original" : "56356", "logFCLDLR16wkHighFatLDLRChow" : 0.210615150944, "selected" : false, "canonicalName" : "NA", "identifier" : "NA", "xref" : "L:56356", "Degree" : 305, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.336506241716, "PValueLDLR16wkHighFatLDLRChow" : 0.116428624936, "name" : "L:56356", "entrezId" : "56356", "adjPValLDLR16wkHighFatLDLRChow" : 0.413482784874, "moduleMembership" : 0.913929956712, "entrez" : "NA", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.012931230665, "shared_name" : "L:56356", "ObjectType" : "NA", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.211797744039, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.149246498768, "SUID" : 588244, "SourceDir" : "NA", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.026554222533, "logFCLDLRT0901317LDLR16wkHighFat" : 0.873030370437, "label" : "Gltp", "go_all" : "cellular_component; cytoplasm; glycolipid binding; glycolipid transport; glycolipid transporter activity; lipid binding; lipid transport; transport", "XrefStatus" : "NA", "XrefDatasource" : "NA", "TFeActingComplex" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.3001045 }, "position" : { "x" : 3484.927001953125, "y" : 1768.0469970703125 }, "selected" : false }, { "data" : { "id" : "589400", "go_mf" : "receptor activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.237105610988, "PValueLDLRT0901317LDLR16wkHighFat" : 9.9562396E-5, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.001132117313, "cytoscape_alias_list" : [ "16154" ], "id_original" : "16154", "logFCLDLR16wkHighFatLDLRChow" : 0.293659633948, "selected" : false, "canonicalName" : "Il10ra", "xref" : "L:16154", "Degree" : 188, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.297928104115, "PValueLDLR16wkHighFatLDLRChow" : 0.055063534299, "name" : "L:16154", "entrezId" : "16154", "adjPValLDLR16wkHighFatLDLRChow" : 0.278882170818, "entrez" : "16154", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.051684088644, "shared_name" : "L:16154", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.387224382092, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.395288768019, "SUID" : 589400, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.120250633741, "logFCLDLRT0901317LDLR16wkHighFat" : 0.612809835219, "label" : "Il10ra", "go_all" : "cytoplasm; integral to membrane; membrane; receptor activity" }, "position" : { "x" : 4249.12744140625, "y" : 2138.96484375 }, "selected" : false }, { "data" : { "id" : "588581", "go_mf" : "molecular_function", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.384312055383, "PValueLDLRT0901317LDLR16wkHighFat" : 4.0E-12, "goBP" : "", "GraphId" : "", "goids" : "GO:0008150;GO:0016020;GO:0005739;GO:0016021;GO:0005575;GO:0005741;GO:0003674", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 3.65E-10, "XrefId" : "", "cytoscape_alias_list" : [ "20621" ], "id_original" : "20621", "logFCLDLR16wkHighFatLDLRChow" : 0.471312248176, "selected" : false, "canonicalName" : "NA", "identifier" : "L:20621", "xref" : "L:20621", "Degree" : 420, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.224175267938, "PValueLDLR16wkHighFatLDLRChow" : 0.001079897652, "name" : "L:20621", "entrezId" : "20621", "adjPValLDLR16wkHighFatLDLRChow" : 0.028718348974, "moduleMembership" : 0.902244221059, "entrez" : "20621", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.112672763206, "shared_name" : "L:20621", "ObjectType" : "", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.520166026362, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.058283689691, "SUID" : 588581, "SourceDir" : "", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.007182614182, "logFCLDLRT0901317LDLR16wkHighFat" : 1.100773710024, "label" : "Snn", "go_all" : "biological_process; cellular_component; integral to membrane; membrane; mitochondrial outer membrane; mitochondrion; molecular_function", "XrefStatus" : "", "XrefDatasource" : "", "TFeActingComplex" : "", "SourcePathway" : "", "kwalksFenofibratered" : 0.2918561 }, "position" : { "x" : 4260.0341796875, "y" : 2103.862060546875 }, "selected" : false }, { "data" : { "id" : "588113", "go_mf" : "ATP binding; glycosaminoglycan binding; kinase activity; metal ion binding; mitogen-activated protein kinase kinase kinase binding; nucleotide binding; protein binding; protein kinase activity; protein serine/threonine kinase activity; receptor activity; receptor signaling protein serine/threonine kinase activity; SMAD binding; SMAD binding; transferase activity; transferase activity, transferring phosphorus-containing groups; transforming growth factor beta-activated receptor activity; transforming growth factor beta binding; transforming growth factor beta receptor activity, type II; transmembrane receptor protein serine/threonine kinase activity; type III transforming growth factor beta receptor binding; type I transforming growth factor beta receptor binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.040810929014, "PValueLDLRT0901317LDLR16wkHighFat" : 0.232784626912, "red_GO" : "immune related", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.348512274824, "cytoscape_alias_list" : [ "21813" ], "id_original" : "21813", "logFCLDLR16wkHighFatLDLRChow" : 0.174393629737, "selected" : false, "canonicalName" : "Tgfbr2", "xref" : "L:21813", "Degree" : 180, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.097918755017, "PValueLDLR16wkHighFatLDLRChow" : 0.34884862962, "name" : "L:21813", "entrezId" : "21813", "adjPValLDLR16wkHighFatLDLRChow" : 0.647474708151, "entrez" : "21813", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.573178546408, "shared_name" : "L:21813", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.863362357201, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.693419314049, "SUID" : 588113, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.387184912635, "logFCLDLRT0901317LDLR16wkHighFat" : 0.608366988634, "label" : "Tgfbr2", "go_all" : "activation of protein kinase activity; apoptotic process; ATP binding; brain development; bronchus development; bronchus morphogenesis; cartilage development; caveola; cell differentiation; cell surface; common-partner SMAD protein phosphorylation; cytoplasm; cytosol; embryonic cranial skeleton morphogenesis; embryonic hemopoiesis; external side of plasma membrane; external side of plasma membrane; gastrulation; glycosaminoglycan binding; heart development; integral to membrane; integral to plasma membrane; in utero embryonic development; kinase activity; lung development; lung lobe morphogenesis; lung morphogenesis; mammary gland morphogenesis; membrane; membrane fraction; metal ion binding; mitogen-activated protein kinase kinase kinase binding; myeloid dendritic cell differentiation; negative regulation of cardiac muscle cell proliferation; negative regulation of cell proliferation; nucleotide binding; organ morphogenesis; palate development; pathway-restricted SMAD protein phosphorylation; patterning of blood vessels; peptidyl-serine phosphorylation; peptidyl-threonine phosphorylation; phosphorylation; plasma membrane; positive regulation of B cell tolerance induction; positive regulation of mesenchymal cell proliferation; positive regulation of NK T cell differentiation; positive regulation of reactive oxygen species metabolic process; positive regulation of smooth muscle cell proliferation; positive regulation of T cell tolerance induction; positive regulation of tolerance induction to self antigen; protein binding; protein kinase activity; protein phosphorylation; protein phosphorylation; protein serine/threonine kinase activity; receptor activity; receptor complex; receptor-mediated endocytosis; receptor signaling protein serine/threonine kinase activity; regulation of cell proliferation; regulation of growth; response to cholesterol; response to cholesterol; response to drug; SMAD binding; SMAD binding; smoothened signaling pathway; trachea formation; trachea morphogenesis; transferase activity; transferase activity, transferring phosphorus-containing groups; transforming growth factor beta-activated receptor activity; transforming growth factor beta binding; transforming growth factor beta receptor activity, type II; transforming growth factor beta receptor signaling pathway; transmembrane receptor protein serine/threonine kinase activity; transmembrane receptor protein serine/threonine kinase signaling pathway; type III transforming growth factor beta receptor binding; type I transforming growth factor beta receptor binding; vasculogenesis" }, "position" : { "x" : 2047.59228515625, "y" : 1660.19580078125 }, "selected" : false }, { "data" : { "id" : "589030", "go_mf" : "cholesterol binding; cholesterol O-acyltransferase activity; fatty-acyl-CoA binding; O-acyltransferase activity; sterol O-acyltransferase activity; sterol O-acyltransferase activity; transferase activity; transferase activity, transferring acyl groups", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.186206570972, "PValueLDLRT0901317LDLR16wkHighFat" : 2.6606325E-4, "red_GO" : "primary metabolic", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.002622609317, "cytoscape_alias_list" : [ "20652" ], "id_original" : "20652", "logFCLDLR16wkHighFatLDLRChow" : 0.548060106525, "selected" : false, "canonicalName" : "Soat1", "xref" : "L:20652", "Degree" : 229, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.398651473765, "PValueLDLR16wkHighFatLDLRChow" : 0.001384971431, "name" : "L:20652", "entrezId" : "20652", "adjPValLDLR16wkHighFatLDLRChow" : 0.033819970068, "entrez" : "20652", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.018622568891, "shared_name" : "L:20652", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.254217463876, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.595458243388, "SUID" : 589030, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.266706319443, "logFCLDLRT0901317LDLR16wkHighFat" : 0.629697665563, "label" : "Soat1", "go_all" : "cholesterol binding; cholesterol efflux; cholesterol esterification; cholesterol metabolic process; cholesterol metabolic process; cholesterol O-acyltransferase activity; cholesterol storage; endoplasmic reticulum; endoplasmic reticulum membrane; fatty-acyl-CoA binding; integral to membrane; lipid metabolic process; macrophage derived foam cell differentiation; membrane; microsome; microsome; O-acyltransferase activity; positive regulation of amyloid precursor protein biosynthetic process; steroid metabolic process; sterol O-acyltransferase activity; sterol O-acyltransferase activity; transferase activity; transferase activity, transferring acyl groups; very-low-density lipoprotein particle assembly" }, "position" : { "x" : 2890.32470703125, "y" : 1594.458984375 }, "selected" : false }, { "data" : { "id" : "587759", "go_mf" : "GTP binding; nucleotide binding; TPR domain binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.173253188898, "PValueLDLRT0901317LDLR16wkHighFat" : 9.784012E-6, "red_GO" : "immune related", "adjPValLDLRT0901317LDLR16wkHighFat" : 1.4448098E-4, "cytoscape_alias_list" : [ "235442" ], "id_original" : "235442", "logFCLDLR16wkHighFatLDLRChow" : 0.249540598398, "selected" : false, "canonicalName" : "Rab8b", "xref" : "L:235442", "Degree" : 338, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.222848828916, "PValueLDLR16wkHighFatLDLRChow" : 0.101518069713, "name" : "L:235442", "entrezId" : "235442", "adjPValLDLR16wkHighFatLDLRChow" : 0.350174295511, "entrez" : "235442", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.136872979827, "shared_name" : "L:235442", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.535275072061, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.546188266478, "SUID" : 587759, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.226589210592, "logFCLDLRT0901317LDLR16wkHighFat" : 0.720274392125, "label" : "Rab8b", "go_all" : "adherens junction organization; cell tip; cytoplasmic vesicle; GTP binding; intracellular; membrane; mitochondrion; nucleotide binding; perinuclear region of cytoplasm; plasma membrane; positive regulation of cell projection organization; positive regulation of corticotropin secretion; protein transport; small GTPase mediated signal transduction; TPR domain binding; transport" }, "position" : { "x" : 1823.985595703125, "y" : 1567.5748291015625 }, "selected" : false }, { "data" : { "id" : "588104", "go_mf" : "hydrolase activity; metal ion binding; metalloendopeptidase activity; metalloendopeptidase activity; metallopeptidase activity; peptidase activity; protein binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : -0.125601744717, "PValueLDLRT0901317LDLR16wkHighFat" : 0.176294388869, "red_GO" : "immune related", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.217635489254, "cytoscape_alias_list" : [ "12153" ], "id_original" : "12153", "logFCLDLR16wkHighFatLDLRChow" : -0.277362589631, "selected" : false, "canonicalName" : "Bmp1", "xref" : "L:12153", "Degree" : 371, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : 0.161741026873, "PValueLDLR16wkHighFatLDLRChow" : 0.173097014055, "name" : "L:12153", "entrezId" : "12153", "adjPValLDLR16wkHighFatLDLRChow" : 0.311772976348, "entrez" : "12153", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.298309820713, "shared_name" : "L:12153", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.687925149238, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.701209390644, "SUID" : 588104, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.491409139059, "logFCLDLRT0901317LDLR16wkHighFat" : -0.457366945357, "label" : "Bmp1", "go_all" : "extracellular space; hydrolase activity; membrane-bounded vesicle; metabolic process; metabolic process; metal ion binding; metalloendopeptidase activity; metalloendopeptidase activity; metallopeptidase activity; peptidase activity; positive regulation of cartilage development; protein binding; proteolysis" }, "position" : { "x" : 2105.74658203125, "y" : 2027.366943359375 }, "selected" : false }, { "data" : { "id" : "588813", "go_mf" : "calcium-independent phospholipase A2 activity; calcium-independent phospholipase A2 activity; hydrolase activity; O-acyltransferase activity; transferase activity; transferase activity, transferring acyl groups", "logFCLDLRFenofibrateLDLR16wkHighFat" : -0.02636199413, "PValueLDLRT0901317LDLR16wkHighFat" : 0.0, "red_GO" : "primary metabolic", "adjPValLDLRT0901317LDLR16wkHighFat" : 2.9E-11, "cytoscape_alias_list" : [ "192654" ], "id_original" : "192654", "logFCLDLR16wkHighFatLDLRChow" : 0.431172655623, "selected" : false, "canonicalName" : "Pla2g15", "xref" : "L:192654", "Degree" : 264, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.113315339008, "PValueLDLR16wkHighFatLDLRChow" : 6.88486064E-4, "name" : "L:192654", "entrezId" : "192654", "adjPValLDLR16wkHighFatLDLRChow" : 0.02134058161, "entrez" : "192654", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.359830204678, "shared_name" : "L:192654", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.751628755005, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.941977807107, "SUID" : 588813, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.830984237441, "logFCLDLRT0901317LDLR16wkHighFat" : 1.037831427681, "label" : "Pla2g15", "go_all" : "calcium-independent phospholipase A2 activity; calcium-independent phospholipase A2 activity; ceramide metabolic process; extracellular region; fatty acid metabolic process; hydrolase activity; intracellular membrane-bounded organelle; lipid metabolic process; lysosome; mitochondrion; O-acyltransferase activity; phosphatidylcholine metabolic process; soluble fraction; transferase activity; transferase activity, transferring acyl groups" }, "position" : { "x" : 2542.44677734375, "y" : 1774.71484375 }, "selected" : false }, { "data" : { "id" : "587966", "go_mf" : "electron carrier activity; heme binding; metal ion binding; oxidoreductase activity; protein binding; protein heterodimerization activity; SH3 domain binding; superoxide-generating NADPH oxidase activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.2949242569, "PValueLDLRT0901317LDLR16wkHighFat" : 1.09E-10, "goBP" : "positive regulation of endothelial cell proliferation;negative regulation of glomerular filtration by angiotensin;oxidation-reduction process;electron transport chain;superoxide metabolic process;transport;inflammatory response;regulation of blood pressure;smooth muscle hypertrophy;cytochrome complex assembly;positive regulation of cell growth;superoxide anion generation;innate immune response;respiratory burst;hydrogen peroxide biosynthetic process;cellular response to organic substance", "GraphId" : "", "kwalksFromModule_T0901317_red" : "module.below.cutoff", "goids" : "GO:0001938;GO:0003106;GO:0055114;GO:0022900;GO:0006801;GO:0006810;GO:0006954;GO:0008217;GO:0014895;GO:0017004;GO:0030307;GO:0042554;GO:0045087;GO:0045730;GO:0050665;GO:0071310;GO:0016020;GO:0005739;GO:0005737;GO:0005794;GO:0016324;GO:0030425;GO:0043020;GO:0043025;GO:0097038;GO:0009055;GO:0005515;GO:0046872;GO:0016491;GO:0016175;GO:0017124;GO:0020037;GO:0046982", "red_GO" : "immune related", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 7.432E-9, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFC5C5|FFD9D9", "XrefId" : "", "cytoscape_alias_list" : [ "13057" ], "id_original" : "13057", "logFCLDLR16wkHighFatLDLRChow" : 0.450538899342, "selected" : false, "canonicalName" : "Cyba", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFC5C5|FF6262", "identifier" : "L:13057", "xref" : "L:13057", "Degree" : 370, "module" : "red", "kwalksLifeStylered" : 0.1533323, "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.513227191471, "PValueLDLR16wkHighFatLDLRChow" : 0.009494289281, "name" : "L:13057", "entrezId" : "13057", "adjPValLDLR16wkHighFatLDLRChow" : 0.103398333264, "moduleMembership" : 0.963209863628, "entrez" : "13057", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.003274785616, "shared_name" : "L:13057", "ObjectType" : "", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.113022709305, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.326220043237, "SUID" : 587966, "SourceDir" : "", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.086585429256, "kwalksFromModule_LifeStyle_red" : "module.below.cutoff", "kwalksT0901317red" : 0.1281442, "logFCLDLRT0901317LDLR16wkHighFat" : 1.224406032069, "label" : "Cyba", "go_all" : "apical plasma membrane; cellular response to organic substance; cytochrome complex assembly; cytoplasm; dendrite; electron carrier activity; electron transport chain; Golgi apparatus; heme binding; hydrogen peroxide biosynthetic process; inflammatory response; innate immune response; membrane; metal ion binding; mitochondrion; NADPH oxidase complex; negative regulation of glomerular filtration by angiotensin; neuronal cell body; oxidation-reduction process; oxidoreductase activity; perinuclear endoplasmic reticulum; positive regulation of cell growth; positive regulation of endothelial cell proliferation; protein binding; protein heterodimerization activity; regulation of blood pressure; respiratory burst; SH3 domain binding; smooth muscle hypertrophy; superoxide anion generation; superoxide-generating NADPH oxidase activity; superoxide metabolic process; transport", "XrefStatus" : "", "XrefDatasource" : "", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFC5C5|BDBDFF", "TFeActingComplex" : "", "SourcePathway" : "" }, "position" : { "x" : 1680.421142578125, "y" : 2165.5634765625 }, "selected" : false }, { "data" : { "id" : "588707", "go_mf" : "cytokine activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : -0.143080756688, "PValueLDLRT0901317LDLR16wkHighFat" : 0.008975503924, "red_GO" : "immune + inflammation related", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.046645332027, "cytoscape_alias_list" : [ "17329" ], "id_original" : "17329", "logFCLDLR16wkHighFatLDLRChow" : 0.616079750697, "selected" : false, "canonicalName" : "Cxcl9", "xref" : "L:17329", "Degree" : 79, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.600382063578, "PValueLDLR16wkHighFatLDLRChow" : 0.051126176149, "name" : "L:17329", "entrezId" : "17329", "adjPValLDLR16wkHighFatLDLRChow" : 0.268974499423, "entrez" : "17329", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.05722393364, "shared_name" : "L:17329", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.399601945122, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.864362101056, "SUID" : 588707, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.647699925089, "logFCLDLRT0901317LDLR16wkHighFat" : 0.831502560409, "label" : "Cxcl9", "go_all" : "cytokine activity; defense response to virus; external side of plasma membrane; extracellular region; extracellular space" }, "position" : { "x" : 724.691162109375, "y" : 1720.9620361328125 }, "selected" : false }, { "data" : { "id" : "589344", "go_mf" : "protein homodimerization activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.291926360453, "PValueLDLRT0901317LDLR16wkHighFat" : 4.56126E-7, "goBP" : "complement activation, classical pathway;innate immune response;inner ear development", "GraphId" : "e06", "kwalksFromModule_T0901317_red" : "module.below.cutoff", "goids" : "GO:0006958;GO:0045087;GO:0048839;GO:0005576;GO:0005581;GO:0005602;GO:0042803", "red_GO" : "immune + inflammation related", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 1.1367728E-5, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFD9D9|FFD9D9", "XrefId" : "12260", "cytoscape_alias_list" : [ "12260" ], "id_original" : "12260", "logFCLDLR16wkHighFatLDLRChow" : 0.294870460359, "selected" : false, "canonicalName" : ", C1qb", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFD9D9|FF8787", "identifier" : "L:12260", "xref" : "L:12260", "Degree" : 288, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.323809170189, "PValueLDLR16wkHighFatLDLRChow" : 0.09201880682, "name" : "L:12260", "entrezId" : "12260", "adjPValLDLR16wkHighFatLDLRChow" : 0.364892684728, "moduleMembership" : 0.962094129312, "entrez" : "12260", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.06466037316, "shared_name" : "L:12260", "ObjectType" : "DATANODE", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.419840503521, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.345086003342, "SUID" : 589344, "SourceDir" : "wikipathways_analysis", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.095266559856, "kwalksT0901317red" : 0.1192935, "logFCLDLRT0901317LDLR16wkHighFat" : 0.933750014707, "label" : "C1qb", "go_all" : "collagen; complement activation, classical pathway; complement component C1 complex; extracellular region; innate immune response; inner ear development; protein homodimerization activity", "XrefStatus" : "mapped", "XrefDatasource" : "Entrez Gene", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFD9D9|D5D5FF", "TFeActingComplex" : "", "SourcePathway" : "Mm_Complement_and_Coagulation_Cascades_WP449_41301.gpml" }, "position" : { "x" : 1091.015869140625, "y" : 1839.9881591796875 }, "selected" : false }, { "data" : { "id" : "587817", "go_mf" : "guanyl-nucleotide exchange factor activity; metal ion binding; phospholipid binding; Rho guanyl-nucleotide exchange factor activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.020458285367, "PValueLDLRT0901317LDLR16wkHighFat" : 9.91512417E-4, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.007851220681, "cytoscape_alias_list" : [ "26382" ], "id_original" : "26382", "logFCLDLR16wkHighFatLDLRChow" : 0.301075047764, "selected" : false, "canonicalName" : "Fgd2", "xref" : "L:26382", "Degree" : 95, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.165716683845, "PValueLDLR16wkHighFatLDLRChow" : 0.077730988629, "name" : "L:26382", "entrezId" : "26382", "adjPValLDLR16wkHighFatLDLRChow" : 0.335823496477, "entrez" : "26382", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.329034208628, "shared_name" : "L:26382", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.734998858647, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.96855894541, "SUID" : 587817, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.903870679336, "logFCLDLRT0901317LDLR16wkHighFat" : 0.57280404791, "label" : "Fgd2", "go_all" : "cell projection; cytoplasm; cytoskeleton; endosome; guanyl-nucleotide exchange factor activity; intracellular; membrane; metal ion binding; nucleus; phospholipid binding; plasma membrane; regulation of catalytic activity; regulation of Rho protein signal transduction; Rho guanyl-nucleotide exchange factor activity" }, "position" : { "x" : 4065.8818359375, "y" : 1627.910888671875 }, "selected" : false }, { "data" : { "id" : "588057", "go_mf" : "receptor activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.035781464154, "PValueLDLRT0901317LDLR16wkHighFat" : 0.003828064213, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.0237460671, "cytoscape_alias_list" : [ "217305" ], "id_original" : "217305", "logFCLDLR16wkHighFatLDLRChow" : 0.109805384184, "selected" : false, "canonicalName" : "4732429D16Rik", "xref" : "L:217305", "Degree" : 64, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.237693546939, "PValueLDLR16wkHighFatLDLRChow" : 0.402182929788, "name" : "L:217305", "entrezId" : "217305", "adjPValLDLR16wkHighFatLDLRChow" : 0.723111568161, "entrez" : "217305", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.071514402368, "shared_name" : "L:217305", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.439638930428, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.924742008689, "SUID" : 588057, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.784545017625, "logFCLDLRT0901317LDLR16wkHighFat" : 0.386242971325, "label" : "4732429D16Rik", "go_all" : "integral to membrane; membrane; plasma membrane; receptor activity" }, "position" : { "x" : 4267.8828125, "y" : 1921.5985107421875 }, "selected" : false }, { "data" : { "id" : "588490", "go_mf" : "GTPase activator activity; molecular_function", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.208178313199, "PValueLDLRT0901317LDLR16wkHighFat" : 8.8809E-6, "adjPValLDLRT0901317LDLR16wkHighFat" : 1.44876596E-4, "cytoscape_alias_list" : [ "226652" ], "id_original" : "226652", "logFCLDLR16wkHighFatLDLRChow" : 0.241664769517, "selected" : false, "canonicalName" : "Arhgap30", "xref" : "L:226652", "Degree" : 177, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.026757623116, "PValueLDLR16wkHighFatLDLRChow" : 0.098599358252, "name" : "L:226652", "entrezId" : "226652", "adjPValLDLR16wkHighFatLDLRChow" : 0.378478857982, "entrez" : "226652", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.853949679924, "shared_name" : "L:226652", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.96780447121, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.452595909769, "SUID" : 588490, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.154089160308, "logFCLDLRT0901317LDLR16wkHighFat" : 0.677974593465, "label" : "Arhgap30", "go_all" : "cytoplasmic vesicle; GTPase activator activity; intracellular; molecular_function; positive regulation of GTPase activity; signal transduction" }, "position" : { "x" : 3582.7001953125, "y" : 1659.145263671875 }, "selected" : false }, { "data" : { "id" : "588233", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.240275679044, "PValueLDLRT0901317LDLR16wkHighFat" : 7.5049E-8, "goBP" : "transport", "GraphId" : "NA", "goids" : "GO:0006810;GO:0016020;GO:0005764;GO:0016021;GO:0005887;GO:0005765", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 2.341695E-6, "XrefId" : "NA", "cytoscape_alias_list" : [ "16792" ], "id_original" : "16792", "logFCLDLR16wkHighFatLDLRChow" : 0.737662099915, "selected" : false, "canonicalName" : "NA", "identifier" : "L:16792", "xref" : "L:16792", "Degree" : 431, "module" : "red", "kwalksLifeStylered" : 0.1488856, "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.478429856025, "PValueLDLR16wkHighFatLDLRChow" : 1.9699113E-5, "name" : "L:16792", "entrezId" : "16792", "adjPValLDLR16wkHighFatLDLRChow" : 0.002294727836, "moduleMembership" : 0.956539583999, "entrez" : "16792", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.004526134519, "shared_name" : "L:16792", "ObjectType" : "NA", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.135242881848, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.44236003698, "SUID" : 588233, "SourceDir" : "NA", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.147963462797, "logFCLDLRT0901317LDLR16wkHighFat" : 0.955013852913, "label" : "Laptm5", "go_all" : "integral to membrane; integral to plasma membrane; lysosomal membrane; lysosome; membrane; transport", "XrefStatus" : "NA", "XrefDatasource" : "NA", "TFeActingComplex" : "", "SourcePathway" : "NA" }, "position" : { "x" : 3423.35205078125, "y" : 2049.7763671875 }, "selected" : false }, { "data" : { "id" : "588134", "go_mf" : "ATP binding; protein kinase activity; transferase activity, transferring phosphorus-containing groups", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.1857410191, "PValueLDLRT0901317LDLR16wkHighFat" : 7.777355E-5, "red_GO" : "primary metabolic", "adjPValLDLRT0901317LDLR16wkHighFat" : 9.17529515E-4, "cytoscape_alias_list" : [ "74568" ], "id_original" : "74568", "logFCLDLR16wkHighFatLDLRChow" : 0.642719060655, "selected" : false, "canonicalName" : "Mlkl", "xref" : "L:74568", "Degree" : 315, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.430211010494, "PValueLDLR16wkHighFatLDLRChow" : 1.04528025E-4, "name" : "L:74568", "entrezId" : "74568", "adjPValLDLR16wkHighFatLDLRChow" : 0.006628256953, "entrez" : "74568", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.008070039781, "shared_name" : "L:74568", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.172502624257, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.571975305859, "SUID" : 588134, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.246161062575, "logFCLDLRT0901317LDLR16wkHighFat" : 0.655445443823, "label" : "Mlkl", "go_all" : "ATP binding; protein kinase activity; protein phosphorylation; transferase activity, transferring phosphorus-containing groups" }, "position" : { "x" : 2641.721923828125, "y" : 2003.2689208984375 }, "selected" : false }, { "data" : { "id" : "588086", "go_mf" : "protein binding; protein complex binding; protein phosphatase binding; Rac GTPase binding; Rho GTPase binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.255498779601, "PValueLDLRT0901317LDLR16wkHighFat" : 3.103127E-6, "adjPValLDLRT0901317LDLR16wkHighFat" : 5.8724161E-5, "cytoscape_alias_list" : [ "29875" ], "id_original" : "29875", "logFCLDLR16wkHighFatLDLRChow" : 0.516605993488, "selected" : false, "canonicalName" : "Iqgap1", "xref" : "L:29875", "Degree" : 312, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.271249848798, "PValueLDLR16wkHighFatLDLRChow" : 0.003383950735, "name" : "L:29875", "entrezId" : "29875", "adjPValLDLR16wkHighFatLDLRChow" : 0.056673066303, "entrez" : "29875", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.118272560125, "shared_name" : "L:29875", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.529610037097, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.431006931475, "SUID" : 588086, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.140930181276, "logFCLDLRT0901317LDLR16wkHighFat" : 0.849553381572, "label" : "Iqgap1", "go_all" : "cell-cell junction; cell leading edge; cytoplasm; cytoplasm; lateral plasma membrane; membrane; midbody; neuron projection; nucleus; plasma membrane; protein binding; protein complex; protein complex binding; protein phosphatase binding; Rac GTPase binding; Rho GTPase binding" }, "position" : { "x" : 3529.115234375, "y" : 1709.3780517578125 }, "selected" : false }, { "data" : { "id" : "589225", "go_mf" : "beta-galactoside alpha-2,6-sialyltransferase activity; sialyltransferase activity; sialyltransferase activity; transferase activity; transferase activity, transferring glycosyl groups", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.063224280276, "PValueLDLRT0901317LDLR16wkHighFat" : 5.7587E-7, "red_GO" : "primary metabolic", "adjPValLDLRT0901317LDLR16wkHighFat" : 1.3868505E-5, "cytoscape_alias_list" : [ "20440" ], "id_original" : "20440", "logFCLDLR16wkHighFatLDLRChow" : 0.387591357814, "selected" : false, "canonicalName" : "St6gal1", "xref" : "L:20440", "Degree" : 275, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.243374100512, "PValueLDLR16wkHighFatLDLRChow" : 0.001859691013, "name" : "L:20440", "entrezId" : "20440", "adjPValLDLR16wkHighFatLDLRChow" : 0.040338621895, "entrez" : "20440", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.047507900624, "shared_name" : "L:20440", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.374271114928, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.841267195827, "SUID" : 589225, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.603459076026, "logFCLDLRT0901317LDLR16wkHighFat" : 0.64694210965, "label" : "St6gal1", "go_all" : "beta-galactoside alpha-2,6-sialyltransferase activity; extracellular region; Golgi apparatus; integral to Golgi membrane; integral to membrane; membrane; metabolic process; metabolic process; protein glycosylation; sialyltransferase activity; sialyltransferase activity; transferase activity; transferase activity, transferring glycosyl groups" }, "position" : { "x" : 2984.887451171875, "y" : 1682.7745361328125 }, "selected" : false }, { "data" : { "id" : "589236", "go_mf" : "endonuclease activity; hydrolase activity; nuclease activity; ribonuclease activity; ribonuclease activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.176222679599, "PValueLDLRT0901317LDLR16wkHighFat" : 3.80540048E-4, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.003524365608, "cytoscape_alias_list" : [ "93725" ], "id_original" : "93725", "logFCLDLR16wkHighFatLDLRChow" : 0.882472999027, "selected" : false, "canonicalName" : "Ear10", "xref" : "L:93725", "Degree" : 312, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.654306211921, "PValueLDLR16wkHighFatLDLRChow" : 1.97758613E-4, "name" : "L:93725", "entrezId" : "93725", "adjPValLDLR16wkHighFatLDLRChow" : 0.010231557905, "entrez" : "93725", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.00509685201, "shared_name" : "L:93725", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.142610795842, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.74469698047, "SUID" : 589236, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.442575224436, "logFCLDLRT0901317LDLR16wkHighFat" : 0.8399270408, "label" : "Ear10", "go_all" : "cellular_component; endonuclease activity; hydrolase activity; nuclease activity; nucleic acid phosphodiester bond hydrolysis; nucleic acid phosphodiester bond hydrolysis; nucleic acid phosphodiester bond hydrolysis; ribonuclease activity; ribonuclease activity" }, "position" : { "x" : 3929.2119140625, "y" : 2413.9892578125 }, "selected" : false }, { "data" : { "id" : "588461", "go_mf" : "electron carrier activity; heme binding; iron ion binding; isomerase activity; metal ion binding; monooxygenase activity; oxidoreductase activity; oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen; thromboxane-A synthase activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.120771269479, "PValueLDLRT0901317LDLR16wkHighFat" : 4.44706648E-4, "red_GO" : "immune related", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.00402934396, "cytoscape_alias_list" : [ "21391" ], "id_original" : "21391", "logFCLDLR16wkHighFatLDLRChow" : 0.329884822241, "selected" : false, "canonicalName" : "Tbxas1", "xref" : "L:21391", "Degree" : 288, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.369085907966, "PValueLDLR16wkHighFatLDLRChow" : 0.08490983329, "name" : "L:21391", "entrezId" : "21391", "adjPValLDLR16wkHighFatLDLRChow" : 0.298100542664, "entrez" : "21391", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.049289894051, "shared_name" : "L:21391", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.320645655306, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.750556040222, "SUID" : 588461, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.450852201194, "logFCLDLRT0901317LDLR16wkHighFat" : 0.577317555738, "label" : "Tbxas1", "go_all" : "cellular chloride ion homeostasis; electron carrier activity; endoplasmic reticulum; fatty acid biosynthetic process; heme binding; integral to membrane; iron ion binding; isomerase activity; lipid biosynthetic process; membrane; metal ion binding; microsome; monooxygenase activity; oxidation-reduction process; oxidoreductase activity; oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen; positive regulation of vasoconstriction; prostaglandin biosynthetic process; thromboxane-A synthase activity" }, "position" : { "x" : 2009.859619140625, "y" : 1627.968994140625 }, "selected" : false }, { "data" : { "id" : "588620", "go_mf" : "molecular_function", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.130567885792, "PValueLDLRT0901317LDLR16wkHighFat" : 0.102399647361, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.279136220211, "cytoscape_alias_list" : [ "99543" ], "id_original" : "99543", "logFCLDLR16wkHighFatLDLRChow" : 0.77158693823, "selected" : false, "canonicalName" : "Olfml3", "xref" : "L:99543", "Degree" : 154, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.794887545677, "PValueLDLR16wkHighFatLDLRChow" : 9.49643223E-4, "name" : "L:99543", "entrezId" : "99543", "adjPValLDLR16wkHighFatLDLRChow" : 0.026482014667, "entrez" : "99543", "PValueLDLRLifeStyleLDLR16wkHighFat" : 6.75063281E-4, "shared_name" : "L:99543", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.050041898451, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.824276176679, "SUID" : 588620, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.565972342147, "logFCLDLRT0901317LDLR16wkHighFat" : 0.373659980758, "label" : "Olfml3", "go_all" : "biological_process; cellular_component; extracellular region; molecular_function; multicellular organismal development" }, "position" : { "x" : 3505.758056640625, "y" : 1737.7611083984375 }, "selected" : false }, { "data" : { "id" : "588920", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.331149910788, "PValueLDLRT0901317LDLR16wkHighFat" : 1.89598E-7, "red_GO" : "immune + inflammation related", "adjPValLDLRT0901317LDLR16wkHighFat" : 5.20351E-6, "cytoscape_alias_list" : [ "12262" ], "id_original" : "12262", "logFCLDLR16wkHighFatLDLRChow" : 0.023338685074, "selected" : false, "canonicalName" : "C1qc", "xref" : "L:12262", "Degree" : 224, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.359073301299, "PValueLDLR16wkHighFatLDLRChow" : 0.889762042356, "name" : "L:12262", "entrezId" : "12262", "adjPValLDLR16wkHighFatLDLRChow" : 0.967662370545, "entrez" : "12262", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.034895195329, "shared_name" : "L:12262", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.329886723159, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.234088017767, "SUID" : 588920, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.051339458537, "logFCLDLRT0901317LDLR16wkHighFat" : 0.938233000491, "label" : "C1qc", "go_all" : "collagen; extracellular region; negative regulation of granulocyte differentiation; negative regulation of macrophage differentiation" }, "position" : { "x" : 1043.685302734375, "y" : 1905.1334228515625 }, "selected" : false }, { "data" : { "id" : "589357", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.491525738763, "PValueLDLRT0901317LDLR16wkHighFat" : 5.01287818E-4, "goBP" : "NA", "GraphId" : "NA", "goids" : "NA", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.004461376472, "XrefId" : "NA", "cytoscape_alias_list" : [ "232670" ], "id_original" : "232670", "logFCLDLR16wkHighFatLDLRChow" : -0.769571128812, "selected" : false, "canonicalName" : "NA", "identifier" : "NA", "xref" : "L:232670", "Degree" : 151, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : 0.592096474745, "PValueLDLR16wkHighFatLDLRChow" : 8.2372601E-4, "name" : "L:232670", "entrezId" : "232670", "adjPValLDLR16wkHighFatLDLRChow" : 0.024066686926, "moduleMembership" : -0.846906794514, "entrez" : "NA", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.009280619251, "shared_name" : "L:232670", "ObjectType" : "NA", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.183120474716, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.162037622317, "SUID" : 589357, "SourceDir" : "NA", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.029963462145, "logFCLDLRT0901317LDLR16wkHighFat" : -0.802551271791, "label" : "Tspan33", "go_all" : "integral to membrane; membrane", "XrefStatus" : "NA", "XrefDatasource" : "NA", "TFeActingComplex" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.2958095 }, "position" : { "x" : 4176.8623046875, "y" : 2266.23193359375 }, "selected" : false }, { "data" : { "id" : "588242", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.215604292145, "PValueLDLRT0901317LDLR16wkHighFat" : 4.302499E-6, "red_GO" : "immune related", "adjPValLDLRT0901317LDLR16wkHighFat" : 7.7326973E-5, "cytoscape_alias_list" : [ "12522" ], "id_original" : "12522", "logFCLDLR16wkHighFatLDLRChow" : 0.514851442547, "selected" : false, "canonicalName" : "Cd83", "xref" : "L:12522", "Degree" : 366, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.513753158714, "PValueLDLR16wkHighFatLDLRChow" : 0.00720420926, "name" : "L:12522", "entrezId" : "12522", "adjPValLDLR16wkHighFatLDLRChow" : 0.087485246968, "entrez" : "12522", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.007324524002, "shared_name" : "L:12522", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.165146154035, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.581206976228, "SUID" : 588242, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.253557888611, "logFCLDLRT0901317LDLR16wkHighFat" : 0.911545553701, "label" : "Cd83", "go_all" : "external side of plasma membrane; integral to membrane; membrane; negative regulation of interleukin-4 production; positive regulation of CD4-positive, alpha-beta T cell differentiation; positive regulation of interleukin-10 production; positive regulation of interleukin-2 production; response to organic cyclic compound" }, "position" : { "x" : 1873.4544677734375, "y" : 2196.136962890625 }, "selected" : false }, { "data" : { "id" : "587905", "go_mf" : "GTPase activator activity; GTPase activator activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.200165336368, "PValueLDLRT0901317LDLR16wkHighFat" : 0.001256512828, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.008649912496, "cytoscape_alias_list" : [ "50778" ], "id_original" : "50778", "logFCLDLR16wkHighFatLDLRChow" : 0.223462109122, "selected" : false, "canonicalName" : "Rgs1", "xref" : "L:50778", "Degree" : 134, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.142538388839, "PValueLDLR16wkHighFatLDLRChow" : 0.446542857296, "name" : "L:50778", "entrezId" : "50778", "adjPValLDLR16wkHighFatLDLRChow" : 0.686132495731, "entrez" : "50778", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.687747810065, "shared_name" : "L:50778", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.84921682142, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.713317283321, "SUID" : 587905, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.426843674795, "logFCLDLRT0901317LDLR16wkHighFat" : 0.912205283746, "label" : "Rgs1", "go_all" : "cytoplasm; G-protein coupled receptor signaling pathway; GTPase activator activity; GTPase activator activity; negative regulation of signal transduction; plasma membrane; plasma membrane; positive regulation of GTPase activity; positive regulation of GTPase activity; termination of G-protein coupled receptor signaling pathway" }, "position" : { "x" : 4235.24365234375, "y" : 1816.5498046875 }, "selected" : false }, { "data" : { "id" : "588886", "go_mf" : "protein binding; sugar binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.600272575596, "PValueLDLRT0901317LDLR16wkHighFat" : 6.0E-11, "goBP" : "skeletal system development;extracellular matrix organization", "kwalksLifeStyledarkturquoise" : 0.2606951, "GraphId" : "", "kwalksFromModule_T0901317_red" : "module.above.cutoff", "kwalksFromModule_Fenofibrate_magenta" : "module.none", "kwalksLifeStyleyellow" : 0.3404304, "goids" : "GO:0001501;GO:0030198;GO:0005578;GO:0005634;GO:0005634;GO:0005737;GO:0005737;GO:0005743;GO:0005515;GO:0005529", "kwalksFenofibratedarkturquoise" : 0.1666386, "kwalksFenofibratemagenta" : 0.007363772, "kwalksFromModule_Fenofibrate_darkturquoise" : "module.below.cutoff", "kwalksFenofibrateroyalblue" : 0.2002314, "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 4.354E-9, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FF6A6A|FFB2B2", "XrefId" : "", "cytoscape_alias_list" : [ "16854" ], "id_original" : "16854", "logFCLDLR16wkHighFatLDLRChow" : 1.164278821673, "selected" : false, "canonicalName" : "NA", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FF6A6A|FF3333", "identifier" : "L:16854", "xref" : "L:16854", "Degree" : 479, "module" : "red", "kwalksFenofibratepurple" : 0.4553274, "kwalksLifeStylered" : 0.9435872, "kwalksT0901317purple" : 0.03564353, "kwalksFromModule_LifeStyle_yellow" : "module.none", "logFCLDLRLifeStyleLDLR16wkHighFat" : -1.067756461858, "PValueLDLR16wkHighFatLDLRChow" : 6.07726E-7, "name" : "L:16854", "entrezId" : "16854", "adjPValLDLR16wkHighFatLDLRChow" : 1.76983439E-4, "moduleMembership" : 0.974168437499, "entrez" : "16854", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "kwalksFromModule_LifeStyle_darkturquoise" : "module.none", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 3.901429E-6, "shared_name" : "L:16854", "ObjectType" : "", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.001690789695, "kwalksFromModule_Fenofibrate_purple" : "module.none", "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.058327694692, "SUID" : 588886, "kwalksLifeStylepurple" : 0.2776418, "SourceDir" : "", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.007191746153, "kwalksFromModule_LifeStyle_red" : "module.above.cutoff", "kwalksFromModule_Fenofibrate_yellow" : "module.below.cutoff", "kwalksT0901317red" : 0.2416336, "logFCLDLRT0901317LDLR16wkHighFat" : 1.599343376535, "label" : "Lgals3", "go_all" : "cytoplasm; cytoplasm; extracellular matrix organization; mitochondrial inner membrane; nucleus; nucleus; proteinaceous extracellular matrix; protein binding; skeletal system development; sugar binding", "XrefStatus" : "", "XrefDatasource" : "", "kwalksFromModule_Fenofibrate_royalblue" : "module.below.cutoff", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FF6A6A|7676FF", "TFeActingComplex" : "", "kwalksFromModule_LifeStyle_purple" : "module.none", "SourcePathway" : "", "kwalksFenofibratered" : 2.778589, "kwalksFenofibrateyellow" : 0.2807875 }, "position" : { "x" : 3484.927001953125, "y" : 2221.5029296875 }, "selected" : false }, { "data" : { "id" : "588049", "go_mf" : "beta-amyloid binding; cytokine binding; cytokine binding; cytokine receptor activity; cytokine receptor activity; MHC class II protein binding; nitric-oxide synthase binding; protein binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.233558989184, "PValueLDLRT0901317LDLR16wkHighFat" : 1.5893737E-4, "goBP" : "activation of MAPK activity;prostaglandin biosynthetic process;positive regulation of cytokine-mediated signaling pathway;positive regulation of dendritic cell antigen processing and presentation;negative regulation of peptide secretion;positive regulation of adaptive immune response;positive regulation of type 2 immune response;negative regulation of mature B cell apoptosis;defense response;signal transduction;protein complex assembly;intracellular protein transport;immune response;cell proliferation;immunoglobulin mediated immune response;cytokine-mediated signaling pathway;antigen processing and presentation;antigen processing and presentation of exogenous peptide antigen via MHC class II;positive regulation of B cell proliferation;macrophage migration inhibitory factor signaling pathway;negative regulation of apoptotic process;negative regulation of DNA damage response, signal transduction by p53 class mediator;positive thymic T cell selection;negative thymic T cell selection;positive regulation of innate immune response;negative regulation of T cell differentiation;positive regulation of T cell differentiation;positive regulation of fibroblast proliferation;positive regulation of peptidyl-tyrosine phosphorylation;chaperone mediated protein folding requiring cofactor;positive regulation of macrophage cytokine production;positive regulation of ERK1 and ERK2 cascade;positive regulation of neutrophil chemotaxis;positive regulation of chemokine (C-X-C motif) ligand 2 production", "GraphId" : "", "kwalksFromModule_T0901317_red" : "module.above.cutoff", "goids" : "GO:0000187;GO:0001516;GO:0001961;GO:0001961;GO:0002606;GO:0002792;GO:0002821;GO:0002830;GO:0002906;GO:0006952;GO:0007165;GO:0006461;GO:0006886;GO:0006886;GO:0006955;GO:0008283;GO:0016064;GO:0019221;GO:0019882;GO:0019882;GO:0019886;GO:0030890;GO:0035691;GO:0043066;GO:0043066;GO:0043518;GO:0043518;GO:0045059;GO:0045060;GO:0045089;GO:0045581;GO:0045582;GO:0048146;GO:0050731;GO:0050731;GO:0051085;GO:0051085;GO:0060907;GO:0070374;GO:0070374;GO:0090023;GO:2000343;GO:0005886;GO:0005886;GO:0005622;GO:0016020;GO:0042613;GO:0005764;GO:0005773;GO:0016021;GO:0005783;GO:0005887;GO:0005770;GO:0005771;GO:0005794;GO:0009897;GO:0009986;GO:0035692;GO:0035693;GO:0043235;GO:0005515;GO:0001540;GO:0004896;GO:0004896;GO:0019955;GO:0019955;GO:0042289;GO:0050998", "red_GO" : "immune related", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.00164148531, "kwalksFromModule_T0901317_yellow" : "module.below.cutoff", "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFEFEF|FFE1E1", "XrefId" : "", "cytoscape_alias_list" : [ "16149" ], "kwalksT0901317darkturquoise" : 0.25299, "id_original" : "16149", "logFCLDLR16wkHighFatLDLRChow" : 0.124551381881, "selected" : false, "canonicalName" : "Cd74", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFEFEF|FF8C8C", "identifier" : "L:16149", "xref" : "L:16149", "kwalksFromModule_T0901317_darkturquoise" : "module.below.cutoff", "Degree" : 102, "module" : "red", "kwalksT0901317royalblue" : 0.2318379, "kwalksT0901317purple" : 0.2398389, "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.122507806365, "PValueLDLR16wkHighFatLDLRChow" : 0.58245619371, "kwalksFromModule_T0901317_purple" : "module.below.cutoff", "name" : "L:16149", "entrezId" : "16149", "adjPValLDLR16wkHighFatLDLRChow" : 0.832980384662, "moduleMembership" : 0.834755135388, "entrez" : "16149", "isDrug" : "false", "kwalksFromModule_T0901317_royalblue" : "module.below.cutoff", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.588063742882, "kwalksT0901317magenta" : 0.2461079, "kwalksFromModule_T0901317_black" : "module.below.cutoff", "shared_name" : "L:16149", "ObjectType" : "", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.872226730441, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.630616963135, "kwalksFromModule_T0901317_magenta" : "module.below.cutoff", "SUID" : 588049, "SourceDir" : "", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.302544795298, "kwalksT0901317red" : 1.494997, "logFCLDLRT0901317LDLR16wkHighFat" : 0.899691430759, "label" : "Cd74", "go_all" : "activation of MAPK activity; antigen processing and presentation; antigen processing and presentation; antigen processing and presentation of exogenous peptide antigen via MHC class II; beta-amyloid binding; cell proliferation; cell surface; chaperone mediated protein folding requiring cofactor; chaperone mediated protein folding requiring cofactor; cytokine binding; cytokine binding; cytokine-mediated signaling pathway; cytokine receptor activity; cytokine receptor activity; defense response; endoplasmic reticulum; external side of plasma membrane; Golgi apparatus; immune response; immunoglobulin mediated immune response; integral to membrane; integral to plasma membrane; intracellular; intracellular protein transport; intracellular protein transport; late endosome; lysosome; macrophage migration inhibitory factor receptor complex; macrophage migration inhibitory factor signaling pathway; membrane; MHC class II protein binding; MHC class II protein complex; multivesicular body; negative regulation of apoptotic process; negative regulation of apoptotic process; negative regulation of DNA damage response, signal transduction by p53 class mediator; negative regulation of DNA damage response, signal transduction by p53 class mediator; negative regulation of mature B cell apoptosis; negative regulation of peptide secretion; negative regulation of T cell differentiation; negative thymic T cell selection; nitric-oxide synthase binding; NOS2-CD74 complex; plasma membrane; plasma membrane; positive regulation of adaptive immune response; positive regulation of B cell proliferation; positive regulation of chemokine (C-X-C motif) ligand 2 production; positive regulation of cytokine-mediated signaling pathway; positive regulation of cytokine-mediated signaling pathway; positive regulation of dendritic cell antigen processing and presentation; positive regulation of ERK1 and ERK2 cascade; positive regulation of ERK1 and ERK2 cascade; positive regulation of fibroblast proliferation; positive regulation of innate immune response; positive regulation of macrophage cytokine production; positive regulation of neutrophil chemotaxis; positive regulation of peptidyl-tyrosine phosphorylation; positive regulation of peptidyl-tyrosine phosphorylation; positive regulation of T cell differentiation; positive regulation of type 2 immune response; positive thymic T cell selection; prostaglandin biosynthetic process; protein binding; protein complex assembly; receptor complex; signal transduction; vacuole", "XrefStatus" : "", "XrefDatasource" : "", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFEFEF|EFEFFF", "TFeActingComplex" : "", "SourcePathway" : "", "kwalksT0901317yellow" : 0.3409686, "kwalksT0901317black" : 0.2797583 }, "position" : { "x" : 1921.705322265625, "y" : 2184.552978515625 }, "selected" : false }, { "data" : { "id" : "588147", "go_mf" : "isomerase activity; peptide binding; peptidyl-prolyl cis-trans isomerase activity; protein binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.255595090766, "PValueLDLRT0901317LDLR16wkHighFat" : 0.00162841126, "red_GO" : "primary metabolic", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.010410277575, "cytoscape_alias_list" : [ "19038" ], "id_original" : "19038", "logFCLDLR16wkHighFatLDLRChow" : 0.262671828142, "selected" : false, "canonicalName" : "Ppic", "xref" : "L:19038", "Degree" : 410, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.248128879401, "PValueLDLR16wkHighFatLDLRChow" : 0.138671449869, "name" : "L:19038", "entrezId" : "19038", "adjPValLDLR16wkHighFatLDLRChow" : 0.378239325562, "entrez" : "19038", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.110165714817, "shared_name" : "L:19038", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.499461480619, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.364282708088, "SUID" : 588147, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.13900373527, "logFCLDLRT0901317LDLR16wkHighFat" : 0.680898007411, "label" : "Ppic", "go_all" : "cytoplasm; isomerase activity; peptide binding; peptidyl-prolyl cis-trans isomerase activity; protein binding; protein folding; protein peptidyl-prolyl isomerization" }, "position" : { "x" : 2641.721923828125, "y" : 1611.4638671875 }, "selected" : false }, { "data" : { "id" : "588512", "go_mf" : "peptide antigen binding; protein binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.176482210373, "PValueLDLRT0901317LDLR16wkHighFat" : 5.08997475E-4, "red_GO" : "immune related", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.004511767194, "cytoscape_alias_list" : [ "14969" ], "id_original" : "14969", "logFCLDLR16wkHighFatLDLRChow" : 0.420948805092, "selected" : false, "canonicalName" : "H2-Eb1", "xref" : "L:14969", "Degree" : 123, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.290696364146, "PValueLDLR16wkHighFatLDLRChow" : 0.096711502713, "name" : "L:14969", "entrezId" : "14969", "adjPValLDLR16wkHighFatLDLRChow" : 0.374141473964, "entrez" : "14969", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.249704784798, "shared_name" : "L:14969", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.674514290451, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.773635759431, "SUID" : 588512, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.483780621788, "logFCLDLRT0901317LDLR16wkHighFat" : 0.901340821654, "label" : "H2-Eb1", "go_all" : "antigen processing and presentation of exogenous peptide antigen via MHC class II; antigen processing and presentation of peptide or polysaccharide antigen via MHC class II; external side of plasma membrane; immune response; integral to membrane; late endosome membrane; lysosomal membrane; membrane; MHC class II protein complex; peptide antigen binding; protein binding; protein tetramerization; regulation of interleukin-10 secretion; regulation of interleukin-4 production" }, "position" : { "x" : 1511.651123046875, "y" : 1834.3336181640625 }, "selected" : false }, { "data" : { "id" : "588608", "go_mf" : "receptor activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.15116912466, "PValueLDLRT0901317LDLR16wkHighFat" : 0.006910927624, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.03586304549, "cytoscape_alias_list" : [ "224840" ], "id_original" : "224840", "logFCLDLR16wkHighFatLDLRChow" : 0.137260009155, "selected" : false, "canonicalName" : "Treml4", "xref" : "L:224840", "Degree" : 115, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.238093437342, "PValueLDLR16wkHighFatLDLRChow" : 0.380062313079, "name" : "L:224840", "entrezId" : "224840", "adjPValLDLR16wkHighFatLDLRChow" : 0.662560163273, "entrez" : "224840", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.166757008529, "shared_name" : "L:224840", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.494479192356, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.630117652034, "SUID" : 588608, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.325065472227, "logFCLDLRT0901317LDLR16wkHighFat" : 0.414029474429, "label" : "Treml4", "go_all" : "receptor activity" }, "position" : { "x" : 3746.822021484375, "y" : 1579.4859619140625 }, "selected" : false }, { "data" : { "id" : "588069", "go_mf" : "protein binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.331380611797, "PValueLDLRT0901317LDLR16wkHighFat" : 3.3201E-8, "goBP" : "NA", "GraphId" : "NA", "goids" : "NA", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 1.146303E-6, "XrefId" : "NA", "cytoscape_alias_list" : [ "327957" ], "id_original" : "327957", "logFCLDLR16wkHighFatLDLRChow" : 0.194574377497, "selected" : false, "canonicalName" : "NA", "identifier" : "NA", "xref" : "L:327957", "Degree" : 271, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.443872739307, "PValueLDLR16wkHighFatLDLRChow" : 0.19010856949, "name" : "L:327957", "entrezId" : "327957", "adjPValLDLR16wkHighFatLDLRChow" : 0.515634246948, "moduleMembership" : 0.881129312214, "entrez" : "NA", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.00329503117, "shared_name" : "L:327957", "ObjectType" : "NA", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.113069558956, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.150278854381, "SUID" : 588069, "SourceDir" : "NA", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.026814349828, "logFCLDLRT0901317LDLR16wkHighFat" : 0.881305478339, "label" : "A430084P05Rik", "go_all" : "immunological synapse; integral to membrane; leading edge membrane; membrane; membrane part; positive regulation of ERK1 and ERK2 cascade; positive regulation of ERK1 and ERK2 cascade; protein binding; tetraspanin-enriched microdomain; uropod membrane", "XrefStatus" : "NA", "XrefDatasource" : "NA", "TFeActingComplex" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.2836933 }, "position" : { "x" : 3677.166259765625, "y" : 1602.7830810546875 }, "selected" : false }, { "data" : { "id" : "589364", "go_mf" : "molecular_function", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.209107857717, "PValueLDLRT0901317LDLR16wkHighFat" : 5.7027E-8, "adjPValLDLRT0901317LDLR16wkHighFat" : 1.860602E-6, "cytoscape_alias_list" : [ "224109" ], "id_original" : "224109", "logFCLDLR16wkHighFatLDLRChow" : 0.050196845685, "selected" : false, "canonicalName" : "Lrrc33", "xref" : "L:224109", "Degree" : 229, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.065204375934, "PValueLDLR16wkHighFatLDLRChow" : 0.710777151592, "name" : "L:224109", "entrezId" : "224109", "adjPValLDLR16wkHighFatLDLRChow" : 0.897013200059, "entrez" : "224109", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.630114843783, "shared_name" : "L:224109", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.890827695156, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.402048615826, "SUID" : 589364, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.124445636251, "logFCLDLRT0901317LDLR16wkHighFat" : 0.790371770507, "label" : "Lrrc33", "go_all" : "biological_process; cellular_component; integral to membrane; membrane; molecular_function" }, "position" : { "x" : 4267.8828125, "y" : 2067.951416015625 }, "selected" : false }, { "data" : { "id" : "587790", "go_mf" : "electron carrier activity; molecular_function; protein disulfide oxidoreductase activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.26534537692, "PValueLDLRT0901317LDLR16wkHighFat" : 6.697E-9, "goBP" : "NA", "GraphId" : "NA", "goids" : "NA", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 2.83869E-7, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFE1E1|FFDDDD", "XrefId" : "NA", "cytoscape_alias_list" : [ "73723" ], "id_original" : "73723", "logFCLDLR16wkHighFatLDLRChow" : 0.232554666698, "selected" : false, "canonicalName" : "NA", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFE1E1|FF9A9A", "identifier" : "NA", "xref" : "L:73723", "Degree" : 345, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.309984854821, "PValueLDLR16wkHighFatLDLRChow" : 0.065093431992, "name" : "L:73723", "entrezId" : "73723", "adjPValLDLR16wkHighFatLDLRChow" : 0.305412985119, "moduleMembership" : 0.950534603989, "entrez" : "NA", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.014550219017, "shared_name" : "L:73723", "ObjectType" : "NA", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.22477086863, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.182573791883, "SUID" : 587790, "SourceDir" : "NA", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.035769034329, "logFCLDLRT0901317LDLR16wkHighFat" : 0.78842310566, "label" : "Sh3bgrl3", "go_all" : "biological_process; cell redox homeostasis; cytoplasm; electron carrier activity; molecular_function; nucleus; protein disulfide oxidoreductase activity", "XrefStatus" : "NA", "XrefDatasource" : "NA", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFE1E1|D7D7FF", "TFeActingComplex" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.2973106 }, "position" : { "x" : 3439.03466796875, "y" : 1868.019287109375 }, "selected" : false }, { "data" : { "id" : "588863", "go_mf" : "IgG binding; IgG receptor activity; IgG receptor activity; receptor activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.302984997995, "PValueLDLRT0901317LDLR16wkHighFat" : 5.4E-10, "goBP" : "antibody-dependent cellular cytotoxicity;positive regulation of type IIa hypersensitivity;positive regulation of type III hypersensitivity;positive regulation of type I hypersensitivity;serotonin secretion;signal transduction;phagocytosis, recognition;phagocytosis, engulfment;cell surface receptor signaling pathway;neutrophil chemotaxis;positive regulation of tumor necrosis factor biosynthetic process;antigen processing and presentation of exogenous peptide antigen via MHC class I;mast cell activation;positive regulation of phagocytosis;regulation of immune response", "GraphId" : "", "goids" : "GO:0001788;GO:0001798;GO:0001805;GO:0001812;GO:0001812;GO:0001820;GO:0007165;GO:0006910;GO:0006911;GO:0007166;GO:0030593;GO:0042535;GO:0042590;GO:0045576;GO:0045576;GO:0050766;GO:0050776;GO:0005623;GO:0004872;GO:0019770;GO:0019770;GO:0019864", "red_GO" : "immune + inflammation related", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 2.9794E-8, "XrefId" : "", "cytoscape_alias_list" : [ "14131" ], "id_original" : "14131", "logFCLDLR16wkHighFatLDLRChow" : 0.16359773374, "selected" : false, "canonicalName" : "Fcgr3", "identifier" : "L:14131", "xref" : "L:14131", "Degree" : 272, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.221744137617, "PValueLDLR16wkHighFatLDLRChow" : 0.249802753159, "name" : "L:14131", "entrezId" : "14131", "adjPValLDLR16wkHighFatLDLRChow" : 0.58866808867, "moduleMembership" : 0.865833434504, "entrez" : "14131", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.119779465479, "shared_name" : "L:14131", "ObjectType" : "", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.532825694825, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.178035407295, "SUID" : 588863, "SourceDir" : "", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.034427424239, "logFCLDLRT0901317LDLR16wkHighFat" : 0.968644523783, "label" : "Fcgr3", "go_all" : "antibody-dependent cellular cytotoxicity; antigen processing and presentation of exogenous peptide antigen via MHC class I; cell; cell surface receptor signaling pathway; IgG binding; IgG receptor activity; IgG receptor activity; mast cell activation; mast cell activation; neutrophil chemotaxis; phagocytosis, engulfment; phagocytosis, recognition; positive regulation of phagocytosis; positive regulation of tumor necrosis factor biosynthetic process; positive regulation of type I hypersensitivity; positive regulation of type I hypersensitivity; positive regulation of type IIa hypersensitivity; positive regulation of type III hypersensitivity; receptor activity; regulation of immune response; serotonin secretion; signal transduction", "XrefStatus" : "", "XrefDatasource" : "", "TFeActingComplex" : "", "SourcePathway" : "", "kwalksFenofibratered" : 0.2962504 }, "position" : { "x" : 757.443115234375, "y" : 1647.39990234375 }, "selected" : false }, { "data" : { "id" : "588786", "go_mf" : "chemokine activity; cytokine activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.362714510013, "PValueLDLRT0901317LDLR16wkHighFat" : 8.1544E-8, "red_GO" : "immune related", "adjPValLDLRT0901317LDLR16wkHighFat" : 2.499742E-6, "cytoscape_alias_list" : [ "20305" ], "id_original" : "20305", "logFCLDLR16wkHighFatLDLRChow" : 0.125882984277, "selected" : false, "canonicalName" : "Ccl6", "xref" : "L:20305", "Degree" : 213, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.47152533569, "PValueLDLR16wkHighFatLDLRChow" : 0.495896628363, "name" : "L:20305", "entrezId" : "20305", "adjPValLDLR16wkHighFatLDLRChow" : 0.78659058581, "entrez" : "20305", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.011921579788, "shared_name" : "L:20305", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.206020619507, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.234838529345, "SUID" : 588786, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.05162385832, "logFCLDLRT0901317LDLR16wkHighFat" : 1.063842586639, "label" : "Ccl6", "go_all" : "cell chemotaxis; chemokine activity; chemotaxis; cytokine activity; extracellular region; extracellular space; immune response" }, "position" : { "x" : 2047.59228515625, "y" : 2107.409423828125 }, "selected" : false }, { "data" : { "id" : "588782", "go_mf" : "symporter activity; transporter activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.308564898703, "PValueLDLRT0901317LDLR16wkHighFat" : 2.0E-12, "goBP" : "NA", "GraphId" : "NA", "kwalksFromModule_T0901317_red" : "module.below.cutoff", "goids" : "NA", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 2.05E-10, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFB6B6|FFD7D7", "XrefId" : "NA", "cytoscape_alias_list" : [ "65221" ], "id_original" : "65221", "logFCLDLR16wkHighFatLDLRChow" : 0.566953183505, "selected" : false, "canonicalName" : "NA", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFB6B6|FF5959", "identifier" : "NA", "xref" : "L:65221", "Degree" : 412, "module" : "red", "kwalksLifeStylered" : 0.1554967, "kwalksT0901317purple" : 0.0292535, "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.690460725079, "PValueLDLR16wkHighFatLDLRChow" : 7.1243437E-4, "name" : "L:65221", "entrezId" : "65221", "adjPValLDLR16wkHighFatLDLRChow" : 0.021712680033, "moduleMembership" : 0.967698010964, "entrez" : "NA", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 4.699212E-5, "shared_name" : "L:65221", "ObjectType" : "NA", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.011369201287, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.259408841182, "SUID" : 588782, "SourceDir" : "NA", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.06032418493, "kwalksFromModule_LifeStyle_red" : "module.below.cutoff", "kwalksT0901317red" : 0.06063525, "logFCLDLRT0901317LDLR16wkHighFat" : 1.296083947866, "label" : "Slc15a3", "go_all" : "integral to membrane; lysosomal membrane; lysosome; membrane; oligopeptide transport; peptide transport; protein transport; symporter activity; transmembrane transport; transport; transporter activity", "XrefStatus" : "NA", "XrefDatasource" : "NA", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFB6B6|A6A6FF", "TFeActingComplex" : "NA", "SourcePathway" : "NA" }, "position" : { "x" : 4152.30517578125, "y" : 2293.583740234375 }, "selected" : false }, { "data" : { "id" : "588182", "go_mf" : "1-phosphatidylinositol-5-phosphate 4-kinase activity; ATP binding; kinase activity; nucleotide binding; phosphatidylinositol phosphate kinase activity; transferase activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.036956993434, "PValueLDLRT0901317LDLR16wkHighFat" : 1.25788E-7, "red_GO" : "primary metabolic", "adjPValLDLRT0901317LDLR16wkHighFat" : 3.609369E-6, "cytoscape_alias_list" : [ "18718" ], "id_original" : "18718", "logFCLDLR16wkHighFatLDLRChow" : 0.394893828644, "selected" : false, "canonicalName" : "Pip4k2a", "xref" : "L:18718", "Degree" : 295, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.192256766446, "PValueLDLR16wkHighFatLDLRChow" : 6.76702708E-4, "name" : "L:18718", "entrezId" : "18718", "adjPValLDLR16wkHighFatLDLRChow" : 0.021198858137, "entrez" : "18718", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.090933721606, "shared_name" : "L:18718", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.480680237305, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.90903754294, "SUID" : 588182, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.743559744803, "logFCLDLRT0901317LDLR16wkHighFat" : 0.63975576746, "label" : "Pip4k2a", "go_all" : "1-phosphatidylinositol-5-phosphate 4-kinase activity; ATP binding; cytoplasm; kinase activity; megakaryocyte development; membrane; nucleotide binding; nucleus; phosphatidylinositol metabolic process; phosphatidylinositol phosphate kinase activity; phosphatidylinositol phosphorylation; phosphorylation; plasma membrane; transferase activity" }, "position" : { "x" : 2560.0654296875, "y" : 1902.899658203125 }, "selected" : false }, { "data" : { "id" : "587851", "go_mf" : "kinase activity; protein binding; SH3 domain binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.074689614623, "PValueLDLRT0901317LDLR16wkHighFat" : 0.031648628604, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.08871358829, "cytoscape_alias_list" : [ "58194" ], "id_original" : "58194", "logFCLDLR16wkHighFatLDLRChow" : 0.301727475815, "selected" : false, "canonicalName" : "Sh3kbp1", "xref" : "L:58194", "Degree" : 188, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.148422991133, "PValueLDLR16wkHighFatLDLRChow" : 0.160890377495, "name" : "L:58194", "entrezId" : "58194", "adjPValLDLR16wkHighFatLDLRChow" : 0.356159763712, "entrez" : "58194", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.369462803099, "shared_name" : "L:58194", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.67979197038, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.783509663143, "SUID" : 587851, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.540756939257, "logFCLDLRT0901317LDLR16wkHighFat" : 0.513465375681, "label" : "Sh3kbp1", "go_all" : "apoptotic process; cell junction; cell migration; cytoplasm; cytoplasmic vesicle; cytoskeleton; cytoskeleton organization; endocytosis; kinase activity; membrane; nucleus; phosphorylation; protein binding; regulation of cell shape; SH3 domain binding; synapse; synaptosome" }, "position" : { "x" : 3819.438720703125, "y" : 1568.464599609375 }, "selected" : false }, { "data" : { "id" : "588742", "go_mf" : "molecular_function", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.751187735565, "PValueLDLRT0901317LDLR16wkHighFat" : 3.8E-11, "goBP" : "NA", "GraphId" : "NA", "goids" : "NA", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 3.039E-9, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFD1D1|FF9F9F", "XrefId" : "NA", "cytoscape_alias_list" : [ "213002" ], "id_original" : "213002", "logFCLDLR16wkHighFatLDLRChow" : 0.355863107891, "selected" : false, "canonicalName" : "NA", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFD1D1|FF3535", "identifier" : "NA", "xref" : "L:213002", "Degree" : 390, "module" : "red", "kwalksT0901317purple" : 0.05068628, "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.373089050721, "PValueLDLR16wkHighFatLDLRChow" : 0.098259792317, "kwalksFromModule_T0901317_purple" : "module.below.cutoff", "name" : "L:213002", "entrezId" : "213002", "adjPValLDLR16wkHighFatLDLRChow" : 0.377914914697, "moduleMembership" : 0.865486474185, "entrez" : "NA", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.083228757375, "shared_name" : "L:213002", "ObjectType" : "NA", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.464462540272, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.009058769266, "SUID" : 588742, "SourceDir" : "NA", "PValueLDLRFenofibrateLDLR16wkHighFat" : 6.39401875E-4, "logFCLDLRT0901317LDLR16wkHighFat" : 1.577414293948, "label" : "Ifitm6", "go_all" : "biological_process; cellular_component; integral to membrane; molecular_function", "XrefStatus" : "NA", "XrefDatasource" : "NA", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFD1D1|CFCFFF", "TFeActingComplex" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.2946878 }, "position" : { "x" : 3466.776611328125, "y" : 1800.0115966796875 }, "selected" : false }, { "data" : { "id" : "589269", "go_mf" : "endonuclease activity; hydrolase activity; molecular_function; nuclease activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.25012821838, "PValueLDLRT0901317LDLR16wkHighFat" : 0.001065144891, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.008312887622, "cytoscape_alias_list" : [ "503845" ], "id_original" : "503845", "logFCLDLR16wkHighFatLDLRChow" : 0.793395771876, "selected" : false, "canonicalName" : "Ear12", "xref" : "L:503845", "Degree" : 352, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.936040970771, "PValueLDLR16wkHighFatLDLRChow" : 0.001215749876, "name" : "L:503845", "entrezId" : "503845", "adjPValLDLR16wkHighFatLDLRChow" : 0.030787250481, "entrez" : "503845", "PValueLDLRLifeStyleLDLR16wkHighFat" : 1.56340383E-4, "shared_name" : "L:503845", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.023194423259, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.626437717806, "SUID" : 589269, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.296647697094, "logFCLDLRT0901317LDLR16wkHighFat" : 0.803094584164, "label" : "Ear12", "go_all" : "biological_process; cellular_component; endonuclease activity; hydrolase activity; molecular_function; nuclease activity; nucleic acid phosphodiester bond hydrolysis" }, "position" : { "x" : 4198.9765625, "y" : 2236.8701171875 }, "selected" : false }, { "data" : { "id" : "588403", "go_mf" : "lipopolysaccharide binding; lipoteichoic acid binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.778506390589, "PValueLDLRT0901317LDLR16wkHighFat" : 7.26E-9, "goBP" : "response to molecule of bacterial origin;inflammatory response;positive regulation of tumor necrosis factor production;innate immune response;positive regulation of endocytosis;positive regulation of cytokine secretion;cellular response to lipopolysaccharide;cellular response to lipoteichoic acid", "GraphId" : "cad", "kwalksFromModule_Fenofibrate_magenta" : "module.none", "goids" : "GO:0002237;GO:0006954;GO:0032760;GO:0045087;GO:0045807;GO:0050715;GO:0071222;GO:0071223;GO:0005886;GO:0016020;GO:0005615;GO:0009986;GO:0031225;GO:0045121;GO:0001530;GO:0070891", "red_GO" : "immune + inflammation related", "kwalksFenofibratemagenta" : 0.01005464, "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 3.03633E-7, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFDCDC|FF9B9B", "XrefId" : "12475", "cytoscape_alias_list" : [ "12475" ], "id_original" : "12475", "logFCLDLR16wkHighFatLDLRChow" : 0.272271496265, "selected" : false, "canonicalName" : ", Cd14", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFDCDC|FF5959", "identifier" : "L:12475", "xref" : "L:12475", "Degree" : 427, "module" : "red", "kwalksT0901317purple" : 0.05193897, "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.336290006668, "PValueLDLR16wkHighFatLDLRChow" : 0.188867019564, "name" : "L:12475", "entrezId" : "12475", "adjPValLDLR16wkHighFatLDLRChow" : 0.514704972159, "moduleMembership" : 0.91183864658, "entrez" : "12475", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.10537401502, "shared_name" : "L:12475", "ObjectType" : "DATANODE", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.507779045834, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.004301884422, "SUID" : 588403, "SourceDir" : "wikipathways_analysis", "PValueLDLRFenofibrateLDLR16wkHighFat" : 2.60968952E-4, "logFCLDLRT0901317LDLR16wkHighFat" : 1.297635471331, "label" : "Cd14", "go_all" : "anchored to membrane; cell surface; cellular response to lipopolysaccharide; cellular response to lipoteichoic acid; extracellular space; inflammatory response; innate immune response; lipopolysaccharide binding; lipoteichoic acid binding; membrane; membrane raft; plasma membrane; positive regulation of cytokine secretion; positive regulation of endocytosis; positive regulation of tumor necrosis factor production; response to molecule of bacterial origin", "XrefStatus" : "mapped", "XrefDatasource" : "Entrez Gene", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFDCDC|D4D4FF", "TFeActingComplex" : "", "SourcePathway" : "Mm_Regulation_of_Actin_Cytoskeleton_WP523_47746.gpml", "kwalksFenofibratered" : 2.128279 }, "position" : { "x" : 817.2840576171875, "y" : 1928.9290771484375 }, "selected" : false }, { "data" : { "id" : "588733", "go_mf" : "actin binding; metal ion binding; molecular_function", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.094994027607, "PValueLDLRT0901317LDLR16wkHighFat" : 5.3208307E-4, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.004674602438, "cytoscape_alias_list" : [ "326618" ], "id_original" : "326618", "logFCLDLR16wkHighFatLDLRChow" : 0.260639089653, "selected" : false, "canonicalName" : "Tpm4", "xref" : "L:326618", "Degree" : 232, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.24845148568, "PValueLDLR16wkHighFatLDLRChow" : 0.039691941765, "name" : "L:326618", "entrezId" : "326618", "adjPValLDLR16wkHighFatLDLRChow" : 0.233335904311, "entrez" : "326618", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.049695396596, "shared_name" : "L:326618", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.37891728534, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.749933369428, "SUID" : 588733, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.449406846845, "logFCLDLRT0901317LDLR16wkHighFat" : 0.447412137789, "label" : "Tpm4", "go_all" : "actin binding; cortical cytoskeleton; cytoplasm; cytoskeleton; filamentous actin; metal ion binding; molecular_function; podosome; stress fiber" }, "position" : { "x" : 3505.758056640625, "y" : 2251.788818359375 }, "selected" : false }, { "data" : { "id" : "588351", "go_mf" : "binding; molecular_function", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.215567502262, "PValueLDLRT0901317LDLR16wkHighFat" : 0.082441062578, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.237734721627, "cytoscape_alias_list" : [ "230603" ], "id_original" : "230603", "logFCLDLR16wkHighFatLDLRChow" : 1.086667761552, "selected" : false, "canonicalName" : "Ttc39a", "xref" : "L:230603", "Degree" : 301, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.873272506999, "PValueLDLR16wkHighFatLDLRChow" : 1.4924208E-4, "name" : "L:230603", "entrezId" : "230603", "adjPValLDLR16wkHighFatLDLRChow" : 0.008432014896, "entrez" : "230603", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.013999496466, "shared_name" : "L:230603", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.163448395073, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.705912930347, "SUID" : 588351, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.435384425577, "logFCLDLRT0901317LDLR16wkHighFat" : 0.491335147998, "label" : "Ttc39a", "go_all" : "binding; biological_process; cellular_component; molecular_function" }, "position" : { "x" : 3892.8701171875, "y" : 1570.044921875 }, "selected" : false }, { "data" : { "id" : "587746", "go_mf" : "GTPase activity; GTP binding; nucleotide binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.099798309076, "PValueLDLRT0901317LDLR16wkHighFat" : 0.017695199812, "red_GO" : "primary metabolic", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.078115103154, "cytoscape_alias_list" : [ "55932" ], "id_original" : "55932", "logFCLDLR16wkHighFatLDLRChow" : 0.610814075561, "selected" : false, "canonicalName" : "Gbp3", "xref" : "L:55932", "Degree" : 134, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.566036222192, "PValueLDLR16wkHighFatLDLRChow" : 0.00359140435, "name" : "L:55932", "entrezId" : "55932", "adjPValLDLR16wkHighFatLDLRChow" : 0.057199235816, "entrez" : "55932", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.007917208562, "shared_name" : "L:55932", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.158820518797, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.851027750652, "SUID" : 587746, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.621515143549, "logFCLDLRT0901317LDLR16wkHighFat" : 0.487423436226, "label" : "Gbp3", "go_all" : "adhesion to symbiont; cellular response to interferon-beta; cellular response to interferon-gamma; cytoplasm; cytoplasmic vesicle; cytosol; defense response to Gram-positive bacterium; defense response to protozoan; GTPase activity; GTP binding; nucleotide binding; symbiont-containing vacuole membrane" }, "position" : { "x" : 2943.67529296875, "y" : 1982.61474609375 }, "selected" : false }, { "data" : { "id" : "589090", "go_mf" : "catalytic activity; hydrolase activity; NAPE-specific phospholipase D activity; phospholipase D activity; protein binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.154171755105, "PValueLDLRT0901317LDLR16wkHighFat" : 2.67201492E-4, "red_GO" : "primary metabolic", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.002627899102, "cytoscape_alias_list" : [ "104759" ], "id_original" : "104759", "logFCLDLR16wkHighFatLDLRChow" : 0.191059694745, "selected" : false, "canonicalName" : "Pld4", "xref" : "L:104759", "Degree" : 134, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.350653895689, "PValueLDLR16wkHighFatLDLRChow" : 0.247609836261, "name" : "L:104759", "entrezId" : "104759", "adjPValLDLR16wkHighFatLDLRChow" : 0.58542261101, "entrez" : "104759", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.035208447399, "shared_name" : "L:104759", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.331351312868, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.673426630624, "SUID" : 589090, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.350300519935, "logFCLDLRT0901317LDLR16wkHighFat" : 0.620330531659, "label" : "Pld4", "go_all" : "biological_process; catalytic activity; cellular_component; hydrolase activity; integral to membrane; lipid catabolic process; membrane; metabolic process; NAPE-specific phospholipase D activity; phospholipase D activity; protein binding" }, "position" : { "x" : 2560.0654296875, "y" : 1711.8331298828125 }, "selected" : false }, { "data" : { "id" : "587750", "go_mf" : "peptidase inhibitor activity; serine-type endopeptidase inhibitor activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.379792871418, "PValueLDLRT0901317LDLR16wkHighFat" : 2.9332961E-4, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.002835219082, "cytoscape_alias_list" : [ "238393" ], "id_original" : "238393", "logFCLDLR16wkHighFatLDLRChow" : 0.403177487062, "selected" : false, "canonicalName" : "Serpina3f", "xref" : "L:238393", "Degree" : 111, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.331894252537, "PValueLDLR16wkHighFatLDLRChow" : 0.059356797522, "name" : "L:238393", "entrezId" : "238393", "adjPValLDLR16wkHighFatLDLRChow" : 0.290928238542, "entrez" : "238393", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.119596702961, "shared_name" : "L:238393", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.532783105138, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.298837133435, "SUID" : 587750, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.075421886214, "logFCLDLRT0901317LDLR16wkHighFat" : 0.792725544333, "label" : "Serpina3f", "go_all" : "extracellular region; negative regulation of endopeptidase activity; negative regulation of peptidase activity; peptidase inhibitor activity; regulation of proteolysis; response to cytokine stimulus; response to peptide hormone stimulus; serine-type endopeptidase inhibitor activity" }, "position" : { "x" : 3929.2119140625, "y" : 1575.5606689453125 }, "selected" : false }, { "data" : { "id" : "587989", "go_mf" : "identical protein binding; kinase activity; protein binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.404656749068, "PValueLDLRT0901317LDLR16wkHighFat" : 6.2317E-8, "goBP" : "macrophage activation involved in immune response;neutrophil activation involved in immune response;integrin-mediated signaling pathway;phosphorylation", "GraphId" : "", "goids" : "GO:0002281;GO:0002283;GO:0007229;GO:0016310;GO:0016020;GO:0016021;GO:0005515;GO:0042802;GO:0016301", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 2.005663E-6, "XrefId" : "", "cytoscape_alias_list" : [ "22177" ], "id_original" : "22177", "logFCLDLR16wkHighFatLDLRChow" : 0.28866664465, "selected" : false, "canonicalName" : "Tyrobp", "identifier" : "L:22177", "xref" : "L:22177", "Degree" : 322, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.443392864473, "PValueLDLR16wkHighFatLDLRChow" : 0.077786976886, "name" : "L:22177", "entrezId" : "22177", "adjPValLDLR16wkHighFatLDLRChow" : 0.335854985805, "moduleMembership" : 0.904780795702, "entrez" : "22177", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.007317290822, "shared_name" : "L:22177", "ObjectType" : "", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.165146154035, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.096245204179, "SUID" : 587989, "SourceDir" : "", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.014097725234, "logFCLDLRT0901317LDLR16wkHighFat" : 0.945544958546, "label" : "Tyrobp", "go_all" : "identical protein binding; integral to membrane; integrin-mediated signaling pathway; kinase activity; macrophage activation involved in immune response; membrane; neutrophil activation involved in immune response; phosphorylation; protein binding", "XrefStatus" : "", "XrefDatasource" : "", "TFeActingComplex" : "", "SourcePathway" : "", "kwalksFenofibratered" : 0.2996802 }, "position" : { "x" : 4260.0341796875, "y" : 1885.68798828125 }, "selected" : false }, { "data" : { "id" : "588739", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.06029559513, "PValueLDLRT0901317LDLR16wkHighFat" : 2.0785902E-5, "red_GO" : "immune related", "adjPValLDLRT0901317LDLR16wkHighFat" : 3.00667531E-4, "cytoscape_alias_list" : [ "278180" ], "id_original" : "278180", "logFCLDLR16wkHighFatLDLRChow" : 0.30950210887, "selected" : false, "canonicalName" : "Vsig4", "xref" : "L:278180", "Degree" : 223, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.313789717853, "PValueLDLR16wkHighFatLDLRChow" : 0.025676704826, "name" : "L:278180", "entrezId" : "278180", "adjPValLDLR16wkHighFatLDLRChow" : 0.181153817896, "entrez" : "278180", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.023745396903, "shared_name" : "L:278180", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.280978263125, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.870938281651, "SUID" : 588739, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.660119852661, "logFCLDLRT0901317LDLR16wkHighFat" : 0.609960302177, "label" : "Vsig4", "go_all" : "negative regulation of interleukin-2 production; negative regulation of T cell proliferation" }, "position" : { "x" : 2136.320068359375, "y" : 1834.333740234375 }, "selected" : false }, { "data" : { "id" : "588928", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.239226253594, "PValueLDLRT0901317LDLR16wkHighFat" : 5.870306E-6, "adjPValLDLRT0901317LDLR16wkHighFat" : 1.01670081E-4, "cytoscape_alias_list" : [ "227929" ], "id_original" : "227929", "logFCLDLR16wkHighFatLDLRChow" : 0.307818086011, "selected" : false, "canonicalName" : "Cytip", "xref" : "L:227929", "Degree" : 310, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.297284541499, "PValueLDLR16wkHighFatLDLRChow" : 0.037089160322, "name" : "L:227929", "entrezId" : "227929", "adjPValLDLR16wkHighFatLDLRChow" : 0.224010115514, "entrez" : "227929", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.043920123132, "shared_name" : "L:227929", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.362375580472, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.361908990096, "SUID" : 588928, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.103744482217, "logFCLDLRT0901317LDLR16wkHighFat" : 0.696380794531, "label" : "Cytip", "go_all" : "cell cortex; cytoplasm; endosome; regulation of cell adhesion" }, "position" : { "x" : 3711.492431640625, "y" : 2399.915283203125 }, "selected" : false }, { "data" : { "id" : "588010", "go_mf" : "receptor activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.244610073513, "PValueLDLRT0901317LDLR16wkHighFat" : 2.647E-9, "red_GO" : "adhesion, structure", "adjPValLDLRT0901317LDLR16wkHighFat" : 1.21721E-7, "cytoscape_alias_list" : [ "12523" ], "id_original" : "12523", "logFCLDLR16wkHighFatLDLRChow" : 0.389139925903, "selected" : false, "canonicalName" : "Cd84", "xref" : "L:12523", "Degree" : 240, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.242435292749, "PValueLDLR16wkHighFatLDLRChow" : 0.011719161125, "name" : "L:12523", "entrezId" : "12523", "adjPValLDLR16wkHighFatLDLRChow" : 0.117528456069, "entrez" : "12523", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.112944175901, "shared_name" : "L:12523", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.520410228603, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.374550926322, "SUID" : 588010, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.10978899212, "logFCLDLRT0901317LDLR16wkHighFat" : 0.988557599968, "label" : "Cd84", "go_all" : "cell adhesion; integral to membrane; membrane; plasma membrane; receptor activity" }, "position" : { "x" : 211.20545959472656, "y" : 1876.06396484375 }, "selected" : false }, { "data" : { "id" : "587774", "go_mf" : "integrin binding; integrin binding; phospholipid binding; protein binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.320730938942, "PValueLDLRT0901317LDLR16wkHighFat" : 2.95135E-7, "goBP" : "NA", "GraphId" : "NA", "goids" : "NA", "red_GO" : "adhesion, structure", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 7.696994E-6, "XrefId" : "NA", "cytoscape_alias_list" : [ "108101" ], "id_original" : "108101", "logFCLDLR16wkHighFatLDLRChow" : 0.314919920077, "selected" : false, "canonicalName" : "NA", "identifier" : "NA", "xref" : "L:108101", "Degree" : 278, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.15221352022, "PValueLDLR16wkHighFatLDLRChow" : 0.03374192443, "name" : "L:108101", "entrezId" : "108101", "adjPValLDLR16wkHighFatLDLRChow" : 0.211488841604, "moduleMembership" : 0.881032235485, "entrez" : "NA", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.300741880081, "shared_name" : "L:108101", "ObjectType" : "NA", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.713774042583, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.16461845089, "SUID" : 587774, "SourceDir" : "NA", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.030660526685, "logFCLDLRT0901317LDLR16wkHighFat" : 0.802764997279, "label" : "Fermt3", "go_all" : "cell adhesion; cell junction; cell projection; integrin activation; integrin activation; integrin binding; integrin binding; leukocyte cell-cell adhesion; leukocyte cell-cell adhesion; phospholipid binding; platelet aggregation; podosome; protein binding; regulation of cell-cell adhesion mediated by integrin; regulation of cell-cell adhesion mediated by integrin", "XrefStatus" : "NA", "XrefDatasource" : "NA", "TFeActingComplex" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.2969787 }, "position" : { "x" : 34.42876434326172, "y" : 1818.625732421875 }, "selected" : false }, { "data" : { "id" : "589265", "go_mf" : "molecular_function", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.114422429877, "PValueLDLRT0901317LDLR16wkHighFat" : 6.0505263E-5, "adjPValLDLRT0901317LDLR16wkHighFat" : 7.41625689E-4, "cytoscape_alias_list" : [ "66610" ], "id_original" : "66610", "logFCLDLR16wkHighFatLDLRChow" : 0.558394101176, "selected" : false, "canonicalName" : "Abi3", "xref" : "L:66610", "Degree" : 265, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.462780436566, "PValueLDLR16wkHighFatLDLRChow" : 4.48723357E-4, "name" : "L:66610", "entrezId" : "66610", "adjPValLDLR16wkHighFatLDLRChow" : 0.016449005841, "entrez" : "66610", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.00333120424, "shared_name" : "L:66610", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.113069558956, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.755930639514, "SUID" : 589265, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.459147327499, "logFCLDLRT0901317LDLR16wkHighFat" : 0.644141814393, "label" : "Abi3", "go_all" : "cytoplasm; intracellular; lamellipodium; molecular_function; regulation of cell migration" }, "position" : { "x" : 3892.8701171875, "y" : 2419.505126953125 }, "selected" : false }, { "data" : { "id" : "588678", "go_mf" : "actin binding; cadherin binding; ion channel activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.083499532145, "PValueLDLRT0901317LDLR16wkHighFat" : 0.079705544216, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.175084826848, "cytoscape_alias_list" : [ "18301" ], "id_original" : "18301", "logFCLDLR16wkHighFatLDLRChow" : 0.219588734514, "selected" : false, "canonicalName" : "Fxyd5", "xref" : "L:18301", "Degree" : 156, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.365950064994, "PValueLDLR16wkHighFatLDLRChow" : 0.22976370195, "name" : "L:18301", "entrezId" : "18301", "adjPValLDLR16wkHighFatLDLRChow" : 0.492001486181, "entrez" : "18301", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.127039525429, "shared_name" : "L:18301", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.322065093225, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.746055639588, "SUID" : 588678, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.557578403172, "logFCLDLRT0901317LDLR16wkHighFat" : 0.37579492894, "label" : "Fxyd5", "go_all" : "actin binding; cadherin binding; integral to membrane; ion channel activity; ion transmembrane transport; ion transport; membrane; transport" }, "position" : { "x" : 3420.192138671875, "y" : 2013.1541748046875 }, "selected" : false }, { "data" : { "id" : "589086", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.449305065827, "PValueLDLRT0901317LDLR16wkHighFat" : 1.133E-8, "goBP" : "complement activation, alternative pathway;innate immune response", "GraphId" : "", "goids" : "GO:0006957;GO:0045087;GO:0005576", "red_GO" : "immune + inflammation related", "kwalksFenofibratemagenta" : 0.002232299, "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 4.48804E-7, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFBDBD|FFC5C5", "XrefId" : "", "cytoscape_alias_list" : [ "18636" ], "id_original" : "18636", "logFCLDLR16wkHighFatLDLRChow" : 0.512382171637, "selected" : false, "canonicalName" : "NA", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFBDBD|FF7575", "identifier" : "L:18636", "xref" : "L:18636", "Degree" : 391, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.326356972227, "PValueLDLR16wkHighFatLDLRChow" : 0.003948207822, "name" : "L:18636", "entrezId" : "18636", "adjPValLDLR16wkHighFatLDLRChow" : 0.062027488715, "moduleMembership" : 0.9411737441, "entrez" : "18636", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.063193257215, "shared_name" : "L:18636", "ObjectType" : "", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.416154590853, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.08104711328, "SUID" : 589086, "SourceDir" : "", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.011115860709, "logFCLDLRT0901317LDLR16wkHighFat" : 1.07878155369, "label" : "Cfp", "go_all" : "complement activation, alternative pathway; extracellular region; innate immune response", "XrefStatus" : "", "XrefDatasource" : "", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFBDBD|D5D5FF", "TFeActingComplex" : "", "SourcePathway" : "", "kwalksFenofibratered" : 0.3059526 }, "position" : { "x" : 757.443115234375, "y" : 1875.048095703125 }, "selected" : false }, { "data" : { "id" : "588639", "go_mf" : "heparin binding; integrin binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.667325451938, "PValueLDLRT0901317LDLR16wkHighFat" : 0.031320024818, "red_GO" : "adhesion, structure", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.087636565869, "cytoscape_alias_list" : [ "93695" ], "id_original" : "93695", "logFCLDLR16wkHighFatLDLRChow" : 0.623312552471, "selected" : false, "canonicalName" : "Gpnmb", "xref" : "L:93695", "Degree" : 390, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.446946555411, "PValueLDLR16wkHighFatLDLRChow" : 0.237852625204, "name" : "L:93695", "entrezId" : "93695", "adjPValLDLR16wkHighFatLDLRChow" : 0.439287463048, "entrez" : "93695", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.384529638688, "shared_name" : "L:93695", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.585703948356, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.418620519922, "SUID" : 588639, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.330577818041, "logFCLDLRT0901317LDLR16wkHighFat" : 1.826162664454, "label" : "Gpnmb", "go_all" : "cell adhesion; cytoplasmic membrane-bounded vesicle; cytoplasmic vesicle; heparin binding; integral to membrane; integral to plasma membrane; integrin binding; membrane" }, "position" : { "x" : 4.231698989868164, "y" : 1725.688720703125 }, "selected" : false }, { "data" : { "id" : "588432", "go_mf" : "ion channel activity; potassium channel activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.134619029092, "PValueLDLRT0901317LDLR16wkHighFat" : 0.122015076835, "goBP" : "transport;ion transport", "kwalksLifeStyledarkturquoise" : 0.09609684, "GraphId" : "NA", "kwalksLifeStyleyellow" : 0.1262155, "goids" : "GO:0006810;GO:0006811;GO:0016020;GO:0016021;GO:0005575;GO:0005216;GO:0005267", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.24057303313, "XrefId" : "NA", "cytoscape_alias_list" : [ "52150" ], "id_original" : "52150", "logFCLDLR16wkHighFatLDLRChow" : 0.245011587527, "selected" : false, "canonicalName" : "NA", "identifier" : "L:52150", "xref" : "L:52150", "Degree" : 216, "module" : "red", "kwalksLifeStylered" : 0.08195806, "kwalksFromModule_LifeStyle_yellow" : "module.below.cutoff", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.269311244182, "PValueLDLR16wkHighFatLDLRChow" : 0.042492716624, "name" : "L:52150", "entrezId" : "52150", "adjPValLDLR16wkHighFatLDLRChow" : 0.218256635259, "entrez" : "52150", "kwalksFromModule_LifeStyle_darkturquoise" : "module.below.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.020245757558, "shared_name" : "L:52150", "ObjectType" : "NA", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.259164295791, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.515744700656, "SUID" : 588432, "kwalksLifeStylepurple" : 0.1028688, "SourceDir" : "NA", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.35205563944, "kwalksFromModule_LifeStyle_red" : "module.above.cutoff", "logFCLDLRT0901317LDLR16wkHighFat" : 0.377104281487, "label" : "Kcnk6", "go_all" : "cellular_component; integral to membrane; ion channel activity; ion transmembrane transport; ion transport; membrane; potassium channel activity; transport", "XrefStatus" : "NA", "XrefDatasource" : "NA", "TFeActingComplex" : "", "kwalksFromModule_LifeStyle_purple" : "module.below.cutoff", "SourcePathway" : "NA" }, "position" : { "x" : 3782.89306640625, "y" : 2417.13818359375 }, "selected" : false }, { "data" : { "id" : "589284", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.169237184999, "PValueLDLRT0901317LDLR16wkHighFat" : 0.001701637385, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.012320418749, "cytoscape_alias_list" : [ "12508" ], "id_original" : "12508", "logFCLDLR16wkHighFatLDLRChow" : 0.467249682507, "selected" : false, "canonicalName" : "Cd53", "xref" : "L:12508", "Degree" : 239, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.597517816125, "PValueLDLR16wkHighFatLDLRChow" : 0.033538150696, "name" : "L:12508", "entrezId" : "12508", "adjPValLDLR16wkHighFatLDLRChow" : 0.210665938155, "entrez" : "12508", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.006938549276, "shared_name" : "L:12508", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.161013398021, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.740959946777, "SUID" : 589284, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.437000235141, "logFCLDLRT0901317LDLR16wkHighFat" : 0.698871577766, "label" : "Cd53", "go_all" : "cell surface; immunological synapse; integral to membrane; membrane" }, "position" : { "x" : 4065.8818359375, "y" : 2361.63916015625 }, "selected" : false }, { "data" : { "id" : "588952", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.099473225588, "PValueLDLRT0901317LDLR16wkHighFat" : 0.003422840983, "red_GO" : "immune related", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.021643585567, "cytoscape_alias_list" : [ "14999" ], "id_original" : "14999", "logFCLDLR16wkHighFatLDLRChow" : 0.362095631777, "selected" : false, "canonicalName" : "H2-DMb1", "xref" : "L:14999", "Degree" : 121, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.378769927255, "PValueLDLR16wkHighFatLDLRChow" : 0.059226276093, "name" : "L:14999", "entrezId" : "14999", "adjPValLDLR16wkHighFatLDLRChow" : 0.290728336225, "entrez" : "14999", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.04863288439, "shared_name" : "L:14999", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.376778012294, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.840445629245, "SUID" : 588952, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.601377908105, "logFCLDLRT0901317LDLR16wkHighFat" : 0.568745704885, "label" : "H2-DMb1", "go_all" : "antigen processing and presentation; antigen processing and presentation of exogenous peptide antigen via MHC class II; antigen processing and presentation of peptide or polysaccharide antigen via MHC class II; chaperone mediated protein folding requiring cofactor; integral to membrane; membrane; MHC class II protein complex" }, "position" : { "x" : 1507.7578125, "y" : 1883.8026123046875 }, "selected" : false }, { "data" : { "id" : "588517", "go_mf" : "GTPase activity; GTP binding; nucleotide binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.496866133558, "PValueLDLRT0901317LDLR16wkHighFat" : 6.1370325E-5, "goBP" : "actin cytoskeleton organization;chemotaxis;small GTPase mediated signal transduction;positive regulation of cell proliferation;cell projection assembly;bone resorption;regulation of respiratory burst", "GraphId" : "f54; a3f; bbf; ed0", "kwalksFromModule_T0901317_red" : "module.above.cutoff", "kwalksFromModule_Fenofibrate_magenta" : "module.none", "goids" : "GO:0030036;GO:0030036;GO:0006935;GO:0007264;GO:0008284;GO:0008284;GO:0030031;GO:0045453;GO:0060263;GO:0005622;GO:0016020;GO:0005624;GO:0005635;GO:0005737;GO:0000166;GO:0003924;GO:0005525", "red_GO" : "immune related", "kwalksFenofibratemagenta" : 0.06197982, "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 7.51058157E-4, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFECEC|FFBFBF", "XrefId" : "19354", "cytoscape_alias_list" : [ "19354" ], "kwalksT0901317darkturquoise" : 0.218971, "id_original" : "19354", "logFCLDLR16wkHighFatLDLRChow" : 0.145997138782, "selected" : false, "canonicalName" : "Rac2", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFECEC|FF9D9D", "identifier" : "L:19354", "xref" : "L:19354", "Degree" : 163, "module" : "red", "kwalksT0901317royalblue" : 0.1094191, "kwalksT0901317purple" : 0.112054, "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.160624130854, "PValueLDLR16wkHighFatLDLRChow" : 0.428535230559, "kwalksFromModule_T0901317_purple" : "module.none", "name" : "L:19354", "entrezId" : "19354", "adjPValLDLR16wkHighFatLDLRChow" : 0.742077736596, "moduleMembership" : 0.83821961116, "entrez" : "19354", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "isDrug" : "false", "kwalksFromModule_T0901317_royalblue" : "module.below.cutoff", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.383895948294, "kwalksT0901317magenta" : 0.1071506, "shared_name" : "L:19354", "ObjectType" : "DATANODE", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.765868962783, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.063175024524, "kwalksFromModule_T0901317_magenta" : "module.below.cutoff", "SUID" : 588517, "SourceDir" : "wikipathways_analysis", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.00799027876, "kwalksT0901317red" : 1.038145, "logFCLDLRT0901317LDLR16wkHighFat" : 0.767639853521, "label" : "Rac2", "go_all" : "actin cytoskeleton organization; actin cytoskeleton organization; bone resorption; cell projection assembly; chemotaxis; cytoplasm; GTPase activity; GTP binding; intracellular; membrane; membrane fraction; nuclear envelope; nucleotide binding; positive regulation of cell proliferation; positive regulation of cell proliferation; regulation of respiratory burst; small GTPase mediated signal transduction", "XrefStatus" : "mapped", "XrefDatasource" : "Entrez Gene", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFECEC|EAEAFF", "TFeActingComplex" : "", "SourcePathway" : "Mm_Regulation_of_Actin_Cytoskeleton_WP523_47746.gpml; Mm_Focal_Adhesion_WP85_41365.gpml; Mm_Integrin-mediated_cell_adhesion_WP6_41290.gpml; Mm_MAPK_signaling_pathway_WP493_47770.gpml; Mm_Insulin_Signaling_WP65_41286.gpml", "kwalksT0901317yellow" : 0.2974866, "kwalksFenofibratered" : 2.150447, "kwalksT0901317black" : 0.255974 }, "position" : { "x" : 1873.4544677734375, "y" : 1571.4681396484375 }, "selected" : false }, { "data" : { "id" : "587756", "go_mf" : "receptor activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.125689002774, "PValueLDLRT0901317LDLR16wkHighFat" : 9.98285915E-4, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.007888966987, "cytoscape_alias_list" : [ "14728" ], "id_original" : "14728", "logFCLDLR16wkHighFatLDLRChow" : 0.389637367686, "selected" : false, "canonicalName" : "Lilrb4", "xref" : "L:14728", "Degree" : 116, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.470195840536, "PValueLDLR16wkHighFatLDLRChow" : 0.046252768158, "name" : "L:14728", "entrezId" : "14728", "adjPValLDLR16wkHighFatLDLRChow" : 0.254592590846, "entrez" : "14728", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.016629656799, "shared_name" : "L:14728", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.24103039891, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.795305089734, "SUID" : 587756, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.516649929844, "logFCLDLRT0901317LDLR16wkHighFat" : 0.654316639476, "label" : "Lilrb4", "go_all" : "integral to membrane; membrane; plasma membrane; receptor activity" }, "position" : { "x" : 4249.12744140625, "y" : 1850.585205078125 }, "selected" : false }, { "data" : { "id" : "588855", "go_mf" : "molecular_function", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.194489567303, "PValueLDLRT0901317LDLR16wkHighFat" : 4.65099E-7, "adjPValLDLRT0901317LDLR16wkHighFat" : 1.1554744E-5, "cytoscape_alias_list" : [ "231507" ], "id_original" : "231507", "logFCLDLR16wkHighFatLDLRChow" : 0.340334200436, "selected" : false, "canonicalName" : "Plac8", "xref" : "L:231507", "Degree" : 335, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.4755850707, "PValueLDLR16wkHighFatLDLRChow" : 0.045145975865, "name" : "L:231507", "entrezId" : "231507", "adjPValLDLR16wkHighFatLDLRChow" : 0.251582429641, "entrez" : "231507", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.005533099589, "shared_name" : "L:231507", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.148678651117, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.575761087913, "SUID" : 588855, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.249181607805, "logFCLDLRT0901317LDLR16wkHighFat" : 0.903050157831, "label" : "Plac8", "go_all" : "biological_process; cellular_component; molecular_function" }, "position" : { "x" : 3612.53076171875, "y" : 2351.882568359375 }, "selected" : false }, { "data" : { "id" : "588789", "go_mf" : "molecular_function", "logFCLDLRFenofibrateLDLR16wkHighFat" : -0.070082701296, "PValueLDLRT0901317LDLR16wkHighFat" : 3.123519E-6, "adjPValLDLRT0901317LDLR16wkHighFat" : 5.9039024E-5, "cytoscape_alias_list" : [ "67893" ], "id_original" : "67893", "logFCLDLR16wkHighFatLDLRChow" : 1.019044578421, "selected" : false, "canonicalName" : "Tmem86a", "xref" : "L:67893", "Degree" : 400, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.844794619402, "PValueLDLR16wkHighFatLDLRChow" : 1.4105E-8, "name" : "L:67893", "entrezId" : "67893", "adjPValLDLR16wkHighFatLDLRChow" : 1.0398441E-5, "entrez" : "67893", "PValueLDLRLifeStyleLDLR16wkHighFat" : 1.500535E-6, "shared_name" : "L:67893", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 8.7397808E-4, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.875779763987, "SUID" : 588789, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.672678606715, "logFCLDLRT0901317LDLR16wkHighFat" : 0.815798002888, "label" : "Tmem86a", "go_all" : "biological_process; cellular_component; integral to membrane; membrane; molecular_function" }, "position" : { "x" : 3451.44140625, "y" : 2156.1318359375 }, "selected" : false }, { "data" : { "id" : "589005", "go_mf" : "metal ion binding; protein binding; zinc ion binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.211984565467, "PValueLDLRT0901317LDLR16wkHighFat" : 2.2809E-8, "goBP" : "NA", "GraphId" : "NA", "goids" : "NA", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 8.36133E-7, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFC6C6|FFE3E3", "XrefId" : "NA", "cytoscape_alias_list" : [ "13007" ], "id_original" : "13007", "logFCLDLR16wkHighFatLDLRChow" : 0.441000258316, "selected" : false, "canonicalName" : "NA", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFC6C6|FF8C8C", "identifier" : "NA", "xref" : "L:13007", "Degree" : 398, "module" : "red", "kwalksLifeStylered" : 0.1496649, "kwalksT0901317purple" : 0.02732888, "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.456814152042, "PValueLDLR16wkHighFatLDLRChow" : 0.003688925608, "name" : "L:13007", "entrezId" : "13007", "adjPValLDLR16wkHighFatLDLRChow" : 0.059195963385, "entrez" : "NA", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.002670137006, "shared_name" : "L:13007", "ObjectType" : "NA", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.100696821484, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.455586874436, "SUID" : 589005, "SourceDir" : "NA", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.156230492529, "kwalksFromModule_LifeStyle_red" : "module.below.cutoff", "logFCLDLRT0901317LDLR16wkHighFat" : 0.898850728331, "label" : "Csrp1", "go_all" : "actin cytoskeleton; actin cytoskeleton organization; metal ion binding; nucleus; protein binding; zinc ion binding", "XrefStatus" : "NA", "XrefDatasource" : "NA", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFC6C6|C4C4FF", "TFeActingComplex" : "NA", "SourcePathway" : "NA" }, "position" : { "x" : 3964.9453125, "y" : 2405.369873046875 }, "selected" : false }, { "data" : { "id" : "587982", "go_mf" : "molecular_function; phospholipid binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.331611620364, "PValueLDLRT0901317LDLR16wkHighFat" : 1.4494E-8, "goBP" : "NA", "GraphId" : "NA", "goids" : "NA", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 5.60039E-7, "XrefId" : "NA", "cytoscape_alias_list" : [ "102595" ], "id_original" : "102595", "logFCLDLR16wkHighFatLDLRChow" : 0.169203482886, "selected" : false, "canonicalName" : "NA", "identifier" : "NA", "xref" : "L:102595", "Degree" : 280, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.132891612746, "PValueLDLR16wkHighFatLDLRChow" : 0.221402041682, "name" : "L:102595", "entrezId" : "102595", "adjPValLDLR16wkHighFatLDLRChow" : 0.554157012175, "moduleMembership" : 0.924684855167, "entrez" : "NA", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.336189129095, "shared_name" : "L:102595", "ObjectType" : "NA", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.737799125897, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.112094546454, "SUID" : 587982, "SourceDir" : "NA", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.017671652011, "logFCLDLRT0901317LDLR16wkHighFat" : 0.846499256497, "label" : "Plekho2", "go_all" : "biological_process; cellular_component; molecular_function; phospholipid binding", "XrefStatus" : "NA", "XrefDatasource" : "NA", "TFeActingComplex" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.2965905 }, "position" : { "x" : 3423.35205078125, "y" : 1939.7738037109375 }, "selected" : false }, { "data" : { "id" : "587881", "go_mf" : "guanyl-nucleotide exchange factor activity; metal ion binding; phospholipid binding; protein binding; Rac guanyl-nucleotide exchange factor activity; Rho guanyl-nucleotide exchange factor activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.333954116086, "PValueLDLRT0901317LDLR16wkHighFat" : 1.9716679E-5, "goBP" : "intracellular signal transduction;phagocytosis;immune response;integrin-mediated signaling pathway;T cell differentiation;regulation of Rho protein signal transduction;T cell activation;regulation of GTPase activity;positive regulation of cell adhesion", "GraphId" : "fe1; d6c", "kwalksFromModule_Fenofibrate_magenta" : "module.none", "goids" : "GO:0035556;GO:0006909;GO:0006955;GO:0007229;GO:0030217;GO:0035023;GO:0042110;GO:0043087;GO:0045785;GO:0005622;GO:0005515;GO:0005085;GO:0005089;GO:0046872;GO:0005543;GO:0030676", "red_GO" : "immune related", "kwalksFenofibratemagenta" : 0.0239217, "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 2.88432085E-4, "XrefId" : "22324", "cytoscape_alias_list" : [ "22324" ], "id_original" : "22324", "logFCLDLR16wkHighFatLDLRChow" : 0.339844607343, "selected" : false, "canonicalName" : "Vav1", "identifier" : "L:22324", "xref" : "L:22324", "Degree" : 357, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.327936634248, "PValueLDLR16wkHighFatLDLRChow" : 0.019654975138, "name" : "L:22324", "entrezId" : "22324", "adjPValLDLR16wkHighFatLDLRChow" : 0.157008339034, "moduleMembership" : 0.918011291546, "entrez" : "22324", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.02425001634, "shared_name" : "L:22324", "ObjectType" : "DATANODE", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.283328302563, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.130481523965, "SUID" : 587881, "SourceDir" : "wikipathways_analysis", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.021821595322, "logFCLDLRT0901317LDLR16wkHighFat" : 0.641737532783, "label" : "Vav1", "go_all" : "guanyl-nucleotide exchange factor activity; immune response; integrin-mediated signaling pathway; intracellular; intracellular signal transduction; metal ion binding; phagocytosis; phospholipid binding; positive regulation of cell adhesion; protein binding; Rac guanyl-nucleotide exchange factor activity; regulation of GTPase activity; regulation of Rho protein signal transduction; Rho guanyl-nucleotide exchange factor activity; T cell activation; T cell differentiation", "XrefStatus" : "mapped", "XrefDatasource" : "Entrez Gene", "TFeActingComplex" : "", "SourcePathway" : "Mm_Regulation_of_Actin_Cytoskeleton_WP523_47746.gpml; Mm_Focal_Adhesion_WP85_41365.gpml", "kwalksFenofibratered" : 0.8475315 }, "position" : { "x" : 2124.736083984375, "y" : 1786.0828857421875 }, "selected" : false }, { "data" : { "id" : "588860", "go_mf" : "IgE binding; IgE binding; IgE receptor activity; IgE receptor activity; IgG binding; protein binding; receptor activity; transmembrane signaling receptor activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.461848954478, "PValueLDLRT0901317LDLR16wkHighFat" : 4.2114E-8, "goBP" : "positive regulation of type IIa hypersensitivity;positive regulation of type III hypersensitivity;positive regulation of type I hypersensitivity;neutrophil activation involved in immune response;Fc receptor mediated stimulatory signaling pathway;serotonin secretion by platelet;defense response to bacterium;signal transduction;phagocytosis, engulfment;cell surface receptor signaling pathway;integrin-mediated signaling pathway;regulation of platelet activation;immunoglobulin mediated immune response;antigen processing and presentation of exogenous peptide antigen via MHC class II;neutrophil chemotaxis;positive regulation of interleukin-10 production;positive regulation of interleukin-6 production;positive regulation of tumor necrosis factor production;positive regulation of mast cell cytokine production;negative regulation of mast cell apoptosis;antigen processing and presentation of exogenous peptide antigen via MHC class I;positive regulation of mast cell degranulation;mast cell activation;positive regulation of phagocytosis;regulation of immune response;positive regulation of immune response", "GraphId" : "", "kwalksFromModule_T0901317_red" : "module.below.cutoff", "kwalksFromModule_Fenofibrate_magenta" : "module.none", "goids" : "GO:0001798;GO:0001805;GO:0001812;GO:0002283;GO:0002431;GO:0002554;GO:0042742;GO:0007165;GO:0007165;GO:0006911;GO:0007166;GO:0007166;GO:0007229;GO:0010543;GO:0016064;GO:0019886;GO:0030593;GO:0032733;GO:0032755;GO:0032755;GO:0032760;GO:0032760;GO:0032765;GO:0032765;GO:0033026;GO:0033026;GO:0042590;GO:0043306;GO:0043306;GO:0045576;GO:0045576;GO:0050766;GO:0050776;GO:0050778;GO:0005886;GO:0016020;GO:0016021;GO:0005887;GO:0009897;GO:0032998;GO:0045121;GO:0005515;GO:0004872;GO:0004888;GO:0019767;GO:0019767;GO:0019863;GO:0019863;GO:0019864", "red_GO" : "immune related", "kwalksFenofibratemagenta" : 0.002492045, "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 1.41212E-6, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFD8D8|FFC4C4", "XrefId" : "", "cytoscape_alias_list" : [ "14127" ], "id_original" : "14127", "logFCLDLR16wkHighFatLDLRChow" : 0.303395795036, "selected" : false, "canonicalName" : "Fcer1g", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFD8D8|FF7C7C", "identifier" : "L:14127", "xref" : "L:14127", "Degree" : 346, "module" : "red", "kwalksLifeStylered" : 0.1503086, "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.415394767771, "PValueLDLR16wkHighFatLDLRChow" : 0.08203875056, "name" : "L:14127", "entrezId" : "14127", "adjPValLDLR16wkHighFatLDLRChow" : 0.34569705019, "moduleMembership" : 0.961512288818, "entrez" : "14127", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.017982481089, "shared_name" : "L:14127", "ObjectType" : "", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.249078792861, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.067720607946, "SUID" : 588860, "SourceDir" : "", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.008733142116, "kwalksFromModule_LifeStyle_red" : "module.below.cutoff", "kwalksT0901317red" : 0.1242817, "logFCLDLRT0901317LDLR16wkHighFat" : 1.02308193072, "label" : "Fcer1g", "go_all" : "antigen processing and presentation of exogenous peptide antigen via MHC class I; antigen processing and presentation of exogenous peptide antigen via MHC class II; cell surface receptor signaling pathway; cell surface receptor signaling pathway; defense response to bacterium; external side of plasma membrane; Fc-epsilon receptor I complex; Fc receptor mediated stimulatory signaling pathway; IgE binding; IgE binding; IgE receptor activity; IgE receptor activity; IgG binding; immunoglobulin mediated immune response; integral to membrane; integral to plasma membrane; integrin-mediated signaling pathway; mast cell activation; mast cell activation; membrane; membrane raft; negative regulation of mast cell apoptosis; negative regulation of mast cell apoptosis; neutrophil activation involved in immune response; neutrophil chemotaxis; phagocytosis, engulfment; plasma membrane; positive regulation of immune response; positive regulation of interleukin-10 production; positive regulation of interleukin-6 production; positive regulation of interleukin-6 production; positive regulation of mast cell cytokine production; positive regulation of mast cell cytokine production; positive regulation of mast cell degranulation; positive regulation of mast cell degranulation; positive regulation of phagocytosis; positive regulation of tumor necrosis factor production; positive regulation of tumor necrosis factor production; positive regulation of type I hypersensitivity; positive regulation of type IIa hypersensitivity; positive regulation of type III hypersensitivity; protein binding; receptor activity; regulation of immune response; regulation of platelet activation; serotonin secretion by platelet; signal transduction; signal transduction; transmembrane signaling receptor activity", "XrefStatus" : "", "XrefDatasource" : "", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFD8D8|CACAFF", "TFeActingComplex" : "", "SourcePathway" : "", "kwalksFenofibratered" : 0.3158003 }, "position" : { "x" : 1600.3787841796875, "y" : 2107.409423828125 }, "selected" : false }, { "data" : { "id" : "588728", "go_mf" : "molecular_function", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.17685320061, "PValueLDLRT0901317LDLR16wkHighFat" : 2.543E-9, "adjPValLDLRT0901317LDLR16wkHighFat" : 1.17419E-7, "cytoscape_alias_list" : [ "382062" ], "id_original" : "382062", "logFCLDLR16wkHighFatLDLRChow" : 0.017579261351, "selected" : false, "canonicalName" : "AB124611", "xref" : "L:382062", "Degree" : 240, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.437754554037, "PValueLDLR16wkHighFatLDLRChow" : 0.909121879847, "name" : "L:382062", "entrezId" : "382062", "adjPValLDLR16wkHighFatLDLRChow" : 0.973295978642, "entrez" : "382062", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.005287299662, "shared_name" : "L:382062", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.144857272611, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.57943819566, "SUID" : 588728, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.252320536937, "logFCLDLRT0901317LDLR16wkHighFat" : 1.002783804831, "label" : "AB124611", "go_all" : "biological_process; cellular_component; integral to membrane; membrane; molecular_function" }, "position" : { "x" : 4152.30517578125, "y" : 1695.96630859375 }, "selected" : false }, { "data" : { "id" : "589353", "go_mf" : "metal ion binding; molecular_function; zinc ion binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.418764886714, "PValueLDLRT0901317LDLR16wkHighFat" : 1.5566331E-5, "goBP" : "NA", "GraphId" : "NA", "goids" : "NA", "red_GO" : "adhesion, structure", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 2.37205551E-4, "XrefId" : "NA", "cytoscape_alias_list" : [ "74202" ], "id_original" : "74202", "logFCLDLR16wkHighFatLDLRChow" : 0.495327020036, "selected" : false, "canonicalName" : "NA", "identifier" : "NA", "xref" : "L:74202", "Degree" : 334, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.48478335391, "PValueLDLR16wkHighFatLDLRChow" : 0.008063013104, "name" : "L:74202", "entrezId" : "74202", "adjPValLDLR16wkHighFatLDLRChow" : 0.094021183503, "moduleMembership" : 0.862230722929, "entrez" : "NA", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.00946330289, "shared_name" : "L:74202", "ObjectType" : "NA", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.184640076, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.14073277838, "SUID" : 589353, "SourceDir" : "NA", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.024406804343, "logFCLDLRT0901317LDLR16wkHighFat" : 0.831421320523, "label" : "Fblim1", "go_all" : "biological_process; cell adhesion; cell junction; cytoplasm; cytoskeleton; intracellular membrane-bounded organelle; metal ion binding; molecular_function; regulation of cell shape; zinc ion binding", "XrefStatus" : "NA", "XrefDatasource" : "NA", "TFeActingComplex" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.3001196 }, "position" : { "x" : 113.48570251464844, "y" : 1876.06396484375 }, "selected" : false }, { "data" : { "id" : "587783", "go_mf" : "actin binding; calmodulin binding; protein binding; protein kinase C binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.267898942045, "PValueLDLRT0901317LDLR16wkHighFat" : 3.4E-11, "goBP" : "", "GraphId" : "", "goids" : "GO:0016020;GO:0005737;GO:0005737;GO:0005813;GO:0005856;GO:0005938;GO:0042585;GO:0005515;GO:0003779;GO:0005080;GO:0005516", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 2.709E-9, "XrefId" : "", "cytoscape_alias_list" : [ "17118" ], "id_original" : "17118", "logFCLDLR16wkHighFatLDLRChow" : 0.131091661406, "selected" : false, "canonicalName" : "", "identifier" : "L:17118", "xref" : "L:17118", "Degree" : 376, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.155169513498, "PValueLDLR16wkHighFatLDLRChow" : 0.17954448158, "name" : "L:17118", "entrezId" : "17118", "adjPValLDLR16wkHighFatLDLRChow" : 0.503750601646, "moduleMembership" : 0.90755282132, "entrez" : "17118", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.112758869634, "shared_name" : "L:17118", "ObjectType" : "", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.520166026362, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.055948328605, "SUID" : 587783, "SourceDir" : "", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.006809430303, "logFCLDLRT0901317LDLR16wkHighFat" : 0.720002098825, "label" : "Marcks", "go_all" : "actin binding; calmodulin binding; cell cortex; centrosome; cytoplasm; cytoplasm; cytoskeleton; germinal vesicle; membrane; protein binding; protein kinase C binding", "XrefStatus" : "", "XrefDatasource" : "", "TFeActingComplex" : "", "SourcePathway" : "", "kwalksFenofibratered" : 0.2865219 }, "position" : { "x" : 3554.826171875, "y" : 1683.10791015625 }, "selected" : false }, { "data" : { "id" : "588785", "go_mf" : "GTP binding; nucleotide binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.216685740524, "PValueLDLRT0901317LDLR16wkHighFat" : 2.5826114E-5, "adjPValLDLRT0901317LDLR16wkHighFat" : 3.61657583E-4, "cytoscape_alias_list" : [ "226421" ], "id_original" : "226421", "logFCLDLR16wkHighFatLDLRChow" : 0.394459935822, "selected" : false, "canonicalName" : "5430435G22Rik", "xref" : "L:226421", "Degree" : 215, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.143319241233, "PValueLDLR16wkHighFatLDLRChow" : 0.016715944036, "name" : "L:226421", "entrezId" : "226421", "adjPValLDLR16wkHighFatLDLRChow" : 0.143132575365, "entrez" : "226421", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.378865048357, "shared_name" : "L:226421", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.762948921856, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.494373612591, "SUID" : 588785, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.18441919343, "logFCLDLRT0901317LDLR16wkHighFat" : 0.714453994135, "label" : "5430435G22Rik", "go_all" : "GTP binding; lysosome; nucleotide binding; protein transport; small GTPase mediated signal transduction; transport" }, "position" : { "x" : 3429.6484375, "y" : 2085.9912109375 }, "selected" : false }, { "data" : { "id" : "588227", "go_mf" : "GTPase activity; GTP binding; nucleotide binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.037034771698, "PValueLDLRT0901317LDLR16wkHighFat" : 0.139524225458, "red_GO" : "primary metabolic", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.26491383303, "cytoscape_alias_list" : [ "14469" ], "id_original" : "14469", "logFCLDLR16wkHighFatLDLRChow" : 0.513214539966, "selected" : false, "canonicalName" : "Gbp2", "xref" : "L:14469", "Degree" : 129, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.475431405767, "PValueLDLR16wkHighFatLDLRChow" : 0.158705152871, "name" : "L:14469", "entrezId" : "14469", "adjPValLDLR16wkHighFatLDLRChow" : 0.337043973045, "entrez" : "14469", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.04466519834, "shared_name" : "L:14469", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.342143240231, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.914161651698, "SUID" : 588227, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.768417509663, "logFCLDLRT0901317LDLR16wkHighFat" : 0.501152388081, "label" : "Gbp2", "go_all" : "adhesion to symbiont; cellular response to interferon-beta; cellular response to interferon-gamma; cellular response to lipopolysaccharide; cytoplasmic vesicle; defense response to Gram-positive bacterium; defense response to protozoan; GTPase activity; GTP binding; membrane; nucleotide binding; plasma membrane; symbiont-containing vacuole membrane" }, "position" : { "x" : 2984.887451171875, "y" : 1931.958251953125 }, "selected" : false }, { "data" : { "id" : "588457", "go_mf" : "CCR1 chemokine receptor binding; CCR1 chemokine receptor binding; CCR5 chemokine receptor binding; chemoattractant activity; chemokine activity; chemokine receptor antagonist activity; chemokine receptor binding; cytokine activity; heparin binding; phosphatidylinositol phospholipase C activity; phospholipase activator activity; protein homodimerization activity; protein kinase activity; protein self-association; receptor signaling protein tyrosine kinase activator activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : -0.201009503727, "PValueLDLRT0901317LDLR16wkHighFat" : 0.057545637581, "goBP" : "MAPK cascade;positive regulation of defense response to virus by host;protein phosphorylation;calcium ion transport;cellular calcium ion homeostasis;exocytosis;chemotaxis;inflammatory response;immune response;leukocyte cell-cell adhesion;cell-cell signaling;response to toxin;positive regulation of gene expression;positive regulation of macrophage chemotaxis;positive regulation of T cell chemotaxis;positive regulation of phosphatidylinositol 3-kinase cascade;positive regulation of smooth muscle cell migration;negative regulation of G-protein coupled receptor protein signaling pathway;positive regulation of cell migration;pseudopodium assembly;positive regulation of cellular biosynthetic process;activation of phospholipase D activity;positive regulation of fever generation;lipopolysaccharide-mediated signaling pathway;positive regulation of cell-cell adhesion mediated by integrin;response to cytokine stimulus;positive regulation of homotypic cell-cell adhesion;response to interferon-gamma;response to tumor necrosis factor;positive regulation of T cell proliferation;neutrophil activation;positive regulation of phosphorylation;positive regulation of tyrosine phosphorylation of STAT protein;protein kinase B signaling cascade;neuroprotection;cellular protein complex assembly;negative regulation by host of viral transcription;negative regulation of viral genome replication;positive regulation of neuron differentiation;positive regulation of osteoclast differentiation;positive regulation of angiogenesis;positive regulation of cell adhesion;eosinophil chemotaxis;lymphocyte chemotaxis;positive regulation of smooth muscle cell proliferation;regulation of T cell activation;diapedesis;positive chemotaxis;protein tetramerization;positive regulation of calcium ion transport;negative regulation of cell death;positive regulation of mast cell chemotaxis;negative regulation of chemokine-mediated signaling pathway;negative regulation of T cell apoptosis;positive regulation of T cell apoptosis;cellular response to organic cyclic compound;positive regulation of monocyte chemotaxis;negative regulation of macrophage apoptosis;positive regulation of chemokine (C-X-C motif) ligand 2 production;positive regulation of natural killer cell chemotaxis", "kwalksLifeStyledarkturquoise" : 0.08476031, "GraphId" : "d99bc", "kwalksLifeStyleyellow" : 0.1110963, "goids" : "GO:0000165;GO:0002230;GO:0006468;GO:0006816;GO:0006874;GO:0006887;GO:0006935;GO:0006954;GO:0006955;GO:0007159;GO:0007267;GO:0009636;GO:0010628;GO:0010759;GO:0010820;GO:0014068;GO:0014911;GO:0045744;GO:0030335;GO:0031269;GO:0031328;GO:0031584;GO:0031622;GO:0031663;GO:0033634;GO:0034097;GO:0034112;GO:0034341;GO:0034612;GO:0042102;GO:0042119;GO:0042327;GO:0042531;GO:0043491;GO:0043526;GO:0043623;GO:0043922;GO:0045071;GO:0045666;GO:0045672;GO:0045766;GO:0045785;GO:0048245;GO:0048247;GO:0048661;GO:0050863;GO:0050904;GO:0050918;GO:0051262;GO:0051928;GO:0060548;GO:0060754;GO:0070100;GO:0070233;GO:0070234;GO:0071407;GO:0090026;GO:0090026;GO:2000110;GO:2000343;GO:2000503;GO:0005576;GO:0005615;GO:0005625;GO:0005737;GO:0004435;GO:0004672;GO:0005125;GO:0008009;GO:0008201;GO:0016004;GO:0030298;GO:0031726;GO:0031726;GO:0031730;GO:0042056;GO:0042379;GO:0042803;GO:0043621;GO:0046817", "red_GO" : "immune + inflammation related", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.187091729709, "XrefId" : "20304", "cytoscape_alias_list" : [ "20304" ], "id_original" : "20304", "logFCLDLR16wkHighFatLDLRChow" : 0.904583662841, "selected" : false, "canonicalName" : "CCL5 , Ccl5", "identifier" : "L:20304", "xref" : "L:20304", "Degree" : 54, "module" : "red", "kwalksLifeStylered" : 0.3913882, "kwalksFromModule_LifeStyle_yellow" : "module.below.cutoff", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.637924123342, "PValueLDLR16wkHighFatLDLRChow" : 8.7895079E-4, "name" : "L:20304", "entrezId" : "20304", "adjPValLDLR16wkHighFatLDLRChow" : 0.025315714519, "moduleMembership" : 0.770111118867, "entrez" : "20304", "kwalksFromModule_LifeStyle_darkturquoise" : "module.below.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.017431163524, "shared_name" : "L:20304", "ObjectType" : "DATANODE", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.246133735905, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.74880221948, "SUID" : 588457, "kwalksLifeStylepurple" : 0.08962459, "SourceDir" : "wikipathways_analysis", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.448158407264, "kwalksFromModule_LifeStyle_red" : "module.above.cutoff", "logFCLDLRT0901317LDLR16wkHighFat" : 0.507030933445, "label" : "Ccl5", "go_all" : "activation of phospholipase D activity; calcium ion transport; CCR1 chemokine receptor binding; CCR1 chemokine receptor binding; CCR5 chemokine receptor binding; cell-cell signaling; cellular calcium ion homeostasis; cellular protein complex assembly; cellular response to organic cyclic compound; chemoattractant activity; chemokine activity; chemokine receptor antagonist activity; chemokine receptor binding; chemotaxis; cytokine activity; cytoplasm; diapedesis; eosinophil chemotaxis; exocytosis; extracellular region; extracellular space; heparin binding; immune response; inflammatory response; leukocyte cell-cell adhesion; lipopolysaccharide-mediated signaling pathway; lymphocyte chemotaxis; MAPK cascade; negative regulation by host of viral transcription; negative regulation of cell death; negative regulation of chemokine-mediated signaling pathway; negative regulation of G-protein coupled receptor protein signaling pathway; negative regulation of macrophage apoptosis; negative regulation of T cell apoptosis; negative regulation of viral genome replication; neuroprotection; neutrophil activation; phosphatidylinositol phospholipase C activity; phospholipase activator activity; positive chemotaxis; positive regulation of angiogenesis; positive regulation of calcium ion transport; positive regulation of cell adhesion; positive regulation of cell-cell adhesion mediated by integrin; positive regulation of cell migration; positive regulation of cellular biosynthetic process; positive regulation of chemokine (C-X-C motif) ligand 2 production; positive regulation of defense response to virus by host; positive regulation of fever generation; positive regulation of gene expression; positive regulation of homotypic cell-cell adhesion; positive regulation of macrophage chemotaxis; positive regulation of mast cell chemotaxis; positive regulation of monocyte chemotaxis; positive regulation of monocyte chemotaxis; positive regulation of natural killer cell chemotaxis; positive regulation of neuron differentiation; positive regulation of osteoclast differentiation; positive regulation of phosphatidylinositol 3-kinase cascade; positive regulation of phosphorylation; positive regulation of smooth muscle cell migration; positive regulation of smooth muscle cell proliferation; positive regulation of T cell apoptosis; positive regulation of T cell chemotaxis; positive regulation of T cell proliferation; positive regulation of tyrosine phosphorylation of STAT protein; protein homodimerization activity; protein kinase activity; protein kinase B signaling cascade; protein phosphorylation; protein self-association; protein tetramerization; pseudopodium assembly; receptor signaling protein tyrosine kinase activator activity; regulation of T cell activation; response to cytokine stimulus; response to interferon-gamma; response to toxin; response to tumor necrosis factor; soluble fraction", "XrefStatus" : "mapped", "XrefDatasource" : "Entrez Gene", "TFeActingComplex" : "", "kwalksFromModule_LifeStyle_purple" : "module.below.cutoff", "SourcePathway" : "Mm_EBV_LMP1_signaling_WP1243_41295.gpml" }, "position" : { "x" : 893.8667602539062, "y" : 1953.8123779296875 }, "selected" : false }, { "data" : { "id" : "587818", "go_mf" : "disulfide oxidoreductase activity; oxidoreductase activity; oxidoreductase activity, acting on a sulfur group of donors", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.392581879088, "PValueLDLRT0901317LDLR16wkHighFat" : 8.582878E-6, "red_GO" : "immune related", "adjPValLDLRT0901317LDLR16wkHighFat" : 1.28669549E-4, "cytoscape_alias_list" : [ "65972" ], "id_original" : "65972", "logFCLDLR16wkHighFatLDLRChow" : 0.136089218023, "selected" : false, "canonicalName" : "Ifi30", "xref" : "L:65972", "Degree" : 386, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.164726836404, "PValueLDLR16wkHighFatLDLRChow" : 0.369648228455, "name" : "L:65972", "entrezId" : "65972", "adjPValLDLR16wkHighFatLDLRChow" : 0.696866038825, "entrez" : "65972", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.280182512247, "shared_name" : "L:65972", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.696931707321, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.213625323438, "SUID" : 587818, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.066532250245, "logFCLDLRT0901317LDLR16wkHighFat" : 1.010044322364, "label" : "Ifi30", "go_all" : "antigen processing and presentation of exogenous peptide antigen via MHC class I; antigen processing and presentation of exogenous peptide antigen via MHC class II; cell junction; disulfide oxidoreductase activity; extracellular region; intracellular membrane-bounded organelle; lysosome; lysosome; negative regulation of fibroblast proliferation; oxidation-reduction process; oxidoreductase activity; oxidoreductase activity, acting on a sulfur group of donors; plasma membrane; protein stabilization" }, "position" : { "x" : 1542.224609375, "y" : 1740.2381591796875 }, "selected" : false }, { "data" : { "id" : "588213", "go_mf" : "metal ion binding; zinc ion binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.167226824972, "PValueLDLRT0901317LDLR16wkHighFat" : 2.9528388E-5, "adjPValLDLRT0901317LDLR16wkHighFat" : 4.03093251E-4, "cytoscape_alias_list" : [ "30794" ], "id_original" : "30794", "logFCLDLR16wkHighFatLDLRChow" : 0.195430977619, "selected" : false, "canonicalName" : "Pdlim4", "xref" : "L:30794", "Degree" : 169, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.177336836097, "PValueLDLR16wkHighFatLDLRChow" : 0.166827636598, "name" : "L:30794", "entrezId" : "30794", "adjPValLDLR16wkHighFatLDLRChow" : 0.488852524737, "entrez" : "30794", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.209298619313, "shared_name" : "L:30794", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.637626905718, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.560537584885, "SUID" : 588213, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.236246695826, "logFCLDLRT0901317LDLR16wkHighFat" : 0.613562867028, "label" : "Pdlim4", "go_all" : "metal ion binding; zinc ion binding" }, "position" : { "x" : 3782.89306640625, "y" : 1572.4117431640625 }, "selected" : false }, { "data" : { "id" : "589113", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.413823526427, "PValueLDLRT0901317LDLR16wkHighFat" : 0.099849881478, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.212913684061, "cytoscape_alias_list" : [ "109225" ], "id_original" : "109225", "logFCLDLR16wkHighFatLDLRChow" : 0.459926884239, "selected" : false, "canonicalName" : "Ms4a7", "xref" : "L:109225", "Degree" : 194, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.04278152786, "PValueLDLR16wkHighFatLDLRChow" : 0.178218294069, "name" : "L:109225", "entrezId" : "109225", "adjPValLDLR16wkHighFatLDLRChow" : 0.394681108148, "entrez" : "109225", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.286936987205, "shared_name" : "L:109225", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.703140284801, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.465274476709, "SUID" : 589113, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.309863749983, "logFCLDLRT0901317LDLR16wkHighFat" : 0.823018243719, "label" : "Ms4a7" }, "position" : { "x" : 3819.438720703125, "y" : 2421.08544921875 }, "selected" : false }, { "data" : { "id" : "588151", "go_mf" : "CCR1 chemokine receptor binding; CCR5 chemokine receptor binding; chemokine activity; cytokine activity; protein binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.221787312561, "PValueLDLRT0901317LDLR16wkHighFat" : 0.00570929571, "goBP" : "chemotaxis;inflammatory response;immune response;response to toxin;leukocyte chemotaxis;positive regulation of tumor necrosis factor production;positive regulation of vascular permeability;negative regulation by host of viral transcription;positive regulation of calcium-mediated signaling;positive regulation of calcium ion transport;positive regulation of natural killer cell chemotaxis", "GraphId" : "", "kwalksFromModule_T0901317_red" : "module.above.cutoff", "goids" : "GO:0006935;GO:0006954;GO:0006955;GO:0009636;GO:0030595;GO:0032760;GO:0043117;GO:0043922;GO:0050850;GO:0051928;GO:2000503;GO:0005576;GO:0005615;GO:0005625;GO:0005515;GO:0005125;GO:0008009;GO:0031726;GO:0031730", "red_GO" : "immune + inflammation related", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.031228771905, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFA6A6|FFE2E2", "XrefId" : "", "cytoscape_alias_list" : [ "20303" ], "id_original" : "20303", "logFCLDLR16wkHighFatLDLRChow" : 0.693395177985, "selected" : false, "canonicalName" : "CCL4, Ccl4", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFA6A6|FF9C9C", "identifier" : "L:20303", "xref" : "L:20303", "Degree" : 213, "module" : "red", "kwalksT0901317purple" : 0.04845143, "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.878512685382, "PValueLDLR16wkHighFatLDLRChow" : 0.291597620259, "kwalksFromModule_T0901317_purple" : "module.none", "name" : "L:20303", "entrezId" : "20303", "adjPValLDLR16wkHighFatLDLRChow" : 0.420336444445, "moduleMembership" : 0.891814924158, "entrez" : "20303", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.105053419756, "kwalksT0901317magenta" : 0.04857475, "shared_name" : "L:20303", "ObjectType" : "", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.320274850262, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.641005342503, "SUID" : 588151, "SourceDir" : "", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.429264905201, "kwalksT0901317red" : 0.4994196, "logFCLDLRT0901317LDLR16wkHighFat" : 0.77189542756, "label" : "Ccl4", "go_all" : "CCR1 chemokine receptor binding; CCR5 chemokine receptor binding; chemokine activity; chemotaxis; cytokine activity; extracellular region; extracellular space; immune response; inflammatory response; leukocyte chemotaxis; negative regulation by host of viral transcription; positive regulation of calcium ion transport; positive regulation of calcium-mediated signaling; positive regulation of natural killer cell chemotaxis; positive regulation of tumor necrosis factor production; positive regulation of vascular permeability; protein binding; response to toxin; soluble fraction", "XrefStatus" : "", "XrefDatasource" : "", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFA6A6|8E8EFF", "TFeActingComplex" : "", "SourcePathway" : "" }, "position" : { "x" : 973.9495239257812, "y" : 1945.395263671875 }, "selected" : false }, { "data" : { "id" : "588740", "go_mf" : "1-phosphatidylinositol binding; fibronectin binding; laminin binding; lipid binding; PDZ domain binding; phospholipid binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : -0.01636740256, "PValueLDLRT0901317LDLR16wkHighFat" : 0.001767667702, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.012723500147, "cytoscape_alias_list" : [ "83436" ], "id_original" : "83436", "logFCLDLR16wkHighFatLDLRChow" : 0.272301840853, "selected" : false, "canonicalName" : "Plekha2", "xref" : "L:83436", "Degree" : 102, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.2525555765, "PValueLDLR16wkHighFatLDLRChow" : 0.0187974254, "name" : "L:83436", "entrezId" : "83436", "adjPValLDLR16wkHighFatLDLRChow" : 0.153323813191, "entrez" : "83436", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.029022954742, "shared_name" : "L:83436", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.3073151695, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.962859144079, "SUID" : 588740, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.886185621225, "logFCLDLRT0901317LDLR16wkHighFat" : 0.366189699705, "label" : "Plekha2", "go_all" : "1-phosphatidylinositol binding; cytoplasm; fibronectin binding; laminin binding; lipid binding; membrane; nucleus; PDZ domain binding; phospholipid binding; plasma membrane; positive regulation of cell-matrix adhesion; protein complex" }, "position" : { "x" : 3420.192138671875, "y" : 1976.3958740234375 }, "selected" : false }, { "data" : { "id" : "587952", "go_mf" : "beta-glucuronidase activity; beta-glucuronidase activity; catalytic activity; cation binding; hydrolase activity; hydrolase activity, acting on glycosyl bonds; hydrolase activity, hydrolyzing O-glycosyl compounds; sugar binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : -0.014844388141, "PValueLDLRT0901317LDLR16wkHighFat" : 0.013452955481, "red_GO" : "primary metabolic", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.051413663295, "cytoscape_alias_list" : [ "110006" ], "id_original" : "110006", "logFCLDLR16wkHighFatLDLRChow" : 0.215285227075, "selected" : false, "canonicalName" : "Gusb", "xref" : "L:110006", "Degree" : 163, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.150993789966, "PValueLDLR16wkHighFatLDLRChow" : 0.237140164783, "name" : "L:110006", "entrezId" : "110006", "adjPValLDLR16wkHighFatLDLRChow" : 0.487478178976, "entrez" : "110006", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.39266759381, "shared_name" : "L:110006", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.664363481677, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.886325151262, "SUID" : 587952, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.725794622749, "logFCLDLRT0901317LDLR16wkHighFat" : 0.46086926804, "label" : "Gusb", "go_all" : "beta-glucuronidase activity; beta-glucuronidase activity; carbohydrate metabolic process; catalytic activity; cation binding; endoplasmic reticulum; hydrolase activity; hydrolase activity, acting on glycosyl bonds; hydrolase activity, hydrolyzing O-glycosyl compounds; intracellular membrane-bounded organelle; lysosome; lysosome; metabolic process; microsome; soluble fraction; sugar binding" }, "position" : { "x" : 2828.7919921875, "y" : 2042.142578125 }, "selected" : false }, { "data" : { "id" : "587975", "go_mf" : "peptide antigen binding; protein binding; protein heterodimerization activity; repressing transcription factor binding; toxin binding; transcription factor binding; ubiquitin protein ligase binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.335813257279, "PValueLDLRT0901317LDLR16wkHighFat" : 4.1900806E-5, "red_GO" : "immune related", "adjPValLDLRT0901317LDLR16wkHighFat" : 5.41653275E-4, "cytoscape_alias_list" : [ "14961" ], "id_original" : "14961", "logFCLDLR16wkHighFatLDLRChow" : 0.244220169583, "selected" : false, "canonicalName" : "H2-Ab1", "xref" : "L:14961", "Degree" : 122, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.046645436523, "PValueLDLR16wkHighFatLDLRChow" : 0.353194468621, "name" : "L:14961", "entrezId" : "14961", "adjPValLDLR16wkHighFatLDLRChow" : 0.680048544363, "entrez" : "14961", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.828927240345, "shared_name" : "L:14961", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.955521077449, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.514358852814, "SUID" : 587975, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.20061263474, "logFCLDLRT0901317LDLR16wkHighFat" : 1.111758931885, "label" : "H2-Ab1", "go_all" : "antigen processing and presentation; antigen processing and presentation of exogenous peptide antigen via MHC class II; antigen processing and presentation of peptide antigen; antigen processing and presentation of peptide or polysaccharide antigen via MHC class II; B cell affinity maturation; cell surface; cellular response to interferon-gamma; early endosome; external side of plasma membrane; Golgi apparatus; immune response; integral to membrane; intracellular; membrane; MHC class II protein complex; multivesicular body; negative regulation of T cell proliferation; peptide antigen binding; plasma membrane; positive regulation of alpha-beta T cell activation; positive regulation of alpha-beta T cell activation; positive regulation of alpha-beta T cell activation; positive regulation of antigen processing and presentation; positive regulation of T-helper 1 type immune response; protein binding; protein heterodimerization activity; repressing transcription factor binding; toxin binding; transcription factor binding; ubiquitin protein ligase binding" }, "position" : { "x" : 1523.235107421875, "y" : 1981.5223388671875 }, "selected" : false }, { "data" : { "id" : "589335", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.453599189242, "PValueLDLRT0901317LDLR16wkHighFat" : 2.0798E-8, "goBP" : "inflammatory response;innate immune response", "GraphId" : "", "goids" : "GO:0006954;GO:0045087;GO:0005576", "red_GO" : "immune + inflammation related", "kwalksFenofibratemagenta" : 0.002294119, "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 7.72223E-7, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFC4C4|FFC5C5", "XrefId" : "", "cytoscape_alias_list" : [ "17084" ], "id_original" : "17084", "logFCLDLR16wkHighFatLDLRChow" : 0.462682566504, "selected" : false, "canonicalName" : "NA", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFC4C4|FF7C7C", "identifier" : "L:17084", "xref" : "L:17084", "Degree" : 376, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.666477468917, "PValueLDLR16wkHighFatLDLRChow" : 0.007287236833, "name" : "L:17084", "entrezId" : "17084", "adjPValLDLR16wkHighFatLDLRChow" : 0.088085385429, "moduleMembership" : 0.946591902499, "entrez" : "17084", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 1.46437672E-4, "shared_name" : "L:17084", "ObjectType" : "", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.022573153301, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.066216683528, "SUID" : 589335, "SourceDir" : "", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.008476038658, "logFCLDLRT0901317LDLR16wkHighFat" : 1.026917636587, "label" : "Ly86", "go_all" : "extracellular region; inflammatory response; innate immune response", "XrefStatus" : "", "XrefDatasource" : "", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFC4C4|AAAAFF", "TFeActingComplex" : "", "SourcePathway" : "", "kwalksFenofibratered" : 0.3076886 }, "position" : { "x" : 893.8667602539062, "y" : 1568.6356201171875 }, "selected" : false }, { "data" : { "id" : "588291", "go_mf" : "molecular_function; receptor activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.256770998718, "PValueLDLRT0901317LDLR16wkHighFat" : 5.4791002E-5, "adjPValLDLRT0901317LDLR16wkHighFat" : 6.45559708E-4, "cytoscape_alias_list" : [ "68774" ], "id_original" : "68774", "logFCLDLR16wkHighFatLDLRChow" : 0.47631492954, "selected" : false, "canonicalName" : "Ms4a6d", "xref" : "L:68774", "Degree" : 283, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.359197717287, "PValueLDLR16wkHighFatLDLRChow" : 0.01483573053, "name" : "L:68774", "entrezId" : "68774", "adjPValLDLR16wkHighFatLDLRChow" : 0.118396402854, "entrez" : "68774", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.055918483879, "shared_name" : "L:68774", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.37964849538, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.459118414964, "SUID" : 588291, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.177463567351, "logFCLDLRT0901317LDLR16wkHighFat" : 0.78152170769, "label" : "Ms4a6d", "go_all" : "biological_process; cellular_component; integral to membrane; membrane; molecular_function; receptor activity" }, "position" : { "x" : 3429.6484375, "y" : 1903.558837890625 }, "selected" : false }, { "data" : { "id" : "588024", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.225642613785, "PValueLDLRT0901317LDLR16wkHighFat" : 1.11033E-7, "adjPValLDLRT0901317LDLR16wkHighFat" : 3.269855E-6, "cytoscape_alias_list" : [ "12514" ], "id_original" : "12514", "logFCLDLR16wkHighFatLDLRChow" : 0.21506484085, "selected" : false, "canonicalName" : "Cd68", "xref" : "L:12514", "Degree" : 215, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.340020511586, "PValueLDLR16wkHighFatLDLRChow" : 0.274844838439, "name" : "L:12514", "entrezId" : "12514", "adjPValLDLR16wkHighFatLDLRChow" : 0.612929983461, "entrez" : "12514", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.085610166019, "shared_name" : "L:12514", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.469626838372, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.578967209527, "SUID" : 588024, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.252065020138, "logFCLDLRT0901317LDLR16wkHighFat" : 1.117896816537, "label" : "Cd68", "go_all" : "cellular response to organic substance; endosome; integral to membrane; lysosome; membrane; plasma membrane" }, "position" : { "x" : 4125.48828125, "y" : 1670.82666015625 }, "selected" : false }, { "data" : { "id" : "589261", "go_mf" : "cyclosporin A binding; isomerase activity; peptide binding; peptidyl-prolyl cis-trans isomerase activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.121114963772, "PValueLDLRT0901317LDLR16wkHighFat" : 1.08637802E-4, "red_GO" : "primary metabolic", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.001220312907, "cytoscape_alias_list" : [ "105675" ], "id_original" : "105675", "logFCLDLR16wkHighFatLDLRChow" : 0.461316531487, "selected" : false, "canonicalName" : "Ppif", "xref" : "L:105675", "Degree" : 368, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.212264091221, "PValueLDLR16wkHighFatLDLRChow" : 2.2179537E-4, "name" : "L:105675", "entrezId" : "105675", "adjPValLDLR16wkHighFatLDLRChow" : 0.010965197787, "entrez" : "105675", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.081147428166, "shared_name" : "L:105675", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.459297833439, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.645687482907, "SUID" : 589261, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.317259792204, "logFCLDLRT0901317LDLR16wkHighFat" : 0.485125146606, "label" : "Ppif", "go_all" : "apoptotic mitochondrial changes; cyclosporin A binding; isomerase activity; mitochondrial inner membrane; mitochondrial matrix; mitochondrion; mitochondrion; peptide binding; peptidyl-prolyl cis-trans isomerase activity; protein folding; protein peptidyl-prolyl isomerization; protein peptidyl-prolyl isomerization; regulation of apoptotic process; regulation of mitochondrial membrane permeability" }, "position" : { "x" : 2699.70361328125, "y" : 1581.420166015625 }, "selected" : false }, { "data" : { "id" : "589102", "go_mf" : "gap junction channel activity; gap junction channel activity; PDZ domain binding; protein binding; protein domain specific binding; receptor binding; SH3 domain binding; signal transducer activity; transmembrane transporter activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : -0.128243806417, "kwalksLifeStyleroyalblue" : 0.3649206, "PValueLDLRT0901317LDLR16wkHighFat" : 0.006410440449, "goBP" : "in utero embryonic development;neuron migration;heart looping;epithelial cell maturation;epicardial cell to mesenchymal cell transition;apoptotic process;signal transduction;cell communication;cell-cell signaling;heart development;adult heart development;regulation of heart contraction;negative regulation of cell proliferation;response to pH;vascular transport;positive regulation of gene expression;negative regulation of gene expression;ATP transport;embryonic heart tube development;positive regulation of I-kappaB kinase/NF-kappaB cascade;skeletal muscle tissue regeneration;positive regulation of protein catabolic process;positive regulation of striated muscle tissue development;blood vessel morphogenesis;neuron projection morphogenesis;protein oligomerization;regulation of calcium ion transport;transmembrane transport;limb bud formation;regulation of blood vessel remodeling;establishment of epithelial cell polarity", "kwalksLifeStyledarkturquoise" : 0.2954896, "GraphId" : "e72", "kwalksFromModule_T0901317_red" : "module.above.cutoff", "kwalksLifeStyleyellow" : 0.3873361, "goids" : "GO:0001701;GO:0001764;GO:0001947;GO:0002070;GO:0003347;GO:0006915;GO:0006915;GO:0007165;GO:0007154;GO:0007267;GO:0007267;GO:0007507;GO:0007512;GO:0008016;GO:0008285;GO:0009268;GO:0010232;GO:0010628;GO:0010629;GO:0015867;GO:0035050;GO:0043123;GO:0043403;GO:0045732;GO:0045844;GO:0048514;GO:0048812;GO:0051259;GO:0051924;GO:0055085;GO:0060174;GO:0060312;GO:0090162;GO:0005886;GO:0005886;GO:0016020;GO:0005764;GO:0016021;GO:0005829;GO:0005624;GO:0005737;GO:0005741;GO:0005768;GO:0005769;GO:0005770;GO:0005771;GO:0005794;GO:0005911;GO:0005916;GO:0005916;GO:0005921;GO:0005921;GO:0005922;GO:0030054;GO:0045121;GO:0005515;GO:0005102;GO:0004871;GO:0005243;GO:0005243;GO:0022857;GO:0017124;GO:0019904;GO:0030165", "red_GO" : "immune related", "isDrugNeighbor" : "false", "kwalksLifeStyleblack" : 0.3970541, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.036006308785, "XrefId" : "14609", "cytoscape_alias_list" : [ "14609" ], "id_original" : "14609", "logFCLDLR16wkHighFatLDLRChow" : 0.5359144015, "selected" : false, "canonicalName" : "Gja1", "identifier" : "L:14609", "xref" : "L:14609", "Degree" : 194, "module" : "red", "kwalksT0901317royalblue" : 0.04179468, "kwalksLifeStylered" : 0.8560303, "kwalksT0901317purple" : 0.03076762, "kwalksFromModule_LifeStyle_yellow" : "module.none", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.449780196817, "kwalksFromModule_LifeStyle_black" : "module.below.cutoff", "PValueLDLR16wkHighFatLDLRChow" : 3.210381E-5, "kwalksLifeStylemagenta" : 0.3872958, "kwalksFromModule_T0901317_purple" : "module.below.cutoff", "name" : "L:14609", "entrezId" : "14609", "adjPValLDLR16wkHighFatLDLRChow" : 0.003054116733, "moduleMembership" : 0.829557228196, "entrez" : "14609", "kwalksFromModule_LifeStyle_darkturquoise" : "module.none", "isDrug" : "false", "kwalksFromModule_T0901317_royalblue" : "module.below.cutoff", "PValueLDLRLifeStyleLDLR16wkHighFat" : 4.12781234E-4, "kwalksT0901317magenta" : 0.06107569, "kwalksFromModule_LifeStyle_magenta" : "module.below.cutoff", "shared_name" : "L:14609", "ObjectType" : "DATANODE", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.039104805333, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.630833248183, "kwalksFromModule_T0901317_magenta" : "module.below.cutoff", "SUID" : 589102, "kwalksLifeStylepurple" : 0.297685, "SourceDir" : "wikipathways_analysis", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.300391223526, "kwalksFromModule_LifeStyle_red" : "module.above.cutoff", "kwalksT0901317red" : 0.3594715, "logFCLDLRT0901317LDLR16wkHighFat" : 0.342870176281, "label" : "Gja1", "go_all" : "adult heart development; apoptotic process; apoptotic process; ATP transport; blood vessel morphogenesis; cell-cell junction; cell-cell signaling; cell-cell signaling; cell communication; cell junction; connexon complex; cytoplasm; cytosol; early endosome; embryonic heart tube development; endosome; epicardial cell to mesenchymal cell transition; epithelial cell maturation; establishment of epithelial cell polarity; fascia adherens; fascia adherens; gap junction; gap junction; gap junction channel activity; gap junction channel activity; Golgi apparatus; heart development; heart looping; integral to membrane; in utero embryonic development; late endosome; limb bud formation; lysosome; membrane; membrane fraction; membrane raft; mitochondrial outer membrane; multivesicular body; negative regulation of cell proliferation; negative regulation of gene expression; neuron migration; neuron projection morphogenesis; PDZ domain binding; plasma membrane; plasma membrane; positive regulation of gene expression; positive regulation of I-kappaB kinase/NF-kappaB cascade; positive regulation of protein catabolic process; positive regulation of striated muscle tissue development; protein binding; protein domain specific binding; protein oligomerization; receptor binding; regulation of blood vessel remodeling; regulation of calcium ion transport; regulation of heart contraction; response to pH; SH3 domain binding; signal transducer activity; signal transduction; skeletal muscle tissue regeneration; transmembrane transport; transmembrane transporter activity; vascular transport", "XrefStatus" : "mapped", "XrefDatasource" : "Entrez Gene", "kwalksFromModule_LifeStyle_royalblue" : "module.below.cutoff", "TFeActingComplex" : "", "kwalksFromModule_LifeStyle_purple" : "module.none", "SourcePathway" : "Mm_Myometrial_Relaxation_and_Contraction_Pathways_WP385_47772.gpml" }, "position" : { "x" : 1542.224609375, "y" : 2027.366943359375 }, "selected" : false }, { "data" : { "id" : "587807", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.262575572311, "PValueLDLRT0901317LDLR16wkHighFat" : 7.98138E-7, "adjPValLDLRT0901317LDLR16wkHighFat" : 1.8282003E-5, "cytoscape_alias_list" : [ "14017" ], "id_original" : "14017", "logFCLDLR16wkHighFatLDLRChow" : 0.187744065377, "selected" : false, "canonicalName" : "Evi2a", "xref" : "L:14017", "Degree" : 307, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.257204459744, "PValueLDLR16wkHighFatLDLRChow" : 0.474325454714, "name" : "L:14017", "entrezId" : "14017", "adjPValLDLR16wkHighFatLDLRChow" : 0.57444310169, "entrez" : "14017", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.466758906934, "shared_name" : "L:14017", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.540968976121, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.412611071539, "SUID" : 587807, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.134232256069, "logFCLDLRT0901317LDLR16wkHighFat" : 0.908131037881, "label" : "Evi2a", "go_all" : "integral to membrane; membrane" }, "position" : { "x" : 3612.53076171875, "y" : 1637.66748046875 }, "selected" : false }, { "data" : { "id" : "587829", "go_mf" : "protein complex binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.190626191978, "PValueLDLRT0901317LDLR16wkHighFat" : 0.001016682013, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.008008027979, "cytoscape_alias_list" : [ "23880" ], "id_original" : "23880", "logFCLDLR16wkHighFatLDLRChow" : 0.263844073348, "selected" : false, "canonicalName" : "Fyb", "xref" : "L:23880", "Degree" : 120, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.238350056071, "PValueLDLR16wkHighFatLDLRChow" : 0.15504182277, "name" : "L:23880", "entrezId" : "23880", "adjPValLDLR16wkHighFatLDLRChow" : 0.471603037694, "entrez" : "23880", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.198545854643, "shared_name" : "L:23880", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.62770041571, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.632888550361, "SUID" : 587829, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.3031232711, "logFCLDLRT0901317LDLR16wkHighFat" : 0.622972411089, "label" : "Fyb", "go_all" : "cytoplasm; nucleus; protein complex binding" }, "position" : { "x" : 3999.805419921875, "y" : 1595.839599609375 }, "selected" : false }, { "data" : { "id" : "587857", "go_mf" : "cysteine-type endopeptidase activity; cysteine-type peptidase activity; hydrolase activity; peptidase activity; peptidase activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.404648445828, "PValueLDLRT0901317LDLR16wkHighFat" : 1.0E-12, "goBP" : "response to acid;metabolic process;proteolysis;negative regulation of multicellular organism growth;negative regulation of neuron apoptosis", "GraphId" : "", "goids" : "GO:0001101;GO:0008152;GO:0008152;GO:0006508;GO:0006508;GO:0040015;GO:0043524;GO:0005764;GO:0005770;GO:0045177;GO:0004197;GO:0008234;GO:0008233;GO:0008233;GO:0016787", "red_GO" : "primary metabolic", "kwalksFenofibratemagenta" : 0.002303013, "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 7.8E-11, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFE9E9|FFCBCB", "XrefId" : "", "cytoscape_alias_list" : [ "19141" ], "id_original" : "19141", "logFCLDLR16wkHighFatLDLRChow" : 0.16918005906, "selected" : false, "canonicalName" : "Lgmn", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFE9E9|FF6B6B", "identifier" : "L:19141", "xref" : "L:19141", "Degree" : 380, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.130896075626, "PValueLDLR16wkHighFatLDLRChow" : 0.233478619806, "name" : "L:19141", "entrezId" : "19141", "adjPValLDLR16wkHighFatLDLRChow" : 0.56916521083, "moduleMembership" : 0.952435087198, "entrez" : "19141", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.355952010602, "shared_name" : "L:19141", "ObjectType" : "", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.749043077483, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.044616230941, "SUID" : 587857, "SourceDir" : "", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.005030177887, "logFCLDLRT0901317LDLR16wkHighFat" : 1.15610357017, "label" : "Lgmn", "go_all" : "apical part of cell; cysteine-type endopeptidase activity; cysteine-type peptidase activity; hydrolase activity; late endosome; lysosome; metabolic process; metabolic process; negative regulation of multicellular organism growth; negative regulation of neuron apoptosis; peptidase activity; peptidase activity; proteolysis; proteolysis; response to acid", "XrefStatus" : "", "XrefDatasource" : "", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFE9E9|EEEEFF", "TFeActingComplex" : "", "SourcePathway" : "", "kwalksFenofibratered" : 0.3058032 }, "position" : { "x" : 2699.70361328125, "y" : 2033.312744140625 }, "selected" : false }, { "data" : { "id" : "588601", "go_mf" : "manganese ion transmembrane transporter activity; metal ion:hydrogen antiporter activity; protein homodimerization activity; transition metal ion transmembrane transporter activity; transporter activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.256019713375, "PValueLDLRT0901317LDLR16wkHighFat" : 0.002523970613, "goBP" : "NA", "GraphId" : "NA", "kwalksFromModule_T0901317_red" : "module.below.cutoff", "goids" : "NA", "red_GO" : "immune + inflammation related", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.012794825092, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFEBEB|FFDEDE", "XrefId" : "NA", "cytoscape_alias_list" : [ "18173" ], "id_original" : "18173", "logFCLDLR16wkHighFatLDLRChow" : 0.150123565074, "selected" : false, "canonicalName" : "NA", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFEBEB|FF9E9E", "identifier" : "NA", "xref" : "L:18173", "Degree" : 326, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.174861256885, "PValueLDLR16wkHighFatLDLRChow" : 0.258787051367, "name" : "L:18173", "entrezId" : "18173", "adjPValLDLR16wkHighFatLDLRChow" : 0.520585676959, "moduleMembership" : 0.95672127896, "entrez" : "NA", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.324230610703, "shared_name" : "L:18173", "ObjectType" : "NA", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.565478756936, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.357742319907, "SUID" : 588601, "SourceDir" : "NA", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.183160041358, "kwalksT0901317red" : 0.06064719, "logFCLDLRT0901317LDLR16wkHighFat" : 0.756833575367, "label" : "Slc11a1", "go_all" : "activation of protein kinase activity; antigen processing and presentation of peptide antigen; cadmium ion transmembrane transport; cell outer membrane; cellular cadmium ion homeostasis; cellular iron ion homeostasis; cellular iron ion homeostasis; defense response to bacterium; defense response to Gram-negative bacterium; defense response to protozoan; divalent metal ion export; endosome membrane; inflammatory response; integral to membrane; interleukin-2 production; interleukin-3 production; ion transport; iron ion homeostasis; iron ion transport; iron ion transport; L-arginine import; late endosome; late endosome; lysosome; macrophage activation; macrophage activation; manganese ion transmembrane transporter activity; manganese ion transport; MAPK cascade; membrane; metal ion:hydrogen antiporter activity; MHC class II biosynthetic process; mRNA stabilization; multicellular organismal iron ion homeostasis; negative regulation of cytokine production; nitrite transport; phagocytic vesicle membrane; phagocytic vesicle membrane; phagocytic vesicle membrane; phagocytosis; plasma membrane; positive regulation of cytokine production; positive regulation of dendritic cell antigen processing and presentation; positive regulation of gene expression; positive regulation of interferon-gamma production; positive regulation of phagocytosis; positive regulation of T-helper 1 type immune response; positive regulation of transcription from RNA polymerase II promoter; protein homodimerization activity; protein import into nucleus, translocation; proton transport; respiratory burst; response to bacterium; response to bacterium; response to interferon-gamma; response to lipopolysaccharide; response to lipopolysaccharide; response to lipopolysaccharide; T cell cytokine production; T cell proliferation involved in immune response; tertiary granule membrane; transition metal ion transmembrane transporter activity; transport; transporter activity; vacuolar acidification; vacuole; wound healing", "XrefStatus" : "NA", "XrefDatasource" : "NA", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFEBEB|E8E8FF", "TFeActingComplex" : "NA", "SourcePathway" : "NA" }, "position" : { "x" : 1043.6851806640625, "y" : 1617.3145751953125 }, "selected" : false }, { "data" : { "id" : "589256", "go_mf" : "enzyme inhibitor activity; metal ion binding; metalloendopeptidase inhibitor activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.102654295048, "PValueLDLRT0901317LDLR16wkHighFat" : 0.053248754842, "red_GO" : "immune related", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.155240875751, "cytoscape_alias_list" : [ "21857" ], "id_original" : "21857", "logFCLDLR16wkHighFatLDLRChow" : 0.736683810057, "selected" : false, "canonicalName" : "Timp1", "xref" : "L:21857", "Degree" : 180, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.614829378553, "PValueLDLR16wkHighFatLDLRChow" : 0.006991683481, "name" : "L:21857", "entrezId" : "21857", "adjPValLDLR16wkHighFatLDLRChow" : 0.085988247196, "entrez" : "21857", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.023849110215, "shared_name" : "L:21857", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.281795226141, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.864645443085, "SUID" : 589256, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.69968419124, "logFCLDLRT0901317LDLR16wkHighFat" : 0.582089639153, "label" : "Timp1", "go_all" : "basement membrane; cell activation; enzyme inhibitor activity; erythrocyte maturation; extracellular matrix; extracellular region; metal ion binding; metalloendopeptidase inhibitor activity; negative regulation of apoptotic process; negative regulation of endopeptidase activity; negative regulation of membrane protein ectodomain proteolysis; proteinaceous extracellular matrix" }, "position" : { "x" : 2079.819091796875, "y" : 1697.9285888671875 }, "selected" : false }, { "data" : { "id" : "589327", "go_mf" : "ATP binding; calcium-independent protein kinase C activity; enzyme activator activity; enzyme binding; insulin receptor substrate binding; kinase activity; metal ion binding; non-membrane spanning protein tyrosine kinase activity; nucleotide binding; protein C-terminus binding; protein kinase activity; protein kinase binding; protein kinase C activity; protein serine/threonine kinase activity; TIR domain binding; transferase activity; transferase activity, transferring phosphorus-containing groups", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.098016257686, "PValueLDLRT0901317LDLR16wkHighFat" : 1.73223E-7, "red_GO" : "immune related", "adjPValLDLRT0901317LDLR16wkHighFat" : 4.821438E-6, "cytoscape_alias_list" : [ "18753" ], "id_original" : "18753", "logFCLDLR16wkHighFatLDLRChow" : 0.17704652356, "selected" : false, "canonicalName" : "Prkcd", "xref" : "L:18753", "Degree" : 205, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.152921188708, "PValueLDLR16wkHighFatLDLRChow" : 0.14179639878, "name" : "L:18753", "entrezId" : "18753", "adjPValLDLR16wkHighFatLDLRChow" : 0.45151859405, "entrez" : "18753", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.203862173744, "shared_name" : "L:18753", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.632958843888, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.723478377841, "SUID" : 589327, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.414328351594, "logFCLDLRT0901317LDLR16wkHighFat" : 0.670446930887, "label" : "Prkcd", "go_all" : "apoptotic process; aspartate transport; ATP binding; B cell proliferation; calcium-independent protein kinase C activity; cell-cell junction; cell cycle; cellular senescence; collagen metabolic process; cytoplasm; cytoplasm; cytosol; endoplasmic reticulum; enzyme activator activity; enzyme binding; immunoglobulin mediated immune response; induction of apoptosis; insulin receptor substrate binding; interleukin-10 production; interleukin-12 production; intracellular; intracellular signal transduction; kinase activity; membrane; membrane fraction; metal ion binding; mitochondrion; negative regulation of actin filament polymerization; negative regulation of filopodium assembly; negative regulation of glial cell apoptosis; negative regulation of insulin receptor signaling pathway; negative regulation of MAP kinase activity; negative regulation of peptidyl-tyrosine phosphorylation; negative regulation of platelet aggregation; neutrophil activation; non-membrane spanning protein tyrosine kinase activity; nuclear matrix; nucleotide binding; nucleus; nucleus; peptidyl-threonine phosphorylation; phosphorylation; plasma membrane; positive regulation of apoptotic process; positive regulation of catalytic activity; positive regulation of ceramide biosynthetic process; positive regulation of glucose import; positive regulation of glucosylceramide catabolic process; positive regulation of MAPK cascade; positive regulation of MAP kinase activity; positive regulation of protein dephosphorylation; positive regulation of response to DNA damage stimulus; positive regulation of sphingomyelin catabolic process; positive regulation of superoxide anion generation; protein autophosphorylation; protein C-terminus binding; protein kinase activity; protein kinase binding; protein kinase C activity; protein phosphorylation; protein serine/threonine kinase activity; response to oxidative stress; termination of signal transduction; TIR domain binding; transferase activity; transferase activity, transferring phosphorus-containing groups" }, "position" : { "x" : 1774.5166015625, "y" : 1571.4681396484375 }, "selected" : false }, { "data" : { "id" : "588492", "go_mf" : "phosphatidylinositol binding; protein binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.139038532717, "PValueLDLRT0901317LDLR16wkHighFat" : 2.25486097E-4, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.002296628467, "cytoscape_alias_list" : [ "17972" ], "id_original" : "17972", "logFCLDLR16wkHighFatLDLRChow" : 0.294187044334, "selected" : false, "canonicalName" : "Ncf4", "xref" : "L:17972", "Degree" : 162, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.241772687489, "PValueLDLR16wkHighFatLDLRChow" : 0.09200788283, "name" : "L:17972", "entrezId" : "17972", "adjPValLDLR16wkHighFatLDLRChow" : 0.364892684728, "entrez" : "17972", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.165200040743, "shared_name" : "L:17972", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.586971495872, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.72954794444, "SUID" : 588492, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.423367792803, "logFCLDLRT0901317LDLR16wkHighFat" : 0.661336952657, "label" : "Ncf4", "go_all" : "cell communication; cytoplasm; cytosol; membrane; NADPH oxidase complex; phosphatidylinositol binding; protein binding" }, "position" : { "x" : 4235.24365234375, "y" : 2173.000244140625 }, "selected" : false }, { "data" : { "id" : "588424", "go_mf" : "binding; protein binding; sugar binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.66654201019, "PValueLDLRT0901317LDLR16wkHighFat" : 1.09E-10, "goBP" : "defense response to fungus;positive regulation of I-kappaB kinase/NF-kappaB cascade;innate immune response;positive regulation of cytokine secretion", "GraphId" : "", "goids" : "GO:0050832;GO:0043123;GO:0045087;GO:0050715;GO:0016020;GO:0016021;GO:0005515;GO:0005488;GO:0005529", "red_GO" : "immune related", "kwalksFenofibratemagenta" : 0.002311537, "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 7.432E-9, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFDADA|FFAAAA", "XrefId" : "", "cytoscape_alias_list" : [ "56620" ], "id_original" : "56620", "logFCLDLR16wkHighFatLDLRChow" : 0.283104625734, "selected" : false, "canonicalName" : "NA", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFDADA|FF4545", "identifier" : "L:56620", "xref" : "L:56620", "Degree" : 371, "module" : "red", "kwalksT0901317purple" : 0.03507896, "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.278762249609, "PValueLDLR16wkHighFatLDLRChow" : 0.164783324428, "name" : "L:56620", "entrezId" : "56620", "adjPValLDLR16wkHighFatLDLRChow" : 0.48628301902, "moduleMembership" : 0.953801326513, "entrez" : "56620", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.171296716618, "shared_name" : "L:56620", "ObjectType" : "", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.595317605644, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.016197133994, "SUID" : 588424, "SourceDir" : "", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.001353366022, "logFCLDLRT0901317LDLR16wkHighFat" : 1.453390624752, "label" : "Clec4n", "go_all" : "binding; defense response to fungus; innate immune response; integral to membrane; membrane; positive regulation of cytokine secretion; positive regulation of I-kappaB kinase/NF-kappaB cascade; protein binding; sugar binding", "XrefStatus" : "", "XrefDatasource" : "", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFDADA|DBDBFF", "TFeActingComplex" : "", "SourcePathway" : "", "kwalksFenofibratered" : 0.3097504 }, "position" : { "x" : 1774.5166015625, "y" : 2196.136962890625 }, "selected" : false }, { "data" : { "id" : "588127", "go_mf" : "metal ion binding; protein binding; transcription cofactor activity; zinc ion binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.280986595839, "PValueLDLRT0901317LDLR16wkHighFat" : 3.967548E-6, "adjPValLDLRT0901317LDLR16wkHighFat" : 7.2214887E-5, "cytoscape_alias_list" : [ "107321" ], "id_original" : "107321", "logFCLDLR16wkHighFatLDLRChow" : 0.273227969023, "selected" : false, "canonicalName" : "Lpxn", "xref" : "L:107321", "Degree" : 285, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.283412667635, "PValueLDLR16wkHighFatLDLRChow" : 0.07591900181, "name" : "L:107321", "entrezId" : "107321", "adjPValLDLR16wkHighFatLDLRChow" : 0.330730403001, "entrez" : "107321", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.065772130154, "shared_name" : "L:107321", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.424326501411, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.28048947155, "SUID" : 588127, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.068080141988, "logFCLDLRT0901317LDLR16wkHighFat" : 0.742771394314, "label" : "Lpxn", "go_all" : "cytoplasm; focal adhesion; metal ion binding; negative regulation of B cell receptor signaling pathway; negative regulation of B cell receptor signaling pathway; negative regulation of cell adhesion; nucleus; plasma membrane; podosome; podosome; protein binding; transcription cofactor activity; zinc ion binding" }, "position" : { "x" : 3711.492431640625, "y" : 1589.634765625 }, "selected" : false }, { "data" : { "id" : "589249", "go_mf" : "receptor activity; transmembrane signaling receptor activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.223489694425, "PValueLDLRT0901317LDLR16wkHighFat" : 4.86360222E-4, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.004353159275, "cytoscape_alias_list" : [ "83433" ], "id_original" : "83433", "logFCLDLR16wkHighFatLDLRChow" : 1.215838488014, "selected" : false, "canonicalName" : "Trem2", "xref" : "L:83433", "Degree" : 345, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.976550039882, "PValueLDLR16wkHighFatLDLRChow" : 7.744386E-6, "name" : "L:83433", "entrezId" : "83433", "adjPValLDLR16wkHighFatLDLRChow" : 0.001112397221, "entrez" : "83433", "PValueLDLRLifeStyleLDLR16wkHighFat" : 2.60033957E-4, "shared_name" : "L:83433", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.031243622596, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.703220873483, "SUID" : 589249, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.388636182846, "logFCLDLRT0901317LDLR16wkHighFat" : 0.929990814353, "label" : "Trem2", "go_all" : "extracellular region; integral to membrane; membrane; plasma membrane; receptor activity; transmembrane signaling receptor activity" }, "position" : { "x" : 4096.60888671875, "y" : 2341.464599609375 }, "selected" : false }, { "data" : { "id" : "588636", "go_mf" : "DNA binding; metal ion binding; nucleic acid binding; zinc ion binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.006911238208, "PValueLDLRT0901317LDLR16wkHighFat" : 0.001943211754, "red_GO" : "primary metabolic", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.012159563991, "cytoscape_alias_list" : [ "58887" ], "id_original" : "58887", "logFCLDLR16wkHighFatLDLRChow" : -0.239385525318, "selected" : false, "canonicalName" : "Repin1", "xref" : "L:58887", "Degree" : 210, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : 0.235732134929, "PValueLDLR16wkHighFatLDLRChow" : 0.062811473095, "name" : "L:58887", "entrezId" : "58887", "adjPValLDLR16wkHighFatLDLRChow" : 0.28958938636, "entrez" : "58887", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.124574733852, "shared_name" : "L:58887", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.429782438751, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.665708669414, "SUID" : 588636, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.341817575892, "logFCLDLRT0901317LDLR16wkHighFat" : -0.453703374933, "label" : "Repin1", "go_all" : "biological_process; DNA binding; DNA replication; intracellular; metal ion binding; nucleic acid binding; nucleus; zinc ion binding" }, "position" : { "x" : 2828.7919921875, "y" : 1572.59033203125 }, "selected" : false }, { "data" : { "id" : "588605", "go_mf" : "signal transducer activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.391311503841, "PValueLDLRT0901317LDLR16wkHighFat" : 1.11142459E-4, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.001137907758, "cytoscape_alias_list" : [ "14710" ], "id_original" : "14710", "logFCLDLR16wkHighFatLDLRChow" : 0.219559614602, "selected" : false, "canonicalName" : "Gngt2", "xref" : "L:14710", "Degree" : 360, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.332374713234, "PValueLDLR16wkHighFatLDLRChow" : 0.168173903673, "name" : "L:14710", "entrezId" : "14710", "adjPValLDLR16wkHighFatLDLRChow" : 0.48857810414, "entrez" : "14710", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.050226497211, "shared_name" : "L:14710", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.340731181434, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.203949467933, "SUID" : 588605, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.061904305035, "logFCLDLRT0901317LDLR16wkHighFat" : 0.945295938601, "label" : "Gngt2", "go_all" : "G-protein coupled receptor signaling pathway; GTP catabolic process; heterotrimeric G-protein complex; membrane; plasma membrane; signal transducer activity; signal transduction" }, "position" : { "x" : 3554.826171875, "y" : 2306.442138671875 }, "selected" : false }, { "data" : { "id" : "587873", "go_mf" : "antiporter activity; calcium:sodium antiporter activity; calcium:sodium antiporter activity; calmodulin binding; heat shock protein binding; protein binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.028688638399, "PValueLDLRT0901317LDLR16wkHighFat" : 4.3169545E-5, "adjPValLDLRT0901317LDLR16wkHighFat" : 5.56919008E-4, "cytoscape_alias_list" : [ "20541" ], "id_original" : "20541", "logFCLDLR16wkHighFatLDLRChow" : 0.457048587271, "selected" : false, "canonicalName" : "Slc8a1", "xref" : "L:20541", "Degree" : 287, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.491138004108, "PValueLDLR16wkHighFatLDLRChow" : 7.052666E-4, "name" : "L:20541", "entrezId" : "20541", "adjPValLDLR16wkHighFatLDLRChow" : 0.021617997346, "entrez" : "20541", "PValueLDLRLifeStyleLDLR16wkHighFat" : 2.88755682E-4, "shared_name" : "L:20541", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.03269787235, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.940912579318, "SUID" : 587873, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.826903150576, "logFCLDLRT0901317LDLR16wkHighFat" : 0.559051509454, "label" : "Slc8a1", "go_all" : "antiporter activity; basolateral plasma membrane; calcium ion transport; calcium ion transport; calcium ion transport into cytosol; calcium:sodium antiporter activity; calcium:sodium antiporter activity; calmodulin binding; cardiac muscle cell development; cell communication; cell projection; cellular calcium ion homeostasis; cellular response to cAMP; dendritic spine; elevation of cytosolic calcium ion concentration; embryonic heart tube development; embryonic placenta development; heat shock protein binding; integral to membrane; ion transport; membrane; membrane fraction; microtubule; mitochondrion; plasma membrane; plasma membrane; protein binding; regulation of calcium ion transport; regulation of sodium ion transport; regulation of the force of heart contraction; response to ATP; response to hypoxia; sarcolemma; sarcolemma; sodium ion transport; sodium ion transport; transmembrane transport; transport; T-tubule; T-tubule" }, "position" : { "x" : 4198.9765625, "y" : 1752.679931640625 }, "selected" : false }, { "data" : { "id" : "588593", "go_mf" : "actin binding; actin monomer binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.30813632212, "PValueLDLRT0901317LDLR16wkHighFat" : 6.96487679E-4, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.005212502819, "cytoscape_alias_list" : [ "19240" ], "id_original" : "19240", "logFCLDLR16wkHighFatLDLRChow" : 0.308252346304, "selected" : false, "canonicalName" : "Tmsb10", "xref" : "L:19240", "Degree" : 308, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.556530218585, "PValueLDLR16wkHighFatLDLRChow" : 0.119876474373, "name" : "L:19240", "entrezId" : "19240", "adjPValLDLR16wkHighFatLDLRChow" : 0.385906517679, "entrez" : "19240", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.00654827403, "shared_name" : "L:19240", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.130214331273, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.354004027307, "SUID" : 588593, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.102637054722, "logFCLDLRT0901317LDLR16wkHighFat" : 0.804081809544, "label" : "Tmsb10", "go_all" : "actin binding; actin cytoskeleton organization; actin monomer binding; cytoplasm; cytoskeleton; cytoskeleton organization; sequestering of actin monomers" }, "position" : { "x" : 3439.03466796875, "y" : 2121.53076171875 }, "selected" : false }, { "data" : { "id" : "587844", "go_mf" : "endonuclease activity; hydrolase activity; molecular_function; nuclease activity; nucleic acid binding; pancreatic ribonuclease activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.359996380137, "PValueLDLRT0901317LDLR16wkHighFat" : 1.105E-9, "goBP" : "NA", "GraphId" : "NA", "kwalksFromModule_T0901317_red" : "module.below.cutoff", "goids" : "NA", "red_GO" : "primary metabolic", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 5.5537E-8, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FF8A8A|FFD1D1", "XrefId" : "NA", "cytoscape_alias_list" : [ "13587" ], "id_original" : "13587", "logFCLDLR16wkHighFatLDLRChow" : 0.911452911386, "selected" : false, "canonicalName" : "NA", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FF8A8A|FF5C5C", "identifier" : "NA", "xref" : "L:13587", "Degree" : 438, "module" : "red", "kwalksLifeStylered" : 0.1579349, "kwalksT0901317purple" : 0.03063354, "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.847215867518, "PValueLDLR16wkHighFatLDLRChow" : 5.79631E-6, "name" : "L:13587", "entrezId" : "13587", "adjPValLDLR16wkHighFatLDLRChow" : 9.39719312E-4, "moduleMembership" : 0.976533327524, "entrez" : "NA", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 2.2219726E-5, "shared_name" : "L:13587", "ObjectType" : "NA", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.006353225606, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.263091476021, "SUID" : 587844, "SourceDir" : "NA", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.061766102599, "kwalksFromModule_LifeStyle_red" : "module.below.cutoff", "kwalksT0901317red" : 0.06169375, "logFCLDLRT0901317LDLR16wkHighFat" : 1.277745052754, "label" : "Ear2", "go_all" : "cellular_component; chemotaxis; endonuclease activity; hydrolase activity; molecular_function; nuclease activity; nucleic acid binding; nucleic acid phosphodiester bond hydrolysis; pancreatic ribonuclease activity", "XrefStatus" : "NA", "XrefDatasource" : "NA", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FF8A8A|9292FF", "TFeActingComplex" : "NA", "SourcePathway" : "NA" }, "position" : { "x" : 3010.904296875, "y" : 1872.0614013671875 }, "selected" : false }, { "data" : { "id" : "587855", "go_mf" : "ADP binding; ATP binding; catalytic activity; kinase activity; magnesium ion binding; metal ion binding; nucleotide binding; potassium ion binding; protein binding; pyruvate kinase activity; pyruvate kinase activity; transferase activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.316620982977, "PValueLDLRT0901317LDLR16wkHighFat" : 1.007981E-6, "goBP" : "liver development;glucose metabolic process;glycolysis;ATP biosynthetic process;programmed cell death;phosphorylation;organ regeneration;pyruvate biosynthetic process;skeletal muscle tissue regeneration", "kwalksLifeStyledarkturquoise" : 0.2569714, "GraphId" : "e8cb9; e7ca3; afd2c; a74e3; b4c87; caf29, df4e1; dab32; a2b5a", "kwalksLifeStyleyellow" : 0.2926223, "goids" : "GO:0001889;GO:0006006;GO:0006096;GO:0006096;GO:0006754;GO:0012501;GO:0016310;GO:0031100;GO:0042866;GO:0043403;GO:0005886;GO:0005739;GO:0005625;GO:0005634;GO:0005737;GO:0019861;GO:0000166;GO:0005515;GO:0000287;GO:0003824;GO:0004743;GO:0004743;GO:0046872;GO:0005524;GO:0016301;GO:0016740;GO:0030955;GO:0043531", "red_GO" : "primary metabolic", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 2.2645016E-5, "XrefId" : "18746", "cytoscape_alias_list" : [ "18746" ], "id_original" : "18746", "logFCLDLR16wkHighFatLDLRChow" : 0.321618839593, "selected" : false, "canonicalName" : "Pkm2", "identifier" : "L:18746", "xref" : "L:18746", "Degree" : 358, "module" : "red", "kwalksLifeStylered" : 0.2051971, "kwalksFromModule_LifeStyle_yellow" : "module.below.cutoff", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.520764578103, "PValueLDLR16wkHighFatLDLRChow" : 0.05657814279, "name" : "L:18746", "entrezId" : "18746", "adjPValLDLR16wkHighFatLDLRChow" : 0.283449465919, "entrez" : "18746", "kwalksFromModule_LifeStyle_darkturquoise" : "module.none", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.002329270304, "shared_name" : "L:18746", "ObjectType" : "DATANODE", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.093920785338, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.259773958672, "SUID" : 587855, "kwalksLifeStylepurple" : 0.2188114, "SourceDir" : "Mmu-KEGG_20110518, wikipathways_analysis", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.060458647383, "kwalksFromModule_LifeStyle_red" : "module.above.cutoff", "logFCLDLRT0901317LDLR16wkHighFat" : 0.867517638849, "label" : "Pkm2", "go_all" : "ADP binding; ATP binding; ATP biosynthetic process; catalytic activity; cytoplasm; flagellum; glucose metabolic process; glycolysis; glycolysis; kinase activity; liver development; magnesium ion binding; metabolic process; metal ion binding; mitochondrion; nucleotide binding; nucleus; organ regeneration; phosphorylation; phosphorylation; plasma membrane; potassium ion binding; programmed cell death; protein binding; pyruvate biosynthetic process; pyruvate kinase activity; pyruvate kinase activity; skeletal muscle tissue regeneration; soluble fraction; transferase activity", "XrefStatus" : "mapped", "XrefDatasource" : "Entrez Gene", "TFeActingComplex" : "", "kwalksFromModule_LifeStyle_purple" : "module.below.cutoff", "SourcePathway" : "mmu_Purine metabolism.gpml; mmu_Glycolysis Gluconeogenesis.gpml; mmu_Type II diabetes mellitus.gpml, Mm_Glycolysis_and_Gluconeogenesis_WP157_43573.gpml; Mm_Amino_Acid_metabolism_WP662_42241.gpml" }, "position" : { "x" : 2542.44677734375, "y" : 1840.01806640625 }, "selected" : false }, { "data" : { "id" : "588727", "go_mf" : "ATP binding; kinase activity; myosin heavy chain binding; nucleotide binding; phosphatidylinositol 3-kinase binding; protein heterodimerization activity; protein kinase activity; protein tyrosine kinase activity; receptor activity; transferase activity; transferase activity, transferring phosphorus-containing groups; transmembrane receptor protein tyrosine kinase activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.119504781347, "PValueLDLRT0901317LDLR16wkHighFat" : 2.04104E-7, "goBP" : "neuron migration;natural killer cell differentiation;blood vessel remodeling;protein phosphorylation;phagocytosis;anti-apoptosis;inflammatory response;enzyme linked receptor protein signaling pathway;spermatogenesis;phosphorylation;forebrain cell migration;cell differentiation;platelet activation;cellular response to extracellular stimulus;negative regulation of tumor necrosis factor production;secretion by cell;erythrocyte homeostasis;substrate adhesion-dependent cell spreading;ovulation cycle;negative regulation of apoptotic process;apoptotic cell clearance;protein kinase B signaling cascade;negative regulation of neuron apoptosis;innate immune response;negative regulation of lymphocyte activation;vagina development;cellular response to hydrogen peroxide", "GraphId" : "", "goids" : "GO:0001764;GO:0001764;GO:0001779;GO:0001974;GO:0006468;GO:0006909;GO:0006916;GO:0006954;GO:0007167;GO:0007283;GO:0016310;GO:0021885;GO:0030154;GO:0030168;GO:0031668;GO:0032720;GO:0032940;GO:0034101;GO:0034101;GO:0034446;GO:0042698;GO:0043066;GO:0043066;GO:0043277;GO:0043277;GO:0043491;GO:0043491;GO:0043524;GO:0043524;GO:0045087;GO:0051250;GO:0060068;GO:0070301;GO:0005886;GO:0005622;GO:0005622;GO:0016020;GO:0016021;GO:0005623;GO:0000166;GO:0004672;GO:0004713;GO:0004714;GO:0004872;GO:0005524;GO:0016301;GO:0016740;GO:0016772;GO:0032036;GO:0043548;GO:0046982", "red_GO" : "primary metabolic", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 5.5436E-6, "XrefId" : "", "cytoscape_alias_list" : [ "26362" ], "id_original" : "26362", "logFCLDLR16wkHighFatLDLRChow" : 0.490424786958, "selected" : false, "canonicalName" : "NA", "identifier" : "L:26362", "xref" : "L:26362", "Degree" : 345, "module" : "red", "kwalksLifeStylered" : 1.050542, "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.450896548815, "PValueLDLR16wkHighFatLDLRChow" : 6.05958043E-4, "name" : "L:26362", "entrezId" : "26362", "adjPValLDLR16wkHighFatLDLRChow" : 0.019770324034, "moduleMembership" : 0.954360812406, "entrez" : "26362", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.001544976479, "shared_name" : "L:26362", "ObjectType" : "", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.075296046345, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.704337332796, "SUID" : 588727, "SourceDir" : "", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.390641626393, "kwalksFromModule_LifeStyle_red" : "module.above.cutoff", "logFCLDLRT0901317LDLR16wkHighFat" : 0.772012133008, "label" : "Axl", "go_all" : "anti-apoptosis; apoptotic cell clearance; apoptotic cell clearance; ATP binding; blood vessel remodeling; cell; cell differentiation; cellular response to extracellular stimulus; cellular response to hydrogen peroxide; enzyme linked receptor protein signaling pathway; erythrocyte homeostasis; erythrocyte homeostasis; forebrain cell migration; inflammatory response; innate immune response; integral to membrane; intracellular; intracellular; kinase activity; membrane; myosin heavy chain binding; natural killer cell differentiation; negative regulation of apoptotic process; negative regulation of apoptotic process; negative regulation of lymphocyte activation; negative regulation of neuron apoptosis; negative regulation of neuron apoptosis; negative regulation of tumor necrosis factor production; neuron migration; neuron migration; nucleotide binding; ovulation cycle; phagocytosis; phosphatidylinositol 3-kinase binding; phosphorylation; plasma membrane; platelet activation; protein heterodimerization activity; protein kinase activity; protein kinase B signaling cascade; protein kinase B signaling cascade; protein phosphorylation; protein tyrosine kinase activity; receptor activity; secretion by cell; spermatogenesis; substrate adhesion-dependent cell spreading; transferase activity; transferase activity, transferring phosphorus-containing groups; transmembrane receptor protein tyrosine kinase activity; vagina development", "XrefStatus" : "", "XrefDatasource" : "", "TFeActingComplex" : "", "SourcePathway" : "" }, "position" : { "x" : 3019.79638671875, "y" : 1807.366455078125 }, "selected" : false }, { "data" : { "id" : "588254", "go_mf" : "DNA binding; protein binding; regulatory region DNA binding; sequence-specific DNA binding transcription factor activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.23814849461, "PValueLDLRT0901317LDLR16wkHighFat" : 3.1087866E-5, "red_GO" : "immune related", "adjPValLDLRT0901317LDLR16wkHighFat" : 4.21818618E-4, "cytoscape_alias_list" : [ "15900" ], "id_original" : "15900", "logFCLDLR16wkHighFatLDLRChow" : 0.37686158265, "selected" : false, "canonicalName" : "Irf8", "xref" : "L:15900", "Degree" : 264, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.339253734874, "PValueLDLR16wkHighFatLDLRChow" : 0.015844788523, "name" : "L:15900", "entrezId" : "15900", "adjPValLDLR16wkHighFatLDLRChow" : 0.138703859121, "entrez" : "15900", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.029445327669, "shared_name" : "L:15900", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.308088638003, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.401424831951, "SUID" : 588254, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.124184904454, "logFCLDLRT0901317LDLR16wkHighFat" : 0.669520647851, "label" : "Irf8", "go_all" : "cellular response to lipopolysaccharide; defense response to bacterium; defense response to protozoan; DNA binding; immune response; myeloid cell differentiation; negative regulation of growth of symbiont in host; nucleus; phagocytosis; positive regulation of interferon-gamma production; positive regulation of interleukin-12 production; positive regulation of transcription, DNA-dependent; protein binding; regulation of transcription, DNA-dependent; regulatory region DNA binding; response to bacterium; sequence-specific DNA binding transcription factor activity; transcription, DNA-dependent" }, "position" : { "x" : 1568.1519775390625, "y" : 1697.9285888671875 }, "selected" : false }, { "data" : { "id" : "589151", "go_mf" : "actin binding; protein binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.358158113914, "PValueLDLRT0901317LDLR16wkHighFat" : 5.75535E-7, "goBP" : "sequestering of actin monomers;actin cytoskeleton organization;cytoskeleton organization;positive regulation of smooth muscle cell migration;positive regulation of transcription, DNA-dependent;regulation of cell migration;positive regulation of smooth muscle cell differentiation", "GraphId" : "c16", "goids" : "GO:0042989;GO:0030036;GO:0007010;GO:0014911;GO:0045893;GO:0030334;GO:0051152;GO:0005829;GO:0005634;GO:0005737;GO:0005856;GO:0005515;GO:0003779", "red_GO" : "adhesion, structure", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 1.3868505E-5, "XrefId" : "19241", "cytoscape_alias_list" : [ "19241" ], "id_original" : "19241", "logFCLDLR16wkHighFatLDLRChow" : 0.267978041735, "selected" : false, "canonicalName" : "", "identifier" : "L:19241", "xref" : "L:19241", "Degree" : 301, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.485299385987, "PValueLDLR16wkHighFatLDLRChow" : 0.105281456903, "name" : "L:19241", "entrezId" : "19241", "adjPValLDLR16wkHighFatLDLRChow" : 0.393682530926, "moduleMembership" : 0.920343459185, "entrez" : "19241", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.003823631193, "shared_name" : "L:19241", "ObjectType" : "DATANODE", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.121970912374, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.166447620446, "SUID" : 589151, "SourceDir" : "wikipathways_analysis", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.031223482152, "logFCLDLRT0901317LDLR16wkHighFat" : 0.874335128859, "label" : "Tmsb4x", "go_all" : "actin binding; actin cytoskeleton organization; cytoplasm; cytoskeleton; cytoskeleton organization; cytosol; nucleus; positive regulation of smooth muscle cell differentiation; positive regulation of smooth muscle cell migration; positive regulation of transcription, DNA-dependent; protein binding; regulation of cell migration; sequestering of actin monomers", "XrefStatus" : "mapped", "XrefDatasource" : "Entrez Gene", "TFeActingComplex" : "", "SourcePathway" : "Mm_Regulation_of_Actin_Cytoskeleton_WP523_47746.gpml", "kwalksFenofibratered" : 0.2971878 }, "position" : { "x" : 211.20545959472656, "y" : 1575.3134765625 }, "selected" : false }, { "data" : { "id" : "587703", "go_mf" : "molecular_function", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.280653089501, "PValueLDLRT0901317LDLR16wkHighFat" : 8.65824953E-4, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.007051249719, "cytoscape_alias_list" : [ "71712" ], "id_original" : "71712", "logFCLDLR16wkHighFatLDLRChow" : 0.228469068089, "selected" : false, "canonicalName" : "1200002N14Rik", "xref" : "L:71712", "Degree" : 112, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.095982102186, "PValueLDLR16wkHighFatLDLRChow" : 0.223884467899, "name" : "L:71712", "entrezId" : "71712", "adjPValLDLR16wkHighFatLDLRChow" : 0.557972605734, "entrez" : "71712", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.608315767245, "shared_name" : "L:71712", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.879634497111, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.422179905328, "SUID" : 587703, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.135867512455, "logFCLDLRT0901317LDLR16wkHighFat" : 0.640622688954, "label" : "1200002N14Rik", "go_all" : "apoptotic process; autophagy; biological_process; cellular_component; integral to membrane; lysosome; membrane; molecular_function" }, "position" : { "x" : 3964.9453125, "y" : 1584.18017578125 }, "selected" : false }, { "data" : { "id" : "588439", "go_mf" : "identical protein binding; kinase binding; protein binding; protein C-terminus binding; protein kinase binding; structural constituent of cytoskeleton; structural constituent of eye lens; structural molecule activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.265677052368, "PValueLDLRT0901317LDLR16wkHighFat" : 2.7964116E-5, "adjPValLDLRT0901317LDLR16wkHighFat" : 3.87115929E-4, "cytoscape_alias_list" : [ "22352" ], "id_original" : "22352", "logFCLDLR16wkHighFatLDLRChow" : 0.384758382543, "selected" : false, "canonicalName" : "Vim", "xref" : "L:22352", "Degree" : 163, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.072790227941, "PValueLDLR16wkHighFatLDLRChow" : 0.020202891993, "name" : "L:22352", "entrezId" : "22352", "adjPValLDLR16wkHighFatLDLRChow" : 0.159493312994, "entrez" : "22352", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.656320502459, "shared_name" : "L:22352", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.901287532884, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.367823111587, "SUID" : 588439, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.106375398162, "logFCLDLRT0901317LDLR16wkHighFat" : 0.715224377366, "label" : "Vim", "go_all" : "astrocyte development; axon; Bergmann glial cell differentiation; cell leading edge; cell projection; cytoplasm; cytoplasm; cytoskeleton; cytosol; identical protein binding; intermediate filament; intermediate filament; intermediate filament-based process; intermediate filament cytoskeleton; intermediate filament organization; kinase binding; lens fiber cell development; negative regulation of neuron projection development; protein binding; protein C-terminus binding; protein kinase binding; structural constituent of cytoskeleton; structural constituent of eye lens; structural molecule activity; type III intermediate filament" }, "position" : { "x" : 4176.8623046875, "y" : 1723.3182373046875 }, "selected" : false }, { "data" : { "id" : "588262", "go_mf" : "G-protein coupled purinergic nucleotide receptor activity; G-protein coupled receptor activity; receptor activity; signal transducer activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.117666879133, "PValueLDLRT0901317LDLR16wkHighFat" : 1.45030988E-4, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.001564645622, "cytoscape_alias_list" : [ "74191" ], "id_original" : "74191", "logFCLDLR16wkHighFatLDLRChow" : 0.190737169087, "selected" : false, "canonicalName" : "P2ry13", "xref" : "L:74191", "Degree" : 110, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.125293632999, "PValueLDLR16wkHighFatLDLRChow" : 0.266260261206, "name" : "L:74191", "entrezId" : "74191", "adjPValLDLR16wkHighFatLDLRChow" : 0.604759346328, "entrez" : "74191", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.464459738526, "shared_name" : "L:74191", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.811829904158, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.778180442169, "SUID" : 588262, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.492019874933, "logFCLDLRT0901317LDLR16wkHighFat" : 0.673384198444, "label" : "P2ry13", "go_all" : "endoplasmic reticulum; G-protein coupled purinergic nucleotide receptor activity; G-protein coupled purinergic nucleotide receptor signaling pathway; G-protein coupled receptor activity; G-protein coupled receptor signaling pathway; integral to membrane; membrane; plasma membrane; receptor activity; signal transducer activity; signal transduction" }, "position" : { "x" : 3644.097412109375, "y" : 1618.8336181640625 }, "selected" : false }, { "data" : { "id" : "588675", "go_mf" : "molecular_function", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.031102492876, "PValueLDLRT0901317LDLR16wkHighFat" : 2.97972786E-4, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.002874797565, "cytoscape_alias_list" : [ "76820" ], "id_original" : "76820", "logFCLDLR16wkHighFatLDLRChow" : 0.372596881494, "selected" : false, "canonicalName" : "D12Ertd553e", "xref" : "L:76820", "Degree" : 173, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.211505278635, "PValueLDLR16wkHighFatLDLRChow" : 0.002598360495, "name" : "L:76820", "entrezId" : "76820", "adjPValLDLR16wkHighFatLDLRChow" : 0.048357180055, "entrez" : "76820", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.082711221898, "shared_name" : "L:76820", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.462666211579, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.929639292436, "SUID" : 588675, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.797180178183, "logFCLDLRT0901317LDLR16wkHighFat" : 0.4519606197, "label" : "D12Ertd553e", "go_all" : "biological_process; intracellular; molecular_function" }, "position" : { "x" : 3529.115234375, "y" : 2280.172119140625 }, "selected" : false }, { "data" : { "id" : "588592", "go_mf" : "actin binding; actin filament binding; actin filament binding; cytoskeletal protein binding; identical protein binding; phosphatidylinositol 3-kinase binding; protein binding; protein C-terminus binding; protein homodimerization activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.165125483503, "PValueLDLRT0901317LDLR16wkHighFat" : 0.015046226826, "red_GO" : "immune related", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.049048392856, "cytoscape_alias_list" : [ "12721" ], "id_original" : "12721", "logFCLDLR16wkHighFatLDLRChow" : 0.2498145194, "selected" : false, "canonicalName" : "Coro1a", "xref" : "L:12721", "Degree" : 230, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.275545016421, "PValueLDLR16wkHighFatLDLRChow" : 0.254799623694, "name" : "L:12721", "entrezId" : "12721", "adjPValLDLR16wkHighFatLDLRChow" : 0.482027314222, "entrez" : "12721", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.136425510798, "shared_name" : "L:12721", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.517545875192, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.654605244369, "SUID" : 588592, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.352290701315, "logFCLDLRT0901317LDLR16wkHighFat" : 0.63955152763, "label" : "Coro1a", "go_all" : "actin binding; actin cytoskeleton; actin cytoskeleton organization; actin filament; actin filament binding; actin filament binding; actin filament organization; calcium ion transport; cell leading edge; cell migration; cell-substrate adhesion; cortical actin cytoskeleton; cortical actin cytoskeleton; cytoplasm; cytoplasmic vesicle; cytoskeletal protein binding; cytoskeleton; homeostasis of number of cells within a tissue; identical protein binding; immunological synapse; lamellipodium; lamellipodium; leukocyte chemotaxis; membrane; negative regulation of actin nucleation; negative regulation of actin nucleation; phagocytic cup; phagocytic cup; phagocytic vesicle; phagocytic vesicle; phagocytosis; phagolysosome assembly; phagolysosome assembly; phosphatidylinositol 3-kinase binding; plasma membrane; plasma membrane; positive chemotaxis; positive chemotaxis; positive regulation of cell migration; positive regulation of T cell activation; positive regulation of T cell proliferation; protein binding; protein complex; protein C-terminus binding; protein homodimerization activity; regulation of actin filament polymerization; regulation of actin polymerization or depolymerization; regulation of cell shape; response to cytokine stimulus; T cell homeostasis; uropod organization" }, "position" : { "x" : 1726.265869140625, "y" : 2184.552978515625 }, "selected" : false }, { "data" : { "id" : "587919", "go_mf" : "actin binding; metal ion binding; zinc ion binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.21590540379, "PValueLDLRT0901317LDLR16wkHighFat" : 0.002135575771, "red_GO" : "immune + inflammation related", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.014710496967, "cytoscape_alias_list" : [ "54483" ], "id_original" : "54483", "logFCLDLR16wkHighFatLDLRChow" : 0.522389943539, "selected" : false, "canonicalName" : "Mefv", "xref" : "L:54483", "Degree" : 216, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.354916165211, "PValueLDLR16wkHighFatLDLRChow" : 0.003681222672, "name" : "L:54483", "entrezId" : "54483", "adjPValLDLR16wkHighFatLDLRChow" : 0.059143074803, "entrez" : "54483", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.046057191028, "shared_name" : "L:54483", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.369587663055, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.542216681946, "SUID" : 587919, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.222113688484, "logFCLDLRT0901317LDLR16wkHighFat" : 0.553682900188, "label" : "Mefv", "go_all" : "actin binding; cytoplasm; cytoskeleton; inflammatory response; intracellular; metal ion binding; microtubule; microtubule associated complex; nucleus; zinc ion binding" }, "position" : { "x" : 973.9495239257812, "y" : 1577.052734375 }, "selected" : false }, { "data" : { "id" : "588058", "go_mf" : "molecular_function", "logFCLDLRFenofibrateLDLR16wkHighFat" : -0.00642544644, "PValueLDLRT0901317LDLR16wkHighFat" : 0.083084759575, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.200231427836, "cytoscape_alias_list" : [ "80281" ], "id_original" : "80281", "logFCLDLR16wkHighFatLDLRChow" : 0.268901383093, "selected" : false, "canonicalName" : "Cttnbp2nl", "xref" : "L:80281", "Degree" : 53, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.178807838885, "PValueLDLR16wkHighFatLDLRChow" : 0.360894689331, "name" : "L:80281", "entrezId" : "80281", "adjPValLDLR16wkHighFatLDLRChow" : 0.466021678697, "entrez" : "80281", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.276220185742, "shared_name" : "L:80281", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.694174430452, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.956691016334, "SUID" : 588058, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.870363376973, "logFCLDLRT0901317LDLR16wkHighFat" : 0.335556448542, "label" : "Cttnbp2nl", "go_all" : "actin cytoskeleton; biological_process; molecular_function" }, "position" : { "x" : 4272.615234375, "y" : 1958.05078125 }, "selected" : false }, { "data" : { "id" : "588394", "go_mf" : "catalytic activity; hydrolase activity; hydrolase activity, acting on glycosyl bonds; lysozyme activity; lysozyme activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.675749550619, "PValueLDLRT0901317LDLR16wkHighFat" : 0.003681046164, "goBP" : "NA", "GraphId" : "NA", "goids" : "NA", "red_GO" : "immune related", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.019177464305, "XrefId" : "NA", "cytoscape_alias_list" : [ "17105" ], "id_original" : "17105", "logFCLDLR16wkHighFatLDLRChow" : 0.114996480318, "selected" : false, "canonicalName" : "NA", "identifier" : "NA", "xref" : "L:17105", "Degree" : 305, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.155408684826, "PValueLDLR16wkHighFatLDLRChow" : 0.584925183386, "name" : "L:17105", "entrezId" : "17105", "adjPValLDLR16wkHighFatLDLRChow" : 0.806296351262, "moduleMembership" : 0.894582109685, "entrez" : "NA", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.479649908518, "shared_name" : "L:17105", "ObjectType" : "NA", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.777421178186, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.118091412843, "SUID" : 588394, "SourceDir" : "NA", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.022961997507, "logFCLDLRT0901317LDLR16wkHighFat" : 1.103747801915, "label" : "Lyzs", "go_all" : "catalytic activity; cell wall macromolecule catabolic process; cytolysis; cytoplasm; defense response to bacterium; defense response to Gram-negative bacterium; defense response to Gram-negative bacterium; defense response to Gram-positive bacterium; defense response to Gram-positive bacterium; endoplasmic reticulum lumen; extracellular region; Golgi cis cisterna; Golgi stack; hydrolase activity; hydrolase activity, acting on glycosyl bonds; lysozyme activity; lysozyme activity; metabolic process; microvillus; rough endoplasmic reticulum lumen; secretory granule; soluble fraction; trans-Golgi network transport vesicle", "XrefStatus" : "NA", "XrefDatasource" : "NA", "TFeActingComplex" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.2969229 }, "position" : { "x" : 1638.111572265625, "y" : 1627.968994140625 }, "selected" : false }, { "data" : { "id" : "588328", "go_mf" : "GTPase activator activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.053745223849, "PValueLDLRT0901317LDLR16wkHighFat" : 0.004453913544, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.026743888656, "cytoscape_alias_list" : [ "216445" ], "id_original" : "216445", "logFCLDLR16wkHighFatLDLRChow" : 0.389804430549, "selected" : false, "canonicalName" : "Arhgap9", "xref" : "L:216445", "Degree" : 227, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.802346905425, "PValueLDLR16wkHighFatLDLRChow" : 0.031459990121, "name" : "L:216445", "entrezId" : "216445", "adjPValLDLR16wkHighFatLDLRChow" : 0.203512877272, "entrez" : "216445", "PValueLDLRLifeStyleLDLR16wkHighFat" : 1.8658408E-5, "shared_name" : "L:216445", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.005753374901, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.915905396484, "SUID" : 588328, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.764251019129, "logFCLDLRT0901317LDLR16wkHighFat" : 0.519752831741, "label" : "Arhgap9", "go_all" : "cellular_component; GTPase activator activity; positive regulation of GTPase activity" }, "position" : { "x" : 4218.4853515625, "y" : 1783.833984375 }, "selected" : false }, { "data" : { "id" : "588552", "go_mf" : "receptor activity; receptor binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.19043168485, "PValueLDLRT0901317LDLR16wkHighFat" : 8.925235E-6, "red_GO" : "immune related", "adjPValLDLRT0901317LDLR16wkHighFat" : 1.33214976E-4, "cytoscape_alias_list" : [ "12524" ], "id_original" : "12524", "logFCLDLR16wkHighFatLDLRChow" : 0.569835881434, "selected" : false, "canonicalName" : "Cd86", "xref" : "L:12524", "Degree" : 391, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.33776912006, "PValueLDLR16wkHighFatLDLRChow" : 8.36860929E-4, "name" : "L:12524", "entrezId" : "12524", "adjPValLDLR16wkHighFatLDLRChow" : 0.020135820729, "entrez" : "12524", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.024293562155, "shared_name" : "L:12524", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.278514493722, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.514303212776, "SUID" : 588552, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.235836263462, "logFCLDLRT0901317LDLR16wkHighFat" : 0.721038491066, "label" : "Cd86", "go_all" : "B cell activation; defense response to virus; external side of plasma membrane; integral to membrane; intracellular membrane-bounded organelle; membrane; negative regulation of T cell anergy; plasma membrane; positive regulation of T cell proliferation; receptor activity; receptor binding; T cell activation; toll-like receptor signaling pathway" }, "position" : { "x" : 1823.985595703125, "y" : 2200.0302734375 }, "selected" : false }, { "data" : { "id" : "589092", "go_mf" : "1-phosphatidylinositol binding; lipid binding; phosphatidylinositol binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.279190774265, "PValueLDLRT0901317LDLR16wkHighFat" : 0.001437678017, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.010689798812, "cytoscape_alias_list" : [ "71982" ], "id_original" : "71982", "logFCLDLR16wkHighFatLDLRChow" : 0.657543930567, "selected" : false, "canonicalName" : "Snx10", "xref" : "L:71982", "Degree" : 342, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.467132196382, "PValueLDLR16wkHighFatLDLRChow" : 3.70396462E-4, "name" : "L:71982", "entrezId" : "71982", "adjPValLDLR16wkHighFatLDLRChow" : 0.014514096239, "entrez" : "71982", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.010241253142, "shared_name" : "L:71982", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.191529389196, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.397175887685, "SUID" : 589092, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.121052017657, "logFCLDLRT0901317LDLR16wkHighFat" : 0.584934599831, "label" : "Snx10", "go_all" : "1-phosphatidylinositol binding; cell communication; cytoplasm; endosome; endosome organization; extrinsic to endosome membrane; lipid binding; membrane; phosphatidylinositol binding; protein transport; transport" }, "position" : { "x" : 4218.4853515625, "y" : 2205.716064453125 }, "selected" : false }, { "data" : { "id" : "588335", "go_mf" : "actin binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : -0.041292321338, "PValueLDLRT0901317LDLR16wkHighFat" : 0.005110298679, "red_GO" : "adhesion, structure", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.027432347393, "cytoscape_alias_list" : [ "11867" ], "id_original" : "11867", "logFCLDLR16wkHighFatLDLRChow" : 0.319335031673, "selected" : false, "canonicalName" : "Arpc1b", "xref" : "L:11867", "Degree" : 180, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.312476834169, "PValueLDLR16wkHighFatLDLRChow" : 0.086684828763, "name" : "L:11867", "entrezId" : "11867", "adjPValLDLR16wkHighFatLDLRChow" : 0.309581810389, "entrez" : "11867", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.160199173016, "shared_name" : "L:11867", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.43895732583, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.784870897249, "SUID" : 588335, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.520393676217, "logFCLDLRT0901317LDLR16wkHighFat" : 0.507208937627, "label" : "Arpc1b", "go_all" : "actin binding; Arp2/3 protein complex; cytoplasm; cytoskeleton; regulation of actin filament polymerization" }, "position" : { "x" : 320.45947265625, "y" : 1725.688720703125 }, "selected" : false }, { "data" : { "id" : "588313", "go_mf" : "DNA binding; metal ion binding; nucleic acid binding; protein binding; RNA polymerase II core promoter proximal region sequence-specific DNA binding transcription factor activity involved in negative regulation of transcription; zinc ion binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.338070304286, "PValueLDLRT0901317LDLR16wkHighFat" : 6.397784E-6, "goBP" : "NA", "GraphId" : "NA", "goids" : "NA", "red_GO" : "primary metabolic", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 1.09718161E-4, "XrefId" : "NA", "cytoscape_alias_list" : [ "22751" ], "id_original" : "22751", "logFCLDLR16wkHighFatLDLRChow" : 0.191566726823, "selected" : false, "canonicalName" : "NA", "identifier" : "NA", "xref" : "L:22751", "Degree" : 270, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.265552445347, "PValueLDLR16wkHighFatLDLRChow" : 0.171482715484, "name" : "L:22751", "entrezId" : "22751", "adjPValLDLR16wkHighFatLDLRChow" : 0.49398496775, "moduleMembership" : 0.855813806039, "entrez" : "NA", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.059057247645, "shared_name" : "L:22751", "ObjectType" : "NA", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.406602363799, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.108616571738, "SUID" : 588313, "SourceDir" : "NA", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.016818094378, "logFCLDLRT0901317LDLR16wkHighFat" : 0.661786340128, "label" : "Zfp90", "go_all" : "DNA binding; intracellular; metal ion binding; negative regulation of DNA binding; negative regulation of transcription, DNA-dependent; negative regulation of transcription from RNA polymerase II promoter; nucleic acid binding; nucleus; positive regulation of transcription, DNA-dependent; positive regulation of transcription, DNA-dependent; protein binding; regulation of transcription, DNA-dependent; RNA polymerase II core promoter proximal region sequence-specific DNA binding transcription factor activity involved in negative regulation of transcription; transcription, DNA-dependent; zinc ion binding", "XrefStatus" : "NA", "XrefDatasource" : "NA", "TFeActingComplex" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.3000534 }, "position" : { "x" : 3010.904296875, "y" : 1742.67138671875 }, "selected" : false }, { "data" : { "id" : "588664", "go_mf" : "protein binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.4341102222, "PValueLDLRT0901317LDLR16wkHighFat" : 3.4107E-8, "goBP" : "NA", "GraphId" : "NA", "goids" : "NA", "kwalksFenofibratemagenta" : 0.00217355, "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 1.171117E-6, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFD8D8|FFC7C7", "XrefId" : "NA", "cytoscape_alias_list" : [ "67759" ], "id_original" : "67759", "logFCLDLR16wkHighFatLDLRChow" : 0.303619319572, "selected" : false, "canonicalName" : "NA", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFD8D8|FF9D9D", "identifier" : "NA", "xref" : "L:67759", "Degree" : 426, "module" : "red", "kwalksT0901317purple" : 0.03241674, "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.248828566739, "PValueLDLR16wkHighFatLDLRChow" : 0.019225562406, "name" : "L:67759", "entrezId" : "67759", "adjPValLDLR16wkHighFatLDLRChow" : 0.155445344162, "moduleMembership" : 0.929940985929, "entrez" : "NA", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.053983360412, "shared_name" : "L:67759", "ObjectType" : "NA", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.390934855719, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.012345673679, "SUID" : 588664, "SourceDir" : "NA", "PValueLDLRFenofibrateLDLR16wkHighFat" : 9.56974197E-4, "logFCLDLRT0901317LDLR16wkHighFat" : 0.761863313476, "label" : "5033414D02Rik", "go_all" : "integral to membrane; integral to plasma membrane; membrane; mitochondrion; positive regulation of plasminogen activation; protein binding", "XrefStatus" : "NA", "XrefDatasource" : "NA", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFD8D8|DFDFFF", "TFeActingComplex" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.2981707 }, "position" : { "x" : 3451.44140625, "y" : 1833.4180908203125 }, "selected" : false }, { "data" : { "id" : "588251", "go_mf" : "cytoskeletal protein binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.136302218533, "PValueLDLRT0901317LDLR16wkHighFat" : 2.8285828E-5, "red_GO" : "adhesion, structure", "adjPValLDLRT0901317LDLR16wkHighFat" : 3.90280872E-4, "cytoscape_alias_list" : [ "20970" ], "id_original" : "20970", "logFCLDLR16wkHighFatLDLRChow" : 0.346427465288, "selected" : false, "canonicalName" : "Sdc3", "xref" : "L:20970", "Degree" : 253, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.420923786746, "PValueLDLR16wkHighFatLDLRChow" : 0.021647029529, "name" : "L:20970", "entrezId" : "20970", "adjPValLDLR16wkHighFatLDLRChow" : 0.16604076519, "entrez" : "20970", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.005540232071, "shared_name" : "L:20970", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.148678651117, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.682650161523, "SUID" : 588251, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.361027371105, "logFCLDLRT0901317LDLR16wkHighFat" : 0.651029995217, "label" : "Sdc3", "go_all" : "axon; cell adhesion; cytoskeletal protein binding; integral to membrane; membrane; protein complex; synaptosome" }, "position" : { "x" : 113.48570251464844, "y" : 1575.3134765625 }, "selected" : false }, { "data" : { "id" : "588480", "go_mf" : "ATP binding; catalytic activity; enzyme inhibitor activity; isomerase activity; mannose-6-phosphate isomerase activity; N-acylglucosamine 2-epimerase activity; N-acylglucosamine 2-epimerase activity; protein homodimerization activity; purine nucleotide binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.014424125801, "PValueLDLRT0901317LDLR16wkHighFat" : 9.48828E-7, "red_GO" : "primary metabolic", "adjPValLDLRT0901317LDLR16wkHighFat" : 2.1562516E-5, "cytoscape_alias_list" : [ "19703" ], "id_original" : "19703", "logFCLDLR16wkHighFatLDLRChow" : 0.513179410648, "selected" : false, "canonicalName" : "Renbp", "xref" : "L:19703", "Degree" : 299, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.396951225325, "PValueLDLR16wkHighFatLDLRChow" : 6.36843657E-4, "name" : "L:19703", "entrezId" : "19703", "adjPValLDLR16wkHighFatLDLRChow" : 0.020314408406, "entrez" : "19703", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.007550406483, "shared_name" : "L:19703", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.16674010568, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.974281693148, "SUID" : 588480, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.921311398881, "logFCLDLRT0901317LDLR16wkHighFat" : 0.759655814578, "label" : "Renbp", "go_all" : "ATP binding; catalytic activity; enzyme inhibitor activity; isomerase activity; mannose-6-phosphate isomerase activity; mannose metabolic process; N-acetylglucosamine metabolic process; N-acetylglucosamine metabolic process; N-acetylmannosamine metabolic process; N-acylglucosamine 2-epimerase activity; N-acylglucosamine 2-epimerase activity; negative regulation of catalytic activity; negative regulation of endopeptidase activity; protein homodimerization activity; purine nucleotide binding; soluble fraction" }, "position" : { "x" : 2763.640869140625, "y" : 1568.1337890625 }, "selected" : false }, { "data" : { "id" : "588459", "go_mf" : "hydrolase activity; ribonuclease activity; ribonuclease MRP activity; ribonuclease P activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.037319319028, "PValueLDLRT0901317LDLR16wkHighFat" : 0.010245364431, "red_GO" : "primary metabolic", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.043916668549, "cytoscape_alias_list" : [ "117109" ], "id_original" : "117109", "logFCLDLR16wkHighFatLDLRChow" : -0.163120103805, "selected" : false, "canonicalName" : "Pop5", "xref" : "L:117109", "Degree" : 227, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : 0.144138987552, "PValueLDLR16wkHighFatLDLRChow" : 0.213215302455, "name" : "L:117109", "entrezId" : "117109", "adjPValLDLR16wkHighFatLDLRChow" : 0.392397013983, "entrez" : "117109", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.087228898301, "shared_name" : "L:117109", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.455604676021, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.853914062168, "SUID" : 588459, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.682222625971, "logFCLDLRT0901317LDLR16wkHighFat" : -0.264035749106, "label" : "Pop5", "go_all" : "hydrolase activity; nucleic acid phosphodiester bond hydrolysis; nucleic acid phosphodiester bond hydrolysis; nucleic acid phosphodiester bond hydrolysis; nucleolar ribonuclease P complex; nucleus; ribonuclease activity; ribonuclease MRP activity; ribonuclease MRP complex; ribonuclease P activity; RNA metabolic process; rRNA processing; tRNA processing" }, "position" : { "x" : 2593.995849609375, "y" : 1656.036865234375 }, "selected" : false }, { "data" : { "id" : "588444", "go_mf" : "protein complex binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.231428284854, "PValueLDLRT0901317LDLR16wkHighFat" : 2.3139E-8, "goBP" : "negative regulation of epithelial cell migration;epithelial cell differentiation;positive regulation of cell adhesion;positive regulation of endocytosis", "kwalksLifeStyledarkturquoise" : 0.1109049, "GraphId" : "", "kwalksLifeStyleyellow" : 0.1445649, "goids" : "GO:0010633;GO:0030855;GO:0045785;GO:0045807;GO:0005886;GO:0016020;GO:0005764;GO:0005764;GO:0016021;GO:0005737;GO:0005768;GO:0005770;GO:0010008;GO:0043234;GO:0032403", "red_GO" : "immune related", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 7.7097E-7, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFA2A2|FFE1E1", "XrefId" : "", "cytoscape_alias_list" : [ "12512" ], "id_original" : "12512", "logFCLDLR16wkHighFatLDLRChow" : 0.721769792341, "selected" : false, "canonicalName" : "NA", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFA2A2|FF3B3B", "identifier" : "L:12512", "xref" : "L:12512", "Degree" : 375, "module" : "red", "kwalksLifeStylered" : 0.3447506, "kwalksT0901317purple" : 0.02645856, "kwalksFromModule_LifeStyle_yellow" : "module.below.cutoff", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.768499858298, "PValueLDLR16wkHighFatLDLRChow" : 0.00831381554, "name" : "L:12512", "entrezId" : "12512", "adjPValLDLR16wkHighFatLDLRChow" : 0.079938915873, "moduleMembership" : 0.912420923733, "entrez" : "12512", "kwalksFromModule_LifeStyle_darkturquoise" : "module.below.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.004807306475, "shared_name" : "L:12512", "ObjectType" : "", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.117481495524, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.658202744946, "SUID" : 588444, "kwalksLifeStylepurple" : 0.1005943, "SourceDir" : "", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.436465604585, "kwalksFromModule_LifeStyle_red" : "module.above.cutoff", "logFCLDLRT0901317LDLR16wkHighFat" : 1.532492821933, "label" : "Cd63", "go_all" : "cytoplasm; endosome; endosome membrane; epithelial cell differentiation; integral to membrane; late endosome; lysosome; lysosome; membrane; negative regulation of epithelial cell migration; plasma membrane; positive regulation of cell adhesion; positive regulation of endocytosis; protein complex; protein complex binding", "XrefStatus" : "", "XrefDatasource" : "", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFA2A2|9D9DFF", "TFeActingComplex" : "", "kwalksFromModule_LifeStyle_purple" : "module.below.cutoff", "SourcePathway" : "" }, "position" : { "x" : 1967.5499267578125, "y" : 2165.5634765625 }, "selected" : false }, { "data" : { "id" : "588378", "go_mf" : "protein binding; sugar binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.273373781421, "PValueLDLRT0901317LDLR16wkHighFat" : 5.72959E-6, "red_GO" : "immune related", "adjPValLDLRT0901317LDLR16wkHighFat" : 9.9672051E-5, "cytoscape_alias_list" : [ "20345" ], "id_original" : "20345", "logFCLDLR16wkHighFatLDLRChow" : 0.545438831865, "selected" : false, "canonicalName" : "Selplg", "xref" : "L:20345", "Degree" : 356, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.519102343398, "PValueLDLR16wkHighFatLDLRChow" : 3.11837828E-4, "name" : "L:20345", "entrezId" : "20345", "adjPValLDLR16wkHighFatLDLRChow" : 0.013365135398, "entrez" : "20345", "PValueLDLRLifeStyleLDLR16wkHighFat" : 5.79491122E-4, "shared_name" : "L:20345", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.045794358734, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.26990435723, "SUID" : 588378, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.06430571584, "logFCLDLRT0901317LDLR16wkHighFat" : 0.69937077097, "label" : "Selplg", "go_all" : "cell adhesion; integral to membrane; leukocyte tethering or rolling; membrane; plasma membrane; protein binding; sugar binding" }, "position" : { "x" : 1921.705322265625, "y" : 1583.0521240234375 }, "selected" : false }, { "data" : { "id" : "588626", "go_mf" : "cysteine-type endopeptidase activity; cysteine-type peptidase activity; hydrolase activity; peptidase activity; protein binding; scaffold protein binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.041853555833, "PValueLDLRT0901317LDLR16wkHighFat" : 0.001479522971, "goBP" : "response to hypoxia;microglial cell activation;apoptosis;proteolysis;induction of apoptosis;myoblast fusion;memory;cell death;response to drug;response to organic cyclic compound;regulation of apoptosis;protein processing;response to lipopolysaccharide;response to ATP;response to chemical stimulus;positive regulation of apoptosis;positive regulation of circadian sleep/wake cycle, non-REM sleep;positive regulation of cytokine secretion;positive regulation of interleukin-1 alpha secretion;positive regulation of interleukin-1 beta secretion", "GraphId" : "bca3c; e93da; df9f6; aafc3, fc62f; e35b2; c4584; d506a; c1de0, ed8; cbb", "kwalksFromModule_T0901317_red" : "module.above.cutoff", "goids" : "GO:0001666;GO:0001666;GO:0001774;GO:0006915;GO:0006508;GO:0006917;GO:0006917;GO:0007520;GO:0007613;GO:0008219;GO:0042493;GO:0014070;GO:0042981;GO:0016485;GO:0016485;GO:0032496;GO:0033198;GO:0042221;GO:0043065;GO:0046010;GO:0050715;GO:0050715;GO:0050717;GO:0050718;GO:0050718;GO:0005622;GO:0005576;GO:0005829;GO:0005634;GO:0005737;GO:0005737;GO:0005515;GO:0004197;GO:0008234;GO:0008233;GO:0016787", "red_GO" : "immune related", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.010954321204, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFD1D1|FFF9F9", "XrefId" : "12362", "cytoscape_alias_list" : [ "12362" ], "kwalksT0901317darkturquoise" : 0.10395, "id_original" : "12362", "logFCLDLR16wkHighFatLDLRChow" : 0.355913216307, "selected" : false, "canonicalName" : "CASP1, , Casp1", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFD1D1|FFC5C5", "identifier" : "L:12362", "xref" : "L:12362", "kwalksFromModule_T0901317_darkturquoise" : "module.below.cutoff", "Degree" : 154, "module" : "red", "kwalksT0901317royalblue" : 0.1135081, "kwalksT0901317purple" : 0.1105559, "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.260669554463, "PValueLDLR16wkHighFatLDLRChow" : 0.01151284172, "kwalksFromModule_T0901317_purple" : "module.below.cutoff", "name" : "L:12362", "entrezId" : "12362", "adjPValLDLR16wkHighFatLDLRChow" : 0.116058300569, "entrez" : "12362", "isDrug" : "false", "kwalksFromModule_T0901317_royalblue" : "module.below.cutoff", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.062348592678, "kwalksT0901317magenta" : 0.1277097, "kwalksFromModule_T0901317_black" : "module.below.cutoff", "shared_name" : "L:12362", "ObjectType" : "DATANODE", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.414585187507, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.915290431212, "kwalksFromModule_T0901317_magenta" : "module.below.cutoff", "SUID" : 588626, "SourceDir" : "ETSB_20111201, Mmu-KEGG_20110518, wikipathways_analysis", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.762855616556, "kwalksT0901317red" : 0.9745472, "logFCLDLRT0901317LDLR16wkHighFat" : 0.451862932212, "label" : "Casp1", "go_all" : "apoptotic process; cell death; cellular response to organic substance; cysteine-type endopeptidase activity; cysteine-type peptidase activity; cytoplasm; cytoplasm; extracellular region; hydrolase activity; induction of apoptosis; induction of apoptosis; interleukin-1 beta production; intracellular; memory; metabolic process; microglial cell activation; myoblast fusion; neuron projection; nucleus; peptidase activity; positive regulation of apoptotic process; positive regulation of circadian sleep/wake cycle, non-REM sleep; positive regulation of cytokine secretion; positive regulation of cytokine secretion; positive regulation of interleukin-1 alpha secretion; positive regulation of interleukin-1 beta secretion; positive regulation of interleukin-1 beta secretion; protein binding; protein complex; protein processing; protein processing; proteolysis; regulation of apoptotic process; response to ATP; response to chemical stimulus; response to drug; response to hypoxia; response to hypoxia; response to lipopolysaccharide; response to organic cyclic compound; scaffold protein binding", "XrefStatus" : "mapped", "XrefDatasource" : "Entrez Gene", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFD1D1|DDDDFF", "TFeActingComplex" : "", "SourcePathway" : "Hepatic inflammatory pathways.gpml; M2-M1 switching macrophages_under development.gpml; adipose tissue inflammation.gpml, mmu_NOD-like receptor signaling pathway.gpml; mmu_Cytosolic DNA-sensing pathway.gpml, Mm_MAPK_signaling_pathway_WP493_41389.gpml; Mm_Apoptosis_WP1254_41341.gpml", "kwalksT0901317yellow" : 0.4122843, "kwalksT0901317black" : 0.1252427 }, "position" : { "x" : 2079.819091796875, "y" : 2069.6767578125 }, "selected" : false }, { "data" : { "id" : "588464", "go_mf" : "alditol:NADP+ 1-oxidoreductase activity; alditol:NADP+ 1-oxidoreductase activity; glyceraldehyde oxidoreductase activity; oxidoreductase activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : -0.080734027896, "PValueLDLRT0901317LDLR16wkHighFat" : 0.053658560057, "red_GO" : "immune related", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.178000690116, "cytoscape_alias_list" : [ "11677" ], "id_original" : "11677", "logFCLDLR16wkHighFatLDLRChow" : 0.489463771869, "selected" : false, "canonicalName" : "Akr1b3", "xref" : "L:11677", "Degree" : 132, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.321018967553, "PValueLDLR16wkHighFatLDLRChow" : 0.003821053644, "name" : "L:11677", "entrezId" : "11677", "adjPValLDLR16wkHighFatLDLRChow" : 0.060788372193, "entrez" : "11677", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.054979108906, "shared_name" : "L:11677", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.392246119453, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.853752894903, "SUID" : 588464, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.626473995031, "logFCLDLRT0901317LDLR16wkHighFat" : 0.322814356692, "label" : "Akr1b3", "go_all" : "alditol:NADP+ 1-oxidoreductase activity; alditol:NADP+ 1-oxidoreductase activity; antibiotic metabolic process; cytoplasm; extracellular space; glyceraldehyde oxidoreductase activity; nucleus; oxidation-reduction process; oxidoreductase activity; positive regulation of JAK-STAT cascade; positive regulation of smooth muscle cell proliferation; response to organic substance; sorbitol biosynthetic process; stress-activated protein kinase signaling cascade" }, "position" : { "x" : 2136.320068359375, "y" : 1933.271484375 }, "selected" : false }, { "data" : { "id" : "587710", "go_mf" : "protein binding; protein phosphorylated amino acid binding; SH3 domain binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.457469989899, "PValueLDLRT0901317LDLR16wkHighFat" : 3.26408E-7, "goBP" : "cytoskeleton organization;phagocytosis, recognition;phagocytosis, engulfment;cellular component movement;actin filament organization;cell-matrix adhesion;cell migration;positive regulation of phagocytosis", "GraphId" : "", "goids" : "GO:0007010;GO:0006910;GO:0006911;GO:0006928;GO:0007015;GO:0007160;GO:0016477;GO:0050766;GO:0016020;GO:0016021;GO:0005887;GO:0005515;GO:0017124;GO:0045309", "red_GO" : "immune related", "kwalksFenofibratemagenta" : 0.002216445, "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 7.71912E-6, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFCCCC|FFC4C4", "XrefId" : "", "cytoscape_alias_list" : [ "19261" ], "id_original" : "19261", "logFCLDLR16wkHighFatLDLRChow" : 0.399014767359, "selected" : false, "canonicalName" : "NA", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFCCCC|FF5F5F", "identifier" : "L:19261", "xref" : "L:19261", "Degree" : 421, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.397074282185, "PValueLDLR16wkHighFatLDLRChow" : 0.27760552386, "name" : "L:19261", "entrezId" : "19261", "adjPValLDLR16wkHighFatLDLRChow" : 0.420556344595, "moduleMembership" : 0.955958931059, "entrez" : "19261", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.210942065593, "shared_name" : "L:19261", "ObjectType" : "", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.429053902453, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.1517692577, "SUID" : 587710, "SourceDir" : "", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.033054056373, "logFCLDLRT0901317LDLR16wkHighFat" : 1.24742656676, "label" : "Sirpa", "go_all" : "actin filament organization; cell-matrix adhesion; cell migration; cellular component movement; cytoskeleton organization; integral to membrane; integral to plasma membrane; membrane; phagocytosis, engulfment; phagocytosis, recognition; positive regulation of phagocytosis; protein binding; protein phosphorylated amino acid binding; SH3 domain binding", "XrefStatus" : "", "XrefDatasource" : "", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFCCCC|CCCCFF", "TFeActingComplex" : "", "SourcePathway" : "", "kwalksFenofibratered" : 0.6385096 }, "position" : { "x" : 1967.5499267578125, "y" : 1602.0416259765625 }, "selected" : false }, { "data" : { "id" : "588968", "go_mf" : "molecular_function", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.183381588057, "PValueLDLRT0901317LDLR16wkHighFat" : 1.3027115E-5, "adjPValLDLRT0901317LDLR16wkHighFat" : 2.03642562E-4, "cytoscape_alias_list" : [ "12046" ], "id_original" : "12046", "logFCLDLR16wkHighFatLDLRChow" : 0.223001259619, "selected" : false, "canonicalName" : "Bcl2a1c", "xref" : "L:12046", "Degree" : 110, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.383274389475, "PValueLDLR16wkHighFatLDLRChow" : 0.168766480393, "name" : "L:12046", "entrezId" : "12046", "adjPValLDLR16wkHighFatLDLRChow" : 0.490898369713, "entrez" : "12046", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.019051843154, "shared_name" : "L:12046", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.257081085441, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.585711094976, "SUID" : 588968, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.257063333176, "logFCLDLRT0901317LDLR16wkHighFat" : 0.736960973966, "label" : "Bcl2a1c", "go_all" : "biological_process; cellular_component; molecular_function" }, "position" : { "x" : 3466.776611328125, "y" : 2189.538330078125 }, "selected" : false }, { "data" : { "id" : "587798", "go_mf" : "cyclin-dependent protein kinase regulator activity; enzyme binding; kinase activity; protein binding; protein complex binding; protein kinase activity; protein kinase binding; protein kinase binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.123388389323, "kwalksLifeStyleroyalblue" : 1.231713, "PValueLDLRT0901317LDLR16wkHighFat" : 6.916066E-6, "goBP" : "regulation of cyclin-dependent protein kinase activity;G1/S transition of mitotic cell cycle;re-entry into mitotic cell cycle;positive regulation of protein phosphorylation;regulation of cell cycle;Wnt receptor signaling pathway;protein phosphorylation;response to DNA damage stimulus;cell cycle;lactation;positive regulation of cell proliferation;response to organic nitrogen;negative regulation of Wnt receptor signaling pathway;negative regulation of epithelial cell differentiation;endoplasmic reticulum unfolded protein response;mitotic cell cycle G1/S transition DNA damage checkpoint;Leydig cell differentiation;mammary gland epithelial cell proliferation;positive regulation of mammary gland epithelial cell proliferation;fat cell differentiation;positive regulation of cyclin-dependent protein kinase activity;cell division;canonical Wnt receptor signaling pathway;mammary gland alveolus development;response to UV-A;cellular response to organic substance", "kwalksLifeStyledarkturquoise" : 1.000899, "GraphId" : "n174; f1b; b43; f2f; fc6", "kwalksFromModule_T0901317_red" : "module.above.cutoff", "kwalksLifeStyleyellow" : 1.337204, "goids" : "GO:0000079;GO:0000082;GO:0000320;GO:0001934;GO:0051726;GO:0016055;GO:0006468;GO:0006974;GO:0007049;GO:0007595;GO:0007595;GO:0008284;GO:0010243;GO:0030178;GO:0030857;GO:0030968;GO:0031571;GO:0033327;GO:0033598;GO:0033601;GO:0045444;GO:0045737;GO:0051301;GO:0060070;GO:0060749;GO:0060749;GO:0070141;GO:0071310;GO:0005622;GO:0000307;GO:0000307;GO:0016020;GO:0005634;GO:0005634;GO:0005737;GO:0005737;GO:0005515;GO:0004672;GO:0016301;GO:0016538;GO:0019899;GO:0019901;GO:0019901;GO:0032403", "red_GO" : "immune related", "isDrugNeighbor" : "false", "kwalksLifeStyleblack" : 1.386882, "adjPValLDLRT0901317LDLR16wkHighFat" : 1.00167784E-4, "kwalksFromModule_T0901317_yellow" : "module.below.cutoff", "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FF9595|FFEFEF", "XrefId" : "12443", "cytoscape_alias_list" : [ "12443" ], "kwalksT0901317darkturquoise" : 0.316471, "id_original" : "12443", "logFCLDLR16wkHighFatLDLRChow" : 0.825326072235, "selected" : false, "canonicalName" : ", Ccnd1", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FF9595|FF6060", "identifier" : "L:12443", "xref" : "L:12443", "kwalksFromModule_T0901317_darkturquoise" : "module.none", "Degree" : 354, "module" : "red", "kwalksT0901317royalblue" : 0.2110014, "kwalksLifeStylered" : 4.109087, "kwalksT0901317purple" : 0.1910481, "kwalksFromModule_LifeStyle_yellow" : "module.none", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.594471556521, "kwalksFromModule_LifeStyle_black" : "module.none", "PValueLDLR16wkHighFatLDLRChow" : 0.002676767679, "kwalksLifeStylemagenta" : 1.214025, "kwalksFromModule_T0901317_purple" : "module.below.cutoff", "name" : "L:12443", "entrezId" : "12443", "adjPValLDLR16wkHighFatLDLRChow" : 0.032720488426, "moduleMembership" : 0.925428877487, "entrez" : "12443", "kwalksFromModule_LifeStyle_darkturquoise" : "module.none", "isDrug" : "false", "kwalksFromModule_T0901317_royalblue" : "module.below.cutoff", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.023204487759, "kwalksT0901317magenta" : 0.2265834, "kwalksFromModule_T0901317_black" : "module.below.cutoff", "kwalksFromModule_LifeStyle_magenta" : "module.none", "shared_name" : "L:12443", "ObjectType" : "DATANODE", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.182956907679, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.809575718288, "kwalksFromModule_T0901317_magenta" : "module.none", "SUID" : 587798, "kwalksLifeStylepurple" : 0.9992038, "SourceDir" : "wikipathways_analysis", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.554846977801, "kwalksFromModule_LifeStyle_red" : "module.above.cutoff", "kwalksT0901317red" : 2.030009, "logFCLDLRT0901317LDLR16wkHighFat" : 1.244787803099, "label" : "Ccnd1", "go_all" : "canonical Wnt receptor signaling pathway; cell cycle; cell division; cellular response to organic substance; cyclin-dependent protein kinase holoenzyme complex; cyclin-dependent protein kinase holoenzyme complex; cyclin-dependent protein kinase regulator activity; cytoplasm; cytoplasm; endoplasmic reticulum unfolded protein response; enzyme binding; fat cell differentiation; G1/S transition of mitotic cell cycle; intracellular; kinase activity; lactation; lactation; Leydig cell differentiation; mammary gland alveolus development; mammary gland alveolus development; mammary gland epithelial cell proliferation; membrane; mitotic cell cycle G1/S transition DNA damage checkpoint; negative regulation of epithelial cell differentiation; negative regulation of Wnt receptor signaling pathway; nucleus; nucleus; positive regulation of cell proliferation; positive regulation of cyclin-dependent protein kinase activity; positive regulation of mammary gland epithelial cell proliferation; positive regulation of protein phosphorylation; protein binding; protein complex binding; protein kinase activity; protein kinase binding; protein kinase binding; protein phosphorylation; re-entry into mitotic cell cycle; regulation of cell cycle; regulation of cyclin-dependent protein kinase activity; response to DNA damage stimulus; response to organic nitrogen; response to UV-A; Wnt receptor signaling pathway", "XrefStatus" : "mapped", "XrefDatasource" : "Entrez Gene", "kwalksFromModule_LifeStyle_royalblue" : "module.none", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FF9595|B3B3FF", "TFeActingComplex" : "", "kwalksFromModule_LifeStyle_purple" : "module.none", "SourcePathway" : "Mm_PluriNetWork_WP1763_41345.gpml; Mm_Wnt_Signaling_Pathway_and_Pluripotency_WP723_41353.gpml; Mm_Wnt_Signaling_Pathway_WP403_41302.gpml; Mm_Focal_Adhesion_WP85_41365.gpml; Mm_G1_to_S_cell_cycle_control_WP413_41269.gpml", "kwalksT0901317yellow" : 0.2970804, "kwalksT0901317black" : 0.2461033 }, "position" : { "x" : 2009.859619140625, "y" : 2139.63623046875 }, "selected" : false }, { "data" : { "id" : "587729", "go_mf" : "copper ion binding; cytokine activity; interleukin-1 receptor binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.500971460373, "PValueLDLRT0901317LDLR16wkHighFat" : 3.5E-11, "goBP" : "fever generation;inflammatory response;immune response;negative regulation of cell proliferation;positive regulation vascular endothelial growth factor production;positive regulation of steroid biosynthetic process;cytokine-mediated signaling pathway;keratinization;positive regulation of interleukin-6 production;positive regulation of stress-activated MAPK cascade;cellular response to heat;positive regulation of I-kappaB kinase/NF-kappaB cascade;positive regulation of interleukin-2 biosynthetic process;response to copper ion;positive regulation of angiogenesis;positive regulation of mitosis;positive regulation of transcription from RNA polymerase II promoter;positive regulation of JNK cascade;positive regulation of cytokine secretion;positive regulation of cell division;regulation of sensory perception of pain;positive regulation of ERK1 and ERK2 cascade", "GraphId" : "c1ea8; c76; ba3; a2d; fc39a", "kwalksFromModule_T0901317_red" : "module.above.cutoff", "kwalksFromModule_Fenofibrate_magenta" : "module.none", "goids" : "GO:0001660;GO:0006954;GO:0006955;GO:0008285;GO:0010575;GO:0010893;GO:0019221;GO:0031424;GO:0032755;GO:0032874;GO:0034605;GO:0043123;GO:0045086;GO:0046688;GO:0045766;GO:0045840;GO:0045944;GO:0046330;GO:0050715;GO:0051781;GO:0051930;GO:0070374;GO:0005576;GO:0005829;GO:0005615;GO:0009986;GO:0005125;GO:0005149;GO:0005507", "red_GO" : "immune + inflammation related", "kwalksFenofibratemagenta" : 0.01906852, "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 2.81E-9, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFDCDC|FFBFBF", "XrefId" : "16175", "cytoscape_alias_list" : [ "16175" ], "id_original" : "16175", "logFCLDLR16wkHighFatLDLRChow" : 0.272329772096, "selected" : false, "canonicalName" : "IL1A, Il1a", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFDCDC|FF5757", "identifier" : "L:16175", "xref" : "L:16175", "Degree" : 328, "module" : "red", "kwalksT0901317purple" : 0.05223895, "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.185409508665, "PValueLDLR16wkHighFatLDLRChow" : 0.127249644087, "kwalksFromModule_T0901317_purple" : "module.none", "name" : "L:16175", "entrezId" : "16175", "adjPValLDLR16wkHighFatLDLRChow" : 0.429980211197, "moduleMembership" : 0.866548853953, "entrez" : "16175", "kwalksFromModule_Fenofibrate_red" : "module.above.cutoff", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.297675352782, "kwalksT0901317magenta" : 0.06867064, "shared_name" : "L:16175", "ObjectType" : "DATANODE", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.710455690633, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.04872453818, "kwalksFromModule_T0901317_magenta" : "module.none", "SUID" : 587729, "SourceDir" : "wikipathways_analysis", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.005623492102, "kwalksT0901317red" : 0.4661885, "logFCLDLRT0901317LDLR16wkHighFat" : 1.31318735912, "label" : "Il1a", "go_all" : "cell surface; cellular response to heat; copper ion binding; cytokine activity; cytokine-mediated signaling pathway; cytosol; extracellular region; extracellular space; fever generation; immune response; inflammatory response; interleukin-1 receptor binding; keratinization; negative regulation of cell proliferation; positive regulation of angiogenesis; positive regulation of cell division; positive regulation of cytokine secretion; positive regulation of ERK1 and ERK2 cascade; positive regulation of I-kappaB kinase/NF-kappaB cascade; positive regulation of interleukin-2 biosynthetic process; positive regulation of interleukin-6 production; positive regulation of JNK cascade; positive regulation of mitosis; positive regulation of steroid biosynthetic process; positive regulation of stress-activated MAPK cascade; positive regulation of transcription from RNA polymerase II promoter; positive regulation vascular endothelial growth factor production; regulation of sensory perception of pain; response to copper ion", "XrefStatus" : "mapped", "XrefDatasource" : "Entrez Gene", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFDCDC|E7E7FF", "TFeActingComplex" : "", "SourcePathway" : "Mm_Senescence_and_Autophagy_WP1267_47750.gpml; Mm_MAPK_signaling_pathway_WP493_47770.gpml; Mm_Hypertrophy_Model_WP202_41285.gpml; Mm_FAS_pathway_and_Stress_induction_of_HSP_regulation_WP571_47743.gpml; Mm_Iron_Homeostasis_WP1596_43784.gpml", "kwalksFenofibratered" : 2.293754 }, "position" : { "x" : 817.2840576171875, "y" : 1593.5189208984375 }, "selected" : false }, { "data" : { "id" : "589231", "go_mf" : "protein binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.127669347587, "PValueLDLRT0901317LDLR16wkHighFat" : 2.69091034E-4, "red_GO" : "immune related", "adjPValLDLRT0901317LDLR16wkHighFat" : 0.002640058941, "cytoscape_alias_list" : [ "14998" ], "id_original" : "14998", "logFCLDLR16wkHighFatLDLRChow" : 0.396164507569, "selected" : false, "canonicalName" : "H2-DMa", "xref" : "L:14998", "Degree" : 143, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.304446486453, "PValueLDLR16wkHighFatLDLRChow" : 0.040171117014, "name" : "L:14998", "entrezId" : "14998", "adjPValLDLR16wkHighFatLDLRChow" : 0.234844232776, "entrez" : "14998", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.113308937104, "shared_name" : "L:14998", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.520932636959, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.787673336045, "SUID" : 589231, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.50452966514, "logFCLDLRT0901317LDLR16wkHighFat" : 0.71928777556, "label" : "H2-DMa", "go_all" : "antigen processing and presentation; antigen processing and presentation; antigen processing and presentation of exogenous peptide antigen via MHC class II; antigen processing and presentation of exogenous peptide antigen via MHC class II; antigen processing and presentation of peptide or polysaccharide antigen via MHC class II; chaperone mediated protein folding requiring cofactor; chaperone mediated protein folding requiring cofactor; endosome membrane; immunoglobulin mediated immune response; inner ear development; integral to membrane; intracellular; late endosome; lysosomal membrane; lysosome; membrane; MHC class II protein complex; multivesicular body; positive regulation of immune response; positive regulation of T cell differentiation; positive thymic T cell selection; protein binding; protein complex assembly; protein transport" }, "position" : { "x" : 1511.651123046875, "y" : 1933.271484375 }, "selected" : false }, { "data" : { "id" : "587788", "go_mf" : "protein complex binding; protein kinase activator activity; Rac GTPase activator activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.197790817084, "PValueLDLRT0901317LDLR16wkHighFat" : 8.142E-9, "goBP" : "NA", "GraphId" : "NA", "kwalksFromModule_T0901317_red" : "module.below.cutoff", "goids" : "NA", "isDrugNeighbor" : "false", "adjPValLDLRT0901317LDLR16wkHighFat" : 3.38731E-7, "hf_treatment_chart_LDLR_Fenofibrate_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFC3C3|FFE5E5", "XrefId" : "NA", "cytoscape_alias_list" : [ "105855" ], "id_original" : "105855", "logFCLDLR16wkHighFatLDLRChow" : 0.463749610658, "selected" : false, "canonicalName" : "NA", "hf_treatment_chart_LDLR_T0901317_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFC3C3|FF8A8A", "identifier" : "NA", "xref" : "L:105855", "Degree" : 367, "module" : "red", "kwalksLifeStylered" : 0.1480403, "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.371049775018, "PValueLDLR16wkHighFatLDLRChow" : 0.001940115168, "name" : "L:105855", "entrezId" : "105855", "adjPValLDLR16wkHighFatLDLRChow" : 0.041341803703, "moduleMembership" : 0.958490043602, "entrez" : "NA", "isDrug" : "false", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.012409401017, "shared_name" : "L:105855", "ObjectType" : "NA", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.208049296799, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.486256840408, "SUID" : 587788, "SourceDir" : "NA", "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.177873694, "kwalksT0901317red" : 0.05949633, "logFCLDLRT0901317LDLR16wkHighFat" : 0.915510049979, "label" : "Nckap1l", "go_all" : "actin polymerization-dependent cell motility; B cell homeostasis; B cell receptor signaling pathway; cortical actin cytoskeleton organization; cytosol; maintenance of cell polarity; myeloid cell homeostasis; negative regulation of apoptotic process; negative regulation of interleukin-17 production; negative regulation of interleukin-6 production; negative regulation of myosin-light-chain-phosphatase activity; neutrophil chemotaxis; positive regulation of actin filament polymerization; positive regulation of actin filament polymerization; positive regulation of B cell differentiation; positive regulation of B cell proliferation; positive regulation of CD4-positive, alpha-beta T cell differentiation; positive regulation of CD8-positive, alpha-beta T cell differentiation; positive regulation of cell adhesion mediated by integrin; positive regulation of erythrocyte differentiation; positive regulation of gamma-delta T cell differentiation; positive regulation of lymphocyte differentiation; positive regulation of neutrophil chemotaxis; positive regulation of phagocytosis, engulfment; positive regulation of phosphorylation; positive regulation of protein phosphorylation; positive regulation of Rac GTPase activity; positive regulation of T cell proliferation; protein complex assembly; protein complex binding; protein kinase activator activity; Rac GTPase activator activity; response to chemical stimulus; response to drug; SCAR complex; SCAR complex; T cell homeostasis", "XrefStatus" : "NA", "XrefDatasource" : "NA", "hf_treatment_chart_LDLR_LifeStyle_LDLR_16wkHighFat" : "http://chart.apis.google.com/chart?chs=100x100&cht=p&chd=t:50,50&chp=1.571&chf=bg,s,FFFFFF00&chco=FFC3C3|CFCFFF", "TFeActingComplex" : "NA", "SourcePathway" : "NA" }, "position" : { "x" : 4096.60888671875, "y" : 1648.0853271484375 }, "selected" : false }, { "data" : { "id" : "589370", "go_mf" : "bHLH transcription factor binding; chromatin binding; cofactor binding; DNA binding; E-box binding; metal ion binding; protein binding; RNA polymerase II activating transcription factor binding; RNA polymerase II regulatory region sequence-specific DNA binding; RNA polymerase II transcription factor binding transcription factor activity involved in positive regulation of transcription; sequence-specific DNA binding RNA polymerase II transcription factor activity; zinc ion binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.120556783067, "PValueLDLRT0901317LDLR16wkHighFat" : 2.864753E-6, "red_GO" : "immune related", "adjPValLDLRT0901317LDLR16wkHighFat" : 5.4940381E-5, "cytoscape_alias_list" : [ "16909" ], "id_original" : "16909", "logFCLDLR16wkHighFatLDLRChow" : 0.147522502521, "selected" : false, "canonicalName" : "Lmo2", "xref" : "L:16909", "Degree" : 139, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.085417130917, "PValueLDLR16wkHighFatLDLRChow" : 0.18237121531, "name" : "L:16909", "entrezId" : "16909", "adjPValLDLR16wkHighFatLDLRChow" : 0.506787738019, "entrez" : "16909", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.43873968398, "shared_name" : "L:16909", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.795826052734, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.604395422731, "SUID" : 589370, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.275140966001, "logFCLDLRT0901317LDLR16wkHighFat" : 0.544230573213, "label" : "Lmo2", "go_all" : "bHLH transcription factor binding; cellular response to thyroid hormone stimulus; chromatin binding; cofactor binding; DNA binding; E-box binding; embryonic hemopoiesis; metal ion binding; negative regulation of erythrocyte differentiation; nucleus; positive regulation of transcription from RNA polymerase II promoter; positive regulation of transcription from RNA polymerase II promoter; protein binding; protein complex; RNA polymerase II activating transcription factor binding; RNA polymerase II regulatory region sequence-specific DNA binding; RNA polymerase II transcription factor binding transcription factor activity involved in positive regulation of transcription; sequence-specific DNA binding RNA polymerase II transcription factor activity; transcription factor complex; transcription from RNA polymerase II promoter; zinc ion binding" }, "position" : { "x" : 1600.3787841796875, "y" : 1660.19580078125 }, "selected" : false }, { "data" : { "id" : "588257", "go_mf" : "cell adhesion molecule binding; ephrin receptor binding; frizzled binding; glycoprotein binding; growth factor binding; interleukin-5 receptor binding; neurexin family protein binding; protein binding; protein C-terminus binding; protein heterodimerization activity; protein homodimerization activity; protein N-terminus binding; syndecan binding", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.0353533254, "PValueLDLRT0901317LDLR16wkHighFat" : 0.154881867194, "adjPValLDLRT0901317LDLR16wkHighFat" : 0.232124528611, "cytoscape_alias_list" : [ "53378" ], "id_original" : "53378", "logFCLDLR16wkHighFatLDLRChow" : 0.260362507899, "selected" : false, "canonicalName" : "Sdcbp", "xref" : "L:53378", "Degree" : 203, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.223637009247, "PValueLDLR16wkHighFatLDLRChow" : 0.160845072811, "name" : "L:53378", "entrezId" : "53378", "adjPValLDLR16wkHighFatLDLRChow" : 0.380297204463, "entrez" : "53378", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.18580782868, "shared_name" : "L:53378", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.559751173215, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.830473335639, "SUID" : 588257, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.67103931079, "logFCLDLRT0901317LDLR16wkHighFat" : 0.519605958209, "label" : "Sdcbp", "go_all" : "cell adhesion molecule binding; cytoplasm; ephrin receptor binding; frizzled binding; glycoprotein binding; growth factor binding; interleukin-5 receptor binding; interleukin-5 receptor complex; intracellular; membrane; neurexin family protein binding; plasma membrane; positive regulation of phosphorylation; protein binding; protein C-terminus binding; protein heterodimerization activity; protein homodimerization activity; protein N-terminus binding; Ras protein signal transduction; syndecan binding" }, "position" : { "x" : 4033.5341796875, "y" : 1610.4525146484375 }, "selected" : false }, { "data" : { "id" : "588305", "go_mf" : "chemokine activity; chemokine activity; cytokine activity; low-density lipoprotein receptor activity; scavenger receptor activity", "logFCLDLRFenofibrateLDLR16wkHighFat" : 0.075560351257, "PValueLDLRT0901317LDLR16wkHighFat" : 4.71278E-7, "adjPValLDLRT0901317LDLR16wkHighFat" : 1.1653019E-5, "cytoscape_alias_list" : [ "66102" ], "id_original" : "66102", "logFCLDLR16wkHighFatLDLRChow" : 0.408537727672, "selected" : false, "canonicalName" : "Cxcl16", "xref" : "L:66102", "Degree" : 279, "module" : "red", "logFCLDLRLifeStyleLDLR16wkHighFat" : -0.340002523569, "PValueLDLR16wkHighFatLDLRChow" : 0.002316073061, "name" : "L:66102", "entrezId" : "66102", "adjPValLDLR16wkHighFatLDLRChow" : 0.045342023868, "entrez" : "66102", "PValueLDLRLifeStyleLDLR16wkHighFat" : 0.01069100176, "shared_name" : "L:66102", "adjPValLDLRLifeStyleLDLR16wkHighFat" : 0.193694347564, "adjPValLDLRFenofibrateLDLR16wkHighFat" : 0.823834041612, "SUID" : 588305, "PValueLDLRFenofibrateLDLR16wkHighFat" : 0.564668918632, "logFCLDLRT0901317LDLR16wkHighFat" : 0.703289686659, "label" : "Cxcl16", "go_all" : "chemokine activity; chemokine activity; chemotaxis; cytokine activity; extracellular space; integral to membrane; low-density lipoprotein receptor activity; membrane; positive regulation of cell growth; positive regulation of cell migration; receptor-mediated endocytosis; response to cytokine stimulus; response to interferon-gamma; response to tumor necrosis factor; scavenger receptor activity" }, "position" : { "x" : 3856.188232421875, "y" : 1567.6737060546875 }, "selected" : false } ], "edges" : [ { "data" : { "id" : "684730", "source" : "589163", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rasgrp1 (pp) Fcgr4", "weight" : 0.549150380672, "name" : "Rasgrp1 (pp) Fcgr4", "shared_name" : "Rasgrp1 (pp) Fcgr4", "SUID" : 684730, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "684729", "source" : "589163", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rasgrp1 (pp) Ear12", "weight" : 0.41524241722, "name" : "Rasgrp1 (pp) Ear12", "shared_name" : "Rasgrp1 (pp) Ear12", "SUID" : 684729, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "684723", "source" : "589163", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rasgrp1 (pp) H2-DMa", "weight" : 0.443423499936, "name" : "Rasgrp1 (pp) H2-DMa", "shared_name" : "Rasgrp1 (pp) H2-DMa", "SUID" : 684723, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "684740", "source" : "589163", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rasgrp1 (pp) C1qb", "weight" : 0.546644353637, "name" : "Rasgrp1 (pp) C1qb", "shared_name" : "Rasgrp1 (pp) C1qb", "SUID" : 684740, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "684735", "source" : "589163", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rasgrp1 (pp) Ear4", "weight" : 0.514187877814, "name" : "Rasgrp1 (pp) Ear4", "shared_name" : "Rasgrp1 (pp) Ear4", "SUID" : 684735, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "684739", "source" : "589163", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rasgrp1 (pp) Ly86", "weight" : 0.4634185239, "name" : "Rasgrp1 (pp) Ly86", "shared_name" : "Rasgrp1 (pp) Ly86", "SUID" : 684739, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "684724", "source" : "589163", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rasgrp1 (pp) Ear10", "weight" : 0.482473314853, "name" : "Rasgrp1 (pp) Ear10", "shared_name" : "Rasgrp1 (pp) Ear10", "SUID" : 684724, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "684721", "source" : "589163", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rasgrp1 (pp) Serpinb6a", "weight" : 0.443513939771, "name" : "Rasgrp1 (pp) Serpinb6a", "shared_name" : "Rasgrp1 (pp) Serpinb6a", "SUID" : 684721, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637076", "source" : "588212", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Snn", "weight" : 0.574932970648, "name" : "Anxa3 (pp) Snn", "shared_name" : "Anxa3 (pp) Snn", "SUID" : 637076, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637209", "source" : "588212", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Lmo2", "weight" : 0.409126952443, "name" : "Anxa3 (pp) Lmo2", "shared_name" : "Anxa3 (pp) Lmo2", "SUID" : 637209, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637212", "source" : "588212", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Il10ra", "weight" : 0.413003791327, "name" : "Anxa3 (pp) Il10ra", "shared_name" : "Anxa3 (pp) Il10ra", "SUID" : 637212, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637082", "source" : "588212", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Gngt2", "weight" : 0.489143569463, "name" : "Anxa3 (pp) Gngt2", "shared_name" : "Anxa3 (pp) Gngt2", "SUID" : 637082, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637192", "source" : "588212", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Ppif", "weight" : 0.415859835725, "name" : "Anxa3 (pp) Ppif", "shared_name" : "Anxa3 (pp) Ppif", "SUID" : 637192, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637175", "source" : "588212", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Rasgrp1", "weight" : 0.414476192755, "name" : "Anxa3 (pp) Rasgrp1", "shared_name" : "Anxa3 (pp) Rasgrp1", "SUID" : 637175, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637193", "source" : "588212", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Abi3", "weight" : 0.574046399615, "name" : "Anxa3 (pp) Abi3", "shared_name" : "Anxa3 (pp) Abi3", "SUID" : 637193, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637118", "source" : "588212", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) 5430435G22Rik", "weight" : 0.456347794564, "name" : "Anxa3 (pp) 5430435G22Rik", "shared_name" : "Anxa3 (pp) 5430435G22Rik", "SUID" : 637118, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637125", "source" : "588212", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Pla2g15", "weight" : 0.531775885806, "name" : "Anxa3 (pp) Pla2g15", "shared_name" : "Anxa3 (pp) Pla2g15", "SUID" : 637125, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637073", "source" : "588212", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Cd86", "weight" : 0.527711270436, "name" : "Anxa3 (pp) Cd86", "shared_name" : "Anxa3 (pp) Cd86", "SUID" : 637073, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637194", "source" : "588212", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Ear12", "weight" : 0.402088197414, "name" : "Anxa3 (pp) Ear12", "shared_name" : "Anxa3 (pp) Ear12", "SUID" : 637194, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637004", "source" : "588212", "target" : "588213", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Pdlim4", "weight" : 0.450417565518, "name" : "Anxa3 (pp) Pdlim4", "shared_name" : "Anxa3 (pp) Pdlim4", "SUID" : 637004, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637038", "source" : "588212", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Cyp7b1", "weight" : 0.412181712294, "name" : "Anxa3 (pp) Cyp7b1", "shared_name" : "Anxa3 (pp) Cyp7b1", "SUID" : 637038, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637098", "source" : "588212", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) D12Ertd553e", "weight" : 0.428999346471, "name" : "Anxa3 (pp) D12Ertd553e", "shared_name" : "Anxa3 (pp) D12Ertd553e", "SUID" : 637098, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637012", "source" : "588212", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Sdc3", "weight" : 0.40674577454, "name" : "Anxa3 (pp) Sdc3", "shared_name" : "Anxa3 (pp) Sdc3", "SUID" : 637012, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637040", "source" : "588212", "target" : "588365", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Tnfaip8l2", "weight" : 0.477253317644, "name" : "Anxa3 (pp) Tnfaip8l2", "shared_name" : "Anxa3 (pp) Tnfaip8l2", "SUID" : 637040, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637047", "source" : "588212", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Cd14", "weight" : 0.448823938207, "name" : "Anxa3 (pp) Cd14", "shared_name" : "Anxa3 (pp) Cd14", "SUID" : 637047, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637162", "source" : "588212", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Cfp", "weight" : 0.507390434521, "name" : "Anxa3 (pp) Cfp", "shared_name" : "Anxa3 (pp) Cfp", "SUID" : 637162, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637053", "source" : "588212", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Cd63", "weight" : 0.487142796117, "name" : "Anxa3 (pp) Cd63", "shared_name" : "Anxa3 (pp) Cd63", "SUID" : 637053, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637008", "source" : "588212", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Laptm5", "weight" : 0.681631484435, "name" : "Anxa3 (pp) Laptm5", "shared_name" : "Anxa3 (pp) Laptm5", "SUID" : 637008, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637097", "source" : "588212", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) 5033414D02Rik", "weight" : 0.480747960277, "name" : "Anxa3 (pp) 5033414D02Rik", "shared_name" : "Anxa3 (pp) 5033414D02Rik", "SUID" : 637097, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637130", "source" : "588212", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Fcgr3", "weight" : 0.497889568544, "name" : "Anxa3 (pp) Fcgr3", "shared_name" : "Anxa3 (pp) Fcgr3", "SUID" : 637130, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637134", "source" : "588212", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Lgals3", "weight" : 0.579042496358, "name" : "Anxa3 (pp) Lgals3", "shared_name" : "Anxa3 (pp) Lgals3", "SUID" : 637134, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637190", "source" : "588212", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Trem2", "weight" : 0.4661151269, "name" : "Anxa3 (pp) Trem2", "shared_name" : "Anxa3 (pp) Trem2", "SUID" : 637190, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637195", "source" : "588212", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Fcgr4", "weight" : 0.455447857418, "name" : "Anxa3 (pp) Fcgr4", "shared_name" : "Anxa3 (pp) Fcgr4", "SUID" : 637195, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637127", "source" : "588212", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Plac8", "weight" : 0.492664920084, "name" : "Anxa3 (pp) Plac8", "shared_name" : "Anxa3 (pp) Plac8", "SUID" : 637127, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637129", "source" : "588212", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Fcer1g", "weight" : 0.574293448598, "name" : "Anxa3 (pp) Fcer1g", "shared_name" : "Anxa3 (pp) Fcer1g", "SUID" : 637129, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637052", "source" : "588212", "target" : "588439", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Vim", "weight" : 0.502355651086, "name" : "Anxa3 (pp) Vim", "shared_name" : "Anxa3 (pp) Vim", "SUID" : 637052, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637120", "source" : "588212", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Tmem86a", "weight" : 0.468448060223, "name" : "Anxa3 (pp) Tmem86a", "shared_name" : "Anxa3 (pp) Tmem86a", "SUID" : 637120, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637155", "source" : "588212", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Csrp1", "weight" : 0.444261331621, "name" : "Anxa3 (pp) Csrp1", "shared_name" : "Anxa3 (pp) Csrp1", "SUID" : 637155, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637107", "source" : "588212", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Axl", "weight" : 0.460564588398, "name" : "Anxa3 (pp) Axl", "shared_name" : "Anxa3 (pp) Axl", "SUID" : 637107, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637025", "source" : "588212", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Cxcl16", "weight" : 0.496177262235, "name" : "Anxa3 (pp) Cxcl16", "shared_name" : "Anxa3 (pp) Cxcl16", "SUID" : 637025, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637080", "source" : "588212", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Slc11a1", "weight" : 0.639145352224, "name" : "Anxa3 (pp) Slc11a1", "shared_name" : "Anxa3 (pp) Slc11a1", "SUID" : 637080, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637028", "source" : "588212", "target" : "588322", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Pfkfb4", "weight" : 0.538730899154, "name" : "Anxa3 (pp) Pfkfb4", "shared_name" : "Anxa3 (pp) Pfkfb4", "SUID" : 637028, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637203", "source" : "588212", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Ly86", "weight" : 0.469931214139, "name" : "Anxa3 (pp) Ly86", "shared_name" : "Anxa3 (pp) Ly86", "SUID" : 637203, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637201", "source" : "588212", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Ear4", "weight" : 0.576376684354, "name" : "Anxa3 (pp) Ear4", "shared_name" : "Anxa3 (pp) Ear4", "SUID" : 637201, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637104", "source" : "588212", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) 6330416G13Rik", "weight" : 0.530975112604, "name" : "Anxa3 (pp) 6330416G13Rik", "shared_name" : "Anxa3 (pp) 6330416G13Rik", "SUID" : 637104, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637204", "source" : "588212", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) C1qb", "weight" : 0.661259183774, "name" : "Anxa3 (pp) C1qb", "shared_name" : "Anxa3 (pp) C1qb", "SUID" : 637204, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637058", "source" : "588212", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Renbp", "weight" : 0.445118733625, "name" : "Anxa3 (pp) Renbp", "shared_name" : "Anxa3 (pp) Renbp", "SUID" : 637058, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637089", "source" : "588212", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Casp1", "weight" : 0.518578531395, "name" : "Anxa3 (pp) Casp1", "shared_name" : "Anxa3 (pp) Casp1", "SUID" : 637089, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637187", "source" : "588212", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Ear10", "weight" : 0.442395341126, "name" : "Anxa3 (pp) Ear10", "shared_name" : "Anxa3 (pp) Ear10", "SUID" : 637187, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637016", "source" : "588212", "target" : "588262", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) P2ry13", "weight" : 0.442693716479, "name" : "Anxa3 (pp) P2ry13", "shared_name" : "Anxa3 (pp) P2ry13", "SUID" : 637016, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637142", "source" : "588212", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Cytip", "weight" : 0.417464440273, "name" : "Anxa3 (pp) Cytip", "shared_name" : "Anxa3 (pp) Cytip", "SUID" : 637142, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637108", "source" : "588212", "target" : "588728", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) AB124611", "weight" : 0.451321044291, "name" : "Anxa3 (pp) AB124611", "shared_name" : "Anxa3 (pp) AB124611", "SUID" : 637108, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637207", "source" : "588212", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Lrrc33", "weight" : 0.576467094027, "name" : "Anxa3 (pp) Lrrc33", "shared_name" : "Anxa3 (pp) Lrrc33", "SUID" : 637207, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637077", "source" : "588212", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Coro1a", "weight" : 0.467411484568, "name" : "Anxa3 (pp) Coro1a", "shared_name" : "Anxa3 (pp) Coro1a", "SUID" : 637077, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637011", "source" : "588212", "target" : "588244", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Gltp", "weight" : 0.412275906375, "name" : "Anxa3 (pp) Gltp", "shared_name" : "Anxa3 (pp) Gltp", "SUID" : 637011, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637141", "source" : "588212", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Hk3", "weight" : 0.419658424706, "name" : "Anxa3 (pp) Hk3", "shared_name" : "Anxa3 (pp) Hk3", "SUID" : 637141, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637055", "source" : "588212", "target" : "588461", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Tbxas1", "weight" : 0.480653972705, "name" : "Anxa3 (pp) Tbxas1", "shared_name" : "Anxa3 (pp) Tbxas1", "SUID" : 637055, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637198", "source" : "588212", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Clec7a", "weight" : 0.44725939886, "name" : "Anxa3 (pp) Clec7a", "shared_name" : "Anxa3 (pp) Clec7a", "SUID" : 637198, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637093", "source" : "588212", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Gpnmb", "weight" : 0.631220551342, "name" : "Anxa3 (pp) Gpnmb", "shared_name" : "Anxa3 (pp) Gpnmb", "SUID" : 637093, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637184", "source" : "588212", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Serpinb6a", "weight" : 0.653462371783, "name" : "Anxa3 (pp) Serpinb6a", "shared_name" : "Anxa3 (pp) Serpinb6a", "SUID" : 637184, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637050", "source" : "588212", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Clec4n", "weight" : 0.569468307971, "name" : "Anxa3 (pp) Clec4n", "shared_name" : "Anxa3 (pp) Clec4n", "SUID" : 637050, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637109", "source" : "588212", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Tpm4", "weight" : 0.434066657764, "name" : "Anxa3 (pp) Tpm4", "shared_name" : "Anxa3 (pp) Tpm4", "SUID" : 637109, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637020", "source" : "588212", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Ms4a6d", "weight" : 0.585191622154, "name" : "Anxa3 (pp) Ms4a6d", "shared_name" : "Anxa3 (pp) Ms4a6d", "SUID" : 637020, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637110", "source" : "588212", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Vsig4", "weight" : 0.638550757125, "name" : "Anxa3 (pp) Vsig4", "shared_name" : "Anxa3 (pp) Vsig4", "SUID" : 637110, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637168", "source" : "588212", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Vcam1", "weight" : 0.436061702757, "name" : "Anxa3 (pp) Vcam1", "shared_name" : "Anxa3 (pp) Vcam1", "SUID" : 637168, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637119", "source" : "588212", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Ccl6", "weight" : 0.435219129792, "name" : "Anxa3 (pp) Ccl6", "shared_name" : "Anxa3 (pp) Ccl6", "SUID" : 637119, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637116", "source" : "588212", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Slc15a3", "weight" : 0.498140250415, "name" : "Anxa3 (pp) Slc15a3", "shared_name" : "Anxa3 (pp) Slc15a3", "SUID" : 637116, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637126", "source" : "588212", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Cotl1", "weight" : 0.502155335002, "name" : "Anxa3 (pp) Cotl1", "shared_name" : "Anxa3 (pp) Cotl1", "SUID" : 637126, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637101", "source" : "588212", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Cd52", "weight" : 0.467229307894, "name" : "Anxa3 (pp) Cd52", "shared_name" : "Anxa3 (pp) Cd52", "SUID" : 637101, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637034", "source" : "588212", "target" : "588342", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Mfge8", "weight" : 0.45316998318, "name" : "Anxa3 (pp) Mfge8", "shared_name" : "Anxa3 (pp) Mfge8", "SUID" : 637034, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637160", "source" : "588212", "target" : "589076", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) H2-M3", "weight" : 0.424224129342, "name" : "Anxa3 (pp) H2-M3", "shared_name" : "Anxa3 (pp) H2-M3", "SUID" : 637160, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637051", "source" : "588212", "target" : "588432", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Anxa3 (pp) Kcnk6", "weight" : 0.41820536957, "name" : "Anxa3 (pp) Kcnk6", "shared_name" : "Anxa3 (pp) Kcnk6", "SUID" : 637051, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646428", "source" : "588322", "target" : "588492", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Ncf4", "weight" : 0.40641912934, "name" : "Pfkfb4 (pp) Ncf4", "shared_name" : "Pfkfb4 (pp) Ncf4", "SUID" : 646428, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646494", "source" : "588322", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Cotl1", "weight" : 0.54546812643, "name" : "Pfkfb4 (pp) Cotl1", "shared_name" : "Pfkfb4 (pp) Cotl1", "SUID" : 646494, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646443", "source" : "588322", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Coro1a", "weight" : 0.430048769889, "name" : "Pfkfb4 (pp) Coro1a", "shared_name" : "Pfkfb4 (pp) Coro1a", "SUID" : 646443, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646498", "source" : "588322", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Fcer1g", "weight" : 0.459250324502, "name" : "Pfkfb4 (pp) Fcer1g", "shared_name" : "Pfkfb4 (pp) Fcer1g", "SUID" : 646498, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646588", "source" : "588322", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Il10ra", "weight" : 0.430327491361, "name" : "Pfkfb4 (pp) Il10ra", "shared_name" : "Pfkfb4 (pp) Il10ra", "SUID" : 646588, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646579", "source" : "588322", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) C1qb", "weight" : 0.452808721549, "name" : "Pfkfb4 (pp) C1qb", "shared_name" : "Pfkfb4 (pp) C1qb", "SUID" : 646579, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646441", "source" : "588322", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Snn", "weight" : 0.590869501932, "name" : "Pfkfb4 (pp) Snn", "shared_name" : "Pfkfb4 (pp) Snn", "SUID" : 646441, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646574", "source" : "588322", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Ear4", "weight" : 0.460917747846, "name" : "Pfkfb4 (pp) Ear4", "shared_name" : "Pfkfb4 (pp) Ear4", "SUID" : 646574, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646422", "source" : "588322", "target" : "588461", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Tbxas1", "weight" : 0.413487474689, "name" : "Pfkfb4 (pp) Tbxas1", "shared_name" : "Pfkfb4 (pp) Tbxas1", "SUID" : 646422, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646448", "source" : "588322", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Gngt2", "weight" : 0.444918570387, "name" : "Pfkfb4 (pp) Gngt2", "shared_name" : "Pfkfb4 (pp) Gngt2", "SUID" : 646448, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646483", "source" : "588322", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Slc15a3", "weight" : 0.537912234851, "name" : "Pfkfb4 (pp) Slc15a3", "shared_name" : "Pfkfb4 (pp) Slc15a3", "SUID" : 646483, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646473", "source" : "588322", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Axl", "weight" : 0.481927582681, "name" : "Pfkfb4 (pp) Axl", "shared_name" : "Pfkfb4 (pp) Axl", "SUID" : 646473, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646487", "source" : "588322", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Tmem86a", "weight" : 0.575349646198, "name" : "Pfkfb4 (pp) Tmem86a", "shared_name" : "Pfkfb4 (pp) Tmem86a", "SUID" : 646487, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646400", "source" : "588322", "target" : "588351", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Ttc39a", "weight" : 0.407094811167, "name" : "Pfkfb4 (pp) Ttc39a", "shared_name" : "Pfkfb4 (pp) Ttc39a", "SUID" : 646400, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646459", "source" : "588322", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Gpnmb", "weight" : 0.5900195756, "name" : "Pfkfb4 (pp) Gpnmb", "shared_name" : "Pfkfb4 (pp) Gpnmb", "SUID" : 646459, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646536", "source" : "588322", "target" : "589113", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Ms4a7", "weight" : 0.449433004418, "name" : "Pfkfb4 (pp) Ms4a7", "shared_name" : "Pfkfb4 (pp) Ms4a7", "SUID" : 646536, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646493", "source" : "588322", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Pla2g15", "weight" : 0.504416689107, "name" : "Pfkfb4 (pp) Pla2g15", "shared_name" : "Pfkfb4 (pp) Pla2g15", "SUID" : 646493, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646425", "source" : "588322", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Renbp", "weight" : 0.553046406098, "name" : "Pfkfb4 (pp) Renbp", "shared_name" : "Pfkfb4 (pp) Renbp", "SUID" : 646425, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646566", "source" : "588322", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Ear12", "weight" : 0.410792778979, "name" : "Pfkfb4 (pp) Ear12", "shared_name" : "Pfkfb4 (pp) Ear12", "SUID" : 646566, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646465", "source" : "588322", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) D12Ertd553e", "weight" : 0.514847311115, "name" : "Pfkfb4 (pp) D12Ertd553e", "shared_name" : "Pfkfb4 (pp) D12Ertd553e", "SUID" : 646465, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646532", "source" : "588322", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Cfp", "weight" : 0.529058391269, "name" : "Pfkfb4 (pp) Cfp", "shared_name" : "Pfkfb4 (pp) Cfp", "SUID" : 646532, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646561", "source" : "588322", "target" : "589256", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Timp1", "weight" : 0.41315297872, "name" : "Pfkfb4 (pp) Timp1", "shared_name" : "Pfkfb4 (pp) Timp1", "SUID" : 646561, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646554", "source" : "588322", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Serpinb6a", "weight" : 0.517160094774, "name" : "Pfkfb4 (pp) Serpinb6a", "shared_name" : "Pfkfb4 (pp) Serpinb6a", "SUID" : 646554, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646468", "source" : "588322", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Cd52", "weight" : 0.405842998267, "name" : "Pfkfb4 (pp) Cd52", "shared_name" : "Pfkfb4 (pp) Cd52", "SUID" : 646468, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646439", "source" : "588322", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Cd86", "weight" : 0.404373099294, "name" : "Pfkfb4 (pp) Cd86", "shared_name" : "Pfkfb4 (pp) Cd86", "SUID" : 646439, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646403", "source" : "588322", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Cyp7b1", "weight" : 0.477128132926, "name" : "Pfkfb4 (pp) Cyp7b1", "shared_name" : "Pfkfb4 (pp) Cyp7b1", "SUID" : 646403, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646398", "source" : "588322", "target" : "588342", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Mfge8", "weight" : 0.639641740983, "name" : "Pfkfb4 (pp) Mfge8", "shared_name" : "Pfkfb4 (pp) Mfge8", "SUID" : 646398, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646489", "source" : "588322", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Obrgrp", "weight" : 0.502261366603, "name" : "Pfkfb4 (pp) Obrgrp", "shared_name" : "Pfkfb4 (pp) Obrgrp", "SUID" : 646489, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646420", "source" : "588322", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Cd63", "weight" : 0.571378211973, "name" : "Pfkfb4 (pp) Cd63", "shared_name" : "Pfkfb4 (pp) Cd63", "SUID" : 646420, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646414", "source" : "588322", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Cd14", "weight" : 0.49709979904, "name" : "Pfkfb4 (pp) Cd14", "shared_name" : "Pfkfb4 (pp) Cd14", "SUID" : 646414, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646565", "source" : "588322", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Abi3", "weight" : 0.467491717809, "name" : "Pfkfb4 (pp) Abi3", "shared_name" : "Pfkfb4 (pp) Abi3", "SUID" : 646565, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646472", "source" : "588322", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Tlr2", "weight" : 0.442475716521, "name" : "Pfkfb4 (pp) Tlr2", "shared_name" : "Pfkfb4 (pp) Tlr2", "SUID" : 646472, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646421", "source" : "588322", "target" : "588459", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Pop5", "weight" : 0.405212138206, "name" : "Pfkfb4 (pp) Pop5", "shared_name" : "Pfkfb4 (pp) Pop5", "SUID" : 646421, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646417", "source" : "588322", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Clec4n", "weight" : 0.460048688338, "name" : "Pfkfb4 (pp) Clec4n", "shared_name" : "Pfkfb4 (pp) Clec4n", "SUID" : 646417, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646409", "source" : "588322", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Selplg", "weight" : 0.439855236745, "name" : "Pfkfb4 (pp) Selplg", "shared_name" : "Pfkfb4 (pp) Selplg", "SUID" : 646409, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646563", "source" : "588322", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Ppif", "weight" : 0.458613608626, "name" : "Pfkfb4 (pp) Ppif", "shared_name" : "Pfkfb4 (pp) Ppif", "SUID" : 646563, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646557", "source" : "588322", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Ear10", "weight" : 0.421172184906, "name" : "Pfkfb4 (pp) Ear10", "shared_name" : "Pfkfb4 (pp) Ear10", "SUID" : 646557, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646525", "source" : "588322", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Csrp1", "weight" : 0.469020218754, "name" : "Pfkfb4 (pp) Csrp1", "shared_name" : "Pfkfb4 (pp) Csrp1", "SUID" : 646525, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646505", "source" : "588322", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Lgals3", "weight" : 0.524942936345, "name" : "Pfkfb4 (pp) Lgals3", "shared_name" : "Pfkfb4 (pp) Lgals3", "SUID" : 646505, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646546", "source" : "588322", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Rasgrp1", "weight" : 0.403842933395, "name" : "Pfkfb4 (pp) Rasgrp1", "shared_name" : "Pfkfb4 (pp) Rasgrp1", "SUID" : 646546, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646560", "source" : "588322", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pfkfb4 (pp) Trem2", "weight" : 0.414429992258, "name" : "Pfkfb4 (pp) Trem2", "shared_name" : "Pfkfb4 (pp) Trem2", "SUID" : 646560, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "684016", "source" : "589133", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vcam1 (pp) Ly86", "weight" : 0.542193825114, "name" : "Vcam1 (pp) Ly86", "shared_name" : "Vcam1 (pp) Ly86", "SUID" : 684016, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683987", "source" : "589133", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vcam1 (pp) Serpinb6a", "weight" : 0.574975183461, "name" : "Vcam1 (pp) Serpinb6a", "shared_name" : "Vcam1 (pp) Serpinb6a", "SUID" : 683987, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683992", "source" : "589133", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vcam1 (pp) Ear10", "weight" : 0.506477448422, "name" : "Vcam1 (pp) Ear10", "shared_name" : "Vcam1 (pp) Ear10", "SUID" : 683992, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "684010", "source" : "589133", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.738598596583, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Vcam1 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 0.002110318, "weight" : 0.738598596583, "fusion" : "NA", "name" : "Vcam1 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 151880.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Vcam1 (pp) Ear4", "combinedscore" : "NA", "SUID" : 684010, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "683991", "source" : "589133", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vcam1 (pp) H2-DMa", "weight" : 0.515622023095, "name" : "Vcam1 (pp) H2-DMa", "shared_name" : "Vcam1 (pp) H2-DMa", "SUID" : 683991, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "684002", "source" : "589133", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vcam1 (pp) Ear12", "weight" : 0.550632550488, "name" : "Vcam1 (pp) Ear12", "shared_name" : "Vcam1 (pp) Ear12", "SUID" : 684002, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "684019", "source" : "589133", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vcam1 (pp) Fblim1", "weight" : 0.413530320277, "name" : "Vcam1 (pp) Fblim1", "shared_name" : "Vcam1 (pp) Fblim1", "SUID" : 684019, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683996", "source" : "589133", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vcam1 (pp) Trem2", "weight" : 0.664547990584, "name" : "Vcam1 (pp) Trem2", "shared_name" : "Vcam1 (pp) Trem2", "SUID" : 683996, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "684013", "source" : "589133", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vcam1 (pp) Prkcd", "weight" : 0.403799290307, "name" : "Vcam1 (pp) Prkcd", "shared_name" : "Vcam1 (pp) Prkcd", "SUID" : 684013, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "684006", "source" : "589133", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vcam1 (pp) Cd53", "weight" : 0.423101140556, "name" : "Vcam1 (pp) Cd53", "shared_name" : "Vcam1 (pp) Cd53", "SUID" : 684006, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "684004", "source" : "589133", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vcam1 (pp) Fcgr4", "weight" : 0.638192155349, "name" : "Vcam1 (pp) Fcgr4", "shared_name" : "Vcam1 (pp) Fcgr4", "SUID" : 684004, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683970", "source" : "589133", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vcam1 (pp) Tmsb4x", "weight" : 0.553149693663, "name" : "Vcam1 (pp) Tmsb4x", "shared_name" : "Vcam1 (pp) Tmsb4x", "SUID" : 683970, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "684020", "source" : "589133", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vcam1 (pp) Tspan33", "weight" : 0.432377422007, "name" : "Vcam1 (pp) Tspan33", "shared_name" : "Vcam1 (pp) Tspan33", "SUID" : 684020, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "684017", "source" : "589133", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vcam1 (pp) C1qb", "weight" : 0.606250409991, "name" : "Vcam1 (pp) C1qb", "shared_name" : "Vcam1 (pp) C1qb", "SUID" : 684017, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683997", "source" : "589133", "target" : "589256", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vcam1 (pp) Timp1", "weight" : 0.418717404525, "name" : "Vcam1 (pp) Timp1", "shared_name" : "Vcam1 (pp) Timp1", "SUID" : 683997, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "684007", "source" : "589133", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vcam1 (pp) Clec7a", "weight" : 0.621532091061, "name" : "Vcam1 (pp) Clec7a", "shared_name" : "Vcam1 (pp) Clec7a", "SUID" : 684007, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "684000", "source" : "589133", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vcam1 (pp) Abi3", "weight" : 0.438172728229, "name" : "Vcam1 (pp) Abi3", "shared_name" : "Vcam1 (pp) Abi3", "SUID" : 684000, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "684021", "source" : "589133", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vcam1 (pp) Lrrc33", "weight" : 0.442293812041, "name" : "Vcam1 (pp) Lrrc33", "shared_name" : "Vcam1 (pp) Lrrc33", "SUID" : 684021, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634327", "source" : "588185", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Cd52", "weight" : 0.524704714968, "name" : "Aif1 (pp) Cd52", "shared_name" : "Aif1 (pp) Cd52", "SUID" : 634327, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634299", "source" : "588185", "target" : "588394", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Lyzs", "weight" : 0.510970086777, "name" : "Aif1 (pp) Lyzs", "shared_name" : "Aif1 (pp) Lyzs", "SUID" : 634299, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634370", "source" : "588185", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) H2-DMa", "weight" : 0.429522474943, "name" : "Aif1 (pp) H2-DMa", "shared_name" : "Aif1 (pp) H2-DMa", "SUID" : 634370, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634279", "source" : "588185", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Laptm5", "weight" : 0.463764868805, "name" : "Aif1 (pp) Laptm5", "shared_name" : "Aif1 (pp) Laptm5", "SUID" : 634279, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634380", "source" : "588185", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Ear4", "weight" : 0.41738683674, "name" : "Aif1 (pp) Ear4", "shared_name" : "Aif1 (pp) Ear4", "SUID" : 634380, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634339", "source" : "588185", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Obrgrp", "weight" : 0.416507413172, "name" : "Aif1 (pp) Obrgrp", "shared_name" : "Aif1 (pp) Obrgrp", "SUID" : 634339, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634321", "source" : "588185", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Casp1", "weight" : 0.481908970555, "name" : "Aif1 (pp) Casp1", "shared_name" : "Aif1 (pp) Casp1", "SUID" : 634321, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634283", "source" : "588185", "target" : "588254", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Irf8", "weight" : 0.479811014095, "name" : "Aif1 (pp) Irf8", "shared_name" : "Aif1 (pp) Irf8", "SUID" : 634283, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634330", "source" : "588185", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Tlr2", "weight" : 0.459984373085, "name" : "Aif1 (pp) Tlr2", "shared_name" : "Aif1 (pp) Tlr2", "SUID" : 634330, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634343", "source" : "588185", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Fcer1g", "weight" : 0.620257245127, "name" : "Aif1 (pp) Fcer1g", "shared_name" : "Aif1 (pp) Fcer1g", "SUID" : 634343, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634358", "source" : "588185", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Pld4", "weight" : 0.436998118069, "name" : "Aif1 (pp) Pld4", "shared_name" : "Aif1 (pp) Pld4", "SUID" : 634358, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634277", "source" : "588185", "target" : "588213", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Pdlim4", "weight" : 0.407132271531, "name" : "Aif1 (pp) Pdlim4", "shared_name" : "Aif1 (pp) Pdlim4", "SUID" : 634277, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634376", "source" : "588185", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Fcgr4", "weight" : 0.580095773253, "name" : "Aif1 (pp) Fcgr4", "shared_name" : "Aif1 (pp) Fcgr4", "SUID" : 634376, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634316", "source" : "588185", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Coro1a", "weight" : 0.449167715542, "name" : "Aif1 (pp) Coro1a", "shared_name" : "Aif1 (pp) Coro1a", "SUID" : 634316, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634286", "source" : "588185", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Ms4a6d", "weight" : 0.44393832725, "name" : "Aif1 (pp) Ms4a6d", "shared_name" : "Aif1 (pp) Ms4a6d", "SUID" : 634286, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634342", "source" : "588185", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Plac8", "weight" : 0.42420836327, "name" : "Aif1 (pp) Plac8", "shared_name" : "Aif1 (pp) Plac8", "SUID" : 634342, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634313", "source" : "588185", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Cd86", "weight" : 0.432971412215, "name" : "Aif1 (pp) Cd86", "shared_name" : "Aif1 (pp) Cd86", "SUID" : 634313, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634331", "source" : "588185", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Axl", "weight" : 0.501432050536, "name" : "Aif1 (pp) Axl", "shared_name" : "Aif1 (pp) Axl", "SUID" : 634331, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634362", "source" : "588185", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Tmsb4x", "weight" : 0.453174495357, "name" : "Aif1 (pp) Tmsb4x", "shared_name" : "Aif1 (pp) Tmsb4x", "SUID" : 634362, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634282", "source" : "588185", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Sdc3", "weight" : 0.427950281427, "name" : "Aif1 (pp) Sdc3", "shared_name" : "Aif1 (pp) Sdc3", "SUID" : 634282, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634329", "source" : "588185", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Serpina3g", "weight" : 0.563052786535, "name" : "Aif1 (pp) Serpina3g", "shared_name" : "Aif1 (pp) Serpina3g", "SUID" : 634329, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634349", "source" : "588185", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Hk3", "weight" : 0.578263186513, "name" : "Aif1 (pp) Hk3", "shared_name" : "Aif1 (pp) Hk3", "SUID" : 634349, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634298", "source" : "588185", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Selplg", "weight" : 0.457426324314, "name" : "Aif1 (pp) Selplg", "shared_name" : "Aif1 (pp) Selplg", "SUID" : 634298, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634382", "source" : "588185", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Ly86", "weight" : 0.579173571146, "name" : "Aif1 (pp) Ly86", "shared_name" : "Aif1 (pp) Ly86", "SUID" : 634382, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634289", "source" : "588185", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Cxcl16", "weight" : 0.522316436543, "name" : "Aif1 (pp) Cxcl16", "shared_name" : "Aif1 (pp) Cxcl16", "SUID" : 634289, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634364", "source" : "588185", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Rasgrp1", "weight" : 0.542385051422, "name" : "Aif1 (pp) Rasgrp1", "shared_name" : "Aif1 (pp) Rasgrp1", "SUID" : 634364, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634357", "source" : "588185", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Cfp", "weight" : 0.626963875504, "name" : "Aif1 (pp) Cfp", "shared_name" : "Aif1 (pp) Cfp", "SUID" : 634357, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634318", "source" : "588185", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Slc11a1", "weight" : 0.500301529609, "name" : "Aif1 (pp) Slc11a1", "shared_name" : "Aif1 (pp) Slc11a1", "SUID" : 634318, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634345", "source" : "588185", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Lgals3", "weight" : 0.4387382235, "name" : "Aif1 (pp) Lgals3", "shared_name" : "Aif1 (pp) Lgals3", "SUID" : 634345, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634311", "source" : "588185", "target" : "588512", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) H2-Eb1", "weight" : 0.424952621002, "name" : "Aif1 (pp) H2-Eb1", "shared_name" : "Aif1 (pp) H2-Eb1", "SUID" : 634311, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634301", "source" : "588185", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Clec4n", "weight" : 0.409873532745, "name" : "Aif1 (pp) Clec4n", "shared_name" : "Aif1 (pp) Clec4n", "SUID" : 634301, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634371", "source" : "588185", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Ear10", "weight" : 0.42174244809, "name" : "Aif1 (pp) Ear10", "shared_name" : "Aif1 (pp) Ear10", "SUID" : 634371, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634324", "source" : "588185", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) 5033414D02Rik", "weight" : 0.508113812501, "name" : "Aif1 (pp) 5033414D02Rik", "shared_name" : "Aif1 (pp) 5033414D02Rik", "SUID" : 634324, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634333", "source" : "588185", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Vsig4", "weight" : 0.456484151283, "name" : "Aif1 (pp) Vsig4", "shared_name" : "Aif1 (pp) Vsig4", "SUID" : 634333, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634336", "source" : "588185", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Slc15a3", "weight" : 0.480421737331, "name" : "Aif1 (pp) Slc15a3", "shared_name" : "Aif1 (pp) Slc15a3", "SUID" : 634336, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634383", "source" : "588185", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) C1qb", "weight" : 0.567094234886, "name" : "Aif1 (pp) C1qb", "shared_name" : "Aif1 (pp) C1qb", "SUID" : 634383, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634369", "source" : "588185", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Serpinb6a", "weight" : 0.4088852473, "name" : "Aif1 (pp) Serpinb6a", "shared_name" : "Aif1 (pp) Serpinb6a", "SUID" : 634369, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "634319", "source" : "588185", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Aif1 (pp) Gngt2", "weight" : 0.493340353441, "name" : "Aif1 (pp) Gngt2", "shared_name" : "Aif1 (pp) Gngt2", "SUID" : 634319, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670981", "source" : "588725", "target" : "588782", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.610350769439, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Tlr2 (pp) Slc15a3", "identifier" : "NA", "node2stringid" : "NA", "weight" : 0.610350769439, "fusion" : "NA", "name" : "Tlr2 (pp) Slc15a3", "neighborhood" : "NA", "sourceEdge" : 1215380.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Tlr2 (pp) Slc15a3", "combinedscore" : "NA", "SUID" : 670981, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 4.122E-9, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "671041", "source" : "588725", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Rasgrp1", "weight" : 0.565544303047, "name" : "Tlr2 (pp) Rasgrp1", "shared_name" : "Tlr2 (pp) Rasgrp1", "SUID" : 671041, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671070", "source" : "588725", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Ly86", "weight" : 0.506872138946, "name" : "Tlr2 (pp) Ly86", "shared_name" : "Tlr2 (pp) Ly86", "SUID" : 671070, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671056", "source" : "588725", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Trem2", "weight" : 0.40561076091, "name" : "Tlr2 (pp) Trem2", "shared_name" : "Tlr2 (pp) Trem2", "SUID" : 671056, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671048", "source" : "588725", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Serpinb6a", "weight" : 0.564926541346, "name" : "Tlr2 (pp) Serpinb6a", "shared_name" : "Tlr2 (pp) Serpinb6a", "SUID" : 671048, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670974", "source" : "588725", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Tpm4", "weight" : 0.617498826938, "name" : "Tlr2 (pp) Tpm4", "shared_name" : "Tlr2 (pp) Tpm4", "SUID" : 670974, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670989", "source" : "588725", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Cotl1", "weight" : 0.530230659779, "name" : "Tlr2 (pp) Cotl1", "shared_name" : "Tlr2 (pp) Cotl1", "SUID" : 670989, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671061", "source" : "588725", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Fcgr4", "weight" : 0.594144031049, "name" : "Tlr2 (pp) Fcgr4", "shared_name" : "Tlr2 (pp) Fcgr4", "SUID" : 671061, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670993", "source" : "588725", "target" : "588860", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.572185743323, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Tlr2 (pp) Fcer1g", "identifier" : "NA", "node2stringid" : "NA", "weight" : 0.572185743323, "fusion" : "NA", "name" : "Tlr2 (pp) Fcer1g", "neighborhood" : "NA", "sourceEdge" : 1215458.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Tlr2 (pp) Fcer1g", "combinedscore" : "NA", "SUID" : 670993, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 8.7604E-8, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "671033", "source" : "588725", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Vcam1", "weight" : 0.430800266391, "name" : "Tlr2 (pp) Vcam1", "shared_name" : "Tlr2 (pp) Vcam1", "SUID" : 671033, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671024", "source" : "588725", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Cfp", "weight" : 0.700225260828, "name" : "Tlr2 (pp) Cfp", "shared_name" : "Tlr2 (pp) Cfp", "SUID" : 671024, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671004", "source" : "588725", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Hk3", "weight" : 0.508107582323, "name" : "Tlr2 (pp) Hk3", "shared_name" : "Tlr2 (pp) Hk3", "SUID" : 671004, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671050", "source" : "588725", "target" : "589225", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) St6gal1", "weight" : 0.417696260509, "name" : "Tlr2 (pp) St6gal1", "shared_name" : "Tlr2 (pp) St6gal1", "SUID" : 671050, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671015", "source" : "588725", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Csrp1", "weight" : 0.630335335041, "name" : "Tlr2 (pp) Csrp1", "shared_name" : "Tlr2 (pp) Csrp1", "SUID" : 671015, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670984", "source" : "588725", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Obrgrp", "weight" : 0.609815103033, "name" : "Tlr2 (pp) Obrgrp", "shared_name" : "Tlr2 (pp) Obrgrp", "SUID" : 670984, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670973", "source" : "588725", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Axl", "weight" : 0.55579432402, "name" : "Tlr2 (pp) Axl", "shared_name" : "Tlr2 (pp) Axl", "SUID" : 670973, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671032", "source" : "588725", "target" : "589113", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Ms4a7", "weight" : 0.580398712435, "name" : "Tlr2 (pp) Ms4a7", "shared_name" : "Tlr2 (pp) Ms4a7", "SUID" : 671032, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670983", "source" : "588725", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Tmem86a", "weight" : 0.511236686044, "name" : "Tlr2 (pp) Tmem86a", "shared_name" : "Tlr2 (pp) Tmem86a", "SUID" : 670983, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671060", "source" : "588725", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Ear12", "weight" : 0.559124328535, "name" : "Tlr2 (pp) Ear12", "shared_name" : "Tlr2 (pp) Ear12", "SUID" : 671060, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671005", "source" : "588725", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Cytip", "weight" : 0.546694519199, "name" : "Tlr2 (pp) Cytip", "shared_name" : "Tlr2 (pp) Cytip", "SUID" : 671005, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671066", "source" : "588725", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.581468216721, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Tlr2 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "weight" : 0.581468216721, "fusion" : "NA", "name" : "Tlr2 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 1215902.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Tlr2 (pp) Ear4", "combinedscore" : "NA", "SUID" : 671066, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 1.5903E-8, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "671074", "source" : "588725", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Tspan33", "weight" : 0.404310060325, "name" : "Tlr2 (pp) Tspan33", "shared_name" : "Tlr2 (pp) Tspan33", "SUID" : 671074, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671071", "source" : "588725", "target" : "589344", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.542866358215, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Tlr2 (pp) C1qb", "identifier" : "NA", "node2stringid" : "NA", "weight" : 0.542866358215, "fusion" : "NA", "name" : "Tlr2 (pp) C1qb", "neighborhood" : "NA", "sourceEdge" : 1215942.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Tlr2 (pp) C1qb", "combinedscore" : "NA", "SUID" : 671071, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 2.60505E-7, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "671063", "source" : "588725", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Cd53", "weight" : 0.40707865491, "name" : "Tlr2 (pp) Cd53", "shared_name" : "Tlr2 (pp) Cd53", "SUID" : 671063, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671064", "source" : "588725", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Clec7a", "weight" : 0.487133148857, "name" : "Tlr2 (pp) Clec7a", "shared_name" : "Tlr2 (pp) Clec7a", "SUID" : 671064, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671053", "source" : "588725", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Ear10", "weight" : 0.49289908211, "name" : "Tlr2 (pp) Ear10", "shared_name" : "Tlr2 (pp) Ear10", "SUID" : 671053, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671037", "source" : "588725", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Tmsb4x", "weight" : 0.512064680062, "name" : "Tlr2 (pp) Tmsb4x", "shared_name" : "Tlr2 (pp) Tmsb4x", "SUID" : 671037, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670982", "source" : "588725", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) 5430435G22Rik", "weight" : 0.412888078456, "name" : "Tlr2 (pp) 5430435G22Rik", "shared_name" : "Tlr2 (pp) 5430435G22Rik", "SUID" : 670982, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671073", "source" : "588725", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Fblim1", "weight" : 0.508251793098, "name" : "Tlr2 (pp) Fblim1", "shared_name" : "Tlr2 (pp) Fblim1", "SUID" : 671073, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670998", "source" : "588725", "target" : "588886", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.624367571288, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Tlr2 (pp) Lgals3", "identifier" : "NA", "node2stringid" : "NA", "weight" : 0.624367571288, "fusion" : "NA", "name" : "Tlr2 (pp) Lgals3", "neighborhood" : "NA", "sourceEdge" : 1215484.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Tlr2 (pp) Lgals3", "combinedscore" : "NA", "SUID" : 670998, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 1.106E-9, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "671058", "source" : "588725", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Ppif", "weight" : 0.405796241018, "name" : "Tlr2 (pp) Ppif", "shared_name" : "Tlr2 (pp) Ppif", "SUID" : 671058, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671023", "source" : "588725", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Btk", "weight" : 0.504757001525, "name" : "Tlr2 (pp) Btk", "shared_name" : "Tlr2 (pp) Btk", "SUID" : 671023, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670975", "source" : "588725", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Vsig4", "weight" : 0.550523317899, "name" : "Tlr2 (pp) Vsig4", "shared_name" : "Tlr2 (pp) Vsig4", "SUID" : 670975, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671028", "source" : "588725", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Snx10", "weight" : 0.493530668916, "name" : "Tlr2 (pp) Snx10", "shared_name" : "Tlr2 (pp) Snx10", "SUID" : 671028, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670991", "source" : "588725", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Plac8", "weight" : 0.450651940413, "name" : "Tlr2 (pp) Plac8", "shared_name" : "Tlr2 (pp) Plac8", "SUID" : 670991, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671059", "source" : "588725", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Abi3", "weight" : 0.424897642564, "name" : "Tlr2 (pp) Abi3", "shared_name" : "Tlr2 (pp) Abi3", "SUID" : 671059, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671077", "source" : "588725", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tlr2 (pp) Lmo2", "weight" : 0.42228033047, "name" : "Tlr2 (pp) Lmo2", "shared_name" : "Tlr2 (pp) Lmo2", "SUID" : 671077, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685544", "source" : "589222", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpinb6a (pp) C1qb", "weight" : 0.623261209634, "name" : "Serpinb6a (pp) C1qb", "shared_name" : "Serpinb6a (pp) C1qb", "SUID" : 685544, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685548", "source" : "589222", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpinb6a (pp) Lrrc33", "weight" : 0.601602428557, "name" : "Serpinb6a (pp) Lrrc33", "shared_name" : "Serpinb6a (pp) Lrrc33", "SUID" : 685548, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685516", "source" : "589222", "target" : "589225", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpinb6a (pp) St6gal1", "weight" : 0.426959822779, "name" : "Serpinb6a (pp) St6gal1", "shared_name" : "Serpinb6a (pp) St6gal1", "SUID" : 685516, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685525", "source" : "589222", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpinb6a (pp) Ppif", "weight" : 0.534543208827, "name" : "Serpinb6a (pp) Ppif", "shared_name" : "Serpinb6a (pp) Ppif", "SUID" : 685525, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685538", "source" : "589222", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpinb6a (pp) Ear4", "weight" : 0.776011953527, "name" : "Serpinb6a (pp) Ear4", "shared_name" : "Serpinb6a (pp) Ear4", "SUID" : 685538, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685522", "source" : "589222", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpinb6a (pp) Trem2", "weight" : 0.51109232005, "name" : "Serpinb6a (pp) Trem2", "shared_name" : "Serpinb6a (pp) Trem2", "SUID" : 685522, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685534", "source" : "589222", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpinb6a (pp) Clec7a", "weight" : 0.456231909762, "name" : "Serpinb6a (pp) Clec7a", "shared_name" : "Serpinb6a (pp) Clec7a", "SUID" : 685534, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685519", "source" : "589222", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpinb6a (pp) Ear10", "weight" : 0.541699300588, "name" : "Serpinb6a (pp) Ear10", "shared_name" : "Serpinb6a (pp) Ear10", "SUID" : 685519, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685547", "source" : "589222", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpinb6a (pp) Tspan33", "weight" : 0.441928688304, "name" : "Serpinb6a (pp) Tspan33", "shared_name" : "Serpinb6a (pp) Tspan33", "SUID" : 685547, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685546", "source" : "589222", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpinb6a (pp) Fblim1", "weight" : 0.510943971101, "name" : "Serpinb6a (pp) Fblim1", "shared_name" : "Serpinb6a (pp) Fblim1", "SUID" : 685546, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685529", "source" : "589222", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpinb6a (pp) Ear12", "weight" : 0.559782291611, "name" : "Serpinb6a (pp) Ear12", "shared_name" : "Serpinb6a (pp) Ear12", "SUID" : 685529, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685527", "source" : "589222", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpinb6a (pp) Abi3", "weight" : 0.527377044089, "name" : "Serpinb6a (pp) Abi3", "shared_name" : "Serpinb6a (pp) Abi3", "SUID" : 685527, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685531", "source" : "589222", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpinb6a (pp) Fcgr4", "weight" : 0.619445695066, "name" : "Serpinb6a (pp) Fcgr4", "shared_name" : "Serpinb6a (pp) Fcgr4", "SUID" : 685531, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685543", "source" : "589222", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpinb6a (pp) Ly86", "weight" : 0.636199278993, "name" : "Serpinb6a (pp) Ly86", "shared_name" : "Serpinb6a (pp) Ly86", "SUID" : 685543, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685550", "source" : "589222", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpinb6a (pp) Lmo2", "weight" : 0.429225112604, "name" : "Serpinb6a (pp) Lmo2", "shared_name" : "Serpinb6a (pp) Lmo2", "SUID" : 685550, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685541", "source" : "589222", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpinb6a (pp) Prkcd", "weight" : 0.532685133782, "name" : "Serpinb6a (pp) Prkcd", "shared_name" : "Serpinb6a (pp) Prkcd", "SUID" : 685541, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685533", "source" : "589222", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpinb6a (pp) Cd53", "weight" : 0.443507541343, "name" : "Serpinb6a (pp) Cd53", "shared_name" : "Serpinb6a (pp) Cd53", "SUID" : 685533, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "680842", "source" : "588999", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kctd12 (pp) C1qb", "weight" : 0.422608922195, "name" : "Kctd12 (pp) C1qb", "shared_name" : "Kctd12 (pp) C1qb", "SUID" : 680842, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "680839", "source" : "588999", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kctd12 (pp) Ear4", "weight" : 0.473571185064, "name" : "Kctd12 (pp) Ear4", "shared_name" : "Kctd12 (pp) Ear4", "SUID" : 680839, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "680800", "source" : "588999", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kctd12 (pp) Csrp1", "weight" : 0.41372079761, "name" : "Kctd12 (pp) Csrp1", "shared_name" : "Kctd12 (pp) Csrp1", "SUID" : 680800, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "680828", "source" : "588999", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kctd12 (pp) H2-DMa", "weight" : 0.400271869235, "name" : "Kctd12 (pp) H2-DMa", "shared_name" : "Kctd12 (pp) H2-DMa", "SUID" : 680828, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "680841", "source" : "588999", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kctd12 (pp) Ly86", "weight" : 0.480740695891, "name" : "Kctd12 (pp) Ly86", "shared_name" : "Kctd12 (pp) Ly86", "SUID" : 680841, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "680818", "source" : "588999", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kctd12 (pp) Tmsb4x", "weight" : 0.524883922492, "name" : "Kctd12 (pp) Tmsb4x", "shared_name" : "Kctd12 (pp) Tmsb4x", "SUID" : 680818, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686170", "source" : "589275", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcgr4 (pp) Ear4", "weight" : 0.728508732538, "name" : "Fcgr4 (pp) Ear4", "shared_name" : "Fcgr4 (pp) Ear4", "SUID" : 686170, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686168", "source" : "589275", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcgr4 (pp) Clec7a", "weight" : 0.451358381269, "name" : "Fcgr4 (pp) Clec7a", "shared_name" : "Fcgr4 (pp) Clec7a", "SUID" : 686168, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686174", "source" : "589275", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcgr4 (pp) Ly86", "weight" : 0.69801278544, "name" : "Fcgr4 (pp) Ly86", "shared_name" : "Fcgr4 (pp) Ly86", "SUID" : 686174, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686175", "source" : "589275", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcgr4 (pp) C1qb", "weight" : 0.665775548875, "name" : "Fcgr4 (pp) C1qb", "shared_name" : "Fcgr4 (pp) C1qb", "SUID" : 686175, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686167", "source" : "589275", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcgr4 (pp) Cd53", "weight" : 0.450407475684, "name" : "Fcgr4 (pp) Cd53", "shared_name" : "Fcgr4 (pp) Cd53", "SUID" : 686167, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648149", "source" : "588342", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Fcer1g", "weight" : 0.410624603735, "name" : "Mfge8 (pp) Fcer1g", "shared_name" : "Mfge8 (pp) Fcer1g", "SUID" : 648149, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648182", "source" : "588342", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Csrp1", "weight" : 0.508110093396, "name" : "Mfge8 (pp) Csrp1", "shared_name" : "Mfge8 (pp) Csrp1", "SUID" : 648182, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648050", "source" : "588342", "target" : "588461", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Tbxas1", "weight" : 0.409861372853, "name" : "Mfge8 (pp) Tbxas1", "shared_name" : "Mfge8 (pp) Tbxas1", "SUID" : 648050, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648047", "source" : "588342", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Cd63", "weight" : 0.695298154791, "name" : "Mfge8 (pp) Cd63", "shared_name" : "Mfge8 (pp) Cd63", "SUID" : 648047, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648128", "source" : "588342", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Slc15a3", "weight" : 0.488573411745, "name" : "Mfge8 (pp) Slc15a3", "shared_name" : "Mfge8 (pp) Slc15a3", "SUID" : 648128, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648201", "source" : "588342", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Cfp", "weight" : 0.464210428236, "name" : "Mfge8 (pp) Cfp", "shared_name" : "Mfge8 (pp) Cfp", "SUID" : 648201, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648253", "source" : "588342", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Fcgr4", "weight" : 0.411741309474, "name" : "Mfge8 (pp) Fcgr4", "shared_name" : "Mfge8 (pp) Fcgr4", "SUID" : 648253, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648024", "source" : "588342", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Cyp7b1", "weight" : 0.624889804686, "name" : "Mfge8 (pp) Cyp7b1", "shared_name" : "Mfge8 (pp) Cyp7b1", "SUID" : 648024, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648213", "source" : "588342", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Vcam1", "weight" : 0.509421648264, "name" : "Mfge8 (pp) Vcam1", "shared_name" : "Mfge8 (pp) Vcam1", "SUID" : 648213, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648139", "source" : "588342", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Pla2g15", "weight" : 0.471227878449, "name" : "Mfge8 (pp) Pla2g15", "shared_name" : "Mfge8 (pp) Pla2g15", "SUID" : 648139, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648021", "source" : "588342", "target" : "588351", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Ttc39a", "weight" : 0.52298253048, "name" : "Mfge8 (pp) Ttc39a", "shared_name" : "Mfge8 (pp) Ttc39a", "SUID" : 648021, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648077", "source" : "588342", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Snn", "weight" : 0.618803947853, "name" : "Mfge8 (pp) Snn", "shared_name" : "Mfge8 (pp) Snn", "SUID" : 648077, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648243", "source" : "588342", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Trem2", "weight" : 0.583213657683, "name" : "Mfge8 (pp) Trem2", "shared_name" : "Mfge8 (pp) Trem2", "SUID" : 648243, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648135", "source" : "588342", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Obrgrp", "weight" : 0.577503779949, "name" : "Mfge8 (pp) Obrgrp", "shared_name" : "Mfge8 (pp) Obrgrp", "SUID" : 648135, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648269", "source" : "588342", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Fblim1", "weight" : 0.424800354294, "name" : "Mfge8 (pp) Fblim1", "shared_name" : "Mfge8 (pp) Fblim1", "SUID" : 648269, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648030", "source" : "588342", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Selplg", "weight" : 0.474253000937, "name" : "Mfge8 (pp) Selplg", "shared_name" : "Mfge8 (pp) Selplg", "SUID" : 648030, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648158", "source" : "588342", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Lgals3", "weight" : 0.590497038211, "name" : "Mfge8 (pp) Lgals3", "shared_name" : "Mfge8 (pp) Lgals3", "SUID" : 648158, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648056", "source" : "588342", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Plscr1", "weight" : 0.493319304825, "name" : "Mfge8 (pp) Plscr1", "shared_name" : "Mfge8 (pp) Plscr1", "SUID" : 648056, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648167", "source" : "588342", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Cytip", "weight" : 0.401825154215, "name" : "Mfge8 (pp) Cytip", "shared_name" : "Mfge8 (pp) Cytip", "SUID" : 648167, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648103", "source" : "588342", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) 5033414D02Rik", "weight" : 0.421376948591, "name" : "Mfge8 (pp) 5033414D02Rik", "shared_name" : "Mfge8 (pp) 5033414D02Rik", "SUID" : 648103, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648035", "source" : "588342", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Cd14", "weight" : 0.494759131306, "name" : "Mfge8 (pp) Cd14", "shared_name" : "Mfge8 (pp) Cd14", "SUID" : 648035, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648236", "source" : "588342", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Serpinb6a", "weight" : 0.588284274642, "name" : "Mfge8 (pp) Serpinb6a", "shared_name" : "Mfge8 (pp) Serpinb6a", "SUID" : 648236, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648143", "source" : "588342", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Cotl1", "weight" : 0.62273148066, "name" : "Mfge8 (pp) Cotl1", "shared_name" : "Mfge8 (pp) Cotl1", "SUID" : 648143, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648131", "source" : "588342", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Tmem86a", "weight" : 0.704640748508, "name" : "Mfge8 (pp) Tmem86a", "shared_name" : "Mfge8 (pp) Tmem86a", "SUID" : 648131, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648238", "source" : "588342", "target" : "589225", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) St6gal1", "weight" : 0.469807610717, "name" : "Mfge8 (pp) St6gal1", "shared_name" : "Mfge8 (pp) St6gal1", "SUID" : 648238, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648104", "source" : "588342", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) D12Ertd553e", "weight" : 0.415001780888, "name" : "Mfge8 (pp) D12Ertd553e", "shared_name" : "Mfge8 (pp) D12Ertd553e", "SUID" : 648104, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648055", "source" : "588342", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Renbp", "weight" : 0.614895225679, "name" : "Mfge8 (pp) Renbp", "shared_name" : "Mfge8 (pp) Renbp", "SUID" : 648055, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648090", "source" : "588342", "target" : "588620", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Olfml3", "weight" : 0.529515022218, "name" : "Mfge8 (pp) Olfml3", "shared_name" : "Mfge8 (pp) Olfml3", "SUID" : 648090, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648245", "source" : "588342", "target" : "589256", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Timp1", "weight" : 0.45330313982, "name" : "Mfge8 (pp) Timp1", "shared_name" : "Mfge8 (pp) Timp1", "SUID" : 648245, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648114", "source" : "588342", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Tlr2", "weight" : 0.480696666023, "name" : "Mfge8 (pp) Tlr2", "shared_name" : "Mfge8 (pp) Tlr2", "SUID" : 648114, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648262", "source" : "588342", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Ear4", "weight" : 0.593062144115, "name" : "Mfge8 (pp) Ear4", "shared_name" : "Mfge8 (pp) Ear4", "SUID" : 648262, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648256", "source" : "588342", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Clec7a", "weight" : 0.438402106884, "name" : "Mfge8 (pp) Clec7a", "shared_name" : "Mfge8 (pp) Clec7a", "SUID" : 648256, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648043", "source" : "588342", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Clec4n", "weight" : 0.42696893377, "name" : "Mfge8 (pp) Clec4n", "shared_name" : "Mfge8 (pp) Clec4n", "SUID" : 648043, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648097", "source" : "588342", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Gpnmb", "weight" : 0.586068247568, "name" : "Mfge8 (pp) Gpnmb", "shared_name" : "Mfge8 (pp) Gpnmb", "SUID" : 648097, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648249", "source" : "588342", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Abi3", "weight" : 0.415683717939, "name" : "Mfge8 (pp) Abi3", "shared_name" : "Mfge8 (pp) Abi3", "SUID" : 648249, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648046", "source" : "588342", "target" : "588439", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Vim", "weight" : 0.409995490107, "name" : "Mfge8 (pp) Vim", "shared_name" : "Mfge8 (pp) Vim", "SUID" : 648046, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648251", "source" : "588342", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Ear12", "weight" : 0.4087294216, "name" : "Mfge8 (pp) Ear12", "shared_name" : "Mfge8 (pp) Ear12", "SUID" : 648251, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648073", "source" : "588342", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Cd86", "weight" : 0.474025636163, "name" : "Mfge8 (pp) Cd86", "shared_name" : "Mfge8 (pp) Cd86", "SUID" : 648073, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648247", "source" : "588342", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Ppif", "weight" : 0.638242322767, "name" : "Mfge8 (pp) Ppif", "shared_name" : "Mfge8 (pp) Ppif", "SUID" : 648247, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648115", "source" : "588342", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mfge8 (pp) Axl", "weight" : 0.549649656209, "name" : "Mfge8 (pp) Axl", "shared_name" : "Mfge8 (pp) Axl", "SUID" : 648115, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "682809", "source" : "589081", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Btk (pp) Snx10", "weight" : 0.401653591683, "name" : "Btk (pp) Snx10", "shared_name" : "Btk (pp) Snx10", "SUID" : 682809, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "682826", "source" : "589081", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Btk (pp) Rasgrp1", "weight" : 0.435517195056, "name" : "Btk (pp) Rasgrp1", "shared_name" : "Btk (pp) Rasgrp1", "SUID" : 682826, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "682864", "source" : "589081", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Btk (pp) Lrrc33", "weight" : 0.407623884961, "name" : "Btk (pp) Lrrc33", "shared_name" : "Btk (pp) Lrrc33", "SUID" : 682864, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "682844", "source" : "589081", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Btk (pp) Ppif", "weight" : 0.40684058855, "name" : "Btk (pp) Ppif", "shared_name" : "Btk (pp) Ppif", "SUID" : 682844, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "682805", "source" : "589081", "target" : "589086", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.587413117167, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Btk (pp) Cfp", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.587413117167, "fusion" : "NA", "name" : "Btk (pp) Cfp", "neighborhood" : "NA", "sourceEdge" : 150533.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Btk (pp) Cfp", "combinedscore" : "NA", "SUID" : 682805, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 3.400804E-4, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "682860", "source" : "589081", "target" : "589335", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.487857293504, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Btk (pp) Ly86", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.487857293504, "fusion" : "NA", "name" : "Btk (pp) Ly86", "neighborhood" : "NA", "sourceEdge" : 150555.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Btk (pp) Ly86", "combinedscore" : "NA", "SUID" : 682860, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 2.770455E-4, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "682837", "source" : "589081", "target" : "589225", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Btk (pp) St6gal1", "weight" : 0.406134831785, "name" : "Btk (pp) St6gal1", "shared_name" : "Btk (pp) St6gal1", "SUID" : 682837, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "682862", "source" : "589081", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Btk (pp) C1qb", "weight" : 0.443909779175, "name" : "Btk (pp) C1qb", "shared_name" : "Btk (pp) C1qb", "SUID" : 682862, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "682835", "source" : "589081", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Btk (pp) Serpinb6a", "weight" : 0.489669993697, "name" : "Btk (pp) Serpinb6a", "shared_name" : "Btk (pp) Serpinb6a", "SUID" : 682835, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "682849", "source" : "589081", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Btk (pp) Fcgr4", "weight" : 0.453557892046, "name" : "Btk (pp) Fcgr4", "shared_name" : "Btk (pp) Fcgr4", "SUID" : 682849, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "682855", "source" : "589081", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.481268231885, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Btk (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.481268231885, "fusion" : "NA", "name" : "Btk (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 150553.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Btk (pp) Ear4", "combinedscore" : "NA", "SUID" : 682855, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 2.454485E-4, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "591802", "source" : "587718", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Vsig4", "weight" : 0.47239402936, "name" : "Ifit2 (pp) Vsig4", "shared_name" : "Ifit2 (pp) Vsig4", "SUID" : 591802, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591625", "source" : "587718", "target" : "587857", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Lgmn", "weight" : 0.548526009492, "name" : "Ifit2 (pp) Lgmn", "shared_name" : "Ifit2 (pp) Lgmn", "SUID" : 591625, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591647", "source" : "587718", "target" : "587989", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Tyrobp", "weight" : 0.465688134598, "name" : "Ifit2 (pp) Tyrobp", "shared_name" : "Ifit2 (pp) Tyrobp", "SUID" : 591647, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591753", "source" : "587718", "target" : "588492", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Ncf4", "weight" : 0.496845331388, "name" : "Ifit2 (pp) Ncf4", "shared_name" : "Ifit2 (pp) Ncf4", "SUID" : 591753, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591717", "source" : "587718", "target" : "588322", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Pfkfb4", "weight" : 0.415053417934, "name" : "Ifit2 (pp) Pfkfb4", "shared_name" : "Ifit2 (pp) Pfkfb4", "SUID" : 591717, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591865", "source" : "587718", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Vcam1", "weight" : 0.515470465038, "name" : "Ifit2 (pp) Vcam1", "shared_name" : "Ifit2 (pp) Vcam1", "SUID" : 591865, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591779", "source" : "587718", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Gngt2", "weight" : 0.503215303217, "name" : "Ifit2 (pp) Gngt2", "shared_name" : "Ifit2 (pp) Gngt2", "SUID" : 591779, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591700", "source" : "587718", "target" : "588254", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Irf8", "weight" : 0.530168227807, "name" : "Ifit2 (pp) Irf8", "shared_name" : "Ifit2 (pp) Irf8", "SUID" : 591700, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591662", "source" : "587718", "target" : "588086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Iqgap1", "weight" : 0.471017376091, "name" : "Ifit2 (pp) Iqgap1", "shared_name" : "Ifit2 (pp) Iqgap1", "SUID" : 591662, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591696", "source" : "587718", "target" : "588242", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Cd83", "weight" : 0.468285439402, "name" : "Ifit2 (pp) Cd83", "shared_name" : "Ifit2 (pp) Cd83", "SUID" : 591696, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591610", "source" : "587718", "target" : "587783", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Marcks", "weight" : 0.519266810457, "name" : "Ifit2 (pp) Marcks", "shared_name" : "Ifit2 (pp) Marcks", "SUID" : 591610, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591611", "source" : "587718", "target" : "587788", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Nckap1l", "weight" : 0.517702975664, "name" : "Ifit2 (pp) Nckap1l", "shared_name" : "Ifit2 (pp) Nckap1l", "SUID" : 591611, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591677", "source" : "587718", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Pip4k2a", "weight" : 0.456685811564, "name" : "Ifit2 (pp) Pip4k2a", "shared_name" : "Ifit2 (pp) Pip4k2a", "SUID" : 591677, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591777", "source" : "587718", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Slc11a1", "weight" : 0.528246630734, "name" : "Ifit2 (pp) Slc11a1", "shared_name" : "Ifit2 (pp) Slc11a1", "SUID" : 591777, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591800", "source" : "587718", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Tpm4", "weight" : 0.46355512963, "name" : "Ifit2 (pp) Tpm4", "shared_name" : "Ifit2 (pp) Tpm4", "SUID" : 591800, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591612", "source" : "587718", "target" : "587790", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Sh3bgrl3", "weight" : 0.407125940868, "name" : "Ifit2 (pp) Sh3bgrl3", "shared_name" : "Ifit2 (pp) Sh3bgrl3", "SUID" : 591612, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591909", "source" : "587718", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Ly86", "weight" : 0.649496805865, "name" : "Ifit2 (pp) Ly86", "shared_name" : "Ifit2 (pp) Ly86", "SUID" : 591909, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591659", "source" : "587718", "target" : "588069", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) A430084P05Rik", "weight" : 0.449560194895, "name" : "Ifit2 (pp) A430084P05Rik", "shared_name" : "Ifit2 (pp) A430084P05Rik", "SUID" : 591659, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591827", "source" : "587718", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Lgals3", "weight" : 0.64349224562, "name" : "Ifit2 (pp) Lgals3", "shared_name" : "Ifit2 (pp) Lgals3", "SUID" : 591827, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591714", "source" : "587718", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Cxcl16", "weight" : 0.605878496345, "name" : "Ifit2 (pp) Cxcl16", "shared_name" : "Ifit2 (pp) Cxcl16", "SUID" : 591714, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591741", "source" : "587718", "target" : "588432", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Kcnk6", "weight" : 0.465370505924, "name" : "Ifit2 (pp) Kcnk6", "shared_name" : "Ifit2 (pp) Kcnk6", "SUID" : 591741, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591768", "source" : "587718", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Cd86", "weight" : 0.484586785457, "name" : "Ifit2 (pp) Cd86", "shared_name" : "Ifit2 (pp) Cd86", "SUID" : 591768, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591920", "source" : "587718", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Il10ra", "weight" : 0.432193395356, "name" : "Ifit2 (pp) Il10ra", "shared_name" : "Ifit2 (pp) Il10ra", "SUID" : 591920, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591897", "source" : "587718", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Ear12", "weight" : 0.576597873078, "name" : "Ifit2 (pp) Ear12", "shared_name" : "Ifit2 (pp) Ear12", "SUID" : 591897, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591798", "source" : "587718", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Axl", "weight" : 0.498030931402, "name" : "Ifit2 (pp) Axl", "shared_name" : "Ifit2 (pp) Axl", "SUID" : 591798, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591699", "source" : "587718", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Sdc3", "weight" : 0.448861101317, "name" : "Ifit2 (pp) Sdc3", "shared_name" : "Ifit2 (pp) Sdc3", "SUID" : 591699, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591749", "source" : "587718", "target" : "588472", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Ly9", "weight" : 0.416026810884, "name" : "Ifit2 (pp) Ly9", "shared_name" : "Ifit2 (pp) Ly9", "SUID" : 591749, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591811", "source" : "587718", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Tmem86a", "weight" : 0.536386675404, "name" : "Ifit2 (pp) Tmem86a", "shared_name" : "Ifit2 (pp) Tmem86a", "SUID" : 591811, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591787", "source" : "587718", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Gpnmb", "weight" : 0.492414492676, "name" : "Ifit2 (pp) Gpnmb", "shared_name" : "Ifit2 (pp) Gpnmb", "SUID" : 591787, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591894", "source" : "587718", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Ppif", "weight" : 0.425676265641, "name" : "Ifit2 (pp) Ppif", "shared_name" : "Ifit2 (pp) Ppif", "SUID" : 591894, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591772", "source" : "587718", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Snn", "weight" : 0.425581187642, "name" : "Ifit2 (pp) Snn", "shared_name" : "Ifit2 (pp) Snn", "SUID" : 591772, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591785", "source" : "587718", "target" : "588636", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Repin1", "weight" : 0.451840464311, "name" : "Ifit2 (pp) Repin1", "shared_name" : "Ifit2 (pp) Repin1", "SUID" : 591785, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591883", "source" : "587718", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Serpinb6a", "weight" : 0.556022084065, "name" : "Ifit2 (pp) Serpinb6a", "shared_name" : "Ifit2 (pp) Serpinb6a", "SUID" : 591883, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591790", "source" : "587718", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) 5033414D02Rik", "weight" : 0.471041782757, "name" : "Ifit2 (pp) 5033414D02Rik", "shared_name" : "Ifit2 (pp) 5033414D02Rik", "SUID" : 591790, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591645", "source" : "587718", "target" : "587982", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Plekho2", "weight" : 0.483402748528, "name" : "Ifit2 (pp) Plekho2", "shared_name" : "Ifit2 (pp) Plekho2", "SUID" : 591645, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591641", "source" : "587718", "target" : "587966", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Cyba", "weight" : 0.470892425112, "name" : "Ifit2 (pp) Cyba", "shared_name" : "Ifit2 (pp) Cyba", "SUID" : 591641, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591809", "source" : "587718", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) 5430435G22Rik", "weight" : 0.405309990435, "name" : "Ifit2 (pp) 5430435G22Rik", "shared_name" : "Ifit2 (pp) 5430435G22Rik", "SUID" : 591809, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591820", "source" : "587718", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Fcer1g", "weight" : 0.500041649302, "name" : "Ifit2 (pp) Fcer1g", "shared_name" : "Ifit2 (pp) Fcer1g", "SUID" : 591820, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591904", "source" : "587718", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Ear4", "weight" : 0.588234052423, "name" : "Ifit2 (pp) Ear4", "shared_name" : "Ifit2 (pp) Ear4", "SUID" : 591904, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591793", "source" : "587718", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Cd52", "weight" : 0.53517015603, "name" : "Ifit2 (pp) Cd52", "shared_name" : "Ifit2 (pp) Cd52", "SUID" : 591793, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591901", "source" : "587718", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Cd53", "weight" : 0.610444141777, "name" : "Ifit2 (pp) Cd53", "shared_name" : "Ifit2 (pp) Cd53", "SUID" : 591901, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591885", "source" : "587718", "target" : "589225", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) St6gal1", "weight" : 0.43231824321, "name" : "Ifit2 (pp) St6gal1", "shared_name" : "Ifit2 (pp) St6gal1", "SUID" : 591885, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591615", "source" : "587718", "target" : "587807", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Evi2a", "weight" : 0.632032314575, "name" : "Ifit2 (pp) Evi2a", "shared_name" : "Ifit2 (pp) Evi2a", "SUID" : 591615, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591665", "source" : "587718", "target" : "588104", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Bmp1", "weight" : 0.607817945935, "name" : "Ifit2 (pp) Bmp1", "shared_name" : "Ifit2 (pp) Bmp1", "SUID" : 591665, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591715", "source" : "587718", "target" : "588313", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Zfp90", "weight" : 0.502978149229, "name" : "Ifit2 (pp) Zfp90", "shared_name" : "Ifit2 (pp) Zfp90", "SUID" : 591715, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591856", "source" : "587718", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Cfp", "weight" : 0.585436835383, "name" : "Ifit2 (pp) Cfp", "shared_name" : "Ifit2 (pp) Cfp", "SUID" : 591856, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591868", "source" : "587718", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Tmsb4x", "weight" : 0.524609623298, "name" : "Ifit2 (pp) Tmsb4x", "shared_name" : "Ifit2 (pp) Tmsb4x", "SUID" : 591868, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591836", "source" : "587718", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Cytip", "weight" : 0.419538992387, "name" : "Ifit2 (pp) Cytip", "shared_name" : "Ifit2 (pp) Cytip", "SUID" : 591836, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591902", "source" : "587718", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Clec7a", "weight" : 0.516147636779, "name" : "Ifit2 (pp) Clec7a", "shared_name" : "Ifit2 (pp) Clec7a", "SUID" : 591902, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591774", "source" : "587718", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Coro1a", "weight" : 0.457942032084, "name" : "Ifit2 (pp) Coro1a", "shared_name" : "Ifit2 (pp) Coro1a", "SUID" : 591774, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591740", "source" : "587718", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Clec4n", "weight" : 0.51445784921, "name" : "Ifit2 (pp) Clec4n", "shared_name" : "Ifit2 (pp) Clec4n", "SUID" : 591740, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591899", "source" : "587718", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Fcgr4", "weight" : 0.510418845358, "name" : "Ifit2 (pp) Fcgr4", "shared_name" : "Ifit2 (pp) Fcgr4", "SUID" : 591899, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591855", "source" : "587718", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Btk", "weight" : 0.420167073509, "name" : "Ifit2 (pp) Btk", "shared_name" : "Ifit2 (pp) Btk", "SUID" : 591855, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591618", "source" : "587718", "target" : "587818", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Ifi30", "weight" : 0.422759613611, "name" : "Ifit2 (pp) Ifi30", "shared_name" : "Ifit2 (pp) Ifi30", "SUID" : 591618, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591817", "source" : "587718", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Cotl1", "weight" : 0.551070608866, "name" : "Ifit2 (pp) Cotl1", "shared_name" : "Ifit2 (pp) Cotl1", "SUID" : 591817, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591888", "source" : "587718", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Ear10", "weight" : 0.540625757993, "name" : "Ifit2 (pp) Ear10", "shared_name" : "Ifit2 (pp) Ear10", "SUID" : 591888, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591804", "source" : "587718", "target" : "588742", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Ifitm6", "weight" : 0.51693138633, "name" : "Ifit2 (pp) Ifitm6", "shared_name" : "Ifit2 (pp) Ifitm6", "SUID" : 591804, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591808", "source" : "587718", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Slc15a3", "weight" : 0.61189861191, "name" : "Ifit2 (pp) Slc15a3", "shared_name" : "Ifit2 (pp) Slc15a3", "SUID" : 591808, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591621", "source" : "587718", "target" : "587844", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Ear2", "weight" : 0.552189858256, "name" : "Ifit2 (pp) Ear2", "shared_name" : "Ifit2 (pp) Ear2", "SUID" : 591621, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591791", "source" : "587718", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) D12Ertd553e", "weight" : 0.460831709137, "name" : "Ifit2 (pp) D12Ertd553e", "shared_name" : "Ifit2 (pp) D12Ertd553e", "SUID" : 591791, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591792", "source" : "587718", "target" : "588678", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Fxyd5", "weight" : 0.419238146101, "name" : "Ifit2 (pp) Fxyd5", "shared_name" : "Ifit2 (pp) Fxyd5", "SUID" : 591792, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591848", "source" : "587718", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Csrp1", "weight" : 0.656628800699, "name" : "Ifit2 (pp) Csrp1", "shared_name" : "Ifit2 (pp) Csrp1", "SUID" : 591848, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591698", "source" : "587718", "target" : "588244", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Gltp", "weight" : 0.563466906777, "name" : "Ifit2 (pp) Gltp", "shared_name" : "Ifit2 (pp) Gltp", "SUID" : 591698, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591693", "source" : "587718", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Laptm5", "weight" : 0.550549074377, "name" : "Ifit2 (pp) Laptm5", "shared_name" : "Ifit2 (pp) Laptm5", "SUID" : 591693, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591674", "source" : "587718", "target" : "588147", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Ppic", "weight" : 0.448871229314, "name" : "Ifit2 (pp) Ppic", "shared_name" : "Ifit2 (pp) Ppic", "SUID" : 591674, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591729", "source" : "587718", "target" : "588365", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Tnfaip8l2", "weight" : 0.450402628658, "name" : "Ifit2 (pp) Tnfaip8l2", "shared_name" : "Ifit2 (pp) Tnfaip8l2", "SUID" : 591729, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591601", "source" : "587718", "target" : "587746", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Gbp3", "weight" : 0.410741733979, "name" : "Ifit2 (pp) Gbp3", "shared_name" : "Ifit2 (pp) Gbp3", "SUID" : 591601, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591708", "source" : "587718", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Ms4a6d", "weight" : 0.605202474879, "name" : "Ifit2 (pp) Ms4a6d", "shared_name" : "Ifit2 (pp) Ms4a6d", "SUID" : 591708, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591812", "source" : "587718", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Obrgrp", "weight" : 0.472035926457, "name" : "Ifit2 (pp) Obrgrp", "shared_name" : "Ifit2 (pp) Obrgrp", "SUID" : 591812, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591912", "source" : "587718", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Fblim1", "weight" : 0.46589166415, "name" : "Ifit2 (pp) Fblim1", "shared_name" : "Ifit2 (pp) Fblim1", "SUID" : 591912, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591750", "source" : "587718", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Renbp", "weight" : 0.429049610273, "name" : "Ifit2 (pp) Renbp", "shared_name" : "Ifit2 (pp) Renbp", "SUID" : 591750, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591604", "source" : "587718", "target" : "587759", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Rab8b", "weight" : 0.556478707945, "name" : "Ifit2 (pp) Rab8b", "shared_name" : "Ifit2 (pp) Rab8b", "SUID" : 591604, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591910", "source" : "587718", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) C1qb", "weight" : 0.535238765094, "name" : "Ifit2 (pp) C1qb", "shared_name" : "Ifit2 (pp) C1qb", "SUID" : 591910, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591744", "source" : "587718", "target" : "588459", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Pop5", "weight" : 0.678134733748, "name" : "Ifit2 (pp) Pop5", "shared_name" : "Ifit2 (pp) Pop5", "SUID" : 591744, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591742", "source" : "587718", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Cd63", "weight" : 0.543426325475, "name" : "Ifit2 (pp) Cd63", "shared_name" : "Ifit2 (pp) Cd63", "SUID" : 591742, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591733", "source" : "587718", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Selplg", "weight" : 0.534580574763, "name" : "Ifit2 (pp) Selplg", "shared_name" : "Ifit2 (pp) Selplg", "SUID" : 591733, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591845", "source" : "587718", "target" : "588999", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Kctd12", "weight" : 0.450787527417, "name" : "Ifit2 (pp) Kctd12", "shared_name" : "Ifit2 (pp) Kctd12", "SUID" : 591845, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591630", "source" : "587718", "target" : "587881", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Vav1", "weight" : 0.522040884023, "name" : "Ifit2 (pp) Vav1", "shared_name" : "Ifit2 (pp) Vav1", "SUID" : 591630, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591722", "source" : "587718", "target" : "588342", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Mfge8", "weight" : 0.407972604276, "name" : "Ifit2 (pp) Mfge8", "shared_name" : "Ifit2 (pp) Mfge8", "SUID" : 591722, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591721", "source" : "587718", "target" : "588335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Arpc1b", "weight" : 0.418703456117, "name" : "Ifit2 (pp) Arpc1b", "shared_name" : "Ifit2 (pp) Arpc1b", "SUID" : 591721, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591738", "source" : "587718", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Cd14", "weight" : 0.527273764676, "name" : "Ifit2 (pp) Cd14", "shared_name" : "Ifit2 (pp) Cd14", "SUID" : 591738, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591819", "source" : "587718", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Plac8", "weight" : 0.632298787784, "name" : "Ifit2 (pp) Plac8", "shared_name" : "Ifit2 (pp) Plac8", "SUID" : 591819, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591728", "source" : "587718", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Cyp7b1", "weight" : 0.519712574739, "name" : "Ifit2 (pp) Cyp7b1", "shared_name" : "Ifit2 (pp) Cyp7b1", "SUID" : 591728, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591725", "source" : "587718", "target" : "588351", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Ttc39a", "weight" : 0.415321668803, "name" : "Ifit2 (pp) Ttc39a", "shared_name" : "Ifit2 (pp) Ttc39a", "SUID" : 591725, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591702", "source" : "587718", "target" : "588257", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Sdcbp", "weight" : 0.583412151271, "name" : "Ifit2 (pp) Sdcbp", "shared_name" : "Ifit2 (pp) Sdcbp", "SUID" : 591702, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591670", "source" : "587718", "target" : "588134", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Mlkl", "weight" : 0.440215690141, "name" : "Ifit2 (pp) Mlkl", "shared_name" : "Ifit2 (pp) Mlkl", "SUID" : 591670, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591796", "source" : "587718", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Serpina3g", "weight" : 0.418793417793, "name" : "Ifit2 (pp) Serpina3g", "shared_name" : "Ifit2 (pp) Serpina3g", "SUID" : 591796, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591835", "source" : "587718", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Hk3", "weight" : 0.415258333271, "name" : "Ifit2 (pp) Hk3", "shared_name" : "Ifit2 (pp) Hk3", "SUID" : 591835, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591751", "source" : "587718", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Plscr1", "weight" : 0.482402854071, "name" : "Ifit2 (pp) Plscr1", "shared_name" : "Ifit2 (pp) Plscr1", "SUID" : 591751, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591913", "source" : "587718", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Tspan33", "weight" : 0.513748100616, "name" : "Ifit2 (pp) Tspan33", "shared_name" : "Ifit2 (pp) Tspan33", "SUID" : 591913, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591860", "source" : "587718", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Snx10", "weight" : 0.535477684812, "name" : "Ifit2 (pp) Snx10", "shared_name" : "Ifit2 (pp) Snx10", "SUID" : 591860, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591613", "source" : "587718", "target" : "587798", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Ccnd1", "weight" : 0.543381304844, "name" : "Ifit2 (pp) Ccnd1", "shared_name" : "Ifit2 (pp) Ccnd1", "SUID" : 591613, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591736", "source" : "587718", "target" : "588394", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Lyzs", "weight" : 0.518130287216, "name" : "Ifit2 (pp) Lyzs", "shared_name" : "Ifit2 (pp) Lyzs", "SUID" : 591736, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "591797", "source" : "587718", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifit2 (pp) Tlr2", "weight" : 0.469711418433, "name" : "Ifit2 (pp) Tlr2", "shared_name" : "Ifit2 (pp) Tlr2", "SUID" : 591797, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657768", "source" : "588481", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) Fcer1g", "weight" : 0.448700740411, "name" : "Plscr1 (pp) Fcer1g", "shared_name" : "Plscr1 (pp) Fcer1g", "SUID" : 657768, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657860", "source" : "588481", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) Fcgr4", "weight" : 0.47444223009, "name" : "Plscr1 (pp) Fcgr4", "shared_name" : "Plscr1 (pp) Fcgr4", "SUID" : 657860, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657766", "source" : "588481", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) Plac8", "weight" : 0.494458248581, "name" : "Plscr1 (pp) Plac8", "shared_name" : "Plscr1 (pp) Plac8", "SUID" : 657766, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657741", "source" : "588481", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) Tpm4", "weight" : 0.501741847258, "name" : "Plscr1 (pp) Tpm4", "shared_name" : "Plscr1 (pp) Tpm4", "SUID" : 657741, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657852", "source" : "588481", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) Trem2", "weight" : 0.531625104657, "name" : "Plscr1 (pp) Trem2", "shared_name" : "Plscr1 (pp) Trem2", "SUID" : 657852, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657740", "source" : "588481", "target" : "588727", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.615377863887, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Plscr1 (pp) Axl", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 7.510986E-5, "weight" : 0.615377863887, "fusion" : "NA", "name" : "Plscr1 (pp) Axl", "neighborhood" : "NA", "sourceEdge" : 1020735.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Plscr1 (pp) Axl", "combinedscore" : "NA", "SUID" : 657740, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "657863", "source" : "588481", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) Clec7a", "weight" : 0.436521217061, "name" : "Plscr1 (pp) Clec7a", "shared_name" : "Plscr1 (pp) Clec7a", "SUID" : 657863, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657874", "source" : "588481", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) Fblim1", "weight" : 0.448516078083, "name" : "Plscr1 (pp) Fblim1", "shared_name" : "Plscr1 (pp) Fblim1", "SUID" : 657874, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657871", "source" : "588481", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) Ly86", "weight" : 0.444921721635, "name" : "Plscr1 (pp) Ly86", "shared_name" : "Plscr1 (pp) Ly86", "SUID" : 657871, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657865", "source" : "588481", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.620636194825, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Plscr1 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 4.640051E-5, "weight" : 0.620636194825, "fusion" : "NA", "name" : "Plscr1 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 1021312.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Plscr1 (pp) Ear4", "combinedscore" : "NA", "SUID" : 657865, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "657845", "source" : "588481", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) Serpinb6a", "weight" : 0.506091471058, "name" : "Plscr1 (pp) Serpinb6a", "shared_name" : "Plscr1 (pp) Serpinb6a", "SUID" : 657845, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657782", "source" : "588481", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) Cytip", "weight" : 0.421035510662, "name" : "Plscr1 (pp) Cytip", "shared_name" : "Plscr1 (pp) Cytip", "SUID" : 657782, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657819", "source" : "588481", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) Snx10", "weight" : 0.436376435225, "name" : "Plscr1 (pp) Snx10", "shared_name" : "Plscr1 (pp) Snx10", "SUID" : 657819, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657758", "source" : "588481", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) Obrgrp", "weight" : 0.456104541819, "name" : "Plscr1 (pp) Obrgrp", "shared_name" : "Plscr1 (pp) Obrgrp", "SUID" : 657758, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657719", "source" : "588481", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) Gngt2", "weight" : 0.434392377152, "name" : "Plscr1 (pp) Gngt2", "shared_name" : "Plscr1 (pp) Gngt2", "SUID" : 657719, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657847", "source" : "588481", "target" : "589225", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) St6gal1", "weight" : 0.445494833368, "name" : "Plscr1 (pp) St6gal1", "shared_name" : "Plscr1 (pp) St6gal1", "SUID" : 657847, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657858", "source" : "588481", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) Ear12", "weight" : 0.523300002491, "name" : "Plscr1 (pp) Ear12", "shared_name" : "Plscr1 (pp) Ear12", "SUID" : 657858, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657755", "source" : "588481", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) Tmem86a", "weight" : 0.560232819781, "name" : "Plscr1 (pp) Tmem86a", "shared_name" : "Plscr1 (pp) Tmem86a", "SUID" : 657755, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657739", "source" : "588481", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) Tlr2", "weight" : 0.48882715753, "name" : "Plscr1 (pp) Tlr2", "shared_name" : "Plscr1 (pp) Tlr2", "SUID" : 657739, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657708", "source" : "588481", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) Cd86", "weight" : 0.46094994472, "name" : "Plscr1 (pp) Cd86", "shared_name" : "Plscr1 (pp) Cd86", "SUID" : 657708, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657715", "source" : "588481", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) Tmsb10", "weight" : 0.571195053719, "name" : "Plscr1 (pp) Tmsb10", "shared_name" : "Plscr1 (pp) Tmsb10", "SUID" : 657715, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657799", "source" : "588481", "target" : "589005", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.732982737238, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Plscr1 (pp) Csrp1", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 7.694017E-5, "weight" : 0.732982737238, "fusion" : "NA", "name" : "Plscr1 (pp) Csrp1", "neighborhood" : "NA", "sourceEdge" : 1021013.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Plscr1 (pp) Csrp1", "combinedscore" : "NA", "SUID" : 657799, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "657695", "source" : "588481", "target" : "588496", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) Gphn", "weight" : 0.404779211139, "name" : "Plscr1 (pp) Gphn", "shared_name" : "Plscr1 (pp) Gphn", "SUID" : 657695, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657736", "source" : "588481", "target" : "588697", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.479889815213, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Plscr1 (pp) Cd52", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 7.793132E-5, "weight" : 0.479889815213, "fusion" : "NA", "name" : "Plscr1 (pp) Cd52", "neighborhood" : "NA", "sourceEdge" : 1020705.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Plscr1 (pp) Cd52", "combinedscore" : "NA", "SUID" : 657736, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "657722", "source" : "588481", "target" : "588620", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) Olfml3", "weight" : 0.409435587711, "name" : "Plscr1 (pp) Olfml3", "shared_name" : "Plscr1 (pp) Olfml3", "SUID" : 657722, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657775", "source" : "588481", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) Lgals3", "weight" : 0.670601845821, "name" : "Plscr1 (pp) Lgals3", "shared_name" : "Plscr1 (pp) Lgals3", "SUID" : 657775, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657821", "source" : "588481", "target" : "589102", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) Gja1", "weight" : 0.472781278681, "name" : "Plscr1 (pp) Gja1", "shared_name" : "Plscr1 (pp) Gja1", "SUID" : 657821, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657825", "source" : "588481", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) Vcam1", "weight" : 0.635925730897, "name" : "Plscr1 (pp) Vcam1", "shared_name" : "Plscr1 (pp) Vcam1", "SUID" : 657825, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657752", "source" : "588481", "target" : "588782", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.599666244871, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Plscr1 (pp) Slc15a3", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 6.294025E-5, "weight" : 0.599666244871, "fusion" : "NA", "name" : "Plscr1 (pp) Slc15a3", "neighborhood" : "NA", "sourceEdge" : 1020790.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Plscr1 (pp) Slc15a3", "combinedscore" : "NA", "SUID" : 657752, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "657738", "source" : "588481", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) Serpina3g", "weight" : 0.4687932948, "name" : "Plscr1 (pp) Serpina3g", "shared_name" : "Plscr1 (pp) Serpina3g", "SUID" : 657738, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657726", "source" : "588481", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) Gpnmb", "weight" : 0.423702481757, "name" : "Plscr1 (pp) Gpnmb", "shared_name" : "Plscr1 (pp) Gpnmb", "SUID" : 657726, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657731", "source" : "588481", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) 5033414D02Rik", "weight" : 0.467924530497, "name" : "Plscr1 (pp) 5033414D02Rik", "shared_name" : "Plscr1 (pp) 5033414D02Rik", "SUID" : 657731, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657814", "source" : "588481", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) Cfp", "weight" : 0.408469412946, "name" : "Plscr1 (pp) Cfp", "shared_name" : "Plscr1 (pp) Cfp", "SUID" : 657814, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657829", "source" : "588481", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) Tmsb4x", "weight" : 0.47877299519, "name" : "Plscr1 (pp) Tmsb4x", "shared_name" : "Plscr1 (pp) Tmsb4x", "SUID" : 657829, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657763", "source" : "588481", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plscr1 (pp) Cotl1", "weight" : 0.643895008057, "name" : "Plscr1 (pp) Cotl1", "shared_name" : "Plscr1 (pp) Cotl1", "SUID" : 657763, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "607448", "source" : "587864", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Spic (pp) Serpinb6a", "weight" : 0.414382784061, "name" : "Spic (pp) Serpinb6a", "shared_name" : "Spic (pp) Serpinb6a", "SUID" : 607448, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "607327", "source" : "587864", "target" : "587966", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Spic (pp) Cyba", "weight" : 0.430336399057, "name" : "Spic (pp) Cyba", "shared_name" : "Spic (pp) Cyba", "SUID" : 607327, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "607423", "source" : "587864", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Spic (pp) Lgals3", "weight" : 0.41760588484, "name" : "Spic (pp) Lgals3", "shared_name" : "Spic (pp) Lgals3", "SUID" : 607423, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "607403", "source" : "587864", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Spic (pp) 5033414D02Rik", "weight" : 0.438146492654, "name" : "Spic (pp) 5033414D02Rik", "shared_name" : "Spic (pp) 5033414D02Rik", "SUID" : 607403, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "607408", "source" : "587864", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Spic (pp) Tlr2", "weight" : 0.489590520392, "name" : "Spic (pp) Tlr2", "shared_name" : "Spic (pp) Tlr2", "SUID" : 607408, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "607414", "source" : "587864", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Spic (pp) Slc15a3", "weight" : 0.429468687533, "name" : "Spic (pp) Slc15a3", "shared_name" : "Spic (pp) Slc15a3", "SUID" : 607414, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "607394", "source" : "587864", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Spic (pp) Slc11a1", "weight" : 0.42875932226, "name" : "Spic (pp) Slc11a1", "shared_name" : "Spic (pp) Slc11a1", "SUID" : 607394, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "607462", "source" : "587864", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Spic (pp) Ly86", "weight" : 0.440058937837, "name" : "Spic (pp) Ly86", "shared_name" : "Spic (pp) Ly86", "SUID" : 607462, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "607389", "source" : "587864", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Spic (pp) Cd86", "weight" : 0.572759340429, "name" : "Spic (pp) Cd86", "shared_name" : "Spic (pp) Cd86", "SUID" : 607389, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "607422", "source" : "587864", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Spic (pp) Fcer1g", "weight" : 0.414842214418, "name" : "Spic (pp) Fcer1g", "shared_name" : "Spic (pp) Fcer1g", "SUID" : 607422, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "607345", "source" : "587864", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Spic (pp) Pip4k2a", "weight" : 0.416187423154, "name" : "Spic (pp) Pip4k2a", "shared_name" : "Spic (pp) Pip4k2a", "SUID" : 607345, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "607411", "source" : "587864", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Spic (pp) Vsig4", "weight" : 0.438394919655, "name" : "Spic (pp) Vsig4", "shared_name" : "Spic (pp) Vsig4", "SUID" : 607411, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "607347", "source" : "587864", "target" : "588185", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Spic (pp) Aif1", "weight" : 0.498140751236, "name" : "Spic (pp) Aif1", "shared_name" : "Spic (pp) Aif1", "SUID" : 607347, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "607351", "source" : "587864", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Spic (pp) Laptm5", "weight" : 0.447117995306, "name" : "Spic (pp) Laptm5", "shared_name" : "Spic (pp) Laptm5", "SUID" : 607351, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "607443", "source" : "587864", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Spic (pp) Rasgrp1", "weight" : 0.499165434164, "name" : "Spic (pp) Rasgrp1", "shared_name" : "Spic (pp) Rasgrp1", "SUID" : 607443, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "607436", "source" : "587864", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Spic (pp) Cfp", "weight" : 0.556090095831, "name" : "Spic (pp) Cfp", "shared_name" : "Spic (pp) Cfp", "SUID" : 607436, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "607364", "source" : "587864", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Spic (pp) Cxcl16", "weight" : 0.430384700908, "name" : "Spic (pp) Cxcl16", "shared_name" : "Spic (pp) Cxcl16", "SUID" : 607364, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "607427", "source" : "587864", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Spic (pp) Hk3", "weight" : 0.406203630984, "name" : "Spic (pp) Hk3", "shared_name" : "Spic (pp) Hk3", "SUID" : 607427, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "607463", "source" : "587864", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Spic (pp) C1qb", "weight" : 0.418144072503, "name" : "Spic (pp) C1qb", "shared_name" : "Spic (pp) C1qb", "SUID" : 607463, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "607435", "source" : "587864", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Spic (pp) Btk", "weight" : 0.419714901163, "name" : "Spic (pp) Btk", "shared_name" : "Spic (pp) Btk", "SUID" : 607435, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "607459", "source" : "587864", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Spic (pp) Ear4", "weight" : 0.412462653794, "name" : "Spic (pp) Ear4", "shared_name" : "Spic (pp) Ear4", "SUID" : 607459, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "650316", "source" : "588365", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tnfaip8l2 (pp) Cd86", "weight" : 0.440905734849, "name" : "Tnfaip8l2 (pp) Cd86", "shared_name" : "Tnfaip8l2 (pp) Cd86", "SUID" : 650316, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "650357", "source" : "588365", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tnfaip8l2 (pp) Fcgr3", "weight" : 0.409511470447, "name" : "Tnfaip8l2 (pp) Fcgr3", "shared_name" : "Tnfaip8l2 (pp) Fcgr3", "SUID" : 650357, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "650349", "source" : "588365", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tnfaip8l2 (pp) Ccl6", "weight" : 0.512535554822, "name" : "Tnfaip8l2 (pp) Ccl6", "shared_name" : "Tnfaip8l2 (pp) Ccl6", "SUID" : 650349, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "650403", "source" : "588365", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tnfaip8l2 (pp) Ly86", "weight" : 0.529276746195, "name" : "Tnfaip8l2 (pp) Ly86", "shared_name" : "Tnfaip8l2 (pp) Ly86", "SUID" : 650403, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "650347", "source" : "588365", "target" : "588782", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.558219524356, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Tnfaip8l2 (pp) Slc15a3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.558219524356, "fusion" : "NA", "name" : "Tnfaip8l2 (pp) Slc15a3", "neighborhood" : "NA", "sourceEdge" : 98720.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Tnfaip8l2 (pp) Slc15a3", "combinedscore" : "NA", "SUID" : 650347, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 2.120079E-4, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "650325", "source" : "588365", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tnfaip8l2 (pp) Gngt2", "weight" : 0.428777540812, "name" : "Tnfaip8l2 (pp) Gngt2", "shared_name" : "Tnfaip8l2 (pp) Gngt2", "SUID" : 650325, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "650328", "source" : "588365", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tnfaip8l2 (pp) Casp1", "weight" : 0.403518434321, "name" : "Tnfaip8l2 (pp) Casp1", "shared_name" : "Tnfaip8l2 (pp) Casp1", "SUID" : 650328, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "650373", "source" : "588365", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tnfaip8l2 (pp) Csrp1", "weight" : 0.414225173472, "name" : "Tnfaip8l2 (pp) Csrp1", "shared_name" : "Tnfaip8l2 (pp) Csrp1", "SUID" : 650373, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "650358", "source" : "588365", "target" : "588886", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.505635200699, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Tnfaip8l2 (pp) Lgals3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.505635200699, "fusion" : "NA", "name" : "Tnfaip8l2 (pp) Lgals3", "neighborhood" : "NA", "sourceEdge" : 98730.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Tnfaip8l2 (pp) Lgals3", "combinedscore" : "NA", "SUID" : 650358, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 2.065855E-6, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "650356", "source" : "588365", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tnfaip8l2 (pp) Fcer1g", "weight" : 0.52110543951, "name" : "Tnfaip8l2 (pp) Fcer1g", "shared_name" : "Tnfaip8l2 (pp) Fcer1g", "SUID" : 650356, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "650323", "source" : "588365", "target" : "588601", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.563811173346, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Tnfaip8l2 (pp) Slc11a1", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.563811173346, "fusion" : "NA", "name" : "Tnfaip8l2 (pp) Slc11a1", "neighborhood" : "NA", "sourceEdge" : 98699.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Tnfaip8l2 (pp) Slc11a1", "combinedscore" : "NA", "SUID" : 650323, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 1.993963E-4, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "650398", "source" : "588365", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tnfaip8l2 (pp) Cd53", "weight" : 0.433070875284, "name" : "Tnfaip8l2 (pp) Cd53", "shared_name" : "Tnfaip8l2 (pp) Cd53", "SUID" : 650398, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "650335", "source" : "588365", "target" : "588697", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.491506237435, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Tnfaip8l2 (pp) Cd52", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.491506237435, "fusion" : "NA", "name" : "Tnfaip8l2 (pp) Cd52", "neighborhood" : "NA", "sourceEdge" : 98709.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Tnfaip8l2 (pp) Cd52", "combinedscore" : "NA", "SUID" : 650335, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 1.708775E-4, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "650354", "source" : "588365", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tnfaip8l2 (pp) Cotl1", "weight" : 0.491203228806, "name" : "Tnfaip8l2 (pp) Cotl1", "shared_name" : "Tnfaip8l2 (pp) Cotl1", "SUID" : 650354, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "650344", "source" : "588365", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tnfaip8l2 (pp) Vsig4", "weight" : 0.509212691992, "name" : "Tnfaip8l2 (pp) Vsig4", "shared_name" : "Tnfaip8l2 (pp) Vsig4", "SUID" : 650344, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "650355", "source" : "588365", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tnfaip8l2 (pp) Plac8", "weight" : 0.506065344172, "name" : "Tnfaip8l2 (pp) Plac8", "shared_name" : "Tnfaip8l2 (pp) Plac8", "SUID" : 650355, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "650301", "source" : "588365", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tnfaip8l2 (pp) Clec4n", "weight" : 0.522552202599, "name" : "Tnfaip8l2 (pp) Clec4n", "shared_name" : "Tnfaip8l2 (pp) Clec4n", "SUID" : 650301, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "650397", "source" : "588365", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tnfaip8l2 (pp) Fcgr4", "weight" : 0.445447223379, "name" : "Tnfaip8l2 (pp) Fcgr4", "shared_name" : "Tnfaip8l2 (pp) Fcgr4", "SUID" : 650397, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "650381", "source" : "588365", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tnfaip8l2 (pp) Vcam1", "weight" : 0.473745828695, "name" : "Tnfaip8l2 (pp) Vcam1", "shared_name" : "Tnfaip8l2 (pp) Vcam1", "SUID" : 650381, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "650350", "source" : "588365", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tnfaip8l2 (pp) Tmem86a", "weight" : 0.402664568705, "name" : "Tnfaip8l2 (pp) Tmem86a", "shared_name" : "Tnfaip8l2 (pp) Tmem86a", "SUID" : 650350, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "650407", "source" : "588365", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tnfaip8l2 (pp) Lrrc33", "weight" : 0.410110698205, "name" : "Tnfaip8l2 (pp) Lrrc33", "shared_name" : "Tnfaip8l2 (pp) Lrrc33", "SUID" : 650407, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "650361", "source" : "588365", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tnfaip8l2 (pp) C1qc", "weight" : 0.465008263903, "name" : "Tnfaip8l2 (pp) C1qc", "shared_name" : "Tnfaip8l2 (pp) C1qc", "SUID" : 650361, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "650387", "source" : "588365", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tnfaip8l2 (pp) Serpinb6a", "weight" : 0.478791421754, "name" : "Tnfaip8l2 (pp) Serpinb6a", "shared_name" : "Tnfaip8l2 (pp) Serpinb6a", "SUID" : 650387, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "650400", "source" : "588365", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.493260272005, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Tnfaip8l2 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.493260272005, "fusion" : "NA", "name" : "Tnfaip8l2 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 98761.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Tnfaip8l2 (pp) Ear4", "combinedscore" : "NA", "SUID" : 650400, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 1.835122E-4, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "650334", "source" : "588365", "target" : "588678", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tnfaip8l2 (pp) Fxyd5", "weight" : 0.400060131068, "name" : "Tnfaip8l2 (pp) Fxyd5", "shared_name" : "Tnfaip8l2 (pp) Fxyd5", "SUID" : 650334, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "650404", "source" : "588365", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tnfaip8l2 (pp) C1qb", "weight" : 0.550211864881, "name" : "Tnfaip8l2 (pp) C1qb", "shared_name" : "Tnfaip8l2 (pp) C1qb", "SUID" : 650404, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "650321", "source" : "588365", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tnfaip8l2 (pp) Coro1a", "weight" : 0.425572902224, "name" : "Tnfaip8l2 (pp) Coro1a", "shared_name" : "Tnfaip8l2 (pp) Coro1a", "SUID" : 650321, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "650382", "source" : "588365", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tnfaip8l2 (pp) Tmsb4x", "weight" : 0.418634290483, "name" : "Tnfaip8l2 (pp) Tmsb4x", "shared_name" : "Tnfaip8l2 (pp) Tmsb4x", "SUID" : 650382, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "650370", "source" : "588365", "target" : "588999", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tnfaip8l2 (pp) Kctd12", "weight" : 0.402780147869, "name" : "Tnfaip8l2 (pp) Kctd12", "shared_name" : "Tnfaip8l2 (pp) Kctd12", "SUID" : 650370, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "650399", "source" : "588365", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tnfaip8l2 (pp) Clec7a", "weight" : 0.419320911541, "name" : "Tnfaip8l2 (pp) Clec7a", "shared_name" : "Tnfaip8l2 (pp) Clec7a", "SUID" : 650399, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "650297", "source" : "588365", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tnfaip8l2 (pp) Selplg", "weight" : 0.426465395454, "name" : "Tnfaip8l2 (pp) Selplg", "shared_name" : "Tnfaip8l2 (pp) Selplg", "SUID" : 650297, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "650341", "source" : "588365", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tnfaip8l2 (pp) Axl", "weight" : 0.440784037921, "name" : "Tnfaip8l2 (pp) Axl", "shared_name" : "Tnfaip8l2 (pp) Axl", "SUID" : 650341, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "650306", "source" : "588365", "target" : "588461", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tnfaip8l2 (pp) Tbxas1", "weight" : 0.441838900682, "name" : "Tnfaip8l2 (pp) Tbxas1", "shared_name" : "Tnfaip8l2 (pp) Tbxas1", "SUID" : 650306, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670907", "source" : "588721", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3g (pp) Ear10", "weight" : 0.476744502703, "name" : "Serpina3g (pp) Ear10", "shared_name" : "Serpina3g (pp) Ear10", "SUID" : 670907, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670882", "source" : "588721", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3g (pp) Csrp1", "weight" : 0.520497352853, "name" : "Serpina3g (pp) Csrp1", "shared_name" : "Serpina3g (pp) Csrp1", "SUID" : 670882, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670920", "source" : "588721", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3g (pp) C1qb", "weight" : 0.527669223551, "name" : "Serpina3g (pp) C1qb", "shared_name" : "Serpina3g (pp) C1qb", "SUID" : 670920, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670917", "source" : "588721", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3g (pp) Ear4", "weight" : 0.525383114798, "name" : "Serpina3g (pp) Ear4", "shared_name" : "Serpina3g (pp) Ear4", "SUID" : 670917, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670889", "source" : "588721", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3g (pp) Snx10", "weight" : 0.43191048999, "name" : "Serpina3g (pp) Snx10", "shared_name" : "Serpina3g (pp) Snx10", "SUID" : 670889, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670862", "source" : "588721", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3g (pp) Obrgrp", "weight" : 0.515297715083, "name" : "Serpina3g (pp) Obrgrp", "shared_name" : "Serpina3g (pp) Obrgrp", "SUID" : 670862, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670853", "source" : "588721", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3g (pp) Tlr2", "weight" : 0.536414214514, "name" : "Serpina3g (pp) Tlr2", "shared_name" : "Serpina3g (pp) Tlr2", "SUID" : 670853, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670867", "source" : "588721", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3g (pp) Fcer1g", "weight" : 0.619020326343, "name" : "Serpina3g (pp) Fcer1g", "shared_name" : "Serpina3g (pp) Fcer1g", "SUID" : 670867, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670859", "source" : "588721", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3g (pp) Slc15a3", "weight" : 0.662928993454, "name" : "Serpina3g (pp) Slc15a3", "shared_name" : "Serpina3g (pp) Slc15a3", "SUID" : 670859, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670874", "source" : "588721", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3g (pp) Cytip", "weight" : 0.514670549518, "name" : "Serpina3g (pp) Cytip", "shared_name" : "Serpina3g (pp) Cytip", "SUID" : 670874, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670866", "source" : "588721", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3g (pp) Plac8", "weight" : 0.582297817717, "name" : "Serpina3g (pp) Plac8", "shared_name" : "Serpina3g (pp) Plac8", "SUID" : 670866, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670911", "source" : "588721", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3g (pp) Ear12", "weight" : 0.41577231987, "name" : "Serpina3g (pp) Ear12", "shared_name" : "Serpina3g (pp) Ear12", "SUID" : 670911, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670912", "source" : "588721", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3g (pp) Fcgr4", "weight" : 0.77548234188, "name" : "Serpina3g (pp) Fcgr4", "shared_name" : "Serpina3g (pp) Fcgr4", "SUID" : 670912, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670865", "source" : "588721", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3g (pp) Cotl1", "weight" : 0.475044536407, "name" : "Serpina3g (pp) Cotl1", "shared_name" : "Serpina3g (pp) Cotl1", "SUID" : 670865, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670894", "source" : "588721", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3g (pp) Vcam1", "weight" : 0.524590351923, "name" : "Serpina3g (pp) Vcam1", "shared_name" : "Serpina3g (pp) Vcam1", "SUID" : 670894, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670897", "source" : "588721", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3g (pp) Tmsb4x", "weight" : 0.516442837125, "name" : "Serpina3g (pp) Tmsb4x", "shared_name" : "Serpina3g (pp) Tmsb4x", "SUID" : 670897, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670873", "source" : "588721", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3g (pp) Hk3", "weight" : 0.681977813003, "name" : "Serpina3g (pp) Hk3", "shared_name" : "Serpina3g (pp) Hk3", "SUID" : 670873, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670876", "source" : "588721", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3g (pp) H2-DMb1", "weight" : 0.558759022761, "name" : "Serpina3g (pp) H2-DMb1", "shared_name" : "Serpina3g (pp) H2-DMb1", "SUID" : 670876, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670857", "source" : "588721", "target" : "588740", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3g (pp) Plekha2", "weight" : 0.54801530792, "name" : "Serpina3g (pp) Plekha2", "shared_name" : "Serpina3g (pp) Plekha2", "SUID" : 670857, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670855", "source" : "588721", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3g (pp) Tpm4", "weight" : 0.483790550025, "name" : "Serpina3g (pp) Tpm4", "shared_name" : "Serpina3g (pp) Tpm4", "SUID" : 670855, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670906", "source" : "588721", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3g (pp) H2-DMa", "weight" : 0.620842138417, "name" : "Serpina3g (pp) H2-DMa", "shared_name" : "Serpina3g (pp) H2-DMa", "SUID" : 670906, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670854", "source" : "588721", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3g (pp) Axl", "weight" : 0.562559745926, "name" : "Serpina3g (pp) Axl", "shared_name" : "Serpina3g (pp) Axl", "SUID" : 670854, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670861", "source" : "588721", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3g (pp) Tmem86a", "weight" : 0.416363729015, "name" : "Serpina3g (pp) Tmem86a", "shared_name" : "Serpina3g (pp) Tmem86a", "SUID" : 670861, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670856", "source" : "588721", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3g (pp) Vsig4", "weight" : 0.44862936738, "name" : "Serpina3g (pp) Vsig4", "shared_name" : "Serpina3g (pp) Vsig4", "SUID" : 670856, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670886", "source" : "588721", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3g (pp) Cfp", "weight" : 0.512338472483, "name" : "Serpina3g (pp) Cfp", "shared_name" : "Serpina3g (pp) Cfp", "SUID" : 670886, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670901", "source" : "588721", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3g (pp) Rasgrp1", "weight" : 0.540529612606, "name" : "Serpina3g (pp) Rasgrp1", "shared_name" : "Serpina3g (pp) Rasgrp1", "SUID" : 670901, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670869", "source" : "588721", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3g (pp) Lgals3", "weight" : 0.524952890328, "name" : "Serpina3g (pp) Lgals3", "shared_name" : "Serpina3g (pp) Lgals3", "SUID" : 670869, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670919", "source" : "588721", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3g (pp) Ly86", "weight" : 0.525841839926, "name" : "Serpina3g (pp) Ly86", "shared_name" : "Serpina3g (pp) Ly86", "SUID" : 670919, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "682719", "source" : "589076", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-M3 (pp) Vcam1", "weight" : 0.446751919609, "name" : "H2-M3 (pp) Vcam1", "shared_name" : "H2-M3 (pp) Vcam1", "SUID" : 682719, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "682725", "source" : "589076", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-M3 (pp) H2-DMa", "weight" : 0.465211826673, "name" : "H2-M3 (pp) H2-DMa", "shared_name" : "H2-M3 (pp) H2-DMa", "SUID" : 682725, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "682731", "source" : "589076", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-M3 (pp) C1qb", "weight" : 0.535833720992, "name" : "H2-M3 (pp) C1qb", "shared_name" : "H2-M3 (pp) C1qb", "SUID" : 682731, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678860", "source" : "588927", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Hk3 (pp) Snx10", "weight" : 0.405771761876, "name" : "Hk3 (pp) Snx10", "shared_name" : "Hk3 (pp) Snx10", "SUID" : 678860, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678891", "source" : "588927", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Hk3 (pp) Fcgr4", "weight" : 0.753005573434, "name" : "Hk3 (pp) Fcgr4", "shared_name" : "Hk3 (pp) Fcgr4", "SUID" : 678891, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678858", "source" : "588927", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Hk3 (pp) Pld4", "weight" : 0.402958734931, "name" : "Hk3 (pp) Pld4", "shared_name" : "Hk3 (pp) Pld4", "SUID" : 678858, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678883", "source" : "588927", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Hk3 (pp) Ear10", "weight" : 0.45530576595, "name" : "Hk3 (pp) Ear10", "shared_name" : "Hk3 (pp) Ear10", "SUID" : 678883, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678845", "source" : "588927", "target" : "589005", "homology" : "NA", "shared_interaction" : "NA", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.469500931319, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Hk3 (pp) Csrp1", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 5.615137E-4, "weight" : 0.469500931319, "fusion" : "NA", "name" : "Hk3 (pp) Csrp1", "neighborhood" : "NA", "sourceEdge" : 143754.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Hk3 (pp) Csrp1", "combinedscore" : "NA", "SUID" : 678845, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "NA", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "678882", "source" : "588927", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Hk3 (pp) H2-DMa", "weight" : 0.546330052233, "name" : "Hk3 (pp) H2-DMa", "shared_name" : "Hk3 (pp) H2-DMa", "SUID" : 678882, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678901", "source" : "588927", "target" : "589335", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "kwalksFenofibratemagenta" : 8.227986E-5, "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.66974830268, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Hk3 (pp) Ly86", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "extraFenofibratemagenta" : "FALSE", "weight" : 0.66974830268, "fusion" : "NA", "name" : "Hk3 (pp) Ly86", "neighborhood" : "NA", "sourceEdge" : 143780.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Hk3 (pp) Ly86", "combinedscore" : "NA", "SUID" : 678901, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "FALSE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.007675187, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "678904", "source" : "588927", "target" : "589353", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.406733093733, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Hk3 (pp) Fblim1", "identifier" : "NA", "node2stringid" : "NA", "weight" : 0.406733093733, "fusion" : "NA", "name" : "Hk3 (pp) Fblim1", "neighborhood" : "NA", "sourceEdge" : 143782.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Hk3 (pp) Fblim1", "combinedscore" : "NA", "SUID" : 678904, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "FALSE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.006455424, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "678872", "source" : "588927", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Hk3 (pp) Rasgrp1", "weight" : 0.534651266337, "name" : "Hk3 (pp) Rasgrp1", "shared_name" : "Hk3 (pp) Rasgrp1", "SUID" : 678872, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678834", "source" : "588927", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Hk3 (pp) Cytip", "weight" : 0.552093437417, "name" : "Hk3 (pp) Cytip", "shared_name" : "Hk3 (pp) Cytip", "SUID" : 678834, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678880", "source" : "588927", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Hk3 (pp) Serpinb6a", "weight" : 0.492946027561, "name" : "Hk3 (pp) Serpinb6a", "shared_name" : "Hk3 (pp) Serpinb6a", "SUID" : 678880, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678905", "source" : "588927", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Hk3 (pp) Lrrc33", "weight" : 0.441311642932, "name" : "Hk3 (pp) Lrrc33", "shared_name" : "Hk3 (pp) Lrrc33", "SUID" : 678905, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678855", "source" : "588927", "target" : "589086", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "kwalksFenofibratemagenta" : 7.512789E-5, "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.640028275491, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Hk3 (pp) Cfp", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "extraFenofibratemagenta" : "FALSE", "weight" : 0.640028275491, "fusion" : "NA", "name" : "Hk3 (pp) Cfp", "neighborhood" : "NA", "sourceEdge" : 143758.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Hk3 (pp) Cfp", "combinedscore" : "NA", "SUID" : 678855, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "FALSE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.007365237, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "678865", "source" : "588927", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Hk3 (pp) Vcam1", "weight" : 0.508086413505, "name" : "Hk3 (pp) Vcam1", "shared_name" : "Hk3 (pp) Vcam1", "SUID" : 678865, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678903", "source" : "588927", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Hk3 (pp) C1qb", "weight" : 0.656528477185, "name" : "Hk3 (pp) C1qb", "shared_name" : "Hk3 (pp) C1qb", "SUID" : 678903, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678838", "source" : "588927", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Hk3 (pp) H2-DMb1", "weight" : 0.419236571778, "name" : "Hk3 (pp) H2-DMb1", "shared_name" : "Hk3 (pp) H2-DMb1", "SUID" : 678838, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678897", "source" : "588927", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.568255632566, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Hk3 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 6.401387E-4, "weight" : 0.568255632566, "fusion" : "NA", "name" : "Hk3 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 143778.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Hk3 (pp) Ear4", "combinedscore" : "NA", "SUID" : 678897, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "kwalksFenofibratered" : 0.006186943, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "678868", "source" : "588927", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Hk3 (pp) Tmsb4x", "weight" : 0.563394227828, "name" : "Hk3 (pp) Tmsb4x", "shared_name" : "Hk3 (pp) Tmsb4x", "SUID" : 678868, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657210", "source" : "588472", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ly9 (pp) Gngt2", "weight" : 0.417978073951, "name" : "Ly9 (pp) Gngt2", "shared_name" : "Ly9 (pp) Gngt2", "SUID" : 657210, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657207", "source" : "588472", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ly9 (pp) Coro1a", "weight" : 0.469541938679, "name" : "Ly9 (pp) Coro1a", "shared_name" : "Ly9 (pp) Coro1a", "SUID" : 657207, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657259", "source" : "588472", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ly9 (pp) Serpinb6a", "weight" : 0.423570237953, "name" : "Ly9 (pp) Serpinb6a", "shared_name" : "Ly9 (pp) Serpinb6a", "SUID" : 657259, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657220", "source" : "588472", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ly9 (pp) Tlr2", "weight" : 0.42554221901, "name" : "Ly9 (pp) Tlr2", "shared_name" : "Ly9 (pp) Tlr2", "SUID" : 657220, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657265", "source" : "588472", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ly9 (pp) Fcgr4", "weight" : 0.41012252859, "name" : "Ly9 (pp) Fcgr4", "shared_name" : "Ly9 (pp) Fcgr4", "SUID" : 657265, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657213", "source" : "588472", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ly9 (pp) Gpnmb", "weight" : 0.412926987982, "name" : "Ly9 (pp) Gpnmb", "shared_name" : "Ly9 (pp) Gpnmb", "SUID" : 657213, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657221", "source" : "588472", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ly9 (pp) Axl", "weight" : 0.537362842131, "name" : "Ly9 (pp) Axl", "shared_name" : "Ly9 (pp) Axl", "SUID" : 657221, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657228", "source" : "588472", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ly9 (pp) Ccl6", "weight" : 0.401838583093, "name" : "Ly9 (pp) Ccl6", "shared_name" : "Ly9 (pp) Ccl6", "SUID" : 657228, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657212", "source" : "588472", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ly9 (pp) Casp1", "weight" : 0.405134666156, "name" : "Ly9 (pp) Casp1", "shared_name" : "Ly9 (pp) Casp1", "SUID" : 657212, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657270", "source" : "588472", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ly9 (pp) Ly86", "weight" : 0.482899884549, "name" : "Ly9 (pp) Ly86", "shared_name" : "Ly9 (pp) Ly86", "SUID" : 657270, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657209", "source" : "588472", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ly9 (pp) Slc11a1", "weight" : 0.475689951205, "name" : "Ly9 (pp) Slc11a1", "shared_name" : "Ly9 (pp) Slc11a1", "SUID" : 657209, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657217", "source" : "588472", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ly9 (pp) Cd52", "weight" : 0.472589049205, "name" : "Ly9 (pp) Cd52", "shared_name" : "Ly9 (pp) Cd52", "SUID" : 657217, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657231", "source" : "588472", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ly9 (pp) Cotl1", "weight" : 0.43785105321, "name" : "Ly9 (pp) Cotl1", "shared_name" : "Ly9 (pp) Cotl1", "SUID" : 657231, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657233", "source" : "588472", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ly9 (pp) Fcer1g", "weight" : 0.425787867587, "name" : "Ly9 (pp) Fcer1g", "shared_name" : "Ly9 (pp) Fcer1g", "SUID" : 657233, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657229", "source" : "588472", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ly9 (pp) Tmem86a", "weight" : 0.400839873083, "name" : "Ly9 (pp) Tmem86a", "shared_name" : "Ly9 (pp) Tmem86a", "SUID" : 657229, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657222", "source" : "588472", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ly9 (pp) Tpm4", "weight" : 0.422842768217, "name" : "Ly9 (pp) Tpm4", "shared_name" : "Ly9 (pp) Tpm4", "SUID" : 657222, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657245", "source" : "588472", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ly9 (pp) Csrp1", "weight" : 0.4597893549, "name" : "Ly9 (pp) Csrp1", "shared_name" : "Ly9 (pp) Csrp1", "SUID" : 657245, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657237", "source" : "588472", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ly9 (pp) C1qc", "weight" : 0.408554748475, "name" : "Ly9 (pp) C1qc", "shared_name" : "Ly9 (pp) C1qc", "SUID" : 657237, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657203", "source" : "588472", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ly9 (pp) Cd86", "weight" : 0.477259612849, "name" : "Ly9 (pp) Cd86", "shared_name" : "Ly9 (pp) Cd86", "SUID" : 657203, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657271", "source" : "588472", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ly9 (pp) C1qb", "weight" : 0.589081940922, "name" : "Ly9 (pp) C1qb", "shared_name" : "Ly9 (pp) C1qb", "SUID" : 657271, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657268", "source" : "588472", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ly9 (pp) Ear4", "weight" : 0.524678365943, "name" : "Ly9 (pp) Ear4", "shared_name" : "Ly9 (pp) Ear4", "SUID" : 657268, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657223", "source" : "588472", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ly9 (pp) Vsig4", "weight" : 0.484962089834, "name" : "Ly9 (pp) Vsig4", "shared_name" : "Ly9 (pp) Vsig4", "SUID" : 657223, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657235", "source" : "588472", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ly9 (pp) Lgals3", "weight" : 0.511033346083, "name" : "Ly9 (pp) Lgals3", "shared_name" : "Ly9 (pp) Lgals3", "SUID" : 657235, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657267", "source" : "588472", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ly9 (pp) Clec7a", "weight" : 0.403290436217, "name" : "Ly9 (pp) Clec7a", "shared_name" : "Ly9 (pp) Clec7a", "SUID" : 657267, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657248", "source" : "588472", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ly9 (pp) Cfp", "weight" : 0.43250219533, "name" : "Ly9 (pp) Cfp", "shared_name" : "Ly9 (pp) Cfp", "SUID" : 657248, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670074", "source" : "588697", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) C1qb", "weight" : 0.760262507403, "name" : "Cd52 (pp) C1qb", "shared_name" : "Cd52 (pp) C1qb", "SUID" : 670074, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670021", "source" : "588697", "target" : "589030", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Soat1", "weight" : 0.444829370204, "name" : "Cd52 (pp) Soat1", "shared_name" : "Cd52 (pp) Soat1", "SUID" : 670021, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670066", "source" : "588697", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Cd53", "weight" : 0.502824758455, "name" : "Cd52 (pp) Cd53", "shared_name" : "Cd52 (pp) Cd53", "SUID" : 670066, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670025", "source" : "588697", "target" : "589076", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) H2-M3", "weight" : 0.414283188185, "name" : "Cd52 (pp) H2-M3", "shared_name" : "Cd52 (pp) H2-M3", "SUID" : 670025, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669999", "source" : "588697", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Fcgr3", "weight" : 0.480041028868, "name" : "Cd52 (pp) Fcgr3", "shared_name" : "Cd52 (pp) Fcgr3", "SUID" : 669999, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669981", "source" : "588697", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Tpm4", "weight" : 0.52130721862, "name" : "Cd52 (pp) Tpm4", "shared_name" : "Cd52 (pp) Tpm4", "SUID" : 669981, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670061", "source" : "588697", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Abi3", "weight" : 0.456552339274, "name" : "Cd52 (pp) Abi3", "shared_name" : "Cd52 (pp) Abi3", "SUID" : 670061, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670045", "source" : "588697", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Rasgrp1", "weight" : 0.526237397924, "name" : "Cd52 (pp) Rasgrp1", "shared_name" : "Cd52 (pp) Rasgrp1", "SUID" : 670045, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670079", "source" : "588697", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Lmo2", "weight" : 0.4016064218, "name" : "Cd52 (pp) Lmo2", "shared_name" : "Cd52 (pp) Lmo2", "SUID" : 670079, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670010", "source" : "588697", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Cytip", "weight" : 0.669039630626, "name" : "Cd52 (pp) Cytip", "shared_name" : "Cd52 (pp) Cytip", "SUID" : 670010, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669998", "source" : "588697", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Fcer1g", "weight" : 0.834093501044, "name" : "Cd52 (pp) Fcer1g", "shared_name" : "Cd52 (pp) Fcer1g", "SUID" : 669998, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670008", "source" : "588697", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) C1qc", "weight" : 0.706660509, "name" : "Cd52 (pp) C1qc", "shared_name" : "Cd52 (pp) C1qc", "SUID" : 670008, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670027", "source" : "588697", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Cfp", "weight" : 0.586640566026, "name" : "Cd52 (pp) Cfp", "shared_name" : "Cd52 (pp) Cfp", "SUID" : 670027, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670067", "source" : "588697", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Clec7a", "weight" : 0.602367135424, "name" : "Cd52 (pp) Clec7a", "shared_name" : "Cd52 (pp) Clec7a", "SUID" : 670067, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669986", "source" : "588697", "target" : "588782", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.719163750145, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cd52 (pp) Slc15a3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 1.424E-8, "weight" : 0.719163750145, "fusion" : "NA", "name" : "Cd52 (pp) Slc15a3", "neighborhood" : "NA", "sourceEdge" : 129671.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cd52 (pp) Slc15a3", "combinedscore" : "NA", "SUID" : 669986, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 3.244E-9, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "670036", "source" : "588697", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Vcam1", "weight" : 0.711972194525, "name" : "Cd52 (pp) Vcam1", "shared_name" : "Cd52 (pp) Vcam1", "SUID" : 670036, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670059", "source" : "588697", "target" : "589256", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Timp1", "weight" : 0.480030057464, "name" : "Cd52 (pp) Timp1", "shared_name" : "Cd52 (pp) Timp1", "SUID" : 670059, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670054", "source" : "588697", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) H2-DMa", "weight" : 0.698849914844, "name" : "Cd52 (pp) H2-DMa", "shared_name" : "Cd52 (pp) H2-DMa", "SUID" : 670054, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669979", "source" : "588697", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Axl", "weight" : 0.739575585056, "name" : "Cd52 (pp) Axl", "shared_name" : "Cd52 (pp) Axl", "SUID" : 669979, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669996", "source" : "588697", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Plac8", "weight" : 0.725940132301, "name" : "Cd52 (pp) Plac8", "shared_name" : "Cd52 (pp) Plac8", "SUID" : 669996, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669977", "source" : "588697", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Serpina3g", "weight" : 0.673288635334, "name" : "Cd52 (pp) Serpina3g", "shared_name" : "Cd52 (pp) Serpina3g", "SUID" : 669977, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669995", "source" : "588697", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Cotl1", "weight" : 0.696291680868, "name" : "Cd52 (pp) Cotl1", "shared_name" : "Cd52 (pp) Cotl1", "SUID" : 669995, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670052", "source" : "588697", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Serpinb6a", "weight" : 0.514929380995, "name" : "Cd52 (pp) Serpinb6a", "shared_name" : "Cd52 (pp) Serpinb6a", "SUID" : 670052, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669976", "source" : "588697", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) 6330416G13Rik", "weight" : 0.408277919557, "name" : "Cd52 (pp) 6330416G13Rik", "shared_name" : "Cd52 (pp) 6330416G13Rik", "SUID" : 669976, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670058", "source" : "588697", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Trem2", "weight" : 0.473709295885, "name" : "Cd52 (pp) Trem2", "shared_name" : "Cd52 (pp) Trem2", "SUID" : 670058, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670064", "source" : "588697", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Fcgr4", "weight" : 0.760402253308, "name" : "Cd52 (pp) Fcgr4", "shared_name" : "Cd52 (pp) Fcgr4", "SUID" : 670064, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669989", "source" : "588697", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Tmem86a", "weight" : 0.536692399996, "name" : "Cd52 (pp) Tmem86a", "shared_name" : "Cd52 (pp) Tmem86a", "SUID" : 669989, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670012", "source" : "588697", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) H2-DMb1", "weight" : 0.714036498372, "name" : "Cd52 (pp) H2-DMb1", "shared_name" : "Cd52 (pp) H2-DMb1", "SUID" : 670012, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670031", "source" : "588697", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Snx10", "weight" : 0.455903558343, "name" : "Cd52 (pp) Snx10", "shared_name" : "Cd52 (pp) Snx10", "SUID" : 670031, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670009", "source" : "588697", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Hk3", "weight" : 0.712959169261, "name" : "Cd52 (pp) Hk3", "shared_name" : "Cd52 (pp) Hk3", "SUID" : 670009, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670002", "source" : "588697", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Lgals3", "weight" : 0.739700673751, "name" : "Cd52 (pp) Lgals3", "shared_name" : "Cd52 (pp) Lgals3", "SUID" : 670002, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670017", "source" : "588697", "target" : "588999", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Kctd12", "weight" : 0.434339724167, "name" : "Cd52 (pp) Kctd12", "shared_name" : "Cd52 (pp) Kctd12", "SUID" : 670017, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670020", "source" : "588697", "target" : "589005", "homology" : "NA", "shared_interaction" : "NA", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.697307655463, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cd52 (pp) Csrp1", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 1.499E-9, "weight" : 0.697307655463, "fusion" : "NA", "name" : "Cd52 (pp) Csrp1", "neighborhood" : "NA", "sourceEdge" : 129688.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cd52 (pp) Csrp1", "combinedscore" : "NA", "SUID" : 670020, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "NA", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "670055", "source" : "588697", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Ear10", "weight" : 0.571209749937, "name" : "Cd52 (pp) Ear10", "shared_name" : "Cd52 (pp) Ear10", "SUID" : 670055, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669988", "source" : "588697", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Ccl6", "weight" : 0.541668893747, "name" : "Cd52 (pp) Ccl6", "shared_name" : "Cd52 (pp) Ccl6", "SUID" : 669988, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669983", "source" : "588697", "target" : "588740", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Plekha2", "weight" : 0.474049247033, "name" : "Cd52 (pp) Plekha2", "shared_name" : "Cd52 (pp) Plekha2", "SUID" : 669983, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669990", "source" : "588697", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Obrgrp", "weight" : 0.522433662326, "name" : "Cd52 (pp) Obrgrp", "shared_name" : "Cd52 (pp) Obrgrp", "SUID" : 669990, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670083", "source" : "588697", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Il10ra", "weight" : 0.474756999724, "name" : "Cd52 (pp) Il10ra", "shared_name" : "Cd52 (pp) Il10ra", "SUID" : 670083, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669978", "source" : "588697", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Tlr2", "weight" : 0.540439826128, "name" : "Cd52 (pp) Tlr2", "shared_name" : "Cd52 (pp) Tlr2", "SUID" : 669978, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670073", "source" : "588697", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Ly86", "weight" : 0.722774380373, "name" : "Cd52 (pp) Ly86", "shared_name" : "Cd52 (pp) Ly86", "SUID" : 670073, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670040", "source" : "588697", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Tmsb4x", "weight" : 0.766563287348, "name" : "Cd52 (pp) Tmsb4x", "shared_name" : "Cd52 (pp) Tmsb4x", "SUID" : 670040, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670030", "source" : "588697", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Pld4", "weight" : 0.52923090821, "name" : "Cd52 (pp) Pld4", "shared_name" : "Cd52 (pp) Pld4", "SUID" : 670030, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669982", "source" : "588697", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Vsig4", "weight" : 0.613614338516, "name" : "Cd52 (pp) Vsig4", "shared_name" : "Cd52 (pp) Vsig4", "SUID" : 669982, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670069", "source" : "588697", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.673642162006, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cd52 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 4.1831E-8, "weight" : 0.673642162006, "fusion" : "NA", "name" : "Cd52 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 129712.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cd52 (pp) Ear4", "combinedscore" : "NA", "SUID" : 670069, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 1.515E-9, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "670015", "source" : "588697", "target" : "588968", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Bcl2a1c", "weight" : 0.402466992496, "name" : "Cd52 (pp) Bcl2a1c", "shared_name" : "Cd52 (pp) Bcl2a1c", "SUID" : 670015, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669975", "source" : "588697", "target" : "588707", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Cxcl9", "weight" : 0.516230772699, "name" : "Cd52 (pp) Cxcl9", "shared_name" : "Cd52 (pp) Cxcl9", "SUID" : 669975, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670062", "source" : "588697", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd52 (pp) Ear12", "weight" : 0.539679541446, "name" : "Cd52 (pp) Ear12", "shared_name" : "Cd52 (pp) Ear12", "SUID" : 670062, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686283", "source" : "589285", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec7a (pp) C1qb", "weight" : 0.482486598018, "name" : "Clec7a (pp) C1qb", "shared_name" : "Clec7a (pp) C1qb", "SUID" : 686283, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686285", "source" : "589285", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec7a (pp) Fblim1", "weight" : 0.426593403301, "name" : "Clec7a (pp) Fblim1", "shared_name" : "Clec7a (pp) Fblim1", "SUID" : 686285, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686281", "source" : "589285", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec7a (pp) Ly86", "weight" : 0.45432677105, "name" : "Clec7a (pp) Ly86", "shared_name" : "Clec7a (pp) Ly86", "SUID" : 686281, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686292", "source" : "589285", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec7a (pp) Il10ra", "weight" : 0.475572701252, "name" : "Clec7a (pp) Il10ra", "shared_name" : "Clec7a (pp) Il10ra", "SUID" : 686292, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686277", "source" : "589285", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec7a (pp) Ear4", "weight" : 0.620299512311, "name" : "Clec7a (pp) Ear4", "shared_name" : "Clec7a (pp) Ear4", "SUID" : 686277, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686286", "source" : "589285", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec7a (pp) Tspan33", "weight" : 0.538322167949, "name" : "Clec7a (pp) Tspan33", "shared_name" : "Clec7a (pp) Tspan33", "SUID" : 686286, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625480", "source" : "588081", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Capg (pp) Cd14", "weight" : 0.492603632024, "name" : "Capg (pp) Cd14", "shared_name" : "Capg (pp) Cd14", "SUID" : 625480, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625453", "source" : "588081", "target" : "588242", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Capg (pp) Cd83", "weight" : 0.419810299613, "name" : "Capg (pp) Cd83", "shared_name" : "Capg (pp) Cd83", "SUID" : 625453, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625534", "source" : "588081", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Capg (pp) Cotl1", "weight" : 0.443141462629, "name" : "Capg (pp) Cotl1", "shared_name" : "Capg (pp) Cotl1", "SUID" : 625534, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625509", "source" : "588081", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Capg (pp) Gngt2", "weight" : 0.469712199767, "name" : "Capg (pp) Gngt2", "shared_name" : "Capg (pp) Gngt2", "SUID" : 625509, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625484", "source" : "588081", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Capg (pp) Cd63", "weight" : 0.4326049864, "name" : "Capg (pp) Cd63", "shared_name" : "Capg (pp) Cd63", "SUID" : 625484, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625537", "source" : "588081", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Capg (pp) Fcer1g", "weight" : 0.402853954145, "name" : "Capg (pp) Fcer1g", "shared_name" : "Capg (pp) Fcer1g", "SUID" : 625537, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625489", "source" : "588081", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Capg (pp) Renbp", "weight" : 0.428506589428, "name" : "Capg (pp) Renbp", "shared_name" : "Capg (pp) Renbp", "SUID" : 625489, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625590", "source" : "588081", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Capg (pp) Ly86", "weight" : 0.478736459299, "name" : "Capg (pp) Ly86", "shared_name" : "Capg (pp) Ly86", "SUID" : 625590, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625472", "source" : "588081", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Capg (pp) Cyp7b1", "weight" : 0.435291151523, "name" : "Capg (pp) Cyp7b1", "shared_name" : "Capg (pp) Cyp7b1", "SUID" : 625472, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625531", "source" : "588081", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Capg (pp) Obrgrp", "weight" : 0.415813957903, "name" : "Capg (pp) Obrgrp", "shared_name" : "Capg (pp) Obrgrp", "SUID" : 625531, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625528", "source" : "588081", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Capg (pp) Slc15a3", "weight" : 0.430554914988, "name" : "Capg (pp) Slc15a3", "shared_name" : "Capg (pp) Slc15a3", "SUID" : 625528, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625598", "source" : "588081", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Capg (pp) Il10ra", "weight" : 0.46615348664, "name" : "Capg (pp) Il10ra", "shared_name" : "Capg (pp) Il10ra", "SUID" : 625598, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625523", "source" : "588081", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Capg (pp) Axl", "weight" : 0.448416869198, "name" : "Capg (pp) Axl", "shared_name" : "Capg (pp) Axl", "SUID" : 625523, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625541", "source" : "588081", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Capg (pp) Lgals3", "weight" : 0.428740201853, "name" : "Capg (pp) Lgals3", "shared_name" : "Capg (pp) Lgals3", "SUID" : 625541, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625591", "source" : "588081", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Capg (pp) C1qb", "weight" : 0.40706820899, "name" : "Capg (pp) C1qb", "shared_name" : "Capg (pp) C1qb", "SUID" : 625591, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686391", "source" : "589304", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear4 (pp) Lrrc33", "weight" : 0.43902962221, "name" : "Ear4 (pp) Lrrc33", "shared_name" : "Ear4 (pp) Lrrc33", "SUID" : 686391, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686387", "source" : "589304", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear4 (pp) C1qb", "weight" : 0.677357543433, "name" : "Ear4 (pp) C1qb", "shared_name" : "Ear4 (pp) C1qb", "SUID" : 686387, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686386", "source" : "589304", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear4 (pp) Ly86", "weight" : 0.741729383256, "name" : "Ear4 (pp) Ly86", "shared_name" : "Ear4 (pp) Ly86", "SUID" : 686386, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686384", "source" : "589304", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear4 (pp) Prkcd", "weight" : 0.432124220748, "name" : "Ear4 (pp) Prkcd", "shared_name" : "Ear4 (pp) Prkcd", "SUID" : 686384, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686389", "source" : "589304", "target" : "589353", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.497552327172, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ear4 (pp) Fblim1", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.497552327172, "fusion" : "NA", "name" : "Ear4 (pp) Fblim1", "neighborhood" : "NA", "sourceEdge" : 155546.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ear4 (pp) Fblim1", "combinedscore" : "NA", "SUID" : 686389, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 6.290069E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "686390", "source" : "589304", "target" : "589357", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.463124283366, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ear4 (pp) Tspan33", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.463124283366, "fusion" : "NA", "name" : "Ear4 (pp) Tspan33", "neighborhood" : "NA", "sourceEdge" : 155547.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ear4 (pp) Tspan33", "combinedscore" : "NA", "SUID" : 686390, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 8.653439E-5, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "674220", "source" : "588803", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Obrgrp (pp) Vcam1", "weight" : 0.538969511594, "name" : "Obrgrp (pp) Vcam1", "shared_name" : "Obrgrp (pp) Vcam1", "SUID" : 674220, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674267", "source" : "588803", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Obrgrp (pp) C1qb", "weight" : 0.543498571508, "name" : "Obrgrp (pp) C1qb", "shared_name" : "Obrgrp (pp) C1qb", "SUID" : 674267, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674172", "source" : "588803", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Obrgrp (pp) Hk3", "weight" : 0.528227190415, "name" : "Obrgrp (pp) Hk3", "shared_name" : "Obrgrp (pp) Hk3", "SUID" : 674172, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674269", "source" : "588803", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Obrgrp (pp) Fblim1", "weight" : 0.456181110723, "name" : "Obrgrp (pp) Fblim1", "shared_name" : "Obrgrp (pp) Fblim1", "SUID" : 674269, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674256", "source" : "588803", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Obrgrp (pp) Fcgr4", "weight" : 0.535595350559, "name" : "Obrgrp (pp) Fcgr4", "shared_name" : "Obrgrp (pp) Fcgr4", "SUID" : 674256, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674261", "source" : "588803", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Obrgrp (pp) Ear4", "weight" : 0.526025124948, "name" : "Obrgrp (pp) Ear4", "shared_name" : "Obrgrp (pp) Ear4", "SUID" : 674261, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674226", "source" : "588803", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Obrgrp (pp) Tmsb4x", "weight" : 0.448203311951, "name" : "Obrgrp (pp) Tmsb4x", "shared_name" : "Obrgrp (pp) Tmsb4x", "SUID" : 674226, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674278", "source" : "588803", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Obrgrp (pp) Il10ra", "weight" : 0.441753299056, "name" : "Obrgrp (pp) Il10ra", "shared_name" : "Obrgrp (pp) Il10ra", "SUID" : 674278, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674154", "source" : "588803", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Obrgrp (pp) Plac8", "weight" : 0.427788879315, "name" : "Obrgrp (pp) Plac8", "shared_name" : "Obrgrp (pp) Plac8", "SUID" : 674154, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674190", "source" : "588803", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Obrgrp (pp) Csrp1", "weight" : 0.575843327659, "name" : "Obrgrp (pp) Csrp1", "shared_name" : "Obrgrp (pp) Csrp1", "SUID" : 674190, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674156", "source" : "588803", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Obrgrp (pp) Fcer1g", "weight" : 0.576147556704, "name" : "Obrgrp (pp) Fcer1g", "shared_name" : "Obrgrp (pp) Fcer1g", "SUID" : 674156, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674173", "source" : "588803", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Obrgrp (pp) Cytip", "weight" : 0.517250806108, "name" : "Obrgrp (pp) Cytip", "shared_name" : "Obrgrp (pp) Cytip", "SUID" : 674173, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674230", "source" : "588803", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Obrgrp (pp) Rasgrp1", "weight" : 0.49964502719, "name" : "Obrgrp (pp) Rasgrp1", "shared_name" : "Obrgrp (pp) Rasgrp1", "SUID" : 674230, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674152", "source" : "588803", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Obrgrp (pp) Cotl1", "weight" : 0.539110364655, "name" : "Obrgrp (pp) Cotl1", "shared_name" : "Obrgrp (pp) Cotl1", "SUID" : 674152, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674165", "source" : "588803", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Obrgrp (pp) Lgals3", "weight" : 0.547090704592, "name" : "Obrgrp (pp) Lgals3", "shared_name" : "Obrgrp (pp) Lgals3", "SUID" : 674165, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674242", "source" : "588803", "target" : "589225", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Obrgrp (pp) St6gal1", "weight" : 0.425905865967, "name" : "Obrgrp (pp) St6gal1", "shared_name" : "Obrgrp (pp) St6gal1", "SUID" : 674242, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674265", "source" : "588803", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Obrgrp (pp) Ly86", "weight" : 0.488890928335, "name" : "Obrgrp (pp) Ly86", "shared_name" : "Obrgrp (pp) Ly86", "SUID" : 674265, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674253", "source" : "588803", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Obrgrp (pp) Abi3", "weight" : 0.413474951333, "name" : "Obrgrp (pp) Abi3", "shared_name" : "Obrgrp (pp) Abi3", "SUID" : 674253, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674207", "source" : "588803", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Obrgrp (pp) Cfp", "weight" : 0.572536281764, "name" : "Obrgrp (pp) Cfp", "shared_name" : "Obrgrp (pp) Cfp", "SUID" : 674207, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674240", "source" : "588803", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Obrgrp (pp) Serpinb6a", "weight" : 0.501370051037, "name" : "Obrgrp (pp) Serpinb6a", "shared_name" : "Obrgrp (pp) Serpinb6a", "SUID" : 674240, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674205", "source" : "588803", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Obrgrp (pp) Btk", "weight" : 0.496954071854, "name" : "Obrgrp (pp) Btk", "shared_name" : "Obrgrp (pp) Btk", "SUID" : 674205, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674271", "source" : "588803", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Obrgrp (pp) Lrrc33", "weight" : 0.478766625422, "name" : "Obrgrp (pp) Lrrc33", "shared_name" : "Obrgrp (pp) Lrrc33", "SUID" : 674271, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675670", "source" : "588835", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) Fblim1", "weight" : 0.466245177875, "name" : "Cotl1 (pp) Fblim1", "shared_name" : "Cotl1 (pp) Fblim1", "SUID" : 675670, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675569", "source" : "588835", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) Cytip", "weight" : 0.531610091175, "name" : "Cotl1 (pp) Cytip", "shared_name" : "Cotl1 (pp) Cytip", "SUID" : 675569, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675568", "source" : "588835", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) Hk3", "weight" : 0.452533164676, "name" : "Cotl1 (pp) Hk3", "shared_name" : "Cotl1 (pp) Hk3", "SUID" : 675568, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675587", "source" : "588835", "target" : "589005", "homology" : "NA", "shared_interaction" : "NA", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.765094047683, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cotl1 (pp) Csrp1", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 1.2E-11, "weight" : 0.765094047683, "fusion" : "NA", "name" : "Cotl1 (pp) Csrp1", "neighborhood" : "NA", "sourceEdge" : 139111.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cotl1 (pp) Csrp1", "combinedscore" : "NA", "SUID" : 675587, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "NA", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "675549", "source" : "588835", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) Plac8", "weight" : 0.613252801674, "name" : "Cotl1 (pp) Plac8", "shared_name" : "Cotl1 (pp) Plac8", "SUID" : 675549, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675621", "source" : "588835", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) Tmsb4x", "weight" : 0.600983332293, "name" : "Cotl1 (pp) Tmsb4x", "shared_name" : "Cotl1 (pp) Tmsb4x", "SUID" : 675621, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675650", "source" : "588835", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) Ppif", "weight" : 0.492296011456, "name" : "Cotl1 (pp) Ppif", "shared_name" : "Cotl1 (pp) Ppif", "SUID" : 675650, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675589", "source" : "588835", "target" : "589030", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) Soat1", "weight" : 0.523825314157, "name" : "Cotl1 (pp) Soat1", "shared_name" : "Cotl1 (pp) Soat1", "SUID" : 675589, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675667", "source" : "588835", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) Ly86", "weight" : 0.594418596071, "name" : "Cotl1 (pp) Ly86", "shared_name" : "Cotl1 (pp) Ly86", "SUID" : 675667, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675665", "source" : "588835", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) Prkcd", "weight" : 0.474559981358, "name" : "Cotl1 (pp) Prkcd", "shared_name" : "Cotl1 (pp) Prkcd", "SUID" : 675665, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675654", "source" : "588835", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) Ear12", "weight" : 0.565079991826, "name" : "Cotl1 (pp) Ear12", "shared_name" : "Cotl1 (pp) Ear12", "SUID" : 675654, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675604", "source" : "588835", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) Cfp", "weight" : 0.538541461247, "name" : "Cotl1 (pp) Cfp", "shared_name" : "Cotl1 (pp) Cfp", "SUID" : 675604, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675648", "source" : "588835", "target" : "589256", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) Timp1", "weight" : 0.550195644736, "name" : "Cotl1 (pp) Timp1", "shared_name" : "Cotl1 (pp) Timp1", "SUID" : 675648, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675643", "source" : "588835", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) Ear10", "weight" : 0.530343313216, "name" : "Cotl1 (pp) Ear10", "shared_name" : "Cotl1 (pp) Ear10", "SUID" : 675643, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675607", "source" : "588835", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) Pld4", "weight" : 0.404260210237, "name" : "Cotl1 (pp) Pld4", "shared_name" : "Cotl1 (pp) Pld4", "SUID" : 675607, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675647", "source" : "588835", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) Trem2", "weight" : 0.694416026525, "name" : "Cotl1 (pp) Trem2", "shared_name" : "Cotl1 (pp) Trem2", "SUID" : 675647, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675553", "source" : "588835", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) Fcgr3", "weight" : 0.563060711352, "name" : "Cotl1 (pp) Fcgr3", "shared_name" : "Cotl1 (pp) Fcgr3", "SUID" : 675553, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675551", "source" : "588835", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) Fcer1g", "weight" : 0.715393058024, "name" : "Cotl1 (pp) Fcer1g", "shared_name" : "Cotl1 (pp) Fcer1g", "SUID" : 675551, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675658", "source" : "588835", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) Cd53", "weight" : 0.402230446492, "name" : "Cotl1 (pp) Cd53", "shared_name" : "Cotl1 (pp) Cd53", "SUID" : 675658, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675640", "source" : "588835", "target" : "589225", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) St6gal1", "weight" : 0.476892731972, "name" : "Cotl1 (pp) St6gal1", "shared_name" : "Cotl1 (pp) St6gal1", "SUID" : 675640, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675662", "source" : "588835", "target" : "589304", "homology" : "NA", "shared_interaction" : "NA", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.718157124997, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cotl1 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 5.098E-9, "weight" : 0.718157124997, "fusion" : "NA", "name" : "Cotl1 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 139135.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cotl1 (pp) Ear4", "combinedscore" : "NA", "SUID" : 675662, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "NA", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "675609", "source" : "588835", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) Snx10", "weight" : 0.444279789579, "name" : "Cotl1 (pp) Snx10", "shared_name" : "Cotl1 (pp) Snx10", "SUID" : 675609, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675668", "source" : "588835", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) C1qb", "weight" : 0.647818148729, "name" : "Cotl1 (pp) C1qb", "shared_name" : "Cotl1 (pp) C1qb", "SUID" : 675668, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675638", "source" : "588835", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) Serpinb6a", "weight" : 0.657186150751, "name" : "Cotl1 (pp) Serpinb6a", "shared_name" : "Cotl1 (pp) Serpinb6a", "SUID" : 675638, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675680", "source" : "588835", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) Il10ra", "weight" : 0.481453937895, "name" : "Cotl1 (pp) Il10ra", "shared_name" : "Cotl1 (pp) Il10ra", "SUID" : 675680, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675659", "source" : "588835", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) Clec7a", "weight" : 0.62510760747, "name" : "Cotl1 (pp) Clec7a", "shared_name" : "Cotl1 (pp) Clec7a", "SUID" : 675659, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675642", "source" : "588835", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) H2-DMa", "weight" : 0.401643905641, "name" : "Cotl1 (pp) H2-DMa", "shared_name" : "Cotl1 (pp) H2-DMa", "SUID" : 675642, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675652", "source" : "588835", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) Abi3", "weight" : 0.501909774064, "name" : "Cotl1 (pp) Abi3", "shared_name" : "Cotl1 (pp) Abi3", "SUID" : 675652, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675656", "source" : "588835", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) Fcgr4", "weight" : 0.613175231246, "name" : "Cotl1 (pp) Fcgr4", "shared_name" : "Cotl1 (pp) Fcgr4", "SUID" : 675656, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675616", "source" : "588835", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) Vcam1", "weight" : 0.800638766518, "name" : "Cotl1 (pp) Vcam1", "shared_name" : "Cotl1 (pp) Vcam1", "SUID" : 675616, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675602", "source" : "588835", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) Btk", "weight" : 0.467083552086, "name" : "Cotl1 (pp) Btk", "shared_name" : "Cotl1 (pp) Btk", "SUID" : 675602, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675566", "source" : "588835", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) C1qc", "weight" : 0.476211823842, "name" : "Cotl1 (pp) C1qc", "shared_name" : "Cotl1 (pp) C1qc", "SUID" : 675566, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675672", "source" : "588835", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) Lrrc33", "weight" : 0.411068229322, "name" : "Cotl1 (pp) Lrrc33", "shared_name" : "Cotl1 (pp) Lrrc33", "SUID" : 675672, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675574", "source" : "588835", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) H2-DMb1", "weight" : 0.444186452196, "name" : "Cotl1 (pp) H2-DMb1", "shared_name" : "Cotl1 (pp) H2-DMb1", "SUID" : 675574, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675611", "source" : "588835", "target" : "589102", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cotl1 (pp) Gja1", "weight" : 0.426260823798, "name" : "Cotl1 (pp) Gja1", "shared_name" : "Cotl1 (pp) Gja1", "SUID" : 675611, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "675560", "source" : "588835", "target" : "588886", "homology" : "NA", "shared_interaction" : "NA", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.806386624917, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cotl1 (pp) Lgals3", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 8.738312E-4, "weight" : 0.806386624917, "fusion" : "NA", "name" : "Cotl1 (pp) Lgals3", "neighborhood" : "NA", "sourceEdge" : 139104.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cotl1 (pp) Lgals3", "combinedscore" : "NA", "SUID" : 675560, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "NA", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "670741", "source" : "588716", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "6330416G13Rik (pp) Csrp1", "weight" : 0.407351602446, "name" : "6330416G13Rik (pp) Csrp1", "shared_name" : "6330416G13Rik (pp) Csrp1", "SUID" : 670741, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670729", "source" : "588716", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "6330416G13Rik (pp) C1qc", "weight" : 0.445961276369, "name" : "6330416G13Rik (pp) C1qc", "shared_name" : "6330416G13Rik (pp) C1qc", "SUID" : 670729, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670720", "source" : "588716", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "6330416G13Rik (pp) Cotl1", "weight" : 0.510186119714, "name" : "6330416G13Rik (pp) Cotl1", "shared_name" : "6330416G13Rik (pp) Cotl1", "SUID" : 670720, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670779", "source" : "588716", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "6330416G13Rik (pp) C1qb", "weight" : 0.589088726153, "name" : "6330416G13Rik (pp) C1qb", "shared_name" : "6330416G13Rik (pp) C1qb", "SUID" : 670779, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670751", "source" : "588716", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "6330416G13Rik (pp) Vcam1", "weight" : 0.520181464372, "name" : "6330416G13Rik (pp) Vcam1", "shared_name" : "6330416G13Rik (pp) Vcam1", "SUID" : 670751, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670709", "source" : "588716", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "6330416G13Rik (pp) Vsig4", "weight" : 0.447277970963, "name" : "6330416G13Rik (pp) Vsig4", "shared_name" : "6330416G13Rik (pp) Vsig4", "SUID" : 670709, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670721", "source" : "588716", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "6330416G13Rik (pp) Plac8", "weight" : 0.456127313145, "name" : "6330416G13Rik (pp) Plac8", "shared_name" : "6330416G13Rik (pp) Plac8", "SUID" : 670721, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670723", "source" : "588716", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "6330416G13Rik (pp) Fcgr3", "weight" : 0.499475101565, "name" : "6330416G13Rik (pp) Fcgr3", "shared_name" : "6330416G13Rik (pp) Fcgr3", "SUID" : 670723, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670775", "source" : "588716", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "6330416G13Rik (pp) Ear4", "weight" : 0.477000328141, "name" : "6330416G13Rik (pp) Ear4", "shared_name" : "6330416G13Rik (pp) Ear4", "SUID" : 670775, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670725", "source" : "588716", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "6330416G13Rik (pp) Lgals3", "weight" : 0.443799424192, "name" : "6330416G13Rik (pp) Lgals3", "shared_name" : "6330416G13Rik (pp) Lgals3", "SUID" : 670725, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670714", "source" : "588716", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "6330416G13Rik (pp) Tmem86a", "weight" : 0.411827651345, "name" : "6330416G13Rik (pp) Tmem86a", "shared_name" : "6330416G13Rik (pp) Tmem86a", "SUID" : 670714, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670707", "source" : "588716", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "6330416G13Rik (pp) Axl", "weight" : 0.532157478233, "name" : "6330416G13Rik (pp) Axl", "shared_name" : "6330416G13Rik (pp) Axl", "SUID" : 670707, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670722", "source" : "588716", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "6330416G13Rik (pp) Fcer1g", "weight" : 0.522339796689, "name" : "6330416G13Rik (pp) Fcer1g", "shared_name" : "6330416G13Rik (pp) Fcer1g", "SUID" : 670722, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670761", "source" : "588716", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "6330416G13Rik (pp) Serpinb6a", "weight" : 0.568925343054, "name" : "6330416G13Rik (pp) Serpinb6a", "shared_name" : "6330416G13Rik (pp) Serpinb6a", "SUID" : 670761, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670712", "source" : "588716", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "6330416G13Rik (pp) Slc15a3", "weight" : 0.438303434379, "name" : "6330416G13Rik (pp) Slc15a3", "shared_name" : "6330416G13Rik (pp) Slc15a3", "SUID" : 670712, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670719", "source" : "588716", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "6330416G13Rik (pp) Pla2g15", "weight" : 0.548784611807, "name" : "6330416G13Rik (pp) Pla2g15", "shared_name" : "6330416G13Rik (pp) Pla2g15", "SUID" : 670719, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670780", "source" : "588716", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "6330416G13Rik (pp) Lrrc33", "weight" : 0.531767252996, "name" : "6330416G13Rik (pp) Lrrc33", "shared_name" : "6330416G13Rik (pp) Lrrc33", "SUID" : 670780, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658686", "source" : "588496", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gphn (pp) Axl", "weight" : 0.475295846692, "name" : "Gphn (pp) Axl", "shared_name" : "Gphn (pp) Axl", "SUID" : 658686, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658663", "source" : "588496", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gphn (pp) Tmsb10", "weight" : 0.501517111894, "name" : "Gphn (pp) Tmsb10", "shared_name" : "Gphn (pp) Tmsb10", "SUID" : 658663, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658775", "source" : "588496", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gphn (pp) Ear4", "weight" : 0.491670468503, "name" : "Gphn (pp) Ear4", "shared_name" : "Gphn (pp) Ear4", "SUID" : 658775, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658728", "source" : "588496", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gphn (pp) Csrp1", "weight" : 0.442253486053, "name" : "Gphn (pp) Csrp1", "shared_name" : "Gphn (pp) Csrp1", "SUID" : 658728, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658706", "source" : "588496", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gphn (pp) Fcer1g", "weight" : 0.419827639627, "name" : "Gphn (pp) Fcer1g", "shared_name" : "Gphn (pp) Fcer1g", "SUID" : 658706, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658671", "source" : "588496", "target" : "588636", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gphn (pp) Repin1", "weight" : 0.450816381575, "name" : "Gphn (pp) Repin1", "shared_name" : "Gphn (pp) Repin1", "SUID" : 658671, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658707", "source" : "588496", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gphn (pp) Fcgr3", "weight" : 0.449974811735, "name" : "Gphn (pp) Fcgr3", "shared_name" : "Gphn (pp) Fcgr3", "SUID" : 658707, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658674", "source" : "588496", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gphn (pp) Gpnmb", "weight" : 0.473281580811, "name" : "Gphn (pp) Gpnmb", "shared_name" : "Gphn (pp) Gpnmb", "SUID" : 658674, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658757", "source" : "588496", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gphn (pp) Serpinb6a", "weight" : 0.43831506052, "name" : "Gphn (pp) Serpinb6a", "shared_name" : "Gphn (pp) Serpinb6a", "SUID" : 658757, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658665", "source" : "588496", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gphn (pp) Slc11a1", "weight" : 0.403903520664, "name" : "Gphn (pp) Slc11a1", "shared_name" : "Gphn (pp) Slc11a1", "SUID" : 658665, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658703", "source" : "588496", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gphn (pp) Cotl1", "weight" : 0.554612878358, "name" : "Gphn (pp) Cotl1", "shared_name" : "Gphn (pp) Cotl1", "SUID" : 658703, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658711", "source" : "588496", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gphn (pp) Lgals3", "weight" : 0.4924391195, "name" : "Gphn (pp) Lgals3", "shared_name" : "Gphn (pp) Lgals3", "SUID" : 658711, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658685", "source" : "588496", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gphn (pp) 6330416G13Rik", "weight" : 0.4383757777, "name" : "Gphn (pp) 6330416G13Rik", "shared_name" : "Gphn (pp) 6330416G13Rik", "SUID" : 658685, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658701", "source" : "588496", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gphn (pp) Pla2g15", "weight" : 0.429093059479, "name" : "Gphn (pp) Pla2g15", "shared_name" : "Gphn (pp) Pla2g15", "SUID" : 658701, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658741", "source" : "588496", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gphn (pp) Vcam1", "weight" : 0.507892251771, "name" : "Gphn (pp) Vcam1", "shared_name" : "Gphn (pp) Vcam1", "SUID" : 658741, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658762", "source" : "588496", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gphn (pp) Trem2", "weight" : 0.444445276762, "name" : "Gphn (pp) Trem2", "shared_name" : "Gphn (pp) Trem2", "SUID" : 658762, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649758", "source" : "588358", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Snx10", "weight" : 0.404390111615, "name" : "Cyp7b1 (pp) Snx10", "shared_name" : "Cyp7b1 (pp) Snx10", "SUID" : 649758, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649663", "source" : "588358", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) 6330416G13Rik", "weight" : 0.414398450433, "name" : "Cyp7b1 (pp) 6330416G13Rik", "shared_name" : "Cyp7b1 (pp) 6330416G13Rik", "SUID" : 649663, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649629", "source" : "588358", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Tmsb10", "weight" : 0.523998895452, "name" : "Cyp7b1 (pp) Tmsb10", "shared_name" : "Cyp7b1 (pp) Tmsb10", "SUID" : 649629, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649833", "source" : "588358", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Lrrc33", "weight" : 0.407664758559, "name" : "Cyp7b1 (pp) Lrrc33", "shared_name" : "Cyp7b1 (pp) Lrrc33", "SUID" : 649833, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649683", "source" : "588358", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Obrgrp", "weight" : 0.540974224456, "name" : "Cyp7b1 (pp) Obrgrp", "shared_name" : "Cyp7b1 (pp) Obrgrp", "SUID" : 649683, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649634", "source" : "588358", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Gngt2", "weight" : 0.484720643838, "name" : "Cyp7b1 (pp) Gngt2", "shared_name" : "Cyp7b1 (pp) Gngt2", "SUID" : 649634, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649632", "source" : "588358", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Slc11a1", "weight" : 0.465669918286, "name" : "Cyp7b1 (pp) Slc11a1", "shared_name" : "Cyp7b1 (pp) Slc11a1", "SUID" : 649632, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649753", "source" : "588358", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Cfp", "weight" : 0.499748723197, "name" : "Cyp7b1 (pp) Cfp", "shared_name" : "Cyp7b1 (pp) Cfp", "SUID" : 649753, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649799", "source" : "588358", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Ear10", "weight" : 0.496903724737, "name" : "Cyp7b1 (pp) Ear10", "shared_name" : "Cyp7b1 (pp) Ear10", "SUID" : 649799, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649645", "source" : "588358", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Gpnmb", "weight" : 0.583905560799, "name" : "Cyp7b1 (pp) Gpnmb", "shared_name" : "Cyp7b1 (pp) Gpnmb", "SUID" : 649645, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649671", "source" : "588358", "target" : "588742", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Ifitm6", "weight" : 0.589417267091, "name" : "Cyp7b1 (pp) Ifitm6", "shared_name" : "Cyp7b1 (pp) Ifitm6", "SUID" : 649671, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649605", "source" : "588358", "target" : "588496", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Gphn", "weight" : 0.566837484204, "name" : "Cyp7b1 (pp) Gphn", "shared_name" : "Cyp7b1 (pp) Gphn", "SUID" : 649605, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649696", "source" : "588358", "target" : "588860", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.558134838478, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cyp7b1 (pp) Fcer1g", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 5.872498E-6, "weight" : 0.558134838478, "fusion" : "NA", "name" : "Cyp7b1 (pp) Fcer1g", "neighborhood" : "NA", "sourceEdge" : 900205.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cyp7b1 (pp) Fcer1g", "combinedscore" : "NA", "SUID" : 649696, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "649715", "source" : "588358", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Cytip", "weight" : 0.469076945843, "name" : "Cyp7b1 (pp) Cytip", "shared_name" : "Cyp7b1 (pp) Cytip", "SUID" : 649715, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649774", "source" : "588358", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Tmsb4x", "weight" : 0.489405120623, "name" : "Cyp7b1 (pp) Tmsb4x", "shared_name" : "Cyp7b1 (pp) Tmsb4x", "SUID" : 649774, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649694", "source" : "588358", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Plac8", "weight" : 0.488779442576, "name" : "Cyp7b1 (pp) Plac8", "shared_name" : "Cyp7b1 (pp) Plac8", "SUID" : 649694, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649807", "source" : "588358", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Ppif", "weight" : 0.503483999108, "name" : "Cyp7b1 (pp) Ppif", "shared_name" : "Cyp7b1 (pp) Ppif", "SUID" : 649807, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649705", "source" : "588358", "target" : "588886", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.722082206681, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cyp7b1 (pp) Lgals3", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 3.725375E-5, "weight" : 0.722082206681, "fusion" : "NA", "name" : "Cyp7b1 (pp) Lgals3", "neighborhood" : "NA", "sourceEdge" : 900231.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cyp7b1 (pp) Lgals3", "combinedscore" : "NA", "SUID" : 649705, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "649734", "source" : "588358", "target" : "589005", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.693161354685, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cyp7b1 (pp) Csrp1", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 2.860638E-6, "weight" : 0.693161354685, "fusion" : "NA", "name" : "Cyp7b1 (pp) Csrp1", "neighborhood" : "NA", "sourceEdge" : 900350.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cyp7b1 (pp) Csrp1", "combinedscore" : "NA", "SUID" : 649734, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "649599", "source" : "588358", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Renbp", "weight" : 0.637675490415, "name" : "Cyp7b1 (pp) Renbp", "shared_name" : "Cyp7b1 (pp) Renbp", "SUID" : 649599, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649676", "source" : "588358", "target" : "588782", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.65249206488, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cyp7b1 (pp) Slc15a3", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 2.588814E-6, "weight" : 0.65249206488, "fusion" : "NA", "name" : "Cyp7b1 (pp) Slc15a3", "neighborhood" : "NA", "sourceEdge" : 900127.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cyp7b1 (pp) Slc15a3", "combinedscore" : "NA", "SUID" : 649676, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "649687", "source" : "588358", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Pla2g15", "weight" : 0.452553533547, "name" : "Cyp7b1 (pp) Pla2g15", "shared_name" : "Cyp7b1 (pp) Pla2g15", "SUID" : 649687, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649813", "source" : "588358", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Fcgr4", "weight" : 0.451496570545, "name" : "Cyp7b1 (pp) Fcgr4", "shared_name" : "Cyp7b1 (pp) Fcgr4", "SUID" : 649813, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649825", "source" : "588358", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Prkcd", "weight" : 0.473069131759, "name" : "Cyp7b1 (pp) Prkcd", "shared_name" : "Cyp7b1 (pp) Prkcd", "SUID" : 649825, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649666", "source" : "588358", "target" : "588727", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.632076509203, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cyp7b1 (pp) Axl", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 3.940407E-6, "weight" : 0.632076509203, "fusion" : "NA", "name" : "Cyp7b1 (pp) Axl", "neighborhood" : "NA", "sourceEdge" : 900072.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cyp7b1 (pp) Axl", "combinedscore" : "NA", "SUID" : 649666, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "649576", "source" : "588358", "target" : "588394", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Lyzs", "weight" : 0.423241287775, "name" : "Cyp7b1 (pp) Lyzs", "shared_name" : "Cyp7b1 (pp) Lyzs", "SUID" : 649576, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649797", "source" : "588358", "target" : "589225", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) St6gal1", "weight" : 0.593953512916, "name" : "Cyp7b1 (pp) St6gal1", "shared_name" : "Cyp7b1 (pp) St6gal1", "SUID" : 649797, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649654", "source" : "588358", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) 5033414D02Rik", "weight" : 0.584689055285, "name" : "Cyp7b1 (pp) 5033414D02Rik", "shared_name" : "Cyp7b1 (pp) 5033414D02Rik", "SUID" : 649654, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649751", "source" : "588358", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Btk", "weight" : 0.438250069458, "name" : "Cyp7b1 (pp) Btk", "shared_name" : "Cyp7b1 (pp) Btk", "SUID" : 649751, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649642", "source" : "588358", "target" : "588636", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Repin1", "weight" : 0.459784926384, "name" : "Cyp7b1 (pp) Repin1", "shared_name" : "Cyp7b1 (pp) Repin1", "SUID" : 649642, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649832", "source" : "588358", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Tspan33", "weight" : 0.409823599444, "name" : "Cyp7b1 (pp) Tspan33", "shared_name" : "Cyp7b1 (pp) Tspan33", "SUID" : 649832, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649600", "source" : "588358", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Plscr1", "weight" : 0.600888412691, "name" : "Cyp7b1 (pp) Plscr1", "shared_name" : "Cyp7b1 (pp) Plscr1", "SUID" : 649600, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649586", "source" : "588358", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Clec4n", "weight" : 0.623179105328, "name" : "Cyp7b1 (pp) Clec4n", "shared_name" : "Cyp7b1 (pp) Clec4n", "SUID" : 649586, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649592", "source" : "588358", "target" : "588459", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Pop5", "weight" : 0.497221251403, "name" : "Cyp7b1 (pp) Pop5", "shared_name" : "Cyp7b1 (pp) Pop5", "SUID" : 649592, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649572", "source" : "588358", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Selplg", "weight" : 0.430093286044, "name" : "Cyp7b1 (pp) Selplg", "shared_name" : "Cyp7b1 (pp) Selplg", "SUID" : 649572, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649628", "source" : "588358", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Coro1a", "weight" : 0.455457126721, "name" : "Cyp7b1 (pp) Coro1a", "shared_name" : "Cyp7b1 (pp) Coro1a", "SUID" : 649628, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649665", "source" : "588358", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Tlr2", "weight" : 0.500449774041, "name" : "Cyp7b1 (pp) Tlr2", "shared_name" : "Cyp7b1 (pp) Tlr2", "SUID" : 649665, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649829", "source" : "588358", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) C1qb", "weight" : 0.46250101397, "name" : "Cyp7b1 (pp) C1qb", "shared_name" : "Cyp7b1 (pp) C1qb", "SUID" : 649829, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649691", "source" : "588358", "target" : "588835", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.721838010072, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cyp7b1 (pp) Cotl1", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 2.798077E-6, "weight" : 0.721838010072, "fusion" : "NA", "name" : "Cyp7b1 (pp) Cotl1", "neighborhood" : "NA", "sourceEdge" : 900180.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cyp7b1 (pp) Cotl1", "combinedscore" : "NA", "SUID" : 649691, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "649811", "source" : "588358", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Ear12", "weight" : 0.606299096823, "name" : "Cyp7b1 (pp) Ear12", "shared_name" : "Cyp7b1 (pp) Ear12", "SUID" : 649811, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649622", "source" : "588358", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Cd86", "weight" : 0.499164696769, "name" : "Cyp7b1 (pp) Cd86", "shared_name" : "Cyp7b1 (pp) Cd86", "SUID" : 649622, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649822", "source" : "588358", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.71814842482, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cyp7b1 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 8.48028E-7, "weight" : 0.71814842482, "fusion" : "NA", "name" : "Cyp7b1 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 900649.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cyp7b1 (pp) Ear4", "combinedscore" : "NA", "SUID" : 649822, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "649768", "source" : "588358", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Vcam1", "weight" : 0.686186434668, "name" : "Cyp7b1 (pp) Vcam1", "shared_name" : "Cyp7b1 (pp) Vcam1", "SUID" : 649768, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649579", "source" : "588358", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Cd14", "weight" : 0.64365794789, "name" : "Cyp7b1 (pp) Cd14", "shared_name" : "Cyp7b1 (pp) Cd14", "SUID" : 649579, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649698", "source" : "588358", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Fcgr3", "weight" : 0.438891596103, "name" : "Cyp7b1 (pp) Fcgr3", "shared_name" : "Cyp7b1 (pp) Fcgr3", "SUID" : 649698, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649828", "source" : "588358", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Ly86", "weight" : 0.527136024349, "name" : "Cyp7b1 (pp) Ly86", "shared_name" : "Cyp7b1 (pp) Ly86", "SUID" : 649828, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649831", "source" : "588358", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Fblim1", "weight" : 0.437129143671, "name" : "Cyp7b1 (pp) Fblim1", "shared_name" : "Cyp7b1 (pp) Fblim1", "SUID" : 649831, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649804", "source" : "588358", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Trem2", "weight" : 0.533079462871, "name" : "Cyp7b1 (pp) Trem2", "shared_name" : "Cyp7b1 (pp) Trem2", "SUID" : 649804, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649794", "source" : "588358", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Serpinb6a", "weight" : 0.631863516744, "name" : "Cyp7b1 (pp) Serpinb6a", "shared_name" : "Cyp7b1 (pp) Serpinb6a", "SUID" : 649794, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649660", "source" : "588358", "target" : "588697", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.509451132763, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cyp7b1 (pp) Cd52", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 6.66317E-6, "weight" : 0.509451132763, "fusion" : "NA", "name" : "Cyp7b1 (pp) Cd52", "neighborhood" : "NA", "sourceEdge" : 900042.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cyp7b1 (pp) Cd52", "combinedscore" : "NA", "SUID" : 649660, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "649626", "source" : "588358", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Snn", "weight" : 0.546457712025, "name" : "Cyp7b1 (pp) Snn", "shared_name" : "Cyp7b1 (pp) Snn", "SUID" : 649626, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649593", "source" : "588358", "target" : "588461", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Tbxas1", "weight" : 0.42667870621, "name" : "Cyp7b1 (pp) Tbxas1", "shared_name" : "Cyp7b1 (pp) Tbxas1", "SUID" : 649593, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649590", "source" : "588358", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Cd63", "weight" : 0.760484800029, "name" : "Cyp7b1 (pp) Cd63", "shared_name" : "Cyp7b1 (pp) Cd63", "SUID" : 649590, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649680", "source" : "588358", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Tmem86a", "weight" : 0.607641929254, "name" : "Cyp7b1 (pp) Tmem86a", "shared_name" : "Cyp7b1 (pp) Tmem86a", "SUID" : 649680, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649816", "source" : "588358", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyp7b1 (pp) Clec7a", "weight" : 0.512324953764, "name" : "Cyp7b1 (pp) Clec7a", "shared_name" : "Cyp7b1 (pp) Clec7a", "SUID" : 649816, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640471", "source" : "588244", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Vcam1", "weight" : 0.475811803864, "name" : "Gltp (pp) Vcam1", "shared_name" : "Gltp (pp) Vcam1", "SUID" : 640471, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640505", "source" : "588244", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.573880916865, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Gltp (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.573880916865, "fusion" : "NA", "name" : "Gltp (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 84772.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Gltp (pp) Ear4", "combinedscore" : "NA", "SUID" : 640505, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 3.271778E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "640351", "source" : "588244", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Clec4n", "weight" : 0.673800840582, "name" : "Gltp (pp) Clec4n", "shared_name" : "Gltp (pp) Clec4n", "SUID" : 640351, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640322", "source" : "588244", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Ms4a6d", "weight" : 0.518029545626, "name" : "Gltp (pp) Ms4a6d", "shared_name" : "Gltp (pp) Ms4a6d", "SUID" : 640322, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640399", "source" : "588244", "target" : "588664", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.502705906924, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Gltp (pp) 5033414D02Rik", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.502705906924, "fusion" : "NA", "name" : "Gltp (pp) 5033414D02Rik", "neighborhood" : "NA", "sourceEdge" : 84717.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Gltp (pp) 5033414D02Rik", "combinedscore" : "NA", "SUID" : 640399, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 1.159633E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "640509", "source" : "588244", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) C1qb", "weight" : 0.596295452964, "name" : "Gltp (pp) C1qb", "shared_name" : "Gltp (pp) C1qb", "SUID" : 640509, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640463", "source" : "588244", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Cfp", "weight" : 0.597642483881, "name" : "Gltp (pp) Cfp", "shared_name" : "Gltp (pp) Cfp", "SUID" : 640463, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640361", "source" : "588244", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Plscr1", "weight" : 0.438789463082, "name" : "Gltp (pp) Plscr1", "shared_name" : "Gltp (pp) Plscr1", "SUID" : 640361, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640404", "source" : "588244", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Cd52", "weight" : 0.580747298992, "name" : "Gltp (pp) Cd52", "shared_name" : "Gltp (pp) Cd52", "SUID" : 640404, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640503", "source" : "588244", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Clec7a", "weight" : 0.451258504164, "name" : "Gltp (pp) Clec7a", "shared_name" : "Gltp (pp) Clec7a", "SUID" : 640503, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640408", "source" : "588244", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Tlr2", "weight" : 0.572021678327, "name" : "Gltp (pp) Tlr2", "shared_name" : "Gltp (pp) Tlr2", "SUID" : 640408, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640475", "source" : "588244", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Tmsb4x", "weight" : 0.64747984929, "name" : "Gltp (pp) Tmsb4x", "shared_name" : "Gltp (pp) Tmsb4x", "SUID" : 640475, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640498", "source" : "588244", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Ear12", "weight" : 0.502900852164, "name" : "Gltp (pp) Ear12", "shared_name" : "Gltp (pp) Ear12", "SUID" : 640498, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640507", "source" : "588244", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Prkcd", "weight" : 0.483998332645, "name" : "Gltp (pp) Prkcd", "shared_name" : "Gltp (pp) Prkcd", "SUID" : 640507, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640387", "source" : "588244", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Gngt2", "weight" : 0.666839360777, "name" : "Gltp (pp) Gngt2", "shared_name" : "Gltp (pp) Gngt2", "SUID" : 640387, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640315", "source" : "588244", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Sdc3", "weight" : 0.54894670365, "name" : "Gltp (pp) Sdc3", "shared_name" : "Gltp (pp) Sdc3", "SUID" : 640315, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640428", "source" : "588244", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Fcer1g", "weight" : 0.568723584011, "name" : "Gltp (pp) Fcer1g", "shared_name" : "Gltp (pp) Fcer1g", "SUID" : 640428, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640510", "source" : "588244", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Fblim1", "weight" : 0.544706388975, "name" : "Gltp (pp) Fblim1", "shared_name" : "Gltp (pp) Fblim1", "SUID" : 640510, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640454", "source" : "588244", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Csrp1", "weight" : 0.605783626836, "name" : "Gltp (pp) Csrp1", "shared_name" : "Gltp (pp) Csrp1", "SUID" : 640454, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640394", "source" : "588244", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Gpnmb", "weight" : 0.47326235083, "name" : "Gltp (pp) Gpnmb", "shared_name" : "Gltp (pp) Gpnmb", "SUID" : 640394, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640441", "source" : "588244", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Cytip", "weight" : 0.58065805116, "name" : "Gltp (pp) Cytip", "shared_name" : "Gltp (pp) Cytip", "SUID" : 640441, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640409", "source" : "588244", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Axl", "weight" : 0.495948436267, "name" : "Gltp (pp) Axl", "shared_name" : "Gltp (pp) Axl", "SUID" : 640409, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640440", "source" : "588244", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Hk3", "weight" : 0.558875983627, "name" : "Gltp (pp) Hk3", "shared_name" : "Gltp (pp) Hk3", "SUID" : 640440, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640384", "source" : "588244", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Tmsb10", "weight" : 0.532317986532, "name" : "Gltp (pp) Tmsb10", "shared_name" : "Gltp (pp) Tmsb10", "SUID" : 640384, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640461", "source" : "588244", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Btk", "weight" : 0.453805688096, "name" : "Gltp (pp) Btk", "shared_name" : "Gltp (pp) Btk", "SUID" : 640461, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640381", "source" : "588244", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Snn", "weight" : 0.449201837749, "name" : "Gltp (pp) Snn", "shared_name" : "Gltp (pp) Snn", "SUID" : 640381, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640439", "source" : "588244", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) C1qc", "weight" : 0.530104474892, "name" : "Gltp (pp) C1qc", "shared_name" : "Gltp (pp) C1qc", "SUID" : 640439, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640426", "source" : "588244", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Plac8", "weight" : 0.590567803208, "name" : "Gltp (pp) Plac8", "shared_name" : "Gltp (pp) Plac8", "SUID" : 640426, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640385", "source" : "588244", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Slc11a1", "weight" : 0.658546329156, "name" : "Gltp (pp) Slc11a1", "shared_name" : "Gltp (pp) Slc11a1", "SUID" : 640385, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640363", "source" : "588244", "target" : "588492", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Ncf4", "weight" : 0.459799990282, "name" : "Gltp (pp) Ncf4", "shared_name" : "Gltp (pp) Ncf4", "SUID" : 640363, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640407", "source" : "588244", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Serpina3g", "weight" : 0.443585299061, "name" : "Gltp (pp) Serpina3g", "shared_name" : "Gltp (pp) Serpina3g", "SUID" : 640407, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640353", "source" : "588244", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Cd63", "weight" : 0.498584584695, "name" : "Gltp (pp) Cd63", "shared_name" : "Gltp (pp) Cd63", "SUID" : 640353, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640490", "source" : "588244", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) H2-DMa", "weight" : 0.488351689568, "name" : "Gltp (pp) H2-DMa", "shared_name" : "Gltp (pp) H2-DMa", "SUID" : 640490, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640412", "source" : "588244", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Vsig4", "weight" : 0.563563398471, "name" : "Gltp (pp) Vsig4", "shared_name" : "Gltp (pp) Vsig4", "SUID" : 640412, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640329", "source" : "588244", "target" : "588313", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Zfp90", "weight" : 0.450751722519, "name" : "Gltp (pp) Zfp90", "shared_name" : "Gltp (pp) Zfp90", "SUID" : 640329, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640421", "source" : "588244", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Obrgrp", "weight" : 0.472146012451, "name" : "Gltp (pp) Obrgrp", "shared_name" : "Gltp (pp) Obrgrp", "SUID" : 640421, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640411", "source" : "588244", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Tpm4", "weight" : 0.598655178569, "name" : "Gltp (pp) Tpm4", "shared_name" : "Gltp (pp) Tpm4", "SUID" : 640411, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640500", "source" : "588244", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Fcgr4", "weight" : 0.528941776435, "name" : "Gltp (pp) Fcgr4", "shared_name" : "Gltp (pp) Fcgr4", "SUID" : 640500, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640451", "source" : "588244", "target" : "588999", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Kctd12", "weight" : 0.545482046474, "name" : "Gltp (pp) Kctd12", "shared_name" : "Gltp (pp) Kctd12", "SUID" : 640451, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640383", "source" : "588244", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Coro1a", "weight" : 0.657135422152, "name" : "Gltp (pp) Coro1a", "shared_name" : "Gltp (pp) Coro1a", "SUID" : 640383, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640346", "source" : "588244", "target" : "588394", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Lyzs", "weight" : 0.576939414409, "name" : "Gltp (pp) Lyzs", "shared_name" : "Gltp (pp) Lyzs", "SUID" : 640346, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640377", "source" : "588244", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Cd86", "weight" : 0.537408466348, "name" : "Gltp (pp) Cd86", "shared_name" : "Gltp (pp) Cd86", "SUID" : 640377, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640340", "source" : "588244", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Cyp7b1", "weight" : 0.430811831814, "name" : "Gltp (pp) Cyp7b1", "shared_name" : "Gltp (pp) Cyp7b1", "SUID" : 640340, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640414", "source" : "588244", "target" : "588742", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Ifitm6", "weight" : 0.47755849764, "name" : "Gltp (pp) Ifitm6", "shared_name" : "Gltp (pp) Ifitm6", "SUID" : 640414, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640316", "source" : "588244", "target" : "588254", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Irf8", "weight" : 0.582452333105, "name" : "Gltp (pp) Irf8", "shared_name" : "Gltp (pp) Irf8", "SUID" : 640316, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640512", "source" : "588244", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Lrrc33", "weight" : 0.408583735574, "name" : "Gltp (pp) Lrrc33", "shared_name" : "Gltp (pp) Lrrc33", "SUID" : 640512, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640317", "source" : "588244", "target" : "588257", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Sdcbp", "weight" : 0.44194804667, "name" : "Gltp (pp) Sdcbp", "shared_name" : "Gltp (pp) Sdcbp", "SUID" : 640317, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640508", "source" : "588244", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Ly86", "weight" : 0.648733908207, "name" : "Gltp (pp) Ly86", "shared_name" : "Gltp (pp) Ly86", "SUID" : 640508, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640491", "source" : "588244", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Ear10", "weight" : 0.415959680982, "name" : "Gltp (pp) Ear10", "shared_name" : "Gltp (pp) Ear10", "SUID" : 640491, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640486", "source" : "588244", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Serpinb6a", "weight" : 0.556440269331, "name" : "Gltp (pp) Serpinb6a", "shared_name" : "Gltp (pp) Serpinb6a", "SUID" : 640486, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640425", "source" : "588244", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Cotl1", "weight" : 0.493924546549, "name" : "Gltp (pp) Cotl1", "shared_name" : "Gltp (pp) Cotl1", "SUID" : 640425, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640352", "source" : "588244", "target" : "588432", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Kcnk6", "weight" : 0.413300098607, "name" : "Gltp (pp) Kcnk6", "shared_name" : "Gltp (pp) Kcnk6", "SUID" : 640352, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640514", "source" : "588244", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Lmo2", "weight" : 0.541402307665, "name" : "Gltp (pp) Lmo2", "shared_name" : "Gltp (pp) Lmo2", "SUID" : 640514, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640417", "source" : "588244", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Slc15a3", "weight" : 0.677587730039, "name" : "Gltp (pp) Slc15a3", "shared_name" : "Gltp (pp) Slc15a3", "SUID" : 640417, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640344", "source" : "588244", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Selplg", "weight" : 0.593543177535, "name" : "Gltp (pp) Selplg", "shared_name" : "Gltp (pp) Selplg", "SUID" : 640344, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640434", "source" : "588244", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Lgals3", "weight" : 0.5839107537, "name" : "Gltp (pp) Lgals3", "shared_name" : "Gltp (pp) Lgals3", "SUID" : 640434, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640348", "source" : "588244", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Cd14", "weight" : 0.501767820093, "name" : "Gltp (pp) Cd14", "shared_name" : "Gltp (pp) Cd14", "SUID" : 640348, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640327", "source" : "588244", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Cxcl16", "weight" : 0.650374320204, "name" : "Gltp (pp) Cxcl16", "shared_name" : "Gltp (pp) Cxcl16", "SUID" : 640327, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640497", "source" : "588244", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Abi3", "weight" : 0.400512336753, "name" : "Gltp (pp) Abi3", "shared_name" : "Gltp (pp) Abi3", "SUID" : 640497, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640342", "source" : "588244", "target" : "588365", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Tnfaip8l2", "weight" : 0.486706461948, "name" : "Gltp (pp) Tnfaip8l2", "shared_name" : "Gltp (pp) Tnfaip8l2", "SUID" : 640342, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640502", "source" : "588244", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gltp (pp) Cd53", "weight" : 0.475057177141, "name" : "Gltp (pp) Cd53", "shared_name" : "Gltp (pp) Cd53", "SUID" : 640502, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663798", "source" : "588581", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Clec7a", "weight" : 0.483523624053, "name" : "Snn (pp) Clec7a", "shared_name" : "Snn (pp) Clec7a", "SUID" : 663798, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663804", "source" : "588581", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Prkcd", "weight" : 0.412930622559, "name" : "Snn (pp) Prkcd", "shared_name" : "Snn (pp) Prkcd", "SUID" : 663804, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663677", "source" : "588581", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Obrgrp", "weight" : 0.53644657106, "name" : "Snn (pp) Obrgrp", "shared_name" : "Snn (pp) Obrgrp", "SUID" : 663677, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663639", "source" : "588581", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Gpnmb", "weight" : 0.597923432685, "name" : "Snn (pp) Gpnmb", "shared_name" : "Snn (pp) Gpnmb", "SUID" : 663639, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663699", "source" : "588581", "target" : "588886", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.610774693594, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Snn (pp) Lgals3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.610774693594, "fusion" : "NA", "name" : "Snn (pp) Lgals3", "neighborhood" : "NA", "sourceEdge" : 120049.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Snn (pp) Lgals3", "combinedscore" : "NA", "SUID" : 663699, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "FALSE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.007245414, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "663739", "source" : "588581", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Btk", "weight" : 0.544751478402, "name" : "Snn (pp) Btk", "shared_name" : "Snn (pp) Btk", "SUID" : 663739, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663653", "source" : "588581", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Cd52", "weight" : 0.433404479005, "name" : "Snn (pp) Cd52", "shared_name" : "Snn (pp) Cd52", "SUID" : 663653, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663670", "source" : "588581", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Slc15a3", "weight" : 0.622007832312, "name" : "Snn (pp) Slc15a3", "shared_name" : "Snn (pp) Slc15a3", "SUID" : 663670, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663665", "source" : "588581", "target" : "588742", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Ifitm6", "weight" : 0.458017558787, "name" : "Snn (pp) Ifitm6", "shared_name" : "Snn (pp) Ifitm6", "SUID" : 663665, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663681", "source" : "588581", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Pla2g15", "weight" : 0.509747305766, "name" : "Snn (pp) Pla2g15", "shared_name" : "Snn (pp) Pla2g15", "SUID" : 663681, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663622", "source" : "588581", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Coro1a", "weight" : 0.442987833682, "name" : "Snn (pp) Coro1a", "shared_name" : "Snn (pp) Coro1a", "SUID" : 663622, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663690", "source" : "588581", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Fcer1g", "weight" : 0.467643679303, "name" : "Snn (pp) Fcer1g", "shared_name" : "Snn (pp) Fcer1g", "SUID" : 663690, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663662", "source" : "588581", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Vsig4", "weight" : 0.488340568172, "name" : "Snn (pp) Vsig4", "shared_name" : "Snn (pp) Vsig4", "SUID" : 663662, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663806", "source" : "588581", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Ly86", "weight" : 0.442729673659, "name" : "Snn (pp) Ly86", "shared_name" : "Snn (pp) Ly86", "SUID" : 663806, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663725", "source" : "588581", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Csrp1", "weight" : 0.502577775762, "name" : "Snn (pp) Csrp1", "shared_name" : "Snn (pp) Csrp1", "SUID" : 663725, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663656", "source" : "588581", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) 6330416G13Rik", "weight" : 0.408440157197, "name" : "Snn (pp) 6330416G13Rik", "shared_name" : "Snn (pp) 6330416G13Rik", "SUID" : 663656, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663685", "source" : "588581", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Cotl1", "weight" : 0.583953038807, "name" : "Snn (pp) Cotl1", "shared_name" : "Snn (pp) Cotl1", "SUID" : 663685, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663791", "source" : "588581", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Abi3", "weight" : 0.552950884208, "name" : "Snn (pp) Abi3", "shared_name" : "Snn (pp) Abi3", "SUID" : 663791, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663777", "source" : "588581", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Serpinb6a", "weight" : 0.587186785977, "name" : "Snn (pp) Serpinb6a", "shared_name" : "Snn (pp) Serpinb6a", "SUID" : 663777, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663659", "source" : "588581", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Axl", "weight" : 0.543214451548, "name" : "Snn (pp) Axl", "shared_name" : "Snn (pp) Axl", "SUID" : 663659, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663821", "source" : "588581", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Il10ra", "weight" : 0.420805546872, "name" : "Snn (pp) Il10ra", "shared_name" : "Snn (pp) Il10ra", "SUID" : 663821, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663765", "source" : "588581", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Rasgrp1", "weight" : 0.486762096781, "name" : "Snn (pp) Rasgrp1", "shared_name" : "Snn (pp) Rasgrp1", "SUID" : 663765, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663672", "source" : "588581", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) 5430435G22Rik", "weight" : 0.46462623735, "name" : "Snn (pp) 5430435G22Rik", "shared_name" : "Snn (pp) 5430435G22Rik", "SUID" : 663672, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663794", "source" : "588581", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Fcgr4", "weight" : 0.452503621035, "name" : "Snn (pp) Fcgr4", "shared_name" : "Snn (pp) Fcgr4", "SUID" : 663794, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663753", "source" : "588581", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Vcam1", "weight" : 0.556892687118, "name" : "Snn (pp) Vcam1", "shared_name" : "Snn (pp) Vcam1", "SUID" : 663753, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663646", "source" : "588581", "target" : "588664", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.597690118462, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Snn (pp) 5033414D02Rik", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.597690118462, "fusion" : "NA", "name" : "Snn (pp) 5033414D02Rik", "neighborhood" : "NA", "sourceEdge" : 120025.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Snn (pp) 5033414D02Rik", "combinedscore" : "NA", "SUID" : 663646, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 1.837186E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "663814", "source" : "588581", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Lmo2", "weight" : 0.442531841439, "name" : "Snn (pp) Lmo2", "shared_name" : "Snn (pp) Lmo2", "SUID" : 663814, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663792", "source" : "588581", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Ear12", "weight" : 0.435770792146, "name" : "Snn (pp) Ear12", "shared_name" : "Snn (pp) Ear12", "SUID" : 663792, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663688", "source" : "588581", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Plac8", "weight" : 0.49718216171, "name" : "Snn (pp) Plac8", "shared_name" : "Snn (pp) Plac8", "SUID" : 663688, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663812", "source" : "588581", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Lrrc33", "weight" : 0.497031175613, "name" : "Snn (pp) Lrrc33", "shared_name" : "Snn (pp) Lrrc33", "SUID" : 663812, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663658", "source" : "588581", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Tlr2", "weight" : 0.456660502633, "name" : "Snn (pp) Tlr2", "shared_name" : "Snn (pp) Tlr2", "SUID" : 663658, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663789", "source" : "588581", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Ppif", "weight" : 0.560307296627, "name" : "Snn (pp) Ppif", "shared_name" : "Snn (pp) Ppif", "SUID" : 663789, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663779", "source" : "588581", "target" : "589225", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) St6gal1", "weight" : 0.516179104975, "name" : "Snn (pp) St6gal1", "shared_name" : "Snn (pp) St6gal1", "SUID" : 663779, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663741", "source" : "588581", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Cfp", "weight" : 0.57599056564, "name" : "Snn (pp) Cfp", "shared_name" : "Snn (pp) Cfp", "SUID" : 663741, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663786", "source" : "588581", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Trem2", "weight" : 0.506752291717, "name" : "Snn (pp) Trem2", "shared_name" : "Snn (pp) Trem2", "SUID" : 663786, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663802", "source" : "588581", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.634648815017, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Snn (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.634648815017, "fusion" : "NA", "name" : "Snn (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 120080.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Snn (pp) Ear4", "combinedscore" : "NA", "SUID" : 663802, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 4.519612E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "663625", "source" : "588581", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Slc11a1", "weight" : 0.489923712956, "name" : "Snn (pp) Slc11a1", "shared_name" : "Snn (pp) Slc11a1", "SUID" : 663625, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663647", "source" : "588581", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) D12Ertd553e", "weight" : 0.44046328561, "name" : "Snn (pp) D12Ertd553e", "shared_name" : "Snn (pp) D12Ertd553e", "SUID" : 663647, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663782", "source" : "588581", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Ear10", "weight" : 0.445009665556, "name" : "Snn (pp) Ear10", "shared_name" : "Snn (pp) Ear10", "SUID" : 663782, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663808", "source" : "588581", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) C1qb", "weight" : 0.519603762938, "name" : "Snn (pp) C1qb", "shared_name" : "Snn (pp) C1qb", "SUID" : 663808, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663709", "source" : "588581", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Cytip", "weight" : 0.549467621881, "name" : "Snn (pp) Cytip", "shared_name" : "Snn (pp) Cytip", "SUID" : 663709, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663674", "source" : "588581", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Tmem86a", "weight" : 0.615150480058, "name" : "Snn (pp) Tmem86a", "shared_name" : "Snn (pp) Tmem86a", "SUID" : 663674, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "663627", "source" : "588581", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snn (pp) Gngt2", "weight" : 0.524052461136, "name" : "Snn (pp) Gngt2", "shared_name" : "Snn (pp) Gngt2", "SUID" : 663627, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "628962", "source" : "588113", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tgfbr2 (pp) Cd14", "weight" : 0.40060143943, "name" : "Tgfbr2 (pp) Cd14", "shared_name" : "Tgfbr2 (pp) Cd14", "SUID" : 628962, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "629038", "source" : "588113", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tgfbr2 (pp) Vcam1", "weight" : 0.466202919986, "name" : "Tgfbr2 (pp) Vcam1", "shared_name" : "Tgfbr2 (pp) Vcam1", "SUID" : 629038, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "629030", "source" : "588113", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tgfbr2 (pp) Csrp1", "weight" : 0.455442170396, "name" : "Tgfbr2 (pp) Csrp1", "shared_name" : "Tgfbr2 (pp) Csrp1", "SUID" : 629030, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "628964", "source" : "588113", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tgfbr2 (pp) Cd63", "weight" : 0.449042264943, "name" : "Tgfbr2 (pp) Cd63", "shared_name" : "Tgfbr2 (pp) Cd63", "SUID" : 628964, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "628960", "source" : "588113", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tgfbr2 (pp) Cyp7b1", "weight" : 0.449463361664, "name" : "Tgfbr2 (pp) Cyp7b1", "shared_name" : "Tgfbr2 (pp) Cyp7b1", "SUID" : 628960, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "628930", "source" : "588113", "target" : "588147", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tgfbr2 (pp) Ppic", "weight" : 0.40692894166, "name" : "Tgfbr2 (pp) Ppic", "shared_name" : "Tgfbr2 (pp) Ppic", "SUID" : 628930, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "629050", "source" : "588113", "target" : "589225", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tgfbr2 (pp) St6gal1", "weight" : 0.472005607864, "name" : "Tgfbr2 (pp) St6gal1", "shared_name" : "Tgfbr2 (pp) St6gal1", "SUID" : 629050, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "628942", "source" : "588113", "target" : "588242", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tgfbr2 (pp) Cd83", "weight" : 0.503727568494, "name" : "Tgfbr2 (pp) Cd83", "shared_name" : "Tgfbr2 (pp) Cd83", "SUID" : 628942, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "629014", "source" : "588113", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tgfbr2 (pp) Cotl1", "weight" : 0.449825347724, "name" : "Tgfbr2 (pp) Cotl1", "shared_name" : "Tgfbr2 (pp) Cotl1", "SUID" : 629014, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "628969", "source" : "588113", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tgfbr2 (pp) Plscr1", "weight" : 0.415958160127, "name" : "Tgfbr2 (pp) Plscr1", "shared_name" : "Tgfbr2 (pp) Plscr1", "SUID" : 628969, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "629049", "source" : "588113", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tgfbr2 (pp) Serpinb6a", "weight" : 0.41975584432, "name" : "Tgfbr2 (pp) Serpinb6a", "shared_name" : "Tgfbr2 (pp) Serpinb6a", "SUID" : 629049, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681457", "source" : "589030", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Soat1 (pp) Serpinb6a", "weight" : 0.433993665436, "name" : "Soat1 (pp) Serpinb6a", "shared_name" : "Soat1 (pp) Serpinb6a", "SUID" : 681457, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681436", "source" : "589030", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Soat1 (pp) Cfp", "weight" : 0.421150965594, "name" : "Soat1 (pp) Cfp", "shared_name" : "Soat1 (pp) Cfp", "SUID" : 681436, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681461", "source" : "589030", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Soat1 (pp) Ear10", "weight" : 0.582601891579, "name" : "Soat1 (pp) Ear10", "shared_name" : "Soat1 (pp) Ear10", "SUID" : 681461, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681463", "source" : "589030", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Soat1 (pp) Trem2", "weight" : 0.496178902211, "name" : "Soat1 (pp) Trem2", "shared_name" : "Soat1 (pp) Trem2", "SUID" : 681463, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681446", "source" : "589030", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Soat1 (pp) Tmsb4x", "weight" : 0.449212680348, "name" : "Soat1 (pp) Tmsb4x", "shared_name" : "Soat1 (pp) Tmsb4x", "SUID" : 681446, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681473", "source" : "589030", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Soat1 (pp) Ear4", "weight" : 0.431543919941, "name" : "Soat1 (pp) Ear4", "shared_name" : "Soat1 (pp) Ear4", "SUID" : 681473, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681472", "source" : "589030", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Soat1 (pp) Clec7a", "weight" : 0.532657219817, "name" : "Soat1 (pp) Clec7a", "shared_name" : "Soat1 (pp) Clec7a", "SUID" : 681472, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681468", "source" : "589030", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Soat1 (pp) Ear12", "weight" : 0.519183354118, "name" : "Soat1 (pp) Ear12", "shared_name" : "Soat1 (pp) Ear12", "SUID" : 681468, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681477", "source" : "589030", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Soat1 (pp) Ly86", "weight" : 0.443111857022, "name" : "Soat1 (pp) Ly86", "shared_name" : "Soat1 (pp) Ly86", "SUID" : 681477, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681442", "source" : "589030", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Soat1 (pp) Vcam1", "weight" : 0.437901556898, "name" : "Soat1 (pp) Vcam1", "shared_name" : "Soat1 (pp) Vcam1", "SUID" : 681442, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681471", "source" : "589030", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Soat1 (pp) Cd53", "weight" : 0.577256765885, "name" : "Soat1 (pp) Cd53", "shared_name" : "Soat1 (pp) Cd53", "SUID" : 681471, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681438", "source" : "589030", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Soat1 (pp) Snx10", "weight" : 0.491984460831, "name" : "Soat1 (pp) Snx10", "shared_name" : "Soat1 (pp) Snx10", "SUID" : 681438, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596106", "source" : "587759", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Hk3", "weight" : 0.5591666506, "name" : "Rab8b (pp) Hk3", "shared_name" : "Rab8b (pp) Hk3", "SUID" : 596106, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595912", "source" : "587759", "target" : "587982", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Plekho2", "weight" : 0.484386961714, "name" : "Rab8b (pp) Plekho2", "shared_name" : "Rab8b (pp) Plekho2", "SUID" : 595912, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596013", "source" : "587759", "target" : "588439", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Vim", "weight" : 0.414987270671, "name" : "Rab8b (pp) Vim", "shared_name" : "Rab8b (pp) Vim", "SUID" : 596013, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596020", "source" : "587759", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Plscr1", "weight" : 0.446740786843, "name" : "Rab8b (pp) Plscr1", "shared_name" : "Rab8b (pp) Plscr1", "SUID" : 596020, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595945", "source" : "587759", "target" : "588151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Ccl4", "weight" : 0.448037944011, "name" : "Rab8b (pp) Ccl4", "shared_name" : "Rab8b (pp) Ccl4", "SUID" : 595945, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596156", "source" : "587759", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Serpinb6a", "weight" : 0.566879566979, "name" : "Rab8b (pp) Serpinb6a", "shared_name" : "Rab8b (pp) Serpinb6a", "SUID" : 596156, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596082", "source" : "587759", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Tmem86a", "weight" : 0.540609925271, "name" : "Rab8b (pp) Tmem86a", "shared_name" : "Rab8b (pp) Tmem86a", "SUID" : 596082, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596041", "source" : "587759", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Coro1a", "weight" : 0.583295743068, "name" : "Rab8b (pp) Coro1a", "shared_name" : "Rab8b (pp) Coro1a", "SUID" : 596041, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595959", "source" : "587759", "target" : "588227", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Gbp2", "weight" : 0.405365020015, "name" : "Rab8b (pp) Gbp2", "shared_name" : "Rab8b (pp) Gbp2", "SUID" : 595959, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596169", "source" : "587759", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Abi3", "weight" : 0.43229358861, "name" : "Rab8b (pp) Abi3", "shared_name" : "Rab8b (pp) Abi3", "SUID" : 596169, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596123", "source" : "587759", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Csrp1", "weight" : 0.585655877814, "name" : "Rab8b (pp) Csrp1", "shared_name" : "Rab8b (pp) Csrp1", "SUID" : 596123, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596191", "source" : "587759", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Il10ra", "weight" : 0.488692690709, "name" : "Rab8b (pp) Il10ra", "shared_name" : "Rab8b (pp) Il10ra", "SUID" : 596191, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596099", "source" : "587759", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Lgals3", "weight" : 0.595033313779, "name" : "Rab8b (pp) Lgals3", "shared_name" : "Rab8b (pp) Lgals3", "SUID" : 596099, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596181", "source" : "587759", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) C1qb", "weight" : 0.562697937953, "name" : "Rab8b (pp) C1qb", "shared_name" : "Rab8b (pp) C1qb", "SUID" : 596181, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595929", "source" : "587759", "target" : "588069", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) A430084P05Rik", "weight" : 0.418268300371, "name" : "Rab8b (pp) A430084P05Rik", "shared_name" : "Rab8b (pp) A430084P05Rik", "SUID" : 595929, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596021", "source" : "587759", "target" : "588490", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Arhgap30", "weight" : 0.57586618082, "name" : "Rab8b (pp) Arhgap30", "shared_name" : "Rab8b (pp) Arhgap30", "SUID" : 596021, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595890", "source" : "587759", "target" : "587855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Pkm2", "weight" : 0.439231462359, "name" : "Rab8b (pp) Pkm2", "shared_name" : "Rab8b (pp) Pkm2", "SUID" : 595890, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596144", "source" : "587759", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Tmsb4x", "weight" : 0.434120783093, "name" : "Rab8b (pp) Tmsb4x", "shared_name" : "Rab8b (pp) Tmsb4x", "SUID" : 596144, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596060", "source" : "587759", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) 5033414D02Rik", "weight" : 0.68067413624, "name" : "Rab8b (pp) 5033414D02Rik", "shared_name" : "Rab8b (pp) 5033414D02Rik", "SUID" : 596060, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595878", "source" : "587759", "target" : "587798", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Ccnd1", "weight" : 0.569394019757, "name" : "Rab8b (pp) Ccnd1", "shared_name" : "Rab8b (pp) Ccnd1", "SUID" : 595878, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595982", "source" : "587759", "target" : "588313", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Zfp90", "weight" : 0.525744648097, "name" : "Rab8b (pp) Zfp90", "shared_name" : "Rab8b (pp) Zfp90", "SUID" : 595982, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595998", "source" : "587759", "target" : "588365", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Tnfaip8l2", "weight" : 0.420823695637, "name" : "Rab8b (pp) Tnfaip8l2", "shared_name" : "Rab8b (pp) Tnfaip8l2", "SUID" : 595998, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595900", "source" : "587759", "target" : "587919", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Mefv", "weight" : 0.447281674888, "name" : "Rab8b (pp) Mefv", "shared_name" : "Rab8b (pp) Mefv", "SUID" : 595900, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596019", "source" : "587759", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Renbp", "weight" : 0.424220657773, "name" : "Rab8b (pp) Renbp", "shared_name" : "Rab8b (pp) Renbp", "SUID" : 596019, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596140", "source" : "587759", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Vcam1", "weight" : 0.599428178, "name" : "Rab8b (pp) Vcam1", "shared_name" : "Rab8b (pp) Vcam1", "SUID" : 596140, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596055", "source" : "587759", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Gpnmb", "weight" : 0.634094767909, "name" : "Rab8b (pp) Gpnmb", "shared_name" : "Rab8b (pp) Gpnmb", "SUID" : 596055, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596046", "source" : "587759", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Gngt2", "weight" : 0.613696395478, "name" : "Rab8b (pp) Gngt2", "shared_name" : "Rab8b (pp) Gngt2", "SUID" : 596046, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596180", "source" : "587759", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Ly86", "weight" : 0.507131061054, "name" : "Rab8b (pp) Ly86", "shared_name" : "Rab8b (pp) Ly86", "SUID" : 596180, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595962", "source" : "587759", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Laptm5", "weight" : 0.618627322783, "name" : "Rab8b (pp) Laptm5", "shared_name" : "Rab8b (pp) Laptm5", "SUID" : 595962, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596084", "source" : "587759", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Obrgrp", "weight" : 0.689426758552, "name" : "Rab8b (pp) Obrgrp", "shared_name" : "Rab8b (pp) Obrgrp", "SUID" : 596084, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596088", "source" : "587759", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Pla2g15", "weight" : 0.430190221992, "name" : "Rab8b (pp) Pla2g15", "shared_name" : "Rab8b (pp) Pla2g15", "SUID" : 596088, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596042", "source" : "587759", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Tmsb10", "weight" : 0.455838439957, "name" : "Rab8b (pp) Tmsb10", "shared_name" : "Rab8b (pp) Tmsb10", "SUID" : 596042, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596184", "source" : "587759", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Tspan33", "weight" : 0.457501142097, "name" : "Rab8b (pp) Tspan33", "shared_name" : "Rab8b (pp) Tspan33", "SUID" : 596184, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596007", "source" : "587759", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Cd14", "weight" : 0.585558116095, "name" : "Rab8b (pp) Cd14", "shared_name" : "Rab8b (pp) Cd14", "SUID" : 596007, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596039", "source" : "587759", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Snn", "weight" : 0.600438167079, "name" : "Rab8b (pp) Snn", "shared_name" : "Rab8b (pp) Snn", "SUID" : 596039, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596170", "source" : "587759", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Ear12", "weight" : 0.475361989253, "name" : "Rab8b (pp) Ear12", "shared_name" : "Rab8b (pp) Ear12", "SUID" : 596170, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596093", "source" : "587759", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Fcer1g", "weight" : 0.614875754134, "name" : "Rab8b (pp) Fcer1g", "shared_name" : "Rab8b (pp) Fcer1g", "SUID" : 596093, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595940", "source" : "587759", "target" : "588134", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Mlkl", "weight" : 0.50262523181, "name" : "Rab8b (pp) Mlkl", "shared_name" : "Rab8b (pp) Mlkl", "SUID" : 595940, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595935", "source" : "587759", "target" : "588104", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Bmp1", "weight" : 0.480272812507, "name" : "Rab8b (pp) Bmp1", "shared_name" : "Rab8b (pp) Bmp1", "SUID" : 595935, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595966", "source" : "587759", "target" : "588244", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Gltp", "weight" : 0.537249058006, "name" : "Rab8b (pp) Gltp", "shared_name" : "Rab8b (pp) Gltp", "SUID" : 595966, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595884", "source" : "587759", "target" : "587818", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Ifi30", "weight" : 0.506618046068, "name" : "Rab8b (pp) Ifi30", "shared_name" : "Rab8b (pp) Ifi30", "SUID" : 595884, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595897", "source" : "587759", "target" : "587881", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Vav1", "weight" : 0.547484022501, "name" : "Rab8b (pp) Vav1", "shared_name" : "Rab8b (pp) Vav1", "SUID" : 595897, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595875", "source" : "587759", "target" : "587783", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Marcks", "weight" : 0.557247884106, "name" : "Rab8b (pp) Marcks", "shared_name" : "Rab8b (pp) Marcks", "SUID" : 595875, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596014", "source" : "587759", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Cd63", "weight" : 0.641648336643, "name" : "Rab8b (pp) Cd63", "shared_name" : "Rab8b (pp) Cd63", "SUID" : 596014, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596011", "source" : "587759", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Clec4n", "weight" : 0.640412201997, "name" : "Rab8b (pp) Clec4n", "shared_name" : "Rab8b (pp) Clec4n", "SUID" : 596011, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596001", "source" : "587759", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Selplg", "weight" : 0.565671680516, "name" : "Rab8b (pp) Selplg", "shared_name" : "Rab8b (pp) Selplg", "SUID" : 596001, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596016", "source" : "587759", "target" : "588459", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Pop5", "weight" : 0.503926782135, "name" : "Rab8b (pp) Pop5", "shared_name" : "Rab8b (pp) Pop5", "SUID" : 596016, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596069", "source" : "587759", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Axl", "weight" : 0.680777626383, "name" : "Rab8b (pp) Axl", "shared_name" : "Rab8b (pp) Axl", "SUID" : 596069, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595967", "source" : "587759", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Sdc3", "weight" : 0.698194998781, "name" : "Rab8b (pp) Sdc3", "shared_name" : "Rab8b (pp) Sdc3", "SUID" : 595967, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596132", "source" : "587759", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Cfp", "weight" : 0.581837468934, "name" : "Rab8b (pp) Cfp", "shared_name" : "Rab8b (pp) Cfp", "SUID" : 596132, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596183", "source" : "587759", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Fblim1", "weight" : 0.441308850763, "name" : "Rab8b (pp) Fblim1", "shared_name" : "Rab8b (pp) Fblim1", "SUID" : 596183, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596051", "source" : "587759", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Casp1", "weight" : 0.495989169926, "name" : "Rab8b (pp) Casp1", "shared_name" : "Rab8b (pp) Casp1", "SUID" : 596051, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596079", "source" : "587759", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Slc15a3", "weight" : 0.744728068365, "name" : "Rab8b (pp) Slc15a3", "shared_name" : "Rab8b (pp) Slc15a3", "SUID" : 596079, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596035", "source" : "587759", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Cd86", "weight" : 0.525241745073, "name" : "Rab8b (pp) Cd86", "shared_name" : "Rab8b (pp) Cd86", "SUID" : 596035, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596177", "source" : "587759", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Ear4", "weight" : 0.609169934626, "name" : "Rab8b (pp) Ear4", "shared_name" : "Rab8b (pp) Ear4", "SUID" : 596177, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595877", "source" : "587759", "target" : "587790", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Sh3bgrl3", "weight" : 0.50971672346, "name" : "Rab8b (pp) Sh3bgrl3", "shared_name" : "Rab8b (pp) Sh3bgrl3", "SUID" : 595877, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596164", "source" : "587759", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Trem2", "weight" : 0.423668046505, "name" : "Rab8b (pp) Trem2", "shared_name" : "Rab8b (pp) Trem2", "SUID" : 596164, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596004", "source" : "587759", "target" : "588394", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Lyzs", "weight" : 0.449716565297, "name" : "Rab8b (pp) Lyzs", "shared_name" : "Rab8b (pp) Lyzs", "SUID" : 596004, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595881", "source" : "587759", "target" : "587807", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Evi2a", "weight" : 0.591174612477, "name" : "Rab8b (pp) Evi2a", "shared_name" : "Rab8b (pp) Evi2a", "SUID" : 595881, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596105", "source" : "587759", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) C1qc", "weight" : 0.402457166165, "name" : "Rab8b (pp) C1qc", "shared_name" : "Rab8b (pp) C1qc", "SUID" : 596105, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595939", "source" : "587759", "target" : "588127", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Lpxn", "weight" : 0.511954673073, "name" : "Rab8b (pp) Lpxn", "shared_name" : "Rab8b (pp) Lpxn", "SUID" : 595939, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596022", "source" : "587759", "target" : "588492", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Ncf4", "weight" : 0.412819298219, "name" : "Rab8b (pp) Ncf4", "shared_name" : "Rab8b (pp) Ncf4", "SUID" : 596022, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596187", "source" : "587759", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Lmo2", "weight" : 0.441830488945, "name" : "Rab8b (pp) Lmo2", "shared_name" : "Rab8b (pp) Lmo2", "SUID" : 596187, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596089", "source" : "587759", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Cotl1", "weight" : 0.589827156804, "name" : "Rab8b (pp) Cotl1", "shared_name" : "Rab8b (pp) Cotl1", "SUID" : 596089, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595956", "source" : "587759", "target" : "588212", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Anxa3", "weight" : 0.551272235576, "name" : "Rab8b (pp) Anxa3", "shared_name" : "Rab8b (pp) Anxa3", "SUID" : 595956, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595989", "source" : "587759", "target" : "588342", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Mfge8", "weight" : 0.548619610254, "name" : "Rab8b (pp) Mfge8", "shared_name" : "Rab8b (pp) Mfge8", "SUID" : 595989, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595888", "source" : "587759", "target" : "587844", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Ear2", "weight" : 0.632631657756, "name" : "Rab8b (pp) Ear2", "shared_name" : "Rab8b (pp) Ear2", "SUID" : 595888, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595908", "source" : "587759", "target" : "587966", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Cyba", "weight" : 0.534832888079, "name" : "Rab8b (pp) Cyba", "shared_name" : "Rab8b (pp) Cyba", "SUID" : 595908, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596067", "source" : "587759", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Serpina3g", "weight" : 0.55663118236, "name" : "Rab8b (pp) Serpina3g", "shared_name" : "Rab8b (pp) Serpina3g", "SUID" : 596067, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596068", "source" : "587759", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Tlr2", "weight" : 0.598394047703, "name" : "Rab8b (pp) Tlr2", "shared_name" : "Rab8b (pp) Tlr2", "SUID" : 596068, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595932", "source" : "587759", "target" : "588086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Iqgap1", "weight" : 0.617082123628, "name" : "Rab8b (pp) Iqgap1", "shared_name" : "Rab8b (pp) Iqgap1", "SUID" : 595932, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595995", "source" : "587759", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Cyp7b1", "weight" : 0.585179923408, "name" : "Rab8b (pp) Cyp7b1", "shared_name" : "Rab8b (pp) Cyp7b1", "SUID" : 595995, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596175", "source" : "587759", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Clec7a", "weight" : 0.476391207732, "name" : "Rab8b (pp) Clec7a", "shared_name" : "Rab8b (pp) Clec7a", "SUID" : 596175, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596073", "source" : "587759", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Vsig4", "weight" : 0.519545071274, "name" : "Rab8b (pp) Vsig4", "shared_name" : "Rab8b (pp) Vsig4", "SUID" : 596073, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596091", "source" : "587759", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Plac8", "weight" : 0.632346563366, "name" : "Rab8b (pp) Plac8", "shared_name" : "Rab8b (pp) Plac8", "SUID" : 596091, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595976", "source" : "587759", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Ms4a6d", "weight" : 0.505050025881, "name" : "Rab8b (pp) Ms4a6d", "shared_name" : "Rab8b (pp) Ms4a6d", "SUID" : 595976, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595947", "source" : "587759", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Pip4k2a", "weight" : 0.666488662183, "name" : "Rab8b (pp) Pip4k2a", "shared_name" : "Rab8b (pp) Pip4k2a", "SUID" : 595947, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596012", "source" : "587759", "target" : "588432", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Kcnk6", "weight" : 0.411942703604, "name" : "Rab8b (pp) Kcnk6", "shared_name" : "Rab8b (pp) Kcnk6", "SUID" : 596012, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596185", "source" : "587759", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Lrrc33", "weight" : 0.596398943616, "name" : "Rab8b (pp) Lrrc33", "shared_name" : "Rab8b (pp) Lrrc33", "SUID" : 596185, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595981", "source" : "587759", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Cxcl16", "weight" : 0.57503765279, "name" : "Rab8b (pp) Cxcl16", "shared_name" : "Rab8b (pp) Cxcl16", "SUID" : 595981, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596131", "source" : "587759", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Btk", "weight" : 0.512695652642, "name" : "Rab8b (pp) Btk", "shared_name" : "Rab8b (pp) Btk", "SUID" : 596131, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596149", "source" : "587759", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Rasgrp1", "weight" : 0.538626254812, "name" : "Rab8b (pp) Rasgrp1", "shared_name" : "Rab8b (pp) Rasgrp1", "SUID" : 596149, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595889", "source" : "587759", "target" : "587851", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Sh3kbp1", "weight" : 0.470100955243, "name" : "Rab8b (pp) Sh3kbp1", "shared_name" : "Rab8b (pp) Sh3kbp1", "SUID" : 595889, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596044", "source" : "587759", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Slc11a1", "weight" : 0.582109598635, "name" : "Rab8b (pp) Slc11a1", "shared_name" : "Rab8b (pp) Slc11a1", "SUID" : 596044, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596066", "source" : "587759", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) 6330416G13Rik", "weight" : 0.411931772976, "name" : "Rab8b (pp) 6330416G13Rik", "shared_name" : "Rab8b (pp) 6330416G13Rik", "SUID" : 596066, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596071", "source" : "587759", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Tpm4", "weight" : 0.566941509294, "name" : "Rab8b (pp) Tpm4", "shared_name" : "Rab8b (pp) Tpm4", "SUID" : 596071, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596172", "source" : "587759", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Fcgr4", "weight" : 0.591995012987, "name" : "Rab8b (pp) Fcgr4", "shared_name" : "Rab8b (pp) Fcgr4", "SUID" : 596172, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595944", "source" : "587759", "target" : "588147", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Ppic", "weight" : 0.472145006204, "name" : "Rab8b (pp) Ppic", "shared_name" : "Rab8b (pp) Ppic", "SUID" : 595944, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595891", "source" : "587759", "target" : "587857", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Lgmn", "weight" : 0.583280754454, "name" : "Rab8b (pp) Lgmn", "shared_name" : "Rab8b (pp) Lgmn", "SUID" : 595891, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596063", "source" : "587759", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Cd52", "weight" : 0.590894149678, "name" : "Rab8b (pp) Cd52", "shared_name" : "Rab8b (pp) Cd52", "SUID" : 596063, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596074", "source" : "587759", "target" : "588740", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Plekha2", "weight" : 0.490462780634, "name" : "Rab8b (pp) Plekha2", "shared_name" : "Rab8b (pp) Plekha2", "SUID" : 596074, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595949", "source" : "587759", "target" : "588185", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Aif1", "weight" : 0.420561358346, "name" : "Rab8b (pp) Aif1", "shared_name" : "Rab8b (pp) Aif1", "SUID" : 595949, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596178", "source" : "587759", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Prkcd", "weight" : 0.473747495261, "name" : "Rab8b (pp) Prkcd", "shared_name" : "Rab8b (pp) Prkcd", "SUID" : 596178, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595876", "source" : "587759", "target" : "587788", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Nckap1l", "weight" : 0.685452375448, "name" : "Rab8b (pp) Nckap1l", "shared_name" : "Rab8b (pp) Nckap1l", "SUID" : 595876, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595913", "source" : "587759", "target" : "587989", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Tyrobp", "weight" : 0.482802988123, "name" : "Rab8b (pp) Tyrobp", "shared_name" : "Rab8b (pp) Tyrobp", "SUID" : 595913, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595984", "source" : "587759", "target" : "588322", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Pfkfb4", "weight" : 0.631930186286, "name" : "Rab8b (pp) Pfkfb4", "shared_name" : "Rab8b (pp) Pfkfb4", "SUID" : 595984, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595904", "source" : "587759", "target" : "587952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Gusb", "weight" : 0.434006626081, "name" : "Rab8b (pp) Gusb", "shared_name" : "Rab8b (pp) Gusb", "SUID" : 595904, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596107", "source" : "587759", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Cytip", "weight" : 0.589503697177, "name" : "Rab8b (pp) Cytip", "shared_name" : "Rab8b (pp) Cytip", "SUID" : 596107, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596061", "source" : "587759", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) D12Ertd553e", "weight" : 0.608341883862, "name" : "Rab8b (pp) D12Ertd553e", "shared_name" : "Rab8b (pp) D12Ertd553e", "SUID" : 596061, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "596161", "source" : "587759", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rab8b (pp) Ear10", "weight" : 0.406605938202, "name" : "Rab8b (pp) Ear10", "shared_name" : "Rab8b (pp) Ear10", "SUID" : 596161, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627825", "source" : "588104", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Cfp", "weight" : 0.598508880628, "name" : "Bmp1 (pp) Cfp", "shared_name" : "Bmp1 (pp) Cfp", "SUID" : 627825, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627755", "source" : "588104", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Axl", "weight" : 0.493070458876, "name" : "Bmp1 (pp) Axl", "shared_name" : "Bmp1 (pp) Axl", "SUID" : 627755, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627746", "source" : "588104", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) 5033414D02Rik", "weight" : 0.49996180492, "name" : "Bmp1 (pp) 5033414D02Rik", "shared_name" : "Bmp1 (pp) 5033414D02Rik", "SUID" : 627746, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627824", "source" : "588104", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Btk", "weight" : 0.461603520695, "name" : "Bmp1 (pp) Btk", "shared_name" : "Bmp1 (pp) Btk", "SUID" : 627824, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627865", "source" : "588104", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Ear12", "weight" : 0.562472890019, "name" : "Bmp1 (pp) Ear12", "shared_name" : "Bmp1 (pp) Ear12", "SUID" : 627865, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627837", "source" : "588104", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Tmsb4x", "weight" : 0.407590235093, "name" : "Bmp1 (pp) Tmsb4x", "shared_name" : "Bmp1 (pp) Tmsb4x", "SUID" : 627837, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627769", "source" : "588104", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Tmem86a", "weight" : 0.551955104444, "name" : "Bmp1 (pp) Tmem86a", "shared_name" : "Bmp1 (pp) Tmem86a", "SUID" : 627769, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627791", "source" : "588104", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Lgals3", "weight" : 0.668693312801, "name" : "Bmp1 (pp) Lgals3", "shared_name" : "Bmp1 (pp) Lgals3", "SUID" : 627791, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627649", "source" : "588104", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Cxcl16", "weight" : 0.511614101982, "name" : "Bmp1 (pp) Cxcl16", "shared_name" : "Bmp1 (pp) Cxcl16", "SUID" : 627649, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627832", "source" : "588104", "target" : "589113", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Ms4a7", "weight" : 0.404491227907, "name" : "Bmp1 (pp) Ms4a7", "shared_name" : "Bmp1 (pp) Ms4a7", "SUID" : 627832, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627869", "source" : "588104", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Cd53", "weight" : 0.505056884714, "name" : "Bmp1 (pp) Cd53", "shared_name" : "Bmp1 (pp) Cd53", "SUID" : 627869, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627643", "source" : "588104", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Ms4a6d", "weight" : 0.464451755299, "name" : "Bmp1 (pp) Ms4a6d", "shared_name" : "Bmp1 (pp) Ms4a6d", "SUID" : 627643, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627660", "source" : "588104", "target" : "588342", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Mfge8", "weight" : 0.423509211594, "name" : "Bmp1 (pp) Mfge8", "shared_name" : "Bmp1 (pp) Mfge8", "SUID" : 627660, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627673", "source" : "588104", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Selplg", "weight" : 0.447459417152, "name" : "Bmp1 (pp) Selplg", "shared_name" : "Bmp1 (pp) Selplg", "SUID" : 627673, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627666", "source" : "588104", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Cyp7b1", "weight" : 0.60583411272, "name" : "Bmp1 (pp) Cyp7b1", "shared_name" : "Bmp1 (pp) Cyp7b1", "SUID" : 627666, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627721", "source" : "588104", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Cd86", "weight" : 0.544930695983, "name" : "Bmp1 (pp) Cd86", "shared_name" : "Bmp1 (pp) Cd86", "SUID" : 627721, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627635", "source" : "588104", "target" : "588244", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Gltp", "weight" : 0.419423321879, "name" : "Bmp1 (pp) Gltp", "shared_name" : "Bmp1 (pp) Gltp", "SUID" : 627635, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627862", "source" : "588104", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Ppif", "weight" : 0.453429439861, "name" : "Bmp1 (pp) Ppif", "shared_name" : "Bmp1 (pp) Ppif", "SUID" : 627862, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627784", "source" : "588104", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Fcer1g", "weight" : 0.414325168185, "name" : "Bmp1 (pp) Fcer1g", "shared_name" : "Bmp1 (pp) Fcer1g", "SUID" : 627784, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627881", "source" : "588104", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Tspan33", "weight" : 0.420382440038, "name" : "Bmp1 (pp) Tspan33", "shared_name" : "Bmp1 (pp) Tspan33", "SUID" : 627881, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627681", "source" : "588104", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Cd14", "weight" : 0.478138683834, "name" : "Bmp1 (pp) Cd14", "shared_name" : "Bmp1 (pp) Cd14", "SUID" : 627681, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627693", "source" : "588104", "target" : "588459", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Pop5", "weight" : 0.467449246657, "name" : "Bmp1 (pp) Pop5", "shared_name" : "Bmp1 (pp) Pop5", "SUID" : 627693, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627870", "source" : "588104", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Clec7a", "weight" : 0.413257706025, "name" : "Bmp1 (pp) Clec7a", "shared_name" : "Bmp1 (pp) Clec7a", "SUID" : 627870, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627872", "source" : "588104", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Ear4", "weight" : 0.652566290522, "name" : "Bmp1 (pp) Ear4", "shared_name" : "Bmp1 (pp) Ear4", "SUID" : 627872, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627828", "source" : "588104", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Snx10", "weight" : 0.58040064534, "name" : "Bmp1 (pp) Snx10", "shared_name" : "Bmp1 (pp) Snx10", "SUID" : 627828, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627880", "source" : "588104", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Fblim1", "weight" : 0.406621342388, "name" : "Bmp1 (pp) Fblim1", "shared_name" : "Bmp1 (pp) Fblim1", "SUID" : 627880, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627691", "source" : "588104", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Cd63", "weight" : 0.516464950581, "name" : "Bmp1 (pp) Cd63", "shared_name" : "Bmp1 (pp) Cd63", "SUID" : 627691, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627651", "source" : "588104", "target" : "588313", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Zfp90", "weight" : 0.433054696896, "name" : "Bmp1 (pp) Zfp90", "shared_name" : "Bmp1 (pp) Zfp90", "SUID" : 627651, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627606", "source" : "588104", "target" : "588134", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Mlkl", "weight" : 0.462557169085, "name" : "Bmp1 (pp) Mlkl", "shared_name" : "Bmp1 (pp) Mlkl", "SUID" : 627606, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627730", "source" : "588104", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Slc11a1", "weight" : 0.444357041361, "name" : "Bmp1 (pp) Slc11a1", "shared_name" : "Bmp1 (pp) Slc11a1", "SUID" : 627730, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627732", "source" : "588104", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Gngt2", "weight" : 0.498072766443, "name" : "Bmp1 (pp) Gngt2", "shared_name" : "Bmp1 (pp) Gngt2", "SUID" : 627732, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627842", "source" : "588104", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Rasgrp1", "weight" : 0.426602561616, "name" : "Bmp1 (pp) Rasgrp1", "shared_name" : "Bmp1 (pp) Rasgrp1", "SUID" : 627842, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627777", "source" : "588104", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Pla2g15", "weight" : 0.508475215837, "name" : "Bmp1 (pp) Pla2g15", "shared_name" : "Bmp1 (pp) Pla2g15", "SUID" : 627777, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627613", "source" : "588104", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Pip4k2a", "weight" : 0.482051671707, "name" : "Bmp1 (pp) Pip4k2a", "shared_name" : "Bmp1 (pp) Pip4k2a", "SUID" : 627613, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627867", "source" : "588104", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Fcgr4", "weight" : 0.481439410138, "name" : "Bmp1 (pp) Fcgr4", "shared_name" : "Bmp1 (pp) Fcgr4", "SUID" : 627867, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627659", "source" : "588104", "target" : "588335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Arpc1b", "weight" : 0.446486890524, "name" : "Bmp1 (pp) Arpc1b", "shared_name" : "Bmp1 (pp) Arpc1b", "SUID" : 627659, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627765", "source" : "588104", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Slc15a3", "weight" : 0.594166502753, "name" : "Bmp1 (pp) Slc15a3", "shared_name" : "Bmp1 (pp) Slc15a3", "SUID" : 627765, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627609", "source" : "588104", "target" : "588147", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Ppic", "weight" : 0.435373163819, "name" : "Bmp1 (pp) Ppic", "shared_name" : "Bmp1 (pp) Ppic", "SUID" : 627609, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627630", "source" : "588104", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Laptm5", "weight" : 0.57020552217, "name" : "Bmp1 (pp) Laptm5", "shared_name" : "Bmp1 (pp) Laptm5", "SUID" : 627630, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627878", "source" : "588104", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) C1qb", "weight" : 0.410113721892, "name" : "Bmp1 (pp) C1qb", "shared_name" : "Bmp1 (pp) C1qb", "SUID" : 627878, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627856", "source" : "588104", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Ear10", "weight" : 0.53688823377, "name" : "Bmp1 (pp) Ear10", "shared_name" : "Bmp1 (pp) Ear10", "SUID" : 627856, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627725", "source" : "588104", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Snn", "weight" : 0.430533952016, "name" : "Bmp1 (pp) Snn", "shared_name" : "Bmp1 (pp) Snn", "SUID" : 627725, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627814", "source" : "588104", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Csrp1", "weight" : 0.643547694652, "name" : "Bmp1 (pp) Csrp1", "shared_name" : "Bmp1 (pp) Csrp1", "SUID" : 627814, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627688", "source" : "588104", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Clec4n", "weight" : 0.469207198158, "name" : "Bmp1 (pp) Clec4n", "shared_name" : "Bmp1 (pp) Clec4n", "SUID" : 627688, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627653", "source" : "588104", "target" : "588322", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Pfkfb4", "weight" : 0.443616898662, "name" : "Bmp1 (pp) Pfkfb4", "shared_name" : "Bmp1 (pp) Pfkfb4", "SUID" : 627653, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627780", "source" : "588104", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Cotl1", "weight" : 0.547688337377, "name" : "Bmp1 (pp) Cotl1", "shared_name" : "Bmp1 (pp) Cotl1", "SUID" : 627780, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627663", "source" : "588104", "target" : "588351", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Ttc39a", "weight" : 0.402918035818, "name" : "Bmp1 (pp) Ttc39a", "shared_name" : "Bmp1 (pp) Ttc39a", "SUID" : 627663, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627637", "source" : "588104", "target" : "588254", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Irf8", "weight" : 0.508735028112, "name" : "Bmp1 (pp) Irf8", "shared_name" : "Bmp1 (pp) Irf8", "SUID" : 627637, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627695", "source" : "588104", "target" : "588464", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Akr1b3", "weight" : 0.455747449461, "name" : "Bmp1 (pp) Akr1b3", "shared_name" : "Bmp1 (pp) Akr1b3", "SUID" : 627695, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627678", "source" : "588104", "target" : "588394", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Lyzs", "weight" : 0.514770200599, "name" : "Bmp1 (pp) Lyzs", "shared_name" : "Bmp1 (pp) Lyzs", "SUID" : 627678, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627741", "source" : "588104", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Gpnmb", "weight" : 0.46623448837, "name" : "Bmp1 (pp) Gpnmb", "shared_name" : "Bmp1 (pp) Gpnmb", "SUID" : 627741, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627834", "source" : "588104", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Vcam1", "weight" : 0.482327972515, "name" : "Bmp1 (pp) Vcam1", "shared_name" : "Bmp1 (pp) Vcam1", "SUID" : 627834, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627738", "source" : "588104", "target" : "588636", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Repin1", "weight" : 0.461618369854, "name" : "Bmp1 (pp) Repin1", "shared_name" : "Bmp1 (pp) Repin1", "SUID" : 627738, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627701", "source" : "588104", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Renbp", "weight" : 0.487763398517, "name" : "Bmp1 (pp) Renbp", "shared_name" : "Bmp1 (pp) Renbp", "SUID" : 627701, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627760", "source" : "588104", "target" : "588742", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Ifitm6", "weight" : 0.554377284169, "name" : "Bmp1 (pp) Ifitm6", "shared_name" : "Bmp1 (pp) Ifitm6", "SUID" : 627760, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627815", "source" : "588104", "target" : "589030", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Soat1", "weight" : 0.416909952867, "name" : "Bmp1 (pp) Soat1", "shared_name" : "Bmp1 (pp) Soat1", "SUID" : 627815, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627877", "source" : "588104", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Ly86", "weight" : 0.542903042485, "name" : "Bmp1 (pp) Ly86", "shared_name" : "Bmp1 (pp) Ly86", "SUID" : 627877, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627852", "source" : "588104", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Serpinb6a", "weight" : 0.647679631716, "name" : "Bmp1 (pp) Serpinb6a", "shared_name" : "Bmp1 (pp) Serpinb6a", "SUID" : 627852, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627702", "source" : "588104", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Plscr1", "weight" : 0.487654226447, "name" : "Bmp1 (pp) Plscr1", "shared_name" : "Bmp1 (pp) Plscr1", "SUID" : 627702, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627638", "source" : "588104", "target" : "588257", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Sdcbp", "weight" : 0.602832179039, "name" : "Bmp1 (pp) Sdcbp", "shared_name" : "Bmp1 (pp) Sdcbp", "SUID" : 627638, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627754", "source" : "588104", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Tlr2", "weight" : 0.476164344724, "name" : "Bmp1 (pp) Tlr2", "shared_name" : "Bmp1 (pp) Tlr2", "SUID" : 627754, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "627782", "source" : "588104", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bmp1 (pp) Plac8", "weight" : 0.496884946907, "name" : "Bmp1 (pp) Plac8", "shared_name" : "Bmp1 (pp) Plac8", "SUID" : 627782, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674780", "source" : "588813", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pla2g15 (pp) Lgals3", "weight" : 0.503305547252, "name" : "Pla2g15 (pp) Lgals3", "shared_name" : "Pla2g15 (pp) Lgals3", "SUID" : 674780, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674831", "source" : "588813", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pla2g15 (pp) Abi3", "weight" : 0.404261404459, "name" : "Pla2g15 (pp) Abi3", "shared_name" : "Pla2g15 (pp) Abi3", "SUID" : 674831, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674806", "source" : "588813", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pla2g15 (pp) Vcam1", "weight" : 0.418083621533, "name" : "Pla2g15 (pp) Vcam1", "shared_name" : "Pla2g15 (pp) Vcam1", "SUID" : 674806, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674773", "source" : "588813", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pla2g15 (pp) Cotl1", "weight" : 0.490451721679, "name" : "Pla2g15 (pp) Cotl1", "shared_name" : "Pla2g15 (pp) Cotl1", "SUID" : 674773, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674799", "source" : "588813", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pla2g15 (pp) Cfp", "weight" : 0.530669723117, "name" : "Pla2g15 (pp) Cfp", "shared_name" : "Pla2g15 (pp) Cfp", "SUID" : 674799, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674774", "source" : "588813", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pla2g15 (pp) Plac8", "weight" : 0.424788796544, "name" : "Pla2g15 (pp) Plac8", "shared_name" : "Pla2g15 (pp) Plac8", "SUID" : 674774, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674825", "source" : "588813", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pla2g15 (pp) Ear10", "weight" : 0.419225151985, "name" : "Pla2g15 (pp) Ear10", "shared_name" : "Pla2g15 (pp) Ear10", "SUID" : 674825, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674839", "source" : "588813", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pla2g15 (pp) Ear4", "weight" : 0.521998042037, "name" : "Pla2g15 (pp) Ear4", "shared_name" : "Pla2g15 (pp) Ear4", "SUID" : 674839, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674846", "source" : "588813", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pla2g15 (pp) Tspan33", "weight" : 0.480079615601, "name" : "Pla2g15 (pp) Tspan33", "shared_name" : "Pla2g15 (pp) Tspan33", "SUID" : 674846, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674821", "source" : "588813", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pla2g15 (pp) Serpinb6a", "weight" : 0.660603878901, "name" : "Pla2g15 (pp) Serpinb6a", "shared_name" : "Pla2g15 (pp) Serpinb6a", "SUID" : 674821, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674794", "source" : "588813", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pla2g15 (pp) Csrp1", "weight" : 0.453986358762, "name" : "Pla2g15 (pp) Csrp1", "shared_name" : "Pla2g15 (pp) Csrp1", "SUID" : 674794, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674813", "source" : "588813", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pla2g15 (pp) Rasgrp1", "weight" : 0.422916987602, "name" : "Pla2g15 (pp) Rasgrp1", "shared_name" : "Pla2g15 (pp) Rasgrp1", "SUID" : 674813, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674844", "source" : "588813", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pla2g15 (pp) C1qb", "weight" : 0.452959727767, "name" : "Pla2g15 (pp) C1qb", "shared_name" : "Pla2g15 (pp) C1qb", "SUID" : 674844, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674847", "source" : "588813", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pla2g15 (pp) Lrrc33", "weight" : 0.410461141547, "name" : "Pla2g15 (pp) Lrrc33", "shared_name" : "Pla2g15 (pp) Lrrc33", "SUID" : 674847, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "674830", "source" : "588813", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pla2g15 (pp) Ppif", "weight" : 0.515784159684, "name" : "Pla2g15 (pp) Ppif", "shared_name" : "Pla2g15 (pp) Ppif", "SUID" : 674830, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615578", "source" : "587966", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Cd14", "weight" : 0.512354643144, "name" : "Cyba (pp) Cd14", "shared_name" : "Cyba (pp) Cd14", "SUID" : 615578, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615630", "source" : "587966", "target" : "588636", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Repin1", "weight" : 0.460620565958, "name" : "Cyba (pp) Repin1", "shared_name" : "Cyba (pp) Repin1", "SUID" : 615630, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615624", "source" : "587966", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Gngt2", "weight" : 0.693759903448, "name" : "Cyba (pp) Gngt2", "shared_name" : "Cyba (pp) Gngt2", "SUID" : 615624, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615500", "source" : "587966", "target" : "588086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Iqgap1", "weight" : 0.541927676405, "name" : "Cyba (pp) Iqgap1", "shared_name" : "Cyba (pp) Iqgap1", "SUID" : 615500, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615581", "source" : "587966", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Clec4n", "weight" : 0.744769872601, "name" : "Cyba (pp) Clec4n", "shared_name" : "Cyba (pp) Clec4n", "SUID" : 615581, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615602", "source" : "587966", "target" : "588512", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) H2-Eb1", "weight" : 0.454256553882, "name" : "Cyba (pp) H2-Eb1", "shared_name" : "Cyba (pp) H2-Eb1", "SUID" : 615602, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615592", "source" : "587966", "target" : "588472", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Ly9", "weight" : 0.487758104601, "name" : "Cyba (pp) Ly9", "shared_name" : "Cyba (pp) Ly9", "SUID" : 615592, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615564", "source" : "587966", "target" : "588351", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Ttc39a", "weight" : 0.436529182094, "name" : "Cyba (pp) Ttc39a", "shared_name" : "Cyba (pp) Ttc39a", "SUID" : 615564, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615547", "source" : "587966", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Ms4a6d", "weight" : 0.679401503695, "name" : "Cyba (pp) Ms4a6d", "shared_name" : "Cyba (pp) Ms4a6d", "SUID" : 615547, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615598", "source" : "587966", "target" : "588496", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Gphn", "weight" : 0.538489733434, "name" : "Cyba (pp) Gphn", "shared_name" : "Cyba (pp) Gphn", "SUID" : 615598, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615697", "source" : "587966", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) H2-DMb1", "weight" : 0.486765460606, "name" : "Cyba (pp) H2-DMb1", "shared_name" : "Cyba (pp) H2-DMb1", "SUID" : 615697, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615503", "source" : "587966", "target" : "588104", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Bmp1", "weight" : 0.501425827129, "name" : "Cyba (pp) Bmp1", "shared_name" : "Cyba (pp) Bmp1", "SUID" : 615503, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615573", "source" : "587966", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Selplg", "weight" : 0.615084421768, "name" : "Cyba (pp) Selplg", "shared_name" : "Cyba (pp) Selplg", "SUID" : 615573, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615629", "source" : "587966", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Casp1", "weight" : 0.605425434362, "name" : "Cyba (pp) Casp1", "shared_name" : "Cyba (pp) Casp1", "SUID" : 615629, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615584", "source" : "587966", "target" : "588444", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.56382123635, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cyba (pp) Cd63", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 2.13703E-4, "weight" : 0.56382123635, "fusion" : "NA", "name" : "Cyba (pp) Cd63", "neighborhood" : "NA", "sourceEdge" : 44300.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cyba (pp) Cd63", "combinedscore" : "NA", "SUID" : 615584, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "615537", "source" : "587966", "target" : "588244", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Gltp", "weight" : 0.573244887855, "name" : "Cyba (pp) Gltp", "shared_name" : "Cyba (pp) Gltp", "SUID" : 615537, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615718", "source" : "587966", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Btk", "weight" : 0.415475940802, "name" : "Cyba (pp) Btk", "shared_name" : "Cyba (pp) Btk", "SUID" : 615718, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615703", "source" : "587966", "target" : "588968", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Bcl2a1c", "weight" : 0.419732378209, "name" : "Cyba (pp) Bcl2a1c", "shared_name" : "Cyba (pp) Bcl2a1c", "SUID" : 615703, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615692", "source" : "587966", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Cytip", "weight" : 0.627084201536, "name" : "Cyba (pp) Cytip", "shared_name" : "Cyba (pp) Cytip", "SUID" : 615692, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615525", "source" : "587966", "target" : "588212", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Anxa3", "weight" : 0.573754542048, "name" : "Cyba (pp) Anxa3", "shared_name" : "Cyba (pp) Anxa3", "SUID" : 615525, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615723", "source" : "587966", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Snx10", "weight" : 0.434995486354, "name" : "Cyba (pp) Snx10", "shared_name" : "Cyba (pp) Snx10", "SUID" : 615723, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615775", "source" : "587966", "target" : "589344", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.798223677058, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cyba (pp) C1qb", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.798223677058, "fusion" : "NA", "name" : "Cyba (pp) C1qb", "neighborhood" : "NA", "sourceEdge" : 44382.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cyba (pp) C1qb", "combinedscore" : "NA", "SUID" : 615775, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 3.57E-9, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "615659", "source" : "587966", "target" : "588782", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.748791055244, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cyba (pp) Slc15a3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 1.223E-9, "weight" : 0.748791055244, "fusion" : "NA", "name" : "Cyba (pp) Slc15a3", "neighborhood" : "NA", "sourceEdge" : 44338.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cyba (pp) Slc15a3", "combinedscore" : "NA", "SUID" : 615659, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 3.974594E-5, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "615538", "source" : "587966", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Sdc3", "weight" : 0.566528534344, "name" : "Cyba (pp) Sdc3", "shared_name" : "Cyba (pp) Sdc3", "SUID" : 615538, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615762", "source" : "587966", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Ear12", "weight" : 0.489047778177, "name" : "Cyba (pp) Ear12", "shared_name" : "Cyba (pp) Ear12", "SUID" : 615762, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615650", "source" : "587966", "target" : "588728", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) AB124611", "weight" : 0.519157641221, "name" : "Cyba (pp) AB124611", "shared_name" : "Cyba (pp) AB124611", "SUID" : 615650, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615662", "source" : "587966", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Ccl6", "weight" : 0.570347300205, "name" : "Cyba (pp) Ccl6", "shared_name" : "Cyba (pp) Ccl6", "SUID" : 615662, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615594", "source" : "587966", "target" : "588481", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.560445407641, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cyba (pp) Plscr1", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 6.915222E-5, "weight" : 0.560445407641, "fusion" : "NA", "name" : "Cyba (pp) Plscr1", "neighborhood" : "NA", "sourceEdge" : 414334.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cyba (pp) Plscr1", "combinedscore" : "NA", "SUID" : 615594, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "615663", "source" : "587966", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Tmem86a", "weight" : 0.578998233663, "name" : "Cyba (pp) Tmem86a", "shared_name" : "Cyba (pp) Tmem86a", "SUID" : 615663, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615751", "source" : "587966", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) H2-DMa", "weight" : 0.552125396691, "name" : "Cyba (pp) H2-DMa", "shared_name" : "Cyba (pp) H2-DMa", "SUID" : 615751, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615616", "source" : "587966", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Snn", "weight" : 0.48430250768, "name" : "Cyba (pp) Snn", "shared_name" : "Cyba (pp) Snn", "SUID" : 615616, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615508", "source" : "587966", "target" : "588127", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Lpxn", "weight" : 0.556912304771, "name" : "Cyba (pp) Lpxn", "shared_name" : "Cyba (pp) Lpxn", "SUID" : 615508, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615539", "source" : "587966", "target" : "588254", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Irf8", "weight" : 0.517463474412, "name" : "Cyba (pp) Irf8", "shared_name" : "Cyba (pp) Irf8", "SUID" : 615539, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615638", "source" : "587966", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) 5033414D02Rik", "weight" : 0.623386598669, "name" : "Cyba (pp) 5033414D02Rik", "shared_name" : "Cyba (pp) 5033414D02Rik", "SUID" : 615638, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615561", "source" : "587966", "target" : "588342", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Mfge8", "weight" : 0.429585167161, "name" : "Cyba (pp) Mfge8", "shared_name" : "Cyba (pp) Mfge8", "SUID" : 615561, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615514", "source" : "587966", "target" : "588151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Ccl4", "weight" : 0.626217176562, "name" : "Cyba (pp) Ccl4", "shared_name" : "Cyba (pp) Ccl4", "SUID" : 615514, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615671", "source" : "587966", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Pla2g15", "weight" : 0.514258390312, "name" : "Cyba (pp) Pla2g15", "shared_name" : "Cyba (pp) Pla2g15", "SUID" : 615671, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615655", "source" : "587966", "target" : "588742", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Ifitm6", "weight" : 0.457910336577, "name" : "Cyba (pp) Ifitm6", "shared_name" : "Cyba (pp) Ifitm6", "SUID" : 615655, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615648", "source" : "587966", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Tlr2", "weight" : 0.506179524125, "name" : "Cyba (pp) Tlr2", "shared_name" : "Cyba (pp) Tlr2", "SUID" : 615648, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615770", "source" : "587966", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.754092541499, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cyba (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 8.5E-11, "weight" : 0.754092541499, "fusion" : "NA", "name" : "Cyba (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 44379.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cyba (pp) Ear4", "combinedscore" : "NA", "SUID" : 615770, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 3.900717E-5, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "615709", "source" : "587966", "target" : "589005", "homology" : "NA", "shared_interaction" : "NA", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.748787208029, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cyba (pp) Csrp1", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 2.554E-9, "weight" : 0.748787208029, "fusion" : "NA", "name" : "Cyba (pp) Csrp1", "neighborhood" : "NA", "sourceEdge" : 44355.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cyba (pp) Csrp1", "combinedscore" : "NA", "SUID" : 615709, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "NA", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "615476", "source" : "587966", "target" : "587989", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Tyrobp", "weight" : 0.607334562028, "name" : "Cyba (pp) Tyrobp", "shared_name" : "Cyba (pp) Tyrobp", "SUID" : 615476, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615752", "source" : "587966", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Ear10", "weight" : 0.496455898587, "name" : "Cyba (pp) Ear10", "shared_name" : "Cyba (pp) Ear10", "SUID" : 615752, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615739", "source" : "587966", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Rasgrp1", "weight" : 0.487689492951, "name" : "Cyba (pp) Rasgrp1", "shared_name" : "Cyba (pp) Rasgrp1", "SUID" : 615739, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615605", "source" : "587966", "target" : "588517", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Rac2", "weight" : 0.474229928669, "name" : "Cyba (pp) Rac2", "shared_name" : "Cyba (pp) Rac2", "SUID" : 615605, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615497", "source" : "587966", "target" : "588069", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) A430084P05Rik", "weight" : 0.563359205432, "name" : "Cyba (pp) A430084P05Rik", "shared_name" : "Cyba (pp) A430084P05Rik", "SUID" : 615497, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615583", "source" : "587966", "target" : "588439", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Vim", "weight" : 0.508848038407, "name" : "Cyba (pp) Vim", "shared_name" : "Cyba (pp) Vim", "SUID" : 615583, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615760", "source" : "587966", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Abi3", "weight" : 0.561435898074, "name" : "Cyba (pp) Abi3", "shared_name" : "Cyba (pp) Abi3", "SUID" : 615760, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615570", "source" : "587966", "target" : "588365", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.494724023162, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cyba (pp) Tnfaip8l2", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.494724023162, "fusion" : "NA", "name" : "Cyba (pp) Tnfaip8l2", "neighborhood" : "NA", "sourceEdge" : 44293.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cyba (pp) Tnfaip8l2", "combinedscore" : "NA", "SUID" : 615570, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 2.54731E-6, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "615719", "source" : "587966", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Cfp", "weight" : 0.599212988352, "name" : "Cyba (pp) Cfp", "shared_name" : "Cyba (pp) Cfp", "SUID" : 615719, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615612", "source" : "587966", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Cd86", "weight" : 0.699428957512, "name" : "Cyba (pp) Cd86", "shared_name" : "Cyba (pp) Cd86", "SUID" : 615612, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615526", "source" : "587966", "target" : "588213", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Pdlim4", "weight" : 0.506598419535, "name" : "Cyba (pp) Pdlim4", "shared_name" : "Cyba (pp) Pdlim4", "SUID" : 615526, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615674", "source" : "587966", "target" : "588835", "homology" : "NA", "shared_interaction" : "NA", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.744731562023, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cyba (pp) Cotl1", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 1.791E-9, "weight" : 0.744731562023, "fusion" : "NA", "name" : "Cyba (pp) Cotl1", "neighborhood" : "NA", "sourceEdge" : 44344.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cyba (pp) Cotl1", "combinedscore" : "NA", "SUID" : 615674, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "NA", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "615779", "source" : "587966", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Lrrc33", "weight" : 0.449306007331, "name" : "Cyba (pp) Lrrc33", "shared_name" : "Cyba (pp) Lrrc33", "SUID" : 615779, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615706", "source" : "587966", "target" : "588999", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Kctd12", "weight" : 0.45514691008, "name" : "Cyba (pp) Kctd12", "shared_name" : "Cyba (pp) Kctd12", "SUID" : 615706, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615689", "source" : "587966", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) C1qc", "weight" : 0.741311024354, "name" : "Cyba (pp) C1qc", "shared_name" : "Cyba (pp) C1qc", "SUID" : 615689, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615764", "source" : "587966", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Fcgr4", "weight" : 0.708476104411, "name" : "Cyba (pp) Fcgr4", "shared_name" : "Cyba (pp) Fcgr4", "SUID" : 615764, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615625", "source" : "587966", "target" : "588608", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Treml4", "weight" : 0.540219642696, "name" : "Cyba (pp) Treml4", "shared_name" : "Cyba (pp) Treml4", "SUID" : 615625, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615622", "source" : "587966", "target" : "588601", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.806945623123, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cyba (pp) Slc11a1", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.806945623123, "fusion" : "NA", "name" : "Cyba (pp) Slc11a1", "neighborhood" : "NA", "sourceEdge" : 44317.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cyba (pp) Slc11a1", "combinedscore" : "NA", "SUID" : 615622, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 3.818071E-5, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "615588", "source" : "587966", "target" : "588461", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Tbxas1", "weight" : 0.476258566243, "name" : "Cyba (pp) Tbxas1", "shared_name" : "Cyba (pp) Tbxas1", "SUID" : 615588, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615756", "source" : "587966", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Trem2", "weight" : 0.508102768449, "name" : "Cyba (pp) Trem2", "shared_name" : "Cyba (pp) Trem2", "SUID" : 615756, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615513", "source" : "587966", "target" : "588147", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Ppic", "weight" : 0.511053810784, "name" : "Cyba (pp) Ppic", "shared_name" : "Cyba (pp) Ppic", "SUID" : 615513, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615641", "source" : "587966", "target" : "588678", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Fxyd5", "weight" : 0.469719538457, "name" : "Cyba (pp) Fxyd5", "shared_name" : "Cyba (pp) Fxyd5", "SUID" : 615641, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615661", "source" : "587966", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) 5430435G22Rik", "weight" : 0.476414913028, "name" : "Cyba (pp) 5430435G22Rik", "shared_name" : "Cyba (pp) 5430435G22Rik", "SUID" : 615661, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615567", "source" : "587966", "target" : "588358", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.58075568152, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cyba (pp) Cyp7b1", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 3.646066E-6, "weight" : 0.58075568152, "fusion" : "NA", "name" : "Cyba (pp) Cyp7b1", "neighborhood" : "NA", "sourceEdge" : 414211.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cyba (pp) Cyp7b1", "combinedscore" : "NA", "SUID" : 615567, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "615474", "source" : "587966", "target" : "587975", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) H2-Ab1", "weight" : 0.477324163431, "name" : "Cyba (pp) H2-Ab1", "shared_name" : "Cyba (pp) H2-Ab1", "SUID" : 615474, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615555", "source" : "587966", "target" : "588322", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Pfkfb4", "weight" : 0.417082671723, "name" : "Cyba (pp) Pfkfb4", "shared_name" : "Cyba (pp) Pfkfb4", "SUID" : 615555, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615748", "source" : "587966", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Serpinb6a", "weight" : 0.666409817886, "name" : "Cyba (pp) Serpinb6a", "shared_name" : "Cyba (pp) Serpinb6a", "SUID" : 615748, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615679", "source" : "587966", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Fcgr3", "weight" : 0.60229872172, "name" : "Cyba (pp) Fcgr3", "shared_name" : "Cyba (pp) Fcgr3", "SUID" : 615679, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615475", "source" : "587966", "target" : "587982", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Plekho2", "weight" : 0.636498243242, "name" : "Cyba (pp) Plekho2", "shared_name" : "Cyba (pp) Plekho2", "SUID" : 615475, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615620", "source" : "587966", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Tmsb10", "weight" : 0.6315177503, "name" : "Cyba (pp) Tmsb10", "shared_name" : "Cyba (pp) Tmsb10", "SUID" : 615620, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615484", "source" : "587966", "target" : "588024", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Cd68", "weight" : 0.715697760327, "name" : "Cyba (pp) Cd68", "shared_name" : "Cyba (pp) Cd68", "SUID" : 615484, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615516", "source" : "587966", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Pip4k2a", "weight" : 0.632378433012, "name" : "Cyba (pp) Pip4k2a", "shared_name" : "Cyba (pp) Pip4k2a", "SUID" : 615516, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615683", "source" : "587966", "target" : "588886", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.767738008461, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cyba (pp) Lgals3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 7.935831E-4, "weight" : 0.767738008461, "fusion" : "NA", "name" : "Cyba (pp) Lgals3", "neighborhood" : "NA", "sourceEdge" : 44348.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cyba (pp) Lgals3", "combinedscore" : "NA", "SUID" : 615683, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 4.365964E-6, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "615489", "source" : "587966", "target" : "588049", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.462504740321, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cyba (pp) Cd74", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.462504740321, "fusion" : "NA", "name" : "Cyba (pp) Cd74", "neighborhood" : "NA", "sourceEdge" : 44260.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cyba (pp) Cd74", "combinedscore" : "NA", "SUID" : 615489, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 2.260764E-4, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "615717", "source" : "587966", "target" : "589076", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) H2-M3", "weight" : 0.536835176258, "name" : "Cyba (pp) H2-M3", "shared_name" : "Cyba (pp) H2-M3", "SUID" : 615717, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615509", "source" : "587966", "target" : "588134", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Mlkl", "weight" : 0.464997561457, "name" : "Cyba (pp) Mlkl", "shared_name" : "Cyba (pp) Mlkl", "SUID" : 615509, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615774", "source" : "587966", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Ly86", "weight" : 0.68122439817, "name" : "Cyba (pp) Ly86", "shared_name" : "Cyba (pp) Ly86", "SUID" : 615774, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615552", "source" : "587966", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Cxcl16", "weight" : 0.684116743347, "name" : "Cyba (pp) Cxcl16", "shared_name" : "Cyba (pp) Cxcl16", "SUID" : 615552, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615647", "source" : "587966", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Serpina3g", "weight" : 0.550718311134, "name" : "Cyba (pp) Serpina3g", "shared_name" : "Cyba (pp) Serpina3g", "SUID" : 615647, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615576", "source" : "587966", "target" : "588394", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Lyzs", "weight" : 0.504970559398, "name" : "Cyba (pp) Lyzs", "shared_name" : "Cyba (pp) Lyzs", "SUID" : 615576, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615649", "source" : "587966", "target" : "588727", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.76360177179, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cyba (pp) Axl", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 4.894002E-4, "weight" : 0.76360177179, "fusion" : "NA", "name" : "Cyba (pp) Axl", "neighborhood" : "NA", "sourceEdge" : 44332.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cyba (pp) Axl", "combinedscore" : "NA", "SUID" : 615649, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "615541", "source" : "587966", "target" : "588262", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) P2ry13", "weight" : 0.411236255441, "name" : "Cyba (pp) P2ry13", "shared_name" : "Cyba (pp) P2ry13", "SUID" : 615541, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615725", "source" : "587966", "target" : "589102", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Gja1", "weight" : 0.487143657694, "name" : "Cyba (pp) Gja1", "shared_name" : "Cyba (pp) Gja1", "SUID" : 615725, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615766", "source" : "587966", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Cd53", "weight" : 0.422023330157, "name" : "Cyba (pp) Cd53", "shared_name" : "Cyba (pp) Cd53", "SUID" : 615766, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615676", "source" : "587966", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Plac8", "weight" : 0.677613838176, "name" : "Cyba (pp) Plac8", "shared_name" : "Cyba (pp) Plac8", "SUID" : 615676, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615535", "source" : "587966", "target" : "588242", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Cd83", "weight" : 0.583939935708, "name" : "Cyba (pp) Cd83", "shared_name" : "Cyba (pp) Cd83", "SUID" : 615535, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615734", "source" : "587966", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Tmsb4x", "weight" : 0.675202188622, "name" : "Cyba (pp) Tmsb4x", "shared_name" : "Cyba (pp) Tmsb4x", "SUID" : 615734, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615678", "source" : "587966", "target" : "588860", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.761874798659, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cyba (pp) Fcer1g", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 4.8361E-8, "weight" : 0.761874798659, "fusion" : "NA", "name" : "Cyba (pp) Fcer1g", "neighborhood" : "NA", "sourceEdge" : 44346.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cyba (pp) Fcer1g", "combinedscore" : "NA", "SUID" : 615678, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 7.5E-11, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "615633", "source" : "587966", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Gpnmb", "weight" : 0.628530411304, "name" : "Cyba (pp) Gpnmb", "shared_name" : "Cyba (pp) Gpnmb", "SUID" : 615633, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615730", "source" : "587966", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Vcam1", "weight" : 0.755969522043, "name" : "Cyba (pp) Vcam1", "shared_name" : "Cyba (pp) Vcam1", "SUID" : 615730, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615540", "source" : "587966", "target" : "588257", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Sdcbp", "weight" : 0.512235078322, "name" : "Cyba (pp) Sdcbp", "shared_name" : "Cyba (pp) Sdcbp", "SUID" : 615540, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615646", "source" : "587966", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) 6330416G13Rik", "weight" : 0.585310841613, "name" : "Cyba (pp) 6330416G13Rik", "shared_name" : "Cyba (pp) 6330416G13Rik", "SUID" : 615646, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615653", "source" : "587966", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Vsig4", "weight" : 0.696761905493, "name" : "Cyba (pp) Vsig4", "shared_name" : "Cyba (pp) Vsig4", "SUID" : 615653, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615691", "source" : "587966", "target" : "588927", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.584599189689, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cyba (pp) Hk3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 6.707758E-4, "weight" : 0.584599189689, "fusion" : "NA", "name" : "Cyba (pp) Hk3", "neighborhood" : "NA", "sourceEdge" : 44350.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cyba (pp) Hk3", "combinedscore" : "NA", "SUID" : 615691, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "615666", "source" : "587966", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Obrgrp", "weight" : 0.51228648892, "name" : "Cyba (pp) Obrgrp", "shared_name" : "Cyba (pp) Obrgrp", "SUID" : 615666, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615651", "source" : "587966", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Tpm4", "weight" : 0.515311557384, "name" : "Cyba (pp) Tpm4", "shared_name" : "Cyba (pp) Tpm4", "SUID" : 615651, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615593", "source" : "587966", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Renbp", "weight" : 0.45318702155, "name" : "Cyba (pp) Renbp", "shared_name" : "Cyba (pp) Renbp", "SUID" : 615593, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615643", "source" : "587966", "target" : "588697", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.7458670064, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cyba (pp) Cd52", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 2.7129E-8, "weight" : 0.7458670064, "fusion" : "NA", "name" : "Cyba (pp) Cd52", "neighborhood" : "NA", "sourceEdge" : 44327.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cyba (pp) Cd52", "combinedscore" : "NA", "SUID" : 615643, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 3.419839E-5, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "615532", "source" : "587966", "target" : "588233", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.631103078504, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cyba (pp) Laptm5", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 2.725E-9, "weight" : 0.631103078504, "fusion" : "NA", "name" : "Cyba (pp) Laptm5", "neighborhood" : "NA", "sourceEdge" : 44277.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cyba (pp) Laptm5", "combinedscore" : "NA", "SUID" : 615532, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "615582", "source" : "587966", "target" : "588432", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.451715914276, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cyba (pp) Kcnk6", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 3.101936E-6, "weight" : 0.451715914276, "fusion" : "NA", "name" : "Cyba (pp) Kcnk6", "neighborhood" : "NA", "sourceEdge" : 414285.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cyba (pp) Kcnk6", "combinedscore" : "NA", "SUID" : 615582, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "615518", "source" : "587966", "target" : "588185", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Aif1", "weight" : 0.462953761619, "name" : "Cyba (pp) Aif1", "shared_name" : "Cyba (pp) Aif1", "SUID" : 615518, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615529", "source" : "587966", "target" : "588227", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Gbp2", "weight" : 0.466849305699, "name" : "Cyba (pp) Gbp2", "shared_name" : "Cyba (pp) Gbp2", "SUID" : 615529, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615722", "source" : "587966", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Pld4", "weight" : 0.586279457056, "name" : "Cyba (pp) Pld4", "shared_name" : "Cyba (pp) Pld4", "SUID" : 615722, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615767", "source" : "587966", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Clec7a", "weight" : 0.478413854507, "name" : "Cyba (pp) Clec7a", "shared_name" : "Cyba (pp) Clec7a", "SUID" : 615767, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615560", "source" : "587966", "target" : "588335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Arpc1b", "weight" : 0.50906027169, "name" : "Cyba (pp) Arpc1b", "shared_name" : "Cyba (pp) Arpc1b", "SUID" : 615560, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615480", "source" : "587966", "target" : "588010", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Cd84", "weight" : 0.662247263121, "name" : "Cyba (pp) Cd84", "shared_name" : "Cyba (pp) Cd84", "SUID" : 615480, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "615619", "source" : "587966", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cyba (pp) Coro1a", "weight" : 0.666016154165, "name" : "Cyba (pp) Coro1a", "shared_name" : "Cyba (pp) Coro1a", "SUID" : 615619, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670562", "source" : "588707", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl9 (pp) H2-DMb1", "weight" : 0.571230584689, "name" : "Cxcl9 (pp) H2-DMb1", "shared_name" : "Cxcl9 (pp) H2-DMb1", "SUID" : 670562, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670560", "source" : "588707", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl9 (pp) Hk3", "weight" : 0.41840497812, "name" : "Cxcl9 (pp) Hk3", "shared_name" : "Cxcl9 (pp) Hk3", "SUID" : 670560, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670566", "source" : "588707", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl9 (pp) Vcam1", "weight" : 0.460701676936, "name" : "Cxcl9 (pp) Vcam1", "shared_name" : "Cxcl9 (pp) Vcam1", "SUID" : 670566, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670550", "source" : "588707", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl9 (pp) Vsig4", "weight" : 0.406043706386, "name" : "Cxcl9 (pp) Vsig4", "shared_name" : "Cxcl9 (pp) Vsig4", "SUID" : 670550, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670569", "source" : "588707", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl9 (pp) H2-DMa", "weight" : 0.679443395827, "name" : "Cxcl9 (pp) H2-DMa", "shared_name" : "Cxcl9 (pp) H2-DMa", "SUID" : 670569, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670557", "source" : "588707", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl9 (pp) Fcer1g", "weight" : 0.402167461942, "name" : "Cxcl9 (pp) Fcer1g", "shared_name" : "Cxcl9 (pp) Fcer1g", "SUID" : 670557, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670571", "source" : "588707", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl9 (pp) Fcgr4", "weight" : 0.454806508811, "name" : "Cxcl9 (pp) Fcgr4", "shared_name" : "Cxcl9 (pp) Fcgr4", "SUID" : 670571, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670547", "source" : "588707", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl9 (pp) Serpina3g", "weight" : 0.50291687302, "name" : "Cxcl9 (pp) Serpina3g", "shared_name" : "Cxcl9 (pp) Serpina3g", "SUID" : 670547, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670561", "source" : "588707", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl9 (pp) Cytip", "weight" : 0.490608196914, "name" : "Cxcl9 (pp) Cytip", "shared_name" : "Cxcl9 (pp) Cytip", "SUID" : 670561, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "670556", "source" : "588707", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl9 (pp) Plac8", "weight" : 0.401892697308, "name" : "Cxcl9 (pp) Plac8", "shared_name" : "Cxcl9 (pp) Plac8", "SUID" : 670556, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686535", "source" : "589344", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "C1qb (pp) Lrrc33", "weight" : 0.571262384897, "name" : "C1qb (pp) Lrrc33", "shared_name" : "C1qb (pp) Lrrc33", "SUID" : 686535, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686540", "source" : "589344", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "C1qb (pp) Il10ra", "weight" : 0.499766228196, "name" : "C1qb (pp) Il10ra", "shared_name" : "C1qb (pp) Il10ra", "SUID" : 686540, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686537", "source" : "589344", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "C1qb (pp) Lmo2", "weight" : 0.510147420984, "name" : "C1qb (pp) Lmo2", "shared_name" : "C1qb (pp) Lmo2", "SUID" : 686537, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602940", "source" : "587817", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fgd2 (pp) Coro1a", "weight" : 0.428657608691, "name" : "Fgd2 (pp) Coro1a", "shared_name" : "Fgd2 (pp) Coro1a", "SUID" : 602940, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602952", "source" : "587817", "target" : "588740", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fgd2 (pp) Plekha2", "weight" : 0.402998352752, "name" : "Fgd2 (pp) Plekha2", "shared_name" : "Fgd2 (pp) Plekha2", "SUID" : 602952, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602918", "source" : "587817", "target" : "588227", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fgd2 (pp) Gbp2", "weight" : 0.422336282259, "name" : "Fgd2 (pp) Gbp2", "shared_name" : "Fgd2 (pp) Gbp2", "SUID" : 602918, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602948", "source" : "587817", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fgd2 (pp) Tlr2", "weight" : 0.468951359996, "name" : "Fgd2 (pp) Tlr2", "shared_name" : "Fgd2 (pp) Tlr2", "SUID" : 602948, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602915", "source" : "587817", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fgd2 (pp) Pip4k2a", "weight" : 0.446917000123, "name" : "Fgd2 (pp) Pip4k2a", "shared_name" : "Fgd2 (pp) Pip4k2a", "SUID" : 602915, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602947", "source" : "587817", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fgd2 (pp) Serpina3g", "weight" : 0.482876526557, "name" : "Fgd2 (pp) Serpina3g", "shared_name" : "Fgd2 (pp) Serpina3g", "SUID" : 602947, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602951", "source" : "587817", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fgd2 (pp) Vsig4", "weight" : 0.405433938075, "name" : "Fgd2 (pp) Vsig4", "shared_name" : "Fgd2 (pp) Vsig4", "SUID" : 602951, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602970", "source" : "587817", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fgd2 (pp) Rasgrp1", "weight" : 0.458755850306, "name" : "Fgd2 (pp) Rasgrp1", "shared_name" : "Fgd2 (pp) Rasgrp1", "SUID" : 602970, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602939", "source" : "587817", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fgd2 (pp) Cd86", "weight" : 0.426764226493, "name" : "Fgd2 (pp) Cd86", "shared_name" : "Fgd2 (pp) Cd86", "SUID" : 602939, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602966", "source" : "587817", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fgd2 (pp) Cfp", "weight" : 0.412093661927, "name" : "Fgd2 (pp) Cfp", "shared_name" : "Fgd2 (pp) Cfp", "SUID" : 602966, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602923", "source" : "587817", "target" : "588257", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fgd2 (pp) Sdcbp", "weight" : 0.445870948271, "name" : "Fgd2 (pp) Sdcbp", "shared_name" : "Fgd2 (pp) Sdcbp", "SUID" : 602923, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602975", "source" : "587817", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fgd2 (pp) Fcgr4", "weight" : 0.416709538161, "name" : "Fgd2 (pp) Fcgr4", "shared_name" : "Fgd2 (pp) Fcgr4", "SUID" : 602975, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602943", "source" : "587817", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fgd2 (pp) Casp1", "weight" : 0.448321905249, "name" : "Fgd2 (pp) Casp1", "shared_name" : "Fgd2 (pp) Casp1", "SUID" : 602943, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "623670", "source" : "588057", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "4732429D16Rik (pp) Vsig4", "weight" : 0.431682402667, "name" : "4732429D16Rik (pp) Vsig4", "shared_name" : "4732429D16Rik (pp) Vsig4", "SUID" : 623670, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "623692", "source" : "588057", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "4732429D16Rik (pp) C1qb", "weight" : 0.423773611273, "name" : "4732429D16Rik (pp) C1qb", "shared_name" : "4732429D16Rik (pp) C1qb", "SUID" : 623692, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658123", "source" : "588490", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap30 (pp) Rasgrp1", "weight" : 0.461515127481, "name" : "Arhgap30 (pp) Rasgrp1", "shared_name" : "Arhgap30 (pp) Rasgrp1", "SUID" : 658123, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658078", "source" : "588490", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap30 (pp) 5033414D02Rik", "weight" : 0.517549543821, "name" : "Arhgap30 (pp) 5033414D02Rik", "shared_name" : "Arhgap30 (pp) 5033414D02Rik", "SUID" : 658078, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658115", "source" : "588490", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap30 (pp) Cfp", "weight" : 0.415656366948, "name" : "Arhgap30 (pp) Cfp", "shared_name" : "Arhgap30 (pp) Cfp", "SUID" : 658115, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658118", "source" : "588490", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap30 (pp) Vcam1", "weight" : 0.43197931734, "name" : "Arhgap30 (pp) Vcam1", "shared_name" : "Arhgap30 (pp) Vcam1", "SUID" : 658118, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658110", "source" : "588490", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap30 (pp) Csrp1", "weight" : 0.424220284177, "name" : "Arhgap30 (pp) Csrp1", "shared_name" : "Arhgap30 (pp) Csrp1", "SUID" : 658110, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658079", "source" : "588490", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap30 (pp) D12Ertd553e", "weight" : 0.491799750447, "name" : "Arhgap30 (pp) D12Ertd553e", "shared_name" : "Arhgap30 (pp) D12Ertd553e", "SUID" : 658079, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658133", "source" : "588490", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap30 (pp) Ear12", "weight" : 0.412909516683, "name" : "Arhgap30 (pp) Ear12", "shared_name" : "Arhgap30 (pp) Ear12", "SUID" : 658133, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658089", "source" : "588490", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap30 (pp) Slc15a3", "weight" : 0.492942875964, "name" : "Arhgap30 (pp) Slc15a3", "shared_name" : "Arhgap30 (pp) Slc15a3", "SUID" : 658089, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658097", "source" : "588490", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap30 (pp) Fcer1g", "weight" : 0.418439798367, "name" : "Arhgap30 (pp) Fcer1g", "shared_name" : "Arhgap30 (pp) Fcer1g", "SUID" : 658097, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658082", "source" : "588490", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap30 (pp) Serpina3g", "weight" : 0.428058023289, "name" : "Arhgap30 (pp) Serpina3g", "shared_name" : "Arhgap30 (pp) Serpina3g", "SUID" : 658082, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658138", "source" : "588490", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap30 (pp) Ear4", "weight" : 0.444488456268, "name" : "Arhgap30 (pp) Ear4", "shared_name" : "Arhgap30 (pp) Ear4", "SUID" : 658138, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658083", "source" : "588490", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap30 (pp) Tlr2", "weight" : 0.459152757117, "name" : "Arhgap30 (pp) Tlr2", "shared_name" : "Arhgap30 (pp) Tlr2", "SUID" : 658083, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658095", "source" : "588490", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap30 (pp) Plac8", "weight" : 0.485296257591, "name" : "Arhgap30 (pp) Plac8", "shared_name" : "Arhgap30 (pp) Plac8", "SUID" : 658095, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658094", "source" : "588490", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap30 (pp) Cotl1", "weight" : 0.422847674487, "name" : "Arhgap30 (pp) Cotl1", "shared_name" : "Arhgap30 (pp) Cotl1", "SUID" : 658094, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658136", "source" : "588490", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap30 (pp) Clec7a", "weight" : 0.412102073798, "name" : "Arhgap30 (pp) Clec7a", "shared_name" : "Arhgap30 (pp) Clec7a", "SUID" : 658136, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658073", "source" : "588490", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap30 (pp) Gngt2", "weight" : 0.557196612949, "name" : "Arhgap30 (pp) Gngt2", "shared_name" : "Arhgap30 (pp) Gngt2", "SUID" : 658073, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658080", "source" : "588490", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap30 (pp) Cd52", "weight" : 0.426048411471, "name" : "Arhgap30 (pp) Cd52", "shared_name" : "Arhgap30 (pp) Cd52", "SUID" : 658080, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658084", "source" : "588490", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap30 (pp) Axl", "weight" : 0.422467020795, "name" : "Arhgap30 (pp) Axl", "shared_name" : "Arhgap30 (pp) Axl", "SUID" : 658084, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658141", "source" : "588490", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap30 (pp) C1qb", "weight" : 0.428022431723, "name" : "Arhgap30 (pp) C1qb", "shared_name" : "Arhgap30 (pp) C1qb", "SUID" : 658141, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658072", "source" : "588490", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap30 (pp) Slc11a1", "weight" : 0.421007039978, "name" : "Arhgap30 (pp) Slc11a1", "shared_name" : "Arhgap30 (pp) Slc11a1", "SUID" : 658072, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658070", "source" : "588490", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap30 (pp) Coro1a", "weight" : 0.416877876701, "name" : "Arhgap30 (pp) Coro1a", "shared_name" : "Arhgap30 (pp) Coro1a", "SUID" : 658070, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658068", "source" : "588490", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap30 (pp) Snn", "weight" : 0.454565271567, "name" : "Arhgap30 (pp) Snn", "shared_name" : "Arhgap30 (pp) Snn", "SUID" : 658068, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658075", "source" : "588490", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap30 (pp) Casp1", "weight" : 0.419903394603, "name" : "Arhgap30 (pp) Casp1", "shared_name" : "Arhgap30 (pp) Casp1", "SUID" : 658075, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658100", "source" : "588490", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap30 (pp) Lgals3", "weight" : 0.415201250222, "name" : "Arhgap30 (pp) Lgals3", "shared_name" : "Arhgap30 (pp) Lgals3", "SUID" : 658100, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638804", "source" : "588233", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Selplg", "weight" : 0.639185334865, "name" : "Laptm5 (pp) Selplg", "shared_name" : "Laptm5 (pp) Selplg", "SUID" : 638804, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "639020", "source" : "588233", "target" : "589225", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) St6gal1", "weight" : 0.41719254172, "name" : "Laptm5 (pp) St6gal1", "shared_name" : "Laptm5 (pp) St6gal1", "SUID" : 639020, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638910", "source" : "588233", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Ccl6", "weight" : 0.494877296569, "name" : "Laptm5 (pp) Ccl6", "shared_name" : "Laptm5 (pp) Ccl6", "SUID" : 638910, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638828", "source" : "588233", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Renbp", "weight" : 0.635930520606, "name" : "Laptm5 (pp) Renbp", "shared_name" : "Laptm5 (pp) Renbp", "SUID" : 638828, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638791", "source" : "588233", "target" : "588342", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Mfge8", "weight" : 0.672038992522, "name" : "Laptm5 (pp) Mfge8", "shared_name" : "Laptm5 (pp) Mfge8", "SUID" : 638791, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638896", "source" : "588233", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Tpm4", "weight" : 0.452662760129, "name" : "Laptm5 (pp) Tpm4", "shared_name" : "Laptm5 (pp) Tpm4", "SUID" : 638896, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "639030", "source" : "588233", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Ppif", "weight" : 0.655936124059, "name" : "Laptm5 (pp) Ppif", "shared_name" : "Laptm5 (pp) Ppif", "SUID" : 639030, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638797", "source" : "588233", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Cyp7b1", "weight" : 0.591830075189, "name" : "Laptm5 (pp) Cyp7b1", "shared_name" : "Laptm5 (pp) Cyp7b1", "SUID" : 638797, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638871", "source" : "588233", "target" : "588636", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Repin1", "weight" : 0.444790802279, "name" : "Laptm5 (pp) Repin1", "shared_name" : "Laptm5 (pp) Repin1", "SUID" : 638871, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638800", "source" : "588233", "target" : "588365", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Tnfaip8l2", "weight" : 0.46160241169, "name" : "Laptm5 (pp) Tnfaip8l2", "shared_name" : "Laptm5 (pp) Tnfaip8l2", "SUID" : 638800, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638892", "source" : "588233", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Serpina3g", "weight" : 0.46195360458, "name" : "Laptm5 (pp) Serpina3g", "shared_name" : "Laptm5 (pp) Serpina3g", "SUID" : 638892, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638939", "source" : "588233", "target" : "588886", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.833009349359, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Laptm5 (pp) Lgals3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 9.04816E-4, "weight" : 0.833009349359, "fusion" : "NA", "name" : "Laptm5 (pp) Lgals3", "neighborhood" : "NA", "sourceEdge" : 83515.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Laptm5 (pp) Lgals3", "combinedscore" : "NA", "SUID" : 638939, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "639044", "source" : "588233", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.807838582466, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Laptm5 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 9.374E-9, "weight" : 0.807838582466, "fusion" : "NA", "name" : "Laptm5 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 83546.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Laptm5 (pp) Ear4", "combinedscore" : "NA", "SUID" : 639044, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "638811", "source" : "588233", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Cd14", "weight" : 0.584776017493, "name" : "Laptm5 (pp) Cd14", "shared_name" : "Laptm5 (pp) Cd14", "SUID" : 638811, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638764", "source" : "588233", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Sdc3", "weight" : 0.580414206223, "name" : "Laptm5 (pp) Sdc3", "shared_name" : "Laptm5 (pp) Sdc3", "SUID" : 638764, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638897", "source" : "588233", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Vsig4", "weight" : 0.698518578174, "name" : "Laptm5 (pp) Vsig4", "shared_name" : "Laptm5 (pp) Vsig4", "SUID" : 638897, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638988", "source" : "588233", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Snx10", "weight" : 0.579732559201, "name" : "Laptm5 (pp) Snx10", "shared_name" : "Laptm5 (pp) Snx10", "SUID" : 638988, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638923", "source" : "588233", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Cotl1", "weight" : 0.667735987194, "name" : "Laptm5 (pp) Cotl1", "shared_name" : "Laptm5 (pp) Cotl1", "SUID" : 638923, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "639032", "source" : "588233", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Abi3", "weight" : 0.608424151709, "name" : "Laptm5 (pp) Abi3", "shared_name" : "Laptm5 (pp) Abi3", "SUID" : 639032, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638893", "source" : "588233", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Tlr2", "weight" : 0.608515483172, "name" : "Laptm5 (pp) Tlr2", "shared_name" : "Laptm5 (pp) Tlr2", "SUID" : 638893, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "639039", "source" : "588233", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Clec7a", "weight" : 0.584054850359, "name" : "Laptm5 (pp) Clec7a", "shared_name" : "Laptm5 (pp) Clec7a", "SUID" : 639039, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638949", "source" : "588233", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Hk3", "weight" : 0.535171606915, "name" : "Laptm5 (pp) Hk3", "shared_name" : "Laptm5 (pp) Hk3", "SUID" : 638949, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "639028", "source" : "588233", "target" : "589256", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Timp1", "weight" : 0.516970099166, "name" : "Laptm5 (pp) Timp1", "shared_name" : "Laptm5 (pp) Timp1", "SUID" : 639028, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638818", "source" : "588233", "target" : "588439", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Vim", "weight" : 0.480027624213, "name" : "Laptm5 (pp) Vim", "shared_name" : "Laptm5 (pp) Vim", "SUID" : 638818, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638886", "source" : "588233", "target" : "588697", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.610577527936, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Laptm5 (pp) Cd52", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 2.618E-9, "weight" : 0.610577527936, "fusion" : "NA", "name" : "Laptm5 (pp) Cd52", "neighborhood" : "NA", "sourceEdge" : 83494.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Laptm5 (pp) Cd52", "combinedscore" : "NA", "SUID" : 638886, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "638774", "source" : "588233", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Ms4a6d", "weight" : 0.71116354404, "name" : "Laptm5 (pp) Ms4a6d", "shared_name" : "Laptm5 (pp) Ms4a6d", "SUID" : 638774, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638808", "source" : "588233", "target" : "588394", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Lyzs", "weight" : 0.47737865439, "name" : "Laptm5 (pp) Lyzs", "shared_name" : "Laptm5 (pp) Lyzs", "SUID" : 638808, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638768", "source" : "588233", "target" : "588257", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Sdcbp", "weight" : 0.494196582696, "name" : "Laptm5 (pp) Sdcbp", "shared_name" : "Laptm5 (pp) Sdcbp", "SUID" : 638768, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638881", "source" : "588233", "target" : "588678", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Fxyd5", "weight" : 0.431560342607, "name" : "Laptm5 (pp) Fxyd5", "shared_name" : "Laptm5 (pp) Fxyd5", "SUID" : 638881, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638932", "source" : "588233", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Fcgr3", "weight" : 0.420085375033, "name" : "Laptm5 (pp) Fcgr3", "shared_name" : "Laptm5 (pp) Fcgr3", "SUID" : 638932, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "639033", "source" : "588233", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Ear12", "weight" : 0.544344786091, "name" : "Laptm5 (pp) Ear12", "shared_name" : "Laptm5 (pp) Ear12", "SUID" : 639033, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "639050", "source" : "588233", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) C1qb", "weight" : 0.674668879774, "name" : "Laptm5 (pp) C1qb", "shared_name" : "Laptm5 (pp) C1qb", "SUID" : 639050, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638968", "source" : "588233", "target" : "589030", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Soat1", "weight" : 0.44094141786, "name" : "Laptm5 (pp) Soat1", "shared_name" : "Laptm5 (pp) Soat1", "SUID" : 638968, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638966", "source" : "588233", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Csrp1", "weight" : 0.628595558057, "name" : "Laptm5 (pp) Csrp1", "shared_name" : "Laptm5 (pp) Csrp1", "SUID" : 638966, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638861", "source" : "588233", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Gngt2", "weight" : 0.544089914537, "name" : "Laptm5 (pp) Gngt2", "shared_name" : "Laptm5 (pp) Gngt2", "SUID" : 638861, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638794", "source" : "588233", "target" : "588351", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Ttc39a", "weight" : 0.601064336523, "name" : "Laptm5 (pp) Ttc39a", "shared_name" : "Laptm5 (pp) Ttc39a", "SUID" : 638794, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "639038", "source" : "588233", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Cd53", "weight" : 0.419229527669, "name" : "Laptm5 (pp) Cd53", "shared_name" : "Laptm5 (pp) Cd53", "SUID" : 639038, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638856", "source" : "588233", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Coro1a", "weight" : 0.597070591224, "name" : "Laptm5 (pp) Coro1a", "shared_name" : "Laptm5 (pp) Coro1a", "SUID" : 638856, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "639047", "source" : "588233", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Prkcd", "weight" : 0.40287860869, "name" : "Laptm5 (pp) Prkcd", "shared_name" : "Laptm5 (pp) Prkcd", "SUID" : 639047, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638859", "source" : "588233", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Slc11a1", "weight" : 0.66292092466, "name" : "Laptm5 (pp) Slc11a1", "shared_name" : "Laptm5 (pp) Slc11a1", "SUID" : 638859, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638992", "source" : "588233", "target" : "589113", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Ms4a7", "weight" : 0.477128766139, "name" : "Laptm5 (pp) Ms4a7", "shared_name" : "Laptm5 (pp) Ms4a7", "SUID" : 638992, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638982", "source" : "588233", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Btk", "weight" : 0.54578947896, "name" : "Laptm5 (pp) Btk", "shared_name" : "Laptm5 (pp) Btk", "SUID" : 638982, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638815", "source" : "588233", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Clec4n", "weight" : 0.589898849053, "name" : "Laptm5 (pp) Clec4n", "shared_name" : "Laptm5 (pp) Clec4n", "SUID" : 638815, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "639062", "source" : "588233", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Il10ra", "weight" : 0.515371472149, "name" : "Laptm5 (pp) Il10ra", "shared_name" : "Laptm5 (pp) Il10ra", "SUID" : 639062, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "639004", "source" : "588233", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Rasgrp1", "weight" : 0.572837925874, "name" : "Laptm5 (pp) Rasgrp1", "shared_name" : "Laptm5 (pp) Rasgrp1", "SUID" : 639004, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638907", "source" : "588233", "target" : "588782", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.710457603239, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Laptm5 (pp) Slc15a3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 3.17E-10, "weight" : 0.710457603239, "fusion" : "NA", "name" : "Laptm5 (pp) Slc15a3", "neighborhood" : "NA", "sourceEdge" : 83505.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Laptm5 (pp) Slc15a3", "combinedscore" : "NA", "SUID" : 638907, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "638880", "source" : "588233", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) D12Ertd553e", "weight" : 0.497589099561, "name" : "Laptm5 (pp) D12Ertd553e", "shared_name" : "Laptm5 (pp) D12Ertd553e", "SUID" : 638880, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638930", "source" : "588233", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Fcer1g", "weight" : 0.650569434845, "name" : "Laptm5 (pp) Fcer1g", "shared_name" : "Laptm5 (pp) Fcer1g", "SUID" : 638930, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638824", "source" : "588233", "target" : "588464", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Akr1b3", "weight" : 0.428758234554, "name" : "Laptm5 (pp) Akr1b3", "shared_name" : "Laptm5 (pp) Akr1b3", "SUID" : 638824, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638853", "source" : "588233", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Snn", "weight" : 0.692425567709, "name" : "Laptm5 (pp) Snn", "shared_name" : "Laptm5 (pp) Snn", "SUID" : 638853, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "639026", "source" : "588233", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Trem2", "weight" : 0.618469109164, "name" : "Laptm5 (pp) Trem2", "shared_name" : "Laptm5 (pp) Trem2", "SUID" : 639026, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638928", "source" : "588233", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Plac8", "weight" : 0.564267517727, "name" : "Laptm5 (pp) Plac8", "shared_name" : "Laptm5 (pp) Plac8", "SUID" : 638928, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638831", "source" : "588233", "target" : "588492", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Ncf4", "weight" : 0.470868661671, "name" : "Laptm5 (pp) Ncf4", "shared_name" : "Laptm5 (pp) Ncf4", "SUID" : 638831, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638909", "source" : "588233", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) 5430435G22Rik", "weight" : 0.548542350885, "name" : "Laptm5 (pp) 5430435G22Rik", "shared_name" : "Laptm5 (pp) 5430435G22Rik", "SUID" : 638909, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638950", "source" : "588233", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Cytip", "weight" : 0.592316874294, "name" : "Laptm5 (pp) Cytip", "shared_name" : "Laptm5 (pp) Cytip", "SUID" : 638950, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638823", "source" : "588233", "target" : "588461", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Tbxas1", "weight" : 0.628140966139, "name" : "Laptm5 (pp) Tbxas1", "shared_name" : "Laptm5 (pp) Tbxas1", "SUID" : 638823, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "639054", "source" : "588233", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Lrrc33", "weight" : 0.446563835741, "name" : "Laptm5 (pp) Lrrc33", "shared_name" : "Laptm5 (pp) Lrrc33", "SUID" : 639054, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638816", "source" : "588233", "target" : "588432", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Kcnk6", "weight" : 0.453565827517, "name" : "Laptm5 (pp) Kcnk6", "shared_name" : "Laptm5 (pp) Kcnk6", "SUID" : 638816, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638919", "source" : "588233", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Pla2g15", "weight" : 0.641515549553, "name" : "Laptm5 (pp) Pla2g15", "shared_name" : "Laptm5 (pp) Pla2g15", "SUID" : 638919, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638819", "source" : "588233", "target" : "588444", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.570577144535, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Laptm5 (pp) Cd63", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 2.325927E-4, "weight" : 0.570577144535, "fusion" : "NA", "name" : "Laptm5 (pp) Cd63", "neighborhood" : "NA", "sourceEdge" : 83467.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Laptm5 (pp) Cd63", "combinedscore" : "NA", "SUID" : 638819, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "639018", "source" : "588233", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Serpinb6a", "weight" : 0.78274783252, "name" : "Laptm5 (pp) Serpinb6a", "shared_name" : "Laptm5 (pp) Serpinb6a", "SUID" : 639018, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638890", "source" : "588233", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) 6330416G13Rik", "weight" : 0.433992843171, "name" : "Laptm5 (pp) 6330416G13Rik", "shared_name" : "Laptm5 (pp) 6330416G13Rik", "SUID" : 638890, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638783", "source" : "588233", "target" : "588322", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Pfkfb4", "weight" : 0.625502312617, "name" : "Laptm5 (pp) Pfkfb4", "shared_name" : "Laptm5 (pp) Pfkfb4", "SUID" : 638783, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638781", "source" : "588233", "target" : "588313", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Zfp90", "weight" : 0.462270838422, "name" : "Laptm5 (pp) Zfp90", "shared_name" : "Laptm5 (pp) Zfp90", "SUID" : 638781, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "639023", "source" : "588233", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Ear10", "weight" : 0.618214063779, "name" : "Laptm5 (pp) Ear10", "shared_name" : "Laptm5 (pp) Ear10", "SUID" : 639023, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "639053", "source" : "588233", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Tspan33", "weight" : 0.46095414523, "name" : "Laptm5 (pp) Tspan33", "shared_name" : "Laptm5 (pp) Tspan33", "SUID" : 639053, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638767", "source" : "588233", "target" : "588254", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Irf8", "weight" : 0.400890039827, "name" : "Laptm5 (pp) Irf8", "shared_name" : "Laptm5 (pp) Irf8", "SUID" : 638767, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638879", "source" : "588233", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) 5033414D02Rik", "weight" : 0.587510900976, "name" : "Laptm5 (pp) 5033414D02Rik", "shared_name" : "Laptm5 (pp) 5033414D02Rik", "SUID" : 638879, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "639052", "source" : "588233", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Fblim1", "weight" : 0.458350548116, "name" : "Laptm5 (pp) Fblim1", "shared_name" : "Laptm5 (pp) Fblim1", "SUID" : 639052, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638914", "source" : "588233", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Obrgrp", "weight" : 0.570643654318, "name" : "Laptm5 (pp) Obrgrp", "shared_name" : "Laptm5 (pp) Obrgrp", "SUID" : 638914, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638999", "source" : "588233", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Tmsb4x", "weight" : 0.421121276747, "name" : "Laptm5 (pp) Tmsb4x", "shared_name" : "Laptm5 (pp) Tmsb4x", "SUID" : 638999, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638763", "source" : "588233", "target" : "588244", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Gltp", "weight" : 0.490984580464, "name" : "Laptm5 (pp) Gltp", "shared_name" : "Laptm5 (pp) Gltp", "SUID" : 638763, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638822", "source" : "588233", "target" : "588459", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Pop5", "weight" : 0.482522048159, "name" : "Laptm5 (pp) Pop5", "shared_name" : "Laptm5 (pp) Pop5", "SUID" : 638822, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638769", "source" : "588233", "target" : "588262", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) P2ry13", "weight" : 0.42564365193, "name" : "Laptm5 (pp) P2ry13", "shared_name" : "Laptm5 (pp) P2ry13", "SUID" : 638769, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638826", "source" : "588233", "target" : "588472", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Ly9", "weight" : 0.472908485617, "name" : "Laptm5 (pp) Ly9", "shared_name" : "Laptm5 (pp) Ly9", "SUID" : 638826, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638849", "source" : "588233", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Cd86", "weight" : 0.7690322624, "name" : "Laptm5 (pp) Cd86", "shared_name" : "Laptm5 (pp) Cd86", "SUID" : 638849, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638761", "source" : "588233", "target" : "588242", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Cd83", "weight" : 0.543500329012, "name" : "Laptm5 (pp) Cd83", "shared_name" : "Laptm5 (pp) Cd83", "SUID" : 638761, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638983", "source" : "588233", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Cfp", "weight" : 0.786930363995, "name" : "Laptm5 (pp) Cfp", "shared_name" : "Laptm5 (pp) Cfp", "SUID" : 638983, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "639049", "source" : "588233", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Ly86", "weight" : 0.660741653766, "name" : "Laptm5 (pp) Ly86", "shared_name" : "Laptm5 (pp) Ly86", "SUID" : 639049, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638867", "source" : "588233", "target" : "588620", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Olfml3", "weight" : 0.435744683419, "name" : "Laptm5 (pp) Olfml3", "shared_name" : "Laptm5 (pp) Olfml3", "SUID" : 638867, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638870", "source" : "588233", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Casp1", "weight" : 0.524438900039, "name" : "Laptm5 (pp) Casp1", "shared_name" : "Laptm5 (pp) Casp1", "SUID" : 638870, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638780", "source" : "588233", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Cxcl16", "weight" : 0.631330215757, "name" : "Laptm5 (pp) Cxcl16", "shared_name" : "Laptm5 (pp) Cxcl16", "SUID" : 638780, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638911", "source" : "588233", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Tmem86a", "weight" : 0.803462853215, "name" : "Laptm5 (pp) Tmem86a", "shared_name" : "Laptm5 (pp) Tmem86a", "SUID" : 638911, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638894", "source" : "588233", "target" : "588727", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.720175728575, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Laptm5 (pp) Axl", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 5.026034E-4, "weight" : 0.720175728575, "fusion" : "NA", "name" : "Laptm5 (pp) Axl", "neighborhood" : "NA", "sourceEdge" : 83499.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Laptm5 (pp) Axl", "combinedscore" : "NA", "SUID" : 638894, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "639035", "source" : "588233", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Fcgr4", "weight" : 0.666470192105, "name" : "Laptm5 (pp) Fcgr4", "shared_name" : "Laptm5 (pp) Fcgr4", "SUID" : 639035, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638874", "source" : "588233", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Gpnmb", "weight" : 0.681603402274, "name" : "Laptm5 (pp) Gpnmb", "shared_name" : "Laptm5 (pp) Gpnmb", "SUID" : 638874, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638994", "source" : "588233", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Vcam1", "weight" : 0.578338582551, "name" : "Laptm5 (pp) Vcam1", "shared_name" : "Laptm5 (pp) Vcam1", "SUID" : 638994, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "639022", "source" : "588233", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) H2-DMa", "weight" : 0.429305683317, "name" : "Laptm5 (pp) H2-DMa", "shared_name" : "Laptm5 (pp) H2-DMa", "SUID" : 639022, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638900", "source" : "588233", "target" : "588742", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Ifitm6", "weight" : 0.447890569244, "name" : "Laptm5 (pp) Ifitm6", "shared_name" : "Laptm5 (pp) Ifitm6", "SUID" : 638900, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638829", "source" : "588233", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Laptm5 (pp) Plscr1", "weight" : 0.47550749141, "name" : "Laptm5 (pp) Plscr1", "shared_name" : "Laptm5 (pp) Plscr1", "SUID" : 638829, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630440", "source" : "588134", "target" : "588212", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Anxa3", "weight" : 0.451537794588, "name" : "Mlkl (pp) Anxa3", "shared_name" : "Mlkl (pp) Anxa3", "SUID" : 630440, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630649", "source" : "588134", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Ear12", "weight" : 0.405409322764, "name" : "Mlkl (pp) Ear12", "shared_name" : "Mlkl (pp) Ear12", "SUID" : 630649, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630564", "source" : "588134", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) 5430435G22Rik", "weight" : 0.459063118648, "name" : "Mlkl (pp) 5430435G22Rik", "shared_name" : "Mlkl (pp) 5430435G22Rik", "SUID" : 630564, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630580", "source" : "588134", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Lgals3", "weight" : 0.54458717167, "name" : "Mlkl (pp) Lgals3", "shared_name" : "Mlkl (pp) Lgals3", "SUID" : 630580, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630550", "source" : "588134", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Tlr2", "weight" : 0.474278003203, "name" : "Mlkl (pp) Tlr2", "shared_name" : "Mlkl (pp) Tlr2", "SUID" : 630550, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630431", "source" : "588134", "target" : "588151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Ccl4", "weight" : 0.441388510443, "name" : "Mlkl (pp) Ccl4", "shared_name" : "Mlkl (pp) Ccl4", "SUID" : 630431, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630574", "source" : "588134", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Plac8", "weight" : 0.516555569131, "name" : "Mlkl (pp) Plac8", "shared_name" : "Mlkl (pp) Plac8", "SUID" : 630574, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630540", "source" : "588134", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) 5033414D02Rik", "weight" : 0.55710868081, "name" : "Mlkl (pp) 5033414D02Rik", "shared_name" : "Mlkl (pp) 5033414D02Rik", "SUID" : 630540, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630551", "source" : "588134", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Axl", "weight" : 0.477640032307, "name" : "Mlkl (pp) Axl", "shared_name" : "Mlkl (pp) Axl", "SUID" : 630551, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630476", "source" : "588134", "target" : "588351", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Ttc39a", "weight" : 0.483747011574, "name" : "Mlkl (pp) Ttc39a", "shared_name" : "Mlkl (pp) Ttc39a", "SUID" : 630476, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630554", "source" : "588134", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Vsig4", "weight" : 0.439224671292, "name" : "Mlkl (pp) Vsig4", "shared_name" : "Mlkl (pp) Vsig4", "SUID" : 630554, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630627", "source" : "588134", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Rasgrp1", "weight" : 0.49376810553, "name" : "Mlkl (pp) Rasgrp1", "shared_name" : "Mlkl (pp) Rasgrp1", "SUID" : 630627, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630446", "source" : "588134", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Laptm5", "weight" : 0.617513344842, "name" : "Mlkl (pp) Laptm5", "shared_name" : "Mlkl (pp) Laptm5", "SUID" : 630446, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630643", "source" : "588134", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Ear10", "weight" : 0.472706167695, "name" : "Mlkl (pp) Ear10", "shared_name" : "Mlkl (pp) Ear10", "SUID" : 630643, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630523", "source" : "588134", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Slc11a1", "weight" : 0.419355505685, "name" : "Mlkl (pp) Slc11a1", "shared_name" : "Mlkl (pp) Slc11a1", "SUID" : 630523, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630516", "source" : "588134", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Cd86", "weight" : 0.559939695527, "name" : "Mlkl (pp) Cd86", "shared_name" : "Mlkl (pp) Cd86", "SUID" : 630516, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630479", "source" : "588134", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Cyp7b1", "weight" : 0.423859530585, "name" : "Mlkl (pp) Cyp7b1", "shared_name" : "Mlkl (pp) Cyp7b1", "SUID" : 630479, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630503", "source" : "588134", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Plscr1", "weight" : 0.48415040243, "name" : "Mlkl (pp) Plscr1", "shared_name" : "Mlkl (pp) Plscr1", "SUID" : 630503, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630648", "source" : "588134", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Ppif", "weight" : 0.543974791337, "name" : "Mlkl (pp) Ppif", "shared_name" : "Mlkl (pp) Ppif", "SUID" : 630648, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630661", "source" : "588134", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Ly86", "weight" : 0.434281306819, "name" : "Mlkl (pp) Ly86", "shared_name" : "Mlkl (pp) Ly86", "SUID" : 630661, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630586", "source" : "588134", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Hk3", "weight" : 0.496174165958, "name" : "Mlkl (pp) Hk3", "shared_name" : "Mlkl (pp) Hk3", "SUID" : 630586, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630662", "source" : "588134", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) C1qb", "weight" : 0.406039491008, "name" : "Mlkl (pp) C1qb", "shared_name" : "Mlkl (pp) C1qb", "SUID" : 630662, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630473", "source" : "588134", "target" : "588342", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Mfge8", "weight" : 0.526310323103, "name" : "Mlkl (pp) Mfge8", "shared_name" : "Mlkl (pp) Mfge8", "SUID" : 630473, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630546", "source" : "588134", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Cd52", "weight" : 0.459773030229, "name" : "Mlkl (pp) Cd52", "shared_name" : "Mlkl (pp) Cd52", "SUID" : 630546, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630572", "source" : "588134", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Cotl1", "weight" : 0.503104766772, "name" : "Mlkl (pp) Cotl1", "shared_name" : "Mlkl (pp) Cotl1", "SUID" : 630572, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630520", "source" : "588134", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Coro1a", "weight" : 0.411700722717, "name" : "Mlkl (pp) Coro1a", "shared_name" : "Mlkl (pp) Coro1a", "SUID" : 630520, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630565", "source" : "588134", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Tmem86a", "weight" : 0.540802775954, "name" : "Mlkl (pp) Tmem86a", "shared_name" : "Mlkl (pp) Tmem86a", "SUID" : 630565, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630638", "source" : "588134", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Serpinb6a", "weight" : 0.493956364407, "name" : "Mlkl (pp) Serpinb6a", "shared_name" : "Mlkl (pp) Serpinb6a", "SUID" : 630638, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630497", "source" : "588134", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Cd63", "weight" : 0.401522057118, "name" : "Mlkl (pp) Cd63", "shared_name" : "Mlkl (pp) Cd63", "SUID" : 630497, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630600", "source" : "588134", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Csrp1", "weight" : 0.474324221014, "name" : "Mlkl (pp) Csrp1", "shared_name" : "Mlkl (pp) Csrp1", "SUID" : 630600, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630567", "source" : "588134", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Obrgrp", "weight" : 0.435989156924, "name" : "Mlkl (pp) Obrgrp", "shared_name" : "Mlkl (pp) Obrgrp", "SUID" : 630567, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630466", "source" : "588134", "target" : "588313", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Zfp90", "weight" : 0.408754278045, "name" : "Mlkl (pp) Zfp90", "shared_name" : "Mlkl (pp) Zfp90", "SUID" : 630466, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630486", "source" : "588134", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Selplg", "weight" : 0.508512671324, "name" : "Mlkl (pp) Selplg", "shared_name" : "Mlkl (pp) Selplg", "SUID" : 630486, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630613", "source" : "588134", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Snx10", "weight" : 0.422474328092, "name" : "Mlkl (pp) Snx10", "shared_name" : "Mlkl (pp) Snx10", "SUID" : 630613, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630549", "source" : "588134", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Serpina3g", "weight" : 0.513324969646, "name" : "Mlkl (pp) Serpina3g", "shared_name" : "Mlkl (pp) Serpina3g", "SUID" : 630549, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630553", "source" : "588134", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Tpm4", "weight" : 0.45435331948, "name" : "Mlkl (pp) Tpm4", "shared_name" : "Mlkl (pp) Tpm4", "SUID" : 630553, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630618", "source" : "588134", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Vcam1", "weight" : 0.454985815986, "name" : "Mlkl (pp) Vcam1", "shared_name" : "Mlkl (pp) Vcam1", "SUID" : 630618, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630611", "source" : "588134", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Cfp", "weight" : 0.513741051097, "name" : "Mlkl (pp) Cfp", "shared_name" : "Mlkl (pp) Cfp", "SUID" : 630611, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630500", "source" : "588134", "target" : "588461", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Tbxas1", "weight" : 0.407392805944, "name" : "Mlkl (pp) Tbxas1", "shared_name" : "Mlkl (pp) Tbxas1", "SUID" : 630500, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630576", "source" : "588134", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Fcer1g", "weight" : 0.485794474294, "name" : "Mlkl (pp) Fcer1g", "shared_name" : "Mlkl (pp) Fcer1g", "SUID" : 630576, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630650", "source" : "588134", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Fcgr4", "weight" : 0.531236716992, "name" : "Mlkl (pp) Fcgr4", "shared_name" : "Mlkl (pp) Fcgr4", "SUID" : 630650, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630432", "source" : "588134", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Pip4k2a", "weight" : 0.417589791619, "name" : "Mlkl (pp) Pip4k2a", "shared_name" : "Mlkl (pp) Pip4k2a", "SUID" : 630432, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630460", "source" : "588134", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Ms4a6d", "weight" : 0.492741711847, "name" : "Mlkl (pp) Ms4a6d", "shared_name" : "Mlkl (pp) Ms4a6d", "SUID" : 630460, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630562", "source" : "588134", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Slc15a3", "weight" : 0.557693692245, "name" : "Mlkl (pp) Slc15a3", "shared_name" : "Mlkl (pp) Slc15a3", "SUID" : 630562, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630657", "source" : "588134", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Ear4", "weight" : 0.562446878738, "name" : "Mlkl (pp) Ear4", "shared_name" : "Mlkl (pp) Ear4", "SUID" : 630657, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630519", "source" : "588134", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mlkl (pp) Snn", "weight" : 0.453491270235, "name" : "Mlkl (pp) Snn", "shared_name" : "Mlkl (pp) Snn", "SUID" : 630519, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626084", "source" : "588086", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Tmsb4x", "weight" : 0.498864839596, "name" : "Iqgap1 (pp) Tmsb4x", "shared_name" : "Iqgap1 (pp) Tmsb4x", "SUID" : 626084, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626121", "source" : "588086", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) C1qb", "weight" : 0.427651546057, "name" : "Iqgap1 (pp) C1qb", "shared_name" : "Iqgap1 (pp) C1qb", "SUID" : 626121, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625908", "source" : "588086", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Pip4k2a", "weight" : 0.634250526572, "name" : "Iqgap1 (pp) Pip4k2a", "shared_name" : "Iqgap1 (pp) Pip4k2a", "SUID" : 625908, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625923", "source" : "588086", "target" : "588242", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Cd83", "weight" : 0.41934605394, "name" : "Iqgap1 (pp) Cd83", "shared_name" : "Iqgap1 (pp) Cd83", "SUID" : 625923, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626041", "source" : "588086", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Lgals3", "weight" : 0.575314191157, "name" : "Iqgap1 (pp) Lgals3", "shared_name" : "Iqgap1 (pp) Lgals3", "SUID" : 626041, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626114", "source" : "588086", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Clec7a", "weight" : 0.447571201469, "name" : "Iqgap1 (pp) Clec7a", "shared_name" : "Iqgap1 (pp) Clec7a", "SUID" : 626114, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625991", "source" : "588086", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Coro1a", "weight" : 0.553389844041, "name" : "Iqgap1 (pp) Coro1a", "shared_name" : "Iqgap1 (pp) Coro1a", "SUID" : 625991, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625950", "source" : "588086", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Cyp7b1", "weight" : 0.559690542322, "name" : "Iqgap1 (pp) Cyp7b1", "shared_name" : "Iqgap1 (pp) Cyp7b1", "SUID" : 625950, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625926", "source" : "588086", "target" : "588254", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Irf8", "weight" : 0.401382472713, "name" : "Iqgap1 (pp) Irf8", "shared_name" : "Iqgap1 (pp) Irf8", "SUID" : 625926, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625998", "source" : "588086", "target" : "588620", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Olfml3", "weight" : 0.43329779007, "name" : "Iqgap1 (pp) Olfml3", "shared_name" : "Iqgap1 (pp) Olfml3", "SUID" : 625998, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625901", "source" : "588086", "target" : "588113", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Tgfbr2", "weight" : 0.439486306691, "name" : "Iqgap1 (pp) Tgfbr2", "shared_name" : "Iqgap1 (pp) Tgfbr2", "SUID" : 625901, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626008", "source" : "588086", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Cd52", "weight" : 0.582169816289, "name" : "Iqgap1 (pp) Cd52", "shared_name" : "Iqgap1 (pp) Cd52", "SUID" : 626008, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625960", "source" : "588086", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Cd14", "weight" : 0.480330731535, "name" : "Iqgap1 (pp) Cd14", "shared_name" : "Iqgap1 (pp) Cd14", "SUID" : 625960, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625966", "source" : "588086", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Cd63", "weight" : 0.576032709536, "name" : "Iqgap1 (pp) Cd63", "shared_name" : "Iqgap1 (pp) Cd63", "SUID" : 625966, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626026", "source" : "588086", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Obrgrp", "weight" : 0.637374378231, "name" : "Iqgap1 (pp) Obrgrp", "shared_name" : "Iqgap1 (pp) Obrgrp", "SUID" : 626026, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625985", "source" : "588086", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Cd86", "weight" : 0.516577368605, "name" : "Iqgap1 (pp) Cd86", "shared_name" : "Iqgap1 (pp) Cd86", "SUID" : 625985, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625976", "source" : "588086", "target" : "588512", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) H2-Eb1", "weight" : 0.415351992322, "name" : "Iqgap1 (pp) H2-Eb1", "shared_name" : "Iqgap1 (pp) H2-Eb1", "SUID" : 625976, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626123", "source" : "588086", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Fblim1", "weight" : 0.415566166249, "name" : "Iqgap1 (pp) Fblim1", "shared_name" : "Iqgap1 (pp) Fblim1", "SUID" : 626123, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626007", "source" : "588086", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) D12Ertd553e", "weight" : 0.413381789324, "name" : "Iqgap1 (pp) D12Ertd553e", "shared_name" : "Iqgap1 (pp) D12Ertd553e", "SUID" : 626007, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626059", "source" : "588086", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Csrp1", "weight" : 0.653975927531, "name" : "Iqgap1 (pp) Csrp1", "shared_name" : "Iqgap1 (pp) Csrp1", "SUID" : 626059, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626031", "source" : "588086", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Cotl1", "weight" : 0.583863857034, "name" : "Iqgap1 (pp) Cotl1", "shared_name" : "Iqgap1 (pp) Cotl1", "SUID" : 626031, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626021", "source" : "588086", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Slc15a3", "weight" : 0.582655734712, "name" : "Iqgap1 (pp) Slc15a3", "shared_name" : "Iqgap1 (pp) Slc15a3", "SUID" : 626021, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625907", "source" : "588086", "target" : "588151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Ccl4", "weight" : 0.407620912269, "name" : "Iqgap1 (pp) Ccl4", "shared_name" : "Iqgap1 (pp) Ccl4", "SUID" : 625907, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626035", "source" : "588086", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Fcer1g", "weight" : 0.52637397343, "name" : "Iqgap1 (pp) Fcer1g", "shared_name" : "Iqgap1 (pp) Fcer1g", "SUID" : 626035, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626120", "source" : "588086", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Ly86", "weight" : 0.431258611053, "name" : "Iqgap1 (pp) Ly86", "shared_name" : "Iqgap1 (pp) Ly86", "SUID" : 626120, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625995", "source" : "588086", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Gngt2", "weight" : 0.430841310628, "name" : "Iqgap1 (pp) Gngt2", "shared_name" : "Iqgap1 (pp) Gngt2", "SUID" : 625995, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626075", "source" : "588086", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Snx10", "weight" : 0.402550222482, "name" : "Iqgap1 (pp) Snx10", "shared_name" : "Iqgap1 (pp) Snx10", "SUID" : 626075, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626052", "source" : "588086", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) H2-DMb1", "weight" : 0.432272159449, "name" : "Iqgap1 (pp) H2-DMb1", "shared_name" : "Iqgap1 (pp) H2-DMb1", "SUID" : 626052, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625938", "source" : "588086", "target" : "588313", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Zfp90", "weight" : 0.453086280825, "name" : "Iqgap1 (pp) Zfp90", "shared_name" : "Iqgap1 (pp) Zfp90", "SUID" : 625938, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625989", "source" : "588086", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Snn", "weight" : 0.403615074861, "name" : "Iqgap1 (pp) Snn", "shared_name" : "Iqgap1 (pp) Snn", "SUID" : 625989, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625948", "source" : "588086", "target" : "588351", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Ttc39a", "weight" : 0.530137176868, "name" : "Iqgap1 (pp) Ttc39a", "shared_name" : "Iqgap1 (pp) Ttc39a", "SUID" : 625948, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626071", "source" : "588086", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Cfp", "weight" : 0.476627258142, "name" : "Iqgap1 (pp) Cfp", "shared_name" : "Iqgap1 (pp) Cfp", "SUID" : 626071, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626012", "source" : "588086", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Serpina3g", "weight" : 0.523337237416, "name" : "Iqgap1 (pp) Serpina3g", "shared_name" : "Iqgap1 (pp) Serpina3g", "SUID" : 626012, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625936", "source" : "588086", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Cxcl16", "weight" : 0.621612331665, "name" : "Iqgap1 (pp) Cxcl16", "shared_name" : "Iqgap1 (pp) Cxcl16", "SUID" : 625936, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625924", "source" : "588086", "target" : "588244", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Gltp", "weight" : 0.480669501352, "name" : "Iqgap1 (pp) Gltp", "shared_name" : "Iqgap1 (pp) Gltp", "SUID" : 625924, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625920", "source" : "588086", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Laptm5", "weight" : 0.517650519076, "name" : "Iqgap1 (pp) Laptm5", "shared_name" : "Iqgap1 (pp) Laptm5", "SUID" : 625920, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625932", "source" : "588086", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Ms4a6d", "weight" : 0.481353299951, "name" : "Iqgap1 (pp) Ms4a6d", "shared_name" : "Iqgap1 (pp) Ms4a6d", "SUID" : 625932, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626111", "source" : "588086", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Fcgr4", "weight" : 0.543174501038, "name" : "Iqgap1 (pp) Fcgr4", "shared_name" : "Iqgap1 (pp) Fcgr4", "SUID" : 626111, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626024", "source" : "588086", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Tmem86a", "weight" : 0.474704407502, "name" : "Iqgap1 (pp) Tmem86a", "shared_name" : "Iqgap1 (pp) Tmem86a", "SUID" : 626024, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626013", "source" : "588086", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Tlr2", "weight" : 0.635882945567, "name" : "Iqgap1 (pp) Tlr2", "shared_name" : "Iqgap1 (pp) Tlr2", "SUID" : 626013, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626048", "source" : "588086", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Hk3", "weight" : 0.444608918076, "name" : "Iqgap1 (pp) Hk3", "shared_name" : "Iqgap1 (pp) Hk3", "SUID" : 626048, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625945", "source" : "588086", "target" : "588342", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Mfge8", "weight" : 0.527582541366, "name" : "Iqgap1 (pp) Mfge8", "shared_name" : "Iqgap1 (pp) Mfge8", "SUID" : 625945, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625917", "source" : "588086", "target" : "588227", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Gbp2", "weight" : 0.421624020878, "name" : "Iqgap1 (pp) Gbp2", "shared_name" : "Iqgap1 (pp) Gbp2", "SUID" : 625917, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625897", "source" : "588086", "target" : "588104", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Bmp1", "weight" : 0.42118499697, "name" : "Iqgap1 (pp) Bmp1", "shared_name" : "Iqgap1 (pp) Bmp1", "SUID" : 625897, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626089", "source" : "588086", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Rasgrp1", "weight" : 0.466725811505, "name" : "Iqgap1 (pp) Rasgrp1", "shared_name" : "Iqgap1 (pp) Rasgrp1", "SUID" : 626089, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626080", "source" : "588086", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Vcam1", "weight" : 0.577103545068, "name" : "Iqgap1 (pp) Vcam1", "shared_name" : "Iqgap1 (pp) Vcam1", "SUID" : 626080, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626098", "source" : "588086", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Serpinb6a", "weight" : 0.456539453227, "name" : "Iqgap1 (pp) Serpinb6a", "shared_name" : "Iqgap1 (pp) Serpinb6a", "SUID" : 626098, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626033", "source" : "588086", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Plac8", "weight" : 0.405223983663, "name" : "Iqgap1 (pp) Plac8", "shared_name" : "Iqgap1 (pp) Plac8", "SUID" : 626033, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625963", "source" : "588086", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Clec4n", "weight" : 0.5620395347, "name" : "Iqgap1 (pp) Clec4n", "shared_name" : "Iqgap1 (pp) Clec4n", "SUID" : 625963, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625992", "source" : "588086", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Tmsb10", "weight" : 0.458859112697, "name" : "Iqgap1 (pp) Tmsb10", "shared_name" : "Iqgap1 (pp) Tmsb10", "SUID" : 625992, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625955", "source" : "588086", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Selplg", "weight" : 0.50961590136, "name" : "Iqgap1 (pp) Selplg", "shared_name" : "Iqgap1 (pp) Selplg", "SUID" : 625955, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626070", "source" : "588086", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Btk", "weight" : 0.41193928818, "name" : "Iqgap1 (pp) Btk", "shared_name" : "Iqgap1 (pp) Btk", "SUID" : 626070, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626015", "source" : "588086", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Tpm4", "weight" : 0.514138492182, "name" : "Iqgap1 (pp) Tpm4", "shared_name" : "Iqgap1 (pp) Tpm4", "SUID" : 626015, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625971", "source" : "588086", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Plscr1", "weight" : 0.604665140682, "name" : "Iqgap1 (pp) Plscr1", "shared_name" : "Iqgap1 (pp) Plscr1", "SUID" : 625971, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626014", "source" : "588086", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Axl", "weight" : 0.630019958142, "name" : "Iqgap1 (pp) Axl", "shared_name" : "Iqgap1 (pp) Axl", "SUID" : 626014, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625993", "source" : "588086", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Slc11a1", "weight" : 0.492730663305, "name" : "Iqgap1 (pp) Slc11a1", "shared_name" : "Iqgap1 (pp) Slc11a1", "SUID" : 625993, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626006", "source" : "588086", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) 5033414D02Rik", "weight" : 0.531511365291, "name" : "Iqgap1 (pp) 5033414D02Rik", "shared_name" : "Iqgap1 (pp) 5033414D02Rik", "SUID" : 626006, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626116", "source" : "588086", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Ear4", "weight" : 0.554036735097, "name" : "Iqgap1 (pp) Ear4", "shared_name" : "Iqgap1 (pp) Ear4", "SUID" : 626116, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625968", "source" : "588086", "target" : "588459", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Pop5", "weight" : 0.4034916471, "name" : "Iqgap1 (pp) Pop5", "shared_name" : "Iqgap1 (pp) Pop5", "SUID" : 625968, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626049", "source" : "588086", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Cytip", "weight" : 0.588225792732, "name" : "Iqgap1 (pp) Cytip", "shared_name" : "Iqgap1 (pp) Cytip", "SUID" : 626049, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625940", "source" : "588086", "target" : "588322", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Pfkfb4", "weight" : 0.400134236463, "name" : "Iqgap1 (pp) Pfkfb4", "shared_name" : "Iqgap1 (pp) Pfkfb4", "SUID" : 625940, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "625925", "source" : "588086", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Sdc3", "weight" : 0.488193708469, "name" : "Iqgap1 (pp) Sdc3", "shared_name" : "Iqgap1 (pp) Sdc3", "SUID" : 625925, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626002", "source" : "588086", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Gpnmb", "weight" : 0.523189423022, "name" : "Iqgap1 (pp) Gpnmb", "shared_name" : "Iqgap1 (pp) Gpnmb", "SUID" : 626002, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626017", "source" : "588086", "target" : "588740", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Plekha2", "weight" : 0.442946358824, "name" : "Iqgap1 (pp) Plekha2", "shared_name" : "Iqgap1 (pp) Plekha2", "SUID" : 626017, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626079", "source" : "588086", "target" : "589113", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) Ms4a7", "weight" : 0.493694833506, "name" : "Iqgap1 (pp) Ms4a7", "shared_name" : "Iqgap1 (pp) Ms4a7", "SUID" : 626079, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "626102", "source" : "588086", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Iqgap1 (pp) H2-DMa", "weight" : 0.411400241486, "name" : "Iqgap1 (pp) H2-DMa", "shared_name" : "Iqgap1 (pp) H2-DMa", "SUID" : 626102, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685616", "source" : "589225", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "St6gal1 (pp) Tspan33", "weight" : 0.415132272269, "name" : "St6gal1 (pp) Tspan33", "shared_name" : "St6gal1 (pp) Tspan33", "SUID" : 685616, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685598", "source" : "589225", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "St6gal1 (pp) Ppif", "weight" : 0.488597571683, "name" : "St6gal1 (pp) Ppif", "shared_name" : "St6gal1 (pp) Ppif", "SUID" : 685598, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685601", "source" : "589225", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "St6gal1 (pp) Ear12", "weight" : 0.412626071291, "name" : "St6gal1 (pp) Ear12", "shared_name" : "St6gal1 (pp) Ear12", "SUID" : 685601, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685608", "source" : "589225", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "St6gal1 (pp) Ear4", "weight" : 0.401190821473, "name" : "St6gal1 (pp) Ear4", "shared_name" : "St6gal1 (pp) Ear4", "SUID" : 685608, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685710", "source" : "589236", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear10 (pp) Clec7a", "weight" : 0.613620939183, "name" : "Ear10 (pp) Clec7a", "shared_name" : "Ear10 (pp) Clec7a", "SUID" : 685710, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685719", "source" : "589236", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear10 (pp) C1qb", "weight" : 0.519712173396, "name" : "Ear10 (pp) C1qb", "shared_name" : "Ear10 (pp) C1qb", "SUID" : 685719, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685704", "source" : "589236", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear10 (pp) Ppif", "weight" : 0.549452701628, "name" : "Ear10 (pp) Ppif", "shared_name" : "Ear10 (pp) Ppif", "SUID" : 685704, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685718", "source" : "589236", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear10 (pp) Ly86", "weight" : 0.600955280425, "name" : "Ear10 (pp) Ly86", "shared_name" : "Ear10 (pp) Ly86", "SUID" : 685718, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685705", "source" : "589236", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear10 (pp) Abi3", "weight" : 0.419353743992, "name" : "Ear10 (pp) Abi3", "shared_name" : "Ear10 (pp) Abi3", "SUID" : 685705, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685706", "source" : "589236", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear10 (pp) Ear12", "weight" : 0.705514323412, "name" : "Ear10 (pp) Ear12", "shared_name" : "Ear10 (pp) Ear12", "SUID" : 685706, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685713", "source" : "589236", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear10 (pp) Ear4", "weight" : 0.622708799242, "name" : "Ear10 (pp) Ear4", "shared_name" : "Ear10 (pp) Ear4", "SUID" : 685713, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685701", "source" : "589236", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear10 (pp) Trem2", "weight" : 0.436832990943, "name" : "Ear10 (pp) Trem2", "shared_name" : "Ear10 (pp) Trem2", "SUID" : 685701, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685707", "source" : "589236", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear10 (pp) Fcgr4", "weight" : 0.528568291262, "name" : "Ear10 (pp) Fcgr4", "shared_name" : "Ear10 (pp) Fcgr4", "SUID" : 685707, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685722", "source" : "589236", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear10 (pp) Tspan33", "weight" : 0.477327567829, "name" : "Ear10 (pp) Tspan33", "shared_name" : "Ear10 (pp) Tspan33", "SUID" : 685722, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685709", "source" : "589236", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear10 (pp) Cd53", "weight" : 0.679019333878, "name" : "Ear10 (pp) Cd53", "shared_name" : "Ear10 (pp) Cd53", "SUID" : 685709, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656711", "source" : "588461", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Cfp", "weight" : 0.468138179856, "name" : "Tbxas1 (pp) Cfp", "shared_name" : "Tbxas1 (pp) Cfp", "SUID" : 656711, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656753", "source" : "588461", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) C1qb", "weight" : 0.41109758557, "name" : "Tbxas1 (pp) C1qb", "shared_name" : "Tbxas1 (pp) C1qb", "SUID" : 656753, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656679", "source" : "588461", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Plac8", "weight" : 0.437048535319, "name" : "Tbxas1 (pp) Plac8", "shared_name" : "Tbxas1 (pp) Plac8", "SUID" : 656679, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656681", "source" : "588461", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Fcer1g", "weight" : 0.41242517514, "name" : "Tbxas1 (pp) Fcer1g", "shared_name" : "Tbxas1 (pp) Fcer1g", "SUID" : 656681, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656666", "source" : "588461", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Tmem86a", "weight" : 0.581114080589, "name" : "Tbxas1 (pp) Tmem86a", "shared_name" : "Tbxas1 (pp) Tmem86a", "SUID" : 656666, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656631", "source" : "588461", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Slc11a1", "weight" : 0.465449478121, "name" : "Tbxas1 (pp) Slc11a1", "shared_name" : "Tbxas1 (pp) Slc11a1", "SUID" : 656631, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656675", "source" : "588461", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Cotl1", "weight" : 0.445148422982, "name" : "Tbxas1 (pp) Cotl1", "shared_name" : "Tbxas1 (pp) Cotl1", "SUID" : 656675, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656665", "source" : "588461", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Ccl6", "weight" : 0.527006069264, "name" : "Tbxas1 (pp) Ccl6", "shared_name" : "Tbxas1 (pp) Ccl6", "SUID" : 656665, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656625", "source" : "588461", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Cd86", "weight" : 0.486076767709, "name" : "Tbxas1 (pp) Cd86", "shared_name" : "Tbxas1 (pp) Cd86", "SUID" : 656625, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656743", "source" : "588461", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Fcgr4", "weight" : 0.441701574593, "name" : "Tbxas1 (pp) Fcgr4", "shared_name" : "Tbxas1 (pp) Fcgr4", "SUID" : 656743, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656705", "source" : "588461", "target" : "589030", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Soat1", "weight" : 0.405324496821, "name" : "Tbxas1 (pp) Soat1", "shared_name" : "Tbxas1 (pp) Soat1", "SUID" : 656705, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656650", "source" : "588461", "target" : "588678", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Fxyd5", "weight" : 0.435512545108, "name" : "Tbxas1 (pp) Fxyd5", "shared_name" : "Tbxas1 (pp) Fxyd5", "SUID" : 656650, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656673", "source" : "588461", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Pla2g15", "weight" : 0.509908897715, "name" : "Tbxas1 (pp) Pla2g15", "shared_name" : "Tbxas1 (pp) Pla2g15", "SUID" : 656673, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656714", "source" : "588461", "target" : "589102", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Gja1", "weight" : 0.400318142065, "name" : "Tbxas1 (pp) Gja1", "shared_name" : "Tbxas1 (pp) Gja1", "SUID" : 656714, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656737", "source" : "588461", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Trem2", "weight" : 0.532054012644, "name" : "Tbxas1 (pp) Trem2", "shared_name" : "Tbxas1 (pp) Trem2", "SUID" : 656737, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656662", "source" : "588461", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Slc15a3", "weight" : 0.473003216282, "name" : "Tbxas1 (pp) Slc15a3", "shared_name" : "Tbxas1 (pp) Slc15a3", "SUID" : 656662, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656734", "source" : "588461", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Ear10", "weight" : 0.490047919002, "name" : "Tbxas1 (pp) Ear10", "shared_name" : "Tbxas1 (pp) Ear10", "SUID" : 656734, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656657", "source" : "588461", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Vsig4", "weight" : 0.539212114565, "name" : "Tbxas1 (pp) Vsig4", "shared_name" : "Tbxas1 (pp) Vsig4", "SUID" : 656657, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656655", "source" : "588461", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Axl", "weight" : 0.503235476347, "name" : "Tbxas1 (pp) Axl", "shared_name" : "Tbxas1 (pp) Axl", "SUID" : 656655, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656732", "source" : "588461", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Serpinb6a", "weight" : 0.485991636607, "name" : "Tbxas1 (pp) Serpinb6a", "shared_name" : "Tbxas1 (pp) Serpinb6a", "SUID" : 656732, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656611", "source" : "588461", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Renbp", "weight" : 0.494697621618, "name" : "Tbxas1 (pp) Renbp", "shared_name" : "Tbxas1 (pp) Renbp", "SUID" : 656611, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656740", "source" : "588461", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Ppif", "weight" : 0.435962770914, "name" : "Tbxas1 (pp) Ppif", "shared_name" : "Tbxas1 (pp) Ppif", "SUID" : 656740, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656752", "source" : "588461", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Ly86", "weight" : 0.434167968666, "name" : "Tbxas1 (pp) Ly86", "shared_name" : "Tbxas1 (pp) Ly86", "SUID" : 656752, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656685", "source" : "588461", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Lgals3", "weight" : 0.584546259045, "name" : "Tbxas1 (pp) Lgals3", "shared_name" : "Tbxas1 (pp) Lgals3", "SUID" : 656685, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656644", "source" : "588461", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Gpnmb", "weight" : 0.572935590934, "name" : "Tbxas1 (pp) Gpnmb", "shared_name" : "Tbxas1 (pp) Gpnmb", "SUID" : 656644, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656746", "source" : "588461", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Clec7a", "weight" : 0.461036505206, "name" : "Tbxas1 (pp) Clec7a", "shared_name" : "Tbxas1 (pp) Clec7a", "SUID" : 656746, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656716", "source" : "588461", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Vcam1", "weight" : 0.483742628947, "name" : "Tbxas1 (pp) Vcam1", "shared_name" : "Tbxas1 (pp) Vcam1", "SUID" : 656716, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656742", "source" : "588461", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Ear12", "weight" : 0.415106526565, "name" : "Tbxas1 (pp) Ear12", "shared_name" : "Tbxas1 (pp) Ear12", "SUID" : 656742, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656748", "source" : "588461", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Ear4", "weight" : 0.5655357492, "name" : "Tbxas1 (pp) Ear4", "shared_name" : "Tbxas1 (pp) Ear4", "SUID" : 656748, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656695", "source" : "588461", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Cytip", "weight" : 0.408433470702, "name" : "Tbxas1 (pp) Cytip", "shared_name" : "Tbxas1 (pp) Cytip", "SUID" : 656695, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656702", "source" : "588461", "target" : "588968", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tbxas1 (pp) Bcl2a1c", "weight" : 0.409896873874, "name" : "Tbxas1 (pp) Bcl2a1c", "shared_name" : "Tbxas1 (pp) Bcl2a1c", "SUID" : 656702, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666109", "source" : "588620", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Olfml3 (pp) Fcer1g", "weight" : 0.416912958282, "name" : "Olfml3 (pp) Fcer1g", "shared_name" : "Olfml3 (pp) Fcer1g", "SUID" : 666109, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666142", "source" : "588620", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Olfml3 (pp) Trem2", "weight" : 0.480881641191, "name" : "Olfml3 (pp) Trem2", "shared_name" : "Olfml3 (pp) Trem2", "SUID" : 666142, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666095", "source" : "588620", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Olfml3 (pp) Tlr2", "weight" : 0.455364134083, "name" : "Olfml3 (pp) Tlr2", "shared_name" : "Olfml3 (pp) Tlr2", "SUID" : 666095, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666154", "source" : "588620", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Olfml3 (pp) Fblim1", "weight" : 0.456641888049, "name" : "Olfml3 (pp) Fblim1", "shared_name" : "Olfml3 (pp) Fblim1", "SUID" : 666154, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666148", "source" : "588620", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Olfml3 (pp) Clec7a", "weight" : 0.476756023007, "name" : "Olfml3 (pp) Clec7a", "shared_name" : "Olfml3 (pp) Clec7a", "SUID" : 666148, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666104", "source" : "588620", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Olfml3 (pp) Obrgrp", "weight" : 0.484904238166, "name" : "Olfml3 (pp) Obrgrp", "shared_name" : "Olfml3 (pp) Obrgrp", "SUID" : 666104, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666097", "source" : "588620", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Olfml3 (pp) Tpm4", "weight" : 0.407762173989, "name" : "Olfml3 (pp) Tpm4", "shared_name" : "Olfml3 (pp) Tpm4", "SUID" : 666097, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666093", "source" : "588620", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Olfml3 (pp) Cd52", "weight" : 0.420047628701, "name" : "Olfml3 (pp) Cd52", "shared_name" : "Olfml3 (pp) Cd52", "SUID" : 666093, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666119", "source" : "588620", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Olfml3 (pp) Csrp1", "weight" : 0.413099786656, "name" : "Olfml3 (pp) Csrp1", "shared_name" : "Olfml3 (pp) Csrp1", "SUID" : 666119, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666149", "source" : "588620", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Olfml3 (pp) Ear4", "weight" : 0.406517814862, "name" : "Olfml3 (pp) Ear4", "shared_name" : "Olfml3 (pp) Ear4", "SUID" : 666149, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666107", "source" : "588620", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Olfml3 (pp) Cotl1", "weight" : 0.418000641242, "name" : "Olfml3 (pp) Cotl1", "shared_name" : "Olfml3 (pp) Cotl1", "SUID" : 666107, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666112", "source" : "588620", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Olfml3 (pp) Lgals3", "weight" : 0.454927171466, "name" : "Olfml3 (pp) Lgals3", "shared_name" : "Olfml3 (pp) Lgals3", "SUID" : 666112, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666146", "source" : "588620", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Olfml3 (pp) Ear12", "weight" : 0.457646931608, "name" : "Olfml3 (pp) Ear12", "shared_name" : "Olfml3 (pp) Ear12", "SUID" : 666146, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666087", "source" : "588620", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Olfml3 (pp) Gpnmb", "weight" : 0.400763717852, "name" : "Olfml3 (pp) Gpnmb", "shared_name" : "Olfml3 (pp) Gpnmb", "SUID" : 666087, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666143", "source" : "588620", "target" : "589256", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Olfml3 (pp) Timp1", "weight" : 0.535593189659, "name" : "Olfml3 (pp) Timp1", "shared_name" : "Olfml3 (pp) Timp1", "SUID" : 666143, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666103", "source" : "588620", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Olfml3 (pp) Tmem86a", "weight" : 0.453863752674, "name" : "Olfml3 (pp) Tmem86a", "shared_name" : "Olfml3 (pp) Tmem86a", "SUID" : 666103, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678624", "source" : "588920", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "C1qc (pp) Hk3", "weight" : 0.540658030395, "name" : "C1qc (pp) Hk3", "shared_name" : "C1qc (pp) Hk3", "SUID" : 678624, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678636", "source" : "588920", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "C1qc (pp) Csrp1", "weight" : 0.514119577313, "name" : "C1qc (pp) Csrp1", "shared_name" : "C1qc (pp) Csrp1", "SUID" : 678636, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678663", "source" : "588920", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "C1qc (pp) H2-DMa", "weight" : 0.541542966033, "name" : "C1qc (pp) H2-DMa", "shared_name" : "C1qc (pp) H2-DMa", "SUID" : 678663, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678650", "source" : "588920", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "C1qc (pp) Vcam1", "weight" : 0.58247521646, "name" : "C1qc (pp) Vcam1", "shared_name" : "C1qc (pp) Vcam1", "SUID" : 678650, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678675", "source" : "588920", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "C1qc (pp) Ear4", "weight" : 0.498483078079, "name" : "C1qc (pp) Ear4", "shared_name" : "C1qc (pp) Ear4", "SUID" : 678675, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678671", "source" : "588920", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "C1qc (pp) Fcgr4", "weight" : 0.509162268619, "name" : "C1qc (pp) Fcgr4", "shared_name" : "C1qc (pp) Fcgr4", "SUID" : 678671, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678641", "source" : "588920", "target" : "589076", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "C1qc (pp) H2-M3", "weight" : 0.474782653221, "name" : "C1qc (pp) H2-M3", "shared_name" : "C1qc (pp) H2-M3", "SUID" : 678641, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678647", "source" : "588920", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "C1qc (pp) Pld4", "weight" : 0.5987638966, "name" : "C1qc (pp) Pld4", "shared_name" : "C1qc (pp) Pld4", "SUID" : 678647, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678681", "source" : "588920", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "C1qc (pp) C1qb", "weight" : 0.716270075349, "name" : "C1qc (pp) C1qb", "shared_name" : "C1qc (pp) C1qb", "SUID" : 678681, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678625", "source" : "588920", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "C1qc (pp) Cytip", "weight" : 0.513221794933, "name" : "C1qc (pp) Cytip", "shared_name" : "C1qc (pp) Cytip", "SUID" : 678625, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678633", "source" : "588920", "target" : "588999", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "C1qc (pp) Kctd12", "weight" : 0.437460087223, "name" : "C1qc (pp) Kctd12", "shared_name" : "C1qc (pp) Kctd12", "SUID" : 678633, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678628", "source" : "588920", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "C1qc (pp) H2-DMb1", "weight" : 0.490793526148, "name" : "C1qc (pp) H2-DMb1", "shared_name" : "C1qc (pp) H2-DMb1", "SUID" : 678628, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678680", "source" : "588920", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "C1qc (pp) Ly86", "weight" : 0.597567789336, "name" : "C1qc (pp) Ly86", "shared_name" : "C1qc (pp) Ly86", "SUID" : 678680, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678662", "source" : "588920", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "C1qc (pp) Serpinb6a", "weight" : 0.4072751678, "name" : "C1qc (pp) Serpinb6a", "shared_name" : "C1qc (pp) Serpinb6a", "SUID" : 678662, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678653", "source" : "588920", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "C1qc (pp) Tmsb4x", "weight" : 0.656701014, "name" : "C1qc (pp) Tmsb4x", "shared_name" : "C1qc (pp) Tmsb4x", "SUID" : 678653, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640075", "source" : "588242", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Axl", "weight" : 0.514758053601, "name" : "Cd83 (pp) Axl", "shared_name" : "Cd83 (pp) Axl", "SUID" : 640075, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640087", "source" : "588242", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Ccl6", "weight" : 0.52974867852, "name" : "Cd83 (pp) Ccl6", "shared_name" : "Cd83 (pp) Ccl6", "SUID" : 640087, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "639972", "source" : "588242", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Ms4a6d", "weight" : 0.451136189369, "name" : "Cd83 (pp) Ms4a6d", "shared_name" : "Cd83 (pp) Ms4a6d", "SUID" : 639972, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640039", "source" : "588242", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Cd86", "weight" : 0.531650158961, "name" : "Cd83 (pp) Cd86", "shared_name" : "Cd83 (pp) Cd86", "SUID" : 640039, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640019", "source" : "588242", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Plscr1", "weight" : 0.502802229532, "name" : "Cd83 (pp) Plscr1", "shared_name" : "Cd83 (pp) Plscr1", "SUID" : 640019, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640103", "source" : "588242", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Fcgr3", "weight" : 0.486663742309, "name" : "Cd83 (pp) Fcgr3", "shared_name" : "Cd83 (pp) Fcgr3", "SUID" : 640103, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "639964", "source" : "588242", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Sdc3", "weight" : 0.453705734833, "name" : "Cd83 (pp) Sdc3", "shared_name" : "Cd83 (pp) Sdc3", "SUID" : 639964, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640144", "source" : "588242", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Btk", "weight" : 0.430757632212, "name" : "Cd83 (pp) Btk", "shared_name" : "Cd83 (pp) Btk", "SUID" : 640144, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "639988", "source" : "588242", "target" : "588342", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Mfge8", "weight" : 0.41244039688, "name" : "Cd83 (pp) Mfge8", "shared_name" : "Cd83 (pp) Mfge8", "SUID" : 639988, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640045", "source" : "588242", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Coro1a", "weight" : 0.445077990383, "name" : "Cd83 (pp) Coro1a", "shared_name" : "Cd83 (pp) Coro1a", "SUID" : 640045, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640208", "source" : "588242", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) C1qb", "weight" : 0.528630914638, "name" : "Cd83 (pp) C1qb", "shared_name" : "Cd83 (pp) C1qb", "SUID" : 640208, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640097", "source" : "588242", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Cotl1", "weight" : 0.650962834015, "name" : "Cd83 (pp) Cotl1", "shared_name" : "Cd83 (pp) Cotl1", "SUID" : 640097, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640076", "source" : "588242", "target" : "588728", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) AB124611", "weight" : 0.424998792832, "name" : "Cd83 (pp) AB124611", "shared_name" : "Cd83 (pp) AB124611", "SUID" : 640076, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640070", "source" : "588242", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Cd52", "weight" : 0.438487563981, "name" : "Cd83 (pp) Cd52", "shared_name" : "Cd83 (pp) Cd52", "SUID" : 640070, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640099", "source" : "588242", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Plac8", "weight" : 0.482893458185, "name" : "Cd83 (pp) Plac8", "shared_name" : "Cd83 (pp) Plac8", "SUID" : 640099, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640043", "source" : "588242", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Snn", "weight" : 0.490342699061, "name" : "Cd83 (pp) Snn", "shared_name" : "Cd83 (pp) Snn", "SUID" : 640043, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640151", "source" : "588242", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Snx10", "weight" : 0.459481935376, "name" : "Cd83 (pp) Snx10", "shared_name" : "Cd83 (pp) Snx10", "SUID" : 640151, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "639993", "source" : "588242", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Cyp7b1", "weight" : 0.576334050569, "name" : "Cd83 (pp) Cyp7b1", "shared_name" : "Cd83 (pp) Cyp7b1", "SUID" : 639993, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640197", "source" : "588242", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Fcgr4", "weight" : 0.429041171511, "name" : "Cd83 (pp) Fcgr4", "shared_name" : "Cd83 (pp) Fcgr4", "SUID" : 640197, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640184", "source" : "588242", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Ear10", "weight" : 0.416266334014, "name" : "Cd83 (pp) Ear10", "shared_name" : "Cd83 (pp) Ear10", "SUID" : 640184, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640207", "source" : "588242", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Ly86", "weight" : 0.569912393151, "name" : "Cd83 (pp) Ly86", "shared_name" : "Cd83 (pp) Ly86", "SUID" : 640207, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640048", "source" : "588242", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Slc11a1", "weight" : 0.48744413475, "name" : "Cd83 (pp) Slc11a1", "shared_name" : "Cd83 (pp) Slc11a1", "SUID" : 640048, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640060", "source" : "588242", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Gpnmb", "weight" : 0.458797902108, "name" : "Cd83 (pp) Gpnmb", "shared_name" : "Cd83 (pp) Gpnmb", "SUID" : 640060, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640134", "source" : "588242", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Csrp1", "weight" : 0.61297840954, "name" : "Cd83 (pp) Csrp1", "shared_name" : "Cd83 (pp) Csrp1", "SUID" : 640134, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640202", "source" : "588242", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Ear4", "weight" : 0.620046245952, "name" : "Cd83 (pp) Ear4", "shared_name" : "Cd83 (pp) Ear4", "SUID" : 640202, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640163", "source" : "588242", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Tmsb4x", "weight" : 0.493268571553, "name" : "Cd83 (pp) Tmsb4x", "shared_name" : "Cd83 (pp) Tmsb4x", "SUID" : 640163, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640008", "source" : "588242", "target" : "588432", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Kcnk6", "weight" : 0.433111560883, "name" : "Cd83 (pp) Kcnk6", "shared_name" : "Cd83 (pp) Kcnk6", "SUID" : 640008, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "639998", "source" : "588242", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Selplg", "weight" : 0.401671432697, "name" : "Cd83 (pp) Selplg", "shared_name" : "Cd83 (pp) Selplg", "SUID" : 639998, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640011", "source" : "588242", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Cd63", "weight" : 0.538497561602, "name" : "Cd83 (pp) Cd63", "shared_name" : "Cd83 (pp) Cd63", "SUID" : 640011, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640181", "source" : "588242", "target" : "589225", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) St6gal1", "weight" : 0.572214465468, "name" : "Cd83 (pp) St6gal1", "shared_name" : "Cd83 (pp) St6gal1", "SUID" : 640181, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640018", "source" : "588242", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Renbp", "weight" : 0.458551920698, "name" : "Cd83 (pp) Renbp", "shared_name" : "Cd83 (pp) Renbp", "SUID" : 640018, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640119", "source" : "588242", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Cytip", "weight" : 0.439276486627, "name" : "Cd83 (pp) Cytip", "shared_name" : "Cd83 (pp) Cytip", "SUID" : 640119, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640188", "source" : "588242", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Trem2", "weight" : 0.496037090161, "name" : "Cd83 (pp) Trem2", "shared_name" : "Cd83 (pp) Trem2", "SUID" : 640188, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640085", "source" : "588242", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Slc15a3", "weight" : 0.577318434517, "name" : "Cd83 (pp) Slc15a3", "shared_name" : "Cd83 (pp) Slc15a3", "SUID" : 640085, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640081", "source" : "588242", "target" : "588742", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Ifitm6", "weight" : 0.47836756411, "name" : "Cd83 (pp) Ifitm6", "shared_name" : "Cd83 (pp) Ifitm6", "SUID" : 640081, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640007", "source" : "588242", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Clec4n", "weight" : 0.517080670684, "name" : "Cd83 (pp) Clec4n", "shared_name" : "Cd83 (pp) Clec4n", "SUID" : 640007, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640110", "source" : "588242", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Lgals3", "weight" : 0.668319084181, "name" : "Cd83 (pp) Lgals3", "shared_name" : "Cd83 (pp) Lgals3", "SUID" : 640110, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640088", "source" : "588242", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Tmem86a", "weight" : 0.52196446033, "name" : "Cd83 (pp) Tmem86a", "shared_name" : "Cd83 (pp) Tmem86a", "SUID" : 640088, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640153", "source" : "588242", "target" : "589102", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Gja1", "weight" : 0.478482836205, "name" : "Cd83 (pp) Gja1", "shared_name" : "Cd83 (pp) Gja1", "SUID" : 640153, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640003", "source" : "588242", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Cd14", "weight" : 0.590554464454, "name" : "Cd83 (pp) Cd14", "shared_name" : "Cd83 (pp) Cd14", "SUID" : 640003, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640199", "source" : "588242", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Cd53", "weight" : 0.409336895534, "name" : "Cd83 (pp) Cd53", "shared_name" : "Cd83 (pp) Cd53", "SUID" : 640199, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640191", "source" : "588242", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Ppif", "weight" : 0.459158788282, "name" : "Cd83 (pp) Ppif", "shared_name" : "Cd83 (pp) Ppif", "SUID" : 640191, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640200", "source" : "588242", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Clec7a", "weight" : 0.479099735969, "name" : "Cd83 (pp) Clec7a", "shared_name" : "Cd83 (pp) Clec7a", "SUID" : 640200, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640193", "source" : "588242", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Abi3", "weight" : 0.467776616975, "name" : "Cd83 (pp) Abi3", "shared_name" : "Cd83 (pp) Abi3", "SUID" : 640193, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640080", "source" : "588242", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Vsig4", "weight" : 0.468108181629, "name" : "Cd83 (pp) Vsig4", "shared_name" : "Cd83 (pp) Vsig4", "SUID" : 640080, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640116", "source" : "588242", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) C1qc", "weight" : 0.410204673788, "name" : "Cd83 (pp) C1qc", "shared_name" : "Cd83 (pp) C1qc", "SUID" : 640116, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640146", "source" : "588242", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Cfp", "weight" : 0.505208272921, "name" : "Cd83 (pp) Cfp", "shared_name" : "Cd83 (pp) Cfp", "SUID" : 640146, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640158", "source" : "588242", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Vcam1", "weight" : 0.536016372769, "name" : "Cd83 (pp) Vcam1", "shared_name" : "Cd83 (pp) Vcam1", "SUID" : 640158, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640195", "source" : "588242", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Ear12", "weight" : 0.461405673848, "name" : "Cd83 (pp) Ear12", "shared_name" : "Cd83 (pp) Ear12", "SUID" : 640195, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "639991", "source" : "588242", "target" : "588351", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Ttc39a", "weight" : 0.417105164705, "name" : "Cd83 (pp) Ttc39a", "shared_name" : "Cd83 (pp) Ttc39a", "SUID" : 639991, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "639963", "source" : "588242", "target" : "588244", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Gltp", "weight" : 0.480927856386, "name" : "Cd83 (pp) Gltp", "shared_name" : "Cd83 (pp) Gltp", "SUID" : 639963, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "639978", "source" : "588242", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Cxcl16", "weight" : 0.533244031776, "name" : "Cd83 (pp) Cxcl16", "shared_name" : "Cd83 (pp) Cxcl16", "SUID" : 639978, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640101", "source" : "588242", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Fcer1g", "weight" : 0.502906852447, "name" : "Cd83 (pp) Fcer1g", "shared_name" : "Cd83 (pp) Fcer1g", "SUID" : 640101, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640135", "source" : "588242", "target" : "589030", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Soat1", "weight" : 0.441911943444, "name" : "Cd83 (pp) Soat1", "shared_name" : "Cd83 (pp) Soat1", "SUID" : 640135, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640179", "source" : "588242", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Serpinb6a", "weight" : 0.581437050984, "name" : "Cd83 (pp) Serpinb6a", "shared_name" : "Cd83 (pp) Serpinb6a", "SUID" : 640179, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640074", "source" : "588242", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Tlr2", "weight" : 0.464526854833, "name" : "Cd83 (pp) Tlr2", "shared_name" : "Cd83 (pp) Tlr2", "SUID" : 640074, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640050", "source" : "588242", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd83 (pp) Gngt2", "weight" : 0.552562323391, "name" : "Cd83 (pp) Gngt2", "shared_name" : "Cd83 (pp) Gngt2", "SUID" : 640050, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611153", "source" : "587905", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rgs1 (pp) Laptm5", "weight" : 0.469312247074, "name" : "Rgs1 (pp) Laptm5", "shared_name" : "Rgs1 (pp) Laptm5", "SUID" : 611153, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611224", "source" : "587905", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rgs1 (pp) Csrp1", "weight" : 0.406511769035, "name" : "Rgs1 (pp) Csrp1", "shared_name" : "Rgs1 (pp) Csrp1", "SUID" : 611224, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611140", "source" : "587905", "target" : "588010", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rgs1 (pp) Cd84", "weight" : 0.42251984079, "name" : "Rgs1 (pp) Cd84", "shared_name" : "Rgs1 (pp) Cd84", "SUID" : 611140, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611209", "source" : "587905", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rgs1 (pp) Pla2g15", "weight" : 0.42735187387, "name" : "Rgs1 (pp) Pla2g15", "shared_name" : "Rgs1 (pp) Pla2g15", "SUID" : 611209, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611201", "source" : "587905", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rgs1 (pp) Axl", "weight" : 0.428997667572, "name" : "Rgs1 (pp) Axl", "shared_name" : "Rgs1 (pp) Axl", "SUID" : 611201, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611232", "source" : "587905", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rgs1 (pp) Serpinb6a", "weight" : 0.438682932106, "name" : "Rgs1 (pp) Serpinb6a", "shared_name" : "Rgs1 (pp) Serpinb6a", "SUID" : 611232, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611196", "source" : "587905", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rgs1 (pp) Gpnmb", "weight" : 0.486770720261, "name" : "Rgs1 (pp) Gpnmb", "shared_name" : "Rgs1 (pp) Gpnmb", "SUID" : 611196, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611214", "source" : "587905", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rgs1 (pp) Lgals3", "weight" : 0.414406577908, "name" : "Rgs1 (pp) Lgals3", "shared_name" : "Rgs1 (pp) Lgals3", "SUID" : 611214, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611205", "source" : "587905", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rgs1 (pp) Ccl6", "weight" : 0.476170865196, "name" : "Rgs1 (pp) Ccl6", "shared_name" : "Rgs1 (pp) Ccl6", "SUID" : 611205, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611190", "source" : "587905", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rgs1 (pp) Slc11a1", "weight" : 0.415715448298, "name" : "Rgs1 (pp) Slc11a1", "shared_name" : "Rgs1 (pp) Slc11a1", "SUID" : 611190, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677462", "source" : "588886", "target" : "588999", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) Kctd12", "weight" : 0.430956147774, "name" : "Lgals3 (pp) Kctd12", "shared_name" : "Lgals3 (pp) Kctd12", "SUID" : 677462, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677483", "source" : "588886", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) Btk", "weight" : 0.522094961351, "name" : "Lgals3 (pp) Btk", "shared_name" : "Lgals3 (pp) Btk", "SUID" : 677483, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677537", "source" : "588886", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) Ppif", "weight" : 0.544003109353, "name" : "Lgals3 (pp) Ppif", "shared_name" : "Lgals3 (pp) Ppif", "SUID" : 677537, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677445", "source" : "588886", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) Hk3", "weight" : 0.585078156796, "name" : "Lgals3 (pp) Hk3", "shared_name" : "Lgals3 (pp) Hk3", "SUID" : 677445, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677562", "source" : "588886", "target" : "589357", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.412802424872, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Lgals3 (pp) Tspan33", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.412802424872, "fusion" : "NA", "name" : "Lgals3 (pp) Tspan33", "neighborhood" : "NA", "sourceEdge" : 141862.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Lgals3 (pp) Tspan33", "combinedscore" : "NA", "SUID" : 677562, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "FALSE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.007744988, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "677490", "source" : "588886", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) Snx10", "weight" : 0.662027098145, "name" : "Lgals3 (pp) Snx10", "shared_name" : "Lgals3 (pp) Snx10", "SUID" : 677490, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677495", "source" : "588886", "target" : "589113", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) Ms4a7", "weight" : 0.473724302451, "name" : "Lgals3 (pp) Ms4a7", "shared_name" : "Lgals3 (pp) Ms4a7", "SUID" : 677495, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677561", "source" : "588886", "target" : "589353", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.570812822715, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Lgals3 (pp) Fblim1", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.570812822715, "fusion" : "NA", "name" : "Lgals3 (pp) Fblim1", "neighborhood" : "NA", "sourceEdge" : 141861.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Lgals3 (pp) Fblim1", "combinedscore" : "NA", "SUID" : 677561, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "FALSE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.007351854, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "677535", "source" : "588886", "target" : "589256", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) Timp1", "weight" : 0.562353627912, "name" : "Lgals3 (pp) Timp1", "shared_name" : "Lgals3 (pp) Timp1", "SUID" : 677535, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677574", "source" : "588886", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) Il10ra", "weight" : 0.490644146136, "name" : "Lgals3 (pp) Il10ra", "shared_name" : "Lgals3 (pp) Il10ra", "SUID" : 677574, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677505", "source" : "588886", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) Tmsb4x", "weight" : 0.621582498922, "name" : "Lgals3 (pp) Tmsb4x", "shared_name" : "Lgals3 (pp) Tmsb4x", "SUID" : 677505, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677446", "source" : "588886", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) Cytip", "weight" : 0.643129696041, "name" : "Lgals3 (pp) Cytip", "shared_name" : "Lgals3 (pp) Cytip", "SUID" : 677446, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677530", "source" : "588886", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) Ear10", "weight" : 0.670762549997, "name" : "Lgals3 (pp) Ear10", "shared_name" : "Lgals3 (pp) Ear10", "SUID" : 677530, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677539", "source" : "588886", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) Abi3", "weight" : 0.610038636235, "name" : "Lgals3 (pp) Abi3", "shared_name" : "Lgals3 (pp) Abi3", "SUID" : 677539, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677443", "source" : "588886", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) C1qc", "weight" : 0.523006202659, "name" : "Lgals3 (pp) C1qc", "shared_name" : "Lgals3 (pp) C1qc", "SUID" : 677443, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677546", "source" : "588886", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) Cd53", "weight" : 0.60519620146, "name" : "Lgals3 (pp) Cd53", "shared_name" : "Lgals3 (pp) Cd53", "SUID" : 677546, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677451", "source" : "588886", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) H2-DMb1", "weight" : 0.416382045157, "name" : "Lgals3 (pp) H2-DMb1", "shared_name" : "Lgals3 (pp) H2-DMb1", "SUID" : 677451, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677467", "source" : "588886", "target" : "589030", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) Soat1", "weight" : 0.585287062681, "name" : "Lgals3 (pp) Soat1", "shared_name" : "Lgals3 (pp) Soat1", "SUID" : 677467, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677534", "source" : "588886", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) Trem2", "weight" : 0.71651058323, "name" : "Lgals3 (pp) Trem2", "shared_name" : "Lgals3 (pp) Trem2", "SUID" : 677534, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677527", "source" : "588886", "target" : "589225", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) St6gal1", "weight" : 0.43540823281, "name" : "Lgals3 (pp) St6gal1", "shared_name" : "Lgals3 (pp) St6gal1", "SUID" : 677527, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677541", "source" : "588886", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) Ear12", "weight" : 0.719431563926, "name" : "Lgals3 (pp) Ear12", "shared_name" : "Lgals3 (pp) Ear12", "SUID" : 677541, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677465", "source" : "588886", "target" : "589005", "homology" : "NA", "shared_interaction" : "NA", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.835226477542, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Lgals3 (pp) Csrp1", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 8.97113E-4, "weight" : 0.835226477542, "fusion" : "NA", "name" : "Lgals3 (pp) Csrp1", "neighborhood" : "NA", "sourceEdge" : 141833.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Lgals3 (pp) Csrp1", "combinedscore" : "NA", "SUID" : 677465, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "NA", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "677553", "source" : "588886", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.9120604457, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Lgals3 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 9.275086E-4, "weight" : 0.9120604457, "fusion" : "NA", "name" : "Lgals3 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 141857.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Lgals3 (pp) Ear4", "combinedscore" : "NA", "SUID" : 677553, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "FALSE", "kwalksT0901317red" : 1.717551E-4, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "kwalksFenofibratered" : 0.008000387, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "677558", "source" : "588886", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) Ly86", "weight" : 0.787116901803, "name" : "Lgals3 (pp) Ly86", "shared_name" : "Lgals3 (pp) Ly86", "SUID" : 677558, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677547", "source" : "588886", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) Clec7a", "weight" : 0.685833336164, "name" : "Lgals3 (pp) Clec7a", "shared_name" : "Lgals3 (pp) Clec7a", "SUID" : 677547, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677499", "source" : "588886", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) Vcam1", "weight" : 0.734726324603, "name" : "Lgals3 (pp) Vcam1", "shared_name" : "Lgals3 (pp) Vcam1", "SUID" : 677499, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677543", "source" : "588886", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) Fcgr4", "weight" : 0.735230972006, "name" : "Lgals3 (pp) Fcgr4", "shared_name" : "Lgals3 (pp) Fcgr4", "SUID" : 677543, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677559", "source" : "588886", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) C1qb", "weight" : 0.699177758942, "name" : "Lgals3 (pp) C1qb", "shared_name" : "Lgals3 (pp) C1qb", "SUID" : 677559, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677458", "source" : "588886", "target" : "588968", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) Bcl2a1c", "weight" : 0.416403841282, "name" : "Lgals3 (pp) Bcl2a1c", "shared_name" : "Lgals3 (pp) Bcl2a1c", "SUID" : 677458, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677493", "source" : "588886", "target" : "589102", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) Gja1", "weight" : 0.489936804445, "name" : "Lgals3 (pp) Gja1", "shared_name" : "Lgals3 (pp) Gja1", "SUID" : 677493, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677525", "source" : "588886", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) Serpinb6a", "weight" : 0.78574746545, "name" : "Lgals3 (pp) Serpinb6a", "shared_name" : "Lgals3 (pp) Serpinb6a", "SUID" : 677525, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677511", "source" : "588886", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) Rasgrp1", "weight" : 0.49489058846, "name" : "Lgals3 (pp) Rasgrp1", "shared_name" : "Lgals3 (pp) Rasgrp1", "SUID" : 677511, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677485", "source" : "588886", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) Cfp", "weight" : 0.739538590367, "name" : "Lgals3 (pp) Cfp", "shared_name" : "Lgals3 (pp) Cfp", "SUID" : 677485, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677529", "source" : "588886", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) H2-DMa", "weight" : 0.453498710766, "name" : "Lgals3 (pp) H2-DMa", "shared_name" : "Lgals3 (pp) H2-DMa", "SUID" : 677529, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "677556", "source" : "588886", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgals3 (pp) Prkcd", "weight" : 0.43425407534, "name" : "Lgals3 (pp) Prkcd", "shared_name" : "Lgals3 (pp) Prkcd", "SUID" : 677556, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "622740", "source" : "588049", "target" : "588678", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd74 (pp) Fxyd5", "weight" : 0.408274079809, "name" : "Cd74 (pp) Fxyd5", "shared_name" : "Cd74 (pp) Fxyd5", "SUID" : 622740, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "622731", "source" : "588049", "target" : "588512", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd74 (pp) H2-Eb1", "weight" : 0.847201103067, "name" : "Cd74 (pp) H2-Eb1", "shared_name" : "Cd74 (pp) H2-Eb1", "SUID" : 622731, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "622766", "source" : "588049", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd74 (pp) Vcam1", "weight" : 0.468155074266, "name" : "Cd74 (pp) Vcam1", "shared_name" : "Cd74 (pp) Vcam1", "SUID" : 622766, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "622774", "source" : "588049", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd74 (pp) Fcgr4", "weight" : 0.410847695089, "name" : "Cd74 (pp) Fcgr4", "shared_name" : "Cd74 (pp) Fcgr4", "SUID" : 622774, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "622710", "source" : "588049", "target" : "588151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd74 (pp) Ccl4", "weight" : 0.429206026281, "name" : "Cd74 (pp) Ccl4", "shared_name" : "Cd74 (pp) Ccl4", "SUID" : 622710, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "622758", "source" : "588049", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd74 (pp) C1qc", "weight" : 0.622603843856, "name" : "Cd74 (pp) C1qc", "shared_name" : "Cd74 (pp) C1qc", "SUID" : 622758, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "622741", "source" : "588049", "target" : "588697", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.641479624235, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cd74 (pp) Cd52", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.641479624235, "fusion" : "NA", "name" : "Cd74 (pp) Cd52", "neighborhood" : "NA", "sourceEdge" : 56533.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cd74 (pp) Cd52", "combinedscore" : "NA", "SUID" : 622741, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 0.00185716, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "622765", "source" : "588049", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd74 (pp) Pld4", "weight" : 0.444168542624, "name" : "Cd74 (pp) Pld4", "shared_name" : "Cd74 (pp) Pld4", "SUID" : 622765, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "622770", "source" : "588049", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd74 (pp) H2-DMa", "weight" : 0.748101696594, "name" : "Cd74 (pp) H2-DMa", "shared_name" : "Cd74 (pp) H2-DMa", "SUID" : 622770, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "622718", "source" : "588049", "target" : "588254", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd74 (pp) Irf8", "weight" : 0.404214849446, "name" : "Cd74 (pp) Irf8", "shared_name" : "Cd74 (pp) Irf8", "SUID" : 622718, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "622732", "source" : "588049", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd74 (pp) Coro1a", "weight" : 0.610396740374, "name" : "Cd74 (pp) Coro1a", "shared_name" : "Cd74 (pp) Coro1a", "SUID" : 622732, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "622720", "source" : "588049", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd74 (pp) Cxcl16", "weight" : 0.412416526747, "name" : "Cd74 (pp) Cxcl16", "shared_name" : "Cd74 (pp) Cxcl16", "SUID" : 622720, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "622780", "source" : "588049", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd74 (pp) C1qb", "weight" : 0.517381167236, "name" : "Cd74 (pp) C1qb", "shared_name" : "Cd74 (pp) C1qb", "SUID" : 622780, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "622761", "source" : "588049", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd74 (pp) H2-DMb1", "weight" : 0.784230620563, "name" : "Cd74 (pp) H2-DMb1", "shared_name" : "Cd74 (pp) H2-DMb1", "SUID" : 622761, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "622760", "source" : "588049", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd74 (pp) Cytip", "weight" : 0.41761545556, "name" : "Cd74 (pp) Cytip", "shared_name" : "Cd74 (pp) Cytip", "SUID" : 622760, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "622744", "source" : "588049", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd74 (pp) Serpina3g", "weight" : 0.446535823776, "name" : "Cd74 (pp) Serpina3g", "shared_name" : "Cd74 (pp) Serpina3g", "SUID" : 622744, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "622737", "source" : "588049", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd74 (pp) Casp1", "weight" : 0.453295947374, "name" : "Cd74 (pp) Casp1", "shared_name" : "Cd74 (pp) Casp1", "SUID" : 622737, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "622755", "source" : "588049", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd74 (pp) Fcer1g", "weight" : 0.576377774421, "name" : "Cd74 (pp) Fcer1g", "shared_name" : "Cd74 (pp) Fcer1g", "SUID" : 622755, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "622746", "source" : "588049", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd74 (pp) Axl", "weight" : 0.437975459721, "name" : "Cd74 (pp) Axl", "shared_name" : "Cd74 (pp) Axl", "SUID" : 622746, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "622714", "source" : "588049", "target" : "588227", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd74 (pp) Gbp2", "weight" : 0.409391581726, "name" : "Cd74 (pp) Gbp2", "shared_name" : "Cd74 (pp) Gbp2", "SUID" : 622714, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "622719", "source" : "588049", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd74 (pp) Ms4a6d", "weight" : 0.468735435774, "name" : "Cd74 (pp) Ms4a6d", "shared_name" : "Cd74 (pp) Ms4a6d", "SUID" : 622719, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "622759", "source" : "588049", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd74 (pp) Hk3", "weight" : 0.400633652989, "name" : "Cd74 (pp) Hk3", "shared_name" : "Cd74 (pp) Hk3", "SUID" : 622759, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "622725", "source" : "588049", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd74 (pp) Clec4n", "weight" : 0.445127212863, "name" : "Cd74 (pp) Clec4n", "shared_name" : "Cd74 (pp) Clec4n", "SUID" : 622725, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "622768", "source" : "588049", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd74 (pp) Tmsb4x", "weight" : 0.460179681426, "name" : "Cd74 (pp) Tmsb4x", "shared_name" : "Cd74 (pp) Tmsb4x", "SUID" : 622768, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "622728", "source" : "588049", "target" : "588457", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd74 (pp) Ccl5", "weight" : 0.518603896413, "name" : "Cd74 (pp) Ccl5", "shared_name" : "Cd74 (pp) Ccl5", "SUID" : 622728, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "622734", "source" : "588049", "target" : "588601", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.504985620642, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cd74 (pp) Slc11a1", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.504985620642, "fusion" : "NA", "name" : "Cd74 (pp) Slc11a1", "neighborhood" : "NA", "sourceEdge" : 56523.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cd74 (pp) Slc11a1", "combinedscore" : "NA", "SUID" : 622734, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 0.001479127, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "622733", "source" : "588049", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd74 (pp) Tmsb10", "weight" : 0.442922709164, "name" : "Cd74 (pp) Tmsb10", "shared_name" : "Cd74 (pp) Tmsb10", "SUID" : 622733, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "622742", "source" : "588049", "target" : "588707", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd74 (pp) Cxcl9", "weight" : 0.572874811465, "name" : "Cd74 (pp) Cxcl9", "shared_name" : "Cd74 (pp) Cxcl9", "SUID" : 622742, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631835", "source" : "588147", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Plac8", "weight" : 0.427487448517, "name" : "Ppic (pp) Plac8", "shared_name" : "Ppic (pp) Plac8", "SUID" : 631835, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631966", "source" : "588147", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Il10ra", "weight" : 0.447740694966, "name" : "Ppic (pp) Il10ra", "shared_name" : "Ppic (pp) Il10ra", "SUID" : 631966, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631693", "source" : "588147", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Ms4a6d", "weight" : 0.487211463223, "name" : "Ppic (pp) Ms4a6d", "shared_name" : "Ppic (pp) Ms4a6d", "SUID" : 631693, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631796", "source" : "588147", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) 5033414D02Rik", "weight" : 0.47728501339, "name" : "Ppic (pp) 5033414D02Rik", "shared_name" : "Ppic (pp) 5033414D02Rik", "SUID" : 631796, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631744", "source" : "588147", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Renbp", "weight" : 0.431945237463, "name" : "Ppic (pp) Renbp", "shared_name" : "Ppic (pp) Renbp", "SUID" : 631744, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631886", "source" : "588147", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Cfp", "weight" : 0.506018924092, "name" : "Ppic (pp) Cfp", "shared_name" : "Ppic (pp) Cfp", "SUID" : 631886, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631662", "source" : "588147", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Pip4k2a", "weight" : 0.456501394149, "name" : "Ppic (pp) Pip4k2a", "shared_name" : "Ppic (pp) Pip4k2a", "SUID" : 631662, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631808", "source" : "588147", "target" : "588728", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) AB124611", "weight" : 0.443847225409, "name" : "Ppic (pp) AB124611", "shared_name" : "Ppic (pp) AB124611", "SUID" : 631808, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631710", "source" : "588147", "target" : "588342", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Mfge8", "weight" : 0.512467639619, "name" : "Ppic (pp) Mfge8", "shared_name" : "Ppic (pp) Mfge8", "SUID" : 631710, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631951", "source" : "588147", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Ly86", "weight" : 0.476223524337, "name" : "Ppic (pp) Ly86", "shared_name" : "Ppic (pp) Ly86", "SUID" : 631951, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631769", "source" : "588147", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Snn", "weight" : 0.5934525965, "name" : "Ppic (pp) Snn", "shared_name" : "Ppic (pp) Snn", "SUID" : 631769, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631812", "source" : "588147", "target" : "588742", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Ifitm6", "weight" : 0.469659561147, "name" : "Ppic (pp) Ifitm6", "shared_name" : "Ppic (pp) Ifitm6", "SUID" : 631812, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631928", "source" : "588147", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Trem2", "weight" : 0.469190455059, "name" : "Ppic (pp) Trem2", "shared_name" : "Ppic (pp) Trem2", "SUID" : 631928, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631885", "source" : "588147", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Btk", "weight" : 0.505193303253, "name" : "Ppic (pp) Btk", "shared_name" : "Ppic (pp) Btk", "SUID" : 631885, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631845", "source" : "588147", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Lgals3", "weight" : 0.619551482294, "name" : "Ppic (pp) Lgals3", "shared_name" : "Ppic (pp) Lgals3", "SUID" : 631845, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631738", "source" : "588147", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Cd63", "weight" : 0.49471953871, "name" : "Ppic (pp) Cd63", "shared_name" : "Ppic (pp) Cd63", "SUID" : 631738, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631778", "source" : "588147", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Gngt2", "weight" : 0.440613000082, "name" : "Ppic (pp) Gngt2", "shared_name" : "Ppic (pp) Gngt2", "SUID" : 631778, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631898", "source" : "588147", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Vcam1", "weight" : 0.47976953863, "name" : "Ppic (pp) Vcam1", "shared_name" : "Ppic (pp) Vcam1", "SUID" : 631898, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631820", "source" : "588147", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) 5430435G22Rik", "weight" : 0.447726409455, "name" : "Ppic (pp) 5430435G22Rik", "shared_name" : "Ppic (pp) 5430435G22Rik", "SUID" : 631820, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631741", "source" : "588147", "target" : "588461", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Tbxas1", "weight" : 0.526253007676, "name" : "Ppic (pp) Tbxas1", "shared_name" : "Ppic (pp) Tbxas1", "SUID" : 631741, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631892", "source" : "588147", "target" : "589102", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Gja1", "weight" : 0.445832048586, "name" : "Ppic (pp) Gja1", "shared_name" : "Ppic (pp) Gja1", "SUID" : 631892, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631946", "source" : "588147", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Ear4", "weight" : 0.626899602864, "name" : "Ppic (pp) Ear4", "shared_name" : "Ppic (pp) Ear4", "SUID" : 631946, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631837", "source" : "588147", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Fcer1g", "weight" : 0.415816119524, "name" : "Ppic (pp) Fcer1g", "shared_name" : "Ppic (pp) Fcer1g", "SUID" : 631837, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631791", "source" : "588147", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Gpnmb", "weight" : 0.576664788852, "name" : "Ppic (pp) Gpnmb", "shared_name" : "Ppic (pp) Gpnmb", "SUID" : 631791, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631935", "source" : "588147", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Abi3", "weight" : 0.536361843164, "name" : "Ppic (pp) Abi3", "shared_name" : "Ppic (pp) Abi3", "SUID" : 631935, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631672", "source" : "588147", "target" : "588212", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Anxa3", "weight" : 0.539851873332, "name" : "Ppic (pp) Anxa3", "shared_name" : "Ppic (pp) Anxa3", "SUID" : 631672, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631821", "source" : "588147", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Ccl6", "weight" : 0.420904319151, "name" : "Ppic (pp) Ccl6", "shared_name" : "Ppic (pp) Ccl6", "SUID" : 631821, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631956", "source" : "588147", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Lrrc33", "weight" : 0.426537981289, "name" : "Ppic (pp) Lrrc33", "shared_name" : "Ppic (pp) Lrrc33", "SUID" : 631956, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631873", "source" : "588147", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Csrp1", "weight" : 0.516563833157, "name" : "Ppic (pp) Csrp1", "shared_name" : "Ppic (pp) Csrp1", "SUID" : 631873, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631922", "source" : "588147", "target" : "589225", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) St6gal1", "weight" : 0.482367310913, "name" : "Ppic (pp) St6gal1", "shared_name" : "Ppic (pp) St6gal1", "SUID" : 631922, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631680", "source" : "588147", "target" : "588242", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Cd83", "weight" : 0.5644399381, "name" : "Ppic (pp) Cd83", "shared_name" : "Ppic (pp) Cd83", "SUID" : 631680, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631942", "source" : "588147", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Clec7a", "weight" : 0.426963574686, "name" : "Ppic (pp) Clec7a", "shared_name" : "Ppic (pp) Clec7a", "SUID" : 631942, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631807", "source" : "588147", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Axl", "weight" : 0.413172248363, "name" : "Ppic (pp) Axl", "shared_name" : "Ppic (pp) Axl", "SUID" : 631807, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631857", "source" : "588147", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Cytip", "weight" : 0.459757957306, "name" : "Ppic (pp) Cytip", "shared_name" : "Ppic (pp) Cytip", "SUID" : 631857, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631776", "source" : "588147", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Slc11a1", "weight" : 0.496056781021, "name" : "Ppic (pp) Slc11a1", "shared_name" : "Ppic (pp) Slc11a1", "SUID" : 631776, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631936", "source" : "588147", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Ear12", "weight" : 0.462517105813, "name" : "Ppic (pp) Ear12", "shared_name" : "Ppic (pp) Ear12", "SUID" : 631936, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631704", "source" : "588147", "target" : "588322", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Pfkfb4", "weight" : 0.517268556146, "name" : "Ppic (pp) Pfkfb4", "shared_name" : "Ppic (pp) Pfkfb4", "SUID" : 631704, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631829", "source" : "588147", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Pla2g15", "weight" : 0.450404521251, "name" : "Ppic (pp) Pla2g15", "shared_name" : "Ppic (pp) Pla2g15", "SUID" : 631829, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631822", "source" : "588147", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Tmem86a", "weight" : 0.54493350686, "name" : "Ppic (pp) Tmem86a", "shared_name" : "Ppic (pp) Tmem86a", "SUID" : 631822, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631920", "source" : "588147", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Serpinb6a", "weight" : 0.573303472357, "name" : "Ppic (pp) Serpinb6a", "shared_name" : "Ppic (pp) Serpinb6a", "SUID" : 631920, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631734", "source" : "588147", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Clec4n", "weight" : 0.530919369347, "name" : "Ppic (pp) Clec4n", "shared_name" : "Ppic (pp) Clec4n", "SUID" : 631734, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631832", "source" : "588147", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Cotl1", "weight" : 0.507758436262, "name" : "Ppic (pp) Cotl1", "shared_name" : "Ppic (pp) Cotl1", "SUID" : 631832, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631818", "source" : "588147", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Slc15a3", "weight" : 0.548092119654, "name" : "Ppic (pp) Slc15a3", "shared_name" : "Ppic (pp) Slc15a3", "SUID" : 631818, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631933", "source" : "588147", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Ppif", "weight" : 0.533538137757, "name" : "Ppic (pp) Ppif", "shared_name" : "Ppic (pp) Ppif", "SUID" : 631933, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631677", "source" : "588147", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Laptm5", "weight" : 0.605441923954, "name" : "Ppic (pp) Laptm5", "shared_name" : "Ppic (pp) Laptm5", "SUID" : 631677, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631765", "source" : "588147", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Cd86", "weight" : 0.578434838878, "name" : "Ppic (pp) Cd86", "shared_name" : "Ppic (pp) Cd86", "SUID" : 631765, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631954", "source" : "588147", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Fblim1", "weight" : 0.474211181275, "name" : "Ppic (pp) Fblim1", "shared_name" : "Ppic (pp) Fblim1", "SUID" : 631954, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631825", "source" : "588147", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Obrgrp", "weight" : 0.459136298887, "name" : "Ppic (pp) Obrgrp", "shared_name" : "Ppic (pp) Obrgrp", "SUID" : 631825, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631716", "source" : "588147", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Cyp7b1", "weight" : 0.595054215288, "name" : "Ppic (pp) Cyp7b1", "shared_name" : "Ppic (pp) Cyp7b1", "SUID" : 631716, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631810", "source" : "588147", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Vsig4", "weight" : 0.473776458098, "name" : "Ppic (pp) Vsig4", "shared_name" : "Ppic (pp) Vsig4", "SUID" : 631810, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631952", "source" : "588147", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) C1qb", "weight" : 0.490162008916, "name" : "Ppic (pp) C1qb", "shared_name" : "Ppic (pp) C1qb", "SUID" : 631952, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "631730", "source" : "588147", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppic (pp) Cd14", "weight" : 0.504831766076, "name" : "Ppic (pp) Cd14", "shared_name" : "Ppic (pp) Cd14", "SUID" : 631730, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "659532", "source" : "588512", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Eb1 (pp) C1qb", "weight" : 0.501033431736, "name" : "H2-Eb1 (pp) C1qb", "shared_name" : "H2-Eb1 (pp) C1qb", "SUID" : 659532, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "659479", "source" : "588512", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Eb1 (pp) Casp1", "weight" : 0.450010867472, "name" : "H2-Eb1 (pp) Casp1", "shared_name" : "H2-Eb1 (pp) Casp1", "SUID" : 659479, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "659517", "source" : "588512", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Eb1 (pp) Tmsb4x", "weight" : 0.447306729413, "name" : "H2-Eb1 (pp) Tmsb4x", "shared_name" : "H2-Eb1 (pp) Tmsb4x", "SUID" : 659517, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "659484", "source" : "588512", "target" : "588678", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Eb1 (pp) Fxyd5", "weight" : 0.429010109882, "name" : "H2-Eb1 (pp) Fxyd5", "shared_name" : "H2-Eb1 (pp) Fxyd5", "SUID" : 659484, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "659492", "source" : "588512", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Eb1 (pp) Vsig4", "weight" : 0.404180542157, "name" : "H2-Eb1 (pp) Vsig4", "shared_name" : "H2-Eb1 (pp) Vsig4", "SUID" : 659492, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "659515", "source" : "588512", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Eb1 (pp) Vcam1", "weight" : 0.422534840496, "name" : "H2-Eb1 (pp) Vcam1", "shared_name" : "H2-Eb1 (pp) Vcam1", "SUID" : 659515, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "659493", "source" : "588512", "target" : "588740", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Eb1 (pp) Plekha2", "weight" : 0.410711168374, "name" : "H2-Eb1 (pp) Plekha2", "shared_name" : "H2-Eb1 (pp) Plekha2", "SUID" : 659493, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "659474", "source" : "588512", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Eb1 (pp) Coro1a", "weight" : 0.594059753194, "name" : "H2-Eb1 (pp) Coro1a", "shared_name" : "H2-Eb1 (pp) Coro1a", "SUID" : 659474, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "659476", "source" : "588512", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Eb1 (pp) Slc11a1", "weight" : 0.471130109846, "name" : "H2-Eb1 (pp) Slc11a1", "shared_name" : "H2-Eb1 (pp) Slc11a1", "SUID" : 659476, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "659486", "source" : "588512", "target" : "588707", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Eb1 (pp) Cxcl9", "weight" : 0.59326791034, "name" : "H2-Eb1 (pp) Cxcl9", "shared_name" : "H2-Eb1 (pp) Cxcl9", "SUID" : 659486, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "659504", "source" : "588512", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Eb1 (pp) C1qc", "weight" : 0.478459047435, "name" : "H2-Eb1 (pp) C1qc", "shared_name" : "H2-Eb1 (pp) C1qc", "SUID" : 659504, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "659490", "source" : "588512", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Eb1 (pp) Axl", "weight" : 0.435060936673, "name" : "H2-Eb1 (pp) Axl", "shared_name" : "H2-Eb1 (pp) Axl", "SUID" : 659490, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "659506", "source" : "588512", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Eb1 (pp) Cytip", "weight" : 0.447773372194, "name" : "H2-Eb1 (pp) Cytip", "shared_name" : "H2-Eb1 (pp) Cytip", "SUID" : 659506, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "659512", "source" : "588512", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Eb1 (pp) Pld4", "weight" : 0.400647898919, "name" : "H2-Eb1 (pp) Pld4", "shared_name" : "H2-Eb1 (pp) Pld4", "SUID" : 659512, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "659505", "source" : "588512", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Eb1 (pp) Hk3", "weight" : 0.403532621557, "name" : "H2-Eb1 (pp) Hk3", "shared_name" : "H2-Eb1 (pp) Hk3", "SUID" : 659505, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "659501", "source" : "588512", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Eb1 (pp) Fcer1g", "weight" : 0.52967046865, "name" : "H2-Eb1 (pp) Fcer1g", "shared_name" : "H2-Eb1 (pp) Fcer1g", "SUID" : 659501, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "659488", "source" : "588512", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Eb1 (pp) Serpina3g", "weight" : 0.501636119642, "name" : "H2-Eb1 (pp) Serpina3g", "shared_name" : "H2-Eb1 (pp) Serpina3g", "SUID" : 659488, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "659485", "source" : "588512", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Eb1 (pp) Cd52", "weight" : 0.623149061028, "name" : "H2-Eb1 (pp) Cd52", "shared_name" : "H2-Eb1 (pp) Cd52", "SUID" : 659485, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "659526", "source" : "588512", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Eb1 (pp) Fcgr4", "weight" : 0.460328057036, "name" : "H2-Eb1 (pp) Fcgr4", "shared_name" : "H2-Eb1 (pp) Fcgr4", "SUID" : 659526, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "659521", "source" : "588512", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Eb1 (pp) H2-DMa", "weight" : 0.796304698166, "name" : "H2-Eb1 (pp) H2-DMa", "shared_name" : "H2-Eb1 (pp) H2-DMa", "SUID" : 659521, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "659507", "source" : "588512", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Eb1 (pp) H2-DMb1", "weight" : 0.787228101669, "name" : "H2-Eb1 (pp) H2-DMb1", "shared_name" : "H2-Eb1 (pp) H2-DMb1", "SUID" : 659507, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665536", "source" : "588608", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Treml4 (pp) Lgals3", "weight" : 0.411733995945, "name" : "Treml4 (pp) Lgals3", "shared_name" : "Treml4 (pp) Lgals3", "SUID" : 665536, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665562", "source" : "588608", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Treml4 (pp) C1qb", "weight" : 0.589011545058, "name" : "Treml4 (pp) C1qb", "shared_name" : "Treml4 (pp) C1qb", "SUID" : 665562, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665537", "source" : "588608", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Treml4 (pp) C1qc", "weight" : 0.411604486561, "name" : "Treml4 (pp) C1qc", "shared_name" : "Treml4 (pp) C1qc", "SUID" : 665537, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665517", "source" : "588608", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Treml4 (pp) Cd52", "weight" : 0.441038738857, "name" : "Treml4 (pp) Cd52", "shared_name" : "Treml4 (pp) Cd52", "SUID" : 665517, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665544", "source" : "588608", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Treml4 (pp) Cfp", "weight" : 0.471690765309, "name" : "Treml4 (pp) Cfp", "shared_name" : "Treml4 (pp) Cfp", "SUID" : 665544, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665534", "source" : "588608", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Treml4 (pp) Fcer1g", "weight" : 0.527708925278, "name" : "Treml4 (pp) Fcer1g", "shared_name" : "Treml4 (pp) Fcer1g", "SUID" : 665534, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665524", "source" : "588608", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Treml4 (pp) Vsig4", "weight" : 0.516185195561, "name" : "Treml4 (pp) Vsig4", "shared_name" : "Treml4 (pp) Vsig4", "SUID" : 665524, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665538", "source" : "588608", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Treml4 (pp) Hk3", "weight" : 0.500279448527, "name" : "Treml4 (pp) Hk3", "shared_name" : "Treml4 (pp) Hk3", "SUID" : 665538, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665514", "source" : "588608", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Treml4 (pp) Casp1", "weight" : 0.437622992866, "name" : "Treml4 (pp) Casp1", "shared_name" : "Treml4 (pp) Casp1", "SUID" : 665514, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665561", "source" : "588608", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Treml4 (pp) Ly86", "weight" : 0.498275463773, "name" : "Treml4 (pp) Ly86", "shared_name" : "Treml4 (pp) Ly86", "SUID" : 665561, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665526", "source" : "588608", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Treml4 (pp) Slc15a3", "weight" : 0.485596492994, "name" : "Treml4 (pp) Slc15a3", "shared_name" : "Treml4 (pp) Slc15a3", "SUID" : 665526, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665558", "source" : "588608", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Treml4 (pp) Fcgr4", "weight" : 0.491079791093, "name" : "Treml4 (pp) Fcgr4", "shared_name" : "Treml4 (pp) Fcgr4", "SUID" : 665558, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665545", "source" : "588608", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Treml4 (pp) Pld4", "weight" : 0.444468868492, "name" : "Treml4 (pp) Pld4", "shared_name" : "Treml4 (pp) Pld4", "SUID" : 665545, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665548", "source" : "588608", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Treml4 (pp) Tmsb4x", "weight" : 0.441193082815, "name" : "Treml4 (pp) Tmsb4x", "shared_name" : "Treml4 (pp) Tmsb4x", "SUID" : 665548, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624707", "source" : "588069", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Casp1", "weight" : 0.445897184176, "name" : "A430084P05Rik (pp) Casp1", "shared_name" : "A430084P05Rik (pp) Casp1", "SUID" : 624707, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624716", "source" : "588069", "target" : "588664", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.565177737103, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "A430084P05Rik (pp) 5033414D02Rik", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.565177737103, "fusion" : "NA", "name" : "A430084P05Rik (pp) 5033414D02Rik", "neighborhood" : "NA", "sourceEdge" : 59358.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "A430084P05Rik (pp) 5033414D02Rik", "combinedscore" : "NA", "SUID" : 624716, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 3.73604E-7, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "624746", "source" : "588069", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Fcer1g", "weight" : 0.598301867325, "name" : "A430084P05Rik (pp) Fcer1g", "shared_name" : "A430084P05Rik (pp) Fcer1g", "SUID" : 624746, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624812", "source" : "588069", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.555101559637, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "A430084P05Rik (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.555101559637, "fusion" : "NA", "name" : "A430084P05Rik (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 59413.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "A430084P05Rik (pp) Ear4", "combinedscore" : "NA", "SUID" : 624812, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 1.407939E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "624764", "source" : "588069", "target" : "588999", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Kctd12", "weight" : 0.515369701926, "name" : "A430084P05Rik (pp) Kctd12", "shared_name" : "A430084P05Rik (pp) Kctd12", "SUID" : 624764, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624619", "source" : "588069", "target" : "588127", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Lpxn", "weight" : 0.446218162304, "name" : "A430084P05Rik (pp) Lpxn", "shared_name" : "A430084P05Rik (pp) Lpxn", "SUID" : 624619, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624646", "source" : "588069", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Ms4a6d", "weight" : 0.456285731595, "name" : "A430084P05Rik (pp) Ms4a6d", "shared_name" : "A430084P05Rik (pp) Ms4a6d", "SUID" : 624646, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624643", "source" : "588069", "target" : "588262", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) P2ry13", "weight" : 0.465012213518, "name" : "A430084P05Rik (pp) P2ry13", "shared_name" : "A430084P05Rik (pp) P2ry13", "SUID" : 624643, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624636", "source" : "588069", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Laptm5", "weight" : 0.4495056114, "name" : "A430084P05Rik (pp) Laptm5", "shared_name" : "A430084P05Rik (pp) Laptm5", "SUID" : 624636, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624755", "source" : "588069", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Hk3", "weight" : 0.516616145404, "name" : "A430084P05Rik (pp) Hk3", "shared_name" : "A430084P05Rik (pp) Hk3", "SUID" : 624755, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624721", "source" : "588069", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Cd52", "weight" : 0.548875269231, "name" : "A430084P05Rik (pp) Cd52", "shared_name" : "A430084P05Rik (pp) Cd52", "SUID" : 624721, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624753", "source" : "588069", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) C1qc", "weight" : 0.524421563705, "name" : "A430084P05Rik (pp) C1qc", "shared_name" : "A430084P05Rik (pp) C1qc", "SUID" : 624753, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624662", "source" : "588069", "target" : "588365", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Tnfaip8l2", "weight" : 0.429817044443, "name" : "A430084P05Rik (pp) Tnfaip8l2", "shared_name" : "A430084P05Rik (pp) Tnfaip8l2", "SUID" : 624662, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624817", "source" : "588069", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) C1qb", "weight" : 0.608903407542, "name" : "A430084P05Rik (pp) C1qb", "shared_name" : "A430084P05Rik (pp) C1qb", "SUID" : 624817, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624749", "source" : "588069", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Lgals3", "weight" : 0.509685344489, "name" : "A430084P05Rik (pp) Lgals3", "shared_name" : "A430084P05Rik (pp) Lgals3", "SUID" : 624749, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624668", "source" : "588069", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Cd14", "weight" : 0.422891024863, "name" : "A430084P05Rik (pp) Cd14", "shared_name" : "A430084P05Rik (pp) Cd14", "SUID" : 624668, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624693", "source" : "588069", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Cd86", "weight" : 0.477645491555, "name" : "A430084P05Rik (pp) Cd86", "shared_name" : "A430084P05Rik (pp) Cd86", "SUID" : 624693, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624632", "source" : "588069", "target" : "588212", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Anxa3", "weight" : 0.492514557641, "name" : "A430084P05Rik (pp) Anxa3", "shared_name" : "A430084P05Rik (pp) Anxa3", "SUID" : 624632, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624642", "source" : "588069", "target" : "588257", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Sdcbp", "weight" : 0.50436846321, "name" : "A430084P05Rik (pp) Sdcbp", "shared_name" : "A430084P05Rik (pp) Sdcbp", "SUID" : 624642, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624732", "source" : "588069", "target" : "588742", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Ifitm6", "weight" : 0.463032145419, "name" : "A430084P05Rik (pp) Ifitm6", "shared_name" : "A430084P05Rik (pp) Ifitm6", "SUID" : 624732, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624728", "source" : "588069", "target" : "588728", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) AB124611", "weight" : 0.58891215446, "name" : "A430084P05Rik (pp) AB124611", "shared_name" : "A430084P05Rik (pp) AB124611", "SUID" : 624728, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624781", "source" : "588069", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Vcam1", "weight" : 0.412534020893, "name" : "A430084P05Rik (pp) Vcam1", "shared_name" : "A430084P05Rik (pp) Vcam1", "SUID" : 624781, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624745", "source" : "588069", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Plac8", "weight" : 0.566609409744, "name" : "A430084P05Rik (pp) Plac8", "shared_name" : "A430084P05Rik (pp) Plac8", "SUID" : 624745, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624797", "source" : "588069", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Serpinb6a", "weight" : 0.487089412933, "name" : "A430084P05Rik (pp) Serpinb6a", "shared_name" : "A430084P05Rik (pp) Serpinb6a", "SUID" : 624797, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624700", "source" : "588069", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Tmsb10", "weight" : 0.445093997907, "name" : "A430084P05Rik (pp) Tmsb10", "shared_name" : "A430084P05Rik (pp) Tmsb10", "SUID" : 624700, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624789", "source" : "588069", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Rasgrp1", "weight" : 0.434561800221, "name" : "A430084P05Rik (pp) Rasgrp1", "shared_name" : "A430084P05Rik (pp) Rasgrp1", "SUID" : 624789, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624816", "source" : "588069", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Ly86", "weight" : 0.630139018442, "name" : "A430084P05Rik (pp) Ly86", "shared_name" : "A430084P05Rik (pp) Ly86", "SUID" : 624816, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624729", "source" : "588069", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Tpm4", "weight" : 0.450547165981, "name" : "A430084P05Rik (pp) Tpm4", "shared_name" : "A430084P05Rik (pp) Tpm4", "SUID" : 624729, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624624", "source" : "588069", "target" : "588151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Ccl4", "weight" : 0.487875897342, "name" : "A430084P05Rik (pp) Ccl4", "shared_name" : "A430084P05Rik (pp) Ccl4", "SUID" : 624624, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624664", "source" : "588069", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Selplg", "weight" : 0.434726845327, "name" : "A430084P05Rik (pp) Selplg", "shared_name" : "A430084P05Rik (pp) Selplg", "SUID" : 624664, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624767", "source" : "588069", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Csrp1", "weight" : 0.412723077082, "name" : "A430084P05Rik (pp) Csrp1", "shared_name" : "A430084P05Rik (pp) Csrp1", "SUID" : 624767, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624784", "source" : "588069", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Tmsb4x", "weight" : 0.50888286636, "name" : "A430084P05Rik (pp) Tmsb4x", "shared_name" : "A430084P05Rik (pp) Tmsb4x", "SUID" : 624784, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624773", "source" : "588069", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Cfp", "weight" : 0.497562267893, "name" : "A430084P05Rik (pp) Cfp", "shared_name" : "A430084P05Rik (pp) Cfp", "SUID" : 624773, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624699", "source" : "588069", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Coro1a", "weight" : 0.451130941347, "name" : "A430084P05Rik (pp) Coro1a", "shared_name" : "A430084P05Rik (pp) Coro1a", "SUID" : 624699, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624819", "source" : "588069", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Lrrc33", "weight" : 0.45426292717, "name" : "A430084P05Rik (pp) Lrrc33", "shared_name" : "A430084P05Rik (pp) Lrrc33", "SUID" : 624819, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624671", "source" : "588069", "target" : "588432", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Kcnk6", "weight" : 0.492666990119, "name" : "A430084P05Rik (pp) Kcnk6", "shared_name" : "A430084P05Rik (pp) Kcnk6", "SUID" : 624671, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624623", "source" : "588069", "target" : "588147", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Ppic", "weight" : 0.434635375933, "name" : "A430084P05Rik (pp) Ppic", "shared_name" : "A430084P05Rik (pp) Ppic", "SUID" : 624623, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624703", "source" : "588069", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Gngt2", "weight" : 0.516004031519, "name" : "A430084P05Rik (pp) Gngt2", "shared_name" : "A430084P05Rik (pp) Gngt2", "SUID" : 624703, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624735", "source" : "588069", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Slc15a3", "weight" : 0.520671357428, "name" : "A430084P05Rik (pp) Slc15a3", "shared_name" : "A430084P05Rik (pp) Slc15a3", "SUID" : 624735, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624747", "source" : "588069", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Fcgr3", "weight" : 0.470181585737, "name" : "A430084P05Rik (pp) Fcgr3", "shared_name" : "A430084P05Rik (pp) Fcgr3", "SUID" : 624747, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624725", "source" : "588069", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Serpina3g", "weight" : 0.408246962353, "name" : "A430084P05Rik (pp) Serpina3g", "shared_name" : "A430084P05Rik (pp) Serpina3g", "SUID" : 624725, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624670", "source" : "588069", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Clec4n", "weight" : 0.505373984582, "name" : "A430084P05Rik (pp) Clec4n", "shared_name" : "A430084P05Rik (pp) Clec4n", "SUID" : 624670, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624807", "source" : "588069", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Fcgr4", "weight" : 0.495252886511, "name" : "A430084P05Rik (pp) Fcgr4", "shared_name" : "A430084P05Rik (pp) Fcgr4", "SUID" : 624807, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624730", "source" : "588069", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Vsig4", "weight" : 0.517959136168, "name" : "A430084P05Rik (pp) Vsig4", "shared_name" : "A430084P05Rik (pp) Vsig4", "SUID" : 624730, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624650", "source" : "588069", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Cxcl16", "weight" : 0.484588400081, "name" : "A430084P05Rik (pp) Cxcl16", "shared_name" : "A430084P05Rik (pp) Cxcl16", "SUID" : 624650, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624701", "source" : "588069", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Slc11a1", "weight" : 0.666138620336, "name" : "A430084P05Rik (pp) Slc11a1", "shared_name" : "A430084P05Rik (pp) Slc11a1", "SUID" : 624701, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624666", "source" : "588069", "target" : "588394", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Lyzs", "weight" : 0.439028143713, "name" : "A430084P05Rik (pp) Lyzs", "shared_name" : "A430084P05Rik (pp) Lyzs", "SUID" : 624666, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624639", "source" : "588069", "target" : "588244", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Gltp", "weight" : 0.458246617627, "name" : "A430084P05Rik (pp) Gltp", "shared_name" : "A430084P05Rik (pp) Gltp", "SUID" : 624639, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624756", "source" : "588069", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Cytip", "weight" : 0.427448014885, "name" : "A430084P05Rik (pp) Cytip", "shared_name" : "A430084P05Rik (pp) Cytip", "SUID" : 624756, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "624687", "source" : "588069", "target" : "588517", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "A430084P05Rik (pp) Rac2", "weight" : 0.401459101941, "name" : "A430084P05Rik (pp) Rac2", "shared_name" : "A430084P05Rik (pp) Rac2", "SUID" : 624687, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686574", "source" : "589364", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lrrc33 (pp) Lmo2", "weight" : 0.452095762774, "name" : "Lrrc33 (pp) Lmo2", "shared_name" : "Lrrc33 (pp) Lmo2", "SUID" : 686574, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600197", "source" : "587790", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Pip4k2a", "weight" : 0.576348012289, "name" : "Sh3bgrl3 (pp) Pip4k2a", "shared_name" : "Sh3bgrl3 (pp) Pip4k2a", "SUID" : 600197, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600272", "source" : "587790", "target" : "588496", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Gphn", "weight" : 0.508870447326, "name" : "Sh3bgrl3 (pp) Gphn", "shared_name" : "Sh3bgrl3 (pp) Gphn", "SUID" : 600272, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600173", "source" : "587790", "target" : "588049", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Cd74", "weight" : 0.508478077594, "name" : "Sh3bgrl3 (pp) Cd74", "shared_name" : "Sh3bgrl3 (pp) Cd74", "SUID" : 600173, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600231", "source" : "587790", "target" : "588322", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Pfkfb4", "weight" : 0.408775775415, "name" : "Sh3bgrl3 (pp) Pfkfb4", "shared_name" : "Sh3bgrl3 (pp) Pfkfb4", "SUID" : 600231, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600185", "source" : "587790", "target" : "588104", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Bmp1", "weight" : 0.407490102828, "name" : "Sh3bgrl3 (pp) Bmp1", "shared_name" : "Sh3bgrl3 (pp) Bmp1", "SUID" : 600185, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600262", "source" : "587790", "target" : "588461", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Tbxas1", "weight" : 0.48583967337, "name" : "Sh3bgrl3 (pp) Tbxas1", "shared_name" : "Sh3bgrl3 (pp) Tbxas1", "SUID" : 600262, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600345", "source" : "587790", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Plac8", "weight" : 0.632082037149, "name" : "Sh3bgrl3 (pp) Plac8", "shared_name" : "Sh3bgrl3 (pp) Plac8", "SUID" : 600345, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600313", "source" : "587790", "target" : "588678", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Fxyd5", "weight" : 0.491993848798, "name" : "Sh3bgrl3 (pp) Fxyd5", "shared_name" : "Sh3bgrl3 (pp) Fxyd5", "SUID" : 600313, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600255", "source" : "587790", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Clec4n", "weight" : 0.686075718161, "name" : "Sh3bgrl3 (pp) Clec4n", "shared_name" : "Sh3bgrl3 (pp) Clec4n", "SUID" : 600255, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600442", "source" : "587790", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Lmo2", "weight" : 0.414264785354, "name" : "Sh3bgrl3 (pp) Lmo2", "shared_name" : "Sh3bgrl3 (pp) Lmo2", "SUID" : 600442, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600322", "source" : "587790", "target" : "588728", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) AB124611", "weight" : 0.551136210774, "name" : "Sh3bgrl3 (pp) AB124611", "shared_name" : "Sh3bgrl3 (pp) AB124611", "SUID" : 600322, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600125", "source" : "587790", "target" : "587798", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Ccnd1", "weight" : 0.544214765561, "name" : "Sh3bgrl3 (pp) Ccnd1", "shared_name" : "Sh3bgrl3 (pp) Ccnd1", "SUID" : 600125, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600159", "source" : "587790", "target" : "587966", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Cyba", "weight" : 0.875791759682, "name" : "Sh3bgrl3 (pp) Cyba", "shared_name" : "Sh3bgrl3 (pp) Cyba", "SUID" : 600159, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600437", "source" : "587790", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) C1qb", "weight" : 0.82338728776, "name" : "Sh3bgrl3 (pp) C1qb", "shared_name" : "Sh3bgrl3 (pp) C1qb", "SUID" : 600437, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600257", "source" : "587790", "target" : "588439", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Vim", "weight" : 0.487054041688, "name" : "Sh3bgrl3 (pp) Vim", "shared_name" : "Sh3bgrl3 (pp) Vim", "SUID" : 600257, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600414", "source" : "587790", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) H2-DMa", "weight" : 0.534514944195, "name" : "Sh3bgrl3 (pp) H2-DMa", "shared_name" : "Sh3bgrl3 (pp) H2-DMa", "SUID" : 600414, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600191", "source" : "587790", "target" : "588134", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Mlkl", "weight" : 0.446896092815, "name" : "Sh3bgrl3 (pp) Mlkl", "shared_name" : "Sh3bgrl3 (pp) Mlkl", "SUID" : 600191, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600343", "source" : "587790", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Cotl1", "weight" : 0.694586778855, "name" : "Sh3bgrl3 (pp) Cotl1", "shared_name" : "Sh3bgrl3 (pp) Cotl1", "SUID" : 600343, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600168", "source" : "587790", "target" : "588024", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Cd68", "weight" : 0.686506639576, "name" : "Sh3bgrl3 (pp) Cd68", "shared_name" : "Sh3bgrl3 (pp) Cd68", "SUID" : 600168, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600204", "source" : "587790", "target" : "588212", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Anxa3", "weight" : 0.636953699859, "name" : "Sh3bgrl3 (pp) Anxa3", "shared_name" : "Sh3bgrl3 (pp) Anxa3", "SUID" : 600204, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600376", "source" : "587790", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Csrp1", "weight" : 0.588985331655, "name" : "Sh3bgrl3 (pp) Csrp1", "shared_name" : "Sh3bgrl3 (pp) Csrp1", "SUID" : 600376, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600412", "source" : "587790", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Serpinb6a", "weight" : 0.630040997028, "name" : "Sh3bgrl3 (pp) Serpinb6a", "shared_name" : "Sh3bgrl3 (pp) Serpinb6a", "SUID" : 600412, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600419", "source" : "587790", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Trem2", "weight" : 0.500579413947, "name" : "Sh3bgrl3 (pp) Trem2", "shared_name" : "Sh3bgrl3 (pp) Trem2", "SUID" : 600419, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600325", "source" : "587790", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Vsig4", "weight" : 0.685194989063, "name" : "Sh3bgrl3 (pp) Vsig4", "shared_name" : "Sh3bgrl3 (pp) Vsig4", "SUID" : 600325, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600336", "source" : "587790", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Obrgrp", "weight" : 0.488695203414, "name" : "Sh3bgrl3 (pp) Obrgrp", "shared_name" : "Sh3bgrl3 (pp) Obrgrp", "SUID" : 600336, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600371", "source" : "587790", "target" : "588968", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Bcl2a1c", "weight" : 0.456816097024, "name" : "Sh3bgrl3 (pp) Bcl2a1c", "shared_name" : "Sh3bgrl3 (pp) Bcl2a1c", "SUID" : 600371, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600268", "source" : "587790", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Plscr1", "weight" : 0.420130722075, "name" : "Sh3bgrl3 (pp) Plscr1", "shared_name" : "Sh3bgrl3 (pp) Plscr1", "SUID" : 600268, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600296", "source" : "587790", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Gngt2", "weight" : 0.654499434473, "name" : "Sh3bgrl3 (pp) Gngt2", "shared_name" : "Sh3bgrl3 (pp) Gngt2", "SUID" : 600296, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600252", "source" : "587790", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Cd14", "weight" : 0.502546949053, "name" : "Sh3bgrl3 (pp) Cd14", "shared_name" : "Sh3bgrl3 (pp) Cd14", "SUID" : 600252, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600429", "source" : "587790", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Clec7a", "weight" : 0.472808737937, "name" : "Sh3bgrl3 (pp) Clec7a", "shared_name" : "Sh3bgrl3 (pp) Clec7a", "SUID" : 600429, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600137", "source" : "587790", "target" : "587844", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Ear2", "weight" : 0.788344325964, "name" : "Sh3bgrl3 (pp) Ear2", "shared_name" : "Sh3bgrl3 (pp) Ear2", "SUID" : 600137, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600163", "source" : "587790", "target" : "587989", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Tyrobp", "weight" : 0.632590199817, "name" : "Sh3bgrl3 (pp) Tyrobp", "shared_name" : "Sh3bgrl3 (pp) Tyrobp", "SUID" : 600163, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600248", "source" : "587790", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Selplg", "weight" : 0.58704003489, "name" : "Sh3bgrl3 (pp) Selplg", "shared_name" : "Sh3bgrl3 (pp) Selplg", "SUID" : 600248, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600389", "source" : "587790", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Pld4", "weight" : 0.605364076516, "name" : "Sh3bgrl3 (pp) Pld4", "shared_name" : "Sh3bgrl3 (pp) Pld4", "SUID" : 600389, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600278", "source" : "587790", "target" : "588517", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Rac2", "weight" : 0.467916959072, "name" : "Sh3bgrl3 (pp) Rac2", "shared_name" : "Sh3bgrl3 (pp) Rac2", "SUID" : 600278, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600399", "source" : "587790", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Tmsb4x", "weight" : 0.607853356919, "name" : "Sh3bgrl3 (pp) Tmsb4x", "shared_name" : "Sh3bgrl3 (pp) Tmsb4x", "SUID" : 600399, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600140", "source" : "587790", "target" : "587855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Pkm2", "weight" : 0.746947036158, "name" : "Sh3bgrl3 (pp) Pkm2", "shared_name" : "Sh3bgrl3 (pp) Pkm2", "SUID" : 600140, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600315", "source" : "587790", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Cd52", "weight" : 0.733793984231, "name" : "Sh3bgrl3 (pp) Cd52", "shared_name" : "Sh3bgrl3 (pp) Cd52", "SUID" : 600315, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600347", "source" : "587790", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Fcer1g", "weight" : 0.856832813135, "name" : "Sh3bgrl3 (pp) Fcer1g", "shared_name" : "Sh3bgrl3 (pp) Fcer1g", "SUID" : 600347, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600236", "source" : "587790", "target" : "588335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Arpc1b", "weight" : 0.439563197251, "name" : "Sh3bgrl3 (pp) Arpc1b", "shared_name" : "Sh3bgrl3 (pp) Arpc1b", "SUID" : 600236, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600166", "source" : "587790", "target" : "588010", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Cd84", "weight" : 0.639922686413, "name" : "Sh3bgrl3 (pp) Cd84", "shared_name" : "Sh3bgrl3 (pp) Cd84", "SUID" : 600166, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600266", "source" : "587790", "target" : "588472", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Ly9", "weight" : 0.445657261173, "name" : "Sh3bgrl3 (pp) Ly9", "shared_name" : "Sh3bgrl3 (pp) Ly9", "SUID" : 600266, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600357", "source" : "587790", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) C1qc", "weight" : 0.726315677454, "name" : "Sh3bgrl3 (pp) C1qc", "shared_name" : "Sh3bgrl3 (pp) C1qc", "SUID" : 600357, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600426", "source" : "587790", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Fcgr4", "weight" : 0.648986249078, "name" : "Sh3bgrl3 (pp) Fcgr4", "shared_name" : "Sh3bgrl3 (pp) Fcgr4", "SUID" : 600426, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600267", "source" : "587790", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Renbp", "weight" : 0.488293666079, "name" : "Sh3bgrl3 (pp) Renbp", "shared_name" : "Sh3bgrl3 (pp) Renbp", "SUID" : 600267, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600320", "source" : "587790", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Tlr2", "weight" : 0.452409547673, "name" : "Sh3bgrl3 (pp) Tlr2", "shared_name" : "Sh3bgrl3 (pp) Tlr2", "SUID" : 600320, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600177", "source" : "587790", "target" : "588057", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) 4732429D16Rik", "weight" : 0.514118880282, "name" : "Sh3bgrl3 (pp) 4732429D16Rik", "shared_name" : "Sh3bgrl3 (pp) 4732429D16Rik", "SUID" : 600177, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600179", "source" : "587790", "target" : "588069", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.582275571516, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Sh3bgrl3 (pp) A430084P05Rik", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.582275571516, "fusion" : "NA", "name" : "Sh3bgrl3 (pp) A430084P05Rik", "neighborhood" : "NA", "sourceEdge" : 15407.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Sh3bgrl3 (pp) A430084P05Rik", "combinedscore" : "NA", "SUID" : 600179, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 3.05972E-7, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "600423", "source" : "587790", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Abi3", "weight" : 0.557213865366, "name" : "Sh3bgrl3 (pp) Abi3", "shared_name" : "Sh3bgrl3 (pp) Abi3", "SUID" : 600423, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600424", "source" : "587790", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Ear12", "weight" : 0.48288441346, "name" : "Sh3bgrl3 (pp) Ear12", "shared_name" : "Sh3bgrl3 (pp) Ear12", "SUID" : 600424, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600334", "source" : "587790", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Tmem86a", "weight" : 0.542364126256, "name" : "Sh3bgrl3 (pp) Tmem86a", "shared_name" : "Sh3bgrl3 (pp) Tmem86a", "SUID" : 600334, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600323", "source" : "587790", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Tpm4", "weight" : 0.440939272442, "name" : "Sh3bgrl3 (pp) Tpm4", "shared_name" : "Sh3bgrl3 (pp) Tpm4", "SUID" : 600323, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600161", "source" : "587790", "target" : "587975", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) H2-Ab1", "weight" : 0.491310731675, "name" : "Sh3bgrl3 (pp) H2-Ab1", "shared_name" : "Sh3bgrl3 (pp) H2-Ab1", "SUID" : 600161, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600215", "source" : "587790", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Sdc3", "weight" : 0.540757343681, "name" : "Sh3bgrl3 (pp) Sdc3", "shared_name" : "Sh3bgrl3 (pp) Sdc3", "SUID" : 600215, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600139", "source" : "587790", "target" : "587851", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Sh3kbp1", "weight" : 0.564444993673, "name" : "Sh3bgrl3 (pp) Sh3kbp1", "shared_name" : "Sh3bgrl3 (pp) Sh3kbp1", "SUID" : 600139, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600395", "source" : "587790", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Vcam1", "weight" : 0.688988561104, "name" : "Sh3bgrl3 (pp) Vcam1", "shared_name" : "Sh3bgrl3 (pp) Vcam1", "SUID" : 600395, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600182", "source" : "587790", "target" : "588086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Iqgap1", "weight" : 0.425816874494, "name" : "Sh3bgrl3 (pp) Iqgap1", "shared_name" : "Sh3bgrl3 (pp) Iqgap1", "SUID" : 600182, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600302", "source" : "587790", "target" : "588636", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Repin1", "weight" : 0.412976265966, "name" : "Sh3bgrl3 (pp) Repin1", "shared_name" : "Sh3bgrl3 (pp) Repin1", "SUID" : 600302, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600228", "source" : "587790", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Cxcl16", "weight" : 0.598332385726, "name" : "Sh3bgrl3 (pp) Cxcl16", "shared_name" : "Sh3bgrl3 (pp) Cxcl16", "SUID" : 600228, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600210", "source" : "587790", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Laptm5", "weight" : 0.635277133424, "name" : "Sh3bgrl3 (pp) Laptm5", "shared_name" : "Sh3bgrl3 (pp) Laptm5", "SUID" : 600210, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600205", "source" : "587790", "target" : "588213", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Pdlim4", "weight" : 0.572259515232, "name" : "Sh3bgrl3 (pp) Pdlim4", "shared_name" : "Sh3bgrl3 (pp) Pdlim4", "SUID" : 600205, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600348", "source" : "587790", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Fcgr3", "weight" : 0.639944907659, "name" : "Sh3bgrl3 (pp) Fcgr3", "shared_name" : "Sh3bgrl3 (pp) Fcgr3", "SUID" : 600348, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600294", "source" : "587790", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Slc11a1", "weight" : 0.802251621305, "name" : "Sh3bgrl3 (pp) Slc11a1", "shared_name" : "Sh3bgrl3 (pp) Slc11a1", "SUID" : 600294, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600330", "source" : "587790", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Slc15a3", "weight" : 0.681185765232, "name" : "Sh3bgrl3 (pp) Slc15a3", "shared_name" : "Sh3bgrl3 (pp) Slc15a3", "SUID" : 600330, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600305", "source" : "587790", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Gpnmb", "weight" : 0.602835952004, "name" : "Sh3bgrl3 (pp) Gpnmb", "shared_name" : "Sh3bgrl3 (pp) Gpnmb", "SUID" : 600305, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600292", "source" : "587790", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Tmsb10", "weight" : 0.612573873245, "name" : "Sh3bgrl3 (pp) Tmsb10", "shared_name" : "Sh3bgrl3 (pp) Tmsb10", "SUID" : 600292, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600128", "source" : "587790", "target" : "587807", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Evi2a", "weight" : 0.668723841804, "name" : "Sh3bgrl3 (pp) Evi2a", "shared_name" : "Sh3bgrl3 (pp) Evi2a", "SUID" : 600128, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600245", "source" : "587790", "target" : "588365", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Tnfaip8l2", "weight" : 0.505342321431, "name" : "Sh3bgrl3 (pp) Tnfaip8l2", "shared_name" : "Sh3bgrl3 (pp) Tnfaip8l2", "SUID" : 600245, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600141", "source" : "587790", "target" : "587857", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Lgmn", "weight" : 0.743674029858, "name" : "Sh3bgrl3 (pp) Lgmn", "shared_name" : "Sh3bgrl3 (pp) Lgmn", "SUID" : 600141, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600384", "source" : "587790", "target" : "589076", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) H2-M3", "weight" : 0.466814153831, "name" : "Sh3bgrl3 (pp) H2-M3", "shared_name" : "Sh3bgrl3 (pp) H2-M3", "SUID" : 600384, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600351", "source" : "587790", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Lgals3", "weight" : 0.709698193906, "name" : "Sh3bgrl3 (pp) Lgals3", "shared_name" : "Sh3bgrl3 (pp) Lgals3", "SUID" : 600351, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600341", "source" : "587790", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Pla2g15", "weight" : 0.473600682482, "name" : "Sh3bgrl3 (pp) Pla2g15", "shared_name" : "Sh3bgrl3 (pp) Pla2g15", "SUID" : 600341, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600243", "source" : "587790", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Cyp7b1", "weight" : 0.538842643818, "name" : "Sh3bgrl3 (pp) Cyp7b1", "shared_name" : "Sh3bgrl3 (pp) Cyp7b1", "SUID" : 600243, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600289", "source" : "587790", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Snn", "weight" : 0.482572456734, "name" : "Sh3bgrl3 (pp) Snn", "shared_name" : "Sh3bgrl3 (pp) Snn", "SUID" : 600289, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600275", "source" : "587790", "target" : "588512", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) H2-Eb1", "weight" : 0.465984526321, "name" : "Sh3bgrl3 (pp) H2-Eb1", "shared_name" : "Sh3bgrl3 (pp) H2-Eb1", "SUID" : 600275, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600207", "source" : "587790", "target" : "588227", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Gbp2", "weight" : 0.416557036775, "name" : "Sh3bgrl3 (pp) Gbp2", "shared_name" : "Sh3bgrl3 (pp) Gbp2", "SUID" : 600207, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600333", "source" : "587790", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Ccl6", "weight" : 0.580876353482, "name" : "Sh3bgrl3 (pp) Ccl6", "shared_name" : "Sh3bgrl3 (pp) Ccl6", "SUID" : 600333, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600216", "source" : "587790", "target" : "588254", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Irf8", "weight" : 0.507138118115, "name" : "Sh3bgrl3 (pp) Irf8", "shared_name" : "Sh3bgrl3 (pp) Irf8", "SUID" : 600216, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600250", "source" : "587790", "target" : "588394", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.489578943661, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Sh3bgrl3 (pp) Lyzs", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.489578943661, "fusion" : "NA", "name" : "Sh3bgrl3 (pp) Lyzs", "neighborhood" : "NA", "sourceEdge" : 15439.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Sh3bgrl3 (pp) Lyzs", "combinedscore" : "NA", "SUID" : 600250, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 6.19246E-7, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "600213", "source" : "587790", "target" : "588242", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Cd83", "weight" : 0.531097825999, "name" : "Sh3bgrl3 (pp) Cd83", "shared_name" : "Sh3bgrl3 (pp) Cd83", "SUID" : 600213, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600440", "source" : "587790", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Lrrc33", "weight" : 0.473550852437, "name" : "Sh3bgrl3 (pp) Lrrc33", "shared_name" : "Sh3bgrl3 (pp) Lrrc33", "SUID" : 600440, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600318", "source" : "587790", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) 6330416G13Rik", "weight" : 0.633645385825, "name" : "Sh3bgrl3 (pp) 6330416G13Rik", "shared_name" : "Sh3bgrl3 (pp) 6330416G13Rik", "SUID" : 600318, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600291", "source" : "587790", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Coro1a", "weight" : 0.675148021689, "name" : "Sh3bgrl3 (pp) Coro1a", "shared_name" : "Sh3bgrl3 (pp) Coro1a", "SUID" : 600291, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600133", "source" : "587790", "target" : "587829", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Fyb", "weight" : 0.447337200507, "name" : "Sh3bgrl3 (pp) Fyb", "shared_name" : "Sh3bgrl3 (pp) Fyb", "SUID" : 600133, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600181", "source" : "587790", "target" : "588081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Capg", "weight" : 0.448231123342, "name" : "Sh3bgrl3 (pp) Capg", "shared_name" : "Sh3bgrl3 (pp) Capg", "SUID" : 600181, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600194", "source" : "587790", "target" : "588147", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Ppic", "weight" : 0.43364101102, "name" : "Sh3bgrl3 (pp) Ppic", "shared_name" : "Sh3bgrl3 (pp) Ppic", "SUID" : 600194, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600377", "source" : "587790", "target" : "589030", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Soat1", "weight" : 0.407312491151, "name" : "Sh3bgrl3 (pp) Soat1", "shared_name" : "Sh3bgrl3 (pp) Soat1", "SUID" : 600377, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600148", "source" : "587790", "target" : "587881", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Vav1", "weight" : 0.5610193093, "name" : "Sh3bgrl3 (pp) Vav1", "shared_name" : "Sh3bgrl3 (pp) Vav1", "SUID" : 600148, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600404", "source" : "587790", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Rasgrp1", "weight" : 0.470566010353, "name" : "Sh3bgrl3 (pp) Rasgrp1", "shared_name" : "Sh3bgrl3 (pp) Rasgrp1", "SUID" : 600404, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600256", "source" : "587790", "target" : "588432", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Kcnk6", "weight" : 0.41346169794, "name" : "Sh3bgrl3 (pp) Kcnk6", "shared_name" : "Sh3bgrl3 (pp) Kcnk6", "SUID" : 600256, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600359", "source" : "587790", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Hk3", "weight" : 0.597319121858, "name" : "Sh3bgrl3 (pp) Hk3", "shared_name" : "Sh3bgrl3 (pp) Hk3", "SUID" : 600359, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600223", "source" : "587790", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Ms4a6d", "weight" : 0.649031023601, "name" : "Sh3bgrl3 (pp) Ms4a6d", "shared_name" : "Sh3bgrl3 (pp) Ms4a6d", "SUID" : 600223, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600132", "source" : "587790", "target" : "587818", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Ifi30", "weight" : 0.758535002515, "name" : "Sh3bgrl3 (pp) Ifi30", "shared_name" : "Sh3bgrl3 (pp) Ifi30", "SUID" : 600132, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600365", "source" : "587790", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) H2-DMb1", "weight" : 0.496744563698, "name" : "Sh3bgrl3 (pp) H2-DMb1", "shared_name" : "Sh3bgrl3 (pp) H2-DMb1", "SUID" : 600365, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600386", "source" : "587790", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Cfp", "weight" : 0.562015127625, "name" : "Sh3bgrl3 (pp) Cfp", "shared_name" : "Sh3bgrl3 (pp) Cfp", "SUID" : 600386, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600415", "source" : "587790", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Ear10", "weight" : 0.525217943417, "name" : "Sh3bgrl3 (pp) Ear10", "shared_name" : "Sh3bgrl3 (pp) Ear10", "SUID" : 600415, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600258", "source" : "587790", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Cd63", "weight" : 0.508794089367, "name" : "Sh3bgrl3 (pp) Cd63", "shared_name" : "Sh3bgrl3 (pp) Cd63", "SUID" : 600258, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600214", "source" : "587790", "target" : "588244", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.534654503132, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Sh3bgrl3 (pp) Gltp", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.534654503132, "fusion" : "NA", "name" : "Sh3bgrl3 (pp) Gltp", "neighborhood" : "NA", "sourceEdge" : 15423.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Sh3bgrl3 (pp) Gltp", "combinedscore" : "NA", "SUID" : 600214, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 1.006155E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "600319", "source" : "587790", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Serpina3g", "weight" : 0.49976212033, "name" : "Sh3bgrl3 (pp) Serpina3g", "shared_name" : "Sh3bgrl3 (pp) Serpina3g", "SUID" : 600319, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600143", "source" : "587790", "target" : "587864", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Spic", "weight" : 0.430410734131, "name" : "Sh3bgrl3 (pp) Spic", "shared_name" : "Sh3bgrl3 (pp) Spic", "SUID" : 600143, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600436", "source" : "587790", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Ly86", "weight" : 0.682132436229, "name" : "Sh3bgrl3 (pp) Ly86", "shared_name" : "Sh3bgrl3 (pp) Ly86", "SUID" : 600436, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600217", "source" : "587790", "target" : "588257", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Sdcbp", "weight" : 0.414255841595, "name" : "Sh3bgrl3 (pp) Sdcbp", "shared_name" : "Sh3bgrl3 (pp) Sdcbp", "SUID" : 600217, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600432", "source" : "587790", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.700535159339, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Sh3bgrl3 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.700535159339, "fusion" : "NA", "name" : "Sh3bgrl3 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 15523.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Sh3bgrl3 (pp) Ear4", "combinedscore" : "NA", "SUID" : 600432, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 1.14596E-7, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "600195", "source" : "587790", "target" : "588151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Ccl4", "weight" : 0.599144398525, "name" : "Sh3bgrl3 (pp) Ccl4", "shared_name" : "Sh3bgrl3 (pp) Ccl4", "SUID" : 600195, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600301", "source" : "587790", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Casp1", "weight" : 0.57039824059, "name" : "Sh3bgrl3 (pp) Casp1", "shared_name" : "Sh3bgrl3 (pp) Casp1", "SUID" : 600301, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600297", "source" : "587790", "target" : "588608", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Treml4", "weight" : 0.547319434708, "name" : "Sh3bgrl3 (pp) Treml4", "shared_name" : "Sh3bgrl3 (pp) Treml4", "SUID" : 600297, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600285", "source" : "587790", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Cd86", "weight" : 0.602055110795, "name" : "Sh3bgrl3 (pp) Cd86", "shared_name" : "Sh3bgrl3 (pp) Cd86", "SUID" : 600285, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600190", "source" : "587790", "target" : "588127", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Lpxn", "weight" : 0.62944066909, "name" : "Sh3bgrl3 (pp) Lpxn", "shared_name" : "Sh3bgrl3 (pp) Lpxn", "SUID" : 600190, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600360", "source" : "587790", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Cytip", "weight" : 0.524585912432, "name" : "Sh3bgrl3 (pp) Cytip", "shared_name" : "Sh3bgrl3 (pp) Cytip", "SUID" : 600360, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600162", "source" : "587790", "target" : "587982", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.607872566905, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Sh3bgrl3 (pp) Plekho2", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.607872566905, "fusion" : "NA", "name" : "Sh3bgrl3 (pp) Plekho2", "neighborhood" : "NA", "sourceEdge" : 15400.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Sh3bgrl3 (pp) Plekho2", "combinedscore" : "NA", "SUID" : 600162, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 7.3027E-8, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "600199", "source" : "587790", "target" : "588185", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Aif1", "weight" : 0.513984725596, "name" : "Sh3bgrl3 (pp) Aif1", "shared_name" : "Sh3bgrl3 (pp) Aif1", "SUID" : 600199, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600310", "source" : "587790", "target" : "588664", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.604330176022, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Sh3bgrl3 (pp) 5033414D02Rik", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.604330176022, "fusion" : "NA", "name" : "Sh3bgrl3 (pp) 5033414D02Rik", "neighborhood" : "NA", "sourceEdge" : 15468.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Sh3bgrl3 (pp) 5033414D02Rik", "combinedscore" : "NA", "SUID" : 600310, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 3.36E-10, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "600321", "source" : "587790", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Axl", "weight" : 0.728406032981, "name" : "Sh3bgrl3 (pp) Axl", "shared_name" : "Sh3bgrl3 (pp) Axl", "SUID" : 600321, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600327", "source" : "587790", "target" : "588742", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.447431314314, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Sh3bgrl3 (pp) Ifitm6", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.447431314314, "fusion" : "NA", "name" : "Sh3bgrl3 (pp) Ifitm6", "neighborhood" : "NA", "sourceEdge" : 15481.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Sh3bgrl3 (pp) Ifitm6", "combinedscore" : "NA", "SUID" : 600327, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 4.069694E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "600147", "source" : "587790", "target" : "587873", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3bgrl3 (pp) Slc8a1", "weight" : 0.432799801383, "name" : "Sh3bgrl3 (pp) Slc8a1", "shared_name" : "Sh3bgrl3 (pp) Slc8a1", "SUID" : 600147, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676713", "source" : "588863", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcgr3 (pp) Abi3", "weight" : 0.53337863657, "name" : "Fcgr3 (pp) Abi3", "shared_name" : "Fcgr3 (pp) Abi3", "SUID" : 676713, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676659", "source" : "588863", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcgr3 (pp) C1qc", "weight" : 0.518277710028, "name" : "Fcgr3 (pp) C1qc", "shared_name" : "Fcgr3 (pp) C1qc", "SUID" : 676659, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676717", "source" : "588863", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcgr3 (pp) Fcgr4", "weight" : 0.465850037831, "name" : "Fcgr3 (pp) Fcgr4", "shared_name" : "Fcgr3 (pp) Fcgr4", "SUID" : 676717, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676662", "source" : "588863", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcgr3 (pp) Cytip", "weight" : 0.432491193378, "name" : "Fcgr3 (pp) Cytip", "shared_name" : "Fcgr3 (pp) Cytip", "SUID" : 676662, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676722", "source" : "588863", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.494274470582, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Fcgr3 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.494274470582, "fusion" : "NA", "name" : "Fcgr3 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 140775.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Fcgr3 (pp) Ear4", "combinedscore" : "NA", "SUID" : 676722, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 9.30136E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "676705", "source" : "588863", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcgr3 (pp) Serpinb6a", "weight" : 0.476614550714, "name" : "Fcgr3 (pp) Serpinb6a", "shared_name" : "Fcgr3 (pp) Serpinb6a", "SUID" : 676705, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676654", "source" : "588863", "target" : "588886", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.504842546516, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Fcgr3 (pp) Lgals3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.504842546516, "fusion" : "NA", "name" : "Fcgr3 (pp) Lgals3", "neighborhood" : "NA", "sourceEdge" : 140744.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Fcgr3 (pp) Lgals3", "combinedscore" : "NA", "SUID" : 676654, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "FALSE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.006772169, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "676726", "source" : "588863", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcgr3 (pp) C1qb", "weight" : 0.548603357717, "name" : "Fcgr3 (pp) C1qb", "shared_name" : "Fcgr3 (pp) C1qb", "SUID" : 676726, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676692", "source" : "588863", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcgr3 (pp) Vcam1", "weight" : 0.512076963696, "name" : "Fcgr3 (pp) Vcam1", "shared_name" : "Fcgr3 (pp) Vcam1", "SUID" : 676692, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676671", "source" : "588863", "target" : "588968", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcgr3 (pp) Bcl2a1c", "weight" : 0.554887460068, "name" : "Fcgr3 (pp) Bcl2a1c", "shared_name" : "Fcgr3 (pp) Bcl2a1c", "SUID" : 676671, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676725", "source" : "588863", "target" : "589335", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.433221634803, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Fcgr3 (pp) Ly86", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.433221634803, "fusion" : "NA", "name" : "Fcgr3 (pp) Ly86", "neighborhood" : "NA", "sourceEdge" : 140777.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Fcgr3 (pp) Ly86", "combinedscore" : "NA", "SUID" : 676725, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 6.149416E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "676677", "source" : "588863", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcgr3 (pp) Csrp1", "weight" : 0.401323796389, "name" : "Fcgr3 (pp) Csrp1", "shared_name" : "Fcgr3 (pp) Csrp1", "SUID" : 676677, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673543", "source" : "588786", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl6 (pp) Clec7a", "weight" : 0.531567788318, "name" : "Ccl6 (pp) Clec7a", "shared_name" : "Ccl6 (pp) Clec7a", "SUID" : 673543, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673544", "source" : "588786", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl6 (pp) Ear4", "weight" : 0.532570769008, "name" : "Ccl6 (pp) Ear4", "shared_name" : "Ccl6 (pp) Ear4", "SUID" : 673544, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673540", "source" : "588786", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl6 (pp) Fcgr4", "weight" : 0.445394105538, "name" : "Ccl6 (pp) Fcgr4", "shared_name" : "Ccl6 (pp) Fcgr4", "SUID" : 673540, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673511", "source" : "588786", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl6 (pp) Csrp1", "weight" : 0.482792317175, "name" : "Ccl6 (pp) Csrp1", "shared_name" : "Ccl6 (pp) Csrp1", "SUID" : 673511, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673496", "source" : "588786", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl6 (pp) Lgals3", "weight" : 0.59271835403, "name" : "Ccl6 (pp) Lgals3", "shared_name" : "Ccl6 (pp) Lgals3", "SUID" : 673496, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673546", "source" : "588786", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl6 (pp) Ly86", "weight" : 0.528361869955, "name" : "Ccl6 (pp) Ly86", "shared_name" : "Ccl6 (pp) Ly86", "SUID" : 673546, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673490", "source" : "588786", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl6 (pp) Fcer1g", "weight" : 0.527298444845, "name" : "Ccl6 (pp) Fcer1g", "shared_name" : "Ccl6 (pp) Fcer1g", "SUID" : 673490, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673554", "source" : "588786", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl6 (pp) Il10ra", "weight" : 0.404422201948, "name" : "Ccl6 (pp) Il10ra", "shared_name" : "Ccl6 (pp) Il10ra", "SUID" : 673554, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673506", "source" : "588786", "target" : "588968", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl6 (pp) Bcl2a1c", "weight" : 0.434935644444, "name" : "Ccl6 (pp) Bcl2a1c", "shared_name" : "Ccl6 (pp) Bcl2a1c", "SUID" : 673506, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673501", "source" : "588786", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl6 (pp) Cytip", "weight" : 0.425795593921, "name" : "Ccl6 (pp) Cytip", "shared_name" : "Ccl6 (pp) Cytip", "SUID" : 673501, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673535", "source" : "588786", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl6 (pp) Trem2", "weight" : 0.482912084971, "name" : "Ccl6 (pp) Trem2", "shared_name" : "Ccl6 (pp) Trem2", "SUID" : 673535, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673489", "source" : "588786", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl6 (pp) Plac8", "weight" : 0.510992413547, "name" : "Ccl6 (pp) Plac8", "shared_name" : "Ccl6 (pp) Plac8", "SUID" : 673489, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673547", "source" : "588786", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl6 (pp) C1qb", "weight" : 0.559128603072, "name" : "Ccl6 (pp) C1qb", "shared_name" : "Ccl6 (pp) C1qb", "SUID" : 673547, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673488", "source" : "588786", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl6 (pp) Cotl1", "weight" : 0.504009426957, "name" : "Ccl6 (pp) Cotl1", "shared_name" : "Ccl6 (pp) Cotl1", "SUID" : 673488, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673499", "source" : "588786", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl6 (pp) C1qc", "weight" : 0.565668973143, "name" : "Ccl6 (pp) C1qc", "shared_name" : "Ccl6 (pp) C1qc", "SUID" : 673499, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673492", "source" : "588786", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl6 (pp) Fcgr3", "weight" : 0.528144009425, "name" : "Ccl6 (pp) Fcgr3", "shared_name" : "Ccl6 (pp) Fcgr3", "SUID" : 673492, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673530", "source" : "588786", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl6 (pp) Serpinb6a", "weight" : 0.440035819125, "name" : "Ccl6 (pp) Serpinb6a", "shared_name" : "Ccl6 (pp) Serpinb6a", "SUID" : 673530, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673519", "source" : "588786", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl6 (pp) Vcam1", "weight" : 0.54559924994, "name" : "Ccl6 (pp) Vcam1", "shared_name" : "Ccl6 (pp) Vcam1", "SUID" : 673519, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673244", "source" : "588782", "target" : "589225", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) St6gal1", "weight" : 0.426309260345, "name" : "Slc15a3 (pp) St6gal1", "shared_name" : "Slc15a3 (pp) St6gal1", "SUID" : 673244, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673166", "source" : "588782", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Lgals3", "weight" : 0.79349074011, "name" : "Slc15a3 (pp) Lgals3", "shared_name" : "Slc15a3 (pp) Lgals3", "SUID" : 673166, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673261", "source" : "588782", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Clec7a", "weight" : 0.505458763199, "name" : "Slc15a3 (pp) Clec7a", "shared_name" : "Slc15a3 (pp) Clec7a", "SUID" : 673261, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673263", "source" : "588782", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.774072559466, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Slc15a3 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 4.77E-10, "weight" : 0.774072559466, "fusion" : "NA", "name" : "Slc15a3 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 135816.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Slc15a3 (pp) Ear4", "combinedscore" : "NA", "SUID" : 673263, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 8.0E-12, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "673275", "source" : "588782", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Lmo2", "weight" : 0.450585656012, "name" : "Slc15a3 (pp) Lmo2", "shared_name" : "Slc15a3 (pp) Lmo2", "SUID" : 673275, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673247", "source" : "588782", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Ear10", "weight" : 0.598636626971, "name" : "Slc15a3 (pp) Ear10", "shared_name" : "Slc15a3 (pp) Ear10", "SUID" : 673247, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673281", "source" : "588782", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Il10ra", "weight" : 0.437201596226, "name" : "Slc15a3 (pp) Il10ra", "shared_name" : "Slc15a3 (pp) Il10ra", "SUID" : 673281, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673223", "source" : "588782", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Tmsb4x", "weight" : 0.650898253065, "name" : "Slc15a3 (pp) Tmsb4x", "shared_name" : "Slc15a3 (pp) Tmsb4x", "SUID" : 673223, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673246", "source" : "588782", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) H2-DMa", "weight" : 0.475009966846, "name" : "Slc15a3 (pp) H2-DMa", "shared_name" : "Slc15a3 (pp) H2-DMa", "SUID" : 673246, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673158", "source" : "588782", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Fcer1g", "weight" : 0.750631261104, "name" : "Slc15a3 (pp) Fcer1g", "shared_name" : "Slc15a3 (pp) Fcer1g", "SUID" : 673158, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673175", "source" : "588782", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Hk3", "weight" : 0.678710974868, "name" : "Slc15a3 (pp) Hk3", "shared_name" : "Slc15a3 (pp) Hk3", "SUID" : 673175, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673258", "source" : "588782", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Fcgr4", "weight" : 0.761662368781, "name" : "Slc15a3 (pp) Fcgr4", "shared_name" : "Slc15a3 (pp) Fcgr4", "SUID" : 673258, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673141", "source" : "588782", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) 5430435G22Rik", "weight" : 0.439805742046, "name" : "Slc15a3 (pp) 5430435G22Rik", "shared_name" : "Slc15a3 (pp) 5430435G22Rik", "SUID" : 673141, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673150", "source" : "588782", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Pla2g15", "weight" : 0.474713972921, "name" : "Slc15a3 (pp) Pla2g15", "shared_name" : "Slc15a3 (pp) Pla2g15", "SUID" : 673150, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673273", "source" : "588782", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Lrrc33", "weight" : 0.519658940119, "name" : "Slc15a3 (pp) Lrrc33", "shared_name" : "Slc15a3 (pp) Lrrc33", "SUID" : 673273, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673271", "source" : "588782", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Fblim1", "weight" : 0.530330646507, "name" : "Slc15a3 (pp) Fblim1", "shared_name" : "Slc15a3 (pp) Fblim1", "SUID" : 673271, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673269", "source" : "588782", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) C1qb", "weight" : 0.706592108038, "name" : "Slc15a3 (pp) C1qb", "shared_name" : "Slc15a3 (pp) C1qb", "SUID" : 673269, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673176", "source" : "588782", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Cytip", "weight" : 0.647771625854, "name" : "Slc15a3 (pp) Cytip", "shared_name" : "Slc15a3 (pp) Cytip", "SUID" : 673176, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673256", "source" : "588782", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Ear12", "weight" : 0.586113577821, "name" : "Slc15a3 (pp) Ear12", "shared_name" : "Slc15a3 (pp) Ear12", "SUID" : 673256, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673266", "source" : "588782", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Prkcd", "weight" : 0.483421289078, "name" : "Slc15a3 (pp) Prkcd", "shared_name" : "Slc15a3 (pp) Prkcd", "SUID" : 673266, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673272", "source" : "588782", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Tspan33", "weight" : 0.463071087106, "name" : "Slc15a3 (pp) Tspan33", "shared_name" : "Slc15a3 (pp) Tspan33", "SUID" : 673272, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673268", "source" : "588782", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Ly86", "weight" : 0.777170097861, "name" : "Slc15a3 (pp) Ly86", "shared_name" : "Slc15a3 (pp) Ly86", "SUID" : 673268, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673193", "source" : "588782", "target" : "589005", "homology" : "NA", "shared_interaction" : "NA", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.765569031477, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Slc15a3 (pp) Csrp1", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 6.0E-12, "weight" : 0.765569031477, "fusion" : "NA", "name" : "Slc15a3 (pp) Csrp1", "neighborhood" : "NA", "sourceEdge" : 135792.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Slc15a3 (pp) Csrp1", "combinedscore" : "NA", "SUID" : 673193, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "NA", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "673242", "source" : "588782", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Serpinb6a", "weight" : 0.711688733876, "name" : "Slc15a3 (pp) Serpinb6a", "shared_name" : "Slc15a3 (pp) Serpinb6a", "SUID" : 673242, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673204", "source" : "588782", "target" : "589076", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) H2-M3", "weight" : 0.407033374714, "name" : "Slc15a3 (pp) H2-M3", "shared_name" : "Slc15a3 (pp) H2-M3", "SUID" : 673204, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673173", "source" : "588782", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) C1qc", "weight" : 0.571181842249, "name" : "Slc15a3 (pp) C1qc", "shared_name" : "Slc15a3 (pp) C1qc", "SUID" : 673173, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673156", "source" : "588782", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Plac8", "weight" : 0.810778267073, "name" : "Slc15a3 (pp) Plac8", "shared_name" : "Slc15a3 (pp) Plac8", "SUID" : 673156, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673194", "source" : "588782", "target" : "589030", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Soat1", "weight" : 0.434653503243, "name" : "Slc15a3 (pp) Soat1", "shared_name" : "Slc15a3 (pp) Soat1", "SUID" : 673194, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673210", "source" : "588782", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Pld4", "weight" : 0.401298274996, "name" : "Slc15a3 (pp) Pld4", "shared_name" : "Slc15a3 (pp) Pld4", "SUID" : 673210, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673154", "source" : "588782", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Cotl1", "weight" : 0.732112139968, "name" : "Slc15a3 (pp) Cotl1", "shared_name" : "Slc15a3 (pp) Cotl1", "SUID" : 673154, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673216", "source" : "588782", "target" : "589113", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Ms4a7", "weight" : 0.411098816345, "name" : "Slc15a3 (pp) Ms4a7", "shared_name" : "Slc15a3 (pp) Ms4a7", "SUID" : 673216, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673142", "source" : "588782", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Ccl6", "weight" : 0.474296689075, "name" : "Slc15a3 (pp) Ccl6", "shared_name" : "Slc15a3 (pp) Ccl6", "SUID" : 673142, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673255", "source" : "588782", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Abi3", "weight" : 0.525174517325, "name" : "Slc15a3 (pp) Abi3", "shared_name" : "Slc15a3 (pp) Abi3", "SUID" : 673255, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673214", "source" : "588782", "target" : "589102", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Gja1", "weight" : 0.425840025477, "name" : "Slc15a3 (pp) Gja1", "shared_name" : "Slc15a3 (pp) Gja1", "SUID" : 673214, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673228", "source" : "588782", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Rasgrp1", "weight" : 0.529153221339, "name" : "Slc15a3 (pp) Rasgrp1", "shared_name" : "Slc15a3 (pp) Rasgrp1", "SUID" : 673228, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673160", "source" : "588782", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Fcgr3", "weight" : 0.456891445981, "name" : "Slc15a3 (pp) Fcgr3", "shared_name" : "Slc15a3 (pp) Fcgr3", "SUID" : 673160, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673253", "source" : "588782", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Ppif", "weight" : 0.427422971153, "name" : "Slc15a3 (pp) Ppif", "shared_name" : "Slc15a3 (pp) Ppif", "SUID" : 673253, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673143", "source" : "588782", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Tmem86a", "weight" : 0.699023552058, "name" : "Slc15a3 (pp) Tmem86a", "shared_name" : "Slc15a3 (pp) Tmem86a", "SUID" : 673143, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673250", "source" : "588782", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Trem2", "weight" : 0.470263713955, "name" : "Slc15a3 (pp) Trem2", "shared_name" : "Slc15a3 (pp) Trem2", "SUID" : 673250, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673212", "source" : "588782", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Snx10", "weight" : 0.507937455633, "name" : "Slc15a3 (pp) Snx10", "shared_name" : "Slc15a3 (pp) Snx10", "SUID" : 673212, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673260", "source" : "588782", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Cd53", "weight" : 0.526369155315, "name" : "Slc15a3 (pp) Cd53", "shared_name" : "Slc15a3 (pp) Cd53", "SUID" : 673260, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673190", "source" : "588782", "target" : "588999", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Kctd12", "weight" : 0.441016613619, "name" : "Slc15a3 (pp) Kctd12", "shared_name" : "Slc15a3 (pp) Kctd12", "SUID" : 673190, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673207", "source" : "588782", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Cfp", "weight" : 0.740488271779, "name" : "Slc15a3 (pp) Cfp", "shared_name" : "Slc15a3 (pp) Cfp", "SUID" : 673207, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673146", "source" : "588782", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Obrgrp", "weight" : 0.640807629199, "name" : "Slc15a3 (pp) Obrgrp", "shared_name" : "Slc15a3 (pp) Obrgrp", "SUID" : 673146, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673219", "source" : "588782", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Vcam1", "weight" : 0.719535559553, "name" : "Slc15a3 (pp) Vcam1", "shared_name" : "Slc15a3 (pp) Vcam1", "SUID" : 673219, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673205", "source" : "588782", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc15a3 (pp) Btk", "weight" : 0.571049942, "name" : "Slc15a3 (pp) Btk", "shared_name" : "Slc15a3 (pp) Btk", "SUID" : 673205, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633655", "source" : "588182", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Tpm4", "weight" : 0.487453266653, "name" : "Pip4k2a (pp) Tpm4", "shared_name" : "Pip4k2a (pp) Tpm4", "SUID" : 633655, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633597", "source" : "588182", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Clec4n", "weight" : 0.603376595886, "name" : "Pip4k2a (pp) Clec4n", "shared_name" : "Pip4k2a (pp) Clec4n", "SUID" : 633597, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633644", "source" : "588182", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) 5033414D02Rik", "weight" : 0.588949903657, "name" : "Pip4k2a (pp) 5033414D02Rik", "shared_name" : "Pip4k2a (pp) 5033414D02Rik", "SUID" : 633644, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633600", "source" : "588182", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Cd63", "weight" : 0.587383632136, "name" : "Pip4k2a (pp) Cd63", "shared_name" : "Pip4k2a (pp) Cd63", "SUID" : 633600, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633656", "source" : "588182", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Vsig4", "weight" : 0.59889361452, "name" : "Pip4k2a (pp) Vsig4", "shared_name" : "Pip4k2a (pp) Vsig4", "SUID" : 633656, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633735", "source" : "588182", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Ppif", "weight" : 0.452349172902, "name" : "Pip4k2a (pp) Ppif", "shared_name" : "Pip4k2a (pp) Ppif", "SUID" : 633735, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633720", "source" : "588182", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Rasgrp1", "weight" : 0.664301303143, "name" : "Pip4k2a (pp) Rasgrp1", "shared_name" : "Pip4k2a (pp) Rasgrp1", "SUID" : 633720, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633657", "source" : "588182", "target" : "588740", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Plekha2", "weight" : 0.46475573075, "name" : "Pip4k2a (pp) Plekha2", "shared_name" : "Pip4k2a (pp) Plekha2", "SUID" : 633657, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633560", "source" : "588182", "target" : "588244", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Gltp", "weight" : 0.491617185049, "name" : "Pip4k2a (pp) Gltp", "shared_name" : "Pip4k2a (pp) Gltp", "SUID" : 633560, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633598", "source" : "588182", "target" : "588432", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Kcnk6", "weight" : 0.485749105567, "name" : "Pip4k2a (pp) Kcnk6", "shared_name" : "Pip4k2a (pp) Kcnk6", "SUID" : 633598, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633741", "source" : "588182", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Clec7a", "weight" : 0.588427858743, "name" : "Pip4k2a (pp) Clec7a", "shared_name" : "Pip4k2a (pp) Clec7a", "SUID" : 633741, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633730", "source" : "588182", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Ear10", "weight" : 0.525362097624, "name" : "Pip4k2a (pp) Ear10", "shared_name" : "Pip4k2a (pp) Ear10", "SUID" : 633730, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633551", "source" : "588182", "target" : "588213", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Pdlim4", "weight" : 0.414681859767, "name" : "Pip4k2a (pp) Pdlim4", "shared_name" : "Pip4k2a (pp) Pdlim4", "SUID" : 633551, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633710", "source" : "588182", "target" : "589113", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Ms4a7", "weight" : 0.457774900836, "name" : "Pip4k2a (pp) Ms4a7", "shared_name" : "Pip4k2a (pp) Ms4a7", "SUID" : 633710, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633625", "source" : "588182", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Snn", "weight" : 0.649425033574, "name" : "Pip4k2a (pp) Snn", "shared_name" : "Pip4k2a (pp) Snn", "SUID" : 633625, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633671", "source" : "588182", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Cotl1", "weight" : 0.626860944966, "name" : "Pip4k2a (pp) Cotl1", "shared_name" : "Pip4k2a (pp) Cotl1", "SUID" : 633671, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633594", "source" : "588182", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Cd14", "weight" : 0.42589476865, "name" : "Pip4k2a (pp) Cd14", "shared_name" : "Pip4k2a (pp) Cd14", "SUID" : 633594, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633631", "source" : "588182", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Gngt2", "weight" : 0.547043534954, "name" : "Pip4k2a (pp) Gngt2", "shared_name" : "Pip4k2a (pp) Gngt2", "SUID" : 633631, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633568", "source" : "588182", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Ms4a6d", "weight" : 0.588527238356, "name" : "Pip4k2a (pp) Ms4a6d", "shared_name" : "Pip4k2a (pp) Ms4a6d", "SUID" : 633568, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633665", "source" : "588182", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Tmem86a", "weight" : 0.595974853993, "name" : "Pip4k2a (pp) Tmem86a", "shared_name" : "Pip4k2a (pp) Tmem86a", "SUID" : 633665, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633590", "source" : "588182", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Selplg", "weight" : 0.492347163377, "name" : "Pip4k2a (pp) Selplg", "shared_name" : "Pip4k2a (pp) Selplg", "SUID" : 633590, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633641", "source" : "588182", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Gpnmb", "weight" : 0.55924068025, "name" : "Pip4k2a (pp) Gpnmb", "shared_name" : "Pip4k2a (pp) Gpnmb", "SUID" : 633641, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633752", "source" : "588182", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Tspan33", "weight" : 0.546883801655, "name" : "Pip4k2a (pp) Tspan33", "shared_name" : "Pip4k2a (pp) Tspan33", "SUID" : 633752, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633755", "source" : "588182", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Lmo2", "weight" : 0.455535733823, "name" : "Pip4k2a (pp) Lmo2", "shared_name" : "Pip4k2a (pp) Lmo2", "SUID" : 633755, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633637", "source" : "588182", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Casp1", "weight" : 0.567890157298, "name" : "Pip4k2a (pp) Casp1", "shared_name" : "Pip4k2a (pp) Casp1", "SUID" : 633637, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633651", "source" : "588182", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Serpina3g", "weight" : 0.502559300794, "name" : "Pip4k2a (pp) Serpina3g", "shared_name" : "Pip4k2a (pp) Serpina3g", "SUID" : 633651, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633727", "source" : "588182", "target" : "589225", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) St6gal1", "weight" : 0.441888808041, "name" : "Pip4k2a (pp) St6gal1", "shared_name" : "Pip4k2a (pp) St6gal1", "SUID" : 633727, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633546", "source" : "588182", "target" : "588185", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Aif1", "weight" : 0.420819805214, "name" : "Pip4k2a (pp) Aif1", "shared_name" : "Pip4k2a (pp) Aif1", "SUID" : 633546, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633558", "source" : "588182", "target" : "588242", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Cd83", "weight" : 0.464747024709, "name" : "Pip4k2a (pp) Cd83", "shared_name" : "Pip4k2a (pp) Cd83", "SUID" : 633558, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633647", "source" : "588182", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Cd52", "weight" : 0.585780065176, "name" : "Pip4k2a (pp) Cd52", "shared_name" : "Pip4k2a (pp) Cd52", "SUID" : 633647, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633733", "source" : "588182", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Trem2", "weight" : 0.43004312905, "name" : "Pip4k2a (pp) Trem2", "shared_name" : "Pip4k2a (pp) Trem2", "SUID" : 633733, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633645", "source" : "588182", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) D12Ertd553e", "weight" : 0.5592289798, "name" : "Pip4k2a (pp) D12Ertd553e", "shared_name" : "Pip4k2a (pp) D12Ertd553e", "SUID" : 633645, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633622", "source" : "588182", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Cd86", "weight" : 0.631086507658, "name" : "Pip4k2a (pp) Cd86", "shared_name" : "Pip4k2a (pp) Cd86", "SUID" : 633622, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633584", "source" : "588182", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Cyp7b1", "weight" : 0.537652161401, "name" : "Pip4k2a (pp) Cyp7b1", "shared_name" : "Pip4k2a (pp) Cyp7b1", "SUID" : 633584, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633603", "source" : "588182", "target" : "588459", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Pop5", "weight" : 0.453446564476, "name" : "Pip4k2a (pp) Pop5", "shared_name" : "Pip4k2a (pp) Pop5", "SUID" : 633603, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633663", "source" : "588182", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) 5430435G22Rik", "weight" : 0.410642913853, "name" : "Pip4k2a (pp) 5430435G22Rik", "shared_name" : "Pip4k2a (pp) 5430435G22Rik", "SUID" : 633663, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633748", "source" : "588182", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Ly86", "weight" : 0.480287829129, "name" : "Pip4k2a (pp) Ly86", "shared_name" : "Pip4k2a (pp) Ly86", "SUID" : 633748, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633674", "source" : "588182", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Fcer1g", "weight" : 0.566614866557, "name" : "Pip4k2a (pp) Fcer1g", "shared_name" : "Pip4k2a (pp) Fcer1g", "SUID" : 633674, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633689", "source" : "588182", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) H2-DMb1", "weight" : 0.427763925379, "name" : "Pip4k2a (pp) H2-DMb1", "shared_name" : "Pip4k2a (pp) H2-DMb1", "SUID" : 633689, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633579", "source" : "588182", "target" : "588342", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Mfge8", "weight" : 0.50823059069, "name" : "Pip4k2a (pp) Mfge8", "shared_name" : "Pip4k2a (pp) Mfge8", "SUID" : 633579, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633686", "source" : "588182", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Cytip", "weight" : 0.567815482442, "name" : "Pip4k2a (pp) Cytip", "shared_name" : "Pip4k2a (pp) Cytip", "SUID" : 633686, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633653", "source" : "588182", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Axl", "weight" : 0.618977218055, "name" : "Pip4k2a (pp) Axl", "shared_name" : "Pip4k2a (pp) Axl", "SUID" : 633653, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633679", "source" : "588182", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Lgals3", "weight" : 0.624859557568, "name" : "Pip4k2a (pp) Lgals3", "shared_name" : "Pip4k2a (pp) Lgals3", "SUID" : 633679, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633738", "source" : "588182", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Fcgr4", "weight" : 0.539411494593, "name" : "Pip4k2a (pp) Fcgr4", "shared_name" : "Pip4k2a (pp) Fcgr4", "SUID" : 633738, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633672", "source" : "588182", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Plac8", "weight" : 0.493718140873, "name" : "Pip4k2a (pp) Plac8", "shared_name" : "Pip4k2a (pp) Plac8", "SUID" : 633672, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633563", "source" : "588182", "target" : "588257", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Sdcbp", "weight" : 0.48492716319, "name" : "Pip4k2a (pp) Sdcbp", "shared_name" : "Pip4k2a (pp) Sdcbp", "SUID" : 633563, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633746", "source" : "588182", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Prkcd", "weight" : 0.455842313323, "name" : "Pip4k2a (pp) Prkcd", "shared_name" : "Pip4k2a (pp) Prkcd", "SUID" : 633746, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633562", "source" : "588182", "target" : "588254", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Irf8", "weight" : 0.415878544822, "name" : "Pip4k2a (pp) Irf8", "shared_name" : "Pip4k2a (pp) Irf8", "SUID" : 633562, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633708", "source" : "588182", "target" : "589102", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Gja1", "weight" : 0.406590469928, "name" : "Pip4k2a (pp) Gja1", "shared_name" : "Pip4k2a (pp) Gja1", "SUID" : 633708, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633650", "source" : "588182", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) 6330416G13Rik", "weight" : 0.423973358549, "name" : "Pip4k2a (pp) 6330416G13Rik", "shared_name" : "Pip4k2a (pp) 6330416G13Rik", "SUID" : 633650, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633578", "source" : "588182", "target" : "588335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Arpc1b", "weight" : 0.475431455752, "name" : "Pip4k2a (pp) Arpc1b", "shared_name" : "Pip4k2a (pp) Arpc1b", "SUID" : 633578, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633743", "source" : "588182", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Ear4", "weight" : 0.646536343708, "name" : "Pip4k2a (pp) Ear4", "shared_name" : "Pip4k2a (pp) Ear4", "SUID" : 633743, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633704", "source" : "588182", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Cfp", "weight" : 0.581958431611, "name" : "Pip4k2a (pp) Cfp", "shared_name" : "Pip4k2a (pp) Cfp", "SUID" : 633704, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633611", "source" : "588182", "target" : "588492", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Ncf4", "weight" : 0.417431291629, "name" : "Pip4k2a (pp) Ncf4", "shared_name" : "Pip4k2a (pp) Ncf4", "SUID" : 633611, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633736", "source" : "588182", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Abi3", "weight" : 0.575270768661, "name" : "Pip4k2a (pp) Abi3", "shared_name" : "Pip4k2a (pp) Abi3", "SUID" : 633736, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633610", "source" : "588182", "target" : "588490", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Arhgap30", "weight" : 0.592214935809, "name" : "Pip4k2a (pp) Arhgap30", "shared_name" : "Pip4k2a (pp) Arhgap30", "SUID" : 633610, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633729", "source" : "588182", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) H2-DMa", "weight" : 0.466275724706, "name" : "Pip4k2a (pp) H2-DMa", "shared_name" : "Pip4k2a (pp) H2-DMa", "SUID" : 633729, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633712", "source" : "588182", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Vcam1", "weight" : 0.552099323533, "name" : "Pip4k2a (pp) Vcam1", "shared_name" : "Pip4k2a (pp) Vcam1", "SUID" : 633712, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633726", "source" : "588182", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Serpinb6a", "weight" : 0.565313242938, "name" : "Pip4k2a (pp) Serpinb6a", "shared_name" : "Pip4k2a (pp) Serpinb6a", "SUID" : 633726, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633698", "source" : "588182", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Csrp1", "weight" : 0.625463387079, "name" : "Pip4k2a (pp) Csrp1", "shared_name" : "Pip4k2a (pp) Csrp1", "SUID" : 633698, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633703", "source" : "588182", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Btk", "weight" : 0.449000128051, "name" : "Pip4k2a (pp) Btk", "shared_name" : "Pip4k2a (pp) Btk", "SUID" : 633703, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633629", "source" : "588182", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Slc11a1", "weight" : 0.598816119679, "name" : "Pip4k2a (pp) Slc11a1", "shared_name" : "Pip4k2a (pp) Slc11a1", "SUID" : 633629, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633737", "source" : "588182", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Ear12", "weight" : 0.530067781011, "name" : "Pip4k2a (pp) Ear12", "shared_name" : "Pip4k2a (pp) Ear12", "SUID" : 633737, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633573", "source" : "588182", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Cxcl16", "weight" : 0.677168247433, "name" : "Pip4k2a (pp) Cxcl16", "shared_name" : "Pip4k2a (pp) Cxcl16", "SUID" : 633573, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633582", "source" : "588182", "target" : "588351", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Ttc39a", "weight" : 0.437842575611, "name" : "Pip4k2a (pp) Ttc39a", "shared_name" : "Pip4k2a (pp) Ttc39a", "SUID" : 633582, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633564", "source" : "588182", "target" : "588262", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) P2ry13", "weight" : 0.425268174385, "name" : "Pip4k2a (pp) P2ry13", "shared_name" : "Pip4k2a (pp) P2ry13", "SUID" : 633564, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633749", "source" : "588182", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) C1qb", "weight" : 0.592921225514, "name" : "Pip4k2a (pp) C1qb", "shared_name" : "Pip4k2a (pp) C1qb", "SUID" : 633749, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633652", "source" : "588182", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Tlr2", "weight" : 0.626026633034, "name" : "Pip4k2a (pp) Tlr2", "shared_name" : "Pip4k2a (pp) Tlr2", "SUID" : 633652, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633561", "source" : "588182", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Sdc3", "weight" : 0.497831407512, "name" : "Pip4k2a (pp) Sdc3", "shared_name" : "Pip4k2a (pp) Sdc3", "SUID" : 633561, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633609", "source" : "588182", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Plscr1", "weight" : 0.424057928699, "name" : "Pip4k2a (pp) Plscr1", "shared_name" : "Pip4k2a (pp) Plscr1", "SUID" : 633609, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633627", "source" : "588182", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Coro1a", "weight" : 0.554783649056, "name" : "Pip4k2a (pp) Coro1a", "shared_name" : "Pip4k2a (pp) Coro1a", "SUID" : 633627, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633662", "source" : "588182", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Slc15a3", "weight" : 0.62626183664, "name" : "Pip4k2a (pp) Slc15a3", "shared_name" : "Pip4k2a (pp) Slc15a3", "SUID" : 633662, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633575", "source" : "588182", "target" : "588322", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Pfkfb4", "weight" : 0.557886996884, "name" : "Pip4k2a (pp) Pfkfb4", "shared_name" : "Pip4k2a (pp) Pfkfb4", "SUID" : 633575, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633695", "source" : "588182", "target" : "588999", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Kctd12", "weight" : 0.44634287257, "name" : "Pip4k2a (pp) Kctd12", "shared_name" : "Pip4k2a (pp) Kctd12", "SUID" : 633695, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633685", "source" : "588182", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Hk3", "weight" : 0.405935657065, "name" : "Pip4k2a (pp) Hk3", "shared_name" : "Pip4k2a (pp) Hk3", "SUID" : 633685, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633666", "source" : "588182", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Obrgrp", "weight" : 0.506013848514, "name" : "Pip4k2a (pp) Obrgrp", "shared_name" : "Pip4k2a (pp) Obrgrp", "SUID" : 633666, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633715", "source" : "588182", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Tmsb4x", "weight" : 0.52744501397, "name" : "Pip4k2a (pp) Tmsb4x", "shared_name" : "Pip4k2a (pp) Tmsb4x", "SUID" : 633715, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633555", "source" : "588182", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Laptm5", "weight" : 0.645821909616, "name" : "Pip4k2a (pp) Laptm5", "shared_name" : "Pip4k2a (pp) Laptm5", "SUID" : 633555, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633753", "source" : "588182", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Lrrc33", "weight" : 0.401394525407, "name" : "Pip4k2a (pp) Lrrc33", "shared_name" : "Pip4k2a (pp) Lrrc33", "SUID" : 633753, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633607", "source" : "588182", "target" : "588472", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Ly9", "weight" : 0.401555445498, "name" : "Pip4k2a (pp) Ly9", "shared_name" : "Pip4k2a (pp) Ly9", "SUID" : 633607, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633608", "source" : "588182", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Renbp", "weight" : 0.469907164605, "name" : "Pip4k2a (pp) Renbp", "shared_name" : "Pip4k2a (pp) Renbp", "SUID" : 633608, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633550", "source" : "588182", "target" : "588212", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Anxa3", "weight" : 0.56626730892, "name" : "Pip4k2a (pp) Anxa3", "shared_name" : "Pip4k2a (pp) Anxa3", "SUID" : 633550, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "633670", "source" : "588182", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pip4k2a (pp) Pla2g15", "weight" : 0.564057283873, "name" : "Pip4k2a (pp) Pla2g15", "shared_name" : "Pip4k2a (pp) Pla2g15", "SUID" : 633670, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605983", "source" : "587851", "target" : "588147", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Ppic", "weight" : 0.40616933442, "name" : "Sh3kbp1 (pp) Ppic", "shared_name" : "Sh3kbp1 (pp) Ppic", "SUID" : 605983, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605963", "source" : "587851", "target" : "587966", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Cyba", "weight" : 0.546667022013, "name" : "Sh3kbp1 (pp) Cyba", "shared_name" : "Sh3kbp1 (pp) Cyba", "SUID" : 605963, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606033", "source" : "587851", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Slc11a1", "weight" : 0.651530291457, "name" : "Sh3kbp1 (pp) Slc11a1", "shared_name" : "Sh3kbp1 (pp) Slc11a1", "SUID" : 606033, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606113", "source" : "587851", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Ly86", "weight" : 0.455832081812, "name" : "Sh3kbp1 (pp) Ly86", "shared_name" : "Sh3kbp1 (pp) Ly86", "SUID" : 606113, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606109", "source" : "587851", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Clec7a", "weight" : 0.458010003105, "name" : "Sh3kbp1 (pp) Clec7a", "shared_name" : "Sh3kbp1 (pp) Clec7a", "SUID" : 606109, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606107", "source" : "587851", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Fcgr4", "weight" : 0.448309684205, "name" : "Sh3kbp1 (pp) Fcgr4", "shared_name" : "Sh3kbp1 (pp) Fcgr4", "SUID" : 606107, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606072", "source" : "587851", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Hk3", "weight" : 0.431901141613, "name" : "Sh3kbp1 (pp) Hk3", "shared_name" : "Sh3kbp1 (pp) Hk3", "SUID" : 606072, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606067", "source" : "587851", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Fcgr3", "weight" : 0.446525383979, "name" : "Sh3kbp1 (pp) Fcgr3", "shared_name" : "Sh3kbp1 (pp) Fcgr3", "SUID" : 606067, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606034", "source" : "587851", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Gngt2", "weight" : 0.420312526984, "name" : "Sh3kbp1 (pp) Gngt2", "shared_name" : "Sh3kbp1 (pp) Gngt2", "SUID" : 606034, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606066", "source" : "587851", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Fcer1g", "weight" : 0.523321422247, "name" : "Sh3kbp1 (pp) Fcer1g", "shared_name" : "Sh3kbp1 (pp) Fcer1g", "SUID" : 606066, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606111", "source" : "587851", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Ear4", "weight" : 0.543734438431, "name" : "Sh3kbp1 (pp) Ear4", "shared_name" : "Sh3kbp1 (pp) Ear4", "SUID" : 606111, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606053", "source" : "587851", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Vsig4", "weight" : 0.730351685829, "name" : "Sh3kbp1 (pp) Vsig4", "shared_name" : "Sh3kbp1 (pp) Vsig4", "SUID" : 606053, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606057", "source" : "587851", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Slc15a3", "weight" : 0.55194321065, "name" : "Sh3kbp1 (pp) Slc15a3", "shared_name" : "Sh3kbp1 (pp) Slc15a3", "SUID" : 606057, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606086", "source" : "587851", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Cfp", "weight" : 0.490130674998, "name" : "Sh3kbp1 (pp) Cfp", "shared_name" : "Sh3kbp1 (pp) Cfp", "SUID" : 606086, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606114", "source" : "587851", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) C1qb", "weight" : 0.651117980281, "name" : "Sh3kbp1 (pp) C1qb", "shared_name" : "Sh3kbp1 (pp) C1qb", "SUID" : 606114, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606069", "source" : "587851", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Lgals3", "weight" : 0.491430749597, "name" : "Sh3kbp1 (pp) Lgals3", "shared_name" : "Sh3kbp1 (pp) Lgals3", "SUID" : 606069, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606095", "source" : "587851", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Rasgrp1", "weight" : 0.403510239002, "name" : "Sh3kbp1 (pp) Rasgrp1", "shared_name" : "Sh3kbp1 (pp) Rasgrp1", "SUID" : 606095, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605994", "source" : "587851", "target" : "588244", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Gltp", "weight" : 0.479391175228, "name" : "Sh3kbp1 (pp) Gltp", "shared_name" : "Sh3kbp1 (pp) Gltp", "SUID" : 605994, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605989", "source" : "587851", "target" : "588213", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Pdlim4", "weight" : 0.436051722304, "name" : "Sh3kbp1 (pp) Pdlim4", "shared_name" : "Sh3kbp1 (pp) Pdlim4", "SUID" : 605989, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606071", "source" : "587851", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) C1qc", "weight" : 0.462021263821, "name" : "Sh3kbp1 (pp) C1qc", "shared_name" : "Sh3kbp1 (pp) C1qc", "SUID" : 606071, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606011", "source" : "587851", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Selplg", "weight" : 0.438418644737, "name" : "Sh3kbp1 (pp) Selplg", "shared_name" : "Sh3kbp1 (pp) Selplg", "SUID" : 606011, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605990", "source" : "587851", "target" : "588227", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Gbp2", "weight" : 0.441388021353, "name" : "Sh3kbp1 (pp) Gbp2", "shared_name" : "Sh3kbp1 (pp) Gbp2", "SUID" : 605990, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605999", "source" : "587851", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Ms4a6d", "weight" : 0.528069789341, "name" : "Sh3kbp1 (pp) Ms4a6d", "shared_name" : "Sh3kbp1 (pp) Ms4a6d", "SUID" : 605999, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605969", "source" : "587851", "target" : "588024", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Cd68", "weight" : 0.443464998033, "name" : "Sh3kbp1 (pp) Cd68", "shared_name" : "Sh3kbp1 (pp) Cd68", "SUID" : 605969, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606040", "source" : "587851", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Gpnmb", "weight" : 0.491607420869, "name" : "Sh3kbp1 (pp) Gpnmb", "shared_name" : "Sh3kbp1 (pp) Gpnmb", "SUID" : 606040, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605975", "source" : "587851", "target" : "588086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Iqgap1", "weight" : 0.402641955368, "name" : "Sh3kbp1 (pp) Iqgap1", "shared_name" : "Sh3kbp1 (pp) Iqgap1", "SUID" : 605975, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606037", "source" : "587851", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Casp1", "weight" : 0.493656979034, "name" : "Sh3kbp1 (pp) Casp1", "shared_name" : "Sh3kbp1 (pp) Casp1", "SUID" : 606037, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605995", "source" : "587851", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Sdc3", "weight" : 0.526007291774, "name" : "Sh3kbp1 (pp) Sdc3", "shared_name" : "Sh3kbp1 (pp) Sdc3", "SUID" : 605995, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606042", "source" : "587851", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) 5033414D02Rik", "weight" : 0.479227724439, "name" : "Sh3kbp1 (pp) 5033414D02Rik", "shared_name" : "Sh3kbp1 (pp) 5033414D02Rik", "SUID" : 606042, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606030", "source" : "587851", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Snn", "weight" : 0.492377964655, "name" : "Sh3kbp1 (pp) Snn", "shared_name" : "Sh3kbp1 (pp) Snn", "SUID" : 606030, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606047", "source" : "587851", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) 6330416G13Rik", "weight" : 0.418025376972, "name" : "Sh3kbp1 (pp) 6330416G13Rik", "shared_name" : "Sh3kbp1 (pp) 6330416G13Rik", "SUID" : 606047, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605955", "source" : "587851", "target" : "587857", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Lgmn", "weight" : 0.586045947236, "name" : "Sh3kbp1 (pp) Lgmn", "shared_name" : "Sh3kbp1 (pp) Lgmn", "SUID" : 605955, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605985", "source" : "587851", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Pip4k2a", "weight" : 0.537383334557, "name" : "Sh3kbp1 (pp) Pip4k2a", "shared_name" : "Sh3kbp1 (pp) Pip4k2a", "SUID" : 605985, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606059", "source" : "587851", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Ccl6", "weight" : 0.429325748558, "name" : "Sh3kbp1 (pp) Ccl6", "shared_name" : "Sh3kbp1 (pp) Ccl6", "SUID" : 606059, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605965", "source" : "587851", "target" : "587982", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Plekho2", "weight" : 0.465638061291, "name" : "Sh3kbp1 (pp) Plekho2", "shared_name" : "Sh3kbp1 (pp) Plekho2", "SUID" : 605965, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605964", "source" : "587851", "target" : "587975", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) H2-Ab1", "weight" : 0.409101994889, "name" : "Sh3kbp1 (pp) H2-Ab1", "shared_name" : "Sh3kbp1 (pp) H2-Ab1", "SUID" : 605964, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606063", "source" : "587851", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Pla2g15", "weight" : 0.441332426627, "name" : "Sh3kbp1 (pp) Pla2g15", "shared_name" : "Sh3kbp1 (pp) Pla2g15", "SUID" : 606063, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606031", "source" : "587851", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Coro1a", "weight" : 0.649711809752, "name" : "Sh3kbp1 (pp) Coro1a", "shared_name" : "Sh3kbp1 (pp) Coro1a", "SUID" : 606031, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606028", "source" : "587851", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Cd86", "weight" : 0.542048547629, "name" : "Sh3kbp1 (pp) Cd86", "shared_name" : "Sh3kbp1 (pp) Cd86", "SUID" : 606028, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606045", "source" : "587851", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Cd52", "weight" : 0.48832719733, "name" : "Sh3kbp1 (pp) Cd52", "shared_name" : "Sh3kbp1 (pp) Cd52", "SUID" : 606045, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605991", "source" : "587851", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Laptm5", "weight" : 0.575489457888, "name" : "Sh3kbp1 (pp) Laptm5", "shared_name" : "Sh3kbp1 (pp) Laptm5", "SUID" : 605991, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606081", "source" : "587851", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Csrp1", "weight" : 0.400687277413, "name" : "Sh3kbp1 (pp) Csrp1", "shared_name" : "Sh3kbp1 (pp) Csrp1", "SUID" : 606081, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606098", "source" : "587851", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Serpinb6a", "weight" : 0.43603654782, "name" : "Sh3kbp1 (pp) Serpinb6a", "shared_name" : "Sh3kbp1 (pp) Serpinb6a", "SUID" : 606098, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606060", "source" : "587851", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Tmem86a", "weight" : 0.450400874614, "name" : "Sh3kbp1 (pp) Tmem86a", "shared_name" : "Sh3kbp1 (pp) Tmem86a", "SUID" : 606060, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606105", "source" : "587851", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Abi3", "weight" : 0.499233693491, "name" : "Sh3kbp1 (pp) Abi3", "shared_name" : "Sh3kbp1 (pp) Abi3", "SUID" : 606105, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606014", "source" : "587851", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Clec4n", "weight" : 0.461289484969, "name" : "Sh3kbp1 (pp) Clec4n", "shared_name" : "Sh3kbp1 (pp) Clec4n", "SUID" : 606014, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606049", "source" : "587851", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Tlr2", "weight" : 0.466100982533, "name" : "Sh3kbp1 (pp) Tlr2", "shared_name" : "Sh3kbp1 (pp) Tlr2", "SUID" : 606049, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606084", "source" : "587851", "target" : "589076", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) H2-M3", "weight" : 0.418584303915, "name" : "Sh3kbp1 (pp) H2-M3", "shared_name" : "Sh3kbp1 (pp) H2-M3", "SUID" : 606084, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606119", "source" : "587851", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Lmo2", "weight" : 0.416179185622, "name" : "Sh3kbp1 (pp) Lmo2", "shared_name" : "Sh3kbp1 (pp) Lmo2", "SUID" : 606119, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605962", "source" : "587851", "target" : "587952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Gusb", "weight" : 0.401851624921, "name" : "Sh3kbp1 (pp) Gusb", "shared_name" : "Sh3kbp1 (pp) Gusb", "SUID" : 605962, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606090", "source" : "587851", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Vcam1", "weight" : 0.458577957577, "name" : "Sh3kbp1 (pp) Vcam1", "shared_name" : "Sh3kbp1 (pp) Vcam1", "SUID" : 606090, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605988", "source" : "587851", "target" : "588212", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Anxa3", "weight" : 0.487480330413, "name" : "Sh3kbp1 (pp) Anxa3", "shared_name" : "Sh3kbp1 (pp) Anxa3", "SUID" : 605988, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606100", "source" : "587851", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) H2-DMa", "weight" : 0.50227804236, "name" : "Sh3kbp1 (pp) H2-DMa", "shared_name" : "Sh3kbp1 (pp) H2-DMa", "SUID" : 606100, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605993", "source" : "587851", "target" : "588242", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Cd83", "weight" : 0.474376829687, "name" : "Sh3kbp1 (pp) Cd83", "shared_name" : "Sh3kbp1 (pp) Cd83", "SUID" : 605993, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606065", "source" : "587851", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Plac8", "weight" : 0.505922981028, "name" : "Sh3kbp1 (pp) Plac8", "shared_name" : "Sh3kbp1 (pp) Plac8", "SUID" : 606065, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605980", "source" : "587851", "target" : "588127", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Lpxn", "weight" : 0.512830570331, "name" : "Sh3kbp1 (pp) Lpxn", "shared_name" : "Sh3kbp1 (pp) Lpxn", "SUID" : 605980, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606101", "source" : "587851", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Ear10", "weight" : 0.437718979676, "name" : "Sh3kbp1 (pp) Ear10", "shared_name" : "Sh3kbp1 (pp) Ear10", "SUID" : 606101, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606050", "source" : "587851", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Axl", "weight" : 0.546146979132, "name" : "Sh3kbp1 (pp) Axl", "shared_name" : "Sh3kbp1 (pp) Axl", "SUID" : 606050, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606073", "source" : "587851", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Cytip", "weight" : 0.577192837128, "name" : "Sh3kbp1 (pp) Cytip", "shared_name" : "Sh3kbp1 (pp) Cytip", "SUID" : 606073, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606002", "source" : "587851", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Cxcl16", "weight" : 0.499937135638, "name" : "Sh3kbp1 (pp) Cxcl16", "shared_name" : "Sh3kbp1 (pp) Cxcl16", "SUID" : 606002, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606064", "source" : "587851", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Cotl1", "weight" : 0.452513532082, "name" : "Sh3kbp1 (pp) Cotl1", "shared_name" : "Sh3kbp1 (pp) Cotl1", "SUID" : 606064, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605968", "source" : "587851", "target" : "588010", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Cd84", "weight" : 0.524004224376, "name" : "Sh3kbp1 (pp) Cd84", "shared_name" : "Sh3kbp1 (pp) Cd84", "SUID" : 605968, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605997", "source" : "587851", "target" : "588257", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sh3kbp1 (pp) Sdcbp", "weight" : 0.408705506393, "name" : "Sh3kbp1 (pp) Sdcbp", "shared_name" : "Sh3kbp1 (pp) Sdcbp", "SUID" : 605997, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671859", "source" : "588742", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifitm6 (pp) Fcer1g", "weight" : 0.429906049193, "name" : "Ifitm6 (pp) Fcer1g", "shared_name" : "Ifitm6 (pp) Fcer1g", "SUID" : 671859, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671921", "source" : "588742", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifitm6 (pp) Tmsb4x", "weight" : 0.484871273966, "name" : "Ifitm6 (pp) Tmsb4x", "shared_name" : "Ifitm6 (pp) Tmsb4x", "SUID" : 671921, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671910", "source" : "588742", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifitm6 (pp) Snx10", "weight" : 0.454031420269, "name" : "Ifitm6 (pp) Snx10", "shared_name" : "Ifitm6 (pp) Snx10", "SUID" : 671910, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671917", "source" : "588742", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifitm6 (pp) Vcam1", "weight" : 0.427295757908, "name" : "Ifitm6 (pp) Vcam1", "shared_name" : "Ifitm6 (pp) Vcam1", "SUID" : 671917, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671961", "source" : "588742", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.55098726756, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ifitm6 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.55098726756, "fusion" : "NA", "name" : "Ifitm6 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 132804.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ifitm6 (pp) Ear4", "combinedscore" : "NA", "SUID" : 671961, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 1.01152E-5, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "671966", "source" : "588742", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifitm6 (pp) Ly86", "weight" : 0.591396529786, "name" : "Ifitm6 (pp) Ly86", "shared_name" : "Ifitm6 (pp) Ly86", "SUID" : 671966, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671942", "source" : "588742", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifitm6 (pp) Ear10", "weight" : 0.463948880394, "name" : "Ifitm6 (pp) Ear10", "shared_name" : "Ifitm6 (pp) Ear10", "SUID" : 671942, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671905", "source" : "588742", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifitm6 (pp) Cfp", "weight" : 0.600627285402, "name" : "Ifitm6 (pp) Cfp", "shared_name" : "Ifitm6 (pp) Cfp", "SUID" : 671905, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671951", "source" : "588742", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifitm6 (pp) Ear12", "weight" : 0.50131271019, "name" : "Ifitm6 (pp) Ear12", "shared_name" : "Ifitm6 (pp) Ear12", "SUID" : 671951, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671955", "source" : "588742", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifitm6 (pp) Cd53", "weight" : 0.544081334415, "name" : "Ifitm6 (pp) Cd53", "shared_name" : "Ifitm6 (pp) Cd53", "SUID" : 671955, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671866", "source" : "588742", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifitm6 (pp) Lgals3", "weight" : 0.570581194405, "name" : "Ifitm6 (pp) Lgals3", "shared_name" : "Ifitm6 (pp) Lgals3", "SUID" : 671866, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671855", "source" : "588742", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifitm6 (pp) Cotl1", "weight" : 0.450960600205, "name" : "Ifitm6 (pp) Cotl1", "shared_name" : "Ifitm6 (pp) Cotl1", "SUID" : 671855, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671967", "source" : "588742", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifitm6 (pp) C1qb", "weight" : 0.445194784964, "name" : "Ifitm6 (pp) C1qb", "shared_name" : "Ifitm6 (pp) C1qb", "SUID" : 671967, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671937", "source" : "588742", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifitm6 (pp) Serpinb6a", "weight" : 0.48937933113, "name" : "Ifitm6 (pp) Serpinb6a", "shared_name" : "Ifitm6 (pp) Serpinb6a", "SUID" : 671937, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671841", "source" : "588742", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifitm6 (pp) Slc15a3", "weight" : 0.540187560471, "name" : "Ifitm6 (pp) Slc15a3", "shared_name" : "Ifitm6 (pp) Slc15a3", "SUID" : 671841, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671857", "source" : "588742", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifitm6 (pp) Plac8", "weight" : 0.520996008229, "name" : "Ifitm6 (pp) Plac8", "shared_name" : "Ifitm6 (pp) Plac8", "SUID" : 671857, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671940", "source" : "588742", "target" : "589225", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifitm6 (pp) St6gal1", "weight" : 0.437369196992, "name" : "Ifitm6 (pp) St6gal1", "shared_name" : "Ifitm6 (pp) St6gal1", "SUID" : 671940, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671903", "source" : "588742", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifitm6 (pp) Btk", "weight" : 0.429172182664, "name" : "Ifitm6 (pp) Btk", "shared_name" : "Ifitm6 (pp) Btk", "SUID" : 671903, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671852", "source" : "588742", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifitm6 (pp) Pla2g15", "weight" : 0.408952295243, "name" : "Ifitm6 (pp) Pla2g15", "shared_name" : "Ifitm6 (pp) Pla2g15", "SUID" : 671852, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671894", "source" : "588742", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifitm6 (pp) Csrp1", "weight" : 0.472059021657, "name" : "Ifitm6 (pp) Csrp1", "shared_name" : "Ifitm6 (pp) Csrp1", "SUID" : 671894, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686117", "source" : "589269", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear12 (pp) Tspan33", "weight" : 0.450536477243, "name" : "Ear12 (pp) Tspan33", "shared_name" : "Ear12 (pp) Tspan33", "SUID" : 686117, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686116", "source" : "589269", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear12 (pp) Fblim1", "weight" : 0.553342397828, "name" : "Ear12 (pp) Fblim1", "shared_name" : "Ear12 (pp) Fblim1", "SUID" : 686116, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686101", "source" : "589269", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear12 (pp) Fcgr4", "weight" : 0.470494930457, "name" : "Ear12 (pp) Fcgr4", "shared_name" : "Ear12 (pp) Fcgr4", "SUID" : 686101, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686104", "source" : "589269", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear12 (pp) Clec7a", "weight" : 0.731030050429, "name" : "Ear12 (pp) Clec7a", "shared_name" : "Ear12 (pp) Clec7a", "SUID" : 686104, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686103", "source" : "589269", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear12 (pp) Cd53", "weight" : 0.66194117598, "name" : "Ear12 (pp) Cd53", "shared_name" : "Ear12 (pp) Cd53", "SUID" : 686103, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686107", "source" : "589269", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear12 (pp) Ear4", "weight" : 0.662311562871, "name" : "Ear12 (pp) Ear4", "shared_name" : "Ear12 (pp) Ear4", "SUID" : 686107, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686114", "source" : "589269", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear12 (pp) C1qb", "weight" : 0.483234321978, "name" : "Ear12 (pp) C1qb", "shared_name" : "Ear12 (pp) C1qb", "SUID" : 686114, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686112", "source" : "589269", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear12 (pp) Ly86", "weight" : 0.561959824883, "name" : "Ear12 (pp) Ly86", "shared_name" : "Ear12 (pp) Ly86", "SUID" : 686112, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653204", "source" : "588403", "target" : "588472", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Ly9", "weight" : 0.40042401449, "name" : "Cd14 (pp) Ly9", "shared_name" : "Cd14 (pp) Ly9", "SUID" : 653204, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653259", "source" : "588403", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) D12Ertd553e", "weight" : 0.450119006671, "name" : "Cd14 (pp) D12Ertd553e", "shared_name" : "Cd14 (pp) D12Ertd553e", "SUID" : 653259, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653400", "source" : "588403", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Trem2", "weight" : 0.443705388516, "name" : "Cd14 (pp) Trem2", "shared_name" : "Cd14 (pp) Trem2", "SUID" : 653400, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653416", "source" : "588403", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.569793166686, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cd14 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.569793166686, "fusion" : "NA", "name" : "Cd14 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 102908.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cd14 (pp) Ear4", "combinedscore" : "NA", "SUID" : 653416, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.00244697, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "653302", "source" : "588403", "target" : "588860", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.649287270717, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cd14 (pp) Fcer1g", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.649287270717, "fusion" : "NA", "name" : "Cd14 (pp) Fcer1g", "neighborhood" : "NA", "sourceEdge" : 102875.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cd14 (pp) Fcer1g", "combinedscore" : "NA", "SUID" : 653302, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.002806062, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "653393", "source" : "588403", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Serpinb6a", "weight" : 0.635211331358, "name" : "Cd14 (pp) Serpinb6a", "shared_name" : "Cd14 (pp) Serpinb6a", "SUID" : 653393, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653239", "source" : "588403", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Gngt2", "weight" : 0.640256502881, "name" : "Cd14 (pp) Gngt2", "shared_name" : "Cd14 (pp) Gngt2", "SUID" : 653239, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653297", "source" : "588403", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Cotl1", "weight" : 0.620963251215, "name" : "Cd14 (pp) Cotl1", "shared_name" : "Cd14 (pp) Cotl1", "SUID" : 653297, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653322", "source" : "588403", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Cytip", "weight" : 0.468698647205, "name" : "Cd14 (pp) Cytip", "shared_name" : "Cd14 (pp) Cytip", "SUID" : 653322, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653269", "source" : "588403", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Tlr2", "weight" : 0.653186197235, "name" : "Cd14 (pp) Tlr2", "shared_name" : "Cd14 (pp) Tlr2", "SUID" : 653269, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653217", "source" : "588403", "target" : "588517", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Rac2", "weight" : 0.490820328877, "name" : "Cd14 (pp) Rac2", "shared_name" : "Cd14 (pp) Rac2", "SUID" : 653217, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653401", "source" : "588403", "target" : "589256", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Timp1", "weight" : 0.42591889364, "name" : "Cd14 (pp) Timp1", "shared_name" : "Cd14 (pp) Timp1", "SUID" : 653401, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653228", "source" : "588403", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Cd86", "weight" : 0.496965233397, "name" : "Cd14 (pp) Cd86", "shared_name" : "Cd14 (pp) Cd86", "SUID" : 653228, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653425", "source" : "588403", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Fblim1", "weight" : 0.520479063827, "name" : "Cd14 (pp) Fblim1", "shared_name" : "Cd14 (pp) Fblim1", "SUID" : 653425, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653370", "source" : "588403", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Vcam1", "weight" : 0.48256232441, "name" : "Cd14 (pp) Vcam1", "shared_name" : "Cd14 (pp) Vcam1", "SUID" : 653370, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653270", "source" : "588403", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Axl", "weight" : 0.564247658286, "name" : "Cd14 (pp) Axl", "shared_name" : "Cd14 (pp) Axl", "SUID" : 653270, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653272", "source" : "588403", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Tpm4", "weight" : 0.527995049021, "name" : "Cd14 (pp) Tpm4", "shared_name" : "Cd14 (pp) Tpm4", "SUID" : 653272, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653277", "source" : "588403", "target" : "588742", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Ifitm6", "weight" : 0.540018475545, "name" : "Cd14 (pp) Ifitm6", "shared_name" : "Cd14 (pp) Ifitm6", "SUID" : 653277, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653206", "source" : "588403", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Renbp", "weight" : 0.406425414376, "name" : "Cd14 (pp) Renbp", "shared_name" : "Cd14 (pp) Renbp", "SUID" : 653206, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653289", "source" : "588403", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Obrgrp", "weight" : 0.623024751976, "name" : "Cd14 (pp) Obrgrp", "shared_name" : "Cd14 (pp) Obrgrp", "SUID" : 653289, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653423", "source" : "588403", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) C1qb", "weight" : 0.567142325561, "name" : "Cd14 (pp) C1qb", "shared_name" : "Cd14 (pp) C1qb", "SUID" : 653423, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653285", "source" : "588403", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Ccl6", "weight" : 0.414551621085, "name" : "Cd14 (pp) Ccl6", "shared_name" : "Cd14 (pp) Ccl6", "SUID" : 653285, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653264", "source" : "588403", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Cd52", "weight" : 0.537708565434, "name" : "Cd14 (pp) Cd52", "shared_name" : "Cd14 (pp) Cd52", "SUID" : 653264, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653435", "source" : "588403", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Il10ra", "weight" : 0.463479795296, "name" : "Cd14 (pp) Il10ra", "shared_name" : "Cd14 (pp) Il10ra", "SUID" : 653435, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653426", "source" : "588403", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Lrrc33", "weight" : 0.452685258855, "name" : "Cd14 (pp) Lrrc33", "shared_name" : "Cd14 (pp) Lrrc33", "SUID" : 653426, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653395", "source" : "588403", "target" : "589225", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) St6gal1", "weight" : 0.48789010254, "name" : "Cd14 (pp) St6gal1", "shared_name" : "Cd14 (pp) St6gal1", "SUID" : 653395, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653311", "source" : "588403", "target" : "588886", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.695171219372, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cd14 (pp) Lgals3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.695171219372, "fusion" : "NA", "name" : "Cd14 (pp) Lgals3", "neighborhood" : "NA", "sourceEdge" : 102877.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cd14 (pp) Lgals3", "combinedscore" : "NA", "SUID" : 653311, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 1.24446E-4, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "653196", "source" : "588403", "target" : "588432", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Kcnk6", "weight" : 0.538037222168, "name" : "Cd14 (pp) Kcnk6", "shared_name" : "Cd14 (pp) Kcnk6", "SUID" : 653196, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653368", "source" : "588403", "target" : "589113", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Ms4a7", "weight" : 0.460919012261, "name" : "Cd14 (pp) Ms4a7", "shared_name" : "Cd14 (pp) Ms4a7", "SUID" : 653368, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653300", "source" : "588403", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Plac8", "weight" : 0.527459607043, "name" : "Cd14 (pp) Plac8", "shared_name" : "Cd14 (pp) Plac8", "SUID" : 653300, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653356", "source" : "588403", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Btk", "weight" : 0.548268732751, "name" : "Cd14 (pp) Btk", "shared_name" : "Cd14 (pp) Btk", "SUID" : 653356, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653358", "source" : "588403", "target" : "589086", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.662110340779, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cd14 (pp) Cfp", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.662110340779, "fusion" : "NA", "name" : "Cd14 (pp) Cfp", "neighborhood" : "NA", "sourceEdge" : 102888.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cd14 (pp) Cfp", "combinedscore" : "NA", "SUID" : 653358, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.003081385, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "653282", "source" : "588403", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Slc15a3", "weight" : 0.632635127076, "name" : "Cd14 (pp) Slc15a3", "shared_name" : "Cd14 (pp) Slc15a3", "SUID" : 653282, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653363", "source" : "588403", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Snx10", "weight" : 0.430507108952, "name" : "Cd14 (pp) Snx10", "shared_name" : "Cd14 (pp) Snx10", "SUID" : 653363, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653406", "source" : "588403", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Ear12", "weight" : 0.511079709041, "name" : "Cd14 (pp) Ear12", "shared_name" : "Cd14 (pp) Ear12", "SUID" : 653406, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653232", "source" : "588403", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Snn", "weight" : 0.507172891727, "name" : "Cd14 (pp) Snn", "shared_name" : "Cd14 (pp) Snn", "SUID" : 653232, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653234", "source" : "588403", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Coro1a", "weight" : 0.524291072637, "name" : "Cd14 (pp) Coro1a", "shared_name" : "Cd14 (pp) Coro1a", "SUID" : 653234, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653408", "source" : "588403", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Fcgr4", "weight" : 0.528637132276, "name" : "Cd14 (pp) Fcgr4", "shared_name" : "Cd14 (pp) Fcgr4", "SUID" : 653408, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653199", "source" : "588403", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Cd63", "weight" : 0.604132744753, "name" : "Cd14 (pp) Cd63", "shared_name" : "Cd14 (pp) Cd63", "SUID" : 653199, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653286", "source" : "588403", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Tmem86a", "weight" : 0.457120446697, "name" : "Cd14 (pp) Tmem86a", "shared_name" : "Cd14 (pp) Tmem86a", "SUID" : 653286, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653195", "source" : "588403", "target" : "588424", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.663952976369, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cd14 (pp) Clec4n", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.663952976369, "fusion" : "NA", "name" : "Cd14 (pp) Clec4n", "neighborhood" : "NA", "sourceEdge" : 102826.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cd14 (pp) Clec4n", "combinedscore" : "NA", "SUID" : 653195, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.003010757, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "653304", "source" : "588403", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Fcgr3", "weight" : 0.424119882259, "name" : "Cd14 (pp) Fcgr3", "shared_name" : "Cd14 (pp) Fcgr3", "SUID" : 653304, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653340", "source" : "588403", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Csrp1", "weight" : 0.659917617134, "name" : "Cd14 (pp) Csrp1", "shared_name" : "Cd14 (pp) Csrp1", "SUID" : 653340, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653237", "source" : "588403", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Slc11a1", "weight" : 0.487757784515, "name" : "Cd14 (pp) Slc11a1", "shared_name" : "Cd14 (pp) Slc11a1", "SUID" : 653237, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653403", "source" : "588403", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Ppif", "weight" : 0.413773733151, "name" : "Cd14 (pp) Ppif", "shared_name" : "Cd14 (pp) Ppif", "SUID" : 653403, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653257", "source" : "588403", "target" : "588664", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.551865997432, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cd14 (pp) 5033414D02Rik", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.551865997432, "fusion" : "NA", "name" : "Cd14 (pp) 5033414D02Rik", "neighborhood" : "NA", "sourceEdge" : 102853.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cd14 (pp) 5033414D02Rik", "combinedscore" : "NA", "SUID" : 653257, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.002637154, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "653249", "source" : "588403", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Gpnmb", "weight" : 0.536505356959, "name" : "Cd14 (pp) Gpnmb", "shared_name" : "Cd14 (pp) Gpnmb", "SUID" : 653249, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653235", "source" : "588403", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Tmsb10", "weight" : 0.454729007793, "name" : "Cd14 (pp) Tmsb10", "shared_name" : "Cd14 (pp) Tmsb10", "SUID" : 653235, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653209", "source" : "588403", "target" : "588492", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Ncf4", "weight" : 0.507161245332, "name" : "Cd14 (pp) Ncf4", "shared_name" : "Cd14 (pp) Ncf4", "SUID" : 653209, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653274", "source" : "588403", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Vsig4", "weight" : 0.414085911343, "name" : "Cd14 (pp) Vsig4", "shared_name" : "Cd14 (pp) Vsig4", "SUID" : 653274, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653421", "source" : "588403", "target" : "589335", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.608562375425, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cd14 (pp) Ly86", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.608562375425, "fusion" : "NA", "name" : "Cd14 (pp) Ly86", "neighborhood" : "NA", "sourceEdge" : 102910.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cd14 (pp) Ly86", "combinedscore" : "NA", "SUID" : 653421, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.002806476, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "653411", "source" : "588403", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Clec7a", "weight" : 0.41139970567, "name" : "Cd14 (pp) Clec7a", "shared_name" : "Cd14 (pp) Clec7a", "SUID" : 653411, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653376", "source" : "588403", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Tmsb4x", "weight" : 0.522977018144, "name" : "Cd14 (pp) Tmsb4x", "shared_name" : "Cd14 (pp) Tmsb4x", "SUID" : 653376, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "653321", "source" : "588403", "target" : "588927", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "kwalksFenofibratemagenta" : 1.705532E-4, "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.512237149279, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cd14 (pp) Hk3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "extraFenofibratemagenta" : "FALSE", "weight" : 0.512237149279, "fusion" : "NA", "name" : "Cd14 (pp) Hk3", "neighborhood" : "NA", "sourceEdge" : 102879.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cd14 (pp) Hk3", "combinedscore" : "NA", "SUID" : 653321, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "653207", "source" : "588403", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd14 (pp) Plscr1", "weight" : 0.463564043478, "name" : "Cd14 (pp) Plscr1", "shared_name" : "Cd14 (pp) Plscr1", "SUID" : 653207, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671479", "source" : "588733", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tpm4 (pp) Ear4", "weight" : 0.442102924281, "name" : "Tpm4 (pp) Ear4", "shared_name" : "Tpm4 (pp) Ear4", "SUID" : 671479, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671485", "source" : "588733", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tpm4 (pp) Lrrc33", "weight" : 0.402882005954, "name" : "Tpm4 (pp) Lrrc33", "shared_name" : "Tpm4 (pp) Lrrc33", "SUID" : 671485, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671452", "source" : "588733", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tpm4 (pp) Tmsb4x", "weight" : 0.573307940665, "name" : "Tpm4 (pp) Tmsb4x", "shared_name" : "Tpm4 (pp) Tmsb4x", "SUID" : 671452, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671481", "source" : "588733", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tpm4 (pp) Ly86", "weight" : 0.439769369638, "name" : "Tpm4 (pp) Ly86", "shared_name" : "Tpm4 (pp) Ly86", "SUID" : 671481, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671421", "source" : "588733", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tpm4 (pp) Lgals3", "weight" : 0.488247663303, "name" : "Tpm4 (pp) Lgals3", "shared_name" : "Tpm4 (pp) Lgals3", "SUID" : 671421, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671433", "source" : "588733", "target" : "588999", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tpm4 (pp) Kctd12", "weight" : 0.458809386263, "name" : "Tpm4 (pp) Kctd12", "shared_name" : "Tpm4 (pp) Kctd12", "SUID" : 671433, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671440", "source" : "588733", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tpm4 (pp) Btk", "weight" : 0.406946704206, "name" : "Tpm4 (pp) Btk", "shared_name" : "Tpm4 (pp) Btk", "SUID" : 671440, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671424", "source" : "588733", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tpm4 (pp) C1qc", "weight" : 0.414375152604, "name" : "Tpm4 (pp) C1qc", "shared_name" : "Tpm4 (pp) C1qc", "SUID" : 671424, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671472", "source" : "588733", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tpm4 (pp) Ear12", "weight" : 0.433249657176, "name" : "Tpm4 (pp) Ear12", "shared_name" : "Tpm4 (pp) Ear12", "SUID" : 671472, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671417", "source" : "588733", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tpm4 (pp) Cotl1", "weight" : 0.456861155655, "name" : "Tpm4 (pp) Cotl1", "shared_name" : "Tpm4 (pp) Cotl1", "SUID" : 671417, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671483", "source" : "588733", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tpm4 (pp) Fblim1", "weight" : 0.477376199697, "name" : "Tpm4 (pp) Fblim1", "shared_name" : "Tpm4 (pp) Fblim1", "SUID" : 671483, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671425", "source" : "588733", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tpm4 (pp) Hk3", "weight" : 0.513364679528, "name" : "Tpm4 (pp) Hk3", "shared_name" : "Tpm4 (pp) Hk3", "SUID" : 671425, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671426", "source" : "588733", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tpm4 (pp) Cytip", "weight" : 0.453869605044, "name" : "Tpm4 (pp) Cytip", "shared_name" : "Tpm4 (pp) Cytip", "SUID" : 671426, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671482", "source" : "588733", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tpm4 (pp) C1qb", "weight" : 0.561641831928, "name" : "Tpm4 (pp) C1qb", "shared_name" : "Tpm4 (pp) C1qb", "SUID" : 671482, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671418", "source" : "588733", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tpm4 (pp) Plac8", "weight" : 0.448961353226, "name" : "Tpm4 (pp) Plac8", "shared_name" : "Tpm4 (pp) Plac8", "SUID" : 671418, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671462", "source" : "588733", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tpm4 (pp) Serpinb6a", "weight" : 0.457915999647, "name" : "Tpm4 (pp) Serpinb6a", "shared_name" : "Tpm4 (pp) Serpinb6a", "SUID" : 671462, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671412", "source" : "588733", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tpm4 (pp) 5430435G22Rik", "weight" : 0.422190970676, "name" : "Tpm4 (pp) 5430435G22Rik", "shared_name" : "Tpm4 (pp) 5430435G22Rik", "SUID" : 671412, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671436", "source" : "588733", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tpm4 (pp) Csrp1", "weight" : 0.580044235362, "name" : "Tpm4 (pp) Csrp1", "shared_name" : "Tpm4 (pp) Csrp1", "SUID" : 671436, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671457", "source" : "588733", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tpm4 (pp) Rasgrp1", "weight" : 0.428946374401, "name" : "Tpm4 (pp) Rasgrp1", "shared_name" : "Tpm4 (pp) Rasgrp1", "SUID" : 671457, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671487", "source" : "588733", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tpm4 (pp) Lmo2", "weight" : 0.467208180578, "name" : "Tpm4 (pp) Lmo2", "shared_name" : "Tpm4 (pp) Lmo2", "SUID" : 671487, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671420", "source" : "588733", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tpm4 (pp) Fcer1g", "weight" : 0.530337344057, "name" : "Tpm4 (pp) Fcer1g", "shared_name" : "Tpm4 (pp) Fcer1g", "SUID" : 671420, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671414", "source" : "588733", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tpm4 (pp) Obrgrp", "weight" : 0.542779786148, "name" : "Tpm4 (pp) Obrgrp", "shared_name" : "Tpm4 (pp) Obrgrp", "SUID" : 671414, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671474", "source" : "588733", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tpm4 (pp) Fcgr4", "weight" : 0.424919926685, "name" : "Tpm4 (pp) Fcgr4", "shared_name" : "Tpm4 (pp) Fcgr4", "SUID" : 671474, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671411", "source" : "588733", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tpm4 (pp) Slc15a3", "weight" : 0.542557354203, "name" : "Tpm4 (pp) Slc15a3", "shared_name" : "Tpm4 (pp) Slc15a3", "SUID" : 671411, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671407", "source" : "588733", "target" : "588740", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tpm4 (pp) Plekha2", "weight" : 0.456832000762, "name" : "Tpm4 (pp) Plekha2", "shared_name" : "Tpm4 (pp) Plekha2", "SUID" : 671407, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671406", "source" : "588733", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tpm4 (pp) Vsig4", "weight" : 0.4974164429, "name" : "Tpm4 (pp) Vsig4", "shared_name" : "Tpm4 (pp) Vsig4", "SUID" : 671406, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671441", "source" : "588733", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tpm4 (pp) Cfp", "weight" : 0.472315532856, "name" : "Tpm4 (pp) Cfp", "shared_name" : "Tpm4 (pp) Cfp", "SUID" : 671441, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648970", "source" : "588351", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Snx10", "weight" : 0.547946635587, "name" : "Ttc39a (pp) Snx10", "shared_name" : "Ttc39a (pp) Snx10", "SUID" : 648970, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648906", "source" : "588351", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Tlr2", "weight" : 0.495526323919, "name" : "Ttc39a (pp) Tlr2", "shared_name" : "Ttc39a (pp) Tlr2", "SUID" : 648906, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648892", "source" : "588351", "target" : "588620", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Olfml3", "weight" : 0.56725956231, "name" : "Ttc39a (pp) Olfml3", "shared_name" : "Ttc39a (pp) Olfml3", "SUID" : 648892, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648866", "source" : "588351", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Plscr1", "weight" : 0.570603573505, "name" : "Ttc39a (pp) Plscr1", "shared_name" : "Ttc39a (pp) Plscr1", "SUID" : 648866, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649004", "source" : "588351", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Ear12", "weight" : 0.499577445892, "name" : "Ttc39a (pp) Ear12", "shared_name" : "Ttc39a (pp) Ear12", "SUID" : 649004, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648955", "source" : "588351", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Csrp1", "weight" : 0.57066620655, "name" : "Ttc39a (pp) Csrp1", "shared_name" : "Ttc39a (pp) Csrp1", "SUID" : 648955, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648854", "source" : "588351", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Clec4n", "weight" : 0.444175769078, "name" : "Ttc39a (pp) Clec4n", "shared_name" : "Ttc39a (pp) Clec4n", "SUID" : 648854, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648914", "source" : "588351", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Slc15a3", "weight" : 0.464776887003, "name" : "Ttc39a (pp) Slc15a3", "shared_name" : "Ttc39a (pp) Slc15a3", "SUID" : 648914, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648935", "source" : "588351", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Lgals3", "weight" : 0.665907305578, "name" : "Ttc39a (pp) Lgals3", "shared_name" : "Ttc39a (pp) Lgals3", "SUID" : 648935, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648918", "source" : "588351", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Tmem86a", "weight" : 0.545010839447, "name" : "Ttc39a (pp) Tmem86a", "shared_name" : "Ttc39a (pp) Tmem86a", "SUID" : 648918, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648898", "source" : "588351", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) 5033414D02Rik", "weight" : 0.438287017951, "name" : "Ttc39a (pp) 5033414D02Rik", "shared_name" : "Ttc39a (pp) 5033414D02Rik", "SUID" : 648898, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649002", "source" : "588351", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Ppif", "weight" : 0.447754970386, "name" : "Ttc39a (pp) Ppif", "shared_name" : "Ttc39a (pp) Ppif", "SUID" : 649002, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649024", "source" : "588351", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Il10ra", "weight" : 0.47118064056, "name" : "Ttc39a (pp) Il10ra", "shared_name" : "Ttc39a (pp) Il10ra", "SUID" : 649024, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649012", "source" : "588351", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Ear4", "weight" : 0.557809505696, "name" : "Ttc39a (pp) Ear4", "shared_name" : "Ttc39a (pp) Ear4", "SUID" : 649012, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648907", "source" : "588351", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Axl", "weight" : 0.5063522103, "name" : "Ttc39a (pp) Axl", "shared_name" : "Ttc39a (pp) Axl", "SUID" : 648907, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648975", "source" : "588351", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Vcam1", "weight" : 0.465651881045, "name" : "Ttc39a (pp) Vcam1", "shared_name" : "Ttc39a (pp) Vcam1", "SUID" : 648975, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648993", "source" : "588351", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Serpinb6a", "weight" : 0.401003967315, "name" : "Ttc39a (pp) Serpinb6a", "shared_name" : "Ttc39a (pp) Serpinb6a", "SUID" : 648993, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649015", "source" : "588351", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Ly86", "weight" : 0.452609925425, "name" : "Ttc39a (pp) Ly86", "shared_name" : "Ttc39a (pp) Ly86", "SUID" : 649015, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648879", "source" : "588351", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Cd86", "weight" : 0.462023330204, "name" : "Ttc39a (pp) Cd86", "shared_name" : "Ttc39a (pp) Cd86", "SUID" : 648879, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648902", "source" : "588351", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Cd52", "weight" : 0.559697786354, "name" : "Ttc39a (pp) Cd52", "shared_name" : "Ttc39a (pp) Cd52", "SUID" : 648902, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648923", "source" : "588351", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Cotl1", "weight" : 0.577894243966, "name" : "Ttc39a (pp) Cotl1", "shared_name" : "Ttc39a (pp) Cotl1", "SUID" : 648923, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648979", "source" : "588351", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Tmsb4x", "weight" : 0.426136463396, "name" : "Ttc39a (pp) Tmsb4x", "shared_name" : "Ttc39a (pp) Tmsb4x", "SUID" : 648979, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649000", "source" : "588351", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Trem2", "weight" : 0.564005591901, "name" : "Ttc39a (pp) Trem2", "shared_name" : "Ttc39a (pp) Trem2", "SUID" : 649000, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649006", "source" : "588351", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Fcgr4", "weight" : 0.48916870228, "name" : "Ttc39a (pp) Fcgr4", "shared_name" : "Ttc39a (pp) Fcgr4", "SUID" : 649006, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648882", "source" : "588351", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Snn", "weight" : 0.418263636462, "name" : "Ttc39a (pp) Snn", "shared_name" : "Ttc39a (pp) Snn", "SUID" : 648882, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648885", "source" : "588351", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Tmsb10", "weight" : 0.42281513679, "name" : "Ttc39a (pp) Tmsb10", "shared_name" : "Ttc39a (pp) Tmsb10", "SUID" : 648885, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649001", "source" : "588351", "target" : "589256", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Timp1", "weight" : 0.631196088242, "name" : "Ttc39a (pp) Timp1", "shared_name" : "Ttc39a (pp) Timp1", "SUID" : 649001, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648840", "source" : "588351", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Cyp7b1", "weight" : 0.438939067266, "name" : "Ttc39a (pp) Cyp7b1", "shared_name" : "Ttc39a (pp) Cyp7b1", "SUID" : 648840, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649018", "source" : "588351", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Fblim1", "weight" : 0.443758678865, "name" : "Ttc39a (pp) Fblim1", "shared_name" : "Ttc39a (pp) Fblim1", "SUID" : 649018, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648865", "source" : "588351", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Renbp", "weight" : 0.414320487197, "name" : "Ttc39a (pp) Renbp", "shared_name" : "Ttc39a (pp) Renbp", "SUID" : 648865, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648998", "source" : "588351", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Ear10", "weight" : 0.477136769164, "name" : "Ttc39a (pp) Ear10", "shared_name" : "Ttc39a (pp) Ear10", "SUID" : 648998, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648846", "source" : "588351", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Selplg", "weight" : 0.573695218624, "name" : "Ttc39a (pp) Selplg", "shared_name" : "Ttc39a (pp) Selplg", "SUID" : 648846, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648857", "source" : "588351", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Cd63", "weight" : 0.488965315062, "name" : "Ttc39a (pp) Cd63", "shared_name" : "Ttc39a (pp) Cd63", "SUID" : 648857, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648945", "source" : "588351", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Cytip", "weight" : 0.483211255269, "name" : "Ttc39a (pp) Cytip", "shared_name" : "Ttc39a (pp) Cytip", "SUID" : 648945, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648884", "source" : "588351", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Coro1a", "weight" : 0.444033415238, "name" : "Ttc39a (pp) Coro1a", "shared_name" : "Ttc39a (pp) Coro1a", "SUID" : 648884, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648851", "source" : "588351", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Cd14", "weight" : 0.445601816584, "name" : "Ttc39a (pp) Cd14", "shared_name" : "Ttc39a (pp) Cd14", "SUID" : 648851, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648974", "source" : "588351", "target" : "589113", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Ms4a7", "weight" : 0.424013541521, "name" : "Ttc39a (pp) Ms4a7", "shared_name" : "Ttc39a (pp) Ms4a7", "SUID" : 648974, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648967", "source" : "588351", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Cfp", "weight" : 0.460116292039, "name" : "Ttc39a (pp) Cfp", "shared_name" : "Ttc39a (pp) Cfp", "SUID" : 648967, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648895", "source" : "588351", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Gpnmb", "weight" : 0.456499235968, "name" : "Ttc39a (pp) Gpnmb", "shared_name" : "Ttc39a (pp) Gpnmb", "SUID" : 648895, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "648929", "source" : "588351", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Fcer1g", "weight" : 0.445949425794, "name" : "Ttc39a (pp) Fcer1g", "shared_name" : "Ttc39a (pp) Fcer1g", "SUID" : 648929, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "649010", "source" : "588351", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ttc39a (pp) Clec7a", "weight" : 0.571543276441, "name" : "Ttc39a (pp) Clec7a", "shared_name" : "Ttc39a (pp) Clec7a", "SUID" : 649010, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594270", "source" : "587746", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) H2-DMb1", "weight" : 0.534391720139, "name" : "Gbp3 (pp) H2-DMb1", "shared_name" : "Gbp3 (pp) H2-DMb1", "SUID" : 594270, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594226", "source" : "587746", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Clec4n", "weight" : 0.411171675196, "name" : "Gbp3 (pp) Clec4n", "shared_name" : "Gbp3 (pp) Clec4n", "SUID" : 594226, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594293", "source" : "587746", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Ear4", "weight" : 0.474179683306, "name" : "Gbp3 (pp) Ear4", "shared_name" : "Gbp3 (pp) Ear4", "SUID" : 594293, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594212", "source" : "587746", "target" : "588254", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Irf8", "weight" : 0.490381857086, "name" : "Gbp3 (pp) Irf8", "shared_name" : "Gbp3 (pp) Irf8", "SUID" : 594212, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594287", "source" : "587746", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Ear10", "weight" : 0.44595848262, "name" : "Gbp3 (pp) Ear10", "shared_name" : "Gbp3 (pp) Ear10", "SUID" : 594287, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594295", "source" : "587746", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) C1qb", "weight" : 0.507814033378, "name" : "Gbp3 (pp) C1qb", "shared_name" : "Gbp3 (pp) C1qb", "SUID" : 594295, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594175", "source" : "587746", "target" : "587788", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Nckap1l", "weight" : 0.418914573171, "name" : "Gbp3 (pp) Nckap1l", "shared_name" : "Gbp3 (pp) Nckap1l", "SUID" : 594175, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594191", "source" : "587746", "target" : "587982", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Plekho2", "weight" : 0.441238994737, "name" : "Gbp3 (pp) Plekho2", "shared_name" : "Gbp3 (pp) Plekho2", "SUID" : 594191, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594228", "source" : "587746", "target" : "588457", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Ccl5", "weight" : 0.50428140223, "name" : "Gbp3 (pp) Ccl5", "shared_name" : "Gbp3 (pp) Ccl5", "SUID" : 594228, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594252", "source" : "587746", "target" : "588707", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Cxcl9", "weight" : 0.529221429825, "name" : "Gbp3 (pp) Cxcl9", "shared_name" : "Gbp3 (pp) Cxcl9", "SUID" : 594252, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594238", "source" : "587746", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Cd86", "weight" : 0.462359767237, "name" : "Gbp3 (pp) Cd86", "shared_name" : "Gbp3 (pp) Cd86", "SUID" : 594238, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594178", "source" : "587746", "target" : "587807", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Evi2a", "weight" : 0.459847415629, "name" : "Gbp3 (pp) Evi2a", "shared_name" : "Gbp3 (pp) Evi2a", "SUID" : 594178, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594190", "source" : "587746", "target" : "587975", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) H2-Ab1", "weight" : 0.474875054996, "name" : "Gbp3 (pp) H2-Ab1", "shared_name" : "Gbp3 (pp) H2-Ab1", "SUID" : 594190, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594179", "source" : "587746", "target" : "587817", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Fgd2", "weight" : 0.406461298918, "name" : "Gbp3 (pp) Fgd2", "shared_name" : "Gbp3 (pp) Fgd2", "SUID" : 594179, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594282", "source" : "587746", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Rasgrp1", "weight" : 0.568021206389, "name" : "Gbp3 (pp) Rasgrp1", "shared_name" : "Gbp3 (pp) Rasgrp1", "SUID" : 594282, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594209", "source" : "587746", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Laptm5", "weight" : 0.414257360202, "name" : "Gbp3 (pp) Laptm5", "shared_name" : "Gbp3 (pp) Laptm5", "SUID" : 594209, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594203", "source" : "587746", "target" : "588151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Ccl4", "weight" : 0.510956105806, "name" : "Gbp3 (pp) Ccl4", "shared_name" : "Gbp3 (pp) Ccl4", "SUID" : 594203, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594182", "source" : "587746", "target" : "587844", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Ear2", "weight" : 0.48984338543, "name" : "Gbp3 (pp) Ear2", "shared_name" : "Gbp3 (pp) Ear2", "SUID" : 594182, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594256", "source" : "587746", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Tpm4", "weight" : 0.441715913713, "name" : "Gbp3 (pp) Tpm4", "shared_name" : "Gbp3 (pp) Tpm4", "SUID" : 594256, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594269", "source" : "587746", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Cytip", "weight" : 0.434678800375, "name" : "Gbp3 (pp) Cytip", "shared_name" : "Gbp3 (pp) Cytip", "SUID" : 594269, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594294", "source" : "587746", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Ly86", "weight" : 0.508596754252, "name" : "Gbp3 (pp) Ly86", "shared_name" : "Gbp3 (pp) Ly86", "SUID" : 594294, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594204", "source" : "587746", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Pip4k2a", "weight" : 0.43715658342, "name" : "Gbp3 (pp) Pip4k2a", "shared_name" : "Gbp3 (pp) Pip4k2a", "SUID" : 594204, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594248", "source" : "587746", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) 5033414D02Rik", "weight" : 0.59188329408, "name" : "Gbp3 (pp) 5033414D02Rik", "shared_name" : "Gbp3 (pp) 5033414D02Rik", "SUID" : 594248, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594255", "source" : "587746", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Axl", "weight" : 0.471334429221, "name" : "Gbp3 (pp) Axl", "shared_name" : "Gbp3 (pp) Axl", "SUID" : 594255, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594280", "source" : "587746", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Vcam1", "weight" : 0.448590773887, "name" : "Gbp3 (pp) Vcam1", "shared_name" : "Gbp3 (pp) Vcam1", "SUID" : 594280, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594172", "source" : "587746", "target" : "587759", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Rab8b", "weight" : 0.491542735133, "name" : "Gbp3 (pp) Rab8b", "shared_name" : "Gbp3 (pp) Rab8b", "SUID" : 594172, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594170", "source" : "587746", "target" : "587750", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Serpina3f", "weight" : 0.646617438986, "name" : "Gbp3 (pp) Serpina3f", "shared_name" : "Gbp3 (pp) Serpina3f", "SUID" : 594170, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594241", "source" : "587746", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Slc11a1", "weight" : 0.524550737447, "name" : "Gbp3 (pp) Slc11a1", "shared_name" : "Gbp3 (pp) Slc11a1", "SUID" : 594241, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594253", "source" : "587746", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Serpina3g", "weight" : 0.738225411992, "name" : "Gbp3 (pp) Serpina3g", "shared_name" : "Gbp3 (pp) Serpina3g", "SUID" : 594253, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594223", "source" : "587746", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Selplg", "weight" : 0.519322165314, "name" : "Gbp3 (pp) Selplg", "shared_name" : "Gbp3 (pp) Selplg", "SUID" : 594223, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594235", "source" : "587746", "target" : "588512", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) H2-Eb1", "weight" : 0.465269100965, "name" : "Gbp3 (pp) H2-Eb1", "shared_name" : "Gbp3 (pp) H2-Eb1", "SUID" : 594235, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594176", "source" : "587746", "target" : "587790", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Sh3bgrl3", "weight" : 0.437937728201, "name" : "Gbp3 (pp) Sh3bgrl3", "shared_name" : "Gbp3 (pp) Sh3bgrl3", "SUID" : 594176, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594281", "source" : "587746", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Tmsb4x", "weight" : 0.472893042193, "name" : "Gbp3 (pp) Tmsb4x", "shared_name" : "Gbp3 (pp) Tmsb4x", "SUID" : 594281, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594266", "source" : "587746", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Lgals3", "weight" : 0.437924919361, "name" : "Gbp3 (pp) Lgals3", "shared_name" : "Gbp3 (pp) Lgals3", "SUID" : 594266, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594286", "source" : "587746", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) H2-DMa", "weight" : 0.626151662964, "name" : "Gbp3 (pp) H2-DMa", "shared_name" : "Gbp3 (pp) H2-DMa", "SUID" : 594286, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594189", "source" : "587746", "target" : "587966", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Cyba", "weight" : 0.44976441142, "name" : "Gbp3 (pp) Cyba", "shared_name" : "Gbp3 (pp) Cyba", "SUID" : 594189, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594268", "source" : "587746", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Hk3", "weight" : 0.637239549321, "name" : "Gbp3 (pp) Hk3", "shared_name" : "Gbp3 (pp) Hk3", "SUID" : 594268, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594208", "source" : "587746", "target" : "588227", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Gbp2", "weight" : 0.62713255854, "name" : "Gbp3 (pp) Gbp2", "shared_name" : "Gbp3 (pp) Gbp2", "SUID" : 594208, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594205", "source" : "587746", "target" : "588185", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Aif1", "weight" : 0.544506196412, "name" : "Gbp3 (pp) Aif1", "shared_name" : "Gbp3 (pp) Aif1", "SUID" : 594205, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594259", "source" : "587746", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Slc15a3", "weight" : 0.525107788341, "name" : "Gbp3 (pp) Slc15a3", "shared_name" : "Gbp3 (pp) Slc15a3", "SUID" : 594259, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594202", "source" : "587746", "target" : "588134", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Mlkl", "weight" : 0.485491395817, "name" : "Gbp3 (pp) Mlkl", "shared_name" : "Gbp3 (pp) Mlkl", "SUID" : 594202, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594288", "source" : "587746", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Ear12", "weight" : 0.404360661971, "name" : "Gbp3 (pp) Ear12", "shared_name" : "Gbp3 (pp) Ear12", "SUID" : 594288, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594276", "source" : "587746", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Cfp", "weight" : 0.429957300796, "name" : "Gbp3 (pp) Cfp", "shared_name" : "Gbp3 (pp) Cfp", "SUID" : 594276, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594239", "source" : "587746", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Coro1a", "weight" : 0.568219473033, "name" : "Gbp3 (pp) Coro1a", "shared_name" : "Gbp3 (pp) Coro1a", "SUID" : 594239, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594245", "source" : "587746", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Casp1", "weight" : 0.649726959994, "name" : "Gbp3 (pp) Casp1", "shared_name" : "Gbp3 (pp) Casp1", "SUID" : 594245, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594196", "source" : "587746", "target" : "588049", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Cd74", "weight" : 0.44750086881, "name" : "Gbp3 (pp) Cd74", "shared_name" : "Gbp3 (pp) Cd74", "SUID" : 594196, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594265", "source" : "587746", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Fcer1g", "weight" : 0.578891750626, "name" : "Gbp3 (pp) Fcer1g", "shared_name" : "Gbp3 (pp) Fcer1g", "SUID" : 594265, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594264", "source" : "587746", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Plac8", "weight" : 0.524127935221, "name" : "Gbp3 (pp) Plac8", "shared_name" : "Gbp3 (pp) Plac8", "SUID" : 594264, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594254", "source" : "587746", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Tlr2", "weight" : 0.478434012209, "name" : "Gbp3 (pp) Tlr2", "shared_name" : "Gbp3 (pp) Tlr2", "SUID" : 594254, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594185", "source" : "587746", "target" : "587857", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Lgmn", "weight" : 0.414727054848, "name" : "Gbp3 (pp) Lgmn", "shared_name" : "Gbp3 (pp) Lgmn", "SUID" : 594185, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594289", "source" : "587746", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Fcgr4", "weight" : 0.622258454208, "name" : "Gbp3 (pp) Fcgr4", "shared_name" : "Gbp3 (pp) Fcgr4", "SUID" : 594289, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594258", "source" : "587746", "target" : "588740", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Plekha2", "weight" : 0.45471895836, "name" : "Gbp3 (pp) Plekha2", "shared_name" : "Gbp3 (pp) Plekha2", "SUID" : 594258, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594181", "source" : "587746", "target" : "587829", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Fyb", "weight" : 0.447629393625, "name" : "Gbp3 (pp) Fyb", "shared_name" : "Gbp3 (pp) Fyb", "SUID" : 594181, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594257", "source" : "587746", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Vsig4", "weight" : 0.497349070426, "name" : "Gbp3 (pp) Vsig4", "shared_name" : "Gbp3 (pp) Vsig4", "SUID" : 594257, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594211", "source" : "587746", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Sdc3", "weight" : 0.458743679087, "name" : "Gbp3 (pp) Sdc3", "shared_name" : "Gbp3 (pp) Sdc3", "SUID" : 594211, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594251", "source" : "587746", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Cd52", "weight" : 0.652373016347, "name" : "Gbp3 (pp) Cd52", "shared_name" : "Gbp3 (pp) Cd52", "SUID" : 594251, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594216", "source" : "587746", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Ms4a6d", "weight" : 0.554981389595, "name" : "Gbp3 (pp) Ms4a6d", "shared_name" : "Gbp3 (pp) Ms4a6d", "SUID" : 594216, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594273", "source" : "587746", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Csrp1", "weight" : 0.421847800738, "name" : "Gbp3 (pp) Csrp1", "shared_name" : "Gbp3 (pp) Csrp1", "SUID" : 594273, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594177", "source" : "587746", "target" : "587798", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Ccnd1", "weight" : 0.411545009876, "name" : "Gbp3 (pp) Ccnd1", "shared_name" : "Gbp3 (pp) Ccnd1", "SUID" : 594177, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594210", "source" : "587746", "target" : "588244", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Gltp", "weight" : 0.403359895947, "name" : "Gbp3 (pp) Gltp", "shared_name" : "Gbp3 (pp) Gltp", "SUID" : 594210, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594198", "source" : "587746", "target" : "588086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Iqgap1", "weight" : 0.456754476762, "name" : "Gbp3 (pp) Iqgap1", "shared_name" : "Gbp3 (pp) Iqgap1", "SUID" : 594198, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594217", "source" : "587746", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp3 (pp) Cxcl16", "weight" : 0.501052253356, "name" : "Gbp3 (pp) Cxcl16", "shared_name" : "Gbp3 (pp) Cxcl16", "SUID" : 594217, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683153", "source" : "589090", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pld4 (pp) Vcam1", "weight" : 0.447025988881, "name" : "Pld4 (pp) Vcam1", "shared_name" : "Pld4 (pp) Vcam1", "SUID" : 683153, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683169", "source" : "589090", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pld4 (pp) Ly86", "weight" : 0.542667356853, "name" : "Pld4 (pp) Ly86", "shared_name" : "Pld4 (pp) Ly86", "SUID" : 683169, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683155", "source" : "589090", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pld4 (pp) Tmsb4x", "weight" : 0.567208991884, "name" : "Pld4 (pp) Tmsb4x", "shared_name" : "Pld4 (pp) Tmsb4x", "SUID" : 683155, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683161", "source" : "589090", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pld4 (pp) H2-DMa", "weight" : 0.406130027764, "name" : "Pld4 (pp) H2-DMa", "shared_name" : "Pld4 (pp) H2-DMa", "SUID" : 683161, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683165", "source" : "589090", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pld4 (pp) Fcgr4", "weight" : 0.411791734058, "name" : "Pld4 (pp) Fcgr4", "shared_name" : "Pld4 (pp) Fcgr4", "SUID" : 683165, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683170", "source" : "589090", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pld4 (pp) C1qb", "weight" : 0.618140271616, "name" : "Pld4 (pp) C1qb", "shared_name" : "Pld4 (pp) C1qb", "SUID" : 683170, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594760", "source" : "587750", "target" : "587807", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3f (pp) Evi2a", "weight" : 0.406341163487, "name" : "Serpina3f (pp) Evi2a", "shared_name" : "Serpina3f (pp) Evi2a", "SUID" : 594760, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594860", "source" : "587750", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3f (pp) C1qb", "weight" : 0.418912734204, "name" : "Serpina3f (pp) C1qb", "shared_name" : "Serpina3f (pp) C1qb", "SUID" : 594860, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594799", "source" : "587750", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3f (pp) Selplg", "weight" : 0.46260273603, "name" : "Serpina3f (pp) Selplg", "shared_name" : "Serpina3f (pp) Selplg", "SUID" : 594799, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594771", "source" : "587750", "target" : "587975", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3f (pp) H2-Ab1", "weight" : 0.415783368613, "name" : "Serpina3f (pp) H2-Ab1", "shared_name" : "Serpina3f (pp) H2-Ab1", "SUID" : 594771, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594823", "source" : "587750", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3f (pp) Serpina3g", "weight" : 0.780242396421, "name" : "Serpina3f (pp) Serpina3g", "shared_name" : "Serpina3f (pp) Serpina3g", "SUID" : 594823, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594814", "source" : "587750", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3f (pp) Gngt2", "weight" : 0.411473249423, "name" : "Serpina3f (pp) Gngt2", "shared_name" : "Serpina3f (pp) Gngt2", "SUID" : 594814, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594849", "source" : "587750", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3f (pp) Tmsb4x", "weight" : 0.403176701701, "name" : "Serpina3f (pp) Tmsb4x", "shared_name" : "Serpina3f (pp) Tmsb4x", "SUID" : 594849, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594853", "source" : "587750", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3f (pp) H2-DMa", "weight" : 0.500482046617, "name" : "Serpina3f (pp) H2-DMa", "shared_name" : "Serpina3f (pp) H2-DMa", "SUID" : 594853, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594844", "source" : "587750", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3f (pp) Cfp", "weight" : 0.423547642003, "name" : "Serpina3f (pp) Cfp", "shared_name" : "Serpina3f (pp) Cfp", "SUID" : 594844, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594785", "source" : "587750", "target" : "588185", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3f (pp) Aif1", "weight" : 0.51147141646, "name" : "Serpina3f (pp) Aif1", "shared_name" : "Serpina3f (pp) Aif1", "SUID" : 594785, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594856", "source" : "587750", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3f (pp) Fcgr4", "weight" : 0.634164189257, "name" : "Serpina3f (pp) Fcgr4", "shared_name" : "Serpina3f (pp) Fcgr4", "SUID" : 594856, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594816", "source" : "587750", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3f (pp) Casp1", "weight" : 0.547927002892, "name" : "Serpina3f (pp) Casp1", "shared_name" : "Serpina3f (pp) Casp1", "SUID" : 594816, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594818", "source" : "587750", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3f (pp) 5033414D02Rik", "weight" : 0.491911376728, "name" : "Serpina3f (pp) 5033414D02Rik", "shared_name" : "Serpina3f (pp) 5033414D02Rik", "SUID" : 594818, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594821", "source" : "587750", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3f (pp) Cd52", "weight" : 0.492297494221, "name" : "Serpina3f (pp) Cd52", "shared_name" : "Serpina3f (pp) Cd52", "SUID" : 594821, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594794", "source" : "587750", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3f (pp) Ms4a6d", "weight" : 0.430990105583, "name" : "Serpina3f (pp) Ms4a6d", "shared_name" : "Serpina3f (pp) Ms4a6d", "SUID" : 594794, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594829", "source" : "587750", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3f (pp) Slc15a3", "weight" : 0.467351404008, "name" : "Serpina3f (pp) Slc15a3", "shared_name" : "Serpina3f (pp) Slc15a3", "SUID" : 594829, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594851", "source" : "587750", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3f (pp) Rasgrp1", "weight" : 0.448881619859, "name" : "Serpina3f (pp) Rasgrp1", "shared_name" : "Serpina3f (pp) Rasgrp1", "SUID" : 594851, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594813", "source" : "587750", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3f (pp) Slc11a1", "weight" : 0.400125804095, "name" : "Serpina3f (pp) Slc11a1", "shared_name" : "Serpina3f (pp) Slc11a1", "SUID" : 594813, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594833", "source" : "587750", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3f (pp) Plac8", "weight" : 0.469797213649, "name" : "Serpina3f (pp) Plac8", "shared_name" : "Serpina3f (pp) Plac8", "SUID" : 594833, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594790", "source" : "587750", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3f (pp) Sdc3", "weight" : 0.408704799715, "name" : "Serpina3f (pp) Sdc3", "shared_name" : "Serpina3f (pp) Sdc3", "SUID" : 594790, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594791", "source" : "587750", "target" : "588254", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3f (pp) Irf8", "weight" : 0.444104441992, "name" : "Serpina3f (pp) Irf8", "shared_name" : "Serpina3f (pp) Irf8", "SUID" : 594791, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594772", "source" : "587750", "target" : "587982", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3f (pp) Plekho2", "weight" : 0.412473915836, "name" : "Serpina3f (pp) Plekho2", "shared_name" : "Serpina3f (pp) Plekho2", "SUID" : 594772, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594846", "source" : "587750", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3f (pp) Snx10", "weight" : 0.425246518708, "name" : "Serpina3f (pp) Snx10", "shared_name" : "Serpina3f (pp) Snx10", "SUID" : 594846, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594769", "source" : "587750", "target" : "587966", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3f (pp) Cyba", "weight" : 0.405277400249, "name" : "Serpina3f (pp) Cyba", "shared_name" : "Serpina3f (pp) Cyba", "SUID" : 594769, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594795", "source" : "587750", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3f (pp) Cxcl16", "weight" : 0.416674608999, "name" : "Serpina3f (pp) Cxcl16", "shared_name" : "Serpina3f (pp) Cxcl16", "SUID" : 594795, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594859", "source" : "587750", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3f (pp) Ly86", "weight" : 0.433770841495, "name" : "Serpina3f (pp) Ly86", "shared_name" : "Serpina3f (pp) Ly86", "SUID" : 594859, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594837", "source" : "587750", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3f (pp) Hk3", "weight" : 0.616016471496, "name" : "Serpina3f (pp) Hk3", "shared_name" : "Serpina3f (pp) Hk3", "SUID" : 594837, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594834", "source" : "587750", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3f (pp) Fcer1g", "weight" : 0.443265915513, "name" : "Serpina3f (pp) Fcer1g", "shared_name" : "Serpina3f (pp) Fcer1g", "SUID" : 594834, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "594787", "source" : "587750", "target" : "588227", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Serpina3f (pp) Gbp2", "weight" : 0.47082447108, "name" : "Serpina3f (pp) Gbp2", "shared_name" : "Serpina3f (pp) Gbp2", "SUID" : 594787, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617804", "source" : "587989", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Plac8", "weight" : 0.602458583726, "name" : "Tyrobp (pp) Plac8", "shared_name" : "Tyrobp (pp) Plac8", "SUID" : 617804, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617760", "source" : "587989", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Slc11a1", "weight" : 0.545710129393, "name" : "Tyrobp (pp) Slc11a1", "shared_name" : "Tyrobp (pp) Slc11a1", "SUID" : 617760, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617762", "source" : "587989", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Gngt2", "weight" : 0.648663088999, "name" : "Tyrobp (pp) Gngt2", "shared_name" : "Tyrobp (pp) Gngt2", "SUID" : 617762, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617653", "source" : "587989", "target" : "588069", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) A430084P05Rik", "weight" : 0.425921423153, "name" : "Tyrobp (pp) A430084P05Rik", "shared_name" : "Tyrobp (pp) A430084P05Rik", "SUID" : 617653, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617725", "source" : "587989", "target" : "588432", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Kcnk6", "weight" : 0.470298373092, "name" : "Tyrobp (pp) Kcnk6", "shared_name" : "Tyrobp (pp) Kcnk6", "SUID" : 617725, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617873", "source" : "587989", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Ear10", "weight" : 0.493115867905, "name" : "Tyrobp (pp) Ear10", "shared_name" : "Tyrobp (pp) Ear10", "SUID" : 617873, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617888", "source" : "587989", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.637710637336, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Tyrobp (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.637710637336, "fusion" : "NA", "name" : "Tyrobp (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 48533.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Tyrobp (pp) Ear4", "combinedscore" : "NA", "SUID" : 617888, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 2.402793E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "617689", "source" : "587989", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Sdc3", "weight" : 0.554593251026, "name" : "Tyrobp (pp) Sdc3", "shared_name" : "Tyrobp (pp) Sdc3", "SUID" : 617689, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617672", "source" : "587989", "target" : "588185", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Aif1", "weight" : 0.400089098166, "name" : "Tyrobp (pp) Aif1", "shared_name" : "Tyrobp (pp) Aif1", "SUID" : 617672, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617773", "source" : "587989", "target" : "588664", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.505231524048, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Tyrobp (pp) 5033414D02Rik", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.505231524048, "fusion" : "NA", "name" : "Tyrobp (pp) 5033414D02Rik", "neighborhood" : "NA", "sourceEdge" : 48478.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Tyrobp (pp) 5033414D02Rik", "combinedscore" : "NA", "SUID" : 617773, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 6.48582E-7, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "617758", "source" : "587989", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Tmsb10", "weight" : 0.447325521093, "name" : "Tyrobp (pp) Tmsb10", "shared_name" : "Tyrobp (pp) Tmsb10", "SUID" : 617758, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617893", "source" : "587989", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) C1qb", "weight" : 0.586381827295, "name" : "Tyrobp (pp) C1qb", "shared_name" : "Tyrobp (pp) C1qb", "SUID" : 617893, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617644", "source" : "587989", "target" : "588024", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Cd68", "weight" : 0.46110624076, "name" : "Tyrobp (pp) Cd68", "shared_name" : "Tyrobp (pp) Cd68", "SUID" : 617644, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617821", "source" : "587989", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Hk3", "weight" : 0.461400975127, "name" : "Tyrobp (pp) Hk3", "shared_name" : "Tyrobp (pp) Hk3", "SUID" : 617821, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617794", "source" : "587989", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Tmem86a", "weight" : 0.479306123398, "name" : "Tyrobp (pp) Tmem86a", "shared_name" : "Tyrobp (pp) Tmem86a", "SUID" : 617794, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617796", "source" : "587989", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Obrgrp", "weight" : 0.416379096427, "name" : "Tyrobp (pp) Obrgrp", "shared_name" : "Tyrobp (pp) Obrgrp", "SUID" : 617796, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617786", "source" : "587989", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Vsig4", "weight" : 0.449329943922, "name" : "Tyrobp (pp) Vsig4", "shared_name" : "Tyrobp (pp) Vsig4", "SUID" : 617786, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617793", "source" : "587989", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Ccl6", "weight" : 0.51264243965, "name" : "Tyrobp (pp) Ccl6", "shared_name" : "Tyrobp (pp) Ccl6", "SUID" : 617793, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617730", "source" : "587989", "target" : "588461", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Tbxas1", "weight" : 0.452532126137, "name" : "Tyrobp (pp) Tbxas1", "shared_name" : "Tyrobp (pp) Tbxas1", "SUID" : 617730, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617659", "source" : "587989", "target" : "588104", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Bmp1", "weight" : 0.463774543898, "name" : "Tyrobp (pp) Bmp1", "shared_name" : "Tyrobp (pp) Bmp1", "SUID" : 617659, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617688", "source" : "587989", "target" : "588244", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Gltp", "weight" : 0.488234622572, "name" : "Tyrobp (pp) Gltp", "shared_name" : "Tyrobp (pp) Gltp", "SUID" : 617688, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617845", "source" : "587989", "target" : "589086", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.571070535036, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Tyrobp (pp) Cfp", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.571070535036, "fusion" : "NA", "name" : "Tyrobp (pp) Cfp", "neighborhood" : "NA", "sourceEdge" : 48513.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Tyrobp (pp) Cfp", "combinedscore" : "NA", "SUID" : 617845, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 1.204205E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "617727", "source" : "587989", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Cd63", "weight" : 0.464119842984, "name" : "Tyrobp (pp) Cd63", "shared_name" : "Tyrobp (pp) Cd63", "SUID" : 617727, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617851", "source" : "587989", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Vcam1", "weight" : 0.585408329749, "name" : "Tyrobp (pp) Vcam1", "shared_name" : "Tyrobp (pp) Vcam1", "SUID" : 617851, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617884", "source" : "587989", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Cd53", "weight" : 0.505629792785, "name" : "Tyrobp (pp) Cd53", "shared_name" : "Tyrobp (pp) Cd53", "SUID" : 617884, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617839", "source" : "587989", "target" : "589030", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Soat1", "weight" : 0.440008864547, "name" : "Tyrobp (pp) Soat1", "shared_name" : "Tyrobp (pp) Soat1", "SUID" : 617839, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617813", "source" : "587989", "target" : "588886", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.67864733438, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Tyrobp (pp) Lgals3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.67864733438, "fusion" : "NA", "name" : "Tyrobp (pp) Lgals3", "neighborhood" : "NA", "sourceEdge" : 48502.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Tyrobp (pp) Lgals3", "combinedscore" : "NA", "SUID" : 617813, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "FALSE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.007791706, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "617690", "source" : "587989", "target" : "588254", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Irf8", "weight" : 0.484682309249, "name" : "Tyrobp (pp) Irf8", "shared_name" : "Tyrobp (pp) Irf8", "SUID" : 617690, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617655", "source" : "587989", "target" : "588081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Capg", "weight" : 0.427652425022, "name" : "Tyrobp (pp) Capg", "shared_name" : "Tyrobp (pp) Capg", "SUID" : 617655, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617687", "source" : "587989", "target" : "588242", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Cd83", "weight" : 0.481875649456, "name" : "Tyrobp (pp) Cd83", "shared_name" : "Tyrobp (pp) Cd83", "SUID" : 617687, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617724", "source" : "587989", "target" : "588424", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.639080692509, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Tyrobp (pp) Clec4n", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.639080692509, "fusion" : "NA", "name" : "Tyrobp (pp) Clec4n", "neighborhood" : "NA", "sourceEdge" : 48451.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Tyrobp (pp) Clec4n", "combinedscore" : "NA", "SUID" : 617724, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 1.876802E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "617706", "source" : "587989", "target" : "588335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Arpc1b", "weight" : 0.465205598682, "name" : "Tyrobp (pp) Arpc1b", "shared_name" : "Tyrobp (pp) Arpc1b", "SUID" : 617706, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617819", "source" : "587989", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) C1qc", "weight" : 0.474646373695, "name" : "Tyrobp (pp) C1qc", "shared_name" : "Tyrobp (pp) C1qc", "SUID" : 617819, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617787", "source" : "587989", "target" : "588742", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Ifitm6", "weight" : 0.595700170328, "name" : "Tyrobp (pp) Ifitm6", "shared_name" : "Tyrobp (pp) Ifitm6", "SUID" : 617787, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617879", "source" : "587989", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Abi3", "weight" : 0.521347703844, "name" : "Tyrobp (pp) Abi3", "shared_name" : "Tyrobp (pp) Abi3", "SUID" : 617879, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617718", "source" : "587989", "target" : "588394", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Lyzs", "weight" : 0.586687676671, "name" : "Tyrobp (pp) Lyzs", "shared_name" : "Tyrobp (pp) Lyzs", "SUID" : 617718, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617892", "source" : "587989", "target" : "589335", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.654629850387, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Tyrobp (pp) Ly86", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.654629850387, "fusion" : "NA", "name" : "Tyrobp (pp) Ly86", "neighborhood" : "NA", "sourceEdge" : 48535.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Tyrobp (pp) Ly86", "combinedscore" : "NA", "SUID" : 617892, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 1.521242E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "617684", "source" : "587989", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Laptm5", "weight" : 0.462041002467, "name" : "Tyrobp (pp) Laptm5", "shared_name" : "Tyrobp (pp) Laptm5", "SUID" : 617684, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617783", "source" : "587989", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Axl", "weight" : 0.611961787666, "name" : "Tyrobp (pp) Axl", "shared_name" : "Tyrobp (pp) Axl", "SUID" : 617783, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617882", "source" : "587989", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Fcgr4", "weight" : 0.591830217369, "name" : "Tyrobp (pp) Fcgr4", "shared_name" : "Tyrobp (pp) Fcgr4", "SUID" : 617882, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617744", "source" : "587989", "target" : "588517", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Rac2", "weight" : 0.413630928515, "name" : "Tyrobp (pp) Rac2", "shared_name" : "Tyrobp (pp) Rac2", "SUID" : 617744, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617822", "source" : "587989", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Cytip", "weight" : 0.427207531106, "name" : "Tyrobp (pp) Cytip", "shared_name" : "Tyrobp (pp) Cytip", "SUID" : 617822, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617781", "source" : "587989", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Serpina3g", "weight" : 0.425017792799, "name" : "Tyrobp (pp) Serpina3g", "shared_name" : "Tyrobp (pp) Serpina3g", "SUID" : 617781, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617876", "source" : "587989", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Trem2", "weight" : 0.447779138792, "name" : "Tyrobp (pp) Trem2", "shared_name" : "Tyrobp (pp) Trem2", "SUID" : 617876, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617808", "source" : "587989", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Fcgr3", "weight" : 0.541393369418, "name" : "Tyrobp (pp) Fcgr3", "shared_name" : "Tyrobp (pp) Fcgr3", "SUID" : 617808, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617641", "source" : "587989", "target" : "588010", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Cd84", "weight" : 0.473017416718, "name" : "Tyrobp (pp) Cd84", "shared_name" : "Tyrobp (pp) Cd84", "SUID" : 617641, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617847", "source" : "587989", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Pld4", "weight" : 0.449270031326, "name" : "Tyrobp (pp) Pld4", "shared_name" : "Tyrobp (pp) Pld4", "SUID" : 617847, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617721", "source" : "587989", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Cd14", "weight" : 0.569663258847, "name" : "Tyrobp (pp) Cd14", "shared_name" : "Tyrobp (pp) Cd14", "SUID" : 617721, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617695", "source" : "587989", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Ms4a6d", "weight" : 0.49448983188, "name" : "Tyrobp (pp) Ms4a6d", "shared_name" : "Tyrobp (pp) Ms4a6d", "SUID" : 617695, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617802", "source" : "587989", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Cotl1", "weight" : 0.591261085517, "name" : "Tyrobp (pp) Cotl1", "shared_name" : "Tyrobp (pp) Cotl1", "SUID" : 617802, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617757", "source" : "587989", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Coro1a", "weight" : 0.447213615131, "name" : "Tyrobp (pp) Coro1a", "shared_name" : "Tyrobp (pp) Coro1a", "SUID" : 617757, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617869", "source" : "587989", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Serpinb6a", "weight" : 0.548201333448, "name" : "Tyrobp (pp) Serpinb6a", "shared_name" : "Tyrobp (pp) Serpinb6a", "SUID" : 617869, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617670", "source" : "587989", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Pip4k2a", "weight" : 0.463759304701, "name" : "Tyrobp (pp) Pip4k2a", "shared_name" : "Tyrobp (pp) Pip4k2a", "SUID" : 617670, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617765", "source" : "587989", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Casp1", "weight" : 0.452207161763, "name" : "Tyrobp (pp) Casp1", "shared_name" : "Tyrobp (pp) Casp1", "SUID" : 617765, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617733", "source" : "587989", "target" : "588472", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Ly9", "weight" : 0.443990967372, "name" : "Tyrobp (pp) Ly9", "shared_name" : "Tyrobp (pp) Ly9", "SUID" : 617733, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617791", "source" : "587989", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Slc15a3", "weight" : 0.626038699816, "name" : "Tyrobp (pp) Slc15a3", "shared_name" : "Tyrobp (pp) Slc15a3", "SUID" : 617791, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617880", "source" : "587989", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Ear12", "weight" : 0.574303518746, "name" : "Tyrobp (pp) Ear12", "shared_name" : "Tyrobp (pp) Ear12", "SUID" : 617880, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617778", "source" : "587989", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Cd52", "weight" : 0.570339196546, "name" : "Tyrobp (pp) Cd52", "shared_name" : "Tyrobp (pp) Cd52", "SUID" : 617778, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617806", "source" : "587989", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Fcer1g", "weight" : 0.631542340392, "name" : "Tyrobp (pp) Fcer1g", "shared_name" : "Tyrobp (pp) Fcer1g", "SUID" : 617806, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617782", "source" : "587989", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Tlr2", "weight" : 0.451906382458, "name" : "Tyrobp (pp) Tlr2", "shared_name" : "Tyrobp (pp) Tlr2", "SUID" : 617782, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617735", "source" : "587989", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Renbp", "weight" : 0.404289290788, "name" : "Tyrobp (pp) Renbp", "shared_name" : "Tyrobp (pp) Renbp", "SUID" : 617735, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617885", "source" : "587989", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Clec7a", "weight" : 0.467426789416, "name" : "Tyrobp (pp) Clec7a", "shared_name" : "Tyrobp (pp) Clec7a", "SUID" : 617885, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617679", "source" : "587989", "target" : "588213", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Pdlim4", "weight" : 0.434483965539, "name" : "Tyrobp (pp) Pdlim4", "shared_name" : "Tyrobp (pp) Pdlim4", "SUID" : 617679, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617855", "source" : "587989", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Tmsb4x", "weight" : 0.522031654571, "name" : "Tyrobp (pp) Tmsb4x", "shared_name" : "Tyrobp (pp) Tmsb4x", "SUID" : 617855, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617699", "source" : "587989", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Cxcl16", "weight" : 0.531364722463, "name" : "Tyrobp (pp) Cxcl16", "shared_name" : "Tyrobp (pp) Cxcl16", "SUID" : 617699, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617769", "source" : "587989", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Gpnmb", "weight" : 0.468299172745, "name" : "Tyrobp (pp) Gpnmb", "shared_name" : "Tyrobp (pp) Gpnmb", "SUID" : 617769, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617780", "source" : "587989", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) 6330416G13Rik", "weight" : 0.406267657996, "name" : "Tyrobp (pp) 6330416G13Rik", "shared_name" : "Tyrobp (pp) 6330416G13Rik", "SUID" : 617780, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617838", "source" : "587989", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Csrp1", "weight" : 0.5599269758, "name" : "Tyrobp (pp) Csrp1", "shared_name" : "Tyrobp (pp) Csrp1", "SUID" : 617838, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617896", "source" : "587989", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Lrrc33", "weight" : 0.412825441686, "name" : "Tyrobp (pp) Lrrc33", "shared_name" : "Tyrobp (pp) Lrrc33", "SUID" : 617896, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617755", "source" : "587989", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Snn", "weight" : 0.427376769098, "name" : "Tyrobp (pp) Snn", "shared_name" : "Tyrobp (pp) Snn", "SUID" : 617755, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617711", "source" : "587989", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Cyp7b1", "weight" : 0.547557118681, "name" : "Tyrobp (pp) Cyp7b1", "shared_name" : "Tyrobp (pp) Cyp7b1", "SUID" : 617711, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617714", "source" : "587989", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Selplg", "weight" : 0.529782842692, "name" : "Tyrobp (pp) Selplg", "shared_name" : "Tyrobp (pp) Selplg", "SUID" : 617714, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617751", "source" : "587989", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Cd86", "weight" : 0.513151579321, "name" : "Tyrobp (pp) Cd86", "shared_name" : "Tyrobp (pp) Cd86", "SUID" : 617751, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617832", "source" : "587989", "target" : "588968", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Bcl2a1c", "weight" : 0.439517083171, "name" : "Tyrobp (pp) Bcl2a1c", "shared_name" : "Tyrobp (pp) Bcl2a1c", "SUID" : 617832, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617667", "source" : "587989", "target" : "588147", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Ppic", "weight" : 0.41851568125, "name" : "Tyrobp (pp) Ppic", "shared_name" : "Tyrobp (pp) Ppic", "SUID" : 617667, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617712", "source" : "587989", "target" : "588365", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tyrobp (pp) Tnfaip8l2", "weight" : 0.450943932418, "name" : "Tyrobp (pp) Tnfaip8l2", "shared_name" : "Tyrobp (pp) Tnfaip8l2", "SUID" : 617712, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671663", "source" : "588739", "target" : "588999", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Kctd12", "weight" : 0.445330544325, "name" : "Vsig4 (pp) Kctd12", "shared_name" : "Vsig4 (pp) Kctd12", "SUID" : 671663, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671647", "source" : "588739", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Pla2g15", "weight" : 0.530366527629, "name" : "Vsig4 (pp) Pla2g15", "shared_name" : "Vsig4 (pp) Pla2g15", "SUID" : 671647, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671652", "source" : "588739", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Lgals3", "weight" : 0.619649892816, "name" : "Vsig4 (pp) Lgals3", "shared_name" : "Vsig4 (pp) Lgals3", "SUID" : 671652, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671667", "source" : "588739", "target" : "589076", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) H2-M3", "weight" : 0.537132681771, "name" : "Vsig4 (pp) H2-M3", "shared_name" : "Vsig4 (pp) H2-M3", "SUID" : 671667, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671708", "source" : "588739", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Tspan33", "weight" : 0.481400123085, "name" : "Vsig4 (pp) Tspan33", "shared_name" : "Vsig4 (pp) Tspan33", "SUID" : 671708, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671642", "source" : "588739", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Tmem86a", "weight" : 0.552887259507, "name" : "Vsig4 (pp) Tmem86a", "shared_name" : "Vsig4 (pp) Tmem86a", "SUID" : 671642, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671657", "source" : "588739", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Cytip", "weight" : 0.586995189769, "name" : "Vsig4 (pp) Cytip", "shared_name" : "Vsig4 (pp) Cytip", "SUID" : 671657, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671705", "source" : "588739", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Ly86", "weight" : 0.620062894251, "name" : "Vsig4 (pp) Ly86", "shared_name" : "Vsig4 (pp) Ly86", "SUID" : 671705, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671699", "source" : "588739", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Clec7a", "weight" : 0.487097073188, "name" : "Vsig4 (pp) Clec7a", "shared_name" : "Vsig4 (pp) Clec7a", "SUID" : 671699, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671637", "source" : "588739", "target" : "588742", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Ifitm6", "weight" : 0.407746411473, "name" : "Vsig4 (pp) Ifitm6", "shared_name" : "Vsig4 (pp) Ifitm6", "SUID" : 671637, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671685", "source" : "588739", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Serpinb6a", "weight" : 0.592411160921, "name" : "Vsig4 (pp) Serpinb6a", "shared_name" : "Vsig4 (pp) Serpinb6a", "SUID" : 671685, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671711", "source" : "588739", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Lmo2", "weight" : 0.482608753767, "name" : "Vsig4 (pp) Lmo2", "shared_name" : "Vsig4 (pp) Lmo2", "SUID" : 671711, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671695", "source" : "588739", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Ear12", "weight" : 0.461741955505, "name" : "Vsig4 (pp) Ear12", "shared_name" : "Vsig4 (pp) Ear12", "SUID" : 671695, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671643", "source" : "588739", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Obrgrp", "weight" : 0.404738650984, "name" : "Vsig4 (pp) Obrgrp", "shared_name" : "Vsig4 (pp) Obrgrp", "SUID" : 671643, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671639", "source" : "588739", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Slc15a3", "weight" : 0.641152858169, "name" : "Vsig4 (pp) Slc15a3", "shared_name" : "Vsig4 (pp) Slc15a3", "SUID" : 671639, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671669", "source" : "588739", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Cfp", "weight" : 0.676168433256, "name" : "Vsig4 (pp) Cfp", "shared_name" : "Vsig4 (pp) Cfp", "SUID" : 671669, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671649", "source" : "588739", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Plac8", "weight" : 0.622592056382, "name" : "Vsig4 (pp) Plac8", "shared_name" : "Vsig4 (pp) Plac8", "SUID" : 671649, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671671", "source" : "588739", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Pld4", "weight" : 0.468056845133, "name" : "Vsig4 (pp) Pld4", "shared_name" : "Vsig4 (pp) Pld4", "SUID" : 671671, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671706", "source" : "588739", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) C1qb", "weight" : 0.806805438256, "name" : "Vsig4 (pp) C1qb", "shared_name" : "Vsig4 (pp) C1qb", "SUID" : 671706, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671701", "source" : "588739", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Ear4", "weight" : 0.651019119983, "name" : "Vsig4 (pp) Ear4", "shared_name" : "Vsig4 (pp) Ear4", "SUID" : 671701, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671694", "source" : "588739", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Abi3", "weight" : 0.554146315005, "name" : "Vsig4 (pp) Abi3", "shared_name" : "Vsig4 (pp) Abi3", "SUID" : 671694, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671688", "source" : "588739", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Ear10", "weight" : 0.553760512462, "name" : "Vsig4 (pp) Ear10", "shared_name" : "Vsig4 (pp) Ear10", "SUID" : 671688, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671680", "source" : "588739", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Rasgrp1", "weight" : 0.585153959027, "name" : "Vsig4 (pp) Rasgrp1", "shared_name" : "Vsig4 (pp) Rasgrp1", "SUID" : 671680, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671677", "source" : "588739", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Tmsb4x", "weight" : 0.515664040813, "name" : "Vsig4 (pp) Tmsb4x", "shared_name" : "Vsig4 (pp) Tmsb4x", "SUID" : 671677, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671672", "source" : "588739", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Snx10", "weight" : 0.429676564584, "name" : "Vsig4 (pp) Snx10", "shared_name" : "Vsig4 (pp) Snx10", "SUID" : 671672, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671648", "source" : "588739", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Cotl1", "weight" : 0.464520342411, "name" : "Vsig4 (pp) Cotl1", "shared_name" : "Vsig4 (pp) Cotl1", "SUID" : 671648, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671656", "source" : "588739", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Hk3", "weight" : 0.570976543479, "name" : "Vsig4 (pp) Hk3", "shared_name" : "Vsig4 (pp) Hk3", "SUID" : 671656, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671655", "source" : "588739", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) C1qc", "weight" : 0.550869671415, "name" : "Vsig4 (pp) C1qc", "shared_name" : "Vsig4 (pp) C1qc", "SUID" : 671655, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671687", "source" : "588739", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) H2-DMa", "weight" : 0.537707115063, "name" : "Vsig4 (pp) H2-DMa", "shared_name" : "Vsig4 (pp) H2-DMa", "SUID" : 671687, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671665", "source" : "588739", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Csrp1", "weight" : 0.511481506773, "name" : "Vsig4 (pp) Csrp1", "shared_name" : "Vsig4 (pp) Csrp1", "SUID" : 671665, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671696", "source" : "588739", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Fcgr4", "weight" : 0.612607629212, "name" : "Vsig4 (pp) Fcgr4", "shared_name" : "Vsig4 (pp) Fcgr4", "SUID" : 671696, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671673", "source" : "588739", "target" : "589102", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Gja1", "weight" : 0.407505538993, "name" : "Vsig4 (pp) Gja1", "shared_name" : "Vsig4 (pp) Gja1", "SUID" : 671673, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671709", "source" : "588739", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Lrrc33", "weight" : 0.439472166964, "name" : "Vsig4 (pp) Lrrc33", "shared_name" : "Vsig4 (pp) Lrrc33", "SUID" : 671709, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671650", "source" : "588739", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Fcer1g", "weight" : 0.632080277003, "name" : "Vsig4 (pp) Fcer1g", "shared_name" : "Vsig4 (pp) Fcer1g", "SUID" : 671650, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671698", "source" : "588739", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Cd53", "weight" : 0.475182885938, "name" : "Vsig4 (pp) Cd53", "shared_name" : "Vsig4 (pp) Cd53", "SUID" : 671698, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671640", "source" : "588739", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) 5430435G22Rik", "weight" : 0.502668646902, "name" : "Vsig4 (pp) 5430435G22Rik", "shared_name" : "Vsig4 (pp) 5430435G22Rik", "SUID" : 671640, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671675", "source" : "588739", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Vcam1", "weight" : 0.485855777379, "name" : "Vsig4 (pp) Vcam1", "shared_name" : "Vsig4 (pp) Vcam1", "SUID" : 671675, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671641", "source" : "588739", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vsig4 (pp) Ccl6", "weight" : 0.500183830072, "name" : "Vsig4 (pp) Ccl6", "shared_name" : "Vsig4 (pp) Ccl6", "SUID" : 671641, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678932", "source" : "588928", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cytip (pp) Btk", "weight" : 0.449576356886, "name" : "Cytip (pp) Btk", "shared_name" : "Cytip (pp) Btk", "SUID" : 678932, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678969", "source" : "588928", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cytip (pp) Trem2", "weight" : 0.49315487462, "name" : "Cytip (pp) Trem2", "shared_name" : "Cytip (pp) Trem2", "SUID" : 678969, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678986", "source" : "588928", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cytip (pp) C1qb", "weight" : 0.576462238377, "name" : "Cytip (pp) C1qb", "shared_name" : "Cytip (pp) C1qb", "SUID" : 678986, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678916", "source" : "588928", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cytip (pp) H2-DMb1", "weight" : 0.515573226308, "name" : "Cytip (pp) H2-DMb1", "shared_name" : "Cytip (pp) H2-DMb1", "SUID" : 678916, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678978", "source" : "588928", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cytip (pp) Clec7a", "weight" : 0.562614719249, "name" : "Cytip (pp) Clec7a", "shared_name" : "Cytip (pp) Clec7a", "SUID" : 678978, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678966", "source" : "588928", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cytip (pp) H2-DMa", "weight" : 0.556351744361, "name" : "Cytip (pp) H2-DMa", "shared_name" : "Cytip (pp) H2-DMa", "SUID" : 678966, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678921", "source" : "588928", "target" : "588999", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cytip (pp) Kctd12", "weight" : 0.462035529809, "name" : "Cytip (pp) Kctd12", "shared_name" : "Cytip (pp) Kctd12", "SUID" : 678921, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678980", "source" : "588928", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cytip (pp) Ear4", "weight" : 0.63085467324, "name" : "Cytip (pp) Ear4", "shared_name" : "Cytip (pp) Ear4", "SUID" : 678980, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678962", "source" : "588928", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cytip (pp) Serpinb6a", "weight" : 0.464950350921, "name" : "Cytip (pp) Serpinb6a", "shared_name" : "Cytip (pp) Serpinb6a", "SUID" : 678962, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678944", "source" : "588928", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cytip (pp) Vcam1", "weight" : 0.639775760207, "name" : "Cytip (pp) Vcam1", "shared_name" : "Cytip (pp) Vcam1", "SUID" : 678944, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678933", "source" : "588928", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cytip (pp) Cfp", "weight" : 0.522378476191, "name" : "Cytip (pp) Cfp", "shared_name" : "Cytip (pp) Cfp", "SUID" : 678933, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678938", "source" : "588928", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cytip (pp) Snx10", "weight" : 0.44386696479, "name" : "Cytip (pp) Snx10", "shared_name" : "Cytip (pp) Snx10", "SUID" : 678938, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678973", "source" : "588928", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cytip (pp) Ear12", "weight" : 0.436494018396, "name" : "Cytip (pp) Ear12", "shared_name" : "Cytip (pp) Ear12", "SUID" : 678973, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678985", "source" : "588928", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cytip (pp) Ly86", "weight" : 0.49629153635, "name" : "Cytip (pp) Ly86", "shared_name" : "Cytip (pp) Ly86", "SUID" : 678985, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678987", "source" : "588928", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cytip (pp) Fblim1", "weight" : 0.477138575655, "name" : "Cytip (pp) Fblim1", "shared_name" : "Cytip (pp) Fblim1", "SUID" : 678987, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678972", "source" : "588928", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cytip (pp) Abi3", "weight" : 0.503900171755, "name" : "Cytip (pp) Abi3", "shared_name" : "Cytip (pp) Abi3", "SUID" : 678972, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678975", "source" : "588928", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cytip (pp) Fcgr4", "weight" : 0.649122872906, "name" : "Cytip (pp) Fcgr4", "shared_name" : "Cytip (pp) Fcgr4", "SUID" : 678975, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678953", "source" : "588928", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cytip (pp) Rasgrp1", "weight" : 0.47456020374, "name" : "Cytip (pp) Rasgrp1", "shared_name" : "Cytip (pp) Rasgrp1", "SUID" : 678953, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678924", "source" : "588928", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cytip (pp) Csrp1", "weight" : 0.590977531362, "name" : "Cytip (pp) Csrp1", "shared_name" : "Cytip (pp) Csrp1", "SUID" : 678924, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "678948", "source" : "588928", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cytip (pp) Tmsb4x", "weight" : 0.537986048066, "name" : "Cytip (pp) Tmsb4x", "shared_name" : "Cytip (pp) Tmsb4x", "SUID" : 678948, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619128", "source" : "588010", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Axl", "weight" : 0.585062345833, "name" : "Cd84 (pp) Axl", "shared_name" : "Cd84 (pp) Axl", "SUID" : 619128, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619209", "source" : "588010", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) C1qb", "weight" : 0.655984528655, "name" : "Cd84 (pp) C1qb", "shared_name" : "Cd84 (pp) C1qb", "SUID" : 619209, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619170", "source" : "588010", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Csrp1", "weight" : 0.414439456738, "name" : "Cd84 (pp) Csrp1", "shared_name" : "Cd84 (pp) Csrp1", "SUID" : 619170, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619136", "source" : "588010", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Ccl6", "weight" : 0.554897350436, "name" : "Cd84 (pp) Ccl6", "shared_name" : "Cd84 (pp) Ccl6", "SUID" : 619136, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619148", "source" : "588010", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Fcgr3", "weight" : 0.524583727251, "name" : "Cd84 (pp) Fcgr3", "shared_name" : "Cd84 (pp) Fcgr3", "SUID" : 619148, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619077", "source" : "588010", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Selplg", "weight" : 0.480095086331, "name" : "Cd84 (pp) Selplg", "shared_name" : "Cd84 (pp) Selplg", "SUID" : 619077, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619108", "source" : "588010", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Slc11a1", "weight" : 0.633790407034, "name" : "Cd84 (pp) Slc11a1", "shared_name" : "Cd84 (pp) Slc11a1", "SUID" : 619108, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619208", "source" : "588010", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Ly86", "weight" : 0.432407131765, "name" : "Cd84 (pp) Ly86", "shared_name" : "Cd84 (pp) Ly86", "SUID" : 619208, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619201", "source" : "588010", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Abi3", "weight" : 0.523100509255, "name" : "Cd84 (pp) Abi3", "shared_name" : "Cd84 (pp) Abi3", "SUID" : 619201, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619176", "source" : "588010", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Cfp", "weight" : 0.403961003374, "name" : "Cd84 (pp) Cfp", "shared_name" : "Cd84 (pp) Cfp", "SUID" : 619176, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619125", "source" : "588010", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) 6330416G13Rik", "weight" : 0.580421605619, "name" : "Cd84 (pp) 6330416G13Rik", "shared_name" : "Cd84 (pp) 6330416G13Rik", "SUID" : 619125, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619110", "source" : "588010", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Gngt2", "weight" : 0.495146980436, "name" : "Cd84 (pp) Gngt2", "shared_name" : "Cd84 (pp) Gngt2", "SUID" : 619110, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619150", "source" : "588010", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Lgals3", "weight" : 0.54714948173, "name" : "Cd84 (pp) Lgals3", "shared_name" : "Cd84 (pp) Lgals3", "SUID" : 619150, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619174", "source" : "588010", "target" : "589076", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) H2-M3", "weight" : 0.457303108067, "name" : "Cd84 (pp) H2-M3", "shared_name" : "Cd84 (pp) H2-M3", "SUID" : 619174, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619083", "source" : "588010", "target" : "588439", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Vim", "weight" : 0.490541624949, "name" : "Cd84 (pp) Vim", "shared_name" : "Cd84 (pp) Vim", "SUID" : 619083, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619018", "source" : "588010", "target" : "588024", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Cd68", "weight" : 0.54543798346, "name" : "Cd84 (pp) Cd68", "shared_name" : "Cd84 (pp) Cd68", "SUID" : 619018, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619131", "source" : "588010", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Vsig4", "weight" : 0.566088016938, "name" : "Cd84 (pp) Vsig4", "shared_name" : "Cd84 (pp) Vsig4", "SUID" : 619131, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619144", "source" : "588010", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Cotl1", "weight" : 0.581736423213, "name" : "Cd84 (pp) Cotl1", "shared_name" : "Cd84 (pp) Cotl1", "SUID" : 619144, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619048", "source" : "588010", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Laptm5", "weight" : 0.541565769563, "name" : "Cd84 (pp) Laptm5", "shared_name" : "Cd84 (pp) Laptm5", "SUID" : 619048, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619145", "source" : "588010", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Plac8", "weight" : 0.427100248484, "name" : "Cd84 (pp) Plac8", "shared_name" : "Cd84 (pp) Plac8", "SUID" : 619145, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619214", "source" : "588010", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Lmo2", "weight" : 0.485618905839, "name" : "Cd84 (pp) Lmo2", "shared_name" : "Cd84 (pp) Lmo2", "SUID" : 619214, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619212", "source" : "588010", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Lrrc33", "weight" : 0.453725222858, "name" : "Cd84 (pp) Lrrc33", "shared_name" : "Cd84 (pp) Lrrc33", "SUID" : 619212, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619034", "source" : "588010", "target" : "588127", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Lpxn", "weight" : 0.516658646969, "name" : "Cd84 (pp) Lpxn", "shared_name" : "Cd84 (pp) Lpxn", "SUID" : 619034, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619081", "source" : "588010", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Clec4n", "weight" : 0.610235228395, "name" : "Cd84 (pp) Clec4n", "shared_name" : "Cd84 (pp) Clec4n", "SUID" : 619081, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619190", "source" : "588010", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Serpinb6a", "weight" : 0.551772822198, "name" : "Cd84 (pp) Serpinb6a", "shared_name" : "Cd84 (pp) Serpinb6a", "SUID" : 619190, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619050", "source" : "588010", "target" : "588242", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Cd83", "weight" : 0.456948209433, "name" : "Cd84 (pp) Cd83", "shared_name" : "Cd84 (pp) Cd83", "SUID" : 619050, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619157", "source" : "588010", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Cytip", "weight" : 0.448470648434, "name" : "Cd84 (pp) Cytip", "shared_name" : "Cd84 (pp) Cytip", "SUID" : 619157, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619178", "source" : "588010", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Pld4", "weight" : 0.417503030806, "name" : "Cd84 (pp) Pld4", "shared_name" : "Cd84 (pp) Pld4", "SUID" : 619178, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619058", "source" : "588010", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Ms4a6d", "weight" : 0.483898483204, "name" : "Cd84 (pp) Ms4a6d", "shared_name" : "Cd84 (pp) Ms4a6d", "SUID" : 619058, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619040", "source" : "588010", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Pip4k2a", "weight" : 0.481506737067, "name" : "Cd84 (pp) Pip4k2a", "shared_name" : "Cd84 (pp) Pip4k2a", "SUID" : 619040, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619137", "source" : "588010", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Tmem86a", "weight" : 0.47146383192, "name" : "Cd84 (pp) Tmem86a", "shared_name" : "Cd84 (pp) Tmem86a", "SUID" : 619137, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619075", "source" : "588010", "target" : "588365", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Tnfaip8l2", "weight" : 0.539528429265, "name" : "Cd84 (pp) Tnfaip8l2", "shared_name" : "Cd84 (pp) Tnfaip8l2", "SUID" : 619075, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619112", "source" : "588010", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Casp1", "weight" : 0.486424878007, "name" : "Cd84 (pp) Casp1", "shared_name" : "Cd84 (pp) Casp1", "SUID" : 619112, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619203", "source" : "588010", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Fcgr4", "weight" : 0.483013469638, "name" : "Cd84 (pp) Fcgr4", "shared_name" : "Cd84 (pp) Fcgr4", "SUID" : 619203, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619147", "source" : "588010", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Fcer1g", "weight" : 0.557535847143, "name" : "Cd84 (pp) Fcer1g", "shared_name" : "Cd84 (pp) Fcer1g", "SUID" : 619147, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619044", "source" : "588010", "target" : "588212", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Anxa3", "weight" : 0.544983611186, "name" : "Cd84 (pp) Anxa3", "shared_name" : "Cd84 (pp) Anxa3", "SUID" : 619044, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619086", "source" : "588010", "target" : "588461", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Tbxas1", "weight" : 0.419482561979, "name" : "Cd84 (pp) Tbxas1", "shared_name" : "Cd84 (pp) Tbxas1", "SUID" : 619086, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619123", "source" : "588010", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Cd52", "weight" : 0.457304865855, "name" : "Cd84 (pp) Cd52", "shared_name" : "Cd84 (pp) Cd52", "SUID" : 619123, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619204", "source" : "588010", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Clec7a", "weight" : 0.406500711142, "name" : "Cd84 (pp) Clec7a", "shared_name" : "Cd84 (pp) Clec7a", "SUID" : 619204, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619205", "source" : "588010", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Ear4", "weight" : 0.592291191222, "name" : "Cd84 (pp) Ear4", "shared_name" : "Cd84 (pp) Ear4", "SUID" : 619205, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619181", "source" : "588010", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Vcam1", "weight" : 0.562853045249, "name" : "Cd84 (pp) Vcam1", "shared_name" : "Cd84 (pp) Vcam1", "SUID" : 619181, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619134", "source" : "588010", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Slc15a3", "weight" : 0.511880658646, "name" : "Cd84 (pp) Slc15a3", "shared_name" : "Cd84 (pp) Slc15a3", "SUID" : 619134, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619045", "source" : "588010", "target" : "588213", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Pdlim4", "weight" : 0.534739544179, "name" : "Cd84 (pp) Pdlim4", "shared_name" : "Cd84 (pp) Pdlim4", "SUID" : 619045, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619106", "source" : "588010", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Coro1a", "weight" : 0.431256296366, "name" : "Cd84 (pp) Coro1a", "shared_name" : "Cd84 (pp) Coro1a", "SUID" : 619106, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619154", "source" : "588010", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) C1qc", "weight" : 0.490547985813, "name" : "Cd84 (pp) C1qc", "shared_name" : "Cd84 (pp) C1qc", "SUID" : 619154, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619100", "source" : "588010", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Cd86", "weight" : 0.534964566633, "name" : "Cd84 (pp) Cd86", "shared_name" : "Cd84 (pp) Cd86", "SUID" : 619100, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619142", "source" : "588010", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Pla2g15", "weight" : 0.446247286637, "name" : "Cd84 (pp) Pla2g15", "shared_name" : "Cd84 (pp) Pla2g15", "SUID" : 619142, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619103", "source" : "588010", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Snn", "weight" : 0.454843303861, "name" : "Cd84 (pp) Snn", "shared_name" : "Cd84 (pp) Snn", "SUID" : 619103, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619052", "source" : "588010", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Sdc3", "weight" : 0.457607539435, "name" : "Cd84 (pp) Sdc3", "shared_name" : "Cd84 (pp) Sdc3", "SUID" : 619052, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619120", "source" : "588010", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) 5033414D02Rik", "weight" : 0.435963214846, "name" : "Cd84 (pp) 5033414D02Rik", "shared_name" : "Cd84 (pp) 5033414D02Rik", "SUID" : 619120, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619037", "source" : "588010", "target" : "588147", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Ppic", "weight" : 0.452878847731, "name" : "Cd84 (pp) Ppic", "shared_name" : "Cd84 (pp) Ppic", "SUID" : 619037, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619088", "source" : "588010", "target" : "588472", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Ly9", "weight" : 0.51048842641, "name" : "Cd84 (pp) Ly9", "shared_name" : "Cd84 (pp) Ly9", "SUID" : 619088, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619116", "source" : "588010", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Gpnmb", "weight" : 0.571839986662, "name" : "Cd84 (pp) Gpnmb", "shared_name" : "Cd84 (pp) Gpnmb", "SUID" : 619116, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "619197", "source" : "588010", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd84 (pp) Trem2", "weight" : 0.479542247804, "name" : "Cd84 (pp) Trem2", "shared_name" : "Cd84 (pp) Trem2", "SUID" : 619197, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598314", "source" : "587774", "target" : "588254", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Irf8", "weight" : 0.524633561612, "name" : "Fermt3 (pp) Irf8", "shared_name" : "Fermt3 (pp) Irf8", "SUID" : 598314, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598475", "source" : "587774", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) H2-DMa", "weight" : 0.465988102486, "name" : "Fermt3 (pp) H2-DMa", "shared_name" : "Fermt3 (pp) H2-DMa", "SUID" : 598475, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598496", "source" : "587774", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Fblim1", "weight" : 0.470982909637, "name" : "Fermt3 (pp) Fblim1", "shared_name" : "Fermt3 (pp) Fblim1", "SUID" : 598496, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598494", "source" : "587774", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Ly86", "weight" : 0.495566366543, "name" : "Fermt3 (pp) Ly86", "shared_name" : "Fermt3 (pp) Ly86", "SUID" : 598494, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598377", "source" : "587774", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Tmsb10", "weight" : 0.451353149397, "name" : "Fermt3 (pp) Tmsb10", "shared_name" : "Fermt3 (pp) Tmsb10", "SUID" : 598377, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598401", "source" : "587774", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Axl", "weight" : 0.423971034926, "name" : "Fermt3 (pp) Axl", "shared_name" : "Fermt3 (pp) Axl", "SUID" : 598401, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598420", "source" : "587774", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Cotl1", "weight" : 0.506283928512, "name" : "Fermt3 (pp) Cotl1", "shared_name" : "Fermt3 (pp) Cotl1", "SUID" : 598420, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598378", "source" : "587774", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Slc11a1", "weight" : 0.557293329442, "name" : "Fermt3 (pp) Slc11a1", "shared_name" : "Fermt3 (pp) Slc11a1", "SUID" : 598378, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598284", "source" : "587774", "target" : "588086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Iqgap1", "weight" : 0.430983551925, "name" : "Fermt3 (pp) Iqgap1", "shared_name" : "Fermt3 (pp) Iqgap1", "SUID" : 598284, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598356", "source" : "587774", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Plscr1", "weight" : 0.406050504459, "name" : "Fermt3 (pp) Plscr1", "shared_name" : "Fermt3 (pp) Plscr1", "SUID" : 598356, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598408", "source" : "587774", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Slc15a3", "weight" : 0.552636849302, "name" : "Fermt3 (pp) Slc15a3", "shared_name" : "Fermt3 (pp) Slc15a3", "SUID" : 598408, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598312", "source" : "587774", "target" : "588244", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Gltp", "weight" : 0.560719695552, "name" : "Fermt3 (pp) Gltp", "shared_name" : "Fermt3 (pp) Gltp", "SUID" : 598312, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598345", "source" : "587774", "target" : "588394", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Lyzs", "weight" : 0.467523655012, "name" : "Fermt3 (pp) Lyzs", "shared_name" : "Fermt3 (pp) Lyzs", "SUID" : 598345, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598395", "source" : "587774", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Cd52", "weight" : 0.511457326687, "name" : "Fermt3 (pp) Cd52", "shared_name" : "Fermt3 (pp) Cd52", "SUID" : 598395, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598425", "source" : "587774", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Lgals3", "weight" : 0.530190287612, "name" : "Fermt3 (pp) Lgals3", "shared_name" : "Fermt3 (pp) Lgals3", "SUID" : 598425, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598495", "source" : "587774", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) C1qb", "weight" : 0.46715495168, "name" : "Fermt3 (pp) C1qb", "shared_name" : "Fermt3 (pp) C1qb", "SUID" : 598495, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598268", "source" : "587774", "target" : "587966", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Cyba", "weight" : 0.549932619111, "name" : "Fermt3 (pp) Cyba", "shared_name" : "Fermt3 (pp) Cyba", "SUID" : 598268, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598252", "source" : "587774", "target" : "587844", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Ear2", "weight" : 0.478470490751, "name" : "Fermt3 (pp) Ear2", "shared_name" : "Fermt3 (pp) Ear2", "SUID" : 598252, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598294", "source" : "587774", "target" : "588151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Ccl4", "weight" : 0.424132723379, "name" : "Fermt3 (pp) Ccl4", "shared_name" : "Fermt3 (pp) Ccl4", "SUID" : 598294, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598245", "source" : "587774", "target" : "587807", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Evi2a", "weight" : 0.423253236501, "name" : "Fermt3 (pp) Evi2a", "shared_name" : "Fermt3 (pp) Evi2a", "SUID" : 598245, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598410", "source" : "587774", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) 5430435G22Rik", "weight" : 0.413075753391, "name" : "Fermt3 (pp) 5430435G22Rik", "shared_name" : "Fermt3 (pp) 5430435G22Rik", "SUID" : 598410, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598399", "source" : "587774", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Serpina3g", "weight" : 0.444752172663, "name" : "Fermt3 (pp) Serpina3g", "shared_name" : "Fermt3 (pp) Serpina3g", "SUID" : 598399, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598292", "source" : "587774", "target" : "588134", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Mlkl", "weight" : 0.425063474628, "name" : "Fermt3 (pp) Mlkl", "shared_name" : "Fermt3 (pp) Mlkl", "SUID" : 598292, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598348", "source" : "587774", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Clec4n", "weight" : 0.489008349515, "name" : "Fermt3 (pp) Clec4n", "shared_name" : "Fermt3 (pp) Clec4n", "SUID" : 598348, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598308", "source" : "587774", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Laptm5", "weight" : 0.48165952997, "name" : "Fermt3 (pp) Laptm5", "shared_name" : "Fermt3 (pp) Laptm5", "SUID" : 598308, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598492", "source" : "587774", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Prkcd", "weight" : 0.408901800224, "name" : "Fermt3 (pp) Prkcd", "shared_name" : "Fermt3 (pp) Prkcd", "SUID" : 598492, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598484", "source" : "587774", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Fcgr4", "weight" : 0.447144319394, "name" : "Fermt3 (pp) Fcgr4", "shared_name" : "Fermt3 (pp) Fcgr4", "SUID" : 598484, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598241", "source" : "587774", "target" : "587790", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.560019679267, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Fermt3 (pp) Sh3bgrl3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.560019679267, "fusion" : "NA", "name" : "Fermt3 (pp) Sh3bgrl3", "neighborhood" : "NA", "sourceEdge" : 12824.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Fermt3 (pp) Sh3bgrl3", "combinedscore" : "NA", "SUID" : 598241, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 4.875929E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "598295", "source" : "587774", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Pip4k2a", "weight" : 0.430792614933, "name" : "Fermt3 (pp) Pip4k2a", "shared_name" : "Fermt3 (pp) Pip4k2a", "SUID" : 598295, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598433", "source" : "587774", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Cytip", "weight" : 0.434967565832, "name" : "Fermt3 (pp) Cytip", "shared_name" : "Fermt3 (pp) Cytip", "SUID" : 598433, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598432", "source" : "587774", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Hk3", "weight" : 0.484806072636, "name" : "Fermt3 (pp) Hk3", "shared_name" : "Fermt3 (pp) Hk3", "SUID" : 598432, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598325", "source" : "587774", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Cxcl16", "weight" : 0.462414814732, "name" : "Fermt3 (pp) Cxcl16", "shared_name" : "Fermt3 (pp) Cxcl16", "SUID" : 598325, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598320", "source" : "587774", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Ms4a6d", "weight" : 0.507347856856, "name" : "Fermt3 (pp) Ms4a6d", "shared_name" : "Fermt3 (pp) Ms4a6d", "SUID" : 598320, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598254", "source" : "587774", "target" : "587855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Pkm2", "weight" : 0.523771350229, "name" : "Fermt3 (pp) Pkm2", "shared_name" : "Fermt3 (pp) Pkm2", "SUID" : 598254, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598421", "source" : "587774", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Plac8", "weight" : 0.457530358185, "name" : "Fermt3 (pp) Plac8", "shared_name" : "Fermt3 (pp) Plac8", "SUID" : 598421, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598415", "source" : "587774", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Obrgrp", "weight" : 0.463077307162, "name" : "Fermt3 (pp) Obrgrp", "shared_name" : "Fermt3 (pp) Obrgrp", "SUID" : 598415, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598404", "source" : "587774", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Vsig4", "weight" : 0.423682691161, "name" : "Fermt3 (pp) Vsig4", "shared_name" : "Fermt3 (pp) Vsig4", "SUID" : 598404, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598270", "source" : "587774", "target" : "587982", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Plekho2", "weight" : 0.533336776065, "name" : "Fermt3 (pp) Plekho2", "shared_name" : "Fermt3 (pp) Plekho2", "SUID" : 598270, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598448", "source" : "587774", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Cfp", "weight" : 0.502963044212, "name" : "Fermt3 (pp) Cfp", "shared_name" : "Fermt3 (pp) Cfp", "SUID" : 598448, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598327", "source" : "587774", "target" : "588313", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Zfp90", "weight" : 0.476777001971, "name" : "Fermt3 (pp) Zfp90", "shared_name" : "Fermt3 (pp) Zfp90", "SUID" : 598327, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598260", "source" : "587774", "target" : "587881", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Vav1", "weight" : 0.410096303904, "name" : "Fermt3 (pp) Vav1", "shared_name" : "Fermt3 (pp) Vav1", "SUID" : 598260, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598386", "source" : "587774", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Gpnmb", "weight" : 0.400693065619, "name" : "Fermt3 (pp) Gpnmb", "shared_name" : "Fermt3 (pp) Gpnmb", "SUID" : 598386, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598489", "source" : "587774", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.463481805777, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Fermt3 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.463481805777, "fusion" : "NA", "name" : "Fermt3 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 12965.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Fermt3 (pp) Ear4", "combinedscore" : "NA", "SUID" : 598489, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 8.233017E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "598400", "source" : "587774", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Tlr2", "weight" : 0.482345578076, "name" : "Fermt3 (pp) Tlr2", "shared_name" : "Fermt3 (pp) Tlr2", "SUID" : 598400, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598346", "source" : "587774", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Cd14", "weight" : 0.402265033433, "name" : "Fermt3 (pp) Cd14", "shared_name" : "Fermt3 (pp) Cd14", "SUID" : 598346, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598376", "source" : "587774", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Coro1a", "weight" : 0.486291839575, "name" : "Fermt3 (pp) Coro1a", "shared_name" : "Fermt3 (pp) Coro1a", "SUID" : 598376, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598391", "source" : "587774", "target" : "588664", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.473257942993, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Fermt3 (pp) 5033414D02Rik", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.473257942993, "fusion" : "NA", "name" : "Fermt3 (pp) 5033414D02Rik", "neighborhood" : "NA", "sourceEdge" : 12910.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Fermt3 (pp) 5033414D02Rik", "combinedscore" : "NA", "SUID" : 598391, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 4.619814E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "598240", "source" : "587774", "target" : "587788", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Nckap1l", "weight" : 0.51471602009, "name" : "Fermt3 (pp) Nckap1l", "shared_name" : "Fermt3 (pp) Nckap1l", "SUID" : 598240, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598371", "source" : "587774", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Cd86", "weight" : 0.534406832976, "name" : "Fermt3 (pp) Cd86", "shared_name" : "Fermt3 (pp) Cd86", "SUID" : 598371, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598461", "source" : "587774", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Tmsb4x", "weight" : 0.50539880115, "name" : "Fermt3 (pp) Tmsb4x", "shared_name" : "Fermt3 (pp) Tmsb4x", "SUID" : 598461, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598291", "source" : "587774", "target" : "588127", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Lpxn", "weight" : 0.547687239667, "name" : "Fermt3 (pp) Lpxn", "shared_name" : "Fermt3 (pp) Lpxn", "SUID" : 598291, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598457", "source" : "587774", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Vcam1", "weight" : 0.472987643642, "name" : "Fermt3 (pp) Vcam1", "shared_name" : "Fermt3 (pp) Vcam1", "SUID" : 598457, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598343", "source" : "587774", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Selplg", "weight" : 0.479666915673, "name" : "Fermt3 (pp) Selplg", "shared_name" : "Fermt3 (pp) Selplg", "SUID" : 598343, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598255", "source" : "587774", "target" : "587857", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Lgmn", "weight" : 0.554320346829, "name" : "Fermt3 (pp) Lgmn", "shared_name" : "Fermt3 (pp) Lgmn", "SUID" : 598255, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598311", "source" : "587774", "target" : "588242", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Cd83", "weight" : 0.440823743945, "name" : "Fermt3 (pp) Cd83", "shared_name" : "Fermt3 (pp) Cd83", "SUID" : 598311, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598248", "source" : "587774", "target" : "587818", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Ifi30", "weight" : 0.483092440803, "name" : "Fermt3 (pp) Ifi30", "shared_name" : "Fermt3 (pp) Ifi30", "SUID" : 598248, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598443", "source" : "587774", "target" : "589030", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Soat1", "weight" : 0.412614426196, "name" : "Fermt3 (pp) Soat1", "shared_name" : "Fermt3 (pp) Soat1", "SUID" : 598443, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598380", "source" : "587774", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Gngt2", "weight" : 0.518287405727, "name" : "Fermt3 (pp) Gngt2", "shared_name" : "Fermt3 (pp) Gngt2", "SUID" : 598380, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598473", "source" : "587774", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Serpinb6a", "weight" : 0.488556571203, "name" : "Fermt3 (pp) Serpinb6a", "shared_name" : "Fermt3 (pp) Serpinb6a", "SUID" : 598473, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598403", "source" : "587774", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Tpm4", "weight" : 0.458946246937, "name" : "Fermt3 (pp) Tpm4", "shared_name" : "Fermt3 (pp) Tpm4", "SUID" : 598403, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598442", "source" : "587774", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Csrp1", "weight" : 0.51997779315, "name" : "Fermt3 (pp) Csrp1", "shared_name" : "Fermt3 (pp) Csrp1", "SUID" : 598442, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "598423", "source" : "587774", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fermt3 (pp) Fcer1g", "weight" : 0.557233271751, "name" : "Fermt3 (pp) Fcer1g", "shared_name" : "Fermt3 (pp) Fcer1g", "SUID" : 598423, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686070", "source" : "589265", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Abi3 (pp) Ear4", "weight" : 0.603100390246, "name" : "Abi3 (pp) Ear4", "shared_name" : "Abi3 (pp) Ear4", "SUID" : 686070, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686074", "source" : "589265", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Abi3 (pp) Ly86", "weight" : 0.494429614566, "name" : "Abi3 (pp) Ly86", "shared_name" : "Abi3 (pp) Ly86", "SUID" : 686074, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686065", "source" : "589265", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Abi3 (pp) Fcgr4", "weight" : 0.496988733141, "name" : "Abi3 (pp) Fcgr4", "shared_name" : "Abi3 (pp) Fcgr4", "SUID" : 686065, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686068", "source" : "589265", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Abi3 (pp) Clec7a", "weight" : 0.434699793698, "name" : "Abi3 (pp) Clec7a", "shared_name" : "Abi3 (pp) Clec7a", "SUID" : 686068, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686064", "source" : "589265", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Abi3 (pp) Ear12", "weight" : 0.432852453962, "name" : "Abi3 (pp) Ear12", "shared_name" : "Abi3 (pp) Ear12", "SUID" : 686064, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686075", "source" : "589265", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Abi3 (pp) C1qb", "weight" : 0.623778363084, "name" : "Abi3 (pp) C1qb", "shared_name" : "Abi3 (pp) C1qb", "SUID" : 686075, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686083", "source" : "589265", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Abi3 (pp) Il10ra", "weight" : 0.420670974129, "name" : "Abi3 (pp) Il10ra", "shared_name" : "Abi3 (pp) Il10ra", "SUID" : 686083, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669360", "source" : "588678", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fxyd5 (pp) Clec7a", "weight" : 0.477351692114, "name" : "Fxyd5 (pp) Clec7a", "shared_name" : "Fxyd5 (pp) Clec7a", "SUID" : 669360, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669363", "source" : "588678", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fxyd5 (pp) Ly86", "weight" : 0.465946750452, "name" : "Fxyd5 (pp) Ly86", "shared_name" : "Fxyd5 (pp) Ly86", "SUID" : 669363, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669361", "source" : "588678", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fxyd5 (pp) Ear4", "weight" : 0.414001124274, "name" : "Fxyd5 (pp) Ear4", "shared_name" : "Fxyd5 (pp) Ear4", "SUID" : 669361, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669344", "source" : "588678", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fxyd5 (pp) Tmsb4x", "weight" : 0.434104932942, "name" : "Fxyd5 (pp) Tmsb4x", "shared_name" : "Fxyd5 (pp) Tmsb4x", "SUID" : 669344, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669314", "source" : "588678", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fxyd5 (pp) Axl", "weight" : 0.464513371762, "name" : "Fxyd5 (pp) Axl", "shared_name" : "Fxyd5 (pp) Axl", "SUID" : 669314, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669308", "source" : "588678", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fxyd5 (pp) Cd52", "weight" : 0.581741878022, "name" : "Fxyd5 (pp) Cd52", "shared_name" : "Fxyd5 (pp) Cd52", "SUID" : 669308, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669358", "source" : "588678", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fxyd5 (pp) Fcgr4", "weight" : 0.485076779888, "name" : "Fxyd5 (pp) Fcgr4", "shared_name" : "Fxyd5 (pp) Fcgr4", "SUID" : 669358, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669324", "source" : "588678", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fxyd5 (pp) Plac8", "weight" : 0.514411558678, "name" : "Fxyd5 (pp) Plac8", "shared_name" : "Fxyd5 (pp) Plac8", "SUID" : 669324, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669330", "source" : "588678", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fxyd5 (pp) C1qc", "weight" : 0.455433277293, "name" : "Fxyd5 (pp) C1qc", "shared_name" : "Fxyd5 (pp) C1qc", "SUID" : 669330, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669319", "source" : "588678", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fxyd5 (pp) Ccl6", "weight" : 0.521419078615, "name" : "Fxyd5 (pp) Ccl6", "shared_name" : "Fxyd5 (pp) Ccl6", "SUID" : 669319, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669332", "source" : "588678", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fxyd5 (pp) Cytip", "weight" : 0.44120388003, "name" : "Fxyd5 (pp) Cytip", "shared_name" : "Fxyd5 (pp) Cytip", "SUID" : 669332, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669325", "source" : "588678", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fxyd5 (pp) Fcer1g", "weight" : 0.546158622845, "name" : "Fxyd5 (pp) Fcer1g", "shared_name" : "Fxyd5 (pp) Fcer1g", "SUID" : 669325, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669327", "source" : "588678", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fxyd5 (pp) Lgals3", "weight" : 0.563616223719, "name" : "Fxyd5 (pp) Lgals3", "shared_name" : "Fxyd5 (pp) Lgals3", "SUID" : 669327, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669364", "source" : "588678", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fxyd5 (pp) C1qb", "weight" : 0.516674822932, "name" : "Fxyd5 (pp) C1qb", "shared_name" : "Fxyd5 (pp) C1qb", "SUID" : 669364, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669323", "source" : "588678", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fxyd5 (pp) Cotl1", "weight" : 0.509006578242, "name" : "Fxyd5 (pp) Cotl1", "shared_name" : "Fxyd5 (pp) Cotl1", "SUID" : 669323, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669357", "source" : "588678", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fxyd5 (pp) Ear12", "weight" : 0.401343627722, "name" : "Fxyd5 (pp) Ear12", "shared_name" : "Fxyd5 (pp) Ear12", "SUID" : 669357, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669317", "source" : "588678", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fxyd5 (pp) Slc15a3", "weight" : 0.445444418227, "name" : "Fxyd5 (pp) Slc15a3", "shared_name" : "Fxyd5 (pp) Slc15a3", "SUID" : 669317, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669337", "source" : "588678", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fxyd5 (pp) Csrp1", "weight" : 0.466201656765, "name" : "Fxyd5 (pp) Csrp1", "shared_name" : "Fxyd5 (pp) Csrp1", "SUID" : 669337, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669354", "source" : "588678", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fxyd5 (pp) Trem2", "weight" : 0.47827469327, "name" : "Fxyd5 (pp) Trem2", "shared_name" : "Fxyd5 (pp) Trem2", "SUID" : 669354, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669315", "source" : "588678", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fxyd5 (pp) Vsig4", "weight" : 0.425525810051, "name" : "Fxyd5 (pp) Vsig4", "shared_name" : "Fxyd5 (pp) Vsig4", "SUID" : 669315, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669320", "source" : "588678", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fxyd5 (pp) Tmem86a", "weight" : 0.403482381222, "name" : "Fxyd5 (pp) Tmem86a", "shared_name" : "Fxyd5 (pp) Tmem86a", "SUID" : 669320, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669342", "source" : "588678", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fxyd5 (pp) Vcam1", "weight" : 0.489721273264, "name" : "Fxyd5 (pp) Vcam1", "shared_name" : "Fxyd5 (pp) Vcam1", "SUID" : 669342, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669333", "source" : "588678", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fxyd5 (pp) H2-DMb1", "weight" : 0.446382365887, "name" : "Fxyd5 (pp) H2-DMb1", "shared_name" : "Fxyd5 (pp) H2-DMb1", "SUID" : 669333, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669355", "source" : "588678", "target" : "589256", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fxyd5 (pp) Timp1", "weight" : 0.490028116716, "name" : "Fxyd5 (pp) Timp1", "shared_name" : "Fxyd5 (pp) Timp1", "SUID" : 669355, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669338", "source" : "588678", "target" : "589030", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fxyd5 (pp) Soat1", "weight" : 0.4498553552, "name" : "Fxyd5 (pp) Soat1", "shared_name" : "Fxyd5 (pp) Soat1", "SUID" : 669338, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669351", "source" : "588678", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fxyd5 (pp) H2-DMa", "weight" : 0.419650533741, "name" : "Fxyd5 (pp) H2-DMa", "shared_name" : "Fxyd5 (pp) H2-DMa", "SUID" : 669351, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669352", "source" : "588678", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fxyd5 (pp) Ear10", "weight" : 0.446002333644, "name" : "Fxyd5 (pp) Ear10", "shared_name" : "Fxyd5 (pp) Ear10", "SUID" : 669352, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669359", "source" : "588678", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fxyd5 (pp) Cd53", "weight" : 0.482827388648, "name" : "Fxyd5 (pp) Cd53", "shared_name" : "Fxyd5 (pp) Cd53", "SUID" : 669359, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "682987", "source" : "589086", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cfp (pp) Ppif", "weight" : 0.494788554053, "name" : "Cfp (pp) Ppif", "shared_name" : "Cfp (pp) Ppif", "SUID" : 682987, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "682978", "source" : "589086", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cfp (pp) Serpinb6a", "weight" : 0.724576440787, "name" : "Cfp (pp) Serpinb6a", "shared_name" : "Cfp (pp) Serpinb6a", "SUID" : 682978, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "682955", "source" : "589086", "target" : "589113", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cfp (pp) Ms4a7", "weight" : 0.551418938336, "name" : "Cfp (pp) Ms4a7", "shared_name" : "Cfp (pp) Ms4a7", "SUID" : 682955, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "682994", "source" : "589086", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cfp (pp) Cd53", "weight" : 0.526300914506, "name" : "Cfp (pp) Cd53", "shared_name" : "Cfp (pp) Cd53", "SUID" : 682994, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "682995", "source" : "589086", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cfp (pp) Clec7a", "weight" : 0.403306195784, "name" : "Cfp (pp) Clec7a", "shared_name" : "Cfp (pp) Clec7a", "SUID" : 682995, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "682990", "source" : "589086", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cfp (pp) Ear12", "weight" : 0.500251005876, "name" : "Cfp (pp) Ear12", "shared_name" : "Cfp (pp) Ear12", "SUID" : 682990, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683005", "source" : "589086", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cfp (pp) C1qb", "weight" : 0.657397747345, "name" : "Cfp (pp) C1qb", "shared_name" : "Cfp (pp) C1qb", "SUID" : 683005, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "682950", "source" : "589086", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cfp (pp) Snx10", "weight" : 0.630618576819, "name" : "Cfp (pp) Snx10", "shared_name" : "Cfp (pp) Snx10", "SUID" : 682950, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683007", "source" : "589086", "target" : "589353", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.442523640897, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cfp (pp) Fblim1", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.442523640897, "fusion" : "NA", "name" : "Cfp (pp) Fblim1", "neighborhood" : "NA", "sourceEdge" : 150713.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cfp (pp) Fblim1", "combinedscore" : "NA", "SUID" : 683007, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 3.805317E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "682962", "source" : "589086", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cfp (pp) Tmsb4x", "weight" : 0.529485178229, "name" : "Cfp (pp) Tmsb4x", "shared_name" : "Cfp (pp) Tmsb4x", "SUID" : 682962, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "682967", "source" : "589086", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cfp (pp) Rasgrp1", "weight" : 0.636779957485, "name" : "Cfp (pp) Rasgrp1", "shared_name" : "Cfp (pp) Rasgrp1", "SUID" : 682967, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "682992", "source" : "589086", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cfp (pp) Fcgr4", "weight" : 0.69895072799, "name" : "Cfp (pp) Fcgr4", "shared_name" : "Cfp (pp) Fcgr4", "SUID" : 682992, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "682982", "source" : "589086", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cfp (pp) Ear10", "weight" : 0.585684836497, "name" : "Cfp (pp) Ear10", "shared_name" : "Cfp (pp) Ear10", "SUID" : 682982, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "682989", "source" : "589086", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cfp (pp) Abi3", "weight" : 0.520823662209, "name" : "Cfp (pp) Abi3", "shared_name" : "Cfp (pp) Abi3", "SUID" : 682989, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683009", "source" : "589086", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cfp (pp) Lrrc33", "weight" : 0.447800880598, "name" : "Cfp (pp) Lrrc33", "shared_name" : "Cfp (pp) Lrrc33", "SUID" : 683009, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "682957", "source" : "589086", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cfp (pp) Vcam1", "weight" : 0.436266280193, "name" : "Cfp (pp) Vcam1", "shared_name" : "Cfp (pp) Vcam1", "SUID" : 682957, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683016", "source" : "589086", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cfp (pp) Il10ra", "weight" : 0.434416928793, "name" : "Cfp (pp) Il10ra", "shared_name" : "Cfp (pp) Il10ra", "SUID" : 683016, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683003", "source" : "589086", "target" : "589335", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.786033528014, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cfp (pp) Ly86", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.786033528014, "fusion" : "NA", "name" : "Cfp (pp) Ly86", "neighborhood" : "NA", "sourceEdge" : 150711.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cfp (pp) Ly86", "combinedscore" : "NA", "SUID" : 683003, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 4.6E-11, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "682998", "source" : "589086", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.693031560329, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cfp (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.693031560329, "fusion" : "NA", "name" : "Cfp (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 150709.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cfp (pp) Ear4", "combinedscore" : "NA", "SUID" : 682998, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 1.0727E-8, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "667234", "source" : "588639", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Ppif", "weight" : 0.41251924361, "name" : "Gpnmb (pp) Ppif", "shared_name" : "Gpnmb (pp) Ppif", "SUID" : 667234, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667237", "source" : "588639", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Ear12", "weight" : 0.509882311453, "name" : "Gpnmb (pp) Ear12", "shared_name" : "Gpnmb (pp) Ear12", "SUID" : 667237, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667181", "source" : "588639", "target" : "589030", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Soat1", "weight" : 0.428939728544, "name" : "Gpnmb (pp) Soat1", "shared_name" : "Gpnmb (pp) Soat1", "SUID" : 667181, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667153", "source" : "588639", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Lgals3", "weight" : 0.718527229846, "name" : "Gpnmb (pp) Lgals3", "shared_name" : "Gpnmb (pp) Lgals3", "SUID" : 667153, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667129", "source" : "588639", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Ccl6", "weight" : 0.603965169366, "name" : "Gpnmb (pp) Ccl6", "shared_name" : "Gpnmb (pp) Ccl6", "SUID" : 667129, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667161", "source" : "588639", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Hk3", "weight" : 0.436096990116, "name" : "Gpnmb (pp) Hk3", "shared_name" : "Gpnmb (pp) Hk3", "SUID" : 667161, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667110", "source" : "588639", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Cd52", "weight" : 0.579659709362, "name" : "Gpnmb (pp) Cd52", "shared_name" : "Gpnmb (pp) Cd52", "SUID" : 667110, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667105", "source" : "588639", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) 5033414D02Rik", "weight" : 0.524791445458, "name" : "Gpnmb (pp) 5033414D02Rik", "shared_name" : "Gpnmb (pp) 5033414D02Rik", "SUID" : 667105, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667113", "source" : "588639", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) 6330416G13Rik", "weight" : 0.463272662866, "name" : "Gpnmb (pp) 6330416G13Rik", "shared_name" : "Gpnmb (pp) 6330416G13Rik", "SUID" : 667113, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667191", "source" : "588639", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Btk", "weight" : 0.435568962439, "name" : "Gpnmb (pp) Btk", "shared_name" : "Gpnmb (pp) Btk", "SUID" : 667191, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667137", "source" : "588639", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Pla2g15", "weight" : 0.46402749578, "name" : "Gpnmb (pp) Pla2g15", "shared_name" : "Gpnmb (pp) Pla2g15", "SUID" : 667137, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667263", "source" : "588639", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Il10ra", "weight" : 0.475796678901, "name" : "Gpnmb (pp) Il10ra", "shared_name" : "Gpnmb (pp) Il10ra", "SUID" : 667263, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667128", "source" : "588639", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) 5430435G22Rik", "weight" : 0.402517996648, "name" : "Gpnmb (pp) 5430435G22Rik", "shared_name" : "Gpnmb (pp) 5430435G22Rik", "SUID" : 667128, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667251", "source" : "588639", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) C1qb", "weight" : 0.570028285307, "name" : "Gpnmb (pp) C1qb", "shared_name" : "Gpnmb (pp) C1qb", "SUID" : 667251, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667126", "source" : "588639", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Slc15a3", "weight" : 0.585764255153, "name" : "Gpnmb (pp) Slc15a3", "shared_name" : "Gpnmb (pp) Slc15a3", "SUID" : 667126, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667250", "source" : "588639", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Ly86", "weight" : 0.491208531807, "name" : "Gpnmb (pp) Ly86", "shared_name" : "Gpnmb (pp) Ly86", "SUID" : 667250, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667180", "source" : "588639", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Csrp1", "weight" : 0.603104087428, "name" : "Gpnmb (pp) Csrp1", "shared_name" : "Gpnmb (pp) Csrp1", "SUID" : 667180, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667145", "source" : "588639", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Fcer1g", "weight" : 0.59259383604, "name" : "Gpnmb (pp) Fcer1g", "shared_name" : "Gpnmb (pp) Fcer1g", "SUID" : 667145, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667232", "source" : "588639", "target" : "589256", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Timp1", "weight" : 0.515088576042, "name" : "Gpnmb (pp) Timp1", "shared_name" : "Gpnmb (pp) Timp1", "SUID" : 667232, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667147", "source" : "588639", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Fcgr3", "weight" : 0.491759529737, "name" : "Gpnmb (pp) Fcgr3", "shared_name" : "Gpnmb (pp) Fcgr3", "SUID" : 667147, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667162", "source" : "588639", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Cytip", "weight" : 0.61570863636, "name" : "Gpnmb (pp) Cytip", "shared_name" : "Gpnmb (pp) Cytip", "SUID" : 667162, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667130", "source" : "588639", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Tmem86a", "weight" : 0.560074106824, "name" : "Gpnmb (pp) Tmem86a", "shared_name" : "Gpnmb (pp) Tmem86a", "SUID" : 667130, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667116", "source" : "588639", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Axl", "weight" : 0.65153098186, "name" : "Gpnmb (pp) Axl", "shared_name" : "Gpnmb (pp) Axl", "SUID" : 667116, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667141", "source" : "588639", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Cotl1", "weight" : 0.689342421784, "name" : "Gpnmb (pp) Cotl1", "shared_name" : "Gpnmb (pp) Cotl1", "SUID" : 667141, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667227", "source" : "588639", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Ear10", "weight" : 0.44333757111, "name" : "Gpnmb (pp) Ear10", "shared_name" : "Gpnmb (pp) Ear10", "SUID" : 667227, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667120", "source" : "588639", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Vsig4", "weight" : 0.497741106822, "name" : "Gpnmb (pp) Vsig4", "shared_name" : "Gpnmb (pp) Vsig4", "SUID" : 667120, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667253", "source" : "588639", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Fblim1", "weight" : 0.453404450386, "name" : "Gpnmb (pp) Fblim1", "shared_name" : "Gpnmb (pp) Fblim1", "SUID" : 667253, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667231", "source" : "588639", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Trem2", "weight" : 0.726660685445, "name" : "Gpnmb (pp) Trem2", "shared_name" : "Gpnmb (pp) Trem2", "SUID" : 667231, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667203", "source" : "588639", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Vcam1", "weight" : 0.703127618837, "name" : "Gpnmb (pp) Vcam1", "shared_name" : "Gpnmb (pp) Vcam1", "SUID" : 667203, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667242", "source" : "588639", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Clec7a", "weight" : 0.677830451501, "name" : "Gpnmb (pp) Clec7a", "shared_name" : "Gpnmb (pp) Clec7a", "SUID" : 667242, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667223", "source" : "588639", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Serpinb6a", "weight" : 0.616917377119, "name" : "Gpnmb (pp) Serpinb6a", "shared_name" : "Gpnmb (pp) Serpinb6a", "SUID" : 667223, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667143", "source" : "588639", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Plac8", "weight" : 0.524751608572, "name" : "Gpnmb (pp) Plac8", "shared_name" : "Gpnmb (pp) Plac8", "SUID" : 667143, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667245", "source" : "588639", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Ear4", "weight" : 0.649926712881, "name" : "Gpnmb (pp) Ear4", "shared_name" : "Gpnmb (pp) Ear4", "SUID" : 667245, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667239", "source" : "588639", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Fcgr4", "weight" : 0.495415662942, "name" : "Gpnmb (pp) Fcgr4", "shared_name" : "Gpnmb (pp) Fcgr4", "SUID" : 667239, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667255", "source" : "588639", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Lrrc33", "weight" : 0.437989178488, "name" : "Gpnmb (pp) Lrrc33", "shared_name" : "Gpnmb (pp) Lrrc33", "SUID" : 667255, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667108", "source" : "588639", "target" : "588678", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Fxyd5", "weight" : 0.456547867784, "name" : "Gpnmb (pp) Fxyd5", "shared_name" : "Gpnmb (pp) Fxyd5", "SUID" : 667108, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667133", "source" : "588639", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Obrgrp", "weight" : 0.483079759098, "name" : "Gpnmb (pp) Obrgrp", "shared_name" : "Gpnmb (pp) Obrgrp", "SUID" : 667133, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667115", "source" : "588639", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Tlr2", "weight" : 0.424543388169, "name" : "Gpnmb (pp) Tlr2", "shared_name" : "Gpnmb (pp) Tlr2", "SUID" : 667115, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667207", "source" : "588639", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Tmsb4x", "weight" : 0.420546149597, "name" : "Gpnmb (pp) Tmsb4x", "shared_name" : "Gpnmb (pp) Tmsb4x", "SUID" : 667207, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667159", "source" : "588639", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) C1qc", "weight" : 0.456040494034, "name" : "Gpnmb (pp) C1qc", "shared_name" : "Gpnmb (pp) C1qc", "SUID" : 667159, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667192", "source" : "588639", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Cfp", "weight" : 0.476570071496, "name" : "Gpnmb (pp) Cfp", "shared_name" : "Gpnmb (pp) Cfp", "SUID" : 667192, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "667236", "source" : "588639", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gpnmb (pp) Abi3", "weight" : 0.462409682689, "name" : "Gpnmb (pp) Abi3", "shared_name" : "Gpnmb (pp) Abi3", "SUID" : 667236, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655242", "source" : "588432", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.551129945651, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Kcnk6 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 5.01999E-7, "weight" : 0.551129945651, "fusion" : "NA", "name" : "Kcnk6 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 975056.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Kcnk6 (pp) Ear4", "combinedscore" : "NA", "SUID" : 655242, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "655244", "source" : "588432", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kcnk6 (pp) Ly86", "weight" : 0.570912029407, "name" : "Kcnk6 (pp) Ly86", "shared_name" : "Kcnk6 (pp) Ly86", "SUID" : 655244, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655240", "source" : "588432", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kcnk6 (pp) Clec7a", "weight" : 0.419632732706, "name" : "Kcnk6 (pp) Clec7a", "shared_name" : "Kcnk6 (pp) Clec7a", "SUID" : 655240, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655150", "source" : "588432", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kcnk6 (pp) Cd86", "weight" : 0.494763899479, "name" : "Kcnk6 (pp) Cd86", "shared_name" : "Kcnk6 (pp) Cd86", "SUID" : 655150, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655239", "source" : "588432", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kcnk6 (pp) Cd53", "weight" : 0.424416891218, "name" : "Kcnk6 (pp) Cd53", "shared_name" : "Kcnk6 (pp) Cd53", "SUID" : 655239, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655201", "source" : "588432", "target" : "588999", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kcnk6 (pp) Kctd12", "weight" : 0.474435897824, "name" : "Kcnk6 (pp) Kctd12", "shared_name" : "Kcnk6 (pp) Kctd12", "SUID" : 655201, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655172", "source" : "588432", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kcnk6 (pp) Tpm4", "weight" : 0.532515553917, "name" : "Kcnk6 (pp) Tpm4", "shared_name" : "Kcnk6 (pp) Tpm4", "SUID" : 655172, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655170", "source" : "588432", "target" : "588727", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.401175797779, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Kcnk6 (pp) Axl", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 2.567667E-6, "weight" : 0.401175797779, "fusion" : "NA", "name" : "Kcnk6 (pp) Axl", "neighborhood" : "NA", "sourceEdge" : 974479.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Kcnk6 (pp) Axl", "combinedscore" : "NA", "SUID" : 655170, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "655189", "source" : "588432", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kcnk6 (pp) Fcer1g", "weight" : 0.463652568689, "name" : "Kcnk6 (pp) Fcer1g", "shared_name" : "Kcnk6 (pp) Fcer1g", "SUID" : 655189, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655204", "source" : "588432", "target" : "589005", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.530597632278, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Kcnk6 (pp) Csrp1", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 1.631325E-6, "weight" : 0.530597632278, "fusion" : "NA", "name" : "Kcnk6 (pp) Csrp1", "neighborhood" : "NA", "sourceEdge" : 974757.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Kcnk6 (pp) Csrp1", "combinedscore" : "NA", "SUID" : 655204, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "655155", "source" : "588432", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kcnk6 (pp) Slc11a1", "weight" : 0.513373949414, "name" : "Kcnk6 (pp) Slc11a1", "shared_name" : "Kcnk6 (pp) Slc11a1", "SUID" : 655155, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655235", "source" : "588432", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kcnk6 (pp) Abi3", "weight" : 0.405323979815, "name" : "Kcnk6 (pp) Abi3", "shared_name" : "Kcnk6 (pp) Abi3", "SUID" : 655235, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655236", "source" : "588432", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kcnk6 (pp) Ear12", "weight" : 0.491861845042, "name" : "Kcnk6 (pp) Ear12", "shared_name" : "Kcnk6 (pp) Ear12", "SUID" : 655236, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655192", "source" : "588432", "target" : "588886", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.56280970257, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Kcnk6 (pp) Lgals3", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 1.139454E-5, "weight" : 0.56280970257, "fusion" : "NA", "name" : "Kcnk6 (pp) Lgals3", "neighborhood" : "NA", "sourceEdge" : 974638.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Kcnk6 (pp) Lgals3", "combinedscore" : "NA", "SUID" : 655192, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "655165", "source" : "588432", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kcnk6 (pp) D12Ertd553e", "weight" : 0.483155554018, "name" : "Kcnk6 (pp) D12Ertd553e", "shared_name" : "Kcnk6 (pp) D12Ertd553e", "SUID" : 655165, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655237", "source" : "588432", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kcnk6 (pp) Fcgr4", "weight" : 0.415603814567, "name" : "Kcnk6 (pp) Fcgr4", "shared_name" : "Kcnk6 (pp) Fcgr4", "SUID" : 655237, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655188", "source" : "588432", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kcnk6 (pp) Plac8", "weight" : 0.471315578202, "name" : "Kcnk6 (pp) Plac8", "shared_name" : "Kcnk6 (pp) Plac8", "SUID" : 655188, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655196", "source" : "588432", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kcnk6 (pp) Hk3", "weight" : 0.411636210843, "name" : "Kcnk6 (pp) Hk3", "shared_name" : "Kcnk6 (pp) Hk3", "SUID" : 655196, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655142", "source" : "588432", "target" : "588472", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kcnk6 (pp) Ly9", "weight" : 0.497681041323, "name" : "Kcnk6 (pp) Ly9", "shared_name" : "Kcnk6 (pp) Ly9", "SUID" : 655142, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655164", "source" : "588432", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kcnk6 (pp) 5033414D02Rik", "weight" : 0.514570190837, "name" : "Kcnk6 (pp) 5033414D02Rik", "shared_name" : "Kcnk6 (pp) 5033414D02Rik", "SUID" : 655164, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655156", "source" : "588432", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kcnk6 (pp) Gngt2", "weight" : 0.494997570617, "name" : "Kcnk6 (pp) Gngt2", "shared_name" : "Kcnk6 (pp) Gngt2", "SUID" : 655156, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655145", "source" : "588432", "target" : "588492", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kcnk6 (pp) Ncf4", "weight" : 0.407737416478, "name" : "Kcnk6 (pp) Ncf4", "shared_name" : "Kcnk6 (pp) Ncf4", "SUID" : 655145, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655178", "source" : "588432", "target" : "588782", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.457777002171, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Kcnk6 (pp) Slc15a3", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 1.567065E-6, "weight" : 0.457777002171, "fusion" : "NA", "name" : "Kcnk6 (pp) Slc15a3", "neighborhood" : "NA", "sourceEdge" : 974534.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Kcnk6 (pp) Slc15a3", "combinedscore" : "NA", "SUID" : 655178, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "655153", "source" : "588432", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kcnk6 (pp) Coro1a", "weight" : 0.439791709549, "name" : "Kcnk6 (pp) Coro1a", "shared_name" : "Kcnk6 (pp) Coro1a", "SUID" : 655153, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655218", "source" : "588432", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kcnk6 (pp) Tmsb4x", "weight" : 0.524168325158, "name" : "Kcnk6 (pp) Tmsb4x", "shared_name" : "Kcnk6 (pp) Tmsb4x", "SUID" : 655218, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655144", "source" : "588432", "target" : "588490", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kcnk6 (pp) Arhgap30", "weight" : 0.454420117869, "name" : "Kcnk6 (pp) Arhgap30", "shared_name" : "Kcnk6 (pp) Arhgap30", "SUID" : 655144, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655208", "source" : "588432", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kcnk6 (pp) Cfp", "weight" : 0.536522292584, "name" : "Kcnk6 (pp) Cfp", "shared_name" : "Kcnk6 (pp) Cfp", "SUID" : 655208, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655173", "source" : "588432", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kcnk6 (pp) Vsig4", "weight" : 0.493539496702, "name" : "Kcnk6 (pp) Vsig4", "shared_name" : "Kcnk6 (pp) Vsig4", "SUID" : 655173, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655245", "source" : "588432", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kcnk6 (pp) C1qb", "weight" : 0.560093706483, "name" : "Kcnk6 (pp) C1qb", "shared_name" : "Kcnk6 (pp) C1qb", "SUID" : 655245, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655169", "source" : "588432", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kcnk6 (pp) Tlr2", "weight" : 0.490279318227, "name" : "Kcnk6 (pp) Tlr2", "shared_name" : "Kcnk6 (pp) Tlr2", "SUID" : 655169, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655221", "source" : "588432", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kcnk6 (pp) Rasgrp1", "weight" : 0.423316553458, "name" : "Kcnk6 (pp) Rasgrp1", "shared_name" : "Kcnk6 (pp) Rasgrp1", "SUID" : 655221, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655160", "source" : "588432", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kcnk6 (pp) Casp1", "weight" : 0.45771152649, "name" : "Kcnk6 (pp) Casp1", "shared_name" : "Kcnk6 (pp) Casp1", "SUID" : 655160, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655226", "source" : "588432", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Kcnk6 (pp) Serpinb6a", "weight" : 0.457776193748, "name" : "Kcnk6 (pp) Serpinb6a", "shared_name" : "Kcnk6 (pp) Serpinb6a", "SUID" : 655226, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655166", "source" : "588432", "target" : "588697", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.479471329269, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Kcnk6 (pp) Cd52", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 7.206898E-6, "weight" : 0.479471329269, "fusion" : "NA", "name" : "Kcnk6 (pp) Cd52", "neighborhood" : "NA", "sourceEdge" : 974449.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Kcnk6 (pp) Cd52", "combinedscore" : "NA", "SUID" : 655166, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "686261", "source" : "589284", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd53 (pp) Clec7a", "weight" : 0.52088277007, "name" : "Cd53 (pp) Clec7a", "shared_name" : "Cd53 (pp) Clec7a", "SUID" : 686261, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686269", "source" : "589284", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd53 (pp) C1qb", "weight" : 0.443984150895, "name" : "Cd53 (pp) C1qb", "shared_name" : "Cd53 (pp) C1qb", "SUID" : 686269, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686268", "source" : "589284", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd53 (pp) Ly86", "weight" : 0.625829236336, "name" : "Cd53 (pp) Ly86", "shared_name" : "Cd53 (pp) Ly86", "SUID" : 686268, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686263", "source" : "589284", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd53 (pp) Ear4", "weight" : 0.511262131158, "name" : "Cd53 (pp) Ear4", "shared_name" : "Cd53 (pp) Ear4", "SUID" : 686263, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "679612", "source" : "588952", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-DMb1 (pp) Csrp1", "weight" : 0.407713585533, "name" : "H2-DMb1 (pp) Csrp1", "shared_name" : "H2-DMb1 (pp) Csrp1", "SUID" : 679612, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "679629", "source" : "588952", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-DMb1 (pp) Fcgr4", "weight" : 0.534924676975, "name" : "H2-DMb1 (pp) Fcgr4", "shared_name" : "H2-DMb1 (pp) Fcgr4", "SUID" : 679629, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "679623", "source" : "588952", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-DMb1 (pp) H2-DMa", "weight" : 0.750426799963, "name" : "H2-DMb1 (pp) H2-DMa", "shared_name" : "H2-DMb1 (pp) H2-DMa", "SUID" : 679623, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "679616", "source" : "588952", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-DMb1 (pp) Pld4", "weight" : 0.412668918823, "name" : "H2-DMb1 (pp) Pld4", "shared_name" : "H2-DMb1 (pp) Pld4", "SUID" : 679616, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "679618", "source" : "588952", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-DMb1 (pp) Vcam1", "weight" : 0.478332755094, "name" : "H2-DMb1 (pp) Vcam1", "shared_name" : "H2-DMb1 (pp) Vcam1", "SUID" : 679618, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "679620", "source" : "588952", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-DMb1 (pp) Tmsb4x", "weight" : 0.49715720454, "name" : "H2-DMb1 (pp) Tmsb4x", "shared_name" : "H2-DMb1 (pp) Tmsb4x", "SUID" : 679620, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "679635", "source" : "588952", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-DMb1 (pp) C1qb", "weight" : 0.510964173916, "name" : "H2-DMb1 (pp) C1qb", "shared_name" : "H2-DMb1 (pp) C1qb", "SUID" : 679635, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "679631", "source" : "588952", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-DMb1 (pp) Clec7a", "weight" : 0.468987181398, "name" : "H2-DMb1 (pp) Clec7a", "shared_name" : "H2-DMb1 (pp) Clec7a", "SUID" : 679631, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "660040", "source" : "588517", "target" : "588927", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "kwalksFenofibratemagenta" : 6.245317E-4, "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.463762974344, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Rac2 (pp) Hk3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "extraFenofibratemagenta" : "FALSE", "weight" : 0.463762974344, "fusion" : "NA", "name" : "Rac2 (pp) Hk3", "neighborhood" : "NA", "sourceEdge" : 114417.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Rac2 (pp) Hk3", "combinedscore" : "NA", "SUID" : 660040, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "660009", "source" : "588517", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rac2 (pp) Cd86", "weight" : 0.402595427433, "name" : "Rac2 (pp) Cd86", "shared_name" : "Rac2 (pp) Cd86", "SUID" : 660009, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "660071", "source" : "588517", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "kwalksFenofibratemagenta" : 8.603865E-5, "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.444466669615, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Rac2 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "extraFenofibratemagenta" : "FALSE", "weight" : 0.444466669615, "fusion" : "NA", "name" : "Rac2 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 114446.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Rac2 (pp) Ear4", "combinedscore" : "NA", "SUID" : 660071, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "kwalksT0901317red" : 6.500488E-4, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.003865463, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "660046", "source" : "588517", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rac2 (pp) Csrp1", "weight" : 0.435978599605, "name" : "Rac2 (pp) Csrp1", "shared_name" : "Rac2 (pp) Csrp1", "SUID" : 660046, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "660069", "source" : "588517", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rac2 (pp) Fcgr4", "weight" : 0.465407211145, "name" : "Rac2 (pp) Fcgr4", "shared_name" : "Rac2 (pp) Fcgr4", "SUID" : 660069, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "660036", "source" : "588517", "target" : "588886", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "kwalksFenofibratemagenta" : 1.414624E-4, "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.447186981193, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Rac2 (pp) Lgals3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "extraFenofibratemagenta" : "FALSE", "weight" : 0.447186981193, "fusion" : "NA", "name" : "Rac2 (pp) Lgals3", "neighborhood" : "NA", "sourceEdge" : 114415.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Rac2 (pp) Lgals3", "combinedscore" : "NA", "SUID" : 660036, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "kwalksT0901317red" : 1.958239E-6, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 1.448301E-5, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "660012", "source" : "588517", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rac2 (pp) Coro1a", "weight" : 0.43292269601, "name" : "Rac2 (pp) Coro1a", "shared_name" : "Rac2 (pp) Coro1a", "SUID" : 660012, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "660021", "source" : "588517", "target" : "588697", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.461566032942, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Rac2 (pp) Cd52", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.461566032942, "fusion" : "NA", "name" : "Rac2 (pp) Cd52", "neighborhood" : "NA", "sourceEdge" : 114394.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Rac2 (pp) Cd52", "combinedscore" : "NA", "SUID" : 660021, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 6.353422E-4, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "660034", "source" : "588517", "target" : "588860", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "kwalksFenofibratemagenta" : 1.059576E-4, "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.573353692927, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Rac2 (pp) Fcer1g", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "extraFenofibratemagenta" : "FALSE", "weight" : 0.573353692927, "fusion" : "NA", "name" : "Rac2 (pp) Fcer1g", "neighborhood" : "NA", "sourceEdge" : 114413.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Rac2 (pp) Fcer1g", "combinedscore" : "NA", "SUID" : 660034, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "kwalksT0901317red" : 2.162692E-5, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.005034064, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "660055", "source" : "588517", "target" : "589113", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rac2 (pp) Ms4a7", "weight" : 0.425428323243, "name" : "Rac2 (pp) Ms4a7", "shared_name" : "Rac2 (pp) Ms4a7", "SUID" : 660055, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "660014", "source" : "588517", "target" : "588601", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.515768837249, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Rac2 (pp) Slc11a1", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.515768837249, "fusion" : "NA", "name" : "Rac2 (pp) Slc11a1", "neighborhood" : "NA", "sourceEdge" : 114384.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Rac2 (pp) Slc11a1", "combinedscore" : "NA", "SUID" : 660014, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 7.206818E-4, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "660013", "source" : "588517", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rac2 (pp) Tmsb10", "weight" : 0.487368686191, "name" : "Rac2 (pp) Tmsb10", "shared_name" : "Rac2 (pp) Tmsb10", "SUID" : 660013, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "660074", "source" : "588517", "target" : "589344", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.519229638362, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Rac2 (pp) C1qb", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.519229638362, "fusion" : "NA", "name" : "Rac2 (pp) C1qb", "neighborhood" : "NA", "sourceEdge" : 114449.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Rac2 (pp) C1qb", "combinedscore" : "NA", "SUID" : 660074, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 2.649816E-5, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "660033", "source" : "588517", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rac2 (pp) Plac8", "weight" : 0.451086967459, "name" : "Rac2 (pp) Plac8", "shared_name" : "Rac2 (pp) Plac8", "SUID" : 660033, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "660062", "source" : "588517", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rac2 (pp) Serpinb6a", "weight" : 0.449158213088, "name" : "Rac2 (pp) Serpinb6a", "shared_name" : "Rac2 (pp) Serpinb6a", "SUID" : 660062, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "660052", "source" : "588517", "target" : "589086", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "kwalksFenofibratemagenta" : 7.955806E-5, "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.404568388279, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Rac2 (pp) Cfp", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "extraFenofibratemagenta" : "FALSE", "weight" : 0.404568388279, "fusion" : "NA", "name" : "Rac2 (pp) Cfp", "neighborhood" : "NA", "sourceEdge" : 114426.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Rac2 (pp) Cfp", "combinedscore" : "NA", "SUID" : 660052, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.003749498, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "660073", "source" : "588517", "target" : "589335", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "kwalksFenofibratemagenta" : 8.973751E-5, "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.475824070559, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Rac2 (pp) Ly86", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "extraFenofibratemagenta" : "FALSE", "weight" : 0.475824070559, "fusion" : "NA", "name" : "Rac2 (pp) Ly86", "neighborhood" : "NA", "sourceEdge" : 114448.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Rac2 (pp) Ly86", "combinedscore" : "NA", "SUID" : 660073, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.004381782, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "660039", "source" : "588517", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rac2 (pp) C1qc", "weight" : 0.446716228879, "name" : "Rac2 (pp) C1qc", "shared_name" : "Rac2 (pp) C1qc", "SUID" : 660039, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "660020", "source" : "588517", "target" : "588664", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "kwalksFenofibratemagenta" : 8.923539E-5, "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.419366355607, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Rac2 (pp) 5033414D02Rik", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "extraFenofibratemagenta" : "FALSE", "weight" : 0.419366355607, "fusion" : "NA", "name" : "Rac2 (pp) 5033414D02Rik", "neighborhood" : "NA", "sourceEdge" : 114391.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Rac2 (pp) 5033414D02Rik", "combinedscore" : "NA", "SUID" : 660020, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.003954988, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "660028", "source" : "588517", "target" : "588782", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.467352780944, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Rac2 (pp) Slc15a3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.467352780944, "fusion" : "NA", "name" : "Rac2 (pp) Slc15a3", "neighborhood" : "NA", "sourceEdge" : 114405.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Rac2 (pp) Slc15a3", "combinedscore" : "NA", "SUID" : 660028, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 6.976707E-4, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "660015", "source" : "588517", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Rac2 (pp) Gngt2", "weight" : 0.460803972022, "name" : "Rac2 (pp) Gngt2", "shared_name" : "Rac2 (pp) Gngt2", "SUID" : 660015, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595409", "source" : "587756", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lilrb4 (pp) Cxcl16", "weight" : 0.500459796301, "name" : "Lilrb4 (pp) Cxcl16", "shared_name" : "Lilrb4 (pp) Cxcl16", "SUID" : 595409, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595374", "source" : "587756", "target" : "587807", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lilrb4 (pp) Evi2a", "weight" : 0.447166768903, "name" : "Lilrb4 (pp) Evi2a", "shared_name" : "Lilrb4 (pp) Evi2a", "SUID" : 595374, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595380", "source" : "587756", "target" : "587855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lilrb4 (pp) Pkm2", "weight" : 0.404657751595, "name" : "Lilrb4 (pp) Pkm2", "shared_name" : "Lilrb4 (pp) Pkm2", "SUID" : 595380, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595417", "source" : "587756", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lilrb4 (pp) Clec4n", "weight" : 0.483484302602, "name" : "Lilrb4 (pp) Clec4n", "shared_name" : "Lilrb4 (pp) Clec4n", "SUID" : 595417, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595378", "source" : "587756", "target" : "587844", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lilrb4 (pp) Ear2", "weight" : 0.423436275194, "name" : "Lilrb4 (pp) Ear2", "shared_name" : "Lilrb4 (pp) Ear2", "SUID" : 595378, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595428", "source" : "587756", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lilrb4 (pp) Coro1a", "weight" : 0.401460751879, "name" : "Lilrb4 (pp) Coro1a", "shared_name" : "Lilrb4 (pp) Coro1a", "SUID" : 595428, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595454", "source" : "587756", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lilrb4 (pp) C1qc", "weight" : 0.483310138329, "name" : "Lilrb4 (pp) C1qc", "shared_name" : "Lilrb4 (pp) C1qc", "SUID" : 595454, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595475", "source" : "587756", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lilrb4 (pp) Fcgr4", "weight" : 0.464393768494, "name" : "Lilrb4 (pp) Fcgr4", "shared_name" : "Lilrb4 (pp) Fcgr4", "SUID" : 595475, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595448", "source" : "587756", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lilrb4 (pp) Plac8", "weight" : 0.418396532384, "name" : "Lilrb4 (pp) Plac8", "shared_name" : "Lilrb4 (pp) Plac8", "SUID" : 595448, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595405", "source" : "587756", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lilrb4 (pp) Sdc3", "weight" : 0.472608017595, "name" : "Lilrb4 (pp) Sdc3", "shared_name" : "Lilrb4 (pp) Sdc3", "SUID" : 595405, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595449", "source" : "587756", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lilrb4 (pp) Fcer1g", "weight" : 0.414621007699, "name" : "Lilrb4 (pp) Fcer1g", "shared_name" : "Lilrb4 (pp) Fcer1g", "SUID" : 595449, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595444", "source" : "587756", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lilrb4 (pp) Slc15a3", "weight" : 0.407128179225, "name" : "Lilrb4 (pp) Slc15a3", "shared_name" : "Lilrb4 (pp) Slc15a3", "SUID" : 595444, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595431", "source" : "587756", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lilrb4 (pp) Gngt2", "weight" : 0.409045008583, "name" : "Lilrb4 (pp) Gngt2", "shared_name" : "Lilrb4 (pp) Gngt2", "SUID" : 595431, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595456", "source" : "587756", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lilrb4 (pp) Cytip", "weight" : 0.415992614261, "name" : "Lilrb4 (pp) Cytip", "shared_name" : "Lilrb4 (pp) Cytip", "SUID" : 595456, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595442", "source" : "587756", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lilrb4 (pp) Axl", "weight" : 0.407379245248, "name" : "Lilrb4 (pp) Axl", "shared_name" : "Lilrb4 (pp) Axl", "SUID" : 595442, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595478", "source" : "587756", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lilrb4 (pp) Ear4", "weight" : 0.473050293955, "name" : "Lilrb4 (pp) Ear4", "shared_name" : "Lilrb4 (pp) Ear4", "SUID" : 595478, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595481", "source" : "587756", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lilrb4 (pp) C1qb", "weight" : 0.455381645049, "name" : "Lilrb4 (pp) C1qb", "shared_name" : "Lilrb4 (pp) C1qb", "SUID" : 595481, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595443", "source" : "587756", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lilrb4 (pp) Vsig4", "weight" : 0.402373585732, "name" : "Lilrb4 (pp) Vsig4", "shared_name" : "Lilrb4 (pp) Vsig4", "SUID" : 595443, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595480", "source" : "587756", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lilrb4 (pp) Ly86", "weight" : 0.412417579387, "name" : "Lilrb4 (pp) Ly86", "shared_name" : "Lilrb4 (pp) Ly86", "SUID" : 595480, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595430", "source" : "587756", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lilrb4 (pp) Slc11a1", "weight" : 0.424242234798, "name" : "Lilrb4 (pp) Slc11a1", "shared_name" : "Lilrb4 (pp) Slc11a1", "SUID" : 595430, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595468", "source" : "587756", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lilrb4 (pp) Serpinb6a", "weight" : 0.4133366711, "name" : "Lilrb4 (pp) Serpinb6a", "shared_name" : "Lilrb4 (pp) Serpinb6a", "SUID" : 595468, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595438", "source" : "587756", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lilrb4 (pp) Cd52", "weight" : 0.470156761059, "name" : "Lilrb4 (pp) Cd52", "shared_name" : "Lilrb4 (pp) Cd52", "SUID" : 595438, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595461", "source" : "587756", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lilrb4 (pp) Csrp1", "weight" : 0.463381501649, "name" : "Lilrb4 (pp) Csrp1", "shared_name" : "Lilrb4 (pp) Csrp1", "SUID" : 595461, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595381", "source" : "587756", "target" : "587857", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lilrb4 (pp) Lgmn", "weight" : 0.423391372745, "name" : "Lilrb4 (pp) Lgmn", "shared_name" : "Lilrb4 (pp) Lgmn", "SUID" : 595381, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595451", "source" : "587756", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lilrb4 (pp) Lgals3", "weight" : 0.478473460232, "name" : "Lilrb4 (pp) Lgals3", "shared_name" : "Lilrb4 (pp) Lgals3", "SUID" : 595451, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "595384", "source" : "587756", "target" : "587966", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lilrb4 (pp) Cyba", "weight" : 0.471658612937, "name" : "Lilrb4 (pp) Cyba", "shared_name" : "Lilrb4 (pp) Cyba", "SUID" : 595384, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676118", "source" : "588855", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plac8 (pp) Hk3", "weight" : 0.613529436262, "name" : "Plac8 (pp) Hk3", "shared_name" : "Plac8 (pp) Hk3", "SUID" : 676118, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676188", "source" : "588855", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plac8 (pp) Ear4", "weight" : 0.700624619611, "name" : "Plac8 (pp) Ear4", "shared_name" : "Plac8 (pp) Ear4", "SUID" : 676188, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676119", "source" : "588855", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plac8 (pp) Cytip", "weight" : 0.544094309554, "name" : "Plac8 (pp) Cytip", "shared_name" : "Plac8 (pp) Cytip", "SUID" : 676119, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676190", "source" : "588855", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plac8 (pp) Prkcd", "weight" : 0.415852958402, "name" : "Plac8 (pp) Prkcd", "shared_name" : "Plac8 (pp) Prkcd", "SUID" : 676190, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676183", "source" : "588855", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plac8 (pp) Fcgr4", "weight" : 0.684779154074, "name" : "Plac8 (pp) Fcgr4", "shared_name" : "Plac8 (pp) Fcgr4", "SUID" : 676183, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676197", "source" : "588855", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plac8 (pp) Lrrc33", "weight" : 0.457640971664, "name" : "Plac8 (pp) Lrrc33", "shared_name" : "Plac8 (pp) Lrrc33", "SUID" : 676197, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676139", "source" : "588855", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plac8 (pp) Cfp", "weight" : 0.595549596367, "name" : "Plac8 (pp) Cfp", "shared_name" : "Plac8 (pp) Cfp", "SUID" : 676139, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676149", "source" : "588855", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plac8 (pp) Vcam1", "weight" : 0.678366014799, "name" : "Plac8 (pp) Vcam1", "shared_name" : "Plac8 (pp) Vcam1", "SUID" : 676149, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676176", "source" : "588855", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plac8 (pp) Trem2", "weight" : 0.422967242806, "name" : "Plac8 (pp) Trem2", "shared_name" : "Plac8 (pp) Trem2", "SUID" : 676176, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676169", "source" : "588855", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plac8 (pp) Serpinb6a", "weight" : 0.605615332254, "name" : "Plac8 (pp) Serpinb6a", "shared_name" : "Plac8 (pp) Serpinb6a", "SUID" : 676169, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676193", "source" : "588855", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plac8 (pp) C1qb", "weight" : 0.667344335248, "name" : "Plac8 (pp) C1qb", "shared_name" : "Plac8 (pp) C1qb", "SUID" : 676193, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676180", "source" : "588855", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plac8 (pp) Abi3", "weight" : 0.416257402416, "name" : "Plac8 (pp) Abi3", "shared_name" : "Plac8 (pp) Abi3", "SUID" : 676180, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676104", "source" : "588855", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plac8 (pp) Fcgr3", "weight" : 0.444319242691, "name" : "Plac8 (pp) Fcgr3", "shared_name" : "Plac8 (pp) Fcgr3", "SUID" : 676104, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676158", "source" : "588855", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plac8 (pp) Rasgrp1", "weight" : 0.441329907678, "name" : "Plac8 (pp) Rasgrp1", "shared_name" : "Plac8 (pp) Rasgrp1", "SUID" : 676158, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676186", "source" : "588855", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plac8 (pp) Clec7a", "weight" : 0.487176370701, "name" : "Plac8 (pp) Clec7a", "shared_name" : "Plac8 (pp) Clec7a", "SUID" : 676186, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676143", "source" : "588855", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plac8 (pp) Snx10", "weight" : 0.426826737078, "name" : "Plac8 (pp) Snx10", "shared_name" : "Plac8 (pp) Snx10", "SUID" : 676143, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676153", "source" : "588855", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plac8 (pp) Tmsb4x", "weight" : 0.571617670492, "name" : "Plac8 (pp) Tmsb4x", "shared_name" : "Plac8 (pp) Tmsb4x", "SUID" : 676153, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676185", "source" : "588855", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plac8 (pp) Cd53", "weight" : 0.588204491963, "name" : "Plac8 (pp) Cd53", "shared_name" : "Plac8 (pp) Cd53", "SUID" : 676185, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676116", "source" : "588855", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plac8 (pp) C1qc", "weight" : 0.562198338999, "name" : "Plac8 (pp) C1qc", "shared_name" : "Plac8 (pp) C1qc", "SUID" : 676116, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676196", "source" : "588855", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plac8 (pp) Tspan33", "weight" : 0.434233587351, "name" : "Plac8 (pp) Tspan33", "shared_name" : "Plac8 (pp) Tspan33", "SUID" : 676196, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676132", "source" : "588855", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plac8 (pp) Csrp1", "weight" : 0.697872118354, "name" : "Plac8 (pp) Csrp1", "shared_name" : "Plac8 (pp) Csrp1", "SUID" : 676132, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676137", "source" : "588855", "target" : "589076", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plac8 (pp) H2-M3", "weight" : 0.424763758085, "name" : "Plac8 (pp) H2-M3", "shared_name" : "Plac8 (pp) H2-M3", "SUID" : 676137, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676192", "source" : "588855", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plac8 (pp) Ly86", "weight" : 0.704642698123, "name" : "Plac8 (pp) Ly86", "shared_name" : "Plac8 (pp) Ly86", "SUID" : 676192, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676109", "source" : "588855", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plac8 (pp) Lgals3", "weight" : 0.701998505994, "name" : "Plac8 (pp) Lgals3", "shared_name" : "Plac8 (pp) Lgals3", "SUID" : 676109, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676103", "source" : "588855", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plac8 (pp) Fcer1g", "weight" : 0.664677422745, "name" : "Plac8 (pp) Fcer1g", "shared_name" : "Plac8 (pp) Fcer1g", "SUID" : 676103, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676181", "source" : "588855", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plac8 (pp) Ear12", "weight" : 0.522241724256, "name" : "Plac8 (pp) Ear12", "shared_name" : "Plac8 (pp) Ear12", "SUID" : 676181, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676173", "source" : "588855", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plac8 (pp) Ear10", "weight" : 0.571582214661, "name" : "Plac8 (pp) Ear10", "shared_name" : "Plac8 (pp) Ear10", "SUID" : 676173, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676129", "source" : "588855", "target" : "588999", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plac8 (pp) Kctd12", "weight" : 0.4026744411, "name" : "Plac8 (pp) Kctd12", "shared_name" : "Plac8 (pp) Kctd12", "SUID" : 676129, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676172", "source" : "588855", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plac8 (pp) H2-DMa", "weight" : 0.535719951804, "name" : "Plac8 (pp) H2-DMa", "shared_name" : "Plac8 (pp) H2-DMa", "SUID" : 676172, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673622", "source" : "588789", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Cfp", "weight" : 0.602813069128, "name" : "Tmem86a (pp) Cfp", "shared_name" : "Tmem86a (pp) Cfp", "SUID" : 673622, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673611", "source" : "588789", "target" : "589030", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Soat1", "weight" : 0.470076774689, "name" : "Tmem86a (pp) Soat1", "shared_name" : "Tmem86a (pp) Soat1", "SUID" : 673611, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673575", "source" : "588789", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Fcer1g", "weight" : 0.535540897131, "name" : "Tmem86a (pp) Fcer1g", "shared_name" : "Tmem86a (pp) Fcer1g", "SUID" : 673575, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673652", "source" : "588789", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Serpinb6a", "weight" : 0.688053849274, "name" : "Tmem86a (pp) Serpinb6a", "shared_name" : "Tmem86a (pp) Serpinb6a", "SUID" : 673652, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673657", "source" : "588789", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Ear10", "weight" : 0.641842170318, "name" : "Tmem86a (pp) Ear10", "shared_name" : "Tmem86a (pp) Ear10", "SUID" : 673657, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673642", "source" : "588789", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Rasgrp1", "weight" : 0.451797367205, "name" : "Tmem86a (pp) Rasgrp1", "shared_name" : "Tmem86a (pp) Rasgrp1", "SUID" : 673642, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673632", "source" : "588789", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Vcam1", "weight" : 0.636178235085, "name" : "Tmem86a (pp) Vcam1", "shared_name" : "Tmem86a (pp) Vcam1", "SUID" : 673632, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673610", "source" : "588789", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Csrp1", "weight" : 0.636991152032, "name" : "Tmem86a (pp) Csrp1", "shared_name" : "Tmem86a (pp) Csrp1", "SUID" : 673610, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673573", "source" : "588789", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Plac8", "weight" : 0.55004400457, "name" : "Tmem86a (pp) Plac8", "shared_name" : "Tmem86a (pp) Plac8", "SUID" : 673573, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673664", "source" : "588789", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Ppif", "weight" : 0.644732619264, "name" : "Tmem86a (pp) Ppif", "shared_name" : "Tmem86a (pp) Ppif", "SUID" : 673664, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673662", "source" : "588789", "target" : "589256", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Timp1", "weight" : 0.473044685194, "name" : "Tmem86a (pp) Timp1", "shared_name" : "Tmem86a (pp) Timp1", "SUID" : 673662, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673681", "source" : "588789", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Ly86", "weight" : 0.5735714947, "name" : "Tmem86a (pp) Ly86", "shared_name" : "Tmem86a (pp) Ly86", "SUID" : 673681, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673684", "source" : "588789", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Fblim1", "weight" : 0.407408661834, "name" : "Tmem86a (pp) Fblim1", "shared_name" : "Tmem86a (pp) Fblim1", "SUID" : 673684, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673682", "source" : "588789", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) C1qb", "weight" : 0.552500929063, "name" : "Tmem86a (pp) C1qb", "shared_name" : "Tmem86a (pp) C1qb", "SUID" : 673682, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673695", "source" : "588789", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Il10ra", "weight" : 0.403452618635, "name" : "Tmem86a (pp) Il10ra", "shared_name" : "Tmem86a (pp) Il10ra", "SUID" : 673695, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673564", "source" : "588789", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Pla2g15", "weight" : 0.596971050414, "name" : "Tmem86a (pp) Pla2g15", "shared_name" : "Tmem86a (pp) Pla2g15", "SUID" : 673564, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673666", "source" : "588789", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Ear12", "weight" : 0.599019453994, "name" : "Tmem86a (pp) Ear12", "shared_name" : "Tmem86a (pp) Ear12", "SUID" : 673666, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673628", "source" : "588789", "target" : "589102", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Gja1", "weight" : 0.472378900412, "name" : "Tmem86a (pp) Gja1", "shared_name" : "Tmem86a (pp) Gja1", "SUID" : 673628, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673665", "source" : "588789", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Abi3", "weight" : 0.571843557472, "name" : "Tmem86a (pp) Abi3", "shared_name" : "Tmem86a (pp) Abi3", "SUID" : 673665, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673670", "source" : "588789", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Cd53", "weight" : 0.415087614085, "name" : "Tmem86a (pp) Cd53", "shared_name" : "Tmem86a (pp) Cd53", "SUID" : 673670, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673569", "source" : "588789", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Cotl1", "weight" : 0.712544556649, "name" : "Tmem86a (pp) Cotl1", "shared_name" : "Tmem86a (pp) Cotl1", "SUID" : 673569, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673671", "source" : "588789", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Clec7a", "weight" : 0.585204231291, "name" : "Tmem86a (pp) Clec7a", "shared_name" : "Tmem86a (pp) Clec7a", "SUID" : 673671, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673626", "source" : "588789", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Snx10", "weight" : 0.520313159835, "name" : "Tmem86a (pp) Snx10", "shared_name" : "Tmem86a (pp) Snx10", "SUID" : 673626, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673584", "source" : "588789", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Lgals3", "weight" : 0.765178826676, "name" : "Tmem86a (pp) Lgals3", "shared_name" : "Tmem86a (pp) Lgals3", "SUID" : 673584, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673621", "source" : "588789", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Btk", "weight" : 0.405365342523, "name" : "Tmem86a (pp) Btk", "shared_name" : "Tmem86a (pp) Btk", "SUID" : 673621, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673560", "source" : "588789", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Obrgrp", "weight" : 0.50118594413, "name" : "Tmem86a (pp) Obrgrp", "shared_name" : "Tmem86a (pp) Obrgrp", "SUID" : 673560, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673676", "source" : "588789", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Ear4", "weight" : 0.761554754747, "name" : "Tmem86a (pp) Ear4", "shared_name" : "Tmem86a (pp) Ear4", "SUID" : 673676, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673595", "source" : "588789", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Cytip", "weight" : 0.478471134517, "name" : "Tmem86a (pp) Cytip", "shared_name" : "Tmem86a (pp) Cytip", "SUID" : 673595, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673660", "source" : "588789", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Trem2", "weight" : 0.634318991798, "name" : "Tmem86a (pp) Trem2", "shared_name" : "Tmem86a (pp) Trem2", "SUID" : 673660, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673685", "source" : "588789", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Tspan33", "weight" : 0.540915990746, "name" : "Tmem86a (pp) Tspan33", "shared_name" : "Tmem86a (pp) Tspan33", "SUID" : 673685, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673667", "source" : "588789", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) Fcgr4", "weight" : 0.578821825095, "name" : "Tmem86a (pp) Fcgr4", "shared_name" : "Tmem86a (pp) Fcgr4", "SUID" : 673667, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673654", "source" : "588789", "target" : "589225", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmem86a (pp) St6gal1", "weight" : 0.461631583594, "name" : "Tmem86a (pp) St6gal1", "shared_name" : "Tmem86a (pp) St6gal1", "SUID" : 673654, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681102", "source" : "589005", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Csrp1 (pp) Fcgr4", "weight" : 0.611828560524, "name" : "Csrp1 (pp) Fcgr4", "shared_name" : "Csrp1 (pp) Fcgr4", "SUID" : 681102, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681107", "source" : "589005", "target" : "589304", "homology" : "NA", "shared_interaction" : "NA", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.735033495015, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Csrp1 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 6.229E-9, "weight" : 0.735033495015, "fusion" : "NA", "name" : "Csrp1 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 147526.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Csrp1 (pp) Ear4", "combinedscore" : "NA", "SUID" : 681107, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "NA", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "681087", "source" : "589005", "target" : "589225", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Csrp1 (pp) St6gal1", "weight" : 0.464722778544, "name" : "Csrp1 (pp) St6gal1", "shared_name" : "Csrp1 (pp) St6gal1", "SUID" : 681087, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681064", "source" : "589005", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Csrp1 (pp) Vcam1", "weight" : 0.702988393622, "name" : "Csrp1 (pp) Vcam1", "shared_name" : "Csrp1 (pp) Vcam1", "SUID" : 681064, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681058", "source" : "589005", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Csrp1 (pp) Snx10", "weight" : 0.555593568181, "name" : "Csrp1 (pp) Snx10", "shared_name" : "Csrp1 (pp) Snx10", "SUID" : 681058, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681105", "source" : "589005", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Csrp1 (pp) Clec7a", "weight" : 0.595295664614, "name" : "Csrp1 (pp) Clec7a", "shared_name" : "Csrp1 (pp) Clec7a", "SUID" : 681105, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681116", "source" : "589005", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Csrp1 (pp) Tspan33", "weight" : 0.466496616699, "name" : "Csrp1 (pp) Tspan33", "shared_name" : "Csrp1 (pp) Tspan33", "SUID" : 681116, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681060", "source" : "589005", "target" : "589102", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Csrp1 (pp) Gja1", "weight" : 0.469635393468, "name" : "Csrp1 (pp) Gja1", "shared_name" : "Csrp1 (pp) Gja1", "SUID" : 681060, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681068", "source" : "589005", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Csrp1 (pp) Tmsb4x", "weight" : 0.680155173651, "name" : "Csrp1 (pp) Tmsb4x", "shared_name" : "Csrp1 (pp) Tmsb4x", "SUID" : 681068, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681053", "source" : "589005", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Csrp1 (pp) Cfp", "weight" : 0.592976350049, "name" : "Csrp1 (pp) Cfp", "shared_name" : "Csrp1 (pp) Cfp", "SUID" : 681053, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681094", "source" : "589005", "target" : "589256", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Csrp1 (pp) Timp1", "weight" : 0.526019998035, "name" : "Csrp1 (pp) Timp1", "shared_name" : "Csrp1 (pp) Timp1", "SUID" : 681094, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681089", "source" : "589005", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Csrp1 (pp) H2-DMa", "weight" : 0.446900904177, "name" : "Csrp1 (pp) H2-DMa", "shared_name" : "Csrp1 (pp) H2-DMa", "SUID" : 681089, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681104", "source" : "589005", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Csrp1 (pp) Cd53", "weight" : 0.530557363703, "name" : "Csrp1 (pp) Cd53", "shared_name" : "Csrp1 (pp) Cd53", "SUID" : 681104, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681062", "source" : "589005", "target" : "589113", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Csrp1 (pp) Ms4a7", "weight" : 0.486716415416, "name" : "Csrp1 (pp) Ms4a7", "shared_name" : "Csrp1 (pp) Ms4a7", "SUID" : 681062, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681110", "source" : "589005", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Csrp1 (pp) Prkcd", "weight" : 0.498329655706, "name" : "Csrp1 (pp) Prkcd", "shared_name" : "Csrp1 (pp) Prkcd", "SUID" : 681110, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681090", "source" : "589005", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Csrp1 (pp) Ear10", "weight" : 0.527795365023, "name" : "Csrp1 (pp) Ear10", "shared_name" : "Csrp1 (pp) Ear10", "SUID" : 681090, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681113", "source" : "589005", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Csrp1 (pp) C1qb", "weight" : 0.624778076378, "name" : "Csrp1 (pp) C1qb", "shared_name" : "Csrp1 (pp) C1qb", "SUID" : 681113, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681115", "source" : "589005", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Csrp1 (pp) Fblim1", "weight" : 0.543300011185, "name" : "Csrp1 (pp) Fblim1", "shared_name" : "Csrp1 (pp) Fblim1", "SUID" : 681115, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681073", "source" : "589005", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Csrp1 (pp) Rasgrp1", "weight" : 0.441361566673, "name" : "Csrp1 (pp) Rasgrp1", "shared_name" : "Csrp1 (pp) Rasgrp1", "SUID" : 681073, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681085", "source" : "589005", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Csrp1 (pp) Serpinb6a", "weight" : 0.679964614152, "name" : "Csrp1 (pp) Serpinb6a", "shared_name" : "Csrp1 (pp) Serpinb6a", "SUID" : 681085, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681100", "source" : "589005", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Csrp1 (pp) Ear12", "weight" : 0.651402834537, "name" : "Csrp1 (pp) Ear12", "shared_name" : "Csrp1 (pp) Ear12", "SUID" : 681100, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681041", "source" : "589005", "target" : "589030", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Csrp1 (pp) Soat1", "weight" : 0.473035617383, "name" : "Csrp1 (pp) Soat1", "shared_name" : "Csrp1 (pp) Soat1", "SUID" : 681041, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681051", "source" : "589005", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Csrp1 (pp) Btk", "weight" : 0.486711020059, "name" : "Csrp1 (pp) Btk", "shared_name" : "Csrp1 (pp) Btk", "SUID" : 681051, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681112", "source" : "589005", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Csrp1 (pp) Ly86", "weight" : 0.642563620562, "name" : "Csrp1 (pp) Ly86", "shared_name" : "Csrp1 (pp) Ly86", "SUID" : 681112, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681098", "source" : "589005", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Csrp1 (pp) Abi3", "weight" : 0.447012773395, "name" : "Csrp1 (pp) Abi3", "shared_name" : "Csrp1 (pp) Abi3", "SUID" : 681098, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681096", "source" : "589005", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Csrp1 (pp) Ppif", "weight" : 0.428533923057, "name" : "Csrp1 (pp) Ppif", "shared_name" : "Csrp1 (pp) Ppif", "SUID" : 681096, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "681093", "source" : "589005", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Csrp1 (pp) Trem2", "weight" : 0.555266586165, "name" : "Csrp1 (pp) Trem2", "shared_name" : "Csrp1 (pp) Trem2", "SUID" : 681093, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617084", "source" : "587982", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Cytip", "weight" : 0.500393629075, "name" : "Plekho2 (pp) Cytip", "shared_name" : "Plekho2 (pp) Cytip", "SUID" : 617084, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617140", "source" : "587982", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Clec7a", "weight" : 0.431955695358, "name" : "Plekho2 (pp) Clec7a", "shared_name" : "Plekho2 (pp) Clec7a", "SUID" : 617140, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617066", "source" : "587982", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Obrgrp", "weight" : 0.522094009262, "name" : "Plekho2 (pp) Obrgrp", "shared_name" : "Plekho2 (pp) Obrgrp", "SUID" : 617066, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617114", "source" : "587982", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Tmsb4x", "weight" : 0.685257145721, "name" : "Plekho2 (pp) Tmsb4x", "shared_name" : "Plekho2 (pp) Tmsb4x", "SUID" : 617114, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616948", "source" : "587982", "target" : "588147", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Ppic", "weight" : 0.44969806625, "name" : "Plekho2 (pp) Ppic", "shared_name" : "Plekho2 (pp) Ppic", "SUID" : 616948, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617017", "source" : "587982", "target" : "588512", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) H2-Eb1", "weight" : 0.441359008954, "name" : "Plekho2 (pp) H2-Eb1", "shared_name" : "Plekho2 (pp) H2-Eb1", "SUID" : 617017, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617071", "source" : "587982", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Plac8", "weight" : 0.555095398005, "name" : "Plekho2 (pp) Plac8", "shared_name" : "Plekho2 (pp) Plac8", "SUID" : 617071, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616973", "source" : "587982", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Ms4a6d", "weight" : 0.630049780428, "name" : "Plekho2 (pp) Ms4a6d", "shared_name" : "Plekho2 (pp) Ms4a6d", "SUID" : 616973, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617134", "source" : "587982", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Abi3", "weight" : 0.486254537464, "name" : "Plekho2 (pp) Abi3", "shared_name" : "Plekho2 (pp) Abi3", "SUID" : 617134, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617094", "source" : "587982", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Csrp1", "weight" : 0.611798540167, "name" : "Plekho2 (pp) Csrp1", "shared_name" : "Plekho2 (pp) Csrp1", "SUID" : 617094, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617032", "source" : "587982", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Slc11a1", "weight" : 0.667038410744, "name" : "Plekho2 (pp) Slc11a1", "shared_name" : "Plekho2 (pp) Slc11a1", "SUID" : 617032, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617074", "source" : "587982", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Fcgr3", "weight" : 0.403959123738, "name" : "Plekho2 (pp) Fcgr3", "shared_name" : "Plekho2 (pp) Fcgr3", "SUID" : 617074, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617024", "source" : "587982", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Cd86", "weight" : 0.574516693764, "name" : "Plekho2 (pp) Cd86", "shared_name" : "Plekho2 (pp) Cd86", "SUID" : 617024, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617144", "source" : "587982", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Prkcd", "weight" : 0.477291965834, "name" : "Plekho2 (pp) Prkcd", "shared_name" : "Plekho2 (pp) Prkcd", "SUID" : 617144, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617044", "source" : "587982", "target" : "588664", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.601002178459, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Plekho2 (pp) 5033414D02Rik", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.601002178459, "fusion" : "NA", "name" : "Plekho2 (pp) 5033414D02Rik", "neighborhood" : "NA", "sourceEdge" : 46851.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Plekho2 (pp) 5033414D02Rik", "combinedscore" : "NA", "SUID" : 617044, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 1.09484E-7, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "616983", "source" : "587982", "target" : "588335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Arpc1b", "weight" : 0.413906565426, "name" : "Plekho2 (pp) Arpc1b", "shared_name" : "Plekho2 (pp) Arpc1b", "SUID" : 616983, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617035", "source" : "587982", "target" : "588608", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Treml4", "weight" : 0.520150564725, "name" : "Plekho2 (pp) Treml4", "shared_name" : "Plekho2 (pp) Treml4", "SUID" : 617035, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617056", "source" : "587982", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Tpm4", "weight" : 0.559609421558, "name" : "Plekho2 (pp) Tpm4", "shared_name" : "Plekho2 (pp) Tpm4", "SUID" : 617056, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617146", "source" : "587982", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) C1qb", "weight" : 0.77999295189, "name" : "Plekho2 (pp) C1qb", "shared_name" : "Plekho2 (pp) C1qb", "SUID" : 617146, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617073", "source" : "587982", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Fcer1g", "weight" : 0.690186567865, "name" : "Plekho2 (pp) Fcer1g", "shared_name" : "Plekho2 (pp) Fcer1g", "SUID" : 617073, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617034", "source" : "587982", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Gngt2", "weight" : 0.565045206557, "name" : "Plekho2 (pp) Gngt2", "shared_name" : "Plekho2 (pp) Gngt2", "SUID" : 617034, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617052", "source" : "587982", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Serpina3g", "weight" : 0.50020968226, "name" : "Plekho2 (pp) Serpina3g", "shared_name" : "Plekho2 (pp) Serpina3g", "SUID" : 617052, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617053", "source" : "587982", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Tlr2", "weight" : 0.553981685576, "name" : "Plekho2 (pp) Tlr2", "shared_name" : "Plekho2 (pp) Tlr2", "SUID" : 617053, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617002", "source" : "587982", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Clec4n", "weight" : 0.736024576598, "name" : "Plekho2 (pp) Clec4n", "shared_name" : "Plekho2 (pp) Clec4n", "SUID" : 617002, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616959", "source" : "587982", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Laptm5", "weight" : 0.515562353641, "name" : "Plekho2 (pp) Laptm5", "shared_name" : "Plekho2 (pp) Laptm5", "SUID" : 616959, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616963", "source" : "587982", "target" : "588244", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Gltp", "weight" : 0.581241872757, "name" : "Plekho2 (pp) Gltp", "shared_name" : "Plekho2 (pp) Gltp", "SUID" : 616963, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617147", "source" : "587982", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Fblim1", "weight" : 0.551046108236, "name" : "Plekho2 (pp) Fblim1", "shared_name" : "Plekho2 (pp) Fblim1", "SUID" : 617147, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616992", "source" : "587982", "target" : "588365", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Tnfaip8l2", "weight" : 0.465066844513, "name" : "Plekho2 (pp) Tnfaip8l2", "shared_name" : "Plekho2 (pp) Tnfaip8l2", "SUID" : 616992, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617145", "source" : "587982", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Ly86", "weight" : 0.57848557, "name" : "Plekho2 (pp) Ly86", "shared_name" : "Plekho2 (pp) Ly86", "SUID" : 617145, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617054", "source" : "587982", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Axl", "weight" : 0.478621290926, "name" : "Plekho2 (pp) Axl", "shared_name" : "Plekho2 (pp) Axl", "SUID" : 617054, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617065", "source" : "587982", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Tmem86a", "weight" : 0.437592627917, "name" : "Plekho2 (pp) Tmem86a", "shared_name" : "Plekho2 (pp) Tmem86a", "SUID" : 617065, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617151", "source" : "587982", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Lmo2", "weight" : 0.497121238955, "name" : "Plekho2 (pp) Lmo2", "shared_name" : "Plekho2 (pp) Lmo2", "SUID" : 617151, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616927", "source" : "587982", "target" : "588010", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Cd84", "weight" : 0.470902962617, "name" : "Plekho2 (pp) Cd84", "shared_name" : "Plekho2 (pp) Cd84", "SUID" : 616927, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617119", "source" : "587982", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Rasgrp1", "weight" : 0.541142813847, "name" : "Plekho2 (pp) Rasgrp1", "shared_name" : "Plekho2 (pp) Rasgrp1", "SUID" : 617119, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616935", "source" : "587982", "target" : "588069", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) A430084P05Rik", "weight" : 0.500649278069, "name" : "Plekho2 (pp) A430084P05Rik", "shared_name" : "Plekho2 (pp) A430084P05Rik", "SUID" : 616935, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617139", "source" : "587982", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Cd53", "weight" : 0.432848501032, "name" : "Plekho2 (pp) Cd53", "shared_name" : "Plekho2 (pp) Cd53", "SUID" : 617139, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617135", "source" : "587982", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Ear12", "weight" : 0.532641840538, "name" : "Plekho2 (pp) Ear12", "shared_name" : "Plekho2 (pp) Ear12", "SUID" : 617135, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616928", "source" : "587982", "target" : "588024", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Cd68", "weight" : 0.418981877102, "name" : "Plekho2 (pp) Cd68", "shared_name" : "Plekho2 (pp) Cd68", "SUID" : 616928, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616998", "source" : "587982", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Cd14", "weight" : 0.522334251173, "name" : "Plekho2 (pp) Cd14", "shared_name" : "Plekho2 (pp) Cd14", "SUID" : 616998, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617082", "source" : "587982", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) C1qc", "weight" : 0.526777312086, "name" : "Plekho2 (pp) C1qc", "shared_name" : "Plekho2 (pp) C1qc", "SUID" : 617082, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616950", "source" : "587982", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Pip4k2a", "weight" : 0.52927941874, "name" : "Plekho2 (pp) Pip4k2a", "shared_name" : "Plekho2 (pp) Pip4k2a", "SUID" : 616950, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617003", "source" : "587982", "target" : "588432", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Kcnk6", "weight" : 0.479050397468, "name" : "Plekho2 (pp) Kcnk6", "shared_name" : "Plekho2 (pp) Kcnk6", "SUID" : 617003, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616965", "source" : "587982", "target" : "588254", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Irf8", "weight" : 0.49526451373, "name" : "Plekho2 (pp) Irf8", "shared_name" : "Plekho2 (pp) Irf8", "SUID" : 616965, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617149", "source" : "587982", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Lrrc33", "weight" : 0.536396416827, "name" : "Plekho2 (pp) Lrrc33", "shared_name" : "Plekho2 (pp) Lrrc33", "SUID" : 617149, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617038", "source" : "587982", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Casp1", "weight" : 0.562593123054, "name" : "Plekho2 (pp) Casp1", "shared_name" : "Plekho2 (pp) Casp1", "SUID" : 617038, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617059", "source" : "587982", "target" : "588742", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Ifitm6", "weight" : 0.42655976386, "name" : "Plekho2 (pp) Ifitm6", "shared_name" : "Plekho2 (pp) Ifitm6", "SUID" : 617059, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617040", "source" : "587982", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Gpnmb", "weight" : 0.447232464994, "name" : "Plekho2 (pp) Gpnmb", "shared_name" : "Plekho2 (pp) Gpnmb", "SUID" : 617040, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616964", "source" : "587982", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Sdc3", "weight" : 0.420796240284, "name" : "Plekho2 (pp) Sdc3", "shared_name" : "Plekho2 (pp) Sdc3", "SUID" : 616964, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616931", "source" : "587982", "target" : "588049", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Cd74", "weight" : 0.439942637015, "name" : "Plekho2 (pp) Cd74", "shared_name" : "Plekho2 (pp) Cd74", "SUID" : 616931, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616978", "source" : "587982", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Cxcl16", "weight" : 0.556768604246, "name" : "Plekho2 (pp) Cxcl16", "shared_name" : "Plekho2 (pp) Cxcl16", "SUID" : 616978, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616925", "source" : "587982", "target" : "587989", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Tyrobp", "weight" : 0.498823018351, "name" : "Plekho2 (pp) Tyrobp", "shared_name" : "Plekho2 (pp) Tyrobp", "SUID" : 616925, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617063", "source" : "587982", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) 5430435G22Rik", "weight" : 0.53383347792, "name" : "Plekho2 (pp) 5430435G22Rik", "shared_name" : "Plekho2 (pp) 5430435G22Rik", "SUID" : 617063, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617104", "source" : "587982", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Pld4", "weight" : 0.428814316343, "name" : "Plekho2 (pp) Pld4", "shared_name" : "Plekho2 (pp) Pld4", "SUID" : 617104, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617051", "source" : "587982", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) 6330416G13Rik", "weight" : 0.427521607174, "name" : "Plekho2 (pp) 6330416G13Rik", "shared_name" : "Plekho2 (pp) 6330416G13Rik", "SUID" : 617051, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616996", "source" : "587982", "target" : "588394", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Lyzs", "weight" : 0.540050787854, "name" : "Plekho2 (pp) Lyzs", "shared_name" : "Plekho2 (pp) Lyzs", "SUID" : 616996, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616955", "source" : "587982", "target" : "588212", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Anxa3", "weight" : 0.515592945522, "name" : "Plekho2 (pp) Anxa3", "shared_name" : "Plekho2 (pp) Anxa3", "SUID" : 616955, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616990", "source" : "587982", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Cyp7b1", "weight" : 0.439434601742, "name" : "Plekho2 (pp) Cyp7b1", "shared_name" : "Plekho2 (pp) Cyp7b1", "SUID" : 616990, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616962", "source" : "587982", "target" : "588242", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Cd83", "weight" : 0.402858062389, "name" : "Plekho2 (pp) Cd83", "shared_name" : "Plekho2 (pp) Cd83", "SUID" : 616962, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617020", "source" : "587982", "target" : "588517", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Rac2", "weight" : 0.452105066599, "name" : "Plekho2 (pp) Rac2", "shared_name" : "Plekho2 (pp) Rac2", "SUID" : 617020, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617062", "source" : "587982", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Slc15a3", "weight" : 0.641343488784, "name" : "Plekho2 (pp) Slc15a3", "shared_name" : "Plekho2 (pp) Slc15a3", "SUID" : 617062, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616952", "source" : "587982", "target" : "588185", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Aif1", "weight" : 0.461557361147, "name" : "Plekho2 (pp) Aif1", "shared_name" : "Plekho2 (pp) Aif1", "SUID" : 616952, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617030", "source" : "587982", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Coro1a", "weight" : 0.625985450625, "name" : "Plekho2 (pp) Coro1a", "shared_name" : "Plekho2 (pp) Coro1a", "SUID" : 617030, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616994", "source" : "587982", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Selplg", "weight" : 0.583284066228, "name" : "Plekho2 (pp) Selplg", "shared_name" : "Plekho2 (pp) Selplg", "SUID" : 616994, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617013", "source" : "587982", "target" : "588490", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Arhgap30", "weight" : 0.445005919832, "name" : "Plekho2 (pp) Arhgap30", "shared_name" : "Plekho2 (pp) Arhgap30", "SUID" : 617013, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616940", "source" : "587982", "target" : "588104", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Bmp1", "weight" : 0.414076524055, "name" : "Plekho2 (pp) Bmp1", "shared_name" : "Plekho2 (pp) Bmp1", "SUID" : 616940, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616979", "source" : "587982", "target" : "588313", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Zfp90", "weight" : 0.475679944387, "name" : "Plekho2 (pp) Zfp90", "shared_name" : "Plekho2 (pp) Zfp90", "SUID" : 616979, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617101", "source" : "587982", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Cfp", "weight" : 0.577897174433, "name" : "Plekho2 (pp) Cfp", "shared_name" : "Plekho2 (pp) Cfp", "SUID" : 617101, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617137", "source" : "587982", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Fcgr4", "weight" : 0.521693361805, "name" : "Plekho2 (pp) Fcgr4", "shared_name" : "Plekho2 (pp) Fcgr4", "SUID" : 617137, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617124", "source" : "587982", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Serpinb6a", "weight" : 0.578266675772, "name" : "Plekho2 (pp) Serpinb6a", "shared_name" : "Plekho2 (pp) Serpinb6a", "SUID" : 617124, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617099", "source" : "587982", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Btk", "weight" : 0.430332858526, "name" : "Plekho2 (pp) Btk", "shared_name" : "Plekho2 (pp) Btk", "SUID" : 617099, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617031", "source" : "587982", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Tmsb10", "weight" : 0.468319363632, "name" : "Plekho2 (pp) Tmsb10", "shared_name" : "Plekho2 (pp) Tmsb10", "SUID" : 617031, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617057", "source" : "587982", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Vsig4", "weight" : 0.588468426968, "name" : "Plekho2 (pp) Vsig4", "shared_name" : "Plekho2 (pp) Vsig4", "SUID" : 617057, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616949", "source" : "587982", "target" : "588151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Ccl4", "weight" : 0.405771648512, "name" : "Plekho2 (pp) Ccl4", "shared_name" : "Plekho2 (pp) Ccl4", "SUID" : 616949, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616944", "source" : "587982", "target" : "588127", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Lpxn", "weight" : 0.571380664067, "name" : "Plekho2 (pp) Lpxn", "shared_name" : "Plekho2 (pp) Lpxn", "SUID" : 616944, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617014", "source" : "587982", "target" : "588492", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Ncf4", "weight" : 0.581158610113, "name" : "Plekho2 (pp) Ncf4", "shared_name" : "Plekho2 (pp) Ncf4", "SUID" : 617014, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617127", "source" : "587982", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) H2-DMa", "weight" : 0.527623359898, "name" : "Plekho2 (pp) H2-DMa", "shared_name" : "Plekho2 (pp) H2-DMa", "SUID" : 617127, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617142", "source" : "587982", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.536307064481, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Plekho2 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.536307064481, "fusion" : "NA", "name" : "Plekho2 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 46906.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Plekho2 (pp) Ear4", "combinedscore" : "NA", "SUID" : 617142, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 6.11623E-7, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "617086", "source" : "587982", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) H2-DMb1", "weight" : 0.420581617884, "name" : "Plekho2 (pp) H2-DMb1", "shared_name" : "Plekho2 (pp) H2-DMb1", "SUID" : 617086, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616967", "source" : "587982", "target" : "588262", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) P2ry13", "weight" : 0.466479266555, "name" : "Plekho2 (pp) P2ry13", "shared_name" : "Plekho2 (pp) P2ry13", "SUID" : 616967, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616956", "source" : "587982", "target" : "588213", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Pdlim4", "weight" : 0.453866940024, "name" : "Plekho2 (pp) Pdlim4", "shared_name" : "Plekho2 (pp) Pdlim4", "SUID" : 616956, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617083", "source" : "587982", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Hk3", "weight" : 0.585997609974, "name" : "Plekho2 (pp) Hk3", "shared_name" : "Plekho2 (pp) Hk3", "SUID" : 617083, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617077", "source" : "587982", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Lgals3", "weight" : 0.586036054281, "name" : "Plekho2 (pp) Lgals3", "shared_name" : "Plekho2 (pp) Lgals3", "SUID" : 617077, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617128", "source" : "587982", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Ear10", "weight" : 0.489421568771, "name" : "Plekho2 (pp) Ear10", "shared_name" : "Plekho2 (pp) Ear10", "SUID" : 617128, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616966", "source" : "587982", "target" : "588257", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Sdcbp", "weight" : 0.417459230539, "name" : "Plekho2 (pp) Sdcbp", "shared_name" : "Plekho2 (pp) Sdcbp", "SUID" : 616966, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617070", "source" : "587982", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Cotl1", "weight" : 0.563240975449, "name" : "Plekho2 (pp) Cotl1", "shared_name" : "Plekho2 (pp) Cotl1", "SUID" : 617070, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617048", "source" : "587982", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Cd52", "weight" : 0.630695772205, "name" : "Plekho2 (pp) Cd52", "shared_name" : "Plekho2 (pp) Cd52", "SUID" : 617048, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617110", "source" : "587982", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Vcam1", "weight" : 0.528107303629, "name" : "Plekho2 (pp) Vcam1", "shared_name" : "Plekho2 (pp) Vcam1", "SUID" : 617110, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "617028", "source" : "587982", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekho2 (pp) Snn", "weight" : 0.491650059814, "name" : "Plekho2 (pp) Snn", "shared_name" : "Plekho2 (pp) Snn", "SUID" : 617028, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609717", "source" : "587881", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Gngt2", "weight" : 0.553998701279, "name" : "Vav1 (pp) Gngt2", "shared_name" : "Vav1 (pp) Gngt2", "SUID" : 609717, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609607", "source" : "587881", "target" : "588104", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Bmp1", "weight" : 0.504461932354, "name" : "Vav1 (pp) Bmp1", "shared_name" : "Vav1 (pp) Bmp1", "SUID" : 609607, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609670", "source" : "587881", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Selplg", "weight" : 0.59654540558, "name" : "Vav1 (pp) Selplg", "shared_name" : "Vav1 (pp) Selplg", "SUID" : 609670, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609883", "source" : "587881", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Il10ra", "weight" : 0.508000383602, "name" : "Vav1 (pp) Il10ra", "shared_name" : "Vav1 (pp) Il10ra", "SUID" : 609883, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609862", "source" : "587881", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Fcgr4", "weight" : 0.62195712394, "name" : "Vav1 (pp) Fcgr4", "shared_name" : "Vav1 (pp) Fcgr4", "SUID" : 609862, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609711", "source" : "587881", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Snn", "weight" : 0.475835911911, "name" : "Vav1 (pp) Snn", "shared_name" : "Vav1 (pp) Snn", "SUID" : 609711, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609707", "source" : "587881", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Cd86", "weight" : 0.580071922694, "name" : "Vav1 (pp) Cd86", "shared_name" : "Vav1 (pp) Cd86", "SUID" : 609707, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609818", "source" : "587881", "target" : "589086", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.66993611293, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Vav1 (pp) Cfp", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.66993611293, "fusion" : "NA", "name" : "Vav1 (pp) Cfp", "neighborhood" : "NA", "sourceEdge" : 30838.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Vav1 (pp) Cfp", "combinedscore" : "NA", "SUID" : 609818, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 7.132665E-4, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "609839", "source" : "587881", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Rasgrp1", "weight" : 0.437490429531, "name" : "Vav1 (pp) Rasgrp1", "shared_name" : "Vav1 (pp) Rasgrp1", "SUID" : 609839, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609830", "source" : "587881", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Vcam1", "weight" : 0.472885489517, "name" : "Vav1 (pp) Vcam1", "shared_name" : "Vav1 (pp) Vcam1", "SUID" : 609830, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609659", "source" : "587881", "target" : "588342", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Mfge8", "weight" : 0.542322936206, "name" : "Vav1 (pp) Mfge8", "shared_name" : "Vav1 (pp) Mfge8", "SUID" : 609659, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609652", "source" : "587881", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Cxcl16", "weight" : 0.559278633674, "name" : "Vav1 (pp) Cxcl16", "shared_name" : "Vav1 (pp) Cxcl16", "SUID" : 609652, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609859", "source" : "587881", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Abi3", "weight" : 0.515792217033, "name" : "Vav1 (pp) Abi3", "shared_name" : "Vav1 (pp) Abi3", "SUID" : 609859, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609573", "source" : "587881", "target" : "587919", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Mefv", "weight" : 0.420850011184, "name" : "Vav1 (pp) Mefv", "shared_name" : "Vav1 (pp) Mefv", "SUID" : 609573, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609661", "source" : "587881", "target" : "588351", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Ttc39a", "weight" : 0.601695259562, "name" : "Vav1 (pp) Ttc39a", "shared_name" : "Vav1 (pp) Ttc39a", "SUID" : 609661, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609789", "source" : "587881", "target" : "588927", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "kwalksFenofibratemagenta" : 4.295956E-4, "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.478319027689, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Vav1 (pp) Hk3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "extraFenofibratemagenta" : "FALSE", "weight" : 0.478319027689, "fusion" : "NA", "name" : "Vav1 (pp) Hk3", "neighborhood" : "NA", "sourceEdge" : 30829.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Vav1 (pp) Hk3", "combinedscore" : "NA", "SUID" : 609789, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "609866", "source" : "587881", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Clec7a", "weight" : 0.523662590464, "name" : "Vav1 (pp) Clec7a", "shared_name" : "Vav1 (pp) Clec7a", "SUID" : 609866, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609876", "source" : "587881", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Fblim1", "weight" : 0.473864975421, "name" : "Vav1 (pp) Fblim1", "shared_name" : "Vav1 (pp) Fblim1", "SUID" : 609876, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609773", "source" : "587881", "target" : "588860", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.606560123954, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Vav1 (pp) Fcer1g", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.606560123954, "fusion" : "NA", "name" : "Vav1 (pp) Fcer1g", "neighborhood" : "NA", "sourceEdge" : 30825.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Vav1 (pp) Fcer1g", "combinedscore" : "NA", "SUID" : 609773, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 5.750891E-4, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "609616", "source" : "587881", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Pip4k2a", "weight" : 0.476480611115, "name" : "Vav1 (pp) Pip4k2a", "shared_name" : "Vav1 (pp) Pip4k2a", "SUID" : 609616, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609874", "source" : "587881", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) C1qb", "weight" : 0.568515453439, "name" : "Vav1 (pp) C1qb", "shared_name" : "Vav1 (pp) C1qb", "SUID" : 609874, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609828", "source" : "587881", "target" : "589113", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Ms4a7", "weight" : 0.441540330959, "name" : "Vav1 (pp) Ms4a7", "shared_name" : "Vav1 (pp) Ms4a7", "SUID" : 609828, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609580", "source" : "587881", "target" : "587966", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Cyba", "weight" : 0.545669324364, "name" : "Vav1 (pp) Cyba", "shared_name" : "Vav1 (pp) Cyba", "SUID" : 609580, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609673", "source" : "587881", "target" : "588394", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Lyzs", "weight" : 0.48160268031, "name" : "Vav1 (pp) Lyzs", "shared_name" : "Vav1 (pp) Lyzs", "SUID" : 609673, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609681", "source" : "587881", "target" : "588424", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.566141650283, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Vav1 (pp) Clec4n", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.566141650283, "fusion" : "NA", "name" : "Vav1 (pp) Clec4n", "neighborhood" : "NA", "sourceEdge" : 30776.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Vav1 (pp) Clec4n", "combinedscore" : "NA", "SUID" : 609681, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 5.793103E-4, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "609865", "source" : "587881", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Cd53", "weight" : 0.406838523356, "name" : "Vav1 (pp) Cd53", "shared_name" : "Vav1 (pp) Cd53", "SUID" : 609865, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609610", "source" : "587881", "target" : "588127", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Lpxn", "weight" : 0.519538800281, "name" : "Vav1 (pp) Lpxn", "shared_name" : "Vav1 (pp) Lpxn", "SUID" : 609610, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609768", "source" : "587881", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Cotl1", "weight" : 0.578561046854, "name" : "Vav1 (pp) Cotl1", "shared_name" : "Vav1 (pp) Cotl1", "SUID" : 609768, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609653", "source" : "587881", "target" : "588313", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Zfp90", "weight" : 0.463922900438, "name" : "Vav1 (pp) Zfp90", "shared_name" : "Vav1 (pp) Zfp90", "SUID" : 609653, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609756", "source" : "587881", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) 5430435G22Rik", "weight" : 0.417413416887, "name" : "Vav1 (pp) 5430435G22Rik", "shared_name" : "Vav1 (pp) 5430435G22Rik", "SUID" : 609756, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609790", "source" : "587881", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Cytip", "weight" : 0.48112888683, "name" : "Vav1 (pp) Cytip", "shared_name" : "Vav1 (pp) Cytip", "SUID" : 609790, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609857", "source" : "587881", "target" : "589256", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Timp1", "weight" : 0.531280525756, "name" : "Vav1 (pp) Timp1", "shared_name" : "Vav1 (pp) Timp1", "SUID" : 609857, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609744", "source" : "587881", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Axl", "weight" : 0.582359484294, "name" : "Vav1 (pp) Axl", "shared_name" : "Vav1 (pp) Axl", "SUID" : 609744, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609647", "source" : "587881", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Ms4a6d", "weight" : 0.620720447733, "name" : "Vav1 (pp) Ms4a6d", "shared_name" : "Vav1 (pp) Ms4a6d", "SUID" : 609647, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609577", "source" : "587881", "target" : "587952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Gusb", "weight" : 0.402898033932, "name" : "Vav1 (pp) Gusb", "shared_name" : "Vav1 (pp) Gusb", "SUID" : 609577, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609817", "source" : "587881", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Btk", "weight" : 0.471586795595, "name" : "Vav1 (pp) Btk", "shared_name" : "Vav1 (pp) Btk", "SUID" : 609817, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609692", "source" : "587881", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Plscr1", "weight" : 0.432393412766, "name" : "Vav1 (pp) Plscr1", "shared_name" : "Vav1 (pp) Plscr1", "SUID" : 609692, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609615", "source" : "587881", "target" : "588151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Ccl4", "weight" : 0.418625177016, "name" : "Vav1 (pp) Ccl4", "shared_name" : "Vav1 (pp) Ccl4", "SUID" : 609615, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609856", "source" : "587881", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Trem2", "weight" : 0.527218825868, "name" : "Vav1 (pp) Trem2", "shared_name" : "Vav1 (pp) Trem2", "SUID" : 609856, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609735", "source" : "587881", "target" : "588678", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Fxyd5", "weight" : 0.443796369408, "name" : "Vav1 (pp) Fxyd5", "shared_name" : "Vav1 (pp) Fxyd5", "SUID" : 609735, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609611", "source" : "587881", "target" : "588134", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Mlkl", "weight" : 0.493716931706, "name" : "Vav1 (pp) Mlkl", "shared_name" : "Vav1 (pp) Mlkl", "SUID" : 609611, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609676", "source" : "587881", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Cd14", "weight" : 0.569863844736, "name" : "Vav1 (pp) Cd14", "shared_name" : "Vav1 (pp) Cd14", "SUID" : 609676, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609771", "source" : "587881", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Plac8", "weight" : 0.461698353536, "name" : "Vav1 (pp) Plac8", "shared_name" : "Vav1 (pp) Plac8", "SUID" : 609771, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609722", "source" : "587881", "target" : "588620", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Olfml3", "weight" : 0.479240577737, "name" : "Vav1 (pp) Olfml3", "shared_name" : "Vav1 (pp) Olfml3", "SUID" : 609722, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609780", "source" : "587881", "target" : "588886", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "kwalksFenofibratemagenta" : 1.300759E-4, "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.75037257331, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Vav1 (pp) Lgals3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "extraFenofibratemagenta" : "FALSE", "weight" : 0.75037257331, "fusion" : "NA", "name" : "Vav1 (pp) Lgals3", "neighborhood" : "NA", "sourceEdge" : 30827.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Vav1 (pp) Lgals3", "combinedscore" : "NA", "SUID" : 609780, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.001341245, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "609758", "source" : "587881", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Tmem86a", "weight" : 0.630213711816, "name" : "Vav1 (pp) Tmem86a", "shared_name" : "Vav1 (pp) Tmem86a", "SUID" : 609758, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609728", "source" : "587881", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Gpnmb", "weight" : 0.598893846642, "name" : "Vav1 (pp) Gpnmb", "shared_name" : "Vav1 (pp) Gpnmb", "SUID" : 609728, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609685", "source" : "587881", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Cd63", "weight" : 0.520392279219, "name" : "Vav1 (pp) Cd63", "shared_name" : "Vav1 (pp) Cd63", "SUID" : 609685, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609664", "source" : "587881", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Cyp7b1", "weight" : 0.520668976239, "name" : "Vav1 (pp) Cyp7b1", "shared_name" : "Vav1 (pp) Cyp7b1", "SUID" : 609664, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609625", "source" : "587881", "target" : "588212", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Anxa3", "weight" : 0.541383590472, "name" : "Vav1 (pp) Anxa3", "shared_name" : "Vav1 (pp) Anxa3", "SUID" : 609625, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609739", "source" : "587881", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Cd52", "weight" : 0.56782070826, "name" : "Vav1 (pp) Cd52", "shared_name" : "Vav1 (pp) Cd52", "SUID" : 609739, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609860", "source" : "587881", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Ear12", "weight" : 0.549566309087, "name" : "Vav1 (pp) Ear12", "shared_name" : "Vav1 (pp) Ear12", "SUID" : 609860, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609869", "source" : "587881", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.634967334653, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Vav1 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.634967334653, "fusion" : "NA", "name" : "Vav1 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 30858.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Vav1 (pp) Ear4", "combinedscore" : "NA", "SUID" : 609869, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 6.060808E-4, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "609733", "source" : "587881", "target" : "588664", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.449019651213, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Vav1 (pp) 5033414D02Rik", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.449019651213, "fusion" : "NA", "name" : "Vav1 (pp) 5033414D02Rik", "neighborhood" : "NA", "sourceEdge" : 30803.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Vav1 (pp) 5033414D02Rik", "combinedscore" : "NA", "SUID" : 609733, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 5.024769E-4, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "609694", "source" : "587881", "target" : "588492", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Ncf4", "weight" : 0.462361926179, "name" : "Vav1 (pp) Ncf4", "shared_name" : "Vav1 (pp) Ncf4", "SUID" : 609694, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609631", "source" : "587881", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Laptm5", "weight" : 0.75892297977, "name" : "Vav1 (pp) Laptm5", "shared_name" : "Vav1 (pp) Laptm5", "SUID" : 609631, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609801", "source" : "587881", "target" : "588968", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Bcl2a1c", "weight" : 0.434843973879, "name" : "Vav1 (pp) Bcl2a1c", "shared_name" : "Vav1 (pp) Bcl2a1c", "SUID" : 609801, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609715", "source" : "587881", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Slc11a1", "weight" : 0.500568464383, "name" : "Vav1 (pp) Slc11a1", "shared_name" : "Vav1 (pp) Slc11a1", "SUID" : 609715, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609618", "source" : "587881", "target" : "588185", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Aif1", "weight" : 0.475196039249, "name" : "Vav1 (pp) Aif1", "shared_name" : "Vav1 (pp) Aif1", "SUID" : 609618, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609834", "source" : "587881", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Tmsb4x", "weight" : 0.400926667471, "name" : "Vav1 (pp) Tmsb4x", "shared_name" : "Vav1 (pp) Tmsb4x", "SUID" : 609834, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609689", "source" : "587881", "target" : "588472", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Ly9", "weight" : 0.40755129886, "name" : "Vav1 (pp) Ly9", "shared_name" : "Vav1 (pp) Ly9", "SUID" : 609689, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609873", "source" : "587881", "target" : "589335", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.629230389188, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Vav1 (pp) Ly86", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.629230389188, "fusion" : "NA", "name" : "Vav1 (pp) Ly86", "neighborhood" : "NA", "sourceEdge" : 30860.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Vav1 (pp) Ly86", "combinedscore" : "NA", "SUID" : 609873, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 6.595876E-4, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "609742", "source" : "587881", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Serpina3g", "weight" : 0.459584505723, "name" : "Vav1 (pp) Serpina3g", "shared_name" : "Vav1 (pp) Serpina3g", "SUID" : 609742, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609601", "source" : "587881", "target" : "588081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Capg", "weight" : 0.455522183, "name" : "Vav1 (pp) Capg", "shared_name" : "Vav1 (pp) Capg", "SUID" : 609601, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609747", "source" : "587881", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Vsig4", "weight" : 0.487137308854, "name" : "Vav1 (pp) Vsig4", "shared_name" : "Vav1 (pp) Vsig4", "SUID" : 609747, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609691", "source" : "587881", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Renbp", "weight" : 0.578577495537, "name" : "Vav1 (pp) Renbp", "shared_name" : "Vav1 (pp) Renbp", "SUID" : 609691, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609858", "source" : "587881", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Ppif", "weight" : 0.415944168385, "name" : "Vav1 (pp) Ppif", "shared_name" : "Vav1 (pp) Ppif", "SUID" : 609858, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609614", "source" : "587881", "target" : "588147", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Ppic", "weight" : 0.473880272044, "name" : "Vav1 (pp) Ppic", "shared_name" : "Vav1 (pp) Ppic", "SUID" : 609614, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609713", "source" : "587881", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Coro1a", "weight" : 0.52123521775, "name" : "Vav1 (pp) Coro1a", "shared_name" : "Vav1 (pp) Coro1a", "SUID" : 609713, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609853", "source" : "587881", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Ear10", "weight" : 0.516829176486, "name" : "Vav1 (pp) Ear10", "shared_name" : "Vav1 (pp) Ear10", "SUID" : 609853, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609586", "source" : "587881", "target" : "587989", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Tyrobp", "weight" : 0.502465999766, "name" : "Vav1 (pp) Tyrobp", "shared_name" : "Vav1 (pp) Tyrobp", "SUID" : 609586, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609734", "source" : "587881", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) D12Ertd553e", "weight" : 0.434300114509, "name" : "Vav1 (pp) D12Ertd553e", "shared_name" : "Vav1 (pp) D12Ertd553e", "SUID" : 609734, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609761", "source" : "587881", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Obrgrp", "weight" : 0.571409678054, "name" : "Vav1 (pp) Obrgrp", "shared_name" : "Vav1 (pp) Obrgrp", "SUID" : 609761, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609654", "source" : "587881", "target" : "588322", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Pfkfb4", "weight" : 0.598233698824, "name" : "Vav1 (pp) Pfkfb4", "shared_name" : "Vav1 (pp) Pfkfb4", "SUID" : 609654, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609754", "source" : "587881", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Slc15a3", "weight" : 0.611801150435, "name" : "Vav1 (pp) Slc15a3", "shared_name" : "Vav1 (pp) Slc15a3", "SUID" : 609754, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609849", "source" : "587881", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Serpinb6a", "weight" : 0.599937390276, "name" : "Vav1 (pp) Serpinb6a", "shared_name" : "Vav1 (pp) Serpinb6a", "SUID" : 609849, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609687", "source" : "587881", "target" : "588461", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Tbxas1", "weight" : 0.51882187558, "name" : "Vav1 (pp) Tbxas1", "shared_name" : "Vav1 (pp) Tbxas1", "SUID" : 609687, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609584", "source" : "587881", "target" : "587982", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Plekho2", "weight" : 0.482487117409, "name" : "Vav1 (pp) Plekho2", "shared_name" : "Vav1 (pp) Plekho2", "SUID" : 609584, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609636", "source" : "587881", "target" : "588244", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Gltp", "weight" : 0.468500744304, "name" : "Vav1 (pp) Gltp", "shared_name" : "Vav1 (pp) Gltp", "SUID" : 609636, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609823", "source" : "587881", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Snx10", "weight" : 0.485784308905, "name" : "Vav1 (pp) Snx10", "shared_name" : "Vav1 (pp) Snx10", "SUID" : 609823, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609804", "source" : "587881", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Csrp1", "weight" : 0.60824207197, "name" : "Vav1 (pp) Csrp1", "shared_name" : "Vav1 (pp) Csrp1", "SUID" : 609804, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609757", "source" : "587881", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Ccl6", "weight" : 0.43639293401, "name" : "Vav1 (pp) Ccl6", "shared_name" : "Vav1 (pp) Ccl6", "SUID" : 609757, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609637", "source" : "587881", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Sdc3", "weight" : 0.542643672784, "name" : "Vav1 (pp) Sdc3", "shared_name" : "Vav1 (pp) Sdc3", "SUID" : 609637, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609602", "source" : "587881", "target" : "588086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Iqgap1", "weight" : 0.458768637063, "name" : "Vav1 (pp) Iqgap1", "shared_name" : "Vav1 (pp) Iqgap1", "SUID" : 609602, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609743", "source" : "587881", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vav1 (pp) Tlr2", "weight" : 0.5683533565, "name" : "Vav1 (pp) Tlr2", "shared_name" : "Vav1 (pp) Tlr2", "SUID" : 609743, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676419", "source" : "588860", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcer1g (pp) Tmsb4x", "weight" : 0.688869149857, "name" : "Fcer1g (pp) Tmsb4x", "shared_name" : "Fcer1g (pp) Tmsb4x", "SUID" : 676419, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676424", "source" : "588860", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcer1g (pp) Rasgrp1", "weight" : 0.535128662648, "name" : "Fcer1g (pp) Rasgrp1", "shared_name" : "Fcer1g (pp) Rasgrp1", "SUID" : 676424, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676444", "source" : "588860", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcer1g (pp) Abi3", "weight" : 0.504369710822, "name" : "Fcer1g (pp) Abi3", "shared_name" : "Fcer1g (pp) Abi3", "SUID" : 676444, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676445", "source" : "588860", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcer1g (pp) Ear12", "weight" : 0.543014687311, "name" : "Fcer1g (pp) Ear12", "shared_name" : "Fcer1g (pp) Ear12", "SUID" : 676445, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676373", "source" : "588860", "target" : "588886", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.739567705832, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Fcer1g (pp) Lgals3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 8.898185E-4, "weight" : 0.739567705832, "fusion" : "NA", "name" : "Fcer1g (pp) Lgals3", "neighborhood" : "NA", "sourceEdge" : 140575.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Fcer1g (pp) Lgals3", "combinedscore" : "NA", "SUID" : 676373, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "kwalksT0901317red" : 5.112018E-6, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "kwalksFenofibratered" : 0.006559991, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "676386", "source" : "588860", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcer1g (pp) H2-DMb1", "weight" : 0.556142280732, "name" : "Fcer1g (pp) H2-DMb1", "shared_name" : "Fcer1g (pp) H2-DMb1", "SUID" : 676386, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676449", "source" : "588860", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcer1g (pp) Cd53", "weight" : 0.450174473854, "name" : "Fcer1g (pp) Cd53", "shared_name" : "Fcer1g (pp) Cd53", "SUID" : 676449, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676455", "source" : "588860", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcer1g (pp) Prkcd", "weight" : 0.455046627516, "name" : "Fcer1g (pp) Prkcd", "shared_name" : "Fcer1g (pp) Prkcd", "SUID" : 676455, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676405", "source" : "588860", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcer1g (pp) Btk", "weight" : 0.431461949324, "name" : "Fcer1g (pp) Btk", "shared_name" : "Fcer1g (pp) Btk", "SUID" : 676405, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676469", "source" : "588860", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcer1g (pp) Il10ra", "weight" : 0.46867551638, "name" : "Fcer1g (pp) Il10ra", "shared_name" : "Fcer1g (pp) Il10ra", "SUID" : 676469, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676379", "source" : "588860", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcer1g (pp) C1qc", "weight" : 0.70220148664, "name" : "Fcer1g (pp) C1qc", "shared_name" : "Fcer1g (pp) C1qc", "SUID" : 676379, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676460", "source" : "588860", "target" : "589353", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.454750051687, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Fcer1g (pp) Fblim1", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.454750051687, "fusion" : "NA", "name" : "Fcer1g (pp) Fblim1", "neighborhood" : "NA", "sourceEdge" : 140610.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Fcer1g (pp) Fblim1", "combinedscore" : "NA", "SUID" : 676460, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 6.469369E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "676450", "source" : "588860", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcer1g (pp) Clec7a", "weight" : 0.494231275772, "name" : "Fcer1g (pp) Clec7a", "shared_name" : "Fcer1g (pp) Clec7a", "SUID" : 676450, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676409", "source" : "588860", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcer1g (pp) Pld4", "weight" : 0.562940716032, "name" : "Fcer1g (pp) Pld4", "shared_name" : "Fcer1g (pp) Pld4", "SUID" : 676409, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676452", "source" : "588860", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.684513194767, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Fcer1g (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 6.8014E-8, "weight" : 0.684513194767, "fusion" : "NA", "name" : "Fcer1g (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 140606.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Fcer1g (pp) Ear4", "combinedscore" : "NA", "SUID" : 676452, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "kwalksT0901317red" : 3.253738E-5, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "kwalksFenofibratered" : 1.95E-10, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "676415", "source" : "588860", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcer1g (pp) Vcam1", "weight" : 0.680082895092, "name" : "Fcer1g (pp) Vcam1", "shared_name" : "Fcer1g (pp) Vcam1", "SUID" : 676415, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676464", "source" : "588860", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcer1g (pp) Lmo2", "weight" : 0.444434413, "name" : "Fcer1g (pp) Lmo2", "shared_name" : "Fcer1g (pp) Lmo2", "SUID" : 676464, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676437", "source" : "588860", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcer1g (pp) Ear10", "weight" : 0.56429137766, "name" : "Fcer1g (pp) Ear10", "shared_name" : "Fcer1g (pp) Ear10", "SUID" : 676437, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676396", "source" : "588860", "target" : "589005", "homology" : "NA", "shared_interaction" : "NA", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.626790524934, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Fcer1g (pp) Csrp1", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 6.159E-9, "weight" : 0.626790524934, "fusion" : "NA", "name" : "Fcer1g (pp) Csrp1", "neighborhood" : "NA", "sourceEdge" : 140582.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Fcer1g (pp) Csrp1", "combinedscore" : "NA", "SUID" : 676396, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "NA", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "676458", "source" : "588860", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcer1g (pp) C1qb", "weight" : 0.827790419776, "name" : "Fcer1g (pp) C1qb", "shared_name" : "Fcer1g (pp) C1qb", "SUID" : 676458, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676457", "source" : "588860", "target" : "589335", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.751838120875, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Fcer1g (pp) Ly86", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.751838120875, "fusion" : "NA", "name" : "Fcer1g (pp) Ly86", "neighborhood" : "NA", "sourceEdge" : 140608.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Fcer1g (pp) Ly86", "combinedscore" : "NA", "SUID" : 676457, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 2.0781E-8, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "676406", "source" : "588860", "target" : "589086", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.631204760839, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Fcer1g (pp) Cfp", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.631204760839, "fusion" : "NA", "name" : "Fcer1g (pp) Cfp", "neighborhood" : "NA", "sourceEdge" : 140586.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Fcer1g (pp) Cfp", "combinedscore" : "NA", "SUID" : 676406, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 2.6291E-8, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "676391", "source" : "588860", "target" : "588968", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcer1g (pp) Bcl2a1c", "weight" : 0.414703018857, "name" : "Fcer1g (pp) Bcl2a1c", "shared_name" : "Fcer1g (pp) Bcl2a1c", "SUID" : 676391, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676462", "source" : "588860", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcer1g (pp) Lrrc33", "weight" : 0.520171428628, "name" : "Fcer1g (pp) Lrrc33", "shared_name" : "Fcer1g (pp) Lrrc33", "SUID" : 676462, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676410", "source" : "588860", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcer1g (pp) Snx10", "weight" : 0.412184817868, "name" : "Fcer1g (pp) Snx10", "shared_name" : "Fcer1g (pp) Snx10", "SUID" : 676410, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676447", "source" : "588860", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcer1g (pp) Fcgr4", "weight" : 0.751094685366, "name" : "Fcer1g (pp) Fcgr4", "shared_name" : "Fcer1g (pp) Fcgr4", "SUID" : 676447, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676380", "source" : "588860", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcer1g (pp) Hk3", "weight" : 0.746513220759, "name" : "Fcer1g (pp) Hk3", "shared_name" : "Fcer1g (pp) Hk3", "SUID" : 676380, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676440", "source" : "588860", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcer1g (pp) Trem2", "weight" : 0.467178781271, "name" : "Fcer1g (pp) Trem2", "shared_name" : "Fcer1g (pp) Trem2", "SUID" : 676440, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676381", "source" : "588860", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcer1g (pp) Cytip", "weight" : 0.541386894167, "name" : "Fcer1g (pp) Cytip", "shared_name" : "Fcer1g (pp) Cytip", "SUID" : 676381, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676404", "source" : "588860", "target" : "589076", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcer1g (pp) H2-M3", "weight" : 0.405839889727, "name" : "Fcer1g (pp) H2-M3", "shared_name" : "Fcer1g (pp) H2-M3", "SUID" : 676404, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676441", "source" : "588860", "target" : "589256", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcer1g (pp) Timp1", "weight" : 0.422482290376, "name" : "Fcer1g (pp) Timp1", "shared_name" : "Fcer1g (pp) Timp1", "SUID" : 676441, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676368", "source" : "588860", "target" : "588863", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 1.0, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Fcer1g (pp) Fcgr3", "identifier" : "356766417", "node2stringid" : "NA", "SourceFileKnow" : "/home/thomas/data/10OAD/input/networks//kegg_20110518.gml", "weight" : 1.0, "fusion" : "NA", "name" : "Fcer1g (pp) Fcgr3", "neighborhood" : "NA", "sourceEdge" : 4688.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Fcer1g (pp) Fcgr3", "combinedscore" : "NA", "SUID" : 676368, "SourceFile" : "/home/thomas/data/10OAD/input/networks//kegg_20110518.gml", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 2.091849E-5, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "676413", "source" : "588860", "target" : "589113", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcer1g (pp) Ms4a7", "weight" : 0.4055647649, "name" : "Fcer1g (pp) Ms4a7", "shared_name" : "Fcer1g (pp) Ms4a7", "SUID" : 676413, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676436", "source" : "588860", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcer1g (pp) H2-DMa", "weight" : 0.578516795277, "name" : "Fcer1g (pp) H2-DMa", "shared_name" : "Fcer1g (pp) H2-DMa", "SUID" : 676436, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "676433", "source" : "588860", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fcer1g (pp) Serpinb6a", "weight" : 0.63197049717, "name" : "Fcer1g (pp) Serpinb6a", "shared_name" : "Fcer1g (pp) Serpinb6a", "SUID" : 676433, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671239", "source" : "588728", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "AB124611 (pp) Cotl1", "weight" : 0.403891598762, "name" : "AB124611 (pp) Cotl1", "shared_name" : "AB124611 (pp) Cotl1", "SUID" : 671239, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671306", "source" : "588728", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "AB124611 (pp) Ly86", "weight" : 0.408967287523, "name" : "AB124611 (pp) Ly86", "shared_name" : "AB124611 (pp) Ly86", "SUID" : 671306, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671226", "source" : "588728", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "AB124611 (pp) Vsig4", "weight" : 0.40971203941, "name" : "AB124611 (pp) Vsig4", "shared_name" : "AB124611 (pp) Vsig4", "SUID" : 671226, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671243", "source" : "588728", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "AB124611 (pp) Fcgr3", "weight" : 0.447148750008, "name" : "AB124611 (pp) Fcgr3", "shared_name" : "AB124611 (pp) Fcgr3", "SUID" : 671243, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671304", "source" : "588728", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "AB124611 (pp) Ear4", "weight" : 0.407132988176, "name" : "AB124611 (pp) Ear4", "shared_name" : "AB124611 (pp) Ear4", "SUID" : 671304, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671230", "source" : "588728", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "AB124611 (pp) Slc15a3", "weight" : 0.423375861578, "name" : "AB124611 (pp) Slc15a3", "shared_name" : "AB124611 (pp) Slc15a3", "SUID" : 671230, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671307", "source" : "588728", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "AB124611 (pp) C1qb", "weight" : 0.454136688785, "name" : "AB124611 (pp) C1qb", "shared_name" : "AB124611 (pp) C1qb", "SUID" : 671307, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671242", "source" : "588728", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "AB124611 (pp) Fcer1g", "weight" : 0.429570670563, "name" : "AB124611 (pp) Fcer1g", "shared_name" : "AB124611 (pp) Fcer1g", "SUID" : 671242, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599518", "source" : "587783", "target" : "588424", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.508730500928, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Marcks (pp) Clec4n", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.508730500928, "fusion" : "NA", "name" : "Marcks (pp) Clec4n", "neighborhood" : "NA", "sourceEdge" : 14253.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Marcks (pp) Clec4n", "combinedscore" : "NA", "SUID" : 599518, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 9.03186E-7, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "599524", "source" : "587783", "target" : "588461", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Tbxas1", "weight" : 0.464012214318, "name" : "Marcks (pp) Tbxas1", "shared_name" : "Marcks (pp) Tbxas1", "SUID" : 599524, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599447", "source" : "587783", "target" : "588147", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Ppic", "weight" : 0.49398503286, "name" : "Marcks (pp) Ppic", "shared_name" : "Marcks (pp) Ppic", "SUID" : 599447, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599671", "source" : "587783", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Vcam1", "weight" : 0.523988788795, "name" : "Marcks (pp) Vcam1", "shared_name" : "Marcks (pp) Vcam1", "SUID" : 599671, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599582", "source" : "587783", "target" : "588678", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Fxyd5", "weight" : 0.404448631923, "name" : "Marcks (pp) Fxyd5", "shared_name" : "Marcks (pp) Fxyd5", "SUID" : 599582, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599466", "source" : "587783", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Laptm5", "weight" : 0.610810477231, "name" : "Marcks (pp) Laptm5", "shared_name" : "Marcks (pp) Laptm5", "SUID" : 599466, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599481", "source" : "587783", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Ms4a6d", "weight" : 0.542845895004, "name" : "Marcks (pp) Ms4a6d", "shared_name" : "Marcks (pp) Ms4a6d", "SUID" : 599481, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599392", "source" : "587783", "target" : "587857", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.602665581464, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Marcks (pp) Lgmn", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.602665581464, "fusion" : "NA", "name" : "Marcks (pp) Lgmn", "neighborhood" : "NA", "sourceEdge" : 14203.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Marcks (pp) Lgmn", "combinedscore" : "NA", "SUID" : 599392, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 1.490062E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "599591", "source" : "587783", "target" : "588728", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) AB124611", "weight" : 0.42826349336, "name" : "Marcks (pp) AB124611", "shared_name" : "Marcks (pp) AB124611", "SUID" : 599591, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599625", "source" : "587783", "target" : "588886", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.617611284949, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Marcks (pp) Lgals3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.617611284949, "fusion" : "NA", "name" : "Marcks (pp) Lgals3", "neighborhood" : "NA", "sourceEdge" : 14304.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Marcks (pp) Lgals3", "combinedscore" : "NA", "SUID" : 599625, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "FALSE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.006596767, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "599533", "source" : "587783", "target" : "588496", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Gphn", "weight" : 0.412118713055, "name" : "Marcks (pp) Gphn", "shared_name" : "Marcks (pp) Gphn", "SUID" : 599533, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599634", "source" : "587783", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Cytip", "weight" : 0.490327182216, "name" : "Marcks (pp) Cytip", "shared_name" : "Marcks (pp) Cytip", "SUID" : 599634, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599511", "source" : "587783", "target" : "588394", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Lyzs", "weight" : 0.444421914424, "name" : "Marcks (pp) Lyzs", "shared_name" : "Marcks (pp) Lyzs", "SUID" : 599511, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599604", "source" : "587783", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Ccl6", "weight" : 0.449807233869, "name" : "Marcks (pp) Ccl6", "shared_name" : "Marcks (pp) Ccl6", "SUID" : 599604, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599618", "source" : "587783", "target" : "588860", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.55915466277, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Marcks (pp) Fcer1g", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.55915466277, "fusion" : "NA", "name" : "Marcks (pp) Fcer1g", "neighborhood" : "NA", "sourceEdge" : 14302.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Marcks (pp) Fcer1g", "combinedscore" : "NA", "SUID" : 599618, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 1.609618E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "599469", "source" : "587783", "target" : "588242", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Cd83", "weight" : 0.406254703255, "name" : "Marcks (pp) Cd83", "shared_name" : "Marcks (pp) Cd83", "SUID" : 599469, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599379", "source" : "587783", "target" : "587790", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.574222209755, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Marcks (pp) Sh3bgrl3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.574222209755, "fusion" : "NA", "name" : "Marcks (pp) Sh3bgrl3", "neighborhood" : "NA", "sourceEdge" : 14194.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Marcks (pp) Sh3bgrl3", "combinedscore" : "NA", "SUID" : 599379, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 2.84709E-7, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "599601", "source" : "587783", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Slc15a3", "weight" : 0.542416646995, "name" : "Marcks (pp) Slc15a3", "shared_name" : "Marcks (pp) Slc15a3", "SUID" : 599601, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599442", "source" : "587783", "target" : "588127", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Lpxn", "weight" : 0.419557927278, "name" : "Marcks (pp) Lpxn", "shared_name" : "Marcks (pp) Lpxn", "SUID" : 599442, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599523", "source" : "587783", "target" : "588459", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Pop5", "weight" : 0.430307428629, "name" : "Marcks (pp) Pop5", "shared_name" : "Marcks (pp) Pop5", "SUID" : 599523, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599550", "source" : "587783", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Cd86", "weight" : 0.475007874231, "name" : "Marcks (pp) Cd86", "shared_name" : "Marcks (pp) Cd86", "SUID" : 599550, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599714", "source" : "587783", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.56901042235, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Marcks (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.56901042235, "fusion" : "NA", "name" : "Marcks (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 14335.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Marcks (pp) Ear4", "combinedscore" : "NA", "SUID" : 599714, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 1.358093E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "599705", "source" : "587783", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Abi3", "weight" : 0.476961983081, "name" : "Marcks (pp) Abi3", "shared_name" : "Marcks (pp) Abi3", "SUID" : 599705, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599411", "source" : "587783", "target" : "587966", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Cyba", "weight" : 0.617575528869, "name" : "Marcks (pp) Cyba", "shared_name" : "Marcks (pp) Cyba", "SUID" : 599411, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599475", "source" : "587783", "target" : "588262", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) P2ry13", "weight" : 0.401652992241, "name" : "Marcks (pp) P2ry13", "shared_name" : "Marcks (pp) P2ry13", "SUID" : 599475, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599514", "source" : "587783", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Cd14", "weight" : 0.509515027616, "name" : "Marcks (pp) Cd14", "shared_name" : "Marcks (pp) Cd14", "SUID" : 599514, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599724", "source" : "587783", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Lrrc33", "weight" : 0.403961455511, "name" : "Marcks (pp) Lrrc33", "shared_name" : "Marcks (pp) Lrrc33", "SUID" : 599724, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599431", "source" : "587783", "target" : "588069", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) A430084P05Rik", "weight" : 0.473166557026, "name" : "Marcks (pp) A430084P05Rik", "shared_name" : "Marcks (pp) A430084P05Rik", "SUID" : 599431, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599693", "source" : "587783", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Serpinb6a", "weight" : 0.503519840434, "name" : "Marcks (pp) Serpinb6a", "shared_name" : "Marcks (pp) Serpinb6a", "SUID" : 599693, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599616", "source" : "587783", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Plac8", "weight" : 0.53275169781, "name" : "Marcks (pp) Plac8", "shared_name" : "Marcks (pp) Plac8", "SUID" : 599616, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599612", "source" : "587783", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Pla2g15", "weight" : 0.524045866012, "name" : "Marcks (pp) Pla2g15", "shared_name" : "Marcks (pp) Pla2g15", "SUID" : 599612, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599580", "source" : "587783", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) D12Ertd553e", "weight" : 0.489447876382, "name" : "Marcks (pp) D12Ertd553e", "shared_name" : "Marcks (pp) D12Ertd553e", "SUID" : 599580, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599708", "source" : "587783", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Fcgr4", "weight" : 0.47432389154, "name" : "Marcks (pp) Fcgr4", "shared_name" : "Marcks (pp) Fcgr4", "SUID" : 599708, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599605", "source" : "587783", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Tmem86a", "weight" : 0.470331518014, "name" : "Marcks (pp) Tmem86a", "shared_name" : "Marcks (pp) Tmem86a", "SUID" : 599605, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599521", "source" : "587783", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Cd63", "weight" : 0.457891937783, "name" : "Marcks (pp) Cd63", "shared_name" : "Marcks (pp) Cd63", "SUID" : 599521, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599666", "source" : "587783", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Snx10", "weight" : 0.410024516021, "name" : "Marcks (pp) Snx10", "shared_name" : "Marcks (pp) Snx10", "SUID" : 599666, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599497", "source" : "587783", "target" : "588342", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Mfge8", "weight" : 0.457884981669, "name" : "Marcks (pp) Mfge8", "shared_name" : "Marcks (pp) Mfge8", "SUID" : 599497, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599399", "source" : "587783", "target" : "587881", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Vav1", "weight" : 0.529477024873, "name" : "Marcks (pp) Vav1", "shared_name" : "Marcks (pp) Vav1", "SUID" : 599399, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599587", "source" : "587783", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) 6330416G13Rik", "weight" : 0.509259418211, "name" : "Marcks (pp) 6330416G13Rik", "shared_name" : "Marcks (pp) 6330416G13Rik", "SUID" : 599587, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599519", "source" : "587783", "target" : "588432", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Kcnk6", "weight" : 0.430766615621, "name" : "Marcks (pp) Kcnk6", "shared_name" : "Marcks (pp) Kcnk6", "SUID" : 599519, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599594", "source" : "587783", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Vsig4", "weight" : 0.523402119191, "name" : "Marcks (pp) Vsig4", "shared_name" : "Marcks (pp) Vsig4", "SUID" : 599594, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599557", "source" : "587783", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Coro1a", "weight" : 0.45905730108, "name" : "Marcks (pp) Coro1a", "shared_name" : "Marcks (pp) Coro1a", "SUID" : 599557, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599421", "source" : "587783", "target" : "588024", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Cd68", "weight" : 0.438175623347, "name" : "Marcks (pp) Cd68", "shared_name" : "Marcks (pp) Cd68", "SUID" : 599421, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599537", "source" : "587783", "target" : "588512", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) H2-Eb1", "weight" : 0.401367042406, "name" : "Marcks (pp) H2-Eb1", "shared_name" : "Marcks (pp) H2-Eb1", "SUID" : 599537, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599719", "source" : "587783", "target" : "589335", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.557240586095, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Marcks (pp) Ly86", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.557240586095, "fusion" : "NA", "name" : "Marcks (pp) Ly86", "neighborhood" : "NA", "sourceEdge" : 14337.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Marcks (pp) Ly86", "combinedscore" : "NA", "SUID" : 599719, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 7.51084E-7, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "599527", "source" : "587783", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Renbp", "weight" : 0.424712922778, "name" : "Marcks (pp) Renbp", "shared_name" : "Marcks (pp) Renbp", "SUID" : 599527, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599681", "source" : "587783", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Rasgrp1", "weight" : 0.468670003073, "name" : "Marcks (pp) Rasgrp1", "shared_name" : "Marcks (pp) Rasgrp1", "SUID" : 599681, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599452", "source" : "587783", "target" : "588185", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Aif1", "weight" : 0.427551870989, "name" : "Marcks (pp) Aif1", "shared_name" : "Marcks (pp) Aif1", "SUID" : 599452, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599416", "source" : "587783", "target" : "587989", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Tyrobp", "weight" : 0.410143877374, "name" : "Marcks (pp) Tyrobp", "shared_name" : "Marcks (pp) Tyrobp", "SUID" : 599416, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599384", "source" : "587783", "target" : "587818", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Ifi30", "weight" : 0.508594970689, "name" : "Marcks (pp) Ifi30", "shared_name" : "Marcks (pp) Ifi30", "SUID" : 599384, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599503", "source" : "587783", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Cyp7b1", "weight" : 0.539674109216, "name" : "Marcks (pp) Cyp7b1", "shared_name" : "Marcks (pp) Cyp7b1", "SUID" : 599503, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599487", "source" : "587783", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Cxcl16", "weight" : 0.512629272542, "name" : "Marcks (pp) Cxcl16", "shared_name" : "Marcks (pp) Cxcl16", "SUID" : 599487, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599562", "source" : "587783", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Gngt2", "weight" : 0.457298560903, "name" : "Marcks (pp) Gngt2", "shared_name" : "Marcks (pp) Gngt2", "SUID" : 599562, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599390", "source" : "587783", "target" : "587851", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Sh3kbp1", "weight" : 0.406478397531, "name" : "Marcks (pp) Sh3kbp1", "shared_name" : "Marcks (pp) Sh3kbp1", "SUID" : 599390, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599596", "source" : "587783", "target" : "588742", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Ifitm6", "weight" : 0.442678647617, "name" : "Marcks (pp) Ifitm6", "shared_name" : "Marcks (pp) Ifitm6", "SUID" : 599596, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599608", "source" : "587783", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Obrgrp", "weight" : 0.503294355871, "name" : "Marcks (pp) Obrgrp", "shared_name" : "Marcks (pp) Obrgrp", "SUID" : 599608, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599435", "source" : "587783", "target" : "588086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Iqgap1", "weight" : 0.414526171312, "name" : "Marcks (pp) Iqgap1", "shared_name" : "Marcks (pp) Iqgap1", "SUID" : 599435, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599568", "source" : "587783", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Casp1", "weight" : 0.421380866438, "name" : "Marcks (pp) Casp1", "shared_name" : "Marcks (pp) Casp1", "SUID" : 599568, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599438", "source" : "587783", "target" : "588104", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Bmp1", "weight" : 0.421856821051, "name" : "Marcks (pp) Bmp1", "shared_name" : "Marcks (pp) Bmp1", "SUID" : 599438, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599584", "source" : "587783", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Cd52", "weight" : 0.543693351771, "name" : "Marcks (pp) Cd52", "shared_name" : "Marcks (pp) Cd52", "SUID" : 599584, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599449", "source" : "587783", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Pip4k2a", "weight" : 0.506045994279, "name" : "Marcks (pp) Pip4k2a", "shared_name" : "Marcks (pp) Pip4k2a", "SUID" : 599449, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599388", "source" : "587783", "target" : "587844", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Ear2", "weight" : 0.546974641199, "name" : "Marcks (pp) Ear2", "shared_name" : "Marcks (pp) Ear2", "SUID" : 599388, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599490", "source" : "587783", "target" : "588322", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Pfkfb4", "weight" : 0.510972452, "name" : "Marcks (pp) Pfkfb4", "shared_name" : "Marcks (pp) Pfkfb4", "SUID" : 599490, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599459", "source" : "587783", "target" : "588212", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Anxa3", "weight" : 0.580000696679, "name" : "Marcks (pp) Anxa3", "shared_name" : "Marcks (pp) Anxa3", "SUID" : 599459, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599560", "source" : "587783", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Slc11a1", "weight" : 0.606562984177, "name" : "Marcks (pp) Slc11a1", "shared_name" : "Marcks (pp) Slc11a1", "SUID" : 599560, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599697", "source" : "587783", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Ear10", "weight" : 0.418308445552, "name" : "Marcks (pp) Ear10", "shared_name" : "Marcks (pp) Ear10", "SUID" : 599697, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599619", "source" : "587783", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Fcgr3", "weight" : 0.458562515973, "name" : "Marcks (pp) Fcgr3", "shared_name" : "Marcks (pp) Fcgr3", "SUID" : 599619, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599614", "source" : "587783", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Cotl1", "weight" : 0.507294223789, "name" : "Marcks (pp) Cotl1", "shared_name" : "Marcks (pp) Cotl1", "SUID" : 599614, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599579", "source" : "587783", "target" : "588664", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.585539622585, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Marcks (pp) 5033414D02Rik", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.585539622585, "fusion" : "NA", "name" : "Marcks (pp) 5033414D02Rik", "neighborhood" : "NA", "sourceEdge" : 14280.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Marcks (pp) 5033414D02Rik", "combinedscore" : "NA", "SUID" : 599579, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 3.8868E-7, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "599378", "source" : "587783", "target" : "587788", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Nckap1l", "weight" : 0.537679963312, "name" : "Marcks (pp) Nckap1l", "shared_name" : "Marcks (pp) Nckap1l", "SUID" : 599378, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599508", "source" : "587783", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Selplg", "weight" : 0.413324873484, "name" : "Marcks (pp) Selplg", "shared_name" : "Marcks (pp) Selplg", "SUID" : 599508, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599631", "source" : "587783", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) C1qc", "weight" : 0.48596848879, "name" : "Marcks (pp) C1qc", "shared_name" : "Marcks (pp) C1qc", "SUID" : 599631, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599382", "source" : "587783", "target" : "587807", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Evi2a", "weight" : 0.54249683705, "name" : "Marcks (pp) Evi2a", "shared_name" : "Marcks (pp) Evi2a", "SUID" : 599382, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599554", "source" : "587783", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Snn", "weight" : 0.492526656085, "name" : "Marcks (pp) Snn", "shared_name" : "Marcks (pp) Snn", "SUID" : 599554, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599633", "source" : "587783", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Hk3", "weight" : 0.471448165029, "name" : "Marcks (pp) Hk3", "shared_name" : "Marcks (pp) Hk3", "SUID" : 599633, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599650", "source" : "587783", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Csrp1", "weight" : 0.558391624348, "name" : "Marcks (pp) Csrp1", "shared_name" : "Marcks (pp) Csrp1", "SUID" : 599650, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599720", "source" : "587783", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) C1qb", "weight" : 0.621847756121, "name" : "Marcks (pp) C1qb", "shared_name" : "Marcks (pp) C1qb", "SUID" : 599720, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599676", "source" : "587783", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Tmsb4x", "weight" : 0.457794417946, "name" : "Marcks (pp) Tmsb4x", "shared_name" : "Marcks (pp) Tmsb4x", "SUID" : 599676, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599662", "source" : "587783", "target" : "589086", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.545387039807, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Marcks (pp) Cfp", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.545387039807, "fusion" : "NA", "name" : "Marcks (pp) Cfp", "neighborhood" : "NA", "sourceEdge" : 14315.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Marcks (pp) Cfp", "combinedscore" : "NA", "SUID" : 599662, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 6.54499E-7, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "599380", "source" : "587783", "target" : "587798", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Ccnd1", "weight" : 0.542571777451, "name" : "Marcks (pp) Ccnd1", "shared_name" : "Marcks (pp) Ccnd1", "SUID" : 599380, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599573", "source" : "587783", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Gpnmb", "weight" : 0.559706218068, "name" : "Marcks (pp) Gpnmb", "shared_name" : "Marcks (pp) Gpnmb", "SUID" : 599573, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599590", "source" : "587783", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Axl", "weight" : 0.541376241865, "name" : "Marcks (pp) Axl", "shared_name" : "Marcks (pp) Axl", "SUID" : 599590, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599414", "source" : "587783", "target" : "587982", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Plekho2", "weight" : 0.453870048098, "name" : "Marcks (pp) Plekho2", "shared_name" : "Marcks (pp) Plekho2", "SUID" : 599414, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599448", "source" : "587783", "target" : "588151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Ccl4", "weight" : 0.438535886015, "name" : "Marcks (pp) Ccl4", "shared_name" : "Marcks (pp) Ccl4", "SUID" : 599448, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599434", "source" : "587783", "target" : "588081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Capg", "weight" : 0.412511415891, "name" : "Marcks (pp) Capg", "shared_name" : "Marcks (pp) Capg", "SUID" : 599434, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599391", "source" : "587783", "target" : "587855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Marcks (pp) Pkm2", "weight" : 0.479464881871, "name" : "Marcks (pp) Pkm2", "shared_name" : "Marcks (pp) Pkm2", "SUID" : 599391, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673408", "source" : "588785", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5430435G22Rik (pp) Tmem86a", "weight" : 0.417868068434, "name" : "5430435G22Rik (pp) Tmem86a", "shared_name" : "5430435G22Rik (pp) Tmem86a", "SUID" : 673408, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673415", "source" : "588785", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5430435G22Rik (pp) Fcer1g", "weight" : 0.400129080243, "name" : "5430435G22Rik (pp) Fcer1g", "shared_name" : "5430435G22Rik (pp) Fcer1g", "SUID" : 673415, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673418", "source" : "588785", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5430435G22Rik (pp) Lgals3", "weight" : 0.493721009823, "name" : "5430435G22Rik (pp) Lgals3", "shared_name" : "5430435G22Rik (pp) Lgals3", "SUID" : 673418, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673461", "source" : "588785", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5430435G22Rik (pp) Ppif", "weight" : 0.410424815455, "name" : "5430435G22Rik (pp) Ppif", "shared_name" : "5430435G22Rik (pp) Ppif", "SUID" : 673461, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673423", "source" : "588785", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5430435G22Rik (pp) Cytip", "weight" : 0.427237104307, "name" : "5430435G22Rik (pp) Cytip", "shared_name" : "5430435G22Rik (pp) Cytip", "SUID" : 673423, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673469", "source" : "588785", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5430435G22Rik (pp) Ear4", "weight" : 0.422195037626, "name" : "5430435G22Rik (pp) Ear4", "shared_name" : "5430435G22Rik (pp) Ear4", "SUID" : 673469, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673457", "source" : "588785", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5430435G22Rik (pp) Ear10", "weight" : 0.427091151088, "name" : "5430435G22Rik (pp) Ear10", "shared_name" : "5430435G22Rik (pp) Ear10", "SUID" : 673457, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673435", "source" : "588785", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5430435G22Rik (pp) Cfp", "weight" : 0.487206548204, "name" : "5430435G22Rik (pp) Cfp", "shared_name" : "5430435G22Rik (pp) Cfp", "SUID" : 673435, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673412", "source" : "588785", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5430435G22Rik (pp) Cotl1", "weight" : 0.419257275186, "name" : "5430435G22Rik (pp) Cotl1", "shared_name" : "5430435G22Rik (pp) Cotl1", "SUID" : 673412, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673434", "source" : "588785", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5430435G22Rik (pp) Btk", "weight" : 0.443170603675, "name" : "5430435G22Rik (pp) Btk", "shared_name" : "5430435G22Rik (pp) Btk", "SUID" : 673434, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673474", "source" : "588785", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5430435G22Rik (pp) Fblim1", "weight" : 0.402367895218, "name" : "5430435G22Rik (pp) Fblim1", "shared_name" : "5430435G22Rik (pp) Fblim1", "SUID" : 673474, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673446", "source" : "588785", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5430435G22Rik (pp) Rasgrp1", "weight" : 0.463781322543, "name" : "5430435G22Rik (pp) Rasgrp1", "shared_name" : "5430435G22Rik (pp) Rasgrp1", "SUID" : 673446, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673438", "source" : "588785", "target" : "589102", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5430435G22Rik (pp) Gja1", "weight" : 0.432932514026, "name" : "5430435G22Rik (pp) Gja1", "shared_name" : "5430435G22Rik (pp) Gja1", "SUID" : 673438, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673437", "source" : "588785", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5430435G22Rik (pp) Snx10", "weight" : 0.461793557067, "name" : "5430435G22Rik (pp) Snx10", "shared_name" : "5430435G22Rik (pp) Snx10", "SUID" : 673437, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673464", "source" : "588785", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5430435G22Rik (pp) Fcgr4", "weight" : 0.439232399655, "name" : "5430435G22Rik (pp) Fcgr4", "shared_name" : "5430435G22Rik (pp) Fcgr4", "SUID" : 673464, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673454", "source" : "588785", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5430435G22Rik (pp) Serpinb6a", "weight" : 0.458275732442, "name" : "5430435G22Rik (pp) Serpinb6a", "shared_name" : "5430435G22Rik (pp) Serpinb6a", "SUID" : 673454, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673430", "source" : "588785", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5430435G22Rik (pp) Csrp1", "weight" : 0.454156604414, "name" : "5430435G22Rik (pp) Csrp1", "shared_name" : "5430435G22Rik (pp) Csrp1", "SUID" : 673430, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673473", "source" : "588785", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5430435G22Rik (pp) C1qb", "weight" : 0.489554403844, "name" : "5430435G22Rik (pp) C1qb", "shared_name" : "5430435G22Rik (pp) C1qb", "SUID" : 673473, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "673440", "source" : "588785", "target" : "589113", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5430435G22Rik (pp) Ms4a7", "weight" : 0.403944628703, "name" : "5430435G22Rik (pp) Ms4a7", "shared_name" : "5430435G22Rik (pp) Ms4a7", "SUID" : 673440, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638260", "source" : "588227", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Ly86", "weight" : 0.413568725169, "name" : "Gbp2 (pp) Ly86", "shared_name" : "Gbp2 (pp) Ly86", "SUID" : 638260, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638248", "source" : "588227", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Rasgrp1", "weight" : 0.400358076556, "name" : "Gbp2 (pp) Rasgrp1", "shared_name" : "Gbp2 (pp) Rasgrp1", "SUID" : 638248, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638185", "source" : "588227", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Ms4a6d", "weight" : 0.618763852057, "name" : "Gbp2 (pp) Ms4a6d", "shared_name" : "Gbp2 (pp) Ms4a6d", "SUID" : 638185, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638217", "source" : "588227", "target" : "588707", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Cxcl9", "weight" : 0.473124655279, "name" : "Gbp2 (pp) Cxcl9", "shared_name" : "Gbp2 (pp) Cxcl9", "SUID" : 638217, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638207", "source" : "588227", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Slc11a1", "weight" : 0.55747935546, "name" : "Gbp2 (pp) Slc11a1", "shared_name" : "Gbp2 (pp) Slc11a1", "SUID" : 638207, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638204", "source" : "588227", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Cd86", "weight" : 0.482393456264, "name" : "Gbp2 (pp) Cd86", "shared_name" : "Gbp2 (pp) Cd86", "SUID" : 638204, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638236", "source" : "588227", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) H2-DMb1", "weight" : 0.536565909422, "name" : "Gbp2 (pp) H2-DMb1", "shared_name" : "Gbp2 (pp) H2-DMb1", "SUID" : 638236, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638222", "source" : "588227", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Vsig4", "weight" : 0.560017156721, "name" : "Gbp2 (pp) Vsig4", "shared_name" : "Gbp2 (pp) Vsig4", "SUID" : 638222, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638192", "source" : "588227", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Clec4n", "weight" : 0.412308680164, "name" : "Gbp2 (pp) Clec4n", "shared_name" : "Gbp2 (pp) Clec4n", "SUID" : 638192, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638179", "source" : "588227", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Laptm5", "weight" : 0.450089898648, "name" : "Gbp2 (pp) Laptm5", "shared_name" : "Gbp2 (pp) Laptm5", "SUID" : 638179, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638195", "source" : "588227", "target" : "588457", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Ccl5", "weight" : 0.464142603847, "name" : "Gbp2 (pp) Ccl5", "shared_name" : "Gbp2 (pp) Ccl5", "SUID" : 638195, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638216", "source" : "588227", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Cd52", "weight" : 0.56813050646, "name" : "Gbp2 (pp) Cd52", "shared_name" : "Gbp2 (pp) Cd52", "SUID" : 638216, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638251", "source" : "588227", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) H2-DMa", "weight" : 0.557617874269, "name" : "Gbp2 (pp) H2-DMa", "shared_name" : "Gbp2 (pp) H2-DMa", "SUID" : 638251, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638197", "source" : "588227", "target" : "588472", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Ly9", "weight" : 0.450275873133, "name" : "Gbp2 (pp) Ly9", "shared_name" : "Gbp2 (pp) Ly9", "SUID" : 638197, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638186", "source" : "588227", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Cxcl16", "weight" : 0.448604102584, "name" : "Gbp2 (pp) Cxcl16", "shared_name" : "Gbp2 (pp) Cxcl16", "SUID" : 638186, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638240", "source" : "588227", "target" : "589076", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) H2-M3", "weight" : 0.415756457328, "name" : "Gbp2 (pp) H2-M3", "shared_name" : "Gbp2 (pp) H2-M3", "SUID" : 638240, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638261", "source" : "588227", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) C1qb", "weight" : 0.55597041186, "name" : "Gbp2 (pp) C1qb", "shared_name" : "Gbp2 (pp) C1qb", "SUID" : 638261, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638224", "source" : "588227", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Slc15a3", "weight" : 0.448040256078, "name" : "Gbp2 (pp) Slc15a3", "shared_name" : "Gbp2 (pp) Slc15a3", "SUID" : 638224, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638220", "source" : "588227", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Axl", "weight" : 0.446273512997, "name" : "Gbp2 (pp) Axl", "shared_name" : "Gbp2 (pp) Axl", "SUID" : 638220, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638257", "source" : "588227", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Fcgr4", "weight" : 0.609942483866, "name" : "Gbp2 (pp) Fcgr4", "shared_name" : "Gbp2 (pp) Fcgr4", "SUID" : 638257, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638235", "source" : "588227", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Cytip", "weight" : 0.516903366808, "name" : "Gbp2 (pp) Cytip", "shared_name" : "Gbp2 (pp) Cytip", "SUID" : 638235, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638232", "source" : "588227", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Lgals3", "weight" : 0.417118180391, "name" : "Gbp2 (pp) Lgals3", "shared_name" : "Gbp2 (pp) Lgals3", "SUID" : 638232, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638205", "source" : "588227", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Coro1a", "weight" : 0.575817591286, "name" : "Gbp2 (pp) Coro1a", "shared_name" : "Gbp2 (pp) Coro1a", "SUID" : 638205, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638181", "source" : "588227", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Sdc3", "weight" : 0.439252208587, "name" : "Gbp2 (pp) Sdc3", "shared_name" : "Gbp2 (pp) Sdc3", "SUID" : 638181, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638211", "source" : "588227", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Casp1", "weight" : 0.640699470106, "name" : "Gbp2 (pp) Casp1", "shared_name" : "Gbp2 (pp) Casp1", "SUID" : 638211, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638221", "source" : "588227", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Tpm4", "weight" : 0.42940647746, "name" : "Gbp2 (pp) Tpm4", "shared_name" : "Gbp2 (pp) Tpm4", "SUID" : 638221, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638259", "source" : "588227", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Ear4", "weight" : 0.419832939637, "name" : "Gbp2 (pp) Ear4", "shared_name" : "Gbp2 (pp) Ear4", "SUID" : 638259, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638190", "source" : "588227", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Selplg", "weight" : 0.482387819468, "name" : "Gbp2 (pp) Selplg", "shared_name" : "Gbp2 (pp) Selplg", "SUID" : 638190, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638230", "source" : "588227", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Plac8", "weight" : 0.427478398801, "name" : "Gbp2 (pp) Plac8", "shared_name" : "Gbp2 (pp) Plac8", "SUID" : 638230, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638231", "source" : "588227", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Fcer1g", "weight" : 0.484072296959, "name" : "Gbp2 (pp) Fcer1g", "shared_name" : "Gbp2 (pp) Fcer1g", "SUID" : 638231, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638223", "source" : "588227", "target" : "588740", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Plekha2", "weight" : 0.482551501425, "name" : "Gbp2 (pp) Plekha2", "shared_name" : "Gbp2 (pp) Plekha2", "SUID" : 638223, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638201", "source" : "588227", "target" : "588512", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) H2-Eb1", "weight" : 0.431414069804, "name" : "Gbp2 (pp) H2-Eb1", "shared_name" : "Gbp2 (pp) H2-Eb1", "SUID" : 638201, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638225", "source" : "588227", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) 5430435G22Rik", "weight" : 0.43572712405, "name" : "Gbp2 (pp) 5430435G22Rik", "shared_name" : "Gbp2 (pp) 5430435G22Rik", "SUID" : 638225, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638200", "source" : "588227", "target" : "588492", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Ncf4", "weight" : 0.424674420336, "name" : "Gbp2 (pp) Ncf4", "shared_name" : "Gbp2 (pp) Ncf4", "SUID" : 638200, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638218", "source" : "588227", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Serpina3g", "weight" : 0.587058276777, "name" : "Gbp2 (pp) Serpina3g", "shared_name" : "Gbp2 (pp) Serpina3g", "SUID" : 638218, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "638234", "source" : "588227", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gbp2 (pp) Hk3", "weight" : 0.523507379373, "name" : "Gbp2 (pp) Hk3", "shared_name" : "Gbp2 (pp) Hk3", "SUID" : 638234, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656359", "source" : "588457", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl5 (pp) Cytip", "weight" : 0.411722903476, "name" : "Ccl5 (pp) Cytip", "shared_name" : "Ccl5 (pp) Cytip", "SUID" : 656359, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656364", "source" : "588457", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl5 (pp) H2-DMa", "weight" : 0.630796197519, "name" : "Ccl5 (pp) H2-DMa", "shared_name" : "Ccl5 (pp) H2-DMa", "SUID" : 656364, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656345", "source" : "588457", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl5 (pp) Casp1", "weight" : 0.483588642833, "name" : "Ccl5 (pp) Casp1", "shared_name" : "Ccl5 (pp) Casp1", "SUID" : 656345, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656360", "source" : "588457", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl5 (pp) H2-DMb1", "weight" : 0.597287493758, "name" : "Ccl5 (pp) H2-DMb1", "shared_name" : "Ccl5 (pp) H2-DMb1", "SUID" : 656360, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656349", "source" : "588457", "target" : "588707", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl5 (pp) Cxcl9", "weight" : 0.61065961764, "name" : "Ccl5 (pp) Cxcl9", "shared_name" : "Ccl5 (pp) Cxcl9", "SUID" : 656349, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656341", "source" : "588457", "target" : "588512", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl5 (pp) H2-Eb1", "weight" : 0.539265893192, "name" : "Ccl5 (pp) H2-Eb1", "shared_name" : "Ccl5 (pp) H2-Eb1", "SUID" : 656341, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656348", "source" : "588457", "target" : "588697", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.47925031298, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ccl5 (pp) Cd52", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 3.69399E-4, "weight" : 0.47925031298, "fusion" : "NA", "name" : "Ccl5 (pp) Cd52", "neighborhood" : "NA", "sourceEdge" : 108277.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ccl5 (pp) Cd52", "combinedscore" : "NA", "SUID" : 656348, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "603054", "source" : "587818", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Pip4k2a", "weight" : 0.489866048541, "name" : "Ifi30 (pp) Pip4k2a", "shared_name" : "Ifi30 (pp) Pip4k2a", "SUID" : 603054, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603199", "source" : "587818", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Tpm4", "weight" : 0.414387099171, "name" : "Ifi30 (pp) Tpm4", "shared_name" : "Ifi30 (pp) Tpm4", "SUID" : 603199, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602989", "source" : "587818", "target" : "587855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Pkm2", "weight" : 0.748886528493, "name" : "Ifi30 (pp) Pkm2", "shared_name" : "Ifi30 (pp) Pkm2", "SUID" : 602989, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603263", "source" : "587818", "target" : "589076", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) H2-M3", "weight" : 0.414092961344, "name" : "Ifi30 (pp) H2-M3", "shared_name" : "Ifi30 (pp) H2-M3", "SUID" : 603263, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603169", "source" : "587818", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Gngt2", "weight" : 0.684520962005, "name" : "Ifi30 (pp) Gngt2", "shared_name" : "Ifi30 (pp) Gngt2", "SUID" : 603169, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603235", "source" : "587818", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Hk3", "weight" : 0.500241747132, "name" : "Ifi30 (pp) Hk3", "shared_name" : "Ifi30 (pp) Hk3", "SUID" : 603235, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603076", "source" : "587818", "target" : "588254", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Irf8", "weight" : 0.470758950623, "name" : "Ifi30 (pp) Irf8", "shared_name" : "Ifi30 (pp) Irf8", "SUID" : 603076, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603186", "source" : "587818", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) 5033414D02Rik", "weight" : 0.54734751408, "name" : "Ifi30 (pp) 5033414D02Rik", "shared_name" : "Ifi30 (pp) 5033414D02Rik", "SUID" : 603186, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603196", "source" : "587818", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Tlr2", "weight" : 0.447933046204, "name" : "Ifi30 (pp) Tlr2", "shared_name" : "Ifi30 (pp) Tlr2", "SUID" : 603196, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603206", "source" : "587818", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Slc15a3", "weight" : 0.695238064776, "name" : "Ifi30 (pp) Slc15a3", "shared_name" : "Ifi30 (pp) Slc15a3", "SUID" : 603206, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603117", "source" : "587818", "target" : "588394", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Lyzs", "weight" : 0.535883377489, "name" : "Ifi30 (pp) Lyzs", "shared_name" : "Ifi30 (pp) Lyzs", "SUID" : 603117, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603325", "source" : "587818", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Ly86", "weight" : 0.638487797916, "name" : "Ifi30 (pp) Ly86", "shared_name" : "Ifi30 (pp) Ly86", "SUID" : 603325, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603201", "source" : "587818", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Vsig4", "weight" : 0.501665875484, "name" : "Ifi30 (pp) Vsig4", "shared_name" : "Ifi30 (pp) Vsig4", "SUID" : 603201, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603073", "source" : "587818", "target" : "588244", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Gltp", "weight" : 0.562022353996, "name" : "Ifi30 (pp) Gltp", "shared_name" : "Ifi30 (pp) Gltp", "SUID" : 603073, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603020", "source" : "587818", "target" : "588010", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Cd84", "weight" : 0.592102735222, "name" : "Ifi30 (pp) Cd84", "shared_name" : "Ifi30 (pp) Cd84", "SUID" : 603020, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602983", "source" : "587818", "target" : "587829", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Fyb", "weight" : 0.410323392512, "name" : "Ifi30 (pp) Fyb", "shared_name" : "Ifi30 (pp) Fyb", "SUID" : 602983, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603194", "source" : "587818", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) 6330416G13Rik", "weight" : 0.549668787168, "name" : "Ifi30 (pp) 6330416G13Rik", "shared_name" : "Ifi30 (pp) 6330416G13Rik", "SUID" : 603194, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603039", "source" : "587818", "target" : "588086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Iqgap1", "weight" : 0.485332440604, "name" : "Ifi30 (pp) Iqgap1", "shared_name" : "Ifi30 (pp) Iqgap1", "SUID" : 603039, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603119", "source" : "587818", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Cd14", "weight" : 0.535355456549, "name" : "Ifi30 (pp) Cd14", "shared_name" : "Ifi30 (pp) Cd14", "SUID" : 603119, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603233", "source" : "587818", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) C1qc", "weight" : 0.699890938684, "name" : "Ifi30 (pp) C1qc", "shared_name" : "Ifi30 (pp) C1qc", "SUID" : 603233, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603135", "source" : "587818", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Plscr1", "weight" : 0.448208514639, "name" : "Ifi30 (pp) Plscr1", "shared_name" : "Ifi30 (pp) Plscr1", "SUID" : 603135, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603197", "source" : "587818", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Axl", "weight" : 0.67896521032, "name" : "Ifi30 (pp) Axl", "shared_name" : "Ifi30 (pp) Axl", "SUID" : 603197, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603074", "source" : "587818", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Sdc3", "weight" : 0.555535867658, "name" : "Ifi30 (pp) Sdc3", "shared_name" : "Ifi30 (pp) Sdc3", "SUID" : 603074, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603283", "source" : "587818", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Tmsb4x", "weight" : 0.548602752651, "name" : "Ifi30 (pp) Tmsb4x", "shared_name" : "Ifi30 (pp) Tmsb4x", "SUID" : 603283, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603113", "source" : "587818", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Selplg", "weight" : 0.478555179695, "name" : "Ifi30 (pp) Selplg", "shared_name" : "Ifi30 (pp) Selplg", "SUID" : 603113, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603271", "source" : "587818", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Pld4", "weight" : 0.442319655705, "name" : "Ifi30 (pp) Pld4", "shared_name" : "Ifi30 (pp) Pld4", "SUID" : 603271, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603164", "source" : "587818", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Coro1a", "weight" : 0.580717870579, "name" : "Ifi30 (pp) Coro1a", "shared_name" : "Ifi30 (pp) Coro1a", "SUID" : 603164, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603086", "source" : "587818", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Ms4a6d", "weight" : 0.500086370107, "name" : "Ifi30 (pp) Ms4a6d", "shared_name" : "Ifi30 (pp) Ms4a6d", "SUID" : 603086, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603147", "source" : "587818", "target" : "588517", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Rac2", "weight" : 0.558348804457, "name" : "Ifi30 (pp) Rac2", "shared_name" : "Ifi30 (pp) Rac2", "SUID" : 603147, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603024", "source" : "587818", "target" : "588024", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Cd68", "weight" : 0.607316204585, "name" : "Ifi30 (pp) Cd68", "shared_name" : "Ifi30 (pp) Cd68", "SUID" : 603024, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603223", "source" : "587818", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Fcgr3", "weight" : 0.635674420311, "name" : "Ifi30 (pp) Fcgr3", "shared_name" : "Ifi30 (pp) Fcgr3", "SUID" : 603223, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603052", "source" : "587818", "target" : "588151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Ccl4", "weight" : 0.46229280096, "name" : "Ifi30 (pp) Ccl4", "shared_name" : "Ifi30 (pp) Ccl4", "SUID" : 603052, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603268", "source" : "587818", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Cfp", "weight" : 0.543468531064, "name" : "Ifi30 (pp) Cfp", "shared_name" : "Ifi30 (pp) Cfp", "SUID" : 603268, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603123", "source" : "587818", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Clec4n", "weight" : 0.677372212755, "name" : "Ifi30 (pp) Clec4n", "shared_name" : "Ifi30 (pp) Clec4n", "SUID" : 603123, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603126", "source" : "587818", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Cd63", "weight" : 0.515639946709, "name" : "Ifi30 (pp) Cd63", "shared_name" : "Ifi30 (pp) Cd63", "SUID" : 603126, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603221", "source" : "587818", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Fcer1g", "weight" : 0.69247098097, "name" : "Ifi30 (pp) Fcer1g", "shared_name" : "Ifi30 (pp) Fcer1g", "SUID" : 603221, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603133", "source" : "587818", "target" : "588472", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Ly9", "weight" : 0.464783523611, "name" : "Ifi30 (pp) Ly9", "shared_name" : "Ifi30 (pp) Ly9", "SUID" : 603133, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603320", "source" : "587818", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Ear4", "weight" : 0.670583805503, "name" : "Ifi30 (pp) Ear4", "shared_name" : "Ifi30 (pp) Ear4", "SUID" : 603320, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603056", "source" : "587818", "target" : "588185", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Aif1", "weight" : 0.455731346998, "name" : "Ifi30 (pp) Aif1", "shared_name" : "Ifi30 (pp) Aif1", "SUID" : 603056, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603266", "source" : "587818", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Btk", "weight" : 0.407832848959, "name" : "Ifi30 (pp) Btk", "shared_name" : "Ifi30 (pp) Btk", "SUID" : 603266, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603072", "source" : "587818", "target" : "588242", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Cd83", "weight" : 0.554353967479, "name" : "Ifi30 (pp) Cd83", "shared_name" : "Ifi30 (pp) Cd83", "SUID" : 603072, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603140", "source" : "587818", "target" : "588496", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Gphn", "weight" : 0.488863062582, "name" : "Ifi30 (pp) Gphn", "shared_name" : "Ifi30 (pp) Gphn", "SUID" : 603140, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603326", "source" : "587818", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) C1qb", "weight" : 0.677824703724, "name" : "Ifi30 (pp) C1qb", "shared_name" : "Ifi30 (pp) C1qb", "SUID" : 603326, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603314", "source" : "587818", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Fcgr4", "weight" : 0.625188954807, "name" : "Ifi30 (pp) Fcgr4", "shared_name" : "Ifi30 (pp) Fcgr4", "SUID" : 603314, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603093", "source" : "587818", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Cxcl16", "weight" : 0.606614363313, "name" : "Ifi30 (pp) Cxcl16", "shared_name" : "Ifi30 (pp) Cxcl16", "SUID" : 603093, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603212", "source" : "587818", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Obrgrp", "weight" : 0.498325998253, "name" : "Ifi30 (pp) Obrgrp", "shared_name" : "Ifi30 (pp) Obrgrp", "SUID" : 603212, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603063", "source" : "587818", "target" : "588212", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Anxa3", "weight" : 0.455595957923, "name" : "Ifi30 (pp) Anxa3", "shared_name" : "Ifi30 (pp) Anxa3", "SUID" : 603063, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602997", "source" : "587818", "target" : "587881", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Vav1", "weight" : 0.452515944329, "name" : "Ifi30 (pp) Vav1", "shared_name" : "Ifi30 (pp) Vav1", "SUID" : 602997, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602990", "source" : "587818", "target" : "587857", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Lgmn", "weight" : 0.832358989838, "name" : "Ifi30 (pp) Lgmn", "shared_name" : "Ifi30 (pp) Lgmn", "SUID" : 602990, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603191", "source" : "587818", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Cd52", "weight" : 0.605592120862, "name" : "Ifi30 (pp) Cd52", "shared_name" : "Ifi30 (pp) Cd52", "SUID" : 603191, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603101", "source" : "587818", "target" : "588335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Arpc1b", "weight" : 0.423680079036, "name" : "Ifi30 (pp) Arpc1b", "shared_name" : "Ifi30 (pp) Arpc1b", "SUID" : 603101, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603016", "source" : "587818", "target" : "587989", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Tyrobp", "weight" : 0.641406653834, "name" : "Ifi30 (pp) Tyrobp", "shared_name" : "Ifi30 (pp) Tyrobp", "SUID" : 603016, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602988", "source" : "587818", "target" : "587851", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Sh3kbp1", "weight" : 0.452072321558, "name" : "Ifi30 (pp) Sh3kbp1", "shared_name" : "Ifi30 (pp) Sh3kbp1", "SUID" : 602988, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603195", "source" : "587818", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Serpina3g", "weight" : 0.474809490577, "name" : "Ifi30 (pp) Serpina3g", "shared_name" : "Ifi30 (pp) Serpina3g", "SUID" : 603195, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603011", "source" : "587818", "target" : "587966", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Cyba", "weight" : 0.818554774533, "name" : "Ifi30 (pp) Cyba", "shared_name" : "Ifi30 (pp) Cyba", "SUID" : 603011, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603173", "source" : "587818", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Casp1", "weight" : 0.435066032277, "name" : "Ifi30 (pp) Casp1", "shared_name" : "Ifi30 (pp) Casp1", "SUID" : 603173, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603203", "source" : "587818", "target" : "588742", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Ifitm6", "weight" : 0.514486636512, "name" : "Ifi30 (pp) Ifitm6", "shared_name" : "Ifi30 (pp) Ifitm6", "SUID" : 603203, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603047", "source" : "587818", "target" : "588127", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Lpxn", "weight" : 0.437752583391, "name" : "Ifi30 (pp) Lpxn", "shared_name" : "Ifi30 (pp) Lpxn", "SUID" : 603047, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603167", "source" : "587818", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Slc11a1", "weight" : 0.728861451757, "name" : "Ifi30 (pp) Slc11a1", "shared_name" : "Ifi30 (pp) Slc11a1", "SUID" : 603167, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603208", "source" : "587818", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Ccl6", "weight" : 0.523043312752, "name" : "Ifi30 (pp) Ccl6", "shared_name" : "Ifi30 (pp) Ccl6", "SUID" : 603208, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603175", "source" : "587818", "target" : "588636", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Repin1", "weight" : 0.424714819978, "name" : "Ifi30 (pp) Repin1", "shared_name" : "Ifi30 (pp) Repin1", "SUID" : 603175, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603198", "source" : "587818", "target" : "588728", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) AB124611", "weight" : 0.428052490435, "name" : "Ifi30 (pp) AB124611", "shared_name" : "Ifi30 (pp) AB124611", "SUID" : 603198, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603035", "source" : "587818", "target" : "588069", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) A430084P05Rik", "weight" : 0.536184623973, "name" : "Ifi30 (pp) A430084P05Rik", "shared_name" : "Ifi30 (pp) A430084P05Rik", "SUID" : 603035, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602986", "source" : "587818", "target" : "587844", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Ear2", "weight" : 0.68802062802, "name" : "Ifi30 (pp) Ear2", "shared_name" : "Ifi30 (pp) Ear2", "SUID" : 602986, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603219", "source" : "587818", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Plac8", "weight" : 0.626552813184, "name" : "Ifi30 (pp) Plac8", "shared_name" : "Ifi30 (pp) Plac8", "SUID" : 603219, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603218", "source" : "587818", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Cotl1", "weight" : 0.642244685331, "name" : "Ifi30 (pp) Cotl1", "shared_name" : "Ifi30 (pp) Cotl1", "SUID" : 603218, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603125", "source" : "587818", "target" : "588439", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Vim", "weight" : 0.469886229618, "name" : "Ifi30 (pp) Vim", "shared_name" : "Ifi30 (pp) Vim", "SUID" : 603125, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603254", "source" : "587818", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Csrp1", "weight" : 0.635375023135, "name" : "Ifi30 (pp) Csrp1", "shared_name" : "Ifi30 (pp) Csrp1", "SUID" : 603254, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603069", "source" : "587818", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Laptm5", "weight" : 0.50941486996, "name" : "Ifi30 (pp) Laptm5", "shared_name" : "Ifi30 (pp) Laptm5", "SUID" : 603069, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603038", "source" : "587818", "target" : "588081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Capg", "weight" : 0.420767165331, "name" : "Ifi30 (pp) Capg", "shared_name" : "Ifi30 (pp) Capg", "SUID" : 603038, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603310", "source" : "587818", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Abi3", "weight" : 0.443860287893, "name" : "Ifi30 (pp) Abi3", "shared_name" : "Ifi30 (pp) Abi3", "SUID" : 603310, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603042", "source" : "587818", "target" : "588104", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Bmp1", "weight" : 0.450214322932, "name" : "Ifi30 (pp) Bmp1", "shared_name" : "Ifi30 (pp) Bmp1", "SUID" : 603042, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603165", "source" : "587818", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Tmsb10", "weight" : 0.572246580902, "name" : "Ifi30 (pp) Tmsb10", "shared_name" : "Ifi30 (pp) Tmsb10", "SUID" : 603165, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603236", "source" : "587818", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Cytip", "weight" : 0.501575879059, "name" : "Ifi30 (pp) Cytip", "shared_name" : "Ifi30 (pp) Cytip", "SUID" : 603236, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603278", "source" : "587818", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Vcam1", "weight" : 0.649778963687, "name" : "Ifi30 (pp) Vcam1", "shared_name" : "Ifi30 (pp) Vcam1", "SUID" : 603278, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603178", "source" : "587818", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Gpnmb", "weight" : 0.522891913094, "name" : "Ifi30 (pp) Gpnmb", "shared_name" : "Ifi30 (pp) Gpnmb", "SUID" : 603178, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603330", "source" : "587818", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Lrrc33", "weight" : 0.451842996505, "name" : "Ifi30 (pp) Lrrc33", "shared_name" : "Ifi30 (pp) Lrrc33", "SUID" : 603330, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603227", "source" : "587818", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Lgals3", "weight" : 0.643228261432, "name" : "Ifi30 (pp) Lgals3", "shared_name" : "Ifi30 (pp) Lgals3", "SUID" : 603227, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603298", "source" : "587818", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Serpinb6a", "weight" : 0.599563855701, "name" : "Ifi30 (pp) Serpinb6a", "shared_name" : "Ifi30 (pp) Serpinb6a", "SUID" : 603298, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603157", "source" : "587818", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Cd86", "weight" : 0.58892256028, "name" : "Ifi30 (pp) Cd86", "shared_name" : "Ifi30 (pp) Cd86", "SUID" : 603157, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603107", "source" : "587818", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Cyp7b1", "weight" : 0.604931294523, "name" : "Ifi30 (pp) Cyp7b1", "shared_name" : "Ifi30 (pp) Cyp7b1", "SUID" : 603107, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602992", "source" : "587818", "target" : "587864", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Spic", "weight" : 0.405214344487, "name" : "Ifi30 (pp) Spic", "shared_name" : "Ifi30 (pp) Spic", "SUID" : 602992, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603051", "source" : "587818", "target" : "588147", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Ppic", "weight" : 0.442456889462, "name" : "Ifi30 (pp) Ppic", "shared_name" : "Ifi30 (pp) Ppic", "SUID" : 603051, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603161", "source" : "587818", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Snn", "weight" : 0.42269058309, "name" : "Ifi30 (pp) Snn", "shared_name" : "Ifi30 (pp) Snn", "SUID" : 603161, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603015", "source" : "587818", "target" : "587982", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Plekho2", "weight" : 0.507210773795, "name" : "Ifi30 (pp) Plekho2", "shared_name" : "Ifi30 (pp) Plekho2", "SUID" : 603015, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603077", "source" : "587818", "target" : "588257", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Sdcbp", "weight" : 0.445977128496, "name" : "Ifi30 (pp) Sdcbp", "shared_name" : "Ifi30 (pp) Sdcbp", "SUID" : 603077, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603110", "source" : "587818", "target" : "588365", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Tnfaip8l2", "weight" : 0.438743594177, "name" : "Ifi30 (pp) Tnfaip8l2", "shared_name" : "Ifi30 (pp) Tnfaip8l2", "SUID" : 603110, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603209", "source" : "587818", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Tmem86a", "weight" : 0.414509551435, "name" : "Ifi30 (pp) Tmem86a", "shared_name" : "Ifi30 (pp) Tmem86a", "SUID" : 603209, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603064", "source" : "587818", "target" : "588213", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) Pdlim4", "weight" : 0.451403883872, "name" : "Ifi30 (pp) Pdlim4", "shared_name" : "Ifi30 (pp) Pdlim4", "SUID" : 603064, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603301", "source" : "587818", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ifi30 (pp) H2-DMa", "weight" : 0.423316038016, "name" : "Ifi30 (pp) H2-DMa", "shared_name" : "Ifi30 (pp) H2-DMa", "SUID" : 603301, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637234", "source" : "588213", "target" : "588365", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Tnfaip8l2", "weight" : 0.431114887484, "name" : "Pdlim4 (pp) Tnfaip8l2", "shared_name" : "Pdlim4 (pp) Tnfaip8l2", "SUID" : 637234, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637284", "source" : "588213", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Fcer1g", "weight" : 0.506642176413, "name" : "Pdlim4 (pp) Fcer1g", "shared_name" : "Pdlim4 (pp) Fcer1g", "SUID" : 637284, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637326", "source" : "588213", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Ly86", "weight" : 0.450503180276, "name" : "Pdlim4 (pp) Ly86", "shared_name" : "Pdlim4 (pp) Ly86", "SUID" : 637326, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637330", "source" : "588213", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Lmo2", "weight" : 0.436910353748, "name" : "Pdlim4 (pp) Lmo2", "shared_name" : "Pdlim4 (pp) Lmo2", "SUID" : 637330, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637251", "source" : "588213", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Cd86", "weight" : 0.545395327605, "name" : "Pdlim4 (pp) Cd86", "shared_name" : "Pdlim4 (pp) Cd86", "SUID" : 637251, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637269", "source" : "588213", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Axl", "weight" : 0.48964601941, "name" : "Pdlim4 (pp) Axl", "shared_name" : "Pdlim4 (pp) Axl", "SUID" : 637269, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637220", "source" : "588213", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Sdc3", "weight" : 0.409994536833, "name" : "Pdlim4 (pp) Sdc3", "shared_name" : "Pdlim4 (pp) Sdc3", "SUID" : 637220, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637315", "source" : "588213", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Ear10", "weight" : 0.409770463015, "name" : "Pdlim4 (pp) Ear10", "shared_name" : "Pdlim4 (pp) Ear10", "SUID" : 637315, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637277", "source" : "588213", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Tmem86a", "weight" : 0.410422850875, "name" : "Pdlim4 (pp) Tmem86a", "shared_name" : "Pdlim4 (pp) Tmem86a", "SUID" : 637277, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637274", "source" : "588213", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Slc15a3", "weight" : 0.511301911045, "name" : "Pdlim4 (pp) Slc15a3", "shared_name" : "Pdlim4 (pp) Slc15a3", "SUID" : 637274, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637255", "source" : "588213", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Slc11a1", "weight" : 0.552854763372, "name" : "Pdlim4 (pp) Slc11a1", "shared_name" : "Pdlim4 (pp) Slc11a1", "SUID" : 637255, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637239", "source" : "588213", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Clec4n", "weight" : 0.408506537687, "name" : "Pdlim4 (pp) Clec4n", "shared_name" : "Pdlim4 (pp) Clec4n", "SUID" : 637239, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637258", "source" : "588213", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Casp1", "weight" : 0.542903216947, "name" : "Pdlim4 (pp) Casp1", "shared_name" : "Pdlim4 (pp) Casp1", "SUID" : 637258, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637256", "source" : "588213", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Gngt2", "weight" : 0.432678606419, "name" : "Pdlim4 (pp) Gngt2", "shared_name" : "Pdlim4 (pp) Gngt2", "SUID" : 637256, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637272", "source" : "588213", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Vsig4", "weight" : 0.618645160231, "name" : "Pdlim4 (pp) Vsig4", "shared_name" : "Pdlim4 (pp) Vsig4", "SUID" : 637272, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637286", "source" : "588213", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Lgals3", "weight" : 0.4357493113, "name" : "Pdlim4 (pp) Lgals3", "shared_name" : "Pdlim4 (pp) Lgals3", "SUID" : 637286, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637302", "source" : "588213", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Cfp", "weight" : 0.520533897708, "name" : "Pdlim4 (pp) Cfp", "shared_name" : "Pdlim4 (pp) Cfp", "SUID" : 637302, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637282", "source" : "588213", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Cotl1", "weight" : 0.413841063078, "name" : "Pdlim4 (pp) Cotl1", "shared_name" : "Pdlim4 (pp) Cotl1", "SUID" : 637282, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637223", "source" : "588213", "target" : "588262", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) P2ry13", "weight" : 0.425189894945, "name" : "Pdlim4 (pp) P2ry13", "shared_name" : "Pdlim4 (pp) P2ry13", "SUID" : 637223, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637325", "source" : "588213", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Ear4", "weight" : 0.474430746633, "name" : "Pdlim4 (pp) Ear4", "shared_name" : "Pdlim4 (pp) Ear4", "SUID" : 637325, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637309", "source" : "588213", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Rasgrp1", "weight" : 0.441761903902, "name" : "Pdlim4 (pp) Rasgrp1", "shared_name" : "Pdlim4 (pp) Rasgrp1", "SUID" : 637309, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637312", "source" : "588213", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Serpinb6a", "weight" : 0.431437435334, "name" : "Pdlim4 (pp) Serpinb6a", "shared_name" : "Pdlim4 (pp) Serpinb6a", "SUID" : 637312, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637327", "source" : "588213", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) C1qb", "weight" : 0.589594895194, "name" : "Pdlim4 (pp) C1qb", "shared_name" : "Pdlim4 (pp) C1qb", "SUID" : 637327, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637257", "source" : "588213", "target" : "588608", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Treml4", "weight" : 0.464619330123, "name" : "Pdlim4 (pp) Treml4", "shared_name" : "Pdlim4 (pp) Treml4", "SUID" : 637257, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637243", "source" : "588213", "target" : "588461", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Tbxas1", "weight" : 0.510763611575, "name" : "Pdlim4 (pp) Tbxas1", "shared_name" : "Pdlim4 (pp) Tbxas1", "SUID" : 637243, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637281", "source" : "588213", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Pla2g15", "weight" : 0.401631473763, "name" : "Pdlim4 (pp) Pla2g15", "shared_name" : "Pdlim4 (pp) Pla2g15", "SUID" : 637281, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637225", "source" : "588213", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Ms4a6d", "weight" : 0.484843883077, "name" : "Pdlim4 (pp) Ms4a6d", "shared_name" : "Pdlim4 (pp) Ms4a6d", "SUID" : 637225, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637216", "source" : "588213", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Laptm5", "weight" : 0.530720925424, "name" : "Pdlim4 (pp) Laptm5", "shared_name" : "Pdlim4 (pp) Laptm5", "SUID" : 637216, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637254", "source" : "588213", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Coro1a", "weight" : 0.451357466148, "name" : "Pdlim4 (pp) Coro1a", "shared_name" : "Pdlim4 (pp) Coro1a", "SUID" : 637254, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637289", "source" : "588213", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Hk3", "weight" : 0.457136735297, "name" : "Pdlim4 (pp) Hk3", "shared_name" : "Pdlim4 (pp) Hk3", "SUID" : 637289, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637265", "source" : "588213", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Cd52", "weight" : 0.402810733601, "name" : "Pdlim4 (pp) Cd52", "shared_name" : "Pdlim4 (pp) Cd52", "SUID" : 637265, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "637322", "source" : "588213", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pdlim4 (pp) Fcgr4", "weight" : 0.47428664257, "name" : "Pdlim4 (pp) Fcgr4", "shared_name" : "Pdlim4 (pp) Fcgr4", "SUID" : 637322, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683679", "source" : "589113", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a7 (pp) Rasgrp1", "weight" : 0.450450000494, "name" : "Ms4a7 (pp) Rasgrp1", "shared_name" : "Ms4a7 (pp) Rasgrp1", "SUID" : 683679, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683686", "source" : "589113", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a7 (pp) Serpinb6a", "weight" : 0.463491617033, "name" : "Ms4a7 (pp) Serpinb6a", "shared_name" : "Ms4a7 (pp) Serpinb6a", "SUID" : 683686, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683707", "source" : "589113", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a7 (pp) Fblim1", "weight" : 0.417078035624, "name" : "Ms4a7 (pp) Fblim1", "shared_name" : "Ms4a7 (pp) Fblim1", "SUID" : 683707, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632059", "source" : "588151", "target" : "588512", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) H2-Eb1", "weight" : 0.429061648869, "name" : "Ccl4 (pp) H2-Eb1", "shared_name" : "Ccl4 (pp) H2-Eb1", "SUID" : 632059, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632092", "source" : "588151", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Tpm4", "weight" : 0.498243476, "name" : "Ccl4 (pp) Tpm4", "shared_name" : "Ccl4 (pp) Tpm4", "SUID" : 632092, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632065", "source" : "588151", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Cd86", "weight" : 0.420880157531, "name" : "Ccl4 (pp) Cd86", "shared_name" : "Ccl4 (pp) Cd86", "SUID" : 632065, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632082", "source" : "588151", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) 5033414D02Rik", "weight" : 0.496170841626, "name" : "Ccl4 (pp) 5033414D02Rik", "shared_name" : "Ccl4 (pp) 5033414D02Rik", "SUID" : 632082, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632160", "source" : "588151", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Ly86", "weight" : 0.475720964198, "name" : "Ccl4 (pp) Ly86", "shared_name" : "Ccl4 (pp) Ly86", "SUID" : 632160, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632072", "source" : "588151", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Gngt2", "weight" : 0.405417464508, "name" : "Ccl4 (pp) Gngt2", "shared_name" : "Ccl4 (pp) Gngt2", "SUID" : 632072, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632150", "source" : "588151", "target" : "589256", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Timp1", "weight" : 0.469746074513, "name" : "Ccl4 (pp) Timp1", "shared_name" : "Ccl4 (pp) Timp1", "SUID" : 632150, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632108", "source" : "588151", "target" : "588886", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.580205218128, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ccl4 (pp) Lgals3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.580205218128, "fusion" : "NA", "name" : "Ccl4 (pp) Lgals3", "neighborhood" : "NA", "sourceEdge" : 71904.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ccl4 (pp) Lgals3", "combinedscore" : "NA", "SUID" : 632108, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 2.081542E-6, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "632079", "source" : "588151", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Gpnmb", "weight" : 0.515171140195, "name" : "Ccl4 (pp) Gpnmb", "shared_name" : "Ccl4 (pp) Gpnmb", "SUID" : 632079, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632103", "source" : "588151", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Cotl1", "weight" : 0.545187483994, "name" : "Ccl4 (pp) Cotl1", "shared_name" : "Ccl4 (pp) Cotl1", "SUID" : 632103, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632153", "source" : "588151", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Fcgr4", "weight" : 0.525198839055, "name" : "Ccl4 (pp) Fcgr4", "shared_name" : "Ccl4 (pp) Fcgr4", "SUID" : 632153, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632025", "source" : "588151", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Sdc3", "weight" : 0.403467181785, "name" : "Ccl4 (pp) Sdc3", "shared_name" : "Ccl4 (pp) Sdc3", "SUID" : 632025, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632049", "source" : "588151", "target" : "588457", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Ccl5", "weight" : 0.504580100748, "name" : "Ccl4 (pp) Ccl5", "shared_name" : "Ccl4 (pp) Ccl5", "SUID" : 632049, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632053", "source" : "588151", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Plscr1", "weight" : 0.42245441613, "name" : "Ccl4 (pp) Plscr1", "shared_name" : "Ccl4 (pp) Plscr1", "SUID" : 632053, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632085", "source" : "588151", "target" : "588697", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.712511318575, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ccl4 (pp) Cd52", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.712511318575, "fusion" : "NA", "name" : "Ccl4 (pp) Cd52", "neighborhood" : "NA", "sourceEdge" : 71883.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ccl4 (pp) Cd52", "combinedscore" : "NA", "SUID" : 632085, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 4.698631E-4, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "632146", "source" : "588151", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) H2-DMa", "weight" : 0.516804772129, "name" : "Ccl4 (pp) H2-DMa", "shared_name" : "Ccl4 (pp) H2-DMa", "SUID" : 632146, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632032", "source" : "588151", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Cxcl16", "weight" : 0.453052239407, "name" : "Ccl4 (pp) Cxcl16", "shared_name" : "Ccl4 (pp) Cxcl16", "SUID" : 632032, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632093", "source" : "588151", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Vsig4", "weight" : 0.470194913251, "name" : "Ccl4 (pp) Vsig4", "shared_name" : "Ccl4 (pp) Vsig4", "SUID" : 632093, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632021", "source" : "588151", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Laptm5", "weight" : 0.473736504707, "name" : "Ccl4 (pp) Laptm5", "shared_name" : "Ccl4 (pp) Laptm5", "SUID" : 632021, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632156", "source" : "588151", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Clec7a", "weight" : 0.48640253353, "name" : "Ccl4 (pp) Clec7a", "shared_name" : "Ccl4 (pp) Clec7a", "SUID" : 632156, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632069", "source" : "588151", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Coro1a", "weight" : 0.594230258827, "name" : "Ccl4 (pp) Coro1a", "shared_name" : "Ccl4 (pp) Coro1a", "SUID" : 632069, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632024", "source" : "588151", "target" : "588244", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Gltp", "weight" : 0.414215381342, "name" : "Ccl4 (pp) Gltp", "shared_name" : "Ccl4 (pp) Gltp", "SUID" : 632024, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632070", "source" : "588151", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Tmsb10", "weight" : 0.618791044883, "name" : "Ccl4 (pp) Tmsb10", "shared_name" : "Ccl4 (pp) Tmsb10", "SUID" : 632070, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632071", "source" : "588151", "target" : "588601", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.562797512008, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ccl4 (pp) Slc11a1", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.562797512008, "fusion" : "NA", "name" : "Ccl4 (pp) Slc11a1", "neighborhood" : "NA", "sourceEdge" : 71873.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ccl4 (pp) Slc11a1", "combinedscore" : "NA", "SUID" : 632071, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 3.766216E-4, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "632076", "source" : "588151", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Casp1", "weight" : 0.532277821416, "name" : "Ccl4 (pp) Casp1", "shared_name" : "Ccl4 (pp) Casp1", "SUID" : 632076, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632098", "source" : "588151", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Ccl6", "weight" : 0.406546722793, "name" : "Ccl4 (pp) Ccl6", "shared_name" : "Ccl4 (pp) Ccl6", "SUID" : 632098, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632019", "source" : "588151", "target" : "588227", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Gbp2", "weight" : 0.540982098819, "name" : "Ccl4 (pp) Gbp2", "shared_name" : "Ccl4 (pp) Gbp2", "SUID" : 632019, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632048", "source" : "588151", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Cd63", "weight" : 0.449358661219, "name" : "Ccl4 (pp) Cd63", "shared_name" : "Ccl4 (pp) Cd63", "SUID" : 632048, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632166", "source" : "588151", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Il10ra", "weight" : 0.420190641272, "name" : "Ccl4 (pp) Il10ra", "shared_name" : "Ccl4 (pp) Il10ra", "SUID" : 632166, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632104", "source" : "588151", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Plac8", "weight" : 0.513080147272, "name" : "Ccl4 (pp) Plac8", "shared_name" : "Ccl4 (pp) Plac8", "SUID" : 632104, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632112", "source" : "588151", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Hk3", "weight" : 0.506009550199, "name" : "Ccl4 (pp) Hk3", "shared_name" : "Ccl4 (pp) Hk3", "SUID" : 632112, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632126", "source" : "588151", "target" : "589076", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) H2-M3", "weight" : 0.409891477604, "name" : "Ccl4 (pp) H2-M3", "shared_name" : "Ccl4 (pp) H2-M3", "SUID" : 632126, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632090", "source" : "588151", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Axl", "weight" : 0.534150622695, "name" : "Ccl4 (pp) Axl", "shared_name" : "Ccl4 (pp) Axl", "SUID" : 632090, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632122", "source" : "588151", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Csrp1", "weight" : 0.51105759463, "name" : "Ccl4 (pp) Csrp1", "shared_name" : "Ccl4 (pp) Csrp1", "SUID" : 632122, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632088", "source" : "588151", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Serpina3g", "weight" : 0.470775504477, "name" : "Ccl4 (pp) Serpina3g", "shared_name" : "Ccl4 (pp) Serpina3g", "SUID" : 632088, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632135", "source" : "588151", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Tmsb4x", "weight" : 0.497396670008, "name" : "Ccl4 (pp) Tmsb4x", "shared_name" : "Ccl4 (pp) Tmsb4x", "SUID" : 632135, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632017", "source" : "588151", "target" : "588212", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Anxa3", "weight" : 0.445252578507, "name" : "Ccl4 (pp) Anxa3", "shared_name" : "Ccl4 (pp) Anxa3", "SUID" : 632017, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632084", "source" : "588151", "target" : "588678", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Fxyd5", "weight" : 0.463742275038, "name" : "Ccl4 (pp) Fxyd5", "shared_name" : "Ccl4 (pp) Fxyd5", "SUID" : 632084, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632030", "source" : "588151", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Ms4a6d", "weight" : 0.613277693524, "name" : "Ccl4 (pp) Ms4a6d", "shared_name" : "Ccl4 (pp) Ms4a6d", "SUID" : 632030, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632045", "source" : "588151", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Clec4n", "weight" : 0.530226689538, "name" : "Ccl4 (pp) Clec4n", "shared_name" : "Ccl4 (pp) Clec4n", "SUID" : 632045, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632096", "source" : "588151", "target" : "588782", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.487738063425, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ccl4 (pp) Slc15a3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.487738063425, "fusion" : "NA", "name" : "Ccl4 (pp) Slc15a3", "neighborhood" : "NA", "sourceEdge" : 71894.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ccl4 (pp) Slc15a3", "combinedscore" : "NA", "SUID" : 632096, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 3.466328E-4, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "632133", "source" : "588151", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Vcam1", "weight" : 0.589239855913, "name" : "Ccl4 (pp) Vcam1", "shared_name" : "Ccl4 (pp) Vcam1", "SUID" : 632133, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632113", "source" : "588151", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Cytip", "weight" : 0.572323958034, "name" : "Ccl4 (pp) Cytip", "shared_name" : "Ccl4 (pp) Cytip", "SUID" : 632113, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632042", "source" : "588151", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Selplg", "weight" : 0.492267477394, "name" : "Ccl4 (pp) Selplg", "shared_name" : "Ccl4 (pp) Selplg", "SUID" : 632042, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632086", "source" : "588151", "target" : "588707", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Cxcl9", "weight" : 0.487383061022, "name" : "Ccl4 (pp) Cxcl9", "shared_name" : "Ccl4 (pp) Cxcl9", "SUID" : 632086, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632115", "source" : "588151", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) H2-DMb1", "weight" : 0.512969266871, "name" : "Ccl4 (pp) H2-DMb1", "shared_name" : "Ccl4 (pp) H2-DMb1", "SUID" : 632115, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632075", "source" : "588151", "target" : "588620", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Olfml3", "weight" : 0.439778650887, "name" : "Ccl4 (pp) Olfml3", "shared_name" : "Ccl4 (pp) Olfml3", "SUID" : 632075, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632038", "source" : "588151", "target" : "588351", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Ttc39a", "weight" : 0.545333807248, "name" : "Ccl4 (pp) Ttc39a", "shared_name" : "Ccl4 (pp) Ttc39a", "SUID" : 632038, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632149", "source" : "588151", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) Trem2", "weight" : 0.49814390761, "name" : "Ccl4 (pp) Trem2", "shared_name" : "Ccl4 (pp) Trem2", "SUID" : 632149, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632111", "source" : "588151", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccl4 (pp) C1qc", "weight" : 0.546843597008, "name" : "Ccl4 (pp) C1qc", "shared_name" : "Ccl4 (pp) C1qc", "SUID" : 632111, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "632106", "source" : "588151", "target" : "588860", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.578988374615, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ccl4 (pp) Fcer1g", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.578988374615, "fusion" : "NA", "name" : "Ccl4 (pp) Fcer1g", "neighborhood" : "NA", "sourceEdge" : 71902.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ccl4 (pp) Fcer1g", "combinedscore" : "NA", "SUID" : 632106, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 3.771053E-5, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "632157", "source" : "588151", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.561882092751, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ccl4 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.561882092751, "fusion" : "NA", "name" : "Ccl4 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 71935.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ccl4 (pp) Ear4", "combinedscore" : "NA", "SUID" : 632157, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 3.924224E-4, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "632161", "source" : "588151", "target" : "589344", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.560963187885, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ccl4 (pp) C1qb", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.560963187885, "fusion" : "NA", "name" : "Ccl4 (pp) C1qb", "neighborhood" : "NA", "sourceEdge" : 71938.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ccl4 (pp) C1qb", "combinedscore" : "NA", "SUID" : 632161, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 4.056429E-5, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "671734", "source" : "588740", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekha2 (pp) H2-DMa", "weight" : 0.467213126758, "name" : "Plekha2 (pp) H2-DMa", "shared_name" : "Plekha2 (pp) H2-DMa", "SUID" : 671734, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671720", "source" : "588740", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekha2 (pp) Fcer1g", "weight" : 0.401317413757, "name" : "Plekha2 (pp) Fcer1g", "shared_name" : "Plekha2 (pp) Fcer1g", "SUID" : 671720, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671717", "source" : "588740", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekha2 (pp) Obrgrp", "weight" : 0.417769357743, "name" : "Plekha2 (pp) Obrgrp", "shared_name" : "Plekha2 (pp) Obrgrp", "SUID" : 671717, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671725", "source" : "588740", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekha2 (pp) H2-DMb1", "weight" : 0.414450004569, "name" : "Plekha2 (pp) H2-DMb1", "shared_name" : "Plekha2 (pp) H2-DMb1", "SUID" : 671725, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671715", "source" : "588740", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekha2 (pp) Slc15a3", "weight" : 0.411341080858, "name" : "Plekha2 (pp) Slc15a3", "shared_name" : "Plekha2 (pp) Slc15a3", "SUID" : 671715, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671740", "source" : "588740", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Plekha2 (pp) C1qb", "weight" : 0.406694945418, "name" : "Plekha2 (pp) C1qb", "shared_name" : "Plekha2 (pp) C1qb", "SUID" : 671740, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "614003", "source" : "587952", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Cxcl16", "weight" : 0.414010462221, "name" : "Gusb (pp) Cxcl16", "shared_name" : "Gusb (pp) Cxcl16", "SUID" : 614003, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "614013", "source" : "587952", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Clec4n", "weight" : 0.500723217628, "name" : "Gusb (pp) Clec4n", "shared_name" : "Gusb (pp) Clec4n", "SUID" : 614013, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "614005", "source" : "587952", "target" : "588342", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Mfge8", "weight" : 0.463108491192, "name" : "Gusb (pp) Mfge8", "shared_name" : "Gusb (pp) Mfge8", "SUID" : 614005, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "614104", "source" : "587952", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) C1qb", "weight" : 0.452805041027, "name" : "Gusb (pp) C1qb", "shared_name" : "Gusb (pp) C1qb", "SUID" : 614104, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "613983", "source" : "587952", "target" : "588127", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Lpxn", "weight" : 0.503081449955, "name" : "Gusb (pp) Lpxn", "shared_name" : "Gusb (pp) Lpxn", "SUID" : 613983, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "614107", "source" : "587952", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Tspan33", "weight" : 0.43296348097, "name" : "Gusb (pp) Tspan33", "shared_name" : "Gusb (pp) Tspan33", "SUID" : 614107, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "614024", "source" : "587952", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Cd86", "weight" : 0.428385625383, "name" : "Gusb (pp) Cd86", "shared_name" : "Gusb (pp) Cd86", "SUID" : 614024, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "613989", "source" : "587952", "target" : "588212", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Anxa3", "weight" : 0.524285665227, "name" : "Gusb (pp) Anxa3", "shared_name" : "Gusb (pp) Anxa3", "SUID" : 613989, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "614028", "source" : "587952", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Slc11a1", "weight" : 0.420260174412, "name" : "Gusb (pp) Slc11a1", "shared_name" : "Gusb (pp) Slc11a1", "SUID" : 614028, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "613977", "source" : "587952", "target" : "588024", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Cd68", "weight" : 0.420777174178, "name" : "Gusb (pp) Cd68", "shared_name" : "Gusb (pp) Cd68", "SUID" : 613977, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "614033", "source" : "587952", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Gpnmb", "weight" : 0.533331332975, "name" : "Gusb (pp) Gpnmb", "shared_name" : "Gusb (pp) Gpnmb", "SUID" : 614033, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "614052", "source" : "587952", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Tmem86a", "weight" : 0.493927234319, "name" : "Gusb (pp) Tmem86a", "shared_name" : "Gusb (pp) Tmem86a", "SUID" : 614052, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "614046", "source" : "587952", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Vsig4", "weight" : 0.454638863113, "name" : "Gusb (pp) Vsig4", "shared_name" : "Gusb (pp) Vsig4", "SUID" : 614046, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "614015", "source" : "587952", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Cd63", "weight" : 0.484281429579, "name" : "Gusb (pp) Cd63", "shared_name" : "Gusb (pp) Cd63", "SUID" : 614015, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "614014", "source" : "587952", "target" : "588439", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Vim", "weight" : 0.476184574608, "name" : "Gusb (pp) Vim", "shared_name" : "Gusb (pp) Vim", "SUID" : 614014, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "614090", "source" : "587952", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Serpinb6a", "weight" : 0.484823160587, "name" : "Gusb (pp) Serpinb6a", "shared_name" : "Gusb (pp) Serpinb6a", "SUID" : 614090, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "614027", "source" : "587952", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Coro1a", "weight" : 0.495175364428, "name" : "Gusb (pp) Coro1a", "shared_name" : "Gusb (pp) Coro1a", "SUID" : 614027, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "614017", "source" : "587952", "target" : "588461", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Tbxas1", "weight" : 0.410970276379, "name" : "Gusb (pp) Tbxas1", "shared_name" : "Gusb (pp) Tbxas1", "SUID" : 614017, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "614038", "source" : "587952", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Cd52", "weight" : 0.421127737173, "name" : "Gusb (pp) Cd52", "shared_name" : "Gusb (pp) Cd52", "SUID" : 614038, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "613985", "source" : "587952", "target" : "588147", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Ppic", "weight" : 0.482376362746, "name" : "Gusb (pp) Ppic", "shared_name" : "Gusb (pp) Ppic", "SUID" : 613985, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "613999", "source" : "587952", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Ms4a6d", "weight" : 0.467371172964, "name" : "Gusb (pp) Ms4a6d", "shared_name" : "Gusb (pp) Ms4a6d", "SUID" : 613999, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "614096", "source" : "587952", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Ppif", "weight" : 0.426654047575, "name" : "Gusb (pp) Ppif", "shared_name" : "Gusb (pp) Ppif", "SUID" : 614096, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "614101", "source" : "587952", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Ear4", "weight" : 0.408207875994, "name" : "Gusb (pp) Ear4", "shared_name" : "Gusb (pp) Ear4", "SUID" : 614101, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "614061", "source" : "587952", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Lgals3", "weight" : 0.425540090395, "name" : "Gusb (pp) Lgals3", "shared_name" : "Gusb (pp) Lgals3", "SUID" : 614061, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "614056", "source" : "587952", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Pla2g15", "weight" : 0.440997529329, "name" : "Gusb (pp) Pla2g15", "shared_name" : "Gusb (pp) Pla2g15", "SUID" : 614056, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "613972", "source" : "587952", "target" : "587966", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Cyba", "weight" : 0.420560678367, "name" : "Gusb (pp) Cyba", "shared_name" : "Gusb (pp) Cyba", "SUID" : 613972, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "613996", "source" : "587952", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Sdc3", "weight" : 0.418676648446, "name" : "Gusb (pp) Sdc3", "shared_name" : "Gusb (pp) Sdc3", "SUID" : 613996, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "614004", "source" : "587952", "target" : "588322", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Pfkfb4", "weight" : 0.47362508902, "name" : "Gusb (pp) Pfkfb4", "shared_name" : "Gusb (pp) Pfkfb4", "SUID" : 614004, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "613993", "source" : "587952", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Laptm5", "weight" : 0.553817901548, "name" : "Gusb (pp) Laptm5", "shared_name" : "Gusb (pp) Laptm5", "SUID" : 613993, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "614049", "source" : "587952", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Slc15a3", "weight" : 0.464750472084, "name" : "Gusb (pp) Slc15a3", "shared_name" : "Gusb (pp) Slc15a3", "SUID" : 614049, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "614066", "source" : "587952", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Cytip", "weight" : 0.443418643142, "name" : "Gusb (pp) Cytip", "shared_name" : "Gusb (pp) Cytip", "SUID" : 614066, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "614108", "source" : "587952", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Lrrc33", "weight" : 0.432047589743, "name" : "Gusb (pp) Lrrc33", "shared_name" : "Gusb (pp) Lrrc33", "SUID" : 614108, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "614073", "source" : "587952", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Csrp1", "weight" : 0.420183608913, "name" : "Gusb (pp) Csrp1", "shared_name" : "Gusb (pp) Csrp1", "SUID" : 614073, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "614057", "source" : "587952", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gusb (pp) Cotl1", "weight" : 0.435056161313, "name" : "Gusb (pp) Cotl1", "shared_name" : "Gusb (pp) Cotl1", "SUID" : 614057, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616340", "source" : "587975", "target" : "588049", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Cd74", "weight" : 0.819334049436, "name" : "H2-Ab1 (pp) Cd74", "shared_name" : "H2-Ab1 (pp) Cd74", "SUID" : 616340, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616380", "source" : "587975", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Casp1", "weight" : 0.522343188228, "name" : "H2-Ab1 (pp) Casp1", "shared_name" : "H2-Ab1 (pp) Casp1", "SUID" : 616380, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616345", "source" : "587975", "target" : "588151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Ccl4", "weight" : 0.405141385139, "name" : "H2-Ab1 (pp) Ccl4", "shared_name" : "H2-Ab1 (pp) Ccl4", "SUID" : 616345, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616391", "source" : "587975", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Axl", "weight" : 0.405968949954, "name" : "H2-Ab1 (pp) Axl", "shared_name" : "H2-Ab1 (pp) Axl", "SUID" : 616391, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616370", "source" : "587975", "target" : "588492", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Ncf4", "weight" : 0.404076071316, "name" : "H2-Ab1 (pp) Ncf4", "shared_name" : "H2-Ab1 (pp) Ncf4", "SUID" : 616370, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616347", "source" : "587975", "target" : "588185", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Aif1", "weight" : 0.468668347161, "name" : "H2-Ab1 (pp) Aif1", "shared_name" : "H2-Ab1 (pp) Aif1", "SUID" : 616347, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616387", "source" : "587975", "target" : "588707", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Cxcl9", "weight" : 0.568957588221, "name" : "H2-Ab1 (pp) Cxcl9", "shared_name" : "H2-Ab1 (pp) Cxcl9", "SUID" : 616387, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616337", "source" : "587975", "target" : "587982", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Plekho2", "weight" : 0.518277651679, "name" : "H2-Ab1 (pp) Plekho2", "shared_name" : "H2-Ab1 (pp) Plekho2", "SUID" : 616337, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616433", "source" : "587975", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) C1qb", "weight" : 0.558349284592, "name" : "H2-Ab1 (pp) C1qb", "shared_name" : "H2-Ab1 (pp) C1qb", "SUID" : 616433, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616342", "source" : "587975", "target" : "588086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Iqgap1", "weight" : 0.406884087795, "name" : "H2-Ab1 (pp) Iqgap1", "shared_name" : "H2-Ab1 (pp) Iqgap1", "SUID" : 616342, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616428", "source" : "587975", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Fcgr4", "weight" : 0.474481704041, "name" : "H2-Ab1 (pp) Fcgr4", "shared_name" : "H2-Ab1 (pp) Fcgr4", "SUID" : 616428, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616407", "source" : "587975", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) C1qc", "weight" : 0.478147022962, "name" : "H2-Ab1 (pp) C1qc", "shared_name" : "H2-Ab1 (pp) C1qc", "SUID" : 616407, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616367", "source" : "587975", "target" : "588457", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Ccl5", "weight" : 0.46093124057, "name" : "H2-Ab1 (pp) Ccl5", "shared_name" : "H2-Ab1 (pp) Ccl5", "SUID" : 616367, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616351", "source" : "587975", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Laptm5", "weight" : 0.401614401235, "name" : "H2-Ab1 (pp) Laptm5", "shared_name" : "H2-Ab1 (pp) Laptm5", "SUID" : 616351, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616414", "source" : "587975", "target" : "589076", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) H2-M3", "weight" : 0.402200307931, "name" : "H2-Ab1 (pp) H2-M3", "shared_name" : "H2-Ab1 (pp) H2-M3", "SUID" : 616414, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616421", "source" : "587975", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Rasgrp1", "weight" : 0.496826760408, "name" : "H2-Ab1 (pp) Rasgrp1", "shared_name" : "H2-Ab1 (pp) Rasgrp1", "SUID" : 616421, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616389", "source" : "587975", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Serpina3g", "weight" : 0.507127672042, "name" : "H2-Ab1 (pp) Serpina3g", "shared_name" : "H2-Ab1 (pp) Serpina3g", "SUID" : 616389, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616363", "source" : "587975", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Selplg", "weight" : 0.413657591009, "name" : "H2-Ab1 (pp) Selplg", "shared_name" : "H2-Ab1 (pp) Selplg", "SUID" : 616363, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616386", "source" : "587975", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Cd52", "weight" : 0.613213490465, "name" : "H2-Ab1 (pp) Cd52", "shared_name" : "H2-Ab1 (pp) Cd52", "SUID" : 616386, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616346", "source" : "587975", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Pip4k2a", "weight" : 0.445802507943, "name" : "H2-Ab1 (pp) Pip4k2a", "shared_name" : "H2-Ab1 (pp) Pip4k2a", "SUID" : 616346, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616376", "source" : "587975", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Slc11a1", "weight" : 0.54176410609, "name" : "H2-Ab1 (pp) Slc11a1", "shared_name" : "H2-Ab1 (pp) Slc11a1", "SUID" : 616376, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616411", "source" : "587975", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) H2-DMb1", "weight" : 0.767211056277, "name" : "H2-Ab1 (pp) H2-DMb1", "shared_name" : "H2-Ab1 (pp) H2-DMb1", "SUID" : 616411, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616393", "source" : "587975", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Vsig4", "weight" : 0.454710309935, "name" : "H2-Ab1 (pp) Vsig4", "shared_name" : "H2-Ab1 (pp) Vsig4", "SUID" : 616393, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616354", "source" : "587975", "target" : "588254", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Irf8", "weight" : 0.401492814748, "name" : "H2-Ab1 (pp) Irf8", "shared_name" : "H2-Ab1 (pp) Irf8", "SUID" : 616354, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616357", "source" : "587975", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Ms4a6d", "weight" : 0.561931459384, "name" : "H2-Ab1 (pp) Ms4a6d", "shared_name" : "H2-Ab1 (pp) Ms4a6d", "SUID" : 616357, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616374", "source" : "587975", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Coro1a", "weight" : 0.583692373256, "name" : "H2-Ab1 (pp) Coro1a", "shared_name" : "H2-Ab1 (pp) Coro1a", "SUID" : 616374, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616419", "source" : "587975", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Vcam1", "weight" : 0.402351883298, "name" : "H2-Ab1 (pp) Vcam1", "shared_name" : "H2-Ab1 (pp) Vcam1", "SUID" : 616419, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616409", "source" : "587975", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Cytip", "weight" : 0.445396898033, "name" : "H2-Ab1 (pp) Cytip", "shared_name" : "H2-Ab1 (pp) Cytip", "SUID" : 616409, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616350", "source" : "587975", "target" : "588227", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Gbp2", "weight" : 0.476528373986, "name" : "H2-Ab1 (pp) Gbp2", "shared_name" : "H2-Ab1 (pp) Gbp2", "SUID" : 616350, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616403", "source" : "587975", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Fcer1g", "weight" : 0.557167123765, "name" : "H2-Ab1 (pp) Fcer1g", "shared_name" : "H2-Ab1 (pp) Fcer1g", "SUID" : 616403, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616371", "source" : "587975", "target" : "588512", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) H2-Eb1", "weight" : 0.895911421059, "name" : "H2-Ab1 (pp) H2-Eb1", "shared_name" : "H2-Ab1 (pp) H2-Eb1", "SUID" : 616371, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616424", "source" : "587975", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) H2-DMa", "weight" : 0.804729650878, "name" : "H2-Ab1 (pp) H2-DMa", "shared_name" : "H2-Ab1 (pp) H2-DMa", "SUID" : 616424, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616394", "source" : "587975", "target" : "588740", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Plekha2", "weight" : 0.448036759145, "name" : "H2-Ab1 (pp) Plekha2", "shared_name" : "H2-Ab1 (pp) Plekha2", "SUID" : 616394, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616420", "source" : "587975", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Tmsb4x", "weight" : 0.466218996721, "name" : "H2-Ab1 (pp) Tmsb4x", "shared_name" : "H2-Ab1 (pp) Tmsb4x", "SUID" : 616420, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616365", "source" : "587975", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Clec4n", "weight" : 0.427925619488, "name" : "H2-Ab1 (pp) Clec4n", "shared_name" : "H2-Ab1 (pp) Clec4n", "SUID" : 616365, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616408", "source" : "587975", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Hk3", "weight" : 0.434369003275, "name" : "H2-Ab1 (pp) Hk3", "shared_name" : "H2-Ab1 (pp) Hk3", "SUID" : 616408, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "616359", "source" : "587975", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-Ab1 (pp) Cxcl16", "weight" : 0.476896057328, "name" : "H2-Ab1 (pp) Cxcl16", "shared_name" : "H2-Ab1 (pp) Cxcl16", "SUID" : 616359, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686518", "source" : "589335", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ly86 (pp) Il10ra", "weight" : 0.475540970661, "name" : "Ly86 (pp) Il10ra", "shared_name" : "Ly86 (pp) Il10ra", "SUID" : 686518, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686508", "source" : "589335", "target" : "589353", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.440423644472, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ly86 (pp) Fblim1", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.440423644472, "fusion" : "NA", "name" : "Ly86 (pp) Fblim1", "neighborhood" : "NA", "sourceEdge" : 155825.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ly86 (pp) Fblim1", "combinedscore" : "NA", "SUID" : 686508, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 4.030552E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "686510", "source" : "589335", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ly86 (pp) Lrrc33", "weight" : 0.43500757521, "name" : "Ly86 (pp) Lrrc33", "shared_name" : "Ly86 (pp) Lrrc33", "SUID" : 686510, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686506", "source" : "589335", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ly86 (pp) C1qb", "weight" : 0.746312297929, "name" : "Ly86 (pp) C1qb", "shared_name" : "Ly86 (pp) C1qb", "SUID" : 686506, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643674", "source" : "588291", "target" : "588322", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Pfkfb4", "weight" : 0.409466834104, "name" : "Ms4a6d (pp) Pfkfb4", "shared_name" : "Ms4a6d (pp) Pfkfb4", "SUID" : 643674, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643833", "source" : "588291", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Ear4", "weight" : 0.672887912066, "name" : "Ms4a6d (pp) Ear4", "shared_name" : "Ms4a6d (pp) Ear4", "SUID" : 643833, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643701", "source" : "588291", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Renbp", "weight" : 0.413048434249, "name" : "Ms4a6d (pp) Renbp", "shared_name" : "Ms4a6d (pp) Renbp", "SUID" : 643701, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643825", "source" : "588291", "target" : "589256", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Timp1", "weight" : 0.528591421092, "name" : "Ms4a6d (pp) Timp1", "shared_name" : "Ms4a6d (pp) Timp1", "SUID" : 643825, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643829", "source" : "588291", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Fcgr4", "weight" : 0.65303708878, "name" : "Ms4a6d (pp) Fcgr4", "shared_name" : "Ms4a6d (pp) Fcgr4", "SUID" : 643829, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643702", "source" : "588291", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Plscr1", "weight" : 0.416712234107, "name" : "Ms4a6d (pp) Plscr1", "shared_name" : "Ms4a6d (pp) Plscr1", "SUID" : 643702, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643744", "source" : "588291", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Axl", "weight" : 0.615156234325, "name" : "Ms4a6d (pp) Axl", "shared_name" : "Ms4a6d (pp) Axl", "SUID" : 643744, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643797", "source" : "588291", "target" : "589102", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Gja1", "weight" : 0.448511924101, "name" : "Ms4a6d (pp) Gja1", "shared_name" : "Ms4a6d (pp) Gja1", "SUID" : 643797, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643730", "source" : "588291", "target" : "588636", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Repin1", "weight" : 0.424170420385, "name" : "Ms4a6d (pp) Repin1", "shared_name" : "Ms4a6d (pp) Repin1", "SUID" : 643730, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643743", "source" : "588291", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Tlr2", "weight" : 0.560010113323, "name" : "Ms4a6d (pp) Tlr2", "shared_name" : "Ms4a6d (pp) Tlr2", "SUID" : 643743, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643722", "source" : "588291", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Tmsb10", "weight" : 0.401794017363, "name" : "Ms4a6d (pp) Tmsb10", "shared_name" : "Ms4a6d (pp) Tmsb10", "SUID" : 643722, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643725", "source" : "588291", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Gngt2", "weight" : 0.499097901032, "name" : "Ms4a6d (pp) Gngt2", "shared_name" : "Ms4a6d (pp) Gngt2", "SUID" : 643725, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643826", "source" : "588291", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Ppif", "weight" : 0.42976176595, "name" : "Ms4a6d (pp) Ppif", "shared_name" : "Ms4a6d (pp) Ppif", "SUID" : 643826, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643728", "source" : "588291", "target" : "588620", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Olfml3", "weight" : 0.401666600591, "name" : "Ms4a6d (pp) Olfml3", "shared_name" : "Ms4a6d (pp) Olfml3", "SUID" : 643728, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643804", "source" : "588291", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Tmsb4x", "weight" : 0.57770076982, "name" : "Ms4a6d (pp) Tmsb4x", "shared_name" : "Ms4a6d (pp) Tmsb4x", "SUID" : 643804, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643755", "source" : "588291", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Tmem86a", "weight" : 0.577086599623, "name" : "Ms4a6d (pp) Tmem86a", "shared_name" : "Ms4a6d (pp) Tmem86a", "SUID" : 643755, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643673", "source" : "588291", "target" : "588313", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Zfp90", "weight" : 0.451047771258, "name" : "Ms4a6d (pp) Zfp90", "shared_name" : "Ms4a6d (pp) Zfp90", "SUID" : 643673, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643735", "source" : "588291", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) 5033414D02Rik", "weight" : 0.583287115077, "name" : "Ms4a6d (pp) 5033414D02Rik", "shared_name" : "Ms4a6d (pp) 5033414D02Rik", "SUID" : 643735, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643778", "source" : "588291", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Cytip", "weight" : 0.614119138339, "name" : "Ms4a6d (pp) Cytip", "shared_name" : "Ms4a6d (pp) Cytip", "SUID" : 643778, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643753", "source" : "588291", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) 5430435G22Rik", "weight" : 0.647977475148, "name" : "Ms4a6d (pp) 5430435G22Rik", "shared_name" : "Ms4a6d (pp) 5430435G22Rik", "SUID" : 643753, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643764", "source" : "588291", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Fcer1g", "weight" : 0.676950371541, "name" : "Ms4a6d (pp) Fcer1g", "shared_name" : "Ms4a6d (pp) Fcer1g", "SUID" : 643764, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643776", "source" : "588291", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) C1qc", "weight" : 0.494559052299, "name" : "Ms4a6d (pp) C1qc", "shared_name" : "Ms4a6d (pp) C1qc", "SUID" : 643776, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643840", "source" : "588291", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Fblim1", "weight" : 0.427497938783, "name" : "Ms4a6d (pp) Fblim1", "shared_name" : "Ms4a6d (pp) Fblim1", "SUID" : 643840, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643729", "source" : "588291", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Casp1", "weight" : 0.682827646116, "name" : "Ms4a6d (pp) Casp1", "shared_name" : "Ms4a6d (pp) Casp1", "SUID" : 643729, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643708", "source" : "588291", "target" : "588512", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) H2-Eb1", "weight" : 0.519541489358, "name" : "Ms4a6d (pp) H2-Eb1", "shared_name" : "Ms4a6d (pp) H2-Eb1", "SUID" : 643708, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643781", "source" : "588291", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) H2-DMb1", "weight" : 0.556622491887, "name" : "Ms4a6d (pp) H2-DMb1", "shared_name" : "Ms4a6d (pp) H2-DMb1", "SUID" : 643781, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643715", "source" : "588291", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Cd86", "weight" : 0.647738921838, "name" : "Ms4a6d (pp) Cd86", "shared_name" : "Ms4a6d (pp) Cd86", "SUID" : 643715, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643828", "source" : "588291", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Ear12", "weight" : 0.615822323392, "name" : "Ms4a6d (pp) Ear12", "shared_name" : "Ms4a6d (pp) Ear12", "SUID" : 643828, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643672", "source" : "588291", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Cxcl16", "weight" : 0.633333657277, "name" : "Ms4a6d (pp) Cxcl16", "shared_name" : "Ms4a6d (pp) Cxcl16", "SUID" : 643672, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643827", "source" : "588291", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Abi3", "weight" : 0.501292815628, "name" : "Ms4a6d (pp) Abi3", "shared_name" : "Ms4a6d (pp) Abi3", "SUID" : 643827, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643792", "source" : "588291", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Cfp", "weight" : 0.590066348247, "name" : "Ms4a6d (pp) Cfp", "shared_name" : "Ms4a6d (pp) Cfp", "SUID" : 643792, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643683", "source" : "588291", "target" : "588365", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Tnfaip8l2", "weight" : 0.460377603851, "name" : "Ms4a6d (pp) Tnfaip8l2", "shared_name" : "Ms4a6d (pp) Tnfaip8l2", "SUID" : 643683, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643795", "source" : "588291", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Snx10", "weight" : 0.581843284599, "name" : "Ms4a6d (pp) Snx10", "shared_name" : "Ms4a6d (pp) Snx10", "SUID" : 643795, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643691", "source" : "588291", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Clec4n", "weight" : 0.693457113937, "name" : "Ms4a6d (pp) Clec4n", "shared_name" : "Ms4a6d (pp) Clec4n", "SUID" : 643691, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643694", "source" : "588291", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Cd63", "weight" : 0.460593404484, "name" : "Ms4a6d (pp) Cd63", "shared_name" : "Ms4a6d (pp) Cd63", "SUID" : 643694, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643696", "source" : "588291", "target" : "588459", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Pop5", "weight" : 0.41082000694, "name" : "Ms4a6d (pp) Pop5", "shared_name" : "Ms4a6d (pp) Pop5", "SUID" : 643696, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643841", "source" : "588291", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Tspan33", "weight" : 0.439645803925, "name" : "Ms4a6d (pp) Tspan33", "shared_name" : "Ms4a6d (pp) Tspan33", "SUID" : 643841, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643838", "source" : "588291", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Ly86", "weight" : 0.613003861145, "name" : "Ms4a6d (pp) Ly86", "shared_name" : "Ms4a6d (pp) Ly86", "SUID" : 643838, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643756", "source" : "588291", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Obrgrp", "weight" : 0.452841795935, "name" : "Ms4a6d (pp) Obrgrp", "shared_name" : "Ms4a6d (pp) Obrgrp", "SUID" : 643756, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643824", "source" : "588291", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Trem2", "weight" : 0.56167554629, "name" : "Ms4a6d (pp) Trem2", "shared_name" : "Ms4a6d (pp) Trem2", "SUID" : 643824, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643723", "source" : "588291", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Slc11a1", "weight" : 0.719086890908, "name" : "Ms4a6d (pp) Slc11a1", "shared_name" : "Ms4a6d (pp) Slc11a1", "SUID" : 643723, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643738", "source" : "588291", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Cd52", "weight" : 0.758505240563, "name" : "Ms4a6d (pp) Cd52", "shared_name" : "Ms4a6d (pp) Cd52", "SUID" : 643738, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643721", "source" : "588291", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Coro1a", "weight" : 0.629245858924, "name" : "Ms4a6d (pp) Coro1a", "shared_name" : "Ms4a6d (pp) Coro1a", "SUID" : 643721, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643754", "source" : "588291", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Ccl6", "weight" : 0.556668848149, "name" : "Ms4a6d (pp) Ccl6", "shared_name" : "Ms4a6d (pp) Ccl6", "SUID" : 643754, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643777", "source" : "588291", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Hk3", "weight" : 0.581167326669, "name" : "Ms4a6d (pp) Hk3", "shared_name" : "Ms4a6d (pp) Hk3", "SUID" : 643777, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643740", "source" : "588291", "target" : "588707", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Cxcl9", "weight" : 0.452761420953, "name" : "Ms4a6d (pp) Cxcl9", "shared_name" : "Ms4a6d (pp) Cxcl9", "SUID" : 643740, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643790", "source" : "588291", "target" : "589076", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) H2-M3", "weight" : 0.421571943399, "name" : "Ms4a6d (pp) H2-M3", "shared_name" : "Ms4a6d (pp) H2-M3", "SUID" : 643790, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643821", "source" : "588291", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Ear10", "weight" : 0.686258405238, "name" : "Ms4a6d (pp) Ear10", "shared_name" : "Ms4a6d (pp) Ear10", "SUID" : 643821, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643698", "source" : "588291", "target" : "588464", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Akr1b3", "weight" : 0.431350221315, "name" : "Ms4a6d (pp) Akr1b3", "shared_name" : "Ms4a6d (pp) Akr1b3", "SUID" : 643698, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643686", "source" : "588291", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Selplg", "weight" : 0.593867103417, "name" : "Ms4a6d (pp) Selplg", "shared_name" : "Ms4a6d (pp) Selplg", "SUID" : 643686, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643693", "source" : "588291", "target" : "588439", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Vim", "weight" : 0.442345591353, "name" : "Ms4a6d (pp) Vim", "shared_name" : "Ms4a6d (pp) Vim", "SUID" : 643693, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643676", "source" : "588291", "target" : "588335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Arpc1b", "weight" : 0.434953189851, "name" : "Ms4a6d (pp) Arpc1b", "shared_name" : "Ms4a6d (pp) Arpc1b", "SUID" : 643676, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643800", "source" : "588291", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Vcam1", "weight" : 0.633876578492, "name" : "Ms4a6d (pp) Vcam1", "shared_name" : "Ms4a6d (pp) Vcam1", "SUID" : 643800, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643689", "source" : "588291", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Cd14", "weight" : 0.471360102348, "name" : "Ms4a6d (pp) Cd14", "shared_name" : "Ms4a6d (pp) Cd14", "SUID" : 643689, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643763", "source" : "588291", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Plac8", "weight" : 0.642010437261, "name" : "Ms4a6d (pp) Plac8", "shared_name" : "Ms4a6d (pp) Plac8", "SUID" : 643763, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643700", "source" : "588291", "target" : "588472", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Ly9", "weight" : 0.479773252789, "name" : "Ms4a6d (pp) Ly9", "shared_name" : "Ms4a6d (pp) Ly9", "SUID" : 643700, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643736", "source" : "588291", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) D12Ertd553e", "weight" : 0.433488390439, "name" : "Ms4a6d (pp) D12Ertd553e", "shared_name" : "Ms4a6d (pp) D12Ertd553e", "SUID" : 643736, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643831", "source" : "588291", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Cd53", "weight" : 0.547748271855, "name" : "Ms4a6d (pp) Cd53", "shared_name" : "Ms4a6d (pp) Cd53", "SUID" : 643831, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643746", "source" : "588291", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Tpm4", "weight" : 0.508063695997, "name" : "Ms4a6d (pp) Tpm4", "shared_name" : "Ms4a6d (pp) Tpm4", "SUID" : 643746, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643719", "source" : "588291", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Snn", "weight" : 0.46935216258, "name" : "Ms4a6d (pp) Snn", "shared_name" : "Ms4a6d (pp) Snn", "SUID" : 643719, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643817", "source" : "588291", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Serpinb6a", "weight" : 0.566583480786, "name" : "Ms4a6d (pp) Serpinb6a", "shared_name" : "Ms4a6d (pp) Serpinb6a", "SUID" : 643817, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643682", "source" : "588291", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Cyp7b1", "weight" : 0.447262764221, "name" : "Ms4a6d (pp) Cyp7b1", "shared_name" : "Ms4a6d (pp) Cyp7b1", "SUID" : 643682, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643687", "source" : "588291", "target" : "588394", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Lyzs", "weight" : 0.576416550088, "name" : "Ms4a6d (pp) Lyzs", "shared_name" : "Ms4a6d (pp) Lyzs", "SUID" : 643687, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643787", "source" : "588291", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Csrp1", "weight" : 0.68229428982, "name" : "Ms4a6d (pp) Csrp1", "shared_name" : "Ms4a6d (pp) Csrp1", "SUID" : 643787, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643732", "source" : "588291", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Gpnmb", "weight" : 0.651835553306, "name" : "Ms4a6d (pp) Gpnmb", "shared_name" : "Ms4a6d (pp) Gpnmb", "SUID" : 643732, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643809", "source" : "588291", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Rasgrp1", "weight" : 0.570730190561, "name" : "Ms4a6d (pp) Rasgrp1", "shared_name" : "Ms4a6d (pp) Rasgrp1", "SUID" : 643809, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643747", "source" : "588291", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Vsig4", "weight" : 0.717945481623, "name" : "Ms4a6d (pp) Vsig4", "shared_name" : "Ms4a6d (pp) Vsig4", "SUID" : 643747, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643760", "source" : "588291", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Pla2g15", "weight" : 0.406302024044, "name" : "Ms4a6d (pp) Pla2g15", "shared_name" : "Ms4a6d (pp) Pla2g15", "SUID" : 643760, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643788", "source" : "588291", "target" : "589030", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Soat1", "weight" : 0.476032575993, "name" : "Ms4a6d (pp) Soat1", "shared_name" : "Ms4a6d (pp) Soat1", "SUID" : 643788, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643752", "source" : "588291", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Slc15a3", "weight" : 0.616013458496, "name" : "Ms4a6d (pp) Slc15a3", "shared_name" : "Ms4a6d (pp) Slc15a3", "SUID" : 643752, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643742", "source" : "588291", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Serpina3g", "weight" : 0.541085862803, "name" : "Ms4a6d (pp) Serpina3g", "shared_name" : "Ms4a6d (pp) Serpina3g", "SUID" : 643742, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643832", "source" : "588291", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Clec7a", "weight" : 0.695674885869, "name" : "Ms4a6d (pp) Clec7a", "shared_name" : "Ms4a6d (pp) Clec7a", "SUID" : 643832, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643846", "source" : "588291", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Il10ra", "weight" : 0.474728457914, "name" : "Ms4a6d (pp) Il10ra", "shared_name" : "Ms4a6d (pp) Il10ra", "SUID" : 643846, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643704", "source" : "588291", "target" : "588492", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Ncf4", "weight" : 0.529702218419, "name" : "Ms4a6d (pp) Ncf4", "shared_name" : "Ms4a6d (pp) Ncf4", "SUID" : 643704, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643692", "source" : "588291", "target" : "588432", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Kcnk6", "weight" : 0.474876093082, "name" : "Ms4a6d (pp) Kcnk6", "shared_name" : "Ms4a6d (pp) Kcnk6", "SUID" : 643692, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643839", "source" : "588291", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) C1qb", "weight" : 0.737497192661, "name" : "Ms4a6d (pp) C1qb", "shared_name" : "Ms4a6d (pp) C1qb", "SUID" : 643839, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643762", "source" : "588291", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Cotl1", "weight" : 0.608152425856, "name" : "Ms4a6d (pp) Cotl1", "shared_name" : "Ms4a6d (pp) Cotl1", "SUID" : 643762, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643820", "source" : "588291", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) H2-DMa", "weight" : 0.617194070273, "name" : "Ms4a6d (pp) H2-DMa", "shared_name" : "Ms4a6d (pp) H2-DMa", "SUID" : 643820, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643679", "source" : "588291", "target" : "588351", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Ttc39a", "weight" : 0.538436136688, "name" : "Ms4a6d (pp) Ttc39a", "shared_name" : "Ms4a6d (pp) Ttc39a", "SUID" : 643679, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643695", "source" : "588291", "target" : "588457", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Ccl5", "weight" : 0.444117698427, "name" : "Ms4a6d (pp) Ccl5", "shared_name" : "Ms4a6d (pp) Ccl5", "SUID" : 643695, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643769", "source" : "588291", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Lgals3", "weight" : 0.759112479084, "name" : "Ms4a6d (pp) Lgals3", "shared_name" : "Ms4a6d (pp) Lgals3", "SUID" : 643769, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643737", "source" : "588291", "target" : "588678", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Fxyd5", "weight" : 0.617337922438, "name" : "Ms4a6d (pp) Fxyd5", "shared_name" : "Ms4a6d (pp) Fxyd5", "SUID" : 643737, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "643697", "source" : "588291", "target" : "588461", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ms4a6d (pp) Tbxas1", "weight" : 0.528117765039, "name" : "Ms4a6d (pp) Tbxas1", "shared_name" : "Ms4a6d (pp) Tbxas1", "SUID" : 643697, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620631", "source" : "588024", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Csrp1", "weight" : 0.461358210156, "name" : "Cd68 (pp) Csrp1", "shared_name" : "Cd68 (pp) Csrp1", "SUID" : 620631, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620501", "source" : "588024", "target" : "588049", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Cd74", "weight" : 0.447842095462, "name" : "Cd68 (pp) Cd74", "shared_name" : "Cd68 (pp) Cd74", "SUID" : 620501, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620586", "source" : "588024", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Gpnmb", "weight" : 0.568654255134, "name" : "Cd68 (pp) Gpnmb", "shared_name" : "Cd68 (pp) Gpnmb", "SUID" : 620586, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620642", "source" : "588024", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Vcam1", "weight" : 0.569215197652, "name" : "Cd68 (pp) Vcam1", "shared_name" : "Cd68 (pp) Vcam1", "SUID" : 620642, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620619", "source" : "588024", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) C1qc", "weight" : 0.690581391246, "name" : "Cd68 (pp) C1qc", "shared_name" : "Cd68 (pp) C1qc", "SUID" : 620619, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620579", "source" : "588024", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Gngt2", "weight" : 0.407236506994, "name" : "Cd68 (pp) Gngt2", "shared_name" : "Cd68 (pp) Gngt2", "SUID" : 620579, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620521", "source" : "588024", "target" : "588212", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Anxa3", "weight" : 0.473757906461, "name" : "Cd68 (pp) Anxa3", "shared_name" : "Cd68 (pp) Anxa3", "SUID" : 620521, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620577", "source" : "588024", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Slc11a1", "weight" : 0.605612727218, "name" : "Cd68 (pp) Slc11a1", "shared_name" : "Cd68 (pp) Slc11a1", "SUID" : 620577, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620516", "source" : "588024", "target" : "588151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Ccl4", "weight" : 0.45156026984, "name" : "Cd68 (pp) Ccl4", "shared_name" : "Cd68 (pp) Ccl4", "SUID" : 620516, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620670", "source" : "588024", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Ear4", "weight" : 0.485860593917, "name" : "Cd68 (pp) Ear4", "shared_name" : "Cd68 (pp) Ear4", "SUID" : 620670, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620592", "source" : "588024", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Cd52", "weight" : 0.539445706069, "name" : "Cd68 (pp) Cd52", "shared_name" : "Cd68 (pp) Cd52", "SUID" : 620592, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620528", "source" : "588024", "target" : "588244", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Gltp", "weight" : 0.454274382262, "name" : "Cd68 (pp) Gltp", "shared_name" : "Cd68 (pp) Gltp", "SUID" : 620528, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620517", "source" : "588024", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Pip4k2a", "weight" : 0.424873237145, "name" : "Cd68 (pp) Pip4k2a", "shared_name" : "Cd68 (pp) Pip4k2a", "SUID" : 620517, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620635", "source" : "588024", "target" : "589076", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) H2-M3", "weight" : 0.406190818469, "name" : "Cd68 (pp) H2-M3", "shared_name" : "Cd68 (pp) H2-M3", "SUID" : 620635, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620610", "source" : "588024", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Cotl1", "weight" : 0.542447639746, "name" : "Cd68 (pp) Cotl1", "shared_name" : "Cd68 (pp) Cotl1", "SUID" : 620610, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620604", "source" : "588024", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Ccl6", "weight" : 0.611625471583, "name" : "Cd68 (pp) Ccl6", "shared_name" : "Cd68 (pp) Ccl6", "SUID" : 620604, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620597", "source" : "588024", "target" : "588728", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) AB124611", "weight" : 0.437464952214, "name" : "Cd68 (pp) AB124611", "shared_name" : "Cd68 (pp) AB124611", "SUID" : 620597, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620673", "source" : "588024", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Ly86", "weight" : 0.477605769327, "name" : "Cd68 (pp) Ly86", "shared_name" : "Cd68 (pp) Ly86", "SUID" : 620673, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620662", "source" : "588024", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Abi3", "weight" : 0.424792565013, "name" : "Cd68 (pp) Abi3", "shared_name" : "Cd68 (pp) Abi3", "SUID" : 620662, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620659", "source" : "588024", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Trem2", "weight" : 0.414078061028, "name" : "Cd68 (pp) Trem2", "shared_name" : "Cd68 (pp) Trem2", "SUID" : 620659, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620596", "source" : "588024", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Axl", "weight" : 0.513888283334, "name" : "Cd68 (pp) Axl", "shared_name" : "Cd68 (pp) Axl", "SUID" : 620596, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620591", "source" : "588024", "target" : "588678", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Fxyd5", "weight" : 0.41315223678, "name" : "Cd68 (pp) Fxyd5", "shared_name" : "Cd68 (pp) Fxyd5", "SUID" : 620591, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620515", "source" : "588024", "target" : "588147", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Ppic", "weight" : 0.404955524789, "name" : "Cd68 (pp) Ppic", "shared_name" : "Cd68 (pp) Ppic", "SUID" : 620515, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620644", "source" : "588024", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Tmsb4x", "weight" : 0.484235223484, "name" : "Cd68 (pp) Tmsb4x", "shared_name" : "Cd68 (pp) Tmsb4x", "SUID" : 620644, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620639", "source" : "588024", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Pld4", "weight" : 0.525198524021, "name" : "Cd68 (pp) Pld4", "shared_name" : "Cd68 (pp) Pld4", "SUID" : 620639, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620536", "source" : "588024", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Cxcl16", "weight" : 0.461056109149, "name" : "Cd68 (pp) Cxcl16", "shared_name" : "Cd68 (pp) Cxcl16", "SUID" : 620536, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620525", "source" : "588024", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Laptm5", "weight" : 0.413223689867, "name" : "Cd68 (pp) Laptm5", "shared_name" : "Cd68 (pp) Laptm5", "SUID" : 620525, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620554", "source" : "588024", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Clec4n", "weight" : 0.599733194788, "name" : "Cd68 (pp) Clec4n", "shared_name" : "Cd68 (pp) Clec4n", "SUID" : 620554, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620611", "source" : "588024", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Plac8", "weight" : 0.411858785488, "name" : "Cd68 (pp) Plac8", "shared_name" : "Cd68 (pp) Plac8", "SUID" : 620611, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620668", "source" : "588024", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Clec7a", "weight" : 0.411867940202, "name" : "Cd68 (pp) Clec7a", "shared_name" : "Cd68 (pp) Clec7a", "SUID" : 620668, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620527", "source" : "588024", "target" : "588242", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Cd83", "weight" : 0.496049510963, "name" : "Cd68 (pp) Cd83", "shared_name" : "Cd68 (pp) Cd83", "SUID" : 620527, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620575", "source" : "588024", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Coro1a", "weight" : 0.515979424478, "name" : "Cd68 (pp) Coro1a", "shared_name" : "Cd68 (pp) Coro1a", "SUID" : 620575, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620621", "source" : "588024", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Cytip", "weight" : 0.421086511452, "name" : "Cd68 (pp) Cytip", "shared_name" : "Cd68 (pp) Cytip", "SUID" : 620621, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620533", "source" : "588024", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Ms4a6d", "weight" : 0.495077710302, "name" : "Cd68 (pp) Ms4a6d", "shared_name" : "Cd68 (pp) Ms4a6d", "SUID" : 620533, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620548", "source" : "588024", "target" : "588365", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Tnfaip8l2", "weight" : 0.415339090632, "name" : "Cd68 (pp) Tnfaip8l2", "shared_name" : "Cd68 (pp) Tnfaip8l2", "SUID" : 620548, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620557", "source" : "588024", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Cd63", "weight" : 0.452920994012, "name" : "Cd68 (pp) Cd63", "shared_name" : "Cd68 (pp) Cd63", "SUID" : 620557, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620576", "source" : "588024", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Tmsb10", "weight" : 0.481508021302, "name" : "Cd68 (pp) Tmsb10", "shared_name" : "Cd68 (pp) Tmsb10", "SUID" : 620576, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620602", "source" : "588024", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Slc15a3", "weight" : 0.439996936568, "name" : "Cd68 (pp) Slc15a3", "shared_name" : "Cd68 (pp) Slc15a3", "SUID" : 620602, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620612", "source" : "588024", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Fcer1g", "weight" : 0.534846066578, "name" : "Cd68 (pp) Fcer1g", "shared_name" : "Cd68 (pp) Fcer1g", "SUID" : 620612, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620674", "source" : "588024", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) C1qb", "weight" : 0.600637042052, "name" : "Cd68 (pp) C1qb", "shared_name" : "Cd68 (pp) C1qb", "SUID" : 620674, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620547", "source" : "588024", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Cyp7b1", "weight" : 0.427031057315, "name" : "Cd68 (pp) Cyp7b1", "shared_name" : "Cd68 (pp) Cyp7b1", "SUID" : 620547, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620613", "source" : "588024", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Fcgr3", "weight" : 0.617241154394, "name" : "Cd68 (pp) Fcgr3", "shared_name" : "Cd68 (pp) Fcgr3", "SUID" : 620613, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620616", "source" : "588024", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Lgals3", "weight" : 0.513380742264, "name" : "Cd68 (pp) Lgals3", "shared_name" : "Cd68 (pp) Lgals3", "SUID" : 620616, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620595", "source" : "588024", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) 6330416G13Rik", "weight" : 0.469133112772, "name" : "Cd68 (pp) 6330416G13Rik", "shared_name" : "Cd68 (pp) 6330416G13Rik", "SUID" : 620595, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620564", "source" : "588024", "target" : "588496", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Gphn", "weight" : 0.515118557964, "name" : "Cd68 (pp) Gphn", "shared_name" : "Cd68 (pp) Gphn", "SUID" : 620564, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620599", "source" : "588024", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Vsig4", "weight" : 0.489902378516, "name" : "Cd68 (pp) Vsig4", "shared_name" : "Cd68 (pp) Vsig4", "SUID" : 620599, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "620653", "source" : "588024", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd68 (pp) Serpinb6a", "weight" : 0.447139963241, "name" : "Cd68 (pp) Serpinb6a", "shared_name" : "Cd68 (pp) Serpinb6a", "SUID" : 620653, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686026", "source" : "589261", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppif (pp) Tspan33", "weight" : 0.400697398363, "name" : "Ppif (pp) Tspan33", "shared_name" : "Ppif (pp) Tspan33", "SUID" : 686026, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686006", "source" : "589261", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppif (pp) Ear12", "weight" : 0.434111088341, "name" : "Ppif (pp) Ear12", "shared_name" : "Ppif (pp) Ear12", "SUID" : 686006, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686011", "source" : "589261", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppif (pp) Clec7a", "weight" : 0.427422437274, "name" : "Ppif (pp) Clec7a", "shared_name" : "Ppif (pp) Clec7a", "SUID" : 686011, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686017", "source" : "589261", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ppif (pp) Ear4", "weight" : 0.532393941261, "name" : "Ppif (pp) Ear4", "shared_name" : "Ppif (pp) Ear4", "SUID" : 686017, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683513", "source" : "589102", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.501180065655, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Gja1 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 9.426896E-4, "weight" : 0.501180065655, "fusion" : "NA", "name" : "Gja1 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 151107.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Gja1 (pp) Ear4", "combinedscore" : "NA", "SUID" : 683513, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 3.113841E-4, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "683488", "source" : "589102", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gja1 (pp) Vcam1", "weight" : 0.458373809545, "name" : "Gja1 (pp) Vcam1", "shared_name" : "Gja1 (pp) Vcam1", "SUID" : 683488, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683520", "source" : "589102", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gja1 (pp) Tspan33", "weight" : 0.454790138162, "name" : "Gja1 (pp) Tspan33", "shared_name" : "Gja1 (pp) Tspan33", "SUID" : 683520, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683499", "source" : "589102", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gja1 (pp) Serpinb6a", "weight" : 0.400468713311, "name" : "Gja1 (pp) Serpinb6a", "shared_name" : "Gja1 (pp) Serpinb6a", "SUID" : 683499, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683502", "source" : "589102", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gja1 (pp) Ear10", "weight" : 0.412129783368, "name" : "Gja1 (pp) Ear10", "shared_name" : "Gja1 (pp) Ear10", "SUID" : 683502, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602168", "source" : "587807", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Cyp7b1", "weight" : 0.499878917336, "name" : "Evi2a (pp) Cyp7b1", "shared_name" : "Evi2a (pp) Cyp7b1", "SUID" : 602168, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602178", "source" : "587807", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Clec4n", "weight" : 0.722496965546, "name" : "Evi2a (pp) Clec4n", "shared_name" : "Evi2a (pp) Clec4n", "SUID" : 602178, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602250", "source" : "587807", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Obrgrp", "weight" : 0.457023023402, "name" : "Evi2a (pp) Obrgrp", "shared_name" : "Evi2a (pp) Obrgrp", "SUID" : 602250, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602271", "source" : "587807", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Hk3", "weight" : 0.577713976225, "name" : "Evi2a (pp) Hk3", "shared_name" : "Evi2a (pp) Hk3", "SUID" : 602271, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602213", "source" : "587807", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Tmsb10", "weight" : 0.444699302712, "name" : "Evi2a (pp) Tmsb10", "shared_name" : "Evi2a (pp) Tmsb10", "SUID" : 602213, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602212", "source" : "587807", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Coro1a", "weight" : 0.653137617763, "name" : "Evi2a (pp) Coro1a", "shared_name" : "Evi2a (pp) Coro1a", "SUID" : 602212, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602253", "source" : "587807", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Pla2g15", "weight" : 0.427438138993, "name" : "Evi2a (pp) Pla2g15", "shared_name" : "Evi2a (pp) Pla2g15", "SUID" : 602253, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602344", "source" : "587807", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Lmo2", "weight" : 0.489577757797, "name" : "Evi2a (pp) Lmo2", "shared_name" : "Evi2a (pp) Lmo2", "SUID" : 602344, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602284", "source" : "587807", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Csrp1", "weight" : 0.605788146204, "name" : "Evi2a (pp) Csrp1", "shared_name" : "Evi2a (pp) Csrp1", "SUID" : 602284, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602327", "source" : "587807", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Ear12", "weight" : 0.541155834028, "name" : "Evi2a (pp) Ear12", "shared_name" : "Evi2a (pp) Ear12", "SUID" : 602327, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602210", "source" : "587807", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Snn", "weight" : 0.503090764391, "name" : "Evi2a (pp) Snn", "shared_name" : "Evi2a (pp) Snn", "SUID" : 602210, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602145", "source" : "587807", "target" : "588262", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) P2ry13", "weight" : 0.451473850936, "name" : "Evi2a (pp) P2ry13", "shared_name" : "Evi2a (pp) P2ry13", "SUID" : 602145, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602225", "source" : "587807", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Gpnmb", "weight" : 0.644327385194, "name" : "Evi2a (pp) Gpnmb", "shared_name" : "Evi2a (pp) Gpnmb", "SUID" : 602225, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602086", "source" : "587807", "target" : "587952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Gusb", "weight" : 0.454496183052, "name" : "Evi2a (pp) Gusb", "shared_name" : "Evi2a (pp) Gusb", "SUID" : 602086, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602169", "source" : "587807", "target" : "588365", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Tnfaip8l2", "weight" : 0.563110142027, "name" : "Evi2a (pp) Tnfaip8l2", "shared_name" : "Evi2a (pp) Tnfaip8l2", "SUID" : 602169, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602142", "source" : "587807", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Sdc3", "weight" : 0.618539301323, "name" : "Evi2a (pp) Sdc3", "shared_name" : "Evi2a (pp) Sdc3", "SUID" : 602142, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602331", "source" : "587807", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Cd53", "weight" : 0.525126406393, "name" : "Evi2a (pp) Cd53", "shared_name" : "Evi2a (pp) Cd53", "SUID" : 602331, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602162", "source" : "587807", "target" : "588335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Arpc1b", "weight" : 0.497750182907, "name" : "Evi2a (pp) Arpc1b", "shared_name" : "Evi2a (pp) Arpc1b", "SUID" : 602162, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602339", "source" : "587807", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) C1qb", "weight" : 0.793441744277, "name" : "Evi2a (pp) C1qb", "shared_name" : "Evi2a (pp) C1qb", "SUID" : 602339, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602319", "source" : "587807", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Ear10", "weight" : 0.551135077769, "name" : "Evi2a (pp) Ear10", "shared_name" : "Evi2a (pp) Ear10", "SUID" : 602319, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602221", "source" : "587807", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Casp1", "weight" : 0.602141711972, "name" : "Evi2a (pp) Casp1", "shared_name" : "Evi2a (pp) Casp1", "SUID" : 602221, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602338", "source" : "587807", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Ly86", "weight" : 0.7156542477, "name" : "Evi2a (pp) Ly86", "shared_name" : "Evi2a (pp) Ly86", "SUID" : 602338, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602228", "source" : "587807", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) 5033414D02Rik", "weight" : 0.619711232404, "name" : "Evi2a (pp) 5033414D02Rik", "shared_name" : "Evi2a (pp) 5033414D02Rik", "SUID" : 602228, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602229", "source" : "587807", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) D12Ertd553e", "weight" : 0.418000001784, "name" : "Evi2a (pp) D12Ertd553e", "shared_name" : "Evi2a (pp) D12Ertd553e", "SUID" : 602229, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602111", "source" : "587807", "target" : "588086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Iqgap1", "weight" : 0.461903214228, "name" : "Evi2a (pp) Iqgap1", "shared_name" : "Evi2a (pp) Iqgap1", "SUID" : 602111, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602114", "source" : "587807", "target" : "588104", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Bmp1", "weight" : 0.439112434929, "name" : "Evi2a (pp) Bmp1", "shared_name" : "Evi2a (pp) Bmp1", "SUID" : 602114, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602175", "source" : "587807", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Cd14", "weight" : 0.551241039635, "name" : "Evi2a (pp) Cd14", "shared_name" : "Evi2a (pp) Cd14", "SUID" : 602175, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602132", "source" : "587807", "target" : "588212", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Anxa3", "weight" : 0.587538442939, "name" : "Evi2a (pp) Anxa3", "shared_name" : "Evi2a (pp) Anxa3", "SUID" : 602132, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602191", "source" : "587807", "target" : "588492", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Ncf4", "weight" : 0.493211595567, "name" : "Evi2a (pp) Ncf4", "shared_name" : "Evi2a (pp) Ncf4", "SUID" : 602191, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602180", "source" : "587807", "target" : "588439", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Vim", "weight" : 0.448220802628, "name" : "Evi2a (pp) Vim", "shared_name" : "Evi2a (pp) Vim", "SUID" : 602180, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602074", "source" : "587807", "target" : "587857", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Lgmn", "weight" : 0.780524635435, "name" : "Evi2a (pp) Lgmn", "shared_name" : "Evi2a (pp) Lgmn", "SUID" : 602074, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602289", "source" : "587807", "target" : "589076", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) H2-M3", "weight" : 0.42091589627, "name" : "Evi2a (pp) H2-M3", "shared_name" : "Evi2a (pp) H2-M3", "SUID" : 602289, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602090", "source" : "587807", "target" : "587966", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Cyba", "weight" : 0.702974909601, "name" : "Evi2a (pp) Cyba", "shared_name" : "Evi2a (pp) Cyba", "SUID" : 602090, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602216", "source" : "587807", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Gngt2", "weight" : 0.684626288232, "name" : "Evi2a (pp) Gngt2", "shared_name" : "Evi2a (pp) Gngt2", "SUID" : 602216, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602179", "source" : "587807", "target" : "588432", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Kcnk6", "weight" : 0.567876741723, "name" : "Evi2a (pp) Kcnk6", "shared_name" : "Evi2a (pp) Kcnk6", "SUID" : 602179, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602243", "source" : "587807", "target" : "588742", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Ifitm6", "weight" : 0.495209655741, "name" : "Evi2a (pp) Ifitm6", "shared_name" : "Evi2a (pp) Ifitm6", "SUID" : 602243, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602078", "source" : "587807", "target" : "587873", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Slc8a1", "weight" : 0.419888724634, "name" : "Evi2a (pp) Slc8a1", "shared_name" : "Evi2a (pp) Slc8a1", "SUID" : 602078, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602140", "source" : "587807", "target" : "588242", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Cd83", "weight" : 0.572390173853, "name" : "Evi2a (pp) Cd83", "shared_name" : "Evi2a (pp) Cd83", "SUID" : 602140, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602248", "source" : "587807", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Ccl6", "weight" : 0.660718873378, "name" : "Evi2a (pp) Ccl6", "shared_name" : "Evi2a (pp) Ccl6", "SUID" : 602248, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602246", "source" : "587807", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Slc15a3", "weight" : 0.705296287453, "name" : "Evi2a (pp) Slc15a3", "shared_name" : "Evi2a (pp) Slc15a3", "SUID" : 602246, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602298", "source" : "587807", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Vcam1", "weight" : 0.646107402265, "name" : "Evi2a (pp) Vcam1", "shared_name" : "Evi2a (pp) Vcam1", "SUID" : 602298, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602143", "source" : "587807", "target" : "588254", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Irf8", "weight" : 0.462557794007, "name" : "Evi2a (pp) Irf8", "shared_name" : "Evi2a (pp) Irf8", "SUID" : 602143, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602329", "source" : "587807", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Fcgr4", "weight" : 0.644074969739, "name" : "Evi2a (pp) Fcgr4", "shared_name" : "Evi2a (pp) Fcgr4", "SUID" : 602329, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602264", "source" : "587807", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Lgals3", "weight" : 0.672345702662, "name" : "Evi2a (pp) Lgals3", "shared_name" : "Evi2a (pp) Lgals3", "SUID" : 602264, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602307", "source" : "587807", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Rasgrp1", "weight" : 0.472695243044, "name" : "Evi2a (pp) Rasgrp1", "shared_name" : "Evi2a (pp) Rasgrp1", "SUID" : 602307, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602247", "source" : "587807", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) 5430435G22Rik", "weight" : 0.403257844065, "name" : "Evi2a (pp) 5430435G22Rik", "shared_name" : "Evi2a (pp) 5430435G22Rik", "SUID" : 602247, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602092", "source" : "587807", "target" : "587975", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) H2-Ab1", "weight" : 0.460630663705, "name" : "Evi2a (pp) H2-Ab1", "shared_name" : "Evi2a (pp) H2-Ab1", "SUID" : 602092, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602181", "source" : "587807", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Cd63", "weight" : 0.528880032487, "name" : "Evi2a (pp) Cd63", "shared_name" : "Evi2a (pp) Cd63", "SUID" : 602181, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602190", "source" : "587807", "target" : "588490", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Arhgap30", "weight" : 0.527172900737, "name" : "Evi2a (pp) Arhgap30", "shared_name" : "Evi2a (pp) Arhgap30", "SUID" : 602190, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602254", "source" : "587807", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Cotl1", "weight" : 0.616748734415, "name" : "Evi2a (pp) Cotl1", "shared_name" : "Evi2a (pp) Cotl1", "SUID" : 602254, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602199", "source" : "587807", "target" : "588517", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Rac2", "weight" : 0.436792946114, "name" : "Evi2a (pp) Rac2", "shared_name" : "Evi2a (pp) Rac2", "SUID" : 602199, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602318", "source" : "587807", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) H2-DMa", "weight" : 0.51542390386, "name" : "Evi2a (pp) H2-DMa", "shared_name" : "Evi2a (pp) H2-DMa", "SUID" : 602318, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602259", "source" : "587807", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Fcgr3", "weight" : 0.57438774349, "name" : "Evi2a (pp) Fcgr3", "shared_name" : "Evi2a (pp) Fcgr3", "SUID" : 602259, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602069", "source" : "587807", "target" : "587829", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Fyb", "weight" : 0.470561165162, "name" : "Evi2a (pp) Fyb", "shared_name" : "Evi2a (pp) Fyb", "SUID" : 602069, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602102", "source" : "587807", "target" : "588049", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Cd74", "weight" : 0.451075122254, "name" : "Evi2a (pp) Cd74", "shared_name" : "Evi2a (pp) Cd74", "SUID" : 602102, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602240", "source" : "587807", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Tpm4", "weight" : 0.439792815172, "name" : "Evi2a (pp) Tpm4", "shared_name" : "Evi2a (pp) Tpm4", "SUID" : 602240, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602214", "source" : "587807", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Slc11a1", "weight" : 0.787147123881, "name" : "Evi2a (pp) Slc11a1", "shared_name" : "Evi2a (pp) Slc11a1", "SUID" : 602214, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602238", "source" : "587807", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Axl", "weight" : 0.628246765126, "name" : "Evi2a (pp) Axl", "shared_name" : "Evi2a (pp) Axl", "SUID" : 602238, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602334", "source" : "587807", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Ear4", "weight" : 0.678777584227, "name" : "Evi2a (pp) Ear4", "shared_name" : "Evi2a (pp) Ear4", "SUID" : 602334, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602269", "source" : "587807", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) C1qc", "weight" : 0.616149417606, "name" : "Evi2a (pp) C1qc", "shared_name" : "Evi2a (pp) C1qc", "SUID" : 602269, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602237", "source" : "587807", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Tlr2", "weight" : 0.486797904148, "name" : "Evi2a (pp) Tlr2", "shared_name" : "Evi2a (pp) Tlr2", "SUID" : 602237, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602290", "source" : "587807", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Btk", "weight" : 0.42436338325, "name" : "Evi2a (pp) Btk", "shared_name" : "Evi2a (pp) Btk", "SUID" : 602290, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602294", "source" : "587807", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Pld4", "weight" : 0.485217742619, "name" : "Evi2a (pp) Pld4", "shared_name" : "Evi2a (pp) Pld4", "SUID" : 602294, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602068", "source" : "587807", "target" : "587818", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Ifi30", "weight" : 0.651756138406, "name" : "Evi2a (pp) Ifi30", "shared_name" : "Evi2a (pp) Ifi30", "SUID" : 602068, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602070", "source" : "587807", "target" : "587844", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Ear2", "weight" : 0.732501825476, "name" : "Evi2a (pp) Ear2", "shared_name" : "Evi2a (pp) Ear2", "SUID" : 602070, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602332", "source" : "587807", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Clec7a", "weight" : 0.584723848811, "name" : "Evi2a (pp) Clec7a", "shared_name" : "Evi2a (pp) Clec7a", "SUID" : 602332, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602173", "source" : "587807", "target" : "588394", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Lyzs", "weight" : 0.651033741564, "name" : "Evi2a (pp) Lyzs", "shared_name" : "Evi2a (pp) Lyzs", "SUID" : 602173, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602206", "source" : "587807", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Cd86", "weight" : 0.578874451431, "name" : "Evi2a (pp) Cd86", "shared_name" : "Evi2a (pp) Cd86", "SUID" : 602206, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602108", "source" : "587807", "target" : "588069", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) A430084P05Rik", "weight" : 0.603829667529, "name" : "Evi2a (pp) A430084P05Rik", "shared_name" : "Evi2a (pp) A430084P05Rik", "SUID" : 602108, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602342", "source" : "587807", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Lrrc33", "weight" : 0.527962025468, "name" : "Evi2a (pp) Lrrc33", "shared_name" : "Evi2a (pp) Lrrc33", "SUID" : 602342, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602122", "source" : "587807", "target" : "588147", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Ppic", "weight" : 0.523382387008, "name" : "Evi2a (pp) Ppic", "shared_name" : "Evi2a (pp) Ppic", "SUID" : 602122, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602098", "source" : "587807", "target" : "588024", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Cd68", "weight" : 0.573847199372, "name" : "Evi2a (pp) Cd68", "shared_name" : "Evi2a (pp) Cd68", "SUID" : 602098, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602155", "source" : "587807", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Cxcl16", "weight" : 0.664412489943, "name" : "Evi2a (pp) Cxcl16", "shared_name" : "Evi2a (pp) Cxcl16", "SUID" : 602155, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602079", "source" : "587807", "target" : "587881", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Vav1", "weight" : 0.478342388502, "name" : "Evi2a (pp) Vav1", "shared_name" : "Evi2a (pp) Vav1", "SUID" : 602079, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602235", "source" : "587807", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) 6330416G13Rik", "weight" : 0.476954334093, "name" : "Evi2a (pp) 6330416G13Rik", "shared_name" : "Evi2a (pp) 6330416G13Rik", "SUID" : 602235, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602241", "source" : "587807", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Vsig4", "weight" : 0.691638369233, "name" : "Evi2a (pp) Vsig4", "shared_name" : "Evi2a (pp) Vsig4", "SUID" : 602241, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602094", "source" : "587807", "target" : "587989", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Tyrobp", "weight" : 0.621220308662, "name" : "Evi2a (pp) Tyrobp", "shared_name" : "Evi2a (pp) Tyrobp", "SUID" : 602094, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602125", "source" : "587807", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Pip4k2a", "weight" : 0.597284627032, "name" : "Evi2a (pp) Pip4k2a", "shared_name" : "Evi2a (pp) Pip4k2a", "SUID" : 602125, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602149", "source" : "587807", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Ms4a6d", "weight" : 0.687957112382, "name" : "Evi2a (pp) Ms4a6d", "shared_name" : "Evi2a (pp) Ms4a6d", "SUID" : 602149, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602073", "source" : "587807", "target" : "587855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Pkm2", "weight" : 0.524130304395, "name" : "Evi2a (pp) Pkm2", "shared_name" : "Evi2a (pp) Pkm2", "SUID" : 602073, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602239", "source" : "587807", "target" : "588728", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) AB124611", "weight" : 0.422637683166, "name" : "Evi2a (pp) AB124611", "shared_name" : "Evi2a (pp) AB124611", "SUID" : 602239, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602133", "source" : "587807", "target" : "588213", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Pdlim4", "weight" : 0.509016870279, "name" : "Evi2a (pp) Pdlim4", "shared_name" : "Evi2a (pp) Pdlim4", "SUID" : 602133, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602158", "source" : "587807", "target" : "588322", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Pfkfb4", "weight" : 0.409446207703, "name" : "Evi2a (pp) Pfkfb4", "shared_name" : "Evi2a (pp) Pfkfb4", "SUID" : 602158, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602281", "source" : "587807", "target" : "588999", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Kctd12", "weight" : 0.52369635709, "name" : "Evi2a (pp) Kctd12", "shared_name" : "Evi2a (pp) Kctd12", "SUID" : 602281, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602127", "source" : "587807", "target" : "588185", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Aif1", "weight" : 0.477684617339, "name" : "Evi2a (pp) Aif1", "shared_name" : "Evi2a (pp) Aif1", "SUID" : 602127, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602340", "source" : "587807", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Fblim1", "weight" : 0.41174104151, "name" : "Evi2a (pp) Fblim1", "shared_name" : "Evi2a (pp) Fblim1", "SUID" : 602340, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602096", "source" : "587807", "target" : "588010", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Cd84", "weight" : 0.620267918106, "name" : "Evi2a (pp) Cd84", "shared_name" : "Evi2a (pp) Cd84", "SUID" : 602096, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602341", "source" : "587807", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Tspan33", "weight" : 0.461449788356, "name" : "Evi2a (pp) Tspan33", "shared_name" : "Evi2a (pp) Tspan33", "SUID" : 602341, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602184", "source" : "587807", "target" : "588461", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Tbxas1", "weight" : 0.42541774743, "name" : "Evi2a (pp) Tbxas1", "shared_name" : "Evi2a (pp) Tbxas1", "SUID" : 602184, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602141", "source" : "587807", "target" : "588244", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Gltp", "weight" : 0.592836428337, "name" : "Evi2a (pp) Gltp", "shared_name" : "Evi2a (pp) Gltp", "SUID" : 602141, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602255", "source" : "587807", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Plac8", "weight" : 0.718693433737, "name" : "Evi2a (pp) Plac8", "shared_name" : "Evi2a (pp) Plac8", "SUID" : 602255, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602322", "source" : "587807", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Trem2", "weight" : 0.415030290887, "name" : "Evi2a (pp) Trem2", "shared_name" : "Evi2a (pp) Trem2", "SUID" : 602322, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602337", "source" : "587807", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Prkcd", "weight" : 0.405654988614, "name" : "Evi2a (pp) Prkcd", "shared_name" : "Evi2a (pp) Prkcd", "SUID" : 602337, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602093", "source" : "587807", "target" : "587982", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Plekho2", "weight" : 0.66906639102, "name" : "Evi2a (pp) Plekho2", "shared_name" : "Evi2a (pp) Plekho2", "SUID" : 602093, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602295", "source" : "587807", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Snx10", "weight" : 0.420231937743, "name" : "Evi2a (pp) Snx10", "shared_name" : "Evi2a (pp) Snx10", "SUID" : 602295, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602137", "source" : "587807", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Laptm5", "weight" : 0.592175925763, "name" : "Evi2a (pp) Laptm5", "shared_name" : "Evi2a (pp) Laptm5", "SUID" : 602137, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602183", "source" : "587807", "target" : "588459", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Pop5", "weight" : 0.429167312652, "name" : "Evi2a (pp) Pop5", "shared_name" : "Evi2a (pp) Pop5", "SUID" : 602183, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602257", "source" : "587807", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Fcer1g", "weight" : 0.732061173854, "name" : "Evi2a (pp) Fcer1g", "shared_name" : "Evi2a (pp) Fcer1g", "SUID" : 602257, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602123", "source" : "587807", "target" : "588151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Ccl4", "weight" : 0.44324054557, "name" : "Evi2a (pp) Ccl4", "shared_name" : "Evi2a (pp) Ccl4", "SUID" : 602123, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602236", "source" : "587807", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Serpina3g", "weight" : 0.48946045932, "name" : "Evi2a (pp) Serpina3g", "shared_name" : "Evi2a (pp) Serpina3g", "SUID" : 602236, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602272", "source" : "587807", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Cytip", "weight" : 0.552605808794, "name" : "Evi2a (pp) Cytip", "shared_name" : "Evi2a (pp) Cytip", "SUID" : 602272, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602144", "source" : "587807", "target" : "588257", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Sdcbp", "weight" : 0.552614640625, "name" : "Evi2a (pp) Sdcbp", "shared_name" : "Evi2a (pp) Sdcbp", "SUID" : 602144, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602135", "source" : "587807", "target" : "588227", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Gbp2", "weight" : 0.480016858499, "name" : "Evi2a (pp) Gbp2", "shared_name" : "Evi2a (pp) Gbp2", "SUID" : 602135, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602072", "source" : "587807", "target" : "587851", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Sh3kbp1", "weight" : 0.624723226609, "name" : "Evi2a (pp) Sh3kbp1", "shared_name" : "Evi2a (pp) Sh3kbp1", "SUID" : 602072, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602232", "source" : "587807", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Cd52", "weight" : 0.689849595112, "name" : "Evi2a (pp) Cd52", "shared_name" : "Evi2a (pp) Cd52", "SUID" : 602232, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602291", "source" : "587807", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Cfp", "weight" : 0.618234983067, "name" : "Evi2a (pp) Cfp", "shared_name" : "Evi2a (pp) Cfp", "SUID" : 602291, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602187", "source" : "587807", "target" : "588472", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Ly9", "weight" : 0.505018135422, "name" : "Evi2a (pp) Ly9", "shared_name" : "Evi2a (pp) Ly9", "SUID" : 602187, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602171", "source" : "587807", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Selplg", "weight" : 0.585074938218, "name" : "Evi2a (pp) Selplg", "shared_name" : "Evi2a (pp) Selplg", "SUID" : 602171, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602315", "source" : "587807", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Serpinb6a", "weight" : 0.626661236789, "name" : "Evi2a (pp) Serpinb6a", "shared_name" : "Evi2a (pp) Serpinb6a", "SUID" : 602315, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602231", "source" : "587807", "target" : "588678", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Fxyd5", "weight" : 0.434001243353, "name" : "Evi2a (pp) Fxyd5", "shared_name" : "Evi2a (pp) Fxyd5", "SUID" : 602231, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602302", "source" : "587807", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Tmsb4x", "weight" : 0.619868141761, "name" : "Evi2a (pp) Tmsb4x", "shared_name" : "Evi2a (pp) Tmsb4x", "SUID" : 602302, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602117", "source" : "587807", "target" : "588127", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Lpxn", "weight" : 0.573906943587, "name" : "Evi2a (pp) Lpxn", "shared_name" : "Evi2a (pp) Lpxn", "SUID" : 602117, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602349", "source" : "587807", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Il10ra", "weight" : 0.433251468106, "name" : "Evi2a (pp) Il10ra", "shared_name" : "Evi2a (pp) Il10ra", "SUID" : 602349, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602249", "source" : "587807", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Tmem86a", "weight" : 0.494603136851, "name" : "Evi2a (pp) Tmem86a", "shared_name" : "Evi2a (pp) Tmem86a", "SUID" : 602249, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "602326", "source" : "587807", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Evi2a (pp) Abi3", "weight" : 0.503166714052, "name" : "Evi2a (pp) Abi3", "shared_name" : "Evi2a (pp) Abi3", "SUID" : 602326, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "604040", "source" : "587829", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Vsig4", "weight" : 0.455454982495, "name" : "Fyb (pp) Vsig4", "shared_name" : "Fyb (pp) Vsig4", "SUID" : 604040, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603995", "source" : "587829", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Pip4k2a", "weight" : 0.469648176523, "name" : "Fyb (pp) Pip4k2a", "shared_name" : "Fyb (pp) Pip4k2a", "SUID" : 603995, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "604039", "source" : "587829", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Tpm4", "weight" : 0.446274481611, "name" : "Fyb (pp) Tpm4", "shared_name" : "Fyb (pp) Tpm4", "SUID" : 604039, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "604026", "source" : "587829", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Coro1a", "weight" : 0.560325376467, "name" : "Fyb (pp) Coro1a", "shared_name" : "Fyb (pp) Coro1a", "SUID" : 604026, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "604057", "source" : "587829", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Pld4", "weight" : 0.431906409953, "name" : "Fyb (pp) Pld4", "shared_name" : "Fyb (pp) Pld4", "SUID" : 604057, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603974", "source" : "587829", "target" : "587844", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Ear2", "weight" : 0.44356096181, "name" : "Fyb (pp) Ear2", "shared_name" : "Fyb (pp) Ear2", "SUID" : 603974, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603996", "source" : "587829", "target" : "588185", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Aif1", "weight" : 0.412022737456, "name" : "Fyb (pp) Aif1", "shared_name" : "Fyb (pp) Aif1", "SUID" : 603996, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "604063", "source" : "587829", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Rasgrp1", "weight" : 0.452778974516, "name" : "Fyb (pp) Rasgrp1", "shared_name" : "Fyb (pp) Rasgrp1", "SUID" : 604063, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "604062", "source" : "587829", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Tmsb4x", "weight" : 0.646376360147, "name" : "Fyb (pp) Tmsb4x", "shared_name" : "Fyb (pp) Tmsb4x", "SUID" : 604062, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "604031", "source" : "587829", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Casp1", "weight" : 0.451371882562, "name" : "Fyb (pp) Casp1", "shared_name" : "Fyb (pp) Casp1", "SUID" : 604031, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "604052", "source" : "587829", "target" : "588999", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Kctd12", "weight" : 0.466785819928, "name" : "Fyb (pp) Kctd12", "shared_name" : "Fyb (pp) Kctd12", "SUID" : 604052, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "604074", "source" : "587829", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Ly86", "weight" : 0.469797996611, "name" : "Fyb (pp) Ly86", "shared_name" : "Fyb (pp) Ly86", "SUID" : 604074, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603977", "source" : "587829", "target" : "587857", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Lgmn", "weight" : 0.457867597879, "name" : "Fyb (pp) Lgmn", "shared_name" : "Fyb (pp) Lgmn", "SUID" : 603977, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "604028", "source" : "587829", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Slc11a1", "weight" : 0.495672656378, "name" : "Fyb (pp) Slc11a1", "shared_name" : "Fyb (pp) Slc11a1", "SUID" : 604028, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "604045", "source" : "587829", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Plac8", "weight" : 0.404031225558, "name" : "Fyb (pp) Plac8", "shared_name" : "Fyb (pp) Plac8", "SUID" : 604045, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603983", "source" : "587829", "target" : "587982", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Plekho2", "weight" : 0.430777313981, "name" : "Fyb (pp) Plekho2", "shared_name" : "Fyb (pp) Plekho2", "SUID" : 603983, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "604015", "source" : "587829", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Clec4n", "weight" : 0.452575658115, "name" : "Fyb (pp) Clec4n", "shared_name" : "Fyb (pp) Clec4n", "SUID" : 604015, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "604075", "source" : "587829", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) C1qb", "weight" : 0.47136801905, "name" : "Fyb (pp) C1qb", "shared_name" : "Fyb (pp) C1qb", "SUID" : 604075, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "604009", "source" : "587829", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Cxcl16", "weight" : 0.483902953335, "name" : "Fyb (pp) Cxcl16", "shared_name" : "Fyb (pp) Cxcl16", "SUID" : 604009, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "604065", "source" : "587829", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) H2-DMa", "weight" : 0.450498354882, "name" : "Fyb (pp) H2-DMa", "shared_name" : "Fyb (pp) H2-DMa", "SUID" : 604065, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "604049", "source" : "587829", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Hk3", "weight" : 0.457589923459, "name" : "Fyb (pp) Hk3", "shared_name" : "Fyb (pp) Hk3", "SUID" : 604049, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "604006", "source" : "587829", "target" : "588257", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Sdcbp", "weight" : 0.41308444716, "name" : "Fyb (pp) Sdcbp", "shared_name" : "Fyb (pp) Sdcbp", "SUID" : 604006, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "604035", "source" : "587829", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Cd52", "weight" : 0.55821667111, "name" : "Fyb (pp) Cd52", "shared_name" : "Fyb (pp) Cd52", "SUID" : 604035, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "604029", "source" : "587829", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Gngt2", "weight" : 0.445004838315, "name" : "Fyb (pp) Gngt2", "shared_name" : "Fyb (pp) Gngt2", "SUID" : 604029, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "604037", "source" : "587829", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Tlr2", "weight" : 0.436801200846, "name" : "Fyb (pp) Tlr2", "shared_name" : "Fyb (pp) Tlr2", "SUID" : 604037, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "604055", "source" : "587829", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Cfp", "weight" : 0.438938902504, "name" : "Fyb (pp) Cfp", "shared_name" : "Fyb (pp) Cfp", "SUID" : 604055, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "604016", "source" : "587829", "target" : "588432", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Kcnk6", "weight" : 0.495987931411, "name" : "Fyb (pp) Kcnk6", "shared_name" : "Fyb (pp) Kcnk6", "SUID" : 604016, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "604013", "source" : "587829", "target" : "588394", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Lyzs", "weight" : 0.457492787434, "name" : "Fyb (pp) Lyzs", "shared_name" : "Fyb (pp) Lyzs", "SUID" : 604013, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "604046", "source" : "587829", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Fcer1g", "weight" : 0.468435738583, "name" : "Fyb (pp) Fcer1g", "shared_name" : "Fyb (pp) Fcer1g", "SUID" : 604046, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "604033", "source" : "587829", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) 5033414D02Rik", "weight" : 0.440852015586, "name" : "Fyb (pp) 5033414D02Rik", "shared_name" : "Fyb (pp) 5033414D02Rik", "SUID" : 604033, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603990", "source" : "587829", "target" : "588069", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) A430084P05Rik", "weight" : 0.40768315428, "name" : "Fyb (pp) A430084P05Rik", "shared_name" : "Fyb (pp) A430084P05Rik", "SUID" : 603990, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "604002", "source" : "587829", "target" : "588244", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Gltp", "weight" : 0.458831135098, "name" : "Fyb (pp) Gltp", "shared_name" : "Fyb (pp) Gltp", "SUID" : 604002, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "603981", "source" : "587829", "target" : "587966", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Cyba", "weight" : 0.502000834031, "name" : "Fyb (pp) Cyba", "shared_name" : "Fyb (pp) Cyba", "SUID" : 603981, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "604004", "source" : "587829", "target" : "588254", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) Irf8", "weight" : 0.479899179667, "name" : "Fyb (pp) Irf8", "shared_name" : "Fyb (pp) Irf8", "SUID" : 604004, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "604048", "source" : "587829", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Fyb (pp) C1qc", "weight" : 0.489998492214, "name" : "Fyb (pp) C1qc", "shared_name" : "Fyb (pp) C1qc", "SUID" : 604048, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "607004", "source" : "587857", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Lrrc33", "weight" : 0.561808928716, "name" : "Lgmn (pp) Lrrc33", "shared_name" : "Lgmn (pp) Lrrc33", "SUID" : 607004, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606993", "source" : "587857", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Clec7a", "weight" : 0.405121089386, "name" : "Lgmn (pp) Clec7a", "shared_name" : "Lgmn (pp) Clec7a", "SUID" : 606993, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606892", "source" : "587857", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Pla2g15", "weight" : 0.49164838576, "name" : "Lgmn (pp) Pla2g15", "shared_name" : "Lgmn (pp) Pla2g15", "SUID" : 606892, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606816", "source" : "587857", "target" : "588490", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Arhgap30", "weight" : 0.457497990101, "name" : "Lgmn (pp) Arhgap30", "shared_name" : "Lgmn (pp) Arhgap30", "SUID" : 606816, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606728", "source" : "587857", "target" : "588147", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Ppic", "weight" : 0.529543113684, "name" : "Lgmn (pp) Ppic", "shared_name" : "Lgmn (pp) Ppic", "SUID" : 606728, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606940", "source" : "587857", "target" : "589086", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.637916507787, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Lgmn (pp) Cfp", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.637916507787, "fusion" : "NA", "name" : "Lgmn (pp) Cfp", "neighborhood" : "NA", "sourceEdge" : 26658.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Lgmn (pp) Cfp", "combinedscore" : "NA", "SUID" : 606940, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 8.556E-9, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "606861", "source" : "587857", "target" : "588664", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.632377519744, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Lgmn (pp) 5033414D02Rik", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.632377519744, "fusion" : "NA", "name" : "Lgmn (pp) 5033414D02Rik", "neighborhood" : "NA", "sourceEdge" : 26623.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Lgmn (pp) 5033414D02Rik", "combinedscore" : "NA", "SUID" : 606861, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 5.5982E-8, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "606676", "source" : "587857", "target" : "587873", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Slc8a1", "weight" : 0.401607278609, "name" : "Lgmn (pp) Slc8a1", "shared_name" : "Lgmn (pp) Slc8a1", "SUID" : 606676, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606690", "source" : "587857", "target" : "587975", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) H2-Ab1", "weight" : 0.481736278846, "name" : "Lgmn (pp) H2-Ab1", "shared_name" : "Lgmn (pp) H2-Ab1", "SUID" : 606690, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606731", "source" : "587857", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Pip4k2a", "weight" : 0.593254275158, "name" : "Lgmn (pp) Pip4k2a", "shared_name" : "Lgmn (pp) Pip4k2a", "SUID" : 606731, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606995", "source" : "587857", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.694662665623, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Lgmn (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.694662665623, "fusion" : "NA", "name" : "Lgmn (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 26678.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Lgmn (pp) Ear4", "combinedscore" : "NA", "SUID" : 606995, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 1.15E-10, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "606744", "source" : "587857", "target" : "588227", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Gbp2", "weight" : 0.422964593376, "name" : "Lgmn (pp) Gbp2", "shared_name" : "Lgmn (pp) Gbp2", "SUID" : 606744, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606883", "source" : "587857", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) 5430435G22Rik", "weight" : 0.434142283996, "name" : "Lgmn (pp) 5430435G22Rik", "shared_name" : "Lgmn (pp) 5430435G22Rik", "SUID" : 606883, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606804", "source" : "587857", "target" : "588432", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Kcnk6", "weight" : 0.489335926536, "name" : "Lgmn (pp) Kcnk6", "shared_name" : "Lgmn (pp) Kcnk6", "SUID" : 606804, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606805", "source" : "587857", "target" : "588439", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Vim", "weight" : 0.481031605626, "name" : "Lgmn (pp) Vim", "shared_name" : "Lgmn (pp) Vim", "SUID" : 606805, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606857", "source" : "587857", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Gpnmb", "weight" : 0.622724989197, "name" : "Lgmn (pp) Gpnmb", "shared_name" : "Lgmn (pp) Gpnmb", "SUID" : 606857, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606958", "source" : "587857", "target" : "589151", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.619481271224, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Lgmn (pp) Tmsb4x", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.619481271224, "fusion" : "NA", "name" : "Lgmn (pp) Tmsb4x", "neighborhood" : "NA", "sourceEdge" : 26664.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Lgmn (pp) Tmsb4x", "combinedscore" : "NA", "SUID" : 606958, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 3.322937E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "606781", "source" : "587857", "target" : "588342", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Mfge8", "weight" : 0.406641393993, "name" : "Lgmn (pp) Mfge8", "shared_name" : "Lgmn (pp) Mfge8", "SUID" : 606781, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606798", "source" : "587857", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Cd14", "weight" : 0.613731626883, "name" : "Lgmn (pp) Cd14", "shared_name" : "Lgmn (pp) Cd14", "SUID" : 606798, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606835", "source" : "587857", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Cd86", "weight" : 0.651302884008, "name" : "Lgmn (pp) Cd86", "shared_name" : "Lgmn (pp) Cd86", "SUID" : 606835, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606808", "source" : "587857", "target" : "588459", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Pop5", "weight" : 0.408202432477, "name" : "Lgmn (pp) Pop5", "shared_name" : "Lgmn (pp) Pop5", "SUID" : 606808, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606803", "source" : "587857", "target" : "588424", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.739181477669, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Lgmn (pp) Clec4n", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.739181477669, "fusion" : "NA", "name" : "Lgmn (pp) Clec4n", "neighborhood" : "NA", "sourceEdge" : 26596.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Lgmn (pp) Clec4n", "combinedscore" : "NA", "SUID" : 606803, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 8.41E-10, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "606999", "source" : "587857", "target" : "589335", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.693090937132, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Lgmn (pp) Ly86", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.693090937132, "fusion" : "NA", "name" : "Lgmn (pp) Ly86", "neighborhood" : "NA", "sourceEdge" : 26680.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Lgmn (pp) Ly86", "combinedscore" : "NA", "SUID" : 606999, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 4.235E-9, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "606874", "source" : "587857", "target" : "588728", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) AB124611", "weight" : 0.478876230306, "name" : "Lgmn (pp) AB124611", "shared_name" : "Lgmn (pp) AB124611", "SUID" : 606874, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606813", "source" : "587857", "target" : "588472", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Ly9", "weight" : 0.501722921909, "name" : "Lgmn (pp) Ly9", "shared_name" : "Lgmn (pp) Ly9", "SUID" : 606813, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606888", "source" : "587857", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Obrgrp", "weight" : 0.594128273444, "name" : "Lgmn (pp) Obrgrp", "shared_name" : "Lgmn (pp) Obrgrp", "SUID" : 606888, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606945", "source" : "587857", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Snx10", "weight" : 0.400571798571, "name" : "Lgmn (pp) Snx10", "shared_name" : "Lgmn (pp) Snx10", "SUID" : 606945, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606986", "source" : "587857", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Abi3", "weight" : 0.431895695987, "name" : "Lgmn (pp) Abi3", "shared_name" : "Lgmn (pp) Abi3", "SUID" : 606986, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606723", "source" : "587857", "target" : "588127", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Lpxn", "weight" : 0.552868210848, "name" : "Lgmn (pp) Lpxn", "shared_name" : "Lgmn (pp) Lpxn", "SUID" : 606723, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606698", "source" : "587857", "target" : "588024", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Cd68", "weight" : 0.616469779359, "name" : "Lgmn (pp) Cd68", "shared_name" : "Lgmn (pp) Cd68", "SUID" : 606698, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606672", "source" : "587857", "target" : "587864", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Spic", "weight" : 0.443722451357, "name" : "Lgmn (pp) Spic", "shared_name" : "Lgmn (pp) Spic", "SUID" : 606672, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606936", "source" : "587857", "target" : "589076", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) H2-M3", "weight" : 0.512026790981, "name" : "Lgmn (pp) H2-M3", "shared_name" : "Lgmn (pp) H2-M3", "SUID" : 606936, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606871", "source" : "587857", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Serpina3g", "weight" : 0.455570796889, "name" : "Lgmn (pp) Serpina3g", "shared_name" : "Lgmn (pp) Serpina3g", "SUID" : 606871, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606849", "source" : "587857", "target" : "588608", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Treml4", "weight" : 0.408331156159, "name" : "Lgmn (pp) Treml4", "shared_name" : "Lgmn (pp) Treml4", "SUID" : 606849, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606897", "source" : "587857", "target" : "588860", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.738283125757, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Lgmn (pp) Fcer1g", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.738283125757, "fusion" : "NA", "name" : "Lgmn (pp) Fcer1g", "neighborhood" : "NA", "sourceEdge" : 26645.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Lgmn (pp) Fcer1g", "combinedscore" : "NA", "SUID" : 606897, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 7.88E-10, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "606806", "source" : "587857", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Cd63", "weight" : 0.54878921777, "name" : "Lgmn (pp) Cd63", "shared_name" : "Lgmn (pp) Cd63", "SUID" : 606806, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606928", "source" : "587857", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Csrp1", "weight" : 0.702431143865, "name" : "Lgmn (pp) Csrp1", "shared_name" : "Lgmn (pp) Csrp1", "SUID" : 606928, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606714", "source" : "587857", "target" : "588081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Capg", "weight" : 0.422235114121, "name" : "Lgmn (pp) Capg", "shared_name" : "Lgmn (pp) Capg", "SUID" : 606714, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606679", "source" : "587857", "target" : "587905", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Rgs1", "weight" : 0.426469897722, "name" : "Lgmn (pp) Rgs1", "shared_name" : "Lgmn (pp) Rgs1", "SUID" : 606679, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606866", "source" : "587857", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Cd52", "weight" : 0.656529232003, "name" : "Lgmn (pp) Cd52", "shared_name" : "Lgmn (pp) Cd52", "SUID" : 606866, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606721", "source" : "587857", "target" : "588113", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Tgfbr2", "weight" : 0.471897026333, "name" : "Lgmn (pp) Tgfbr2", "shared_name" : "Lgmn (pp) Tgfbr2", "SUID" : 606721, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606695", "source" : "587857", "target" : "588010", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Cd84", "weight" : 0.619456110101, "name" : "Lgmn (pp) Cd84", "shared_name" : "Lgmn (pp) Cd84", "SUID" : 606695, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606839", "source" : "587857", "target" : "588581", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.526033366799, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Lgmn (pp) Snn", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.526033366799, "fusion" : "NA", "name" : "Lgmn (pp) Snn", "neighborhood" : "NA", "sourceEdge" : 26613.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Lgmn (pp) Snn", "combinedscore" : "NA", "SUID" : 606839, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 3.865461E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "606769", "source" : "587857", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Cxcl16", "weight" : 0.687090672033, "name" : "Lgmn (pp) Cxcl16", "shared_name" : "Lgmn (pp) Cxcl16", "SUID" : 606769, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606747", "source" : "587857", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Laptm5", "weight" : 0.628166790742, "name" : "Lgmn (pp) Laptm5", "shared_name" : "Lgmn (pp) Laptm5", "SUID" : 606747, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606750", "source" : "587857", "target" : "588242", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Cd83", "weight" : 0.636622286158, "name" : "Lgmn (pp) Cd83", "shared_name" : "Lgmn (pp) Cd83", "SUID" : 606750, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606885", "source" : "587857", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Tmem86a", "weight" : 0.478793075783, "name" : "Lgmn (pp) Tmem86a", "shared_name" : "Lgmn (pp) Tmem86a", "SUID" : 606885, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606879", "source" : "587857", "target" : "588742", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.482196215693, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Lgmn (pp) Ifitm6", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.482196215693, "fusion" : "NA", "name" : "Lgmn (pp) Ifitm6", "neighborhood" : "NA", "sourceEdge" : 26636.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Lgmn (pp) Ifitm6", "combinedscore" : "NA", "SUID" : 606879, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 9.072708E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "606741", "source" : "587857", "target" : "588212", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Anxa3", "weight" : 0.558879353555, "name" : "Lgmn (pp) Anxa3", "shared_name" : "Lgmn (pp) Anxa3", "SUID" : 606741, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606925", "source" : "587857", "target" : "588999", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Kctd12", "weight" : 0.493303003093, "name" : "Lgmn (pp) Kctd12", "shared_name" : "Lgmn (pp) Kctd12", "SUID" : 606925, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606796", "source" : "587857", "target" : "588394", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.540677108054, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Lgmn (pp) Lyzs", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.540677108054, "fusion" : "NA", "name" : "Lgmn (pp) Lyzs", "neighborhood" : "NA", "sourceEdge" : 26594.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Lgmn (pp) Lyzs", "combinedscore" : "NA", "SUID" : 606796, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 2.414907E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "607001", "source" : "587857", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) C1qb", "weight" : 0.797360319807, "name" : "Lgmn (pp) C1qb", "shared_name" : "Lgmn (pp) C1qb", "SUID" : 607001, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606715", "source" : "587857", "target" : "588086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Iqgap1", "weight" : 0.584571981288, "name" : "Lgmn (pp) Iqgap1", "shared_name" : "Lgmn (pp) Iqgap1", "SUID" : 606715, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606677", "source" : "587857", "target" : "587881", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Vav1", "weight" : 0.48325356439, "name" : "Lgmn (pp) Vav1", "shared_name" : "Lgmn (pp) Vav1", "SUID" : 606677, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606875", "source" : "587857", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Tpm4", "weight" : 0.541869214255, "name" : "Lgmn (pp) Tpm4", "shared_name" : "Lgmn (pp) Tpm4", "SUID" : 606875, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606742", "source" : "587857", "target" : "588213", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Pdlim4", "weight" : 0.46975320094, "name" : "Lgmn (pp) Pdlim4", "shared_name" : "Lgmn (pp) Pdlim4", "SUID" : 606742, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606953", "source" : "587857", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Vcam1", "weight" : 0.668502611908, "name" : "Lgmn (pp) Vcam1", "shared_name" : "Lgmn (pp) Vcam1", "SUID" : 606953, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606718", "source" : "587857", "target" : "588104", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Bmp1", "weight" : 0.498629309967, "name" : "Lgmn (pp) Bmp1", "shared_name" : "Lgmn (pp) Bmp1", "SUID" : 606718, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606911", "source" : "587857", "target" : "588927", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.589068890997, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Lgmn (pp) Hk3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.589068890997, "fusion" : "NA", "name" : "Lgmn (pp) Hk3", "neighborhood" : "NA", "sourceEdge" : 26649.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Lgmn (pp) Hk3", "combinedscore" : "NA", "SUID" : 606911, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.006454388, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "606790", "source" : "587857", "target" : "588365", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Tnfaip8l2", "weight" : 0.461079326093, "name" : "Lgmn (pp) Tnfaip8l2", "shared_name" : "Lgmn (pp) Tnfaip8l2", "SUID" : 606790, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606691", "source" : "587857", "target" : "587982", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.635107061821, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Lgmn (pp) Plekho2", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.635107061821, "fusion" : "NA", "name" : "Lgmn (pp) Plekho2", "neighborhood" : "NA", "sourceEdge" : 26555.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Lgmn (pp) Plekho2", "combinedscore" : "NA", "SUID" : 606691, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 7.60467E-7, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "606847", "source" : "587857", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Gngt2", "weight" : 0.717825256977, "name" : "Lgmn (pp) Gngt2", "shared_name" : "Lgmn (pp) Gngt2", "SUID" : 606847, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606729", "source" : "587857", "target" : "588151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Ccl4", "weight" : 0.491153474281, "name" : "Lgmn (pp) Ccl4", "shared_name" : "Lgmn (pp) Ccl4", "SUID" : 606729, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606852", "source" : "587857", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Casp1", "weight" : 0.49364708726, "name" : "Lgmn (pp) Casp1", "shared_name" : "Lgmn (pp) Casp1", "SUID" : 606852, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606692", "source" : "587857", "target" : "587989", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.504413437826, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Lgmn (pp) Tyrobp", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.504413437826, "fusion" : "NA", "name" : "Lgmn (pp) Tyrobp", "neighborhood" : "NA", "sourceEdge" : 26556.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Lgmn (pp) Tyrobp", "combinedscore" : "NA", "SUID" : 606692, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 1.964964E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "606711", "source" : "587857", "target" : "588069", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.58176989906, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Lgmn (pp) A430084P05Rik", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.58176989906, "fusion" : "NA", "name" : "Lgmn (pp) A430084P05Rik", "neighborhood" : "NA", "sourceEdge" : 26562.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Lgmn (pp) A430084P05Rik", "combinedscore" : "NA", "SUID" : 606711, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 1.55742E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "606973", "source" : "587857", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Serpinb6a", "weight" : 0.68599739215, "name" : "Lgmn (pp) Serpinb6a", "shared_name" : "Lgmn (pp) Serpinb6a", "SUID" : 606973, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606734", "source" : "587857", "target" : "588185", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Aif1", "weight" : 0.494870394673, "name" : "Lgmn (pp) Aif1", "shared_name" : "Lgmn (pp) Aif1", "SUID" : 606734, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606894", "source" : "587857", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Cotl1", "weight" : 0.675567665049, "name" : "Lgmn (pp) Cotl1", "shared_name" : "Lgmn (pp) Cotl1", "SUID" : 606894, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606815", "source" : "587857", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Plscr1", "weight" : 0.463124741599, "name" : "Lgmn (pp) Plscr1", "shared_name" : "Lgmn (pp) Plscr1", "SUID" : 606815, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606787", "source" : "587857", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Cyp7b1", "weight" : 0.578461180717, "name" : "Lgmn (pp) Cyp7b1", "shared_name" : "Lgmn (pp) Cyp7b1", "SUID" : 606787, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606873", "source" : "587857", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Axl", "weight" : 0.691255633131, "name" : "Lgmn (pp) Axl", "shared_name" : "Lgmn (pp) Axl", "SUID" : 606873, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606904", "source" : "587857", "target" : "588886", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.685889732923, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Lgmn (pp) Lgals3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.685889732923, "fusion" : "NA", "name" : "Lgmn (pp) Lgals3", "neighborhood" : "NA", "sourceEdge" : 26647.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Lgmn (pp) Lgals3", "combinedscore" : "NA", "SUID" : 606904, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.006054319, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "606938", "source" : "587857", "target" : "589081", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.56648020491, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Lgmn (pp) Btk", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.56648020491, "fusion" : "NA", "name" : "Lgmn (pp) Btk", "neighborhood" : "NA", "sourceEdge" : 26657.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Lgmn (pp) Btk", "combinedscore" : "NA", "SUID" : 606938, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 2.928304E-4, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "606724", "source" : "587857", "target" : "588134", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Mlkl", "weight" : 0.425926633282, "name" : "Lgmn (pp) Mlkl", "shared_name" : "Lgmn (pp) Mlkl", "SUID" : 606724, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606884", "source" : "587857", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Ccl6", "weight" : 0.566671992996, "name" : "Lgmn (pp) Ccl6", "shared_name" : "Lgmn (pp) Ccl6", "SUID" : 606884, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "607006", "source" : "587857", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Lmo2", "weight" : 0.432536803198, "name" : "Lgmn (pp) Lmo2", "shared_name" : "Lgmn (pp) Lmo2", "SUID" : 607006, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606912", "source" : "587857", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Cytip", "weight" : 0.572399363053, "name" : "Lgmn (pp) Cytip", "shared_name" : "Lgmn (pp) Cytip", "SUID" : 606912, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606763", "source" : "587857", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Ms4a6d", "weight" : 0.607804270585, "name" : "Lgmn (pp) Ms4a6d", "shared_name" : "Lgmn (pp) Ms4a6d", "SUID" : 606763, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606976", "source" : "587857", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) H2-DMa", "weight" : 0.490891450572, "name" : "Lgmn (pp) H2-DMa", "shared_name" : "Lgmn (pp) H2-DMa", "SUID" : 606976, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606943", "source" : "587857", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Pld4", "weight" : 0.502117002595, "name" : "Lgmn (pp) Pld4", "shared_name" : "Lgmn (pp) Pld4", "SUID" : 606943, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606817", "source" : "587857", "target" : "588492", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Ncf4", "weight" : 0.433611704779, "name" : "Lgmn (pp) Ncf4", "shared_name" : "Lgmn (pp) Ncf4", "SUID" : 606817, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606990", "source" : "587857", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Fcgr4", "weight" : 0.631569154678, "name" : "Lgmn (pp) Fcgr4", "shared_name" : "Lgmn (pp) Fcgr4", "SUID" : 606990, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606854", "source" : "587857", "target" : "588636", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Repin1", "weight" : 0.415538953991, "name" : "Lgmn (pp) Repin1", "shared_name" : "Lgmn (pp) Repin1", "SUID" : 606854, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606755", "source" : "587857", "target" : "588257", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Sdcbp", "weight" : 0.528616743578, "name" : "Lgmn (pp) Sdcbp", "shared_name" : "Lgmn (pp) Sdcbp", "SUID" : 606755, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606773", "source" : "587857", "target" : "588322", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Pfkfb4", "weight" : 0.400794708584, "name" : "Lgmn (pp) Pfkfb4", "shared_name" : "Lgmn (pp) Pfkfb4", "SUID" : 606773, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606895", "source" : "587857", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Plac8", "weight" : 0.650522701175, "name" : "Lgmn (pp) Plac8", "shared_name" : "Lgmn (pp) Plac8", "SUID" : 606895, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606872", "source" : "587857", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Tlr2", "weight" : 0.531751930022, "name" : "Lgmn (pp) Tlr2", "shared_name" : "Lgmn (pp) Tlr2", "SUID" : 606872, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606998", "source" : "587857", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Prkcd", "weight" : 0.446676668476, "name" : "Lgmn (pp) Prkcd", "shared_name" : "Lgmn (pp) Prkcd", "SUID" : 606998, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606899", "source" : "587857", "target" : "588863", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.544798617679, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Lgmn (pp) Fcgr3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.544798617679, "fusion" : "NA", "name" : "Lgmn (pp) Fcgr3", "neighborhood" : "NA", "sourceEdge" : 26646.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Lgmn (pp) Fcgr3", "combinedscore" : "NA", "SUID" : 606899, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 1.056626E-5, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "606751", "source" : "587857", "target" : "588244", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.624125241494, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Lgmn (pp) Gltp", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.624125241494, "fusion" : "NA", "name" : "Lgmn (pp) Gltp", "neighborhood" : "NA", "sourceEdge" : 26578.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Lgmn (pp) Gltp", "combinedscore" : "NA", "SUID" : 606751, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 3.657168E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "606963", "source" : "587857", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Rasgrp1", "weight" : 0.48163185362, "name" : "Lgmn (pp) Rasgrp1", "shared_name" : "Lgmn (pp) Rasgrp1", "SUID" : 606963, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606827", "source" : "587857", "target" : "588517", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Rac2", "weight" : 0.525100779246, "name" : "Lgmn (pp) Rac2", "shared_name" : "Lgmn (pp) Rac2", "SUID" : 606827, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606793", "source" : "587857", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Selplg", "weight" : 0.54244163102, "name" : "Lgmn (pp) Selplg", "shared_name" : "Lgmn (pp) Selplg", "SUID" : 606793, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606754", "source" : "587857", "target" : "588254", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Irf8", "weight" : 0.439585494807, "name" : "Lgmn (pp) Irf8", "shared_name" : "Lgmn (pp) Irf8", "SUID" : 606754, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606909", "source" : "587857", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) C1qc", "weight" : 0.707720636202, "name" : "Lgmn (pp) C1qc", "shared_name" : "Lgmn (pp) C1qc", "SUID" : 606909, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606842", "source" : "587857", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Coro1a", "weight" : 0.669911884391, "name" : "Lgmn (pp) Coro1a", "shared_name" : "Lgmn (pp) Coro1a", "SUID" : 606842, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606870", "source" : "587857", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) 6330416G13Rik", "weight" : 0.58364479251, "name" : "Lgmn (pp) 6330416G13Rik", "shared_name" : "Lgmn (pp) 6330416G13Rik", "SUID" : 606870, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606882", "source" : "587857", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Slc15a3", "weight" : 0.731956569533, "name" : "Lgmn (pp) Slc15a3", "shared_name" : "Lgmn (pp) Slc15a3", "SUID" : 606882, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606845", "source" : "587857", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Slc11a1", "weight" : 0.833299713687, "name" : "Lgmn (pp) Slc11a1", "shared_name" : "Lgmn (pp) Slc11a1", "SUID" : 606845, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606688", "source" : "587857", "target" : "587966", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Cyba", "weight" : 0.82966397604, "name" : "Lgmn (pp) Cyba", "shared_name" : "Lgmn (pp) Cyba", "SUID" : 606688, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606824", "source" : "587857", "target" : "588512", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) H2-Eb1", "weight" : 0.404154176114, "name" : "Lgmn (pp) H2-Eb1", "shared_name" : "Lgmn (pp) H2-Eb1", "SUID" : 606824, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606756", "source" : "587857", "target" : "588262", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) P2ry13", "weight" : 0.446241791345, "name" : "Lgmn (pp) P2ry13", "shared_name" : "Lgmn (pp) P2ry13", "SUID" : 606756, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606877", "source" : "587857", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Vsig4", "weight" : 0.648532176332, "name" : "Lgmn (pp) Vsig4", "shared_name" : "Lgmn (pp) Vsig4", "SUID" : 606877, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606703", "source" : "587857", "target" : "588049", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Cd74", "weight" : 0.43649663066, "name" : "Lgmn (pp) Cd74", "shared_name" : "Lgmn (pp) Cd74", "SUID" : 606703, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606843", "source" : "587857", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Tmsb10", "weight" : 0.516331441621, "name" : "Lgmn (pp) Tmsb10", "shared_name" : "Lgmn (pp) Tmsb10", "SUID" : 606843, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606752", "source" : "587857", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Sdc3", "weight" : 0.590645456988, "name" : "Lgmn (pp) Sdc3", "shared_name" : "Lgmn (pp) Sdc3", "SUID" : 606752, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606684", "source" : "587857", "target" : "587952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lgmn (pp) Gusb", "weight" : 0.436004817857, "name" : "Lgmn (pp) Gusb", "shared_name" : "Lgmn (pp) Gusb", "SUID" : 606684, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664902", "source" : "588601", "target" : "589076", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) H2-M3", "weight" : 0.520212610563, "name" : "Slc11a1 (pp) H2-M3", "shared_name" : "Slc11a1 (pp) H2-M3", "SUID" : 664902, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664862", "source" : "588601", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) 5430435G22Rik", "weight" : 0.470487371215, "name" : "Slc11a1 (pp) 5430435G22Rik", "shared_name" : "Slc11a1 (pp) 5430435G22Rik", "SUID" : 664862, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664863", "source" : "588601", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Ccl6", "weight" : 0.585218299833, "name" : "Slc11a1 (pp) Ccl6", "shared_name" : "Slc11a1 (pp) Ccl6", "SUID" : 664863, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664942", "source" : "588601", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Abi3", "weight" : 0.51617747507, "name" : "Slc11a1 (pp) Abi3", "shared_name" : "Slc11a1 (pp) Abi3", "SUID" : 664942, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664830", "source" : "588601", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Gngt2", "weight" : 0.610710808773, "name" : "Slc11a1 (pp) Gngt2", "shared_name" : "Slc11a1 (pp) Gngt2", "SUID" : 664830, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664835", "source" : "588601", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Casp1", "weight" : 0.655623080392, "name" : "Slc11a1 (pp) Casp1", "shared_name" : "Slc11a1 (pp) Casp1", "SUID" : 664835, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664960", "source" : "588601", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Lmo2", "weight" : 0.507776126372, "name" : "Slc11a1 (pp) Lmo2", "shared_name" : "Slc11a1 (pp) Lmo2", "SUID" : 664960, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664932", "source" : "588601", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Serpinb6a", "weight" : 0.668657690637, "name" : "Slc11a1 (pp) Serpinb6a", "shared_name" : "Slc11a1 (pp) Serpinb6a", "SUID" : 664932, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664864", "source" : "588601", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Tmem86a", "weight" : 0.485055016359, "name" : "Slc11a1 (pp) Tmem86a", "shared_name" : "Slc11a1 (pp) Tmem86a", "SUID" : 664864, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664846", "source" : "588601", "target" : "588678", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Fxyd5", "weight" : 0.436975426444, "name" : "Slc11a1 (pp) Fxyd5", "shared_name" : "Slc11a1 (pp) Fxyd5", "SUID" : 664846, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664859", "source" : "588601", "target" : "588742", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Ifitm6", "weight" : 0.449377697733, "name" : "Slc11a1 (pp) Ifitm6", "shared_name" : "Slc11a1 (pp) Ifitm6", "SUID" : 664859, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664917", "source" : "588601", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Tmsb4x", "weight" : 0.610101913292, "name" : "Slc11a1 (pp) Tmsb4x", "shared_name" : "Slc11a1 (pp) Tmsb4x", "SUID" : 664917, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664852", "source" : "588601", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Serpina3g", "weight" : 0.502244267292, "name" : "Slc11a1 (pp) Serpina3g", "shared_name" : "Slc11a1 (pp) Serpina3g", "SUID" : 664852, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664855", "source" : "588601", "target" : "588728", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) AB124611", "weight" : 0.480890188687, "name" : "Slc11a1 (pp) AB124611", "shared_name" : "Slc11a1 (pp) AB124611", "SUID" : 664855, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664865", "source" : "588601", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Obrgrp", "weight" : 0.498192674601, "name" : "Slc11a1 (pp) Obrgrp", "shared_name" : "Slc11a1 (pp) Obrgrp", "SUID" : 664865, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664854", "source" : "588601", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Axl", "weight" : 0.652938533938, "name" : "Slc11a1 (pp) Axl", "shared_name" : "Slc11a1 (pp) Axl", "SUID" : 664854, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664958", "source" : "588601", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Lrrc33", "weight" : 0.539841976571, "name" : "Slc11a1 (pp) Lrrc33", "shared_name" : "Slc11a1 (pp) Lrrc33", "SUID" : 664958, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664907", "source" : "588601", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Pld4", "weight" : 0.527762870901, "name" : "Slc11a1 (pp) Pld4", "shared_name" : "Slc11a1 (pp) Pld4", "SUID" : 664907, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664956", "source" : "588601", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Fblim1", "weight" : 0.426990091677, "name" : "Slc11a1 (pp) Fblim1", "shared_name" : "Slc11a1 (pp) Fblim1", "SUID" : 664956, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664885", "source" : "588601", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Cytip", "weight" : 0.624840846814, "name" : "Slc11a1 (pp) Cytip", "shared_name" : "Slc11a1 (pp) Cytip", "SUID" : 664885, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664953", "source" : "588601", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Prkcd", "weight" : 0.419010401753, "name" : "Slc11a1 (pp) Prkcd", "shared_name" : "Slc11a1 (pp) Prkcd", "SUID" : 664953, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664851", "source" : "588601", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) 6330416G13Rik", "weight" : 0.583499540384, "name" : "Slc11a1 (pp) 6330416G13Rik", "shared_name" : "Slc11a1 (pp) 6330416G13Rik", "SUID" : 664851, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664954", "source" : "588601", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Ly86", "weight" : 0.714997180197, "name" : "Slc11a1 (pp) Ly86", "shared_name" : "Slc11a1 (pp) Ly86", "SUID" : 664954, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664947", "source" : "588601", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Cd53", "weight" : 0.435868531846, "name" : "Slc11a1 (pp) Cd53", "shared_name" : "Slc11a1 (pp) Cd53", "SUID" : 664947, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664856", "source" : "588601", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Tpm4", "weight" : 0.520953336875, "name" : "Slc11a1 (pp) Tpm4", "shared_name" : "Slc11a1 (pp) Tpm4", "SUID" : 664856, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664913", "source" : "588601", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Vcam1", "weight" : 0.618622587041, "name" : "Slc11a1 (pp) Vcam1", "shared_name" : "Slc11a1 (pp) Vcam1", "SUID" : 664913, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664882", "source" : "588601", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) C1qc", "weight" : 0.73327684508, "name" : "Slc11a1 (pp) C1qc", "shared_name" : "Slc11a1 (pp) C1qc", "SUID" : 664882, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664878", "source" : "588601", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Lgals3", "weight" : 0.695079430735, "name" : "Slc11a1 (pp) Lgals3", "shared_name" : "Slc11a1 (pp) Lgals3", "SUID" : 664878, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664945", "source" : "588601", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Fcgr4", "weight" : 0.669022912468, "name" : "Slc11a1 (pp) Fcgr4", "shared_name" : "Slc11a1 (pp) Fcgr4", "SUID" : 664945, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664853", "source" : "588601", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Tlr2", "weight" : 0.497778879682, "name" : "Slc11a1 (pp) Tlr2", "shared_name" : "Slc11a1 (pp) Tlr2", "SUID" : 664853, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664955", "source" : "588601", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) C1qb", "weight" : 0.845056782807, "name" : "Slc11a1 (pp) C1qb", "shared_name" : "Slc11a1 (pp) C1qb", "SUID" : 664955, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664934", "source" : "588601", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) H2-DMa", "weight" : 0.638192212721, "name" : "Slc11a1 (pp) H2-DMa", "shared_name" : "Slc11a1 (pp) H2-DMa", "SUID" : 664934, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664950", "source" : "588601", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.73637379825, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Slc11a1 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.73637379825, "fusion" : "NA", "name" : "Slc11a1 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 121934.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Slc11a1 (pp) Ear4", "combinedscore" : "NA", "SUID" : 664950, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 7.41E-10, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "664903", "source" : "588601", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Btk", "weight" : 0.411937007014, "name" : "Slc11a1 (pp) Btk", "shared_name" : "Slc11a1 (pp) Btk", "SUID" : 664903, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664831", "source" : "588601", "target" : "588608", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Treml4", "weight" : 0.467198855587, "name" : "Slc11a1 (pp) Treml4", "shared_name" : "Slc11a1 (pp) Treml4", "SUID" : 664831, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664948", "source" : "588601", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Clec7a", "weight" : 0.456685828842, "name" : "Slc11a1 (pp) Clec7a", "shared_name" : "Slc11a1 (pp) Clec7a", "SUID" : 664948, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664884", "source" : "588601", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Hk3", "weight" : 0.685627389807, "name" : "Slc11a1 (pp) Hk3", "shared_name" : "Slc11a1 (pp) Hk3", "SUID" : 664884, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664935", "source" : "588601", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Ear10", "weight" : 0.490464836493, "name" : "Slc11a1 (pp) Ear10", "shared_name" : "Slc11a1 (pp) Ear10", "SUID" : 664935, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664893", "source" : "588601", "target" : "588999", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Kctd12", "weight" : 0.537983362888, "name" : "Slc11a1 (pp) Kctd12", "shared_name" : "Slc11a1 (pp) Kctd12", "SUID" : 664893, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664943", "source" : "588601", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Ear12", "weight" : 0.440017354107, "name" : "Slc11a1 (pp) Ear12", "shared_name" : "Slc11a1 (pp) Ear12", "SUID" : 664943, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664964", "source" : "588601", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Il10ra", "weight" : 0.400260520604, "name" : "Slc11a1 (pp) Il10ra", "shared_name" : "Slc11a1 (pp) Il10ra", "SUID" : 664964, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664836", "source" : "588601", "target" : "588636", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Repin1", "weight" : 0.412383908727, "name" : "Slc11a1 (pp) Repin1", "shared_name" : "Slc11a1 (pp) Repin1", "SUID" : 664836, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664904", "source" : "588601", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Cfp", "weight" : 0.647022502908, "name" : "Slc11a1 (pp) Cfp", "shared_name" : "Slc11a1 (pp) Cfp", "SUID" : 664904, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664869", "source" : "588601", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Pla2g15", "weight" : 0.506217485381, "name" : "Slc11a1 (pp) Pla2g15", "shared_name" : "Slc11a1 (pp) Pla2g15", "SUID" : 664869, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664843", "source" : "588601", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) 5033414D02Rik", "weight" : 0.671227842582, "name" : "Slc11a1 (pp) 5033414D02Rik", "shared_name" : "Slc11a1 (pp) 5033414D02Rik", "SUID" : 664843, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664896", "source" : "588601", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Csrp1", "weight" : 0.611052879642, "name" : "Slc11a1 (pp) Csrp1", "shared_name" : "Slc11a1 (pp) Csrp1", "SUID" : 664896, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664922", "source" : "588601", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Rasgrp1", "weight" : 0.563447584271, "name" : "Slc11a1 (pp) Rasgrp1", "shared_name" : "Slc11a1 (pp) Rasgrp1", "SUID" : 664922, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664850", "source" : "588601", "target" : "588707", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Cxcl9", "weight" : 0.417344195354, "name" : "Slc11a1 (pp) Cxcl9", "shared_name" : "Slc11a1 (pp) Cxcl9", "SUID" : 664850, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664857", "source" : "588601", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Vsig4", "weight" : 0.810903472149, "name" : "Slc11a1 (pp) Vsig4", "shared_name" : "Slc11a1 (pp) Vsig4", "SUID" : 664857, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664839", "source" : "588601", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Gpnmb", "weight" : 0.612357144982, "name" : "Slc11a1 (pp) Gpnmb", "shared_name" : "Slc11a1 (pp) Gpnmb", "SUID" : 664839, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664871", "source" : "588601", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Plac8", "weight" : 0.698955560822, "name" : "Slc11a1 (pp) Plac8", "shared_name" : "Slc11a1 (pp) Plac8", "SUID" : 664871, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664870", "source" : "588601", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Cotl1", "weight" : 0.558245864131, "name" : "Slc11a1 (pp) Cotl1", "shared_name" : "Slc11a1 (pp) Cotl1", "SUID" : 664870, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664861", "source" : "588601", "target" : "588782", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.708508971816, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Slc11a1 (pp) Slc15a3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.708508971816, "fusion" : "NA", "name" : "Slc11a1 (pp) Slc15a3", "neighborhood" : "NA", "sourceEdge" : 121893.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Slc11a1 (pp) Slc15a3", "combinedscore" : "NA", "SUID" : 664861, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 1.673E-9, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "664888", "source" : "588601", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) H2-DMb1", "weight" : 0.450246704372, "name" : "Slc11a1 (pp) H2-DMb1", "shared_name" : "Slc11a1 (pp) H2-DMb1", "SUID" : 664888, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664873", "source" : "588601", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Fcer1g", "weight" : 0.789392782417, "name" : "Slc11a1 (pp) Fcer1g", "shared_name" : "Slc11a1 (pp) Fcer1g", "SUID" : 664873, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664848", "source" : "588601", "target" : "588697", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.72138077772, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Slc11a1 (pp) Cd52", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.72138077772, "fusion" : "NA", "name" : "Slc11a1 (pp) Cd52", "neighborhood" : "NA", "sourceEdge" : 121882.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Slc11a1 (pp) Cd52", "combinedscore" : "NA", "SUID" : 664848, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 2.0E-11, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "664874", "source" : "588601", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc11a1 (pp) Fcgr3", "weight" : 0.511628681415, "name" : "Slc11a1 (pp) Fcgr3", "shared_name" : "Slc11a1 (pp) Fcgr3", "SUID" : 664874, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685958", "source" : "589256", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Timp1 (pp) Clec7a", "weight" : 0.581583001889, "name" : "Timp1 (pp) Clec7a", "shared_name" : "Timp1 (pp) Clec7a", "SUID" : 685958, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685959", "source" : "589256", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Timp1 (pp) Ear4", "weight" : 0.403552455732, "name" : "Timp1 (pp) Ear4", "shared_name" : "Timp1 (pp) Ear4", "SUID" : 685959, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685954", "source" : "589256", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Timp1 (pp) Ear12", "weight" : 0.458925250138, "name" : "Timp1 (pp) Ear12", "shared_name" : "Timp1 (pp) Ear12", "SUID" : 685954, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685963", "source" : "589256", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Timp1 (pp) C1qb", "weight" : 0.401326668455, "name" : "Timp1 (pp) C1qb", "shared_name" : "Timp1 (pp) C1qb", "SUID" : 685963, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685967", "source" : "589256", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Timp1 (pp) Il10ra", "weight" : 0.42884518092, "name" : "Timp1 (pp) Il10ra", "shared_name" : "Timp1 (pp) Il10ra", "SUID" : 685967, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686473", "source" : "589327", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Prkcd (pp) Lrrc33", "weight" : 0.423534520223, "name" : "Prkcd (pp) Lrrc33", "shared_name" : "Prkcd (pp) Lrrc33", "SUID" : 686473, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "686470", "source" : "589327", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Prkcd (pp) C1qb", "weight" : 0.401784634267, "name" : "Prkcd (pp) C1qb", "shared_name" : "Prkcd (pp) C1qb", "SUID" : 686470, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658258", "source" : "588492", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) Il10ra", "weight" : 0.494825479455, "name" : "Ncf4 (pp) Il10ra", "shared_name" : "Ncf4 (pp) Il10ra", "SUID" : 658258, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658252", "source" : "588492", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) C1qb", "weight" : 0.58796810199, "name" : "Ncf4 (pp) C1qb", "shared_name" : "Ncf4 (pp) C1qb", "SUID" : 658252, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658226", "source" : "588492", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) Btk", "weight" : 0.410835407492, "name" : "Ncf4 (pp) Btk", "shared_name" : "Ncf4 (pp) Btk", "SUID" : 658226, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658206", "source" : "588492", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) 5430435G22Rik", "weight" : 0.4532855139, "name" : "Ncf4 (pp) 5430435G22Rik", "shared_name" : "Ncf4 (pp) 5430435G22Rik", "SUID" : 658206, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658232", "source" : "588492", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) Tmsb4x", "weight" : 0.539959917362, "name" : "Ncf4 (pp) Tmsb4x", "shared_name" : "Ncf4 (pp) Tmsb4x", "SUID" : 658232, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658220", "source" : "588492", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) H2-DMb1", "weight" : 0.401290083055, "name" : "Ncf4 (pp) H2-DMb1", "shared_name" : "Ncf4 (pp) H2-DMb1", "SUID" : 658220, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658227", "source" : "588492", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) Cfp", "weight" : 0.537834946414, "name" : "Ncf4 (pp) Cfp", "shared_name" : "Ncf4 (pp) Cfp", "SUID" : 658227, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658199", "source" : "588492", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) Tlr2", "weight" : 0.569204522797, "name" : "Ncf4 (pp) Tlr2", "shared_name" : "Ncf4 (pp) Tlr2", "SUID" : 658199, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658197", "source" : "588492", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) Cd52", "weight" : 0.491471951045, "name" : "Ncf4 (pp) Cd52", "shared_name" : "Ncf4 (pp) Cd52", "SUID" : 658197, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658251", "source" : "588492", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) Ly86", "weight" : 0.468951443614, "name" : "Ncf4 (pp) Ly86", "shared_name" : "Ncf4 (pp) Ly86", "SUID" : 658251, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658223", "source" : "588492", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) Csrp1", "weight" : 0.477375231935, "name" : "Ncf4 (pp) Csrp1", "shared_name" : "Ncf4 (pp) Csrp1", "SUID" : 658223, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658229", "source" : "588492", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) Snx10", "weight" : 0.434650339543, "name" : "Ncf4 (pp) Snx10", "shared_name" : "Ncf4 (pp) Snx10", "SUID" : 658229, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658202", "source" : "588492", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) Vsig4", "weight" : 0.472948644211, "name" : "Ncf4 (pp) Vsig4", "shared_name" : "Ncf4 (pp) Vsig4", "SUID" : 658202, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658215", "source" : "588492", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) Lgals3", "weight" : 0.448370854644, "name" : "Ncf4 (pp) Lgals3", "shared_name" : "Ncf4 (pp) Lgals3", "SUID" : 658215, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658219", "source" : "588492", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) Cytip", "weight" : 0.45147941906, "name" : "Ncf4 (pp) Cytip", "shared_name" : "Ncf4 (pp) Cytip", "SUID" : 658219, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658212", "source" : "588492", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) Cotl1", "weight" : 0.452201843319, "name" : "Ncf4 (pp) Cotl1", "shared_name" : "Ncf4 (pp) Cotl1", "SUID" : 658212, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658253", "source" : "588492", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) Fblim1", "weight" : 0.412840807416, "name" : "Ncf4 (pp) Fblim1", "shared_name" : "Ncf4 (pp) Fblim1", "SUID" : 658253, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658214", "source" : "588492", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) Fcer1g", "weight" : 0.470619881435, "name" : "Ncf4 (pp) Fcer1g", "shared_name" : "Ncf4 (pp) Fcer1g", "SUID" : 658214, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658183", "source" : "588492", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) Cd86", "weight" : 0.422177877245, "name" : "Ncf4 (pp) Cd86", "shared_name" : "Ncf4 (pp) Cd86", "SUID" : 658183, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658201", "source" : "588492", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) Tpm4", "weight" : 0.501336475388, "name" : "Ncf4 (pp) Tpm4", "shared_name" : "Ncf4 (pp) Tpm4", "SUID" : 658201, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658198", "source" : "588492", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) Serpina3g", "weight" : 0.409738885086, "name" : "Ncf4 (pp) Serpina3g", "shared_name" : "Ncf4 (pp) Serpina3g", "SUID" : 658198, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658205", "source" : "588492", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) Slc15a3", "weight" : 0.48965385233, "name" : "Ncf4 (pp) Slc15a3", "shared_name" : "Ncf4 (pp) Slc15a3", "SUID" : 658205, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658209", "source" : "588492", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) Obrgrp", "weight" : 0.474223067256, "name" : "Ncf4 (pp) Obrgrp", "shared_name" : "Ncf4 (pp) Obrgrp", "SUID" : 658209, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658245", "source" : "588492", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) Fcgr4", "weight" : 0.429903495326, "name" : "Ncf4 (pp) Fcgr4", "shared_name" : "Ncf4 (pp) Fcgr4", "SUID" : 658245, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658195", "source" : "588492", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) D12Ertd553e", "weight" : 0.459787494771, "name" : "Ncf4 (pp) D12Ertd553e", "shared_name" : "Ncf4 (pp) D12Ertd553e", "SUID" : 658195, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658186", "source" : "588492", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) Coro1a", "weight" : 0.574497614216, "name" : "Ncf4 (pp) Coro1a", "shared_name" : "Ncf4 (pp) Coro1a", "SUID" : 658186, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658188", "source" : "588492", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) Gngt2", "weight" : 0.459360089632, "name" : "Ncf4 (pp) Gngt2", "shared_name" : "Ncf4 (pp) Gngt2", "SUID" : 658188, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658190", "source" : "588492", "target" : "588620", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) Olfml3", "weight" : 0.411131622649, "name" : "Ncf4 (pp) Olfml3", "shared_name" : "Ncf4 (pp) Olfml3", "SUID" : 658190, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658191", "source" : "588492", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) Casp1", "weight" : 0.416700174558, "name" : "Ncf4 (pp) Casp1", "shared_name" : "Ncf4 (pp) Casp1", "SUID" : 658191, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "658247", "source" : "588492", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ncf4 (pp) Clec7a", "weight" : 0.418985084351, "name" : "Ncf4 (pp) Clec7a", "shared_name" : "Ncf4 (pp) Clec7a", "SUID" : 658247, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654895", "source" : "588424", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Fcgr3", "weight" : 0.534187945596, "name" : "Clec4n (pp) Fcgr3", "shared_name" : "Clec4n (pp) Fcgr3", "SUID" : 654895, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654926", "source" : "588424", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Csrp1", "weight" : 0.714531388069, "name" : "Clec4n (pp) Csrp1", "shared_name" : "Clec4n (pp) Csrp1", "SUID" : 654926, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654959", "source" : "588424", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Rasgrp1", "weight" : 0.479479701496, "name" : "Clec4n (pp) Rasgrp1", "shared_name" : "Clec4n (pp) Rasgrp1", "SUID" : 654959, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654826", "source" : "588424", "target" : "588517", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Rac2", "weight" : 0.511451516511, "name" : "Clec4n (pp) Rac2", "shared_name" : "Clec4n (pp) Rac2", "SUID" : 654826, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654986", "source" : "588424", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Fcgr4", "weight" : 0.657978467114, "name" : "Clec4n (pp) Fcgr4", "shared_name" : "Clec4n (pp) Fcgr4", "SUID" : 654986, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654879", "source" : "588424", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) 5430435G22Rik", "weight" : 0.483765159613, "name" : "Clec4n (pp) 5430435G22Rik", "shared_name" : "Clec4n (pp) 5430435G22Rik", "SUID" : 654879, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654848", "source" : "588424", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Casp1", "weight" : 0.55587696239, "name" : "Clec4n (pp) Casp1", "shared_name" : "Clec4n (pp) Casp1", "SUID" : 654848, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654880", "source" : "588424", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Ccl6", "weight" : 0.502411921044, "name" : "Clec4n (pp) Ccl6", "shared_name" : "Clec4n (pp) Ccl6", "SUID" : 654880, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655009", "source" : "588424", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Il10ra", "weight" : 0.447528956114, "name" : "Clec4n (pp) Il10ra", "shared_name" : "Clec4n (pp) Il10ra", "SUID" : 655009, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654839", "source" : "588424", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Coro1a", "weight" : 0.676366190992, "name" : "Clec4n (pp) Coro1a", "shared_name" : "Clec4n (pp) Coro1a", "SUID" : 654839, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654996", "source" : "588424", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Ly86", "weight" : 0.627112088149, "name" : "Clec4n (pp) Ly86", "shared_name" : "Clec4n (pp) Ly86", "SUID" : 654996, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654907", "source" : "588424", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) C1qc", "weight" : 0.642142359432, "name" : "Clec4n (pp) C1qc", "shared_name" : "Clec4n (pp) C1qc", "SUID" : 654907, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654900", "source" : "588424", "target" : "588886", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.726114255051, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Clec4n (pp) Lgals3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.726114255051, "fusion" : "NA", "name" : "Clec4n (pp) Lgals3", "neighborhood" : "NA", "sourceEdge" : 104848.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Clec4n (pp) Lgals3", "combinedscore" : "NA", "SUID" : 654900, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "FALSE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.006636363, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "654950", "source" : "588424", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Vcam1", "weight" : 0.711821190304, "name" : "Clec4n (pp) Vcam1", "shared_name" : "Clec4n (pp) Vcam1", "SUID" : 654950, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654927", "source" : "588424", "target" : "589030", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Soat1", "weight" : 0.426084487606, "name" : "Clec4n (pp) Soat1", "shared_name" : "Clec4n (pp) Soat1", "SUID" : 654927, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654845", "source" : "588424", "target" : "588608", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Treml4", "weight" : 0.40697743724, "name" : "Clec4n (pp) Treml4", "shared_name" : "Clec4n (pp) Treml4", "SUID" : 654845, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654978", "source" : "588424", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Trem2", "weight" : 0.51009843166, "name" : "Clec4n (pp) Trem2", "shared_name" : "Clec4n (pp) Trem2", "SUID" : 654978, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654941", "source" : "588424", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Pld4", "weight" : 0.43298444259, "name" : "Clec4n (pp) Pld4", "shared_name" : "Clec4n (pp) Pld4", "SUID" : 654941, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654923", "source" : "588424", "target" : "588999", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Kctd12", "weight" : 0.401876877713, "name" : "Clec4n (pp) Kctd12", "shared_name" : "Clec4n (pp) Kctd12", "SUID" : 654923, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654989", "source" : "588424", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Clec7a", "weight" : 0.559353039502, "name" : "Clec4n (pp) Clec7a", "shared_name" : "Clec4n (pp) Clec7a", "SUID" : 654989, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654815", "source" : "588424", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Plscr1", "weight" : 0.435089834973, "name" : "Clec4n (pp) Plscr1", "shared_name" : "Clec4n (pp) Plscr1", "SUID" : 654815, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654867", "source" : "588424", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Serpina3g", "weight" : 0.478578160687, "name" : "Clec4n (pp) Serpina3g", "shared_name" : "Clec4n (pp) Serpina3g", "SUID" : 654867, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654842", "source" : "588424", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Slc11a1", "weight" : 0.712316108933, "name" : "Clec4n (pp) Slc11a1", "shared_name" : "Clec4n (pp) Slc11a1", "SUID" : 654842, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654878", "source" : "588424", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Slc15a3", "weight" : 0.713923013204, "name" : "Clec4n (pp) Slc15a3", "shared_name" : "Clec4n (pp) Slc15a3", "SUID" : 654878, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654970", "source" : "588424", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Serpinb6a", "weight" : 0.662566625462, "name" : "Clec4n (pp) Serpinb6a", "shared_name" : "Clec4n (pp) Serpinb6a", "SUID" : 654970, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654997", "source" : "588424", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) C1qb", "weight" : 0.749858046137, "name" : "Clec4n (pp) C1qb", "shared_name" : "Clec4n (pp) C1qb", "SUID" : 654997, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654954", "source" : "588424", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Tmsb4x", "weight" : 0.674961202095, "name" : "Clec4n (pp) Tmsb4x", "shared_name" : "Clec4n (pp) Tmsb4x", "SUID" : 654954, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654890", "source" : "588424", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Cotl1", "weight" : 0.692777534036, "name" : "Clec4n (pp) Cotl1", "shared_name" : "Clec4n (pp) Cotl1", "SUID" : 654890, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654837", "source" : "588424", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Snn", "weight" : 0.545257592134, "name" : "Clec4n (pp) Snn", "shared_name" : "Clec4n (pp) Snn", "SUID" : 654837, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654817", "source" : "588424", "target" : "588492", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Ncf4", "weight" : 0.497224380258, "name" : "Clec4n (pp) Ncf4", "shared_name" : "Clec4n (pp) Ncf4", "SUID" : 654817, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654874", "source" : "588424", "target" : "588742", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.459468948589, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Clec4n (pp) Ifitm6", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.459468948589, "fusion" : "NA", "name" : "Clec4n (pp) Ifitm6", "neighborhood" : "NA", "sourceEdge" : 104837.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Clec4n (pp) Ifitm6", "combinedscore" : "NA", "SUID" : 654874, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 7.344445E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "655001", "source" : "588424", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Lrrc33", "weight" : 0.597944087906, "name" : "Clec4n (pp) Lrrc33", "shared_name" : "Clec4n (pp) Lrrc33", "SUID" : 655001, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654936", "source" : "588424", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Btk", "weight" : 0.533996737122, "name" : "Clec4n (pp) Btk", "shared_name" : "Clec4n (pp) Btk", "SUID" : 654936, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654994", "source" : "588424", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Prkcd", "weight" : 0.438351587687, "name" : "Clec4n (pp) Prkcd", "shared_name" : "Clec4n (pp) Prkcd", "SUID" : 654994, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654866", "source" : "588424", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) 6330416G13Rik", "weight" : 0.509250346597, "name" : "Clec4n (pp) 6330416G13Rik", "shared_name" : "Clec4n (pp) 6330416G13Rik", "SUID" : 654866, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654868", "source" : "588424", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Tlr2", "weight" : 0.612347258793, "name" : "Clec4n (pp) Tlr2", "shared_name" : "Clec4n (pp) Tlr2", "SUID" : 654868, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654999", "source" : "588424", "target" : "589353", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.520612808568, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Clec4n (pp) Fblim1", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.520612808568, "fusion" : "NA", "name" : "Clec4n (pp) Fblim1", "neighborhood" : "NA", "sourceEdge" : 104883.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Clec4n (pp) Fblim1", "combinedscore" : "NA", "SUID" : 654999, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 5.588697E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "654984", "source" : "588424", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Ear12", "weight" : 0.585698953528, "name" : "Clec4n (pp) Ear12", "shared_name" : "Clec4n (pp) Ear12", "SUID" : 654984, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654891", "source" : "588424", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Plac8", "weight" : 0.617332834167, "name" : "Clec4n (pp) Plac8", "shared_name" : "Clec4n (pp) Plac8", "SUID" : 654891, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654979", "source" : "588424", "target" : "589256", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Timp1", "weight" : 0.427578916363, "name" : "Clec4n (pp) Timp1", "shared_name" : "Clec4n (pp) Timp1", "SUID" : 654979, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654893", "source" : "588424", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Fcer1g", "weight" : 0.753903918749, "name" : "Clec4n (pp) Fcer1g", "shared_name" : "Clec4n (pp) Fcer1g", "SUID" : 654893, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654910", "source" : "588424", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Cytip", "weight" : 0.697083889401, "name" : "Clec4n (pp) Cytip", "shared_name" : "Clec4n (pp) Cytip", "SUID" : 654910, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655003", "source" : "588424", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Lmo2", "weight" : 0.547605913816, "name" : "Clec4n (pp) Lmo2", "shared_name" : "Clec4n (pp) Lmo2", "SUID" : 655003, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654852", "source" : "588424", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Gpnmb", "weight" : 0.689679321788, "name" : "Clec4n (pp) Gpnmb", "shared_name" : "Clec4n (pp) Gpnmb", "SUID" : 654852, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654863", "source" : "588424", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Cd52", "weight" : 0.752748963103, "name" : "Clec4n (pp) Cd52", "shared_name" : "Clec4n (pp) Cd52", "SUID" : 654863, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654991", "source" : "588424", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.666272403592, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Clec4n (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.666272403592, "fusion" : "NA", "name" : "Clec4n (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 104879.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Clec4n (pp) Ear4", "combinedscore" : "NA", "SUID" : 654991, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 1.143E-9, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "654988", "source" : "588424", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Cd53", "weight" : 0.446956198599, "name" : "Clec4n (pp) Cd53", "shared_name" : "Clec4n (pp) Cd53", "SUID" : 654988, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654871", "source" : "588424", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Tpm4", "weight" : 0.567367601699, "name" : "Clec4n (pp) Tpm4", "shared_name" : "Clec4n (pp) Tpm4", "SUID" : 654871, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654840", "source" : "588424", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Tmsb10", "weight" : 0.602577748002, "name" : "Clec4n (pp) Tmsb10", "shared_name" : "Clec4n (pp) Tmsb10", "SUID" : 654840, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654872", "source" : "588424", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Vsig4", "weight" : 0.582087150193, "name" : "Clec4n (pp) Vsig4", "shared_name" : "Clec4n (pp) Vsig4", "SUID" : 654872, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654803", "source" : "588424", "target" : "588432", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Kcnk6", "weight" : 0.444150327554, "name" : "Clec4n (pp) Kcnk6", "shared_name" : "Clec4n (pp) Kcnk6", "SUID" : 654803, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654869", "source" : "588424", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Axl", "weight" : 0.641226424998, "name" : "Clec4n (pp) Axl", "shared_name" : "Clec4n (pp) Axl", "SUID" : 654869, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654974", "source" : "588424", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Ear10", "weight" : 0.490380430498, "name" : "Clec4n (pp) Ear10", "shared_name" : "Clec4n (pp) Ear10", "SUID" : 654974, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654805", "source" : "588424", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Cd63", "weight" : 0.616437910841, "name" : "Clec4n (pp) Cd63", "shared_name" : "Clec4n (pp) Cd63", "SUID" : 654805, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654833", "source" : "588424", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Cd86", "weight" : 0.586827992959, "name" : "Clec4n (pp) Cd86", "shared_name" : "Clec4n (pp) Cd86", "SUID" : 654833, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654909", "source" : "588424", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Hk3", "weight" : 0.641702151552, "name" : "Clec4n (pp) Hk3", "shared_name" : "Clec4n (pp) Hk3", "SUID" : 654909, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654883", "source" : "588424", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Obrgrp", "weight" : 0.572106097769, "name" : "Clec4n (pp) Obrgrp", "shared_name" : "Clec4n (pp) Obrgrp", "SUID" : 654883, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654860", "source" : "588424", "target" : "588678", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Fxyd5", "weight" : 0.450084984015, "name" : "Clec4n (pp) Fxyd5", "shared_name" : "Clec4n (pp) Fxyd5", "SUID" : 654860, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654948", "source" : "588424", "target" : "589113", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Ms4a7", "weight" : 0.422432791219, "name" : "Clec4n (pp) Ms4a7", "shared_name" : "Clec4n (pp) Ms4a7", "SUID" : 654948, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654973", "source" : "588424", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) H2-DMa", "weight" : 0.465624434105, "name" : "Clec4n (pp) H2-DMa", "shared_name" : "Clec4n (pp) H2-DMa", "SUID" : 654973, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654804", "source" : "588424", "target" : "588439", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Vim", "weight" : 0.526759385201, "name" : "Clec4n (pp) Vim", "shared_name" : "Clec4n (pp) Vim", "SUID" : 654804, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654812", "source" : "588424", "target" : "588472", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Ly9", "weight" : 0.515772815362, "name" : "Clec4n (pp) Ly9", "shared_name" : "Clec4n (pp) Ly9", "SUID" : 654812, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654983", "source" : "588424", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Abi3", "weight" : 0.51180409648, "name" : "Clec4n (pp) Abi3", "shared_name" : "Clec4n (pp) Abi3", "SUID" : 654983, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654816", "source" : "588424", "target" : "588490", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Arhgap30", "weight" : 0.475535928709, "name" : "Clec4n (pp) Arhgap30", "shared_name" : "Clec4n (pp) Arhgap30", "SUID" : 654816, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654938", "source" : "588424", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Cfp", "weight" : 0.589686815176, "name" : "Clec4n (pp) Cfp", "shared_name" : "Clec4n (pp) Cfp", "SUID" : 654938, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654857", "source" : "588424", "target" : "588664", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.65383044428, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Clec4n (pp) 5033414D02Rik", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.65383044428, "fusion" : "NA", "name" : "Clec4n (pp) 5033414D02Rik", "neighborhood" : "NA", "sourceEdge" : 104824.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Clec4n (pp) 5033414D02Rik", "combinedscore" : "NA", "SUID" : 654857, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 2.1194E-8, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "654844", "source" : "588424", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Gngt2", "weight" : 0.701370244697, "name" : "Clec4n (pp) Gngt2", "shared_name" : "Clec4n (pp) Gngt2", "SUID" : 654844, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654881", "source" : "588424", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) Tmem86a", "weight" : 0.49561675204, "name" : "Clec4n (pp) Tmem86a", "shared_name" : "Clec4n (pp) Tmem86a", "SUID" : 654881, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "654915", "source" : "588424", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Clec4n (pp) H2-DMb1", "weight" : 0.446896786075, "name" : "Clec4n (pp) H2-DMb1", "shared_name" : "Clec4n (pp) H2-DMb1", "SUID" : 654915, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630148", "source" : "588127", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Lrrc33", "weight" : 0.484451633437, "name" : "Lpxn (pp) Lrrc33", "shared_name" : "Lpxn (pp) Lrrc33", "SUID" : 630148, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630020", "source" : "588127", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Coro1a", "weight" : 0.615796535447, "name" : "Lpxn (pp) Coro1a", "shared_name" : "Lpxn (pp) Coro1a", "SUID" : 630020, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630109", "source" : "588127", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Vcam1", "weight" : 0.500996817355, "name" : "Lpxn (pp) Vcam1", "shared_name" : "Lpxn (pp) Vcam1", "SUID" : 630109, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "629958", "source" : "588127", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Laptm5", "weight" : 0.626097325363, "name" : "Lpxn (pp) Laptm5", "shared_name" : "Lpxn (pp) Laptm5", "SUID" : 629958, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630048", "source" : "588127", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Tlr2", "weight" : 0.492186566367, "name" : "Lpxn (pp) Tlr2", "shared_name" : "Lpxn (pp) Tlr2", "SUID" : 630048, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630046", "source" : "588127", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) 6330416G13Rik", "weight" : 0.418083999319, "name" : "Lpxn (pp) 6330416G13Rik", "shared_name" : "Lpxn (pp) 6330416G13Rik", "SUID" : 630046, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "629960", "source" : "588127", "target" : "588242", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Cd83", "weight" : 0.489314802156, "name" : "Lpxn (pp) Cd83", "shared_name" : "Lpxn (pp) Cd83", "SUID" : 629960, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630024", "source" : "588127", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Gngt2", "weight" : 0.623268676946, "name" : "Lpxn (pp) Gngt2", "shared_name" : "Lpxn (pp) Gngt2", "SUID" : 630024, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "629998", "source" : "588127", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Cd63", "weight" : 0.46647403833, "name" : "Lpxn (pp) Cd63", "shared_name" : "Lpxn (pp) Cd63", "SUID" : 629998, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630019", "source" : "588127", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Snn", "weight" : 0.511197984415, "name" : "Lpxn (pp) Snn", "shared_name" : "Lpxn (pp) Snn", "SUID" : 630019, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630140", "source" : "588127", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Ear4", "weight" : 0.534779993079, "name" : "Lpxn (pp) Ear4", "shared_name" : "Lpxn (pp) Ear4", "SUID" : 630140, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630113", "source" : "588127", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Tmsb4x", "weight" : 0.41355029024, "name" : "Lpxn (pp) Tmsb4x", "shared_name" : "Lpxn (pp) Tmsb4x", "SUID" : 630113, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630062", "source" : "588127", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Obrgrp", "weight" : 0.46740339064, "name" : "Lpxn (pp) Obrgrp", "shared_name" : "Lpxn (pp) Obrgrp", "SUID" : 630062, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630061", "source" : "588127", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Tmem86a", "weight" : 0.466494421315, "name" : "Lpxn (pp) Tmem86a", "shared_name" : "Lpxn (pp) Tmem86a", "SUID" : 630061, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "629994", "source" : "588127", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Cd14", "weight" : 0.531572800002, "name" : "Lpxn (pp) Cd14", "shared_name" : "Lpxn (pp) Cd14", "SUID" : 629994, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630043", "source" : "588127", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Cd52", "weight" : 0.511404093668, "name" : "Lpxn (pp) Cd52", "shared_name" : "Lpxn (pp) Cd52", "SUID" : 630043, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630072", "source" : "588127", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Lgals3", "weight" : 0.573022881809, "name" : "Lpxn (pp) Lgals3", "shared_name" : "Lpxn (pp) Lgals3", "SUID" : 630072, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630022", "source" : "588127", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Slc11a1", "weight" : 0.579185479837, "name" : "Lpxn (pp) Slc11a1", "shared_name" : "Lpxn (pp) Slc11a1", "SUID" : 630022, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630154", "source" : "588127", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Il10ra", "weight" : 0.435717674444, "name" : "Lpxn (pp) Il10ra", "shared_name" : "Lpxn (pp) Il10ra", "SUID" : 630154, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "629987", "source" : "588127", "target" : "588365", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Tnfaip8l2", "weight" : 0.504098106223, "name" : "Lpxn (pp) Tnfaip8l2", "shared_name" : "Lpxn (pp) Tnfaip8l2", "SUID" : 629987, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630026", "source" : "588127", "target" : "588608", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Treml4", "weight" : 0.402276091132, "name" : "Lpxn (pp) Treml4", "shared_name" : "Lpxn (pp) Treml4", "SUID" : 630026, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630000", "source" : "588127", "target" : "588461", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Tbxas1", "weight" : 0.455324710674, "name" : "Lpxn (pp) Tbxas1", "shared_name" : "Lpxn (pp) Tbxas1", "SUID" : 630000, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "629975", "source" : "588127", "target" : "588313", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Zfp90", "weight" : 0.404274645864, "name" : "Lpxn (pp) Zfp90", "shared_name" : "Lpxn (pp) Zfp90", "SUID" : 629975, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630150", "source" : "588127", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Lmo2", "weight" : 0.468571688729, "name" : "Lpxn (pp) Lmo2", "shared_name" : "Lpxn (pp) Lmo2", "SUID" : 630150, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630081", "source" : "588127", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Hk3", "weight" : 0.522826577965, "name" : "Lpxn (pp) Hk3", "shared_name" : "Lpxn (pp) Hk3", "SUID" : 630081, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630094", "source" : "588127", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Csrp1", "weight" : 0.447419362574, "name" : "Lpxn (pp) Csrp1", "shared_name" : "Lpxn (pp) Csrp1", "SUID" : 630094, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630067", "source" : "588127", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Plac8", "weight" : 0.493374401835, "name" : "Lpxn (pp) Plac8", "shared_name" : "Lpxn (pp) Plac8", "SUID" : 630067, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "629948", "source" : "588127", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Pip4k2a", "weight" : 0.432102478939, "name" : "Lpxn (pp) Pip4k2a", "shared_name" : "Lpxn (pp) Pip4k2a", "SUID" : 629948, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630082", "source" : "588127", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Cytip", "weight" : 0.556036353136, "name" : "Lpxn (pp) Cytip", "shared_name" : "Lpxn (pp) Cytip", "SUID" : 630082, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630138", "source" : "588127", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Clec7a", "weight" : 0.501122602802, "name" : "Lpxn (pp) Clec7a", "shared_name" : "Lpxn (pp) Clec7a", "SUID" : 630138, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630033", "source" : "588127", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Gpnmb", "weight" : 0.591555903398, "name" : "Lpxn (pp) Gpnmb", "shared_name" : "Lpxn (pp) Gpnmb", "SUID" : 630033, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "629970", "source" : "588127", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Ms4a6d", "weight" : 0.557629968001, "name" : "Lpxn (pp) Ms4a6d", "shared_name" : "Lpxn (pp) Ms4a6d", "SUID" : 629970, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "629947", "source" : "588127", "target" : "588151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Ccl4", "weight" : 0.492296444519, "name" : "Lpxn (pp) Ccl4", "shared_name" : "Lpxn (pp) Ccl4", "SUID" : 629947, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630134", "source" : "588127", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Ear12", "weight" : 0.467207907406, "name" : "Lpxn (pp) Ear12", "shared_name" : "Lpxn (pp) Ear12", "SUID" : 630134, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630057", "source" : "588127", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Slc15a3", "weight" : 0.586740704441, "name" : "Lpxn (pp) Slc15a3", "shared_name" : "Lpxn (pp) Slc15a3", "SUID" : 630057, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630059", "source" : "588127", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) 5430435G22Rik", "weight" : 0.468729161766, "name" : "Lpxn (pp) 5430435G22Rik", "shared_name" : "Lpxn (pp) 5430435G22Rik", "SUID" : 630059, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630100", "source" : "588127", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Btk", "weight" : 0.427991458633, "name" : "Lpxn (pp) Btk", "shared_name" : "Lpxn (pp) Btk", "SUID" : 630100, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "629961", "source" : "588127", "target" : "588244", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Gltp", "weight" : 0.505939743173, "name" : "Lpxn (pp) Gltp", "shared_name" : "Lpxn (pp) Gltp", "SUID" : 629961, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630079", "source" : "588127", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) C1qc", "weight" : 0.40911558505, "name" : "Lpxn (pp) C1qc", "shared_name" : "Lpxn (pp) C1qc", "SUID" : 630079, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630127", "source" : "588127", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Ear10", "weight" : 0.424981608161, "name" : "Lpxn (pp) Ear10", "shared_name" : "Lpxn (pp) Ear10", "SUID" : 630127, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630030", "source" : "588127", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Casp1", "weight" : 0.459513398128, "name" : "Lpxn (pp) Casp1", "shared_name" : "Lpxn (pp) Casp1", "SUID" : 630030, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630015", "source" : "588127", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Cd86", "weight" : 0.523715910969, "name" : "Lpxn (pp) Cd86", "shared_name" : "Lpxn (pp) Cd86", "SUID" : 630015, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630144", "source" : "588127", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Ly86", "weight" : 0.524991570777, "name" : "Lpxn (pp) Ly86", "shared_name" : "Lpxn (pp) Ly86", "SUID" : 630144, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "629979", "source" : "588127", "target" : "588342", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Mfge8", "weight" : 0.416420489941, "name" : "Lpxn (pp) Mfge8", "shared_name" : "Lpxn (pp) Mfge8", "SUID" : 629979, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630005", "source" : "588127", "target" : "588492", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Ncf4", "weight" : 0.481802244788, "name" : "Lpxn (pp) Ncf4", "shared_name" : "Lpxn (pp) Ncf4", "SUID" : 630005, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630123", "source" : "588127", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Serpinb6a", "weight" : 0.581372230177, "name" : "Lpxn (pp) Serpinb6a", "shared_name" : "Lpxn (pp) Serpinb6a", "SUID" : 630123, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "629976", "source" : "588127", "target" : "588322", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Pfkfb4", "weight" : 0.409685859436, "name" : "Lpxn (pp) Pfkfb4", "shared_name" : "Lpxn (pp) Pfkfb4", "SUID" : 629976, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630145", "source" : "588127", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) C1qb", "weight" : 0.646382243472, "name" : "Lpxn (pp) C1qb", "shared_name" : "Lpxn (pp) C1qb", "SUID" : 630145, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "629945", "source" : "588127", "target" : "588134", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Mlkl", "weight" : 0.437060740824, "name" : "Lpxn (pp) Mlkl", "shared_name" : "Lpxn (pp) Mlkl", "SUID" : 629945, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630131", "source" : "588127", "target" : "589256", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Timp1", "weight" : 0.416932663586, "name" : "Lpxn (pp) Timp1", "shared_name" : "Lpxn (pp) Timp1", "SUID" : 630131, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630049", "source" : "588127", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Axl", "weight" : 0.458326061066, "name" : "Lpxn (pp) Axl", "shared_name" : "Lpxn (pp) Axl", "SUID" : 630049, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630130", "source" : "588127", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Trem2", "weight" : 0.510181109825, "name" : "Lpxn (pp) Trem2", "shared_name" : "Lpxn (pp) Trem2", "SUID" : 630130, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630038", "source" : "588127", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) 5033414D02Rik", "weight" : 0.482955161526, "name" : "Lpxn (pp) 5033414D02Rik", "shared_name" : "Lpxn (pp) 5033414D02Rik", "SUID" : 630038, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630004", "source" : "588127", "target" : "588490", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Arhgap30", "weight" : 0.420118493821, "name" : "Lpxn (pp) Arhgap30", "shared_name" : "Lpxn (pp) Arhgap30", "SUID" : 630004, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630052", "source" : "588127", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Vsig4", "weight" : 0.615807913059, "name" : "Lpxn (pp) Vsig4", "shared_name" : "Lpxn (pp) Vsig4", "SUID" : 630052, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "629997", "source" : "588127", "target" : "588439", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Vim", "weight" : 0.455480405819, "name" : "Lpxn (pp) Vim", "shared_name" : "Lpxn (pp) Vim", "SUID" : 629997, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "629954", "source" : "588127", "target" : "588213", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Pdlim4", "weight" : 0.497235674875, "name" : "Lpxn (pp) Pdlim4", "shared_name" : "Lpxn (pp) Pdlim4", "SUID" : 629954, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "629962", "source" : "588127", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Sdc3", "weight" : 0.473895965102, "name" : "Lpxn (pp) Sdc3", "shared_name" : "Lpxn (pp) Sdc3", "SUID" : 629962, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "629985", "source" : "588127", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Cyp7b1", "weight" : 0.404621220273, "name" : "Lpxn (pp) Cyp7b1", "shared_name" : "Lpxn (pp) Cyp7b1", "SUID" : 629985, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630101", "source" : "588127", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Cfp", "weight" : 0.517589208611, "name" : "Lpxn (pp) Cfp", "shared_name" : "Lpxn (pp) Cfp", "SUID" : 630101, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630069", "source" : "588127", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Fcer1g", "weight" : 0.606829246729, "name" : "Lpxn (pp) Fcer1g", "shared_name" : "Lpxn (pp) Fcer1g", "SUID" : 630069, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630133", "source" : "588127", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Abi3", "weight" : 0.4743411587, "name" : "Lpxn (pp) Abi3", "shared_name" : "Lpxn (pp) Abi3", "SUID" : 630133, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "629953", "source" : "588127", "target" : "588212", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Anxa3", "weight" : 0.667809852375, "name" : "Lpxn (pp) Anxa3", "shared_name" : "Lpxn (pp) Anxa3", "SUID" : 629953, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "629946", "source" : "588127", "target" : "588147", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Ppic", "weight" : 0.489907552421, "name" : "Lpxn (pp) Ppic", "shared_name" : "Lpxn (pp) Ppic", "SUID" : 629946, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630060", "source" : "588127", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Ccl6", "weight" : 0.436597982332, "name" : "Lpxn (pp) Ccl6", "shared_name" : "Lpxn (pp) Ccl6", "SUID" : 630060, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630099", "source" : "588127", "target" : "589076", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) H2-M3", "weight" : 0.408008095462, "name" : "Lpxn (pp) H2-M3", "shared_name" : "Lpxn (pp) H2-M3", "SUID" : 630099, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630051", "source" : "588127", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Tpm4", "weight" : 0.46785656282, "name" : "Lpxn (pp) Tpm4", "shared_name" : "Lpxn (pp) Tpm4", "SUID" : 630051, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "629991", "source" : "588127", "target" : "588394", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Lyzs", "weight" : 0.44900892526, "name" : "Lpxn (pp) Lyzs", "shared_name" : "Lpxn (pp) Lyzs", "SUID" : 629991, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630146", "source" : "588127", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Fblim1", "weight" : 0.474606952591, "name" : "Lpxn (pp) Fblim1", "shared_name" : "Lpxn (pp) Fblim1", "SUID" : 630146, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630021", "source" : "588127", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Tmsb10", "weight" : 0.406993849584, "name" : "Lpxn (pp) Tmsb10", "shared_name" : "Lpxn (pp) Tmsb10", "SUID" : 630021, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630066", "source" : "588127", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Cotl1", "weight" : 0.523136443245, "name" : "Lpxn (pp) Cotl1", "shared_name" : "Lpxn (pp) Cotl1", "SUID" : 630066, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "629974", "source" : "588127", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Cxcl16", "weight" : 0.450411247797, "name" : "Lpxn (pp) Cxcl16", "shared_name" : "Lpxn (pp) Cxcl16", "SUID" : 629974, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "629995", "source" : "588127", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Clec4n", "weight" : 0.629339771248, "name" : "Lpxn (pp) Clec4n", "shared_name" : "Lpxn (pp) Clec4n", "SUID" : 629995, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "629989", "source" : "588127", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Selplg", "weight" : 0.525259017474, "name" : "Lpxn (pp) Selplg", "shared_name" : "Lpxn (pp) Selplg", "SUID" : 629989, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "630135", "source" : "588127", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lpxn (pp) Fcgr4", "weight" : 0.500285431257, "name" : "Lpxn (pp) Fcgr4", "shared_name" : "Lpxn (pp) Fcgr4", "SUID" : 630135, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685880", "source" : "589249", "target" : "589256", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Trem2 (pp) Timp1", "weight" : 0.589869415743, "name" : "Trem2 (pp) Timp1", "shared_name" : "Trem2 (pp) Timp1", "SUID" : 685880, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685901", "source" : "589249", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Trem2 (pp) Fblim1", "weight" : 0.436268268451, "name" : "Trem2 (pp) Fblim1", "shared_name" : "Trem2 (pp) Fblim1", "SUID" : 685901, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685882", "source" : "589249", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Trem2 (pp) Abi3", "weight" : 0.51248933385, "name" : "Trem2 (pp) Abi3", "shared_name" : "Trem2 (pp) Abi3", "SUID" : 685882, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685893", "source" : "589249", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Trem2 (pp) Ear4", "weight" : 0.653117112136, "name" : "Trem2 (pp) Ear4", "shared_name" : "Trem2 (pp) Ear4", "SUID" : 685893, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685909", "source" : "589249", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Trem2 (pp) Il10ra", "weight" : 0.401349069565, "name" : "Trem2 (pp) Il10ra", "shared_name" : "Trem2 (pp) Il10ra", "SUID" : 685909, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685884", "source" : "589249", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Trem2 (pp) Ear12", "weight" : 0.56632413877, "name" : "Trem2 (pp) Ear12", "shared_name" : "Trem2 (pp) Ear12", "SUID" : 685884, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685889", "source" : "589249", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Trem2 (pp) Clec7a", "weight" : 0.725256907157, "name" : "Trem2 (pp) Clec7a", "shared_name" : "Trem2 (pp) Clec7a", "SUID" : 685889, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685899", "source" : "589249", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Trem2 (pp) C1qb", "weight" : 0.443986364692, "name" : "Trem2 (pp) C1qb", "shared_name" : "Trem2 (pp) C1qb", "SUID" : 685899, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685885", "source" : "589249", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Trem2 (pp) Fcgr4", "weight" : 0.425438069768, "name" : "Trem2 (pp) Fcgr4", "shared_name" : "Trem2 (pp) Fcgr4", "SUID" : 685885, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685881", "source" : "589249", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Trem2 (pp) Ppif", "weight" : 0.429380106929, "name" : "Trem2 (pp) Ppif", "shared_name" : "Trem2 (pp) Ppif", "SUID" : 685881, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666754", "source" : "588636", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Repin1 (pp) Snx10", "weight" : 0.413883186602, "name" : "Repin1 (pp) Snx10", "shared_name" : "Repin1 (pp) Snx10", "SUID" : 666754, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666749", "source" : "588636", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Repin1 (pp) Csrp1", "weight" : 0.45289330668, "name" : "Repin1 (pp) Csrp1", "shared_name" : "Repin1 (pp) Csrp1", "SUID" : 666749, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666768", "source" : "588636", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Repin1 (pp) Serpinb6a", "weight" : 0.450390868758, "name" : "Repin1 (pp) Serpinb6a", "shared_name" : "Repin1 (pp) Serpinb6a", "SUID" : 666768, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666789", "source" : "588636", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Repin1 (pp) Ly86", "weight" : 0.404799534197, "name" : "Repin1 (pp) Ly86", "shared_name" : "Repin1 (pp) Ly86", "SUID" : 666789, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666727", "source" : "588636", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Repin1 (pp) Slc15a3", "weight" : 0.404935300849, "name" : "Repin1 (pp) Slc15a3", "shared_name" : "Repin1 (pp) Slc15a3", "SUID" : 666727, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666719", "source" : "588636", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Repin1 (pp) Axl", "weight" : 0.451765534338, "name" : "Repin1 (pp) Axl", "shared_name" : "Repin1 (pp) Axl", "SUID" : 666719, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666785", "source" : "588636", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Repin1 (pp) Ear4", "weight" : 0.483059678739, "name" : "Repin1 (pp) Ear4", "shared_name" : "Repin1 (pp) Ear4", "SUID" : 666785, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666740", "source" : "588636", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Repin1 (pp) Lgals3", "weight" : 0.480077781577, "name" : "Repin1 (pp) Lgals3", "shared_name" : "Repin1 (pp) Lgals3", "SUID" : 666740, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666735", "source" : "588636", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Repin1 (pp) Cotl1", "weight" : 0.443488193878, "name" : "Repin1 (pp) Cotl1", "shared_name" : "Repin1 (pp) Cotl1", "SUID" : 666735, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666730", "source" : "588636", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Repin1 (pp) Tmem86a", "weight" : 0.45813689925, "name" : "Repin1 (pp) Tmem86a", "shared_name" : "Repin1 (pp) Tmem86a", "SUID" : 666730, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666734", "source" : "588636", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Repin1 (pp) Pla2g15", "weight" : 0.464942244491, "name" : "Repin1 (pp) Pla2g15", "shared_name" : "Repin1 (pp) Pla2g15", "SUID" : 666734, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666791", "source" : "588636", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Repin1 (pp) Tspan33", "weight" : 0.443698095865, "name" : "Repin1 (pp) Tspan33", "shared_name" : "Repin1 (pp) Tspan33", "SUID" : 666791, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666772", "source" : "588636", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Repin1 (pp) Ear10", "weight" : 0.478565631574, "name" : "Repin1 (pp) Ear10", "shared_name" : "Repin1 (pp) Ear10", "SUID" : 666772, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666757", "source" : "588636", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Repin1 (pp) Vcam1", "weight" : 0.423371660867, "name" : "Repin1 (pp) Vcam1", "shared_name" : "Repin1 (pp) Vcam1", "SUID" : 666757, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665197", "source" : "588605", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) D12Ertd553e", "weight" : 0.425666607307, "name" : "Gngt2 (pp) D12Ertd553e", "shared_name" : "Gngt2 (pp) D12Ertd553e", "SUID" : 665197, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665258", "source" : "588605", "target" : "588968", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Bcl2a1c", "weight" : 0.416094142469, "name" : "Gngt2 (pp) Bcl2a1c", "shared_name" : "Gngt2 (pp) Bcl2a1c", "SUID" : 665258, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665248", "source" : "588605", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Cytip", "weight" : 0.546816134041, "name" : "Gngt2 (pp) Cytip", "shared_name" : "Gngt2 (pp) Cytip", "SUID" : 665248, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665230", "source" : "588605", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Plac8", "weight" : 0.67740959838, "name" : "Gngt2 (pp) Plac8", "shared_name" : "Gngt2 (pp) Plac8", "SUID" : 665230, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665234", "source" : "588605", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Fcgr3", "weight" : 0.485432511808, "name" : "Gngt2 (pp) Fcgr3", "shared_name" : "Gngt2 (pp) Fcgr3", "SUID" : 665234, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665205", "source" : "588605", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Serpina3g", "weight" : 0.517610755878, "name" : "Gngt2 (pp) Serpina3g", "shared_name" : "Gngt2 (pp) Serpina3g", "SUID" : 665205, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665289", "source" : "588605", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Tmsb4x", "weight" : 0.601864584961, "name" : "Gngt2 (pp) Tmsb4x", "shared_name" : "Gngt2 (pp) Tmsb4x", "SUID" : 665289, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665274", "source" : "588605", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Cfp", "weight" : 0.664004614032, "name" : "Gngt2 (pp) Cfp", "shared_name" : "Gngt2 (pp) Cfp", "SUID" : 665274, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665317", "source" : "588605", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Fcgr4", "weight" : 0.683854626625, "name" : "Gngt2 (pp) Fcgr4", "shared_name" : "Gngt2 (pp) Fcgr4", "SUID" : 665317, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665209", "source" : "588605", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Tpm4", "weight" : 0.47317440474, "name" : "Gngt2 (pp) Tpm4", "shared_name" : "Gngt2 (pp) Tpm4", "SUID" : 665209, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665263", "source" : "588605", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Csrp1", "weight" : 0.639961688717, "name" : "Gngt2 (pp) Csrp1", "shared_name" : "Gngt2 (pp) Csrp1", "SUID" : 665263, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665207", "source" : "588605", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Axl", "weight" : 0.606918246383, "name" : "Gngt2 (pp) Axl", "shared_name" : "Gngt2 (pp) Axl", "SUID" : 665207, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665327", "source" : "588605", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Ly86", "weight" : 0.722333882226, "name" : "Gngt2 (pp) Ly86", "shared_name" : "Gngt2 (pp) Ly86", "SUID" : 665327, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665228", "source" : "588605", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Cotl1", "weight" : 0.634566150031, "name" : "Gngt2 (pp) Cotl1", "shared_name" : "Gngt2 (pp) Cotl1", "SUID" : 665228, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665315", "source" : "588605", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Ear12", "weight" : 0.512854766179, "name" : "Gngt2 (pp) Ear12", "shared_name" : "Gngt2 (pp) Ear12", "SUID" : 665315, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665320", "source" : "588605", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Clec7a", "weight" : 0.4312659157, "name" : "Gngt2 (pp) Clec7a", "shared_name" : "Gngt2 (pp) Clec7a", "SUID" : 665320, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665191", "source" : "588605", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Gpnmb", "weight" : 0.558860237082, "name" : "Gngt2 (pp) Gpnmb", "shared_name" : "Gngt2 (pp) Gpnmb", "SUID" : 665191, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665220", "source" : "588605", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Tmem86a", "weight" : 0.474993523828, "name" : "Gngt2 (pp) Tmem86a", "shared_name" : "Gngt2 (pp) Tmem86a", "SUID" : 665220, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665277", "source" : "588605", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Pld4", "weight" : 0.429773948739, "name" : "Gngt2 (pp) Pld4", "shared_name" : "Gngt2 (pp) Pld4", "SUID" : 665277, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665245", "source" : "588605", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) C1qc", "weight" : 0.521393226579, "name" : "Gngt2 (pp) C1qc", "shared_name" : "Gngt2 (pp) C1qc", "SUID" : 665245, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665309", "source" : "588605", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Trem2", "weight" : 0.43096491773, "name" : "Gngt2 (pp) Trem2", "shared_name" : "Gngt2 (pp) Trem2", "SUID" : 665309, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665206", "source" : "588605", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Tlr2", "weight" : 0.559776693788, "name" : "Gngt2 (pp) Tlr2", "shared_name" : "Gngt2 (pp) Tlr2", "SUID" : 665206, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665188", "source" : "588605", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Casp1", "weight" : 0.464522645072, "name" : "Gngt2 (pp) Casp1", "shared_name" : "Gngt2 (pp) Casp1", "SUID" : 665188, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665333", "source" : "588605", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Lmo2", "weight" : 0.406086725614, "name" : "Gngt2 (pp) Lmo2", "shared_name" : "Gngt2 (pp) Lmo2", "SUID" : 665333, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665247", "source" : "588605", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Hk3", "weight" : 0.586656340297, "name" : "Gngt2 (pp) Hk3", "shared_name" : "Gngt2 (pp) Hk3", "SUID" : 665247, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665314", "source" : "588605", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Abi3", "weight" : 0.503477999804, "name" : "Gngt2 (pp) Abi3", "shared_name" : "Gngt2 (pp) Abi3", "SUID" : 665314, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665210", "source" : "588605", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Vsig4", "weight" : 0.535865092891, "name" : "Gngt2 (pp) Vsig4", "shared_name" : "Gngt2 (pp) Vsig4", "SUID" : 665210, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665328", "source" : "588605", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) C1qb", "weight" : 0.669411923131, "name" : "Gngt2 (pp) C1qb", "shared_name" : "Gngt2 (pp) C1qb", "SUID" : 665328, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665232", "source" : "588605", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Fcer1g", "weight" : 0.669180623998, "name" : "Gngt2 (pp) Fcer1g", "shared_name" : "Gngt2 (pp) Fcer1g", "SUID" : 665232, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665212", "source" : "588605", "target" : "588742", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Ifitm6", "weight" : 0.514663247876, "name" : "Gngt2 (pp) Ifitm6", "shared_name" : "Gngt2 (pp) Ifitm6", "SUID" : 665212, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665222", "source" : "588605", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Obrgrp", "weight" : 0.560623891326, "name" : "Gngt2 (pp) Obrgrp", "shared_name" : "Gngt2 (pp) Obrgrp", "SUID" : 665222, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665196", "source" : "588605", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) 5033414D02Rik", "weight" : 0.561286387915, "name" : "Gngt2 (pp) 5033414D02Rik", "shared_name" : "Gngt2 (pp) 5033414D02Rik", "SUID" : 665196, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665284", "source" : "588605", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Vcam1", "weight" : 0.573124117911, "name" : "Gngt2 (pp) Vcam1", "shared_name" : "Gngt2 (pp) Vcam1", "SUID" : 665284, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665272", "source" : "588605", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Btk", "weight" : 0.592448973137, "name" : "Gngt2 (pp) Btk", "shared_name" : "Gngt2 (pp) Btk", "SUID" : 665272, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665185", "source" : "588605", "target" : "588608", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Treml4", "weight" : 0.444277679507, "name" : "Gngt2 (pp) Treml4", "shared_name" : "Gngt2 (pp) Treml4", "SUID" : 665185, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665322", "source" : "588605", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Ear4", "weight" : 0.636823881517, "name" : "Gngt2 (pp) Ear4", "shared_name" : "Gngt2 (pp) Ear4", "SUID" : 665322, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665294", "source" : "588605", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Rasgrp1", "weight" : 0.410574431676, "name" : "Gngt2 (pp) Rasgrp1", "shared_name" : "Gngt2 (pp) Rasgrp1", "SUID" : 665294, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665219", "source" : "588605", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Ccl6", "weight" : 0.450452489674, "name" : "Gngt2 (pp) Ccl6", "shared_name" : "Gngt2 (pp) Ccl6", "SUID" : 665219, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665239", "source" : "588605", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Lgals3", "weight" : 0.673958419919, "name" : "Gngt2 (pp) Lgals3", "shared_name" : "Gngt2 (pp) Lgals3", "SUID" : 665239, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665217", "source" : "588605", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Slc15a3", "weight" : 0.764514877133, "name" : "Gngt2 (pp) Slc15a3", "shared_name" : "Gngt2 (pp) Slc15a3", "SUID" : 665217, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665329", "source" : "588605", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Fblim1", "weight" : 0.413718576664, "name" : "Gngt2 (pp) Fblim1", "shared_name" : "Gngt2 (pp) Fblim1", "SUID" : 665329, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665302", "source" : "588605", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Serpinb6a", "weight" : 0.620057386287, "name" : "Gngt2 (pp) Serpinb6a", "shared_name" : "Gngt2 (pp) Serpinb6a", "SUID" : 665302, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665319", "source" : "588605", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Cd53", "weight" : 0.464905216212, "name" : "Gngt2 (pp) Cd53", "shared_name" : "Gngt2 (pp) Cd53", "SUID" : 665319, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665325", "source" : "588605", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Prkcd", "weight" : 0.413057733513, "name" : "Gngt2 (pp) Prkcd", "shared_name" : "Gngt2 (pp) Prkcd", "SUID" : 665325, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665331", "source" : "588605", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Lrrc33", "weight" : 0.483599353136, "name" : "Gngt2 (pp) Lrrc33", "shared_name" : "Gngt2 (pp) Lrrc33", "SUID" : 665331, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "665202", "source" : "588605", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Gngt2 (pp) Cd52", "weight" : 0.606364787785, "name" : "Gngt2 (pp) Cd52", "shared_name" : "Gngt2 (pp) Cd52", "SUID" : 665202, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609191", "source" : "587873", "target" : "588335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Arpc1b", "weight" : 0.486808346089, "name" : "Slc8a1 (pp) Arpc1b", "shared_name" : "Slc8a1 (pp) Arpc1b", "SUID" : 609191, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609173", "source" : "587873", "target" : "588242", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Cd83", "weight" : 0.458908593323, "name" : "Slc8a1 (pp) Cd83", "shared_name" : "Slc8a1 (pp) Cd83", "SUID" : 609173, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609254", "source" : "587873", "target" : "588678", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Fxyd5", "weight" : 0.401640352138, "name" : "Slc8a1 (pp) Fxyd5", "shared_name" : "Slc8a1 (pp) Fxyd5", "SUID" : 609254, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609308", "source" : "587873", "target" : "589030", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Soat1", "weight" : 0.496130893898, "name" : "Slc8a1 (pp) Soat1", "shared_name" : "Slc8a1 (pp) Soat1", "SUID" : 609308, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609216", "source" : "587873", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Renbp", "weight" : 0.47284357863, "name" : "Slc8a1 (pp) Renbp", "shared_name" : "Slc8a1 (pp) Renbp", "SUID" : 609216, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609231", "source" : "587873", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Cd86", "weight" : 0.413058095698, "name" : "Slc8a1 (pp) Cd86", "shared_name" : "Slc8a1 (pp) Cd86", "SUID" : 609231, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609356", "source" : "587873", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Ear12", "weight" : 0.459601477137, "name" : "Slc8a1 (pp) Ear12", "shared_name" : "Slc8a1 (pp) Ear12", "SUID" : 609356, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609207", "source" : "587873", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Clec4n", "weight" : 0.406183907248, "name" : "Slc8a1 (pp) Clec4n", "shared_name" : "Slc8a1 (pp) Clec4n", "SUID" : 609207, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609354", "source" : "587873", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Ppif", "weight" : 0.401274019948, "name" : "Slc8a1 (pp) Ppif", "shared_name" : "Slc8a1 (pp) Ppif", "SUID" : 609354, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609278", "source" : "587873", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Cotl1", "weight" : 0.5799290834, "name" : "Slc8a1 (pp) Cotl1", "shared_name" : "Slc8a1 (pp) Cotl1", "SUID" : 609278, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609199", "source" : "587873", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Selplg", "weight" : 0.406346025938, "name" : "Slc8a1 (pp) Selplg", "shared_name" : "Slc8a1 (pp) Selplg", "SUID" : 609199, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609197", "source" : "587873", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Cyp7b1", "weight" : 0.509987536764, "name" : "Slc8a1 (pp) Cyp7b1", "shared_name" : "Slc8a1 (pp) Cyp7b1", "SUID" : 609197, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609272", "source" : "587873", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Tmem86a", "weight" : 0.54803151341, "name" : "Slc8a1 (pp) Tmem86a", "shared_name" : "Slc8a1 (pp) Tmem86a", "SUID" : 609272, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609148", "source" : "587873", "target" : "588104", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Bmp1", "weight" : 0.423120641255, "name" : "Slc8a1 (pp) Bmp1", "shared_name" : "Slc8a1 (pp) Bmp1", "SUID" : 609148, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609170", "source" : "587873", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Laptm5", "weight" : 0.473013645635, "name" : "Slc8a1 (pp) Laptm5", "shared_name" : "Slc8a1 (pp) Laptm5", "SUID" : 609170, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609282", "source" : "587873", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Fcer1g", "weight" : 0.410786971834, "name" : "Slc8a1 (pp) Fcer1g", "shared_name" : "Slc8a1 (pp) Fcer1g", "SUID" : 609282, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609261", "source" : "587873", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Axl", "weight" : 0.496675991323, "name" : "Slc8a1 (pp) Axl", "shared_name" : "Slc8a1 (pp) Axl", "SUID" : 609261, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609363", "source" : "587873", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Ear4", "weight" : 0.517393904307, "name" : "Slc8a1 (pp) Ear4", "shared_name" : "Slc8a1 (pp) Ear4", "SUID" : 609363, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609271", "source" : "587873", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Ccl6", "weight" : 0.408631814973, "name" : "Slc8a1 (pp) Ccl6", "shared_name" : "Slc8a1 (pp) Ccl6", "SUID" : 609271, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609237", "source" : "587873", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Coro1a", "weight" : 0.406063026988, "name" : "Slc8a1 (pp) Coro1a", "shared_name" : "Slc8a1 (pp) Coro1a", "SUID" : 609237, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609296", "source" : "587873", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Cytip", "weight" : 0.441944738199, "name" : "Slc8a1 (pp) Cytip", "shared_name" : "Slc8a1 (pp) Cytip", "SUID" : 609296, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609187", "source" : "587873", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Cxcl16", "weight" : 0.438155524142, "name" : "Slc8a1 (pp) Cxcl16", "shared_name" : "Slc8a1 (pp) Cxcl16", "SUID" : 609187, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609140", "source" : "587873", "target" : "588024", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Cd68", "weight" : 0.442004776718, "name" : "Slc8a1 (pp) Cd68", "shared_name" : "Slc8a1 (pp) Cd68", "SUID" : 609140, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609221", "source" : "587873", "target" : "588496", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Gphn", "weight" : 0.439413417552, "name" : "Slc8a1 (pp) Gphn", "shared_name" : "Slc8a1 (pp) Gphn", "SUID" : 609221, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609350", "source" : "587873", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Trem2", "weight" : 0.469332884198, "name" : "Slc8a1 (pp) Trem2", "shared_name" : "Slc8a1 (pp) Trem2", "SUID" : 609350, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609270", "source" : "587873", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Slc15a3", "weight" : 0.525298889661, "name" : "Slc8a1 (pp) Slc15a3", "shared_name" : "Slc8a1 (pp) Slc15a3", "SUID" : 609270, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609146", "source" : "587873", "target" : "588086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Iqgap1", "weight" : 0.443664086265, "name" : "Slc8a1 (pp) Iqgap1", "shared_name" : "Slc8a1 (pp) Iqgap1", "SUID" : 609146, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609132", "source" : "587873", "target" : "587966", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Cyba", "weight" : 0.511461351202, "name" : "Slc8a1 (pp) Cyba", "shared_name" : "Slc8a1 (pp) Cyba", "SUID" : 609132, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609347", "source" : "587873", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Ear10", "weight" : 0.503947076314, "name" : "Slc8a1 (pp) Ear10", "shared_name" : "Slc8a1 (pp) Ear10", "SUID" : 609347, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609289", "source" : "587873", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Lgals3", "weight" : 0.583707050545, "name" : "Slc8a1 (pp) Lgals3", "shared_name" : "Slc8a1 (pp) Lgals3", "SUID" : 609289, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609195", "source" : "587873", "target" : "588351", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Ttc39a", "weight" : 0.424408134645, "name" : "Slc8a1 (pp) Ttc39a", "shared_name" : "Slc8a1 (pp) Ttc39a", "SUID" : 609195, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609248", "source" : "587873", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Gpnmb", "weight" : 0.515932593434, "name" : "Slc8a1 (pp) Gpnmb", "shared_name" : "Slc8a1 (pp) Gpnmb", "SUID" : 609248, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609307", "source" : "587873", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Csrp1", "weight" : 0.549642439415, "name" : "Slc8a1 (pp) Csrp1", "shared_name" : "Slc8a1 (pp) Csrp1", "SUID" : 609307, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609217", "source" : "587873", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Plscr1", "weight" : 0.419328875867, "name" : "Slc8a1 (pp) Plscr1", "shared_name" : "Slc8a1 (pp) Plscr1", "SUID" : 609217, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609368", "source" : "587873", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Ly86", "weight" : 0.452796262719, "name" : "Slc8a1 (pp) Ly86", "shared_name" : "Slc8a1 (pp) Ly86", "SUID" : 609368, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609160", "source" : "587873", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Pip4k2a", "weight" : 0.512445903559, "name" : "Slc8a1 (pp) Pip4k2a", "shared_name" : "Slc8a1 (pp) Pip4k2a", "SUID" : 609160, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609255", "source" : "587873", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Cd52", "weight" : 0.453283739233, "name" : "Slc8a1 (pp) Cd52", "shared_name" : "Slc8a1 (pp) Cd52", "SUID" : 609255, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609328", "source" : "587873", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Tmsb4x", "weight" : 0.473483070448, "name" : "Slc8a1 (pp) Tmsb4x", "shared_name" : "Slc8a1 (pp) Tmsb4x", "SUID" : 609328, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609209", "source" : "587873", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Cd63", "weight" : 0.567689101628, "name" : "Slc8a1 (pp) Cd63", "shared_name" : "Slc8a1 (pp) Cd63", "SUID" : 609209, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609324", "source" : "587873", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Vcam1", "weight" : 0.476975584703, "name" : "Slc8a1 (pp) Vcam1", "shared_name" : "Slc8a1 (pp) Vcam1", "SUID" : 609324, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609361", "source" : "587873", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Clec7a", "weight" : 0.519054132031, "name" : "Slc8a1 (pp) Clec7a", "shared_name" : "Slc8a1 (pp) Clec7a", "SUID" : 609361, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609320", "source" : "587873", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Snx10", "weight" : 0.464378764736, "name" : "Slc8a1 (pp) Snx10", "shared_name" : "Slc8a1 (pp) Snx10", "SUID" : 609320, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609182", "source" : "587873", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Ms4a6d", "weight" : 0.421920804445, "name" : "Slc8a1 (pp) Ms4a6d", "shared_name" : "Slc8a1 (pp) Ms4a6d", "SUID" : 609182, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "609188", "source" : "587873", "target" : "588322", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Slc8a1 (pp) Pfkfb4", "weight" : 0.413433058778, "name" : "Slc8a1 (pp) Pfkfb4", "shared_name" : "Slc8a1 (pp) Pfkfb4", "SUID" : 609188, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664496", "source" : "588593", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) Ear4", "weight" : 0.53787148308, "name" : "Tmsb10 (pp) Ear4", "shared_name" : "Tmsb10 (pp) Ear4", "SUID" : 664496, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664479", "source" : "588593", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) Serpinb6a", "weight" : 0.448207294716, "name" : "Tmsb10 (pp) Serpinb6a", "shared_name" : "Tmsb10 (pp) Serpinb6a", "SUID" : 664479, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664502", "source" : "588593", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) C1qb", "weight" : 0.487546101889, "name" : "Tmsb10 (pp) C1qb", "shared_name" : "Tmsb10 (pp) C1qb", "SUID" : 664502, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664494", "source" : "588593", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) Clec7a", "weight" : 0.408577418289, "name" : "Tmsb10 (pp) Clec7a", "shared_name" : "Tmsb10 (pp) Clec7a", "SUID" : 664494, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664378", "source" : "588593", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) Gpnmb", "weight" : 0.498182144251, "name" : "Tmsb10 (pp) Gpnmb", "shared_name" : "Tmsb10 (pp) Gpnmb", "SUID" : 664378, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664412", "source" : "588593", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) Cotl1", "weight" : 0.585857486222, "name" : "Tmsb10 (pp) Cotl1", "shared_name" : "Tmsb10 (pp) Cotl1", "SUID" : 664412, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664417", "source" : "588593", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) Fcgr3", "weight" : 0.452799047786, "name" : "Tmsb10 (pp) Fcgr3", "shared_name" : "Tmsb10 (pp) Fcgr3", "SUID" : 664417, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664499", "source" : "588593", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) Prkcd", "weight" : 0.48919249607, "name" : "Tmsb10 (pp) Prkcd", "shared_name" : "Tmsb10 (pp) Prkcd", "SUID" : 664499, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664481", "source" : "588593", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) H2-DMa", "weight" : 0.46834640318, "name" : "Tmsb10 (pp) H2-DMa", "shared_name" : "Tmsb10 (pp) H2-DMa", "SUID" : 664481, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664393", "source" : "588593", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) Axl", "weight" : 0.519423195528, "name" : "Tmsb10 (pp) Axl", "shared_name" : "Tmsb10 (pp) Axl", "SUID" : 664393, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664414", "source" : "588593", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) Plac8", "weight" : 0.538924248329, "name" : "Tmsb10 (pp) Plac8", "shared_name" : "Tmsb10 (pp) Plac8", "SUID" : 664414, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664489", "source" : "588593", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) Ear12", "weight" : 0.459907926212, "name" : "Tmsb10 (pp) Ear12", "shared_name" : "Tmsb10 (pp) Ear12", "SUID" : 664489, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664416", "source" : "588593", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) Fcer1g", "weight" : 0.638227752318, "name" : "Tmsb10 (pp) Fcer1g", "shared_name" : "Tmsb10 (pp) Fcer1g", "SUID" : 664416, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664373", "source" : "588593", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) Gngt2", "weight" : 0.500794756778, "name" : "Tmsb10 (pp) Gngt2", "shared_name" : "Tmsb10 (pp) Gngt2", "SUID" : 664373, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664467", "source" : "588593", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) Tmsb4x", "weight" : 0.59159364869, "name" : "Tmsb10 (pp) Tmsb4x", "shared_name" : "Tmsb10 (pp) Tmsb4x", "SUID" : 664467, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664491", "source" : "588593", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) Fcgr4", "weight" : 0.4492254454, "name" : "Tmsb10 (pp) Fcgr4", "shared_name" : "Tmsb10 (pp) Fcgr4", "SUID" : 664491, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664485", "source" : "588593", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) Trem2", "weight" : 0.454479317176, "name" : "Tmsb10 (pp) Trem2", "shared_name" : "Tmsb10 (pp) Trem2", "SUID" : 664485, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664425", "source" : "588593", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) C1qc", "weight" : 0.627728017935, "name" : "Tmsb10 (pp) C1qc", "shared_name" : "Tmsb10 (pp) C1qc", "SUID" : 664425, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664371", "source" : "588593", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) Slc11a1", "weight" : 0.521692436808, "name" : "Tmsb10 (pp) Slc11a1", "shared_name" : "Tmsb10 (pp) Slc11a1", "SUID" : 664371, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664395", "source" : "588593", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) Tpm4", "weight" : 0.479816541528, "name" : "Tmsb10 (pp) Tpm4", "shared_name" : "Tmsb10 (pp) Tpm4", "SUID" : 664395, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664444", "source" : "588593", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) Csrp1", "weight" : 0.613293720419, "name" : "Tmsb10 (pp) Csrp1", "shared_name" : "Tmsb10 (pp) Csrp1", "SUID" : 664444, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664431", "source" : "588593", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) H2-DMb1", "weight" : 0.400630425589, "name" : "Tmsb10 (pp) H2-DMb1", "shared_name" : "Tmsb10 (pp) H2-DMb1", "SUID" : 664431, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664427", "source" : "588593", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) Cytip", "weight" : 0.464374197064, "name" : "Tmsb10 (pp) Cytip", "shared_name" : "Tmsb10 (pp) Cytip", "SUID" : 664427, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664383", "source" : "588593", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) 5033414D02Rik", "weight" : 0.531649849501, "name" : "Tmsb10 (pp) 5033414D02Rik", "shared_name" : "Tmsb10 (pp) 5033414D02Rik", "SUID" : 664383, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664463", "source" : "588593", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) Vcam1", "weight" : 0.640768124102, "name" : "Tmsb10 (pp) Vcam1", "shared_name" : "Tmsb10 (pp) Vcam1", "SUID" : 664463, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664403", "source" : "588593", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) Slc15a3", "weight" : 0.547784744263, "name" : "Tmsb10 (pp) Slc15a3", "shared_name" : "Tmsb10 (pp) Slc15a3", "SUID" : 664403, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664391", "source" : "588593", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) Serpina3g", "weight" : 0.426603347948, "name" : "Tmsb10 (pp) Serpina3g", "shared_name" : "Tmsb10 (pp) Serpina3g", "SUID" : 664391, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664503", "source" : "588593", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) Fblim1", "weight" : 0.459451317483, "name" : "Tmsb10 (pp) Fblim1", "shared_name" : "Tmsb10 (pp) Fblim1", "SUID" : 664503, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664426", "source" : "588593", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) Hk3", "weight" : 0.446401895176, "name" : "Tmsb10 (pp) Hk3", "shared_name" : "Tmsb10 (pp) Hk3", "SUID" : 664426, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664501", "source" : "588593", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) Ly86", "weight" : 0.484417593995, "name" : "Tmsb10 (pp) Ly86", "shared_name" : "Tmsb10 (pp) Ly86", "SUID" : 664501, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664387", "source" : "588593", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) Cd52", "weight" : 0.640924907569, "name" : "Tmsb10 (pp) Cd52", "shared_name" : "Tmsb10 (pp) Cd52", "SUID" : 664387, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664420", "source" : "588593", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb10 (pp) Lgals3", "weight" : 0.567307371696, "name" : "Tmsb10 (pp) Lgals3", "shared_name" : "Tmsb10 (pp) Lgals3", "SUID" : 664420, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605481", "source" : "587844", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Btk", "weight" : 0.510093830719, "name" : "Ear2 (pp) Btk", "shared_name" : "Ear2 (pp) Btk", "SUID" : 605481, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605400", "source" : "587844", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Vsig4", "weight" : 0.722986598246, "name" : "Ear2 (pp) Vsig4", "shared_name" : "Ear2 (pp) Vsig4", "SUID" : 605400, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605229", "source" : "587844", "target" : "588127", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Lpxn", "weight" : 0.611793430718, "name" : "Ear2 (pp) Lpxn", "shared_name" : "Ear2 (pp) Lpxn", "SUID" : 605229, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605378", "source" : "587844", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Gpnmb", "weight" : 0.694236565207, "name" : "Ear2 (pp) Gpnmb", "shared_name" : "Ear2 (pp) Gpnmb", "SUID" : 605378, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605494", "source" : "587844", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Vcam1", "weight" : 0.74103428024, "name" : "Ear2 (pp) Vcam1", "shared_name" : "Ear2 (pp) Vcam1", "SUID" : 605494, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605217", "source" : "587844", "target" : "588069", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) A430084P05Rik", "weight" : 0.555642117722, "name" : "Ear2 (pp) A430084P05Rik", "shared_name" : "Ear2 (pp) A430084P05Rik", "SUID" : 605217, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605532", "source" : "587844", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Abi3", "weight" : 0.620272389215, "name" : "Ear2 (pp) Abi3", "shared_name" : "Ear2 (pp) Abi3", "SUID" : 605532, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605189", "source" : "587844", "target" : "587966", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Cyba", "weight" : 0.808808824699, "name" : "Ear2 (pp) Cyba", "shared_name" : "Ear2 (pp) Cyba", "SUID" : 605189, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605402", "source" : "587844", "target" : "588742", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Ifitm6", "weight" : 0.544362657437, "name" : "Ear2 (pp) Ifitm6", "shared_name" : "Ear2 (pp) Ifitm6", "SUID" : 605402, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605368", "source" : "587844", "target" : "588608", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Treml4", "weight" : 0.417752134016, "name" : "Ear2 (pp) Treml4", "shared_name" : "Ear2 (pp) Treml4", "SUID" : 605368, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605167", "source" : "587844", "target" : "587855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Pkm2", "weight" : 0.618895185247, "name" : "Ear2 (pp) Pkm2", "shared_name" : "Ear2 (pp) Pkm2", "SUID" : 605167, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605461", "source" : "587844", "target" : "588968", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Bcl2a1c", "weight" : 0.413973946906, "name" : "Ear2 (pp) Bcl2a1c", "shared_name" : "Ear2 (pp) Bcl2a1c", "SUID" : 605461, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605454", "source" : "587844", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) H2-DMb1", "weight" : 0.442413081115, "name" : "Ear2 (pp) H2-DMb1", "shared_name" : "Ear2 (pp) H2-DMb1", "SUID" : 605454, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605251", "source" : "587844", "target" : "588213", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Pdlim4", "weight" : 0.568905038934, "name" : "Ear2 (pp) Pdlim4", "shared_name" : "Ear2 (pp) Pdlim4", "SUID" : 605251, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605423", "source" : "587844", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Cotl1", "weight" : 0.770194460975, "name" : "Ear2 (pp) Cotl1", "shared_name" : "Ear2 (pp) Cotl1", "SUID" : 605423, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605223", "source" : "587844", "target" : "588104", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Bmp1", "weight" : 0.59400691917, "name" : "Ear2 (pp) Bmp1", "shared_name" : "Ear2 (pp) Bmp1", "SUID" : 605223, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605375", "source" : "587844", "target" : "588636", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Repin1", "weight" : 0.47935942619, "name" : "Ear2 (pp) Repin1", "shared_name" : "Ear2 (pp) Repin1", "SUID" : 605375, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605199", "source" : "587844", "target" : "588010", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Cd84", "weight" : 0.662932846037, "name" : "Ear2 (pp) Cd84", "shared_name" : "Ear2 (pp) Cd84", "SUID" : 605199, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605334", "source" : "587844", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Plscr1", "weight" : 0.58201033565, "name" : "Ear2 (pp) Plscr1", "shared_name" : "Ear2 (pp) Plscr1", "SUID" : 605334, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605536", "source" : "587844", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Fcgr4", "weight" : 0.736866580856, "name" : "Ear2 (pp) Fcgr4", "shared_name" : "Ear2 (pp) Fcgr4", "SUID" : 605536, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605446", "source" : "587844", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) C1qc", "weight" : 0.551923319649, "name" : "Ear2 (pp) C1qc", "shared_name" : "Ear2 (pp) C1qc", "SUID" : 605446, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605264", "source" : "587844", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Sdc3", "weight" : 0.642756057487, "name" : "Ear2 (pp) Sdc3", "shared_name" : "Ear2 (pp) Sdc3", "SUID" : 605264, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605415", "source" : "587844", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Obrgrp", "weight" : 0.529109486053, "name" : "Ear2 (pp) Obrgrp", "shared_name" : "Ear2 (pp) Obrgrp", "SUID" : 605415, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605392", "source" : "587844", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) 6330416G13Rik", "weight" : 0.482167785155, "name" : "Ear2 (pp) 6330416G13Rik", "shared_name" : "Ear2 (pp) 6330416G13Rik", "SUID" : 605392, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605170", "source" : "587844", "target" : "587864", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Spic", "weight" : 0.468698498614, "name" : "Ear2 (pp) Spic", "shared_name" : "Ear2 (pp) Spic", "SUID" : 605170, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605176", "source" : "587844", "target" : "587873", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Slc8a1", "weight" : 0.60296344623, "name" : "Ear2 (pp) Slc8a1", "shared_name" : "Ear2 (pp) Slc8a1", "SUID" : 605176, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605305", "source" : "587844", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Selplg", "weight" : 0.692085243472, "name" : "Ear2 (pp) Selplg", "shared_name" : "Ear2 (pp) Selplg", "SUID" : 605305, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605438", "source" : "587844", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Lgals3", "weight" : 0.89319685662, "name" : "Ear2 (pp) Lgals3", "shared_name" : "Ear2 (pp) Lgals3", "SUID" : 605438, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605239", "source" : "587844", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Pip4k2a", "weight" : 0.70693401436, "name" : "Ear2 (pp) Pip4k2a", "shared_name" : "Ear2 (pp) Pip4k2a", "SUID" : 605239, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605429", "source" : "587844", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Fcer1g", "weight" : 0.772412673859, "name" : "Ear2 (pp) Fcer1g", "shared_name" : "Ear2 (pp) Fcer1g", "SUID" : 605429, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605393", "source" : "587844", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Serpina3g", "weight" : 0.546698341216, "name" : "Ear2 (pp) Serpina3g", "shared_name" : "Ear2 (pp) Serpina3g", "SUID" : 605393, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605449", "source" : "587844", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Cytip", "weight" : 0.643962354584, "name" : "Ear2 (pp) Cytip", "shared_name" : "Ear2 (pp) Cytip", "SUID" : 605449, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605528", "source" : "587844", "target" : "589256", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Timp1", "weight" : 0.431074994608, "name" : "Ear2 (pp) Timp1", "shared_name" : "Ear2 (pp) Timp1", "SUID" : 605528, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605361", "source" : "587844", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Coro1a", "weight" : 0.658042697397, "name" : "Ear2 (pp) Coro1a", "shared_name" : "Ear2 (pp) Coro1a", "SUID" : 605361, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605548", "source" : "587844", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Ly86", "weight" : 0.748343866001, "name" : "Ear2 (pp) Ly86", "shared_name" : "Ear2 (pp) Ly86", "SUID" : 605548, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605408", "source" : "587844", "target" : "588782", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.813209288612, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ear2 (pp) Slc15a3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 7.505E-9, "weight" : 0.813209288612, "fusion" : "NA", "name" : "Ear2 (pp) Slc15a3", "neighborhood" : "NA", "sourceEdge" : 23739.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ear2 (pp) Slc15a3", "combinedscore" : "NA", "SUID" : 605408, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 1.604E-9, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "605562", "source" : "587844", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Il10ra", "weight" : 0.439768798311, "name" : "Ear2 (pp) Il10ra", "shared_name" : "Ear2 (pp) Il10ra", "SUID" : 605562, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605295", "source" : "587844", "target" : "588351", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Ttc39a", "weight" : 0.565442071845, "name" : "Ear2 (pp) Ttc39a", "shared_name" : "Ear2 (pp) Ttc39a", "SUID" : 605295, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605203", "source" : "587844", "target" : "588024", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Cd68", "weight" : 0.56692211622, "name" : "Ear2 (pp) Cd68", "shared_name" : "Ear2 (pp) Cd68", "SUID" : 605203, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605177", "source" : "587844", "target" : "587881", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Vav1", "weight" : 0.643110060048, "name" : "Ear2 (pp) Vav1", "shared_name" : "Ear2 (pp) Vav1", "SUID" : 605177, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605489", "source" : "587844", "target" : "589102", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Gja1", "weight" : 0.527344157251, "name" : "Ear2 (pp) Gja1", "shared_name" : "Ear2 (pp) Gja1", "SUID" : 605489, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605522", "source" : "587844", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Ear10", "weight" : 0.680586567815, "name" : "Ear2 (pp) Ear10", "shared_name" : "Ear2 (pp) Ear10", "SUID" : 605522, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605181", "source" : "587844", "target" : "587919", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Mefv", "weight" : 0.57176824305, "name" : "Ear2 (pp) Mefv", "shared_name" : "Ear2 (pp) Mefv", "SUID" : 605181, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605394", "source" : "587844", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Tlr2", "weight" : 0.615172460282, "name" : "Ear2 (pp) Tlr2", "shared_name" : "Ear2 (pp) Tlr2", "SUID" : 605394, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605320", "source" : "587844", "target" : "588432", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Kcnk6", "weight" : 0.547355558859, "name" : "Ear2 (pp) Kcnk6", "shared_name" : "Ear2 (pp) Kcnk6", "SUID" : 605320, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605185", "source" : "587844", "target" : "587952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Gusb", "weight" : 0.458651115024, "name" : "Ear2 (pp) Gusb", "shared_name" : "Ear2 (pp) Gusb", "SUID" : 605185, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605410", "source" : "587844", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) 5430435G22Rik", "weight" : 0.495014038065, "name" : "Ear2 (pp) 5430435G22Rik", "shared_name" : "Ear2 (pp) 5430435G22Rik", "SUID" : 605410, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605230", "source" : "587844", "target" : "588134", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Mlkl", "weight" : 0.578875056303, "name" : "Ear2 (pp) Mlkl", "shared_name" : "Ear2 (pp) Mlkl", "SUID" : 605230, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605552", "source" : "587844", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Tspan33", "weight" : 0.489976778872, "name" : "Ear2 (pp) Tspan33", "shared_name" : "Ear2 (pp) Tspan33", "SUID" : 605552, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605355", "source" : "587844", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Cd86", "weight" : 0.804791995002, "name" : "Ear2 (pp) Cd86", "shared_name" : "Ear2 (pp) Cd86", "SUID" : 605355, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605321", "source" : "587844", "target" : "588439", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Vim", "weight" : 0.464179718313, "name" : "Ear2 (pp) Vim", "shared_name" : "Ear2 (pp) Vim", "SUID" : 605321, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605374", "source" : "587844", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Casp1", "weight" : 0.603992461588, "name" : "Ear2 (pp) Casp1", "shared_name" : "Ear2 (pp) Casp1", "SUID" : 605374, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605517", "source" : "587844", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Serpinb6a", "weight" : 0.763154544077, "name" : "Ear2 (pp) Serpinb6a", "shared_name" : "Ear2 (pp) Serpinb6a", "SUID" : 605517, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605168", "source" : "587844", "target" : "587857", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Lgmn", "weight" : 0.725369179646, "name" : "Ear2 (pp) Lgmn", "shared_name" : "Ear2 (pp) Lgmn", "SUID" : 605168, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605534", "source" : "587844", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Ear12", "weight" : 0.678332299802, "name" : "Ear2 (pp) Ear12", "shared_name" : "Ear2 (pp) Ear12", "SUID" : 605534, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605549", "source" : "587844", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) C1qb", "weight" : 0.75699621666, "name" : "Ear2 (pp) C1qb", "shared_name" : "Ear2 (pp) C1qb", "SUID" : 605549, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605333", "source" : "587844", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Renbp", "weight" : 0.577188058957, "name" : "Ear2 (pp) Renbp", "shared_name" : "Ear2 (pp) Renbp", "SUID" : 605333, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605263", "source" : "587844", "target" : "588244", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Gltp", "weight" : 0.593086962575, "name" : "Ear2 (pp) Gltp", "shared_name" : "Ear2 (pp) Gltp", "SUID" : 605263, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605526", "source" : "587844", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Trem2", "weight" : 0.652840559673, "name" : "Ear2 (pp) Trem2", "shared_name" : "Ear2 (pp) Trem2", "SUID" : 605526, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605274", "source" : "587844", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Ms4a6d", "weight" : 0.737099746482, "name" : "Ear2 (pp) Ms4a6d", "shared_name" : "Ear2 (pp) Ms4a6d", "SUID" : 605274, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605482", "source" : "587844", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Cfp", "weight" : 0.706007527222, "name" : "Ear2 (pp) Cfp", "shared_name" : "Ear2 (pp) Cfp", "SUID" : 605482, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605372", "source" : "587844", "target" : "588620", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Olfml3", "weight" : 0.403241128572, "name" : "Ear2 (pp) Olfml3", "shared_name" : "Ear2 (pp) Olfml3", "SUID" : 605372, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605236", "source" : "587844", "target" : "588151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Ccl4", "weight" : 0.583502734638, "name" : "Ear2 (pp) Ccl4", "shared_name" : "Ear2 (pp) Ccl4", "SUID" : 605236, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605530", "source" : "587844", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Ppif", "weight" : 0.53611063184, "name" : "Ear2 (pp) Ppif", "shared_name" : "Ear2 (pp) Ppif", "SUID" : 605530, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605250", "source" : "587844", "target" : "588212", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Anxa3", "weight" : 0.644040289458, "name" : "Ear2 (pp) Anxa3", "shared_name" : "Ear2 (pp) Anxa3", "SUID" : 605250, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605411", "source" : "587844", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Ccl6", "weight" : 0.557583590927, "name" : "Ear2 (pp) Ccl6", "shared_name" : "Ear2 (pp) Ccl6", "SUID" : 605411, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605335", "source" : "587844", "target" : "588490", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Arhgap30", "weight" : 0.424679005572, "name" : "Ear2 (pp) Arhgap30", "shared_name" : "Ear2 (pp) Arhgap30", "SUID" : 605335, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605325", "source" : "587844", "target" : "588459", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Pop5", "weight" : 0.446843041824, "name" : "Ear2 (pp) Pop5", "shared_name" : "Ear2 (pp) Pop5", "SUID" : 605325, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605499", "source" : "587844", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Tmsb4x", "weight" : 0.600417606941, "name" : "Ear2 (pp) Tmsb4x", "shared_name" : "Ear2 (pp) Tmsb4x", "SUID" : 605499, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605431", "source" : "587844", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Fcgr3", "weight" : 0.519196713602, "name" : "Ear2 (pp) Fcgr3", "shared_name" : "Ear2 (pp) Fcgr3", "SUID" : 605431, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605347", "source" : "587844", "target" : "588517", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Rac2", "weight" : 0.428900981606, "name" : "Ear2 (pp) Rac2", "shared_name" : "Ear2 (pp) Rac2", "SUID" : 605347, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605519", "source" : "587844", "target" : "589225", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) St6gal1", "weight" : 0.401971274242, "name" : "Ear2 (pp) St6gal1", "shared_name" : "Ear2 (pp) St6gal1", "SUID" : 605519, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605551", "source" : "587844", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Fblim1", "weight" : 0.472255789346, "name" : "Ear2 (pp) Fblim1", "shared_name" : "Ear2 (pp) Fblim1", "SUID" : 605551, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605267", "source" : "587844", "target" : "588257", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Sdcbp", "weight" : 0.546829362617, "name" : "Ear2 (pp) Sdcbp", "shared_name" : "Ear2 (pp) Sdcbp", "SUID" : 605267, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605331", "source" : "587844", "target" : "588472", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Ly9", "weight" : 0.550661539026, "name" : "Ear2 (pp) Ly9", "shared_name" : "Ear2 (pp) Ly9", "SUID" : 605331, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605287", "source" : "587844", "target" : "588328", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Arhgap9", "weight" : 0.49055685204, "name" : "Ear2 (pp) Arhgap9", "shared_name" : "Ear2 (pp) Arhgap9", "SUID" : 605287, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605396", "source" : "587844", "target" : "588728", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) AB124611", "weight" : 0.455937117241, "name" : "Ear2 (pp) AB124611", "shared_name" : "Ear2 (pp) AB124611", "SUID" : 605396, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605467", "source" : "587844", "target" : "589005", "homology" : "NA", "shared_interaction" : "NA", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.725672913409, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ear2 (pp) Csrp1", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 1.5586E-8, "weight" : 0.725672913409, "fusion" : "NA", "name" : "Ear2 (pp) Csrp1", "neighborhood" : "NA", "sourceEdge" : 23756.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ear2 (pp) Csrp1", "combinedscore" : "NA", "SUID" : 605467, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "NA", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "605281", "source" : "587844", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Cxcl16", "weight" : 0.691096452658, "name" : "Ear2 (pp) Cxcl16", "shared_name" : "Ear2 (pp) Cxcl16", "SUID" : 605281, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605258", "source" : "587844", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Laptm5", "weight" : 0.827719695996, "name" : "Ear2 (pp) Laptm5", "shared_name" : "Ear2 (pp) Laptm5", "SUID" : 605258, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605339", "source" : "587844", "target" : "588496", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Gphn", "weight" : 0.487853652857, "name" : "Ear2 (pp) Gphn", "shared_name" : "Ear2 (pp) Gphn", "SUID" : 605339, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605298", "source" : "587844", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Cyp7b1", "weight" : 0.706095269662, "name" : "Ear2 (pp) Cyp7b1", "shared_name" : "Ear2 (pp) Cyp7b1", "SUID" : 605298, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605420", "source" : "587844", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Pla2g15", "weight" : 0.516347034538, "name" : "Ear2 (pp) Pla2g15", "shared_name" : "Ear2 (pp) Pla2g15", "SUID" : 605420, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605193", "source" : "587844", "target" : "587982", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Plekho2", "weight" : 0.598407586537, "name" : "Ear2 (pp) Plekho2", "shared_name" : "Ear2 (pp) Plekho2", "SUID" : 605193, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605312", "source" : "587844", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Cd14", "weight" : 0.603853632944, "name" : "Ear2 (pp) Cd14", "shared_name" : "Ear2 (pp) Cd14", "SUID" : 605312, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605292", "source" : "587844", "target" : "588342", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Mfge8", "weight" : 0.565992686408, "name" : "Ear2 (pp) Mfge8", "shared_name" : "Ear2 (pp) Mfge8", "SUID" : 605292, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605364", "source" : "587844", "target" : "588601", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.760912023768, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ear2 (pp) Slc11a1", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.760912023768, "fusion" : "NA", "name" : "Ear2 (pp) Slc11a1", "neighborhood" : "NA", "sourceEdge" : 23718.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ear2 (pp) Slc11a1", "combinedscore" : "NA", "SUID" : 605364, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 0.0, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "605555", "source" : "587844", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Lmo2", "weight" : 0.462600292798, "name" : "Ear2 (pp) Lmo2", "shared_name" : "Ear2 (pp) Lmo2", "SUID" : 605555, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605326", "source" : "587844", "target" : "588461", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Tbxas1", "weight" : 0.575474967758, "name" : "Ear2 (pp) Tbxas1", "shared_name" : "Ear2 (pp) Tbxas1", "SUID" : 605326, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605384", "source" : "587844", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) D12Ertd553e", "weight" : 0.414877928194, "name" : "Ear2 (pp) D12Ertd553e", "shared_name" : "Ear2 (pp) D12Ertd553e", "SUID" : 605384, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605427", "source" : "587844", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Plac8", "weight" : 0.689177349796, "name" : "Ear2 (pp) Plac8", "shared_name" : "Ear2 (pp) Plac8", "SUID" : 605427, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605285", "source" : "587844", "target" : "588322", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Pfkfb4", "weight" : 0.491914550659, "name" : "Ear2 (pp) Pfkfb4", "shared_name" : "Ear2 (pp) Pfkfb4", "SUID" : 605285, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605539", "source" : "587844", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Cd53", "weight" : 0.477331438493, "name" : "Ear2 (pp) Cd53", "shared_name" : "Ear2 (pp) Cd53", "SUID" : 605539, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605397", "source" : "587844", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Tpm4", "weight" : 0.520136850343, "name" : "Ear2 (pp) Tpm4", "shared_name" : "Ear2 (pp) Tpm4", "SUID" : 605397, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605255", "source" : "587844", "target" : "588227", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Gbp2", "weight" : 0.462402789594, "name" : "Ear2 (pp) Gbp2", "shared_name" : "Ear2 (pp) Gbp2", "SUID" : 605255, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605301", "source" : "587844", "target" : "588365", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Tnfaip8l2", "weight" : 0.519591719422, "name" : "Ear2 (pp) Tnfaip8l2", "shared_name" : "Ear2 (pp) Tnfaip8l2", "SUID" : 605301, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605322", "source" : "587844", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Cd63", "weight" : 0.652135516644, "name" : "Ear2 (pp) Cd63", "shared_name" : "Ear2 (pp) Cd63", "SUID" : 605322, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605553", "source" : "587844", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Lrrc33", "weight" : 0.480518939956, "name" : "Ear2 (pp) Lrrc33", "shared_name" : "Ear2 (pp) Lrrc33", "SUID" : 605553, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605319", "source" : "587844", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Clec4n", "weight" : 0.732829561, "name" : "Ear2 (pp) Clec4n", "shared_name" : "Ear2 (pp) Clec4n", "SUID" : 605319, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605543", "source" : "587844", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.926003342776, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ear2 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 3.47E-10, "weight" : 0.926003342776, "fusion" : "NA", "name" : "Ear2 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 23780.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ear2 (pp) Ear4", "combinedscore" : "NA", "SUID" : 605543, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 7.72E-10, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "605412", "source" : "587844", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Tmem86a", "weight" : 0.763930061037, "name" : "Ear2 (pp) Tmem86a", "shared_name" : "Ear2 (pp) Tmem86a", "SUID" : 605412, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605220", "source" : "587844", "target" : "588086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Iqgap1", "weight" : 0.565540834646, "name" : "Ear2 (pp) Iqgap1", "shared_name" : "Ear2 (pp) Iqgap1", "SUID" : 605220, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605448", "source" : "587844", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Hk3", "weight" : 0.602411023671, "name" : "Ear2 (pp) Hk3", "shared_name" : "Ear2 (pp) Hk3", "SUID" : 605448, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605480", "source" : "587844", "target" : "589076", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) H2-M3", "weight" : 0.400704373614, "name" : "Ear2 (pp) H2-M3", "shared_name" : "Ear2 (pp) H2-M3", "SUID" : 605480, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605166", "source" : "587844", "target" : "587851", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Sh3kbp1", "weight" : 0.613434131914, "name" : "Ear2 (pp) Sh3kbp1", "shared_name" : "Ear2 (pp) Sh3kbp1", "SUID" : 605166, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605261", "source" : "587844", "target" : "588242", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Cd83", "weight" : 0.623753386627, "name" : "Ear2 (pp) Cd83", "shared_name" : "Ear2 (pp) Cd83", "SUID" : 605261, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605540", "source" : "587844", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Clec7a", "weight" : 0.656824292423, "name" : "Ear2 (pp) Clec7a", "shared_name" : "Ear2 (pp) Clec7a", "SUID" : 605540, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605234", "source" : "587844", "target" : "588147", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Ppic", "weight" : 0.61452703843, "name" : "Ear2 (pp) Ppic", "shared_name" : "Ear2 (pp) Ppic", "SUID" : 605234, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605521", "source" : "587844", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) H2-DMa", "weight" : 0.488727828309, "name" : "Ear2 (pp) H2-DMa", "shared_name" : "Ear2 (pp) H2-DMa", "SUID" : 605521, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605362", "source" : "587844", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Tmsb10", "weight" : 0.543408078498, "name" : "Ear2 (pp) Tmsb10", "shared_name" : "Ear2 (pp) Tmsb10", "SUID" : 605362, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605383", "source" : "587844", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) 5033414D02Rik", "weight" : 0.72646315862, "name" : "Ear2 (pp) 5033414D02Rik", "shared_name" : "Ear2 (pp) 5033414D02Rik", "SUID" : 605383, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605389", "source" : "587844", "target" : "588697", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.730448257643, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ear2 (pp) Cd52", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 8.2387E-8, "weight" : 0.730448257643, "fusion" : "NA", "name" : "Ear2 (pp) Cd52", "neighborhood" : "NA", "sourceEdge" : 23728.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ear2 (pp) Cd52", "combinedscore" : "NA", "SUID" : 605389, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 3.0E-11, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "605327", "source" : "587844", "target" : "588464", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Akr1b3", "weight" : 0.437024092245, "name" : "Ear2 (pp) Akr1b3", "shared_name" : "Ear2 (pp) Akr1b3", "SUID" : 605327, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605359", "source" : "587844", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Snn", "weight" : 0.655914411727, "name" : "Ear2 (pp) Snn", "shared_name" : "Ear2 (pp) Snn", "SUID" : 605359, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605195", "source" : "587844", "target" : "587989", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Tyrobp", "weight" : 0.648343137514, "name" : "Ear2 (pp) Tyrobp", "shared_name" : "Ear2 (pp) Tyrobp", "SUID" : 605195, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605242", "source" : "587844", "target" : "588185", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Aif1", "weight" : 0.446694528698, "name" : "Ear2 (pp) Aif1", "shared_name" : "Ear2 (pp) Aif1", "SUID" : 605242, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605468", "source" : "587844", "target" : "589030", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Soat1", "weight" : 0.45344065196, "name" : "Ear2 (pp) Soat1", "shared_name" : "Ear2 (pp) Soat1", "SUID" : 605468, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605395", "source" : "587844", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Axl", "weight" : 0.79986421501, "name" : "Ear2 (pp) Axl", "shared_name" : "Ear2 (pp) Axl", "SUID" : 605395, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605485", "source" : "587844", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Pld4", "weight" : 0.429241907608, "name" : "Ear2 (pp) Pld4", "shared_name" : "Ear2 (pp) Pld4", "SUID" : 605485, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605487", "source" : "587844", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Snx10", "weight" : 0.55260785948, "name" : "Ear2 (pp) Snx10", "shared_name" : "Ear2 (pp) Snx10", "SUID" : 605487, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605309", "source" : "587844", "target" : "588394", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Lyzs", "weight" : 0.547010699708, "name" : "Ear2 (pp) Lyzs", "shared_name" : "Ear2 (pp) Lyzs", "SUID" : 605309, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605283", "source" : "587844", "target" : "588313", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Zfp90", "weight" : 0.420312527219, "name" : "Ear2 (pp) Zfp90", "shared_name" : "Ear2 (pp) Zfp90", "SUID" : 605283, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605366", "source" : "587844", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Gngt2", "weight" : 0.65359992877, "name" : "Ear2 (pp) Gngt2", "shared_name" : "Ear2 (pp) Gngt2", "SUID" : 605366, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605386", "source" : "587844", "target" : "588678", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Fxyd5", "weight" : 0.450313113226, "name" : "Ear2 (pp) Fxyd5", "shared_name" : "Ear2 (pp) Fxyd5", "SUID" : 605386, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605546", "source" : "587844", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Prkcd", "weight" : 0.419379693803, "name" : "Ear2 (pp) Prkcd", "shared_name" : "Ear2 (pp) Prkcd", "SUID" : 605546, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605291", "source" : "587844", "target" : "588335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Arpc1b", "weight" : 0.503111221416, "name" : "Ear2 (pp) Arpc1b", "shared_name" : "Ear2 (pp) Arpc1b", "SUID" : 605291, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605266", "source" : "587844", "target" : "588254", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Irf8", "weight" : 0.495786972755, "name" : "Ear2 (pp) Irf8", "shared_name" : "Ear2 (pp) Irf8", "SUID" : 605266, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605504", "source" : "587844", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Rasgrp1", "weight" : 0.561473401684, "name" : "Ear2 (pp) Rasgrp1", "shared_name" : "Ear2 (pp) Rasgrp1", "SUID" : 605504, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "605464", "source" : "587844", "target" : "588999", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ear2 (pp) Kctd12", "weight" : 0.470090971543, "name" : "Ear2 (pp) Kctd12", "shared_name" : "Ear2 (pp) Kctd12", "SUID" : 605464, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606632", "source" : "587855", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) H2-DMa", "weight" : 0.481212988622, "name" : "Pkm2 (pp) H2-DMa", "shared_name" : "Pkm2 (pp) H2-DMa", "SUID" : 606632, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606348", "source" : "587855", "target" : "587881", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Vav1", "weight" : 0.464139173107, "name" : "Pkm2 (pp) Vav1", "shared_name" : "Pkm2 (pp) Vav1", "SUID" : 606348, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606391", "source" : "587855", "target" : "588127", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Lpxn", "weight" : 0.452173269573, "name" : "Pkm2 (pp) Lpxn", "shared_name" : "Pkm2 (pp) Lpxn", "SUID" : 606391, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606380", "source" : "587855", "target" : "588069", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) A430084P05Rik", "weight" : 0.499956028619, "name" : "Pkm2 (pp) A430084P05Rik", "shared_name" : "Pkm2 (pp) A430084P05Rik", "SUID" : 606380, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606574", "source" : "587855", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) H2-DMb1", "weight" : 0.446901611647, "name" : "Pkm2 (pp) H2-DMb1", "shared_name" : "Pkm2 (pp) H2-DMb1", "SUID" : 606574, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606417", "source" : "587855", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Sdc3", "weight" : 0.529129884723, "name" : "Pkm2 (pp) Sdc3", "shared_name" : "Pkm2 (pp) Sdc3", "SUID" : 606417, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606531", "source" : "587855", "target" : "588727", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.677689424535, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Pkm2 (pp) Axl", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 2.779682E-5, "weight" : 0.677689424535, "fusion" : "NA", "name" : "Pkm2 (pp) Axl", "neighborhood" : "NA", "sourceEdge" : 249190.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Pkm2 (pp) Axl", "combinedscore" : "NA", "SUID" : 606531, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "606461", "source" : "587855", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Clec4n", "weight" : 0.6328500049, "name" : "Pkm2 (pp) Clec4n", "shared_name" : "Pkm2 (pp) Clec4n", "SUID" : 606461, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606637", "source" : "587855", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Trem2", "weight" : 0.514024929588, "name" : "Pkm2 (pp) Trem2", "shared_name" : "Pkm2 (pp) Trem2", "SUID" : 606637, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606602", "source" : "587855", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Cfp", "weight" : 0.425228893831, "name" : "Pkm2 (pp) Cfp", "shared_name" : "Pkm2 (pp) Cfp", "SUID" : 606602, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606425", "source" : "587855", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Ms4a6d", "weight" : 0.476307597098, "name" : "Pkm2 (pp) Ms4a6d", "shared_name" : "Pkm2 (pp) Ms4a6d", "SUID" : 606425, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606523", "source" : "587855", "target" : "588678", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Fxyd5", "weight" : 0.475258202844, "name" : "Pkm2 (pp) Fxyd5", "shared_name" : "Pkm2 (pp) Fxyd5", "SUID" : 606523, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606472", "source" : "587855", "target" : "588472", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Ly9", "weight" : 0.424925421847, "name" : "Pkm2 (pp) Ly9", "shared_name" : "Pkm2 (pp) Ly9", "SUID" : 606472, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606396", "source" : "587855", "target" : "588151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Ccl4", "weight" : 0.605440117288, "name" : "Pkm2 (pp) Ccl4", "shared_name" : "Pkm2 (pp) Ccl4", "SUID" : 606396, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606482", "source" : "587855", "target" : "588512", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) H2-Eb1", "weight" : 0.420656231319, "name" : "Pkm2 (pp) H2-Eb1", "shared_name" : "Pkm2 (pp) H2-Eb1", "SUID" : 606482, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606630", "source" : "587855", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Serpinb6a", "weight" : 0.529838665573, "name" : "Pkm2 (pp) Serpinb6a", "shared_name" : "Pkm2 (pp) Serpinb6a", "SUID" : 606630, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606486", "source" : "587855", "target" : "588517", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Rac2", "weight" : 0.513077379213, "name" : "Pkm2 (pp) Rac2", "shared_name" : "Pkm2 (pp) Rac2", "SUID" : 606486, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606382", "source" : "587855", "target" : "588086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Iqgap1", "weight" : 0.47891854183, "name" : "Pkm2 (pp) Iqgap1", "shared_name" : "Pkm2 (pp) Iqgap1", "SUID" : 606382, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606479", "source" : "587855", "target" : "588496", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Gphn", "weight" : 0.511481770637, "name" : "Pkm2 (pp) Gphn", "shared_name" : "Pkm2 (pp) Gphn", "SUID" : 606479, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606525", "source" : "587855", "target" : "588697", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.696960771352, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Pkm2 (pp) Cd52", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 4.296764E-5, "weight" : 0.696960771352, "fusion" : "NA", "name" : "Pkm2 (pp) Cd52", "neighborhood" : "NA", "sourceEdge" : 249160.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Pkm2 (pp) Cd52", "combinedscore" : "NA", "SUID" : 606525, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "606547", "source" : "587855", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Obrgrp", "weight" : 0.466624898155, "name" : "Pkm2 (pp) Obrgrp", "shared_name" : "Pkm2 (pp) Obrgrp", "SUID" : 606547, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606447", "source" : "587855", "target" : "588365", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Tnfaip8l2", "weight" : 0.425531808936, "name" : "Pkm2 (pp) Tnfaip8l2", "shared_name" : "Pkm2 (pp) Tnfaip8l2", "SUID" : 606447, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606362", "source" : "587855", "target" : "587989", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Tyrobp", "weight" : 0.554521139606, "name" : "Pkm2 (pp) Tyrobp", "shared_name" : "Pkm2 (pp) Tyrobp", "SUID" : 606362, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606452", "source" : "587855", "target" : "588394", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Lyzs", "weight" : 0.403940700744, "name" : "Pkm2 (pp) Lyzs", "shared_name" : "Pkm2 (pp) Lyzs", "SUID" : 606452, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606528", "source" : "587855", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) 6330416G13Rik", "weight" : 0.457661439635, "name" : "Pkm2 (pp) 6330416G13Rik", "shared_name" : "Pkm2 (pp) 6330416G13Rik", "SUID" : 606528, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606555", "source" : "587855", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Plac8", "weight" : 0.60586012074, "name" : "Pkm2 (pp) Plac8", "shared_name" : "Pkm2 (pp) Plac8", "SUID" : 606555, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606412", "source" : "587855", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Laptm5", "weight" : 0.466917436945, "name" : "Pkm2 (pp) Laptm5", "shared_name" : "Pkm2 (pp) Laptm5", "SUID" : 606412, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606644", "source" : "587855", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Fcgr4", "weight" : 0.583191052102, "name" : "Pkm2 (pp) Fcgr4", "shared_name" : "Pkm2 (pp) Fcgr4", "SUID" : 606644, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606535", "source" : "587855", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Vsig4", "weight" : 0.415048970561, "name" : "Pkm2 (pp) Vsig4", "shared_name" : "Pkm2 (pp) Vsig4", "SUID" : 606535, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606558", "source" : "587855", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Fcgr3", "weight" : 0.626326051845, "name" : "Pkm2 (pp) Fcgr3", "shared_name" : "Pkm2 (pp) Fcgr3", "SUID" : 606558, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606418", "source" : "587855", "target" : "588254", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Irf8", "weight" : 0.539336826304, "name" : "Pkm2 (pp) Irf8", "shared_name" : "Pkm2 (pp) Irf8", "SUID" : 606418, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606617", "source" : "587855", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Tmsb4x", "weight" : 0.605572700961, "name" : "Pkm2 (pp) Tmsb4x", "shared_name" : "Pkm2 (pp) Tmsb4x", "SUID" : 606617, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606450", "source" : "587855", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Selplg", "weight" : 0.602492913409, "name" : "Pkm2 (pp) Selplg", "shared_name" : "Pkm2 (pp) Selplg", "SUID" : 606450, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606640", "source" : "587855", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Abi3", "weight" : 0.418506054505, "name" : "Pkm2 (pp) Abi3", "shared_name" : "Pkm2 (pp) Abi3", "SUID" : 606640, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606445", "source" : "587855", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Cyp7b1", "weight" : 0.535942039998, "name" : "Pkm2 (pp) Cyp7b1", "shared_name" : "Pkm2 (pp) Cyp7b1", "SUID" : 606445, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606431", "source" : "587855", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Cxcl16", "weight" : 0.566057853854, "name" : "Pkm2 (pp) Cxcl16", "shared_name" : "Pkm2 (pp) Cxcl16", "SUID" : 606431, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606443", "source" : "587855", "target" : "588351", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Ttc39a", "weight" : 0.447602041207, "name" : "Pkm2 (pp) Ttc39a", "shared_name" : "Pkm2 (pp) Ttc39a", "SUID" : 606443, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606375", "source" : "587855", "target" : "588049", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Cd74", "weight" : 0.455588837071, "name" : "Pkm2 (pp) Cd74", "shared_name" : "Pkm2 (pp) Cd74", "SUID" : 606375, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606657", "source" : "587855", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) C1qb", "weight" : 0.621352286327, "name" : "Pkm2 (pp) C1qb", "shared_name" : "Pkm2 (pp) C1qb", "SUID" : 606657, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606365", "source" : "587855", "target" : "588010", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Cd84", "weight" : 0.455416292932, "name" : "Pkm2 (pp) Cd84", "shared_name" : "Pkm2 (pp) Cd84", "SUID" : 606365, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606613", "source" : "587855", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Vcam1", "weight" : 0.699899122851, "name" : "Pkm2 (pp) Vcam1", "shared_name" : "Pkm2 (pp) Vcam1", "SUID" : 606613, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606370", "source" : "587855", "target" : "588024", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Cd68", "weight" : 0.593081932263, "name" : "Pkm2 (pp) Cd68", "shared_name" : "Pkm2 (pp) Cd68", "SUID" : 606370, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606436", "source" : "587855", "target" : "588328", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Arhgap9", "weight" : 0.422769171683, "name" : "Pkm2 (pp) Arhgap9", "shared_name" : "Pkm2 (pp) Arhgap9", "SUID" : 606436, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606515", "source" : "587855", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Gpnmb", "weight" : 0.513553012788, "name" : "Pkm2 (pp) Gpnmb", "shared_name" : "Pkm2 (pp) Gpnmb", "SUID" : 606515, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606521", "source" : "587855", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) 5033414D02Rik", "weight" : 0.514344896872, "name" : "Pkm2 (pp) 5033414D02Rik", "shared_name" : "Pkm2 (pp) 5033414D02Rik", "SUID" : 606521, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606642", "source" : "587855", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Ear12", "weight" : 0.407671169302, "name" : "Pkm2 (pp) Ear12", "shared_name" : "Pkm2 (pp) Ear12", "SUID" : 606642, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606342", "source" : "587855", "target" : "587857", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Lgmn", "weight" : 0.670221272817, "name" : "Pkm2 (pp) Lgmn", "shared_name" : "Pkm2 (pp) Lgmn", "SUID" : 606342, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606357", "source" : "587855", "target" : "587966", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.772347636537, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Pkm2 (pp) Cyba", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 3.19346E-5, "weight" : 0.772347636537, "fusion" : "NA", "name" : "Pkm2 (pp) Cyba", "neighborhood" : "NA", "sourceEdge" : 248429.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Pkm2 (pp) Cyba", "combinedscore" : "NA", "SUID" : 606357, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "606541", "source" : "587855", "target" : "588782", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.610448222155, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Pkm2 (pp) Slc15a3", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 1.998204E-5, "weight" : 0.610448222155, "fusion" : "NA", "name" : "Pkm2 (pp) Slc15a3", "neighborhood" : "NA", "sourceEdge" : 249245.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Pkm2 (pp) Slc15a3", "combinedscore" : "NA", "SUID" : 606541, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "606605", "source" : "587855", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Pld4", "weight" : 0.52367755604, "name" : "Pkm2 (pp) Pld4", "shared_name" : "Pkm2 (pp) Pld4", "SUID" : 606605, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606654", "source" : "587855", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Prkcd", "weight" : 0.401110464557, "name" : "Pkm2 (pp) Prkcd", "shared_name" : "Pkm2 (pp) Prkcd", "SUID" : 606654, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606543", "source" : "587855", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Ccl6", "weight" : 0.501721227621, "name" : "Pkm2 (pp) Ccl6", "shared_name" : "Pkm2 (pp) Ccl6", "SUID" : 606543, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606533", "source" : "587855", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Tpm4", "weight" : 0.459912441543, "name" : "Pkm2 (pp) Tpm4", "shared_name" : "Pkm2 (pp) Tpm4", "SUID" : 606533, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606580", "source" : "587855", "target" : "588968", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Bcl2a1c", "weight" : 0.422846159139, "name" : "Pkm2 (pp) Bcl2a1c", "shared_name" : "Pkm2 (pp) Bcl2a1c", "SUID" : 606580, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606529", "source" : "587855", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Serpina3g", "weight" : 0.466524847308, "name" : "Pkm2 (pp) Serpina3g", "shared_name" : "Pkm2 (pp) Serpina3g", "SUID" : 606529, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606502", "source" : "587855", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Coro1a", "weight" : 0.592178383855, "name" : "Pkm2 (pp) Coro1a", "shared_name" : "Pkm2 (pp) Coro1a", "SUID" : 606502, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606507", "source" : "587855", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Gngt2", "weight" : 0.621871686916, "name" : "Pkm2 (pp) Gngt2", "shared_name" : "Pkm2 (pp) Gngt2", "SUID" : 606507, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606416", "source" : "587855", "target" : "588244", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Gltp", "weight" : 0.572170867237, "name" : "Pkm2 (pp) Gltp", "shared_name" : "Pkm2 (pp) Gltp", "SUID" : 606416, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606569", "source" : "587855", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Cytip", "weight" : 0.498791565518, "name" : "Pkm2 (pp) Cytip", "shared_name" : "Pkm2 (pp) Cytip", "SUID" : 606569, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606505", "source" : "587855", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Slc11a1", "weight" : 0.604775757517, "name" : "Pkm2 (pp) Slc11a1", "shared_name" : "Pkm2 (pp) Slc11a1", "SUID" : 606505, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606463", "source" : "587855", "target" : "588439", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Vim", "weight" : 0.43345045997, "name" : "Pkm2 (pp) Vim", "shared_name" : "Pkm2 (pp) Vim", "SUID" : 606463, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606415", "source" : "587855", "target" : "588242", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Cd83", "weight" : 0.546769248918, "name" : "Pkm2 (pp) Cd83", "shared_name" : "Pkm2 (pp) Cd83", "SUID" : 606415, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606650", "source" : "587855", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.617889435901, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Pkm2 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 1.200306E-5, "weight" : 0.617889435901, "fusion" : "NA", "name" : "Pkm2 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 249767.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Pkm2 (pp) Ear4", "combinedscore" : "NA", "SUID" : 606650, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "606475", "source" : "587855", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Plscr1", "weight" : 0.606011485141, "name" : "Pkm2 (pp) Plscr1", "shared_name" : "Pkm2 (pp) Plscr1", "SUID" : 606475, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606568", "source" : "587855", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Hk3", "weight" : 0.498429153465, "name" : "Pkm2 (pp) Hk3", "shared_name" : "Pkm2 (pp) Hk3", "SUID" : 606568, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606656", "source" : "587855", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Ly86", "weight" : 0.608500960453, "name" : "Pkm2 (pp) Ly86", "shared_name" : "Pkm2 (pp) Ly86", "SUID" : 606656, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606567", "source" : "587855", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) C1qc", "weight" : 0.708059436192, "name" : "Pkm2 (pp) C1qc", "shared_name" : "Pkm2 (pp) C1qc", "SUID" : 606567, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606464", "source" : "587855", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Cd63", "weight" : 0.574871020786, "name" : "Pkm2 (pp) Cd63", "shared_name" : "Pkm2 (pp) Cd63", "SUID" : 606464, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606495", "source" : "587855", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Cd86", "weight" : 0.443384884294, "name" : "Pkm2 (pp) Cd86", "shared_name" : "Pkm2 (pp) Cd86", "SUID" : 606495, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606587", "source" : "587855", "target" : "589005", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.666064287013, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Pkm2 (pp) Csrp1", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 2.210792E-5, "weight" : 0.666064287013, "fusion" : "NA", "name" : "Pkm2 (pp) Csrp1", "neighborhood" : "NA", "sourceEdge" : 249468.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Pkm2 (pp) Csrp1", "combinedscore" : "NA", "SUID" : 606587, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "606503", "source" : "587855", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Tmsb10", "weight" : 0.827867319974, "name" : "Pkm2 (pp) Tmsb10", "shared_name" : "Pkm2 (pp) Tmsb10", "SUID" : 606503, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606454", "source" : "587855", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Cd14", "weight" : 0.538484385746, "name" : "Pkm2 (pp) Cd14", "shared_name" : "Pkm2 (pp) Cd14", "SUID" : 606454, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606439", "source" : "587855", "target" : "588335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Arpc1b", "weight" : 0.403212030879, "name" : "Pkm2 (pp) Arpc1b", "shared_name" : "Pkm2 (pp) Arpc1b", "SUID" : 606439, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606557", "source" : "587855", "target" : "588860", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.711826547487, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Pkm2 (pp) Fcer1g", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 3.880411E-5, "weight" : 0.711826547487, "fusion" : "NA", "name" : "Pkm2 (pp) Fcer1g", "neighborhood" : "NA", "sourceEdge" : 249323.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Pkm2 (pp) Fcer1g", "combinedscore" : "NA", "SUID" : 606557, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "606561", "source" : "587855", "target" : "588886", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.661912237982, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Pkm2 (pp) Lgals3", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 5.883211E-6, "weight" : 0.661912237982, "fusion" : "NA", "name" : "Pkm2 (pp) Lgals3", "neighborhood" : "NA", "sourceEdge" : 249349.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Pkm2 (pp) Lgals3", "combinedscore" : "NA", "SUID" : 606561, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "606553", "source" : "587855", "target" : "588835", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.699411018701, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Pkm2 (pp) Cotl1", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 2.256324E-5, "weight" : 0.699411018701, "fusion" : "NA", "name" : "Pkm2 (pp) Cotl1", "neighborhood" : "NA", "sourceEdge" : 249298.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Pkm2 (pp) Cotl1", "combinedscore" : "NA", "SUID" : 606553, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "606360", "source" : "587855", "target" : "587982", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Plekho2", "weight" : 0.472291868893, "name" : "Pkm2 (pp) Plekho2", "shared_name" : "Pkm2 (pp) Plekho2", "SUID" : 606360, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "606544", "source" : "587855", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pkm2 (pp) Tmem86a", "weight" : 0.42219047572, "name" : "Pkm2 (pp) Tmem86a", "shared_name" : "Pkm2 (pp) Tmem86a", "SUID" : 606544, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671193", "source" : "588727", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Trem2", "weight" : 0.600393693372, "name" : "Axl (pp) Trem2", "shared_name" : "Axl (pp) Trem2", "SUID" : 671193, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671206", "source" : "588727", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.757698110315, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Axl (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 4.739099E-4, "weight" : 0.757698110315, "fusion" : "NA", "name" : "Axl (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 131957.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Axl (pp) Ear4", "combinedscore" : "NA", "SUID" : 671206, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "671199", "source" : "588727", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Ear12", "weight" : 0.483380901566, "name" : "Axl (pp) Ear12", "shared_name" : "Axl (pp) Ear12", "SUID" : 671199, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671130", "source" : "588727", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Hk3", "weight" : 0.561202982074, "name" : "Axl (pp) Hk3", "shared_name" : "Axl (pp) Hk3", "SUID" : 671130, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671215", "source" : "588727", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Lrrc33", "weight" : 0.441160066331, "name" : "Axl (pp) Lrrc33", "shared_name" : "Axl (pp) Lrrc33", "SUID" : 671215, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671109", "source" : "588727", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Pla2g15", "weight" : 0.501016724868, "name" : "Axl (pp) Pla2g15", "shared_name" : "Axl (pp) Pla2g15", "SUID" : 671109, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671111", "source" : "588727", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Cotl1", "weight" : 0.79983152226, "name" : "Axl (pp) Cotl1", "shared_name" : "Axl (pp) Cotl1", "SUID" : 671111, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671100", "source" : "588727", "target" : "588782", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.764263882795, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Axl (pp) Slc15a3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 5.28323E-4, "weight" : 0.764263882795, "fusion" : "NA", "name" : "Axl (pp) Slc15a3", "neighborhood" : "NA", "sourceEdge" : 131916.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Axl (pp) Slc15a3", "combinedscore" : "NA", "SUID" : 671100, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "671201", "source" : "588727", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Fcgr4", "weight" : 0.735309154249, "name" : "Axl (pp) Fcgr4", "shared_name" : "Axl (pp) Fcgr4", "SUID" : 671201, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671117", "source" : "588727", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Fcgr3", "weight" : 0.516687923757, "name" : "Axl (pp) Fcgr3", "shared_name" : "Axl (pp) Fcgr3", "SUID" : 671117, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671188", "source" : "588727", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) H2-DMa", "weight" : 0.471670758397, "name" : "Axl (pp) H2-DMa", "shared_name" : "Axl (pp) H2-DMa", "SUID" : 671188, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671164", "source" : "588727", "target" : "589102", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Gja1", "weight" : 0.413699534449, "name" : "Axl (pp) Gja1", "shared_name" : "Axl (pp) Gja1", "SUID" : 671164, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671103", "source" : "588727", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Tmem86a", "weight" : 0.715553645988, "name" : "Axl (pp) Tmem86a", "shared_name" : "Axl (pp) Tmem86a", "SUID" : 671103, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671162", "source" : "588727", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Snx10", "weight" : 0.409249180364, "name" : "Axl (pp) Snx10", "shared_name" : "Axl (pp) Snx10", "SUID" : 671162, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671197", "source" : "588727", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Abi3", "weight" : 0.501288909909, "name" : "Axl (pp) Abi3", "shared_name" : "Axl (pp) Abi3", "SUID" : 671197, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671102", "source" : "588727", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Ccl6", "weight" : 0.541468626178, "name" : "Axl (pp) Ccl6", "shared_name" : "Axl (pp) Ccl6", "SUID" : 671102, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671105", "source" : "588727", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Obrgrp", "weight" : 0.599980391927, "name" : "Axl (pp) Obrgrp", "shared_name" : "Axl (pp) Obrgrp", "SUID" : 671105, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671129", "source" : "588727", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) C1qc", "weight" : 0.577974811933, "name" : "Axl (pp) C1qc", "shared_name" : "Axl (pp) C1qc", "SUID" : 671129, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671185", "source" : "588727", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Serpinb6a", "weight" : 0.651552754569, "name" : "Axl (pp) Serpinb6a", "shared_name" : "Axl (pp) Serpinb6a", "SUID" : 671185, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671171", "source" : "588727", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Tmsb4x", "weight" : 0.526697390303, "name" : "Axl (pp) Tmsb4x", "shared_name" : "Axl (pp) Tmsb4x", "SUID" : 671171, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671210", "source" : "588727", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Ly86", "weight" : 0.60968978553, "name" : "Axl (pp) Ly86", "shared_name" : "Axl (pp) Ly86", "SUID" : 671210, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671094", "source" : "588727", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Vsig4", "weight" : 0.603548678768, "name" : "Axl (pp) Vsig4", "shared_name" : "Axl (pp) Vsig4", "SUID" : 671094, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671217", "source" : "588727", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Lmo2", "weight" : 0.405404392689, "name" : "Axl (pp) Lmo2", "shared_name" : "Axl (pp) Lmo2", "SUID" : 671217, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671167", "source" : "588727", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Vcam1", "weight" : 0.784049214531, "name" : "Axl (pp) Vcam1", "shared_name" : "Axl (pp) Vcam1", "SUID" : 671167, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671092", "source" : "588727", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Tpm4", "weight" : 0.453054247003, "name" : "Axl (pp) Tpm4", "shared_name" : "Axl (pp) Tpm4", "SUID" : 671092, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671123", "source" : "588727", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Lgals3", "weight" : 0.767879029175, "name" : "Axl (pp) Lgals3", "shared_name" : "Axl (pp) Lgals3", "SUID" : 671123, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671148", "source" : "588727", "target" : "589030", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Soat1", "weight" : 0.416678768123, "name" : "Axl (pp) Soat1", "shared_name" : "Axl (pp) Soat1", "SUID" : 671148, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671214", "source" : "588727", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Tspan33", "weight" : 0.441027091279, "name" : "Axl (pp) Tspan33", "shared_name" : "Axl (pp) Tspan33", "SUID" : 671214, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671222", "source" : "588727", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Il10ra", "weight" : 0.442942503399, "name" : "Axl (pp) Il10ra", "shared_name" : "Axl (pp) Il10ra", "SUID" : 671222, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671113", "source" : "588727", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Plac8", "weight" : 0.666565718314, "name" : "Axl (pp) Plac8", "shared_name" : "Axl (pp) Plac8", "SUID" : 671113, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671194", "source" : "588727", "target" : "589256", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Timp1", "weight" : 0.429637543979, "name" : "Axl (pp) Timp1", "shared_name" : "Axl (pp) Timp1", "SUID" : 671194, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671131", "source" : "588727", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Cytip", "weight" : 0.5831500007, "name" : "Axl (pp) Cytip", "shared_name" : "Axl (pp) Cytip", "SUID" : 671131, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671160", "source" : "588727", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Pld4", "weight" : 0.480079616956, "name" : "Axl (pp) Pld4", "shared_name" : "Axl (pp) Pld4", "SUID" : 671160, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671189", "source" : "588727", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Ear10", "weight" : 0.496488237064, "name" : "Axl (pp) Ear10", "shared_name" : "Axl (pp) Ear10", "SUID" : 671189, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671204", "source" : "588727", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Clec7a", "weight" : 0.546819731538, "name" : "Axl (pp) Clec7a", "shared_name" : "Axl (pp) Clec7a", "SUID" : 671204, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671211", "source" : "588727", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) C1qb", "weight" : 0.683278531203, "name" : "Axl (pp) C1qb", "shared_name" : "Axl (pp) C1qb", "SUID" : 671211, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671209", "source" : "588727", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Prkcd", "weight" : 0.404036625245, "name" : "Axl (pp) Prkcd", "shared_name" : "Axl (pp) Prkcd", "SUID" : 671209, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671096", "source" : "588727", "target" : "588742", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Ifitm6", "weight" : 0.425041328596, "name" : "Axl (pp) Ifitm6", "shared_name" : "Axl (pp) Ifitm6", "SUID" : 671096, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671141", "source" : "588727", "target" : "588968", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Bcl2a1c", "weight" : 0.436002959489, "name" : "Axl (pp) Bcl2a1c", "shared_name" : "Axl (pp) Bcl2a1c", "SUID" : 671141, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671155", "source" : "588727", "target" : "589076", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) H2-M3", "weight" : 0.423490548353, "name" : "Axl (pp) H2-M3", "shared_name" : "Axl (pp) H2-M3", "SUID" : 671155, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671115", "source" : "588727", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Fcer1g", "weight" : 0.729618746929, "name" : "Axl (pp) Fcer1g", "shared_name" : "Axl (pp) Fcer1g", "SUID" : 671115, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671156", "source" : "588727", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Btk", "weight" : 0.41056756168, "name" : "Axl (pp) Btk", "shared_name" : "Axl (pp) Btk", "SUID" : 671156, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671157", "source" : "588727", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Cfp", "weight" : 0.619331592773, "name" : "Axl (pp) Cfp", "shared_name" : "Axl (pp) Cfp", "SUID" : 671157, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671136", "source" : "588727", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) H2-DMb1", "weight" : 0.495818663012, "name" : "Axl (pp) H2-DMb1", "shared_name" : "Axl (pp) H2-DMb1", "SUID" : 671136, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671176", "source" : "588727", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Axl (pp) Rasgrp1", "weight" : 0.467114217774, "name" : "Axl (pp) Rasgrp1", "shared_name" : "Axl (pp) Rasgrp1", "SUID" : 671176, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "671147", "source" : "588727", "target" : "589005", "homology" : "NA", "shared_interaction" : "NA", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.686106366537, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Axl (pp) Csrp1", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 4.686155E-4, "weight" : 0.686106366537, "fusion" : "NA", "name" : "Axl (pp) Csrp1", "neighborhood" : "NA", "sourceEdge" : 131933.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Axl (pp) Csrp1", "combinedscore" : "NA", "SUID" : 671147, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "NA", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "641136", "source" : "588254", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Tmsb10", "weight" : 0.537331412515, "name" : "Irf8 (pp) Tmsb10", "shared_name" : "Irf8 (pp) Tmsb10", "SUID" : 641136, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641206", "source" : "588254", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Cfp", "weight" : 0.480018164241, "name" : "Irf8 (pp) Cfp", "shared_name" : "Irf8 (pp) Cfp", "SUID" : 641206, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641250", "source" : "588254", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) C1qb", "weight" : 0.480977392596, "name" : "Irf8 (pp) C1qb", "shared_name" : "Irf8 (pp) C1qb", "SUID" : 641250, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641103", "source" : "588254", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Clec4n", "weight" : 0.481915812365, "name" : "Irf8 (pp) Clec4n", "shared_name" : "Irf8 (pp) Clec4n", "SUID" : 641103, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641090", "source" : "588254", "target" : "588335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Arpc1b", "weight" : 0.524346335604, "name" : "Irf8 (pp) Arpc1b", "shared_name" : "Irf8 (pp) Arpc1b", "SUID" : 641090, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641151", "source" : "588254", "target" : "588678", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Fxyd5", "weight" : 0.421440611146, "name" : "Irf8 (pp) Fxyd5", "shared_name" : "Irf8 (pp) Fxyd5", "SUID" : 641151, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641115", "source" : "588254", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Plscr1", "weight" : 0.493194483347, "name" : "Irf8 (pp) Plscr1", "shared_name" : "Irf8 (pp) Plscr1", "SUID" : 641115, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641182", "source" : "588254", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Lgals3", "weight" : 0.562911470808, "name" : "Irf8 (pp) Lgals3", "shared_name" : "Irf8 (pp) Lgals3", "SUID" : 641182, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641108", "source" : "588254", "target" : "588459", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Pop5", "weight" : 0.426059006662, "name" : "Irf8 (pp) Pop5", "shared_name" : "Irf8 (pp) Pop5", "SUID" : 641108, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641229", "source" : "588254", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) H2-DMa", "weight" : 0.567955067762, "name" : "Irf8 (pp) H2-DMa", "shared_name" : "Irf8 (pp) H2-DMa", "SUID" : 641229, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641189", "source" : "588254", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Cytip", "weight" : 0.424331587472, "name" : "Irf8 (pp) Cytip", "shared_name" : "Irf8 (pp) Cytip", "SUID" : 641189, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641227", "source" : "588254", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Serpinb6a", "weight" : 0.415725653466, "name" : "Irf8 (pp) Serpinb6a", "shared_name" : "Irf8 (pp) Serpinb6a", "SUID" : 641227, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641208", "source" : "588254", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Pld4", "weight" : 0.426491119663, "name" : "Irf8 (pp) Pld4", "shared_name" : "Irf8 (pp) Pld4", "SUID" : 641208, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641241", "source" : "588254", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Cd53", "weight" : 0.660378392923, "name" : "Irf8 (pp) Cd53", "shared_name" : "Irf8 (pp) Cd53", "SUID" : 641241, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641249", "source" : "588254", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Ly86", "weight" : 0.568497449922, "name" : "Irf8 (pp) Ly86", "shared_name" : "Irf8 (pp) Ly86", "SUID" : 641249, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641128", "source" : "588254", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Cd86", "weight" : 0.406163615607, "name" : "Irf8 (pp) Cd86", "shared_name" : "Irf8 (pp) Cd86", "SUID" : 641128, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641148", "source" : "588254", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) 5033414D02Rik", "weight" : 0.508605935206, "name" : "Irf8 (pp) 5033414D02Rik", "shared_name" : "Irf8 (pp) 5033414D02Rik", "SUID" : 641148, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641200", "source" : "588254", "target" : "589030", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Soat1", "weight" : 0.502949971081, "name" : "Irf8 (pp) Soat1", "shared_name" : "Irf8 (pp) Soat1", "SUID" : 641200, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641244", "source" : "588254", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Ear4", "weight" : 0.508912257019, "name" : "Irf8 (pp) Ear4", "shared_name" : "Irf8 (pp) Ear4", "SUID" : 641244, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641159", "source" : "588254", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Tpm4", "weight" : 0.42039167578, "name" : "Irf8 (pp) Tpm4", "shared_name" : "Irf8 (pp) Tpm4", "SUID" : 641159, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641199", "source" : "588254", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Csrp1", "weight" : 0.568988557262, "name" : "Irf8 (pp) Csrp1", "shared_name" : "Irf8 (pp) Csrp1", "SUID" : 641199, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641177", "source" : "588254", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Fcer1g", "weight" : 0.559282742127, "name" : "Irf8 (pp) Fcer1g", "shared_name" : "Irf8 (pp) Fcer1g", "SUID" : 641177, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641139", "source" : "588254", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Gngt2", "weight" : 0.508024169775, "name" : "Irf8 (pp) Gngt2", "shared_name" : "Irf8 (pp) Gngt2", "SUID" : 641139, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641242", "source" : "588254", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Clec7a", "weight" : 0.43983914208, "name" : "Irf8 (pp) Clec7a", "shared_name" : "Irf8 (pp) Clec7a", "SUID" : 641242, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641137", "source" : "588254", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Slc11a1", "weight" : 0.504486446428, "name" : "Irf8 (pp) Slc11a1", "shared_name" : "Irf8 (pp) Slc11a1", "SUID" : 641137, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641120", "source" : "588254", "target" : "588512", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) H2-Eb1", "weight" : 0.440246264433, "name" : "Irf8 (pp) H2-Eb1", "shared_name" : "Irf8 (pp) H2-Eb1", "SUID" : 641120, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641100", "source" : "588254", "target" : "588394", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Lyzs", "weight" : 0.643935972937, "name" : "Irf8 (pp) Lyzs", "shared_name" : "Irf8 (pp) Lyzs", "SUID" : 641100, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641110", "source" : "588254", "target" : "588464", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Akr1b3", "weight" : 0.412846825281, "name" : "Irf8 (pp) Akr1b3", "shared_name" : "Irf8 (pp) Akr1b3", "SUID" : 641110, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641158", "source" : "588254", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Axl", "weight" : 0.466899019876, "name" : "Irf8 (pp) Axl", "shared_name" : "Irf8 (pp) Axl", "SUID" : 641158, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641163", "source" : "588254", "target" : "588742", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Ifitm6", "weight" : 0.529953106324, "name" : "Irf8 (pp) Ifitm6", "shared_name" : "Irf8 (pp) Ifitm6", "SUID" : 641163, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641156", "source" : "588254", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Serpina3g", "weight" : 0.541563906517, "name" : "Irf8 (pp) Serpina3g", "shared_name" : "Irf8 (pp) Serpina3g", "SUID" : 641156, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641239", "source" : "588254", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Fcgr4", "weight" : 0.490621486868, "name" : "Irf8 (pp) Fcgr4", "shared_name" : "Irf8 (pp) Fcgr4", "SUID" : 641239, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641230", "source" : "588254", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Ear10", "weight" : 0.585045491325, "name" : "Irf8 (pp) Ear10", "shared_name" : "Irf8 (pp) Ear10", "SUID" : 641230, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641085", "source" : "588254", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Cxcl16", "weight" : 0.499874504072, "name" : "Irf8 (pp) Cxcl16", "shared_name" : "Irf8 (pp) Cxcl16", "SUID" : 641085, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641188", "source" : "588254", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Hk3", "weight" : 0.475837564844, "name" : "Irf8 (pp) Hk3", "shared_name" : "Irf8 (pp) Hk3", "SUID" : 641188, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641097", "source" : "588254", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Selplg", "weight" : 0.578991600951, "name" : "Irf8 (pp) Selplg", "shared_name" : "Irf8 (pp) Selplg", "SUID" : 641097, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641166", "source" : "588254", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Slc15a3", "weight" : 0.556951374002, "name" : "Irf8 (pp) Slc15a3", "shared_name" : "Irf8 (pp) Slc15a3", "SUID" : 641166, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641251", "source" : "588254", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Fblim1", "weight" : 0.412455512847, "name" : "Irf8 (pp) Fblim1", "shared_name" : "Irf8 (pp) Fblim1", "SUID" : 641251, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641095", "source" : "588254", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Cyp7b1", "weight" : 0.41545093408, "name" : "Irf8 (pp) Cyp7b1", "shared_name" : "Irf8 (pp) Cyp7b1", "SUID" : 641095, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641157", "source" : "588254", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Tlr2", "weight" : 0.463756399293, "name" : "Irf8 (pp) Tlr2", "shared_name" : "Irf8 (pp) Tlr2", "SUID" : 641157, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641175", "source" : "588254", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Cotl1", "weight" : 0.494325854905, "name" : "Irf8 (pp) Cotl1", "shared_name" : "Irf8 (pp) Cotl1", "SUID" : 641175, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641082", "source" : "588254", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Ms4a6d", "weight" : 0.516334824254, "name" : "Irf8 (pp) Ms4a6d", "shared_name" : "Irf8 (pp) Ms4a6d", "SUID" : 641082, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641214", "source" : "588254", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Tmsb4x", "weight" : 0.677175368156, "name" : "Irf8 (pp) Tmsb4x", "shared_name" : "Irf8 (pp) Tmsb4x", "SUID" : 641214, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641152", "source" : "588254", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Cd52", "weight" : 0.589553431397, "name" : "Irf8 (pp) Cd52", "shared_name" : "Irf8 (pp) Cd52", "SUID" : 641152, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641176", "source" : "588254", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Plac8", "weight" : 0.592190510036, "name" : "Irf8 (pp) Plac8", "shared_name" : "Irf8 (pp) Plac8", "SUID" : 641176, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641161", "source" : "588254", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Vsig4", "weight" : 0.409901221429, "name" : "Irf8 (pp) Vsig4", "shared_name" : "Irf8 (pp) Vsig4", "SUID" : 641161, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641135", "source" : "588254", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Coro1a", "weight" : 0.521392366135, "name" : "Irf8 (pp) Coro1a", "shared_name" : "Irf8 (pp) Coro1a", "SUID" : 641135, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641237", "source" : "588254", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Ear12", "weight" : 0.579089705513, "name" : "Irf8 (pp) Ear12", "shared_name" : "Irf8 (pp) Ear12", "SUID" : 641237, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641077", "source" : "588254", "target" : "588257", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Sdcbp", "weight" : 0.432787417282, "name" : "Irf8 (pp) Sdcbp", "shared_name" : "Irf8 (pp) Sdcbp", "SUID" : 641077, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641116", "source" : "588254", "target" : "588490", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Arhgap30", "weight" : 0.402708528577, "name" : "Irf8 (pp) Arhgap30", "shared_name" : "Irf8 (pp) Arhgap30", "SUID" : 641116, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641211", "source" : "588254", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Vcam1", "weight" : 0.515486138305, "name" : "Irf8 (pp) Vcam1", "shared_name" : "Irf8 (pp) Vcam1", "SUID" : 641211, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641187", "source" : "588254", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) C1qc", "weight" : 0.418349794979, "name" : "Irf8 (pp) C1qc", "shared_name" : "Irf8 (pp) C1qc", "SUID" : 641187, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641190", "source" : "588254", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) H2-DMb1", "weight" : 0.417342767576, "name" : "Irf8 (pp) H2-DMb1", "shared_name" : "Irf8 (pp) H2-DMb1", "SUID" : 641190, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641209", "source" : "588254", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Irf8 (pp) Snx10", "weight" : 0.484327594255, "name" : "Irf8 (pp) Snx10", "shared_name" : "Irf8 (pp) Snx10", "SUID" : 641209, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "684411", "source" : "589151", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb4x (pp) Cd53", "weight" : 0.565655258968, "name" : "Tmsb4x (pp) Cd53", "shared_name" : "Tmsb4x (pp) Cd53", "SUID" : 684411, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "684395", "source" : "589151", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb4x (pp) Serpinb6a", "weight" : 0.415709561406, "name" : "Tmsb4x (pp) Serpinb6a", "shared_name" : "Tmsb4x (pp) Serpinb6a", "SUID" : 684395, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "684388", "source" : "589151", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb4x (pp) Rasgrp1", "weight" : 0.440545415344, "name" : "Tmsb4x (pp) Rasgrp1", "shared_name" : "Tmsb4x (pp) Rasgrp1", "SUID" : 684388, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "684420", "source" : "589151", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb4x (pp) C1qb", "weight" : 0.678559299559, "name" : "Tmsb4x (pp) C1qb", "shared_name" : "Tmsb4x (pp) C1qb", "SUID" : 684420, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "684399", "source" : "589151", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb4x (pp) H2-DMa", "weight" : 0.529135474599, "name" : "Tmsb4x (pp) H2-DMa", "shared_name" : "Tmsb4x (pp) H2-DMa", "SUID" : 684399, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "684412", "source" : "589151", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb4x (pp) Clec7a", "weight" : 0.481785946369, "name" : "Tmsb4x (pp) Clec7a", "shared_name" : "Tmsb4x (pp) Clec7a", "SUID" : 684412, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "684419", "source" : "589151", "target" : "589335", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.685970277664, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Tmsb4x (pp) Ly86", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.685970277664, "fusion" : "NA", "name" : "Tmsb4x (pp) Ly86", "neighborhood" : "NA", "sourceEdge" : 152373.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Tmsb4x (pp) Ly86", "combinedscore" : "NA", "SUID" : 684419, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 2.381578E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "684409", "source" : "589151", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb4x (pp) Fcgr4", "weight" : 0.515466697408, "name" : "Tmsb4x (pp) Fcgr4", "shared_name" : "Tmsb4x (pp) Fcgr4", "SUID" : 684409, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "684407", "source" : "589151", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb4x (pp) Ear12", "weight" : 0.575759352326, "name" : "Tmsb4x (pp) Ear12", "shared_name" : "Tmsb4x (pp) Ear12", "SUID" : 684407, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "684400", "source" : "589151", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb4x (pp) Ear10", "weight" : 0.499935923017, "name" : "Tmsb4x (pp) Ear10", "shared_name" : "Tmsb4x (pp) Ear10", "SUID" : 684400, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "684414", "source" : "589151", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.536613365005, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Tmsb4x (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.536613365005, "fusion" : "NA", "name" : "Tmsb4x (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 152371.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Tmsb4x (pp) Ear4", "combinedscore" : "NA", "SUID" : 684414, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 2.810619E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "684421", "source" : "589151", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Tmsb4x (pp) Fblim1", "weight" : 0.434146261317, "name" : "Tmsb4x (pp) Fblim1", "shared_name" : "Tmsb4x (pp) Fblim1", "SUID" : 684421, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589510", "source" : "587703", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Fcer1g", "weight" : 0.465173298112, "name" : "1200002N14Rik (pp) Fcer1g", "shared_name" : "1200002N14Rik (pp) Fcer1g", "SUID" : 589510, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589525", "source" : "587703", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Rasgrp1", "weight" : 0.671860199992, "name" : "1200002N14Rik (pp) Rasgrp1", "shared_name" : "1200002N14Rik (pp) Rasgrp1", "SUID" : 589525, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589443", "source" : "587703", "target" : "587829", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Fyb", "weight" : 0.434291958518, "name" : "1200002N14Rik (pp) Fyb", "shared_name" : "1200002N14Rik (pp) Fyb", "SUID" : 589443, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589457", "source" : "587703", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Pip4k2a", "weight" : 0.425974039495, "name" : "1200002N14Rik (pp) Pip4k2a", "shared_name" : "1200002N14Rik (pp) Pip4k2a", "SUID" : 589457, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589467", "source" : "587703", "target" : "588262", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) P2ry13", "weight" : 0.445289419019, "name" : "1200002N14Rik (pp) P2ry13", "shared_name" : "1200002N14Rik (pp) P2ry13", "SUID" : 589467, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589528", "source" : "587703", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) H2-DMa", "weight" : 0.430478661676, "name" : "1200002N14Rik (pp) H2-DMa", "shared_name" : "1200002N14Rik (pp) H2-DMa", "SUID" : 589528, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589468", "source" : "587703", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Ms4a6d", "weight" : 0.498737749971, "name" : "1200002N14Rik (pp) Ms4a6d", "shared_name" : "1200002N14Rik (pp) Ms4a6d", "SUID" : 589468, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589529", "source" : "587703", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Ear10", "weight" : 0.444625524394, "name" : "1200002N14Rik (pp) Ear10", "shared_name" : "1200002N14Rik (pp) Ear10", "SUID" : 589529, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589486", "source" : "587703", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Coro1a", "weight" : 0.495753361992, "name" : "1200002N14Rik (pp) Coro1a", "shared_name" : "1200002N14Rik (pp) Coro1a", "SUID" : 589486, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589437", "source" : "587703", "target" : "587788", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Nckap1l", "weight" : 0.418539538528, "name" : "1200002N14Rik (pp) Nckap1l", "shared_name" : "1200002N14Rik (pp) Nckap1l", "SUID" : 589437, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589495", "source" : "587703", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Cd52", "weight" : 0.473138377843, "name" : "1200002N14Rik (pp) Cd52", "shared_name" : "1200002N14Rik (pp) Cd52", "SUID" : 589495, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589497", "source" : "587703", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Serpina3g", "weight" : 0.468973245504, "name" : "1200002N14Rik (pp) Serpina3g", "shared_name" : "1200002N14Rik (pp) Serpina3g", "SUID" : 589497, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589445", "source" : "587703", "target" : "587851", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Sh3kbp1", "weight" : 0.409218817733, "name" : "1200002N14Rik (pp) Sh3kbp1", "shared_name" : "1200002N14Rik (pp) Sh3kbp1", "SUID" : 589445, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589504", "source" : "587703", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Slc15a3", "weight" : 0.441043053343, "name" : "1200002N14Rik (pp) Slc15a3", "shared_name" : "1200002N14Rik (pp) Slc15a3", "SUID" : 589504, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589477", "source" : "587703", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Clec4n", "weight" : 0.416048585226, "name" : "1200002N14Rik (pp) Clec4n", "shared_name" : "1200002N14Rik (pp) Clec4n", "SUID" : 589477, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589458", "source" : "587703", "target" : "588185", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Aif1", "weight" : 0.494419973331, "name" : "1200002N14Rik (pp) Aif1", "shared_name" : "1200002N14Rik (pp) Aif1", "SUID" : 589458, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589538", "source" : "587703", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) C1qb", "weight" : 0.5477641811, "name" : "1200002N14Rik (pp) C1qb", "shared_name" : "1200002N14Rik (pp) C1qb", "SUID" : 589538, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589447", "source" : "587703", "target" : "587864", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Spic", "weight" : 0.407388871318, "name" : "1200002N14Rik (pp) Spic", "shared_name" : "1200002N14Rik (pp) Spic", "SUID" : 589447, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589532", "source" : "587703", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Fcgr4", "weight" : 0.451077374449, "name" : "1200002N14Rik (pp) Fcgr4", "shared_name" : "1200002N14Rik (pp) Fcgr4", "SUID" : 589532, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589524", "source" : "587703", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Tmsb4x", "weight" : 0.452383475828, "name" : "1200002N14Rik (pp) Tmsb4x", "shared_name" : "1200002N14Rik (pp) Tmsb4x", "SUID" : 589524, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589440", "source" : "587703", "target" : "587807", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Evi2a", "weight" : 0.406597728328, "name" : "1200002N14Rik (pp) Evi2a", "shared_name" : "1200002N14Rik (pp) Evi2a", "SUID" : 589440, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589520", "source" : "587703", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Cfp", "weight" : 0.507212331316, "name" : "1200002N14Rik (pp) Cfp", "shared_name" : "1200002N14Rik (pp) Cfp", "SUID" : 589520, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589490", "source" : "587703", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Casp1", "weight" : 0.553142466267, "name" : "1200002N14Rik (pp) Casp1", "shared_name" : "1200002N14Rik (pp) Casp1", "SUID" : 589490, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589444", "source" : "587703", "target" : "587844", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Ear2", "weight" : 0.406257937661, "name" : "1200002N14Rik (pp) Ear2", "shared_name" : "1200002N14Rik (pp) Ear2", "SUID" : 589444, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589470", "source" : "587703", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Cxcl16", "weight" : 0.423874311343, "name" : "1200002N14Rik (pp) Cxcl16", "shared_name" : "1200002N14Rik (pp) Cxcl16", "SUID" : 589470, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589484", "source" : "587703", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Cd86", "weight" : 0.441330392407, "name" : "1200002N14Rik (pp) Cd86", "shared_name" : "1200002N14Rik (pp) Cd86", "SUID" : 589484, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589513", "source" : "587703", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Hk3", "weight" : 0.54701447953, "name" : "1200002N14Rik (pp) Hk3", "shared_name" : "1200002N14Rik (pp) Hk3", "SUID" : 589513, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589483", "source" : "587703", "target" : "588512", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) H2-Eb1", "weight" : 0.400316700236, "name" : "1200002N14Rik (pp) H2-Eb1", "shared_name" : "1200002N14Rik (pp) H2-Eb1", "SUID" : 589483, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589451", "source" : "587703", "target" : "587982", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Plekho2", "weight" : 0.547470237012, "name" : "1200002N14Rik (pp) Plekho2", "shared_name" : "1200002N14Rik (pp) Plekho2", "SUID" : 589451, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589537", "source" : "587703", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Ly86", "weight" : 0.406156973569, "name" : "1200002N14Rik (pp) Ly86", "shared_name" : "1200002N14Rik (pp) Ly86", "SUID" : 589537, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589482", "source" : "587703", "target" : "588492", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Ncf4", "weight" : 0.449625266813, "name" : "1200002N14Rik (pp) Ncf4", "shared_name" : "1200002N14Rik (pp) Ncf4", "SUID" : 589482, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589450", "source" : "587703", "target" : "587975", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) H2-Ab1", "weight" : 0.456041648698, "name" : "1200002N14Rik (pp) H2-Ab1", "shared_name" : "1200002N14Rik (pp) H2-Ab1", "SUID" : 589450, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589492", "source" : "587703", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) 5033414D02Rik", "weight" : 0.455541755903, "name" : "1200002N14Rik (pp) 5033414D02Rik", "shared_name" : "1200002N14Rik (pp) 5033414D02Rik", "SUID" : 589492, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589498", "source" : "587703", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Tlr2", "weight" : 0.516678458388, "name" : "1200002N14Rik (pp) Tlr2", "shared_name" : "1200002N14Rik (pp) Tlr2", "SUID" : 589498, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589434", "source" : "587703", "target" : "587750", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Serpina3f", "weight" : 0.459189100411, "name" : "1200002N14Rik (pp) Serpina3f", "shared_name" : "1200002N14Rik (pp) Serpina3f", "SUID" : 589434, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589487", "source" : "587703", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Slc11a1", "weight" : 0.434931107678, "name" : "1200002N14Rik (pp) Slc11a1", "shared_name" : "1200002N14Rik (pp) Slc11a1", "SUID" : 589487, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589489", "source" : "587703", "target" : "588608", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Treml4", "weight" : 0.405576322443, "name" : "1200002N14Rik (pp) Treml4", "shared_name" : "1200002N14Rik (pp) Treml4", "SUID" : 589489, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589501", "source" : "587703", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Vsig4", "weight" : 0.564542933008, "name" : "1200002N14Rik (pp) Vsig4", "shared_name" : "1200002N14Rik (pp) Vsig4", "SUID" : 589501, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "589433", "source" : "587703", "target" : "587746", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "1200002N14Rik (pp) Gbp3", "weight" : 0.52825064205, "name" : "1200002N14Rik (pp) Gbp3", "shared_name" : "1200002N14Rik (pp) Gbp3", "SUID" : 589433, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655527", "source" : "588439", "target" : "588517", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vim (pp) Rac2", "weight" : 0.4450368102, "name" : "Vim (pp) Rac2", "shared_name" : "Vim (pp) Rac2", "SUID" : 655527, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655555", "source" : "588439", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vim (pp) Obrgrp", "weight" : 0.407699109999, "name" : "Vim (pp) Obrgrp", "shared_name" : "Vim (pp) Obrgrp", "SUID" : 655555, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655605", "source" : "588439", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vim (pp) Lrrc33", "weight" : 0.444508543846, "name" : "Vim (pp) Lrrc33", "shared_name" : "Vim (pp) Lrrc33", "SUID" : 655605, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655598", "source" : "588439", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vim (pp) Abi3", "weight" : 0.429929675633, "name" : "Vim (pp) Abi3", "shared_name" : "Vim (pp) Abi3", "SUID" : 655598, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655528", "source" : "588439", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vim (pp) Cd86", "weight" : 0.447762130815, "name" : "Vim (pp) Cd86", "shared_name" : "Vim (pp) Cd86", "SUID" : 655528, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655563", "source" : "588439", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vim (pp) Lgals3", "weight" : 0.443906037795, "name" : "Vim (pp) Lgals3", "shared_name" : "Vim (pp) Lgals3", "SUID" : 655563, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655538", "source" : "588439", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vim (pp) Gpnmb", "weight" : 0.496146251097, "name" : "Vim (pp) Gpnmb", "shared_name" : "Vim (pp) Gpnmb", "SUID" : 655538, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655599", "source" : "588439", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vim (pp) Fcgr4", "weight" : 0.437530626753, "name" : "Vim (pp) Fcgr4", "shared_name" : "Vim (pp) Fcgr4", "SUID" : 655599, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655604", "source" : "588439", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vim (pp) C1qb", "weight" : 0.507030045239, "name" : "Vim (pp) C1qb", "shared_name" : "Vim (pp) C1qb", "SUID" : 655604, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655593", "source" : "588439", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vim (pp) Serpinb6a", "weight" : 0.451703996561, "name" : "Vim (pp) Serpinb6a", "shared_name" : "Vim (pp) Serpinb6a", "SUID" : 655593, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655543", "source" : "588439", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vim (pp) 6330416G13Rik", "weight" : 0.439066477402, "name" : "Vim (pp) 6330416G13Rik", "shared_name" : "Vim (pp) 6330416G13Rik", "SUID" : 655543, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655558", "source" : "588439", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vim (pp) Cotl1", "weight" : 0.44629569592, "name" : "Vim (pp) Cotl1", "shared_name" : "Vim (pp) Cotl1", "SUID" : 655558, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655584", "source" : "588439", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vim (pp) Vcam1", "weight" : 0.440406941278, "name" : "Vim (pp) Vcam1", "shared_name" : "Vim (pp) Vcam1", "SUID" : 655584, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655532", "source" : "588439", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vim (pp) Coro1a", "weight" : 0.441309213565, "name" : "Vim (pp) Coro1a", "shared_name" : "Vim (pp) Coro1a", "SUID" : 655532, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655535", "source" : "588439", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vim (pp) Gngt2", "weight" : 0.404764127377, "name" : "Vim (pp) Gngt2", "shared_name" : "Vim (pp) Gngt2", "SUID" : 655535, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655559", "source" : "588439", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vim (pp) Plac8", "weight" : 0.400503511726, "name" : "Vim (pp) Plac8", "shared_name" : "Vim (pp) Plac8", "SUID" : 655559, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655536", "source" : "588439", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vim (pp) Casp1", "weight" : 0.464570849713, "name" : "Vim (pp) Casp1", "shared_name" : "Vim (pp) Casp1", "SUID" : 655536, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655560", "source" : "588439", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vim (pp) Fcer1g", "weight" : 0.47117276817, "name" : "Vim (pp) Fcer1g", "shared_name" : "Vim (pp) Fcer1g", "SUID" : 655560, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655561", "source" : "588439", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vim (pp) Fcgr3", "weight" : 0.468684405276, "name" : "Vim (pp) Fcgr3", "shared_name" : "Vim (pp) Fcgr3", "SUID" : 655561, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655542", "source" : "588439", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vim (pp) Cd52", "weight" : 0.49010808326, "name" : "Vim (pp) Cd52", "shared_name" : "Vim (pp) Cd52", "SUID" : 655542, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655534", "source" : "588439", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vim (pp) Slc11a1", "weight" : 0.470536815484, "name" : "Vim (pp) Slc11a1", "shared_name" : "Vim (pp) Slc11a1", "SUID" : 655534, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655602", "source" : "588439", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vim (pp) Ear4", "weight" : 0.434689906996, "name" : "Vim (pp) Ear4", "shared_name" : "Vim (pp) Ear4", "SUID" : 655602, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655546", "source" : "588439", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vim (pp) Axl", "weight" : 0.469201275235, "name" : "Vim (pp) Axl", "shared_name" : "Vim (pp) Axl", "SUID" : 655546, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655521", "source" : "588439", "target" : "588472", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Vim (pp) Ly9", "weight" : 0.434870781707, "name" : "Vim (pp) Ly9", "shared_name" : "Vim (pp) Ly9", "SUID" : 655521, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641501", "source" : "588262", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "P2ry13 (pp) Rasgrp1", "weight" : 0.551107021819, "name" : "P2ry13 (pp) Rasgrp1", "shared_name" : "P2ry13 (pp) Rasgrp1", "SUID" : 641501, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641512", "source" : "588262", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "P2ry13 (pp) Lrrc33", "weight" : 0.439342082119, "name" : "P2ry13 (pp) Lrrc33", "shared_name" : "P2ry13 (pp) Lrrc33", "SUID" : 641512, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641498", "source" : "588262", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "P2ry13 (pp) Cfp", "weight" : 0.52337820691, "name" : "P2ry13 (pp) Cfp", "shared_name" : "P2ry13 (pp) Cfp", "SUID" : 641498, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641470", "source" : "588262", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "P2ry13 (pp) 5033414D02Rik", "weight" : 0.402549974777, "name" : "P2ry13 (pp) 5033414D02Rik", "shared_name" : "P2ry13 (pp) 5033414D02Rik", "SUID" : 641470, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641481", "source" : "588262", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "P2ry13 (pp) Slc15a3", "weight" : 0.411635506212, "name" : "P2ry13 (pp) Slc15a3", "shared_name" : "P2ry13 (pp) Slc15a3", "SUID" : 641481, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641490", "source" : "588262", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "P2ry13 (pp) Hk3", "weight" : 0.456918636887, "name" : "P2ry13 (pp) Hk3", "shared_name" : "P2ry13 (pp) Hk3", "SUID" : 641490, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641511", "source" : "588262", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "P2ry13 (pp) C1qb", "weight" : 0.546790152538, "name" : "P2ry13 (pp) C1qb", "shared_name" : "P2ry13 (pp) C1qb", "SUID" : 641511, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641487", "source" : "588262", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "P2ry13 (pp) Fcer1g", "weight" : 0.408987805015, "name" : "P2ry13 (pp) Fcer1g", "shared_name" : "P2ry13 (pp) Fcer1g", "SUID" : 641487, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641467", "source" : "588262", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "P2ry13 (pp) Casp1", "weight" : 0.568404111786, "name" : "P2ry13 (pp) Casp1", "shared_name" : "P2ry13 (pp) Casp1", "SUID" : 641467, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641482", "source" : "588262", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "P2ry13 (pp) 5430435G22Rik", "weight" : 0.413312457611, "name" : "P2ry13 (pp) 5430435G22Rik", "shared_name" : "P2ry13 (pp) 5430435G22Rik", "SUID" : 641482, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641463", "source" : "588262", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "P2ry13 (pp) Coro1a", "weight" : 0.414274529714, "name" : "P2ry13 (pp) Coro1a", "shared_name" : "P2ry13 (pp) Coro1a", "SUID" : 641463, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641480", "source" : "588262", "target" : "588740", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "P2ry13 (pp) Plekha2", "weight" : 0.424671682334, "name" : "P2ry13 (pp) Plekha2", "shared_name" : "P2ry13 (pp) Plekha2", "SUID" : 641480, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641510", "source" : "588262", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "P2ry13 (pp) Ly86", "weight" : 0.423072416275, "name" : "P2ry13 (pp) Ly86", "shared_name" : "P2ry13 (pp) Ly86", "SUID" : 641510, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641479", "source" : "588262", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "P2ry13 (pp) Vsig4", "weight" : 0.601372274172, "name" : "P2ry13 (pp) Vsig4", "shared_name" : "P2ry13 (pp) Vsig4", "SUID" : 641479, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641461", "source" : "588262", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "P2ry13 (pp) Cd86", "weight" : 0.549514362057, "name" : "P2ry13 (pp) Cd86", "shared_name" : "P2ry13 (pp) Cd86", "SUID" : 641461, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641464", "source" : "588262", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "P2ry13 (pp) Slc11a1", "weight" : 0.548243037256, "name" : "P2ry13 (pp) Slc11a1", "shared_name" : "P2ry13 (pp) Slc11a1", "SUID" : 641464, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669123", "source" : "588675", "target" : "589113", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "D12Ertd553e (pp) Ms4a7", "weight" : 0.413586492362, "name" : "D12Ertd553e (pp) Ms4a7", "shared_name" : "D12Ertd553e (pp) Ms4a7", "SUID" : 669123, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669100", "source" : "588675", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "D12Ertd553e (pp) Slc15a3", "weight" : 0.470995262302, "name" : "D12Ertd553e (pp) Slc15a3", "shared_name" : "D12Ertd553e (pp) Slc15a3", "SUID" : 669100, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669091", "source" : "588675", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "D12Ertd553e (pp) Serpina3g", "weight" : 0.528009199808, "name" : "D12Ertd553e (pp) Serpina3g", "shared_name" : "D12Ertd553e (pp) Serpina3g", "SUID" : 669091, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669092", "source" : "588675", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "D12Ertd553e (pp) Tlr2", "weight" : 0.554834224263, "name" : "D12Ertd553e (pp) Tlr2", "shared_name" : "D12Ertd553e (pp) Tlr2", "SUID" : 669092, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669094", "source" : "588675", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "D12Ertd553e (pp) Tpm4", "weight" : 0.461408893358, "name" : "D12Ertd553e (pp) Tpm4", "shared_name" : "D12Ertd553e (pp) Tpm4", "SUID" : 669094, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669149", "source" : "588675", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "D12Ertd553e (pp) Ear4", "weight" : 0.423940351351, "name" : "D12Ertd553e (pp) Ear4", "shared_name" : "D12Ertd553e (pp) Ear4", "SUID" : 669149, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669117", "source" : "588675", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "D12Ertd553e (pp) Csrp1", "weight" : 0.478791686958, "name" : "D12Ertd553e (pp) Csrp1", "shared_name" : "D12Ertd553e (pp) Csrp1", "SUID" : 669117, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669103", "source" : "588675", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "D12Ertd553e (pp) Obrgrp", "weight" : 0.448275064465, "name" : "D12Ertd553e (pp) Obrgrp", "shared_name" : "D12Ertd553e (pp) Obrgrp", "SUID" : 669103, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669093", "source" : "588675", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "D12Ertd553e (pp) Axl", "weight" : 0.408089200624, "name" : "D12Ertd553e (pp) Axl", "shared_name" : "D12Ertd553e (pp) Axl", "SUID" : 669093, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669133", "source" : "588675", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "D12Ertd553e (pp) Serpinb6a", "weight" : 0.403045835819, "name" : "D12Ertd553e (pp) Serpinb6a", "shared_name" : "D12Ertd553e (pp) Serpinb6a", "SUID" : 669133, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669142", "source" : "588675", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "D12Ertd553e (pp) Abi3", "weight" : 0.430084248961, "name" : "D12Ertd553e (pp) Abi3", "shared_name" : "D12Ertd553e (pp) Abi3", "SUID" : 669142, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669090", "source" : "588675", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "D12Ertd553e (pp) Cd52", "weight" : 0.405297838677, "name" : "D12Ertd553e (pp) Cd52", "shared_name" : "D12Ertd553e (pp) Cd52", "SUID" : 669090, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669113", "source" : "588675", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "D12Ertd553e (pp) Cytip", "weight" : 0.412603881209, "name" : "D12Ertd553e (pp) Cytip", "shared_name" : "D12Ertd553e (pp) Cytip", "SUID" : 669113, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669107", "source" : "588675", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "D12Ertd553e (pp) Plac8", "weight" : 0.450585548445, "name" : "D12Ertd553e (pp) Plac8", "shared_name" : "D12Ertd553e (pp) Plac8", "SUID" : 669107, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669131", "source" : "588675", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "D12Ertd553e (pp) Rasgrp1", "weight" : 0.505468920255, "name" : "D12Ertd553e (pp) Rasgrp1", "shared_name" : "D12Ertd553e (pp) Rasgrp1", "SUID" : 669131, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669096", "source" : "588675", "target" : "588740", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "D12Ertd553e (pp) Plekha2", "weight" : 0.489169714587, "name" : "D12Ertd553e (pp) Plekha2", "shared_name" : "D12Ertd553e (pp) Plekha2", "SUID" : 669096, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669120", "source" : "588675", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "D12Ertd553e (pp) Cfp", "weight" : 0.503070282526, "name" : "D12Ertd553e (pp) Cfp", "shared_name" : "D12Ertd553e (pp) Cfp", "SUID" : 669120, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669152", "source" : "588675", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "D12Ertd553e (pp) C1qb", "weight" : 0.418064701625, "name" : "D12Ertd553e (pp) C1qb", "shared_name" : "D12Ertd553e (pp) C1qb", "SUID" : 669152, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669109", "source" : "588675", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "D12Ertd553e (pp) Lgals3", "weight" : 0.461291047636, "name" : "D12Ertd553e (pp) Lgals3", "shared_name" : "D12Ertd553e (pp) Lgals3", "SUID" : 669109, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669144", "source" : "588675", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "D12Ertd553e (pp) Fcgr4", "weight" : 0.457782024774, "name" : "D12Ertd553e (pp) Fcgr4", "shared_name" : "D12Ertd553e (pp) Fcgr4", "SUID" : 669144, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "669102", "source" : "588675", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "D12Ertd553e (pp) Tmem86a", "weight" : 0.403036737963, "name" : "D12Ertd553e (pp) Tmem86a", "shared_name" : "D12Ertd553e (pp) Tmem86a", "SUID" : 669102, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664285", "source" : "588592", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Serpina3g", "weight" : 0.566418638587, "name" : "Coro1a (pp) Serpina3g", "shared_name" : "Coro1a (pp) Serpina3g", "SUID" : 664285, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664305", "source" : "588592", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Fcer1g", "weight" : 0.734688104202, "name" : "Coro1a (pp) Fcer1g", "shared_name" : "Coro1a (pp) Fcer1g", "SUID" : 664305, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664267", "source" : "588592", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Slc11a1", "weight" : 0.703942488357, "name" : "Coro1a (pp) Slc11a1", "shared_name" : "Coro1a (pp) Slc11a1", "SUID" : 664267, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664350", "source" : "588592", "target" : "589256", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Timp1", "weight" : 0.422396318329, "name" : "Coro1a (pp) Timp1", "shared_name" : "Coro1a (pp) Timp1", "SUID" : 664350, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664359", "source" : "588592", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Ear4", "weight" : 0.579280653543, "name" : "Coro1a (pp) Ear4", "shared_name" : "Coro1a (pp) Ear4", "SUID" : 664359, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664287", "source" : "588592", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Axl", "weight" : 0.649549112172, "name" : "Coro1a (pp) Axl", "shared_name" : "Coro1a (pp) Axl", "SUID" : 664287, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664296", "source" : "588592", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Ccl6", "weight" : 0.473950212021, "name" : "Coro1a (pp) Ccl6", "shared_name" : "Coro1a (pp) Ccl6", "SUID" : 664296, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664369", "source" : "588592", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Il10ra", "weight" : 0.412754857369, "name" : "Coro1a (pp) Il10ra", "shared_name" : "Coro1a (pp) Il10ra", "SUID" : 664369, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664353", "source" : "588592", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Ear12", "weight" : 0.446188051015, "name" : "Coro1a (pp) Ear12", "shared_name" : "Coro1a (pp) Ear12", "SUID" : 664353, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664269", "source" : "588592", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Gngt2", "weight" : 0.57932800406, "name" : "Coro1a (pp) Gngt2", "shared_name" : "Coro1a (pp) Gngt2", "SUID" : 664269, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664357", "source" : "588592", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Clec7a", "weight" : 0.542837140074, "name" : "Coro1a (pp) Clec7a", "shared_name" : "Coro1a (pp) Clec7a", "SUID" : 664357, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664330", "source" : "588592", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Pld4", "weight" : 0.48079086085, "name" : "Coro1a (pp) Pld4", "shared_name" : "Coro1a (pp) Pld4", "SUID" : 664330, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664362", "source" : "588592", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) C1qb", "weight" : 0.762694421103, "name" : "Coro1a (pp) C1qb", "shared_name" : "Coro1a (pp) C1qb", "SUID" : 664362, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664303", "source" : "588592", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Plac8", "weight" : 0.588965307846, "name" : "Coro1a (pp) Plac8", "shared_name" : "Coro1a (pp) Plac8", "SUID" : 664303, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664322", "source" : "588592", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Csrp1", "weight" : 0.59274757191, "name" : "Coro1a (pp) Csrp1", "shared_name" : "Coro1a (pp) Csrp1", "SUID" : 664322, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664365", "source" : "588592", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Lrrc33", "weight" : 0.403501594749, "name" : "Coro1a (pp) Lrrc33", "shared_name" : "Coro1a (pp) Lrrc33", "SUID" : 664365, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664334", "source" : "588592", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Vcam1", "weight" : 0.57399470585, "name" : "Coro1a (pp) Vcam1", "shared_name" : "Coro1a (pp) Vcam1", "SUID" : 664334, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664283", "source" : "588592", "target" : "588707", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Cxcl9", "weight" : 0.446065069254, "name" : "Coro1a (pp) Cxcl9", "shared_name" : "Coro1a (pp) Cxcl9", "SUID" : 664283, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664312", "source" : "588592", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Hk3", "weight" : 0.622990958531, "name" : "Coro1a (pp) Hk3", "shared_name" : "Coro1a (pp) Hk3", "SUID" : 664312, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664349", "source" : "588592", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Trem2", "weight" : 0.420844102804, "name" : "Coro1a (pp) Trem2", "shared_name" : "Coro1a (pp) Trem2", "SUID" : 664349, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664276", "source" : "588592", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Gpnmb", "weight" : 0.54788591258, "name" : "Coro1a (pp) Gpnmb", "shared_name" : "Coro1a (pp) Gpnmb", "SUID" : 664276, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664302", "source" : "588592", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Cotl1", "weight" : 0.582884995605, "name" : "Coro1a (pp) Cotl1", "shared_name" : "Coro1a (pp) Cotl1", "SUID" : 664302, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664289", "source" : "588592", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Tpm4", "weight" : 0.577084042817, "name" : "Coro1a (pp) Tpm4", "shared_name" : "Coro1a (pp) Tpm4", "SUID" : 664289, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664328", "source" : "588592", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Cfp", "weight" : 0.575029603189, "name" : "Coro1a (pp) Cfp", "shared_name" : "Coro1a (pp) Cfp", "SUID" : 664328, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664291", "source" : "588592", "target" : "588740", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Plekha2", "weight" : 0.546030631893, "name" : "Coro1a (pp) Plekha2", "shared_name" : "Coro1a (pp) Plekha2", "SUID" : 664291, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664363", "source" : "588592", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Fblim1", "weight" : 0.406507762967, "name" : "Coro1a (pp) Fblim1", "shared_name" : "Coro1a (pp) Fblim1", "SUID" : 664363, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664278", "source" : "588592", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) 5033414D02Rik", "weight" : 0.5231380171, "name" : "Coro1a (pp) 5033414D02Rik", "shared_name" : "Coro1a (pp) 5033414D02Rik", "SUID" : 664278, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664297", "source" : "588592", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Tmem86a", "weight" : 0.474983679945, "name" : "Coro1a (pp) Tmem86a", "shared_name" : "Coro1a (pp) Tmem86a", "SUID" : 664297, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664281", "source" : "588592", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Cd52", "weight" : 0.80070165712, "name" : "Coro1a (pp) Cd52", "shared_name" : "Coro1a (pp) Cd52", "SUID" : 664281, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664298", "source" : "588592", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Obrgrp", "weight" : 0.550414740569, "name" : "Coro1a (pp) Obrgrp", "shared_name" : "Coro1a (pp) Obrgrp", "SUID" : 664298, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664352", "source" : "588592", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Abi3", "weight" : 0.413344802395, "name" : "Coro1a (pp) Abi3", "shared_name" : "Coro1a (pp) Abi3", "SUID" : 664352, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664336", "source" : "588592", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Tmsb4x", "weight" : 0.678846973739, "name" : "Coro1a (pp) Tmsb4x", "shared_name" : "Coro1a (pp) Tmsb4x", "SUID" : 664336, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664360", "source" : "588592", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Prkcd", "weight" : 0.419582964353, "name" : "Coro1a (pp) Prkcd", "shared_name" : "Coro1a (pp) Prkcd", "SUID" : 664360, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664311", "source" : "588592", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) C1qc", "weight" : 0.652899913754, "name" : "Coro1a (pp) C1qc", "shared_name" : "Coro1a (pp) C1qc", "SUID" : 664311, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664361", "source" : "588592", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Ly86", "weight" : 0.623874340967, "name" : "Coro1a (pp) Ly86", "shared_name" : "Coro1a (pp) Ly86", "SUID" : 664361, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664354", "source" : "588592", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Fcgr4", "weight" : 0.617719618279, "name" : "Coro1a (pp) Fcgr4", "shared_name" : "Coro1a (pp) Fcgr4", "SUID" : 664354, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664308", "source" : "588592", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Lgals3", "weight" : 0.597799345508, "name" : "Coro1a (pp) Lgals3", "shared_name" : "Coro1a (pp) Lgals3", "SUID" : 664308, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664294", "source" : "588592", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Slc15a3", "weight" : 0.679443436848, "name" : "Coro1a (pp) Slc15a3", "shared_name" : "Coro1a (pp) Slc15a3", "SUID" : 664294, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664280", "source" : "588592", "target" : "588678", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Fxyd5", "weight" : 0.432005166818, "name" : "Coro1a (pp) Fxyd5", "shared_name" : "Coro1a (pp) Fxyd5", "SUID" : 664280, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664286", "source" : "588592", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Tlr2", "weight" : 0.629797803052, "name" : "Coro1a (pp) Tlr2", "shared_name" : "Coro1a (pp) Tlr2", "SUID" : 664286, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664344", "source" : "588592", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Serpinb6a", "weight" : 0.482491061743, "name" : "Coro1a (pp) Serpinb6a", "shared_name" : "Coro1a (pp) Serpinb6a", "SUID" : 664344, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664346", "source" : "588592", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) H2-DMa", "weight" : 0.655008467984, "name" : "Coro1a (pp) H2-DMa", "shared_name" : "Coro1a (pp) H2-DMa", "SUID" : 664346, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664341", "source" : "588592", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Rasgrp1", "weight" : 0.463057783731, "name" : "Coro1a (pp) Rasgrp1", "shared_name" : "Coro1a (pp) Rasgrp1", "SUID" : 664341, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664367", "source" : "588592", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Lmo2", "weight" : 0.528211362092, "name" : "Coro1a (pp) Lmo2", "shared_name" : "Coro1a (pp) Lmo2", "SUID" : 664367, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664306", "source" : "588592", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Fcgr3", "weight" : 0.437673488095, "name" : "Coro1a (pp) Fcgr3", "shared_name" : "Coro1a (pp) Fcgr3", "SUID" : 664306, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664364", "source" : "588592", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Tspan33", "weight" : 0.408534326649, "name" : "Coro1a (pp) Tspan33", "shared_name" : "Coro1a (pp) Tspan33", "SUID" : 664364, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664279", "source" : "588592", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) D12Ertd553e", "weight" : 0.404968196806, "name" : "Coro1a (pp) D12Ertd553e", "shared_name" : "Coro1a (pp) D12Ertd553e", "SUID" : 664279, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664320", "source" : "588592", "target" : "588999", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Kctd12", "weight" : 0.425938850109, "name" : "Coro1a (pp) Kctd12", "shared_name" : "Coro1a (pp) Kctd12", "SUID" : 664320, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664290", "source" : "588592", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Vsig4", "weight" : 0.68055203427, "name" : "Coro1a (pp) Vsig4", "shared_name" : "Coro1a (pp) Vsig4", "SUID" : 664290, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664315", "source" : "588592", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) H2-DMb1", "weight" : 0.650110019086, "name" : "Coro1a (pp) H2-DMb1", "shared_name" : "Coro1a (pp) H2-DMb1", "SUID" : 664315, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664272", "source" : "588592", "target" : "588620", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Olfml3", "weight" : 0.440676421893, "name" : "Coro1a (pp) Olfml3", "shared_name" : "Coro1a (pp) Olfml3", "SUID" : 664272, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664266", "source" : "588592", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Tmsb10", "weight" : 0.549470383338, "name" : "Coro1a (pp) Tmsb10", "shared_name" : "Coro1a (pp) Tmsb10", "SUID" : 664266, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664326", "source" : "588592", "target" : "589076", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) H2-M3", "weight" : 0.48247338329, "name" : "Coro1a (pp) H2-M3", "shared_name" : "Coro1a (pp) H2-M3", "SUID" : 664326, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664347", "source" : "588592", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Ear10", "weight" : 0.475879057387, "name" : "Coro1a (pp) Ear10", "shared_name" : "Coro1a (pp) Ear10", "SUID" : 664347, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664313", "source" : "588592", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Cytip", "weight" : 0.680045720968, "name" : "Coro1a (pp) Cytip", "shared_name" : "Coro1a (pp) Cytip", "SUID" : 664313, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "664273", "source" : "588592", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Coro1a (pp) Casp1", "weight" : 0.577425979156, "name" : "Coro1a (pp) Casp1", "shared_name" : "Coro1a (pp) Casp1", "SUID" : 664273, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611865", "source" : "587919", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mefv (pp) Axl", "weight" : 0.414773936, "name" : "Mefv (pp) Axl", "shared_name" : "Mefv (pp) Axl", "SUID" : 611865, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611937", "source" : "587919", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mefv (pp) Ear4", "weight" : 0.499830555647, "name" : "Mefv (pp) Ear4", "shared_name" : "Mefv (pp) Ear4", "SUID" : 611937, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611932", "source" : "587919", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mefv (pp) Ear12", "weight" : 0.470944933448, "name" : "Mefv (pp) Ear12", "shared_name" : "Mefv (pp) Ear12", "SUID" : 611932, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611918", "source" : "587919", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mefv (pp) Rasgrp1", "weight" : 0.429893693246, "name" : "Mefv (pp) Rasgrp1", "shared_name" : "Mefv (pp) Rasgrp1", "SUID" : 611918, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611884", "source" : "587919", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mefv (pp) Fcer1g", "weight" : 0.425932166023, "name" : "Mefv (pp) Fcer1g", "shared_name" : "Mefv (pp) Fcer1g", "SUID" : 611884, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611819", "source" : "587919", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mefv (pp) Cyp7b1", "weight" : 0.485424542655, "name" : "Mefv (pp) Cyp7b1", "shared_name" : "Mefv (pp) Cyp7b1", "SUID" : 611819, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611889", "source" : "587919", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mefv (pp) Lgals3", "weight" : 0.481189209776, "name" : "Mefv (pp) Lgals3", "shared_name" : "Mefv (pp) Lgals3", "SUID" : 611889, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611844", "source" : "587919", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mefv (pp) Cd86", "weight" : 0.512894482833, "name" : "Mefv (pp) Cd86", "shared_name" : "Mefv (pp) Cd86", "SUID" : 611844, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611791", "source" : "587919", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mefv (pp) Pip4k2a", "weight" : 0.486830859671, "name" : "Mefv (pp) Pip4k2a", "shared_name" : "Mefv (pp) Pip4k2a", "SUID" : 611791, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611931", "source" : "587919", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mefv (pp) Abi3", "weight" : 0.453274145184, "name" : "Mefv (pp) Abi3", "shared_name" : "Mefv (pp) Abi3", "SUID" : 611931, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611923", "source" : "587919", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mefv (pp) Serpinb6a", "weight" : 0.427498991742, "name" : "Mefv (pp) Serpinb6a", "shared_name" : "Mefv (pp) Serpinb6a", "SUID" : 611923, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611864", "source" : "587919", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mefv (pp) Tlr2", "weight" : 0.458902561276, "name" : "Mefv (pp) Tlr2", "shared_name" : "Mefv (pp) Tlr2", "SUID" : 611864, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611809", "source" : "587919", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mefv (pp) Cxcl16", "weight" : 0.430438827251, "name" : "Mefv (pp) Cxcl16", "shared_name" : "Mefv (pp) Cxcl16", "SUID" : 611809, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611908", "source" : "587919", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mefv (pp) Cfp", "weight" : 0.485082781161, "name" : "Mefv (pp) Cfp", "shared_name" : "Mefv (pp) Cfp", "SUID" : 611908, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611933", "source" : "587919", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mefv (pp) Fcgr4", "weight" : 0.402222217387, "name" : "Mefv (pp) Fcgr4", "shared_name" : "Mefv (pp) Fcgr4", "SUID" : 611933, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611771", "source" : "587919", "target" : "587989", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mefv (pp) Tyrobp", "weight" : 0.470986686966, "name" : "Mefv (pp) Tyrobp", "shared_name" : "Mefv (pp) Tyrobp", "SUID" : 611771, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611859", "source" : "587919", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mefv (pp) 5033414D02Rik", "weight" : 0.446497304142, "name" : "Mefv (pp) 5033414D02Rik", "shared_name" : "Mefv (pp) 5033414D02Rik", "SUID" : 611859, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611874", "source" : "587919", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mefv (pp) Tmem86a", "weight" : 0.424909775559, "name" : "Mefv (pp) Tmem86a", "shared_name" : "Mefv (pp) Tmem86a", "SUID" : 611874, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611799", "source" : "587919", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mefv (pp) Laptm5", "weight" : 0.475993738786, "name" : "Mefv (pp) Laptm5", "shared_name" : "Mefv (pp) Laptm5", "SUID" : 611799, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611830", "source" : "587919", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mefv (pp) Clec4n", "weight" : 0.431849345828, "name" : "Mefv (pp) Clec4n", "shared_name" : "Mefv (pp) Clec4n", "SUID" : 611830, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611925", "source" : "587919", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mefv (pp) Ear10", "weight" : 0.441284885156, "name" : "Mefv (pp) Ear10", "shared_name" : "Mefv (pp) Ear10", "SUID" : 611925, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "611788", "source" : "587919", "target" : "588147", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Mefv (pp) Ppic", "weight" : 0.404610760972, "name" : "Mefv (pp) Ppic", "shared_name" : "Mefv (pp) Ppic", "SUID" : 611788, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "623709", "source" : "588058", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cttnbp2nl (pp) Coro1a", "weight" : 0.401206262178, "name" : "Cttnbp2nl (pp) Coro1a", "shared_name" : "Cttnbp2nl (pp) Coro1a", "SUID" : 623709, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652454", "source" : "588394", "target" : "589030", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Soat1", "weight" : 0.444722267957, "name" : "Lyzs (pp) Soat1", "shared_name" : "Lyzs (pp) Soat1", "SUID" : 652454, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652350", "source" : "588394", "target" : "588432", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Kcnk6", "weight" : 0.501115382065, "name" : "Lyzs (pp) Kcnk6", "shared_name" : "Lyzs (pp) Kcnk6", "SUID" : 652350, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652442", "source" : "588394", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Cytip", "weight" : 0.456178487494, "name" : "Lyzs (pp) Cytip", "shared_name" : "Lyzs (pp) Cytip", "SUID" : 652442, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652384", "source" : "588394", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Coro1a", "weight" : 0.485823156899, "name" : "Lyzs (pp) Coro1a", "shared_name" : "Lyzs (pp) Coro1a", "SUID" : 652384, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652406", "source" : "588394", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Axl", "weight" : 0.441659780408, "name" : "Lyzs (pp) Axl", "shared_name" : "Lyzs (pp) Axl", "SUID" : 652406, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652401", "source" : "588394", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Cd52", "weight" : 0.543871239847, "name" : "Lyzs (pp) Cd52", "shared_name" : "Lyzs (pp) Cd52", "SUID" : 652401, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652474", "source" : "588394", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Rasgrp1", "weight" : 0.436431549721, "name" : "Lyzs (pp) Rasgrp1", "shared_name" : "Lyzs (pp) Rasgrp1", "SUID" : 652474, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652439", "source" : "588394", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) C1qc", "weight" : 0.476013794634, "name" : "Lyzs (pp) C1qc", "shared_name" : "Lyzs (pp) C1qc", "SUID" : 652439, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652481", "source" : "588394", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Serpinb6a", "weight" : 0.520081729734, "name" : "Lyzs (pp) Serpinb6a", "shared_name" : "Lyzs (pp) Serpinb6a", "SUID" : 652481, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652483", "source" : "588394", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) H2-DMa", "weight" : 0.407370752135, "name" : "Lyzs (pp) H2-DMa", "shared_name" : "Lyzs (pp) H2-DMa", "SUID" : 652483, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652405", "source" : "588394", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Tlr2", "weight" : 0.489058761051, "name" : "Lyzs (pp) Tlr2", "shared_name" : "Lyzs (pp) Tlr2", "SUID" : 652405, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652490", "source" : "588394", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Ear12", "weight" : 0.550132881709, "name" : "Lyzs (pp) Ear12", "shared_name" : "Lyzs (pp) Ear12", "SUID" : 652490, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652394", "source" : "588394", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Gpnmb", "weight" : 0.485248886043, "name" : "Lyzs (pp) Gpnmb", "shared_name" : "Lyzs (pp) Gpnmb", "SUID" : 652394, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652414", "source" : "588394", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Ccl6", "weight" : 0.448920171139, "name" : "Lyzs (pp) Ccl6", "shared_name" : "Lyzs (pp) Ccl6", "SUID" : 652414, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652506", "source" : "588394", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Fblim1", "weight" : 0.415144627896, "name" : "Lyzs (pp) Fblim1", "shared_name" : "Lyzs (pp) Fblim1", "SUID" : 652506, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652466", "source" : "588394", "target" : "589113", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Ms4a7", "weight" : 0.422374772258, "name" : "Lyzs (pp) Ms4a7", "shared_name" : "Lyzs (pp) Ms4a7", "SUID" : 652466, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652495", "source" : "588394", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Clec7a", "weight" : 0.452494591431, "name" : "Lyzs (pp) Clec7a", "shared_name" : "Lyzs (pp) Clec7a", "SUID" : 652495, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652408", "source" : "588394", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Vsig4", "weight" : 0.511825597958, "name" : "Lyzs (pp) Vsig4", "shared_name" : "Lyzs (pp) Vsig4", "SUID" : 652408, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652453", "source" : "588394", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Csrp1", "weight" : 0.537780011085, "name" : "Lyzs (pp) Csrp1", "shared_name" : "Lyzs (pp) Csrp1", "SUID" : 652453, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652459", "source" : "588394", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Btk", "weight" : 0.405165271274, "name" : "Lyzs (pp) Btk", "shared_name" : "Lyzs (pp) Btk", "SUID" : 652459, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652441", "source" : "588394", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Hk3", "weight" : 0.541573074562, "name" : "Lyzs (pp) Hk3", "shared_name" : "Lyzs (pp) Hk3", "SUID" : 652441, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652422", "source" : "588394", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Cotl1", "weight" : 0.400847960955, "name" : "Lyzs (pp) Cotl1", "shared_name" : "Lyzs (pp) Cotl1", "SUID" : 652422, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652398", "source" : "588394", "target" : "588664", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.549209958248, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Lyzs (pp) 5033414D02Rik", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.549209958248, "fusion" : "NA", "name" : "Lyzs (pp) 5033414D02Rik", "neighborhood" : "NA", "sourceEdge" : 101954.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Lyzs (pp) 5033414D02Rik", "combinedscore" : "NA", "SUID" : 652398, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 8.76634E-7, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "652386", "source" : "588394", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Slc11a1", "weight" : 0.61709021155, "name" : "Lyzs (pp) Slc11a1", "shared_name" : "Lyzs (pp) Slc11a1", "SUID" : 652386, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652505", "source" : "588394", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) C1qb", "weight" : 0.542995419806, "name" : "Lyzs (pp) C1qb", "shared_name" : "Lyzs (pp) C1qb", "SUID" : 652505, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652464", "source" : "588394", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Snx10", "weight" : 0.485027290291, "name" : "Lyzs (pp) Snx10", "shared_name" : "Lyzs (pp) Snx10", "SUID" : 652464, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652494", "source" : "588394", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Cd53", "weight" : 0.713486897444, "name" : "Lyzs (pp) Cd53", "shared_name" : "Lyzs (pp) Cd53", "SUID" : 652494, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652378", "source" : "588394", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Cd86", "weight" : 0.482413294529, "name" : "Lyzs (pp) Cd86", "shared_name" : "Lyzs (pp) Cd86", "SUID" : 652378, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652412", "source" : "588394", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Slc15a3", "weight" : 0.593332629002, "name" : "Lyzs (pp) Slc15a3", "shared_name" : "Lyzs (pp) Slc15a3", "SUID" : 652412, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652425", "source" : "588394", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Fcer1g", "weight" : 0.571554574767, "name" : "Lyzs (pp) Fcer1g", "shared_name" : "Lyzs (pp) Fcer1g", "SUID" : 652425, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652409", "source" : "588394", "target" : "588742", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Ifitm6", "weight" : 0.63733554351, "name" : "Lyzs (pp) Ifitm6", "shared_name" : "Lyzs (pp) Ifitm6", "SUID" : 652409, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652432", "source" : "588394", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Lgals3", "weight" : 0.620732201487, "name" : "Lyzs (pp) Lgals3", "shared_name" : "Lyzs (pp) Lgals3", "SUID" : 652432, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652363", "source" : "588394", "target" : "588492", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Ncf4", "weight" : 0.407902374551, "name" : "Lyzs (pp) Ncf4", "shared_name" : "Lyzs (pp) Ncf4", "SUID" : 652363, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652504", "source" : "588394", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Ly86", "weight" : 0.671236047004, "name" : "Lyzs (pp) Ly86", "shared_name" : "Lyzs (pp) Ly86", "SUID" : 652504, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652485", "source" : "588394", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Ear10", "weight" : 0.546324462118, "name" : "Lyzs (pp) Ear10", "shared_name" : "Lyzs (pp) Ear10", "SUID" : 652485, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652388", "source" : "588394", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Gngt2", "weight" : 0.619092078265, "name" : "Lyzs (pp) Gngt2", "shared_name" : "Lyzs (pp) Gngt2", "SUID" : 652388, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652349", "source" : "588394", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Clec4n", "weight" : 0.590281208968, "name" : "Lyzs (pp) Clec4n", "shared_name" : "Lyzs (pp) Clec4n", "SUID" : 652349, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652423", "source" : "588394", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Plac8", "weight" : 0.618147073853, "name" : "Lyzs (pp) Plac8", "shared_name" : "Lyzs (pp) Plac8", "SUID" : 652423, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652460", "source" : "588394", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Cfp", "weight" : 0.64815455762, "name" : "Lyzs (pp) Cfp", "shared_name" : "Lyzs (pp) Cfp", "SUID" : 652460, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652348", "source" : "588394", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Cd14", "weight" : 0.534579471576, "name" : "Lyzs (pp) Cd14", "shared_name" : "Lyzs (pp) Cd14", "SUID" : 652348, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652404", "source" : "588394", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Serpina3g", "weight" : 0.405140595573, "name" : "Lyzs (pp) Serpina3g", "shared_name" : "Lyzs (pp) Serpina3g", "SUID" : 652404, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652391", "source" : "588394", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Casp1", "weight" : 0.412182649423, "name" : "Lyzs (pp) Casp1", "shared_name" : "Lyzs (pp) Casp1", "SUID" : 652391, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652499", "source" : "588394", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.549004059875, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Lyzs (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.549004059875, "fusion" : "NA", "name" : "Lyzs (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 102009.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Lyzs (pp) Ear4", "combinedscore" : "NA", "SUID" : 652499, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 2.384628E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "652362", "source" : "588394", "target" : "588490", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Arhgap30", "weight" : 0.475904064415, "name" : "Lyzs (pp) Arhgap30", "shared_name" : "Lyzs (pp) Arhgap30", "SUID" : 652362, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652470", "source" : "588394", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Tmsb4x", "weight" : 0.573817638967, "name" : "Lyzs (pp) Tmsb4x", "shared_name" : "Lyzs (pp) Tmsb4x", "SUID" : 652470, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652492", "source" : "588394", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Fcgr4", "weight" : 0.51981840799, "name" : "Lyzs (pp) Fcgr4", "shared_name" : "Lyzs (pp) Fcgr4", "SUID" : 652492, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "652467", "source" : "588394", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Lyzs (pp) Vcam1", "weight" : 0.432041676765, "name" : "Lyzs (pp) Vcam1", "shared_name" : "Lyzs (pp) Vcam1", "SUID" : 652467, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646874", "source" : "588328", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap9 (pp) Cyp7b1", "weight" : 0.483041910451, "name" : "Arhgap9 (pp) Cyp7b1", "shared_name" : "Arhgap9 (pp) Cyp7b1", "SUID" : 646874, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646906", "source" : "588328", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap9 (pp) Tmsb10", "weight" : 0.518309754683, "name" : "Arhgap9 (pp) Tmsb10", "shared_name" : "Arhgap9 (pp) Tmsb10", "SUID" : 646906, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647003", "source" : "588328", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap9 (pp) Ear4", "weight" : 0.482352771571, "name" : "Arhgap9 (pp) Ear4", "shared_name" : "Arhgap9 (pp) Ear4", "SUID" : 647003, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647009", "source" : "588328", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap9 (pp) Fblim1", "weight" : 0.440783020164, "name" : "Arhgap9 (pp) Fblim1", "shared_name" : "Arhgap9 (pp) Fblim1", "SUID" : 647009, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646976", "source" : "588328", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap9 (pp) Tmsb4x", "weight" : 0.406372723174, "name" : "Arhgap9 (pp) Tmsb4x", "shared_name" : "Arhgap9 (pp) Tmsb4x", "SUID" : 646976, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646890", "source" : "588328", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap9 (pp) Plscr1", "weight" : 0.425984018541, "name" : "Arhgap9 (pp) Plscr1", "shared_name" : "Arhgap9 (pp) Plscr1", "SUID" : 646890, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646932", "source" : "588328", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap9 (pp) Slc15a3", "weight" : 0.487230350395, "name" : "Arhgap9 (pp) Slc15a3", "shared_name" : "Arhgap9 (pp) Slc15a3", "SUID" : 646932, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646996", "source" : "588328", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap9 (pp) Ear12", "weight" : 0.500387868434, "name" : "Arhgap9 (pp) Ear12", "shared_name" : "Arhgap9 (pp) Ear12", "SUID" : 646996, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646875", "source" : "588328", "target" : "588365", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap9 (pp) Tnfaip8l2", "weight" : 0.452052825251, "name" : "Arhgap9 (pp) Tnfaip8l2", "shared_name" : "Arhgap9 (pp) Tnfaip8l2", "SUID" : 646875, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646963", "source" : "588328", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap9 (pp) Csrp1", "weight" : 0.457810264341, "name" : "Arhgap9 (pp) Csrp1", "shared_name" : "Arhgap9 (pp) Csrp1", "SUID" : 646963, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646938", "source" : "588328", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap9 (pp) Cotl1", "weight" : 0.412592270782, "name" : "Arhgap9 (pp) Cotl1", "shared_name" : "Arhgap9 (pp) Cotl1", "SUID" : 646938, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646885", "source" : "588328", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap9 (pp) Clec4n", "weight" : 0.436524489639, "name" : "Arhgap9 (pp) Clec4n", "shared_name" : "Arhgap9 (pp) Clec4n", "SUID" : 646885, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646942", "source" : "588328", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap9 (pp) Fcer1g", "weight" : 0.441250563675, "name" : "Arhgap9 (pp) Fcer1g", "shared_name" : "Arhgap9 (pp) Fcer1g", "SUID" : 646942, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646919", "source" : "588328", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap9 (pp) Cd52", "weight" : 0.410641059636, "name" : "Arhgap9 (pp) Cd52", "shared_name" : "Arhgap9 (pp) Cd52", "SUID" : 646919, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647007", "source" : "588328", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap9 (pp) Ly86", "weight" : 0.464444350095, "name" : "Arhgap9 (pp) Ly86", "shared_name" : "Arhgap9 (pp) Ly86", "SUID" : 647007, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646887", "source" : "588328", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap9 (pp) Cd63", "weight" : 0.476336419807, "name" : "Arhgap9 (pp) Cd63", "shared_name" : "Arhgap9 (pp) Cd63", "SUID" : 646887, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646986", "source" : "588328", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap9 (pp) Serpinb6a", "weight" : 0.470275824348, "name" : "Arhgap9 (pp) Serpinb6a", "shared_name" : "Arhgap9 (pp) Serpinb6a", "SUID" : 646986, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646944", "source" : "588328", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap9 (pp) Lgals3", "weight" : 0.491096612187, "name" : "Arhgap9 (pp) Lgals3", "shared_name" : "Arhgap9 (pp) Lgals3", "SUID" : 646944, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646881", "source" : "588328", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap9 (pp) Cd14", "weight" : 0.41373632291, "name" : "Arhgap9 (pp) Cd14", "shared_name" : "Arhgap9 (pp) Cd14", "SUID" : 646881, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "646925", "source" : "588328", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arhgap9 (pp) Tpm4", "weight" : 0.404413097299, "name" : "Arhgap9 (pp) Tpm4", "shared_name" : "Arhgap9 (pp) Tpm4", "SUID" : 646925, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662484", "source" : "588552", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Vcam1", "weight" : 0.503911113052, "name" : "Cd86 (pp) Vcam1", "shared_name" : "Cd86 (pp) Vcam1", "SUID" : 662484, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662423", "source" : "588552", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Cotl1", "weight" : 0.580860060528, "name" : "Cd86 (pp) Cotl1", "shared_name" : "Cd86 (pp) Cotl1", "SUID" : 662423, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662426", "source" : "588552", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Plac8", "weight" : 0.563008748462, "name" : "Cd86 (pp) Plac8", "shared_name" : "Cd86 (pp) Plac8", "SUID" : 662426, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662446", "source" : "588552", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Cytip", "weight" : 0.550645938053, "name" : "Cd86 (pp) Cytip", "shared_name" : "Cd86 (pp) Cytip", "SUID" : 662446, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662523", "source" : "588552", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Clec7a", "weight" : 0.416128093244, "name" : "Cd86 (pp) Clec7a", "shared_name" : "Cd86 (pp) Clec7a", "SUID" : 662523, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662445", "source" : "588552", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Hk3", "weight" : 0.567259751184, "name" : "Cd86 (pp) Hk3", "shared_name" : "Cd86 (pp) Hk3", "SUID" : 662445, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662410", "source" : "588552", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) 5430435G22Rik", "weight" : 0.609613492033, "name" : "Cd86 (pp) 5430435G22Rik", "shared_name" : "Cd86 (pp) 5430435G22Rik", "SUID" : 662410, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662366", "source" : "588552", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Slc11a1", "weight" : 0.702083606748, "name" : "Cd86 (pp) Slc11a1", "shared_name" : "Cd86 (pp) Slc11a1", "SUID" : 662366, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662473", "source" : "588552", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Cfp", "weight" : 0.792696612951, "name" : "Cd86 (pp) Cfp", "shared_name" : "Cd86 (pp) Cfp", "SUID" : 662473, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662536", "source" : "588552", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Lrrc33", "weight" : 0.418600713659, "name" : "Cd86 (pp) Lrrc33", "shared_name" : "Cd86 (pp) Lrrc33", "SUID" : 662536, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662508", "source" : "588552", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Ear10", "weight" : 0.55405129518, "name" : "Cd86 (pp) Ear10", "shared_name" : "Cd86 (pp) Ear10", "SUID" : 662508, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662390", "source" : "588552", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Cd52", "weight" : 0.559194449752, "name" : "Cd86 (pp) Cd52", "shared_name" : "Cd86 (pp) Cd52", "SUID" : 662390, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662360", "source" : "588552", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Snn", "weight" : 0.532614344049, "name" : "Cd86 (pp) Snn", "shared_name" : "Cd86 (pp) Snn", "SUID" : 662360, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662380", "source" : "588552", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Gpnmb", "weight" : 0.475215881304, "name" : "Cd86 (pp) Gpnmb", "shared_name" : "Cd86 (pp) Gpnmb", "SUID" : 662380, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662462", "source" : "588552", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Csrp1", "weight" : 0.629996488302, "name" : "Cd86 (pp) Csrp1", "shared_name" : "Cd86 (pp) Csrp1", "SUID" : 662462, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662376", "source" : "588552", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Casp1", "weight" : 0.574309470904, "name" : "Cd86 (pp) Casp1", "shared_name" : "Cd86 (pp) Casp1", "SUID" : 662376, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662532", "source" : "588552", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) C1qb", "weight" : 0.665162373095, "name" : "Cd86 (pp) C1qb", "shared_name" : "Cd86 (pp) C1qb", "SUID" : 662532, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662408", "source" : "588552", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Slc15a3", "weight" : 0.735196037807, "name" : "Cd86 (pp) Slc15a3", "shared_name" : "Cd86 (pp) Slc15a3", "SUID" : 662408, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662415", "source" : "588552", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Obrgrp", "weight" : 0.520194593363, "name" : "Cd86 (pp) Obrgrp", "shared_name" : "Cd86 (pp) Obrgrp", "SUID" : 662415, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662385", "source" : "588552", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) 5033414D02Rik", "weight" : 0.607267104421, "name" : "Cd86 (pp) 5033414D02Rik", "shared_name" : "Cd86 (pp) 5033414D02Rik", "SUID" : 662385, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662396", "source" : "588552", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Tlr2", "weight" : 0.649793191294, "name" : "Cd86 (pp) Tlr2", "shared_name" : "Cd86 (pp) Tlr2", "SUID" : 662396, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662519", "source" : "588552", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Fcgr4", "weight" : 0.663900446522, "name" : "Cd86 (pp) Fcgr4", "shared_name" : "Cd86 (pp) Fcgr4", "SUID" : 662519, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662507", "source" : "588552", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) H2-DMa", "weight" : 0.402830344454, "name" : "Cd86 (pp) H2-DMa", "shared_name" : "Cd86 (pp) H2-DMa", "SUID" : 662507, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662395", "source" : "588552", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Serpina3g", "weight" : 0.519905450932, "name" : "Cd86 (pp) Serpina3g", "shared_name" : "Cd86 (pp) Serpina3g", "SUID" : 662395, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662472", "source" : "588552", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Btk", "weight" : 0.55436251632, "name" : "Cd86 (pp) Btk", "shared_name" : "Cd86 (pp) Btk", "SUID" : 662472, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662412", "source" : "588552", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Tmem86a", "weight" : 0.668468653755, "name" : "Cd86 (pp) Tmem86a", "shared_name" : "Cd86 (pp) Tmem86a", "SUID" : 662412, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662516", "source" : "588552", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Abi3", "weight" : 0.587934305497, "name" : "Cd86 (pp) Abi3", "shared_name" : "Cd86 (pp) Abi3", "SUID" : 662516, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662488", "source" : "588552", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Tmsb4x", "weight" : 0.483477087129, "name" : "Cd86 (pp) Tmsb4x", "shared_name" : "Cd86 (pp) Tmsb4x", "SUID" : 662488, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662526", "source" : "588552", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Ear4", "weight" : 0.765516263259, "name" : "Cd86 (pp) Ear4", "shared_name" : "Cd86 (pp) Ear4", "SUID" : 662526, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662535", "source" : "588552", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Tspan33", "weight" : 0.417787425824, "name" : "Cd86 (pp) Tspan33", "shared_name" : "Cd86 (pp) Tspan33", "SUID" : 662535, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662399", "source" : "588552", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Tpm4", "weight" : 0.505718241782, "name" : "Cd86 (pp) Tpm4", "shared_name" : "Cd86 (pp) Tpm4", "SUID" : 662399, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662511", "source" : "588552", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Trem2", "weight" : 0.422294750476, "name" : "Cd86 (pp) Trem2", "shared_name" : "Cd86 (pp) Trem2", "SUID" : 662511, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662517", "source" : "588552", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Ear12", "weight" : 0.478313472332, "name" : "Cd86 (pp) Ear12", "shared_name" : "Cd86 (pp) Ear12", "SUID" : 662517, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662534", "source" : "588552", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Fblim1", "weight" : 0.484304075649, "name" : "Cd86 (pp) Fblim1", "shared_name" : "Cd86 (pp) Fblim1", "SUID" : 662534, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662420", "source" : "588552", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Pla2g15", "weight" : 0.532268031776, "name" : "Cd86 (pp) Pla2g15", "shared_name" : "Cd86 (pp) Pla2g15", "SUID" : 662420, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662531", "source" : "588552", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Ly86", "weight" : 0.696423430924, "name" : "Cd86 (pp) Ly86", "shared_name" : "Cd86 (pp) Ly86", "SUID" : 662531, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662503", "source" : "588552", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Serpinb6a", "weight" : 0.696781186678, "name" : "Cd86 (pp) Serpinb6a", "shared_name" : "Cd86 (pp) Serpinb6a", "SUID" : 662503, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662397", "source" : "588552", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Axl", "weight" : 0.610617869056, "name" : "Cd86 (pp) Axl", "shared_name" : "Cd86 (pp) Axl", "SUID" : 662397, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662481", "source" : "588552", "target" : "589113", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Ms4a7", "weight" : 0.468637963134, "name" : "Cd86 (pp) Ms4a7", "shared_name" : "Cd86 (pp) Ms4a7", "SUID" : 662481, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662402", "source" : "588552", "target" : "588742", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Ifitm6", "weight" : 0.469578522356, "name" : "Cd86 (pp) Ifitm6", "shared_name" : "Cd86 (pp) Ifitm6", "SUID" : 662402, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662493", "source" : "588552", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Rasgrp1", "weight" : 0.609312872994, "name" : "Cd86 (pp) Rasgrp1", "shared_name" : "Cd86 (pp) Rasgrp1", "SUID" : 662493, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662514", "source" : "588552", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Ppif", "weight" : 0.513569554834, "name" : "Cd86 (pp) Ppif", "shared_name" : "Cd86 (pp) Ppif", "SUID" : 662514, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662479", "source" : "588552", "target" : "589102", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Gja1", "weight" : 0.504985334949, "name" : "Cd86 (pp) Gja1", "shared_name" : "Cd86 (pp) Gja1", "SUID" : 662479, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662363", "source" : "588552", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Coro1a", "weight" : 0.533376216097, "name" : "Cd86 (pp) Coro1a", "shared_name" : "Cd86 (pp) Coro1a", "SUID" : 662363, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662370", "source" : "588552", "target" : "588608", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Treml4", "weight" : 0.461634139536, "name" : "Cd86 (pp) Treml4", "shared_name" : "Cd86 (pp) Treml4", "SUID" : 662370, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662400", "source" : "588552", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Vsig4", "weight" : 0.697066197538, "name" : "Cd86 (pp) Vsig4", "shared_name" : "Cd86 (pp) Vsig4", "SUID" : 662400, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662459", "source" : "588552", "target" : "588999", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Kctd12", "weight" : 0.444290175219, "name" : "Cd86 (pp) Kctd12", "shared_name" : "Cd86 (pp) Kctd12", "SUID" : 662459, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662435", "source" : "588552", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Lgals3", "weight" : 0.748031900983, "name" : "Cd86 (pp) Lgals3", "shared_name" : "Cd86 (pp) Lgals3", "SUID" : 662435, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662428", "source" : "588552", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Fcer1g", "weight" : 0.602317670417, "name" : "Cd86 (pp) Fcer1g", "shared_name" : "Cd86 (pp) Fcer1g", "SUID" : 662428, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662368", "source" : "588552", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Gngt2", "weight" : 0.559134413111, "name" : "Cd86 (pp) Gngt2", "shared_name" : "Cd86 (pp) Gngt2", "SUID" : 662368, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662377", "source" : "588552", "target" : "588636", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Repin1", "weight" : 0.404228546047, "name" : "Cd86 (pp) Repin1", "shared_name" : "Cd86 (pp) Repin1", "SUID" : 662377, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "662477", "source" : "588552", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd86 (pp) Snx10", "weight" : 0.597866833322, "name" : "Cd86 (pp) Snx10", "shared_name" : "Cd86 (pp) Snx10", "SUID" : 662477, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683277", "source" : "589092", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snx10 (pp) Ear12", "weight" : 0.505571076323, "name" : "Snx10 (pp) Ear12", "shared_name" : "Snx10 (pp) Ear12", "SUID" : 683277, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683288", "source" : "589092", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snx10 (pp) Ly86", "weight" : 0.589639422259, "name" : "Snx10 (pp) Ly86", "shared_name" : "Snx10 (pp) Ly86", "SUID" : 683288, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683279", "source" : "589092", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snx10 (pp) Fcgr4", "weight" : 0.539236397033, "name" : "Snx10 (pp) Fcgr4", "shared_name" : "Snx10 (pp) Fcgr4", "SUID" : 683279, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683248", "source" : "589092", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snx10 (pp) Tmsb4x", "weight" : 0.464552073294, "name" : "Snx10 (pp) Tmsb4x", "shared_name" : "Snx10 (pp) Tmsb4x", "SUID" : 683248, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683282", "source" : "589092", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snx10 (pp) Clec7a", "weight" : 0.439638344135, "name" : "Snx10 (pp) Clec7a", "shared_name" : "Snx10 (pp) Clec7a", "SUID" : 683282, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683269", "source" : "589092", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snx10 (pp) Ear10", "weight" : 0.634777310629, "name" : "Snx10 (pp) Ear10", "shared_name" : "Snx10 (pp) Ear10", "SUID" : 683269, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683281", "source" : "589092", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snx10 (pp) Cd53", "weight" : 0.569983476491, "name" : "Snx10 (pp) Cd53", "shared_name" : "Snx10 (pp) Cd53", "SUID" : 683281, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683284", "source" : "589092", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snx10 (pp) Ear4", "weight" : 0.570390907876, "name" : "Snx10 (pp) Ear4", "shared_name" : "Snx10 (pp) Ear4", "SUID" : 683284, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683264", "source" : "589092", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snx10 (pp) Serpinb6a", "weight" : 0.437661179743, "name" : "Snx10 (pp) Serpinb6a", "shared_name" : "Snx10 (pp) Serpinb6a", "SUID" : 683264, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683289", "source" : "589092", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snx10 (pp) C1qb", "weight" : 0.408000827759, "name" : "Snx10 (pp) C1qb", "shared_name" : "Snx10 (pp) C1qb", "SUID" : 683289, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683253", "source" : "589092", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snx10 (pp) Rasgrp1", "weight" : 0.434378088305, "name" : "Snx10 (pp) Rasgrp1", "shared_name" : "Snx10 (pp) Rasgrp1", "SUID" : 683253, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "683275", "source" : "589092", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Snx10 (pp) Ppif", "weight" : 0.536262545117, "name" : "Snx10 (pp) Ppif", "shared_name" : "Snx10 (pp) Ppif", "SUID" : 683275, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647782", "source" : "588335", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Renbp", "weight" : 0.47515906504, "name" : "Arpc1b (pp) Renbp", "shared_name" : "Arpc1b (pp) Renbp", "SUID" : 647782, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647857", "source" : "588335", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Ear10", "weight" : 0.525497825344, "name" : "Arpc1b (pp) Ear10", "shared_name" : "Arpc1b (pp) Ear10", "SUID" : 647857, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647824", "source" : "588335", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Plac8", "weight" : 0.473132465879, "name" : "Arpc1b (pp) Plac8", "shared_name" : "Arpc1b (pp) Plac8", "SUID" : 647824, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647798", "source" : "588335", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Gngt2", "weight" : 0.437409672017, "name" : "Arpc1b (pp) Gngt2", "shared_name" : "Arpc1b (pp) Gngt2", "SUID" : 647798, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647868", "source" : "588335", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Ear4", "weight" : 0.466078289134, "name" : "Arpc1b (pp) Ear4", "shared_name" : "Arpc1b (pp) Ear4", "SUID" : 647868, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647773", "source" : "588335", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Cd63", "weight" : 0.522762806474, "name" : "Arpc1b (pp) Cd63", "shared_name" : "Arpc1b (pp) Cd63", "SUID" : 647773, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647848", "source" : "588335", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Tmsb4x", "weight" : 0.454722863828, "name" : "Arpc1b (pp) Tmsb4x", "shared_name" : "Arpc1b (pp) Tmsb4x", "SUID" : 647848, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647847", "source" : "588335", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Vcam1", "weight" : 0.497967393247, "name" : "Arpc1b (pp) Vcam1", "shared_name" : "Arpc1b (pp) Vcam1", "SUID" : 647847, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647786", "source" : "588335", "target" : "588496", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Gphn", "weight" : 0.44516892621, "name" : "Arpc1b (pp) Gphn", "shared_name" : "Arpc1b (pp) Gphn", "SUID" : 647786, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647867", "source" : "588335", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Clec7a", "weight" : 0.487055064389, "name" : "Arpc1b (pp) Clec7a", "shared_name" : "Arpc1b (pp) Clec7a", "SUID" : 647867, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647766", "source" : "588335", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Cyp7b1", "weight" : 0.426193412472, "name" : "Arpc1b (pp) Cyp7b1", "shared_name" : "Arpc1b (pp) Cyp7b1", "SUID" : 647766, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647828", "source" : "588335", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Lgals3", "weight" : 0.509917846919, "name" : "Arpc1b (pp) Lgals3", "shared_name" : "Arpc1b (pp) Lgals3", "SUID" : 647828, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647801", "source" : "588335", "target" : "588636", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Repin1", "weight" : 0.481026131404, "name" : "Arpc1b (pp) Repin1", "shared_name" : "Arpc1b (pp) Repin1", "SUID" : 647801, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647771", "source" : "588335", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Clec4n", "weight" : 0.421933373142, "name" : "Arpc1b (pp) Clec4n", "shared_name" : "Arpc1b (pp) Clec4n", "SUID" : 647771, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647783", "source" : "588335", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Plscr1", "weight" : 0.448737164025, "name" : "Arpc1b (pp) Plscr1", "shared_name" : "Arpc1b (pp) Plscr1", "SUID" : 647783, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647840", "source" : "588335", "target" : "589030", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Soat1", "weight" : 0.409200307726, "name" : "Arpc1b (pp) Soat1", "shared_name" : "Arpc1b (pp) Soat1", "SUID" : 647840, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647864", "source" : "588335", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Fcgr4", "weight" : 0.462814515685, "name" : "Arpc1b (pp) Fcgr4", "shared_name" : "Arpc1b (pp) Fcgr4", "SUID" : 647864, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647823", "source" : "588335", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Cotl1", "weight" : 0.591234865534, "name" : "Arpc1b (pp) Cotl1", "shared_name" : "Arpc1b (pp) Cotl1", "SUID" : 647823, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647839", "source" : "588335", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Csrp1", "weight" : 0.577654181203, "name" : "Arpc1b (pp) Csrp1", "shared_name" : "Arpc1b (pp) Csrp1", "SUID" : 647839, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647778", "source" : "588335", "target" : "588464", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Akr1b3", "weight" : 0.432526478833, "name" : "Arpc1b (pp) Akr1b3", "shared_name" : "Arpc1b (pp) Akr1b3", "SUID" : 647778, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647854", "source" : "588335", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Serpinb6a", "weight" : 0.461802517492, "name" : "Arpc1b (pp) Serpinb6a", "shared_name" : "Arpc1b (pp) Serpinb6a", "SUID" : 647854, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647825", "source" : "588335", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Fcer1g", "weight" : 0.482846246679, "name" : "Arpc1b (pp) Fcer1g", "shared_name" : "Arpc1b (pp) Fcer1g", "SUID" : 647825, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647818", "source" : "588335", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Slc15a3", "weight" : 0.491089094471, "name" : "Arpc1b (pp) Slc15a3", "shared_name" : "Arpc1b (pp) Slc15a3", "SUID" : 647818, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647871", "source" : "588335", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) C1qb", "weight" : 0.418019197169, "name" : "Arpc1b (pp) C1qb", "shared_name" : "Arpc1b (pp) C1qb", "SUID" : 647871, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647768", "source" : "588335", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Selplg", "weight" : 0.416632302584, "name" : "Arpc1b (pp) Selplg", "shared_name" : "Arpc1b (pp) Selplg", "SUID" : 647768, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647812", "source" : "588335", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Axl", "weight" : 0.527729773765, "name" : "Arpc1b (pp) Axl", "shared_name" : "Arpc1b (pp) Axl", "SUID" : 647812, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647807", "source" : "588335", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Cd52", "weight" : 0.467492217675, "name" : "Arpc1b (pp) Cd52", "shared_name" : "Arpc1b (pp) Cd52", "SUID" : 647807, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647820", "source" : "588335", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Tmem86a", "weight" : 0.479561951545, "name" : "Arpc1b (pp) Tmem86a", "shared_name" : "Arpc1b (pp) Tmem86a", "SUID" : 647820, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647810", "source" : "588335", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Serpina3g", "weight" : 0.43156837352, "name" : "Arpc1b (pp) Serpina3g", "shared_name" : "Arpc1b (pp) Serpina3g", "SUID" : 647810, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647874", "source" : "588335", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Tspan33", "weight" : 0.420634185835, "name" : "Arpc1b (pp) Tspan33", "shared_name" : "Arpc1b (pp) Tspan33", "SUID" : 647874, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647863", "source" : "588335", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Ear12", "weight" : 0.535583311921, "name" : "Arpc1b (pp) Ear12", "shared_name" : "Arpc1b (pp) Ear12", "SUID" : 647863, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "647866", "source" : "588335", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Arpc1b (pp) Cd53", "weight" : 0.455884398109, "name" : "Arpc1b (pp) Cd53", "shared_name" : "Arpc1b (pp) Cd53", "SUID" : 647866, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645890", "source" : "588313", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Cytip", "weight" : 0.432331347305, "name" : "Zfp90 (pp) Cytip", "shared_name" : "Zfp90 (pp) Cytip", "SUID" : 645890, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645800", "source" : "588313", "target" : "588351", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Ttc39a", "weight" : 0.46346458661, "name" : "Zfp90 (pp) Ttc39a", "shared_name" : "Zfp90 (pp) Ttc39a", "SUID" : 645800, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645961", "source" : "588313", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Il10ra", "weight" : 0.435393039809, "name" : "Zfp90 (pp) Il10ra", "shared_name" : "Zfp90 (pp) Il10ra", "SUID" : 645961, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645875", "source" : "588313", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Cotl1", "weight" : 0.432259374674, "name" : "Zfp90 (pp) Cotl1", "shared_name" : "Zfp90 (pp) Cotl1", "SUID" : 645875, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645842", "source" : "588313", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Slc11a1", "weight" : 0.421525132285, "name" : "Zfp90 (pp) Slc11a1", "shared_name" : "Zfp90 (pp) Slc11a1", "SUID" : 645842, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645859", "source" : "588313", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Tlr2", "weight" : 0.472744889739, "name" : "Zfp90 (pp) Tlr2", "shared_name" : "Zfp90 (pp) Tlr2", "SUID" : 645859, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645906", "source" : "588313", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Btk", "weight" : 0.461574142055, "name" : "Zfp90 (pp) Btk", "shared_name" : "Zfp90 (pp) Btk", "SUID" : 645906, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645813", "source" : "588313", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Cd14", "weight" : 0.463255104267, "name" : "Zfp90 (pp) Cd14", "shared_name" : "Zfp90 (pp) Cd14", "SUID" : 645813, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645803", "source" : "588313", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Cyp7b1", "weight" : 0.430245965109, "name" : "Zfp90 (pp) Cyp7b1", "shared_name" : "Zfp90 (pp) Cyp7b1", "SUID" : 645803, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645840", "source" : "588313", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Coro1a", "weight" : 0.415300120881, "name" : "Zfp90 (pp) Coro1a", "shared_name" : "Zfp90 (pp) Coro1a", "SUID" : 645840, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645849", "source" : "588313", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Gpnmb", "weight" : 0.411736553959, "name" : "Zfp90 (pp) Gpnmb", "shared_name" : "Zfp90 (pp) Gpnmb", "SUID" : 645849, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645953", "source" : "588313", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Ly86", "weight" : 0.421051248166, "name" : "Zfp90 (pp) Ly86", "shared_name" : "Zfp90 (pp) Ly86", "SUID" : 645953, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645920", "source" : "588313", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Tmsb4x", "weight" : 0.472763820896, "name" : "Zfp90 (pp) Tmsb4x", "shared_name" : "Zfp90 (pp) Tmsb4x", "SUID" : 645920, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645878", "source" : "588313", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Fcer1g", "weight" : 0.470439878813, "name" : "Zfp90 (pp) Fcer1g", "shared_name" : "Zfp90 (pp) Fcer1g", "SUID" : 645878, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645942", "source" : "588313", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Ear12", "weight" : 0.45299581098, "name" : "Zfp90 (pp) Ear12", "shared_name" : "Zfp90 (pp) Ear12", "SUID" : 645942, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645856", "source" : "588313", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Cd52", "weight" : 0.466303273622, "name" : "Zfp90 (pp) Cd52", "shared_name" : "Zfp90 (pp) Cd52", "SUID" : 645856, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645899", "source" : "588313", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Csrp1", "weight" : 0.500502664081, "name" : "Zfp90 (pp) Csrp1", "shared_name" : "Zfp90 (pp) Csrp1", "SUID" : 645899, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645816", "source" : "588313", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Clec4n", "weight" : 0.487125694269, "name" : "Zfp90 (pp) Clec4n", "shared_name" : "Zfp90 (pp) Clec4n", "SUID" : 645816, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645915", "source" : "588313", "target" : "589113", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Ms4a7", "weight" : 0.439706738715, "name" : "Zfp90 (pp) Ms4a7", "shared_name" : "Zfp90 (pp) Ms4a7", "SUID" : 645915, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645810", "source" : "588313", "target" : "588394", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Lyzs", "weight" : 0.40396931126, "name" : "Zfp90 (pp) Lyzs", "shared_name" : "Zfp90 (pp) Lyzs", "SUID" : 645810, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645907", "source" : "588313", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Cfp", "weight" : 0.460884518678, "name" : "Zfp90 (pp) Cfp", "shared_name" : "Zfp90 (pp) Cfp", "SUID" : 645907, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645825", "source" : "588313", "target" : "588492", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Ncf4", "weight" : 0.424130126165, "name" : "Zfp90 (pp) Ncf4", "shared_name" : "Zfp90 (pp) Ncf4", "SUID" : 645825, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645924", "source" : "588313", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Rasgrp1", "weight" : 0.400220648909, "name" : "Zfp90 (pp) Rasgrp1", "shared_name" : "Zfp90 (pp) Rasgrp1", "SUID" : 645924, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645796", "source" : "588313", "target" : "588328", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Arhgap9", "weight" : 0.409382296902, "name" : "Zfp90 (pp) Arhgap9", "shared_name" : "Zfp90 (pp) Arhgap9", "SUID" : 645796, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645955", "source" : "588313", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Fblim1", "weight" : 0.593185644799, "name" : "Zfp90 (pp) Fblim1", "shared_name" : "Zfp90 (pp) Fblim1", "SUID" : 645955, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645835", "source" : "588313", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Cd86", "weight" : 0.41398360365, "name" : "Zfp90 (pp) Cd86", "shared_name" : "Zfp90 (pp) Cd86", "SUID" : 645835, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645861", "source" : "588313", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Tpm4", "weight" : 0.474469394664, "name" : "Zfp90 (pp) Tpm4", "shared_name" : "Zfp90 (pp) Tpm4", "SUID" : 645861, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645853", "source" : "588313", "target" : "588664", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.481871427918, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Zfp90 (pp) 5033414D02Rik", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.481871427918, "fusion" : "NA", "name" : "Zfp90 (pp) 5033414D02Rik", "neighborhood" : "NA", "sourceEdge" : 92412.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Zfp90 (pp) 5033414D02Rik", "combinedscore" : "NA", "SUID" : 645853, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 6.479043E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "645868", "source" : "588313", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) 5430435G22Rik", "weight" : 0.422809186616, "name" : "Zfp90 (pp) 5430435G22Rik", "shared_name" : "Zfp90 (pp) 5430435G22Rik", "SUID" : 645868, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645795", "source" : "588313", "target" : "588322", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Pfkfb4", "weight" : 0.407590473603, "name" : "Zfp90 (pp) Pfkfb4", "shared_name" : "Zfp90 (pp) Pfkfb4", "SUID" : 645795, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645807", "source" : "588313", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Selplg", "weight" : 0.469048918386, "name" : "Zfp90 (pp) Selplg", "shared_name" : "Zfp90 (pp) Selplg", "SUID" : 645807, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645870", "source" : "588313", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Obrgrp", "weight" : 0.536740492978, "name" : "Zfp90 (pp) Obrgrp", "shared_name" : "Zfp90 (pp) Obrgrp", "SUID" : 645870, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645882", "source" : "588313", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Lgals3", "weight" : 0.500795247075, "name" : "Zfp90 (pp) Lgals3", "shared_name" : "Zfp90 (pp) Lgals3", "SUID" : 645882, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645949", "source" : "588313", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.41609557851, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Zfp90 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.41609557851, "fusion" : "NA", "name" : "Zfp90 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 92467.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Zfp90 (pp) Ear4", "combinedscore" : "NA", "SUID" : 645949, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 9.638726E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "645866", "source" : "588313", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Slc15a3", "weight" : 0.52438846591, "name" : "Zfp90 (pp) Slc15a3", "shared_name" : "Zfp90 (pp) Slc15a3", "SUID" : 645866, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645947", "source" : "588313", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Clec7a", "weight" : 0.400146407659, "name" : "Zfp90 (pp) Clec7a", "shared_name" : "Zfp90 (pp) Clec7a", "SUID" : 645947, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645916", "source" : "588313", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Vcam1", "weight" : 0.415490023922, "name" : "Zfp90 (pp) Vcam1", "shared_name" : "Zfp90 (pp) Vcam1", "SUID" : 645916, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645889", "source" : "588313", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Zfp90 (pp) Hk3", "weight" : 0.461411388439, "name" : "Zfp90 (pp) Hk3", "shared_name" : "Zfp90 (pp) Hk3", "SUID" : 645889, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668700", "source" : "588664", "target" : "588742", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.504324455554, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "5033414D02Rik (pp) Ifitm6", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.504324455554, "fusion" : "NA", "name" : "5033414D02Rik (pp) Ifitm6", "neighborhood" : "NA", "sourceEdge" : 126910.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "5033414D02Rik (pp) Ifitm6", "combinedscore" : "NA", "SUID" : 668700, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 5.139105E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "668839", "source" : "588664", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.713610723081, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "5033414D02Rik (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.713610723081, "fusion" : "NA", "name" : "5033414D02Rik (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 126952.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "5033414D02Rik (pp) Ear4", "combinedscore" : "NA", "SUID" : 668839, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 6.4002E-8, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "668695", "source" : "588664", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Axl", "weight" : 0.606441320708, "name" : "5033414D02Rik (pp) Axl", "shared_name" : "5033414D02Rik (pp) Axl", "SUID" : 668695, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668792", "source" : "588664", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Vcam1", "weight" : 0.659897862109, "name" : "5033414D02Rik (pp) Vcam1", "shared_name" : "5033414D02Rik (pp) Vcam1", "SUID" : 668792, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668697", "source" : "588664", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Tpm4", "weight" : 0.527801901777, "name" : "5033414D02Rik (pp) Tpm4", "shared_name" : "5033414D02Rik (pp) Tpm4", "SUID" : 668697, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668705", "source" : "588664", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Slc15a3", "weight" : 0.703623992959, "name" : "5033414D02Rik (pp) Slc15a3", "shared_name" : "5033414D02Rik (pp) Slc15a3", "SUID" : 668705, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668846", "source" : "588664", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) C1qb", "weight" : 0.620025044817, "name" : "5033414D02Rik (pp) C1qb", "shared_name" : "5033414D02Rik (pp) C1qb", "SUID" : 668846, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668720", "source" : "588664", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Cotl1", "weight" : 0.541227287855, "name" : "5033414D02Rik (pp) Cotl1", "shared_name" : "5033414D02Rik (pp) Cotl1", "SUID" : 668720, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668692", "source" : "588664", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) 6330416G13Rik", "weight" : 0.410365517356, "name" : "5033414D02Rik (pp) 6330416G13Rik", "shared_name" : "5033414D02Rik (pp) 6330416G13Rik", "SUID" : 668692, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668725", "source" : "588664", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Fcer1g", "weight" : 0.686527496318, "name" : "5033414D02Rik (pp) Fcer1g", "shared_name" : "5033414D02Rik (pp) Fcer1g", "SUID" : 668725, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668831", "source" : "588664", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Ear12", "weight" : 0.544791846745, "name" : "5033414D02Rik (pp) Ear12", "shared_name" : "5033414D02Rik (pp) Ear12", "SUID" : 668831, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668798", "source" : "588664", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Tmsb4x", "weight" : 0.574023690789, "name" : "5033414D02Rik (pp) Tmsb4x", "shared_name" : "5033414D02Rik (pp) Tmsb4x", "SUID" : 668798, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668761", "source" : "588664", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Csrp1", "weight" : 0.588645927723, "name" : "5033414D02Rik (pp) Csrp1", "shared_name" : "5033414D02Rik (pp) Csrp1", "SUID" : 668761, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668776", "source" : "588664", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Btk", "weight" : 0.497432138269, "name" : "5033414D02Rik (pp) Btk", "shared_name" : "5033414D02Rik (pp) Btk", "SUID" : 668776, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668844", "source" : "588664", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Ly86", "weight" : 0.609038093237, "name" : "5033414D02Rik (pp) Ly86", "shared_name" : "5033414D02Rik (pp) Ly86", "SUID" : 668844, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668689", "source" : "588664", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Cd52", "weight" : 0.650368007352, "name" : "5033414D02Rik (pp) Cd52", "shared_name" : "5033414D02Rik (pp) Cd52", "SUID" : 668689, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668821", "source" : "588664", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Ear10", "weight" : 0.517798567627, "name" : "5033414D02Rik (pp) Ear10", "shared_name" : "5033414D02Rik (pp) Ear10", "SUID" : 668821, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668820", "source" : "588664", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) H2-DMa", "weight" : 0.485836613958, "name" : "5033414D02Rik (pp) H2-DMa", "shared_name" : "5033414D02Rik (pp) H2-DMa", "SUID" : 668820, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668833", "source" : "588664", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Fcgr4", "weight" : 0.602373380225, "name" : "5033414D02Rik (pp) Fcgr4", "shared_name" : "5033414D02Rik (pp) Fcgr4", "SUID" : 668833, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668684", "source" : "588664", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) D12Ertd553e", "weight" : 0.417809545175, "name" : "5033414D02Rik (pp) D12Ertd553e", "shared_name" : "5033414D02Rik (pp) D12Ertd553e", "SUID" : 668684, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668803", "source" : "588664", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Rasgrp1", "weight" : 0.651106868879, "name" : "5033414D02Rik (pp) Rasgrp1", "shared_name" : "5033414D02Rik (pp) Rasgrp1", "SUID" : 668803, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668723", "source" : "588664", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Plac8", "weight" : 0.664660512309, "name" : "5033414D02Rik (pp) Plac8", "shared_name" : "5033414D02Rik (pp) Plac8", "SUID" : 668723, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668693", "source" : "588664", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Serpina3g", "weight" : 0.588521956353, "name" : "5033414D02Rik (pp) Serpina3g", "shared_name" : "5033414D02Rik (pp) Serpina3g", "SUID" : 668693, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668694", "source" : "588664", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Tlr2", "weight" : 0.515898943429, "name" : "5033414D02Rik (pp) Tlr2", "shared_name" : "5033414D02Rik (pp) Tlr2", "SUID" : 668694, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668758", "source" : "588664", "target" : "588999", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Kctd12", "weight" : 0.406531747005, "name" : "5033414D02Rik (pp) Kctd12", "shared_name" : "5033414D02Rik (pp) Kctd12", "SUID" : 668758, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668745", "source" : "588664", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Cytip", "weight" : 0.565910596506, "name" : "5033414D02Rik (pp) Cytip", "shared_name" : "5033414D02Rik (pp) Cytip", "SUID" : 668745, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668816", "source" : "588664", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Serpinb6a", "weight" : 0.539564218178, "name" : "5033414D02Rik (pp) Serpinb6a", "shared_name" : "5033414D02Rik (pp) Serpinb6a", "SUID" : 668816, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668744", "source" : "588664", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Hk3", "weight" : 0.713109894978, "name" : "5033414D02Rik (pp) Hk3", "shared_name" : "5033414D02Rik (pp) Hk3", "SUID" : 668744, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668734", "source" : "588664", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Lgals3", "weight" : 0.654242667028, "name" : "5033414D02Rik (pp) Lgals3", "shared_name" : "5033414D02Rik (pp) Lgals3", "SUID" : 668734, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668782", "source" : "588664", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Snx10", "weight" : 0.440484938738, "name" : "5033414D02Rik (pp) Snx10", "shared_name" : "5033414D02Rik (pp) Snx10", "SUID" : 668782, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668709", "source" : "588664", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Tmem86a", "weight" : 0.482532000957, "name" : "5033414D02Rik (pp) Tmem86a", "shared_name" : "5033414D02Rik (pp) Tmem86a", "SUID" : 668709, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668836", "source" : "588664", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Clec7a", "weight" : 0.427469823671, "name" : "5033414D02Rik (pp) Clec7a", "shared_name" : "5033414D02Rik (pp) Clec7a", "SUID" : 668836, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668850", "source" : "588664", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Lrrc33", "weight" : 0.494158174792, "name" : "5033414D02Rik (pp) Lrrc33", "shared_name" : "5033414D02Rik (pp) Lrrc33", "SUID" : 668850, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668830", "source" : "588664", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Abi3", "weight" : 0.418780675294, "name" : "5033414D02Rik (pp) Abi3", "shared_name" : "5033414D02Rik (pp) Abi3", "SUID" : 668830, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668848", "source" : "588664", "target" : "589353", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.43690398172, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "5033414D02Rik (pp) Fblim1", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.43690398172, "fusion" : "NA", "name" : "5033414D02Rik (pp) Fblim1", "neighborhood" : "NA", "sourceEdge" : 126956.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "5033414D02Rik (pp) Fblim1", "combinedscore" : "NA", "SUID" : 668848, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 2.76245E-6, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "668698", "source" : "588664", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Vsig4", "weight" : 0.540521813443, "name" : "5033414D02Rik (pp) Vsig4", "shared_name" : "5033414D02Rik (pp) Vsig4", "SUID" : 668698, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668713", "source" : "588664", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Obrgrp", "weight" : 0.575128644971, "name" : "5033414D02Rik (pp) Obrgrp", "shared_name" : "5033414D02Rik (pp) Obrgrp", "SUID" : 668713, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668742", "source" : "588664", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) C1qc", "weight" : 0.479533999725, "name" : "5033414D02Rik (pp) C1qc", "shared_name" : "5033414D02Rik (pp) C1qc", "SUID" : 668742, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "668777", "source" : "588664", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "5033414D02Rik (pp) Cfp", "weight" : 0.594161195288, "name" : "5033414D02Rik (pp) Cfp", "shared_name" : "5033414D02Rik (pp) Cfp", "SUID" : 668777, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640653", "source" : "588251", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Fcgr3", "weight" : 0.446276788796, "name" : "Sdc3 (pp) Fcgr3", "shared_name" : "Sdc3 (pp) Fcgr3", "SUID" : 640653, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640643", "source" : "588251", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Ccl6", "weight" : 0.477910115506, "name" : "Sdc3 (pp) Ccl6", "shared_name" : "Sdc3 (pp) Ccl6", "SUID" : 640643, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640634", "source" : "588251", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Serpina3g", "weight" : 0.557520765237, "name" : "Sdc3 (pp) Serpina3g", "shared_name" : "Sdc3 (pp) Serpina3g", "SUID" : 640634, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640637", "source" : "588251", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Tpm4", "weight" : 0.405331918382, "name" : "Sdc3 (pp) Tpm4", "shared_name" : "Sdc3 (pp) Tpm4", "SUID" : 640637, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640584", "source" : "588251", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Selplg", "weight" : 0.597334855187, "name" : "Sdc3 (pp) Selplg", "shared_name" : "Sdc3 (pp) Selplg", "SUID" : 640584, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640592", "source" : "588251", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Cd63", "weight" : 0.520835457815, "name" : "Sdc3 (pp) Cd63", "shared_name" : "Sdc3 (pp) Cd63", "SUID" : 640592, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640691", "source" : "588251", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Vcam1", "weight" : 0.589847141877, "name" : "Sdc3 (pp) Vcam1", "shared_name" : "Sdc3 (pp) Vcam1", "SUID" : 640691, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640720", "source" : "588251", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Ear4", "weight" : 0.61406943999, "name" : "Sdc3 (pp) Ear4", "shared_name" : "Sdc3 (pp) Ear4", "SUID" : 640720, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640618", "source" : "588251", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Gngt2", "weight" : 0.707005917315, "name" : "Sdc3 (pp) Gngt2", "shared_name" : "Sdc3 (pp) Gngt2", "SUID" : 640618, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640704", "source" : "588251", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Serpinb6a", "weight" : 0.527594195991, "name" : "Sdc3 (pp) Serpinb6a", "shared_name" : "Sdc3 (pp) Serpinb6a", "SUID" : 640704, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640695", "source" : "588251", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Tmsb4x", "weight" : 0.437612298811, "name" : "Sdc3 (pp) Tmsb4x", "shared_name" : "Sdc3 (pp) Tmsb4x", "SUID" : 640695, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640714", "source" : "588251", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Ear12", "weight" : 0.423191879152, "name" : "Sdc3 (pp) Ear12", "shared_name" : "Sdc3 (pp) Ear12", "SUID" : 640714, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640623", "source" : "588251", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Casp1", "weight" : 0.505408500453, "name" : "Sdc3 (pp) Casp1", "shared_name" : "Sdc3 (pp) Casp1", "SUID" : 640623, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640572", "source" : "588251", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Cxcl16", "weight" : 0.606492266757, "name" : "Sdc3 (pp) Cxcl16", "shared_name" : "Sdc3 (pp) Cxcl16", "SUID" : 640572, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640576", "source" : "588251", "target" : "588335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Arpc1b", "weight" : 0.426595429324, "name" : "Sdc3 (pp) Arpc1b", "shared_name" : "Sdc3 (pp) Arpc1b", "SUID" : 640576, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640681", "source" : "588251", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Btk", "weight" : 0.452150210991, "name" : "Sdc3 (pp) Btk", "shared_name" : "Sdc3 (pp) Btk", "SUID" : 640681, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640582", "source" : "588251", "target" : "588365", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Tnfaip8l2", "weight" : 0.42283438434, "name" : "Sdc3 (pp) Tnfaip8l2", "shared_name" : "Sdc3 (pp) Tnfaip8l2", "SUID" : 640582, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640652", "source" : "588251", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Fcer1g", "weight" : 0.635249749541, "name" : "Sdc3 (pp) Fcer1g", "shared_name" : "Sdc3 (pp) Fcer1g", "SUID" : 640652, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640613", "source" : "588251", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Snn", "weight" : 0.471615021623, "name" : "Sdc3 (pp) Snn", "shared_name" : "Sdc3 (pp) Snn", "SUID" : 640613, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640718", "source" : "588251", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Clec7a", "weight" : 0.469303461251, "name" : "Sdc3 (pp) Clec7a", "shared_name" : "Sdc3 (pp) Clec7a", "SUID" : 640718, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640682", "source" : "588251", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Cfp", "weight" : 0.578746659029, "name" : "Sdc3 (pp) Cfp", "shared_name" : "Sdc3 (pp) Cfp", "SUID" : 640682, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640649", "source" : "588251", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Cotl1", "weight" : 0.610639605269, "name" : "Sdc3 (pp) Cotl1", "shared_name" : "Sdc3 (pp) Cotl1", "SUID" : 640649, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640614", "source" : "588251", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Coro1a", "weight" : 0.634226134958, "name" : "Sdc3 (pp) Coro1a", "shared_name" : "Sdc3 (pp) Coro1a", "SUID" : 640614, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640642", "source" : "588251", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Slc15a3", "weight" : 0.754743786882, "name" : "Sdc3 (pp) Slc15a3", "shared_name" : "Sdc3 (pp) Slc15a3", "SUID" : 640642, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640635", "source" : "588251", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Tlr2", "weight" : 0.574400642362, "name" : "Sdc3 (pp) Tlr2", "shared_name" : "Sdc3 (pp) Tlr2", "SUID" : 640635, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640600", "source" : "588251", "target" : "588490", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Arhgap30", "weight" : 0.431098500537, "name" : "Sdc3 (pp) Arhgap30", "shared_name" : "Sdc3 (pp) Arhgap30", "SUID" : 640600, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640665", "source" : "588251", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Cytip", "weight" : 0.552824292564, "name" : "Sdc3 (pp) Cytip", "shared_name" : "Sdc3 (pp) Cytip", "SUID" : 640665, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640599", "source" : "588251", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Plscr1", "weight" : 0.441895754804, "name" : "Sdc3 (pp) Plscr1", "shared_name" : "Sdc3 (pp) Plscr1", "SUID" : 640599, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640713", "source" : "588251", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Abi3", "weight" : 0.464833809218, "name" : "Sdc3 (pp) Abi3", "shared_name" : "Sdc3 (pp) Abi3", "SUID" : 640713, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640630", "source" : "588251", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Cd52", "weight" : 0.640257735699, "name" : "Sdc3 (pp) Cd52", "shared_name" : "Sdc3 (pp) Cd52", "SUID" : 640630, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640645", "source" : "588251", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Obrgrp", "weight" : 0.54859094975, "name" : "Sdc3 (pp) Obrgrp", "shared_name" : "Sdc3 (pp) Obrgrp", "SUID" : 640645, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640616", "source" : "588251", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Slc11a1", "weight" : 0.538425557761, "name" : "Sdc3 (pp) Slc11a1", "shared_name" : "Sdc3 (pp) Slc11a1", "SUID" : 640616, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640722", "source" : "588251", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Ly86", "weight" : 0.584653297054, "name" : "Sdc3 (pp) Ly86", "shared_name" : "Sdc3 (pp) Ly86", "SUID" : 640722, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640606", "source" : "588251", "target" : "588517", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Rac2", "weight" : 0.408577718704, "name" : "Sdc3 (pp) Rac2", "shared_name" : "Sdc3 (pp) Rac2", "SUID" : 640606, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640629", "source" : "588251", "target" : "588678", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Fxyd5", "weight" : 0.44133263729, "name" : "Sdc3 (pp) Fxyd5", "shared_name" : "Sdc3 (pp) Fxyd5", "SUID" : 640629, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640715", "source" : "588251", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Fcgr4", "weight" : 0.731531605903, "name" : "Sdc3 (pp) Fcgr4", "shared_name" : "Sdc3 (pp) Fcgr4", "SUID" : 640715, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640598", "source" : "588251", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Renbp", "weight" : 0.401582724638, "name" : "Sdc3 (pp) Renbp", "shared_name" : "Sdc3 (pp) Renbp", "SUID" : 640598, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640676", "source" : "588251", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Csrp1", "weight" : 0.569644478598, "name" : "Sdc3 (pp) Csrp1", "shared_name" : "Sdc3 (pp) Csrp1", "SUID" : 640676, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640673", "source" : "588251", "target" : "588968", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Bcl2a1c", "weight" : 0.451070683663, "name" : "Sdc3 (pp) Bcl2a1c", "shared_name" : "Sdc3 (pp) Bcl2a1c", "SUID" : 640673, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640588", "source" : "588251", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Cd14", "weight" : 0.560153571438, "name" : "Sdc3 (pp) Cd14", "shared_name" : "Sdc3 (pp) Cd14", "SUID" : 640588, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640627", "source" : "588251", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) 5033414D02Rik", "weight" : 0.48973536183, "name" : "Sdc3 (pp) 5033414D02Rik", "shared_name" : "Sdc3 (pp) 5033414D02Rik", "SUID" : 640627, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640664", "source" : "588251", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Hk3", "weight" : 0.581810579082, "name" : "Sdc3 (pp) Hk3", "shared_name" : "Sdc3 (pp) Hk3", "SUID" : 640664, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640628", "source" : "588251", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) D12Ertd553e", "weight" : 0.448298820724, "name" : "Sdc3 (pp) D12Ertd553e", "shared_name" : "Sdc3 (pp) D12Ertd553e", "SUID" : 640628, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640638", "source" : "588251", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Vsig4", "weight" : 0.557782476637, "name" : "Sdc3 (pp) Vsig4", "shared_name" : "Sdc3 (pp) Vsig4", "SUID" : 640638, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640586", "source" : "588251", "target" : "588394", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Lyzs", "weight" : 0.429258844931, "name" : "Sdc3 (pp) Lyzs", "shared_name" : "Sdc3 (pp) Lyzs", "SUID" : 640586, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640710", "source" : "588251", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Trem2", "weight" : 0.473048714095, "name" : "Sdc3 (pp) Trem2", "shared_name" : "Sdc3 (pp) Trem2", "SUID" : 640710, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640574", "source" : "588251", "target" : "588322", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Pfkfb4", "weight" : 0.437931935985, "name" : "Sdc3 (pp) Pfkfb4", "shared_name" : "Sdc3 (pp) Pfkfb4", "SUID" : 640574, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640636", "source" : "588251", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Axl", "weight" : 0.775001605287, "name" : "Sdc3 (pp) Axl", "shared_name" : "Sdc3 (pp) Axl", "SUID" : 640636, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640610", "source" : "588251", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Cd86", "weight" : 0.504600526446, "name" : "Sdc3 (pp) Cd86", "shared_name" : "Sdc3 (pp) Cd86", "SUID" : 640610, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640650", "source" : "588251", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Plac8", "weight" : 0.675212202082, "name" : "Sdc3 (pp) Plac8", "shared_name" : "Sdc3 (pp) Plac8", "SUID" : 640650, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640597", "source" : "588251", "target" : "588472", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Ly9", "weight" : 0.437304973756, "name" : "Sdc3 (pp) Ly9", "shared_name" : "Sdc3 (pp) Ly9", "SUID" : 640597, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640568", "source" : "588251", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Ms4a6d", "weight" : 0.504451683187, "name" : "Sdc3 (pp) Ms4a6d", "shared_name" : "Sdc3 (pp) Ms4a6d", "SUID" : 640568, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640601", "source" : "588251", "target" : "588492", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Ncf4", "weight" : 0.424478057924, "name" : "Sdc3 (pp) Ncf4", "shared_name" : "Sdc3 (pp) Ncf4", "SUID" : 640601, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640625", "source" : "588251", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Gpnmb", "weight" : 0.524409860937, "name" : "Sdc3 (pp) Gpnmb", "shared_name" : "Sdc3 (pp) Gpnmb", "SUID" : 640625, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640581", "source" : "588251", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Cyp7b1", "weight" : 0.447604323163, "name" : "Sdc3 (pp) Cyp7b1", "shared_name" : "Sdc3 (pp) Cyp7b1", "SUID" : 640581, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640657", "source" : "588251", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Lgals3", "weight" : 0.620071102345, "name" : "Sdc3 (pp) Lgals3", "shared_name" : "Sdc3 (pp) Lgals3", "SUID" : 640657, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640663", "source" : "588251", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) C1qc", "weight" : 0.483170857964, "name" : "Sdc3 (pp) C1qc", "shared_name" : "Sdc3 (pp) C1qc", "SUID" : 640663, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640644", "source" : "588251", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Tmem86a", "weight" : 0.561184524431, "name" : "Sdc3 (pp) Tmem86a", "shared_name" : "Sdc3 (pp) Tmem86a", "SUID" : 640644, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640589", "source" : "588251", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Clec4n", "weight" : 0.606390969443, "name" : "Sdc3 (pp) Clec4n", "shared_name" : "Sdc3 (pp) Clec4n", "SUID" : 640589, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640732", "source" : "588251", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Il10ra", "weight" : 0.414998876685, "name" : "Sdc3 (pp) Il10ra", "shared_name" : "Sdc3 (pp) Il10ra", "SUID" : 640732, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640727", "source" : "588251", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) Lrrc33", "weight" : 0.431370354992, "name" : "Sdc3 (pp) Lrrc33", "shared_name" : "Sdc3 (pp) Lrrc33", "SUID" : 640727, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "640723", "source" : "588251", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdc3 (pp) C1qb", "weight" : 0.611130057815, "name" : "Sdc3 (pp) C1qb", "shared_name" : "Sdc3 (pp) C1qb", "SUID" : 640723, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657663", "source" : "588480", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) Trem2", "weight" : 0.544633789033, "name" : "Renbp (pp) Trem2", "shared_name" : "Renbp (pp) Trem2", "SUID" : 657663, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657669", "source" : "588480", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) Ear12", "weight" : 0.469949284243, "name" : "Renbp (pp) Ear12", "shared_name" : "Renbp (pp) Ear12", "SUID" : 657669, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657679", "source" : "588480", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) Prkcd", "weight" : 0.425642006065, "name" : "Renbp (pp) Prkcd", "shared_name" : "Renbp (pp) Prkcd", "SUID" : 657679, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657602", "source" : "588480", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) Fcgr3", "weight" : 0.401222803539, "name" : "Renbp (pp) Fcgr3", "shared_name" : "Renbp (pp) Fcgr3", "SUID" : 657602, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657656", "source" : "588480", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) Serpinb6a", "weight" : 0.613143241829, "name" : "Renbp (pp) Serpinb6a", "shared_name" : "Renbp (pp) Serpinb6a", "SUID" : 657656, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657667", "source" : "588480", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) Ppif", "weight" : 0.529329436005, "name" : "Renbp (pp) Ppif", "shared_name" : "Renbp (pp) Ppif", "SUID" : 657667, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657533", "source" : "588480", "target" : "588496", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) Gphn", "weight" : 0.457875092111, "name" : "Renbp (pp) Gphn", "shared_name" : "Renbp (pp) Gphn", "SUID" : 657533, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657546", "source" : "588480", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) Snn", "weight" : 0.504175808814, "name" : "Renbp (pp) Snn", "shared_name" : "Renbp (pp) Snn", "SUID" : 657546, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657557", "source" : "588480", "target" : "588636", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) Repin1", "weight" : 0.49918720063, "name" : "Renbp (pp) Repin1", "shared_name" : "Renbp (pp) Repin1", "SUID" : 657557, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657587", "source" : "588480", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) Tmem86a", "weight" : 0.728294356841, "name" : "Renbp (pp) Tmem86a", "shared_name" : "Renbp (pp) Tmem86a", "SUID" : 657587, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657660", "source" : "588480", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) Ear10", "weight" : 0.55253632461, "name" : "Renbp (pp) Ear10", "shared_name" : "Renbp (pp) Ear10", "SUID" : 657660, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657627", "source" : "588480", "target" : "589030", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) Soat1", "weight" : 0.410110102351, "name" : "Renbp (pp) Soat1", "shared_name" : "Renbp (pp) Soat1", "SUID" : 657627, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657593", "source" : "588480", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) Pla2g15", "weight" : 0.57894535689, "name" : "Renbp (pp) Pla2g15", "shared_name" : "Renbp (pp) Pla2g15", "SUID" : 657593, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657677", "source" : "588480", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) Ear4", "weight" : 0.558256258574, "name" : "Renbp (pp) Ear4", "shared_name" : "Renbp (pp) Ear4", "SUID" : 657677, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657600", "source" : "588480", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) Fcer1g", "weight" : 0.439297082747, "name" : "Renbp (pp) Fcer1g", "shared_name" : "Renbp (pp) Fcer1g", "SUID" : 657600, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657530", "source" : "588480", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) Plscr1", "weight" : 0.452061014041, "name" : "Renbp (pp) Plscr1", "shared_name" : "Renbp (pp) Plscr1", "SUID" : 657530, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657639", "source" : "588480", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) Vcam1", "weight" : 0.521378694499, "name" : "Renbp (pp) Vcam1", "shared_name" : "Renbp (pp) Vcam1", "SUID" : 657639, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657668", "source" : "588480", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) Abi3", "weight" : 0.430756518491, "name" : "Renbp (pp) Abi3", "shared_name" : "Renbp (pp) Abi3", "SUID" : 657668, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657596", "source" : "588480", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) Cotl1", "weight" : 0.64362785405, "name" : "Renbp (pp) Cotl1", "shared_name" : "Renbp (pp) Cotl1", "SUID" : 657596, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657584", "source" : "588480", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) Slc15a3", "weight" : 0.504864016674, "name" : "Renbp (pp) Slc15a3", "shared_name" : "Renbp (pp) Slc15a3", "SUID" : 657584, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657570", "source" : "588480", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) 6330416G13Rik", "weight" : 0.423325219737, "name" : "Renbp (pp) 6330416G13Rik", "shared_name" : "Renbp (pp) 6330416G13Rik", "SUID" : 657570, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657560", "source" : "588480", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) Gpnmb", "weight" : 0.522183673444, "name" : "Renbp (pp) Gpnmb", "shared_name" : "Renbp (pp) Gpnmb", "SUID" : 657560, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657682", "source" : "588480", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) C1qb", "weight" : 0.400327786989, "name" : "Renbp (pp) C1qb", "shared_name" : "Renbp (pp) C1qb", "SUID" : 657682, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657574", "source" : "588480", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) Axl", "weight" : 0.59613780481, "name" : "Renbp (pp) Axl", "shared_name" : "Renbp (pp) Axl", "SUID" : 657574, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657634", "source" : "588480", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) Cfp", "weight" : 0.433579354798, "name" : "Renbp (pp) Cfp", "shared_name" : "Renbp (pp) Cfp", "SUID" : 657634, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657658", "source" : "588480", "target" : "589225", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) St6gal1", "weight" : 0.449448160079, "name" : "Renbp (pp) St6gal1", "shared_name" : "Renbp (pp) St6gal1", "SUID" : 657658, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657608", "source" : "588480", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) Lgals3", "weight" : 0.59897269762, "name" : "Renbp (pp) Lgals3", "shared_name" : "Renbp (pp) Lgals3", "SUID" : 657608, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657626", "source" : "588480", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) Csrp1", "weight" : 0.494878217035, "name" : "Renbp (pp) Csrp1", "shared_name" : "Renbp (pp) Csrp1", "SUID" : 657626, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657685", "source" : "588480", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) Tspan33", "weight" : 0.424306181206, "name" : "Renbp (pp) Tspan33", "shared_name" : "Renbp (pp) Tspan33", "SUID" : 657685, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657665", "source" : "588480", "target" : "589256", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) Timp1", "weight" : 0.451368815957, "name" : "Renbp (pp) Timp1", "shared_name" : "Renbp (pp) Timp1", "SUID" : 657665, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "657673", "source" : "588480", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Renbp (pp) Clec7a", "weight" : 0.51107163731, "name" : "Renbp (pp) Clec7a", "shared_name" : "Renbp (pp) Clec7a", "SUID" : 657673, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656460", "source" : "588459", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pop5 (pp) Slc15a3", "weight" : 0.525442271061, "name" : "Pop5 (pp) Slc15a3", "shared_name" : "Pop5 (pp) Slc15a3", "SUID" : 656460, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656525", "source" : "588459", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pop5 (pp) Ear4", "weight" : 0.464992661172, "name" : "Pop5 (pp) Ear4", "shared_name" : "Pop5 (pp) Ear4", "SUID" : 656525, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656483", "source" : "588459", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pop5 (pp) Csrp1", "weight" : 0.511050587094, "name" : "Pop5 (pp) Csrp1", "shared_name" : "Pop5 (pp) Csrp1", "SUID" : 656483, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656472", "source" : "588459", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pop5 (pp) Lgals3", "weight" : 0.463696243213, "name" : "Pop5 (pp) Lgals3", "shared_name" : "Pop5 (pp) Lgals3", "SUID" : 656472, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656462", "source" : "588459", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pop5 (pp) Tmem86a", "weight" : 0.512667714146, "name" : "Pop5 (pp) Tmem86a", "shared_name" : "Pop5 (pp) Tmem86a", "SUID" : 656462, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656530", "source" : "588459", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pop5 (pp) Tspan33", "weight" : 0.650420398317, "name" : "Pop5 (pp) Tspan33", "shared_name" : "Pop5 (pp) Tspan33", "SUID" : 656530, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656467", "source" : "588459", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pop5 (pp) Cotl1", "weight" : 0.418804142413, "name" : "Pop5 (pp) Cotl1", "shared_name" : "Pop5 (pp) Cotl1", "SUID" : 656467, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656489", "source" : "588459", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pop5 (pp) Cfp", "weight" : 0.409610535099, "name" : "Pop5 (pp) Cfp", "shared_name" : "Pop5 (pp) Cfp", "SUID" : 656489, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656521", "source" : "588459", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pop5 (pp) Cd53", "weight" : 0.493376693899, "name" : "Pop5 (pp) Cd53", "shared_name" : "Pop5 (pp) Cd53", "SUID" : 656521, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656466", "source" : "588459", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pop5 (pp) Pla2g15", "weight" : 0.419181945291, "name" : "Pop5 (pp) Pla2g15", "shared_name" : "Pop5 (pp) Pla2g15", "SUID" : 656466, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656512", "source" : "588459", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pop5 (pp) Ear10", "weight" : 0.497971409257, "name" : "Pop5 (pp) Ear10", "shared_name" : "Pop5 (pp) Ear10", "SUID" : 656512, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656457", "source" : "588459", "target" : "588742", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pop5 (pp) Ifitm6", "weight" : 0.431951994481, "name" : "Pop5 (pp) Ifitm6", "shared_name" : "Pop5 (pp) Ifitm6", "SUID" : 656457, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656446", "source" : "588459", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pop5 (pp) D12Ertd553e", "weight" : 0.473151619466, "name" : "Pop5 (pp) D12Ertd553e", "shared_name" : "Pop5 (pp) D12Ertd553e", "SUID" : 656446, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656441", "source" : "588459", "target" : "588636", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pop5 (pp) Repin1", "weight" : 0.417565202, "name" : "Pop5 (pp) Repin1", "shared_name" : "Pop5 (pp) Repin1", "SUID" : 656441, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656508", "source" : "588459", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pop5 (pp) Serpinb6a", "weight" : 0.428467752161, "name" : "Pop5 (pp) Serpinb6a", "shared_name" : "Pop5 (pp) Serpinb6a", "SUID" : 656508, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656496", "source" : "588459", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pop5 (pp) Vcam1", "weight" : 0.423147587838, "name" : "Pop5 (pp) Vcam1", "shared_name" : "Pop5 (pp) Vcam1", "SUID" : 656496, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656509", "source" : "588459", "target" : "589225", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pop5 (pp) St6gal1", "weight" : 0.53855235459, "name" : "Pop5 (pp) St6gal1", "shared_name" : "Pop5 (pp) St6gal1", "SUID" : 656509, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656527", "source" : "588459", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pop5 (pp) Ly86", "weight" : 0.407535323195, "name" : "Pop5 (pp) Ly86", "shared_name" : "Pop5 (pp) Ly86", "SUID" : 656527, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656416", "source" : "588459", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pop5 (pp) Renbp", "weight" : 0.472280618726, "name" : "Pop5 (pp) Renbp", "shared_name" : "Pop5 (pp) Renbp", "SUID" : 656416, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656517", "source" : "588459", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pop5 (pp) Ppif", "weight" : 0.418173240867, "name" : "Pop5 (pp) Ppif", "shared_name" : "Pop5 (pp) Ppif", "SUID" : 656517, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656518", "source" : "588459", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pop5 (pp) Ear12", "weight" : 0.44378689479, "name" : "Pop5 (pp) Ear12", "shared_name" : "Pop5 (pp) Ear12", "SUID" : 656518, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656431", "source" : "588459", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pop5 (pp) Snn", "weight" : 0.417439251671, "name" : "Pop5 (pp) Snn", "shared_name" : "Pop5 (pp) Snn", "SUID" : 656431, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656452", "source" : "588459", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pop5 (pp) Axl", "weight" : 0.428384834321, "name" : "Pop5 (pp) Axl", "shared_name" : "Pop5 (pp) Axl", "SUID" : 656452, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656468", "source" : "588459", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pop5 (pp) Plac8", "weight" : 0.515844606, "name" : "Pop5 (pp) Plac8", "shared_name" : "Pop5 (pp) Plac8", "SUID" : 656468, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656522", "source" : "588459", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pop5 (pp) Clec7a", "weight" : 0.424957711669, "name" : "Pop5 (pp) Clec7a", "shared_name" : "Pop5 (pp) Clec7a", "SUID" : 656522, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656417", "source" : "588459", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Pop5 (pp) Plscr1", "weight" : 0.462662872027, "name" : "Pop5 (pp) Plscr1", "shared_name" : "Pop5 (pp) Plscr1", "SUID" : 656417, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655824", "source" : "588444", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Gpnmb", "weight" : 0.731991375894, "name" : "Cd63 (pp) Gpnmb", "shared_name" : "Cd63 (pp) Gpnmb", "SUID" : 655824, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655885", "source" : "588444", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Cytip", "weight" : 0.483820010834, "name" : "Cd63 (pp) Cytip", "shared_name" : "Cd63 (pp) Cytip", "SUID" : 655885, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655782", "source" : "588444", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Renbp", "weight" : 0.609729336172, "name" : "Cd63 (pp) Renbp", "shared_name" : "Cd63 (pp) Renbp", "SUID" : 655782, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655926", "source" : "588444", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Vcam1", "weight" : 0.647391693751, "name" : "Cd63 (pp) Vcam1", "shared_name" : "Cd63 (pp) Vcam1", "SUID" : 655926, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655866", "source" : "588444", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Plac8", "weight" : 0.507346358196, "name" : "Cd63 (pp) Plac8", "shared_name" : "Cd63 (pp) Plac8", "SUID" : 655866, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655931", "source" : "588444", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Tmsb4x", "weight" : 0.451856230658, "name" : "Cd63 (pp) Tmsb4x", "shared_name" : "Cd63 (pp) Tmsb4x", "SUID" : 655931, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655971", "source" : "588444", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.625339632727, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cd63 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 2.32419E-4, "weight" : 0.625339632727, "fusion" : "NA", "name" : "Cd63 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 106989.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cd63 (pp) Ear4", "combinedscore" : "NA", "SUID" : 655971, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "655810", "source" : "588444", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Tmsb10", "weight" : 0.592889586053, "name" : "Cd63 (pp) Tmsb10", "shared_name" : "Cd63 (pp) Tmsb10", "SUID" : 655810, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655974", "source" : "588444", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Prkcd", "weight" : 0.553728683012, "name" : "Cd63 (pp) Prkcd", "shared_name" : "Cd63 (pp) Prkcd", "SUID" : 655974, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655850", "source" : "588444", "target" : "588782", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.601149630847, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cd63 (pp) Slc15a3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 2.43856E-4, "weight" : 0.601149630847, "fusion" : "NA", "name" : "Cd63 (pp) Slc15a3", "neighborhood" : "NA", "sourceEdge" : 106948.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cd63 (pp) Slc15a3", "combinedscore" : "NA", "SUID" : 655850, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "655861", "source" : "588444", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Pla2g15", "weight" : 0.436220511622, "name" : "Cd63 (pp) Pla2g15", "shared_name" : "Cd63 (pp) Pla2g15", "SUID" : 655861, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655835", "source" : "588444", "target" : "588697", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.528967016156, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cd63 (pp) Cd52", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 2.380624E-4, "weight" : 0.528967016156, "fusion" : "NA", "name" : "Cd63 (pp) Cd52", "neighborhood" : "NA", "sourceEdge" : 106937.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cd63 (pp) Cd52", "combinedscore" : "NA", "SUID" : 655835, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "655787", "source" : "588444", "target" : "588496", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Gphn", "weight" : 0.529228628209, "name" : "Cd63 (pp) Gphn", "shared_name" : "Cd63 (pp) Gphn", "SUID" : 655787, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655807", "source" : "588444", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Snn", "weight" : 0.537819726292, "name" : "Cd63 (pp) Snn", "shared_name" : "Cd63 (pp) Snn", "SUID" : 655807, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655809", "source" : "588444", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Coro1a", "weight" : 0.510720417851, "name" : "Cd63 (pp) Coro1a", "shared_name" : "Cd63 (pp) Coro1a", "SUID" : 655809, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655967", "source" : "588444", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Clec7a", "weight" : 0.627460915451, "name" : "Cd63 (pp) Clec7a", "shared_name" : "Cd63 (pp) Clec7a", "SUID" : 655967, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655949", "source" : "588444", "target" : "589225", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) St6gal1", "weight" : 0.515353445797, "name" : "Cd63 (pp) St6gal1", "shared_name" : "Cd63 (pp) St6gal1", "SUID" : 655949, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655814", "source" : "588444", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Gngt2", "weight" : 0.557918747289, "name" : "Cd63 (pp) Gngt2", "shared_name" : "Cd63 (pp) Gngt2", "SUID" : 655814, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655918", "source" : "588444", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Cfp", "weight" : 0.421923940614, "name" : "Cd63 (pp) Cfp", "shared_name" : "Cd63 (pp) Cfp", "SUID" : 655918, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655783", "source" : "588444", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Plscr1", "weight" : 0.571599971867, "name" : "Cd63 (pp) Plscr1", "shared_name" : "Cd63 (pp) Plscr1", "SUID" : 655783, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655812", "source" : "588444", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Slc11a1", "weight" : 0.439372258708, "name" : "Cd63 (pp) Slc11a1", "shared_name" : "Cd63 (pp) Slc11a1", "SUID" : 655812, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655979", "source" : "588444", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Fblim1", "weight" : 0.461404886523, "name" : "Cd63 (pp) Fblim1", "shared_name" : "Cd63 (pp) Fblim1", "SUID" : 655979, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655854", "source" : "588444", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Tmem86a", "weight" : 0.598918619958, "name" : "Cd63 (pp) Tmem86a", "shared_name" : "Cd63 (pp) Tmem86a", "SUID" : 655854, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655980", "source" : "588444", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Tspan33", "weight" : 0.469419101145, "name" : "Cd63 (pp) Tspan33", "shared_name" : "Cd63 (pp) Tspan33", "SUID" : 655980, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655817", "source" : "588444", "target" : "588620", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Olfml3", "weight" : 0.452264426599, "name" : "Cd63 (pp) Olfml3", "shared_name" : "Cd63 (pp) Olfml3", "SUID" : 655817, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655864", "source" : "588444", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Cotl1", "weight" : 0.780377544009, "name" : "Cd63 (pp) Cotl1", "shared_name" : "Cd63 (pp) Cotl1", "SUID" : 655864, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655830", "source" : "588444", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) 5033414D02Rik", "weight" : 0.45524560545, "name" : "Cd63 (pp) 5033414D02Rik", "shared_name" : "Cd63 (pp) 5033414D02Rik", "SUID" : 655830, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655976", "source" : "588444", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Ly86", "weight" : 0.459670170479, "name" : "Cd63 (pp) Ly86", "shared_name" : "Cd63 (pp) Ly86", "SUID" : 655976, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655876", "source" : "588444", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Lgals3", "weight" : 0.668979169389, "name" : "Cd63 (pp) Lgals3", "shared_name" : "Cd63 (pp) Lgals3", "SUID" : 655876, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655904", "source" : "588444", "target" : "589005", "homology" : "NA", "shared_interaction" : "NA", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.714110622491, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cd63 (pp) Csrp1", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 2.854567E-4, "weight" : 0.714110622491, "fusion" : "NA", "name" : "Cd63 (pp) Csrp1", "neighborhood" : "NA", "sourceEdge" : 106965.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cd63 (pp) Csrp1", "combinedscore" : "NA", "SUID" : 655904, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "NA", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "655952", "source" : "588444", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Ear10", "weight" : 0.41366289808, "name" : "Cd63 (pp) Ear10", "shared_name" : "Cd63 (pp) Ear10", "SUID" : 655952, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655916", "source" : "588444", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Btk", "weight" : 0.401037301596, "name" : "Cd63 (pp) Btk", "shared_name" : "Cd63 (pp) Btk", "SUID" : 655916, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655958", "source" : "588444", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Ppif", "weight" : 0.466053290894, "name" : "Cd63 (pp) Ppif", "shared_name" : "Cd63 (pp) Ppif", "SUID" : 655958, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655837", "source" : "588444", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) 6330416G13Rik", "weight" : 0.401094759207, "name" : "Cd63 (pp) 6330416G13Rik", "shared_name" : "Cd63 (pp) 6330416G13Rik", "SUID" : 655837, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655839", "source" : "588444", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Tlr2", "weight" : 0.479172503003, "name" : "Cd63 (pp) Tlr2", "shared_name" : "Cd63 (pp) Tlr2", "SUID" : 655839, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655964", "source" : "588444", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Fcgr4", "weight" : 0.440962463989, "name" : "Cd63 (pp) Fcgr4", "shared_name" : "Cd63 (pp) Fcgr4", "SUID" : 655964, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655956", "source" : "588444", "target" : "589256", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Timp1", "weight" : 0.514484117529, "name" : "Cd63 (pp) Timp1", "shared_name" : "Cd63 (pp) Timp1", "SUID" : 655956, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655857", "source" : "588444", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Obrgrp", "weight" : 0.496502864639, "name" : "Cd63 (pp) Obrgrp", "shared_name" : "Cd63 (pp) Obrgrp", "SUID" : 655857, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655947", "source" : "588444", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Serpinb6a", "weight" : 0.62618503467, "name" : "Cd63 (pp) Serpinb6a", "shared_name" : "Cd63 (pp) Serpinb6a", "SUID" : 655947, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655803", "source" : "588444", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Cd86", "weight" : 0.415453917312, "name" : "Cd63 (pp) Cd86", "shared_name" : "Cd63 (pp) Cd86", "SUID" : 655803, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655776", "source" : "588444", "target" : "588459", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Pop5", "weight" : 0.476048449223, "name" : "Cd63 (pp) Pop5", "shared_name" : "Cd63 (pp) Pop5", "SUID" : 655776, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655955", "source" : "588444", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Trem2", "weight" : 0.643738552434, "name" : "Cd63 (pp) Trem2", "shared_name" : "Cd63 (pp) Trem2", "SUID" : 655955, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655840", "source" : "588444", "target" : "588727", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.634746415428, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Cd63 (pp) Axl", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 7.14529E-7, "weight" : 0.634746415428, "fusion" : "NA", "name" : "Cd63 (pp) Axl", "neighborhood" : "NA", "sourceEdge" : 106942.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Cd63 (pp) Axl", "combinedscore" : "NA", "SUID" : 655840, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "655977", "source" : "588444", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) C1qb", "weight" : 0.459828229313, "name" : "Cd63 (pp) C1qb", "shared_name" : "Cd63 (pp) C1qb", "SUID" : 655977, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655870", "source" : "588444", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Fcgr3", "weight" : 0.456230923657, "name" : "Cd63 (pp) Fcgr3", "shared_name" : "Cd63 (pp) Fcgr3", "SUID" : 655870, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655831", "source" : "588444", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) D12Ertd553e", "weight" : 0.410053368886, "name" : "Cd63 (pp) D12Ertd553e", "shared_name" : "Cd63 (pp) D12Ertd553e", "SUID" : 655831, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655962", "source" : "588444", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Ear12", "weight" : 0.583258682572, "name" : "Cd63 (pp) Ear12", "shared_name" : "Cd63 (pp) Ear12", "SUID" : 655962, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655853", "source" : "588444", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Ccl6", "weight" : 0.4102361399, "name" : "Cd63 (pp) Ccl6", "shared_name" : "Cd63 (pp) Ccl6", "SUID" : 655853, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655868", "source" : "588444", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Fcer1g", "weight" : 0.523068602344, "name" : "Cd63 (pp) Fcer1g", "shared_name" : "Cd63 (pp) Fcer1g", "SUID" : 655868, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655981", "source" : "588444", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Lrrc33", "weight" : 0.407568648293, "name" : "Cd63 (pp) Lrrc33", "shared_name" : "Cd63 (pp) Lrrc33", "SUID" : 655981, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "655842", "source" : "588444", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cd63 (pp) Tpm4", "weight" : 0.450133477973, "name" : "Cd63 (pp) Tpm4", "shared_name" : "Cd63 (pp) Tpm4", "SUID" : 655842, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651136", "source" : "588378", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Coro1a", "weight" : 0.606230126349, "name" : "Selplg (pp) Coro1a", "shared_name" : "Selplg (pp) Coro1a", "SUID" : 651136, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651295", "source" : "588378", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Lrrc33", "weight" : 0.402238586892, "name" : "Selplg (pp) Lrrc33", "shared_name" : "Selplg (pp) Lrrc33", "SUID" : 651295, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651176", "source" : "588378", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) 5430435G22Rik", "weight" : 0.456489098777, "name" : "Selplg (pp) 5430435G22Rik", "shared_name" : "Selplg (pp) 5430435G22Rik", "SUID" : 651176, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651186", "source" : "588378", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Cotl1", "weight" : 0.68933988725, "name" : "Selplg (pp) Cotl1", "shared_name" : "Selplg (pp) Cotl1", "SUID" : 651186, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651188", "source" : "588378", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Plac8", "weight" : 0.612855617328, "name" : "Selplg (pp) Plac8", "shared_name" : "Selplg (pp) Plac8", "SUID" : 651188, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651158", "source" : "588378", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Cd52", "weight" : 0.710470372617, "name" : "Selplg (pp) Cd52", "shared_name" : "Selplg (pp) Cd52", "SUID" : 651158, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651122", "source" : "588378", "target" : "588512", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) H2-Eb1", "weight" : 0.435651879837, "name" : "Selplg (pp) H2-Eb1", "shared_name" : "Selplg (pp) H2-Eb1", "SUID" : 651122, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651163", "source" : "588378", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Tlr2", "weight" : 0.495142810995, "name" : "Selplg (pp) Tlr2", "shared_name" : "Selplg (pp) Tlr2", "SUID" : 651163, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651180", "source" : "588378", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Obrgrp", "weight" : 0.544420863869, "name" : "Selplg (pp) Obrgrp", "shared_name" : "Selplg (pp) Obrgrp", "SUID" : 651180, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651106", "source" : "588378", "target" : "588439", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Vim", "weight" : 0.418812254919, "name" : "Selplg (pp) Vim", "shared_name" : "Selplg (pp) Vim", "SUID" : 651106, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651280", "source" : "588378", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Fcgr4", "weight" : 0.691115596496, "name" : "Selplg (pp) Fcgr4", "shared_name" : "Selplg (pp) Fcgr4", "SUID" : 651280, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651253", "source" : "588378", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Rasgrp1", "weight" : 0.449825632055, "name" : "Selplg (pp) Rasgrp1", "shared_name" : "Selplg (pp) Rasgrp1", "SUID" : 651253, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651169", "source" : "588378", "target" : "588742", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Ifitm6", "weight" : 0.41911620398, "name" : "Selplg (pp) Ifitm6", "shared_name" : "Selplg (pp) Ifitm6", "SUID" : 651169, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651248", "source" : "588378", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Tmsb4x", "weight" : 0.590501499894, "name" : "Selplg (pp) Tmsb4x", "shared_name" : "Selplg (pp) Tmsb4x", "SUID" : 651248, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651098", "source" : "588378", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Cd14", "weight" : 0.499447228596, "name" : "Selplg (pp) Cd14", "shared_name" : "Selplg (pp) Cd14", "SUID" : 651098, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651157", "source" : "588378", "target" : "588678", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Fxyd5", "weight" : 0.441564495003, "name" : "Selplg (pp) Fxyd5", "shared_name" : "Selplg (pp) Fxyd5", "SUID" : 651157, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651291", "source" : "588378", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) C1qb", "weight" : 0.639614366325, "name" : "Selplg (pp) C1qb", "shared_name" : "Selplg (pp) C1qb", "SUID" : 651291, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651290", "source" : "588378", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Ly86", "weight" : 0.664794075325, "name" : "Selplg (pp) Ly86", "shared_name" : "Selplg (pp) Ly86", "SUID" : 651290, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651130", "source" : "588378", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Cd86", "weight" : 0.593991334902, "name" : "Selplg (pp) Cd86", "shared_name" : "Selplg (pp) Cd86", "SUID" : 651130, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651138", "source" : "588378", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Slc11a1", "weight" : 0.574724727169, "name" : "Selplg (pp) Slc11a1", "shared_name" : "Selplg (pp) Slc11a1", "SUID" : 651138, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651178", "source" : "588378", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Tmem86a", "weight" : 0.619610097515, "name" : "Selplg (pp) Tmem86a", "shared_name" : "Selplg (pp) Tmem86a", "SUID" : 651178, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651297", "source" : "588378", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Lmo2", "weight" : 0.431706965996, "name" : "Selplg (pp) Lmo2", "shared_name" : "Selplg (pp) Lmo2", "SUID" : 651297, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651145", "source" : "588378", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Casp1", "weight" : 0.50867471948, "name" : "Selplg (pp) Casp1", "shared_name" : "Selplg (pp) Casp1", "SUID" : 651145, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651164", "source" : "588378", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Axl", "weight" : 0.693936694741, "name" : "Selplg (pp) Axl", "shared_name" : "Selplg (pp) Axl", "SUID" : 651164, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651144", "source" : "588378", "target" : "588620", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Olfml3", "weight" : 0.426175223249, "name" : "Selplg (pp) Olfml3", "shared_name" : "Selplg (pp) Olfml3", "SUID" : 651144, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651137", "source" : "588378", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Tmsb10", "weight" : 0.519255468191, "name" : "Selplg (pp) Tmsb10", "shared_name" : "Selplg (pp) Tmsb10", "SUID" : 651137, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651265", "source" : "588378", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Serpinb6a", "weight" : 0.546234966227, "name" : "Selplg (pp) Serpinb6a", "shared_name" : "Selplg (pp) Serpinb6a", "SUID" : 651265, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651283", "source" : "588378", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Clec7a", "weight" : 0.521168208536, "name" : "Selplg (pp) Clec7a", "shared_name" : "Selplg (pp) Clec7a", "SUID" : 651283, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651154", "source" : "588378", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) 5033414D02Rik", "weight" : 0.613052442352, "name" : "Selplg (pp) 5033414D02Rik", "shared_name" : "Selplg (pp) 5033414D02Rik", "SUID" : 651154, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651134", "source" : "588378", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Snn", "weight" : 0.547404351427, "name" : "Selplg (pp) Snn", "shared_name" : "Selplg (pp) Snn", "SUID" : 651134, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651303", "source" : "588378", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Il10ra", "weight" : 0.43947078736, "name" : "Selplg (pp) Il10ra", "shared_name" : "Selplg (pp) Il10ra", "SUID" : 651303, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651204", "source" : "588378", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) C1qc", "weight" : 0.43962738761, "name" : "Selplg (pp) C1qc", "shared_name" : "Selplg (pp) C1qc", "SUID" : 651204, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651239", "source" : "588378", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Snx10", "weight" : 0.461374665049, "name" : "Selplg (pp) Snx10", "shared_name" : "Selplg (pp) Snx10", "SUID" : 651239, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651205", "source" : "588378", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Hk3", "weight" : 0.638600338739, "name" : "Selplg (pp) Hk3", "shared_name" : "Selplg (pp) Hk3", "SUID" : 651205, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651174", "source" : "588378", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Slc15a3", "weight" : 0.707271472238, "name" : "Selplg (pp) Slc15a3", "shared_name" : "Selplg (pp) Slc15a3", "SUID" : 651174, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651285", "source" : "588378", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Ear4", "weight" : 0.652190421826, "name" : "Selplg (pp) Ear4", "shared_name" : "Selplg (pp) Ear4", "SUID" : 651285, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651162", "source" : "588378", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Serpina3g", "weight" : 0.580074558198, "name" : "Selplg (pp) Serpina3g", "shared_name" : "Selplg (pp) Serpina3g", "SUID" : 651162, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651140", "source" : "588378", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Gngt2", "weight" : 0.645547956034, "name" : "Selplg (pp) Gngt2", "shared_name" : "Selplg (pp) Gngt2", "SUID" : 651140, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651221", "source" : "588378", "target" : "589030", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Soat1", "weight" : 0.411217215865, "name" : "Selplg (pp) Soat1", "shared_name" : "Selplg (pp) Soat1", "SUID" : 651221, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651211", "source" : "588378", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) H2-DMb1", "weight" : 0.491297453286, "name" : "Selplg (pp) H2-DMb1", "shared_name" : "Selplg (pp) H2-DMb1", "SUID" : 651211, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651113", "source" : "588378", "target" : "588472", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Ly9", "weight" : 0.450909043769, "name" : "Selplg (pp) Ly9", "shared_name" : "Selplg (pp) Ly9", "SUID" : 651113, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651278", "source" : "588378", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Ear12", "weight" : 0.533149040976, "name" : "Selplg (pp) Ear12", "shared_name" : "Selplg (pp) Ear12", "SUID" : 651278, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651206", "source" : "588378", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Cytip", "weight" : 0.593430243734, "name" : "Selplg (pp) Cytip", "shared_name" : "Selplg (pp) Cytip", "SUID" : 651206, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651107", "source" : "588378", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Cd63", "weight" : 0.517495702541, "name" : "Selplg (pp) Cd63", "shared_name" : "Selplg (pp) Cd63", "SUID" : 651107, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651269", "source" : "588378", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Ear10", "weight" : 0.481352643501, "name" : "Selplg (pp) Ear10", "shared_name" : "Selplg (pp) Ear10", "SUID" : 651269, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651272", "source" : "588378", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Trem2", "weight" : 0.536407105684, "name" : "Selplg (pp) Trem2", "shared_name" : "Selplg (pp) Trem2", "SUID" : 651272, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651167", "source" : "588378", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Vsig4", "weight" : 0.505461424723, "name" : "Selplg (pp) Vsig4", "shared_name" : "Selplg (pp) Vsig4", "SUID" : 651167, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651244", "source" : "588378", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Vcam1", "weight" : 0.648288629411, "name" : "Selplg (pp) Vcam1", "shared_name" : "Selplg (pp) Vcam1", "SUID" : 651244, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651190", "source" : "588378", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Fcer1g", "weight" : 0.671121644141, "name" : "Selplg (pp) Fcer1g", "shared_name" : "Selplg (pp) Fcer1g", "SUID" : 651190, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651116", "source" : "588378", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Plscr1", "weight" : 0.521165313549, "name" : "Selplg (pp) Plscr1", "shared_name" : "Selplg (pp) Plscr1", "SUID" : 651116, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651197", "source" : "588378", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Lgals3", "weight" : 0.7047867876, "name" : "Selplg (pp) Lgals3", "shared_name" : "Selplg (pp) Lgals3", "SUID" : 651197, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651268", "source" : "588378", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) H2-DMa", "weight" : 0.525143949054, "name" : "Selplg (pp) H2-DMa", "shared_name" : "Selplg (pp) H2-DMa", "SUID" : 651268, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651118", "source" : "588378", "target" : "588492", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Ncf4", "weight" : 0.482193533382, "name" : "Selplg (pp) Ncf4", "shared_name" : "Selplg (pp) Ncf4", "SUID" : 651118, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651234", "source" : "588378", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Cfp", "weight" : 0.619312696082, "name" : "Selplg (pp) Cfp", "shared_name" : "Selplg (pp) Cfp", "SUID" : 651234, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651149", "source" : "588378", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Gpnmb", "weight" : 0.591204705435, "name" : "Selplg (pp) Gpnmb", "shared_name" : "Selplg (pp) Gpnmb", "SUID" : 651149, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651232", "source" : "588378", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Btk", "weight" : 0.484831390626, "name" : "Selplg (pp) Btk", "shared_name" : "Selplg (pp) Btk", "SUID" : 651232, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651237", "source" : "588378", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Pld4", "weight" : 0.492888209745, "name" : "Selplg (pp) Pld4", "shared_name" : "Selplg (pp) Pld4", "SUID" : 651237, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651166", "source" : "588378", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Tpm4", "weight" : 0.476741824467, "name" : "Selplg (pp) Tpm4", "shared_name" : "Selplg (pp) Tpm4", "SUID" : 651166, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651220", "source" : "588378", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Csrp1", "weight" : 0.584527806495, "name" : "Selplg (pp) Csrp1", "shared_name" : "Selplg (pp) Csrp1", "SUID" : 651220, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651095", "source" : "588378", "target" : "588394", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Lyzs", "weight" : 0.476534446873, "name" : "Selplg (pp) Lyzs", "shared_name" : "Selplg (pp) Lyzs", "SUID" : 651095, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651293", "source" : "588378", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Fblim1", "weight" : 0.531222040928, "name" : "Selplg (pp) Fblim1", "shared_name" : "Selplg (pp) Fblim1", "SUID" : 651293, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651277", "source" : "588378", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Abi3", "weight" : 0.476426017592, "name" : "Selplg (pp) Abi3", "shared_name" : "Selplg (pp) Abi3", "SUID" : 651277, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "651104", "source" : "588378", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Selplg (pp) Clec4n", "weight" : 0.621733392605, "name" : "Selplg (pp) Clec4n", "shared_name" : "Selplg (pp) Clec4n", "SUID" : 651104, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666394", "source" : "588626", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) Plac8", "weight" : 0.565103755342, "name" : "Casp1 (pp) Plac8", "shared_name" : "Casp1 (pp) Plac8", "SUID" : 666394, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666387", "source" : "588626", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) 5430435G22Rik", "weight" : 0.457033656471, "name" : "Casp1 (pp) 5430435G22Rik", "shared_name" : "Casp1 (pp) 5430435G22Rik", "SUID" : 666387, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666401", "source" : "588626", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) H2-DMb1", "weight" : 0.533658599355, "name" : "Casp1 (pp) H2-DMb1", "shared_name" : "Casp1 (pp) H2-DMb1", "SUID" : 666401, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666385", "source" : "588626", "target" : "588740", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) Plekha2", "weight" : 0.422074360164, "name" : "Casp1 (pp) Plekha2", "shared_name" : "Casp1 (pp) Plekha2", "SUID" : 666385, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666406", "source" : "588626", "target" : "589076", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) H2-M3", "weight" : 0.459253891848, "name" : "Casp1 (pp) H2-M3", "shared_name" : "Casp1 (pp) H2-M3", "SUID" : 666406, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666432", "source" : "588626", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) Lrrc33", "weight" : 0.402363306589, "name" : "Casp1 (pp) Lrrc33", "shared_name" : "Casp1 (pp) Lrrc33", "SUID" : 666432, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666374", "source" : "588626", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) 5033414D02Rik", "weight" : 0.552482498146, "name" : "Casp1 (pp) 5033414D02Rik", "shared_name" : "Casp1 (pp) 5033414D02Rik", "SUID" : 666374, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666377", "source" : "588626", "target" : "588697", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.681382648939, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Casp1 (pp) Cd52", "identifier" : "NA", "node2stringid" : "NA", "weight" : 0.681382648939, "fusion" : "NA", "name" : "Casp1 (pp) Cd52", "neighborhood" : "NA", "sourceEdge" : 123701.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Casp1 (pp) Cd52", "combinedscore" : "NA", "SUID" : 666377, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 0.001224656, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "666398", "source" : "588626", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) C1qc", "weight" : 0.464863028924, "name" : "Casp1 (pp) C1qc", "shared_name" : "Casp1 (pp) C1qc", "SUID" : 666398, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666413", "source" : "588626", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) Vcam1", "weight" : 0.496576983296, "name" : "Casp1 (pp) Vcam1", "shared_name" : "Casp1 (pp) Vcam1", "SUID" : 666413, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666393", "source" : "588626", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) Cotl1", "weight" : 0.426192448308, "name" : "Casp1 (pp) Cotl1", "shared_name" : "Casp1 (pp) Cotl1", "SUID" : 666393, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666429", "source" : "588626", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) Ly86", "weight" : 0.504033829651, "name" : "Casp1 (pp) Ly86", "shared_name" : "Casp1 (pp) Ly86", "SUID" : 666429, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666420", "source" : "588626", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) H2-DMa", "weight" : 0.629313391893, "name" : "Casp1 (pp) H2-DMa", "shared_name" : "Casp1 (pp) H2-DMa", "SUID" : 666420, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666389", "source" : "588626", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) Tmem86a", "weight" : 0.433738727945, "name" : "Casp1 (pp) Tmem86a", "shared_name" : "Casp1 (pp) Tmem86a", "SUID" : 666389, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666381", "source" : "588626", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) Tlr2", "weight" : 0.452952085611, "name" : "Casp1 (pp) Tlr2", "shared_name" : "Casp1 (pp) Tlr2", "SUID" : 666381, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666408", "source" : "588626", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) Cfp", "weight" : 0.51661445606, "name" : "Casp1 (pp) Cfp", "shared_name" : "Casp1 (pp) Cfp", "SUID" : 666408, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666384", "source" : "588626", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) Vsig4", "weight" : 0.713481682048, "name" : "Casp1 (pp) Vsig4", "shared_name" : "Casp1 (pp) Vsig4", "SUID" : 666384, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666400", "source" : "588626", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) Cytip", "weight" : 0.543446506683, "name" : "Casp1 (pp) Cytip", "shared_name" : "Casp1 (pp) Cytip", "SUID" : 666400, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666423", "source" : "588626", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) Abi3", "weight" : 0.520332372284, "name" : "Casp1 (pp) Abi3", "shared_name" : "Casp1 (pp) Abi3", "SUID" : 666423, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666383", "source" : "588626", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) Tpm4", "weight" : 0.412276921892, "name" : "Casp1 (pp) Tpm4", "shared_name" : "Casp1 (pp) Tpm4", "SUID" : 666383, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666382", "source" : "588626", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) Axl", "weight" : 0.546207099269, "name" : "Casp1 (pp) Axl", "shared_name" : "Casp1 (pp) Axl", "SUID" : 666382, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666405", "source" : "588626", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) Csrp1", "weight" : 0.420871456757, "name" : "Casp1 (pp) Csrp1", "shared_name" : "Casp1 (pp) Csrp1", "SUID" : 666405, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666399", "source" : "588626", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) Hk3", "weight" : 0.613707171766, "name" : "Casp1 (pp) Hk3", "shared_name" : "Casp1 (pp) Hk3", "SUID" : 666399, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666427", "source" : "588626", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) Clec7a", "weight" : 0.426648396658, "name" : "Casp1 (pp) Clec7a", "shared_name" : "Casp1 (pp) Clec7a", "SUID" : 666427, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666397", "source" : "588626", "target" : "588886", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.51139540499, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Casp1 (pp) Lgals3", "identifier" : "NA", "node2stringid" : "NA", "weight" : 0.51139540499, "fusion" : "NA", "name" : "Casp1 (pp) Lgals3", "neighborhood" : "NA", "sourceEdge" : 123722.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Casp1 (pp) Lgals3", "combinedscore" : "NA", "SUID" : 666397, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 1.414131E-4, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "666415", "source" : "588626", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) Rasgrp1", "weight" : 0.604505306862, "name" : "Casp1 (pp) Rasgrp1", "shared_name" : "Casp1 (pp) Rasgrp1", "SUID" : 666415, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666409", "source" : "588626", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) Pld4", "weight" : 0.402472203708, "name" : "Casp1 (pp) Pld4", "shared_name" : "Casp1 (pp) Pld4", "SUID" : 666409, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666414", "source" : "588626", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) Tmsb4x", "weight" : 0.451416997515, "name" : "Casp1 (pp) Tmsb4x", "shared_name" : "Casp1 (pp) Tmsb4x", "SUID" : 666414, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666378", "source" : "588626", "target" : "588707", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) Cxcl9", "weight" : 0.50878223741, "name" : "Casp1 (pp) Cxcl9", "shared_name" : "Casp1 (pp) Cxcl9", "SUID" : 666378, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666428", "source" : "588626", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.546967514426, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Casp1 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "weight" : 0.546967514426, "fusion" : "NA", "name" : "Casp1 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 123753.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Casp1 (pp) Ear4", "combinedscore" : "NA", "SUID" : 666428, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 0.001047058, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "666386", "source" : "588626", "target" : "588782", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.537222536106, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Casp1 (pp) Slc15a3", "identifier" : "NA", "node2stringid" : "NA", "weight" : 0.537222536106, "fusion" : "NA", "name" : "Casp1 (pp) Slc15a3", "neighborhood" : "NA", "sourceEdge" : 123712.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Casp1 (pp) Slc15a3", "combinedscore" : "NA", "SUID" : 666386, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 0.001038282, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "666421", "source" : "588626", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) Ear10", "weight" : 0.48361410367, "name" : "Casp1 (pp) Ear10", "shared_name" : "Casp1 (pp) Ear10", "SUID" : 666421, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666425", "source" : "588626", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) Fcgr4", "weight" : 0.696476819962, "name" : "Casp1 (pp) Fcgr4", "shared_name" : "Casp1 (pp) Fcgr4", "SUID" : 666425, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666375", "source" : "588626", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) D12Ertd553e", "weight" : 0.42690253642, "name" : "Casp1 (pp) D12Ertd553e", "shared_name" : "Casp1 (pp) D12Ertd553e", "SUID" : 666375, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666395", "source" : "588626", "target" : "588860", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.596692239359, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Casp1 (pp) Fcer1g", "identifier" : "NA", "node2stringid" : "NA", "weight" : 0.596692239359, "fusion" : "NA", "name" : "Casp1 (pp) Fcer1g", "neighborhood" : "NA", "sourceEdge" : 123720.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Casp1 (pp) Fcer1g", "combinedscore" : "NA", "SUID" : 666395, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 3.451972E-4, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "666380", "source" : "588626", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) Serpina3g", "weight" : 0.64165851305, "name" : "Casp1 (pp) Serpina3g", "shared_name" : "Casp1 (pp) Serpina3g", "SUID" : 666380, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "666430", "source" : "588626", "target" : "589344", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.707721297318, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Casp1 (pp) C1qb", "identifier" : "NA", "node2stringid" : "NA", "weight" : 0.707721297318, "fusion" : "NA", "name" : "Casp1 (pp) C1qb", "neighborhood" : "NA", "sourceEdge" : 123756.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Casp1 (pp) C1qb", "combinedscore" : "NA", "SUID" : 666430, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 4.228759E-4, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "666419", "source" : "588626", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Casp1 (pp) Serpinb6a", "weight" : 0.414275772946, "name" : "Casp1 (pp) Serpinb6a", "shared_name" : "Casp1 (pp) Serpinb6a", "SUID" : 666419, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656814", "source" : "588464", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Akr1b3 (pp) Casp1", "weight" : 0.4069313991, "name" : "Akr1b3 (pp) Casp1", "shared_name" : "Akr1b3 (pp) Casp1", "SUID" : 656814, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656859", "source" : "588464", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Akr1b3 (pp) Ear12", "weight" : 0.400948843255, "name" : "Akr1b3 (pp) Ear12", "shared_name" : "Akr1b3 (pp) Ear12", "SUID" : 656859, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656830", "source" : "588464", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Akr1b3 (pp) Tmem86a", "weight" : 0.432243373939, "name" : "Akr1b3 (pp) Tmem86a", "shared_name" : "Akr1b3 (pp) Tmem86a", "SUID" : 656830, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656846", "source" : "588464", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Akr1b3 (pp) Snx10", "weight" : 0.473335189778, "name" : "Akr1b3 (pp) Snx10", "shared_name" : "Akr1b3 (pp) Snx10", "SUID" : 656846, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656855", "source" : "588464", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Akr1b3 (pp) Ear10", "weight" : 0.561595085289, "name" : "Akr1b3 (pp) Ear10", "shared_name" : "Akr1b3 (pp) Ear10", "SUID" : 656855, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656837", "source" : "588464", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Akr1b3 (pp) Lgals3", "weight" : 0.421608440909, "name" : "Akr1b3 (pp) Lgals3", "shared_name" : "Akr1b3 (pp) Lgals3", "SUID" : 656837, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656865", "source" : "588464", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Akr1b3 (pp) Ly86", "weight" : 0.406074138019, "name" : "Akr1b3 (pp) Ly86", "shared_name" : "Akr1b3 (pp) Ly86", "SUID" : 656865, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656844", "source" : "588464", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Akr1b3 (pp) Cfp", "weight" : 0.463331426509, "name" : "Akr1b3 (pp) Cfp", "shared_name" : "Akr1b3 (pp) Cfp", "SUID" : 656844, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656860", "source" : "588464", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Akr1b3 (pp) Fcgr4", "weight" : 0.436320095003, "name" : "Akr1b3 (pp) Fcgr4", "shared_name" : "Akr1b3 (pp) Fcgr4", "SUID" : 656860, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "656843", "source" : "588464", "target" : "589030", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Akr1b3 (pp) Soat1", "weight" : 0.410291114408, "name" : "Akr1b3 (pp) Soat1", "shared_name" : "Akr1b3 (pp) Soat1", "SUID" : 656843, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590758", "source" : "587710", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Slc11a1", "weight" : 0.665912102284, "name" : "Sirpa (pp) Slc11a1", "shared_name" : "Sirpa (pp) Slc11a1", "SUID" : 590758, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590552", "source" : "587710", "target" : "587788", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Nckap1l", "weight" : 0.633873035223, "name" : "Sirpa (pp) Nckap1l", "shared_name" : "Sirpa (pp) Nckap1l", "SUID" : 590552, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590569", "source" : "587710", "target" : "587857", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Lgmn", "weight" : 0.775473022591, "name" : "Sirpa (pp) Lgmn", "shared_name" : "Sirpa (pp) Lgmn", "SUID" : 590569, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590536", "source" : "587710", "target" : "587729", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Il1a", "weight" : 0.494668144951, "name" : "Sirpa (pp) Il1a", "shared_name" : "Sirpa (pp) Il1a", "SUID" : 590536, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590855", "source" : "587710", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Csrp1", "weight" : 0.780165891361, "name" : "Sirpa (pp) Csrp1", "shared_name" : "Sirpa (pp) Csrp1", "SUID" : 590855, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590822", "source" : "587710", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Fcgr3", "weight" : 0.46960706349, "name" : "Sirpa (pp) Fcgr3", "shared_name" : "Sirpa (pp) Fcgr3", "SUID" : 590822, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590755", "source" : "587710", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Coro1a", "weight" : 0.709427961429, "name" : "Sirpa (pp) Coro1a", "shared_name" : "Sirpa (pp) Coro1a", "SUID" : 590755, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590804", "source" : "587710", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Ccl6", "weight" : 0.484415458967, "name" : "Sirpa (pp) Ccl6", "shared_name" : "Sirpa (pp) Ccl6", "SUID" : 590804, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590939", "source" : "587710", "target" : "589353", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.445503551571, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Sirpa (pp) Fblim1", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.445503551571, "fusion" : "NA", "name" : "Sirpa (pp) Fblim1", "neighborhood" : "NA", "sourceEdge" : 1227.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Sirpa (pp) Fblim1", "combinedscore" : "NA", "SUID" : 590939, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 4.123703E-4, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "590714", "source" : "587710", "target" : "588432", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Kcnk6", "weight" : 0.513366871557, "name" : "Sirpa (pp) Kcnk6", "shared_name" : "Sirpa (pp) Kcnk6", "SUID" : 590714, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590607", "source" : "587710", "target" : "588049", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Cd74", "weight" : 0.412758266972, "name" : "Sirpa (pp) Cd74", "shared_name" : "Sirpa (pp) Cd74", "SUID" : 590607, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590909", "source" : "587710", "target" : "589225", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) St6gal1", "weight" : 0.49307489301, "name" : "Sirpa (pp) St6gal1", "shared_name" : "Sirpa (pp) St6gal1", "SUID" : 590909, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590937", "source" : "587710", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) C1qb", "weight" : 0.654722069495, "name" : "Sirpa (pp) C1qb", "shared_name" : "Sirpa (pp) C1qb", "SUID" : 590937, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590661", "source" : "587710", "target" : "588257", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Sdcbp", "weight" : 0.470234855486, "name" : "Sirpa (pp) Sdcbp", "shared_name" : "Sirpa (pp) Sdcbp", "SUID" : 590661, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590795", "source" : "587710", "target" : "588740", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Plekha2", "weight" : 0.428896237373, "name" : "Sirpa (pp) Plekha2", "shared_name" : "Sirpa (pp) Plekha2", "SUID" : 590795, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590535", "source" : "587710", "target" : "587718", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Ifit2", "weight" : 0.624709086871, "name" : "Sirpa (pp) Ifit2", "shared_name" : "Sirpa (pp) Ifit2", "SUID" : 590535, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590933", "source" : "587710", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Prkcd", "weight" : 0.518174015916, "name" : "Sirpa (pp) Prkcd", "shared_name" : "Sirpa (pp) Prkcd", "SUID" : 590933, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590698", "source" : "587710", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Selplg", "weight" : 0.601849842165, "name" : "Sirpa (pp) Selplg", "shared_name" : "Sirpa (pp) Selplg", "SUID" : 590698, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590919", "source" : "587710", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Ppif", "weight" : 0.432029253388, "name" : "Sirpa (pp) Ppif", "shared_name" : "Sirpa (pp) Ppif", "SUID" : 590919, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590792", "source" : "587710", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Tpm4", "weight" : 0.576096714725, "name" : "Sirpa (pp) Tpm4", "shared_name" : "Sirpa (pp) Tpm4", "SUID" : 590792, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590941", "source" : "587710", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Lrrc33", "weight" : 0.463724142113, "name" : "Sirpa (pp) Lrrc33", "shared_name" : "Sirpa (pp) Lrrc33", "SUID" : 590941, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590836", "source" : "587710", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Hk3", "weight" : 0.537729119087, "name" : "Sirpa (pp) Hk3", "shared_name" : "Sirpa (pp) Hk3", "SUID" : 590836, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590656", "source" : "587710", "target" : "588242", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Cd83", "weight" : 0.623185791103, "name" : "Sirpa (pp) Cd83", "shared_name" : "Sirpa (pp) Cd83", "SUID" : 590656, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590554", "source" : "587710", "target" : "587798", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Ccnd1", "weight" : 0.610253158002, "name" : "Sirpa (pp) Ccnd1", "shared_name" : "Sirpa (pp) Ccnd1", "SUID" : 590554, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590787", "source" : "587710", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) 6330416G13Rik", "weight" : 0.476278981294, "name" : "Sirpa (pp) 6330416G13Rik", "shared_name" : "Sirpa (pp) 6330416G13Rik", "SUID" : 590787, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590724", "source" : "587710", "target" : "588472", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Ly9", "weight" : 0.497373267808, "name" : "Sirpa (pp) Ly9", "shared_name" : "Sirpa (pp) Ly9", "SUID" : 590724, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590877", "source" : "587710", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Snx10", "weight" : 0.440171362357, "name" : "Sirpa (pp) Snx10", "shared_name" : "Sirpa (pp) Snx10", "SUID" : 590877, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590936", "source" : "587710", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Ly86", "weight" : 0.666997463559, "name" : "Sirpa (pp) Ly86", "shared_name" : "Sirpa (pp) Ly86", "SUID" : 590936, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590940", "source" : "587710", "target" : "589357", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.451044524481, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Sirpa (pp) Tspan33", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.451044524481, "fusion" : "NA", "name" : "Sirpa (pp) Tspan33", "neighborhood" : "NA", "sourceEdge" : 1228.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Sirpa (pp) Tspan33", "combinedscore" : "NA", "SUID" : 590940, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.001069134, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "590764", "source" : "587710", "target" : "588620", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Olfml3", "weight" : 0.437790287855, "name" : "Sirpa (pp) Olfml3", "shared_name" : "Sirpa (pp) Olfml3", "SUID" : 590764, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590702", "source" : "587710", "target" : "588394", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.545193814747, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Sirpa (pp) Lyzs", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.545193814747, "fusion" : "NA", "name" : "Sirpa (pp) Lyzs", "neighborhood" : "NA", "sourceEdge" : 1139.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Sirpa (pp) Lyzs", "combinedscore" : "NA", "SUID" : 590702, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 3.785636E-4, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "590794", "source" : "587710", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Vsig4", "weight" : 0.554073561358, "name" : "Sirpa (pp) Vsig4", "shared_name" : "Sirpa (pp) Vsig4", "SUID" : 590794, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590818", "source" : "587710", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Plac8", "weight" : 0.670352610681, "name" : "Sirpa (pp) Plac8", "shared_name" : "Sirpa (pp) Plac8", "SUID" : 590818, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590684", "source" : "587710", "target" : "588335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Arpc1b", "weight" : 0.452872487371, "name" : "Sirpa (pp) Arpc1b", "shared_name" : "Sirpa (pp) Arpc1b", "SUID" : 590684, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590732", "source" : "587710", "target" : "588496", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Gphn", "weight" : 0.449879725981, "name" : "Sirpa (pp) Gphn", "shared_name" : "Sirpa (pp) Gphn", "SUID" : 590732, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590890", "source" : "587710", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Tmsb4x", "weight" : 0.652823689187, "name" : "Sirpa (pp) Tmsb4x", "shared_name" : "Sirpa (pp) Tmsb4x", "SUID" : 590890, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590543", "source" : "587710", "target" : "587756", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Lilrb4", "weight" : 0.414658495988, "name" : "Sirpa (pp) Lilrb4", "shared_name" : "Sirpa (pp) Lilrb4", "SUID" : 590543, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590668", "source" : "587710", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Ms4a6d", "weight" : 0.565374751209, "name" : "Sirpa (pp) Ms4a6d", "shared_name" : "Sirpa (pp) Ms4a6d", "SUID" : 590668, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590771", "source" : "587710", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Gpnmb", "weight" : 0.680338318245, "name" : "Sirpa (pp) Gpnmb", "shared_name" : "Sirpa (pp) Gpnmb", "SUID" : 590771, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590796", "source" : "587710", "target" : "588742", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.549798889254, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Sirpa (pp) Ifitm6", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.549798889254, "fusion" : "NA", "name" : "Sirpa (pp) Ifitm6", "neighborhood" : "NA", "sourceEdge" : 1181.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Sirpa (pp) Ifitm6", "combinedscore" : "NA", "SUID" : 590796, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 5.542564E-4, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "590930", "source" : "587710", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.721360493059, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Sirpa (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.721360493059, "fusion" : "NA", "name" : "Sirpa (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 1223.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Sirpa (pp) Ear4", "combinedscore" : "NA", "SUID" : 590930, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 2.392055E-4, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "590674", "source" : "587710", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Cxcl16", "weight" : 0.675003147991, "name" : "Sirpa (pp) Cxcl16", "shared_name" : "Sirpa (pp) Cxcl16", "SUID" : 590674, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590870", "source" : "587710", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Btk", "weight" : 0.503939828063, "name" : "Sirpa (pp) Btk", "shared_name" : "Sirpa (pp) Btk", "SUID" : 590870, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590572", "source" : "587710", "target" : "587864", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Spic", "weight" : 0.452877730958, "name" : "Sirpa (pp) Spic", "shared_name" : "Sirpa (pp) Spic", "SUID" : 590572, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590912", "source" : "587710", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Ear10", "weight" : 0.496034566622, "name" : "Sirpa (pp) Ear10", "shared_name" : "Sirpa (pp) Ear10", "SUID" : 590912, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590646", "source" : "587710", "target" : "588212", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Anxa3", "weight" : 0.494152055956, "name" : "Sirpa (pp) Anxa3", "shared_name" : "Sirpa (pp) Anxa3", "SUID" : 590646, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590626", "source" : "587710", "target" : "588113", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Tgfbr2", "weight" : 0.464444661413, "name" : "Sirpa (pp) Tgfbr2", "shared_name" : "Sirpa (pp) Tgfbr2", "SUID" : 590626, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590717", "source" : "587710", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Cd63", "weight" : 0.750118693648, "name" : "Sirpa (pp) Cd63", "shared_name" : "Sirpa (pp) Cd63", "SUID" : 590717, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590719", "source" : "587710", "target" : "588459", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Pop5", "weight" : 0.57666157391, "name" : "Sirpa (pp) Pop5", "shared_name" : "Sirpa (pp) Pop5", "SUID" : 590719, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590911", "source" : "587710", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) H2-DMa", "weight" : 0.450744422592, "name" : "Sirpa (pp) H2-DMa", "shared_name" : "Sirpa (pp) H2-DMa", "SUID" : 590911, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590629", "source" : "587710", "target" : "588134", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Mlkl", "weight" : 0.493323267003, "name" : "Sirpa (pp) Mlkl", "shared_name" : "Sirpa (pp) Mlkl", "SUID" : 590629, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590805", "source" : "587710", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Tmem86a", "weight" : 0.583324469861, "name" : "Sirpa (pp) Tmem86a", "shared_name" : "Sirpa (pp) Tmem86a", "SUID" : 590805, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590551", "source" : "587710", "target" : "587783", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Marcks", "weight" : 0.652784007431, "name" : "Sirpa (pp) Marcks", "shared_name" : "Sirpa (pp) Marcks", "SUID" : 590551, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590561", "source" : "587710", "target" : "587818", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Ifi30", "weight" : 0.655538196437, "name" : "Sirpa (pp) Ifi30", "shared_name" : "Sirpa (pp) Ifi30", "SUID" : 590561, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590633", "source" : "587710", "target" : "588147", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Ppic", "weight" : 0.489441317585, "name" : "Sirpa (pp) Ppic", "shared_name" : "Sirpa (pp) Ppic", "SUID" : 590633, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590539", "source" : "587710", "target" : "587746", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Gbp3", "weight" : 0.427497310637, "name" : "Sirpa (pp) Gbp3", "shared_name" : "Sirpa (pp) Gbp3", "SUID" : 590539, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590713", "source" : "587710", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Clec4n", "weight" : 0.691719301529, "name" : "Sirpa (pp) Clec4n", "shared_name" : "Sirpa (pp) Clec4n", "SUID" : 590713, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590916", "source" : "587710", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Trem2", "weight" : 0.49664179762, "name" : "Sirpa (pp) Trem2", "shared_name" : "Sirpa (pp) Trem2", "SUID" : 590916, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590716", "source" : "587710", "target" : "588439", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Vim", "weight" : 0.409706710035, "name" : "Sirpa (pp) Vim", "shared_name" : "Sirpa (pp) Vim", "SUID" : 590716, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590925", "source" : "587710", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Fcgr4", "weight" : 0.575455646753, "name" : "Sirpa (pp) Fcgr4", "shared_name" : "Sirpa (pp) Fcgr4", "SUID" : 590925, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590895", "source" : "587710", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Rasgrp1", "weight" : 0.490526338396, "name" : "Sirpa (pp) Rasgrp1", "shared_name" : "Sirpa (pp) Rasgrp1", "SUID" : 590895, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590779", "source" : "587710", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) D12Ertd553e", "weight" : 0.492422806385, "name" : "Sirpa (pp) D12Ertd553e", "shared_name" : "Sirpa (pp) D12Ertd553e", "SUID" : 590779, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590593", "source" : "587710", "target" : "587982", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.528402186216, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Sirpa (pp) Plekho2", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.528402186216, "fusion" : "NA", "name" : "Sirpa (pp) Plekho2", "neighborhood" : "NA", "sourceEdge" : 1100.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Sirpa (pp) Plekho2", "combinedscore" : "NA", "SUID" : 590593, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 2.896546E-4, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "590580", "source" : "587710", "target" : "587905", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Rgs1", "weight" : 0.430310856136, "name" : "Sirpa (pp) Rgs1", "shared_name" : "Sirpa (pp) Rgs1", "SUID" : 590580, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590658", "source" : "587710", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Sdc3", "weight" : 0.620139789409, "name" : "Sirpa (pp) Sdc3", "shared_name" : "Sirpa (pp) Sdc3", "SUID" : 590658, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590907", "source" : "587710", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Serpinb6a", "weight" : 0.648750006629, "name" : "Sirpa (pp) Serpinb6a", "shared_name" : "Sirpa (pp) Serpinb6a", "SUID" : 590907, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590576", "source" : "587710", "target" : "587873", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Slc8a1", "weight" : 0.530095429114, "name" : "Sirpa (pp) Slc8a1", "shared_name" : "Sirpa (pp) Slc8a1", "SUID" : 590576, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590820", "source" : "587710", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Fcer1g", "weight" : 0.709881800725, "name" : "Sirpa (pp) Fcer1g", "shared_name" : "Sirpa (pp) Fcer1g", "SUID" : 590820, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590585", "source" : "587710", "target" : "587952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Gusb", "weight" : 0.419968579063, "name" : "Sirpa (pp) Gusb", "shared_name" : "Sirpa (pp) Gusb", "SUID" : 590585, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590727", "source" : "587710", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Plscr1", "weight" : 0.627433875176, "name" : "Sirpa (pp) Plscr1", "shared_name" : "Sirpa (pp) Plscr1", "SUID" : 590727, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590927", "source" : "587710", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Cd53", "weight" : 0.442391386872, "name" : "Sirpa (pp) Cd53", "shared_name" : "Sirpa (pp) Cd53", "SUID" : 590927, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590756", "source" : "587710", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Tmsb10", "weight" : 0.627711017992, "name" : "Sirpa (pp) Tmsb10", "shared_name" : "Sirpa (pp) Tmsb10", "SUID" : 590756, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590692", "source" : "587710", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Cyp7b1", "weight" : 0.739505814645, "name" : "Sirpa (pp) Cyp7b1", "shared_name" : "Sirpa (pp) Cyp7b1", "SUID" : 590692, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590615", "source" : "587710", "target" : "588069", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.470147386045, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Sirpa (pp) A430084P05Rik", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.470147386045, "fusion" : "NA", "name" : "Sirpa (pp) A430084P05Rik", "neighborhood" : "NA", "sourceEdge" : 1107.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Sirpa (pp) A430084P05Rik", "combinedscore" : "NA", "SUID" : 590615, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 2.925966E-4, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "590689", "source" : "587710", "target" : "588351", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Ttc39a", "weight" : 0.517162707808, "name" : "Sirpa (pp) Ttc39a", "shared_name" : "Sirpa (pp) Ttc39a", "SUID" : 590689, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590837", "source" : "587710", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Cytip", "weight" : 0.601365881797, "name" : "Sirpa (pp) Cytip", "shared_name" : "Sirpa (pp) Cytip", "SUID" : 590837, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590565", "source" : "587710", "target" : "587844", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Ear2", "weight" : 0.737168599574, "name" : "Sirpa (pp) Ear2", "shared_name" : "Sirpa (pp) Ear2", "SUID" : 590565, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590736", "source" : "587710", "target" : "588512", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) H2-Eb1", "weight" : 0.419642356519, "name" : "Sirpa (pp) H2-Eb1", "shared_name" : "Sirpa (pp) H2-Eb1", "SUID" : 590736, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590816", "source" : "587710", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Cotl1", "weight" : 0.711849324321, "name" : "Sirpa (pp) Cotl1", "shared_name" : "Sirpa (pp) Cotl1", "SUID" : 590816, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590852", "source" : "587710", "target" : "588999", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Kctd12", "weight" : 0.460641579158, "name" : "Sirpa (pp) Kctd12", "shared_name" : "Sirpa (pp) Kctd12", "SUID" : 590852, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590568", "source" : "587710", "target" : "587855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Pkm2", "weight" : 0.6692189189, "name" : "Sirpa (pp) Pkm2", "shared_name" : "Sirpa (pp) Pkm2", "SUID" : 590568, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590577", "source" : "587710", "target" : "587881", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Vav1", "weight" : 0.56524206286, "name" : "Sirpa (pp) Vav1", "shared_name" : "Sirpa (pp) Vav1", "SUID" : 590577, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590885", "source" : "587710", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Vcam1", "weight" : 0.680195611067, "name" : "Sirpa (pp) Vcam1", "shared_name" : "Sirpa (pp) Vcam1", "SUID" : 590885, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590595", "source" : "587710", "target" : "587989", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Tyrobp", "weight" : 0.516664698874, "name" : "Sirpa (pp) Tyrobp", "shared_name" : "Sirpa (pp) Tyrobp", "SUID" : 590595, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590788", "source" : "587710", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Serpina3g", "weight" : 0.459192373869, "name" : "Sirpa (pp) Serpina3g", "shared_name" : "Sirpa (pp) Serpina3g", "SUID" : 590788, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590686", "source" : "587710", "target" : "588342", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Mfge8", "weight" : 0.589554203563, "name" : "Sirpa (pp) Mfge8", "shared_name" : "Sirpa (pp) Mfge8", "SUID" : 590686, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590812", "source" : "587710", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Pla2g15", "weight" : 0.472765891324, "name" : "Sirpa (pp) Pla2g15", "shared_name" : "Sirpa (pp) Pla2g15", "SUID" : 590812, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590801", "source" : "587710", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Slc15a3", "weight" : 0.741125076327, "name" : "Sirpa (pp) Slc15a3", "shared_name" : "Sirpa (pp) Slc15a3", "SUID" : 590801, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590553", "source" : "587710", "target" : "587790", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.645783001968, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Sirpa (pp) Sh3bgrl3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.645783001968, "fusion" : "NA", "name" : "Sirpa (pp) Sh3bgrl3", "neighborhood" : "NA", "sourceEdge" : 1082.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Sirpa (pp) Sh3bgrl3", "combinedscore" : "NA", "SUID" : 590553, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 2.79085E-4, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "590680", "source" : "587710", "target" : "588328", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Arhgap9", "weight" : 0.403529849245, "name" : "Sirpa (pp) Arhgap9", "shared_name" : "Sirpa (pp) Arhgap9", "SUID" : 590680, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590636", "source" : "587710", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Pip4k2a", "weight" : 0.644787148231, "name" : "Sirpa (pp) Pip4k2a", "shared_name" : "Sirpa (pp) Pip4k2a", "SUID" : 590636, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590557", "source" : "587710", "target" : "587807", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Evi2a", "weight" : 0.668467897657, "name" : "Sirpa (pp) Evi2a", "shared_name" : "Sirpa (pp) Evi2a", "SUID" : 590557, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590949", "source" : "587710", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Il10ra", "weight" : 0.423922971389, "name" : "Sirpa (pp) Il10ra", "shared_name" : "Sirpa (pp) Il10ra", "SUID" : 590949, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590618", "source" : "587710", "target" : "588086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Iqgap1", "weight" : 0.722750895607, "name" : "Sirpa (pp) Iqgap1", "shared_name" : "Sirpa (pp) Iqgap1", "SUID" : 590618, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590749", "source" : "587710", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Cd86", "weight" : 0.55599552937, "name" : "Sirpa (pp) Cd86", "shared_name" : "Sirpa (pp) Cd86", "SUID" : 590749, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590639", "source" : "587710", "target" : "588185", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Aif1", "weight" : 0.452641027649, "name" : "Sirpa (pp) Aif1", "shared_name" : "Sirpa (pp) Aif1", "SUID" : 590639, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590678", "source" : "587710", "target" : "588322", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Pfkfb4", "weight" : 0.539987471613, "name" : "Sirpa (pp) Pfkfb4", "shared_name" : "Sirpa (pp) Pfkfb4", "SUID" : 590678, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590567", "source" : "587710", "target" : "587851", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Sh3kbp1", "weight" : 0.541574201407, "name" : "Sirpa (pp) Sh3kbp1", "shared_name" : "Sirpa (pp) Sh3kbp1", "SUID" : 590567, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590760", "source" : "587710", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Gngt2", "weight" : 0.647316563408, "name" : "Sirpa (pp) Gngt2", "shared_name" : "Sirpa (pp) Gngt2", "SUID" : 590760, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590882", "source" : "587710", "target" : "589113", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Ms4a7", "weight" : 0.490610162934, "name" : "Sirpa (pp) Ms4a7", "shared_name" : "Sirpa (pp) Ms4a7", "SUID" : 590882, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590589", "source" : "587710", "target" : "587966", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Cyba", "weight" : 0.695075675714, "name" : "Sirpa (pp) Cyba", "shared_name" : "Sirpa (pp) Cyba", "SUID" : 590589, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590778", "source" : "587710", "target" : "588664", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.689645526552, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Sirpa (pp) 5033414D02Rik", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.689645526552, "fusion" : "NA", "name" : "Sirpa (pp) 5033414D02Rik", "neighborhood" : "NA", "sourceEdge" : 1168.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Sirpa (pp) 5033414D02Rik", "combinedscore" : "NA", "SUID" : 590778, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 2.818183E-4, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "590598", "source" : "587710", "target" : "588010", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Cd84", "weight" : 0.422902649362, "name" : "Sirpa (pp) Cd84", "shared_name" : "Sirpa (pp) Cd84", "SUID" : 590598, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590917", "source" : "587710", "target" : "589256", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Timp1", "weight" : 0.45651586185, "name" : "Sirpa (pp) Timp1", "shared_name" : "Sirpa (pp) Timp1", "SUID" : 590917, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590789", "source" : "587710", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Tlr2", "weight" : 0.631839015285, "name" : "Sirpa (pp) Tlr2", "shared_name" : "Sirpa (pp) Tlr2", "SUID" : 590789, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590545", "source" : "587710", "target" : "587759", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Rab8b", "weight" : 0.711620480226, "name" : "Sirpa (pp) Rab8b", "shared_name" : "Sirpa (pp) Rab8b", "SUID" : 590545, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590829", "source" : "587710", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Lgals3", "weight" : 0.751927271477, "name" : "Sirpa (pp) Lgals3", "shared_name" : "Sirpa (pp) Lgals3", "SUID" : 590829, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590768", "source" : "587710", "target" : "588636", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Repin1", "weight" : 0.402866434865, "name" : "Sirpa (pp) Repin1", "shared_name" : "Sirpa (pp) Repin1", "SUID" : 590768, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590923", "source" : "587710", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Ear12", "weight" : 0.548855276813, "name" : "Sirpa (pp) Ear12", "shared_name" : "Sirpa (pp) Ear12", "SUID" : 590923, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590835", "source" : "587710", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) C1qc", "weight" : 0.578659578057, "name" : "Sirpa (pp) C1qc", "shared_name" : "Sirpa (pp) C1qc", "SUID" : 590835, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590634", "source" : "587710", "target" : "588151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Ccl4", "weight" : 0.48425588582, "name" : "Sirpa (pp) Ccl4", "shared_name" : "Sirpa (pp) Ccl4", "SUID" : 590634, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590872", "source" : "587710", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Cfp", "weight" : 0.640947046151, "name" : "Sirpa (pp) Cfp", "shared_name" : "Sirpa (pp) Cfp", "SUID" : 590872, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590928", "source" : "587710", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Clec7a", "weight" : 0.544637400546, "name" : "Sirpa (pp) Clec7a", "shared_name" : "Sirpa (pp) Clec7a", "SUID" : 590928, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590753", "source" : "587710", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Snn", "weight" : 0.602172273497, "name" : "Sirpa (pp) Snn", "shared_name" : "Sirpa (pp) Snn", "SUID" : 590753, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590739", "source" : "587710", "target" : "588517", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Rac2", "weight" : 0.436041851649, "name" : "Sirpa (pp) Rac2", "shared_name" : "Sirpa (pp) Rac2", "SUID" : 590739, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590602", "source" : "587710", "target" : "588024", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Cd68", "weight" : 0.505857201676, "name" : "Sirpa (pp) Cd68", "shared_name" : "Sirpa (pp) Cd68", "SUID" : 590602, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590628", "source" : "587710", "target" : "588127", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Lpxn", "weight" : 0.495959647072, "name" : "Sirpa (pp) Lpxn", "shared_name" : "Sirpa (pp) Lpxn", "SUID" : 590628, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590728", "source" : "587710", "target" : "588490", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Arhgap30", "weight" : 0.47694235015, "name" : "Sirpa (pp) Arhgap30", "shared_name" : "Sirpa (pp) Arhgap30", "SUID" : 590728, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590726", "source" : "587710", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Renbp", "weight" : 0.501766700954, "name" : "Sirpa (pp) Renbp", "shared_name" : "Sirpa (pp) Renbp", "SUID" : 590726, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590653", "source" : "587710", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Laptm5", "weight" : 0.663956380118, "name" : "Sirpa (pp) Laptm5", "shared_name" : "Sirpa (pp) Laptm5", "SUID" : 590653, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590657", "source" : "587710", "target" : "588244", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.622476797417, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Sirpa (pp) Gltp", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.622476797417, "fusion" : "NA", "name" : "Sirpa (pp) Gltp", "neighborhood" : "NA", "sourceEdge" : 1123.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Sirpa (pp) Gltp", "combinedscore" : "NA", "SUID" : 590657, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 4.624496E-4, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "590622", "source" : "587710", "target" : "588104", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Bmp1", "weight" : 0.530696692265, "name" : "Sirpa (pp) Bmp1", "shared_name" : "Sirpa (pp) Bmp1", "SUID" : 590622, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590875", "source" : "587710", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Pld4", "weight" : 0.409726757391, "name" : "Sirpa (pp) Pld4", "shared_name" : "Sirpa (pp) Pld4", "SUID" : 590875, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590562", "source" : "587710", "target" : "587829", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Fyb", "weight" : 0.480459198196, "name" : "Sirpa (pp) Fyb", "shared_name" : "Sirpa (pp) Fyb", "SUID" : 590562, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590790", "source" : "587710", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Axl", "weight" : 0.741232619791, "name" : "Sirpa (pp) Axl", "shared_name" : "Sirpa (pp) Axl", "SUID" : 590790, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590729", "source" : "587710", "target" : "588492", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Ncf4", "weight" : 0.428766836606, "name" : "Sirpa (pp) Ncf4", "shared_name" : "Sirpa (pp) Ncf4", "SUID" : 590729, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590808", "source" : "587710", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Obrgrp", "weight" : 0.630871080825, "name" : "Sirpa (pp) Obrgrp", "shared_name" : "Sirpa (pp) Obrgrp", "SUID" : 590808, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590660", "source" : "587710", "target" : "588254", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Irf8", "weight" : 0.550386693197, "name" : "Sirpa (pp) Irf8", "shared_name" : "Sirpa (pp) Irf8", "SUID" : 590660, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590591", "source" : "587710", "target" : "587975", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) H2-Ab1", "weight" : 0.406157168658, "name" : "Sirpa (pp) H2-Ab1", "shared_name" : "Sirpa (pp) H2-Ab1", "SUID" : 590591, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590705", "source" : "587710", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Cd14", "weight" : 0.74227306934, "name" : "Sirpa (pp) Cd14", "shared_name" : "Sirpa (pp) Cd14", "SUID" : 590705, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590617", "source" : "587710", "target" : "588081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Capg", "weight" : 0.483771883286, "name" : "Sirpa (pp) Capg", "shared_name" : "Sirpa (pp) Capg", "SUID" : 590617, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590921", "source" : "587710", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Abi3", "weight" : 0.401094336698, "name" : "Sirpa (pp) Abi3", "shared_name" : "Sirpa (pp) Abi3", "SUID" : 590921, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590784", "source" : "587710", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sirpa (pp) Cd52", "weight" : 0.697454081128, "name" : "Sirpa (pp) Cd52", "shared_name" : "Sirpa (pp) Cd52", "SUID" : 590784, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "590548", "source" : "587710", "target" : "587774", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.450858673271, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Sirpa (pp) Fermt3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.450858673271, "fusion" : "NA", "name" : "Sirpa (pp) Fermt3", "neighborhood" : "NA", "sourceEdge" : 1079.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Sirpa (pp) Fermt3", "combinedscore" : "NA", "SUID" : 590548, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 4.527805E-4, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "590676", "source" : "587710", "target" : "588313", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.459498605441, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Sirpa (pp) Zfp90", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.459498605441, "fusion" : "NA", "name" : "Sirpa (pp) Zfp90", "neighborhood" : "NA", "sourceEdge" : 1130.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Sirpa (pp) Zfp90", "combinedscore" : "NA", "SUID" : 590676, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 5.017669E-4, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "680286", "source" : "588968", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bcl2a1c (pp) Serpinb6a", "weight" : 0.413288952482, "name" : "Bcl2a1c (pp) Serpinb6a", "shared_name" : "Bcl2a1c (pp) Serpinb6a", "SUID" : 680286, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "680291", "source" : "588968", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bcl2a1c (pp) Fcgr4", "weight" : 0.489208391693, "name" : "Bcl2a1c (pp) Fcgr4", "shared_name" : "Bcl2a1c (pp) Fcgr4", "SUID" : 680291, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "680295", "source" : "588968", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Bcl2a1c (pp) Ly86", "weight" : 0.4164000909, "name" : "Bcl2a1c (pp) Ly86", "shared_name" : "Bcl2a1c (pp) Ly86", "SUID" : 680295, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601068", "source" : "587798", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Gngt2", "weight" : 0.447868754164, "name" : "Ccnd1 (pp) Gngt2", "shared_name" : "Ccnd1 (pp) Gngt2", "SUID" : 601068, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601155", "source" : "587798", "target" : "589076", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) H2-M3", "weight" : 0.482637243035, "name" : "Ccnd1 (pp) H2-M3", "shared_name" : "Ccnd1 (pp) H2-M3", "SUID" : 601155, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600911", "source" : "587798", "target" : "587873", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Slc8a1", "weight" : 0.413132812833, "name" : "Ccnd1 (pp) Slc8a1", "shared_name" : "Ccnd1 (pp) Slc8a1", "SUID" : 600911, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600999", "source" : "587798", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Cxcl16", "weight" : 0.567292586328, "name" : "Ccnd1 (pp) Cxcl16", "shared_name" : "Ccnd1 (pp) Cxcl16", "SUID" : 600999, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601123", "source" : "587798", "target" : "588886", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.665146748459, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ccnd1 (pp) Lgals3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 4.580947E-5, "weight" : 0.665146748459, "fusion" : "NA", "name" : "Ccnd1 (pp) Lgals3", "neighborhood" : "NA", "sourceEdge" : 16734.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ccnd1 (pp) Lgals3", "combinedscore" : "NA", "SUID" : 601123, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 2.812851E-5, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "600981", "source" : "587798", "target" : "588242", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Cd83", "weight" : 0.416552317917, "name" : "Ccnd1 (pp) Cd83", "shared_name" : "Ccnd1 (pp) Cd83", "SUID" : 600981, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601027", "source" : "587798", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Cd14", "weight" : 0.426707644095, "name" : "Ccnd1 (pp) Cd14", "shared_name" : "Ccnd1 (pp) Cd14", "SUID" : 601027, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601086", "source" : "587798", "target" : "588697", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.517965026141, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ccnd1 (pp) Cd52", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 0.004148873, "weight" : 0.517965026141, "fusion" : "NA", "name" : "Ccnd1 (pp) Cd52", "neighborhood" : "NA", "sourceEdge" : 16713.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ccnd1 (pp) Cd52", "combinedscore" : "NA", "SUID" : 601086, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 0.001340767, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "601205", "source" : "587798", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.678810442734, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ccnd1 (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 0.004860663, "weight" : 0.678810442734, "fusion" : "NA", "name" : "Ccnd1 (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 16765.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ccnd1 (pp) Ear4", "combinedscore" : "NA", "SUID" : 601205, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 0.001844918, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "601106", "source" : "587798", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Obrgrp", "weight" : 0.509573334216, "name" : "Ccnd1 (pp) Obrgrp", "shared_name" : "Ccnd1 (pp) Obrgrp", "SUID" : 601106, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600955", "source" : "587798", "target" : "588134", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Mlkl", "weight" : 0.579473700593, "name" : "Ccnd1 (pp) Mlkl", "shared_name" : "Ccnd1 (pp) Mlkl", "SUID" : 600955, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601074", "source" : "587798", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Casp1", "weight" : 0.48107603467, "name" : "Ccnd1 (pp) Casp1", "shared_name" : "Ccnd1 (pp) Casp1", "SUID" : 601074, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600986", "source" : "587798", "target" : "588257", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Sdcbp", "weight" : 0.48484618883, "name" : "Ccnd1 (pp) Sdcbp", "shared_name" : "Ccnd1 (pp) Sdcbp", "SUID" : 600986, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601057", "source" : "587798", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Cd86", "weight" : 0.64849816037, "name" : "Ccnd1 (pp) Cd86", "shared_name" : "Ccnd1 (pp) Cd86", "SUID" : 601057, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600923", "source" : "587798", "target" : "587966", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.672044128048, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ccnd1 (pp) Cyba", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 0.004875127, "weight" : 0.672044128048, "fusion" : "NA", "name" : "Ccnd1 (pp) Cyba", "neighborhood" : "NA", "sourceEdge" : 16640.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ccnd1 (pp) Cyba", "combinedscore" : "NA", "SUID" : 600923, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 2.176857E-4, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "601035", "source" : "587798", "target" : "588459", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Pop5", "weight" : 0.408334848878, "name" : "Ccnd1 (pp) Pop5", "shared_name" : "Ccnd1 (pp) Pop5", "SUID" : 601035, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601115", "source" : "587798", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Plac8", "weight" : 0.489538750671, "name" : "Ccnd1 (pp) Plac8", "shared_name" : "Ccnd1 (pp) Plac8", "SUID" : 601115, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601078", "source" : "587798", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Gpnmb", "weight" : 0.660856742786, "name" : "Ccnd1 (pp) Gpnmb", "shared_name" : "Ccnd1 (pp) Gpnmb", "SUID" : 601078, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601102", "source" : "587798", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) 5430435G22Rik", "weight" : 0.582707287669, "name" : "Ccnd1 (pp) 5430435G22Rik", "shared_name" : "Ccnd1 (pp) 5430435G22Rik", "SUID" : 601102, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600978", "source" : "587798", "target" : "588233", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.729890967128, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ccnd1 (pp) Laptm5", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 0.005470979, "weight" : 0.729890967128, "fusion" : "NA", "name" : "Ccnd1 (pp) Laptm5", "neighborhood" : "NA", "sourceEdge" : 16663.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ccnd1 (pp) Laptm5", "combinedscore" : "NA", "SUID" : 600978, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "601012", "source" : "587798", "target" : "588351", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Ttc39a", "weight" : 0.510339287787, "name" : "Ccnd1 (pp) Ttc39a", "shared_name" : "Ccnd1 (pp) Ttc39a", "SUID" : 601012, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600896", "source" : "587798", "target" : "587807", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Evi2a", "weight" : 0.543451274153, "name" : "Ccnd1 (pp) Evi2a", "shared_name" : "Ccnd1 (pp) Evi2a", "SUID" : 600896, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600898", "source" : "587798", "target" : "587818", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Ifi30", "weight" : 0.492491724025, "name" : "Ccnd1 (pp) Ifi30", "shared_name" : "Ccnd1 (pp) Ifi30", "SUID" : 600898, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601185", "source" : "587798", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Serpinb6a", "weight" : 0.6831307106, "name" : "Ccnd1 (pp) Serpinb6a", "shared_name" : "Ccnd1 (pp) Serpinb6a", "SUID" : 601185, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600949", "source" : "587798", "target" : "588104", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Bmp1", "weight" : 0.565337369175, "name" : "Ccnd1 (pp) Bmp1", "shared_name" : "Ccnd1 (pp) Bmp1", "SUID" : 600949, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600983", "source" : "587798", "target" : "588244", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Gltp", "weight" : 0.401578408763, "name" : "Ccnd1 (pp) Gltp", "shared_name" : "Ccnd1 (pp) Gltp", "SUID" : 600983, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601000", "source" : "587798", "target" : "588313", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Zfp90", "weight" : 0.43986559417, "name" : "Ccnd1 (pp) Zfp90", "shared_name" : "Ccnd1 (pp) Zfp90", "SUID" : 601000, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601104", "source" : "587798", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Tmem86a", "weight" : 0.661410565903, "name" : "Ccnd1 (pp) Tmem86a", "shared_name" : "Ccnd1 (pp) Tmem86a", "SUID" : 601104, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601213", "source" : "587798", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Fblim1", "weight" : 0.422861665936, "name" : "Ccnd1 (pp) Fblim1", "shared_name" : "Ccnd1 (pp) Fblim1", "SUID" : 601213, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601064", "source" : "587798", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Tmsb10", "weight" : 0.418551156975, "name" : "Ccnd1 (pp) Tmsb10", "shared_name" : "Ccnd1 (pp) Tmsb10", "SUID" : 601064, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601192", "source" : "587798", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Trem2", "weight" : 0.506692496812, "name" : "Ccnd1 (pp) Trem2", "shared_name" : "Ccnd1 (pp) Trem2", "SUID" : 601192, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601199", "source" : "587798", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Fcgr4", "weight" : 0.589219447873, "name" : "Ccnd1 (pp) Fcgr4", "shared_name" : "Ccnd1 (pp) Fcgr4", "SUID" : 601199, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600920", "source" : "587798", "target" : "587952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Gusb", "weight" : 0.510742344688, "name" : "Ccnd1 (pp) Gusb", "shared_name" : "Ccnd1 (pp) Gusb", "SUID" : 600920, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601072", "source" : "587798", "target" : "588620", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Olfml3", "weight" : 0.42781292548, "name" : "Ccnd1 (pp) Olfml3", "shared_name" : "Ccnd1 (pp) Olfml3", "SUID" : 601072, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601063", "source" : "587798", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Coro1a", "weight" : 0.493169827134, "name" : "Ccnd1 (pp) Coro1a", "shared_name" : "Ccnd1 (pp) Coro1a", "SUID" : 601063, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600914", "source" : "587798", "target" : "587905", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Rgs1", "weight" : 0.408514756107, "name" : "Ccnd1 (pp) Rgs1", "shared_name" : "Ccnd1 (pp) Rgs1", "SUID" : 600914, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601090", "source" : "587798", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Serpina3g", "weight" : 0.434227689034, "name" : "Ccnd1 (pp) Serpina3g", "shared_name" : "Ccnd1 (pp) Serpina3g", "SUID" : 601090, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601215", "source" : "587798", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Lrrc33", "weight" : 0.43165059138, "name" : "Ccnd1 (pp) Lrrc33", "shared_name" : "Ccnd1 (pp) Lrrc33", "SUID" : 601215, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600954", "source" : "587798", "target" : "588127", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Lpxn", "weight" : 0.512842294957, "name" : "Ccnd1 (pp) Lpxn", "shared_name" : "Ccnd1 (pp) Lpxn", "SUID" : 600954, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601029", "source" : "587798", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Clec4n", "weight" : 0.547519757258, "name" : "Ccnd1 (pp) Clec4n", "shared_name" : "Ccnd1 (pp) Clec4n", "SUID" : 601029, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601211", "source" : "587798", "target" : "589344", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.543234037384, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ccnd1 (pp) C1qb", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.543234037384, "fusion" : "NA", "name" : "Ccnd1 (pp) C1qb", "neighborhood" : "NA", "sourceEdge" : 16768.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ccnd1 (pp) C1qb", "combinedscore" : "NA", "SUID" : 601211, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 2.083162E-4, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "601197", "source" : "587798", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Ear12", "weight" : 0.448203489593, "name" : "Ccnd1 (pp) Ear12", "shared_name" : "Ccnd1 (pp) Ear12", "SUID" : 601197, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600904", "source" : "587798", "target" : "587851", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Sh3kbp1", "weight" : 0.400284389891, "name" : "Ccnd1 (pp) Sh3kbp1", "shared_name" : "Ccnd1 (pp) Sh3kbp1", "SUID" : 600904, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600902", "source" : "587798", "target" : "587844", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.699818410455, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ccnd1 (pp) Ear2", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 0.004943158, "weight" : 0.699818410455, "fusion" : "NA", "name" : "Ccnd1 (pp) Ear2", "neighborhood" : "NA", "sourceEdge" : 16630.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ccnd1 (pp) Ear2", "combinedscore" : "NA", "SUID" : 600902, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 0.001844163, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "601132", "source" : "587798", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Cytip", "weight" : 0.521154954275, "name" : "Ccnd1 (pp) Cytip", "shared_name" : "Ccnd1 (pp) Cytip", "SUID" : 601132, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600931", "source" : "587798", "target" : "588010", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Cd84", "weight" : 0.497145600684, "name" : "Ccnd1 (pp) Cd84", "shared_name" : "Ccnd1 (pp) Cd84", "SUID" : 600931, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601188", "source" : "587798", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) H2-DMa", "weight" : 0.405160147407, "name" : "Ccnd1 (pp) H2-DMa", "shared_name" : "Ccnd1 (pp) H2-DMa", "SUID" : 601188, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600960", "source" : "587798", "target" : "588151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Ccl4", "weight" : 0.492740261615, "name" : "Ccnd1 (pp) Ccl4", "shared_name" : "Ccnd1 (pp) Ccl4", "SUID" : 600960, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601166", "source" : "587798", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Vcam1", "weight" : 0.621915077207, "name" : "Ccnd1 (pp) Vcam1", "shared_name" : "Ccnd1 (pp) Vcam1", "SUID" : 601166, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600933", "source" : "587798", "target" : "588024", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Cd68", "weight" : 0.420874067924, "name" : "Ccnd1 (pp) Cd68", "shared_name" : "Ccnd1 (pp) Cd68", "SUID" : 600933, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601022", "source" : "587798", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Selplg", "weight" : 0.555916453791, "name" : "Ccnd1 (pp) Selplg", "shared_name" : "Ccnd1 (pp) Selplg", "SUID" : 601022, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601083", "source" : "587798", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) 5033414D02Rik", "weight" : 0.535325669098, "name" : "Ccnd1 (pp) 5033414D02Rik", "shared_name" : "Ccnd1 (pp) 5033414D02Rik", "SUID" : 601083, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601075", "source" : "587798", "target" : "588636", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Repin1", "weight" : 0.499473405513, "name" : "Ccnd1 (pp) Repin1", "shared_name" : "Ccnd1 (pp) Repin1", "SUID" : 601075, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601061", "source" : "587798", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Snn", "weight" : 0.506184108837, "name" : "Ccnd1 (pp) Snn", "shared_name" : "Ccnd1 (pp) Snn", "SUID" : 601061, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600906", "source" : "587798", "target" : "587857", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Lgmn", "weight" : 0.608628716698, "name" : "Ccnd1 (pp) Lgmn", "shared_name" : "Ccnd1 (pp) Lgmn", "SUID" : 600906, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601189", "source" : "587798", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Ear10", "weight" : 0.473750344547, "name" : "Ccnd1 (pp) Ear10", "shared_name" : "Ccnd1 (pp) Ear10", "SUID" : 601189, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601039", "source" : "587798", "target" : "588472", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Ly9", "weight" : 0.457244000328, "name" : "Ccnd1 (pp) Ly9", "shared_name" : "Ccnd1 (pp) Ly9", "SUID" : 601039, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601002", "source" : "587798", "target" : "588322", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Pfkfb4", "weight" : 0.48888847044, "name" : "Ccnd1 (pp) Pfkfb4", "shared_name" : "Ccnd1 (pp) Pfkfb4", "SUID" : 601002, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601031", "source" : "587798", "target" : "588439", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Vim", "weight" : 0.477241631355, "name" : "Ccnd1 (pp) Vim", "shared_name" : "Ccnd1 (pp) Vim", "SUID" : 601031, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601162", "source" : "587798", "target" : "589102", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Gja1", "weight" : 0.5178716902, "name" : "Ccnd1 (pp) Gja1", "shared_name" : "Ccnd1 (pp) Gja1", "SUID" : 601162, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601041", "source" : "587798", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Plscr1", "weight" : 0.523873598465, "name" : "Ccnd1 (pp) Plscr1", "shared_name" : "Ccnd1 (pp) Plscr1", "SUID" : 601041, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601091", "source" : "587798", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Tlr2", "weight" : 0.475991319634, "name" : "Ccnd1 (pp) Tlr2", "shared_name" : "Ccnd1 (pp) Tlr2", "SUID" : 601091, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600927", "source" : "587798", "target" : "587982", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Plekho2", "weight" : 0.438637074374, "name" : "Ccnd1 (pp) Plekho2", "shared_name" : "Ccnd1 (pp) Plekho2", "SUID" : 600927, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601156", "source" : "587798", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Btk", "weight" : 0.41513106421, "name" : "Ccnd1 (pp) Btk", "shared_name" : "Ccnd1 (pp) Btk", "SUID" : 601156, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600984", "source" : "587798", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Sdc3", "weight" : 0.404394126742, "name" : "Ccnd1 (pp) Sdc3", "shared_name" : "Ccnd1 (pp) Sdc3", "SUID" : 600984, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601100", "source" : "587798", "target" : "588782", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.591916402141, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ccnd1 (pp) Slc15a3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 0.004469062, "weight" : 0.591916402141, "fusion" : "NA", "name" : "Ccnd1 (pp) Slc15a3", "neighborhood" : "NA", "sourceEdge" : 16724.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ccnd1 (pp) Slc15a3", "combinedscore" : "NA", "SUID" : 601100, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 0.001635313, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "601113", "source" : "587798", "target" : "588835", "homology" : "NA", "shared_interaction" : "NA", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.591376774793, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ccnd1 (pp) Cotl1", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 0.004442517, "weight" : 0.591376774793, "fusion" : "NA", "name" : "Ccnd1 (pp) Cotl1", "neighborhood" : "NA", "sourceEdge" : 16730.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ccnd1 (pp) Cotl1", "combinedscore" : "NA", "SUID" : 601113, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "NA", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "601036", "source" : "587798", "target" : "588461", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Tbxas1", "weight" : 0.507514610618, "name" : "Ccnd1 (pp) Tbxas1", "shared_name" : "Ccnd1 (pp) Tbxas1", "SUID" : 601036, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601157", "source" : "587798", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Cfp", "weight" : 0.540128698799, "name" : "Ccnd1 (pp) Cfp", "shared_name" : "Ccnd1 (pp) Cfp", "SUID" : 601157, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600952", "source" : "587798", "target" : "588113", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Tgfbr2", "weight" : 0.472464588126, "name" : "Ccnd1 (pp) Tgfbr2", "shared_name" : "Ccnd1 (pp) Tgfbr2", "SUID" : 600952, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601009", "source" : "587798", "target" : "588342", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Mfge8", "weight" : 0.654042673222, "name" : "Ccnd1 (pp) Mfge8", "shared_name" : "Ccnd1 (pp) Mfge8", "SUID" : 601009, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601066", "source" : "587798", "target" : "588601", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.604268754815, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ccnd1 (pp) Slc11a1", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.604268754815, "fusion" : "NA", "name" : "Ccnd1 (pp) Slc11a1", "neighborhood" : "NA", "sourceEdge" : 16703.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ccnd1 (pp) Slc11a1", "combinedscore" : "NA", "SUID" : 601066, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 0.001583763, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "601210", "source" : "587798", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Ly86", "weight" : 0.488122061854, "name" : "Ccnd1 (pp) Ly86", "shared_name" : "Ccnd1 (pp) Ly86", "SUID" : 601210, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600959", "source" : "587798", "target" : "588147", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Ppic", "weight" : 0.506571403315, "name" : "Ccnd1 (pp) Ppic", "shared_name" : "Ccnd1 (pp) Ppic", "SUID" : 600959, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601095", "source" : "587798", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Vsig4", "weight" : 0.559861383358, "name" : "Ccnd1 (pp) Vsig4", "shared_name" : "Ccnd1 (pp) Vsig4", "SUID" : 601095, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601160", "source" : "587798", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Snx10", "weight" : 0.439611529043, "name" : "Ccnd1 (pp) Snx10", "shared_name" : "Ccnd1 (pp) Snx10", "SUID" : 601160, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600970", "source" : "587798", "target" : "588212", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Anxa3", "weight" : 0.584138784226, "name" : "Ccnd1 (pp) Anxa3", "shared_name" : "Ccnd1 (pp) Anxa3", "SUID" : 600970, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601094", "source" : "587798", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Tpm4", "weight" : 0.477947200123, "name" : "Ccnd1 (pp) Tpm4", "shared_name" : "Ccnd1 (pp) Tpm4", "SUID" : 601094, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601131", "source" : "587798", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Hk3", "weight" : 0.419667106173, "name" : "Ccnd1 (pp) Hk3", "shared_name" : "Ccnd1 (pp) Hk3", "SUID" : 601131, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601146", "source" : "587798", "target" : "589005", "homology" : "NA", "shared_interaction" : "NA", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.624803488949, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ccnd1 (pp) Csrp1", "identifier" : "NA", "node2stringid" : "NA", "kwalksLifeStylered" : 0.004654639, "weight" : 0.624803488949, "fusion" : "NA", "name" : "Ccnd1 (pp) Csrp1", "neighborhood" : "NA", "sourceEdge" : 16741.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ccnd1 (pp) Csrp1", "combinedscore" : "NA", "SUID" : 601146, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "NA", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "600946", "source" : "587798", "target" : "588086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Iqgap1", "weight" : 0.588557327502, "name" : "Ccnd1 (pp) Iqgap1", "shared_name" : "Ccnd1 (pp) Iqgap1", "SUID" : 600946, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601040", "source" : "587798", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Renbp", "weight" : 0.500996205525, "name" : "Ccnd1 (pp) Renbp", "shared_name" : "Ccnd1 (pp) Renbp", "SUID" : 601040, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600912", "source" : "587798", "target" : "587881", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Vav1", "weight" : 0.572742135143, "name" : "Ccnd1 (pp) Vav1", "shared_name" : "Ccnd1 (pp) Vav1", "SUID" : 600912, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601015", "source" : "587798", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Cyp7b1", "weight" : 0.523981818328, "name" : "Ccnd1 (pp) Cyp7b1", "shared_name" : "Ccnd1 (pp) Cyp7b1", "SUID" : 601015, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601214", "source" : "587798", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Tspan33", "weight" : 0.519109838768, "name" : "Ccnd1 (pp) Tspan33", "shared_name" : "Ccnd1 (pp) Tspan33", "SUID" : 601214, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601092", "source" : "587798", "target" : "588727", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.618732337605, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ccnd1 (pp) Axl", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 7.071E-4, "weight" : 0.618732337605, "fusion" : "NA", "name" : "Ccnd1 (pp) Axl", "neighborhood" : "NA", "sourceEdge" : 16718.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ccnd1 (pp) Axl", "combinedscore" : "NA", "SUID" : 601092, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "600994", "source" : "587798", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Ms4a6d", "weight" : 0.619529649671, "name" : "Ccnd1 (pp) Ms4a6d", "shared_name" : "Ccnd1 (pp) Ms4a6d", "SUID" : 600994, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601175", "source" : "587798", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Rasgrp1", "weight" : 0.489135639888, "name" : "Ccnd1 (pp) Rasgrp1", "shared_name" : "Ccnd1 (pp) Rasgrp1", "SUID" : 601175, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601111", "source" : "587798", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Pla2g15", "weight" : 0.553207427898, "name" : "Ccnd1 (pp) Pla2g15", "shared_name" : "Ccnd1 (pp) Pla2g15", "SUID" : 601111, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600975", "source" : "587798", "target" : "588227", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Gbp2", "weight" : 0.495883855514, "name" : "Ccnd1 (pp) Gbp2", "shared_name" : "Ccnd1 (pp) Gbp2", "SUID" : 600975, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601194", "source" : "587798", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Ppif", "weight" : 0.477859039853, "name" : "Ccnd1 (pp) Ppif", "shared_name" : "Ccnd1 (pp) Ppif", "SUID" : 601194, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601202", "source" : "587798", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Clec7a", "weight" : 0.484617560235, "name" : "Ccnd1 (pp) Clec7a", "shared_name" : "Ccnd1 (pp) Clec7a", "SUID" : 601202, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601117", "source" : "587798", "target" : "588860", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.527515305529, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Ccnd1 (pp) Fcer1g", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 0.004290898, "weight" : 0.527515305529, "fusion" : "NA", "name" : "Ccnd1 (pp) Fcer1g", "neighborhood" : "NA", "sourceEdge" : 16732.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Ccnd1 (pp) Fcer1g", "combinedscore" : "NA", "SUID" : 601117, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 1.851734E-4, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "601032", "source" : "587798", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Cd63", "weight" : 0.591691898024, "name" : "Ccnd1 (pp) Cd63", "shared_name" : "Ccnd1 (pp) Cd63", "SUID" : 601032, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600962", "source" : "587798", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Pip4k2a", "weight" : 0.581918216805, "name" : "Ccnd1 (pp) Pip4k2a", "shared_name" : "Ccnd1 (pp) Pip4k2a", "SUID" : 600962, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601164", "source" : "587798", "target" : "589113", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Ms4a7", "weight" : 0.456734394852, "name" : "Ccnd1 (pp) Ms4a7", "shared_name" : "Ccnd1 (pp) Ms4a7", "SUID" : 601164, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601089", "source" : "587798", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) 6330416G13Rik", "weight" : 0.432414065464, "name" : "Ccnd1 (pp) 6330416G13Rik", "shared_name" : "Ccnd1 (pp) 6330416G13Rik", "SUID" : 601089, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601084", "source" : "587798", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) D12Ertd553e", "weight" : 0.400203276029, "name" : "Ccnd1 (pp) D12Ertd553e", "shared_name" : "Ccnd1 (pp) D12Ertd553e", "SUID" : 601084, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "601196", "source" : "587798", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Abi3", "weight" : 0.40352305888, "name" : "Ccnd1 (pp) Abi3", "shared_name" : "Ccnd1 (pp) Abi3", "SUID" : 601196, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600905", "source" : "587798", "target" : "587855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Ccnd1 (pp) Pkm2", "weight" : 0.45777222187, "name" : "Ccnd1 (pp) Pkm2", "shared_name" : "Ccnd1 (pp) Pkm2", "SUID" : 600905, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592343", "source" : "587729", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Pip4k2a", "weight" : 0.405659466131, "name" : "Il1a (pp) Pip4k2a", "shared_name" : "Il1a (pp) Pip4k2a", "SUID" : 592343, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592307", "source" : "587729", "target" : "587982", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.428322384577, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Il1a (pp) Plekho2", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.428322384577, "fusion" : "NA", "name" : "Il1a (pp) Plekho2", "neighborhood" : "NA", "sourceEdge" : 4104.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Il1a (pp) Plekho2", "combinedscore" : "NA", "SUID" : 592307, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "FALSE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.008251788, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "592495", "source" : "587729", "target" : "588886", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.501697764474, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Il1a (pp) Lgals3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.501697764474, "fusion" : "NA", "name" : "Il1a (pp) Lgals3", "neighborhood" : "NA", "sourceEdge" : 4196.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Il1a (pp) Lgals3", "combinedscore" : "NA", "SUID" : 592495, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "TRUE", "kwalksT0901317red" : 4.07751E-7, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 1.347521E-4, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "592315", "source" : "587729", "target" : "588024", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Cd68", "weight" : 0.455223241864, "name" : "Il1a (pp) Cd68", "shared_name" : "Il1a (pp) Cd68", "SUID" : 592315, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592467", "source" : "587729", "target" : "588728", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) AB124611", "weight" : 0.472927386016, "name" : "Il1a (pp) AB124611", "shared_name" : "Il1a (pp) AB124611", "SUID" : 592467, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592459", "source" : "587729", "target" : "588664", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.48529436194, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Il1a (pp) 5033414D02Rik", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.48529436194, "fusion" : "NA", "name" : "Il1a (pp) 5033414D02Rik", "neighborhood" : "NA", "sourceEdge" : 4172.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Il1a (pp) 5033414D02Rik", "combinedscore" : "NA", "SUID" : 592459, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "FALSE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.00858965, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "592312", "source" : "587729", "target" : "588010", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Cd84", "weight" : 0.46339554311, "name" : "Il1a (pp) Cd84", "shared_name" : "Il1a (pp) Cd84", "SUID" : 592312, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592339", "source" : "587729", "target" : "588147", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Ppic", "weight" : 0.681452191246, "name" : "Il1a (pp) Ppic", "shared_name" : "Il1a (pp) Ppic", "SUID" : 592339, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592453", "source" : "587729", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Gpnmb", "weight" : 0.510402829526, "name" : "Il1a (pp) Gpnmb", "shared_name" : "Il1a (pp) Gpnmb", "SUID" : 592453, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592412", "source" : "587729", "target" : "588461", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Tbxas1", "weight" : 0.481400076414, "name" : "Il1a (pp) Tbxas1", "shared_name" : "Il1a (pp) Tbxas1", "SUID" : 592412, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592365", "source" : "587729", "target" : "588257", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Sdcbp", "weight" : 0.448743364718, "name" : "Il1a (pp) Sdcbp", "shared_name" : "Il1a (pp) Sdcbp", "SUID" : 592365, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592475", "source" : "587729", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) 5430435G22Rik", "weight" : 0.45286753072, "name" : "Il1a (pp) 5430435G22Rik", "shared_name" : "Il1a (pp) 5430435G22Rik", "SUID" : 592475, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592277", "source" : "587729", "target" : "587783", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.524952564286, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Il1a (pp) Marcks", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.524952564286, "fusion" : "NA", "name" : "Il1a (pp) Marcks", "neighborhood" : "NA", "sourceEdge" : 4084.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Il1a (pp) Marcks", "combinedscore" : "NA", "SUID" : 592277, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "FALSE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.01022091, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "592527", "source" : "587729", "target" : "589102", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Gja1", "weight" : 0.426047075431, "name" : "Il1a (pp) Gja1", "shared_name" : "Il1a (pp) Gja1", "SUID" : 592527, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592469", "source" : "587729", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Vsig4", "weight" : 0.541275187164, "name" : "Il1a (pp) Vsig4", "shared_name" : "Il1a (pp) Vsig4", "SUID" : 592469, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592323", "source" : "587729", "target" : "588069", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.525877102121, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Il1a (pp) A430084P05Rik", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.525877102121, "fusion" : "NA", "name" : "Il1a (pp) A430084P05Rik", "neighborhood" : "NA", "sourceEdge" : 4111.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Il1a (pp) A430084P05Rik", "combinedscore" : "NA", "SUID" : 592323, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "FALSE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.01026396, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "592289", "source" : "587729", "target" : "587857", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "kwalksFenofibratemagenta" : 8.558123E-5, "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.595184192847, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Il1a (pp) Lgmn", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "extraFenofibratemagenta" : "FALSE", "weight" : 0.595184192847, "fusion" : "NA", "name" : "Il1a (pp) Lgmn", "neighborhood" : "NA", "sourceEdge" : 4095.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Il1a (pp) Lgmn", "combinedscore" : "NA", "SUID" : 592289, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "FALSE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.01005516, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "592280", "source" : "587729", "target" : "587798", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Ccnd1", "weight" : 0.596644456068, "name" : "Il1a (pp) Ccnd1", "shared_name" : "Il1a (pp) Ccnd1", "SUID" : 592280, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592352", "source" : "587729", "target" : "588212", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Anxa3", "weight" : 0.544285137207, "name" : "Il1a (pp) Anxa3", "shared_name" : "Il1a (pp) Anxa3", "SUID" : 592352, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592279", "source" : "587729", "target" : "587790", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.489343298097, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Il1a (pp) Sh3bgrl3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.489343298097, "fusion" : "NA", "name" : "Il1a (pp) Sh3bgrl3", "neighborhood" : "NA", "sourceEdge" : 4086.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Il1a (pp) Sh3bgrl3", "combinedscore" : "NA", "SUID" : 592279, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "FALSE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.0087886, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "592571", "source" : "587729", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "kwalksFenofibratemagenta" : 7.928267E-5, "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.547289065078, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Il1a (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "extraFenofibratemagenta" : "FALSE", "weight" : 0.547289065078, "fusion" : "NA", "name" : "Il1a (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 4227.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Il1a (pp) Ear4", "combinedscore" : "NA", "SUID" : 592571, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "FALSE", "kwalksT0901317red" : 3.527396E-4, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.009193354, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "592540", "source" : "587729", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Rasgrp1", "weight" : 0.46026427838, "name" : "Il1a (pp) Rasgrp1", "shared_name" : "Il1a (pp) Rasgrp1", "SUID" : 592540, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592408", "source" : "587729", "target" : "588439", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Vim", "weight" : 0.480006541446, "name" : "Il1a (pp) Vim", "shared_name" : "Il1a (pp) Vim", "SUID" : 592408, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592371", "source" : "587729", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Ms4a6d", "weight" : 0.468428835, "name" : "Il1a (pp) Ms4a6d", "shared_name" : "Il1a (pp) Ms4a6d", "SUID" : 592371, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592302", "source" : "587729", "target" : "587952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Gusb", "weight" : 0.433174698178, "name" : "Il1a (pp) Gusb", "shared_name" : "Il1a (pp) Gusb", "SUID" : 592302, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592473", "source" : "587729", "target" : "588782", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.455774122153, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Il1a (pp) Slc15a3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.455774122153, "fusion" : "NA", "name" : "Il1a (pp) Slc15a3", "neighborhood" : "NA", "sourceEdge" : 4186.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Il1a (pp) Slc15a3", "combinedscore" : "NA", "SUID" : 592473, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 2.991492E-4, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "592523", "source" : "587729", "target" : "589086", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.490152802737, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Il1a (pp) Cfp", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.490152802737, "fusion" : "NA", "name" : "Il1a (pp) Cfp", "neighborhood" : "NA", "sourceEdge" : 4207.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Il1a (pp) Cfp", "combinedscore" : "NA", "SUID" : 592523, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "FALSE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.008605808, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "592431", "source" : "587729", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Cd86", "weight" : 0.578578754924, "name" : "Il1a (pp) Cd86", "shared_name" : "Il1a (pp) Cd86", "SUID" : 592431, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592577", "source" : "587729", "target" : "589344", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.515208472872, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Il1a (pp) C1qb", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.515208472872, "fusion" : "NA", "name" : "Il1a (pp) C1qb", "neighborhood" : "NA", "sourceEdge" : 4230.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Il1a (pp) C1qb", "combinedscore" : "NA", "SUID" : 592577, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 2.744952E-5, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "592581", "source" : "587729", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Lrrc33", "weight" : 0.491870433925, "name" : "Il1a (pp) Lrrc33", "shared_name" : "Il1a (pp) Lrrc33", "SUID" : 592581, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592477", "source" : "587729", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Tmem86a", "weight" : 0.422840890214, "name" : "Il1a (pp) Tmem86a", "shared_name" : "Il1a (pp) Tmem86a", "SUID" : 592477, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592366", "source" : "587729", "target" : "588262", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) P2ry13", "weight" : 0.492844531978, "name" : "Il1a (pp) P2ry13", "shared_name" : "Il1a (pp) P2ry13", "SUID" : 592366, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592281", "source" : "587729", "target" : "587807", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Evi2a", "weight" : 0.546636578069, "name" : "Il1a (pp) Evi2a", "shared_name" : "Il1a (pp) Evi2a", "SUID" : 592281, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592406", "source" : "587729", "target" : "588424", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.481518233218, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Il1a (pp) Clec4n", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.481518233218, "fusion" : "NA", "name" : "Il1a (pp) Clec4n", "neighborhood" : "NA", "sourceEdge" : 4145.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Il1a (pp) Clec4n", "combinedscore" : "NA", "SUID" : 592406, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "FALSE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.008374694, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "592483", "source" : "587729", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Pla2g15", "weight" : 0.468170160161, "name" : "Il1a (pp) Pla2g15", "shared_name" : "Il1a (pp) Pla2g15", "SUID" : 592483, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592441", "source" : "587729", "target" : "588601", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.613032358196, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Il1a (pp) Slc11a1", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.613032358196, "fusion" : "NA", "name" : "Il1a (pp) Slc11a1", "neighborhood" : "NA", "sourceEdge" : 4165.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Il1a (pp) Slc11a1", "combinedscore" : "NA", "SUID" : 592441, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 3.779979E-4, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "592466", "source" : "587729", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Axl", "weight" : 0.400025611953, "name" : "Il1a (pp) Axl", "shared_name" : "Il1a (pp) Axl", "SUID" : 592466, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592575", "source" : "587729", "target" : "589335", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.440693803762, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Il1a (pp) Ly86", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.440693803762, "fusion" : "NA", "name" : "Il1a (pp) Ly86", "neighborhood" : "NA", "sourceEdge" : 4229.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Il1a (pp) Ly86", "combinedscore" : "NA", "SUID" : 592575, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "FALSE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.007716771, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "592271", "source" : "587729", "target" : "587759", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Rab8b", "weight" : 0.401076803152, "name" : "Il1a (pp) Rab8b", "shared_name" : "Il1a (pp) Rab8b", "SUID" : 592271, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592552", "source" : "587729", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Serpinb6a", "weight" : 0.568780908283, "name" : "Il1a (pp) Serpinb6a", "shared_name" : "Il1a (pp) Serpinb6a", "SUID" : 592552, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592306", "source" : "587729", "target" : "587966", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.554409429233, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Il1a (pp) Cyba", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.554409429233, "fusion" : "NA", "name" : "Il1a (pp) Cyba", "neighborhood" : "NA", "sourceEdge" : 4102.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Il1a (pp) Cyba", "combinedscore" : "NA", "SUID" : 592306, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 2.312709E-5, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "592334", "source" : "587729", "target" : "588127", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Lpxn", "weight" : 0.427448578051, "name" : "Il1a (pp) Lpxn", "shared_name" : "Il1a (pp) Lpxn", "SUID" : 592334, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592464", "source" : "587729", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) 6330416G13Rik", "weight" : 0.403928333939, "name" : "Il1a (pp) 6330416G13Rik", "shared_name" : "Il1a (pp) 6330416G13Rik", "SUID" : 592464, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592531", "source" : "587729", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Vcam1", "weight" : 0.425621881625, "name" : "Il1a (pp) Vcam1", "shared_name" : "Il1a (pp) Vcam1", "SUID" : 592531, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592358", "source" : "587729", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Laptm5", "weight" : 0.542057331357, "name" : "Il1a (pp) Laptm5", "shared_name" : "Il1a (pp) Laptm5", "SUID" : 592358, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592488", "source" : "587729", "target" : "588860", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.441443055306, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Il1a (pp) Fcer1g", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.441443055306, "fusion" : "NA", "name" : "Il1a (pp) Fcer1g", "neighborhood" : "NA", "sourceEdge" : 4194.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Il1a (pp) Fcer1g", "combinedscore" : "NA", "SUID" : 592488, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "FALSE", "kwalksT0901317red" : 2.068821E-5, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.007514076, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "592514", "source" : "587729", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Csrp1", "weight" : 0.407046847571, "name" : "Il1a (pp) Csrp1", "shared_name" : "Il1a (pp) Csrp1", "SUID" : 592514, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592435", "source" : "587729", "target" : "588581", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.44538324685, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Il1a (pp) Snn", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.44538324685, "fusion" : "NA", "name" : "Il1a (pp) Snn", "neighborhood" : "NA", "sourceEdge" : 4162.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Il1a (pp) Snn", "combinedscore" : "NA", "SUID" : 592435, "SourceFile" : "coexp", "coexpression" : "NA", "node1stringid" : "NA", "cooccurence" : "NA", "extraFenofibratered" : "FALSE", "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "kwalksFenofibratered" : 0.009440044, "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "592278", "source" : "587729", "target" : "587788", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.476052465297, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Il1a (pp) Nckap1l", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.476052465297, "fusion" : "NA", "name" : "Il1a (pp) Nckap1l", "neighborhood" : "NA", "sourceEdge" : 4085.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Il1a (pp) Nckap1l", "combinedscore" : "NA", "SUID" : 592278, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 3.244224E-4, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "592391", "source" : "587729", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Cyp7b1", "weight" : 0.461610773651, "name" : "Il1a (pp) Cyp7b1", "shared_name" : "Il1a (pp) Cyp7b1", "SUID" : 592391, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592402", "source" : "587729", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Cd14", "weight" : 0.400171129397, "name" : "Il1a (pp) Cd14", "shared_name" : "Il1a (pp) Cd14", "SUID" : 592402, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592361", "source" : "587729", "target" : "588242", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Cd83", "weight" : 0.421578277194, "name" : "Il1a (pp) Cd83", "shared_name" : "Il1a (pp) Cd83", "SUID" : 592361, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592283", "source" : "587729", "target" : "587818", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Ifi30", "weight" : 0.472098195755, "name" : "Il1a (pp) Ifi30", "shared_name" : "Il1a (pp) Ifi30", "SUID" : 592283, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592353", "source" : "587729", "target" : "588213", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Pdlim4", "weight" : 0.402483669601, "name" : "Il1a (pp) Pdlim4", "shared_name" : "Il1a (pp) Pdlim4", "SUID" : 592353, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592479", "source" : "587729", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Obrgrp", "weight" : 0.41504994856, "name" : "Il1a (pp) Obrgrp", "shared_name" : "Il1a (pp) Obrgrp", "SUID" : 592479, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592386", "source" : "587729", "target" : "588342", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Il1a (pp) Mfge8", "weight" : 0.420156952254, "name" : "Il1a (pp) Mfge8", "shared_name" : "Il1a (pp) Mfge8", "SUID" : 592386, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "592285", "source" : "587729", "target" : "587844", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.566702153886, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Il1a (pp) Ear2", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.566702153886, "fusion" : "NA", "name" : "Il1a (pp) Ear2", "neighborhood" : "NA", "sourceEdge" : 4092.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Il1a (pp) Ear2", "combinedscore" : "NA", "SUID" : 592285, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 3.514837E-4, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "685669", "source" : "589231", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-DMa (pp) Ear10", "weight" : 0.4327447336, "name" : "H2-DMa (pp) Ear10", "shared_name" : "H2-DMa (pp) Ear10", "SUID" : 685669, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685680", "source" : "589231", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-DMa (pp) Ly86", "weight" : 0.441114844558, "name" : "H2-DMa (pp) Ly86", "shared_name" : "H2-DMa (pp) Ly86", "SUID" : 685680, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685678", "source" : "589231", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-DMa (pp) Ear4", "weight" : 0.465576442478, "name" : "H2-DMa (pp) Ear4", "shared_name" : "H2-DMa (pp) Ear4", "SUID" : 685678, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685677", "source" : "589231", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-DMa (pp) Clec7a", "weight" : 0.424673237255, "name" : "H2-DMa (pp) Clec7a", "shared_name" : "H2-DMa (pp) Clec7a", "SUID" : 685677, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685675", "source" : "589231", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-DMa (pp) Fcgr4", "weight" : 0.5676737202, "name" : "H2-DMa (pp) Fcgr4", "shared_name" : "H2-DMa (pp) Fcgr4", "SUID" : 685675, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "685681", "source" : "589231", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "H2-DMa (pp) C1qb", "weight" : 0.578177278283, "name" : "H2-DMa (pp) C1qb", "shared_name" : "H2-DMa (pp) C1qb", "SUID" : 685681, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599810", "source" : "587788", "target" : "587952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Gusb", "weight" : 0.431074144238, "name" : "Nckap1l (pp) Gusb", "shared_name" : "Nckap1l (pp) Gusb", "SUID" : 599810, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599900", "source" : "587788", "target" : "588351", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Ttc39a", "weight" : 0.473753918409, "name" : "Nckap1l (pp) Ttc39a", "shared_name" : "Nckap1l (pp) Ttc39a", "SUID" : 599900, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599915", "source" : "587788", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Cd14", "weight" : 0.610485834384, "name" : "Nckap1l (pp) Cd14", "shared_name" : "Nckap1l (pp) Cd14", "SUID" : 599915, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599986", "source" : "587788", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Axl", "weight" : 0.706347490464, "name" : "Nckap1l (pp) Axl", "shared_name" : "Nckap1l (pp) Axl", "SUID" : 599986, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600091", "source" : "587788", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Ear10", "weight" : 0.582523309212, "name" : "Nckap1l (pp) Ear10", "shared_name" : "Nckap1l (pp) Ear10", "SUID" : 600091, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599989", "source" : "587788", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Vsig4", "weight" : 0.7360398061, "name" : "Nckap1l (pp) Vsig4", "shared_name" : "Nckap1l (pp) Vsig4", "SUID" : 599989, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599923", "source" : "587788", "target" : "588459", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Pop5", "weight" : 0.411334795555, "name" : "Nckap1l (pp) Pop5", "shared_name" : "Nckap1l (pp) Pop5", "SUID" : 599923, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599931", "source" : "587788", "target" : "588490", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Arhgap30", "weight" : 0.47731266316, "name" : "Nckap1l (pp) Arhgap30", "shared_name" : "Nckap1l (pp) Arhgap30", "SUID" : 599931, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599909", "source" : "587788", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Selplg", "weight" : 0.61219323656, "name" : "Nckap1l (pp) Selplg", "shared_name" : "Nckap1l (pp) Selplg", "SUID" : 599909, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599850", "source" : "587788", "target" : "588147", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Ppic", "weight" : 0.605408894741, "name" : "Nckap1l (pp) Ppic", "shared_name" : "Nckap1l (pp) Ppic", "SUID" : 599850, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600000", "source" : "587788", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Tmem86a", "weight" : 0.704766893155, "name" : "Nckap1l (pp) Tmem86a", "shared_name" : "Nckap1l (pp) Tmem86a", "SUID" : 600000, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599930", "source" : "587788", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Plscr1", "weight" : 0.425622730239, "name" : "Nckap1l (pp) Plscr1", "shared_name" : "Nckap1l (pp) Plscr1", "SUID" : 599930, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599929", "source" : "587788", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Renbp", "weight" : 0.608008633139, "name" : "Nckap1l (pp) Renbp", "shared_name" : "Nckap1l (pp) Renbp", "SUID" : 599929, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599824", "source" : "587788", "target" : "588024", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Cd68", "weight" : 0.427749923841, "name" : "Nckap1l (pp) Cd68", "shared_name" : "Nckap1l (pp) Cd68", "SUID" : 599824, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600032", "source" : "587788", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Hk3", "weight" : 0.542678513035, "name" : "Nckap1l (pp) Hk3", "shared_name" : "Nckap1l (pp) Hk3", "SUID" : 600032, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599921", "source" : "587788", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Cd63", "weight" : 0.540830704664, "name" : "Nckap1l (pp) Cd63", "shared_name" : "Nckap1l (pp) Cd63", "SUID" : 599921, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599947", "source" : "587788", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Cd86", "weight" : 0.724081756522, "name" : "Nckap1l (pp) Cd86", "shared_name" : "Nckap1l (pp) Cd86", "SUID" : 599947, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599951", "source" : "587788", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Snn", "weight" : 0.73976025072, "name" : "Nckap1l (pp) Snn", "shared_name" : "Nckap1l (pp) Snn", "SUID" : 599951, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599960", "source" : "587788", "target" : "588608", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Treml4", "weight" : 0.43201343735, "name" : "Nckap1l (pp) Treml4", "shared_name" : "Nckap1l (pp) Treml4", "SUID" : 599960, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599975", "source" : "587788", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) D12Ertd553e", "weight" : 0.508210613489, "name" : "Nckap1l (pp) D12Ertd553e", "shared_name" : "Nckap1l (pp) D12Ertd553e", "SUID" : 599975, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599838", "source" : "587788", "target" : "588086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Iqgap1", "weight" : 0.462723817485, "name" : "Nckap1l (pp) Iqgap1", "shared_name" : "Nckap1l (pp) Iqgap1", "SUID" : 599838, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600007", "source" : "587788", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Pla2g15", "weight" : 0.615941672985, "name" : "Nckap1l (pp) Pla2g15", "shared_name" : "Nckap1l (pp) Pla2g15", "SUID" : 600007, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599889", "source" : "587788", "target" : "588313", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Zfp90", "weight" : 0.475981209432, "name" : "Nckap1l (pp) Zfp90", "shared_name" : "Nckap1l (pp) Zfp90", "SUID" : 599889, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600063", "source" : "587788", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Snx10", "weight" : 0.467426401853, "name" : "Nckap1l (pp) Snx10", "shared_name" : "Nckap1l (pp) Snx10", "SUID" : 600063, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599787", "source" : "587788", "target" : "587818", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Ifi30", "weight" : 0.554924586454, "name" : "Nckap1l (pp) Ifi30", "shared_name" : "Nckap1l (pp) Ifi30", "SUID" : 599787, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600077", "source" : "587788", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Rasgrp1", "weight" : 0.569237135857, "name" : "Nckap1l (pp) Rasgrp1", "shared_name" : "Nckap1l (pp) Rasgrp1", "SUID" : 600077, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600106", "source" : "587788", "target" : "589304", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.767221373214, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Nckap1l (pp) Ear4", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 7.177E-8, "weight" : 0.767221373214, "fusion" : "NA", "name" : "Nckap1l (pp) Ear4", "neighborhood" : "NA", "sourceEdge" : 15245.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Nckap1l (pp) Ear4", "combinedscore" : "NA", "SUID" : 600106, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 2.09E-9, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "599970", "source" : "587788", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Gpnmb", "weight" : 0.610522087302, "name" : "Nckap1l (pp) Gpnmb", "shared_name" : "Nckap1l (pp) Gpnmb", "SUID" : 599970, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599820", "source" : "587788", "target" : "587989", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Tyrobp", "weight" : 0.609911254418, "name" : "Nckap1l (pp) Tyrobp", "shared_name" : "Nckap1l (pp) Tyrobp", "SUID" : 599820, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599896", "source" : "587788", "target" : "588335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Arpc1b", "weight" : 0.408046019472, "name" : "Nckap1l (pp) Arpc1b", "shared_name" : "Nckap1l (pp) Arpc1b", "SUID" : 599896, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599851", "source" : "587788", "target" : "588151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Ccl4", "weight" : 0.430674541788, "name" : "Nckap1l (pp) Ccl4", "shared_name" : "Nckap1l (pp) Ccl4", "SUID" : 599851, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599781", "source" : "587788", "target" : "587790", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Sh3bgrl3", "weight" : 0.6787104353, "name" : "Nckap1l (pp) Sh3bgrl3", "shared_name" : "Nckap1l (pp) Sh3bgrl3", "SUID" : 599781, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599927", "source" : "587788", "target" : "588472", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Ly9", "weight" : 0.404217372106, "name" : "Nckap1l (pp) Ly9", "shared_name" : "Nckap1l (pp) Ly9", "SUID" : 599927, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600016", "source" : "587788", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Fcgr3", "weight" : 0.489271953405, "name" : "Nckap1l (pp) Fcgr3", "shared_name" : "Nckap1l (pp) Fcgr3", "SUID" : 600016, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599958", "source" : "587788", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Gngt2", "weight" : 0.655384682676, "name" : "Nckap1l (pp) Gngt2", "shared_name" : "Nckap1l (pp) Gngt2", "SUID" : 599958, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599974", "source" : "587788", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) 5033414D02Rik", "weight" : 0.610459599579, "name" : "Nckap1l (pp) 5033414D02Rik", "shared_name" : "Nckap1l (pp) 5033414D02Rik", "SUID" : 599974, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600058", "source" : "587788", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Btk", "weight" : 0.525322055099, "name" : "Nckap1l (pp) Btk", "shared_name" : "Nckap1l (pp) Btk", "SUID" : 600058, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599956", "source" : "587788", "target" : "588601", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.706109071033, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Nckap1l (pp) Slc11a1", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "weight" : 0.706109071033, "fusion" : "NA", "name" : "Nckap1l (pp) Slc11a1", "neighborhood" : "NA", "sourceEdge" : 15183.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Nckap1l (pp) Slc11a1", "combinedscore" : "NA", "SUID" : 599956, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 9.73E-9, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "599795", "source" : "587788", "target" : "587855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Pkm2", "weight" : 0.46999078816, "name" : "Nckap1l (pp) Pkm2", "shared_name" : "Nckap1l (pp) Pkm2", "SUID" : 599795, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599837", "source" : "587788", "target" : "588081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Capg", "weight" : 0.42660852374, "name" : "Nckap1l (pp) Capg", "shared_name" : "Nckap1l (pp) Capg", "SUID" : 599837, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600068", "source" : "587788", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Vcam1", "weight" : 0.589644056165, "name" : "Nckap1l (pp) Vcam1", "shared_name" : "Nckap1l (pp) Vcam1", "SUID" : 600068, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599784", "source" : "587788", "target" : "587807", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Evi2a", "weight" : 0.694414808919, "name" : "Nckap1l (pp) Evi2a", "shared_name" : "Nckap1l (pp) Evi2a", "SUID" : 599784, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600118", "source" : "587788", "target" : "589370", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Lmo2", "weight" : 0.514872754812, "name" : "Nckap1l (pp) Lmo2", "shared_name" : "Nckap1l (pp) Lmo2", "SUID" : 600118, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599941", "source" : "587788", "target" : "588517", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Rac2", "weight" : 0.423689399194, "name" : "Nckap1l (pp) Rac2", "shared_name" : "Nckap1l (pp) Rac2", "SUID" : 599941, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599786", "source" : "587788", "target" : "587817", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Fgd2", "weight" : 0.423748716711, "name" : "Nckap1l (pp) Fgd2", "shared_name" : "Nckap1l (pp) Fgd2", "SUID" : 599786, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599999", "source" : "587788", "target" : "588786", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Ccl6", "weight" : 0.494783508013, "name" : "Nckap1l (pp) Ccl6", "shared_name" : "Nckap1l (pp) Ccl6", "SUID" : 599999, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600088", "source" : "587788", "target" : "589225", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) St6gal1", "weight" : 0.409847545786, "name" : "Nckap1l (pp) St6gal1", "shared_name" : "Nckap1l (pp) St6gal1", "SUID" : 600088, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599877", "source" : "587788", "target" : "588257", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Sdcbp", "weight" : 0.523311824266, "name" : "Nckap1l (pp) Sdcbp", "shared_name" : "Nckap1l (pp) Sdcbp", "SUID" : 599877, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600100", "source" : "587788", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Ear12", "weight" : 0.548836695451, "name" : "Nckap1l (pp) Ear12", "shared_name" : "Nckap1l (pp) Ear12", "SUID" : 600100, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600111", "source" : "587788", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Ly86", "weight" : 0.661231778311, "name" : "Nckap1l (pp) Ly86", "shared_name" : "Nckap1l (pp) Ly86", "SUID" : 600111, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600103", "source" : "587788", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Cd53", "weight" : 0.448345865926, "name" : "Nckap1l (pp) Cd53", "shared_name" : "Nckap1l (pp) Cd53", "SUID" : 600103, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599985", "source" : "587788", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Tlr2", "weight" : 0.643757018658, "name" : "Nckap1l (pp) Tlr2", "shared_name" : "Nckap1l (pp) Tlr2", "SUID" : 599985, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600072", "source" : "587788", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Tmsb4x", "weight" : 0.480926602134, "name" : "Nckap1l (pp) Tmsb4x", "shared_name" : "Nckap1l (pp) Tmsb4x", "SUID" : 600072, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600101", "source" : "587788", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Fcgr4", "weight" : 0.685004980485, "name" : "Nckap1l (pp) Fcgr4", "shared_name" : "Nckap1l (pp) Fcgr4", "SUID" : 600101, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600002", "source" : "587788", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Obrgrp", "weight" : 0.58090383804, "name" : "Nckap1l (pp) Obrgrp", "shared_name" : "Nckap1l (pp) Obrgrp", "SUID" : 600002, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599996", "source" : "587788", "target" : "588782", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.768367159717, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Nckap1l (pp) Slc15a3", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 2.8778E-8, "weight" : 0.768367159717, "fusion" : "NA", "name" : "Nckap1l (pp) Slc15a3", "neighborhood" : "NA", "sourceEdge" : 15204.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Nckap1l (pp) Slc15a3", "combinedscore" : "NA", "SUID" : 599996, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 8.45E-10, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "599919", "source" : "587788", "target" : "588432", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Kcnk6", "weight" : 0.524795652977, "name" : "Nckap1l (pp) Kcnk6", "shared_name" : "Nckap1l (pp) Kcnk6", "SUID" : 599919, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600066", "source" : "587788", "target" : "589113", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Ms4a7", "weight" : 0.434008938916, "name" : "Nckap1l (pp) Ms4a7", "shared_name" : "Nckap1l (pp) Ms4a7", "SUID" : 600066, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599874", "source" : "587788", "target" : "588251", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Sdc3", "weight" : 0.643261887537, "name" : "Nckap1l (pp) Sdc3", "shared_name" : "Nckap1l (pp) Sdc3", "SUID" : 599874, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599988", "source" : "587788", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Tpm4", "weight" : 0.447450498876, "name" : "Nckap1l (pp) Tpm4", "shared_name" : "Nckap1l (pp) Tpm4", "SUID" : 599988, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599953", "source" : "587788", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Coro1a", "weight" : 0.618430122606, "name" : "Nckap1l (pp) Coro1a", "shared_name" : "Nckap1l (pp) Coro1a", "SUID" : 599953, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599984", "source" : "587788", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Serpina3g", "weight" : 0.492025799386, "name" : "Nckap1l (pp) Serpina3g", "shared_name" : "Nckap1l (pp) Serpina3g", "SUID" : 599984, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599782", "source" : "587788", "target" : "587798", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Ccnd1", "weight" : 0.60430161991, "name" : "Nckap1l (pp) Ccnd1", "shared_name" : "Nckap1l (pp) Ccnd1", "SUID" : 599782, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599822", "source" : "587788", "target" : "588010", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Cd84", "weight" : 0.58493531323, "name" : "Nckap1l (pp) Cd84", "shared_name" : "Nckap1l (pp) Cd84", "SUID" : 599822, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599863", "source" : "587788", "target" : "588213", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Pdlim4", "weight" : 0.58552451682, "name" : "Nckap1l (pp) Pdlim4", "shared_name" : "Nckap1l (pp) Pdlim4", "SUID" : 599863, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600104", "source" : "587788", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Clec7a", "weight" : 0.583793268459, "name" : "Nckap1l (pp) Clec7a", "shared_name" : "Nckap1l (pp) Clec7a", "SUID" : 600104, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600033", "source" : "587788", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Cytip", "weight" : 0.599279580506, "name" : "Nckap1l (pp) Cytip", "shared_name" : "Nckap1l (pp) Cytip", "SUID" : 600033, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599912", "source" : "587788", "target" : "588394", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Lyzs", "weight" : 0.53591264231, "name" : "Nckap1l (pp) Lyzs", "shared_name" : "Nckap1l (pp) Lyzs", "SUID" : 599912, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599806", "source" : "587788", "target" : "587919", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Mefv", "weight" : 0.514705005243, "name" : "Nckap1l (pp) Mefv", "shared_name" : "Nckap1l (pp) Mefv", "SUID" : 599806, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599814", "source" : "587788", "target" : "587966", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Cyba", "weight" : 0.65629360161, "name" : "Nckap1l (pp) Cyba", "shared_name" : "Nckap1l (pp) Cyba", "SUID" : 599814, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599835", "source" : "587788", "target" : "588069", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) A430084P05Rik", "weight" : 0.473472199711, "name" : "Nckap1l (pp) A430084P05Rik", "shared_name" : "Nckap1l (pp) A430084P05Rik", "SUID" : 599835, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599869", "source" : "587788", "target" : "588233", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Laptm5", "weight" : 0.834103553341, "name" : "Nckap1l (pp) Laptm5", "shared_name" : "Nckap1l (pp) Laptm5", "SUID" : 599869, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599846", "source" : "587788", "target" : "588134", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Mlkl", "weight" : 0.480993852853, "name" : "Nckap1l (pp) Mlkl", "shared_name" : "Nckap1l (pp) Mlkl", "SUID" : 599846, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599796", "source" : "587788", "target" : "587857", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Lgmn", "weight" : 0.65189126237, "name" : "Nckap1l (pp) Lgmn", "shared_name" : "Nckap1l (pp) Lgmn", "SUID" : 599796, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599932", "source" : "587788", "target" : "588492", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Ncf4", "weight" : 0.509359404403, "name" : "Nckap1l (pp) Ncf4", "shared_name" : "Nckap1l (pp) Ncf4", "SUID" : 599932, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599872", "source" : "587788", "target" : "588242", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Cd83", "weight" : 0.560479524944, "name" : "Nckap1l (pp) Cd83", "shared_name" : "Nckap1l (pp) Cd83", "SUID" : 599872, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599841", "source" : "587788", "target" : "588104", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Bmp1", "weight" : 0.529659895153, "name" : "Nckap1l (pp) Bmp1", "shared_name" : "Nckap1l (pp) Bmp1", "SUID" : 599841, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600090", "source" : "587788", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) H2-DMa", "weight" : 0.439136143734, "name" : "Nckap1l (pp) H2-DMa", "shared_name" : "Nckap1l (pp) H2-DMa", "SUID" : 600090, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600097", "source" : "587788", "target" : "589261", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Ppif", "weight" : 0.507348644981, "name" : "Nckap1l (pp) Ppif", "shared_name" : "Nckap1l (pp) Ppif", "SUID" : 600097, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600087", "source" : "587788", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Serpinb6a", "weight" : 0.76983010155, "name" : "Nckap1l (pp) Serpinb6a", "shared_name" : "Nckap1l (pp) Serpinb6a", "SUID" : 600087, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600099", "source" : "587788", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Abi3", "weight" : 0.692465327915, "name" : "Nckap1l (pp) Abi3", "shared_name" : "Nckap1l (pp) Abi3", "SUID" : 600099, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599991", "source" : "587788", "target" : "588742", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Ifitm6", "weight" : 0.495916969772, "name" : "Nckap1l (pp) Ifitm6", "shared_name" : "Nckap1l (pp) Ifitm6", "SUID" : 599991, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600115", "source" : "587788", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Tspan33", "weight" : 0.44971692103, "name" : "Nckap1l (pp) Tspan33", "shared_name" : "Nckap1l (pp) Tspan33", "SUID" : 600115, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599803", "source" : "587788", "target" : "587881", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Vav1", "weight" : 0.65997777726, "name" : "Nckap1l (pp) Vav1", "shared_name" : "Nckap1l (pp) Vav1", "SUID" : 599803, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599855", "source" : "587788", "target" : "588185", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Aif1", "weight" : 0.483806201458, "name" : "Nckap1l (pp) Aif1", "shared_name" : "Nckap1l (pp) Aif1", "SUID" : 599855, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600116", "source" : "587788", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Lrrc33", "weight" : 0.554457869676, "name" : "Nckap1l (pp) Lrrc33", "shared_name" : "Nckap1l (pp) Lrrc33", "SUID" : 600116, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600059", "source" : "587788", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Cfp", "weight" : 0.789564850785, "name" : "Nckap1l (pp) Cfp", "shared_name" : "Nckap1l (pp) Cfp", "SUID" : 600059, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599862", "source" : "587788", "target" : "588212", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Anxa3", "weight" : 0.697867263902, "name" : "Nckap1l (pp) Anxa3", "shared_name" : "Nckap1l (pp) Anxa3", "SUID" : 599862, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599878", "source" : "587788", "target" : "588262", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) P2ry13", "weight" : 0.489999880734, "name" : "Nckap1l (pp) P2ry13", "shared_name" : "Nckap1l (pp) P2ry13", "SUID" : 599878, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600014", "source" : "587788", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Fcer1g", "weight" : 0.704928145683, "name" : "Nckap1l (pp) Fcer1g", "shared_name" : "Nckap1l (pp) Fcer1g", "SUID" : 600014, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599845", "source" : "587788", "target" : "588127", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Lpxn", "weight" : 0.658383349875, "name" : "Nckap1l (pp) Lpxn", "shared_name" : "Nckap1l (pp) Lpxn", "SUID" : 599845, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599903", "source" : "587788", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Cyp7b1", "weight" : 0.558151901151, "name" : "Nckap1l (pp) Cyp7b1", "shared_name" : "Nckap1l (pp) Cyp7b1", "SUID" : 599903, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599853", "source" : "587788", "target" : "588182", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Pip4k2a", "weight" : 0.719248139538, "name" : "Nckap1l (pp) Pip4k2a", "shared_name" : "Nckap1l (pp) Pip4k2a", "SUID" : 599853, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599873", "source" : "587788", "target" : "588244", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Gltp", "weight" : 0.568123977997, "name" : "Nckap1l (pp) Gltp", "shared_name" : "Nckap1l (pp) Gltp", "SUID" : 599873, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599818", "source" : "587788", "target" : "587982", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Plekho2", "weight" : 0.638932277745, "name" : "Nckap1l (pp) Plekho2", "shared_name" : "Nckap1l (pp) Plekho2", "SUID" : 599818, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599794", "source" : "587788", "target" : "587851", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Sh3kbp1", "weight" : 0.627533862543, "name" : "Nckap1l (pp) Sh3kbp1", "shared_name" : "Nckap1l (pp) Sh3kbp1", "SUID" : 599794, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600012", "source" : "587788", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Plac8", "weight" : 0.618258802673, "name" : "Nckap1l (pp) Plac8", "shared_name" : "Nckap1l (pp) Plac8", "SUID" : 600012, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599924", "source" : "587788", "target" : "588461", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Tbxas1", "weight" : 0.530233340453, "name" : "Nckap1l (pp) Tbxas1", "shared_name" : "Nckap1l (pp) Tbxas1", "SUID" : 599924, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599980", "source" : "587788", "target" : "588697", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.611890815797, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Nckap1l (pp) Cd52", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 9.7E-11, "weight" : 0.611890815797, "fusion" : "NA", "name" : "Nckap1l (pp) Cd52", "neighborhood" : "NA", "sourceEdge" : 15193.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Nckap1l (pp) Cd52", "combinedscore" : "NA", "SUID" : 599980, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 1.2127E-8, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "599906", "source" : "587788", "target" : "588365", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Tnfaip8l2", "weight" : 0.522892791832, "name" : "Nckap1l (pp) Tnfaip8l2", "shared_name" : "Nckap1l (pp) Tnfaip8l2", "SUID" : 599906, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599920", "source" : "587788", "target" : "588439", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Vim", "weight" : 0.438822790924, "name" : "Nckap1l (pp) Vim", "shared_name" : "Nckap1l (pp) Vim", "SUID" : 599920, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600030", "source" : "587788", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) C1qc", "weight" : 0.444280173326, "name" : "Nckap1l (pp) C1qc", "shared_name" : "Nckap1l (pp) C1qc", "SUID" : 600030, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599918", "source" : "587788", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Clec4n", "weight" : 0.642503464763, "name" : "Nckap1l (pp) Clec4n", "shared_name" : "Nckap1l (pp) Clec4n", "SUID" : 599918, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599888", "source" : "587788", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Cxcl16", "weight" : 0.656563129504, "name" : "Nckap1l (pp) Cxcl16", "shared_name" : "Nckap1l (pp) Cxcl16", "SUID" : 599888, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600112", "source" : "587788", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) C1qb", "weight" : 0.722366677455, "name" : "Nckap1l (pp) C1qb", "shared_name" : "Nckap1l (pp) C1qb", "SUID" : 600112, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599891", "source" : "587788", "target" : "588322", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Pfkfb4", "weight" : 0.604588266171, "name" : "Nckap1l (pp) Pfkfb4", "shared_name" : "Nckap1l (pp) Pfkfb4", "SUID" : 599891, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599792", "source" : "587788", "target" : "587844", "homology" : "NA", "shared_interaction" : "pp", "node2externalid" : "NA", "GraphId" : "NA", "experimental" : "NA", "TFeExperiment" : "NA", "stitchstringscore" : "NA", "wgcnaWeight" : 0.805028316121, "selected" : false, "textmining" : "NA", "knowledge" : "NA", "canonicalName" : "Nckap1l (pp) Ear2", "identifier" : "NA", "node2stringid" : "NA", "SourceFileKnow" : "NA", "kwalksLifeStylered" : 1.29466E-7, "weight" : 0.805028316121, "fusion" : "NA", "name" : "Nckap1l (pp) Ear2", "neighborhood" : "NA", "sourceEdge" : 15110.0, "TFeEffect" : "NA", "Source" : "NA", "shared_name" : "Nckap1l (pp) Ear2", "combinedscore" : "NA", "SUID" : 599792, "SourceFile" : "coexp", "coexpression" : "NA", "extraT0901317red" : "TRUE", "node1stringid" : "NA", "cooccurence" : "NA", "kwalksT0901317red" : 1.0291E-8, "Directed" : "NA", "interaction" : "pp", "node1externalid" : "NA", "SourcePathway" : "NA", "extraLifeStylered" : "TRUE", "PMID" : "NA", "TFeSource" : "NA" }, "selected" : false }, { "data" : { "id" : "599983", "source" : "587788", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) 6330416G13Rik", "weight" : 0.483942795385, "name" : "Nckap1l (pp) 6330416G13Rik", "shared_name" : "Nckap1l (pp) 6330416G13Rik", "SUID" : 599983, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600094", "source" : "587788", "target" : "589249", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Trem2", "weight" : 0.528237018787, "name" : "Nckap1l (pp) Trem2", "shared_name" : "Nckap1l (pp) Trem2", "SUID" : 600094, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599998", "source" : "587788", "target" : "588785", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) 5430435G22Rik", "weight" : 0.474805258118, "name" : "Nckap1l (pp) 5430435G22Rik", "shared_name" : "Nckap1l (pp) 5430435G22Rik", "SUID" : 599998, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599883", "source" : "587788", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Ms4a6d", "weight" : 0.621171451679, "name" : "Nckap1l (pp) Ms4a6d", "shared_name" : "Nckap1l (pp) Ms4a6d", "SUID" : 599883, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599897", "source" : "587788", "target" : "588342", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Mfge8", "weight" : 0.545138281839, "name" : "Nckap1l (pp) Mfge8", "shared_name" : "Nckap1l (pp) Mfge8", "SUID" : 599897, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600049", "source" : "587788", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Csrp1", "weight" : 0.600943411639, "name" : "Nckap1l (pp) Csrp1", "shared_name" : "Nckap1l (pp) Csrp1", "SUID" : 600049, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600109", "source" : "587788", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Prkcd", "weight" : 0.509838545393, "name" : "Nckap1l (pp) Prkcd", "shared_name" : "Nckap1l (pp) Prkcd", "SUID" : 600109, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600114", "source" : "587788", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Fblim1", "weight" : 0.478603856108, "name" : "Nckap1l (pp) Fblim1", "shared_name" : "Nckap1l (pp) Fblim1", "SUID" : 600114, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600123", "source" : "587788", "target" : "589400", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Il10ra", "weight" : 0.563112070091, "name" : "Nckap1l (pp) Il10ra", "shared_name" : "Nckap1l (pp) Il10ra", "SUID" : 600123, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600023", "source" : "587788", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Lgals3", "weight" : 0.76621293335, "name" : "Nckap1l (pp) Lgals3", "shared_name" : "Nckap1l (pp) Lgals3", "SUID" : 600023, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599966", "source" : "587788", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Casp1", "weight" : 0.614709947371, "name" : "Nckap1l (pp) Casp1", "shared_name" : "Nckap1l (pp) Casp1", "SUID" : 599966, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600044", "source" : "587788", "target" : "588968", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Bcl2a1c", "weight" : 0.418769359879, "name" : "Nckap1l (pp) Bcl2a1c", "shared_name" : "Nckap1l (pp) Bcl2a1c", "SUID" : 600044, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "599987", "source" : "587788", "target" : "588728", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) AB124611", "weight" : 0.411960121617, "name" : "Nckap1l (pp) AB124611", "shared_name" : "Nckap1l (pp) AB124611", "SUID" : 599987, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "600010", "source" : "587788", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Nckap1l (pp) Cotl1", "weight" : 0.662853814253, "name" : "Nckap1l (pp) Cotl1", "shared_name" : "Nckap1l (pp) Cotl1", "SUID" : 600010, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641342", "source" : "588257", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Axl", "weight" : 0.412122453177, "name" : "Sdcbp (pp) Axl", "shared_name" : "Sdcbp (pp) Axl", "SUID" : 641342, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641370", "source" : "588257", "target" : "588999", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Kctd12", "weight" : 0.430527365974, "name" : "Sdcbp (pp) Kctd12", "shared_name" : "Sdcbp (pp) Kctd12", "SUID" : 641370, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641309", "source" : "588257", "target" : "588459", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Pop5", "weight" : 0.513934359293, "name" : "Sdcbp (pp) Pop5", "shared_name" : "Sdcbp (pp) Pop5", "SUID" : 641309, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641376", "source" : "588257", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Cfp", "weight" : 0.601570000991, "name" : "Sdcbp (pp) Cfp", "shared_name" : "Sdcbp (pp) Cfp", "SUID" : 641376, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641306", "source" : "588257", "target" : "588432", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Kcnk6", "weight" : 0.483327211344, "name" : "Sdcbp (pp) Kcnk6", "shared_name" : "Sdcbp (pp) Kcnk6", "SUID" : 641306, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641410", "source" : "588257", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Ly86", "weight" : 0.548967586078, "name" : "Sdcbp (pp) Ly86", "shared_name" : "Sdcbp (pp) Ly86", "SUID" : 641410, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641338", "source" : "588257", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Cd52", "weight" : 0.425159223771, "name" : "Sdcbp (pp) Cd52", "shared_name" : "Sdcbp (pp) Cd52", "SUID" : 641338, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641349", "source" : "588257", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Slc15a3", "weight" : 0.537521306169, "name" : "Sdcbp (pp) Slc15a3", "shared_name" : "Sdcbp (pp) Slc15a3", "SUID" : 641349, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641327", "source" : "588257", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Slc11a1", "weight" : 0.575859120784, "name" : "Sdcbp (pp) Slc11a1", "shared_name" : "Sdcbp (pp) Slc11a1", "SUID" : 641327, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641332", "source" : "588257", "target" : "588636", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Repin1", "weight" : 0.428039196896, "name" : "Sdcbp (pp) Repin1", "shared_name" : "Sdcbp (pp) Repin1", "SUID" : 641332, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641331", "source" : "588257", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Casp1", "weight" : 0.446216825144, "name" : "Sdcbp (pp) Casp1", "shared_name" : "Sdcbp (pp) Casp1", "SUID" : 641331, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641392", "source" : "588257", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Serpinb6a", "weight" : 0.515019810882, "name" : "Sdcbp (pp) Serpinb6a", "shared_name" : "Sdcbp (pp) Serpinb6a", "SUID" : 641392, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641359", "source" : "588257", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Plac8", "weight" : 0.572971341075, "name" : "Sdcbp (pp) Plac8", "shared_name" : "Sdcbp (pp) Plac8", "SUID" : 641359, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641337", "source" : "588257", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) D12Ertd553e", "weight" : 0.410221287712, "name" : "Sdcbp (pp) D12Ertd553e", "shared_name" : "Sdcbp (pp) D12Ertd553e", "SUID" : 641337, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641411", "source" : "588257", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) C1qb", "weight" : 0.483498521925, "name" : "Sdcbp (pp) C1qb", "shared_name" : "Sdcbp (pp) C1qb", "SUID" : 641411, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641401", "source" : "588257", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Fcgr4", "weight" : 0.471745018039, "name" : "Sdcbp (pp) Fcgr4", "shared_name" : "Sdcbp (pp) Fcgr4", "SUID" : 641401, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641385", "source" : "588257", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Tmsb4x", "weight" : 0.423123588377, "name" : "Sdcbp (pp) Tmsb4x", "shared_name" : "Sdcbp (pp) Tmsb4x", "SUID" : 641385, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641367", "source" : "588257", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Cytip", "weight" : 0.404013863246, "name" : "Sdcbp (pp) Cytip", "shared_name" : "Sdcbp (pp) Cytip", "SUID" : 641367, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641290", "source" : "588257", "target" : "588291", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Ms4a6d", "weight" : 0.513721588191, "name" : "Sdcbp (pp) Ms4a6d", "shared_name" : "Sdcbp (pp) Ms4a6d", "SUID" : 641290, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641403", "source" : "588257", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Cd53", "weight" : 0.516544630905, "name" : "Sdcbp (pp) Cd53", "shared_name" : "Sdcbp (pp) Cd53", "SUID" : 641403, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641395", "source" : "588257", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Ear10", "weight" : 0.478326666172, "name" : "Sdcbp (pp) Ear10", "shared_name" : "Sdcbp (pp) Ear10", "SUID" : 641395, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641323", "source" : "588257", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Cd86", "weight" : 0.553469664877, "name" : "Sdcbp (pp) Cd86", "shared_name" : "Sdcbp (pp) Cd86", "SUID" : 641323, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641379", "source" : "588257", "target" : "589102", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Gja1", "weight" : 0.446872788955, "name" : "Sdcbp (pp) Gja1", "shared_name" : "Sdcbp (pp) Gja1", "SUID" : 641379, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641372", "source" : "588257", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Csrp1", "weight" : 0.522038402775, "name" : "Sdcbp (pp) Csrp1", "shared_name" : "Sdcbp (pp) Csrp1", "SUID" : 641372, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641346", "source" : "588257", "target" : "588742", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Ifitm6", "weight" : 0.504210717651, "name" : "Sdcbp (pp) Ifitm6", "shared_name" : "Sdcbp (pp) Ifitm6", "SUID" : 641346, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641413", "source" : "588257", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Tspan33", "weight" : 0.501868844294, "name" : "Sdcbp (pp) Tspan33", "shared_name" : "Sdcbp (pp) Tspan33", "SUID" : 641413, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641400", "source" : "588257", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Ear12", "weight" : 0.421429194411, "name" : "Sdcbp (pp) Ear12", "shared_name" : "Sdcbp (pp) Ear12", "SUID" : 641400, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641378", "source" : "588257", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Snx10", "weight" : 0.481659375868, "name" : "Sdcbp (pp) Snx10", "shared_name" : "Sdcbp (pp) Snx10", "SUID" : 641378, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641357", "source" : "588257", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Pla2g15", "weight" : 0.446433205155, "name" : "Sdcbp (pp) Pla2g15", "shared_name" : "Sdcbp (pp) Pla2g15", "SUID" : 641357, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641406", "source" : "588257", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Ear4", "weight" : 0.58066157061, "name" : "Sdcbp (pp) Ear4", "shared_name" : "Sdcbp (pp) Ear4", "SUID" : 641406, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641352", "source" : "588257", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Tmem86a", "weight" : 0.425065928727, "name" : "Sdcbp (pp) Tmem86a", "shared_name" : "Sdcbp (pp) Tmem86a", "SUID" : 641352, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641341", "source" : "588257", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Tlr2", "weight" : 0.427160906763, "name" : "Sdcbp (pp) Tlr2", "shared_name" : "Sdcbp (pp) Tlr2", "SUID" : 641341, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641326", "source" : "588257", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Coro1a", "weight" : 0.418212362756, "name" : "Sdcbp (pp) Coro1a", "shared_name" : "Sdcbp (pp) Coro1a", "SUID" : 641326, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641336", "source" : "588257", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) 5033414D02Rik", "weight" : 0.418768226487, "name" : "Sdcbp (pp) 5033414D02Rik", "shared_name" : "Sdcbp (pp) 5033414D02Rik", "SUID" : 641336, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641363", "source" : "588257", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Lgals3", "weight" : 0.530308068978, "name" : "Sdcbp (pp) Lgals3", "shared_name" : "Sdcbp (pp) Lgals3", "SUID" : 641363, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641303", "source" : "588257", "target" : "588394", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Lyzs", "weight" : 0.525446938926, "name" : "Sdcbp (pp) Lyzs", "shared_name" : "Sdcbp (pp) Lyzs", "SUID" : 641303, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641345", "source" : "588257", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Vsig4", "weight" : 0.602893304924, "name" : "Sdcbp (pp) Vsig4", "shared_name" : "Sdcbp (pp) Vsig4", "SUID" : 641345, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641387", "source" : "588257", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Rasgrp1", "weight" : 0.543494229649, "name" : "Sdcbp (pp) Rasgrp1", "shared_name" : "Sdcbp (pp) Rasgrp1", "SUID" : 641387, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641294", "source" : "588257", "target" : "588305", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Cxcl16", "weight" : 0.554308028665, "name" : "Sdcbp (pp) Cxcl16", "shared_name" : "Sdcbp (pp) Cxcl16", "SUID" : 641294, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "641329", "source" : "588257", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Sdcbp (pp) Gngt2", "weight" : 0.44783697727, "name" : "Sdcbp (pp) Gngt2", "shared_name" : "Sdcbp (pp) Gngt2", "SUID" : 641329, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645441", "source" : "588305", "target" : "588394", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Lyzs", "weight" : 0.50728374828, "name" : "Cxcl16 (pp) Lyzs", "shared_name" : "Cxcl16 (pp) Lyzs", "SUID" : 645441, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645459", "source" : "588305", "target" : "588492", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Ncf4", "weight" : 0.507936098055, "name" : "Cxcl16 (pp) Ncf4", "shared_name" : "Cxcl16 (pp) Ncf4", "SUID" : 645459, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645590", "source" : "588305", "target" : "589353", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Fblim1", "weight" : 0.412832239287, "name" : "Cxcl16 (pp) Fblim1", "shared_name" : "Cxcl16 (pp) Fblim1", "SUID" : 645590, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645445", "source" : "588305", "target" : "588424", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Clec4n", "weight" : 0.654815454452, "name" : "Cxcl16 (pp) Clec4n", "shared_name" : "Cxcl16 (pp) Clec4n", "SUID" : 645445, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645453", "source" : "588305", "target" : "588464", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Akr1b3", "weight" : 0.457522426582, "name" : "Cxcl16 (pp) Akr1b3", "shared_name" : "Cxcl16 (pp) Akr1b3", "SUID" : 645453, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645446", "source" : "588305", "target" : "588432", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Kcnk6", "weight" : 0.548475554862, "name" : "Cxcl16 (pp) Kcnk6", "shared_name" : "Cxcl16 (pp) Kcnk6", "SUID" : 645446, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645479", "source" : "588305", "target" : "588605", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Gngt2", "weight" : 0.646498099372, "name" : "Cxcl16 (pp) Gngt2", "shared_name" : "Cxcl16 (pp) Gngt2", "SUID" : 645479, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645430", "source" : "588305", "target" : "588335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Arpc1b", "weight" : 0.491740447662, "name" : "Cxcl16 (pp) Arpc1b", "shared_name" : "Cxcl16 (pp) Arpc1b", "SUID" : 645430, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645476", "source" : "588305", "target" : "588593", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Tmsb10", "weight" : 0.466196466974, "name" : "Cxcl16 (pp) Tmsb10", "shared_name" : "Cxcl16 (pp) Tmsb10", "SUID" : 645476, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645576", "source" : "588305", "target" : "589265", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Abi3", "weight" : 0.554932909971, "name" : "Cxcl16 (pp) Abi3", "shared_name" : "Cxcl16 (pp) Abi3", "SUID" : 645576, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645448", "source" : "588305", "target" : "588444", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Cd63", "weight" : 0.571792603861, "name" : "Cxcl16 (pp) Cd63", "shared_name" : "Cxcl16 (pp) Cd63", "SUID" : 645448, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645455", "source" : "588305", "target" : "588472", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Ly9", "weight" : 0.471572144613, "name" : "Cxcl16 (pp) Ly9", "shared_name" : "Cxcl16 (pp) Ly9", "SUID" : 645455, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645552", "source" : "588305", "target" : "589133", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Vcam1", "weight" : 0.531134757429, "name" : "Cxcl16 (pp) Vcam1", "shared_name" : "Cxcl16 (pp) Vcam1", "SUID" : 645552, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645434", "source" : "588305", "target" : "588351", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Ttc39a", "weight" : 0.440459023238, "name" : "Cxcl16 (pp) Ttc39a", "shared_name" : "Cxcl16 (pp) Ttc39a", "SUID" : 645434, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645487", "source" : "588305", "target" : "588639", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Gpnmb", "weight" : 0.497550343524, "name" : "Cxcl16 (pp) Gpnmb", "shared_name" : "Cxcl16 (pp) Gpnmb", "SUID" : 645487, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645510", "source" : "588305", "target" : "588789", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Tmem86a", "weight" : 0.55577473113, "name" : "Cxcl16 (pp) Tmem86a", "shared_name" : "Cxcl16 (pp) Tmem86a", "SUID" : 645510, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645499", "source" : "588305", "target" : "588727", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Axl", "weight" : 0.639678070792, "name" : "Cxcl16 (pp) Axl", "shared_name" : "Cxcl16 (pp) Axl", "SUID" : 645499, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645507", "source" : "588305", "target" : "588782", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Slc15a3", "weight" : 0.672221946362, "name" : "Cxcl16 (pp) Slc15a3", "shared_name" : "Cxcl16 (pp) Slc15a3", "SUID" : 645507, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645443", "source" : "588305", "target" : "588403", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Cd14", "weight" : 0.556779173949, "name" : "Cxcl16 (pp) Cd14", "shared_name" : "Cxcl16 (pp) Cd14", "SUID" : 645443, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645543", "source" : "588305", "target" : "589081", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Btk", "weight" : 0.427917549261, "name" : "Cxcl16 (pp) Btk", "shared_name" : "Cxcl16 (pp) Btk", "SUID" : 645543, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645547", "source" : "588305", "target" : "589090", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Pld4", "weight" : 0.409286079902, "name" : "Cxcl16 (pp) Pld4", "shared_name" : "Cxcl16 (pp) Pld4", "SUID" : 645547, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645497", "source" : "588305", "target" : "588721", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Serpina3g", "weight" : 0.595075645385, "name" : "Cxcl16 (pp) Serpina3g", "shared_name" : "Cxcl16 (pp) Serpina3g", "SUID" : 645497, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645439", "source" : "588305", "target" : "588378", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Selplg", "weight" : 0.532157318747, "name" : "Cxcl16 (pp) Selplg", "shared_name" : "Cxcl16 (pp) Selplg", "SUID" : 645439, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645577", "source" : "588305", "target" : "589269", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Ear12", "weight" : 0.522892757345, "name" : "Cxcl16 (pp) Ear12", "shared_name" : "Cxcl16 (pp) Ear12", "SUID" : 645577, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645551", "source" : "588305", "target" : "589113", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Ms4a7", "weight" : 0.446298740332, "name" : "Cxcl16 (pp) Ms4a7", "shared_name" : "Cxcl16 (pp) Ms4a7", "SUID" : 645551, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645519", "source" : "588305", "target" : "588863", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Fcgr3", "weight" : 0.460306491749, "name" : "Cxcl16 (pp) Fcgr3", "shared_name" : "Cxcl16 (pp) Fcgr3", "SUID" : 645519, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645528", "source" : "588305", "target" : "588927", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Hk3", "weight" : 0.527985910468, "name" : "Cxcl16 (pp) Hk3", "shared_name" : "Cxcl16 (pp) Hk3", "SUID" : 645528, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645436", "source" : "588305", "target" : "588358", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Cyp7b1", "weight" : 0.505226494144, "name" : "Cxcl16 (pp) Cyp7b1", "shared_name" : "Cxcl16 (pp) Cyp7b1", "SUID" : 645436, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645496", "source" : "588305", "target" : "588716", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) 6330416G13Rik", "weight" : 0.403880688851, "name" : "Cxcl16 (pp) 6330416G13Rik", "shared_name" : "Cxcl16 (pp) 6330416G13Rik", "SUID" : 645496, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645431", "source" : "588305", "target" : "588342", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Mfge8", "weight" : 0.42693035366, "name" : "Cxcl16 (pp) Mfge8", "shared_name" : "Cxcl16 (pp) Mfge8", "SUID" : 645431, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645570", "source" : "588305", "target" : "589236", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Ear10", "weight" : 0.520776714609, "name" : "Cxcl16 (pp) Ear10", "shared_name" : "Cxcl16 (pp) Ear10", "SUID" : 645570, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645531", "source" : "588305", "target" : "588952", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) H2-DMb1", "weight" : 0.46482213409, "name" : "Cxcl16 (pp) H2-DMb1", "shared_name" : "Cxcl16 (pp) H2-DMb1", "SUID" : 645531, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645504", "source" : "588305", "target" : "588742", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Ifitm6", "weight" : 0.408619493805, "name" : "Cxcl16 (pp) Ifitm6", "shared_name" : "Cxcl16 (pp) Ifitm6", "SUID" : 645504, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645451", "source" : "588305", "target" : "588459", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Pop5", "weight" : 0.452063281715, "name" : "Cxcl16 (pp) Pop5", "shared_name" : "Cxcl16 (pp) Pop5", "SUID" : 645451, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645582", "source" : "588305", "target" : "589285", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Clec7a", "weight" : 0.495641871074, "name" : "Cxcl16 (pp) Clec7a", "shared_name" : "Cxcl16 (pp) Clec7a", "SUID" : 645582, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645477", "source" : "588305", "target" : "588601", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Slc11a1", "weight" : 0.661518224766, "name" : "Cxcl16 (pp) Slc11a1", "shared_name" : "Cxcl16 (pp) Slc11a1", "SUID" : 645477, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645484", "source" : "588305", "target" : "588626", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Casp1", "weight" : 0.55339946999, "name" : "Cxcl16 (pp) Casp1", "shared_name" : "Cxcl16 (pp) Casp1", "SUID" : 645484, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645587", "source" : "588305", "target" : "589327", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Prkcd", "weight" : 0.477045185534, "name" : "Cxcl16 (pp) Prkcd", "shared_name" : "Cxcl16 (pp) Prkcd", "SUID" : 645587, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645493", "source" : "588305", "target" : "588697", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Cd52", "weight" : 0.671262532601, "name" : "Cxcl16 (pp) Cd52", "shared_name" : "Cxcl16 (pp) Cd52", "SUID" : 645493, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645491", "source" : "588305", "target" : "588675", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) D12Ertd553e", "weight" : 0.580513672345, "name" : "Cxcl16 (pp) D12Ertd553e", "shared_name" : "Cxcl16 (pp) D12Ertd553e", "SUID" : 645491, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645544", "source" : "588305", "target" : "589086", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Cfp", "weight" : 0.685327374487, "name" : "Cxcl16 (pp) Cfp", "shared_name" : "Cxcl16 (pp) Cfp", "SUID" : 645544, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645536", "source" : "588305", "target" : "588999", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Kctd12", "weight" : 0.457051259442, "name" : "Cxcl16 (pp) Kctd12", "shared_name" : "Cxcl16 (pp) Kctd12", "SUID" : 645536, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645463", "source" : "588305", "target" : "588512", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) H2-Eb1", "weight" : 0.494301171941, "name" : "Cxcl16 (pp) H2-Eb1", "shared_name" : "Cxcl16 (pp) H2-Eb1", "SUID" : 645463, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645501", "source" : "588305", "target" : "588733", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Tpm4", "weight" : 0.550543668339, "name" : "Cxcl16 (pp) Tpm4", "shared_name" : "Cxcl16 (pp) Tpm4", "SUID" : 645501, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645529", "source" : "588305", "target" : "588928", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Cytip", "weight" : 0.586672416992, "name" : "Cxcl16 (pp) Cytip", "shared_name" : "Cxcl16 (pp) Cytip", "SUID" : 645529, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645498", "source" : "588305", "target" : "588725", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Tlr2", "weight" : 0.689445745912, "name" : "Cxcl16 (pp) Tlr2", "shared_name" : "Cxcl16 (pp) Tlr2", "SUID" : 645498, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645548", "source" : "588305", "target" : "589092", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Snx10", "weight" : 0.508168848003, "name" : "Cxcl16 (pp) Snx10", "shared_name" : "Cxcl16 (pp) Snx10", "SUID" : 645548, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645581", "source" : "588305", "target" : "589284", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Cd53", "weight" : 0.479530768457, "name" : "Cxcl16 (pp) Cd53", "shared_name" : "Cxcl16 (pp) Cd53", "SUID" : 645581, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645569", "source" : "588305", "target" : "589231", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) H2-DMa", "weight" : 0.531739197347, "name" : "Cxcl16 (pp) H2-DMa", "shared_name" : "Cxcl16 (pp) H2-DMa", "SUID" : 645569, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645561", "source" : "588305", "target" : "589163", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Rasgrp1", "weight" : 0.507591512082, "name" : "Cxcl16 (pp) Rasgrp1", "shared_name" : "Cxcl16 (pp) Rasgrp1", "SUID" : 645561, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645538", "source" : "588305", "target" : "589005", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Csrp1", "weight" : 0.720181400128, "name" : "Cxcl16 (pp) Csrp1", "shared_name" : "Cxcl16 (pp) Csrp1", "SUID" : 645538, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645475", "source" : "588305", "target" : "588592", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Coro1a", "weight" : 0.634139722065, "name" : "Cxcl16 (pp) Coro1a", "shared_name" : "Cxcl16 (pp) Coro1a", "SUID" : 645475, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645502", "source" : "588305", "target" : "588739", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Vsig4", "weight" : 0.609087132412, "name" : "Cxcl16 (pp) Vsig4", "shared_name" : "Cxcl16 (pp) Vsig4", "SUID" : 645502, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645516", "source" : "588305", "target" : "588835", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Cotl1", "weight" : 0.590911013616, "name" : "Cxcl16 (pp) Cotl1", "shared_name" : "Cxcl16 (pp) Cotl1", "SUID" : 645516, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645518", "source" : "588305", "target" : "588860", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Fcer1g", "weight" : 0.647412479719, "name" : "Cxcl16 (pp) Fcer1g", "shared_name" : "Cxcl16 (pp) Fcer1g", "SUID" : 645518, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645588", "source" : "588305", "target" : "589335", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Ly86", "weight" : 0.69170524089, "name" : "Cxcl16 (pp) Ly86", "shared_name" : "Cxcl16 (pp) Ly86", "SUID" : 645588, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645457", "source" : "588305", "target" : "588481", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Plscr1", "weight" : 0.50443480709, "name" : "Cxcl16 (pp) Plscr1", "shared_name" : "Cxcl16 (pp) Plscr1", "SUID" : 645457, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645456", "source" : "588305", "target" : "588480", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Renbp", "weight" : 0.442988022289, "name" : "Cxcl16 (pp) Renbp", "shared_name" : "Cxcl16 (pp) Renbp", "SUID" : 645456, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645566", "source" : "588305", "target" : "589222", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Serpinb6a", "weight" : 0.686743045677, "name" : "Cxcl16 (pp) Serpinb6a", "shared_name" : "Cxcl16 (pp) Serpinb6a", "SUID" : 645566, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645517", "source" : "588305", "target" : "588855", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Plac8", "weight" : 0.603655544169, "name" : "Cxcl16 (pp) Plac8", "shared_name" : "Cxcl16 (pp) Plac8", "SUID" : 645517, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645589", "source" : "588305", "target" : "589344", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) C1qb", "weight" : 0.677232093534, "name" : "Cxcl16 (pp) C1qb", "shared_name" : "Cxcl16 (pp) C1qb", "SUID" : 645589, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645511", "source" : "588305", "target" : "588803", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Obrgrp", "weight" : 0.524197139651, "name" : "Cxcl16 (pp) Obrgrp", "shared_name" : "Cxcl16 (pp) Obrgrp", "SUID" : 645511, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645579", "source" : "588305", "target" : "589275", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Fcgr4", "weight" : 0.718283426769, "name" : "Cxcl16 (pp) Fcgr4", "shared_name" : "Cxcl16 (pp) Fcgr4", "SUID" : 645579, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645490", "source" : "588305", "target" : "588664", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) 5033414D02Rik", "weight" : 0.50567898279, "name" : "Cxcl16 (pp) 5033414D02Rik", "shared_name" : "Cxcl16 (pp) 5033414D02Rik", "SUID" : 645490, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645521", "source" : "588305", "target" : "588886", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Lgals3", "weight" : 0.705167514726, "name" : "Cxcl16 (pp) Lgals3", "shared_name" : "Cxcl16 (pp) Lgals3", "SUID" : 645521, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645527", "source" : "588305", "target" : "588920", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) C1qc", "weight" : 0.50566080747, "name" : "Cxcl16 (pp) C1qc", "shared_name" : "Cxcl16 (pp) C1qc", "SUID" : 645527, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645584", "source" : "588305", "target" : "589304", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Ear4", "weight" : 0.678622019321, "name" : "Cxcl16 (pp) Ear4", "shared_name" : "Cxcl16 (pp) Ear4", "SUID" : 645584, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645592", "source" : "588305", "target" : "589364", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Lrrc33", "weight" : 0.423109068921, "name" : "Cxcl16 (pp) Lrrc33", "shared_name" : "Cxcl16 (pp) Lrrc33", "SUID" : 645592, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645458", "source" : "588305", "target" : "588490", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Arhgap30", "weight" : 0.404981384324, "name" : "Cxcl16 (pp) Arhgap30", "shared_name" : "Cxcl16 (pp) Arhgap30", "SUID" : 645458, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645514", "source" : "588305", "target" : "588813", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Pla2g15", "weight" : 0.446835701148, "name" : "Cxcl16 (pp) Pla2g15", "shared_name" : "Cxcl16 (pp) Pla2g15", "SUID" : 645514, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645556", "source" : "588305", "target" : "589151", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Tmsb4x", "weight" : 0.571126122726, "name" : "Cxcl16 (pp) Tmsb4x", "shared_name" : "Cxcl16 (pp) Tmsb4x", "SUID" : 645556, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645591", "source" : "588305", "target" : "589357", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Tspan33", "weight" : 0.46138005252, "name" : "Cxcl16 (pp) Tspan33", "shared_name" : "Cxcl16 (pp) Tspan33", "SUID" : 645591, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645483", "source" : "588305", "target" : "588620", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Olfml3", "weight" : 0.420144695301, "name" : "Cxcl16 (pp) Olfml3", "shared_name" : "Cxcl16 (pp) Olfml3", "SUID" : 645483, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645469", "source" : "588305", "target" : "588552", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Cd86", "weight" : 0.661485561852, "name" : "Cxcl16 (pp) Cd86", "shared_name" : "Cxcl16 (pp) Cd86", "SUID" : 645469, "interaction" : "pp" }, "selected" : false }, { "data" : { "id" : "645473", "source" : "588305", "target" : "588581", "shared_interaction" : "pp", "selected" : false, "canonicalName" : "Cxcl16 (pp) Snn", "weight" : 0.425271765122, "name" : "Cxcl16 (pp) Snn", "shared_name" : "Cxcl16 (pp) Snn", "SUID" : 645473, "interaction" : "pp" }, "selected" : false } ] } } ================================================ FILE: documentation/demos/6000-elements/index.html ================================================ Cytoscape.js (6,000 elements)

Cytoscape.js (6,000 elements)

================================================ FILE: documentation/demos/6000-elements/style.css ================================================ html, body { margin: 0; padding: 0; font: 12pt helvetica neue, helvetica, liberation sans, sans-serif; line-height: 1; } h1 { position: absolute; left: 0; top: 0; pointer-events: none; font-weight: normal; font-size: 1em; margin: 0.5em; color: #888; } #cy { position: absolute; left: 0; right: 0; top: 0; bottom: 0; } ================================================ FILE: documentation/demos/animated-bfs/code.js ================================================ var cy = cytoscape({ container: document.getElementById('cy'), boxSelectionEnabled: false, autounselectify: true, style: cytoscape.stylesheet() .selector('node') .style({ 'content': 'data(id)' }) .selector('edge') .style({ 'curve-style': 'bezier', 'target-arrow-shape': 'triangle', 'width': 4, 'line-color': '#ddd', 'target-arrow-color': '#ddd' }) .selector('.highlighted') .style({ 'background-color': '#61bffc', 'line-color': '#61bffc', 'target-arrow-color': '#61bffc', 'transition-property': 'background-color, line-color, target-arrow-color', 'transition-duration': '0.5s' }), elements: { nodes: [ { data: { id: 'a' } }, { data: { id: 'b' } }, { data: { id: 'c' } }, { data: { id: 'd' } }, { data: { id: 'e' } } ], edges: [ { data: { id: 'a"e', weight: 1, source: 'a', target: 'e' } }, { data: { id: 'ab', weight: 3, source: 'a', target: 'b' } }, { data: { id: 'be', weight: 4, source: 'b', target: 'e' } }, { data: { id: 'bc', weight: 5, source: 'b', target: 'c' } }, { data: { id: 'ce', weight: 6, source: 'c', target: 'e' } }, { data: { id: 'cd', weight: 2, source: 'c', target: 'd' } }, { data: { id: 'de', weight: 7, source: 'd', target: 'e' } } ] }, layout: { name: 'breadthfirst', directed: true, roots: '#a', padding: 10 } }); var bfs = cy.elements().bfs('#a', function(){}, true); var i = 0; var highlightNextEle = function(){ if( i < bfs.path.length ){ bfs.path[i].addClass('highlighted'); i++; setTimeout(highlightNextEle, 1000); } }; // kick off first highlight highlightNextEle(); ================================================ FILE: documentation/demos/animated-bfs/index.html ================================================ Animated BFS
================================================ FILE: documentation/demos/animated-bfs/style.css ================================================ body { font: 14px helvetica neue, helvetica, arial, sans-serif; } #cy { height: 100%; width: 100%; position: absolute; left: 0; top: 0; } ================================================ FILE: documentation/demos/architecture/code.js ================================================ var cy = cytoscape({ container: document.getElementById('cy'), style: cytoscape.stylesheet() .selector('node') .css({ 'content': 'data(name)', 'text-valign': 'center', 'color': 'white', 'text-outline-width': 5, 'text-outline-color': '#888', 'width': 80, 'height': 80 }) .selector('edge') .css({ 'content': 'data(name)', 'width': 8, 'line-color': '#888', 'target-arrow-color': '#888', 'source-arrow-color': '#888', 'target-arrow-shape': 'triangle' }) .selector(':selected') // .css({ // 'background-color': 'black', // 'line-color': 'black', // 'target-arrow-color': 'black', // 'source-arrow-color': 'black', // 'text-outline-color': 'black' // }) .selector('$node > node') .css({ 'shape': 'roundrectangle', 'text-valign': 'top', 'height': 'auto', 'width': 'auto', 'background-color': '#ccc', 'background-opacity': 0.333, 'color': '#888', 'text-outline-width': 0, 'font-size': 25 }) // .selector('#core') // .css({ // 'background-color': '#000', // 'text-outline-color': '#000' // }) .selector('#core, #app') .css({ 'width': 120, 'height': 120, 'font-size': 25 }) .selector('#api') .css({ 'padding-top': 20, 'padding-left': 20, 'padding-bottom': 20, 'padding-right': 20 }) .selector('#ext, .ext') .css({ 'background-color': '#93CDDD', 'text-outline-color': '#93CDDD', 'line-color': '#93CDDD', 'target-arrow-color': '#93CDDD' }) .selector('#app, .app') .css({ 'background-color': '#F79646', 'text-outline-color': '#F79646', 'line-color': '#F79646', 'target-arrow-color': '#F79646', 'text-outline-color': '#F79646', 'text-outline-width': 5, 'color': '#fff' }) .selector('#cy') .css({ 'background-opacity': 0, 'border-width': 1, 'border-color': '#aaa', 'border-opacity': 0.5, 'font-size': 50, 'padding-top': 40, 'padding-left': 40, 'padding-bottom': 40, 'padding-right': 40 }), elements: { nodes: [ { data: { id: 'cy', name: 'Cytoscape.js' } }, { data: { id: 'core', name: 'Core', parent: 'api' }, position: { x: 0, y: 0 } }, { data: { id: 'eles', name: 'Collection', parent: 'api' }, position: { x: 150, y: 150 } }, { data: { id: 'style', name: 'Stylesheet', parent: 'api' }, position: { x: 0, y: 150 } }, { data: { id: 'selector', name: 'Selector', parent: 'api' }, position: { x: -150, y: 150 } }, { data: { id: 'ext', name: 'Extensions', parent: 'cy' } }, { data: { id: 'corefn', name: 'Core Function', parent: 'ext' }, classes: 'ext', position: { x: 350, y: -140 } }, { data: { id: 'elesfn', name: 'Collection Function', parent: 'ext' }, classes: 'ext', position: { x: 350, y: 0 } }, { data: { id: 'layout', name: 'Layout', parent: 'ext' }, classes: 'ext', position: { x: 350, y: 140 } }, { data: { id: 'renderer', name: 'Renderer', parent: 'ext' }, classes: 'ext', position: { x: 350, y: 280 } }, { data: { id: 'api', name: 'Core API', parent: 'cy' } }, { data: { id: 'app', name: 'Client' }, position: { x: 0, y: 480 } } ], edges: [ { data: { source: 'core', target: 'eles' } }, { data: { source: 'core', target: 'ext' } }, { data: { source: 'core', target: 'style' } }, { data: { source: 'style', target: 'selector' } }, { data: { source: 'core', target: 'selector' } }, { data: { source: 'elesfn', target: 'eles' }, classes: 'ext' }, { data: { source: 'corefn', target: 'core' }, classes: 'ext' }, { data: { source: 'layout', target: 'api' }, classes: 'ext' }, { data: { source: 'renderer', target: 'api' }, classes: 'ext' }, { data: { source: 'app', target: 'api', name: 'use' }, classes: 'app' }, { data: { source: 'app', target: 'ext', name: 'register' }, classes: 'app' } ] }, layout: { name: 'preset' } }); ================================================ FILE: documentation/demos/architecture/index.html ================================================
================================================ FILE: documentation/demos/architecture/style.css ================================================ body { font: 14px helvetica neue, helvetica, arial, sans-serif; } #cy { height: 100%; width: 100%; position: absolute; left: 0; top: 0; } ================================================ FILE: documentation/demos/background-image-containment/code.js ================================================ cytoscape({ container: document.getElementById('cy'), boxSelectionEnabled: false, autounselectify: true, style: [{ selector: 'node', style: { shape: 'round-rectangle', 'background-image': ['https://live.staticflickr.com/7272/7633179468_3e19e45a0c_b.jpg', 'https://live.staticflickr.com/3063/2751740612_af11fb090b_b.jpg'], 'background-image-containment': ['over', 'inside'], 'background-clip': ['none', 'none'], 'bounds-expansion': 25, 'background-width': [20, 20], 'background-height': [20, 20], 'background-position-x': ['-10','120%'], 'background-position-y': ['-10','-10'], 'background-color': 'lightgray', 'border-color': 'gray', 'border-width': 1, 'text-halign': 'center', 'text-valign': 'center', width: 65, height: 30 } }], elements: { nodes: [ { data: { id: 'inside', name: 'Test', } }, ] }, layout: { name: 'grid', padding: 10 } }); ================================================ FILE: documentation/demos/background-image-containment/index.html ================================================ Background Image Containment example
================================================ FILE: documentation/demos/background-image-containment/style.css ================================================ body { font: 14px helvetica neue, helvetica, arial, sans-serif; } #cy { height: 100%; width: 100%; position: absolute; left: 0; top: 0; } #info { color: #c88; font-size: 1em; position: absolute; z-index: -1; left: 1em; top: 1em; } ================================================ FILE: documentation/demos/circle-layout/code.js ================================================ fetch('data.json', {mode: 'no-cors'}) .then(function(res) { return res.json() }) .then(function(data) { var cy = window.cy = cytoscape({ container: document.getElementById('cy'), boxSelectionEnabled: false, autounselectify: true, layout: { name: 'circle' }, style: [ { selector: 'node', style: { 'height': 20, 'width': 20, 'background-color': '#e8e406' } }, { selector: 'edge', style: { 'curve-style': 'haystack', 'haystack-radius': 0, 'width': 5, 'opacity': 0.5, 'line-color': '#f2f08c' } } ], elements: data }); }); ================================================ FILE: documentation/demos/circle-layout/data.json ================================================ [{ "data": { "id": "HIRA", "altered": 0, "rank": 148, "cited": 53, "uniprotdesc": "Cooperates with ASF1A to promote replication-independentchromatin assembly. Required for the periodic repression ofhistone gene transcription during the cell cycle. Required for theformation of senescence-associated heterochromatin foci (SAHF) andefficient senescence-associated cell cycle exit.", "isseed": false, "uniprot": "P54198", "isvalid": true, "importance": 3 }, "position": { "x": 539.5, "y": 641.7372431003224 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SERPINE1", "altered": 0, "rank": 5, "cited": 7063, "uniprotdesc": "Serine protease inhibitor. This inhibitor acts as 'bait'for tissue plasminogen activator, urokinase, protein C andmatriptase-3/TMPRSS7. Its rapid interaction with PLAT may functionas a major control point in the regulation of fibrinolysis.", "isseed": false, "uniprot": "P05121", "isvalid": true, "importance": 3 }, "position": { "x": 670.4301869950953, "y": 229.70989985711336 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "FAS", "altered": 0, "rank": 38, "cited": 1011, "uniprotdesc": "Receptor for TNFSF6/FASLG. The adapter molecule FADDrecruits caspase-8 to the activated receptor. The resulting death-inducing signaling complex (DISC) performs caspase-8 proteolyticactivation which initiates the subsequent cascade of caspases(aspartate-specific cysteine proteases) mediating apoptosis. FAS-mediated apoptosis may have a role in the induction of peripheraltolerance, in the antigen-stimulated suicide of mature T-cells, orboth. The secreted isoforms 2 to 6 block apoptosis (in vitro).", "isseed": false, "uniprot": "P25445", "isvalid": true, "importance": 3 }, "position": { "x": 771.3915110914829, "y": 613.8066148172879 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "H1F0", "altered": 0, "rank": 179, "cited": 8, "uniprotdesc": "Histones H1 are necessary for the condensation ofnucleosome chains into higher-order structures. The H1F0 histonesare found in cells that are in terminal stages of differentiationor that have low rates of cell division.", "isseed": false, "uniprot": "P07305", "isvalid": true, "importance": 3 }, "position": { "x": 396.564243092928, "y": 545.1295331255458 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CHEK2", "altered": 0, "rank": 42, "cited": 859, "uniprotdesc": "Serine/threonine-protein kinase which is required forcheckpoint-mediated cell cycle arrest, activation of DNA repairand apoptosis in response to the presence of DNA double-strandbreaks. May also negatively regulate cell cycle progression duringunperturbed cell cycles. Following activation, phosphorylatesnumerous effectors preferentially at the consensus sequence [L-X-R-X-X-S/T]. Regulates cell cycle checkpoint arrest throughphosphorylation of CDC25A, CDC25B and CDC25C, inhibiting theiractivity. Inhibition of CDC25 phosphatase activity leads toincreased inhibitory tyrosine phosphorylation of CDK-cyclincomplexes and blocks cell cycle progression. May alsophosphorylate NEK6 which is involved in G2/M cell cycle arrest.Regulates DNA repair through phosphorylation of BRCA2, enhancingthe association of RAD51 with chromatin which promotes DNA repairby homologous recombination. Also stimulates the transcription ofgenes involved in DNA repair (including BRCA2) through thephosphorylation and activation of the transcription factor FOXM1.Regulates apoptosis through the phosphorylation of p53/TP53, MDM4and PML. Phosphorylation of p53/TP53 at 'Ser-20' by CHEK2 mayalleviate inhibition by MDM2, leading to accumulation of activep53/TP53. Phosphorylation of MDM4 may also reduce degradation ofp53/TP53. Also controls the transcription of pro-apoptotic genesthrough phosphorylation of the transcription factor E2F1. Tumorsuppressor, it may also have a DNA damage-independent function inmitotic spindle assembly by phosphorylating BRCA1. Its absence maybe a cause of the chromosomal instability observed in some cancercells. ", "isseed": false, "uniprot": "O96017", "isvalid": true, "importance": 3 }, "position": { "x": 665.61605725324, "y": 327.88536532731405 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "COL18A1", "altered": 0, "rank": 157, "cited": 30, "uniprotdesc": "COLA18A probably plays a major role in determining theretinal structure as well as in the closure of the neural tube.Endostatin potently inhibits endothelial cellproliferation and angiogenesis. May inhibit angiogenesis bybinding to the heparan sulfate proteoglycans involved in growthfactor signaling.", "isseed": false, "uniprot": "P39060", "isvalid": true, "importance": 3 }, "position": { "x": 315.495548442639, "y": 356.3503242429216 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CREBBP", "altered": 0, "rank": 24, "cited": 2442, "uniprotdesc": "Acetylates histones, giving a specific tag fortranscriptional activation. Also acetylates non-histone proteins,like NCOA3 and FOXO1. Binds specifically to phosphorylated CREBand enhances its transcriptional activity toward cAMP-responsivegenes. Acts as a coactivator of ALX1 in the presence of EP300.Acts as a circadian transcriptional coactivator which enhances theactivity of the circadian transcriptional activators: NPAS2-ARNTL/BMAL1 and CLOCK-ARNTL/BMAL1 heterodimers.", "isseed": false, "uniprot": "Q92793", "isvalid": true, "importance": 3 }, "position": { "x": 468.2392322240752, "y": 311.08612174318614 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "FDXR", "altered": 0, "rank": 147, "cited": 54, "uniprotdesc": "Serves as the first electron transfer protein in all themitochondrial P450 systems. Including cholesterol side chaincleavage in all steroidogenic tissues, steroid 11-betahydroxylation in the adrenal cortex, 25-OH-vitamin D3-24hydroxylation in the kidney, and sterol C-27 hydroxylation in theliver.", "isseed": false, "uniprot": "P22570", "isvalid": true, "importance": 3 }, "position": { "x": 614.0116881932149, "y": 209.57981996234878 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SMYD2", "altered": 0, "rank": 175, "cited": 12, "uniprotdesc": "Protein-lysine N-methyltransferase that methylates bothhistones and non-histone proteins, including p53/TP53 and RB1.Specifically methylates histone H3 'Lys-4' (H3K4me) anddimethylates histone H3 'Lys-36' (H3K36me2). Shows even highermethyltransferase activity on p53/TP53. Monomethylates 'Lys-370'of p53/TP53, leading to decreased DNA-binding activity andsubsequent transcriptional regulation activity of p53/TP53.Monomethylates RB1 at 'Lys-860'. ", "isseed": false, "uniprot": "Q9NRG4", "isvalid": true, "importance": 3 }, "position": { "x": 799.3458853307084, "y": 560.8271840491047 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "ATR", "altered": 0, "rank": 52, "cited": 628, "uniprotdesc": "Serine/threonine protein kinase which activatescheckpoint signaling upon genotoxic stresses such as ionizingradiation (IR), ultraviolet light (UV), or DNA replicationstalling, thereby acting as a DNA damage sensor. Recognizes thesubstrate consensus sequence [ST]-Q. Phosphorylates BRCA1, CHEK1,MCM2, RAD17, RPA2, SMC1 and p53/TP53, which collectively inhibitDNA replication and mitosis and promote DNA repair, recombinationand apoptosis. Phosphorylates 'Ser-139' of histone variantH2AX/H2AFX at sites of DNA damage, thereby regulating DNA damageresponse mechanism. Required for FANCD2 ubiquitination. Criticalfor maintenance of fragile site stability and efficient regulationof centrosome duplication. ", "isseed": false, "uniprot": "Q13535", "isvalid": true, "importance": 3 }, "position": { "x": 696.7065384003552, "y": 570.6754072575451 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HGF", "altered": 0, "rank": 4, "cited": 7554, "uniprotdesc": "Potent mitogen for mature parenchymal hepatocyte cells,seems to be a hepatotrophic factor, and acts as a growth factorfor a broad spectrum of tissues and cell types. Activating ligandfor the receptor tyrosine kinase MET by binding to it andpromoting its dimerization. ", "isseed": false, "uniprot": "P14210", "isvalid": true, "importance": 3 }, "position": { "x": 732.163947642761, "y": 659.0776363377252 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "ATM", "altered": 0, "rank": 25, "cited": 2298, "uniprotdesc": "Serine/threonine protein kinase which activatescheckpoint signaling upon double strand breaks (DSBs), apoptosisand genotoxic stresses such as ionizing ultraviolet A light (UVA),thereby acting as a DNA damage sensor. Recognizes the substrateconsensus sequence [ST]-Q. Phosphorylates 'Ser-139' of histonevariant H2AX/H2AFX at double strand breaks (DSBs), therebyregulating DNA damage response mechanism. Also plays a role inpre-B cell allelic exclusion, a process leading to expression of asingle immunoglobulin heavy chain allele to enforce clonality andmonospecific recognition by the B-cell antigen receptor (BCR)expressed on individual B-lymphocytes. After the introduction ofDNA breaks by the RAG complex on one immunoglobulin allele, actsby mediating a repositioning of the second allele topericentromeric heterochromatin, preventing accessibility to theRAG complex and recombination of the second allele. Also involvedin signal transduction and cell cycle control. May function as atumor suppressor. Necessary for activation of ABL1 and SAPK.Phosphorylates DYRK2, CHEK2, p53/TP53, FANCD2, NFKBIA, BRCA1,CTIP, nibrin (NBN), TERF1, RAD9 and DCLRE1C. May play a role invesicle and/or protein transport. Could play a role in T-celldevelopment, gonad and neurological function. Plays a role inreplication-dependent histone mRNA degradation. Binds DNA ends.Phosphorylation of DYRK2 in nucleus in response to genotoxicstress prevents its MDM2-mediated ubiquitination and subsequentproteasome degradation. Phosphorylates ATF2 which stimulates itsfunction in DNA damage response. ", "isseed": false, "uniprot": "Q13315", "isvalid": true, "importance": 3 }, "position": { "x": 723.6214512404813, "y": 517.2928623066505 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP63", "altered": 0, "rank": 37, "cited": 1171, "uniprotdesc": "Acts as a sequence specific DNA binding transcriptionalactivator or repressor. The isoforms contain a varying set oftransactivation and auto-regulating transactivation inhibitingdomains thus showing an isoform specific activity. Isoform 2activates RIPK4 transcription. May be required in conjunction withTP73/p73 for initiation of p53/TP53 dependent apoptosis inresponse to genotoxic insults and the presence of activatedoncogenes. Involved in Notch signaling by probably inducing JAG1and JAG2. Plays a role in the regulation of epithelialmorphogenesis. The ratio of DeltaN-type and TA*-type isoforms maygovern the maintenance of epithelial stem cell compartments andregulate the initiation of epithelial stratification from theundifferentiated embryonal ectoderm. Required for limb formationfrom the apical ectodermal ridge. Activates transcription of thep21 promoter. ", "isseed": false, "uniprot": "Q9H3D4", "isvalid": true, "importance": 3 }, "position": { "x": 554.5, "y": 495.5 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "GPX1", "altered": 0, "rank": 13, "cited": 3644, "uniprotdesc": "Protects the hemoglobin in erythrocytes from oxidativebreakdown.", "isseed": false, "uniprot": "P07203", "isvalid": true, "importance": 3 }, "position": { "x": 412.4474306913114, "y": 244.4618875964815 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TRIAP1", "altered": 0, "rank": 183, "cited": 7, "uniprotdesc": "Involved in the modulation of the mitochondrialapoptotic pathway by ensuring the accumulation of cardiolipin (CL)in mitochondrial membranes. In vitro, the TRIAP1:PRELID1 complexmediates the transfer of phosphatidic acid (PA) between liposomesand probably functions as a PA transporter across themitochondrion intermembrane space to provide PA for CL synthesisin the inner membrane. Mediates cell survival by inhibitingactivation of caspase-9 which prevents induction of apoptosis.", "isseed": false, "uniprot": "O43715", "isvalid": true, "importance": 3 }, "position": { "x": 554.5, "y": 202.751489857487 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HIST1H1E", "altered": 0, "rank": 167, "cited": 19, "uniprotdesc": "Histone H1 protein binds to linker DNA betweennucleosomes forming the macromolecular structure known as thechromatin fiber. Histones H1 are necessary for the condensation ofnucleosome chains into higher-order structured fibers. Acts alsoas a regulator of individual gene transcription through chromatinremodeling, nucleosome spacing and DNA methylation (Bysimilarity). ", "isseed": false, "uniprot": "P10412", "isvalid": true, "importance": 3 }, "position": { "x": 509.931522689569, "y": 636.667218490667 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HIST1H1D", "altered": 0, "rank": 184, "cited": 6, "uniprotdesc": "Histone H1 protein binds to linker DNA betweennucleosomes forming the macromolecular structure known as thechromatin fiber. Histones H1 are necessary for the condensation ofnucleosome chains into higher-order structured fibers. Acts alsoas a regulator of individual gene transcription through chromatinremodeling, nucleosome spacing and DNA methylation (Bysimilarity). ", "isseed": false, "uniprot": "P16402", "isvalid": true, "importance": 3 }, "position": { "x": 385.3785487595187, "y": 517.2928623066505 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HIST1H1C", "altered": 0, "rank": 174, "cited": 13, "uniprotdesc": "Histone H1 protein binds to linker DNA betweennucleosomes forming the macromolecular structure known as thechromatin fiber. Histones H1 are necessary for the condensation ofnucleosome chains into higher-order structured fibers. Acts alsoas a regulator of individual gene transcription through chromatinremodeling, nucleosome spacing and DNA methylation (Bysimilarity). ", "isseed": false, "uniprot": "P16403", "isvalid": true, "importance": 3 }, "position": { "x": 379.058170659647, "y": 487.9662051382201 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HIST1H1B", "altered": 0, "rank": 96, "cited": 209, "uniprotdesc": "Histone H1 protein binds to linker DNA betweennucleosomes forming the macromolecular structure known as thechromatin fiber. Histones H1 are necessary for the condensation ofnucleosome chains into higher-order structured fibers. Acts alsoas a regulator of individual gene transcription through chromatinremodeling, nucleosome spacing and DNA methylation (Bysimilarity). ", "isseed": false, "uniprot": "P16401", "isvalid": true, "importance": 3 }, "position": { "x": 381.59546915616875, "y": 428.2362230943135 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HIST1H1A", "altered": 0, "rank": 173, "cited": 13, "uniprotdesc": "Histone H1 protein binds to linker DNA betweennucleosomes forming the macromolecular structure known as thechromatin fiber. Histones H1 are necessary for the condensation ofnucleosome chains into higher-order structured fibers. Acts alsoas a regulator of individual gene transcription through chromatinremodeling, nucleosome spacing and DNA methylation (Bysimilarity). ", "isseed": false, "uniprot": "Q02539", "isvalid": true, "importance": 3 }, "position": { "x": 443.3839427467599, "y": 327.88536532731405 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53", "altered": 0, "rank": 0, "cited": 24824, "uniprotdesc": "Acts as a tumor suppressor in many tumor types; inducesgrowth arrest or apoptosis depending on the physiologicalcircumstances and cell type. Involved in cell cycle regulation asa trans-activator that acts to negatively regulate cell divisionby controlling a set of genes required for this process. One ofthe activated genes is an inhibitor of cyclin-dependent kinases.Apoptosis induction seems to be mediated either by stimulation ofBAX and FAS antigen expression, or by repression of Bcl-2expression. In cooperation with mitochondrial PPIF is involved inactivating oxidative stress-induced necrosis; the function islargely independent of transcription. Induces the transcription oflong intergenic non-coding RNA p21 (lincRNA-p21) and lincRNA-Mkln1. LincRNA-p21 participates in TP53-dependent transcriptionalrepression leading to apoptosis and seem to have to effect oncell-cycle regulation. Implicated in Notch signaling cross-over.Prevents CDK7 kinase activity when associated to CAK complex inresponse to DNA damage, thus stopping cell cycle progression.Isoform 2 enhances the transactivation activity of isoform 1 fromsome but not all TP53-inducible promoters. Isoform 4 suppressestransactivation activity and impairs growth suppression mediatedby isoform 1. Isoform 7 inhibits isoform 1-mediated apoptosis.", "isseed": true, "uniprot": "P04637", "isvalid": true, "importance": 4 }, "position": { "x": 554.5, "y": 465.5 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "GADD45A", "altered": 0, "rank": 98, "cited": 198, "uniprotdesc": "In T-cells, functions as a regulator of p38 MAPKs byinhibiting p88 phosphorylation and activity (By similarity). Mightaffect PCNA interaction with some CDK (cell division proteinkinase) complexes; stimulates DNA excision repair in vitro andinhibits entry of cells into S phase. ", "isseed": false, "uniprot": "P24522", "isvalid": true, "importance": 3 }, "position": { "x": 554.5, "y": 375.5 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PML", "altered": 0, "rank": 35, "cited": 1300, "uniprotdesc": "Functions via its association with PML-nuclear bodies(PML-NBs) in a wide range of important cellular processes,including tumor suppression, transcriptional regulation,apoptosis, senescence, DNA damage response, and viral defensemechanisms. Acts as the scaffold of PML-NBs allowing otherproteins to shuttle in and out, a process which is regulated bySUMO-mediated modifications and interactions. Isoform PML-4 has amultifaceted role in the regulation of apoptosis and growthsuppression: activates RB1 and inhibits AKT1 via interactions withPP1 and PP2A phosphatases respectively, negatively affects thePI3K pathway by inhibiting MTOR and activating PTEN, andpositively regulates p53/TP53 by acting at different levels (bypromoting its acetylation and phosphorylation and by inhibitingits MDM2-dependent degradation). Isoform PML-4 also: acts as atranscriptional repressor of TBX2 during cellular senescence andthe repression is dependent on a functional RBL2/E2F4 repressorcomplex, regulates double-strand break repair in gamma-irradiation-induced DNA damage responses via its interaction withWRN, acts as a negative regulator of telomerase by interactingwith TERT, and regulates PER2 nuclear localization and circadianfunction. Isoform PML-6 inhibits specifically the activity of thetetrameric form of PKM. The nuclear isoforms (isoform PML-1,isoform PML-2, isoform PML-3, isoform PML-4 and isoform PML-5) inconcert with SATB1 are involved in local chromatin-loop remodelingand gene expression regulation at the MHC-I locus. Isoform PML-2is required for efficient IFN-gamma induced MHC II genetranscription via regulation of CIITA. Cytoplasmic PML is involvedin the regulation of the TGF-beta signaling pathway. PML alsoregulates transcription activity of ELF4 and can act as animportant mediator for TNF-alpha- and IFN-alpha-mediatedinhibition of endothelial cell network formation and migration.Exhibits antiviral activity against both DNA and RNAviruses. The antiviral activity can involve one or severalisoform(s) and can be enhanced by the permanent PML-NB-associatedprotein DAXX or by the recruitment of p53/TP53 within thesestructures. Isoform PML-4 restricts varicella zoster virus (VZV)via sequestration of virion capsids in PML-NBs thereby preventingtheir nuclear egress and inhibiting formation of infectious virusparticles. The sumoylated isoform PML-4 restricts rabies virus byinhibiting viral mRNA and protein synthesis. The cytoplasmicisoform PML-14 can restrict herpes simplex virus-1 (HHV-1)replication by sequestering the viral E3 ubiquitin-protein ligaseICP0 in the cytoplasm. Isoform PML-6 shows restriction activitytowards human cytomegalovirus (HCMV) and influenza A virus strainsPR8(H1N1) and ST364(H3N2). Sumoylated isoform PML-4 and isoformPML-12 show antiviral activity against encephalomyocarditis virus(EMCV) by promoting nuclear sequestration of viral polymerase(P3D-POL) within PML NBs. Isoform PML-3 exhibits antiviralactivity against poliovirus by inducing apoptosis in infectedcells through the recruitment and the activation of p53/TP53 inthe PML-NBs. Isoform PML-3 represses human foamy virus (HFV)transcription by complexing the HFV transactivator, bel1/tas,preventing its binding to viral DNA. PML may positively regulateinfectious hepatitis C viral (HCV) production and isoform PML-2may enhance adenovirus transcription.", "isseed": false, "uniprot": "P29590", "isvalid": true, "importance": 3 }, "position": { "x": 554.5, "y": 555.5 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SUMO1", "altered": 0, "rank": 36, "cited": 1235, "uniprotdesc": "Ubiquitin-like protein that can be covalently attachedto proteins as a monomer or a lysine-linked polymer. Covalentattachment via an isopeptide bond to its substrates requires prioractivation by the E1 complex SAE1-SAE2 and linkage to the E2enzyme UBE2I, and can be promoted by E3 ligases such as PIAS1-4,RANBP2 or CBX4. This post-translational modification on lysineresidues of proteins plays a crucial role in a number of cellularprocesses such as nuclear transport, DNA replication and repair,mitosis and signal transduction. Involved for instance intargeting RANGAP1 to the nuclear pore complex protein RANBP2.Polymeric SUMO1 chains are also susceptible to polyubiquitinationwhich functions as a signal for proteasomal degradation ofmodified proteins. May also regulate a network of genes involvedin palate development. ", "isseed": false, "uniprot": "P63165", "isvalid": true, "importance": 3 }, "position": { "x": 554.5, "y": 288.62556472004735 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP2CA", "altered": 0, "rank": 146, "cited": 55, "uniprotdesc": "PP2A is the major phosphatase for microtubule-associatedproteins (MAPs). PP2A can modulate the activity of phosphorylase Bkinase casein kinase 2, mitogen-stimulated S6 kinase, and MAP-2kinase. Cooperates with SGOL2 to protect centromeric cohesin fromseparase-mediated cleavage in oocytes specifically during meiosisI (By similarity). Can dephosphorylate SV40 large T antigen andp53/TP53. Activates RAF1 by dephosphorylating it at 'Ser-259'.", "isseed": false, "uniprot": "P67775", "isvalid": true, "importance": 3 }, "position": { "x": 727.4045308438311, "y": 428.2362230943131 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP2CB", "altered": 0, "rank": 185, "cited": 6, "uniprotdesc": "PP2A can modulate the activity of phosphorylase B kinasecasein kinase 2, mitogen-stimulated S6 kinase, and MAP-2 kinase.", "isseed": false, "uniprot": "P62714", "isvalid": true, "importance": 3 }, "position": { "x": 584.3919246562758, "y": 291.16974245431265 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAA1", "altered": 0, "rank": 78, "cited": 330, "uniprotdesc": "Catalytic subunit of AMP-activated protein kinase(AMPK), an energy sensor protein kinase that plays a key role inregulating cellular energy metabolism. In response to reduction ofintracellular ATP levels, AMPK activates energy-producing pathwaysand inhibits energy-consuming processes: inhibits protein,carbohydrate and lipid biosynthesis, as well as cell growth andproliferation. AMPK acts via direct phosphorylation of metabolicenzymes, and by longer-term effects via phosphorylation oftranscription regulators. Also acts as a regulator of cellularpolarity by remodeling the actin cytoskeleton; probably byindirectly activating myosin. Regulates lipid synthesis byphosphorylating and inactivating lipid metabolic enzymes such asACACA, ACACB, GYS1, HMGCR and LIPE; regulates fatty acid andcholesterol synthesis by phosphorylating acetyl-CoA carboxylase(ACACA and ACACB) and hormone-sensitive lipase (LIPE) enzymes,respectively. Regulates insulin-signaling and glycolysis byphosphorylating IRS1, PFKFB2 and PFKFB3. AMPK stimulates glucoseuptake in muscle by increasing the translocation of the glucosetransporter SLC2A4/GLUT4 to the plasma membrane, possibly bymediating phosphorylation of TBC1D4/AS160. Regulates transcriptionand chromatin structure by phosphorylating transcriptionregulators involved in energy metabolism such as CRTC2/TORC2,FOXO3, histone H2B, HDAC5, MEF2C, MLXIPL/ChREBP, EP300, HNF4A,p53/TP53, SREBF1, SREBF2 and PPARGC1A. Acts as a key regulator ofglucose homeostasis in liver by phosphorylating CRTC2/TORC2,leading to CRTC2/TORC2 sequestration in the cytoplasm. In responseto stress, phosphorylates 'Ser-36' of histone H2B (H2BS36ph),leading to promote transcription. Acts as a key regulator of cellgrowth and proliferation by phosphorylating TSC2, RPTOR andATG1/ULK1: in response to nutrient limitation, negativelyregulates the mTORC1 complex by phosphorylating RPTOR component ofthe mTORC1 complex and by phosphorylating and activating TSC2. Inresponse to nutrient limitation, promotes autophagy byphosphorylating and activating ATG1/ULK1. AMPK also acts as aregulator of circadian rhythm by mediating phosphorylation ofCRY1, leading to destabilize it. May regulate the Wnt signalingpathway by phosphorylating CTNNB1, leading to stabilize it. Alsohas tau-protein kinase activity: in response to amyloid beta A4protein (APP) exposure, activated by CAMKK2, leading tophosphorylation of MAPT/TAU; however the relevance of such dataremains unclear in vivo. Also phosphorylates CFTR, EEF2K, KLC1,NOS3 and SLC12A1. ", "isseed": false, "uniprot": "Q13131", "isvalid": true, "importance": 3 }, "position": { "x": 731.2150654362375, "y": 457.9932361520795 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAA2", "altered": 0, "rank": 29, "cited": 2074, "uniprotdesc": "Catalytic subunit of AMP-activated protein kinase(AMPK), an energy sensor protein kinase that plays a key role inregulating cellular energy metabolism. In response to reduction ofintracellular ATP levels, AMPK activates energy-producing pathwaysand inhibits energy-consuming processes: inhibits protein,carbohydrate and lipid biosynthesis, as well as cell growth andproliferation. AMPK acts via direct phosphorylation of metabolicenzymes, and by longer-term effects via phosphorylation oftranscription regulators. Also acts as a regulator of cellularpolarity by remodeling the actin cytoskeleton; probably byindirectly activating myosin. Regulates lipid synthesis byphosphorylating and inactivating lipid metabolic enzymes such asACACA, ACACB, GYS1, HMGCR and LIPE; regulates fatty acid andcholesterol synthesis by phosphorylating acetyl-CoA carboxylase(ACACA and ACACB) and hormone-sensitive lipase (LIPE) enzymes,respectively. Regulates insulin-signaling and glycolysis byphosphorylating IRS1, PFKFB2 and PFKFB3. AMPK stimulates glucoseuptake in muscle by increasing the translocation of the glucosetransporter SLC2A4/GLUT4 to the plasma membrane, possibly bymediating phosphorylation of TBC1D4/AS160. Regulates transcriptionand chromatin structure by phosphorylating transcriptionregulators involved in energy metabolism such as CRTC2/TORC2,FOXO3, histone H2B, HDAC5, MEF2C, MLXIPL/ChREBP, EP300, HNF4A,p53/TP53, SREBF1, SREBF2 and PPARGC1A. Acts as a key regulator ofglucose homeostasis in liver by phosphorylating CRTC2/TORC2,leading to CRTC2/TORC2 sequestration in the cytoplasm. In responseto stress, phosphorylates 'Ser-36' of histone H2B (H2BS36ph),leading to promote transcription. Acts as a key regulator of cellgrowth and proliferation by phosphorylating TSC2, RPTOR andATG1/ULK1: in response to nutrient limitation, negativelyregulates the mTORC1 complex by phosphorylating RPTOR component ofthe mTORC1 complex and by phosphorylating and activating TSC2. Inresponse to nutrient limitation, promotes autophagy byphosphorylating and activating ATG1/ULK1. AMPK also acts as aregulator of circadian rhythm by mediating phosphorylation ofCRY1, leading to destabilize it. May regulate the Wnt signalingpathway by phosphorylating CTNNB1, leading to stabilize it. Alsophosphorylates CFTR, EEF2K, KLC1, NOS3 and SLC12A1.", "isseed": false, "uniprot": "P54646", "isvalid": true, "importance": 3 }, "position": { "x": 613.4239130642807, "y": 298.7290842958664 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK11", "altered": 0, "rank": 127, "cited": 81, "uniprotdesc": "Serine/threonine kinase which acts as an essentialcomponent of the MAP kinase signal transduction pathway. MAPK11 isone of the four p38 MAPKs which play an important role in thecascades of cellular responses evoked by extracellular stimulisuch as proinflammatory cytokines or physical stress leading todirect activation of transcription factors. Accordingly, p38 MAPKsphosphorylate a broad range of proteins and it has been estimatedthat they may have approximately 200 to 300 substrates each.MAPK11 functions are mostly redundant with those of MAPK14. Someof the targets are downstream kinases which are activated throughphosphorylation and further phosphorylate additional targets.RPS6KA5/MSK1 and RPS6KA4/MSK2 can directly phosphorylate andactivate transcription factors such as CREB1, ATF1, the NF-kappa-Bisoform RELA/NFKB3, STAT1 and STAT3, but can also phosphorylatehistone H3 and the nucleosomal protein HMGN1. RPS6KA5/MSK1 andRPS6KA4/MSK2 play important roles in the rapid induction ofimmediate-early genes in response to stress or mitogenic stimuli,either by inducing chromatin remodeling or by recruiting thetranscription machinery. On the other hand, two other kinasetargets, MAPKAPK2/MK2 and MAPKAPK3/MK3, participate in the controlof gene expression mostly at the post-transcriptional level, byphosphorylating ZFP36 (tristetraprolin) and ELAVL1, and byregulating EEF2K, which is important for the elongation of mRNAduring translation. MKNK1/MNK1 and MKNK2/MNK2, two other kinasesactivated by p38 MAPKs, regulate protein synthesis byphosphorylating the initiation factor EIF4E2. In the cytoplasm,the p38 MAPK pathway is an important regulator of proteinturnover. For example, CFLAR is an inhibitor of TNF-inducedapoptosis whose proteasome-mediated degradation is regulated byp38 MAPK phosphorylation. Ectodomain shedding of transmembraneproteins is regulated by p38 MAPKs as well. In response toinflammatory stimuli, p38 MAPKs phosphorylate the membrane-associated metalloprotease ADAM17. Such phosphorylation isrequired for ADAM17-mediated ectodomain shedding of TGF-alphafamily ligands, which results in the activation of EGFR signalingand cell proliferation. Additional examples of p38 MAPK substratesare the FGFR1. FGFR1 can be translocated from the extracellularspace into the cytosol and nucleus of target cells, and regulatesprocesses such as rRNA synthesis and cell growth. FGFR1translocation requires p38 MAPK activation. In the nucleus, manytranscription factors are phosphorylated and activated by p38MAPKs in response to different stimuli. Classical examples includeATF1, ATF2, ATF6, ELK1, PTPRH, DDIT3, TP53/p53 and MEF2C andMEF2A. The p38 MAPKs are emerging as important modulators of geneexpression by regulating chromatin modifiers and remodelers. Thepromoters of several genes involved in the inflammatory response,such as IL6, IL8 and IL12B, display a p38 MAPK-dependentenrichment of histone H3 phosphorylation on 'Ser-10' (H3S10ph) inLPS-stimulated myeloid cells. This phosphorylation enhances theaccessibility of the cryptic NF-kappa-B-binding sites markingpromoters for increased NF-kappa-B recruitment.", "isseed": false, "uniprot": "Q15759", "isvalid": true, "importance": 3 }, "position": { "x": 640.7607677759248, "y": 311.0861217431862 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP73", "altered": 0, "rank": 116, "cited": 124, "uniprotdesc": "Participates in the apoptotic response to DNA damage.Isoforms containing the transactivation domain are pro-apoptotic,isoforms lacking the domain are anti-apoptotic and block thefunction of p53 and transactivating p73 isoforms. May be a tumorsuppressor protein. ", "isseed": false, "uniprot": "O15350", "isvalid": true, "importance": 3 }, "position": { "x": 554.5, "y": 435.5 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CCNB1", "altered": 0, "rank": 62, "cited": 491, "uniprotdesc": "Essential for the control of the cell cycle at the G2/M(mitosis) transition. ", "isseed": false, "uniprot": "P14635", "isvalid": true, "importance": 3 }, "position": { "x": 455.45477593090067, "y": 612.0421763339963 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK12", "altered": 0, "rank": 131, "cited": 79, "uniprotdesc": "Serine/threonine kinase which acts as an essentialcomponent of the MAP kinase signal transduction pathway. MAPK12 isone of the four p38 MAPKs which play an important role in thecascades of cellular responses evoked by extracellular stimulisuch as proinflammatory cytokines or physical stress leading todirect activation of transcription factors such as ELK1 and ATF2.Accordingly, p38 MAPKs phosphorylate a broad range of proteins andit has been estimated that they may have approximately 200 to 300substrates each. Some of the targets are downstream kinases suchas MAPKAPK2, which are activated through phosphorylation andfurther phosphorylate additional targets. Plays a role in myoblastdifferentiation and also in the down-regulation of cyclin D1 inresponse to hypoxia in adrenal cells suggesting MAPK12 may inhibitcell proliferation while promoting differentiation. PhosphorylatesDLG1. Following osmotic shock, MAPK12 in the cell nucleusincreases its association with nuclear DLG1, thereby causingdissociation of DLG1-SFPQ complexes. This function is independentof its catalytic activity and could affect mRNA processing and/orgene transcription to aid cell adaptation to osmolarity changes inthe environment. Regulates UV-induced checkpoint signaling andrepair of UV-induced DNA damage and G2 arrest after gamma-radiation exposure. MAPK12 is involved in the regulation of SLC2A1expression and basal glucose uptake in L6 myotubes; and negativelyregulates SLC2A4 expression and contraction-mediated glucoseuptake in adult skeletal muscle. C-Jun (JUN) phosphorylation isstimulated by MAPK14 and inhibited by MAPK12, leading to adistinct AP-1 regulation. MAPK12 is required for the normalkinetochore localization of PLK1, prevents chromosomal instabilityand supports mitotic cell viability. MAPK12-signaling is alsopositively regulating the expansion of transient amplifyingmyogenic precursor cells during muscle growth and regeneration.", "isseed": false, "uniprot": "P53778", "isvalid": true, "importance": 3 }, "position": { "x": 569.5000000000001, "y": 641.7372431003224 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK13", "altered": 0, "rank": 126, "cited": 88, "uniprotdesc": "Serine/threonine kinase which acts as an essentialcomponent of the MAP kinase signal transduction pathway. MAPK13 isone of the four p38 MAPKs which play an important role in thecascades of cellular responses evoked by extracellular stimulisuch as proinflammatory cytokines or physical stress leading todirect activation of transcription factors such as ELK1 and ATF2.Accordingly, p38 MAPKs phosphorylate a broad range of proteins andit has been estimated that they may have approximately 200 to 300substrates each. MAPK13 is one of the less studied p38 MAPKisoforms. Some of the targets are downstream kinases such asMAPKAPK2, which are activated through phosphorylation and furtherphosphorylate additional targets. Plays a role in the regulationof protein translation by phosphorylating and inactivating EEF2K.Involved in cytoskeletal remodeling through phosphorylation ofMAPT and STMN1. Mediates UV irradiation induced up-regulation ofthe gene expression of CXCL14. Plays an important role in theregulation of epidermal keratinocyte differentiation, apoptosisand skin tumor development. Phosphorylates the transcriptionalactivator MYB in response to stress which leads to rapid MYBdegradation via a proteasome-dependent pathway. MAPK13 alsophosphorylates and down-regulates PRKD1 during regulation ofinsulin secretion in pancreatic beta cells.", "isseed": false, "uniprot": "O15264", "isvalid": true, "importance": 3 }, "position": { "x": 687.2747400718758, "y": 348.6435313966404 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK14", "altered": 0, "rank": 23, "cited": 2528, "uniprotdesc": "Serine/threonine kinase which acts as an essentialcomponent of the MAP kinase signal transduction pathway. MAPK14 isone of the four p38 MAPKs which play an important role in thecascades of cellular responses evoked by extracellular stimulisuch as proinflammatory cytokines or physical stress leading todirect activation of transcription factors. Accordingly, p38 MAPKsphosphorylate a broad range of proteins and it has been estimatedthat they may have approximately 200 to 300 substrates each. Someof the targets are downstream kinases which are activated throughphosphorylation and further phosphorylate additional targets.RPS6KA5/MSK1 and RPS6KA4/MSK2 can directly phosphorylate andactivate transcription factors such as CREB1, ATF1, the NF-kappa-Bisoform RELA/NFKB3, STAT1 and STAT3, but can also phosphorylatehistone H3 and the nucleosomal protein HMGN1. RPS6KA5/MSK1 andRPS6KA4/MSK2 play important roles in the rapid induction ofimmediate-early genes in response to stress or mitogenic stimuli,either by inducing chromatin remodeling or by recruiting thetranscription machinery. On the other hand, two other kinasetargets, MAPKAPK2/MK2 and MAPKAPK3/MK3, participate in the controlof gene expression mostly at the post-transcriptional level, byphosphorylating ZFP36 (tristetraprolin) and ELAVL1, and byregulating EEF2K, which is important for the elongation of mRNAduring translation. MKNK1/MNK1 and MKNK2/MNK2, two other kinasesactivated by p38 MAPKs, regulate protein synthesis byphosphorylating the initiation factor EIF4E2. MAPK14 interactsalso with casein kinase II, leading to its activation throughautophosphorylation and further phosphorylation of TP53/p53. Inthe cytoplasm, the p38 MAPK pathway is an important regulator ofprotein turnover. For example, CFLAR is an inhibitor of TNF-induced apoptosis whose proteasome-mediated degradation isregulated by p38 MAPK phosphorylation. In a similar way, MAPK14phosphorylates the ubiquitin ligase SIAH2, regulating its activitytowards EGLN3. MAPK14 may also inhibit the lysosomal degradationpathway of autophagy by interfering with the intracellulartrafficking of the transmembrane protein ATG9. Another function ofMAPK14 is to regulate the endocytosis of membrane receptors bydifferent mechanisms that impinge on the small GTPase RAB5A. Inaddition, clathrin-mediated EGFR internalization induced byinflammatory cytokines and UV irradiation depends on MAPK14-mediated phosphorylation of EGFR itself as well as of RAB5Aeffectors. Ectodomain shedding of transmembrane proteins isregulated by p38 MAPKs as well. In response to inflammatorystimuli, p38 MAPKs phosphorylate the membrane-associatedmetalloprotease ADAM17. Such phosphorylation is required forADAM17-mediated ectodomain shedding of TGF-alpha family ligands,which results in the activation of EGFR signaling and cellproliferation. Another p38 MAPK substrate is FGFR1. FGFR1 can betranslocated from the extracellular space into the cytosol andnucleus of target cells, and regulates processes such as rRNAsynthesis and cell growth. FGFR1 translocation requires p38 MAPKactivation. In the nucleus, many transcription factors arephosphorylated and activated by p38 MAPKs in response to differentstimuli. Classical examples include ATF1, ATF2, ATF6, ELK1, PTPRH,DDIT3, TP53/p53 and MEF2C and MEF2A. The p38 MAPKs are emerging asimportant modulators of gene expression by regulating chromatinmodifiers and remodelers. The promoters of several genes involvedin the inflammatory response, such as IL6, IL8 and IL12B, displaya p38 MAPK-dependent enrichment of histone H3 phosphorylation on'Ser-10' (H3S10ph) in LPS-stimulated myeloid cells. Thisphosphorylation enhances the accessibility of the cryptic NF-kappa-B-binding sites marking promoters for increased NF-kappa-Brecruitment. Phosphorylates CDC25B and CDC25C which is requiredfor binding to 14-3-3 proteins and leads to initiation of a G2delay after ultraviolet radiation. Phosphorylates TIAR followingDNA damage, releasing TIAR from GADD45A mRNA and preventing mRNAdegradation. The p38 MAPKs may also have kinase-independent roles,which are thought to be due to the binding to targets in theabsence of phosphorylation. Protein O-Glc-N-acylation catalyzed bythe OGT is regulated by MAPK14, and, although OGT does not seem tobe phosphorylated by MAPK14, their interaction increases uponMAPK14 activation induced by glucose deprivation. This interactionmay regulate OGT activity by recruiting it to specific targetssuch as neurofilament H, stimulating its O-Glc-N-acylation.Required in mid-fetal development for the growth of embryo-derivedblood vessels in the labyrinth layer of the placenta. Also playsan essential role in developmental and stress-inducederythropoiesis, through regulation of EPO gene expression. IsoformMXI2 activation is stimulated by mitogens and oxidative stress andonly poorly phosphorylates ELK1 and ATF2. Isoform EXIP may play arole in the early onset of apoptosis. Phosphorylates S100A9 at'Thr-113'. ", "isseed": false, "uniprot": "Q16539", "isvalid": true, "importance": 3 }, "position": { "x": 705.1137353610045, "y": 372.7634453076487 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAB2", "altered": 0, "rank": 189, "cited": 4, "uniprotdesc": "Non-catalytic subunit of AMP-activated protein kinase(AMPK), an energy sensor protein kinase that plays a key role inregulating cellular energy metabolism. In response to reduction ofintracellular ATP levels, AMPK activates energy-producing pathwaysand inhibits energy-consuming processes: inhibits protein,carbohydrate and lipid biosynthesis, as well as cell growth andproliferation. AMPK acts via direct phosphorylation of metabolicenzymes, and by longer-term effects via phosphorylation oftranscription regulators. Also acts as a regulator of cellularpolarity by remodeling the actin cytoskeleton; probably byindirectly activating myosin. Beta non-catalytic subunit acts as ascaffold on which the AMPK complex assembles, via its C-terminusthat bridges alpha (PRKAA1 or PRKAA2) and gamma subunits (PRKAG1,PRKAG2 or PRKAG3).", "isseed": false, "uniprot": "O43741", "isvalid": true, "importance": 3 }, "position": { "x": 718.6198477055347, "y": 399.5512210521357 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAB1", "altered": 0, "rank": 73, "cited": 368, "uniprotdesc": "Non-catalytic subunit of AMP-activated protein kinase(AMPK), an energy sensor protein kinase that plays a key role inregulating cellular energy metabolism. In response to reduction ofintracellular ATP levels, AMPK activates energy-producing pathwaysand inhibits energy-consuming processes: inhibits protein,carbohydrate and lipid biosynthesis, as well as cell growth andproliferation. AMPK acts via direct phosphorylation of metabolicenzymes, and by longer-term effects via phosphorylation oftranscription regulators. Also acts as a regulator of cellularpolarity by remodeling the actin cytoskeleton; probably byindirectly activating myosin. Beta non-catalytic subunit acts as ascaffold on which the AMPK complex assembles, via its C-terminusthat bridges alpha (PRKAA1 or PRKAA2) and gamma subunits (PRKAG1,PRKAG2 or PRKAG3).", "isseed": false, "uniprot": "Q9Y478", "isvalid": true, "importance": 3 }, "position": { "x": 476.5577136594006, "y": 420.49999999999994 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "EP300", "altered": 0, "rank": 19, "cited": 2835, "uniprotdesc": "Functions as histone acetyltransferase and regulatestranscription via chromatin remodeling. Acetylates all four corehistones in nucleosomes. Histone acetylation gives an epigenetictag for transcriptional activation. Mediates cAMP-gene regulationby binding specifically to phosphorylated CREB protein. Mediatesacetylation of histone H3 at 'Lys-122' (H3K122ac), a modificationthat localizes at the surface of the histone octamer andstimulates transcription, possibly by promoting nucleosomeinstability. Mediates acetylation of histone H3 at 'Lys-27'(H3K27ac). Also functions as acetyltransferase for nonhistonetargets. Acetylates 'Lys-131' of ALX1 and acts as its coactivatorin the presence of CREBBP. Acetylates SIRT2 and is proposed toindirectly increase the transcriptional activity of TP53 throughacetylation and subsequent attenuation of SIRT2 deacetylasefunction. Acetylates HDAC1 leading to its inactivation andmodulation of transcription. Acts as a TFAP2A-mediatedtranscriptional coactivator in presence of CITED2. Plays a role asa coactivator of NEUROD1-dependent transcription of the secretinand p21 genes and controls terminal differentiation of cells inthe intestinal epithelium. Promotes cardiac myocyte enlargement.Can also mediate transcriptional repression. Binds to and may beinvolved in the transforming capacity of the adenovirus E1Aprotein. In case of HIV-1 infection, it is recruited by the viralprotein Tat. Regulates Tat's transactivating activity and may helpinducing chromatin remodeling of proviral genes. Acetylates FOXO1and enhances its transcriptional activity. Acetylates BCL6 wichdisrupts its ability to recruit histone deacetylases and hindersits transcriptional repressor activity. Participates in CLOCK orNPAS2-regulated rhythmic gene transcription; exhibits a circadianassociation with CLOCK or NPAS2, correlating with increase inPER1/2 mRNA and histone H3 acetylation on the PER1/2 promoter.Acetylates MTA1 at 'Lys-626' which is essential for itstranscriptional coactivator activity (PubMed:10733570,PubMed:11430825, PubMed:11701890, PubMed:12402037,PubMed:12586840, PubMed:12929931, PubMed:14645221,PubMed:15186775, PubMed:15890677, PubMed:16617102,PubMed:16762839, PubMed:18722353, PubMed:18995842,PubMed:23415232, PubMed:23911289, PubMed:23934153,PubMed:8945521). Acetylates XBP1 isoform 2; acetylation increasesprotein stability of XBP1 isoform 2 and enhances itstranscriptional activity (By similarity).", "isseed": false, "uniprot": "Q09472", "isvalid": true, "importance": 3 }, "position": { "x": 476.5577136594005, "y": 510.5 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "IGBP1", "altered": 0, "rank": 125, "cited": 89, "uniprotdesc": "Associated to surface IgM-receptor; may be involved insignal transduction. Involved in regulation of the catalyticactivity of the phosphatases PP2A, PP4 and PP6 by protecting theirpartially folded catalytic subunits from degradativepolyubiquitination until they associate with regulatory subunits.", "isseed": false, "uniprot": "P78318", "isvalid": true, "importance": 3 }, "position": { "x": 729.941829340353, "y": 487.96620513822 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "FBXO11", "altered": 0, "rank": 188, "cited": 5, "uniprotdesc": "Substrate recognition component of a SCF (SKP1-CUL1-F-box protein) E3 ubiquitin-protein ligase complex which mediatesthe ubiquitination and subsequent proteasomal degradation oftarget proteins, such as DTL/CDT2, BCL6 and PRDM1/BLIMP1. TheSCF(FBXO11) complex mediates ubiquitination and degradation ofBCL6, thereby playing a role in the germinal center B-cellsterminal differentiation toward memory B-cells and plasma cells.The SCF(FBXO11) complex also mediates ubiquitination anddegradation of DTL, an important step for the regulation of TGF-beta signaling, cell migration and the timing of the cell-cycleprogression and exit. Binds to and neddylates phosphorylatedp53/TP53, inhibiting its transcriptional activity. SCF(FBXO11)does not seem to direct ubiquitination of p53/TP53.", "isseed": false, "uniprot": "Q86XK2", "isvalid": true, "importance": 3 }, "position": { "x": 481.64519932573637, "y": 626.6730246484053 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HMGB1", "altered": 0, "rank": 54, "cited": 617, "uniprotdesc": "DNA binding proteins that associates with chromatin andhas the ability to bend DNA. Binds preferentially single-strandedDNA. Involved in V(D)J recombination by acting as a cofactor ofthe RAG complex. Acts by stimulating cleavage and RAG proteinbinding at the 23 bp spacer of conserved recombination signalsequences (RSS). Heparin-binding protein that has a role in theextension of neurite-type cytoplasmic processes in developingcells (By similarity). ", "isseed": false, "uniprot": "P09429", "isvalid": true, "importance": 3 }, "position": { "x": 712.435756907072, "y": 545.1295331255459 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "NEDD8", "altered": 0, "rank": 205, "cited": 236, "uniprotdesc": "Ubiquitin-like protein which plays an important role incell cycle control and embryogenesis. Covalent attachment to itssubstrates requires prior activation by the E1 complex UBE1C-APPBP1 and linkage to the E2 enzyme UBE2M. Attachment of NEDD8 tocullins activates their associated E3 ubiquitin ligase activity,and thus promotes polyubiquitination and proteasomal degradationof cyclins and other regulatory proteins.", "isseed": false, "uniprot": "Q15843", "isvalid": true, "importance": 2 }, "position": { "x": 432.1137033013474, "y": 593.195576415127 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "ASF1A", "altered": 0, "rank": 161, "cited": 27, "uniprotdesc": "Histone chaperone that facilitates histone depositionand histone exchange and removal during nucleosome assembly anddisassembly. Cooperates with chromatin assembly factor 1 (CAF-1)to promote replication-dependent chromatin assembly and with HIRAto promote replication-independent chromatin assembly. Requiredfor the formation of senescence-associated heterochromatin foci(SAHF) and efficient senescence-associated cell cycle exit.", "isseed": false, "uniprot": "Q9Y294", "isvalid": true, "importance": 3 }, "position": { "x": 412.29346159964496, "y": 570.6754072575452 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "KAT8", "altered": 0, "rank": 199, "cited": 0, "uniprotdesc": "Histone acetyltransferase which may be involved intranscriptional activation. May influence the function of ATM. Aspart of the MSL complex it is involved in acetylation ofnucleosomal histone H4 producing specifically H4K16ac. As part ofthe NSL complex it may be involved in acetylation of nucleosomalhistone H4 on several lysine residues. That activity is lessspecific than the one of the MSL complex. Can also acetylateTP53/p53 at 'Lys-120'. ", "isseed": false, "uniprot": "Q9H7Z6", "isvalid": true, "importance": 3 }, "position": { "x": 452.21985952208775, "y": 707.5238675129558 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HTT", "altered": 0, "rank": 43, "cited": 858, "uniprotdesc": "May play a role in microtubule-mediated transport orvesicle function.", "isseed": false, "uniprot": "P42858", "isvalid": true, "importance": 3 }, "position": { "x": 632.4422863405995, "y": 510.5 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "WRN", "altered": 0, "rank": 53, "cited": 621, "uniprotdesc": "Multifunctional enzyme that has both magnesium and ATP-dependent DNA-helicase activity and 3'->5' exonuclease activitytowards double-stranded DNA with a 5'-overhang. Has no nucleaseactivity towards single-stranded DNA or blunt-ended double-stranded DNA. Binds preferentially to DNA substrates containingalternate secondary structures, such as replication forks andHolliday junctions. May play an important role in the dissociationof joint DNA molecules that can arise as products of homologousrecombination, at stalled replication forks or during DNA repair.Alleviates stalling of DNA polymerases at the site of DNA lesions.Important for genomic integrity. Plays a role in the formation ofDNA replication focal centers; stably associates with focielements generating binding sites for RP-A (By similarity). Playsa role in double-strand break repair after gamma-irradiation.", "isseed": false, "uniprot": "Q14191", "isvalid": true, "importance": 3 }, "position": { "x": 676.8862966986526, "y": 593.1955764151269 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDKN1A", "altered": 0, "rank": 9, "cited": 4784, "uniprotdesc": "May be the important intermediate by which p53/TP53mediates its role as an inhibitor of cellular proliferation inresponse to DNA damage. Binds to and inhibits cyclin-dependentkinase activity, preventing phosphorylation of critical cyclin-dependent kinase substrates and blocking cell cycle progression.Functions in the nuclear localization and assembly of cyclin D-CDK4 complex and promotes its kinase activity towards RB1. Athigher stoichiometric ratios, inhibits the kinase activity of thecyclin D-CDK4 complex. ", "isseed": false, "uniprot": "P38936", "isvalid": true, "importance": 3 }, "position": { "x": 653.5452240690994, "y": 612.0421763339962 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PLK3", "altered": 0, "rank": 115, "cited": 130, "uniprotdesc": "Serine/threonine-protein kinase involved in cell cycleregulation, response to stress and Golgi disassembly. Polo-likekinases act by binding and phosphorylating proteins are thatalready phosphorylated on a specific motif recognized by the POLObox domains. Phosphorylates ATF2, BCL2L1, CDC25A, CDC25C, CHEK2,HIF1A, JUN, p53/TP53, p73/TP73, PTEN, TOP2A and VRK1. Involved incell cycle regulation: required for entry into S phase andcytokinesis. Phosphorylates BCL2L1, leading to regulate the G2checkpoint and progression to cytokinesis during mitosis. Plays akey role in response to stress: rapidly activated upon stressstimulation, such as ionizing radiation, reactive oxygen species(ROS), hyperosmotic stress, UV irradiation and hypoxia. Involvedin DNA damage response and G1/S transition checkpoint byphosphorylating CDC25A, p53/TP53 and p73/TP73. Phosphorylatesp53/TP53 in response to reactive oxygen species (ROS), therebypromoting p53/TP53-mediated apoptosis. Phosphorylates CHEK2 inresponse to DNA damage, promoting the G2/M transition checkpoint.Phosphorylates the transcription factor p73/TP73 in response toDNA damage, leading to inhibit p73/TP73-mediated transcriptionalactivation and pro-apoptotic functions. Phosphorylates HIF1A andJUN is response to hypoxia. Phosphorylates ATF2 followinghyperosmotic stress in corneal epithelium. Also involved in Golgidisassembly during the cell cycle: part of a MEK1/MAP2K1-dependentpathway that induces Golgi fragmentation during mitosis bymediating phosphorylation of VRK1. May participate in endomitoticcell cycle, a form of mitosis in which both karyokinesis andcytokinesis are interrupted and is a hallmark of megakaryocytedifferentiation, via its interaction with CIB1.", "isseed": false, "uniprot": "Q9H4B4", "isvalid": true, "importance": 3 }, "position": { "x": 377.7849345637625, "y": 457.9932361520796 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "DYRK1A", "altered": 0, "rank": 128, "cited": 81, "uniprotdesc": "May play a role in a signaling pathway regulatingnuclear functions of cell proliferation. Modulates alternativesplicing by phosphorylating the splice factor SRSF6 (Bysimilarity). Phosphorylates serine, threonine and tyrosineresidues in its sequence and in exogenous substrates such as CRY2,FOXO1, SRSF6 and SIRT1. Exhibits a sugstrate preference forproline at position P+1 and arginine at position P-3.", "isseed": false, "uniprot": "Q13627", "isvalid": true, "importance": 3 }, "position": { "x": 584.451073117784, "y": 204.46415418337006 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAG1", "altered": 0, "rank": 177, "cited": 11, "uniprotdesc": "AMP/ATP-binding subunit of AMP-activated protein kinase(AMPK), an energy sensor protein kinase that plays a key role inregulating cellular energy metabolism. In response to reduction ofintracellular ATP levels, AMPK activates energy-producing pathwaysand inhibits energy-consuming processes: inhibits protein,carbohydrate and lipid biosynthesis, as well as cell growth andproliferation. AMPK acts via direct phosphorylation of metabolicenzymes, and by longer-term effects via phosphorylation oftranscription regulators. Also acts as a regulator of cellularpolarity by remodeling the actin cytoskeleton; probably byindirectly activating myosin. Gamma non-catalytic subunit mediatesbinding to AMP, ADP and ATP, leading to activate or inhibit AMPK:AMP-binding results in allosteric activation of alpha catalyticsubunit (PRKAA1 or PRKAA2) both by inducing phosphorylation andpreventing dephosphorylation of catalytic subunits. ADP alsostimulates phosphorylation, without stimulating alreadyphosphorylated catalytic subunit. ATP promotes dephosphorylationof catalytic subunit, rendering the AMPK enzyme inactive.", "isseed": false, "uniprot": "P54619", "isvalid": true, "importance": 3 }, "position": { "x": 627.3548006742639, "y": 626.6730246484052 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CASP6", "altered": 0, "rank": 104, "cited": 161, "uniprotdesc": "Involved in the activation cascade of caspasesresponsible for apoptosis execution. Cleaves poly(ADP-ribose)polymerase in vitro, as well as lamins. Overexpression promotesprogrammed cell death.", "isseed": false, "uniprot": "P55212", "isvalid": true, "importance": 3 }, "position": { "x": 642.7964774016498, "y": 218.03179666759164 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAX", "altered": 0, "rank": 158, "cited": 28, "uniprotdesc": "Transcription regulator. Forms a sequence-specific DNA-binding protein complex with MYC or MAD which recognizes the coresequence 5'-CAC[GA]TG-3'. The MYC:MAX complex is a transcriptionalactivator, whereas the MAD:MAX complex is a repressor. May represstranscription via the recruitment of a chromatin remodelingcomplex containing H3 'Lys-9' histone methyltransferase activity.", "isseed": false, "uniprot": "P61244", "isvalid": true, "importance": 3 }, "position": { "x": 524.5489268822162, "y": 204.46415418337 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "FOS", "altered": 0, "rank": 61, "cited": 496, "uniprotdesc": "Nuclear phosphoprotein which forms a tight but non-covalently linked complex with the JUN/AP-1 transcription factor.In the heterodimer, FOS and JUN/AP-1 basic regions each seems tointeract with symmetrical DNA half sites. On TGF-beta activation,forms a multimeric SMAD3/SMAD4/JUN/FOS complex at the AP1/SMAD-binding site to regulate TGF-beta-mediated signaling. Has acritical function in regulating the development of cells destinedto form and maintain the skeleton. It is thought to have animportant role in signal transduction, cell proliferation anddifferentiation. In growing cells, activates phospholipidsynthesis, possibly by activating CDS1 and PI4K2A. This activityrequires Tyr-dephosphorylation and association with theendoplasmic reticulum. ", "isseed": false, "uniprot": "P01100", "isvalid": true, "importance": 3 }, "position": { "x": 696.5525693086885, "y": 244.46188759648143 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53I3", "altered": 0, "rank": 152, "cited": 39, "uniprotdesc": "May be involved in the generation of reactive oxygenspecies (ROS). Has low NADPH-dependent beta-naphthoquinonereductase activity, with a preference for 1,2-beta-naphthoquinoneover 1,4-beta-naphthoquinone. Has low NADPH-dependent diaminereductase activity (in vitro). ", "isseed": false, "uniprot": "Q53FA7", "isvalid": true, "importance": 3 }, "position": { "x": 720.823079139937, "y": 262.0954451652557 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRMT1", "altered": 0, "rank": 206, "cited": 189, "uniprotdesc": "Arginine methyltransferase that methylates (mono andasymmetric dimethylation) the guanidino nitrogens of arginylresidues present in proteins such as ESR1, histone H2, H3 and H4,PIAS1, HNRNPA1, HNRNPD, NFATC2IP, SUPT5H, TAF15 and EWS.Constitutes the main enzyme that mediates monomethylation andasymmetric dimethylation of histone H4 'Arg-4' (H4R3me1 andH4R3me2a, respectively), a specific tag for epigenetictranscriptional activation. Together with dimethylated PIAS1,represses STAT1 transcriptional activity, in the late phase ofinterferon gamma (IFN-gamma) signaling. May be involved in theregulation of TAF15 transcriptional activity, act as an activatorof estrogen receptor (ER)-mediated transactivation, play a keyrole in neurite outgrowth and act as a negative regulator ofmegakaryocytic differentiation, by modulating p38 MAPK pathway.Methylates FOXO1 and retains it in the nucleus increasing itstranscriptional activity. ", "isseed": false, "uniprot": "Q99873", "isvalid": true, "importance": 2 }, "position": { "x": 742.9253132762292, "y": 282.3806921734763 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PCBP4", "altered": 0, "rank": 165, "cited": 20, "uniprotdesc": "Single-stranded nucleic acid binding protein that bindspreferentially to oligo dC. ", "isseed": false, "uniprot": "P57723", "isvalid": true, "importance": 3 }, "position": { "x": 762.5711352945876, "y": 305.05317940410396 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRMT5", "altered": 0, "rank": 118, "cited": 111, "uniprotdesc": "Arginine methyltransferase that can both catalyze theformation of omega-N monomethylarginine (MMA) and symmetricaldimethylarginine (sDMA), with a preference for the formation ofMMA. Specifically mediates the symmetrical dimethylation ofarginine residues in the small nuclear ribonucleoproteins Sm D1(SNRPD1) and Sm D3 (SNRPD3); such methylation being required forthe assembly and biogenesis of snRNP core particles. MethylatesSUPT5H. Mono- and dimethylates arginine residues of myelin basicprotein (MBP) in vitro. Plays a role in the assembly of snRNP coreparticles. May play a role in cytokine-activated transductionpathways. Negatively regulates cyclin E1 promoter activity andcellular proliferation. May regulate the SUPT5H transcriptionalelongation properties. May be part of a pathway that is connectedto a chloride current, possibly through cytoskeletalrearrangement. Methylates histone H2A and H4 'Arg-3' during germcell development. Methylates histone H3 'Arg-8', which may represstranscription. Methylates the Piwi proteins (PIWIL1, PIWIL2 andPIWIL4), methylation of Piwi proteins being required for theinteraction with Tudor domain-containing proteins and subsequentlocalization to the meiotic nuage. Methylates RPS10. AttenuatesEGF signaling through the MAPK1/MAPK3 pathway acting at 2 levels.First, monomethylates EGFR; this enhances EGFR 'Tyr-1197'phosphorylation and PTPN6 recruitment, eventually leading toreduced SOS1 phosphorylation. Second, methylates RAF1 and probablyBRAF, hence destabilizing these 2 signaling proteins and reducingtheir catalytic activity. Required for induction of E-selectin andVCAM-1, on the endothelial cells surface at sites of inflammation.Methylates HOXA9. Methylates and regulates SRGAP2 which isinvolved in cell migration and differentiation. Acts as atranscriptional corepressor in CRY1-mediated repression of thecore circadian component PER1 by regulating the H4R3 dimethylationat the PER1 promoter. ", "isseed": false, "uniprot": "O14744", "isvalid": true, "importance": 3 }, "position": { "x": 779.5044318605908, "y": 329.8173363129873 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "E4F1", "altered": 0, "rank": 150, "cited": 47, "uniprotdesc": "May function as a transcriptional repressor. May alsofunction as a ubiquitin ligase mediating ubiquitination ofchromatin-associated TP53. Functions in cell survival andproliferation through control of the cell cycle. Functions in thep53 and pRB tumor suppressor pathways and regulates the cyclinCCNA2 transcription.Identified as a cellular target of the adenoviraloncoprotein E1A, it is required for both transcriptionalactivation and repression of viral genes.", "isseed": false, "uniprot": "Q66K89", "isvalid": true, "importance": 3 }, "position": { "x": 793.504451557361, "y": 356.35032424292166 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CASP1", "altered": 0, "rank": 64, "cited": 473, "uniprotdesc": "Thiol protease that cleaves IL-1 beta between an Asp andan Ala, releasing the mature cytokine which is involved in avariety of inflammatory processes. Important for defense againstpathogens. Cleaves and activates sterol regulatory element bindingproteins (SREBPs). Can also promote apoptosis.", "isseed": false, "uniprot": "P29466", "isvalid": true, "importance": 3 }, "position": { "x": 804.3886827178802, "y": 384.3062451192652 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKCA", "altered": 0, "rank": 84, "cited": 275, "uniprotdesc": "Calcium-activated, phospholipid- and diacylglycerol(DAG)-dependent serine/threonine-protein kinase that is involvedin positive and negative regulation of cell proliferation,apoptosis, differentiation, migration and adhesion, tumorigenesis,cardiac hypertrophy, angiogenesis, platelet function andinflammation, by directly phosphorylating targets such as RAF1,BCL2, CSPG4, TNNT2/CTNT, or activating signaling cascade involvingMAPK1/3 (ERK1/2) and RAP1GAP. Involved in cell proliferation andcell growth arrest by positive and negative regulation of the cellcycle. Can promote cell growth by phosphorylating and activatingRAF1, which mediates the activation of the MAPK/ERK signalingcascade, and/or by up-regulating CDKN1A, which facilitates activecyclin-dependent kinase (CDK) complex formation in glioma cells.In intestinal cells stimulated by the phorbol ester PMA, cantrigger a cell cycle arrest program which is associated with theaccumulation of the hyper-phosphorylated growth-suppressive formof RB1 and induction of the CDK inhibitors CDKN1A and CDKN1B.Exhibits anti-apoptotic function in glioma cells and protects themfrom apoptosis by suppressing the p53/TP53-mediated activation ofIGFBP3, and in leukemia cells mediates anti-apoptotic action byphosphorylating BCL2. During macrophage differentiation induced bymacrophage colony-stimulating factor (CSF1), is translocated tothe nucleus and is associated with macrophage development. Afterwounding, translocates from focal contacts to lamellipodia andparticipates in the modulation of desmosomal adhesion. Plays arole in cell motility by phosphorylating CSPG4, which inducesassociation of CSPG4 with extensive lamellipodia at the cellperiphery and polarization of the cell accompanied by increases incell motility. Is highly expressed in a number of cancer cellswhere it can act as a tumor promoter and is implicated inmalignant phenotypes of several tumors such as gliomas and breastcancers. Negatively regulates myocardial contractility andpositively regulates angiogenesis, platelet aggregation andthrombus formation in arteries. Mediates hypertrophic growth ofneonatal cardiomyocytes, in part through a MAPK1/3 (ERK1/2)-dependent signaling pathway, and upon PMA treatment, is requiredto induce cardiomyocyte hypertrophy up to heart failure and death,by increasing protein synthesis, protein-DNA ratio and cellsurface area. Regulates cardiomyocyte function by phosphorylatingcardiac troponin T (TNNT2/CTNT), which induces significantreduction in actomyosin ATPase activity, myofilament calciumsensitivity and myocardial contractility. In angiogenesis, isrequired for full endothelial cell migration, adhesion tovitronectin (VTN), and vascular endothelial growth factor A(VEGFA)-dependent regulation of kinase activation and vasculartube formation. Involved in the stabilization of VEGFA mRNA atpost-transcriptional level and mediates VEGFA-induced cellproliferation. In the regulation of calcium-induced plateletaggregation, mediates signals from the CD36/GP4 receptor forgranule release, and activates the integrin heterodimer ITGA2B-ITGB3 through the RAP1GAP pathway for adhesion. During response tolipopolysaccharides (LPS), may regulate selective LPS-inducedmacrophage functions involved in host defense and inflammation.But in some inflammatory responses, may negatively regulate NF-kappa-B-induced genes, through IL1A-dependent induction of NF-kappa-B inhibitor alpha (NFKBIA/IKBA). Upon stimulation with 12-O-tetradecanoylphorbol-13-acetate (TPA), phosphorylates EIF4G1,which modulates EIF4G1 binding to MKNK1 and may be involved in theregulation of EIF4E phosphorylation. Phosphorylates KIT, leadingto inhibition of KIT activity. Phosphorylates ATF2 which promotescooperation between ATF2 and JUN, activating transcription.", "isseed": false, "uniprot": "P17252", "isvalid": true, "importance": 3 }, "position": { "x": 812.0152327436849, "y": 413.32065076032404 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK1", "altered": 0, "rank": 27, "cited": 2149, "uniprotdesc": "Plays a key role in the control of the eukaryotic cellcycle by modulating the centrosome cycle as well as mitotic onset;promotes G2-M transition, and regulates G1 progress and G1-Stransition via association with multiple interphase cyclins.Required in higher cells for entry into S-phase and mitosis.Phosphorylates PARVA/actopaxin, APC, AMPH, APC, BARD1, Bcl-xL/BCL2L1, BRCA2, CALD1, CASP8, CDC7, CDC20, CDC25A, CDC25C,CC2D1A, CSNK2 proteins/CKII, FZR1/CDH1, CDK7, CEBPB, CHAMP1,DMD/dystrophin, EEF1 proteins/EF-1, EZH2, KIF11/EG5, EGFR, FANCG,FOS, GFAP, GOLGA2/GM130, GRASP1, UBE2A/hHR6A, HIST1H1proteins/histone H1, HMGA1, HIVEP3/KRC, LMNA, LMNB, LMNC, LBR,LATS1, MAP1B, MAP4, MARCKS, MCM2, MCM4, MKLP1, MYB, NEFH, NFIC,NPC/nuclear pore complex, PITPNM1/NIR2, NPM1, NCL, NUCKS1,NPM1/numatrin, ORC1, PRKAR2A, EEF1E1/p18, EIF3F/p47, p53/TP53,NONO/p54NRB, PAPOLA, PLEC/plectin, RB1, UL40/R2, RAB4A, RAP1GAP,RCC1, RPS6KB1/S6K1, KHDRBS1/SAM68, ESPL1, SKI, BIRC5/survivin,STIP1, TEX14, beta-tubulins, MAPT/TAU, NEDD1, VIM/vimentin, TK1,FOXO1, RUNX1/AML1, SIRT2 and RUNX2. CDK1/CDC2-cyclin-B controlspronuclear union in interphase fertilized eggs. Essential forearly stages of embryonic development. During G2 and earlymitosis, CDC25A/B/C-mediated dephosphorylation activatesCDK1/cyclin complexes which phosphorylate several substrates thattrigger at least centrosome separation, Golgi dynamics, nuclearenvelope breakdown and chromosome condensation. Once chromosomesare condensed and aligned at the metaphase plate, CDK1 activity isswitched off by WEE1- and PKMYT1-mediated phosphorylation to allowsister chromatid separation, chromosome decondensation,reformation of the nuclear envelope and cytokinesis. Inactivatedby PKR/EIF2AK2- and WEE1-mediated phosphorylation upon DNA damageto stop cell cycle and genome replication at the G2 checkpointthus facilitating DNA repair. Reactivated after successful DNArepair through WIP1-dependent signaling leading to CDC25A/B/C-mediated dephosphorylation and restoring cell cycle progression.In proliferating cells, CDK1-mediated FOXO1 phosphorylation at theG2-M phase represses FOXO1 interaction with 14-3-3 proteins andthereby promotes FOXO1 nuclear accumulation and transcriptionfactor activity, leading to cell death of postmitotic neurons. Thephosphorylation of beta-tubulins regulates microtubule dynamicsduring mitosis. NEDD1 phosphorylation promotes PLK1-mediated NEDD1phosphorylation and subsequent targeting of the gamma-tubulin ringcomplex (gTuRC) to the centrosome, an important step for spindleformation. In addition, CC2D1A phosphorylation regulates CC2D1Aspindle pole localization and association with SCC1/RAD21 andcentriole cohesion during mitosis. The phosphorylation of Bcl-xL/BCL2L1 after prolongated G2 arrest upon DNA damage triggersapoptosis. In contrast, CASP8 phosphorylation during mitosisprevents its activation by proteolysis and subsequent apoptosis.This phosphorylation occurs in cancer cell lines, as well as inprimary breast tissues and lymphocytes. EZH2 phosphorylationpromotes H3K27me3 maintenance and epigenetic gene silencing. CALD1phosphorylation promotes Schwann cell migration during peripheralnerve regeneration. ", "isseed": false, "uniprot": "P06493", "isvalid": true, "importance": 3 }, "position": { "x": 816.2846778918833, "y": 443.01529401675197 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK9", "altered": 0, "rank": 66, "cited": 448, "uniprotdesc": "Protein kinase involved in the regulation oftranscription. Member of the cyclin-dependent kinase pair(CDK9/cyclin-T) complex, also called positive transcriptionelongation factor b (P-TEFb), which facilitates the transitionfrom abortive to productive elongation by phosphorylating the CTD(C-terminal domain) of the large subunit of RNA polymerase II(RNAP II) POLR2A, SUPT5H and RDBP. This complex is inactive whenin the 7SK snRNP complex form. Phosphorylates EP300, MYOD1,RPB1/POLR2A and AR, and the negative elongation factors DSIF andNELF. Regulates cytokine inducible transcription networks byfacilitating promoter recognition of target transcription factors(e.g. TNF-inducible RELA/p65 activation and IL-6-inducible STAT3signaling). Promotes RNA synthesis in genetic programs for cellgrowth, differentiation and viral pathogenesis. P-TEFb is alsoinvolved in cotranscriptional histone modification, mRNAprocessing and mRNA export. Modulates a complex network ofchromatin modifications including histone H2B monoubiquitination(H2Bub1), H3 lysine 4 trimethylation (H3K4me3) and H3K36me3;integrates phosphorylation during transcription with chromatinmodifications to control co-transcriptional histone mRNAprocessing. The CDK9/cyclin-K complex has also a kinase activitytowards CTD of RNAP II and can substitute for CDK9/cyclin-T P-TEFbin vitro. Replication stress response protein; the CDK9/cyclin-Kcomplex is required for genome integrity maintenance, by promotingcell cycle recovery from replication arrest and limiting single-stranded DNA amount in response to replication stress, thusreducing the breakdown of stalled replication forks and avoidingDNA damage. In addition, probable function in DNA repair ofisoform 2 via interaction with KU70/XRCC6. Promotes cardiacmyocyte enlargement. RPB1/POLR2A phosphorylation on 'Ser-2' in CTDactivates transcription. AR phosphorylation modulates ARtranscription factor promoter selectivity and cell growth. DSIFand NELF phosphorylation promotes transcription by inhibitingtheir negative effect. The phosphorylation of MYOD1 enhances itstranscriptional activity and thus promotes muscle differentiation.", "isseed": false, "uniprot": "P50750", "isvalid": true, "importance": 3 }, "position": { "x": 817.1413594156943, "y": 473.0030598015976 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "RB1", "altered": 0, "rank": 15, "cited": 3201, "uniprotdesc": "Key regulator of entry into cell division that acts as atumor suppressor. Promotes G0-G1 transition when phosphorylated byCDK3/cyclin-C. Acts as a transcription repressor of E2F1 targetgenes. The underphosphorylated, active form of RB1 interacts withE2F1 and represses its transcription activity, leading to cellcycle arrest. Directly involved in heterochromatin formation bymaintaining overall chromatin structure and, in particular, thatof constitutive heterochromatin by stabilizing histonemethylation. Recruits and targets histone methyltransferasesSUV39H1, SUV420H1 and SUV420H2, leading to epigenetictranscriptional repression. Controls histone H4 'Lys-20'trimethylation. Inhibits the intrinsic kinase activity of TAF1.Mediates transcriptional repression by SMARCA4/BRG1 by recruitinga histone deacetylase (HDAC) complex to the c-FOS promoter. Inresting neurons, transcription of the c-FOS promoter is inhibitedby BRG1-dependent recruitment of a phospho-RB1-HDAC1 repressorcomplex. Upon calcium influx, RB1 is dephosphorylated bycalcineurin, which leads to release of the repressor complex (Bysimilarity). In case of viral infections, interactions with SV40large T antigen, HPV E7 protein or adenovirus E1A protein inducethe disassembly of RB1-E2F1 complex thereby disrupting RB1'sactivity. ", "isseed": false, "uniprot": "P06400", "isvalid": true, "importance": 3 }, "position": { "x": 814.574109161329, "y": 502.89301172747827 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK7", "altered": 0, "rank": 72, "cited": 372, "uniprotdesc": "Serine/threonine kinase involved in cell cycle controland in RNA polymerase II-mediated RNA transcription. Cyclin-dependent kinases (CDKs) are activated by the binding to a cyclinand mediate the progression through the cell cycle. Each differentcomplex controls a specific transition between 2 subsequent phasesin the cell cycle. Required for both activation and complexformation of CDK1/cyclin-B during G2-M transition, and foractivation of CDK2/cyclins during G1-S transition (but not complexformation). CDK7 is the catalytic subunit of the CDK-activatingkinase (CAK) complex. Phosphorylates SPT5/SUPT5H, SF1/NR5A1,POLR2A, p53/TP53, CDK1, CDK2, CDK4, CDK6 and CDK11B/CDK11. CAKactivates the cyclin-associated kinases CDK1, CDK2, CDK4 and CDK6by threonine phosphorylation, thus regulating cell cycleprogression. CAK complexed to the core-TFIIH basal transcriptionfactor activates RNA polymerase II by serine phosphorylation ofthe repetitive C-terminal domain (CTD) of its large subunit(POLR2A), allowing its escape from the promoter and elongation ofthe transcripts. Phosphorylation of POLR2A in complex with DNApromotes transcription initiation by triggering dissociation fromDNA. Its expression and activity are constant throughout the cellcycle. Upon DNA damage, triggers p53/TP53 activation byphosphorylation, but is inactivated in turn by p53/TP53; thisfeedback loop may lead to an arrest of the cell cycle and of thetranscription, helping in cell recovery, or to apoptosis. Requiredfor DNA-bound peptides-mediated transcription and cellular growthinhibition. ", "isseed": false, "uniprot": "P50613", "isvalid": true, "importance": 3 }, "position": { "x": 808.6163951619568, "y": 532.2954885602501 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HMGA2", "altered": 0, "rank": 82, "cited": 280, "uniprotdesc": "Functions as a transcriptional regulator. Functions incell cycle regulation through CCNA2. Plays an important role inchromosome condensation during the meiotic G2/M transition ofspermatocytes. ", "isseed": false, "uniprot": "P52926", "isvalid": true, "importance": 3 }, "position": { "x": 390.3801522944653, "y": 399.55122105213593 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "DAPK3", "altered": 0, "rank": 112, "cited": 146, "uniprotdesc": "Serine/threonine kinase which is involved in theregulation of apoptosis, autophagy, transcription, translation andactin cytoskeleton reorganization. Involved in the regulation ofsmooth muscle contraction. Regulates both type I (caspase-dependent) apoptotic and type II (caspase-independent) autophagiccell deaths signal, depending on the cellular setting. Involved inregulation of starvation-induced autophagy. Regulates myosinphosphorylation in both smooth muscle and non-muscle cells. Insmooth muscle, regulates myosin either directly by phosphorylatingMYL12B and MYL9 or through inhibition of smooth muscle myosinphosphatase (SMPP1M) via phosphorylation of PPP1R12A; theinhibition of SMPP1M functions to enhance muscle responsiveness toCa(2+) and promote a contractile state. Phosphorylates MYL12B innon-muscle cells leading to reorganization of actin cytoskeleton.Isoform 2 can phosphorylate myosin, PPP1R12A and MYL12B.Overexpression leads to condensation of actin stress fibers intothick bundles. Involved in actin filament focal adhesion dynamics.The function in both reorganization of actin cytoskeleton andfocal adhesion dissolution is modulated by RhoD. Positivelyregulates canonical Wnt/beta-catenin signaling through interactionwith NLK and TCF7L2. Phosphorylates RPL13A on 'Ser-77' uponinterferon-gamma activation which is causing RPL13A release fromthe ribosome, RPL13A association with the GAIT complex and itssubsequent involvement in transcript-selective translationinhibition. Enhances transcription from AR-responsive promoters ina hormone- and kinase-dependent manner. Involved in regulation ofcell cycle progression and cell proliferation. May be a tumorsuppressor. ", "isseed": false, "uniprot": "O43293", "isvalid": true, "importance": 3 }, "position": { "x": 786.8834349406518, "y": 588.1161439097402 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HMGA1", "altered": 0, "rank": 111, "cited": 147, "uniprotdesc": "HMG-I/Y bind preferentially to the minor groove of A+Trich regions in double-stranded DNA. It is suggested that theseproteins could function in nucleosome phasing and in the 3'-endprocessing of mRNA transcripts. They are also involved in thetranscription regulation of genes containing, or in closeproximity to A+T-rich regions.", "isseed": false, "uniprot": "P17096", "isvalid": true, "importance": 3 }, "position": { "x": 403.8862646389955, "y": 372.7634453076488 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKCD", "altered": 0, "rank": 122, "cited": 90, "uniprotdesc": "Calcium-independent, phospholipid- and diacylglycerol(DAG)-dependent serine/threonine-protein kinase that playscontrasting roles in cell death and cell survival by functioningas a pro-apoptotic protein during DNA damage-induced apoptosis,but acting as an anti-apoptotic protein during cytokine receptor-initiated cell death, is involved in tumor suppression as well assurvival of several cancers, is required for oxygen radicalproduction by NADPH oxidase and acts as positive or negativeregulator in platelet functional responses. Negatively regulates Bcell proliferation and also has an important function in self-antigen induced B cell tolerance induction. Upon DNA damage,activates the promoter of the death-promoting transcription factorBCLAF1/Btf to trigger BCLAF1-mediated p53/TP53 gene transcriptionand apoptosis. In response to oxidative stress, interact with andactivate CHUK/IKKA in the nucleus, causing the phosphorylation ofp53/TP53. In the case of ER stress or DNA damage-inducedapoptosis, can form a complex with the tyrosine-protein kinaseABL1 which trigger apoptosis independently of p53/TP53. In cytosolcan trigger apoptosis by activating MAPK11 or MAPK14, inhibitingAKT1 and decreasing the level of X-linked inhibitor of apoptosisprotein (XIAP), whereas in nucleus induces apoptosis via theactivation of MAPK8 or MAPK9. Upon ionizing radiation treatment,is required for the activation of the apoptosis regulators BAX andBAK, which trigger the mitochondrial cell death pathway. Canphosphorylate MCL1 and target it for degradation which issufficient to trigger for BAX activation and apoptosis. Isrequired for the control of cell cycle progression both at G1/Sand G2/M phases. Mediates phorbol 12-myristate 13-acetate (PMA)-induced inhibition of cell cycle progression at G1/S phase by up-regulating the CDK inhibitor CDKN1A/p21 and inhibiting the cyclinCCNA2 promoter activity. In response to UV irradiation canphosphorylate CDK1, which is important for the G2/M DNA damagecheckpoint activation. Can protect glioma cells from the apoptosisinduced by TNFSF10/TRAIL, probably by inducing increasedphosphorylation and subsequent activation of AKT1. Is highlyexpressed in a number of cancer cells and promotes cell survivaland resistance against chemotherapeutic drugs by inducing cyclinD1 (CCND1) and hyperphosphorylation of RB1, and via several pro-survival pathways, including NF-kappa-B, AKT1 and MAPK1/3(ERK1/2). Can also act as tumor suppressor upon mitogenicstimulation with PMA or TPA. In N-formyl-methionyl-leucyl-phenylalanine (fMLP)-treated cells, is required for NCF1 (p47-phox) phosphorylation and activation of NADPH oxidase activity,and regulates TNF-elicited superoxide anion production inneutrophils, by direct phosphorylation and activation of NCF1 orindirectly through MAPK1/3 (ERK1/2) signaling pathways. May alsoplay a role in the regulation of NADPH oxidase activity ineosinophil after stimulation with IL5, leukotriene B4 or PMA. Incollagen-induced platelet aggregation, acts a negative regulatorof filopodia formation and actin polymerization by interactingwith and negatively regulating VASP phosphorylation. Downstream ofPAR1, PAR4 and CD36/GP4 receptors, regulates differentiallyplatelet dense granule secretion; acts as a positive regulator inPAR-mediated granule secretion, whereas it negatively regulatesCD36/GP4-mediated granule release. Phosphorylates MUC1 in the C-terminal and regulates the interaction between MUC1 and beta-catenin. The catalytic subunit phosphorylates 14-3-3 proteins(YWHAB, YWHAZ and YWHAH) in a sphingosine-dependent fashion (Bysimilarity). ", "isseed": false, "uniprot": "Q05655", "isvalid": true, "importance": 3 }, "position": { "x": 753.0720747024197, "y": 637.5636821949563 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "UBN1", "altered": 0, "rank": 180, "cited": 8, "uniprotdesc": "Acts as a novel regulator of senescence. Involved in theformation of senescence-associated heterochromatin foci (SAHF),which represses expression of proliferation-promoting genes. Bindsto proliferation-promoting genes. May be required for replication-independent chromatin assembly. ", "isseed": false, "uniprot": "Q9NPG3", "isvalid": true, "importance": 3 }, "position": { "x": 421.7252599281241, "y": 348.6435313966405 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK5", "altered": 0, "rank": 44, "cited": 837, "uniprotdesc": "Proline-directed serine/threonine-protein kinaseessential for neuronal cell cycle arrest and differentiation andmay be involved in apoptotic cell death in neuronal diseases bytriggering abortive cell cycle re-entry. Interacts with D1 and D3-type G1 cyclins. Phosphorylates SRC, NOS3, VIM/vimentin,p35/CDK5R1, MEF2A, SIPA1L1, SH3GLB1, PXN, PAK1, MCAM/MUC18, SEPT5,SYN1, DNM1, AMPH, SYNJ1, CDK16, RAC1, RHOA, CDC42, TONEBP/NFAT5,MAPT/TAU, MAP1B, histone H1, p53/TP53, HDAC1, APEX1, PTK2/FAK1,huntingtin/HTT, ATM, MAP2, NEFH and NEFM. Regulates severalneuronal development and physiological processes includingneuronal survival, migration and differentiation, axonal andneurite growth, synaptogenesis, oligodendrocyte differentiation,synaptic plasticity and neurotransmission, by phosphorylating keyproteins. Activated by interaction with CDK5R1 (p35) and CDK5R2(p39), especially in post-mitotic neurons, and promotes CDK5R1(p35) expression in an autostimulation loop. Phosphorylates manydownstream substrates such as Rho and Ras family small GTPases(e.g. PAK1, RAC1, RHOA, CDC42) or microtubule-binding proteins(e.g. MAPT/TAU, MAP2, MAP1B), and modulates actin dynamics toregulate neurite growth and/or spine morphogenesis. Phosphorylatesalso exocytosis associated proteins such as MCAM/MUC18, SEPT5,SYN1, and CDK16/PCTAIRE1 as well as endocytosis associatedproteins such as DNM1, AMPH and SYNJ1 at synaptic terminals. Inthe mature central nervous system (CNS), regulatesneurotransmitter movements by phosphorylating substratesassociated with neurotransmitter release and synapse plasticity;synaptic vesicle exocytosis, vesicles fusion with the presynapticmembrane, and endocytosis. Promotes cell survival by activatinganti-apoptotic proteins BCL2 and STAT3, and negatively regulatingof JNK3/MAPK10 activity. Phosphorylation of p53/TP53 in responseto genotoxic and oxidative stresses enhances its stabilization bypreventing ubiquitin ligase-mediated proteasomal degradation, andinduces transactivation of p53/TP53 target genes, thus regulatingapoptosis. Phosphorylation of p35/CDK5R1 enhances itsstabilization by preventing calpain-mediated proteolysis producingp25/CDK5R1 and avoiding ubiquitin ligase-mediated proteasomaldegradation. During aberrant cell-cycle activity and DNA damage,p25/CDK5 activity elicits cell-cycle activity and double-strandDNA breaks that precedes neuronal death by deregulating HDAC1. DNAdamage triggered phosphorylation of huntingtin/HTT in nuclei ofneurons protects neurons against polyglutamine expansion as wellas DNA damage mediated toxicity. Phosphorylation of PXN reducesits interaction with PTK2/FAK1 in matrix-cell focal adhesions(MCFA) during oligodendrocytes (OLs) differentiation. Negativeregulator of Wnt/beta-catenin signaling pathway. Activator of theGAIT (IFN-gamma-activated inhibitor of translation) pathway, whichsuppresses expression of a post-transcriptional regulon ofproinflammatory genes in myeloid cells; phosphorylates the linkerdomain of glutamyl-prolyl tRNA synthetase (EPRS) in a IFN-gamma-dependent manner, the initial event in assembly of the GAITcomplex. Phosphorylation of SH3GLB1 is required for autophagyinduction in starved neurons. Phosphorylation of TONEBP/NFAT5 inresponse to osmotic stress mediates its rapid nuclearlocalization. MEF2 is inactivated by phosphorylation in nucleus inresponse to neurotoxin, thus leading to neuronal apoptosis. APEX1AP-endodeoxyribonuclease is repressed by phosphorylation,resulting in accumulation of DNA damage and contributing toneuronal death. NOS3 phosphorylation down regulates NOS3-derivednitrite (NO) levels. SRC phosphorylation mediates its ubiquitin-dependent degradation and thus leads to cytoskeletalreorganization. May regulate endothelial cell migration andangiogenesis via the modulation of lamellipodia formation.Involved in dendritic spine morphogenesis by mediating the EFNA1-EPHA4 signaling. The complex p35/CDK5 participates in theregulation of the circadian clock by modulating the function ofCLOCK protein: phosphorylates CLOCK at 'Thr-451' and 'Thr-461' andregulates the transcriptional activity of the CLOCK-ARNTL/BMAL1heterodimer in association with altered stability and subcellulardistribution. ", "isseed": false, "uniprot": "Q00535", "isvalid": true, "importance": 3 }, "position": { "x": 708.9396993235885, "y": 678.0680099519911 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK2", "altered": 0, "rank": 34, "cited": 1469, "uniprotdesc": "Serine/threonine-protein kinase involved in the controlof the cell cycle; essential for meiosis, but dispensable formitosis. Phosphorylates CTNNB1, USP37, p53/TP53, NPM1, CDK7, RB1,BRCA2, MYC, NPAT, EZH2. Interacts with cyclins A, B1, B3, D, or E.Triggers duplication of centrosomes and DNA. Acts at the G1-Stransition to promote the E2F transcriptional program and theinitiation of DNA synthesis, and modulates G2 progression;controls the timing of entry into mitosis/meiosis by controllingthe subsequent activation of cyclin B/CDK1 by phosphorylation, andcoordinates the activation of cyclin B/CDK1 at the centrosome andin the nucleus. Crucial role in orchestrating a fine balancebetween cellular proliferation, cell death, and DNA repair inhuman embryonic stem cells (hESCs). Activity of CDK2 is maximalduring S phase and G2; activated by interaction with cyclin Eduring the early stages of DNA synthesis to permit G1-Stransition, and subsequently activated by cyclin A2 (cyclin A1 ingerm cells) during the late stages of DNA replication to drive thetransition from S phase to mitosis, the G2 phase. EZH2phosphorylation promotes H3K27me3 maintenance and epigenetic genesilencing. Phosphorylates CABLES1 (By similarity). Cyclin E/CDK2prevents oxidative stress-mediated Ras-induced senescence byphosphorylating MYC. Involved in G1-S phase DNA damage checkpointthat prevents cells with damaged DNA from initiating mitosis;regulates homologous recombination-dependent repair byphosphorylating BRCA2, this phosphorylation is low in S phase whenrecombination is active, but increases as cells progress towardsmitosis. In response to DNA damage, double-strand break repair byhomologous recombination a reduction of CDK2-mediated BRCA2phosphorylation. Phosphorylation of RB1 disturbs its interactionwith E2F1. NPM1 phosphorylation by cyclin E/CDK2 promotes itsdissociates from unduplicated centrosomes, thus initiatingcentrosome duplication. Cyclin E/CDK2-mediated phosphorylation ofNPAT at G1-S transition and until prophase stimulates the NPAT-mediated activation of histone gene transcription during S phase.Required for vitamin D-mediated growth inhibition by being itselfinactivated. Involved in the nitric oxide- (NO) mediated signalingin a nitrosylation/activation-dependent manner. USP37 is activatedby phosphorylation and thus triggers G1-S transition. CTNNB1phosphorylation regulates insulin internalization. ", "isseed": false, "uniprot": "P24941", "isvalid": true, "importance": 3 }, "position": { "x": 683.702093338653, "y": 694.2872344756593 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "DAPK1", "altered": 0, "rank": 49, "cited": 691, "uniprotdesc": "Calcium/calmodulin-dependent serine/threonine kinaseinvolved in multiple cellular signaling pathways that trigger cellsurvival, apoptosis, and autophagy. Regulates both type Iapoptotic and type II autophagic cell deaths signal, depending onthe cellular setting. The former is caspase-dependent, while thelatter is caspase-independent and is characterized by theaccumulation of autophagic vesicles. Phosphorylates PIN1 resultingin inhibition of its catalytic activity, nuclear localization, andcellular function. Phosphorylates TPM1, enhancing stress fiberformation in endothelial cells. Phosphorylates STX1A andsignificantly decreases its binding to STXBP1. PhosphorylatesPRKD1 and regulates JNK signaling by binding and activating PRKD1under oxidative stress. Phosphorylates BECN1, reducing itsinteraction with BCL2 and BCL2L1 and promoting the induction ofautophagy. Phosphorylates TSC2, disrupting the TSC1-TSC2 complexand stimulating mTORC1 activity in a growth factor-dependentpathway. Phosphorylates RPS6, MYL9 and DAPK3. Acts as a signalingamplifier of NMDA receptors at extrasynaptic sites for mediatingbrain damage in stroke. Cerebral ischemia recruits DAPK1 into theNMDA receptor complex and it phosphorylates GRINB at Ser-1303inducing injurious Ca(2+) influx through NMDA receptor channels,resulting in an irreversible neuronal death. Required togetherwith DAPK3 for phosphorylation of RPL13A upon interferon-gammaactivation which is causing RPL13A involvement in transcript-selective translation inhibition.Isoform 2 cannot induce apoptosis but can inducemembrane blebbing.", "isseed": false, "uniprot": "P53355", "isvalid": true, "importance": 3 }, "position": { "x": 656.7801404779123, "y": 707.5238675129558 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "RFWD2", "altered": 0, "rank": 143, "cited": 60, "uniprotdesc": "E3 ubiquitin-protein ligase that mediates ubiquitinationand subsequent proteasomal degradation of target proteins. E3ubiquitin ligases accept ubiquitin from an E2 ubiquitin-conjugating enzyme in the form of a thioester and then directlytransfers the ubiquitin to targeted substrates. Involved in JUNubiquitination and degradation. Directly involved in p53 (TP53)ubiquitination and degradation, thereby abolishing p53-dependenttranscription and apoptosis. Ubiquitinates p53 independently ofMDM2 or RCHY1. Probably mediates E3 ubiquitin ligase activity byfunctioning as the essential RING domain subunit of larger E3complexes. In contrast, it does not constitute the catalytic RINGsubunit in the DCX DET1-COP1 complex that negatively regulatesJUN, the ubiquitin ligase activity being mediated by RBX1.Involved in 14-3-3 protein sigma/SFN ubiquitination andproteasomal degradation, leading to AKT activation and promotionof cell survival. Ubiquitinates MTA1 leading to its proteasomaldegradation. ", "isseed": false, "uniprot": "Q8NHY2", "isvalid": true, "importance": 3 }, "position": { "x": 628.5248095687266, "y": 717.6053493094187 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPM1J", "altered": 0, "rank": 191, "cited": 3, "uniprotdesc": "", "isseed": false, "uniprot": "Q5JR12", "isvalid": true, "importance": 3 }, "position": { "x": 599.3044520604564, "y": 724.4002523321917 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "BTG2", "altered": 0, "rank": 97, "cited": 205, "uniprotdesc": "Anti-proliferative protein; the function is mediated byassociation with deadenylase subunits of the CCR4-NOT complex.Activates mRNA deadenylation in a CNOT6 and CNOT7-dependentmanner. In vitro can inhibit deadenylase activity of CNOT7 andCNOT8. Involved in cell cycle regulation. Could be involved in thegrowth arrest and differentiation of the neuronal precursors (Bysimilarity). Modulates transcription regulation mediated by ESR1.Involved in mitochondrial depolarization and neurite outgrowth.", "isseed": false, "uniprot": "P78543", "isvalid": true, "importance": 3 }, "position": { "x": 569.5000000000001, "y": 727.8199946289078 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CD82", "altered": 0, "rank": 69, "cited": 417, "uniprotdesc": "Associates with CD4 or CD8 and delivers costimulatorysignals for the TCR/CD3 pathway.", "isseed": false, "uniprot": "P27701", "isvalid": true, "importance": 3 }, "position": { "x": 539.5, "y": 727.8199946289078 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HIPK2", "altered": 0, "rank": 70, "cited": 405, "uniprotdesc": "Serine/threonine-protein kinase involved intranscription regulation, p53/TP53-mediated cellular apoptosis andregulation of the cell cycle. Acts as a corepressor of severaltranscription factors, including SMAD1 and POU4F1/Brn3a andprobably NK homeodomain transcription factors. PhosphorylatesPDX1, ATF1, PML, p53/TP53, CREB1, CTBP1, CBX4, RUNX1, EP300,CTNNB1, HMGA1 and ZBTB4. Inhibits cell growth and promotesapoptosis through the activation of p53/TP53 both at thetranscription level and at the protein level (by phosphorylationand indirect acetylation). The phosphorylation of p53/TP53 may bemediated by a p53/TP53-HIPK2-AXIN1 complex. Involved in theresponse to hypoxia by acting as a transcriptional co-suppressorof HIF1A. Mediates transcriptional activation of TP73. In responseto TGFB, cooperates with DAXX to activate JNK. Negative regulatorthrough phosphorylation and subsequent proteasomal degradation ofCTNNB1 and the antiapoptotic factor CTBP1. In the Wnt/beta-cateninsignaling pathway acts as an intermediate kinase betweenMAP3K7/TAK1 and NLK to promote the proteasomal degradation of MYB.Phosphorylates CBX4 upon DNA damage and promotes its E3 SUMO-protein ligase activity. Activates CREB1 and ATF1 transcriptionfactors by phosphorylation in response to genotoxic stress. Inresponse to DNA damage, stabilizes PML by phosphorylation. PML,HIPK2 and FBXO3 may act synergically to activate p53/TP53-dependent transactivation. Promotes angiogenesis, and is involvedin erythroid differentiation, especially during fetal livererythropoiesis. Phosphorylation of RUNX1 and EP300 stimulatesEP300 transcription regulation activity. Triggers ZBTB4 proteindegradation in response to DNA damage. Modulates HMGA1 DNA-bindingaffinity. In response to high glucose, triggers phosphorylation-mediated subnuclear localization shifting of PDX1. Involved in theregulation of eye size, lens formation and retinal laminationduring late embryogenesis. ", "isseed": false, "uniprot": "Q9H2X6", "isvalid": true, "importance": 3 }, "position": { "x": 509.69554793954376, "y": 724.4002523321917 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "DDB2", "altered": 0, "rank": 102, "cited": 168, "uniprotdesc": "Required for DNA repair. Binds to DDB1 to form the UV-damaged DNA-binding protein complex (the UV-DDB complex). The UV-DDB complex may recognize UV-induced DNA damage and recruitproteins of the nucleotide excision repair pathway (the NERpathway) to initiate DNA repair. The UV-DDB complex preferentiallybinds to cyclobutane pyrimidine dimers (CPD), 6-4 photoproducts(6-4 PP), apurinic sites and short mismatches. Also appears tofunction as the substrate recognition module for the DCX (DDB1-CUL4-X-box) E3 ubiquitin-protein ligase complex DDB1-CUL4-ROC1(also known as CUL4-DDB-ROC1 and CUL4-DDB-RBX1). The DDB1-CUL4-ROC1 complex may ubiquitinate histone H2A, histone H3 and histoneH4 at sites of UV-induced DNA damage. The ubiquitination ofhistones may facilitate their removal from the nucleosome andpromote subsequent DNA repair. The DDB1-CUL4-ROC1 complex alsoubiquitinates XPC, which may enhance DNA-binding by XPC andpromote NER. Isoform D1 and isoform D2 inhibit UV-damaged DNArepair. ", "isseed": false, "uniprot": "Q92466", "isvalid": true, "importance": 3 }, "position": { "x": 480.47519043127363, "y": 717.6053493094188 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MDM2", "altered": 0, "rank": 7, "cited": 5024, "uniprotdesc": "E3 ubiquitin-protein ligase that mediates ubiquitinationof p53/TP53, leading to its degradation by the proteasome.Inhibits p53/TP53- and p73/TP73-mediated cell cycle arrest andapoptosis by binding its transcriptional activation domain. Alsoacts as a ubiquitin ligase E3 toward itself and ARRB1. Permits thenuclear export of p53/TP53. Promotes proteasome-dependentubiquitin-independent degradation of retinoblastoma RB1 protein.Inhibits DAXX-mediated apoptosis by inducing its ubiquitinationand degradation. Component of the TRIM28/KAP1-MDM2-p53/TP53complex involved in stabilizing p53/TP53. Also component of theTRIM28/KAP1-ERBB4-MDM2 complex which links growth factor and DNAdamage response pathways. Mediates ubiquitination and subsequentproteasome degradation of DYRK2 in nucleus. Ubiquitinates IGF1Rand SNAI1 and promotes them to proteasomal degradation.", "isseed": false, "uniprot": "Q00987", "isvalid": true, "importance": 3 }, "position": { "x": 599.0684773104314, "y": 636.667218490667 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CTSD", "altered": 0, "rank": 85, "cited": 273, "uniprotdesc": "Acid protease active in intracellular protein breakdown.Involved in the pathogenesis of several diseases such as breastcancer and possibly Alzheimer disease.", "isseed": false, "uniprot": "P07339", "isvalid": true, "importance": 3 }, "position": { "x": 425.2979066613468, "y": 694.287234475659 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "NGFR", "altered": 0, "rank": 80, "cited": 313, "uniprotdesc": "Plays a role in the regulation of the translocation ofGLUT4 to the cell surface in adipocytes and skeletal muscle cellsin response to insulin, probably by regulating RAB31 activity, andthereby contributes to the regulation of insulin-dependent glucoseuptake (By similarity). Low affinity receptor which can bind toNGF, BDNF, NT-3, and NT-4. Can mediate cell survival as well ascell death of neural cells. Necessary for the circadianoscillation of the clock genes ARNTL/BMAL1, PER1, PER2 and NR1D1in the suprachiasmatic nucleus (SCN) of the brain and in liver andof the genes involved in glucose and lipid metabolism in theliver. ", "isseed": false, "uniprot": "P08138", "isvalid": true, "importance": 3 }, "position": { "x": 400.06030067641166, "y": 678.0680099519913 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CARM1", "altered": 0, "rank": 207, "cited": 152, "uniprotdesc": "Methylates (mono- and asymmetric dimethylation) theguanidino nitrogens of arginyl residues in several proteinsinvolved in DNA packaging, transcription regulation, pre-mRNAsplicing, and mRNA stability. Recruited to promoters upon geneactivation together with histone acetyltransferases fromEP300/P300 and p160 families, methylates histone H3 at 'Arg-17'(H3R17me), forming mainly asymmetric dimethylarginine (H3R17me2a),leading to activate transcription via chromatin remodeling. Duringnuclear hormone receptor activation and TCF7L2/TCF4 activation,acts synergically with EP300/P300 and either one of the p160histone acetyltransferases NCOA1/SRC1, NCOA2/GRIP1 and NCOA3/ACTRor CTNNB1/beta-catenin to activate transcription. During myogenictranscriptional activation, acts together with NCOA3/ACTR as acoactivator for MEF2C. During monocyte inflammatory stimulation,acts together with EP300/P300 as a coactivator for NF-kappa-B.Acts as coactivator for PPARG, promotes adipocyte differentiationand the accumulation of brown fat tissue. Plays a role in theregulation of pre-mRNA alternative splicing by methylation ofsplicing factors. Also seems to be involved in p53/TP53transcriptional activation. Methylates EP300/P300, both at 'Arg-2142', which may loosen its interaction with NCOA2/GRIP1, and at'Arg-580' and 'Arg-604' in the KIX domain, which impairs itsinteraction with CREB and inhibits CREB-dependent transcriptionalactivation. Also methylates arginine residues in RNA-bindingproteins PABPC1, ELAVL1 and ELAV4, which may affect their mRNA-stabilizing properties and the half-life of their target mRNAs.", "isseed": false, "uniprot": "Q86X55", "isvalid": true, "importance": 2 }, "position": { "x": 376.83605235723905, "y": 659.0776363377252 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TYRP1", "altered": 0, "rank": 87, "cited": 265, "uniprotdesc": "Oxidation of 5,6-dihydroxyindole-2-carboxylic acid(DHICA) into indole-5,6-quinone-2-carboxylic acid. May regulate orinfluence the type of melanin synthesized.", "isseed": false, "uniprot": "P17643", "isvalid": true, "importance": 3 }, "position": { "x": 355.92792529758043, "y": 637.5636821949564 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKDC", "altered": 0, "rank": 74, "cited": 363, "uniprotdesc": "Serine/threonine-protein kinase that acts as a molecularsensor for DNA damage. Involved in DNA non-homologous end joining(NHEJ) required for double-strand break (DSB) repair and V(D)Jrecombination. Must be bound to DNA to express its catalyticproperties. Promotes processing of hairpin DNA structures in V(D)Jrecombination by activation of the hairpin endonuclease artemis(DCLRE1C). The assembly of the DNA-PK complex at DNA ends is alsorequired for the NHEJ ligation step. Required to protect and alignbroken ends of DNA. May also act as a scaffold protein to aid thelocalization of DNA repair proteins to the site of damage. Foundat the ends of chromosomes, suggesting a further role in themaintenance of telomeric stability and the prevention ofchromosomal end fusion. Also involved in modulation oftranscription. Recognizes the substrate consensus sequence [ST]-Q.Phosphorylates 'Ser-139' of histone variant H2AX/H2AFX, therebyregulating DNA damage response mechanism. Phosphorylates DCLRE1C,c-Abl/ABL1, histone H1, HSPCA, c-jun/JUN, p53/TP53, PARP1, POU2F1,DHX9, SRF, XRCC1, XRCC1, XRCC4, XRCC5, XRCC6, WRN, MYC and RFA2.Can phosphorylate C1D not only in the presence of linear DNA butalso in the presence of supercoiled DNA. Ability to phosphorylatep53/TP53 in the presence of supercoiled DNA is dependent on C1D.Contributes to the determination of the circadian period length byantagonizing phosphorylation of CRY1 'Ser-588' and increasing CRY1protein stability, most likely through an indirect machanism.Interacts with CRY1 and CRY2; negatively regulates CRY1phosphorylation. ", "isseed": false, "uniprot": "P78527", "isvalid": true, "importance": 3 }, "position": { "x": 337.6084889085172, "y": 613.806614817288 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HIC1", "altered": 0, "rank": 99, "cited": 185, "uniprotdesc": "Transcriptional repressor. Recognizes and binds to theconsensus sequence '5-[CG]NG[CG]GGGCA[CA]CC-3'. May act as a tumorsuppressor. May be involved in development of head, face, limbsand ventral body wall. Involved in down-regulation of SIRT1 andthereby is involved in regulation of p53/TP53-dependent apoptoticDNA-damage responses. The specific target gene promoterassociation seems to be depend on corepressors, such as CTBP1 orCTBP2 and MTA1. The regulation of SIRT1 transcription in responseto nutrient deprivation seems to involve CTBP1. In cooperationwith MTA1 (indicative for an association with the NuRD complex)represses transcription from CCND1/cyclin-D1 and CDKN1C/p57Kip2specifically in quiescent cells. Involved in regulation of the Wntsignaling pathway probably by association with TCF7L2 andpreventing TCF7L2 and CTNNB1 association with promoters of TCF-responsive genes. Seems to repress transcription from E2F1 andATOH1 which involves ARID1A, indicative for the participation of adistinct SWI/SNF-type chromatin-remodeling complex. Probablyrepresses transcription from ACKR3, FGFBP1 and EFNA1.", "isseed": false, "uniprot": "Q14526", "isvalid": true, "importance": 3 }, "position": { "x": 322.1165650593482, "y": 588.1161439097402 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TAP1", "altered": 0, "rank": 63, "cited": 474, "uniprotdesc": "Involved in the transport of antigens from the cytoplasmto the endoplasmic reticulum for association with MHC class Imolecules. Also acts as a molecular scaffold for the final stageof MHC class I folding, namely the binding of peptide. Nascent MHCclass I molecules associate with TAP via tapasin. Inhibited by thecovalent attachment of herpes simplex virus ICP47 protein, whichblocks the peptide-binding site of TAP. Inhibited by humancytomegalovirus US6 glycoprotein, which binds to the lumenal sideof the TAP complex and inhibits peptide translocation byspecifically blocking ATP-binding to TAP1 and prevents theconformational rearrangement of TAP induced by peptide binding.Inhibited by human adenovirus E3-19K glycoprotein, which binds theTAP complex and acts as a tapasin inhibitor, preventing MHC classI/TAP association. Expression of TAP1 is down-regulated by humanEpstein-Barr virus vIL-10 protein, thereby affecting the transportof peptides into the endoplasmic reticulum and subsequent peptideloading by MHC class I molecules.", "isseed": false, "uniprot": "Q03518", "isvalid": true, "importance": 3 }, "position": { "x": 309.6541146692916, "y": 560.8271840491045 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PYCARD", "altered": 0, "rank": 89, "cited": 244, "uniprotdesc": "Functions as key mediator in apoptosis and inflammation.Promotes caspase-mediated apoptosis involving predominantlycaspase-8 and also caspase-9 in a probable cell type-specificmanner. Involved in activation of the mitochondrial apoptoticpathway, promotes caspase-8-dependent proteolytic maturation ofBID independently of FADD in certain cell types and also mediatesmitochondrial translocation of BAX and activates BAX-dependentapoptosis coupled to activation of caspase-9, -2 and -3. Involvedin macrophage pyroptosis, a caspase-1-dependent inflammatory formof cell death and is the major constituent of the ASC pyroptosomewhich forms upon potassium depletion and rapidly recruits andactivates caspase-1. In innate immune response believed to act asan integral adapter in the assembly of the inflammasome whichactivates caspase-1 leading to processing and secretion ofproinflammatory cytokines. The function as activating adapter indifferent types of inflammasomes is mediated by the DAPIN and CARDdomains and their homotypic interactions. Required for recruitmentof caspase-1 to inflammasomes containing certain patternrecognition receptors, such as NLRP2, NLRP3, AIM2 and probablyIFI16. In the NLRP1 and NLRC4 inflammasomes seems not be requiredbut facilitates the processing of procaspase-1. In cooperationwith NOD2 involved in an inflammasome activated by bacterialmuramyl dipeptide leading to caspase-1 activation. May be involvedin DDX58-triggered proinflammatory responses and inflammasomeactivation. Isoform 2 may have a regulating effect on the functionas inflammasome adapter. Isoform 3 seems to inhibit inflammasome-mediated maturation of interleukin-1 beta. In collaboration withAIM2 which detects cytosolic double-stranded DNA may also beinvolved in a caspase-1-independent cell death that involvescaspase-8. In adaptive immunity may be involved in maturation ofdendritic cells to stimulate T-cell immunity and in cytoskeletalrearrangements coupled to chemotaxis and antigen uptake may beinvolved in post-transcriptional regulation of the guaninenucleotide exchange factor DOCK2; the latter function is proposedto involve the nuclear form. Also involved in transcriptionalactivation of cytokines and chemokines independent of theinflammasome; this function may involve AP-1, NF-kappa-B, MAPK andcaspase-8 signaling pathways. For regulation of NF-kappa-Bactivating and inhibiting functions have been reported. ModulatesNF-kappa-B induction at the level of the IKK complex by inhibitingkinase activity of CHUK and IKBK. Proposed to compete with RIPK2for association with CASP1 thereby down-regulating CASP1-mediatedRIPK2-dependent NF-kappa-B activation and activating interleukin-1beta processing. ", "isseed": false, "uniprot": "Q9ULZ3", "isvalid": true, "importance": 3 }, "position": { "x": 300.38360483804325, "y": 532.2954885602502 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "APC", "altered": 0, "rank": 22, "cited": 2683, "uniprotdesc": "Tumor suppressor. Promotes rapid degradation of CTNNB1and participates in Wnt signaling as a negative regulator. APCactivity is correlated with its phosphorylation state. Activatesthe GEF activity of SPATA13 and ARHGEF4. Plays a role inhepatocyte growth factor (HGF)-induced cell migration. Requiredfor MMP9 up-regulation via the JNK signaling pathway in colorectaltumor cells. Acts as a mediator of ERBB2-dependent stabilizationof microtubules at the cell cortex. It is required for thelocalization of MACF1 to the cell membrane and this localizationof MACF1 is critical for its function in microtubulestabilization. ", "isseed": false, "uniprot": "P25054", "isvalid": true, "importance": 3 }, "position": { "x": 294.42589083867097, "y": 502.89301172747867 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "RNF144B", "altered": 0, "rank": 190, "cited": 4, "uniprotdesc": "E3 ubiquitin-protein ligase which accepts ubiquitin fromE2 ubiquitin-conjugating enzymes UBE2L3 and UBE2L6 in the form ofa thioester and then directly transfers the ubiquitin to targetedsubstrates such as LCMT2, thereby promoting their degradation.Induces apoptosis via a p53/TP53-dependent but caspase-independentmechanism. However, its overexpression also produces a decrease ofthe ubiquitin-dependent stability of BAX, a pro-apoptotic protein,ultimately leading to protection of cell death; But, it is not ananti-apoptotic protein per se. ", "isseed": false, "uniprot": "Q7Z419", "isvalid": true, "importance": 3 }, "position": { "x": 291.8586405843057, "y": 473.0030598015978 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "KAT2B", "altered": 0, "rank": 55, "cited": 609, "uniprotdesc": null, "isseed": false, "uniprot": null, "isvalid": true, "importance": 3 }, "position": { "x": 292.7153221081166, "y": 443.0152940167519 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MSH2", "altered": 0, "rank": 21, "cited": 2696, "uniprotdesc": "Component of the post-replicative DNA mismatch repairsystem (MMR). Forms two different heterodimers: MutS alpha (MSH2-MSH6 heterodimer) and MutS beta (MSH2-MSH3 heterodimer) whichbinds to DNA mismatches thereby initiating DNA repair. When bound,heterodimers bend the DNA helix and shields approximately 20 basepairs. MutS alpha recognizes single base mismatches anddinucleotide insertion-deletion loops (IDL) in the DNA. MutS betarecognizes larger insertion-deletion loops up to 13 nucleotideslong. After mismatch binding, MutS alpha or beta forms a ternarycomplex with the MutL alpha heterodimer, which is thought to beresponsible for directing the downstream MMR events, includingstrand discrimination, excision, and resynthesis. ATP binding andhydrolysis play a pivotal role in mismatch repair functions. TheATPase activity associated with MutS alpha regulates bindingsimilar to a molecular switch: mismatched DNA provokes ADP-->ATPexchange, resulting in a discernible conformational transitionthat converts MutS alpha into a sliding clamp capable ofhydrolysis-independent diffusion along the DNA backbone. Thistransition is crucial for mismatch repair. MutS alpha may alsoplay a role in DNA homologous recombination repair. In melanocytesmay modulate both UV-B-induced cell cycle regulation andapoptosis. ", "isseed": false, "uniprot": "P43246", "isvalid": true, "importance": 3 }, "position": { "x": 296.9847672563152, "y": 413.32065076032376 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP1R13L", "altered": 0, "rank": 140, "cited": 63, "uniprotdesc": "Regulator that plays a central role in regulation ofapoptosis and transcription via its interaction with NF-kappa-Band p53/TP53 proteins. Blocks transcription of HIV-1 virus byinhibiting the action of both NF-kappa-B and SP1. Also inhibitsp53/TP53 function, possibly by preventing the association betweenp53/TP53 and ASPP1 or ASPP2, and therefore suppressing thesubsequent activation of apoptosis. ", "isseed": false, "uniprot": "Q8WUF5", "isvalid": true, "importance": 3 }, "position": { "x": 304.6113172821198, "y": 384.3062451192653 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SIRT1", "altered": 0, "rank": 46, "cited": 799, "uniprotdesc": "NAD-dependent protein deacetylase that linkstranscriptional regulation directly to intracellular energeticsand participates in the coordination of several separated cellularfunctions such as cell cycle, response to DNA damage, metobolism,apoptosis and autophagy. Can modulate chromatin function throughdeacetylation of histones and can promote alterations in themethylation of histones and DNA, leading to transcriptionalrepression. Deacetylates a broad range of transcription factorsand coregulators, thereby regulating target gene expressionpositively and negatively. Serves as a sensor of the cytosolicratio of NAD(+)/NADH which is altered by glucose deprivation andmetabolic changes associated with caloric restriction. Isessential in skeletal muscle cell differentiation and in responseto low nutrients mediates the inhibitory effect on skeletalmyoblast differentiation which also involves 5'-AMP-activatedprotein kinase (AMPK) and nicotinamide phosphoribosyltransferase(NAMPT). Component of the eNoSC (energy-dependent nucleolarsilencing) complex, a complex that mediates silencing of rDNA inresponse to intracellular energy status and acts by recruitinghistone-modifying enzymes. The eNoSC complex is able to sense theenergy status of cell: upon glucose starvation, elevation ofNAD(+)/NADP(+) ratio activates SIRT1, leading to histone H3deacetylation followed by dimethylation of H3 at 'Lys-9' (H3K9me2)by SUV39H1 and the formation of silent chromatin in the rDNAlocus. Deacetylates 'Lys-266' of SUV39H1, leading to itsactivation. Inhibits skeletal muscle differentiation bydeacetylating PCAF and MYOD1. Deacetylates H2A and 'Lys-26' ofHIST1H1E. Deacetylates 'Lys-16' of histone H4 (in vitro). Involvedin NR0B2/SHP corepression function through chromatin remodeling:Recruited to LRH1 target gene promoters by NR0B2/SHP therebystimulating histone H3 and H4 deacetylation leading totranscriptional repression. Proposed to contribute to genomicintegrity via positive regulation of telomere length; however,reports on localization to pericentromeric heterochromatin areconflicting. Proposed to play a role in constitutiveheterochromatin (CH) formation and/or maintenance throughregulation of the available pool of nuclear SUV39H1. Uponoxidative/metabolic stress decreases SUV39H1 degradation byinhibiting SUV39H1 polyubiquitination by MDM2. This increase inSUV39H1 levels enhances SUV39H1 turnover in CH, which in turnseems to accelerate renewal of the heterochromatin whichcorrelates with greater genomic integrity during stress response.Deacetylates 'Lys-382' of p53/TP53 and impairs its ability toinduce transcription-dependent proapoptotic program and modulatecell senescence. Deacetylates TAF1B and thereby represses rDNAtranscription by the RNA polymerase I. Deacetylates MYC, promotesthe association of MYC with MAX and decreases MYC stabilityleading to compromised transformational capability. DeacetylatesFOXO3 in response to oxidative stress thereby increasing itsability to induce cell cycle arrest and resistance to oxidativestress but inhibiting FOXO3-mediated induction of apoptosistranscriptional activity; also leading to FOXO3 ubiquitination andprotesomal degradation. Appears to have a similar effect onMLLT7/FOXO4 in regulation of transcriptional activity andapoptosis. Deacetylates DNMT1; thereby impairs DNMT1methyltransferase-independent transcription repressor activity,modulates DNMT1 cell cycle regulatory function and DNMT1-mediatedgene silencing. Deacetylates RELA/NF-kappa-B p65 therebyinhibiting its transactivating potential and augments apoptosis inresponse to TNF-alpha. Deacetylates HIF1A, KAT5/TIP60, RB1 andHIC1. Deacetylates FOXO1 resulting in its nuclear retention andenhancement of its transcriptional activity leading to increasedgluconeogenesis in liver. Inhibits E2F1 transcriptional activityand apoptotic function, possibly by deacetylation. Involved inHES1- and HEY2-mediated transcriptional repression. In cooperationwith MYCN seems to be involved in transcriptional repression ofDUSP6/MAPK3 leading to MYCN stabilization by phosphorylation at'Ser-62'. Deacetylates MEF2D. Required for antagonist-mediatedtranscription suppression of AR-dependent genes which may belinked to local deacetylation of histone H3. Represses HNF1A-mediated transcription. Required for the repression of ESRRG byCREBZF. Modulates AP-1 transcription factor activity. DeacetylatesNR1H3 AND NR1H2 and deacetylation of NR1H3 at 'Lys-434' positivelyregulates transcription of NR1H3:RXR target genes, promotes NR1H3proteosomal degradation and results in cholesterol efflux; apromoter clearing mechanism after reach round of transcription isproposed. Involved in lipid metabolism. Implicated in regulationof adipogenesis and fat mobilization in white adipocytes byrepression of PPARG which probably involves association with NCOR1and SMRT/NCOR2. Deacetylates ACSS2 leading to its activation, andHMGCS1. Involved in liver and muscle metabolism. Throughdeacteylation and activation of PPARGC1A is required to activatefatty acid oxidation in skeletel muscle under low-glucoseconditions and is involved in glucose homeostasis. Involved inregulation of PPARA and fatty acid beta-oxidation in liver.Involved in positive regulation of insulin secretion in pancreaticbeta cells in response to glucose; the function seems to implytranscriptional repression of UCP2. Proposed to deacetylate IRS2thereby facilitating its insulin-induced tyrosine phosphorylation.Deacetylates SREBF1 isoform SREBP-1C thereby decreasing itsstability and transactivation in lipogenic gene expression.Involved in DNA damage response by repressing genes which areinvolved in DNA repair, such as XPC and TP73, deacetylatingXRCC6/Ku70, and faciliting recruitment of additional factors tosites of damaged DNA, such as SIRT1-deacetylated NBN can recruitATM to initiate DNA repair and SIRT1-deacetylated XPA interactswith RPA2. Also involved in DNA repair of DNA double-strand breaksby homologous recombination and specifically single-strandannealing independently of XRCC6/Ku70 and NBN. Transcriptionalsuppression of XPC probably involves an E2F4:RBL2 suppressorcomplex and protein kinase B (AKT) signaling. Transcriptionalsuppression of TP73 probably involves E2F4 and PCAF. DeacetylatesWRN thereby regulating its helicase and exonuclease activities andregulates WRN nuclear translocation in response to DNA damage.Deacetylates APEX1 at 'Lys-6' and 'Lys-7' and stimulates cellularAP endonuclease activity by promoting the association of APEX1 toXRCC1. Increases p53/TP53-mediated transcription-independentapoptosis by blocking nuclear translocation of cytoplasmicp53/TP53 and probably redirecting it to mitochondria. DeacetylatesXRCC6/Ku70 at 'Lys-539' and 'Lys-542' causing it to sequester BAXaway from mitochondria thereby inhibiting stress-inducedapoptosis. Is involved in autophagy, presumably by deacetylatingATG5, ATG7 and MAP1LC3B/ATG8. Deacetylates AKT1 which leads toenhanced binding of AKT1 and PDK1 to PIP3 and promotes theiractivation. Proposed to play role in regulation of STK11/LBK1-dependent AMPK signaling pathways implicated in cellularsenescence which seems to involve the regulation of theacetylation status of STK11/LBK1. Can deacetylate STK11/LBK1 andthereby increase its activity, cytoplasmic localization andassociation with STRAD; however, the relevance of such activity innormal cells is unclear. In endothelial cells is shown to inhibitSTK11/LBK1 activity and to promote its degradation. DeacetylatesSMAD7 at 'Lys-64' and 'Lys-70' thereby promoting its degradation.Deacetylates CIITA and augments its MHC class II transactivationand contributes to its stability. Deacteylates MECOM/EVI1. Isoform2 is shown to deacetylate 'Lys-382' of p53/TP53, however withlower activity than isoform 1. In combination, the two isoformsexert an additive effect. Isoform 2 regulates p53/TP53 expressionand cellular stress response and is in turn repressed by p53/TP53presenting a SIRT1 isoform-dependent auto-regulatory loop. In caseof HIV-1 infection, interacts with and deacetylates the viral Tatprotein. The viral Tat protein inhibits SIRT1 deacetylationactivity toward RELA/NF-kappa-B p65, thereby potentiates itstranscriptional activity and SIRT1 is proposed to contribute to T-cell hyperactivation during infection. Deacetylates PML at 'Lys-487' and this deacetylation promotes PML control of PER2 nuclearlocalization. During the neurogenic transition, repress selectiveNOTCH1-target genes through histone deacetylation in a BCL6-dependent manner and leading to neuronal differentiation.Regulates the circadian expression of several core clock genes,including ARNTL/BMAL1, RORC, PER2 and CRY1 and plays a criticalrole in maintaining a controlled rhythmicity in histoneacetylation, thereby contributing to circadian chromatinremodeling. Deacetylates ARNTL/BMAL1 and histones at the circadiangene promoters in order to facilitate repression by inhibitorycomponents of the circadian oscillator. Deacetylates PER2,facilitating its ubiquitination and degradation by the proteosome.Protects cardiomyocytes against palmitate-induced apoptosis(PubMed:11672523, PubMed:12006491, PubMed:14976264,PubMed:14980222, PubMed:15126506, PubMed:15152190,PubMed:15205477, PubMed:15469825, PubMed:15692560,PubMed:16079181, PubMed:16166628, PubMed:16892051,PubMed:16998810, PubMed:17283066, PubMed:17334224,PubMed:17505061, PubMed:17612497, PubMed:17620057,PubMed:17936707, PubMed:18203716, PubMed:18296641,PubMed:18662546, PubMed:18687677, PubMed:19188449,PubMed:19220062, PubMed:19364925, PubMed:19690166,PubMed:19934257, PubMed:20097625, PubMed:20100829,PubMed:20203304, PubMed:20375098, PubMed:20620956,PubMed:20670893, PubMed:20817729, PubMed:20975832,PubMed:21149730, PubMed:21245319, PubMed:21471201,PubMed:21504832, PubMed:21555002, PubMed:21698133,PubMed:21701047, PubMed:21775285, PubMed:21807113,PubMed:21841822, PubMed:21890893, PubMed:21909281,PubMed:21947282, PubMed:22274616). Deacetylates XBP1 isoform 2;deacetylation decreases protein stability of XBP1 isoform 2 andinhibits its transcriptional activity (By similarity).", "isseed": false, "uniprot": "Q96EB6", "isvalid": true, "importance": 3 }, "position": { "x": 632.4422863405995, "y": 420.5 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CASP10", "altered": 0, "rank": 100, "cited": 181, "uniprotdesc": "Involved in the activation cascade of caspasesresponsible for apoptosis execution. Recruited to both Fas- andTNFR-1 receptors in a FADD dependent manner. May participate inthe granzyme B apoptotic pathways. Cleaves and activates caspase-3, -4, -6, -7, -8, and -9. Hydrolyzes the small- moleculesubstrates, Tyr-Val-Ala-Asp-|-AMC and Asp-Glu-Val-Asp-|-AMC.", "isseed": false, "uniprot": "Q92851", "isvalid": true, "importance": 3 }, "position": { "x": 329.4955681394091, "y": 329.81733631298744 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SP1", "altered": 0, "rank": 204, "cited": 351, "uniprotdesc": "Transcription factor that can activate or represstranscription in response to physiological and pathologicalstimuli. Binds with high affinity to GC-rich motifs and regulatesthe expression of a large number of genes involved in a variety ofprocesses such as cell growth, apoptosis, differentiation andimmune responses. Highly regulated by post-translationalmodifications (phosphorylations, sumoylation, proteolyticcleavage, glycosylation and acetylation). Binds also the PDGFR-alpha G-box promoter. May have a role in modulating the cellularresponse to DNA damage. Implicated in chromatin remodeling. Playsa role in the recruitment of SMARCA4/BRG1 on the c-FOS promoter.Plays an essential role in the regulation of FE65 gene expression.In complex with ATF7IP, maintains telomerase activity in cancercells by inducing TERT and TERC gene expression. Isoform 3 is astronger activator of transcription than isoform 1. Positivelyregulates the transcription of the core clock componentARNTL/BMAL1. ", "isseed": false, "uniprot": "P08047", "isvalid": true, "importance": 2 }, "position": { "x": 346.42886470541225, "y": 305.05317940410407 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "IRF5", "altered": 0, "rank": 101, "cited": 180, "uniprotdesc": "Transcription factor involved in the induction ofinterferons IFNA and INFB and inflammatory cytokines upon virusinfection. Activated by TLR7 or TLR8 signaling.", "isseed": false, "uniprot": "Q13568", "isvalid": true, "importance": 3 }, "position": { "x": 366.0746867237709, "y": 282.3806921734762 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "BAX", "altered": 0, "rank": 51, "cited": 635, "uniprotdesc": "Accelerates programmed cell death by binding to, andantagonizing the apoptosis repressor BCL2 or its adenovirushomolog E1B 19k protein. Under stress conditions, undergoes aconformation change that causes translocation to the mitochondrionmembrane, leading to the release of cytochrome c that thentriggers apoptosis. Promotes activation of CASP3, and therebyapoptosis. ", "isseed": false, "uniprot": "Q07812", "isvalid": true, "importance": 3 }, "position": { "x": 495.57608693571933, "y": 298.7290842958664 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CABIN1", "altered": 0, "rank": 132, "cited": 77, "uniprotdesc": "May be required for replication-independent chromatinassembly. May serve as a negative regulator of T-cell receptor(TCR) signaling via inhibition of calcineurin. Inhibition ofactivated calcineurin is dependent on both PKC and calciumsignals. Acts as a negative regulator of p53/TP53 by keeping p53in an inactive state on chromatin at promoters of a subset of it'starget genes. ", "isseed": false, "uniprot": "Q9Y6J0", "isvalid": true, "importance": 3 }, "position": { "x": 524.6080753437241, "y": 291.16974245431265 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SETD7", "altered": 0, "rank": 156, "cited": 32, "uniprotdesc": "Histone methyltransferase that specificallymonomethylates 'Lys-4' of histone H3. H3 'Lys-4' methylationrepresents a specific tag for epigenetic transcriptionalactivation. Plays a central role in the transcriptional activationof genes such as collagenase or insulin. Recruited by IPF1/PDX-1to the insulin promoter, leading to activate transcription. Hasalso methyltransferase activity toward non-histone proteins suchas p53/TP53, TAF10, and possibly TAF7 by recognizing and bindingthe [KR]-[STA]-K in substrate proteins. Monomethylates 'Lys-189'of TAF10, leading to increase the affinity of TAF10 for RNApolymerase II. Monomethylates 'Lys-372' of p53/TP53, stabilizingp53/TP53 and increasing p53/TP53-mediated transcriptionalactivation. ", "isseed": false, "uniprot": "Q8WTS6", "isvalid": true, "importance": 3 }, "position": { "x": 438.5698130049044, "y": 229.70989985711353 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SETD8", "altered": 0, "rank": 164, "cited": 22, "uniprotdesc": "Protein-lysine N-methyltransferase that monomethylatesboth histones and non-histone proteins. Specificallymonomethylates 'Lys-20' of histone H4 (H4K20me1). H4K20me1 isenriched during mitosis and represents a specific tag forepigenetic transcriptional repression. Mainly functions ineuchromatin regions, thereby playing a central role in thesilencing of euchromatic genes. Required for cell proliferation,probably by contributing to the maintenance of proper higher-orderstructure of DNA during mitosis. Involved in chromosomecondensation and proper cytokinesis. Nucleosomes are preferred assubstrate compared to free histones. Mediates monomethylation ofp53/TP53 at 'Lys-382', leading to repress p53/TP53-target genes.Plays a negative role in TGF-beta response regulation and apositive role in cell migration. ", "isseed": false, "uniprot": "Q9NQR1", "isvalid": true, "importance": 3 }, "position": { "x": 466.2035225983501, "y": 218.0317966675917 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "APAF1", "altered": 0, "rank": 83, "cited": 278, "uniprotdesc": "Oligomeric Apaf-1 mediates the cytochrome c-dependentautocatalytic activation of pro-caspase-9 (Apaf-3), leading to theactivation of caspase-3 and apoptosis. This activation requiresATP. Isoform 6 is less effective in inducing apoptosis.", "isseed": false, "uniprot": "O14727", "isvalid": true, "importance": 3 }, "position": { "x": 494.98831180678513, "y": 209.57981996234875 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "GDF15", "altered": 0, "rank": 91, "cited": 232, "uniprotdesc": "", "isseed": false, "uniprot": "Q99988", "isvalid": true, "importance": 3 }, "position": { "x": 388.1769208600632, "y": 262.09544516525557 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-H1F0", "source": "TP53", "cited": 0, "target": "H1F0", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-IRF5", "source": "TP53", "cited": 0, "target": "IRF5", "pubmed": ["11973653"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "KAT8-controls-state-change-of-TP53", "source": "KAT8", "cited": 0, "target": "TP53", "pubmed": ["17189187", "17534149"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "FBXO11-controls-state-change-of-TP53", "source": "FBXO11", "cited": 4, "target": "TP53", "pubmed": ["17098746"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "ATR-controls-state-change-of-TP53", "source": "ATR", "cited": 24, "target": "TP53", "pubmed": ["10202145", "10581258", "10606744", "10608806", "10611322", "10656682", "10656795", "10673501", "10706102", "10710310", "10713094", "10723129", "10733583", "10734067", "10744722", "10958792", "11030628", "11042698", "11096068", "11121242", "11244509", "11258706", "11300786", "11313957", "11314044", "11397945", "11423984", "11447225", "11495913", "11526498", "11546806", "11583595", "11706017", "11707453", "11709713", "11711532", "11850826", "11861384", "11865061", "11875057", "11896572", "11896587", "12021785", "12049739", "12071847", "12080066", "12082529", "12091386", "12151394", "12324477", "12384533", "12393500", "12397362", "12427754", "12511424", "12518062", "12519769", "12519780", "12531896", "12588868", "12606585", "12637545", "12676607", "12702572", "12756247", "12771937", "12776195", "12860987", "12890678", "12902982", "12939400", "12955074", "12959929", "12969974", "1406679", "14517211", "14527925", "14612532", "14665630", "14712210", "14871840", "14871926", "14968111", "15048074", "15064747", "15077171", "15078887", "15082766", "15140942", "15155458", "15159397", "15178764", "15181149", "15226429", "15254178", "15258567", "15269203", "15310764", "15322239", "15355354", "15361830", "15381073", "15456784", "15471885", "15489221", "15489892", "15533933", "15542844", "15580310", "15619621", "15665826", "15750624", "15758953", "15775976", "15782130", "15792956", "15794754", "15843377", "15866171", "15870257", "15897882", "16223874", "16247456", "16288207", "16293623", "16377624", "16397295", "16436515", "16478990", "16489034", "16501611", "16632641", "16636671", "16648554", "16651424", "16714289", "16717128", "16731759", "16774943", "16783362", "16790523", "16818505", "16818520", "16891474", "16916644", "16949371", "17045821", "17105820", "17108107", "17234789", "17245430", "17254968", "17283137", "17297446", "17297454", "17332358", "17339337", "17353187", "17363488", "17371838", "17380123", "17456577", "17486112", "17535811", "17553757", "17591690", "17596534", "17609585", "17616578", "17668048", "17684018", "17698850", "17712528", "17855337", "17891183", "17936559", "17967874", "17975552", "17976513", "17977830", "18032786", "18045533", "18056442", "18097051", "18159951", "18216278", "18246126", "18272544", "18289945", "18332866", "18339864", "18345031", "18381438", "18406507", "18431490", "18449195", "18490454", "18560558", "18604166", "18614045", "18715874", "18718914", "18765533", "18769132", "18778462", "18785202", "18794113", "18818083", "18847491", "18985806", "18995830", "19085961", "19203586", "19251701", "19266268", "19303885", "19477925", "19819244", "19828454", "19861417", "19882354", "19907922", "19934315", "19962312", "20005840", "20024960", "20026654", "20080565", "20123963", "20353948", "20372057", "20562916", "20599567", "20610713", "20637859", "20661218", "20663147", "20696760", "20711232", "20931131", "20935676", "20962272", "21317932", "21383696", "21394211", "21423215", "21441950", "21465263", "21532626", "21642861", "21660965", "21757780", "21765463", "21765464", "21832239", "22002314", "22011578", "22030623", "22037398", "22055193", "22099307", "22112863", "22179839", "22285752", "22728651", "22797063", "22815859", "22975381", "23148227", "23150668", "23184057", "23678107", "23798621", "23871434", "23890999", "23982736", "24038750", "24657168", "24711418", "24820418", "24958101", "25202122", "8327466", "9363941", "9733515", "9744860", "9843217", "9925639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "pid", "PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "FBXO11-controls-state-change-of-NEDD8", "source": "FBXO11", "cited": 1, "target": "NEDD8", "pubmed": ["17098746"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "ATM-controls-state-change-of-TP53", "source": "ATM", "cited": 237, "target": "TP53", "pubmed": ["10202145", "10570149", "10581258", "10606744", "10608806", "10611322", "10656682", "10656795", "10673500", "10673501", "10706102", "10710310", "10713094", "10723129", "10733583", "10734067", "10744722", "10958792", "11030628", "11096068", "11101524", "11121242", "11175334", "11244509", "11258706", "11300786", "11313957", "11314044", "11397945", "11423984", "11447225", "11495913", "11526498", "11546806", "11551930", "11583595", "11706017", "11707453", "11709713", "11711532", "11740489", "11780126", "11850826", "11861384", "11865061", "11875057", "11896572", "11896587", "12021785", "12049739", "12071847", "12080066", "12082529", "12091386", "12093737", "12151394", "12324477", "12384533", "12393500", "12397361", "12397362", "12427754", "12511424", "12518062", "12519769", "12519780", "12531896", "12588868", "12606585", "12637545", "12676607", "12702572", "12756247", "12771937", "12776195", "12810724", "12860987", "12861053", "12890678", "12902982", "12907596", "12939400", "12955074", "12959929", "12969974", "1406679", "14517211", "14527925", "14612532", "14665630", "14712210", "14749479", "14871840", "14871926", "14968111", "15048074", "15064747", "15077171", "15078887", "15082766", "15140942", "15155458", "15159397", "15178764", "15181149", "15226429", "15254178", "15258567", "15269203", "15310764", "15322239", "15355354", "15361830", "15381073", "15456784", "15471885", "15489221", "15489892", "15526030", "15533933", "15542844", "15580310", "15619621", "15629715", "15657359", "15665826", "15671037", "15706352", "15750624", "15758953", "15775976", "15782130", "15792956", "15794754", "15843377", "15866171", "15870257", "15897882", "15963507", "16219768", "16223874", "16247456", "16288207", "16293623", "16377624", "16397295", "16436515", "16478990", "16489034", "16501611", "16601678", "16632641", "16636671", "16648554", "16651424", "16714289", "16717128", "16731759", "16738336", "16774943", "16783362", "16790523", "16793543", "16818505", "16818520", "16891474", "16916644", "16949371", "17045821", "17105820", "17107963", "17108107", "17121812", "17135248", "17210684", "17234789", "17245430", "17283137", "17297446", "17297454", "17332358", "17339337", "17349958", "17349959", "17353187", "17363488", "17371838", "17380123", "17456577", "17486112", "17535811", "17553757", "17567906", "17591690", "17596534", "17609585", "17616578", "17668048", "17684018", "17698850", "17712528", "17855337", "17891183", "17906639", "17936559", "17967874", "17975552", "17976513", "17977830", "18032786", "18045533", "18056442", "18056705", "18097051", "18159951", "18160537", "18216278", "18246126", "18272544", "18289945", "18332866", "18339864", "18345031", "18381438", "18406507", "18431490", "18449195", "18490454", "18536714", "18560558", "18593910", "18604166", "18614045", "18669630", "18715874", "18718914", "18765533", "18769132", "18778462", "18785202", "18794113", "18818083", "18847491", "18985806", "18995830", "19085961", "19203586", "19251701", "19266268", "19303885", "19465479", "19477925", "19819244", "19828042", "19828454", "19857493", "19861417", "19882354", "19907922", "19934315", "19962312", "19965871", "20005840", "20009884", "20018442", "20024960", "20026654", "20041275", "20080565", "20123963", "20171273", "20353948", "20363803", "20372057", "20514025", "20562916", "20599567", "20610713", "20637859", "20661218", "20663147", "20673369", "20696760", "20711232", "20811699", "20931131", "20935676", "20962272", "21057547", "21148320", "21317932", "21383696", "21394211", "21423215", "21441950", "21454683", "21465263", "21532626", "21642861", "21660965", "21757780", "21765463", "21765464", "21832239", "22002314", "22011578", "22030623", "22037398", "22055193", "22099307", "22112863", "22179839", "22285752", "22728651", "22797063", "22815859", "22878263", "22975381", "23148227", "23149944", "23150668", "23184057", "23678107", "23798621", "23871434", "23890999", "23982736", "24038750", "24145406", "24196445", "24379358", "24657168", "24711418", "24820418", "24899407", "24958101", "25202122", "8327466", "9363941", "9733514", "9733515", "9843217", "9925639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome", "PhosphoSite", "pid", "PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SMYD2-controls-state-change-of-TP53", "source": "SMYD2", "cited": 6, "target": "TP53", "pubmed": ["17108971"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "NGFR-controls-state-change-of-TP53", "source": "NGFR", "cited": 0, "target": "TP53", "pubmed": ["15668238"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAX-controls-expression-of-TP53", "source": "MAX", "cited": 0, "target": "TP53", "pubmed": ["8494784"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-PRKAB1", "source": "TP53", "cited": 5, "target": "PRKAB1", "pubmed": ["16140933", "17409411"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MDM2-controls-state-change-of-TP53", "source": "MDM2", "cited": 2748, "target": "TP53", "pubmed": ["10734067", "11127820", "11340074", "11713287", "14654783", "14671306", "14702041", "15210108", "15242646", "16107876", "9153395", "9153396", "9450543"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SETD8-controls-state-change-of-TP53", "source": "SETD8", "cited": 8, "target": "TP53", "pubmed": ["17707234"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SETD7-controls-state-change-of-TP53", "source": "SETD7", "cited": 8, "target": "TP53", "pubmed": ["15525938", "17646389"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-TYRP1", "source": "TP53", "cited": 0, "target": "TYRP1", "pubmed": ["10640990"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "ATR-controls-state-change-of-TP63", "source": "ATR", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKCA-controls-state-change-of-TP53", "source": "PRKCA", "cited": 12, "target": "TP53", "pubmed": ["10706102", "10733583", "11007451", "11423984", "11585729", "12080066", "14640983", "14744935", "15659650", "16227590", "17898864", "18812399", "19819244", "19933256", "9254608", "9315650", "9571186", "9620776", "9739174"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "ATM-controls-state-change-of-TP63", "source": "ATM", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CHEK2-controls-state-change-of-TP73", "source": "CHEK2", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-DDB2", "source": "TP53", "cited": 23, "target": "DDB2", "pubmed": ["11971958"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKCD-controls-state-change-of-TP53", "source": "PRKCD", "cited": 0, "target": "TP53", "pubmed": ["10581258", "11030628", "11101524", "11300786", "11495913", "11740489", "11780126", "11875057", "12021785", "12093737", "12397361", "12427754", "12676607", "12860987", "12902982", "12907596", "14749479", "15322239", "15381073", "15471885", "15489221", "15526030", "15619621", "15657359", "15706352", "15750624", "15843377", "15870257", "15897882", "16219768", "16247456", "16377624", "16601678", "16717128", "16738336", "16793543", "17105820", "17107963", "17210684", "17332358", "17349958", "17349959", "17380123", "17567906", "17591690", "17891183", "17906639", "18056705", "18160537", "18216278", "18536714", "18560558", "18769132", "19465479", "19819244", "19828042", "19857493", "19861417", "19882354", "19965871", "20018442", "20024960", "20123963", "20171273", "20363803", "20514025", "20610713", "20673369", "20696760", "20811699", "20935676", "20962272", "21057547", "21383696", "21394211", "21642861", "21660965", "21765463", "21765464", "22011578", "22797063", "22878263", "23149944", "24145406", "24196445", "24379358", "24899407"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-TP63", "source": "TP53", "cited": 257, "target": "TP63", "pubmed": ["14576823"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-PML", "source": "TP53", "cited": 102, "target": "PML", "pubmed": ["14992722"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "ATM-controls-state-change-of-TP73", "source": "ATM", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "WRN-controls-state-change-of-TP63", "source": "WRN", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "ATR-controls-state-change-of-TP73", "source": "ATR", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-PCBP4", "source": "TP53", "cited": 0, "target": "PCBP4", "pubmed": ["10891498"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-GADD45A", "source": "TP53", "cited": 45, "target": "GADD45A", "pubmed": ["15186775", "18250150"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKDC-controls-state-change-of-TP53", "source": "PRKDC", "cited": 10, "target": "TP53", "pubmed": ["10202145", "10570149", "10581258", "10606744", "10608806", "10611322", "10656682", "10656795", "10673500", "10673501", "10706102", "10710310", "10713094", "10723129", "10733583", "10734067", "10744722", "10930428", "10958792", "11030628", "11042698", "11096068", "11101524", "11121242", "11175334", "11244509", "11258706", "11300786", "11313957", "11314044", "11397945", "11423984", "11447225", "11495913", "11526498", "11546806", "11551930", "11583595", "11706017", "11707453", "11709713", "11711532", "11740489", "11780126", "11850826", "11861384", "11865061", "11875057", "11883897", "11896572", "11896587", "12021785", "12049739", "12071847", "12080066", "12082529", "12091386", "12093737", "12151394", "12324477", "12384533", "12393500", "12397361", "12397362", "12427754", "12511424", "12518062", "12519769", "12519780", "12531896", "12588868", "12606585", "12637545", "12676607", "12702572", "12756247", "12771937", "12776195", "12810724", "12860987", "12861053", "12890678", "12902982", "12907596", "12939400", "12955074", "12959929", "12969974", "1406679", "14517211", "14527925", "14612532", "14665630", "14712210", "14749479", "14871840", "14871926", "14968111", "15048074", "15064747", "15077171", "15078887", "15082766", "15140942", "15155458", "15159397", "15178764", "15181149", "15226429", "15254178", "15258567", "15269203", "15310764", "15322239", "15355354", "15361830", "15381073", "15456784", "15471885", "15489221", "15489892", "15526030", "15533933", "15542844", "15580310", "15619621", "15629715", "15657359", "15665826", "15671037", "15706352", "15750624", "15758953", "15775976", "15782130", "15792956", "15794754", "15843377", "15866171", "15870257", "15897882", "15963507", "16219768", "16223874", "16247456", "16288207", "16293623", "16377624", "16397295", "16436515", "16478990", "16489034", "16501611", "16601678", "16632641", "16636671", "16648554", "16651424", "16714289", "16717128", "16731759", "16738336", "16774943", "16783362", "16790523", "16793543", "16818505", "16818520", "16891474", "16916644", "16949371", "17045821", "17105820", "17107963", "17108107", "17121812", "17135248", "17210684", "17234789", "17245430", "17254968", "17283137", "17297446", "17297454", "17332358", "17339337", "17349958", "17349959", "17353187", "17363488", "17371838", "17380123", "17456577", "17486112", "17535811", "17553757", "17567906", "17591690", "17596534", "17609585", "17616578", "17668048", "17684018", "17698850", "17712528", "17855337", "17891183", "17906639", "17936559", "17967874", "17975552", "17976513", "17977830", "18032786", "18045533", "18056442", "18056705", "18097051", "18159951", "18160537", "18216278", "18246126", "18272544", "18289945", "18332866", "18339864", "18345031", "18381438", "18406507", "18431490", "18449195", "18490454", "18536714", "18560558", "18593910", "18604166", "18614045", "18669630", "18715874", "18718914", "18765533", "18769132", "18778462", "18785202", "18794113", "18818083", "18847491", "18985806", "18995830", "19085961", "19203586", "19251701", "19266268", "19303885", "19345189", "19465479", "19477925", "19819244", "19828042", "19828454", "19857493", "19861417", "19882354", "19907922", "19934315", "19962312", "19965871", "20005840", "20009884", "20018442", "20024960", "20026654", "20041275", "20080565", "20123963", "20171273", "20353948", "20363803", "20372057", "20514025", "20562916", "20599567", "20610713", "20637859", "20661218", "20663147", "20673369", "20696760", "20711232", "20811699", "20931131", "20935676", "20962272", "21057547", "21148320", "21317932", "21383696", "21386980", "21394211", "21423215", "21441950", "21454683", "21465263", "21532626", "21642861", "21660965", "21757780", "21765463", "21765464", "21832239", "22002314", "22011578", "22030623", "22037398", "22055193", "22099307", "22112863", "22179839", "22285752", "22496350", "22728651", "22797063", "22815859", "22878263", "22975381", "23148227", "23149944", "23150668", "23184057", "23678107", "23798621", "23871434", "23890999", "23982736", "24038750", "24145406", "24196445", "24379358", "24657168", "24711418", "24820418", "24899407", "24958101", "25202122", "8327466", "9363941", "9733515", "9744860", "9843217", "9925639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-GDF15", "source": "TP53", "cited": 18, "target": "GDF15", "pubmed": ["10618379"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "WRN-controls-state-change-of-TP73", "source": "WRN", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-SERPINE1", "source": "TP53", "cited": 35, "target": "SERPINE1", "pubmed": ["7479001"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-PPM1J", "source": "TP53", "cited": 0, "target": "PPM1J", "pubmed": ["16260627"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HTT-controls-state-change-of-TP63", "source": "HTT", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-CASP1", "source": "TP53", "cited": 6, "target": "CASP1", "pubmed": ["11278253"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK14-controls-state-change-of-TP63", "source": "MAPK14", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HMGB1-controls-state-change-of-TP73", "source": "HMGB1", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-CASP6", "source": "TP53", "cited": 13, "target": "CASP6", "pubmed": ["12089322"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK13-controls-state-change-of-TP63", "source": "MAPK13", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HTT-controls-state-change-of-TP53", "source": "HTT", "cited": 9, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK12-controls-state-change-of-TP63", "source": "MAPK12", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK11-controls-state-change-of-TP63", "source": "MAPK11", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SIRT1-controls-expression-of-CDKN1A", "source": "SIRT1", "cited": 0, "target": "CDKN1A", "pubmed": [], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PML-controls-state-change-of-TP53", "source": "PML", "cited": 101, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CREBBP-controls-state-change-of-TP53", "source": "CREBBP", "cited": 72, "target": "TP53", "pubmed": ["18485870"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-TAP1", "source": "TP53", "cited": 6, "target": "TAP1", "pubmed": ["10618714", "12857899"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK13-controls-state-change-of-TP53", "source": "MAPK13", "cited": 0, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK12-controls-state-change-of-TP53", "source": "MAPK12", "cited": 0, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK14-controls-state-change-of-TP53", "source": "MAPK14", "cited": 65, "target": "TP53", "pubmed": ["10202145", "10212189", "10581258", "10606744", "10608806", "10611322", "10656682", "10656795", "10673501", "10706102", "10710310", "10713094", "10723129", "10733583", "10734067", "10744722", "10747897", "10958792", "11030628", "11078726", "11096068", "11101524", "11121242", "11244509", "11258706", "11283254", "11300786", "11313957", "11314044", "11397945", "11423984", "11447225", "11495913", "11526498", "11546806", "11583595", "11706017", "11707453", "11709713", "11711532", "11740489", "11780126", "11850826", "11861384", "11865061", "11875057", "11896572", "11896587", "12021785", "12049739", "12071847", "12080066", "12082529", "12091386", "12093737", "12151394", "12324477", "12384533", "12393500", "12397361", "12397362", "12427754", "12511424", "12518062", "12519769", "12519780", "12531896", "12588868", "12606585", "12637545", "12676607", "12702572", "12756247", "12771937", "12776195", "12860987", "12890678", "12902982", "12907596", "12939400", "12955074", "12959929", "12969974", "1406679", "14517211", "14527925", "14612532", "14665630", "14712210", "14749479", "14871840", "14871926", "14968111", "15048074", "15064747", "15077171", "15078887", "15082766", "15140942", "15155458", "15159397", "15178764", "15181149", "15226429", "15254178", "15258567", "15269203", "15310764", "15322239", "15355354", "15361830", "15381073", "15456784", "15471885", "15489221", "15489892", "15526030", "15533933", "15542844", "15580310", "15619621", "15657359", "15665826", "15706352", "15750624", "15758953", "15775976", "15782130", "15792956", "15794754", "15843377", "15866171", "15870257", "15897882", "16219768", "16223874", "16247456", "16288207", "16293623", "16377624", "16397295", "16436515", "16478990", "16489034", "16501611", "16552184", "16601678", "16632641", "16636671", "16648554", "16651424", "16714289", "16717128", "16731759", "16738336", "16774943", "16783362", "16790523", "16793543", "16818505", "16818520", "16891474", "16916644", "16949371", "17045821", "17105820", "17107963", "17108107", "17210684", "17234789", "17245430", "17254968", "17283137", "17297446", "17297454", "17332358", "17339337", "17349958", "17349959", "17353187", "17363488", "17371838", "17380123", "17456577", "17486112", "17535811", "17553757", "17567906", "17591690", "17596534", "17609585", "17616578", "17668048", "17684018", "17698850", "17712528", "17855337", "17891183", "17906639", "17936559", "17942552", "17967874", "17975552", "17976513", "17977830", "18032786", "18045533", "18056442", "18056705", "18097051", "18159951", "18160537", "18216278", "18246126", "18272544", "18289945", "18332866", "18339864", "18345031", "18381438", "18406507", "18431490", "18449195", "18490454", "18536714", "18560558", "18604166", "18614045", "18715874", "18718914", "18765533", "18769132", "18778462", "18785202", "18794113", "18818083", "18847491", "18985806", "18995830", "19085961", "19203586", "19251701", "19266268", "19303885", "19465479", "19477925", "19819244", "19828042", "19828454", "19857493", "19861417", "19882354", "19907922", "19934315", "19962312", "19965871", "20005840", "20018442", "20024960", "20026654", "20080565", "20123963", "20171273", "20353948", "20363803", "20372057", "20514025", "20562916", "20599567", "20610713", "20637859", "20661218", "20663147", "20673369", "20696760", "20711232", "20811699", "20931131", "20935676", "20962272", "21057547", "21317932", "21383696", "21394211", "21423215", "21441950", "21465263", "21532626", "21642861", "21660965", "21757780", "21765463", "21765464", "21832239", "22002314", "22011578", "22030623", "22037398", "22055193", "22099307", "22112863", "22179839", "22285752", "22728651", "22797063", "22815859", "22878263", "22975381", "23148227", "23149944", "23150668", "23184057", "23678107", "23798621", "23871434", "23890999", "23982736", "24038750", "24145406", "24196445", "24379358", "24657168", "24711418", "24820418", "24899407", "24958101", "25202122", "8327466", "9363941", "9372954", "9733515", "9744860", "9843217", "9925639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome", "PhosphoSite", "pid", "PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK11-controls-state-change-of-TP53", "source": "MAPK11", "cited": 0, "target": "TP53", "pubmed": ["10212189", "10747897", "17254968"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome", "pid", "PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-BAX", "source": "TP53", "cited": 95, "target": "BAX", "pubmed": ["14963330"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HMGB1-controls-state-change-of-TP63", "source": "HMGB1", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-TP73", "source": "TP53", "cited": 42, "target": "TP73", "pubmed": ["11314010"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PML-controls-state-change-of-TP63", "source": "PML", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP2CA-controls-state-change-of-TP73", "source": "PPP2CA", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP2CB-controls-state-change-of-TP73", "source": "PPP2CB", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "FOS-controls-expression-of-TP53", "source": "FOS", "cited": 12, "target": "TP53", "pubmed": ["10072388", "11136975"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CREBBP-controls-expression-of-GADD45A", "source": "CREBBP", "cited": 0, "target": "GADD45A", "pubmed": ["15186775", "18250150"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-CDKN1A", "source": "TP53", "cited": 1480, "target": "CDKN1A", "pubmed": ["11080152", "15655109", "17110336", "17409421", "17707234", "17719541", "17938176", "18250150", "18485870", "19011621", "7796420", "8242752"], "isdirected": true, "type": "controls-expression-of", "datasource": ["Reactome", "pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PML-controls-state-change-of-TP73", "source": "PML", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HMGB1-controls-state-change-of-TP53", "source": "HMGB1", "cited": 21, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "IGBP1-controls-state-change-of-TP73", "source": "IGBP1", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HIPK2-controls-state-change-of-TP53", "source": "HIPK2", "cited": 98, "target": "TP53", "pubmed": ["10581258", "11030628", "11101524", "11300786", "11495913", "11740489", "11780126", "11875057", "12021785", "12093737", "12397361", "12427754", "12676607", "12860987", "12902982", "12907596", "14749479", "15322239", "15381073", "15471885", "15489221", "15526030", "15619621", "15657359", "15706352", "15750624", "15843377", "15870257", "15897882", "16219768", "16247456", "16377624", "16601678", "16717128", "16738336", "16793543", "17105820", "17107963", "17210684", "17332358", "17349958", "17349959", "17380123", "17567906", "17591690", "17891183", "17906639", "18056705", "18160537", "18216278", "18536714", "18560558", "18769132", "19465479", "19819244", "19828042", "19857493", "19861417", "19882354", "19965871", "20018442", "20024960", "20123963", "20171273", "20363803", "20514025", "20610713", "20673369", "20696760", "20811699", "20935676", "20962272", "21057547", "21383696", "21394211", "21642861", "21660965", "21765463", "21765464", "22011578", "22797063", "22878263", "23149944", "24145406", "24196445", "24379358", "24899407"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-RNF144B", "source": "TP53", "cited": 0, "target": "RNF144B", "pubmed": ["12853982"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-HIC1", "source": "TP53", "cited": 22, "target": "HIC1", "pubmed": ["16301995"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-HIRA", "source": "TP53", "cited": 1, "target": "HIRA", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK14-controls-state-change-of-TP73", "source": "MAPK14", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-UBN1", "source": "TP53", "cited": 0, "target": "UBN1", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-RB1", "source": "TP53", "cited": 262, "target": "RB1", "pubmed": ["8119988"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK11-controls-state-change-of-TP73", "source": "MAPK11", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-HMGA2", "source": "TP53", "cited": 5, "target": "HMGA2", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-HMGA1", "source": "TP53", "cited": 5, "target": "HMGA1", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK13-controls-state-change-of-TP73", "source": "MAPK13", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK12-controls-state-change-of-TP73", "source": "MAPK12", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "IGBP1-controls-state-change-of-TP63", "source": "IGBP1", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-TP53I3", "source": "TP53", "cited": 28, "target": "TP53I3", "pubmed": ["11684014", "11919562", "17719542", "18485870"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "DYRK1A-controls-state-change-of-TP53", "source": "DYRK1A", "cited": 1, "target": "TP53", "pubmed": ["10202145", "10581258", "10606744", "10608806", "10611322", "10656682", "10656795", "10673501", "10706102", "10710310", "10713094", "10723129", "10733583", "10734067", "10744722", "10958792", "11030628", "11096068", "11121242", "11244509", "11258706", "11313957", "11314044", "11397945", "11423984", "11447225", "11495913", "11526498", "11546806", "11583595", "11706017", "11707453", "11709713", "11711532", "11850826", "11861384", "11865061", "11875057", "11896572", "11896587", "12021785", "12049739", "12071847", "12080066", "12082529", "12091386", "12151394", "12324477", "12384533", "12393500", "12397362", "12427754", "12511424", "12518062", "12519769", "12519780", "12531896", "12588868", "12606585", "12637545", "12676607", "12702572", "12756247", "12771937", "12776195", "12860987", "12890678", "12902982", "12939400", "12955074", "12959929", "12969974", "1406679", "14517211", "14527925", "14612532", "14665630", "14712210", "14871840", "14871926", "14968111", "15048074", "15064747", "15077171", "15078887", "15082766", "15140942", "15155458", "15159397", "15178764", "15181149", "15226429", "15254178", "15258567", "15269203", "15310764", "15322239", "15355354", "15361830", "15381073", "15456784", "15471885", "15489221", "15489892", "15533933", "15542844", "15580310", "15619621", "15665826", "15750624", "15758953", "15775976", "15782130", "15792956", "15794754", "15843377", "15866171", "15870257", "15897882", "16223874", "16247456", "16288207", "16293623", "16377624", "16397295", "16436515", "16478990", "16489034", "16501611", "16632641", "16636671", "16648554", "16651424", "16714289", "16717128", "16731759", "16774943", "16783362", "16790523", "16818505", "16818520", "16891474", "16916644", "16949371", "17045821", "17105820", "17108107", "17234789", "17245430", "17283137", "17297446", "17297454", "17332358", "17339337", "17353187", "17363488", "17371838", "17380123", "17456577", "17486112", "17535811", "17553757", "17591690", "17596534", "17609585", "17616578", "17668048", "17684018", "17698850", "17712528", "17855337", "17891183", "17936559", "17967874", "17975552", "17976513", "17977830", "18032786", "18045533", "18056442", "18097051", "18159951", "18216278", "18246126", "18272544", "18289945", "18332866", "18339864", "18345031", "18381438", "18406507", "18431490", "18449195", "18490454", "18560558", "18604166", "18614045", "18715874", "18718914", "18765533", "18769132", "18778462", "18785202", "18794113", "18818083", "18847491", "18985806", "18995830", "19085961", "19203586", "19251701", "19266268", "19303885", "19477925", "19819244", "19828454", "19861417", "19882354", "19907922", "19934315", "19962312", "20005840", "20024960", "20026654", "20080565", "20123963", "20353948", "20372057", "20562916", "20599567", "20610713", "20637859", "20661218", "20663147", "20696760", "20711232", "20931131", "20935676", "20962272", "21317932", "21383696", "21394211", "21423215", "21441950", "21465263", "21532626", "21642861", "21660965", "21757780", "21765463", "21765464", "21832239", "22002314", "22011578", "22030623", "22037398", "22055193", "22099307", "22112863", "22179839", "22285752", "22728651", "22797063", "22815859", "22975381", "23148227", "23150668", "23184057", "23678107", "23798621", "23871434", "23890999", "23982736", "24038750", "24657168", "24711418", "24820418", "24958101", "25202122", "8327466", "9363941", "9733515", "9843217", "9925639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SUMO1-controls-state-change-of-TP73", "source": "SUMO1", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAG1-controls-state-change-of-TP63", "source": "PRKAG1", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SIRT1-controls-state-change-of-TP73", "source": "SIRT1", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP2CB-controls-state-change-of-TP63", "source": "PPP2CB", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CHEK2-controls-state-change-of-TP53", "source": "CHEK2", "cited": 73, "target": "TP53", "pubmed": ["10202145", "10570149", "10581258", "10606744", "10608806", "10611322", "10656682", "10656795", "10673500", "10673501", "10706102", "10710310", "10713094", "10723129", "10733583", "10734067", "10744722", "10958792", "11030628", "11042698", "11096068", "11121242", "11175334", "11244509", "11258706", "11300786", "11313957", "11314044", "11397945", "11423984", "11447225", "11495913", "11526498", "11546806", "11551930", "11583595", "11585729", "11706017", "11707453", "11709713", "11711532", "11850826", "11861384", "11865061", "11875057", "11883897", "11896572", "11896587", "12021785", "12049739", "12071847", "12080066", "12082529", "12091386", "12151394", "12324477", "12384533", "12393500", "12397362", "12427754", "12511424", "12518062", "12519769", "12519780", "12531896", "12588868", "12606585", "12637545", "12676607", "12702572", "12756247", "12771937", "12776195", "12810724", "12860987", "12861053", "12890678", "12902982", "12939400", "12955074", "12959929", "12969974", "1406679", "14517211", "14527925", "14612532", "14640983", "14665630", "14712210", "14871840", "14871926", "14968111", "15048074", "15064747", "15077171", "15078887", "15082766", "15140942", "15155458", "15159397", "15178764", "15181149", "15226429", "15254178", "15258567", "15269203", "15310764", "15322239", "15355354", "15361830", "15381073", "15456784", "15471885", "15489221", "15489892", "15533933", "15542844", "15580310", "15619621", "15629715", "15659650", "15665826", "15671037", "15750624", "15758953", "15775976", "15782130", "15792956", "15794754", "15843377", "15866171", "15870257", "15897882", "15963507", "16223874", "16247456", "16288207", "16293623", "16377624", "16397295", "16436515", "16478990", "16489034", "16501611", "16632641", "16636671", "16648554", "16651424", "16714289", "16717128", "16731759", "16774943", "16783362", "16790523", "16818505", "16818520", "16891474", "16916644", "16949371", "17045821", "17105820", "17108107", "17121812", "17135248", "17234789", "17245430", "17254968", "17283137", "17297446", "17297454", "17332358", "17339337", "17353187", "17363488", "17371838", "17380123", "17456577", "17486112", "17535811", "17553757", "17591690", "17596534", "17609585", "17616578", "17668048", "17684018", "17698850", "17712528", "17855337", "17891183", "17898864", "17936559", "17967874", "17975552", "17976513", "17977830", "18032786", "18045533", "18056442", "18097051", "18159951", "18216278", "18246126", "18272544", "18289945", "18332866", "18339864", "18345031", "18381438", "18406507", "18431490", "18449195", "18490454", "18560558", "18593910", "18604166", "18614045", "18669630", "18715874", "18718914", "18765533", "18769132", "18778462", "18785202", "18794113", "18812399", "18818083", "18847491", "18985806", "18995830", "19085961", "19203586", "19251701", "19266268", "19303885", "19477925", "19819244", "19828454", "19861417", "19882354", "19907922", "19933256", "19934315", "19962312", "20005840", "20009884", "20024960", "20026654", "20041275", "20080565", "20123963", "20353948", "20372057", "20562916", "20599567", "20610713", "20637859", "20661218", "20663147", "20673369", "20696760", "20711232", "20931131", "20935676", "20962272", "21148320", "21317932", "21383696", "21386980", "21394211", "21423215", "21441950", "21454683", "21465263", "21532626", "21642861", "21660965", "21757780", "21765463", "21765464", "21832239", "22002314", "22011578", "22030623", "22037398", "22055193", "22099307", "22112863", "22179839", "22285752", "22728651", "22797063", "22815859", "22975381", "23148227", "23150668", "23184057", "23678107", "23798621", "23871434", "23890999", "23982736", "24038750", "24657168", "24711418", "24820418", "24958101", "25202122", "8327466", "9254608", "9315650", "9363941", "9571186", "9620776", "9733515", "9739174", "9744860", "9843217", "9925639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "pid", "PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP2CA-controls-state-change-of-TP63", "source": "PPP2CA", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK7-controls-state-change-of-TP53", "source": "CDK7", "cited": 7, "target": "TP53", "pubmed": ["10202145", "10348343", "10581258", "10656682", "10656795", "10706102", "10733583", "10747897", "11007451", "11101524", "11239457", "11300786", "11423984", "11495913", "11526498", "11583595", "11585729", "11707453", "11709713", "11850826", "11875057", "12021785", "12080066", "12091386", "12393879", "12397361", "12397362", "12427754", "12519780", "12676607", "12776195", "12860987", "12959929", "1406679", "14640983", "14665630", "14744935", "14968111", "15064747", "15155458", "15322239", "15471885", "15489221", "15619621", "15659650", "15792956", "15843377", "16083285", "16227590", "16319070", "16436515", "16552184", "16632641", "16651424", "16717128", "16818520", "17105820", "17108107", "17237827", "17591690", "17891183", "17898864", "17906639", "17942552", "17975552", "18490454", "18523266", "18718914", "18765533", "18769132", "18778462", "18812399", "19251701", "19369195", "19413330", "19819244", "19861417", "19882354", "19933256", "20009884", "20024960", "20123963", "20562916", "20663147", "20686112", "20962272", "21317932", "21383696", "21423215", "21455220", "21460857", "21832239", "22011578", "22112863", "22975381", "23312004", "23603988", "23871434", "24194938", "24657168", "8327466", "9254608", "9315650", "9372954", "9467949", "9571186", "9620776", "9739174", "9744860"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK9-controls-state-change-of-TP53", "source": "CDK9", "cited": 19, "target": "TP53", "pubmed": ["10202145", "10348343", "10581258", "10644693", "10656682", "10656795", "10706102", "10733583", "10747897", "11078726", "11101524", "11239457", "11300786", "11423984", "11495913", "11526498", "11583595", "11687964", "11707453", "11709713", "11850826", "11875057", "12021785", "12091386", "12393879", "12397361", "12397362", "12427754", "12519780", "12676607", "12776195", "12860987", "12959929", "1406679", "14640983", "14665630", "14702041", "14744935", "14968111", "15064747", "15155458", "15302935", "15322239", "15471885", "15489221", "15619621", "15792956", "15843377", "16037820", "16083285", "16227590", "16319070", "16436515", "16552184", "16632641", "16651424", "16674116", "16717128", "16784539", "16818520", "17105820", "17108107", "17237827", "17287340", "17591690", "17891183", "17906639", "17942552", "17975552", "18490454", "18521083", "18523266", "18718914", "18765533", "18769132", "18778462", "18847512", "19251701", "19369195", "19413330", "19574224", "19664995", "19819244", "19861417", "19882354", "20009884", "20024960", "20123963", "20363803", "20562916", "20661218", "20663147", "20686112", "20808790", "20815410", "20962272", "21317932", "21383696", "21423215", "21455220", "21460857", "21659604", "21832239", "21983960", "22011578", "22112863", "22496350", "22547687", "22975381", "23201157", "23312004", "23603988", "23871434", "24194938", "24657168", "25159151", "7596441", "8327466", "9254608", "9315650", "9372954", "9467949", "9739174", "9744860"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK2-controls-state-change-of-TP53", "source": "CDK2", "cited": 26, "target": "TP53", "pubmed": ["10581258", "10644693", "10656795", "11078726", "11283254", "11300786", "11687964", "11875057", "12021785", "12397361", "12397362", "12860987", "1406679", "14640983", "14702041", "14744935", "15302935", "15619621", "16037820", "16227590", "16552184", "16674116", "16784539", "17287340", "17906639", "17942552", "18521083", "18769132", "18847512", "19413330", "19574224", "19664995", "20363803", "20562916", "20661218", "20686112", "20808790", "20815410", "21659604", "21983960", "22011578", "22496350", "22547687", "23201157", "23312004", "25159151", "7596441", "8327466", "9254608"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK5-controls-state-change-of-TP53", "source": "CDK5", "cited": 23, "target": "TP53", "pubmed": ["10202145", "10570149", "10581258", "10606744", "10608806", "10611322", "10656682", "10656795", "10673500", "10673501", "10706102", "10710310", "10713094", "10723129", "10733583", "10734067", "10744722", "10958792", "11030628", "11096068", "11101524", "11121242", "11175334", "11244509", "11258706", "11300786", "11313957", "11314044", "11397945", "11423984", "11447225", "11495913", "11526498", "11546806", "11551930", "11583595", "11706017", "11707453", "11709713", "11711532", "11740489", "11780126", "11850826", "11861384", "11865061", "11875057", "11896572", "11896587", "12021785", "12049739", "12071847", "12080066", "12082529", "12091386", "12093737", "12151394", "12324477", "12384533", "12393500", "12397361", "12397362", "12427754", "12511424", "12518062", "12519769", "12519780", "12531896", "12588868", "12606585", "12637545", "12676607", "12702572", "12756247", "12771937", "12776195", "12810724", "12860987", "12861053", "12890678", "12902982", "12907596", "12939400", "12955074", "12959929", "12969974", "1406679", "14517211", "14527925", "14612532", "14665630", "14712210", "14749479", "14871840", "14871926", "14968111", "15048074", "15064747", "15077171", "15078887", "15082766", "15140942", "15155458", "15159397", "15178764", "15181149", "15226429", "15254178", "15258567", "15269203", "15310764", "15322239", "15355354", "15361830", "15381073", "15456784", "15471885", "15489221", "15489892", "15526030", "15533933", "15542844", "15580310", "15619621", "15629715", "15657359", "15665826", "15671037", "15706352", "15750624", "15758953", "15775976", "15782130", "15792956", "15794754", "15843377", "15866171", "15870257", "15897882", "15963507", "16219768", "16223874", "16247456", "16288207", "16293623", "16377624", "16397295", "16436515", "16478990", "16489034", "16501611", "16552184", "16601678", "16632641", "16636671", "16648554", "16651424", "16714289", "16717128", "16731759", "16738336", "16774943", "16783362", "16790523", "16793543", "16818505", "16818520", "16891474", "16916644", "16949371", "17045821", "17105820", "17107963", "17108107", "17121812", "17135248", "17210684", "17234789", "17245430", "17283137", "17297446", "17297454", "17332358", "17339337", "17349958", "17349959", "17353187", "17363488", "17371838", "17380123", "17456577", "17486112", "17535811", "17553757", "17567906", "17591690", "17596534", "17609585", "17616578", "17668048", "17684018", "17698850", "17712528", "17855337", "17891183", "17906639", "17936559", "17942552", "17967874", "17975552", "17976513", "17977830", "18032786", "18045533", "18056442", "18056705", "18097051", "18159951", "18160537", "18216278", "18246126", "18272544", "18289945", "18332866", "18339864", "18345031", "18381438", "18406507", "18431490", "18449195", "18490454", "18536714", "18560558", "18593910", "18604166", "18614045", "18669630", "18715874", "18718914", "18765533", "18769132", "18778462", "18785202", "18794113", "18818083", "18847491", "18985806", "18995830", "19085961", "19203586", "19251701", "19266268", "19303885", "19465479", "19477925", "19819244", "19828042", "19828454", "19857493", "19861417", "19882354", "19907922", "19934315", "19962312", "19965871", "20005840", "20009884", "20018442", "20024960", "20026654", "20041275", "20080565", "20123963", "20171273", "20353948", "20363803", "20372057", "20514025", "20562916", "20599567", "20610713", "20637859", "20661218", "20663147", "20673369", "20696760", "20711232", "20811699", "20931131", "20935676", "20962272", "21057547", "21148320", "21317932", "21383696", "21394211", "21423215", "21441950", "21454683", "21465263", "21532626", "21642861", "21660965", "21757780", "21765463", "21765464", "21832239", "22002314", "22011578", "22030623", "22037398", "22055193", "22099307", "22112863", "22179839", "22285752", "22728651", "22797063", "22815859", "22878263", "22975381", "23148227", "23149944", "23150668", "23184057", "23678107", "23798621", "23871434", "23890999", "23982736", "24038750", "24145406", "24196445", "24379358", "24657168", "24711418", "24820418", "24899407", "24958101", "25202122", "8327466", "9363941", "9372954", "9733515", "9744860", "9843217", "9925639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "IGBP1-controls-state-change-of-TP53", "source": "IGBP1", "cited": 0, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-BAX", "source": "TP53", "cited": 95, "target": "BAX", "pubmed": ["10518217", "11080152", "11278953", "11684014", "11850816", "15598651", "17145718", "17189187"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-CCNB1", "source": "TP53", "cited": 23, "target": "CCNB1", "pubmed": ["15710382"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SIRT1-controls-state-change-of-TP63", "source": "SIRT1", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAG1-controls-state-change-of-TP73", "source": "PRKAG1", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-MDM2", "source": "TP53", "cited": 2784, "target": "MDM2", "pubmed": ["12138177", "17409421", "7651818", "8319905"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP2CB-controls-state-change-of-TP53", "source": "PPP2CB", "cited": 0, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP2CA-controls-state-change-of-TP53", "source": "PPP2CA", "cited": 5, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CHEK2-controls-state-change-of-TP63", "source": "CHEK2", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-CD82", "source": "TP53", "cited": 44, "target": "CD82", "pubmed": ["9736732"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-FDXR", "source": "TP53", "cited": 0, "target": "FDXR", "pubmed": ["12370809", "17409421"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-HTT", "source": "TP53", "cited": 9, "target": "HTT", "pubmed": ["16278683"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-CTSD", "source": "TP53", "cited": 0, "target": "CTSD", "pubmed": ["9619826"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SIRT1-controls-state-change-of-TP53", "source": "SIRT1", "cited": 50, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-CASP10", "source": "TP53", "cited": 0, "target": "CASP10", "pubmed": ["14688482"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-APAF1", "source": "TP53", "cited": 26, "target": "APAF1", "pubmed": ["11559530"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-HGF", "source": "TP53", "cited": 1, "target": "HGF", "pubmed": ["9023107"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRMT5-controls-state-change-of-TP53", "source": "PRMT5", "cited": 0, "target": "TP53", "pubmed": ["19011621"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-APC", "source": "TP53", "cited": 166, "target": "APC", "pubmed": ["11279192"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-BTG2", "source": "TP53", "cited": 14, "target": "BTG2", "pubmed": ["11814693"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRMT1-controls-expression-of-GADD45A", "source": "PRMT1", "cited": 0, "target": "GADD45A", "pubmed": ["15186775", "18250150"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-ASF1A", "source": "TP53", "cited": 1, "target": "ASF1A", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-FAS", "source": "TP53", "cited": 114, "target": "FAS", "pubmed": ["9841917"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HTT-controls-state-change-of-TP73", "source": "HTT", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAG1-controls-state-change-of-TP53", "source": "PRKAG1", "cited": 0, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-TRIAP1", "source": "TP53", "cited": 2, "target": "TRIAP1", "pubmed": ["15735003"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-RFWD2", "source": "TP53", "cited": 11, "target": "RFWD2", "pubmed": ["15103385"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "EP300-controls-state-change-of-TP63", "source": "EP300", "cited": 2, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-COL18A1", "source": "TP53", "cited": 1, "target": "COL18A1", "pubmed": ["15958553"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "EP300-controls-expression-of-GADD45A", "source": "EP300", "cited": 0, "target": "GADD45A", "pubmed": ["15186775", "18250150"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAB2-controls-state-change-of-TP73", "source": "PRKAB2", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "EP300-controls-state-change-of-TP53", "source": "EP300", "cited": 117, "target": "TP53", "pubmed": ["18485870"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid", "PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAB1-controls-state-change-of-TP73", "source": "PRKAB1", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-HIST1H1B", "source": "TP53", "cited": 2, "target": "HIST1H1B", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "EP300-controls-state-change-of-TP73", "source": "EP300", "cited": 1, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-HIST1H1C", "source": "TP53", "cited": 4, "target": "HIST1H1C", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-HIST1H1A", "source": "TP53", "cited": 0, "target": "HIST1H1A", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CARM1-controls-expression-of-GADD45A", "source": "CARM1", "cited": 0, "target": "GADD45A", "pubmed": ["15186775", "18250150"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-HIST1H1D", "source": "TP53", "cited": 0, "target": "HIST1H1D", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-HIST1H1E", "source": "TP53", "cited": 0, "target": "HIST1H1E", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "WRN-controls-state-change-of-TP53", "source": "WRN", "cited": 46, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-MSH2", "source": "TP53", "cited": 109, "target": "MSH2", "pubmed": ["10984493", "11350971"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "KAT2B-controls-state-change-of-TP53", "source": "KAT2B", "cited": 34, "target": "TP53", "pubmed": ["17110336", "9744860", "9891054"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-PYCARD", "source": "TP53", "cited": 13, "target": "PYCARD", "pubmed": ["14730312"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAA2-controls-state-change-of-TP53", "source": "PRKAA2", "cited": 5, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SP1-controls-expression-of-CCNB1", "source": "SP1", "cited": 1, "target": "CCNB1", "pubmed": ["15710382"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAA1-controls-state-change-of-TP53", "source": "PRKAA1", "cited": 1, "target": "TP53", "pubmed": ["10202145", "10570149", "10606744", "10656795", "10673500", "10673501", "10706102", "10710310", "10733583", "10734067", "11030628", "11175334", "11244509", "11258706", "11397945", "11423984", "11447225", "11495913", "11526498", "11551930", "11583595", "11707453", "11850826", "11861384", "11875057", "11883897", "11896572", "11896587", "12091386", "12384533", "12427754", "12531896", "12676607", "12756247", "12810724", "12860987", "12861053", "12902982", "12955074", "12959929", "12969974", "14517211", "14527925", "14612532", "14665630", "15064747", "15140942", "15254178", "15269203", "15322239", "15355354", "15471885", "15489221", "15542844", "15629715", "15671037", "15750624", "15843377", "15963507", "16377624", "16651424", "16731759", "16774943", "16818520", "17105820", "17121812", "17135248", "17245430", "17339337", "17353187", "17363488", "17698850", "17967874", "17977830", "18159951", "18246126", "18593910", "18669630", "18718914", "18778462", "18794113", "19819244", "19861417", "19882354", "20009884", "20024960", "20041275", "20562916", "20673369", "20696760", "20962272", "21148320", "21383696", "21386980", "21454683", "21832239", "22030623", "22112863", "22285752", "22728651", "22797063", "22815859", "23798621", "23871434", "24657168", "8327466"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-GPX1", "source": "TP53", "cited": 10, "target": "GPX1", "pubmed": ["16140933"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-CABIN1", "source": "TP53", "cited": 6, "target": "CABIN1", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MDM2-controls-state-change-of-NEDD8", "source": "MDM2", "cited": 10, "target": "NEDD8", "pubmed": ["15242646"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PLK3-controls-state-change-of-TP53", "source": "PLK3", "cited": 16, "target": "TP53", "pubmed": ["10202145", "10570149", "10656795", "10673500", "10673501", "10706102", "10710310", "10734067", "11030628", "11175334", "11244509", "11258706", "11397945", "11423984", "11447225", "11495913", "11526498", "11551930", "11583595", "11707453", "11850826", "11861384", "11875057", "11896572", "11896587", "12091386", "12384533", "12427754", "12531896", "12676607", "12756247", "12810724", "12860987", "12861053", "12902982", "12955074", "12959929", "12969974", "14517211", "14527925", "14612532", "14665630", "15064747", "15140942", "15254178", "15269203", "15322239", "15471885", "15489221", "15629715", "15671037", "15750624", "15843377", "15963507", "16377624", "16651424", "16731759", "16774943", "16818520", "17105820", "17121812", "17135248", "17245430", "17339337", "17353187", "17363488", "17698850", "17967874", "17977830", "18159951", "18593910", "18669630", "18718914", "18778462", "19819244", "19861417", "19882354", "20009884", "20024960", "20041275", "20562916", "20673369", "20696760", "20962272", "21148320", "21383696", "21454683", "21832239", "22030623", "22112863", "22285752", "22728651", "22797063", "22815859", "23798621", "23871434", "24657168", "8327466"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAB1-controls-state-change-of-TP53", "source": "PRKAB1", "cited": 5, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SUMO1-controls-state-change-of-TP53", "source": "SUMO1", "cited": 39, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAA1-controls-state-change-of-TP63", "source": "PRKAA1", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP1R13L-controls-state-change-of-TP53", "source": "PPP1R13L", "cited": 13, "target": "TP53", "pubmed": ["10581258", "11740489", "11780126", "16377624", "17349958", "17906639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-PLK3", "source": "TP53", "cited": 16, "target": "PLK3", "pubmed": ["16140933"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAA2-controls-state-change-of-TP63", "source": "PRKAA2", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAB2-controls-state-change-of-TP53", "source": "PRKAB2", "cited": 0, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "DAPK1-controls-state-change-of-TP53", "source": "DAPK1", "cited": 6, "target": "TP53", "pubmed": ["10202145", "10570149", "10606744", "10656795", "10673500", "10673501", "10706102", "10710310", "10733583", "10734067", "11030628", "11175334", "11244509", "11258706", "11397945", "11423984", "11447225", "11495913", "11526498", "11551930", "11583595", "11707453", "11850826", "11861384", "11875057", "11883897", "11896572", "11896587", "12091386", "12384533", "12427754", "12531896", "12676607", "12756247", "12810724", "12860987", "12861053", "12902982", "12955074", "12959929", "12969974", "14517211", "14527925", "14612532", "14665630", "15064747", "15140942", "15254178", "15269203", "15322239", "15355354", "15471885", "15489221", "15542844", "15629715", "15671037", "15750624", "15843377", "15963507", "16377624", "16651424", "16731759", "16774943", "16818520", "17105820", "17121812", "17135248", "17245430", "17339337", "17353187", "17363488", "17698850", "17967874", "17977830", "18159951", "18246126", "18593910", "18669630", "18718914", "18778462", "18794113", "19819244", "19861417", "19882354", "20009884", "20024960", "20041275", "20562916", "20673369", "20696760", "20847049", "20851891", "20959462", "20962272", "21148320", "21383696", "21386980", "21454683", "21832239", "22030623", "22112863", "22285752", "22728651", "22797063", "22815859", "23798621", "23871434", "24657168", "8327466"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK1-controls-state-change-of-TP53", "source": "CDK1", "cited": 47, "target": "TP53", "pubmed": ["10644693", "10656795", "11078726", "11300786", "11687964", "11875057", "12021785", "12397361", "12397362", "12860987", "1406679", "14640983", "14702041", "14744935", "15302935", "15619621", "16037820", "16227590", "16552184", "16674116", "16784539", "17287340", "17906639", "17942552", "18521083", "18769132", "18847512", "19413330", "19574224", "19664995", "20363803", "20562916", "20661218", "20686112", "20808790", "20815410", "21659604", "21983960", "22011578", "22496350", "22547687", "23201157", "23312004", "25159151", "7596441", "8327466", "9254608"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "DAPK3-controls-state-change-of-TP53", "source": "DAPK3", "cited": 0, "target": "TP53", "pubmed": ["10202145", "10570149", "10656795", "10673500", "10673501", "10706102", "10710310", "10734067", "11030628", "11175334", "11244509", "11258706", "11397945", "11423984", "11447225", "11495913", "11526498", "11551930", "11583595", "11707453", "11850826", "11861384", "11875057", "11896572", "11896587", "12091386", "12384533", "12427754", "12531896", "12676607", "12756247", "12810724", "12860987", "12861053", "12902982", "12955074", "12959929", "12969974", "14517211", "14527925", "14612532", "14665630", "15064747", "15140942", "15254178", "15269203", "15322239", "15471885", "15489221", "15629715", "15671037", "15750624", "15843377", "15963507", "16377624", "16651424", "16731759", "16774943", "16818520", "17105820", "17121812", "17135248", "17245430", "17339337", "17353187", "17363488", "17698850", "17967874", "17977830", "18159951", "18593910", "18669630", "18718914", "18778462", "19819244", "19861417", "19882354", "20009884", "20024960", "20041275", "20562916", "20673369", "20696760", "20962272", "21148320", "21383696", "21454683", "21832239", "22030623", "22112863", "22285752", "22728651", "22797063", "22815859", "23798621", "23871434", "24657168", "8327466"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAB1-controls-state-change-of-TP63", "source": "PRKAB1", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SUMO1-controls-state-change-of-TP63", "source": "SUMO1", "cited": 1, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAA1-controls-state-change-of-TP73", "source": "PRKAA1", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "E4F1-controls-state-change-of-TP53", "source": "E4F1", "cited": 12, "target": "TP53", "pubmed": ["17110336", "9288740"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAA2-controls-state-change-of-TP73", "source": "PRKAA2", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAB2-controls-state-change-of-TP63", "source": "PRKAB2", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }] ================================================ FILE: documentation/demos/circle-layout/index.html ================================================ Circle demo

Circle demo

================================================ FILE: documentation/demos/circle-layout/style.css ================================================ body { font-family: helvetica; font-size: 14px; } #cy { width: 100%; height: 100%; position: absolute; left: 0; top: 0; z-index: 999; } h1 { opacity: 0.5; font-size: 1em; } ================================================ FILE: documentation/demos/colajs-graph/code.js ================================================ /* global Promise, fetch, window, cytoscape, document, tippy, _ */ Promise.all([ fetch('cy-style.json') .then(function(res) { return res.json(); }), fetch('data.json') .then(function(res) { return res.json(); }) ]) .then(function(dataArray) { var h = function(tag, attrs, children){ var el = document.createElement(tag); Object.keys(attrs).forEach(function(key){ var val = attrs[key]; el.setAttribute(key, val); }); children.forEach(function(child){ el.appendChild(child); }); return el; }; var t = function(text){ var el = document.createTextNode(text); return el; }; var $ = document.querySelector.bind(document); var cy = window.cy = cytoscape({ container: document.getElementById('cy'), style: dataArray[0], elements: dataArray[1], layout: { name: 'random' } }); var params = { name: 'cola', nodeSpacing: 5, edgeLengthVal: 45, animate: true, randomize: false, maxSimulationTime: 1500 }; var layout = makeLayout(); layout.run(); var $btnParam = h('div', { 'class': 'param' }, []); var $config = $('#config'); $config.appendChild( $btnParam ); var sliders = [ { label: 'Edge length', param: 'edgeLengthVal', min: 1, max: 200 }, { label: 'Node spacing', param: 'nodeSpacing', min: 1, max: 50 } ]; var buttons = [ { label: h('span', { 'class': 'fa fa-random' }, []), layoutOpts: { randomize: true, flow: null } }, { label: h('span', { 'class': 'fa fa-long-arrow-down' }, []), layoutOpts: { flow: { axis: 'y', minSeparation: 30 } } } ]; sliders.forEach( makeSlider ); buttons.forEach( makeButton ); function makeLayout( opts ){ params.randomize = false; params.edgeLength = function(e){ return params.edgeLengthVal / e.data('weight'); }; for( var i in opts ){ params[i] = opts[i]; } return cy.layout( params ); } function makeSlider( opts ){ var $input = h('input', { id: 'slider-'+opts.param, type: 'range', min: opts.min, max: opts.max, step: 1, value: params[ opts.param ], 'class': 'slider' }, []); var $param = h('div', { 'class': 'param' }, []); var $label = h('label', { 'class': 'label label-default', for: 'slider-'+opts.param }, [ t(opts.label) ]); $param.appendChild( $label ); $param.appendChild( $input ); $config.appendChild( $param ); var update = _.throttle(function(){ params[ opts.param ] = $input.value; layout.stop(); layout = makeLayout(); layout.run(); }, 1000/30); $input.addEventListener('input', update); $input.addEventListener('change', update); } function makeButton( opts ){ var $button = h('button', { 'class': 'btn btn-default' }, [ opts.label ]); $btnParam.appendChild( $button ); $button.addEventListener('click', function(){ layout.stop(); if( opts.fn ){ opts.fn(); } layout = makeLayout( opts.layoutOpts ); layout.run(); }); } var makeTippy = function(node, html){ return tippy( node.popperRef(), { html: html, trigger: 'manual', arrow: true, placement: 'bottom', hideOnClick: false, interactive: true } ).tooltips[0]; }; var hideTippy = function(node){ var tippy = node.data('tippy'); if(tippy != null){ tippy.hide(); } }; var hideAllTippies = function(){ cy.nodes().forEach(hideTippy); }; cy.on('tap', function(e){ if(e.target === cy){ hideAllTippies(); } }); cy.on('tap', 'edge', function(e){ hideAllTippies(); }); cy.on('zoom pan', function(e){ hideAllTippies(); }); cy.nodes().forEach(function(n){ var g = n.data('name'); var $links = [ { name: 'GeneCard', url: 'http://www.genecards.org/cgi-bin/carddisp.pl?gene=' + g }, { name: 'UniProt search', url: 'http://www.uniprot.org/uniprot/?query='+ g +'&fil=organism%3A%22Homo+sapiens+%28Human%29+%5B9606%5D%22&sort=score' }, { name: 'GeneMANIA', url: 'http://genemania.org/search/human/' + g } ].map(function( link ){ return h('a', { target: '_blank', href: link.url, 'class': 'tip-link' }, [ t(link.name) ]); }); var tippy = makeTippy(n, h('div', {}, $links)); n.data('tippy', tippy); n.on('click', function(e){ tippy.show(); cy.nodes().not(n).forEach(hideTippy); }); }); $('#config-toggle').addEventListener('click', function(){ $('body').classList.toggle('config-closed'); cy.resize(); }); }); ================================================ FILE: documentation/demos/colajs-graph/cy-style.json ================================================ [{ "selector": "core", "style": { "selection-box-color": "#AAD8FF", "selection-box-border-color": "#8BB0D0", "selection-box-opacity": "0.5" } }, { "selector": "node", "style": { "width": "mapData(score, 0, 0.006769776522008331, 20, 60)", "height": "mapData(score, 0, 0.006769776522008331, 20, 60)", "content": "data(name)", "font-size": "12px", "text-valign": "center", "text-halign": "center", "background-color": "#555", "text-outline-color": "#555", "text-outline-width": "2px", "color": "#fff", "overlay-padding": "6px", "z-index": "10" } }, { "selector": "node[?attr]", "style": { "shape": "rectangle", "background-color": "#aaa", "text-outline-color": "#aaa", "width": "16px", "height": "16px", "font-size": "6px", "z-index": "1" } }, { "selector": "node[?query]", "style": { "background-clip": "none", "background-fit": "contain" } }, { "selector": "node:selected", "style": { "border-width": "6px", "border-color": "#AAD8FF", "border-opacity": "0.5", "background-color": "#77828C", "text-outline-color": "#77828C" } }, { "selector": "edge", "style": { "curve-style": "haystack", "haystack-radius": "0.5", "opacity": "0.4", "line-color": "#bbb", "width": "mapData(weight, 0, 1, 1, 8)", "overlay-padding": "3px" } }, { "selector": "node.unhighlighted", "style": { "opacity": "0.2" } }, { "selector": "edge.unhighlighted", "style": { "opacity": "0.05" } }, { "selector": ".highlighted", "style": { "z-index": "999999" } }, { "selector": "node.highlighted", "style": { "border-width": "6px", "border-color": "#AAD8FF", "border-opacity": "0.5", "background-color": "#394855", "text-outline-color": "#394855" } }, { "selector": "edge.filtered", "style": { "opacity": "0" } }, { "selector": "edge[group=\"coexp\"]", "style": { "line-color": "#d0b7d5" } }, { "selector": "edge[group=\"coloc\"]", "style": { "line-color": "#a0b3dc" } }, { "selector": "edge[group=\"gi\"]", "style": { "line-color": "#90e190" } }, { "selector": "edge[group=\"path\"]", "style": { "line-color": "#9bd8de" } }, { "selector": "edge[group=\"pi\"]", "style": { "line-color": "#eaa2a2" } }, { "selector": "edge[group=\"predict\"]", "style": { "line-color": "#f6c384" } }, { "selector": "edge[group=\"spd\"]", "style": { "line-color": "#dad4a2" } }, { "selector": "edge[group=\"spd_attr\"]", "style": { "line-color": "#D0D0D0" } }, { "selector": "edge[group=\"reg\"]", "style": { "line-color": "#D0D0D0" } }, { "selector": "edge[group=\"reg_attr\"]", "style": { "line-color": "#D0D0D0" } }, { "selector": "edge[group=\"user\"]", "style": { "line-color": "#f0ec86" } }] ================================================ FILE: documentation/demos/colajs-graph/data.json ================================================ [{ "data": { "id": "605755", "idInt": 605755, "name": "PCNA", "score": 0.006769776522008331, "query": true, "gene": true }, "position": { "x": 481.0169597039117, "y": 384.8210888234145 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn6944 fn9471 fn10569 fn8023 fn6956 fn6935 fn8147 fn6939 fn6936 fn6629 fn7928 fn6947 fn8612 fn6957 fn8786 fn6246 fn9367 fn6945 fn6946 fn10024 fn10022 fn6811 fn9361 fn6279 fn6278 fn8569 fn7641 fn8568 fn6943" }, { "data": { "id": "611408", "idInt": 611408, "name": "FEN1", "score": 0.006769776522008331, "query": false, "gene": true }, "position": { "x": 531.9740635094307, "y": 464.8210898234145 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn6944 fn9471 fn6284 fn6956 fn6935 fn8147 fn6939 fn6936 fn6949 fn6629 fn7952 fn6680 fn6957 fn8786 fn6676 fn10713 fn7495 fn7500 fn9361 fn6279 fn6278 fn8569 fn7641 fn8568" }, { "data": { "id": "612341", "idInt": 612341, "name": "RAD9A", "score": 0.0028974131563619387, "query": false, "gene": true }, "position": { "x": 455.8128125018193, "y": 555.4591537139819 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn6935 fn6219 fn6680 fn6676 fn10713 fn7552 fn7495" }, { "data": { "id": "608473", "idInt": 608473, "name": "RAD9B", "score": 0.0026928704785200708, "query": false, "gene": true }, "position": { "x": 363.1144068403203, "y": 515.7352912086707 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn6935" }, { "data": { "id": "611560", "idInt": 611560, "name": "APEX2", "score": 0.0026215687185565106, "query": false, "gene": true }, "position": { "x": 689.1927803956215, "y": 634.0100611862405 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "600585", "idInt": 600585, "name": "POLD3", "score": 0.0024938385347587078, "query": false, "gene": true }, "position": { "x": 118.3562364528364, "y": 384.3877516879044 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn6944 fn9471 fn10569 fn8823 fn9180 fn6956 fn6935 fn8147 fn6939 fn6936 fn6648 fn6947 fn6957 fn8786 fn6246 fn9367 fn9368 fn6945 fn6946 fn7921 fn6811 fn8380 fn6279 fn6278 fn8569 fn7641 fn8568 fn6943" }, { "data": { "id": "599889", "idInt": 599889, "name": "RAD51", "score": 0.002453016748286352, "query": false, "gene": true }, "position": { "x": 759.7017646483837, "y": 338.3207127700095 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn6931 fn9632 fn7950 fn9188 fn6956 fn6935 fn7338 fn6936 fn6949 fn6629 fn6957 fn6246 fn7453 fn7451 fn10024 fn7456 fn7454 fn7469 fn7467 fn10022 fn7552 fn7495 fn7463 fn7464 fn9361" }, { "data": { "id": "602299", "idInt": 602299, "name": "LIG1", "score": 0.0023873089881679688, "query": false, "gene": true }, "position": { "x": 264.10227893804523, "y": 631.7198779917306 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn6944 fn9471 fn6956 fn6935 fn8147 fn6939 fn6936 fn6949 fn6957 fn8786 fn6945 fn6946 fn6279 fn6278 fn8569 fn7641 fn8568 fn6943" }, { "data": { "id": "603070", "idInt": 603070, "name": "RFC5", "score": 0.0022841757103715943, "query": false, "gene": true }, "position": { "x": 282.21587939790476, "y": 109.57476207336902 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn9471 fn6956 fn6935 fn8147 fn6939 fn6936 fn6957 fn8786 fn6945 fn6946 fn6811 fn6279 fn6278 fn8569 fn7641 fn8568 fn6943" }, { "data": { "id": "610236", "idInt": 610236, "name": "RFC4", "score": 0.002235382441847178, "query": false, "gene": true }, "position": { "x": 205.41323994659498, "y": 122.2715768040765 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn9471 fn6956 fn6935 fn8147 fn6939 fn6936 fn6957 fn8786 fn6945 fn6946 fn6811 fn6279 fn6278 fn8569 fn7641 fn8568 fn6943" }, { "data": { "id": "605365", "idInt": 605365, "name": "GADD45G", "score": 0.0021779529408011977, "query": false, "gene": true }, "position": { "x": 335.2681018951896, "y": 398.62289259289554 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "599863", "idInt": 599863, "name": "RFC2", "score": 0.001982524582665901, "query": false, "gene": true }, "position": { "x": 422.6986944382589, "y": 59.422072599905285 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn9471 fn6956 fn6935 fn8147 fn6939 fn6936 fn6957 fn8786 fn6945 fn6946 fn6811 fn6279 fn6278 fn8569 fn7641 fn8568 fn6943" }, { "data": { "id": "603700", "idInt": 603700, "name": "MSH6", "score": 0.001946986634883574, "query": false, "gene": true }, "position": { "x": 524.5786092800173, "y": 313.6721385565813 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn6931 fn9632 fn7950 fn9188 fn6956 fn7338 fn6629 fn6947 fn8612 fn6246 fn7453 fn7451 fn7456 fn7454 fn7469 fn7467 fn10022 fn7495 fn7500 fn7463 fn7464 fn9361" }, { "data": { "id": "605846", "idInt": 605846, "name": "RFC3", "score": 0.0018726190118726893, "query": false, "gene": true }, "position": { "x": 192.72587571240607, "y": 30.601237157877808 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn6931 fn9632 fn7950 fn9188 fn9471 fn10569 fn6956 fn6935 fn8147 fn6939 fn7338 fn6936 fn6957 fn8786 fn7453 fn7451 fn6945 fn6946 fn7456 fn7454 fn7469 fn7467 fn6811 fn7463 fn7464 fn6279 fn6278 fn8569 fn7641 fn8568 fn6943" }, { "data": { "id": "600535", "idInt": 600535, "name": "UNG", "score": 0.0018134484466597045, "query": false, "gene": true }, "position": { "x": 497.37919617137817, "y": 693.0523864227225 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn8023 fn7928" }, { "data": { "id": "599724", "idInt": 599724, "name": "RFC1", "score": 0.001740600741472309, "query": false, "gene": true }, "position": { "x": 381.8836285591501, "y": 194.7788667091606 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn9471 fn6956 fn6935 fn8147 fn6939 fn6936 fn6957 fn8786 fn6945 fn6946 fn6811 fn6279 fn6278 fn8569 fn7641 fn8568 fn6943" }, { "data": { "id": "602279", "idInt": 602279, "name": "BABAM1", "score": 0.0015192107762236895, "query": false, "gene": true }, "position": { "x": 633.9447667877506, "y": 217.35373723375224 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn6949 fn10024 fn10022 fn7552 fn7495" }, { "data": { "id": "600046", "idInt": 600046, "name": "POLD1", "score": 0.0014783091464922182, "query": false, "gene": true }, "position": { "x": 91.6808784584024, "y": 252.85442763278502 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn6944 fn9471 fn10569 fn8823 fn9180 fn6956 fn6935 fn8147 fn6939 fn6936 fn6648 fn6680 fn6957 fn8786 fn6246 fn9367 fn9368 fn6676 fn10713 fn6945 fn6946 fn7921 fn6811 fn8380 fn7495 fn7500 fn6279 fn6278 fn8569 fn7641 fn8568 fn6943" }, { "data": { "id": "609734", "idInt": 609734, "name": "POLR3K", "score": 0.001465090467084318, "query": false, "gene": true }, "position": { "x": 905.3802465599952, "y": 493.3679393218726 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn7921" }, { "data": { "id": "612326", "idInt": 612326, "name": "PPP1CA", "score": 0.001444414413500572, "query": false, "gene": true }, "position": { "x": 621.2170159338846, "y": 407.11437177468383 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "606768", "idInt": 606768, "name": "DNA2", "score": 0.0014194334373996975, "query": false, "gene": true }, "position": { "x": 912.8425638686975, "y": 11.53856391494864 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn6931 fn9632 fn7950 fn9188 fn6944 fn9471 fn6284 fn9180 fn6956 fn6935 fn6219 fn8147 fn6939 fn7338 fn6936 fn6949 fn7952 fn6957 fn8786 fn6676 fn10713 fn7453 fn7451 fn10024 fn7456 fn7454 fn7469 fn7467 fn10022 fn7463 fn7464 fn6279 fn6278 fn8569 fn7641 fn8568" }, { "data": { "source": "611408", "target": "605755", "weight": 0.0055478187, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 2, "id": "e0" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "600585", "weight": 0.012590342, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 3, "id": "e1" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.0089772185, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 4, "id": "e2" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.0055292076, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 5, "id": "e3" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.005184464, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 6, "id": "e4" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "612341", "weight": 0.008174375, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 7, "id": "e5" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.0073378147, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 8, "id": "e6" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.010978148, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 9, "id": "e7" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "611408", "weight": 0.009477927, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 10, "id": "e8" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.009086159, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 11, "id": "e9" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "600585", "weight": 0.008661902, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 12, "id": "e10" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "602299", "weight": 0.0050190594, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 13, "id": "e11" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "603700", "weight": 0.00814378, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 14, "id": "e12" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "600585", "weight": 0.0065156803, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 15, "id": "e13" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "603700", "weight": 0.0066020666, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 16, "id": "e14" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "600535", "weight": 0.0030451824, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 17, "id": "e15" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "611408", "weight": 0.0069189603, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 18, "id": "e16" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "605755", "weight": 0.007888168, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 19, "id": "e17" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "611408", "weight": 0.0066891047, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 20, "id": "e18" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "610236", "weight": 0.006453997, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 21, "id": "e19" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "605846", "weight": 0.013474658, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 22, "id": "e20" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "611408", "weight": 0.010655156, "group": "coexp", "networkId": 1228, "networkGroupId": 18, "intn": true, "rIntnId": 23, "id": "e21" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.02157121, "group": "coexp", "networkId": 1228, "networkGroupId": 18, "intn": true, "rIntnId": 24, "id": "e22" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605846", "weight": 0.01614795, "group": "coexp", "networkId": 1228, "networkGroupId": 18, "intn": true, "rIntnId": 25, "id": "e23" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.011872302, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 26, "id": "e24" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "611408", "weight": 0.013897292, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 27, "id": "e25" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.014308085, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 28, "id": "e26" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.01631634, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 29, "id": "e27" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.014722961, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 30, "id": "e28" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.01798934, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 31, "id": "e29" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "611408", "weight": 0.014232373, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 32, "id": "e30" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.01543053, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 33, "id": "e31" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.015419611, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 34, "id": "e32" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "599863", "weight": 0.018117689, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 35, "id": "e33" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "612341", "weight": 0.0197734, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 36, "id": "e34" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.007181677, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 37, "id": "e35" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.012193555, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 38, "id": "e36" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "611408", "weight": 0.009036004, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 39, "id": "e37" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.008944319, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 40, "id": "e38" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "600585", "weight": 0.0140501885, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 41, "id": "e39" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.014778332, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 42, "id": "e40" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "599889", "weight": 0.023106916, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 43, "id": "e41" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "602299", "weight": 0.013864683, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 44, "id": "e42" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.009235155, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 45, "id": "e43" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.0070685484, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 46, "id": "e44" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "600585", "weight": 0.011782279, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 47, "id": "e45" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "602299", "weight": 0.009479035, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 48, "id": "e46" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.013767981, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 49, "id": "e47" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.02076845, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 50, "id": "e48" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.014548145, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 51, "id": "e49" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "602299", "weight": 0.018761018, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 52, "id": "e50" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.009776375, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 53, "id": "e51" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "611408", "weight": 0.006622242, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 54, "id": "e52" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "602299", "weight": 0.01073685, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 55, "id": "e53" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.013705722, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 56, "id": "e54" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.007519171, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 57, "id": "e55" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "611408", "weight": 0.00589999, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 58, "id": "e56" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "600585", "weight": 0.011810116, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 59, "id": "e57" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "602299", "weight": 0.008160093, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 60, "id": "e58" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "610236", "weight": 0.007695786, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 61, "id": "e59" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "603700", "weight": 0.01120258, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 62, "id": "e60" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "611560", "weight": 0.012538481, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 63, "id": "e61" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.006985158, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 64, "id": "e62" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.0065989364, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 65, "id": "e63" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.0046327286, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 66, "id": "e64" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.0054441774, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 67, "id": "e65" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "600585", "weight": 0.010655146, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 68, "id": "e66" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "599889", "weight": 0.0053057605, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 69, "id": "e67" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.005323636, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 70, "id": "e68" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.008839407, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 71, "id": "e69" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "611408", "weight": 0.010832426, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 72, "id": "e70" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "599889", "weight": 0.010297667, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 73, "id": "e71" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.0069649774, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 74, "id": "e72" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "599889", "weight": 0.0030997663, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 75, "id": "e73" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "610236", "weight": 0.0021416117, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 76, "id": "e74" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.011675352, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 77, "id": "e75" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "602299", "weight": 0.007548246, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 78, "id": "e76" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "605755", "weight": 0.011033994, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 79, "id": "e77" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "602279", "weight": 0.0054105376, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 80, "id": "e78" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "605846", "weight": 0.015214647, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 81, "id": "e79" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "600535", "weight": 0.007762454, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 82, "id": "e80" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.0071786125, "group": "coexp", "networkId": 1147, "networkGroupId": 18, "intn": true, "rIntnId": 83, "id": "e81" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.00930929, "group": "coexp", "networkId": 1147, "networkGroupId": 18, "intn": true, "rIntnId": 84, "id": "e82" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.0065878476, "group": "coexp", "networkId": 1147, "networkGroupId": 18, "intn": true, "rIntnId": 85, "id": "e83" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "610236", "weight": 0.008354699, "group": "coexp", "networkId": 1147, "networkGroupId": 18, "intn": true, "rIntnId": 86, "id": "e84" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "602279", "weight": 0.0027737948, "group": "coexp", "networkId": 1147, "networkGroupId": 18, "intn": true, "rIntnId": 87, "id": "e85" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "605755", "weight": 0.00786129, "group": "coexp", "networkId": 1219, "networkGroupId": 18, "intn": true, "rIntnId": 88, "id": "e86" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "602299", "weight": 0.0057260455, "group": "coexp", "networkId": 1219, "networkGroupId": 18, "intn": true, "rIntnId": 89, "id": "e87" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "610236", "weight": 0.008558536, "group": "coexp", "networkId": 1219, "networkGroupId": 18, "intn": true, "rIntnId": 90, "id": "e88" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.0083115185, "group": "coexp", "networkId": 1219, "networkGroupId": 18, "intn": true, "rIntnId": 91, "id": "e89" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.005608535, "group": "coexp", "networkId": 1219, "networkGroupId": 18, "intn": true, "rIntnId": 92, "id": "e90" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603700", "weight": 0.009317383, "group": "coexp", "networkId": 1219, "networkGroupId": 18, "intn": true, "rIntnId": 93, "id": "e91" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "610236", "weight": 0.0067964033, "group": "coexp", "networkId": 1219, "networkGroupId": 18, "intn": true, "rIntnId": 94, "id": "e92" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "605846", "weight": 0.008256701, "group": "coexp", "networkId": 1219, "networkGroupId": 18, "intn": true, "rIntnId": 95, "id": "e93" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "611408", "weight": 0.0050337426, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 96, "id": "e94" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.013028561, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 97, "id": "e95" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "599889", "weight": 0.0139607005, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 98, "id": "e96" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "611408", "weight": 0.00802425, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 99, "id": "e97" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.006611009, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 100, "id": "e98" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "611408", "weight": 0.004236914, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 101, "id": "e99" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.011486805, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 102, "id": "e100" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "611408", "weight": 0.0073252246, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 103, "id": "e101" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "611408", "weight": 0.0031254988, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 104, "id": "e102" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "612341", "weight": 0.0068017747, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 105, "id": "e103" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605846", "weight": 0.0078691505, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 106, "id": "e104" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "612341", "weight": 0.0029230819, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 107, "id": "e105" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "611408", "weight": 0.018245377, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 108, "id": "e106" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "600585", "weight": 0.013878305, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 109, "id": "e107" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "599889", "weight": 0.014034339, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 110, "id": "e108" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.011003433, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 111, "id": "e109" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "600585", "weight": 0.011568223, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 112, "id": "e110" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.008862467, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 113, "id": "e111" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "611408", "weight": 0.02715506, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 114, "id": "e112" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "599889", "weight": 0.02020582, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 115, "id": "e113" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.01389255, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 116, "id": "e114" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.011845588, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 117, "id": "e115" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.008885449, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 118, "id": "e116" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603700", "weight": 0.016939284, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 119, "id": "e117" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "599863", "weight": 0.0065266574, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 120, "id": "e118" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "603700", "weight": 0.009681167, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 121, "id": "e119" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.010009936, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 122, "id": "e120" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602279", "target": "611560", "weight": 0.0072178333, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 123, "id": "e121" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "612341", "weight": 0.0019152164, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 124, "id": "e122" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "602299", "weight": 0.0019770851, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 125, "id": "e123" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "611408", "weight": 0.0074162656, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 126, "id": "e124" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "602279", "weight": 0.008383535, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 127, "id": "e125" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "600585", "weight": 0.012502968, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 128, "id": "e126" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.006425211, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 129, "id": "e127" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.009075253, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 130, "id": "e128" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "611408", "weight": 0.013036429, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 131, "id": "e129" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.005474452, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 132, "id": "e130" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "611408", "weight": 0.0068840934, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 133, "id": "e131" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.0038199152, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 134, "id": "e132" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.0048849517, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 135, "id": "e133" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "599889", "weight": 0.008408555, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 136, "id": "e134" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.003905569, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 137, "id": "e135" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.005101607, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 138, "id": "e136" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "611408", "weight": 0.00612881, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 139, "id": "e137" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.0054722885, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 140, "id": "e138" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.0037771827, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 141, "id": "e139" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "611408", "weight": 0.006252843, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 142, "id": "e140" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "600585", "weight": 0.008764523, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 143, "id": "e141" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "602299", "weight": 0.0077429856, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 144, "id": "e142" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603700", "weight": 0.010403784, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 145, "id": "e143" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "612341", "weight": 0.0098648025, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 146, "id": "e144" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "602299", "weight": 0.012923219, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 147, "id": "e145" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "603700", "weight": 0.014601159, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 148, "id": "e146" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605846", "weight": 0.0061014947, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 149, "id": "e147" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "605755", "weight": 0.0063784183, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 150, "id": "e148" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "611408", "weight": 0.007974974, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 151, "id": "e149" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "600585", "weight": 0.011962807, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 152, "id": "e150" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "610236", "weight": 0.0045933793, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 153, "id": "e151" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.011469932, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 154, "id": "e152" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.0065593245, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 155, "id": "e153" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "602299", "weight": 0.008945865, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 156, "id": "e154" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.0123492405, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 157, "id": "e155" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "611560", "weight": 0.011177457, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 158, "id": "e156" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.009827839, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 159, "id": "e157" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "599889", "weight": 0.014151318, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 160, "id": "e158" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "602299", "weight": 0.010976079, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 161, "id": "e159" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "611560", "weight": 0.0070169745, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 162, "id": "e160" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "599863", "weight": 0.013198467, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 163, "id": "e161" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "599889", "weight": 0.006426068, "group": "coexp", "networkId": 1058, "networkGroupId": 18, "intn": true, "rIntnId": 164, "id": "e162" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.010584534, "group": "coexp", "networkId": 1058, "networkGroupId": 18, "intn": true, "rIntnId": 165, "id": "e163" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.01746872, "group": "coexp", "networkId": 1058, "networkGroupId": 18, "intn": true, "rIntnId": 166, "id": "e164" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "599889", "weight": 0.0071076, "group": "coexp", "networkId": 1058, "networkGroupId": 18, "intn": true, "rIntnId": 167, "id": "e165" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "610236", "weight": 0.015010853, "group": "coexp", "networkId": 1058, "networkGroupId": 18, "intn": true, "rIntnId": 168, "id": "e166" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "600535", "weight": 0.0084955385, "group": "coexp", "networkId": 1058, "networkGroupId": 18, "intn": true, "rIntnId": 169, "id": "e167" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.005950518, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 170, "id": "e168" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "599889", "weight": 0.010287272, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 171, "id": "e169" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.0073932544, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 172, "id": "e170" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.0036719772, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 173, "id": "e171" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.003859972, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 174, "id": "e172" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "599889", "weight": 0.0070424364, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 175, "id": "e173" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "602299", "weight": 0.0033553005, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 176, "id": "e174" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.00446657, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 177, "id": "e175" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.006380608, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 178, "id": "e176" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.010436626, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 179, "id": "e177" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "603070", "weight": 0.010232103, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 180, "id": "e178" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "602299", "weight": 0.010975428, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 181, "id": "e179" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.007576592, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 182, "id": "e180" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.010113988, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 183, "id": "e181" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "611408", "weight": 0.009832912, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 184, "id": "e182" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "602299", "weight": 0.008797756, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 185, "id": "e183" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "610236", "weight": 0.0058537833, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 186, "id": "e184" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "603700", "weight": 0.01664277, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 187, "id": "e185" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602279", "target": "599863", "weight": 0.0048371204, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 188, "id": "e186" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "602299", "weight": 0.009031323, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 189, "id": "e187" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "610236", "weight": 0.0057287826, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 190, "id": "e188" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.0046684104, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 191, "id": "e189" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "611408", "weight": 0.010843052, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 192, "id": "e190" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.007012607, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 193, "id": "e191" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "612341", "weight": 0.021436332, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 194, "id": "e192" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.008355799, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 195, "id": "e193" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "611408", "weight": 0.008533838, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 196, "id": "e194" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.005761585, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 197, "id": "e195" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.005706919, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 198, "id": "e196" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.009086173, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 199, "id": "e197" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.010499329, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 200, "id": "e198" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "611408", "weight": 0.011064748, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 201, "id": "e199" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.017625364, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 202, "id": "e200" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.010782314, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 203, "id": "e201" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.009000187, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 204, "id": "e202" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "611408", "weight": 0.009551385, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 205, "id": "e203" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "610236", "weight": 0.011809003, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 206, "id": "e204" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.010237067, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 207, "id": "e205" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "611408", "weight": 0.011980566, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 208, "id": "e206" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.019081693, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 209, "id": "e207" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.013073517, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 210, "id": "e208" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "599889", "weight": 0.0078543145, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 211, "id": "e209" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "610236", "weight": 0.009314968, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 212, "id": "e210" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "605755", "weight": 0.0062426035, "group": "coexp", "networkId": 1211, "networkGroupId": 18, "intn": true, "rIntnId": 213, "id": "e211" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.006246549, "group": "coexp", "networkId": 1211, "networkGroupId": 18, "intn": true, "rIntnId": 214, "id": "e212" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "602299", "weight": 0.013894426, "group": "coexp", "networkId": 1211, "networkGroupId": 18, "intn": true, "rIntnId": 215, "id": "e213" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "610236", "weight": 0.017061198, "group": "coexp", "networkId": 1211, "networkGroupId": 18, "intn": true, "rIntnId": 216, "id": "e214" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.0032552993, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 217, "id": "e215" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.0023748495, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 218, "id": "e216" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.003535996, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 219, "id": "e217" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "611408", "weight": 0.0075512826, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 220, "id": "e218" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.005550344, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 221, "id": "e219" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.0035219863, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 222, "id": "e220" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "610236", "weight": 0.0037936512, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 223, "id": "e221" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "602299", "weight": 0.021771252, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 224, "id": "e222" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "611408", "weight": 0.008810265, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 225, "id": "e223" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "610236", "weight": 0.006708223, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 226, "id": "e224" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605846", "weight": 0.015404511, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 227, "id": "e225" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.015407894, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 228, "id": "e226" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.019584121, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 229, "id": "e227" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "611408", "weight": 0.01921773, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 230, "id": "e228" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.020896556, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 231, "id": "e229" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "611408", "weight": 0.020604162, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 232, "id": "e230" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.020293837, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 233, "id": "e231" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "611408", "weight": 0.018530738, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 234, "id": "e232" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "602299", "weight": 0.025947532, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 235, "id": "e233" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "603070", "weight": 0.012148044, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 236, "id": "e234" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "599863", "weight": 0.012389051, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 237, "id": "e235" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "599889", "weight": 0.013262892, "group": "coexp", "networkId": 1040, "networkGroupId": 18, "intn": true, "rIntnId": 238, "id": "e236" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.0032305722, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 239, "id": "e237" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.008934008, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 240, "id": "e238" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "611408", "weight": 0.0047838143, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 241, "id": "e239" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "605755", "weight": 0.009817743, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 242, "id": "e240" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.0035941477, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 243, "id": "e241" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.0022027155, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 244, "id": "e242" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "600585", "weight": 0.006635881, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 245, "id": "e243" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.007493106, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 246, "id": "e244" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "611408", "weight": 0.0045459457, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 247, "id": "e245" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "610236", "weight": 0.004649519, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 248, "id": "e246" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.0040052356, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 249, "id": "e247" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.0067177215, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 250, "id": "e248" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "611408", "weight": 0.0035133353, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 251, "id": "e249" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "600585", "weight": 0.013092303, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 252, "id": "e250" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "610236", "weight": 0.00450646, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 253, "id": "e251" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "605755", "weight": 0.0056021707, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 254, "id": "e252" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "605755", "weight": 0.01022965, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 255, "id": "e253" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.0019825348, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 256, "id": "e254" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.0025504285, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 257, "id": "e255" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611560", "weight": 0.004504783, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 258, "id": "e256" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "599889", "weight": 0.005680255, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 259, "id": "e257" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.0038152228, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 260, "id": "e258" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.010831964, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 261, "id": "e259" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.0024976064, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 262, "id": "e260" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "611408", "weight": 0.0033427116, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 263, "id": "e261" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.0012776565, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 264, "id": "e262" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603700", "weight": 0.0069493027, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 265, "id": "e263" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.008979472, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 266, "id": "e264" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "610236", "weight": 0.0049493727, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 267, "id": "e265" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.0066200355, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 268, "id": "e266" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.0033406042, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 269, "id": "e267" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.00455017, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 270, "id": "e268" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.00904533, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 271, "id": "e269" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "610236", "weight": 0.0046978444, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 272, "id": "e270" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "605755", "weight": 0.0020831665, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 273, "id": "e271" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "603700", "weight": 0.0070924386, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 274, "id": "e272" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "605846", "weight": 0.0013620426, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 275, "id": "e273" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "599724", "weight": 0.0042498824, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 276, "id": "e274" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "610236", "weight": 0.0031287828, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 277, "id": "e275" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.055505108, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 278, "id": "e276" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.036435686, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 279, "id": "e277" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "611408", "weight": 0.07736873, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 280, "id": "e278" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "605755", "weight": 0.07026827, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 281, "id": "e279" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "611408", "weight": 0.15814601, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 282, "id": "e280" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "600585", "weight": 0.10381311, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 283, "id": "e281" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.034838397, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 284, "id": "e282" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "612341", "weight": 0.06087656, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 285, "id": "e283" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "608473", "weight": 0.087010026, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 286, "id": "e284" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "600585", "weight": 0.048561342, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 287, "id": "e285" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.034838397, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 288, "id": "e286" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "612341", "weight": 0.06087656, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 289, "id": "e287" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "608473", "weight": 0.087010026, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 290, "id": "e288" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "600585", "weight": 0.048561342, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 291, "id": "e289" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.046432484, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 292, "id": "e290" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605365", "target": "605755", "weight": 0.06039332, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 293, "id": "e291" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.034838397, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 294, "id": "e292" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "612341", "weight": 0.06087656, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 295, "id": "e293" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "608473", "weight": 0.087010026, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 296, "id": "e294" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "600585", "weight": 0.048561342, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 297, "id": "e295" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.046432484, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 298, "id": "e296" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.046432484, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 299, "id": "e297" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.034838397, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 300, "id": "e298" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "612341", "weight": 0.06087656, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 301, "id": "e299" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "608473", "weight": 0.087010026, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 302, "id": "e300" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "600585", "weight": 0.048561342, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 303, "id": "e301" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.046432484, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 304, "id": "e302" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.046432484, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 305, "id": "e303" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "599863", "weight": 0.046432484, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 306, "id": "e304" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.04283297, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 307, "id": "e305" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "600585", "weight": 0.059705, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 308, "id": "e306" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.057087615, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 309, "id": "e307" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.057087615, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 310, "id": "e308" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.057087615, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 311, "id": "e309" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.057087615, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 312, "id": "e310" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.0346906, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 313, "id": "e311" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "611408", "weight": 0.07366316, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 314, "id": "e312" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "600585", "weight": 0.048355326, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 315, "id": "e313" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "602299", "weight": 0.09884098, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 316, "id": "e314" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "603070", "weight": 0.0462355, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 317, "id": "e315" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "610236", "weight": 0.0462355, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 318, "id": "e316" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "599863", "weight": 0.0462355, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 319, "id": "e317" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605846", "weight": 0.0462355, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 320, "id": "e318" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "599724", "weight": 0.05684543, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 321, "id": "e319" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "605755", "weight": 0.06142156, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 322, "id": "e320" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "600585", "weight": 0.08561569, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 323, "id": "e321" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "600046", "weight": 0.08151513, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 324, "id": "e322" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.08421734, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 325, "id": "e323" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.033336625, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 326, "id": "e324" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "611408", "weight": 0.10495135, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 327, "id": "e325" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "600585", "weight": 0.10282618, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 328, "id": "e326" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.06335889, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 329, "id": "e327" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "600585", "weight": 0.078957625, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 330, "id": "e328" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.06335889, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 331, "id": "e329" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "600585", "weight": 0.078957625, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 332, "id": "e330" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.06335889, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 333, "id": "e331" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "600585", "weight": 0.078957625, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 334, "id": "e332" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.06335889, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 335, "id": "e333" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "600585", "weight": 0.078957625, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 336, "id": "e334" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.043610524, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 337, "id": "e335" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "600585", "weight": 0.054347284, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 338, "id": "e336" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.1032913, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 339, "id": "e337" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.1032913, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 340, "id": "e338" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.1032913, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 341, "id": "e339" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.1032913, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 342, "id": "e340" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.04544427, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 343, "id": "e341" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "600585", "weight": 0.056632493, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 344, "id": "e342" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "602299", "weight": 0.14017196, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 345, "id": "e343" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "605755", "weight": 0.0608564, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 346, "id": "e344" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "600585", "weight": 0.07583903, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 347, "id": "e345" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "600046", "weight": 0.103383265, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 348, "id": "e346" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "605755", "weight": 0.3670512, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 349, "id": "e347" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "612341", "weight": 0.024917956, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 350, "id": "e348" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "612341", "weight": 0.025497014, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 351, "id": "e349" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.029834377, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 352, "id": "e350" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "612341", "weight": 0.024917956, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 353, "id": "e351" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.029156813, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 354, "id": "e352" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.029834377, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 355, "id": "e353" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "612341", "weight": 0.024917956, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 356, "id": "e354" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.029156813, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 357, "id": "e355" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.029834377, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 358, "id": "e356" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "599863", "weight": 0.029156813, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 359, "id": "e357" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.32122406, "group": "pi", "networkId": 903, "networkGroupId": 22, "intn": true, "rIntnId": 360, "id": "e358" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612341", "target": "605755", "weight": 0.106598906, "group": "pi", "networkId": 903, "networkGroupId": 22, "intn": true, "rIntnId": 361, "id": "e359" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.32122406, "group": "pi", "networkId": 903, "networkGroupId": 22, "intn": true, "rIntnId": 362, "id": "e360" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.16342038, "group": "pi", "networkId": 903, "networkGroupId": 22, "intn": true, "rIntnId": 363, "id": "e361" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605365", "target": "605755", "weight": 0.11347918, "group": "pi", "networkId": 903, "networkGroupId": 22, "intn": true, "rIntnId": 364, "id": "e362" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.10376385, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 365, "id": "e363" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.16238527, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 366, "id": "e364" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.16630344, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 367, "id": "e365" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.15056042, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 368, "id": "e366" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.17790036, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 369, "id": "e367" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.15458822, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 370, "id": "e368" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.13995422, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 371, "id": "e369" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "599863", "weight": 0.14333117, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 372, "id": "e370" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.10097788, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 373, "id": "e371" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.15802538, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 374, "id": "e372" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.143066, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 375, "id": "e373" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.14651802, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 376, "id": "e374" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.13619658, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 377, "id": "e375" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602279", "target": "605755", "weight": 0.4812469, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 378, "id": "e376" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.011314526, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 379, "id": "e377" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612341", "target": "605755", "weight": 0.008967896, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 380, "id": "e378" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612341", "target": "611408", "weight": 0.0539502, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 381, "id": "e379" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611560", "target": "605755", "weight": 0.1572818, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 382, "id": "e380" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.013491094, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 383, "id": "e381" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.063570626, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 384, "id": "e382" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.019299628, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 385, "id": "e383" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.0113324495, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 386, "id": "e384" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.11628905, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 387, "id": "e385" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605365", "target": "605755", "weight": 0.01062005, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 388, "id": "e386" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.010721097, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 389, "id": "e387" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.11001559, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 390, "id": "e388" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.0645995, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 391, "id": "e389" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.007422314, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 392, "id": "e390" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "612341", "weight": 0.03539126, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 393, "id": "e391" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "599889", "weight": 0.018539928, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 394, "id": "e392" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.020811629, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 395, "id": "e393" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.12539954, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 396, "id": "e394" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.008685797, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 397, "id": "e395" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.08913017, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 398, "id": "e396" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.052335896, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 399, "id": "e397" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.049512524, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 400, "id": "e398" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603700", "weight": 0.034277976, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 401, "id": "e399" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.096112944, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 402, "id": "e400" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.009051671, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 403, "id": "e401" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "600585", "weight": 0.0649295, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 404, "id": "e402" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.15316014, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 405, "id": "e403" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611560", "target": "605755", "weight": 0.22489744, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 406, "id": "e404" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.22489744, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 407, "id": "e405" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.22489744, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 408, "id": "e406" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.17140284, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 409, "id": "e407" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605365", "target": "605755", "weight": 0.015279513, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 410, "id": "e408" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.17140284, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 411, "id": "e409" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.06023315, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 412, "id": "e410" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.17140284, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 413, "id": "e411" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.07430747, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 414, "id": "e412" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.22489744, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 415, "id": "e413" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.054434802, "group": "pi", "networkId": 906, "networkGroupId": 22, "intn": true, "rIntnId": 416, "id": "e414" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.14387716, "group": "pi", "networkId": 906, "networkGroupId": 22, "intn": true, "rIntnId": 417, "id": "e415" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.2326112, "group": "pi", "networkId": 906, "networkGroupId": 22, "intn": true, "rIntnId": 418, "id": "e416" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.2580584, "group": "pi", "networkId": 906, "networkGroupId": 22, "intn": true, "rIntnId": 419, "id": "e417" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.32172158, "group": "pi", "networkId": 906, "networkGroupId": 22, "intn": true, "rIntnId": 420, "id": "e418" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.40359056, "group": "pi", "networkId": 906, "networkGroupId": 22, "intn": true, "rIntnId": 421, "id": "e419" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.036951467, "group": "pi", "networkId": 906, "networkGroupId": 22, "intn": true, "rIntnId": 422, "id": "e420" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.01199196, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 423, "id": "e421" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612341", "target": "605755", "weight": 0.016832655, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 424, "id": "e422" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611560", "target": "605755", "weight": 0.024701266, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 425, "id": "e423" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.19306615, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 426, "id": "e424" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "611408", "weight": 0.018942047, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 427, "id": "e425" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.025042696, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 428, "id": "e426" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.009584128, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 429, "id": "e427" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.011982934, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 430, "id": "e428" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.029229729, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 431, "id": "e429" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605365", "target": "605755", "weight": 0.016807556, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 432, "id": "e430" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.010525425, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 433, "id": "e431" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.025674459, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 434, "id": "e432" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.032100502, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 435, "id": "e433" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.016653417, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 436, "id": "e434" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.011947335, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 437, "id": "e435" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.029142892, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 438, "id": "e436" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.036437046, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 439, "id": "e437" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "599863", "weight": 0.03200514, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 440, "id": "e438" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.026817428, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 441, "id": "e439" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.020142157, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 442, "id": "e440" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.05395785, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 443, "id": "e441" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.061247163, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 444, "id": "e442" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.031746667, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 445, "id": "e443" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "610236", "weight": 0.09682117, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 446, "id": "e444" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "599724", "weight": 0.16274704, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 447, "id": "e445" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "605755", "weight": 0.021811811, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 448, "id": "e446" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "611408", "weight": 0.074923314, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 449, "id": "e447" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "603700", "weight": 0.10404714, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 450, "id": "e448" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612341", "target": "605755", "weight": 0.024844587, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 451, "id": "e449" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.20640743, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 452, "id": "e450" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "611408", "weight": 0.019931292, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 453, "id": "e451" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.028223297, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 454, "id": "e452" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.010636279, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 455, "id": "e453" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.030938013, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 456, "id": "e454" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.012692714, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 457, "id": "e455" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.026700707, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 458, "id": "e456" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.036919616, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 459, "id": "e457" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.013852634, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 460, "id": "e458" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.029140742, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 461, "id": "e459" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.040293504, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 462, "id": "e460" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "599863", "weight": 0.03477486, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 463, "id": "e461" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.030285511, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 464, "id": "e462" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.033235077, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 465, "id": "e463" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.09105578, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 466, "id": "e464" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.034888152, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 467, "id": "e465" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "610236", "weight": 0.101480044, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 468, "id": "e466" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "599724", "weight": 0.22932594, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 469, "id": "e467" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "605755", "weight": 0.024592193, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 470, "id": "e468" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "611408", "weight": 0.07442771, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 471, "id": "e469" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "603700", "weight": 0.105399944, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 472, "id": "e470" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 1, "group": "predict", "networkId": 764, "networkGroupId": 23, "intn": true, "rIntnId": 473, "id": "e471" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.2783674, "group": "predict", "networkId": 782, "networkGroupId": 23, "intn": true, "rIntnId": 474, "id": "e472" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.2783674, "group": "predict", "networkId": 782, "networkGroupId": 23, "intn": true, "rIntnId": 475, "id": "e473" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.21170229, "group": "predict", "networkId": 782, "networkGroupId": 23, "intn": true, "rIntnId": 476, "id": "e474" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.36602542, "group": "predict", "networkId": 782, "networkGroupId": 23, "intn": true, "rIntnId": 477, "id": "e475" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.2783674, "group": "predict", "networkId": 782, "networkGroupId": 23, "intn": true, "rIntnId": 478, "id": "e476" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "599863", "weight": 0.2783674, "group": "predict", "networkId": 782, "networkGroupId": 23, "intn": true, "rIntnId": 479, "id": "e477" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.38690582, "group": "predict", "networkId": 782, "networkGroupId": 23, "intn": true, "rIntnId": 480, "id": "e478" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.38690582, "group": "predict", "networkId": 782, "networkGroupId": 23, "intn": true, "rIntnId": 481, "id": "e479" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "611408", "weight": 0.091978155, "group": "predict", "networkId": 784, "networkGroupId": 23, "intn": true, "rIntnId": 482, "id": "e480" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "610236", "weight": 0.45508987, "group": "predict", "networkId": 784, "networkGroupId": 23, "intn": true, "rIntnId": 483, "id": "e481" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "605755", "weight": 0.2623583, "group": "predict", "networkId": 784, "networkGroupId": 23, "intn": true, "rIntnId": 484, "id": "e482" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.06797186, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 485, "id": "e483" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611560", "target": "605755", "weight": 0.3450272, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 486, "id": "e484" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.059738826, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 487, "id": "e485" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "611408", "weight": 0.17054899, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 488, "id": "e486" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.039900523, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 489, "id": "e487" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "602299", "weight": 0.100114875, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 490, "id": "e488" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.050635427, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 491, "id": "e489" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "602299", "weight": 0.12704994, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 492, "id": "e490" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.08485871, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 493, "id": "e491" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.057983253, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 494, "id": "e492" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.3450272, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 495, "id": "e493" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.051310312, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 496, "id": "e494" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "602299", "weight": 0.1287433, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 497, "id": "e495" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.085989736, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 498, "id": "e496" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.10912455, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 499, "id": "e497" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "611408", "weight": 0.20272742, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 500, "id": "e498" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.504208, "group": "predict", "networkId": 783, "networkGroupId": 23, "intn": true, "rIntnId": 501, "id": "e499" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.34825513, "group": "predict", "networkId": 783, "networkGroupId": 23, "intn": true, "rIntnId": 502, "id": "e500" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.0774635, "group": "predict", "networkId": 783, "networkGroupId": 23, "intn": true, "rIntnId": 503, "id": "e501" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.098505326, "group": "predict", "networkId": 783, "networkGroupId": 23, "intn": true, "rIntnId": 504, "id": "e502" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "603700", "weight": 0.18779339, "group": "predict", "networkId": 783, "networkGroupId": 23, "intn": true, "rIntnId": 505, "id": "e503" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 1, "group": "predict", "networkId": 776, "networkGroupId": 23, "intn": true, "rIntnId": 506, "id": "e504" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612341", "target": "605755", "weight": 0.034121912, "group": "predict", "networkId": 919, "networkGroupId": 23, "intn": true, "rIntnId": 507, "id": "e505" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612341", "target": "611408", "weight": 0.15931912, "group": "predict", "networkId": 919, "networkGroupId": 23, "intn": true, "rIntnId": 508, "id": "e506" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611560", "target": "605755", "weight": 0.24656044, "group": "predict", "networkId": 919, "networkGroupId": 23, "intn": true, "rIntnId": 509, "id": "e507" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.04521022, "group": "predict", "networkId": 919, "networkGroupId": 23, "intn": true, "rIntnId": 510, "id": "e508" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "612341", "weight": 0.1758101, "group": "predict", "networkId": 919, "networkGroupId": 23, "intn": true, "rIntnId": 511, "id": "e509" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.022712024, "group": "predict", "networkId": 919, "networkGroupId": 23, "intn": true, "rIntnId": 512, "id": "e510" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.07400977, "group": "predict", "networkId": 919, "networkGroupId": 23, "intn": true, "rIntnId": 513, "id": "e511" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "605755", "weight": 0.6170411, "group": "predict", "networkId": 758, "networkGroupId": 23, "intn": true, "rIntnId": 514, "id": "e512" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.7692878, "group": "predict", "networkId": 765, "networkGroupId": 23, "intn": true, "rIntnId": 515, "id": "e513" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.34595153, "group": "predict", "networkId": 765, "networkGroupId": 23, "intn": true, "rIntnId": 516, "id": "e514" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.42062962, "group": "predict", "networkId": 765, "networkGroupId": 23, "intn": true, "rIntnId": 517, "id": "e515" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.27525902, "group": "predict", "networkId": 765, "networkGroupId": 23, "intn": true, "rIntnId": 518, "id": "e516" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.33467722, "group": "predict", "networkId": 765, "networkGroupId": 23, "intn": true, "rIntnId": 519, "id": "e517" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.57922876, "group": "predict", "networkId": 765, "networkGroupId": 23, "intn": true, "rIntnId": 520, "id": "e518" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.18857709, "group": "predict", "networkId": 765, "networkGroupId": 23, "intn": true, "rIntnId": 521, "id": "e519" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605365", "target": "605755", "weight": 0.52660257, "group": "predict", "networkId": 760, "networkGroupId": 23, "intn": true, "rIntnId": 522, "id": "e520" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.55178285, "group": "predict", "networkId": 760, "networkGroupId": 23, "intn": true, "rIntnId": 523, "id": "e521" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.421463, "group": "predict", "networkId": 760, "networkGroupId": 23, "intn": true, "rIntnId": 524, "id": "e522" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.55178285, "group": "predict", "networkId": 760, "networkGroupId": 23, "intn": true, "rIntnId": 525, "id": "e523" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.34672865, "group": "predict", "networkId": 760, "networkGroupId": 23, "intn": true, "rIntnId": 526, "id": "e524" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "600585", "weight": 0.5898937, "group": "predict", "networkId": 760, "networkGroupId": 23, "intn": true, "rIntnId": 527, "id": "e525" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "605755", "weight": 0.09839025, "group": "predict", "networkId": 760, "networkGroupId": 23, "intn": true, "rIntnId": 528, "id": "e526" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.05655634, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 529, "id": "e527" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "611560", "weight": 0.012864559, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 530, "id": "e528" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.073155984, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 531, "id": "e529" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.05125816, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 532, "id": "e530" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.12218573, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 533, "id": "e531" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.015783511, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 534, "id": "e532" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.02453422, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 535, "id": "e533" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "602299", "weight": 0.116195135, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 536, "id": "e534" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "610236", "weight": 0.058483012, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 537, "id": "e535" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605846", "weight": 0.02506927, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 538, "id": "e536" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "600535", "weight": 0.07461657, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 539, "id": "e537" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.07048574, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 540, "id": "e538" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "599889", "weight": 0.023919258, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 541, "id": "e539" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "600046", "weight": 0.10478503, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 542, "id": "e540" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "605755", "weight": 0.03964701, "group": "predict", "networkId": 743, "networkGroupId": 23, "intn": true, "rIntnId": 543, "id": "e541" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.43922377, "group": "predict", "networkId": 742, "networkGroupId": 23, "intn": true, "rIntnId": 544, "id": "e542" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.33831403, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 545, "id": "e543" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.16169672, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 546, "id": "e544" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.2703742, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 547, "id": "e545" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.21030058, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 548, "id": "e546" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.31522512, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 549, "id": "e547" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.51404154, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 550, "id": "e548" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.44492677, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 551, "id": "e549" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.15683943, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 552, "id": "e550" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.2350908, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 553, "id": "e551" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.30575597, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 554, "id": "e552" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.3868645, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 555, "id": "e553" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.42620838, "group": "predict", "networkId": 772, "networkGroupId": 23, "intn": true, "rIntnId": 556, "id": "e554" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.77163714, "group": "predict", "networkId": 766, "networkGroupId": 23, "intn": true, "rIntnId": 557, "id": "e555" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605365", "target": "605755", "weight": 0.2739886, "group": "predict", "networkId": 768, "networkGroupId": 23, "intn": true, "rIntnId": 558, "id": "e556" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "600585", "weight": 0.57735026, "group": "predict", "networkId": 761, "networkGroupId": 23, "intn": true, "rIntnId": 559, "id": "e557" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.46783587, "group": "predict", "networkId": 785, "networkGroupId": 23, "intn": true, "rIntnId": 560, "id": "e558" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.16824654, "group": "predict", "networkId": 785, "networkGroupId": 23, "intn": true, "rIntnId": 561, "id": "e559" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.37685034, "group": "predict", "networkId": 785, "networkGroupId": 23, "intn": true, "rIntnId": 562, "id": "e560" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.25319093, "group": "predict", "networkId": 785, "networkGroupId": 23, "intn": true, "rIntnId": 563, "id": "e561" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.4767415, "group": "predict", "networkId": 785, "networkGroupId": 23, "intn": true, "rIntnId": 564, "id": "e562" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.26375207, "group": "predict", "networkId": 785, "networkGroupId": 23, "intn": true, "rIntnId": 565, "id": "e563" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.7962252, "group": "predict", "networkId": 785, "networkGroupId": 23, "intn": true, "rIntnId": 566, "id": "e564" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.46783587, "group": "predict", "networkId": 785, "networkGroupId": 23, "intn": true, "rIntnId": 567, "id": "e565" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612341", "target": "605755", "weight": 0.43164432, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 568, "id": "e566" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "608473", "target": "605755", "weight": 0.43164432, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 569, "id": "e567" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "608473", "target": "612341", "weight": 0.62736636, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 570, "id": "e568" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.0605611, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 571, "id": "e569" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.04605353, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 572, "id": "e570" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.053028025, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 573, "id": "e571" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.0287298, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 574, "id": "e572" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.03308156, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 575, "id": "e573" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "599863", "weight": 0.033354767, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 576, "id": "e574" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.025481297, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 577, "id": "e575" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.029341005, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 578, "id": "e576" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.029583318, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 579, "id": "e577" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.02917116, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 580, "id": "e578" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "603700", "weight": 0.0036671148, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 581, "id": "e579" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612341", "target": "605755", "weight": 0.49999872, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 582, "id": "e580" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "608473", "target": "605755", "weight": 0.49999872, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 583, "id": "e581" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "608473", "target": "612341", "weight": 0.50000256, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 584, "id": "e582" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.07193713, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 585, "id": "e583" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.0419809, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 586, "id": "e584" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.056363728, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 587, "id": "e585" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.015254494, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 588, "id": "e586" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.020485014, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 589, "id": "e587" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "599863", "weight": 0.019407582, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 590, "id": "e588" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.012506178, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 591, "id": "e589" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.016794344, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 592, "id": "e590" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.015911028, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 593, "id": "e591" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.019493334, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 594, "id": "e592" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }] ================================================ FILE: documentation/demos/colajs-graph/index.html ================================================ Cola.js/Cytoscape.js
Cola.js/Cytoscape.js demo

This is a demo of a graph of gene-gene interactions that uses Cola.js for layout and Cytoscape.js for its graph model and visualisation. Use the controls below to alter the Cola.js layout parameters.

Data by GeneMANIA
Visualisation by Cytoscape.js
Layout by Cola.js

================================================ FILE: documentation/demos/colajs-graph/style.css ================================================ html { width: 100%; height: 100%; } body { font: 14px helvetica neue, helvetica, arial, sans-serif; width: 100%; height: 100%; overflow: hidden; } #cy { position: absolute; left: 0; top: 0; bottom: 0; right: 17em; } .config { position: absolute; right: 0; top: 0; bottom: 0; width: 17em; background: rgba(0, 0, 0, 0.666); box-sizing: border-box; padding: 1em; color: #fff; transition-property: opacity; transition-duration: 250ms; transition-timing-function: ease-out; overflow: auto; z-index: 1; } .param { margin-bottom: 1em; } .preamble { margin-bottom: 2em; } p { margin: 0.5em 0; font-size: 0.8em; } .param button { width: 3em; margin-right: 0.25em; text-align: center; } a, a:hover { color: #8BB0D0; } .label { display: block; } .slider { display: block; width: 100%; margin: 0; } .config-toggle { position: absolute; right: 0; top: 0; padding: 1em; margin: 0.2em; cursor: pointer; color: #fff; z-index: 9999999; } .config-closed .config { opacity: 0; pointer-events: none; } .config-closed #cy { right: 0; } .tip-link { display: block; } @media (max-width: 600px){ #cy { right: 0; } } ================================================ FILE: documentation/demos/compound-nodes/code.js ================================================ var cy = window.cy = cytoscape({ container: document.getElementById('cy'), boxSelectionEnabled: false, style: [ { selector: 'node', css: { 'shape': 'rectangle', 'content': 'data(id)', 'text-valign': 'center', 'text-halign': 'center' } }, { selector: ':parent', css: { 'text-valign': 'top', 'text-halign': 'center', 'shape': 'round-rectangle', 'corner-radius': "10", 'padding': 10 } }, { selector: 'node#e', css: { 'corner-radius': "10", 'padding': 0 } }, { selector: 'edge', css: { 'curve-style': 'bezier', 'target-arrow-shape': 'triangle' } } ], elements: { nodes: [ { data: { id: 'a', parent: 'b' }, position: { x: 215, y: 85 } }, { data: { id: 'b' } }, { data: { id: 'c', parent: 'b' }, position: { x: 300, y: 85 } }, { data: { id: 'd' }, position: { x: 215, y: 175 } }, { data: { id: 'e' } }, { data: { id: 'f', parent: 'e' }, position: { x: 300, y: 175 } } ], edges: [ { data: { id: 'ad', source: 'a', target: 'd' } }, { data: { id: 'eb', source: 'e', target: 'b' } } ] }, layout: { name: 'preset', padding: 5 } }); ================================================ FILE: documentation/demos/compound-nodes/index.html ================================================ Compound nodes
================================================ FILE: documentation/demos/compound-nodes/style.css ================================================ body { font: 14px helvetica neue, helvetica, arial, sans-serif; } #cy { height: 100%; width: 100%; position: absolute; left: 0; top: 0; } ================================================ FILE: documentation/demos/concentric-layout/code.js ================================================ fetch('data.json', {mode: 'no-cors'}) .then(function(res) { return res.json() }) .then(function(data) { var cy = window.cy = cytoscape({ container: document.getElementById('cy'), boxSelectionEnabled: false, autounselectify: true, layout: { name: 'concentric', concentric: function( node ){ return node.degree(); }, levelWidth: function( nodes ){ return 2; } }, style: [ { selector: 'node', style: { 'height': 20, 'width': 20, 'background-color': '#30c9bc' } }, { selector: 'edge', style: { 'curve-style': 'haystack', 'haystack-radius': 0, 'width': 5, 'opacity': 0.5, 'line-color': '#a8eae5' } } ], elements: data }); }); ================================================ FILE: documentation/demos/concentric-layout/data.json ================================================ [{ "data": { "id": "HIRA", "altered": 0, "rank": 148, "cited": 53, "uniprotdesc": "Cooperates with ASF1A to promote replication-independentchromatin assembly. Required for the periodic repression ofhistone gene transcription during the cell cycle. Required for theformation of senescence-associated heterochromatin foci (SAHF) andefficient senescence-associated cell cycle exit.", "isseed": false, "uniprot": "P54198", "isvalid": true, "importance": 3 }, "position": { "x": 539.5, "y": 641.7372431003224 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SERPINE1", "altered": 0, "rank": 5, "cited": 7063, "uniprotdesc": "Serine protease inhibitor. This inhibitor acts as 'bait'for tissue plasminogen activator, urokinase, protein C andmatriptase-3/TMPRSS7. Its rapid interaction with PLAT may functionas a major control point in the regulation of fibrinolysis.", "isseed": false, "uniprot": "P05121", "isvalid": true, "importance": 3 }, "position": { "x": 670.4301869950953, "y": 229.70989985711336 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "FAS", "altered": 0, "rank": 38, "cited": 1011, "uniprotdesc": "Receptor for TNFSF6/FASLG. The adapter molecule FADDrecruits caspase-8 to the activated receptor. The resulting death-inducing signaling complex (DISC) performs caspase-8 proteolyticactivation which initiates the subsequent cascade of caspases(aspartate-specific cysteine proteases) mediating apoptosis. FAS-mediated apoptosis may have a role in the induction of peripheraltolerance, in the antigen-stimulated suicide of mature T-cells, orboth. The secreted isoforms 2 to 6 block apoptosis (in vitro).", "isseed": false, "uniprot": "P25445", "isvalid": true, "importance": 3 }, "position": { "x": 771.3915110914829, "y": 613.8066148172879 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "H1F0", "altered": 0, "rank": 179, "cited": 8, "uniprotdesc": "Histones H1 are necessary for the condensation ofnucleosome chains into higher-order structures. The H1F0 histonesare found in cells that are in terminal stages of differentiationor that have low rates of cell division.", "isseed": false, "uniprot": "P07305", "isvalid": true, "importance": 3 }, "position": { "x": 396.564243092928, "y": 545.1295331255458 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CHEK2", "altered": 0, "rank": 42, "cited": 859, "uniprotdesc": "Serine/threonine-protein kinase which is required forcheckpoint-mediated cell cycle arrest, activation of DNA repairand apoptosis in response to the presence of DNA double-strandbreaks. May also negatively regulate cell cycle progression duringunperturbed cell cycles. Following activation, phosphorylatesnumerous effectors preferentially at the consensus sequence [L-X-R-X-X-S/T]. Regulates cell cycle checkpoint arrest throughphosphorylation of CDC25A, CDC25B and CDC25C, inhibiting theiractivity. Inhibition of CDC25 phosphatase activity leads toincreased inhibitory tyrosine phosphorylation of CDK-cyclincomplexes and blocks cell cycle progression. May alsophosphorylate NEK6 which is involved in G2/M cell cycle arrest.Regulates DNA repair through phosphorylation of BRCA2, enhancingthe association of RAD51 with chromatin which promotes DNA repairby homologous recombination. Also stimulates the transcription ofgenes involved in DNA repair (including BRCA2) through thephosphorylation and activation of the transcription factor FOXM1.Regulates apoptosis through the phosphorylation of p53/TP53, MDM4and PML. Phosphorylation of p53/TP53 at 'Ser-20' by CHEK2 mayalleviate inhibition by MDM2, leading to accumulation of activep53/TP53. Phosphorylation of MDM4 may also reduce degradation ofp53/TP53. Also controls the transcription of pro-apoptotic genesthrough phosphorylation of the transcription factor E2F1. Tumorsuppressor, it may also have a DNA damage-independent function inmitotic spindle assembly by phosphorylating BRCA1. Its absence maybe a cause of the chromosomal instability observed in some cancercells. ", "isseed": false, "uniprot": "O96017", "isvalid": true, "importance": 3 }, "position": { "x": 665.61605725324, "y": 327.88536532731405 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "COL18A1", "altered": 0, "rank": 157, "cited": 30, "uniprotdesc": "COLA18A probably plays a major role in determining theretinal structure as well as in the closure of the neural tube.Endostatin potently inhibits endothelial cellproliferation and angiogenesis. May inhibit angiogenesis bybinding to the heparan sulfate proteoglycans involved in growthfactor signaling.", "isseed": false, "uniprot": "P39060", "isvalid": true, "importance": 3 }, "position": { "x": 315.495548442639, "y": 356.3503242429216 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CREBBP", "altered": 0, "rank": 24, "cited": 2442, "uniprotdesc": "Acetylates histones, giving a specific tag fortranscriptional activation. Also acetylates non-histone proteins,like NCOA3 and FOXO1. Binds specifically to phosphorylated CREBand enhances its transcriptional activity toward cAMP-responsivegenes. Acts as a coactivator of ALX1 in the presence of EP300.Acts as a circadian transcriptional coactivator which enhances theactivity of the circadian transcriptional activators: NPAS2-ARNTL/BMAL1 and CLOCK-ARNTL/BMAL1 heterodimers.", "isseed": false, "uniprot": "Q92793", "isvalid": true, "importance": 3 }, "position": { "x": 468.2392322240752, "y": 311.08612174318614 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "FDXR", "altered": 0, "rank": 147, "cited": 54, "uniprotdesc": "Serves as the first electron transfer protein in all themitochondrial P450 systems. Including cholesterol side chaincleavage in all steroidogenic tissues, steroid 11-betahydroxylation in the adrenal cortex, 25-OH-vitamin D3-24hydroxylation in the kidney, and sterol C-27 hydroxylation in theliver.", "isseed": false, "uniprot": "P22570", "isvalid": true, "importance": 3 }, "position": { "x": 614.0116881932149, "y": 209.57981996234878 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SMYD2", "altered": 0, "rank": 175, "cited": 12, "uniprotdesc": "Protein-lysine N-methyltransferase that methylates bothhistones and non-histone proteins, including p53/TP53 and RB1.Specifically methylates histone H3 'Lys-4' (H3K4me) anddimethylates histone H3 'Lys-36' (H3K36me2). Shows even highermethyltransferase activity on p53/TP53. Monomethylates 'Lys-370'of p53/TP53, leading to decreased DNA-binding activity andsubsequent transcriptional regulation activity of p53/TP53.Monomethylates RB1 at 'Lys-860'. ", "isseed": false, "uniprot": "Q9NRG4", "isvalid": true, "importance": 3 }, "position": { "x": 799.3458853307084, "y": 560.8271840491047 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "ATR", "altered": 0, "rank": 52, "cited": 628, "uniprotdesc": "Serine/threonine protein kinase which activatescheckpoint signaling upon genotoxic stresses such as ionizingradiation (IR), ultraviolet light (UV), or DNA replicationstalling, thereby acting as a DNA damage sensor. Recognizes thesubstrate consensus sequence [ST]-Q. Phosphorylates BRCA1, CHEK1,MCM2, RAD17, RPA2, SMC1 and p53/TP53, which collectively inhibitDNA replication and mitosis and promote DNA repair, recombinationand apoptosis. Phosphorylates 'Ser-139' of histone variantH2AX/H2AFX at sites of DNA damage, thereby regulating DNA damageresponse mechanism. Required for FANCD2 ubiquitination. Criticalfor maintenance of fragile site stability and efficient regulationof centrosome duplication. ", "isseed": false, "uniprot": "Q13535", "isvalid": true, "importance": 3 }, "position": { "x": 696.7065384003552, "y": 570.6754072575451 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HGF", "altered": 0, "rank": 4, "cited": 7554, "uniprotdesc": "Potent mitogen for mature parenchymal hepatocyte cells,seems to be a hepatotrophic factor, and acts as a growth factorfor a broad spectrum of tissues and cell types. Activating ligandfor the receptor tyrosine kinase MET by binding to it andpromoting its dimerization. ", "isseed": false, "uniprot": "P14210", "isvalid": true, "importance": 3 }, "position": { "x": 732.163947642761, "y": 659.0776363377252 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "ATM", "altered": 0, "rank": 25, "cited": 2298, "uniprotdesc": "Serine/threonine protein kinase which activatescheckpoint signaling upon double strand breaks (DSBs), apoptosisand genotoxic stresses such as ionizing ultraviolet A light (UVA),thereby acting as a DNA damage sensor. Recognizes the substrateconsensus sequence [ST]-Q. Phosphorylates 'Ser-139' of histonevariant H2AX/H2AFX at double strand breaks (DSBs), therebyregulating DNA damage response mechanism. Also plays a role inpre-B cell allelic exclusion, a process leading to expression of asingle immunoglobulin heavy chain allele to enforce clonality andmonospecific recognition by the B-cell antigen receptor (BCR)expressed on individual B-lymphocytes. After the introduction ofDNA breaks by the RAG complex on one immunoglobulin allele, actsby mediating a repositioning of the second allele topericentromeric heterochromatin, preventing accessibility to theRAG complex and recombination of the second allele. Also involvedin signal transduction and cell cycle control. May function as atumor suppressor. Necessary for activation of ABL1 and SAPK.Phosphorylates DYRK2, CHEK2, p53/TP53, FANCD2, NFKBIA, BRCA1,CTIP, nibrin (NBN), TERF1, RAD9 and DCLRE1C. May play a role invesicle and/or protein transport. Could play a role in T-celldevelopment, gonad and neurological function. Plays a role inreplication-dependent histone mRNA degradation. Binds DNA ends.Phosphorylation of DYRK2 in nucleus in response to genotoxicstress prevents its MDM2-mediated ubiquitination and subsequentproteasome degradation. Phosphorylates ATF2 which stimulates itsfunction in DNA damage response. ", "isseed": false, "uniprot": "Q13315", "isvalid": true, "importance": 3 }, "position": { "x": 723.6214512404813, "y": 517.2928623066505 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP63", "altered": 0, "rank": 37, "cited": 1171, "uniprotdesc": "Acts as a sequence specific DNA binding transcriptionalactivator or repressor. The isoforms contain a varying set oftransactivation and auto-regulating transactivation inhibitingdomains thus showing an isoform specific activity. Isoform 2activates RIPK4 transcription. May be required in conjunction withTP73/p73 for initiation of p53/TP53 dependent apoptosis inresponse to genotoxic insults and the presence of activatedoncogenes. Involved in Notch signaling by probably inducing JAG1and JAG2. Plays a role in the regulation of epithelialmorphogenesis. The ratio of DeltaN-type and TA*-type isoforms maygovern the maintenance of epithelial stem cell compartments andregulate the initiation of epithelial stratification from theundifferentiated embryonal ectoderm. Required for limb formationfrom the apical ectodermal ridge. Activates transcription of thep21 promoter. ", "isseed": false, "uniprot": "Q9H3D4", "isvalid": true, "importance": 3 }, "position": { "x": 554.5, "y": 495.5 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "GPX1", "altered": 0, "rank": 13, "cited": 3644, "uniprotdesc": "Protects the hemoglobin in erythrocytes from oxidativebreakdown.", "isseed": false, "uniprot": "P07203", "isvalid": true, "importance": 3 }, "position": { "x": 412.4474306913114, "y": 244.4618875964815 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TRIAP1", "altered": 0, "rank": 183, "cited": 7, "uniprotdesc": "Involved in the modulation of the mitochondrialapoptotic pathway by ensuring the accumulation of cardiolipin (CL)in mitochondrial membranes. In vitro, the TRIAP1:PRELID1 complexmediates the transfer of phosphatidic acid (PA) between liposomesand probably functions as a PA transporter across themitochondrion intermembrane space to provide PA for CL synthesisin the inner membrane. Mediates cell survival by inhibitingactivation of caspase-9 which prevents induction of apoptosis.", "isseed": false, "uniprot": "O43715", "isvalid": true, "importance": 3 }, "position": { "x": 554.5, "y": 202.751489857487 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HIST1H1E", "altered": 0, "rank": 167, "cited": 19, "uniprotdesc": "Histone H1 protein binds to linker DNA betweennucleosomes forming the macromolecular structure known as thechromatin fiber. Histones H1 are necessary for the condensation ofnucleosome chains into higher-order structured fibers. Acts alsoas a regulator of individual gene transcription through chromatinremodeling, nucleosome spacing and DNA methylation (Bysimilarity). ", "isseed": false, "uniprot": "P10412", "isvalid": true, "importance": 3 }, "position": { "x": 509.931522689569, "y": 636.667218490667 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HIST1H1D", "altered": 0, "rank": 184, "cited": 6, "uniprotdesc": "Histone H1 protein binds to linker DNA betweennucleosomes forming the macromolecular structure known as thechromatin fiber. Histones H1 are necessary for the condensation ofnucleosome chains into higher-order structured fibers. Acts alsoas a regulator of individual gene transcription through chromatinremodeling, nucleosome spacing and DNA methylation (Bysimilarity). ", "isseed": false, "uniprot": "P16402", "isvalid": true, "importance": 3 }, "position": { "x": 385.3785487595187, "y": 517.2928623066505 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HIST1H1C", "altered": 0, "rank": 174, "cited": 13, "uniprotdesc": "Histone H1 protein binds to linker DNA betweennucleosomes forming the macromolecular structure known as thechromatin fiber. Histones H1 are necessary for the condensation ofnucleosome chains into higher-order structured fibers. Acts alsoas a regulator of individual gene transcription through chromatinremodeling, nucleosome spacing and DNA methylation (Bysimilarity). ", "isseed": false, "uniprot": "P16403", "isvalid": true, "importance": 3 }, "position": { "x": 379.058170659647, "y": 487.9662051382201 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HIST1H1B", "altered": 0, "rank": 96, "cited": 209, "uniprotdesc": "Histone H1 protein binds to linker DNA betweennucleosomes forming the macromolecular structure known as thechromatin fiber. Histones H1 are necessary for the condensation ofnucleosome chains into higher-order structured fibers. Acts alsoas a regulator of individual gene transcription through chromatinremodeling, nucleosome spacing and DNA methylation (Bysimilarity). ", "isseed": false, "uniprot": "P16401", "isvalid": true, "importance": 3 }, "position": { "x": 381.59546915616875, "y": 428.2362230943135 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HIST1H1A", "altered": 0, "rank": 173, "cited": 13, "uniprotdesc": "Histone H1 protein binds to linker DNA betweennucleosomes forming the macromolecular structure known as thechromatin fiber. Histones H1 are necessary for the condensation ofnucleosome chains into higher-order structured fibers. Acts alsoas a regulator of individual gene transcription through chromatinremodeling, nucleosome spacing and DNA methylation (Bysimilarity). ", "isseed": false, "uniprot": "Q02539", "isvalid": true, "importance": 3 }, "position": { "x": 443.3839427467599, "y": 327.88536532731405 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53", "altered": 0, "rank": 0, "cited": 24824, "uniprotdesc": "Acts as a tumor suppressor in many tumor types; inducesgrowth arrest or apoptosis depending on the physiologicalcircumstances and cell type. Involved in cell cycle regulation asa trans-activator that acts to negatively regulate cell divisionby controlling a set of genes required for this process. One ofthe activated genes is an inhibitor of cyclin-dependent kinases.Apoptosis induction seems to be mediated either by stimulation ofBAX and FAS antigen expression, or by repression of Bcl-2expression. In cooperation with mitochondrial PPIF is involved inactivating oxidative stress-induced necrosis; the function islargely independent of transcription. Induces the transcription oflong intergenic non-coding RNA p21 (lincRNA-p21) and lincRNA-Mkln1. LincRNA-p21 participates in TP53-dependent transcriptionalrepression leading to apoptosis and seem to have to effect oncell-cycle regulation. Implicated in Notch signaling cross-over.Prevents CDK7 kinase activity when associated to CAK complex inresponse to DNA damage, thus stopping cell cycle progression.Isoform 2 enhances the transactivation activity of isoform 1 fromsome but not all TP53-inducible promoters. Isoform 4 suppressestransactivation activity and impairs growth suppression mediatedby isoform 1. Isoform 7 inhibits isoform 1-mediated apoptosis.", "isseed": true, "uniprot": "P04637", "isvalid": true, "importance": 4 }, "position": { "x": 554.5, "y": 465.5 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "GADD45A", "altered": 0, "rank": 98, "cited": 198, "uniprotdesc": "In T-cells, functions as a regulator of p38 MAPKs byinhibiting p88 phosphorylation and activity (By similarity). Mightaffect PCNA interaction with some CDK (cell division proteinkinase) complexes; stimulates DNA excision repair in vitro andinhibits entry of cells into S phase. ", "isseed": false, "uniprot": "P24522", "isvalid": true, "importance": 3 }, "position": { "x": 554.5, "y": 375.5 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PML", "altered": 0, "rank": 35, "cited": 1300, "uniprotdesc": "Functions via its association with PML-nuclear bodies(PML-NBs) in a wide range of important cellular processes,including tumor suppression, transcriptional regulation,apoptosis, senescence, DNA damage response, and viral defensemechanisms. Acts as the scaffold of PML-NBs allowing otherproteins to shuttle in and out, a process which is regulated bySUMO-mediated modifications and interactions. Isoform PML-4 has amultifaceted role in the regulation of apoptosis and growthsuppression: activates RB1 and inhibits AKT1 via interactions withPP1 and PP2A phosphatases respectively, negatively affects thePI3K pathway by inhibiting MTOR and activating PTEN, andpositively regulates p53/TP53 by acting at different levels (bypromoting its acetylation and phosphorylation and by inhibitingits MDM2-dependent degradation). Isoform PML-4 also: acts as atranscriptional repressor of TBX2 during cellular senescence andthe repression is dependent on a functional RBL2/E2F4 repressorcomplex, regulates double-strand break repair in gamma-irradiation-induced DNA damage responses via its interaction withWRN, acts as a negative regulator of telomerase by interactingwith TERT, and regulates PER2 nuclear localization and circadianfunction. Isoform PML-6 inhibits specifically the activity of thetetrameric form of PKM. The nuclear isoforms (isoform PML-1,isoform PML-2, isoform PML-3, isoform PML-4 and isoform PML-5) inconcert with SATB1 are involved in local chromatin-loop remodelingand gene expression regulation at the MHC-I locus. Isoform PML-2is required for efficient IFN-gamma induced MHC II genetranscription via regulation of CIITA. Cytoplasmic PML is involvedin the regulation of the TGF-beta signaling pathway. PML alsoregulates transcription activity of ELF4 and can act as animportant mediator for TNF-alpha- and IFN-alpha-mediatedinhibition of endothelial cell network formation and migration.Exhibits antiviral activity against both DNA and RNAviruses. The antiviral activity can involve one or severalisoform(s) and can be enhanced by the permanent PML-NB-associatedprotein DAXX or by the recruitment of p53/TP53 within thesestructures. Isoform PML-4 restricts varicella zoster virus (VZV)via sequestration of virion capsids in PML-NBs thereby preventingtheir nuclear egress and inhibiting formation of infectious virusparticles. The sumoylated isoform PML-4 restricts rabies virus byinhibiting viral mRNA and protein synthesis. The cytoplasmicisoform PML-14 can restrict herpes simplex virus-1 (HHV-1)replication by sequestering the viral E3 ubiquitin-protein ligaseICP0 in the cytoplasm. Isoform PML-6 shows restriction activitytowards human cytomegalovirus (HCMV) and influenza A virus strainsPR8(H1N1) and ST364(H3N2). Sumoylated isoform PML-4 and isoformPML-12 show antiviral activity against encephalomyocarditis virus(EMCV) by promoting nuclear sequestration of viral polymerase(P3D-POL) within PML NBs. Isoform PML-3 exhibits antiviralactivity against poliovirus by inducing apoptosis in infectedcells through the recruitment and the activation of p53/TP53 inthe PML-NBs. Isoform PML-3 represses human foamy virus (HFV)transcription by complexing the HFV transactivator, bel1/tas,preventing its binding to viral DNA. PML may positively regulateinfectious hepatitis C viral (HCV) production and isoform PML-2may enhance adenovirus transcription.", "isseed": false, "uniprot": "P29590", "isvalid": true, "importance": 3 }, "position": { "x": 554.5, "y": 555.5 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SUMO1", "altered": 0, "rank": 36, "cited": 1235, "uniprotdesc": "Ubiquitin-like protein that can be covalently attachedto proteins as a monomer or a lysine-linked polymer. Covalentattachment via an isopeptide bond to its substrates requires prioractivation by the E1 complex SAE1-SAE2 and linkage to the E2enzyme UBE2I, and can be promoted by E3 ligases such as PIAS1-4,RANBP2 or CBX4. This post-translational modification on lysineresidues of proteins plays a crucial role in a number of cellularprocesses such as nuclear transport, DNA replication and repair,mitosis and signal transduction. Involved for instance intargeting RANGAP1 to the nuclear pore complex protein RANBP2.Polymeric SUMO1 chains are also susceptible to polyubiquitinationwhich functions as a signal for proteasomal degradation ofmodified proteins. May also regulate a network of genes involvedin palate development. ", "isseed": false, "uniprot": "P63165", "isvalid": true, "importance": 3 }, "position": { "x": 554.5, "y": 288.62556472004735 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP2CA", "altered": 0, "rank": 146, "cited": 55, "uniprotdesc": "PP2A is the major phosphatase for microtubule-associatedproteins (MAPs). PP2A can modulate the activity of phosphorylase Bkinase casein kinase 2, mitogen-stimulated S6 kinase, and MAP-2kinase. Cooperates with SGOL2 to protect centromeric cohesin fromseparase-mediated cleavage in oocytes specifically during meiosisI (By similarity). Can dephosphorylate SV40 large T antigen andp53/TP53. Activates RAF1 by dephosphorylating it at 'Ser-259'.", "isseed": false, "uniprot": "P67775", "isvalid": true, "importance": 3 }, "position": { "x": 727.4045308438311, "y": 428.2362230943131 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP2CB", "altered": 0, "rank": 185, "cited": 6, "uniprotdesc": "PP2A can modulate the activity of phosphorylase B kinasecasein kinase 2, mitogen-stimulated S6 kinase, and MAP-2 kinase.", "isseed": false, "uniprot": "P62714", "isvalid": true, "importance": 3 }, "position": { "x": 584.3919246562758, "y": 291.16974245431265 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAA1", "altered": 0, "rank": 78, "cited": 330, "uniprotdesc": "Catalytic subunit of AMP-activated protein kinase(AMPK), an energy sensor protein kinase that plays a key role inregulating cellular energy metabolism. In response to reduction ofintracellular ATP levels, AMPK activates energy-producing pathwaysand inhibits energy-consuming processes: inhibits protein,carbohydrate and lipid biosynthesis, as well as cell growth andproliferation. AMPK acts via direct phosphorylation of metabolicenzymes, and by longer-term effects via phosphorylation oftranscription regulators. Also acts as a regulator of cellularpolarity by remodeling the actin cytoskeleton; probably byindirectly activating myosin. Regulates lipid synthesis byphosphorylating and inactivating lipid metabolic enzymes such asACACA, ACACB, GYS1, HMGCR and LIPE; regulates fatty acid andcholesterol synthesis by phosphorylating acetyl-CoA carboxylase(ACACA and ACACB) and hormone-sensitive lipase (LIPE) enzymes,respectively. Regulates insulin-signaling and glycolysis byphosphorylating IRS1, PFKFB2 and PFKFB3. AMPK stimulates glucoseuptake in muscle by increasing the translocation of the glucosetransporter SLC2A4/GLUT4 to the plasma membrane, possibly bymediating phosphorylation of TBC1D4/AS160. Regulates transcriptionand chromatin structure by phosphorylating transcriptionregulators involved in energy metabolism such as CRTC2/TORC2,FOXO3, histone H2B, HDAC5, MEF2C, MLXIPL/ChREBP, EP300, HNF4A,p53/TP53, SREBF1, SREBF2 and PPARGC1A. Acts as a key regulator ofglucose homeostasis in liver by phosphorylating CRTC2/TORC2,leading to CRTC2/TORC2 sequestration in the cytoplasm. In responseto stress, phosphorylates 'Ser-36' of histone H2B (H2BS36ph),leading to promote transcription. Acts as a key regulator of cellgrowth and proliferation by phosphorylating TSC2, RPTOR andATG1/ULK1: in response to nutrient limitation, negativelyregulates the mTORC1 complex by phosphorylating RPTOR component ofthe mTORC1 complex and by phosphorylating and activating TSC2. Inresponse to nutrient limitation, promotes autophagy byphosphorylating and activating ATG1/ULK1. AMPK also acts as aregulator of circadian rhythm by mediating phosphorylation ofCRY1, leading to destabilize it. May regulate the Wnt signalingpathway by phosphorylating CTNNB1, leading to stabilize it. Alsohas tau-protein kinase activity: in response to amyloid beta A4protein (APP) exposure, activated by CAMKK2, leading tophosphorylation of MAPT/TAU; however the relevance of such dataremains unclear in vivo. Also phosphorylates CFTR, EEF2K, KLC1,NOS3 and SLC12A1. ", "isseed": false, "uniprot": "Q13131", "isvalid": true, "importance": 3 }, "position": { "x": 731.2150654362375, "y": 457.9932361520795 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAA2", "altered": 0, "rank": 29, "cited": 2074, "uniprotdesc": "Catalytic subunit of AMP-activated protein kinase(AMPK), an energy sensor protein kinase that plays a key role inregulating cellular energy metabolism. In response to reduction ofintracellular ATP levels, AMPK activates energy-producing pathwaysand inhibits energy-consuming processes: inhibits protein,carbohydrate and lipid biosynthesis, as well as cell growth andproliferation. AMPK acts via direct phosphorylation of metabolicenzymes, and by longer-term effects via phosphorylation oftranscription regulators. Also acts as a regulator of cellularpolarity by remodeling the actin cytoskeleton; probably byindirectly activating myosin. Regulates lipid synthesis byphosphorylating and inactivating lipid metabolic enzymes such asACACA, ACACB, GYS1, HMGCR and LIPE; regulates fatty acid andcholesterol synthesis by phosphorylating acetyl-CoA carboxylase(ACACA and ACACB) and hormone-sensitive lipase (LIPE) enzymes,respectively. Regulates insulin-signaling and glycolysis byphosphorylating IRS1, PFKFB2 and PFKFB3. AMPK stimulates glucoseuptake in muscle by increasing the translocation of the glucosetransporter SLC2A4/GLUT4 to the plasma membrane, possibly bymediating phosphorylation of TBC1D4/AS160. Regulates transcriptionand chromatin structure by phosphorylating transcriptionregulators involved in energy metabolism such as CRTC2/TORC2,FOXO3, histone H2B, HDAC5, MEF2C, MLXIPL/ChREBP, EP300, HNF4A,p53/TP53, SREBF1, SREBF2 and PPARGC1A. Acts as a key regulator ofglucose homeostasis in liver by phosphorylating CRTC2/TORC2,leading to CRTC2/TORC2 sequestration in the cytoplasm. In responseto stress, phosphorylates 'Ser-36' of histone H2B (H2BS36ph),leading to promote transcription. Acts as a key regulator of cellgrowth and proliferation by phosphorylating TSC2, RPTOR andATG1/ULK1: in response to nutrient limitation, negativelyregulates the mTORC1 complex by phosphorylating RPTOR component ofthe mTORC1 complex and by phosphorylating and activating TSC2. Inresponse to nutrient limitation, promotes autophagy byphosphorylating and activating ATG1/ULK1. AMPK also acts as aregulator of circadian rhythm by mediating phosphorylation ofCRY1, leading to destabilize it. May regulate the Wnt signalingpathway by phosphorylating CTNNB1, leading to stabilize it. Alsophosphorylates CFTR, EEF2K, KLC1, NOS3 and SLC12A1.", "isseed": false, "uniprot": "P54646", "isvalid": true, "importance": 3 }, "position": { "x": 613.4239130642807, "y": 298.7290842958664 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK11", "altered": 0, "rank": 127, "cited": 81, "uniprotdesc": "Serine/threonine kinase which acts as an essentialcomponent of the MAP kinase signal transduction pathway. MAPK11 isone of the four p38 MAPKs which play an important role in thecascades of cellular responses evoked by extracellular stimulisuch as proinflammatory cytokines or physical stress leading todirect activation of transcription factors. Accordingly, p38 MAPKsphosphorylate a broad range of proteins and it has been estimatedthat they may have approximately 200 to 300 substrates each.MAPK11 functions are mostly redundant with those of MAPK14. Someof the targets are downstream kinases which are activated throughphosphorylation and further phosphorylate additional targets.RPS6KA5/MSK1 and RPS6KA4/MSK2 can directly phosphorylate andactivate transcription factors such as CREB1, ATF1, the NF-kappa-Bisoform RELA/NFKB3, STAT1 and STAT3, but can also phosphorylatehistone H3 and the nucleosomal protein HMGN1. RPS6KA5/MSK1 andRPS6KA4/MSK2 play important roles in the rapid induction ofimmediate-early genes in response to stress or mitogenic stimuli,either by inducing chromatin remodeling or by recruiting thetranscription machinery. On the other hand, two other kinasetargets, MAPKAPK2/MK2 and MAPKAPK3/MK3, participate in the controlof gene expression mostly at the post-transcriptional level, byphosphorylating ZFP36 (tristetraprolin) and ELAVL1, and byregulating EEF2K, which is important for the elongation of mRNAduring translation. MKNK1/MNK1 and MKNK2/MNK2, two other kinasesactivated by p38 MAPKs, regulate protein synthesis byphosphorylating the initiation factor EIF4E2. In the cytoplasm,the p38 MAPK pathway is an important regulator of proteinturnover. For example, CFLAR is an inhibitor of TNF-inducedapoptosis whose proteasome-mediated degradation is regulated byp38 MAPK phosphorylation. Ectodomain shedding of transmembraneproteins is regulated by p38 MAPKs as well. In response toinflammatory stimuli, p38 MAPKs phosphorylate the membrane-associated metalloprotease ADAM17. Such phosphorylation isrequired for ADAM17-mediated ectodomain shedding of TGF-alphafamily ligands, which results in the activation of EGFR signalingand cell proliferation. Additional examples of p38 MAPK substratesare the FGFR1. FGFR1 can be translocated from the extracellularspace into the cytosol and nucleus of target cells, and regulatesprocesses such as rRNA synthesis and cell growth. FGFR1translocation requires p38 MAPK activation. In the nucleus, manytranscription factors are phosphorylated and activated by p38MAPKs in response to different stimuli. Classical examples includeATF1, ATF2, ATF6, ELK1, PTPRH, DDIT3, TP53/p53 and MEF2C andMEF2A. The p38 MAPKs are emerging as important modulators of geneexpression by regulating chromatin modifiers and remodelers. Thepromoters of several genes involved in the inflammatory response,such as IL6, IL8 and IL12B, display a p38 MAPK-dependentenrichment of histone H3 phosphorylation on 'Ser-10' (H3S10ph) inLPS-stimulated myeloid cells. This phosphorylation enhances theaccessibility of the cryptic NF-kappa-B-binding sites markingpromoters for increased NF-kappa-B recruitment.", "isseed": false, "uniprot": "Q15759", "isvalid": true, "importance": 3 }, "position": { "x": 640.7607677759248, "y": 311.0861217431862 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP73", "altered": 0, "rank": 116, "cited": 124, "uniprotdesc": "Participates in the apoptotic response to DNA damage.Isoforms containing the transactivation domain are pro-apoptotic,isoforms lacking the domain are anti-apoptotic and block thefunction of p53 and transactivating p73 isoforms. May be a tumorsuppressor protein. ", "isseed": false, "uniprot": "O15350", "isvalid": true, "importance": 3 }, "position": { "x": 554.5, "y": 435.5 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CCNB1", "altered": 0, "rank": 62, "cited": 491, "uniprotdesc": "Essential for the control of the cell cycle at the G2/M(mitosis) transition. ", "isseed": false, "uniprot": "P14635", "isvalid": true, "importance": 3 }, "position": { "x": 455.45477593090067, "y": 612.0421763339963 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK12", "altered": 0, "rank": 131, "cited": 79, "uniprotdesc": "Serine/threonine kinase which acts as an essentialcomponent of the MAP kinase signal transduction pathway. MAPK12 isone of the four p38 MAPKs which play an important role in thecascades of cellular responses evoked by extracellular stimulisuch as proinflammatory cytokines or physical stress leading todirect activation of transcription factors such as ELK1 and ATF2.Accordingly, p38 MAPKs phosphorylate a broad range of proteins andit has been estimated that they may have approximately 200 to 300substrates each. Some of the targets are downstream kinases suchas MAPKAPK2, which are activated through phosphorylation andfurther phosphorylate additional targets. Plays a role in myoblastdifferentiation and also in the down-regulation of cyclin D1 inresponse to hypoxia in adrenal cells suggesting MAPK12 may inhibitcell proliferation while promoting differentiation. PhosphorylatesDLG1. Following osmotic shock, MAPK12 in the cell nucleusincreases its association with nuclear DLG1, thereby causingdissociation of DLG1-SFPQ complexes. This function is independentof its catalytic activity and could affect mRNA processing and/orgene transcription to aid cell adaptation to osmolarity changes inthe environment. Regulates UV-induced checkpoint signaling andrepair of UV-induced DNA damage and G2 arrest after gamma-radiation exposure. MAPK12 is involved in the regulation of SLC2A1expression and basal glucose uptake in L6 myotubes; and negativelyregulates SLC2A4 expression and contraction-mediated glucoseuptake in adult skeletal muscle. C-Jun (JUN) phosphorylation isstimulated by MAPK14 and inhibited by MAPK12, leading to adistinct AP-1 regulation. MAPK12 is required for the normalkinetochore localization of PLK1, prevents chromosomal instabilityand supports mitotic cell viability. MAPK12-signaling is alsopositively regulating the expansion of transient amplifyingmyogenic precursor cells during muscle growth and regeneration.", "isseed": false, "uniprot": "P53778", "isvalid": true, "importance": 3 }, "position": { "x": 569.5000000000001, "y": 641.7372431003224 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK13", "altered": 0, "rank": 126, "cited": 88, "uniprotdesc": "Serine/threonine kinase which acts as an essentialcomponent of the MAP kinase signal transduction pathway. MAPK13 isone of the four p38 MAPKs which play an important role in thecascades of cellular responses evoked by extracellular stimulisuch as proinflammatory cytokines or physical stress leading todirect activation of transcription factors such as ELK1 and ATF2.Accordingly, p38 MAPKs phosphorylate a broad range of proteins andit has been estimated that they may have approximately 200 to 300substrates each. MAPK13 is one of the less studied p38 MAPKisoforms. Some of the targets are downstream kinases such asMAPKAPK2, which are activated through phosphorylation and furtherphosphorylate additional targets. Plays a role in the regulationof protein translation by phosphorylating and inactivating EEF2K.Involved in cytoskeletal remodeling through phosphorylation ofMAPT and STMN1. Mediates UV irradiation induced up-regulation ofthe gene expression of CXCL14. Plays an important role in theregulation of epidermal keratinocyte differentiation, apoptosisand skin tumor development. Phosphorylates the transcriptionalactivator MYB in response to stress which leads to rapid MYBdegradation via a proteasome-dependent pathway. MAPK13 alsophosphorylates and down-regulates PRKD1 during regulation ofinsulin secretion in pancreatic beta cells.", "isseed": false, "uniprot": "O15264", "isvalid": true, "importance": 3 }, "position": { "x": 687.2747400718758, "y": 348.6435313966404 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK14", "altered": 0, "rank": 23, "cited": 2528, "uniprotdesc": "Serine/threonine kinase which acts as an essentialcomponent of the MAP kinase signal transduction pathway. MAPK14 isone of the four p38 MAPKs which play an important role in thecascades of cellular responses evoked by extracellular stimulisuch as proinflammatory cytokines or physical stress leading todirect activation of transcription factors. Accordingly, p38 MAPKsphosphorylate a broad range of proteins and it has been estimatedthat they may have approximately 200 to 300 substrates each. Someof the targets are downstream kinases which are activated throughphosphorylation and further phosphorylate additional targets.RPS6KA5/MSK1 and RPS6KA4/MSK2 can directly phosphorylate andactivate transcription factors such as CREB1, ATF1, the NF-kappa-Bisoform RELA/NFKB3, STAT1 and STAT3, but can also phosphorylatehistone H3 and the nucleosomal protein HMGN1. RPS6KA5/MSK1 andRPS6KA4/MSK2 play important roles in the rapid induction ofimmediate-early genes in response to stress or mitogenic stimuli,either by inducing chromatin remodeling or by recruiting thetranscription machinery. On the other hand, two other kinasetargets, MAPKAPK2/MK2 and MAPKAPK3/MK3, participate in the controlof gene expression mostly at the post-transcriptional level, byphosphorylating ZFP36 (tristetraprolin) and ELAVL1, and byregulating EEF2K, which is important for the elongation of mRNAduring translation. MKNK1/MNK1 and MKNK2/MNK2, two other kinasesactivated by p38 MAPKs, regulate protein synthesis byphosphorylating the initiation factor EIF4E2. MAPK14 interactsalso with casein kinase II, leading to its activation throughautophosphorylation and further phosphorylation of TP53/p53. Inthe cytoplasm, the p38 MAPK pathway is an important regulator ofprotein turnover. For example, CFLAR is an inhibitor of TNF-induced apoptosis whose proteasome-mediated degradation isregulated by p38 MAPK phosphorylation. In a similar way, MAPK14phosphorylates the ubiquitin ligase SIAH2, regulating its activitytowards EGLN3. MAPK14 may also inhibit the lysosomal degradationpathway of autophagy by interfering with the intracellulartrafficking of the transmembrane protein ATG9. Another function ofMAPK14 is to regulate the endocytosis of membrane receptors bydifferent mechanisms that impinge on the small GTPase RAB5A. Inaddition, clathrin-mediated EGFR internalization induced byinflammatory cytokines and UV irradiation depends on MAPK14-mediated phosphorylation of EGFR itself as well as of RAB5Aeffectors. Ectodomain shedding of transmembrane proteins isregulated by p38 MAPKs as well. In response to inflammatorystimuli, p38 MAPKs phosphorylate the membrane-associatedmetalloprotease ADAM17. Such phosphorylation is required forADAM17-mediated ectodomain shedding of TGF-alpha family ligands,which results in the activation of EGFR signaling and cellproliferation. Another p38 MAPK substrate is FGFR1. FGFR1 can betranslocated from the extracellular space into the cytosol andnucleus of target cells, and regulates processes such as rRNAsynthesis and cell growth. FGFR1 translocation requires p38 MAPKactivation. In the nucleus, many transcription factors arephosphorylated and activated by p38 MAPKs in response to differentstimuli. Classical examples include ATF1, ATF2, ATF6, ELK1, PTPRH,DDIT3, TP53/p53 and MEF2C and MEF2A. The p38 MAPKs are emerging asimportant modulators of gene expression by regulating chromatinmodifiers and remodelers. The promoters of several genes involvedin the inflammatory response, such as IL6, IL8 and IL12B, displaya p38 MAPK-dependent enrichment of histone H3 phosphorylation on'Ser-10' (H3S10ph) in LPS-stimulated myeloid cells. Thisphosphorylation enhances the accessibility of the cryptic NF-kappa-B-binding sites marking promoters for increased NF-kappa-Brecruitment. Phosphorylates CDC25B and CDC25C which is requiredfor binding to 14-3-3 proteins and leads to initiation of a G2delay after ultraviolet radiation. Phosphorylates TIAR followingDNA damage, releasing TIAR from GADD45A mRNA and preventing mRNAdegradation. The p38 MAPKs may also have kinase-independent roles,which are thought to be due to the binding to targets in theabsence of phosphorylation. Protein O-Glc-N-acylation catalyzed bythe OGT is regulated by MAPK14, and, although OGT does not seem tobe phosphorylated by MAPK14, their interaction increases uponMAPK14 activation induced by glucose deprivation. This interactionmay regulate OGT activity by recruiting it to specific targetssuch as neurofilament H, stimulating its O-Glc-N-acylation.Required in mid-fetal development for the growth of embryo-derivedblood vessels in the labyrinth layer of the placenta. Also playsan essential role in developmental and stress-inducederythropoiesis, through regulation of EPO gene expression. IsoformMXI2 activation is stimulated by mitogens and oxidative stress andonly poorly phosphorylates ELK1 and ATF2. Isoform EXIP may play arole in the early onset of apoptosis. Phosphorylates S100A9 at'Thr-113'. ", "isseed": false, "uniprot": "Q16539", "isvalid": true, "importance": 3 }, "position": { "x": 705.1137353610045, "y": 372.7634453076487 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAB2", "altered": 0, "rank": 189, "cited": 4, "uniprotdesc": "Non-catalytic subunit of AMP-activated protein kinase(AMPK), an energy sensor protein kinase that plays a key role inregulating cellular energy metabolism. In response to reduction ofintracellular ATP levels, AMPK activates energy-producing pathwaysand inhibits energy-consuming processes: inhibits protein,carbohydrate and lipid biosynthesis, as well as cell growth andproliferation. AMPK acts via direct phosphorylation of metabolicenzymes, and by longer-term effects via phosphorylation oftranscription regulators. Also acts as a regulator of cellularpolarity by remodeling the actin cytoskeleton; probably byindirectly activating myosin. Beta non-catalytic subunit acts as ascaffold on which the AMPK complex assembles, via its C-terminusthat bridges alpha (PRKAA1 or PRKAA2) and gamma subunits (PRKAG1,PRKAG2 or PRKAG3).", "isseed": false, "uniprot": "O43741", "isvalid": true, "importance": 3 }, "position": { "x": 718.6198477055347, "y": 399.5512210521357 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAB1", "altered": 0, "rank": 73, "cited": 368, "uniprotdesc": "Non-catalytic subunit of AMP-activated protein kinase(AMPK), an energy sensor protein kinase that plays a key role inregulating cellular energy metabolism. In response to reduction ofintracellular ATP levels, AMPK activates energy-producing pathwaysand inhibits energy-consuming processes: inhibits protein,carbohydrate and lipid biosynthesis, as well as cell growth andproliferation. AMPK acts via direct phosphorylation of metabolicenzymes, and by longer-term effects via phosphorylation oftranscription regulators. Also acts as a regulator of cellularpolarity by remodeling the actin cytoskeleton; probably byindirectly activating myosin. Beta non-catalytic subunit acts as ascaffold on which the AMPK complex assembles, via its C-terminusthat bridges alpha (PRKAA1 or PRKAA2) and gamma subunits (PRKAG1,PRKAG2 or PRKAG3).", "isseed": false, "uniprot": "Q9Y478", "isvalid": true, "importance": 3 }, "position": { "x": 476.5577136594006, "y": 420.49999999999994 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "EP300", "altered": 0, "rank": 19, "cited": 2835, "uniprotdesc": "Functions as histone acetyltransferase and regulatestranscription via chromatin remodeling. Acetylates all four corehistones in nucleosomes. Histone acetylation gives an epigenetictag for transcriptional activation. Mediates cAMP-gene regulationby binding specifically to phosphorylated CREB protein. Mediatesacetylation of histone H3 at 'Lys-122' (H3K122ac), a modificationthat localizes at the surface of the histone octamer andstimulates transcription, possibly by promoting nucleosomeinstability. Mediates acetylation of histone H3 at 'Lys-27'(H3K27ac). Also functions as acetyltransferase for nonhistonetargets. Acetylates 'Lys-131' of ALX1 and acts as its coactivatorin the presence of CREBBP. Acetylates SIRT2 and is proposed toindirectly increase the transcriptional activity of TP53 throughacetylation and subsequent attenuation of SIRT2 deacetylasefunction. Acetylates HDAC1 leading to its inactivation andmodulation of transcription. Acts as a TFAP2A-mediatedtranscriptional coactivator in presence of CITED2. Plays a role asa coactivator of NEUROD1-dependent transcription of the secretinand p21 genes and controls terminal differentiation of cells inthe intestinal epithelium. Promotes cardiac myocyte enlargement.Can also mediate transcriptional repression. Binds to and may beinvolved in the transforming capacity of the adenovirus E1Aprotein. In case of HIV-1 infection, it is recruited by the viralprotein Tat. Regulates Tat's transactivating activity and may helpinducing chromatin remodeling of proviral genes. Acetylates FOXO1and enhances its transcriptional activity. Acetylates BCL6 wichdisrupts its ability to recruit histone deacetylases and hindersits transcriptional repressor activity. Participates in CLOCK orNPAS2-regulated rhythmic gene transcription; exhibits a circadianassociation with CLOCK or NPAS2, correlating with increase inPER1/2 mRNA and histone H3 acetylation on the PER1/2 promoter.Acetylates MTA1 at 'Lys-626' which is essential for itstranscriptional coactivator activity (PubMed:10733570,PubMed:11430825, PubMed:11701890, PubMed:12402037,PubMed:12586840, PubMed:12929931, PubMed:14645221,PubMed:15186775, PubMed:15890677, PubMed:16617102,PubMed:16762839, PubMed:18722353, PubMed:18995842,PubMed:23415232, PubMed:23911289, PubMed:23934153,PubMed:8945521). Acetylates XBP1 isoform 2; acetylation increasesprotein stability of XBP1 isoform 2 and enhances itstranscriptional activity (By similarity).", "isseed": false, "uniprot": "Q09472", "isvalid": true, "importance": 3 }, "position": { "x": 476.5577136594005, "y": 510.5 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "IGBP1", "altered": 0, "rank": 125, "cited": 89, "uniprotdesc": "Associated to surface IgM-receptor; may be involved insignal transduction. Involved in regulation of the catalyticactivity of the phosphatases PP2A, PP4 and PP6 by protecting theirpartially folded catalytic subunits from degradativepolyubiquitination until they associate with regulatory subunits.", "isseed": false, "uniprot": "P78318", "isvalid": true, "importance": 3 }, "position": { "x": 729.941829340353, "y": 487.96620513822 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "FBXO11", "altered": 0, "rank": 188, "cited": 5, "uniprotdesc": "Substrate recognition component of a SCF (SKP1-CUL1-F-box protein) E3 ubiquitin-protein ligase complex which mediatesthe ubiquitination and subsequent proteasomal degradation oftarget proteins, such as DTL/CDT2, BCL6 and PRDM1/BLIMP1. TheSCF(FBXO11) complex mediates ubiquitination and degradation ofBCL6, thereby playing a role in the germinal center B-cellsterminal differentiation toward memory B-cells and plasma cells.The SCF(FBXO11) complex also mediates ubiquitination anddegradation of DTL, an important step for the regulation of TGF-beta signaling, cell migration and the timing of the cell-cycleprogression and exit. Binds to and neddylates phosphorylatedp53/TP53, inhibiting its transcriptional activity. SCF(FBXO11)does not seem to direct ubiquitination of p53/TP53.", "isseed": false, "uniprot": "Q86XK2", "isvalid": true, "importance": 3 }, "position": { "x": 481.64519932573637, "y": 626.6730246484053 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HMGB1", "altered": 0, "rank": 54, "cited": 617, "uniprotdesc": "DNA binding proteins that associates with chromatin andhas the ability to bend DNA. Binds preferentially single-strandedDNA. Involved in V(D)J recombination by acting as a cofactor ofthe RAG complex. Acts by stimulating cleavage and RAG proteinbinding at the 23 bp spacer of conserved recombination signalsequences (RSS). Heparin-binding protein that has a role in theextension of neurite-type cytoplasmic processes in developingcells (By similarity). ", "isseed": false, "uniprot": "P09429", "isvalid": true, "importance": 3 }, "position": { "x": 712.435756907072, "y": 545.1295331255459 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "NEDD8", "altered": 0, "rank": 205, "cited": 236, "uniprotdesc": "Ubiquitin-like protein which plays an important role incell cycle control and embryogenesis. Covalent attachment to itssubstrates requires prior activation by the E1 complex UBE1C-APPBP1 and linkage to the E2 enzyme UBE2M. Attachment of NEDD8 tocullins activates their associated E3 ubiquitin ligase activity,and thus promotes polyubiquitination and proteasomal degradationof cyclins and other regulatory proteins.", "isseed": false, "uniprot": "Q15843", "isvalid": true, "importance": 2 }, "position": { "x": 432.1137033013474, "y": 593.195576415127 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "ASF1A", "altered": 0, "rank": 161, "cited": 27, "uniprotdesc": "Histone chaperone that facilitates histone depositionand histone exchange and removal during nucleosome assembly anddisassembly. Cooperates with chromatin assembly factor 1 (CAF-1)to promote replication-dependent chromatin assembly and with HIRAto promote replication-independent chromatin assembly. Requiredfor the formation of senescence-associated heterochromatin foci(SAHF) and efficient senescence-associated cell cycle exit.", "isseed": false, "uniprot": "Q9Y294", "isvalid": true, "importance": 3 }, "position": { "x": 412.29346159964496, "y": 570.6754072575452 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "KAT8", "altered": 0, "rank": 199, "cited": 0, "uniprotdesc": "Histone acetyltransferase which may be involved intranscriptional activation. May influence the function of ATM. Aspart of the MSL complex it is involved in acetylation ofnucleosomal histone H4 producing specifically H4K16ac. As part ofthe NSL complex it may be involved in acetylation of nucleosomalhistone H4 on several lysine residues. That activity is lessspecific than the one of the MSL complex. Can also acetylateTP53/p53 at 'Lys-120'. ", "isseed": false, "uniprot": "Q9H7Z6", "isvalid": true, "importance": 3 }, "position": { "x": 452.21985952208775, "y": 707.5238675129558 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HTT", "altered": 0, "rank": 43, "cited": 858, "uniprotdesc": "May play a role in microtubule-mediated transport orvesicle function.", "isseed": false, "uniprot": "P42858", "isvalid": true, "importance": 3 }, "position": { "x": 632.4422863405995, "y": 510.5 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "WRN", "altered": 0, "rank": 53, "cited": 621, "uniprotdesc": "Multifunctional enzyme that has both magnesium and ATP-dependent DNA-helicase activity and 3'->5' exonuclease activitytowards double-stranded DNA with a 5'-overhang. Has no nucleaseactivity towards single-stranded DNA or blunt-ended double-stranded DNA. Binds preferentially to DNA substrates containingalternate secondary structures, such as replication forks andHolliday junctions. May play an important role in the dissociationof joint DNA molecules that can arise as products of homologousrecombination, at stalled replication forks or during DNA repair.Alleviates stalling of DNA polymerases at the site of DNA lesions.Important for genomic integrity. Plays a role in the formation ofDNA replication focal centers; stably associates with focielements generating binding sites for RP-A (By similarity). Playsa role in double-strand break repair after gamma-irradiation.", "isseed": false, "uniprot": "Q14191", "isvalid": true, "importance": 3 }, "position": { "x": 676.8862966986526, "y": 593.1955764151269 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDKN1A", "altered": 0, "rank": 9, "cited": 4784, "uniprotdesc": "May be the important intermediate by which p53/TP53mediates its role as an inhibitor of cellular proliferation inresponse to DNA damage. Binds to and inhibits cyclin-dependentkinase activity, preventing phosphorylation of critical cyclin-dependent kinase substrates and blocking cell cycle progression.Functions in the nuclear localization and assembly of cyclin D-CDK4 complex and promotes its kinase activity towards RB1. Athigher stoichiometric ratios, inhibits the kinase activity of thecyclin D-CDK4 complex. ", "isseed": false, "uniprot": "P38936", "isvalid": true, "importance": 3 }, "position": { "x": 653.5452240690994, "y": 612.0421763339962 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PLK3", "altered": 0, "rank": 115, "cited": 130, "uniprotdesc": "Serine/threonine-protein kinase involved in cell cycleregulation, response to stress and Golgi disassembly. Polo-likekinases act by binding and phosphorylating proteins are thatalready phosphorylated on a specific motif recognized by the POLObox domains. Phosphorylates ATF2, BCL2L1, CDC25A, CDC25C, CHEK2,HIF1A, JUN, p53/TP53, p73/TP73, PTEN, TOP2A and VRK1. Involved incell cycle regulation: required for entry into S phase andcytokinesis. Phosphorylates BCL2L1, leading to regulate the G2checkpoint and progression to cytokinesis during mitosis. Plays akey role in response to stress: rapidly activated upon stressstimulation, such as ionizing radiation, reactive oxygen species(ROS), hyperosmotic stress, UV irradiation and hypoxia. Involvedin DNA damage response and G1/S transition checkpoint byphosphorylating CDC25A, p53/TP53 and p73/TP73. Phosphorylatesp53/TP53 in response to reactive oxygen species (ROS), therebypromoting p53/TP53-mediated apoptosis. Phosphorylates CHEK2 inresponse to DNA damage, promoting the G2/M transition checkpoint.Phosphorylates the transcription factor p73/TP73 in response toDNA damage, leading to inhibit p73/TP73-mediated transcriptionalactivation and pro-apoptotic functions. Phosphorylates HIF1A andJUN is response to hypoxia. Phosphorylates ATF2 followinghyperosmotic stress in corneal epithelium. Also involved in Golgidisassembly during the cell cycle: part of a MEK1/MAP2K1-dependentpathway that induces Golgi fragmentation during mitosis bymediating phosphorylation of VRK1. May participate in endomitoticcell cycle, a form of mitosis in which both karyokinesis andcytokinesis are interrupted and is a hallmark of megakaryocytedifferentiation, via its interaction with CIB1.", "isseed": false, "uniprot": "Q9H4B4", "isvalid": true, "importance": 3 }, "position": { "x": 377.7849345637625, "y": 457.9932361520796 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "DYRK1A", "altered": 0, "rank": 128, "cited": 81, "uniprotdesc": "May play a role in a signaling pathway regulatingnuclear functions of cell proliferation. Modulates alternativesplicing by phosphorylating the splice factor SRSF6 (Bysimilarity). Phosphorylates serine, threonine and tyrosineresidues in its sequence and in exogenous substrates such as CRY2,FOXO1, SRSF6 and SIRT1. Exhibits a sugstrate preference forproline at position P+1 and arginine at position P-3.", "isseed": false, "uniprot": "Q13627", "isvalid": true, "importance": 3 }, "position": { "x": 584.451073117784, "y": 204.46415418337006 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAG1", "altered": 0, "rank": 177, "cited": 11, "uniprotdesc": "AMP/ATP-binding subunit of AMP-activated protein kinase(AMPK), an energy sensor protein kinase that plays a key role inregulating cellular energy metabolism. In response to reduction ofintracellular ATP levels, AMPK activates energy-producing pathwaysand inhibits energy-consuming processes: inhibits protein,carbohydrate and lipid biosynthesis, as well as cell growth andproliferation. AMPK acts via direct phosphorylation of metabolicenzymes, and by longer-term effects via phosphorylation oftranscription regulators. Also acts as a regulator of cellularpolarity by remodeling the actin cytoskeleton; probably byindirectly activating myosin. Gamma non-catalytic subunit mediatesbinding to AMP, ADP and ATP, leading to activate or inhibit AMPK:AMP-binding results in allosteric activation of alpha catalyticsubunit (PRKAA1 or PRKAA2) both by inducing phosphorylation andpreventing dephosphorylation of catalytic subunits. ADP alsostimulates phosphorylation, without stimulating alreadyphosphorylated catalytic subunit. ATP promotes dephosphorylationof catalytic subunit, rendering the AMPK enzyme inactive.", "isseed": false, "uniprot": "P54619", "isvalid": true, "importance": 3 }, "position": { "x": 627.3548006742639, "y": 626.6730246484052 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CASP6", "altered": 0, "rank": 104, "cited": 161, "uniprotdesc": "Involved in the activation cascade of caspasesresponsible for apoptosis execution. Cleaves poly(ADP-ribose)polymerase in vitro, as well as lamins. Overexpression promotesprogrammed cell death.", "isseed": false, "uniprot": "P55212", "isvalid": true, "importance": 3 }, "position": { "x": 642.7964774016498, "y": 218.03179666759164 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAX", "altered": 0, "rank": 158, "cited": 28, "uniprotdesc": "Transcription regulator. Forms a sequence-specific DNA-binding protein complex with MYC or MAD which recognizes the coresequence 5'-CAC[GA]TG-3'. The MYC:MAX complex is a transcriptionalactivator, whereas the MAD:MAX complex is a repressor. May represstranscription via the recruitment of a chromatin remodelingcomplex containing H3 'Lys-9' histone methyltransferase activity.", "isseed": false, "uniprot": "P61244", "isvalid": true, "importance": 3 }, "position": { "x": 524.5489268822162, "y": 204.46415418337 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "FOS", "altered": 0, "rank": 61, "cited": 496, "uniprotdesc": "Nuclear phosphoprotein which forms a tight but non-covalently linked complex with the JUN/AP-1 transcription factor.In the heterodimer, FOS and JUN/AP-1 basic regions each seems tointeract with symmetrical DNA half sites. On TGF-beta activation,forms a multimeric SMAD3/SMAD4/JUN/FOS complex at the AP1/SMAD-binding site to regulate TGF-beta-mediated signaling. Has acritical function in regulating the development of cells destinedto form and maintain the skeleton. It is thought to have animportant role in signal transduction, cell proliferation anddifferentiation. In growing cells, activates phospholipidsynthesis, possibly by activating CDS1 and PI4K2A. This activityrequires Tyr-dephosphorylation and association with theendoplasmic reticulum. ", "isseed": false, "uniprot": "P01100", "isvalid": true, "importance": 3 }, "position": { "x": 696.5525693086885, "y": 244.46188759648143 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53I3", "altered": 0, "rank": 152, "cited": 39, "uniprotdesc": "May be involved in the generation of reactive oxygenspecies (ROS). Has low NADPH-dependent beta-naphthoquinonereductase activity, with a preference for 1,2-beta-naphthoquinoneover 1,4-beta-naphthoquinone. Has low NADPH-dependent diaminereductase activity (in vitro). ", "isseed": false, "uniprot": "Q53FA7", "isvalid": true, "importance": 3 }, "position": { "x": 720.823079139937, "y": 262.0954451652557 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRMT1", "altered": 0, "rank": 206, "cited": 189, "uniprotdesc": "Arginine methyltransferase that methylates (mono andasymmetric dimethylation) the guanidino nitrogens of arginylresidues present in proteins such as ESR1, histone H2, H3 and H4,PIAS1, HNRNPA1, HNRNPD, NFATC2IP, SUPT5H, TAF15 and EWS.Constitutes the main enzyme that mediates monomethylation andasymmetric dimethylation of histone H4 'Arg-4' (H4R3me1 andH4R3me2a, respectively), a specific tag for epigenetictranscriptional activation. Together with dimethylated PIAS1,represses STAT1 transcriptional activity, in the late phase ofinterferon gamma (IFN-gamma) signaling. May be involved in theregulation of TAF15 transcriptional activity, act as an activatorof estrogen receptor (ER)-mediated transactivation, play a keyrole in neurite outgrowth and act as a negative regulator ofmegakaryocytic differentiation, by modulating p38 MAPK pathway.Methylates FOXO1 and retains it in the nucleus increasing itstranscriptional activity. ", "isseed": false, "uniprot": "Q99873", "isvalid": true, "importance": 2 }, "position": { "x": 742.9253132762292, "y": 282.3806921734763 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PCBP4", "altered": 0, "rank": 165, "cited": 20, "uniprotdesc": "Single-stranded nucleic acid binding protein that bindspreferentially to oligo dC. ", "isseed": false, "uniprot": "P57723", "isvalid": true, "importance": 3 }, "position": { "x": 762.5711352945876, "y": 305.05317940410396 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRMT5", "altered": 0, "rank": 118, "cited": 111, "uniprotdesc": "Arginine methyltransferase that can both catalyze theformation of omega-N monomethylarginine (MMA) and symmetricaldimethylarginine (sDMA), with a preference for the formation ofMMA. Specifically mediates the symmetrical dimethylation ofarginine residues in the small nuclear ribonucleoproteins Sm D1(SNRPD1) and Sm D3 (SNRPD3); such methylation being required forthe assembly and biogenesis of snRNP core particles. MethylatesSUPT5H. Mono- and dimethylates arginine residues of myelin basicprotein (MBP) in vitro. Plays a role in the assembly of snRNP coreparticles. May play a role in cytokine-activated transductionpathways. Negatively regulates cyclin E1 promoter activity andcellular proliferation. May regulate the SUPT5H transcriptionalelongation properties. May be part of a pathway that is connectedto a chloride current, possibly through cytoskeletalrearrangement. Methylates histone H2A and H4 'Arg-3' during germcell development. Methylates histone H3 'Arg-8', which may represstranscription. Methylates the Piwi proteins (PIWIL1, PIWIL2 andPIWIL4), methylation of Piwi proteins being required for theinteraction with Tudor domain-containing proteins and subsequentlocalization to the meiotic nuage. Methylates RPS10. AttenuatesEGF signaling through the MAPK1/MAPK3 pathway acting at 2 levels.First, monomethylates EGFR; this enhances EGFR 'Tyr-1197'phosphorylation and PTPN6 recruitment, eventually leading toreduced SOS1 phosphorylation. Second, methylates RAF1 and probablyBRAF, hence destabilizing these 2 signaling proteins and reducingtheir catalytic activity. Required for induction of E-selectin andVCAM-1, on the endothelial cells surface at sites of inflammation.Methylates HOXA9. Methylates and regulates SRGAP2 which isinvolved in cell migration and differentiation. Acts as atranscriptional corepressor in CRY1-mediated repression of thecore circadian component PER1 by regulating the H4R3 dimethylationat the PER1 promoter. ", "isseed": false, "uniprot": "O14744", "isvalid": true, "importance": 3 }, "position": { "x": 779.5044318605908, "y": 329.8173363129873 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "E4F1", "altered": 0, "rank": 150, "cited": 47, "uniprotdesc": "May function as a transcriptional repressor. May alsofunction as a ubiquitin ligase mediating ubiquitination ofchromatin-associated TP53. Functions in cell survival andproliferation through control of the cell cycle. Functions in thep53 and pRB tumor suppressor pathways and regulates the cyclinCCNA2 transcription.Identified as a cellular target of the adenoviraloncoprotein E1A, it is required for both transcriptionalactivation and repression of viral genes.", "isseed": false, "uniprot": "Q66K89", "isvalid": true, "importance": 3 }, "position": { "x": 793.504451557361, "y": 356.35032424292166 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CASP1", "altered": 0, "rank": 64, "cited": 473, "uniprotdesc": "Thiol protease that cleaves IL-1 beta between an Asp andan Ala, releasing the mature cytokine which is involved in avariety of inflammatory processes. Important for defense againstpathogens. Cleaves and activates sterol regulatory element bindingproteins (SREBPs). Can also promote apoptosis.", "isseed": false, "uniprot": "P29466", "isvalid": true, "importance": 3 }, "position": { "x": 804.3886827178802, "y": 384.3062451192652 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKCA", "altered": 0, "rank": 84, "cited": 275, "uniprotdesc": "Calcium-activated, phospholipid- and diacylglycerol(DAG)-dependent serine/threonine-protein kinase that is involvedin positive and negative regulation of cell proliferation,apoptosis, differentiation, migration and adhesion, tumorigenesis,cardiac hypertrophy, angiogenesis, platelet function andinflammation, by directly phosphorylating targets such as RAF1,BCL2, CSPG4, TNNT2/CTNT, or activating signaling cascade involvingMAPK1/3 (ERK1/2) and RAP1GAP. Involved in cell proliferation andcell growth arrest by positive and negative regulation of the cellcycle. Can promote cell growth by phosphorylating and activatingRAF1, which mediates the activation of the MAPK/ERK signalingcascade, and/or by up-regulating CDKN1A, which facilitates activecyclin-dependent kinase (CDK) complex formation in glioma cells.In intestinal cells stimulated by the phorbol ester PMA, cantrigger a cell cycle arrest program which is associated with theaccumulation of the hyper-phosphorylated growth-suppressive formof RB1 and induction of the CDK inhibitors CDKN1A and CDKN1B.Exhibits anti-apoptotic function in glioma cells and protects themfrom apoptosis by suppressing the p53/TP53-mediated activation ofIGFBP3, and in leukemia cells mediates anti-apoptotic action byphosphorylating BCL2. During macrophage differentiation induced bymacrophage colony-stimulating factor (CSF1), is translocated tothe nucleus and is associated with macrophage development. Afterwounding, translocates from focal contacts to lamellipodia andparticipates in the modulation of desmosomal adhesion. Plays arole in cell motility by phosphorylating CSPG4, which inducesassociation of CSPG4 with extensive lamellipodia at the cellperiphery and polarization of the cell accompanied by increases incell motility. Is highly expressed in a number of cancer cellswhere it can act as a tumor promoter and is implicated inmalignant phenotypes of several tumors such as gliomas and breastcancers. Negatively regulates myocardial contractility andpositively regulates angiogenesis, platelet aggregation andthrombus formation in arteries. Mediates hypertrophic growth ofneonatal cardiomyocytes, in part through a MAPK1/3 (ERK1/2)-dependent signaling pathway, and upon PMA treatment, is requiredto induce cardiomyocyte hypertrophy up to heart failure and death,by increasing protein synthesis, protein-DNA ratio and cellsurface area. Regulates cardiomyocyte function by phosphorylatingcardiac troponin T (TNNT2/CTNT), which induces significantreduction in actomyosin ATPase activity, myofilament calciumsensitivity and myocardial contractility. In angiogenesis, isrequired for full endothelial cell migration, adhesion tovitronectin (VTN), and vascular endothelial growth factor A(VEGFA)-dependent regulation of kinase activation and vasculartube formation. Involved in the stabilization of VEGFA mRNA atpost-transcriptional level and mediates VEGFA-induced cellproliferation. In the regulation of calcium-induced plateletaggregation, mediates signals from the CD36/GP4 receptor forgranule release, and activates the integrin heterodimer ITGA2B-ITGB3 through the RAP1GAP pathway for adhesion. During response tolipopolysaccharides (LPS), may regulate selective LPS-inducedmacrophage functions involved in host defense and inflammation.But in some inflammatory responses, may negatively regulate NF-kappa-B-induced genes, through IL1A-dependent induction of NF-kappa-B inhibitor alpha (NFKBIA/IKBA). Upon stimulation with 12-O-tetradecanoylphorbol-13-acetate (TPA), phosphorylates EIF4G1,which modulates EIF4G1 binding to MKNK1 and may be involved in theregulation of EIF4E phosphorylation. Phosphorylates KIT, leadingto inhibition of KIT activity. Phosphorylates ATF2 which promotescooperation between ATF2 and JUN, activating transcription.", "isseed": false, "uniprot": "P17252", "isvalid": true, "importance": 3 }, "position": { "x": 812.0152327436849, "y": 413.32065076032404 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK1", "altered": 0, "rank": 27, "cited": 2149, "uniprotdesc": "Plays a key role in the control of the eukaryotic cellcycle by modulating the centrosome cycle as well as mitotic onset;promotes G2-M transition, and regulates G1 progress and G1-Stransition via association with multiple interphase cyclins.Required in higher cells for entry into S-phase and mitosis.Phosphorylates PARVA/actopaxin, APC, AMPH, APC, BARD1, Bcl-xL/BCL2L1, BRCA2, CALD1, CASP8, CDC7, CDC20, CDC25A, CDC25C,CC2D1A, CSNK2 proteins/CKII, FZR1/CDH1, CDK7, CEBPB, CHAMP1,DMD/dystrophin, EEF1 proteins/EF-1, EZH2, KIF11/EG5, EGFR, FANCG,FOS, GFAP, GOLGA2/GM130, GRASP1, UBE2A/hHR6A, HIST1H1proteins/histone H1, HMGA1, HIVEP3/KRC, LMNA, LMNB, LMNC, LBR,LATS1, MAP1B, MAP4, MARCKS, MCM2, MCM4, MKLP1, MYB, NEFH, NFIC,NPC/nuclear pore complex, PITPNM1/NIR2, NPM1, NCL, NUCKS1,NPM1/numatrin, ORC1, PRKAR2A, EEF1E1/p18, EIF3F/p47, p53/TP53,NONO/p54NRB, PAPOLA, PLEC/plectin, RB1, UL40/R2, RAB4A, RAP1GAP,RCC1, RPS6KB1/S6K1, KHDRBS1/SAM68, ESPL1, SKI, BIRC5/survivin,STIP1, TEX14, beta-tubulins, MAPT/TAU, NEDD1, VIM/vimentin, TK1,FOXO1, RUNX1/AML1, SIRT2 and RUNX2. CDK1/CDC2-cyclin-B controlspronuclear union in interphase fertilized eggs. Essential forearly stages of embryonic development. During G2 and earlymitosis, CDC25A/B/C-mediated dephosphorylation activatesCDK1/cyclin complexes which phosphorylate several substrates thattrigger at least centrosome separation, Golgi dynamics, nuclearenvelope breakdown and chromosome condensation. Once chromosomesare condensed and aligned at the metaphase plate, CDK1 activity isswitched off by WEE1- and PKMYT1-mediated phosphorylation to allowsister chromatid separation, chromosome decondensation,reformation of the nuclear envelope and cytokinesis. Inactivatedby PKR/EIF2AK2- and WEE1-mediated phosphorylation upon DNA damageto stop cell cycle and genome replication at the G2 checkpointthus facilitating DNA repair. Reactivated after successful DNArepair through WIP1-dependent signaling leading to CDC25A/B/C-mediated dephosphorylation and restoring cell cycle progression.In proliferating cells, CDK1-mediated FOXO1 phosphorylation at theG2-M phase represses FOXO1 interaction with 14-3-3 proteins andthereby promotes FOXO1 nuclear accumulation and transcriptionfactor activity, leading to cell death of postmitotic neurons. Thephosphorylation of beta-tubulins regulates microtubule dynamicsduring mitosis. NEDD1 phosphorylation promotes PLK1-mediated NEDD1phosphorylation and subsequent targeting of the gamma-tubulin ringcomplex (gTuRC) to the centrosome, an important step for spindleformation. In addition, CC2D1A phosphorylation regulates CC2D1Aspindle pole localization and association with SCC1/RAD21 andcentriole cohesion during mitosis. The phosphorylation of Bcl-xL/BCL2L1 after prolongated G2 arrest upon DNA damage triggersapoptosis. In contrast, CASP8 phosphorylation during mitosisprevents its activation by proteolysis and subsequent apoptosis.This phosphorylation occurs in cancer cell lines, as well as inprimary breast tissues and lymphocytes. EZH2 phosphorylationpromotes H3K27me3 maintenance and epigenetic gene silencing. CALD1phosphorylation promotes Schwann cell migration during peripheralnerve regeneration. ", "isseed": false, "uniprot": "P06493", "isvalid": true, "importance": 3 }, "position": { "x": 816.2846778918833, "y": 443.01529401675197 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK9", "altered": 0, "rank": 66, "cited": 448, "uniprotdesc": "Protein kinase involved in the regulation oftranscription. Member of the cyclin-dependent kinase pair(CDK9/cyclin-T) complex, also called positive transcriptionelongation factor b (P-TEFb), which facilitates the transitionfrom abortive to productive elongation by phosphorylating the CTD(C-terminal domain) of the large subunit of RNA polymerase II(RNAP II) POLR2A, SUPT5H and RDBP. This complex is inactive whenin the 7SK snRNP complex form. Phosphorylates EP300, MYOD1,RPB1/POLR2A and AR, and the negative elongation factors DSIF andNELF. Regulates cytokine inducible transcription networks byfacilitating promoter recognition of target transcription factors(e.g. TNF-inducible RELA/p65 activation and IL-6-inducible STAT3signaling). Promotes RNA synthesis in genetic programs for cellgrowth, differentiation and viral pathogenesis. P-TEFb is alsoinvolved in cotranscriptional histone modification, mRNAprocessing and mRNA export. Modulates a complex network ofchromatin modifications including histone H2B monoubiquitination(H2Bub1), H3 lysine 4 trimethylation (H3K4me3) and H3K36me3;integrates phosphorylation during transcription with chromatinmodifications to control co-transcriptional histone mRNAprocessing. The CDK9/cyclin-K complex has also a kinase activitytowards CTD of RNAP II and can substitute for CDK9/cyclin-T P-TEFbin vitro. Replication stress response protein; the CDK9/cyclin-Kcomplex is required for genome integrity maintenance, by promotingcell cycle recovery from replication arrest and limiting single-stranded DNA amount in response to replication stress, thusreducing the breakdown of stalled replication forks and avoidingDNA damage. In addition, probable function in DNA repair ofisoform 2 via interaction with KU70/XRCC6. Promotes cardiacmyocyte enlargement. RPB1/POLR2A phosphorylation on 'Ser-2' in CTDactivates transcription. AR phosphorylation modulates ARtranscription factor promoter selectivity and cell growth. DSIFand NELF phosphorylation promotes transcription by inhibitingtheir negative effect. The phosphorylation of MYOD1 enhances itstranscriptional activity and thus promotes muscle differentiation.", "isseed": false, "uniprot": "P50750", "isvalid": true, "importance": 3 }, "position": { "x": 817.1413594156943, "y": 473.0030598015976 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "RB1", "altered": 0, "rank": 15, "cited": 3201, "uniprotdesc": "Key regulator of entry into cell division that acts as atumor suppressor. Promotes G0-G1 transition when phosphorylated byCDK3/cyclin-C. Acts as a transcription repressor of E2F1 targetgenes. The underphosphorylated, active form of RB1 interacts withE2F1 and represses its transcription activity, leading to cellcycle arrest. Directly involved in heterochromatin formation bymaintaining overall chromatin structure and, in particular, thatof constitutive heterochromatin by stabilizing histonemethylation. Recruits and targets histone methyltransferasesSUV39H1, SUV420H1 and SUV420H2, leading to epigenetictranscriptional repression. Controls histone H4 'Lys-20'trimethylation. Inhibits the intrinsic kinase activity of TAF1.Mediates transcriptional repression by SMARCA4/BRG1 by recruitinga histone deacetylase (HDAC) complex to the c-FOS promoter. Inresting neurons, transcription of the c-FOS promoter is inhibitedby BRG1-dependent recruitment of a phospho-RB1-HDAC1 repressorcomplex. Upon calcium influx, RB1 is dephosphorylated bycalcineurin, which leads to release of the repressor complex (Bysimilarity). In case of viral infections, interactions with SV40large T antigen, HPV E7 protein or adenovirus E1A protein inducethe disassembly of RB1-E2F1 complex thereby disrupting RB1'sactivity. ", "isseed": false, "uniprot": "P06400", "isvalid": true, "importance": 3 }, "position": { "x": 814.574109161329, "y": 502.89301172747827 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK7", "altered": 0, "rank": 72, "cited": 372, "uniprotdesc": "Serine/threonine kinase involved in cell cycle controland in RNA polymerase II-mediated RNA transcription. Cyclin-dependent kinases (CDKs) are activated by the binding to a cyclinand mediate the progression through the cell cycle. Each differentcomplex controls a specific transition between 2 subsequent phasesin the cell cycle. Required for both activation and complexformation of CDK1/cyclin-B during G2-M transition, and foractivation of CDK2/cyclins during G1-S transition (but not complexformation). CDK7 is the catalytic subunit of the CDK-activatingkinase (CAK) complex. Phosphorylates SPT5/SUPT5H, SF1/NR5A1,POLR2A, p53/TP53, CDK1, CDK2, CDK4, CDK6 and CDK11B/CDK11. CAKactivates the cyclin-associated kinases CDK1, CDK2, CDK4 and CDK6by threonine phosphorylation, thus regulating cell cycleprogression. CAK complexed to the core-TFIIH basal transcriptionfactor activates RNA polymerase II by serine phosphorylation ofthe repetitive C-terminal domain (CTD) of its large subunit(POLR2A), allowing its escape from the promoter and elongation ofthe transcripts. Phosphorylation of POLR2A in complex with DNApromotes transcription initiation by triggering dissociation fromDNA. Its expression and activity are constant throughout the cellcycle. Upon DNA damage, triggers p53/TP53 activation byphosphorylation, but is inactivated in turn by p53/TP53; thisfeedback loop may lead to an arrest of the cell cycle and of thetranscription, helping in cell recovery, or to apoptosis. Requiredfor DNA-bound peptides-mediated transcription and cellular growthinhibition. ", "isseed": false, "uniprot": "P50613", "isvalid": true, "importance": 3 }, "position": { "x": 808.6163951619568, "y": 532.2954885602501 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HMGA2", "altered": 0, "rank": 82, "cited": 280, "uniprotdesc": "Functions as a transcriptional regulator. Functions incell cycle regulation through CCNA2. Plays an important role inchromosome condensation during the meiotic G2/M transition ofspermatocytes. ", "isseed": false, "uniprot": "P52926", "isvalid": true, "importance": 3 }, "position": { "x": 390.3801522944653, "y": 399.55122105213593 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "DAPK3", "altered": 0, "rank": 112, "cited": 146, "uniprotdesc": "Serine/threonine kinase which is involved in theregulation of apoptosis, autophagy, transcription, translation andactin cytoskeleton reorganization. Involved in the regulation ofsmooth muscle contraction. Regulates both type I (caspase-dependent) apoptotic and type II (caspase-independent) autophagiccell deaths signal, depending on the cellular setting. Involved inregulation of starvation-induced autophagy. Regulates myosinphosphorylation in both smooth muscle and non-muscle cells. Insmooth muscle, regulates myosin either directly by phosphorylatingMYL12B and MYL9 or through inhibition of smooth muscle myosinphosphatase (SMPP1M) via phosphorylation of PPP1R12A; theinhibition of SMPP1M functions to enhance muscle responsiveness toCa(2+) and promote a contractile state. Phosphorylates MYL12B innon-muscle cells leading to reorganization of actin cytoskeleton.Isoform 2 can phosphorylate myosin, PPP1R12A and MYL12B.Overexpression leads to condensation of actin stress fibers intothick bundles. Involved in actin filament focal adhesion dynamics.The function in both reorganization of actin cytoskeleton andfocal adhesion dissolution is modulated by RhoD. Positivelyregulates canonical Wnt/beta-catenin signaling through interactionwith NLK and TCF7L2. Phosphorylates RPL13A on 'Ser-77' uponinterferon-gamma activation which is causing RPL13A release fromthe ribosome, RPL13A association with the GAIT complex and itssubsequent involvement in transcript-selective translationinhibition. Enhances transcription from AR-responsive promoters ina hormone- and kinase-dependent manner. Involved in regulation ofcell cycle progression and cell proliferation. May be a tumorsuppressor. ", "isseed": false, "uniprot": "O43293", "isvalid": true, "importance": 3 }, "position": { "x": 786.8834349406518, "y": 588.1161439097402 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HMGA1", "altered": 0, "rank": 111, "cited": 147, "uniprotdesc": "HMG-I/Y bind preferentially to the minor groove of A+Trich regions in double-stranded DNA. It is suggested that theseproteins could function in nucleosome phasing and in the 3'-endprocessing of mRNA transcripts. They are also involved in thetranscription regulation of genes containing, or in closeproximity to A+T-rich regions.", "isseed": false, "uniprot": "P17096", "isvalid": true, "importance": 3 }, "position": { "x": 403.8862646389955, "y": 372.7634453076488 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKCD", "altered": 0, "rank": 122, "cited": 90, "uniprotdesc": "Calcium-independent, phospholipid- and diacylglycerol(DAG)-dependent serine/threonine-protein kinase that playscontrasting roles in cell death and cell survival by functioningas a pro-apoptotic protein during DNA damage-induced apoptosis,but acting as an anti-apoptotic protein during cytokine receptor-initiated cell death, is involved in tumor suppression as well assurvival of several cancers, is required for oxygen radicalproduction by NADPH oxidase and acts as positive or negativeregulator in platelet functional responses. Negatively regulates Bcell proliferation and also has an important function in self-antigen induced B cell tolerance induction. Upon DNA damage,activates the promoter of the death-promoting transcription factorBCLAF1/Btf to trigger BCLAF1-mediated p53/TP53 gene transcriptionand apoptosis. In response to oxidative stress, interact with andactivate CHUK/IKKA in the nucleus, causing the phosphorylation ofp53/TP53. In the case of ER stress or DNA damage-inducedapoptosis, can form a complex with the tyrosine-protein kinaseABL1 which trigger apoptosis independently of p53/TP53. In cytosolcan trigger apoptosis by activating MAPK11 or MAPK14, inhibitingAKT1 and decreasing the level of X-linked inhibitor of apoptosisprotein (XIAP), whereas in nucleus induces apoptosis via theactivation of MAPK8 or MAPK9. Upon ionizing radiation treatment,is required for the activation of the apoptosis regulators BAX andBAK, which trigger the mitochondrial cell death pathway. Canphosphorylate MCL1 and target it for degradation which issufficient to trigger for BAX activation and apoptosis. Isrequired for the control of cell cycle progression both at G1/Sand G2/M phases. Mediates phorbol 12-myristate 13-acetate (PMA)-induced inhibition of cell cycle progression at G1/S phase by up-regulating the CDK inhibitor CDKN1A/p21 and inhibiting the cyclinCCNA2 promoter activity. In response to UV irradiation canphosphorylate CDK1, which is important for the G2/M DNA damagecheckpoint activation. Can protect glioma cells from the apoptosisinduced by TNFSF10/TRAIL, probably by inducing increasedphosphorylation and subsequent activation of AKT1. Is highlyexpressed in a number of cancer cells and promotes cell survivaland resistance against chemotherapeutic drugs by inducing cyclinD1 (CCND1) and hyperphosphorylation of RB1, and via several pro-survival pathways, including NF-kappa-B, AKT1 and MAPK1/3(ERK1/2). Can also act as tumor suppressor upon mitogenicstimulation with PMA or TPA. In N-formyl-methionyl-leucyl-phenylalanine (fMLP)-treated cells, is required for NCF1 (p47-phox) phosphorylation and activation of NADPH oxidase activity,and regulates TNF-elicited superoxide anion production inneutrophils, by direct phosphorylation and activation of NCF1 orindirectly through MAPK1/3 (ERK1/2) signaling pathways. May alsoplay a role in the regulation of NADPH oxidase activity ineosinophil after stimulation with IL5, leukotriene B4 or PMA. Incollagen-induced platelet aggregation, acts a negative regulatorof filopodia formation and actin polymerization by interactingwith and negatively regulating VASP phosphorylation. Downstream ofPAR1, PAR4 and CD36/GP4 receptors, regulates differentiallyplatelet dense granule secretion; acts as a positive regulator inPAR-mediated granule secretion, whereas it negatively regulatesCD36/GP4-mediated granule release. Phosphorylates MUC1 in the C-terminal and regulates the interaction between MUC1 and beta-catenin. The catalytic subunit phosphorylates 14-3-3 proteins(YWHAB, YWHAZ and YWHAH) in a sphingosine-dependent fashion (Bysimilarity). ", "isseed": false, "uniprot": "Q05655", "isvalid": true, "importance": 3 }, "position": { "x": 753.0720747024197, "y": 637.5636821949563 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "UBN1", "altered": 0, "rank": 180, "cited": 8, "uniprotdesc": "Acts as a novel regulator of senescence. Involved in theformation of senescence-associated heterochromatin foci (SAHF),which represses expression of proliferation-promoting genes. Bindsto proliferation-promoting genes. May be required for replication-independent chromatin assembly. ", "isseed": false, "uniprot": "Q9NPG3", "isvalid": true, "importance": 3 }, "position": { "x": 421.7252599281241, "y": 348.6435313966405 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK5", "altered": 0, "rank": 44, "cited": 837, "uniprotdesc": "Proline-directed serine/threonine-protein kinaseessential for neuronal cell cycle arrest and differentiation andmay be involved in apoptotic cell death in neuronal diseases bytriggering abortive cell cycle re-entry. Interacts with D1 and D3-type G1 cyclins. Phosphorylates SRC, NOS3, VIM/vimentin,p35/CDK5R1, MEF2A, SIPA1L1, SH3GLB1, PXN, PAK1, MCAM/MUC18, SEPT5,SYN1, DNM1, AMPH, SYNJ1, CDK16, RAC1, RHOA, CDC42, TONEBP/NFAT5,MAPT/TAU, MAP1B, histone H1, p53/TP53, HDAC1, APEX1, PTK2/FAK1,huntingtin/HTT, ATM, MAP2, NEFH and NEFM. Regulates severalneuronal development and physiological processes includingneuronal survival, migration and differentiation, axonal andneurite growth, synaptogenesis, oligodendrocyte differentiation,synaptic plasticity and neurotransmission, by phosphorylating keyproteins. Activated by interaction with CDK5R1 (p35) and CDK5R2(p39), especially in post-mitotic neurons, and promotes CDK5R1(p35) expression in an autostimulation loop. Phosphorylates manydownstream substrates such as Rho and Ras family small GTPases(e.g. PAK1, RAC1, RHOA, CDC42) or microtubule-binding proteins(e.g. MAPT/TAU, MAP2, MAP1B), and modulates actin dynamics toregulate neurite growth and/or spine morphogenesis. Phosphorylatesalso exocytosis associated proteins such as MCAM/MUC18, SEPT5,SYN1, and CDK16/PCTAIRE1 as well as endocytosis associatedproteins such as DNM1, AMPH and SYNJ1 at synaptic terminals. Inthe mature central nervous system (CNS), regulatesneurotransmitter movements by phosphorylating substratesassociated with neurotransmitter release and synapse plasticity;synaptic vesicle exocytosis, vesicles fusion with the presynapticmembrane, and endocytosis. Promotes cell survival by activatinganti-apoptotic proteins BCL2 and STAT3, and negatively regulatingof JNK3/MAPK10 activity. Phosphorylation of p53/TP53 in responseto genotoxic and oxidative stresses enhances its stabilization bypreventing ubiquitin ligase-mediated proteasomal degradation, andinduces transactivation of p53/TP53 target genes, thus regulatingapoptosis. Phosphorylation of p35/CDK5R1 enhances itsstabilization by preventing calpain-mediated proteolysis producingp25/CDK5R1 and avoiding ubiquitin ligase-mediated proteasomaldegradation. During aberrant cell-cycle activity and DNA damage,p25/CDK5 activity elicits cell-cycle activity and double-strandDNA breaks that precedes neuronal death by deregulating HDAC1. DNAdamage triggered phosphorylation of huntingtin/HTT in nuclei ofneurons protects neurons against polyglutamine expansion as wellas DNA damage mediated toxicity. Phosphorylation of PXN reducesits interaction with PTK2/FAK1 in matrix-cell focal adhesions(MCFA) during oligodendrocytes (OLs) differentiation. Negativeregulator of Wnt/beta-catenin signaling pathway. Activator of theGAIT (IFN-gamma-activated inhibitor of translation) pathway, whichsuppresses expression of a post-transcriptional regulon ofproinflammatory genes in myeloid cells; phosphorylates the linkerdomain of glutamyl-prolyl tRNA synthetase (EPRS) in a IFN-gamma-dependent manner, the initial event in assembly of the GAITcomplex. Phosphorylation of SH3GLB1 is required for autophagyinduction in starved neurons. Phosphorylation of TONEBP/NFAT5 inresponse to osmotic stress mediates its rapid nuclearlocalization. MEF2 is inactivated by phosphorylation in nucleus inresponse to neurotoxin, thus leading to neuronal apoptosis. APEX1AP-endodeoxyribonuclease is repressed by phosphorylation,resulting in accumulation of DNA damage and contributing toneuronal death. NOS3 phosphorylation down regulates NOS3-derivednitrite (NO) levels. SRC phosphorylation mediates its ubiquitin-dependent degradation and thus leads to cytoskeletalreorganization. May regulate endothelial cell migration andangiogenesis via the modulation of lamellipodia formation.Involved in dendritic spine morphogenesis by mediating the EFNA1-EPHA4 signaling. The complex p35/CDK5 participates in theregulation of the circadian clock by modulating the function ofCLOCK protein: phosphorylates CLOCK at 'Thr-451' and 'Thr-461' andregulates the transcriptional activity of the CLOCK-ARNTL/BMAL1heterodimer in association with altered stability and subcellulardistribution. ", "isseed": false, "uniprot": "Q00535", "isvalid": true, "importance": 3 }, "position": { "x": 708.9396993235885, "y": 678.0680099519911 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK2", "altered": 0, "rank": 34, "cited": 1469, "uniprotdesc": "Serine/threonine-protein kinase involved in the controlof the cell cycle; essential for meiosis, but dispensable formitosis. Phosphorylates CTNNB1, USP37, p53/TP53, NPM1, CDK7, RB1,BRCA2, MYC, NPAT, EZH2. Interacts with cyclins A, B1, B3, D, or E.Triggers duplication of centrosomes and DNA. Acts at the G1-Stransition to promote the E2F transcriptional program and theinitiation of DNA synthesis, and modulates G2 progression;controls the timing of entry into mitosis/meiosis by controllingthe subsequent activation of cyclin B/CDK1 by phosphorylation, andcoordinates the activation of cyclin B/CDK1 at the centrosome andin the nucleus. Crucial role in orchestrating a fine balancebetween cellular proliferation, cell death, and DNA repair inhuman embryonic stem cells (hESCs). Activity of CDK2 is maximalduring S phase and G2; activated by interaction with cyclin Eduring the early stages of DNA synthesis to permit G1-Stransition, and subsequently activated by cyclin A2 (cyclin A1 ingerm cells) during the late stages of DNA replication to drive thetransition from S phase to mitosis, the G2 phase. EZH2phosphorylation promotes H3K27me3 maintenance and epigenetic genesilencing. Phosphorylates CABLES1 (By similarity). Cyclin E/CDK2prevents oxidative stress-mediated Ras-induced senescence byphosphorylating MYC. Involved in G1-S phase DNA damage checkpointthat prevents cells with damaged DNA from initiating mitosis;regulates homologous recombination-dependent repair byphosphorylating BRCA2, this phosphorylation is low in S phase whenrecombination is active, but increases as cells progress towardsmitosis. In response to DNA damage, double-strand break repair byhomologous recombination a reduction of CDK2-mediated BRCA2phosphorylation. Phosphorylation of RB1 disturbs its interactionwith E2F1. NPM1 phosphorylation by cyclin E/CDK2 promotes itsdissociates from unduplicated centrosomes, thus initiatingcentrosome duplication. Cyclin E/CDK2-mediated phosphorylation ofNPAT at G1-S transition and until prophase stimulates the NPAT-mediated activation of histone gene transcription during S phase.Required for vitamin D-mediated growth inhibition by being itselfinactivated. Involved in the nitric oxide- (NO) mediated signalingin a nitrosylation/activation-dependent manner. USP37 is activatedby phosphorylation and thus triggers G1-S transition. CTNNB1phosphorylation regulates insulin internalization. ", "isseed": false, "uniprot": "P24941", "isvalid": true, "importance": 3 }, "position": { "x": 683.702093338653, "y": 694.2872344756593 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "DAPK1", "altered": 0, "rank": 49, "cited": 691, "uniprotdesc": "Calcium/calmodulin-dependent serine/threonine kinaseinvolved in multiple cellular signaling pathways that trigger cellsurvival, apoptosis, and autophagy. Regulates both type Iapoptotic and type II autophagic cell deaths signal, depending onthe cellular setting. The former is caspase-dependent, while thelatter is caspase-independent and is characterized by theaccumulation of autophagic vesicles. Phosphorylates PIN1 resultingin inhibition of its catalytic activity, nuclear localization, andcellular function. Phosphorylates TPM1, enhancing stress fiberformation in endothelial cells. Phosphorylates STX1A andsignificantly decreases its binding to STXBP1. PhosphorylatesPRKD1 and regulates JNK signaling by binding and activating PRKD1under oxidative stress. Phosphorylates BECN1, reducing itsinteraction with BCL2 and BCL2L1 and promoting the induction ofautophagy. Phosphorylates TSC2, disrupting the TSC1-TSC2 complexand stimulating mTORC1 activity in a growth factor-dependentpathway. Phosphorylates RPS6, MYL9 and DAPK3. Acts as a signalingamplifier of NMDA receptors at extrasynaptic sites for mediatingbrain damage in stroke. Cerebral ischemia recruits DAPK1 into theNMDA receptor complex and it phosphorylates GRINB at Ser-1303inducing injurious Ca(2+) influx through NMDA receptor channels,resulting in an irreversible neuronal death. Required togetherwith DAPK3 for phosphorylation of RPL13A upon interferon-gammaactivation which is causing RPL13A involvement in transcript-selective translation inhibition.Isoform 2 cannot induce apoptosis but can inducemembrane blebbing.", "isseed": false, "uniprot": "P53355", "isvalid": true, "importance": 3 }, "position": { "x": 656.7801404779123, "y": 707.5238675129558 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "RFWD2", "altered": 0, "rank": 143, "cited": 60, "uniprotdesc": "E3 ubiquitin-protein ligase that mediates ubiquitinationand subsequent proteasomal degradation of target proteins. E3ubiquitin ligases accept ubiquitin from an E2 ubiquitin-conjugating enzyme in the form of a thioester and then directlytransfers the ubiquitin to targeted substrates. Involved in JUNubiquitination and degradation. Directly involved in p53 (TP53)ubiquitination and degradation, thereby abolishing p53-dependenttranscription and apoptosis. Ubiquitinates p53 independently ofMDM2 or RCHY1. Probably mediates E3 ubiquitin ligase activity byfunctioning as the essential RING domain subunit of larger E3complexes. In contrast, it does not constitute the catalytic RINGsubunit in the DCX DET1-COP1 complex that negatively regulatesJUN, the ubiquitin ligase activity being mediated by RBX1.Involved in 14-3-3 protein sigma/SFN ubiquitination andproteasomal degradation, leading to AKT activation and promotionof cell survival. Ubiquitinates MTA1 leading to its proteasomaldegradation. ", "isseed": false, "uniprot": "Q8NHY2", "isvalid": true, "importance": 3 }, "position": { "x": 628.5248095687266, "y": 717.6053493094187 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPM1J", "altered": 0, "rank": 191, "cited": 3, "uniprotdesc": "", "isseed": false, "uniprot": "Q5JR12", "isvalid": true, "importance": 3 }, "position": { "x": 599.3044520604564, "y": 724.4002523321917 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "BTG2", "altered": 0, "rank": 97, "cited": 205, "uniprotdesc": "Anti-proliferative protein; the function is mediated byassociation with deadenylase subunits of the CCR4-NOT complex.Activates mRNA deadenylation in a CNOT6 and CNOT7-dependentmanner. In vitro can inhibit deadenylase activity of CNOT7 andCNOT8. Involved in cell cycle regulation. Could be involved in thegrowth arrest and differentiation of the neuronal precursors (Bysimilarity). Modulates transcription regulation mediated by ESR1.Involved in mitochondrial depolarization and neurite outgrowth.", "isseed": false, "uniprot": "P78543", "isvalid": true, "importance": 3 }, "position": { "x": 569.5000000000001, "y": 727.8199946289078 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CD82", "altered": 0, "rank": 69, "cited": 417, "uniprotdesc": "Associates with CD4 or CD8 and delivers costimulatorysignals for the TCR/CD3 pathway.", "isseed": false, "uniprot": "P27701", "isvalid": true, "importance": 3 }, "position": { "x": 539.5, "y": 727.8199946289078 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HIPK2", "altered": 0, "rank": 70, "cited": 405, "uniprotdesc": "Serine/threonine-protein kinase involved intranscription regulation, p53/TP53-mediated cellular apoptosis andregulation of the cell cycle. Acts as a corepressor of severaltranscription factors, including SMAD1 and POU4F1/Brn3a andprobably NK homeodomain transcription factors. PhosphorylatesPDX1, ATF1, PML, p53/TP53, CREB1, CTBP1, CBX4, RUNX1, EP300,CTNNB1, HMGA1 and ZBTB4. Inhibits cell growth and promotesapoptosis through the activation of p53/TP53 both at thetranscription level and at the protein level (by phosphorylationand indirect acetylation). The phosphorylation of p53/TP53 may bemediated by a p53/TP53-HIPK2-AXIN1 complex. Involved in theresponse to hypoxia by acting as a transcriptional co-suppressorof HIF1A. Mediates transcriptional activation of TP73. In responseto TGFB, cooperates with DAXX to activate JNK. Negative regulatorthrough phosphorylation and subsequent proteasomal degradation ofCTNNB1 and the antiapoptotic factor CTBP1. In the Wnt/beta-cateninsignaling pathway acts as an intermediate kinase betweenMAP3K7/TAK1 and NLK to promote the proteasomal degradation of MYB.Phosphorylates CBX4 upon DNA damage and promotes its E3 SUMO-protein ligase activity. Activates CREB1 and ATF1 transcriptionfactors by phosphorylation in response to genotoxic stress. Inresponse to DNA damage, stabilizes PML by phosphorylation. PML,HIPK2 and FBXO3 may act synergically to activate p53/TP53-dependent transactivation. Promotes angiogenesis, and is involvedin erythroid differentiation, especially during fetal livererythropoiesis. Phosphorylation of RUNX1 and EP300 stimulatesEP300 transcription regulation activity. Triggers ZBTB4 proteindegradation in response to DNA damage. Modulates HMGA1 DNA-bindingaffinity. In response to high glucose, triggers phosphorylation-mediated subnuclear localization shifting of PDX1. Involved in theregulation of eye size, lens formation and retinal laminationduring late embryogenesis. ", "isseed": false, "uniprot": "Q9H2X6", "isvalid": true, "importance": 3 }, "position": { "x": 509.69554793954376, "y": 724.4002523321917 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "DDB2", "altered": 0, "rank": 102, "cited": 168, "uniprotdesc": "Required for DNA repair. Binds to DDB1 to form the UV-damaged DNA-binding protein complex (the UV-DDB complex). The UV-DDB complex may recognize UV-induced DNA damage and recruitproteins of the nucleotide excision repair pathway (the NERpathway) to initiate DNA repair. The UV-DDB complex preferentiallybinds to cyclobutane pyrimidine dimers (CPD), 6-4 photoproducts(6-4 PP), apurinic sites and short mismatches. Also appears tofunction as the substrate recognition module for the DCX (DDB1-CUL4-X-box) E3 ubiquitin-protein ligase complex DDB1-CUL4-ROC1(also known as CUL4-DDB-ROC1 and CUL4-DDB-RBX1). The DDB1-CUL4-ROC1 complex may ubiquitinate histone H2A, histone H3 and histoneH4 at sites of UV-induced DNA damage. The ubiquitination ofhistones may facilitate their removal from the nucleosome andpromote subsequent DNA repair. The DDB1-CUL4-ROC1 complex alsoubiquitinates XPC, which may enhance DNA-binding by XPC andpromote NER. Isoform D1 and isoform D2 inhibit UV-damaged DNArepair. ", "isseed": false, "uniprot": "Q92466", "isvalid": true, "importance": 3 }, "position": { "x": 480.47519043127363, "y": 717.6053493094188 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MDM2", "altered": 0, "rank": 7, "cited": 5024, "uniprotdesc": "E3 ubiquitin-protein ligase that mediates ubiquitinationof p53/TP53, leading to its degradation by the proteasome.Inhibits p53/TP53- and p73/TP73-mediated cell cycle arrest andapoptosis by binding its transcriptional activation domain. Alsoacts as a ubiquitin ligase E3 toward itself and ARRB1. Permits thenuclear export of p53/TP53. Promotes proteasome-dependentubiquitin-independent degradation of retinoblastoma RB1 protein.Inhibits DAXX-mediated apoptosis by inducing its ubiquitinationand degradation. Component of the TRIM28/KAP1-MDM2-p53/TP53complex involved in stabilizing p53/TP53. Also component of theTRIM28/KAP1-ERBB4-MDM2 complex which links growth factor and DNAdamage response pathways. Mediates ubiquitination and subsequentproteasome degradation of DYRK2 in nucleus. Ubiquitinates IGF1Rand SNAI1 and promotes them to proteasomal degradation.", "isseed": false, "uniprot": "Q00987", "isvalid": true, "importance": 3 }, "position": { "x": 599.0684773104314, "y": 636.667218490667 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CTSD", "altered": 0, "rank": 85, "cited": 273, "uniprotdesc": "Acid protease active in intracellular protein breakdown.Involved in the pathogenesis of several diseases such as breastcancer and possibly Alzheimer disease.", "isseed": false, "uniprot": "P07339", "isvalid": true, "importance": 3 }, "position": { "x": 425.2979066613468, "y": 694.287234475659 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "NGFR", "altered": 0, "rank": 80, "cited": 313, "uniprotdesc": "Plays a role in the regulation of the translocation ofGLUT4 to the cell surface in adipocytes and skeletal muscle cellsin response to insulin, probably by regulating RAB31 activity, andthereby contributes to the regulation of insulin-dependent glucoseuptake (By similarity). Low affinity receptor which can bind toNGF, BDNF, NT-3, and NT-4. Can mediate cell survival as well ascell death of neural cells. Necessary for the circadianoscillation of the clock genes ARNTL/BMAL1, PER1, PER2 and NR1D1in the suprachiasmatic nucleus (SCN) of the brain and in liver andof the genes involved in glucose and lipid metabolism in theliver. ", "isseed": false, "uniprot": "P08138", "isvalid": true, "importance": 3 }, "position": { "x": 400.06030067641166, "y": 678.0680099519913 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CARM1", "altered": 0, "rank": 207, "cited": 152, "uniprotdesc": "Methylates (mono- and asymmetric dimethylation) theguanidino nitrogens of arginyl residues in several proteinsinvolved in DNA packaging, transcription regulation, pre-mRNAsplicing, and mRNA stability. Recruited to promoters upon geneactivation together with histone acetyltransferases fromEP300/P300 and p160 families, methylates histone H3 at 'Arg-17'(H3R17me), forming mainly asymmetric dimethylarginine (H3R17me2a),leading to activate transcription via chromatin remodeling. Duringnuclear hormone receptor activation and TCF7L2/TCF4 activation,acts synergically with EP300/P300 and either one of the p160histone acetyltransferases NCOA1/SRC1, NCOA2/GRIP1 and NCOA3/ACTRor CTNNB1/beta-catenin to activate transcription. During myogenictranscriptional activation, acts together with NCOA3/ACTR as acoactivator for MEF2C. During monocyte inflammatory stimulation,acts together with EP300/P300 as a coactivator for NF-kappa-B.Acts as coactivator for PPARG, promotes adipocyte differentiationand the accumulation of brown fat tissue. Plays a role in theregulation of pre-mRNA alternative splicing by methylation ofsplicing factors. Also seems to be involved in p53/TP53transcriptional activation. Methylates EP300/P300, both at 'Arg-2142', which may loosen its interaction with NCOA2/GRIP1, and at'Arg-580' and 'Arg-604' in the KIX domain, which impairs itsinteraction with CREB and inhibits CREB-dependent transcriptionalactivation. Also methylates arginine residues in RNA-bindingproteins PABPC1, ELAVL1 and ELAV4, which may affect their mRNA-stabilizing properties and the half-life of their target mRNAs.", "isseed": false, "uniprot": "Q86X55", "isvalid": true, "importance": 2 }, "position": { "x": 376.83605235723905, "y": 659.0776363377252 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TYRP1", "altered": 0, "rank": 87, "cited": 265, "uniprotdesc": "Oxidation of 5,6-dihydroxyindole-2-carboxylic acid(DHICA) into indole-5,6-quinone-2-carboxylic acid. May regulate orinfluence the type of melanin synthesized.", "isseed": false, "uniprot": "P17643", "isvalid": true, "importance": 3 }, "position": { "x": 355.92792529758043, "y": 637.5636821949564 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKDC", "altered": 0, "rank": 74, "cited": 363, "uniprotdesc": "Serine/threonine-protein kinase that acts as a molecularsensor for DNA damage. Involved in DNA non-homologous end joining(NHEJ) required for double-strand break (DSB) repair and V(D)Jrecombination. Must be bound to DNA to express its catalyticproperties. Promotes processing of hairpin DNA structures in V(D)Jrecombination by activation of the hairpin endonuclease artemis(DCLRE1C). The assembly of the DNA-PK complex at DNA ends is alsorequired for the NHEJ ligation step. Required to protect and alignbroken ends of DNA. May also act as a scaffold protein to aid thelocalization of DNA repair proteins to the site of damage. Foundat the ends of chromosomes, suggesting a further role in themaintenance of telomeric stability and the prevention ofchromosomal end fusion. Also involved in modulation oftranscription. Recognizes the substrate consensus sequence [ST]-Q.Phosphorylates 'Ser-139' of histone variant H2AX/H2AFX, therebyregulating DNA damage response mechanism. Phosphorylates DCLRE1C,c-Abl/ABL1, histone H1, HSPCA, c-jun/JUN, p53/TP53, PARP1, POU2F1,DHX9, SRF, XRCC1, XRCC1, XRCC4, XRCC5, XRCC6, WRN, MYC and RFA2.Can phosphorylate C1D not only in the presence of linear DNA butalso in the presence of supercoiled DNA. Ability to phosphorylatep53/TP53 in the presence of supercoiled DNA is dependent on C1D.Contributes to the determination of the circadian period length byantagonizing phosphorylation of CRY1 'Ser-588' and increasing CRY1protein stability, most likely through an indirect machanism.Interacts with CRY1 and CRY2; negatively regulates CRY1phosphorylation. ", "isseed": false, "uniprot": "P78527", "isvalid": true, "importance": 3 }, "position": { "x": 337.6084889085172, "y": 613.806614817288 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HIC1", "altered": 0, "rank": 99, "cited": 185, "uniprotdesc": "Transcriptional repressor. Recognizes and binds to theconsensus sequence '5-[CG]NG[CG]GGGCA[CA]CC-3'. May act as a tumorsuppressor. May be involved in development of head, face, limbsand ventral body wall. Involved in down-regulation of SIRT1 andthereby is involved in regulation of p53/TP53-dependent apoptoticDNA-damage responses. The specific target gene promoterassociation seems to be depend on corepressors, such as CTBP1 orCTBP2 and MTA1. The regulation of SIRT1 transcription in responseto nutrient deprivation seems to involve CTBP1. In cooperationwith MTA1 (indicative for an association with the NuRD complex)represses transcription from CCND1/cyclin-D1 and CDKN1C/p57Kip2specifically in quiescent cells. Involved in regulation of the Wntsignaling pathway probably by association with TCF7L2 andpreventing TCF7L2 and CTNNB1 association with promoters of TCF-responsive genes. Seems to repress transcription from E2F1 andATOH1 which involves ARID1A, indicative for the participation of adistinct SWI/SNF-type chromatin-remodeling complex. Probablyrepresses transcription from ACKR3, FGFBP1 and EFNA1.", "isseed": false, "uniprot": "Q14526", "isvalid": true, "importance": 3 }, "position": { "x": 322.1165650593482, "y": 588.1161439097402 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TAP1", "altered": 0, "rank": 63, "cited": 474, "uniprotdesc": "Involved in the transport of antigens from the cytoplasmto the endoplasmic reticulum for association with MHC class Imolecules. Also acts as a molecular scaffold for the final stageof MHC class I folding, namely the binding of peptide. Nascent MHCclass I molecules associate with TAP via tapasin. Inhibited by thecovalent attachment of herpes simplex virus ICP47 protein, whichblocks the peptide-binding site of TAP. Inhibited by humancytomegalovirus US6 glycoprotein, which binds to the lumenal sideof the TAP complex and inhibits peptide translocation byspecifically blocking ATP-binding to TAP1 and prevents theconformational rearrangement of TAP induced by peptide binding.Inhibited by human adenovirus E3-19K glycoprotein, which binds theTAP complex and acts as a tapasin inhibitor, preventing MHC classI/TAP association. Expression of TAP1 is down-regulated by humanEpstein-Barr virus vIL-10 protein, thereby affecting the transportof peptides into the endoplasmic reticulum and subsequent peptideloading by MHC class I molecules.", "isseed": false, "uniprot": "Q03518", "isvalid": true, "importance": 3 }, "position": { "x": 309.6541146692916, "y": 560.8271840491045 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PYCARD", "altered": 0, "rank": 89, "cited": 244, "uniprotdesc": "Functions as key mediator in apoptosis and inflammation.Promotes caspase-mediated apoptosis involving predominantlycaspase-8 and also caspase-9 in a probable cell type-specificmanner. Involved in activation of the mitochondrial apoptoticpathway, promotes caspase-8-dependent proteolytic maturation ofBID independently of FADD in certain cell types and also mediatesmitochondrial translocation of BAX and activates BAX-dependentapoptosis coupled to activation of caspase-9, -2 and -3. Involvedin macrophage pyroptosis, a caspase-1-dependent inflammatory formof cell death and is the major constituent of the ASC pyroptosomewhich forms upon potassium depletion and rapidly recruits andactivates caspase-1. In innate immune response believed to act asan integral adapter in the assembly of the inflammasome whichactivates caspase-1 leading to processing and secretion ofproinflammatory cytokines. The function as activating adapter indifferent types of inflammasomes is mediated by the DAPIN and CARDdomains and their homotypic interactions. Required for recruitmentof caspase-1 to inflammasomes containing certain patternrecognition receptors, such as NLRP2, NLRP3, AIM2 and probablyIFI16. In the NLRP1 and NLRC4 inflammasomes seems not be requiredbut facilitates the processing of procaspase-1. In cooperationwith NOD2 involved in an inflammasome activated by bacterialmuramyl dipeptide leading to caspase-1 activation. May be involvedin DDX58-triggered proinflammatory responses and inflammasomeactivation. Isoform 2 may have a regulating effect on the functionas inflammasome adapter. Isoform 3 seems to inhibit inflammasome-mediated maturation of interleukin-1 beta. In collaboration withAIM2 which detects cytosolic double-stranded DNA may also beinvolved in a caspase-1-independent cell death that involvescaspase-8. In adaptive immunity may be involved in maturation ofdendritic cells to stimulate T-cell immunity and in cytoskeletalrearrangements coupled to chemotaxis and antigen uptake may beinvolved in post-transcriptional regulation of the guaninenucleotide exchange factor DOCK2; the latter function is proposedto involve the nuclear form. Also involved in transcriptionalactivation of cytokines and chemokines independent of theinflammasome; this function may involve AP-1, NF-kappa-B, MAPK andcaspase-8 signaling pathways. For regulation of NF-kappa-Bactivating and inhibiting functions have been reported. ModulatesNF-kappa-B induction at the level of the IKK complex by inhibitingkinase activity of CHUK and IKBK. Proposed to compete with RIPK2for association with CASP1 thereby down-regulating CASP1-mediatedRIPK2-dependent NF-kappa-B activation and activating interleukin-1beta processing. ", "isseed": false, "uniprot": "Q9ULZ3", "isvalid": true, "importance": 3 }, "position": { "x": 300.38360483804325, "y": 532.2954885602502 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "APC", "altered": 0, "rank": 22, "cited": 2683, "uniprotdesc": "Tumor suppressor. Promotes rapid degradation of CTNNB1and participates in Wnt signaling as a negative regulator. APCactivity is correlated with its phosphorylation state. Activatesthe GEF activity of SPATA13 and ARHGEF4. Plays a role inhepatocyte growth factor (HGF)-induced cell migration. Requiredfor MMP9 up-regulation via the JNK signaling pathway in colorectaltumor cells. Acts as a mediator of ERBB2-dependent stabilizationof microtubules at the cell cortex. It is required for thelocalization of MACF1 to the cell membrane and this localizationof MACF1 is critical for its function in microtubulestabilization. ", "isseed": false, "uniprot": "P25054", "isvalid": true, "importance": 3 }, "position": { "x": 294.42589083867097, "y": 502.89301172747867 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "RNF144B", "altered": 0, "rank": 190, "cited": 4, "uniprotdesc": "E3 ubiquitin-protein ligase which accepts ubiquitin fromE2 ubiquitin-conjugating enzymes UBE2L3 and UBE2L6 in the form ofa thioester and then directly transfers the ubiquitin to targetedsubstrates such as LCMT2, thereby promoting their degradation.Induces apoptosis via a p53/TP53-dependent but caspase-independentmechanism. However, its overexpression also produces a decrease ofthe ubiquitin-dependent stability of BAX, a pro-apoptotic protein,ultimately leading to protection of cell death; But, it is not ananti-apoptotic protein per se. ", "isseed": false, "uniprot": "Q7Z419", "isvalid": true, "importance": 3 }, "position": { "x": 291.8586405843057, "y": 473.0030598015978 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "KAT2B", "altered": 0, "rank": 55, "cited": 609, "uniprotdesc": null, "isseed": false, "uniprot": null, "isvalid": true, "importance": 3 }, "position": { "x": 292.7153221081166, "y": 443.0152940167519 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MSH2", "altered": 0, "rank": 21, "cited": 2696, "uniprotdesc": "Component of the post-replicative DNA mismatch repairsystem (MMR). Forms two different heterodimers: MutS alpha (MSH2-MSH6 heterodimer) and MutS beta (MSH2-MSH3 heterodimer) whichbinds to DNA mismatches thereby initiating DNA repair. When bound,heterodimers bend the DNA helix and shields approximately 20 basepairs. MutS alpha recognizes single base mismatches anddinucleotide insertion-deletion loops (IDL) in the DNA. MutS betarecognizes larger insertion-deletion loops up to 13 nucleotideslong. After mismatch binding, MutS alpha or beta forms a ternarycomplex with the MutL alpha heterodimer, which is thought to beresponsible for directing the downstream MMR events, includingstrand discrimination, excision, and resynthesis. ATP binding andhydrolysis play a pivotal role in mismatch repair functions. TheATPase activity associated with MutS alpha regulates bindingsimilar to a molecular switch: mismatched DNA provokes ADP-->ATPexchange, resulting in a discernible conformational transitionthat converts MutS alpha into a sliding clamp capable ofhydrolysis-independent diffusion along the DNA backbone. Thistransition is crucial for mismatch repair. MutS alpha may alsoplay a role in DNA homologous recombination repair. In melanocytesmay modulate both UV-B-induced cell cycle regulation andapoptosis. ", "isseed": false, "uniprot": "P43246", "isvalid": true, "importance": 3 }, "position": { "x": 296.9847672563152, "y": 413.32065076032376 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP1R13L", "altered": 0, "rank": 140, "cited": 63, "uniprotdesc": "Regulator that plays a central role in regulation ofapoptosis and transcription via its interaction with NF-kappa-Band p53/TP53 proteins. Blocks transcription of HIV-1 virus byinhibiting the action of both NF-kappa-B and SP1. Also inhibitsp53/TP53 function, possibly by preventing the association betweenp53/TP53 and ASPP1 or ASPP2, and therefore suppressing thesubsequent activation of apoptosis. ", "isseed": false, "uniprot": "Q8WUF5", "isvalid": true, "importance": 3 }, "position": { "x": 304.6113172821198, "y": 384.3062451192653 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SIRT1", "altered": 0, "rank": 46, "cited": 799, "uniprotdesc": "NAD-dependent protein deacetylase that linkstranscriptional regulation directly to intracellular energeticsand participates in the coordination of several separated cellularfunctions such as cell cycle, response to DNA damage, metobolism,apoptosis and autophagy. Can modulate chromatin function throughdeacetylation of histones and can promote alterations in themethylation of histones and DNA, leading to transcriptionalrepression. Deacetylates a broad range of transcription factorsand coregulators, thereby regulating target gene expressionpositively and negatively. Serves as a sensor of the cytosolicratio of NAD(+)/NADH which is altered by glucose deprivation andmetabolic changes associated with caloric restriction. Isessential in skeletal muscle cell differentiation and in responseto low nutrients mediates the inhibitory effect on skeletalmyoblast differentiation which also involves 5'-AMP-activatedprotein kinase (AMPK) and nicotinamide phosphoribosyltransferase(NAMPT). Component of the eNoSC (energy-dependent nucleolarsilencing) complex, a complex that mediates silencing of rDNA inresponse to intracellular energy status and acts by recruitinghistone-modifying enzymes. The eNoSC complex is able to sense theenergy status of cell: upon glucose starvation, elevation ofNAD(+)/NADP(+) ratio activates SIRT1, leading to histone H3deacetylation followed by dimethylation of H3 at 'Lys-9' (H3K9me2)by SUV39H1 and the formation of silent chromatin in the rDNAlocus. Deacetylates 'Lys-266' of SUV39H1, leading to itsactivation. Inhibits skeletal muscle differentiation bydeacetylating PCAF and MYOD1. Deacetylates H2A and 'Lys-26' ofHIST1H1E. Deacetylates 'Lys-16' of histone H4 (in vitro). Involvedin NR0B2/SHP corepression function through chromatin remodeling:Recruited to LRH1 target gene promoters by NR0B2/SHP therebystimulating histone H3 and H4 deacetylation leading totranscriptional repression. Proposed to contribute to genomicintegrity via positive regulation of telomere length; however,reports on localization to pericentromeric heterochromatin areconflicting. Proposed to play a role in constitutiveheterochromatin (CH) formation and/or maintenance throughregulation of the available pool of nuclear SUV39H1. Uponoxidative/metabolic stress decreases SUV39H1 degradation byinhibiting SUV39H1 polyubiquitination by MDM2. This increase inSUV39H1 levels enhances SUV39H1 turnover in CH, which in turnseems to accelerate renewal of the heterochromatin whichcorrelates with greater genomic integrity during stress response.Deacetylates 'Lys-382' of p53/TP53 and impairs its ability toinduce transcription-dependent proapoptotic program and modulatecell senescence. Deacetylates TAF1B and thereby represses rDNAtranscription by the RNA polymerase I. Deacetylates MYC, promotesthe association of MYC with MAX and decreases MYC stabilityleading to compromised transformational capability. DeacetylatesFOXO3 in response to oxidative stress thereby increasing itsability to induce cell cycle arrest and resistance to oxidativestress but inhibiting FOXO3-mediated induction of apoptosistranscriptional activity; also leading to FOXO3 ubiquitination andprotesomal degradation. Appears to have a similar effect onMLLT7/FOXO4 in regulation of transcriptional activity andapoptosis. Deacetylates DNMT1; thereby impairs DNMT1methyltransferase-independent transcription repressor activity,modulates DNMT1 cell cycle regulatory function and DNMT1-mediatedgene silencing. Deacetylates RELA/NF-kappa-B p65 therebyinhibiting its transactivating potential and augments apoptosis inresponse to TNF-alpha. Deacetylates HIF1A, KAT5/TIP60, RB1 andHIC1. Deacetylates FOXO1 resulting in its nuclear retention andenhancement of its transcriptional activity leading to increasedgluconeogenesis in liver. Inhibits E2F1 transcriptional activityand apoptotic function, possibly by deacetylation. Involved inHES1- and HEY2-mediated transcriptional repression. In cooperationwith MYCN seems to be involved in transcriptional repression ofDUSP6/MAPK3 leading to MYCN stabilization by phosphorylation at'Ser-62'. Deacetylates MEF2D. Required for antagonist-mediatedtranscription suppression of AR-dependent genes which may belinked to local deacetylation of histone H3. Represses HNF1A-mediated transcription. Required for the repression of ESRRG byCREBZF. Modulates AP-1 transcription factor activity. DeacetylatesNR1H3 AND NR1H2 and deacetylation of NR1H3 at 'Lys-434' positivelyregulates transcription of NR1H3:RXR target genes, promotes NR1H3proteosomal degradation and results in cholesterol efflux; apromoter clearing mechanism after reach round of transcription isproposed. Involved in lipid metabolism. Implicated in regulationof adipogenesis and fat mobilization in white adipocytes byrepression of PPARG which probably involves association with NCOR1and SMRT/NCOR2. Deacetylates ACSS2 leading to its activation, andHMGCS1. Involved in liver and muscle metabolism. Throughdeacteylation and activation of PPARGC1A is required to activatefatty acid oxidation in skeletel muscle under low-glucoseconditions and is involved in glucose homeostasis. Involved inregulation of PPARA and fatty acid beta-oxidation in liver.Involved in positive regulation of insulin secretion in pancreaticbeta cells in response to glucose; the function seems to implytranscriptional repression of UCP2. Proposed to deacetylate IRS2thereby facilitating its insulin-induced tyrosine phosphorylation.Deacetylates SREBF1 isoform SREBP-1C thereby decreasing itsstability and transactivation in lipogenic gene expression.Involved in DNA damage response by repressing genes which areinvolved in DNA repair, such as XPC and TP73, deacetylatingXRCC6/Ku70, and faciliting recruitment of additional factors tosites of damaged DNA, such as SIRT1-deacetylated NBN can recruitATM to initiate DNA repair and SIRT1-deacetylated XPA interactswith RPA2. Also involved in DNA repair of DNA double-strand breaksby homologous recombination and specifically single-strandannealing independently of XRCC6/Ku70 and NBN. Transcriptionalsuppression of XPC probably involves an E2F4:RBL2 suppressorcomplex and protein kinase B (AKT) signaling. Transcriptionalsuppression of TP73 probably involves E2F4 and PCAF. DeacetylatesWRN thereby regulating its helicase and exonuclease activities andregulates WRN nuclear translocation in response to DNA damage.Deacetylates APEX1 at 'Lys-6' and 'Lys-7' and stimulates cellularAP endonuclease activity by promoting the association of APEX1 toXRCC1. Increases p53/TP53-mediated transcription-independentapoptosis by blocking nuclear translocation of cytoplasmicp53/TP53 and probably redirecting it to mitochondria. DeacetylatesXRCC6/Ku70 at 'Lys-539' and 'Lys-542' causing it to sequester BAXaway from mitochondria thereby inhibiting stress-inducedapoptosis. Is involved in autophagy, presumably by deacetylatingATG5, ATG7 and MAP1LC3B/ATG8. Deacetylates AKT1 which leads toenhanced binding of AKT1 and PDK1 to PIP3 and promotes theiractivation. Proposed to play role in regulation of STK11/LBK1-dependent AMPK signaling pathways implicated in cellularsenescence which seems to involve the regulation of theacetylation status of STK11/LBK1. Can deacetylate STK11/LBK1 andthereby increase its activity, cytoplasmic localization andassociation with STRAD; however, the relevance of such activity innormal cells is unclear. In endothelial cells is shown to inhibitSTK11/LBK1 activity and to promote its degradation. DeacetylatesSMAD7 at 'Lys-64' and 'Lys-70' thereby promoting its degradation.Deacetylates CIITA and augments its MHC class II transactivationand contributes to its stability. Deacteylates MECOM/EVI1. Isoform2 is shown to deacetylate 'Lys-382' of p53/TP53, however withlower activity than isoform 1. In combination, the two isoformsexert an additive effect. Isoform 2 regulates p53/TP53 expressionand cellular stress response and is in turn repressed by p53/TP53presenting a SIRT1 isoform-dependent auto-regulatory loop. In caseof HIV-1 infection, interacts with and deacetylates the viral Tatprotein. The viral Tat protein inhibits SIRT1 deacetylationactivity toward RELA/NF-kappa-B p65, thereby potentiates itstranscriptional activity and SIRT1 is proposed to contribute to T-cell hyperactivation during infection. Deacetylates PML at 'Lys-487' and this deacetylation promotes PML control of PER2 nuclearlocalization. During the neurogenic transition, repress selectiveNOTCH1-target genes through histone deacetylation in a BCL6-dependent manner and leading to neuronal differentiation.Regulates the circadian expression of several core clock genes,including ARNTL/BMAL1, RORC, PER2 and CRY1 and plays a criticalrole in maintaining a controlled rhythmicity in histoneacetylation, thereby contributing to circadian chromatinremodeling. Deacetylates ARNTL/BMAL1 and histones at the circadiangene promoters in order to facilitate repression by inhibitorycomponents of the circadian oscillator. Deacetylates PER2,facilitating its ubiquitination and degradation by the proteosome.Protects cardiomyocytes against palmitate-induced apoptosis(PubMed:11672523, PubMed:12006491, PubMed:14976264,PubMed:14980222, PubMed:15126506, PubMed:15152190,PubMed:15205477, PubMed:15469825, PubMed:15692560,PubMed:16079181, PubMed:16166628, PubMed:16892051,PubMed:16998810, PubMed:17283066, PubMed:17334224,PubMed:17505061, PubMed:17612497, PubMed:17620057,PubMed:17936707, PubMed:18203716, PubMed:18296641,PubMed:18662546, PubMed:18687677, PubMed:19188449,PubMed:19220062, PubMed:19364925, PubMed:19690166,PubMed:19934257, PubMed:20097625, PubMed:20100829,PubMed:20203304, PubMed:20375098, PubMed:20620956,PubMed:20670893, PubMed:20817729, PubMed:20975832,PubMed:21149730, PubMed:21245319, PubMed:21471201,PubMed:21504832, PubMed:21555002, PubMed:21698133,PubMed:21701047, PubMed:21775285, PubMed:21807113,PubMed:21841822, PubMed:21890893, PubMed:21909281,PubMed:21947282, PubMed:22274616). Deacetylates XBP1 isoform 2;deacetylation decreases protein stability of XBP1 isoform 2 andinhibits its transcriptional activity (By similarity).", "isseed": false, "uniprot": "Q96EB6", "isvalid": true, "importance": 3 }, "position": { "x": 632.4422863405995, "y": 420.5 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CASP10", "altered": 0, "rank": 100, "cited": 181, "uniprotdesc": "Involved in the activation cascade of caspasesresponsible for apoptosis execution. Recruited to both Fas- andTNFR-1 receptors in a FADD dependent manner. May participate inthe granzyme B apoptotic pathways. Cleaves and activates caspase-3, -4, -6, -7, -8, and -9. Hydrolyzes the small- moleculesubstrates, Tyr-Val-Ala-Asp-|-AMC and Asp-Glu-Val-Asp-|-AMC.", "isseed": false, "uniprot": "Q92851", "isvalid": true, "importance": 3 }, "position": { "x": 329.4955681394091, "y": 329.81733631298744 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SP1", "altered": 0, "rank": 204, "cited": 351, "uniprotdesc": "Transcription factor that can activate or represstranscription in response to physiological and pathologicalstimuli. Binds with high affinity to GC-rich motifs and regulatesthe expression of a large number of genes involved in a variety ofprocesses such as cell growth, apoptosis, differentiation andimmune responses. Highly regulated by post-translationalmodifications (phosphorylations, sumoylation, proteolyticcleavage, glycosylation and acetylation). Binds also the PDGFR-alpha G-box promoter. May have a role in modulating the cellularresponse to DNA damage. Implicated in chromatin remodeling. Playsa role in the recruitment of SMARCA4/BRG1 on the c-FOS promoter.Plays an essential role in the regulation of FE65 gene expression.In complex with ATF7IP, maintains telomerase activity in cancercells by inducing TERT and TERC gene expression. Isoform 3 is astronger activator of transcription than isoform 1. Positivelyregulates the transcription of the core clock componentARNTL/BMAL1. ", "isseed": false, "uniprot": "P08047", "isvalid": true, "importance": 2 }, "position": { "x": 346.42886470541225, "y": 305.05317940410407 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "IRF5", "altered": 0, "rank": 101, "cited": 180, "uniprotdesc": "Transcription factor involved in the induction ofinterferons IFNA and INFB and inflammatory cytokines upon virusinfection. Activated by TLR7 or TLR8 signaling.", "isseed": false, "uniprot": "Q13568", "isvalid": true, "importance": 3 }, "position": { "x": 366.0746867237709, "y": 282.3806921734762 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "BAX", "altered": 0, "rank": 51, "cited": 635, "uniprotdesc": "Accelerates programmed cell death by binding to, andantagonizing the apoptosis repressor BCL2 or its adenovirushomolog E1B 19k protein. Under stress conditions, undergoes aconformation change that causes translocation to the mitochondrionmembrane, leading to the release of cytochrome c that thentriggers apoptosis. Promotes activation of CASP3, and therebyapoptosis. ", "isseed": false, "uniprot": "Q07812", "isvalid": true, "importance": 3 }, "position": { "x": 495.57608693571933, "y": 298.7290842958664 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CABIN1", "altered": 0, "rank": 132, "cited": 77, "uniprotdesc": "May be required for replication-independent chromatinassembly. May serve as a negative regulator of T-cell receptor(TCR) signaling via inhibition of calcineurin. Inhibition ofactivated calcineurin is dependent on both PKC and calciumsignals. Acts as a negative regulator of p53/TP53 by keeping p53in an inactive state on chromatin at promoters of a subset of it'starget genes. ", "isseed": false, "uniprot": "Q9Y6J0", "isvalid": true, "importance": 3 }, "position": { "x": 524.6080753437241, "y": 291.16974245431265 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SETD7", "altered": 0, "rank": 156, "cited": 32, "uniprotdesc": "Histone methyltransferase that specificallymonomethylates 'Lys-4' of histone H3. H3 'Lys-4' methylationrepresents a specific tag for epigenetic transcriptionalactivation. Plays a central role in the transcriptional activationof genes such as collagenase or insulin. Recruited by IPF1/PDX-1to the insulin promoter, leading to activate transcription. Hasalso methyltransferase activity toward non-histone proteins suchas p53/TP53, TAF10, and possibly TAF7 by recognizing and bindingthe [KR]-[STA]-K in substrate proteins. Monomethylates 'Lys-189'of TAF10, leading to increase the affinity of TAF10 for RNApolymerase II. Monomethylates 'Lys-372' of p53/TP53, stabilizingp53/TP53 and increasing p53/TP53-mediated transcriptionalactivation. ", "isseed": false, "uniprot": "Q8WTS6", "isvalid": true, "importance": 3 }, "position": { "x": 438.5698130049044, "y": 229.70989985711353 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SETD8", "altered": 0, "rank": 164, "cited": 22, "uniprotdesc": "Protein-lysine N-methyltransferase that monomethylatesboth histones and non-histone proteins. Specificallymonomethylates 'Lys-20' of histone H4 (H4K20me1). H4K20me1 isenriched during mitosis and represents a specific tag forepigenetic transcriptional repression. Mainly functions ineuchromatin regions, thereby playing a central role in thesilencing of euchromatic genes. Required for cell proliferation,probably by contributing to the maintenance of proper higher-orderstructure of DNA during mitosis. Involved in chromosomecondensation and proper cytokinesis. Nucleosomes are preferred assubstrate compared to free histones. Mediates monomethylation ofp53/TP53 at 'Lys-382', leading to repress p53/TP53-target genes.Plays a negative role in TGF-beta response regulation and apositive role in cell migration. ", "isseed": false, "uniprot": "Q9NQR1", "isvalid": true, "importance": 3 }, "position": { "x": 466.2035225983501, "y": 218.0317966675917 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "APAF1", "altered": 0, "rank": 83, "cited": 278, "uniprotdesc": "Oligomeric Apaf-1 mediates the cytochrome c-dependentautocatalytic activation of pro-caspase-9 (Apaf-3), leading to theactivation of caspase-3 and apoptosis. This activation requiresATP. Isoform 6 is less effective in inducing apoptosis.", "isseed": false, "uniprot": "O14727", "isvalid": true, "importance": 3 }, "position": { "x": 494.98831180678513, "y": 209.57981996234875 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "GDF15", "altered": 0, "rank": 91, "cited": 232, "uniprotdesc": "", "isseed": false, "uniprot": "Q99988", "isvalid": true, "importance": 3 }, "position": { "x": 388.1769208600632, "y": 262.09544516525557 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-H1F0", "source": "TP53", "cited": 0, "target": "H1F0", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-IRF5", "source": "TP53", "cited": 0, "target": "IRF5", "pubmed": ["11973653"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "KAT8-controls-state-change-of-TP53", "source": "KAT8", "cited": 0, "target": "TP53", "pubmed": ["17189187", "17534149"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "FBXO11-controls-state-change-of-TP53", "source": "FBXO11", "cited": 4, "target": "TP53", "pubmed": ["17098746"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "ATR-controls-state-change-of-TP53", "source": "ATR", "cited": 24, "target": "TP53", "pubmed": ["10202145", "10581258", "10606744", "10608806", "10611322", "10656682", "10656795", "10673501", "10706102", "10710310", "10713094", "10723129", "10733583", "10734067", "10744722", "10958792", "11030628", "11042698", "11096068", "11121242", "11244509", "11258706", "11300786", "11313957", "11314044", "11397945", "11423984", "11447225", "11495913", "11526498", "11546806", "11583595", "11706017", "11707453", "11709713", "11711532", "11850826", "11861384", "11865061", "11875057", "11896572", "11896587", "12021785", "12049739", "12071847", "12080066", "12082529", "12091386", "12151394", "12324477", "12384533", "12393500", "12397362", "12427754", "12511424", "12518062", "12519769", "12519780", "12531896", "12588868", "12606585", "12637545", "12676607", "12702572", "12756247", "12771937", "12776195", "12860987", "12890678", "12902982", "12939400", "12955074", "12959929", "12969974", "1406679", "14517211", "14527925", "14612532", "14665630", "14712210", "14871840", "14871926", "14968111", "15048074", "15064747", "15077171", "15078887", "15082766", "15140942", "15155458", "15159397", "15178764", "15181149", "15226429", "15254178", "15258567", "15269203", "15310764", "15322239", "15355354", "15361830", "15381073", "15456784", "15471885", "15489221", "15489892", "15533933", "15542844", "15580310", "15619621", "15665826", "15750624", "15758953", "15775976", "15782130", "15792956", "15794754", "15843377", "15866171", "15870257", "15897882", "16223874", "16247456", "16288207", "16293623", "16377624", "16397295", "16436515", "16478990", "16489034", "16501611", "16632641", "16636671", "16648554", "16651424", "16714289", "16717128", "16731759", "16774943", "16783362", "16790523", "16818505", "16818520", "16891474", "16916644", "16949371", "17045821", "17105820", "17108107", "17234789", "17245430", "17254968", "17283137", "17297446", "17297454", "17332358", "17339337", "17353187", "17363488", "17371838", "17380123", "17456577", "17486112", "17535811", "17553757", "17591690", "17596534", "17609585", "17616578", "17668048", "17684018", "17698850", "17712528", "17855337", "17891183", "17936559", "17967874", "17975552", "17976513", "17977830", "18032786", "18045533", "18056442", "18097051", "18159951", "18216278", "18246126", "18272544", "18289945", "18332866", "18339864", "18345031", "18381438", "18406507", "18431490", "18449195", "18490454", "18560558", "18604166", "18614045", "18715874", "18718914", "18765533", "18769132", "18778462", "18785202", "18794113", "18818083", "18847491", "18985806", "18995830", "19085961", "19203586", "19251701", "19266268", "19303885", "19477925", "19819244", "19828454", "19861417", "19882354", "19907922", "19934315", "19962312", "20005840", "20024960", "20026654", "20080565", "20123963", "20353948", "20372057", "20562916", "20599567", "20610713", "20637859", "20661218", "20663147", "20696760", "20711232", "20931131", "20935676", "20962272", "21317932", "21383696", "21394211", "21423215", "21441950", "21465263", "21532626", "21642861", "21660965", "21757780", "21765463", "21765464", "21832239", "22002314", "22011578", "22030623", "22037398", "22055193", "22099307", "22112863", "22179839", "22285752", "22728651", "22797063", "22815859", "22975381", "23148227", "23150668", "23184057", "23678107", "23798621", "23871434", "23890999", "23982736", "24038750", "24657168", "24711418", "24820418", "24958101", "25202122", "8327466", "9363941", "9733515", "9744860", "9843217", "9925639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "pid", "PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "FBXO11-controls-state-change-of-NEDD8", "source": "FBXO11", "cited": 1, "target": "NEDD8", "pubmed": ["17098746"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "ATM-controls-state-change-of-TP53", "source": "ATM", "cited": 237, "target": "TP53", "pubmed": ["10202145", "10570149", "10581258", "10606744", "10608806", "10611322", "10656682", "10656795", "10673500", "10673501", "10706102", "10710310", "10713094", "10723129", "10733583", "10734067", "10744722", "10958792", "11030628", "11096068", "11101524", "11121242", "11175334", "11244509", "11258706", "11300786", "11313957", "11314044", "11397945", "11423984", "11447225", "11495913", "11526498", "11546806", "11551930", "11583595", "11706017", "11707453", "11709713", "11711532", "11740489", "11780126", "11850826", "11861384", "11865061", "11875057", "11896572", "11896587", "12021785", "12049739", "12071847", "12080066", "12082529", "12091386", "12093737", "12151394", "12324477", "12384533", "12393500", "12397361", "12397362", "12427754", "12511424", "12518062", "12519769", "12519780", "12531896", "12588868", "12606585", "12637545", "12676607", "12702572", "12756247", "12771937", "12776195", "12810724", "12860987", "12861053", "12890678", "12902982", "12907596", "12939400", "12955074", "12959929", "12969974", "1406679", "14517211", "14527925", "14612532", "14665630", "14712210", "14749479", "14871840", "14871926", "14968111", "15048074", "15064747", "15077171", "15078887", "15082766", "15140942", "15155458", "15159397", "15178764", "15181149", "15226429", "15254178", "15258567", "15269203", "15310764", "15322239", "15355354", "15361830", "15381073", "15456784", "15471885", "15489221", "15489892", "15526030", "15533933", "15542844", "15580310", "15619621", "15629715", "15657359", "15665826", "15671037", "15706352", "15750624", "15758953", "15775976", "15782130", "15792956", "15794754", "15843377", "15866171", "15870257", "15897882", "15963507", "16219768", "16223874", "16247456", "16288207", "16293623", "16377624", "16397295", "16436515", "16478990", "16489034", "16501611", "16601678", "16632641", "16636671", "16648554", "16651424", "16714289", "16717128", "16731759", "16738336", "16774943", "16783362", "16790523", "16793543", "16818505", "16818520", "16891474", "16916644", "16949371", "17045821", "17105820", "17107963", "17108107", "17121812", "17135248", "17210684", "17234789", "17245430", "17283137", "17297446", "17297454", "17332358", "17339337", "17349958", "17349959", "17353187", "17363488", "17371838", "17380123", "17456577", "17486112", "17535811", "17553757", "17567906", "17591690", "17596534", "17609585", "17616578", "17668048", "17684018", "17698850", "17712528", "17855337", "17891183", "17906639", "17936559", "17967874", "17975552", "17976513", "17977830", "18032786", "18045533", "18056442", "18056705", "18097051", "18159951", "18160537", "18216278", "18246126", "18272544", "18289945", "18332866", "18339864", "18345031", "18381438", "18406507", "18431490", "18449195", "18490454", "18536714", "18560558", "18593910", "18604166", "18614045", "18669630", "18715874", "18718914", "18765533", "18769132", "18778462", "18785202", "18794113", "18818083", "18847491", "18985806", "18995830", "19085961", "19203586", "19251701", "19266268", "19303885", "19465479", "19477925", "19819244", "19828042", "19828454", "19857493", "19861417", "19882354", "19907922", "19934315", "19962312", "19965871", "20005840", "20009884", "20018442", "20024960", "20026654", "20041275", "20080565", "20123963", "20171273", "20353948", "20363803", "20372057", "20514025", "20562916", "20599567", "20610713", "20637859", "20661218", "20663147", "20673369", "20696760", "20711232", "20811699", "20931131", "20935676", "20962272", "21057547", "21148320", "21317932", "21383696", "21394211", "21423215", "21441950", "21454683", "21465263", "21532626", "21642861", "21660965", "21757780", "21765463", "21765464", "21832239", "22002314", "22011578", "22030623", "22037398", "22055193", "22099307", "22112863", "22179839", "22285752", "22728651", "22797063", "22815859", "22878263", "22975381", "23148227", "23149944", "23150668", "23184057", "23678107", "23798621", "23871434", "23890999", "23982736", "24038750", "24145406", "24196445", "24379358", "24657168", "24711418", "24820418", "24899407", "24958101", "25202122", "8327466", "9363941", "9733514", "9733515", "9843217", "9925639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome", "PhosphoSite", "pid", "PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SMYD2-controls-state-change-of-TP53", "source": "SMYD2", "cited": 6, "target": "TP53", "pubmed": ["17108971"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "NGFR-controls-state-change-of-TP53", "source": "NGFR", "cited": 0, "target": "TP53", "pubmed": ["15668238"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAX-controls-expression-of-TP53", "source": "MAX", "cited": 0, "target": "TP53", "pubmed": ["8494784"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-PRKAB1", "source": "TP53", "cited": 5, "target": "PRKAB1", "pubmed": ["16140933", "17409411"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MDM2-controls-state-change-of-TP53", "source": "MDM2", "cited": 2748, "target": "TP53", "pubmed": ["10734067", "11127820", "11340074", "11713287", "14654783", "14671306", "14702041", "15210108", "15242646", "16107876", "9153395", "9153396", "9450543"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SETD8-controls-state-change-of-TP53", "source": "SETD8", "cited": 8, "target": "TP53", "pubmed": ["17707234"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SETD7-controls-state-change-of-TP53", "source": "SETD7", "cited": 8, "target": "TP53", "pubmed": ["15525938", "17646389"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-TYRP1", "source": "TP53", "cited": 0, "target": "TYRP1", "pubmed": ["10640990"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "ATR-controls-state-change-of-TP63", "source": "ATR", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKCA-controls-state-change-of-TP53", "source": "PRKCA", "cited": 12, "target": "TP53", "pubmed": ["10706102", "10733583", "11007451", "11423984", "11585729", "12080066", "14640983", "14744935", "15659650", "16227590", "17898864", "18812399", "19819244", "19933256", "9254608", "9315650", "9571186", "9620776", "9739174"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "ATM-controls-state-change-of-TP63", "source": "ATM", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CHEK2-controls-state-change-of-TP73", "source": "CHEK2", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-DDB2", "source": "TP53", "cited": 23, "target": "DDB2", "pubmed": ["11971958"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKCD-controls-state-change-of-TP53", "source": "PRKCD", "cited": 0, "target": "TP53", "pubmed": ["10581258", "11030628", "11101524", "11300786", "11495913", "11740489", "11780126", "11875057", "12021785", "12093737", "12397361", "12427754", "12676607", "12860987", "12902982", "12907596", "14749479", "15322239", "15381073", "15471885", "15489221", "15526030", "15619621", "15657359", "15706352", "15750624", "15843377", "15870257", "15897882", "16219768", "16247456", "16377624", "16601678", "16717128", "16738336", "16793543", "17105820", "17107963", "17210684", "17332358", "17349958", "17349959", "17380123", "17567906", "17591690", "17891183", "17906639", "18056705", "18160537", "18216278", "18536714", "18560558", "18769132", "19465479", "19819244", "19828042", "19857493", "19861417", "19882354", "19965871", "20018442", "20024960", "20123963", "20171273", "20363803", "20514025", "20610713", "20673369", "20696760", "20811699", "20935676", "20962272", "21057547", "21383696", "21394211", "21642861", "21660965", "21765463", "21765464", "22011578", "22797063", "22878263", "23149944", "24145406", "24196445", "24379358", "24899407"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-TP63", "source": "TP53", "cited": 257, "target": "TP63", "pubmed": ["14576823"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-PML", "source": "TP53", "cited": 102, "target": "PML", "pubmed": ["14992722"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "ATM-controls-state-change-of-TP73", "source": "ATM", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "WRN-controls-state-change-of-TP63", "source": "WRN", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "ATR-controls-state-change-of-TP73", "source": "ATR", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-PCBP4", "source": "TP53", "cited": 0, "target": "PCBP4", "pubmed": ["10891498"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-GADD45A", "source": "TP53", "cited": 45, "target": "GADD45A", "pubmed": ["15186775", "18250150"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKDC-controls-state-change-of-TP53", "source": "PRKDC", "cited": 10, "target": "TP53", "pubmed": ["10202145", "10570149", "10581258", "10606744", "10608806", "10611322", "10656682", "10656795", "10673500", "10673501", "10706102", "10710310", "10713094", "10723129", "10733583", "10734067", "10744722", "10930428", "10958792", "11030628", "11042698", "11096068", "11101524", "11121242", "11175334", "11244509", "11258706", "11300786", "11313957", "11314044", "11397945", "11423984", "11447225", "11495913", "11526498", "11546806", "11551930", "11583595", "11706017", "11707453", "11709713", "11711532", "11740489", "11780126", "11850826", "11861384", "11865061", "11875057", "11883897", "11896572", "11896587", "12021785", "12049739", "12071847", "12080066", "12082529", "12091386", "12093737", "12151394", "12324477", "12384533", "12393500", "12397361", "12397362", "12427754", "12511424", "12518062", "12519769", "12519780", "12531896", "12588868", "12606585", "12637545", "12676607", "12702572", "12756247", "12771937", "12776195", "12810724", "12860987", "12861053", "12890678", "12902982", "12907596", "12939400", "12955074", "12959929", "12969974", "1406679", "14517211", "14527925", "14612532", "14665630", "14712210", "14749479", "14871840", "14871926", "14968111", "15048074", "15064747", "15077171", "15078887", "15082766", "15140942", "15155458", "15159397", "15178764", "15181149", "15226429", "15254178", "15258567", "15269203", "15310764", "15322239", "15355354", "15361830", "15381073", "15456784", "15471885", "15489221", "15489892", "15526030", "15533933", "15542844", "15580310", "15619621", "15629715", "15657359", "15665826", "15671037", "15706352", "15750624", "15758953", "15775976", "15782130", "15792956", "15794754", "15843377", "15866171", "15870257", "15897882", "15963507", "16219768", "16223874", "16247456", "16288207", "16293623", "16377624", "16397295", "16436515", "16478990", "16489034", "16501611", "16601678", "16632641", "16636671", "16648554", "16651424", "16714289", "16717128", "16731759", "16738336", "16774943", "16783362", "16790523", "16793543", "16818505", "16818520", "16891474", "16916644", "16949371", "17045821", "17105820", "17107963", "17108107", "17121812", "17135248", "17210684", "17234789", "17245430", "17254968", "17283137", "17297446", "17297454", "17332358", "17339337", "17349958", "17349959", "17353187", "17363488", "17371838", "17380123", "17456577", "17486112", "17535811", "17553757", "17567906", "17591690", "17596534", "17609585", "17616578", "17668048", "17684018", "17698850", "17712528", "17855337", "17891183", "17906639", "17936559", "17967874", "17975552", "17976513", "17977830", "18032786", "18045533", "18056442", "18056705", "18097051", "18159951", "18160537", "18216278", "18246126", "18272544", "18289945", "18332866", "18339864", "18345031", "18381438", "18406507", "18431490", "18449195", "18490454", "18536714", "18560558", "18593910", "18604166", "18614045", "18669630", "18715874", "18718914", "18765533", "18769132", "18778462", "18785202", "18794113", "18818083", "18847491", "18985806", "18995830", "19085961", "19203586", "19251701", "19266268", "19303885", "19345189", "19465479", "19477925", "19819244", "19828042", "19828454", "19857493", "19861417", "19882354", "19907922", "19934315", "19962312", "19965871", "20005840", "20009884", "20018442", "20024960", "20026654", "20041275", "20080565", "20123963", "20171273", "20353948", "20363803", "20372057", "20514025", "20562916", "20599567", "20610713", "20637859", "20661218", "20663147", "20673369", "20696760", "20711232", "20811699", "20931131", "20935676", "20962272", "21057547", "21148320", "21317932", "21383696", "21386980", "21394211", "21423215", "21441950", "21454683", "21465263", "21532626", "21642861", "21660965", "21757780", "21765463", "21765464", "21832239", "22002314", "22011578", "22030623", "22037398", "22055193", "22099307", "22112863", "22179839", "22285752", "22496350", "22728651", "22797063", "22815859", "22878263", "22975381", "23148227", "23149944", "23150668", "23184057", "23678107", "23798621", "23871434", "23890999", "23982736", "24038750", "24145406", "24196445", "24379358", "24657168", "24711418", "24820418", "24899407", "24958101", "25202122", "8327466", "9363941", "9733515", "9744860", "9843217", "9925639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-GDF15", "source": "TP53", "cited": 18, "target": "GDF15", "pubmed": ["10618379"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "WRN-controls-state-change-of-TP73", "source": "WRN", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-SERPINE1", "source": "TP53", "cited": 35, "target": "SERPINE1", "pubmed": ["7479001"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-PPM1J", "source": "TP53", "cited": 0, "target": "PPM1J", "pubmed": ["16260627"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HTT-controls-state-change-of-TP63", "source": "HTT", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-CASP1", "source": "TP53", "cited": 6, "target": "CASP1", "pubmed": ["11278253"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK14-controls-state-change-of-TP63", "source": "MAPK14", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HMGB1-controls-state-change-of-TP73", "source": "HMGB1", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-CASP6", "source": "TP53", "cited": 13, "target": "CASP6", "pubmed": ["12089322"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK13-controls-state-change-of-TP63", "source": "MAPK13", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HTT-controls-state-change-of-TP53", "source": "HTT", "cited": 9, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK12-controls-state-change-of-TP63", "source": "MAPK12", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK11-controls-state-change-of-TP63", "source": "MAPK11", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SIRT1-controls-expression-of-CDKN1A", "source": "SIRT1", "cited": 0, "target": "CDKN1A", "pubmed": [], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PML-controls-state-change-of-TP53", "source": "PML", "cited": 101, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CREBBP-controls-state-change-of-TP53", "source": "CREBBP", "cited": 72, "target": "TP53", "pubmed": ["18485870"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-TAP1", "source": "TP53", "cited": 6, "target": "TAP1", "pubmed": ["10618714", "12857899"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK13-controls-state-change-of-TP53", "source": "MAPK13", "cited": 0, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK12-controls-state-change-of-TP53", "source": "MAPK12", "cited": 0, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK14-controls-state-change-of-TP53", "source": "MAPK14", "cited": 65, "target": "TP53", "pubmed": ["10202145", "10212189", "10581258", "10606744", "10608806", "10611322", "10656682", "10656795", "10673501", "10706102", "10710310", "10713094", "10723129", "10733583", "10734067", "10744722", "10747897", "10958792", "11030628", "11078726", "11096068", "11101524", "11121242", "11244509", "11258706", "11283254", "11300786", "11313957", "11314044", "11397945", "11423984", "11447225", "11495913", "11526498", "11546806", "11583595", "11706017", "11707453", "11709713", "11711532", "11740489", "11780126", "11850826", "11861384", "11865061", "11875057", "11896572", "11896587", "12021785", "12049739", "12071847", "12080066", "12082529", "12091386", "12093737", "12151394", "12324477", "12384533", "12393500", "12397361", "12397362", "12427754", "12511424", "12518062", "12519769", "12519780", "12531896", "12588868", "12606585", "12637545", "12676607", "12702572", "12756247", "12771937", "12776195", "12860987", "12890678", "12902982", "12907596", "12939400", "12955074", "12959929", "12969974", "1406679", "14517211", "14527925", "14612532", "14665630", "14712210", "14749479", "14871840", "14871926", "14968111", "15048074", "15064747", "15077171", "15078887", "15082766", "15140942", "15155458", "15159397", "15178764", "15181149", "15226429", "15254178", "15258567", "15269203", "15310764", "15322239", "15355354", "15361830", "15381073", "15456784", "15471885", "15489221", "15489892", "15526030", "15533933", "15542844", "15580310", "15619621", "15657359", "15665826", "15706352", "15750624", "15758953", "15775976", "15782130", "15792956", "15794754", "15843377", "15866171", "15870257", "15897882", "16219768", "16223874", "16247456", "16288207", "16293623", "16377624", "16397295", "16436515", "16478990", "16489034", "16501611", "16552184", "16601678", "16632641", "16636671", "16648554", "16651424", "16714289", "16717128", "16731759", "16738336", "16774943", "16783362", "16790523", "16793543", "16818505", "16818520", "16891474", "16916644", "16949371", "17045821", "17105820", "17107963", "17108107", "17210684", "17234789", "17245430", "17254968", "17283137", "17297446", "17297454", "17332358", "17339337", "17349958", "17349959", "17353187", "17363488", "17371838", "17380123", "17456577", "17486112", "17535811", "17553757", "17567906", "17591690", "17596534", "17609585", "17616578", "17668048", "17684018", "17698850", "17712528", "17855337", "17891183", "17906639", "17936559", "17942552", "17967874", "17975552", "17976513", "17977830", "18032786", "18045533", "18056442", "18056705", "18097051", "18159951", "18160537", "18216278", "18246126", "18272544", "18289945", "18332866", "18339864", "18345031", "18381438", "18406507", "18431490", "18449195", "18490454", "18536714", "18560558", "18604166", "18614045", "18715874", "18718914", "18765533", "18769132", "18778462", "18785202", "18794113", "18818083", "18847491", "18985806", "18995830", "19085961", "19203586", "19251701", "19266268", "19303885", "19465479", "19477925", "19819244", "19828042", "19828454", "19857493", "19861417", "19882354", "19907922", "19934315", "19962312", "19965871", "20005840", "20018442", "20024960", "20026654", "20080565", "20123963", "20171273", "20353948", "20363803", "20372057", "20514025", "20562916", "20599567", "20610713", "20637859", "20661218", "20663147", "20673369", "20696760", "20711232", "20811699", "20931131", "20935676", "20962272", "21057547", "21317932", "21383696", "21394211", "21423215", "21441950", "21465263", "21532626", "21642861", "21660965", "21757780", "21765463", "21765464", "21832239", "22002314", "22011578", "22030623", "22037398", "22055193", "22099307", "22112863", "22179839", "22285752", "22728651", "22797063", "22815859", "22878263", "22975381", "23148227", "23149944", "23150668", "23184057", "23678107", "23798621", "23871434", "23890999", "23982736", "24038750", "24145406", "24196445", "24379358", "24657168", "24711418", "24820418", "24899407", "24958101", "25202122", "8327466", "9363941", "9372954", "9733515", "9744860", "9843217", "9925639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome", "PhosphoSite", "pid", "PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK11-controls-state-change-of-TP53", "source": "MAPK11", "cited": 0, "target": "TP53", "pubmed": ["10212189", "10747897", "17254968"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome", "pid", "PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-BAX", "source": "TP53", "cited": 95, "target": "BAX", "pubmed": ["14963330"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HMGB1-controls-state-change-of-TP63", "source": "HMGB1", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-TP73", "source": "TP53", "cited": 42, "target": "TP73", "pubmed": ["11314010"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PML-controls-state-change-of-TP63", "source": "PML", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP2CA-controls-state-change-of-TP73", "source": "PPP2CA", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP2CB-controls-state-change-of-TP73", "source": "PPP2CB", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "FOS-controls-expression-of-TP53", "source": "FOS", "cited": 12, "target": "TP53", "pubmed": ["10072388", "11136975"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CREBBP-controls-expression-of-GADD45A", "source": "CREBBP", "cited": 0, "target": "GADD45A", "pubmed": ["15186775", "18250150"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-CDKN1A", "source": "TP53", "cited": 1480, "target": "CDKN1A", "pubmed": ["11080152", "15655109", "17110336", "17409421", "17707234", "17719541", "17938176", "18250150", "18485870", "19011621", "7796420", "8242752"], "isdirected": true, "type": "controls-expression-of", "datasource": ["Reactome", "pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PML-controls-state-change-of-TP73", "source": "PML", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HMGB1-controls-state-change-of-TP53", "source": "HMGB1", "cited": 21, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "IGBP1-controls-state-change-of-TP73", "source": "IGBP1", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HIPK2-controls-state-change-of-TP53", "source": "HIPK2", "cited": 98, "target": "TP53", "pubmed": ["10581258", "11030628", "11101524", "11300786", "11495913", "11740489", "11780126", "11875057", "12021785", "12093737", "12397361", "12427754", "12676607", "12860987", "12902982", "12907596", "14749479", "15322239", "15381073", "15471885", "15489221", "15526030", "15619621", "15657359", "15706352", "15750624", "15843377", "15870257", "15897882", "16219768", "16247456", "16377624", "16601678", "16717128", "16738336", "16793543", "17105820", "17107963", "17210684", "17332358", "17349958", "17349959", "17380123", "17567906", "17591690", "17891183", "17906639", "18056705", "18160537", "18216278", "18536714", "18560558", "18769132", "19465479", "19819244", "19828042", "19857493", "19861417", "19882354", "19965871", "20018442", "20024960", "20123963", "20171273", "20363803", "20514025", "20610713", "20673369", "20696760", "20811699", "20935676", "20962272", "21057547", "21383696", "21394211", "21642861", "21660965", "21765463", "21765464", "22011578", "22797063", "22878263", "23149944", "24145406", "24196445", "24379358", "24899407"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-RNF144B", "source": "TP53", "cited": 0, "target": "RNF144B", "pubmed": ["12853982"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-HIC1", "source": "TP53", "cited": 22, "target": "HIC1", "pubmed": ["16301995"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-HIRA", "source": "TP53", "cited": 1, "target": "HIRA", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK14-controls-state-change-of-TP73", "source": "MAPK14", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-UBN1", "source": "TP53", "cited": 0, "target": "UBN1", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-RB1", "source": "TP53", "cited": 262, "target": "RB1", "pubmed": ["8119988"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK11-controls-state-change-of-TP73", "source": "MAPK11", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-HMGA2", "source": "TP53", "cited": 5, "target": "HMGA2", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-HMGA1", "source": "TP53", "cited": 5, "target": "HMGA1", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK13-controls-state-change-of-TP73", "source": "MAPK13", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK12-controls-state-change-of-TP73", "source": "MAPK12", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "IGBP1-controls-state-change-of-TP63", "source": "IGBP1", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-TP53I3", "source": "TP53", "cited": 28, "target": "TP53I3", "pubmed": ["11684014", "11919562", "17719542", "18485870"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "DYRK1A-controls-state-change-of-TP53", "source": "DYRK1A", "cited": 1, "target": "TP53", "pubmed": ["10202145", "10581258", "10606744", "10608806", "10611322", "10656682", "10656795", "10673501", "10706102", "10710310", "10713094", "10723129", "10733583", "10734067", "10744722", "10958792", "11030628", "11096068", "11121242", "11244509", "11258706", "11313957", "11314044", "11397945", "11423984", "11447225", "11495913", "11526498", "11546806", "11583595", "11706017", "11707453", "11709713", "11711532", "11850826", "11861384", "11865061", "11875057", "11896572", "11896587", "12021785", "12049739", "12071847", "12080066", "12082529", "12091386", "12151394", "12324477", "12384533", "12393500", "12397362", "12427754", "12511424", "12518062", "12519769", "12519780", "12531896", "12588868", "12606585", "12637545", "12676607", "12702572", "12756247", "12771937", "12776195", "12860987", "12890678", "12902982", "12939400", "12955074", "12959929", "12969974", "1406679", "14517211", "14527925", "14612532", "14665630", "14712210", "14871840", "14871926", "14968111", "15048074", "15064747", "15077171", "15078887", "15082766", "15140942", "15155458", "15159397", "15178764", "15181149", "15226429", "15254178", "15258567", "15269203", "15310764", "15322239", "15355354", "15361830", "15381073", "15456784", "15471885", "15489221", "15489892", "15533933", "15542844", "15580310", "15619621", "15665826", "15750624", "15758953", "15775976", "15782130", "15792956", "15794754", "15843377", "15866171", "15870257", "15897882", "16223874", "16247456", "16288207", "16293623", "16377624", "16397295", "16436515", "16478990", "16489034", "16501611", "16632641", "16636671", "16648554", "16651424", "16714289", "16717128", "16731759", "16774943", "16783362", "16790523", "16818505", "16818520", "16891474", "16916644", "16949371", "17045821", "17105820", "17108107", "17234789", "17245430", "17283137", "17297446", "17297454", "17332358", "17339337", "17353187", "17363488", "17371838", "17380123", "17456577", "17486112", "17535811", "17553757", "17591690", "17596534", "17609585", "17616578", "17668048", "17684018", "17698850", "17712528", "17855337", "17891183", "17936559", "17967874", "17975552", "17976513", "17977830", "18032786", "18045533", "18056442", "18097051", "18159951", "18216278", "18246126", "18272544", "18289945", "18332866", "18339864", "18345031", "18381438", "18406507", "18431490", "18449195", "18490454", "18560558", "18604166", "18614045", "18715874", "18718914", "18765533", "18769132", "18778462", "18785202", "18794113", "18818083", "18847491", "18985806", "18995830", "19085961", "19203586", "19251701", "19266268", "19303885", "19477925", "19819244", "19828454", "19861417", "19882354", "19907922", "19934315", "19962312", "20005840", "20024960", "20026654", "20080565", "20123963", "20353948", "20372057", "20562916", "20599567", "20610713", "20637859", "20661218", "20663147", "20696760", "20711232", "20931131", "20935676", "20962272", "21317932", "21383696", "21394211", "21423215", "21441950", "21465263", "21532626", "21642861", "21660965", "21757780", "21765463", "21765464", "21832239", "22002314", "22011578", "22030623", "22037398", "22055193", "22099307", "22112863", "22179839", "22285752", "22728651", "22797063", "22815859", "22975381", "23148227", "23150668", "23184057", "23678107", "23798621", "23871434", "23890999", "23982736", "24038750", "24657168", "24711418", "24820418", "24958101", "25202122", "8327466", "9363941", "9733515", "9843217", "9925639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SUMO1-controls-state-change-of-TP73", "source": "SUMO1", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAG1-controls-state-change-of-TP63", "source": "PRKAG1", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SIRT1-controls-state-change-of-TP73", "source": "SIRT1", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP2CB-controls-state-change-of-TP63", "source": "PPP2CB", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CHEK2-controls-state-change-of-TP53", "source": "CHEK2", "cited": 73, "target": "TP53", "pubmed": ["10202145", "10570149", "10581258", "10606744", "10608806", "10611322", "10656682", "10656795", "10673500", "10673501", "10706102", "10710310", "10713094", "10723129", "10733583", "10734067", "10744722", "10958792", "11030628", "11042698", "11096068", "11121242", "11175334", "11244509", "11258706", "11300786", "11313957", "11314044", "11397945", "11423984", "11447225", "11495913", "11526498", "11546806", "11551930", "11583595", "11585729", "11706017", "11707453", "11709713", "11711532", "11850826", "11861384", "11865061", "11875057", "11883897", "11896572", "11896587", "12021785", "12049739", "12071847", "12080066", "12082529", "12091386", "12151394", "12324477", "12384533", "12393500", "12397362", "12427754", "12511424", "12518062", "12519769", "12519780", "12531896", "12588868", "12606585", "12637545", "12676607", "12702572", "12756247", "12771937", "12776195", "12810724", "12860987", "12861053", "12890678", "12902982", "12939400", "12955074", "12959929", "12969974", "1406679", "14517211", "14527925", "14612532", "14640983", "14665630", "14712210", "14871840", "14871926", "14968111", "15048074", "15064747", "15077171", "15078887", "15082766", "15140942", "15155458", "15159397", "15178764", "15181149", "15226429", "15254178", "15258567", "15269203", "15310764", "15322239", "15355354", "15361830", "15381073", "15456784", "15471885", "15489221", "15489892", "15533933", "15542844", "15580310", "15619621", "15629715", "15659650", "15665826", "15671037", "15750624", "15758953", "15775976", "15782130", "15792956", "15794754", "15843377", "15866171", "15870257", "15897882", "15963507", "16223874", "16247456", "16288207", "16293623", "16377624", "16397295", "16436515", "16478990", "16489034", "16501611", "16632641", "16636671", "16648554", "16651424", "16714289", "16717128", "16731759", "16774943", "16783362", "16790523", "16818505", "16818520", "16891474", "16916644", "16949371", "17045821", "17105820", "17108107", "17121812", "17135248", "17234789", "17245430", "17254968", "17283137", "17297446", "17297454", "17332358", "17339337", "17353187", "17363488", "17371838", "17380123", "17456577", "17486112", "17535811", "17553757", "17591690", "17596534", "17609585", "17616578", "17668048", "17684018", "17698850", "17712528", "17855337", "17891183", "17898864", "17936559", "17967874", "17975552", "17976513", "17977830", "18032786", "18045533", "18056442", "18097051", "18159951", "18216278", "18246126", "18272544", "18289945", "18332866", "18339864", "18345031", "18381438", "18406507", "18431490", "18449195", "18490454", "18560558", "18593910", "18604166", "18614045", "18669630", "18715874", "18718914", "18765533", "18769132", "18778462", "18785202", "18794113", "18812399", "18818083", "18847491", "18985806", "18995830", "19085961", "19203586", "19251701", "19266268", "19303885", "19477925", "19819244", "19828454", "19861417", "19882354", "19907922", "19933256", "19934315", "19962312", "20005840", "20009884", "20024960", "20026654", "20041275", "20080565", "20123963", "20353948", "20372057", "20562916", "20599567", "20610713", "20637859", "20661218", "20663147", "20673369", "20696760", "20711232", "20931131", "20935676", "20962272", "21148320", "21317932", "21383696", "21386980", "21394211", "21423215", "21441950", "21454683", "21465263", "21532626", "21642861", "21660965", "21757780", "21765463", "21765464", "21832239", "22002314", "22011578", "22030623", "22037398", "22055193", "22099307", "22112863", "22179839", "22285752", "22728651", "22797063", "22815859", "22975381", "23148227", "23150668", "23184057", "23678107", "23798621", "23871434", "23890999", "23982736", "24038750", "24657168", "24711418", "24820418", "24958101", "25202122", "8327466", "9254608", "9315650", "9363941", "9571186", "9620776", "9733515", "9739174", "9744860", "9843217", "9925639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "pid", "PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP2CA-controls-state-change-of-TP63", "source": "PPP2CA", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK7-controls-state-change-of-TP53", "source": "CDK7", "cited": 7, "target": "TP53", "pubmed": ["10202145", "10348343", "10581258", "10656682", "10656795", "10706102", "10733583", "10747897", "11007451", "11101524", "11239457", "11300786", "11423984", "11495913", "11526498", "11583595", "11585729", "11707453", "11709713", "11850826", "11875057", "12021785", "12080066", "12091386", "12393879", "12397361", "12397362", "12427754", "12519780", "12676607", "12776195", "12860987", "12959929", "1406679", "14640983", "14665630", "14744935", "14968111", "15064747", "15155458", "15322239", "15471885", "15489221", "15619621", "15659650", "15792956", "15843377", "16083285", "16227590", "16319070", "16436515", "16552184", "16632641", "16651424", "16717128", "16818520", "17105820", "17108107", "17237827", "17591690", "17891183", "17898864", "17906639", "17942552", "17975552", "18490454", "18523266", "18718914", "18765533", "18769132", "18778462", "18812399", "19251701", "19369195", "19413330", "19819244", "19861417", "19882354", "19933256", "20009884", "20024960", "20123963", "20562916", "20663147", "20686112", "20962272", "21317932", "21383696", "21423215", "21455220", "21460857", "21832239", "22011578", "22112863", "22975381", "23312004", "23603988", "23871434", "24194938", "24657168", "8327466", "9254608", "9315650", "9372954", "9467949", "9571186", "9620776", "9739174", "9744860"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK9-controls-state-change-of-TP53", "source": "CDK9", "cited": 19, "target": "TP53", "pubmed": ["10202145", "10348343", "10581258", "10644693", "10656682", "10656795", "10706102", "10733583", "10747897", "11078726", "11101524", "11239457", "11300786", "11423984", "11495913", "11526498", "11583595", "11687964", "11707453", "11709713", "11850826", "11875057", "12021785", "12091386", "12393879", "12397361", "12397362", "12427754", "12519780", "12676607", "12776195", "12860987", "12959929", "1406679", "14640983", "14665630", "14702041", "14744935", "14968111", "15064747", "15155458", "15302935", "15322239", "15471885", "15489221", "15619621", "15792956", "15843377", "16037820", "16083285", "16227590", "16319070", "16436515", "16552184", "16632641", "16651424", "16674116", "16717128", "16784539", "16818520", "17105820", "17108107", "17237827", "17287340", "17591690", "17891183", "17906639", "17942552", "17975552", "18490454", "18521083", "18523266", "18718914", "18765533", "18769132", "18778462", "18847512", "19251701", "19369195", "19413330", "19574224", "19664995", "19819244", "19861417", "19882354", "20009884", "20024960", "20123963", "20363803", "20562916", "20661218", "20663147", "20686112", "20808790", "20815410", "20962272", "21317932", "21383696", "21423215", "21455220", "21460857", "21659604", "21832239", "21983960", "22011578", "22112863", "22496350", "22547687", "22975381", "23201157", "23312004", "23603988", "23871434", "24194938", "24657168", "25159151", "7596441", "8327466", "9254608", "9315650", "9372954", "9467949", "9739174", "9744860"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK2-controls-state-change-of-TP53", "source": "CDK2", "cited": 26, "target": "TP53", "pubmed": ["10581258", "10644693", "10656795", "11078726", "11283254", "11300786", "11687964", "11875057", "12021785", "12397361", "12397362", "12860987", "1406679", "14640983", "14702041", "14744935", "15302935", "15619621", "16037820", "16227590", "16552184", "16674116", "16784539", "17287340", "17906639", "17942552", "18521083", "18769132", "18847512", "19413330", "19574224", "19664995", "20363803", "20562916", "20661218", "20686112", "20808790", "20815410", "21659604", "21983960", "22011578", "22496350", "22547687", "23201157", "23312004", "25159151", "7596441", "8327466", "9254608"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK5-controls-state-change-of-TP53", "source": "CDK5", "cited": 23, "target": "TP53", "pubmed": ["10202145", "10570149", "10581258", "10606744", "10608806", "10611322", "10656682", "10656795", "10673500", "10673501", "10706102", "10710310", "10713094", "10723129", "10733583", "10734067", "10744722", "10958792", "11030628", "11096068", "11101524", "11121242", "11175334", "11244509", "11258706", "11300786", "11313957", "11314044", "11397945", "11423984", "11447225", "11495913", "11526498", "11546806", "11551930", "11583595", "11706017", "11707453", "11709713", "11711532", "11740489", "11780126", "11850826", "11861384", "11865061", "11875057", "11896572", "11896587", "12021785", "12049739", "12071847", "12080066", "12082529", "12091386", "12093737", "12151394", "12324477", "12384533", "12393500", "12397361", "12397362", "12427754", "12511424", "12518062", "12519769", "12519780", "12531896", "12588868", "12606585", "12637545", "12676607", "12702572", "12756247", "12771937", "12776195", "12810724", "12860987", "12861053", "12890678", "12902982", "12907596", "12939400", "12955074", "12959929", "12969974", "1406679", "14517211", "14527925", "14612532", "14665630", "14712210", "14749479", "14871840", "14871926", "14968111", "15048074", "15064747", "15077171", "15078887", "15082766", "15140942", "15155458", "15159397", "15178764", "15181149", "15226429", "15254178", "15258567", "15269203", "15310764", "15322239", "15355354", "15361830", "15381073", "15456784", "15471885", "15489221", "15489892", "15526030", "15533933", "15542844", "15580310", "15619621", "15629715", "15657359", "15665826", "15671037", "15706352", "15750624", "15758953", "15775976", "15782130", "15792956", "15794754", "15843377", "15866171", "15870257", "15897882", "15963507", "16219768", "16223874", "16247456", "16288207", "16293623", "16377624", "16397295", "16436515", "16478990", "16489034", "16501611", "16552184", "16601678", "16632641", "16636671", "16648554", "16651424", "16714289", "16717128", "16731759", "16738336", "16774943", "16783362", "16790523", "16793543", "16818505", "16818520", "16891474", "16916644", "16949371", "17045821", "17105820", "17107963", "17108107", "17121812", "17135248", "17210684", "17234789", "17245430", "17283137", "17297446", "17297454", "17332358", "17339337", "17349958", "17349959", "17353187", "17363488", "17371838", "17380123", "17456577", "17486112", "17535811", "17553757", "17567906", "17591690", "17596534", "17609585", "17616578", "17668048", "17684018", "17698850", "17712528", "17855337", "17891183", "17906639", "17936559", "17942552", "17967874", "17975552", "17976513", "17977830", "18032786", "18045533", "18056442", "18056705", "18097051", "18159951", "18160537", "18216278", "18246126", "18272544", "18289945", "18332866", "18339864", "18345031", "18381438", "18406507", "18431490", "18449195", "18490454", "18536714", "18560558", "18593910", "18604166", "18614045", "18669630", "18715874", "18718914", "18765533", "18769132", "18778462", "18785202", "18794113", "18818083", "18847491", "18985806", "18995830", "19085961", "19203586", "19251701", "19266268", "19303885", "19465479", "19477925", "19819244", "19828042", "19828454", "19857493", "19861417", "19882354", "19907922", "19934315", "19962312", "19965871", "20005840", "20009884", "20018442", "20024960", "20026654", "20041275", "20080565", "20123963", "20171273", "20353948", "20363803", "20372057", "20514025", "20562916", "20599567", "20610713", "20637859", "20661218", "20663147", "20673369", "20696760", "20711232", "20811699", "20931131", "20935676", "20962272", "21057547", "21148320", "21317932", "21383696", "21394211", "21423215", "21441950", "21454683", "21465263", "21532626", "21642861", "21660965", "21757780", "21765463", "21765464", "21832239", "22002314", "22011578", "22030623", "22037398", "22055193", "22099307", "22112863", "22179839", "22285752", "22728651", "22797063", "22815859", "22878263", "22975381", "23148227", "23149944", "23150668", "23184057", "23678107", "23798621", "23871434", "23890999", "23982736", "24038750", "24145406", "24196445", "24379358", "24657168", "24711418", "24820418", "24899407", "24958101", "25202122", "8327466", "9363941", "9372954", "9733515", "9744860", "9843217", "9925639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "IGBP1-controls-state-change-of-TP53", "source": "IGBP1", "cited": 0, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-BAX", "source": "TP53", "cited": 95, "target": "BAX", "pubmed": ["10518217", "11080152", "11278953", "11684014", "11850816", "15598651", "17145718", "17189187"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-CCNB1", "source": "TP53", "cited": 23, "target": "CCNB1", "pubmed": ["15710382"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SIRT1-controls-state-change-of-TP63", "source": "SIRT1", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAG1-controls-state-change-of-TP73", "source": "PRKAG1", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-MDM2", "source": "TP53", "cited": 2784, "target": "MDM2", "pubmed": ["12138177", "17409421", "7651818", "8319905"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP2CB-controls-state-change-of-TP53", "source": "PPP2CB", "cited": 0, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP2CA-controls-state-change-of-TP53", "source": "PPP2CA", "cited": 5, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CHEK2-controls-state-change-of-TP63", "source": "CHEK2", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-CD82", "source": "TP53", "cited": 44, "target": "CD82", "pubmed": ["9736732"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-FDXR", "source": "TP53", "cited": 0, "target": "FDXR", "pubmed": ["12370809", "17409421"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-HTT", "source": "TP53", "cited": 9, "target": "HTT", "pubmed": ["16278683"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-CTSD", "source": "TP53", "cited": 0, "target": "CTSD", "pubmed": ["9619826"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SIRT1-controls-state-change-of-TP53", "source": "SIRT1", "cited": 50, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-CASP10", "source": "TP53", "cited": 0, "target": "CASP10", "pubmed": ["14688482"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-APAF1", "source": "TP53", "cited": 26, "target": "APAF1", "pubmed": ["11559530"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-HGF", "source": "TP53", "cited": 1, "target": "HGF", "pubmed": ["9023107"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRMT5-controls-state-change-of-TP53", "source": "PRMT5", "cited": 0, "target": "TP53", "pubmed": ["19011621"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-APC", "source": "TP53", "cited": 166, "target": "APC", "pubmed": ["11279192"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-BTG2", "source": "TP53", "cited": 14, "target": "BTG2", "pubmed": ["11814693"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRMT1-controls-expression-of-GADD45A", "source": "PRMT1", "cited": 0, "target": "GADD45A", "pubmed": ["15186775", "18250150"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-ASF1A", "source": "TP53", "cited": 1, "target": "ASF1A", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-FAS", "source": "TP53", "cited": 114, "target": "FAS", "pubmed": ["9841917"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "HTT-controls-state-change-of-TP73", "source": "HTT", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAG1-controls-state-change-of-TP53", "source": "PRKAG1", "cited": 0, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-TRIAP1", "source": "TP53", "cited": 2, "target": "TRIAP1", "pubmed": ["15735003"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-RFWD2", "source": "TP53", "cited": 11, "target": "RFWD2", "pubmed": ["15103385"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "EP300-controls-state-change-of-TP63", "source": "EP300", "cited": 2, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-COL18A1", "source": "TP53", "cited": 1, "target": "COL18A1", "pubmed": ["15958553"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "EP300-controls-expression-of-GADD45A", "source": "EP300", "cited": 0, "target": "GADD45A", "pubmed": ["15186775", "18250150"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAB2-controls-state-change-of-TP73", "source": "PRKAB2", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "EP300-controls-state-change-of-TP53", "source": "EP300", "cited": 117, "target": "TP53", "pubmed": ["18485870"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid", "PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAB1-controls-state-change-of-TP73", "source": "PRKAB1", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-HIST1H1B", "source": "TP53", "cited": 2, "target": "HIST1H1B", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "EP300-controls-state-change-of-TP73", "source": "EP300", "cited": 1, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-HIST1H1C", "source": "TP53", "cited": 4, "target": "HIST1H1C", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-HIST1H1A", "source": "TP53", "cited": 0, "target": "HIST1H1A", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CARM1-controls-expression-of-GADD45A", "source": "CARM1", "cited": 0, "target": "GADD45A", "pubmed": ["15186775", "18250150"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-HIST1H1D", "source": "TP53", "cited": 0, "target": "HIST1H1D", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-HIST1H1E", "source": "TP53", "cited": 0, "target": "HIST1H1E", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "WRN-controls-state-change-of-TP53", "source": "WRN", "cited": 46, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-MSH2", "source": "TP53", "cited": 109, "target": "MSH2", "pubmed": ["10984493", "11350971"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "KAT2B-controls-state-change-of-TP53", "source": "KAT2B", "cited": 34, "target": "TP53", "pubmed": ["17110336", "9744860", "9891054"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-PYCARD", "source": "TP53", "cited": 13, "target": "PYCARD", "pubmed": ["14730312"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAA2-controls-state-change-of-TP53", "source": "PRKAA2", "cited": 5, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SP1-controls-expression-of-CCNB1", "source": "SP1", "cited": 1, "target": "CCNB1", "pubmed": ["15710382"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAA1-controls-state-change-of-TP53", "source": "PRKAA1", "cited": 1, "target": "TP53", "pubmed": ["10202145", "10570149", "10606744", "10656795", "10673500", "10673501", "10706102", "10710310", "10733583", "10734067", "11030628", "11175334", "11244509", "11258706", "11397945", "11423984", "11447225", "11495913", "11526498", "11551930", "11583595", "11707453", "11850826", "11861384", "11875057", "11883897", "11896572", "11896587", "12091386", "12384533", "12427754", "12531896", "12676607", "12756247", "12810724", "12860987", "12861053", "12902982", "12955074", "12959929", "12969974", "14517211", "14527925", "14612532", "14665630", "15064747", "15140942", "15254178", "15269203", "15322239", "15355354", "15471885", "15489221", "15542844", "15629715", "15671037", "15750624", "15843377", "15963507", "16377624", "16651424", "16731759", "16774943", "16818520", "17105820", "17121812", "17135248", "17245430", "17339337", "17353187", "17363488", "17698850", "17967874", "17977830", "18159951", "18246126", "18593910", "18669630", "18718914", "18778462", "18794113", "19819244", "19861417", "19882354", "20009884", "20024960", "20041275", "20562916", "20673369", "20696760", "20962272", "21148320", "21383696", "21386980", "21454683", "21832239", "22030623", "22112863", "22285752", "22728651", "22797063", "22815859", "23798621", "23871434", "24657168", "8327466"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-GPX1", "source": "TP53", "cited": 10, "target": "GPX1", "pubmed": ["16140933"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-CABIN1", "source": "TP53", "cited": 6, "target": "CABIN1", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "MDM2-controls-state-change-of-NEDD8", "source": "MDM2", "cited": 10, "target": "NEDD8", "pubmed": ["15242646"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PLK3-controls-state-change-of-TP53", "source": "PLK3", "cited": 16, "target": "TP53", "pubmed": ["10202145", "10570149", "10656795", "10673500", "10673501", "10706102", "10710310", "10734067", "11030628", "11175334", "11244509", "11258706", "11397945", "11423984", "11447225", "11495913", "11526498", "11551930", "11583595", "11707453", "11850826", "11861384", "11875057", "11896572", "11896587", "12091386", "12384533", "12427754", "12531896", "12676607", "12756247", "12810724", "12860987", "12861053", "12902982", "12955074", "12959929", "12969974", "14517211", "14527925", "14612532", "14665630", "15064747", "15140942", "15254178", "15269203", "15322239", "15471885", "15489221", "15629715", "15671037", "15750624", "15843377", "15963507", "16377624", "16651424", "16731759", "16774943", "16818520", "17105820", "17121812", "17135248", "17245430", "17339337", "17353187", "17363488", "17698850", "17967874", "17977830", "18159951", "18593910", "18669630", "18718914", "18778462", "19819244", "19861417", "19882354", "20009884", "20024960", "20041275", "20562916", "20673369", "20696760", "20962272", "21148320", "21383696", "21454683", "21832239", "22030623", "22112863", "22285752", "22728651", "22797063", "22815859", "23798621", "23871434", "24657168", "8327466"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAB1-controls-state-change-of-TP53", "source": "PRKAB1", "cited": 5, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SUMO1-controls-state-change-of-TP53", "source": "SUMO1", "cited": 39, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAA1-controls-state-change-of-TP63", "source": "PRKAA1", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP1R13L-controls-state-change-of-TP53", "source": "PPP1R13L", "cited": 13, "target": "TP53", "pubmed": ["10581258", "11740489", "11780126", "16377624", "17349958", "17906639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-PLK3", "source": "TP53", "cited": 16, "target": "PLK3", "pubmed": ["16140933"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAA2-controls-state-change-of-TP63", "source": "PRKAA2", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAB2-controls-state-change-of-TP53", "source": "PRKAB2", "cited": 0, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "DAPK1-controls-state-change-of-TP53", "source": "DAPK1", "cited": 6, "target": "TP53", "pubmed": ["10202145", "10570149", "10606744", "10656795", "10673500", "10673501", "10706102", "10710310", "10733583", "10734067", "11030628", "11175334", "11244509", "11258706", "11397945", "11423984", "11447225", "11495913", "11526498", "11551930", "11583595", "11707453", "11850826", "11861384", "11875057", "11883897", "11896572", "11896587", "12091386", "12384533", "12427754", "12531896", "12676607", "12756247", "12810724", "12860987", "12861053", "12902982", "12955074", "12959929", "12969974", "14517211", "14527925", "14612532", "14665630", "15064747", "15140942", "15254178", "15269203", "15322239", "15355354", "15471885", "15489221", "15542844", "15629715", "15671037", "15750624", "15843377", "15963507", "16377624", "16651424", "16731759", "16774943", "16818520", "17105820", "17121812", "17135248", "17245430", "17339337", "17353187", "17363488", "17698850", "17967874", "17977830", "18159951", "18246126", "18593910", "18669630", "18718914", "18778462", "18794113", "19819244", "19861417", "19882354", "20009884", "20024960", "20041275", "20562916", "20673369", "20696760", "20847049", "20851891", "20959462", "20962272", "21148320", "21383696", "21386980", "21454683", "21832239", "22030623", "22112863", "22285752", "22728651", "22797063", "22815859", "23798621", "23871434", "24657168", "8327466"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK1-controls-state-change-of-TP53", "source": "CDK1", "cited": 47, "target": "TP53", "pubmed": ["10644693", "10656795", "11078726", "11300786", "11687964", "11875057", "12021785", "12397361", "12397362", "12860987", "1406679", "14640983", "14702041", "14744935", "15302935", "15619621", "16037820", "16227590", "16552184", "16674116", "16784539", "17287340", "17906639", "17942552", "18521083", "18769132", "18847512", "19413330", "19574224", "19664995", "20363803", "20562916", "20661218", "20686112", "20808790", "20815410", "21659604", "21983960", "22011578", "22496350", "22547687", "23201157", "23312004", "25159151", "7596441", "8327466", "9254608"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "DAPK3-controls-state-change-of-TP53", "source": "DAPK3", "cited": 0, "target": "TP53", "pubmed": ["10202145", "10570149", "10656795", "10673500", "10673501", "10706102", "10710310", "10734067", "11030628", "11175334", "11244509", "11258706", "11397945", "11423984", "11447225", "11495913", "11526498", "11551930", "11583595", "11707453", "11850826", "11861384", "11875057", "11896572", "11896587", "12091386", "12384533", "12427754", "12531896", "12676607", "12756247", "12810724", "12860987", "12861053", "12902982", "12955074", "12959929", "12969974", "14517211", "14527925", "14612532", "14665630", "15064747", "15140942", "15254178", "15269203", "15322239", "15471885", "15489221", "15629715", "15671037", "15750624", "15843377", "15963507", "16377624", "16651424", "16731759", "16774943", "16818520", "17105820", "17121812", "17135248", "17245430", "17339337", "17353187", "17363488", "17698850", "17967874", "17977830", "18159951", "18593910", "18669630", "18718914", "18778462", "19819244", "19861417", "19882354", "20009884", "20024960", "20041275", "20562916", "20673369", "20696760", "20962272", "21148320", "21383696", "21454683", "21832239", "22030623", "22112863", "22285752", "22728651", "22797063", "22815859", "23798621", "23871434", "24657168", "8327466"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAB1-controls-state-change-of-TP63", "source": "PRKAB1", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "SUMO1-controls-state-change-of-TP63", "source": "SUMO1", "cited": 1, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAA1-controls-state-change-of-TP73", "source": "PRKAA1", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "E4F1-controls-state-change-of-TP53", "source": "E4F1", "cited": 12, "target": "TP53", "pubmed": ["17110336", "9288740"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAA2-controls-state-change-of-TP73", "source": "PRKAA2", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAB2-controls-state-change-of-TP63", "source": "PRKAB2", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }] ================================================ FILE: documentation/demos/concentric-layout/index.html ================================================ Concentric demo

Concentric demo

================================================ FILE: documentation/demos/concentric-layout/style.css ================================================ body { font-family: helvetica; font-size: 14px; } #cy { width: 100%; height: 100%; position: absolute; left: 0; top: 0; z-index: 999; } h1 { opacity: 0.5; font-size: 1em; } ================================================ FILE: documentation/demos/cose-bilkent-layout/code.js ================================================ fetch('data.json', {mode: 'no-cors'}) .then(function(res) { return res.json() }) .then(function(data) { var cy = window.cy = cytoscape({ container: document.getElementById('cy'), boxSelectionEnabled: false, autounselectify: true, layout: { name: 'cose-bilkent', animate: false }, style: [ { selector: 'node', style: { 'background-color': '#ad1a66' } }, { selector: 'edge', style: { 'width': 3, 'line-color': '#ad1a66' } } ], elements: data }); }); ================================================ FILE: documentation/demos/cose-bilkent-layout/data.json ================================================ [{ "data": { "id": "glyph9", "sbgnbbox": { "x": 1452.639173965406, "y": 609.3619416544145, "w": "120.0", "h": "60.0" }, "sbgnclass": "macromolecule", "sbgnlabel": "hexokinase", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 1452.639173965406, "y": 609.3619416544145 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph0", "sbgnbbox": { "x": 1351.3490293961959, "y": 518.9529901384763, "w": "60.0", "h": "60.0" }, "sbgnclass": "simple chemical", "sbgnlabel": "glucose", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 1351.3490293961959, "y": 518.9529901384763 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph6", "sbgnbbox": { "x": 1358.2854747390154, "y": 707.9866590968695, "w": "60.0", "h": "60.0" }, "sbgnclass": "simple chemical", "sbgnlabel": "ATP", "sbgnstatesandinfos": [], "sbgnclonemarker": true, "ports": [] }, "position": { "x": 1358.2854747390154, "y": 707.9866590968695 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph8", "sbgnbbox": { "x": 1322.9939787691299, "y": 614.6878118623499, "w": "20.0", "h": "20.0" }, "sbgnclass": "process", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 1322.9939787691299, "y": 614.6878118623499 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph7", "sbgnbbox": { "x": 1239.4852011317887, "y": 543.2369849876238, "w": "60.0", "h": "60.0" }, "sbgnclass": "simple chemical", "sbgnlabel": "ADP", "sbgnstatesandinfos": [], "sbgnclonemarker": true, "ports": [] }, "position": { "x": 1239.4852011317887, "y": 543.2369849876238 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph12", "sbgnbbox": { "x": 841.6855140740067, "y": 765.0152660242113, "w": "60.0", "h": "60.0" }, "sbgnclass": "simple chemical", "sbgnlabel": "ADP", "sbgnstatesandinfos": [], "sbgnclonemarker": true, "ports": [] }, "position": { "x": 841.6855140740067, "y": 765.0152660242113 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph13", "sbgnbbox": { "x": 1019.5908382748769, "y": 841.6087025848726, "w": "60.0", "h": "60.0" }, "sbgnclass": "simple chemical", "sbgnlabel": "ATP", "sbgnstatesandinfos": [], "sbgnclonemarker": true, "ports": [] }, "position": { "x": 1019.5908382748769, "y": 841.6087025848726 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph1", "sbgnbbox": { "x": 1231.2768042260652, "y": 673.2683218469676, "w": "60.0", "h": "60.0" }, "sbgnclass": "simple chemical", "sbgnlabel": "glucose 6P", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 1231.2768042260652, "y": 673.2683218469676 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph2", "sbgnbbox": { "x": 1039.8995038336504, "y": 730.180116446269, "w": "60.0", "h": "60.0" }, "sbgnclass": "simple chemical", "sbgnlabel": "fructose 6P", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 1039.8995038336504, "y": 730.180116446269 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph15", "sbgnbbox": { "x": 569.5498472077387, "y": 506.89980858075364, "w": "120.0", "h": "60.0" }, "sbgnclass": "macromolecule", "sbgnlabel": "triose-P isomerase", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 569.5498472077387, "y": 506.89980858075364 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph3", "sbgnbbox": { "x": 903.0347368937041, "y": 654.3308627056822, "w": "60.0", "h": "60.0" }, "sbgnclass": "simple chemical", "sbgnlabel": "fructose 1,6P", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 903.0347368937041, "y": 654.3308627056822 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph17", "sbgnbbox": { "x": 1195.6310733031135, "y": 820.9504141631944, "w": "120.0", "h": "60.0" }, "sbgnclass": "macromolecule", "sbgnlabel": "glucose-6P isomerase", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 1195.6310733031135, "y": 820.9504141631944 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph10", "sbgnbbox": { "x": 1141.2404374322139, "y": 732.3190922346248, "w": "20.0", "h": "20.0" }, "sbgnclass": "process", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 1141.2404374322139, "y": 732.3190922346248 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph19", "sbgnbbox": { "x": 893.1427762830865, "y": 856.2695126662625, "w": "120.0", "h": "60.0" }, "sbgnclass": "macromolecule", "sbgnlabel": "phospho fructokinase", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 893.1427762830865, "y": 856.2695126662625 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph11", "sbgnbbox": { "x": 939.3335184518824, "y": 758.3699048922733, "w": "20.0", "h": "20.0" }, "sbgnclass": "process", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 939.3335184518824, "y": 758.3699048922733 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph18", "sbgnbbox": { "x": 770.4114528170364, "y": 659.2220219290564, "w": "120.0", "h": "60.0" }, "sbgnclass": "macromolecule", "sbgnlabel": "adolase", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 770.4114528170364, "y": 659.2220219290564 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph16", "sbgnbbox": { "x": 818.0111009023315, "y": 564.8072603606723, "w": "20.0", "h": "20.0" }, "sbgnclass": "process", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 818.0111009023315, "y": 564.8072603606723 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph22", "sbgnbbox": { "x": 651.1292498357636, "y": 314.1387423188818, "w": "120.0", "h": "60.0" }, "sbgnclass": "macromolecule", "sbgnlabel": "GAPDH", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 651.1292498357636, "y": 314.1387423188818 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph4", "sbgnbbox": { "x": 792.0076145303351, "y": 454.0225025614517, "w": "60.0", "h": "60.0" }, "sbgnclass": "simple chemical", "sbgnlabel": "GA-3P", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 792.0076145303351, "y": 454.0225025614517 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph23", "sbgnbbox": { "x": 704.0937009722281, "y": 398.0421081673902, "w": "60.0", "h": "60.0" }, "sbgnclass": "simple chemical", "sbgnlabel": "Pi", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 704.0937009722281, "y": 398.0421081673902 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph24", "sbgnbbox": { "x": 809.2974819306742, "y": 231.7141323534711, "w": "60.0", "h": "60.0" }, "sbgnclass": "simple chemical", "sbgnlabel": "NAD", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 809.2974819306742, "y": 231.7141323534711 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph25", "sbgnbbox": { "x": 890.826951363933, "y": 299.74915938409947, "w": "60.0", "h": "60.0" }, "sbgnclass": "simple chemical", "sbgnlabel": "H+", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 890.826951363933, "y": 299.74915938409947 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph20", "sbgnbbox": { "x": 786.2625869125006, "y": 331.67766378118495, "w": "20.0", "h": "20.0" }, "sbgnclass": "process", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 786.2625869125006, "y": 331.67766378118495 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph26", "sbgnbbox": { "x": 879.2981049664311, "y": 389.27232563593486, "w": "60.0", "h": "60.0" }, "sbgnclass": "simple chemical", "sbgnlabel": "NADH", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 879.2981049664311, "y": 389.27232563593486 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph35", "sbgnbbox": { "x": 627.088268638501, "y": 40.089848876876886, "w": "120.0", "h": "60.0" }, "sbgnclass": "macromolecule", "sbgnlabel": "PGK1", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 627.088268638501, "y": 40.089848876876886 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph36", "sbgnbbox": { "x": 329.6761506918384, "y": 187.20503497360494, "w": "120.0", "h": "60.0" }, "sbgnclass": "macromolecule", "sbgnlabel": "PG mutase", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 329.6761506918384, "y": 187.20503497360494 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph37", "sbgnbbox": { "x": 155.12947729633356, "y": 379.5263531900425, "w": "120.0", "h": "60.0" }, "sbgnclass": "macromolecule", "sbgnlabel": "enolase", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 155.12947729633356, "y": 379.5263531900425 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph38", "sbgnbbox": { "x": 70.13952165372024, "y": 581.2691021233562, "w": "120.0", "h": "60.0" }, "sbgnclass": "macromolecule", "sbgnlabel": "pyruvate kinase", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 70.13952165372024, "y": 581.2691021233562 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph21", "sbgnbbox": { "x": 713.4639263718316, "y": 229.06355211274115, "w": "60.0", "h": "60.0" }, "sbgnclass": "simple chemical", "sbgnlabel": "1,3 BPG", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 713.4639263718316, "y": 229.06355211274115 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph42", "sbgnbbox": { "x": 523.848994074475, "y": 108.47701882803744, "w": "60.0", "h": "60.0" }, "sbgnclass": "simple chemical", "sbgnlabel": "ADP", "sbgnstatesandinfos": [], "sbgnclonemarker": true, "ports": [] }, "position": { "x": 523.848994074475, "y": 108.47701882803744 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph41", "sbgnbbox": { "x": 718.966532806447, "y": 116.46683749236911, "w": "60.0", "h": "60.0" }, "sbgnclass": "simple chemical", "sbgnlabel": "ATP", "sbgnstatesandinfos": [], "sbgnclonemarker": true, "ports": [] }, "position": { "x": 718.966532806447, "y": 116.46683749236911 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph31", "sbgnbbox": { "x": 621.3138039842713, "y": 145.7168752444793, "w": "20.0", "h": "20.0" }, "sbgnclass": "process", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 621.3138039842713, "y": 145.7168752444793 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph27", "sbgnbbox": { "x": 525.2099120385327, "y": 210.92542274858295, "w": "60.0", "h": "60.0" }, "sbgnclass": "simple chemical", "sbgnlabel": "3 PG", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 525.2099120385327, "y": 210.92542274858295 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph32", "sbgnbbox": { "x": 426.3492127437995, "y": 257.85665030680025, "w": "20.0", "h": "20.0" }, "sbgnclass": "process", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 426.3492127437995, "y": 257.85665030680025 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph28", "sbgnbbox": { "x": 346.30926488002945, "y": 344.4562152937847, "w": "60.0", "h": "60.0" }, "sbgnclass": "simple chemical", "sbgnlabel": "2 PG", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 346.30926488002945, "y": 344.4562152937847 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph43", "sbgnbbox": { "x": 363.54724181648487, "y": 486.5705174517715, "w": "60.0", "h": "60.0" }, "sbgnclass": "simple chemical", "sbgnlabel": "H2O", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 363.54724181648487, "y": 486.5705174517715 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph33", "sbgnbbox": { "x": 276.2797233955059, "y": 435.0423711483709, "w": "20.0", "h": "20.0" }, "sbgnclass": "process", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 269.87972487503066, "y": 430.2423722580144 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph29", "sbgnbbox": { "x": 227.86139816113416, "y": 531.824141876398, "w": "60.0", "h": "60.0" }, "sbgnclass": "simple chemical", "sbgnlabel": "PEP", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 227.86139816113416, "y": 531.824141876398 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph39", "sbgnbbox": { "x": 104.77693104995387, "y": 691.8382969303054, "w": "60.0", "h": "60.0" }, "sbgnclass": "simple chemical", "sbgnlabel": "ADP", "sbgnstatesandinfos": [], "sbgnclonemarker": true, "ports": [] }, "position": { "x": 104.77693104995387, "y": 691.8382969303054 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph40", "sbgnbbox": { "x": 292.039416141131, "y": 643.4009391289965, "w": "60.0", "h": "60.0" }, "sbgnclass": "simple chemical", "sbgnlabel": "ATP", "sbgnstatesandinfos": [], "sbgnclonemarker": true, "ports": [] }, "position": { "x": 292.039416141131, "y": 643.4009391289965 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph34", "sbgnbbox": { "x": 193.8304385062596, "y": 632.9540034207419, "w": "20.0", "h": "20.0" }, "sbgnclass": "process", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 193.8304385062596, "y": 632.9540034207419 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph30", "sbgnbbox": { "x": 205.4745704273754, "y": 733.5181650652648, "w": "60.0", "h": "60.0" }, "sbgnclass": "simple chemical", "sbgnlabel": "pyruvate", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 205.4745704273754, "y": 733.5181650652648 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph14", "sbgnbbox": { "x": 695.1248473196924, "y": 482.8828321494848, "w": "20.0", "h": "20.0" }, "sbgnclass": "process", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 695.1248473196924, "y": 482.8828321494848 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "glyph5", "sbgnbbox": { "x": 721.6687687330186, "y": 570.3868893775194, "w": "60.0", "h": "60.0" }, "sbgnclass": "simple chemical", "sbgnlabel": "DHA-P", "sbgnstatesandinfos": [], "ports": [] }, "position": { "x": 721.6687687330186, "y": 570.3868893775194 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e22", "sbgnclass": "catalysis", "sbgncardinality": 0, "source": "glyph9", "target": "glyph8", "portsource": "glyph9", "porttarget": "glyph8" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e23", "sbgnclass": "consumption", "sbgncardinality": 0, "source": "glyph0", "target": "glyph8", "portsource": "glyph0", "porttarget": "glyph8" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e24", "sbgnclass": "production", "sbgncardinality": 0, "source": "glyph8", "target": "glyph1", "portsource": "glyph8", "porttarget": "glyph1" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e25", "sbgnclass": "consumption", "sbgncardinality": 0, "source": "glyph6", "target": "glyph8", "portsource": "glyph6", "porttarget": "glyph8" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e26", "sbgnclass": "production", "sbgncardinality": 0, "source": "glyph8", "target": "glyph7", "portsource": "glyph8", "porttarget": "glyph7" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e27", "sbgnclass": "production", "sbgncardinality": 0, "source": "glyph11", "target": "glyph12", "portsource": "glyph11", "porttarget": "glyph12" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e28", "sbgnclass": "consumption", "sbgncardinality": 0, "source": "glyph13", "target": "glyph11", "portsource": "glyph13", "porttarget": "glyph11" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e29", "sbgnclass": "consumption", "sbgncardinality": 0, "source": "glyph1", "target": "glyph10", "portsource": "glyph1", "porttarget": "glyph10" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e30", "sbgnclass": "production", "sbgncardinality": 0, "source": "glyph10", "target": "glyph2", "portsource": "glyph10", "porttarget": "glyph2" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e31", "sbgnclass": "consumption", "sbgncardinality": 0, "source": "glyph2", "target": "glyph11", "portsource": "glyph2", "porttarget": "glyph11" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e32", "sbgnclass": "production", "sbgncardinality": 0, "source": "glyph11", "target": "glyph3", "portsource": "glyph11", "porttarget": "glyph3" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e33", "sbgnclass": "production", "sbgncardinality": 0, "source": "glyph14", "target": "glyph4", "portsource": "glyph14", "porttarget": "glyph4" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e34", "sbgnclass": "catalysis", "sbgncardinality": 0, "source": "glyph15", "target": "glyph14", "portsource": "glyph15", "porttarget": "glyph14" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e35", "sbgnclass": "consumption", "sbgncardinality": 0, "source": "glyph3", "target": "glyph16", "portsource": "glyph3", "porttarget": "glyph16" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e36", "sbgnclass": "production", "sbgncardinality": 0, "source": "glyph16", "target": "glyph5", "portsource": "glyph16", "porttarget": "glyph5" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e37", "sbgnclass": "production", "sbgncardinality": 0, "source": "glyph16", "target": "glyph4", "portsource": "glyph16", "porttarget": "glyph4" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e38", "sbgnclass": "catalysis", "sbgncardinality": 0, "source": "glyph17", "target": "glyph10", "portsource": "glyph17", "porttarget": "glyph10" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e39", "sbgnclass": "catalysis", "sbgncardinality": 0, "source": "glyph19", "target": "glyph11", "portsource": "glyph19", "porttarget": "glyph11" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e40", "sbgnclass": "catalysis", "sbgncardinality": 0, "source": "glyph18", "target": "glyph16", "portsource": "glyph18", "porttarget": "glyph16" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e41", "sbgnclass": "catalysis", "sbgncardinality": 0, "source": "glyph22", "target": "glyph20", "portsource": "glyph22", "porttarget": "glyph20" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e42", "sbgnclass": "consumption", "sbgncardinality": 0, "source": "glyph4", "target": "glyph20", "portsource": "glyph4", "porttarget": "glyph20" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e43", "sbgnclass": "production", "sbgncardinality": 0, "source": "glyph20", "target": "glyph21", "portsource": "glyph20", "porttarget": "glyph21" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e44", "sbgnclass": "consumption", "sbgncardinality": 0, "source": "glyph23", "target": "glyph20", "portsource": "glyph23", "porttarget": "glyph20" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e45", "sbgnclass": "consumption", "sbgncardinality": 0, "source": "glyph24", "target": "glyph20", "portsource": "glyph24", "porttarget": "glyph20" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e46", "sbgnclass": "production", "sbgncardinality": 0, "source": "glyph20", "target": "glyph25", "portsource": "glyph20", "porttarget": "glyph25" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e47", "sbgnclass": "production", "sbgncardinality": 0, "source": "glyph20", "target": "glyph26", "portsource": "glyph20", "porttarget": "glyph26" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e48", "sbgnclass": "catalysis", "sbgncardinality": 0, "source": "glyph35", "target": "glyph31", "portsource": "glyph35", "porttarget": "glyph31" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e49", "sbgnclass": "catalysis", "sbgncardinality": 0, "source": "glyph36", "target": "glyph32", "portsource": "glyph36", "porttarget": "glyph32" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e50", "sbgnclass": "catalysis", "sbgncardinality": 0, "source": "glyph37", "target": "glyph33", "portsource": "glyph37", "porttarget": "glyph33" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e51", "sbgnclass": "catalysis", "sbgncardinality": 0, "source": "glyph38", "target": "glyph34", "portsource": "glyph38", "porttarget": "glyph34" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e52", "sbgnclass": "consumption", "sbgncardinality": 0, "source": "glyph21", "target": "glyph31", "portsource": "glyph21", "porttarget": "glyph31" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e53", "sbgnclass": "consumption", "sbgncardinality": 0, "source": "glyph42", "target": "glyph31", "portsource": "glyph42", "porttarget": "glyph31" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e54", "sbgnclass": "production", "sbgncardinality": 0, "source": "glyph31", "target": "glyph41", "portsource": "glyph31", "porttarget": "glyph41" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e55", "sbgnclass": "production", "sbgncardinality": 0, "source": "glyph31", "target": "glyph27", "portsource": "glyph31", "porttarget": "glyph27" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e56", "sbgnclass": "consumption", "sbgncardinality": 0, "source": "glyph27", "target": "glyph32", "portsource": "glyph27", "porttarget": "glyph32" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e57", "sbgnclass": "production", "sbgncardinality": 0, "source": "glyph32", "target": "glyph28", "portsource": "glyph32", "porttarget": "glyph28" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e58", "sbgnclass": "consumption", "sbgncardinality": 0, "source": "glyph28", "target": "glyph33", "portsource": "glyph28", "porttarget": "glyph33" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e59", "sbgnclass": "production", "sbgncardinality": 0, "source": "glyph33", "target": "glyph43", "portsource": "glyph33", "porttarget": "glyph43" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e60", "sbgnclass": "production", "sbgncardinality": 0, "source": "glyph33", "target": "glyph29", "portsource": "glyph33", "porttarget": "glyph29" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e61", "sbgnclass": "consumption", "sbgncardinality": 0, "source": "glyph29", "target": "glyph34", "portsource": "glyph29", "porttarget": "glyph34" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e62", "sbgnclass": "consumption", "sbgncardinality": 0, "source": "glyph39", "target": "glyph34", "portsource": "glyph39", "porttarget": "glyph34" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e63", "sbgnclass": "production", "sbgncardinality": 0, "source": "glyph34", "target": "glyph40", "portsource": "glyph34", "porttarget": "glyph40" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e64", "sbgnclass": "production", "sbgncardinality": 0, "source": "glyph34", "target": "glyph30", "portsource": "glyph34", "porttarget": "glyph30" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e65", "sbgnclass": "production", "sbgncardinality": 0, "source": "glyph14", "target": "glyph5", "portsource": "glyph14", "porttarget": "glyph5" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }] ================================================ FILE: documentation/demos/cose-bilkent-layout/index.html ================================================ cytoscape-cose-bilkent.js demo

cytoscape-cose-bilkent demo

================================================ FILE: documentation/demos/cose-bilkent-layout/style.css ================================================ body { font-family: helvetica; font-size: 14px; } #cy { width: 100%; height: 100%; position: absolute; left: 0; top: 0; z-index: 999; } h1 { opacity: 0.5; font-size: 1em; } ================================================ FILE: documentation/demos/cose-bilkent-layout-compound/code.js ================================================ fetch('data.json', {mode: 'no-cors'}) .then(function(res) { return res.json() }) .then(function(data) { var cy = window.cy = cytoscape({ container: document.getElementById('cy'), layout: { name: 'cose-bilkent', animate: false }, style: [ { selector: 'node', style: { 'background-color': '#ad1a66' } }, { selector: ':parent', style: { 'background-opacity': 0.333 } }, { selector: 'edge', style: { 'width': 3, 'line-color': '#ad1a66' } } ], elements: data }); }); ================================================ FILE: documentation/demos/cose-bilkent-layout-compound/data.json ================================================ [{ "data": { "id": "n0" }, "position": { "x": 122.50374073928583, "y": 367.98329788349827 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n0:n0", "parent": "n0" }, "position": { "x": 209.0674320882374, "y": 382.7065284623535 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n0:n1", "parent": "n0" }, "position": { "x": 142.2888292225041, "y": 450.92046107173917 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n0:n2", "parent": "n0" }, "position": { "x": 182.2214883151621, "y": 298.98997315342774 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n0:n3", "parent": "n0" }, "position": { "x": 121.52030011362558, "y": 368.17931244036083 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n0:n4", "parent": "n0" }, "position": { "x": 35.94004939033425, "y": 354.52885825453217 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n0:n5", "parent": "n0" }, "position": { "x": 98.2395571029856, "y": 285.0461346952574 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n2" }, "position": { "x": 467.0267020797804, "y": 80.2773842699168 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n2:n0", "parent": "n2" }, "position": { "x": 417.4178741533308, "y": 125.50672352045078 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n2:n1", "parent": "n2" }, "position": { "x": 548.2154780707372, "y": 106.01744529364254 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n2:n4", "parent": "n2" }, "position": { "x": 469.07146102347747, "y": 45.714770370076906 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n2:n7", "parent": "n2" }, "position": { "x": 385.8379260888237, "y": 35.04804501938281 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n3" }, "position": { "x": 570.0696797318568, "y": 365.3791298251542 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n3:n1", "parent": "n3" }, "position": { "x": 420.8386954496027, "y": 481.72758382436245 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n3:n3", "parent": "n3" }, "position": { "x": 446.29982440410276, "y": 298.3920866191955 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n3:n7", "parent": "n3" }, "position": { "x": 415.9437139883562, "y": 392.69607603288597 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "p0", "parent": "n3" }, "position": { "x": 633.4146202751332, "y": 347.8836539152288 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n3:n0", "parent": "p0" }, "position": { "x": 636.5506526886438, "y": 350.8661004189891 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n3:n2", "parent": "p0" }, "position": { "x": 552.633595074909, "y": 378.53275341426115 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n3:n4", "parent": "p0" }, "position": { "x": 628.8212503757277, "y": 436.73663200451165 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n3:n5", "parent": "p0" }, "position": { "x": 714.1956454753574, "y": 312.4509501679866 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n3:n6", "parent": "p0" }, "position": { "x": 635.2142950493853, "y": 259.03067582594593 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n4" }, "position": { "x": 326.3876669777849, "y": 258.3029296178655 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n5" }, "position": { "x": 290.10860135152006, "y": 99.31675442830439 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n6" }, "position": { "x": 272.3840520665526, "y": 182.5287195618913 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n7" }, "position": { "x": 317.195608111733, "y": 342.7874286188903 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n1:n4" }, "position": { "x": 309.02204423693934, "y": 453.3065572098769 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n1:n5" }, "position": { "x": 314.06982432382256, "y": 539.3443748178611 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e0", "source": "n0:n4", "target": "n0:n5" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e3", "source": "n0:n2", "target": "n0:n5" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e4", "source": "n2:n1", "target": "n2:n4" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e5", "source": "n0:n3", "target": "n0:n4" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e6", "source": "n3", "target": "n2" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e7", "source": "n5", "target": "n6" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e8", "source": "n5", "target": "n2" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e9", "source": "n3:n3", "target": "n3:n2" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e11", "source": "n0:n0", "target": "n0:n1" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e12", "source": "n0:n3", "target": "n0:n2" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e13", "source": "n3:n6", "target": "n3:n0" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e14", "source": "n3:n4", "target": "n3:n2" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e15", "source": "n3:n3", "target": "n2:n0" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e16", "source": "n2:n4", "target": "n2:n7" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e17", "source": "n3:n7", "target": "n3:n3" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e18", "source": "n3:n2", "target": "n3:n0" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e19", "source": "n6", "target": "n4" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e20", "source": "n4", "target": "n3" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e23", "source": "n0", "target": "n7" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e24", "source": "n0:n3", "target": "n0:n5" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e28", "source": "n0:n0", "target": "n0:n2" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e30", "source": "n0:n0", "target": "n0:n3" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e33", "source": "n7", "target": "n3" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e34", "source": "n3:n1", "target": "n3:n7" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e36", "source": "n0:n3", "target": "n0:n1" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e39", "source": "n3:n0", "target": "n3:n4" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e41", "source": "n2:n0", "target": "n2:n4" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e43", "source": "n3:n0", "target": "n3:n5" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e45", "source": "n7", "target": "n4" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e46", "source": "n2:n7", "target": "n2:n0" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e47", "source": "n2:n1", "target": "n3:n6" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e49", "source": "n3:n6", "target": "n3:n5" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1", "source": "n3:n7", "target": "n1:n4" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e2", "source": "n0:n0", "target": "n1:n4" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e10", "source": "n1:n5", "target": "n1:n4" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }] ================================================ FILE: documentation/demos/cose-bilkent-layout-compound/index.html ================================================ cytoscape-cose-bilkent.js demo (compound)

cytoscape-cose-bilkent demo (compound)

================================================ FILE: documentation/demos/cose-bilkent-layout-compound/style.css ================================================ body { font-family: helvetica; font-size: 14px; } #cy { width: 100%; height: 100%; position: absolute; left: 0; top: 0; z-index: 999; } h1 { opacity: 0.5; font-size: 1em; } ================================================ FILE: documentation/demos/cose-layout/code.js ================================================ Promise.all([ fetch('cy-style.json', {mode: 'no-cors'}) .then(function(res) { return res.json() }), fetch('data.json', {mode: 'no-cors'}) .then(function(res) { return res.json() }) ]) .then(function(dataArray) { var cy = window.cy = cytoscape({ container: document.getElementById('cy'), layout: { name: 'cose', idealEdgeLength: 100, nodeOverlap: 20, refresh: 20, fit: true, padding: 30, randomize: false, componentSpacing: 100, nodeRepulsion: 400000, edgeElasticity: 100, nestingFactor: 5, gravity: 80, numIter: 1000, initialTemp: 200, coolingFactor: 0.95, minTemp: 1.0 }, style: dataArray[0], elements: dataArray[1] }); }); ================================================ FILE: documentation/demos/cose-layout/cy-style.json ================================================ [{ "selector": "core", "style": { "selection-box-color": "#AAD8FF", "selection-box-border-color": "#8BB0D0", "selection-box-opacity": "0.5" } }, { "selector": "node", "style": { "width": "mapData(score, 0, 0.006769776522008331, 20, 60)", "height": "mapData(score, 0, 0.006769776522008331, 20, 60)", "content": "data(name)", "font-size": "12px", "text-valign": "center", "text-halign": "center", "background-color": "#555", "text-outline-color": "#555", "text-outline-width": "2px", "color": "#fff", "overlay-padding": "6px", "z-index": "10" } }, { "selector": "node[?attr]", "style": { "shape": "rectangle", "background-color": "#aaa", "text-outline-color": "#aaa", "width": "16px", "height": "16px", "font-size": "6px", "z-index": "1" } }, { "selector": "node[?query]", "style": { "background-clip": "none", "background-fit": "contain" } }, { "selector": "node:selected", "style": { "border-width": "6px", "border-color": "#AAD8FF", "border-opacity": "0.5", "background-color": "#77828C", "text-outline-color": "#77828C" } }, { "selector": "edge", "style": { "curve-style": "haystack", "haystack-radius": "0.5", "opacity": "0.4", "line-color": "#bbb", "width": "mapData(weight, 0, 1, 1, 8)", "overlay-padding": "3px" } }, { "selector": "node.unhighlighted", "style": { "opacity": "0.2" } }, { "selector": "edge.unhighlighted", "style": { "opacity": "0.05" } }, { "selector": ".highlighted", "style": { "z-index": "999999" } }, { "selector": "node.highlighted", "style": { "border-width": "6px", "border-color": "#AAD8FF", "border-opacity": "0.5", "background-color": "#394855", "text-outline-color": "#394855" } }, { "selector": "edge.filtered", "style": { "opacity": "0" } }, { "selector": "edge[group=\"coexp\"]", "style": { "line-color": "#d0b7d5" } }, { "selector": "edge[group=\"coloc\"]", "style": { "line-color": "#a0b3dc" } }, { "selector": "edge[group=\"gi\"]", "style": { "line-color": "#90e190" } }, { "selector": "edge[group=\"path\"]", "style": { "line-color": "#9bd8de" } }, { "selector": "edge[group=\"pi\"]", "style": { "line-color": "#eaa2a2" } }, { "selector": "edge[group=\"predict\"]", "style": { "line-color": "#f6c384" } }, { "selector": "edge[group=\"spd\"]", "style": { "line-color": "#dad4a2" } }, { "selector": "edge[group=\"spd_attr\"]", "style": { "line-color": "#D0D0D0" } }, { "selector": "edge[group=\"reg\"]", "style": { "line-color": "#D0D0D0" } }, { "selector": "edge[group=\"reg_attr\"]", "style": { "line-color": "#D0D0D0" } }, { "selector": "edge[group=\"user\"]", "style": { "line-color": "#f0ec86" } }] ================================================ FILE: documentation/demos/cose-layout/data.json ================================================ [{ "data": { "id": "605755", "idInt": 605755, "name": "PCNA", "score": 0.006769776522008331, "query": true, "gene": true }, "position": { "x": 481.0169597039117, "y": 384.8210888234145 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn6944 fn9471 fn10569 fn8023 fn6956 fn6935 fn8147 fn6939 fn6936 fn6629 fn7928 fn6947 fn8612 fn6957 fn8786 fn6246 fn9367 fn6945 fn6946 fn10024 fn10022 fn6811 fn9361 fn6279 fn6278 fn8569 fn7641 fn8568 fn6943" }, { "data": { "id": "611408", "idInt": 611408, "name": "FEN1", "score": 0.006769776522008331, "query": false, "gene": true }, "position": { "x": 531.9740635094307, "y": 464.8210898234145 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn6944 fn9471 fn6284 fn6956 fn6935 fn8147 fn6939 fn6936 fn6949 fn6629 fn7952 fn6680 fn6957 fn8786 fn6676 fn10713 fn7495 fn7500 fn9361 fn6279 fn6278 fn8569 fn7641 fn8568" }, { "data": { "id": "612341", "idInt": 612341, "name": "RAD9A", "score": 0.0028974131563619387, "query": false, "gene": true }, "position": { "x": 455.8128125018193, "y": 555.4591537139819 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn6935 fn6219 fn6680 fn6676 fn10713 fn7552 fn7495" }, { "data": { "id": "608473", "idInt": 608473, "name": "RAD9B", "score": 0.0026928704785200708, "query": false, "gene": true }, "position": { "x": 363.1144068403203, "y": 515.7352912086707 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn6935" }, { "data": { "id": "611560", "idInt": 611560, "name": "APEX2", "score": 0.0026215687185565106, "query": false, "gene": true }, "position": { "x": 689.1927803956215, "y": 634.0100611862405 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "600585", "idInt": 600585, "name": "POLD3", "score": 0.0024938385347587078, "query": false, "gene": true }, "position": { "x": 118.3562364528364, "y": 384.3877516879044 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn6944 fn9471 fn10569 fn8823 fn9180 fn6956 fn6935 fn8147 fn6939 fn6936 fn6648 fn6947 fn6957 fn8786 fn6246 fn9367 fn9368 fn6945 fn6946 fn7921 fn6811 fn8380 fn6279 fn6278 fn8569 fn7641 fn8568 fn6943" }, { "data": { "id": "599889", "idInt": 599889, "name": "RAD51", "score": 0.002453016748286352, "query": false, "gene": true }, "position": { "x": 759.7017646483837, "y": 338.3207127700095 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn6931 fn9632 fn7950 fn9188 fn6956 fn6935 fn7338 fn6936 fn6949 fn6629 fn6957 fn6246 fn7453 fn7451 fn10024 fn7456 fn7454 fn7469 fn7467 fn10022 fn7552 fn7495 fn7463 fn7464 fn9361" }, { "data": { "id": "602299", "idInt": 602299, "name": "LIG1", "score": 0.0023873089881679688, "query": false, "gene": true }, "position": { "x": 264.10227893804523, "y": 631.7198779917306 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn6944 fn9471 fn6956 fn6935 fn8147 fn6939 fn6936 fn6949 fn6957 fn8786 fn6945 fn6946 fn6279 fn6278 fn8569 fn7641 fn8568 fn6943" }, { "data": { "id": "603070", "idInt": 603070, "name": "RFC5", "score": 0.0022841757103715943, "query": false, "gene": true }, "position": { "x": 282.21587939790476, "y": 109.57476207336902 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn9471 fn6956 fn6935 fn8147 fn6939 fn6936 fn6957 fn8786 fn6945 fn6946 fn6811 fn6279 fn6278 fn8569 fn7641 fn8568 fn6943" }, { "data": { "id": "610236", "idInt": 610236, "name": "RFC4", "score": 0.002235382441847178, "query": false, "gene": true }, "position": { "x": 205.41323994659498, "y": 122.2715768040765 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn9471 fn6956 fn6935 fn8147 fn6939 fn6936 fn6957 fn8786 fn6945 fn6946 fn6811 fn6279 fn6278 fn8569 fn7641 fn8568 fn6943" }, { "data": { "id": "605365", "idInt": 605365, "name": "GADD45G", "score": 0.0021779529408011977, "query": false, "gene": true }, "position": { "x": 335.2681018951896, "y": 398.62289259289554 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "599863", "idInt": 599863, "name": "RFC2", "score": 0.001982524582665901, "query": false, "gene": true }, "position": { "x": 422.6986944382589, "y": 59.422072599905285 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn9471 fn6956 fn6935 fn8147 fn6939 fn6936 fn6957 fn8786 fn6945 fn6946 fn6811 fn6279 fn6278 fn8569 fn7641 fn8568 fn6943" }, { "data": { "id": "603700", "idInt": 603700, "name": "MSH6", "score": 0.001946986634883574, "query": false, "gene": true }, "position": { "x": 524.5786092800173, "y": 313.6721385565813 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn6931 fn9632 fn7950 fn9188 fn6956 fn7338 fn6629 fn6947 fn8612 fn6246 fn7453 fn7451 fn7456 fn7454 fn7469 fn7467 fn10022 fn7495 fn7500 fn7463 fn7464 fn9361" }, { "data": { "id": "605846", "idInt": 605846, "name": "RFC3", "score": 0.0018726190118726893, "query": false, "gene": true }, "position": { "x": 192.72587571240607, "y": 30.601237157877808 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn6931 fn9632 fn7950 fn9188 fn9471 fn10569 fn6956 fn6935 fn8147 fn6939 fn7338 fn6936 fn6957 fn8786 fn7453 fn7451 fn6945 fn6946 fn7456 fn7454 fn7469 fn7467 fn6811 fn7463 fn7464 fn6279 fn6278 fn8569 fn7641 fn8568 fn6943" }, { "data": { "id": "600535", "idInt": 600535, "name": "UNG", "score": 0.0018134484466597045, "query": false, "gene": true }, "position": { "x": 497.37919617137817, "y": 693.0523864227225 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn8023 fn7928" }, { "data": { "id": "599724", "idInt": 599724, "name": "RFC1", "score": 0.001740600741472309, "query": false, "gene": true }, "position": { "x": 381.8836285591501, "y": 194.7788667091606 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn9471 fn6956 fn6935 fn8147 fn6939 fn6936 fn6957 fn8786 fn6945 fn6946 fn6811 fn6279 fn6278 fn8569 fn7641 fn8568 fn6943" }, { "data": { "id": "602279", "idInt": 602279, "name": "BABAM1", "score": 0.0015192107762236895, "query": false, "gene": true }, "position": { "x": 633.9447667877506, "y": 217.35373723375224 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn6949 fn10024 fn10022 fn7552 fn7495" }, { "data": { "id": "600046", "idInt": 600046, "name": "POLD1", "score": 0.0014783091464922182, "query": false, "gene": true }, "position": { "x": 91.6808784584024, "y": 252.85442763278502 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn6944 fn9471 fn10569 fn8823 fn9180 fn6956 fn6935 fn8147 fn6939 fn6936 fn6648 fn6680 fn6957 fn8786 fn6246 fn9367 fn9368 fn6676 fn10713 fn6945 fn6946 fn7921 fn6811 fn8380 fn7495 fn7500 fn6279 fn6278 fn8569 fn7641 fn8568 fn6943" }, { "data": { "id": "609734", "idInt": 609734, "name": "POLR3K", "score": 0.001465090467084318, "query": false, "gene": true }, "position": { "x": 905.3802465599952, "y": 493.3679393218726 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn7921" }, { "data": { "id": "612326", "idInt": 612326, "name": "PPP1CA", "score": 0.001444414413500572, "query": false, "gene": true }, "position": { "x": 621.2170159338846, "y": 407.11437177468383 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "606768", "idInt": 606768, "name": "DNA2", "score": 0.0014194334373996975, "query": false, "gene": true }, "position": { "x": 912.8425638686975, "y": 11.53856391494864 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn6931 fn9632 fn7950 fn9188 fn6944 fn9471 fn6284 fn9180 fn6956 fn6935 fn6219 fn8147 fn6939 fn7338 fn6936 fn6949 fn7952 fn6957 fn8786 fn6676 fn10713 fn7453 fn7451 fn10024 fn7456 fn7454 fn7469 fn7467 fn10022 fn7463 fn7464 fn6279 fn6278 fn8569 fn7641 fn8568" }, { "data": { "source": "611408", "target": "605755", "weight": 0.0055478187, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 2, "id": "e0" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "600585", "weight": 0.012590342, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 3, "id": "e1" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.0089772185, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 4, "id": "e2" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.0055292076, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 5, "id": "e3" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.005184464, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 6, "id": "e4" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "612341", "weight": 0.008174375, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 7, "id": "e5" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.0073378147, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 8, "id": "e6" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.010978148, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 9, "id": "e7" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "611408", "weight": 0.009477927, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 10, "id": "e8" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.009086159, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 11, "id": "e9" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "600585", "weight": 0.008661902, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 12, "id": "e10" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "602299", "weight": 0.0050190594, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 13, "id": "e11" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "603700", "weight": 0.00814378, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 14, "id": "e12" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "600585", "weight": 0.0065156803, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 15, "id": "e13" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "603700", "weight": 0.0066020666, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 16, "id": "e14" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "600535", "weight": 0.0030451824, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 17, "id": "e15" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "611408", "weight": 0.0069189603, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 18, "id": "e16" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "605755", "weight": 0.007888168, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 19, "id": "e17" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "611408", "weight": 0.0066891047, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 20, "id": "e18" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "610236", "weight": 0.006453997, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 21, "id": "e19" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "605846", "weight": 0.013474658, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 22, "id": "e20" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "611408", "weight": 0.010655156, "group": "coexp", "networkId": 1228, "networkGroupId": 18, "intn": true, "rIntnId": 23, "id": "e21" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.02157121, "group": "coexp", "networkId": 1228, "networkGroupId": 18, "intn": true, "rIntnId": 24, "id": "e22" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605846", "weight": 0.01614795, "group": "coexp", "networkId": 1228, "networkGroupId": 18, "intn": true, "rIntnId": 25, "id": "e23" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.011872302, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 26, "id": "e24" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "611408", "weight": 0.013897292, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 27, "id": "e25" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.014308085, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 28, "id": "e26" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.01631634, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 29, "id": "e27" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.014722961, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 30, "id": "e28" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.01798934, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 31, "id": "e29" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "611408", "weight": 0.014232373, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 32, "id": "e30" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.01543053, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 33, "id": "e31" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.015419611, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 34, "id": "e32" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "599863", "weight": 0.018117689, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 35, "id": "e33" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "612341", "weight": 0.0197734, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 36, "id": "e34" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.007181677, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 37, "id": "e35" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.012193555, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 38, "id": "e36" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "611408", "weight": 0.009036004, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 39, "id": "e37" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.008944319, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 40, "id": "e38" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "600585", "weight": 0.0140501885, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 41, "id": "e39" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.014778332, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 42, "id": "e40" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "599889", "weight": 0.023106916, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 43, "id": "e41" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "602299", "weight": 0.013864683, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 44, "id": "e42" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.009235155, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 45, "id": "e43" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.0070685484, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 46, "id": "e44" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "600585", "weight": 0.011782279, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 47, "id": "e45" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "602299", "weight": 0.009479035, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 48, "id": "e46" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.013767981, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 49, "id": "e47" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.02076845, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 50, "id": "e48" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.014548145, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 51, "id": "e49" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "602299", "weight": 0.018761018, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 52, "id": "e50" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.009776375, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 53, "id": "e51" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "611408", "weight": 0.006622242, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 54, "id": "e52" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "602299", "weight": 0.01073685, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 55, "id": "e53" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.013705722, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 56, "id": "e54" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.007519171, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 57, "id": "e55" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "611408", "weight": 0.00589999, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 58, "id": "e56" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "600585", "weight": 0.011810116, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 59, "id": "e57" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "602299", "weight": 0.008160093, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 60, "id": "e58" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "610236", "weight": 0.007695786, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 61, "id": "e59" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "603700", "weight": 0.01120258, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 62, "id": "e60" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "611560", "weight": 0.012538481, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 63, "id": "e61" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.006985158, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 64, "id": "e62" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.0065989364, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 65, "id": "e63" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.0046327286, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 66, "id": "e64" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.0054441774, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 67, "id": "e65" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "600585", "weight": 0.010655146, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 68, "id": "e66" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "599889", "weight": 0.0053057605, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 69, "id": "e67" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.005323636, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 70, "id": "e68" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.008839407, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 71, "id": "e69" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "611408", "weight": 0.010832426, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 72, "id": "e70" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "599889", "weight": 0.010297667, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 73, "id": "e71" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.0069649774, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 74, "id": "e72" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "599889", "weight": 0.0030997663, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 75, "id": "e73" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "610236", "weight": 0.0021416117, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 76, "id": "e74" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.011675352, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 77, "id": "e75" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "602299", "weight": 0.007548246, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 78, "id": "e76" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "605755", "weight": 0.011033994, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 79, "id": "e77" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "602279", "weight": 0.0054105376, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 80, "id": "e78" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "605846", "weight": 0.015214647, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 81, "id": "e79" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "600535", "weight": 0.007762454, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 82, "id": "e80" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.0071786125, "group": "coexp", "networkId": 1147, "networkGroupId": 18, "intn": true, "rIntnId": 83, "id": "e81" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.00930929, "group": "coexp", "networkId": 1147, "networkGroupId": 18, "intn": true, "rIntnId": 84, "id": "e82" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.0065878476, "group": "coexp", "networkId": 1147, "networkGroupId": 18, "intn": true, "rIntnId": 85, "id": "e83" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "610236", "weight": 0.008354699, "group": "coexp", "networkId": 1147, "networkGroupId": 18, "intn": true, "rIntnId": 86, "id": "e84" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "602279", "weight": 0.0027737948, "group": "coexp", "networkId": 1147, "networkGroupId": 18, "intn": true, "rIntnId": 87, "id": "e85" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "605755", "weight": 0.00786129, "group": "coexp", "networkId": 1219, "networkGroupId": 18, "intn": true, "rIntnId": 88, "id": "e86" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "602299", "weight": 0.0057260455, "group": "coexp", "networkId": 1219, "networkGroupId": 18, "intn": true, "rIntnId": 89, "id": "e87" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "610236", "weight": 0.008558536, "group": "coexp", "networkId": 1219, "networkGroupId": 18, "intn": true, "rIntnId": 90, "id": "e88" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.0083115185, "group": "coexp", "networkId": 1219, "networkGroupId": 18, "intn": true, "rIntnId": 91, "id": "e89" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.005608535, "group": "coexp", "networkId": 1219, "networkGroupId": 18, "intn": true, "rIntnId": 92, "id": "e90" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603700", "weight": 0.009317383, "group": "coexp", "networkId": 1219, "networkGroupId": 18, "intn": true, "rIntnId": 93, "id": "e91" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "610236", "weight": 0.0067964033, "group": "coexp", "networkId": 1219, "networkGroupId": 18, "intn": true, "rIntnId": 94, "id": "e92" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "605846", "weight": 0.008256701, "group": "coexp", "networkId": 1219, "networkGroupId": 18, "intn": true, "rIntnId": 95, "id": "e93" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "611408", "weight": 0.0050337426, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 96, "id": "e94" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.013028561, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 97, "id": "e95" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "599889", "weight": 0.0139607005, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 98, "id": "e96" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "611408", "weight": 0.00802425, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 99, "id": "e97" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.006611009, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 100, "id": "e98" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "611408", "weight": 0.004236914, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 101, "id": "e99" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.011486805, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 102, "id": "e100" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "611408", "weight": 0.0073252246, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 103, "id": "e101" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "611408", "weight": 0.0031254988, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 104, "id": "e102" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "612341", "weight": 0.0068017747, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 105, "id": "e103" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605846", "weight": 0.0078691505, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 106, "id": "e104" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "612341", "weight": 0.0029230819, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 107, "id": "e105" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "611408", "weight": 0.018245377, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 108, "id": "e106" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "600585", "weight": 0.013878305, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 109, "id": "e107" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "599889", "weight": 0.014034339, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 110, "id": "e108" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.011003433, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 111, "id": "e109" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "600585", "weight": 0.011568223, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 112, "id": "e110" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.008862467, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 113, "id": "e111" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "611408", "weight": 0.02715506, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 114, "id": "e112" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "599889", "weight": 0.02020582, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 115, "id": "e113" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.01389255, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 116, "id": "e114" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.011845588, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 117, "id": "e115" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.008885449, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 118, "id": "e116" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603700", "weight": 0.016939284, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 119, "id": "e117" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "599863", "weight": 0.0065266574, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 120, "id": "e118" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "603700", "weight": 0.009681167, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 121, "id": "e119" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.010009936, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 122, "id": "e120" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602279", "target": "611560", "weight": 0.0072178333, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 123, "id": "e121" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "612341", "weight": 0.0019152164, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 124, "id": "e122" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "602299", "weight": 0.0019770851, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 125, "id": "e123" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "611408", "weight": 0.0074162656, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 126, "id": "e124" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "602279", "weight": 0.008383535, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 127, "id": "e125" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "600585", "weight": 0.012502968, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 128, "id": "e126" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.006425211, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 129, "id": "e127" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.009075253, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 130, "id": "e128" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "611408", "weight": 0.013036429, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 131, "id": "e129" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.005474452, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 132, "id": "e130" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "611408", "weight": 0.0068840934, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 133, "id": "e131" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.0038199152, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 134, "id": "e132" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.0048849517, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 135, "id": "e133" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "599889", "weight": 0.008408555, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 136, "id": "e134" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.003905569, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 137, "id": "e135" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.005101607, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 138, "id": "e136" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "611408", "weight": 0.00612881, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 139, "id": "e137" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.0054722885, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 140, "id": "e138" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.0037771827, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 141, "id": "e139" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "611408", "weight": 0.006252843, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 142, "id": "e140" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "600585", "weight": 0.008764523, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 143, "id": "e141" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "602299", "weight": 0.0077429856, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 144, "id": "e142" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603700", "weight": 0.010403784, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 145, "id": "e143" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "612341", "weight": 0.0098648025, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 146, "id": "e144" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "602299", "weight": 0.012923219, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 147, "id": "e145" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "603700", "weight": 0.014601159, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 148, "id": "e146" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605846", "weight": 0.0061014947, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 149, "id": "e147" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "605755", "weight": 0.0063784183, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 150, "id": "e148" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "611408", "weight": 0.007974974, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 151, "id": "e149" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "600585", "weight": 0.011962807, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 152, "id": "e150" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "610236", "weight": 0.0045933793, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 153, "id": "e151" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.011469932, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 154, "id": "e152" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.0065593245, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 155, "id": "e153" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "602299", "weight": 0.008945865, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 156, "id": "e154" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.0123492405, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 157, "id": "e155" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "611560", "weight": 0.011177457, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 158, "id": "e156" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.009827839, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 159, "id": "e157" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "599889", "weight": 0.014151318, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 160, "id": "e158" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "602299", "weight": 0.010976079, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 161, "id": "e159" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "611560", "weight": 0.0070169745, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 162, "id": "e160" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "599863", "weight": 0.013198467, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 163, "id": "e161" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "599889", "weight": 0.006426068, "group": "coexp", "networkId": 1058, "networkGroupId": 18, "intn": true, "rIntnId": 164, "id": "e162" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.010584534, "group": "coexp", "networkId": 1058, "networkGroupId": 18, "intn": true, "rIntnId": 165, "id": "e163" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.01746872, "group": "coexp", "networkId": 1058, "networkGroupId": 18, "intn": true, "rIntnId": 166, "id": "e164" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "599889", "weight": 0.0071076, "group": "coexp", "networkId": 1058, "networkGroupId": 18, "intn": true, "rIntnId": 167, "id": "e165" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "610236", "weight": 0.015010853, "group": "coexp", "networkId": 1058, "networkGroupId": 18, "intn": true, "rIntnId": 168, "id": "e166" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "600535", "weight": 0.0084955385, "group": "coexp", "networkId": 1058, "networkGroupId": 18, "intn": true, "rIntnId": 169, "id": "e167" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.005950518, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 170, "id": "e168" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "599889", "weight": 0.010287272, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 171, "id": "e169" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.0073932544, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 172, "id": "e170" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.0036719772, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 173, "id": "e171" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.003859972, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 174, "id": "e172" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "599889", "weight": 0.0070424364, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 175, "id": "e173" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "602299", "weight": 0.0033553005, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 176, "id": "e174" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.00446657, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 177, "id": "e175" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.006380608, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 178, "id": "e176" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.010436626, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 179, "id": "e177" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "603070", "weight": 0.010232103, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 180, "id": "e178" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "602299", "weight": 0.010975428, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 181, "id": "e179" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.007576592, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 182, "id": "e180" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.010113988, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 183, "id": "e181" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "611408", "weight": 0.009832912, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 184, "id": "e182" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "602299", "weight": 0.008797756, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 185, "id": "e183" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "610236", "weight": 0.0058537833, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 186, "id": "e184" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "603700", "weight": 0.01664277, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 187, "id": "e185" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602279", "target": "599863", "weight": 0.0048371204, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 188, "id": "e186" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "602299", "weight": 0.009031323, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 189, "id": "e187" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "610236", "weight": 0.0057287826, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 190, "id": "e188" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.0046684104, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 191, "id": "e189" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "611408", "weight": 0.010843052, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 192, "id": "e190" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.007012607, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 193, "id": "e191" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "612341", "weight": 0.021436332, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 194, "id": "e192" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.008355799, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 195, "id": "e193" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "611408", "weight": 0.008533838, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 196, "id": "e194" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.005761585, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 197, "id": "e195" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.005706919, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 198, "id": "e196" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.009086173, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 199, "id": "e197" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.010499329, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 200, "id": "e198" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "611408", "weight": 0.011064748, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 201, "id": "e199" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.017625364, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 202, "id": "e200" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.010782314, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 203, "id": "e201" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.009000187, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 204, "id": "e202" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "611408", "weight": 0.009551385, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 205, "id": "e203" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "610236", "weight": 0.011809003, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 206, "id": "e204" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.010237067, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 207, "id": "e205" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "611408", "weight": 0.011980566, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 208, "id": "e206" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.019081693, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 209, "id": "e207" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.013073517, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 210, "id": "e208" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "599889", "weight": 0.0078543145, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 211, "id": "e209" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "610236", "weight": 0.009314968, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 212, "id": "e210" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "605755", "weight": 0.0062426035, "group": "coexp", "networkId": 1211, "networkGroupId": 18, "intn": true, "rIntnId": 213, "id": "e211" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.006246549, "group": "coexp", "networkId": 1211, "networkGroupId": 18, "intn": true, "rIntnId": 214, "id": "e212" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "602299", "weight": 0.013894426, "group": "coexp", "networkId": 1211, "networkGroupId": 18, "intn": true, "rIntnId": 215, "id": "e213" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "610236", "weight": 0.017061198, "group": "coexp", "networkId": 1211, "networkGroupId": 18, "intn": true, "rIntnId": 216, "id": "e214" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.0032552993, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 217, "id": "e215" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.0023748495, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 218, "id": "e216" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.003535996, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 219, "id": "e217" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "611408", "weight": 0.0075512826, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 220, "id": "e218" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.005550344, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 221, "id": "e219" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.0035219863, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 222, "id": "e220" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "610236", "weight": 0.0037936512, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 223, "id": "e221" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "602299", "weight": 0.021771252, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 224, "id": "e222" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "611408", "weight": 0.008810265, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 225, "id": "e223" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "610236", "weight": 0.006708223, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 226, "id": "e224" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605846", "weight": 0.015404511, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 227, "id": "e225" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.015407894, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 228, "id": "e226" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.019584121, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 229, "id": "e227" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "611408", "weight": 0.01921773, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 230, "id": "e228" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.020896556, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 231, "id": "e229" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "611408", "weight": 0.020604162, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 232, "id": "e230" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.020293837, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 233, "id": "e231" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "611408", "weight": 0.018530738, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 234, "id": "e232" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "602299", "weight": 0.025947532, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 235, "id": "e233" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "603070", "weight": 0.012148044, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 236, "id": "e234" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "599863", "weight": 0.012389051, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 237, "id": "e235" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "599889", "weight": 0.013262892, "group": "coexp", "networkId": 1040, "networkGroupId": 18, "intn": true, "rIntnId": 238, "id": "e236" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.0032305722, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 239, "id": "e237" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.008934008, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 240, "id": "e238" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "611408", "weight": 0.0047838143, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 241, "id": "e239" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "605755", "weight": 0.009817743, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 242, "id": "e240" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.0035941477, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 243, "id": "e241" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.0022027155, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 244, "id": "e242" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "600585", "weight": 0.006635881, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 245, "id": "e243" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.007493106, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 246, "id": "e244" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "611408", "weight": 0.0045459457, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 247, "id": "e245" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "610236", "weight": 0.004649519, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 248, "id": "e246" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.0040052356, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 249, "id": "e247" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.0067177215, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 250, "id": "e248" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "611408", "weight": 0.0035133353, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 251, "id": "e249" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "600585", "weight": 0.013092303, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 252, "id": "e250" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "610236", "weight": 0.00450646, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 253, "id": "e251" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "605755", "weight": 0.0056021707, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 254, "id": "e252" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "605755", "weight": 0.01022965, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 255, "id": "e253" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.0019825348, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 256, "id": "e254" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.0025504285, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 257, "id": "e255" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611560", "weight": 0.004504783, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 258, "id": "e256" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "599889", "weight": 0.005680255, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 259, "id": "e257" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.0038152228, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 260, "id": "e258" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.010831964, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 261, "id": "e259" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.0024976064, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 262, "id": "e260" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "611408", "weight": 0.0033427116, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 263, "id": "e261" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.0012776565, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 264, "id": "e262" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603700", "weight": 0.0069493027, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 265, "id": "e263" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.008979472, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 266, "id": "e264" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "610236", "weight": 0.0049493727, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 267, "id": "e265" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.0066200355, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 268, "id": "e266" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.0033406042, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 269, "id": "e267" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.00455017, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 270, "id": "e268" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.00904533, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 271, "id": "e269" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "610236", "weight": 0.0046978444, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 272, "id": "e270" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "605755", "weight": 0.0020831665, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 273, "id": "e271" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "603700", "weight": 0.0070924386, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 274, "id": "e272" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "605846", "weight": 0.0013620426, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 275, "id": "e273" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "599724", "weight": 0.0042498824, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 276, "id": "e274" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "610236", "weight": 0.0031287828, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 277, "id": "e275" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.055505108, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 278, "id": "e276" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.036435686, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 279, "id": "e277" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "611408", "weight": 0.07736873, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 280, "id": "e278" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "605755", "weight": 0.07026827, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 281, "id": "e279" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "611408", "weight": 0.15814601, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 282, "id": "e280" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "600585", "weight": 0.10381311, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 283, "id": "e281" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.034838397, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 284, "id": "e282" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "612341", "weight": 0.06087656, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 285, "id": "e283" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "608473", "weight": 0.087010026, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 286, "id": "e284" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "600585", "weight": 0.048561342, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 287, "id": "e285" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.034838397, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 288, "id": "e286" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "612341", "weight": 0.06087656, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 289, "id": "e287" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "608473", "weight": 0.087010026, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 290, "id": "e288" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "600585", "weight": 0.048561342, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 291, "id": "e289" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.046432484, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 292, "id": "e290" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605365", "target": "605755", "weight": 0.06039332, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 293, "id": "e291" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.034838397, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 294, "id": "e292" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "612341", "weight": 0.06087656, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 295, "id": "e293" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "608473", "weight": 0.087010026, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 296, "id": "e294" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "600585", "weight": 0.048561342, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 297, "id": "e295" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.046432484, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 298, "id": "e296" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.046432484, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 299, "id": "e297" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.034838397, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 300, "id": "e298" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "612341", "weight": 0.06087656, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 301, "id": "e299" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "608473", "weight": 0.087010026, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 302, "id": "e300" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "600585", "weight": 0.048561342, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 303, "id": "e301" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.046432484, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 304, "id": "e302" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.046432484, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 305, "id": "e303" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "599863", "weight": 0.046432484, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 306, "id": "e304" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.04283297, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 307, "id": "e305" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "600585", "weight": 0.059705, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 308, "id": "e306" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.057087615, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 309, "id": "e307" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.057087615, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 310, "id": "e308" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.057087615, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 311, "id": "e309" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.057087615, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 312, "id": "e310" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.0346906, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 313, "id": "e311" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "611408", "weight": 0.07366316, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 314, "id": "e312" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "600585", "weight": 0.048355326, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 315, "id": "e313" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "602299", "weight": 0.09884098, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 316, "id": "e314" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "603070", "weight": 0.0462355, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 317, "id": "e315" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "610236", "weight": 0.0462355, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 318, "id": "e316" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "599863", "weight": 0.0462355, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 319, "id": "e317" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605846", "weight": 0.0462355, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 320, "id": "e318" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "599724", "weight": 0.05684543, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 321, "id": "e319" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "605755", "weight": 0.06142156, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 322, "id": "e320" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "600585", "weight": 0.08561569, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 323, "id": "e321" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "600046", "weight": 0.08151513, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 324, "id": "e322" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.08421734, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 325, "id": "e323" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.033336625, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 326, "id": "e324" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "611408", "weight": 0.10495135, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 327, "id": "e325" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "600585", "weight": 0.10282618, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 328, "id": "e326" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.06335889, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 329, "id": "e327" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "600585", "weight": 0.078957625, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 330, "id": "e328" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.06335889, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 331, "id": "e329" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "600585", "weight": 0.078957625, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 332, "id": "e330" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.06335889, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 333, "id": "e331" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "600585", "weight": 0.078957625, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 334, "id": "e332" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.06335889, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 335, "id": "e333" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "600585", "weight": 0.078957625, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 336, "id": "e334" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.043610524, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 337, "id": "e335" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "600585", "weight": 0.054347284, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 338, "id": "e336" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.1032913, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 339, "id": "e337" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.1032913, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 340, "id": "e338" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.1032913, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 341, "id": "e339" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.1032913, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 342, "id": "e340" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.04544427, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 343, "id": "e341" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "600585", "weight": 0.056632493, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 344, "id": "e342" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "602299", "weight": 0.14017196, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 345, "id": "e343" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "605755", "weight": 0.0608564, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 346, "id": "e344" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "600585", "weight": 0.07583903, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 347, "id": "e345" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "600046", "weight": 0.103383265, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 348, "id": "e346" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "605755", "weight": 0.3670512, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 349, "id": "e347" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "612341", "weight": 0.024917956, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 350, "id": "e348" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "612341", "weight": 0.025497014, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 351, "id": "e349" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.029834377, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 352, "id": "e350" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "612341", "weight": 0.024917956, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 353, "id": "e351" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.029156813, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 354, "id": "e352" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.029834377, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 355, "id": "e353" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "612341", "weight": 0.024917956, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 356, "id": "e354" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.029156813, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 357, "id": "e355" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.029834377, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 358, "id": "e356" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "599863", "weight": 0.029156813, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 359, "id": "e357" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.32122406, "group": "pi", "networkId": 903, "networkGroupId": 22, "intn": true, "rIntnId": 360, "id": "e358" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612341", "target": "605755", "weight": 0.106598906, "group": "pi", "networkId": 903, "networkGroupId": 22, "intn": true, "rIntnId": 361, "id": "e359" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.32122406, "group": "pi", "networkId": 903, "networkGroupId": 22, "intn": true, "rIntnId": 362, "id": "e360" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.16342038, "group": "pi", "networkId": 903, "networkGroupId": 22, "intn": true, "rIntnId": 363, "id": "e361" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605365", "target": "605755", "weight": 0.11347918, "group": "pi", "networkId": 903, "networkGroupId": 22, "intn": true, "rIntnId": 364, "id": "e362" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.10376385, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 365, "id": "e363" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.16238527, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 366, "id": "e364" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.16630344, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 367, "id": "e365" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.15056042, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 368, "id": "e366" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.17790036, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 369, "id": "e367" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.15458822, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 370, "id": "e368" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.13995422, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 371, "id": "e369" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "599863", "weight": 0.14333117, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 372, "id": "e370" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.10097788, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 373, "id": "e371" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.15802538, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 374, "id": "e372" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.143066, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 375, "id": "e373" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.14651802, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 376, "id": "e374" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.13619658, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 377, "id": "e375" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602279", "target": "605755", "weight": 0.4812469, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 378, "id": "e376" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.011314526, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 379, "id": "e377" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612341", "target": "605755", "weight": 0.008967896, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 380, "id": "e378" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612341", "target": "611408", "weight": 0.0539502, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 381, "id": "e379" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611560", "target": "605755", "weight": 0.1572818, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 382, "id": "e380" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.013491094, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 383, "id": "e381" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.063570626, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 384, "id": "e382" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.019299628, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 385, "id": "e383" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.0113324495, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 386, "id": "e384" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.11628905, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 387, "id": "e385" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605365", "target": "605755", "weight": 0.01062005, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 388, "id": "e386" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.010721097, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 389, "id": "e387" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.11001559, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 390, "id": "e388" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.0645995, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 391, "id": "e389" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.007422314, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 392, "id": "e390" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "612341", "weight": 0.03539126, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 393, "id": "e391" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "599889", "weight": 0.018539928, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 394, "id": "e392" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.020811629, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 395, "id": "e393" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.12539954, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 396, "id": "e394" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.008685797, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 397, "id": "e395" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.08913017, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 398, "id": "e396" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.052335896, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 399, "id": "e397" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.049512524, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 400, "id": "e398" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603700", "weight": 0.034277976, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 401, "id": "e399" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.096112944, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 402, "id": "e400" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.009051671, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 403, "id": "e401" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "600585", "weight": 0.0649295, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 404, "id": "e402" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.15316014, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 405, "id": "e403" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611560", "target": "605755", "weight": 0.22489744, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 406, "id": "e404" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.22489744, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 407, "id": "e405" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.22489744, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 408, "id": "e406" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.17140284, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 409, "id": "e407" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605365", "target": "605755", "weight": 0.015279513, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 410, "id": "e408" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.17140284, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 411, "id": "e409" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.06023315, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 412, "id": "e410" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.17140284, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 413, "id": "e411" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.07430747, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 414, "id": "e412" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.22489744, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 415, "id": "e413" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.054434802, "group": "pi", "networkId": 906, "networkGroupId": 22, "intn": true, "rIntnId": 416, "id": "e414" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.14387716, "group": "pi", "networkId": 906, "networkGroupId": 22, "intn": true, "rIntnId": 417, "id": "e415" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.2326112, "group": "pi", "networkId": 906, "networkGroupId": 22, "intn": true, "rIntnId": 418, "id": "e416" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.2580584, "group": "pi", "networkId": 906, "networkGroupId": 22, "intn": true, "rIntnId": 419, "id": "e417" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.32172158, "group": "pi", "networkId": 906, "networkGroupId": 22, "intn": true, "rIntnId": 420, "id": "e418" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.40359056, "group": "pi", "networkId": 906, "networkGroupId": 22, "intn": true, "rIntnId": 421, "id": "e419" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.036951467, "group": "pi", "networkId": 906, "networkGroupId": 22, "intn": true, "rIntnId": 422, "id": "e420" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.01199196, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 423, "id": "e421" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612341", "target": "605755", "weight": 0.016832655, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 424, "id": "e422" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611560", "target": "605755", "weight": 0.024701266, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 425, "id": "e423" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.19306615, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 426, "id": "e424" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "611408", "weight": 0.018942047, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 427, "id": "e425" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.025042696, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 428, "id": "e426" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.009584128, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 429, "id": "e427" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.011982934, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 430, "id": "e428" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.029229729, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 431, "id": "e429" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605365", "target": "605755", "weight": 0.016807556, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 432, "id": "e430" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.010525425, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 433, "id": "e431" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.025674459, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 434, "id": "e432" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.032100502, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 435, "id": "e433" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.016653417, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 436, "id": "e434" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.011947335, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 437, "id": "e435" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.029142892, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 438, "id": "e436" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.036437046, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 439, "id": "e437" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "599863", "weight": 0.03200514, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 440, "id": "e438" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.026817428, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 441, "id": "e439" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.020142157, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 442, "id": "e440" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.05395785, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 443, "id": "e441" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.061247163, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 444, "id": "e442" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.031746667, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 445, "id": "e443" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "610236", "weight": 0.09682117, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 446, "id": "e444" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "599724", "weight": 0.16274704, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 447, "id": "e445" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "605755", "weight": 0.021811811, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 448, "id": "e446" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "611408", "weight": 0.074923314, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 449, "id": "e447" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "603700", "weight": 0.10404714, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 450, "id": "e448" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612341", "target": "605755", "weight": 0.024844587, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 451, "id": "e449" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.20640743, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 452, "id": "e450" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "611408", "weight": 0.019931292, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 453, "id": "e451" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.028223297, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 454, "id": "e452" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.010636279, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 455, "id": "e453" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.030938013, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 456, "id": "e454" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.012692714, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 457, "id": "e455" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.026700707, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 458, "id": "e456" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.036919616, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 459, "id": "e457" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.013852634, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 460, "id": "e458" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.029140742, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 461, "id": "e459" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.040293504, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 462, "id": "e460" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "599863", "weight": 0.03477486, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 463, "id": "e461" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.030285511, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 464, "id": "e462" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.033235077, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 465, "id": "e463" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.09105578, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 466, "id": "e464" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.034888152, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 467, "id": "e465" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "610236", "weight": 0.101480044, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 468, "id": "e466" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "599724", "weight": 0.22932594, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 469, "id": "e467" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "605755", "weight": 0.024592193, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 470, "id": "e468" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "611408", "weight": 0.07442771, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 471, "id": "e469" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "603700", "weight": 0.105399944, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 472, "id": "e470" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 1, "group": "predict", "networkId": 764, "networkGroupId": 23, "intn": true, "rIntnId": 473, "id": "e471" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.2783674, "group": "predict", "networkId": 782, "networkGroupId": 23, "intn": true, "rIntnId": 474, "id": "e472" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.2783674, "group": "predict", "networkId": 782, "networkGroupId": 23, "intn": true, "rIntnId": 475, "id": "e473" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.21170229, "group": "predict", "networkId": 782, "networkGroupId": 23, "intn": true, "rIntnId": 476, "id": "e474" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.36602542, "group": "predict", "networkId": 782, "networkGroupId": 23, "intn": true, "rIntnId": 477, "id": "e475" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.2783674, "group": "predict", "networkId": 782, "networkGroupId": 23, "intn": true, "rIntnId": 478, "id": "e476" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "599863", "weight": 0.2783674, "group": "predict", "networkId": 782, "networkGroupId": 23, "intn": true, "rIntnId": 479, "id": "e477" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.38690582, "group": "predict", "networkId": 782, "networkGroupId": 23, "intn": true, "rIntnId": 480, "id": "e478" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.38690582, "group": "predict", "networkId": 782, "networkGroupId": 23, "intn": true, "rIntnId": 481, "id": "e479" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "611408", "weight": 0.091978155, "group": "predict", "networkId": 784, "networkGroupId": 23, "intn": true, "rIntnId": 482, "id": "e480" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "610236", "weight": 0.45508987, "group": "predict", "networkId": 784, "networkGroupId": 23, "intn": true, "rIntnId": 483, "id": "e481" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "605755", "weight": 0.2623583, "group": "predict", "networkId": 784, "networkGroupId": 23, "intn": true, "rIntnId": 484, "id": "e482" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.06797186, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 485, "id": "e483" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611560", "target": "605755", "weight": 0.3450272, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 486, "id": "e484" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.059738826, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 487, "id": "e485" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "611408", "weight": 0.17054899, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 488, "id": "e486" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.039900523, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 489, "id": "e487" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "602299", "weight": 0.100114875, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 490, "id": "e488" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.050635427, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 491, "id": "e489" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "602299", "weight": 0.12704994, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 492, "id": "e490" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.08485871, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 493, "id": "e491" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.057983253, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 494, "id": "e492" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.3450272, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 495, "id": "e493" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.051310312, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 496, "id": "e494" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "602299", "weight": 0.1287433, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 497, "id": "e495" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.085989736, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 498, "id": "e496" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.10912455, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 499, "id": "e497" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "611408", "weight": 0.20272742, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 500, "id": "e498" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.504208, "group": "predict", "networkId": 783, "networkGroupId": 23, "intn": true, "rIntnId": 501, "id": "e499" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.34825513, "group": "predict", "networkId": 783, "networkGroupId": 23, "intn": true, "rIntnId": 502, "id": "e500" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.0774635, "group": "predict", "networkId": 783, "networkGroupId": 23, "intn": true, "rIntnId": 503, "id": "e501" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.098505326, "group": "predict", "networkId": 783, "networkGroupId": 23, "intn": true, "rIntnId": 504, "id": "e502" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "603700", "weight": 0.18779339, "group": "predict", "networkId": 783, "networkGroupId": 23, "intn": true, "rIntnId": 505, "id": "e503" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 1, "group": "predict", "networkId": 776, "networkGroupId": 23, "intn": true, "rIntnId": 506, "id": "e504" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612341", "target": "605755", "weight": 0.034121912, "group": "predict", "networkId": 919, "networkGroupId": 23, "intn": true, "rIntnId": 507, "id": "e505" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612341", "target": "611408", "weight": 0.15931912, "group": "predict", "networkId": 919, "networkGroupId": 23, "intn": true, "rIntnId": 508, "id": "e506" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611560", "target": "605755", "weight": 0.24656044, "group": "predict", "networkId": 919, "networkGroupId": 23, "intn": true, "rIntnId": 509, "id": "e507" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.04521022, "group": "predict", "networkId": 919, "networkGroupId": 23, "intn": true, "rIntnId": 510, "id": "e508" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "612341", "weight": 0.1758101, "group": "predict", "networkId": 919, "networkGroupId": 23, "intn": true, "rIntnId": 511, "id": "e509" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.022712024, "group": "predict", "networkId": 919, "networkGroupId": 23, "intn": true, "rIntnId": 512, "id": "e510" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.07400977, "group": "predict", "networkId": 919, "networkGroupId": 23, "intn": true, "rIntnId": 513, "id": "e511" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "605755", "weight": 0.6170411, "group": "predict", "networkId": 758, "networkGroupId": 23, "intn": true, "rIntnId": 514, "id": "e512" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.7692878, "group": "predict", "networkId": 765, "networkGroupId": 23, "intn": true, "rIntnId": 515, "id": "e513" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.34595153, "group": "predict", "networkId": 765, "networkGroupId": 23, "intn": true, "rIntnId": 516, "id": "e514" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.42062962, "group": "predict", "networkId": 765, "networkGroupId": 23, "intn": true, "rIntnId": 517, "id": "e515" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.27525902, "group": "predict", "networkId": 765, "networkGroupId": 23, "intn": true, "rIntnId": 518, "id": "e516" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.33467722, "group": "predict", "networkId": 765, "networkGroupId": 23, "intn": true, "rIntnId": 519, "id": "e517" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.57922876, "group": "predict", "networkId": 765, "networkGroupId": 23, "intn": true, "rIntnId": 520, "id": "e518" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.18857709, "group": "predict", "networkId": 765, "networkGroupId": 23, "intn": true, "rIntnId": 521, "id": "e519" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605365", "target": "605755", "weight": 0.52660257, "group": "predict", "networkId": 760, "networkGroupId": 23, "intn": true, "rIntnId": 522, "id": "e520" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.55178285, "group": "predict", "networkId": 760, "networkGroupId": 23, "intn": true, "rIntnId": 523, "id": "e521" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.421463, "group": "predict", "networkId": 760, "networkGroupId": 23, "intn": true, "rIntnId": 524, "id": "e522" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.55178285, "group": "predict", "networkId": 760, "networkGroupId": 23, "intn": true, "rIntnId": 525, "id": "e523" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.34672865, "group": "predict", "networkId": 760, "networkGroupId": 23, "intn": true, "rIntnId": 526, "id": "e524" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "600585", "weight": 0.5898937, "group": "predict", "networkId": 760, "networkGroupId": 23, "intn": true, "rIntnId": 527, "id": "e525" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "605755", "weight": 0.09839025, "group": "predict", "networkId": 760, "networkGroupId": 23, "intn": true, "rIntnId": 528, "id": "e526" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.05655634, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 529, "id": "e527" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "611560", "weight": 0.012864559, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 530, "id": "e528" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.073155984, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 531, "id": "e529" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.05125816, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 532, "id": "e530" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.12218573, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 533, "id": "e531" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.015783511, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 534, "id": "e532" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.02453422, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 535, "id": "e533" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "602299", "weight": 0.116195135, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 536, "id": "e534" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "610236", "weight": 0.058483012, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 537, "id": "e535" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605846", "weight": 0.02506927, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 538, "id": "e536" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "600535", "weight": 0.07461657, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 539, "id": "e537" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.07048574, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 540, "id": "e538" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "599889", "weight": 0.023919258, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 541, "id": "e539" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "600046", "weight": 0.10478503, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 542, "id": "e540" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "605755", "weight": 0.03964701, "group": "predict", "networkId": 743, "networkGroupId": 23, "intn": true, "rIntnId": 543, "id": "e541" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.43922377, "group": "predict", "networkId": 742, "networkGroupId": 23, "intn": true, "rIntnId": 544, "id": "e542" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.33831403, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 545, "id": "e543" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.16169672, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 546, "id": "e544" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.2703742, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 547, "id": "e545" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.21030058, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 548, "id": "e546" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.31522512, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 549, "id": "e547" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.51404154, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 550, "id": "e548" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.44492677, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 551, "id": "e549" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.15683943, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 552, "id": "e550" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.2350908, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 553, "id": "e551" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.30575597, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 554, "id": "e552" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.3868645, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 555, "id": "e553" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.42620838, "group": "predict", "networkId": 772, "networkGroupId": 23, "intn": true, "rIntnId": 556, "id": "e554" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.77163714, "group": "predict", "networkId": 766, "networkGroupId": 23, "intn": true, "rIntnId": 557, "id": "e555" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605365", "target": "605755", "weight": 0.2739886, "group": "predict", "networkId": 768, "networkGroupId": 23, "intn": true, "rIntnId": 558, "id": "e556" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "600585", "weight": 0.57735026, "group": "predict", "networkId": 761, "networkGroupId": 23, "intn": true, "rIntnId": 559, "id": "e557" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.46783587, "group": "predict", "networkId": 785, "networkGroupId": 23, "intn": true, "rIntnId": 560, "id": "e558" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.16824654, "group": "predict", "networkId": 785, "networkGroupId": 23, "intn": true, "rIntnId": 561, "id": "e559" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.37685034, "group": "predict", "networkId": 785, "networkGroupId": 23, "intn": true, "rIntnId": 562, "id": "e560" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.25319093, "group": "predict", "networkId": 785, "networkGroupId": 23, "intn": true, "rIntnId": 563, "id": "e561" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.4767415, "group": "predict", "networkId": 785, "networkGroupId": 23, "intn": true, "rIntnId": 564, "id": "e562" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.26375207, "group": "predict", "networkId": 785, "networkGroupId": 23, "intn": true, "rIntnId": 565, "id": "e563" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.7962252, "group": "predict", "networkId": 785, "networkGroupId": 23, "intn": true, "rIntnId": 566, "id": "e564" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.46783587, "group": "predict", "networkId": 785, "networkGroupId": 23, "intn": true, "rIntnId": 567, "id": "e565" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612341", "target": "605755", "weight": 0.43164432, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 568, "id": "e566" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "608473", "target": "605755", "weight": 0.43164432, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 569, "id": "e567" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "608473", "target": "612341", "weight": 0.62736636, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 570, "id": "e568" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.0605611, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 571, "id": "e569" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.04605353, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 572, "id": "e570" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.053028025, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 573, "id": "e571" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.0287298, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 574, "id": "e572" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.03308156, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 575, "id": "e573" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "599863", "weight": 0.033354767, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 576, "id": "e574" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.025481297, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 577, "id": "e575" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.029341005, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 578, "id": "e576" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.029583318, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 579, "id": "e577" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.02917116, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 580, "id": "e578" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "603700", "weight": 0.0036671148, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 581, "id": "e579" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612341", "target": "605755", "weight": 0.49999872, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 582, "id": "e580" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "608473", "target": "605755", "weight": 0.49999872, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 583, "id": "e581" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "608473", "target": "612341", "weight": 0.50000256, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 584, "id": "e582" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.07193713, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 585, "id": "e583" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.0419809, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 586, "id": "e584" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.056363728, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 587, "id": "e585" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.015254494, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 588, "id": "e586" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.020485014, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 589, "id": "e587" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "599863", "weight": 0.019407582, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 590, "id": "e588" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.012506178, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 591, "id": "e589" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.016794344, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 592, "id": "e590" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.015911028, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 593, "id": "e591" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.019493334, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 594, "id": "e592" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }] ================================================ FILE: documentation/demos/cose-layout/index.html ================================================ cose demo

cose demo

================================================ FILE: documentation/demos/cose-layout/style.css ================================================ body { font-family: helvetica; font-size: 14px; } #cy { width: 100%; height: 100%; position: absolute; left: 0; top: 0; z-index: 999; } h1 { opacity: 0.5; font-size: 1em; } ================================================ FILE: documentation/demos/dagre-layout/code.js ================================================ var cy = window.cy = cytoscape({ container: document.getElementById('cy'), boxSelectionEnabled: false, autounselectify: true, layout: { name: 'dagre' }, style: [ { selector: 'node', style: { 'content': 'data(id)', 'text-opacity': 0.5, 'text-valign': 'center', 'text-halign': 'right', 'background-color': '#11479e' } }, { selector: 'edge', style: { 'curve-style': 'bezier', 'width': 4, 'target-arrow-shape': 'triangle', 'line-color': '#9dbaea', 'target-arrow-color': '#9dbaea' } } ], elements: { nodes: [ { data: { id: 'n0' } }, { data: { id: 'n1' } }, { data: { id: 'n2' } }, { data: { id: 'n3' } }, { data: { id: 'n4' } }, { data: { id: 'n5' } }, { data: { id: 'n6' } }, { data: { id: 'n7' } }, { data: { id: 'n8' } }, { data: { id: 'n9' } }, { data: { id: 'n10' } }, { data: { id: 'n11' } }, { data: { id: 'n12' } }, { data: { id: 'n13' } }, { data: { id: 'n14' } }, { data: { id: 'n15' } }, { data: { id: 'n16' } } ], edges: [ { data: { source: 'n0', target: 'n1' } }, { data: { source: 'n1', target: 'n2' } }, { data: { source: 'n1', target: 'n3' } }, { data: { source: 'n4', target: 'n5' } }, { data: { source: 'n4', target: 'n6' } }, { data: { source: 'n6', target: 'n7' } }, { data: { source: 'n6', target: 'n8' } }, { data: { source: 'n8', target: 'n9' } }, { data: { source: 'n8', target: 'n10' } }, { data: { source: 'n11', target: 'n12' } }, { data: { source: 'n12', target: 'n13' } }, { data: { source: 'n13', target: 'n14' } }, { data: { source: 'n13', target: 'n15' } }, ] }, }); ================================================ FILE: documentation/demos/dagre-layout/index.html ================================================ cytoscape-dagre.js demo

cytoscape-dagre demo

================================================ FILE: documentation/demos/dagre-layout/style.css ================================================ body { font-family: helvetica; font-size: 14px; } #cy { width: 100%; height: 100%; position: absolute; left: 0; top: 0; z-index: 999; } h1 { opacity: 0.5; font-size: 1em; } ================================================ FILE: documentation/demos/edge-arrows/code.js ================================================ /* global document, window, fetch, cytoscape */ (function(){ var toJson = function(res){ return res.json(); }; var cy = window.cy = cytoscape({ container: document.getElementById('cy'), layout: { name: 'grid', columns: 4 }, style: fetch('cy-style.json').then(toJson), elements: fetch('data.json').then(toJson) }); document.getElementById('hollow').addEventListener('click', function(){ cy.edges().toggleClass('hollow'); }); })(); ================================================ FILE: documentation/demos/edge-arrows/cy-style.json ================================================ [{ "selector": "node", "style": { "text-valign": "center", "text-halign": "left", "width": 16, "height": 16 } }, { "selector": "node[type]", "style": { "label": "data(type)" } }, { "selector": "edge", "style": { "width": 1, "curve-style": "straight" } }, { "selector": "edge[arrow]", "style": { "target-arrow-shape": "data(arrow)" } }, { "selector": "edge.hollow", "style": { "target-arrow-fill": "hollow" } }] ================================================ FILE: documentation/demos/edge-arrows/data.json ================================================ [ { "data": { "id": "n0", "type": "triangle" } }, { "data": { "id": "n1" } }, { "data": { "id": "e0", "source": "n0", "target": "n1", "arrow": "triangle" } }, { "data": { "id": "n2", "type": "triangle-tee" } }, { "data": { "id": "n3" } }, { "data": { "id": "e1", "source": "n2", "target": "n3", "arrow": "triangle-tee" } }, { "data": { "id": "n4", "type": "circle-triangle" } }, { "data": { "id": "n5" } }, { "data": { "id": "e2", "source": "n4", "target": "n5", "arrow": "circle-triangle" } }, { "data": { "id": "n6", "type": "triangle-cross" } }, { "data": { "id": "n7" } }, { "data": { "id": "e3", "source": "n6", "target": "n7", "arrow": "triangle-cross" } }, { "data": { "id": "n8", "type": "triangle-backcurve" } }, { "data": { "id": "n9" } }, { "data": { "id": "e4", "source": "n8", "target": "n9", "arrow": "triangle-backcurve" } }, { "data": { "id": "n10", "type": "vee" } }, { "data": { "id": "n11" } }, { "data": { "id": "e5", "source": "n10", "target": "n11", "arrow": "vee" } }, { "data": { "id": "n12", "type": "tee" } }, { "data": { "id": "n13" } }, { "data": { "id": "e6", "source": "n12", "target": "n13", "arrow": "tee" } }, { "data": { "id": "n14", "type": "square" } }, { "data": { "id": "n15" } }, { "data": { "id": "e7", "source": "n14", "target": "n15", "arrow": "square" } }, { "data": { "id": "n16", "type": "circle" } }, { "data": { "id": "n17" } }, { "data": { "id": "e8", "source": "n16", "target": "n17", "arrow": "circle" } }, { "data": { "id": "n18", "type": "diamond" } }, { "data": { "id": "n19" } }, { "data": { "id": "e9", "source": "n18", "target": "n19", "arrow": "diamond" } }, { "data": { "id": "n20", "type": "chevron" } }, { "data": { "id": "n21" } }, { "data": { "id": "e10", "source": "n20", "target": "n21", "arrow": "chevron" } }, { "data": { "id": "n22", "type": "none" } }, { "data": { "id": "n23" } }, { "data": { "id": "e11", "source": "n22", "target": "n23", "arrow": "none" } } ] ================================================ FILE: documentation/demos/edge-arrows/index.html ================================================ Edge arrow types demo

Edge arrow types demo

================================================ FILE: documentation/demos/edge-arrows/style.css ================================================ body { font-family: helvetica, sans-serif; font-size: 14px; } #cy { position: absolute; left: 0; top: 0; right: 0; bottom: 0; z-index: 1; } h1 { opacity: 0.5; font-size: 1em; } #hollow { position: absolute; right: 0; top: 0; margin: 0.5em; z-index: 2; } ================================================ FILE: documentation/demos/edge-types/code.js ================================================ /* global document, window, fetch, cytoscape */ (function(){ var toJson = function(res){ return res.json(); }; var cy = window.cy = cytoscape({ container: document.getElementById('cy'), layout: { name: 'grid', columns: 6 }, style: fetch('cy-style.json').then(toJson), elements: fetch('data.json').then(toJson) }); cy.ready(function(){ // make taxi nodes better organised var n19 = cy.$('#n19'); var n17 = cy.$('#n17'); var n18 = cy.$('#n18'); var p17 = n17.position(); var p18 = n18.position(); var d = (p18.x - p17.x)/4; n19.position({ x: (p17.x + p18.x)/2, y: p17.y - d }); n17.add(n18).position({ y: p17.y + d }); // make round-taxi nodes better organised var n22 = cy.$('#n22'); var n20 = cy.$('#n20'); var n21 = cy.$('#n21'); var p20 = n20.position(); var p21 = n21.position(); var dr = (p21.x - p20.x)/4; n22.position({ x: (p20.x + p21.x)/2, y: p20.y -d }); n20.add(n21).position({ y: p20.y + dr }); }); })(); ================================================ FILE: documentation/demos/edge-types/cy-style.json ================================================ [{ "selector": "node", "style": { "text-valign": "center", "text-halign": "left" } }, { "selector": "node[?flipLabel]", "style": { "text-halign": "right" } }, { "selector": "node[type]", "style": { "label": "data(type)" } }, { "selector": "edge", "style": { "width": 3 } }, { "selector": "edge.bezier", "style": { "curve-style": "bezier", "control-point-step-size": 40 } }, { "selector": "edge.unbundled-bezier", "style": { "curve-style": "unbundled-bezier", "control-point-distances": 120, "control-point-weights": 0.1 } }, { "selector": "edge.multi-unbundled-bezier", "style": { "curve-style": "unbundled-bezier", "control-point-distances": [40, -40], "control-point-weights": [0.250, 0.75] } }, { "selector": "edge.haystack", "style": { "curve-style": "haystack", "haystack-radius": 0.5 } }, { "selector": "edge.segments", "style": { "curve-style": "segments", "segment-distances": [ 40, -40 ], "segment-weights": [0.250 , 0.75] } }, { "selector": "edge.round-segments", "style": { "curve-style": "round-segments", "segment-distances": [ 40, -40 ], "segment-weights": [0.250 , 0.75] } }, { "selector": "edge.taxi", "style": { "curve-style": "taxi", "taxi-direction": "downward", "taxi-turn": 20, "taxi-turn-min-distance": 5 } }, { "selector": "edge.round-taxi", "style": { "curve-style": "round-taxi", "taxi-direction": "downward", "taxi-turn": 20, "taxi-turn-min-distance": 5, "taxi-radius": 10 } }, { "selector": "edge.straight-triangle", "style": { "curve-style": "straight-triangle", "width": 10 } }] ================================================ FILE: documentation/demos/edge-types/data.json ================================================ [{ "data": { "id": "n01" } }, { "data": { "id": "n02", "type": "bezier", "flipLabel": true } }, { "data": { "source": "n01", "target": "n02" }, "classes": "bezier" }, { "data": { "source": "n01", "target": "n02" }, "classes": "bezier" }, { "data": { "source": "n02", "target": "n01" }, "classes": "bezier" }, { "data": { "id": "n03" } }, { "data": { "id": "n04", "type": "unbundled-bezier", "flipLabel": true } }, { "data": { "source": "n03", "target": "n04" }, "classes": "unbundled-bezier" }, { "data": { "id": "n05" } }, { "data": { "id": "n06", "type": "unbundled-bezier(multiple)", "flipLabel": true } }, { "data": { "source": "n05", "target": "n06" }, "classes": "multi-unbundled-bezier" }, { "data": { "id": "n07" } }, { "data": { "id": "n08", "type": "straight", "flipLabel": true } }, { "data": { "source": "n07", "target": "n08" }, "classes": "straight" }, { "data": { "id": "n09" } }, { "data": { "id": "n10", "type": "haystack", "flipLabel": true } }, { "data": { "id": "e06", "source": "n10", "target": "n09" }, "classes": "haystack" }, { "data": { "source": "n10", "target": "n09" }, "classes": "haystack" }, { "data": { "source": "n10", "target": "n09" }, "classes": "haystack" }, { "data": { "source": "n10", "target": "n09" }, "classes": "haystack" }, { "data": { "id": "n11" } }, { "data": { "id": "n12", "type": "straight-triangle", "flipLabel": true } }, { "data": { "source": "n11", "target": "n12" }, "classes": "straight-triangle" }, { "data": { "id": "n13" } }, { "data": { "id": "n14", "type": "segments", "flipLabel": true } }, { "data": { "source": "n13", "target": "n14" }, "classes": "segments" }, { "data": { "id": "n15" } }, { "data": { "id": "n16", "type": "round-segments", "flipLabel": true } }, { "data": { "source": "n15", "target": "n16" }, "classes": "round-segments" },{ "data": { "id": "n17" } }, { "data": { "id": "n18" } }, { "data": { "id": "n19", "type": "taxi" } }, { "data": { "source": "n19", "target": "n17" }, "classes": "taxi" }, { "data": { "source": "n19", "target": "n18" }, "classes": "taxi" }, { "data": { "id": "n20" } }, { "data": { "id": "n21" } }, { "data": { "id": "n22", "type": "round-taxi" } }, { "data": { "source": "n22", "target": "n20" }, "classes": "round-taxi" }, { "data": { "source": "n22", "target": "n21" }, "classes": "round-taxi" },{ "data": { "id": "n23", "type": "loop", "flipLabel": true } }, { "data": { "source": "n23", "target": "n23" }, "classes": "loop"} ] ================================================ FILE: documentation/demos/edge-types/index.html ================================================ Edge types demo

Edge types demo

================================================ FILE: documentation/demos/edge-types/style.css ================================================ body { font-family: helvetica, sans-serif; font-size: 14px; } #cy { position: absolute; left: 0; top: 0; right: 0; bottom: 0; z-index: 999; } h1 { opacity: 0.5; font-size: 1em; } ================================================ FILE: documentation/demos/fcose-gene/code.js ================================================ /* global Promise, fetch, window, cytoscape, document, tippy, _ */ Promise.all([ fetch('cy-style.json') .then(function(res) { return res.json(); }), fetch('data.json') .then(function(res) { return res.json(); }) ]) .then(function(dataArray) { var h = function(tag, attrs, children){ var el = document.createElement(tag); Object.keys(attrs).forEach(function(key){ var val = attrs[key]; el.setAttribute(key, val); }); children.forEach(function(child){ el.appendChild(child); }); return el; }; var t = function(text){ var el = document.createTextNode(text); return el; }; var $ = document.querySelector.bind(document); var cy = window.cy = cytoscape({ container: document.getElementById('cy'), style: dataArray[0], elements: dataArray[1], layout: { name: 'grid' } // fixed, non-equal positions ensure deterministic fcose results }); // values modified by sliders var nodeRepulsionVal = 4500; var idealEdgeLengthVal = 1; var params = { name: 'fcose', nodeRepulsion: n => nodeRepulsionVal, idealEdgeLength: e => idealEdgeLengthVal / e.data('weight'), animate: true, randomize: false }; var layout = makeLayout({ animate: false }); layout.run(); var $btnParam = h('div', { 'class': 'param' }, []); var $config = $('#config'); $config.appendChild( $btnParam ); var sliders = [ { label: 'Edge length', update: sliderVal => idealEdgeLengthVal = sliderVal, initVal: idealEdgeLengthVal, min: 1, max: 5, step: 0.1 }, { label: 'Node repulsion', update: sliderVal => nodeRepulsionVal = sliderVal, initVal: nodeRepulsionVal, min: 4500, max: 1000000, step: 1 } ]; var buttons = [ { label: h('span', { 'class': 'fa fa-random' }, []), layoutOpts: { randomize: true, animate: true }, tooltip: 'Randomise' }, { label: h('span', { 'class': 'fa fa-play' }, []), layoutOpts: { randomize: false, animate: true }, tooltip: 'Step' } ]; sliders.forEach( makeSlider ); buttons.forEach( makeButton ); function makeLayout( opts ){ params.randomize = (opts || {}).randomize || false; for( var i in opts ){ params[i] = opts[i]; } return cy.layout( Object.assign({}, params) ); } function makeSlider( opts ){ var $input = h('input', { id: 'slider-'+opts.param, type: 'range', min: opts.min, max: opts.max, step: opts.step, value: opts.initVal, 'class': 'slider' }, []); var $param = h('div', { 'class': 'param' }, []); var $label = h('label', { 'class': 'label label-default', for: 'slider-'+opts.param }, [ t(opts.label) ]); $param.appendChild( $label ); $param.appendChild( $input ); $config.appendChild( $param ); var update = _.throttle(function(){ opts.update(parseFloat($input.value)); layout.stop(); layout = makeLayout({ animate: true }); layout.run(); }, 1000/4, { trailing: true }); $input.addEventListener('input', update); $input.addEventListener('change', update); } function makeButton( opts ){ var $button = h('button', { 'class': 'btn btn-default', title: opts.tooltip }, [ opts.label ]); $btnParam.appendChild( $button ); $button.addEventListener('click', function(){ layout.stop(); layout = makeLayout( opts.layoutOpts ); layout.run(); }); return tippy( $button, { content: opts.tooltip, arrow: true, placement: 'right' } ); } var makeTippy = function(node, html){ return tippy( node.popperRef(), { html: html, trigger: 'manual', arrow: true, placement: 'bottom', hideOnClick: false, interactive: true } ).tooltips[0]; }; var hideTippy = function(node){ var tippy = node.data('tippy'); if(tippy != null){ tippy.hide(); } }; var hideAllTippies = function(){ cy.nodes().forEach(hideTippy); }; cy.on('tap', function(e){ if(e.target === cy){ hideAllTippies(); } }); cy.on('tap', 'edge', function(e){ hideAllTippies(); }); cy.on('zoom pan', function(e){ hideAllTippies(); }); cy.nodes().forEach(function(n){ var g = n.data('name'); var $links = [ { name: 'GeneCard', url: 'http://www.genecards.org/cgi-bin/carddisp.pl?gene=' + g }, { name: 'UniProt search', url: 'http://www.uniprot.org/uniprot/?query='+ g +'&fil=organism%3A%22Homo+sapiens+%28Human%29+%5B9606%5D%22&sort=score' }, { name: 'GeneMANIA', url: 'http://genemania.org/search/human/' + g } ].map(function( link ){ return h('a', { target: '_blank', href: link.url, 'class': 'tip-link' }, [ t(link.name) ]); }); var tippy = makeTippy(n, h('div', {}, $links)); n.data('tippy', tippy); n.on('click', function(e){ tippy.show(); cy.nodes().not(n).forEach(hideTippy); }); }); $('#config-toggle').addEventListener('click', function(){ $('body').classList.toggle('config-closed'); cy.resize(); }); }); ================================================ FILE: documentation/demos/fcose-gene/cy-style.json ================================================ [{ "selector": "core", "style": { "selection-box-color": "#AAD8FF", "selection-box-border-color": "#8BB0D0", "selection-box-opacity": "0.5" } }, { "selector": "node", "style": { "width": "mapData(score, 0, 0.006769776522008331, 20, 60)", "height": "mapData(score, 0, 0.006769776522008331, 20, 60)", "content": "data(name)", "font-size": "12px", "text-valign": "center", "text-halign": "center", "background-color": "#555", "text-outline-color": "#555", "text-outline-width": "2px", "color": "#fff", "overlay-padding": "6px", "z-index": "10" } }, { "selector": "node[?attr]", "style": { "shape": "rectangle", "background-color": "#aaa", "text-outline-color": "#aaa", "width": "16px", "height": "16px", "font-size": "6px", "z-index": "1" } }, { "selector": "node[?query]", "style": { "background-clip": "none", "background-fit": "contain" } }, { "selector": "node:selected", "style": { "border-width": "6px", "border-color": "#AAD8FF", "border-opacity": "0.5", "background-color": "#77828C", "text-outline-color": "#77828C" } }, { "selector": "edge", "style": { "curve-style": "haystack", "haystack-radius": "0.5", "opacity": "0.4", "line-color": "#bbb", "width": "mapData(weight, 0, 1, 1, 8)", "overlay-padding": "3px" } }, { "selector": "node.unhighlighted", "style": { "opacity": "0.2" } }, { "selector": "edge.unhighlighted", "style": { "opacity": "0.05" } }, { "selector": ".highlighted", "style": { "z-index": "999999" } }, { "selector": "node.highlighted", "style": { "border-width": "6px", "border-color": "#AAD8FF", "border-opacity": "0.5", "background-color": "#394855", "text-outline-color": "#394855" } }, { "selector": "edge.filtered", "style": { "opacity": "0" } }, { "selector": "edge[group=\"coexp\"]", "style": { "line-color": "#d0b7d5" } }, { "selector": "edge[group=\"coloc\"]", "style": { "line-color": "#a0b3dc" } }, { "selector": "edge[group=\"gi\"]", "style": { "line-color": "#90e190" } }, { "selector": "edge[group=\"path\"]", "style": { "line-color": "#9bd8de" } }, { "selector": "edge[group=\"pi\"]", "style": { "line-color": "#eaa2a2" } }, { "selector": "edge[group=\"predict\"]", "style": { "line-color": "#f6c384" } }, { "selector": "edge[group=\"spd\"]", "style": { "line-color": "#dad4a2" } }, { "selector": "edge[group=\"spd_attr\"]", "style": { "line-color": "#D0D0D0" } }, { "selector": "edge[group=\"reg\"]", "style": { "line-color": "#D0D0D0" } }, { "selector": "edge[group=\"reg_attr\"]", "style": { "line-color": "#D0D0D0" } }, { "selector": "edge[group=\"user\"]", "style": { "line-color": "#f0ec86" } }] ================================================ FILE: documentation/demos/fcose-gene/data.json ================================================ [{ "data": { "id": "605755", "idInt": 605755, "name": "PCNA", "score": 0.006769776522008331, "query": true, "gene": true }, "position": { "x": 481.0169597039117, "y": 384.8210888234145 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn6944 fn9471 fn10569 fn8023 fn6956 fn6935 fn8147 fn6939 fn6936 fn6629 fn7928 fn6947 fn8612 fn6957 fn8786 fn6246 fn9367 fn6945 fn6946 fn10024 fn10022 fn6811 fn9361 fn6279 fn6278 fn8569 fn7641 fn8568 fn6943" }, { "data": { "id": "611408", "idInt": 611408, "name": "FEN1", "score": 0.006769776522008331, "query": false, "gene": true }, "position": { "x": 531.9740635094307, "y": 464.8210898234145 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn6944 fn9471 fn6284 fn6956 fn6935 fn8147 fn6939 fn6936 fn6949 fn6629 fn7952 fn6680 fn6957 fn8786 fn6676 fn10713 fn7495 fn7500 fn9361 fn6279 fn6278 fn8569 fn7641 fn8568" }, { "data": { "id": "612341", "idInt": 612341, "name": "RAD9A", "score": 0.0028974131563619387, "query": false, "gene": true }, "position": { "x": 455.8128125018193, "y": 555.4591537139819 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn6935 fn6219 fn6680 fn6676 fn10713 fn7552 fn7495" }, { "data": { "id": "608473", "idInt": 608473, "name": "RAD9B", "score": 0.0026928704785200708, "query": false, "gene": true }, "position": { "x": 363.1144068403203, "y": 515.7352912086707 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn6935" }, { "data": { "id": "611560", "idInt": 611560, "name": "APEX2", "score": 0.0026215687185565106, "query": false, "gene": true }, "position": { "x": 689.1927803956215, "y": 634.0100611862405 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "600585", "idInt": 600585, "name": "POLD3", "score": 0.0024938385347587078, "query": false, "gene": true }, "position": { "x": 118.3562364528364, "y": 384.3877516879044 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn6944 fn9471 fn10569 fn8823 fn9180 fn6956 fn6935 fn8147 fn6939 fn6936 fn6648 fn6947 fn6957 fn8786 fn6246 fn9367 fn9368 fn6945 fn6946 fn7921 fn6811 fn8380 fn6279 fn6278 fn8569 fn7641 fn8568 fn6943" }, { "data": { "id": "599889", "idInt": 599889, "name": "RAD51", "score": 0.002453016748286352, "query": false, "gene": true }, "position": { "x": 759.7017646483837, "y": 338.3207127700095 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn6931 fn9632 fn7950 fn9188 fn6956 fn6935 fn7338 fn6936 fn6949 fn6629 fn6957 fn6246 fn7453 fn7451 fn10024 fn7456 fn7454 fn7469 fn7467 fn10022 fn7552 fn7495 fn7463 fn7464 fn9361" }, { "data": { "id": "602299", "idInt": 602299, "name": "LIG1", "score": 0.0023873089881679688, "query": false, "gene": true }, "position": { "x": 264.10227893804523, "y": 631.7198779917306 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn6944 fn9471 fn6956 fn6935 fn8147 fn6939 fn6936 fn6949 fn6957 fn8786 fn6945 fn6946 fn6279 fn6278 fn8569 fn7641 fn8568 fn6943" }, { "data": { "id": "603070", "idInt": 603070, "name": "RFC5", "score": 0.0022841757103715943, "query": false, "gene": true }, "position": { "x": 282.21587939790476, "y": 109.57476207336902 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn9471 fn6956 fn6935 fn8147 fn6939 fn6936 fn6957 fn8786 fn6945 fn6946 fn6811 fn6279 fn6278 fn8569 fn7641 fn8568 fn6943" }, { "data": { "id": "610236", "idInt": 610236, "name": "RFC4", "score": 0.002235382441847178, "query": false, "gene": true }, "position": { "x": 205.41323994659498, "y": 122.2715768040765 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn9471 fn6956 fn6935 fn8147 fn6939 fn6936 fn6957 fn8786 fn6945 fn6946 fn6811 fn6279 fn6278 fn8569 fn7641 fn8568 fn6943" }, { "data": { "id": "605365", "idInt": 605365, "name": "GADD45G", "score": 0.0021779529408011977, "query": false, "gene": true }, "position": { "x": 335.2681018951896, "y": 398.62289259289554 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "599863", "idInt": 599863, "name": "RFC2", "score": 0.001982524582665901, "query": false, "gene": true }, "position": { "x": 422.6986944382589, "y": 59.422072599905285 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn9471 fn6956 fn6935 fn8147 fn6939 fn6936 fn6957 fn8786 fn6945 fn6946 fn6811 fn6279 fn6278 fn8569 fn7641 fn8568 fn6943" }, { "data": { "id": "603700", "idInt": 603700, "name": "MSH6", "score": 0.001946986634883574, "query": false, "gene": true }, "position": { "x": 524.5786092800173, "y": 313.6721385565813 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn6931 fn9632 fn7950 fn9188 fn6956 fn7338 fn6629 fn6947 fn8612 fn6246 fn7453 fn7451 fn7456 fn7454 fn7469 fn7467 fn10022 fn7495 fn7500 fn7463 fn7464 fn9361" }, { "data": { "id": "605846", "idInt": 605846, "name": "RFC3", "score": 0.0018726190118726893, "query": false, "gene": true }, "position": { "x": 192.72587571240607, "y": 30.601237157877808 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn6931 fn9632 fn7950 fn9188 fn9471 fn10569 fn6956 fn6935 fn8147 fn6939 fn7338 fn6936 fn6957 fn8786 fn7453 fn7451 fn6945 fn6946 fn7456 fn7454 fn7469 fn7467 fn6811 fn7463 fn7464 fn6279 fn6278 fn8569 fn7641 fn8568 fn6943" }, { "data": { "id": "600535", "idInt": 600535, "name": "UNG", "score": 0.0018134484466597045, "query": false, "gene": true }, "position": { "x": 497.37919617137817, "y": 693.0523864227225 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn8023 fn7928" }, { "data": { "id": "599724", "idInt": 599724, "name": "RFC1", "score": 0.001740600741472309, "query": false, "gene": true }, "position": { "x": 381.8836285591501, "y": 194.7788667091606 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn9471 fn6956 fn6935 fn8147 fn6939 fn6936 fn6957 fn8786 fn6945 fn6946 fn6811 fn6279 fn6278 fn8569 fn7641 fn8568 fn6943" }, { "data": { "id": "602279", "idInt": 602279, "name": "BABAM1", "score": 0.0015192107762236895, "query": false, "gene": true }, "position": { "x": 633.9447667877506, "y": 217.35373723375224 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn6949 fn10024 fn10022 fn7552 fn7495" }, { "data": { "id": "600046", "idInt": 600046, "name": "POLD1", "score": 0.0014783091464922182, "query": false, "gene": true }, "position": { "x": 91.6808784584024, "y": 252.85442763278502 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn6944 fn9471 fn10569 fn8823 fn9180 fn6956 fn6935 fn8147 fn6939 fn6936 fn6648 fn6680 fn6957 fn8786 fn6246 fn9367 fn9368 fn6676 fn10713 fn6945 fn6946 fn7921 fn6811 fn8380 fn7495 fn7500 fn6279 fn6278 fn8569 fn7641 fn8568 fn6943" }, { "data": { "id": "609734", "idInt": 609734, "name": "POLR3K", "score": 0.001465090467084318, "query": false, "gene": true }, "position": { "x": 905.3802465599952, "y": 493.3679393218726 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn7921" }, { "data": { "id": "612326", "idInt": 612326, "name": "PPP1CA", "score": 0.001444414413500572, "query": false, "gene": true }, "position": { "x": 621.2170159338846, "y": 407.11437177468383 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "606768", "idInt": 606768, "name": "DNA2", "score": 0.0014194334373996975, "query": false, "gene": true }, "position": { "x": 912.8425638686975, "y": 11.53856391494864 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "fn10273 fn6931 fn9632 fn7950 fn9188 fn6944 fn9471 fn6284 fn9180 fn6956 fn6935 fn6219 fn8147 fn6939 fn7338 fn6936 fn6949 fn7952 fn6957 fn8786 fn6676 fn10713 fn7453 fn7451 fn10024 fn7456 fn7454 fn7469 fn7467 fn10022 fn7463 fn7464 fn6279 fn6278 fn8569 fn7641 fn8568" }, { "data": { "source": "611408", "target": "605755", "weight": 0.0055478187, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 2, "id": "e0" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "600585", "weight": 0.012590342, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 3, "id": "e1" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.0089772185, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 4, "id": "e2" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.0055292076, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 5, "id": "e3" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.005184464, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 6, "id": "e4" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "612341", "weight": 0.008174375, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 7, "id": "e5" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.0073378147, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 8, "id": "e6" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.010978148, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 9, "id": "e7" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "611408", "weight": 0.009477927, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 10, "id": "e8" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.009086159, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 11, "id": "e9" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "600585", "weight": 0.008661902, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 12, "id": "e10" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "602299", "weight": 0.0050190594, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 13, "id": "e11" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "603700", "weight": 0.00814378, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 14, "id": "e12" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "600585", "weight": 0.0065156803, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 15, "id": "e13" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "603700", "weight": 0.0066020666, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 16, "id": "e14" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "600535", "weight": 0.0030451824, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 17, "id": "e15" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "611408", "weight": 0.0069189603, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 18, "id": "e16" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "605755", "weight": 0.007888168, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 19, "id": "e17" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "611408", "weight": 0.0066891047, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 20, "id": "e18" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "610236", "weight": 0.006453997, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 21, "id": "e19" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "605846", "weight": 0.013474658, "group": "coexp", "networkId": 1133, "networkGroupId": 18, "intn": true, "rIntnId": 22, "id": "e20" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "611408", "weight": 0.010655156, "group": "coexp", "networkId": 1228, "networkGroupId": 18, "intn": true, "rIntnId": 23, "id": "e21" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.02157121, "group": "coexp", "networkId": 1228, "networkGroupId": 18, "intn": true, "rIntnId": 24, "id": "e22" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605846", "weight": 0.01614795, "group": "coexp", "networkId": 1228, "networkGroupId": 18, "intn": true, "rIntnId": 25, "id": "e23" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.011872302, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 26, "id": "e24" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "611408", "weight": 0.013897292, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 27, "id": "e25" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.014308085, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 28, "id": "e26" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.01631634, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 29, "id": "e27" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.014722961, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 30, "id": "e28" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.01798934, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 31, "id": "e29" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "611408", "weight": 0.014232373, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 32, "id": "e30" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.01543053, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 33, "id": "e31" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.015419611, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 34, "id": "e32" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "599863", "weight": 0.018117689, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 35, "id": "e33" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "612341", "weight": 0.0197734, "group": "coexp", "networkId": 1094, "networkGroupId": 18, "intn": true, "rIntnId": 36, "id": "e34" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.007181677, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 37, "id": "e35" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.012193555, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 38, "id": "e36" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "611408", "weight": 0.009036004, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 39, "id": "e37" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.008944319, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 40, "id": "e38" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "600585", "weight": 0.0140501885, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 41, "id": "e39" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.014778332, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 42, "id": "e40" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "599889", "weight": 0.023106916, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 43, "id": "e41" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "602299", "weight": 0.013864683, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 44, "id": "e42" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.009235155, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 45, "id": "e43" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.0070685484, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 46, "id": "e44" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "600585", "weight": 0.011782279, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 47, "id": "e45" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "602299", "weight": 0.009479035, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 48, "id": "e46" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.013767981, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 49, "id": "e47" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.02076845, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 50, "id": "e48" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.014548145, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 51, "id": "e49" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "602299", "weight": 0.018761018, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 52, "id": "e50" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.009776375, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 53, "id": "e51" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "611408", "weight": 0.006622242, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 54, "id": "e52" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "602299", "weight": 0.01073685, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 55, "id": "e53" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.013705722, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 56, "id": "e54" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.007519171, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 57, "id": "e55" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "611408", "weight": 0.00589999, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 58, "id": "e56" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "600585", "weight": 0.011810116, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 59, "id": "e57" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "602299", "weight": 0.008160093, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 60, "id": "e58" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "610236", "weight": 0.007695786, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 61, "id": "e59" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "603700", "weight": 0.01120258, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 62, "id": "e60" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "611560", "weight": 0.012538481, "group": "coexp", "networkId": 1205, "networkGroupId": 18, "intn": true, "rIntnId": 63, "id": "e61" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.006985158, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 64, "id": "e62" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.0065989364, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 65, "id": "e63" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.0046327286, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 66, "id": "e64" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.0054441774, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 67, "id": "e65" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "600585", "weight": 0.010655146, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 68, "id": "e66" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "599889", "weight": 0.0053057605, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 69, "id": "e67" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.005323636, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 70, "id": "e68" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.008839407, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 71, "id": "e69" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "611408", "weight": 0.010832426, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 72, "id": "e70" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "599889", "weight": 0.010297667, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 73, "id": "e71" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.0069649774, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 74, "id": "e72" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "599889", "weight": 0.0030997663, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 75, "id": "e73" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "610236", "weight": 0.0021416117, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 76, "id": "e74" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.011675352, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 77, "id": "e75" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "602299", "weight": 0.007548246, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 78, "id": "e76" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "605755", "weight": 0.011033994, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 79, "id": "e77" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "602279", "weight": 0.0054105376, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 80, "id": "e78" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "605846", "weight": 0.015214647, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 81, "id": "e79" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "600535", "weight": 0.007762454, "group": "coexp", "networkId": 1103, "networkGroupId": 18, "intn": true, "rIntnId": 82, "id": "e80" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.0071786125, "group": "coexp", "networkId": 1147, "networkGroupId": 18, "intn": true, "rIntnId": 83, "id": "e81" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.00930929, "group": "coexp", "networkId": 1147, "networkGroupId": 18, "intn": true, "rIntnId": 84, "id": "e82" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.0065878476, "group": "coexp", "networkId": 1147, "networkGroupId": 18, "intn": true, "rIntnId": 85, "id": "e83" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "610236", "weight": 0.008354699, "group": "coexp", "networkId": 1147, "networkGroupId": 18, "intn": true, "rIntnId": 86, "id": "e84" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "602279", "weight": 0.0027737948, "group": "coexp", "networkId": 1147, "networkGroupId": 18, "intn": true, "rIntnId": 87, "id": "e85" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "605755", "weight": 0.00786129, "group": "coexp", "networkId": 1219, "networkGroupId": 18, "intn": true, "rIntnId": 88, "id": "e86" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "602299", "weight": 0.0057260455, "group": "coexp", "networkId": 1219, "networkGroupId": 18, "intn": true, "rIntnId": 89, "id": "e87" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "610236", "weight": 0.008558536, "group": "coexp", "networkId": 1219, "networkGroupId": 18, "intn": true, "rIntnId": 90, "id": "e88" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.0083115185, "group": "coexp", "networkId": 1219, "networkGroupId": 18, "intn": true, "rIntnId": 91, "id": "e89" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.005608535, "group": "coexp", "networkId": 1219, "networkGroupId": 18, "intn": true, "rIntnId": 92, "id": "e90" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603700", "weight": 0.009317383, "group": "coexp", "networkId": 1219, "networkGroupId": 18, "intn": true, "rIntnId": 93, "id": "e91" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "610236", "weight": 0.0067964033, "group": "coexp", "networkId": 1219, "networkGroupId": 18, "intn": true, "rIntnId": 94, "id": "e92" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "605846", "weight": 0.008256701, "group": "coexp", "networkId": 1219, "networkGroupId": 18, "intn": true, "rIntnId": 95, "id": "e93" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "611408", "weight": 0.0050337426, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 96, "id": "e94" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.013028561, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 97, "id": "e95" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "599889", "weight": 0.0139607005, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 98, "id": "e96" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "611408", "weight": 0.00802425, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 99, "id": "e97" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.006611009, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 100, "id": "e98" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "611408", "weight": 0.004236914, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 101, "id": "e99" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.011486805, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 102, "id": "e100" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "611408", "weight": 0.0073252246, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 103, "id": "e101" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "611408", "weight": 0.0031254988, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 104, "id": "e102" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "612341", "weight": 0.0068017747, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 105, "id": "e103" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605846", "weight": 0.0078691505, "group": "coexp", "networkId": 991, "networkGroupId": 18, "intn": true, "rIntnId": 106, "id": "e104" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "612341", "weight": 0.0029230819, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 107, "id": "e105" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "611408", "weight": 0.018245377, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 108, "id": "e106" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "600585", "weight": 0.013878305, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 109, "id": "e107" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "599889", "weight": 0.014034339, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 110, "id": "e108" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.011003433, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 111, "id": "e109" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "600585", "weight": 0.011568223, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 112, "id": "e110" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.008862467, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 113, "id": "e111" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "611408", "weight": 0.02715506, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 114, "id": "e112" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "599889", "weight": 0.02020582, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 115, "id": "e113" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.01389255, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 116, "id": "e114" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.011845588, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 117, "id": "e115" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.008885449, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 118, "id": "e116" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603700", "weight": 0.016939284, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 119, "id": "e117" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "599863", "weight": 0.0065266574, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 120, "id": "e118" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "603700", "weight": 0.009681167, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 121, "id": "e119" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.010009936, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 122, "id": "e120" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602279", "target": "611560", "weight": 0.0072178333, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 123, "id": "e121" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "612341", "weight": 0.0019152164, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 124, "id": "e122" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "602299", "weight": 0.0019770851, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 125, "id": "e123" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "611408", "weight": 0.0074162656, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 126, "id": "e124" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "602279", "weight": 0.008383535, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 127, "id": "e125" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "600585", "weight": 0.012502968, "group": "coexp", "networkId": 948, "networkGroupId": 18, "intn": true, "rIntnId": 128, "id": "e126" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.006425211, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 129, "id": "e127" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.009075253, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 130, "id": "e128" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "611408", "weight": 0.013036429, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 131, "id": "e129" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.005474452, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 132, "id": "e130" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "611408", "weight": 0.0068840934, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 133, "id": "e131" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.0038199152, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 134, "id": "e132" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.0048849517, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 135, "id": "e133" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "599889", "weight": 0.008408555, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 136, "id": "e134" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.003905569, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 137, "id": "e135" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.005101607, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 138, "id": "e136" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "611408", "weight": 0.00612881, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 139, "id": "e137" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.0054722885, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 140, "id": "e138" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.0037771827, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 141, "id": "e139" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "611408", "weight": 0.006252843, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 142, "id": "e140" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "600585", "weight": 0.008764523, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 143, "id": "e141" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "602299", "weight": 0.0077429856, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 144, "id": "e142" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603700", "weight": 0.010403784, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 145, "id": "e143" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "612341", "weight": 0.0098648025, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 146, "id": "e144" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "602299", "weight": 0.012923219, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 147, "id": "e145" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "603700", "weight": 0.014601159, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 148, "id": "e146" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605846", "weight": 0.0061014947, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 149, "id": "e147" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "605755", "weight": 0.0063784183, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 150, "id": "e148" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "611408", "weight": 0.007974974, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 151, "id": "e149" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "600585", "weight": 0.011962807, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 152, "id": "e150" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "610236", "weight": 0.0045933793, "group": "coexp", "networkId": 1160, "networkGroupId": 18, "intn": true, "rIntnId": 153, "id": "e151" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.011469932, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 154, "id": "e152" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.0065593245, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 155, "id": "e153" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "602299", "weight": 0.008945865, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 156, "id": "e154" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.0123492405, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 157, "id": "e155" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "611560", "weight": 0.011177457, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 158, "id": "e156" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.009827839, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 159, "id": "e157" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "599889", "weight": 0.014151318, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 160, "id": "e158" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "602299", "weight": 0.010976079, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 161, "id": "e159" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "611560", "weight": 0.0070169745, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 162, "id": "e160" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "599863", "weight": 0.013198467, "group": "coexp", "networkId": 1112, "networkGroupId": 18, "intn": true, "rIntnId": 163, "id": "e161" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "599889", "weight": 0.006426068, "group": "coexp", "networkId": 1058, "networkGroupId": 18, "intn": true, "rIntnId": 164, "id": "e162" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.010584534, "group": "coexp", "networkId": 1058, "networkGroupId": 18, "intn": true, "rIntnId": 165, "id": "e163" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.01746872, "group": "coexp", "networkId": 1058, "networkGroupId": 18, "intn": true, "rIntnId": 166, "id": "e164" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "599889", "weight": 0.0071076, "group": "coexp", "networkId": 1058, "networkGroupId": 18, "intn": true, "rIntnId": 167, "id": "e165" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "610236", "weight": 0.015010853, "group": "coexp", "networkId": 1058, "networkGroupId": 18, "intn": true, "rIntnId": 168, "id": "e166" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "600535", "weight": 0.0084955385, "group": "coexp", "networkId": 1058, "networkGroupId": 18, "intn": true, "rIntnId": 169, "id": "e167" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.005950518, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 170, "id": "e168" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "599889", "weight": 0.010287272, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 171, "id": "e169" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.0073932544, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 172, "id": "e170" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.0036719772, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 173, "id": "e171" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.003859972, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 174, "id": "e172" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "599889", "weight": 0.0070424364, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 175, "id": "e173" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "602299", "weight": 0.0033553005, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 176, "id": "e174" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.00446657, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 177, "id": "e175" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.006380608, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 178, "id": "e176" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.010436626, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 179, "id": "e177" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "603070", "weight": 0.010232103, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 180, "id": "e178" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "602299", "weight": 0.010975428, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 181, "id": "e179" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.007576592, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 182, "id": "e180" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.010113988, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 183, "id": "e181" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "611408", "weight": 0.009832912, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 184, "id": "e182" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "602299", "weight": 0.008797756, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 185, "id": "e183" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "610236", "weight": 0.0058537833, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 186, "id": "e184" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "603700", "weight": 0.01664277, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 187, "id": "e185" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602279", "target": "599863", "weight": 0.0048371204, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 188, "id": "e186" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "602299", "weight": 0.009031323, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 189, "id": "e187" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "610236", "weight": 0.0057287826, "group": "coexp", "networkId": 939, "networkGroupId": 18, "intn": true, "rIntnId": 190, "id": "e188" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.0046684104, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 191, "id": "e189" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "611408", "weight": 0.010843052, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 192, "id": "e190" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.007012607, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 193, "id": "e191" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "612341", "weight": 0.021436332, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 194, "id": "e192" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.008355799, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 195, "id": "e193" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "611408", "weight": 0.008533838, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 196, "id": "e194" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.005761585, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 197, "id": "e195" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.005706919, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 198, "id": "e196" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.009086173, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 199, "id": "e197" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.010499329, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 200, "id": "e198" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "611408", "weight": 0.011064748, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 201, "id": "e199" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.017625364, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 202, "id": "e200" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.010782314, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 203, "id": "e201" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.009000187, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 204, "id": "e202" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "611408", "weight": 0.009551385, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 205, "id": "e203" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "610236", "weight": 0.011809003, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 206, "id": "e204" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.010237067, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 207, "id": "e205" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "611408", "weight": 0.011980566, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 208, "id": "e206" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.019081693, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 209, "id": "e207" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.013073517, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 210, "id": "e208" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "599889", "weight": 0.0078543145, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 211, "id": "e209" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "610236", "weight": 0.009314968, "group": "coexp", "networkId": 987, "networkGroupId": 18, "intn": true, "rIntnId": 212, "id": "e210" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "605755", "weight": 0.0062426035, "group": "coexp", "networkId": 1211, "networkGroupId": 18, "intn": true, "rIntnId": 213, "id": "e211" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.006246549, "group": "coexp", "networkId": 1211, "networkGroupId": 18, "intn": true, "rIntnId": 214, "id": "e212" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "602299", "weight": 0.013894426, "group": "coexp", "networkId": 1211, "networkGroupId": 18, "intn": true, "rIntnId": 215, "id": "e213" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "610236", "weight": 0.017061198, "group": "coexp", "networkId": 1211, "networkGroupId": 18, "intn": true, "rIntnId": 216, "id": "e214" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.0032552993, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 217, "id": "e215" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.0023748495, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 218, "id": "e216" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.003535996, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 219, "id": "e217" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "611408", "weight": 0.0075512826, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 220, "id": "e218" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.005550344, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 221, "id": "e219" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.0035219863, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 222, "id": "e220" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "610236", "weight": 0.0037936512, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 223, "id": "e221" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "602299", "weight": 0.021771252, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 224, "id": "e222" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "611408", "weight": 0.008810265, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 225, "id": "e223" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "610236", "weight": 0.006708223, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 226, "id": "e224" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605846", "weight": 0.015404511, "group": "coexp", "networkId": 1221, "networkGroupId": 18, "intn": true, "rIntnId": 227, "id": "e225" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.015407894, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 228, "id": "e226" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.019584121, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 229, "id": "e227" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "611408", "weight": 0.01921773, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 230, "id": "e228" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.020896556, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 231, "id": "e229" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "611408", "weight": 0.020604162, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 232, "id": "e230" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.020293837, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 233, "id": "e231" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "611408", "weight": 0.018530738, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 234, "id": "e232" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "602299", "weight": 0.025947532, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 235, "id": "e233" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "603070", "weight": 0.012148044, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 236, "id": "e234" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "599863", "weight": 0.012389051, "group": "coexp", "networkId": 1141, "networkGroupId": 18, "intn": true, "rIntnId": 237, "id": "e235" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "599889", "weight": 0.013262892, "group": "coexp", "networkId": 1040, "networkGroupId": 18, "intn": true, "rIntnId": 238, "id": "e236" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.0032305722, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 239, "id": "e237" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.008934008, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 240, "id": "e238" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "611408", "weight": 0.0047838143, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 241, "id": "e239" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "605755", "weight": 0.009817743, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 242, "id": "e240" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.0035941477, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 243, "id": "e241" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.0022027155, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 244, "id": "e242" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "600585", "weight": 0.006635881, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 245, "id": "e243" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.007493106, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 246, "id": "e244" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "611408", "weight": 0.0045459457, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 247, "id": "e245" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "610236", "weight": 0.004649519, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 248, "id": "e246" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.0040052356, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 249, "id": "e247" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.0067177215, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 250, "id": "e248" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "611408", "weight": 0.0035133353, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 251, "id": "e249" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "600585", "weight": 0.013092303, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 252, "id": "e250" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "610236", "weight": 0.00450646, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 253, "id": "e251" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "605755", "weight": 0.0056021707, "group": "coexp", "networkId": 1213, "networkGroupId": 18, "intn": true, "rIntnId": 254, "id": "e252" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "605755", "weight": 0.01022965, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 255, "id": "e253" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.0019825348, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 256, "id": "e254" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611408", "weight": 0.0025504285, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 257, "id": "e255" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "611560", "weight": 0.004504783, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 258, "id": "e256" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "599889", "weight": 0.005680255, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 259, "id": "e257" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.0038152228, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 260, "id": "e258" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.010831964, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 261, "id": "e259" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.0024976064, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 262, "id": "e260" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "611408", "weight": 0.0033427116, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 263, "id": "e261" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.0012776565, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 264, "id": "e262" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603700", "weight": 0.0069493027, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 265, "id": "e263" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.008979472, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 266, "id": "e264" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "610236", "weight": 0.0049493727, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 267, "id": "e265" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.0066200355, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 268, "id": "e266" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.0033406042, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 269, "id": "e267" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.00455017, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 270, "id": "e268" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.00904533, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 271, "id": "e269" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "610236", "weight": 0.0046978444, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 272, "id": "e270" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "605755", "weight": 0.0020831665, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 273, "id": "e271" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "603700", "weight": 0.0070924386, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 274, "id": "e272" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "605846", "weight": 0.0013620426, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 275, "id": "e273" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "599724", "weight": 0.0042498824, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 276, "id": "e274" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "610236", "weight": 0.0031287828, "group": "coloc", "networkId": 1215, "networkGroupId": 19, "intn": true, "rIntnId": 277, "id": "e275" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.055505108, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 278, "id": "e276" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.036435686, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 279, "id": "e277" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "611408", "weight": 0.07736873, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 280, "id": "e278" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "605755", "weight": 0.07026827, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 281, "id": "e279" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "611408", "weight": 0.15814601, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 282, "id": "e280" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "600585", "weight": 0.10381311, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 283, "id": "e281" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.034838397, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 284, "id": "e282" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "612341", "weight": 0.06087656, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 285, "id": "e283" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "608473", "weight": 0.087010026, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 286, "id": "e284" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "600585", "weight": 0.048561342, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 287, "id": "e285" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.034838397, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 288, "id": "e286" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "612341", "weight": 0.06087656, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 289, "id": "e287" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "608473", "weight": 0.087010026, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 290, "id": "e288" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "600585", "weight": 0.048561342, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 291, "id": "e289" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.046432484, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 292, "id": "e290" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605365", "target": "605755", "weight": 0.06039332, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 293, "id": "e291" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.034838397, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 294, "id": "e292" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "612341", "weight": 0.06087656, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 295, "id": "e293" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "608473", "weight": 0.087010026, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 296, "id": "e294" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "600585", "weight": 0.048561342, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 297, "id": "e295" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.046432484, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 298, "id": "e296" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.046432484, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 299, "id": "e297" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.034838397, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 300, "id": "e298" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "612341", "weight": 0.06087656, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 301, "id": "e299" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "608473", "weight": 0.087010026, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 302, "id": "e300" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "600585", "weight": 0.048561342, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 303, "id": "e301" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.046432484, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 304, "id": "e302" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.046432484, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 305, "id": "e303" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "599863", "weight": 0.046432484, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 306, "id": "e304" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.04283297, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 307, "id": "e305" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "600585", "weight": 0.059705, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 308, "id": "e306" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.057087615, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 309, "id": "e307" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.057087615, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 310, "id": "e308" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.057087615, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 311, "id": "e309" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.057087615, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 312, "id": "e310" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.0346906, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 313, "id": "e311" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "611408", "weight": 0.07366316, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 314, "id": "e312" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "600585", "weight": 0.048355326, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 315, "id": "e313" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "602299", "weight": 0.09884098, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 316, "id": "e314" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "603070", "weight": 0.0462355, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 317, "id": "e315" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "610236", "weight": 0.0462355, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 318, "id": "e316" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "599863", "weight": 0.0462355, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 319, "id": "e317" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605846", "weight": 0.0462355, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 320, "id": "e318" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "599724", "weight": 0.05684543, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 321, "id": "e319" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "605755", "weight": 0.06142156, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 322, "id": "e320" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "600585", "weight": 0.08561569, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 323, "id": "e321" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "600046", "weight": 0.08151513, "group": "path", "networkId": 920, "networkGroupId": 21, "intn": true, "rIntnId": 324, "id": "e322" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.08421734, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 325, "id": "e323" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.033336625, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 326, "id": "e324" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "611408", "weight": 0.10495135, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 327, "id": "e325" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "600585", "weight": 0.10282618, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 328, "id": "e326" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.06335889, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 329, "id": "e327" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "600585", "weight": 0.078957625, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 330, "id": "e328" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.06335889, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 331, "id": "e329" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "600585", "weight": 0.078957625, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 332, "id": "e330" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.06335889, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 333, "id": "e331" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "600585", "weight": 0.078957625, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 334, "id": "e332" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.06335889, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 335, "id": "e333" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "600585", "weight": 0.078957625, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 336, "id": "e334" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.043610524, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 337, "id": "e335" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "600585", "weight": 0.054347284, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 338, "id": "e336" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.1032913, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 339, "id": "e337" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.1032913, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 340, "id": "e338" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.1032913, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 341, "id": "e339" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.1032913, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 342, "id": "e340" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.04544427, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 343, "id": "e341" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "600585", "weight": 0.056632493, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 344, "id": "e342" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "602299", "weight": 0.14017196, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 345, "id": "e343" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "605755", "weight": 0.0608564, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 346, "id": "e344" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "600585", "weight": 0.07583903, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 347, "id": "e345" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "600046", "weight": 0.103383265, "group": "path", "networkId": 917, "networkGroupId": 21, "intn": true, "rIntnId": 348, "id": "e346" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "605755", "weight": 0.3670512, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 349, "id": "e347" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "612341", "weight": 0.024917956, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 350, "id": "e348" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "612341", "weight": 0.025497014, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 351, "id": "e349" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.029834377, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 352, "id": "e350" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "612341", "weight": 0.024917956, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 353, "id": "e351" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.029156813, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 354, "id": "e352" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.029834377, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 355, "id": "e353" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "612341", "weight": 0.024917956, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 356, "id": "e354" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.029156813, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 357, "id": "e355" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.029834377, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 358, "id": "e356" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "599863", "weight": 0.029156813, "group": "path", "networkId": 916, "networkGroupId": 21, "intn": true, "rIntnId": 359, "id": "e357" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.32122406, "group": "pi", "networkId": 903, "networkGroupId": 22, "intn": true, "rIntnId": 360, "id": "e358" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612341", "target": "605755", "weight": 0.106598906, "group": "pi", "networkId": 903, "networkGroupId": 22, "intn": true, "rIntnId": 361, "id": "e359" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.32122406, "group": "pi", "networkId": 903, "networkGroupId": 22, "intn": true, "rIntnId": 362, "id": "e360" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.16342038, "group": "pi", "networkId": 903, "networkGroupId": 22, "intn": true, "rIntnId": 363, "id": "e361" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605365", "target": "605755", "weight": 0.11347918, "group": "pi", "networkId": 903, "networkGroupId": 22, "intn": true, "rIntnId": 364, "id": "e362" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.10376385, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 365, "id": "e363" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.16238527, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 366, "id": "e364" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.16630344, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 367, "id": "e365" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.15056042, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 368, "id": "e366" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.17790036, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 369, "id": "e367" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.15458822, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 370, "id": "e368" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.13995422, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 371, "id": "e369" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "599863", "weight": 0.14333117, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 372, "id": "e370" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.10097788, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 373, "id": "e371" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.15802538, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 374, "id": "e372" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.143066, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 375, "id": "e373" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.14651802, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 376, "id": "e374" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.13619658, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 377, "id": "e375" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602279", "target": "605755", "weight": 0.4812469, "group": "pi", "networkId": 721, "networkGroupId": 22, "intn": true, "rIntnId": 378, "id": "e376" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.011314526, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 379, "id": "e377" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612341", "target": "605755", "weight": 0.008967896, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 380, "id": "e378" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612341", "target": "611408", "weight": 0.0539502, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 381, "id": "e379" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611560", "target": "605755", "weight": 0.1572818, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 382, "id": "e380" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.013491094, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 383, "id": "e381" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.063570626, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 384, "id": "e382" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.019299628, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 385, "id": "e383" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.0113324495, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 386, "id": "e384" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.11628905, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 387, "id": "e385" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605365", "target": "605755", "weight": 0.01062005, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 388, "id": "e386" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.010721097, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 389, "id": "e387" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.11001559, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 390, "id": "e388" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.0645995, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 391, "id": "e389" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.007422314, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 392, "id": "e390" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "612341", "weight": 0.03539126, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 393, "id": "e391" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "599889", "weight": 0.018539928, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 394, "id": "e392" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.020811629, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 395, "id": "e393" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.12539954, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 396, "id": "e394" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.008685797, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 397, "id": "e395" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.08913017, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 398, "id": "e396" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.052335896, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 399, "id": "e397" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.049512524, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 400, "id": "e398" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603700", "weight": 0.034277976, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 401, "id": "e399" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.096112944, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 402, "id": "e400" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.009051671, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 403, "id": "e401" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "600585", "weight": 0.0649295, "group": "pi", "networkId": 665, "networkGroupId": 22, "intn": true, "rIntnId": 404, "id": "e402" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.15316014, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 405, "id": "e403" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611560", "target": "605755", "weight": 0.22489744, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 406, "id": "e404" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.22489744, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 407, "id": "e405" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.22489744, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 408, "id": "e406" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.17140284, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 409, "id": "e407" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605365", "target": "605755", "weight": 0.015279513, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 410, "id": "e408" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.17140284, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 411, "id": "e409" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.06023315, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 412, "id": "e410" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.17140284, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 413, "id": "e411" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.07430747, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 414, "id": "e412" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.22489744, "group": "pi", "networkId": 901, "networkGroupId": 22, "intn": true, "rIntnId": 415, "id": "e413" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.054434802, "group": "pi", "networkId": 906, "networkGroupId": 22, "intn": true, "rIntnId": 416, "id": "e414" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.14387716, "group": "pi", "networkId": 906, "networkGroupId": 22, "intn": true, "rIntnId": 417, "id": "e415" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.2326112, "group": "pi", "networkId": 906, "networkGroupId": 22, "intn": true, "rIntnId": 418, "id": "e416" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.2580584, "group": "pi", "networkId": 906, "networkGroupId": 22, "intn": true, "rIntnId": 419, "id": "e417" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.32172158, "group": "pi", "networkId": 906, "networkGroupId": 22, "intn": true, "rIntnId": 420, "id": "e418" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.40359056, "group": "pi", "networkId": 906, "networkGroupId": 22, "intn": true, "rIntnId": 421, "id": "e419" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.036951467, "group": "pi", "networkId": 906, "networkGroupId": 22, "intn": true, "rIntnId": 422, "id": "e420" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.01199196, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 423, "id": "e421" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612341", "target": "605755", "weight": 0.016832655, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 424, "id": "e422" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611560", "target": "605755", "weight": 0.024701266, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 425, "id": "e423" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.19306615, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 426, "id": "e424" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "611408", "weight": 0.018942047, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 427, "id": "e425" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.025042696, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 428, "id": "e426" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.009584128, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 429, "id": "e427" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "605755", "weight": 0.011982934, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 430, "id": "e428" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.029229729, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 431, "id": "e429" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605365", "target": "605755", "weight": 0.016807556, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 432, "id": "e430" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.010525425, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 433, "id": "e431" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.025674459, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 434, "id": "e432" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.032100502, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 435, "id": "e433" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.016653417, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 436, "id": "e434" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.011947335, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 437, "id": "e435" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.029142892, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 438, "id": "e436" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.036437046, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 439, "id": "e437" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "599863", "weight": 0.03200514, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 440, "id": "e438" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.026817428, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 441, "id": "e439" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.020142157, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 442, "id": "e440" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.05395785, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 443, "id": "e441" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.061247163, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 444, "id": "e442" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.031746667, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 445, "id": "e443" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "610236", "weight": 0.09682117, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 446, "id": "e444" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "599724", "weight": 0.16274704, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 447, "id": "e445" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "605755", "weight": 0.021811811, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 448, "id": "e446" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "611408", "weight": 0.074923314, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 449, "id": "e447" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "603700", "weight": 0.10404714, "group": "pi", "networkId": 909, "networkGroupId": 22, "intn": true, "rIntnId": 450, "id": "e448" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612341", "target": "605755", "weight": 0.024844587, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 451, "id": "e449" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600585", "target": "605755", "weight": 0.20640743, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 452, "id": "e450" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "611408", "weight": 0.019931292, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 453, "id": "e451" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.028223297, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 454, "id": "e452" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.010636279, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 455, "id": "e453" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.030938013, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 456, "id": "e454" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.012692714, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 457, "id": "e455" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.026700707, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 458, "id": "e456" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.036919616, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 459, "id": "e457" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.013852634, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 460, "id": "e458" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.029140742, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 461, "id": "e459" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.040293504, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 462, "id": "e460" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "599863", "weight": 0.03477486, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 463, "id": "e461" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.030285511, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 464, "id": "e462" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.033235077, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 465, "id": "e463" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.09105578, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 466, "id": "e464" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.034888152, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 467, "id": "e465" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "610236", "weight": 0.101480044, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 468, "id": "e466" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "599724", "weight": 0.22932594, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 469, "id": "e467" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "605755", "weight": 0.024592193, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 470, "id": "e468" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "611408", "weight": 0.07442771, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 471, "id": "e469" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "603700", "weight": 0.105399944, "group": "pi", "networkId": 799, "networkGroupId": 22, "intn": true, "rIntnId": 472, "id": "e470" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 1, "group": "predict", "networkId": 764, "networkGroupId": 23, "intn": true, "rIntnId": 473, "id": "e471" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.2783674, "group": "predict", "networkId": 782, "networkGroupId": 23, "intn": true, "rIntnId": 474, "id": "e472" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.2783674, "group": "predict", "networkId": 782, "networkGroupId": 23, "intn": true, "rIntnId": 475, "id": "e473" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.21170229, "group": "predict", "networkId": 782, "networkGroupId": 23, "intn": true, "rIntnId": 476, "id": "e474" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.36602542, "group": "predict", "networkId": 782, "networkGroupId": 23, "intn": true, "rIntnId": 477, "id": "e475" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.2783674, "group": "predict", "networkId": 782, "networkGroupId": 23, "intn": true, "rIntnId": 478, "id": "e476" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "599863", "weight": 0.2783674, "group": "predict", "networkId": 782, "networkGroupId": 23, "intn": true, "rIntnId": 479, "id": "e477" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.38690582, "group": "predict", "networkId": 782, "networkGroupId": 23, "intn": true, "rIntnId": 480, "id": "e478" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.38690582, "group": "predict", "networkId": 782, "networkGroupId": 23, "intn": true, "rIntnId": 481, "id": "e479" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "611408", "weight": 0.091978155, "group": "predict", "networkId": 784, "networkGroupId": 23, "intn": true, "rIntnId": 482, "id": "e480" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "610236", "weight": 0.45508987, "group": "predict", "networkId": 784, "networkGroupId": 23, "intn": true, "rIntnId": 483, "id": "e481" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "609734", "target": "605755", "weight": 0.2623583, "group": "predict", "networkId": 784, "networkGroupId": 23, "intn": true, "rIntnId": 484, "id": "e482" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.06797186, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 485, "id": "e483" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611560", "target": "605755", "weight": 0.3450272, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 486, "id": "e484" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.059738826, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 487, "id": "e485" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "611408", "weight": 0.17054899, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 488, "id": "e486" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.039900523, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 489, "id": "e487" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "602299", "weight": 0.100114875, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 490, "id": "e488" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.050635427, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 491, "id": "e489" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "602299", "weight": 0.12704994, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 492, "id": "e490" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.08485871, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 493, "id": "e491" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.057983253, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 494, "id": "e492" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.3450272, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 495, "id": "e493" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.051310312, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 496, "id": "e494" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "602299", "weight": 0.1287433, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 497, "id": "e495" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.085989736, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 498, "id": "e496" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.10912455, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 499, "id": "e497" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "611408", "weight": 0.20272742, "group": "predict", "networkId": 746, "networkGroupId": 23, "intn": true, "rIntnId": 500, "id": "e498" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.504208, "group": "predict", "networkId": 783, "networkGroupId": 23, "intn": true, "rIntnId": 501, "id": "e499" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.34825513, "group": "predict", "networkId": 783, "networkGroupId": 23, "intn": true, "rIntnId": 502, "id": "e500" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.0774635, "group": "predict", "networkId": 783, "networkGroupId": 23, "intn": true, "rIntnId": 503, "id": "e501" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.098505326, "group": "predict", "networkId": 783, "networkGroupId": 23, "intn": true, "rIntnId": 504, "id": "e502" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "603700", "weight": 0.18779339, "group": "predict", "networkId": 783, "networkGroupId": 23, "intn": true, "rIntnId": 505, "id": "e503" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 1, "group": "predict", "networkId": 776, "networkGroupId": 23, "intn": true, "rIntnId": 506, "id": "e504" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612341", "target": "605755", "weight": 0.034121912, "group": "predict", "networkId": 919, "networkGroupId": 23, "intn": true, "rIntnId": 507, "id": "e505" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612341", "target": "611408", "weight": 0.15931912, "group": "predict", "networkId": 919, "networkGroupId": 23, "intn": true, "rIntnId": 508, "id": "e506" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611560", "target": "605755", "weight": 0.24656044, "group": "predict", "networkId": 919, "networkGroupId": 23, "intn": true, "rIntnId": 509, "id": "e507" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.04521022, "group": "predict", "networkId": 919, "networkGroupId": 23, "intn": true, "rIntnId": 510, "id": "e508" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "612341", "weight": 0.1758101, "group": "predict", "networkId": 919, "networkGroupId": 23, "intn": true, "rIntnId": 511, "id": "e509" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.022712024, "group": "predict", "networkId": 919, "networkGroupId": 23, "intn": true, "rIntnId": 512, "id": "e510" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.07400977, "group": "predict", "networkId": 919, "networkGroupId": 23, "intn": true, "rIntnId": 513, "id": "e511" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "605755", "weight": 0.6170411, "group": "predict", "networkId": 758, "networkGroupId": 23, "intn": true, "rIntnId": 514, "id": "e512" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.7692878, "group": "predict", "networkId": 765, "networkGroupId": 23, "intn": true, "rIntnId": 515, "id": "e513" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.34595153, "group": "predict", "networkId": 765, "networkGroupId": 23, "intn": true, "rIntnId": 516, "id": "e514" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.42062962, "group": "predict", "networkId": 765, "networkGroupId": 23, "intn": true, "rIntnId": 517, "id": "e515" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.27525902, "group": "predict", "networkId": 765, "networkGroupId": 23, "intn": true, "rIntnId": 518, "id": "e516" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.33467722, "group": "predict", "networkId": 765, "networkGroupId": 23, "intn": true, "rIntnId": 519, "id": "e517" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.57922876, "group": "predict", "networkId": 765, "networkGroupId": 23, "intn": true, "rIntnId": 520, "id": "e518" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.18857709, "group": "predict", "networkId": 765, "networkGroupId": 23, "intn": true, "rIntnId": 521, "id": "e519" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605365", "target": "605755", "weight": 0.52660257, "group": "predict", "networkId": 760, "networkGroupId": 23, "intn": true, "rIntnId": 522, "id": "e520" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.55178285, "group": "predict", "networkId": 760, "networkGroupId": 23, "intn": true, "rIntnId": 523, "id": "e521" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.421463, "group": "predict", "networkId": 760, "networkGroupId": 23, "intn": true, "rIntnId": 524, "id": "e522" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.55178285, "group": "predict", "networkId": 760, "networkGroupId": 23, "intn": true, "rIntnId": 525, "id": "e523" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.34672865, "group": "predict", "networkId": 760, "networkGroupId": 23, "intn": true, "rIntnId": 526, "id": "e524" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "600585", "weight": 0.5898937, "group": "predict", "networkId": 760, "networkGroupId": 23, "intn": true, "rIntnId": 527, "id": "e525" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "605755", "weight": 0.09839025, "group": "predict", "networkId": 760, "networkGroupId": 23, "intn": true, "rIntnId": 528, "id": "e526" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.05655634, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 529, "id": "e527" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599889", "target": "611560", "weight": 0.012864559, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 530, "id": "e528" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "602299", "target": "605755", "weight": 0.073155984, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 531, "id": "e529" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.05125816, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 532, "id": "e530" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.12218573, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 533, "id": "e531" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "605755", "weight": 0.015783511, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 534, "id": "e532" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605755", "weight": 0.02453422, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 535, "id": "e533" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "602299", "weight": 0.116195135, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 536, "id": "e534" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "610236", "weight": 0.058483012, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 537, "id": "e535" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600535", "target": "605846", "weight": 0.02506927, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 538, "id": "e536" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "600535", "weight": 0.07461657, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 539, "id": "e537" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "605755", "weight": 0.07048574, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 540, "id": "e538" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "599889", "weight": 0.023919258, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 541, "id": "e539" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "600046", "weight": 0.10478503, "group": "predict", "networkId": 918, "networkGroupId": 23, "intn": true, "rIntnId": 542, "id": "e540" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612326", "target": "605755", "weight": 0.03964701, "group": "predict", "networkId": 743, "networkGroupId": 23, "intn": true, "rIntnId": 543, "id": "e541" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.43922377, "group": "predict", "networkId": 742, "networkGroupId": 23, "intn": true, "rIntnId": 544, "id": "e542" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.33831403, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 545, "id": "e543" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.16169672, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 546, "id": "e544" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.2703742, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 547, "id": "e545" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.21030058, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 548, "id": "e546" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.31522512, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 549, "id": "e547" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.51404154, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 550, "id": "e548" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.44492677, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 551, "id": "e549" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.15683943, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 552, "id": "e550" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.2350908, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 553, "id": "e551" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.30575597, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 554, "id": "e552" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.3868645, "group": "predict", "networkId": 741, "networkGroupId": 23, "intn": true, "rIntnId": 555, "id": "e553" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.42620838, "group": "predict", "networkId": 772, "networkGroupId": 23, "intn": true, "rIntnId": 556, "id": "e554" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.77163714, "group": "predict", "networkId": 766, "networkGroupId": 23, "intn": true, "rIntnId": 557, "id": "e555" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605365", "target": "605755", "weight": 0.2739886, "group": "predict", "networkId": 768, "networkGroupId": 23, "intn": true, "rIntnId": 558, "id": "e556" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "600046", "target": "600585", "weight": 0.57735026, "group": "predict", "networkId": 761, "networkGroupId": 23, "intn": true, "rIntnId": 559, "id": "e557" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "611408", "target": "605755", "weight": 0.46783587, "group": "predict", "networkId": 785, "networkGroupId": 23, "intn": true, "rIntnId": 560, "id": "e558" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603070", "target": "605755", "weight": 0.16824654, "group": "predict", "networkId": 785, "networkGroupId": 23, "intn": true, "rIntnId": 561, "id": "e559" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.37685034, "group": "predict", "networkId": 785, "networkGroupId": 23, "intn": true, "rIntnId": 562, "id": "e560" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "605755", "weight": 0.25319093, "group": "predict", "networkId": 785, "networkGroupId": 23, "intn": true, "rIntnId": 563, "id": "e561" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.4767415, "group": "predict", "networkId": 785, "networkGroupId": 23, "intn": true, "rIntnId": 564, "id": "e562" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "603700", "target": "605755", "weight": 0.26375207, "group": "predict", "networkId": 785, "networkGroupId": 23, "intn": true, "rIntnId": 565, "id": "e563" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.7962252, "group": "predict", "networkId": 785, "networkGroupId": 23, "intn": true, "rIntnId": 566, "id": "e564" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605755", "weight": 0.46783587, "group": "predict", "networkId": 785, "networkGroupId": 23, "intn": true, "rIntnId": 567, "id": "e565" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612341", "target": "605755", "weight": 0.43164432, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 568, "id": "e566" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "608473", "target": "605755", "weight": 0.43164432, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 569, "id": "e567" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "608473", "target": "612341", "weight": 0.62736636, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 570, "id": "e568" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.0605611, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 571, "id": "e569" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.04605353, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 572, "id": "e570" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.053028025, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 573, "id": "e571" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.0287298, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 574, "id": "e572" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.03308156, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 575, "id": "e573" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "599863", "weight": 0.033354767, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 576, "id": "e574" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.025481297, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 577, "id": "e575" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.029341005, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 578, "id": "e576" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.029583318, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 579, "id": "e577" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.02917116, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 580, "id": "e578" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "606768", "target": "603700", "weight": 0.0036671148, "group": "spd", "networkId": 1229, "networkGroupId": 24, "intn": true, "rIntnId": 581, "id": "e579" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "612341", "target": "605755", "weight": 0.49999872, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 582, "id": "e580" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "608473", "target": "605755", "weight": 0.49999872, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 583, "id": "e581" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "608473", "target": "612341", "weight": 0.50000256, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 584, "id": "e582" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "610236", "target": "603070", "weight": 0.07193713, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 585, "id": "e583" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "603070", "weight": 0.0419809, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 586, "id": "e584" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599863", "target": "610236", "weight": 0.056363728, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 587, "id": "e585" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "603070", "weight": 0.015254494, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 588, "id": "e586" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "610236", "weight": 0.020485014, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 589, "id": "e587" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "605846", "target": "599863", "weight": 0.019407582, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 590, "id": "e588" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "603070", "weight": 0.012506178, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 591, "id": "e589" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "610236", "weight": 0.016794344, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 592, "id": "e590" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "599863", "weight": 0.015911028, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 593, "id": "e591" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "source": "599724", "target": "605846", "weight": 0.019493334, "group": "spd", "networkId": 1230, "networkGroupId": 24, "intn": true, "rIntnId": 594, "id": "e592" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }] ================================================ FILE: documentation/demos/fcose-gene/index.html ================================================ FCOSE/Cytoscape.js
FCOSE/Cytoscape.js demo

This is a demo of a graph of gene-gene interactions that uses FCOSE for layout and Cytoscape.js for its graph model and visualisation. Use the controls below to alter the FCOSE layout parameters.

Data by GeneMANIA
Visualisation by Cytoscape.js
Layout by FCOSE

Note that FCOSE supports both non-compound and compound graphs. For a compound graph, see another FCOSE demo.

================================================ FILE: documentation/demos/fcose-gene/style.css ================================================ html { width: 100%; height: 100%; } body { font: 14px helvetica neue, helvetica, arial, sans-serif; width: 100%; height: 100%; overflow: hidden; } #cy { position: absolute; left: 0; top: 0; bottom: 0; right: 17em; } .config { position: absolute; right: 0; top: 0; bottom: 0; width: 17em; background: rgba(0, 0, 0, 0.666); box-sizing: border-box; padding: 1em; color: #fff; transition-property: opacity; transition-duration: 250ms; transition-timing-function: ease-out; overflow: auto; z-index: 1; } .param { margin-bottom: 1em; } .preamble { margin-bottom: 2em; } p { margin: 0.5em 0; font-size: 0.8em; } .param button { width: 3em; margin-right: 0.25em; text-align: center; } a, a:hover { color: #8BB0D0; } .label { display: block; } .slider { display: block; width: 100%; margin: 0; } .config-toggle { position: absolute; right: 0; top: 0; padding: 1em; margin: 0.2em; cursor: pointer; color: #fff; z-index: 9999999; } .config-closed .config { opacity: 0; pointer-events: none; } .config-closed #cy { right: 0; } .tip-link { display: block; } @media (max-width: 600px){ #cy { right: 0; } } ================================================ FILE: documentation/demos/genemania-export/code.js ================================================ fetch('data.json', {mode: 'no-cors'}) .then(function(res) { return res.json() }) .then(function(data) { var cy = cytoscape({ container: document.getElementById('cy'), style: cytoscape.stylesheet() .selector('node') .css({ 'font-size': 10, 'content': 'data(gene_name)', 'text-valign': 'center', 'color': 'white', 'text-outline-width': 2, 'text-outline-color': '#888', 'min-zoomed-font-size': 8, 'width': 'mapData(score, 0, 1, 20, 50)', 'height': 'mapData(score, 0, 1, 20, 50)' }) .selector('node[node_type = "query"]') .css({ 'background-color': '#666', 'text-outline-color': '#666' }) .selector('node:selected') .css({ 'background-color': '#000', 'text-outline-color': '#000' }) .selector('edge') .css({ 'curve-style': 'haystack', 'opacity': 0.333, 'width': 'mapData(normalized_max_weight, 0, 0.01, 1, 2)' }) .selector('edge[data_type = "Predicted"]') .css({ 'line-color': '#F6C28C' }) .selector('edge[data_type = "Physical interactions"]') .css({ 'line-color': '#EAA2A3' }) .selector('edge[data_type = "Shared protein domains"]') .css({ 'line-color': '#DAD4A8' }) .selector('edge[data_type = "Co-expression"]') .css({ 'line-color': '#D0B7D3' }) .selector('edge[data_type = "Pathway"]') .css({ 'line-color': '#9BD8DD' }) .selector('edge[data_type = "Co-localization"]') .css({ 'line-color': '#A0B3D8' }) .selector('edge:selected') .css({ opacity: 1 }), elements: data.elements, layout: { name: 'concentric', concentric: function(ele){ return ele.data('score'); }, levelWidth: function(nodes){ return 0.5; }, padding: 10 } }); }); ================================================ FILE: documentation/demos/genemania-export/data.json ================================================ { "format_version": "1.0", "generated_by": "cytoscape-3.1.0", "target_cytoscapejs_version": "~2.1", "data": { "SUID": 52, "source_networks": "[{\"group\":\"Predicted\",\"name\":\"I2D-BioGRID-Worm2Human\",\"weight\":3.7537451003449705E-4},{\"group\":\"Predicted\",\"name\":\"I2D-BIND-Yeast2Human\",\"weight\":0.06643631843947942},{\"group\":\"Co-localization\",\"name\":\"Schadt-Shoemaker-2004\",\"weight\":0.005333824227094584},{\"group\":\"Predicted\",\"name\":\"I2D-BioGRID-Fly2Human\",\"weight\":8.466550334425771E-4},{\"group\":\"Co-expression\",\"name\":\"Alizadeh-Staudt-2000\",\"weight\":0.013588094881204627},{\"group\":\"Pathway\",\"name\":\"PATHWAYCOMMONS-NCI_NATURE\",\"weight\":0.08635086720330279},{\"group\":\"Co-expression\",\"name\":\"Burington-Shaughnessy-2008\",\"weight\":0.03016969103761588},{\"group\":\"Physical interactions\",\"name\":\"BIOGRID-SMALL-SCALE-STUDIES\",\"weight\":0.030795064046860252},{\"group\":\"Co-expression\",\"name\":\"Perou-Botstein-2000\",\"weight\":2.4071521302299352E-4},{\"group\":\"Predicted\",\"name\":\"I2D-BIND-Worm2Human\",\"weight\":0.03170087557651741},{\"group\":\"Co-localization\",\"name\":\"Johnson-Shoemaker-2003\",\"weight\":0.03032705231517992},{\"group\":\"Predicted\",\"name\":\"I2D-IntAct-Worm2Human\",\"weight\":0.009475525484917712},{\"group\":\"Physical interactions\",\"name\":\"IREF-GRID\",\"weight\":0.05202868950330718},{\"group\":\"Physical interactions\",\"name\":\"IREF-BIND\",\"weight\":0.0034431917200112563},{\"group\":\"Predicted\",\"name\":\"I2D-BioGRID-Yeast2Human\",\"weight\":0.010253520175191107},{\"group\":\"Co-expression\",\"name\":\"Chen-Brown-2002\",\"weight\":0.008589403325972167},{\"group\":\"Physical interactions\",\"name\":\"IREF-SMALL-SCALE-STUDIES\",\"weight\":0.04307883818399897},{\"group\":\"Co-expression\",\"name\":\"Innocenti-Brown-2011\",\"weight\":3.737815236946745E-5},{\"group\":\"Co-expression\",\"name\":\"Rieger-Chu-2004\",\"weight\":0.010671838043867217},{\"group\":\"Co-expression\",\"name\":\"Wang-Maris-2006\",\"weight\":0.003589232071383274},{\"group\":\"Predicted\",\"name\":\"I2D-IntAct-Fly2Human\",\"weight\":0.0027282833691831326},{\"group\":\"Co-expression\",\"name\":\"Kang-Willman-2010\",\"weight\":0.006613416777023772},{\"group\":\"Predicted\",\"name\":\"I2D-IntAct-Mouse2Human\",\"weight\":0.03077726477940408},{\"group\":\"Co-expression\",\"name\":\"Arijs-Rutgeerts-2009\",\"weight\":0.008025541134347046},{\"group\":\"Co-expression\",\"name\":\"Roth-Zlotnik-2006\",\"weight\":2.3094160705350745E-4},{\"group\":\"Shared protein domains\",\"name\":\"PFAM\",\"weight\":0.10866564558714463},{\"group\":\"Predicted\",\"name\":\"I2D-Krogan-Greenblatt-2006-NonCore-Yeast2Human\",\"weight\":0.01808853933421063},{\"group\":\"Co-expression\",\"name\":\"Boldrick-Relman-2002\",\"weight\":0.012497804689359007},{\"group\":\"Predicted\",\"name\":\"I2D-vonMering-Bork-2002-High-Yeast2Human\",\"weight\":0.08260972953832166},{\"group\":\"Shared protein domains\",\"name\":\"INTERPRO\",\"weight\":0.037660450247227646},{\"group\":\"Predicted\",\"name\":\"I2D-Yu-Vidal-2008-GoldStd-Yeast2Human\",\"weight\":0.10890272340733954},{\"group\":\"Predicted\",\"name\":\"I2D-Krogan-Greenblatt-2006-Core-Yeast2Human\",\"weight\":0.09078863734632636},{\"group\":\"Predicted\",\"name\":\"I2D-BIND-Mouse2Human\",\"weight\":0.05507887303828558}]", "type": "genemania", "attribute_search_limit": 20, "organism": "H. sapiens", "selected": true, "__Annotations": [], "name": "H. sapiens (1)", "combining_method": "automatic", "data_version": "2013-10-15", "annotations": "[{\"name\":\"GO:0006310\",\"description\":\"DNA recombination\",\"qValue\":3.807166146987865E-40,\"sample\":23,\"total\":134},{\"name\":\"GO:0006281\",\"description\":\"DNA repair\",\"qValue\":2.9256714755984663E-30,\"sample\":22,\"total\":283},{\"name\":\"GO:0007131\",\"description\":\"reciprocal meiotic recombination\",\"qValue\":3.758570963819923E-26,\"sample\":13,\"total\":32},{\"name\":\"GO:0035825\",\"description\":\"reciprocal DNA recombination\",\"qValue\":3.758570963819923E-26,\"sample\":13,\"total\":32},{\"name\":\"GO:0051327\",\"description\":\"M phase of meiotic cell cycle\",\"qValue\":4.5961763932358935E-25,\"sample\":15,\"total\":81},{\"name\":\"GO:0007126\",\"description\":\"meiosis\",\"qValue\":4.5961763932358935E-25,\"sample\":15,\"total\":81},{\"name\":\"GO:0051321\",\"description\":\"meiotic cell cycle\",\"qValue\":4.817842748225099E-25,\"sample\":15,\"total\":82},{\"name\":\"GO:0007127\",\"description\":\"meiosis I\",\"qValue\":1.0294539910679028E-23,\"sample\":13,\"total\":48},{\"name\":\"GO:0043566\",\"description\":\"structure-specific DNA binding\",\"qValue\":8.73612488275016E-21,\"sample\":15,\"total\":154},{\"name\":\"GO:0008094\",\"description\":\"DNA-dependent ATPase activity\",\"qValue\":6.242716316472329E-18,\"sample\":11,\"total\":56},{\"name\":\"GO:0006302\",\"description\":\"double-strand break repair\",\"qValue\":2.7009293975524925E-17,\"sample\":12,\"total\":97},{\"name\":\"GO:0000724\",\"description\":\"double-strand break repair via homologous recombination\",\"qValue\":1.2256392241859756E-16,\"sample\":10,\"total\":46},{\"name\":\"GO:0000725\",\"description\":\"recombinational repair\",\"qValue\":1.2256392241859756E-16,\"sample\":10,\"total\":46},{\"name\":\"GO:0016887\",\"description\":\"ATPase activity\",\"qValue\":1.8073234395335116E-15,\"sample\":13,\"total\":196},{\"name\":\"GO:0006260\",\"description\":\"DNA replication\",\"qValue\":2.8641557109411272E-15,\"sample\":13,\"total\":204},{\"name\":\"GO:0003690\",\"description\":\"double-stranded DNA binding\",\"qValue\":6.2326068252733355E-15,\"sample\":11,\"total\":105},{\"name\":\"GO:0003697\",\"description\":\"single-stranded DNA binding\",\"qValue\":2.7593675675470102E-14,\"sample\":9,\"total\":47},{\"name\":\"GO:0042623\",\"description\":\"ATPase activity, coupled\",\"qValue\":2.7272935124120397E-13,\"sample\":11,\"total\":148},{\"name\":\"GO:0006312\",\"description\":\"mitotic recombination\",\"qValue\":2.812560077458189E-13,\"sample\":8,\"total\":34},{\"name\":\"GO:0006298\",\"description\":\"mismatch repair\",\"qValue\":3.853264875489922E-13,\"sample\":7,\"total\":18},{\"name\":\"GO:0000228\",\"description\":\"nuclear chromosome\",\"qValue\":5.70132407152189E-13,\"sample\":12,\"total\":229},{\"name\":\"GO:0000018\",\"description\":\"regulation of DNA recombination\",\"qValue\":9.680177135911131E-12,\"sample\":7,\"total\":27},{\"name\":\"GO:0006261\",\"description\":\"DNA-dependent DNA replication\",\"qValue\":1.0116643423508437E-11,\"sample\":9,\"total\":90},{\"name\":\"GO:0000723\",\"description\":\"telomere maintenance\",\"qValue\":2.2920042964379676E-11,\"sample\":8,\"total\":58},{\"name\":\"GO:0032200\",\"description\":\"telomere organization\",\"qValue\":2.542791857329261E-11,\"sample\":8,\"total\":59},{\"name\":\"GO:0010833\",\"description\":\"telomere maintenance via telomere lengthening\",\"qValue\":1.1502888027113759E-10,\"sample\":7,\"total\":38},{\"name\":\"GO:0051052\",\"description\":\"regulation of DNA metabolic process\",\"qValue\":1.1396537783925926E-9,\"sample\":9,\"total\":153},{\"name\":\"GO:0032404\",\"description\":\"mismatch repair complex binding\",\"qValue\":1.2757605075498273E-9,\"sample\":5,\"total\":10},{\"name\":\"GO:0060249\",\"description\":\"anatomical structure homeostasis\",\"qValue\":5.913718218004708E-9,\"sample\":8,\"total\":116},{\"name\":\"GO:0003678\",\"description\":\"DNA helicase activity\",\"qValue\":1.6930838078614553E-8,\"sample\":6,\"total\":38},{\"name\":\"GO:0051053\",\"description\":\"negative regulation of DNA metabolic process\",\"qValue\":9.307080640329071E-8,\"sample\":6,\"total\":50},{\"name\":\"GO:0032508\",\"description\":\"DNA duplex unwinding\",\"qValue\":1.853646624903095E-7,\"sample\":5,\"total\":24},{\"name\":\"GO:0032392\",\"description\":\"DNA geometric change\",\"qValue\":2.7756100577332525E-7,\"sample\":5,\"total\":26},{\"name\":\"GO:0016445\",\"description\":\"somatic diversification of immunoglobulins\",\"qValue\":3.302556464171889E-7,\"sample\":5,\"total\":27},{\"name\":\"GO:0044454\",\"description\":\"nuclear chromosome part\",\"qValue\":3.3125207634271384E-7,\"sample\":8,\"total\":196},{\"name\":\"GO:0004386\",\"description\":\"helicase activity\",\"qValue\":3.723322536542375E-7,\"sample\":6,\"total\":64},{\"name\":\"GO:0002200\",\"description\":\"somatic diversification of immune receptors\",\"qValue\":5.339156927811979E-7,\"sample\":5,\"total\":30},{\"name\":\"GO:0002377\",\"description\":\"immunoglobulin production\",\"qValue\":1.3661038923336387E-6,\"sample\":5,\"total\":36},{\"name\":\"GO:0000794\",\"description\":\"condensed nuclear chromosome\",\"qValue\":1.5373406084428686E-6,\"sample\":5,\"total\":37},{\"name\":\"GO:0000217\",\"description\":\"DNA secondary structure binding\",\"qValue\":1.8168381281395046E-6,\"sample\":4,\"total\":13},{\"name\":\"GO:0000781\",\"description\":\"chromosome, telomeric region\",\"qValue\":2.200113134302796E-6,\"sample\":5,\"total\":40},{\"name\":\"GO:0007004\",\"description\":\"telomere maintenance via telomerase\",\"qValue\":3.2193565338406233E-6,\"sample\":4,\"total\":15},{\"name\":\"GO:0000795\",\"description\":\"synaptonemal complex\",\"qValue\":3.2193565338406233E-6,\"sample\":4,\"total\":15},{\"name\":\"GO:0006278\",\"description\":\"RNA-dependent DNA replication\",\"qValue\":4.1902597202752475E-6,\"sample\":4,\"total\":16},{\"name\":\"GO:0032201\",\"description\":\"telomere maintenance via semi-conservative replication\",\"qValue\":2.3709281661856703E-5,\"sample\":4,\"total\":24},{\"name\":\"GO:0002440\",\"description\":\"production of molecular mediator of immune response\",\"qValue\":2.393881328806352E-5,\"sample\":5,\"total\":65},{\"name\":\"GO:0006200\",\"description\":\"ATP catabolic process\",\"qValue\":2.6763774408586137E-5,\"sample\":5,\"total\":67},{\"name\":\"GO:0004003\",\"description\":\"ATP-dependent DNA helicase activity\",\"qValue\":2.6763774408586137E-5,\"sample\":4,\"total\":25},{\"name\":\"GO:0000722\",\"description\":\"telomere maintenance via recombination\",\"qValue\":3.056616449754865E-5,\"sample\":4,\"total\":26},{\"name\":\"GO:0003684\",\"description\":\"damaged DNA binding\",\"qValue\":4.093402798321087E-5,\"sample\":4,\"total\":28},{\"name\":\"GO:0051329\",\"description\":\"interphase of mitotic cell cycle\",\"qValue\":5.090225225649074E-5,\"sample\":7,\"total\":258},{\"name\":\"GO:0051325\",\"description\":\"interphase\",\"qValue\":5.688217965249776E-5,\"sample\":7,\"total\":263},{\"name\":\"GO:0000793\",\"description\":\"condensed chromosome\",\"qValue\":6.734447394772544E-5,\"sample\":5,\"total\":82},{\"name\":\"GO:0006271\",\"description\":\"DNA strand elongation involved in DNA replication\",\"qValue\":8.372698396238842E-5,\"sample\":4,\"total\":34},{\"name\":\"GO:0046034\",\"description\":\"ATP metabolic process\",\"qValue\":8.372698396238842E-5,\"sample\":5,\"total\":86},{\"name\":\"GO:0022616\",\"description\":\"DNA strand elongation\",\"qValue\":1.1671829354628667E-4,\"sample\":4,\"total\":37},{\"name\":\"GO:0031954\",\"description\":\"positive regulation of protein autophosphorylation\",\"qValue\":1.489809748107438E-4,\"sample\":3,\"total\":10},{\"name\":\"GO:0004527\",\"description\":\"exonuclease activity\",\"qValue\":1.5542106332760495E-4,\"sample\":4,\"total\":40},{\"name\":\"GO:0070035\",\"description\":\"purine NTP-dependent helicase activity\",\"qValue\":2.0220434899935322E-4,\"sample\":4,\"total\":43},{\"name\":\"GO:0008026\",\"description\":\"ATP-dependent helicase activity\",\"qValue\":2.0220434899935322E-4,\"sample\":4,\"total\":43},{\"name\":\"GO:0071103\",\"description\":\"DNA conformation change\",\"qValue\":4.2511228059575307E-4,\"sample\":5,\"total\":122},{\"name\":\"GO:0000084\",\"description\":\"S phase of mitotic cell cycle\",\"qValue\":6.172001145099347E-4,\"sample\":5,\"total\":132},{\"name\":\"GO:0031952\",\"description\":\"regulation of protein autophosphorylation\",\"qValue\":7.580698029461453E-4,\"sample\":3,\"total\":17},{\"name\":\"GO:0051320\",\"description\":\"S phase\",\"qValue\":7.711559665362115E-4,\"sample\":5,\"total\":139},{\"name\":\"GO:0006297\",\"description\":\"nucleotide-excision repair, DNA gap filling\",\"qValue\":0.0010289224420521386,\"sample\":3,\"total\":19},{\"name\":\"GO:0004520\",\"description\":\"endodeoxyribonuclease activity\",\"qValue\":0.0010289224420521386,\"sample\":3,\"total\":19},{\"name\":\"GO:0006289\",\"description\":\"nucleotide-excision repair\",\"qValue\":0.0011622031876348871,\"sample\":4,\"total\":68},{\"name\":\"GO:0016447\",\"description\":\"somatic recombination of immunoglobulin gene segments\",\"qValue\":0.001367752602580714,\"sample\":3,\"total\":21},{\"name\":\"GO:0090329\",\"description\":\"regulation of DNA-dependent DNA replication\",\"qValue\":0.0017829271756617325,\"sample\":3,\"total\":23},{\"name\":\"GO:0032403\",\"description\":\"protein complex binding\",\"qValue\":0.0017829271756617325,\"sample\":5,\"total\":168},{\"name\":\"GO:0000784\",\"description\":\"nuclear chromosome, telomeric region\",\"qValue\":0.001987056090835658,\"sample\":3,\"total\":24},{\"name\":\"GO:0016444\",\"description\":\"somatic cell DNA recombination\",\"qValue\":0.002193784790234009,\"sample\":3,\"total\":25},{\"name\":\"GO:0002562\",\"description\":\"somatic diversification of immune receptors via germline recombination within a single locus\",\"qValue\":0.002193784790234009,\"sample\":3,\"total\":25},{\"name\":\"GO:0009314\",\"description\":\"response to radiation\",\"qValue\":0.002359111629204915,\"sample\":5,\"total\":180},{\"name\":\"GO:0008408\",\"description\":\"3'-5' exonuclease activity\",\"qValue\":0.0029916629934615335,\"sample\":3,\"total\":28},{\"name\":\"GO:0004536\",\"description\":\"deoxyribonuclease activity\",\"qValue\":0.0029916629934615335,\"sample\":3,\"total\":28},{\"name\":\"GO:0004518\",\"description\":\"nuclease activity\",\"qValue\":0.0030963079108476364,\"sample\":4,\"total\":90},{\"name\":\"GO:0006284\",\"description\":\"base-excision repair\",\"qValue\":0.005779838337158778,\"sample\":3,\"total\":35},{\"name\":\"GO:0000075\",\"description\":\"cell cycle checkpoint\",\"qValue\":0.007205949108435607,\"sample\":5,\"total\":230},{\"name\":\"GO:0007059\",\"description\":\"chromosome segregation\",\"qValue\":0.008676114873487191,\"sample\":4,\"total\":118},{\"name\":\"GO:0000077\",\"description\":\"DNA damage checkpoint\",\"qValue\":0.011017617183037254,\"sample\":4,\"total\":126},{\"name\":\"GO:0004519\",\"description\":\"endonuclease activity\",\"qValue\":0.011017617183037254,\"sample\":3,\"total\":44},{\"name\":\"GO:0006283\",\"description\":\"transcription-coupled nucleotide-excision repair\",\"qValue\":0.01164978843932823,\"sample\":3,\"total\":45},{\"name\":\"GO:0031570\",\"description\":\"DNA integrity checkpoint\",\"qValue\":0.012809640262329738,\"sample\":4,\"total\":132},{\"name\":\"GO:0007129\",\"description\":\"synapsis\",\"qValue\":0.025114510123394784,\"sample\":2,\"total\":10},{\"name\":\"GO:0010212\",\"description\":\"response to ionizing radiation\",\"qValue\":0.025372295509559533,\"sample\":3,\"total\":59},{\"name\":\"GO:0070192\",\"description\":\"chromosome organization involved in meiosis\",\"qValue\":0.029619620466778355,\"sample\":2,\"total\":11},{\"name\":\"GO:2000104\",\"description\":\"negative regulation of DNA-dependent DNA replication\",\"qValue\":0.029619620466778355,\"sample\":2,\"total\":11},{\"name\":\"GO:0045132\",\"description\":\"meiotic chromosome segregation\",\"qValue\":0.03510926897278407,\"sample\":2,\"total\":12},{\"name\":\"GO:0006301\",\"description\":\"postreplication repair\",\"qValue\":0.040540536490272054,\"sample\":2,\"total\":13},{\"name\":\"GO:0010165\",\"description\":\"response to X-ray\",\"qValue\":0.040540536490272054,\"sample\":2,\"total\":13},{\"name\":\"GO:0009411\",\"description\":\"response to UV\",\"qValue\":0.04842157168706076,\"sample\":3,\"total\":75},{\"name\":\"GO:0006275\",\"description\":\"regulation of DNA replication\",\"qValue\":0.051779424032152556,\"sample\":3,\"total\":77},{\"name\":\"GO:0002208\",\"description\":\"somatic diversification of immunoglobulins involved in immune response\",\"qValue\":0.07423328058710903,\"sample\":2,\"total\":18},{\"name\":\"GO:0002204\",\"description\":\"somatic recombination of immunoglobulin genes involved in immune response\",\"qValue\":0.07423328058710903,\"sample\":2,\"total\":18},{\"name\":\"GO:0045190\",\"description\":\"isotype switching\",\"qValue\":0.07423328058710903,\"sample\":2,\"total\":18},{\"name\":\"GO:0043531\",\"description\":\"ADP binding\",\"qValue\":0.07423328058710903,\"sample\":2,\"total\":18},{\"name\":\"GO:0002312\",\"description\":\"B cell activation involved in immune response\",\"qValue\":0.09106339014997165,\"sample\":2,\"total\":20},{\"name\":\"GO:0002381\",\"description\":\"immunoglobulin production involved in immunoglobulin mediated immune response\",\"qValue\":0.09953346229028079,\"sample\":2,\"total\":21}]", "shared_name": "H. sapiens (1)", "search_limit": 20 }, "elements": { "nodes": [{ "data": { "id": "296", "Ensembl_Protein_ID": "ENSP00000451684", "Synonym": "NY-REN-28", "RefSeq_Protein_ID": "NP_005457", "SUID": 296, "score": 0.02800562173812221, "node_type": "result", "log_score": -3.5753500125983018, "Uniprot_ID": "O75586", "selected": false, "gene_name": "MED6", "name": "H__sapiens__1_-Hs:5285773", "Entrez_Gene_ID": "10001", "RefSeq_mRNA_ID": "NM_005466", "shared_name": "H__sapiens__1_-Hs:5285773", "Ensembl_Gene_ID": "ENSG00000133997" }, "position": { "x": 147.454345703125, "y": -30.69869613647461 }, "selected": false }, { "data": { "id": "262", "Ensembl_Protein_ID": "ENSP00000435414", "SUID": 262, "score": 0.031065063726824715, "node_type": "result", "log_score": -3.471671444065889, "selected": false, "gene_name": "MSH5-C6orf26", "name": "H__sapiens__1_-Hs:5329805", "shared_name": "H__sapiens__1_-Hs:5329805", "Ensembl_Gene_ID": "ENSG00000255152" }, "position": { "x": -161.0561981201172, "y": -115.74526977539062 }, "selected": false }, { "data": { "id": "208", "Ensembl_Protein_ID": "ENSP00000445137", "Synonym": "RAD9", "RefSeq_Protein_ID": "NP_004575", "SUID": 208, "score": 0.029009564995904125, "annotation_name": ["cell cycle checkpoint", "DNA integrity checkpoint", "response to ionizing radiation", "interphase", "DNA damage checkpoint", "DNA replication", "interphase of mitotic cell cycle", "3'-5' exonuclease activity", "nuclease activity", "exonuclease activity", "response to radiation"], "node_type": "result", "log_score": -3.5401296759318077, "Uniprot_ID": "RAD9A_HUMAN", "selected": false, "gene_name": "RAD9A", "name": "H__sapiens__1_-Hs:5292421", "Entrez_Gene_ID": "5883", "RefSeq_mRNA_ID": "NM_004584", "annotations": ["GO:0000075", "GO:0031570", "GO:0010212", "GO:0051325", "GO:0000077", "GO:0006260", "GO:0051329", "GO:0008408", "GO:0004518", "GO:0004527", "GO:0009314"], "shared_name": "H__sapiens__1_-Hs:5292421", "Ensembl_Gene_ID": "ENSG00000172613" }, "position": { "x": 119.98678588867188, "y": -76.49085235595703 }, "selected": false }, { "data": { "id": "166", "Ensembl_Protein_ID": "ENSP00000445774", "Synonym": "RDH54", "RefSeq_Protein_ID": "NP_036547", "SUID": 166, "score": 0.024791957200763937, "annotation_name": ["ATPase activity", "mitotic recombination", "DNA helicase activity", "ATPase activity, coupled", "double-strand break repair via homologous recombination", "DNA recombination", "DNA geometric change", "helicase activity", "recombinational repair", "reciprocal meiotic recombination", "DNA duplex unwinding", "meiosis I", "M phase of meiotic cell cycle", "meiosis", "DNA-dependent ATPase activity", "reciprocal DNA recombination", "meiotic cell cycle", "DNA repair", "DNA conformation change", "double-strand break repair"], "node_type": "result", "log_score": -3.697235984830709, "Uniprot_ID": "RA54B_HUMAN", "selected": false, "gene_name": "RAD54B", "name": "H__sapiens__1_-Hs:5296680", "Entrez_Gene_ID": "25788", "RefSeq_mRNA_ID": "NM_134434", "annotations": ["GO:0016887", "GO:0006312", "GO:0003678", "GO:0042623", "GO:0000724", "GO:0006310", "GO:0032392", "GO:0004386", "GO:0000725", "GO:0007131", "GO:0032508", "GO:0007127", "GO:0051327", "GO:0007126", "GO:0008094", "GO:0035825", "GO:0051321", "GO:0006281", "GO:0071103", "GO:0006302"], "shared_name": "H__sapiens__1_-Hs:5296680", "Ensembl_Gene_ID": "ENSG00000197275" }, "position": { "x": -88.20189666748047, "y": 98.33895111083984 }, "selected": false }, { "data": { "id": "162", "Ensembl_Protein_ID": "ENSP00000451673", "Synonym": "MUTSH5", "RefSeq_Protein_ID": "NP_751898", "SUID": 162, "score": 0.03973052220183665, "annotation_name": ["synaptonemal complex", "ATPase activity", "mismatch repair", "chromosome organization involved in meiosis", "ATPase activity, coupled", "double-stranded DNA binding", "DNA recombination", "nuclear chromosome", "reciprocal meiotic recombination", "condensed nuclear chromosome", "meiosis I", "chromosome segregation", "structure-specific DNA binding", "M phase of meiotic cell cycle", "meiosis", "DNA-dependent ATPase activity", "meiotic chromosome segregation", "synapsis", "reciprocal DNA recombination", "meiotic cell cycle", "DNA repair", "condensed chromosome", "nuclear chromosome part"], "node_type": "result", "log_score": -3.225635565475669, "Uniprot_ID": "O43196", "selected": false, "gene_name": "MSH5", "name": "H__sapiens__1_-Hs:5299500", "Entrez_Gene_ID": "4439", "RefSeq_mRNA_ID": "NM_172166", "annotations": ["GO:0000795", "GO:0016887", "GO:0006298", "GO:0070192", "GO:0042623", "GO:0003690", "GO:0006310", "GO:0000228", "GO:0007131", "GO:0000794", "GO:0007127", "GO:0007059", "GO:0043566", "GO:0051327", "GO:0007126", "GO:0008094", "GO:0045132", "GO:0007129", "GO:0035825", "GO:0051321", "GO:0006281", "GO:0000793", "GO:0044454"], "shared_name": "H__sapiens__1_-Hs:5299500", "Ensembl_Gene_ID": "ENSG00000237333" }, "position": { "x": -176.98680114746094, "y": -40.90724182128906 }, "selected": false }, { "data": { "id": "156", "Ensembl_Protein_ID": "ENSP00000445213", "Synonym": "P95", "RefSeq_Protein_ID": "NP_002476", "SUID": 156, "score": 0.05180973286083873, "annotation_name": ["ATPase activity", "DNA integrity checkpoint", "telomere organization", "ATP-dependent DNA helicase activity", "regulation of DNA metabolic process", "DNA helicase activity", "regulation of protein autophosphorylation", "ATPase activity, coupled", "ATP-dependent helicase activity", "regulation of DNA-dependent DNA replication", "DNA geometric change", "helicase activity", "DNA-dependent DNA replication", "DNA repair", "purine NTP-dependent helicase activity", "nuclear chromosome part", "cell cycle checkpoint", "DNA recombination", "regulation of DNA replication", "double-strand break repair via homologous recombination", "DNA damage checkpoint", "recombinational repair", "nuclear chromosome", "DNA duplex unwinding", "anatomical structure homeostasis", "DNA-dependent ATPase activity", "nuclear chromosome, telomeric region", "DNA replication", "DNA conformation change", "double-strand break repair", "telomere maintenance", "positive regulation of protein autophosphorylation", "damaged DNA binding", "chromosome, telomeric region"], "node_type": "result", "log_score": -2.9601772543000062, "Uniprot_ID": "O60934", "selected": false, "gene_name": "NBN", "name": "H__sapiens__1_-Hs:5281807", "Entrez_Gene_ID": "4683", "RefSeq_mRNA_ID": "NM_002485", "annotations": ["GO:0016887", "GO:0031570", "GO:0032200", "GO:0004003", "GO:0051052", "GO:0003678", "GO:0031952", "GO:0042623", "GO:0008026", "GO:0090329", "GO:0032392", "GO:0004386", "GO:0006261", "GO:0006281", "GO:0070035", "GO:0044454", "GO:0000075", "GO:0006310", "GO:0006275", "GO:0000724", "GO:0000077", "GO:0000725", "GO:0000228", "GO:0032508", "GO:0060249", "GO:0008094", "GO:0000784", "GO:0006260", "GO:0071103", "GO:0006302", "GO:0000723", "GO:0031954", "GO:0003684", "GO:0000781"], "shared_name": "H__sapiens__1_-Hs:5281807", "Ensembl_Gene_ID": "ENSG00000104320" }, "position": { "x": -12.864280343055725, "y": -119.2969970703125 }, "selected": false }, { "data": { "id": "154", "Ensembl_Protein_ID": "ENSP00000392843", "Synonym": "PMSL2", "RefSeq_Protein_ID": "NP_000526", "SUID": 154, "score": 0.07624349196342234, "annotation_name": ["single-stranded DNA binding", "ATPase activity", "production of molecular mediator of immune response", "mismatch repair", "immunoglobulin production", "DNA recombination", "double-stranded DNA binding", "somatic diversification of immunoglobulins", "reciprocal meiotic recombination", "mismatch repair complex binding", "meiosis I", "somatic diversification of immune receptors", "structure-specific DNA binding", "M phase of meiotic cell cycle", "protein complex binding", "meiosis", "reciprocal DNA recombination", "meiotic cell cycle", "DNA repair", "ATP catabolic process", "ATP metabolic process"], "node_type": "result", "log_score": -2.5738232184366248, "Uniprot_ID": "Q68D20", "selected": false, "gene_name": "PMS2", "name": "H__sapiens__1_-Hs:5284210", "Entrez_Gene_ID": "5395", "RefSeq_mRNA_ID": "NR_003085", "annotations": ["GO:0003697", "GO:0016887", "GO:0002440", "GO:0006298", "GO:0002377", "GO:0006310", "GO:0003690", "GO:0016445", "GO:0007131", "GO:0032404", "GO:0007127", "GO:0002200", "GO:0043566", "GO:0051327", "GO:0032403", "GO:0007126", "GO:0035825", "GO:0051321", "GO:0006281", "GO:0006200", "GO:0046034"], "shared_name": "H__sapiens__1_-Hs:5284210", "Ensembl_Gene_ID": "ENSG00000122512" }, "position": { "x": -100.9500732421875, "y": -29.909954071044922 }, "selected": false }, { "data": { "id": "142", "Ensembl_Protein_ID": "ENSP00000431225", "Synonym": "RAD502", "RefSeq_Protein_ID": "NP_005723", "SUID": 142, "score": 0.6987923997949083, "annotation_name": ["ATPase activity", "telomere maintenance via telomere lengthening", "ATP-dependent DNA helicase activity", "telomere organization", "regulation of DNA metabolic process", "mitotic recombination", "DNA helicase activity", "regulation of protein autophosphorylation", "ATPase activity, coupled", "ATP-dependent helicase activity", "3'-5' exonuclease activity", "nuclease activity", "DNA geometric change", "helicase activity", "reciprocal meiotic recombination", "meiotic cell cycle", "DNA repair", "purine NTP-dependent helicase activity", "nuclear chromosome part", "RNA-dependent DNA replication", "endodeoxyribonuclease activity", "double-strand break repair via homologous recombination", "DNA recombination", "endonuclease activity", "recombinational repair", "nuclear chromosome", "DNA duplex unwinding", "meiosis I", "anatomical structure homeostasis", "telomere maintenance via telomerase", "deoxyribonuclease activity", "M phase of meiotic cell cycle", "DNA-dependent ATPase activity", "meiosis", "nuclear chromosome, telomeric region", "reciprocal DNA recombination", "DNA replication", "DNA conformation change", "double-strand break repair", "positive regulation of protein autophosphorylation", "telomere maintenance", "regulation of DNA recombination", "exonuclease activity", "chromosome, telomeric region"], "node_type": "query", "log_score": -0.3584015768619354, "Uniprot_ID": "RAD50_HUMAN", "selected": false, "gene_name": "RAD50", "name": "H__sapiens__1_-Hs:5283121", "Entrez_Gene_ID": "10111", "RefSeq_mRNA_ID": "NM_133482", "annotations": ["GO:0016887", "GO:0010833", "GO:0004003", "GO:0032200", "GO:0051052", "GO:0006312", "GO:0003678", "GO:0031952", "GO:0042623", "GO:0008026", "GO:0008408", "GO:0004518", "GO:0032392", "GO:0004386", "GO:0007131", "GO:0051321", "GO:0006281", "GO:0070035", "GO:0044454", "GO:0006278", "GO:0004520", "GO:0000724", "GO:0006310", "GO:0004519", "GO:0000725", "GO:0000228", "GO:0032508", "GO:0007127", "GO:0060249", "GO:0007004", "GO:0004536", "GO:0051327", "GO:0008094", "GO:0007126", "GO:0000784", "GO:0035825", "GO:0006260", "GO:0071103", "GO:0006302", "GO:0031954", "GO:0000723", "GO:0000018", "GO:0004527", "GO:0000781"], "shared_name": "H__sapiens__1_-Hs:5283121", "Ensembl_Gene_ID": "ENSG00000113522" }, "position": { "x": -132.26124572753906, "y": -69.47577667236328 }, "selected": false }, { "data": { "id": "141", "Ensembl_Protein_ID": "ENSP00000440204", "RefSeq_Protein_ID": "NP_002430", "SUID": 141, "score": 0.0874266227357044, "annotation_name": ["ATPase activity", "single-stranded DNA binding", "production of molecular mediator of immune response", "regulation of DNA metabolic process", "mismatch repair", "immunoglobulin production", "ATPase activity, coupled", "reciprocal meiotic recombination", "somatic recombination of immunoglobulin gene segments", "somatic cell DNA recombination", "meiotic cell cycle", "DNA repair", "somatic diversification of immune receptors via germline recombination within a single locus", "negative regulation of DNA metabolic process", "DNA recombination", "double-stranded DNA binding", "somatic diversification of immunoglobulins", "nuclear chromosome", "meiosis I", "somatic diversification of immune receptors", "structure-specific DNA binding", "DNA-dependent ATPase activity", "meiosis", "M phase of meiotic cell cycle", "reciprocal DNA recombination", "regulation of DNA recombination", "DNA secondary structure binding"], "node_type": "result", "log_score": -2.4369554347442284, "Uniprot_ID": "P20585", "selected": false, "gene_name": "MSH3", "name": "H__sapiens__1_-Hs:5283097", "Entrez_Gene_ID": "4437", "RefSeq_mRNA_ID": "NM_002439", "annotations": ["GO:0016887", "GO:0003697", "GO:0002440", "GO:0051052", "GO:0006298", "GO:0002377", "GO:0042623", "GO:0007131", "GO:0016447", "GO:0016444", "GO:0051321", "GO:0006281", "GO:0002562", "GO:0051053", "GO:0006310", "GO:0003690", "GO:0016445", "GO:0000228", "GO:0007127", "GO:0002200", "GO:0043566", "GO:0008094", "GO:0007126", "GO:0051327", "GO:0035825", "GO:0000018", "GO:0000217"], "shared_name": "H__sapiens__1_-Hs:5283097", "Ensembl_Gene_ID": "ENSG00000113318" }, "position": { "x": -48.97200965881348, "y": -133.3314666748047 }, "selected": false }, { "data": { "id": "133", "Ensembl_Protein_ID": "ENSP00000388271", "Synonym": "FLJ40346", "RefSeq_Protein_ID": "NP_689655", "SUID": 133, "score": 0.03172627425415109, "annotation_name": ["cell cycle checkpoint", "DNA replication"], "node_type": "result", "log_score": -3.4506101005728227, "Uniprot_ID": "RAD9B_HUMAN", "selected": false, "gene_name": "RAD9B", "name": "H__sapiens__1_-Hs:5288367", "Entrez_Gene_ID": "144715", "RefSeq_mRNA_ID": "NM_152442", "annotations": ["GO:0000075", "GO:0006260"], "shared_name": "H__sapiens__1_-Hs:5288367", "Ensembl_Gene_ID": "ENSG00000151164" }, "position": { "x": 198.31019592285156, "y": -4.760814666748047 }, "selected": false }, { "data": { "id": "128", "Ensembl_Protein_ID": "ENSP00000352271", "RefSeq_Protein_ID": "NP_005422", "SUID": 128, "score": 0.7948445125510166, "annotation_name": ["M phase of meiotic cell cycle", "meiosis", "DNA repair", "meiotic cell cycle"], "node_type": "query", "log_score": -0.22960876515323383, "Uniprot_ID": "XRCC2_HUMAN", "selected": false, "gene_name": "XRCC2", "name": "H__sapiens__1_-Hs:5296442", "Entrez_Gene_ID": "7516", "RefSeq_mRNA_ID": "NM_005431", "annotations": ["GO:0051327", "GO:0007126", "GO:0006281", "GO:0051321"], "shared_name": "H__sapiens__1_-Hs:5296442", "Ensembl_Gene_ID": "ENSG00000196584" }, "position": { "x": 117.16448974609375, "y": 93.37422943115234 }, "selected": false }, { "data": { "id": "125", "Ensembl_Protein_ID": "ENSP00000442809", "Synonym": "MRE11B", "RefSeq_Protein_ID": "NP_005582", "SUID": 125, "score": 0.6483830644948494, "annotation_name": ["ATPase activity", "mitotic recombination", "ATPase activity, coupled", "regulation of protein autophosphorylation", "3'-5' exonuclease activity", "helicase activity", "reciprocal meiotic recombination", "DNA-dependent DNA replication", "purine NTP-dependent helicase activity", "negative regulation of DNA-dependent DNA replication", "regulation of DNA replication", "DNA recombination", "double-strand break repair via homologous recombination", "double-stranded DNA binding", "endonuclease activity", "recombinational repair", "DNA duplex unwinding", "DNA-dependent ATPase activity", "reciprocal DNA recombination", "DNA conformation change", "telomere maintenance via telomere lengthening", "telomere organization", "ATP-dependent DNA helicase activity", "regulation of DNA metabolic process", "DNA helicase activity", "ATP-dependent helicase activity", "nuclease activity", "DNA geometric change", "regulation of DNA-dependent DNA replication", "chromosome segregation", "meiotic cell cycle", "DNA repair", "RNA-dependent DNA replication", "negative regulation of DNA metabolic process", "endodeoxyribonuclease activity", "meiosis I", "anatomical structure homeostasis", "telomere maintenance via telomerase", "deoxyribonuclease activity", "meiosis", "M phase of meiotic cell cycle", "structure-specific DNA binding", "DNA replication", "telomere maintenance", "positive regulation of protein autophosphorylation", "double-strand break repair", "regulation of DNA recombination", "exonuclease activity", "chromosome, telomeric region"], "node_type": "query", "log_score": -0.4332736083777458, "Uniprot_ID": "P49959", "selected": false, "gene_name": "MRE11A", "name": "H__sapiens__1_-Hs:5279290", "Entrez_Gene_ID": "4361", "RefSeq_mRNA_ID": "NM_005591", "annotations": ["GO:0016887", "GO:0006312", "GO:0042623", "GO:0031952", "GO:0008408", "GO:0004386", "GO:0007131", "GO:0006261", "GO:0070035", "GO:2000104", "GO:0006275", "GO:0006310", "GO:0000724", "GO:0003690", "GO:0004519", "GO:0000725", "GO:0032508", "GO:0008094", "GO:0035825", "GO:0071103", "GO:0010833", "GO:0032200", "GO:0004003", "GO:0051052", "GO:0003678", "GO:0008026", "GO:0004518", "GO:0032392", "GO:0090329", "GO:0007059", "GO:0051321", "GO:0006281", "GO:0006278", "GO:0051053", "GO:0004520", "GO:0007127", "GO:0060249", "GO:0007004", "GO:0004536", "GO:0007126", "GO:0051327", "GO:0043566", "GO:0006260", "GO:0000723", "GO:0031954", "GO:0006302", "GO:0000018", "GO:0004527", "GO:0000781"], "shared_name": "H__sapiens__1_-Hs:5279290", "Ensembl_Gene_ID": "ENSG00000020922" }, "position": { "x": -80.51427459716797, "y": -1.4280643463134766 }, "selected": false }, { "data": { "id": "122", "Ensembl_Protein_ID": "ENSP00000359248", "Synonym": "TWINL", "RefSeq_Protein_ID": "NP_068602", "SUID": 122, "score": 0.020852658650639955, "annotation_name": ["single-stranded DNA binding", "DNA-dependent DNA replication", "DNA helicase activity", "structure-specific DNA binding", "DNA replication", "helicase activity"], "node_type": "result", "log_score": -3.8702738256463043, "Uniprot_ID": "Q96RR1", "selected": false, "gene_name": "C10orf2", "name": "H__sapiens__1_-Hs:5282366", "Entrez_Gene_ID": "56652", "RefSeq_mRNA_ID": "NM_021830", "annotations": ["GO:0003697", "GO:0006261", "GO:0003678", "GO:0043566", "GO:0006260", "GO:0004386"], "shared_name": "H__sapiens__1_-Hs:5282366", "Ensembl_Gene_ID": "ENSG00000107815" }, "position": { "x": 97.42328643798828, "y": -7.794933319091797 }, "selected": false }, { "data": { "id": "109", "Ensembl_Protein_ID": "ENSP00000412703", "Synonym": "LIM15", "RefSeq_Protein_ID": "NP_008999", "SUID": 109, "score": 0.7462579847077966, "annotation_name": ["M phase of meiotic cell cycle", "meiosis", "meiotic cell cycle"], "node_type": "query", "log_score": -0.29268391455662557, "Uniprot_ID": "Q14565", "selected": false, "gene_name": "DMC1", "name": "H__sapiens__1_-Hs:5281121", "Entrez_Gene_ID": "11144", "RefSeq_mRNA_ID": "NM_007068", "annotations": ["GO:0051327", "GO:0007126", "GO:0051321"], "shared_name": "H__sapiens__1_-Hs:5281121", "Ensembl_Gene_ID": "ENSG00000100206" }, "position": { "x": 1.048654556274414, "y": 128.44871520996094 }, "selected": false }, { "data": { "id": "108", "Ensembl_Protein_ID": "ENSP00000263187", "RefSeq_Protein_ID": "NP_002431", "SUID": 108, "score": 0.036787303163713814, "annotation_name": ["synaptonemal complex", "ATPase activity", "chromosome organization involved in meiosis", "ATPase activity, coupled", "double-stranded DNA binding", "DNA recombination", "nuclear chromosome", "reciprocal meiotic recombination", "condensed nuclear chromosome", "meiosis I", "chromosome segregation", "structure-specific DNA binding", "M phase of meiotic cell cycle", "meiosis", "DNA-dependent ATPase activity", "meiotic chromosome segregation", "synapsis", "reciprocal DNA recombination", "meiotic cell cycle", "condensed chromosome", "nuclear chromosome part"], "node_type": "result", "log_score": -3.3026025160664543, "Uniprot_ID": "O15457", "selected": false, "gene_name": "MSH4", "name": "H__sapiens__1_-Hs:5279663", "Entrez_Gene_ID": "4438", "RefSeq_mRNA_ID": "NM_002440", "annotations": ["GO:0000795", "GO:0016887", "GO:0070192", "GO:0042623", "GO:0003690", "GO:0006310", "GO:0000228", "GO:0007131", "GO:0000794", "GO:0007127", "GO:0007059", "GO:0043566", "GO:0051327", "GO:0007126", "GO:0008094", "GO:0045132", "GO:0007129", "GO:0035825", "GO:0051321", "GO:0000793", "GO:0044454"], "shared_name": "H__sapiens__1_-Hs:5279663", "Ensembl_Gene_ID": "ENSG00000057468" }, "position": { "x": -114.48504638671875, "y": 27.989185333251953 }, "selected": false }, { "data": { "id": "103", "Ensembl_Protein_ID": "ENSP00000300086", "Synonym": "DRIP5", "RefSeq_Protein_ID": "NP_061848", "SUID": 103, "score": 0.02655796216160833, "annotation_name": ["RNA-dependent DNA replication", "telomere maintenance via telomere lengthening", "negative regulation of DNA metabolic process", "telomere organization", "regulation of DNA metabolic process", "DNA recombination", "double-strand break repair via homologous recombination", "recombinational repair", "nuclear chromosome", "anatomical structure homeostasis", "telomere maintenance via telomerase", "nuclear chromosome, telomeric region", "DNA replication", "DNA repair", "double-strand break repair", "telomere maintenance", "regulation of DNA recombination", "nuclear chromosome part", "chromosome, telomeric region"], "node_type": "result", "log_score": -3.628425683160542, "Uniprot_ID": "TE2IP_HUMAN", "selected": false, "gene_name": "TERF2IP", "name": "H__sapiens__1_-Hs:5290990", "Entrez_Gene_ID": "54386", "RefSeq_mRNA_ID": "NM_018975", "annotations": ["GO:0006278", "GO:0010833", "GO:0051053", "GO:0032200", "GO:0051052", "GO:0006310", "GO:0000724", "GO:0000725", "GO:0000228", "GO:0060249", "GO:0007004", "GO:0000784", "GO:0006260", "GO:0006281", "GO:0006302", "GO:0000723", "GO:0000018", "GO:0044454", "GO:0000781"], "shared_name": "H__sapiens__1_-Hs:5290990", "Ensembl_Gene_ID": "ENSG00000166848" }, "position": { "x": -95.1511459350586, "y": -147.44349670410156 }, "selected": false }, { "data": { "id": "97", "Ensembl_Protein_ID": "ENSP00000415269", "Synonym": "RAD51L3", "RefSeq_Protein_ID": "NP_598332", "SUID": 97, "score": 0.06510727191482668, "annotation_name": ["M phase of meiotic cell cycle", "DNA recombination", "meiosis", "reciprocal DNA recombination", "meiotic cell cycle", "reciprocal meiotic recombination", "meiosis I"], "node_type": "result", "log_score": -2.7317190322452354, "Uniprot_ID": "RA51D_HUMAN", "selected": false, "gene_name": "RAD51D", "name": "H__sapiens__1_-Hs:5295186", "Entrez_Gene_ID": "5892", "RefSeq_mRNA_ID": "NR_037712", "annotations": ["GO:0051327", "GO:0006310", "GO:0007126", "GO:0035825", "GO:0051321", "GO:0007131", "GO:0007127"], "shared_name": "H__sapiens__1_-Hs:5295186", "Ensembl_Gene_ID": "ENSG00000185379" }, "position": { "x": 124.0413703918457, "y": 42.23262023925781 }, "selected": false }, { "data": { "id": "94", "Ensembl_Protein_ID": "ENSP00000452598", "Synonym": "CMM6", "RefSeq_Protein_ID": "NP_005423", "SUID": 94, "score": 0.7937566152061811, "annotation_name": ["DNA repair"], "node_type": "query", "log_score": -0.23097839469194076, "Uniprot_ID": "XRCC3_HUMAN", "selected": false, "gene_name": "XRCC3", "name": "H__sapiens__1_-Hs:5284736", "Entrez_Gene_ID": "7517", "RefSeq_mRNA_ID": "NM_005432", "annotations": ["GO:0006281"], "shared_name": "H__sapiens__1_-Hs:5284736", "Ensembl_Gene_ID": "ENSG00000126215" }, "position": { "x": 129.40452575683594, "y": 158.3949737548828 }, "selected": false }, { "data": { "id": "87", "Ensembl_Protein_ID": "ENSP00000454176", "Synonym": "RECA", "RefSeq_Protein_ID": "NP_597994", "SUID": 87, "score": 0.6057669967129662, "annotation_name": ["ATPase activity", "single-stranded DNA binding", "mitotic recombination", "regulation of DNA metabolic process", "ATPase activity, coupled", "DNA geometric change", "reciprocal meiotic recombination", "DNA-dependent DNA replication", "DNA repair", "meiotic cell cycle", "condensed chromosome", "DNA recombination", "double-strand break repair via homologous recombination", "double-stranded DNA binding", "recombinational repair", "nuclear chromosome", "meiosis I", "DNA duplex unwinding", "condensed nuclear chromosome", "structure-specific DNA binding", "DNA-dependent ATPase activity", "meiosis", "M phase of meiotic cell cycle", "DNA replication", "reciprocal DNA recombination", "DNA conformation change", "double-strand break repair"], "node_type": "query", "log_score": -0.5012598607225376, "Uniprot_ID": "RAD51_HUMAN", "selected": false, "gene_name": "RAD51", "name": "H__sapiens__1_-Hs:5279580", "Entrez_Gene_ID": "5888", "RefSeq_mRNA_ID": "NM_133487", "annotations": ["GO:0016887", "GO:0003697", "GO:0006312", "GO:0051052", "GO:0042623", "GO:0032392", "GO:0007131", "GO:0006261", "GO:0006281", "GO:0051321", "GO:0000793", "GO:0006310", "GO:0000724", "GO:0003690", "GO:0000725", "GO:0000228", "GO:0007127", "GO:0032508", "GO:0000794", "GO:0043566", "GO:0008094", "GO:0007126", "GO:0051327", "GO:0006260", "GO:0035825", "GO:0071103", "GO:0006302"], "shared_name": "H__sapiens__1_-Hs:5279580", "Ensembl_Gene_ID": "ENSG00000051180" }, "position": { "x": 26.319435119628906, "y": 90.4759750366211 }, "selected": false }, { "data": { "id": "86", "Ensembl_Protein_ID": "ENSP00000454158", "Synonym": "RECQ2", "RefSeq_Protein_ID": "NP_000048", "SUID": 86, "score": 0.028910432785594575, "annotation_name": ["single-stranded DNA binding", "synaptonemal complex", "ATPase activity", "DNA integrity checkpoint", "ATP-dependent DNA helicase activity", "regulation of DNA metabolic process", "DNA helicase activity", "interphase", "ATPase activity, coupled", "ATP-dependent helicase activity", "regulation of DNA-dependent DNA replication", "helicase activity", "DNA-dependent DNA replication", "DNA repair", "condensed chromosome", "purine NTP-dependent helicase activity", "response to radiation", "nuclear chromosome part", "cell cycle checkpoint", "negative regulation of DNA metabolic process", "negative regulation of DNA-dependent DNA replication", "response to ionizing radiation", "DNA recombination", "regulation of DNA replication", "double-strand break repair via homologous recombination", "response to X-ray", "DNA damage checkpoint", "recombinational repair", "nuclear chromosome", "condensed nuclear chromosome", "structure-specific DNA binding", "DNA-dependent ATPase activity", "DNA replication", "interphase of mitotic cell cycle", "double-strand break repair", "ATP catabolic process", "ATP metabolic process", "regulation of DNA recombination", "DNA secondary structure binding", "chromosome, telomeric region"], "node_type": "result", "log_score": -3.5435527529658097, "Uniprot_ID": "P54132", "selected": false, "gene_name": "BLM", "name": "H__sapiens__1_-Hs:5296686", "Entrez_Gene_ID": "641", "RefSeq_mRNA_ID": "NM_000057", "annotations": ["GO:0003697", "GO:0000795", "GO:0016887", "GO:0031570", "GO:0004003", "GO:0051052", "GO:0003678", "GO:0051325", "GO:0042623", "GO:0008026", "GO:0090329", "GO:0004386", "GO:0006261", "GO:0006281", "GO:0000793", "GO:0070035", "GO:0009314", "GO:0044454", "GO:0000075", "GO:0051053", "GO:2000104", "GO:0010212", "GO:0006310", "GO:0006275", "GO:0000724", "GO:0010165", "GO:0000077", "GO:0000725", "GO:0000228", "GO:0000794", "GO:0043566", "GO:0008094", "GO:0006260", "GO:0051329", "GO:0006302", "GO:0006200", "GO:0046034", "GO:0000018", "GO:0000217", "GO:0000781"], "shared_name": "H__sapiens__1_-Hs:5296686", "Ensembl_Gene_ID": "ENSG00000197299" }, "position": { "x": 26.21961212158203, "y": -0.08269882202148438 }, "selected": false }, { "data": { "id": "83", "Ensembl_Protein_ID": "ENSP00000439902", "Synonym": "PNCA2", "RefSeq_Protein_ID": "NP_000050", "SUID": 83, "score": 0.04374048590508528, "annotation_name": ["single-stranded DNA binding", "S phase of mitotic cell cycle", "structure-specific DNA binding", "interphase", "double-strand break repair via homologous recombination", "DNA recombination", "interphase of mitotic cell cycle", "DNA repair", "double-strand break repair", "S phase", "recombinational repair", "nucleotide-excision repair"], "node_type": "result", "log_score": -3.1294811548540835, "Uniprot_ID": "P51587", "selected": false, "gene_name": "BRCA2", "name": "H__sapiens__1_-Hs:5286824", "Entrez_Gene_ID": "675", "RefSeq_mRNA_ID": "NM_000059", "annotations": ["GO:0003697", "GO:0000084", "GO:0043566", "GO:0051325", "GO:0000724", "GO:0006310", "GO:0051329", "GO:0006281", "GO:0006302", "GO:0051320", "GO:0000725", "GO:0006289"], "shared_name": "H__sapiens__1_-Hs:5286824", "Ensembl_Gene_ID": "ENSG00000139618" }, "position": { "x": 75.6100845336914, "y": 36.0261116027832 }, "selected": false }, { "data": { "id": "81", "Ensembl_Protein_ID": "ENSP00000452044", "Synonym": "REC2", "RefSeq_Protein_ID": "NP_598194", "SUID": 81, "score": 0.07252334541845512, "annotation_name": ["M phase of meiotic cell cycle", "DNA recombination", "meiosis", "reciprocal DNA recombination", "meiotic cell cycle", "reciprocal meiotic recombination", "meiosis I"], "node_type": "result", "log_score": -2.623846763182445, "Uniprot_ID": "RA51B_HUMAN", "selected": false, "gene_name": "RAD51B", "name": "H__sapiens__1_-Hs:5294341", "Entrez_Gene_ID": "5890", "RefSeq_mRNA_ID": "NM_133510", "annotations": ["GO:0051327", "GO:0006310", "GO:0007126", "GO:0035825", "GO:0051321", "GO:0007131", "GO:0007127"], "shared_name": "H__sapiens__1_-Hs:5294341", "Ensembl_Gene_ID": "ENSG00000182185" }, "position": { "x": 63.98032188415527, "y": 160.54481506347656 }, "selected": false }, { "data": { "id": "77", "Ensembl_Protein_ID": "ENSP00000436761", "Synonym": "RAD51L2", "RefSeq_Protein_ID": "NP_478123", "SUID": 77, "score": 0.0962848403255141, "annotation_name": ["chromosome segregation", "DNA recombination", "DNA repair"], "node_type": "result", "log_score": -2.3404443939043214, "Uniprot_ID": "RA51C_HUMAN", "selected": false, "gene_name": "RAD51C", "name": "H__sapiens__1_-Hs:5282439", "Entrez_Gene_ID": "5889", "RefSeq_mRNA_ID": "NM_058217", "annotations": ["GO:0007059", "GO:0006310", "GO:0006281"], "shared_name": "H__sapiens__1_-Hs:5282439", "Ensembl_Gene_ID": "ENSG00000108384" }, "position": { "x": 55.58820343017578, "y": 55.86132049560547 }, "selected": false }, { "data": { "id": "74", "Ensembl_Protein_ID": "ENSP00000446296", "Synonym": "PIR51", "RefSeq_Protein_ID": "NP_006470", "SUID": 74, "score": 0.86365719664005, "annotation_name": ["single-stranded DNA binding", "structure-specific DNA binding", "double-stranded DNA binding", "double-strand break repair via homologous recombination", "DNA recombination", "DNA repair", "double-strand break repair", "recombinational repair"], "node_type": "query", "log_score": -0.14657935205749534, "Uniprot_ID": "R51A1_HUMAN", "selected": false, "gene_name": "RAD51AP1", "name": "H__sapiens__1_-Hs:5282789", "Entrez_Gene_ID": "10635", "RefSeq_mRNA_ID": "NM_006479", "annotations": ["GO:0003697", "GO:0043566", "GO:0003690", "GO:0000724", "GO:0006310", "GO:0006281", "GO:0006302", "GO:0000725"], "shared_name": "H__sapiens__1_-Hs:5282789", "Ensembl_Gene_ID": "ENSG00000111247" }, "position": { "x": -56.794578552246094, "y": 40.09278869628906 }, "selected": false }, { "data": { "id": "72", "Ensembl_Protein_ID": "ENSP00000446475", "Synonym": "HSAP", "RefSeq_Protein_ID": "NP_000170", "SUID": 72, "score": 0.7355585791031161, "annotation_name": ["ATPase activity", "regulation of DNA metabolic process", "production of molecular mediator of immune response", "mismatch repair", "immunoglobulin production", "ATPase activity, coupled", "immunoglobulin production involved in immunoglobulin mediated immune response", "reciprocal meiotic recombination", "somatic recombination of immunoglobulin genes involved in immune response", "somatic recombination of immunoglobulin gene segments", "somatic cell DNA recombination", "meiotic cell cycle", "DNA repair", "somatic diversification of immune receptors via germline recombination within a single locus", "response to radiation", "isotype switching", "negative regulation of DNA metabolic process", "DNA recombination", "double-stranded DNA binding", "somatic diversification of immunoglobulins", "ADP binding", "nuclear chromosome", "somatic diversification of immunoglobulins involved in immune response", "meiosis I", "mismatch repair complex binding", "B cell activation involved in immune response", "somatic diversification of immune receptors", "structure-specific DNA binding", "M phase of meiotic cell cycle", "protein complex binding", "DNA-dependent ATPase activity", "meiosis", "reciprocal DNA recombination", "ATP catabolic process", "ATP metabolic process", "regulation of DNA recombination", "DNA secondary structure binding", "damaged DNA binding", "response to UV"], "node_type": "query", "log_score": -0.30712509683260214, "Uniprot_ID": "P52701", "selected": false, "gene_name": "MSH6", "name": "H__sapiens__1_-Hs:5283455", "Entrez_Gene_ID": "2956", "RefSeq_mRNA_ID": "NM_000179", "annotations": ["GO:0016887", "GO:0051052", "GO:0002440", "GO:0006298", "GO:0002377", "GO:0042623", "GO:0002381", "GO:0007131", "GO:0002204", "GO:0016447", "GO:0016444", "GO:0051321", "GO:0006281", "GO:0002562", "GO:0009314", "GO:0045190", "GO:0051053", "GO:0006310", "GO:0003690", "GO:0016445", "GO:0043531", "GO:0000228", "GO:0002208", "GO:0007127", "GO:0032404", "GO:0002312", "GO:0002200", "GO:0043566", "GO:0051327", "GO:0032403", "GO:0008094", "GO:0007126", "GO:0035825", "GO:0006200", "GO:0046034", "GO:0000018", "GO:0000217", "GO:0003684", "GO:0009411"], "shared_name": "H__sapiens__1_-Hs:5283455", "Ensembl_Gene_ID": "ENSG00000116062" }, "position": { "x": -65.26790618896484, "y": -80.9007339477539 }, "selected": false }, { "data": { "id": "71", "Ensembl_Protein_ID": "ENSP00000442697", "Synonym": "LCFS2", "RefSeq_Protein_ID": "NP_000242", "SUID": 71, "score": 0.6593365529936225, "annotation_name": ["single-stranded DNA binding", "ATPase activity", "DNA integrity checkpoint", "regulation of DNA metabolic process", "production of molecular mediator of immune response", "mismatch repair", "immunoglobulin production", "ATPase activity, coupled", "immunoglobulin production involved in immunoglobulin mediated immune response", "reciprocal meiotic recombination", "somatic recombination of immunoglobulin genes involved in immune response", "somatic recombination of immunoglobulin gene segments", "somatic cell DNA recombination", "meiotic cell cycle", "DNA repair", "somatic diversification of immune receptors via germline recombination within a single locus", "response to radiation", "isotype switching", "cell cycle checkpoint", "negative regulation of DNA metabolic process", "response to ionizing radiation", "double-stranded DNA binding", "DNA recombination", "response to X-ray", "DNA damage checkpoint", "somatic diversification of immunoglobulins", "ADP binding", "nuclear chromosome", "somatic diversification of immunoglobulins involved in immune response", "meiosis I", "mismatch repair complex binding", "B cell activation involved in immune response", "somatic diversification of immune receptors", "structure-specific DNA binding", "postreplication repair", "M phase of meiotic cell cycle", "protein complex binding", "DNA-dependent ATPase activity", "meiosis", "reciprocal DNA recombination", "double-strand break repair", "ATP catabolic process", "ATP metabolic process", "regulation of DNA recombination", "DNA secondary structure binding", "damaged DNA binding", "response to UV"], "node_type": "query", "log_score": -0.41652117227381574, "Uniprot_ID": "P43246", "selected": false, "gene_name": "MSH2", "name": "H__sapiens__1_-Hs:5280913", "Entrez_Gene_ID": "4436", "RefSeq_mRNA_ID": "NM_000251", "annotations": ["GO:0003697", "GO:0016887", "GO:0031570", "GO:0051052", "GO:0002440", "GO:0006298", "GO:0002377", "GO:0042623", "GO:0002381", "GO:0007131", "GO:0002204", "GO:0016447", "GO:0016444", "GO:0051321", "GO:0006281", "GO:0002562", "GO:0009314", "GO:0045190", "GO:0000075", "GO:0051053", "GO:0010212", "GO:0003690", "GO:0006310", "GO:0010165", "GO:0000077", "GO:0016445", "GO:0043531", "GO:0000228", "GO:0002208", "GO:0007127", "GO:0032404", "GO:0002312", "GO:0002200", "GO:0043566", "GO:0006301", "GO:0051327", "GO:0032403", "GO:0008094", "GO:0007126", "GO:0035825", "GO:0006302", "GO:0006200", "GO:0046034", "GO:0000018", "GO:0000217", "GO:0003684", "GO:0009411"], "shared_name": "H__sapiens__1_-Hs:5280913", "Ensembl_Gene_ID": "ENSG00000095002" }, "position": { "x": -31.02294158935547, "y": -18.547924041748047 }, "selected": false }, { "data": { "id": "69", "Ensembl_Protein_ID": "ENSP00000424713", "Synonym": "RFC140", "RefSeq_Protein_ID": "NP_002904", "SUID": 69, "score": 0.031206713177599377, "annotation_name": ["RNA-dependent DNA replication", "telomere maintenance via telomere lengthening", "nucleotide-excision repair, DNA gap filling", "transcription-coupled nucleotide-excision repair", "telomere organization", "mitotic recombination", "interphase", "DNA recombination", "telomere maintenance via semi-conservative replication", "DNA strand elongation", "S phase", "nucleotide-excision repair", "anatomical structure homeostasis", "telomere maintenance via recombination", "DNA strand elongation involved in DNA replication", "S phase of mitotic cell cycle", "telomere maintenance via telomerase", "DNA-dependent DNA replication", "DNA replication", "interphase of mitotic cell cycle", "DNA repair", "telomere maintenance"], "node_type": "result", "log_score": -3.467122041362875, "Uniprot_ID": "RFC1_HUMAN", "selected": false, "gene_name": "RFC1", "name": "H__sapiens__1_-Hs:5279414", "Entrez_Gene_ID": "5981", "RefSeq_mRNA_ID": "NM_002913", "annotations": ["GO:0006278", "GO:0010833", "GO:0006297", "GO:0006283", "GO:0032200", "GO:0006312", "GO:0051325", "GO:0006310", "GO:0032201", "GO:0022616", "GO:0051320", "GO:0006289", "GO:0060249", "GO:0000722", "GO:0006271", "GO:0000084", "GO:0007004", "GO:0006261", "GO:0006260", "GO:0051329", "GO:0006281", "GO:0000723"], "shared_name": "H__sapiens__1_-Hs:5279414", "Ensembl_Gene_ID": "ENSG00000035928" }, "position": { "x": -52.150169372558594, "y": -52.31455993652344 }, "selected": false }, { "data": { "id": "68", "Ensembl_Protein_ID": "ENSP00000445928", "RefSeq_Protein_ID": "NP_000225", "SUID": 68, "score": 0.020928226688671225, "annotation_name": ["telomere maintenance via telomere lengthening", "nucleotide-excision repair, DNA gap filling", "transcription-coupled nucleotide-excision repair", "telomere organization", "base-excision repair", "mitotic recombination", "interphase", "double-strand break repair via homologous recombination", "DNA recombination", "telomere maintenance via semi-conservative replication", "DNA strand elongation", "S phase", "recombinational repair", "nucleotide-excision repair", "telomere maintenance via recombination", "anatomical structure homeostasis", "DNA strand elongation involved in DNA replication", "S phase of mitotic cell cycle", "DNA-dependent DNA replication", "DNA replication", "interphase of mitotic cell cycle", "DNA repair", "double-strand break repair", "telomere maintenance"], "node_type": "result", "log_score": -3.8666564719296583, "Uniprot_ID": "P18858", "selected": false, "gene_name": "LIG1", "name": "H__sapiens__1_-Hs:5282028", "Entrez_Gene_ID": "3978", "RefSeq_mRNA_ID": "NM_000234", "annotations": ["GO:0010833", "GO:0006297", "GO:0006283", "GO:0032200", "GO:0006284", "GO:0006312", "GO:0051325", "GO:0000724", "GO:0006310", "GO:0032201", "GO:0022616", "GO:0051320", "GO:0000725", "GO:0006289", "GO:0000722", "GO:0060249", "GO:0006271", "GO:0000084", "GO:0006261", "GO:0006260", "GO:0051329", "GO:0006281", "GO:0006302", "GO:0000723"], "shared_name": "H__sapiens__1_-Hs:5282028", "Ensembl_Gene_ID": "ENSG00000105486" }, "position": { "x": -24.98644256591797, "y": 55.95973205566406 }, "selected": false }, { "data": { "id": "65", "Ensembl_Protein_ID": "ENSP00000445692", "Synonym": "RAD2", "RefSeq_Protein_ID": "NP_004102", "SUID": 65, "score": 0.051404654654256365, "annotation_name": ["telomere maintenance via telomere lengthening", "telomere organization", "mitotic recombination", "interphase", "nuclease activity", "DNA strand elongation", "telomere maintenance via recombination", "S phase of mitotic cell cycle", "DNA strand elongation involved in DNA replication", "DNA-dependent DNA replication", "DNA repair", "response to radiation", "base-excision repair", "endodeoxyribonuclease activity", "DNA recombination", "double-stranded DNA binding", "telomere maintenance via semi-conservative replication", "endonuclease activity", "S phase", "anatomical structure homeostasis", "deoxyribonuclease activity", "structure-specific DNA binding", "DNA replication", "interphase of mitotic cell cycle", "double-strand break repair", "telomere maintenance", "exonuclease activity", "damaged DNA binding", "response to UV"], "node_type": "result", "log_score": -2.9680265531452936, "Uniprot_ID": "P39748", "selected": false, "gene_name": "FEN1", "name": "H__sapiens__1_-Hs:5291428", "Entrez_Gene_ID": "2237", "RefSeq_mRNA_ID": "NM_004111", "annotations": ["GO:0010833", "GO:0032200", "GO:0006312", "GO:0051325", "GO:0004518", "GO:0022616", "GO:0000722", "GO:0000084", "GO:0006271", "GO:0006261", "GO:0006281", "GO:0009314", "GO:0006284", "GO:0004520", "GO:0006310", "GO:0003690", "GO:0032201", "GO:0004519", "GO:0051320", "GO:0060249", "GO:0004536", "GO:0043566", "GO:0006260", "GO:0051329", "GO:0006302", "GO:0000723", "GO:0004527", "GO:0003684", "GO:0009411"], "shared_name": "H__sapiens__1_-Hs:5291428", "Ensembl_Gene_ID": "ENSG00000168496" }, "position": { "x": 10.63907603919506, "y": 43.99934387207031 }, "selected": false }, { "data": { "id": "63", "Ensembl_Protein_ID": "ENSP00000444286", "Synonym": "HNPCC2", "RefSeq_Protein_ID": "NP_001161091", "SUID": 63, "score": 0.6140095628222709, "annotation_name": ["ATPase activity", "synaptonemal complex", "single-stranded DNA binding", "production of molecular mediator of immune response", "immunoglobulin production", "mismatch repair", "reciprocal meiotic recombination", "DNA repair", "meiotic cell cycle", "condensed chromosome", "nuclear chromosome part", "DNA recombination", "somatic diversification of immunoglobulins", "nuclear chromosome", "meiosis I", "mismatch repair complex binding", "condensed nuclear chromosome", "somatic diversification of immune receptors", "meiosis", "protein complex binding", "M phase of meiotic cell cycle", "structure-specific DNA binding", "reciprocal DNA recombination", "ATP catabolic process", "ATP metabolic process"], "node_type": "query", "log_score": -0.4877447763271721, "Uniprot_ID": "P40692", "selected": false, "gene_name": "MLH1", "name": "H__sapiens__1_-Hs:5280233", "Entrez_Gene_ID": "4292", "RefSeq_mRNA_ID": "NM_001167619", "annotations": ["GO:0016887", "GO:0000795", "GO:0003697", "GO:0002440", "GO:0002377", "GO:0006298", "GO:0007131", "GO:0006281", "GO:0051321", "GO:0000793", "GO:0044454", "GO:0006310", "GO:0016445", "GO:0000228", "GO:0007127", "GO:0032404", "GO:0000794", "GO:0002200", "GO:0007126", "GO:0032403", "GO:0051327", "GO:0043566", "GO:0035825", "GO:0006200", "GO:0046034"], "shared_name": "H__sapiens__1_-Hs:5280233", "Ensembl_Gene_ID": "ENSG00000076242" }, "position": { "x": 7.656166076660156, "y": -74.6204605102539 }, "selected": false }, { "data": { "id": "62", "Ensembl_Protein_ID": "ENSP00000368458", "RefSeq_Protein_ID": "NP_872590", "SUID": 62, "score": 0.532256005804256, "annotation_name": ["transcription-coupled nucleotide-excision repair", "nucleotide-excision repair, DNA gap filling", "telomere maintenance via telomere lengthening", "telomere organization", "mitotic recombination", "mismatch repair", "interphase", "DNA strand elongation", "nucleotide-excision repair", "telomere maintenance via recombination", "S phase of mitotic cell cycle", "DNA strand elongation involved in DNA replication", "DNA-dependent DNA replication", "DNA repair", "nuclear chromosome part", "base-excision repair", "DNA recombination", "double-stranded DNA binding", "telomere maintenance via semi-conservative replication", "S phase", "nuclear chromosome", "mismatch repair complex binding", "anatomical structure homeostasis", "structure-specific DNA binding", "protein complex binding", "postreplication repair", "DNA replication", "interphase of mitotic cell cycle", "telomere maintenance"], "node_type": "query", "log_score": -0.6306306914690045, "Uniprot_ID": "PCNA_HUMAN", "selected": false, "gene_name": "PCNA", "name": "H__sapiens__1_-Hs:5285585", "Entrez_Gene_ID": "5111", "RefSeq_mRNA_ID": "NM_182649", "annotations": ["GO:0006283", "GO:0006297", "GO:0010833", "GO:0032200", "GO:0006312", "GO:0006298", "GO:0051325", "GO:0022616", "GO:0006289", "GO:0000722", "GO:0000084", "GO:0006271", "GO:0006261", "GO:0006281", "GO:0044454", "GO:0006284", "GO:0006310", "GO:0003690", "GO:0032201", "GO:0051320", "GO:0000228", "GO:0032404", "GO:0060249", "GO:0043566", "GO:0032403", "GO:0006301", "GO:0006260", "GO:0051329", "GO:0000723"], "shared_name": "H__sapiens__1_-Hs:5285585", "Ensembl_Gene_ID": "ENSG00000132646" }, "position": { "x": 40.818458557128906, "y": -27.98885726928711 }, "selected": false }], "edges": [{ "data": { "id": "343", "source": "296", "target": "87", "networks": ["I2D-BioGRID-Yeast2Human", "I2D-Krogan-Greenblatt-2006-Core-Yeast2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.08380527794361115, 0.6725959181785583], "normalized_max_weight": 0.06106406689613253, "SUID": 343, "name": "H__sapiens__1_-Hs:5285773|H__sapiens__1_-Hs:5279580|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5285773|H__sapiens__1_-Hs:5279580|Predicted" }, "selected": false }, { "data": { "id": "297", "source": "296", "target": "63", "networks": ["Johnson-Shoemaker-2003"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.015292830765247345], "normalized_max_weight": 4.6378647866484923E-4, "SUID": 297, "name": "H__sapiens__1_-Hs:5285773|H__sapiens__1_-Hs:5280233|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5285773|H__sapiens__1_-Hs:5280233|Co-localization" }, "selected": false }, { "data": { "id": "267", "source": "262", "target": "108", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.20157292485237122, 0.20432895421981812], "normalized_max_weight": 0.022203537722442657, "SUID": 267, "name": "H__sapiens__1_-Hs:5329805|H__sapiens__1_-Hs:5279663|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5329805|H__sapiens__1_-Hs:5279663|Shared protein domains" }, "selected": false }, { "data": { "id": "266", "source": "262", "target": "162", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.24062541127204895, 0.23488153517246246], "normalized_max_weight": 0.025523553656015253, "SUID": 266, "name": "H__sapiens__1_-Hs:5329805|H__sapiens__1_-Hs:5299500|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5329805|H__sapiens__1_-Hs:5299500|Shared protein domains" }, "selected": false }, { "data": { "id": "265", "source": "262", "target": "141", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.18193496763706207, 0.18437828123569489], "normalized_max_weight": 0.0200355849627249, "SUID": 265, "name": "H__sapiens__1_-Hs:5329805|H__sapiens__1_-Hs:5283097|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5329805|H__sapiens__1_-Hs:5283097|Shared protein domains" }, "selected": false }, { "data": { "id": "264", "source": "262", "target": "71", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.1819346398115158, 0.18437828123569489], "normalized_max_weight": 0.0200355849627249, "SUID": 264, "name": "H__sapiens__1_-Hs:5329805|H__sapiens__1_-Hs:5280913|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5329805|H__sapiens__1_-Hs:5280913|Shared protein domains" }, "selected": false }, { "data": { "id": "263", "source": "262", "target": "72", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.11795969307422638, 0.11831174045801163], "normalized_max_weight": 0.012856421657408532, "SUID": 263, "name": "H__sapiens__1_-Hs:5329805|H__sapiens__1_-Hs:5283455|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5329805|H__sapiens__1_-Hs:5283455|Shared protein domains" }, "selected": false }, { "data": { "id": "312", "source": "208", "target": "156", "networks": ["PATHWAYCOMMONS-NCI_NATURE"], "selected": false, "data_type": "Pathway", "raw_weights": [0.028657305985689163], "normalized_max_weight": 0.002474583223574659, "SUID": 312, "name": "H__sapiens__1_-Hs:5292421|H__sapiens__1_-Hs:5281807|Pathway", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5292421|H__sapiens__1_-Hs:5281807|Pathway" }, "selected": false }, { "data": { "id": "291", "source": "208", "target": "128", "networks": ["Johnson-Shoemaker-2003"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.012950590811669827], "normalized_max_weight": 3.927532450579992E-4, "SUID": 291, "name": "H__sapiens__1_-Hs:5292421|H__sapiens__1_-Hs:5296442|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5292421|H__sapiens__1_-Hs:5296442|Co-localization" }, "selected": false }, { "data": { "id": "269", "source": "208", "target": "133", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.6274446249008179, 0.5000028014183044], "normalized_max_weight": 0.05433312721150093, "SUID": 269, "name": "H__sapiens__1_-Hs:5292421|H__sapiens__1_-Hs:5288367|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5292421|H__sapiens__1_-Hs:5288367|Shared protein domains" }, "selected": false }, { "data": { "id": "268", "source": "208", "target": "62", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.4315989911556244, 0.4999985992908478], "normalized_max_weight": 0.05433267058460801, "SUID": 268, "name": "H__sapiens__1_-Hs:5292421|H__sapiens__1_-Hs:5285585|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5292421|H__sapiens__1_-Hs:5285585|Shared protein domains" }, "selected": false }, { "data": { "id": "227", "source": "208", "target": "133", "networks": ["IREF-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.10224039852619171], "normalized_max_weight": 0.0044043975839773795, "SUID": 227, "name": "H__sapiens__1_-Hs:5292421|H__sapiens__1_-Hs:5288367|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5292421|H__sapiens__1_-Hs:5288367|Physical interactions" }, "selected": false }, { "data": { "id": "226", "source": "208", "target": "62", "networks": ["IREF-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.009932291693985462], "normalized_max_weight": 4.2787158668147675E-4, "SUID": 226, "name": "H__sapiens__1_-Hs:5292421|H__sapiens__1_-Hs:5285585|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5292421|H__sapiens__1_-Hs:5285585|Physical interactions" }, "selected": false }, { "data": { "id": "225", "source": "208", "target": "63", "networks": ["IREF-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.028653088957071304], "normalized_max_weight": 0.0012343417826534025, "SUID": 225, "name": "H__sapiens__1_-Hs:5292421|H__sapiens__1_-Hs:5280233|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5292421|H__sapiens__1_-Hs:5280233|Physical interactions" }, "selected": false }, { "data": { "id": "209", "source": "208", "target": "65", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.08340640366077423, 0.06930645555257797, 0.06771963834762573], "normalized_max_weight": 0.004339525878653925, "SUID": 209, "name": "H__sapiens__1_-Hs:5292421|H__sapiens__1_-Hs:5291428|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5292421|H__sapiens__1_-Hs:5291428|Physical interactions" }, "selected": false }, { "data": { "id": "347", "source": "166", "target": "87", "networks": ["I2D-BioGRID-Worm2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.6077812314033508], "normalized_max_weight": 2.2814558194619608E-4, "SUID": 347, "name": "H__sapiens__1_-Hs:5296680|H__sapiens__1_-Hs:5279580|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5296680|H__sapiens__1_-Hs:5279580|Predicted" }, "selected": false }, { "data": { "id": "300", "source": "166", "target": "86", "networks": ["Johnson-Shoemaker-2003"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.015016581863164902], "normalized_max_weight": 4.5540866375938396E-4, "SUID": 300, "name": "H__sapiens__1_-Hs:5296680|H__sapiens__1_-Hs:5296686|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5296680|H__sapiens__1_-Hs:5296686|Co-localization" }, "selected": false }, { "data": { "id": "299", "source": "166", "target": "125", "networks": ["Johnson-Shoemaker-2003"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.0039061876013875008], "normalized_max_weight": 1.184631557401859E-4, "SUID": 299, "name": "H__sapiens__1_-Hs:5296680|H__sapiens__1_-Hs:5279290|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5296680|H__sapiens__1_-Hs:5279290|Co-localization" }, "selected": false }, { "data": { "id": "298", "source": "166", "target": "71", "networks": ["Johnson-Shoemaker-2003"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.007013288326561451], "normalized_max_weight": 2.1269236198106977E-4, "SUID": 298, "name": "H__sapiens__1_-Hs:5296680|H__sapiens__1_-Hs:5280913|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5296680|H__sapiens__1_-Hs:5280913|Co-localization" }, "selected": false }, { "data": { "id": "221", "source": "166", "target": "87", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.03371480852365494, 0.10872942209243774, 0.3210820257663727], "normalized_max_weight": 0.00988774154777108, "SUID": 221, "name": "H__sapiens__1_-Hs:5296680|H__sapiens__1_-Hs:5279580|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5296680|H__sapiens__1_-Hs:5279580|Physical interactions" }, "selected": false }, { "data": { "id": "167", "source": "166", "target": "109", "networks": ["IREF-BIND", "IREF-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [1.0, 0.6051638126373291], "normalized_max_weight": 0.02606975395941537, "SUID": 167, "name": "H__sapiens__1_-Hs:5296680|H__sapiens__1_-Hs:5281121|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5296680|H__sapiens__1_-Hs:5281121|Physical interactions" }, "selected": false }, { "data": { "id": "328", "source": "162", "target": "125", "networks": ["I2D-BIND-Yeast2Human", "I2D-BioGRID-Yeast2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.30231189727783203, 0.19443592429161072], "normalized_max_weight": 0.02008448947559324, "SUID": 328, "name": "H__sapiens__1_-Hs:5299500|H__sapiens__1_-Hs:5279290|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5299500|H__sapiens__1_-Hs:5279290|Predicted" }, "selected": false }, { "data": { "id": "255", "source": "162", "target": "141", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.18193496763706207, 0.17748233675956726], "normalized_max_weight": 0.019286232704293388, "SUID": 255, "name": "H__sapiens__1_-Hs:5299500|H__sapiens__1_-Hs:5283097|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5299500|H__sapiens__1_-Hs:5283097|Shared protein domains" }, "selected": false }, { "data": { "id": "254", "source": "162", "target": "71", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.1819346398115158, 0.17748233675956726], "normalized_max_weight": 0.019286232704293388, "SUID": 254, "name": "H__sapiens__1_-Hs:5299500|H__sapiens__1_-Hs:5280913|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5299500|H__sapiens__1_-Hs:5280913|Shared protein domains" }, "selected": false }, { "data": { "id": "253", "source": "162", "target": "72", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.11795969307422638, 0.11388608068227768], "normalized_max_weight": 0.012375504480729344, "SUID": 253, "name": "H__sapiens__1_-Hs:5299500|H__sapiens__1_-Hs:5283455|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5299500|H__sapiens__1_-Hs:5283455|Shared protein domains" }, "selected": false }, { "data": { "id": "333", "source": "156", "target": "125", "networks": ["I2D-IntAct-Mouse2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.7071067690849304], "normalized_max_weight": 0.021762812259435844, "SUID": 333, "name": "H__sapiens__1_-Hs:5281807|H__sapiens__1_-Hs:5279290|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5281807|H__sapiens__1_-Hs:5279290|Predicted" }, "selected": false }, { "data": { "id": "330", "source": "156", "target": "142", "networks": ["I2D-BIND-Mouse2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [1.0], "normalized_max_weight": 0.05507887303828558, "SUID": 330, "name": "H__sapiens__1_-Hs:5281807|H__sapiens__1_-Hs:5283121|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5281807|H__sapiens__1_-Hs:5283121|Predicted" }, "selected": false }, { "data": { "id": "309", "source": "156", "target": "125", "networks": ["PATHWAYCOMMONS-NCI_NATURE"], "selected": false, "data_type": "Pathway", "raw_weights": [0.04433392733335495], "normalized_max_weight": 0.003828273071763409, "SUID": 309, "name": "H__sapiens__1_-Hs:5281807|H__sapiens__1_-Hs:5279290|Pathway", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5281807|H__sapiens__1_-Hs:5279290|Pathway" }, "selected": false }, { "data": { "id": "308", "source": "156", "target": "142", "networks": ["PATHWAYCOMMONS-NCI_NATURE"], "selected": false, "data_type": "Pathway", "raw_weights": [0.04987141862511635], "normalized_max_weight": 0.004306440246937743, "SUID": 308, "name": "H__sapiens__1_-Hs:5281807|H__sapiens__1_-Hs:5283121|Pathway", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5281807|H__sapiens__1_-Hs:5283121|Pathway" }, "selected": false }, { "data": { "id": "198", "source": "156", "target": "63", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.022853726521134377, 0.024693520739674568, 0.021127978339791298], "normalized_max_weight": 0.001189049441161597, "SUID": 198, "name": "H__sapiens__1_-Hs:5281807|H__sapiens__1_-Hs:5280233|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5281807|H__sapiens__1_-Hs:5280233|Physical interactions" }, "selected": false }, { "data": { "id": "197", "source": "156", "target": "71", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.050193995237350464, 0.028980448842048645, 0.038118958473205566], "normalized_max_weight": 0.0026115277931345864, "SUID": 197, "name": "H__sapiens__1_-Hs:5281807|H__sapiens__1_-Hs:5280913|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5281807|H__sapiens__1_-Hs:5280913|Physical interactions" }, "selected": false }, { "data": { "id": "196", "source": "156", "target": "72", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.06017342209815979, 0.03422589600086212, 0.054901670664548874], "normalized_max_weight": 0.0031307442946965983, "SUID": 196, "name": "H__sapiens__1_-Hs:5281807|H__sapiens__1_-Hs:5283455|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5281807|H__sapiens__1_-Hs:5283455|Physical interactions" }, "selected": false }, { "data": { "id": "158", "source": "156", "target": "125", "networks": ["IREF-BIND", "IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.16123773157596588, 0.06405233591794968, 0.030905505642294884, 0.04239855706691742], "normalized_max_weight": 0.003332559097436534, "SUID": 158, "name": "H__sapiens__1_-Hs:5281807|H__sapiens__1_-Hs:5279290|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5281807|H__sapiens__1_-Hs:5279290|Physical interactions" }, "selected": false }, { "data": { "id": "157", "source": "156", "target": "142", "networks": ["IREF-BIND", "IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.16991570591926575, 0.055115245282649994, 0.03546645864844322, 0.049264803528785706], "normalized_max_weight": 0.002867573983709612, "SUID": 157, "name": "H__sapiens__1_-Hs:5281807|H__sapiens__1_-Hs:5283121|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5281807|H__sapiens__1_-Hs:5283121|Physical interactions" }, "selected": false }, { "data": { "id": "324", "source": "154", "target": "141", "networks": ["I2D-Yu-Vidal-2008-GoldStd-Yeast2Human", "I2D-BIND-Yeast2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.35459744930267334, 0.28550106287002563], "normalized_max_weight": 0.038616627942357144, "SUID": 324, "name": "H__sapiens__1_-Hs:5284210|H__sapiens__1_-Hs:5283097|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5284210|H__sapiens__1_-Hs:5283097|Predicted" }, "selected": false }, { "data": { "id": "323", "source": "154", "target": "63", "networks": ["I2D-Yu-Vidal-2008-GoldStd-Yeast2Human", "I2D-BIND-Yeast2Human", "I2D-BioGRID-Fly2Human", "I2D-BioGRID-Yeast2Human", "I2D-IntAct-Worm2Human", "I2D-BioGRID-Worm2Human", "I2D-Krogan-Greenblatt-2006-NonCore-Yeast2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.4608193337917328, 0.3489152789115906, 0.02413078211247921, 0.437252402305603, 0.6077812314033508, 0.6077812314033508, 0.7471169233322144], "normalized_max_weight": 0.05018448044867555, "SUID": 323, "name": "H__sapiens__1_-Hs:5284210|H__sapiens__1_-Hs:5280233|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5284210|H__sapiens__1_-Hs:5280233|Predicted" }, "selected": false }, { "data": { "id": "322", "source": "154", "target": "71", "networks": ["I2D-Yu-Vidal-2008-GoldStd-Yeast2Human", "I2D-BIND-Yeast2Human", "I2D-BioGRID-Yeast2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.25094401836395264, 0.3489152789115906, 0.2206229716539383], "normalized_max_weight": 0.02732848702261587, "SUID": 322, "name": "H__sapiens__1_-Hs:5284210|H__sapiens__1_-Hs:5280913|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5284210|H__sapiens__1_-Hs:5280913|Predicted" }, "selected": false }, { "data": { "id": "241", "source": "154", "target": "63", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.170025035738945, 0.11688509583473206], "normalized_max_weight": 0.012701394398396428, "SUID": 241, "name": "H__sapiens__1_-Hs:5284210|H__sapiens__1_-Hs:5280233|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5284210|H__sapiens__1_-Hs:5280233|Shared protein domains" }, "selected": false }, { "data": { "id": "188", "source": "154", "target": "141", "networks": ["IREF-GRID", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.05901512876152992, 0.045009247958660126], "normalized_max_weight": 0.0030704798103313334, "SUID": 188, "name": "H__sapiens__1_-Hs:5284210|H__sapiens__1_-Hs:5283097|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5284210|H__sapiens__1_-Hs:5283097|Physical interactions" }, "selected": false }, { "data": { "id": "187", "source": "154", "target": "62", "networks": ["IREF-GRID", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.009023545309901237, 0.007701245602220297], "normalized_max_weight": 4.694832371478752E-4, "SUID": 187, "name": "H__sapiens__1_-Hs:5284210|H__sapiens__1_-Hs:5285585|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5284210|H__sapiens__1_-Hs:5285585|Physical interactions" }, "selected": false }, { "data": { "id": "186", "source": "154", "target": "71", "networks": ["IREF-GRID", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.023648886010050774, 0.020484909415245056], "normalized_max_weight": 0.0012304205473160365, "SUID": 186, "name": "H__sapiens__1_-Hs:5284210|H__sapiens__1_-Hs:5280913|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5284210|H__sapiens__1_-Hs:5280913|Physical interactions" }, "selected": false }, { "data": { "id": "185", "source": "154", "target": "72", "networks": ["IREF-GRID", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.02835068851709366, 0.029503842815756798], "normalized_max_weight": 0.0014750491700608421, "SUID": 185, "name": "H__sapiens__1_-Hs:5284210|H__sapiens__1_-Hs:5283455|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5284210|H__sapiens__1_-Hs:5283455|Physical interactions" }, "selected": false }, { "data": { "id": "155", "source": "154", "target": "63", "networks": ["IREF-BIND", "IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.24457387626171112, 0.010767526924610138, 0.0647851899266243, 0.011354055255651474], "normalized_max_weight": 0.002790870713568688, "SUID": 155, "name": "H__sapiens__1_-Hs:5284210|H__sapiens__1_-Hs:5280233|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5284210|H__sapiens__1_-Hs:5280233|Physical interactions" }, "selected": false }, { "data": { "id": "169", "source": "142", "target": "72", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.0513283796608448, 0.0454205721616745, 0.05678696185350418], "normalized_max_weight": 0.002670548328081962, "SUID": 169, "name": "H__sapiens__1_-Hs:5283121|H__sapiens__1_-Hs:5283455|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5283121|H__sapiens__1_-Hs:5283455|Physical interactions" }, "selected": false }, { "data": { "id": "341", "source": "141", "target": "72", "networks": ["I2D-BioGRID-Yeast2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.17241531610488892], "normalized_max_weight": 0.0017678639221934307, "SUID": 341, "name": "H__sapiens__1_-Hs:5283097|H__sapiens__1_-Hs:5283455|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5283097|H__sapiens__1_-Hs:5283455|Predicted" }, "selected": false }, { "data": { "id": "327", "source": "141", "target": "63", "networks": ["I2D-BIND-Yeast2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.28550106287002563], "normalized_max_weight": 0.018967639527642858, "SUID": 327, "name": "H__sapiens__1_-Hs:5283097|H__sapiens__1_-Hs:5280233|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5283097|H__sapiens__1_-Hs:5280233|Predicted" }, "selected": false }, { "data": { "id": "321", "source": "141", "target": "62", "networks": ["I2D-Yu-Vidal-2008-GoldStd-Yeast2Human", "I2D-BIND-Yeast2Human", "I2D-BioGRID-Yeast2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.19072072207927704, 0.1615498811006546, 0.08151029050350189], "normalized_max_weight": 0.020770006044647585, "SUID": 321, "name": "H__sapiens__1_-Hs:5283097|H__sapiens__1_-Hs:5285585|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5283097|H__sapiens__1_-Hs:5285585|Predicted" }, "selected": false }, { "data": { "id": "320", "source": "141", "target": "71", "networks": ["I2D-Yu-Vidal-2008-GoldStd-Yeast2Human", "I2D-BIND-Yeast2Human", "I2D-BioGRID-Yeast2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.27502942085266113, 0.28550106287002563, 0.1247413232922554], "normalized_max_weight": 0.029951452947998138, "SUID": 320, "name": "H__sapiens__1_-Hs:5283097|H__sapiens__1_-Hs:5280913|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5283097|H__sapiens__1_-Hs:5280913|Predicted" }, "selected": false }, { "data": { "id": "240", "source": "141", "target": "71", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.26311013102531433, 0.26453566551208496], "normalized_max_weight": 0.028745938873695663, "SUID": 240, "name": "H__sapiens__1_-Hs:5283097|H__sapiens__1_-Hs:5280913|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5283097|H__sapiens__1_-Hs:5280913|Shared protein domains" }, "selected": false }, { "data": { "id": "239", "source": "141", "target": "72", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.17059536278247833, 0.16975143551826477], "normalized_max_weight": 0.018446149329936795, "SUID": 239, "name": "H__sapiens__1_-Hs:5283097|H__sapiens__1_-Hs:5283455|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5283097|H__sapiens__1_-Hs:5283455|Shared protein domains" }, "selected": false }, { "data": { "id": "184", "source": "141", "target": "63", "networks": ["IREF-GRID", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.04430396109819412, 0.03715292364358902], "normalized_max_weight": 0.002305077035744542, "SUID": 184, "name": "H__sapiens__1_-Hs:5283097|H__sapiens__1_-Hs:5280233|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5283097|H__sapiens__1_-Hs:5280233|Physical interactions" }, "selected": false }, { "data": { "id": "153", "source": "141", "target": "62", "networks": ["IREF-BIND", "IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.07006962597370148, 0.03712819144129753, 0.036348018795251846, 0.025200139731168747], "normalized_max_weight": 0.0019317311443186162, "SUID": 153, "name": "H__sapiens__1_-Hs:5283097|H__sapiens__1_-Hs:5285585|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5283097|H__sapiens__1_-Hs:5285585|Physical interactions" }, "selected": false }, { "data": { "id": "152", "source": "141", "target": "71", "networks": ["IREF-BIND", "IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.33973097801208496, 0.09730548411607742, 0.12306223064661026, 0.06703104823827744], "normalized_max_weight": 0.005301377920587282, "SUID": 152, "name": "H__sapiens__1_-Hs:5283097|H__sapiens__1_-Hs:5280913|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5283097|H__sapiens__1_-Hs:5280913|Physical interactions" }, "selected": false }, { "data": { "id": "143", "source": "141", "target": "142", "networks": ["Burington-Shaughnessy-2008"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.026049526408314705], "normalized_max_weight": 7.859061634150704E-4, "SUID": 143, "name": "H__sapiens__1_-Hs:5283097|H__sapiens__1_-Hs:5283121|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5283097|H__sapiens__1_-Hs:5283121|Co-expression" }, "selected": false }, { "data": { "id": "260", "source": "133", "target": "62", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.4315989911556244, 0.4999985992908478], "normalized_max_weight": 0.05433267058460801, "SUID": 260, "name": "H__sapiens__1_-Hs:5288367|H__sapiens__1_-Hs:5285585|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5288367|H__sapiens__1_-Hs:5285585|Shared protein domains" }, "selected": false }, { "data": { "id": "134", "source": "133", "target": "128", "networks": ["Arijs-Rutgeerts-2009"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.003922299016267061], "normalized_max_weight": 3.147857209626026E-5, "SUID": 134, "name": "H__sapiens__1_-Hs:5288367|H__sapiens__1_-Hs:5296442|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5288367|H__sapiens__1_-Hs:5296442|Co-expression" }, "selected": false }, { "data": { "id": "137", "source": "128", "target": "74", "networks": ["Burington-Shaughnessy-2008"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.011034085415303707], "normalized_max_weight": 3.3289494786237634E-4, "SUID": 137, "name": "H__sapiens__1_-Hs:5296442|H__sapiens__1_-Hs:5282789|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5296442|H__sapiens__1_-Hs:5282789|Co-expression" }, "selected": false }, { "data": { "id": "336", "source": "125", "target": "109", "networks": ["I2D-BioGRID-Yeast2Human", "I2D-Krogan-Greenblatt-2006-Core-Yeast2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.13385947048664093, 0.8716346025466919], "normalized_max_weight": 0.07913451782912093, "SUID": 336, "name": "H__sapiens__1_-Hs:5279290|H__sapiens__1_-Hs:5281121|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279290|H__sapiens__1_-Hs:5281121|Predicted" }, "selected": false }, { "data": { "id": "317", "source": "125", "target": "142", "networks": ["I2D-Yu-Vidal-2008-GoldStd-Yeast2Human", "I2D-BIND-Yeast2Human", "I2D-IntAct-Fly2Human", "I2D-IntAct-Mouse2Human", "I2D-BioGRID-Fly2Human", "I2D-BioGRID-Yeast2Human", "I2D-IntAct-Worm2Human", "I2D-BioGRID-Worm2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [1.0, 0.6812500357627869, 0.1365518420934677, 0.7071067690849304, 0.08643778413534164, 0.1012558862566948, 0.7071067690849304, 0.7071067690849304], "normalized_max_weight": 0.10890272340733954, "SUID": 317, "name": "H__sapiens__1_-Hs:5279290|H__sapiens__1_-Hs:5283121|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279290|H__sapiens__1_-Hs:5283121|Predicted" }, "selected": false }, { "data": { "id": "306", "source": "125", "target": "142", "networks": ["PATHWAYCOMMONS-NCI_NATURE"], "selected": false, "data_type": "Pathway", "raw_weights": [0.057332634925842285], "normalized_max_weight": 0.004950722744896847, "SUID": 306, "name": "H__sapiens__1_-Hs:5279290|H__sapiens__1_-Hs:5283121|Pathway", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279290|H__sapiens__1_-Hs:5283121|Pathway" }, "selected": false }, { "data": { "id": "277", "source": "125", "target": "71", "networks": ["Johnson-Shoemaker-2003"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.002347176894545555], "normalized_max_weight": 7.11829564738646E-5, "SUID": 277, "name": "H__sapiens__1_-Hs:5279290|H__sapiens__1_-Hs:5280913|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5279290|H__sapiens__1_-Hs:5280913|Co-localization" }, "selected": false }, { "data": { "id": "276", "source": "125", "target": "72", "networks": ["Johnson-Shoemaker-2003"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.006699025630950928], "normalized_max_weight": 2.0316170077057995E-4, "SUID": 276, "name": "H__sapiens__1_-Hs:5279290|H__sapiens__1_-Hs:5283455|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5279290|H__sapiens__1_-Hs:5283455|Co-localization" }, "selected": false }, { "data": { "id": "172", "source": "125", "target": "71", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.049758560955524445, 0.033513594418764114, 0.033932700753211975], "normalized_max_weight": 0.002588872718086365, "SUID": 172, "name": "H__sapiens__1_-Hs:5279290|H__sapiens__1_-Hs:5280913|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279290|H__sapiens__1_-Hs:5280913|Physical interactions" }, "selected": false }, { "data": { "id": "171", "source": "125", "target": "72", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.059651415795087814, 0.03957953304052353, 0.048872318118810654], "normalized_max_weight": 0.0031035849908352974, "SUID": 171, "name": "H__sapiens__1_-Hs:5279290|H__sapiens__1_-Hs:5283455|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279290|H__sapiens__1_-Hs:5283455|Physical interactions" }, "selected": false }, { "data": { "id": "149", "source": "125", "target": "142", "networks": ["IREF-BIND", "IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.30511730909347534, 0.0546371191740036, 0.04101414605975151, 0.043854501098394394], "normalized_max_weight": 0.0028426977088594246, "SUID": 149, "name": "H__sapiens__1_-Hs:5279290|H__sapiens__1_-Hs:5283121|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279290|H__sapiens__1_-Hs:5283121|Physical interactions" }, "selected": false }, { "data": { "id": "139", "source": "125", "target": "71", "networks": ["Burington-Shaughnessy-2008", "Boldrick-Relman-2002"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.009115713648498058, 0.007999932393431664], "normalized_max_weight": 2.7501826436256464E-4, "SUID": 139, "name": "H__sapiens__1_-Hs:5279290|H__sapiens__1_-Hs:5280913|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5279290|H__sapiens__1_-Hs:5280913|Co-expression" }, "selected": false }, { "data": { "id": "335", "source": "122", "target": "86", "networks": ["I2D-BioGRID-Fly2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.303769052028656], "normalized_max_weight": 2.571875969041417E-4, "SUID": 335, "name": "H__sapiens__1_-Hs:5282366|H__sapiens__1_-Hs:5296686|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5282366|H__sapiens__1_-Hs:5296686|Predicted" }, "selected": false }, { "data": { "id": "334", "source": "122", "target": "63", "networks": ["I2D-BioGRID-Fly2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.14154528081417084], "normalized_max_weight": 1.1984002446136078E-4, "SUID": 334, "name": "H__sapiens__1_-Hs:5282366|H__sapiens__1_-Hs:5280233|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5282366|H__sapiens__1_-Hs:5280233|Predicted" }, "selected": false }, { "data": { "id": "302", "source": "122", "target": "65", "networks": ["Johnson-Shoemaker-2003"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.015255771577358246], "normalized_max_weight": 4.626625827349784E-4, "SUID": 302, "name": "H__sapiens__1_-Hs:5282366|H__sapiens__1_-Hs:5291428|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5282366|H__sapiens__1_-Hs:5291428|Co-localization" }, "selected": false }, { "data": { "id": "301", "source": "122", "target": "77", "networks": ["Johnson-Shoemaker-2003"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.008910845033824444], "normalized_max_weight": 2.702396635132551E-4, "SUID": 301, "name": "H__sapiens__1_-Hs:5282366|H__sapiens__1_-Hs:5282439|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5282366|H__sapiens__1_-Hs:5282439|Co-localization" }, "selected": false }, { "data": { "id": "274", "source": "122", "target": "97", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.14898744225502014, 0.21398672461509705], "normalized_max_weight": 0.023253005577378052, "SUID": 274, "name": "H__sapiens__1_-Hs:5282366|H__sapiens__1_-Hs:5295186|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5282366|H__sapiens__1_-Hs:5295186|Shared protein domains" }, "selected": false }, { "data": { "id": "273", "source": "122", "target": "81", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.15074293315410614, 0.1902356594800949], "normalized_max_weight": 0.020672080751100722, "SUID": 273, "name": "H__sapiens__1_-Hs:5282366|H__sapiens__1_-Hs:5294341|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5282366|H__sapiens__1_-Hs:5294341|Shared protein domains" }, "selected": false }, { "data": { "id": "272", "source": "122", "target": "77", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.11952318251132965, 0.12347084283828735], "normalized_max_weight": 0.013417038848211368, "SUID": 272, "name": "H__sapiens__1_-Hs:5282366|H__sapiens__1_-Hs:5282439|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5282366|H__sapiens__1_-Hs:5282439|Shared protein domains" }, "selected": false }, { "data": { "id": "271", "source": "122", "target": "87", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.07427278161048889, 0.10689587146043777], "normalized_max_weight": 0.0116159088828489, "SUID": 271, "name": "H__sapiens__1_-Hs:5282366|H__sapiens__1_-Hs:5279580|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5282366|H__sapiens__1_-Hs:5279580|Shared protein domains" }, "selected": false }, { "data": { "id": "270", "source": "122", "target": "109", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.0735137090086937, 0.10689587146043777], "normalized_max_weight": 0.0116159088828489, "SUID": 270, "name": "H__sapiens__1_-Hs:5282366|H__sapiens__1_-Hs:5281121|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5282366|H__sapiens__1_-Hs:5281121|Shared protein domains" }, "selected": false }, { "data": { "id": "123", "source": "122", "target": "71", "networks": ["Kang-Willman-2010"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.008152053691446781], "normalized_max_weight": 5.391292865021271E-5, "SUID": 123, "name": "H__sapiens__1_-Hs:5282366|H__sapiens__1_-Hs:5280913|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5282366|H__sapiens__1_-Hs:5280913|Co-expression" }, "selected": false }, { "data": { "id": "230", "source": "109", "target": "94", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.11999291181564331, 0.1257725954055786], "normalized_max_weight": 0.013667160276917941, "SUID": 230, "name": "H__sapiens__1_-Hs:5281121|H__sapiens__1_-Hs:5284736|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5281121|H__sapiens__1_-Hs:5284736|Shared protein domains" }, "selected": false }, { "data": { "id": "229", "source": "109", "target": "128", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.10385439544916153, 0.1257725954055786], "normalized_max_weight": 0.013667160276917941, "SUID": 229, "name": "H__sapiens__1_-Hs:5281121|H__sapiens__1_-Hs:5296442|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5281121|H__sapiens__1_-Hs:5296442|Shared protein domains" }, "selected": false }, { "data": { "id": "342", "source": "108", "target": "162", "networks": ["I2D-BioGRID-Yeast2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.7129737138748169], "normalized_max_weight": 0.007310490359596367, "SUID": 342, "name": "H__sapiens__1_-Hs:5279663|H__sapiens__1_-Hs:5299500|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279663|H__sapiens__1_-Hs:5299500|Predicted" }, "selected": false }, { "data": { "id": "259", "source": "108", "target": "162", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.20157292485237122, 0.1966870278120041], "normalized_max_weight": 0.021373122855808096, "SUID": 259, "name": "H__sapiens__1_-Hs:5279663|H__sapiens__1_-Hs:5299500|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279663|H__sapiens__1_-Hs:5299500|Shared protein domains" }, "selected": false }, { "data": { "id": "258", "source": "108", "target": "141", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.2196202576160431, 0.22143642604351044], "normalized_max_weight": 0.024062532192528067, "SUID": 258, "name": "H__sapiens__1_-Hs:5279663|H__sapiens__1_-Hs:5283097|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279663|H__sapiens__1_-Hs:5283097|Shared protein domains" }, "selected": false }, { "data": { "id": "257", "source": "108", "target": "71", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.21962009370326996, 0.22143642604351044], "normalized_max_weight": 0.024062532192528067, "SUID": 257, "name": "H__sapiens__1_-Hs:5279663|H__sapiens__1_-Hs:5280913|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279663|H__sapiens__1_-Hs:5280913|Shared protein domains" }, "selected": false }, { "data": { "id": "256", "source": "108", "target": "72", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.14239594340324402, 0.14209352433681488], "normalized_max_weight": 0.015440684555812635, "SUID": 256, "name": "H__sapiens__1_-Hs:5279663|H__sapiens__1_-Hs:5283455|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279663|H__sapiens__1_-Hs:5283455|Shared protein domains" }, "selected": false }, { "data": { "id": "200", "source": "108", "target": "87", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.05392727628350258, 0.039115674793720245, 0.05472849681973457], "normalized_max_weight": 0.0028057655135134167, "SUID": 200, "name": "H__sapiens__1_-Hs:5279663|H__sapiens__1_-Hs:5279580|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279663|H__sapiens__1_-Hs:5279580|Physical interactions" }, "selected": false }, { "data": { "id": "163", "source": "108", "target": "162", "networks": ["IREF-BIND", "IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.8595324754714966, 0.6338344812393188, 0.6147916316986084, 0.624332070350647], "normalized_max_weight": 0.032977577420890296, "SUID": 163, "name": "H__sapiens__1_-Hs:5279663|H__sapiens__1_-Hs:5299500|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279663|H__sapiens__1_-Hs:5299500|Physical interactions" }, "selected": false }, { "data": { "id": "161", "source": "108", "target": "63", "networks": ["IREF-BIND", "IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.18811586499214172, 0.03641125187277794, 0.05933530256152153, 0.038618817925453186], "normalized_max_weight": 0.0025560958976464055, "SUID": 161, "name": "H__sapiens__1_-Hs:5279663|H__sapiens__1_-Hs:5280233|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279663|H__sapiens__1_-Hs:5280233|Physical interactions" }, "selected": false }, { "data": { "id": "110", "source": "108", "target": "109", "networks": ["Innocenti-Brown-2011"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.016825171187520027], "normalized_max_weight": 6.288938122894973E-7, "SUID": 110, "name": "H__sapiens__1_-Hs:5279663|H__sapiens__1_-Hs:5281121|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5279663|H__sapiens__1_-Hs:5281121|Co-expression" }, "selected": false }, { "data": { "id": "315", "source": "103", "target": "156", "networks": ["PATHWAYCOMMONS-NCI_NATURE"], "selected": false, "data_type": "Pathway", "raw_weights": [0.1349741667509079], "normalized_max_weight": 0.011655136348984095, "SUID": 315, "name": "H__sapiens__1_-Hs:5290990|H__sapiens__1_-Hs:5281807|Pathway", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5290990|H__sapiens__1_-Hs:5281807|Pathway" }, "selected": false }, { "data": { "id": "314", "source": "103", "target": "125", "networks": ["PATHWAYCOMMONS-NCI_NATURE"], "selected": false, "data_type": "Pathway", "raw_weights": [0.15516752004623413], "normalized_max_weight": 0.013398849917778188, "SUID": 314, "name": "H__sapiens__1_-Hs:5290990|H__sapiens__1_-Hs:5279290|Pathway", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5290990|H__sapiens__1_-Hs:5279290|Pathway" }, "selected": false }, { "data": { "id": "313", "source": "103", "target": "142", "networks": ["PATHWAYCOMMONS-NCI_NATURE"], "selected": false, "data_type": "Pathway", "raw_weights": [0.17454858124256134], "normalized_max_weight": 0.015072421359401322, "SUID": 313, "name": "H__sapiens__1_-Hs:5290990|H__sapiens__1_-Hs:5283121|Pathway", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5290990|H__sapiens__1_-Hs:5283121|Pathway" }, "selected": false }, { "data": { "id": "220", "source": "103", "target": "125", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.1037452295422554, 0.04909691959619522, 0.08831276744604111], "normalized_max_weight": 0.005397728335303337, "SUID": 220, "name": "H__sapiens__1_-Hs:5290990|H__sapiens__1_-Hs:5279290|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5290990|H__sapiens__1_-Hs:5279290|Physical interactions" }, "selected": false }, { "data": { "id": "219", "source": "103", "target": "142", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.08926986902952194, 0.056342508643865585, 0.10261461138725281], "normalized_max_weight": 0.004644594297737894, "SUID": 219, "name": "H__sapiens__1_-Hs:5290990|H__sapiens__1_-Hs:5283121|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5290990|H__sapiens__1_-Hs:5283121|Physical interactions" }, "selected": false }, { "data": { "id": "136", "source": "103", "target": "69", "networks": ["Arijs-Rutgeerts-2009"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.014300435781478882], "normalized_max_weight": 1.1476873560334711E-4, "SUID": 136, "name": "H__sapiens__1_-Hs:5290990|H__sapiens__1_-Hs:5279414|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5290990|H__sapiens__1_-Hs:5279414|Co-expression" }, "selected": false }, { "data": { "id": "104", "source": "103", "target": "71", "networks": ["Roth-Zlotnik-2006"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.003696625819429755], "normalized_max_weight": 8.537047074145965E-7, "SUID": 104, "name": "H__sapiens__1_-Hs:5290990|H__sapiens__1_-Hs:5280913|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5290990|H__sapiens__1_-Hs:5280913|Co-expression" }, "selected": false }, { "data": { "id": "252", "source": "97", "target": "81", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.10270464420318604, 0.17406652867794037], "normalized_max_weight": 0.018915051713901614, "SUID": 252, "name": "H__sapiens__1_-Hs:5295186|H__sapiens__1_-Hs:5294341|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5295186|H__sapiens__1_-Hs:5294341|Shared protein domains" }, "selected": false }, { "data": { "id": "251", "source": "97", "target": "77", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.12489939481019974, 0.15210576355457306], "normalized_max_weight": 0.016528670994183255, "SUID": 251, "name": "H__sapiens__1_-Hs:5295186|H__sapiens__1_-Hs:5282439|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5295186|H__sapiens__1_-Hs:5282439|Shared protein domains" }, "selected": false }, { "data": { "id": "250", "source": "97", "target": "87", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.08463994413614273, 0.13168831169605255], "normalized_max_weight": 0.01430999540673268, "SUID": 250, "name": "H__sapiens__1_-Hs:5295186|H__sapiens__1_-Hs:5279580|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5295186|H__sapiens__1_-Hs:5279580|Shared protein domains" }, "selected": false }, { "data": { "id": "249", "source": "97", "target": "109", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.08377490937709808, 0.13168831169605255], "normalized_max_weight": 0.01430999540673268, "SUID": 249, "name": "H__sapiens__1_-Hs:5295186|H__sapiens__1_-Hs:5281121|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5295186|H__sapiens__1_-Hs:5281121|Shared protein domains" }, "selected": false }, { "data": { "id": "248", "source": "97", "target": "94", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.11555685102939606, 0.11964847892522812], "normalized_max_weight": 0.013001679205929782, "SUID": 248, "name": "H__sapiens__1_-Hs:5295186|H__sapiens__1_-Hs:5284736|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5295186|H__sapiens__1_-Hs:5284736|Shared protein domains" }, "selected": false }, { "data": { "id": "247", "source": "97", "target": "128", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.10001540929079056, 0.11964847892522812], "normalized_max_weight": 0.013001679205929782, "SUID": 247, "name": "H__sapiens__1_-Hs:5295186|H__sapiens__1_-Hs:5296442|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5295186|H__sapiens__1_-Hs:5296442|Shared protein domains" }, "selected": false }, { "data": { "id": "223", "source": "97", "target": "94", "networks": ["IREF-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.182309091091156], "normalized_max_weight": 0.007853663834587838, "SUID": 223, "name": "H__sapiens__1_-Hs:5295186|H__sapiens__1_-Hs:5284736|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5295186|H__sapiens__1_-Hs:5284736|Physical interactions" }, "selected": false }, { "data": { "id": "195", "source": "97", "target": "81", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.2297309935092926, 0.09401755034923553, 0.28986331820487976], "normalized_max_weight": 0.011952602530581261, "SUID": 195, "name": "H__sapiens__1_-Hs:5295186|H__sapiens__1_-Hs:5294341|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5295186|H__sapiens__1_-Hs:5294341|Physical interactions" }, "selected": false }, { "data": { "id": "194", "source": "97", "target": "77", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.18132998049259186, 0.11715245991945267, 0.2305847406387329], "normalized_max_weight": 0.009434361252689809, "SUID": 194, "name": "H__sapiens__1_-Hs:5295186|H__sapiens__1_-Hs:5282439|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5295186|H__sapiens__1_-Hs:5282439|Physical interactions" }, "selected": false }, { "data": { "id": "193", "source": "97", "target": "87", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.052030693739652634, 0.02720838040113449, 0.06943318247795105], "normalized_max_weight": 0.0027070888092220555, "SUID": 193, "name": "H__sapiens__1_-Hs:5295186|H__sapiens__1_-Hs:5279580|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5295186|H__sapiens__1_-Hs:5279580|Physical interactions" }, "selected": false }, { "data": { "id": "192", "source": "97", "target": "128", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.20149099826812744, 0.1269974559545517, 0.2561313509941101], "normalized_max_weight": 0.010483312586603807, "SUID": 192, "name": "H__sapiens__1_-Hs:5295186|H__sapiens__1_-Hs:5296442|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5295186|H__sapiens__1_-Hs:5296442|Physical interactions" }, "selected": false }, { "data": { "id": "129", "source": "97", "target": "128", "networks": ["Arijs-Rutgeerts-2009", "Burington-Shaughnessy-2008", "Rieger-Chu-2004"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.0043296595104038715, 0.020341403782367706, 0.022579913958907127], "normalized_max_weight": 6.136938673854248E-4, "SUID": 129, "name": "H__sapiens__1_-Hs:5295186|H__sapiens__1_-Hs:5296442|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5295186|H__sapiens__1_-Hs:5296442|Co-expression" }, "selected": false }, { "data": { "id": "101", "source": "97", "target": "71", "networks": ["Roth-Zlotnik-2006"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.011553967371582985], "normalized_max_weight": 2.668291792637164E-6, "SUID": 101, "name": "H__sapiens__1_-Hs:5295186|H__sapiens__1_-Hs:5280913|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5295186|H__sapiens__1_-Hs:5280913|Co-expression" }, "selected": false }, { "data": { "id": "98", "source": "97", "target": "94", "networks": ["Chen-Brown-2002"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.012124182656407356], "normalized_max_weight": 1.0413949483363941E-4, "SUID": 98, "name": "H__sapiens__1_-Hs:5295186|H__sapiens__1_-Hs:5284736|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5295186|H__sapiens__1_-Hs:5284736|Co-expression" }, "selected": false }, { "data": { "id": "275", "source": "94", "target": "128", "networks": ["Johnson-Shoemaker-2003"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.016433533281087875], "normalized_max_weight": 4.983806235388023E-4, "SUID": 275, "name": "H__sapiens__1_-Hs:5284736|H__sapiens__1_-Hs:5296442|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5284736|H__sapiens__1_-Hs:5296442|Co-localization" }, "selected": false }, { "data": { "id": "228", "source": "94", "target": "128", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.20959779620170593, 0.23310312628746033], "normalized_max_weight": 0.02533030170640858, "SUID": 228, "name": "H__sapiens__1_-Hs:5284736|H__sapiens__1_-Hs:5296442|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5284736|H__sapiens__1_-Hs:5296442|Shared protein domains" }, "selected": false }, { "data": { "id": "338", "source": "87", "target": "63", "networks": ["I2D-BioGRID-Yeast2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.08075643330812454], "normalized_max_weight": 8.280377182013301E-4, "SUID": 338, "name": "H__sapiens__1_-Hs:5279580|H__sapiens__1_-Hs:5280233|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279580|H__sapiens__1_-Hs:5280233|Predicted" }, "selected": false }, { "data": { "id": "329", "source": "87", "target": "74", "networks": ["I2D-BIND-Mouse2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.5773502588272095], "normalized_max_weight": 0.03179980160456519, "SUID": 329, "name": "H__sapiens__1_-Hs:5279580|H__sapiens__1_-Hs:5282789|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279580|H__sapiens__1_-Hs:5282789|Predicted" }, "selected": false }, { "data": { "id": "280", "source": "87", "target": "74", "networks": ["Johnson-Shoemaker-2003"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.01490860991179943], "normalized_max_weight": 4.5213419274175125E-4, "SUID": 280, "name": "H__sapiens__1_-Hs:5279580|H__sapiens__1_-Hs:5282789|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5279580|H__sapiens__1_-Hs:5282789|Co-localization" }, "selected": false }, { "data": { "id": "234", "source": "87", "target": "109", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.13643211126327515, 0.22179476916790009], "normalized_max_weight": 0.024101471779481583, "SUID": 234, "name": "H__sapiens__1_-Hs:5279580|H__sapiens__1_-Hs:5281121|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279580|H__sapiens__1_-Hs:5281121|Shared protein domains" }, "selected": false }, { "data": { "id": "233", "source": "87", "target": "94", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.12123191356658936, 0.1257725954055786], "normalized_max_weight": 0.013667160276917941, "SUID": 233, "name": "H__sapiens__1_-Hs:5279580|H__sapiens__1_-Hs:5284736|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279580|H__sapiens__1_-Hs:5284736|Shared protein domains" }, "selected": false }, { "data": { "id": "232", "source": "87", "target": "128", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.10492675751447678, 0.1257725954055786], "normalized_max_weight": 0.013667160276917941, "SUID": 232, "name": "H__sapiens__1_-Hs:5279580|H__sapiens__1_-Hs:5296442|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279580|H__sapiens__1_-Hs:5296442|Shared protein domains" }, "selected": false }, { "data": { "id": "179", "source": "87", "target": "109", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.16236671805381775, 0.05518833175301552, 0.16061727702617645], "normalized_max_weight": 0.008447727559293104, "SUID": 179, "name": "H__sapiens__1_-Hs:5279580|H__sapiens__1_-Hs:5281121|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279580|H__sapiens__1_-Hs:5281121|Physical interactions" }, "selected": false }, { "data": { "id": "178", "source": "87", "target": "94", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.10247605293989182, 0.06643960624933243, 0.10717814415693283], "normalized_max_weight": 0.0053316947399341, "SUID": 178, "name": "H__sapiens__1_-Hs:5279580|H__sapiens__1_-Hs:5284736|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279580|H__sapiens__1_-Hs:5284736|Physical interactions" }, "selected": false }, { "data": { "id": "177", "source": "87", "target": "74", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.10395190864801407, 0.2607264816761017, 0.13234056532382965], "normalized_max_weight": 0.011231793914408157, "SUID": 177, "name": "H__sapiens__1_-Hs:5279580|H__sapiens__1_-Hs:5282789|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279580|H__sapiens__1_-Hs:5282789|Physical interactions" }, "selected": false }, { "data": { "id": "150", "source": "87", "target": "128", "networks": ["IREF-BIND", "IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.5778454542160034, 0.06866522878408432, 0.046282172203063965, 0.06943318247795105], "normalized_max_weight": 0.003572561868080674, "SUID": 150, "name": "H__sapiens__1_-Hs:5279580|H__sapiens__1_-Hs:5296442|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279580|H__sapiens__1_-Hs:5296442|Physical interactions" }, "selected": false }, { "data": { "id": "140", "source": "87", "target": "128", "networks": ["Burington-Shaughnessy-2008"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.02321333810687065], "normalized_max_weight": 7.003392386360027E-4, "SUID": 140, "name": "H__sapiens__1_-Hs:5279580|H__sapiens__1_-Hs:5296442|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5279580|H__sapiens__1_-Hs:5296442|Co-expression" }, "selected": false }, { "data": { "id": "124", "source": "87", "target": "71", "networks": ["Alizadeh-Staudt-2000", "Rieger-Chu-2004", "Boldrick-Relman-2002"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.006943127606064081, 0.006707862485200167, 0.006803165189921856], "normalized_max_weight": 9.434387668350987E-5, "SUID": 124, "name": "H__sapiens__1_-Hs:5279580|H__sapiens__1_-Hs:5280913|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5279580|H__sapiens__1_-Hs:5280913|Co-expression" }, "selected": false }, { "data": { "id": "106", "source": "87", "target": "74", "networks": ["Innocenti-Brown-2011", "Arijs-Rutgeerts-2009", "Burington-Shaughnessy-2008"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.008122173137962818, 0.007965948432683945, 0.014523955062031746], "normalized_max_weight": 4.3818323686571495E-4, "SUID": 106, "name": "H__sapiens__1_-Hs:5279580|H__sapiens__1_-Hs:5282789|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5279580|H__sapiens__1_-Hs:5282789|Co-expression" }, "selected": false }, { "data": { "id": "95", "source": "87", "target": "94", "networks": ["Chen-Brown-2002"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.013644094578921795], "normalized_max_weight": 1.1719463135606967E-4, "SUID": 95, "name": "H__sapiens__1_-Hs:5279580|H__sapiens__1_-Hs:5284736|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5279580|H__sapiens__1_-Hs:5284736|Co-expression" }, "selected": false }, { "data": { "id": "332", "source": "86", "target": "87", "networks": ["I2D-BIND-Mouse2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.5773502588272095], "normalized_max_weight": 0.03179980160456519, "SUID": 332, "name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5279580|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5279580|Predicted" }, "selected": false }, { "data": { "id": "303", "source": "86", "target": "63", "networks": ["Schadt-Shoemaker-2004"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.007088460493832827], "normalized_max_weight": 3.780860231480837E-5, "SUID": 303, "name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5280233|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5280233|Co-localization" }, "selected": false }, { "data": { "id": "295", "source": "86", "target": "83", "networks": ["Johnson-Shoemaker-2003", "Schadt-Shoemaker-2004"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.017098046839237213, 0.006797352340072393], "normalized_max_weight": 5.185333609809437E-4, "SUID": 295, "name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5286824|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5286824|Co-localization" }, "selected": false }, { "data": { "id": "294", "source": "86", "target": "125", "networks": ["Johnson-Shoemaker-2003"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.0053423428907990456], "normalized_max_weight": 1.6201751233489218E-4, "SUID": 294, "name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5279290|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5279290|Co-localization" }, "selected": false }, { "data": { "id": "293", "source": "86", "target": "71", "networks": ["Johnson-Shoemaker-2003", "Schadt-Shoemaker-2004"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.009226313792169094, 0.0065203094854950905], "normalized_max_weight": 2.7980690105137816E-4, "SUID": 293, "name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5280913|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5280913|Co-localization" }, "selected": false }, { "data": { "id": "292", "source": "86", "target": "128", "networks": ["Johnson-Shoemaker-2003"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.013921217061579227], "normalized_max_weight": 4.2218947811748853E-4, "SUID": 292, "name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5296442|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5296442|Co-localization" }, "selected": false }, { "data": { "id": "218", "source": "86", "target": "69", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.029662752524018288, 0.025365762412548065, 0.025038395076990128], "normalized_max_weight": 0.0015433141408855888, "SUID": 218, "name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5279414|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5279414|Physical interactions" }, "selected": false }, { "data": { "id": "217", "source": "86", "target": "65", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.050969552248716354, 0.05450451374053955, 0.037109266966581345], "normalized_max_weight": 0.0026518790080710553, "SUID": 217, "name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5291428|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5291428|Physical interactions" }, "selected": false }, { "data": { "id": "216", "source": "86", "target": "156", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.04097209498286247, 0.024387497454881668, 0.030565155670046806], "normalized_max_weight": 0.0021317244081633614, "SUID": 216, "name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5281807|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5281807|Physical interactions" }, "selected": false }, { "data": { "id": "215", "source": "86", "target": "97", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.06298220902681351, 0.04076141119003296, 0.07087958604097366], "normalized_max_weight": 0.0032768817976884706, "SUID": 215, "name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5295186|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5295186|Physical interactions" }, "selected": false }, { "data": { "id": "214", "source": "86", "target": "125", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.04061666131019592, 0.028202207759022713, 0.027208466082811356], "normalized_max_weight": 0.002113231659969173, "SUID": 214, "name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5279290|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5279290|Physical interactions" }, "selected": false }, { "data": { "id": "213", "source": "86", "target": "71", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.0318288579583168, 0.026445534080266953, 0.02446211315691471], "normalized_max_weight": 0.0016560137679581326, "SUID": 213, "name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5280913|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5280913|Physical interactions" }, "selected": false }, { "data": { "id": "212", "source": "86", "target": "142", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.03494950383901596, 0.03236421197652817, 0.031614746898412704], "normalized_max_weight": 0.0018183768835348035, "SUID": 212, "name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5283121|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5283121|Physical interactions" }, "selected": false }, { "data": { "id": "211", "source": "86", "target": "72", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.03815697878599167, 0.031232159584760666, 0.035232096910476685], "normalized_max_weight": 0.0019852576016406395, "SUID": 211, "name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5283455|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5283455|Physical interactions" }, "selected": false }, { "data": { "id": "210", "source": "86", "target": "128", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.0831180214881897, 0.06933622807264328, 0.07087958604097366], "normalized_max_weight": 0.004324521732138236, "SUID": 210, "name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5296442|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5296442|Physical interactions" }, "selected": false }, { "data": { "id": "165", "source": "86", "target": "87", "networks": ["IREF-BIND", "IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.1402103304862976, 0.021463431417942047, 0.014854837208986282, 0.019214339554309845], "normalized_max_weight": 0.0011167142089196348, "SUID": 165, "name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5279580|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5279580|Physical interactions" }, "selected": false }, { "data": { "id": "164", "source": "86", "target": "63", "networks": ["IREF-BIND", "IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.10620902478694916, 0.014491931535303593, 0.022533582523465157, 0.013558476231992245], "normalized_max_weight": 9.707205552341426E-4, "SUID": 164, "name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5280233|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5280233|Physical interactions" }, "selected": false }, { "data": { "id": "147", "source": "86", "target": "72", "networks": ["Boldrick-Relman-2002"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.011832223273813725], "normalized_max_weight": 1.4787681551701196E-4, "SUID": 147, "name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5283455|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5283455|Co-expression" }, "selected": false }, { "data": { "id": "135", "source": "86", "target": "125", "networks": ["Arijs-Rutgeerts-2009"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.012518366798758507], "normalized_max_weight": 1.0046666767828074E-4, "SUID": 135, "name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5279290|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5279290|Co-expression" }, "selected": false }, { "data": { "id": "119", "source": "86", "target": "63", "networks": ["Kang-Willman-2010"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.00484224408864975], "normalized_max_weight": 3.202377829432044E-5, "SUID": 119, "name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5280233|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5280233|Co-expression" }, "selected": false }, { "data": { "id": "118", "source": "86", "target": "71", "networks": ["Kang-Willman-2010", "Rieger-Chu-2004", "Boldrick-Relman-2002"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.005001578480005264, 0.005533942021429539, 0.00698672654107213], "normalized_max_weight": 8.73187437282803E-5, "SUID": 118, "name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5280913|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5280913|Co-expression" }, "selected": false }, { "data": { "id": "111", "source": "86", "target": "74", "networks": ["Innocenti-Brown-2011"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.013303428888320923], "normalized_max_weight": 4.972575920240344E-7, "SUID": 111, "name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5282789|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5282789|Co-expression" }, "selected": false }, { "data": { "id": "90", "source": "86", "target": "83", "networks": ["Wang-Maris-2006"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.011226092465221882], "normalized_max_weight": 4.02930511124885E-5, "SUID": 90, "name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5286824|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5286824|Co-expression" }, "selected": false }, { "data": { "id": "89", "source": "86", "target": "65", "networks": ["Wang-Maris-2006"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.007585135288536549], "normalized_max_weight": 2.7224810843396402E-5, "SUID": 89, "name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5291428|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5291428|Co-expression" }, "selected": false }, { "data": { "id": "88", "source": "86", "target": "87", "networks": ["Wang-Maris-2006", "Innocenti-Brown-2011", "Kang-Willman-2010"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.014475450851023197, 0.014119288884103298, 0.01622955873608589], "normalized_max_weight": 1.0733283602892317E-4, "SUID": 88, "name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5279580|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5296686|H__sapiens__1_-Hs:5279580|Co-expression" }, "selected": false }, { "data": { "id": "331", "source": "83", "target": "87", "networks": ["I2D-BIND-Mouse2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.5773502588272095], "normalized_max_weight": 0.03179980160456519, "SUID": 331, "name": "H__sapiens__1_-Hs:5286824|H__sapiens__1_-Hs:5279580|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5286824|H__sapiens__1_-Hs:5279580|Predicted" }, "selected": false }, { "data": { "id": "311", "source": "83", "target": "87", "networks": ["PATHWAYCOMMONS-NCI_NATURE"], "selected": false, "data_type": "Pathway", "raw_weights": [0.2603825628757477], "normalized_max_weight": 0.022484260108939325, "SUID": 311, "name": "H__sapiens__1_-Hs:5286824|H__sapiens__1_-Hs:5279580|Pathway", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5286824|H__sapiens__1_-Hs:5279580|Pathway" }, "selected": false }, { "data": { "id": "310", "source": "83", "target": "94", "networks": ["PATHWAYCOMMONS-NCI_NATURE"], "selected": false, "data_type": "Pathway", "raw_weights": [0.3404516577720642], "normalized_max_weight": 0.029398295889419803, "SUID": 310, "name": "H__sapiens__1_-Hs:5286824|H__sapiens__1_-Hs:5284736|Pathway", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5286824|H__sapiens__1_-Hs:5284736|Pathway" }, "selected": false }, { "data": { "id": "288", "source": "83", "target": "65", "networks": ["Johnson-Shoemaker-2003"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.010138713754713535], "normalized_max_weight": 3.074773024478316E-4, "SUID": 288, "name": "H__sapiens__1_-Hs:5286824|H__sapiens__1_-Hs:5291428|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5286824|H__sapiens__1_-Hs:5291428|Co-localization" }, "selected": false }, { "data": { "id": "287", "source": "83", "target": "125", "networks": ["Johnson-Shoemaker-2003"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.0040321010164916515], "normalized_max_weight": 1.2228173846723245E-4, "SUID": 287, "name": "H__sapiens__1_-Hs:5286824|H__sapiens__1_-Hs:5279290|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5286824|H__sapiens__1_-Hs:5279290|Co-localization" }, "selected": false }, { "data": { "id": "286", "source": "83", "target": "128", "networks": ["Johnson-Shoemaker-2003"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.009105055592954159], "normalized_max_weight": 2.761294973001423E-4, "SUID": 286, "name": "H__sapiens__1_-Hs:5286824|H__sapiens__1_-Hs:5296442|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5286824|H__sapiens__1_-Hs:5296442|Co-localization" }, "selected": false }, { "data": { "id": "224", "source": "83", "target": "109", "networks": ["IREF-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.07077880203723907], "normalized_max_weight": 0.0030490685598195187, "SUID": 224, "name": "H__sapiens__1_-Hs:5286824|H__sapiens__1_-Hs:5281121|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5286824|H__sapiens__1_-Hs:5281121|Physical interactions" }, "selected": false }, { "data": { "id": "199", "source": "83", "target": "154", "networks": ["IREF-GRID", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.018312273547053337, 0.01599881984293461], "normalized_max_weight": 9.527635944792637E-4, "SUID": 199, "name": "H__sapiens__1_-Hs:5286824|H__sapiens__1_-Hs:5284210|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5286824|H__sapiens__1_-Hs:5284210|Physical interactions" }, "selected": false }, { "data": { "id": "160", "source": "83", "target": "87", "networks": ["IREF-BIND", "IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.12189824879169464, 0.020360775291919708, 0.01271678414195776, 0.01871516741812229], "normalized_max_weight": 0.0010593444557098991, "SUID": 160, "name": "H__sapiens__1_-Hs:5286824|H__sapiens__1_-Hs:5279580|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5286824|H__sapiens__1_-Hs:5279580|Physical interactions" }, "selected": false }, { "data": { "id": "132", "source": "83", "target": "65", "networks": ["Arijs-Rutgeerts-2009"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.010490176267921925], "normalized_max_weight": 8.418934114475859E-5, "SUID": 132, "name": "H__sapiens__1_-Hs:5286824|H__sapiens__1_-Hs:5291428|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5286824|H__sapiens__1_-Hs:5291428|Co-expression" }, "selected": false }, { "data": { "id": "126", "source": "83", "target": "125", "networks": ["Alizadeh-Staudt-2000"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.015972591936588287], "normalized_max_weight": 2.1703709473312562E-4, "SUID": 126, "name": "H__sapiens__1_-Hs:5286824|H__sapiens__1_-Hs:5279290|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5286824|H__sapiens__1_-Hs:5279290|Co-expression" }, "selected": false }, { "data": { "id": "107", "source": "83", "target": "87", "networks": ["Innocenti-Brown-2011"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.009538648650050163], "normalized_max_weight": 3.5653706264039E-7, "SUID": 107, "name": "H__sapiens__1_-Hs:5286824|H__sapiens__1_-Hs:5279580|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5286824|H__sapiens__1_-Hs:5279580|Co-expression" }, "selected": false }, { "data": { "id": "85", "source": "83", "target": "62", "networks": ["Wang-Maris-2006"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.007568746339529753], "normalized_max_weight": 2.7165987102004947E-5, "SUID": 85, "name": "H__sapiens__1_-Hs:5286824|H__sapiens__1_-Hs:5285585|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5286824|H__sapiens__1_-Hs:5285585|Co-expression" }, "selected": false }, { "data": { "id": "84", "source": "83", "target": "74", "networks": ["Wang-Maris-2006", "Roth-Zlotnik-2006", "Arijs-Rutgeerts-2009", "Burington-Shaughnessy-2008"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.010388502851128578, 0.014095569029450417, 0.008791790343821049, 0.009531164541840553], "normalized_max_weight": 2.8755228945600924E-4, "SUID": 84, "name": "H__sapiens__1_-Hs:5286824|H__sapiens__1_-Hs:5282789|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5286824|H__sapiens__1_-Hs:5282789|Co-expression" }, "selected": false }, { "data": { "id": "246", "source": "81", "target": "77", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.12637169659137726, 0.13522295653820038], "normalized_max_weight": 0.014694089870425944, "SUID": 246, "name": "H__sapiens__1_-Hs:5294341|H__sapiens__1_-Hs:5282439|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5294341|H__sapiens__1_-Hs:5282439|Shared protein domains" }, "selected": false }, { "data": { "id": "245", "source": "81", "target": "87", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.10928724706172943, 0.1875777393579483], "normalized_max_weight": 0.0203832561451086, "SUID": 245, "name": "H__sapiens__1_-Hs:5294341|H__sapiens__1_-Hs:5279580|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5294341|H__sapiens__1_-Hs:5279580|Shared protein domains" }, "selected": false }, { "data": { "id": "244", "source": "81", "target": "109", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.10817031562328339, 0.1875777393579483], "normalized_max_weight": 0.0203832561451086, "SUID": 244, "name": "H__sapiens__1_-Hs:5294341|H__sapiens__1_-Hs:5281121|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5294341|H__sapiens__1_-Hs:5281121|Shared protein domains" }, "selected": false }, { "data": { "id": "243", "source": "81", "target": "94", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.11691879481077194, 0.10636690258979797], "normalized_max_weight": 0.011558428139025323, "SUID": 243, "name": "H__sapiens__1_-Hs:5294341|H__sapiens__1_-Hs:5284736|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5294341|H__sapiens__1_-Hs:5284736|Shared protein domains" }, "selected": false }, { "data": { "id": "242", "source": "81", "target": "128", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.10119376331567764, 0.10636690258979797], "normalized_max_weight": 0.011558428139025323, "SUID": 242, "name": "H__sapiens__1_-Hs:5294341|H__sapiens__1_-Hs:5296442|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5294341|H__sapiens__1_-Hs:5296442|Shared protein domains" }, "selected": false }, { "data": { "id": "191", "source": "81", "target": "77", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.27284175157546997, 0.14752864837646484, 0.26095226407051086], "normalized_max_weight": 0.0141955987762586, "SUID": 191, "name": "H__sapiens__1_-Hs:5294341|H__sapiens__1_-Hs:5282439|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5294341|H__sapiens__1_-Hs:5282439|Physical interactions" }, "selected": false }, { "data": { "id": "190", "source": "81", "target": "87", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.07828901708126068, 0.03426317870616913, 0.07857738435268402], "normalized_max_weight": 0.004073274961240024, "SUID": 190, "name": "H__sapiens__1_-Hs:5294341|H__sapiens__1_-Hs:5279580|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5294341|H__sapiens__1_-Hs:5279580|Physical interactions" }, "selected": false }, { "data": { "id": "189", "source": "81", "target": "128", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.3031774163246155, 0.15992633998394012, 0.28986331820487976], "normalized_max_weight": 0.01577392365836831, "SUID": 189, "name": "H__sapiens__1_-Hs:5294341|H__sapiens__1_-Hs:5296442|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5294341|H__sapiens__1_-Hs:5296442|Physical interactions" }, "selected": false }, { "data": { "id": "284", "source": "77", "target": "74", "networks": ["Johnson-Shoemaker-2003"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.00554632768034935], "normalized_max_weight": 1.6820376971908522E-4, "SUID": 284, "name": "H__sapiens__1_-Hs:5282439|H__sapiens__1_-Hs:5282789|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5282439|H__sapiens__1_-Hs:5282789|Co-localization" }, "selected": false }, { "data": { "id": "238", "source": "77", "target": "87", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.1310335397720337, 0.15989062190055847], "normalized_max_weight": 0.017374617652154232, "SUID": 238, "name": "H__sapiens__1_-Hs:5282439|H__sapiens__1_-Hs:5279580|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5282439|H__sapiens__1_-Hs:5279580|Shared protein domains" }, "selected": false }, { "data": { "id": "237", "source": "77", "target": "109", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.1296943575143814, 0.15989062190055847], "normalized_max_weight": 0.017374617652154232, "SUID": 237, "name": "H__sapiens__1_-Hs:5282439|H__sapiens__1_-Hs:5281121|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5282439|H__sapiens__1_-Hs:5281121|Shared protein domains" }, "selected": false }, { "data": { "id": "236", "source": "77", "target": "94", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.1950019747018814, 0.14527468383312225], "normalized_max_weight": 0.01578636730619455, "SUID": 236, "name": "H__sapiens__1_-Hs:5282439|H__sapiens__1_-Hs:5284736|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5282439|H__sapiens__1_-Hs:5284736|Shared protein domains" }, "selected": false }, { "data": { "id": "235", "source": "77", "target": "128", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.1687961220741272, 0.14527468383312225], "normalized_max_weight": 0.01578636730619455, "SUID": 235, "name": "H__sapiens__1_-Hs:5282439|H__sapiens__1_-Hs:5296442|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5282439|H__sapiens__1_-Hs:5296442|Shared protein domains" }, "selected": false }, { "data": { "id": "183", "source": "77", "target": "87", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.06179464980959892, 0.042694322764873505, 0.06250789761543274], "normalized_max_weight": 0.0032150946479092223, "SUID": 183, "name": "H__sapiens__1_-Hs:5282439|H__sapiens__1_-Hs:5279580|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5282439|H__sapiens__1_-Hs:5279580|Physical interactions" }, "selected": false }, { "data": { "id": "182", "source": "77", "target": "94", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.35713499784469604, 0.2860722839832306, 0.3559342324733734], "normalized_max_weight": 0.01858126591362597, "SUID": 182, "name": "H__sapiens__1_-Hs:5282439|H__sapiens__1_-Hs:5284736|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5282439|H__sapiens__1_-Hs:5284736|Physical interactions" }, "selected": false }, { "data": { "id": "181", "source": "77", "target": "128", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.23930232226848602, 0.19927941262722015, 0.2305847406387329], "normalized_max_weight": 0.01245058622272741, "SUID": 181, "name": "H__sapiens__1_-Hs:5282439|H__sapiens__1_-Hs:5296442|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5282439|H__sapiens__1_-Hs:5296442|Physical interactions" }, "selected": false }, { "data": { "id": "116", "source": "77", "target": "63", "networks": ["Kang-Willman-2010", "Arijs-Rutgeerts-2009"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.011176899075508118, 0.01118620578199625], "normalized_max_weight": 8.977535464068168E-5, "SUID": 116, "name": "H__sapiens__1_-Hs:5282439|H__sapiens__1_-Hs:5280233|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5282439|H__sapiens__1_-Hs:5280233|Co-expression" }, "selected": false }, { "data": { "id": "100", "source": "77", "target": "71", "networks": ["Roth-Zlotnik-2006", "Kang-Willman-2010", "Arijs-Rutgeerts-2009"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.014260176569223404, 0.011341518722474575, 0.011045072227716446], "normalized_max_weight": 8.86426814953725E-5, "SUID": 100, "name": "H__sapiens__1_-Hs:5282439|H__sapiens__1_-Hs:5280913|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5282439|H__sapiens__1_-Hs:5280913|Co-expression" }, "selected": false }, { "data": { "id": "79", "source": "77", "target": "62", "networks": ["Wang-Maris-2006", "Chen-Brown-2002", "Arijs-Rutgeerts-2009", "Rieger-Chu-2004"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.008830600418150425, 0.005559437442570925, 0.009138229303061962, 0.017577677965164185], "normalized_max_weight": 1.8758613243148562E-4, "SUID": 79, "name": "H__sapiens__1_-Hs:5282439|H__sapiens__1_-Hs:5285585|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5282439|H__sapiens__1_-Hs:5285585|Co-expression" }, "selected": false }, { "data": { "id": "78", "source": "77", "target": "74", "networks": ["Wang-Maris-2006"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.012956785038113594], "normalized_max_weight": 4.6504908400816266E-5, "SUID": 78, "name": "H__sapiens__1_-Hs:5282439|H__sapiens__1_-Hs:5282789|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5282439|H__sapiens__1_-Hs:5282789|Co-expression" }, "selected": false }, { "data": { "id": "138", "source": "72", "target": "74", "networks": ["Burington-Shaughnessy-2008", "Rieger-Chu-2004"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.013292651623487473, 0.014868023805320263], "normalized_max_weight": 4.010351925512802E-4, "SUID": 138, "name": "H__sapiens__1_-Hs:5283455|H__sapiens__1_-Hs:5282789|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5283455|H__sapiens__1_-Hs:5282789|Co-expression" }, "selected": false }, { "data": { "id": "316", "source": "71", "target": "72", "networks": ["I2D-Yu-Vidal-2008-GoldStd-Yeast2Human", "I2D-BIND-Worm2Human", "I2D-BioGRID-Yeast2Human", "I2D-vonMering-Bork-2002-High-Yeast2Human", "I2D-IntAct-Worm2Human", "I2D-Krogan-Greenblatt-2006-Core-Yeast2Human", "I2D-BioGRID-Worm2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.38926953077316284, 1.0, 0.0597471259534359, 1.0, 1.0, 0.7341316938400269, 1.0], "normalized_max_weight": 0.08260972953832166, "SUID": 316, "name": "H__sapiens__1_-Hs:5280913|H__sapiens__1_-Hs:5283455|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5280913|H__sapiens__1_-Hs:5283455|Predicted" }, "selected": false }, { "data": { "id": "231", "source": "71", "target": "72", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.17059533298015594, 0.16975143551826477], "normalized_max_weight": 0.018446149329936795, "SUID": 231, "name": "H__sapiens__1_-Hs:5280913|H__sapiens__1_-Hs:5283455|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5280913|H__sapiens__1_-Hs:5283455|Shared protein domains" }, "selected": false }, { "data": { "id": "170", "source": "71", "target": "142", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.042815856635570526, 0.03845943883061409, 0.03942793980240822], "normalized_max_weight": 0.002227652910710213, "SUID": 170, "name": "H__sapiens__1_-Hs:5280913|H__sapiens__1_-Hs:5283121|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5280913|H__sapiens__1_-Hs:5283121|Physical interactions" }, "selected": false }, { "data": { "id": "148", "source": "71", "target": "72", "networks": ["IREF-BIND", "IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.29067155718803406, 0.04674525931477547, 0.037114184349775314, 0.04393927752971649], "normalized_max_weight": 0.0024320945826400305, "SUID": 148, "name": "H__sapiens__1_-Hs:5280913|H__sapiens__1_-Hs:5283455|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5280913|H__sapiens__1_-Hs:5283455|Physical interactions" }, "selected": false }, { "data": { "id": "127", "source": "71", "target": "74", "networks": ["Arijs-Rutgeerts-2009", "Rieger-Chu-2004"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.003766627749428153, 0.004697107709944248], "normalized_max_weight": 5.012677275512505E-5, "SUID": 127, "name": "H__sapiens__1_-Hs:5280913|H__sapiens__1_-Hs:5282789|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5280913|H__sapiens__1_-Hs:5282789|Co-expression" }, "selected": false }, { "data": { "id": "73", "source": "71", "target": "72", "networks": ["Wang-Maris-2006", "Innocenti-Brown-2011", "Kang-Willman-2010", "Burington-Shaughnessy-2008", "Rieger-Chu-2004", "Boldrick-Relman-2002"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.016269955784082413, 0.01784456893801689, 0.00779074477031827, 0.014160930179059505, 0.010872180573642254, 0.00782544631510973], "normalized_max_weight": 4.272308883074758E-4, "SUID": 73, "name": "H__sapiens__1_-Hs:5280913|H__sapiens__1_-Hs:5283455|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5280913|H__sapiens__1_-Hs:5283455|Co-expression" }, "selected": false }, { "data": { "id": "326", "source": "69", "target": "62", "networks": ["I2D-Yu-Vidal-2008-GoldStd-Yeast2Human", "I2D-BIND-Yeast2Human", "I2D-BioGRID-Yeast2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.47881391644477844, 0.17000006139278412, 0.04431562125682831], "normalized_max_weight": 0.052144139506170695, "SUID": 326, "name": "H__sapiens__1_-Hs:5279414|H__sapiens__1_-Hs:5285585|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279414|H__sapiens__1_-Hs:5285585|Predicted" }, "selected": false }, { "data": { "id": "290", "source": "69", "target": "156", "networks": ["Johnson-Shoemaker-2003"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.017707867547869682], "normalized_max_weight": 5.370274255145207E-4, "SUID": 290, "name": "H__sapiens__1_-Hs:5279414|H__sapiens__1_-Hs:5281807|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5279414|H__sapiens__1_-Hs:5281807|Co-localization" }, "selected": false }, { "data": { "id": "289", "source": "69", "target": "62", "networks": ["Johnson-Shoemaker-2003"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.006646269001066685], "normalized_max_weight": 2.0156174769610794E-4, "SUID": 289, "name": "H__sapiens__1_-Hs:5279414|H__sapiens__1_-Hs:5285585|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5279414|H__sapiens__1_-Hs:5285585|Co-localization" }, "selected": false }, { "data": { "id": "261", "source": "69", "target": "156", "networks": ["INTERPRO", "PFAM"], "selected": false, "data_type": "Shared protein domains", "raw_weights": [0.013556120917201042, 0.022807899862527847], "normalized_max_weight": 0.002478435163048536, "SUID": 261, "name": "H__sapiens__1_-Hs:5279414|H__sapiens__1_-Hs:5281807|Shared protein domains", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279414|H__sapiens__1_-Hs:5281807|Shared protein domains" }, "selected": false }, { "data": { "id": "207", "source": "69", "target": "156", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.046778060495853424, 0.02779717743396759, 0.0390169695019722], "normalized_max_weight": 0.002433801185105677, "SUID": 207, "name": "H__sapiens__1_-Hs:5279414|H__sapiens__1_-Hs:5281807|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279414|H__sapiens__1_-Hs:5281807|Physical interactions" }, "selected": false }, { "data": { "id": "206", "source": "69", "target": "62", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.013865691609680653, 0.008903110399842262, 0.011739450506865978], "normalized_max_weight": 7.214137635086861E-4, "SUID": 206, "name": "H__sapiens__1_-Hs:5279414|H__sapiens__1_-Hs:5285585|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279414|H__sapiens__1_-Hs:5285585|Physical interactions" }, "selected": false }, { "data": { "id": "205", "source": "69", "target": "63", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.01654551550745964, 0.025684062391519547, 0.017307637259364128], "normalized_max_weight": 0.001106439567672004, "SUID": 205, "name": "H__sapiens__1_-Hs:5279414|H__sapiens__1_-Hs:5280233|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279414|H__sapiens__1_-Hs:5280233|Physical interactions" }, "selected": false }, { "data": { "id": "204", "source": "69", "target": "125", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.04637225717306137, 0.03214523196220398, 0.034732092171907425], "normalized_max_weight": 0.002412687770024719, "SUID": 204, "name": "H__sapiens__1_-Hs:5279414|H__sapiens__1_-Hs:5279290|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279414|H__sapiens__1_-Hs:5279290|Physical interactions" }, "selected": false }, { "data": { "id": "203", "source": "69", "target": "71", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.0363391749560833, 0.030142953619360924, 0.031226323917508125], "normalized_max_weight": 0.0018906796505964141, "SUID": 203, "name": "H__sapiens__1_-Hs:5279414|H__sapiens__1_-Hs:5280913|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279414|H__sapiens__1_-Hs:5280913|Physical interactions" }, "selected": false }, { "data": { "id": "202", "source": "69", "target": "142", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.039902035146951675, 0.03688913956284523, 0.04035678878426552], "normalized_max_weight": 0.0020760505972107985, "SUID": 202, "name": "H__sapiens__1_-Hs:5279414|H__sapiens__1_-Hs:5283121|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279414|H__sapiens__1_-Hs:5283121|Physical interactions" }, "selected": false }, { "data": { "id": "201", "source": "69", "target": "72", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.043564021587371826, 0.03559881076216698, 0.04497440159320831], "normalized_max_weight": 0.0022665789526847397, "SUID": 201, "name": "H__sapiens__1_-Hs:5279414|H__sapiens__1_-Hs:5283455|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5279414|H__sapiens__1_-Hs:5283455|Physical interactions" }, "selected": false }, { "data": { "id": "346", "source": "68", "target": "69", "networks": ["I2D-BioGRID-Yeast2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.12042930722236633], "normalized_max_weight": 0.0012348243312888213, "SUID": 346, "name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5279414|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5279414|Predicted" }, "selected": false }, { "data": { "id": "345", "source": "68", "target": "65", "networks": ["I2D-BioGRID-Yeast2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.2951207458972931], "normalized_max_weight": 0.0030260265221753427, "SUID": 345, "name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5291428|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5291428|Predicted" }, "selected": false }, { "data": { "id": "344", "source": "68", "target": "62", "networks": ["I2D-BioGRID-Yeast2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.05015693977475166], "normalized_max_weight": 5.142851939062614E-4, "SUID": 344, "name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5285585|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5285585|Predicted" }, "selected": false }, { "data": { "id": "305", "source": "68", "target": "86", "networks": ["Schadt-Shoemaker-2004"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.006712143775075674], "normalized_max_weight": 3.5801395083240725E-5, "SUID": 305, "name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5296686|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5296686|Co-localization" }, "selected": false }, { "data": { "id": "304", "source": "68", "target": "83", "networks": ["Schadt-Shoemaker-2004"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.008447015658020973], "normalized_max_weight": 4.505489676339956E-5, "SUID": 304, "name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5286824|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5286824|Co-localization" }, "selected": false }, { "data": { "id": "222", "source": "68", "target": "125", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.30179691314697266, 0.17664660513401031, 0.24549265205860138], "normalized_max_weight": 0.015702097887180404, "SUID": 222, "name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5279290|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5279290|Physical interactions" }, "selected": false }, { "data": { "id": "168", "source": "68", "target": "62", "networks": ["IREF-BIND", "IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.22397449612617493, 0.09023980051279068, 0.04892496392130852, 0.08297654241323471], "normalized_max_weight": 0.004695058561720366, "SUID": 168, "name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5285585|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5285585|Physical interactions" }, "selected": false }, { "data": { "id": "146", "source": "68", "target": "77", "networks": ["Rieger-Chu-2004"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.015041422098875046], "normalized_max_weight": 1.605196205886398E-4, "SUID": 146, "name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5282439|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5282439|Co-expression" }, "selected": false }, { "data": { "id": "145", "source": "68", "target": "72", "networks": ["Burington-Shaughnessy-2008"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.018916266039013863], "normalized_max_weight": 5.706979019823942E-4, "SUID": 145, "name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5283455|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5283455|Co-expression" }, "selected": false }, { "data": { "id": "121", "source": "68", "target": "62", "networks": ["Kang-Willman-2010", "Arijs-Rutgeerts-2009", "Burington-Shaughnessy-2008", "Rieger-Chu-2004"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.0059255314990878105, 0.007132341153919697, 0.008965079672634602, 0.012827073223888874], "normalized_max_weight": 2.7047368385099647E-4, "SUID": 121, "name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5285585|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5285585|Co-expression" }, "selected": false }, { "data": { "id": "120", "source": "68", "target": "63", "networks": ["Kang-Willman-2010"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.003901745891198516], "normalized_max_weight": 2.5803871736535835E-5, "SUID": 120, "name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5280233|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5280233|Co-expression" }, "selected": false }, { "data": { "id": "113", "source": "68", "target": "87", "networks": ["Innocenti-Brown-2011", "Kang-Willman-2010", "Rieger-Chu-2004"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.0064072320237755775, 0.010300619527697563, 0.013861660845577717], "normalized_max_weight": 1.479293995630209E-4, "SUID": 113, "name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5279580|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5279580|Co-expression" }, "selected": false }, { "data": { "id": "112", "source": "68", "target": "71", "networks": ["Innocenti-Brown-2011", "Burington-Shaughnessy-2008"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.008205410093069077, 0.006163295358419418], "normalized_max_weight": 1.859447167370859E-4, "SUID": 112, "name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5280913|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5280913|Co-expression" }, "selected": false }, { "data": { "id": "105", "source": "68", "target": "74", "networks": ["Roth-Zlotnik-2006", "Kang-Willman-2010", "Burington-Shaughnessy-2008"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.00965545792132616, 0.006573808845132589, 0.00839369185268879], "normalized_max_weight": 2.532350898605744E-4, "SUID": 105, "name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5282789|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5282789|Co-expression" }, "selected": false }, { "data": { "id": "93", "source": "68", "target": "86", "networks": ["Wang-Maris-2006", "Alizadeh-Staudt-2000", "Arijs-Rutgeerts-2009"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.008204354904592037, 0.014504978433251381, 0.008820836432278156], "normalized_max_weight": 1.970950232008466E-4, "SUID": 93, "name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5296686|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5296686|Co-expression" }, "selected": false }, { "data": { "id": "92", "source": "68", "target": "83", "networks": ["Wang-Maris-2006", "Burington-Shaughnessy-2008"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.0071724518202245235, 0.013649321161210537], "normalized_max_weight": 4.1179580230691433E-4, "SUID": 92, "name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5286824|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5286824|Co-expression" }, "selected": false }, { "data": { "id": "91", "source": "68", "target": "81", "networks": ["Wang-Maris-2006"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.010804860852658749], "normalized_max_weight": 3.878115309919641E-5, "SUID": 91, "name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5294341|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5294341|Co-expression" }, "selected": false }, { "data": { "id": "70", "source": "68", "target": "69", "networks": ["Perou-Botstein-2000"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.021772032603621483], "normalized_max_weight": 5.240859466124306E-6, "SUID": 70, "name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5279414|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5282028|H__sapiens__1_-Hs:5279414|Co-expression" }, "selected": false }, { "data": { "id": "325", "source": "65", "target": "62", "networks": ["I2D-Yu-Vidal-2008-GoldStd-Yeast2Human", "I2D-BIND-Yeast2Human", "I2D-BioGRID-Yeast2Human", "I2D-Krogan-Greenblatt-2006-Core-Yeast2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.47881391644477844, 0.35916462540626526, 0.10859863460063934, 0.7760536670684814], "normalized_max_weight": 0.07045685494076706, "SUID": 325, "name": "H__sapiens__1_-Hs:5291428|H__sapiens__1_-Hs:5285585|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5291428|H__sapiens__1_-Hs:5285585|Predicted" }, "selected": false }, { "data": { "id": "285", "source": "65", "target": "125", "networks": ["Johnson-Shoemaker-2003"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.003065116936340928], "normalized_max_weight": 9.295596168055533E-5, "SUID": 285, "name": "H__sapiens__1_-Hs:5291428|H__sapiens__1_-Hs:5279290|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5291428|H__sapiens__1_-Hs:5279290|Co-localization" }, "selected": false }, { "data": { "id": "159", "source": "65", "target": "62", "networks": ["IREF-BIND", "IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.15253159403800964, 0.02382543869316578, 0.01913050189614296, 0.017398973926901817], "normalized_max_weight": 0.001239606352046803, "SUID": 159, "name": "H__sapiens__1_-Hs:5291428|H__sapiens__1_-Hs:5285585|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5291428|H__sapiens__1_-Hs:5285585|Physical interactions" }, "selected": false }, { "data": { "id": "144", "source": "65", "target": "125", "networks": ["Burington-Shaughnessy-2008"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.010225428268313408], "normalized_max_weight": 3.084980115823191E-4, "SUID": 144, "name": "H__sapiens__1_-Hs:5291428|H__sapiens__1_-Hs:5279290|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5291428|H__sapiens__1_-Hs:5279290|Co-expression" }, "selected": false }, { "data": { "id": "131", "source": "65", "target": "87", "networks": ["Arijs-Rutgeerts-2009"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.010844521224498749], "normalized_max_weight": 8.70331511695143E-5, "SUID": 131, "name": "H__sapiens__1_-Hs:5291428|H__sapiens__1_-Hs:5279580|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5291428|H__sapiens__1_-Hs:5279580|Co-expression" }, "selected": false }, { "data": { "id": "130", "source": "65", "target": "72", "networks": ["Arijs-Rutgeerts-2009"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.009552528150379658], "normalized_max_weight": 7.666420760788005E-5, "SUID": 130, "name": "H__sapiens__1_-Hs:5291428|H__sapiens__1_-Hs:5283455|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5291428|H__sapiens__1_-Hs:5283455|Co-expression" }, "selected": false }, { "data": { "id": "117", "source": "65", "target": "71", "networks": ["Kang-Willman-2010", "Arijs-Rutgeerts-2009", "Burington-Shaughnessy-2008", "Rieger-Chu-2004"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.0055119735188782215, 0.0046419440768659115, 0.004744500387459993, 0.00344564369879663], "normalized_max_weight": 1.4314011081751683E-4, "SUID": 117, "name": "H__sapiens__1_-Hs:5291428|H__sapiens__1_-Hs:5280913|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5291428|H__sapiens__1_-Hs:5280913|Co-expression" }, "selected": false }, { "data": { "id": "102", "source": "65", "target": "74", "networks": ["Roth-Zlotnik-2006", "Arijs-Rutgeerts-2009", "Rieger-Chu-2004"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.013464078307151794, 0.004128778353333473, 0.003929656930267811], "normalized_max_weight": 4.1936662327778485E-5, "SUID": 102, "name": "H__sapiens__1_-Hs:5291428|H__sapiens__1_-Hs:5282789|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5291428|H__sapiens__1_-Hs:5282789|Co-expression" }, "selected": false }, { "data": { "id": "99", "source": "65", "target": "97", "networks": ["Chen-Brown-2002"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.0047075324691832066], "normalized_max_weight": 4.04348950479242E-5, "SUID": 99, "name": "H__sapiens__1_-Hs:5291428|H__sapiens__1_-Hs:5295186|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5291428|H__sapiens__1_-Hs:5295186|Co-expression" }, "selected": false }, { "data": { "id": "82", "source": "65", "target": "81", "networks": ["Wang-Maris-2006", "Rieger-Chu-2004"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.008569049648940563, 0.0060218567959964275], "normalized_max_weight": 6.426428045023502E-5, "SUID": 82, "name": "H__sapiens__1_-Hs:5291428|H__sapiens__1_-Hs:5294341|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5291428|H__sapiens__1_-Hs:5294341|Co-expression" }, "selected": false }, { "data": { "id": "80", "source": "65", "target": "77", "networks": ["Wang-Maris-2006", "Chen-Brown-2002", "Kang-Willman-2010", "Arijs-Rutgeerts-2009", "Burington-Shaughnessy-2008"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.007587651256471872, 0.0035824531223624945, 0.015781721100211143, 0.009196155704557896, 0.010334937833249569], "normalized_max_weight": 3.118018813221068E-4, "SUID": 80, "name": "H__sapiens__1_-Hs:5291428|H__sapiens__1_-Hs:5282439|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5291428|H__sapiens__1_-Hs:5282439|Co-expression" }, "selected": false }, { "data": { "id": "67", "source": "65", "target": "62", "networks": ["Perou-Botstein-2000", "Wang-Maris-2006", "Chen-Brown-2002", "Arijs-Rutgeerts-2009", "Burington-Shaughnessy-2008"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.003231444861739874, 0.005370500963181257, 0.0032317822333425283, 0.004700632765889168, 0.007113774307072163], "normalized_max_weight": 2.1462037295569714E-4, "SUID": 67, "name": "H__sapiens__1_-Hs:5291428|H__sapiens__1_-Hs:5285585|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5291428|H__sapiens__1_-Hs:5285585|Co-expression" }, "selected": false }, { "data": { "id": "66", "source": "65", "target": "63", "networks": ["Perou-Botstein-2000", "Chen-Brown-2002", "Kang-Willman-2010", "Arijs-Rutgeerts-2009"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.005842573009431362, 0.0049351598136126995, 0.004695619456470013, 0.005641106516122818], "normalized_max_weight": 4.5272932388376836E-5, "SUID": 66, "name": "H__sapiens__1_-Hs:5291428|H__sapiens__1_-Hs:5280233|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5291428|H__sapiens__1_-Hs:5280233|Co-expression" }, "selected": false }, { "data": { "id": "337", "source": "63", "target": "72", "networks": ["I2D-BioGRID-Yeast2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.11841275542974472], "normalized_max_weight": 0.0012141475767988579, "SUID": 337, "name": "H__sapiens__1_-Hs:5280233|H__sapiens__1_-Hs:5283455|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5280233|H__sapiens__1_-Hs:5283455|Predicted" }, "selected": false }, { "data": { "id": "318", "source": "63", "target": "71", "networks": ["I2D-Yu-Vidal-2008-GoldStd-Yeast2Human", "I2D-BIND-Yeast2Human", "I2D-BioGRID-Yeast2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.35741621255874634, 0.3489152789115906, 0.0856708362698555], "normalized_max_weight": 0.03892359893758403, "SUID": 318, "name": "H__sapiens__1_-Hs:5280233|H__sapiens__1_-Hs:5280913|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5280233|H__sapiens__1_-Hs:5280913|Predicted" }, "selected": false }, { "data": { "id": "279", "source": "63", "target": "125", "networks": ["Johnson-Shoemaker-2003"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.005231331568211317], "normalized_max_weight": 1.5865086614719683E-4, "SUID": 279, "name": "H__sapiens__1_-Hs:5280233|H__sapiens__1_-Hs:5279290|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5280233|H__sapiens__1_-Hs:5279290|Co-localization" }, "selected": false }, { "data": { "id": "278", "source": "63", "target": "71", "networks": ["Johnson-Shoemaker-2003", "Schadt-Shoemaker-2004"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.008905782364308834, 0.01475009135901928], "normalized_max_weight": 2.700861276700007E-4, "SUID": 278, "name": "H__sapiens__1_-Hs:5280233|H__sapiens__1_-Hs:5280913|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5280233|H__sapiens__1_-Hs:5280913|Co-localization" }, "selected": false }, { "data": { "id": "176", "source": "63", "target": "125", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.022655470296740532, 0.0285560991615057, 0.018807685002684593], "normalized_max_weight": 0.0012301635749447327, "SUID": 176, "name": "H__sapiens__1_-Hs:5280233|H__sapiens__1_-Hs:5279290|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5280233|H__sapiens__1_-Hs:5279290|Physical interactions" }, "selected": false }, { "data": { "id": "175", "source": "63", "target": "71", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.017753740772604942, 0.02677738480269909, 0.016909286379814148], "normalized_max_weight": 0.0011535386269061472, "SUID": 175, "name": "H__sapiens__1_-Hs:5280233|H__sapiens__1_-Hs:5280913|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5280233|H__sapiens__1_-Hs:5280913|Physical interactions" }, "selected": false }, { "data": { "id": "174", "source": "63", "target": "142", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.019494399428367615, 0.03277033194899559, 0.021853500977158546], "normalized_max_weight": 0.0014117078272667127, "SUID": 174, "name": "H__sapiens__1_-Hs:5280233|H__sapiens__1_-Hs:5283121|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5280233|H__sapiens__1_-Hs:5283121|Physical interactions" }, "selected": false }, { "data": { "id": "173", "source": "63", "target": "72", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.02128348872065544, 0.03162407502532005, 0.02435397356748581], "normalized_max_weight": 0.0013623284107344058, "SUID": 173, "name": "H__sapiens__1_-Hs:5280233|H__sapiens__1_-Hs:5283455|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5280233|H__sapiens__1_-Hs:5283455|Physical interactions" }, "selected": false }, { "data": { "id": "114", "source": "63", "target": "71", "networks": ["Kang-Willman-2010"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.0037321830168366432], "normalized_max_weight": 2.4682481778470652E-5, "SUID": 114, "name": "H__sapiens__1_-Hs:5280233|H__sapiens__1_-Hs:5280913|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5280233|H__sapiens__1_-Hs:5280913|Co-expression" }, "selected": false }, { "data": { "id": "340", "source": "62", "target": "63", "networks": ["I2D-BioGRID-Yeast2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.05598028004169464], "normalized_max_weight": 5.73994930820364E-4, "SUID": 340, "name": "H__sapiens__1_-Hs:5285585|H__sapiens__1_-Hs:5280233|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5285585|H__sapiens__1_-Hs:5280233|Predicted" }, "selected": false }, { "data": { "id": "339", "source": "62", "target": "71", "networks": ["I2D-BioGRID-Yeast2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.028245780616998672], "normalized_max_weight": 2.896186814204178E-4, "SUID": 339, "name": "H__sapiens__1_-Hs:5285585|H__sapiens__1_-Hs:5280913|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5285585|H__sapiens__1_-Hs:5280913|Predicted" }, "selected": false }, { "data": { "id": "319", "source": "62", "target": "72", "networks": ["I2D-Yu-Vidal-2008-GoldStd-Yeast2Human", "I2D-BIND-Yeast2Human", "I2D-BioGRID-Yeast2Human", "I2D-Krogan-Greenblatt-2006-NonCore-Yeast2Human"], "selected": false, "data_type": "Predicted", "raw_weights": [0.26994118094444275, 0.5231144428253174, 0.039040833711624146, 0.6417061686515808], "normalized_max_weight": 0.03475379770383363, "SUID": 319, "name": "H__sapiens__1_-Hs:5285585|H__sapiens__1_-Hs:5283455|Predicted", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5285585|H__sapiens__1_-Hs:5283455|Predicted" }, "selected": false }, { "data": { "id": "307", "source": "62", "target": "87", "networks": ["PATHWAYCOMMONS-NCI_NATURE"], "selected": false, "data_type": "Pathway", "raw_weights": [0.36705121397972107], "normalized_max_weight": 0.03169519063517397, "SUID": 307, "name": "H__sapiens__1_-Hs:5285585|H__sapiens__1_-Hs:5279580|Pathway", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5285585|H__sapiens__1_-Hs:5279580|Pathway" }, "selected": false }, { "data": { "id": "283", "source": "62", "target": "87", "networks": ["Johnson-Shoemaker-2003"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.010272949934005737], "normalized_max_weight": 3.115482900798161E-4, "SUID": 283, "name": "H__sapiens__1_-Hs:5285585|H__sapiens__1_-Hs:5279580|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5285585|H__sapiens__1_-Hs:5279580|Co-localization" }, "selected": false }, { "data": { "id": "282", "source": "62", "target": "72", "networks": ["Johnson-Shoemaker-2003"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.01088433526456356], "normalized_max_weight": 3.300898049843768E-4, "SUID": 282, "name": "H__sapiens__1_-Hs:5285585|H__sapiens__1_-Hs:5283455|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5285585|H__sapiens__1_-Hs:5283455|Co-localization" }, "selected": false }, { "data": { "id": "281", "source": "62", "target": "74", "networks": ["Johnson-Shoemaker-2003"], "selected": false, "data_type": "Co-localization", "raw_weights": [0.005523486528545618], "normalized_max_weight": 1.675110649133945E-4, "SUID": 281, "name": "H__sapiens__1_-Hs:5285585|H__sapiens__1_-Hs:5282789|Co-localization", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5285585|H__sapiens__1_-Hs:5282789|Co-localization" }, "selected": false }, { "data": { "id": "180", "source": "62", "target": "71", "networks": ["IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.0148782255128026, 0.009282099083065987, 0.01146925613284111], "normalized_max_weight": 7.740945755657897E-4, "SUID": 180, "name": "H__sapiens__1_-Hs:5285585|H__sapiens__1_-Hs:5280913|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5285585|H__sapiens__1_-Hs:5280913|Physical interactions" }, "selected": false }, { "data": { "id": "151", "source": "62", "target": "72", "networks": ["IREF-BIND", "IREF-GRID", "IREF-SMALL-SCALE-STUDIES", "BIOGRID-SMALL-SCALE-STUDIES"], "selected": false, "data_type": "Physical interactions", "raw_weights": [0.05995110422372818, 0.017836272716522217, 0.010962153784930706, 0.01651884987950325], "normalized_max_weight": 9.279978950642436E-4, "SUID": 151, "name": "H__sapiens__1_-Hs:5285585|H__sapiens__1_-Hs:5283455|Physical interactions", "highlight": 1, "shared_name": "H__sapiens__1_-Hs:5285585|H__sapiens__1_-Hs:5283455|Physical interactions" }, "selected": false }, { "data": { "id": "115", "source": "62", "target": "72", "networks": ["Kang-Willman-2010", "Arijs-Rutgeerts-2009"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.010180401615798473, 0.009063455276191235], "normalized_max_weight": 7.273913313838752E-5, "SUID": 115, "name": "H__sapiens__1_-Hs:5285585|H__sapiens__1_-Hs:5283455|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5285585|H__sapiens__1_-Hs:5283455|Co-expression" }, "selected": false }, { "data": { "id": "96", "source": "62", "target": "87", "networks": ["Chen-Brown-2002", "Alizadeh-Staudt-2000", "Boldrick-Relman-2002"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.009646126069128513, 0.007874829694628716, 0.006237672176212072], "normalized_max_weight": 1.0700393306394264E-4, "SUID": 96, "name": "H__sapiens__1_-Hs:5285585|H__sapiens__1_-Hs:5279580|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5285585|H__sapiens__1_-Hs:5279580|Co-expression" }, "selected": false }, { "data": { "id": "76", "source": "62", "target": "71", "networks": ["Wang-Maris-2006", "Kang-Willman-2010", "Alizadeh-Staudt-2000", "Arijs-Rutgeerts-2009", "Burington-Shaughnessy-2008", "Boldrick-Relman-2002"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.00837816670536995, 0.0047034649178385735, 0.014208576641976833, 0.0051415544003248215, 0.006635467056185007, 0.00395435793325305], "normalized_max_weight": 2.0018999097538024E-4, "SUID": 76, "name": "H__sapiens__1_-Hs:5285585|H__sapiens__1_-Hs:5280913|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5285585|H__sapiens__1_-Hs:5280913|Co-expression" }, "selected": false }, { "data": { "id": "75", "source": "62", "target": "74", "networks": ["Wang-Maris-2006", "Roth-Zlotnik-2006", "Kang-Willman-2010", "Arijs-Rutgeerts-2009"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.00801911111921072, 0.006974725052714348, 0.006865291390568018, 0.0038725680205971003], "normalized_max_weight": 4.5403033261539396E-5, "SUID": 75, "name": "H__sapiens__1_-Hs:5285585|H__sapiens__1_-Hs:5282789|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5285585|H__sapiens__1_-Hs:5282789|Co-expression" }, "selected": false }, { "data": { "id": "64", "source": "62", "target": "63", "networks": ["Perou-Botstein-2000"], "selected": false, "data_type": "Co-expression", "raw_weights": [0.003993421792984009], "normalized_max_weight": 9.612773775888105E-7, "SUID": 64, "name": "H__sapiens__1_-Hs:5285585|H__sapiens__1_-Hs:5280233|Co-expression", "highlight": 0, "shared_name": "H__sapiens__1_-Hs:5285585|H__sapiens__1_-Hs:5280233|Co-expression" }, "selected": false }] } } ================================================ FILE: documentation/demos/genemania-export/index.html ================================================ GeneMANIA export
================================================ FILE: documentation/demos/genemania-export/style.css ================================================ body { font: 14px helvetica neue, helvetica, arial, sans-serif; } #cy { height: 100%; width: 100%; position: absolute; left: 0; top: 0; } ================================================ FILE: documentation/demos/gpu/code.js ================================================ fetch('enrichment-map.networks.json', {mode: 'no-cors'}) .then(function(res) { return res.json() }) .then(function(data) { const nodeColor = (node) => { const nes = node.data('NES'); return nes > 0 ? 'red' : 'blue'; }; var cy = window.cy = cytoscape({ container: document.getElementById('cy'), // boxSelectionEnabled: false, // autounselectify: true, layout: { name: 'cose', animate: false }, renderer: { name: 'canvas', }, // TODO this should be under 'renderer' no? webgl: true, style: [ { selector: 'node', style: { 'height': 20, 'width': 20, 'background-color': nodeColor } }, { selector: 'node:selected', style: { 'background-color': 'yellow' } }, { selector: 'edge', style: { 'curve-style': 'haystack', 'haystack-radius': 0, 'width': 5, 'opacity': 0.5, 'line-color': '#a2efa2' } } ], elements: data.elements }); }); ================================================ FILE: documentation/demos/gpu/data.json ================================================ [{ "data": { "id": "n40", "weight": 53 }, "position": { "x": 50, "y": 45 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n41", "weight": 23 }, "position": { "x": 150, "y": 45 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n42", "weight": 0 }, "position": { "x": 250, "y": 45 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n43", "weight": 50 }, "position": { "x": 350, "y": 45 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n44", "weight": 60 }, "position": { "x": 450, "y": 45 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n45", "weight": 60 }, "position": { "x": 550, "y": 45 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n46", "weight": 39 }, "position": { "x": 50, "y": 135 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n47", "weight": 96 }, "position": { "x": 150, "y": 135 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n48", "weight": 68 }, "position": { "x": 250, "y": 135 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n49", "weight": 83 }, "position": { "x": 350, "y": 135 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n50", "weight": 77 }, "position": { "x": 450, "y": 135 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n51", "weight": 40 }, "position": { "x": 550, "y": 135 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n52", "weight": 84 }, "position": { "x": 50, "y": 225 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n53", "weight": 47 }, "position": { "x": 150, "y": 225 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n54", "weight": 27 }, "position": { "x": 250, "y": 225 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n55", "weight": 14 }, "position": { "x": 350, "y": 225 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n56", "weight": 3 }, "position": { "x": 450, "y": 225 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n57", "weight": 13 }, "position": { "x": 550, "y": 225 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n58", "weight": 60 }, "position": { "x": 50, "y": 315 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n59", "weight": 72 }, "position": { "x": 150, "y": 315 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n60", "weight": 55 }, "position": { "x": 250, "y": 315 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n61", "weight": 3 }, "position": { "x": 350, "y": 315 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n62", "weight": 65 }, "position": { "x": 450, "y": 315 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n63", "weight": 57 }, "position": { "x": 550, "y": 315 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n64", "weight": 24 }, "position": { "x": 50, "y": 405 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n65", "weight": 68 }, "position": { "x": 150, "y": 405 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n66", "weight": 33 }, "position": { "x": 250, "y": 405 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n67", "weight": 26 }, "position": { "x": 350, "y": 405 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n68", "weight": 54 }, "position": { "x": 450, "y": 405 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n69", "weight": 42 }, "position": { "x": 550, "y": 405 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e121", "weight": 19, "source": "n41", "target": "n50" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e129", "weight": 31, "source": "n65", "target": "n58" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e131", "weight": 90, "source": "n53", "target": "n43" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e132", "weight": 36, "source": "n52", "target": "n58" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e138", "weight": 65, "source": "n54", "target": "n55" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e142", "weight": 93, "source": "n40", "target": "n45" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e143", "weight": 58, "source": "n63", "target": "n68" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e144", "weight": 6, "source": "n66", "target": "n56" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e149", "weight": 59, "source": "n67", "target": "n45" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e155", "weight": 66, "source": "n43", "target": "n56" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e162", "weight": 39, "source": "n60", "target": "n63" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e164", "weight": 72, "source": "n42", "target": "n68" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e167", "weight": 45, "source": "n43", "target": "n48" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e168", "weight": 10, "source": "n61", "target": "n67" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e173", "weight": 6, "source": "n56", "target": "n40" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e176", "weight": 36, "source": "n48", "target": "n67" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e184", "weight": 59, "source": "n67", "target": "n43" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e210", "weight": 82, "source": "n59", "target": "n66" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e215", "weight": 47, "source": "n51", "target": "n51" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e216", "weight": 70, "source": "n46", "target": "n67" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e218", "weight": 33, "source": "n46", "target": "n62" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e222", "weight": 19, "source": "n49", "target": "n62" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e224", "weight": 92, "source": "n47", "target": "n56" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e234", "weight": 97, "source": "n42", "target": "n63" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e238", "weight": 73, "source": "n58", "target": "n65" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e239", "weight": 99, "source": "n47", "target": "n59" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e260", "weight": 54, "source": "n51", "target": "n45" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e261", "weight": 15, "source": "n63", "target": "n45" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e263", "weight": 43, "source": "n47", "target": "n42" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e268", "weight": 69, "source": "n44", "target": "n49" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e272", "weight": 77, "source": "n50", "target": "n61" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e273", "weight": 95, "source": "n44", "target": "n57" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e274", "weight": 70, "source": "n48", "target": "n58" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e278", "weight": 75, "source": "n57", "target": "n41" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e293", "weight": 50, "source": "n44", "target": "n63" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e295", "weight": 98, "source": "n50", "target": "n66" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e298", "weight": 76, "source": "n49", "target": "n60" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e299", "weight": 6, "source": "n42", "target": "n65" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e307", "weight": 69, "source": "n52", "target": "n47" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e308", "weight": 62, "source": "n53", "target": "n62" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e309", "weight": 66, "source": "n66", "target": "n53" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e311", "weight": 94, "source": "n65", "target": "n55" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e312", "weight": 31, "source": "n58", "target": "n42" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }] ================================================ FILE: documentation/demos/gpu/enrichment-map.networks.json ================================================ { "elements": { "nodes": [ { "data": { "id": "22a25b14-6777-4964-b662-01e96cb651f9", "name": [ "PYROPTOSIS%REACTOME%R-HSA-5620971.3" ], "description": [ "Pyroptosis" ], "pvalue": 0.0023, "gs_type": null, "gs_size": 27, "padj": 0.0325, "mcode_cluster_id": null, "NES": -1.7974 } }, { "data": { "id": "080d7999-edb3-459d-97a1-0b0c699425b5", "name": [ "MITOTIC METAPHASE AND ANAPHASE%REACTOME%R-HSA-2555396.2" ], "description": [ "Mitotic Metaphase and Anaphase" ], "pvalue": 3.6581e-7, "gs_type": null, "gs_size": 229, "padj": 0, "mcode_cluster_id": "Cluster 23", "NES": -1.8239 } }, { "data": { "id": "fb172c5a-c242-43e8-98a4-bc060890f253", "name": [ "CELL CYCLE CHECKPOINTS%REACTOME%R-HSA-69620.2" ], "description": [ "Cell Cycle Checkpoints" ], "pvalue": 1.0816e-9, "gs_type": null, "gs_size": 272, "padj": 8.9703e-8, "mcode_cluster_id": "Cluster 23", "NES": -1.9388 } }, { "data": { "id": "e6dea521-d51c-4a74-9880-b6a22b6a0eca", "name": [ "DNA STRAND ELONGATION%REACTOME DATABASE ID RELEASE 80%69190" ], "description": [ "DNA strand elongation" ], "pvalue": 0.0022, "gs_type": null, "gs_size": 32, "padj": 0.0315, "mcode_cluster_id": null, "NES": -1.7092 } }, { "data": { "id": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "name": [ "SIGNALING BY HEDGEHOG%REACTOME%R-HSA-5358351.3" ], "description": [ "Signaling by Hedgehog" ], "pvalue": 0.0005, "gs_type": null, "gs_size": 135, "padj": 0.0102, "mcode_cluster_id": "Cluster 1", "NES": -1.6313 } }, { "data": { "id": "2908220d-729c-4e08-a758-3eaf1b8b7c48", "name": [ "ANTIVIRAL INNATE IMMUNE RESPONSE%GOBP%GO:0140374" ], "description": [ "antiviral innate immune response" ], "pvalue": 0.0019, "gs_type": null, "gs_size": 22, "padj": 0.0275, "mcode_cluster_id": null, "NES": -1.7983 } }, { "data": { "id": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "name": [ "PROTEIN SYNTHESIS: ASPARAGINE%SMPDB%SMP0111854" ], "description": [ "Protein Synthesis: Asparagine" ], "pvalue": 1.739e-17, "gs_type": null, "gs_size": 80, "padj": 3.0417e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7724 } }, { "data": { "id": "1cf1ee8e-77cc-4e7d-8939-adf02b347c93", "name": [ "REGULATION OF LYMPHOCYTE ACTIVATION%GOBP%GO:0051249" ], "description": [ "regulation of lymphocyte activation" ], "pvalue": 0.0006, "gs_type": null, "gs_size": 460, "padj": 0.0115, "mcode_cluster_id": "Cluster 5", "NES": -1.4954 } }, { "data": { "id": "d38e07b4-dd9a-4f3d-9662-82e180f80cdf", "name": [ "GLYCOGENOSIS, TYPE IA. VON GIERKE DISEASE%SMPDB%SMP0000581" ], "description": [ "Glycogenosis, Type IA. Von Gierke Disease" ], "pvalue": 0.0024, "gs_type": null, "gs_size": 22, "padj": 0.0325, "mcode_cluster_id": "Cluster 6", "NES": 1.8382 } }, { "data": { "id": "c65a4eb7-a904-4015-aa2a-7953d2147d48", "name": [ "RESPONSE TO TYPE I INTERFERON%GOBP%GO:0034340" ], "description": [ "response to type I interferon" ], "pvalue": 1.2775e-7, "gs_type": null, "gs_size": 46, "padj": 0.0000078444, "mcode_cluster_id": "Cluster 12", "NES": -2.3142 } }, { "data": { "id": "7ca2e3de-9935-4044-acc8-9703f93d0780", "name": [ "M PHASE%REACTOME DATABASE ID RELEASE 80%68886" ], "description": [ "M Phase" ], "pvalue": 0.0000026514, "gs_type": null, "gs_size": 376, "padj": 0.0001, "mcode_cluster_id": "Cluster 11", "NES": -1.6597 } }, { "data": { "id": "ba7799c9-3170-4d60-b811-31eae5312965", "name": [ "MITOCHONDRIAL DNA DEPLETION SYNDROME-3%SMPDB%SMP0000536" ], "description": [ "Mitochondrial DNA Depletion Syndrome-3" ], "pvalue": 0.0043, "gs_type": null, "gs_size": 37, "padj": 0.0487, "mcode_cluster_id": "Cluster 3", "NES": -1.7147 } }, { "data": { "id": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "name": [ "ASYMMETRIC LOCALIZATION OF PCP PROTEINS%REACTOME DATABASE ID RELEASE 80%4608870" ], "description": [ "Asymmetric localization of PCP proteins" ], "pvalue": 0.0000061412, "gs_type": null, "gs_size": 64, "padj": 0.0002, "mcode_cluster_id": "Cluster 1", "NES": -2.0493 } }, { "data": { "id": "7724f727-7760-4f29-a243-887fe8858a0c", "name": [ "SEPARATION OF SISTER CHROMATIDS%REACTOME DATABASE ID RELEASE 80%2467813" ], "description": [ "Separation of Sister Chromatids" ], "pvalue": 6.1555e-9, "gs_type": null, "gs_size": 169, "padj": 4.675e-7, "mcode_cluster_id": null, "NES": -2.0439 } }, { "data": { "id": "c6b1f1db-4046-44fb-b6ad-f2cca6641d03", "name": [ "DEACTIVATION OF THE BETA-CATENIN TRANSACTIVATING COMPLEX%REACTOME DATABASE ID RELEASE 80%3769402" ], "description": [ "Deactivation of the beta-catenin transactivating complex" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 42, "padj": 0.0055, "mcode_cluster_id": null, "NES": -1.9082 } }, { "data": { "id": "9a9544c9-a4e9-4add-8e45-0b0b5382c717", "name": [ "ANTIMICROBIAL HUMORAL IMMUNE RESPONSE MEDIATED BY ANTIMICROBIAL PEPTIDE%GOBP%GO:0061844" ], "description": [ "antimicrobial humoral immune response mediated by antimicrobial peptide" ], "pvalue": 0.0004, "gs_type": null, "gs_size": 67, "padj": 0.0074, "mcode_cluster_id": null, "NES": -1.9241 } }, { "data": { "id": "3f4ee2f1-717c-42dc-a1d7-0c168250153d", "name": [ "DNA-TEMPLATED DNA REPLICATION%GOBP%GO:0006261" ], "description": [ "DNA-templated DNA replication" ], "pvalue": 0.0036, "gs_type": null, "gs_size": 128, "padj": 0.0437, "mcode_cluster_id": null, "NES": -1.5244 } }, { "data": { "id": "4db57ec5-4334-45bf-b67e-a42520b33bcb", "name": [ "REGULATION OF CYSTEINE-TYPE ENDOPEPTIDASE ACTIVITY%GOBP%GO:2000116" ], "description": [ "regulation of cysteine-type endopeptidase activity" ], "pvalue": 0.0042, "gs_type": null, "gs_size": 197, "padj": 0.0487, "mcode_cluster_id": "Cluster 13", "NES": -1.4565 } }, { "data": { "id": "912a8e15-8878-460e-912c-ea5d122f0fb9", "name": [ "GSK3B AND BTRC:CUL1-MEDIATED-DEGRADATION OF NFE2L2%REACTOME DATABASE ID RELEASE 80%9762114" ], "description": [ "GSK3B and BTRC:CUL1-mediated-degradation of NFE2L2" ], "pvalue": 0, "gs_type": null, "gs_size": 52, "padj": 0.0007, "mcode_cluster_id": "Cluster 1", "NES": -2.0186 } }, { "data": { "id": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "name": [ "PROTEIN SYNTHESIS: LYSINE%SMPDB%SMP0111874" ], "description": [ "Protein Synthesis: Lysine" ], "pvalue": 1.9283e-17, "gs_type": null, "gs_size": 80, "padj": 3.2736e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7698 } }, { "data": { "id": "c82aea32-0e25-4f32-aeb3-64b4548d9190", "name": [ "GLUCONEOGENESIS%PATHWHIZ%PW000152" ], "description": [ "Gluconeogenesis" ], "pvalue": 0.0024, "gs_type": null, "gs_size": 22, "padj": 0.0325, "mcode_cluster_id": "Cluster 6", "NES": 1.8382 } }, { "data": { "id": "80bcca87-8191-46d4-95d9-85e07b1f746f", "name": [ "HH MUTANTS ABROGATE LIGAND SECRETION%REACTOME%R-HSA-5387390.4" ], "description": [ "Hh mutants abrogate ligand secretion" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 59, "padj": 0.0033, "mcode_cluster_id": "Cluster 1", "NES": -1.8888 } }, { "data": { "id": "cddebf8c-4f9a-4ec6-b7c9-83312c9d1c51", "name": [ "PURINE METABOLISM%PATHWHIZ%PW000052" ], "description": [ "Purine Metabolism" ], "pvalue": 0.0043, "gs_type": null, "gs_size": 37, "padj": 0.0487, "mcode_cluster_id": "Cluster 3", "NES": -1.7147 } }, { "data": { "id": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "name": [ "PROTEIN SYNTHESIS: TRYPTOPHAN%PATHWHIZ%PW120526" ], "description": [ "Protein Synthesis: Tryptophan" ], "pvalue": 8.9683e-16, "gs_type": null, "gs_size": 80, "padj": 1.0564e-13, "mcode_cluster_id": "Cluster 2", "NES": 2.6955 } }, { "data": { "id": "3c6595b7-4300-40c2-9b8b-be0dea463aa6", "name": [ "REGULATION OF CELL ACTIVATION%GOBP%GO:0050865" ], "description": [ "regulation of cell activation" ], "pvalue": 0.0031, "gs_type": null, "gs_size": 573, "padj": 0.0393, "mcode_cluster_id": "Cluster 5", "NES": -1.3838 } }, { "data": { "id": "58618233-288e-4ffc-b557-24ad0847817b", "name": [ "DECTIN-1 MEDIATED NONCANONICAL NF-KB SIGNALING%REACTOME DATABASE ID RELEASE 80%5607761" ], "description": [ "Dectin-1 mediated noncanonical NF-kB signaling" ], "pvalue": 0, "gs_type": null, "gs_size": 60, "padj": 0.0007, "mcode_cluster_id": "Cluster 1", "NES": -1.9799 } }, { "data": { "id": "05636855-db9f-4249-97d1-199b2d37d4fa", "name": [ "NEGATIVE REGULATION OF LYMPHOCYTE MEDIATED IMMUNITY%GOBP%GO:0002707" ], "description": [ "negative regulation of lymphocyte mediated immunity" ], "pvalue": 0.0000060777, "gs_type": null, "gs_size": 41, "padj": 0.0002, "mcode_cluster_id": "Cluster 18", "NES": -2.1459 } }, { "data": { "id": "26acf3da-f284-42f5-bafc-38c0da898e03", "name": [ "N-GLYCAN ANTENNAE ELONGATION IN THE MEDIAL TRANS-GOLGI%REACTOME DATABASE ID RELEASE 80%975576" ], "description": [ "N-glycan antennae elongation in the medial trans-Golgi" ], "pvalue": 0.0018, "gs_type": null, "gs_size": 26, "padj": 0.0272, "mcode_cluster_id": null, "NES": -1.8104 } }, { "data": { "id": "b249707a-05f4-4096-8a17-b2851f6c5c81", "name": [ "POSITIVE REGULATION OF TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY%GOBP%GO:0030511" ], "description": [ "positive regulation of transforming growth factor beta receptor signaling pathway" ], "pvalue": 0.0025, "gs_type": null, "gs_size": 25, "padj": 0.0337, "mcode_cluster_id": null, "NES": 1.7787 } }, { "data": { "id": "862970ce-b60f-4b42-be39-777debe8ff3e", "name": [ "REGULATION OF SINGLE STRANDED VIRAL RNA REPLICATION VIA DOUBLE STRANDED DNA INTERMEDIATE%GOBP%GO:0045091" ], "description": [ "regulation of single stranded viral RNA replication via double stranded DNA intermediate" ], "pvalue": 0.0006, "gs_type": null, "gs_size": 18, "padj": 0.0109, "mcode_cluster_id": null, "NES": -1.8988 } }, { "data": { "id": "363c0045-f111-4629-85ba-f152798af40e", "name": [ "RRNA PROCESSING%REACTOME%R-HSA-72312.3" ], "description": [ "rRNA processing" ], "pvalue": 3.8211e-9, "gs_type": null, "gs_size": 203, "padj": 2.9804e-7, "mcode_cluster_id": "Cluster 2", "NES": 2.028 } }, { "data": { "id": "c0f585a3-ef38-4c45-8a8a-28aeb1006ea5", "name": [ "DISEASES OF IMMUNE SYSTEM%REACTOME DATABASE ID RELEASE 80%5260271" ], "description": [ "Diseases of Immune System" ], "pvalue": 0.0044, "gs_type": null, "gs_size": 31, "padj": 0.0488, "mcode_cluster_id": "Cluster 14", "NES": -1.6976 } }, { "data": { "id": "ca923fa4-7bdb-4533-98e9-ecad5b063ba3", "name": [ "CELLULAR RESPONSE TO DECREASED OXYGEN LEVELS%GOBP%GO:0036294" ], "description": [ "cellular response to decreased oxygen levels" ], "pvalue": 0, "gs_type": null, "gs_size": 84, "padj": 0.0005, "mcode_cluster_id": "Cluster 9", "NES": 1.9299 } }, { "data": { "id": "af2f5715-9e8f-430f-9b9c-cada4e18fe01", "name": [ "POSITIVE REGULATION OF INFLAMMATORY RESPONSE%GOBP%GO:0050729" ], "description": [ "positive regulation of inflammatory response" ], "pvalue": 0.003, "gs_type": null, "gs_size": 115, "padj": 0.0386, "mcode_cluster_id": null, "NES": -1.6482 } }, { "data": { "id": "f34a7b40-58ee-4949-90a7-ffb77dfab8b8", "name": [ "DNA IR-DAMAGE AND CELLULAR RESPONSE VIA ATR%WIKIPATHWAYS_20220510%WP4016%HOMO SAPIENS" ], "description": [ "DNA IR-damage and cellular response via ATR" ], "pvalue": 0.0044, "gs_type": null, "gs_size": 70, "padj": 0.0488, "mcode_cluster_id": null, "NES": -1.5969 } }, { "data": { "id": "83a4fbc7-24d9-4635-b17f-e8e807560969", "name": [ "RESPONSE TO INTERFERON-BETA%GOBP%GO:0035456" ], "description": [ "response to interferon-beta" ], "pvalue": 4.0234e-8, "gs_type": null, "gs_size": 28, "padj": 0.0000027004, "mcode_cluster_id": null, "NES": -2.3216 } }, { "data": { "id": "d51806b8-78ae-4131-ace1-d9be5fa5560a", "name": [ "GLYCOGENOSIS, TYPE IC%SMPDB%SMP0000574" ], "description": [ "Glycogenosis, Type IC" ], "pvalue": 0.0024, "gs_type": null, "gs_size": 22, "padj": 0.0325, "mcode_cluster_id": "Cluster 6", "NES": 1.8382 } }, { "data": { "id": "de077ab2-2978-4986-a338-5f664401cd65", "name": [ "FRUCTOSE-1,6-DIPHOSPHATASE DEFICIENCY%SMPDB%SMP0000562" ], "description": [ "Fructose-1,6-diphosphatase Deficiency" ], "pvalue": 0.0024, "gs_type": null, "gs_size": 22, "padj": 0.0325, "mcode_cluster_id": "Cluster 6", "NES": 1.8382 } }, { "data": { "id": "86687476-8248-4cb0-af40-b17620dd5594", "name": [ "ASSEMBLY OF THE PRE-REPLICATIVE COMPLEX%REACTOME%R-HSA-68867.7" ], "description": [ "Assembly of the pre-replicative complex" ], "pvalue": 1.5727e-7, "gs_type": null, "gs_size": 112, "padj": 0.000009456, "mcode_cluster_id": "Cluster 1", "NES": -2.0896 } }, { "data": { "id": "eceebf78-8b57-4a2d-9f09-9d1250316733", "name": [ "ANTIGEN PRESENTATION: FOLDING, ASSEMBLY AND PEPTIDE LOADING OF CLASS I MHC%REACTOME DATABASE ID RELEASE 80%983170" ], "description": [ "Antigen Presentation: Folding, assembly and peptide loading of class I MHC" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 29, "padj": 0.0049, "mcode_cluster_id": null, "NES": -1.9598 } }, { "data": { "id": "6488e429-b436-405e-886a-11af3c96908d", "name": [ "RESPONSE TO DECREASED OXYGEN LEVELS%GOBP%GO:0036293" ], "description": [ "response to decreased oxygen levels" ], "pvalue": 4.2368e-8, "gs_type": null, "gs_size": 148, "padj": 0.0000028109, "mcode_cluster_id": "Cluster 9", "NES": 2.0438 } }, { "data": { "id": "690d048a-ce8c-4e43-9ab0-ed9976703ad9", "name": [ "TCF DEPENDENT SIGNALING IN RESPONSE TO WNT%REACTOME DATABASE ID RELEASE 80%201681" ], "description": [ "TCF dependent signaling in response to WNT" ], "pvalue": 1.4595e-7, "gs_type": null, "gs_size": 202, "padj": 0.0000088674, "mcode_cluster_id": null, "NES": -1.9644 } }, { "data": { "id": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "name": [ "PROTEIN SYNTHESIS: HISTIDINE%PATHWHIZ%PW112929" ], "description": [ "Protein Synthesis: Histidine" ], "pvalue": 1.5261e-17, "gs_type": null, "gs_size": 80, "padj": 2.8415e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7743 } }, { "data": { "id": "a6f124e5-eec2-4060-984a-38b0e9119fd3", "name": [ "APOPTOSIS%WIKIPATHWAYS_20220510%WP254%HOMO SAPIENS" ], "description": [ "Apoptosis" ], "pvalue": 0.0004, "gs_type": null, "gs_size": 76, "padj": 0.0072, "mcode_cluster_id": null, "NES": -1.7775 } }, { "data": { "id": "55440338-4c69-4181-b0b0-8d6008f0c8bd", "name": [ "TYPE II INTERFERON SIGNALING%WIKIPATHWAYS_20220510%WP619%HOMO SAPIENS" ], "description": [ "Type II interferon signaling" ], "pvalue": 3.0399e-7, "gs_type": null, "gs_size": 32, "padj": 0, "mcode_cluster_id": null, "NES": -2.3367 } }, { "data": { "id": "62ef1f23-d43a-4f50-9fd5-9932c61259e7", "name": [ "SIGNALING BY NOTCH%REACTOME%R-HSA-157118.5" ], "description": [ "Signaling by NOTCH" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 202, "padj": 0.0045, "mcode_cluster_id": null, "NES": -1.6067 } }, { "data": { "id": "dbdced46-db1e-4fc2-b8a1-040bd10b1d54", "name": [ "REGULATION OF MORPHOGENESIS OF AN EPITHELIUM%GOBP%GO:1905330" ], "description": [ "regulation of morphogenesis of an epithelium" ], "pvalue": 0.0024, "gs_type": null, "gs_size": 39, "padj": 0.0327, "mcode_cluster_id": null, "NES": -1.7274 } }, { "data": { "id": "64583106-cb89-4f3f-9374-2a1622a58cef", "name": [ "RESPONSE TO CYTOKINE%GOBP%GO:0034097" ], "description": [ "response to cytokine" ], "pvalue": 6.4951e-14, "gs_type": null, "gs_size": 504, "padj": 7.3509e-12, "mcode_cluster_id": "Cluster 26", "NES": -2.0411 } }, { "data": { "id": "73594ad9-7be6-4b21-9a9e-50dd7f955b10", "name": [ "ECTODERM DIFFERENTIATION%WIKIPATHWAYS_20220510%WP2858%HOMO SAPIENS" ], "description": [ "Ectoderm differentiation" ], "pvalue": 0.0015, "gs_type": null, "gs_size": 120, "padj": 0.0241, "mcode_cluster_id": null, "NES": -1.6353 } }, { "data": { "id": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "name": [ "ER-PHAGOSOME PATHWAY%REACTOME DATABASE ID RELEASE 80%1236974" ], "description": [ "ER-Phagosome pathway" ], "pvalue": 1.7433e-7, "gs_type": null, "gs_size": 90, "padj": 0, "mcode_cluster_id": "Cluster 1", "NES": -2.1445 } }, { "data": { "id": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "name": [ "NEGATIVE REGULATION OF NOTCH4 SIGNALING%REACTOME%R-HSA-9604323.1" ], "description": [ "Negative regulation of NOTCH4 signaling" ], "pvalue": 0.0000047274, "gs_type": null, "gs_size": 53, "padj": 0.0002, "mcode_cluster_id": "Cluster 1", "NES": -2.0709 } }, { "data": { "id": "384f6879-1c32-46c3-8b2b-7c9ded001526", "name": [ "MYELOID LEUKOCYTE MIGRATION%GOBP%GO:0097529" ], "description": [ "myeloid leukocyte migration" ], "pvalue": 0, "gs_type": null, "gs_size": 106, "padj": 0.0004, "mcode_cluster_id": "Cluster 7", "NES": -2.0993 } }, { "data": { "id": "c167249a-c4f0-4f9e-9508-38b203d5aa6f", "name": [ "RESPONSE TO MOLECULE OF BACTERIAL ORIGIN%GOBP%GO:0002237" ], "description": [ "response to molecule of bacterial origin" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 184, "padj": 0.0031, "mcode_cluster_id": "Cluster 8", "NES": -1.7284 } }, { "data": { "id": "265dfd3c-47c4-4611-bf2c-db4e6447503d", "name": [ "REGULATION OF NIK/NF-KAPPAB SIGNALING%GOBP%GO:1901222" ], "description": [ "regulation of NIK/NF-kappaB signaling" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 81, "padj": 0.0065, "mcode_cluster_id": null, "NES": -1.781 } }, { "data": { "id": "5229abb8-d817-4b27-8b54-4679f2c8353e", "name": [ "NEGATIVE REGULATION OF IMMUNE SYSTEM PROCESS%GOBP%GO:0002683" ], "description": [ "negative regulation of immune system process" ], "pvalue": 3.6296e-7, "gs_type": null, "gs_size": 307, "padj": 0, "mcode_cluster_id": null, "NES": -1.8699 } }, { "data": { "id": "f4d86e8f-8852-44cc-9034-4e0aef1f6102", "name": [ "RESPONSE TO ORGANIC CYCLIC COMPOUND%GOBP%GO:0014070" ], "description": [ "response to organic cyclic compound" ], "pvalue": 0.0026, "gs_type": null, "gs_size": 385, "padj": 0.0347, "mcode_cluster_id": null, "NES": -1.408 } }, { "data": { "id": "f1e91a76-6b23-4bee-adcf-402d41b3bc76", "name": [ "REGULATION OF ADAPTIVE IMMUNE RESPONSE BASED ON SOMATIC RECOMBINATION OF IMMUNE RECEPTORS BUILT FROM IMMUNOGLOBULIN SUPERFAMILY DOMAINS%GOBP%GO:0002822" ], "description": [ "regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains" ], "pvalue": 0.0016, "gs_type": null, "gs_size": 133, "padj": 0.0247, "mcode_cluster_id": "Cluster 8", "NES": -1.6532 } }, { "data": { "id": "30eaa919-7be0-486b-9bd3-32ffbfc93216", "name": [ "NEGATIVE REGULATION OF IMMUNE EFFECTOR PROCESS%GOBP%GO:0002698" ], "description": [ "negative regulation of immune effector process" ], "pvalue": 0.0000013577, "gs_type": null, "gs_size": 82, "padj": 0.0001, "mcode_cluster_id": "Cluster 8", "NES": -2.1463 } }, { "data": { "id": "0391f2bd-352e-4b49-b8cc-414c80dffff9", "name": [ "ANTIGEN RECEPTOR-MEDIATED SIGNALING PATHWAY%GOBP%GO:0050851" ], "description": [ "antigen receptor-mediated signaling pathway" ], "pvalue": 0.0017, "gs_type": null, "gs_size": 204, "padj": 0.0254, "mcode_cluster_id": "Cluster 8", "NES": -1.6692 } }, { "data": { "id": "d61f0543-15b0-428e-ade4-e9346167811e", "name": [ "RUNX1 REGULATES TRANSCRIPTION OF GENES INVOLVED IN DIFFERENTIATION OF HSCS%REACTOME DATABASE ID RELEASE 80%8939236" ], "description": [ "RUNX1 regulates transcription of genes involved in differentiation of HSCs" ], "pvalue": 0.0008, "gs_type": null, "gs_size": 99, "padj": 0.0135, "mcode_cluster_id": "Cluster 1", "NES": -1.7353 } }, { "data": { "id": "6d7e36db-57e6-4071-9854-9947792f3ea4", "name": [ "CELLULAR RESPONSE TO CYTOKINE STIMULUS%GOBP%GO:0071345" ], "description": [ "cellular response to cytokine stimulus" ], "pvalue": 2.5926e-9, "gs_type": null, "gs_size": 435, "padj": 2.0499e-7, "mcode_cluster_id": "Cluster 26", "NES": -1.8842 } }, { "data": { "id": "69c93903-e7d0-4d42-a0f7-d5decb12c571", "name": [ "NEGATIVE REGULATION OF LEUKOCYTE MEDIATED IMMUNITY%GOBP%GO:0002704" ], "description": [ "negative regulation of leukocyte mediated immunity" ], "pvalue": 0.0000024919, "gs_type": null, "gs_size": 48, "padj": 0.0001, "mcode_cluster_id": "Cluster 18", "NES": -2.2463 } }, { "data": { "id": "ae0379b7-1767-45b9-bb67-825999995acc", "name": [ "HEDGEHOG LIGAND BIOGENESIS%REACTOME DATABASE ID RELEASE 80%5358346" ], "description": [ "Hedgehog ligand biogenesis" ], "pvalue": 0.0004, "gs_type": null, "gs_size": 65, "padj": 0.0076, "mcode_cluster_id": "Cluster 1", "NES": -1.82 } }, { "data": { "id": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "name": [ "SARS-COV-2 MODULATES HOST TRANSLATION MACHINERY%REACTOME%R-HSA-9754678.1" ], "description": [ "SARS-CoV-2 modulates host translation machinery" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 50, "padj": 0.0033, "mcode_cluster_id": "Cluster 2", "NES": 1.8982 } }, { "data": { "id": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "name": [ "SCF(SKP2)-MEDIATED DEGRADATION OF P27 P21%REACTOME DATABASE ID RELEASE 80%187577" ], "description": [ "SCF(Skp2)-mediated degradation of p27 p21" ], "pvalue": 0, "gs_type": null, "gs_size": 60, "padj": 0.0006, "mcode_cluster_id": "Cluster 1", "NES": -1.9658 } }, { "data": { "id": "52457d27-06bf-4049-97a8-d284bfd8321c", "name": [ "UBIQUITIN–PROTEASOME PATHWAY%SMPDB%SMP0063816" ], "description": [ "Ubiquitin–Proteasome Pathway" ], "pvalue": 0.0015, "gs_type": null, "gs_size": 28, "padj": 0.0244, "mcode_cluster_id": "Cluster 1", "NES": -1.8424 } }, { "data": { "id": "5fa05894-c36b-4edd-bb4c-cd01142d1c7f", "name": [ "HOST-PATHOGEN INTERACTION OF HUMAN CORONAVIRUSES - INTERFERON INDUCTION%WIKIPATHWAYS_20220510%WP4880%HOMO SAPIENS" ], "description": [ "Host-pathogen interaction of human coronaviruses - interferon induction" ], "pvalue": 0, "gs_type": null, "gs_size": 33, "padj": 0.0013, "mcode_cluster_id": null, "NES": -2.1025 } }, { "data": { "id": "97965a8b-8abb-435c-b3aa-b378aa701d0c", "name": [ "UROGENITAL SYSTEM DEVELOPMENT%GOBP%GO:0001655" ], "description": [ "urogenital system development" ], "pvalue": 0.0005, "gs_type": null, "gs_size": 152, "padj": 0.0099, "mcode_cluster_id": "Cluster 27", "NES": -1.6307 } }, { "data": { "id": "01c3d342-02d3-438f-8b89-10cc523c45ee", "name": [ "CELLULAR RESPONSE TO DSRNA%GOBP%GO:0071359" ], "description": [ "cellular response to dsRNA" ], "pvalue": 0.0026, "gs_type": null, "gs_size": 17, "padj": 0.0347, "mcode_cluster_id": null, "NES": -1.8144 } }, { "data": { "id": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "name": [ "REGULATION OF ACTIVATED PAK-2P34 BY PROTEASOME MEDIATED DEGRADATION%REACTOME DATABASE ID RELEASE 80%211733" ], "description": [ "Regulation of activated PAK-2p34 by proteasome mediated degradation" ], "pvalue": 0.0000093964, "gs_type": null, "gs_size": 50, "padj": 0.0003, "mcode_cluster_id": "Cluster 1", "NES": -2.0531 } }, { "data": { "id": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "name": [ "TRANSCRIPTIONAL REGULATION BY RUNX2%REACTOME DATABASE ID RELEASE 80%8878166" ], "description": [ "Transcriptional regulation by RUNX2" ], "pvalue": 0.001, "gs_type": null, "gs_size": 118, "padj": 0.0165, "mcode_cluster_id": "Cluster 1", "NES": -1.6104 } }, { "data": { "id": "548bff51-72cb-4333-a049-eb2b1449569c", "name": [ "TOLL-LIKE RECEPTOR SIGNALING PATHWAY%GOBP%GO:0002224" ], "description": [ "toll-like receptor signaling pathway" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 53, "padj": 0.0029, "mcode_cluster_id": null, "NES": -1.9279 } }, { "data": { "id": "cf42d51c-5732-4ead-ad14-b8af5a7ee209", "name": [ "REPRODUCTION%REACTOME DATABASE ID RELEASE 80%1474165" ], "description": [ "Reproduction" ], "pvalue": 0.0031, "gs_type": null, "gs_size": 110, "padj": 0.0393, "mcode_cluster_id": null, "NES": -1.6221 } }, { "data": { "id": "e8f60c2e-a8b6-4682-aa31-e95d21714e83", "name": [ "PROTEIN DEMETHYLATION%GOBP%GO:0006482" ], "description": [ "protein demethylation" ], "pvalue": 0, "gs_type": null, "gs_size": 30, "padj": 0.0007, "mcode_cluster_id": "Cluster 10", "NES": 2.1157 } }, { "data": { "id": "f95f678c-3ea4-4f54-8600-edb5b6cfe2c5", "name": [ "ANIMAL ORGAN MORPHOGENESIS%GOBP%GO:0009887" ], "description": [ "animal organ morphogenesis" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 532, "padj": 0.002, "mcode_cluster_id": "Cluster 15", "NES": -1.4934 } }, { "data": { "id": "0f02ba1f-1396-4f05-83a1-e85fa76ec8eb", "name": [ "DIGESTIVE SYSTEM DEVELOPMENT%GOBP%GO:0055123" ], "description": [ "digestive system development" ], "pvalue": 0.0013, "gs_type": null, "gs_size": 60, "padj": 0.0217, "mcode_cluster_id": "Cluster 28", "NES": -1.7693 } }, { "data": { "id": "d9afe9f6-18ee-4fed-acf4-5b66585b5d84", "name": [ "CLEAR CELL RENAL CELL CARCINOMA PATHWAYS%WIKIPATHWAYS_20220510%WP4018%HOMO SAPIENS" ], "description": [ "Clear cell renal cell carcinoma pathways" ], "pvalue": 0.0027, "gs_type": null, "gs_size": 70, "padj": 0.0353, "mcode_cluster_id": null, "NES": 1.6738 } }, { "data": { "id": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "name": [ "SIGNALING BY NOTCH4%REACTOME%R-HSA-9013694.2" ], "description": [ "Signaling by NOTCH4" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 81, "padj": 0.0018, "mcode_cluster_id": "Cluster 1", "NES": -1.8755 } }, { "data": { "id": "03e967ee-3f89-4cc6-8fa9-2f62ca71e40f", "name": [ "DEFENSE RESPONSE TO SYMBIONT%GOBP%GO:0140546" ], "description": [ "defense response to symbiont" ], "pvalue": 2.5001e-21, "gs_type": null, "gs_size": 173, "padj": 3.6076e-18, "mcode_cluster_id": null, "NES": -2.7558 } }, { "data": { "id": "e4351080-e123-4e93-98a7-49cdd09e0c1c", "name": [ "LESCH-NYHAN SYNDROME (LNS)%SMPDB%SMP0000364" ], "description": [ "Lesch-Nyhan Syndrome (LNS)" ], "pvalue": 0.0043, "gs_type": null, "gs_size": 37, "padj": 0.0487, "mcode_cluster_id": "Cluster 3", "NES": -1.7147 } }, { "data": { "id": "3edf3fff-995c-4924-b458-d068cbd087e5", "name": [ "CELLULAR RESPONSE TO TYPE I INTERFERON%GOBP%GO:0071357" ], "description": [ "cellular response to type I interferon" ], "pvalue": 0.0000073292, "gs_type": null, "gs_size": 38, "padj": 0.0003, "mcode_cluster_id": "Cluster 12", "NES": -2.1981 } }, { "data": { "id": "cec9100a-041b-436b-896d-c9938244a090", "name": [ "INFLUENZA INFECTION%REACTOME DATABASE ID RELEASE 80%168255" ], "description": [ "Influenza Infection" ], "pvalue": 2.127e-9, "gs_type": null, "gs_size": 154, "padj": 1.7052e-7, "mcode_cluster_id": "Cluster 2", "NES": 2.0838 } }, { "data": { "id": "1b5495a8-ad7e-41a8-b4ee-2181cd3e7095", "name": [ "REGULATION OF VIRAL GENOME REPLICATION%GOBP%GO:0045069" ], "description": [ "regulation of viral genome replication" ], "pvalue": 8.109e-17, "gs_type": null, "gs_size": 82, "padj": 1.1908e-14, "mcode_cluster_id": "Cluster 24", "NES": -2.7387 } }, { "data": { "id": "1c684d9f-9d8f-4487-8fee-cd986c5d844b", "name": [ "INTERFERON SIGNALING%REACTOME DATABASE ID RELEASE 80%913531" ], "description": [ "Interferon Signaling" ], "pvalue": 4.2678e-23, "gs_type": null, "gs_size": 197, "padj": 1.2317e-19, "mcode_cluster_id": "Cluster 29", "NES": -2.7398 } }, { "data": { "id": "a0c0e8e0-96ed-4337-bfcc-f28c17708a1a", "name": [ "REGULATION OF LEUKOCYTE MEDIATED IMMUNITY%GOBP%GO:0002703" ], "description": [ "regulation of leukocyte mediated immunity" ], "pvalue": 0.0004, "gs_type": null, "gs_size": 177, "padj": 0.0073, "mcode_cluster_id": "Cluster 8", "NES": -1.671 } }, { "data": { "id": "ee0413cd-3232-4384-9450-4d31d014be5d", "name": [ "PROTEIN SYNTHESIS: LEUCINE%SMPDB%SMP0111873" ], "description": [ "Protein Synthesis: Leucine" ], "pvalue": 1.739e-17, "gs_type": null, "gs_size": 80, "padj": 3.0417e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7726 } }, { "data": { "id": "23948dfa-a18c-440c-b1eb-1c4b5a4a17c4", "name": [ "RESPONSE TO LIPOPOLYSACCHARIDE%GOBP%GO:0032496" ], "description": [ "response to lipopolysaccharide" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 167, "padj": 0.0025, "mcode_cluster_id": "Cluster 8", "NES": -1.7476 } }, { "data": { "id": "24f5af60-b4d1-48a0-9356-137f00085647", "name": [ "L13A-MEDIATED TRANSLATIONAL SILENCING OF CERULOPLASMIN EXPRESSION%REACTOME%R-HSA-156827.3" ], "description": [ "L13a-mediated translational silencing of Ceruloplasmin expression" ], "pvalue": 1.6193e-19, "gs_type": null, "gs_size": 112, "padj": 1.1683e-16, "mcode_cluster_id": "Cluster 2", "NES": 2.7646 } }, { "data": { "id": "8dd921b1-19f9-43d1-8809-18810bb72059", "name": [ "REGULATION OF LYMPHOCYTE MEDIATED IMMUNITY%GOBP%GO:0002706" ], "description": [ "regulation of lymphocyte mediated immunity" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 135, "padj": 0.0059, "mcode_cluster_id": "Cluster 8", "NES": -1.7942 } }, { "data": { "id": "44f784a5-e15e-461e-9cfe-abfa587eda68", "name": [ "DAP12 INTERACTIONS%REACTOME DATABASE ID RELEASE 80%2172127" ], "description": [ "DAP12 interactions" ], "pvalue": 0.0013, "gs_type": null, "gs_size": 40, "padj": 0.0217, "mcode_cluster_id": null, "NES": -1.8412 } }, { "data": { "id": "2b09eb74-e8df-49a5-a644-23cfb0c7a2a8", "name": [ "MALIGNANT PLEURAL MESOTHELIOMA%WIKIPATHWAYS_20220510%WP5087%HOMO SAPIENS" ], "description": [ "Malignant pleural mesothelioma" ], "pvalue": 0.0023, "gs_type": null, "gs_size": 370, "padj": 0.032, "mcode_cluster_id": null, "NES": -1.3816 } }, { "data": { "id": "6c6b6cc6-ea73-49f4-a8c2-e59e83fc2446", "name": [ "POSITIVE REGULATION OF CYTOKINE PRODUCTION%GOBP%GO:0001819" ], "description": [ "positive regulation of cytokine production" ], "pvalue": 2.7742e-7, "gs_type": null, "gs_size": 396, "padj": 0, "mcode_cluster_id": null, "NES": -1.7841 } }, { "data": { "id": "8cca4f4e-2ae2-4c4c-b02d-77f747e2cda7", "name": [ "REGULATION OF VIRAL ENTRY INTO HOST CELL%GOBP%GO:0046596" ], "description": [ "regulation of viral entry into host cell" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 40, "padj": 0.004, "mcode_cluster_id": "Cluster 25", "NES": -1.992 } }, { "data": { "id": "a8d12184-7c64-42ff-aa0d-40a047927f81", "name": [ "CELLULAR RESPONSE TO BIOTIC STIMULUS%GOBP%GO:0071216" ], "description": [ "cellular response to biotic stimulus" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 152, "padj": 0.0018, "mcode_cluster_id": "Cluster 8", "NES": -1.7525 } }, { "data": { "id": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "name": [ "DNA REPLICATION%REACTOME DATABASE ID RELEASE 80%69306" ], "description": [ "DNA Replication" ], "pvalue": 1.2226e-9, "gs_type": null, "gs_size": 157, "padj": 9.9392e-8, "mcode_cluster_id": "Cluster 1", "NES": -2.1565 } }, { "data": { "id": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "name": [ "MAPK6 MAPK4 SIGNALING%REACTOME%R-HSA-5687128.3" ], "description": [ "MAPK6 MAPK4 signaling" ], "pvalue": 0.0007, "gs_type": null, "gs_size": 89, "padj": 0.0128, "mcode_cluster_id": "Cluster 1", "NES": -1.7295 } }, { "data": { "id": "b72d3cc2-23bf-47b1-b752-834d65b0a968", "name": [ "POSITIVE REGULATION OF EPIDERMAL CELL DIFFERENTIATION%GOBP%GO:0045606" ], "description": [ "positive regulation of epidermal cell differentiation" ], "pvalue": 0.0036, "gs_type": null, "gs_size": 20, "padj": 0.0443, "mcode_cluster_id": null, "NES": -1.7936 } }, { "data": { "id": "20c36645-7869-4156-aac4-b32621474a13", "name": [ "POSITIVE REGULATION OF DEFENSE RESPONSE TO VIRUS BY HOST%GOBP%GO:0002230" ], "description": [ "positive regulation of defense response to virus by host" ], "pvalue": 0.0005, "gs_type": null, "gs_size": 28, "padj": 0.0095, "mcode_cluster_id": "Cluster 30", "NES": -1.9741 } }, { "data": { "id": "196999da-b59b-4107-8e55-9193d03f97be", "name": [ "IMMUNOREGULATORY INTERACTIONS BETWEEN A LYMPHOID AND A NON-LYMPHOID CELL%REACTOME%R-HSA-198933.7" ], "description": [ "Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell" ], "pvalue": 0.0011, "gs_type": null, "gs_size": 217, "padj": 0.0186, "mcode_cluster_id": null, "NES": -1.7816 } }, { "data": { "id": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "name": [ "SELENOAMINO ACID METABOLISM%REACTOME%R-HSA-2408522.4" ], "description": [ "Selenoamino acid metabolism" ], "pvalue": 8.1109e-13, "gs_type": null, "gs_size": 117, "padj": 8.6696e-11, "mcode_cluster_id": "Cluster 2", "NES": 2.4505 } }, { "data": { "id": "842f7484-0b1c-45a0-9865-86eff85b70c5", "name": [ "REGULATION OF APOPTOSIS%REACTOME DATABASE ID RELEASE 80%169911" ], "description": [ "Regulation of Apoptosis" ], "pvalue": 0, "gs_type": null, "gs_size": 53, "padj": 0.0006, "mcode_cluster_id": "Cluster 1", "NES": -2.0243 } }, { "data": { "id": "e5310ce1-66db-419c-99f7-0aef3b11c3a0", "name": [ "POSITIVE REGULATION OF INTERFERON-ALPHA PRODUCTION%GOBP%GO:0032727" ], "description": [ "positive regulation of interferon-alpha production" ], "pvalue": 0.0018, "gs_type": null, "gs_size": 22, "padj": 0.0264, "mcode_cluster_id": "Cluster 19", "NES": -1.8159 } }, { "data": { "id": "8fde9272-c650-43e9-af45-fa7404d4432f", "name": [ "P53-DEPENDENT G1 DNA DAMAGE RESPONSE%REACTOME%R-HSA-69563.3" ], "description": [ "p53-Dependent G1 DNA Damage Response" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 66, "padj": 0.0022, "mcode_cluster_id": "Cluster 1", "NES": -1.8525 } }, { "data": { "id": "3849b052-8975-4cca-807c-5493d843ac38", "name": [ "NEGATIVE REGULATION OF TYPE I INTERFERON-MEDIATED SIGNALING PATHWAY%GOBP%GO:0060339" ], "description": [ "negative regulation of type I interferon-mediated signaling pathway" ], "pvalue": 0.0044, "gs_type": null, "gs_size": 16, "padj": 0.0488, "mcode_cluster_id": null, "NES": -1.7507 } }, { "data": { "id": "1ad43c65-fdd2-43f8-99ee-e354b75c6f50", "name": [ "STEM CELL PROLIFERATION%GOBP%GO:0072089" ], "description": [ "stem cell proliferation" ], "pvalue": 0.0008, "gs_type": null, "gs_size": 20, "padj": 0.0137, "mcode_cluster_id": null, "NES": -1.9247 } }, { "data": { "id": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "name": [ "TRANSCRIPTIONAL REGULATION BY RUNX3%REACTOME DATABASE ID RELEASE 80%8878159" ], "description": [ "Transcriptional regulation by RUNX3" ], "pvalue": 0, "gs_type": null, "gs_size": 95, "padj": 0.0007, "mcode_cluster_id": "Cluster 1", "NES": -1.8839 } }, { "data": { "id": "270d34e3-98eb-42ab-86e0-908a069943c3", "name": [ "REGULATION OF CD4-POSITIVE, ALPHA-BETA T CELL ACTIVATION%GOBP%GO:2000514" ], "description": [ "regulation of CD4-positive, alpha-beta T cell activation" ], "pvalue": 0.0037, "gs_type": null, "gs_size": 58, "padj": 0.0445, "mcode_cluster_id": null, "NES": -1.6593 } }, { "data": { "id": "3baa2895-d41a-4b91-925b-906637d521ee", "name": [ "MYOADENYLATE DEAMINASE DEFICIENCY%PATHWHIZ%PW000513" ], "description": [ "Myoadenylate Deaminase Deficiency" ], "pvalue": 0.0043, "gs_type": null, "gs_size": 37, "padj": 0.0487, "mcode_cluster_id": "Cluster 3", "NES": -1.7147 } }, { "data": { "id": "f40412c6-5ce1-4780-a6f2-a92ff01d974a", "name": [ "RESPONSE TO LIPID%GOBP%GO:0033993" ], "description": [ "response to lipid" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 428, "padj": 0.0014, "mcode_cluster_id": "Cluster 8", "NES": -1.5552 } }, { "data": { "id": "50f5ed90-547c-4a0e-adaa-f5a2d8d8b12e", "name": [ "MODULATION BY SYMBIONT OF ENTRY INTO HOST%GOBP%GO:0052372" ], "description": [ "modulation by symbiont of entry into host" ], "pvalue": 0.000009325, "gs_type": null, "gs_size": 47, "padj": 0.0003, "mcode_cluster_id": "Cluster 25", "NES": -2.0794 } }, { "data": { "id": "d0695f97-406d-467a-ac9e-3fd20d47a3e9", "name": [ "NEGATIVE REGULATION OF INNATE IMMUNE RESPONSE%GOBP%GO:0045824" ], "description": [ "negative regulation of innate immune response" ], "pvalue": 8.0897e-8, "gs_type": null, "gs_size": 62, "padj": 0.0000050754, "mcode_cluster_id": null, "NES": -2.2269 } }, { "data": { "id": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "name": [ "NIK-->NONCANONICAL NF-KB SIGNALING%REACTOME%R-HSA-5676590.1" ], "description": [ "NIK-->noncanonical NF-kB signaling" ], "pvalue": 0.0000058935, "gs_type": null, "gs_size": 59, "padj": 0.0002, "mcode_cluster_id": "Cluster 1", "NES": -2.0256 } }, { "data": { "id": "9797f4cd-c1c3-460c-8089-225da677b24a", "name": [ "TRANSLATION INITIATION COMPLEX FORMATION%REACTOME%R-HSA-72649.3" ], "description": [ "Translation initiation complex formation" ], "pvalue": 2.7297e-10, "gs_type": null, "gs_size": 59, "padj": 2.5413e-8, "mcode_cluster_id": "Cluster 2", "NES": 2.4978 } }, { "data": { "id": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "name": [ "GLI3 IS PROCESSED TO GLI3R BY THE PROTEASOME%REACTOME DATABASE ID RELEASE 80%5610785" ], "description": [ "GLI3 is processed to GLI3R by the proteasome" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 60, "padj": 0.0015, "mcode_cluster_id": "Cluster 1", "NES": -1.928 } }, { "data": { "id": "270fda1e-d43a-47df-9765-441d7990fcbb", "name": [ "CELL-SUBSTRATE ADHESION%GOBP%GO:0031589" ], "description": [ "cell-substrate adhesion" ], "pvalue": 0.0032, "gs_type": null, "gs_size": 152, "padj": 0.0402, "mcode_cluster_id": null, "NES": -1.5147 } }, { "data": { "id": "8f2732b7-bdc9-40f5-8845-a8d9beca3b22", "name": [ "ADENOSINE DEAMINASE DEFICIENCY%PATHWHIZ%PW000075" ], "description": [ "Adenosine Deaminase Deficiency" ], "pvalue": 0.0043, "gs_type": null, "gs_size": 37, "padj": 0.0487, "mcode_cluster_id": "Cluster 3", "NES": -1.7147 } }, { "data": { "id": "4e2e95c9-0874-44db-b7e5-fad6bfa0022e", "name": [ "REGULATION OF PROTEOLYSIS%GOBP%GO:0030162" ], "description": [ "regulation of proteolysis" ], "pvalue": 0.0014, "gs_type": null, "gs_size": 549, "padj": 0.023, "mcode_cluster_id": "Cluster 13", "NES": -1.3477 } }, { "data": { "id": "5b6122ca-f33a-4dad-8c7e-3fcad12405a9", "name": [ "MEASLES VIRUS INFECTION%WIKIPATHWAYS_20220510%WP4630%HOMO SAPIENS" ], "description": [ "Measles virus infection" ], "pvalue": 0.0000036125, "gs_type": null, "gs_size": 123, "padj": 0.0001, "mcode_cluster_id": null, "NES": -1.9706 } }, { "data": { "id": "afb76ddb-0557-438c-8117-cdb324e3c097", "name": [ "MORPHOGENESIS OF AN EPITHELIUM%GOBP%GO:0002009" ], "description": [ "morphogenesis of an epithelium" ], "pvalue": 0.0038, "gs_type": null, "gs_size": 220, "padj": 0.0456, "mcode_cluster_id": null, "NES": -1.4868 } }, { "data": { "id": "8df682a4-616c-43a7-bcbf-768df10b482a", "name": [ "VIRAL MRNA TRANSLATION%REACTOME%R-HSA-192823.4" ], "description": [ "Viral mRNA Translation" ], "pvalue": 3.4714e-16, "gs_type": null, "gs_size": 90, "padj": 4.2632e-14, "mcode_cluster_id": "Cluster 2", "NES": 2.6987 } }, { "data": { "id": "b8df25ab-1568-411c-9322-4ac486b72ee2", "name": [ "S PHASE%REACTOME%R-HSA-69242.2" ], "description": [ "S Phase" ], "pvalue": 0.0000014646, "gs_type": null, "gs_size": 163, "padj": 0.0001, "mcode_cluster_id": "Cluster 1", "NES": -1.9091 } }, { "data": { "id": "b570f307-7c80-461e-9c1b-ff264f6ff8af", "name": [ "REGULATION OF LEUKOCYTE CELL-CELL ADHESION%GOBP%GO:1903037" ], "description": [ "regulation of leukocyte cell-cell adhesion" ], "pvalue": 0.0032, "gs_type": null, "gs_size": 288, "padj": 0.0405, "mcode_cluster_id": "Cluster 5", "NES": -1.4619 } }, { "data": { "id": "74b5bd36-84dd-4786-be05-c3fad4a46c33", "name": [ "CELLULAR RESPONSE TO LIPID%GOBP%GO:0071396" ], "description": [ "cellular response to lipid" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 315, "padj": 0.0027, "mcode_cluster_id": "Cluster 8", "NES": -1.5928 } }, { "data": { "id": "bddc7abb-9752-416f-b00f-1f6d4745c048", "name": [ "REGULATION OF T CELL CYTOKINE PRODUCTION%GOBP%GO:0002724" ], "description": [ "regulation of T cell cytokine production" ], "pvalue": 0.0012, "gs_type": null, "gs_size": 33, "padj": 0.0194, "mcode_cluster_id": null, "NES": -1.851 } }, { "data": { "id": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "name": [ "DEGRADATION OF GLI2 BY THE PROTEASOME%REACTOME DATABASE ID RELEASE 80%5610783" ], "description": [ "Degradation of GLI2 by the proteasome" ], "pvalue": 0.0000058269, "gs_type": null, "gs_size": 60, "padj": 0.0002, "mcode_cluster_id": "Cluster 1", "NES": -2.0273 } }, { "data": { "id": "6a073b52-0b0c-457e-86cd-2b8ee3c5e8cf", "name": [ "HDMS DEMETHYLATE HISTONES%REACTOME%R-HSA-3214842.3" ], "description": [ "HDMs demethylate histones" ], "pvalue": 0.0016, "gs_type": null, "gs_size": 26, "padj": 0.0245, "mcode_cluster_id": "Cluster 10", "NES": 1.8514 } }, { "data": { "id": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "name": [ "ANTIGEN PROCESSING-CROSS PRESENTATION%REACTOME DATABASE ID RELEASE 80%1236975" ], "description": [ "Antigen processing-Cross presentation" ], "pvalue": 4.076e-7, "gs_type": null, "gs_size": 106, "padj": 0, "mcode_cluster_id": "Cluster 1", "NES": -2.0628 } }, { "data": { "id": "9464a3a6-0956-41bd-bb18-9f7de5881805", "name": [ "MEMBRANE DOCKING%GOBP%GO:0022406" ], "description": [ "membrane docking" ], "pvalue": 0.0012, "gs_type": null, "gs_size": 83, "padj": 0.0205, "mcode_cluster_id": null, "NES": 1.6642 } }, { "data": { "id": "f85deb8c-0d5b-4ab1-a4b0-834fe5d99833", "name": [ "REGULATION OF MAPK CASCADE%GOBP%GO:0043408" ], "description": [ "regulation of MAPK cascade" ], "pvalue": 0.002, "gs_type": null, "gs_size": 538, "padj": 0.0291, "mcode_cluster_id": null, "NES": -1.3492 } }, { "data": { "id": "58ef2adb-271d-407d-809d-d4fd53a316f0", "name": [ "ANTIGEN PROCESSING AND PRESENTATION%GOBP%GO:0019882" ], "description": [ "antigen processing and presentation" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 82, "padj": 0.0017, "mcode_cluster_id": "Cluster 31", "NES": -1.9386 } }, { "data": { "id": "0b287a39-9629-4455-988e-99703244b949", "name": [ "REGULATION OF CELL ADHESION%GOBP%GO:0030155" ], "description": [ "regulation of cell adhesion" ], "pvalue": 0, "gs_type": null, "gs_size": 621, "padj": 0.0009, "mcode_cluster_id": null, "NES": -1.4853 } }, { "data": { "id": "59c6cc56-810e-4e4b-a18f-9db6437930ec", "name": [ "SIGNALING BY WNT%REACTOME DATABASE ID RELEASE 80%195721" ], "description": [ "Signaling by WNT" ], "pvalue": 0.0000082187, "gs_type": null, "gs_size": 298, "padj": 0.0003, "mcode_cluster_id": null, "NES": -1.6718 } }, { "data": { "id": "85007193-a6ac-428a-8560-a369fd4bcde6", "name": [ "TNFR2 NON-CANONICAL NF-KB PATHWAY%REACTOME%R-HSA-5668541.3" ], "description": [ "TNFR2 non-canonical NF-kB pathway" ], "pvalue": 0.0000064072, "gs_type": null, "gs_size": 100, "padj": 0.0002, "mcode_cluster_id": "Cluster 1", "NES": -1.934 } }, { "data": { "id": "d55293b0-3d8d-406f-a31a-c364d22340bd", "name": [ "NEGATIVE REGULATION OF CYTOKINE PRODUCTION%GOBP%GO:0001818" ], "description": [ "negative regulation of cytokine production" ], "pvalue": 0.0043, "gs_type": null, "gs_size": 221, "padj": 0.0487, "mcode_cluster_id": null, "NES": -1.473 } }, { "data": { "id": "a04a9e6b-ab27-4122-b0d7-aff3c3b4b979", "name": [ "NETWORK MAP OF SARS-COV-2 SIGNALING PATHWAY%WIKIPATHWAYS_20220510%WP5115%HOMO SAPIENS" ], "description": [ "Network map of SARS-CoV-2 signaling pathway" ], "pvalue": 7.5555e-10, "gs_type": null, "gs_size": 201, "padj": 6.6076e-8, "mcode_cluster_id": null, "NES": -2.2396 } }, { "data": { "id": "a0bc0504-0aa3-493e-a98b-01a74812198f", "name": [ "REGULATION OF APC C ACTIVATORS BETWEEN G1 S AND EARLY ANAPHASE%REACTOME DATABASE ID RELEASE 80%176408" ], "description": [ "Regulation of APC C activators between G1 S and early anaphase" ], "pvalue": 5.0627e-7, "gs_type": null, "gs_size": 81, "padj": 0, "mcode_cluster_id": "Cluster 1", "NES": -2.1133 } }, { "data": { "id": "d86061a3-3499-4177-b910-06ab47193df9", "name": [ "APC C-MEDIATED DEGRADATION OF CELL CYCLE PROTEINS%REACTOME DATABASE ID RELEASE 80%174143" ], "description": [ "APC C-mediated degradation of cell cycle proteins" ], "pvalue": 3.9324e-8, "gs_type": null, "gs_size": 88, "padj": 0.0000026703, "mcode_cluster_id": "Cluster 1", "NES": -2.1956 } }, { "data": { "id": "753dfe0f-6f61-4a49-90c1-4b3708665dbf", "name": [ "POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS%GOBP%GO:0002684" ], "description": [ "positive regulation of immune system process" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 784, "padj": 0.0025, "mcode_cluster_id": null, "NES": -1.4782 } }, { "data": { "id": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "name": [ "P53-INDEPENDENT DNA DAMAGE RESPONSE%REACTOME%R-HSA-69610.4" ], "description": [ "p53-Independent DNA Damage Response" ], "pvalue": 0, "gs_type": null, "gs_size": 52, "padj": 0.0005, "mcode_cluster_id": "Cluster 1", "NES": -2.0428 } }, { "data": { "id": "c45b1aa5-384d-47a0-a7f9-6f53b71b4f2f", "name": [ "TRAF6 MEDIATED NF-KB ACTIVATION%REACTOME DATABASE ID RELEASE 80%933542" ], "description": [ "TRAF6 mediated NF-kB activation" ], "pvalue": 0.0029, "gs_type": null, "gs_size": 25, "padj": 0.0369, "mcode_cluster_id": null, "NES": -1.8611 } }, { "data": { "id": "dfc986b3-0550-4514-b5cd-3ffb33a16784", "name": [ "REGULATION OF INTERLEUKIN-12 PRODUCTION%GOBP%GO:0032655" ], "description": [ "regulation of interleukin-12 production" ], "pvalue": 0.0007, "gs_type": null, "gs_size": 51, "padj": 0.0128, "mcode_cluster_id": null, "NES": -1.8778 } }, { "data": { "id": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "name": [ "UCH PROTEINASES%REACTOME%R-HSA-5689603.2" ], "description": [ "UCH proteinases" ], "pvalue": 0.0036, "gs_type": null, "gs_size": 96, "padj": 0.0437, "mcode_cluster_id": "Cluster 1", "NES": -1.5981 } }, { "data": { "id": "1f3bae29-3389-49e1-b7c5-500f8b863b80", "name": [ "RESPONSE TO DSRNA%GOBP%GO:0043331" ], "description": [ "response to dsRNA" ], "pvalue": 0.0038, "gs_type": null, "gs_size": 38, "padj": 0.0458, "mcode_cluster_id": "Cluster 12", "NES": -1.7192 } }, { "data": { "id": "36267ac9-7439-4c18-997b-02dda8ff0f28", "name": [ "DIGESTIVE TRACT DEVELOPMENT%GOBP%GO:0048565" ], "description": [ "digestive tract development" ], "pvalue": 0.0018, "gs_type": null, "gs_size": 58, "padj": 0.0266, "mcode_cluster_id": "Cluster 28", "NES": -1.7922 } }, { "data": { "id": "de92908d-dff2-4bac-827a-0606c7dd1158", "name": [ "ENDOGENOUS TLR SIGNALING%PATHWAY INTERACTION DATABASE NCI-NATURE CURATED DATA%ENDOGENOUS TLR SIGNALING" ], "description": [ "Endogenous TLR signaling" ], "pvalue": 0.0017, "gs_type": null, "gs_size": 25, "padj": 0.0255, "mcode_cluster_id": "Cluster 14", "NES": -1.865 } }, { "data": { "id": "9b45383f-4e68-4ffa-a477-21d4f8675759", "name": [ "PURINE NUCLEOSIDE DIPHOSPHATE METABOLIC PROCESS%GOBP%GO:0009135" ], "description": [ "purine nucleoside diphosphate metabolic process" ], "pvalue": 0.0007, "gs_type": null, "gs_size": 40, "padj": 0.0131, "mcode_cluster_id": "Cluster 4", "NES": 1.8293 } }, { "data": { "id": "f97b81a8-1862-43e0-8494-7bbe4766e167", "name": [ "LEUKOCYTE MIGRATION%GOBP%GO:0050900" ], "description": [ "leukocyte migration" ], "pvalue": 0.0016, "gs_type": null, "gs_size": 188, "padj": 0.0245, "mcode_cluster_id": "Cluster 7", "NES": -1.6526 } }, { "data": { "id": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "name": [ "G2 M TRANSITION%REACTOME DATABASE ID RELEASE 80%69275" ], "description": [ "G2 M Transition" ], "pvalue": 0.0014, "gs_type": null, "gs_size": 181, "padj": 0.0224, "mcode_cluster_id": null, "NES": -1.5677 } }, { "data": { "id": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "name": [ "HH MUTANTS ARE DEGRADED BY ERAD%REACTOME%R-HSA-5362768.2" ], "description": [ "Hh mutants are degraded by ERAD" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 56, "padj": 0.0021, "mcode_cluster_id": "Cluster 1", "NES": -1.9413 } }, { "data": { "id": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "name": [ "SIGNALING BY ROBO RECEPTORS%REACTOME%R-HSA-376176.5" ], "description": [ "Signaling by ROBO receptors" ], "pvalue": 0.0045, "gs_type": null, "gs_size": 217, "padj": 0.0491, "mcode_cluster_id": "Cluster 2", "NES": 1.3872 } }, { "data": { "id": "522be236-f0fc-4665-b943-5236dbb99052", "name": [ "NEGATIVE REGULATION OF RESPONSE TO WOUNDING%GOBP%GO:1903035" ], "description": [ "negative regulation of response to wounding" ], "pvalue": 0.0036, "gs_type": null, "gs_size": 68, "padj": 0.0443, "mcode_cluster_id": null, "NES": -1.6692 } }, { "data": { "id": "8bb2fe83-aaa4-4490-b610-fdd2a0a8826e", "name": [ "CHROMOSOME ORGANIZATION INVOLVED IN MEIOTIC CELL CYCLE%GOBP%GO:0070192" ], "description": [ "chromosome organization involved in meiotic cell cycle" ], "pvalue": 0.0044, "gs_type": null, "gs_size": 52, "padj": 0.0488, "mcode_cluster_id": null, "NES": -1.6815 } }, { "data": { "id": "a31fb885-5d37-4b2b-a6e5-41936b5cecc1", "name": [ "CHEMOTAXIS%GOBP%GO:0006935" ], "description": [ "chemotaxis" ], "pvalue": 0, "gs_type": null, "gs_size": 378, "padj": 0.0012, "mcode_cluster_id": "Cluster 20", "NES": -1.6291 } }, { "data": { "id": "b15aeda3-04c6-41d3-b5bf-b302b6105dc0", "name": [ "RESPONSE TO EXTERNAL BIOTIC STIMULUS%GOBP%GO:0043207" ], "description": [ "response to external biotic stimulus" ], "pvalue": 1.0354e-18, "gs_type": null, "gs_size": 927, "padj": 3.9841e-16, "mcode_cluster_id": "Cluster 8", "NES": -2.1205 } }, { "data": { "id": "9ee865fe-76a5-4d86-a7e1-0ab08de7033d", "name": [ "REGULATION OF INTERFERON-BETA PRODUCTION%GOBP%GO:0032648" ], "description": [ "regulation of interferon-beta production" ], "pvalue": 0, "gs_type": null, "gs_size": 48, "padj": 0.0009, "mcode_cluster_id": "Cluster 19", "NES": -2.0107 } }, { "data": { "id": "057d3a77-a0db-4b92-9c08-a000751d7954", "name": [ "ACTIVATION OF APC C AND APC C:CDC20 MEDIATED DEGRADATION OF MITOTIC PROTEINS%REACTOME DATABASE ID RELEASE 80%176814" ], "description": [ "Activation of APC C and APC C:Cdc20 mediated degradation of mitotic proteins" ], "pvalue": 1.6846e-7, "gs_type": null, "gs_size": 77, "padj": 0.0000098218, "mcode_cluster_id": "Cluster 1", "NES": -2.1384 } }, { "data": { "id": "90f6b6c4-3e27-47a9-87a0-25ceb66a9b48", "name": [ "ROS AND RNS PRODUCTION IN PHAGOCYTES%REACTOME%R-HSA-1222556.9" ], "description": [ "ROS and RNS production in phagocytes" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 36, "padj": 0.0052, "mcode_cluster_id": "Cluster 22", "NES": 1.9944 } }, { "data": { "id": "3136e982-a9dc-495e-87e3-01fe57148a84", "name": [ "REGULATION OF RUNX3 EXPRESSION AND ACTIVITY%REACTOME DATABASE ID RELEASE 80%8941858" ], "description": [ "Regulation of RUNX3 expression and activity" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 55, "padj": 0.0015, "mcode_cluster_id": "Cluster 1", "NES": -1.9743 } }, { "data": { "id": "e445c615-3699-4210-b6b5-e615a4e82d2c", "name": [ "PROTEIN SYNTHESIS: CYSTEINE%PATHWHIZ%PW112918" ], "description": [ "Protein Synthesis: Cysteine" ], "pvalue": 5.945e-18, "gs_type": null, "gs_size": 80, "padj": 1.5288e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7925 } }, { "data": { "id": "bdfea551-b193-4b01-ae9c-25648ca3c317", "name": [ "REGULATION OF IMMUNE RESPONSE%GOBP%GO:0050776" ], "description": [ "regulation of immune response" ], "pvalue": 5.4919e-12, "gs_type": null, "gs_size": 783, "padj": 5.5613e-10, "mcode_cluster_id": "Cluster 8", "NES": -1.8556 } }, { "data": { "id": "19351445-20f2-486c-8288-9bb7909bab20", "name": [ "RESPONSE TO INTERFERON-GAMMA%GOBP%GO:0034341" ], "description": [ "response to interferon-gamma" ], "pvalue": 7.1054e-7, "gs_type": null, "gs_size": 87, "padj": 0, "mcode_cluster_id": null, "NES": -2.1967 } }, { "data": { "id": "e5659519-1ff7-448c-915e-aabcc7ee6854", "name": [ "AUTODEGRADATION OF THE E3 UBIQUITIN LIGASE COP1%REACTOME DATABASE ID RELEASE 80%349425" ], "description": [ "Autodegradation of the E3 ubiquitin ligase COP1" ], "pvalue": 0.0000052754, "gs_type": null, "gs_size": 52, "padj": 0.0002, "mcode_cluster_id": "Cluster 1", "NES": -2.1011 } }, { "data": { "id": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "name": [ "DNA REPLICATION PRE-INITIATION%REACTOME DATABASE ID RELEASE 80%69002" ], "description": [ "DNA Replication Pre-Initiation" ], "pvalue": 1.8289e-8, "gs_type": null, "gs_size": 129, "padj": 0.0000013363, "mcode_cluster_id": "Cluster 1", "NES": -2.1171 } }, { "data": { "id": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "name": [ "KEAP1-NFE2L2 PATHWAY%REACTOME DATABASE ID RELEASE 80%9755511" ], "description": [ "KEAP1-NFE2L2 pathway" ], "pvalue": 0.0021, "gs_type": null, "gs_size": 101, "padj": 0.0301, "mcode_cluster_id": "Cluster 1", "NES": -1.6507 } }, { "data": { "id": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "name": [ "PROTEIN SYNTHESIS: METHIONINE%PATHWHIZ%PW112933" ], "description": [ "Protein Synthesis: Methionine" ], "pvalue": 5.687e-17, "gs_type": null, "gs_size": 80, "padj": 8.8717e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7475 } }, { "data": { "id": "b5d08fd6-8c62-4f6b-b3ea-2c9316d7a8b1", "name": [ "DNA DAMAGE BYPASS%REACTOME DATABASE ID RELEASE 80%73893" ], "description": [ "DNA Damage Bypass" ], "pvalue": 0.0026, "gs_type": null, "gs_size": 48, "padj": 0.034, "mcode_cluster_id": "Cluster 32", "NES": -1.65 } }, { "data": { "id": "7025ac72-3299-4bfb-9afd-d4c25d6f2b35", "name": [ "GLAND DEVELOPMENT%GOBP%GO:0048732" ], "description": [ "gland development" ], "pvalue": 0.0016, "gs_type": null, "gs_size": 128, "padj": 0.0245, "mcode_cluster_id": null, "NES": -1.6147 } }, { "data": { "id": "ac084453-3de1-49b9-838a-c34e34084aa3", "name": [ "POSITIVE REGULATION OF INTERLEUKIN-12 PRODUCTION%GOBP%GO:0032735" ], "description": [ "positive regulation of interleukin-12 production" ], "pvalue": 0.0029, "gs_type": null, "gs_size": 34, "padj": 0.0369, "mcode_cluster_id": null, "NES": -1.7632 } }, { "data": { "id": "af5b9119-d987-4c84-8d56-e08a68613613", "name": [ "REGULATION OF TUMOR NECROSIS FACTOR SUPERFAMILY CYTOKINE PRODUCTION%GOBP%GO:1903555" ], "description": [ "regulation of tumor necrosis factor superfamily cytokine production" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 133, "padj": 0.0015, "mcode_cluster_id": "Cluster 16", "NES": -1.8352 } }, { "data": { "id": "0f5d0944-2dbd-4054-ac04-0e48a1cf5af5", "name": [ "OVERVIEW OF PROINFLAMMATORY AND PROFIBROTIC MEDIATORS%WIKIPATHWAYS_20220510%WP5095%HOMO SAPIENS" ], "description": [ "Overview of proinflammatory and profibrotic mediators" ], "pvalue": 0.0027, "gs_type": null, "gs_size": 127, "padj": 0.0349, "mcode_cluster_id": null, "NES": -1.7175 } }, { "data": { "id": "82c3d253-ed57-4346-b09e-42eeccffa60c", "name": [ "REGULATION OF BIOLOGICAL PROCESS INVOLVED IN SYMBIOTIC INTERACTION%GOBP%GO:0043903" ], "description": [ "regulation of biological process involved in symbiotic interaction" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 52, "padj": 0.0017, "mcode_cluster_id": "Cluster 25", "NES": -1.9975 } }, { "data": { "id": "d57edeeb-f70b-4110-a33e-12d8b06bed9c", "name": [ "REGULATION OF INTERFERON-GAMMA PRODUCTION%GOBP%GO:0032649" ], "description": [ "regulation of interferon-gamma production" ], "pvalue": 0.0011, "gs_type": null, "gs_size": 89, "padj": 0.0192, "mcode_cluster_id": null, "NES": -1.7456 } }, { "data": { "id": "3281366b-d686-411d-9f64-ce068dbc793e", "name": [ "POSITIVE REGULATION OF T CELL MEDIATED IMMUNITY%GOBP%GO:0002711" ], "description": [ "positive regulation of T cell mediated immunity" ], "pvalue": 0.0037, "gs_type": null, "gs_size": 49, "padj": 0.0448, "mcode_cluster_id": "Cluster 8", "NES": -1.6909 } }, { "data": { "id": "37b7a69c-a26b-4d83-8f43-9b42b9c6168e", "name": [ "POSITIVE REGULATION OF LEUKOCYTE MEDIATED IMMUNITY%GOBP%GO:0002705" ], "description": [ "positive regulation of leukocyte mediated immunity" ], "pvalue": 0.0027, "gs_type": null, "gs_size": 105, "padj": 0.0349, "mcode_cluster_id": "Cluster 8", "NES": -1.6101 } }, { "data": { "id": "70dc2a0f-dec6-4de4-b504-61c65a84c8d7", "name": [ "CELLULAR RESPONSE TO MOLECULE OF BACTERIAL ORIGIN%GOBP%GO:0071219" ], "description": [ "cellular response to molecule of bacterial origin" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 132, "padj": 0.0014, "mcode_cluster_id": "Cluster 8", "NES": -1.8027 } }, { "data": { "id": "328ca91a-a7c1-42f5-be44-d20d3d77dd18", "name": [ "NEGATIVE REGULATION OF RESPONSE TO EXTERNAL STIMULUS%GOBP%GO:0032102" ], "description": [ "negative regulation of response to external stimulus" ], "pvalue": 0.0000021704, "gs_type": null, "gs_size": 302, "padj": 0.0001, "mcode_cluster_id": null, "NES": -1.7843 } }, { "data": { "id": "2397885d-fcd1-4e58-97b3-225648b8409e", "name": [ "APC C:CDC20 MEDIATED DEGRADATION OF SECURIN%REACTOME DATABASE ID RELEASE 80%174154" ], "description": [ "APC C:Cdc20 mediated degradation of Securin" ], "pvalue": 0.0000015575, "gs_type": null, "gs_size": 68, "padj": 0.0001, "mcode_cluster_id": "Cluster 1", "NES": -2.0741 } }, { "data": { "id": "8eb0c7aa-fc44-4379-8cb1-37fee77ce2c4", "name": [ "AMPLIFICATION OF SIGNAL FROM THE KINETOCHORES%REACTOME%R-HSA-141424.2" ], "description": [ "Amplification of signal from the kinetochores" ], "pvalue": 0.0016, "gs_type": null, "gs_size": 92, "padj": 0.0246, "mcode_cluster_id": "Cluster 11", "NES": -1.6088 } }, { "data": { "id": "04609060-2e47-4d26-96a3-82cc75c3d54f", "name": [ "POSITIVE REGULATION OF EPIDERMIS DEVELOPMENT%GOBP%GO:0045684" ], "description": [ "positive regulation of epidermis development" ], "pvalue": 0.0038, "gs_type": null, "gs_size": 24, "padj": 0.0453, "mcode_cluster_id": null, "NES": -1.7682 } }, { "data": { "id": "6b1a95ef-3536-4d95-962f-3d14a4550825", "name": [ "ACTIVATION OF IMMUNE RESPONSE%GOBP%GO:0002253" ], "description": [ "activation of immune response" ], "pvalue": 0.0012, "gs_type": null, "gs_size": 316, "padj": 0.0194, "mcode_cluster_id": "Cluster 8", "NES": -1.6243 } }, { "data": { "id": "684c84ca-ba13-4d6a-bb35-83a6b7505837", "name": [ "TYPE I INTERFERON SIGNALING PATHWAY%GOBP%GO:0060337" ], "description": [ "type I interferon signaling pathway" ], "pvalue": 0, "gs_type": null, "gs_size": 37, "padj": 0.0006, "mcode_cluster_id": "Cluster 12", "NES": -2.1322 } }, { "data": { "id": "7db9d43a-1d18-4be6-8d7e-f5e096178a4f", "name": [ "RESPONSE TO OTHER ORGANISM%GOBP%GO:0051707" ], "description": [ "response to other organism" ], "pvalue": 1.0354e-18, "gs_type": null, "gs_size": 927, "padj": 3.9841e-16, "mcode_cluster_id": "Cluster 8", "NES": -2.1205 } }, { "data": { "id": "97dfa99a-4455-4b8d-b217-b0f3604459b9", "name": [ "REGULATION OF CYTOKINE PRODUCTION%GOBP%GO:0001817" ], "description": [ "regulation of cytokine production" ], "pvalue": 5.7677e-9, "gs_type": null, "gs_size": 604, "padj": 4.4388e-7, "mcode_cluster_id": null, "NES": -1.7778 } }, { "data": { "id": "7861fd51-2caf-44e2-b4cb-7e64f8c0b51f", "name": [ "REGULATION OF MONONUCLEAR CELL PROLIFERATION%GOBP%GO:0032944" ], "description": [ "regulation of mononuclear cell proliferation" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 170, "padj": 0.0034, "mcode_cluster_id": "Cluster 5", "NES": -1.7766 } }, { "data": { "id": "e6530407-29e9-4497-ba55-17afc1fe868e", "name": [ "POSITIVE REGULATION OF INNATE IMMUNE RESPONSE%GOBP%GO:0045089" ], "description": [ "positive regulation of innate immune response" ], "pvalue": 0.0008, "gs_type": null, "gs_size": 123, "padj": 0.0135, "mcode_cluster_id": "Cluster 18", "NES": -1.7231 } }, { "data": { "id": "6bae6a1e-2890-4b68-9481-6ea0aec6acdf", "name": [ "REGULATION OF CHONDROCYTE DIFFERENTIATION%GOBP%GO:0032330" ], "description": [ "regulation of chondrocyte differentiation" ], "pvalue": 0.0038, "gs_type": null, "gs_size": 28, "padj": 0.0457, "mcode_cluster_id": null, "NES": -1.7315 } }, { "data": { "id": "916b518e-1a95-45db-be11-8e45704c11f1", "name": [ "NEGATIVE REGULATION OF T CELL ACTIVATION%GOBP%GO:0050868" ], "description": [ "negative regulation of T cell activation" ], "pvalue": 0.0039, "gs_type": null, "gs_size": 90, "padj": 0.0468, "mcode_cluster_id": "Cluster 5", "NES": -1.6403 } }, { "data": { "id": "d81bdde4-1a07-49cd-8fe3-927919c43a90", "name": [ "RUNX2 REGULATES OSTEOBLAST DIFFERENTIATION%REACTOME DATABASE ID RELEASE 80%8940973" ], "description": [ "RUNX2 regulates osteoblast differentiation" ], "pvalue": 0.001, "gs_type": null, "gs_size": 23, "padj": 0.018, "mcode_cluster_id": null, "NES": 1.8814 } }, { "data": { "id": "904648c2-551b-426e-815e-74ced2374458", "name": [ "B CELL ACTIVATION%REACTOME DATABASE ID RELEASE 80%983705" ], "description": [ "B Cell Activation" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 173, "padj": 0.0038, "mcode_cluster_id": null, "NES": -1.7705 } }, { "data": { "id": "bcc2c85a-8e79-4b12-bc2d-a6f7bc205bd8", "name": [ "INTRACELLULAR PH REDUCTION%GOBP%GO:0051452" ], "description": [ "intracellular pH reduction" ], "pvalue": 0.0024, "gs_type": null, "gs_size": 38, "padj": 0.0325, "mcode_cluster_id": "Cluster 22", "NES": 1.6616 } }, { "data": { "id": "b136e5eb-8414-4daa-b635-6b83a215a0cd", "name": [ "G-PROTEIN BETA:GAMMA SIGNALLING%REACTOME DATABASE ID RELEASE 80%397795" ], "description": [ "G-protein beta:gamma signalling" ], "pvalue": 0.0037, "gs_type": null, "gs_size": 32, "padj": 0.0444, "mcode_cluster_id": null, "NES": 1.7425 } }, { "data": { "id": "6d05fb4b-2380-4626-8ebc-1ed88b0da496", "name": [ "TRIOSEPHOSPHATE ISOMERASE DEFICIENCY%PATHWHIZ%PW000539" ], "description": [ "Triosephosphate Isomerase Deficiency" ], "pvalue": 0.0024, "gs_type": null, "gs_size": 22, "padj": 0.0325, "mcode_cluster_id": "Cluster 6", "NES": 1.8382 } }, { "data": { "id": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "name": [ "NONSENSE-MEDIATED DECAY (NMD)%REACTOME DATABASE ID RELEASE 80%927802" ], "description": [ "Nonsense-Mediated Decay (NMD)" ], "pvalue": 1.4669e-13, "gs_type": null, "gs_size": 116, "padj": 1.5975e-11, "mcode_cluster_id": "Cluster 2", "NES": 2.4895 } }, { "data": { "id": "acb95097-45dd-4bf4-aa47-a787e38591d4", "name": [ "XANTHINURIA TYPE I%SMPDB%SMP0000512" ], "description": [ "Xanthinuria Type I" ], "pvalue": 0.0043, "gs_type": null, "gs_size": 37, "padj": 0.0487, "mcode_cluster_id": "Cluster 3", "NES": -1.7147 } }, { "data": { "id": "859be89e-4625-43a6-b4a6-ab2434d64e10", "name": [ "REGULATION OF INTERLEUKIN-6 PRODUCTION%GOBP%GO:0032675" ], "description": [ "regulation of interleukin-6 production" ], "pvalue": 0.0017, "gs_type": null, "gs_size": 114, "padj": 0.026, "mcode_cluster_id": "Cluster 16", "NES": -1.6335 } }, { "data": { "id": "18416371-0a9c-4664-b4df-a8230c7fe206", "name": [ "POSITIVE REGULATION OF TRANSFERASE ACTIVITY%GOBP%GO:0051347" ], "description": [ "positive regulation of transferase activity" ], "pvalue": 0.0035, "gs_type": null, "gs_size": 445, "padj": 0.0431, "mcode_cluster_id": null, "NES": -1.3189 } }, { "data": { "id": "378bbf78-7be6-4b60-9b71-bf9d54a4ba7a", "name": [ "PROTEIN-PROTEIN INTERACTIONS AT SYNAPSES%REACTOME%R-HSA-6794362.4" ], "description": [ "Protein-protein interactions at synapses" ], "pvalue": 0, "gs_type": null, "gs_size": 86, "padj": 0.001, "mcode_cluster_id": null, "NES": 1.9864 } }, { "data": { "id": "db958270-8c68-47a1-8245-d553c49a126f", "name": [ "REGULATION OF T CELL ACTIVATION%GOBP%GO:0050863" ], "description": [ "regulation of T cell activation" ], "pvalue": 0.0024, "gs_type": null, "gs_size": 286, "padj": 0.0325, "mcode_cluster_id": "Cluster 5", "NES": -1.4795 } }, { "data": { "id": "c4bf8247-9698-4f02-97dd-37135cff99f8", "name": [ "PID_IL23_PATHWAY%MSIGDB_C2%PID_IL23_PATHWAY" ], "description": [ "PID_IL23_PATHWAY" ], "pvalue": 0.0016, "gs_type": null, "gs_size": 33, "padj": 0.0249, "mcode_cluster_id": null, "NES": -1.8577 } }, { "data": { "id": "158daadb-15d5-44c8-9670-d08fe9ebb4c3", "name": [ "REGULATION OF IMMUNE EFFECTOR PROCESS%GOBP%GO:0002697" ], "description": [ "regulation of immune effector process" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 275, "padj": 0.0059, "mcode_cluster_id": "Cluster 8", "NES": -1.64 } }, { "data": { "id": "1f64c71e-aaf6-4692-9a22-b7211ef0098e", "name": [ "HIPPO-MERLIN SIGNALING DYSREGULATION%WIKIPATHWAYS_20220510%WP4541%HOMO SAPIENS" ], "description": [ "Hippo-Merlin signaling dysregulation" ], "pvalue": 0.0012, "gs_type": null, "gs_size": 87, "padj": 0.0197, "mcode_cluster_id": null, "NES": -1.6793 } }, { "data": { "id": "4d6412fc-e242-4e30-94eb-805f17fef4a7", "name": [ "NEUTROPHIL DEGRANULATION%REACTOME%R-HSA-6798695.2" ], "description": [ "Neutrophil degranulation" ], "pvalue": 0.0012, "gs_type": null, "gs_size": 475, "padj": 0.0199, "mcode_cluster_id": null, "NES": -1.408 } }, { "data": { "id": "5cf53f7f-7020-41ee-afc2-39cddd2e408a", "name": [ "MEIOSIS%REACTOME%R-HSA-1500620.2" ], "description": [ "Meiosis" ], "pvalue": 0.0029, "gs_type": null, "gs_size": 86, "padj": 0.0374, "mcode_cluster_id": null, "NES": -1.6786 } }, { "data": { "id": "14d3686e-e930-42df-864a-3191fd5d7a54", "name": [ "PROTEIN SYNTHESIS: ASPARTIC ACID%SMPDB%SMP0111858" ], "description": [ "Protein Synthesis: Aspartic Acid" ], "pvalue": 5.945e-18, "gs_type": null, "gs_size": 80, "padj": 1.5288e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7925 } }, { "data": { "id": "4cab23ea-9323-4755-9d34-d3fea53afb83", "name": [ "CYCLIN A:CDK2-ASSOCIATED EVENTS AT S PHASE ENTRY%REACTOME%R-HSA-69656.3" ], "description": [ "Cyclin A:Cdk2-associated events at S phase entry" ], "pvalue": 0, "gs_type": null, "gs_size": 85, "padj": 0.0011, "mcode_cluster_id": "Cluster 1", "NES": -1.8571 } }, { "data": { "id": "eda99b2f-0253-424d-880d-178bdea9777d", "name": [ "MITOTIC G1 PHASE AND G1 S TRANSITION%REACTOME%R-HSA-453279.4" ], "description": [ "Mitotic G1 phase and G1 S transition" ], "pvalue": 0, "gs_type": null, "gs_size": 148, "padj": 0.0005, "mcode_cluster_id": "Cluster 1", "NES": -1.8088 } }, { "data": { "id": "a99370b4-a952-4cea-a256-c8a8186eb61c", "name": [ "CELL FATE COMMITMENT%GOBP%GO:0045165" ], "description": [ "cell fate commitment" ], "pvalue": 0.0033, "gs_type": null, "gs_size": 136, "padj": 0.0408, "mcode_cluster_id": null, "NES": -1.6167 } }, { "data": { "id": "b6922b98-9220-46d4-a7fc-b265074130b3", "name": [ "XANTHINURIA TYPE II%PATHWHIZ%PW000489" ], "description": [ "Xanthinuria Type II" ], "pvalue": 0.0043, "gs_type": null, "gs_size": 37, "padj": 0.0487, "mcode_cluster_id": "Cluster 3", "NES": -1.7147 } }, { "data": { "id": "444e69c4-6f1f-4433-9259-2e635ccfc544", "name": [ "REGIONALIZATION%GOBP%GO:0003002" ], "description": [ "regionalization" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 153, "padj": 0.0037, "mcode_cluster_id": null, "NES": -1.7566 } }, { "data": { "id": "e2912118-3e55-4069-81e2-19dfc33500e6", "name": [ "CELL MORPHOGENESIS%GOBP%GO:0000902" ], "description": [ "cell morphogenesis" ], "pvalue": 0.0018, "gs_type": null, "gs_size": 466, "padj": 0.0269, "mcode_cluster_id": null, "NES": -1.3745 } }, { "data": { "id": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "name": [ "PROTEIN SYNTHESIS: TYROSINE%PATHWHIZ%PW120527" ], "description": [ "Protein Synthesis: Tyrosine" ], "pvalue": 1.4315e-17, "gs_type": null, "gs_size": 80, "padj": 2.7541e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7756 } }, { "data": { "id": "b76a8552-5234-4d6a-83eb-4221fe662024", "name": [ "REGULATION OF INFLAMMATORY RESPONSE%GOBP%GO:0050727" ], "description": [ "regulation of inflammatory response" ], "pvalue": 0.0005, "gs_type": null, "gs_size": 282, "padj": 0.0094, "mcode_cluster_id": null, "NES": -1.6095 } }, { "data": { "id": "dd5f121b-1bd3-4344-baa7-2bac3ad191fb", "name": [ "WNT SIGNALING PATHWAY%GOBP%GO:0016055" ], "description": [ "Wnt signaling pathway" ], "pvalue": 0.0022, "gs_type": null, "gs_size": 101, "padj": 0.0315, "mcode_cluster_id": null, "NES": -1.5777 } }, { "data": { "id": "e178e88f-745f-4a9b-b095-5c7e747df823", "name": [ "MITOCHONDRIAL IMMUNE RESPONSE TO SARS-COV-2%WIKIPATHWAYS_20220510%WP5038%HOMO SAPIENS" ], "description": [ "Mitochondrial immune response to SARS-CoV-2" ], "pvalue": 0.0012, "gs_type": null, "gs_size": 28, "padj": 0.0194, "mcode_cluster_id": null, "NES": -1.9351 } }, { "data": { "id": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "name": [ "FORMATION OF A POOL OF FREE 40S SUBUNITS%REACTOME DATABASE ID RELEASE 80%72689" ], "description": [ "Formation of a pool of free 40S subunits" ], "pvalue": 4.2855e-18, "gs_type": null, "gs_size": 102, "padj": 1.3742e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7351 } }, { "data": { "id": "844afc8a-176f-44fe-b051-ffa66bd48717", "name": [ "VIF-MEDIATED DEGRADATION OF APOBEC3G%REACTOME%R-HSA-180585.1" ], "description": [ "Vif-mediated degradation of APOBEC3G" ], "pvalue": 0.0000048337, "gs_type": null, "gs_size": 53, "padj": 0.0002, "mcode_cluster_id": "Cluster 1", "NES": -2.0855 } }, { "data": { "id": "3f5096ec-7a3f-4f0c-a68f-f0e9bc376611", "name": [ "SARS-COV-2 ACTIVATES MODULATES INNATE AND ADAPTIVE IMMUNE RESPONSES%REACTOME%R-HSA-9705671.1" ], "description": [ "SARS-CoV-2 activates modulates innate and adaptive immune responses" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 117, "padj": 0.0048, "mcode_cluster_id": null, "NES": -1.7451 } }, { "data": { "id": "0ad4929b-20d7-4e32-ad45-dcfb579aade3", "name": [ "GLYCOGEN STORAGE DISEASE TYPE 1A (GSD1A) OR VON GIERKE DISEASE%SMPDB%SMP0000374" ], "description": [ "Glycogen Storage Disease Type 1A (GSD1A) or Von Gierke Disease" ], "pvalue": 0.0024, "gs_type": null, "gs_size": 22, "padj": 0.0325, "mcode_cluster_id": "Cluster 6", "NES": 1.8382 } }, { "data": { "id": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "name": [ "SYNTHESIS OF DNA%REACTOME DATABASE ID RELEASE 80%69239" ], "description": [ "Synthesis of DNA" ], "pvalue": 9.6381e-9, "gs_type": null, "gs_size": 121, "padj": 7.2248e-7, "mcode_cluster_id": "Cluster 1", "NES": -2.1266 } }, { "data": { "id": "cbdb0d76-141c-4836-889c-190f7ad6193c", "name": [ "CELLULAR RESPONSE TO ALCOHOL%GOBP%GO:0097306" ], "description": [ "cellular response to alcohol" ], "pvalue": 0.0008, "gs_type": null, "gs_size": 53, "padj": 0.0145, "mcode_cluster_id": null, "NES": -1.8274 } }, { "data": { "id": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "name": [ "CROSS-PRESENTATION OF SOLUBLE EXOGENOUS ANTIGENS (ENDOSOMES)%REACTOME DATABASE ID RELEASE 80%1236978" ], "description": [ "Cross-presentation of soluble exogenous antigens (endosomes)" ], "pvalue": 0.0000043438, "gs_type": null, "gs_size": 50, "padj": 0.0002, "mcode_cluster_id": "Cluster 1", "NES": -2.1019 } }, { "data": { "id": "cf3662ba-ff22-4e1e-b61e-12ecb731cce6", "name": [ "NEUTROPHIL MIGRATION%GOBP%GO:1990266" ], "description": [ "neutrophil migration" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 79, "padj": 0.0033, "mcode_cluster_id": "Cluster 7", "NES": -1.9927 } }, { "data": { "id": "750e524e-6f52-4983-9819-5b723c8afe66", "name": [ "REGULATION OF LYMPHOCYTE PROLIFERATION%GOBP%GO:0050670" ], "description": [ "regulation of lymphocyte proliferation" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 169, "padj": 0.0034, "mcode_cluster_id": "Cluster 5", "NES": -1.7766 } }, { "data": { "id": "551c599d-46db-4d68-923d-007dcdb10bb7", "name": [ "DEGRADATION OF AXIN%REACTOME DATABASE ID RELEASE 80%4641257" ], "description": [ "Degradation of AXIN" ], "pvalue": 0, "gs_type": null, "gs_size": 55, "padj": 0.0011, "mcode_cluster_id": "Cluster 1", "NES": -1.9596 } }, { "data": { "id": "604d62c7-f4cb-4289-a549-64f0bccf5d62", "name": [ "XANTHINE DEHYDROGENASE DEFICIENCY (XANTHINURIA)%SMPDB%SMP0000220" ], "description": [ "Xanthine Dehydrogenase Deficiency (Xanthinuria)" ], "pvalue": 0.0043, "gs_type": null, "gs_size": 37, "padj": 0.0487, "mcode_cluster_id": "Cluster 3", "NES": -1.7147 } }, { "data": { "id": "0f4d0e69-aab2-48e4-ba31-cbca97c2d81e", "name": [ "CELL JUNCTION ORGANIZATION%REACTOME%R-HSA-446728.2" ], "description": [ "Cell junction organization" ], "pvalue": 0.0011, "gs_type": null, "gs_size": 87, "padj": 0.0181, "mcode_cluster_id": "Cluster 21", "NES": -1.6951 } }, { "data": { "id": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "name": [ "DEFECTIVE CFTR CAUSES CYSTIC FIBROSIS%REACTOME DATABASE ID RELEASE 80%5678895" ], "description": [ "Defective CFTR causes cystic fibrosis" ], "pvalue": 0.0004, "gs_type": null, "gs_size": 61, "padj": 0.0071, "mcode_cluster_id": "Cluster 1", "NES": -1.8002 } }, { "data": { "id": "0d129048-034a-41db-97c2-56e1fad7f34a", "name": [ "TYPE I INTERFERON INDUCTION AND SIGNALING DURING SARS-COV-2 INFECTION%WIKIPATHWAYS_20220510%WP4868%HOMO SAPIENS" ], "description": [ "Type I interferon induction and signaling during SARS-CoV-2 infection" ], "pvalue": 5.1753e-10, "gs_type": null, "gs_size": 29, "padj": 4.6675e-8, "mcode_cluster_id": null, "NES": -2.4767 } }, { "data": { "id": "7a40f142-e16d-4ef5-bb04-a1d9d674bb76", "name": [ "POST-TRANSLATIONAL PROTEIN PHOSPHORYLATION%REACTOME DATABASE ID RELEASE 80%8957275" ], "description": [ "Post-translational protein phosphorylation" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 107, "padj": 0.0023, "mcode_cluster_id": null, "NES": -1.8554 } }, { "data": { "id": "3426b560-b523-49c6-8a55-6451ac5ff9fb", "name": [ "HISTONE DEMETHYLATION%GOBP%GO:0016577" ], "description": [ "histone demethylation" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 27, "padj": 0.0018, "mcode_cluster_id": "Cluster 10", "NES": 2.0633 } }, { "data": { "id": "7ea709b3-8764-487d-a7ca-84538765d0f2", "name": [ "HAIR FOLLICLE DEVELOPMENT: CYTODIFFERENTIATION - PART 3 OF 3%WIKIPATHWAYS_20220510%WP2840%HOMO SAPIENS" ], "description": [ "Hair follicle development: cytodifferentiation - part 3 of 3" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 83, "padj": 0.0022, "mcode_cluster_id": null, "NES": -1.9199 } }, { "data": { "id": "077180f7-758c-4448-8995-446025fc993b", "name": [ "NEGATIVE REGULATION OF IMMUNE RESPONSE%GOBP%GO:0050777" ], "description": [ "negative regulation of immune response" ], "pvalue": 2.8186e-8, "gs_type": null, "gs_size": 132, "padj": 0.000001984, "mcode_cluster_id": "Cluster 18", "NES": -2.1591 } }, { "data": { "id": "40dc4eaa-1c72-4314-9757-ceb928903c99", "name": [ "INTERFERON GAMMA SIGNALING%REACTOME DATABASE ID RELEASE 80%877300" ], "description": [ "Interferon gamma signaling" ], "pvalue": 6.8916e-11, "gs_type": null, "gs_size": 91, "padj": 6.7421e-9, "mcode_cluster_id": null, "NES": -2.4476 } }, { "data": { "id": "6460295d-3d84-4fe7-abbe-c5f824a3523c", "name": [ "CATION TRANSMEMBRANE TRANSPORT%GOBP%GO:0098655" ], "description": [ "cation transmembrane transport" ], "pvalue": 0.001, "gs_type": null, "gs_size": 424, "padj": 0.018, "mcode_cluster_id": "Cluster 17", "NES": 1.447 } }, { "data": { "id": "973c7457-5f20-4ff8-8931-6a679e098382", "name": [ "PROTEIN TARGETING TO VACUOLE%GOBP%GO:0006623" ], "description": [ "protein targeting to vacuole" ], "pvalue": 0.0038, "gs_type": null, "gs_size": 37, "padj": 0.0452, "mcode_cluster_id": null, "NES": 1.6604 } }, { "data": { "id": "c069a737-3add-46d7-922a-fe2a44aa8aad", "name": [ "STABILIZATION OF P53%REACTOME DATABASE ID RELEASE 80%69541" ], "description": [ "Stabilization of p53" ], "pvalue": 0, "gs_type": null, "gs_size": 57, "padj": 0.0014, "mcode_cluster_id": "Cluster 1", "NES": -1.9566 } }, { "data": { "id": "86b5896e-3422-4a80-aa6f-8d92212ceae7", "name": [ "VASCULAR PROCESS IN CIRCULATORY SYSTEM%GOBP%GO:0003018" ], "description": [ "vascular process in circulatory system" ], "pvalue": 0.0019, "gs_type": null, "gs_size": 182, "padj": 0.0277, "mcode_cluster_id": null, "NES": 1.5127 } }, { "data": { "id": "9f699885-90d8-4f8b-b756-bc2a8b80dbfd", "name": [ "NAD BIOSYNTHETIC PROCESS%GOBP%GO:0009435" ], "description": [ "NAD biosynthetic process" ], "pvalue": 0.0044, "gs_type": null, "gs_size": 20, "padj": 0.0488, "mcode_cluster_id": null, "NES": -1.7505 } }, { "data": { "id": "d45a77c2-ed42-4c4f-8e17-002f798690b8", "name": [ "INNATE IMMUNE RESPONSE%GOBP%GO:0045087" ], "description": [ "innate immune response" ], "pvalue": 4.7818e-12, "gs_type": null, "gs_size": 495, "padj": 4.9286e-10, "mcode_cluster_id": "Cluster 8", "NES": -2.1449 } }, { "data": { "id": "0328743a-aa07-486e-9c2e-a2700f370da7", "name": [ "NON-INTEGRIN MEMBRANE-ECM INTERACTIONS%REACTOME%R-HSA-3000171.3" ], "description": [ "Non-integrin membrane-ECM interactions" ], "pvalue": 0.0042, "gs_type": null, "gs_size": 42, "padj": 0.0487, "mcode_cluster_id": null, "NES": -1.6548 } }, { "data": { "id": "b3c1d117-4b8e-47cb-a880-fe7f925f032d", "name": [ "EPITHELIUM DEVELOPMENT%GOBP%GO:0060429" ], "description": [ "epithelium development" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 559, "padj": 0.0023, "mcode_cluster_id": null, "NES": -1.4825 } }, { "data": { "id": "e9a4d13e-edb7-4554-9bb8-173dad7f61fd", "name": [ "POSITIVE REGULATION OF RESPONSE TO BIOTIC STIMULUS%GOBP%GO:0002833" ], "description": [ "positive regulation of response to biotic stimulus" ], "pvalue": 0.004, "gs_type": null, "gs_size": 160, "padj": 0.0472, "mcode_cluster_id": "Cluster 18", "NES": -1.5944 } }, { "data": { "id": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "name": [ "PROTEIN SYNTHESIS: THREONINE%PATHWHIZ%PW120525" ], "description": [ "Protein Synthesis: Threonine" ], "pvalue": 1.0085e-16, "gs_type": null, "gs_size": 80, "padj": 1.386e-14, "mcode_cluster_id": "Cluster 2", "NES": 2.7376 } }, { "data": { "id": "3c8b4554-0e4a-4ff8-9d04-8f18b39fb6a3", "name": [ "TRAIL%IOB%TRAIL" ], "description": [ "TRAIL" ], "pvalue": 0.0035, "gs_type": null, "gs_size": 45, "padj": 0.0435, "mcode_cluster_id": null, "NES": -1.6671 } }, { "data": { "id": "84484178-7a35-4a40-a193-fc724feb529e", "name": [ "ANTIGEN PROCESSING AND PRESENTATION OF PEPTIDE ANTIGEN VIA MHC CLASS I%GOBP%GO:0002474" ], "description": [ "antigen processing and presentation of peptide antigen via MHC class I" ], "pvalue": 0.0000033181, "gs_type": null, "gs_size": 23, "padj": 0.0001, "mcode_cluster_id": "Cluster 31", "NES": -2.2357 } }, { "data": { "id": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "name": [ "ORC1 REMOVAL FROM CHROMATIN%REACTOME DATABASE ID RELEASE 80%68949" ], "description": [ "Orc1 removal from chromatin" ], "pvalue": 3.5548e-7, "gs_type": null, "gs_size": 71, "padj": 0, "mcode_cluster_id": "Cluster 1", "NES": -2.1595 } }, { "data": { "id": "3d5a002f-ecfb-46ce-92e5-8eb13687c558", "name": [ "POSITIVE REGULATION OF CHEMOKINE PRODUCTION%GOBP%GO:0032722" ], "description": [ "positive regulation of chemokine production" ], "pvalue": 0.0015, "gs_type": null, "gs_size": 54, "padj": 0.024, "mcode_cluster_id": null, "NES": -1.7728 } }, { "data": { "id": "74509417-18fd-44c8-a5bf-187901eaad5b", "name": [ "FIBRIN COMPLEMENT RECEPTOR 3 SIGNALING PATHWAY%WIKIPATHWAYS_20220510%WP4136%HOMO SAPIENS" ], "description": [ "Fibrin complement receptor 3 signaling pathway" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 38, "padj": 0.0033, "mcode_cluster_id": "Cluster 14", "NES": -1.9938 } }, { "data": { "id": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "name": [ "PCP CE PATHWAY%REACTOME DATABASE ID RELEASE 80%4086400" ], "description": [ "PCP CE pathway" ], "pvalue": 0, "gs_type": null, "gs_size": 92, "padj": 0.0009, "mcode_cluster_id": "Cluster 1", "NES": -1.9033 } }, { "data": { "id": "3721be01-7fa4-400f-b4f5-9bca4e773261", "name": [ "REGULATION OF LEUKOCYTE PROLIFERATION%GOBP%GO:0070663" ], "description": [ "regulation of leukocyte proliferation" ], "pvalue": 0, "gs_type": null, "gs_size": 189, "padj": 0.0009, "mcode_cluster_id": "Cluster 5", "NES": -1.8057 } }, { "data": { "id": "032600f2-851b-47b1-8ab3-ebc7822205c3", "name": [ "GPCR LIGAND BINDING%REACTOME DATABASE ID RELEASE 80%500792" ], "description": [ "GPCR ligand binding" ], "pvalue": 0.0022, "gs_type": null, "gs_size": 462, "padj": 0.0315, "mcode_cluster_id": null, "NES": -1.4946 } }, { "data": { "id": "29e82af7-6e38-474e-b6bb-dca8aa2b6147", "name": [ "CELL CYCLE, MITOTIC%REACTOME DATABASE ID RELEASE 80%69278" ], "description": [ "Cell Cycle, Mitotic" ], "pvalue": 2.6932e-8, "gs_type": null, "gs_size": 518, "padj": 0.0000019194, "mcode_cluster_id": null, "NES": -1.6715 } }, { "data": { "id": "a87e7bfc-894c-4e4b-b80f-64bba3e8adc1", "name": [ "PURINE RIBONUCLEOSIDE DIPHOSPHATE METABOLIC PROCESS%GOBP%GO:0009179" ], "description": [ "purine ribonucleoside diphosphate metabolic process" ], "pvalue": 0.0026, "gs_type": null, "gs_size": 39, "padj": 0.0344, "mcode_cluster_id": "Cluster 4", "NES": 1.7808 } }, { "data": { "id": "ca74dbd7-f987-4bb8-81f5-3c8fef7fee7c", "name": [ "DEFENSE RESPONSE TO OTHER ORGANISM%GOBP%GO:0098542" ], "description": [ "defense response to other organism" ], "pvalue": 9.1109e-21, "gs_type": null, "gs_size": 715, "padj": 1.0518e-17, "mcode_cluster_id": "Cluster 8", "NES": -2.3331 } }, { "data": { "id": "a83c9102-412e-47a3-888d-1d5d38000f18", "name": [ "NEUTROPHIL CHEMOTAXIS%GOBP%GO:0030593" ], "description": [ "neutrophil chemotaxis" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 71, "padj": 0.0017, "mcode_cluster_id": "Cluster 7", "NES": -2.0376 } }, { "data": { "id": "aff65c15-2d4e-4423-a37b-e57ce775f018", "name": [ "REGULATION OF PEPTIDASE ACTIVITY%GOBP%GO:0052547" ], "description": [ "regulation of peptidase activity" ], "pvalue": 0.0004, "gs_type": null, "gs_size": 303, "padj": 0.0084, "mcode_cluster_id": "Cluster 13", "NES": -1.5442 } }, { "data": { "id": "a8e70dca-3a69-4116-8443-2107e98d703e", "name": [ "TERMINATION OF TRANSLESION DNA SYNTHESIS%REACTOME DATABASE ID RELEASE 80%5656169" ], "description": [ "Termination of translesion DNA synthesis" ], "pvalue": 0.0032, "gs_type": null, "gs_size": 32, "padj": 0.0404, "mcode_cluster_id": "Cluster 32", "NES": -1.6762 } }, { "data": { "id": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "name": [ "CDC20:PHOSPHO-APC C MEDIATED DEGRADATION OF CYCLIN A%REACTOME DATABASE ID RELEASE 80%174184" ], "description": [ "Cdc20:Phospho-APC C mediated degradation of Cyclin A" ], "pvalue": 0.0000010849, "gs_type": null, "gs_size": 73, "padj": 0.0001, "mcode_cluster_id": "Cluster 1", "NES": -2.1128 } }, { "data": { "id": "19fb5f6d-a9bf-45ff-ad4a-dc1d1c940538", "name": [ "ANTIMICROBIAL HUMORAL RESPONSE%GOBP%GO:0019730" ], "description": [ "antimicrobial humoral response" ], "pvalue": 0.0011, "gs_type": null, "gs_size": 107, "padj": 0.0187, "mcode_cluster_id": null, "NES": -1.7621 } }, { "data": { "id": "3655cbeb-e303-47c6-b442-f4039b25d644", "name": [ "MOLYBDENUM COFACTOR DEFICIENCY%SMPDB%SMP0000203" ], "description": [ "Molybdenum Cofactor Deficiency" ], "pvalue": 0.0043, "gs_type": null, "gs_size": 37, "padj": 0.0487, "mcode_cluster_id": "Cluster 3", "NES": -1.7147 } }, { "data": { "id": "16e263d4-4a82-4f76-a5e0-5b573b4aa8b3", "name": [ "CYTOSOLIC DNA-SENSING PATHWAY%WIKIPATHWAYS_20220510%WP4655%HOMO SAPIENS" ], "description": [ "Cytosolic DNA-sensing pathway" ], "pvalue": 0.0006, "gs_type": null, "gs_size": 72, "padj": 0.0104, "mcode_cluster_id": null, "NES": -1.822 } }, { "data": { "id": "48c1433b-00dd-4330-8b52-5d849ddfd875", "name": [ "DEGRADATION OF BETA-CATENIN BY THE DESTRUCTION COMPLEX%REACTOME%R-HSA-195253.2" ], "description": [ "Degradation of beta-catenin by the destruction complex" ], "pvalue": 9.175e-7, "gs_type": null, "gs_size": 83, "padj": 0, "mcode_cluster_id": "Cluster 1", "NES": -2.0712 } }, { "data": { "id": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "name": [ "APC:CDC20 MEDIATED DEGRADATION OF CELL CYCLE PROTEINS PRIOR TO SATISFATION OF THE CELL CYCLE CHECKPOINT%REACTOME DATABASE ID RELEASE 80%179419" ], "description": [ "APC:Cdc20 mediated degradation of cell cycle proteins prior to satisfation of the cell cycle checkpoint" ], "pvalue": 0.0000014697, "gs_type": null, "gs_size": 74, "padj": 0.0001, "mcode_cluster_id": "Cluster 1", "NES": -2.1062 } }, { "data": { "id": "7b910fec-96ff-45a5-9b23-0ddf4e8d2541", "name": [ "POSITIVE REGULATION OF IMMUNE RESPONSE%GOBP%GO:0050778" ], "description": [ "positive regulation of immune response" ], "pvalue": 0.0000073602, "gs_type": null, "gs_size": 498, "padj": 0.0003, "mcode_cluster_id": "Cluster 8", "NES": -1.6725 } }, { "data": { "id": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "name": [ "SCF-BETA-TRCP MEDIATED DEGRADATION OF EMI1%REACTOME DATABASE ID RELEASE 80%174113" ], "description": [ "SCF-beta-TrCP mediated degradation of Emi1" ], "pvalue": 0.0000054447, "gs_type": null, "gs_size": 55, "padj": 0.0002, "mcode_cluster_id": "Cluster 1", "NES": -2.0592 } }, { "data": { "id": "676a30e0-10c9-4292-861b-34e45764abd1", "name": [ "DOWNSTREAM SIGNALING EVENTS OF B CELL RECEPTOR (BCR)%REACTOME%R-HSA-1168372.3" ], "description": [ "Downstream signaling events of B Cell Receptor (BCR)" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 80, "padj": 0.0024, "mcode_cluster_id": "Cluster 1", "NES": -1.8573 } }, { "data": { "id": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "name": [ "EUKARYOTIC TRANSLATION TERMINATION%REACTOME DATABASE ID RELEASE 80%72764" ], "description": [ "Eukaryotic Translation Termination" ], "pvalue": 1.8808e-15, "gs_type": null, "gs_size": 94, "padj": 2.1712e-13, "mcode_cluster_id": "Cluster 2", "NES": 2.6601 } }, { "data": { "id": "101b0829-dee7-4e0e-8e6d-b21dbe030eda", "name": [ "NEGATIVE REGULATION OF LOCOMOTION%GOBP%GO:0040013" ], "description": [ "negative regulation of locomotion" ], "pvalue": 0.0043, "gs_type": null, "gs_size": 276, "padj": 0.0487, "mcode_cluster_id": null, "NES": -1.3891 } }, { "data": { "id": "fa82a47b-3388-4aec-aa66-f207fa3a1e17", "name": [ "PROTEIN DEALKYLATION%GOBP%GO:0008214" ], "description": [ "protein dealkylation" ], "pvalue": 0, "gs_type": null, "gs_size": 30, "padj": 0.0007, "mcode_cluster_id": "Cluster 10", "NES": 2.1157 } }, { "data": { "id": "6dd711a9-bdb8-4b44-95dc-5ec87cc4e384", "name": [ "TRANSMEMBRANE TRANSPORT%GOBP%GO:0055085" ], "description": [ "transmembrane transport" ], "pvalue": 0.0011, "gs_type": null, "gs_size": 777, "padj": 0.0181, "mcode_cluster_id": "Cluster 17", "NES": 1.3307 } }, { "data": { "id": "9e433294-82cc-456b-bdd9-d76c265b11a9", "name": [ "ADENINE PHOSPHORIBOSYLTRANSFERASE DEFICIENCY (APRT)%PATHWHIZ%PW000511" ], "description": [ "Adenine Phosphoribosyltransferase Deficiency (APRT)" ], "pvalue": 0.0043, "gs_type": null, "gs_size": 37, "padj": 0.0487, "mcode_cluster_id": "Cluster 3", "NES": -1.7147 } }, { "data": { "id": "eb1d3bcf-4842-469d-b080-15ffd6d86e52", "name": [ "PEPTIDE BIOSYNTHETIC PROCESS%GOBP%GO:0043043" ], "description": [ "peptide biosynthetic process" ], "pvalue": 0.0000031361, "gs_type": null, "gs_size": 342, "padj": 0.0001, "mcode_cluster_id": null, "NES": 1.6565 } }, { "data": { "id": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "name": [ "RRNA PROCESSING IN THE NUCLEUS AND CYTOSOL%REACTOME DATABASE ID RELEASE 80%8868773" ], "description": [ "rRNA processing in the nucleus and cytosol" ], "pvalue": 2.3471e-10, "gs_type": null, "gs_size": 193, "padj": 2.2209e-8, "mcode_cluster_id": "Cluster 2", "NES": 2.136 } }, { "data": { "id": "4085882e-aa9e-41bd-97f5-b21498d7b23d", "name": [ "INTERLEUKIN-10 SIGNALING%REACTOME DATABASE ID RELEASE 80%6783783" ], "description": [ "Interleukin-10 signaling" ], "pvalue": 0.0005, "gs_type": null, "gs_size": 45, "padj": 0.0096, "mcode_cluster_id": null, "NES": -1.9294 } }, { "data": { "id": "1e6d44b7-22af-4716-a80a-9933903cf430", "name": [ "BRANCHING MORPHOGENESIS OF AN EPITHELIAL TUBE%GOBP%GO:0048754" ], "description": [ "branching morphogenesis of an epithelial tube" ], "pvalue": 0.0043, "gs_type": null, "gs_size": 49, "padj": 0.0487, "mcode_cluster_id": null, "NES": -1.71 } }, { "data": { "id": "02f4078c-21f8-41f4-a1bb-26f27f925c2d", "name": [ "HIF-1-ALPHA TRANSCRIPTION FACTOR NETWORK%PATHWAY INTERACTION DATABASE NCI-NATURE CURATED DATA%HIF-1-ALPHA TRANSCRIPTION FACTOR NETWORK" ], "description": [ "HIF-1-alpha transcription factor network" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 66, "padj": 0.0022, "mcode_cluster_id": null, "NES": 1.9305 } }, { "data": { "id": "334a9d67-6aaf-4a3d-b324-1704275051be", "name": [ "HUMORAL IMMUNE RESPONSE%GOBP%GO:0006959" ], "description": [ "humoral immune response" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 275, "padj": 0.0049, "mcode_cluster_id": null, "NES": -1.7972 } }, { "data": { "id": "120b369a-3e88-407c-ab37-b433984bd693", "name": [ "PID_TOLL_ENDOGENOUS_PATHWAY%MSIGDB_C2%PID_TOLL_ENDOGENOUS_PATHWAY" ], "description": [ "PID_TOLL_ENDOGENOUS_PATHWAY" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 19, "padj": 0.0057, "mcode_cluster_id": "Cluster 14", "NES": -1.9801 } }, { "data": { "id": "04d472b7-0ef5-4687-be19-8978a64630e0", "name": [ "CANONICAL WNT SIGNALING PATHWAY%GOBP%GO:0060070" ], "description": [ "canonical Wnt signaling pathway" ], "pvalue": 0.0004, "gs_type": null, "gs_size": 66, "padj": 0.0072, "mcode_cluster_id": null, "NES": -1.8533 } }, { "data": { "id": "611ff36d-7bbc-4322-bcdb-592441240039", "name": [ "PROTEIN SYNTHESIS: VALINE%PATHWHIZ%PW120528" ], "description": [ "Protein Synthesis: Valine" ], "pvalue": 6.769e-18, "gs_type": null, "gs_size": 80, "padj": 1.5288e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7908 } }, { "data": { "id": "52870f31-5584-4d32-be83-711380d76819", "name": [ "NONSENSE MEDIATED DECAY (NMD) ENHANCED BY THE EXON JUNCTION COMPLEX (EJC)%REACTOME%R-HSA-975957.1" ], "description": [ "Nonsense Mediated Decay (NMD) enhanced by the Exon Junction Complex (EJC)" ], "pvalue": 1.4669e-13, "gs_type": null, "gs_size": 116, "padj": 1.5975e-11, "mcode_cluster_id": "Cluster 2", "NES": 2.4895 } }, { "data": { "id": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "name": [ "CYTOPLASMIC TRANSLATION%GOBP%GO:0002181" ], "description": [ "cytoplasmic translation" ], "pvalue": 7.3657e-17, "gs_type": null, "gs_size": 123, "padj": 1.1188e-14, "mcode_cluster_id": "Cluster 2", "NES": 2.6018 } }, { "data": { "id": "8d189e15-c192-4005-a56b-ee419c6a4796", "name": [ "LOCOMOTION%GOBP%GO:0040011" ], "description": [ "locomotion" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 382, "padj": 0.0015, "mcode_cluster_id": "Cluster 20", "NES": -1.6085 } }, { "data": { "id": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "name": [ "UBIQUITIN MEDIATED DEGRADATION OF PHOSPHORYLATED CDC25A%REACTOME%R-HSA-69601.3" ], "description": [ "Ubiquitin Mediated Degradation of Phosphorylated Cdc25A" ], "pvalue": 0, "gs_type": null, "gs_size": 52, "padj": 0.0005, "mcode_cluster_id": "Cluster 1", "NES": -2.0428 } }, { "data": { "id": "15d8dca6-d843-4b6d-a8c4-391e2e14d5b8", "name": [ "REGULATION OF STEM CELL DIFFERENTIATION%GOBP%GO:2000736" ], "description": [ "regulation of stem cell differentiation" ], "pvalue": 0.0021, "gs_type": null, "gs_size": 61, "padj": 0.0305, "mcode_cluster_id": null, "NES": -1.725 } }, { "data": { "id": "bb4d7b94-8c3a-4684-b925-2e7c7e698b63", "name": [ "TAXIS%GOBP%GO:0042330" ], "description": [ "taxis" ], "pvalue": 0, "gs_type": null, "gs_size": 378, "padj": 0.0012, "mcode_cluster_id": "Cluster 20", "NES": -1.6291 } }, { "data": { "id": "ba6b9d29-44c7-408e-8058-36cf9631eb64", "name": [ "PROGRAMMED CELL DEATH%REACTOME%R-HSA-5357801.2" ], "description": [ "Programmed Cell Death" ], "pvalue": 2.9159e-7, "gs_type": null, "gs_size": 204, "padj": 0, "mcode_cluster_id": null, "NES": -1.8968 } }, { "data": { "id": "df8598f1-d196-453a-878f-f9fbcce83853", "name": [ "CELLULAR RESPONSE TO INTERFERON-GAMMA%GOBP%GO:0071346" ], "description": [ "cellular response to interferon-gamma" ], "pvalue": 0.0005, "gs_type": null, "gs_size": 66, "padj": 0.0101, "mcode_cluster_id": null, "NES": -1.8724 } }, { "data": { "id": "d1c8fb15-883a-49fa-acec-c17ba9928cfa", "name": [ "AMINO ACIDS REGULATE MTORC1%REACTOME%R-HSA-9639288.2" ], "description": [ "Amino acids regulate mTORC1" ], "pvalue": 0.0006, "gs_type": null, "gs_size": 55, "padj": 0.0106, "mcode_cluster_id": "Cluster 22", "NES": 1.8054 } }, { "data": { "id": "9c8a56fb-b2c2-4025-9c1e-266f0c5862fd", "name": [ "POSITIVE REGULATION OF DEFENSE RESPONSE%GOBP%GO:0031349" ], "description": [ "positive regulation of defense response" ], "pvalue": 0.0005, "gs_type": null, "gs_size": 240, "padj": 0.0095, "mcode_cluster_id": "Cluster 18", "NES": -1.5956 } }, { "data": { "id": "ba9df1cf-26ed-4c1d-84dd-ce6d5b995cef", "name": [ "REGULATION OF CELL FATE COMMITMENT%GOBP%GO:0010453" ], "description": [ "regulation of cell fate commitment" ], "pvalue": 0.0007, "gs_type": null, "gs_size": 26, "padj": 0.0132, "mcode_cluster_id": null, "NES": -1.8696 } }, { "data": { "id": "0bf7b76e-7964-4a44-b982-d3ed9a29e578", "name": [ "RESPONSE TO EXOGENOUS DSRNA%GOBP%GO:0043330" ], "description": [ "response to exogenous dsRNA" ], "pvalue": 0.0022, "gs_type": null, "gs_size": 34, "padj": 0.0315, "mcode_cluster_id": "Cluster 12", "NES": -1.7896 } }, { "data": { "id": "1aa8950f-31f2-46ef-b4b1-b4c72c492067", "name": [ "CELLULAR RESPONSE TO VIRUS%GOBP%GO:0098586" ], "description": [ "cellular response to virus" ], "pvalue": 5.6979e-7, "gs_type": null, "gs_size": 73, "padj": 0, "mcode_cluster_id": null, "NES": -2.1767 } }, { "data": { "id": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "name": [ "PROTEIN SYNTHESIS: SERINE%PATHWHIZ%PW120517" ], "description": [ "Protein Synthesis: Serine" ], "pvalue": 5.945e-18, "gs_type": null, "gs_size": 80, "padj": 1.5288e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7927 } }, { "data": { "id": "1753e97c-6649-4a5b-9ac0-94fa5ffb80bb", "name": [ "FOREBRAIN GENERATION OF NEURONS%GOBP%GO:0021872" ], "description": [ "forebrain generation of neurons" ], "pvalue": 0.0035, "gs_type": null, "gs_size": 18, "padj": 0.0429, "mcode_cluster_id": null, "NES": 1.8032 } }, { "data": { "id": "156ab93c-d83e-4867-8c1b-c3de64905979", "name": [ "INTERFERON ALPHA BETA SIGNALING%REACTOME DATABASE ID RELEASE 80%909733" ], "description": [ "Interferon alpha beta signaling" ], "pvalue": 2.0414e-23, "gs_type": null, "gs_size": 71, "padj": 1.1783e-19, "mcode_cluster_id": null, "NES": -2.9721 } }, { "data": { "id": "31a9d742-83d3-4990-9495-42d49c780cec", "name": [ "CARBOHYDRATE CATABOLIC PROCESS%GOBP%GO:0016052" ], "description": [ "carbohydrate catabolic process" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 84, "padj": 0.0058, "mcode_cluster_id": "Cluster 4", "NES": 1.8365 } }, { "data": { "id": "a966733a-44de-48c5-8959-37cec18be5cf", "name": [ "PEPTIDE CHAIN ELONGATION%REACTOME%R-HSA-156902.2" ], "description": [ "Peptide chain elongation" ], "pvalue": 1.3605e-16, "gs_type": null, "gs_size": 90, "padj": 1.7847e-14, "mcode_cluster_id": "Cluster 2", "NES": 2.716 } }, { "data": { "id": "6bff1f65-4f71-4a19-805b-939001266251", "name": [ "INFLAMMATORY RESPONSE%GOBP%GO:0006954" ], "description": [ "inflammatory response" ], "pvalue": 0, "gs_type": null, "gs_size": 289, "padj": 0.0006, "mcode_cluster_id": null, "NES": -1.7755 } }, { "data": { "id": "81865991-8ff0-4777-ba66-cdfa84f0f6a7", "name": [ "ANTIVIRAL MECHANISM BY IFN-STIMULATED GENES%REACTOME DATABASE ID RELEASE 80%1169410" ], "description": [ "Antiviral mechanism by IFN-stimulated genes" ], "pvalue": 0.0000024846, "gs_type": null, "gs_size": 79, "padj": 0.0001, "mcode_cluster_id": "Cluster 29", "NES": -2.0503 } }, { "data": { "id": "9e1f60ec-a42a-4cf8-88dd-4ad48094fd38", "name": [ "IMMUNE RESPONSE%GOBP%GO:0006955" ], "description": [ "immune response" ], "pvalue": 3.3905e-20, "gs_type": null, "gs_size": 1025, "padj": 3.2617e-17, "mcode_cluster_id": "Cluster 8", "NES": -2.1851 } }, { "data": { "id": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "name": [ "REGULATION OF MRNA STABILITY BY PROTEINS THAT BIND AU-RICH ELEMENTS%REACTOME DATABASE ID RELEASE 80%450531" ], "description": [ "Regulation of mRNA stability by proteins that bind AU-rich elements" ], "pvalue": 0, "gs_type": null, "gs_size": 86, "padj": 0.0005, "mcode_cluster_id": "Cluster 1", "NES": -1.8974 } }, { "data": { "id": "b39109ba-9c02-4d21-8335-c922a33d2e52", "name": [ "REGULATION OF ACTIVATED T CELL PROLIFERATION%GOBP%GO:0046006" ], "description": [ "regulation of activated T cell proliferation" ], "pvalue": 0.0012, "gs_type": null, "gs_size": 35, "padj": 0.0194, "mcode_cluster_id": null, "NES": -1.9354 } }, { "data": { "id": "c07e81ab-49b0-4377-a77f-dde111571036", "name": [ "ADHERENS JUNCTIONS INTERACTIONS%REACTOME DATABASE ID RELEASE 80%418990" ], "description": [ "Adherens junctions interactions" ], "pvalue": 0.0041, "gs_type": null, "gs_size": 30, "padj": 0.0478, "mcode_cluster_id": "Cluster 21", "NES": -1.769 } }, { "data": { "id": "8699892d-d15b-4f3d-8833-d8fd933ee911", "name": [ "AUTODEGRADATION OF CDH1 BY CDH1:APC C%REACTOME DATABASE ID RELEASE 80%174084" ], "description": [ "Autodegradation of Cdh1 by Cdh1:APC C" ], "pvalue": 0.0000030692, "gs_type": null, "gs_size": 64, "padj": 0.0001, "mcode_cluster_id": "Cluster 1", "NES": -2.0265 } }, { "data": { "id": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "name": [ "HEDGEHOG 'ON' STATE%REACTOME%R-HSA-5632684.1" ], "description": [ "Hedgehog 'on' state" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 84, "padj": 0.0019, "mcode_cluster_id": "Cluster 1", "NES": -1.8554 } }, { "data": { "id": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "name": [ "REGULATION OF RUNX2 EXPRESSION AND ACTIVITY%REACTOME DATABASE ID RELEASE 80%8939902" ], "description": [ "Regulation of RUNX2 expression and activity" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 71, "padj": 0.004, "mcode_cluster_id": "Cluster 1", "NES": -1.8183 } }, { "data": { "id": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "name": [ "AUF1 (HNRNP D0) BINDS AND DESTABILIZES MRNA%REACTOME%R-HSA-450408.3" ], "description": [ "AUF1 (hnRNP D0) binds and destabilizes mRNA" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 54, "padj": 0.0021, "mcode_cluster_id": "Cluster 1", "NES": -1.9432 } }, { "data": { "id": "bfb37b5a-4933-48e7-a266-3a1704d7d81d", "name": [ "NEGATIVE REGULATION OF CELL DIFFERENTIATION%GOBP%GO:0045596" ], "description": [ "negative regulation of cell differentiation" ], "pvalue": 0.0005, "gs_type": null, "gs_size": 426, "padj": 0.0101, "mcode_cluster_id": null, "NES": -1.4537 } }, { "data": { "id": "5f454720-e0b8-4c7f-88b3-b288c0e8b59e", "name": [ "CELL CHEMOTAXIS%GOBP%GO:0060326" ], "description": [ "cell chemotaxis" ], "pvalue": 0.001, "gs_type": null, "gs_size": 179, "padj": 0.0172, "mcode_cluster_id": "Cluster 7", "NES": -1.6599 } }, { "data": { "id": "6797a9cb-9d73-44ec-8b36-dcd1fa877a9d", "name": [ "PATTERN SPECIFICATION PROCESS%GOBP%GO:0007389" ], "description": [ "pattern specification process" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 232, "padj": 0.0053, "mcode_cluster_id": null, "NES": -1.6594 } }, { "data": { "id": "d8273106-b591-4851-a7f4-23759825900c", "name": [ "DEFENSE RESPONSE TO BACTERIUM%GOBP%GO:0042742" ], "description": [ "defense response to bacterium" ], "pvalue": 0.0033, "gs_type": null, "gs_size": 289, "padj": 0.0411, "mcode_cluster_id": "Cluster 8", "NES": -1.6081 } }, { "data": { "id": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "name": [ "GTP HYDROLYSIS AND JOINING OF THE 60S RIBOSOMAL SUBUNIT%REACTOME%R-HSA-72706.2" ], "description": [ "GTP hydrolysis and joining of the 60S ribosomal subunit" ], "pvalue": 5.3144e-19, "gs_type": null, "gs_size": 113, "padj": 3.0675e-16, "mcode_cluster_id": "Cluster 2", "NES": 2.7476 } }, { "data": { "id": "8bd23d7c-b674-46fa-a38f-ff3f409bedea", "name": [ "POSITIVE REGULATION OF NIK/NF-KAPPAB SIGNALING%GOBP%GO:1901224" ], "description": [ "positive regulation of NIK/NF-kappaB signaling" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 53, "padj": 0.0017, "mcode_cluster_id": null, "NES": -1.9988 } }, { "data": { "id": "74b2369d-66ac-460f-a979-d437295e0c0e", "name": [ "REGULATION OF TYROSINE PHOSPHORYLATION OF STAT PROTEIN%GOBP%GO:0042509" ], "description": [ "regulation of tyrosine phosphorylation of STAT protein" ], "pvalue": 0.0039, "gs_type": null, "gs_size": 66, "padj": 0.0468, "mcode_cluster_id": null, "NES": -1.6596 } }, { "data": { "id": "ce4736b4-7d14-450e-88ff-39a6b1df1c27", "name": [ "NERVOUS SYSTEM DEVELOPMENT%REACTOME DATABASE ID RELEASE 80%9675108" ], "description": [ "Nervous system development" ], "pvalue": 0.0024, "gs_type": null, "gs_size": 552, "padj": 0.0325, "mcode_cluster_id": null, "NES": 1.3309 } }, { "data": { "id": "8d39f70d-6be5-4dff-a05d-b2c90d4628fb", "name": [ "NEGATIVE REGULATION OF VIRAL GENOME REPLICATION%GOBP%GO:0045071" ], "description": [ "negative regulation of viral genome replication" ], "pvalue": 1.3953e-16, "gs_type": null, "gs_size": 55, "padj": 1.7897e-14, "mcode_cluster_id": "Cluster 24", "NES": -2.7602 } }, { "data": { "id": "94f8c2cf-ef03-4b45-bd55-316a301f111e", "name": [ "REGULATION OF NUCLEOCYTOPLASMIC TRANSPORT%GOBP%GO:0046822" ], "description": [ "regulation of nucleocytoplasmic transport" ], "pvalue": 0.0015, "gs_type": null, "gs_size": 75, "padj": 0.0235, "mcode_cluster_id": null, "NES": -1.6678 } }, { "data": { "id": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "name": [ "SRP-DEPENDENT COTRANSLATIONAL PROTEIN TARGETING TO MEMBRANE%REACTOME DATABASE ID RELEASE 80%1799339" ], "description": [ "SRP-dependent cotranslational protein targeting to membrane" ], "pvalue": 8.3963e-13, "gs_type": null, "gs_size": 113, "padj": 8.8115e-11, "mcode_cluster_id": "Cluster 2", "NES": 2.4493 } }, { "data": { "id": "cbaabd94-0052-42ac-986a-766c1c57b30d", "name": [ "NEGATIVE REGULATION OF CELL-CELL ADHESION%GOBP%GO:0022408" ], "description": [ "negative regulation of cell-cell adhesion" ], "pvalue": 0.0005, "gs_type": null, "gs_size": 148, "padj": 0.0091, "mcode_cluster_id": null, "NES": -1.7081 } }, { "data": { "id": "053565f9-6e2e-4c4a-8773-19c2e912501a", "name": [ "PURINE NUCLEOSIDE PHOSPHORYLASE DEFICIENCY%SMPDB%SMP0000210" ], "description": [ "Purine Nucleoside Phosphorylase Deficiency" ], "pvalue": 0.0043, "gs_type": null, "gs_size": 37, "padj": 0.0487, "mcode_cluster_id": "Cluster 3", "NES": -1.7147 } }, { "data": { "id": "6dd96c75-2d4e-43dc-ba3b-ae57cb430950", "name": [ "REGULATED NECROSIS%REACTOME%R-HSA-5218859.4" ], "description": [ "Regulated Necrosis" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 55, "padj": 0.0019, "mcode_cluster_id": null, "NES": -1.9482 } }, { "data": { "id": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "name": [ "RIBOSOMAL SCANNING AND START CODON RECOGNITION%REACTOME%R-HSA-72702.3" ], "description": [ "Ribosomal scanning and start codon recognition" ], "pvalue": 8.0872e-10, "gs_type": null, "gs_size": 59, "padj": 6.9671e-8, "mcode_cluster_id": "Cluster 2", "NES": 2.4651 } }, { "data": { "id": "e08450b6-07c9-4466-839b-670ce03c6f51", "name": [ "DEGRADATION OF GLI1 BY THE PROTEASOME%REACTOME%R-HSA-5610780.1" ], "description": [ "Degradation of GLI1 by the proteasome" ], "pvalue": 0, "gs_type": null, "gs_size": 60, "padj": 0.0009, "mcode_cluster_id": "Cluster 1", "NES": -1.9582 } }, { "data": { "id": "6734f0cb-8f56-42d4-80f0-2bd835f34b78", "name": [ "ISG15 ANTIVIRAL MECHANISM%REACTOME DATABASE ID RELEASE 80%1169408" ], "description": [ "ISG15 antiviral mechanism" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 71, "padj": 0.0038, "mcode_cluster_id": "Cluster 29", "NES": -1.8625 } }, { "data": { "id": "ee0208d5-fbf4-43f6-bb04-c929b2f1a698", "name": [ "PYRIDINE-CONTAINING COMPOUND BIOSYNTHETIC PROCESS%GOBP%GO:0072525" ], "description": [ "pyridine-containing compound biosynthetic process" ], "pvalue": 0.0041, "gs_type": null, "gs_size": 25, "padj": 0.0483, "mcode_cluster_id": null, "NES": -1.7315 } }, { "data": { "id": "72dff63e-bb99-4d8f-8b2d-f863ae5278f1", "name": [ "EML4 AND NUDC IN MITOTIC SPINDLE FORMATION%REACTOME DATABASE ID RELEASE 80%9648025" ], "description": [ "EML4 and NUDC in mitotic spindle formation" ], "pvalue": 0.0024, "gs_type": null, "gs_size": 96, "padj": 0.0325, "mcode_cluster_id": "Cluster 11", "NES": -1.6272 } }, { "data": { "id": "77426953-e5e2-4601-ac83-c1df590702f3", "name": [ "A6B1 AND A6B4 INTEGRIN SIGNALING%PATHWAY INTERACTION DATABASE NCI-NATURE CURATED DATA%A6B1 AND A6B4 INTEGRIN SIGNALING" ], "description": [ "a6b1 and a6b4 Integrin signaling" ], "pvalue": 0.002, "gs_type": null, "gs_size": 45, "padj": 0.0285, "mcode_cluster_id": null, "NES": -1.7085 } }, { "data": { "id": "3bd54d11-75f4-41e6-a76a-9a0c15b0ea2e", "name": [ "TRANSFERRIN ENDOCYTOSIS AND RECYCLING%REACTOME%R-HSA-917977.1" ], "description": [ "Transferrin endocytosis and recycling" ], "pvalue": 0.0009, "gs_type": null, "gs_size": 31, "padj": 0.0156, "mcode_cluster_id": "Cluster 22", "NES": 1.8435 } }, { "data": { "id": "25ba247c-7549-49d7-a57d-c80e59da6733", "name": [ "APC C:CDH1 MEDIATED DEGRADATION OF CDC20 AND OTHER APC C:CDH1 TARGETED PROTEINS IN LATE MITOSIS EARLY G1%REACTOME DATABASE ID RELEASE 80%174178" ], "description": [ "APC C:Cdh1 mediated degradation of Cdc20 and other APC C:Cdh1 targeted proteins in late mitosis early G1" ], "pvalue": 0.0000013142, "gs_type": null, "gs_size": 74, "padj": 0.0001, "mcode_cluster_id": "Cluster 1", "NES": -2.1135 } }, { "data": { "id": "0fa7780a-aa5e-4c49-bf7e-b69627360916", "name": [ "MAMMARY GLAND EPITHELIUM DEVELOPMENT%GOBP%GO:0061180" ], "description": [ "mammary gland epithelium development" ], "pvalue": 0.0021, "gs_type": null, "gs_size": 19, "padj": 0.0298, "mcode_cluster_id": null, "NES": -1.8394 } }, { "data": { "id": "9fe2ddb7-4a9e-4b3a-8109-88a5b1aa48e5", "name": [ "EMBRYONIC SKELETAL SYSTEM DEVELOPMENT%GOBP%GO:0048706" ], "description": [ "embryonic skeletal system development" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 50, "padj": 0.0066, "mcode_cluster_id": null, "NES": -1.8539 } }, { "data": { "id": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "name": [ "OXYGEN-DEPENDENT PROLINE HYDROXYLATION OF HYPOXIA-INDUCIBLE FACTOR ALPHA%REACTOME%R-HSA-1234176.2" ], "description": [ "Oxygen-dependent proline hydroxylation of Hypoxia-inducible Factor Alpha" ], "pvalue": 0.002, "gs_type": null, "gs_size": 66, "padj": 0.0296, "mcode_cluster_id": "Cluster 1", "NES": -1.648 } }, { "data": { "id": "f4735061-16c1-46d1-a53f-b491a4b302ff", "name": [ "POSITIVE REGULATION OF PEPTIDASE ACTIVITY%GOBP%GO:0010952" ], "description": [ "positive regulation of peptidase activity" ], "pvalue": 0.0044, "gs_type": null, "gs_size": 164, "padj": 0.0491, "mcode_cluster_id": "Cluster 13", "NES": -1.5018 } }, { "data": { "id": "51aa4010-3e79-4fea-9a8d-7d096b0002fa", "name": [ "ADP METABOLIC PROCESS%GOBP%GO:0046031" ], "description": [ "ADP metabolic process" ], "pvalue": 0.0006, "gs_type": null, "gs_size": 36, "padj": 0.0105, "mcode_cluster_id": "Cluster 4", "NES": 1.8929 } }, { "data": { "id": "1732e9b0-d067-4fb4-9670-5e323da79090", "name": [ "HOST INTERACTIONS OF HIV FACTORS%REACTOME DATABASE ID RELEASE 80%162909" ], "description": [ "Host Interactions of HIV factors" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 126, "padj": 0.0019, "mcode_cluster_id": "Cluster 1", "NES": -1.7713 } }, { "data": { "id": "18ec1eae-95a2-49dc-9ce4-3dc89a422633", "name": [ "CATION TRANSPORT%GOBP%GO:0006812" ], "description": [ "cation transport" ], "pvalue": 0.0006, "gs_type": null, "gs_size": 582, "padj": 0.0109, "mcode_cluster_id": "Cluster 17", "NES": 1.4097 } }, { "data": { "id": "72fd7976-1a23-4642-833b-600f2c123e40", "name": [ "REGULATION OF ORNITHINE DECARBOXYLASE (ODC)%REACTOME DATABASE ID RELEASE 80%350562" ], "description": [ "Regulation of ornithine decarboxylase (ODC)" ], "pvalue": 9.1868e-7, "gs_type": null, "gs_size": 51, "padj": 0, "mcode_cluster_id": "Cluster 1", "NES": -2.1255 } }, { "data": { "id": "4b257541-41ee-48df-a6fd-50b21f4852e6", "name": [ "REGULATION OF DEFENSE RESPONSE TO VIRUS%GOBP%GO:0050688" ], "description": [ "regulation of defense response to virus" ], "pvalue": 0.0008, "gs_type": null, "gs_size": 58, "padj": 0.0137, "mcode_cluster_id": "Cluster 30", "NES": -1.7904 } }, { "data": { "id": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "name": [ "ACTIVATION OF THE MRNA UPON BINDING OF THE CAP-BINDING COMPLEX AND EIFS, AND SUBSEQUENT BINDING TO 43S%REACTOME%R-HSA-72662.3" ], "description": [ "Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S" ], "pvalue": 1.3344e-10, "gs_type": null, "gs_size": 60, "padj": 1.2837e-8, "mcode_cluster_id": "Cluster 2", "NES": 2.5181 } }, { "data": { "id": "c7530ee1-195e-4a51-bf3e-3bed2d809cb1", "name": [ "RENAL SYSTEM DEVELOPMENT%GOBP%GO:0072001" ], "description": [ "renal system development" ], "pvalue": 0.0014, "gs_type": null, "gs_size": 144, "padj": 0.0232, "mcode_cluster_id": "Cluster 27", "NES": -1.6204 } }, { "data": { "id": "673e2316-b031-4c2c-a509-8614a17758ee", "name": [ "MORPHOGENESIS OF A BRANCHING EPITHELIUM%GOBP%GO:0061138" ], "description": [ "morphogenesis of a branching epithelium" ], "pvalue": 0.0021, "gs_type": null, "gs_size": 51, "padj": 0.0303, "mcode_cluster_id": null, "NES": -1.7272 } }, { "data": { "id": "a3367273-5acd-4eaa-a023-f4b63d39ff67", "name": [ "REGULATION OF ADAPTIVE IMMUNE RESPONSE%GOBP%GO:0002819" ], "description": [ "regulation of adaptive immune response" ], "pvalue": 0.0017, "gs_type": null, "gs_size": 148, "padj": 0.026, "mcode_cluster_id": "Cluster 8", "NES": -1.6683 } }, { "data": { "id": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "name": [ "CYCLIN E ASSOCIATED EVENTS DURING G1 S TRANSITION%REACTOME%R-HSA-69202.3" ], "description": [ "Cyclin E associated events during G1 S transition" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 83, "padj": 0.0016, "mcode_cluster_id": "Cluster 1", "NES": -1.8372 } }, { "data": { "id": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "name": [ "APC C:CDC20 MEDIATED DEGRADATION OF MITOTIC PROTEINS%REACTOME DATABASE ID RELEASE 80%176409" ], "description": [ "APC C:Cdc20 mediated degradation of mitotic proteins" ], "pvalue": 2.5341e-7, "gs_type": null, "gs_size": 76, "padj": 0, "mcode_cluster_id": "Cluster 1", "NES": -2.1223 } }, { "data": { "id": "d37ef7d2-4fd9-4425-a8e1-36fb013f7be2", "name": [ "REGULATION OF TRANSCRIPTION INVOLVED IN G1/S TRANSITION OF MITOTIC CELL CYCLE%GOBP%GO:0000083" ], "description": [ "regulation of transcription involved in G1/S transition of mitotic cell cycle" ], "pvalue": 0.0023, "gs_type": null, "gs_size": 19, "padj": 0.0321, "mcode_cluster_id": null, "NES": 1.8139 } }, { "data": { "id": "c2299d47-d293-4c8d-8cf6-014098082e38", "name": [ "CELLULAR HOMEOSTASIS%GOBP%GO:0019725" ], "description": [ "cellular homeostasis" ], "pvalue": 0.0016, "gs_type": null, "gs_size": 492, "padj": 0.0246, "mcode_cluster_id": null, "NES": 1.3487 } }, { "data": { "id": "1096a44e-4dbc-42d3-a424-671eb9231708", "name": [ "RESPONSE TO HYPOXIA%GOBP%GO:0001666" ], "description": [ "response to hypoxia" ], "pvalue": 2.6935e-8, "gs_type": null, "gs_size": 145, "padj": 0.0000019194, "mcode_cluster_id": "Cluster 9", "NES": 2.0712 } }, { "data": { "id": "36c62e65-4dec-4c29-9fa7-909db0c24423", "name": [ "REGULATION OF TYPE I INTERFERON PRODUCTION%GOBP%GO:0032479" ], "description": [ "regulation of type I interferon production" ], "pvalue": 0, "gs_type": null, "gs_size": 89, "padj": 0.0012, "mcode_cluster_id": "Cluster 19", "NES": -1.8799 } }, { "data": { "id": "7c19397c-c3a4-4e9d-ace5-e394a084501e", "name": [ "TISSUE HOMEOSTASIS%GOBP%GO:0001894" ], "description": [ "tissue homeostasis" ], "pvalue": 0.0045, "gs_type": null, "gs_size": 154, "padj": 0.0494, "mcode_cluster_id": null, "NES": -1.5058 } }, { "data": { "id": "44338cf6-b799-4097-a74f-e7386e686f63", "name": [ "RIBONUCLEOSIDE DIPHOSPHATE METABOLIC PROCESS%GOBP%GO:0009185" ], "description": [ "ribonucleoside diphosphate metabolic process" ], "pvalue": 0.0016, "gs_type": null, "gs_size": 47, "padj": 0.0247, "mcode_cluster_id": "Cluster 4", "NES": 1.7175 } }, { "data": { "id": "bcc65295-3471-4afc-8a56-1663b2c5f48d", "name": [ "CELLULAR RESPONSE TO ORGANIC CYCLIC COMPOUND%GOBP%GO:0071407" ], "description": [ "cellular response to organic cyclic compound" ], "pvalue": 0.0014, "gs_type": null, "gs_size": 296, "padj": 0.0224, "mcode_cluster_id": null, "NES": -1.4794 } }, { "data": { "id": "14654f3b-2789-4eed-a644-a2a654fa934b", "name": [ "MITOTIC G2-G2 M PHASES%REACTOME DATABASE ID RELEASE 80%453274" ], "description": [ "Mitotic G2-G2 M phases" ], "pvalue": 0.0011, "gs_type": null, "gs_size": 183, "padj": 0.0188, "mcode_cluster_id": null, "NES": -1.5634 } }, { "data": { "id": "0d3bb231-67c2-46cb-93ed-80383c138af9", "name": [ "CLEC7A (DECTIN-1) SIGNALING%REACTOME%R-HSA-5607764.1" ], "description": [ "CLEC7A (Dectin-1) signaling" ], "pvalue": 0.0007, "gs_type": null, "gs_size": 97, "padj": 0.0131, "mcode_cluster_id": "Cluster 1", "NES": -1.6615 } }, { "data": { "id": "386aac68-a2ec-4a2a-a96e-7b32087b2e75", "name": [ "GLYCOLYSIS%BIOCYC%PWY66-400" ], "description": [ "glycolysis" ], "pvalue": 0.0017, "gs_type": null, "gs_size": 25, "padj": 0.0252, "mcode_cluster_id": "Cluster 4", "NES": 1.8733 } }, { "data": { "id": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "name": [ "P53-INDEPENDENT G1 S DNA DAMAGE CHECKPOINT%REACTOME%R-HSA-69613.2" ], "description": [ "p53-Independent G1 S DNA damage checkpoint" ], "pvalue": 0, "gs_type": null, "gs_size": 52, "padj": 0.0005, "mcode_cluster_id": "Cluster 1", "NES": -2.0428 } }, { "data": { "id": "e01bb0c4-42f6-4d9d-b9dc-fabc5aa42336", "name": [ "RESOLUTION OF SISTER CHROMATID COHESION%REACTOME DATABASE ID RELEASE 80%2500257" ], "description": [ "Resolution of Sister Chromatid Cohesion" ], "pvalue": 0.0004, "gs_type": null, "gs_size": 104, "padj": 0.0084, "mcode_cluster_id": "Cluster 11", "NES": -1.663 } }, { "data": { "id": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "name": [ "ABC TRANSPORTER DISORDERS%REACTOME DATABASE ID RELEASE 80%5619084" ], "description": [ "ABC transporter disorders" ], "pvalue": 0.0031, "gs_type": null, "gs_size": 78, "padj": 0.0395, "mcode_cluster_id": "Cluster 1", "NES": -1.6156 } }, { "data": { "id": "405225ec-878f-41f4-9b4f-158f553cd119", "name": [ "GLYCOLYTIC PROCESS%GOBP%GO:0006096" ], "description": [ "glycolytic process" ], "pvalue": 0, "gs_type": null, "gs_size": 33, "padj": 0.0012, "mcode_cluster_id": "Cluster 4", "NES": 2.0939 } }, { "data": { "id": "edd3d72d-8319-4a8c-9fb8-28083330ae5b", "name": [ "REGULATION OF VIRAL PROCESS%GOBP%GO:0050792" ], "description": [ "regulation of viral process" ], "pvalue": 2.518e-16, "gs_type": null, "gs_size": 148, "padj": 3.1595e-14, "mcode_cluster_id": null, "NES": -2.581 } }, { "data": { "id": "a6609db1-5756-4ff4-8409-5013d1a74f05", "name": [ "G1 S TRANSITION%REACTOME DATABASE ID RELEASE 80%69206" ], "description": [ "G1 S Transition" ], "pvalue": 1.5962e-7, "gs_type": null, "gs_size": 131, "padj": 0.0000094984, "mcode_cluster_id": "Cluster 1", "NES": -2.0302 } }, { "data": { "id": "84f6f0ed-9615-48ba-a629-667c8302de99", "name": [ "NONSENSE MEDIATED DECAY (NMD) INDEPENDENT OF THE EXON JUNCTION COMPLEX (EJC)%REACTOME DATABASE ID RELEASE 80%975956" ], "description": [ "Nonsense Mediated Decay (NMD) independent of the Exon Junction Complex (EJC)" ], "pvalue": 3.8988e-16, "gs_type": null, "gs_size": 96, "padj": 4.6883e-14, "mcode_cluster_id": "Cluster 2", "NES": 2.647 } }, { "data": { "id": "3c54f402-e935-4497-a7fe-2337a3f7eabe", "name": [ "2Q13 COPY NUMBER VARIATION SYNDROME%WIKIPATHWAYS_20220510%WP5222%HOMO SAPIENS" ], "description": [ "2q13 copy number variation syndrome" ], "pvalue": 0.0008, "gs_type": null, "gs_size": 53, "padj": 0.0135, "mcode_cluster_id": null, "NES": -1.8188 } }, { "data": { "id": "51cd536b-4219-49d0-a87e-4a8d061610d9", "name": [ "RETINOBLASTOMA GENE IN CANCER%WIKIPATHWAYS_20220510%WP2446%HOMO SAPIENS" ], "description": [ "Retinoblastoma gene in cancer" ], "pvalue": 0.0042, "gs_type": null, "gs_size": 71, "padj": 0.0487, "mcode_cluster_id": null, "NES": -1.6131 } }, { "data": { "id": "d2d5ee33-3b7a-4d74-aab6-64868405958e", "name": [ "POSITIVE REGULATION OF CELL DIFFERENTIATION%GOBP%GO:0045597" ], "description": [ "positive regulation of cell differentiation" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 622, "padj": 0.0044, "mcode_cluster_id": null, "NES": -1.4321 } }, { "data": { "id": "f9954f17-1709-479e-8d22-403ed421f128", "name": [ "NUCLEAR EVENTS MEDIATED BY NFE2L2%REACTOME%R-HSA-9759194.1" ], "description": [ "Nuclear events mediated by NFE2L2" ], "pvalue": 0.0037, "gs_type": null, "gs_size": 78, "padj": 0.0452, "mcode_cluster_id": "Cluster 1", "NES": -1.6009 } }, { "data": { "id": "566a65aa-e210-489d-a08a-a496944fcdee", "name": [ "RESPONSE TO INTERFERON-ALPHA%GOBP%GO:0035455" ], "description": [ "response to interferon-alpha" ], "pvalue": 6.2263e-10, "gs_type": null, "gs_size": 18, "padj": 5.5289e-8, "mcode_cluster_id": null, "NES": -2.4205 } }, { "data": { "id": "030cf588-cca1-4cdb-bb4d-b59de9b2e50d", "name": [ "APOPTOSIS MODULATION AND SIGNALING%WIKIPATHWAYS_20220510%WP1772%HOMO SAPIENS" ], "description": [ "Apoptosis modulation and signaling" ], "pvalue": 0.0033, "gs_type": null, "gs_size": 77, "padj": 0.0408, "mcode_cluster_id": null, "NES": -1.6083 } }, { "data": { "id": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "name": [ "REGULATION OF PTEN STABILITY AND ACTIVITY%REACTOME%R-HSA-8948751.1" ], "description": [ "Regulation of PTEN stability and activity" ], "pvalue": 0.0041, "gs_type": null, "gs_size": 69, "padj": 0.0483, "mcode_cluster_id": "Cluster 1", "NES": -1.6141 } }, { "data": { "id": "4ecaabe1-58fe-49d0-8365-8bbb34cc004e", "name": [ "RESPONSE TO VIRUS%GOBP%GO:0009615" ], "description": [ "response to virus" ], "pvalue": 1.3743e-19, "gs_type": null, "gs_size": 283, "padj": 1.1332e-16, "mcode_cluster_id": null, "NES": -2.5172 } }, { "data": { "id": "dec11a24-597a-4f26-846a-eed2d73e5b96", "name": [ "SWITCHING OF ORIGINS TO A POST-REPLICATIVE STATE%REACTOME DATABASE ID RELEASE 80%69052" ], "description": [ "Switching of origins to a post-replicative state" ], "pvalue": 6.4812e-8, "gs_type": null, "gs_size": 92, "padj": 0.0000041566, "mcode_cluster_id": "Cluster 1", "NES": -2.1107 } }, { "data": { "id": "494ff507-5e65-4be7-8344-3f8a80c7d83e", "name": [ "GOUT OR KELLEY-SEEGMILLER SYNDROME%SMPDB%SMP0000365" ], "description": [ "Gout or Kelley-Seegmiller Syndrome" ], "pvalue": 0.0043, "gs_type": null, "gs_size": 37, "padj": 0.0487, "mcode_cluster_id": "Cluster 3", "NES": -1.7147 } }, { "data": { "id": "8b5d436c-ecc1-4684-a366-2e8a0ecd5bde", "name": [ "REGULATION OF NUCLEASE ACTIVITY%GOBP%GO:0032069" ], "description": [ "regulation of nuclease activity" ], "pvalue": 0.0014, "gs_type": null, "gs_size": 22, "padj": 0.0224, "mcode_cluster_id": null, "NES": -1.9011 } }, { "data": { "id": "c6751f66-b231-4a0d-84d6-e53835fd242d", "name": [ "RESPONSE TO BACTERIUM%GOBP%GO:0009617" ], "description": [ "response to bacterium" ], "pvalue": 2.2774e-7, "gs_type": null, "gs_size": 479, "padj": 0, "mcode_cluster_id": "Cluster 8", "NES": -1.8674 } }, { "data": { "id": "01306fda-354a-48e5-ae29-47adae7a7cb5", "name": [ "SARS-COV-2 INNATE IMMUNITY EVASION AND CELL-SPECIFIC IMMUNE RESPONSE%WIKIPATHWAYS_20220510%WP5039%HOMO SAPIENS" ], "description": [ "SARS-CoV-2 innate immunity evasion and cell-specific immune response" ], "pvalue": 4.6832e-8, "gs_type": null, "gs_size": 65, "padj": 0.0000030718, "mcode_cluster_id": null, "NES": -2.295 } }, { "data": { "id": "be19f28b-2fa2-44f2-9027-54a576cb80e0", "name": [ "DEUBIQUITINATION%REACTOME%R-HSA-5688426.3" ], "description": [ "Deubiquitination" ], "pvalue": 0.0034, "gs_type": null, "gs_size": 283, "padj": 0.0426, "mcode_cluster_id": null, "NES": -1.3846 } }, { "data": { "id": "d67f14aa-83cb-473a-bc1c-fd8dc7773c23", "name": [ "ION TRANSMEMBRANE TRANSPORT%GOBP%GO:0034220" ], "description": [ "ion transmembrane transport" ], "pvalue": 0.0016, "gs_type": null, "gs_size": 578, "padj": 0.0245, "mcode_cluster_id": "Cluster 17", "NES": 1.3776 } }, { "data": { "id": "7e85afe0-6be4-4292-9d6b-128bb3b0c3ca", "name": [ "CELL MIGRATION%GOBP%GO:0016477" ], "description": [ "cell migration" ], "pvalue": 0, "gs_type": null, "gs_size": 660, "padj": 0.0012, "mcode_cluster_id": "Cluster 20", "NES": -1.5017 } }, { "data": { "id": "b71dd8da-9ecc-4656-9fe5-fd51978cc016", "name": [ "NEGATIVE REGULATION OF CELL ACTIVATION%GOBP%GO:0050866" ], "description": [ "negative regulation of cell activation" ], "pvalue": 0.0025, "gs_type": null, "gs_size": 148, "padj": 0.0334, "mcode_cluster_id": "Cluster 5", "NES": -1.5878 } }, { "data": { "id": "b9903a36-5f4a-4a44-87b7-51c635ad9614", "name": [ "NEGATIVE REGULATION OF VIRAL PROCESS%GOBP%GO:0048525" ], "description": [ "negative regulation of viral process" ], "pvalue": 1.4044e-18, "gs_type": null, "gs_size": 84, "padj": 5.0665e-16, "mcode_cluster_id": "Cluster 24", "NES": -2.8093 } }, { "data": { "id": "316b650d-9339-4038-8610-5d7ba652dfb4", "name": [ "AMIDE BIOSYNTHETIC PROCESS%GOBP%GO:0043604" ], "description": [ "amide biosynthetic process" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 444, "padj": 0.0016, "mcode_cluster_id": null, "NES": 1.4889 } }, { "data": { "id": "993c9258-d400-4771-a40c-724ec7790ee4", "name": [ "TRANSLESION SYNTHESIS BY Y FAMILY DNA POLYMERASES BYPASSES LESIONS ON DNA TEMPLATE%REACTOME%R-HSA-110313.1" ], "description": [ "Translesion synthesis by Y family DNA polymerases bypasses lesions on DNA template" ], "pvalue": 0.0038, "gs_type": null, "gs_size": 39, "padj": 0.0453, "mcode_cluster_id": "Cluster 32", "NES": -1.6863 } }, { "data": { "id": "68aa11aa-cfcd-4778-ba73-b42dff5cc58d", "name": [ "ANTIGEN PROCESSING AND PRESENTATION OF PEPTIDE ANTIGEN%GOBP%GO:0048002" ], "description": [ "antigen processing and presentation of peptide antigen" ], "pvalue": 0.0000012839, "gs_type": null, "gs_size": 58, "padj": 0.0001, "mcode_cluster_id": "Cluster 31", "NES": -2.2181 } }, { "data": { "id": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "name": [ "PROTEIN SYNTHESIS: ALANINE%PATHWHIZ%PW101384" ], "description": [ "Protein Synthesis: Alanine" ], "pvalue": 2.3069e-17, "gs_type": null, "gs_size": 80, "padj": 3.8044e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7672 } }, { "data": { "id": "e6eb3bcc-6937-43bb-b8a2-555c216f8a46", "name": [ "CHROMOSOME MAINTENANCE%REACTOME DATABASE ID RELEASE 80%73886" ], "description": [ "Chromosome Maintenance" ], "pvalue": 0.0018, "gs_type": null, "gs_size": 120, "padj": 0.0266, "mcode_cluster_id": null, "NES": -1.5545 } }, { "data": { "id": "e14619f8-5908-4ff3-a64e-733c672c16e1", "name": [ "EMBRYONIC SKELETAL SYSTEM MORPHOGENESIS%GOBP%GO:0048704" ], "description": [ "embryonic skeletal system morphogenesis" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 37, "padj": 0.0051, "mcode_cluster_id": null, "NES": -1.957 } }, { "data": { "id": "8b48b3a6-a163-435e-a40f-8a79a24e4747", "name": [ "BETA3 INTEGRIN CELL SURFACE INTERACTIONS%PATHWAY INTERACTION DATABASE NCI-NATURE CURATED DATA%BETA3 INTEGRIN CELL SURFACE INTERACTIONS" ], "description": [ "Beta3 integrin cell surface interactions" ], "pvalue": 0.0018, "gs_type": null, "gs_size": 43, "padj": 0.0273, "mcode_cluster_id": null, "NES": 1.7186 } }, { "data": { "id": "b5d73495-423a-4299-9680-7d3e4c6c9ac6", "name": [ "RESPONSE TO OXYGEN LEVELS%GOBP%GO:0070482" ], "description": [ "response to oxygen levels" ], "pvalue": 6.7292e-8, "gs_type": null, "gs_size": 165, "padj": 0.0000042682, "mcode_cluster_id": "Cluster 9", "NES": 1.9657 } }, { "data": { "id": "609da3b8-38fc-410a-abcf-b354517a1506", "name": [ "DISEASES ASSOCIATED WITH THE TLR SIGNALING CASCADE%REACTOME DATABASE ID RELEASE 80%5602358" ], "description": [ "Diseases associated with the TLR signaling cascade" ], "pvalue": 0.0044, "gs_type": null, "gs_size": 31, "padj": 0.0488, "mcode_cluster_id": "Cluster 14", "NES": -1.6976 } }, { "data": { "id": "49a00525-1f4c-45ab-a993-35fe295a7296", "name": [ "EMBRYONIC MORPHOGENESIS%GOBP%GO:0048598" ], "description": [ "embryonic morphogenesis" ], "pvalue": 0.0036, "gs_type": null, "gs_size": 281, "padj": 0.0437, "mcode_cluster_id": "Cluster 15", "NES": -1.4249 } }, { "data": { "id": "2c5d0add-3722-454a-b999-849bc812da0f", "name": [ "EMBRYONIC ORGAN DEVELOPMENT%GOBP%GO:0048568" ], "description": [ "embryonic organ development" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 210, "padj": 0.0039, "mcode_cluster_id": "Cluster 15", "NES": -1.6465 } }, { "data": { "id": "ee2d8d47-39c8-443b-ab8d-9ea8e445bff2", "name": [ "NEGATIVE REGULATION OF ADAPTIVE IMMUNE RESPONSE BASED ON SOMATIC RECOMBINATION OF IMMUNE RECEPTORS BUILT FROM IMMUNOGLOBULIN SUPERFAMILY DOMAINS%GOBP%GO:0002823" ], "description": [ "negative regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains" ], "pvalue": 0.0034, "gs_type": null, "gs_size": 38, "padj": 0.042, "mcode_cluster_id": "Cluster 18", "NES": -1.7493 } }, { "data": { "id": "ed0c101a-e77b-43ec-84f2-def41ddd296f", "name": [ "METAL ION TRANSPORT%GOBP%GO:0030001" ], "description": [ "metal ion transport" ], "pvalue": 0.0027, "gs_type": null, "gs_size": 459, "padj": 0.035, "mcode_cluster_id": "Cluster 17", "NES": 1.4192 } }, { "data": { "id": "487ede00-3720-40cc-aeca-6d646d21bb9c", "name": [ "HEAD DEVELOPMENT%GOBP%GO:0060322" ], "description": [ "head development" ], "pvalue": 0.0024, "gs_type": null, "gs_size": 400, "padj": 0.0325, "mcode_cluster_id": null, "NES": 1.3752 } }, { "data": { "id": "5e000526-3964-43c0-9309-8b7b7d4bc462", "name": [ "REGULATION OF DEFENSE RESPONSE TO VIRUS BY HOST%GOBP%GO:0050691" ], "description": [ "regulation of defense response to virus by host" ], "pvalue": 0.0009, "gs_type": null, "gs_size": 36, "padj": 0.0161, "mcode_cluster_id": "Cluster 30", "NES": -1.8709 } }, { "data": { "id": "24500407-f636-44ed-9254-763c3b68aad6", "name": [ "PROTEIN SYNTHESIS: PHENYLALANINE%PATHWHIZ%PW112934" ], "description": [ "Protein Synthesis: Phenylalanine" ], "pvalue": 1.063e-17, "gs_type": null, "gs_size": 81, "padj": 2.2724e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7664 } }, { "data": { "id": "d2f88ba5-673a-4fdf-8d63-da8b182f7847", "name": [ "IMMUNE RESPONSE TO TUBERCULOSIS%WIKIPATHWAYS_20220510%WP4197%HOMO SAPIENS" ], "description": [ "Immune response to tuberculosis" ], "pvalue": 6.2896e-8, "gs_type": null, "gs_size": 21, "padj": 0.000004079, "mcode_cluster_id": null, "NES": -2.3703 } }, { "data": { "id": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "name": [ "CELLULAR RESPONSE TO STARVATION%REACTOME%R-HSA-9711097.2" ], "description": [ "Cellular response to starvation" ], "pvalue": 7.9001e-19, "gs_type": null, "gs_size": 157, "padj": 3.5076e-16, "mcode_cluster_id": "Cluster 2", "NES": 2.6085 } }, { "data": { "id": "6bcd8ab7-e236-4d60-b6ed-fc74e7d1cb21", "name": [ "REGULATION OF VIRAL LIFE CYCLE%GOBP%GO:1903900" ], "description": [ "regulation of viral life cycle" ], "pvalue": 2.4478e-18, "gs_type": null, "gs_size": 130, "padj": 8.3109e-16, "mcode_cluster_id": null, "NES": -2.7044 } }, { "data": { "id": "088965ae-beab-49a6-ba7f-62c8508bf897", "name": [ "PROTEIN SYNTHESIS: GLUTAMIC ACID%PATHWHIZ%PW112922" ], "description": [ "Protein Synthesis: Glutamic Acid" ], "pvalue": 6.8867e-18, "gs_type": null, "gs_size": 80, "padj": 1.5288e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7906 } }, { "data": { "id": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "name": [ "FORMATION OF THE TERNARY COMPLEX, AND SUBSEQUENTLY, THE 43S COMPLEX%REACTOME DATABASE ID RELEASE 80%72695" ], "description": [ "Formation of the ternary complex, and subsequently, the 43S complex" ], "pvalue": 1.0618e-9, "gs_type": null, "gs_size": 52, "padj": 8.9703e-8, "mcode_cluster_id": "Cluster 2", "NES": 2.4133 } }, { "data": { "id": "17018f59-7b29-40d7-bb46-1283a625ad23", "name": [ "INTERLEUKIN-1 FAMILY SIGNALING%REACTOME DATABASE ID RELEASE 80%446652" ], "description": [ "Interleukin-1 family signaling" ], "pvalue": 3.7588e-7, "gs_type": null, "gs_size": 139, "padj": 0, "mcode_cluster_id": "Cluster 1", "NES": -1.993 } }, { "data": { "id": "85618a5e-0712-414d-a086-843f21373c0c", "name": [ "PROTEIN SYNTHESIS: ARGININE%SMPDB%SMP0111853" ], "description": [ "Protein Synthesis: Arginine" ], "pvalue": 6.8867e-18, "gs_type": null, "gs_size": 80, "padj": 1.5288e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7905 } }, { "data": { "id": "90a1fbc3-8b4c-4e8c-9a45-0f1ff6401376", "name": [ "GLYCOGENOSIS, TYPE IB%SMPDB%SMP0000573" ], "description": [ "Glycogenosis, Type IB" ], "pvalue": 0.0024, "gs_type": null, "gs_size": 22, "padj": 0.0325, "mcode_cluster_id": "Cluster 6", "NES": 1.8382 } }, { "data": { "id": "f50e0886-7045-43df-975c-5841076bd18e", "name": [ "POSITIVE REGULATION OF PEPTIDYL-TYROSINE PHOSPHORYLATION%GOBP%GO:0050731" ], "description": [ "positive regulation of peptidyl-tyrosine phosphorylation" ], "pvalue": 0.0021, "gs_type": null, "gs_size": 143, "padj": 0.0305, "mcode_cluster_id": null, "NES": -1.5953 } }, { "data": { "id": "5f47d86e-ebc9-4f55-921a-e27eaa72c83d", "name": [ "SPINAL CORD INJURY%WIKIPATHWAYS_20220510%WP2431%HOMO SAPIENS" ], "description": [ "Spinal cord injury" ], "pvalue": 0.0021, "gs_type": null, "gs_size": 108, "padj": 0.0301, "mcode_cluster_id": null, "NES": -1.6507 } }, { "data": { "id": "d3f9849e-514c-40e5-adfb-38856b8f3ba9", "name": [ "NEUREXINS AND NEUROLIGINS%REACTOME%R-HSA-6794361.4" ], "description": [ "Neurexins and neuroligins" ], "pvalue": 0.0008, "gs_type": null, "gs_size": 56, "padj": 0.0136, "mcode_cluster_id": null, "NES": 1.762 } }, { "data": { "id": "6242568b-b575-4dcc-b650-c7cad25dcbf2", "name": [ "DORSAL/VENTRAL PATTERN FORMATION%GOBP%GO:0009953" ], "description": [ "dorsal/ventral pattern formation" ], "pvalue": 0.0029, "gs_type": null, "gs_size": 34, "padj": 0.0369, "mcode_cluster_id": null, "NES": -1.7395 } }, { "data": { "id": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "name": [ "BETA-CATENIN INDEPENDENT WNT SIGNALING%REACTOME DATABASE ID RELEASE 80%3858494" ], "description": [ "Beta-catenin independent WNT signaling" ], "pvalue": 0.0017, "gs_type": null, "gs_size": 143, "padj": 0.0256, "mcode_cluster_id": "Cluster 1", "NES": -1.5406 } }, { "data": { "id": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "name": [ "DEGRADATION OF DVL%REACTOME%R-HSA-4641258.2" ], "description": [ "Degradation of DVL" ], "pvalue": 0, "gs_type": null, "gs_size": 57, "padj": 0.0009, "mcode_cluster_id": "Cluster 1", "NES": -2.0025 } }, { "data": { "id": "de07d3b1-479f-48aa-ad7e-3f6e927a8f6f", "name": [ "ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY%WIKIPATHWAYS_20220510%WP2118%HOMO SAPIENS" ], "description": [ "Arrhythmogenic right ventricular cardiomyopathy" ], "pvalue": 0.003, "gs_type": null, "gs_size": 62, "padj": 0.0381, "mcode_cluster_id": null, "NES": -1.7421 } }, { "data": { "id": "0bfa67d0-9a6b-4b9a-b243-e803f1c4d8e6", "name": [ "AMINO ACID TRANSPORT ACROSS THE PLASMA MEMBRANE%REACTOME%R-HSA-352230.3" ], "description": [ "Amino acid transport across the plasma membrane" ], "pvalue": 0.0025, "gs_type": null, "gs_size": 32, "padj": 0.0337, "mcode_cluster_id": null, "NES": 1.7777 } }, { "data": { "id": "5c9e9840-0565-4e14-9526-c57609d4c61e", "name": [ "REGULATION OF CELL-CELL ADHESION%GOBP%GO:0022407" ], "description": [ "regulation of cell-cell adhesion" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 387, "padj": 0.006, "mcode_cluster_id": "Cluster 5", "NES": -1.4961 } }, { "data": { "id": "3bfb8e85-f48e-403f-ac3c-bf8166cffc77", "name": [ "SUPERPATHWAY OF CONVERSION OF GLUCOSE TO ACETYL COA AND ENTRY INTO THE TCA CYCLE%BIOCYC%PWY66-407" ], "description": [ "superpathway of conversion of glucose to acetyl CoA and entry into the TCA cycle" ], "pvalue": 0.0044, "gs_type": null, "gs_size": 47, "padj": 0.0488, "mcode_cluster_id": "Cluster 4", "NES": 1.6594 } }, { "data": { "id": "7e8a2798-3efd-4409-a939-be2763ac2d08", "name": [ "PROTEIN SYNTHESIS: ISOLEUCINE%SMPDB%SMP0111872" ], "description": [ "Protein Synthesis: Isoleucine" ], "pvalue": 2.6868e-17, "gs_type": null, "gs_size": 80, "padj": 4.3079e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7637 } }, { "data": { "id": "ea3958a9-39f3-4ea3-b2e0-303c3b0359c8", "name": [ "PHOSPHOENOLPYRUVATE CARBOXYKINASE DEFICIENCY 1 (PEPCK1)%SMPDB%SMP0000560" ], "description": [ "Phosphoenolpyruvate Carboxykinase Deficiency 1 (PEPCK1)" ], "pvalue": 0.0024, "gs_type": null, "gs_size": 22, "padj": 0.0325, "mcode_cluster_id": "Cluster 6", "NES": 1.8382 } }, { "data": { "id": "330f6663-8dc5-4e65-8302-757d6733634d", "name": [ "NEGATIVE REGULATION OF DEFENSE RESPONSE%GOBP%GO:0031348" ], "description": [ "negative regulation of defense response" ], "pvalue": 0, "gs_type": null, "gs_size": 176, "padj": 0.0005, "mcode_cluster_id": null, "NES": -1.8543 } }, { "data": { "id": "da4dbe71-abe7-4cf9-865c-2034251cbd94", "name": [ "PID_DELTA_NP63_PATHWAY%MSIGDB_C2%PID_DELTA_NP63_PATHWAY" ], "description": [ "PID_DELTA_NP63_PATHWAY" ], "pvalue": 0.004, "gs_type": null, "gs_size": 41, "padj": 0.0472, "mcode_cluster_id": null, "NES": -1.7183 } }, { "data": { "id": "ebad420a-ccef-4ef0-a787-08ebfa7cfb31", "name": [ "REGULATION OF MACROAUTOPHAGY%GOBP%GO:0016241" ], "description": [ "regulation of macroautophagy" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 146, "padj": 0.0016, "mcode_cluster_id": null, "NES": 1.7294 } }, { "data": { "id": "ea50e431-3448-411f-bbeb-ca09a7f844fb", "name": [ "ADHERENS JUNCTION ORGANIZATION%GOBP%GO:0034332" ], "description": [ "adherens junction organization" ], "pvalue": 0.0014, "gs_type": null, "gs_size": 34, "padj": 0.0224, "mcode_cluster_id": null, "NES": -1.8348 } }, { "data": { "id": "83ebb4c3-8bd5-4e81-a004-c79572bc5d87", "name": [ "KIDNEY DEVELOPMENT%GOBP%GO:0001822" ], "description": [ "kidney development" ], "pvalue": 0.0027, "gs_type": null, "gs_size": 139, "padj": 0.0351, "mcode_cluster_id": "Cluster 27", "NES": -1.5332 } }, { "data": { "id": "d306e139-166c-40a6-97e4-a78e73fa0903", "name": [ "PEPTIDE METABOLIC PROCESS%GOBP%GO:0006518" ], "description": [ "peptide metabolic process" ], "pvalue": 0.0019, "gs_type": null, "gs_size": 459, "padj": 0.0274, "mcode_cluster_id": null, "NES": 1.3434 } }, { "data": { "id": "e47a74cd-5800-429b-b89e-f490004f32db", "name": [ "EUKARYOTIC TRANSLATION INITIATION%REACTOME%R-HSA-72613.3" ], "description": [ "Eukaryotic Translation Initiation" ], "pvalue": 7.1524e-19, "gs_type": null, "gs_size": 120, "padj": 3.4403e-16, "mcode_cluster_id": "Cluster 2", "NES": 2.7158 } }, { "data": { "id": "e8e52742-1f0c-4014-bb5f-f72c7ca31fd0", "name": [ "POSITIVE REGULATION OF TUMOR NECROSIS FACTOR SUPERFAMILY CYTOKINE PRODUCTION%GOBP%GO:1903557" ], "description": [ "positive regulation of tumor necrosis factor superfamily cytokine production" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 83, "padj": 0.0015, "mcode_cluster_id": "Cluster 16", "NES": -1.9528 } }, { "data": { "id": "9cc1543e-b2e4-4718-872d-4737deb33c71", "name": [ "CYTOPLASMIC RIBOSOMAL PROTEINS%WIKIPATHWAYS_20220510%WP477%HOMO SAPIENS" ], "description": [ "Cytoplasmic ribosomal proteins" ], "pvalue": 8.5348e-17, "gs_type": null, "gs_size": 86, "padj": 1.2015e-14, "mcode_cluster_id": "Cluster 2", "NES": 2.7241 } }, { "data": { "id": "d97db454-5799-44e6-8082-d76526e8e917", "name": [ "G1 S DNA DAMAGE CHECKPOINTS%REACTOME%R-HSA-69615.2" ], "description": [ "G1 S DNA Damage Checkpoints" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 68, "padj": 0.0022, "mcode_cluster_id": "Cluster 1", "NES": -1.8677 } }, { "data": { "id": "c4cb5ff2-7463-4b47-b4d2-2d78f4a4bbc2", "name": [ "AICA-RIBOSIDURIA%PATHWHIZ%PW000082" ], "description": [ "AICA-Ribosiduria" ], "pvalue": 0.0043, "gs_type": null, "gs_size": 37, "padj": 0.0487, "mcode_cluster_id": "Cluster 3", "NES": -1.7147 } }, { "data": { "id": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "name": [ "INFLUENZA VIRAL RNA TRANSCRIPTION AND REPLICATION%REACTOME%R-HSA-168273.3" ], "description": [ "Influenza Viral RNA Transcription and Replication" ], "pvalue": 3.479e-10, "gs_type": null, "gs_size": 134, "padj": 3.1875e-8, "mcode_cluster_id": "Cluster 2", "NES": 2.2222 } }, { "data": { "id": "cd0c33a3-3438-4e38-b4e4-96e5657a4113", "name": [ "RESPONSE TO ALCOHOL%GOBP%GO:0097305" ], "description": [ "response to alcohol" ], "pvalue": 0.0013, "gs_type": null, "gs_size": 86, "padj": 0.0206, "mcode_cluster_id": null, "NES": -1.7801 } }, { "data": { "id": "7f740655-5824-4500-9c1c-7374b02f3664", "name": [ "REGULATION OF TUMOR NECROSIS FACTOR PRODUCTION%GOBP%GO:0032680" ], "description": [ "regulation of tumor necrosis factor production" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 127, "padj": 0.0018, "mcode_cluster_id": "Cluster 16", "NES": -1.853 } }, { "data": { "id": "2908eab8-04c1-417b-845a-43b3aa49067b", "name": [ "CELLULAR RESPONSE TO HYPOXIA%GOBP%GO:0071456" ], "description": [ "cellular response to hypoxia" ], "pvalue": 0.0000083807, "gs_type": null, "gs_size": 81, "padj": 0.0003, "mcode_cluster_id": "Cluster 9", "NES": 1.9714 } }, { "data": { "id": "695cb122-8385-40a4-ade8-f3a3d8fa7320", "name": [ "GRANULOCYTE MIGRATION%GOBP%GO:0097530" ], "description": [ "granulocyte migration" ], "pvalue": 0, "gs_type": null, "gs_size": 83, "padj": 0.001, "mcode_cluster_id": "Cluster 7", "NES": -2.056 } }, { "data": { "id": "3e7aaecb-05d5-4767-a3bc-4bf8842bc1c7", "name": [ "REGULATION OF PROTEIN EXPORT FROM NUCLEUS%GOBP%GO:0046825" ], "description": [ "regulation of protein export from nucleus" ], "pvalue": 0.0021, "gs_type": null, "gs_size": 23, "padj": 0.0298, "mcode_cluster_id": null, "NES": -1.7758 } }, { "data": { "id": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "name": [ "VPU MEDIATED DEGRADATION OF CD4%REACTOME DATABASE ID RELEASE 80%180534" ], "description": [ "Vpu mediated degradation of CD4" ], "pvalue": 0.0000098588, "gs_type": null, "gs_size": 52, "padj": 0.0004, "mcode_cluster_id": "Cluster 1", "NES": -2.066 } }, { "data": { "id": "671b18d7-17cb-451c-bd9c-5fd640598d64", "name": [ "REGULATION OF T CELL PROLIFERATION%GOBP%GO:0042129" ], "description": [ "regulation of T cell proliferation" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 128, "padj": 0.0019, "mcode_cluster_id": "Cluster 5", "NES": -1.874 } }, { "data": { "id": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "name": [ "CDK-MEDIATED PHOSPHORYLATION AND REMOVAL OF CDC6%REACTOME DATABASE ID RELEASE 80%69017" ], "description": [ "CDK-mediated phosphorylation and removal of Cdc6" ], "pvalue": 0.0000013971, "gs_type": null, "gs_size": 73, "padj": 0.0001, "mcode_cluster_id": "Cluster 1", "NES": -2.0952 } }, { "data": { "id": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "name": [ "TRANSLATION%REACTOME%R-HSA-72766.4" ], "description": [ "Translation" ], "pvalue": 1.6199e-7, "gs_type": null, "gs_size": 294, "padj": 0.0000095412, "mcode_cluster_id": "Cluster 2", "NES": 1.7637 } }, { "data": { "id": "9683e457-b5d3-4ffb-92cf-692bbf7e6eb4", "name": [ "REGULATION OF DEFENSE RESPONSE%GOBP%GO:0031347" ], "description": [ "regulation of defense response" ], "pvalue": 1.5119e-8, "gs_type": null, "gs_size": 500, "padj": 0.0000011188, "mcode_cluster_id": null, "NES": -1.8152 } }, { "data": { "id": "5e1d748c-a591-46ca-8b13-e34d0a4f1076", "name": [ "REGULATION OF ENDOPEPTIDASE ACTIVITY%GOBP%GO:0052548" ], "description": [ "regulation of endopeptidase activity" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 282, "padj": 0.0047, "mcode_cluster_id": "Cluster 13", "NES": -1.5771 } }, { "data": { "id": "a8cf8ef4-7469-4f68-bb69-e44f871037d2", "name": [ "REGULATION OF AUTOPHAGY%GOBP%GO:0010506" ], "description": [ "regulation of autophagy" ], "pvalue": 0.0042, "gs_type": null, "gs_size": 308, "padj": 0.0487, "mcode_cluster_id": null, "NES": 1.3537 } }, { "data": { "id": "558812e5-cf6b-49ec-b1cd-611459f0fc4c", "name": [ "AMPLIFICATION OF SIGNAL FROM UNATTACHED KINETOCHORES VIA A MAD2 INHIBITORY SIGNAL%REACTOME DATABASE ID RELEASE 80%141444" ], "description": [ "Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal" ], "pvalue": 0.0016, "gs_type": null, "gs_size": 92, "padj": 0.0246, "mcode_cluster_id": "Cluster 11", "NES": -1.6088 } }, { "data": { "id": "d5e47987-5dc3-4e19-ad00-15642c4c7f1b", "name": [ "NEGATIVE REGULATORS OF RIG-I MDA5 SIGNALING%REACTOME DATABASE ID RELEASE 80%936440" ], "description": [ "Negative regulators of RIG-I MDA5 signaling" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 35, "padj": 0.0036, "mcode_cluster_id": null, "NES": -1.9741 } }, { "data": { "id": "ab24b93a-a426-4fa5-8f15-364938339732", "name": [ "TRANSLATION%GOBP%GO:0006412" ], "description": [ "translation" ], "pvalue": 8.1811e-8, "gs_type": null, "gs_size": 318, "padj": 0.0000050776, "mcode_cluster_id": "Cluster 2", "NES": 1.7722 } }, { "data": { "id": "a416f178-74f3-46bf-af8a-d534e01b18aa", "name": [ "THE ROLE OF GTSE1 IN G2 M PROGRESSION AFTER G2 CHECKPOINT%REACTOME DATABASE ID RELEASE 80%8852276" ], "description": [ "The role of GTSE1 in G2 M progression after G2 checkpoint" ], "pvalue": 0.0000024728, "gs_type": null, "gs_size": 60, "padj": 0.0001, "mcode_cluster_id": "Cluster 1", "NES": -2.0937 } }, { "data": { "id": "5da4b98c-4121-439d-b27e-27fc0de7d80c", "name": [ "PYRUVATE METABOLIC PROCESS%GOBP%GO:0006090" ], "description": [ "pyruvate metabolic process" ], "pvalue": 0.0009, "gs_type": null, "gs_size": 53, "padj": 0.0156, "mcode_cluster_id": "Cluster 4", "NES": 1.7894 } }, { "data": { "id": "2479892f-1718-4ce9-aaf5-42f5072a8e59", "name": [ "MITOTIC ANAPHASE%REACTOME DATABASE ID RELEASE 80%68882" ], "description": [ "Mitotic Anaphase" ], "pvalue": 7.5839e-7, "gs_type": null, "gs_size": 228, "padj": 0, "mcode_cluster_id": "Cluster 23", "NES": -1.8113 } }, { "data": { "id": "97263796-6199-4635-a5c3-88606b560380", "name": [ "POSITIVE REGULATION OF INTERFERON-BETA PRODUCTION%GOBP%GO:0032728" ], "description": [ "positive regulation of interferon-beta production" ], "pvalue": 0.0000011231, "gs_type": null, "gs_size": 35, "padj": 0.0001, "mcode_cluster_id": "Cluster 19", "NES": -2.2213 } }, { "data": { "id": "52df0be8-9043-4ccf-adcc-0f0c0f45d26a", "name": [ "AXON GUIDANCE%REACTOME%R-HSA-422475.6" ], "description": [ "Axon guidance" ], "pvalue": 0.0004, "gs_type": null, "gs_size": 527, "padj": 0.008, "mcode_cluster_id": null, "NES": 1.3568 } }, { "data": { "id": "2c68e4c9-cc48-4220-b32a-7cb6d6c80e6c", "name": [ "POSITIVE REGULATION OF RESPONSE TO EXTERNAL STIMULUS%GOBP%GO:0032103" ], "description": [ "positive regulation of response to external stimulus" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 364, "padj": 0.0061, "mcode_cluster_id": "Cluster 18", "NES": -1.5644 } }, { "data": { "id": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "name": [ "METABOLISM OF POLYAMINES%REACTOME DATABASE ID RELEASE 80%351202" ], "description": [ "Metabolism of polyamines" ], "pvalue": 0.0000023553, "gs_type": null, "gs_size": 58, "padj": 0.0001, "mcode_cluster_id": "Cluster 1", "NES": -2.0914 } }, { "data": { "id": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "name": [ "PROTEIN SYNTHESIS: GLUTAMINE%SMPDB%SMP0111862" ], "description": [ "Protein Synthesis: Glutamine" ], "pvalue": 1.4315e-17, "gs_type": null, "gs_size": 80, "padj": 2.7541e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7757 } }, { "data": { "id": "27e8bd1f-cafd-4f36-9b02-cfd480e79c1a", "name": [ "RECOMBINATIONAL REPAIR%GOBP%GO:0000725" ], "description": [ "recombinational repair" ], "pvalue": 0.0035, "gs_type": null, "gs_size": 112, "padj": 0.0429, "mcode_cluster_id": null, "NES": -1.5151 } }, { "data": { "id": "70f8556f-4a53-4a4c-a55d-637a08d61a6a", "name": [ "POSITIVE REGULATION OF TUMOR NECROSIS FACTOR PRODUCTION%GOBP%GO:0032760" ], "description": [ "positive regulation of tumor necrosis factor production" ], "pvalue": 0, "gs_type": null, "gs_size": 79, "padj": 0.0009, "mcode_cluster_id": "Cluster 16", "NES": -1.9737 } }, { "data": { "id": "3c6bb406-c085-4380-b097-57820d816d19", "name": [ "ENDOCYTOSIS%GOBP%GO:0006897" ], "description": [ "endocytosis" ], "pvalue": 0.0024, "gs_type": null, "gs_size": 383, "padj": 0.0327, "mcode_cluster_id": null, "NES": 1.4056 } }, { "data": { "id": "6ef4a2da-b62f-4d4f-8b3f-27b164706ef6", "name": [ "HIF-2-ALPHA TRANSCRIPTION FACTOR NETWORK%PATHWAY INTERACTION DATABASE NCI-NATURE CURATED DATA%HIF-2-ALPHA TRANSCRIPTION FACTOR NETWORK" ], "description": [ "HIF-2-alpha transcription factor network" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 34, "padj": 0.0069, "mcode_cluster_id": null, "NES": 1.9058 } }, { "data": { "id": "814f7e07-9f98-4192-9976-64397caf0790", "name": [ "REGULATION OF EXPRESSION OF SLITS AND ROBOS%REACTOME DATABASE ID RELEASE 80%9010553" ], "description": [ "Regulation of expression of SLITs and ROBOs" ], "pvalue": 0.0017, "gs_type": null, "gs_size": 171, "padj": 0.0258, "mcode_cluster_id": null, "NES": 1.5014 } }, { "data": { "id": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "name": [ "P53-DEPENDENT G1 S DNA DAMAGE CHECKPOINT%REACTOME%R-HSA-69580.3" ], "description": [ "p53-Dependent G1 S DNA damage checkpoint" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 66, "padj": 0.0022, "mcode_cluster_id": "Cluster 1", "NES": -1.8525 } }, { "data": { "id": "9e9cc91e-7459-4280-b096-dd42c53a25a4", "name": [ "ADENYLOSUCCINATE LYASE DEFICIENCY%SMPDB%SMP0000167" ], "description": [ "Adenylosuccinate Lyase Deficiency" ], "pvalue": 0.0043, "gs_type": null, "gs_size": 37, "padj": 0.0487, "mcode_cluster_id": "Cluster 3", "NES": -1.7147 } }, { "data": { "id": "826fb2dd-0313-4a40-adb5-dd2b41eea9d4", "name": [ "NUCLEOTIDE PHOSPHORYLATION%GOBP%GO:0046939" ], "description": [ "nucleotide phosphorylation" ], "pvalue": 0.0027, "gs_type": null, "gs_size": 44, "padj": 0.0354, "mcode_cluster_id": "Cluster 4", "NES": 1.637 } }, { "data": { "id": "3608c2a4-44c5-403d-a12c-991578f6376a", "name": [ "PROTEIN SYNTHESIS: PROLINE%PATHWHIZ%PW113695" ], "description": [ "Protein Synthesis: Proline" ], "pvalue": 6.8867e-18, "gs_type": null, "gs_size": 80, "padj": 1.5288e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7906 } }, { "data": { "id": "a9322d3e-0434-4ba3-b569-019127883b2e", "name": [ "FBXL7 DOWN-REGULATES AURKA DURING MITOTIC ENTRY AND IN EARLY MITOSIS%REACTOME%R-HSA-8854050.2" ], "description": [ "FBXL7 down-regulates AURKA during mitotic entry and in early mitosis" ], "pvalue": 0, "gs_type": null, "gs_size": 55, "padj": 0.0005, "mcode_cluster_id": "Cluster 1", "NES": -2.011 } }, { "data": { "id": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "name": [ "EUKARYOTIC TRANSLATION ELONGATION%REACTOME%R-HSA-156842.2" ], "description": [ "Eukaryotic Translation Elongation" ], "pvalue": 1.2227e-17, "gs_type": null, "gs_size": 95, "padj": 2.5205e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7435 } }, { "data": { "id": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "name": [ "SELENOCYSTEINE SYNTHESIS%REACTOME%R-HSA-2408557.2" ], "description": [ "Selenocysteine synthesis" ], "pvalue": 8.2519e-17, "gs_type": null, "gs_size": 94, "padj": 1.1908e-14, "mcode_cluster_id": "Cluster 2", "NES": 2.7292 } }, { "data": { "id": "1cfa471d-acac-4230-bba5-70fcdd35aafe", "name": [ "LEUKOCYTE CHEMOTAXIS%GOBP%GO:0030595" ], "description": [ "leukocyte chemotaxis" ], "pvalue": 0.0000076668, "gs_type": null, "gs_size": 125, "padj": 0.0003, "mcode_cluster_id": "Cluster 7", "NES": -2.0378 } }, { "data": { "id": "a3e1854e-d9ab-43bc-aa3a-a3ece8063d42", "name": [ "GRANULOCYTE CHEMOTAXIS%GOBP%GO:0071621" ], "description": [ "granulocyte chemotaxis" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 74, "padj": 0.0021, "mcode_cluster_id": "Cluster 7", "NES": -2.0595 } }, { "data": { "id": "c16f7809-23d1-484e-b5f5-4529f5798237", "name": [ "ATP GENERATION FROM ADP%GOBP%GO:0006757" ], "description": [ "ATP generation from ADP" ], "pvalue": 0, "gs_type": null, "gs_size": 34, "padj": 0.0012, "mcode_cluster_id": "Cluster 4", "NES": 2.076 } }, { "data": { "id": "b48d7732-ffff-489e-aa3d-117f6321cf2e", "name": [ "GASTRIC CANCER NETWORK 2%WIKIPATHWAYS_20220510%WP2363%HOMO SAPIENS" ], "description": [ "Gastric cancer network 2" ], "pvalue": 0.0021, "gs_type": null, "gs_size": 29, "padj": 0.0305, "mcode_cluster_id": null, "NES": -1.7872 } }, { "data": { "id": "55927dce-c65d-4418-9db1-33205a2bd8e8", "name": [ "NEGATIVE REGULATION OF RESPONSE TO BIOTIC STIMULUS%GOBP%GO:0002832" ], "description": [ "negative regulation of response to biotic stimulus" ], "pvalue": 9.4442e-7, "gs_type": null, "gs_size": 95, "padj": 0, "mcode_cluster_id": null, "NES": -2.1011 } }, { "data": { "id": "864bc8cb-985d-45b3-a4d2-110108c67339", "name": [ "DEMETHYLATION%GOBP%GO:0070988" ], "description": [ "demethylation" ], "pvalue": 0.0042, "gs_type": null, "gs_size": 59, "padj": 0.0487, "mcode_cluster_id": "Cluster 10", "NES": 1.6604 } }, { "data": { "id": "888db3ed-5fd5-4ce2-a4bf-5901f00e236c", "name": [ "CELLULAR RESPONSE TO LIPOPOLYSACCHARIDE%GOBP%GO:0071222" ], "description": [ "cellular response to lipopolysaccharide" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 122, "padj": 0.0023, "mcode_cluster_id": "Cluster 8", "NES": -1.8074 } }, { "data": { "id": "d9b6e170-0a10-4b07-a6be-65588639fd62", "name": [ "CAP-DEPENDENT TRANSLATION INITIATION%REACTOME DATABASE ID RELEASE 80%72737" ], "description": [ "Cap-dependent Translation Initiation" ], "pvalue": 7.1524e-19, "gs_type": null, "gs_size": 120, "padj": 3.4403e-16, "mcode_cluster_id": "Cluster 2", "NES": 2.7158 } }, { "data": { "id": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "name": [ "INTERLEUKIN-1 SIGNALING%REACTOME%R-HSA-9020702.2" ], "description": [ "Interleukin-1 signaling" ], "pvalue": 0.0000026389, "gs_type": null, "gs_size": 101, "padj": 0.0001, "mcode_cluster_id": "Cluster 1", "NES": -1.983 } }, { "data": { "id": "0819f365-0af7-4691-beb0-3375f37c64c8", "name": [ "REGULATION OF IGF ACTIVITY BY IGFBP%REACTOME%R-HSA-381426.2" ], "description": [ "Regulation of IGF Activity by IGFBP" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 124, "padj": 0.0017, "mcode_cluster_id": null, "NES": -1.8941 } }, { "data": { "id": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "name": [ "RESPONSE OF EIF2AK4 (GCN2) TO AMINO ACID DEFICIENCY%REACTOME%R-HSA-9633012.2" ], "description": [ "Response of EIF2AK4 (GCN2) to amino acid deficiency" ], "pvalue": 1.0372e-16, "gs_type": null, "gs_size": 102, "padj": 1.3923e-14, "mcode_cluster_id": "Cluster 2", "NES": 2.6721 } }, { "data": { "id": "cb2e3ea5-0acb-4d5a-b4b6-0238e4949d2e", "name": [ "DIGESTIVE TRACT MORPHOGENESIS%GOBP%GO:0048546" ], "description": [ "digestive tract morphogenesis" ], "pvalue": 0.0007, "gs_type": null, "gs_size": 21, "padj": 0.0125, "mcode_cluster_id": "Cluster 28", "NES": -1.8835 } }, { "data": { "id": "2d2d5ab1-d3a5-4f6f-b7a1-4a0090b7cbf2", "name": [ "HISTONE LYSINE DEMETHYLATION%GOBP%GO:0070076" ], "description": [ "histone lysine demethylation" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 26, "padj": 0.0025, "mcode_cluster_id": "Cluster 10", "NES": 2.0076 } }, { "data": { "id": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "name": [ "REGULATION OF MITOTIC CELL CYCLE%REACTOME DATABASE ID RELEASE 80%453276" ], "description": [ "Regulation of mitotic cell cycle" ], "pvalue": 3.9324e-8, "gs_type": null, "gs_size": 88, "padj": 0.0000026703, "mcode_cluster_id": "Cluster 1", "NES": -2.1956 } }, { "data": { "id": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "name": [ "APOPTOSIS%REACTOME DATABASE ID RELEASE 80%109581" ], "description": [ "Apoptosis" ], "pvalue": 0.000007111, "gs_type": null, "gs_size": 175, "padj": 0.0003, "mcode_cluster_id": null, "NES": -1.8202 } }, { "data": { "id": "3cf80dbd-d5d6-4110-b7e1-ca158988b96a", "name": [ "CELLULAR RESPONSE TO OXYGEN LEVELS%GOBP%GO:0071453" ], "description": [ "cellular response to oxygen levels" ], "pvalue": 0, "gs_type": null, "gs_size": 96, "padj": 0.0005, "mcode_cluster_id": "Cluster 9", "NES": 1.8728 } }, { "data": { "id": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "name": [ "PROTEASOME DEGRADATION%WIKIPATHWAYS_20220510%WP183%HOMO SAPIENS" ], "description": [ "Proteasome degradation" ], "pvalue": 0, "gs_type": null, "gs_size": 48, "padj": 0.0007, "mcode_cluster_id": null, "NES": -2.026 } }, { "data": { "id": "b592bd97-9e49-4fa2-b70e-18543d61ff4a", "name": [ "POSITIVE REGULATION OF CELLULAR RESPONSE TO TRANSFORMING GROWTH FACTOR BETA STIMULUS%GOBP%GO:1903846" ], "description": [ "positive regulation of cellular response to transforming growth factor beta stimulus" ], "pvalue": 0.0025, "gs_type": null, "gs_size": 25, "padj": 0.0337, "mcode_cluster_id": null, "NES": 1.7787 } }, { "data": { "id": "0fc4e934-4eae-4caf-8cbf-a196766799f1", "name": [ "REGULATION OF NEUROTRANSMITTER LEVELS%GOBP%GO:0001505" ], "description": [ "regulation of neurotransmitter levels" ], "pvalue": 0.0015, "gs_type": null, "gs_size": 145, "padj": 0.024, "mcode_cluster_id": null, "NES": 1.5619 } }, { "data": { "id": "7cc43b71-ad89-463c-801b-d56bf869d565", "name": [ "CYTOKINE-MEDIATED SIGNALING PATHWAY%GOBP%GO:0019221" ], "description": [ "cytokine-mediated signaling pathway" ], "pvalue": 0.0000011369, "gs_type": null, "gs_size": 292, "padj": 0.0001, "mcode_cluster_id": "Cluster 26", "NES": -1.8985 } }, { "data": { "id": "3216dfe0-53c7-4773-ae8a-249962fe9769", "name": [ "SIGNALING BY INTERLEUKINS%REACTOME%R-HSA-449147.11" ], "description": [ "Signaling by Interleukins" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 449, "padj": 0.0024, "mcode_cluster_id": null, "NES": -1.5302 } }, { "data": { "id": "f44ab370-490d-4b9a-a6b7-795569797e65", "name": [ "DEFENSE RESPONSE TO VIRUS%GOBP%GO:0051607" ], "description": [ "defense response to virus" ], "pvalue": 2.5001e-21, "gs_type": null, "gs_size": 173, "padj": 3.6076e-18, "mcode_cluster_id": null, "NES": -2.7558 } }, { "data": { "id": "ad298883-cc4a-4174-bb3f-18a4ce5229b3", "name": [ "NEGATIVE REGULATION OF CELL POPULATION PROLIFERATION%GOBP%GO:0008285" ], "description": [ "negative regulation of cell population proliferation" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 483, "padj": 0.0058, "mcode_cluster_id": null, "NES": -1.4599 } }, { "data": { "id": "76d2dba6-f52e-4f80-b57f-bf10e25bbfc2", "name": [ "REGULATION OF T CELL MEDIATED IMMUNITY%GOBP%GO:0002709" ], "description": [ "regulation of T cell mediated immunity" ], "pvalue": 0, "gs_type": null, "gs_size": 74, "padj": 0.0012, "mcode_cluster_id": "Cluster 8", "NES": -1.9664 } }, { "data": { "id": "96bdc05d-568e-4380-9578-cf0a5c6c20ff", "name": [ "DEFENSE RESPONSE%GOBP%GO:0006952" ], "description": [ "defense response" ], "pvalue": 2.3358e-19, "gs_type": null, "gs_size": 982, "padj": 1.498e-16, "mcode_cluster_id": "Cluster 8", "NES": -2.1428 } }, { "data": { "id": "dda5a46c-28ce-42fd-9da1-c5fe8d873a54", "name": [ "TISSUE MORPHOGENESIS%GOBP%GO:0048729" ], "description": [ "tissue morphogenesis" ], "pvalue": 0.0039, "gs_type": null, "gs_size": 291, "padj": 0.0468, "mcode_cluster_id": null, "NES": -1.4191 } }, { "data": { "id": "feb7d9d6-56e1-4737-8e2f-ca72d6564ff9", "name": [ "IMMUNE RESPONSE-REGULATING SIGNALING PATHWAY%GOBP%GO:0002764" ], "description": [ "immune response-regulating signaling pathway" ], "pvalue": 9.1212e-7, "gs_type": null, "gs_size": 361, "padj": 0, "mcode_cluster_id": "Cluster 8", "NES": -1.8711 } }, { "data": { "id": "693a277b-b9fd-476a-a8ac-f501d98b431c", "name": [ "PROTEIN SYNTHESIS: GLYCINE%PATHWHIZ%PW112928" ], "description": [ "Protein Synthesis: Glycine" ], "pvalue": 6.4158e-18, "gs_type": null, "gs_size": 80, "padj": 1.5288e-15, "mcode_cluster_id": "Cluster 2", "NES": 2.7916 } }, { "data": { "id": "e47ff77c-967e-430e-a0e2-cfa17a3e7898", "name": [ "CELLULAR HORMONE METABOLIC PROCESS%GOBP%GO:0034754" ], "description": [ "cellular hormone metabolic process" ], "pvalue": 0.0007, "gs_type": null, "gs_size": 94, "padj": 0.0134, "mcode_cluster_id": null, "NES": -1.8328 } }, { "data": { "id": "110e3db6-6f90-4b27-bb4d-8417bd6d7860", "name": [ "NEURONAL SYSTEM%REACTOME%R-HSA-112316.7" ], "description": [ "Neuronal System" ], "pvalue": 0.0021, "gs_type": null, "gs_size": 381, "padj": 0.0301, "mcode_cluster_id": null, "NES": 1.4268 } }, { "data": { "id": "61187295-6a5f-4e0c-8c6f-31225b745289", "name": [ "CELL-CELL JUNCTION ORGANIZATION%REACTOME%R-HSA-421270.6" ], "description": [ "Cell-cell junction organization" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 62, "padj": 0.0034, "mcode_cluster_id": "Cluster 21", "NES": -1.9466 } }, { "data": { "id": "6c62bbcc-eaa6-44ea-9fd7-4ede1e91d67d", "name": [ "REGULATION OF INNATE IMMUNE RESPONSE%GOBP%GO:0045088" ], "description": [ "regulation of innate immune response" ], "pvalue": 2.4024e-7, "gs_type": null, "gs_size": 202, "padj": 0, "mcode_cluster_id": "Cluster 18", "NES": -1.9802 } }, { "data": { "id": "c79e288f-03fa-437d-8752-e819a2a058f9", "name": [ "PATTERN RECOGNITION RECEPTOR SIGNALING PATHWAY%GOBP%GO:0002221" ], "description": [ "pattern recognition receptor signaling pathway" ], "pvalue": 0.0000011876, "gs_type": null, "gs_size": 92, "padj": 0.0001, "mcode_cluster_id": null, "NES": -2.1074 } }, { "data": { "id": "54880fa5-ac55-49c1-8bea-08baf28793b2", "name": [ "REGULATION OF RESPONSE TO BIOTIC STIMULUS%GOBP%GO:0002831" ], "description": [ "regulation of response to biotic stimulus" ], "pvalue": 1.0879e-9, "gs_type": null, "gs_size": 296, "padj": 8.9703e-8, "mcode_cluster_id": "Cluster 18", "NES": -2.0273 } }, { "data": { "id": "77300d6a-9bc7-4e0c-a548-0a1462ac99a4", "name": [ "AURORA B SIGNALING%PATHWAY INTERACTION DATABASE NCI-NATURE CURATED DATA%AURORA B SIGNALING" ], "description": [ "Aurora B signaling" ], "pvalue": 0.0006, "gs_type": null, "gs_size": 40, "padj": 0.0106, "mcode_cluster_id": null, "NES": -1.8357 } }, { "data": { "id": "67a256b8-f314-4042-8b51-d5deecd8a425", "name": [ "FORMATION OF CYTOPLASMIC TRANSLATION INITIATION COMPLEX%GOBP%GO:0001732" ], "description": [ "formation of cytoplasmic translation initiation complex" ], "pvalue": 0.003, "gs_type": null, "gs_size": 15, "padj": 0.0382, "mcode_cluster_id": null, "NES": 1.8163 } }, { "data": { "id": "fb67afaf-81fb-465b-b50c-5197b734234e", "name": [ "AUTOPHAGY%REACTOME%R-HSA-9612973.2" ], "description": [ "Autophagy" ], "pvalue": 0.0026, "gs_type": null, "gs_size": 130, "padj": 0.0341, "mcode_cluster_id": null, "NES": 1.4967 } }, { "data": { "id": "ca5fe228-41d6-4d3e-944e-df784a53136d", "name": [ "EMBRYONIC ORGAN MORPHOGENESIS%GOBP%GO:0048562" ], "description": [ "embryonic organ morphogenesis" ], "pvalue": 0.0011, "gs_type": null, "gs_size": 134, "padj": 0.0193, "mcode_cluster_id": "Cluster 15", "NES": -1.6147 } }, { "data": { "id": "44a9ed84-9062-44c3-8295-840da4aa2b8a", "name": [ "CYTOPLASMIC PATTERN RECOGNITION RECEPTOR SIGNALING PATHWAY%GOBP%GO:0002753" ], "description": [ "cytoplasmic pattern recognition receptor signaling pathway" ], "pvalue": 0.0003, "gs_type": null, "gs_size": 26, "padj": 0.006, "mcode_cluster_id": null, "NES": -1.9043 } }, { "data": { "id": "7f270385-a18b-4b90-82e3-2d2574c06d29", "name": [ "DNA REPLICATION%GOBP%GO:0006260" ], "description": [ "DNA replication" ], "pvalue": 0.0016, "gs_type": null, "gs_size": 156, "padj": 0.0248, "mcode_cluster_id": null, "NES": -1.5377 } }, { "data": { "id": "ac92c91b-3994-4290-b2ce-28e0390fe3de", "name": [ "BRAIN DEVELOPMENT%GOBP%GO:0007420" ], "description": [ "brain development" ], "pvalue": 0.0029, "gs_type": null, "gs_size": 382, "padj": 0.0378, "mcode_cluster_id": null, "NES": 1.3503 } }, { "data": { "id": "3ef92686-5c34-4688-94b5-b981d83023b5", "name": [ "BARD1 SIGNALING EVENTS%PATHWAY INTERACTION DATABASE NCI-NATURE CURATED DATA%BARD1 SIGNALING EVENTS" ], "description": [ "BARD1 signaling events" ], "pvalue": 0.0032, "gs_type": null, "gs_size": 28, "padj": 0.0399, "mcode_cluster_id": null, "NES": -1.7485 } }, { "data": { "id": "bf635c2b-0a1b-47bf-ba15-775cd673a5d5", "name": [ "NEGATIVE REGULATION OF CELL ADHESION%GOBP%GO:0007162" ], "description": [ "negative regulation of cell adhesion" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 235, "padj": 0.0018, "mcode_cluster_id": null, "NES": -1.725 } }, { "data": { "id": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "name": [ "G2 M CHECKPOINTS%REACTOME DATABASE ID RELEASE 80%69481" ], "description": [ "G2 M Checkpoints" ], "pvalue": 2.959e-8, "gs_type": null, "gs_size": 150, "padj": 0.0000020578, "mcode_cluster_id": "Cluster 1", "NES": -2.0598 } }, { "data": { "id": "74abd0bb-e77a-474f-a413-fed2de029c68", "name": [ "DDX58 IFIH1-MEDIATED INDUCTION OF INTERFERON-ALPHA BETA%REACTOME DATABASE ID RELEASE 80%168928" ], "description": [ "DDX58 IFIH1-mediated induction of interferon-alpha beta" ], "pvalue": 0, "gs_type": null, "gs_size": 81, "padj": 0.0006, "mcode_cluster_id": null, "NES": -1.9595 } }, { "data": { "id": "915cbcf8-ae97-4531-9bfe-ef942022fc2a", "name": [ "TOLL-LIKE RECEPTOR SIGNALING PATHWAY%WIKIPATHWAYS_20220510%WP75%HOMO SAPIENS" ], "description": [ "Toll-like receptor signaling pathway" ], "pvalue": 0.0004, "gs_type": null, "gs_size": 93, "padj": 0.0074, "mcode_cluster_id": null, "NES": -1.7723 } }, { "data": { "id": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "name": [ "REGULATION OF RAS BY GAPS%REACTOME%R-HSA-5658442.1" ], "description": [ "Regulation of RAS by GAPs" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 67, "padj": 0.0033, "mcode_cluster_id": "Cluster 1", "NES": -1.825 } }, { "data": { "id": "10feadc4-45e8-4700-8cc4-3f7f9a9c4c3c", "name": [ "EMBRYO DEVELOPMENT%GOBP%GO:0009790" ], "description": [ "embryo development" ], "pvalue": 0.0041, "gs_type": null, "gs_size": 447, "padj": 0.0481, "mcode_cluster_id": "Cluster 15", "NES": -1.3675 } }, { "data": { "id": "77975fe3-8389-462d-b794-dfb5e2c511f2", "name": [ "HEDGEHOG 'OFF' STATE%REACTOME%R-HSA-5610787.1" ], "description": [ "Hedgehog 'off' state" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 100, "padj": 0.0036, "mcode_cluster_id": "Cluster 1", "NES": -1.7562 } }, { "data": { "id": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "name": [ "FCERI MEDIATED NF-KB ACTIVATION%REACTOME DATABASE ID RELEASE 80%2871837" ], "description": [ "FCERI mediated NF-kB activation" ], "pvalue": 0.0013, "gs_type": null, "gs_size": 164, "padj": 0.0206, "mcode_cluster_id": "Cluster 1", "NES": -1.6842 } }, { "data": { "id": "65d416a6-5383-47b5-9226-b60b2197400f", "name": [ "CELL-CELL COMMUNICATION%REACTOME DATABASE ID RELEASE 80%1500931" ], "description": [ "Cell-Cell communication" ], "pvalue": 0.0027, "gs_type": null, "gs_size": 119, "padj": 0.0355, "mcode_cluster_id": "Cluster 21", "NES": -1.5786 } }, { "data": { "id": "b72b181f-58a1-4f6d-ae9e-a8ee03acf8b8", "name": [ "MITOTIC SPINDLE CHECKPOINT%REACTOME%R-HSA-69618.2" ], "description": [ "Mitotic Spindle Checkpoint" ], "pvalue": 0.0011, "gs_type": null, "gs_size": 109, "padj": 0.019, "mcode_cluster_id": "Cluster 11", "NES": -1.5999 } }, { "data": { "id": "e6d26c86-6abe-477f-b5b5-22179e11fe89", "name": [ "POSITIVE REGULATION OF TYPE I INTERFERON PRODUCTION%GOBP%GO:0032481" ], "description": [ "positive regulation of type I interferon production" ], "pvalue": 0.000007387, "gs_type": null, "gs_size": 56, "padj": 0.0003, "mcode_cluster_id": "Cluster 19", "NES": -2.0737 } }, { "data": { "id": "82e6196d-332e-4d80-b196-7e404338ed9f", "name": [ "CELL-CELL JUNCTION ORGANIZATION%GOBP%GO:0045216" ], "description": [ "cell-cell junction organization" ], "pvalue": 0.0017, "gs_type": null, "gs_size": 145, "padj": 0.0255, "mcode_cluster_id": null, "NES": -1.571 } }, { "data": { "id": "d7f0b9d9-02c0-479a-9064-f4186398815e", "name": [ "PID_AURORA_B_PATHWAY%MSIGDB_C2%PID_AURORA_B_PATHWAY" ], "description": [ "PID_AURORA_B_PATHWAY" ], "pvalue": 0.0002, "gs_type": null, "gs_size": 27, "padj": 0.0038, "mcode_cluster_id": null, "NES": -1.9758 } }, { "data": { "id": "705bf876-2cb7-4d41-abbf-324946ce2dc7", "name": [ "CELL-CELL SIGNALING%GOBP%GO:0007267" ], "description": [ "cell-cell signaling" ], "pvalue": 0.0022, "gs_type": null, "gs_size": 746, "padj": 0.0308, "mcode_cluster_id": null, "NES": -1.3773 } }, { "data": { "id": "cbd63a3c-9d1e-45ed-8314-62f02e15086e", "name": [ "UB-SPECIFIC PROCESSING PROTEASES%REACTOME%R-HSA-5689880.2" ], "description": [ "Ub-specific processing proteases" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 205, "padj": 0.0025, "mcode_cluster_id": null, "NES": -1.6932 } }, { "data": { "id": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "name": [ "UBIQUITIN-DEPENDENT DEGRADATION OF CYCLIN D%REACTOME%R-HSA-75815.3" ], "description": [ "Ubiquitin-dependent degradation of Cyclin D" ], "pvalue": 0.0000052754, "gs_type": null, "gs_size": 52, "padj": 0.0002, "mcode_cluster_id": "Cluster 1", "NES": -2.1002 } }, { "data": { "id": "fde360d7-05e2-49a7-982b-1b63c729b582", "name": [ "IL23-MEDIATED SIGNALING EVENTS%PATHWAY INTERACTION DATABASE NCI-NATURE CURATED DATA%IL23-MEDIATED SIGNALING EVENTS" ], "description": [ "IL23-mediated signaling events" ], "pvalue": 0.0016, "gs_type": null, "gs_size": 37, "padj": 0.0248, "mcode_cluster_id": null, "NES": -1.8989 } }, { "data": { "id": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "name": [ "ACTIVATION OF NF-KAPPAB IN B CELLS%REACTOME%R-HSA-1169091.1" ], "description": [ "Activation of NF-kappaB in B cells" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 67, "padj": 0.0033, "mcode_cluster_id": "Cluster 1", "NES": -1.827 } }, { "data": { "id": "e0b5d160-d449-46bd-bbda-584ba250e688", "name": [ "MAJOR PATHWAY OF RRNA PROCESSING IN THE NUCLEOLUS AND CYTOSOL%REACTOME DATABASE ID RELEASE 80%6791226" ], "description": [ "Major pathway of rRNA processing in the nucleolus and cytosol" ], "pvalue": 1.613e-11, "gs_type": null, "gs_size": 183, "padj": 1.6052e-9, "mcode_cluster_id": "Cluster 2", "NES": 2.2156 } }, { "data": { "id": "30d6ce47-80e4-4aca-b5f1-507230263257", "name": [ "SARS CORONAVIRUS AND INNATE IMMUNITY%WIKIPATHWAYS_20220510%WP4912%HOMO SAPIENS" ], "description": [ "SARS coronavirus and innate immunity" ], "pvalue": 0.0001, "gs_type": null, "gs_size": 31, "padj": 0.0027, "mcode_cluster_id": null, "NES": -2.0022 } } ], "edges": [ { "data": { "id": "1dd308d8-a19f-4d05-90bf-7cf226a6b339", "source": "fb172c5a-c242-43e8-98a4-bc060890f253", "target": "080d7999-edb3-459d-97a1-0b0c699425b5", "similarity_coefficient": 0.47352941176470587, "overlap_size": 161 } }, { "data": { "id": "ac9b303e-a6d0-4069-be8e-0033bf76e9c3", "source": "7ca2e3de-9935-4044-acc8-9703f93d0780", "target": "fb172c5a-c242-43e8-98a4-bc060890f253", "similarity_coefficient": 0.38461538461538464, "overlap_size": 180 } }, { "data": { "id": "6c9ea91e-418a-44af-8753-94c9d59cc526", "source": "7ca2e3de-9935-4044-acc8-9703f93d0780", "target": "080d7999-edb3-459d-97a1-0b0c699425b5", "similarity_coefficient": 0.6090425531914894, "overlap_size": 229 } }, { "data": { "id": "7044d688-7c9d-4be6-b8e3-d090336d988a", "source": "ba7799c9-3170-4d60-b811-31eae5312965", "target": "cddebf8c-4f9a-4ec6-b7c9-83312c9d1c51", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "69ddf825-8213-459c-b1ea-33f55b354985", "source": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.34459459459459457, "overlap_size": 51 } }, { "data": { "id": "84c3a4a4-767c-4f7c-a7dd-74471cdccc8b", "source": "7724f727-7760-4f29-a243-887fe8858a0c", "target": "7ca2e3de-9935-4044-acc8-9703f93d0780", "similarity_coefficient": 0.449468085106383, "overlap_size": 169 } }, { "data": { "id": "b5b00f15-8fe2-4c52-a5b4-8e54196ac008", "source": "7724f727-7760-4f29-a243-887fe8858a0c", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.266304347826087, "overlap_size": 49 } }, { "data": { "id": "02726573-f9bd-4f60-876a-8bd7f36d079d", "source": "7724f727-7760-4f29-a243-887fe8858a0c", "target": "080d7999-edb3-459d-97a1-0b0c699425b5", "similarity_coefficient": 0.7379912663755459, "overlap_size": 169 } }, { "data": { "id": "bd1ce66a-ee89-46c0-b849-e6ce2559956b", "source": "7724f727-7760-4f29-a243-887fe8858a0c", "target": "fb172c5a-c242-43e8-98a4-bc060890f253", "similarity_coefficient": 0.558303886925795, "overlap_size": 158 } }, { "data": { "id": "c37f0e37-109a-44bb-8665-26fae52a73a8", "source": "912a8e15-8878-460e-912c-ea5d122f0fb9", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.6571428571428571, "overlap_size": 46 } }, { "data": { "id": "ee7dd9a2-d4dd-4b3a-aa24-8256dbba7e83", "source": "912a8e15-8878-460e-912c-ea5d122f0fb9", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.26285714285714284, "overlap_size": 46 } }, { "data": { "id": "bdb149cc-2ba2-4c2a-b520-fdab3df65b51", "source": "912a8e15-8878-460e-912c-ea5d122f0fb9", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.375, "overlap_size": 51 } }, { "data": { "id": "55d79791-c46a-4657-9155-36cb48051b6d", "source": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "9c7c9fe7-3142-4268-b8bf-aac256e5d003", "source": "c82aea32-0e25-4f32-aeb3-64b4548d9190", "target": "d38e07b4-dd9a-4f3d-9662-82e180f80cdf", "similarity_coefficient": 1, "overlap_size": 22 } }, { "data": { "id": "2b5d51b6-0b79-4262-bee9-c1d1f417f149", "source": "80bcca87-8191-46d4-95d9-85e07b1f746f", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.43703703703703706, "overlap_size": 59 } }, { "data": { "id": "3fdb6dd7-ec56-4f59-ae0a-3d0bc4fd16da", "source": "80bcca87-8191-46d4-95d9-85e07b1f746f", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.7076923076923077, "overlap_size": 46 } }, { "data": { "id": "88ec096a-f2e7-4259-92b8-92973bb24a6c", "source": "80bcca87-8191-46d4-95d9-85e07b1f746f", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.2737430167597765, "overlap_size": 49 } }, { "data": { "id": "22fcf84c-8b39-4d22-acd7-bee0905fae59", "source": "80bcca87-8191-46d4-95d9-85e07b1f746f", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49 } }, { "data": { "id": "cbb306d6-a58e-42c9-ab6b-7a7a5bdfa7a8", "source": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "4096626e-bb8c-4861-bb3a-892c97e67791", "source": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "81915c33-39fb-4217-8e25-f46f78dc62ef", "source": "3c6595b7-4300-40c2-9b8b-be0dea463aa6", "target": "1cf1ee8e-77cc-4e7d-8939-adf02b347c93", "similarity_coefficient": 0.8027923211169284, "overlap_size": 460 } }, { "data": { "id": "5dff26a3-9ba4-4575-9ec2-b359f9062661", "source": "58618233-288e-4ffc-b557-24ad0847817b", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.36363636363636365, "overlap_size": 52 } }, { "data": { "id": "c1ea2e4b-6d80-4259-84df-57ebf9f3d54e", "source": "58618233-288e-4ffc-b557-24ad0847817b", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.7, "overlap_size": 49 } }, { "data": { "id": "094d4fb5-56ab-4aca-bc15-4f9f2c37b4c3", "source": "58618233-288e-4ffc-b557-24ad0847817b", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49 } }, { "data": { "id": "e1871c47-5d33-414b-99c7-7f8ad9e6bd16", "source": "58618233-288e-4ffc-b557-24ad0847817b", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "72a48597-c09e-4421-b8d7-b4b7612f9b2b", "source": "58618233-288e-4ffc-b557-24ad0847817b", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.2722222222222222, "overlap_size": 49 } }, { "data": { "id": "633fe001-4bd9-4755-8f56-e6e93941dcb6", "source": "363c0045-f111-4629-85ba-f152798af40e", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78 } }, { "data": { "id": "90976257-cb15-4b59-8173-7a2b31f49f72", "source": "363c0045-f111-4629-85ba-f152798af40e", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78 } }, { "data": { "id": "7d6233e5-4305-42c0-8d4b-0ea2af49237e", "source": "363c0045-f111-4629-85ba-f152798af40e", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78 } }, { "data": { "id": "833af5ed-2906-41c3-89e2-0bc4910de726", "source": "d51806b8-78ae-4131-ace1-d9be5fa5560a", "target": "c82aea32-0e25-4f32-aeb3-64b4548d9190", "similarity_coefficient": 1, "overlap_size": 22 } }, { "data": { "id": "fbbc50d0-8d6e-4011-95a2-be0c73d14bfe", "source": "d51806b8-78ae-4131-ace1-d9be5fa5560a", "target": "d38e07b4-dd9a-4f3d-9662-82e180f80cdf", "similarity_coefficient": 1, "overlap_size": 22 } }, { "data": { "id": "e618b863-5f90-4bbf-8529-ac165cb2e8d9", "source": "de077ab2-2978-4986-a338-5f664401cd65", "target": "c82aea32-0e25-4f32-aeb3-64b4548d9190", "similarity_coefficient": 1, "overlap_size": 22 } }, { "data": { "id": "7a8674b1-4863-4683-a1b0-b57d83e5623d", "source": "de077ab2-2978-4986-a338-5f664401cd65", "target": "d38e07b4-dd9a-4f3d-9662-82e180f80cdf", "similarity_coefficient": 1, "overlap_size": 22 } }, { "data": { "id": "12076f60-3673-4a6b-87e5-a6864e8898c2", "source": "de077ab2-2978-4986-a338-5f664401cd65", "target": "d51806b8-78ae-4131-ace1-d9be5fa5560a", "similarity_coefficient": 1, "overlap_size": 22 } }, { "data": { "id": "4a19e19f-6883-4c9e-8ebf-2220e1322a7d", "source": "86687476-8248-4cb0-af40-b17620dd5594", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.3898305084745763, "overlap_size": 46 } }, { "data": { "id": "ba0764e8-1b19-48b9-947f-014a6ded35ec", "source": "86687476-8248-4cb0-af40-b17620dd5594", "target": "690d048a-ce8c-4e43-9ab0-ed9976703ad9", "similarity_coefficient": 0.3138075313807531, "overlap_size": 75 } }, { "data": { "id": "98ddc015-89f8-44b4-a711-e97de1c2c6ac", "source": "86687476-8248-4cb0-af40-b17620dd5594", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.2889908256880734, "overlap_size": 63 } }, { "data": { "id": "ffb43ec5-25d7-4d98-9440-4204810800d5", "source": "86687476-8248-4cb0-af40-b17620dd5594", "target": "fb172c5a-c242-43e8-98a4-bc060890f253", "similarity_coefficient": 0.31958762886597936, "overlap_size": 93 } }, { "data": { "id": "6433e8cc-a260-4f12-88dd-914226e32ed9", "source": "86687476-8248-4cb0-af40-b17620dd5594", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.36507936507936506, "overlap_size": 46 } }, { "data": { "id": "f1a533f4-37f8-408c-a085-a28b6e107d21", "source": "86687476-8248-4cb0-af40-b17620dd5594", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.35384615384615387, "overlap_size": 46 } }, { "data": { "id": "34ff1b5b-8a43-4bf4-91d6-fc7aa0524f56", "source": "86687476-8248-4cb0-af40-b17620dd5594", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.368, "overlap_size": 46 } }, { "data": { "id": "e58af875-d73a-4624-9e55-f2235c14f78e", "source": "6488e429-b436-405e-886a-11af3c96908d", "target": "ca923fa4-7bdb-4533-98e9-ecad5b063ba3", "similarity_coefficient": 0.5675675675675675, "overlap_size": 84 } }, { "data": { "id": "b04e6dc3-6009-44d9-b283-3315f23754a5", "source": "690d048a-ce8c-4e43-9ab0-ed9976703ad9", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.2727272727272727, "overlap_size": 57 } }, { "data": { "id": "50a9328a-06af-473e-a644-d5ff570f1f88", "source": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "710d3f6f-7183-4890-97f0-869724421aca", "source": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78 } }, { "data": { "id": "2eca789a-8033-47b9-8352-376a6675228c", "source": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "bfa242c4-2b61-4f57-afb3-e0fe25dfb6db", "source": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "25b529b8-09d9-44a2-9082-c674e4bc636e", "source": "62ef1f23-d43a-4f50-9fd5-9932c61259e7", "target": "690d048a-ce8c-4e43-9ab0-ed9976703ad9", "similarity_coefficient": 0.2664576802507837, "overlap_size": 85 } }, { "data": { "id": "b5bbf204-0028-4614-861f-66738ad0aeff", "source": "62ef1f23-d43a-4f50-9fd5-9932c61259e7", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.3138075313807531, "overlap_size": 75 } }, { "data": { "id": "2169e9e3-ec6c-481c-98fb-f8919799e3e4", "source": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.2948717948717949, "overlap_size": 46 } }, { "data": { "id": "abad2386-704b-4ea7-9a75-710bd2dc9768", "source": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49 } }, { "data": { "id": "07bf5d58-7ea3-48bc-b46c-2756dfcde4b2", "source": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.2784090909090909, "overlap_size": 49 } }, { "data": { "id": "73e576c5-ca1d-4aad-ba95-bb4699a8b290", "source": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.4791666666666667, "overlap_size": 46 } }, { "data": { "id": "1ec5f6ed-a677-4d70-9ef0-e8e6ba023cec", "source": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.5, "overlap_size": 50 } }, { "data": { "id": "6e13cdf1-7983-4e80-9589-c05f0f09ec58", "source": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.49, "overlap_size": 49 } }, { "data": { "id": "3446a710-d05e-4eda-aef9-3b1ba838bca2", "source": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.696969696969697, "overlap_size": 46 } }, { "data": { "id": "3c824d20-9f05-4e18-a3d9-9dec81c2de42", "source": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.26136363636363635, "overlap_size": 46 } }, { "data": { "id": "c85c26a4-a6fb-41e8-9a0b-3462a77247af", "source": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.647887323943662, "overlap_size": 46 } }, { "data": { "id": "455c2f29-dc94-4b99-aeb8-128a87f79b95", "source": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.7384615384615385, "overlap_size": 48 } }, { "data": { "id": "e1ced1b9-7557-4344-8474-ffce107fc73f", "source": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.4742268041237113, "overlap_size": 46 } }, { "data": { "id": "9129eab5-7296-4166-bdf5-cdd5abdc7255", "source": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.35251798561151076, "overlap_size": 49 } }, { "data": { "id": "619babb8-ab62-4914-97e9-6c7b381703e5", "source": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.3865546218487395, "overlap_size": 46 } }, { "data": { "id": "4bd174f8-4d3a-46c5-9d5e-d60869f91055", "source": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "target": "62ef1f23-d43a-4f50-9fd5-9932c61259e7", "similarity_coefficient": 0.2623762376237624, "overlap_size": 53 } }, { "data": { "id": "cff70c4e-3067-4ba9-9e34-e7ef88d80e91", "source": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.875, "overlap_size": 49 } }, { "data": { "id": "970ab3b9-d368-40f5-8e49-c28affe998d1", "source": "30eaa919-7be0-486b-9bd3-32ffbfc93216", "target": "5229abb8-d817-4b27-8b54-4679f2c8353e", "similarity_coefficient": 0.2671009771986971, "overlap_size": 82 } }, { "data": { "id": "74135433-92bd-47ad-abb4-0b1b7f8ac86c", "source": "30eaa919-7be0-486b-9bd3-32ffbfc93216", "target": "69c93903-e7d0-4d42-a0f7-d5decb12c571", "similarity_coefficient": 0.5853658536585366, "overlap_size": 48 } }, { "data": { "id": "39fcc78a-ded1-497f-9faa-2e107a4cc665", "source": "30eaa919-7be0-486b-9bd3-32ffbfc93216", "target": "f1e91a76-6b23-4bee-adcf-402d41b3bc76", "similarity_coefficient": 0.27218934911242604, "overlap_size": 46 } }, { "data": { "id": "ee664d1b-6d9f-4454-a15c-4b60a57e0501", "source": "30eaa919-7be0-486b-9bd3-32ffbfc93216", "target": "05636855-db9f-4249-97d1-199b2d37d4fa", "similarity_coefficient": 0.5, "overlap_size": 41 } }, { "data": { "id": "844274d3-fd4e-4789-a38e-ac784330c1d1", "source": "d61f0543-15b0-428e-ade4-e9346167811e", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.4298245614035088, "overlap_size": 49 } }, { "data": { "id": "fc414694-f00b-4be6-8a75-995f2c2da86a", "source": "d61f0543-15b0-428e-ade4-e9346167811e", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.5514705882352942, "overlap_size": 75 } }, { "data": { "id": "cedb8aab-baa0-41ba-a3b7-48a2990e80c2", "source": "d61f0543-15b0-428e-ade4-e9346167811e", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49 } }, { "data": { "id": "41e7fab6-a3cc-4c12-95da-b7af2f44f817", "source": "d61f0543-15b0-428e-ade4-e9346167811e", "target": "62ef1f23-d43a-4f50-9fd5-9932c61259e7", "similarity_coefficient": 0.34375, "overlap_size": 77 } }, { "data": { "id": "b268a281-670e-4156-8577-460470e7440f", "source": "d61f0543-15b0-428e-ade4-e9346167811e", "target": "690d048a-ce8c-4e43-9ab0-ed9976703ad9", "similarity_coefficient": 0.34977578475336324, "overlap_size": 78 } }, { "data": { "id": "1c1793b4-a8b8-47a7-ab5f-cc2b195d4138", "source": "d61f0543-15b0-428e-ade4-e9346167811e", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.2717391304347826, "overlap_size": 50 } }, { "data": { "id": "111d999b-a2fd-419d-993a-26b20cb1b730", "source": "d61f0543-15b0-428e-ade4-e9346167811e", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49 } }, { "data": { "id": "08ebfd6d-1de0-4696-8f55-555572a16fdc", "source": "d61f0543-15b0-428e-ade4-e9346167811e", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.35, "overlap_size": 49 } }, { "data": { "id": "1c59bcc6-a932-44c9-8cc8-cea1df50b26c", "source": "d61f0543-15b0-428e-ade4-e9346167811e", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.4380952380952381, "overlap_size": 46 } }, { "data": { "id": "28023fab-2937-46c7-ae52-79b07fd73c6c", "source": "d61f0543-15b0-428e-ade4-e9346167811e", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.4339622641509434, "overlap_size": 46 } }, { "data": { "id": "6d722d85-07d3-4392-bb90-2f01df6c6204", "source": "6d7e36db-57e6-4071-9854-9947792f3ea4", "target": "64583106-cb89-4f3f-9374-2a1622a58cef", "similarity_coefficient": 0.8630952380952381, "overlap_size": 435 } }, { "data": { "id": "5e7035d9-7ed9-4e25-a489-1e97588112a8", "source": "69c93903-e7d0-4d42-a0f7-d5decb12c571", "target": "05636855-db9f-4249-97d1-199b2d37d4fa", "similarity_coefficient": 0.8541666666666666, "overlap_size": 41 } }, { "data": { "id": "a7860413-e8f8-4ff0-8a8f-04715810e63a", "source": "ae0379b7-1767-45b9-bb67-825999995acc", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.9076923076923077, "overlap_size": 59 } }, { "data": { "id": "5df048a0-d581-463f-8617-d74de8445660", "source": "ae0379b7-1767-45b9-bb67-825999995acc", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49 } }, { "data": { "id": "fa179ef6-cdb3-4f69-ab0d-8c67129655d2", "source": "ae0379b7-1767-45b9-bb67-825999995acc", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.3511450381679389, "overlap_size": 46 } }, { "data": { "id": "198bf5fc-23bf-4eb6-938e-aa97a905c113", "source": "ae0379b7-1767-45b9-bb67-825999995acc", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.6125, "overlap_size": 49 } }, { "data": { "id": "f7195390-316c-4347-8fa8-a80fc6b06b07", "source": "ae0379b7-1767-45b9-bb67-825999995acc", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.6388888888888888, "overlap_size": 46 } }, { "data": { "id": "9b943afd-3f5a-4af7-91fe-8a03add13442", "source": "ae0379b7-1767-45b9-bb67-825999995acc", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.2648648648648649, "overlap_size": 49 } }, { "data": { "id": "9e99b595-2452-4898-bc62-84e808ef97f5", "source": "ae0379b7-1767-45b9-bb67-825999995acc", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "d6c3c1b1-aaf1-46a8-bc7d-ed367072128a", "source": "ae0379b7-1767-45b9-bb67-825999995acc", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49 } }, { "data": { "id": "3ad8697c-8ca1-4bda-a309-860246b3c655", "source": "ae0379b7-1767-45b9-bb67-825999995acc", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.48148148148148145, "overlap_size": 65 } }, { "data": { "id": "27871433-e6c9-4b73-ac5f-957e79b566a1", "source": "ae0379b7-1767-45b9-bb67-825999995acc", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.647887323943662, "overlap_size": 46 } }, { "data": { "id": "377fe150-2897-4226-8d4b-ac5cbec4518d", "source": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31 } }, { "data": { "id": "4006a29e-b801-439d-8f07-1ed6e4fef5bd", "source": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31 } }, { "data": { "id": "5384cc7c-b50c-4fb6-a9fa-f9ae4f0bbba7", "source": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31 } }, { "data": { "id": "7a8e9037-b3c4-4732-a47e-3cfe63b14756", "source": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31 } }, { "data": { "id": "8b3e484f-940b-4c4a-9f90-f0264f328c2b", "source": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.5822784810126582, "overlap_size": 46 } }, { "data": { "id": "0be66cf5-e004-4611-be2b-c3fd69bab500", "source": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.32653061224489793, "overlap_size": 48 } }, { "data": { "id": "3c009f69-d411-400e-9611-af4ad6ad37c0", "source": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.6301369863013698, "overlap_size": 46 } }, { "data": { "id": "b8057b2c-ddec-40c2-9ce8-6deb11c54f5d", "source": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.6666666666666666, "overlap_size": 48 } }, { "data": { "id": "aace74c4-31db-4724-b9ce-72bcafc33962", "source": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.7384615384615385, "overlap_size": 48 } }, { "data": { "id": "b822452f-6a20-409c-83d0-38feb56ba797", "source": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.75, "overlap_size": 48 } }, { "data": { "id": "acfb0f56-90a7-489d-9998-0246bcb9e656", "source": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.5897435897435898, "overlap_size": 46 } }, { "data": { "id": "0ceed3b3-c554-46f1-968f-e804713f96a5", "source": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.36507936507936506, "overlap_size": 46 } }, { "data": { "id": "bf90c8ed-c6e7-4dbc-b52a-649cbfee04b9", "source": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.40707964601769914, "overlap_size": 46 } }, { "data": { "id": "d6fe232f-be70-47e9-b175-6fefb03aebdd", "source": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.4423076923076923, "overlap_size": 46 } }, { "data": { "id": "fc4527de-fa7e-47f8-9491-18b47ff56771", "source": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.25136612021857924, "overlap_size": 46 } }, { "data": { "id": "2357d161-6d97-4e13-9738-de351b140e83", "source": "52457d27-06bf-4049-97a8-d284bfd8321c", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.2553191489361702, "overlap_size": 24 } }, { "data": { "id": "60ffffe3-6318-4f1b-8c4b-bbd84b9f69d3", "source": "52457d27-06bf-4049-97a8-d284bfd8321c", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.38095238095238093, "overlap_size": 24 } }, { "data": { "id": "38512258-6822-446b-bc44-66aeea95e2d0", "source": "52457d27-06bf-4049-97a8-d284bfd8321c", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.375, "overlap_size": 24 } }, { "data": { "id": "31c1cb0b-9099-4828-8f2e-ccf76c22ae1c", "source": "52457d27-06bf-4049-97a8-d284bfd8321c", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.34782608695652173, "overlap_size": 24 } }, { "data": { "id": "45eefa58-07d5-4f41-a6e6-2900176521b4", "source": "52457d27-06bf-4049-97a8-d284bfd8321c", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.42857142857142855, "overlap_size": 24 } }, { "data": { "id": "f8085f05-7b9d-4f34-8981-928deb0b48d8", "source": "52457d27-06bf-4049-97a8-d284bfd8321c", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.35294117647058826, "overlap_size": 24 } }, { "data": { "id": "90301589-33bf-4c3f-ae4b-e1b71106243a", "source": "52457d27-06bf-4049-97a8-d284bfd8321c", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.375, "overlap_size": 24 } }, { "data": { "id": "a24515f7-df47-4b3e-8a4b-af32387833e3", "source": "52457d27-06bf-4049-97a8-d284bfd8321c", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.42105263157894735, "overlap_size": 24 } }, { "data": { "id": "b2cf945e-72ea-4df0-87d8-1435901567cc", "source": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.4444444444444444, "overlap_size": 24 } }, { "data": { "id": "9503e789-f894-42d2-805f-30198a4286fe", "source": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49 } }, { "data": { "id": "585818d3-c1f0-46fd-9314-0570bd3e7c30", "source": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.28823529411764703, "overlap_size": 49 } }, { "data": { "id": "5b8d9038-756e-4d91-86e7-817d16dff7d5", "source": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.71875, "overlap_size": 46 } }, { "data": { "id": "1f3f1b13-3bf0-4562-8d06-35b5eaf84a31", "source": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.7424242424242424, "overlap_size": 49 } }, { "data": { "id": "d0224100-4e9e-4d8e-b28f-0e4b0668ac28", "source": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.3602941176470588, "overlap_size": 49 } }, { "data": { "id": "3e07cb8a-5dd6-4118-814c-aeca3e445140", "source": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49 } }, { "data": { "id": "767f5699-3a0e-4ed9-824d-36cece87503e", "source": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.8070175438596491, "overlap_size": 46 } }, { "data": { "id": "7e76c6f4-0aa5-43ec-a2e9-2834b1365ed1", "source": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.8214285714285714, "overlap_size": 46 } }, { "data": { "id": "8ba11cbb-a075-4606-b04f-b3b53f558a3e", "source": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.7538461538461538, "overlap_size": 49 } }, { "data": { "id": "1bedac57-f565-4656-9769-027a21c4b2f2", "source": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.39655172413793105, "overlap_size": 46 } }, { "data": { "id": "f74c0a73-c3eb-4f3b-8b9e-088260163550", "source": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.8032786885245902, "overlap_size": 49 } }, { "data": { "id": "63ceee9c-d97d-4ab2-947a-bf6643f4d336", "source": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.49, "overlap_size": 49 } }, { "data": { "id": "4a515a16-3914-49fc-a295-348c60a125bb", "source": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.3081761006289308, "overlap_size": 49 } }, { "data": { "id": "c973a7f0-f80d-4598-bc3a-606080e1e8be", "source": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.25, "overlap_size": 46 } }, { "data": { "id": "7f9393c1-0a23-480e-8919-e76e296cecec", "source": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.3937007874015748, "overlap_size": 50 } }, { "data": { "id": "13e41641-08c5-447b-ba3b-ecb37c28259a", "source": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.4117647058823529, "overlap_size": 49 } }, { "data": { "id": "d9eae068-ee7b-4ab9-9784-b74da16aa1f2", "source": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.29081632653061223, "overlap_size": 57 } }, { "data": { "id": "7097315e-76de-4480-9069-24257873a793", "source": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.37593984962406013, "overlap_size": 50 } }, { "data": { "id": "a2775637-2be8-4fc1-bb44-1ba60389dcdf", "source": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.3231707317073171, "overlap_size": 53 } }, { "data": { "id": "018759b7-c782-48bb-83d2-90e01cbac4e8", "source": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.4166666666666667, "overlap_size": 50 } }, { "data": { "id": "c1776428-a92b-4ef5-ba81-74671d44a8e9", "source": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.4132231404958678, "overlap_size": 50 } }, { "data": { "id": "a53afcf0-6e1e-4270-a9f6-f1fb8e15e15a", "source": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.4015748031496063, "overlap_size": 51 } }, { "data": { "id": "abf0f2f3-6b3e-4f54-bd69-7f75e34a2b2f", "source": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.3787878787878788, "overlap_size": 50 } }, { "data": { "id": "7a9de471-c421-4c3d-a9c5-1aa9d2747205", "source": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.4126984126984127, "overlap_size": 52 } }, { "data": { "id": "4216080f-28d2-4d06-9a58-f933fd2f5eba", "source": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "target": "62ef1f23-d43a-4f50-9fd5-9932c61259e7", "similarity_coefficient": 0.400990099009901, "overlap_size": 81 } }, { "data": { "id": "ea7b0c4d-559c-41f8-a26e-e4db04c955e0", "source": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.368, "overlap_size": 46 } }, { "data": { "id": "23ce8334-9726-4666-a75e-3de35d6ce1a5", "source": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.3129251700680272, "overlap_size": 46 } }, { "data": { "id": "757ce528-7a9a-4085-a38c-a24e0593db1f", "source": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.2823529411764706, "overlap_size": 24 } }, { "data": { "id": "4f8b5f4e-0657-4ac9-aff2-abc5df4794a4", "source": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.46464646464646464, "overlap_size": 46 } }, { "data": { "id": "261b487d-54d5-403e-84e6-e54d05b8e2e1", "source": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.5161290322580645, "overlap_size": 48 } }, { "data": { "id": "244270a4-495f-455a-b422-c03413361772", "source": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.363013698630137, "overlap_size": 53 } }, { "data": { "id": "e08b50d5-1503-4a45-90dc-19c9eed55995", "source": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.5161290322580645, "overlap_size": 48 } }, { "data": { "id": "0a43d261-b510-45cf-b10e-a8fd751b4663", "source": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.654320987654321, "overlap_size": 53 } }, { "data": { "id": "6a41219a-57a8-45b5-9894-765b83cdf1a3", "source": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.2934131736526946, "overlap_size": 49 } }, { "data": { "id": "4b43f37f-a60e-4614-81ee-cb57c66d8a6d", "source": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "f5d1ea1f-079e-433d-9c39-520ce7452d3b", "source": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.34328358208955223, "overlap_size": 46 } }, { "data": { "id": "9d3a90b6-ce12-46be-80dd-1ff4b3b4a011", "source": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.46, "overlap_size": 46 } }, { "data": { "id": "ed03a423-e70d-48d8-b2c5-e3492130f9eb", "source": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.48936170212765956, "overlap_size": 46 } }, { "data": { "id": "12885be2-17ab-4975-ba96-d120fd07cd04", "source": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.5411764705882353, "overlap_size": 46 } }, { "data": { "id": "518e2723-f4bb-421f-a934-764230b066c2", "source": "e4351080-e123-4e93-98a7-49cdd09e0c1c", "target": "cddebf8c-4f9a-4ec6-b7c9-83312c9d1c51", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "9a761897-897e-4bb3-871b-f36b3dd737b9", "source": "e4351080-e123-4e93-98a7-49cdd09e0c1c", "target": "ba7799c9-3170-4d60-b811-31eae5312965", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "876faff9-be89-4433-b886-d90e11dd6666", "source": "3edf3fff-995c-4924-b458-d068cbd087e5", "target": "c65a4eb7-a904-4015-aa2a-7953d2147d48", "similarity_coefficient": 0.8260869565217391, "overlap_size": 38 } }, { "data": { "id": "b36a095e-867a-4843-99ea-1e570984f4f1", "source": "cec9100a-041b-436b-896d-c9938244a090", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.5, "overlap_size": 78 } }, { "data": { "id": "6c491edd-85ab-4f2f-82b3-ce3215f4c718", "source": "cec9100a-041b-436b-896d-c9938244a090", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.5, "overlap_size": 78 } }, { "data": { "id": "c7a26ef0-5ef7-4c74-9d89-2d9588204e17", "source": "cec9100a-041b-436b-896d-c9938244a090", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.5, "overlap_size": 78 } }, { "data": { "id": "e24ebdc3-74af-4c7c-aab7-db357a182d06", "source": "cec9100a-041b-436b-896d-c9938244a090", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.5, "overlap_size": 78 } }, { "data": { "id": "bd821c34-9a1d-42d5-a8d5-3d93ef2bb534", "source": "cec9100a-041b-436b-896d-c9938244a090", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.3271375464684015, "overlap_size": 88 } }, { "data": { "id": "7a18c925-0e26-4e2d-a688-8057ba5decd2", "source": "a0c0e8e0-96ed-4337-bfcc-f28c17708a1a", "target": "69c93903-e7d0-4d42-a0f7-d5decb12c571", "similarity_coefficient": 0.2711864406779661, "overlap_size": 48 } }, { "data": { "id": "b9ce1556-e4f6-463e-81ef-db676b03b6c6", "source": "a0c0e8e0-96ed-4337-bfcc-f28c17708a1a", "target": "f1e91a76-6b23-4bee-adcf-402d41b3bc76", "similarity_coefficient": 0.5422885572139303, "overlap_size": 109 } }, { "data": { "id": "3c40dcfa-8975-4866-8315-dcbb8248090f", "source": "a0c0e8e0-96ed-4337-bfcc-f28c17708a1a", "target": "30eaa919-7be0-486b-9bd3-32ffbfc93216", "similarity_coefficient": 0.25728155339805825, "overlap_size": 53 } }, { "data": { "id": "f1d3afd9-63c7-4ca7-acec-b1741c8b47cb", "source": "ee0413cd-3232-4384-9450-4d31d014be5d", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "71ebfe47-6108-47f4-bcd7-93fd2e383f9d", "source": "ee0413cd-3232-4384-9450-4d31d014be5d", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.5, "overlap_size": 78 } }, { "data": { "id": "f2fd7e15-a8b6-4e24-b643-b5527292b4db", "source": "ee0413cd-3232-4384-9450-4d31d014be5d", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "4e754b49-defa-40e4-b043-e858b71b8416", "source": "ee0413cd-3232-4384-9450-4d31d014be5d", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78 } }, { "data": { "id": "80a4fe1e-28d7-4202-8218-0470511c450e", "source": "ee0413cd-3232-4384-9450-4d31d014be5d", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31 } }, { "data": { "id": "5275ee87-e2e5-458c-9da5-980f73422e6b", "source": "ee0413cd-3232-4384-9450-4d31d014be5d", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "651754b6-84ff-4e81-b152-c6e7dba33003", "source": "ee0413cd-3232-4384-9450-4d31d014be5d", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "019e6e4e-5b65-4d88-9beb-7b8d351b6a66", "source": "23948dfa-a18c-440c-b1eb-1c4b5a4a17c4", "target": "c167249a-c4f0-4f9e-9508-38b203d5aa6f", "similarity_coefficient": 0.907608695652174, "overlap_size": 167 } }, { "data": { "id": "c806814f-b874-479c-97c1-fb78a8f0bbe6", "source": "24f5af60-b4d1-48a0-9356-137f00085647", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78 } }, { "data": { "id": "73932e50-2878-4ba2-9d94-c1c5e8750d79", "source": "24f5af60-b4d1-48a0-9356-137f00085647", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78 } }, { "data": { "id": "5457edb6-eba7-4327-b00d-3836ec4ac33f", "source": "24f5af60-b4d1-48a0-9356-137f00085647", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78 } }, { "data": { "id": "b61b05e6-5d92-4b03-8f5d-502c7289e6b1", "source": "24f5af60-b4d1-48a0-9356-137f00085647", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.2755905511811024, "overlap_size": 35 } }, { "data": { "id": "aefc731d-a4e0-403f-9c01-9fc74423b8f0", "source": "24f5af60-b4d1-48a0-9356-137f00085647", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78 } }, { "data": { "id": "3634c514-1d59-4845-9065-1f80b9e1f1ac", "source": "24f5af60-b4d1-48a0-9356-137f00085647", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78 } }, { "data": { "id": "68dd5243-05da-4ca9-a599-f4b3cc6b70ba", "source": "24f5af60-b4d1-48a0-9356-137f00085647", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.3876651982378855, "overlap_size": 88 } }, { "data": { "id": "1fde0fda-9744-4ed0-b178-94c036f9648e", "source": "24f5af60-b4d1-48a0-9356-137f00085647", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.4943820224719101, "overlap_size": 88 } }, { "data": { "id": "9304f69c-cef1-443f-8401-da93a7fdd785", "source": "8dd921b1-19f9-43d1-8809-18810bb72059", "target": "30eaa919-7be0-486b-9bd3-32ffbfc93216", "similarity_coefficient": 0.26900584795321636, "overlap_size": 46 } }, { "data": { "id": "4f6cc4ef-2990-4509-bf86-1f345d592972", "source": "8dd921b1-19f9-43d1-8809-18810bb72059", "target": "a0c0e8e0-96ed-4337-bfcc-f28c17708a1a", "similarity_coefficient": 0.7627118644067796, "overlap_size": 135 } }, { "data": { "id": "00f36770-7778-430c-b670-bc2a6933c75e", "source": "8dd921b1-19f9-43d1-8809-18810bb72059", "target": "05636855-db9f-4249-97d1-199b2d37d4fa", "similarity_coefficient": 0.3037037037037037, "overlap_size": 41 } }, { "data": { "id": "a886289f-1359-4a33-ad5d-8b4cd04c4e76", "source": "8dd921b1-19f9-43d1-8809-18810bb72059", "target": "69c93903-e7d0-4d42-a0f7-d5decb12c571", "similarity_coefficient": 0.2978723404255319, "overlap_size": 42 } }, { "data": { "id": "b3cf278d-e9ab-4743-a157-465ea839c314", "source": "8dd921b1-19f9-43d1-8809-18810bb72059", "target": "f1e91a76-6b23-4bee-adcf-402d41b3bc76", "similarity_coefficient": 0.6645962732919255, "overlap_size": 107 } }, { "data": { "id": "2812c558-a804-4d74-876a-499a0479e0d8", "source": "a8d12184-7c64-42ff-aa0d-40a047927f81", "target": "23948dfa-a18c-440c-b1eb-1c4b5a4a17c4", "similarity_coefficient": 0.6275510204081632, "overlap_size": 123 } }, { "data": { "id": "16df97d6-00f1-4173-93ca-8932516a037b", "source": "a8d12184-7c64-42ff-aa0d-40a047927f81", "target": "c167249a-c4f0-4f9e-9508-38b203d5aa6f", "similarity_coefficient": 0.6470588235294118, "overlap_size": 132 } }, { "data": { "id": "a1a0e14a-4c0a-4a44-ad85-be7af3ed5639", "source": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.3312883435582822, "overlap_size": 54 } }, { "data": { "id": "5d1b8290-0c18-43c5-b1b6-1bb7aef9e089", "source": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.3072289156626506, "overlap_size": 51 } }, { "data": { "id": "62950d28-0584-46bd-be08-b74b558c9ae9", "source": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.2832369942196532, "overlap_size": 49 } }, { "data": { "id": "e3ebc03d-425c-4ae2-8648-f32cd04d464c", "source": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.43820224719101125, "overlap_size": 78 } }, { "data": { "id": "27dcef53-a8d0-488f-bcec-201e3c222901", "source": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.7133757961783439, "overlap_size": 112 } }, { "data": { "id": "e7159a1e-b611-404b-8efb-9fcc8adc1311", "source": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.25925925925925924, "overlap_size": 49 } }, { "data": { "id": "6caac060-2da3-473b-a7d1-96ced669c68f", "source": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.2934131736526946, "overlap_size": 49 } }, { "data": { "id": "cf870c03-cff2-4d6a-ab0d-a67a61cb5837", "source": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.310126582278481, "overlap_size": 49 } }, { "data": { "id": "5dc9113b-a688-4abe-ae01-aa250ed011e3", "source": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "target": "62ef1f23-d43a-4f50-9fd5-9932c61259e7", "similarity_coefficient": 0.2775800711743772, "overlap_size": 78 } }, { "data": { "id": "4e90f9d5-7f11-426e-a5ee-7d35508fa7b1", "source": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.30625, "overlap_size": 49 } }, { "data": { "id": "617cd1d3-01e8-4226-a1af-d878d51b905b", "source": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.28488372093023256, "overlap_size": 49 } }, { "data": { "id": "9b062472-41d7-42c7-be33-50c6defa8086", "source": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.25384615384615383, "overlap_size": 66 } }, { "data": { "id": "39af4355-6722-4d32-8030-3fcc6d623dc8", "source": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.30434782608695654, "overlap_size": 49 } }, { "data": { "id": "95a4a670-40e6-4949-b93e-42fa1012cee7", "source": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "target": "fb172c5a-c242-43e8-98a4-bc060890f253", "similarity_coefficient": 0.3575949367088608, "overlap_size": 113 } }, { "data": { "id": "13090104-5ddd-4ba0-83ba-506aa71b02d1", "source": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "target": "690d048a-ce8c-4e43-9ab0-ed9976703ad9", "similarity_coefficient": 0.28214285714285714, "overlap_size": 79 } }, { "data": { "id": "382c05ac-9f80-45d6-a194-0c922a439b93", "source": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.44660194174757284, "overlap_size": 46 } }, { "data": { "id": "cda9c8a5-d142-4f0a-8908-5ccfad0daea0", "source": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.3023255813953488, "overlap_size": 52 } }, { "data": { "id": "01cb0faf-9f92-4c62-b2ac-629bff31a96e", "source": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49 } }, { "data": { "id": "eb31a102-d039-4ba7-b9a7-1ebd330c7ca0", "source": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.494949494949495, "overlap_size": 49 } }, { "data": { "id": "74a2c237-1d7a-4139-bb46-056dda5298f6", "source": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.49, "overlap_size": 49 } }, { "data": { "id": "6451a616-6c30-4192-917c-83d3069b8fea", "source": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.4791666666666667, "overlap_size": 46 } }, { "data": { "id": "56c6e304-0126-4fed-8d31-0b85550ab8f2", "source": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.3184713375796178, "overlap_size": 50 } }, { "data": { "id": "0765a04d-4fc7-40de-9f93-764df6d32e3a", "source": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.25806451612903225, "overlap_size": 24 } }, { "data": { "id": "545bbfe5-e457-4f5c-85c7-c802172fad96", "source": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.5617977528089888, "overlap_size": 50 } }, { "data": { "id": "1a932342-d2d3-45f1-be8f-50a00550ff1c", "source": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.3769230769230769, "overlap_size": 49 } }, { "data": { "id": "88141661-a528-4cbf-9df7-0bbe8cca74d4", "source": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.35251798561151076, "overlap_size": 49 } }, { "data": { "id": "f37c38ba-27e8-4eca-b21d-0272394d10cb", "source": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49 } }, { "data": { "id": "4c800fa0-ab02-41fc-9b2c-f2b54c4501ac", "source": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.2967741935483871, "overlap_size": 46 } }, { "data": { "id": "b8f4a77c-51bd-4a87-b496-8e482d65dd76", "source": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.4842105263157895, "overlap_size": 46 } }, { "data": { "id": "caf6f77f-9e94-46b9-a9bb-8d3c6c62eee2", "source": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.3709677419354839, "overlap_size": 46 } }, { "data": { "id": "b17df61d-8048-43a7-aa08-2b4b7b89d77c", "source": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.4808743169398907, "overlap_size": 88 } }, { "data": { "id": "57bfd51c-03e5-49e3-b251-5fa955648454", "source": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.3793103448275862, "overlap_size": 88 } }, { "data": { "id": "a75dee98-f3f9-45c0-b888-22154005df67", "source": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.6694915254237288, "overlap_size": 79 } }, { "data": { "id": "0d1e8cf0-36d0-4aab-aaa6-3198a7d19c98", "source": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.26515151515151514, "overlap_size": 35 } }, { "data": { "id": "9ca982d2-a58b-4738-89a5-c8ca4725f759", "source": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.624113475177305, "overlap_size": 88 } }, { "data": { "id": "2fd55527-a8ec-4b42-9c2f-7415c8d8f95f", "source": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.6554621848739496, "overlap_size": 78 } }, { "data": { "id": "662ec556-655b-4d2e-af18-6716fae3276e", "source": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.6694915254237288, "overlap_size": 79 } }, { "data": { "id": "578cdc6c-14d4-427b-b6dc-0314164918b3", "source": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.6554621848739496, "overlap_size": 78 } }, { "data": { "id": "530d861f-0dca-4728-a5f3-ca206f3e6fe1", "source": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.6554621848739496, "overlap_size": 78 } }, { "data": { "id": "e306a8c5-aafe-476f-b554-626a787776c2", "source": "842f7484-0b1c-45a0-9865-86eff85b70c5", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.35251798561151076, "overlap_size": 49 } }, { "data": { "id": "534073df-ec5d-413c-b6f0-8f63743ad125", "source": "842f7484-0b1c-45a0-9865-86eff85b70c5", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.6865671641791045, "overlap_size": 46 } }, { "data": { "id": "694c4289-6d01-44e9-923c-1b80516d4acc", "source": "842f7484-0b1c-45a0-9865-86eff85b70c5", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49 } }, { "data": { "id": "c9679c50-7343-463c-82cd-435be4753dab", "source": "842f7484-0b1c-45a0-9865-86eff85b70c5", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.7796610169491526, "overlap_size": 46 } }, { "data": { "id": "1dbbeb91-8b8a-4571-855e-ff46dad216b6", "source": "842f7484-0b1c-45a0-9865-86eff85b70c5", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "e122b960-6683-400d-abd8-fbf7d3c6b640", "source": "842f7484-0b1c-45a0-9865-86eff85b70c5", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.765625, "overlap_size": 49 } }, { "data": { "id": "076f12d9-5421-4a97-a7d6-79fd21694d62", "source": "842f7484-0b1c-45a0-9865-86eff85b70c5", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.4016393442622951, "overlap_size": 49 } }, { "data": { "id": "7a0bb66c-77df-4011-b6f1-cd91948e4006", "source": "842f7484-0b1c-45a0-9865-86eff85b70c5", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.30434782608695654, "overlap_size": 49 } }, { "data": { "id": "044ee41a-ed01-43ee-bc86-a063afffaf38", "source": "842f7484-0b1c-45a0-9865-86eff85b70c5", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.2832369942196532, "overlap_size": 49 } }, { "data": { "id": "d8a9510b-0f11-4e58-a074-4e71c86087ec", "source": "842f7484-0b1c-45a0-9865-86eff85b70c5", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.7666666666666667, "overlap_size": 46 } }, { "data": { "id": "617c387e-ad33-454a-84d8-78d3f0c2a9cf", "source": "842f7484-0b1c-45a0-9865-86eff85b70c5", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.5212765957446809, "overlap_size": 49 } }, { "data": { "id": "17d61bc9-43b8-4a81-b2a2-c05ecb31641e", "source": "842f7484-0b1c-45a0-9865-86eff85b70c5", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.42105263157894735, "overlap_size": 24 } }, { "data": { "id": "06e57b70-20a0-4bf2-9a73-3d721718f663", "source": "842f7484-0b1c-45a0-9865-86eff85b70c5", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.9433962264150944, "overlap_size": 50 } }, { "data": { "id": "0eb06588-3ed4-40c0-9449-b363edce5a42", "source": "842f7484-0b1c-45a0-9865-86eff85b70c5", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49 } }, { "data": { "id": "621bb21d-51b1-4a93-b1e4-fbc7078968d7", "source": "842f7484-0b1c-45a0-9865-86eff85b70c5", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "d1d7a43e-2c3a-4c7e-b459-bc3894e91efc", "source": "842f7484-0b1c-45a0-9865-86eff85b70c5", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.5227272727272727, "overlap_size": 46 } }, { "data": { "id": "1a0e45e9-c2d5-47ec-9341-afe2d9d26488", "source": "842f7484-0b1c-45a0-9865-86eff85b70c5", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.5434782608695652, "overlap_size": 50 } }, { "data": { "id": "111c75ee-8522-4fd5-9c6b-7f2ef9cdd6bc", "source": "842f7484-0b1c-45a0-9865-86eff85b70c5", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.3865546218487395, "overlap_size": 46 } }, { "data": { "id": "39cc8e40-669a-4622-baa2-3392eba51086", "source": "8fde9272-c650-43e9-af45-fa7404d4432f", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.3223684210526316, "overlap_size": 49 } }, { "data": { "id": "03e8b482-18ea-49ee-b66a-f1b517573b21", "source": "8fde9272-c650-43e9-af45-fa7404d4432f", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49 } }, { "data": { "id": "133d69a9-4733-4036-9276-2fdba4ccac10", "source": "8fde9272-c650-43e9-af45-fa7404d4432f", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49 } }, { "data": { "id": "f34ade7d-49a6-41cc-9055-813875cac282", "source": "8fde9272-c650-43e9-af45-fa7404d4432f", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.6388888888888888, "overlap_size": 46 } }, { "data": { "id": "27600182-5dae-40d5-83a7-23a2c78b93a6", "source": "8fde9272-c650-43e9-af45-fa7404d4432f", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.6301369863013698, "overlap_size": 46 } }, { "data": { "id": "7738dd46-54f5-4d8f-b843-0753a4f564db", "source": "8fde9272-c650-43e9-af45-fa7404d4432f", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.726027397260274, "overlap_size": 53 } }, { "data": { "id": "2b1631ca-7b35-4757-9ff7-7c5d001c8e0f", "source": "8fde9272-c650-43e9-af45-fa7404d4432f", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.373134328358209, "overlap_size": 50 } }, { "data": { "id": "e1f1c3ea-1977-4771-bd86-fb8e8be8eec7", "source": "8fde9272-c650-43e9-af45-fa7404d4432f", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.31952662721893493, "overlap_size": 54 } }, { "data": { "id": "a20ebef1-e9c8-4347-884e-259b26b3ebcd", "source": "8fde9272-c650-43e9-af45-fa7404d4432f", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.34285714285714286, "overlap_size": 24 } }, { "data": { "id": "62127578-9d7c-4946-9b40-65e744267605", "source": "8fde9272-c650-43e9-af45-fa7404d4432f", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49 } }, { "data": { "id": "252dafe0-bb24-435b-8231-d3bb41f2669a", "source": "8fde9272-c650-43e9-af45-fa7404d4432f", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.26344086021505375, "overlap_size": 49 } }, { "data": { "id": "b734c56c-a001-4da8-9c46-8df0e2a1c911", "source": "8fde9272-c650-43e9-af45-fa7404d4432f", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49 } }, { "data": { "id": "ac8f68cd-56aa-4297-897f-c0b5ddc2b2f9", "source": "8fde9272-c650-43e9-af45-fa7404d4432f", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49 } }, { "data": { "id": "f6fd6544-5a7a-46fa-99eb-805bbd5a730d", "source": "8fde9272-c650-43e9-af45-fa7404d4432f", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.45544554455445546, "overlap_size": 46 } }, { "data": { "id": "e657fa3c-40d3-4d42-b24e-7e4f716fb8e8", "source": "8fde9272-c650-43e9-af45-fa7404d4432f", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "55d59820-10cb-4b33-b908-0475369066c2", "source": "8fde9272-c650-43e9-af45-fa7404d4432f", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.7, "overlap_size": 49 } }, { "data": { "id": "4c873852-c15c-4abb-9a5c-68b243a441a6", "source": "8fde9272-c650-43e9-af45-fa7404d4432f", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "896642ab-2373-4775-b010-9bce2c073c9a", "source": "8fde9272-c650-43e9-af45-fa7404d4432f", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.3484848484848485, "overlap_size": 46 } }, { "data": { "id": "56820200-e669-4c28-8bfc-db5858441406", "source": "8fde9272-c650-43e9-af45-fa7404d4432f", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.4224137931034483, "overlap_size": 49 } }, { "data": { "id": "30de4f52-6608-4024-883f-2d72fd9b0ca5", "source": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.45544554455445546, "overlap_size": 46 } }, { "data": { "id": "9927209c-d67a-4751-896a-fa83e531ff06", "source": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.33793103448275863, "overlap_size": 49 } }, { "data": { "id": "eba6dcd0-a0eb-45c4-831c-273a123199f4", "source": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.45098039215686275, "overlap_size": 46 } }, { "data": { "id": "c723c6be-2324-4d50-8484-6223fbac2e86", "source": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.5172413793103449, "overlap_size": 60 } }, { "data": { "id": "3370524c-26e2-4c7d-9052-a6aaa4edf71e", "source": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.36538461538461536, "overlap_size": 57 } }, { "data": { "id": "f9009324-429e-48b6-8186-dc217f0c9065", "source": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.4485981308411215, "overlap_size": 48 } }, { "data": { "id": "b877918a-4a10-4c4f-9968-7f9897b73b86", "source": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.40350877192982454, "overlap_size": 46 } }, { "data": { "id": "2024e114-12e9-489f-b250-1865c5f85941", "source": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.42201834862385323, "overlap_size": 46 } }, { "data": { "id": "092f158a-517a-4a82-89d6-8ad8484a137b", "source": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.33093525179856115, "overlap_size": 46 } }, { "data": { "id": "361c4849-efeb-4df9-b202-a2ca7815b844", "source": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.26373626373626374, "overlap_size": 48 } }, { "data": { "id": "0cd32a87-5e48-40d3-a57e-71548b3bfe2e", "source": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.43243243243243246, "overlap_size": 48 } }, { "data": { "id": "73c20bc7-3382-4f34-833a-e14e2024ff30", "source": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.42592592592592593, "overlap_size": 46 } }, { "data": { "id": "f6bd0dc7-c155-4dde-8196-54b20bacd55b", "source": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "target": "62ef1f23-d43a-4f50-9fd5-9932c61259e7", "similarity_coefficient": 0.2801724137931034, "overlap_size": 65 } }, { "data": { "id": "fa4d2ce8-6946-4dc8-a043-4049ef4913df", "source": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.45098039215686275, "overlap_size": 46 } }, { "data": { "id": "1135c781-18ac-4626-b4c4-70c0aacad4d0", "source": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.2857142857142857, "overlap_size": 46 } }, { "data": { "id": "453fb590-4f5d-42c5-b9ca-c8a50f403690", "source": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.46464646464646464, "overlap_size": 46 } }, { "data": { "id": "e5dbf0e1-5a7e-4cd2-b90f-443333272478", "source": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.35294117647058826, "overlap_size": 48 } }, { "data": { "id": "acfd6b78-579d-4f6b-a41f-6cdc36de449c", "source": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.45045045045045046, "overlap_size": 50 } }, { "data": { "id": "a589c57d-df2b-43d1-b593-fe4fbebf67b3", "source": "3baa2895-d41a-4b91-925b-906637d521ee", "target": "e4351080-e123-4e93-98a7-49cdd09e0c1c", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "8ac8f240-e6cb-4bb7-8c42-20f69c665037", "source": "3baa2895-d41a-4b91-925b-906637d521ee", "target": "ba7799c9-3170-4d60-b811-31eae5312965", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "626735f1-c041-41b0-b4d5-1b54b9cc3b49", "source": "3baa2895-d41a-4b91-925b-906637d521ee", "target": "cddebf8c-4f9a-4ec6-b7c9-83312c9d1c51", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "1a64736e-afe4-4f6d-ad99-54c1863ed6e1", "source": "f40412c6-5ce1-4780-a6f2-a92ff01d974a", "target": "a8d12184-7c64-42ff-aa0d-40a047927f81", "similarity_coefficient": 0.2775330396475771, "overlap_size": 126 } }, { "data": { "id": "b2fdd243-4852-4744-b01a-2d7f822c4739", "source": "f40412c6-5ce1-4780-a6f2-a92ff01d974a", "target": "f4d86e8f-8852-44cc-9034-4e0aef1f6102", "similarity_coefficient": 0.31766612641815234, "overlap_size": 196 } }, { "data": { "id": "d8531680-1479-48ed-836d-a8f9be25ae76", "source": "f40412c6-5ce1-4780-a6f2-a92ff01d974a", "target": "c167249a-c4f0-4f9e-9508-38b203d5aa6f", "similarity_coefficient": 0.3783783783783784, "overlap_size": 168 } }, { "data": { "id": "39756889-3008-4362-b1cf-e34c0ed51ab4", "source": "f40412c6-5ce1-4780-a6f2-a92ff01d974a", "target": "23948dfa-a18c-440c-b1eb-1c4b5a4a17c4", "similarity_coefficient": 0.3901869158878505, "overlap_size": 167 } }, { "data": { "id": "54b7c859-214d-4f6f-83b5-a2affd3c1186", "source": "50f5ed90-547c-4a0e-adaa-f5a2d8d8b12e", "target": "8cca4f4e-2ae2-4c4c-b02d-77f747e2cda7", "similarity_coefficient": 0.851063829787234, "overlap_size": 40 } }, { "data": { "id": "e8a5155e-4c44-4ae8-bdc4-acf0c7e24b40", "source": "d0695f97-406d-467a-ac9e-3fd20d47a3e9", "target": "3849b052-8975-4cca-807c-5493d843ac38", "similarity_coefficient": 0.25806451612903225, "overlap_size": 16 } }, { "data": { "id": "250c3411-8249-4c9a-b1db-da017718f489", "source": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.676056338028169, "overlap_size": 48 } }, { "data": { "id": "e0de308b-712f-41e3-8144-b592276ae947", "source": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.494949494949495, "overlap_size": 49 } }, { "data": { "id": "f4a34414-8dc5-4cc7-bf8b-c7ffdd9a2f54", "source": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.9833333333333333, "overlap_size": 59 } }, { "data": { "id": "d9d58072-bc5c-44ec-8018-f4c8dbcf888b", "source": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49 } }, { "data": { "id": "71e1af3a-fd57-4803-a8c9-248f1efeb78a", "source": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49 } }, { "data": { "id": "ce5587c8-65b2-4d01-aa78-8efe309bbcf4", "source": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.36619718309859156, "overlap_size": 52 } }, { "data": { "id": "3aa2f44f-8cfd-4100-8127-4c62063633b2", "source": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49 } }, { "data": { "id": "8aa32f68-b3f7-4d32-90b6-211bcce73473", "source": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.42592592592592593, "overlap_size": 46 } }, { "data": { "id": "fdd4ea24-83e9-4b6e-83bb-db4dfd0a73fb", "source": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "e3c344f8-7843-401d-9742-71de484faaae", "source": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.5217391304347826, "overlap_size": 48 } }, { "data": { "id": "39742645-1d32-4ae1-b478-f686878ba187", "source": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.368, "overlap_size": 46 } }, { "data": { "id": "e9f3f4a4-1ba2-4f89-b570-8de293011792", "source": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49 } }, { "data": { "id": "07dc20b5-505b-4c62-9230-b365a7690124", "source": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "1d48a8d1-183e-4381-8888-f4b4a1f86752", "source": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.38095238095238093, "overlap_size": 24 } }, { "data": { "id": "f083fc80-38ad-4658-9452-c3f2da546a88", "source": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49 } }, { "data": { "id": "5eb0e7e7-d7ee-4e58-886e-58f68fc869bf", "source": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.40476190476190477, "overlap_size": 51 } }, { "data": { "id": "b2aa9195-49cd-4dfc-8f78-0034c6b3cf49", "source": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.5050505050505051, "overlap_size": 50 } }, { "data": { "id": "5d41e03d-ff68-4498-98f5-fdb08d02483a", "source": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49 } }, { "data": { "id": "49689026-1e3a-48c9-a46a-47bdbd3a46f7", "source": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.2737430167597765, "overlap_size": 49 } }, { "data": { "id": "f530e937-9ca0-40d4-8ede-09f75053b126", "source": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.75, "overlap_size": 48 } }, { "data": { "id": "63e3cdad-3154-4ea9-8f7e-bed5f99fd7c7", "source": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.3090909090909091, "overlap_size": 51 } }, { "data": { "id": "019bd70f-3a3a-4f14-b382-23474e474831", "source": "9797f4cd-c1c3-460c-8089-225da677b24a", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "cb6ffb04-30ad-433a-96ad-b4efc69358b1", "source": "9797f4cd-c1c3-460c-8089-225da677b24a", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.47297297297297297, "overlap_size": 35 } }, { "data": { "id": "24ce9887-ae16-480d-8f75-70cd24021349", "source": "9797f4cd-c1c3-460c-8089-225da677b24a", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "eeed9de4-ae97-4423-8421-ec6c9fad47fa", "source": "9797f4cd-c1c3-460c-8089-225da677b24a", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "a084635c-117f-46cb-be27-dd4087f51fe1", "source": "9797f4cd-c1c3-460c-8089-225da677b24a", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "e2d192b7-f495-4e30-87cd-f7f7a44efa34", "source": "9797f4cd-c1c3-460c-8089-225da677b24a", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.5267857142857143, "overlap_size": 59 } }, { "data": { "id": "87122771-8b13-46aa-b0a9-b9573f28e438", "source": "9797f4cd-c1c3-460c-8089-225da677b24a", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "3d6e1944-2f3e-4e13-9de4-6cf4e5abe5e5", "source": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.375, "overlap_size": 24 } }, { "data": { "id": "4fd7accb-9eb2-4c3c-ae14-f7d841d274d4", "source": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.8032786885245902, "overlap_size": 49 } }, { "data": { "id": "2f12a7fc-43a3-473a-a8ad-be1269e416bd", "source": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.43548387096774194, "overlap_size": 54 } }, { "data": { "id": "ad602706-f977-498c-bf67-230949184e85", "source": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.48514851485148514, "overlap_size": 49 } }, { "data": { "id": "c90808cb-3c75-4969-8b62-1ba9b983141a", "source": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49 } }, { "data": { "id": "e515e131-9e4f-46a8-ac3f-cac7b8377b81", "source": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.765625, "overlap_size": 49 } }, { "data": { "id": "35abb33b-b90f-4de7-9236-5af120a13797", "source": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.2722222222222222, "overlap_size": 49 } }, { "data": { "id": "1bad41c9-bad1-4b63-9518-62987c839eee", "source": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.3151515151515151, "overlap_size": 52 } }, { "data": { "id": "7fa5140b-c4f3-4cd7-b937-71f90b48743c", "source": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "target": "690d048a-ce8c-4e43-9ab0-ed9976703ad9", "similarity_coefficient": 0.2535885167464115, "overlap_size": 53 } }, { "data": { "id": "43f604e5-6556-4a14-8085-9a118cab6018", "source": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.7761194029850746, "overlap_size": 52 } }, { "data": { "id": "ed911a5e-72d3-4d30-b913-519c376de327", "source": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.5360824742268041, "overlap_size": 52 } }, { "data": { "id": "7cc848e5-3f13-4049-bf7b-a649a7fda04a", "source": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.6666666666666666, "overlap_size": 48 } }, { "data": { "id": "cf12ee2d-4c77-41ca-bf12-8905841d614c", "source": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.7647058823529411, "overlap_size": 52 } }, { "data": { "id": "d945df41-5165-4890-a62d-62473ee6ed5e", "source": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "9eb3129d-682f-4132-a92c-b3de5699b866", "source": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.4444444444444444, "overlap_size": 60 } }, { "data": { "id": "4fe1e1b8-a3e2-4795-a64b-e0e54e6fa26f", "source": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.8360655737704918, "overlap_size": 51 } }, { "data": { "id": "cb5afa90-8d21-4435-a29f-7deba74a04ce", "source": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.42201834862385323, "overlap_size": 46 } }, { "data": { "id": "d528d7fb-65d2-4a6f-bed7-8c82b53e9108", "source": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49 } }, { "data": { "id": "afeda28e-9594-428a-a7af-da8736ee6e16", "source": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.765625, "overlap_size": 49 } }, { "data": { "id": "1b1d8531-27ea-4328-af64-be1319e1f79f", "source": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.36507936507936506, "overlap_size": 46 } }, { "data": { "id": "6bc4c310-7885-4f2e-a718-80511275bc52", "source": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.532608695652174, "overlap_size": 49 } }, { "data": { "id": "0f46130a-aba7-41f2-8051-57d7966814a3", "source": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "0ca23339-3760-49ee-a2e2-1b1cf71498e2", "source": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.7, "overlap_size": 49 } }, { "data": { "id": "2e7899e4-4084-4ae7-8bd6-c6f5620985c5", "source": "8f2732b7-bdc9-40f5-8845-a8d9beca3b22", "target": "e4351080-e123-4e93-98a7-49cdd09e0c1c", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "cb8502ae-b25f-4877-9ba9-5f29e2fb0feb", "source": "8f2732b7-bdc9-40f5-8845-a8d9beca3b22", "target": "3baa2895-d41a-4b91-925b-906637d521ee", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "4e89fffd-e98f-4111-ace9-d9e2c8728cf5", "source": "8f2732b7-bdc9-40f5-8845-a8d9beca3b22", "target": "cddebf8c-4f9a-4ec6-b7c9-83312c9d1c51", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "217fe2ab-d0e6-4ac2-8fb3-a6a4342148ef", "source": "8f2732b7-bdc9-40f5-8845-a8d9beca3b22", "target": "ba7799c9-3170-4d60-b811-31eae5312965", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "5b8560bf-6c4d-459d-b559-e5cfeb26551c", "source": "4e2e95c9-0874-44db-b7e5-fad6bfa0022e", "target": "4db57ec5-4334-45bf-b67e-a42520b33bcb", "similarity_coefficient": 0.3588342440801457, "overlap_size": 197 } }, { "data": { "id": "412de10b-cd71-4e10-b16e-a095c8b25194", "source": "8df682a4-616c-43a7-bcbf-768df10b482a", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.5844155844155844, "overlap_size": 90 } }, { "data": { "id": "c3411462-e1d1-4ece-bb0f-0cf05ffb9cb0", "source": "8df682a4-616c-43a7-bcbf-768df10b482a", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.4292682926829268, "overlap_size": 88 } }, { "data": { "id": "16c3c057-71f2-4c69-8e88-ae557da62f1a", "source": "8df682a4-616c-43a7-bcbf-768df10b482a", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.30701754385964913, "overlap_size": 35 } }, { "data": { "id": "db8d4b07-8f45-4d24-b1c3-fb71f493203c", "source": "8df682a4-616c-43a7-bcbf-768df10b482a", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.3333333333333333, "overlap_size": 35 } }, { "data": { "id": "2e3061bc-d776-4b09-a945-94b060d1635b", "source": "8df682a4-616c-43a7-bcbf-768df10b482a", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.7394957983193278, "overlap_size": 88 } }, { "data": { "id": "f8c1b23b-9df3-4883-8fd8-54250852afaf", "source": "8df682a4-616c-43a7-bcbf-768df10b482a", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "e34aecf6-0b5d-4714-8653-0958d3732148", "source": "8df682a4-616c-43a7-bcbf-768df10b482a", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.7719298245614035, "overlap_size": 88 } }, { "data": { "id": "7bfced36-b9fe-4c1b-aef0-270ca63b91f1", "source": "8df682a4-616c-43a7-bcbf-768df10b482a", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "ed52c90c-24e6-44b4-9980-f8418e48e862", "source": "8df682a4-616c-43a7-bcbf-768df10b482a", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "9cb06271-dbf3-4cbf-9c1d-f0e26c4edefa", "source": "8df682a4-616c-43a7-bcbf-768df10b482a", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "b2a73e48-f5a1-4421-bc73-ca74fe733d44", "source": "8df682a4-616c-43a7-bcbf-768df10b482a", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "1ea4cb3c-dc6e-45ed-92ce-95c8fe1492f4", "source": "b8df25ab-1568-411c-9322-4ac486b72ee2", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.2772727272727273, "overlap_size": 61 } }, { "data": { "id": "4bccf069-7044-46d8-aa59-ceaa3c173068", "source": "b8df25ab-1568-411c-9322-4ac486b72ee2", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.25773195876288657, "overlap_size": 50 } }, { "data": { "id": "77e14615-c003-4657-8dd3-676d3dcb48d5", "source": "b8df25ab-1568-411c-9322-4ac486b72ee2", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.31176470588235294, "overlap_size": 53 } }, { "data": { "id": "1682226d-9084-4213-884c-68fdc4f45726", "source": "b8df25ab-1568-411c-9322-4ac486b72ee2", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.41025641025641024, "overlap_size": 80 } }, { "data": { "id": "13e86f72-dea2-4248-8cf8-6b101428c7cf", "source": "b8df25ab-1568-411c-9322-4ac486b72ee2", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.29878048780487804, "overlap_size": 49 } }, { "data": { "id": "e64f058a-4a90-440a-bdfd-b528e638113c", "source": "b8df25ab-1568-411c-9322-4ac486b72ee2", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.3236994219653179, "overlap_size": 56 } }, { "data": { "id": "2fb7d7c7-0828-4fc6-aaff-2df505ac5a9e", "source": "b8df25ab-1568-411c-9322-4ac486b72ee2", "target": "fb172c5a-c242-43e8-98a4-bc060890f253", "similarity_coefficient": 0.29080118694362017, "overlap_size": 98 } }, { "data": { "id": "7699b677-cadd-4e45-8b57-70036694db2b", "source": "b8df25ab-1568-411c-9322-4ac486b72ee2", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.6080402010050251, "overlap_size": 121 } }, { "data": { "id": "00f50a7e-0785-43c3-86ac-50815bc43487", "source": "b8df25ab-1568-411c-9322-4ac486b72ee2", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.2832369942196532, "overlap_size": 49 } }, { "data": { "id": "bd1761a0-1238-4dc2-8aa1-b22aae2e3116", "source": "b8df25ab-1568-411c-9322-4ac486b72ee2", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.2737430167597765, "overlap_size": 49 } }, { "data": { "id": "7324efc3-281c-4757-b98a-5326b022ec6b", "source": "b8df25ab-1568-411c-9322-4ac486b72ee2", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.2982456140350877, "overlap_size": 51 } }, { "data": { "id": "d463c3d1-bc54-4c05-95d6-2767408c2d48", "source": "b8df25ab-1568-411c-9322-4ac486b72ee2", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.29651162790697677, "overlap_size": 51 } }, { "data": { "id": "9a4eb710-695d-4ef1-88e7-486f476b5a37", "source": "b8df25ab-1568-411c-9322-4ac486b72ee2", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.2934131736526946, "overlap_size": 49 } }, { "data": { "id": "4404c13b-7245-4b97-9e40-916defb977a2", "source": "b8df25ab-1568-411c-9322-4ac486b72ee2", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.30120481927710846, "overlap_size": 50 } }, { "data": { "id": "41fb75c2-fe9c-46fa-a100-878c26964767", "source": "b8df25ab-1568-411c-9322-4ac486b72ee2", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.30303030303030304, "overlap_size": 50 } }, { "data": { "id": "6a7e0345-72de-4227-9283-00ba3fbdf564", "source": "b8df25ab-1568-411c-9322-4ac486b72ee2", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.2752808988764045, "overlap_size": 49 } }, { "data": { "id": "95ec2b20-2538-4151-a39f-243498986965", "source": "b8df25ab-1568-411c-9322-4ac486b72ee2", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.2918287937743191, "overlap_size": 75 } }, { "data": { "id": "cfb76e0d-3622-4c02-bd54-bb9076ff780a", "source": "b8df25ab-1568-411c-9322-4ac486b72ee2", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.36809815950920244, "overlap_size": 60 } }, { "data": { "id": "5f9c5339-aafd-4a20-b55e-82f432489cae", "source": "b570f307-7c80-461e-9c1b-ff264f6ff8af", "target": "3c6595b7-4300-40c2-9b8b-be0dea463aa6", "similarity_coefficient": 0.43261231281198004, "overlap_size": 260 } }, { "data": { "id": "39c3f56b-9a32-4c80-860f-7201d47a677a", "source": "b570f307-7c80-461e-9c1b-ff264f6ff8af", "target": "1cf1ee8e-77cc-4e7d-8939-adf02b347c93", "similarity_coefficient": 0.5234215885947047, "overlap_size": 257 } }, { "data": { "id": "b4b9adb3-c2fd-47fd-b4ec-ec850b474ee1", "source": "b570f307-7c80-461e-9c1b-ff264f6ff8af", "target": "5229abb8-d817-4b27-8b54-4679f2c8353e", "similarity_coefficient": 0.25, "overlap_size": 119 } }, { "data": { "id": "337a37e3-df06-45ea-86fc-663e3604da50", "source": "74b5bd36-84dd-4786-be05-c3fad4a46c33", "target": "f40412c6-5ce1-4780-a6f2-a92ff01d974a", "similarity_coefficient": 0.735981308411215, "overlap_size": 315 } }, { "data": { "id": "bf4e82e9-9c73-458d-b4ac-731a64c65ab9", "source": "74b5bd36-84dd-4786-be05-c3fad4a46c33", "target": "23948dfa-a18c-440c-b1eb-1c4b5a4a17c4", "similarity_coefficient": 0.3388888888888889, "overlap_size": 122 } }, { "data": { "id": "0f27ff5f-6071-449c-966d-782e2976e302", "source": "74b5bd36-84dd-4786-be05-c3fad4a46c33", "target": "f4d86e8f-8852-44cc-9034-4e0aef1f6102", "similarity_coefficient": 0.28205128205128205, "overlap_size": 154 } }, { "data": { "id": "08775b70-76fe-4489-9c9f-5193980ca02c", "source": "74b5bd36-84dd-4786-be05-c3fad4a46c33", "target": "c167249a-c4f0-4f9e-9508-38b203d5aa6f", "similarity_coefficient": 0.32360742705570295, "overlap_size": 122 } }, { "data": { "id": "38c89e36-d328-498e-a7aa-56f4d4e6b93b", "source": "74b5bd36-84dd-4786-be05-c3fad4a46c33", "target": "a8d12184-7c64-42ff-aa0d-40a047927f81", "similarity_coefficient": 0.36151603498542273, "overlap_size": 124 } }, { "data": { "id": "dffde9ac-596a-4e55-a4ea-3499c7856e5c", "source": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.43548387096774194, "overlap_size": 54 } }, { "data": { "id": "df0aa4f8-da90-4715-8b32-5c6b5a9dcda7", "source": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.532608695652174, "overlap_size": 49 } }, { "data": { "id": "3541e624-1a42-4155-8261-6fcd64e68830", "source": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.9672131147540983, "overlap_size": 59 } }, { "data": { "id": "c2c2a7c9-6686-4280-9a45-e301e0a18b71", "source": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "target": "690d048a-ce8c-4e43-9ab0-ed9976703ad9", "similarity_coefficient": 0.2535885167464115, "overlap_size": 53 } }, { "data": { "id": "17c9fd58-c636-4a08-b6e3-73d3f443c293", "source": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.8032786885245902, "overlap_size": 49 } }, { "data": { "id": "c3e494f5-81cd-4791-b39b-79da86e4427d", "source": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.765625, "overlap_size": 49 } }, { "data": { "id": "375f99e0-9468-4c42-9232-fcc2608a7a69", "source": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.375, "overlap_size": 24 } }, { "data": { "id": "51cf2403-eb87-452a-aa39-ad7dee2d859e", "source": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.31176470588235294, "overlap_size": 53 } }, { "data": { "id": "e37eea48-5efd-41aa-9977-5f753e8a96df", "source": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "016b97c7-b0de-4d0f-b45f-3db1c3bb3519", "source": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "787137b7-455d-4f9c-a08e-681eaf2ffb14", "source": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.3151515151515151, "overlap_size": 52 } }, { "data": { "id": "9fad1647-a9be-46e8-aac2-5a3d0da9d7a9", "source": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.7, "overlap_size": 49 } }, { "data": { "id": "3a63f2d9-366e-447a-8ccd-ac34713138e9", "source": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.7647058823529411, "overlap_size": 52 } }, { "data": { "id": "4e2c9cf3-956d-4ca1-ab3c-20855acdc1a3", "source": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.7761194029850746, "overlap_size": 52 } }, { "data": { "id": "b565686d-20d1-4ce5-b1a8-a6b39ab22f7d", "source": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.765625, "overlap_size": 49 } }, { "data": { "id": "49ddde8f-bfe4-4a9e-9915-e2fccd2bf31b", "source": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49 } }, { "data": { "id": "38a48c72-92bc-46f8-b50f-0ddfc844537b", "source": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.5360824742268041, "overlap_size": 52 } }, { "data": { "id": "8a67a2a9-4f7d-426c-8131-76828a9a59f7", "source": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.6666666666666666, "overlap_size": 48 } }, { "data": { "id": "4d4dd7e3-fe18-4fac-88b1-24ba50521f69", "source": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.2722222222222222, "overlap_size": 49 } }, { "data": { "id": "7343c1f1-07f8-41bd-b543-8e36b0188f83", "source": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.36507936507936506, "overlap_size": 46 } }, { "data": { "id": "7f609070-4951-4dfc-9633-cbcca8138933", "source": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.4444444444444444, "overlap_size": 60 } }, { "data": { "id": "f9e2e36b-d609-4705-9528-b9a8aa41bac8", "source": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.8360655737704918, "overlap_size": 51 } }, { "data": { "id": "6ed15fbf-50f5-41d7-b9ea-4db7c7444646", "source": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.48514851485148514, "overlap_size": 49 } }, { "data": { "id": "5aed83dd-8ef8-42e9-8f8f-e658b36df88f", "source": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49 } }, { "data": { "id": "1a2964fd-4702-425a-94c8-98c496ad93d3", "source": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.42201834862385323, "overlap_size": 46 } }, { "data": { "id": "de4406ea-0993-4019-b215-b6b38672aff4", "source": "6a073b52-0b0c-457e-86cd-2b8ee3c5e8cf", "target": "e8f60c2e-a8b6-4682-aa31-e95d21714e83", "similarity_coefficient": 0.6470588235294118, "overlap_size": 22 } }, { "data": { "id": "51dba846-f322-484d-a230-97370b84c153", "source": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.4016393442622951, "overlap_size": 49 } }, { "data": { "id": "a73237cf-d5b6-4b2f-bec2-ceb4ec89e9db", "source": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.43478260869565216, "overlap_size": 50 } }, { "data": { "id": "474bddc6-d430-4855-8c85-170f7758820e", "source": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49 } }, { "data": { "id": "f65d9a72-82c2-42c6-84aa-950f2305b601", "source": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.4224137931034483, "overlap_size": 49 } }, { "data": { "id": "8b8b715c-166f-431d-9d82-ff931f882cc1", "source": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.3983739837398374, "overlap_size": 49 } }, { "data": { "id": "324fd72c-07ce-48f7-ba18-21c9a628f31e", "source": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.3356164383561644, "overlap_size": 49 } }, { "data": { "id": "e873133e-da56-4bd6-9b20-9b30b9243e10", "source": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49 } }, { "data": { "id": "05b75dbf-742d-46aa-9e8f-f65b835c2f63", "source": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49 } }, { "data": { "id": "edb93e7f-a76e-4648-bf70-6cc6e8e65b5a", "source": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.8490566037735849, "overlap_size": 90 } }, { "data": { "id": "c219a8e7-4e73-471d-a89d-1bb857e16248", "source": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.28, "overlap_size": 49 } }, { "data": { "id": "9de60c88-8306-4996-9a51-5dbebf64c697", "source": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49 } }, { "data": { "id": "b7f09454-c600-40d1-a7c1-a1e711927ee6", "source": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.3262411347517731, "overlap_size": 46 } }, { "data": { "id": "046cb736-cd96-4bf3-bee3-f0ef61ae69b3", "source": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.26744186046511625, "overlap_size": 46 } }, { "data": { "id": "7bb65b1e-c849-4e48-aae1-390356a30615", "source": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.4107142857142857, "overlap_size": 46 } }, { "data": { "id": "c3b7f243-de8c-4947-9057-31feda6a8bf7", "source": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.2967741935483871, "overlap_size": 46 } }, { "data": { "id": "5f9965d7-4b7d-41cc-97d7-c7122cddb872", "source": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.3141025641025641, "overlap_size": 49 } }, { "data": { "id": "fbcd1613-9415-4f46-837f-01ba582c7bfd", "source": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.40707964601769914, "overlap_size": 46 } }, { "data": { "id": "d17ca9c4-ec0e-4891-bf95-980e451c5fa6", "source": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.38333333333333336, "overlap_size": 46 } }, { "data": { "id": "9642368c-6df8-4bc7-8f9e-9775c2ded427", "source": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.2552083333333333, "overlap_size": 49 } }, { "data": { "id": "f1a3ecb3-66d9-43a5-838b-412d01f975a5", "source": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.4049586776859504, "overlap_size": 49 } }, { "data": { "id": "17776e43-62e1-4b9c-8d30-d9b99ae02dbf", "source": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.43103448275862066, "overlap_size": 50 } }, { "data": { "id": "8ca64ed6-3823-4c8c-a781-c316c1d8d439", "source": "0b287a39-9629-4455-988e-99703244b949", "target": "b570f307-7c80-461e-9c1b-ff264f6ff8af", "similarity_coefficient": 0.463768115942029, "overlap_size": 288 } }, { "data": { "id": "25ef8cc7-010e-43ea-bce0-4fb51910d563", "source": "0b287a39-9629-4455-988e-99703244b949", "target": "3c6595b7-4300-40c2-9b8b-be0dea463aa6", "similarity_coefficient": 0.32962138084632514, "overlap_size": 296 } }, { "data": { "id": "dfa3698d-4d98-43e5-b0ee-ffbcdb7135ba", "source": "0b287a39-9629-4455-988e-99703244b949", "target": "1cf1ee8e-77cc-4e7d-8939-adf02b347c93", "similarity_coefficient": 0.32800982800982803, "overlap_size": 267 } }, { "data": { "id": "ab103ed2-bc5a-470a-94bf-bb25935891dc", "source": "59c6cc56-810e-4e4b-a18f-9db6437930ec", "target": "690d048a-ce8c-4e43-9ab0-ed9976703ad9", "similarity_coefficient": 0.6778523489932886, "overlap_size": 202 } }, { "data": { "id": "c12a2fdf-77ac-439e-b270-c6468fd96c7c", "source": "85007193-a6ac-428a-8560-a369fd4bcde6", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.35714285714285715, "overlap_size": 50 } }, { "data": { "id": "bd68e64c-e372-4358-bba1-0e5756633e13", "source": "85007193-a6ac-428a-8560-a369fd4bcde6", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.48514851485148514, "overlap_size": 49 } }, { "data": { "id": "026fd2d8-4bdf-4220-9808-49079abe24da", "source": "85007193-a6ac-428a-8560-a369fd4bcde6", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.48148148148148145, "overlap_size": 52 } }, { "data": { "id": "44dcd1b0-65cd-432d-a14e-8b3ff77be57d", "source": "85007193-a6ac-428a-8560-a369fd4bcde6", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.30538922155688625, "overlap_size": 51 } }, { "data": { "id": "97c8473c-8886-4dba-a382-609db43c6099", "source": "85007193-a6ac-428a-8560-a369fd4bcde6", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49 } }, { "data": { "id": "fe143774-862d-493c-b3e4-2c902994ee3a", "source": "85007193-a6ac-428a-8560-a369fd4bcde6", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.45714285714285713, "overlap_size": 48 } }, { "data": { "id": "09041a48-7471-4bbb-b012-6924e206e9ec", "source": "85007193-a6ac-428a-8560-a369fd4bcde6", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.59, "overlap_size": 59 } }, { "data": { "id": "21291b65-1d84-44ce-a775-a494834832cd", "source": "85007193-a6ac-428a-8560-a369fd4bcde6", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.42857142857142855, "overlap_size": 48 } }, { "data": { "id": "4f42491c-2de9-4636-a8c5-33cc239f9eb1", "source": "85007193-a6ac-428a-8560-a369fd4bcde6", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.35, "overlap_size": 49 } }, { "data": { "id": "fa529282-9ada-40ec-bd29-365e8693e5c7", "source": "85007193-a6ac-428a-8560-a369fd4bcde6", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.32051282051282054, "overlap_size": 50 } }, { "data": { "id": "9c4043a7-a965-47c3-8c35-03f744aaa5e4", "source": "85007193-a6ac-428a-8560-a369fd4bcde6", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.5841584158415841, "overlap_size": 59 } }, { "data": { "id": "a3148ca4-1233-4afd-aedd-bf37e3823a38", "source": "85007193-a6ac-428a-8560-a369fd4bcde6", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "63437c25-c78a-44e5-9359-75685fe3e2d8", "source": "85007193-a6ac-428a-8560-a369fd4bcde6", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.28415300546448086, "overlap_size": 52 } }, { "data": { "id": "bfc514da-82f6-48ae-aeef-1ea04e4317fc", "source": "85007193-a6ac-428a-8560-a369fd4bcde6", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.4224137931034483, "overlap_size": 49 } }, { "data": { "id": "c134015d-3115-4896-91a3-05171e5c00b4", "source": "85007193-a6ac-428a-8560-a369fd4bcde6", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.32666666666666666, "overlap_size": 49 } }, { "data": { "id": "547fb71c-cf6e-4db8-a79e-3dd5fa57b7fc", "source": "85007193-a6ac-428a-8560-a369fd4bcde6", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.3087248322147651, "overlap_size": 46 } }, { "data": { "id": "363772e0-7d30-4724-87f5-7a23e92b58a6", "source": "85007193-a6ac-428a-8560-a369fd4bcde6", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.48148148148148145, "overlap_size": 52 } }, { "data": { "id": "21af320c-5784-4bec-b769-1eda23da9ea6", "source": "85007193-a6ac-428a-8560-a369fd4bcde6", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.27710843373493976, "overlap_size": 46 } }, { "data": { "id": "2a665e6c-e1d9-46b3-b998-be8286cfc6fb", "source": "85007193-a6ac-428a-8560-a369fd4bcde6", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49 } }, { "data": { "id": "7d3ab265-d566-4d67-8d4a-f4b93cde553f", "source": "85007193-a6ac-428a-8560-a369fd4bcde6", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.3609022556390977, "overlap_size": 48 } }, { "data": { "id": "d015062f-4e78-4a42-b4df-7a8cfcbcac90", "source": "85007193-a6ac-428a-8560-a369fd4bcde6", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49 } }, { "data": { "id": "27b7b620-3370-4097-a578-4b68fbd7d75b", "source": "85007193-a6ac-428a-8560-a369fd4bcde6", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49 } }, { "data": { "id": "65db0c9a-04b8-4a94-bfa8-fddfee5eab2e", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "fb172c5a-c242-43e8-98a4-bc060890f253", "similarity_coefficient": 0.2743682310469314, "overlap_size": 76 } }, { "data": { "id": "00c726eb-f642-43eb-9717-ee26d1c1b036", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.5909090909090909, "overlap_size": 52 } }, { "data": { "id": "8bc5ec01-f7da-44ee-b780-47f5c34d1a03", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49 } }, { "data": { "id": "511d8e69-ce1c-4c6c-88d8-ed63f414e836", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.5666666666666667, "overlap_size": 51 } }, { "data": { "id": "eb0e9795-48c5-4378-8ee7-c3e4d558711f", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49 } }, { "data": { "id": "c8bf3378-2b37-4f42-afa9-3fe5c5c45957", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.5842696629213483, "overlap_size": 52 } }, { "data": { "id": "00b955e0-3d96-4c17-980d-b97c7503c487", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "080d7999-edb3-459d-97a1-0b0c699425b5", "similarity_coefficient": 0.3135593220338983, "overlap_size": 74 } }, { "data": { "id": "1885374c-ff80-4c2e-a9a0-fa09aa4efe40", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49 } }, { "data": { "id": "c00288d0-3fa3-48ee-a2e7-d9eb9f15872d", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.43373493975903615, "overlap_size": 72 } }, { "data": { "id": "1647136c-3c94-4c84-b76e-47cda9330153", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.35507246376811596, "overlap_size": 49 } }, { "data": { "id": "fb4e1d99-9973-4f40-8c15-8d2f9d5927ca", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.35384615384615387, "overlap_size": 46 } }, { "data": { "id": "1feb113d-e7bd-455f-a5af-228998fbd6a8", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49 } }, { "data": { "id": "ab5f3697-a84b-4bc5-adc4-e15edd100e28", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "b45a755f-8b53-47b4-be2d-ba81d792cdff", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.9204545454545454, "overlap_size": 81 } }, { "data": { "id": "01c5ae03-538f-4384-a37a-e89dc3bdade2", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.3170731707317073, "overlap_size": 52 } }, { "data": { "id": "32893472-e966-44e1-bb6a-99277b13d9ea", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.5581395348837209, "overlap_size": 48 } }, { "data": { "id": "ba247ad7-c6c7-41f4-a4bf-2b27f2b8fc2b", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.39664804469273746, "overlap_size": 71 } }, { "data": { "id": "6ce51477-8fc5-4c61-85d6-8cdc3c337286", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.40310077519379844, "overlap_size": 52 } }, { "data": { "id": "27e8e716-79cf-439c-898c-5e706088b9a9", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.5842696629213483, "overlap_size": 52 } }, { "data": { "id": "5b14c2e9-7707-4b1e-94c7-07c9166b2774", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49 } }, { "data": { "id": "ab69e72f-6dd8-434c-acd8-46edc8515ad6", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.2976190476190476, "overlap_size": 25 } }, { "data": { "id": "031df3f3-b548-4312-b5e6-9edd940dcc85", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.42105263157894735, "overlap_size": 48 } }, { "data": { "id": "bdf106d2-750d-4d79-8565-5670e303cd40", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.4016393442622951, "overlap_size": 49 } }, { "data": { "id": "627fea45-1083-4e4b-941c-469361f38e61", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.4186046511627907, "overlap_size": 72 } }, { "data": { "id": "88238120-6383-4181-a280-e10f9631bd1e", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.37404580152671757, "overlap_size": 49 } }, { "data": { "id": "0082dc51-cc89-401e-a405-d4d63cbeed9d", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.363013698630137, "overlap_size": 53 } }, { "data": { "id": "18c82e6c-e264-413a-8520-df220663689d", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.49612403100775193, "overlap_size": 64 } }, { "data": { "id": "4ad51680-a03c-4ba1-8ea0-fb3affdbbdb7", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.5842696629213483, "overlap_size": 52 } }, { "data": { "id": "3ada7f23-7432-468f-a186-aaab23547407", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.4166666666666667, "overlap_size": 50 } }, { "data": { "id": "54d5ea0d-5f44-42e2-88d2-9f377dd58332", "source": "a0bc0504-0aa3-493e-a98b-01a74812198f", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.5473684210526316, "overlap_size": 52 } }, { "data": { "id": "55b57b4f-7b54-45c7-a618-5ad4912b0109", "source": "d86061a3-3499-4177-b910-06ab47193df9", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.3357664233576642, "overlap_size": 46 } }, { "data": { "id": "622c978c-3268-48c7-a16f-89f9985cc29c", "source": "d86061a3-3499-4177-b910-06ab47193df9", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.47058823529411764, "overlap_size": 64 } }, { "data": { "id": "08c947b5-8364-4605-aba5-56494f8c8bcc", "source": "d86061a3-3499-4177-b910-06ab47193df9", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "276823d3-d603-4bee-ab42-af623ac4075e", "source": "d86061a3-3499-4177-b910-06ab47193df9", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.3967391304347826, "overlap_size": 73 } }, { "data": { "id": "72383ab4-1427-490c-b39a-25260fde5389", "source": "d86061a3-3499-4177-b910-06ab47193df9", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.5416666666666666, "overlap_size": 52 } }, { "data": { "id": "df7c8fe9-b5c9-43b5-88a2-e0f178fc1851", "source": "d86061a3-3499-4177-b910-06ab47193df9", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49 } }, { "data": { "id": "96bee2a8-c7fc-4a1a-a4c4-79d9dcd140e7", "source": "d86061a3-3499-4177-b910-06ab47193df9", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49 } }, { "data": { "id": "c3c5b9dc-a87d-4f27-af62-450f51719dea", "source": "d86061a3-3499-4177-b910-06ab47193df9", "target": "080d7999-edb3-459d-97a1-0b0c699425b5", "similarity_coefficient": 0.3153526970954357, "overlap_size": 76 } }, { "data": { "id": "16e7edf2-6b49-41a3-896c-c3961a8a7a76", "source": "d86061a3-3499-4177-b910-06ab47193df9", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.550561797752809, "overlap_size": 49 } }, { "data": { "id": "7a77980a-cec4-4d1e-bd98-c653c1fc1d44", "source": "d86061a3-3499-4177-b910-06ab47193df9", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.5416666666666666, "overlap_size": 52 } }, { "data": { "id": "e63dd3ec-1fac-4556-9d16-27e8fecd7bf3", "source": "d86061a3-3499-4177-b910-06ab47193df9", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.40476190476190477, "overlap_size": 51 } }, { "data": { "id": "15f8a98d-96a3-432e-ba6a-4ec50fae04a8", "source": "d86061a3-3499-4177-b910-06ab47193df9", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.5098039215686274, "overlap_size": 52 } }, { "data": { "id": "097ef950-c3d1-4960-9b97-318f2e6415ff", "source": "d86061a3-3499-4177-b910-06ab47193df9", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.39669421487603307, "overlap_size": 48 } }, { "data": { "id": "3373cef6-1da5-4d8a-b3a6-3ed39289855d", "source": "d86061a3-3499-4177-b910-06ab47193df9", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.532608695652174, "overlap_size": 49 } }, { "data": { "id": "ea6f8b1b-3d91-4100-b576-38332b71f535", "source": "d86061a3-3499-4177-b910-06ab47193df9", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.5416666666666666, "overlap_size": 52 } }, { "data": { "id": "4cd4550d-2ed0-419a-969e-167fdc2ee96e", "source": "d86061a3-3499-4177-b910-06ab47193df9", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.38235294117647056, "overlap_size": 52 } }, { "data": { "id": "e7e33599-edcc-4b6c-8eb4-dbb5f7e74822", "source": "d86061a3-3499-4177-b910-06ab47193df9", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.5, "overlap_size": 49 } }, { "data": { "id": "f3853f6e-0692-42e1-ab75-f6e7037bfd0d", "source": "d86061a3-3499-4177-b910-06ab47193df9", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.35507246376811596, "overlap_size": 49 } }, { "data": { "id": "b8edb86f-ac7d-4e74-9a5a-f2be56f11945", "source": "d86061a3-3499-4177-b910-06ab47193df9", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49 } }, { "data": { "id": "c82ede33-e24e-4441-885c-573ef29e8598", "source": "d86061a3-3499-4177-b910-06ab47193df9", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.5161290322580645, "overlap_size": 48 } }, { "data": { "id": "3f8cf112-6b3d-43fa-9b4f-b5e4e995b192", "source": "d86061a3-3499-4177-b910-06ab47193df9", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.30409356725146197, "overlap_size": 52 } }, { "data": { "id": "c1a45760-ca0a-4a07-8f71-10351d7b2d5a", "source": "d86061a3-3499-4177-b910-06ab47193df9", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.5416666666666666, "overlap_size": 52 } }, { "data": { "id": "9a47cbad-f826-4d9a-9376-1f3f6b594f41", "source": "d86061a3-3499-4177-b910-06ab47193df9", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.27472527472527475, "overlap_size": 25 } }, { "data": { "id": "d831a36c-d9f5-42ff-ae52-48624e989bde", "source": "d86061a3-3499-4177-b910-06ab47193df9", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.42441860465116277, "overlap_size": 73 } }, { "data": { "id": "4e1ec758-8b6d-48c2-97a1-bbf2baa539b4", "source": "d86061a3-3499-4177-b910-06ab47193df9", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.4180790960451977, "overlap_size": 74 } }, { "data": { "id": "d6b285dd-8e9f-4ef4-9173-8bbeddfbeb1f", "source": "d86061a3-3499-4177-b910-06ab47193df9", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.33793103448275863, "overlap_size": 49 } }, { "data": { "id": "6bbed9a7-43a4-401d-9372-9440e1b5abbc", "source": "d86061a3-3499-4177-b910-06ab47193df9", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.36423841059602646, "overlap_size": 55 } }, { "data": { "id": "8669cebc-9d55-4aff-bc9a-09ae5f35f378", "source": "d86061a3-3499-4177-b910-06ab47193df9", "target": "fb172c5a-c242-43e8-98a4-bc060890f253", "similarity_coefficient": 0.27208480565371024, "overlap_size": 77 } }, { "data": { "id": "0b4a7c47-a676-4a01-a199-c9612715f969", "source": "d86061a3-3499-4177-b910-06ab47193df9", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.5473684210526316, "overlap_size": 52 } }, { "data": { "id": "a53d26f2-84d5-4e19-8b5e-3928258985ee", "source": "753dfe0f-6f61-4a49-90c1-4b3708665dbf", "target": "3c6595b7-4300-40c2-9b8b-be0dea463aa6", "similarity_coefficient": 0.4654427645788337, "overlap_size": 431 } }, { "data": { "id": "61a6e0fe-2fcb-48fd-8fce-dce0c1888c6c", "source": "753dfe0f-6f61-4a49-90c1-4b3708665dbf", "target": "b570f307-7c80-461e-9c1b-ff264f6ff8af", "similarity_coefficient": 0.2761904761904762, "overlap_size": 232 } }, { "data": { "id": "0fb9b333-6d6a-4625-b039-e9dee56963e8", "source": "753dfe0f-6f61-4a49-90c1-4b3708665dbf", "target": "1cf1ee8e-77cc-4e7d-8939-adf02b347c93", "similarity_coefficient": 0.4348327566320646, "overlap_size": 377 } }, { "data": { "id": "1f83aaec-7c58-41a8-ba68-de6f1dcf2e09", "source": "753dfe0f-6f61-4a49-90c1-4b3708665dbf", "target": "0391f2bd-352e-4b49-b8cc-414c80dffff9", "similarity_coefficient": 0.2602040816326531, "overlap_size": 204 } }, { "data": { "id": "fdac4a57-9147-4bf9-ba54-e6901ac64b38", "source": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.35507246376811596, "overlap_size": 49 } }, { "data": { "id": "29320704-f64c-4eaa-8914-61c286566e5d", "source": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "1c7779cf-728e-49ba-a9e0-32ed8e5b8b0d", "source": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.696969696969697, "overlap_size": 46 } }, { "data": { "id": "7a25a594-de6a-46d7-862f-601a7d0cdec9", "source": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49 } }, { "data": { "id": "13b698ae-fa93-48fd-9f22-dcc574ef8a01", "source": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.7796610169491526, "overlap_size": 46 } }, { "data": { "id": "3f28b5f8-c5ab-4e7f-97b0-1fd9bd954215", "source": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.30625, "overlap_size": 49 } }, { "data": { "id": "b06e4674-1712-44cf-8b4a-0d7e7008a46b", "source": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.532608695652174, "overlap_size": 49 } }, { "data": { "id": "3ae659ca-c6ec-4319-a81b-7e153e8486cc", "source": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49 } }, { "data": { "id": "cb4aafd6-2675-4bb8-b2c4-77b1b30af65d", "source": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.7352941176470589, "overlap_size": 50 } }, { "data": { "id": "73429e8f-4f03-42f8-a253-6bf7b40d4da4", "source": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49 } }, { "data": { "id": "7a23b0d1-b8af-4907-9bd2-5fd3f2289c02", "source": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.875, "overlap_size": 49 } }, { "data": { "id": "02a78ead-93f7-4f0c-876c-3cba7918c6c2", "source": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "64fcd3e3-d612-445b-bea8-980c48fad307", "source": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.5287356321839081, "overlap_size": 46 } }, { "data": { "id": "94724ccb-af43-417b-994f-bc6b33214ced", "source": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49 } }, { "data": { "id": "59a4a9fe-e541-4271-a18a-62a7c796cdac", "source": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.7931034482758621, "overlap_size": 46 } }, { "data": { "id": "585b760a-e15e-49cf-9e60-c207b69fdc03", "source": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49 } }, { "data": { "id": "f0a1154c-e676-496b-b730-52a15b3801b4", "source": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49 } }, { "data": { "id": "b11c8165-0ea1-461d-9a6f-161fc774c0ad", "source": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.45544554455445546, "overlap_size": 46 } }, { "data": { "id": "8c98cd2c-75bb-42c8-9784-ba4ff5238f6a", "source": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49 } }, { "data": { "id": "f34ad742-290e-49f9-a2ec-9d1155e711e6", "source": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "00d16d1b-b5a0-4f32-8f96-ce3c683f8128", "source": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.30303030303030304, "overlap_size": 50 } }, { "data": { "id": "0d57154d-c363-411e-bbe4-a754c24f4676", "source": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.9245283018867925, "overlap_size": 49 } }, { "data": { "id": "eb2b119c-a1ba-4149-81c9-685f955631a4", "source": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.42857142857142855, "overlap_size": 24 } }, { "data": { "id": "12793176-c288-4129-8e72-6f131e75f566", "source": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.3898305084745763, "overlap_size": 46 } }, { "data": { "id": "c626387c-10c7-46f8-9dd6-cbd92e26c3d6", "source": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.28488372093023256, "overlap_size": 49 } }, { "data": { "id": "9f640126-2ebf-4bc0-8b5a-94fd3f29f6b9", "source": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "65159e49-302f-4d07-a795-635b42bd4406", "source": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "27810f15-0d09-463a-858e-5ba50aef5c00", "source": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.4049586776859504, "overlap_size": 49 } }, { "data": { "id": "f8e3a22e-932d-4797-b995-7c65c0a303d3", "source": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49 } }, { "data": { "id": "0aec1f40-ae64-44c0-bc89-d191cc48baf1", "source": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.2692307692307692, "overlap_size": 49 } }, { "data": { "id": "0dbb8a0a-0bc0-4c62-bb1c-683b6d24c016", "source": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.3828125, "overlap_size": 49 } }, { "data": { "id": "3b7269c7-55fe-4452-b7f3-6d45b51a8ea9", "source": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.362962962962963, "overlap_size": 49 } }, { "data": { "id": "271229aa-1cfb-4557-b88a-840c48f22b7f", "source": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.3602941176470588, "overlap_size": 49 } }, { "data": { "id": "146e6861-c005-430b-8d53-f177a606a570", "source": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.2777777777777778, "overlap_size": 55 } }, { "data": { "id": "3f01b67f-652b-45da-894c-4c6e4f4c6eaa", "source": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.44660194174757284, "overlap_size": 46 } }, { "data": { "id": "0a414ec7-91a8-40fb-800c-d533d6209801", "source": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49 } }, { "data": { "id": "d93d8f0d-d83a-4a65-b833-a8d00bff2086", "source": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.3511450381679389, "overlap_size": 46 } }, { "data": { "id": "cddf9fa8-b8c8-4368-bc6a-4d491fb2f554", "source": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49 } }, { "data": { "id": "1510223f-9eea-472e-88b3-9aa429320933", "source": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49 } }, { "data": { "id": "8001e3da-aa97-4043-a760-f661d8937eec", "source": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.49, "overlap_size": 49 } }, { "data": { "id": "e453f7b6-abeb-41eb-96c3-55e1d416643d", "source": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.494949494949495, "overlap_size": 49 } }, { "data": { "id": "b5906677-1bd2-4d74-a55b-3139618b469c", "source": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.41818181818181815, "overlap_size": 46 } }, { "data": { "id": "ae04f38c-8b29-4b56-88b4-92ce1368721d", "source": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.3263888888888889, "overlap_size": 47 } }, { "data": { "id": "254e6c50-f3d0-4d7d-afe0-8ffe10f2b97e", "source": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.45098039215686275, "overlap_size": 46 } }, { "data": { "id": "46d7538f-b6ef-4f02-a45a-69d7c89f49a9", "source": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.39285714285714285, "overlap_size": 55 } }, { "data": { "id": "1c850a2f-e4e4-4b73-8d5b-a1889dea6822", "source": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.4375, "overlap_size": 49 } }, { "data": { "id": "6b58cade-dc6d-4ea5-b299-5eb25557e44c", "source": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.44144144144144143, "overlap_size": 49 } }, { "data": { "id": "427851a7-c5de-4575-a6b8-5558f2edc63c", "source": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.35766423357664234, "overlap_size": 49 } }, { "data": { "id": "f8d5154d-579e-4a48-9757-72081ad605ec", "source": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49 } }, { "data": { "id": "cc2001ef-fc8b-4ee2-a052-d15fc23256df", "source": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.3333333333333333, "overlap_size": 52 } }, { "data": { "id": "11b19485-b41d-4b66-a976-cff573546314", "source": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49 } }, { "data": { "id": "0bc317f0-9744-4671-861c-1581d4131f4c", "source": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.3333333333333333, "overlap_size": 49 } }, { "data": { "id": "d980eb8d-8933-4a78-b4ac-18d7d77d9678", "source": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.4336283185840708, "overlap_size": 49 } }, { "data": { "id": "7ec56c67-6c5b-4f8f-b4c8-88f642ba19b4", "source": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.296969696969697, "overlap_size": 49 } }, { "data": { "id": "a3d8c631-5057-4f46-8af9-5f9545b862cd", "source": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49 } }, { "data": { "id": "a59960d9-4eec-498d-bbbc-06e4dc40a15f", "source": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.3202614379084967, "overlap_size": 49 } }, { "data": { "id": "b147d2ee-e708-47f3-b792-f3b128a5a0d9", "source": "1f3bae29-3389-49e1-b7c5-500f8b863b80", "target": "c65a4eb7-a904-4015-aa2a-7953d2147d48", "similarity_coefficient": 0.2727272727272727, "overlap_size": 18 } }, { "data": { "id": "81d2caa7-8296-4304-a2a7-27c7e1c5d516", "source": "1f3bae29-3389-49e1-b7c5-500f8b863b80", "target": "3edf3fff-995c-4924-b458-d068cbd087e5", "similarity_coefficient": 0.3103448275862069, "overlap_size": 18 } }, { "data": { "id": "e4861200-3b7f-4736-bed0-843a3facc7df", "source": "1f3bae29-3389-49e1-b7c5-500f8b863b80", "target": "01c3d342-02d3-438f-8b89-10cc523c45ee", "similarity_coefficient": 0.4473684210526316, "overlap_size": 17 } }, { "data": { "id": "8997986d-a2bd-4787-9d13-2e51c7e8efc2", "source": "36267ac9-7439-4c18-997b-02dda8ff0f28", "target": "0f02ba1f-1396-4f05-83a1-e85fa76ec8eb", "similarity_coefficient": 0.9666666666666667, "overlap_size": 58 } }, { "data": { "id": "049bb105-d411-437f-9d30-9f46a1a35259", "source": "de92908d-dff2-4bac-827a-0606c7dd1158", "target": "c0f585a3-ef38-4c45-8a8a-28aeb1006ea5", "similarity_coefficient": 0.4358974358974359, "overlap_size": 17 } }, { "data": { "id": "42c2329d-8bcd-44de-a388-136594965db3", "source": "f97b81a8-1862-43e0-8494-7bbe4766e167", "target": "384f6879-1c32-46c3-8b2b-7c9ded001526", "similarity_coefficient": 0.5638297872340425, "overlap_size": 106 } }, { "data": { "id": "aa0dd46a-fb6a-436b-b964-b8143b051a97", "source": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.28431372549019607, "overlap_size": 58 } }, { "data": { "id": "0731547e-35a0-410c-9ace-3c70d7386bf4", "source": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.2751322751322751, "overlap_size": 52 } }, { "data": { "id": "2249587e-034b-452f-9bda-34edc1efa114", "source": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.28342245989304815, "overlap_size": 53 } }, { "data": { "id": "0c4b671c-043f-4116-be18-d9c853a0b638", "source": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.28708133971291866, "overlap_size": 60 } }, { "data": { "id": "7d08638f-e3ce-4cb6-8226-bcfad4b67196", "source": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.25, "overlap_size": 49 } }, { "data": { "id": "2697c954-1f36-4ce1-963d-510d62c5a70b", "source": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.28191489361702127, "overlap_size": 53 } }, { "data": { "id": "0d552fd9-b92b-4ed6-a868-742f71aac178", "source": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.273224043715847, "overlap_size": 50 } }, { "data": { "id": "15ca0a09-719a-44fb-8e6e-5fb0791b295d", "source": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.273224043715847, "overlap_size": 50 } }, { "data": { "id": "f05d58e9-ee44-47a9-a497-f8703fdb850f", "source": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.2648648648648649, "overlap_size": 49 } }, { "data": { "id": "1f62f560-8898-4e8b-ad1b-f86beac0b8e2", "source": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.2692307692307692, "overlap_size": 49 } }, { "data": { "id": "bb0859ea-2bad-45d0-bb52-f66458f34e9d", "source": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.2887700534759358, "overlap_size": 54 } }, { "data": { "id": "1be7d5c7-e2ab-48cb-9fd2-502abcf6c4df", "source": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.25654450261780104, "overlap_size": 49 } }, { "data": { "id": "7b12fd85-6d41-41d1-835b-e7eb7f327024", "source": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.2648648648648649, "overlap_size": 49 } }, { "data": { "id": "2ba468ab-b469-4367-ac10-128fe3d1e88e", "source": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "target": "7ca2e3de-9935-4044-acc8-9703f93d0780", "similarity_coefficient": 0.31990521327014215, "overlap_size": 135 } }, { "data": { "id": "0f007d1f-1170-499f-97d1-c167953586f1", "source": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.27979274611398963, "overlap_size": 54 } }, { "data": { "id": "5f8f3bb9-f2a8-457d-8018-3063b3601453", "source": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.2887700534759358, "overlap_size": 54 } }, { "data": { "id": "4d1b027d-c37d-4928-acc2-3f54c183ea1d", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49 } }, { "data": { "id": "fb08f74c-8a60-4dd3-95f1-75fc7f126bf8", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.4, "overlap_size": 24 } }, { "data": { "id": "540511bf-491d-43e0-820d-cbdbad749d59", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.28823529411764703, "overlap_size": 49 } }, { "data": { "id": "5e49b154-d58e-42af-97c7-76f381d3c1c2", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49 } }, { "data": { "id": "c807ca1e-5590-45b0-b76c-69d8a2145641", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.8596491228070176, "overlap_size": 49 } }, { "data": { "id": "3ff22e83-ab9e-40ae-ac81-a51bca381408", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49 } }, { "data": { "id": "6eb8936d-6186-44a9-8949-bfae21b23497", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49 } }, { "data": { "id": "7b7ce47f-372b-4d2f-97ff-be55b6aba8ef", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.2784090909090909, "overlap_size": 49 } }, { "data": { "id": "343cd0cd-7d0d-4ff2-8467-a4bc3bc37691", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.7419354838709677, "overlap_size": 46 } }, { "data": { "id": "6fa598d6-1e1e-49a9-a2d2-3a827b757867", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.3770491803278688, "overlap_size": 46 } }, { "data": { "id": "d9d7d632-2b12-4a30-a2ed-24a60a58d6bf", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.5054945054945055, "overlap_size": 46 } }, { "data": { "id": "5b4ae87e-134d-4953-8b67-5999acfa5580", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49 } }, { "data": { "id": "e51390b5-0bef-4320-8821-27d8bbe6b797", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "0807e0b7-7435-4062-80eb-409efc63db89", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49 } }, { "data": { "id": "657e3728-09ff-4300-8fba-fa95e0e95e79", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.26063829787234044, "overlap_size": 49 } }, { "data": { "id": "75dc915d-4f57-44df-93b8-52aef5ba31a0", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.4380952380952381, "overlap_size": 46 } }, { "data": { "id": "ec0b7380-bf8d-45e9-b3e3-4427d29f8f18", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49 } }, { "data": { "id": "e195933d-444f-4d73-9c47-ddbb04f6432e", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.6571428571428571, "overlap_size": 46 } }, { "data": { "id": "00fbe331-4cb5-4523-890d-3cd3a459ffbf", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49 } }, { "data": { "id": "e460ffaa-305e-4484-9b85-d86cd86dd988", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49 } }, { "data": { "id": "43fd3406-fdc5-4fef-84b8-a7d06a68f921", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.8615384615384616, "overlap_size": 56 } }, { "data": { "id": "691ff45e-6362-44e3-99bc-9ad245ab40ac", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.29878048780487804, "overlap_size": 49 } }, { "data": { "id": "650b8286-7dc9-4489-9245-64e48ae4e722", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.4148148148148148, "overlap_size": 56 } }, { "data": { "id": "9b419d8e-9f08-4f54-86e1-26b72815a62f", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.8305084745762712, "overlap_size": 49 } }, { "data": { "id": "4ecc6978-232a-4d13-a6fd-22738d190e2d", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49 } }, { "data": { "id": "f43cdbce-2620-46be-a0fb-55a79f7a4d52", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.9491525423728814, "overlap_size": 56 } }, { "data": { "id": "43005ac3-ac23-4da2-a14b-af1882f9b035", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.7424242424242424, "overlap_size": 49 } }, { "data": { "id": "5db33b4b-d18a-412e-946a-f48fac84f90a", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.7301587301587301, "overlap_size": 46 } }, { "data": { "id": "fbed7976-cef5-44b5-8f85-23b6721b93d2", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.6712328767123288, "overlap_size": 49 } }, { "data": { "id": "d40a8d4f-bf59-4c43-ba0d-36954e1fff94", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49 } }, { "data": { "id": "83275379-ebd7-4ada-95fd-5fddd1dd9899", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.392, "overlap_size": 49 } }, { "data": { "id": "ad8acaf9-5c9e-41cb-a725-a2eccdab7290", "source": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.4336283185840708, "overlap_size": 49 } }, { "data": { "id": "1600cf17-01b4-4730-9acd-c1103c282dc2", "source": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.26506024096385544, "overlap_size": 88 } }, { "data": { "id": "b03bb9d3-66c7-4fe9-97d9-9351c6025034", "source": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.3561643835616438, "overlap_size": 78 } }, { "data": { "id": "563aceb5-ac4c-477f-bf2d-992e4aa6aa88", "source": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.3561643835616438, "overlap_size": 78 } }, { "data": { "id": "fa2f9216-31cf-44c7-b1e5-ff966a465914", "source": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.4018264840182648, "overlap_size": 88 } }, { "data": { "id": "86405c06-c742-4cee-b3b4-40c38ebfd5cd", "source": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.35772357723577236, "overlap_size": 88 } }, { "data": { "id": "7bea291d-3eaf-4e57-b805-b4ee013e229b", "source": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.3561643835616438, "overlap_size": 78 } }, { "data": { "id": "fa787fea-d119-4779-80d6-6f9321e2be81", "source": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.3561643835616438, "overlap_size": 78 } }, { "data": { "id": "e88f3410-10d8-42aa-a494-f5b79b519066", "source": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.37656903765690375, "overlap_size": 90 } }, { "data": { "id": "f7859d10-5665-4ce5-9919-24e9c8b28a84", "source": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.3561643835616438, "overlap_size": 78 } }, { "data": { "id": "710ebb8b-e1fe-468c-8755-bc86e4743448", "source": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.31095406360424027, "overlap_size": 88 } }, { "data": { "id": "1722b16f-aae9-4d11-8618-8cde35d9a3e1", "source": "a31fb885-5d37-4b2b-a6e5-41936b5cecc1", "target": "f97b81a8-1862-43e0-8494-7bbe4766e167", "similarity_coefficient": 0.30114942528735633, "overlap_size": 131 } }, { "data": { "id": "0bcb9026-ac98-47f6-b4dc-873263a8cfdf", "source": "9ee865fe-76a5-4d86-a7e1-0ab08de7033d", "target": "e5310ce1-66db-419c-99f7-0aef3b11c3a0", "similarity_coefficient": 0.2727272727272727, "overlap_size": 15 } }, { "data": { "id": "5bb11b18-c7e8-4d64-9ae2-da41024cab75", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.4152542372881356, "overlap_size": 49 } }, { "data": { "id": "1c72f96e-4e83-412e-b73d-dee244b58cb9", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49 } }, { "data": { "id": "d894a14a-b939-49da-bb09-7b941f1db383", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.3125, "overlap_size": 25 } }, { "data": { "id": "9227db52-3225-492a-bb25-65e13fc9c00f", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.3953488372093023, "overlap_size": 68 } }, { "data": { "id": "e3b23e4d-dbb6-49ac-9b41-52002a741064", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49 } }, { "data": { "id": "9d78505e-1e61-45ee-a4db-4b4426fc2848", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.3828125, "overlap_size": 49 } }, { "data": { "id": "39917498-40f0-4a6a-a5c5-57230daadb8b", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49 } }, { "data": { "id": "615fa238-72d7-436d-aaf6-87b77c881ef6", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.41379310344827586, "overlap_size": 72 } }, { "data": { "id": "3d91b094-4d30-4c2d-ac7f-1a79b3d1dba3", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.5, "overlap_size": 63 } }, { "data": { "id": "a8132d1c-f7f8-47a8-af15-8ce1747ee043", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.4107142857142857, "overlap_size": 46 } }, { "data": { "id": "41df9d0b-8486-41d7-939b-ab287512c51c", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.36507936507936506, "overlap_size": 46 } }, { "data": { "id": "a546872a-2d89-457c-b74c-7eabaa3f4e7a", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.3858267716535433, "overlap_size": 49 } }, { "data": { "id": "090e2039-9340-4810-b621-f9e04fde455f", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.6125, "overlap_size": 49 } }, { "data": { "id": "3cec01be-63d4-45b1-ade8-c872252a66e7", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "605e80dc-2433-424d-bd72-80aef7f19316", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.532608695652174, "overlap_size": 49 } }, { "data": { "id": "5736036f-50d0-493f-ae79-5a3d97980313", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.5542168674698795, "overlap_size": 46 } }, { "data": { "id": "34a98eea-4635-438c-af1d-a41ba88cfdb7", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49 } }, { "data": { "id": "69e7ba0a-19c7-4106-9eef-98c92b4d715e", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49 } }, { "data": { "id": "d05b902f-e890-4c1a-a2b4-085af90da37d", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.3006134969325153, "overlap_size": 49 } }, { "data": { "id": "c90e6156-e406-40b6-8444-344bc944c841", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49 } }, { "data": { "id": "7213aa84-7a7f-4cd1-af26-c531a9794085", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.9036144578313253, "overlap_size": 75 } }, { "data": { "id": "469af88b-af5a-4a6d-a904-3c60816af585", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.5393258426966292, "overlap_size": 48 } }, { "data": { "id": "e37b8cee-6981-4ae4-88ab-ffa1bb29d865", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.270935960591133, "overlap_size": 55 } }, { "data": { "id": "5a958442-2f0b-4a90-86f8-a16286507e9f", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.43103448275862066, "overlap_size": 50 } }, { "data": { "id": "05fbf735-d09e-49cf-9669-8f2e2951c0d8", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "fb172c5a-c242-43e8-98a4-bc060890f253", "similarity_coefficient": 0.2737226277372263, "overlap_size": 75 } }, { "data": { "id": "189159de-3401-494e-bdba-225cb359ee52", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.5476190476190477, "overlap_size": 46 } }, { "data": { "id": "bc429b7e-6217-45dd-ab3a-29d2cc5e406f", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.5543478260869565, "overlap_size": 51 } }, { "data": { "id": "8689909c-cc71-419d-931a-b2742f397a95", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49 } }, { "data": { "id": "fd82c343-dcee-4db6-b196-5f2466125986", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.40963855421686746, "overlap_size": 68 } }, { "data": { "id": "1a593c7f-5426-4281-b1a3-29c95c00e5ac", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49 } }, { "data": { "id": "6b6c812c-fca0-424c-a8b7-884d83c152e5", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.875, "overlap_size": 77 } }, { "data": { "id": "7c08f51e-3622-4169-8ba1-369ecc6f81c6", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49 } }, { "data": { "id": "d0727266-57ce-4412-8f8f-ac18f7fb3c64", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.3656716417910448, "overlap_size": 49 } }, { "data": { "id": "2922342f-4222-493d-b998-6bc06b1b8d9d", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.3541666666666667, "overlap_size": 51 } }, { "data": { "id": "12fd93b8-39eb-4179-b0b7-49c65cd6fc09", "source": "057d3a77-a0db-4b92-9c08-a000751d7954", "target": "080d7999-edb3-459d-97a1-0b0c699425b5", "similarity_coefficient": 0.31896551724137934, "overlap_size": 74 } }, { "data": { "id": "0c2db5a6-807f-46c8-8a18-994febe5c397", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.26744186046511625, "overlap_size": 46 } }, { "data": { "id": "9aa84cff-ef6a-4d17-8744-b380e5ba2415", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.6666666666666666, "overlap_size": 46 } }, { "data": { "id": "e5877175-46ea-4da4-a550-828596854a63", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.38016528925619836, "overlap_size": 46 } }, { "data": { "id": "7fc32e37-b902-41a5-9a16-78f0263a4e47", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.676056338028169, "overlap_size": 48 } }, { "data": { "id": "9a4173fd-d278-40a6-b368-87c4793bf75c", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.5789473684210527, "overlap_size": 55 } }, { "data": { "id": "1d2b4094-92c8-41b8-84ae-6dc7cb655585", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.46464646464646464, "overlap_size": 46 } }, { "data": { "id": "38f6755e-68b6-4fc9-b021-b28f11632a20", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.5348837209302325, "overlap_size": 46 } }, { "data": { "id": "f888c912-8e04-442d-8b0d-2762277caad4", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.6666666666666666, "overlap_size": 46 } }, { "data": { "id": "caaa2271-2579-43a3-aa4d-456ecce8ebfd", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.7540983606557377, "overlap_size": 46 } }, { "data": { "id": "f04ff0fa-3d21-4286-b1af-b7c9a8160226", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49 } }, { "data": { "id": "c661177f-7a57-414f-be6c-bf20be5e7fcb", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.4519230769230769, "overlap_size": 47 } }, { "data": { "id": "f640b8b3-e462-4c92-a8a8-3ae8c3eb72b3", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.7076923076923077, "overlap_size": 46 } }, { "data": { "id": "83739404-277e-40ad-95e9-6e4798cffd7d", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.4067796610169492, "overlap_size": 24 } }, { "data": { "id": "9be72ba2-33ca-4106-983c-4297d9485b71", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.6666666666666666, "overlap_size": 46 } }, { "data": { "id": "43a8ec9b-e410-43fa-8d5f-9d9b9932a6b8", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.27710843373493976, "overlap_size": 46 } }, { "data": { "id": "873d1c72-3bb1-4f3f-82aa-81a260df14d8", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.4742268041237113, "overlap_size": 46 } }, { "data": { "id": "9a874662-6d6a-44d1-9910-abf438d166ff", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.25842696629213485, "overlap_size": 46 } }, { "data": { "id": "868d1211-8e1d-4de0-9ad0-d39adb38183f", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.6764705882352942, "overlap_size": 46 } }, { "data": { "id": "1edb0bc0-7796-4b38-a3e7-c8d9cf399e20", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.7419354838709677, "overlap_size": 46 } }, { "data": { "id": "4fdabca8-9de4-4b7c-b45d-d08c516252e7", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.3380281690140845, "overlap_size": 48 } }, { "data": { "id": "b03173f5-6448-48e5-8dc0-2bcdf8700375", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.5111111111111111, "overlap_size": 46 } }, { "data": { "id": "4bf4d2af-76a8-4af0-a83d-3c4463de0b48", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.4392523364485981, "overlap_size": 47 } }, { "data": { "id": "21e4f440-f47a-4fbf-854f-9fb1b93b2823", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.7540983606557377, "overlap_size": 46 } }, { "data": { "id": "c6d10eeb-40f1-4e6a-adc0-e268d3425252", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.6216216216216216, "overlap_size": 46 } }, { "data": { "id": "28451618-849c-4ba4-ae26-63d0f4f6462b", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.4, "overlap_size": 46 } }, { "data": { "id": "d935c533-40d2-49e4-a85a-063b962601e6", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.7419354838709677, "overlap_size": 46 } }, { "data": { "id": "5307697f-530a-41c2-97c6-7b3b4f77a8c0", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.6575342465753424, "overlap_size": 48 } }, { "data": { "id": "54c3a997-22eb-420b-b659-d86585b479ce", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.5280898876404494, "overlap_size": 47 } }, { "data": { "id": "5418cef6-eaa2-4ee2-8ebc-527fa0639ba1", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.6764705882352942, "overlap_size": 46 } }, { "data": { "id": "257ad5af-8608-40de-9544-c2328e4d8e78", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.42201834862385323, "overlap_size": 46 } }, { "data": { "id": "db8a70b3-eada-46a8-958f-032622bf6b79", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.46938775510204084, "overlap_size": 46 } }, { "data": { "id": "e46c1d03-7a35-4c71-a1dc-daf6ae5ee437", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.7796610169491526, "overlap_size": 46 } }, { "data": { "id": "a872fa49-9d54-420b-91e4-79993d320b3c", "source": "3136e982-a9dc-495e-87e3-01fe57148a84", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.6666666666666666, "overlap_size": 46 } }, { "data": { "id": "7f030bcf-82c4-4053-a593-16a0c7bffdd1", "source": "e445c615-3699-4210-b6b5-e615a4e82d2c", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "574994d6-45bc-4643-90ce-afa66f7c4112", "source": "e445c615-3699-4210-b6b5-e615a4e82d2c", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78 } }, { "data": { "id": "9a7d75fd-99f5-449c-a4bd-f7de3450ae20", "source": "e445c615-3699-4210-b6b5-e615a4e82d2c", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.3561643835616438, "overlap_size": 78 } }, { "data": { "id": "4109dfd0-02eb-4072-87b3-b32280dbdabb", "source": "e445c615-3699-4210-b6b5-e615a4e82d2c", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "6ab4bb65-5636-40a8-90d9-0c7022f2ec25", "source": "e445c615-3699-4210-b6b5-e615a4e82d2c", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "d4a76e41-bc53-4f08-8bce-3dd35c243393", "source": "e445c615-3699-4210-b6b5-e615a4e82d2c", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "b60e9cbf-ca39-404a-a0fd-7df0bba34c34", "source": "e445c615-3699-4210-b6b5-e615a4e82d2c", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "3e52898e-4d2f-4981-a837-e1bd5f95395b", "source": "e445c615-3699-4210-b6b5-e615a4e82d2c", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.5, "overlap_size": 78 } }, { "data": { "id": "08349e3c-237b-4ce7-91fd-af5356208e7f", "source": "e445c615-3699-4210-b6b5-e615a4e82d2c", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78 } }, { "data": { "id": "2a4603cf-4965-451c-aa98-77253602b4fd", "source": "e445c615-3699-4210-b6b5-e615a4e82d2c", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "3b3a3cad-eb9b-4400-8b6d-22505f4534a8", "source": "e445c615-3699-4210-b6b5-e615a4e82d2c", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31 } }, { "data": { "id": "ca9b7e1f-0326-44db-a5a5-dbdbf0a99805", "source": "e445c615-3699-4210-b6b5-e615a4e82d2c", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.6554621848739496, "overlap_size": 78 } }, { "data": { "id": "d9c6b71a-5020-4b7f-857b-6f36a0ab76f8", "source": "e445c615-3699-4210-b6b5-e615a4e82d2c", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "796d7cb7-a54f-41c7-8a1b-1244db078eea", "source": "bdfea551-b193-4b01-ae9c-25648ca3c317", "target": "0391f2bd-352e-4b49-b8cc-414c80dffff9", "similarity_coefficient": 0.26053639846743293, "overlap_size": 204 } }, { "data": { "id": "4e771125-4519-4a27-9b9b-e0137b3c5ddd", "source": "bdfea551-b193-4b01-ae9c-25648ca3c317", "target": "b15aeda3-04c6-41d3-b5bf-b302b6105dc0", "similarity_coefficient": 0.2545854732208364, "overlap_size": 347 } }, { "data": { "id": "a0368619-aad4-4917-9e6c-4ce97d84a206", "source": "bdfea551-b193-4b01-ae9c-25648ca3c317", "target": "753dfe0f-6f61-4a49-90c1-4b3708665dbf", "similarity_coefficient": 0.5408062930186824, "overlap_size": 550 } }, { "data": { "id": "23805ff5-351e-4275-bf5a-21372043c255", "source": "bdfea551-b193-4b01-ae9c-25648ca3c317", "target": "3c6595b7-4300-40c2-9b8b-be0dea463aa6", "similarity_coefficient": 0.3320235756385069, "overlap_size": 338 } }, { "data": { "id": "1e46cfde-e3fa-4a3d-8445-508164b6a152", "source": "bdfea551-b193-4b01-ae9c-25648ca3c317", "target": "1cf1ee8e-77cc-4e7d-8939-adf02b347c93", "similarity_coefficient": 0.30842105263157893, "overlap_size": 293 } }, { "data": { "id": "5e8c51b1-bf8d-4305-97a5-828439a43d3f", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.30625, "overlap_size": 49 } }, { "data": { "id": "f7b05fd4-b5be-4040-99d4-989717d2537e", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49 } }, { "data": { "id": "a267d386-641b-4c42-9628-52d2768f56a5", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.532608695652174, "overlap_size": 49 } }, { "data": { "id": "1feed9dc-5572-4a83-8cd7-68352dfdfc31", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49 } }, { "data": { "id": "87c6d391-00d1-4d4d-9caf-2e1634941c11", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.273224043715847, "overlap_size": 50 } }, { "data": { "id": "d20aa937-dc3b-48b5-99ea-b563ba510d43", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.696969696969697, "overlap_size": 46 } }, { "data": { "id": "cf46cbdf-9fe7-4fa7-9665-4663cf3100de", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.34074074074074073, "overlap_size": 46 } }, { "data": { "id": "65a9614a-a5e8-47fd-81c7-d3fe5a9a2600", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49 } }, { "data": { "id": "424a65a4-9e46-4873-be40-ef045b1df918", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.7878787878787878, "overlap_size": 52 } }, { "data": { "id": "e3909f7a-970f-404b-86bd-d7733a8c2c26", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.35507246376811596, "overlap_size": 49 } }, { "data": { "id": "29b0d483-5a1e-4625-82ee-0d0d44958b14", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "6a97d8dc-d982-4c8d-bf20-a4482ca4573c", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.8909090909090909, "overlap_size": 49 } }, { "data": { "id": "974de009-ead7-4e8d-9a60-b147ab678ba8", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.494949494949495, "overlap_size": 49 } }, { "data": { "id": "902066de-8242-4824-aae0-9e1d1929cce4", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49 } }, { "data": { "id": "c4d0c8e7-2f76-42f1-868e-0cf1f760c2bb", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.28488372093023256, "overlap_size": 49 } }, { "data": { "id": "751eaf5d-cbe0-48f8-8d9d-43f6fb0f698e", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49 } }, { "data": { "id": "ba0d2403-4e00-4fc6-9e6f-28b1247cc93b", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.7796610169491526, "overlap_size": 46 } }, { "data": { "id": "8bb6d550-f907-4046-bec4-1446390b5d18", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.9245283018867925, "overlap_size": 49 } }, { "data": { "id": "a110c01a-c6ab-42d3-8f94-93863bec1cba", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.42857142857142855, "overlap_size": 24 } }, { "data": { "id": "0dcbc757-e063-407c-afca-fbdb71a1fb35", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.8305084745762712, "overlap_size": 49 } }, { "data": { "id": "58f3c651-3e70-40f3-b586-54dedf28168b", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.4049586776859504, "overlap_size": 49 } }, { "data": { "id": "d3e20800-807e-451d-b886-66cd399c7cc3", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "9138d4b4-c6ea-4eda-97ad-a06999b7738f", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.29518072289156627, "overlap_size": 49 } }, { "data": { "id": "206841ed-9cf0-41dc-8ac1-2658ad4cf2a9", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49 } }, { "data": { "id": "de7f1484-8ae6-4710-8199-5a157658a8a7", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.6125, "overlap_size": 49 } }, { "data": { "id": "aa220944-b69b-4c37-b0f6-abab73208c93", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.7931034482758621, "overlap_size": 46 } }, { "data": { "id": "0e530137-c276-4454-8441-41562c825e11", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.3898305084745763, "overlap_size": 46 } }, { "data": { "id": "1f020af7-a147-4a48-aa8b-c6f55e965918", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49 } }, { "data": { "id": "72610b53-9d3c-44a5-b39b-9a92d9a370c8", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.47, "overlap_size": 47 } }, { "data": { "id": "3dc05c6e-43c3-48f4-a1b0-689aadcbf411", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.7540983606557377, "overlap_size": 46 } }, { "data": { "id": "a20b1981-e01c-4aaf-8ea6-775278814fed", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49 } }, { "data": { "id": "9d834960-6214-43ec-8664-01d147c33806", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.5287356321839081, "overlap_size": 46 } }, { "data": { "id": "151f8ce0-5ddf-466c-b333-4d962d8044b6", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "fe7e1ace-dcf5-4612-992d-fb52fc22f61e", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "3732e872-1d5b-4a7f-89f2-3f95632aac79", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.875, "overlap_size": 49 } }, { "data": { "id": "a48dc04b-a1b0-48ef-8604-2f5da2929e32", "source": "e5659519-1ff7-448c-915e-aabcc7ee6854", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "e370abc7-7c59-4e4d-90c7-c681dbfdc31c", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.4482758620689655, "overlap_size": 65 } }, { "data": { "id": "3dc2c4eb-e94f-4cb4-9566-f85f8caa80d7", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.3382352941176471, "overlap_size": 46 } }, { "data": { "id": "d2015324-3d40-474a-a0fa-773ada774d50", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.26744186046511625, "overlap_size": 46 } }, { "data": { "id": "ad17daa0-c30b-4f10-afea-1280e4f66137", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.34074074074074073, "overlap_size": 46 } }, { "data": { "id": "64f3aeeb-2e2d-4d3c-9ada-8ddf4217fb43", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.3108108108108108, "overlap_size": 46 } }, { "data": { "id": "c26d7cf4-130f-4a5d-a121-61936c4b484c", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.32167832167832167, "overlap_size": 46 } }, { "data": { "id": "3c36fb8e-6e9c-4fca-8b00-f4e6b074e009", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.33098591549295775, "overlap_size": 47 } }, { "data": { "id": "73904823-4735-44eb-9ea5-1f7cc1d2258b", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.30057803468208094, "overlap_size": 52 } }, { "data": { "id": "362175f8-fd8d-467d-81ba-3f87c21fa174", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.34074074074074073, "overlap_size": 46 } }, { "data": { "id": "bd4cf2e5-7992-4562-b42d-7ada9dcd2931", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "fb172c5a-c242-43e8-98a4-bc060890f253", "similarity_coefficient": 0.33666666666666667, "overlap_size": 101 } }, { "data": { "id": "6a6d4c25-0dde-4771-829a-5ff084db414f", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.323943661971831, "overlap_size": 46 } }, { "data": { "id": "419b13ad-09e5-4e93-945c-645f551e5793", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.4276315789473684, "overlap_size": 65 } }, { "data": { "id": "8076e698-785a-4719-ae53-f59ee8c5b970", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.821656050955414, "overlap_size": 129 } }, { "data": { "id": "2f78b409-5184-4c6f-898c-f60be0b0b61c", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.32167832167832167, "overlap_size": 46 } }, { "data": { "id": "8cde84c4-4624-4d15-8de6-5776f6f4cbbe", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.2658959537572254, "overlap_size": 46 } }, { "data": { "id": "b79fd709-9872-41c7-b217-bf461cb83c73", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.46733668341708545, "overlap_size": 93 } }, { "data": { "id": "2bd767c9-f7e3-4c13-b688-66216b253085", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "690d048a-ce8c-4e43-9ab0-ed9976703ad9", "similarity_coefficient": 0.29296875, "overlap_size": 75 } }, { "data": { "id": "12bd1e9d-dec9-46a4-b8ce-aefa17fb56e3", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.33093525179856115, "overlap_size": 46 } }, { "data": { "id": "32a25a80-1ce6-4ca8-8966-793c87d0d4c9", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.2680851063829787, "overlap_size": 63 } }, { "data": { "id": "686c82d8-39e4-4910-bb99-5fd0cb8ef0d5", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.4405594405594406, "overlap_size": 63 } }, { "data": { "id": "1d0db5cc-e38f-4f5c-af40-96647be479e0", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.3458646616541353, "overlap_size": 46 } }, { "data": { "id": "a0ff9997-6283-4fc1-8e38-7c3de3b7779f", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.3129251700680272, "overlap_size": 46 } }, { "data": { "id": "2d38ff0c-0e07-467c-ac09-a4eb474a3ebf", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.323943661971831, "overlap_size": 46 } }, { "data": { "id": "eb348b3e-937b-4da9-ad9e-300d960a46af", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.49019607843137253, "overlap_size": 75 } }, { "data": { "id": "42da6a49-5bf4-49b9-b00e-40f9eee8d867", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.31756756756756754, "overlap_size": 47 } }, { "data": { "id": "32a2ac7b-f687-4fee-b511-2e561c06d9fc", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.25842696629213485, "overlap_size": 46 } }, { "data": { "id": "7d1af25c-5cca-4250-903f-9de1c7febc58", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.32167832167832167, "overlap_size": 46 } }, { "data": { "id": "ceef7772-8332-44b9-9922-4fb634775cfb", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.25136612021857924, "overlap_size": 46 } }, { "data": { "id": "bfe673b8-dab5-46ef-9b71-eabfdfeb7969", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "62ef1f23-d43a-4f50-9fd5-9932c61259e7", "similarity_coefficient": 0.29296875, "overlap_size": 75 } }, { "data": { "id": "ba751254-0529-4369-80ed-c634b8803daf", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.2804878048780488, "overlap_size": 46 } }, { "data": { "id": "a0cf8602-2aa6-4cb1-8917-8c9d672fc5ec", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.3382352941176471, "overlap_size": 46 } }, { "data": { "id": "2d253c80-d524-4221-84f2-6ab9381593af", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.3333333333333333, "overlap_size": 46 } }, { "data": { "id": "3def1d7f-57ac-4b35-8735-332ec65f01df", "source": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.8682170542635659, "overlap_size": 112 } }, { "data": { "id": "fe1eb0ca-0470-4e4d-8401-5b6add91bd1d", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.4108527131782946, "overlap_size": 53 } }, { "data": { "id": "42f6fa74-4e81-47f4-8785-e3355f5d2f9c", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.4444444444444444, "overlap_size": 48 } }, { "data": { "id": "e34264b9-6136-474a-99b3-06b5f213d61c", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.4672897196261682, "overlap_size": 50 } }, { "data": { "id": "31702d2a-0c0e-4c49-9d02-a8f91e2649e2", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49 } }, { "data": { "id": "2edf19fc-b76f-49d5-b126-008b7f57293e", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.4807692307692308, "overlap_size": 50 } }, { "data": { "id": "6f3f283a-bf25-4691-8917-b3008e982897", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.5148514851485149, "overlap_size": 52 } }, { "data": { "id": "be1400c2-fdb1-4a03-8683-1b85a0c1e909", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49 } }, { "data": { "id": "b349a8b4-93c3-48cd-b7e7-1f1c7d2122bb", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "690d048a-ce8c-4e43-9ab0-ed9976703ad9", "similarity_coefficient": 0.25206611570247933, "overlap_size": 61 } }, { "data": { "id": "679f4645-864b-4187-8c57-1b14bc5eaeb9", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.2815533980582524, "overlap_size": 58 } }, { "data": { "id": "cdc9eff5-ac02-4b73-b314-eb083e57ea93", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.48148148148148145, "overlap_size": 52 } }, { "data": { "id": "adc04ea9-97db-4e9b-ba98-02bf3150a09f", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.3897058823529412, "overlap_size": 53 } }, { "data": { "id": "662be5cf-bc34-442b-b4e7-8c0b8d7cdbdc", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.310126582278481, "overlap_size": 49 } }, { "data": { "id": "3382642c-ebe8-4172-a07d-ecfa87e1f531", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.35185185185185186, "overlap_size": 57 } }, { "data": { "id": "c20c14c9-da93-4fc5-b43d-bda7d5f020ca", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.25853658536585367, "overlap_size": 53 } }, { "data": { "id": "aea63eb2-600b-4d0a-b8ea-ac2f7402c3b0", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.3310810810810811, "overlap_size": 49 } }, { "data": { "id": "2ada299c-d28b-4d1a-96ce-e9be0d11d78c", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.45454545454545453, "overlap_size": 50 } }, { "data": { "id": "4b9bc1b8-58fe-4c3f-a2b5-1a46f4b5291c", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.47706422018348627, "overlap_size": 52 } }, { "data": { "id": "def4b812-61f1-4198-a9b2-9c04be41d3f7", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49 } }, { "data": { "id": "b13b2de2-f00e-44cf-bf96-a6d16a9ce070", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.42735042735042733, "overlap_size": 50 } }, { "data": { "id": "4ea7c641-0e26-4f12-9c4c-b79433cdbbc1", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.25, "overlap_size": 46 } }, { "data": { "id": "b66bb8d3-98cc-4d6d-ab5d-cc6da6863aa8", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.35714285714285715, "overlap_size": 50 } }, { "data": { "id": "a36b48d9-7924-4c90-a0f6-7ce71ef9c247", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.43103448275862066, "overlap_size": 50 } }, { "data": { "id": "e3bbc92a-9872-41b1-8585-8a9510df9093", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49 } }, { "data": { "id": "e1670894-9804-4732-af75-7b09c58821b2", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.4224137931034483, "overlap_size": 49 } }, { "data": { "id": "923898f5-8d26-494a-9f0b-721a82506877", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.4375, "overlap_size": 49 } }, { "data": { "id": "ea4f7497-e0b8-4124-aacd-e6e3775265dd", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.5046728971962616, "overlap_size": 54 } }, { "data": { "id": "63e4126f-278e-4314-b2ed-5ed6d1c6d564", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.34507042253521125, "overlap_size": 49 } }, { "data": { "id": "56d55232-4445-46fe-92a3-b6271dc912e6", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.3111111111111111, "overlap_size": 56 } }, { "data": { "id": "b740e3ac-8d65-4161-ad82-7f070b3f2d9f", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49 } }, { "data": { "id": "7e83e13b-6939-4fe2-9a15-88d4eec298ae", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.2754491017964072, "overlap_size": 46 } }, { "data": { "id": "5b9d57ba-8406-4c33-a4bb-0f1fdfda32ab", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.35172413793103446, "overlap_size": 51 } }, { "data": { "id": "b189b682-e590-4ce3-b0cb-76694f86a723", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.348993288590604, "overlap_size": 52 } }, { "data": { "id": "6ab3c8f7-40ed-46b1-a101-aee360cbaeaf", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.32450331125827814, "overlap_size": 49 } }, { "data": { "id": "aa49ad64-1bbc-45ae-a20f-04d0ae83425b", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.5046728971962616, "overlap_size": 54 } }, { "data": { "id": "e0d726f9-4d26-4360-8a1f-c605b3d32d51", "source": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.4, "overlap_size": 52 } }, { "data": { "id": "2293b181-f4cc-4837-9ee4-eb578ecea536", "source": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31 } }, { "data": { "id": "856833ee-441d-4387-aa3b-9a979a81112c", "source": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78 } }, { "data": { "id": "9c9c7a6f-c3f5-4e0e-af98-a43591d93817", "source": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.6694915254237288, "overlap_size": 79 } }, { "data": { "id": "089ca212-8c1c-4b05-ac83-3ab3e3023b93", "source": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.3561643835616438, "overlap_size": 78 } }, { "data": { "id": "3b292ba6-0489-46e7-aa1c-dbf305491209", "source": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "12ff2240-c061-4333-aa25-5160c41f7863", "source": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "c940f780-039f-4c39-92b2-1540453e3ff4", "source": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "ed7e6384-6b1f-427e-9868-29495a785df2", "source": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "1872a242-6082-4214-baeb-2ebf3695f480", "source": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "40af98bc-99a2-4587-bd11-16a60c5389e3", "source": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "de4c877f-944e-451d-81da-3e052769c378", "source": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "7aefb05f-6675-4a61-aa69-f92195e4ef8d", "source": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.5, "overlap_size": 78 } }, { "data": { "id": "a2d98c21-3507-4e36-816a-938e58f0fb11", "source": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "e935e5b3-70e9-470e-bdf0-85a2c2a67ea0", "source": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78 } }, { "data": { "id": "36bffd53-f25f-4f03-8efa-2aeb55864632", "source": "ac084453-3de1-49b9-838a-c34e34084aa3", "target": "dfc986b3-0550-4514-b5cd-3ffb33a16784", "similarity_coefficient": 0.6666666666666666, "overlap_size": 34 } }, { "data": { "id": "572fb4ba-e563-4a98-aeb9-bc9359dd34f5", "source": "82c3d253-ed57-4346-b09e-42eeccffa60c", "target": "50f5ed90-547c-4a0e-adaa-f5a2d8d8b12e", "similarity_coefficient": 0.9038461538461539, "overlap_size": 47 } }, { "data": { "id": "be77bd33-220c-47dc-9667-8950c287d722", "source": "82c3d253-ed57-4346-b09e-42eeccffa60c", "target": "8cca4f4e-2ae2-4c4c-b02d-77f747e2cda7", "similarity_coefficient": 0.7692307692307693, "overlap_size": 40 } }, { "data": { "id": "8d71967b-b0a2-47ca-9021-1bac123d3a96", "source": "3281366b-d686-411d-9f64-ce068dbc793e", "target": "f1e91a76-6b23-4bee-adcf-402d41b3bc76", "similarity_coefficient": 0.3684210526315789, "overlap_size": 49 } }, { "data": { "id": "4eee578c-66d5-4e70-b9e1-7dbffeefcb77", "source": "3281366b-d686-411d-9f64-ce068dbc793e", "target": "8dd921b1-19f9-43d1-8809-18810bb72059", "similarity_coefficient": 0.362962962962963, "overlap_size": 49 } }, { "data": { "id": "e4731812-2efc-4b07-b177-7eaeb63a5f44", "source": "3281366b-d686-411d-9f64-ce068dbc793e", "target": "a0c0e8e0-96ed-4337-bfcc-f28c17708a1a", "similarity_coefficient": 0.2768361581920904, "overlap_size": 49 } }, { "data": { "id": "e3fffbd3-1960-465a-b8cb-ee27cd3f9bf0", "source": "3281366b-d686-411d-9f64-ce068dbc793e", "target": "bddc7abb-9752-416f-b00f-1f6d4745c048", "similarity_coefficient": 0.3898305084745763, "overlap_size": 23 } }, { "data": { "id": "ab9209ef-73e2-438c-8e18-5f9d1b17b92f", "source": "37b7a69c-a26b-4d83-8f43-9b42b9c6168e", "target": "8dd921b1-19f9-43d1-8809-18810bb72059", "similarity_coefficient": 0.5686274509803921, "overlap_size": 87 } }, { "data": { "id": "4f5e9d1b-7fcb-43a0-8fa8-6b50913b6105", "source": "37b7a69c-a26b-4d83-8f43-9b42b9c6168e", "target": "f1e91a76-6b23-4bee-adcf-402d41b3bc76", "similarity_coefficient": 0.4166666666666667, "overlap_size": 70 } }, { "data": { "id": "7b332256-8f0e-42db-abb4-8460f1780b06", "source": "37b7a69c-a26b-4d83-8f43-9b42b9c6168e", "target": "a0c0e8e0-96ed-4337-bfcc-f28c17708a1a", "similarity_coefficient": 0.5932203389830508, "overlap_size": 105 } }, { "data": { "id": "358cdc35-9ba5-4ba9-875d-751e0dcf6884", "source": "37b7a69c-a26b-4d83-8f43-9b42b9c6168e", "target": "3281366b-d686-411d-9f64-ce068dbc793e", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49 } }, { "data": { "id": "4b31c7d7-3d2b-481e-a8ac-49e8bf2ed5b1", "source": "70dc2a0f-dec6-4de4-b504-61c65a84c8d7", "target": "74b5bd36-84dd-4786-be05-c3fad4a46c33", "similarity_coefficient": 0.37538461538461537, "overlap_size": 122 } }, { "data": { "id": "13ca1aa9-468d-44e9-8cf3-9054a9040bdf", "source": "70dc2a0f-dec6-4de4-b504-61c65a84c8d7", "target": "f40412c6-5ce1-4780-a6f2-a92ff01d974a", "similarity_coefficient": 0.28440366972477066, "overlap_size": 124 } }, { "data": { "id": "3224d871-64b9-4c9f-93d9-76ff38d0b6b3", "source": "70dc2a0f-dec6-4de4-b504-61c65a84c8d7", "target": "23948dfa-a18c-440c-b1eb-1c4b5a4a17c4", "similarity_coefficient": 0.6988636363636364, "overlap_size": 123 } }, { "data": { "id": "d682594d-23a2-4883-981a-39a991a02a50", "source": "70dc2a0f-dec6-4de4-b504-61c65a84c8d7", "target": "a8d12184-7c64-42ff-aa0d-40a047927f81", "similarity_coefficient": 0.868421052631579, "overlap_size": 132 } }, { "data": { "id": "b438d770-a5e9-44d6-b099-8278f0d42301", "source": "70dc2a0f-dec6-4de4-b504-61c65a84c8d7", "target": "c167249a-c4f0-4f9e-9508-38b203d5aa6f", "similarity_coefficient": 0.717391304347826, "overlap_size": 132 } }, { "data": { "id": "fa205ace-a5e2-4582-9e94-14ba2ac3fc7d", "source": "328ca91a-a7c1-42f5-be44-d20d3d77dd18", "target": "5229abb8-d817-4b27-8b54-4679f2c8353e", "similarity_coefficient": 0.25051334702258726, "overlap_size": 122 } }, { "data": { "id": "b5cfed0a-eeaf-45e7-b0c3-a894e2f165e2", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.4152542372881356, "overlap_size": 49 } }, { "data": { "id": "4d7a7875-c38b-41c0-a37a-b56fef59d343", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.6133333333333333, "overlap_size": 46 } }, { "data": { "id": "9f0fc4af-7ca8-4b9b-97df-daca25a11e7a", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.44660194174757284, "overlap_size": 46 } }, { "data": { "id": "8fe54a94-1c6c-43c3-acc8-25d85cdac5e7", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.620253164556962, "overlap_size": 49 } }, { "data": { "id": "8b497a79-9569-4943-8451-ea37bdad3285", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.5974025974025974, "overlap_size": 46 } }, { "data": { "id": "aa969be7-a384-4bc4-86a8-0ce6e8dae181", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.7727272727272727, "overlap_size": 68 } }, { "data": { "id": "fac9a707-2469-4525-8fa0-902cafa169cc", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.4117647058823529, "overlap_size": 49 } }, { "data": { "id": "4a345ae0-b4aa-4299-85f0-be14c705868b", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "d38e2a8d-f1b2-438e-ac18-87b3cde5d29b", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.5609756097560976, "overlap_size": 46 } }, { "data": { "id": "c5065504-926e-4954-94b5-9598772a9faa", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49 } }, { "data": { "id": "cdabc29f-f498-465c-bfc0-3d3968b9a502", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.8170731707317073, "overlap_size": 67 } }, { "data": { "id": "03aa6d2f-30da-4edd-9063-bef303a05735", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49 } }, { "data": { "id": "c1d44ab7-5eed-4968-a062-7687085604e1", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.620253164556962, "overlap_size": 49 } }, { "data": { "id": "2805a6d9-4e17-4715-be7f-1c34ef23de67", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49 } }, { "data": { "id": "97ae644d-662e-4e9d-85b2-f7396a9cdff8", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49 } }, { "data": { "id": "e2ab3b58-810e-48e1-ad9e-cd508856c68a", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.8831168831168831, "overlap_size": 68 } }, { "data": { "id": "ed448037-9e56-4a6a-8964-6472faafe386", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.3181818181818182, "overlap_size": 49 } }, { "data": { "id": "7b54789c-6b46-488c-8a3a-110d77119340", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.6216216216216216, "overlap_size": 46 } }, { "data": { "id": "8fb8301b-ecae-4e9b-b9d5-7b914c44749f", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.39316239316239315, "overlap_size": 46 } }, { "data": { "id": "b5313b60-526d-4b0d-b949-aa2c9fcd970b", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49 } }, { "data": { "id": "e4935759-32cf-46ad-b81d-43bd05842e12", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.40236686390532544, "overlap_size": 68 } }, { "data": { "id": "e9261b68-49a1-4c38-b607-f19fe17d9e18", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49 } }, { "data": { "id": "c2d75f4a-cae1-4cc4-91a3-5e77423f9f69", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49 } }, { "data": { "id": "3f8f63ca-326c-4bf5-a349-fd34d13ce82f", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.4083333333333333, "overlap_size": 49 } }, { "data": { "id": "caaa22e5-ba42-4a09-b59b-f8975fc9b1b9", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49 } }, { "data": { "id": "bb8eb6ee-ab71-4bfe-a79a-d87a1571cf15", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.4701492537313433, "overlap_size": 63 } }, { "data": { "id": "bea1aa38-762f-4bdb-968c-c87d9527bc29", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.5384615384615384, "overlap_size": 63 } }, { "data": { "id": "6a2fe177-7fe0-4276-a164-3222b44ea248", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49 } }, { "data": { "id": "49414246-3647-4223-b687-b5ccc390d2be", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.41509433962264153, "overlap_size": 66 } }, { "data": { "id": "0f060a01-5143-41c6-bbce-b592a9fed2ee", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49 } }, { "data": { "id": "1a137a81-fd57-4c46-b5e3-3093032b859d", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49 } }, { "data": { "id": "3a3b2e5d-56fb-4e46-8176-78497e105c4c", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.352112676056338, "overlap_size": 25 } }, { "data": { "id": "3358a315-ad16-41d8-969e-a905551e5108", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49 } }, { "data": { "id": "1caccfa7-3260-4c72-a1aa-e313b8e5b081", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.620253164556962, "overlap_size": 49 } }, { "data": { "id": "7a4de9e2-b913-4280-a60c-3453b8f17f7c", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.4, "overlap_size": 66 } }, { "data": { "id": "41eee778-af91-4b9d-85db-ee1998f9add6", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.392, "overlap_size": 49 } }, { "data": { "id": "6d6a13c5-62bc-4b20-87e3-f43dcd3bcac2", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.35766423357664234, "overlap_size": 49 } }, { "data": { "id": "b4fbf376-b4c9-4e81-905c-27a92868d56b", "source": "2397885d-fcd1-4e58-97b3-225648b8409e", "target": "080d7999-edb3-459d-97a1-0b0c699425b5", "similarity_coefficient": 0.29694323144104806, "overlap_size": 68 } }, { "data": { "id": "9e571834-a266-40f4-a530-9e1432b0254e", "source": "8eb0c7aa-fc44-4379-8cb1-37fee77ce2c4", "target": "080d7999-edb3-459d-97a1-0b0c699425b5", "similarity_coefficient": 0.4017467248908297, "overlap_size": 92 } }, { "data": { "id": "2ba0c4d8-3d46-49a0-b682-71fc002d55d6", "source": "8eb0c7aa-fc44-4379-8cb1-37fee77ce2c4", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.5443786982248521, "overlap_size": 92 } }, { "data": { "id": "b598c24d-0ce5-4ef8-b23d-234cd6e028fd", "source": "8eb0c7aa-fc44-4379-8cb1-37fee77ce2c4", "target": "fb172c5a-c242-43e8-98a4-bc060890f253", "similarity_coefficient": 0.3382352941176471, "overlap_size": 92 } }, { "data": { "id": "00d04b91-ec1f-4765-bd29-9b3ea53140b3", "source": "04609060-2e47-4d26-96a3-82cc75c3d54f", "target": "b72d3cc2-23bf-47b1-b752-834d65b0a968", "similarity_coefficient": 0.8333333333333334, "overlap_size": 20 } }, { "data": { "id": "fd1e4dad-f1c1-4216-9e71-b828d80dda9c", "source": "6b1a95ef-3536-4d95-962f-3d14a4550825", "target": "bdfea551-b193-4b01-ae9c-25648ca3c317", "similarity_coefficient": 0.40357598978288634, "overlap_size": 316 } }, { "data": { "id": "f6b708e0-97c5-42bd-be6c-195b1ebe7b36", "source": "6b1a95ef-3536-4d95-962f-3d14a4550825", "target": "0391f2bd-352e-4b49-b8cc-414c80dffff9", "similarity_coefficient": 0.6455696202531646, "overlap_size": 204 } }, { "data": { "id": "39d77477-16f6-4e87-a2c1-7c2089374858", "source": "6b1a95ef-3536-4d95-962f-3d14a4550825", "target": "753dfe0f-6f61-4a49-90c1-4b3708665dbf", "similarity_coefficient": 0.4030612244897959, "overlap_size": 316 } }, { "data": { "id": "01363dd8-bbe5-460b-9d09-9ba9d34fcff1", "source": "684c84ca-ba13-4d6a-bb35-83a6b7505837", "target": "3edf3fff-995c-4924-b458-d068cbd087e5", "similarity_coefficient": 0.9736842105263158, "overlap_size": 37 } }, { "data": { "id": "690ca00a-106c-4335-9fc4-b10fd9414e5f", "source": "684c84ca-ba13-4d6a-bb35-83a6b7505837", "target": "c65a4eb7-a904-4015-aa2a-7953d2147d48", "similarity_coefficient": 0.8043478260869565, "overlap_size": 37 } }, { "data": { "id": "d920f57c-e1b3-485a-b74c-f3f9267edc2e", "source": "684c84ca-ba13-4d6a-bb35-83a6b7505837", "target": "1f3bae29-3389-49e1-b7c5-500f8b863b80", "similarity_coefficient": 0.29310344827586204, "overlap_size": 17 } }, { "data": { "id": "31dd3552-de41-4101-b69e-00401d614baa", "source": "7db9d43a-1d18-4be6-8d7e-f5e096178a4f", "target": "b15aeda3-04c6-41d3-b5bf-b302b6105dc0", "similarity_coefficient": 1, "overlap_size": 927 } }, { "data": { "id": "fc641395-cc2d-48f3-ac62-2423826f1e84", "source": "7db9d43a-1d18-4be6-8d7e-f5e096178a4f", "target": "bdfea551-b193-4b01-ae9c-25648ca3c317", "similarity_coefficient": 0.2545854732208364, "overlap_size": 347 } }, { "data": { "id": "ab7d8c08-6b59-4a3d-b572-b79a252fc943", "source": "97dfa99a-4455-4b8d-b217-b0f3604459b9", "target": "d55293b0-3d8d-406f-a31a-c364d22340bd", "similarity_coefficient": 0.3658940397350993, "overlap_size": 221 } }, { "data": { "id": "b2266b82-6047-48e5-bf55-5a0742e6a9bf", "source": "97dfa99a-4455-4b8d-b217-b0f3604459b9", "target": "bdfea551-b193-4b01-ae9c-25648ca3c317", "similarity_coefficient": 0.259763851044505, "overlap_size": 286 } }, { "data": { "id": "beb083d9-2b31-468d-b930-d690a7925c59", "source": "97dfa99a-4455-4b8d-b217-b0f3604459b9", "target": "6c6b6cc6-ea73-49f4-a8c2-e59e83fc2446", "similarity_coefficient": 0.6556291390728477, "overlap_size": 396 } }, { "data": { "id": "6cec2b7b-be9e-47b6-9317-fc461cceb296", "source": "7861fd51-2caf-44e2-b4cb-7e64f8c0b51f", "target": "1cf1ee8e-77cc-4e7d-8939-adf02b347c93", "similarity_coefficient": 0.3665943600867679, "overlap_size": 169 } }, { "data": { "id": "aa75c912-9ba3-40b7-9f3d-b1ff3dc59ae2", "source": "7861fd51-2caf-44e2-b4cb-7e64f8c0b51f", "target": "3c6595b7-4300-40c2-9b8b-be0dea463aa6", "similarity_coefficient": 0.29442508710801396, "overlap_size": 169 } }, { "data": { "id": "19dc473d-4c80-4739-b940-69e5e0fa69b7", "source": "7861fd51-2caf-44e2-b4cb-7e64f8c0b51f", "target": "b570f307-7c80-461e-9c1b-ff264f6ff8af", "similarity_coefficient": 0.37537537537537535, "overlap_size": 125 } }, { "data": { "id": "da0633c1-7902-4f22-9fb6-1e00ddb6db7e", "source": "916b518e-1a95-45db-be11-8e45704c11f1", "target": "270d34e3-98eb-42ab-86e0-908a069943c3", "similarity_coefficient": 0.26495726495726496, "overlap_size": 31 } }, { "data": { "id": "da538086-fbc7-4ca1-96d3-4cbd00847eb3", "source": "916b518e-1a95-45db-be11-8e45704c11f1", "target": "5229abb8-d817-4b27-8b54-4679f2c8353e", "similarity_coefficient": 0.2931596091205212, "overlap_size": 90 } }, { "data": { "id": "750e3a7b-801e-47b4-acfc-3f6f35594b2a", "source": "916b518e-1a95-45db-be11-8e45704c11f1", "target": "b570f307-7c80-461e-9c1b-ff264f6ff8af", "similarity_coefficient": 0.3125, "overlap_size": 90 } }, { "data": { "id": "b914f2d0-96ec-489e-9423-d75b33643883", "source": "916b518e-1a95-45db-be11-8e45704c11f1", "target": "7861fd51-2caf-44e2-b4cb-7e64f8c0b51f", "similarity_coefficient": 0.27450980392156865, "overlap_size": 56 } }, { "data": { "id": "43089d90-6f1b-49d5-9e38-01c7cfd8b924", "source": "904648c2-551b-426e-815e-74ced2374458", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.2784090909090909, "overlap_size": 49 } }, { "data": { "id": "e1e621d5-d391-407d-b2e4-c0f527b1a174", "source": "904648c2-551b-426e-815e-74ced2374458", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.25274725274725274, "overlap_size": 46 } }, { "data": { "id": "bb1ac59a-0893-480f-92cd-60d515668867", "source": "904648c2-551b-426e-815e-74ced2374458", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.25742574257425743, "overlap_size": 52 } }, { "data": { "id": "6eec6496-ecc2-4f78-a429-691afff8a15b", "source": "904648c2-551b-426e-815e-74ced2374458", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.25925925925925924, "overlap_size": 49 } }, { "data": { "id": "85e6a8bb-364d-4552-9d0e-07698f44716b", "source": "904648c2-551b-426e-815e-74ced2374458", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.2722222222222222, "overlap_size": 49 } }, { "data": { "id": "18d69e4c-93fe-4cd0-9a41-2017691ef3a9", "source": "904648c2-551b-426e-815e-74ced2374458", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.30337078651685395, "overlap_size": 54 } }, { "data": { "id": "1ed7a035-5d26-43d3-a744-a5b9a6e17f9e", "source": "904648c2-551b-426e-815e-74ced2374458", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.2594594594594595, "overlap_size": 48 } }, { "data": { "id": "b798bbcd-b434-4a1e-98b7-f563e00062b8", "source": "904648c2-551b-426e-815e-74ced2374458", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.2784090909090909, "overlap_size": 49 } }, { "data": { "id": "722da914-a5fb-403c-aa79-17c263af79e3", "source": "904648c2-551b-426e-815e-74ced2374458", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.2523809523809524, "overlap_size": 53 } }, { "data": { "id": "c7b67df8-c6f7-403f-91bc-e17f5ddb2208", "source": "904648c2-551b-426e-815e-74ced2374458", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.3089887640449438, "overlap_size": 55 } }, { "data": { "id": "5abf6ec9-c832-49b0-aad7-ecc0a8b8dbf1", "source": "904648c2-551b-426e-815e-74ced2374458", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.2696629213483146, "overlap_size": 48 } }, { "data": { "id": "2cc2e365-89e6-4ffe-8eb3-aa559eb0c95a", "source": "904648c2-551b-426e-815e-74ced2374458", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.2552083333333333, "overlap_size": 49 } }, { "data": { "id": "3193115b-be3d-49d2-a3af-ed984e196e76", "source": "904648c2-551b-426e-815e-74ced2374458", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.26063829787234044, "overlap_size": 49 } }, { "data": { "id": "5cadb241-a385-43b4-bfc1-65748352d7f5", "source": "904648c2-551b-426e-815e-74ced2374458", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.28160919540229884, "overlap_size": 49 } }, { "data": { "id": "0989a570-8a64-46b3-944a-cf73feb22713", "source": "904648c2-551b-426e-815e-74ced2374458", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.2784090909090909, "overlap_size": 49 } }, { "data": { "id": "1ae1fab2-3aa3-4e0c-be8e-ca152a008f77", "source": "904648c2-551b-426e-815e-74ced2374458", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.2768361581920904, "overlap_size": 49 } }, { "data": { "id": "3dd2e4fd-2ca0-4cab-be62-1df63bf50b1f", "source": "904648c2-551b-426e-815e-74ced2374458", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.287292817679558, "overlap_size": 52 } }, { "data": { "id": "5b4dd90c-1690-48b3-b4f4-6611aaf99249", "source": "904648c2-551b-426e-815e-74ced2374458", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.2677595628415301, "overlap_size": 49 } }, { "data": { "id": "f09bcda0-8937-4838-a96c-ccfc48fffaf0", "source": "904648c2-551b-426e-815e-74ced2374458", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.287292817679558, "overlap_size": 52 } }, { "data": { "id": "9731c36c-341b-4072-8b64-8d0819ecf43d", "source": "904648c2-551b-426e-815e-74ced2374458", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.2578947368421053, "overlap_size": 49 } }, { "data": { "id": "e2f90960-f7e0-483b-b99e-1a337a2d4b84", "source": "bcc2c85a-8e79-4b12-bc2d-a6f7bc205bd8", "target": "90f6b6c4-3e27-47a9-87a0-25ceb66a9b48", "similarity_coefficient": 0.2982456140350877, "overlap_size": 17 } }, { "data": { "id": "63822736-be03-4ecc-a731-5d248243d2d5", "source": "6d05fb4b-2380-4626-8ebc-1ed88b0da496", "target": "de077ab2-2978-4986-a338-5f664401cd65", "similarity_coefficient": 1, "overlap_size": 22 } }, { "data": { "id": "131fa2b8-3f2f-4bbc-84f1-bbdd6acd3aac", "source": "6d05fb4b-2380-4626-8ebc-1ed88b0da496", "target": "d51806b8-78ae-4131-ace1-d9be5fa5560a", "similarity_coefficient": 1, "overlap_size": 22 } }, { "data": { "id": "010e0ce3-c9d9-460d-8a3c-bcc56d5df624", "source": "6d05fb4b-2380-4626-8ebc-1ed88b0da496", "target": "d38e07b4-dd9a-4f3d-9662-82e180f80cdf", "similarity_coefficient": 1, "overlap_size": 22 } }, { "data": { "id": "b64a5e9b-3d8a-49d0-a4c4-7745d746e692", "source": "6d05fb4b-2380-4626-8ebc-1ed88b0da496", "target": "c82aea32-0e25-4f32-aeb3-64b4548d9190", "similarity_coefficient": 1, "overlap_size": 22 } }, { "data": { "id": "9255017b-2292-4ee3-8cc8-d09cc8c1f15b", "source": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "6a2af77e-63cb-4f66-9c11-3f305f0f8367", "source": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "06ca6a52-3f55-4014-abca-58422947326f", "source": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.26811594202898553, "overlap_size": 37 } }, { "data": { "id": "6290ea2a-1ba8-43c1-a4e9-6c988e157697", "source": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.45414847161572053, "overlap_size": 104 } }, { "data": { "id": "f62595e1-900a-4813-baf2-17d4ecc19f9f", "source": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.6521739130434783, "overlap_size": 90 } }, { "data": { "id": "04be3953-eb14-43f2-b706-560ad88672b3", "source": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "f73a6bfe-0d0b-4985-8c6a-462c2b308dff", "source": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.26717557251908397, "overlap_size": 35 } }, { "data": { "id": "247ecadd-2cb5-49e3-bcc7-ed46acd89bd0", "source": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.6068965517241379, "overlap_size": 88 } }, { "data": { "id": "8b00f64c-1633-44a1-9414-4c94e7313e4c", "source": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "e9e3e286-c2bc-4b89-80d8-21231047e06e", "source": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "ebc6ccaa-7330-4c3e-8714-33e5c59adfdd", "source": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "371fef52-a7f7-41f9-b7e9-55156d6abd2a", "source": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.7457627118644068, "overlap_size": 88 } }, { "data": { "id": "e09c5a38-56c2-4fea-a209-b265483abf68", "source": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.4835164835164835, "overlap_size": 88 } }, { "data": { "id": "5d0c8193-0ead-4232-8d1e-26c5b26fd9b1", "source": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.38095238095238093, "overlap_size": 88 } }, { "data": { "id": "8fd5386e-ad9a-4e66-97a0-830e98d0e167", "source": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "118bb2eb-a7b5-4337-8123-c86a8c5b2f7d", "source": "acb95097-45dd-4bf4-aa47-a787e38591d4", "target": "cddebf8c-4f9a-4ec6-b7c9-83312c9d1c51", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "4342c405-f560-4317-ba95-052a3d41611e", "source": "acb95097-45dd-4bf4-aa47-a787e38591d4", "target": "e4351080-e123-4e93-98a7-49cdd09e0c1c", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "f64eaa66-7298-4c72-9564-b344b09977da", "source": "acb95097-45dd-4bf4-aa47-a787e38591d4", "target": "8f2732b7-bdc9-40f5-8845-a8d9beca3b22", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "53495a02-74b0-43fc-82df-910ca8a8c938", "source": "acb95097-45dd-4bf4-aa47-a787e38591d4", "target": "3baa2895-d41a-4b91-925b-906637d521ee", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "618ee6cb-2b9e-4790-8d5f-3e569a68503b", "source": "acb95097-45dd-4bf4-aa47-a787e38591d4", "target": "ba7799c9-3170-4d60-b811-31eae5312965", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "c25af6d4-3693-48b2-9996-a9fb6b04e052", "source": "859be89e-4625-43a6-b4a6-ab2434d64e10", "target": "af5b9119-d987-4c84-8d56-e08a68613613", "similarity_coefficient": 0.36464088397790057, "overlap_size": 66 } }, { "data": { "id": "255bd385-a90f-4afa-bc6f-9625d9a3b485", "source": "db958270-8c68-47a1-8245-d553c49a126f", "target": "7861fd51-2caf-44e2-b4cb-7e64f8c0b51f", "similarity_coefficient": 0.4161490683229814, "overlap_size": 134 } }, { "data": { "id": "81286bef-2152-441d-a8b3-ac6f776fb3c4", "source": "db958270-8c68-47a1-8245-d553c49a126f", "target": "916b518e-1a95-45db-be11-8e45704c11f1", "similarity_coefficient": 0.3146853146853147, "overlap_size": 90 } }, { "data": { "id": "712f341c-1f75-437b-88a8-fc4f143462fc", "source": "db958270-8c68-47a1-8245-d553c49a126f", "target": "1cf1ee8e-77cc-4e7d-8939-adf02b347c93", "similarity_coefficient": 0.6217391304347826, "overlap_size": 286 } }, { "data": { "id": "4cfbfe80-5f47-4e8e-8ed7-d7838b199c92", "source": "db958270-8c68-47a1-8245-d553c49a126f", "target": "3c6595b7-4300-40c2-9b8b-be0dea463aa6", "similarity_coefficient": 0.49912739965095987, "overlap_size": 286 } }, { "data": { "id": "00f30c6b-3b3b-4193-8831-552fa11587f7", "source": "db958270-8c68-47a1-8245-d553c49a126f", "target": "b570f307-7c80-461e-9c1b-ff264f6ff8af", "similarity_coefficient": 0.8107255520504731, "overlap_size": 257 } }, { "data": { "id": "a34487c2-9f66-4d3c-b4d7-9a324b372611", "source": "db958270-8c68-47a1-8245-d553c49a126f", "target": "0b287a39-9629-4455-988e-99703244b949", "similarity_coefficient": 0.39969135802469136, "overlap_size": 259 } }, { "data": { "id": "81b8e09c-456b-449e-99f8-92a5ec5f761f", "source": "db958270-8c68-47a1-8245-d553c49a126f", "target": "753dfe0f-6f61-4a49-90c1-4b3708665dbf", "similarity_coefficient": 0.2647754137115839, "overlap_size": 224 } }, { "data": { "id": "592ab8a0-1975-497f-b9e6-fa1683dff9fb", "source": "158daadb-15d5-44c8-9670-d08fe9ebb4c3", "target": "37b7a69c-a26b-4d83-8f43-9b42b9c6168e", "similarity_coefficient": 0.38181818181818183, "overlap_size": 105 } }, { "data": { "id": "300e7b52-8cac-4d31-9503-1d4f2a4bc9cd", "source": "158daadb-15d5-44c8-9670-d08fe9ebb4c3", "target": "bdfea551-b193-4b01-ae9c-25648ca3c317", "similarity_coefficient": 0.30778739184178, "overlap_size": 249 } }, { "data": { "id": "1eccaab0-f1d5-4f3f-8d78-35184e17430d", "source": "158daadb-15d5-44c8-9670-d08fe9ebb4c3", "target": "f1e91a76-6b23-4bee-adcf-402d41b3bc76", "similarity_coefficient": 0.42657342657342656, "overlap_size": 122 } }, { "data": { "id": "e354cd43-a0e6-4ac3-af7b-0186960d727f", "source": "158daadb-15d5-44c8-9670-d08fe9ebb4c3", "target": "30eaa919-7be0-486b-9bd3-32ffbfc93216", "similarity_coefficient": 0.29818181818181816, "overlap_size": 82 } }, { "data": { "id": "94fe4295-2230-4f45-9bad-17addc56c187", "source": "158daadb-15d5-44c8-9670-d08fe9ebb4c3", "target": "753dfe0f-6f61-4a49-90c1-4b3708665dbf", "similarity_coefficient": 0.26523297491039427, "overlap_size": 222 } }, { "data": { "id": "2ca806e5-6858-469a-a2b3-40bc3e0bfcf7", "source": "158daadb-15d5-44c8-9670-d08fe9ebb4c3", "target": "a0c0e8e0-96ed-4337-bfcc-f28c17708a1a", "similarity_coefficient": 0.6436363636363637, "overlap_size": 177 } }, { "data": { "id": "a1aa3494-d891-4aa9-bb0f-0b3219ca7e14", "source": "158daadb-15d5-44c8-9670-d08fe9ebb4c3", "target": "8dd921b1-19f9-43d1-8809-18810bb72059", "similarity_coefficient": 0.4909090909090909, "overlap_size": 135 } }, { "data": { "id": "3738afc4-e97c-49c9-8819-013840a59d11", "source": "5cf53f7f-7020-41ee-afc2-39cddd2e408a", "target": "cf42d51c-5732-4ead-ad14-b8af5a7ee209", "similarity_coefficient": 0.7818181818181819, "overlap_size": 86 } }, { "data": { "id": "3030d065-dbf2-4761-8409-0e871915177b", "source": "14d3686e-e930-42df-864a-3191fd5d7a54", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "6ca7fea9-dc7f-46bd-a15a-f44786bd80bd", "source": "14d3686e-e930-42df-864a-3191fd5d7a54", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "755129b2-2205-47c6-822f-5645680ef69e", "source": "14d3686e-e930-42df-864a-3191fd5d7a54", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "69d92fb0-d1f9-4984-a3f9-44429adb02be", "source": "14d3686e-e930-42df-864a-3191fd5d7a54", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "43822cd2-0379-40d5-af0c-007f367fabd8", "source": "14d3686e-e930-42df-864a-3191fd5d7a54", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "ae7724eb-6e09-4b7e-a61d-f833b62718df", "source": "14d3686e-e930-42df-864a-3191fd5d7a54", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.6694915254237288, "overlap_size": 79 } }, { "data": { "id": "d620dc85-a7db-4a55-b2b8-e81af736997b", "source": "14d3686e-e930-42df-864a-3191fd5d7a54", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "5ce03e72-8b73-46f3-aedd-2d076cbf722d", "source": "14d3686e-e930-42df-864a-3191fd5d7a54", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31 } }, { "data": { "id": "d650df7a-74b9-4efd-bf57-14b4611086bd", "source": "14d3686e-e930-42df-864a-3191fd5d7a54", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "d9f4683d-a3a4-4f6e-b50b-8c7892ba6214", "source": "14d3686e-e930-42df-864a-3191fd5d7a54", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "0aa4da65-4a9c-45d4-be8d-6408905bc4a8", "source": "14d3686e-e930-42df-864a-3191fd5d7a54", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.3561643835616438, "overlap_size": 78 } }, { "data": { "id": "95c2bf7d-e1b7-4498-b43a-93c5e8f5a427", "source": "14d3686e-e930-42df-864a-3191fd5d7a54", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78 } }, { "data": { "id": "e76ce44b-da22-4cbf-9c4b-76a6318a52c1", "source": "14d3686e-e930-42df-864a-3191fd5d7a54", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "49eec317-9642-4dd4-8f91-4f47948580b4", "source": "14d3686e-e930-42df-864a-3191fd5d7a54", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78 } }, { "data": { "id": "aa4fd954-edbe-4180-a232-f2761310722c", "source": "14d3686e-e930-42df-864a-3191fd5d7a54", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.5, "overlap_size": 78 } }, { "data": { "id": "9d613ff5-30f5-432e-8d1c-5e268a1176c1", "source": "14d3686e-e930-42df-864a-3191fd5d7a54", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "6a0d91e5-987d-4776-b42d-5fbf13947ece", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.34074074074074073, "overlap_size": 46 } }, { "data": { "id": "f2c3603f-88cf-4d66-a9d4-10106e51d335", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.46938775510204084, "overlap_size": 46 } }, { "data": { "id": "1eb6bc71-ce39-4efe-95c8-310877031567", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.4948453608247423, "overlap_size": 48 } }, { "data": { "id": "45c86530-0af2-4bb5-93a4-97c05fccee97", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.5408163265306123, "overlap_size": 53 } }, { "data": { "id": "e5f7cd0d-967f-43aa-88d5-43f7b9359a8b", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.5222222222222223, "overlap_size": 47 } }, { "data": { "id": "6e694cd3-930e-486a-a9aa-3ae02fe46f78", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.5, "overlap_size": 46 } }, { "data": { "id": "b94f5f10-2a5b-40c4-9fed-c86a2b2b56e4", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.3700787401574803, "overlap_size": 47 } }, { "data": { "id": "4a876f79-2694-4ab2-8cd6-d9c1a692a950", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.44660194174757284, "overlap_size": 46 } }, { "data": { "id": "744aebd0-842e-4182-a965-592a0b8cdcd8", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.7058823529411765, "overlap_size": 60 } }, { "data": { "id": "39f3d962-396b-476b-a101-c81f9823a747", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.5, "overlap_size": 48 } }, { "data": { "id": "eab540f9-abc1-486f-91cf-4dbe7de26c47", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.5054945054945055, "overlap_size": 46 } }, { "data": { "id": "e18bba38-39f1-416b-9396-aee82219bfc1", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.2891566265060241, "overlap_size": 48 } }, { "data": { "id": "1f43edfd-8aac-47a6-a2c3-d42871ee0ac5", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.39849624060150374, "overlap_size": 53 } }, { "data": { "id": "fa659dd8-ea65-438d-be18-3700e0d7a924", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.29411764705882354, "overlap_size": 55 } }, { "data": { "id": "00ccdde0-0b98-4ee0-bdae-75958cd8e240", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.2696629213483146, "overlap_size": 24 } }, { "data": { "id": "b543161d-9e70-47c3-8996-327f3e1378d0", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.38095238095238093, "overlap_size": 56 } }, { "data": { "id": "32c94297-d250-4575-a21c-0e0597aeda6f", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.31724137931034485, "overlap_size": 46 } }, { "data": { "id": "f1804a4f-51eb-4462-9020-bdde58aa1766", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.5214723926380368, "overlap_size": 85 } }, { "data": { "id": "b837209e-9bc8-4992-8df3-50d91b3ab6f3", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.48936170212765956, "overlap_size": 46 } }, { "data": { "id": "16832448-4a03-4c77-9877-d9d9aedb6e7d", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49 } }, { "data": { "id": "9595289e-4625-4705-a0c3-165d705f3096", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.42105263157894735, "overlap_size": 48 } }, { "data": { "id": "66514e50-3a1d-43dc-b6f7-604e9cea9bf0", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.35036496350364965, "overlap_size": 48 } }, { "data": { "id": "3c92f63a-7d19-4d0c-b966-10225900afc7", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.4948453608247423, "overlap_size": 48 } }, { "data": { "id": "9d168f5f-b569-41ac-9465-6a3315389d47", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.5393258426966292, "overlap_size": 48 } }, { "data": { "id": "1c43df7f-d610-4948-af4f-4e553f367385", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.5168539325842697, "overlap_size": 46 } }, { "data": { "id": "6e8f9f60-fd96-4606-82ee-e9cae1f52d45", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.453781512605042, "overlap_size": 54 } }, { "data": { "id": "a5ad1b37-c060-4b30-9d6a-bf1e14f67feb", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.4842105263157895, "overlap_size": 46 } }, { "data": { "id": "b87478d6-828c-47f5-83f4-cc06cce3f185", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.550561797752809, "overlap_size": 49 } }, { "data": { "id": "1832e8bb-2f26-426e-b189-7a015dc57424", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.4948453608247423, "overlap_size": 48 } }, { "data": { "id": "ca8c8481-88b2-4cc8-b672-953c8c913f29", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.27906976744186046, "overlap_size": 48 } }, { "data": { "id": "6161b413-5451-44d2-aae1-268eaf5720a1", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.5533333333333333, "overlap_size": 83 } }, { "data": { "id": "a1ae487a-1f91-4206-a4be-37aa0729399e", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.35658914728682173, "overlap_size": 46 } }, { "data": { "id": "b5777b93-9fa2-4009-923d-fa2275b14686", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.4423076923076923, "overlap_size": 46 } }, { "data": { "id": "7d315f13-4c53-4ca3-b257-ddab8fe92f5e", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.37404580152671757, "overlap_size": 49 } }, { "data": { "id": "2c929bcf-dac9-4f41-b184-2903abfa7aa2", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.42990654205607476, "overlap_size": 46 } }, { "data": { "id": "93359cfa-77b1-4860-b36e-6b2b533aaee5", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.362962962962963, "overlap_size": 49 } }, { "data": { "id": "00496555-c0e1-44b4-8c16-36fd35d28c8f", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.31333333333333335, "overlap_size": 47 } }, { "data": { "id": "f4703cf6-46e1-4bcd-8884-7589d2430c1f", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.45614035087719296, "overlap_size": 52 } }, { "data": { "id": "45259e68-a5ff-48a3-8210-f0ef858bbdc3", "source": "4cab23ea-9323-4755-9d34-d3fea53afb83", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.3103448275862069, "overlap_size": 63 } }, { "data": { "id": "8bb26ae0-55a0-45ed-ae27-4ea46e9d3663", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.2857142857142857, "overlap_size": 46 } }, { "data": { "id": "974418da-c85e-493f-a0d0-75cdcac18019", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.398989898989899, "overlap_size": 79 } }, { "data": { "id": "d1d9c9d3-52c1-4ab1-8a92-6061a8eeb1e9", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.25906735751295334, "overlap_size": 50 } }, { "data": { "id": "51490716-b894-4ce7-9e5f-e383d228aa00", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.3375, "overlap_size": 54 } }, { "data": { "id": "63eba62d-d9a5-40ad-8bc7-b25446a59257", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.2754491017964072, "overlap_size": 46 } }, { "data": { "id": "223699a8-5845-4698-b344-ae52920214df", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.26063829787234044, "overlap_size": 49 } }, { "data": { "id": "7f39f0bd-6e7a-468a-9fb3-3fb376b1c537", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.27058823529411763, "overlap_size": 46 } }, { "data": { "id": "ea1d411c-084f-4db8-a374-4be5a1f7d5b8", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.27710843373493976, "overlap_size": 46 } }, { "data": { "id": "6cf497f7-7ce6-4edc-b8bf-5b1d20cc9b28", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.40540540540540543, "overlap_size": 60 } }, { "data": { "id": "b59ed951-282d-483e-aae3-eff10a98c073", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.30718954248366015, "overlap_size": 47 } }, { "data": { "id": "1722da21-15f2-44f4-9b78-e4eb784897d0", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.3, "overlap_size": 48 } }, { "data": { "id": "8863071d-c40f-409f-ad14-fabc95db4f81", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.5628140703517588, "overlap_size": 112 } }, { "data": { "id": "58102596-e9ba-47b5-a24b-5e8f4b11de65", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.3111111111111111, "overlap_size": 56 } }, { "data": { "id": "52c4b378-7f8f-43a6-abee-3b6fdddff6ea", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.3018867924528302, "overlap_size": 48 } }, { "data": { "id": "7d8e00c6-fbe6-4fd7-a3a8-5463f1c3c784", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.39908256880733944, "overlap_size": 87 } }, { "data": { "id": "80cf9605-3d6b-44cd-b653-f4f39687f10c", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.25380710659898476, "overlap_size": 50 } }, { "data": { "id": "562e61ab-71c2-4e2f-9b97-4f0a712ff0ba", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.28502415458937197, "overlap_size": 59 } }, { "data": { "id": "19671e8c-4de3-463d-a140-a72852f5ef89", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.3223684210526316, "overlap_size": 49 } }, { "data": { "id": "71acfd13-8e08-4048-b21a-64aba21c9f16", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.2857142857142857, "overlap_size": 50 } }, { "data": { "id": "f5b50915-a6eb-4851-9d44-9c312eff21e8", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.2911392405063291, "overlap_size": 46 } }, { "data": { "id": "19eb07d1-576d-419c-a467-2eefc8e5e435", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.3026315789473684, "overlap_size": 46 } }, { "data": { "id": "93c22f3d-6c1f-4f1d-94af-16606ae4050b", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.3157894736842105, "overlap_size": 48 } }, { "data": { "id": "cd2ef682-db7b-432d-ae58-8c2a26d9d3cb", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.3, "overlap_size": 48 } }, { "data": { "id": "471c96d8-e952-4cf2-a8f4-81ba22437482", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.30857142857142855, "overlap_size": 54 } }, { "data": { "id": "72f0d490-3153-4b5d-a844-bfab2617ab5c", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.2987012987012987, "overlap_size": 46 } }, { "data": { "id": "c406601b-3bc4-47ae-932d-a0e71df9de85", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.27692307692307694, "overlap_size": 54 } }, { "data": { "id": "2f53d96d-3de0-4374-b698-ec3959504c17", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.3, "overlap_size": 48 } }, { "data": { "id": "58af4244-6298-4af1-8130-dd9756b123b1", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.2751937984496124, "overlap_size": 71 } }, { "data": { "id": "a3b95e4b-a0ef-474a-aa90-d461586fad34", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.2967741935483871, "overlap_size": 46 } }, { "data": { "id": "13f381e3-b334-427a-b55e-92676b71b60e", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.30128205128205127, "overlap_size": 47 } }, { "data": { "id": "5d8dc6be-525c-43b3-80d6-2d7fcd12b3e9", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.31313131313131315, "overlap_size": 62 } }, { "data": { "id": "dd7f3a3b-eab9-4129-9a66-59f2b6bfb961", "source": "eda99b2f-0253-424d-880d-178bdea9777d", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.2722222222222222, "overlap_size": 49 } }, { "data": { "id": "4a4dabb9-7ace-4f2b-a479-414017d70d2a", "source": "b6922b98-9220-46d4-a7fc-b265074130b3", "target": "e4351080-e123-4e93-98a7-49cdd09e0c1c", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "fa09de05-1a96-4440-8b97-d7da5df89768", "source": "b6922b98-9220-46d4-a7fc-b265074130b3", "target": "8f2732b7-bdc9-40f5-8845-a8d9beca3b22", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "47d63554-6ed9-4c4f-ae3d-f04349db7b7f", "source": "b6922b98-9220-46d4-a7fc-b265074130b3", "target": "3baa2895-d41a-4b91-925b-906637d521ee", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "f44b3909-2590-497c-9af3-ce4dfc3f7bc1", "source": "b6922b98-9220-46d4-a7fc-b265074130b3", "target": "ba7799c9-3170-4d60-b811-31eae5312965", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "f4248e27-067d-4fbb-aeaa-6b71483ffe04", "source": "b6922b98-9220-46d4-a7fc-b265074130b3", "target": "cddebf8c-4f9a-4ec6-b7c9-83312c9d1c51", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "042e2681-f8d3-4624-8119-230e72cf63fe", "source": "b6922b98-9220-46d4-a7fc-b265074130b3", "target": "acb95097-45dd-4bf4-aa47-a787e38591d4", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "d597e695-bc2b-4e3d-a8af-d976d30188d5", "source": "e2912118-3e55-4069-81e2-19dfc33500e6", "target": "a31fb885-5d37-4b2b-a6e5-41936b5cecc1", "similarity_coefficient": 0.2615844544095665, "overlap_size": 175 } }, { "data": { "id": "52d30406-61cb-48c6-8f25-2203513eb96e", "source": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "ac113891-cd92-4d49-844d-f8d2db08c4a8", "source": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "439bd0d3-1d35-414d-ab9f-860214dc35a7", "source": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.3561643835616438, "overlap_size": 78 } }, { "data": { "id": "cf737f8e-7c2c-4af6-aa42-e3a4b816ced9", "source": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31 } }, { "data": { "id": "7c3d7139-9694-4605-8edb-98c59465f8f4", "source": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.6554621848739496, "overlap_size": 78 } }, { "data": { "id": "adea5682-97ee-45b7-81ba-f47c84e354df", "source": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "c163613f-e6ce-48e1-b5f3-225d5a4a5da2", "source": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "22de5771-59da-4fd1-ac55-37176e94e517", "source": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "ff1b6edf-6ec0-4d4e-b5c9-471702b32c70", "source": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78 } }, { "data": { "id": "0422df3f-4fde-4a74-95e1-06bf73bd7049", "source": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "ca248c22-4b0d-4797-bc90-cb947d4ea5c1", "source": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "8c4dfdaf-b266-42bd-b3c8-6453626ee305", "source": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.5, "overlap_size": 78 } }, { "data": { "id": "c614e403-3a09-4e10-944b-70a5688f8286", "source": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "e5a2a868-8c46-4a1d-9abb-a93d3a5a0a31", "source": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "2e10a78f-7980-4f2f-983a-c4fe0caedf43", "source": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "a41c1fc7-f97f-488f-b2c4-d917a6cf8c3d", "source": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78 } }, { "data": { "id": "26f6bc21-3eb5-45c5-b676-7b94ddb3f53d", "source": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "8c6b16a9-9dc0-4175-bb71-6ac8938dc0c1", "source": "b76a8552-5234-4d6a-83eb-4221fe662024", "target": "af2f5715-9e8f-430f-9b9c-cada4e18fe01", "similarity_coefficient": 0.4078014184397163, "overlap_size": 115 } }, { "data": { "id": "dde45e32-6d5a-4db7-aa4c-00b8046a843c", "source": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "58acc26d-c759-45aa-8541-7d2800451d36", "source": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "a2fad2c3-f6f2-4a7c-abc5-6d21eaa512d4", "source": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "212265b3-6e75-4469-ab5f-1d1e880654d5", "source": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "2a65fdb2-b458-4b02-b828-08addc611f89", "source": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.9107142857142857, "overlap_size": 102 } }, { "data": { "id": "d4143bd6-9d6d-4ee7-9878-3482218ab43b", "source": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.6717557251908397, "overlap_size": 88 } }, { "data": { "id": "8f9d3493-23bc-4dce-93d2-54fa7d302615", "source": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.676923076923077, "overlap_size": 88 } }, { "data": { "id": "4104a5de-1123-404a-b483-746a8c9c5e4c", "source": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.29914529914529914, "overlap_size": 35 } }, { "data": { "id": "ec2b189b-4b9d-437d-bb95-0ae2321d325b", "source": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "ab7dd9dc-3032-421c-ad8a-3ca0cd87db85", "source": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.4375, "overlap_size": 49 } }, { "data": { "id": "33595128-10a7-4798-b84e-7c33880ea475", "source": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "cc9a540c-1df0-44f7-8c04-524dfac21887", "source": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "9d6faa70-9fad-46d8-a6ba-a3474646f617", "source": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.8461538461538461, "overlap_size": 88 } }, { "data": { "id": "bdd1538c-3b06-486e-9116-a02d76563c69", "source": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.38095238095238093, "overlap_size": 88 } }, { "data": { "id": "5d6acbd4-80bb-4c1d-ab17-a63da6767c81", "source": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "a0f7a0b0-38fa-4659-b0f6-cb6f3a44ff55", "source": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.4055299539170507, "overlap_size": 88 } }, { "data": { "id": "0f05ca53-b002-4f50-9705-8d9a0341704b", "source": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "af2aa2f7-d015-4d08-a4c6-8f6d29cd36eb", "source": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.5238095238095238, "overlap_size": 88 } }, { "data": { "id": "57b9cbd2-22b7-410d-a233-f8fa1e783858", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "d1dd2846-b9fd-42cc-a3cf-ef8a1e6c2096", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.2967741935483871, "overlap_size": 46 } }, { "data": { "id": "b27a50a7-43c2-45fd-8c0a-93a800ab3bf1", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.7966101694915254, "overlap_size": 47 } }, { "data": { "id": "5a78036f-b3e5-4fe9-980c-bae37bbf3faf", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.532608695652174, "overlap_size": 49 } }, { "data": { "id": "badf34f5-fd31-486e-ad18-6e1940cb6804", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.7419354838709677, "overlap_size": 46 } }, { "data": { "id": "5882f18a-2df6-45ae-9fe9-0852d98a4327", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.5402298850574713, "overlap_size": 47 } }, { "data": { "id": "b8e217d7-c858-4300-b7b6-2275625b48ae", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49 } }, { "data": { "id": "6a546670-5b8e-4948-8a0d-0d9be60b65b8", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.7936507936507936, "overlap_size": 50 } }, { "data": { "id": "2972c860-ef92-4a7a-9eaa-a4219002bdc7", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49 } }, { "data": { "id": "1a94424d-ec2c-45f5-a4f3-1b1e19d9539f", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.6865671641791045, "overlap_size": 46 } }, { "data": { "id": "916dd656-ef13-4b66-8bda-b8d3bc06762f", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49 } }, { "data": { "id": "5555c166-4736-4247-8301-d202cc6e9b89", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49 } }, { "data": { "id": "4994f606-fd23-4cee-ac2a-7cd69bc133a9", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.875, "overlap_size": 49 } }, { "data": { "id": "6ad1f8f6-4500-4375-b7a9-f5afab8ec691", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.49, "overlap_size": 49 } }, { "data": { "id": "d99ae6cb-6f0d-43c9-b4b1-6fa4b435ffb1", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49 } }, { "data": { "id": "d894bcae-0f29-4ef4-820f-24134e61c0be", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49 } }, { "data": { "id": "30435385-16f4-435e-a935-a163ec094483", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.36231884057971014, "overlap_size": 50 } }, { "data": { "id": "3cec9b4e-800e-43d2-806f-9d24d8b20c3f", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.765625, "overlap_size": 49 } }, { "data": { "id": "3c4bbeab-4356-4e47-a699-6a0b30e7017a", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49 } }, { "data": { "id": "23bb313a-bab9-48dc-acf1-431f58fd565a", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.8103448275862069, "overlap_size": 47 } }, { "data": { "id": "813e9048-fb1d-40b6-a3e4-d7ad499e34ea", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.5212765957446809, "overlap_size": 49 } }, { "data": { "id": "9770bf62-8028-4a75-919d-8220a0f203c9", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "904648c2-551b-426e-815e-74ced2374458", "similarity_coefficient": 0.2768361581920904, "overlap_size": 49 } }, { "data": { "id": "3b3579a3-bd55-439a-9ee2-8ffa0f99f2d3", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.45098039215686275, "overlap_size": 46 } }, { "data": { "id": "5c5801b5-31ec-49b7-9522-b56f30cfc494", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.2832369942196532, "overlap_size": 49 } }, { "data": { "id": "6ba112ff-5812-4a50-a7d8-8ac3d78d6460", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.3382352941176471, "overlap_size": 46 } }, { "data": { "id": "6366394b-a08d-4748-a0d4-589a8cd2ed18", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.2717391304347826, "overlap_size": 50 } }, { "data": { "id": "c9cfe5f1-5a3b-4829-a776-74c23f3222db", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.4807692307692308, "overlap_size": 50 } }, { "data": { "id": "6b2ab28e-e0b1-48a0-9c8c-b0efbea83822", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.7, "overlap_size": 49 } }, { "data": { "id": "ae386500-bc09-41b1-8ca0-763c1674b466", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.3865546218487395, "overlap_size": 46 } }, { "data": { "id": "6935ebd2-d698-49c2-95eb-fdb0c5358960", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.3125, "overlap_size": 50 } }, { "data": { "id": "58a92b90-468c-4592-9e64-1923208092b7", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "b35862e9-6672-4db1-9829-862942231487", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "716e6497-5bf7-4c3f-9e2a-40d0810429f7", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.875, "overlap_size": 49 } }, { "data": { "id": "1ddd40fa-910b-4bbf-9ef2-5341579c41ac", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.8596491228070176, "overlap_size": 49 } }, { "data": { "id": "2e772f31-e006-409c-9b46-a5db6f6ef45d", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.9074074074074074, "overlap_size": 49 } }, { "data": { "id": "cb5a61dd-ccce-420e-991e-3ed8c3461fa6", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49 } }, { "data": { "id": "7cf03b59-bc3c-4076-a54a-83ff18fe3a0e", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.42105263157894735, "overlap_size": 24 } }, { "data": { "id": "6009441d-5f02-42ef-b7f5-a40a8c0e001d", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.5, "overlap_size": 46 } }, { "data": { "id": "429e22f2-d1e2-4730-bd31-4050cbdc161d", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.30120481927710846, "overlap_size": 50 } }, { "data": { "id": "a5bc3cd9-6a00-4180-bc0f-7312fb169eef", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.7936507936507936, "overlap_size": 50 } }, { "data": { "id": "b68cf1c8-aa6a-4294-af62-1ff6d9f97a8d", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.4132231404958678, "overlap_size": 50 } }, { "data": { "id": "1a907dec-5047-4f2e-82d9-900b020641a1", "source": "844afc8a-176f-44fe-b051-ffa66bd48717", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49 } }, { "data": { "id": "dd693fa6-2bb6-4639-828c-f2e07f91625e", "source": "0ad4929b-20d7-4e32-ad45-dcfb579aade3", "target": "d38e07b4-dd9a-4f3d-9662-82e180f80cdf", "similarity_coefficient": 1, "overlap_size": 22 } }, { "data": { "id": "82787f9b-9ebe-4d6a-992b-136ea6975d29", "source": "0ad4929b-20d7-4e32-ad45-dcfb579aade3", "target": "d51806b8-78ae-4131-ace1-d9be5fa5560a", "similarity_coefficient": 1, "overlap_size": 22 } }, { "data": { "id": "54224fb7-ceaf-4703-af1a-9586334be191", "source": "0ad4929b-20d7-4e32-ad45-dcfb579aade3", "target": "c82aea32-0e25-4f32-aeb3-64b4548d9190", "similarity_coefficient": 1, "overlap_size": 22 } }, { "data": { "id": "f023804b-1f3f-4177-8a29-215924488192", "source": "0ad4929b-20d7-4e32-ad45-dcfb579aade3", "target": "de077ab2-2978-4986-a338-5f664401cd65", "similarity_coefficient": 1, "overlap_size": 22 } }, { "data": { "id": "20ad47f7-e651-4bd4-8f62-79b78eeb863d", "source": "0ad4929b-20d7-4e32-ad45-dcfb579aade3", "target": "6d05fb4b-2380-4626-8ebc-1ed88b0da496", "similarity_coefficient": 1, "overlap_size": 22 } }, { "data": { "id": "02f2d441-3280-45fc-ac11-235b0c0f48de", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.35384615384615387, "overlap_size": 46 } }, { "data": { "id": "ccd29787-46bd-4e25-95ab-9794f65dd0fe", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.3202614379084967, "overlap_size": 49 } }, { "data": { "id": "e1fe7c2b-509a-4fbe-b4e7-ae09e83500e8", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.5367647058823529, "overlap_size": 73 } }, { "data": { "id": "caabf0ba-acbc-4e8c-b79d-25a520254060", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.3, "overlap_size": 51 } }, { "data": { "id": "60e919a6-4ae8-425e-89cf-5cdc271b21de", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49 } }, { "data": { "id": "96f0b0d4-2353-4b87-a791-acbf050a397e", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.5230769230769231, "overlap_size": 68 } }, { "data": { "id": "dc67efb7-0fda-437a-b31d-f5227454bed2", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.40310077519379844, "overlap_size": 52 } }, { "data": { "id": "60da694a-bec9-479c-9a7d-8a60f7260595", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.28654970760233917, "overlap_size": 49 } }, { "data": { "id": "ffeaef98-cc95-4bdf-999a-dde8b6b9d438", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.2849462365591398, "overlap_size": 53 } }, { "data": { "id": "6b78bf5a-9dad-4e76-a35f-b67439ea3941", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.7423312883435583, "overlap_size": 121 } }, { "data": { "id": "074d923e-b0a2-4a43-b97a-fd36b52f8bd8", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.30246913580246915, "overlap_size": 49 } }, { "data": { "id": "90b12600-6a43-4492-885b-fa507e06b220", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.35766423357664234, "overlap_size": 49 } }, { "data": { "id": "38572249-6bbf-4fda-bf60-d509b270a1b3", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.2549019607843137, "overlap_size": 52 } }, { "data": { "id": "e7097f2a-2b48-431f-bb9c-3efe6dfa440f", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.3953488372093023, "overlap_size": 51 } }, { "data": { "id": "c0144393-2a9f-4855-a434-175d65cd060e", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.4032258064516129, "overlap_size": 50 } }, { "data": { "id": "7263f012-152f-4496-a8de-73dff5b24f4c", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.3828125, "overlap_size": 49 } }, { "data": { "id": "8b3cb280-29f0-4641-b0a6-3cd96bf4d1e1", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.392, "overlap_size": 49 } }, { "data": { "id": "5f67aabb-3447-4277-a73e-6f62deddf01e", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.29464285714285715, "overlap_size": 66 } }, { "data": { "id": "ececab4c-89c0-49e8-9302-e7ba78218d58", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "fb172c5a-c242-43e8-98a4-bc060890f253", "similarity_coefficient": 0.31438127090301005, "overlap_size": 94 } }, { "data": { "id": "ae719dfc-cd19-4a26-8797-b95608ed8225", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49 } }, { "data": { "id": "56ad7c07-a9df-4c06-b4ac-884984de1fb8", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.3602941176470588, "overlap_size": 49 } }, { "data": { "id": "5c0d7f05-a201-4a17-ac8d-4ed46a272d73", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.4251968503937008, "overlap_size": 54 } }, { "data": { "id": "31e2f507-50a4-4e33-a3ab-1c93373f6f3e", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "e6dea521-d51c-4a74-9880-b6a22b6a0eca", "similarity_coefficient": 0.2644628099173554, "overlap_size": 32 } }, { "data": { "id": "b1f8bf25-95a1-46e1-bc95-7f38703d15d5", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.392, "overlap_size": 49 } }, { "data": { "id": "1ace31c8-9511-4bd9-960a-cf91790be9ac", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.3923076923076923, "overlap_size": 51 } }, { "data": { "id": "c948a6f4-be5e-4058-831e-b2263447f91f", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.2916666666666667, "overlap_size": 49 } }, { "data": { "id": "26b70fd4-9c1b-4992-88d7-1a02820b38a0", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.5365853658536586, "overlap_size": 66 } }, { "data": { "id": "cd3797f3-4ecb-4cb0-8f03-598db663ad03", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.37404580152671757, "overlap_size": 49 } }, { "data": { "id": "cc1514f9-3cf9-4076-b07a-319aad88c808", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.2752808988764045, "overlap_size": 49 } }, { "data": { "id": "bfae4303-2175-4029-aad4-dd45fffeb52f", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.7707006369426752, "overlap_size": 121 } }, { "data": { "id": "3b02d869-2ad9-4e99-bcc9-55ef0d4f4156", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.5228758169934641, "overlap_size": 80 } }, { "data": { "id": "c3382b9e-73a7-4258-a399-03d483def50b", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.27058823529411763, "overlap_size": 46 } }, { "data": { "id": "3992c3a1-cf0a-49a2-887b-4969acc4e078", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.5538461538461539, "overlap_size": 72 } }, { "data": { "id": "ce456a41-32dc-4431-a7fb-165f67f209d1", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49 } }, { "data": { "id": "15548179-c34b-442e-97ce-8fd7db07c7f7", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.5923566878980892, "overlap_size": 93 } }, { "data": { "id": "449f67c7-b786-4741-926a-a557b89b2a65", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.44623655913978494, "overlap_size": 83 } }, { "data": { "id": "02c1d56e-a35c-46b6-8159-883dd38a5a6f", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.4016393442622951, "overlap_size": 49 } }, { "data": { "id": "71bcbedc-da94-43f0-92fd-0be6e7b067b7", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.40601503759398494, "overlap_size": 54 } }, { "data": { "id": "24003d8e-3354-418c-8afc-4de67d617e87", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.3136094674556213, "overlap_size": 53 } }, { "data": { "id": "001e63ad-2567-461a-bbf9-efa8eea2cf3a", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.30434782608695654, "overlap_size": 49 } }, { "data": { "id": "a7dd87f3-15a3-48ff-8ed5-adc490d79ea7", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.36423841059602646, "overlap_size": 55 } }, { "data": { "id": "98275f14-c129-46f7-83f3-60e8fb8eefba", "source": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.40310077519379844, "overlap_size": 52 } }, { "data": { "id": "f935946a-98c4-45d7-aa42-a39db26c9abd", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.4787234042553192, "overlap_size": 45 } }, { "data": { "id": "d6211bdd-7347-4ffa-853d-326a56d5ff70", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.6428571428571429, "overlap_size": 45 } }, { "data": { "id": "d91910e0-bf44-45da-93ff-484bcabaffa3", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.6176470588235294, "overlap_size": 42 } }, { "data": { "id": "00c71809-fe62-4c83-938f-a88d7851712b", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.5232558139534884, "overlap_size": 45 } }, { "data": { "id": "36be2a47-ad52-414d-a4de-842c4dee6e85", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.703125, "overlap_size": 45 } }, { "data": { "id": "5bfd09c8-ae43-4230-b456-e7204a1ade0b", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.7894736842105263, "overlap_size": 45 } }, { "data": { "id": "9fc0d375-e1a9-417f-8715-6621b80009e7", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.32142857142857145, "overlap_size": 45 } }, { "data": { "id": "a0baa64d-b7dc-419f-926f-62986a3008ff", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.2777777777777778, "overlap_size": 45 } }, { "data": { "id": "81fc91eb-0655-449e-a8f7-6aa347e34bdc", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.7758620689655172, "overlap_size": 45 } }, { "data": { "id": "001fe998-9a40-4d1e-996c-41d137022a6d", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.7894736842105263, "overlap_size": 45 } }, { "data": { "id": "6734ec64-50b8-473f-ac07-f90ea1ca8599", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.2692307692307692, "overlap_size": 42 } }, { "data": { "id": "12201454-dedd-435b-b7d7-663730c96268", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.703125, "overlap_size": 45 } }, { "data": { "id": "c2259825-b67d-4258-8457-26e31498ffe6", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.45161290322580644, "overlap_size": 42 } }, { "data": { "id": "015f8532-8c1d-4d3a-8289-e585732c2c81", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.6885245901639344, "overlap_size": 42 } }, { "data": { "id": "289c4aea-1ffe-40fe-8b0e-cfc1e74e479f", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.30656934306569344, "overlap_size": 42 } }, { "data": { "id": "b9a2f53c-04ef-4e1f-b2d3-48153c1f46ea", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.6338028169014085, "overlap_size": 45 } }, { "data": { "id": "954b4b12-7198-4382-a3f3-48b6e20292c2", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "904648c2-551b-426e-815e-74ced2374458", "similarity_coefficient": 0.25280898876404495, "overlap_size": 45 } }, { "data": { "id": "666b96e9-6c31-4aec-aa70-85f56bf6808c", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.7, "overlap_size": 42 } }, { "data": { "id": "de51a0cd-a439-4a32-8366-ee94ab29d841", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.6164383561643836, "overlap_size": 45 } }, { "data": { "id": "a5718742-c418-4dc9-93c1-c90b1bc96358", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.35, "overlap_size": 42 } }, { "data": { "id": "81166d2f-2a55-4a06-9110-cc8202b93ad6", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.44554455445544555, "overlap_size": 45 } }, { "data": { "id": "5f15d332-dc1e-4ce5-ad3c-3d2fefd1a368", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.6666666666666666, "overlap_size": 42 } }, { "data": { "id": "a27f0f07-9eeb-4632-8018-0b4b253a7710", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.6521739130434783, "overlap_size": 45 } }, { "data": { "id": "2bc689fb-a138-4ed6-b2cf-0b8b8398befb", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.6923076923076923, "overlap_size": 45 } }, { "data": { "id": "797cd82b-16d7-46bf-aa31-7ea815244430", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.47191011235955055, "overlap_size": 42 } }, { "data": { "id": "b4f01bd5-a308-4a8d-b5f4-5482f6175ec6", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.5487804878048781, "overlap_size": 45 } }, { "data": { "id": "770247a3-9add-4f6e-9200-b2ca97e4ab9a", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.35714285714285715, "overlap_size": 45 } }, { "data": { "id": "ddb74b6a-2015-4e23-99d4-0e551f986558", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.7758620689655172, "overlap_size": 45 } }, { "data": { "id": "1e69621a-47ad-4bd4-9e4d-26f7c1182fd4", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.4077669902912621, "overlap_size": 42 } }, { "data": { "id": "79239e34-58fb-4834-96b1-da9542a07c82", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.4326923076923077, "overlap_size": 45 } }, { "data": { "id": "51371eee-0e26-492e-a79f-abfb929b5d18", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.8181818181818182, "overlap_size": 45 } }, { "data": { "id": "19557847-33c9-44de-a652-b82cb30872e1", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.39285714285714285, "overlap_size": 22 } }, { "data": { "id": "221dd2e6-901d-4cc8-8eea-50913068adb1", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.6923076923076923, "overlap_size": 45 } }, { "data": { "id": "14597925-1da3-409f-9f73-66ceefa17dc9", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.26785714285714285, "overlap_size": 45 } }, { "data": { "id": "8059e2bf-53fe-478a-b953-812ebd9b72ce", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.47368421052631576, "overlap_size": 45 } }, { "data": { "id": "ac1fbf2d-a0a4-43cf-bf5a-07129a8fd927", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.42857142857142855, "overlap_size": 45 } }, { "data": { "id": "bd404516-3fdd-42e4-92f0-88556bd2be08", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.6923076923076923, "overlap_size": 45 } }, { "data": { "id": "22687a66-efdc-4cd6-8940-e7dae400163d", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.7377049180327869, "overlap_size": 45 } }, { "data": { "id": "bad6d8bc-ac02-4321-beaf-8153afc3ba4e", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.25862068965517243, "overlap_size": 45 } }, { "data": { "id": "30e9d6dc-86e4-4a61-85f7-7c3d8be85a95", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.42452830188679247, "overlap_size": 45 } }, { "data": { "id": "f1478b66-a363-49c2-8e2e-333ccd4a6014", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.4838709677419355, "overlap_size": 45 } }, { "data": { "id": "5fc057e2-d9f2-42aa-abd3-fecd4b452dc7", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.36585365853658536, "overlap_size": 45 } }, { "data": { "id": "d23260e0-c68f-43a5-a29c-8aa95828ea12", "source": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.4716981132075472, "overlap_size": 50 } }, { "data": { "id": "c1d8b689-f110-494d-aa91-85c5f8e54313", "source": "cf3662ba-ff22-4e1e-b61e-12ecb731cce6", "target": "384f6879-1c32-46c3-8b2b-7c9ded001526", "similarity_coefficient": 0.7452830188679245, "overlap_size": 79 } }, { "data": { "id": "3476b7d0-6fd1-482c-ba8d-0359c2a947da", "source": "cf3662ba-ff22-4e1e-b61e-12ecb731cce6", "target": "f97b81a8-1862-43e0-8494-7bbe4766e167", "similarity_coefficient": 0.42021276595744683, "overlap_size": 79 } }, { "data": { "id": "9131e50c-e524-4707-932a-bb1377c8aa52", "source": "750e524e-6f52-4983-9819-5b723c8afe66", "target": "1cf1ee8e-77cc-4e7d-8939-adf02b347c93", "similarity_coefficient": 0.3673913043478261, "overlap_size": 169 } }, { "data": { "id": "56a799d9-3812-4d34-93ab-b8d5e2207ccc", "source": "750e524e-6f52-4983-9819-5b723c8afe66", "target": "916b518e-1a95-45db-be11-8e45704c11f1", "similarity_coefficient": 0.27586206896551724, "overlap_size": 56 } }, { "data": { "id": "ee00192e-d5fd-4449-af39-1feaacffdc31", "source": "750e524e-6f52-4983-9819-5b723c8afe66", "target": "db958270-8c68-47a1-8245-d553c49a126f", "similarity_coefficient": 0.4174454828660436, "overlap_size": 134 } }, { "data": { "id": "cb462e67-ead5-48d9-89a6-5f420875f43e", "source": "750e524e-6f52-4983-9819-5b723c8afe66", "target": "3c6595b7-4300-40c2-9b8b-be0dea463aa6", "similarity_coefficient": 0.2949389179755672, "overlap_size": 169 } }, { "data": { "id": "fec055ea-a215-4210-8c6d-6a1563df761c", "source": "750e524e-6f52-4983-9819-5b723c8afe66", "target": "b570f307-7c80-461e-9c1b-ff264f6ff8af", "similarity_coefficient": 0.37650602409638556, "overlap_size": 125 } }, { "data": { "id": "90399d74-ad26-43c6-ad66-764e231eee2a", "source": "750e524e-6f52-4983-9819-5b723c8afe66", "target": "7861fd51-2caf-44e2-b4cb-7e64f8c0b51f", "similarity_coefficient": 0.9941176470588236, "overlap_size": 169 } }, { "data": { "id": "ed2b24a5-69c2-49b9-9110-9f0b23970f03", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49 } }, { "data": { "id": "2bf1dff4-2167-4320-98c9-11b455629fda", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.7540983606557377, "overlap_size": 46 } }, { "data": { "id": "0c558cdc-ee1a-4c07-ad07-d63f1e5074e7", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.5212765957446809, "overlap_size": 49 } }, { "data": { "id": "6a9bec80-5ba7-4301-ac76-7134ffaf0e47", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.2929936305732484, "overlap_size": 46 } }, { "data": { "id": "b4d82c53-6720-4c4d-97a8-12d54beb8a21", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49 } }, { "data": { "id": "25f351a5-67c2-434f-b952-7e869f32bbe8", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.7419354838709677, "overlap_size": 46 } }, { "data": { "id": "8a4f615a-5334-4492-a036-3dff4f3d9a68", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.35714285714285715, "overlap_size": 50 } }, { "data": { "id": "b6a380a3-3815-4012-994b-57d3a90d3982", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.48936170212765956, "overlap_size": 46 } }, { "data": { "id": "ce5f9cbd-fe6c-48d8-8602-fb534b1f6b82", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.875, "overlap_size": 49 } }, { "data": { "id": "a8af09d7-282d-4409-8f36-84af78f4dee2", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49 } }, { "data": { "id": "924ce202-851e-49b8-961e-f049d341aa5d", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.28994082840236685, "overlap_size": 49 } }, { "data": { "id": "2a6f6f08-33d4-4af5-b55d-cc4dac978949", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.7538461538461538, "overlap_size": 49 } }, { "data": { "id": "784d021e-6e74-491f-a432-3130ff2a95fc", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "690d048a-ce8c-4e43-9ab0-ed9976703ad9", "similarity_coefficient": 0.2722772277227723, "overlap_size": 55 } }, { "data": { "id": "6a5e7fc4-5dfb-4c28-9abe-d2fe11399230", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49 } }, { "data": { "id": "078c1392-5e89-4cbb-a16f-042b5cbe18d6", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.4375, "overlap_size": 49 } }, { "data": { "id": "0e1f3b73-dfe2-4917-af64-81070f07c22e", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.3006134969325153, "overlap_size": 49 } }, { "data": { "id": "e72120e3-de6f-4c17-be95-07fa292f054f", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.4067796610169492, "overlap_size": 24 } }, { "data": { "id": "80ae700e-6807-4002-aac4-319161bdcda2", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49 } }, { "data": { "id": "cfb0d07b-368f-43bd-8a5c-dd7c107b52a5", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.4563106796116505, "overlap_size": 47 } }, { "data": { "id": "6d506af0-63a3-4a4f-9681-30f912cbe6f7", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.7538461538461538, "overlap_size": 49 } }, { "data": { "id": "9aac4467-f86c-4c11-8059-d504745341e6", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.3333333333333333, "overlap_size": 46 } }, { "data": { "id": "ff562706-340c-46ad-a5c0-c0bba83d6c23", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49 } }, { "data": { "id": "f4eb1e5d-75c7-4981-8527-64e19414cada", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49 } }, { "data": { "id": "c3b4e144-3cda-4c5c-b44b-2b426e68a89d", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.8305084745762712, "overlap_size": 49 } }, { "data": { "id": "a260fae8-40d7-44ad-9321-60466e793531", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49 } }, { "data": { "id": "aedb21ef-95d5-411e-83ed-892e99447b2b", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.28, "overlap_size": 49 } }, { "data": { "id": "9fa8faec-a015-4757-9f78-7702dc64289d", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49 } }, { "data": { "id": "4c7e6455-b49f-45ec-8a99-f9bf1cd7a557", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.7246376811594203, "overlap_size": 50 } }, { "data": { "id": "4246ba75-daf5-493c-bb0f-970751915c85", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.7424242424242424, "overlap_size": 49 } }, { "data": { "id": "cd0b2ba9-6837-4f8b-bb81-660e7d9bf618", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49 } }, { "data": { "id": "5ed8b921-fab9-4604-95ab-0759751b05b5", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.6666666666666666, "overlap_size": 46 } }, { "data": { "id": "9825f87f-ff95-456f-b19e-d13c377e1f0e", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.75, "overlap_size": 45 } }, { "data": { "id": "534a653b-1335-4551-b812-16d41f2e98fe", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.7424242424242424, "overlap_size": 49 } }, { "data": { "id": "a7bccbda-8b63-48f9-9fa8-07068371aa0f", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49 } }, { "data": { "id": "6382fafc-667c-44d0-95ab-aba8d897c9ca", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49 } }, { "data": { "id": "5e3b6e0c-6785-4005-a1fa-8debbda84f0e", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49 } }, { "data": { "id": "92bf6746-b2f6-4442-9483-a13abe74827d", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.3858267716535433, "overlap_size": 49 } }, { "data": { "id": "eb0720e3-ac26-41d4-964f-7b1c3d4e2fef", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.7424242424242424, "overlap_size": 49 } }, { "data": { "id": "1965134f-694a-49e4-bad5-f50c11593219", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.8305084745762712, "overlap_size": 49 } }, { "data": { "id": "b3494fff-4e41-43ec-8c82-23668977babd", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49 } }, { "data": { "id": "18e1387b-f4b2-4fb4-960d-d6ceb3bc4340", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.746031746031746, "overlap_size": 47 } }, { "data": { "id": "0d1a083c-b6bc-4064-ad9d-53054a18ddc8", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.38016528925619836, "overlap_size": 46 } }, { "data": { "id": "079d221f-bac2-4064-b971-51cf223105bb", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.5111111111111111, "overlap_size": 46 } }, { "data": { "id": "59807bb2-d3ea-4bf3-848b-b553cd98bb1e", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.2620320855614973, "overlap_size": 49 } }, { "data": { "id": "db059ea9-d922-40aa-a2df-771e8378b4ef", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "904648c2-551b-426e-815e-74ced2374458", "similarity_coefficient": 0.2737430167597765, "overlap_size": 49 } }, { "data": { "id": "9882917f-f595-472c-9185-b9d4e53c2af8", "source": "551c599d-46db-4d68-923d-007dcdb10bb7", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49 } }, { "data": { "id": "a9d8ee2c-ad77-4710-b556-8fa6f4e7dd59", "source": "604d62c7-f4cb-4289-a549-64f0bccf5d62", "target": "cddebf8c-4f9a-4ec6-b7c9-83312c9d1c51", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "7bfe6ade-0de0-4c57-ae17-6024d0520523", "source": "604d62c7-f4cb-4289-a549-64f0bccf5d62", "target": "ba7799c9-3170-4d60-b811-31eae5312965", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "8888a6a4-7aa6-47ec-9cb0-7638ff923bbf", "source": "604d62c7-f4cb-4289-a549-64f0bccf5d62", "target": "acb95097-45dd-4bf4-aa47-a787e38591d4", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "cfe3c667-b8d4-4d64-b5c2-affc236ed608", "source": "604d62c7-f4cb-4289-a549-64f0bccf5d62", "target": "e4351080-e123-4e93-98a7-49cdd09e0c1c", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "609e8877-d7e0-42a7-810f-363d2409a312", "source": "604d62c7-f4cb-4289-a549-64f0bccf5d62", "target": "8f2732b7-bdc9-40f5-8845-a8d9beca3b22", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "d2be0a1a-cf72-48e9-8542-974078dd25cd", "source": "604d62c7-f4cb-4289-a549-64f0bccf5d62", "target": "b6922b98-9220-46d4-a7fc-b265074130b3", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "a24da2fb-3730-4c7f-9135-108fa7851cbf", "source": "604d62c7-f4cb-4289-a549-64f0bccf5d62", "target": "3baa2895-d41a-4b91-925b-906637d521ee", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "01e5e471-7c1f-4da2-a8f3-f90ae8d9f46f", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.765625, "overlap_size": 49 } }, { "data": { "id": "6996cdd0-9538-4157-ab75-038c396a81f0", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.75, "overlap_size": 54 } }, { "data": { "id": "a11dc9b9-5ef7-41e0-a373-423a64f73ac1", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49 } }, { "data": { "id": "af30138b-b7e0-4140-b141-99a0c9cf3efe", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.2822085889570552, "overlap_size": 46 } }, { "data": { "id": "396487ae-59f6-4b9a-93f3-0c8f8d05cfce", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.4152542372881356, "overlap_size": 49 } }, { "data": { "id": "702355e6-c0c1-4b7c-b197-de95219c659f", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.2538860103626943, "overlap_size": 49 } }, { "data": { "id": "5418e684-6a4d-4f43-896e-102fc68543d0", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.7538461538461538, "overlap_size": 49 } }, { "data": { "id": "c4ebdf51-2719-41ee-9820-ce86677a6c1e", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.8181818181818182, "overlap_size": 54 } }, { "data": { "id": "3d855822-2d5b-4c83-95d6-c0e815cddf79", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.28994082840236685, "overlap_size": 49 } }, { "data": { "id": "3271f658-6e67-4021-a834-43512b72c0b0", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49 } }, { "data": { "id": "31de2345-a5a6-4edc-8c65-5055c6c4db22", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49 } }, { "data": { "id": "5ffc8aad-8295-45e3-bd39-0819c9902add", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.3194444444444444, "overlap_size": 46 } }, { "data": { "id": "f11857a8-bf31-4a0f-9670-1defd7ada23a", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49 } }, { "data": { "id": "3f0c797b-14cd-417e-b269-0e7e591de1c8", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.44642857142857145, "overlap_size": 50 } }, { "data": { "id": "dde54c68-8937-4d3b-b7ba-b2b8f8c387e7", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.46, "overlap_size": 46 } }, { "data": { "id": "c74ba6c0-2e39-418f-8ea6-9af9e2b7e49c", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.48514851485148514, "overlap_size": 49 } }, { "data": { "id": "6d25ca4a-a3b3-4150-9e67-4276ac1cdb8a", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49 } }, { "data": { "id": "b02f1701-6bed-48df-987d-a9c82c19baaf", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49 } }, { "data": { "id": "d51a06d6-fc54-44b7-b71d-70058940851a", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.28, "overlap_size": 49 } }, { "data": { "id": "2a7347a4-cc09-4aea-9428-daf6abb8d273", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49 } }, { "data": { "id": "cff78162-3539-4cd7-a1ae-a01a3e232885", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.3684210526315789, "overlap_size": 49 } }, { "data": { "id": "5b1f7ba7-a4f0-4017-a870-ea8885ba5c17", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.3769230769230769, "overlap_size": 49 } }, { "data": { "id": "b1880578-43b5-4ab8-bc7f-0947650c7909", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49 } }, { "data": { "id": "bc5f1f84-9632-415d-9947-e00891e1f77e", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.4375, "overlap_size": 49 } }, { "data": { "id": "99ee2c0a-36d9-45c2-bd43-090012c207e2", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.6571428571428571, "overlap_size": 46 } }, { "data": { "id": "3bce149d-76fb-411f-b8c8-51fa0c0a5337", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.4791666666666667, "overlap_size": 46 } }, { "data": { "id": "45d22a5f-21db-4a40-83b4-514fafbf2ec9", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "904648c2-551b-426e-815e-74ced2374458", "similarity_coefficient": 0.2648648648648649, "overlap_size": 49 } }, { "data": { "id": "ecd53f12-6b4c-4f37-9874-e454d4f1375f", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.36923076923076925, "overlap_size": 24 } }, { "data": { "id": "75574c4f-ebec-4a68-ab9d-b97b8d197e13", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.36220472440944884, "overlap_size": 46 } }, { "data": { "id": "f3e2ccd9-04a8-4d7d-ab42-76d60252b4b6", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.44144144144144143, "overlap_size": 49 } }, { "data": { "id": "00ad499f-e818-45f9-951a-57bfc3263a64", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.49, "overlap_size": 49 } }, { "data": { "id": "da732a20-3875-4825-b22b-5477b3cd8d26", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.6865671641791045, "overlap_size": 46 } }, { "data": { "id": "8fd78875-195e-4b9e-8fb8-01e08dcf819e", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.27071823204419887, "overlap_size": 49 } }, { "data": { "id": "c5389800-5779-48ab-b699-8a7fee0f94db", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.6125, "overlap_size": 49 } }, { "data": { "id": "50021a05-2c39-4394-ba11-be8227a4e199", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.41818181818181815, "overlap_size": 46 } }, { "data": { "id": "dee04173-f79d-423b-b28e-e4f61904327a", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.7538461538461538, "overlap_size": 49 } }, { "data": { "id": "cd308160-2b88-4dc1-a560-717050ca5745", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.6764705882352942, "overlap_size": 46 } }, { "data": { "id": "8b26c4ea-cee0-4ee9-a320-9ea5d155899d", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.550561797752809, "overlap_size": 49 } }, { "data": { "id": "5fa60dd5-0700-4d9f-a00b-5fa1064710e0", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.6818181818181818, "overlap_size": 45 } }, { "data": { "id": "3c882c14-1273-4c6d-bfad-59c9bc4f9cc0", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.38028169014084506, "overlap_size": 54 } }, { "data": { "id": "7c776cfe-559c-4c0b-8f22-e56e8e7e4c95", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.6133333333333333, "overlap_size": 46 } }, { "data": { "id": "79e98447-8be1-4550-a339-48a710afdb3d", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49 } }, { "data": { "id": "ac02571a-4024-4a8d-819f-83a3db896e88", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49 } }, { "data": { "id": "fbc6a250-9f28-428e-8865-3bd7cb424d90", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "9fe25695-f65f-4f75-9edb-ff12447e9870", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.8571428571428571, "overlap_size": 54 } }, { "data": { "id": "63f78a2b-9b9b-4be1-a175-6ba6ff4efe63", "source": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.765625, "overlap_size": 49 } }, { "data": { "id": "1ffeb7b2-906a-421e-a332-c9e9a7da7b2f", "source": "0d129048-034a-41db-97c2-56e1fad7f34a", "target": "e178e88f-745f-4a9b-b095-5c7e747df823", "similarity_coefficient": 0.29545454545454547, "overlap_size": 13 } }, { "data": { "id": "09971ab6-7508-418a-8dd1-1436a9edee1e", "source": "0d129048-034a-41db-97c2-56e1fad7f34a", "target": "5fa05894-c36b-4edd-bb4c-cd01142d1c7f", "similarity_coefficient": 0.5121951219512195, "overlap_size": 21 } }, { "data": { "id": "39c85c2f-9614-4e80-a668-ab17aa5950b0", "source": "0d129048-034a-41db-97c2-56e1fad7f34a", "target": "e5310ce1-66db-419c-99f7-0aef3b11c3a0", "similarity_coefficient": 0.275, "overlap_size": 11 } }, { "data": { "id": "267b566a-d0df-499d-88b3-5bda511bbec0", "source": "3426b560-b523-49c6-8a55-6451ac5ff9fb", "target": "e8f60c2e-a8b6-4682-aa31-e95d21714e83", "similarity_coefficient": 0.9, "overlap_size": 27 } }, { "data": { "id": "110a5f3e-9c73-49ee-b222-23f6eb4c8be8", "source": "3426b560-b523-49c6-8a55-6451ac5ff9fb", "target": "6a073b52-0b0c-457e-86cd-2b8ee3c5e8cf", "similarity_coefficient": 0.7096774193548387, "overlap_size": 22 } }, { "data": { "id": "71fd4948-201a-47af-9441-b6bb534bcb21", "source": "077180f7-758c-4448-8995-446025fc993b", "target": "30eaa919-7be0-486b-9bd3-32ffbfc93216", "similarity_coefficient": 0.4657534246575342, "overlap_size": 68 } }, { "data": { "id": "a30618fe-625d-49f8-899c-e0ffcf262da6", "source": "077180f7-758c-4448-8995-446025fc993b", "target": "69c93903-e7d0-4d42-a0f7-d5decb12c571", "similarity_coefficient": 0.34328358208955223, "overlap_size": 46 } }, { "data": { "id": "d5858013-8db4-47d3-a8f9-30b3ccb6afe2", "source": "077180f7-758c-4448-8995-446025fc993b", "target": "d0695f97-406d-467a-ac9e-3fd20d47a3e9", "similarity_coefficient": 0.4696969696969697, "overlap_size": 62 } }, { "data": { "id": "dc29ba22-d7aa-48f2-a8bf-fdb7e6be71f9", "source": "077180f7-758c-4448-8995-446025fc993b", "target": "05636855-db9f-4249-97d1-199b2d37d4fa", "similarity_coefficient": 0.3106060606060606, "overlap_size": 41 } }, { "data": { "id": "1e742982-4556-483a-b84b-c8312fe6bad1", "source": "077180f7-758c-4448-8995-446025fc993b", "target": "5229abb8-d817-4b27-8b54-4679f2c8353e", "similarity_coefficient": 0.42996742671009774, "overlap_size": 132 } }, { "data": { "id": "8ce78ed5-cd5f-4415-b03c-a50446073692", "source": "40dc4eaa-1c72-4314-9757-ceb928903c99", "target": "1c684d9f-9d8f-4487-8fee-cd986c5d844b", "similarity_coefficient": 0.4619289340101523, "overlap_size": 91 } }, { "data": { "id": "adab6220-840b-4f7c-ab0f-c36f489d0eba", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.4791666666666667, "overlap_size": 46 } }, { "data": { "id": "6493be13-a1de-4ce9-a66a-d27a101a9e3c", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.34265734265734266, "overlap_size": 49 } }, { "data": { "id": "d3033a8c-2c3f-47c6-9b0b-8529e2242da4", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.647887323943662, "overlap_size": 46 } }, { "data": { "id": "edd7843e-3186-4de1-8bf1-bdf74a81d10a", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.550561797752809, "overlap_size": 49 } }, { "data": { "id": "35e05e33-55b6-4aed-bd52-6050241127dc", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49 } }, { "data": { "id": "060ef36b-fb32-4990-9660-6313d22465a7", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49 } }, { "data": { "id": "ba98b974-ef60-42d6-bcc5-01cc7f95e3f8", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.296969696969697, "overlap_size": 49 } }, { "data": { "id": "1232ccb6-4ae0-48e1-b131-71c0168dfc69", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.71875, "overlap_size": 46 } }, { "data": { "id": "2283ecbc-cfac-49b5-a219-55660b71185b", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.2974683544303797, "overlap_size": 47 } }, { "data": { "id": "3ee495ca-d35b-4584-8c69-a32b5b68f792", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.32857142857142857, "overlap_size": 46 } }, { "data": { "id": "3ca90c9d-6649-4091-8673-10e39eaf9c5b", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49 } }, { "data": { "id": "161ca629-1a0c-4a21-a051-1f718a1ae00d", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.9122807017543859, "overlap_size": 52 } }, { "data": { "id": "0e5e675e-4aa4-4f5e-9e78-4fbde49c7334", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.8636363636363636, "overlap_size": 57 } }, { "data": { "id": "6fe53851-9105-4c7c-b620-c443a51636da", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.3888888888888889, "overlap_size": 49 } }, { "data": { "id": "9b70fd47-d6cb-44d6-8b57-99b8c845563f", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49 } }, { "data": { "id": "9f3719c0-b266-44ec-8586-9c9723ae443e", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49 } }, { "data": { "id": "b0900524-26f0-4d68-980c-edcce15a70d6", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.4298245614035088, "overlap_size": 49 } }, { "data": { "id": "f3514a94-0845-4049-a534-dbe03ba7c5be", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.46296296296296297, "overlap_size": 50 } }, { "data": { "id": "791f6768-d540-48d9-b959-78c072858e60", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.5, "overlap_size": 49 } }, { "data": { "id": "061869e3-f14e-408b-a5cb-6c037646f40b", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49 } }, { "data": { "id": "30095ddf-f372-47e7-991a-c4ef08d7a771", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.28654970760233917, "overlap_size": 49 } }, { "data": { "id": "16b3dfb0-db95-4d32-b8a5-e8e294ceefc9", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49 } }, { "data": { "id": "a2dda15a-a8bd-4bfa-b5ad-91d02c3f2306", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.39344262295081966, "overlap_size": 24 } }, { "data": { "id": "0cf42aeb-2688-43b4-8ec7-c9631a57f952", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.37398373983739835, "overlap_size": 46 } }, { "data": { "id": "ff464b3a-cc35-485d-b385-57d6843416dd", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49 } }, { "data": { "id": "7e54a295-46a8-48d3-a399-0648641a01e4", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "0055971f-f0db-4a95-9985-afa5a46a5c2e", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.2768361581920904, "overlap_size": 49 } }, { "data": { "id": "9a4eea48-8419-405f-b14b-60d4752157be", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49 } }, { "data": { "id": "9499fe4d-b327-4e6e-ab3e-23a39a24cae5", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.5, "overlap_size": 46 } }, { "data": { "id": "1e6e1d96-20fd-4d74-b7c2-a4d061add300", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49 } }, { "data": { "id": "3ef16752-4d43-4bd9-b950-72e43cf054de", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49 } }, { "data": { "id": "fd0bd17c-b876-4bb8-9252-fc1435987348", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.75, "overlap_size": 48 } }, { "data": { "id": "8c0286ba-030c-42f1-ac94-c25ce58f1b1d", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49 } }, { "data": { "id": "c73bb787-b0ac-42ca-8fa3-00f49d87adde", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.8032786885245902, "overlap_size": 49 } }, { "data": { "id": "6b6f855e-1b4a-4628-bcb8-343a8b1b3961", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.847457627118644, "overlap_size": 50 } }, { "data": { "id": "b7d6eea1-3ba7-4df6-9656-632a22b20880", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.26595744680851063, "overlap_size": 50 } }, { "data": { "id": "571c83cf-22fe-48b6-bcca-271aa3f4ae00", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.765625, "overlap_size": 49 } }, { "data": { "id": "58799beb-bc82-4d43-a108-dc112e883763", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.7258064516129032, "overlap_size": 45 } }, { "data": { "id": "c7616a94-4736-4948-b8a3-f70902d09108", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "904648c2-551b-426e-815e-74ced2374458", "similarity_coefficient": 0.27071823204419887, "overlap_size": 49 } }, { "data": { "id": "1f854fed-30dd-472e-881d-d6fe272da78c", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.6712328767123288, "overlap_size": 49 } }, { "data": { "id": "fe4dae73-5ad5-491d-9090-a5b9c3c572a7", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.7301587301587301, "overlap_size": 46 } }, { "data": { "id": "32d606e1-b43d-457a-a8e0-6a4e388edecc", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "2e9b708c-3915-4bca-9930-926febd75e35", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49 } }, { "data": { "id": "1fc396e9-0cbe-4002-aa06-1a0868a32420", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49 } }, { "data": { "id": "f6fd153f-15c8-4b35-b2bc-c73383498a64", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "d2f15aa9-dc95-49e4-b19a-26712ab8150d", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.8032786885245902, "overlap_size": 49 } }, { "data": { "id": "967227cc-850e-4060-b468-b010d09ae015", "source": "c069a737-3add-46d7-922a-fe2a44aa8aad", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49 } }, { "data": { "id": "a58892e5-a988-4f94-a3d1-d5d4e5f85ba2", "source": "d45a77c2-ed42-4c4f-8e17-002f798690b8", "target": "b15aeda3-04c6-41d3-b5bf-b302b6105dc0", "similarity_coefficient": 0.5339805825242718, "overlap_size": 495 } }, { "data": { "id": "a6c56031-6b89-4e5a-99f4-3feb36d79a1a", "source": "d45a77c2-ed42-4c4f-8e17-002f798690b8", "target": "7db9d43a-1d18-4be6-8d7e-f5e096178a4f", "similarity_coefficient": 0.5339805825242718, "overlap_size": 495 } }, { "data": { "id": "cb10dd16-d725-44b2-8a2f-38a2a4a70a58", "source": "b3c1d117-4b8e-47cb-a880-fe7f925f032d", "target": "afb76ddb-0557-438c-8117-cdb324e3c097", "similarity_coefficient": 0.3935599284436494, "overlap_size": 220 } }, { "data": { "id": "4095608e-8088-493d-9f86-0f43213e80a1", "source": "e9a4d13e-edb7-4554-9bb8-173dad7f61fd", "target": "e6530407-29e9-4497-ba55-17afc1fe868e", "similarity_coefficient": 0.76875, "overlap_size": 123 } }, { "data": { "id": "85c0dc5b-6c8d-4932-b723-1cb5e5ca6578", "source": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "20902d38-3a6f-4636-88d2-48d7bbc8084d", "source": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "a852babd-c62f-44c7-afe2-2e4e80e6495d", "source": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "a8e62ae2-2901-4537-85d6-803bd08919ac", "source": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "e5439532-567a-42f5-a94d-c447ebc8b994", "source": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "f5db28f7-b5bc-485a-8f43-e58cf6012e7e", "source": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31 } }, { "data": { "id": "0abb0120-6617-493b-911f-ccf5c657a5f6", "source": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.6554621848739496, "overlap_size": 78 } }, { "data": { "id": "08c583ea-f783-4c61-b91d-8183bfb23abf", "source": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "1961e82b-e0e6-4ac6-9fdb-8b9078b14924", "source": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "2d870684-652b-454e-8abe-faf76c1043c2", "source": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.3561643835616438, "overlap_size": 78 } }, { "data": { "id": "23962d22-0eab-4849-a3da-0bab477fd84a", "source": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78 } }, { "data": { "id": "6e8ed7cd-6d58-48c1-a671-c4277ba89632", "source": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "130a025c-5279-4db1-ba54-700a8f80fc27", "source": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "7193cebb-6bc4-44ca-866f-e88347371507", "source": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "15e55e6d-aa3e-4b46-a6d9-968b21715d10", "source": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78 } }, { "data": { "id": "746838c2-77e2-476a-8176-4088a1e3dba6", "source": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "f37a038d-3a25-4741-b70e-83e712cba939", "source": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "099da166-418a-4118-a96f-581f7091c6da", "source": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.5, "overlap_size": 78 } }, { "data": { "id": "b44da73a-3d8e-40f7-8bb9-6575e22a825c", "source": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "5ada83e0-6a26-4c9d-8d58-de596b6e9833", "source": "84484178-7a35-4a40-a193-fc724feb529e", "target": "58ef2adb-271d-407d-809d-d4fd53a316f0", "similarity_coefficient": 0.2804878048780488, "overlap_size": 23 } }, { "data": { "id": "c77895b5-e2fe-45ac-b8b8-a5bc7ca8f17b", "source": "84484178-7a35-4a40-a193-fc724feb529e", "target": "eceebf78-8b57-4a2d-9f09-9d1250316733", "similarity_coefficient": 0.3, "overlap_size": 12 } }, { "data": { "id": "5dce55b2-f660-42d8-b384-16afca084d3a", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49 } }, { "data": { "id": "da4f3c17-30b6-41d9-897d-9af7f1610957", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.38333333333333336, "overlap_size": 46 } }, { "data": { "id": "2244635a-7270-4e28-8fcb-48a90fb02e53", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.25654450261780104, "overlap_size": 49 } }, { "data": { "id": "2edf2388-3621-4f1e-a594-514d0466e38c", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "292595e2-89e8-4a67-a723-85c3d24180a0", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "904648c2-551b-426e-815e-74ced2374458", "similarity_coefficient": 0.26424870466321243, "overlap_size": 51 } }, { "data": { "id": "a95836f7-a22d-4e01-8625-fcd4fb0a5ba9", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.5, "overlap_size": 61 } }, { "data": { "id": "80e70d17-b3a1-44fd-b92f-c7b4f6a13bc0", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49 } }, { "data": { "id": "bebcb98f-b4ad-4c9e-b75a-5b7447284e87", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.6756756756756757, "overlap_size": 50 } }, { "data": { "id": "fe304992-9cc7-48ea-b7bc-5befe0dad1d8", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.5867768595041323, "overlap_size": 71 } }, { "data": { "id": "4c517b48-7aba-43d9-ab98-db4edddf8cb9", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.3828125, "overlap_size": 49 } }, { "data": { "id": "33c82ebb-2c02-4945-94d2-bdccab437a93", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.27918781725888325, "overlap_size": 55 } }, { "data": { "id": "361c6821-207f-4618-b759-572bdc934148", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.43558282208588955, "overlap_size": 71 } }, { "data": { "id": "6034fb99-fb14-4c70-92cb-3ae6655bfb9b", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.44144144144144143, "overlap_size": 49 } }, { "data": { "id": "7c4f2ebf-a92f-4456-99ee-72875feca9d7", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49 } }, { "data": { "id": "dc250a57-ade2-48b8-8eb8-40c5e0973156", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49 } }, { "data": { "id": "f773304f-d041-4e17-9b8d-f903241619ea", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49 } }, { "data": { "id": "9be6a29e-12c9-4f11-bcfb-feced106de7e", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49 } }, { "data": { "id": "afc600ee-ec7c-4d7b-b3f1-80d2137efad4", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.425, "overlap_size": 51 } }, { "data": { "id": "93ced937-a92e-4aca-a017-50f8a667bbc3", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.6582278481012658, "overlap_size": 52 } }, { "data": { "id": "d8793233-a03f-4b7b-8b58-c0391446f1de", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49 } }, { "data": { "id": "5769d1ec-f30f-4cde-a491-e3cfc785cc66", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.620253164556962, "overlap_size": 49 } }, { "data": { "id": "63261eb6-36aa-4d3f-9d44-1544be67fdcc", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.611764705882353, "overlap_size": 52 } }, { "data": { "id": "572badf4-7738-4686-8e6c-bafa667684af", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.4492753623188406, "overlap_size": 62 } }, { "data": { "id": "995d097f-214e-472c-bde8-6af57ae15bf4", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.44537815126050423, "overlap_size": 53 } }, { "data": { "id": "7f873264-c265-4f07-8d92-c55d900f6afa", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.5, "overlap_size": 52 } }, { "data": { "id": "ba518f96-ceb7-4159-9db8-d84fc61f6fbe", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.6582278481012658, "overlap_size": 52 } }, { "data": { "id": "59b93cc9-9adc-430d-8f83-7a6348c19e27", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.5288461538461539, "overlap_size": 55 } }, { "data": { "id": "06889c32-5d75-4106-aed4-348c40a09891", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.4049586776859504, "overlap_size": 49 } }, { "data": { "id": "1cd691e3-4299-47aa-aa50-d679ad41b7e2", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.4407894736842105, "overlap_size": 67 } }, { "data": { "id": "28a74484-2d04-4cea-8bb1-2f8685fa1da5", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49 } }, { "data": { "id": "c0236073-ca2c-4c92-bc9c-48cd90c8d2e4", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "20bd41cf-f8b0-4550-a59b-6f487191d4ef", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.575, "overlap_size": 46 } }, { "data": { "id": "b2d3fbf2-a14d-4c85-80b6-6b1ec5c3e8e0", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.3897058823529412, "overlap_size": 53 } }, { "data": { "id": "5cdbddf8-25eb-4a4e-8964-b74601e9b01a", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.5510204081632653, "overlap_size": 54 } }, { "data": { "id": "141a4955-998e-46e2-9c43-7c1fdd7f74f0", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.45222929936305734, "overlap_size": 71 } }, { "data": { "id": "5dad6c81-4afd-4bd2-a624-5347c55e1fe5", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.6582278481012658, "overlap_size": 52 } }, { "data": { "id": "eb8cdbae-d1c4-4e58-85b8-98beeae70c0f", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49 } }, { "data": { "id": "cb69c0b5-6c77-4381-9174-a974033516e4", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.32, "overlap_size": 24 } }, { "data": { "id": "cd732448-45ad-4a24-a480-666e9fa841e0", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.6455696202531646, "overlap_size": 51 } }, { "data": { "id": "c3b77ceb-1f66-4882-9d5c-6dca289afb7f", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49 } }, { "data": { "id": "61f6132d-ecaa-46b0-a23f-edb67b7351a1", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.5921052631578947, "overlap_size": 45 } }, { "data": { "id": "ee5e1f92-5e2e-493c-94ff-2d3ed1985169", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.5257731958762887, "overlap_size": 51 } }, { "data": { "id": "3f89a3d6-4057-4985-8e8d-b83ddf96a2ac", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.4375, "overlap_size": 49 } }, { "data": { "id": "9a926cdb-d818-460e-ae14-7eea2eb67bc2", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.33766233766233766, "overlap_size": 52 } }, { "data": { "id": "c5526d58-3f23-48c4-9049-65671f0cdf79", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.6375, "overlap_size": 51 } }, { "data": { "id": "84b1b8aa-d933-4bd2-adbb-432f218f01d2", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.4152542372881356, "overlap_size": 49 } }, { "data": { "id": "293251be-6fac-4490-b5fb-22a6ce3e1993", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49 } }, { "data": { "id": "7b239aba-d6c1-474b-8da8-0764c35ea540", "source": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49 } }, { "data": { "id": "33eb1260-6a00-47ae-b51e-f2b26a473802", "source": "74509417-18fd-44c8-a5bf-187901eaad5b", "target": "c0f585a3-ef38-4c45-8a8a-28aeb1006ea5", "similarity_coefficient": 0.2545454545454545, "overlap_size": 14 } }, { "data": { "id": "cd9139ab-f8de-4c64-86a2-85b7790811ba", "source": "74509417-18fd-44c8-a5bf-187901eaad5b", "target": "de92908d-dff2-4bac-827a-0606c7dd1158", "similarity_coefficient": 0.26, "overlap_size": 13 } }, { "data": { "id": "b039d6a7-e239-4f3d-9b5f-f4b0a2425df4", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49 } }, { "data": { "id": "8c9de111-6249-4a32-9629-075cdf86576a", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.34532374100719426, "overlap_size": 48 } }, { "data": { "id": "46eed7c4-0b73-4f5c-9a3c-1d129e2da9d2", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49 } }, { "data": { "id": "1433602f-0b0e-409d-ba52-48c00f8be028", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.3288590604026846, "overlap_size": 49 } }, { "data": { "id": "26ccc5fc-24a2-4c84-b29d-406d3b727c2b", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49 } }, { "data": { "id": "e94ff424-3c73-44e1-a575-e010eaaeabae", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.44144144144144143, "overlap_size": 49 } }, { "data": { "id": "09ee8bf1-c414-4f16-8a84-f9654081d04a", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49 } }, { "data": { "id": "46c93ce1-28cc-42df-8211-043e5dac39dd", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.3816793893129771, "overlap_size": 50 } }, { "data": { "id": "2de86c6f-8411-47c4-9fbb-bf4d3f1a4287", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.4639175257731959, "overlap_size": 45 } }, { "data": { "id": "8939b120-de91-4b33-8fae-2b288ac54b51", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.4339622641509434, "overlap_size": 46 } }, { "data": { "id": "d379be1a-d033-46ba-83d0-60bf85c747f7", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49 } }, { "data": { "id": "e75145c2-db89-403a-bd50-6e4a25bd074d", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.6956521739130435, "overlap_size": 64 } }, { "data": { "id": "69d31983-1e48-4379-953f-c0965c29e7a6", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "da6dcde1-0b38-48e6-b870-d9c12e25b13e", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.49, "overlap_size": 49 } }, { "data": { "id": "f30ed6e9-1428-43e5-86c7-5fd17a104143", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.35251798561151076, "overlap_size": 49 } }, { "data": { "id": "5081084e-db0e-4e3c-a60f-bd98945eaa47", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.3684210526315789, "overlap_size": 49 } }, { "data": { "id": "1e00a169-be14-4111-b940-ade83b7ac74c", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "72df218b-f1d4-47dd-89df-9b80de9351c7", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49 } }, { "data": { "id": "e9dcfa2c-8852-453c-a0e1-72514e23fbff", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.3511450381679389, "overlap_size": 46 } }, { "data": { "id": "cd61277f-256a-4d1e-b195-ff02c777f66f", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.29878048780487804, "overlap_size": 49 } }, { "data": { "id": "467dc2e8-1e09-4b78-954d-e98c249ae113", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.3402777777777778, "overlap_size": 49 } }, { "data": { "id": "0de4f68f-586c-4ecf-b8e8-cc0d9431620e", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.5154639175257731, "overlap_size": 50 } }, { "data": { "id": "0b3a2190-11ff-42e8-bfe9-703b60bbc043", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "42143113-f264-499b-9af9-d5dcec070182", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.2911392405063291, "overlap_size": 46 } }, { "data": { "id": "e5a39084-44d7-497b-93ba-86949cdef747", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.26285714285714284, "overlap_size": 46 } }, { "data": { "id": "9b603844-d7a6-4af0-9d19-3867267d6c82", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49 } }, { "data": { "id": "be0c790d-c2d9-4944-b85f-8db8908d0146", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49 } }, { "data": { "id": "be8a15e0-a8e5-4c10-8b87-2af53d49c972", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49 } }, { "data": { "id": "656cf1f6-117e-46fd-8323-40325dab5281", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.36220472440944884, "overlap_size": 46 } }, { "data": { "id": "3cfc4f0c-e201-48ae-a29c-1c313f4d85bc", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.34265734265734266, "overlap_size": 49 } }, { "data": { "id": "17e39783-5881-438d-8e01-6392170128d9", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.48484848484848486, "overlap_size": 48 } }, { "data": { "id": "16acc26d-ce98-4270-94c5-deb63cc1006b", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.4298245614035088, "overlap_size": 49 } }, { "data": { "id": "33800e80-84e1-48cc-9ffb-34341e1b6611", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.34507042253521125, "overlap_size": 49 } }, { "data": { "id": "67b09cbb-a1ad-43cf-8590-3a97ca258fd5", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "59c6cc56-810e-4e4b-a18f-9db6437930ec", "similarity_coefficient": 0.3087248322147651, "overlap_size": 92 } }, { "data": { "id": "f7bc0291-0ef9-4fa2-ba19-1c35024c76f2", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.3125, "overlap_size": 50 } }, { "data": { "id": "5d1a3cd0-b3dc-4aa2-8330-9667b267ef50", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.494949494949495, "overlap_size": 49 } }, { "data": { "id": "d9910bca-601e-4d1e-8496-a8b82ba956eb", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.4083333333333333, "overlap_size": 49 } }, { "data": { "id": "1b403d4b-524d-4bd4-8d43-615a22a90dda", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49 } }, { "data": { "id": "73391c7d-7887-4e67-b320-f3d59ceb52ea", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.46938775510204084, "overlap_size": 46 } }, { "data": { "id": "e8542909-6963-4707-af4f-ef883b905bf0", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.29714285714285715, "overlap_size": 52 } }, { "data": { "id": "13ac202b-2b50-4eb9-bfb5-ed53117b28be", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "690d048a-ce8c-4e43-9ab0-ed9976703ad9", "similarity_coefficient": 0.2727272727272727, "overlap_size": 63 } }, { "data": { "id": "1e67fbad-58d9-425c-be89-b238b3935355", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.46464646464646464, "overlap_size": 46 } }, { "data": { "id": "b2eed6cc-b847-4b53-bbac-dfffd433fa4b", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49 } }, { "data": { "id": "1ab94655-e7c2-4fff-a3c9-1412a545175f", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.25, "overlap_size": 24 } }, { "data": { "id": "9b8955e6-f456-47bf-beef-d29a95a18a52", "source": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.37404580152671757, "overlap_size": 49 } }, { "data": { "id": "e7133ed9-1939-4a19-b99c-9b39dc014901", "source": "3721be01-7fa4-400f-b4f5-9bca4e773261", "target": "b570f307-7c80-461e-9c1b-ff264f6ff8af", "similarity_coefficient": 0.35511363636363635, "overlap_size": 125 } }, { "data": { "id": "deb6952e-3cf6-435d-9cae-13e3a4465efa", "source": "3721be01-7fa4-400f-b4f5-9bca4e773261", "target": "3c6595b7-4300-40c2-9b8b-be0dea463aa6", "similarity_coefficient": 0.29152542372881357, "overlap_size": 172 } }, { "data": { "id": "329240ff-0e05-4bd4-b3b2-1c559e632dc0", "source": "3721be01-7fa4-400f-b4f5-9bca4e773261", "target": "7861fd51-2caf-44e2-b4cb-7e64f8c0b51f", "similarity_coefficient": 0.8994708994708994, "overlap_size": 170 } }, { "data": { "id": "9a83b57e-220a-43de-b53f-b63441511311", "source": "3721be01-7fa4-400f-b4f5-9bca4e773261", "target": "1cf1ee8e-77cc-4e7d-8939-adf02b347c93", "similarity_coefficient": 0.35490605427974947, "overlap_size": 170 } }, { "data": { "id": "79dfd1ef-4cbd-4391-9e90-282c1148a4f9", "source": "3721be01-7fa4-400f-b4f5-9bca4e773261", "target": "db958270-8c68-47a1-8245-d553c49a126f", "similarity_coefficient": 0.39296187683284456, "overlap_size": 134 } }, { "data": { "id": "69885833-6b14-4163-ad4e-114e8f8484ad", "source": "3721be01-7fa4-400f-b4f5-9bca4e773261", "target": "916b518e-1a95-45db-be11-8e45704c11f1", "similarity_coefficient": 0.25112107623318386, "overlap_size": 56 } }, { "data": { "id": "d3db850d-18e6-452e-af84-eca3461ee4dc", "source": "3721be01-7fa4-400f-b4f5-9bca4e773261", "target": "750e524e-6f52-4983-9819-5b723c8afe66", "similarity_coefficient": 0.8941798941798942, "overlap_size": 169 } }, { "data": { "id": "8b90c6c0-a40e-4caf-84a7-78e492780a91", "source": "29e82af7-6e38-474e-b6bb-dca8aa2b6147", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.2857142857142857, "overlap_size": 148 } }, { "data": { "id": "cb731fd5-101b-4e77-a612-b6047666db29", "source": "29e82af7-6e38-474e-b6bb-dca8aa2b6147", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.2980769230769231, "overlap_size": 155 } }, { "data": { "id": "ad16c686-951b-4dc3-973d-39a0b3d0eec3", "source": "29e82af7-6e38-474e-b6bb-dca8aa2b6147", "target": "fb172c5a-c242-43e8-98a4-bc060890f253", "similarity_coefficient": 0.38596491228070173, "overlap_size": 220 } }, { "data": { "id": "e940d6c0-5809-4c8e-bd73-bc2e56fe409d", "source": "29e82af7-6e38-474e-b6bb-dca8aa2b6147", "target": "080d7999-edb3-459d-97a1-0b0c699425b5", "similarity_coefficient": 0.4420849420849421, "overlap_size": 229 } }, { "data": { "id": "db91ad54-6072-441b-8968-dbd672fbcc5d", "source": "29e82af7-6e38-474e-b6bb-dca8aa2b6147", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.31467181467181465, "overlap_size": 163 } }, { "data": { "id": "65ebf239-f8d1-4098-908f-c47a7fc7e497", "source": "29e82af7-6e38-474e-b6bb-dca8aa2b6147", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.32625482625482627, "overlap_size": 169 } }, { "data": { "id": "2e45d593-0641-4a4d-aaf0-2db81d74e67c", "source": "29e82af7-6e38-474e-b6bb-dca8aa2b6147", "target": "7ca2e3de-9935-4044-acc8-9703f93d0780", "similarity_coefficient": 0.7258687258687259, "overlap_size": 376 } }, { "data": { "id": "c2dbdac9-7cd5-4f2e-a413-9ee46b23cd02", "source": "29e82af7-6e38-474e-b6bb-dca8aa2b6147", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.34942084942084944, "overlap_size": 181 } }, { "data": { "id": "f6848b3b-9e7f-4813-8043-fe1830d34566", "source": "a87e7bfc-894c-4e4b-b80f-64bba3e8adc1", "target": "9b45383f-4e68-4ffa-a477-21d4f8675759", "similarity_coefficient": 0.975, "overlap_size": 39 } }, { "data": { "id": "7c07440f-001f-427f-87db-be6403fa9aac", "source": "ca74dbd7-f987-4bb8-81f5-3c8fef7fee7c", "target": "b15aeda3-04c6-41d3-b5bf-b302b6105dc0", "similarity_coefficient": 0.7713052858683926, "overlap_size": 715 } }, { "data": { "id": "ac02feee-4891-42d0-b4ea-e9b2a48fe4fe", "source": "ca74dbd7-f987-4bb8-81f5-3c8fef7fee7c", "target": "d45a77c2-ed42-4c4f-8e17-002f798690b8", "similarity_coefficient": 0.6923076923076923, "overlap_size": 495 } }, { "data": { "id": "ae9c486f-d701-4553-b812-fd2e3d5df16f", "source": "ca74dbd7-f987-4bb8-81f5-3c8fef7fee7c", "target": "7db9d43a-1d18-4be6-8d7e-f5e096178a4f", "similarity_coefficient": 0.7713052858683926, "overlap_size": 715 } }, { "data": { "id": "b8a7a96c-0e13-45dc-b4f6-6ef2214e6f53", "source": "a83c9102-412e-47a3-888d-1d5d38000f18", "target": "f97b81a8-1862-43e0-8494-7bbe4766e167", "similarity_coefficient": 0.3776595744680851, "overlap_size": 71 } }, { "data": { "id": "e4d4cffb-c919-4396-812a-0f76806d0e73", "source": "a83c9102-412e-47a3-888d-1d5d38000f18", "target": "384f6879-1c32-46c3-8b2b-7c9ded001526", "similarity_coefficient": 0.6698113207547169, "overlap_size": 71 } }, { "data": { "id": "09d7cf5d-8a57-446b-a16f-b735cbbf08ce", "source": "a83c9102-412e-47a3-888d-1d5d38000f18", "target": "cf3662ba-ff22-4e1e-b61e-12ecb731cce6", "similarity_coefficient": 0.8987341772151899, "overlap_size": 71 } }, { "data": { "id": "f3fbfa42-f418-4006-b925-b414e89b8da8", "source": "aff65c15-2d4e-4423-a37b-e57ce775f018", "target": "4db57ec5-4334-45bf-b67e-a42520b33bcb", "similarity_coefficient": 0.6501650165016502, "overlap_size": 197 } }, { "data": { "id": "5b14fc96-67fd-4534-9bee-230d43792c47", "source": "aff65c15-2d4e-4423-a37b-e57ce775f018", "target": "4e2e95c9-0874-44db-b7e5-fad6bfa0022e", "similarity_coefficient": 0.5519125683060109, "overlap_size": 303 } }, { "data": { "id": "52ccf662-88ee-4867-b490-e2476419a7ae", "source": "a8e70dca-3a69-4116-8443-2107e98d703e", "target": "e6dea521-d51c-4a74-9880-b6a22b6a0eca", "similarity_coefficient": 0.2549019607843137, "overlap_size": 13 } }, { "data": { "id": "0bcea271-b5c5-4b2a-9f5b-d8b0b9e4ec8d", "source": "a8e70dca-3a69-4116-8443-2107e98d703e", "target": "b5d08fd6-8c62-4f6b-b3ea-2c9316d7a8b1", "similarity_coefficient": 0.6666666666666666, "overlap_size": 32 } }, { "data": { "id": "951465d4-05f7-42e1-9f8f-d5645d0b076e", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "1c04e7f6-f075-48cf-94cf-3838701809a4", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.40476190476190477, "overlap_size": 68 } }, { "data": { "id": "9a5f5ad7-804c-42ba-a606-5600863d7af8", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.4298245614035088, "overlap_size": 49 } }, { "data": { "id": "a52f432c-e516-4e7c-a601-9a507160cfd1", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.32894736842105265, "overlap_size": 25 } }, { "data": { "id": "4c248205-c8d2-49fb-a7f3-7ad4cb66fa4c", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49 } }, { "data": { "id": "7dfe45ca-4983-4b92-a77f-d532d8e54362", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.6125, "overlap_size": 49 } }, { "data": { "id": "047cb493-3fa3-4f7c-b06f-ca23023bc806", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49 } }, { "data": { "id": "662eed3a-1422-4035-a505-6645c7f3d54b", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.620253164556962, "overlap_size": 49 } }, { "data": { "id": "ce02e3eb-a829-475f-a0a7-a5ba7377d109", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.392, "overlap_size": 49 } }, { "data": { "id": "87bf88e3-07d3-4222-a689-4d16ab83cfa2", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "baaeea0d-c3d1-49d2-9266-5f98cc29e049", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.4069767441860465, "overlap_size": 70 } }, { "data": { "id": "b8160bac-0418-45f6-91fe-69405a074c88", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.5822784810126582, "overlap_size": 46 } }, { "data": { "id": "3df64141-57d6-4df9-bb1e-3287630ff73e", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49 } }, { "data": { "id": "72e49920-ba23-4a51-a804-a0e4863a0f60", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "5824b50b-04eb-4249-ac9f-47d6f6963387", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.42592592592592593, "overlap_size": 46 } }, { "data": { "id": "c68e6697-2b75-4b9a-bcac-9b9a73824fcb", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "bef9d07e-4d5a-4120-8052-9032b31cd1d3", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.5609756097560976, "overlap_size": 46 } }, { "data": { "id": "2d156d5c-47eb-4e44-978f-ba0aa6668620", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.4083333333333333, "overlap_size": 49 } }, { "data": { "id": "4f0cc283-2a98-48da-9294-8d1db86143b8", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.5163934426229508, "overlap_size": 63 } }, { "data": { "id": "ab473224-8a40-4b30-84e8-70c945de96c9", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "b57721c8-d844-4fe0-ba23-a4024c800677", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "4d0e2923-6c42-4593-9010-f646049c5d90", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.25742574257425743, "overlap_size": 52 } }, { "data": { "id": "45d7962c-62df-4f0d-8330-28205046fb14", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.5396825396825397, "overlap_size": 68 } }, { "data": { "id": "e0ed351e-ada9-41a6-914e-3bad19c85c8c", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.948051948051948, "overlap_size": 73 } }, { "data": { "id": "834e2e21-2ec0-4c5e-81bb-f9d1ac8575b3", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.9054054054054054, "overlap_size": 67 } }, { "data": { "id": "d5063cf7-20b8-427f-b62c-4e0c17d572f6", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.550561797752809, "overlap_size": 49 } }, { "data": { "id": "86872e82-3669-4d35-839d-a62cc94cfa81", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.3983739837398374, "overlap_size": 49 } }, { "data": { "id": "62471ad5-621f-4588-ad01-79629f94fb77", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.3770491803278688, "overlap_size": 46 } }, { "data": { "id": "796dcbd1-d89f-49fa-8ec8-8d112178e06e", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.9012345679012346, "overlap_size": 73 } }, { "data": { "id": "8a6b48d9-b3dd-4f7b-ab03-7f8ae9b0be59", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "5f636597-c233-4403-bb6a-c40548470078", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.5647058823529412, "overlap_size": 48 } }, { "data": { "id": "afaa65aa-fe91-4083-bf4f-ae8cd75e3c2b", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "080d7999-edb3-459d-97a1-0b0c699425b5", "similarity_coefficient": 0.30735930735930733, "overlap_size": 71 } }, { "data": { "id": "3e6d6d9d-55d9-4f24-83e7-aab2d01c9b06", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.43636363636363634, "overlap_size": 48 } }, { "data": { "id": "9523a59d-a9fe-457a-96dc-617c2a3a86ad", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.44642857142857145, "overlap_size": 50 } }, { "data": { "id": "f867312b-5044-434a-b621-4565c278c525", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.3081761006289308, "overlap_size": 49 } }, { "data": { "id": "cf43de8d-da03-4d11-9169-1adb4109a6c6", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.41975308641975306, "overlap_size": 68 } }, { "data": { "id": "306a2325-3396-43c2-a08c-0f4042f9bc2c", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.5769230769230769, "overlap_size": 45 } }, { "data": { "id": "412e05cb-a2db-4b57-83bc-f17de1c07c62", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.28488372093023256, "overlap_size": 49 } }, { "data": { "id": "8f0eb879-d049-4f54-b004-64ccf386cd04", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "fb172c5a-c242-43e8-98a4-bc060890f253", "similarity_coefficient": 0.26838235294117646, "overlap_size": 73 } }, { "data": { "id": "8bc42ee2-287a-4f1d-8083-1926888b491b", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.4224137931034483, "overlap_size": 49 } }, { "data": { "id": "8d52bff3-13fc-43b7-82d0-91a6d3041242", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.575, "overlap_size": 46 } }, { "data": { "id": "5ba47382-d470-4260-87bd-be7c51dfa402", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49 } }, { "data": { "id": "bbc300f5-da2b-46df-906c-b9e8bc12723b", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.8295454545454546, "overlap_size": 73 } }, { "data": { "id": "f98c24a6-680a-40e4-9a48-93b204d80ee5", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49 } }, { "data": { "id": "d5f59486-1e5f-4130-a02e-9ca7647fdb76", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.5795454545454546, "overlap_size": 51 } }, { "data": { "id": "49bf6f34-1ffd-43cc-a7e0-d3355f9e66ab", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.45323741007194246, "overlap_size": 63 } }, { "data": { "id": "ddee49ab-1aaa-4376-b493-a5714eafffde", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.5483870967741935, "overlap_size": 51 } }, { "data": { "id": "69d98687-7612-41d2-87f0-6280b588eb03", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49 } }, { "data": { "id": "57d0ca37-e93a-46f5-a8fb-3fb3b81bf6c1", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49 } }, { "data": { "id": "9f9c84fe-bc70-4113-bf85-0b796eeee409", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.3769230769230769, "overlap_size": 49 } }, { "data": { "id": "551f4dd8-93b9-457c-8ced-601d7e8b4822", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.3546099290780142, "overlap_size": 50 } }, { "data": { "id": "cf27044a-d77f-4d73-a11d-c088e4849c6f", "source": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49 } }, { "data": { "id": "282b3914-8b2a-4433-abf6-dbe14ad5ff9d", "source": "19fb5f6d-a9bf-45ff-ad4a-dc1d1c940538", "target": "9a9544c9-a4e9-4add-8e45-0b0b5382c717", "similarity_coefficient": 0.6261682242990654, "overlap_size": 67 } }, { "data": { "id": "90fdabaf-4409-437a-b503-a8a6b26b6bf2", "source": "3655cbeb-e303-47c6-b442-f4039b25d644", "target": "acb95097-45dd-4bf4-aa47-a787e38591d4", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "8f73c549-2733-4dda-9890-4b0ad0d10370", "source": "3655cbeb-e303-47c6-b442-f4039b25d644", "target": "cddebf8c-4f9a-4ec6-b7c9-83312c9d1c51", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "7045cbaf-6b97-4bb2-a556-c657844085e6", "source": "3655cbeb-e303-47c6-b442-f4039b25d644", "target": "e4351080-e123-4e93-98a7-49cdd09e0c1c", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "61af98e2-2a4e-44e7-aaed-a9ac9a7e9187", "source": "3655cbeb-e303-47c6-b442-f4039b25d644", "target": "8f2732b7-bdc9-40f5-8845-a8d9beca3b22", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "1dbc446f-ef1d-4ee2-a220-671289825a8a", "source": "3655cbeb-e303-47c6-b442-f4039b25d644", "target": "ba7799c9-3170-4d60-b811-31eae5312965", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "f375d0e1-cb03-48a9-a632-fde10037f80a", "source": "3655cbeb-e303-47c6-b442-f4039b25d644", "target": "604d62c7-f4cb-4289-a549-64f0bccf5d62", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "29f0c2f4-7c12-4cb5-ae92-b22150f98633", "source": "3655cbeb-e303-47c6-b442-f4039b25d644", "target": "b6922b98-9220-46d4-a7fc-b265074130b3", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "5e122ba3-25e4-4bdc-a819-4999f396079e", "source": "3655cbeb-e303-47c6-b442-f4039b25d644", "target": "3baa2895-d41a-4b91-925b-906637d521ee", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "9beb25f5-936a-4dfe-8568-03fa8bea61f8", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.4015748031496063, "overlap_size": 51 } }, { "data": { "id": "34bbf113-5f35-494c-820b-46e0ecbf674d", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.3087248322147651, "overlap_size": 46 } }, { "data": { "id": "bf13c47a-f6bd-4366-9806-b97be4d37a5d", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.5, "overlap_size": 49 } }, { "data": { "id": "45459cb5-a562-404a-885a-3f48d4370e1b", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "904648c2-551b-426e-815e-74ced2374458", "similarity_coefficient": 0.2549019607843137, "overlap_size": 52 } }, { "data": { "id": "bfc257bf-1962-492e-a840-b1828365e153", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.49, "overlap_size": 49 } }, { "data": { "id": "db514bfa-7898-4192-8c70-fb86906923f7", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.4153846153846154, "overlap_size": 54 } }, { "data": { "id": "773f37c6-c142-4605-9901-faf045d02ce7", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49 } }, { "data": { "id": "638fca2a-685f-4e6b-8107-90f4cd867559", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49 } }, { "data": { "id": "27e6230b-3059-41b6-b92b-8c5c57d46552", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "690d048a-ce8c-4e43-9ab0-ed9976703ad9", "similarity_coefficient": 0.37681159420289856, "overlap_size": 78 } }, { "data": { "id": "608ad048-7c26-4e50-81f5-413ad453cc97", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.29896907216494845, "overlap_size": 58 } }, { "data": { "id": "6ee50336-3e9e-4ae4-930b-03a2a8729caf", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.5777777777777777, "overlap_size": 52 } }, { "data": { "id": "bbe81e9a-4622-49f4-b6ff-35b252cca08b", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.5681818181818182, "overlap_size": 50 } }, { "data": { "id": "1919e1c6-2a2f-46aa-a195-44f3622555fa", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.27710843373493976, "overlap_size": 46 } }, { "data": { "id": "05e085fa-1ad1-4a99-9e14-e74ede480c4b", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.3983739837398374, "overlap_size": 49 } }, { "data": { "id": "28dc7391-3cee-4edd-b37b-a19713888e3f", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.2765957446808511, "overlap_size": 52 } }, { "data": { "id": "6d1f116a-7b98-4585-bfec-d027918495f2", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.625, "overlap_size": 55 } }, { "data": { "id": "83128dfb-15ca-4032-b0f0-29b13528bbcd", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.27461139896373055, "overlap_size": 53 } }, { "data": { "id": "4b5f311e-f7e2-44a0-b97c-e3650049af84", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "df7d8d09-30e1-4c40-9a20-fc4cd8a8000d", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.27586206896551724, "overlap_size": 24 } }, { "data": { "id": "d3569aae-4ee2-440b-8567-5a458030f3d3", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49 } }, { "data": { "id": "52aa1885-8ff8-402b-bb70-def677a07968", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.3581081081081081, "overlap_size": 53 } }, { "data": { "id": "89f50e04-16ba-4a03-b5f0-62c35d4c31f7", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49 } }, { "data": { "id": "c23b2449-ab13-46e6-bde1-7ecbf1e37478", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.35, "overlap_size": 49 } }, { "data": { "id": "a78f9483-d0ae-4f7d-ae90-5453418a545d", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.3684210526315789, "overlap_size": 49 } }, { "data": { "id": "bb77232f-0c6d-4adf-9bea-1c1d20294c9a", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.5098039215686274, "overlap_size": 52 } }, { "data": { "id": "c99ee238-1fe6-49ab-b9be-31631c60967b", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.4369747899159664, "overlap_size": 52 } }, { "data": { "id": "e24fb122-c3bf-41e8-9ce4-0a4a0a0a3258", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "59c6cc56-810e-4e4b-a18f-9db6437930ec", "similarity_coefficient": 0.2785234899328859, "overlap_size": 83 } }, { "data": { "id": "1fa7f2a0-8f2b-4d29-9f0f-40e5869a81a7", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.6071428571428571, "overlap_size": 51 } }, { "data": { "id": "65bcdb6c-1c38-461a-8095-b1dd1d50a9d7", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.5, "overlap_size": 46 } }, { "data": { "id": "dde22f3a-5587-4b19-8919-66c7a7f493e3", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.3888888888888889, "overlap_size": 49 } }, { "data": { "id": "f844ef6e-d0b8-442f-9022-fc9de72983bb", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.4, "overlap_size": 48 } }, { "data": { "id": "77223dbc-58b3-42a4-a605-c8fb59f0ed6c", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49 } }, { "data": { "id": "2aa66736-6b02-4b47-8646-c2bbf39d6bbf", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49 } }, { "data": { "id": "e5b6681d-cdab-4f98-9166-e769c64de27c", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.625, "overlap_size": 55 } }, { "data": { "id": "3d283ac5-3f85-47ea-a30f-dbc4159058ba", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.3969465648854962, "overlap_size": 52 } }, { "data": { "id": "ab6f32fe-21f4-415a-853c-1f2270b0db50", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.29775280898876405, "overlap_size": 53 } }, { "data": { "id": "4e6ec0df-210b-4bb2-8f07-44a16abc9b94", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49 } }, { "data": { "id": "12e0df92-c794-4c1b-b46c-763081ba8f27", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.494949494949495, "overlap_size": 49 } }, { "data": { "id": "be760e2c-e032-4e16-a8f5-703b21020db4", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49 } }, { "data": { "id": "ba316f7e-4055-4969-ac15-7a570c3ab8d9", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49 } }, { "data": { "id": "90893f6a-70bd-4fc9-8188-26ac7ee3bc63", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.2753623188405797, "overlap_size": 57 } }, { "data": { "id": "7d3b1b52-c995-4133-bb20-eda0ba9232ac", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.5052631578947369, "overlap_size": 48 } }, { "data": { "id": "1a67c5b8-af53-43fd-b61d-ddc75cae0e54", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.4642857142857143, "overlap_size": 52 } }, { "data": { "id": "ad6fe689-0676-4a7b-b80f-26a381753819", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.5113636363636364, "overlap_size": 45 } }, { "data": { "id": "93cfc1ac-c404-43a4-a7a0-b99c8dd3d988", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49 } }, { "data": { "id": "134ef804-068c-4825-ae57-f2d3a79defbb", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.5714285714285714, "overlap_size": 52 } }, { "data": { "id": "458b2942-20ab-4ad7-a280-6d6d1e1e00cf", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.44144144144144143, "overlap_size": 49 } }, { "data": { "id": "94188819-9ebc-4b8c-8115-10b099e01bc0", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.3374233128834356, "overlap_size": 55 } }, { "data": { "id": "5d467a25-792a-4f14-bb7e-5a542b041229", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.3769230769230769, "overlap_size": 49 } }, { "data": { "id": "4eb5451e-c633-4b41-902f-6a0476d0bf0f", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.34210526315789475, "overlap_size": 52 } }, { "data": { "id": "ee0ed18b-6f5d-491b-a544-2f188e537aac", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.5813953488372093, "overlap_size": 50 } }, { "data": { "id": "a720dfa1-f4fd-4bd0-ad3f-2c60fc28b2d3", "source": "48c1433b-00dd-4330-8b52-5d849ddfd875", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49 } }, { "data": { "id": "7eefc7a4-172f-4298-bd1c-fdc08506f151", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.8933333333333333, "overlap_size": 67 } }, { "data": { "id": "f9c5e0d8-785b-4830-8e37-afaabd15ae95", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.4046242774566474, "overlap_size": 70 } }, { "data": { "id": "cf38dd17-c495-4903-afec-c66f78fcfdc5", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.37398373983739835, "overlap_size": 46 } }, { "data": { "id": "897a3d3a-1a9c-4821-8368-1d59f801fab2", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49 } }, { "data": { "id": "50d6e6e3-bee0-4a82-9f77-c37510728b77", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.550561797752809, "overlap_size": 49 } }, { "data": { "id": "10464d07-275b-4a5f-acd6-dc222edf0b94", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.5121951219512195, "overlap_size": 63 } }, { "data": { "id": "b010f7b4-e11b-442d-a614-56bbe2ee6ee8", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.4049586776859504, "overlap_size": 49 } }, { "data": { "id": "979488bd-1c19-48d7-bdb5-08ca26ead71e", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49 } }, { "data": { "id": "5b6cf35e-fc42-4a38-aef8-b7611fd2cbb7", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49 } }, { "data": { "id": "c027c8ba-e675-42a3-a967-51c69a4608c8", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.40236686390532544, "overlap_size": 68 } }, { "data": { "id": "42089ea0-d8fc-4361-85f2-51529e5530ba", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.5354330708661418, "overlap_size": 68 } }, { "data": { "id": "3115e57d-d854-4a4b-8ce2-4043983ef81c", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49 } }, { "data": { "id": "051dd38c-52d1-4ae6-b019-ffe7d5194b6c", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.37404580152671757, "overlap_size": 49 } }, { "data": { "id": "c5fad8bc-a3f4-4de0-92b9-dfd6b43b6004", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.4424778761061947, "overlap_size": 50 } }, { "data": { "id": "0c05d670-7a10-4a7e-9b47-21ba91f7e24c", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49 } }, { "data": { "id": "01137947-13f1-4e14-b983-d74c849d6f9e", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "080d7999-edb3-459d-97a1-0b0c699425b5", "similarity_coefficient": 0.30603448275862066, "overlap_size": 71 } }, { "data": { "id": "577cf063-766f-418f-aaf4-8ae48fd1affc", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.2623762376237624, "overlap_size": 53 } }, { "data": { "id": "5c66183f-2298-4efc-8a8b-ff4727959cd8", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49 } }, { "data": { "id": "6ee341b1-cf2a-44e1-9161-a44875671640", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "98930fc8-1c40-4ccd-b1d7-9d618189e723", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.392, "overlap_size": 49 } }, { "data": { "id": "ca40d186-2d08-4a35-a8de-8871f4d75911", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.8902439024390244, "overlap_size": 73 } }, { "data": { "id": "f2fd64b2-9061-4a8e-8589-cd1c8c60ab76", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49 } }, { "data": { "id": "8345ee27-49ad-4088-b2d8-94553e27a8ab", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.42201834862385323, "overlap_size": 46 } }, { "data": { "id": "c71ac16d-11e2-4294-8d62-c5edf259afb3", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.5542168674698795, "overlap_size": 46 } }, { "data": { "id": "7a8a0ad1-115c-4d80-9348-57cb5983350a", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49 } }, { "data": { "id": "a278c332-1ea5-44db-9afb-f943830b22d1", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.43243243243243246, "overlap_size": 48 } }, { "data": { "id": "a1a3d827-e3d7-41d0-9556-bd093f9216ac", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "9e4a6ac9-f6ce-4fd7-b60e-12cfce27b812", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.2832369942196532, "overlap_size": 49 } }, { "data": { "id": "36fd4af0-28d4-4d1a-87cd-5431da366d45", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.3888888888888889, "overlap_size": 49 } }, { "data": { "id": "9d0d6667-b0eb-44d7-b53b-f3c8b71e2c28", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.5730337078651685, "overlap_size": 51 } }, { "data": { "id": "d9b56633-2597-4998-9c65-67d300932aba", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.6125, "overlap_size": 49 } }, { "data": { "id": "5cea74f5-8501-494e-a134-d43f43fd2d0a", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.45, "overlap_size": 63 } }, { "data": { "id": "92755344-2cb3-4fd7-8841-bcdd316c8874", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49 } }, { "data": { "id": "974ee7fb-05ca-4691-b61c-a0acabfa72b3", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.5425531914893617, "overlap_size": 51 } }, { "data": { "id": "1be6f109-4078-46d5-924a-69d212223e28", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.575, "overlap_size": 46 } }, { "data": { "id": "a0cc0002-441d-409b-88d2-4e908615e66b", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.8409090909090909, "overlap_size": 74 } }, { "data": { "id": "83dd1fea-c8a3-4170-9267-71a74de8cd7c", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.30625, "overlap_size": 49 } }, { "data": { "id": "9c6e4628-53c6-47dd-b61f-02b9262aa840", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.352112676056338, "overlap_size": 50 } }, { "data": { "id": "620b1820-95a9-4624-a35d-57aa2ed81b46", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49 } }, { "data": { "id": "8cd966cd-86cd-42d3-b5bc-89674746f48c", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "bdeb8617-e97d-40df-a03b-e38f63a3bfe1", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.569620253164557, "overlap_size": 45 } }, { "data": { "id": "b8513552-b8da-430e-87d8-86bbfb8108aa", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49 } }, { "data": { "id": "c7ac6156-3132-4951-b384-d8f96da73905", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.5581395348837209, "overlap_size": 48 } }, { "data": { "id": "c89ade42-bd49-4261-8b77-bed75ebe9b8a", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.3246753246753247, "overlap_size": 25 } }, { "data": { "id": "e0a62650-b766-4c16-89af-795bb9806612", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.4171779141104294, "overlap_size": 68 } }, { "data": { "id": "74f7285e-952e-42b2-a7ab-faa8cfbb93b1", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.961038961038961, "overlap_size": 74 } }, { "data": { "id": "8e0a3c1a-b43a-4468-b83f-8ea327742cb1", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49 } }, { "data": { "id": "ee673626-f3ee-4dda-9051-49e0d2ca3e21", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49 } }, { "data": { "id": "73b2ddcb-9cdb-4226-9fa2-c61048999017", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "f56bbe2f-f21d-42e3-97a9-f0eb8d4a9562", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.9864864864864865, "overlap_size": 73 } }, { "data": { "id": "24f386e5-444a-407a-9276-b94a24dd10f6", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "fb172c5a-c242-43e8-98a4-bc060890f253", "similarity_coefficient": 0.2673992673992674, "overlap_size": 73 } }, { "data": { "id": "85ba745f-c9df-46ce-a100-7065b2b7853d", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49 } }, { "data": { "id": "4418ebe9-a718-4841-989b-a079ff0076a5", "source": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.5679012345679012, "overlap_size": 46 } }, { "data": { "id": "96cf2b59-51d2-4f6c-8546-bf8ba0b33745", "source": "7b910fec-96ff-45a5-9b23-0ddf4e8d2541", "target": "1cf1ee8e-77cc-4e7d-8939-adf02b347c93", "similarity_coefficient": 0.3213793103448276, "overlap_size": 233 } }, { "data": { "id": "2f9630db-562c-4416-aa18-95d871128867", "source": "7b910fec-96ff-45a5-9b23-0ddf4e8d2541", "target": "0391f2bd-352e-4b49-b8cc-414c80dffff9", "similarity_coefficient": 0.40963855421686746, "overlap_size": 204 } }, { "data": { "id": "bdf85c8e-aa79-4f27-a4a8-eece8dada5bb", "source": "7b910fec-96ff-45a5-9b23-0ddf4e8d2541", "target": "158daadb-15d5-44c8-9670-d08fe9ebb4c3", "similarity_coefficient": 0.27980132450331124, "overlap_size": 169 } }, { "data": { "id": "0156af18-84d4-4f8b-a83d-7f662b7ebd4e", "source": "7b910fec-96ff-45a5-9b23-0ddf4e8d2541", "target": "6b1a95ef-3536-4d95-962f-3d14a4550825", "similarity_coefficient": 0.6345381526104418, "overlap_size": 316 } }, { "data": { "id": "58bc7903-c985-4a83-997b-27048818a4c5", "source": "7b910fec-96ff-45a5-9b23-0ddf4e8d2541", "target": "753dfe0f-6f61-4a49-90c1-4b3708665dbf", "similarity_coefficient": 0.6352040816326531, "overlap_size": 498 } }, { "data": { "id": "4654ee82-fc6b-42f7-bdef-38f0039451c4", "source": "7b910fec-96ff-45a5-9b23-0ddf4e8d2541", "target": "e9a4d13e-edb7-4554-9bb8-173dad7f61fd", "similarity_coefficient": 0.2653846153846154, "overlap_size": 138 } }, { "data": { "id": "807b2926-e0df-4333-964e-88f04447ac67", "source": "7b910fec-96ff-45a5-9b23-0ddf4e8d2541", "target": "bdfea551-b193-4b01-ae9c-25648ca3c317", "similarity_coefficient": 0.6360153256704981, "overlap_size": 498 } }, { "data": { "id": "99717615-d173-4f87-9d2d-5c342b8e293f", "source": "7b910fec-96ff-45a5-9b23-0ddf4e8d2541", "target": "3c6595b7-4300-40c2-9b8b-be0dea463aa6", "similarity_coefficient": 0.32222222222222224, "overlap_size": 261 } }, { "data": { "id": "5b75e9bf-34ad-45a0-a93b-52a1464c00b8", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49 } }, { "data": { "id": "3476c27b-b2d6-4358-90a2-715199918156", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.34306569343065696, "overlap_size": 47 } }, { "data": { "id": "29bc6320-78db-4a41-bf96-e7066faf1a25", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.4423076923076923, "overlap_size": 46 } }, { "data": { "id": "a6b14e1b-0dcf-4ee1-9689-e64f38ea0f99", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.6265060240963856, "overlap_size": 52 } }, { "data": { "id": "2daab107-45ca-441d-9abb-d5df49289a94", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.4375, "overlap_size": 49 } }, { "data": { "id": "49971d06-9f61-4962-984f-79c4fc7f532c", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.28735632183908044, "overlap_size": 50 } }, { "data": { "id": "110ef883-820e-4530-88d4-27318e546833", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49 } }, { "data": { "id": "1ff55a5e-37bd-4b67-a476-cfce1727af76", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.8305084745762712, "overlap_size": 49 } }, { "data": { "id": "7c8187a8-b9da-4494-bced-945a377d3f93", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.684931506849315, "overlap_size": 50 } }, { "data": { "id": "2e2dab39-a74c-4dae-a1a2-a717561dfc9f", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49 } }, { "data": { "id": "e3fca5ed-167c-4bbe-a434-f135ec2ac770", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.75, "overlap_size": 45 } }, { "data": { "id": "13f43922-680c-4a82-ac30-c9ab5ae456fd", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49 } }, { "data": { "id": "533880bc-6e4f-4dc4-bead-368e0cdd27f9", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.7164179104477612, "overlap_size": 48 } }, { "data": { "id": "8f2b6fdf-abbb-4466-9329-b2eb59020bea", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.7, "overlap_size": 49 } }, { "data": { "id": "52a83a54-9892-4350-b014-a6a1263a13ca", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49 } }, { "data": { "id": "813927b5-0342-4198-b42f-f3d9ae9b4d9a", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.8253968253968254, "overlap_size": 52 } }, { "data": { "id": "02d0643f-0262-40d7-8b31-758c75e838d7", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "cb6ca920-db3f-4c61-b6aa-6066bd8e0d6f", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49 } }, { "data": { "id": "54b22154-cb1e-4a5f-b236-0db7eca8ef73", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.3132530120481928, "overlap_size": 52 } }, { "data": { "id": "f798f08b-936e-4813-81a3-f205ce5afe92", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.8, "overlap_size": 48 } }, { "data": { "id": "92f9268b-447f-4968-bbe3-2ee5250d451d", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.8387096774193549, "overlap_size": 52 } }, { "data": { "id": "9b774a32-3861-4d47-84c0-c8dfdc015628", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.4067796610169492, "overlap_size": 24 } }, { "data": { "id": "057935a3-ae3e-42f1-8d26-8bdfdda56c5e", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.5, "overlap_size": 49 } }, { "data": { "id": "0c1fbbb3-5976-4f65-b065-1238a69df239", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.6329113924050633, "overlap_size": 50 } }, { "data": { "id": "1fcd00b3-50c3-4f5b-a8af-ee00fecf9961", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.625, "overlap_size": 55 } }, { "data": { "id": "6d23bd9a-4d09-498d-8f09-4d74e3cb8285", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.325, "overlap_size": 52 } }, { "data": { "id": "1e4b8266-ba97-4369-9465-4f5c5a223c42", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49 } }, { "data": { "id": "ba5fa898-3235-4c49-ad11-913fdb967686", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.68, "overlap_size": 51 } }, { "data": { "id": "40653378-5f82-4658-b4f4-3772231d3af9", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.4180327868852459, "overlap_size": 51 } }, { "data": { "id": "1b8ab8ae-893b-4dea-b12e-153a9650345d", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49 } }, { "data": { "id": "16f75fa7-c064-47dd-85a6-ee2b8458826a", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.6410256410256411, "overlap_size": 50 } }, { "data": { "id": "45bc816b-a68f-465a-b0a9-e37d525f081c", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.6097560975609756, "overlap_size": 50 } }, { "data": { "id": "862c6bec-af8d-45b8-a7a6-d3025e29b6e3", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.875, "overlap_size": 49 } }, { "data": { "id": "93f13fb7-061a-4226-b485-353a99374927", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49 } }, { "data": { "id": "2ed872e1-d8a2-46f9-89ff-7e61ad99dfaa", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.37681159420289856, "overlap_size": 52 } }, { "data": { "id": "e17ad984-eb6f-4228-af2a-e9dd9d2b127b", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.6046511627906976, "overlap_size": 52 } }, { "data": { "id": "814e7407-c0e2-477e-ab31-b99e6faf756f", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49 } }, { "data": { "id": "8a5b9b0c-974a-4391-bdc4-27fb7a7efd22", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.8253968253968254, "overlap_size": 52 } }, { "data": { "id": "dc74c524-b8b7-4105-afd9-77506451ff44", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.6790123456790124, "overlap_size": 55 } }, { "data": { "id": "7ac332ba-cfae-4c6e-a4ce-cf8d22f29f30", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49 } }, { "data": { "id": "f9325506-8827-4e69-aec2-b0c4d81a7438", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.41935483870967744, "overlap_size": 52 } }, { "data": { "id": "43f73f0a-916c-4530-99a6-81720a8ff265", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.5, "overlap_size": 52 } }, { "data": { "id": "06b7ceb3-f8b4-4c2b-8d66-0dab406780a7", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.8032786885245902, "overlap_size": 49 } }, { "data": { "id": "5ee98836-d124-4d86-979d-e3983404a62a", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.8253968253968254, "overlap_size": 52 } }, { "data": { "id": "a6af52de-3637-4061-aa5e-83f27592b33d", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.2826086956521739, "overlap_size": 52 } }, { "data": { "id": "081a9f86-299c-48b1-83a5-537b6cef3de3", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.39166666666666666, "overlap_size": 47 } }, { "data": { "id": "d6e4a639-bb12-49ad-b3c3-7734394f62ca", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.3181818181818182, "overlap_size": 49 } }, { "data": { "id": "234d2589-a0b7-428b-b254-edb669980c0a", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "904648c2-551b-426e-815e-74ced2374458", "similarity_coefficient": 0.29545454545454547, "overlap_size": 52 } }, { "data": { "id": "a7544fc7-ee6e-48c1-8909-0acea6bb388b", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49 } }, { "data": { "id": "6464471b-d637-49fc-acfe-e48a5bc49706", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.8305084745762712, "overlap_size": 49 } }, { "data": { "id": "45ffa6a1-1e8b-4e18-93fe-53bdf8275489", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.7538461538461538, "overlap_size": 49 } }, { "data": { "id": "c8a6a807-db9a-4a3f-8670-8ba21a77ecf5", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.5048543689320388, "overlap_size": 52 } }, { "data": { "id": "3f8452e5-209e-45e6-990c-4b41307c3c38", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.5454545454545454, "overlap_size": 48 } }, { "data": { "id": "5378ae99-4b6c-430d-a9d0-0105bddcec3f", "source": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.71875, "overlap_size": 46 } }, { "data": { "id": "f7b39807-6583-484d-8f5d-2fe0a7c6ae5a", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.31901840490797545, "overlap_size": 52 } }, { "data": { "id": "f54098bd-1493-40ef-b30c-ca47df5a5259", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49 } }, { "data": { "id": "ccde015b-4d6a-4578-aaa9-30f497ab85e8", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.6352941176470588, "overlap_size": 54 } }, { "data": { "id": "fae99cc6-1da5-46c4-994b-6d32a56baa1d", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49 } }, { "data": { "id": "9040cc28-05b2-499f-bddf-ab37ad6c5337", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.4098360655737705, "overlap_size": 50 } }, { "data": { "id": "892b1baf-8f30-4cdb-ae23-bff8f6697783", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.26666666666666666, "overlap_size": 48 } }, { "data": { "id": "6832e238-74af-4262-a3b0-c817ba9b1d2b", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.2822085889570552, "overlap_size": 46 } }, { "data": { "id": "297dde5f-2153-41f0-9a02-06491d4bf980", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49 } }, { "data": { "id": "27271b86-6c20-488e-8ddb-c2aac6a63b96", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.46846846846846846, "overlap_size": 52 } }, { "data": { "id": "21ab4608-2d8f-4cc0-a6d3-35564fef23d6", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49 } }, { "data": { "id": "5855231f-e107-46a2-8bf4-9b3f43080624", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.5647058823529412, "overlap_size": 48 } }, { "data": { "id": "eb38e976-9af6-4705-ad76-0b7a6ec0cfa2", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49 } }, { "data": { "id": "242e4362-990a-472a-84e4-2be1c12b1026", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.6470588235294118, "overlap_size": 55 } }, { "data": { "id": "af153351-f804-4638-9334-bd3aa92c3d0e", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.5217391304347826, "overlap_size": 48 } }, { "data": { "id": "2839c59e-5dbb-4e86-804e-378d38ba1b55", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.41025641025641024, "overlap_size": 48 } }, { "data": { "id": "a5b7c09b-731c-43f9-92e7-353504c0821e", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.4083333333333333, "overlap_size": 49 } }, { "data": { "id": "a673cdab-08ea-41b3-b15d-a06d7664ba92", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.5294117647058824, "overlap_size": 45 } }, { "data": { "id": "30e0a06c-6ddb-4846-a594-3556637fd8cc", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.5168539325842697, "overlap_size": 46 } }, { "data": { "id": "1a2c9d0d-cc34-48ad-965d-f7b460ad0ad6", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.3769230769230769, "overlap_size": 49 } }, { "data": { "id": "1a10ea78-f740-465c-8591-06ca27534284", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.35658914728682173, "overlap_size": 46 } }, { "data": { "id": "527f994d-4ee0-4f77-aa7d-506fd7098d14", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.3858267716535433, "overlap_size": 49 } }, { "data": { "id": "ab997b0d-e7f7-4016-9633-c8ee39792500", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49 } }, { "data": { "id": "5fbec6fa-7f37-4cbf-b5fc-638acc189687", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49 } }, { "data": { "id": "ab8c5c6f-4302-48c9-8d17-5a38450e3374", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.494949494949495, "overlap_size": 49 } }, { "data": { "id": "085f6e65-8c6f-4246-b15b-bdd4aacaede9", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.42857142857142855, "overlap_size": 54 } }, { "data": { "id": "7e195272-a32d-4b33-b55c-bf85d302f558", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.5909090909090909, "overlap_size": 52 } }, { "data": { "id": "11b63ec2-f6e9-444a-b5d4-df85f15faa6e", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.34, "overlap_size": 51 } }, { "data": { "id": "a2a4f687-d491-422a-9af5-97fd876ca99e", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.3150684931506849, "overlap_size": 46 } }, { "data": { "id": "d3d716d6-74f9-4f9c-95c4-3291da47bccd", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "a9fcc6b5-511b-462b-8974-45a97620d0a5", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.4247787610619469, "overlap_size": 48 } }, { "data": { "id": "8c5af1d0-909c-4485-95d9-f7f048efae59", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.2548076923076923, "overlap_size": 53 } }, { "data": { "id": "c443214d-e931-42cd-b8b7-8b9a3ce81771", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "904648c2-551b-426e-815e-74ced2374458", "similarity_coefficient": 0.4624277456647399, "overlap_size": 80 } }, { "data": { "id": "80e99e11-aac3-4a9d-9fc0-62b19395ccf6", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.47706422018348627, "overlap_size": 52 } }, { "data": { "id": "bcfd9263-9f8e-40ed-8758-5b81003de389", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.4406779661016949, "overlap_size": 52 } }, { "data": { "id": "23d329e8-45d2-444d-872f-7549a4171728", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.5909090909090909, "overlap_size": 52 } }, { "data": { "id": "b183f526-889c-4006-b100-f003f2f33b2a", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.265625, "overlap_size": 51 } }, { "data": { "id": "86947aee-3c52-4495-ad86-eb2a011aad0c", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49 } }, { "data": { "id": "7078841f-2327-484f-a82a-051f14e38806", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49 } }, { "data": { "id": "93066ce5-438e-45e7-b678-3241e3f6c2dd", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "2d488ef9-9c0e-43a0-92e5-fd93832ecefc", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.40310077519379844, "overlap_size": 52 } }, { "data": { "id": "b8da0f29-8314-48ed-b9fb-71f545ce30fb", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49 } }, { "data": { "id": "9567df7d-c3fe-415b-898d-7645cde584be", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49 } }, { "data": { "id": "aab201bf-3887-4f56-9725-c4228124eb5c", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49 } }, { "data": { "id": "10fbc7ae-f411-4f8b-98db-dc03c0f1b059", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49 } }, { "data": { "id": "5d4e0117-87e3-48f5-8a64-1992eb6947bc", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.4482758620689655, "overlap_size": 52 } }, { "data": { "id": "57a067b2-9c3c-4802-87bd-1c69c7a65cd4", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.3880597014925373, "overlap_size": 52 } }, { "data": { "id": "a54546cb-4cb8-4fc8-be94-15e612de70fa", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.532608695652174, "overlap_size": 49 } }, { "data": { "id": "ad34e7f4-f4b0-41c2-a956-d216043b4382", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.3469387755102041, "overlap_size": 51 } }, { "data": { "id": "c543ec7a-ec2d-4d99-8b8c-81b10c9c3196", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.27419354838709675, "overlap_size": 51 } }, { "data": { "id": "f20769a2-24d8-45e9-a94c-72b966565a83", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.2857142857142857, "overlap_size": 24 } }, { "data": { "id": "47b9d32d-2b64-4c9e-bec2-96c2bf0bcfe4", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.51, "overlap_size": 51 } }, { "data": { "id": "a7887a06-a322-4c54-a49f-2612d1ae7c0f", "source": "676a30e0-10c9-4292-861b-34e45764abd1", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49 } }, { "data": { "id": "8816002a-505b-4187-8f41-a0176f93b002", "source": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "6dd17754-4e3b-4bcc-a747-e870f8d6652b", "source": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.42788461538461536, "overlap_size": 89 } }, { "data": { "id": "968c62fb-b566-491a-a14f-b877d5e9f901", "source": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "139a2c0f-d2f6-4a75-bc34-90f1986f7dab", "source": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "target": "eb1d3bcf-4842-469d-b080-15ffd6d86e52", "similarity_coefficient": 0.25287356321839083, "overlap_size": 88 } }, { "data": { "id": "75d19d6a-799c-4fc1-aa93-2bef87d89437", "source": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.55, "overlap_size": 88 } }, { "data": { "id": "16fe1907-4851-44b0-b53e-a067508a2d06", "source": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "6b767373-e4c4-46b4-8bd8-fdd823c2b9df", "source": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "9aa8d8c5-7592-4dd1-b570-12f4043dca02", "source": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.8148148148148148, "overlap_size": 88 } }, { "data": { "id": "cfd87c64-7783-49e9-8b6b-b047e6aa310d", "source": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "5cf65f5a-bc9d-4599-8a28-aed74809e488", "source": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "fc1adef7-03c0-4f37-adbd-b48b9de3c002", "source": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.9166666666666666, "overlap_size": 88 } }, { "data": { "id": "cdc0f513-9875-4c71-acfc-c4642b4fba96", "source": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.3211009174311927, "overlap_size": 35 } }, { "data": { "id": "5ea55812-8cc7-4048-964c-76bfa99b1fab", "source": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.7154471544715447, "overlap_size": 88 } }, { "data": { "id": "e4113141-1941-40fa-89c8-469a73a4e898", "source": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "b6731efa-85db-4b35-a811-da9522e66b20", "source": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "dbb4f452-a624-486b-944c-abda8bfa4ccb", "source": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.41363636363636364, "overlap_size": 91 } }, { "data": { "id": "641d08bf-625e-4539-b0fd-86ef698f702d", "source": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.2966101694915254, "overlap_size": 35 } }, { "data": { "id": "61122ee7-24d3-4e71-accc-a0f58f7171d0", "source": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.7457627118644068, "overlap_size": 88 } }, { "data": { "id": "cdc14454-1777-4c28-bc0d-445f733fbab1", "source": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "e9795ae6-316a-4bb8-ba1f-ab155bb2a928", "source": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "6fe18f9a-af39-4fb2-9c35-b095950ed887", "source": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.7647058823529411, "overlap_size": 91 } }, { "data": { "id": "9a442987-efb0-4d68-9bbc-dccb90aa430b", "source": "fa82a47b-3388-4aec-aa66-f207fa3a1e17", "target": "6a073b52-0b0c-457e-86cd-2b8ee3c5e8cf", "similarity_coefficient": 0.6470588235294118, "overlap_size": 22 } }, { "data": { "id": "d322af21-2cce-4c51-abd4-539ce8091f32", "source": "fa82a47b-3388-4aec-aa66-f207fa3a1e17", "target": "e8f60c2e-a8b6-4682-aa31-e95d21714e83", "similarity_coefficient": 1, "overlap_size": 30 } }, { "data": { "id": "76f1cbde-95dd-471e-9225-a8f2348245f8", "source": "fa82a47b-3388-4aec-aa66-f207fa3a1e17", "target": "3426b560-b523-49c6-8a55-6451ac5ff9fb", "similarity_coefficient": 0.9, "overlap_size": 27 } }, { "data": { "id": "170c1d03-76ce-4050-b702-6f54f1b90d96", "source": "6dd711a9-bdb8-4b44-95dc-5ec87cc4e384", "target": "6460295d-3d84-4fe7-abbe-c5f824a3523c", "similarity_coefficient": 0.5456885456885456, "overlap_size": 424 } }, { "data": { "id": "1e020d61-fd35-4668-828b-e40c3f23c90e", "source": "9e433294-82cc-456b-bdd9-d76c265b11a9", "target": "3baa2895-d41a-4b91-925b-906637d521ee", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "22956f98-9ce6-4042-a7fd-5f4312a466bb", "source": "9e433294-82cc-456b-bdd9-d76c265b11a9", "target": "ba7799c9-3170-4d60-b811-31eae5312965", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "90907043-3053-459d-8c60-879b6ccff772", "source": "9e433294-82cc-456b-bdd9-d76c265b11a9", "target": "cddebf8c-4f9a-4ec6-b7c9-83312c9d1c51", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "ed35fc54-dd7e-49eb-a4d0-604f96b8ccfa", "source": "9e433294-82cc-456b-bdd9-d76c265b11a9", "target": "b6922b98-9220-46d4-a7fc-b265074130b3", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "d708ce5f-eab0-4175-b587-d8be57a66b53", "source": "9e433294-82cc-456b-bdd9-d76c265b11a9", "target": "604d62c7-f4cb-4289-a549-64f0bccf5d62", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "54d1162b-7270-4e19-b45f-593ff6c5fc65", "source": "9e433294-82cc-456b-bdd9-d76c265b11a9", "target": "8f2732b7-bdc9-40f5-8845-a8d9beca3b22", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "64ae62e9-76ff-4ea0-bb9b-dcd12c3f1538", "source": "9e433294-82cc-456b-bdd9-d76c265b11a9", "target": "e4351080-e123-4e93-98a7-49cdd09e0c1c", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "aa087930-5ab2-4049-abc8-633bd01a45e8", "source": "9e433294-82cc-456b-bdd9-d76c265b11a9", "target": "3655cbeb-e303-47c6-b442-f4039b25d644", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "c60d774d-f990-4555-a5b3-73cd0c99e1f2", "source": "9e433294-82cc-456b-bdd9-d76c265b11a9", "target": "acb95097-45dd-4bf4-aa47-a787e38591d4", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "bd7aaee2-3993-4d97-af39-a8f024008fed", "source": "eb1d3bcf-4842-469d-b080-15ffd6d86e52", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.2832369942196532, "overlap_size": 98 } }, { "data": { "id": "b1ec1d53-ad9a-4827-85da-865b6944697c", "source": "eb1d3bcf-4842-469d-b080-15ffd6d86e52", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.3045977011494253, "overlap_size": 106 } }, { "data": { "id": "766fc051-4fb1-4f8d-a5f0-8e87f82ef21c", "source": "eb1d3bcf-4842-469d-b080-15ffd6d86e52", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.2644628099173554, "overlap_size": 96 } }, { "data": { "id": "98be13fa-a1a6-4704-b46c-b72de574c5d9", "source": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.4, "overlap_size": 78 } }, { "data": { "id": "7ab16e97-d710-4d72-b647-d888eca6403a", "source": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.4, "overlap_size": 78 } }, { "data": { "id": "40281cc4-f755-4d2e-913d-db86224139d1", "source": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.4251207729468599, "overlap_size": 88 } }, { "data": { "id": "8f61ca98-b810-4eef-9966-7a707bf0d907", "source": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.4, "overlap_size": 78 } }, { "data": { "id": "8c94fae5-91ae-4864-a929-62a25c87dea5", "source": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.4512820512820513, "overlap_size": 88 } }, { "data": { "id": "2afd3a0c-a0c8-4ce7-bc26-80f1bfd497f0", "source": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.9507389162561576, "overlap_size": 193 } }, { "data": { "id": "3d1c4b22-c368-48b1-813b-821dd16de246", "source": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.33976833976833976, "overlap_size": 88 } }, { "data": { "id": "b56bedac-25f1-4f75-a9f2-0443f34f1a0e", "source": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.4494949494949495, "overlap_size": 89 } }, { "data": { "id": "98c1aebb-c821-4c2e-9fd7-935d23212a30", "source": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.4, "overlap_size": 78 } }, { "data": { "id": "38995517-0474-43ad-979e-d49a9110ec6f", "source": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.39819004524886875, "overlap_size": 88 } }, { "data": { "id": "96095443-6b53-47e4-9a06-2df20ca912ca", "source": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.4, "overlap_size": 78 } }, { "data": { "id": "635ff8f6-154d-43f1-ac8c-f675bb8372c6", "source": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.2732919254658385, "overlap_size": 88 } }, { "data": { "id": "8c6403aa-3c68-48b5-b837-ec30eda30b4f", "source": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.4, "overlap_size": 78 } }, { "data": { "id": "13186fb2-c31e-4640-b797-c2045f6b06fc", "source": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.4055299539170507, "overlap_size": 88 } }, { "data": { "id": "11c224ca-ecb3-4333-91f9-7a56e4340cf5", "source": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.4, "overlap_size": 78 } }, { "data": { "id": "4787ac98-187b-419b-a796-28479a98ebd2", "source": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.3963963963963964, "overlap_size": 88 } }, { "data": { "id": "c5dde3aa-1839-4e9f-b065-0be79af596b8", "source": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.4, "overlap_size": 78 } }, { "data": { "id": "630daba3-a9ec-4de4-865e-fb137778b53e", "source": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.4, "overlap_size": 78 } }, { "data": { "id": "9df7d534-3a3d-45bf-9a6b-9d8a92fb0d1c", "source": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.4, "overlap_size": 78 } }, { "data": { "id": "a2bac4ee-3920-437f-ba7f-183366a13e1f", "source": "334a9d67-6aaf-4a3d-b324-1704275051be", "target": "d45a77c2-ed42-4c4f-8e17-002f798690b8", "similarity_coefficient": 0.281198003327787, "overlap_size": 169 } }, { "data": { "id": "762e9b1f-348d-4f34-8c4c-033c5b094bfb", "source": "334a9d67-6aaf-4a3d-b324-1704275051be", "target": "ca74dbd7-f987-4bb8-81f5-3c8fef7fee7c", "similarity_coefficient": 0.3026315789473684, "overlap_size": 230 } }, { "data": { "id": "b4b4599d-e265-4291-98af-2e18feaffaac", "source": "334a9d67-6aaf-4a3d-b324-1704275051be", "target": "19fb5f6d-a9bf-45ff-ad4a-dc1d1c940538", "similarity_coefficient": 0.3890909090909091, "overlap_size": 107 } }, { "data": { "id": "315c6c6a-dd05-4fd0-9b71-1aeb70bffb8a", "source": "334a9d67-6aaf-4a3d-b324-1704275051be", "target": "6b1a95ef-3536-4d95-962f-3d14a4550825", "similarity_coefficient": 0.2875816993464052, "overlap_size": 132 } }, { "data": { "id": "06dce46c-9f4e-4702-990c-6dfec26c7030", "source": "334a9d67-6aaf-4a3d-b324-1704275051be", "target": "0391f2bd-352e-4b49-b8cc-414c80dffff9", "similarity_coefficient": 0.2506527415143603, "overlap_size": 96 } }, { "data": { "id": "550661ec-d88b-4e98-a0a2-b4fa72b9fb49", "source": "120b369a-3e88-407c-ab37-b433984bd693", "target": "de92908d-dff2-4bac-827a-0606c7dd1158", "similarity_coefficient": 0.76, "overlap_size": 19 } }, { "data": { "id": "f3f71914-9ddf-460d-ae2a-8f57c5771e35", "source": "120b369a-3e88-407c-ab37-b433984bd693", "target": "74509417-18fd-44c8-a5bf-187901eaad5b", "similarity_coefficient": 0.29545454545454547, "overlap_size": 13 } }, { "data": { "id": "3ef9fbf3-2ada-4088-9370-0377876c5aa7", "source": "120b369a-3e88-407c-ab37-b433984bd693", "target": "c0f585a3-ef38-4c45-8a8a-28aeb1006ea5", "similarity_coefficient": 0.42857142857142855, "overlap_size": 15 } }, { "data": { "id": "8d99bf00-6112-40a4-93ad-7f62881d54d7", "source": "04d472b7-0ef5-4687-be19-8978a64630e0", "target": "dd5f121b-1bd3-4344-baa7-2bac3ad191fb", "similarity_coefficient": 0.6534653465346535, "overlap_size": 66 } }, { "data": { "id": "d8fc6213-5712-4a80-9805-e96dcba12473", "source": "611ff36d-7bbc-4322-bcdb-592441240039", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "644d8b18-1d0d-4784-abc5-aabc8c5c7202", "source": "611ff36d-7bbc-4322-bcdb-592441240039", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "f97ef7fc-9429-4a08-be55-101727a0eed2", "source": "611ff36d-7bbc-4322-bcdb-592441240039", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "b3a8f4c8-84c0-49ee-afdc-8ff6ca21d05b", "source": "611ff36d-7bbc-4322-bcdb-592441240039", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.3561643835616438, "overlap_size": 78 } }, { "data": { "id": "a2eb08c9-d0e1-477b-a793-beaf669065d4", "source": "611ff36d-7bbc-4322-bcdb-592441240039", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "2d26bab1-a79d-4e3c-8091-2a5d0085a41b", "source": "611ff36d-7bbc-4322-bcdb-592441240039", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "32910c02-1ecf-46a5-8347-604b8eb29a77", "source": "611ff36d-7bbc-4322-bcdb-592441240039", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "e4707702-8598-40fb-98b8-02605e1d0074", "source": "611ff36d-7bbc-4322-bcdb-592441240039", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78 } }, { "data": { "id": "98f058bf-d5b6-46f1-9697-ba7234218ae9", "source": "611ff36d-7bbc-4322-bcdb-592441240039", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78 } }, { "data": { "id": "6f754c0f-7794-4752-9ab2-e31d4802ce1a", "source": "611ff36d-7bbc-4322-bcdb-592441240039", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "a4384c33-aa64-483e-a3ab-2e088e0cfad7", "source": "611ff36d-7bbc-4322-bcdb-592441240039", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "fd3e467a-0a0f-4973-bba2-05602869d580", "source": "611ff36d-7bbc-4322-bcdb-592441240039", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "7bfa28a6-5e60-45f4-9ad8-7496bc773913", "source": "611ff36d-7bbc-4322-bcdb-592441240039", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.5, "overlap_size": 78 } }, { "data": { "id": "eab35dcc-e7a2-47a5-b8f1-7e1735b08e04", "source": "611ff36d-7bbc-4322-bcdb-592441240039", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "5792feb1-18dd-44af-8879-1168ba4148c2", "source": "611ff36d-7bbc-4322-bcdb-592441240039", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "42c8d9c9-d683-4a95-a69b-bbf4e0064e43", "source": "611ff36d-7bbc-4322-bcdb-592441240039", "target": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "similarity_coefficient": 0.4, "overlap_size": 78 } }, { "data": { "id": "e9b5b149-841e-4a9c-9970-4b1f7b0ecddf", "source": "611ff36d-7bbc-4322-bcdb-592441240039", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "0b8ed54c-8878-4c2f-901e-f856068532e6", "source": "611ff36d-7bbc-4322-bcdb-592441240039", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "97a7baef-faaf-4bb0-8e55-cd6841ee486c", "source": "611ff36d-7bbc-4322-bcdb-592441240039", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "69caebd2-9b1d-42b9-a83a-41124d55d304", "source": "611ff36d-7bbc-4322-bcdb-592441240039", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "28807cbe-3c9b-4045-a75e-bf387be5527c", "source": "611ff36d-7bbc-4322-bcdb-592441240039", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.6554621848739496, "overlap_size": 78 } }, { "data": { "id": "fd35ccbd-0848-4e04-b36f-3d0320180b0a", "source": "611ff36d-7bbc-4322-bcdb-592441240039", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31 } }, { "data": { "id": "ba8517e5-5b71-47fc-992c-ab97593f3381", "source": "611ff36d-7bbc-4322-bcdb-592441240039", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "d0351eac-98a2-4516-a548-9e89e9ea54b1", "source": "52870f31-5584-4d32-be83-711380d76819", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 1, "overlap_size": 116 } }, { "data": { "id": "3dfaea37-6342-4bc8-bd89-c6629e8e7240", "source": "52870f31-5584-4d32-be83-711380d76819", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "87f3312d-15c1-45d3-94cb-343008b2abbd", "source": "52870f31-5584-4d32-be83-711380d76819", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "517b4746-4c71-4ca6-8f67-6cc08613ef27", "source": "52870f31-5584-4d32-be83-711380d76819", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "5c06144c-e770-4174-a3ba-2ffee10d57e8", "source": "52870f31-5584-4d32-be83-711380d76819", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.45414847161572053, "overlap_size": 104 } }, { "data": { "id": "35b40f42-6689-476b-9f7f-4de6fd2da901", "source": "52870f31-5584-4d32-be83-711380d76819", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "ed432d27-f4e5-4e7a-ab4d-493b2dc7ec67", "source": "52870f31-5584-4d32-be83-711380d76819", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.26717557251908397, "overlap_size": 35 } }, { "data": { "id": "2b509dc1-be49-4fe0-a3cc-48f3faf82a89", "source": "52870f31-5584-4d32-be83-711380d76819", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.6068965517241379, "overlap_size": 88 } }, { "data": { "id": "fdd92fcc-afee-4c2c-b52a-8aac6e9d54bc", "source": "52870f31-5584-4d32-be83-711380d76819", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.6521739130434783, "overlap_size": 90 } }, { "data": { "id": "4ad1e38b-facf-487f-92d4-a24f2f7a7f29", "source": "52870f31-5584-4d32-be83-711380d76819", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "39d104ce-9cad-402c-bc64-84b0362b31bd", "source": "52870f31-5584-4d32-be83-711380d76819", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "b92a8030-5023-4384-be66-861c31e9a268", "source": "52870f31-5584-4d32-be83-711380d76819", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "b805c0f3-277a-4a25-8160-e99e6751daa4", "source": "52870f31-5584-4d32-be83-711380d76819", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "0450dfdb-638e-4d8f-bd8c-44b17dbc14f3", "source": "52870f31-5584-4d32-be83-711380d76819", "target": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "similarity_coefficient": 0.39819004524886875, "overlap_size": 88 } }, { "data": { "id": "e5d2275d-8eae-458e-9cf3-668da43e9e61", "source": "52870f31-5584-4d32-be83-711380d76819", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "0bfad0e7-517b-4bea-b322-81a8a9fe609d", "source": "52870f31-5584-4d32-be83-711380d76819", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.7457627118644068, "overlap_size": 88 } }, { "data": { "id": "4d8e1a87-2011-43c5-b6e4-b1e600cbb475", "source": "52870f31-5584-4d32-be83-711380d76819", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.676923076923077, "overlap_size": 88 } }, { "data": { "id": "87e3dad2-7b1c-4406-af62-9d8509165a18", "source": "52870f31-5584-4d32-be83-711380d76819", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "3479c927-9ea4-4488-9d7b-0edb40411581", "source": "52870f31-5584-4d32-be83-711380d76819", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.4835164835164835, "overlap_size": 88 } }, { "data": { "id": "886e85d5-e82a-4f6f-b973-6c6dcfe2a91c", "source": "52870f31-5584-4d32-be83-711380d76819", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.26811594202898553, "overlap_size": 37 } }, { "data": { "id": "3ce54ae9-c251-49e4-b7ee-c24d8d49e12f", "source": "52870f31-5584-4d32-be83-711380d76819", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.38095238095238093, "overlap_size": 88 } }, { "data": { "id": "c94ca85e-4a6a-45c0-aa1c-9fafbbb7dfe5", "source": "52870f31-5584-4d32-be83-711380d76819", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.7647058823529411, "overlap_size": 91 } }, { "data": { "id": "73d9e692-db87-4983-8342-a231d95729ab", "source": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.6370967741935484, "overlap_size": 79 } }, { "data": { "id": "7d0e7157-24c6-41e7-90c1-4d632901f191", "source": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "target": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "similarity_coefficient": 0.3446808510638298, "overlap_size": 81 } }, { "data": { "id": "9fe90b20-d9a6-4b4e-b798-4438fd360974", "source": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.6370967741935484, "overlap_size": 79 } }, { "data": { "id": "03478933-f521-427d-9a26-6cc4843eb554", "source": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.3333333333333333, "overlap_size": 85 } }, { "data": { "id": "ac07e6b9-77ba-4137-9cee-406389f08ead", "source": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.413265306122449, "overlap_size": 81 } }, { "data": { "id": "e59097a6-6caa-46ab-b5e6-cb2f647fc11e", "source": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.3306122448979592, "overlap_size": 81 } }, { "data": { "id": "fe0afb88-7ce0-4b21-9db8-899a440fa976", "source": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.4, "overlap_size": 52 } }, { "data": { "id": "ed15e014-919e-40e0-9a64-bbc5d1855c82", "source": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.6074074074074074, "overlap_size": 82 } }, { "data": { "id": "af4e6395-113e-4f69-9572-184590b09eec", "source": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.5094339622641509, "overlap_size": 81 } }, { "data": { "id": "127702eb-e47a-4d20-b2d7-9eeef02cf476", "source": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.6370967741935484, "overlap_size": 79 } }, { "data": { "id": "6495005a-f1aa-4990-a95f-4b9aaf9ef981", "source": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.6370967741935484, "overlap_size": 79 } }, { "data": { "id": "b2f4dac7-0ed2-4fc5-8c3b-e1bd3028000a", "source": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.6136363636363636, "overlap_size": 81 } }, { "data": { "id": "0068bfba-b87c-49c0-b60c-d27716cf8260", "source": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "target": "eb1d3bcf-4842-469d-b080-15ffd6d86e52", "similarity_coefficient": 0.35964912280701755, "overlap_size": 123 } }, { "data": { "id": "a798adb7-57dc-4ff3-98a2-bf376853b2f8", "source": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.551948051948052, "overlap_size": 85 } }, { "data": { "id": "c1764ff6-122c-449d-9728-5b03394591d6", "source": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.7175572519083969, "overlap_size": 94 } }, { "data": { "id": "83e4497d-9f2b-4d05-bd53-95970da73dc1", "source": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.753731343283582, "overlap_size": 101 } }, { "data": { "id": "1d3c8e89-56a4-4270-9f0a-3aac5394a421", "source": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.6370967741935484, "overlap_size": 79 } }, { "data": { "id": "a34eca02-b246-46ee-8ff5-742cd3ad6c0d", "source": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.551948051948052, "overlap_size": 85 } }, { "data": { "id": "4b8578ce-1aae-4c7d-b42e-8cbb8dacc5e8", "source": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "target": "611ff36d-7bbc-4322-bcdb-592441240039", "similarity_coefficient": 0.6370967741935484, "overlap_size": 79 } }, { "data": { "id": "73dd461c-05d9-4685-836d-dc891a8ad990", "source": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.6370967741935484, "overlap_size": 79 } }, { "data": { "id": "e21ff765-4384-4422-9ff5-13024483d47c", "source": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.6370967741935484, "overlap_size": 79 } }, { "data": { "id": "bca32f70-7268-4eb6-95c0-f2394d823b8d", "source": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.6370967741935484, "overlap_size": 79 } }, { "data": { "id": "950d2f4d-fc50-4deb-a1ce-1cacb48cbed0", "source": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.6370967741935484, "overlap_size": 79 } }, { "data": { "id": "b06c53f7-3158-4646-b8ef-9fdb69a33e2b", "source": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.6370967741935484, "overlap_size": 79 } }, { "data": { "id": "ff8405c7-1d2a-443d-87bc-c1c46971f2de", "source": "8d189e15-c192-4005-a56b-ee419c6a4796", "target": "a31fb885-5d37-4b2b-a6e5-41936b5cecc1", "similarity_coefficient": 0.9895287958115183, "overlap_size": 378 } }, { "data": { "id": "bbea460a-0c2e-4235-a795-7ec8f59389c7", "source": "8d189e15-c192-4005-a56b-ee419c6a4796", "target": "e2912118-3e55-4069-81e2-19dfc33500e6", "similarity_coefficient": 0.2600297176820208, "overlap_size": 175 } }, { "data": { "id": "1eef316d-eb8d-42eb-9067-73384d59f96d", "source": "8d189e15-c192-4005-a56b-ee419c6a4796", "target": "f97b81a8-1862-43e0-8494-7bbe4766e167", "similarity_coefficient": 0.2984054669703872, "overlap_size": 131 } }, { "data": { "id": "6812995c-1e2e-479e-9d32-62f1f6076064", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49 } }, { "data": { "id": "fc79421c-2ee7-4c12-8069-19b90c7d4338", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49 } }, { "data": { "id": "c5df2e46-203f-42c9-b457-e5f5eea77c4b", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49 } }, { "data": { "id": "eec8614b-4a19-4b6b-8c91-bd448e709854", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49 } }, { "data": { "id": "fdfef6e8-aacc-4a25-bc28-84fd5387365e", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.7796610169491526, "overlap_size": 46 } }, { "data": { "id": "5d2caabc-a0c8-4423-95cc-d32bcf1a47e1", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.7931034482758621, "overlap_size": 46 } }, { "data": { "id": "aa2b6bba-a833-4000-9a00-ade26531a243", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "5777aad6-b49d-4025-acb4-be16a7a1cfa4", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.7540983606557377, "overlap_size": 46 } }, { "data": { "id": "eda709ea-5be3-4c2f-b027-d171f96488e9", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.5287356321839081, "overlap_size": 46 } }, { "data": { "id": "30b8820a-9ba9-49bb-b6cb-038e580de3a2", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.5222222222222223, "overlap_size": 47 } }, { "data": { "id": "244bb033-f911-462c-99ff-a2da256e05ae", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49 } }, { "data": { "id": "3321adf5-dccc-48bb-a947-b7dd27df4c5f", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49 } }, { "data": { "id": "ccef91f1-cd84-4c7f-8410-1b4976d01e92", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.8909090909090909, "overlap_size": 49 } }, { "data": { "id": "2159ab41-ef75-4970-844e-e02047cadcc5", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.30718954248366015, "overlap_size": 47 } }, { "data": { "id": "4af31505-1342-440a-8dab-dc337f43ec7e", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49 } }, { "data": { "id": "b95f6f71-f56a-40e4-974c-c2bfd3db1291", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.273224043715847, "overlap_size": 50 } }, { "data": { "id": "cff3fd69-de2c-4218-9cc9-a19837dc9b3b", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49 } }, { "data": { "id": "18a6fca6-caaf-4938-8b78-9024dd798635", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "a2ddaeda-8f8d-4094-844e-74f811222c2d", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.6125, "overlap_size": 49 } }, { "data": { "id": "980c7f3e-ae53-4fb7-8bf1-040e956d9f4a", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "60a567cd-3034-425f-8e09-a191be4bb554", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 1, "overlap_size": 52 } }, { "data": { "id": "8274c4f0-d12c-429b-b567-b5b09738d65b", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "5ebb02f4-2acd-4024-8570-ab7f751d52f2", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "fb9f3d92-1c3c-4a97-ab4a-8897fd419dfe", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.696969696969697, "overlap_size": 46 } }, { "data": { "id": "3b53cb04-b14f-4b38-aa95-c2544b6001ec", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.8305084745762712, "overlap_size": 49 } }, { "data": { "id": "1916f2e3-f113-415d-8dbe-adfeb90f9fb8", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.7894736842105263, "overlap_size": 45 } }, { "data": { "id": "ebaf3532-6f5f-4b73-8ca1-26a2dd3b9392", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.35507246376811596, "overlap_size": 49 } }, { "data": { "id": "9973d604-a5bd-43a5-a874-39e2eff8cf4a", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.494949494949495, "overlap_size": 49 } }, { "data": { "id": "92e378c8-c524-446f-97d5-c18e42078582", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "75f5e2ca-878f-4f0b-9af5-b60e242d1dd8", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49 } }, { "data": { "id": "bfb5a6ac-1e38-4994-9592-d64dda57e475", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.3898305084745763, "overlap_size": 46 } }, { "data": { "id": "66fa700a-27f7-4146-88d4-70b3c104f6c2", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.45544554455445546, "overlap_size": 46 } }, { "data": { "id": "0cce39f8-bcd6-4e30-8409-4d9f7888ba68", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.28488372093023256, "overlap_size": 49 } }, { "data": { "id": "9b4be72e-fdc8-45b3-903a-b568fab70ee8", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49 } }, { "data": { "id": "d9685987-9a5f-4b52-86fb-eb105dc4553f", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49 } }, { "data": { "id": "ffe056a2-fc1f-47b4-af61-6020c1e49381", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.875, "overlap_size": 49 } }, { "data": { "id": "be0df59b-0fa4-4238-bd6f-3b875c100239", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49 } }, { "data": { "id": "9bcf4b0f-d898-44ad-8df0-31c41e11d0af", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "904648c2-551b-426e-815e-74ced2374458", "similarity_coefficient": 0.2784090909090909, "overlap_size": 49 } }, { "data": { "id": "f817f743-5ce5-498c-bee7-62e32f74c721", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49 } }, { "data": { "id": "037b51cb-536c-4f6a-9a5d-cc1670c6f9b3", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49 } }, { "data": { "id": "92094658-80bc-46b5-a65f-5f86e905c992", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "dabf78eb-a9fb-400e-af05-723c7e6e8a67", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.875, "overlap_size": 49 } }, { "data": { "id": "61db0bee-bef8-4877-aab8-09540233b23b", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.34074074074074073, "overlap_size": 46 } }, { "data": { "id": "ab0f5afd-6684-47e9-ae28-79d3aec6433f", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.7352941176470589, "overlap_size": 50 } }, { "data": { "id": "c21fdfa1-1f65-4472-b77c-78f78b9b4c71", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49 } }, { "data": { "id": "6445c5dc-869c-41af-9ed6-8bc9c47d318b", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.30625, "overlap_size": 49 } }, { "data": { "id": "61601baa-058f-4134-bdb7-4a6af86b2910", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49 } }, { "data": { "id": "c1806168-e5e2-48b4-8cfe-3b4fc89400d7", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.532608695652174, "overlap_size": 49 } }, { "data": { "id": "16653f07-e307-462b-a89f-cdc1b872cdd7", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.42857142857142855, "overlap_size": 24 } }, { "data": { "id": "c486fe22-8a4a-4a49-8398-0890a9a9b4f0", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.9245283018867925, "overlap_size": 49 } }, { "data": { "id": "54f17e25-9c23-4374-9a99-8a8999d7533a", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.847457627118644, "overlap_size": 50 } }, { "data": { "id": "7fa7f00d-bc58-4aed-912b-48373df14944", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.30303030303030304, "overlap_size": 50 } }, { "data": { "id": "6c2369fc-6c57-4444-91ac-62061ffe19eb", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.4049586776859504, "overlap_size": 49 } }, { "data": { "id": "acc940c0-cfbc-4a66-a84b-3c669222e50f", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49 } }, { "data": { "id": "ebd22097-d7d1-44f5-a7cc-e73fc4e57df2", "source": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.765625, "overlap_size": 49 } }, { "data": { "id": "18927141-5116-4125-8026-dbc1edfe3bb3", "source": "bb4d7b94-8c3a-4684-b925-2e7c7e698b63", "target": "8d189e15-c192-4005-a56b-ee419c6a4796", "similarity_coefficient": 0.9895287958115183, "overlap_size": 378 } }, { "data": { "id": "bbc454ad-a572-4a30-b6e4-077f1432a173", "source": "bb4d7b94-8c3a-4684-b925-2e7c7e698b63", "target": "a31fb885-5d37-4b2b-a6e5-41936b5cecc1", "similarity_coefficient": 1, "overlap_size": 378 } }, { "data": { "id": "6280345c-0a08-4b11-a2cf-29d7341d9a83", "source": "bb4d7b94-8c3a-4684-b925-2e7c7e698b63", "target": "f97b81a8-1862-43e0-8494-7bbe4766e167", "similarity_coefficient": 0.30114942528735633, "overlap_size": 131 } }, { "data": { "id": "4de0cd45-7f97-4b89-9473-ee3ccc22d5f2", "source": "bb4d7b94-8c3a-4684-b925-2e7c7e698b63", "target": "e2912118-3e55-4069-81e2-19dfc33500e6", "similarity_coefficient": 0.2615844544095665, "overlap_size": 175 } }, { "data": { "id": "67608cd6-013d-4f06-b86b-e49e5951a1f8", "source": "ba6b9d29-44c7-408e-8058-36cf9631eb64", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.25980392156862747, "overlap_size": 53 } }, { "data": { "id": "6a9ef00d-ddaf-4693-8ae4-36d4c6d8a128", "source": "df8598f1-d196-453a-878f-f9fbcce83853", "target": "19351445-20f2-486c-8288-9bb7909bab20", "similarity_coefficient": 0.7586206896551724, "overlap_size": 66 } }, { "data": { "id": "26a17f12-e172-40f4-ac53-580e26d2f864", "source": "d1c8fb15-883a-49fa-acec-c17ba9928cfa", "target": "90f6b6c4-3e27-47a9-87a0-25ceb66a9b48", "similarity_coefficient": 0.28169014084507044, "overlap_size": 20 } }, { "data": { "id": "24a6f788-ee2a-457a-9ee9-ade365489386", "source": "9c8a56fb-b2c2-4025-9c1e-266f0c5862fd", "target": "e6530407-29e9-4497-ba55-17afc1fe868e", "similarity_coefficient": 0.5125, "overlap_size": 123 } }, { "data": { "id": "bc94c51c-8035-4424-a618-76ea97c406e7", "source": "9c8a56fb-b2c2-4025-9c1e-266f0c5862fd", "target": "af2f5715-9e8f-430f-9b9c-cada4e18fe01", "similarity_coefficient": 0.4791666666666667, "overlap_size": 115 } }, { "data": { "id": "b334c656-4530-467c-b179-216435c4e16a", "source": "9c8a56fb-b2c2-4025-9c1e-266f0c5862fd", "target": "7b910fec-96ff-45a5-9b23-0ddf4e8d2541", "similarity_coefficient": 0.2658662092624357, "overlap_size": 155 } }, { "data": { "id": "a866b19a-dc42-4f26-87fd-3decc6a07a48", "source": "9c8a56fb-b2c2-4025-9c1e-266f0c5862fd", "target": "b76a8552-5234-4d6a-83eb-4221fe662024", "similarity_coefficient": 0.3082706766917293, "overlap_size": 123 } }, { "data": { "id": "3ac08795-d7bf-4d93-bcf9-bb4d34bbe545", "source": "9c8a56fb-b2c2-4025-9c1e-266f0c5862fd", "target": "e9a4d13e-edb7-4554-9bb8-173dad7f61fd", "similarity_coefficient": 0.5151515151515151, "overlap_size": 136 } }, { "data": { "id": "bdd2c815-e7e3-4600-b39b-6e644f3cdba7", "source": "0bf7b76e-7964-4a44-b982-d3ed9a29e578", "target": "684c84ca-ba13-4d6a-bb35-83a6b7505837", "similarity_coefficient": 0.3148148148148148, "overlap_size": 17 } }, { "data": { "id": "c4b4e962-d3d4-4fd2-99d8-8fcdb340ddc8", "source": "0bf7b76e-7964-4a44-b982-d3ed9a29e578", "target": "01c3d342-02d3-438f-8b89-10cc523c45ee", "similarity_coefficient": 0.3783783783783784, "overlap_size": 14 } }, { "data": { "id": "e07d4d3c-0254-4716-9a74-ef0c6b355875", "source": "0bf7b76e-7964-4a44-b982-d3ed9a29e578", "target": "3edf3fff-995c-4924-b458-d068cbd087e5", "similarity_coefficient": 0.3333333333333333, "overlap_size": 18 } }, { "data": { "id": "e7d0b9ab-fe28-4607-ab62-130bf3aff0fd", "source": "0bf7b76e-7964-4a44-b982-d3ed9a29e578", "target": "1f3bae29-3389-49e1-b7c5-500f8b863b80", "similarity_coefficient": 0.8947368421052632, "overlap_size": 34 } }, { "data": { "id": "4707fde7-426b-4edf-a9cd-b6bd9deba787", "source": "0bf7b76e-7964-4a44-b982-d3ed9a29e578", "target": "c65a4eb7-a904-4015-aa2a-7953d2147d48", "similarity_coefficient": 0.2903225806451613, "overlap_size": 18 } }, { "data": { "id": "34ec5c26-dd8f-41b1-9604-b35e2a2a17dc", "source": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "b409641b-394e-4588-929f-bc46d0d1949c", "source": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "e22c208f-b276-403e-a791-f8501c0665d2", "source": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "956c61ef-203c-4d01-914c-28e7db6e29fd", "source": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "d00485dc-111f-4eaf-bbfd-1cc6bb9f7fe6", "source": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "target": "611ff36d-7bbc-4322-bcdb-592441240039", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "1af1395f-a4fe-4131-ad3d-0b3820ebf1aa", "source": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.3561643835616438, "overlap_size": 78 } }, { "data": { "id": "6367554c-74a3-426e-8360-6e9bac2b61a5", "source": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "2b0ca243-cb85-4f01-a727-fbc74b29104f", "source": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "1c4e2fb6-a2d5-4fc0-a6e3-7e91a3bbe361", "source": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "bb6c1a74-f3a4-49f3-af32-75bbc793470c", "source": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31 } }, { "data": { "id": "3f30f8d4-110c-4812-bfe6-5709926243fb", "source": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.6694915254237288, "overlap_size": 79 } }, { "data": { "id": "7cd74af8-af0b-4d01-89c5-1954cdd0232b", "source": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "0ef9a908-b314-4813-a388-a00f470f229d", "source": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "7b9741c4-2bec-47ef-ae9d-a1d0be97d026", "source": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "51346ba7-a443-42f3-a4ed-20f15c896a14", "source": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78 } }, { "data": { "id": "89c89c26-5e19-4145-b819-e5ef75da004b", "source": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "b3f4efaf-62df-4269-9b5a-62702ab6a8ba", "source": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "6a9bb895-362f-4fd1-b0a4-3995304c1d1f", "source": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.6370967741935484, "overlap_size": 79 } }, { "data": { "id": "20af3f58-7417-4f32-9c31-a04d3e495063", "source": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "980b0590-1605-4720-95f4-04638b625da4", "source": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "c1307d36-3ae0-4ee8-9410-8d26718d0e4d", "source": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "dffb0577-2d83-4ce3-88ac-75f20c4b22a1", "source": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "target": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "similarity_coefficient": 0.4, "overlap_size": 78 } }, { "data": { "id": "319a6376-e864-412f-9eb6-33b8ab395ff9", "source": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "07db1104-ba70-428c-8547-397a1d1e9ca6", "source": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.5, "overlap_size": 78 } }, { "data": { "id": "b02e88ef-1456-4f78-9616-e5d1a3251ba5", "source": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78 } }, { "data": { "id": "7b5fe98c-3c36-496f-9c15-a0db4bfd1675", "source": "156ab93c-d83e-4867-8c1b-c3de64905979", "target": "3edf3fff-995c-4924-b458-d068cbd087e5", "similarity_coefficient": 0.2823529411764706, "overlap_size": 24 } }, { "data": { "id": "4c2976bb-e1ac-4117-9308-a6c740a9aa20", "source": "156ab93c-d83e-4867-8c1b-c3de64905979", "target": "684c84ca-ba13-4d6a-bb35-83a6b7505837", "similarity_coefficient": 0.27058823529411763, "overlap_size": 23 } }, { "data": { "id": "fac452ea-b187-4285-8c38-424e4c02a485", "source": "156ab93c-d83e-4867-8c1b-c3de64905979", "target": "1c684d9f-9d8f-4487-8fee-cd986c5d844b", "similarity_coefficient": 0.3604060913705584, "overlap_size": 71 } }, { "data": { "id": "3c4e6b3b-2ef3-4b18-b834-2df35dd35a43", "source": "156ab93c-d83e-4867-8c1b-c3de64905979", "target": "c65a4eb7-a904-4015-aa2a-7953d2147d48", "similarity_coefficient": 0.2857142857142857, "overlap_size": 26 } }, { "data": { "id": "0d341a40-72dc-42dd-9167-df430d1a5846", "source": "31a9d742-83d3-4990-9495-42d49c780cec", "target": "a87e7bfc-894c-4e4b-b80f-64bba3e8adc1", "similarity_coefficient": 0.36666666666666664, "overlap_size": 33 } }, { "data": { "id": "46edd872-e601-4842-8a4d-9ef06a016d93", "source": "31a9d742-83d3-4990-9495-42d49c780cec", "target": "9b45383f-4e68-4ffa-a477-21d4f8675759", "similarity_coefficient": 0.3626373626373626, "overlap_size": 33 } }, { "data": { "id": "859241ae-4816-466b-88a8-84617c7eedba", "source": "a966733a-44de-48c5-8959-37cec18be5cf", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "b8e59bb4-4713-4bb9-89c4-711da9d01b70", "source": "a966733a-44de-48c5-8959-37cec18be5cf", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "f0d89436-1cc0-4295-9b93-7b5400fcf239", "source": "a966733a-44de-48c5-8959-37cec18be5cf", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.4292682926829268, "overlap_size": 88 } }, { "data": { "id": "4215801f-e14f-4163-980e-d84eb3907f2a", "source": "a966733a-44de-48c5-8959-37cec18be5cf", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.5641025641025641, "overlap_size": 88 } }, { "data": { "id": "4d13ca49-e40e-407f-8fcb-f8d15d44155d", "source": "a966733a-44de-48c5-8959-37cec18be5cf", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "f15a6662-d7fd-4f0e-867c-46950dd9a624", "source": "a966733a-44de-48c5-8959-37cec18be5cf", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.7457627118644068, "overlap_size": 88 } }, { "data": { "id": "8d5109ad-78fa-4cd3-bf7a-b4bf4fbf392d", "source": "a966733a-44de-48c5-8959-37cec18be5cf", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.7457627118644068, "overlap_size": 88 } }, { "data": { "id": "a8f02867-3d6c-40de-940f-aa933e38af5e", "source": "a966733a-44de-48c5-8959-37cec18be5cf", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.30701754385964913, "overlap_size": 35 } }, { "data": { "id": "80566d7f-4659-42fa-b27b-15b7b4328fcf", "source": "a966733a-44de-48c5-8959-37cec18be5cf", "target": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "39a1ab6d-87bc-472c-bc38-c2d2372e15bc", "source": "a966733a-44de-48c5-8959-37cec18be5cf", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.8461538461538461, "overlap_size": 88 } }, { "data": { "id": "68c02abf-a263-44dc-9401-99bb6bc83d55", "source": "a966733a-44de-48c5-8959-37cec18be5cf", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.4018264840182648, "overlap_size": 88 } }, { "data": { "id": "c19801a7-9bb9-4fc0-b7d8-066b33e5ef5e", "source": "a966733a-44de-48c5-8959-37cec18be5cf", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "54175010-2a38-48ac-be88-9a5d3cad6d21", "source": "a966733a-44de-48c5-8959-37cec18be5cf", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.6136363636363636, "overlap_size": 81 } }, { "data": { "id": "fb55ee67-53a1-4278-9e4d-e023928ddd9f", "source": "a966733a-44de-48c5-8959-37cec18be5cf", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.9565217391304348, "overlap_size": 88 } }, { "data": { "id": "783a2bd6-23be-48a7-b670-e2920b511cab", "source": "a966733a-44de-48c5-8959-37cec18be5cf", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "d645880c-7c28-4851-9fdb-ba3c2ef3cd36", "source": "a966733a-44de-48c5-8959-37cec18be5cf", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.7394957983193278, "overlap_size": 88 } }, { "data": { "id": "121f6844-139c-46e0-8e41-c3f6e88993a1", "source": "a966733a-44de-48c5-8959-37cec18be5cf", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.7719298245614035, "overlap_size": 88 } }, { "data": { "id": "ca6cd021-d372-4682-9249-6c778c8e735a", "source": "a966733a-44de-48c5-8959-37cec18be5cf", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.3333333333333333, "overlap_size": 35 } }, { "data": { "id": "9cccc5dd-25c4-41ae-a12d-a4e8479f56b6", "source": "a966733a-44de-48c5-8959-37cec18be5cf", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.9166666666666666, "overlap_size": 88 } }, { "data": { "id": "7a5c6a0b-68b6-4113-b5c9-bc1a82cf4450", "source": "a966733a-44de-48c5-8959-37cec18be5cf", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "6b6d6b5d-8a0e-409a-ad6c-e7fd3aff0628", "source": "a966733a-44de-48c5-8959-37cec18be5cf", "target": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "similarity_coefficient": 0.4512820512820513, "overlap_size": 88 } }, { "data": { "id": "7b79420d-962e-4e73-b6ab-b1c7bf35cbdb", "source": "a966733a-44de-48c5-8959-37cec18be5cf", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "38bf49cb-6655-46ef-b864-25dc2b49a57b", "source": "a966733a-44de-48c5-8959-37cec18be5cf", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "ef7ef4bd-aa75-42bf-94b1-89d0696678da", "source": "a966733a-44de-48c5-8959-37cec18be5cf", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "2f87edcb-5252-4739-bcb9-9b253ad00b76", "source": "a966733a-44de-48c5-8959-37cec18be5cf", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "45a575ab-d20f-4f44-a69d-2bdccc7d23fd", "source": "a966733a-44de-48c5-8959-37cec18be5cf", "target": "611ff36d-7bbc-4322-bcdb-592441240039", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "ef5752f0-3161-47ea-99cd-631929317c88", "source": "81865991-8ff0-4777-ba66-cdfa84f0f6a7", "target": "1c684d9f-9d8f-4487-8fee-cd986c5d844b", "similarity_coefficient": 0.4010152284263959, "overlap_size": 79 } }, { "data": { "id": "9a1f732f-ed7f-448e-878d-5d9b9fdc79e4", "source": "9e1f60ec-a42a-4cf8-88dd-4ad48094fd38", "target": "7db9d43a-1d18-4be6-8d7e-f5e096178a4f", "similarity_coefficient": 0.46656649135987976, "overlap_size": 621 } }, { "data": { "id": "ce307d24-4ea0-4147-ba13-d6a0d0646510", "source": "9e1f60ec-a42a-4cf8-88dd-4ad48094fd38", "target": "334a9d67-6aaf-4a3d-b324-1704275051be", "similarity_coefficient": 0.2682926829268293, "overlap_size": 275 } }, { "data": { "id": "0763a0c2-28c3-4fbf-a2f2-1c65d99bca5a", "source": "9e1f60ec-a42a-4cf8-88dd-4ad48094fd38", "target": "b15aeda3-04c6-41d3-b5bf-b302b6105dc0", "similarity_coefficient": 0.46656649135987976, "overlap_size": 621 } }, { "data": { "id": "7e340e34-2865-48fa-9f12-c1acb70f630e", "source": "9e1f60ec-a42a-4cf8-88dd-4ad48094fd38", "target": "d45a77c2-ed42-4c4f-8e17-002f798690b8", "similarity_coefficient": 0.48292682926829267, "overlap_size": 495 } }, { "data": { "id": "df120c1d-6832-40c5-b739-a4dbe7752738", "source": "9e1f60ec-a42a-4cf8-88dd-4ad48094fd38", "target": "ca74dbd7-f987-4bb8-81f5-3c8fef7fee7c", "similarity_coefficient": 0.5012942191544435, "overlap_size": 581 } }, { "data": { "id": "f6503e48-4ade-43f7-a462-cd8345f85894", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.28488372093023256, "overlap_size": 49 } }, { "data": { "id": "34b9ccf2-1fe4-4a4d-a826-564554872b9d", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.46, "overlap_size": 46 } }, { "data": { "id": "68f8ee97-0515-4c07-9348-6af660538691", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.4112903225806452, "overlap_size": 51 } }, { "data": { "id": "afe3b2e7-006f-499a-b482-7db1e5ba4250", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.3790322580645161, "overlap_size": 47 } }, { "data": { "id": "a8753d5d-aeb0-4132-8c1b-0f2c89d72f1b", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.4152542372881356, "overlap_size": 49 } }, { "data": { "id": "cd32b335-193e-41b4-aa93-49a562d565e0", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.4083333333333333, "overlap_size": 49 } }, { "data": { "id": "45192bac-7dc4-4c62-ba91-0d477b6628d1", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.5, "overlap_size": 49 } }, { "data": { "id": "2b75bc5c-7d2b-456f-8540-c98cfac5e67f", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.4945054945054945, "overlap_size": 45 } }, { "data": { "id": "bfeabef1-2d1d-47fa-ab6c-e0487656ca1c", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.3602941176470588, "overlap_size": 49 } }, { "data": { "id": "5b081cf8-8c00-4376-a26d-c2010d9abc0e", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.34265734265734266, "overlap_size": 49 } }, { "data": { "id": "71eda288-5886-438f-9e96-f6d32e4d28c0", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.5, "overlap_size": 46 } }, { "data": { "id": "ff95decf-b289-4ef7-b45d-6a9077e176d6", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49 } }, { "data": { "id": "c06f6b69-18d3-4931-a4a1-f8d1244d6502", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.40336134453781514, "overlap_size": 48 } }, { "data": { "id": "a2182410-96c8-422b-94f1-7e39c87e1c45", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.4842105263157895, "overlap_size": 46 } }, { "data": { "id": "0b1a38fc-62d1-4a35-9498-ee1323817cb3", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.5212765957446809, "overlap_size": 49 } }, { "data": { "id": "e4f75d6f-e885-437e-8123-adfab162b8af", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.3026315789473684, "overlap_size": 46 } }, { "data": { "id": "4733559e-3130-42b8-8580-366356fa7a35", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49 } }, { "data": { "id": "90bfcb5f-4fde-4690-bd16-9eb9deb580eb", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.36764705882352944, "overlap_size": 50 } }, { "data": { "id": "853ca784-6b21-4806-8f17-37916940c86e", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.532608695652174, "overlap_size": 49 } }, { "data": { "id": "5d4b8dbb-9a9b-4ba6-8aa7-94e1321f2291", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.375, "overlap_size": 51 } }, { "data": { "id": "2849412f-604b-428e-8827-1f46ff7d4fd5", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "7b343d40-b5d8-43c7-a962-d44c5ea61156", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.550561797752809, "overlap_size": 49 } }, { "data": { "id": "ca4c5212-dcb7-48f7-9b46-0ce181020ded", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49 } }, { "data": { "id": "14a0629f-dcbe-4f4f-84f3-09ea79248535", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.27218934911242604, "overlap_size": 46 } }, { "data": { "id": "f0759622-20d7-4a98-a65e-3b89d8e7153b", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49 } }, { "data": { "id": "9f6f92c4-20be-4cb2-a2d8-2b8956b27ee6", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.25133689839572193, "overlap_size": 47 } }, { "data": { "id": "6334bd3d-e8a8-436c-bcb1-4f063e2f3e8d", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.532608695652174, "overlap_size": 49 } }, { "data": { "id": "b8d2fdb3-5f4b-45b9-a05f-90dcaca2dc0c", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.25125628140703515, "overlap_size": 50 } }, { "data": { "id": "0924719f-043a-4ced-823a-bcaa21e0030a", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49 } }, { "data": { "id": "290b71c5-9ebf-4fca-81bb-293c1f88a38e", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.3858267716535433, "overlap_size": 49 } }, { "data": { "id": "7f935281-938a-48b3-8fba-4521227a3654", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.310126582278481, "overlap_size": 49 } }, { "data": { "id": "028b162d-b55e-4136-9368-ffaefe2c0530", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.26666666666666666, "overlap_size": 24 } }, { "data": { "id": "9ae2f0b6-9133-4ec7-a790-55b600dc7793", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49 } }, { "data": { "id": "b4e1f689-609a-4805-bc14-27328c1a9ebe", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49 } }, { "data": { "id": "c90d5d42-64bd-4724-b7be-2545d27ec6b3", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49 } }, { "data": { "id": "679ffd22-08d5-4a0e-a01f-b7b88fb023ac", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.4298245614035088, "overlap_size": 49 } }, { "data": { "id": "eff017f4-17fc-4479-afa4-65b9b643acb7", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.48514851485148514, "overlap_size": 49 } }, { "data": { "id": "3c0e0fbc-c4e1-43d4-8ea6-12cea4c3b0b3", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.34074074074074073, "overlap_size": 46 } }, { "data": { "id": "ae098990-4d00-41a6-a859-13c658d43eee", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.3246753246753247, "overlap_size": 50 } }, { "data": { "id": "98c21698-280f-4f00-ba25-293edeb74ffc", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49 } }, { "data": { "id": "0fc82445-9892-4a27-83d4-35d83b301c5c", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49 } }, { "data": { "id": "d537fe9e-6f32-4b40-8918-86dd2368ddd8", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49 } }, { "data": { "id": "b47132f2-7e56-4db9-94c4-8232b1e40f0b", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.3684210526315789, "overlap_size": 49 } }, { "data": { "id": "47eada2c-37ed-4e76-ad22-e8f48e626e69", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.550561797752809, "overlap_size": 49 } }, { "data": { "id": "bfdfcc68-33dd-4ff9-8410-61a2ecd2c194", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49 } }, { "data": { "id": "51a2b5cc-fb8f-42ad-9a08-bdd6a67d8333", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.44144144144144143, "overlap_size": 49 } }, { "data": { "id": "c21767c3-3b8f-4fdf-9f3a-8672e663f710", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.550561797752809, "overlap_size": 49 } }, { "data": { "id": "13231df7-97f0-462d-bfd2-2bed03d4e027", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49 } }, { "data": { "id": "ea3e391a-62b8-4ea9-9042-902115cf0b72", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.392, "overlap_size": 49 } }, { "data": { "id": "7b58994a-2a1f-4736-935b-c24f9be6217b", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49 } }, { "data": { "id": "c6d09048-f0fe-4e97-9d36-f239069521f7", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.5274725274725275, "overlap_size": 48 } }, { "data": { "id": "562e3c50-c366-4779-a0cf-58e8eba2d02f", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.25257731958762886, "overlap_size": 49 } }, { "data": { "id": "559d161d-9d81-4973-9cfb-fb4400af59c5", "source": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.390625, "overlap_size": 50 } }, { "data": { "id": "61924ff5-4152-4d49-b39e-5c9c1e733a5a", "source": "c07e81ab-49b0-4377-a77f-dde111571036", "target": "0f4d0e69-aab2-48e4-ba31-cbca97c2d81e", "similarity_coefficient": 0.3448275862068966, "overlap_size": 30 } }, { "data": { "id": "17d4d44f-3f8a-4af1-984f-f3332438712e", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.5476190476190477, "overlap_size": 46 } }, { "data": { "id": "66e80abd-6782-453d-a50b-ec6a29b75e8d", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.4423076923076923, "overlap_size": 46 } }, { "data": { "id": "3d5ddebe-8b49-4ea7-ad02-40f3f452473b", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.6133333333333333, "overlap_size": 46 } }, { "data": { "id": "a146260d-b069-4569-89a8-cc71ac2e8c99", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.647887323943662, "overlap_size": 46 } }, { "data": { "id": "7c2832cd-f795-4c9f-8ac8-4be41c5351a7", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.5974025974025974, "overlap_size": 46 } }, { "data": { "id": "a0986e08-ed42-4109-8ab2-276599d02118", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.46938775510204084, "overlap_size": 46 } }, { "data": { "id": "89b53ba6-9da1-41c0-9f6d-5c23a08ec03d", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.49612403100775193, "overlap_size": 64 } }, { "data": { "id": "93289f2c-93d4-4a28-9962-eece22003ba2", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.3709677419354839, "overlap_size": 46 } }, { "data": { "id": "835a9ebc-7332-456f-9211-c0dffd108a6a", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.5822784810126582, "overlap_size": 46 } }, { "data": { "id": "1cc815c2-cbae-47d0-9e1c-6ee3aade357d", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "080d7999-edb3-459d-97a1-0b0c699425b5", "similarity_coefficient": 0.27391304347826084, "overlap_size": 63 } }, { "data": { "id": "805e37f6-3983-49ed-9aef-49f335457b69", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.5897435897435898, "overlap_size": 46 } }, { "data": { "id": "0279b12f-641e-4e50-8330-2e39d581ecdd", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.42990654205607476, "overlap_size": 46 } }, { "data": { "id": "c1b24f76-ef96-4c51-921d-79bfe5991007", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.5542168674698795, "overlap_size": 46 } }, { "data": { "id": "7a071f97-ec28-4bb8-9832-d5cd42d060f0", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.9130434782608695, "overlap_size": 63 } }, { "data": { "id": "493c83bf-83c3-4ebd-8ad4-62336e60ba71", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.5833333333333334, "overlap_size": 42 } }, { "data": { "id": "dd032aff-1792-4700-b0ec-22f339732d26", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.3006535947712418, "overlap_size": 46 } }, { "data": { "id": "492cd57d-dbce-4c68-876d-d445708a6c88", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.5609756097560976, "overlap_size": 46 } }, { "data": { "id": "ce65d99f-1ddf-4894-b71a-15429de816b1", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.40350877192982454, "overlap_size": 46 } }, { "data": { "id": "f0280603-3620-4118-a599-01b314c769a4", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.6571428571428571, "overlap_size": 46 } }, { "data": { "id": "05173eb4-f2e5-4895-b66a-1f00fad31441", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.5897435897435898, "overlap_size": 46 } }, { "data": { "id": "4961a6b5-ec53-4082-b313-8e931a86ed27", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.6571428571428571, "overlap_size": 46 } }, { "data": { "id": "227c0c55-e81c-43ea-ad66-a80ca82c80ea", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.41818181818181815, "overlap_size": 46 } }, { "data": { "id": "fac9d248-1329-4bbb-928d-ed4e53488cfb", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.37058823529411766, "overlap_size": 63 } }, { "data": { "id": "2f830079-ab44-4016-b1e8-1a69a3b2b322", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.647887323943662, "overlap_size": 46 } }, { "data": { "id": "77ccf28a-805e-4df4-96b0-dadc42db6911", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.84, "overlap_size": 63 } }, { "data": { "id": "b4aaa5b2-b058-4c74-80c3-56083aaf6428", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.373134328358209, "overlap_size": 25 } }, { "data": { "id": "2300be3f-13e2-4a6e-b460-748a1aa1a358", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.7272727272727273, "overlap_size": 64 } }, { "data": { "id": "53aee530-e249-4e2d-b122-4026ab66ef50", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.39263803680981596, "overlap_size": 64 } }, { "data": { "id": "a4eb2730-06fc-4cd3-a6f1-6f2b8d97ae15", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.5974025974025974, "overlap_size": 46 } }, { "data": { "id": "da955d18-097b-4d02-b7df-d5d10a029d99", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.5168539325842697, "overlap_size": 46 } }, { "data": { "id": "c22f410c-cb45-45f3-bad7-089eeaea1872", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.40764331210191085, "overlap_size": 64 } }, { "data": { "id": "f2124549-9881-4822-bbda-ea14a000e53c", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.3898305084745763, "overlap_size": 46 } }, { "data": { "id": "e4bd71be-c389-468e-afbe-1437524edb64", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.8076923076923077, "overlap_size": 63 } }, { "data": { "id": "a012436b-5285-498d-bafa-faab4701a6ae", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.3382352941176471, "overlap_size": 46 } }, { "data": { "id": "93ee865c-1fdf-43e4-9858-6f210096c129", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.6764705882352942, "overlap_size": 46 } }, { "data": { "id": "55455440-24d3-4cf5-8f08-155cbc425e27", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.6571428571428571, "overlap_size": 46 } }, { "data": { "id": "a8284d67-2c4a-430d-91fb-d7019c90adbb", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.5897435897435898, "overlap_size": 46 } }, { "data": { "id": "dd18aff0-597e-4ea7-8f14-694b2ce3e75a", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.42592592592592593, "overlap_size": 46 } }, { "data": { "id": "3b6c40fc-9cd8-4e67-bb45-b22a8cd21213", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.6216216216216216, "overlap_size": 46 } }, { "data": { "id": "e79636b8-862c-44c9-9f6f-d043831dfec4", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.45544554455445546, "overlap_size": 46 } }, { "data": { "id": "dbc36dd6-cc46-44cb-b953-f7ff9a8cf554", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.8513513513513513, "overlap_size": 63 } }, { "data": { "id": "3c59e81f-3323-4f40-ad9c-c40841c8f14c", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.3865546218487395, "overlap_size": 46 } }, { "data": { "id": "3991a7bd-26ed-4c9f-9d50-0c6e8cb1d800", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.6527777777777778, "overlap_size": 47 } }, { "data": { "id": "b7eaa3ce-5f52-47c5-aa05-5646e0722ee5", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.5289256198347108, "overlap_size": 64 } }, { "data": { "id": "9c1ec800-0ccc-4eb6-a583-d9c4e688de4d", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.46078431372549017, "overlap_size": 47 } }, { "data": { "id": "2aed07e5-9016-49fc-b6af-bb37b7309d3a", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.647887323943662, "overlap_size": 46 } }, { "data": { "id": "a9ca722f-b4d6-4fea-97cb-59014b2b87bd", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.6301369863013698, "overlap_size": 46 } }, { "data": { "id": "ee4eae1f-adb0-4115-a024-0b9b6ffdb5ad", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.27710843373493976, "overlap_size": 46 } }, { "data": { "id": "d0a2daa5-0222-44a1-b26b-0db8fec4410e", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.40707964601769914, "overlap_size": 46 } }, { "data": { "id": "00078f3b-6cec-42ce-8e99-6a47bda88c9e", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.6571428571428571, "overlap_size": 46 } }, { "data": { "id": "0845eb1c-837f-471e-8dbe-0165258d6ca2", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.39316239316239315, "overlap_size": 46 } }, { "data": { "id": "9feaf8b7-d039-4908-b5ff-1cf527572e44", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.7901234567901234, "overlap_size": 64 } }, { "data": { "id": "a95eb3bc-cb77-45bc-b648-fb67b607fe32", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.5897435897435898, "overlap_size": 46 } }, { "data": { "id": "f705a3bd-ad54-40d5-9d46-294a9c708266", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.6301369863013698, "overlap_size": 46 } }, { "data": { "id": "d8e47ae6-42cc-4778-a76b-d471d9dc38a5", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.46464646464646464, "overlap_size": 46 } }, { "data": { "id": "eb2c704a-6a4b-408d-8d13-93e842be7e8e", "source": "8699892d-d15b-4f3d-8833-d8fd933ee911", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.5714285714285714, "overlap_size": 64 } }, { "data": { "id": "e048e9bf-81ab-4325-8657-d5c040fee547", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.5714285714285714, "overlap_size": 52 } }, { "data": { "id": "80471f3d-7f84-43a4-bc7f-b85273d62005", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.48514851485148514, "overlap_size": 49 } }, { "data": { "id": "920c033c-cfad-44f7-9c88-6805626af2c0", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.2754491017964072, "overlap_size": 46 } }, { "data": { "id": "bc0da49b-fa5d-4bb7-b000-b91900751bae", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49 } }, { "data": { "id": "0c873dec-7b98-4f1c-9619-e28fbc93b1eb", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.366412213740458, "overlap_size": 48 } }, { "data": { "id": "f73a8c99-a65e-4fd3-9715-24a8f231f921", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.3475177304964539, "overlap_size": 49 } }, { "data": { "id": "d404623e-da2f-474f-b111-a3a487187afc", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49 } }, { "data": { "id": "9c717e3f-937d-4bc8-b72c-d8f882818b3b", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.5056179775280899, "overlap_size": 45 } }, { "data": { "id": "1d4eab59-07df-4d5f-a052-012c1e5285fd", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.46938775510204084, "overlap_size": 46 } }, { "data": { "id": "8001cc4b-49ec-41fb-b4e1-dc667f6f96bc", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49 } }, { "data": { "id": "e4b9729a-bd57-4d73-8c60-42e9f39fbc60", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.5360824742268041, "overlap_size": 52 } }, { "data": { "id": "1deae103-0c30-437b-bd09-4859256b473e", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.5747126436781609, "overlap_size": 50 } }, { "data": { "id": "07223c97-9cc9-4b5b-ae30-13696988d2a1", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "010be1af-1471-4ed5-a0d9-89b40c73d8cd", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49 } }, { "data": { "id": "14bdbdca-6aba-4eeb-96f5-1e6c097554df", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49 } }, { "data": { "id": "239809f0-48fc-40e1-88d9-e033beb27af6", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.5257731958762887, "overlap_size": 51 } }, { "data": { "id": "e8f91199-8da1-4510-9964-17a56146fac8", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.37404580152671757, "overlap_size": 49 } }, { "data": { "id": "c9353c7c-aa21-4388-ae28-8fb345110650", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.532608695652174, "overlap_size": 49 } }, { "data": { "id": "51663036-9395-489e-b013-202745ea3a26", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49 } }, { "data": { "id": "16b11868-da1b-4a55-9def-5e41065c5e5a", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.392, "overlap_size": 49 } }, { "data": { "id": "d3420523-6d79-4e63-bb40-73278f45c2d2", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.45098039215686275, "overlap_size": 46 } }, { "data": { "id": "9b05f215-8737-41d7-b5dc-13854747eaab", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.4224137931034483, "overlap_size": 49 } }, { "data": { "id": "403f2a5e-dd5f-4904-b7f1-cd49a7fc28f4", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.5824175824175825, "overlap_size": 53 } }, { "data": { "id": "6b193a0a-5df9-4f23-b101-c35b7878031b", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.37398373983739835, "overlap_size": 46 } }, { "data": { "id": "114f487b-1247-4142-892a-d4bc01fe395c", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.3225806451612903, "overlap_size": 50 } }, { "data": { "id": "a746c07c-ccbb-4b04-a295-3a61b7845f14", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.5617977528089888, "overlap_size": 50 } }, { "data": { "id": "3fc0f47b-7759-4840-910a-5672031814d5", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.3805970149253731, "overlap_size": 51 } }, { "data": { "id": "7bf12303-cda5-4b68-8b09-c5225d1c6b03", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.30666666666666664, "overlap_size": 46 } }, { "data": { "id": "263f0876-8eac-4af2-ba1f-61aaa87e5a25", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.5824175824175825, "overlap_size": 53 } }, { "data": { "id": "feb1a649-f056-4a26-888d-8dbb996bb5b2", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49 } }, { "data": { "id": "57c3eacc-430b-4766-b7d1-fece5f474ffd", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49 } }, { "data": { "id": "f08c8851-9c06-4fda-9545-efabf9227acf", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49 } }, { "data": { "id": "193baa67-f0b4-419a-a527-1a1a75c65d30", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.362962962962963, "overlap_size": 49 } }, { "data": { "id": "4c99e0b5-577c-44d8-b662-fab5d06f3a0a", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.5274725274725275, "overlap_size": 48 } }, { "data": { "id": "d991d675-61b6-46c8-8a58-9ac965567509", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.3983050847457627, "overlap_size": 47 } }, { "data": { "id": "370060cd-219f-4e26-af3d-602660ac72c7", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.37593984962406013, "overlap_size": 50 } }, { "data": { "id": "b14fe118-b7c1-4604-b003-0841712384eb", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.36486486486486486, "overlap_size": 54 } }, { "data": { "id": "7a62e84a-154e-4c64-ac87-411d56ee32a2", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.5555555555555556, "overlap_size": 50 } }, { "data": { "id": "cbbbc7de-f7ef-46bb-ae75-e32ab253bb3c", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49 } }, { "data": { "id": "da3f401f-d15b-47b5-8a50-a7ece3eab8ee", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.4375, "overlap_size": 49 } }, { "data": { "id": "ccae13f1-e5d6-4b72-a063-03bba1862993", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.5280898876404494, "overlap_size": 47 } }, { "data": { "id": "77645dfa-ac78-4f09-8e0a-aa40fb6a095f", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49 } }, { "data": { "id": "b9880f54-966c-4f47-9647-e3d33590d3c0", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.6222222222222222, "overlap_size": 84 } }, { "data": { "id": "f147b4f6-4025-41c2-8917-299defc9a724", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.4396551724137931, "overlap_size": 51 } }, { "data": { "id": "cd6ce5ee-0b05-4808-9198-e6a6751c00ed", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.25380710659898476, "overlap_size": 50 } }, { "data": { "id": "22c59eea-223b-435a-aa12-dde5ae9ce4f1", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.5222222222222223, "overlap_size": 47 } }, { "data": { "id": "51ad64d0-9e16-44f3-aa08-66916544c531", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.5212765957446809, "overlap_size": 49 } }, { "data": { "id": "961b6d82-1465-47af-9a87-abc31964aca9", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.3983739837398374, "overlap_size": 49 } }, { "data": { "id": "dc5b3c6e-d314-4f09-880a-69c064a7a8f8", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.2727272727272727, "overlap_size": 24 } }, { "data": { "id": "1a16c406-fc9b-4095-939d-ca50082dafe0", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.47619047619047616, "overlap_size": 50 } }, { "data": { "id": "ea31ee34-107b-45f2-9a65-cfd881765dc4", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.41935483870967744, "overlap_size": 52 } }, { "data": { "id": "179c7d34-21bc-4094-93d4-b0525b193dc4", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.4049586776859504, "overlap_size": 49 } }, { "data": { "id": "516ab59a-65c3-4f0d-b411-cb6062294515", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49 } }, { "data": { "id": "b945c347-f8f8-4eb8-ae21-53e049e0b680", "source": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.2617801047120419, "overlap_size": 50 } }, { "data": { "id": "6d60a97f-1b25-4d18-aba0-5c154f0877e6", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49 } }, { "data": { "id": "75c124ef-18ab-4cf6-b493-4b09291eec1e", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.3357664233576642, "overlap_size": 46 } }, { "data": { "id": "28902fbf-bd67-4ab9-b47a-c6135bcc62a6", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.5882352941176471, "overlap_size": 50 } }, { "data": { "id": "ebceada6-be1f-4a56-bc21-b037e6de4c2e", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "904648c2-551b-426e-815e-74ced2374458", "similarity_coefficient": 0.26424870466321243, "overlap_size": 51 } }, { "data": { "id": "86635bd4-175b-43f9-ba76-9807930c7a0b", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.381294964028777, "overlap_size": 53 } }, { "data": { "id": "ec24c762-a104-4094-bf2b-b981edbf986f", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "78f8268a-2027-459b-86bd-adb26b4e5fad", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.4576271186440678, "overlap_size": 54 } }, { "data": { "id": "397f0145-72de-4561-8e45-1171f077ef18", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.4067796610169492, "overlap_size": 48 } }, { "data": { "id": "96b0679d-4f44-47a0-b818-45c993f8edd3", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.25654450261780104, "overlap_size": 49 } }, { "data": { "id": "de0c7de2-3d3d-4351-89a1-4caf60a6ca87", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49 } }, { "data": { "id": "1d1d219c-9d76-479c-862c-174789270c16", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.6582278481012658, "overlap_size": 52 } }, { "data": { "id": "6f1517ef-9eb0-47fe-9117-9cde240fc2bd", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49 } }, { "data": { "id": "08befe93-4563-4c24-9dff-d1a8f1bcaf95", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49 } }, { "data": { "id": "45cba4bd-1fc4-48f3-a38f-f622a6810bb8", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49 } }, { "data": { "id": "9aa86f48-bf50-463c-8010-72341e099211", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.6455696202531646, "overlap_size": 51 } }, { "data": { "id": "bb76dae0-446d-4b23-9940-8de844e73064", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.26, "overlap_size": 52 } }, { "data": { "id": "d467ba86-1617-4106-8d26-d2c28d66e394", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49 } }, { "data": { "id": "f5df2882-92ed-4a73-8013-4ae26a7472f1", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.5921052631578947, "overlap_size": 45 } }, { "data": { "id": "6c3c2e55-d7c9-41ce-8e20-b8c86a00383e", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49 } }, { "data": { "id": "5590503c-f038-4930-8193-794cea063520", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.51, "overlap_size": 51 } }, { "data": { "id": "31d8e7a8-7a07-4de8-9ff0-0401e451d1c0", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.6375, "overlap_size": 51 } }, { "data": { "id": "37682dc1-3076-49f7-bf8d-d72d20ed8eca", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49 } }, { "data": { "id": "aa577652-cc6a-42a7-b3fa-aee34cee6c5d", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49 } }, { "data": { "id": "5157817a-dd17-479a-9239-bc773228e42a", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.6756756756756757, "overlap_size": 50 } }, { "data": { "id": "a647d271-b046-41f3-a664-c9d2b1633b01", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.494949494949495, "overlap_size": 49 } }, { "data": { "id": "1e310653-7874-4f81-be4b-321fb11d2630", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49 } }, { "data": { "id": "d082907c-cd0a-4309-b896-d3f56a0984b1", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.4375, "overlap_size": 49 } }, { "data": { "id": "4ce773b8-d699-4ee7-9d82-bcac643f7682", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.4152542372881356, "overlap_size": 49 } }, { "data": { "id": "8f2942f0-0fa9-4095-9831-ffbe56fb5d0b", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.35526315789473684, "overlap_size": 54 } }, { "data": { "id": "6a06b55b-0062-41ba-ae47-fc045ffd81d6", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.48598130841121495, "overlap_size": 52 } }, { "data": { "id": "0b891357-b086-4acb-9084-1a74295d563d", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.684931506849315, "overlap_size": 50 } }, { "data": { "id": "a11fd0c3-b64f-403a-b271-d6d87c1064fc", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.5247524752475248, "overlap_size": 53 } }, { "data": { "id": "60330eac-680a-4555-9f71-c6fbf5242824", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.5955056179775281, "overlap_size": 53 } }, { "data": { "id": "934df0c8-e088-4c90-82f4-6401924e8d6b", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49 } }, { "data": { "id": "fdeb3629-e898-46dc-b094-3de1cc2c316f", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.28823529411764703, "overlap_size": 49 } }, { "data": { "id": "5a1fbe2d-14c9-457e-a33a-00f5197c8f67", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.4166666666666667, "overlap_size": 50 } }, { "data": { "id": "57e63439-bc18-47a2-ab7e-b3e8ceb8fbf2", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49 } }, { "data": { "id": "27c0b1b5-04fa-4f78-8935-8b09aa8277e4", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.6153846153846154, "overlap_size": 48 } }, { "data": { "id": "0ab51182-0f6d-46fd-9184-b7400fa7ca00", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.5168539325842697, "overlap_size": 46 } }, { "data": { "id": "15cafcce-9bb8-43f9-9c31-6f8474c5795e", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "959ce100-c3ca-4f3b-914e-4f38fcf7edd9", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.49038461538461536, "overlap_size": 51 } }, { "data": { "id": "7af23704-3015-4064-91ef-d337d5e55aea", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.504950495049505, "overlap_size": 51 } }, { "data": { "id": "5650a1c6-7afe-4770-ba01-b8a35e8290ec", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.68, "overlap_size": 51 } }, { "data": { "id": "6a399a26-7313-4d43-bbae-335885103e07", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.4424778761061947, "overlap_size": 50 } }, { "data": { "id": "0b6e62d8-82cc-4c15-8c31-2d8b56574496", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.425, "overlap_size": 51 } }, { "data": { "id": "60b38e88-4f03-4723-bd48-6752d786c3d1", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.6794871794871795, "overlap_size": 53 } }, { "data": { "id": "c62ceb8e-2e3f-4746-8451-0281f504d0b0", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.3028571428571429, "overlap_size": 53 } }, { "data": { "id": "014c3581-0cfd-481f-9d57-e6684505c8c4", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49 } }, { "data": { "id": "ab6ef4d6-734a-4b00-8bb5-30e6b77ccc6b", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.44144144144144143, "overlap_size": 49 } }, { "data": { "id": "b510eefb-5f53-4778-8cf0-1e1a1e80b8e0", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49 } }, { "data": { "id": "3235f5a3-4775-44be-bbab-8d9e8036f86d", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.33783783783783783, "overlap_size": 25 } }, { "data": { "id": "95ad2bae-54a7-45b0-9a3d-7cabcef745a4", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.2987012987012987, "overlap_size": 46 } }, { "data": { "id": "25314535-d240-4aaf-b1f4-db033deeb84b", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.6794871794871795, "overlap_size": 53 } }, { "data": { "id": "3f3541b1-a6d9-459a-aa53-dac0c2701bf3", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.3, "overlap_size": 54 } }, { "data": { "id": "5939e368-b312-43e5-8ffc-ad42fc39ec21", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49 } }, { "data": { "id": "6c2a99b9-6d52-4ffc-9f3a-02901cb70827", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49 } }, { "data": { "id": "cebf25a8-a586-4b0a-8fd3-b5c7552ae14c", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.3828125, "overlap_size": 49 } }, { "data": { "id": "b5ed09c4-1020-4fad-8610-8ca4fd182500", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.6016949152542372, "overlap_size": 71 } }, { "data": { "id": "4397797b-2174-4ebc-a520-25c412cff1c4", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49 } }, { "data": { "id": "3a39d8ac-ae66-4c9a-b95e-047cba8e8aea", "source": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.620253164556962, "overlap_size": 49 } }, { "data": { "id": "234dacdb-b466-45dc-8892-d7da62c6fe2e", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.8032786885245902, "overlap_size": 49 } }, { "data": { "id": "8e5ed10c-fff6-4a92-a60c-d628f46cc5b6", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49 } }, { "data": { "id": "0291e25e-b597-4eea-bc22-a06e42f93b5c", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.8909090909090909, "overlap_size": 49 } }, { "data": { "id": "3052b52f-bcd4-4c3b-966b-aff1ccd16d6e", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.41379310344827586, "overlap_size": 24 } }, { "data": { "id": "4b11f751-46fa-4fce-9894-e1feb9ecdc6d", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.3983739837398374, "overlap_size": 49 } }, { "data": { "id": "b874c6ab-bac5-4816-9e0c-6ca270f05a33", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.7538461538461538, "overlap_size": 49 } }, { "data": { "id": "e9d31757-fd27-4cd7-9fb9-4c45f99890cc", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.2916666666666667, "overlap_size": 49 } }, { "data": { "id": "b0ac4fae-8892-4e2c-80f9-6d031e392ce1", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.620253164556962, "overlap_size": 49 } }, { "data": { "id": "295a63ea-b662-4db9-9dfc-1cb5a7711e09", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.5168539325842697, "overlap_size": 46 } }, { "data": { "id": "cd8a840c-e096-4d5e-91c9-486fbcef47cd", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49 } }, { "data": { "id": "cb6aa18c-ed21-4776-ab99-fbea5cda3718", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.7538461538461538, "overlap_size": 49 } }, { "data": { "id": "f49a2f74-225a-4f18-b080-c6ed62663361", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.7301587301587301, "overlap_size": 46 } }, { "data": { "id": "aeb5f58c-eab3-4ca3-a2f9-a748e368e970", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.28160919540229884, "overlap_size": 49 } }, { "data": { "id": "e836d21c-f460-451b-9a6f-6fd81ff850b2", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49 } }, { "data": { "id": "963cefd9-e998-4fa4-844b-2483c188f19a", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.38333333333333336, "overlap_size": 46 } }, { "data": { "id": "aabb3909-91e8-44a2-a8d5-3f2d409bba21", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49 } }, { "data": { "id": "356a5b82-6483-4f76-9833-2607752f566e", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49 } }, { "data": { "id": "49e3d19d-9968-43b0-bfb5-18ad20e29490", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.6712328767123288, "overlap_size": 49 } }, { "data": { "id": "d0242084-e8bf-40a5-9d8b-539aea51ab7d", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "904648c2-551b-426e-815e-74ced2374458", "similarity_coefficient": 0.2752808988764045, "overlap_size": 49 } }, { "data": { "id": "cfa90557-785b-4b2d-a98b-8ad4cbc8803c", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49 } }, { "data": { "id": "e8a0bb56-5e93-4400-ba6b-dc290504395c", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "82727f21-2a83-4bdc-a030-b9cf4866b7a1", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.550561797752809, "overlap_size": 49 } }, { "data": { "id": "555dc2fc-d21c-44f4-a401-40d605cdaeeb", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.3888888888888889, "overlap_size": 49 } }, { "data": { "id": "20d0fb75-6b14-464a-9f74-b994cc9ac114", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.44660194174757284, "overlap_size": 46 } }, { "data": { "id": "0ca571ea-7a34-4bc0-969c-85bcca9009ad", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49 } }, { "data": { "id": "5ce1f5d3-d283-4688-86b2-4a93223050eb", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.7540983606557377, "overlap_size": 46 } }, { "data": { "id": "44562a50-3ffa-41ca-b25f-7e8807fdcb14", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.8596491228070176, "overlap_size": 49 } }, { "data": { "id": "c08194b2-b3b8-4ba5-8784-ceb17b6652da", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.8596491228070176, "overlap_size": 49 } }, { "data": { "id": "4b6b69d9-7e0b-4c59-bca6-c4569308377c", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.7666666666666667, "overlap_size": 46 } }, { "data": { "id": "0e77207d-2b08-4827-9670-13c11fe9db94", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.7538461538461538, "overlap_size": 49 } }, { "data": { "id": "1ca621ec-4aaf-4c80-9de4-5b08082d224f", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49 } }, { "data": { "id": "f86f3bc3-6503-414c-9b7d-33b1cca5142a", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49 } }, { "data": { "id": "86054c9d-e985-4222-8e78-6f57a491c3cf", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.35, "overlap_size": 49 } }, { "data": { "id": "536f54c6-241a-407d-b573-c80e481a685c", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.48514851485148514, "overlap_size": 49 } }, { "data": { "id": "80a6dc66-400f-4c0d-9a2b-5bf172b07e61", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.765625, "overlap_size": 49 } }, { "data": { "id": "4cc08644-b0e1-4846-b321-90f93f66b823", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.7627118644067796, "overlap_size": 45 } }, { "data": { "id": "1e1f4749-4862-44e2-8b28-f58b0129d49b", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.26344086021505375, "overlap_size": 49 } }, { "data": { "id": "cfc3f3a4-a968-481d-a5f0-f368d29e8e53", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.7, "overlap_size": 49 } }, { "data": { "id": "c8ca2da9-590c-4d5a-9da0-e6816e4d26d4", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.5376344086021505, "overlap_size": 50 } }, { "data": { "id": "028079b9-a3b3-4324-a933-1e70dc17dab6", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.7424242424242424, "overlap_size": 49 } }, { "data": { "id": "cb47c930-d068-4f7d-9f26-a1af6ab204c5", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.6764705882352942, "overlap_size": 46 } }, { "data": { "id": "483be444-2734-4cc3-8421-f9b84942d878", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49 } }, { "data": { "id": "5fb33362-9442-4d09-b2a3-f23831961707", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.3357664233576642, "overlap_size": 46 } }, { "data": { "id": "59d83c3a-c175-459a-8406-4341f5f04a47", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49 } }, { "data": { "id": "accc9f1d-e279-4c56-87f6-338e0490a296", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.44144144144144143, "overlap_size": 49 } }, { "data": { "id": "df765e73-4829-441a-b204-98ec441b48e3", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.6388888888888888, "overlap_size": 46 } }, { "data": { "id": "8ceec030-d563-4f5d-8d42-092933cd806e", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.765625, "overlap_size": 49 } }, { "data": { "id": "64018ed4-f301-40ba-98f6-bdbe11dc812b", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49 } }, { "data": { "id": "d0276844-3c23-4b00-a839-80758b5ec814", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.8596491228070176, "overlap_size": 49 } }, { "data": { "id": "46115342-51d3-4be5-baee-6a75b9307334", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49 } }, { "data": { "id": "d6da1731-01ab-4ccf-a2dd-0384c9cd8307", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.30246913580246915, "overlap_size": 49 } }, { "data": { "id": "99ded816-9ba6-4dde-8ebf-f52f48c5db09", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.627906976744186, "overlap_size": 54 } }, { "data": { "id": "fa941d66-9e34-43af-81fe-d6dc9cf390e5", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49 } }, { "data": { "id": "f10b4630-6290-434e-a093-f29d225331e8", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.2948717948717949, "overlap_size": 46 } }, { "data": { "id": "ec58c871-65da-4cc5-bb4e-b3c694a4f0b0", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49 } }, { "data": { "id": "e3430a78-7bf2-4a4f-bce8-225b573c2679", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49 } }, { "data": { "id": "e4593f7c-8f35-4280-85c8-450c998855cc", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "55d8f002-5a5c-40a4-ae3e-5b093bf4063e", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49 } }, { "data": { "id": "f11ca382-27b8-4f87-bef7-9d6417ddde53", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.7538461538461538, "overlap_size": 49 } }, { "data": { "id": "73d1ead2-a52d-4665-99a6-edb05965415a", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.4946236559139785, "overlap_size": 46 } }, { "data": { "id": "5fc3ceee-a718-440d-a2c9-155baa4cccb4", "source": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49 } }, { "data": { "id": "d4b2ac85-e242-4968-8556-fa1c8f7b5631", "source": "5f454720-e0b8-4c7f-88b3-b288c0e8b59e", "target": "cf3662ba-ff22-4e1e-b61e-12ecb731cce6", "similarity_coefficient": 0.37967914438502676, "overlap_size": 71 } }, { "data": { "id": "fc701607-6a31-4fec-9356-11a6099365f6", "source": "5f454720-e0b8-4c7f-88b3-b288c0e8b59e", "target": "8d189e15-c192-4005-a56b-ee419c6a4796", "similarity_coefficient": 0.468586387434555, "overlap_size": 179 } }, { "data": { "id": "56c84611-2764-4402-9c43-52216c895b32", "source": "5f454720-e0b8-4c7f-88b3-b288c0e8b59e", "target": "f97b81a8-1862-43e0-8494-7bbe4766e167", "similarity_coefficient": 0.5165289256198347, "overlap_size": 125 } }, { "data": { "id": "6851f855-71d3-457f-bf6a-90d823dc7883", "source": "5f454720-e0b8-4c7f-88b3-b288c0e8b59e", "target": "a83c9102-412e-47a3-888d-1d5d38000f18", "similarity_coefficient": 0.39664804469273746, "overlap_size": 71 } }, { "data": { "id": "35f8b94d-33bd-484a-940f-84b2ec95e696", "source": "5f454720-e0b8-4c7f-88b3-b288c0e8b59e", "target": "384f6879-1c32-46c3-8b2b-7c9ded001526", "similarity_coefficient": 0.5079365079365079, "overlap_size": 96 } }, { "data": { "id": "521ae287-22ad-4334-8019-3e320f603552", "source": "5f454720-e0b8-4c7f-88b3-b288c0e8b59e", "target": "bb4d7b94-8c3a-4684-b925-2e7c7e698b63", "similarity_coefficient": 0.47354497354497355, "overlap_size": 179 } }, { "data": { "id": "91f0335a-da90-4dcd-88a3-66d586ca2aaf", "source": "5f454720-e0b8-4c7f-88b3-b288c0e8b59e", "target": "a31fb885-5d37-4b2b-a6e5-41936b5cecc1", "similarity_coefficient": 0.47354497354497355, "overlap_size": 179 } }, { "data": { "id": "f8cc13fc-a63f-44d6-a2c0-330d960d91ac", "source": "6797a9cb-9d73-44ec-8b36-dcd1fa877a9d", "target": "444e69c4-6f1f-4433-9259-2e635ccfc544", "similarity_coefficient": 0.6594827586206896, "overlap_size": 153 } }, { "data": { "id": "f72fae02-f69c-47be-8b68-4d7046a2c156", "source": "d8273106-b591-4851-a7f4-23759825900c", "target": "b15aeda3-04c6-41d3-b5bf-b302b6105dc0", "similarity_coefficient": 0.3117583603020496, "overlap_size": 289 } }, { "data": { "id": "9cf59bc4-a153-494c-a289-53a6e9eedfaf", "source": "d8273106-b591-4851-a7f4-23759825900c", "target": "ca74dbd7-f987-4bb8-81f5-3c8fef7fee7c", "similarity_coefficient": 0.4041958041958042, "overlap_size": 289 } }, { "data": { "id": "6b397d31-0b3a-43ad-9dbf-519f07dfedc0", "source": "d8273106-b591-4851-a7f4-23759825900c", "target": "7db9d43a-1d18-4be6-8d7e-f5e096178a4f", "similarity_coefficient": 0.3117583603020496, "overlap_size": 289 } }, { "data": { "id": "3a9e7f86-7ae0-42cb-aa9a-1c8246cf9e90", "source": "d8273106-b591-4851-a7f4-23759825900c", "target": "d45a77c2-ed42-4c4f-8e17-002f798690b8", "similarity_coefficient": 0.2894736842105263, "overlap_size": 176 } }, { "data": { "id": "7bfadaf2-24ce-486b-98cc-245b223a2243", "source": "d8273106-b591-4851-a7f4-23759825900c", "target": "334a9d67-6aaf-4a3d-b324-1704275051be", "similarity_coefficient": 0.41353383458646614, "overlap_size": 165 } }, { "data": { "id": "7c60d2fd-0c51-4948-bf27-9949ae80d0f1", "source": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "6ffb4ed8-eb06-4940-98e8-f7942147adca", "source": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "4a137a8e-c487-4846-9874-7717f0ea83fb", "source": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.49162011173184356, "overlap_size": 88 } }, { "data": { "id": "5df2c664-cf42-4632-87a9-ef669d465143", "source": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "4dd20ed8-3d7c-4ec3-b1f5-f9bf43d3c8b6", "source": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "f8f41fcb-f177-4ec7-b833-3928f04a52ae", "source": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "c064e847-e60e-4965-b885-b810f15ca044", "source": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.6357142857142857, "overlap_size": 89 } }, { "data": { "id": "0a64d7bc-a61e-4295-a161-8597d3a8b30b", "source": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.9736842105263158, "overlap_size": 111 } }, { "data": { "id": "713ea746-d8ed-4681-aeeb-c32619c07124", "source": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.9026548672566371, "overlap_size": 102 } }, { "data": { "id": "b6f4a586-e341-4cbb-a015-b13d18d79b00", "source": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "target": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "4dbe7c98-a23c-4a09-b36d-a976917b9fca", "source": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "96bd1613-10c8-4e79-9e52-258d61c7e10f", "source": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.5087719298245614, "overlap_size": 58 } }, { "data": { "id": "7f393269-e6bd-4583-8d1f-6ccb0cbb57b3", "source": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "target": "eb1d3bcf-4842-469d-b080-15ffd6d86e52", "similarity_coefficient": 0.3112391930835735, "overlap_size": 108 } }, { "data": { "id": "1b33a553-a12c-475f-94eb-d9904ff5d907", "source": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "37bea931-79f1-47e2-aae9-71429a812ffe", "source": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.7394957983193278, "overlap_size": 88 } }, { "data": { "id": "850105cc-cae0-4f99-a4ac-b7c9ec4aef2e", "source": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.6357142857142857, "overlap_size": 89 } }, { "data": { "id": "249ddb83-bc1c-44cb-948c-3975a30f9d49", "source": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.36929460580912865, "overlap_size": 89 } }, { "data": { "id": "5d06e25e-504c-44a7-87ce-446d13586866", "source": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.2734375, "overlap_size": 35 } }, { "data": { "id": "73ba240b-8ea1-4670-a990-0bf8e8435d75", "source": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "target": "a966733a-44de-48c5-8959-37cec18be5cf", "similarity_coefficient": 0.7652173913043478, "overlap_size": 88 } }, { "data": { "id": "caca09fb-c5d1-4748-a425-f2b5c143452d", "source": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.6197183098591549, "overlap_size": 88 } }, { "data": { "id": "8e73fb3f-8d3a-4ba4-833f-0260817a4bb6", "source": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "target": "611ff36d-7bbc-4322-bcdb-592441240039", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "69760936-9c15-4c37-b480-974e1aa5b23a", "source": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "9fe3a431-343e-4aab-8d49-aaada45a88b8", "source": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.7652173913043478, "overlap_size": 88 } }, { "data": { "id": "9c34669f-17e0-4adb-8ed1-319b8704b349", "source": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.38596491228070173, "overlap_size": 88 } }, { "data": { "id": "9614a080-070c-4b03-97df-3f1d05da0322", "source": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.7611940298507462, "overlap_size": 102 } }, { "data": { "id": "05c3ac43-b29a-4363-8766-4404ff829a0f", "source": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "143e2c40-eb02-4a1e-8f51-1fe7142c6930", "source": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "target": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "similarity_coefficient": 0.4036697247706422, "overlap_size": 88 } }, { "data": { "id": "325a899d-be25-4b71-91c5-38e482b3c86b", "source": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "a11d0fbe-11e0-41cb-a937-ee28d4207421", "source": "8bd23d7c-b674-46fa-a38f-ff3f409bedea", "target": "265dfd3c-47c4-4611-bf2c-db4e6447503d", "similarity_coefficient": 0.654320987654321, "overlap_size": 53 } }, { "data": { "id": "11e76072-09fa-4fda-80c9-f13319b67603", "source": "ce4736b4-7d14-450e-88ff-39a6b1df1c27", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.39311594202898553, "overlap_size": 217 } }, { "data": { "id": "81710b0b-6951-4bd4-b6aa-48b460c6c2af", "source": "8d39f70d-6be5-4dff-a05d-b2c90d4628fb", "target": "862970ce-b60f-4b42-be39-777debe8ff3e", "similarity_coefficient": 0.25862068965517243, "overlap_size": 15 } }, { "data": { "id": "46878c42-eb96-4e92-b984-fba4136e4f98", "source": "8d39f70d-6be5-4dff-a05d-b2c90d4628fb", "target": "1b5495a8-ad7e-41a8-b4ee-2181cd3e7095", "similarity_coefficient": 0.6707317073170732, "overlap_size": 55 } }, { "data": { "id": "0380b0a4-a4c7-407a-9450-f4da11073588", "source": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.38596491228070173, "overlap_size": 88 } }, { "data": { "id": "4671dc7b-5720-42f7-b4eb-72421c25f39f", "source": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "f1085a3c-9a4f-4b38-a8ef-997e5ed98dd2", "source": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "target": "611ff36d-7bbc-4322-bcdb-592441240039", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "535d6fd0-4f97-4b48-b7e7-bbae3bf1c450", "source": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "20e5333a-2951-4536-ac13-52e3a4c5b886", "source": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.624113475177305, "overlap_size": 88 } }, { "data": { "id": "653dca4c-51f1-4b9a-bbf8-28f9f0ff610b", "source": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "0a1254a2-abf6-4289-8a15-37cc12bf8dcc", "source": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.624113475177305, "overlap_size": 88 } }, { "data": { "id": "89e24dff-ded3-418e-9960-d8ff2909b92f", "source": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.25547445255474455, "overlap_size": 35 } }, { "data": { "id": "84574d35-fdaf-46f4-a487-e818902dce45", "source": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.7394957983193278, "overlap_size": 88 } }, { "data": { "id": "b922f852-7d92-4e11-9d43-14afe6f5f54a", "source": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.36363636363636365, "overlap_size": 88 } }, { "data": { "id": "36077e9e-e594-487f-a419-fa5105395e60", "source": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.49162011173184356, "overlap_size": 88 } }, { "data": { "id": "dce2d3d7-3796-480c-a058-e20d95bde6b2", "source": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "d1619c5e-a2a7-45b1-a4a9-c64823f4428d", "source": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.6929133858267716, "overlap_size": 88 } }, { "data": { "id": "fa455ef4-be14-4964-9936-d8abb8e8175a", "source": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.7652173913043478, "overlap_size": 88 } }, { "data": { "id": "4aebe55e-19f5-49ad-86a6-bea39b3e1c43", "source": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "target": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "similarity_coefficient": 0.6376811594202898, "overlap_size": 88 } }, { "data": { "id": "c8c436f4-d926-4b78-adf8-5e89db11639e", "source": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.5225806451612903, "overlap_size": 81 } }, { "data": { "id": "373507fe-6648-4204-a74e-e26357510857", "source": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "43af4c60-ebc4-43a2-8899-c7cbb639e568", "source": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "194fa2f8-24f1-49e2-9f76-1b4d6b948017", "source": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "target": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "similarity_coefficient": 0.4036697247706422, "overlap_size": 88 } }, { "data": { "id": "349a8a18-8534-4f06-9bc7-f956f84fb520", "source": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.6423357664233577, "overlap_size": 88 } }, { "data": { "id": "aec9dd4c-54c0-43b6-989d-c556ea6cb29e", "source": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "7bc8d28c-6a9e-4f3d-95b2-155e8d5076c7", "source": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "target": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "7651185f-bdbe-42af-bd5b-ade9b587bb8d", "source": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "cd7ff1fc-c436-419a-a75d-4b14371e5aa1", "source": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "a0c8fbf4-a0b3-4005-8cce-c3d19e6ec4dd", "source": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.6197183098591549, "overlap_size": 88 } }, { "data": { "id": "555322f3-e2bb-4b71-b476-1e88ca1f99cf", "source": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.2734375, "overlap_size": 35 } }, { "data": { "id": "17715514-bf78-47bd-9e1f-a2c5792463a9", "source": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "9f72676d-7118-45a0-ba24-1d13a85f69e4", "source": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "target": "a966733a-44de-48c5-8959-37cec18be5cf", "similarity_coefficient": 0.7652173913043478, "overlap_size": 88 } }, { "data": { "id": "f213f251-f73e-4e61-aee9-ac241829de22", "source": "cbaabd94-0052-42ac-986a-766c1c57b30d", "target": "db958270-8c68-47a1-8245-d553c49a126f", "similarity_coefficient": 0.2727272727272727, "overlap_size": 93 } }, { "data": { "id": "f93079ca-262a-43ad-a018-9ad857549467", "source": "cbaabd94-0052-42ac-986a-766c1c57b30d", "target": "916b518e-1a95-45db-be11-8e45704c11f1", "similarity_coefficient": 0.6081081081081081, "overlap_size": 90 } }, { "data": { "id": "ce80ef5a-0bbe-4ce6-b032-c2c82ef02ad9", "source": "cbaabd94-0052-42ac-986a-766c1c57b30d", "target": "5229abb8-d817-4b27-8b54-4679f2c8353e", "similarity_coefficient": 0.29261363636363635, "overlap_size": 103 } }, { "data": { "id": "11275d82-5874-4be4-ac51-91751147c820", "source": "cbaabd94-0052-42ac-986a-766c1c57b30d", "target": "b570f307-7c80-461e-9c1b-ff264f6ff8af", "similarity_coefficient": 0.30149253731343284, "overlap_size": 101 } }, { "data": { "id": "5f6fc109-6829-4318-8744-6df9f1efc2e2", "source": "053565f9-6e2e-4c4a-8773-19c2e912501a", "target": "b6922b98-9220-46d4-a7fc-b265074130b3", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "afe2d3e2-3bf2-4ebe-a7de-8cdfeade0583", "source": "053565f9-6e2e-4c4a-8773-19c2e912501a", "target": "3655cbeb-e303-47c6-b442-f4039b25d644", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "1e3b2821-1007-464f-a45f-1576b14bd85b", "source": "053565f9-6e2e-4c4a-8773-19c2e912501a", "target": "9e433294-82cc-456b-bdd9-d76c265b11a9", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "0c1d55c3-411e-44ee-b31f-2d587c6ce587", "source": "053565f9-6e2e-4c4a-8773-19c2e912501a", "target": "3baa2895-d41a-4b91-925b-906637d521ee", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "3c70207d-0bd2-4d51-b901-2cdee9c4a32f", "source": "053565f9-6e2e-4c4a-8773-19c2e912501a", "target": "acb95097-45dd-4bf4-aa47-a787e38591d4", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "2bc9dc55-e8a8-4c7b-85c0-6c7b41e3a0ac", "source": "053565f9-6e2e-4c4a-8773-19c2e912501a", "target": "cddebf8c-4f9a-4ec6-b7c9-83312c9d1c51", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "5a2293d4-b2de-44d3-805c-9965b8392794", "source": "053565f9-6e2e-4c4a-8773-19c2e912501a", "target": "604d62c7-f4cb-4289-a549-64f0bccf5d62", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "f9f9194d-7416-42cb-9b9d-782d3ca39411", "source": "053565f9-6e2e-4c4a-8773-19c2e912501a", "target": "8f2732b7-bdc9-40f5-8845-a8d9beca3b22", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "7fff39a8-ab4b-4df0-bc8f-5fc4aed3693f", "source": "053565f9-6e2e-4c4a-8773-19c2e912501a", "target": "e4351080-e123-4e93-98a7-49cdd09e0c1c", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "b23e4dad-9971-4c52-a9fe-195a4075b2b0", "source": "053565f9-6e2e-4c4a-8773-19c2e912501a", "target": "ba7799c9-3170-4d60-b811-31eae5312965", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "4e6e08aa-e506-4a3c-87b7-55d9b92d38f7", "source": "6dd96c75-2d4e-43dc-ba3b-ae57cb430950", "target": "ba6b9d29-44c7-408e-8058-36cf9631eb64", "similarity_coefficient": 0.2696078431372549, "overlap_size": 55 } }, { "data": { "id": "74b2dd30-a58a-45f6-beb7-3cb0c74aa12c", "source": "6dd96c75-2d4e-43dc-ba3b-ae57cb430950", "target": "22a25b14-6777-4964-b662-01e96cb651f9", "similarity_coefficient": 0.4909090909090909, "overlap_size": 27 } }, { "data": { "id": "434b3d58-9b0f-4f62-a027-d09d690ef04d", "source": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.5132743362831859, "overlap_size": 58 } }, { "data": { "id": "b685e5e1-658d-47cb-bb29-2990abf0fa56", "source": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.4108527131782946, "overlap_size": 53 } }, { "data": { "id": "74b2523e-8571-413e-be8c-d4d64c82c708", "source": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.30701754385964913, "overlap_size": 35 } }, { "data": { "id": "38024928-4eab-491d-80f1-e005cf174a0d", "source": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "66539416-c059-403b-8afd-1e0b7010f686", "source": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "target": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "similarity_coefficient": 0.25547445255474455, "overlap_size": 35 } }, { "data": { "id": "ae6b795a-8896-47e2-83b2-3d9e9d65936b", "source": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "cb3781eb-0ef9-4379-b6cb-f0e8ae7f3131", "source": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.2589928057553957, "overlap_size": 36 } }, { "data": { "id": "0a643eda-1dec-4ea2-ac5d-33ab481e80bb", "source": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "target": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "9f2ee45d-a266-4fe7-88c0-a9748908c1cf", "source": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.4375, "overlap_size": 49 } }, { "data": { "id": "63642eb2-7f8e-4788-84e0-6ce8eafa06c9", "source": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "0d40409f-c18e-48c6-baab-d9921ee9eddb", "source": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.2966101694915254, "overlap_size": 35 } }, { "data": { "id": "9db9f1ad-7b50-4012-8c36-72870e44fe72", "source": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.9666666666666667, "overlap_size": 58 } }, { "data": { "id": "5703a08b-0fb8-4c15-befd-2e1024b79765", "source": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "c59c7122-26de-42f5-b696-cf07cd41587c", "source": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.2589928057553957, "overlap_size": 36 } }, { "data": { "id": "0f552979-9517-4c98-8498-a4f0d67dd978", "source": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "d42679b5-4612-4a49-bdee-bb3ffdcd4b66", "source": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "87b9fe8a-a550-4551-b5af-bf1fa7470fa7", "source": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "target": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "similarity_coefficient": 0.5221238938053098, "overlap_size": 59 } }, { "data": { "id": "45ee5fed-9ed4-4ac9-bfad-8c388d369e10", "source": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "target": "611ff36d-7bbc-4322-bcdb-592441240039", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "30fdb422-2368-45cf-9ebd-b32a54678db1", "source": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "c881bad5-26c7-4dd3-891a-f8c81f3d3484", "source": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "a653f430-0deb-4bb7-ba09-221b7ed79596", "source": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "9b58a82c-223f-45d8-b09b-cd4ec0d61e4d", "source": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "033f854c-3680-4f5f-8731-6a46088ec03f", "source": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.47297297297297297, "overlap_size": 35 } }, { "data": { "id": "89c5b8c9-4ce5-407f-b6ac-6637b51b7104", "source": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "target": "a966733a-44de-48c5-8959-37cec18be5cf", "similarity_coefficient": 0.30701754385964913, "overlap_size": 35 } }, { "data": { "id": "a801df2c-1d42-4df4-9e3a-fc590c35119f", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.532608695652174, "overlap_size": 49 } }, { "data": { "id": "612e2d32-6438-41f3-9bfa-e6ae4329092b", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.6666666666666666, "overlap_size": 46 } }, { "data": { "id": "06557459-cc85-4cbd-89a3-f07019b1825e", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.4126984126984127, "overlap_size": 52 } }, { "data": { "id": "c1832c35-d41c-4ea8-abaf-7d0e40ec67fb", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.48148148148148145, "overlap_size": 52 } }, { "data": { "id": "e08e149e-667a-4d7e-8112-72598d184a23", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49 } }, { "data": { "id": "6677f95d-6fec-4c1f-ad03-d21ae858fa31", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.9047619047619048, "overlap_size": 57 } }, { "data": { "id": "f1b5e731-e658-4ff4-ab21-7ee21365f448", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.8032786885245902, "overlap_size": 49 } }, { "data": { "id": "3f70b902-d1cb-45e2-949f-477570fbbfd6", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49 } }, { "data": { "id": "c52d514d-fab9-4442-9c66-b2638370f58b", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "128ab21c-4656-4a43-9079-58c02cf544bf", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49 } }, { "data": { "id": "d7fe1fa6-d497-4483-8686-fb1ca5ca5dd6", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.45871559633027525, "overlap_size": 50 } }, { "data": { "id": "9dbeec30-f6f7-4d97-8d24-20f9aba29238", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.6582278481012658, "overlap_size": 52 } }, { "data": { "id": "d2f67713-34b7-4865-8503-c241b602717e", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.375, "overlap_size": 24 } }, { "data": { "id": "756a9a24-b435-4273-b127-27b3d9f2955e", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.8064516129032258, "overlap_size": 50 } }, { "data": { "id": "20fba621-ee31-4c60-9eb5-ee601a7583ff", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.4948453608247423, "overlap_size": 48 } }, { "data": { "id": "8b97cb09-5796-4cbb-9118-8ed280626491", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.49074074074074076, "overlap_size": 53 } }, { "data": { "id": "efd829de-b602-438c-b2e8-f0aa70852bad", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.40310077519379844, "overlap_size": 52 } }, { "data": { "id": "1aa8a06c-6317-4eb3-9489-f5b7e6b5d8b1", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.9047619047619048, "overlap_size": 57 } }, { "data": { "id": "ca7f41a6-bd00-43ec-909d-0fd42dfe33a2", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.5842696629213483, "overlap_size": 52 } }, { "data": { "id": "6d89bf66-d7c9-4924-afdc-d6b918f91815", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.5888888888888889, "overlap_size": 53 } }, { "data": { "id": "da922d1d-8298-429c-b9c4-52d54231daa0", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.36507936507936506, "overlap_size": 46 } }, { "data": { "id": "949c2b4a-fa28-472a-b097-89fa91e5453e", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "91a2460a-316b-4d32-8620-98a3a055f4ab", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.5360824742268041, "overlap_size": 52 } }, { "data": { "id": "06552bb0-0b6c-44b4-b75b-b79e7a43ad9d", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.7424242424242424, "overlap_size": 49 } }, { "data": { "id": "a781c428-af68-41e8-af92-5a162d90253b", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.8253968253968254, "overlap_size": 52 } }, { "data": { "id": "1f657fff-5cde-4576-99ef-656f4c271741", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.5897435897435898, "overlap_size": 46 } }, { "data": { "id": "db0817a7-a33e-4778-9117-b37cf1c82a81", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.3, "overlap_size": 48 } }, { "data": { "id": "7ef6e293-46d9-4ef3-aa4e-c845cafeb19b", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.32167832167832167, "overlap_size": 46 } }, { "data": { "id": "f42fb5d2-d46a-4313-9fac-b74bf3aaa7c3", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.765625, "overlap_size": 49 } }, { "data": { "id": "5b4fd76a-612a-4e3f-8f5f-8bdc03861f18", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49 } }, { "data": { "id": "591c9afc-1e71-44be-880c-b28a28210160", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "eb594bbe-e5d7-4739-a4d6-84a67c4400f1", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.7647058823529411, "overlap_size": 52 } }, { "data": { "id": "57d49ce0-5d0b-471d-8ec0-9a932f0c55ea", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49 } }, { "data": { "id": "ac0210e5-7846-4ffc-bed4-f884b1fade53", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49 } }, { "data": { "id": "96bee1a5-f3a4-4776-be7e-625bc799d2eb", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.7, "overlap_size": 49 } }, { "data": { "id": "53fec1e6-018d-4998-b68d-3d861cc56e9a", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.2887700534759358, "overlap_size": 54 } }, { "data": { "id": "1289e8ae-c307-48e2-a5a6-0ed490fdb9f7", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.6923076923076923, "overlap_size": 45 } }, { "data": { "id": "57f06548-f624-4378-9377-9d38e85c6167", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "a84a8614-4cc7-4fb0-bb1d-7e422d2d96eb", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "904648c2-551b-426e-815e-74ced2374458", "similarity_coefficient": 0.287292817679558, "overlap_size": 52 } }, { "data": { "id": "7b9f6244-1595-42a3-9762-477aff5e1724", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "c88d24d9-1b54-4764-b26c-18f2d88eb64e", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.42201834862385323, "overlap_size": 46 } }, { "data": { "id": "596982bb-30c6-4389-bb8e-9e1af6e10d06", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "2e53e037-cb1d-4aab-81ab-5974362e30f7", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.620253164556962, "overlap_size": 49 } }, { "data": { "id": "9db6a8f7-115f-479b-a635-63c53d261c19", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49 } }, { "data": { "id": "9e543c24-608c-4cf0-8e71-13ff0ba95d8b", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49 } }, { "data": { "id": "3edcfac4-2ebd-4fb3-8bce-abd7696e10d3", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.7936507936507936, "overlap_size": 50 } }, { "data": { "id": "0700504d-3c4d-4033-b6d9-a95cd3c579e1", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.4444444444444444, "overlap_size": 60 } }, { "data": { "id": "d170818a-6ca5-4c40-b52e-0fce6cc8ffea", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.48514851485148514, "overlap_size": 49 } }, { "data": { "id": "d67878e8-af10-446c-aac9-ea76f8579fd1", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.30409356725146197, "overlap_size": 52 } }, { "data": { "id": "c949cf85-d7f5-462a-b3a2-34fe1f686f84", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49 } }, { "data": { "id": "26021696-a7ae-471f-8b2b-6b2b7aafd72f", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.6666666666666666, "overlap_size": 48 } }, { "data": { "id": "f5f73dad-1889-4efb-9379-c77466a5dcc6", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.3151515151515151, "overlap_size": 52 } }, { "data": { "id": "a361e7f6-4ce4-4d27-8ee9-d3e0bfe4a01e", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.7761194029850746, "overlap_size": 52 } }, { "data": { "id": "e011d70d-34a0-437d-981b-76309cddb93e", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.5416666666666666, "overlap_size": 52 } }, { "data": { "id": "b076b4d8-0142-4b2e-b9fe-f9f83958daf4", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.5909090909090909, "overlap_size": 52 } }, { "data": { "id": "f3602178-fe2e-4a5c-ae3a-0ee00f1640cf", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.765625, "overlap_size": 49 } }, { "data": { "id": "dc31d044-ab4e-4ec3-af19-5ecf4d2ee801", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.2722222222222222, "overlap_size": 49 } }, { "data": { "id": "3d9e9c6b-55f8-4903-8751-880885eaf189", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "79f425b2-3e4a-412b-bcdd-13130c4a1b75", "source": "e08450b6-07c9-4466-839b-670ce03c6f51", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.6, "overlap_size": 54 } }, { "data": { "id": "3f64e42d-0c3c-4e64-bc24-625d5eaa97ee", "source": "6734f0cb-8f56-42d4-80f0-2bd835f34b78", "target": "1c684d9f-9d8f-4487-8fee-cd986c5d844b", "similarity_coefficient": 0.3604060913705584, "overlap_size": 71 } }, { "data": { "id": "d6aa8f1f-fbd4-4bdc-ade9-7415f99a5942", "source": "6734f0cb-8f56-42d4-80f0-2bd835f34b78", "target": "81865991-8ff0-4777-ba66-cdfa84f0f6a7", "similarity_coefficient": 0.8987341772151899, "overlap_size": 71 } }, { "data": { "id": "da7fe57c-1dde-4b64-9943-d0628424e0c1", "source": "ee0208d5-fbf4-43f6-bb04-c929b2f1a698", "target": "9f699885-90d8-4f8b-b756-bc2a8b80dbfd", "similarity_coefficient": 0.8, "overlap_size": 20 } }, { "data": { "id": "7a23a515-9ee6-4c33-903e-b93ba1e1a67e", "source": "72dff63e-bb99-4d8f-8b2d-f863ae5278f1", "target": "8eb0c7aa-fc44-4379-8cb1-37fee77ce2c4", "similarity_coefficient": 0.9583333333333334, "overlap_size": 92 } }, { "data": { "id": "19065e98-2f6e-44d4-9d69-1400cfcbfdf7", "source": "72dff63e-bb99-4d8f-8b2d-f863ae5278f1", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.5317919075144508, "overlap_size": 92 } }, { "data": { "id": "3ee0b773-ee53-4232-9550-0791e702dd0f", "source": "72dff63e-bb99-4d8f-8b2d-f863ae5278f1", "target": "7ca2e3de-9935-4044-acc8-9703f93d0780", "similarity_coefficient": 0.2553191489361702, "overlap_size": 96 } }, { "data": { "id": "5f9c1402-4129-41f8-b76c-cf2f5a8c8457", "source": "72dff63e-bb99-4d8f-8b2d-f863ae5278f1", "target": "080d7999-edb3-459d-97a1-0b0c699425b5", "similarity_coefficient": 0.3948497854077253, "overlap_size": 92 } }, { "data": { "id": "3918dd03-d82c-428a-885c-378ad8e711cb", "source": "72dff63e-bb99-4d8f-8b2d-f863ae5278f1", "target": "fb172c5a-c242-43e8-98a4-bc060890f253", "similarity_coefficient": 0.3333333333333333, "overlap_size": 92 } }, { "data": { "id": "9a8581c3-18ac-461a-8ad1-a555cbb8faa4", "source": "3bd54d11-75f4-41e6-a76a-9a0c15b0ea2e", "target": "90f6b6c4-3e27-47a9-87a0-25ceb66a9b48", "similarity_coefficient": 0.5227272727272727, "overlap_size": 23 } }, { "data": { "id": "17f22b8d-dc96-4ac7-8fdd-062a7f06f28e", "source": "3bd54d11-75f4-41e6-a76a-9a0c15b0ea2e", "target": "d1c8fb15-883a-49fa-acec-c17ba9928cfa", "similarity_coefficient": 0.30303030303030304, "overlap_size": 20 } }, { "data": { "id": "76d2ab37-2ccc-4cb8-b100-bec5db65fe75", "source": "3bd54d11-75f4-41e6-a76a-9a0c15b0ea2e", "target": "bcc2c85a-8e79-4b12-bc2d-a6f7bc205bd8", "similarity_coefficient": 0.3269230769230769, "overlap_size": 17 } }, { "data": { "id": "7909a519-64e7-49e2-ad57-4e1e9979312c", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.5354330708661418, "overlap_size": 68 } }, { "data": { "id": "91d4e875-cbba-4d95-9f65-2c57911e5c33", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.4, "overlap_size": 50 } }, { "data": { "id": "05499764-44bc-407a-a538-d800d0a26cac", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49 } }, { "data": { "id": "95f4ce4b-9543-4ee9-bca9-5f99be3034ef", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.5245901639344263, "overlap_size": 64 } }, { "data": { "id": "848d1164-cc24-48e0-92d3-b391f92778d4", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49 } }, { "data": { "id": "2e0197fe-8bd9-427e-9fd6-0840187ccfa4", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.4107142857142857, "overlap_size": 69 } }, { "data": { "id": "07902266-d705-469c-b981-7d9aba498d44", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.550561797752809, "overlap_size": 49 } }, { "data": { "id": "7a44dcb4-3f4e-4561-99bb-daa52dbca2aa", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.620253164556962, "overlap_size": 49 } }, { "data": { "id": "6a6bce74-1cae-4fa9-82d5-d0e1112236e9", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "f79f1736-9150-4f4f-b61a-fcbd088d5bf7", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.37398373983739835, "overlap_size": 46 } }, { "data": { "id": "9c95d961-438e-449e-aeae-ec6e55c77786", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49 } }, { "data": { "id": "6a806164-fdff-49b6-9f4c-789dcc7a78e6", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.918918918918919, "overlap_size": 68 } }, { "data": { "id": "aa54988f-8e63-48f0-848f-84eab1a0d446", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49 } }, { "data": { "id": "a0872466-74c8-4cb3-83a2-7f6a503e55cc", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.460431654676259, "overlap_size": 64 } }, { "data": { "id": "9d79306a-d117-44fc-af33-8a0778b1a72a", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49 } }, { "data": { "id": "16fb442c-98f5-4470-a5f7-70911e4e9ddf", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.42201834862385323, "overlap_size": 46 } }, { "data": { "id": "65746f9b-131d-4fd0-99b5-15739c3c97f7", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49 } }, { "data": { "id": "c2bc4281-410b-4723-8fd1-41297f0d7ae1", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49 } }, { "data": { "id": "ee33985d-6580-476d-a8ea-9faa21dc0968", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.392, "overlap_size": 49 } }, { "data": { "id": "d00949b8-2030-4088-ac6b-91d7d1b9a0fa", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49 } }, { "data": { "id": "7e23857b-ef96-42a6-962a-ae7c27a7fa38", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.5542168674698795, "overlap_size": 46 } }, { "data": { "id": "6d180104-6e19-4681-91f8-bc1e5750ec7b", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.4298245614035088, "overlap_size": 49 } }, { "data": { "id": "2f564248-3815-431e-ab65-c57ce376732d", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.25, "overlap_size": 51 } }, { "data": { "id": "e2deab27-9a38-46a8-99d9-cfac3e6d74e0", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49 } }, { "data": { "id": "f48113a8-ce1e-4b67-a953-ebf63c65621d", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "a5b88e91-f08e-4410-bdc7-60f80ca16ff9", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.8648648648648649, "overlap_size": 64 } }, { "data": { "id": "79a54c17-3726-4c83-9636-ec8255e1f2d9", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.6125, "overlap_size": 49 } }, { "data": { "id": "6d83f620-fde0-43bf-b90e-d90a6b64dc7f", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "9f434e55-f69a-423b-8370-02b81c0d6720", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.27586206896551724, "overlap_size": 48 } }, { "data": { "id": "b24e0add-e005-4cc2-a858-ab1342e7f17d", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49 } }, { "data": { "id": "5f726181-8a8a-4e57-86ae-1731adda029e", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.6538461538461539, "overlap_size": 51 } }, { "data": { "id": "ff706c2e-ff22-4b19-a720-67eb2a87711d", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49 } }, { "data": { "id": "f0cdecc9-1966-49e2-842d-01f8d27554d7", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49 } }, { "data": { "id": "8f607015-fb20-487e-8bdf-395591a120fe", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.5679012345679012, "overlap_size": 46 } }, { "data": { "id": "ebae4a5f-145c-4601-a004-4c5ac2dc9b99", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.30625, "overlap_size": 49 } }, { "data": { "id": "df9cb753-c09b-4bce-b02e-0f036e513f59", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49 } }, { "data": { "id": "57a07c08-e9ed-4c12-a658-795f4f3322bf", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.8023255813953488, "overlap_size": 69 } }, { "data": { "id": "df7e9982-6b36-4baf-85bc-e8e47b179ffa", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.5263157894736842, "overlap_size": 50 } }, { "data": { "id": "49297e9e-d8ed-4c53-a68e-2aa0064a25ec", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "080d7999-edb3-459d-97a1-0b0c699425b5", "similarity_coefficient": 0.30042918454935624, "overlap_size": 70 } }, { "data": { "id": "e1b275e8-5088-4fad-b44a-3dbd6bb1b401", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.575, "overlap_size": 46 } }, { "data": { "id": "7ee4add8-e117-4ed2-8448-30d8c1b1b925", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49 } }, { "data": { "id": "c5178c10-497f-40fc-83ec-86bcdf208c65", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49 } }, { "data": { "id": "0c977a6c-4f2d-4ebe-889c-d7a27442f0f8", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49 } }, { "data": { "id": "97a94618-9d6a-4874-b042-cfe18b627b7c", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.5263157894736842, "overlap_size": 50 } }, { "data": { "id": "56ed798a-b222-4a3f-b696-79fc845be445", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "0d352e21-b69b-4c0b-bd84-032613d9571e", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.44144144144144143, "overlap_size": 49 } }, { "data": { "id": "bf3bb454-002e-4a39-bb3f-322af443c0ba", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.3617021276595745, "overlap_size": 51 } }, { "data": { "id": "4ec19093-9e08-4310-859a-ee83dc46785b", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.37404580152671757, "overlap_size": 49 } }, { "data": { "id": "6f5221c5-1244-4fda-abbc-72a08d2ad378", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49 } }, { "data": { "id": "6b440f9f-670b-41f3-9fc5-b4453e8ee6aa", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49 } }, { "data": { "id": "e952e590-033b-45eb-8086-c52b70ae0fb4", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.4049586776859504, "overlap_size": 49 } }, { "data": { "id": "653e1f96-2ea7-4895-9c34-79386977ad27", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.8414634146341463, "overlap_size": 69 } }, { "data": { "id": "2c7f3122-c35f-4519-b037-9123734aa2d1", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.5555555555555556, "overlap_size": 50 } }, { "data": { "id": "c58fdc94-8e72-44d0-abd7-6613a8482303", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.569620253164557, "overlap_size": 45 } }, { "data": { "id": "76ad9089-48fe-4e22-9021-f9b7c73cd724", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.8375, "overlap_size": 67 } }, { "data": { "id": "5df274cd-3628-4cfd-9984-3e6263b92b47", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.5402298850574713, "overlap_size": 47 } }, { "data": { "id": "21a8cfbf-cf6b-433d-8c88-24e9c49b283e", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49 } }, { "data": { "id": "c6ac2e2c-bc57-436d-abd7-898e34731435", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.3246753246753247, "overlap_size": 25 } }, { "data": { "id": "b24ed6c6-25ab-4e53-b4de-ef734819c09b", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.8271604938271605, "overlap_size": 67 } }, { "data": { "id": "3662952f-7864-4f92-b386-cbae2531efb5", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.4171779141104294, "overlap_size": 68 } }, { "data": { "id": "71b35cb8-3c91-45a0-9c23-7e0d6d55fca0", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.4046242774566474, "overlap_size": 70 } }, { "data": { "id": "f87fa945-b49c-4645-8153-88197b10b45b", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.8409090909090909, "overlap_size": 74 } }, { "data": { "id": "ec1138a5-8ef7-4ed8-ac04-b7d3e704baba", "source": "25ba247c-7549-49d7-a57d-c80e59da6733", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "90e906ea-6881-400b-8971-15a1ab25520f", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49 } }, { "data": { "id": "e93cdd08-f633-4c85-a577-e2e4559ae807", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49 } }, { "data": { "id": "7c3c1318-f355-450e-ba6e-263b34f0915d", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.27380952380952384, "overlap_size": 46 } }, { "data": { "id": "37eac1dc-5efb-4e98-8e8b-56ba55b5e949", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.5, "overlap_size": 50 } }, { "data": { "id": "b90e73c7-bf36-44f8-9c43-2756ddd1fe30", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.6527777777777778, "overlap_size": 47 } }, { "data": { "id": "92d5d7b9-651d-4f23-afdf-68b3feb76087", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.5662650602409639, "overlap_size": 47 } }, { "data": { "id": "754b6b5d-2e76-45be-b9d4-5b1d82c6ce2f", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.33112582781456956, "overlap_size": 50 } }, { "data": { "id": "e0063156-13e3-4be3-9a33-df888d533952", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.4807692307692308, "overlap_size": 50 } }, { "data": { "id": "104766fe-4cd6-4791-a051-ab79fdf5703a", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.6619718309859155, "overlap_size": 47 } }, { "data": { "id": "49b47443-774f-476d-8a13-955b79b144b0", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.5747126436781609, "overlap_size": 50 } }, { "data": { "id": "ae0b6dc1-9675-44c4-921a-518f17cd9094", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.5050505050505051, "overlap_size": 50 } }, { "data": { "id": "223e55de-1df8-4be5-b1a0-5ffbda5aca09", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.6338028169014085, "overlap_size": 45 } }, { "data": { "id": "221017c5-7ee1-4786-8c76-f04a3cbd8401", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.575, "overlap_size": 46 } }, { "data": { "id": "bc3e71bc-0b0c-4c06-a73c-ce8e3c1d1d7f", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49 } }, { "data": { "id": "31bd9fa6-ffb9-4e3e-a4a5-9d573531b847", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.4380952380952381, "overlap_size": 46 } }, { "data": { "id": "db8d9c7b-1c36-4111-add7-e70d094e1802", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49 } }, { "data": { "id": "ff1d0a9b-e197-4226-a7ce-26fe47dd77ca", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49 } }, { "data": { "id": "b8785fc9-2d62-4540-b8a2-4be66ad59f42", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.7, "overlap_size": 49 } }, { "data": { "id": "f2354d99-7aea-4aed-941d-5a315af4bb9e", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.4336283185840708, "overlap_size": 49 } }, { "data": { "id": "ec293372-24c1-411b-ad43-d55f2fcbe1af", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.5617977528089888, "overlap_size": 50 } }, { "data": { "id": "83f58775-ac37-4866-98b3-59f4816b982f", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.47, "overlap_size": 47 } }, { "data": { "id": "43567bd6-b3d6-4ff9-ba56-c30ca1c47c98", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "e979384e-fd7a-4d41-97fc-ce8d23db6439", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.31756756756756754, "overlap_size": 47 } }, { "data": { "id": "0c456df1-3c0d-496e-9d76-33a4d5776f2a", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.6133333333333333, "overlap_size": 46 } }, { "data": { "id": "91402d87-8410-4f83-a187-ee8934ba5f14", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.6578947368421053, "overlap_size": 50 } }, { "data": { "id": "80f5f09b-035e-4154-8ca2-494a7c23728b", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49 } }, { "data": { "id": "1fe3f318-2fd2-44b8-81a4-66c7f70d6c64", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "7d9d7057-5fbc-46e2-a8eb-9037c992227b", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.5376344086021505, "overlap_size": 50 } }, { "data": { "id": "2c134ab6-adec-47fb-85ad-37a12ab8647c", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49 } }, { "data": { "id": "ded79e77-5dec-41aa-be54-bd3e031dfefa", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49 } }, { "data": { "id": "67cc7fb3-9878-4011-bf43-e8f2736c5fc5", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49 } }, { "data": { "id": "a1bb6045-2fbd-4ced-be71-be2f4211615b", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "904648c2-551b-426e-815e-74ced2374458", "similarity_coefficient": 0.2578947368421053, "overlap_size": 49 } }, { "data": { "id": "cdef0840-2d8c-42e7-a4fe-0a3af38d2f05", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.4, "overlap_size": 46 } }, { "data": { "id": "c41d569e-a917-4084-991d-924400b0da43", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.4224137931034483, "overlap_size": 49 } }, { "data": { "id": "219202b6-7753-4219-b085-66e2a2d2fba0", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.35877862595419846, "overlap_size": 47 } }, { "data": { "id": "08e4b885-4835-4e3d-a5bd-09fe828aaa55", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.5154639175257731, "overlap_size": 50 } }, { "data": { "id": "af59987a-4571-4764-b45d-9cb4d22d06d6", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.375, "overlap_size": 51 } }, { "data": { "id": "a4cbab77-3a3d-4521-9c23-06e37f71bf69", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.2602040816326531, "overlap_size": 51 } }, { "data": { "id": "904f308c-bb13-4ff9-8bee-3638f5eba7d8", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.42735042735042733, "overlap_size": 50 } }, { "data": { "id": "775e8a9d-8fae-4cf1-809f-91cca835c538", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49 } }, { "data": { "id": "dbd45e2d-2123-431b-9c2f-5f62a58fbd13", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.6578947368421053, "overlap_size": 50 } }, { "data": { "id": "b76a7e3f-7380-4432-8070-d5c2a3d88f0b", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49 } }, { "data": { "id": "42a576a2-ba9b-4a9c-bdd3-7e0a883eb4ad", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.5952380952380952, "overlap_size": 50 } }, { "data": { "id": "a84d21b8-d378-4a1b-b41a-e48c11d11e3b", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.7761194029850746, "overlap_size": 52 } }, { "data": { "id": "9f227f40-4529-4dc7-ab3d-e47c74b6ee8d", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49 } }, { "data": { "id": "05549dbd-067b-42f0-85d2-daf50b4c0295", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49 } }, { "data": { "id": "66580b61-6e8d-48bc-929f-ad605eaa8415", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.6712328767123288, "overlap_size": 49 } }, { "data": { "id": "98b59c85-f970-4f97-92ba-37366a841e21", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.2702702702702703, "overlap_size": 50 } }, { "data": { "id": "a624cf9f-68d4-47e2-9b5a-03fe2e07fdb3", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49 } }, { "data": { "id": "e0554f7b-a5e8-4a6c-b1a4-45dd6c75e4f0", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.6578947368421053, "overlap_size": 50 } }, { "data": { "id": "bba3ac3f-61d0-47f4-aaaa-e691ec57a85d", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.373134328358209, "overlap_size": 50 } }, { "data": { "id": "c7e67d48-5c18-4be3-8b85-d047aefe070f", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "c98ad7a6-808e-44ba-bd52-8d18f308e9a7", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49 } }, { "data": { "id": "6994f095-aba4-4cac-b3bf-b55cd78b0cef", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49 } }, { "data": { "id": "123d9d6e-b443-453c-a4bc-eb69b1b80b70", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.3983739837398374, "overlap_size": 49 } }, { "data": { "id": "9b1e74ea-dd14-447b-a8e7-eaa202673fcc", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49 } }, { "data": { "id": "7ef0ef17-bd8c-4f89-a8fb-249d58cba1f3", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "fbe313b5-8d95-47bb-8913-16a50dd4df50", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.29651162790697677, "overlap_size": 51 } }, { "data": { "id": "e87fce32-14f5-4667-ad65-91db2b01e44d", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.5555555555555556, "overlap_size": 50 } }, { "data": { "id": "dbc035cf-0f1d-4d5c-bead-dcf2d3128f2c", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.34285714285714286, "overlap_size": 24 } }, { "data": { "id": "ad856bca-074d-4766-826e-e3080b72663f", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.5747126436781609, "overlap_size": 50 } }, { "data": { "id": "15775091-58bc-468b-bd39-72da99ddff2d", "source": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.28651685393258425, "overlap_size": 51 } }, { "data": { "id": "32dd2ec3-19dc-4af5-8223-00d46866c13b", "source": "f4735061-16c1-46d1-a53f-b491a4b302ff", "target": "4db57ec5-4334-45bf-b67e-a42520b33bcb", "similarity_coefficient": 0.5764192139737991, "overlap_size": 132 } }, { "data": { "id": "ecc63874-2266-47cb-82c9-d0b5c62033c6", "source": "f4735061-16c1-46d1-a53f-b491a4b302ff", "target": "4e2e95c9-0874-44db-b7e5-fad6bfa0022e", "similarity_coefficient": 0.2987249544626594, "overlap_size": 164 } }, { "data": { "id": "269d4f01-38f5-4d22-ade6-828b075656a0", "source": "f4735061-16c1-46d1-a53f-b491a4b302ff", "target": "aff65c15-2d4e-4423-a37b-e57ce775f018", "similarity_coefficient": 0.5412541254125413, "overlap_size": 164 } }, { "data": { "id": "79e8261e-c4a9-4137-a67a-d60c6b18f788", "source": "51aa4010-3e79-4fea-9a8d-7d096b0002fa", "target": "9b45383f-4e68-4ffa-a477-21d4f8675759", "similarity_coefficient": 0.9, "overlap_size": 36 } }, { "data": { "id": "3c0d200c-4aa3-4d18-94dd-fc9f42fdcf43", "source": "51aa4010-3e79-4fea-9a8d-7d096b0002fa", "target": "a87e7bfc-894c-4e4b-b80f-64bba3e8adc1", "similarity_coefficient": 0.9230769230769231, "overlap_size": 36 } }, { "data": { "id": "8ae2284b-6afe-4764-8436-837025954813", "source": "51aa4010-3e79-4fea-9a8d-7d096b0002fa", "target": "31a9d742-83d3-4990-9495-42d49c780cec", "similarity_coefficient": 0.3793103448275862, "overlap_size": 33 } }, { "data": { "id": "7a02ed0b-7aff-4d46-89a5-b85eb8704ec1", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.26424870466321243, "overlap_size": 51 } }, { "data": { "id": "fdf90563-b5af-4680-92cc-9e2d229db98a", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.32666666666666666, "overlap_size": 49 } }, { "data": { "id": "0cb7c709-921c-475f-a3da-998407fe20e4", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.3018867924528302, "overlap_size": 48 } }, { "data": { "id": "2c546c24-67c9-4943-afc5-8a4f1645d37d", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.3684210526315789, "overlap_size": 49 } }, { "data": { "id": "81d191c2-933c-4869-b02f-d342bd20e07c", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.2784090909090909, "overlap_size": 49 } }, { "data": { "id": "55a04a02-cd64-4640-b576-b81eee77e6e5", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.37404580152671757, "overlap_size": 49 } }, { "data": { "id": "148ae034-e723-4650-bfde-a288a54b0eed", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.3493150684931507, "overlap_size": 51 } }, { "data": { "id": "fa5209a9-1bc7-4059-b3f6-bf4b76d7b8cc", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.3968253968253968, "overlap_size": 50 } }, { "data": { "id": "44c9990c-85d5-468b-a527-439cacd80779", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.33121019108280253, "overlap_size": 52 } }, { "data": { "id": "6486e588-9937-4fe4-9f0a-6e2aab9062ca", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49 } }, { "data": { "id": "a06d9eae-65a2-4698-a77a-43772dd5f231", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.3090909090909091, "overlap_size": 51 } }, { "data": { "id": "a626b17a-2efd-48a3-a55b-0c8c8a920a1f", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.3181818181818182, "overlap_size": 49 } }, { "data": { "id": "5ea00382-59cb-40e2-a271-a0f2ffd054d5", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.3125, "overlap_size": 50 } }, { "data": { "id": "aa81bac6-7311-4188-a2f7-8fd35e7ba892", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.3374233128834356, "overlap_size": 55 } }, { "data": { "id": "6fcc8fdf-1c34-474d-abba-bfe4323d2268", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.3880597014925373, "overlap_size": 52 } }, { "data": { "id": "a6e7ae98-e62e-4655-9afd-13a33d5cb472", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.25, "overlap_size": 59 } }, { "data": { "id": "2064e309-2827-47b1-8a6a-3fbfcc2f2357", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.366412213740458, "overlap_size": 48 } }, { "data": { "id": "51b798d4-bc5b-44a9-a217-7086ef966aea", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.3493150684931507, "overlap_size": 51 } }, { "data": { "id": "9b2bf758-2d43-4803-8b01-fe6ae4d06c69", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.32450331125827814, "overlap_size": 49 } }, { "data": { "id": "d2d177f9-4f69-483e-8f46-95b8811430b7", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.3805970149253731, "overlap_size": 51 } }, { "data": { "id": "60471f6b-713e-43a9-9ae2-ca30983ca692", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.32450331125827814, "overlap_size": 49 } }, { "data": { "id": "1e1b6ecd-2775-453c-9578-9a36018f9e42", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.3128834355828221, "overlap_size": 51 } }, { "data": { "id": "d24f74d1-c9e7-4d56-ae6f-7a261e0d456b", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49 } }, { "data": { "id": "87eb3ea0-4872-4e4e-97aa-563a7c107138", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.3167701863354037, "overlap_size": 51 } }, { "data": { "id": "9b61df60-f310-4b45-a136-6bed7c613910", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.34265734265734266, "overlap_size": 49 } }, { "data": { "id": "ac4ea0eb-9e0f-40f4-8762-8453e431ee86", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.3875968992248062, "overlap_size": 50 } }, { "data": { "id": "ab7d764f-2b7b-4d0e-8af8-aa2843c7ce8c", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.3656716417910448, "overlap_size": 49 } }, { "data": { "id": "b1d11fa2-f48d-496b-b07f-a4f023f13fc5", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.281767955801105, "overlap_size": 51 } }, { "data": { "id": "a967adf8-f070-4ff1-8187-d9bc35087ff6", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.37777777777777777, "overlap_size": 51 } }, { "data": { "id": "e2528dfb-4c5f-4c1a-91f1-cc0f584fc286", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.35507246376811596, "overlap_size": 49 } }, { "data": { "id": "87b3376b-fbd4-4693-9410-8abf077f1ba7", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.37142857142857144, "overlap_size": 52 } }, { "data": { "id": "bf400eb1-6e56-4ad6-a57d-bc8d06122c7c", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.3435114503816794, "overlap_size": 45 } }, { "data": { "id": "b1e0dda9-0984-4f6d-8b3b-dd067faa130a", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.31901840490797545, "overlap_size": 52 } }, { "data": { "id": "385a9bea-73fe-4f0a-8e80-84c165bfde70", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.33766233766233766, "overlap_size": 52 } }, { "data": { "id": "9096b571-1867-4ede-a780-563f10407b00", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.3381294964028777, "overlap_size": 47 } }, { "data": { "id": "92f6b004-c9a6-42de-9b73-f75884fa7098", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49 } }, { "data": { "id": "65836eb3-7291-40a2-b393-71a91d2a5ae2", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.3475177304964539, "overlap_size": 49 } }, { "data": { "id": "0ab930f6-cdd1-4414-9e99-2b50ddfc1248", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.33793103448275863, "overlap_size": 49 } }, { "data": { "id": "7edd9f07-15a3-41ba-83bd-456aab3eaf83", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.2832369942196532, "overlap_size": 49 } }, { "data": { "id": "3e495e71-1e8f-4fd9-8274-51c908c29c01", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "080d7999-edb3-459d-97a1-0b0c699425b5", "similarity_coefficient": 0.254416961130742, "overlap_size": 72 } }, { "data": { "id": "215a2a46-e2f1-48cb-a01e-95bd23993e0d", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.42063492063492064, "overlap_size": 53 } }, { "data": { "id": "9e0fe0ac-d616-4039-a161-cd7c7ae00fad", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.34507042253521125, "overlap_size": 49 } }, { "data": { "id": "f7246646-72fc-4608-84d3-2d451687a94b", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.3923076923076923, "overlap_size": 51 } }, { "data": { "id": "0753b121-9694-42fe-9500-1dcbc8ec5ae0", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.29714285714285715, "overlap_size": 52 } }, { "data": { "id": "f21245c1-81d5-436b-a7d5-6f4ed1dc9883", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.3712121212121212, "overlap_size": 49 } }, { "data": { "id": "00e6533a-c815-417c-82c7-eef3444deb9a", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.26285714285714284, "overlap_size": 46 } }, { "data": { "id": "580564e5-d1b9-4e8f-993f-10a852a38dc9", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.3880597014925373, "overlap_size": 52 } }, { "data": { "id": "120871bf-2c9c-4533-ab9d-8d8668efde58", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.2865853658536585, "overlap_size": 47 } }, { "data": { "id": "150e3147-482d-4b1a-af01-76ea33940663", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.2602040816326531, "overlap_size": 51 } }, { "data": { "id": "24ca55e7-c3ad-4b99-9017-1893719317f1", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49 } }, { "data": { "id": "dfd360f7-c5b0-4642-954c-be9ba459404b", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.3269230769230769, "overlap_size": 51 } }, { "data": { "id": "beedf5ec-b6b6-4af3-ab0b-31a9bba576e5", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.3194444444444444, "overlap_size": 46 } }, { "data": { "id": "3cdc814e-a49e-4b8a-96eb-334ddd764737", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.25263157894736843, "overlap_size": 48 } }, { "data": { "id": "fa26d83a-1a20-4a89-b65b-efce2b60deb7", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.34074074074074073, "overlap_size": 46 } }, { "data": { "id": "00b86fed-7bfe-45b5-9c82-16ab7fddae59", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.3880597014925373, "overlap_size": 52 } }, { "data": { "id": "d1aa1718-c388-48d2-ba8d-7b38312103e1", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.3602941176470588, "overlap_size": 49 } }, { "data": { "id": "05938531-5259-4a34-b224-7db04d08caa3", "source": "1732e9b0-d067-4fb4-9670-5e323da79090", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.2914285714285714, "overlap_size": 51 } }, { "data": { "id": "5483e78a-5479-4e02-93c4-3e3de919a6dd", "source": "18ec1eae-95a2-49dc-9ce4-3dc89a422633", "target": "6460295d-3d84-4fe7-abbe-c5f824a3523c", "similarity_coefficient": 0.7285223367697594, "overlap_size": 424 } }, { "data": { "id": "ae704265-5a0b-491c-b1c7-31a7d4be3f31", "source": "18ec1eae-95a2-49dc-9ce4-3dc89a422633", "target": "6dd711a9-bdb8-4b44-95dc-5ec87cc4e384", "similarity_coefficient": 0.5116796440489433, "overlap_size": 460 } }, { "data": { "id": "d86a7a88-f07b-4347-b9c1-0b66030c4a88", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.5, "overlap_size": 45 } }, { "data": { "id": "c990c534-4a86-4880-a768-17cf3ca401ac", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.3191489361702128, "overlap_size": 45 } }, { "data": { "id": "1d3d3a69-88ee-4637-b965-da914c88b9c6", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.5753424657534246, "overlap_size": 42 } }, { "data": { "id": "a9b516a8-132e-40f0-9147-feac760cf0b5", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.5172413793103449, "overlap_size": 45 } }, { "data": { "id": "e3ada01d-0ca1-4949-ba85-2a4d7b1351f8", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.6774193548387096, "overlap_size": 42 } }, { "data": { "id": "1c10bc0f-5520-45b8-a07b-d70fe251e99c", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.44680851063829785, "overlap_size": 42 } }, { "data": { "id": "d37379ed-18dd-4c37-8659-9078147b62a2", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.7758620689655172, "overlap_size": 45 } }, { "data": { "id": "4264075e-d6e7-47a5-b050-25329d721380", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.5625, "overlap_size": 45 } }, { "data": { "id": "12733169-0aeb-4ad6-b8f8-7381096b0626", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.27607361963190186, "overlap_size": 45 } }, { "data": { "id": "979f2590-f6a9-42bb-8ef8-8d5d8998be80", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.267515923566879, "overlap_size": 42 } }, { "data": { "id": "ca089215-5d7c-477f-be47-a3b8a3e2db83", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.45918367346938777, "overlap_size": 45 } }, { "data": { "id": "50021139-d8ef-4676-b07f-7e7cbe4a3dea", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.7377049180327869, "overlap_size": 45 } }, { "data": { "id": "6aa7dc94-1c22-4b26-b9fc-152c88eb6865", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.4787234042553192, "overlap_size": 45 } }, { "data": { "id": "f0a0905d-0fcc-4c10-a12e-a24053e2ecc1", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.6923076923076923, "overlap_size": 45 } }, { "data": { "id": "d0cfcb88-bb09-4332-905f-9dd7ff82852c", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.6818181818181818, "overlap_size": 45 } }, { "data": { "id": "b6e3938a-93be-4891-aba3-1a9872cc0374", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.4666666666666667, "overlap_size": 42 } }, { "data": { "id": "85c1a0a8-8622-4dca-84ab-a329c59278e5", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.4411764705882353, "overlap_size": 45 } }, { "data": { "id": "5c9adf7f-c818-4326-9595-48b002674e6a", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.7627118644067796, "overlap_size": 45 } }, { "data": { "id": "b907c5b9-ed1e-4a25-894f-b96e456af8d5", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.65625, "overlap_size": 42 } }, { "data": { "id": "43490c6c-50ae-441d-89c5-058ed4000e43", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.7758620689655172, "overlap_size": 45 } }, { "data": { "id": "1ab2b9b8-cb42-46e2-a316-9e76146e63a8", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.569620253164557, "overlap_size": 45 } }, { "data": { "id": "533b7578-347f-4158-a30c-e9af6799a080", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.7258064516129032, "overlap_size": 45 } }, { "data": { "id": "9ed68ed7-0566-4f02-b0a4-3eb197b8eb23", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.5232558139534884, "overlap_size": 45 } }, { "data": { "id": "3d1b5075-756c-4b89-a361-76a49aa19e54", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.625, "overlap_size": 45 } }, { "data": { "id": "b82e173f-d0a4-4df4-ba0b-9a9db32543ac", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.5844155844155844, "overlap_size": 45 } }, { "data": { "id": "8874d45d-118b-433e-91ac-6cf8ac4b6ec0", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.42857142857142855, "overlap_size": 45 } }, { "data": { "id": "1a4fe78a-c30a-47e7-8547-a6124b482d7d", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.6885245901639344, "overlap_size": 42 } }, { "data": { "id": "ac100fb7-cdab-43bf-8ae9-9d72aa03bb5d", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.40384615384615385, "overlap_size": 42 } }, { "data": { "id": "631b4365-7352-4cd0-8dbf-73592055883b", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.75, "overlap_size": 45 } }, { "data": { "id": "14d4b414-84ce-4204-9300-4f2c520efd98", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.6086956521739131, "overlap_size": 42 } }, { "data": { "id": "d94868f0-64d1-4b48-bfc2-2f16f4f84df4", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.8035714285714286, "overlap_size": 45 } }, { "data": { "id": "7f0336ca-caa0-406b-a958-d741262a51bd", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.6428571428571429, "overlap_size": 45 } }, { "data": { "id": "18b84ddf-68ee-4718-b359-8cc3f8c76886", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.7758620689655172, "overlap_size": 45 } }, { "data": { "id": "88147976-864b-4e8d-855c-4cbf13ca455a", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.46875, "overlap_size": 45 } }, { "data": { "id": "52b876bc-fead-43f3-8a7c-4467ccd88f89", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.6081081081081081, "overlap_size": 45 } }, { "data": { "id": "f0aee8dd-06c6-4075-a918-1c6c80305ada", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.5421686746987951, "overlap_size": 45 } }, { "data": { "id": "687ce224-b83d-4581-b683-df008bc774a7", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.6338028169014085, "overlap_size": 45 } }, { "data": { "id": "c688a7a1-f07a-43d9-a563-e50ef1ed5dd7", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.7627118644067796, "overlap_size": 45 } }, { "data": { "id": "a33f53e1-e8a4-4adb-a7d5-0e425f345a7d", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.4339622641509434, "overlap_size": 46 } }, { "data": { "id": "4dec4896-05a7-465e-af2f-7a8239400dd4", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.6818181818181818, "overlap_size": 45 } }, { "data": { "id": "3afebd56-9438-4d93-bd8d-c257dcb89b4d", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.6818181818181818, "overlap_size": 45 } }, { "data": { "id": "f5c537bd-d56a-45f9-8e87-c9ecebdfed08", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.7377049180327869, "overlap_size": 45 } }, { "data": { "id": "4ad0b1db-e7ec-4cb4-9f6a-265848a3c01a", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.2571428571428571, "overlap_size": 45 } }, { "data": { "id": "aefe38b2-545d-4f8b-9ebc-0fd91ffdd9ef", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.3543307086614173, "overlap_size": 45 } }, { "data": { "id": "f92d740f-1305-4f04-92dc-5d2ae6a8e9d3", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.26627218934911245, "overlap_size": 45 } }, { "data": { "id": "0fc3fd00-483a-404a-a9db-40c241044bac", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "904648c2-551b-426e-815e-74ced2374458", "similarity_coefficient": 0.25139664804469275, "overlap_size": 45 } }, { "data": { "id": "218fd1e5-2506-4099-b526-126c1eab154d", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.38596491228070173, "overlap_size": 22 } }, { "data": { "id": "f1162fd6-f648-4a8e-b9a4-9d13403c00d4", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.34710743801652894, "overlap_size": 42 } }, { "data": { "id": "f2d66531-315e-4ad7-b8cf-90b7e03b7844", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.6818181818181818, "overlap_size": 45 } }, { "data": { "id": "90cb0dab-d440-4f4a-9db9-9d4d0ad07f75", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.42452830188679247, "overlap_size": 45 } }, { "data": { "id": "364cd9f4-d7eb-4e0c-a685-ba7acc283177", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "1732e9b0-d067-4fb4-9670-5e323da79090", "similarity_coefficient": 0.3409090909090909, "overlap_size": 45 } }, { "data": { "id": "a92173e1-4f6d-411b-be32-91d79f617261", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.6923076923076923, "overlap_size": 45 } }, { "data": { "id": "2ff0fa29-9425-4e4b-a532-4db24f7e8aa9", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.7142857142857143, "overlap_size": 45 } }, { "data": { "id": "0f940fd6-c8d7-43cb-ace6-4d6808f17923", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.4891304347826087, "overlap_size": 45 } }, { "data": { "id": "ddbf0c0a-2a3e-4f5c-a8ac-b535a7544421", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.3629032258064516, "overlap_size": 45 } }, { "data": { "id": "6b7eebe4-c1ad-405c-b306-22d024cedee8", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.30434782608695654, "overlap_size": 42 } }, { "data": { "id": "5001c419-8363-4835-aed6-97f75066d585", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.5625, "overlap_size": 45 } }, { "data": { "id": "9f19f202-5fa7-4cf7-bf2d-8ad769f0c0d7", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.625, "overlap_size": 45 } }, { "data": { "id": "edd8718b-48f5-49bd-b658-c9ef495dc90e", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.4017857142857143, "overlap_size": 45 } }, { "data": { "id": "824c3901-3246-4618-ba39-a7c452f1f9ed", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.47368421052631576, "overlap_size": 45 } }, { "data": { "id": "eb5843dc-de24-4d45-8cf5-23a94beb5242", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.5844155844155844, "overlap_size": 45 } }, { "data": { "id": "ce62cb95-59ec-493f-aac0-bda0f4e92eca", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.8035714285714286, "overlap_size": 45 } }, { "data": { "id": "38e4d513-769d-4c4c-afdb-921579cd66ee", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.6716417910447762, "overlap_size": 45 } }, { "data": { "id": "3ded9e4a-1524-4424-ad57-ebcc0a105519", "source": "72fd7976-1a23-4642-833b-600f2c123e40", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.5056179775280899, "overlap_size": 45 } }, { "data": { "id": "7b2cd45b-eb90-417b-9927-abf9d7cc27b1", "source": "4b257541-41ee-48df-a6fd-50b21f4852e6", "target": "20c36645-7869-4156-aac4-b32621474a13", "similarity_coefficient": 0.4827586206896552, "overlap_size": 28 } }, { "data": { "id": "c9febcac-2c10-4ff1-8a54-bfb86324d6de", "source": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31 } }, { "data": { "id": "11871f51-3ec0-4507-8575-10e4e1b0b4ab", "source": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31 } }, { "data": { "id": "ef5108e2-9f8c-4c69-a336-587c88a43d48", "source": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.4336283185840708, "overlap_size": 49 } }, { "data": { "id": "b0b31eea-362d-4f54-bf1c-54c5ff00ab9d", "source": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31 } }, { "data": { "id": "a074c466-ce57-4c76-86e8-7b41c6570792", "source": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31 } }, { "data": { "id": "303a4f6c-c4d8-417e-b3ac-4127215d9a86", "source": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.3969465648854962, "overlap_size": 52 } }, { "data": { "id": "5abae33e-4943-4638-bd88-108d5bd29951", "source": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "target": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "similarity_coefficient": 0.9508196721311475, "overlap_size": 58 } }, { "data": { "id": "5d306f68-4690-4755-80e6-afdc927ae3dc", "source": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31 } }, { "data": { "id": "9eec8250-beab-4a5e-ab36-b274c248e0a1", "source": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "target": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "similarity_coefficient": 0.5043478260869565, "overlap_size": 58 } }, { "data": { "id": "f4346137-09cd-462e-9ac3-47cfd7a2ac58", "source": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.30434782608695654, "overlap_size": 35 } }, { "data": { "id": "5a0319d3-7f57-4fa6-a015-3e97ecb71b18", "source": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "target": "611ff36d-7bbc-4322-bcdb-592441240039", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31 } }, { "data": { "id": "cb195a4e-b419-4fac-a029-eb2feaca7e94", "source": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31 } }, { "data": { "id": "046a9e55-cf2f-4a3f-b31f-19d181942ab2", "source": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "target": "a966733a-44de-48c5-8959-37cec18be5cf", "similarity_coefficient": 0.30434782608695654, "overlap_size": 35 } }, { "data": { "id": "53eaa317-0a33-4690-881b-6463c0893e05", "source": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.4666666666666667, "overlap_size": 35 } }, { "data": { "id": "9905187e-2309-485f-a1e1-8dc70b82f96d", "source": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31 } }, { "data": { "id": "981e2873-5472-442d-bce3-37cc2994d3ef", "source": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.9833333333333333, "overlap_size": 59 } }, { "data": { "id": "d7394028-147e-4e0b-841b-94b939033159", "source": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.29411764705882354, "overlap_size": 35 } }, { "data": { "id": "2adced8a-38cf-423b-b229-99bc7bf9c50c", "source": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.26618705035971224, "overlap_size": 37 } }, { "data": { "id": "591f0c01-0710-41d3-a007-914d978387c9", "source": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "target": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "similarity_coefficient": 0.2536231884057971, "overlap_size": 35 } }, { "data": { "id": "ca129341-b1ca-4f1f-8827-8e87f6e3bba9", "source": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.26618705035971224, "overlap_size": 37 } }, { "data": { "id": "2cda2483-0885-4d8c-a5b7-478d26b268ed", "source": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31 } }, { "data": { "id": "3a35e5cd-8c99-41dc-9025-8a6a4027416b", "source": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "target": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31 } }, { "data": { "id": "49f2b1f1-e5fa-465d-8eb8-8768041503c4", "source": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31 } }, { "data": { "id": "bcc281c6-84c0-4985-9f7f-5df27830a238", "source": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.5221238938053098, "overlap_size": 59 } }, { "data": { "id": "1941dce7-c45e-4ff6-b4a0-e03ff27f0243", "source": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31 } }, { "data": { "id": "1cab3514-b9e6-4778-9d8f-f500ca36ba21", "source": "c7530ee1-195e-4a51-bf3e-3bed2d809cb1", "target": "97965a8b-8abb-435c-b3aa-b378aa701d0c", "similarity_coefficient": 0.9473684210526315, "overlap_size": 144 } }, { "data": { "id": "f613ec67-5ad6-4f6c-9a80-b70afc23bb40", "source": "673e2316-b031-4c2c-a509-8614a17758ee", "target": "1e6d44b7-22af-4716-a80a-9933903cf430", "similarity_coefficient": 0.9607843137254902, "overlap_size": 49 } }, { "data": { "id": "448820b3-1e68-45cd-aa61-0532a754be64", "source": "a3367273-5acd-4eaa-a023-f4b63d39ff67", "target": "30eaa919-7be0-486b-9bd3-32ffbfc93216", "similarity_coefficient": 0.25, "overlap_size": 46 } }, { "data": { "id": "0ac17e57-1423-4c5f-b4f4-f9591a36e934", "source": "a3367273-5acd-4eaa-a023-f4b63d39ff67", "target": "158daadb-15d5-44c8-9670-d08fe9ebb4c3", "similarity_coefficient": 0.42424242424242425, "overlap_size": 126 } }, { "data": { "id": "4b5025f9-f63e-452e-b68d-eed52653cadf", "source": "a3367273-5acd-4eaa-a023-f4b63d39ff67", "target": "8dd921b1-19f9-43d1-8809-18810bb72059", "similarity_coefficient": 0.6171428571428571, "overlap_size": 108 } }, { "data": { "id": "3e34b40f-0c14-443b-b105-211c59669699", "source": "a3367273-5acd-4eaa-a023-f4b63d39ff67", "target": "f1e91a76-6b23-4bee-adcf-402d41b3bc76", "similarity_coefficient": 0.8986486486486487, "overlap_size": 133 } }, { "data": { "id": "42ecffc7-d645-48ba-837d-292333ebbd4c", "source": "a3367273-5acd-4eaa-a023-f4b63d39ff67", "target": "3281366b-d686-411d-9f64-ce068dbc793e", "similarity_coefficient": 0.3310810810810811, "overlap_size": 49 } }, { "data": { "id": "5b664bc9-cc89-47a1-aad2-ac065dd63c0d", "source": "a3367273-5acd-4eaa-a023-f4b63d39ff67", "target": "a0c0e8e0-96ed-4337-bfcc-f28c17708a1a", "similarity_coefficient": 0.5116279069767442, "overlap_size": 110 } }, { "data": { "id": "7b8f2376-76df-44ab-bcb8-79ee6db8eb44", "source": "a3367273-5acd-4eaa-a023-f4b63d39ff67", "target": "37b7a69c-a26b-4d83-8f43-9b42b9c6168e", "similarity_coefficient": 0.3901098901098901, "overlap_size": 71 } }, { "data": { "id": "e9c558ff-16fb-435a-a842-df44ddf1f02f", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.5517241379310345, "overlap_size": 48 } }, { "data": { "id": "d0d06ba8-868a-4c6c-abec-4bd17078ea5b", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.4491525423728814, "overlap_size": 53 } }, { "data": { "id": "8d23aa85-b98d-4395-b953-056ff4cd6e63", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49 } }, { "data": { "id": "d52a96a0-ba74-4af4-8ee5-257b7a706fda", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.5098039215686274, "overlap_size": 52 } }, { "data": { "id": "a78e75aa-3a53-4652-a2b6-5fe8544072f4", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.5333333333333333, "overlap_size": 48 } }, { "data": { "id": "651e3a74-3c34-40cc-960a-33c56be027f7", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.35658914728682173, "overlap_size": 46 } }, { "data": { "id": "25476b08-18e4-4049-80c6-68379c5a7d82", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49 } }, { "data": { "id": "3644dab9-56f8-41ee-9943-8181db2a2078", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.5608108108108109, "overlap_size": 83 } }, { "data": { "id": "4c596664-7c15-4ff9-a6e1-4f0e4ac1f4cd", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.38016528925619836, "overlap_size": 46 } }, { "data": { "id": "0ff47991-25ed-466e-bc8e-88bd23b7d71b", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.3684210526315789, "overlap_size": 49 } }, { "data": { "id": "6210068a-7781-46b8-a8e7-5e339bdb0ee5", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.2823529411764706, "overlap_size": 48 } }, { "data": { "id": "19c7a359-409d-4bee-a134-1c2a31317c15", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.9764705882352941, "overlap_size": 83 } }, { "data": { "id": "80eaf529-040e-4c56-be0f-806c5fa88389", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.42857142857142855, "overlap_size": 48 } }, { "data": { "id": "1d17296c-506f-463f-8f2b-690b67dc3693", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.4946236559139785, "overlap_size": 46 } }, { "data": { "id": "eb9cc4b3-c80b-42bc-a23f-91add17d41b4", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.4067796610169492, "overlap_size": 48 } }, { "data": { "id": "3ced13e6-7576-417c-a872-94d7054ae3ff", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.4444444444444444, "overlap_size": 48 } }, { "data": { "id": "148ed767-1b15-446e-9287-267c10887afe", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.5287356321839081, "overlap_size": 46 } }, { "data": { "id": "fc37b054-1138-42d0-8b27-d683c87bc980", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.5054945054945055, "overlap_size": 46 } }, { "data": { "id": "e11e913d-7871-4c35-bd07-1e2428eb4bce", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.5168539325842697, "overlap_size": 46 } }, { "data": { "id": "e8bde674-0122-4a9c-8d95-dbdf0acb47dd", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.3069306930693069, "overlap_size": 62 } }, { "data": { "id": "dfc3ad95-df97-4cd4-923a-c93d054404ed", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.376, "overlap_size": 47 } }, { "data": { "id": "8c3d273e-0b07-45cc-bc6f-97238e200c82", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.45098039215686275, "overlap_size": 46 } }, { "data": { "id": "e9786262-0eba-4015-b910-b7ea8cce7e50", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.28484848484848485, "overlap_size": 47 } }, { "data": { "id": "469c75db-215b-4074-b78c-3fea95f8835c", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.5520833333333334, "overlap_size": 53 } }, { "data": { "id": "26d26084-ccc9-4875-b956-e9f646950ca7", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.4791666666666667, "overlap_size": 46 } }, { "data": { "id": "52a48461-a5f4-4017-9790-fae04e29d058", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49 } }, { "data": { "id": "b5b68594-86aa-4f7f-ae73-c4d323cd7e3a", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.5, "overlap_size": 46 } }, { "data": { "id": "996f28bc-b805-4f35-8c82-795794829759", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.45544554455445546, "overlap_size": 46 } }, { "data": { "id": "10528c27-d174-48b2-8214-cf8c3473dc29", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.5111111111111111, "overlap_size": 46 } }, { "data": { "id": "80d453a2-62c6-4250-824b-8c2fd484b6c6", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "1732e9b0-d067-4fb4-9670-5e323da79090", "similarity_coefficient": 0.29012345679012347, "overlap_size": 47 } }, { "data": { "id": "39ee79dc-2b5c-4c5f-89ec-399fc2af8b12", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.36, "overlap_size": 54 } }, { "data": { "id": "04234412-a532-4874-810a-22d1a3067f4e", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.35555555555555557, "overlap_size": 48 } }, { "data": { "id": "ea5e1d3a-1059-4c94-a8da-388fdf38b871", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.5052631578947369, "overlap_size": 48 } }, { "data": { "id": "b06080ad-c30b-48f9-aa7e-2c5d9f8ddbea", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.45132743362831856, "overlap_size": 51 } }, { "data": { "id": "94812236-c433-426d-bfe3-ccf3149b7f45", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.3087248322147651, "overlap_size": 46 } }, { "data": { "id": "e52ba84d-ba1e-46b3-9056-aa920ce578d0", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.45544554455445546, "overlap_size": 46 } }, { "data": { "id": "422d3b17-6860-463d-bd8e-843946da7b9d", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49 } }, { "data": { "id": "52d6d060-8038-4058-aae9-c9f9184330a9", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.4380952380952381, "overlap_size": 46 } }, { "data": { "id": "3a23e543-7bd4-4021-8144-2cc6ed0e6cb5", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.5111111111111111, "overlap_size": 46 } }, { "data": { "id": "631391d0-f887-4e21-a6db-65b946545fc7", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.5, "overlap_size": 46 } }, { "data": { "id": "5299742b-527b-45f3-bd62-3cbc25a4a3e3", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.40458015267175573, "overlap_size": 53 } }, { "data": { "id": "9e7e2a88-e484-4eaa-9def-c4ae253d2e87", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.3458646616541353, "overlap_size": 46 } }, { "data": { "id": "ca70555d-963e-4efa-aef8-52dd7d25c1f3", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.5052631578947369, "overlap_size": 48 } }, { "data": { "id": "87852c4f-61b2-4d70-b8af-9f5a84e2e8e5", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "72fd7976-1a23-4642-833b-600f2c123e40", "similarity_coefficient": 0.45652173913043476, "overlap_size": 42 } }, { "data": { "id": "f6723317-c9e9-4e8e-95f6-9522768c9c14", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.48936170212765956, "overlap_size": 46 } }, { "data": { "id": "8762b497-276b-45c7-bd76-c392e60c429b", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.44660194174757284, "overlap_size": 46 } }, { "data": { "id": "5d9a5264-48f5-4594-b88d-ee19b29ebb99", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.36220472440944884, "overlap_size": 46 } }, { "data": { "id": "3a82f535-8bbe-44a7-a70c-48d6129973bc", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.5052631578947369, "overlap_size": 48 } }, { "data": { "id": "2fca1170-aa02-45d4-a6ff-eab5a3c464cc", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.5340909090909091, "overlap_size": 47 } }, { "data": { "id": "9ffc8c12-778c-4b46-b020-8f2bf5503ed6", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.5340909090909091, "overlap_size": 47 } }, { "data": { "id": "3d642550-db75-49d4-800f-ebeb2345d572", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.7228915662650602, "overlap_size": 60 } }, { "data": { "id": "13cecc91-9819-4418-a99f-227a7fe1f519", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.46153846153846156, "overlap_size": 42 } }, { "data": { "id": "f23f5297-6174-4d19-973c-2d63029e2e92", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.2903225806451613, "overlap_size": 54 } }, { "data": { "id": "bccd3c9b-9ab2-45c3-a388-1caff79b3219", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.27586206896551724, "overlap_size": 24 } }, { "data": { "id": "15c97acb-4741-4f2b-a10e-f1a1913cec2e", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.5106382978723404, "overlap_size": 48 } }, { "data": { "id": "d3fd8cf8-cbee-4f87-b8f0-1195f403d076", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.38620689655172413, "overlap_size": 56 } }, { "data": { "id": "0133f794-c615-4b48-8f6e-b39e1e99da94", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.41739130434782606, "overlap_size": 48 } }, { "data": { "id": "435fbdca-c959-4fe6-bab1-5df3741777be", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.32167832167832167, "overlap_size": 46 } }, { "data": { "id": "479d9937-44d5-430e-a0e2-b502d7c8a0d9", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.46938775510204084, "overlap_size": 46 } }, { "data": { "id": "e00314f6-7a90-4097-92f0-138ca9281c6a", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.50920245398773, "overlap_size": 83 } }, { "data": { "id": "3513595c-6d86-42c1-a00b-bff9df3ea4ae", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.38524590163934425, "overlap_size": 47 } }, { "data": { "id": "16a82c7b-17a8-402f-b7d8-83f12c74f2ab", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.44036697247706424, "overlap_size": 48 } }, { "data": { "id": "935eeca7-348b-46be-98b9-667b0ee1ae9e", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.44036697247706424, "overlap_size": 48 } }, { "data": { "id": "59a56f77-b768-4d6d-8ca2-ea72e50b94fc", "source": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.5052631578947369, "overlap_size": 48 } }, { "data": { "id": "09530be5-7847-4411-a28c-512cdd4d2642", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.891566265060241, "overlap_size": 74 } }, { "data": { "id": "6b685044-87c8-4548-aef2-c7fcf336cb9e", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.5454545454545454, "overlap_size": 48 } }, { "data": { "id": "e62c4e1c-89a6-414a-b4a8-8e11d941032b", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.43478260869565216, "overlap_size": 50 } }, { "data": { "id": "0809674f-f194-453d-94dc-c1ec463966b8", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.620253164556962, "overlap_size": 49 } }, { "data": { "id": "661429f7-33c9-4c0c-baba-04f7162a1e30", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.5555555555555556, "overlap_size": 45 } }, { "data": { "id": "86de1b81-ba53-490b-a6ae-2aa5c7751c53", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49 } }, { "data": { "id": "779f1792-eb25-45f7-b4f2-f2fd80f8ff3a", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.30246913580246915, "overlap_size": 49 } }, { "data": { "id": "9527337d-edc3-4e86-b491-e30e45903158", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.532608695652174, "overlap_size": 49 } }, { "data": { "id": "5ffa6683-cc9a-4214-97dc-7ec9d1c7dcdc", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "080d7999-edb3-459d-97a1-0b0c699425b5", "similarity_coefficient": 0.3146551724137931, "overlap_size": 73 } }, { "data": { "id": "b8a0c43d-e976-4147-a039-55e3bf9498ef", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.4121212121212121, "overlap_size": 68 } }, { "data": { "id": "6cb72d88-3ff4-4a91-b26b-b26b749556e4", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.620253164556962, "overlap_size": 49 } }, { "data": { "id": "25cbba15-a310-401c-9433-61021276eca2", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.4336283185840708, "overlap_size": 49 } }, { "data": { "id": "9cff3101-efb3-42ad-8f2a-2c9b702d4fea", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.4117647058823529, "overlap_size": 49 } }, { "data": { "id": "81a95f7d-e7ad-41dc-989d-9e0321e94218", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.6172839506172839, "overlap_size": 50 } }, { "data": { "id": "8992435d-fcbd-4168-a678-75addf6aa4f9", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.44144144144144143, "overlap_size": 49 } }, { "data": { "id": "46050554-adf4-40dd-8a20-5b4a8107a415", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.44366197183098594, "overlap_size": 63 } }, { "data": { "id": "36f0a499-4e6e-4a93-bb7a-8011c70e1046", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.28735632183908044, "overlap_size": 50 } }, { "data": { "id": "b66f898f-5889-45dc-8413-54ba5f0e65f0", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "fb172c5a-c242-43e8-98a4-bc060890f253", "similarity_coefficient": 0.27007299270072993, "overlap_size": 74 } }, { "data": { "id": "4c2717b2-d7fb-40ef-ad32-553e37fbaeda", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.4247787610619469, "overlap_size": 48 } }, { "data": { "id": "d4a5420a-142f-41c3-8993-36df6ce08dc3", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49 } }, { "data": { "id": "4b90aa0e-fa2e-4af0-891c-3f3eb731900d", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.5434782608695652, "overlap_size": 50 } }, { "data": { "id": "151b4e57-8697-442c-89fa-3a257e49c6e1", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.8181818181818182, "overlap_size": 63 } }, { "data": { "id": "c662db7d-0070-40a1-9482-1859c801debf", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49 } }, { "data": { "id": "a16574f6-3f80-4dcb-99d4-e810a694059a", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.5542168674698795, "overlap_size": 46 } }, { "data": { "id": "e0c07afb-056a-4807-925e-77a1bd1a169d", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.5604395604395604, "overlap_size": 51 } }, { "data": { "id": "025bef92-6605-4c3b-be01-27a242b3ed0f", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.8947368421052632, "overlap_size": 68 } }, { "data": { "id": "4360642f-9808-4c36-8f69-b6daa05ac9db", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.5, "overlap_size": 49 } }, { "data": { "id": "5df17c1d-b4e2-409d-8cb9-44fab3a50332", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.504, "overlap_size": 63 } }, { "data": { "id": "80acf8dc-f2c7-4daf-b184-f044a97b3b45", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.5609756097560976, "overlap_size": 46 } }, { "data": { "id": "2985ad93-bbc1-4e80-84a0-f1e260a93bec", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "72fd7976-1a23-4642-833b-600f2c123e40", "similarity_coefficient": 0.5487804878048781, "overlap_size": 45 } }, { "data": { "id": "1ab00d95-cd2a-42f6-af33-2eb4afbfd7d8", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49 } }, { "data": { "id": "5d86f983-322c-428e-8c1d-692c42948d4b", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.4144144144144144, "overlap_size": 46 } }, { "data": { "id": "33cb1bbb-178e-4130-a8b3-26c24496464d", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49 } }, { "data": { "id": "9f1b1007-3ca6-4de1-9096-78803bc379b3", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.6125, "overlap_size": 49 } }, { "data": { "id": "c48222aa-c4ac-4bb5-a262-320b0d4004fd", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.620253164556962, "overlap_size": 49 } }, { "data": { "id": "9ca29284-7e11-4164-bf17-75385fa1c8c3", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.3983739837398374, "overlap_size": 49 } }, { "data": { "id": "5336b6bc-108a-4943-b70e-e24c02c9a272", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.5411764705882353, "overlap_size": 46 } }, { "data": { "id": "99391121-3192-497f-b5ec-18f339041e16", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.987012987012987, "overlap_size": 76 } }, { "data": { "id": "01faaa03-ecad-4d0f-90b6-207f5fe591a6", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.5271317829457365, "overlap_size": 68 } }, { "data": { "id": "9cefb3c8-4ca8-49c2-8125-cfff9e43e9f7", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.6125, "overlap_size": 49 } }, { "data": { "id": "9e0ca59f-5bce-4357-9d39-a34bd5f44923", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.2660098522167488, "overlap_size": 54 } }, { "data": { "id": "7eb96a4d-a298-4631-b239-b1638666ec71", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.3888888888888889, "overlap_size": 49 } }, { "data": { "id": "892c25d1-a50b-4373-a8b9-321fa224123b", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.368, "overlap_size": 46 } }, { "data": { "id": "a1579991-f337-4263-9e6e-bc5df3f5ff50", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "1762e4c8-37de-4146-b02b-dcba7fe16782", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49 } }, { "data": { "id": "4b226778-7e5d-4675-a148-2bd2c8262b03", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.31645569620253167, "overlap_size": 25 } }, { "data": { "id": "b6540cf8-2951-4510-b1b4-5e93bc684209", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.39766081871345027, "overlap_size": 68 } }, { "data": { "id": "b90b048b-2bf8-470b-b421-752273d195fe", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49 } }, { "data": { "id": "9b4077eb-c677-453c-85ca-6fc73fd4124c", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49 } }, { "data": { "id": "890c79a5-b891-4de9-8b35-037e79909eda", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "1732e9b0-d067-4fb4-9670-5e323da79090", "similarity_coefficient": 0.3202614379084967, "overlap_size": 49 } }, { "data": { "id": "060df2a6-7478-435f-8626-c01898eca2ca", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49 } }, { "data": { "id": "a510cc24-6818-4aab-884f-b22f0d1d02ae", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49 } }, { "data": { "id": "0915af0d-3612-40e3-9c04-7bdf5bbdbf69", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49 } }, { "data": { "id": "51afe98b-2c56-475b-b9fa-a77a49c413f7", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.9605263157894737, "overlap_size": 73 } }, { "data": { "id": "49e524b1-5262-4fc6-94f3-12e5a8af8304", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.3858267716535433, "overlap_size": 49 } }, { "data": { "id": "7f611068-1c94-4e4f-ad79-f196b2943e02", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "similarity_coefficient": 0.43243243243243246, "overlap_size": 48 } }, { "data": { "id": "f1e75f08-aedc-491e-98dc-c0d12171c6ac", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49 } }, { "data": { "id": "266bf8dd-2c8f-49ee-9066-0b89e087acec", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.40804597701149425, "overlap_size": 71 } }, { "data": { "id": "e6759cea-c3b7-4239-ab71-4813d4bb2d66", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.3828125, "overlap_size": 49 } }, { "data": { "id": "2cec2542-30cf-4830-842d-348ea1979d70", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.9736842105263158, "overlap_size": 74 } }, { "data": { "id": "fe10c547-f23c-48c7-9248-9a3b6a85118b", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.53125, "overlap_size": 51 } }, { "data": { "id": "3bddb1df-d391-4942-9d60-8f5353011e6a", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49 } }, { "data": { "id": "bce86217-95ca-4e75-9529-a07fbe752d91", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.8636363636363636, "overlap_size": 76 } }, { "data": { "id": "c5f51478-9b16-4477-acdc-6c448edee7b7", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "2d6915d7-1c77-400d-9e4a-7f8189f4d0c6", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.8292682926829268, "overlap_size": 68 } }, { "data": { "id": "84210d70-a8e4-4aed-8b3c-0550ea2cf923", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.3684210526315789, "overlap_size": 49 } }, { "data": { "id": "8b1f2392-9443-4e96-b446-42b428392bca", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49 } }, { "data": { "id": "4062d0c0-46cd-4618-93af-45c498566b69", "source": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.35664335664335667, "overlap_size": 51 } }, { "data": { "id": "7c12efac-3f86-4963-a411-7116d7afc1ec", "source": "1096a44e-4dbc-42d3-a424-671eb9231708", "target": "6488e429-b436-405e-886a-11af3c96908d", "similarity_coefficient": 0.9797297297297297, "overlap_size": 145 } }, { "data": { "id": "c1b55096-4f41-490c-a0b3-2f3c5fe1772b", "source": "1096a44e-4dbc-42d3-a424-671eb9231708", "target": "ca923fa4-7bdb-4533-98e9-ecad5b063ba3", "similarity_coefficient": 0.5472972972972973, "overlap_size": 81 } }, { "data": { "id": "b8e883f2-6714-46f4-b625-ad3f91707403", "source": "36c62e65-4dec-4c29-9fa7-909db0c24423", "target": "9ee865fe-76a5-4d86-a7e1-0ab08de7033d", "similarity_coefficient": 0.5393258426966292, "overlap_size": 48 } }, { "data": { "id": "b65b0cc2-87ac-4839-a5ed-eae403181875", "source": "44338cf6-b799-4097-a74f-e7386e686f63", "target": "31a9d742-83d3-4990-9495-42d49c780cec", "similarity_coefficient": 0.35051546391752575, "overlap_size": 34 } }, { "data": { "id": "4fb2577d-0d2e-41f4-8d02-cb86bcef4f7f", "source": "44338cf6-b799-4097-a74f-e7386e686f63", "target": "a87e7bfc-894c-4e4b-b80f-64bba3e8adc1", "similarity_coefficient": 0.8297872340425532, "overlap_size": 39 } }, { "data": { "id": "8b5839f5-c341-4eab-8ff7-444bdd1ab69b", "source": "44338cf6-b799-4097-a74f-e7386e686f63", "target": "9b45383f-4e68-4ffa-a477-21d4f8675759", "similarity_coefficient": 0.8125, "overlap_size": 39 } }, { "data": { "id": "be43380c-11bb-4e7e-bd7a-8af4c11753a2", "source": "44338cf6-b799-4097-a74f-e7386e686f63", "target": "405225ec-878f-41f4-9b4f-158f553cd119", "similarity_coefficient": 0.7021276595744681, "overlap_size": 33 } }, { "data": { "id": "5a78efae-b4fa-4e8a-8b1d-67631b395313", "source": "44338cf6-b799-4097-a74f-e7386e686f63", "target": "51aa4010-3e79-4fea-9a8d-7d096b0002fa", "similarity_coefficient": 0.7659574468085106, "overlap_size": 36 } }, { "data": { "id": "53b15296-d718-45b5-bc86-d40acf66731a", "source": "bcc65295-3471-4afc-8a56-1663b2c5f48d", "target": "74b5bd36-84dd-4786-be05-c3fad4a46c33", "similarity_coefficient": 0.3168103448275862, "overlap_size": 147 } }, { "data": { "id": "1fe98f38-dd1b-4440-bb63-105b3a7843eb", "source": "bcc65295-3471-4afc-8a56-1663b2c5f48d", "target": "f40412c6-5ce1-4780-a6f2-a92ff01d974a", "similarity_coefficient": 0.2613240418118467, "overlap_size": 150 } }, { "data": { "id": "5ec43d52-9e3c-4376-900d-9b799bb45184", "source": "bcc65295-3471-4afc-8a56-1663b2c5f48d", "target": "f4d86e8f-8852-44cc-9034-4e0aef1f6102", "similarity_coefficient": 0.7688311688311689, "overlap_size": 296 } }, { "data": { "id": "78d86b8f-c551-4386-a1e9-8881beaa778c", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "similarity_coefficient": 0.2634146341463415, "overlap_size": 54 } }, { "data": { "id": "7df4c159-f6c5-4973-931b-8c314cae12e3", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.2523809523809524, "overlap_size": 53 } }, { "data": { "id": "a9653315-b243-43a7-8557-704e12339d5a", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.27225130890052357, "overlap_size": 52 } }, { "data": { "id": "d72dac54-7515-42a4-87db-33296525b500", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.9890710382513661, "overlap_size": 181 } }, { "data": { "id": "2ca10088-c0d6-4e5d-82ec-378afa77210b", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.2804232804232804, "overlap_size": 53 } }, { "data": { "id": "07c486fe-68eb-4b19-92bc-20dda97c4711", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.2702702702702703, "overlap_size": 50 } }, { "data": { "id": "28da6bb3-24c3-4ece-a47c-3d8c5acc405b", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.2631578947368421, "overlap_size": 50 } }, { "data": { "id": "ac86f147-5981-4c4e-8df7-9d42f30d7d02", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.2620320855614973, "overlap_size": 49 } }, { "data": { "id": "c6cbd8e8-832f-4eda-b070-bbd46b64dc46", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.2789473684210526, "overlap_size": 53 } }, { "data": { "id": "ee17fca8-c9a5-4ed4-8881-e5ef0fa8dc18", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.25757575757575757, "overlap_size": 51 } }, { "data": { "id": "2148af77-af9f-4096-8118-2eb1d9bf9435", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.2538860103626943, "overlap_size": 49 } }, { "data": { "id": "42d8b5fd-fe9b-4d56-bf86-0505b963badf", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.3137254901960784, "overlap_size": 64 } }, { "data": { "id": "f476bdf0-674e-4bcc-803b-0c56c4a8763e", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "29e82af7-6e38-474e-b6bb-dca8aa2b6147", "similarity_coefficient": 0.3532818532818533, "overlap_size": 183 } }, { "data": { "id": "1c2c2b12-87d7-40d4-8675-67bfaf320c5f", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.27692307692307694, "overlap_size": 54 } }, { "data": { "id": "43827bc2-b2d6-4190-903c-2ec760dfb942", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.2702702702702703, "overlap_size": 50 } }, { "data": { "id": "369b9c29-500f-47bc-a404-b6765c010ba7", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "similarity_coefficient": 0.3103448275862069, "overlap_size": 63 } }, { "data": { "id": "cc0e35f1-1599-4102-b94b-a9b273535416", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.27956989247311825, "overlap_size": 52 } }, { "data": { "id": "1493b7a4-01db-4ef2-904e-59f7acc1b5e7", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.28294573643410853, "overlap_size": 73 } }, { "data": { "id": "0e797fe4-56a4-4d93-b2e0-0e3ab7427c89", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.2620320855614973, "overlap_size": 49 } }, { "data": { "id": "0f036e44-e709-4757-ade4-541f68cd48cb", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "7ca2e3de-9935-4044-acc8-9703f93d0780", "similarity_coefficient": 0.31839622641509435, "overlap_size": 135 } }, { "data": { "id": "8dd64fdc-9f70-443d-b3d5-2fbb7f49334b", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.2702702702702703, "overlap_size": 50 } }, { "data": { "id": "7fc41664-0b64-48f2-8d0e-a1104a23a57c", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.26881720430107525, "overlap_size": 50 } }, { "data": { "id": "83ee575e-c50a-4bc4-88b7-65a0fde82956", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.2702702702702703, "overlap_size": 50 } }, { "data": { "id": "cefecc68-31e6-411e-a950-e6281bcd0af4", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.2815533980582524, "overlap_size": 58 } }, { "data": { "id": "b1be84cc-2645-44df-bac6-85bb65d2a999", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.26063829787234044, "overlap_size": 49 } }, { "data": { "id": "30a44e6c-ef6b-42ce-8dbd-a55c94ee26be", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.25742574257425743, "overlap_size": 52 } }, { "data": { "id": "672203be-ef68-435a-bda3-40ccc3131ac8", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.2857142857142857, "overlap_size": 54 } }, { "data": { "id": "cea10316-b839-450b-a3e8-2f9d6dee1a3b", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.2578947368421053, "overlap_size": 49 } }, { "data": { "id": "6eb9c8ba-e870-4343-ad37-27cd6812f6a5", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.2682926829268293, "overlap_size": 55 } }, { "data": { "id": "f60a8550-dbcf-49ea-a96d-b937ab4b6c49", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.266304347826087, "overlap_size": 49 } }, { "data": { "id": "209fcd0d-f36c-4751-8818-7b1a4a5a40e1", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.2549019607843137, "overlap_size": 52 } }, { "data": { "id": "41e12642-a867-47d5-8ccb-658065e9656e", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.2857142857142857, "overlap_size": 54 } }, { "data": { "id": "e26e96d0-ef53-49f5-93ad-9b2503df8361", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.25925925925925924, "overlap_size": 49 } }, { "data": { "id": "57ee2735-dd34-4167-9cff-c3487251ea10", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.2843601895734597, "overlap_size": 60 } }, { "data": { "id": "732b325e-c252-4aaa-bcd3-0f20813037bb", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.27638190954773867, "overlap_size": 55 } }, { "data": { "id": "a3fea1ac-7cf2-4d4b-90cc-3727a722c274", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.25980392156862747, "overlap_size": 53 } }, { "data": { "id": "9ea81886-15fa-488b-a7d4-e7ff939e4d2c", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.2857142857142857, "overlap_size": 54 } }, { "data": { "id": "6e0c4626-54d5-4654-9948-c9de5e372cbd", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.2727272727272727, "overlap_size": 57 } }, { "data": { "id": "1e19e370-f01a-48e2-a597-5914117f633f", "source": "14654f3b-2789-4eed-a644-a2a654fa934b", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.2512820512820513, "overlap_size": 49 } }, { "data": { "id": "1d40b786-baa6-4948-984d-409b1c8f246a", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "similarity_coefficient": 0.4065040650406504, "overlap_size": 50 } }, { "data": { "id": "67661b87-e27e-4b91-b028-c7ea3eb92c54", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.6082474226804123, "overlap_size": 59 } }, { "data": { "id": "967a51e1-7f81-49f8-92e9-95056b983489", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.4411764705882353, "overlap_size": 45 } }, { "data": { "id": "0eac4a53-3da6-4f4f-b2f9-660541b48edc", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.25742574257425743, "overlap_size": 52 } }, { "data": { "id": "86b306b7-d586-4aae-922e-2a5a196b784a", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.6542056074766355, "overlap_size": 70 } }, { "data": { "id": "4b598a59-d1ac-446a-a50b-30cf83ba81c5", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.35766423357664234, "overlap_size": 49 } }, { "data": { "id": "29b5dda6-1278-4a80-98a4-afc082565ca8", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.4336283185840708, "overlap_size": 49 } }, { "data": { "id": "9d993cc4-c83e-432c-a854-c4186b5ac71c", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.4298245614035088, "overlap_size": 49 } }, { "data": { "id": "bf2002e4-edc7-48bc-a9a2-c4b9499b3a34", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.49, "overlap_size": 49 } }, { "data": { "id": "baf05ac0-968f-4f26-9a22-17a2c110f979", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.26256983240223464, "overlap_size": 47 } }, { "data": { "id": "56838581-8f10-4916-ba78-2a1b3fc58a9f", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.3443708609271523, "overlap_size": 52 } }, { "data": { "id": "b9ac08d1-13f7-41da-94fb-d3e613763ed1", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49 } }, { "data": { "id": "3ec85630-20c7-499c-9b09-896abdaf9787", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.41228070175438597, "overlap_size": 47 } }, { "data": { "id": "3bc88a88-4f59-471a-9d08-29f0fe0cfdb2", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.424, "overlap_size": 53 } }, { "data": { "id": "0fcca518-54ee-49dd-b30f-7e5bfe038ab5", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49 } }, { "data": { "id": "ac286a14-ed98-4ca2-a9c3-f78533424234", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "904648c2-551b-426e-815e-74ced2374458", "similarity_coefficient": 0.3917525773195876, "overlap_size": 76 } }, { "data": { "id": "c5aebf05-9653-4e34-ad85-1efbc604adf5", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.48514851485148514, "overlap_size": 49 } }, { "data": { "id": "80c4c229-49bf-4b69-aa2d-83c230e4421c", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.37593984962406013, "overlap_size": 50 } }, { "data": { "id": "9ef21a63-478b-44b9-8baa-3d592ece4ea3", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.29012345679012347, "overlap_size": 47 } }, { "data": { "id": "0e5c63d5-536f-4999-8843-34ceffd2fb3b", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "3242adbd-9b39-4944-8cd1-2f6b7913e021", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.4358974358974359, "overlap_size": 51 } }, { "data": { "id": "1adcef3e-1cba-457a-9bd1-849bae852787", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.36551724137931035, "overlap_size": 53 } }, { "data": { "id": "df86cd3d-347b-4ab0-94f5-4ac04d4820a1", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.52, "overlap_size": 52 } }, { "data": { "id": "877c1756-773e-45f4-8383-15913c5e2649", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.3582089552238806, "overlap_size": 48 } }, { "data": { "id": "56486765-0366-4bf8-8aa0-3f1d2d4f07ac", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.49523809523809526, "overlap_size": 52 } }, { "data": { "id": "09c061b7-0154-41e0-a672-58028fa61469", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49 } }, { "data": { "id": "69399d09-27d4-47ce-a9be-bc95d31c623b", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.5, "overlap_size": 49 } }, { "data": { "id": "b0b75e21-b5cb-4efd-8136-29c2b0e17a0e", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.40625, "overlap_size": 52 } }, { "data": { "id": "19e4738b-75b1-42fb-b4a9-370f805efbfd", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49 } }, { "data": { "id": "b0c986e4-dc25-4d58-83cf-84413553831f", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.49523809523809526, "overlap_size": 52 } }, { "data": { "id": "b82d33c4-d096-4e2a-956e-3ee0350c5f3d", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.427536231884058, "overlap_size": 59 } }, { "data": { "id": "34f5f375-d25e-4a64-b379-c21c8e37ec2c", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.4032258064516129, "overlap_size": 50 } }, { "data": { "id": "0133c79a-d913-4e95-9ca2-dfd681410eed", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49 } }, { "data": { "id": "a5e0c722-cf53-4921-b632-1c7ef4b498c0", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.31097560975609756, "overlap_size": 51 } }, { "data": { "id": "cf1e73d9-c4eb-4622-8937-55e6b3cfc056", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.4132231404958678, "overlap_size": 50 } }, { "data": { "id": "38cbd178-fe18-4aef-aa45-32872ece4b5d", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.4339622641509434, "overlap_size": 46 } }, { "data": { "id": "dbc901ab-f6c5-4d36-a0f9-9a1582e123b3", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.25, "overlap_size": 52 } }, { "data": { "id": "af49c0c2-0b37-4fa5-a04b-8b5a85dd7c35", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "1732e9b0-d067-4fb4-9670-5e323da79090", "similarity_coefficient": 0.29651162790697677, "overlap_size": 51 } }, { "data": { "id": "451d0f08-9097-4be4-a0b9-18118fe47a99", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.4132231404958678, "overlap_size": 50 } }, { "data": { "id": "e610ac4f-9d95-405d-8b95-505bb2403050", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.36923076923076925, "overlap_size": 48 } }, { "data": { "id": "41fdcd76-20c8-449e-9515-e26922667c9a", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.49523809523809526, "overlap_size": 52 } }, { "data": { "id": "f61a5cd8-3ee6-4db1-9e74-fd67f16c1b63", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.47058823529411764, "overlap_size": 48 } }, { "data": { "id": "c64da3d5-6326-43b8-b426-8b7885a83e29", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.4015151515151515, "overlap_size": 53 } }, { "data": { "id": "6e8a81ed-6894-41bb-8a87-3fb9ca080bbc", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.43478260869565216, "overlap_size": 50 } }, { "data": { "id": "f4a0d4bc-e93b-4df4-bf93-e7ce61487eb4", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.49, "overlap_size": 49 } }, { "data": { "id": "ddeef8a1-0b4d-48e5-8d96-1dc5960ae271", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.48514851485148514, "overlap_size": 49 } }, { "data": { "id": "a9871375-51d9-494a-a8ac-a13b141ee141", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.3132530120481928, "overlap_size": 52 } }, { "data": { "id": "8fefab68-c0a8-4610-b8e8-2ff91b4e2188", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.3333333333333333, "overlap_size": 49 } }, { "data": { "id": "1f305486-4721-4f4a-943d-8a6328d05999", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.4358974358974359, "overlap_size": 51 } }, { "data": { "id": "042738a3-c42c-4572-addc-9e2c54ee314a", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.35, "overlap_size": 49 } }, { "data": { "id": "2b1c7e49-8191-4b0b-85cd-6d188419e631", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.3712121212121212, "overlap_size": 49 } }, { "data": { "id": "7ff866d9-2fed-4dbd-8481-09bc4c21109c", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.3150684931506849, "overlap_size": 46 } }, { "data": { "id": "b5b719a7-87cf-45db-b25c-a8f8e7a05da7", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "similarity_coefficient": 0.36363636363636365, "overlap_size": 48 } }, { "data": { "id": "a3540b8f-7cff-4732-8b92-4b549d05d269", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.3851851851851852, "overlap_size": 52 } }, { "data": { "id": "018d90ac-46f5-48e2-a15b-3df45b511290", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.45535714285714285, "overlap_size": 51 } }, { "data": { "id": "6b9b9f7e-654e-4f22-ace6-f394b64849f6", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.28888888888888886, "overlap_size": 52 } }, { "data": { "id": "72af5a9e-6d07-475a-a21a-5788e78d5948", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "72fd7976-1a23-4642-833b-600f2c123e40", "similarity_coefficient": 0.4368932038834951, "overlap_size": 45 } }, { "data": { "id": "bcfa6865-82f2-4360-95ed-4b8f4d1caa97", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.49, "overlap_size": 49 } }, { "data": { "id": "3c5970ed-181a-44c6-b622-c625aedeef3c", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.44036697247706424, "overlap_size": 48 } }, { "data": { "id": "b23d2446-30c0-4d3c-8fc8-004d037f2cbe", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.4375, "overlap_size": 49 } }, { "data": { "id": "2b9f457a-e041-4a50-a576-8170b92eff98", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.3402777777777778, "overlap_size": 49 } }, { "data": { "id": "40fa9f39-f51c-4b28-9ad4-9ae10f8ebe95", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.6185567010309279, "overlap_size": 60 } }, { "data": { "id": "65f2a746-2dcb-45c5-b8a4-26a721eb935f", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.49, "overlap_size": 49 } }, { "data": { "id": "e1450ed2-d0dd-4af6-a743-b817f73568d3", "source": "0d3bb231-67c2-46cb-93ed-80383c138af9", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.4166666666666667, "overlap_size": 50 } }, { "data": { "id": "f23f1aaa-9022-4dfe-9ae7-517b2100bb93", "source": "386aac68-a2ec-4a2a-a96e-7b32087b2e75", "target": "31a9d742-83d3-4990-9495-42d49c780cec", "similarity_coefficient": 0.2823529411764706, "overlap_size": 24 } }, { "data": { "id": "cc20ba89-5911-49fd-898b-d69ea0503f9b", "source": "386aac68-a2ec-4a2a-a96e-7b32087b2e75", "target": "9b45383f-4e68-4ffa-a477-21d4f8675759", "similarity_coefficient": 0.5853658536585366, "overlap_size": 24 } }, { "data": { "id": "f553e6ba-6b8a-4804-9456-0ed287411360", "source": "386aac68-a2ec-4a2a-a96e-7b32087b2e75", "target": "405225ec-878f-41f4-9b4f-158f553cd119", "similarity_coefficient": 0.7058823529411765, "overlap_size": 24 } }, { "data": { "id": "6454c373-a769-4f24-900f-f2db19d9b02f", "source": "386aac68-a2ec-4a2a-a96e-7b32087b2e75", "target": "44338cf6-b799-4097-a74f-e7386e686f63", "similarity_coefficient": 0.5, "overlap_size": 24 } }, { "data": { "id": "64d8b362-8828-41e4-9f99-328d929ccdef", "source": "386aac68-a2ec-4a2a-a96e-7b32087b2e75", "target": "a87e7bfc-894c-4e4b-b80f-64bba3e8adc1", "similarity_coefficient": 0.6, "overlap_size": 24 } }, { "data": { "id": "219994a5-a1a4-4664-b980-2235677dd3e1", "source": "386aac68-a2ec-4a2a-a96e-7b32087b2e75", "target": "51aa4010-3e79-4fea-9a8d-7d096b0002fa", "similarity_coefficient": 0.6486486486486487, "overlap_size": 24 } }, { "data": { "id": "3bdecb8d-8de0-4a14-a2f9-e5582ee3c57e", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.4049586776859504, "overlap_size": 49 } }, { "data": { "id": "169880a4-c1d0-41db-9a2f-b2c99e7e1753", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.6125, "overlap_size": 49 } }, { "data": { "id": "63fa187f-5c98-4529-8560-1756bc824332", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "9bc92485-ce7c-4676-b5a1-446aaeb3fa8b", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "eae01209-31b8-4b2e-a2d3-cec934d5334c", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.8305084745762712, "overlap_size": 49 } }, { "data": { "id": "d970a3ae-e325-4bc8-a029-83a55e0604b3", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.30303030303030304, "overlap_size": 50 } }, { "data": { "id": "1e482ffd-9cad-43ed-bf94-4f20d5a98163", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "a9b57340-460e-463a-aea3-d69fe3a3e8da", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.42857142857142855, "overlap_size": 24 } }, { "data": { "id": "7f4f01af-53ca-48b7-96b1-a514a09981c6", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49 } }, { "data": { "id": "3e4ce614-8612-47b3-8aee-2d42f342d1e0", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.7540983606557377, "overlap_size": 46 } }, { "data": { "id": "1ed232b1-fada-4b0e-9410-2ea30c95802c", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.5287356321839081, "overlap_size": 46 } }, { "data": { "id": "437d5054-d8a4-46dc-922e-1afb2e24602d", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "e1d22e87-db00-41c7-a7aa-821d99bf7f0d", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "1732e9b0-d067-4fb4-9670-5e323da79090", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49 } }, { "data": { "id": "79c56bd6-107a-4798-a31d-57d645fec5ab", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "95aadf89-ef13-462e-ad46-bd30980c484c", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "ed6b4be3-7cb9-4a54-8e90-d10141f12f55", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.30718954248366015, "overlap_size": 47 } }, { "data": { "id": "de73c3b2-8cc8-461d-8c48-79689d3f7414", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49 } }, { "data": { "id": "d42d01ec-f04d-468f-9af5-644652f28862", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.6571428571428571, "overlap_size": 46 } }, { "data": { "id": "2323d3d3-00a0-411a-92d9-4df58ee655f6", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.5222222222222223, "overlap_size": 47 } }, { "data": { "id": "9b941da8-d43d-4cd8-a140-cb285d038f96", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49 } }, { "data": { "id": "bf656a15-53fd-4831-ba49-e07771a2f097", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49 } }, { "data": { "id": "16f948ff-3e39-4198-8304-528e9c36c8c7", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49 } }, { "data": { "id": "455700ed-4297-46c5-837e-eb4bb44dc44a", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "0d3bb231-67c2-46cb-93ed-80383c138af9", "similarity_coefficient": 0.49, "overlap_size": 49 } }, { "data": { "id": "46b69258-8903-407f-b49d-8a68d780d573", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "cdcc9666-7b16-4eee-9119-270ec8f6f275", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.9245283018867925, "overlap_size": 49 } }, { "data": { "id": "93c9dfdf-0d9b-42e9-8954-9aae3c83b4d2", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49 } }, { "data": { "id": "2f50207d-54f2-4171-9fcf-6d0d31824651", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.847457627118644, "overlap_size": 50 } }, { "data": { "id": "cf5eab2a-0753-44d2-b1c3-7cc1aeed7d61", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.34074074074074073, "overlap_size": 46 } }, { "data": { "id": "394113fb-e63f-4a00-9fa1-ea377dd460fd", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49 } }, { "data": { "id": "8333c231-c59b-4109-97c3-64cbbfd0742c", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 1, "overlap_size": 52 } }, { "data": { "id": "1a95e263-6c25-433a-aebe-148157e314c4", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.273224043715847, "overlap_size": 50 } }, { "data": { "id": "35057e83-4a82-45ce-abe2-176103984e8a", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.7894736842105263, "overlap_size": 45 } }, { "data": { "id": "bcd7f943-ac5e-420b-bfd0-8374bd4275fe", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "similarity_coefficient": 0.620253164556962, "overlap_size": 49 } }, { "data": { "id": "2d9c55b1-0d24-4735-8c75-1e2549e073f4", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.532608695652174, "overlap_size": 49 } }, { "data": { "id": "7b21aaa2-0724-4163-8f4e-b1c56cc88f2e", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.765625, "overlap_size": 49 } }, { "data": { "id": "ebb33f18-a1f3-4cda-9939-9242f8d94a4a", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.7352941176470589, "overlap_size": 50 } }, { "data": { "id": "1dae1bb4-a9b6-4d4d-a4d0-e444514b4b32", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49 } }, { "data": { "id": "f7f8b006-702d-4ebf-aa53-a61a0a8b5532", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49 } }, { "data": { "id": "6c49d0cb-226e-4b98-9683-b6192a6b0900", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.8909090909090909, "overlap_size": 49 } }, { "data": { "id": "cd1443ba-1b25-4d2e-86ca-2b321715bae5", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "e3a54b7a-7096-441a-b613-974442a15003", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "904648c2-551b-426e-815e-74ced2374458", "similarity_coefficient": 0.2784090909090909, "overlap_size": 49 } }, { "data": { "id": "b610118f-d974-4654-9515-e45b95b478c3", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.30625, "overlap_size": 49 } }, { "data": { "id": "b3269533-3454-45e1-ab04-6cf692623e96", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49 } }, { "data": { "id": "e01f9ac0-c593-45b8-bd0b-4c9dbc1e54f9", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49 } }, { "data": { "id": "c83339fa-8ca5-4214-b618-d60cec6dd66b", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.3898305084745763, "overlap_size": 46 } }, { "data": { "id": "0fd0ff5d-5d69-4376-ab2f-c63129776f02", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.550561797752809, "overlap_size": 49 } }, { "data": { "id": "4ece6433-be88-4c70-a9e9-2f52bfbc9a9e", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.875, "overlap_size": 49 } }, { "data": { "id": "14220dbe-cef0-45e2-a09e-d8b976ae5615", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49 } }, { "data": { "id": "f6549ae7-124b-4859-9c3e-a5678c750b94", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.875, "overlap_size": 49 } }, { "data": { "id": "c1faf87c-c856-4f76-8c4c-cbde89e6fc32", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49 } }, { "data": { "id": "5cefcc33-20b4-47de-bfda-0865056b6fb7", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49 } }, { "data": { "id": "e7216d24-124f-4d25-a69d-31a09a0ef51d", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.45544554455445546, "overlap_size": 46 } }, { "data": { "id": "ab729f20-fc6c-4d3a-89db-b0361fc1c0c4", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "similarity_coefficient": 0.5340909090909091, "overlap_size": 47 } }, { "data": { "id": "88e29a32-fbea-410d-ab2d-b51c90790856", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.28488372093023256, "overlap_size": 49 } }, { "data": { "id": "a4c00f55-3b89-4167-b371-4fac493e203d", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49 } }, { "data": { "id": "5d1de435-3e16-4585-ac24-e934c5cde589", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.7796610169491526, "overlap_size": 46 } }, { "data": { "id": "0de59f7c-d8e6-41a4-ae6e-589e9f01cb79", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "14654f3b-2789-4eed-a644-a2a654fa934b", "similarity_coefficient": 0.2702702702702703, "overlap_size": 50 } }, { "data": { "id": "6899bec2-f856-46c5-834e-b225e6d1549e", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.8596491228070176, "overlap_size": 49 } }, { "data": { "id": "84d6f315-2788-4e29-900b-024328309e5c", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49 } }, { "data": { "id": "e67e8aea-c04e-4722-be45-91e4991c3249", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.696969696969697, "overlap_size": 46 } }, { "data": { "id": "de2ee313-e2e6-4b26-98d6-5a37680fa288", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49 } }, { "data": { "id": "fd050102-1bee-43f5-8e9c-19c70a146468", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.7931034482758621, "overlap_size": 46 } }, { "data": { "id": "0417195e-0078-4978-b53b-262b3f6334bf", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "72fd7976-1a23-4642-833b-600f2c123e40", "similarity_coefficient": 0.7758620689655172, "overlap_size": 45 } }, { "data": { "id": "5dfdd6da-d4db-48fc-aada-2a522e48121f", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "1de36c49-140c-4d6d-8213-1281269cad7d", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49 } }, { "data": { "id": "b5824909-e428-4e66-8b57-63be391e8418", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49 } }, { "data": { "id": "0ee1e041-e1d4-4453-ad73-6340381b7567", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 1, "overlap_size": 52 } }, { "data": { "id": "0ff65a59-c0a2-4d68-b013-b25bf3eb52de", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49 } }, { "data": { "id": "29761bb4-4a94-41f9-8eb6-f0f8deec0f52", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.494949494949495, "overlap_size": 49 } }, { "data": { "id": "23e99bce-c523-4c49-9707-d3908f52be1e", "source": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.35507246376811596, "overlap_size": 49 } }, { "data": { "id": "12a5079c-a6d0-48b9-8fe5-bc6c9c757de0", "source": "e01bb0c4-42f6-4d9d-b9dc-fabc5aa42336", "target": "72dff63e-bb99-4d8f-8b2d-f863ae5278f1", "similarity_coefficient": 0.8518518518518519, "overlap_size": 92 } }, { "data": { "id": "6a07c4e6-4d0b-4b30-ac18-fb5e1d713930", "source": "e01bb0c4-42f6-4d9d-b9dc-fabc5aa42336", "target": "7ca2e3de-9935-4044-acc8-9703f93d0780", "similarity_coefficient": 0.2765957446808511, "overlap_size": 104 } }, { "data": { "id": "b79916cc-b75e-42c8-a761-c78ab2410e5d", "source": "e01bb0c4-42f6-4d9d-b9dc-fabc5aa42336", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.5872093023255814, "overlap_size": 101 } }, { "data": { "id": "ad204acc-1fe9-466b-a4d1-b517707397da", "source": "e01bb0c4-42f6-4d9d-b9dc-fabc5aa42336", "target": "8eb0c7aa-fc44-4379-8cb1-37fee77ce2c4", "similarity_coefficient": 0.8846153846153846, "overlap_size": 92 } }, { "data": { "id": "60de90ed-bc02-463f-bef1-0c9f6dd56fcb", "source": "e01bb0c4-42f6-4d9d-b9dc-fabc5aa42336", "target": "080d7999-edb3-459d-97a1-0b0c699425b5", "similarity_coefficient": 0.45414847161572053, "overlap_size": 104 } }, { "data": { "id": "c2e5388f-c79f-4c6d-afbb-abbdf23ab16f", "source": "e01bb0c4-42f6-4d9d-b9dc-fabc5aa42336", "target": "fb172c5a-c242-43e8-98a4-bc060890f253", "similarity_coefficient": 0.33807829181494664, "overlap_size": 95 } }, { "data": { "id": "b6bfec85-0cae-465c-87a7-69576a923893", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.3333333333333333, "overlap_size": 49 } }, { "data": { "id": "07206b83-aa6c-4ee0-8ed9-c8b9c70c4786", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49 } }, { "data": { "id": "dbe3c3f9-a4d6-4f28-870b-206e5a10314c", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49 } }, { "data": { "id": "24440add-40e8-47f7-ace0-dd7ce82ee9c2", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.675, "overlap_size": 54 } }, { "data": { "id": "f01bb6d8-e46d-41dc-a2bb-85cb2228be24", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.5287356321839081, "overlap_size": 46 } }, { "data": { "id": "21791110-4a2a-482a-8523-f58dcf0d32e2", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.40707964601769914, "overlap_size": 46 } }, { "data": { "id": "ae92ef75-2e65-4ee5-8bf1-230ce912031c", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "7dceae64-110c-4fd5-aa48-4a5718733baf", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.550561797752809, "overlap_size": 49 } }, { "data": { "id": "6f0e8af4-6e8f-4231-adbc-b2031e6fabe6", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49 } }, { "data": { "id": "8d1bce3f-ba90-4f3e-8fe1-020adfaa2338", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.550561797752809, "overlap_size": 49 } }, { "data": { "id": "6cb08b34-f29d-4119-9102-608fb561f259", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.620253164556962, "overlap_size": 49 } }, { "data": { "id": "9d9c4aff-3bef-495f-b3b2-7b7a3ca1e9c5", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.3875968992248062, "overlap_size": 50 } }, { "data": { "id": "f1d4c85a-91d0-4eba-8d0e-99945ca36dab", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "6d81af77-b229-4333-89d5-394403cfd8d7", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.32666666666666666, "overlap_size": 49 } }, { "data": { "id": "1e7c2803-f328-402d-bead-bb3d0780ca6a", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49 } }, { "data": { "id": "ef1c4810-a5bd-49e6-a160-15a346fa980a", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "8c9ccc49-5aef-43ad-95ad-297a8377d596", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.3194444444444444, "overlap_size": 46 } }, { "data": { "id": "d2e85a5e-b4b4-4c9c-acdb-127a3de2d23d", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.25555555555555554, "overlap_size": 46 } }, { "data": { "id": "17da6666-b3dd-4481-9601-f08c1792640b", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.33962264150943394, "overlap_size": 54 } }, { "data": { "id": "d2aee285-5b9a-4745-8345-e3607f4a0d81", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49 } }, { "data": { "id": "f4b4d74c-33fe-4c29-8128-33364701274d", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49 } }, { "data": { "id": "159b2030-e4ea-43be-8b7e-63f9afca993d", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49 } }, { "data": { "id": "ba1cca23-bfae-4de5-8e2f-a0bbdd3116b1", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "1732e9b0-d067-4fb4-9670-5e323da79090", "similarity_coefficient": 0.3161290322580645, "overlap_size": 49 } }, { "data": { "id": "3d5fda23-9190-4522-8ee7-e29a0e46f349", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.4117647058823529, "overlap_size": 49 } }, { "data": { "id": "d3f2813b-f033-429f-8260-e70a22cb17b4", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.5476190476190477, "overlap_size": 46 } }, { "data": { "id": "e6c0d9ba-1400-4eee-af71-43e8f31cbed8", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.49, "overlap_size": 49 } }, { "data": { "id": "41f2de20-0730-4471-8e2c-fdab332358c2", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49 } }, { "data": { "id": "fd3a16fa-e7bd-4e30-b5a1-e437ce4bccde", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49 } }, { "data": { "id": "d6056281-610d-4efa-91b0-17f2210f489e", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.36220472440944884, "overlap_size": 46 } }, { "data": { "id": "693bfa30-6dfc-462a-a7e5-f7a9cd50c018", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.3828125, "overlap_size": 49 } }, { "data": { "id": "48dee350-7495-4fb8-9598-7c56d01a17ef", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49 } }, { "data": { "id": "d3cbea35-a7c1-46c9-bfa3-d36ba911be6b", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.2857142857142857, "overlap_size": 46 } }, { "data": { "id": "19b360f8-4ca9-4f02-bbdb-65fef153c513", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.362962962962963, "overlap_size": 49 } }, { "data": { "id": "c624336d-fb9d-426f-bb81-7afdefff4d3d", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49 } }, { "data": { "id": "dc6b06bb-97c4-427a-bdef-4bec834bfa9b", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.782051282051282, "overlap_size": 61 } }, { "data": { "id": "eb7bee4a-c88b-4036-91e0-81c4041cbd59", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49 } }, { "data": { "id": "2f09dd15-1a1f-487c-ae85-39a6f0169c5c", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49 } }, { "data": { "id": "42b77c73-db9b-4bd7-b8a3-e075a7f5b7c3", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.5421686746987951, "overlap_size": 45 } }, { "data": { "id": "c818087a-3960-490c-80f7-8bc886e8b6e3", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "72fd7976-1a23-4642-833b-600f2c123e40", "similarity_coefficient": 0.5357142857142857, "overlap_size": 45 } }, { "data": { "id": "0d387a30-a261-4ec7-92d8-513818a892fa", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.6506024096385542, "overlap_size": 54 } }, { "data": { "id": "67e235c5-cf90-41e0-b176-c7ce5cd17958", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.6067415730337079, "overlap_size": 54 } }, { "data": { "id": "79356f4b-a857-484f-a874-0a9a33e8e953", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.26344086021505375, "overlap_size": 49 } }, { "data": { "id": "ca625482-f07d-40fc-9a9e-daf08690d382", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.392, "overlap_size": 49 } }, { "data": { "id": "df520b0d-3371-40e0-a5e7-e46ae518af13", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49 } }, { "data": { "id": "f1d07d08-f706-4add-ab1f-3de79a156b59", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.550561797752809, "overlap_size": 49 } }, { "data": { "id": "48a7ee66-6935-4870-bc30-7da06de67eed", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49 } }, { "data": { "id": "332fb2d7-3f7e-40c5-b938-a5bc7cb39893", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49 } }, { "data": { "id": "be1f570f-18eb-48c8-9726-543428952e1b", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49 } }, { "data": { "id": "d4a037d6-27d2-4a98-84a8-f8b22c4a948f", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49 } }, { "data": { "id": "88b5552c-919d-425c-9d14-e5ebc6d87ec0", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "similarity_coefficient": 0.4, "overlap_size": 46 } }, { "data": { "id": "d6fc2e36-236d-4b3f-8562-754c72ba9f12", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.4791666666666667, "overlap_size": 46 } }, { "data": { "id": "3514ec5a-6d73-4047-89b6-6dd7ecbe0adb", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.5, "overlap_size": 46 } }, { "data": { "id": "c1dc8a1c-9d75-47c8-b8f5-d37c13bef019", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.39316239316239315, "overlap_size": 46 } }, { "data": { "id": "8346c88d-e1e4-4f46-888c-ea9b9b57d1e9", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.4152542372881356, "overlap_size": 49 } }, { "data": { "id": "225b6065-f4d9-489e-8180-60e780fc4dac", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49 } }, { "data": { "id": "b45c9ebd-9955-4be8-adb0-b56aeaed3f91", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.4049586776859504, "overlap_size": 49 } }, { "data": { "id": "3ce6c8e4-42eb-43a2-b62f-90ed4d75891d", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.5411764705882353, "overlap_size": 46 } }, { "data": { "id": "55a7d175-8d30-4237-9d1f-8e5fbc90fd39", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.4336283185840708, "overlap_size": 49 } }, { "data": { "id": "fdec4012-8edd-4760-bb5a-b213c56d5664", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.550561797752809, "overlap_size": 49 } }, { "data": { "id": "d1624baa-7670-41b1-b7d0-378f3e4dfc24", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49 } }, { "data": { "id": "83cad021-4fc4-462a-bf96-3d39a623ae04", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.4375, "overlap_size": 49 } }, { "data": { "id": "72e03c36-5abe-45f9-84bd-148bfa81bc69", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49 } }, { "data": { "id": "72874a94-aab3-4d44-a3bb-cab450183ede", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.2552083333333333, "overlap_size": 49 } }, { "data": { "id": "db0bb3aa-40b6-42fd-aaaa-6c93205ce2a5", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "899274f7-3cbf-4f41-a38c-b9e39bf1a8fc", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "0d3bb231-67c2-46cb-93ed-80383c138af9", "similarity_coefficient": 0.3888888888888889, "overlap_size": 49 } }, { "data": { "id": "28a70a4d-84b4-4676-aa2a-27761de8e928", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.2926829268292683, "overlap_size": 24 } }, { "data": { "id": "cbe50ab7-be65-4918-98e1-1d0e82dbcdf6", "source": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.49, "overlap_size": 49 } }, { "data": { "id": "f47e6caf-9cde-46cc-b109-6d1cbede0243", "source": "405225ec-878f-41f4-9b4f-158f553cd119", "target": "a87e7bfc-894c-4e4b-b80f-64bba3e8adc1", "similarity_coefficient": 0.8461538461538461, "overlap_size": 33 } }, { "data": { "id": "23fdc652-71c4-433f-9915-c12ff9b2363a", "source": "405225ec-878f-41f4-9b4f-158f553cd119", "target": "51aa4010-3e79-4fea-9a8d-7d096b0002fa", "similarity_coefficient": 0.9166666666666666, "overlap_size": 33 } }, { "data": { "id": "124d270e-71ff-46fb-b6e2-d7714522a9fe", "source": "405225ec-878f-41f4-9b4f-158f553cd119", "target": "9b45383f-4e68-4ffa-a477-21d4f8675759", "similarity_coefficient": 0.825, "overlap_size": 33 } }, { "data": { "id": "afa88323-4194-4baf-8e3b-4d6ff2dd73b1", "source": "405225ec-878f-41f4-9b4f-158f553cd119", "target": "31a9d742-83d3-4990-9495-42d49c780cec", "similarity_coefficient": 0.39285714285714285, "overlap_size": 33 } }, { "data": { "id": "608e59c7-beb0-481e-a466-ca7ca59bc3f1", "source": "edd3d72d-8319-4a8c-9fb8-28083330ae5b", "target": "50f5ed90-547c-4a0e-adaa-f5a2d8d8b12e", "similarity_coefficient": 0.2662337662337662, "overlap_size": 41 } }, { "data": { "id": "d166a332-e36e-44d6-884b-6a06805d23da", "source": "edd3d72d-8319-4a8c-9fb8-28083330ae5b", "target": "8cca4f4e-2ae2-4c4c-b02d-77f747e2cda7", "similarity_coefficient": 0.2702702702702703, "overlap_size": 40 } }, { "data": { "id": "a10a2094-e1df-4f00-ab7d-a778afa38bd0", "source": "edd3d72d-8319-4a8c-9fb8-28083330ae5b", "target": "82c3d253-ed57-4346-b09e-42eeccffa60c", "similarity_coefficient": 0.26582278481012656, "overlap_size": 42 } }, { "data": { "id": "7e1b345e-e069-472c-9036-c3d657d73a61", "source": "edd3d72d-8319-4a8c-9fb8-28083330ae5b", "target": "8d39f70d-6be5-4dff-a05d-b2c90d4628fb", "similarity_coefficient": 0.3716216216216216, "overlap_size": 55 } }, { "data": { "id": "fa148319-f167-4299-a51c-29d6a1510ca4", "source": "edd3d72d-8319-4a8c-9fb8-28083330ae5b", "target": "1b5495a8-ad7e-41a8-b4ee-2181cd3e7095", "similarity_coefficient": 0.5540540540540541, "overlap_size": 82 } }, { "data": { "id": "c8a28791-dfee-4ccf-868e-67987f3fdabc", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "similarity_coefficient": 0.6335877862595419, "overlap_size": 83 } }, { "data": { "id": "15999ccb-cee5-4045-b3ad-4735fbddf8a3", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.2768361581920904, "overlap_size": 49 } }, { "data": { "id": "23d57bdf-9800-45c8-8ec5-e50590671c1c", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.3087248322147651, "overlap_size": 46 } }, { "data": { "id": "ca358215-17f6-4b0e-b747-2a4755d6a0fd", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.3006535947712418, "overlap_size": 46 } }, { "data": { "id": "6795567b-6bdd-405c-bfd4-83a9236cc7cd", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.34558823529411764, "overlap_size": 47 } }, { "data": { "id": "6a0bd3ff-3234-4f5b-9e14-a88b0b05af23", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "29e82af7-6e38-474e-b6bb-dca8aa2b6147", "similarity_coefficient": 0.2528957528957529, "overlap_size": 131 } }, { "data": { "id": "e067ccd3-7939-48e6-890b-2530aab8f872", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.3425414364640884, "overlap_size": 62 } }, { "data": { "id": "22d8f772-3740-4696-96ac-59d954761f78", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.323943661971831, "overlap_size": 46 } }, { "data": { "id": "f05b93cd-9914-4148-b9eb-c2aca11deffe", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.2541436464088398, "overlap_size": 46 } }, { "data": { "id": "7236adde-f0fa-4433-a19c-5eb083016d0d", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.3356643356643357, "overlap_size": 48 } }, { "data": { "id": "c99ddccf-92ad-4ba2-8db6-9e631e84c9c8", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.4911242603550296, "overlap_size": 83 } }, { "data": { "id": "48f9ce72-e805-479b-91ee-104d63fbc316", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "72fd7976-1a23-4642-833b-600f2c123e40", "similarity_coefficient": 0.3, "overlap_size": 42 } }, { "data": { "id": "218f1609-c553-4f2e-92f2-bff43b643610", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "similarity_coefficient": 0.34558823529411764, "overlap_size": 47 } }, { "data": { "id": "48368f9c-5a4f-4a01-929a-7209f9f5757c", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.3333333333333333, "overlap_size": 46 } }, { "data": { "id": "77c05d0e-2162-4b1c-b262-5484c7c197e4", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.26285714285714284, "overlap_size": 46 } }, { "data": { "id": "6c51883c-64e0-489a-8af4-be8ad07e71b8", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.3150684931506849, "overlap_size": 46 } }, { "data": { "id": "3af79f8b-268b-40c1-96f6-2cdad6d7f2bd", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.33093525179856115, "overlap_size": 46 } }, { "data": { "id": "cbf63aef-119f-4a00-bb71-dadf9bc8f478", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.30666666666666664, "overlap_size": 46 } }, { "data": { "id": "52da01de-e2ea-40b0-8c8f-94df928680c6", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.43283582089552236, "overlap_size": 87 } }, { "data": { "id": "b90f8533-a9c0-4670-9ce3-5e044058ada2", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "similarity_coefficient": 0.2822085889570552, "overlap_size": 46 } }, { "data": { "id": "32176008-5900-415f-b3fa-9dc475b4eb03", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.6153846153846154, "overlap_size": 112 } }, { "data": { "id": "e95c15ea-0817-47e0-b1d6-95a2a0ecb647", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.3161290322580645, "overlap_size": 49 } }, { "data": { "id": "95876cb5-4ba6-4b75-b016-719dca36b768", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "14654f3b-2789-4eed-a644-a2a654fa934b", "similarity_coefficient": 0.28688524590163933, "overlap_size": 70 } }, { "data": { "id": "a0d8114f-3415-4d3c-9d1f-0fc1c7a52254", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.3356643356643357, "overlap_size": 48 } }, { "data": { "id": "eb0a77cb-3a0a-436a-9b09-4dfa26928da9", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.34558823529411764, "overlap_size": 47 } }, { "data": { "id": "25b88895-8846-40f1-93b4-ca642bbf6967", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.4580152671755725, "overlap_size": 60 } }, { "data": { "id": "00a75dbe-e3f4-49e7-a7e3-c2312a6503ee", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "similarity_coefficient": 0.3184713375796178, "overlap_size": 50 } }, { "data": { "id": "cd7c94f3-e423-41ee-806b-452ea43f1bbe", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.302158273381295, "overlap_size": 42 } }, { "data": { "id": "5b6c4b83-6cbf-4be0-b45d-88f02e6e0d3d", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.3262411347517731, "overlap_size": 46 } }, { "data": { "id": "c289fa0d-19cc-423d-8eae-086b5ebcb842", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.27647058823529413, "overlap_size": 47 } }, { "data": { "id": "bd4b6d6b-ae58-4421-b166-d653a7956277", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.304635761589404, "overlap_size": 46 } }, { "data": { "id": "5e9e0828-0e46-4a97-81ae-af45a5ee710c", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.362962962962963, "overlap_size": 49 } }, { "data": { "id": "976e2ad2-6424-4145-9c79-cad0cdfe3e07", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.294478527607362, "overlap_size": 48 } }, { "data": { "id": "554843dd-618e-4615-8adc-e61a85406268", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.3380281690140845, "overlap_size": 48 } }, { "data": { "id": "b524995e-1b38-41e0-a817-23d9f369d01b", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.2598870056497175, "overlap_size": 46 } }, { "data": { "id": "38d54e54-dfff-4467-87a9-a1adb0578446", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.27218934911242604, "overlap_size": 46 } }, { "data": { "id": "4270f384-e351-432d-9f0e-b87fc39af81c", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "fb172c5a-c242-43e8-98a4-bc060890f253", "similarity_coefficient": 0.2554517133956386, "overlap_size": 82 } }, { "data": { "id": "a28c94ac-eb0e-428a-90b9-77c8f901d972", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.3202614379084967, "overlap_size": 49 } }, { "data": { "id": "3bab517f-f199-4e3c-a1fa-f7c244d2cd72", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.4962962962962963, "overlap_size": 67 } }, { "data": { "id": "de17870b-3706-479c-984c-ca83b624461b", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.27071823204419887, "overlap_size": 49 } }, { "data": { "id": "045c6366-cc65-41d0-9c85-b4d90ca6af3f", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.3141025641025641, "overlap_size": 49 } }, { "data": { "id": "5dbc03f1-e2e8-41d7-899b-15fc17e9b8a3", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.34355828220858897, "overlap_size": 56 } }, { "data": { "id": "743520cc-22ca-4968-a7fb-4ab1ed398802", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.35555555555555557, "overlap_size": 48 } }, { "data": { "id": "d7dff4bc-e194-48fd-b336-502c4df854b9", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.3057324840764331, "overlap_size": 48 } }, { "data": { "id": "29854787-67b6-4003-9952-1ac7eab06143", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.32919254658385094, "overlap_size": 53 } }, { "data": { "id": "b4599cc5-8cc0-4c31-9b16-7b02f637e83c", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.3036649214659686, "overlap_size": 58 } }, { "data": { "id": "8a3d7623-e942-4bff-a959-d27866e1669b", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.31645569620253167, "overlap_size": 50 } }, { "data": { "id": "cc5c0798-b748-47ae-b981-bdcf8fb680c5", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "0d3bb231-67c2-46cb-93ed-80383c138af9", "similarity_coefficient": 0.26666666666666666, "overlap_size": 48 } }, { "data": { "id": "e28ed668-bb37-4647-a39e-4cc89fb6d626", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.3357664233576642, "overlap_size": 46 } }, { "data": { "id": "46bf4be8-3aef-4227-b715-dc26786dc14e", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.27906976744186046, "overlap_size": 48 } }, { "data": { "id": "c7ac872a-a4fe-4e18-abc1-a1d843da4c81", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.3356643356643357, "overlap_size": 48 } }, { "data": { "id": "f0eb5219-a91c-429a-a1f5-4f2d839753dd", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.34177215189873417, "overlap_size": 54 } }, { "data": { "id": "8345d951-2319-41c6-91f9-721ecdb3b47a", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.2839506172839506, "overlap_size": 69 } }, { "data": { "id": "321de4db-7af5-4c4b-9ba2-8bd67b83552d", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.34074074074074073, "overlap_size": 46 } }, { "data": { "id": "ef86b56d-6e6d-4073-ae92-e6b02585cb3f", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.6240601503759399, "overlap_size": 83 } }, { "data": { "id": "df4b293f-f3c0-4cbc-8b87-da2ef3d296e8", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.3333333333333333, "overlap_size": 46 } }, { "data": { "id": "0c346f50-67bf-4025-b156-95ffd24e62be", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.3194444444444444, "overlap_size": 46 } }, { "data": { "id": "0de0d572-bb94-40fe-9386-4b3789796ff1", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.29608938547486036, "overlap_size": 53 } }, { "data": { "id": "92bd33da-04ce-4509-9174-c9d4c3723da6", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.3006134969325153, "overlap_size": 49 } }, { "data": { "id": "c2ff3f1d-50b4-40bc-90f9-a9ac2e67bace", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.3680555555555556, "overlap_size": 53 } }, { "data": { "id": "b000d2cf-d4cb-49b1-a997-a02f3ddecd69", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.32857142857142857, "overlap_size": 46 } }, { "data": { "id": "5e06cbd5-9bfa-43d0-a7e6-b81f66fc3fdd", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.26229508196721313, "overlap_size": 48 } }, { "data": { "id": "eff560e1-1d02-4a55-a690-4422b86bb316", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.3356643356643357, "overlap_size": 48 } }, { "data": { "id": "f40d61b5-8925-4930-abef-215b2e9e189e", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.32857142857142857, "overlap_size": 46 } }, { "data": { "id": "fb146313-7b0a-4650-a8c1-e8ec1c5dfc54", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.35766423357664234, "overlap_size": 49 } }, { "data": { "id": "42cf7375-1a33-4d48-8fea-23e2cd9a402b", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.3087248322147651, "overlap_size": 46 } }, { "data": { "id": "a064ce4c-ba76-41d8-9cdd-80400df26a98", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.43646408839779005, "overlap_size": 79 } }, { "data": { "id": "86764be7-df7c-4211-ab8c-6db8fa775321", "source": "a6609db1-5756-4ff4-8409-5013d1a74f05", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.8851351351351351, "overlap_size": 131 } }, { "data": { "id": "9edf030e-8980-4942-a3d3-f1a24696061e", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.9191919191919192, "overlap_size": 91 } }, { "data": { "id": "829302ac-1451-4cfa-8cc9-88690c9ea9d8", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "eb1d3bcf-4842-469d-b080-15ffd6d86e52", "similarity_coefficient": 0.25862068965517243, "overlap_size": 90 } }, { "data": { "id": "451b2386-ae46-46d8-8f26-ad7dd04371e6", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.3135593220338983, "overlap_size": 37 } }, { "data": { "id": "28ae828d-4ea1-4799-abd5-26df316392d8", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78 } }, { "data": { "id": "79383810-ba5b-4759-9184-f9d632033e0f", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.43577981651376146, "overlap_size": 95 } }, { "data": { "id": "01c228f7-7e7f-4972-be9d-305605b3eee8", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.8275862068965517, "overlap_size": 96 } }, { "data": { "id": "0679ba96-aefd-4cf2-9e8a-f5e666b222be", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "similarity_coefficient": 0.7272727272727273, "overlap_size": 88 } }, { "data": { "id": "2502ba97-c197-4c73-8dcc-c64983c211c0", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "a966733a-44de-48c5-8959-37cec18be5cf", "similarity_coefficient": 0.8979591836734694, "overlap_size": 88 } }, { "data": { "id": "30475eb0-7e00-4557-ab0d-5f850fd2e2bf", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.704, "overlap_size": 88 } }, { "data": { "id": "b795dbdb-4837-48db-bf74-59af284c8bfd", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.3153153153153153, "overlap_size": 35 } }, { "data": { "id": "e7fb40e1-b03e-4a11-a4d1-a4ff864afab0", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.6343283582089553, "overlap_size": 85 } }, { "data": { "id": "032feb29-1d6e-492a-8885-6480a5160bb2", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.8979591836734694, "overlap_size": 88 } }, { "data": { "id": "8e0dc1c8-798a-45c7-9427-289bfa5b9141", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78 } }, { "data": { "id": "f4f846f3-5f4c-45bb-a33d-bc2d8b296094", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.41706161137440756, "overlap_size": 88 } }, { "data": { "id": "4206b073-95ea-47fb-b6ef-7e31bab8026a", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "611ff36d-7bbc-4322-bcdb-592441240039", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78 } }, { "data": { "id": "43994eb3-4369-4ffc-9a6c-bbe3b0b2516c", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "similarity_coefficient": 0.3025210084033613, "overlap_size": 36 } }, { "data": { "id": "b0939b6e-5e41-48b0-be94-3163a69a4f40", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "similarity_coefficient": 0.43781094527363185, "overlap_size": 88 } }, { "data": { "id": "63ff3969-04e2-4e7f-b79e-2b4c988d43e0", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78 } }, { "data": { "id": "e61feeb3-d430-46ab-a610-f89938622a6e", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78 } }, { "data": { "id": "ca54589a-5b02-42e7-94c7-e003bf810bb9", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78 } }, { "data": { "id": "5571d3da-ce62-4943-a22e-89bb553c653e", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.5432098765432098, "overlap_size": 88 } }, { "data": { "id": "b1e81f45-3eea-4424-a18d-79ee0fdc794a", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78 } }, { "data": { "id": "e5d7fbb0-30bb-41d2-a068-e3e02abac159", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78 } }, { "data": { "id": "1f1106bc-6569-4200-87f7-acb66caf6960", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "similarity_coefficient": 0.31092436974789917, "overlap_size": 37 } }, { "data": { "id": "4be42bf1-0da8-4076-ae33-bc4fac2e1f53", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78 } }, { "data": { "id": "789d987f-5e6a-43c6-bfa4-4b6203854e92", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.8, "overlap_size": 88 } }, { "data": { "id": "84422883-953a-4e50-9be0-63e1af2e17fe", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78 } }, { "data": { "id": "ca2bd48d-6fb7-4e57-9df3-f1ea7729660f", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78 } }, { "data": { "id": "41090981-1f76-401e-bb4d-6858c1e1bbd9", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.8275862068965517, "overlap_size": 96 } }, { "data": { "id": "533150ad-c967-48b5-8586-b9de860a11a0", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.7627118644067796, "overlap_size": 90 } }, { "data": { "id": "20a74a2a-e536-45ee-9ab9-0703c5a06ca0", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "similarity_coefficient": 0.7416666666666667, "overlap_size": 89 } }, { "data": { "id": "1fd3378c-f1f7-4010-8c73-f175e4a54c1a", "source": "84f6f0ed-9615-48ba-a629-667c8302de99", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78 } }, { "data": { "id": "cfffbb5f-9af8-4906-a78d-64c8335cbece", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.5476190476190477, "overlap_size": 46 } }, { "data": { "id": "404c6a57-cbe5-4007-a973-d779e9e0d01b", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.4791666666666667, "overlap_size": 46 } }, { "data": { "id": "8f60a382-ebd3-4f74-a3d2-471f44e434eb", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "similarity_coefficient": 0.4375, "overlap_size": 49 } }, { "data": { "id": "e2f59691-f8f5-40ee-b4bc-1167248ade78", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.46, "overlap_size": 46 } }, { "data": { "id": "0aaa1171-b3cf-48b2-9f60-7b8e408d6a9d", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.359375, "overlap_size": 46 } }, { "data": { "id": "bdc56b77-99f3-490d-8710-6dd9430f7d24", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.550561797752809, "overlap_size": 49 } }, { "data": { "id": "95733dcb-072d-4c42-abc1-1f7f51277034", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.5340909090909091, "overlap_size": 47 } }, { "data": { "id": "7bc94902-7144-4559-8d6f-cebbff531490", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.5411764705882353, "overlap_size": 46 } }, { "data": { "id": "9b34e1ad-7842-4572-8a1f-db8d54522c42", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.5595238095238095, "overlap_size": 47 } }, { "data": { "id": "40cd7787-69be-411e-b22f-60948761479f", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.5054945054945055, "overlap_size": 46 } }, { "data": { "id": "207cc8a7-70be-4b7b-9e27-90fd6e153b40", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "72fd7976-1a23-4642-833b-600f2c123e40", "similarity_coefficient": 0.5, "overlap_size": 43 } }, { "data": { "id": "10edc69a-c435-4ee4-b381-9215941285aa", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.7722772277227723, "overlap_size": 78 } }, { "data": { "id": "3b0611cd-92d3-430b-9087-875ad3dd7da9", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49 } }, { "data": { "id": "ba789778-6c94-4f40-aa0f-b55801795da1", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.5287356321839081, "overlap_size": 46 } }, { "data": { "id": "76e97301-d1af-4c74-8690-135f7ba0decc", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "similarity_coefficient": 0.42592592592592593, "overlap_size": 46 } }, { "data": { "id": "756a1468-47e1-446e-b95b-270e51fe697e", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.4845360824742268, "overlap_size": 47 } }, { "data": { "id": "acd809ac-9dde-41a6-93bd-925bbf0f7c7b", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.2857142857142857, "overlap_size": 46 } }, { "data": { "id": "54e56d9c-9095-45a8-8c96-e889dbb66bba", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.5476190476190477, "overlap_size": 46 } }, { "data": { "id": "d01dd7a2-31b3-4abd-88c4-b93bc05567a5", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.4883720930232558, "overlap_size": 42 } }, { "data": { "id": "1a15fc31-34fe-4c6b-9098-2ca96539fdc6", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.39166666666666666, "overlap_size": 47 } }, { "data": { "id": "9538c77c-e6a8-4e62-8348-74dd9ee83205", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.5333333333333333, "overlap_size": 48 } }, { "data": { "id": "2f072813-dca7-430b-8fe8-affb5ab24eb1", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.5862068965517241, "overlap_size": 51 } }, { "data": { "id": "4f2769d0-7d7c-42d3-8973-e59c9a30b930", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "similarity_coefficient": 0.41818181818181815, "overlap_size": 46 } }, { "data": { "id": "0a91c976-dcc0-436a-9f24-ca711717bfbd", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.4845360824742268, "overlap_size": 47 } }, { "data": { "id": "adbe0916-032d-4007-bda2-8692f23cadbc", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "similarity_coefficient": 0.5476190476190477, "overlap_size": 46 } }, { "data": { "id": "94444642-d639-4d30-acc4-397352f68a03", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "0d3bb231-67c2-46cb-93ed-80383c138af9", "similarity_coefficient": 0.3888888888888889, "overlap_size": 49 } }, { "data": { "id": "991452bb-7f2f-443e-a444-a3342b447d3e", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.26344086021505375, "overlap_size": 49 } }, { "data": { "id": "8e13aec5-0def-4441-b38d-c35c01ebdb23", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.5681818181818182, "overlap_size": 50 } }, { "data": { "id": "3560a4b6-8bfd-4792-af60-61c9769ddb5a", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49 } }, { "data": { "id": "04d4eada-de36-48a2-ad5d-84dc73b4d055", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.3424657534246575, "overlap_size": 50 } }, { "data": { "id": "14bbe36d-4e62-4f45-aaf8-7bba2e4d43a2", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.3898305084745763, "overlap_size": 46 } }, { "data": { "id": "866129fe-b0dd-4869-a448-d3cb2815c42b", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.3333333333333333, "overlap_size": 46 } }, { "data": { "id": "339a9e6a-32e0-47d7-aa30-147345e8abc2", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.4946236559139785, "overlap_size": 46 } }, { "data": { "id": "1ceaf187-986e-4d15-9507-e90da9bec57d", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.2926829268292683, "overlap_size": 24 } }, { "data": { "id": "802554c3-d84e-46d2-89f2-4f29defc2eaf", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.49, "overlap_size": 49 } }, { "data": { "id": "2878573e-0fe1-41e8-9cba-95e61e8e558b", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.26842105263157895, "overlap_size": 51 } }, { "data": { "id": "f2b1d1f4-bcde-4fd0-9b8b-5dff2f902912", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.4339622641509434, "overlap_size": 46 } }, { "data": { "id": "731a65ee-5931-46cc-8696-2076183e27a8", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.3511450381679389, "overlap_size": 46 } }, { "data": { "id": "12fa9857-6cc4-4ecf-ab56-0b4967914eb1", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "a6609db1-5756-4ff4-8409-5013d1a74f05", "similarity_coefficient": 0.30625, "overlap_size": 49 } }, { "data": { "id": "e461d230-cea5-4e56-9a94-e6798ed47874", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.4636363636363636, "overlap_size": 51 } }, { "data": { "id": "1addfad2-74fc-4352-a45c-253889ba1690", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.4339622641509434, "overlap_size": 46 } }, { "data": { "id": "d0f92daa-5bf4-4c75-9f14-d4a58c39003f", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.48598130841121495, "overlap_size": 52 } }, { "data": { "id": "95b7db54-6028-4b8e-8a67-4f4d82ea9291", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.5050505050505051, "overlap_size": 50 } }, { "data": { "id": "cdd84d3b-41b3-40be-ad2a-966f6df0cec5", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.5647058823529412, "overlap_size": 48 } }, { "data": { "id": "debf9c0a-43b1-42e4-b8ab-98e7dfd5b384", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.6666666666666666, "overlap_size": 52 } }, { "data": { "id": "08484e21-b82b-47c0-9ecd-c0fbbe4b4ccc", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49 } }, { "data": { "id": "1ef6c3ad-a028-4517-9dbd-65632322f5d0", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "5a10acec-c147-40a1-b4cc-fec014bf407b", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.40869565217391307, "overlap_size": 47 } }, { "data": { "id": "da532cb4-9032-489f-8809-0485da3bf076", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.2840909090909091, "overlap_size": 50 } }, { "data": { "id": "9cefc689-ccea-4b4e-bf38-0f4d58b7bb4b", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49 } }, { "data": { "id": "240582aa-5923-403e-a4fd-96ba68d59d69", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.3709677419354839, "overlap_size": 46 } }, { "data": { "id": "68cb2f7f-ac9f-48a5-af83-010803804f0a", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.5227272727272727, "overlap_size": 46 } }, { "data": { "id": "84563c88-2d06-4883-8bc6-c1312e29b5ee", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.4380952380952381, "overlap_size": 46 } }, { "data": { "id": "aae761a1-a8d4-47d0-878f-07e271028092", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.5609756097560976, "overlap_size": 46 } }, { "data": { "id": "3783766d-5c2f-4199-9dd0-202189f9d530", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.4298245614035088, "overlap_size": 49 } }, { "data": { "id": "cbff1b6f-2743-4da6-a39f-79ddecd63fc3", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.5348837209302325, "overlap_size": 46 } }, { "data": { "id": "f7ab010d-e4f1-4752-a9dc-9d7fb06b3436", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49 } }, { "data": { "id": "2fa043c4-3bf8-4e67-9848-bf066b589e34", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.4791666666666667, "overlap_size": 46 } }, { "data": { "id": "93c5494f-3b8d-4737-b95b-9479bc362f8d", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.3148148148148148, "overlap_size": 51 } }, { "data": { "id": "c40e1d5d-42e8-44b1-a4ae-024fa5392e87", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.4742268041237113, "overlap_size": 46 } }, { "data": { "id": "cd0b4f0f-f90a-4f0e-888c-539e6980b714", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.3770491803278688, "overlap_size": 46 } }, { "data": { "id": "33441b95-dc2b-4280-ba89-741bc91c7ec9", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.5476190476190477, "overlap_size": 46 } }, { "data": { "id": "ba3c424f-1d42-4a3e-8b3d-f9435f02afb2", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.5862068965517241, "overlap_size": 51 } }, { "data": { "id": "7fbb7aab-287d-4a1b-8032-1fba00e0555b", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.42201834862385323, "overlap_size": 46 } }, { "data": { "id": "218f2b21-46b2-4a73-b770-61a20fb94deb", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "1732e9b0-d067-4fb4-9670-5e323da79090", "similarity_coefficient": 0.3161290322580645, "overlap_size": 49 } }, { "data": { "id": "5cc74afd-3877-4402-a7f1-6cb649d25de2", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49 } }, { "data": { "id": "b9ccdb89-c973-4323-8b8d-9a53ecc2fe68", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.3194444444444444, "overlap_size": 46 } }, { "data": { "id": "ca3e2beb-ef67-467d-9235-437df8ef28c8", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.4180327868852459, "overlap_size": 51 } }, { "data": { "id": "33f478b8-cfce-4a3e-9eb6-b6a8d07ee802", "source": "f9954f17-1709-479e-8d22-403ed421f128", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.32666666666666666, "overlap_size": 49 } }, { "data": { "id": "ac9705fa-577f-4296-9fb7-a266979f8c3a", "source": "030cf588-cca1-4cdb-bb4d-b59de9b2e50d", "target": "a6f124e5-eec2-4060-984a-38b0e9119fd3", "similarity_coefficient": 0.4036697247706422, "overlap_size": 44 } }, { "data": { "id": "c4ee93d0-9091-40e7-816f-19d8ff84c562", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "66524e8d-6d2d-4452-825e-298e59b007c1", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "904648c2-551b-426e-815e-74ced2374458", "similarity_coefficient": 0.2538860103626943, "overlap_size": 49 } }, { "data": { "id": "9ea4bf7e-04bc-4a29-9f8d-c9558c6111bf", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49 } }, { "data": { "id": "0fcc1e9c-d4f7-40a2-85c5-7c1e5e3f0522", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49 } }, { "data": { "id": "e696c333-c755-43a6-bd8d-cab481c0bc4c", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.7222222222222222, "overlap_size": 52 } }, { "data": { "id": "7589a822-653c-4d62-9b9d-18ec51c30abc", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49 } }, { "data": { "id": "25d3d98a-5cbd-4b82-9519-a6e7e42072fb", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.25925925925925924, "overlap_size": 49 } }, { "data": { "id": "f807fdbc-da88-4d11-9439-bcfc00a0ecec", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.3898305084745763, "overlap_size": 46 } }, { "data": { "id": "5fb8a709-d0a2-44d2-9514-8898fdd703bb", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49 } }, { "data": { "id": "6263cfe4-30a8-4314-8940-ce4daa0a6e58", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.6712328767123288, "overlap_size": 49 } }, { "data": { "id": "5e7f04ec-9576-463d-bd83-f7b51a63440c", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.6081081081081081, "overlap_size": 45 } }, { "data": { "id": "f43fbedc-976b-4907-ad93-dd40ed4e5b24", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49 } }, { "data": { "id": "e0ddf3a7-e3e0-4364-84b7-b957eb9d7b53", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49 } }, { "data": { "id": "0da27c65-a55b-4f97-b512-513ae7ce41cb", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "72fd7976-1a23-4642-833b-600f2c123e40", "similarity_coefficient": 0.6, "overlap_size": 45 } }, { "data": { "id": "b13e2f6b-4a8e-4b9b-8782-17280d8bcc1f", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "84e65193-ce2f-46f1-8d51-881fc8258466", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49 } }, { "data": { "id": "f1c3e4b2-1854-4893-b0e1-0807e9603752", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.6125, "overlap_size": 49 } }, { "data": { "id": "839e9aec-9894-4e17-83ef-11eef461cee6", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49 } }, { "data": { "id": "057e6a6e-5234-4dd2-926b-53b0b069a573", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.4224137931034483, "overlap_size": 49 } }, { "data": { "id": "dd909141-e8f0-4040-9c7f-54d87f6b2ed4", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "d18cc35c-315a-4f3f-88a1-62e2e905c04e", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.48514851485148514, "overlap_size": 49 } }, { "data": { "id": "f5a4aec4-ac07-44a7-b806-3fcd6c8513fd", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.6125, "overlap_size": 49 } }, { "data": { "id": "302b1fa3-f07e-4dbd-9a79-077fb027674d", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.7, "overlap_size": 49 } }, { "data": { "id": "f7c7d6f5-2ce1-4401-bccd-9744b9a25dd1", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49 } }, { "data": { "id": "40674912-39f1-4692-8dfd-65e16052740a", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49 } }, { "data": { "id": "e10a4bb3-59c8-4dbf-8637-44b0bea9b5d9", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49 } }, { "data": { "id": "6d71172c-e0eb-4d7f-b15a-3981e6e3b35e", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.5287356321839081, "overlap_size": 46 } }, { "data": { "id": "349cd120-fd5c-4d2a-8f56-89066217a991", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.4782608695652174, "overlap_size": 55 } }, { "data": { "id": "68a4d179-d704-4b62-86d1-f7f661f9c7f4", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49 } }, { "data": { "id": "5379ab51-16c9-4816-9aee-5899fc3e912c", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.3026315789473684, "overlap_size": 46 } }, { "data": { "id": "12d1df5d-6ee5-414e-bd8e-db3339b4b77e", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.2916666666666667, "overlap_size": 49 } }, { "data": { "id": "f7fcc3ae-bae5-4606-8b70-7ac39f7e06a8", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.4083333333333333, "overlap_size": 49 } }, { "data": { "id": "dc3bacae-7f39-4fae-bc35-1758f2ca7871", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.3475177304964539, "overlap_size": 49 } }, { "data": { "id": "98103a61-b596-417c-8741-ce17f3b3ae41", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.620253164556962, "overlap_size": 49 } }, { "data": { "id": "d13612dc-0490-43d1-ae5e-7aa9adb415d1", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "1732e9b0-d067-4fb4-9670-5e323da79090", "similarity_coefficient": 0.3356164383561644, "overlap_size": 49 } }, { "data": { "id": "316dc8e0-8b5c-49c4-8d75-46c07f447545", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.34074074074074073, "overlap_size": 46 } }, { "data": { "id": "8a17111e-e4ff-4bcc-a796-0fa651b6576a", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.4563106796116505, "overlap_size": 47 } }, { "data": { "id": "843616d4-1757-4790-acea-9ba4059e2f00", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.6125, "overlap_size": 49 } }, { "data": { "id": "2c910030-f6f2-4e53-a432-ef741a9332ad", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.6712328767123288, "overlap_size": 49 } }, { "data": { "id": "0b208a18-ceec-4938-9bf3-2721dca57fbd", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "a6609db1-5756-4ff4-8409-5013d1a74f05", "similarity_coefficient": 0.32450331125827814, "overlap_size": 49 } }, { "data": { "id": "597e5f34-c12c-4a4d-8b40-8b69b3c3ac3c", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.5897435897435898, "overlap_size": 46 } }, { "data": { "id": "461a1eee-7dcd-4957-b177-c3b40ac538ce", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.5212765957446809, "overlap_size": 49 } }, { "data": { "id": "60d40164-c1d2-4497-9731-27f1dbc56f10", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49 } }, { "data": { "id": "fcb0fd46-6f04-43a8-ac24-16c07b9111db", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.5555555555555556, "overlap_size": 50 } }, { "data": { "id": "adae7bfa-cece-4b4d-bbb0-578e487cf976", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "f9954f17-1709-479e-8d22-403ed421f128", "similarity_coefficient": 0.45544554455445546, "overlap_size": 46 } }, { "data": { "id": "328b67bf-bb02-4d56-9bbf-46643eba5372", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.6266666666666667, "overlap_size": 47 } }, { "data": { "id": "47ebb438-1633-4bf0-b452-7dc0275b652c", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.4117647058823529, "overlap_size": 49 } }, { "data": { "id": "5a3ef1a4-2be3-4812-b8ae-5f8d6a8d22a6", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49 } }, { "data": { "id": "8c48280b-08f5-4fce-bfd4-454c756b996a", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49 } }, { "data": { "id": "1307660c-e6a2-4057-9703-5b099b3cb1db", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "631d3a86-0947-4b75-b2f6-8519bd7cccda", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "50f60e23-aa2f-4fbe-ad21-c28742794b71", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.6133333333333333, "overlap_size": 46 } }, { "data": { "id": "feba2197-c116-421e-a659-d71f29872d44", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49 } }, { "data": { "id": "c12fd6e6-e29c-458b-bc33-b5b9af48d77c", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.3161290322580645, "overlap_size": 49 } }, { "data": { "id": "6f82783c-d5b0-4709-bd26-3157b95873da", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "0d3bb231-67c2-46cb-93ed-80383c138af9", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49 } }, { "data": { "id": "66dc2ac1-eb9a-43f1-84bc-679a14c7cfea", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "similarity_coefficient": 0.5, "overlap_size": 49 } }, { "data": { "id": "c25957a5-c1b1-42b5-8567-16cce0ed8efc", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.5542168674698795, "overlap_size": 46 } }, { "data": { "id": "4d2374e0-4b9d-4e7b-befa-9de97032fda5", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.3472222222222222, "overlap_size": 25 } }, { "data": { "id": "dd63657d-8c87-4983-927e-d15dec55627d", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.28888888888888886, "overlap_size": 52 } }, { "data": { "id": "234f8088-6cfa-487f-a1f3-9b14cc295ef8", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "690d048a-ce8c-4e43-9ab0-ed9976703ad9", "similarity_coefficient": 0.27230046948356806, "overlap_size": 58 } }, { "data": { "id": "2352ecb8-86ce-4635-a118-dced9669fe5d", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49 } }, { "data": { "id": "1098bf10-1d67-48a7-a2c4-82f80afc445f", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.49, "overlap_size": 49 } }, { "data": { "id": "5c43acfd-607f-4396-9d70-43b2cf6e83ac", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.3888888888888889, "overlap_size": 49 } }, { "data": { "id": "1f646901-2902-4a87-9703-5c6d80612536", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49 } }, { "data": { "id": "337ff91b-ae28-4c55-80ed-d18efced91e8", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.39552238805970147, "overlap_size": 53 } }, { "data": { "id": "c4292d0a-7089-4ae8-bbd5-8e6f389e9e59", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.47619047619047616, "overlap_size": 50 } }, { "data": { "id": "18e8cd63-6eec-4e3d-aa4f-43334913b50c", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49 } }, { "data": { "id": "11623421-9422-4047-96b4-8af137357855", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.4375, "overlap_size": 49 } }, { "data": { "id": "b1dc46f3-d669-48a2-a99f-deef18985d73", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.620253164556962, "overlap_size": 49 } }, { "data": { "id": "dca36189-7810-40c2-a862-7e8d81076f83", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.6125, "overlap_size": 49 } }, { "data": { "id": "b9f8ec90-2a17-4d66-8139-3e4079c949fe", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49 } }, { "data": { "id": "40de30f6-1afe-4205-9475-f4d78c043077", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.2768361581920904, "overlap_size": 49 } }, { "data": { "id": "c297e52a-d26d-4de2-8367-15b2d5e1e59c", "source": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.5212765957446809, "overlap_size": 49 } }, { "data": { "id": "ee58afa2-1f40-448f-b822-e970d8d92b0a", "source": "4ecaabe1-58fe-49d0-8365-8bbb34cc004e", "target": "b15aeda3-04c6-41d3-b5bf-b302b6105dc0", "similarity_coefficient": 0.30528586839266453, "overlap_size": 283 } }, { "data": { "id": "85eeb023-2cf9-4031-8970-7657bce9cabd", "source": "4ecaabe1-58fe-49d0-8365-8bbb34cc004e", "target": "03e967ee-3f89-4cc6-8fa9-2f62ca71e40f", "similarity_coefficient": 0.6113074204946997, "overlap_size": 173 } }, { "data": { "id": "33358ece-bfd6-4e4b-a22f-34237647d835", "source": "4ecaabe1-58fe-49d0-8365-8bbb34cc004e", "target": "7db9d43a-1d18-4be6-8d7e-f5e096178a4f", "similarity_coefficient": 0.30528586839266453, "overlap_size": 283 } }, { "data": { "id": "67c8b0b3-60cf-4a81-8b85-35e4bb4e0c64", "source": "4ecaabe1-58fe-49d0-8365-8bbb34cc004e", "target": "1aa8950f-31f2-46ef-b4b1-b4c72c492067", "similarity_coefficient": 0.2579505300353357, "overlap_size": 73 } }, { "data": { "id": "52724e8e-e6bd-4926-8806-6dc75d4ce0ef", "source": "4ecaabe1-58fe-49d0-8365-8bbb34cc004e", "target": "ca74dbd7-f987-4bb8-81f5-3c8fef7fee7c", "similarity_coefficient": 0.2729591836734694, "overlap_size": 214 } }, { "data": { "id": "41172f08-7b85-4641-9a5c-5d4c40c2e3ee", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.7128712871287128, "overlap_size": 72 } }, { "data": { "id": "783e9e61-c835-4ee0-a8e7-a65184be2489", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.29714285714285715, "overlap_size": 52 } }, { "data": { "id": "16077cf6-b5a1-4847-8fd4-aa10cb5d308e", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "080d7999-edb3-459d-97a1-0b0c699425b5", "similarity_coefficient": 0.25882352941176473, "overlap_size": 66 } }, { "data": { "id": "f58e6a95-d98d-4eeb-bb27-c4637a29548c", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.45081967213114754, "overlap_size": 55 } }, { "data": { "id": "71cae275-0a4f-4ad3-aff8-c6932145998d", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.5510204081632653, "overlap_size": 54 } }, { "data": { "id": "88c8327a-74e8-4027-8beb-e0c8558caf8d", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.5859872611464968, "overlap_size": 92 } }, { "data": { "id": "7ba9bc75-e48d-459e-8851-e689f5b1c2f6", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "14654f3b-2789-4eed-a644-a2a654fa934b", "similarity_coefficient": 0.25, "overlap_size": 55 } }, { "data": { "id": "f45220d7-78f8-49aa-96f4-6fdb4d51a624", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.4639175257731959, "overlap_size": 45 } }, { "data": { "id": "f189ab73-11fa-4f16-984e-1681b65199b3", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.3288590604026846, "overlap_size": 49 } }, { "data": { "id": "0f13c53b-02ed-4f20-ad13-af86f2acd9d5", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49 } }, { "data": { "id": "34fcacac-0312-40a5-b21d-4b55ceecdf1e", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.25229357798165136, "overlap_size": 55 } }, { "data": { "id": "6ca296bc-06b0-460f-a65a-9b8a10a0409f", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49 } }, { "data": { "id": "1702d756-8647-4c2a-bb6f-19cc808c2315", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49 } }, { "data": { "id": "190fafb8-be05-4855-8f13-eb27679b995c", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.4818181818181818, "overlap_size": 53 } }, { "data": { "id": "e02db3e0-f5c8-493f-8e4f-bdd29bb5e5fe", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.34507042253521125, "overlap_size": 49 } }, { "data": { "id": "a6b6b15d-4ea4-4fd6-9d04-d3c39f35a637", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "0d3bb231-67c2-46cb-93ed-80383c138af9", "similarity_coefficient": 0.3795620437956204, "overlap_size": 52 } }, { "data": { "id": "85bfc14e-9ad9-4b8c-bf47-000b37533467", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.6938775510204082, "overlap_size": 68 } }, { "data": { "id": "b1ac7254-01ad-44ea-8762-43ff5f9dd409", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.4766355140186916, "overlap_size": 51 } }, { "data": { "id": "b20498b1-c239-48c5-a863-83e600e1dace", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "72fd7976-1a23-4642-833b-600f2c123e40", "similarity_coefficient": 0.45918367346938777, "overlap_size": 45 } }, { "data": { "id": "b61b8df0-1611-4986-85a7-1730effbac8f", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.7717391304347826, "overlap_size": 71 } }, { "data": { "id": "239b9ade-4233-4eb4-a02e-8cbf8ee3624d", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.504950495049505, "overlap_size": 51 } }, { "data": { "id": "33dc492b-1337-4f0f-b49e-4f68a77a2cdc", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49 } }, { "data": { "id": "b33e8642-2025-4583-ac44-2f5136d313aa", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.35251798561151076, "overlap_size": 49 } }, { "data": { "id": "6855f7ec-62f5-49ee-9a02-fc96f93a18d1", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49 } }, { "data": { "id": "4a486aa0-dfb0-40ae-adcf-99ee5fa75462", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.7010309278350515, "overlap_size": 68 } }, { "data": { "id": "f1390b3b-27fb-4183-aa8d-d8941bae295f", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.6938775510204082, "overlap_size": 68 } }, { "data": { "id": "4c9f8f23-3dfc-4fd6-8615-b25e777fdbe2", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49 } }, { "data": { "id": "884b0742-589f-46c3-abeb-a6535720041f", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "similarity_coefficient": 0.68, "overlap_size": 68 } }, { "data": { "id": "234b0841-04a4-4fee-8990-c247275e87a6", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.4214876033057851, "overlap_size": 51 } }, { "data": { "id": "f7ea0935-3690-45b8-b98a-c76fc88b29f4", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "similarity_coefficient": 0.4375, "overlap_size": 49 } }, { "data": { "id": "3000715c-43cb-437c-86dd-5c12399047d4", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49 } }, { "data": { "id": "d675dfb8-17f6-464c-8481-cf10f55e6a91", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.3384615384615385, "overlap_size": 66 } }, { "data": { "id": "9512b09f-8daf-4b1f-86d7-1590e642dccf", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49 } }, { "data": { "id": "eb69c4da-aeaf-4fa5-89b4-2d592439c9a9", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.51, "overlap_size": 51 } }, { "data": { "id": "8e938288-a201-4b50-af73-db25e5701f26", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.6822429906542056, "overlap_size": 73 } }, { "data": { "id": "77311e4f-e6a7-4557-8fc2-7e799d6610f4", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.362962962962963, "overlap_size": 49 } }, { "data": { "id": "1cc96825-59fe-42a7-857d-1eac88038edb", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.3968253968253968, "overlap_size": 50 } }, { "data": { "id": "558010e4-946c-4dab-b3bd-51961845013c", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "fb172c5a-c242-43e8-98a4-bc060890f253", "similarity_coefficient": 0.3046594982078853, "overlap_size": 85 } }, { "data": { "id": "842a3509-1f26-4eca-9cc7-afa6bafd77e6", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "similarity_coefficient": 0.4462809917355372, "overlap_size": 54 } }, { "data": { "id": "f768fe2e-f189-49fa-8123-fc028c3aaf98", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.52, "overlap_size": 52 } }, { "data": { "id": "4e0d02d5-b20b-4ac7-86b5-8a0cc838f4ea", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49 } }, { "data": { "id": "e48ae60d-b312-4a3a-8b20-fb9d4b361faf", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.5644171779141104, "overlap_size": 92 } }, { "data": { "id": "317b372f-503a-4c97-b3c2-ba7106c09946", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "similarity_coefficient": 0.4049586776859504, "overlap_size": 49 } }, { "data": { "id": "82b13a5c-4851-408b-91f7-126d9db8fa48", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.3684210526315789, "overlap_size": 49 } }, { "data": { "id": "3eeff1c3-b8ed-4fe3-9c0e-cac9723b701a", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "1732e9b0-d067-4fb4-9670-5e323da79090", "similarity_coefficient": 0.30538922155688625, "overlap_size": 51 } }, { "data": { "id": "91bd259d-e950-43e1-b4d3-3b87d74866bc", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49 } }, { "data": { "id": "891f86f9-60ab-4b4a-9d94-d16588d13ef4", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.2631578947368421, "overlap_size": 25 } }, { "data": { "id": "4cd96496-33ca-4b3a-9f37-09185cd701c9", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.494949494949495, "overlap_size": 49 } }, { "data": { "id": "8bc044a4-6718-4b0a-97ff-1d3f61d4fd76", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.52, "overlap_size": 52 } }, { "data": { "id": "a09dab17-d21b-4cf3-9c85-7a26d790b773", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.5263157894736842, "overlap_size": 50 } }, { "data": { "id": "4a93c0dc-f417-49a7-99df-ac422955b10d", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.3375796178343949, "overlap_size": 53 } }, { "data": { "id": "564b301f-74c0-40dd-b506-4da4d33f3a65", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.7021276595744681, "overlap_size": 66 } }, { "data": { "id": "6dd9dbb7-706f-44f3-a444-773a32338439", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.6732673267326733, "overlap_size": 68 } }, { "data": { "id": "4905c48d-7509-47c5-9340-797182412222", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.7603305785123967, "overlap_size": 92 } }, { "data": { "id": "460bb515-a61f-4ebd-bba9-01f95d65cb25", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.3262411347517731, "overlap_size": 46 } }, { "data": { "id": "5ab06274-e20f-4ca1-8f9c-924142fc7179", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49 } }, { "data": { "id": "a8dfa422-9467-4d01-9d1a-d36eeb5ad52f", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49 } }, { "data": { "id": "1a109a0c-e3b6-4289-88e6-8b4a1b70744c", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49 } }, { "data": { "id": "d9f75ea7-5cec-48bc-9a54-01d836661050", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49 } }, { "data": { "id": "1bef3ba5-2dc2-4ea8-810b-a87fc69d13b1", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.45544554455445546, "overlap_size": 46 } }, { "data": { "id": "d10c6a0c-2fd6-49d0-9e18-d20d57886b24", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.49, "overlap_size": 49 } }, { "data": { "id": "1e72afe1-8f06-4534-8989-aa54740181e4", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "a6609db1-5756-4ff4-8409-5013d1a74f05", "similarity_coefficient": 0.45751633986928103, "overlap_size": 70 } }, { "data": { "id": "1a9bb516-a96a-4d6c-b96f-99a0e8324c42", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.42276422764227645, "overlap_size": 52 } }, { "data": { "id": "7c9cd9e0-3cb3-4cd1-8680-7d3973a60d42", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.6451612903225806, "overlap_size": 80 } }, { "data": { "id": "6d268b2b-e124-4913-8f25-594d40d3e649", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.52, "overlap_size": 52 } }, { "data": { "id": "acd8b3c4-50e8-4db7-9850-240389ede224", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.5, "overlap_size": 49 } }, { "data": { "id": "9a8c4c26-85d8-4e36-944f-dfb331f2f7b7", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "f9954f17-1709-479e-8d22-403ed421f128", "similarity_coefficient": 0.4049586776859504, "overlap_size": 49 } }, { "data": { "id": "a765b1a4-a75c-4df8-a08d-86426b232f26", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.3712121212121212, "overlap_size": 49 } }, { "data": { "id": "0493b354-4678-4535-bbe0-cd9811cb90a8", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.3617021276595745, "overlap_size": 51 } }, { "data": { "id": "f577cf8b-3720-40ca-b8e5-6faddec76b7d", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49 } }, { "data": { "id": "e170d6ae-9e81-4cbf-8465-0cbe528cb6b8", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.5192307692307693, "overlap_size": 54 } }, { "data": { "id": "28151e8e-0a12-4227-a179-b012fb5423ed", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.37857142857142856, "overlap_size": 53 } }, { "data": { "id": "3b11aef0-719d-4a29-a74b-171b139a24dd", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.5473684210526316, "overlap_size": 52 } }, { "data": { "id": "277b2e18-a988-4b21-b4ab-463272eb2e07", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.6956521739130435, "overlap_size": 64 } }, { "data": { "id": "8027dfd0-d6f5-4344-9d0a-289286a9af0f", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.4117647058823529, "overlap_size": 70 } }, { "data": { "id": "4ccb0cad-e425-4ca1-ba06-9e40cd6e2048", "source": "dec11a24-597a-4f26-846a-eed2d73e5b96", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.5785714285714286, "overlap_size": 81 } }, { "data": { "id": "9a9db1f6-40c6-41c8-a0e6-258d9f18e85b", "source": "494ff507-5e65-4be7-8344-3f8a80c7d83e", "target": "604d62c7-f4cb-4289-a549-64f0bccf5d62", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "2c152563-691e-41bd-9d65-6dba38a69f3a", "source": "494ff507-5e65-4be7-8344-3f8a80c7d83e", "target": "8f2732b7-bdc9-40f5-8845-a8d9beca3b22", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "93e290a3-dd69-4503-b854-259acec290ea", "source": "494ff507-5e65-4be7-8344-3f8a80c7d83e", "target": "053565f9-6e2e-4c4a-8773-19c2e912501a", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "b53f294b-6441-4267-8367-93cb550ba463", "source": "494ff507-5e65-4be7-8344-3f8a80c7d83e", "target": "b6922b98-9220-46d4-a7fc-b265074130b3", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "7906274e-c8e1-4012-b749-2ee08ffefc6d", "source": "494ff507-5e65-4be7-8344-3f8a80c7d83e", "target": "e4351080-e123-4e93-98a7-49cdd09e0c1c", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "3989890f-dfb9-4f18-8a14-31d1ed10f42a", "source": "494ff507-5e65-4be7-8344-3f8a80c7d83e", "target": "ba7799c9-3170-4d60-b811-31eae5312965", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "7c5a3b22-42df-4e0a-a405-63c7150aca5e", "source": "494ff507-5e65-4be7-8344-3f8a80c7d83e", "target": "9e433294-82cc-456b-bdd9-d76c265b11a9", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "24a7bdd4-dd5d-4fb9-a521-e5e9ecda3ad5", "source": "494ff507-5e65-4be7-8344-3f8a80c7d83e", "target": "3baa2895-d41a-4b91-925b-906637d521ee", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "e062c239-16cb-4719-8a92-4d49154d3fe2", "source": "494ff507-5e65-4be7-8344-3f8a80c7d83e", "target": "3655cbeb-e303-47c6-b442-f4039b25d644", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "86219166-9d2e-4598-8b63-f5ce1029d47d", "source": "494ff507-5e65-4be7-8344-3f8a80c7d83e", "target": "acb95097-45dd-4bf4-aa47-a787e38591d4", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "9b1d2194-5516-43c6-a73f-03869a8cda5b", "source": "494ff507-5e65-4be7-8344-3f8a80c7d83e", "target": "cddebf8c-4f9a-4ec6-b7c9-83312c9d1c51", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "6e1052cd-9f61-4ca6-84fe-3f9b03d7630d", "source": "c6751f66-b231-4a0d-84d6-e53835fd242d", "target": "a8d12184-7c64-42ff-aa0d-40a047927f81", "similarity_coefficient": 0.26706827309236947, "overlap_size": 133 } }, { "data": { "id": "7db9a59a-da82-4cde-8776-47528001701e", "source": "c6751f66-b231-4a0d-84d6-e53835fd242d", "target": "b15aeda3-04c6-41d3-b5bf-b302b6105dc0", "similarity_coefficient": 0.5167206040992449, "overlap_size": 479 } }, { "data": { "id": "7f62f012-caf0-47d7-9bec-af383467f339", "source": "c6751f66-b231-4a0d-84d6-e53835fd242d", "target": "c167249a-c4f0-4f9e-9508-38b203d5aa6f", "similarity_coefficient": 0.38413361169102295, "overlap_size": 184 } }, { "data": { "id": "bfcf2812-a2bd-4220-b737-4a84e197fed0", "source": "c6751f66-b231-4a0d-84d6-e53835fd242d", "target": "70dc2a0f-dec6-4de4-b504-61c65a84c8d7", "similarity_coefficient": 0.2755741127348643, "overlap_size": 132 } }, { "data": { "id": "68b68d7f-ae96-474d-bbcd-962a79cca705", "source": "c6751f66-b231-4a0d-84d6-e53835fd242d", "target": "d45a77c2-ed42-4c4f-8e17-002f798690b8", "similarity_coefficient": 0.2665799739921977, "overlap_size": 205 } }, { "data": { "id": "f50692f5-ef70-4283-8b5e-1a6871aac21d", "source": "c6751f66-b231-4a0d-84d6-e53835fd242d", "target": "ca74dbd7-f987-4bb8-81f5-3c8fef7fee7c", "similarity_coefficient": 0.3867595818815331, "overlap_size": 333 } }, { "data": { "id": "6187f573-248b-438d-9adc-9ac3e0ffd92d", "source": "c6751f66-b231-4a0d-84d6-e53835fd242d", "target": "23948dfa-a18c-440c-b1eb-1c4b5a4a17c4", "similarity_coefficient": 0.348643006263048, "overlap_size": 167 } }, { "data": { "id": "0e73362a-9360-421c-a5c0-d97bc7696739", "source": "c6751f66-b231-4a0d-84d6-e53835fd242d", "target": "7db9d43a-1d18-4be6-8d7e-f5e096178a4f", "similarity_coefficient": 0.5167206040992449, "overlap_size": 479 } }, { "data": { "id": "06238a1f-3f62-4986-a131-4279f3669818", "source": "c6751f66-b231-4a0d-84d6-e53835fd242d", "target": "d8273106-b591-4851-a7f4-23759825900c", "similarity_coefficient": 0.6033402922755741, "overlap_size": 289 } }, { "data": { "id": "e4d833c6-1b9e-49a5-a05f-4860fb910159", "source": "c6751f66-b231-4a0d-84d6-e53835fd242d", "target": "334a9d67-6aaf-4a3d-b324-1704275051be", "similarity_coefficient": 0.32280701754385965, "overlap_size": 184 } }, { "data": { "id": "5ce658f2-d01d-480a-a7ea-92b1eff7c1c7", "source": "be19f28b-2fa2-44f2-9027-54a576cb80e0", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.3392226148409894, "overlap_size": 96 } }, { "data": { "id": "8e331eeb-d643-4aab-81bb-4c9e407be909", "source": "d67f14aa-83cb-473a-bc1c-fd8dc7773c23", "target": "6dd711a9-bdb8-4b44-95dc-5ec87cc4e384", "similarity_coefficient": 0.7438867438867439, "overlap_size": 578 } }, { "data": { "id": "d136957d-4df5-46f8-9608-d05ec630f6ae", "source": "d67f14aa-83cb-473a-bc1c-fd8dc7773c23", "target": "18ec1eae-95a2-49dc-9ce4-3dc89a422633", "similarity_coefficient": 0.6133518776077886, "overlap_size": 441 } }, { "data": { "id": "6785fd79-e58d-456b-840e-3d39883d7544", "source": "d67f14aa-83cb-473a-bc1c-fd8dc7773c23", "target": "6460295d-3d84-4fe7-abbe-c5f824a3523c", "similarity_coefficient": 0.7335640138408305, "overlap_size": 424 } }, { "data": { "id": "ced81db3-3640-41b2-b94c-9da71fee21d7", "source": "7e85afe0-6be4-4292-9d6b-128bb3b0c3ca", "target": "a31fb885-5d37-4b2b-a6e5-41936b5cecc1", "similarity_coefficient": 0.30402010050251255, "overlap_size": 242 } }, { "data": { "id": "aef98b3f-169f-4778-bcc5-14599a697b6d", "source": "7e85afe0-6be4-4292-9d6b-128bb3b0c3ca", "target": "8d189e15-c192-4005-a56b-ee419c6a4796", "similarity_coefficient": 0.3041301627033792, "overlap_size": 243 } }, { "data": { "id": "01c5a3f1-ffa0-4c05-9641-4faa0fb9f8a1", "source": "7e85afe0-6be4-4292-9d6b-128bb3b0c3ca", "target": "bb4d7b94-8c3a-4684-b925-2e7c7e698b63", "similarity_coefficient": 0.30402010050251255, "overlap_size": 242 } }, { "data": { "id": "81fc1bcf-1f79-46ad-bfed-5e8eb226d140", "source": "7e85afe0-6be4-4292-9d6b-128bb3b0c3ca", "target": "5f454720-e0b8-4c7f-88b3-b288c0e8b59e", "similarity_coefficient": 0.27121212121212124, "overlap_size": 179 } }, { "data": { "id": "da26ffd4-4bee-464b-839b-d2a95dcbe872", "source": "7e85afe0-6be4-4292-9d6b-128bb3b0c3ca", "target": "f97b81a8-1862-43e0-8494-7bbe4766e167", "similarity_coefficient": 0.28484848484848485, "overlap_size": 188 } }, { "data": { "id": "2c7f2bd0-5f74-439e-b589-6a366ca1833e", "source": "b71dd8da-9ecc-4656-9fe5-fd51978cc016", "target": "b570f307-7c80-461e-9c1b-ff264f6ff8af", "similarity_coefficient": 0.27113702623906705, "overlap_size": 93 } }, { "data": { "id": "58b05606-7a98-4abd-9883-44e93f0039a0", "source": "b71dd8da-9ecc-4656-9fe5-fd51978cc016", "target": "3721be01-7fa4-400f-b4f5-9bca4e773261", "similarity_coefficient": 0.2527881040892193, "overlap_size": 68 } }, { "data": { "id": "aea571ce-5bc1-4c3a-b3d6-e0aea24cd77f", "source": "b71dd8da-9ecc-4656-9fe5-fd51978cc016", "target": "3c6595b7-4300-40c2-9b8b-be0dea463aa6", "similarity_coefficient": 0.2582897033158813, "overlap_size": 148 } }, { "data": { "id": "2ababa54-afde-4d3d-9513-216a11e31844", "source": "b71dd8da-9ecc-4656-9fe5-fd51978cc016", "target": "db958270-8c68-47a1-8245-d553c49a126f", "similarity_coefficient": 0.2727272727272727, "overlap_size": 93 } }, { "data": { "id": "380a68cc-bdc0-45c7-9461-bf6783fd0fee", "source": "b71dd8da-9ecc-4656-9fe5-fd51978cc016", "target": "7861fd51-2caf-44e2-b4cb-7e64f8c0b51f", "similarity_coefficient": 0.2619047619047619, "overlap_size": 66 } }, { "data": { "id": "0b65c61c-8220-425b-b887-1711d27401c6", "source": "b71dd8da-9ecc-4656-9fe5-fd51978cc016", "target": "916b518e-1a95-45db-be11-8e45704c11f1", "similarity_coefficient": 0.6081081081081081, "overlap_size": 90 } }, { "data": { "id": "7e8fb2ec-52b6-4129-8742-5df70ba6a5bd", "source": "b71dd8da-9ecc-4656-9fe5-fd51978cc016", "target": "cbaabd94-0052-42ac-986a-766c1c57b30d", "similarity_coefficient": 0.5025380710659898, "overlap_size": 99 } }, { "data": { "id": "9e3cc1fd-113e-4753-af45-acd4b512c4c8", "source": "b71dd8da-9ecc-4656-9fe5-fd51978cc016", "target": "750e524e-6f52-4983-9819-5b723c8afe66", "similarity_coefficient": 0.26294820717131473, "overlap_size": 66 } }, { "data": { "id": "69dae972-51d9-4bac-836d-334c734d3d1d", "source": "b71dd8da-9ecc-4656-9fe5-fd51978cc016", "target": "5229abb8-d817-4b27-8b54-4679f2c8353e", "similarity_coefficient": 0.41304347826086957, "overlap_size": 133 } }, { "data": { "id": "2bb2f6d1-f40f-4600-b6aa-36f5609fafc9", "source": "b9903a36-5f4a-4a44-87b7-51c635ad9614", "target": "8d39f70d-6be5-4dff-a05d-b2c90d4628fb", "similarity_coefficient": 0.6547619047619048, "overlap_size": 55 } }, { "data": { "id": "b544b9fd-664f-4dd4-98ad-937147995b80", "source": "b9903a36-5f4a-4a44-87b7-51c635ad9614", "target": "edd3d72d-8319-4a8c-9fb8-28083330ae5b", "similarity_coefficient": 0.5675675675675675, "overlap_size": 84 } }, { "data": { "id": "cf7c55fe-9ec3-4877-b2f1-d38750208092", "source": "b9903a36-5f4a-4a44-87b7-51c635ad9614", "target": "1b5495a8-ad7e-41a8-b4ee-2181cd3e7095", "similarity_coefficient": 0.509090909090909, "overlap_size": 56 } }, { "data": { "id": "f4fb248b-387f-4308-a793-7a7dc5bab25a", "source": "316b650d-9339-4038-8610-5d7ba652dfb4", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.27702702702702703, "overlap_size": 123 } }, { "data": { "id": "7fd1769b-8dc1-4ad4-9b6a-e1b56f2b954e", "source": "316b650d-9339-4038-8610-5d7ba652dfb4", "target": "eb1d3bcf-4842-469d-b080-15ffd6d86e52", "similarity_coefficient": 0.7702702702702703, "overlap_size": 342 } }, { "data": { "id": "cca7beaa-e5f1-446d-ad1e-aa342cb06c6a", "source": "993c9258-d400-4771-a40c-724ec7790ee4", "target": "a8e70dca-3a69-4116-8443-2107e98d703e", "similarity_coefficient": 0.8205128205128205, "overlap_size": 32 } }, { "data": { "id": "b5411609-66d8-42ee-8523-a395ea3b247f", "source": "993c9258-d400-4771-a40c-724ec7790ee4", "target": "b5d08fd6-8c62-4f6b-b3ea-2c9316d7a8b1", "similarity_coefficient": 0.8125, "overlap_size": 39 } }, { "data": { "id": "7da32be6-cf92-4f48-88f3-d0a5d415d012", "source": "68aa11aa-cfcd-4778-ba73-b42dff5cc58d", "target": "58ef2adb-271d-407d-809d-d4fd53a316f0", "similarity_coefficient": 0.7073170731707317, "overlap_size": 58 } }, { "data": { "id": "3f636444-d28a-48f5-94af-2abf822ce336", "source": "68aa11aa-cfcd-4778-ba73-b42dff5cc58d", "target": "84484178-7a35-4a40-a193-fc724feb529e", "similarity_coefficient": 0.39655172413793105, "overlap_size": 23 } }, { "data": { "id": "31ec1173-d78f-4fec-b5c7-2223168f93e1", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "0e3fe5b6-a1c7-4450-872c-62c31945722b", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.3561643835616438, "overlap_size": 78 } }, { "data": { "id": "9f7d4b26-54d0-4f86-af1f-4f3c1ad1b23f", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "091df8a9-ec67-477e-b0e7-039931a043e3", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "b928d080-2371-4997-a6d5-c1b59b033caa", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "09ce42ae-75fc-49d2-9804-d9ca1152ea1c", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "8b7a9511-1c37-4393-a343-166f2c7f5431", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "84dcac61-b1e1-4c54-ba94-bcd9808a5b74", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "5c736be8-621e-48c7-83f8-77ad11c5674f", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "611ff36d-7bbc-4322-bcdb-592441240039", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "b494282b-2a9c-451f-9a6f-4a0bbafd26ef", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.6370967741935484, "overlap_size": 79 } }, { "data": { "id": "02f7ec94-a3ec-458c-817f-80a652bb0660", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "8446b4cd-20ff-4c34-b651-0a88db24dc0a", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "dd18cbd7-d151-45ad-8fdf-848990498e57", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "538edb9f-eb49-4e62-946c-294ca4c7eb0b", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "b906ae1c-8a4a-46f8-a248-e3b2eed14e1a", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78 } }, { "data": { "id": "87ee27cf-63d0-4de6-a3fd-30a9a0470f5e", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "a966733a-44de-48c5-8959-37cec18be5cf", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "9b317b85-a187-42de-91c2-53e3c2b7717f", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31 } }, { "data": { "id": "d82df3f6-5538-4b25-8dea-6febe5cef557", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.6554621848739496, "overlap_size": 78 } }, { "data": { "id": "7989931c-c40e-40d7-b33e-6fb31b355546", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "15d04be8-75f1-4877-b19d-ca776e707af1", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "affaba32-01b9-4cb6-9eab-2ac1806d50d2", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "a4c2a88a-7919-43f1-bac3-2ca11651e98e", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "ed6f9500-b924-41d6-9146-58d8a23b4856", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.5, "overlap_size": 78 } }, { "data": { "id": "3cf6d384-7b65-4a15-8592-26412583ccb2", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "6e7dab2b-352f-4ae7-ae2e-c127c5d940ca", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "similarity_coefficient": 0.4, "overlap_size": 78 } }, { "data": { "id": "c64ca6d8-f394-41c3-801b-87ede38543f4", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "5ade7fe6-5f6e-4855-a479-f34e0a23c6d9", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "567faa56-cfe1-447a-97ff-f6fdac503aa0", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31 } }, { "data": { "id": "255d6c21-9227-4cdd-a8ef-5c1b76c9515c", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "84f6f0ed-9615-48ba-a629-667c8302de99", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78 } }, { "data": { "id": "41189311-874e-4c7a-9c29-ab409bc32376", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "782aa0f0-15e7-4d95-b30a-dc8494774938", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "5212103e-c851-4196-a4cc-16cfe9b481b6", "source": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78 } }, { "data": { "id": "4cf6aecf-d9e0-49dc-969c-7d53c5fd02a1", "source": "e14619f8-5908-4ff3-a64e-733c672c16e1", "target": "9fe2ddb7-4a9e-4b3a-8109-88a5b1aa48e5", "similarity_coefficient": 0.74, "overlap_size": 37 } }, { "data": { "id": "84587eeb-9637-4676-a0e7-329c4c802f4c", "source": "b5d73495-423a-4299-9680-7d3e4c6c9ac6", "target": "6488e429-b436-405e-886a-11af3c96908d", "similarity_coefficient": 0.896969696969697, "overlap_size": 148 } }, { "data": { "id": "c15c2143-dd37-461f-a555-338fad9de0af", "source": "b5d73495-423a-4299-9680-7d3e4c6c9ac6", "target": "ca923fa4-7bdb-4533-98e9-ecad5b063ba3", "similarity_coefficient": 0.509090909090909, "overlap_size": 84 } }, { "data": { "id": "73dfca45-5d19-440d-b61e-d1714215c4ac", "source": "b5d73495-423a-4299-9680-7d3e4c6c9ac6", "target": "1096a44e-4dbc-42d3-a424-671eb9231708", "similarity_coefficient": 0.8787878787878788, "overlap_size": 145 } }, { "data": { "id": "014b588b-35bb-43d5-87df-d36555b74dda", "source": "609da3b8-38fc-410a-abcf-b354517a1506", "target": "120b369a-3e88-407c-ab37-b433984bd693", "similarity_coefficient": 0.42857142857142855, "overlap_size": 15 } }, { "data": { "id": "30983b03-8adb-4ebe-8cf5-3ebb983d7298", "source": "609da3b8-38fc-410a-abcf-b354517a1506", "target": "de92908d-dff2-4bac-827a-0606c7dd1158", "similarity_coefficient": 0.4358974358974359, "overlap_size": 17 } }, { "data": { "id": "b9fe6487-2f9d-4239-8d89-dcdbd905a00b", "source": "609da3b8-38fc-410a-abcf-b354517a1506", "target": "c0f585a3-ef38-4c45-8a8a-28aeb1006ea5", "similarity_coefficient": 1, "overlap_size": 31 } }, { "data": { "id": "812d0e0a-9c7a-4d71-aa7b-264dfc2ca696", "source": "609da3b8-38fc-410a-abcf-b354517a1506", "target": "74509417-18fd-44c8-a5bf-187901eaad5b", "similarity_coefficient": 0.2545454545454545, "overlap_size": 14 } }, { "data": { "id": "ba3a655e-8b54-4627-9e1c-a9a236e1899b", "source": "49a00525-1f4c-45ab-a993-35fe295a7296", "target": "f95f678c-3ea4-4f54-8600-edb5b6cfe2c5", "similarity_coefficient": 0.2987220447284345, "overlap_size": 187 } }, { "data": { "id": "8afd0c70-4a95-4172-b554-1d742dab81af", "source": "49a00525-1f4c-45ab-a993-35fe295a7296", "target": "afb76ddb-0557-438c-8117-cdb324e3c097", "similarity_coefficient": 0.2979274611398964, "overlap_size": 115 } }, { "data": { "id": "e04d2e60-0d05-4799-9d83-2095b6f73a8e", "source": "2c5d0add-3722-454a-b999-849bc812da0f", "target": "f95f678c-3ea4-4f54-8600-edb5b6cfe2c5", "similarity_coefficient": 0.2837370242214533, "overlap_size": 164 } }, { "data": { "id": "20180e35-3dbb-42cf-8b10-cc0e79d2fdae", "source": "2c5d0add-3722-454a-b999-849bc812da0f", "target": "49a00525-1f4c-45ab-a993-35fe295a7296", "similarity_coefficient": 0.4441176470588235, "overlap_size": 151 } }, { "data": { "id": "8135dc05-cd72-4839-bf21-9481f40871f7", "source": "ee2d8d47-39c8-443b-ab8d-9ea8e445bff2", "target": "f1e91a76-6b23-4bee-adcf-402d41b3bc76", "similarity_coefficient": 0.2857142857142857, "overlap_size": 38 } }, { "data": { "id": "16ca647b-e244-4c0a-8c04-a8916f2c0c4f", "source": "ee2d8d47-39c8-443b-ab8d-9ea8e445bff2", "target": "a3367273-5acd-4eaa-a023-f4b63d39ff67", "similarity_coefficient": 0.25675675675675674, "overlap_size": 38 } }, { "data": { "id": "15aa8ab4-d45d-4cfc-821c-c3708aea543f", "source": "ee2d8d47-39c8-443b-ab8d-9ea8e445bff2", "target": "30eaa919-7be0-486b-9bd3-32ffbfc93216", "similarity_coefficient": 0.4634146341463415, "overlap_size": 38 } }, { "data": { "id": "fe48cfb6-b519-4f71-b8f9-1026084747a8", "source": "ee2d8d47-39c8-443b-ab8d-9ea8e445bff2", "target": "077180f7-758c-4448-8995-446025fc993b", "similarity_coefficient": 0.2878787878787879, "overlap_size": 38 } }, { "data": { "id": "7ebc6652-b194-4454-b207-7496bab97b47", "source": "ee2d8d47-39c8-443b-ab8d-9ea8e445bff2", "target": "69c93903-e7d0-4d42-a0f7-d5decb12c571", "similarity_coefficient": 0.5925925925925926, "overlap_size": 32 } }, { "data": { "id": "f8413402-7100-4085-9d83-413ee559a640", "source": "ee2d8d47-39c8-443b-ab8d-9ea8e445bff2", "target": "05636855-db9f-4249-97d1-199b2d37d4fa", "similarity_coefficient": 0.6458333333333334, "overlap_size": 31 } }, { "data": { "id": "60622bf8-df98-45ed-9f02-a4f26f53d1e5", "source": "ed0c101a-e77b-43ec-84f2-def41ddd296f", "target": "d67f14aa-83cb-473a-bc1c-fd8dc7773c23", "similarity_coefficient": 0.5072674418604651, "overlap_size": 349 } }, { "data": { "id": "5feb644f-1b34-41bc-b6dc-bad3d228e362", "source": "ed0c101a-e77b-43ec-84f2-def41ddd296f", "target": "6dd711a9-bdb8-4b44-95dc-5ec87cc4e384", "similarity_coefficient": 0.4029511918274688, "overlap_size": 355 } }, { "data": { "id": "943730d5-fb6d-458f-bad3-526011127437", "source": "ed0c101a-e77b-43ec-84f2-def41ddd296f", "target": "6460295d-3d84-4fe7-abbe-c5f824a3523c", "similarity_coefficient": 0.6201834862385321, "overlap_size": 338 } }, { "data": { "id": "26d8d43f-b546-448d-b874-915e04234af9", "source": "ed0c101a-e77b-43ec-84f2-def41ddd296f", "target": "18ec1eae-95a2-49dc-9ce4-3dc89a422633", "similarity_coefficient": 0.788659793814433, "overlap_size": 459 } }, { "data": { "id": "75f77ba8-a294-4863-9279-42f2333ba51d", "source": "5e000526-3964-43c0-9309-8b7b7d4bc462", "target": "4b257541-41ee-48df-a6fd-50b21f4852e6", "similarity_coefficient": 0.6206896551724138, "overlap_size": 36 } }, { "data": { "id": "839f3971-d34f-4e5d-8eb1-9b82ce916fe5", "source": "5e000526-3964-43c0-9309-8b7b7d4bc462", "target": "20c36645-7869-4156-aac4-b32621474a13", "similarity_coefficient": 0.7777777777777778, "overlap_size": 28 } }, { "data": { "id": "f8f96b63-eeb6-44be-826d-4566585fb280", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "611ff36d-7bbc-4322-bcdb-592441240039", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79 } }, { "data": { "id": "37bf34d0-33d7-47da-bfc3-a840c7eef122", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79 } }, { "data": { "id": "0a9aab21-3b88-4c61-81bc-111d9f2758be", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.3786407766990291, "overlap_size": 78 } }, { "data": { "id": "f2e2ffa4-e63e-4503-9a8a-88b8596aad43", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79 } }, { "data": { "id": "3fc1f7d4-3bb5-4627-a566-cfcd993df3c0", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31 } }, { "data": { "id": "bbf2967b-7933-4846-9267-0c220267fe15", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79 } }, { "data": { "id": "a925d7c2-7f91-404b-bc1b-8c35cd229e40", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31 } }, { "data": { "id": "2826e104-ed7d-45ec-aa02-b6f2791b6d44", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79 } }, { "data": { "id": "97d6f84f-f99b-46a6-a618-4fbc62fc51d4", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79 } }, { "data": { "id": "b4875745-558a-4214-b326-dcc20b315fbe", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.35454545454545455, "overlap_size": 78 } }, { "data": { "id": "929af1b7-3502-4638-9fd5-f1c32115ea61", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79 } }, { "data": { "id": "d1429900-8bd3-4407-90b1-c305d51c8dad", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.6554621848739496, "overlap_size": 78 } }, { "data": { "id": "ecf7bf8f-654f-4639-ab7f-79e8e0d1c257", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "a966733a-44de-48c5-8959-37cec18be5cf", "similarity_coefficient": 0.8387096774193549, "overlap_size": 78 } }, { "data": { "id": "11faeee0-3234-4f90-95dd-0883e3f99d3e", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.6554621848739496, "overlap_size": 78 } }, { "data": { "id": "b3801b73-f1c9-4cfe-86b8-4097ad4d7f3a", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "57d8d0f3-4d09-45b1-ae58-0d0d15389274", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79 } }, { "data": { "id": "509de3be-7d6d-440f-9542-f26117c9ff76", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79 } }, { "data": { "id": "f9c18fc2-ee34-4959-aa32-18881269f317", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "similarity_coefficient": 0.2818181818181818, "overlap_size": 31 } }, { "data": { "id": "b7c1c23a-e965-4add-8b49-5a4e86b46dfe", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.7428571428571429, "overlap_size": 78 } }, { "data": { "id": "4d5f7ac9-b456-45b1-a0f5-f8ec66f9aa1c", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "similarity_coefficient": 0.6724137931034483, "overlap_size": 78 } }, { "data": { "id": "f88d1743-de57-47d0-9ee8-79dd848f29f8", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79 } }, { "data": { "id": "b7619ef8-e942-4306-a17b-91fd833962cc", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.65, "overlap_size": 78 } }, { "data": { "id": "3bfe2780-46a5-490f-89e2-83362fad3a67", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.31, "overlap_size": 31 } }, { "data": { "id": "dda94d68-2ca4-4016-a926-ba8b6a47ab0e", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.632, "overlap_size": 79 } }, { "data": { "id": "bef24b69-a78b-4231-875c-818ee101389b", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79 } }, { "data": { "id": "c84fcb90-ddea-4ae5-9295-e65c253ccdd4", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.8387096774193549, "overlap_size": 78 } }, { "data": { "id": "d4d1d942-2613-4ccf-ac1c-42707f598048", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78 } }, { "data": { "id": "16e459ac-1f57-4936-8424-0aea8c407d0b", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.4968152866242038, "overlap_size": 78 } }, { "data": { "id": "d7547e92-bcef-4a06-b9df-9697ad041444", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "similarity_coefficient": 0.6724137931034483, "overlap_size": 78 } }, { "data": { "id": "bafe0a3e-6e36-4d8a-b201-2608cbb4e8d9", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79 } }, { "data": { "id": "6536177c-7f9d-4741-8d4a-d79e7c56b277", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "similarity_coefficient": 0.3979591836734694, "overlap_size": 78 } }, { "data": { "id": "92e23892-08d2-472b-a2c3-8034bdec7cbb", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79 } }, { "data": { "id": "db7db20d-20e1-4a1e-9499-76977eb11a52", "source": "24500407-f636-44ed-9254-763c3b68aad6", "target": "84f6f0ed-9615-48ba-a629-667c8302de99", "similarity_coefficient": 0.7878787878787878, "overlap_size": 78 } }, { "data": { "id": "0b2d6981-3aa2-455b-bea5-faf7d29e2089", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78 } }, { "data": { "id": "4036aa64-a872-46df-9997-15271794fb04", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "611ff36d-7bbc-4322-bcdb-592441240039", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78 } }, { "data": { "id": "d32cf69a-3be4-4459-9db1-d1b4d63c063e", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78 } }, { "data": { "id": "608693f8-07e5-4af9-8538-847f76834a13", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78 } }, { "data": { "id": "62f6f559-0c03-42da-a905-03ad31a05904", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "similarity_coefficient": 0.33587786259541985, "overlap_size": 88 } }, { "data": { "id": "6d68fd5a-4882-43ad-adb8-6b8c5c2d83dc", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "84f6f0ed-9615-48ba-a629-667c8302de99", "similarity_coefficient": 0.5333333333333333, "overlap_size": 88 } }, { "data": { "id": "76792d5e-3d10-41cb-a489-5c5c7558bb7b", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.3235294117647059, "overlap_size": 88 } }, { "data": { "id": "54316eef-8b20-4360-a200-64d0ba4077aa", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.5398773006134969, "overlap_size": 88 } }, { "data": { "id": "729cff60-2617-4e03-bbf2-e5ff475770a0", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.4009009009009009, "overlap_size": 89 } }, { "data": { "id": "c2919bd8-bcdf-44aa-a71b-c377c9eafbda", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.4213197969543147, "overlap_size": 83 } }, { "data": { "id": "d032dae1-12bb-4798-b8b3-3661e22b00c0", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.5534591194968553, "overlap_size": 88 } }, { "data": { "id": "9bb0f0fd-dff3-4b78-bcd4-1b17df9a0247", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78 } }, { "data": { "id": "5ae5840a-af11-44d4-a332-b985d025e36d", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.4731182795698925, "overlap_size": 88 } }, { "data": { "id": "9fc8ba4f-8be2-441d-9b4a-7a24496a31eb", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.5112359550561798, "overlap_size": 91 } }, { "data": { "id": "9acc88f1-5598-47b0-82b7-4a6b6d5a02bf", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.5146198830409356, "overlap_size": 88 } }, { "data": { "id": "c244a66e-9ae8-40cc-9681-098879fd56a4", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "similarity_coefficient": 0.4835164835164835, "overlap_size": 88 } }, { "data": { "id": "ded7f8eb-8133-4290-a0b1-d7ac2e8f7d8d", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78 } }, { "data": { "id": "bba4a3dd-abdf-4abb-a1f8-53459dfe8ad7", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.3076923076923077, "overlap_size": 88 } }, { "data": { "id": "9dced4e0-3293-498f-a2ac-1a86d7a79a60", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78 } }, { "data": { "id": "a0e4cd48-2a01-4a33-adc3-db3dcf5907cc", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.4756756756756757, "overlap_size": 88 } }, { "data": { "id": "6dcd83a1-9d48-43a7-b790-e8a77f7031a6", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78 } }, { "data": { "id": "63e6be2c-ab9a-46e8-a865-741b2180035f", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.4756756756756757, "overlap_size": 88 } }, { "data": { "id": "b6de9eff-0bf1-4131-8613-f807b12cc7b5", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78 } }, { "data": { "id": "0868f44e-e4a8-4308-85cf-94b2cf7b3a6e", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78 } }, { "data": { "id": "c449957f-5cca-40ce-9f56-e606989bf5d4", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78 } }, { "data": { "id": "0fbab296-21d1-444c-b3f3-b25c22362fe1", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "similarity_coefficient": 0.5083798882681564, "overlap_size": 91 } }, { "data": { "id": "959d6921-bc3c-4d6b-be8d-b7c880e7ce0f", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "24500407-f636-44ed-9254-763c3b68aad6", "similarity_coefficient": 0.4875, "overlap_size": 78 } }, { "data": { "id": "31498aa2-95f6-4696-ae41-a4ae696a430f", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "a966733a-44de-48c5-8959-37cec18be5cf", "similarity_coefficient": 0.5534591194968553, "overlap_size": 88 } }, { "data": { "id": "f4dd2872-62a3-4456-a259-2b4d49d2cbd9", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "d1c8fb15-883a-49fa-acec-c17ba9928cfa", "similarity_coefficient": 0.3503184713375796, "overlap_size": 55 } }, { "data": { "id": "db1c9d61-9dd7-4d1a-b6b1-035f0a079efb", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78 } }, { "data": { "id": "784b6876-4130-4500-805a-81964c37cd55", "source": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78 } }, { "data": { "id": "1f00f5df-6aea-4757-8957-755eb94438dd", "source": "6bcd8ab7-e236-4d60-b6ed-fc74e7d1cb21", "target": "82c3d253-ed57-4346-b09e-42eeccffa60c", "similarity_coefficient": 0.3, "overlap_size": 42 } }, { "data": { "id": "143ecdae-48ec-47b1-bbaa-4e62ae31df62", "source": "6bcd8ab7-e236-4d60-b6ed-fc74e7d1cb21", "target": "b9903a36-5f4a-4a44-87b7-51c635ad9614", "similarity_coefficient": 0.5507246376811594, "overlap_size": 76 } }, { "data": { "id": "1c32e258-de00-4384-a809-71aacc8506bd", "source": "6bcd8ab7-e236-4d60-b6ed-fc74e7d1cb21", "target": "8d39f70d-6be5-4dff-a05d-b2c90d4628fb", "similarity_coefficient": 0.4230769230769231, "overlap_size": 55 } }, { "data": { "id": "824b0b9d-91e0-4fed-84d7-2ac3fa65171d", "source": "6bcd8ab7-e236-4d60-b6ed-fc74e7d1cb21", "target": "1b5495a8-ad7e-41a8-b4ee-2181cd3e7095", "similarity_coefficient": 0.6307692307692307, "overlap_size": 82 } }, { "data": { "id": "c3b6d6b5-5a65-434e-bc3f-c649fe6ac62a", "source": "6bcd8ab7-e236-4d60-b6ed-fc74e7d1cb21", "target": "edd3d72d-8319-4a8c-9fb8-28083330ae5b", "similarity_coefficient": 0.8783783783783784, "overlap_size": 130 } }, { "data": { "id": "1607e971-72ff-48ee-aa9e-3d79f7e09a7d", "source": "6bcd8ab7-e236-4d60-b6ed-fc74e7d1cb21", "target": "8cca4f4e-2ae2-4c4c-b02d-77f747e2cda7", "similarity_coefficient": 0.3076923076923077, "overlap_size": 40 } }, { "data": { "id": "a0bf8c78-9154-4b26-8d9f-febaff27c411", "source": "6bcd8ab7-e236-4d60-b6ed-fc74e7d1cb21", "target": "50f5ed90-547c-4a0e-adaa-f5a2d8d8b12e", "similarity_coefficient": 0.3014705882352941, "overlap_size": 41 } }, { "data": { "id": "16281489-bfc3-4ebd-8771-13902e3aa611", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.5, "overlap_size": 78 } }, { "data": { "id": "b40aa05a-4904-4deb-beee-bdff0f4e34fa", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "f3192bdc-0c77-4f82-b612-a374850036db", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31 } }, { "data": { "id": "83f19cfa-c55a-48be-94ad-48d66db7bccc", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "0a63c9e4-5346-48c0-b2ad-573e97eaef25", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "similarity_coefficient": 0.4, "overlap_size": 78 } }, { "data": { "id": "310f6d1f-fc3c-4e68-8717-468818900dcd", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "27a1065c-3b0a-4652-b1bc-7228996b1be0", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78 } }, { "data": { "id": "28beb015-ef69-429c-8876-93424e77dd98", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "d775607b-5807-49c9-ac1d-a8d7133fe7d4", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.6370967741935484, "overlap_size": 79 } }, { "data": { "id": "205276aa-347f-4700-a3cb-a30715187a16", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "8aaedd36-c365-40df-90dc-c032350bff93", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "6562cf83-b662-4f16-8c6b-4aeacc61478c", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "972939f0-571b-4b30-9e72-c2423cd91ecf", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "4c84b92f-804f-4714-8547-9d63236b8e52", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "dbfd7ff9-0c10-42f9-b79b-e5359d8042c0", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "a966733a-44de-48c5-8959-37cec18be5cf", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "7ad677c7-caed-406b-8ad4-3e795a47d1c5", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.6694915254237288, "overlap_size": 79 } }, { "data": { "id": "9f6bff36-22b6-41da-ba49-a8ceb3e98a08", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31 } }, { "data": { "id": "67359a35-a614-445a-a61d-89ffcb7583af", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "57d198d3-3243-4d59-b02b-e986aeca3e91", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "3d58a3fb-414f-4ee8-9852-dfb3d8408893", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "2b701b9e-772b-4c8d-b811-8aa85c5f5204", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.3561643835616438, "overlap_size": 78 } }, { "data": { "id": "532a558e-011f-43e3-8790-a2ff7251a2ef", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "2ad685f2-b83d-4860-a696-a5fbd840896f", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "611ff36d-7bbc-4322-bcdb-592441240039", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "6373bb27-a519-45cf-afcb-3f12f07d6d2f", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "24500407-f636-44ed-9254-763c3b68aad6", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79 } }, { "data": { "id": "571350cd-b579-4f04-b0dd-f048c5064f46", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "84f6f0ed-9615-48ba-a629-667c8302de99", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78 } }, { "data": { "id": "1dcd303b-4e20-4bd3-a9c7-27f1bc94716a", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "f33cc197-9424-455e-8ee1-939d0ed96f49", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31 } }, { "data": { "id": "1218ac9a-0660-422c-baeb-ee09988810ee", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78 } }, { "data": { "id": "7e3e0930-5a35-4d80-a71a-5b0488daa042", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "c46c5728-1e7f-40d8-838e-4e1cecd7a341", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "2cf88ae2-8d67-4ca5-b53b-6f7e580c2369", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "365c381d-4c64-4c6a-834a-e46e73911d55", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "99244e5c-ba86-48f2-a116-793c8bca64cf", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "b9c2825e-0525-4f5d-9461-785d31b6a6da", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78 } }, { "data": { "id": "3784f422-0eee-4d7b-9d4b-ba9db1985b77", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "808abbbc-20de-4f3c-91bd-56f680f861c3", "source": "088965ae-beab-49a6-ba7f-62c8508bf897", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "60a22482-52d5-4f15-b96d-095c1c92ca09", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31 } }, { "data": { "id": "2b1ca546-a405-43ce-95ce-a145a04b6196", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.2631578947368421, "overlap_size": 35 } }, { "data": { "id": "597288e7-6262-4ff9-a1e4-e6e07ae8a6e7", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31 } }, { "data": { "id": "f0ecdb89-f655-4813-8651-dff044e000b2", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "24500407-f636-44ed-9254-763c3b68aad6", "similarity_coefficient": 0.30392156862745096, "overlap_size": 31 } }, { "data": { "id": "45d5d4c5-4404-4463-af7c-f6ed729d793b", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31 } }, { "data": { "id": "810ea0fa-2a34-4b8c-adea-bbeec39f224d", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.8813559322033898, "overlap_size": 52 } }, { "data": { "id": "78289a36-a155-4453-ad23-d9b587484e1b", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.2631578947368421, "overlap_size": 35 } }, { "data": { "id": "801944d4-52d6-492e-946b-85561ddd80b5", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31 } }, { "data": { "id": "5483e228-dc77-46a8-9401-17319066565c", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "similarity_coefficient": 0.2692307692307692, "overlap_size": 35 } }, { "data": { "id": "31ad5e8a-321e-44ef-a79b-95d2a7d2e5a9", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "611ff36d-7bbc-4322-bcdb-592441240039", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31 } }, { "data": { "id": "1cde4c45-5b1a-439a-a921-3f8363f81d54", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31 } }, { "data": { "id": "bf03d3f4-d6da-4b58-adf0-82ccfd982e0b", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31 } }, { "data": { "id": "32bceac3-7b08-4b19-a808-08aaaa70c0a1", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "84f6f0ed-9615-48ba-a629-667c8302de99", "similarity_coefficient": 0.30973451327433627, "overlap_size": 35 } }, { "data": { "id": "f52856fc-1101-4804-b9e8-1c9701c5f86d", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.3153153153153153, "overlap_size": 35 } }, { "data": { "id": "55c307d7-7f47-477e-88b7-4ba55e10af62", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31 } }, { "data": { "id": "ae2100ab-b269-4a96-a6da-4320c3f87bcd", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31 } }, { "data": { "id": "d9d68a45-a674-46d6-ab3a-238e6edb6b13", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "similarity_coefficient": 0.8666666666666667, "overlap_size": 52 } }, { "data": { "id": "e1ae9ddc-8c73-4ee1-9e8d-7782332f4704", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "similarity_coefficient": 0.8813559322033898, "overlap_size": 52 } }, { "data": { "id": "cbc96cfd-2e37-49e2-9f3f-5b42ce566463", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31 } }, { "data": { "id": "c2894b35-74a5-4f99-b16f-6ca29ef573ff", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.3671875, "overlap_size": 47 } }, { "data": { "id": "19793934-fcb2-4029-a046-ec98932e3d29", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.32710280373831774, "overlap_size": 35 } }, { "data": { "id": "f0a6373a-1676-48d8-b11f-37b69e4fd99a", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.26119402985074625, "overlap_size": 35 } }, { "data": { "id": "83f2990d-3b84-4ce0-8a2c-d9084a5ff595", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49 } }, { "data": { "id": "f8b93b7b-a666-4b5c-b337-e33186564deb", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.4642857142857143, "overlap_size": 52 } }, { "data": { "id": "47ed4393-39b5-4631-ab27-96e94c009848", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "similarity_coefficient": 0.46017699115044247, "overlap_size": 52 } }, { "data": { "id": "e72b3605-428e-4597-a75a-4d6f81089184", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31 } }, { "data": { "id": "c105d0d6-06de-4a96-8c71-09e3657cf6d1", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.5223880597014925, "overlap_size": 35 } }, { "data": { "id": "087a2302-7238-4fa9-84c0-9d79e3e44837", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "a966733a-44de-48c5-8959-37cec18be5cf", "similarity_coefficient": 0.32710280373831774, "overlap_size": 35 } }, { "data": { "id": "8bceea93-8b28-4a88-8540-13902bdbb259", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31 } }, { "data": { "id": "77048916-5ea9-46a2-b0b7-1e601ff28739", "source": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31 } }, { "data": { "id": "02e88ec6-dd8c-4b27-8a0b-f335ddc9b6c4", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.33793103448275863, "overlap_size": 49 } }, { "data": { "id": "eb329dd7-aa82-4cb9-bf49-ff31c1a414fc", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.310126582278481, "overlap_size": 49 } }, { "data": { "id": "0d2fcf9e-3bda-4bfa-b28c-513ff8db2ed6", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.3181818181818182, "overlap_size": 49 } }, { "data": { "id": "5d6811d7-34aa-4f2f-b3a9-d241962fbfd4", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.25133689839572193, "overlap_size": 47 } }, { "data": { "id": "4f58d349-1eb4-4c7e-a9ce-eab60b10bc6d", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "similarity_coefficient": 0.27586206896551724, "overlap_size": 48 } }, { "data": { "id": "2041c678-a21b-4221-803e-5c10e01523d6", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.34507042253521125, "overlap_size": 49 } }, { "data": { "id": "744ebb24-f68c-4c13-9491-b035faefd58e", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.352112676056338, "overlap_size": 50 } }, { "data": { "id": "aa39db5a-be48-4963-8054-66b822736223", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "similarity_coefficient": 0.34507042253521125, "overlap_size": 49 } }, { "data": { "id": "029161d7-0ffa-4bb5-a513-be5a8633fbd3", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.363013698630137, "overlap_size": 53 } }, { "data": { "id": "0be76776-6191-47c2-8c85-ae7880a67081", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.25, "overlap_size": 52 } }, { "data": { "id": "def0de19-5172-4949-a6b8-831517133c65", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.3125, "overlap_size": 45 } }, { "data": { "id": "5647f43b-8c58-40a1-ac80-944b43b1e11d", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "similarity_coefficient": 0.29518072289156627, "overlap_size": 49 } }, { "data": { "id": "6d185c13-0976-473c-9259-8b3ddaed5424", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.3356164383561644, "overlap_size": 49 } }, { "data": { "id": "765e611f-0664-4359-a90b-888984382c2f", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.38461538461538464, "overlap_size": 55 } }, { "data": { "id": "39c5138b-a300-4261-8e05-8c51a000334e", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.3006134969325153, "overlap_size": 49 } }, { "data": { "id": "e37fea30-ad6e-48b9-80a4-2629a6d255f7", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.31788079470198677, "overlap_size": 48 } }, { "data": { "id": "4402576a-f45e-4cce-8c60-62e66b03345b", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.34507042253521125, "overlap_size": 49 } }, { "data": { "id": "59788092-b761-44a4-8094-6df8a2f513f7", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.2784090909090909, "overlap_size": 49 } }, { "data": { "id": "c5b1755e-b6c0-4c6a-ba62-01343e8426c2", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.3402777777777778, "overlap_size": 49 } }, { "data": { "id": "078e5c78-6c2b-43cf-b62d-d2ffe1600cd0", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "72fd7976-1a23-4642-833b-600f2c123e40", "similarity_coefficient": 0.3103448275862069, "overlap_size": 45 } }, { "data": { "id": "6b4ae184-e4d3-4102-9cb2-06c9bf69fea1", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.30857142857142855, "overlap_size": 54 } }, { "data": { "id": "7519e0d3-90ed-48cb-918c-0dbc509f03cc", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.3161290322580645, "overlap_size": 49 } }, { "data": { "id": "dc5b2999-91ba-41a1-995f-55a2b5a45db9", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.2934131736526946, "overlap_size": 49 } }, { "data": { "id": "9452b7d2-6507-4afc-a935-1787f0d8e308", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.3225806451612903, "overlap_size": 50 } }, { "data": { "id": "bc9f1fc9-d53b-4879-a7c5-2090264d0cb4", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.26344086021505375, "overlap_size": 49 } }, { "data": { "id": "2f0b88ed-ea02-4d79-bbc3-3bd53965ad0f", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.3916083916083916, "overlap_size": 56 } }, { "data": { "id": "ed666485-bd3b-4876-a9d1-5f160f8ccd3a", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.3860759493670886, "overlap_size": 61 } }, { "data": { "id": "cf96d69c-b685-4ce9-b806-008c30fbd5a6", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "similarity_coefficient": 0.2916666666666667, "overlap_size": 49 } }, { "data": { "id": "357248f2-c067-4ec0-94fd-3099b8aad08f", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "similarity_coefficient": 0.3081761006289308, "overlap_size": 49 } }, { "data": { "id": "b6f65ed9-20a2-4340-a6f6-85297709791c", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.3136094674556213, "overlap_size": 53 } }, { "data": { "id": "691a033d-5bed-4171-84b0-3c306218d1aa", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.34265734265734266, "overlap_size": 49 } }, { "data": { "id": "33b39de3-f353-42be-b578-55add15fdccd", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.29878048780487804, "overlap_size": 49 } }, { "data": { "id": "cdfa1599-1efe-49b9-b96d-5636be7165d5", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.28901734104046245, "overlap_size": 50 } }, { "data": { "id": "228f4667-c2c7-45db-84a5-4abfa4262763", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.36619718309859156, "overlap_size": 52 } }, { "data": { "id": "26f59faa-43a0-4056-b930-a4eb0b30aba8", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.3291139240506329, "overlap_size": 52 } }, { "data": { "id": "ce3efcd4-ef48-454e-9a1d-1268b4c2a1bc", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.2692307692307692, "overlap_size": 49 } }, { "data": { "id": "4c6befcd-69c3-49b4-a465-474b5baa0ae6", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.3546099290780142, "overlap_size": 50 } }, { "data": { "id": "562b36be-8b60-4630-b718-f20879a9f01a", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.29714285714285715, "overlap_size": 52 } }, { "data": { "id": "bcc066d0-a820-402b-89e8-a97120a54551", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.29878048780487804, "overlap_size": 49 } }, { "data": { "id": "ef553816-e0dd-400a-a35a-b1216fec7fcc", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.3108108108108108, "overlap_size": 46 } }, { "data": { "id": "08503faf-d611-4f4a-928f-6d140061613d", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.30952380952380953, "overlap_size": 52 } }, { "data": { "id": "f738e4e2-6dae-426b-89f5-9c77b7f1275b", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.29411764705882354, "overlap_size": 50 } }, { "data": { "id": "3d18f14d-bef8-49a5-90ac-d67a985b97f7", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "0d3bb231-67c2-46cb-93ed-80383c138af9", "similarity_coefficient": 0.40476190476190477, "overlap_size": 68 } }, { "data": { "id": "343b3d44-e023-4398-97e0-598e5becd397", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.25365853658536586, "overlap_size": 52 } }, { "data": { "id": "1b424678-c237-4ef3-a2a8-ddd09d5a0c4c", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.25925925925925924, "overlap_size": 49 } }, { "data": { "id": "15bad611-36e3-4c81-9a93-9e959da52e13", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.3291139240506329, "overlap_size": 52 } }, { "data": { "id": "9fb983c5-9946-45b0-a709-488e2d347825", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.28272251308900526, "overlap_size": 54 } }, { "data": { "id": "9967f202-2978-420e-a236-75b04a157cd5", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.35, "overlap_size": 49 } }, { "data": { "id": "239e2de7-cd5b-4aee-9bba-6fdc92d7f02a", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "dec11a24-597a-4f26-846a-eed2d73e5b96", "similarity_coefficient": 0.2905027932960894, "overlap_size": 52 } }, { "data": { "id": "bdee3168-43e1-45ae-9d86-e552c6a5c502", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.32450331125827814, "overlap_size": 49 } }, { "data": { "id": "9d207415-514b-46fa-9877-991c09ca1246", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.34507042253521125, "overlap_size": 49 } }, { "data": { "id": "538c1b51-6815-4985-8dce-9fd5003df40a", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.34265734265734266, "overlap_size": 49 } }, { "data": { "id": "81c4108b-6a31-43de-8723-7caeb61dc1d8", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.3333333333333333, "overlap_size": 49 } }, { "data": { "id": "adacfd4b-ad44-460e-8890-11c07025d4f1", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.3288590604026846, "overlap_size": 49 } }, { "data": { "id": "85d6ec11-f991-4c59-a0e6-bc2b2793411c", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.363013698630137, "overlap_size": 53 } }, { "data": { "id": "ccc6c138-5e2a-4566-8328-da7b3cdf724d", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.29891304347826086, "overlap_size": 55 } }, { "data": { "id": "b56b27d0-1217-4137-a28e-c8f74ad1135d", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.2929936305732484, "overlap_size": 46 } }, { "data": { "id": "c7eeb124-efa1-48e8-9a5e-6cbac7f99537", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.2903225806451613, "overlap_size": 54 } }, { "data": { "id": "68158509-ca3c-4949-be39-1a3014d5f8b4", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.3141025641025641, "overlap_size": 49 } }, { "data": { "id": "a9006ba2-8aac-4566-9959-3a55c8f8bf4e", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.2727272727272727, "overlap_size": 48 } }, { "data": { "id": "d21f0f89-ffcf-440c-934c-c32f2d0eb065", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.2737430167597765, "overlap_size": 49 } }, { "data": { "id": "54795a4e-692d-4cd5-a2d1-6fbe18b9f067", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "f9954f17-1709-479e-8d22-403ed421f128", "similarity_coefficient": 0.3072289156626506, "overlap_size": 51 } }, { "data": { "id": "2e4e1a30-f748-42e0-bfb0-400744d43c02", "source": "17018f59-7b29-40d7-bb46-1283a625ad23", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.363013698630137, "overlap_size": 53 } }, { "data": { "id": "f01a75c8-215f-4757-9c52-163458e9f3af", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "5480b472-8910-45b5-bf4c-9fe07d3d7774", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "611ff36d-7bbc-4322-bcdb-592441240039", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "81363485-3d6f-4747-aed4-62103ad40545", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "088965ae-beab-49a6-ba7f-62c8508bf897", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "27beb0f0-5a75-4657-8d35-46a022f26fd9", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "0623f252-371a-4c44-b3ba-38bbba33fb12", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31 } }, { "data": { "id": "c072e833-700d-4c91-a182-eded58b7b86c", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "541f6f89-bb94-40e4-8696-2961a37e5561", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.5, "overlap_size": 78 } }, { "data": { "id": "20d2b262-4571-48f6-9a65-18c0e5570f02", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78 } }, { "data": { "id": "33655578-bb16-4243-8bea-81463cf542a2", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "559ffaca-1d69-4e97-b482-0004d5d2ea4a", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "similarity_coefficient": 0.4, "overlap_size": 78 } }, { "data": { "id": "3ba48e2b-a6f3-4d5f-a8b9-77931a8f5d30", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "84f6f0ed-9615-48ba-a629-667c8302de99", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78 } }, { "data": { "id": "957d390e-c86d-4ac1-897c-dab5309b0f18", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "997c45dc-a415-47cf-b905-ea3e6fbb9d21", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31 } }, { "data": { "id": "48aa7e0d-8c20-45dc-af02-7c6f9c64d270", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78 } }, { "data": { "id": "68195d05-ed70-419b-9feb-095520184b1b", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "6762ac5f-4cc1-4aa6-817c-3a1dc0863b7c", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "b891457e-60a2-4731-acbe-4f1ee828c9a4", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78 } }, { "data": { "id": "873573ba-7ef9-464c-a318-ed1556a0852b", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.6694915254237288, "overlap_size": 79 } }, { "data": { "id": "7e1db2ec-e5f9-4b9e-b61d-52dc812976b9", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "a966733a-44de-48c5-8959-37cec18be5cf", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "aad6b757-cbff-4b50-9175-5cbc68c1a892", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.3561643835616438, "overlap_size": 78 } }, { "data": { "id": "a0510a70-b3eb-4c94-a9a7-8dca718d66bb", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "bbb5b180-a97f-4ee0-b9af-91abbd91dd1c", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "760a3008-8d2f-493c-981c-1b0b5092453d", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "f0b5ce51-5e68-4726-be7d-110f76019426", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.6370967741935484, "overlap_size": 79 } }, { "data": { "id": "1de391ad-5b16-4e4a-809d-fbc6f55a4886", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "04e3df83-da06-4642-85a8-ad8c77fa7029", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31 } }, { "data": { "id": "fa608fd7-0124-466b-9dab-1ee7d1bd93f3", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "6b92dd0d-a889-4ee2-a36b-ce4535810709", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "3e451661-ebc9-41dd-9274-dfdd1759a553", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "377e3ad2-c81e-41a8-9213-86decbb09e44", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "f5a93396-0536-44e1-9260-76b0e593006c", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "d590469c-9637-4171-b503-d3cb8ad88d2a", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "dae10c40-0caf-4f7b-8ff5-68084a99db06", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "99b9868e-846a-4296-b3ef-26294501ae9b", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "fb324017-ea17-4f39-8a16-a2f1020508bf", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "4a7e5d1c-c6ac-4b67-9b48-3c94513ba739", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "e5434384-760e-407a-86e2-1380cf597ab7", "source": "85618a5e-0712-414d-a086-843f21373c0c", "target": "24500407-f636-44ed-9254-763c3b68aad6", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79 } }, { "data": { "id": "caffc8cc-04ec-4094-a468-130c0cabb923", "source": "90a1fbc3-8b4c-4e8c-9a45-0f1ff6401376", "target": "0ad4929b-20d7-4e32-ad45-dcfb579aade3", "similarity_coefficient": 1, "overlap_size": 22 } }, { "data": { "id": "d2581618-9f56-4e1b-9e8a-7830479770d8", "source": "90a1fbc3-8b4c-4e8c-9a45-0f1ff6401376", "target": "c82aea32-0e25-4f32-aeb3-64b4548d9190", "similarity_coefficient": 1, "overlap_size": 22 } }, { "data": { "id": "7ae6c0dc-5575-4b7d-b0e5-b046407fb7fa", "source": "90a1fbc3-8b4c-4e8c-9a45-0f1ff6401376", "target": "de077ab2-2978-4986-a338-5f664401cd65", "similarity_coefficient": 1, "overlap_size": 22 } }, { "data": { "id": "a6329794-056b-4a83-b368-5c7fbc457ae8", "source": "90a1fbc3-8b4c-4e8c-9a45-0f1ff6401376", "target": "d38e07b4-dd9a-4f3d-9662-82e180f80cdf", "similarity_coefficient": 1, "overlap_size": 22 } }, { "data": { "id": "55dc9d24-127e-4504-922b-a4756a7eca76", "source": "90a1fbc3-8b4c-4e8c-9a45-0f1ff6401376", "target": "d51806b8-78ae-4131-ace1-d9be5fa5560a", "similarity_coefficient": 1, "overlap_size": 22 } }, { "data": { "id": "0c21b097-c5cd-4a20-a962-2dec0dcef6a7", "source": "90a1fbc3-8b4c-4e8c-9a45-0f1ff6401376", "target": "6d05fb4b-2380-4626-8ebc-1ed88b0da496", "similarity_coefficient": 1, "overlap_size": 22 } }, { "data": { "id": "6cb03371-1850-4e8d-af50-4b2e8f01ea76", "source": "f50e0886-7045-43df-975c-5841076bd18e", "target": "74b2369d-66ac-460f-a979-d437295e0c0e", "similarity_coefficient": 0.3660130718954248, "overlap_size": 56 } }, { "data": { "id": "2ab662d1-c07f-4112-b8a3-0d7b15780a31", "source": "d3f9849e-514c-40e5-adfb-38856b8f3ba9", "target": "378bbf78-7be6-4b60-9b71-bf9d54a4ba7a", "similarity_coefficient": 0.6511627906976745, "overlap_size": 56 } }, { "data": { "id": "b172654d-ceb9-4280-af22-5a3997ade3f3", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.33532934131736525, "overlap_size": 56 } }, { "data": { "id": "65c9b9a0-2fff-4364-85d2-dc5a8557e156", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "dec11a24-597a-4f26-846a-eed2d73e5b96", "similarity_coefficient": 0.26344086021505375, "overlap_size": 49 } }, { "data": { "id": "6aecaea2-8ad4-407c-9165-d3e327caa03d", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.3356164383561644, "overlap_size": 49 } }, { "data": { "id": "857b84c7-7991-4245-9633-7d65975f39b8", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.30625, "overlap_size": 49 } }, { "data": { "id": "ea2194f2-8537-49c3-9b51-83895379526f", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.3161290322580645, "overlap_size": 49 } }, { "data": { "id": "3565d3d5-0535-4736-aba7-8a98c0bf42e8", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.27932960893854747, "overlap_size": 50 } }, { "data": { "id": "01649636-5a1e-4635-a593-a279efd4aa77", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.3333333333333333, "overlap_size": 49 } }, { "data": { "id": "75d11af6-f9ea-46df-a999-c2045a9ac2b3", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.32450331125827814, "overlap_size": 49 } }, { "data": { "id": "0cddb99a-e58e-4cfc-b138-849e9ed494e3", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.3181818181818182, "overlap_size": 49 } }, { "data": { "id": "2c627c8a-10f8-4646-b06c-583f296eb7a9", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.3333333333333333, "overlap_size": 58 } }, { "data": { "id": "23c35a3e-1a54-414a-9984-db72ff194b37", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.2929936305732484, "overlap_size": 46 } }, { "data": { "id": "458ed6cf-50ee-41f0-9094-16d743ada23f", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.30405405405405406, "overlap_size": 45 } }, { "data": { "id": "1099ea20-ba87-43aa-8530-dabb7914be7d", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.30625, "overlap_size": 49 } }, { "data": { "id": "1f83bfc5-9fda-4c91-8b23-1f4f66d23e8f", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "similarity_coefficient": 0.28823529411764703, "overlap_size": 49 } }, { "data": { "id": "e557e788-878a-486a-9d14-a9a3ab5a99fc", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.28, "overlap_size": 49 } }, { "data": { "id": "3f8ee0a4-4c44-4fb1-a345-fafda1bfe9cb", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.3202614379084967, "overlap_size": 49 } }, { "data": { "id": "9b112c98-666e-43c3-b18b-8cb0abbf8ad2", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "similarity_coefficient": 0.25555555555555554, "overlap_size": 46 } }, { "data": { "id": "77c956ee-2bdc-4a18-877b-1da65c1e71d3", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.2857142857142857, "overlap_size": 46 } }, { "data": { "id": "0125fb17-1abc-47cf-90dc-97fd47adbf60", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.3202614379084967, "overlap_size": 49 } }, { "data": { "id": "0bf68e09-1436-4872-a166-523d6cf2a62b", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.29714285714285715, "overlap_size": 52 } }, { "data": { "id": "f779e954-2fd1-4d92-8426-f492c456710c", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.6433566433566433, "overlap_size": 92 } }, { "data": { "id": "67428eb8-66c1-4117-8643-1eab9ebfce46", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.3288590604026846, "overlap_size": 49 } }, { "data": { "id": "dcb561f8-6106-4062-84d7-904163b774d7", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.3356164383561644, "overlap_size": 49 } }, { "data": { "id": "ee36cde2-e3af-4da5-9eaa-7b6d50e97a2c", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.313953488372093, "overlap_size": 54 } }, { "data": { "id": "cf5fb552-279f-453a-9db6-ecce0dd04be3", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.2512820512820513, "overlap_size": 49 } }, { "data": { "id": "731b0cd7-328e-4de4-af8e-141fa97119dd", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.33783783783783783, "overlap_size": 50 } }, { "data": { "id": "fa77fae7-c230-4ecc-aa25-aad5d8ce0369", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.3181818181818182, "overlap_size": 49 } }, { "data": { "id": "6e707502-f935-4d42-ab32-b7ebe2b0a0e7", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "59c6cc56-810e-4e4b-a18f-9db6437930ec", "similarity_coefficient": 0.4798657718120805, "overlap_size": 143 } }, { "data": { "id": "f47d095b-e585-49d4-b6fd-60a38d868dc6", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "f9954f17-1709-479e-8d22-403ed421f128", "similarity_coefficient": 0.26285714285714284, "overlap_size": 46 } }, { "data": { "id": "64c3c499-aafb-44d3-8d7a-5dc616388400", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.3181818181818182, "overlap_size": 49 } }, { "data": { "id": "db2777fa-a624-41a0-a4a3-23ea242bc1a0", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.296969696969697, "overlap_size": 49 } }, { "data": { "id": "a06bfe6e-cbe1-4871-b4b4-efb33af144ed", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.25274725274725274, "overlap_size": 46 } }, { "data": { "id": "1804f48c-cad2-4a5c-a9c2-7d9e7cf51005", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "0d3bb231-67c2-46cb-93ed-80383c138af9", "similarity_coefficient": 0.31868131868131866, "overlap_size": 58 } }, { "data": { "id": "a4750dec-e131-441f-8639-2c4b3a3ee1e5", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "similarity_coefficient": 0.3356164383561644, "overlap_size": 49 } }, { "data": { "id": "8c57370a-7754-4e4b-be4e-ed0ba56e06ee", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.25257731958762886, "overlap_size": 49 } }, { "data": { "id": "6a1281bb-9af3-433a-9bbf-165975254536", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.28654970760233917, "overlap_size": 49 } }, { "data": { "id": "7e619bdc-4a4e-41ea-aded-4590d2bc72d3", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.2934131736526946, "overlap_size": 49 } }, { "data": { "id": "db2a2321-4acb-4cf0-8fc3-f1a6c5b9e73c", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.3181818181818182, "overlap_size": 49 } }, { "data": { "id": "86079263-9913-4e26-a0f4-e2272d44d97a", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.25842696629213485, "overlap_size": 46 } }, { "data": { "id": "5e05144d-1b59-4d45-825f-b5edd92ce825", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.3402777777777778, "overlap_size": 49 } }, { "data": { "id": "f7fe9de9-4764-43d8-9cd7-b0005a6889ba", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.32666666666666666, "overlap_size": 49 } }, { "data": { "id": "78e3a783-ccb6-42a2-ac38-559d4137baef", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.2916666666666667, "overlap_size": 49 } }, { "data": { "id": "3dbb671e-499d-4883-9dab-79a68edb5d03", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.2916666666666667, "overlap_size": 49 } }, { "data": { "id": "d68bf5cb-fd1d-4c54-9db9-e30be38be952", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.32, "overlap_size": 48 } }, { "data": { "id": "da6118fe-9e0b-40f8-85c2-8e4c323315b3", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.2692307692307692, "overlap_size": 49 } }, { "data": { "id": "ef4645b0-9bdc-4302-862f-eb063d0e9523", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "similarity_coefficient": 0.3006134969325153, "overlap_size": 49 } }, { "data": { "id": "32fa3d47-710e-4f02-8b12-869b93a94c5e", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "1732e9b0-d067-4fb4-9670-5e323da79090", "similarity_coefficient": 0.2570093457943925, "overlap_size": 55 } }, { "data": { "id": "afe93be2-a6e2-4440-af70-7b0b85100c6f", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.30666666666666664, "overlap_size": 46 } }, { "data": { "id": "da6618f4-79c8-41ba-852d-b41d0c2e07ce", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.44755244755244755, "overlap_size": 64 } }, { "data": { "id": "bdcce4de-16b8-4b59-b20f-67d6317b7b6a", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "similarity_coefficient": 0.28488372093023256, "overlap_size": 49 } }, { "data": { "id": "c0b0cca2-8e21-488a-b17b-ff211bedc6c8", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.266304347826087, "overlap_size": 49 } }, { "data": { "id": "b042faf3-a2f7-4772-85fc-81113c51a151", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.3356164383561644, "overlap_size": 49 } }, { "data": { "id": "828e0b21-fbf8-4b15-8f24-47eea67544b9", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.2864864864864865, "overlap_size": 53 } }, { "data": { "id": "36ad6c8f-11af-4838-9822-cf42caa904de", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.2538860103626943, "overlap_size": 49 } }, { "data": { "id": "6aa302d5-505b-449c-9a71-4d59eabf3880", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.2578947368421053, "overlap_size": 49 } }, { "data": { "id": "1a72022e-fed5-4a4a-9c9b-7a1c779c767e", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.3081761006289308, "overlap_size": 49 } }, { "data": { "id": "3fd7bcbe-c06b-4c9b-8731-75c45739f955", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "72fd7976-1a23-4642-833b-600f2c123e40", "similarity_coefficient": 0.30201342281879195, "overlap_size": 45 } }, { "data": { "id": "5b7901e3-b16e-45e9-96bb-19985f34fd30", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.3087248322147651, "overlap_size": 46 } }, { "data": { "id": "17e2d49e-b99e-4dc0-a09e-6adf9b1b7ba5", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.3310810810810811, "overlap_size": 49 } }, { "data": { "id": "3d1cb079-647e-471c-888a-e0fdf01546ca", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.3048780487804878, "overlap_size": 50 } }, { "data": { "id": "90a4af8d-ac34-40c9-9003-05633be45544", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.3333333333333333, "overlap_size": 49 } }, { "data": { "id": "11184aae-82ca-41fc-8ec3-0763c3376a18", "source": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.30246913580246915, "overlap_size": 49 } }, { "data": { "id": "da8cd93a-2d6a-420f-844d-3fe3e35d97b8", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.746268656716418, "overlap_size": 50 } }, { "data": { "id": "6b334f17-f1e4-4efe-abb0-7c726cfeb977", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "690d048a-ce8c-4e43-9ab0-ed9976703ad9", "similarity_coefficient": 0.28217821782178215, "overlap_size": 57 } }, { "data": { "id": "5c17db32-40ba-4516-bc46-701b3cfc0bdb", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.5, "overlap_size": 49 } }, { "data": { "id": "684bb143-dc25-43d2-ba55-a7d501ef62de", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.29411764705882354, "overlap_size": 50 } }, { "data": { "id": "7f1d694d-a329-4364-95fa-792af6c95dbc", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "1732e9b0-d067-4fb4-9670-5e323da79090", "similarity_coefficient": 0.37593984962406013, "overlap_size": 50 } }, { "data": { "id": "ea4a3bfb-d55b-46fb-af0a-4a78b8c68344", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.746268656716418, "overlap_size": 50 } }, { "data": { "id": "e902bcf2-43b3-44c3-a360-7b58feca8297", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49 } }, { "data": { "id": "11a1c7c7-a892-4b7b-8371-e2663346a9b9", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49 } }, { "data": { "id": "6a53d3fa-d56e-49aa-8c36-2ee1a7a3e27d", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.4766355140186916, "overlap_size": 51 } }, { "data": { "id": "8cf56399-dfc5-446f-967d-78f142a14204", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "e493e3b1-da6b-4c91-8b97-3f720d7cc1f5", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.39344262295081966, "overlap_size": 24 } }, { "data": { "id": "18755673-7bea-47a4-bb8a-8617592430b1", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.4339622641509434, "overlap_size": 46 } }, { "data": { "id": "0dd1e2da-2cba-4395-9e95-1006243bbe75", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.746268656716418, "overlap_size": 50 } }, { "data": { "id": "b91dd087-fee5-4b5e-876a-956012b20a69", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49 } }, { "data": { "id": "930c8528-aa50-47aa-abd9-93b69038cc8e", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.390625, "overlap_size": 50 } }, { "data": { "id": "7c7eeb7e-44f5-4ccb-b9e0-c5a450255a56", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "904648c2-551b-426e-815e-74ced2374458", "similarity_coefficient": 0.27071823204419887, "overlap_size": 49 } }, { "data": { "id": "2de6840b-899f-4cae-bfc4-7469709c6034", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.37398373983739835, "overlap_size": 46 } }, { "data": { "id": "572dab1f-00de-4b82-8679-3b91c7e76f75", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49 } }, { "data": { "id": "684bb14e-3f4d-48b3-b70c-34e2d3bf4ca4", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49 } }, { "data": { "id": "2d324fe6-9d63-4068-bf58-d838e149d269", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49 } }, { "data": { "id": "19e37196-bedc-4345-aa5e-0d5b07879f57", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.684931506849315, "overlap_size": 50 } }, { "data": { "id": "f36007ca-a145-4308-96cf-c3c2fe603037", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "72fd7976-1a23-4642-833b-600f2c123e40", "similarity_coefficient": 0.7142857142857143, "overlap_size": 45 } }, { "data": { "id": "239af4f5-66ae-4edf-9a99-3d2bb1b6895f", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.6410256410256411, "overlap_size": 50 } }, { "data": { "id": "f9cb6412-ed3e-411d-8497-657e6608e4b2", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "similarity_coefficient": 0.48936170212765956, "overlap_size": 46 } }, { "data": { "id": "776de68d-ccc0-4bb3-9745-4211e9870382", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.7258064516129032, "overlap_size": 45 } }, { "data": { "id": "b4d3b77f-229c-450a-be80-66fc3afd5a7a", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.6712328767123288, "overlap_size": 49 } }, { "data": { "id": "3a4ebf12-66be-4cc1-8aa0-dda3ce9e3d14", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.2768361581920904, "overlap_size": 49 } }, { "data": { "id": "5980dcf1-fefe-4493-8888-39587f81eb19", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.647887323943662, "overlap_size": 46 } }, { "data": { "id": "a1b15f14-e243-44c6-895d-85c3fb72f2fa", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "981a5689-30e9-4b05-85a0-ec4d58d4aa49", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.8333333333333334, "overlap_size": 50 } }, { "data": { "id": "2d153293-f906-4756-93df-615a7e55c440", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49 } }, { "data": { "id": "fe3575aa-2462-4d38-ab43-f5a4e98fd2c4", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49 } }, { "data": { "id": "ef38b21f-5d0d-433e-81ed-af46346e1994", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.7580645161290323, "overlap_size": 47 } }, { "data": { "id": "6d52fb55-168b-4ee5-8e27-6aead6f0b8ed", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49 } }, { "data": { "id": "d7782f67-ab56-4bd0-b9f6-1e7172a80575", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49 } }, { "data": { "id": "3fa554f9-eb88-42cf-b647-cb372e90ce35", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49 } }, { "data": { "id": "f872aebd-414e-4297-b647-d9f574554598", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "b8ae5402-842b-4eda-a4d5-d755f6c16a5a", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.704225352112676, "overlap_size": 50 } }, { "data": { "id": "cafd2847-7acc-4e8d-9af4-a24c9374998c", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49 } }, { "data": { "id": "789deb92-6fb1-450d-ab4c-37e41fd85ad8", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.765625, "overlap_size": 49 } }, { "data": { "id": "5e86df20-d8c7-4c71-8940-eae9d0d4e475", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "14654f3b-2789-4eed-a644-a2a654fa934b", "similarity_coefficient": 0.2631578947368421, "overlap_size": 50 } }, { "data": { "id": "1950611e-4f17-4c0b-9ea3-6fc8c3155e3d", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.3617021276595745, "overlap_size": 51 } }, { "data": { "id": "142c8882-b484-4fed-a8e7-90599e771802", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.4791666666666667, "overlap_size": 46 } }, { "data": { "id": "9d7a75b0-564d-427b-a9c1-89c30ccd02d3", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "similarity_coefficient": 0.35135135135135137, "overlap_size": 52 } }, { "data": { "id": "b043574e-3d5c-452e-8dc3-94e86e891176", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "c919bc7f-bb12-4cc8-9594-144c8cb77ad1", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.2893081761006289, "overlap_size": 46 } }, { "data": { "id": "433da7d3-40a7-4148-883a-b5599d5516da", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.5360824742268041, "overlap_size": 52 } }, { "data": { "id": "e18069dc-71c1-462f-8a6d-d904608fb4e8", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.5666666666666667, "overlap_size": 51 } }, { "data": { "id": "9bab0761-1f8c-47d7-b289-451d61f991eb", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.746031746031746, "overlap_size": 47 } }, { "data": { "id": "e4ae79de-aa46-453c-9928-3f9aef972391", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49 } }, { "data": { "id": "1da61b33-058e-4f47-8905-30f187850174", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "8b94e8eb-6277-4621-92ad-57dd0961f017", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "0d3bb231-67c2-46cb-93ed-80383c138af9", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49 } }, { "data": { "id": "84558c62-87f5-422b-bfbf-8e28f8d47c92", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.6133333333333333, "overlap_size": 46 } }, { "data": { "id": "c79e33d7-85ea-45ea-939a-e9d0c16aa4a9", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49 } }, { "data": { "id": "35b15042-147a-4446-b13b-dc347dcd7138", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.3048780487804878, "overlap_size": 50 } }, { "data": { "id": "6ac3a84b-3e76-4435-8425-8b6e10c05815", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49 } }, { "data": { "id": "568c3d29-2442-43ab-bcc9-c9fcb25f5327", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "a6609db1-5756-4ff4-8409-5013d1a74f05", "similarity_coefficient": 0.323943661971831, "overlap_size": 46 } }, { "data": { "id": "7d3316ce-82be-4988-acd7-b0dc84889b90", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49 } }, { "data": { "id": "08b9d2f5-0d76-40cb-97d8-91b13d57b255", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.6410256410256411, "overlap_size": 50 } }, { "data": { "id": "f7e9862e-1832-43c6-9cbe-470cc057254d", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.26595744680851063, "overlap_size": 50 } }, { "data": { "id": "2b6e45cf-10c6-4e5f-b22e-bde1a51043eb", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "17018f59-7b29-40d7-bb46-1283a625ad23", "similarity_coefficient": 0.3424657534246575, "overlap_size": 50 } }, { "data": { "id": "544e2cb4-a740-43e5-9134-a14b134fcc15", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.5212765957446809, "overlap_size": 49 } }, { "data": { "id": "8fdf393e-e1d7-4176-ade1-0f7de60716cc", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "dec11a24-597a-4f26-846a-eed2d73e5b96", "similarity_coefficient": 0.5050505050505051, "overlap_size": 50 } }, { "data": { "id": "95c47f42-537a-4b2a-99df-9c91123557ea", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49 } }, { "data": { "id": "c6abd5a8-bc4a-47a6-a8d0-d7da3b0669d5", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.550561797752809, "overlap_size": 49 } }, { "data": { "id": "f98055f6-5901-4a2d-84e9-eeefd4d4cc7b", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.696969696969697, "overlap_size": 46 } }, { "data": { "id": "279130dd-1f3e-4baf-997b-f0cb880b80b7", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.5164835164835165, "overlap_size": 47 } }, { "data": { "id": "a3382b33-5d86-48d8-bb01-3eb3cb2dbb05", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.7538461538461538, "overlap_size": 49 } }, { "data": { "id": "2f0a8d48-e224-4a2a-848f-ef86834a79a7", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.8032786885245902, "overlap_size": 49 } }, { "data": { "id": "7716d088-6ecb-4800-96fd-aed2d779eafe", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49 } }, { "data": { "id": "82a8cea9-17f0-4837-b169-3ac20c143aea", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.4, "overlap_size": 50 } }, { "data": { "id": "4cfca267-57c0-454d-b0b8-9de668e8e646", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.32857142857142857, "overlap_size": 46 } }, { "data": { "id": "896db235-fdf9-4c4f-927d-2d20db60166d", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49 } }, { "data": { "id": "224f2fd2-1f1e-4a98-8db1-5333d946bff5", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.4298245614035088, "overlap_size": 49 } }, { "data": { "id": "03418dfb-e469-4ebc-9f27-14995a211b45", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49 } }, { "data": { "id": "d825ac3d-8d5e-4dcf-8e34-78c3e8b94bc6", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49 } }, { "data": { "id": "8d48fef9-b2f5-42bb-a254-f6bc10e75e7e", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.5555555555555556, "overlap_size": 50 } }, { "data": { "id": "015e0116-3985-41f2-adf8-1f3c6349ce29", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "f9954f17-1709-479e-8d22-403ed421f128", "similarity_coefficient": 0.5340909090909091, "overlap_size": 47 } }, { "data": { "id": "7ec7db63-0f88-4b9a-9315-207b185c0e64", "source": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49 } }, { "data": { "id": "c27e04bd-fb05-4153-bc79-cc22a61ac04d", "source": "5c9e9840-0565-4e14-9526-c57609d4c61e", "target": "cbaabd94-0052-42ac-986a-766c1c57b30d", "similarity_coefficient": 0.38242894056847543, "overlap_size": 148 } }, { "data": { "id": "264d76a0-a0d2-4861-a8a5-f33094deb5f4", "source": "5c9e9840-0565-4e14-9526-c57609d4c61e", "target": "3c6595b7-4300-40c2-9b8b-be0dea463aa6", "similarity_coefficient": 0.41802067946824223, "overlap_size": 283 } }, { "data": { "id": "97fcb717-3778-48d0-9155-84c8153cf308", "source": "5c9e9840-0565-4e14-9526-c57609d4c61e", "target": "db958270-8c68-47a1-8245-d553c49a126f", "similarity_coefficient": 0.6216867469879518, "overlap_size": 258 } }, { "data": { "id": "fb51a86c-472d-437d-88c4-e5295ab5c65a", "source": "5c9e9840-0565-4e14-9526-c57609d4c61e", "target": "1cf1ee8e-77cc-4e7d-8939-adf02b347c93", "similarity_coefficient": 0.4453924914675768, "overlap_size": 261 } }, { "data": { "id": "5289dfd6-f401-4c47-baee-fc61b89187d2", "source": "5c9e9840-0565-4e14-9526-c57609d4c61e", "target": "3721be01-7fa4-400f-b4f5-9bca4e773261", "similarity_coefficient": 0.2828507795100223, "overlap_size": 127 } }, { "data": { "id": "c03addf4-e977-40c0-b965-246a3c52357a", "source": "5c9e9840-0565-4e14-9526-c57609d4c61e", "target": "b570f307-7c80-461e-9c1b-ff264f6ff8af", "similarity_coefficient": 0.7441860465116279, "overlap_size": 288 } }, { "data": { "id": "5ace6289-81b5-43e9-a2f4-695847a605c8", "source": "5c9e9840-0565-4e14-9526-c57609d4c61e", "target": "753dfe0f-6f61-4a49-90c1-4b3708665dbf", "similarity_coefficient": 0.26185344827586204, "overlap_size": 243 } }, { "data": { "id": "ee5c9cb6-d8ec-4adb-9cfe-832929d3b989", "source": "5c9e9840-0565-4e14-9526-c57609d4c61e", "target": "7861fd51-2caf-44e2-b4cb-7e64f8c0b51f", "similarity_coefficient": 0.2923433874709977, "overlap_size": 126 } }, { "data": { "id": "58f9bebf-94ee-4719-b879-1e26d98d67e1", "source": "5c9e9840-0565-4e14-9526-c57609d4c61e", "target": "0b287a39-9629-4455-988e-99703244b949", "similarity_coefficient": 0.6231884057971014, "overlap_size": 387 } }, { "data": { "id": "ae9a0895-0b4c-43b6-97f2-883e93eaa57e", "source": "5c9e9840-0565-4e14-9526-c57609d4c61e", "target": "750e524e-6f52-4983-9819-5b723c8afe66", "similarity_coefficient": 0.2930232558139535, "overlap_size": 126 } }, { "data": { "id": "bf6902c4-f26f-4551-bfa6-f23f244d1d29", "source": "3bfb8e85-f48e-403f-ac3c-bf8166cffc77", "target": "44338cf6-b799-4097-a74f-e7386e686f63", "similarity_coefficient": 0.34285714285714286, "overlap_size": 24 } }, { "data": { "id": "d82d1493-7743-4822-967e-f8a0a69d68a2", "source": "3bfb8e85-f48e-403f-ac3c-bf8166cffc77", "target": "405225ec-878f-41f4-9b4f-158f553cd119", "similarity_coefficient": 0.42857142857142855, "overlap_size": 24 } }, { "data": { "id": "fa0689dc-aafd-4540-b60b-986f51e86ba9", "source": "3bfb8e85-f48e-403f-ac3c-bf8166cffc77", "target": "a87e7bfc-894c-4e4b-b80f-64bba3e8adc1", "similarity_coefficient": 0.3870967741935484, "overlap_size": 24 } }, { "data": { "id": "ffd49960-a7ed-4a0b-aa73-0db68fda0da0", "source": "3bfb8e85-f48e-403f-ac3c-bf8166cffc77", "target": "386aac68-a2ec-4a2a-a96e-7b32087b2e75", "similarity_coefficient": 0.5319148936170213, "overlap_size": 25 } }, { "data": { "id": "96392d8d-2930-49a4-9638-a6f57b231b3f", "source": "3bfb8e85-f48e-403f-ac3c-bf8166cffc77", "target": "51aa4010-3e79-4fea-9a8d-7d096b0002fa", "similarity_coefficient": 0.4067796610169492, "overlap_size": 24 } }, { "data": { "id": "c3dd4972-a828-4b18-a509-2fb52fc6d44f", "source": "3bfb8e85-f48e-403f-ac3c-bf8166cffc77", "target": "9b45383f-4e68-4ffa-a477-21d4f8675759", "similarity_coefficient": 0.38095238095238093, "overlap_size": 24 } }, { "data": { "id": "46bfe701-78e9-425b-9726-89ce4fa73742", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "735ee0c0-52e8-4fa8-80d1-4b66f9146e3e", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.5, "overlap_size": 78 } }, { "data": { "id": "02032cfc-10ee-44e8-809f-7fa927aeb1c3", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "c1f0be57-abbb-471e-8985-4d2ee34e58bb", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "71c872d2-1d81-40fb-9cd6-25a0e52d3b7b", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31 } }, { "data": { "id": "9f9d98e8-72d6-410c-ae48-5586aae90cfa", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "028b076d-6e18-457b-b78f-ca7a32cbc2a0", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "ceca9f46-99ce-4b56-afa4-73beb310eb0d", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "078b6e42-7d1b-4f50-8b92-5bb123a6595f", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "088965ae-beab-49a6-ba7f-62c8508bf897", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "ca0f0fda-8615-4d40-9a93-74c7ed62428c", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "5b5e8b03-6d4e-4236-b73d-41e0f9b468d2", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78 } }, { "data": { "id": "40c4669d-125b-4321-ba67-ff163b527cd1", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "7f0de18e-bde1-42f4-9a73-00fb7e3d8a27", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "e963687c-7292-4150-aebd-2bde0ee458a8", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "2ceffe48-8acf-42cc-886a-bfb391df0fbd", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "b1a91697-5e55-443b-a683-f6f85fb91f5c", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "964c59c2-669a-4e37-97f6-0ceb4d6177ae", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "29701017-0d82-42c8-8f94-31092a92a48d", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "d7fb67a7-aa50-4d25-bc7d-1dee817fc9a8", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.3561643835616438, "overlap_size": 78 } }, { "data": { "id": "c61a2f06-a359-4318-a717-b0c596ed34c6", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "d720d120-dc15-46e6-b003-aca777780c67", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "1d5cffec-19bf-4fb3-a354-55f6aa573325", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "24500407-f636-44ed-9254-763c3b68aad6", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79 } }, { "data": { "id": "966d06b7-8bc8-4020-bc89-5d96be84f627", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "e33be69e-92ce-4b05-881d-0ac1ddacd845", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.6694915254237288, "overlap_size": 79 } }, { "data": { "id": "5335cadb-5e84-47b9-96b7-0ebc525704bf", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31 } }, { "data": { "id": "36b6bc32-e050-4974-a481-376b5a2a7b2a", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "a966733a-44de-48c5-8959-37cec18be5cf", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "35fd1dfc-f5bf-495c-9f51-32b0ae039618", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "611ff36d-7bbc-4322-bcdb-592441240039", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "027bf313-d572-4102-a6b9-afdbf6c2f093", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78 } }, { "data": { "id": "1b09bebb-b0df-4569-b4ad-0595d6c39489", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "f8558edc-78fe-4c60-808d-a16fb06beacc", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "85618a5e-0712-414d-a086-843f21373c0c", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "b47789a2-db54-4dce-8849-470e4d112545", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "84f6f0ed-9615-48ba-a629-667c8302de99", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78 } }, { "data": { "id": "148a3429-10cd-411f-adb7-3584c3b281df", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "c32343ed-0a16-486b-8d70-5a3453e17f1c", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "b17b05e9-23c8-448e-838c-d32a27401b80", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78 } }, { "data": { "id": "786a5dc1-5c47-4b5b-9c7d-b26d6573795e", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "similarity_coefficient": 0.4, "overlap_size": 78 } }, { "data": { "id": "ee25a812-ef73-4c08-b9e5-a04f4979b5d8", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "fd87e321-97a3-485b-8b89-c8b31cb149eb", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.6370967741935484, "overlap_size": 79 } }, { "data": { "id": "610165c4-0cbe-4506-b294-e77c43aebd32", "source": "7e8a2798-3efd-4409-a939-be2763ac2d08", "target": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31 } }, { "data": { "id": "a4e546a2-a489-4880-a217-c1bc9fc8a0f9", "source": "ea3958a9-39f3-4ea3-b2e0-303c3b0359c8", "target": "c82aea32-0e25-4f32-aeb3-64b4548d9190", "similarity_coefficient": 1, "overlap_size": 22 } }, { "data": { "id": "88bb307d-2d89-43ed-a888-d8f411cbb6af", "source": "ea3958a9-39f3-4ea3-b2e0-303c3b0359c8", "target": "90a1fbc3-8b4c-4e8c-9a45-0f1ff6401376", "similarity_coefficient": 1, "overlap_size": 22 } }, { "data": { "id": "ea5dd1c7-0fdf-434a-ae48-ef897a67741f", "source": "ea3958a9-39f3-4ea3-b2e0-303c3b0359c8", "target": "d38e07b4-dd9a-4f3d-9662-82e180f80cdf", "similarity_coefficient": 1, "overlap_size": 22 } }, { "data": { "id": "ef824bf7-a959-475e-a195-fc94c24369a5", "source": "ea3958a9-39f3-4ea3-b2e0-303c3b0359c8", "target": "d51806b8-78ae-4131-ace1-d9be5fa5560a", "similarity_coefficient": 1, "overlap_size": 22 } }, { "data": { "id": "c25c7c85-7e4d-4b84-8a4a-99abeec7641e", "source": "ea3958a9-39f3-4ea3-b2e0-303c3b0359c8", "target": "de077ab2-2978-4986-a338-5f664401cd65", "similarity_coefficient": 1, "overlap_size": 22 } }, { "data": { "id": "4f64b1d6-0f40-4bae-8a87-3497c43d9d5b", "source": "ea3958a9-39f3-4ea3-b2e0-303c3b0359c8", "target": "6d05fb4b-2380-4626-8ebc-1ed88b0da496", "similarity_coefficient": 1, "overlap_size": 22 } }, { "data": { "id": "6977ab91-831f-44fe-b23a-a92b6fdcb194", "source": "ea3958a9-39f3-4ea3-b2e0-303c3b0359c8", "target": "0ad4929b-20d7-4e32-ad45-dcfb579aade3", "similarity_coefficient": 1, "overlap_size": 22 } }, { "data": { "id": "a5da9ef6-67c0-4323-9b2f-7ee116e91cb9", "source": "330f6663-8dc5-4e65-8302-757d6733634d", "target": "077180f7-758c-4448-8995-446025fc993b", "similarity_coefficient": 0.36283185840707965, "overlap_size": 82 } }, { "data": { "id": "cbb2587f-0685-4e90-aee8-a05ff33e98a7", "source": "330f6663-8dc5-4e65-8302-757d6733634d", "target": "5229abb8-d817-4b27-8b54-4679f2c8353e", "similarity_coefficient": 0.2677165354330709, "overlap_size": 102 } }, { "data": { "id": "f8e83a9d-58c5-48f6-a2ca-7d70937efceb", "source": "330f6663-8dc5-4e65-8302-757d6733634d", "target": "d0695f97-406d-467a-ac9e-3fd20d47a3e9", "similarity_coefficient": 0.3522727272727273, "overlap_size": 62 } }, { "data": { "id": "84f8267a-2ba8-47a6-8e1b-6b34420899b3", "source": "330f6663-8dc5-4e65-8302-757d6733634d", "target": "328ca91a-a7c1-42f5-be44-d20d3d77dd18", "similarity_coefficient": 0.5827814569536424, "overlap_size": 176 } }, { "data": { "id": "ae08a584-b9b2-4cb0-81af-33113607b3b6", "source": "330f6663-8dc5-4e65-8302-757d6733634d", "target": "b76a8552-5234-4d6a-83eb-4221fe662024", "similarity_coefficient": 0.30484330484330485, "overlap_size": 107 } }, { "data": { "id": "0363526e-df2d-4328-b83f-f20697104509", "source": "83ebb4c3-8bd5-4e81-a004-c79572bc5d87", "target": "c7530ee1-195e-4a51-bf3e-3bed2d809cb1", "similarity_coefficient": 0.9652777777777778, "overlap_size": 139 } }, { "data": { "id": "7d4999ea-3b41-4d13-b19e-31913b6e17f7", "source": "83ebb4c3-8bd5-4e81-a004-c79572bc5d87", "target": "97965a8b-8abb-435c-b3aa-b378aa701d0c", "similarity_coefficient": 0.9144736842105263, "overlap_size": 139 } }, { "data": { "id": "cda62f88-bd25-4b20-84cb-249b42b733d0", "source": "d306e139-166c-40a6-97e4-a78e73fa0903", "target": "eb1d3bcf-4842-469d-b080-15ffd6d86e52", "similarity_coefficient": 0.7450980392156863, "overlap_size": 342 } }, { "data": { "id": "3fe612f7-7aa4-4b63-9e6c-302d0821390e", "source": "d306e139-166c-40a6-97e4-a78e73fa0903", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.2679738562091503, "overlap_size": 123 } }, { "data": { "id": "ebd4d0bc-d9d7-4ed5-9012-0675a7846e7e", "source": "d306e139-166c-40a6-97e4-a78e73fa0903", "target": "316b650d-9339-4038-8610-5d7ba652dfb4", "similarity_coefficient": 0.6125, "overlap_size": 343 } }, { "data": { "id": "14cc05f2-8001-4c9b-a340-8cb98d3f808b", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.7213114754098361, "overlap_size": 88 } }, { "data": { "id": "4e691fb1-3457-491f-8b84-01a49e28d6d4", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.7357142857142858, "overlap_size": 103 } }, { "data": { "id": "50693646-fd90-4061-a9d9-c4bb24836a60", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "2d60ebf8-7cdb-4107-b194-05ec9c6b37c4", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "316b650d-9339-4038-8610-5d7ba652dfb4", "similarity_coefficient": 0.25055432372505543, "overlap_size": 113 } }, { "data": { "id": "c6dc1ee7-8e68-480e-a518-297db40c7c75", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.9333333333333333, "overlap_size": 112 } }, { "data": { "id": "015b2040-9e28-47a6-91f4-2499a9b6ad30", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "85618a5e-0712-414d-a086-843f21373c0c", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "26cb1b36-e347-4836-ad57-b8dd857fd85f", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.25925925925925924, "overlap_size": 35 } }, { "data": { "id": "4204a6cf-8104-4e3e-9c10-76bfea36e29d", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.5906040268456376, "overlap_size": 88 } }, { "data": { "id": "cea3c77d-355b-44a2-a3b2-103003a1eca7", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "similarity_coefficient": 0.489247311827957, "overlap_size": 91 } }, { "data": { "id": "c3102609-d8d3-4625-b2da-1ba8dae86add", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "d5120fad-393f-4df3-afea-8705797ceb2e", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "a966733a-44de-48c5-8959-37cec18be5cf", "similarity_coefficient": 0.7213114754098361, "overlap_size": 88 } }, { "data": { "id": "11dbffd8-af82-4136-bcc5-bf7bec63bb28", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.85, "overlap_size": 102 } }, { "data": { "id": "6e4e8b9b-7ff5-43a9-8370-d2631bc365ee", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "68c8be9e-8c95-4e3c-9597-3d5b4b6163aa", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "24500407-f636-44ed-9254-763c3b68aad6", "similarity_coefficient": 0.6341463414634146, "overlap_size": 78 } }, { "data": { "id": "b310b6e2-78b1-40a4-a986-df79c2d014bf", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "7e8a2798-3efd-4409-a939-be2763ac2d08", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "db10e022-3bd8-476a-a17c-9a8ba230dcdc", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "similarity_coefficient": 0.9416666666666667, "overlap_size": 113 } }, { "data": { "id": "80813452-a355-4691-99a4-e19a320dee45", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.6984126984126984, "overlap_size": 88 } }, { "data": { "id": "384fc3a4-b8ff-4add-a222-421cdf14693b", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "2c79bafb-35d6-4ac5-b53c-8e5dadb5e846", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "similarity_coefficient": 0.39111111111111113, "overlap_size": 88 } }, { "data": { "id": "a430c09c-ae7e-4e38-91ef-62ea3817a38f", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "b422a7df-09f8-42b0-8743-267e25b5d82c", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "5503f3b0-c328-4a30-801a-254f16409e00", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "eb1d3bcf-4842-469d-b080-15ffd6d86e52", "similarity_coefficient": 0.3237822349570201, "overlap_size": 113 } }, { "data": { "id": "f9c7f09c-4e40-4253-a4aa-c0a0d2ab242d", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "similarity_coefficient": 0.43333333333333335, "overlap_size": 52 } }, { "data": { "id": "5cde5bd0-ebc9-49c0-82b4-3b0ed3adb278", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "ea776f71-09d4-42e2-b6ba-ccffaa2f2cf3", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "611ff36d-7bbc-4322-bcdb-592441240039", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "7e4e55ff-e157-4743-b186-85bc2d9ef0b7", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "similarity_coefficient": 0.6068965517241379, "overlap_size": 88 } }, { "data": { "id": "82d641d3-4c3d-48e5-a5d5-986ffe139ffd", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "3bb125b1-6085-4eae-b1e8-10bf4b2a0402", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "c42d68cc-ae2a-4675-bb61-4accd31ef60c", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "similarity_coefficient": 0.49166666666666664, "overlap_size": 59 } }, { "data": { "id": "a103f108-5cdb-4dad-a907-7acbeea2407f", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "84f6f0ed-9615-48ba-a629-667c8302de99", "similarity_coefficient": 0.7142857142857143, "overlap_size": 90 } }, { "data": { "id": "3735ede1-e467-4904-841b-5655f57a557a", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "369a8974-4667-4028-9566-121a5dd390b9", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "bea110dd-0784-4855-ba92-4cffd4b33bd8", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.4731182795698925, "overlap_size": 88 } }, { "data": { "id": "48a89759-d265-4409-bd3b-506b1c675c5e", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.37446808510638296, "overlap_size": 88 } }, { "data": { "id": "e9bd371f-0e27-47af-b26f-5107b959ffa2", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.6164383561643836, "overlap_size": 90 } }, { "data": { "id": "4d6db997-e299-43ec-ac8b-d5c7e69d3e53", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "088965ae-beab-49a6-ba7f-62c8508bf897", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "e0d45420-4193-4da7-b080-dc204fe87898", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.6164383561643836, "overlap_size": 90 } }, { "data": { "id": "828aa121-39be-49c8-b6d5-fa57bf41ea76", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "e377345c-2f96-4c7e-81c8-e9245ddb5706", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "similarity_coefficient": 0.5, "overlap_size": 60 } }, { "data": { "id": "bcb99109-3651-4c0e-bfaa-a98aebf4acd2", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.49166666666666664, "overlap_size": 59 } }, { "data": { "id": "804d2599-ba79-431f-a54e-e427472d4a98", "source": "e47a74cd-5800-429b-b89e-f490004f32db", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.3643724696356275, "overlap_size": 90 } }, { "data": { "id": "fb1692c9-8e45-45be-a1a8-52f5bc3fe4a2", "source": "e8e52742-1f0c-4014-bb5f-f72c7ca31fd0", "target": "af5b9119-d987-4c84-8d56-e08a68613613", "similarity_coefficient": 0.6240601503759399, "overlap_size": 83 } }, { "data": { "id": "f6e47aef-92cc-438d-94e3-324f681d7dc7", "source": "e8e52742-1f0c-4014-bb5f-f72c7ca31fd0", "target": "859be89e-4625-43a6-b4a6-ab2434d64e10", "similarity_coefficient": 0.29605263157894735, "overlap_size": 45 } }, { "data": { "id": "34d60d3a-e4d5-4c2c-8403-ef072a0110e0", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.5255474452554745, "overlap_size": 72 } }, { "data": { "id": "1b2d02d5-6e7a-4195-8754-e7f020176c3d", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "85618a5e-0712-414d-a086-843f21373c0c", "similarity_coefficient": 0.7659574468085106, "overlap_size": 72 } }, { "data": { "id": "038d7575-0ef5-4c15-b71a-014ca909e73e", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.7254901960784313, "overlap_size": 74 } }, { "data": { "id": "d337301c-bbd1-45c8-ab97-3bbb91378f25", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.7659574468085106, "overlap_size": 72 } }, { "data": { "id": "7988205d-9f60-454c-8f1e-2d056b77a327", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.5967741935483871, "overlap_size": 74 } }, { "data": { "id": "5b442274-21ae-4cca-84d9-bafdb6dba024", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "similarity_coefficient": 0.4378698224852071, "overlap_size": 74 } }, { "data": { "id": "dbaa8edf-e61b-42d6-97ce-a28469b3c634", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "a966733a-44de-48c5-8959-37cec18be5cf", "similarity_coefficient": 0.7254901960784313, "overlap_size": 74 } }, { "data": { "id": "0d9e903f-8bbf-4f3d-a31c-79590f6643d5", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.2830188679245283, "overlap_size": 30 } }, { "data": { "id": "9a7cff11-bdbd-459b-b64b-f811a1caf496", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.5736434108527132, "overlap_size": 74 } }, { "data": { "id": "ff41de88-5827-4534-bb4e-2be44cfd1d97", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "7e8a2798-3efd-4409-a939-be2763ac2d08", "similarity_coefficient": 0.7659574468085106, "overlap_size": 72 } }, { "data": { "id": "14408024-5d02-4476-ac09-9542c4fa9068", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.7659574468085106, "overlap_size": 72 } }, { "data": { "id": "15a66081-99a8-491a-a5de-92d44f714b61", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "similarity_coefficient": 0.25862068965517243, "overlap_size": 30 } }, { "data": { "id": "a5496e19-1ab4-4894-8771-dcc6e917cd62", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "similarity_coefficient": 0.592, "overlap_size": 74 } }, { "data": { "id": "2c2e13a2-6426-4bfd-bf45-691c6b9cf825", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.7659574468085106, "overlap_size": 72 } }, { "data": { "id": "8184a635-02e6-44fd-bfc7-19feb13fb969", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.2608695652173913, "overlap_size": 30 } }, { "data": { "id": "0cef5b39-3a23-42c1-8864-22fcf4e96097", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "similarity_coefficient": 0.36097560975609755, "overlap_size": 74 } }, { "data": { "id": "2ff80bde-5209-4fab-a06e-464b451e068d", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.7659574468085106, "overlap_size": 72 } }, { "data": { "id": "2d833205-9be0-40ac-8469-9fe8cc8cba9e", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.4457831325301205, "overlap_size": 74 } }, { "data": { "id": "86e9f0e4-1838-4e2c-b3d8-cd8a608f7d12", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "similarity_coefficient": 0.2777777777777778, "overlap_size": 30 } }, { "data": { "id": "db20bbc0-d4eb-41a7-ab53-94002a1d9745", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.6981132075471698, "overlap_size": 74 } }, { "data": { "id": "44f95f3d-1ee7-4480-b5a5-e3f0835b9131", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "84f6f0ed-9615-48ba-a629-667c8302de99", "similarity_coefficient": 0.6851851851851852, "overlap_size": 74 } }, { "data": { "id": "8a848e88-39fc-4907-927d-34c2c8488295", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.34418604651162793, "overlap_size": 74 } }, { "data": { "id": "70759001-97a3-470a-a19e-54671004549b", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.7659574468085106, "overlap_size": 72 } }, { "data": { "id": "841df29d-eafa-4d12-818b-77cd719c8fd0", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "similarity_coefficient": 0.2608695652173913, "overlap_size": 30 } }, { "data": { "id": "8cef33df-3f8f-4c53-8671-423efa653709", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.7659574468085106, "overlap_size": 72 } }, { "data": { "id": "469bb0c7-d0fc-4fab-9d7b-57b093b0891f", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "611ff36d-7bbc-4322-bcdb-592441240039", "similarity_coefficient": 0.7659574468085106, "overlap_size": 72 } }, { "data": { "id": "78fc11c3-4653-4019-8aa3-2e58265cb7a7", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "e47a74cd-5800-429b-b89e-f490004f32db", "similarity_coefficient": 0.5606060606060606, "overlap_size": 74 } }, { "data": { "id": "a8f624f5-f091-4747-95b3-bc5567a46975", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "088965ae-beab-49a6-ba7f-62c8508bf897", "similarity_coefficient": 0.7659574468085106, "overlap_size": 72 } }, { "data": { "id": "54aad227-c8cb-40fe-975b-8f61ffc9b877", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.7659574468085106, "overlap_size": 72 } }, { "data": { "id": "70c2b0a4-d64a-4c79-b6fd-314fd8778eb1", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.3231441048034934, "overlap_size": 74 } }, { "data": { "id": "5d3c4554-eba5-4a04-afc3-a3b36308a2f2", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.7659574468085106, "overlap_size": 72 } }, { "data": { "id": "0803a25d-2915-4429-b1d3-366b87aefd9d", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.578125, "overlap_size": 74 } }, { "data": { "id": "f844351f-4123-4d2f-ac69-9504703dfbbd", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.7659574468085106, "overlap_size": 72 } }, { "data": { "id": "536ac8c3-8216-48db-bed3-19c4d018d239", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.6491228070175439, "overlap_size": 74 } }, { "data": { "id": "095035f1-c69f-4dfb-aa18-6132371912e2", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.7659574468085106, "overlap_size": 72 } }, { "data": { "id": "59980a23-4556-4cb7-a21b-7061ed43a411", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "similarity_coefficient": 0.7659574468085106, "overlap_size": 72 } }, { "data": { "id": "9e6e894a-25d2-4a47-9013-9b819482494d", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "similarity_coefficient": 0.7659574468085106, "overlap_size": 72 } }, { "data": { "id": "84de18be-34cc-4cf1-ac03-9eefbed11042", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "similarity_coefficient": 0.592, "overlap_size": 74 } }, { "data": { "id": "4b14c096-16dd-4f3c-8e32-807ed5f66b8a", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.578125, "overlap_size": 74 } }, { "data": { "id": "b5529127-932d-4f56-bcff-2b8dcf87adb1", "source": "9cc1543e-b2e4-4718-872d-4737deb33c71", "target": "24500407-f636-44ed-9254-763c3b68aad6", "similarity_coefficient": 0.7578947368421053, "overlap_size": 72 } }, { "data": { "id": "203b3350-01bf-4e9c-be70-16526d9f06c7", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "1732e9b0-d067-4fb4-9670-5e323da79090", "similarity_coefficient": 0.33793103448275863, "overlap_size": 49 } }, { "data": { "id": "9455d64a-e005-40b4-89e1-0b89dea10296", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.620253164556962, "overlap_size": 49 } }, { "data": { "id": "81856bc0-f7b2-4d6b-a280-e31109d8263c", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.3275862068965517, "overlap_size": 57 } }, { "data": { "id": "8a9b1805-dbd9-4c90-a282-f0f2a5e6c4e3", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.620253164556962, "overlap_size": 49 } }, { "data": { "id": "de43556e-9537-46aa-8a47-0676087af9a3", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49 } }, { "data": { "id": "e1156e35-b24c-4f6f-ad87-b48bc7a46a9f", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "similarity_coefficient": 0.7647058823529411, "overlap_size": 52 } }, { "data": { "id": "5a66bf8b-e55c-4860-957f-6409df302c37", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49 } }, { "data": { "id": "63618905-a3fd-4522-a005-a3de28147309", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.34328358208955223, "overlap_size": 46 } }, { "data": { "id": "69dfd8f2-bb79-4a77-bc1b-e17f0e0f2be2", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.5425531914893617, "overlap_size": 51 } }, { "data": { "id": "6855e215-6c08-4766-854e-48bba4664176", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.3333333333333333, "overlap_size": 24 } }, { "data": { "id": "a71acd08-d9d3-4f24-b32a-bdab1ece2bb2", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49 } }, { "data": { "id": "3ecd179b-a204-4b4c-bb69-701cad05fe48", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49 } }, { "data": { "id": "5f92a551-3556-4ea5-b9b6-ab68102f9b1f", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "904648c2-551b-426e-815e-74ced2374458", "similarity_coefficient": 0.2552083333333333, "overlap_size": 49 } }, { "data": { "id": "3f6cd6ff-4efb-4b45-aaa0-e1a1e006d0da", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.6712328767123288, "overlap_size": 49 } }, { "data": { "id": "ac6304ec-8d07-4666-a16f-7528ebe3431e", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "43bab27e-2557-4a89-9e40-38dbd0cee54b", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.4, "overlap_size": 54 } }, { "data": { "id": "44748727-4972-402f-8602-f8b66bf1f38d", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.36764705882352944, "overlap_size": 50 } }, { "data": { "id": "74123a90-07ab-407b-b658-53e4dc6b1fb1", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.4424778761061947, "overlap_size": 50 } }, { "data": { "id": "7c0937e0-f61b-4eeb-a37d-1ae6c943139d", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49 } }, { "data": { "id": "e56ba251-0f6b-4981-982b-cf5cacc881b8", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49 } }, { "data": { "id": "37b7c9d2-98f3-45af-a5cd-be3d70ca9059", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "72fd7976-1a23-4642-833b-600f2c123e40", "similarity_coefficient": 0.6081081081081081, "overlap_size": 45 } }, { "data": { "id": "5342213a-93cb-4a02-a120-d6e97e3c22b4", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.7647058823529411, "overlap_size": 52 } }, { "data": { "id": "3ce2b6db-0d4b-40b2-8fa8-339c6165414f", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.7647058823529411, "overlap_size": 52 } }, { "data": { "id": "3266d5a0-75da-4f7d-8b96-c6350cc89d0a", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.5604395604395604, "overlap_size": 51 } }, { "data": { "id": "c2d08ecc-12c6-480e-aee2-33d5a7a08d3f", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49 } }, { "data": { "id": "d689eef4-c18b-4fcb-bfad-fc2eb399c4a6", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.6216216216216216, "overlap_size": 46 } }, { "data": { "id": "f8b931f0-f68a-406f-89ad-5ab3b50e1940", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.620253164556962, "overlap_size": 49 } }, { "data": { "id": "109b370e-f80d-479d-8c86-aa688496b959", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49 } }, { "data": { "id": "a457fd47-221a-4c7d-9725-9b1c44958352", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49 } }, { "data": { "id": "60db35db-b3c8-4f55-840b-fdcf5640c464", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49 } }, { "data": { "id": "6363eff0-ef70-4336-ad08-39d4f2988c8d", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "similarity_coefficient": 0.5483870967741935, "overlap_size": 51 } }, { "data": { "id": "1a556260-6b29-46e4-9094-3fedf4840cff", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49 } }, { "data": { "id": "0780c02e-af24-4949-aa64-c7d156a288ec", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49 } }, { "data": { "id": "50c58831-ca0f-4ea5-ade0-62486a37c062", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.6164383561643836, "overlap_size": 45 } }, { "data": { "id": "56f10aa4-ee35-4941-ae3a-0c80eb3dc8b1", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.5666666666666667, "overlap_size": 51 } }, { "data": { "id": "b0334414-994b-434a-9af8-fb9b5291a3cc", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.5, "overlap_size": 52 } }, { "data": { "id": "5571a65a-cee0-4fb6-a756-812e5eb2d325", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.7066666666666667, "overlap_size": 53 } }, { "data": { "id": "c5eb3408-3cfb-47d1-930b-85f62f90a264", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "fb172c5a-c242-43e8-98a4-bc060890f253", "similarity_coefficient": 0.25, "overlap_size": 68 } }, { "data": { "id": "360b570c-898e-49d9-adbc-a19d31a827b1", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.44144144144144143, "overlap_size": 49 } }, { "data": { "id": "447656fe-6015-4f2e-bb8c-ae5787b3c628", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "8a7f472b-5ae4-4600-a972-c651ddfbaf11", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "similarity_coefficient": 0.5567010309278351, "overlap_size": 54 } }, { "data": { "id": "3d242112-81fd-45be-aee3-4851ea417436", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.494949494949495, "overlap_size": 49 } }, { "data": { "id": "dd904110-4063-4bd4-9119-b346c062c226", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.6133333333333333, "overlap_size": 46 } }, { "data": { "id": "630475d8-ff91-494c-b9fd-4d43a9ffb039", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.26063829787234044, "overlap_size": 49 } }, { "data": { "id": "7614e5d7-c9aa-409e-892b-acfada3eb644", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.5348837209302325, "overlap_size": 46 } }, { "data": { "id": "99f8cecc-7f2d-4578-aa71-c3313c80b492", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.5454545454545454, "overlap_size": 54 } }, { "data": { "id": "5deac8a8-8c5b-48ed-be2c-c43b4649a71b", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.5360824742268041, "overlap_size": 52 } }, { "data": { "id": "9af4a53d-2e66-4c02-9c63-def4d310475f", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.7647058823529411, "overlap_size": 52 } }, { "data": { "id": "ecdd9e81-720a-4ae2-abf4-43cb54042b34", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "14654f3b-2789-4eed-a644-a2a654fa934b", "similarity_coefficient": 0.28061224489795916, "overlap_size": 55 } }, { "data": { "id": "24e635da-da01-4936-ae69-842bc7325259", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "similarity_coefficient": 0.30246913580246915, "overlap_size": 49 } }, { "data": { "id": "af61c323-eaae-4d85-b60b-7f13896f9a8b", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.3181818181818182, "overlap_size": 49 } }, { "data": { "id": "56416824-0255-4377-9d8a-12366f916e79", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.3157894736842105, "overlap_size": 54 } }, { "data": { "id": "0963e2f7-669e-43f7-b0a1-62afdad515c2", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.6125, "overlap_size": 49 } }, { "data": { "id": "b808b1ac-e4dd-4789-8b05-b20cd1dea568", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.28350515463917525, "overlap_size": 55 } }, { "data": { "id": "2ecbbea7-4ec9-4dc6-93ad-677d9cfba7d5", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "f25e0f64-0806-4aba-86f4-25632814fe1a", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.5444444444444444, "overlap_size": 49 } }, { "data": { "id": "87ff1c75-f7a6-43c8-911c-31182e1fe8d1", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "17018f59-7b29-40d7-bb46-1283a625ad23", "similarity_coefficient": 0.310126582278481, "overlap_size": 49 } }, { "data": { "id": "989d3ca4-09cf-4fc0-aca3-29764df4d979", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.5977011494252874, "overlap_size": 52 } }, { "data": { "id": "eeba5d14-e69f-408f-b791-e6be762cff00", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "0d3bb231-67c2-46cb-93ed-80383c138af9", "similarity_coefficient": 0.4224137931034483, "overlap_size": 49 } }, { "data": { "id": "fff5fb0e-ee96-4f4c-8667-78d49d1e655c", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.392, "overlap_size": 49 } }, { "data": { "id": "562dd571-6f60-4a37-9e5a-cd62283ce742", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.4152542372881356, "overlap_size": 49 } }, { "data": { "id": "12b32088-8417-45ae-b13b-24d207407095", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49 } }, { "data": { "id": "f9e94ccf-dd17-4274-a123-6b1dfa8780b3", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "dec11a24-597a-4f26-846a-eed2d73e5b96", "similarity_coefficient": 0.5094339622641509, "overlap_size": 54 } }, { "data": { "id": "7642347c-56dc-434b-81ca-5810be8ec734", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.4117647058823529, "overlap_size": 49 } }, { "data": { "id": "b169f101-b5f8-4152-866b-583bba9d3a62", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "a6609db1-5756-4ff4-8409-5013d1a74f05", "similarity_coefficient": 0.3724137931034483, "overlap_size": 54 } }, { "data": { "id": "53ebb4a7-18d1-4e24-bd9e-838d1d94515a", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.44660194174757284, "overlap_size": 46 } }, { "data": { "id": "433b8cff-e9a7-455b-b9a6-6c241fca82a1", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.64, "overlap_size": 48 } }, { "data": { "id": "c70dc0f2-9eb2-4433-8624-430320fde656", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49 } }, { "data": { "id": "9fd9c2d9-2d2a-4a8e-815d-935782842f66", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.8382352941176471, "overlap_size": 57 } }, { "data": { "id": "2b8af8b0-b1d5-40b1-8277-ba2007dd8197", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49 } }, { "data": { "id": "347fa64c-60cc-4014-a0ca-11bc1afdbe02", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.620253164556962, "overlap_size": 49 } }, { "data": { "id": "aac61162-735d-4b41-912f-95b6c82d963c", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "f9954f17-1709-479e-8d22-403ed421f128", "similarity_coefficient": 0.47474747474747475, "overlap_size": 47 } }, { "data": { "id": "2712e8c4-29be-4179-aa0a-a352f00c469a", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49 } }, { "data": { "id": "3096e35a-f2b1-4b0c-b918-558ad67b0605", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.3416149068322981, "overlap_size": 55 } }, { "data": { "id": "e5b3c389-ba1d-4773-9e5c-41de95c9813f", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49 } }, { "data": { "id": "b27ced87-02c9-44d6-9a01-8500f3d97ce9", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49 } }, { "data": { "id": "b84706a0-86e1-482b-b819-585cf1bab37f", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.42016806722689076, "overlap_size": 50 } }, { "data": { "id": "0ae4c8ed-ce50-4816-a51f-28081193cb27", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.9705882352941176, "overlap_size": 66 } }, { "data": { "id": "2ea4b728-4098-4b70-8104-c79084fc078b", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.31333333333333335, "overlap_size": 47 } }, { "data": { "id": "4b50cc4c-05e2-4421-944e-217224f8e0d4", "source": "d97db454-5799-44e6-8082-d76526e8e917", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49 } }, { "data": { "id": "7efcfe9e-a367-4b96-9c29-037af43a7c62", "source": "c4cb5ff2-7463-4b47-b4d2-2d78f4a4bbc2", "target": "ba7799c9-3170-4d60-b811-31eae5312965", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "3a997bef-cdf0-4300-9bb8-065cf9946a98", "source": "c4cb5ff2-7463-4b47-b4d2-2d78f4a4bbc2", "target": "b6922b98-9220-46d4-a7fc-b265074130b3", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "aeb8440d-b44f-49c5-a75f-b4c1f4001147", "source": "c4cb5ff2-7463-4b47-b4d2-2d78f4a4bbc2", "target": "494ff507-5e65-4be7-8344-3f8a80c7d83e", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "d90d2713-74bf-49be-bc0d-821b0fbbe580", "source": "c4cb5ff2-7463-4b47-b4d2-2d78f4a4bbc2", "target": "9e433294-82cc-456b-bdd9-d76c265b11a9", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "81fd6725-2026-4a6f-a685-acc11133faab", "source": "c4cb5ff2-7463-4b47-b4d2-2d78f4a4bbc2", "target": "053565f9-6e2e-4c4a-8773-19c2e912501a", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "1b433b3f-c5f6-4382-95cb-73a02a223fd4", "source": "c4cb5ff2-7463-4b47-b4d2-2d78f4a4bbc2", "target": "604d62c7-f4cb-4289-a549-64f0bccf5d62", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "225a0970-e72c-4817-bae9-fb0b7c432dcb", "source": "c4cb5ff2-7463-4b47-b4d2-2d78f4a4bbc2", "target": "8f2732b7-bdc9-40f5-8845-a8d9beca3b22", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "356d1357-7a5b-41a1-8137-b222e8f665b4", "source": "c4cb5ff2-7463-4b47-b4d2-2d78f4a4bbc2", "target": "e4351080-e123-4e93-98a7-49cdd09e0c1c", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "45600fd7-0b71-4478-8dbc-bd739dca663d", "source": "c4cb5ff2-7463-4b47-b4d2-2d78f4a4bbc2", "target": "3baa2895-d41a-4b91-925b-906637d521ee", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "7eff2524-6271-4351-b27e-7958043d449e", "source": "c4cb5ff2-7463-4b47-b4d2-2d78f4a4bbc2", "target": "3655cbeb-e303-47c6-b442-f4039b25d644", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "1c2de12c-76c7-45f7-9820-11951c70211d", "source": "c4cb5ff2-7463-4b47-b4d2-2d78f4a4bbc2", "target": "acb95097-45dd-4bf4-aa47-a787e38591d4", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "472a42ce-7ef6-404b-99f0-f6677bec08c2", "source": "c4cb5ff2-7463-4b47-b4d2-2d78f4a4bbc2", "target": "cddebf8c-4f9a-4ec6-b7c9-83312c9d1c51", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "d1f2833d-16a9-423d-bbbd-d9cbb1d322e0", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78 } }, { "data": { "id": "3a4afd9f-02e3-48a7-99de-d9eab49060e0", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.33460076045627374, "overlap_size": 88 } }, { "data": { "id": "53ff3626-0d99-4d1d-b53f-9722ede4de14", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.5432098765432098, "overlap_size": 88 } }, { "data": { "id": "d89e77a0-2f28-4116-891c-e387fa286874", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.6285714285714286, "overlap_size": 88 } }, { "data": { "id": "4da47e94-f249-4866-8338-9b9abe9da96a", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "similarity_coefficient": 0.5534591194968553, "overlap_size": 88 } }, { "data": { "id": "028bac83-0075-4d41-b76c-aca7d7e6f445", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "611ff36d-7bbc-4322-bcdb-592441240039", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78 } }, { "data": { "id": "222cdda9-3195-4f0c-a34d-85ed30831d95", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78 } }, { "data": { "id": "c5832657-82c8-4511-8cba-e62763c51657", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78 } }, { "data": { "id": "c9bbdc4b-fde9-4c18-9b06-46326bd9f70b", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.4602272727272727, "overlap_size": 81 } }, { "data": { "id": "3f09ee9a-af84-4852-89ae-09c489cc8582", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "similarity_coefficient": 0.4405940594059406, "overlap_size": 89 } }, { "data": { "id": "c729b7f7-111d-4206-9f4c-f34ebe5056d4", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.6716417910447762, "overlap_size": 90 } }, { "data": { "id": "2053553c-dfda-454f-9ae9-f4cfc9f14336", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.3534136546184739, "overlap_size": 88 } }, { "data": { "id": "d9129631-6f4b-4c71-9030-26eb5cb64c97", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "85618a5e-0712-414d-a086-843f21373c0c", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78 } }, { "data": { "id": "17b17f7d-7f4a-4749-ae85-d3511a847b16", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "9cc1543e-b2e4-4718-872d-4737deb33c71", "similarity_coefficient": 0.5068493150684932, "overlap_size": 74 } }, { "data": { "id": "185cd9c3-eb97-4189-9a6b-d729a72014ad", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "84f6f0ed-9615-48ba-a629-667c8302de99", "similarity_coefficient": 0.6197183098591549, "overlap_size": 88 } }, { "data": { "id": "4b2b60c7-dc33-4f7d-aa72-636daf3f795e", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "088965ae-beab-49a6-ba7f-62c8508bf897", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78 } }, { "data": { "id": "f784c5f6-632c-4c4a-8040-ccb287ab5216", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "similarity_coefficient": 0.3682008368200837, "overlap_size": 88 } }, { "data": { "id": "9ae98a64-5db8-4135-a451-e8c877735d98", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78 } }, { "data": { "id": "20b7a8e6-b5a5-4124-be0c-265336f024fe", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.8701298701298701, "overlap_size": 134 } }, { "data": { "id": "df08d22c-8304-463d-8f94-f9c4c49c4e14", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78 } }, { "data": { "id": "11f59215-88eb-4772-b21b-a080541cb0f1", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "7e8a2798-3efd-4409-a939-be2763ac2d08", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78 } }, { "data": { "id": "c9e787a5-68c5-430a-a16e-3a1e762e79db", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "e47a74cd-5800-429b-b89e-f490004f32db", "similarity_coefficient": 0.5301204819277109, "overlap_size": 88 } }, { "data": { "id": "e4c6a704-13a2-4775-bf8f-74fb633d074a", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.5569620253164557, "overlap_size": 88 } }, { "data": { "id": "cf3adc1f-d9c0-47b9-a275-6fb1e30e655f", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.5398773006134969, "overlap_size": 88 } }, { "data": { "id": "36ad028c-c1d7-48e9-b9d9-2719c0f59ae4", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78 } }, { "data": { "id": "2a1dd398-6397-4b5b-8fe3-0d49ec53cb82", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "a966733a-44de-48c5-8959-37cec18be5cf", "similarity_coefficient": 0.6470588235294118, "overlap_size": 88 } }, { "data": { "id": "3353bb0f-a943-4e1f-afbb-114511e66987", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78 } }, { "data": { "id": "67397754-3512-4a3d-bd76-f2bfafe5b9cf", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78 } }, { "data": { "id": "fd1877bc-1cf3-47ab-96f1-5fb8ac4b4cb4", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78 } }, { "data": { "id": "e5954997-5a7a-4563-a04b-006b1a011510", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "24500407-f636-44ed-9254-763c3b68aad6", "similarity_coefficient": 0.5693430656934306, "overlap_size": 78 } }, { "data": { "id": "6f418dc6-f4c3-43ce-b2e5-5ed73c18f9cf", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78 } }, { "data": { "id": "1a17fdf3-f780-4e77-b8b5-2faaf6b7f226", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78 } }, { "data": { "id": "984b62f6-bba8-4a4d-b2dc-63fa825512d1", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78 } }, { "data": { "id": "498759e0-a76b-49eb-b36a-30b5d7e987bd", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.5945945945945946, "overlap_size": 88 } }, { "data": { "id": "9081c533-3ca3-41b5-87a2-7414b94ed1a3", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "similarity_coefficient": 0.5534591194968553, "overlap_size": 88 } }, { "data": { "id": "66720949-cc26-432c-93a1-24e9d8853bea", "source": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.5432098765432098, "overlap_size": 88 } }, { "data": { "id": "ca75e723-9041-453c-bc60-e802057ee719", "source": "cd0c33a3-3438-4e38-b4e4-96e5657a4113", "target": "cbdb0d76-141c-4836-889c-190f7ad6193c", "similarity_coefficient": 0.6162790697674418, "overlap_size": 53 } }, { "data": { "id": "36fbef9f-6633-4d72-aa68-909f40c655ef", "source": "7f740655-5824-4500-9c1c-7374b02f3664", "target": "859be89e-4625-43a6-b4a6-ab2434d64e10", "similarity_coefficient": 0.3615819209039548, "overlap_size": 64 } }, { "data": { "id": "4d9f2031-a86d-4a68-9c3b-6a01eb3aba49", "source": "7f740655-5824-4500-9c1c-7374b02f3664", "target": "e8e52742-1f0c-4014-bb5f-f72c7ca31fd0", "similarity_coefficient": 0.6030534351145038, "overlap_size": 79 } }, { "data": { "id": "7658304e-6e20-4713-bf57-0b8e61b9d26f", "source": "7f740655-5824-4500-9c1c-7374b02f3664", "target": "af5b9119-d987-4c84-8d56-e08a68613613", "similarity_coefficient": 0.9548872180451128, "overlap_size": 127 } }, { "data": { "id": "dc044cc9-51a2-40ca-a1db-0e010328c6bd", "source": "2908eab8-04c1-417b-845a-43b3aa49067b", "target": "1096a44e-4dbc-42d3-a424-671eb9231708", "similarity_coefficient": 0.5586206896551724, "overlap_size": 81 } }, { "data": { "id": "a8277752-0644-409e-97ce-e58e346feed2", "source": "2908eab8-04c1-417b-845a-43b3aa49067b", "target": "6488e429-b436-405e-886a-11af3c96908d", "similarity_coefficient": 0.5472972972972973, "overlap_size": 81 } }, { "data": { "id": "f43d0402-b43c-4872-b5fc-5699caddc650", "source": "2908eab8-04c1-417b-845a-43b3aa49067b", "target": "ca923fa4-7bdb-4533-98e9-ecad5b063ba3", "similarity_coefficient": 0.9642857142857143, "overlap_size": 81 } }, { "data": { "id": "29b86fbd-863c-4e59-8329-33695331855b", "source": "2908eab8-04c1-417b-845a-43b3aa49067b", "target": "b5d73495-423a-4299-9680-7d3e4c6c9ac6", "similarity_coefficient": 0.4909090909090909, "overlap_size": 81 } }, { "data": { "id": "083631c5-466f-4528-8b48-40abe8a98082", "source": "695cb122-8385-40a4-ade8-f3a3d8fa7320", "target": "a83c9102-412e-47a3-888d-1d5d38000f18", "similarity_coefficient": 0.8554216867469879, "overlap_size": 71 } }, { "data": { "id": "51fdb7f2-ff72-43f2-a910-afaac51eaea0", "source": "695cb122-8385-40a4-ade8-f3a3d8fa7320", "target": "5f454720-e0b8-4c7f-88b3-b288c0e8b59e", "similarity_coefficient": 0.39361702127659576, "overlap_size": 74 } }, { "data": { "id": "381b68fa-5b17-4393-aa21-7899cdbfc214", "source": "695cb122-8385-40a4-ade8-f3a3d8fa7320", "target": "cf3662ba-ff22-4e1e-b61e-12ecb731cce6", "similarity_coefficient": 0.9518072289156626, "overlap_size": 79 } }, { "data": { "id": "8304062a-c6a7-43fe-8091-ef668efb40f9", "source": "695cb122-8385-40a4-ade8-f3a3d8fa7320", "target": "384f6879-1c32-46c3-8b2b-7c9ded001526", "similarity_coefficient": 0.7830188679245284, "overlap_size": 83 } }, { "data": { "id": "6ca54b5a-a899-498d-b26e-a3a32baf604d", "source": "695cb122-8385-40a4-ade8-f3a3d8fa7320", "target": "f97b81a8-1862-43e0-8494-7bbe4766e167", "similarity_coefficient": 0.44148936170212766, "overlap_size": 83 } }, { "data": { "id": "df7951d5-b1e0-4246-9968-579b77afa669", "source": "3e7aaecb-05d5-4767-a3bc-4bf8842bc1c7", "target": "94f8c2cf-ef03-4b45-bd55-316a301f111e", "similarity_coefficient": 0.30666666666666664, "overlap_size": 23 } }, { "data": { "id": "c6054e1f-7080-4ee3-9ca3-b84b6ff1c17a", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.8909090909090909, "overlap_size": 49 } }, { "data": { "id": "bad31efa-5807-4251-bab2-f7ee3d0bd04e", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.550561797752809, "overlap_size": 49 } }, { "data": { "id": "164580d4-e472-4563-83ff-2b89b7157e68", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49 } }, { "data": { "id": "c52c1a14-bcce-4458-a477-46c54faa5ebf", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "dec11a24-597a-4f26-846a-eed2d73e5b96", "similarity_coefficient": 0.5319148936170213, "overlap_size": 50 } }, { "data": { "id": "38d76a31-6da9-4fe9-9105-4279b3478907", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.34074074074074073, "overlap_size": 46 } }, { "data": { "id": "669cffe2-ed6a-4619-9dcc-8c2af0904a1d", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.8360655737704918, "overlap_size": 51 } }, { "data": { "id": "a52e3d31-91f6-4811-b3db-cc985a413de8", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.6296296296296297, "overlap_size": 51 } }, { "data": { "id": "ae274cc8-3b6e-4d31-a3f6-d6e6162658ef", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49 } }, { "data": { "id": "ffe69f9a-bafb-49bd-aded-5dd45bf5c30c", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.875, "overlap_size": 49 } }, { "data": { "id": "6438408f-4fcf-4531-8110-70131499dea9", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49 } }, { "data": { "id": "37101054-833c-425f-a886-d2a7b9eb6d3c", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.494949494949495, "overlap_size": 49 } }, { "data": { "id": "4456e3b8-813d-4c3a-a9c7-3bac47f194f8", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.85, "overlap_size": 51 } }, { "data": { "id": "b24773a0-6c34-45c8-a6fd-0748e4a384ff", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.765625, "overlap_size": 49 } }, { "data": { "id": "6a703814-27fa-4a8d-9c49-d6f4fe927861", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "72fd7976-1a23-4642-833b-600f2c123e40", "similarity_coefficient": 0.7758620689655172, "overlap_size": 45 } }, { "data": { "id": "4a346e45-a089-4b8f-9e39-1c9c18dc3d86", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49 } }, { "data": { "id": "6b95715c-2fed-47e1-ae0e-7b32372035b7", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49 } }, { "data": { "id": "24c8f760-43e9-4a12-86df-40e714f89346", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.8909090909090909, "overlap_size": 49 } }, { "data": { "id": "04d18426-77d3-4ba8-b5fe-e6b0acd1d8a0", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "0d3bb231-67c2-46cb-93ed-80383c138af9", "similarity_coefficient": 0.5204081632653061, "overlap_size": 51 } }, { "data": { "id": "cc12da5b-23e6-45bb-b46f-fa8782da3e91", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.45544554455445546, "overlap_size": 46 } }, { "data": { "id": "15868fc9-0455-4a8c-9b09-88d2c0297831", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.31446540880503143, "overlap_size": 50 } }, { "data": { "id": "519b97a4-77d3-4a04-bb90-3ef95e6d2a0e", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.3898305084745763, "overlap_size": 46 } }, { "data": { "id": "21d6cc17-762f-4421-b84b-bcbd33358e18", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.2802197802197802, "overlap_size": 51 } }, { "data": { "id": "e7add117-3232-4d18-a207-7cdeddf00a21", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "904648c2-551b-426e-815e-74ced2374458", "similarity_coefficient": 0.29310344827586204, "overlap_size": 51 } }, { "data": { "id": "0ae642fb-b3cf-4f6c-a53e-1304189ee5cf", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.6219512195121951, "overlap_size": 51 } }, { "data": { "id": "4b440be4-0be9-423e-b678-9453bb2199a5", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.5, "overlap_size": 51 } }, { "data": { "id": "8c7eab1c-993a-4bbe-bf66-14605f0ef062", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49 } }, { "data": { "id": "1569ca8c-24b5-42df-b1b0-53f15ccd5d6a", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.6571428571428571, "overlap_size": 46 } }, { "data": { "id": "720e05a8-603e-46e9-bc10-a4eb4dacbbfb", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "1732e9b0-d067-4fb4-9670-5e323da79090", "similarity_coefficient": 0.4126984126984127, "overlap_size": 52 } }, { "data": { "id": "de65e606-7002-41ea-94cc-257db350b63a", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "similarity_coefficient": 0.8909090909090909, "overlap_size": 49 } }, { "data": { "id": "be3ab3c3-e2a4-4244-b8c9-73dc9236c6dc", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.30718954248366015, "overlap_size": 47 } }, { "data": { "id": "e4693b87-8235-4c6a-a428-3c8a26d5cf6c", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.9107142857142857, "overlap_size": 51 } }, { "data": { "id": "5fe33096-7583-4606-8f9d-0b0dfd5a4e18", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "similarity_coefficient": 0.3356164383561644, "overlap_size": 49 } }, { "data": { "id": "4fab9b78-b8c0-40fc-bfbc-4769348bed6f", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.6071428571428571, "overlap_size": 51 } }, { "data": { "id": "b4963702-dbe2-4737-9015-c63faf039840", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "f9954f17-1709-479e-8d22-403ed421f128", "similarity_coefficient": 0.5853658536585366, "overlap_size": 48 } }, { "data": { "id": "d814de50-f0f7-4b11-8350-4a356fb87491", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.532608695652174, "overlap_size": 49 } }, { "data": { "id": "cb5fd1f5-89d6-425d-8334-ffc15284e8ab", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.8360655737704918, "overlap_size": 51 } }, { "data": { "id": "2c1789bf-4d31-473d-98fa-833e272cd284", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.5222222222222223, "overlap_size": 47 } }, { "data": { "id": "768feb3d-eeb6-46a1-8263-ebc1844ee84b", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.9245283018867925, "overlap_size": 49 } }, { "data": { "id": "978cf5ae-765b-4348-950a-da4ec47d32a8", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "d97db454-5799-44e6-8082-d76526e8e917", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49 } }, { "data": { "id": "7a634202-9ef7-4fa9-85b0-0b24acace292", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49 } }, { "data": { "id": "b33966ce-b640-4c64-b82d-698089746e26", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.6125, "overlap_size": 49 } }, { "data": { "id": "1fbeec4e-52d4-492a-82ab-219ef2097810", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "2735ae43-4730-4298-b114-788063c6010a", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.5465116279069767, "overlap_size": 47 } }, { "data": { "id": "ac180051-8287-4cbf-a8e6-3c204a68536d", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.504950495049505, "overlap_size": 51 } }, { "data": { "id": "3fc308e9-7e44-44d4-b5c1-64c827e33abe", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.8360655737704918, "overlap_size": 51 } }, { "data": { "id": "61fa8143-ffac-4202-a7cb-2bb02fe68f13", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.7540983606557377, "overlap_size": 46 } }, { "data": { "id": "3e3acbb5-dba3-4a59-bf3c-d4af8eaa5b6d", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.4166666666666667, "overlap_size": 50 } }, { "data": { "id": "c15690ee-c25b-473e-907a-106b6623f2bd", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.8596491228070176, "overlap_size": 49 } }, { "data": { "id": "dff26c36-042e-4e36-8c40-499852e707f6", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "0fcd650e-c90a-4f77-b72a-90f0678d043d", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.684931506849315, "overlap_size": 50 } }, { "data": { "id": "b4c2548c-00a5-43a8-bad9-5d859faf5f07", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "17018f59-7b29-40d7-bb46-1283a625ad23", "similarity_coefficient": 0.36428571428571427, "overlap_size": 51 } }, { "data": { "id": "59f6d4fc-0d51-496c-a127-8b6e588c281a", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "1c4bc128-2c6c-4521-b7ae-14aedcd2fbe3", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49 } }, { "data": { "id": "d5d398b4-03c4-4e87-822c-fd577044fea8", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "a6609db1-5756-4ff4-8409-5013d1a74f05", "similarity_coefficient": 0.34558823529411764, "overlap_size": 47 } }, { "data": { "id": "6b06d9a2-81c2-49f0-bb10-449eda4df3e3", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "522ce5f3-b6a8-4bad-a8ef-0fd68e54bb61", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.8360655737704918, "overlap_size": 51 } }, { "data": { "id": "d2d89f66-80e2-4a5f-982c-70cc3720bac8", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.30303030303030304, "overlap_size": 50 } }, { "data": { "id": "069b9184-b596-4376-afd5-b62d2b16736f", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.42857142857142855, "overlap_size": 24 } }, { "data": { "id": "6b9a8ef0-be96-4d28-81da-163aa92e9c17", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49 } }, { "data": { "id": "1abf6a14-9f4a-44be-8328-5f22470b41d5", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.4065040650406504, "overlap_size": 50 } }, { "data": { "id": "b222435a-428b-404a-9733-e2d2fa72b52b", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.8103448275862069, "overlap_size": 47 } }, { "data": { "id": "62bbdf5d-bcd3-4e10-8dd2-9463fb4b4df5", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.375, "overlap_size": 51 } }, { "data": { "id": "d4ad2d33-5006-4d21-a4b6-0929acdbe56c", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.28488372093023256, "overlap_size": 49 } }, { "data": { "id": "fda2c92f-b622-494c-99c3-791cc08c49b4", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.5730337078651685, "overlap_size": 51 } }, { "data": { "id": "08160375-a89a-45b3-ad6b-65231815744d", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.875, "overlap_size": 49 } }, { "data": { "id": "ed2a7434-5dca-4614-996c-7a0dde708811", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "similarity_coefficient": 0.5340909090909091, "overlap_size": 47 } }, { "data": { "id": "f3772dc1-f08c-4435-9b64-ae810034f6eb", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49 } }, { "data": { "id": "49f64191-5d05-474e-8239-a3e8c8b71a8c", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49 } }, { "data": { "id": "c94fdc2b-44e8-4247-8e0c-941bb5b582cd", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.684931506849315, "overlap_size": 50 } }, { "data": { "id": "17cc01a7-cf1f-4f20-a6a9-2bf8bdcb8469", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49 } }, { "data": { "id": "bb61efcf-067a-4239-8871-f5994fac77f6", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "14654f3b-2789-4eed-a644-a2a654fa934b", "similarity_coefficient": 0.27717391304347827, "overlap_size": 51 } }, { "data": { "id": "ecdc875c-0fa4-42c2-a11c-48376c1ecf27", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.8909090909090909, "overlap_size": 49 } }, { "data": { "id": "371bf669-4d17-44b7-acd8-f2a9d4c8a0b7", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.8571428571428571, "overlap_size": 48 } }, { "data": { "id": "7635fc10-2eae-4e7f-8f1d-cbb8a8f257a3", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49 } }, { "data": { "id": "658543e0-9171-412c-a12f-cd09eaef943b", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49 } }, { "data": { "id": "05f6e3b6-f13e-4ca5-b559-79c5103f277d", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.8305084745762712, "overlap_size": 49 } }, { "data": { "id": "04fdb98e-6dc9-4d9e-b10e-a4ab71e5ba3d", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.7894736842105263, "overlap_size": 45 } }, { "data": { "id": "a6fc088f-1542-4d5e-8df4-33708a1899fd", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49 } }, { "data": { "id": "7f8ef2d4-981b-44f9-a697-3acfee6d22f6", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49 } }, { "data": { "id": "f1869eff-ca4e-49d4-b981-0db2a7c70ed6", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "similarity_coefficient": 0.620253164556962, "overlap_size": 49 } }, { "data": { "id": "3b35a2f8-260c-477b-8153-b5126e66a129", "source": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.7230769230769231, "overlap_size": 47 } }, { "data": { "id": "ef8d818f-c765-4f79-819d-3a4733883de4", "source": "671b18d7-17cb-451c-bd9c-5fd640598d64", "target": "1cf1ee8e-77cc-4e7d-8939-adf02b347c93", "similarity_coefficient": 0.2782608695652174, "overlap_size": 128 } }, { "data": { "id": "86d5f9f5-b6c7-436e-a158-0b609d294756", "source": "671b18d7-17cb-451c-bd9c-5fd640598d64", "target": "3721be01-7fa4-400f-b4f5-9bca4e773261", "similarity_coefficient": 0.6772486772486772, "overlap_size": 128 } }, { "data": { "id": "b2500572-6335-47fe-b2ab-9d6cbbd40f7d", "source": "671b18d7-17cb-451c-bd9c-5fd640598d64", "target": "5c9e9840-0565-4e14-9526-c57609d4c61e", "similarity_coefficient": 0.3005050505050505, "overlap_size": 119 } }, { "data": { "id": "3d897ee2-02c6-4139-b08e-323a24111458", "source": "671b18d7-17cb-451c-bd9c-5fd640598d64", "target": "b39109ba-9c02-4d21-8335-c922a33d2e52", "similarity_coefficient": 0.2734375, "overlap_size": 35 } }, { "data": { "id": "0290d5b8-1372-47d8-a7ab-fa7afa109206", "source": "671b18d7-17cb-451c-bd9c-5fd640598d64", "target": "b570f307-7c80-461e-9c1b-ff264f6ff8af", "similarity_coefficient": 0.4006734006734007, "overlap_size": 119 } }, { "data": { "id": "6606e8c7-e837-4b18-b9a0-f77394ace933", "source": "671b18d7-17cb-451c-bd9c-5fd640598d64", "target": "7861fd51-2caf-44e2-b4cb-7e64f8c0b51f", "similarity_coefficient": 0.7529411764705882, "overlap_size": 128 } }, { "data": { "id": "5e715866-b674-4d8a-be1b-75c9c4718827", "source": "671b18d7-17cb-451c-bd9c-5fd640598d64", "target": "db958270-8c68-47a1-8245-d553c49a126f", "similarity_coefficient": 0.44755244755244755, "overlap_size": 128 } }, { "data": { "id": "40eb34f9-32b6-46d6-8b9a-3c8b1114b111", "source": "671b18d7-17cb-451c-bd9c-5fd640598d64", "target": "750e524e-6f52-4983-9819-5b723c8afe66", "similarity_coefficient": 0.757396449704142, "overlap_size": 128 } }, { "data": { "id": "101db58d-e0e9-4cc1-8aae-6b43c0a86c59", "source": "671b18d7-17cb-451c-bd9c-5fd640598d64", "target": "916b518e-1a95-45db-be11-8e45704c11f1", "similarity_coefficient": 0.3212121212121212, "overlap_size": 53 } }, { "data": { "id": "687095b5-5400-4e8d-b9b4-f9bf68ae3e05", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49 } }, { "data": { "id": "2a2be44a-1435-4eb3-b15e-2e9f945fa612", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "26c672d0-a030-4dc6-89de-4366985b02aa", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.44785276073619634, "overlap_size": 73 } }, { "data": { "id": "d265e84c-d764-4c08-bea5-1360253ff8e2", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "284a5b17-6e08-45be-8faa-1a455c30ff5d", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.32894736842105265, "overlap_size": 25 } }, { "data": { "id": "22f77a15-78db-49c3-b91f-68de24b6d1fc", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49 } }, { "data": { "id": "3ca802f1-a72e-434d-a7d0-92b80b2a60c3", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.392, "overlap_size": 49 } }, { "data": { "id": "fad74bed-43c4-4558-9b99-4098385b1bac", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "d0f28962-0aa9-4fee-bead-0dd6ca6084e0", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.8292682926829268, "overlap_size": 68 } }, { "data": { "id": "0d5481a3-8cb9-4f7a-868c-4451103f0c3f", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.8717948717948718, "overlap_size": 68 } }, { "data": { "id": "12026e04-8c4c-4ca7-91f2-395481974ca4", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.6125, "overlap_size": 49 } }, { "data": { "id": "4d88bd1b-b730-41f8-a5e3-f5f56f20e1c0", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49 } }, { "data": { "id": "7323d2e7-e095-49b7-b5d1-011157cf9ea8", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.88, "overlap_size": 66 } }, { "data": { "id": "c6ed3bb6-6bdb-4e7d-a8bc-bc3abd2a98cd", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49 } }, { "data": { "id": "5313d787-4688-4549-8af5-e6e628f651b1", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "c5ecb312-0746-434a-8a1d-a4f1fd837997", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.4298245614035088, "overlap_size": 49 } }, { "data": { "id": "82634792-aca2-4b2d-bbe2-914888125831", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "similarity_coefficient": 0.4857142857142857, "overlap_size": 51 } }, { "data": { "id": "f6cfc2c3-98f1-466b-bc48-cfd40d2f555b", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.5824175824175825, "overlap_size": 53 } }, { "data": { "id": "30195478-04dc-41d0-9ef8-d31457346be7", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.5617977528089888, "overlap_size": 50 } }, { "data": { "id": "6c78f615-f078-4f03-8ddd-bb993ef89a5a", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.375, "overlap_size": 66 } }, { "data": { "id": "8e387809-f74b-4622-9a8e-968778e6a3ff", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.34507042253521125, "overlap_size": 49 } }, { "data": { "id": "8617ae99-c50a-43ac-9d00-2a35aec71129", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.575, "overlap_size": 46 } }, { "data": { "id": "d677541d-11b8-490c-81c4-19f1091b297d", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "fb172c5a-c242-43e8-98a4-bc060890f253", "similarity_coefficient": 0.26373626373626374, "overlap_size": 72 } }, { "data": { "id": "c2627e40-9e8d-45fd-a029-dab6b8fe5319", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49 } }, { "data": { "id": "f0d81099-f4d5-4026-90b8-152f942dd4ec", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49 } }, { "data": { "id": "0225928d-862f-4a60-844d-bd5e57230df6", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49 } }, { "data": { "id": "a67ea3ff-f878-4d69-9e56-6ef0f49b81a5", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.4224137931034483, "overlap_size": 49 } }, { "data": { "id": "65bb3414-4d31-4ce3-a394-23830b14ab44", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.7692307692307693, "overlap_size": 70 } }, { "data": { "id": "14fc4888-2387-42ec-8fc8-acd0520ecee9", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.8607594936708861, "overlap_size": 68 } }, { "data": { "id": "cc021077-bef2-4378-9cbd-a251840be141", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "420a0ef4-1faf-400a-bdb0-f49ecd9879f6", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.8375, "overlap_size": 67 } }, { "data": { "id": "ca16b9ee-1c84-4c54-8ecb-b3d16bb819e0", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49 } }, { "data": { "id": "e51ad470-611e-4e82-960b-11702ca62266", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.46496815286624205, "overlap_size": 73 } }, { "data": { "id": "20fcef2c-2d51-4d9c-b42e-51ade96145b2", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "14654f3b-2789-4eed-a644-a2a654fa934b", "similarity_coefficient": 0.2549019607843137, "overlap_size": 52 } }, { "data": { "id": "676f223a-5861-48da-aa36-050f9c6ced11", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "0d3bb231-67c2-46cb-93ed-80383c138af9", "similarity_coefficient": 0.4166666666666667, "overlap_size": 50 } }, { "data": { "id": "054988cd-d543-419c-82e2-d2643279c7cf", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "29eb21f8-7f30-4bcf-b461-a5614427aed7", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.6219512195121951, "overlap_size": 51 } }, { "data": { "id": "17669344-508a-4d87-9026-067ba2e5fcd4", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.8333333333333334, "overlap_size": 70 } }, { "data": { "id": "5575cbc9-7d7a-4c9a-88cb-0b1bf59ddbec", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.4336283185840708, "overlap_size": 49 } }, { "data": { "id": "a1b44938-ae0a-411f-9ba6-3b83b6d066cc", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.49056603773584906, "overlap_size": 52 } }, { "data": { "id": "cc6660cd-b916-4bab-8d68-8afa5114934a", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.8767123287671232, "overlap_size": 64 } }, { "data": { "id": "a9ddd29f-0e4b-47c3-bbac-df4a9bb3e40e", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49 } }, { "data": { "id": "54e08ff1-bd91-4db5-a554-d3b987e7c2d7", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49 } }, { "data": { "id": "53e8742a-233a-4ec3-a938-edc6352c8717", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.3769230769230769, "overlap_size": 49 } }, { "data": { "id": "fe27d726-f349-4ad0-bf16-27e2699cd87d", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "c9eb82f9-a3ee-4edc-9ee3-f0df4c5be3d7", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "f9954f17-1709-479e-8d22-403ed421f128", "similarity_coefficient": 0.4380952380952381, "overlap_size": 46 } }, { "data": { "id": "9ae8ebef-968b-4202-acd5-7dcd97fed121", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "similarity_coefficient": 0.8395061728395061, "overlap_size": 68 } }, { "data": { "id": "d5c68f84-5ce2-46d5-98c2-2620ee21cb0a", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.5769230769230769, "overlap_size": 45 } }, { "data": { "id": "db83e94f-c2d1-4542-91c8-ca87f7d466f8", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.550561797752809, "overlap_size": 49 } }, { "data": { "id": "11f8a044-e8ed-4ca5-9918-104180ea4f92", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "72fd7976-1a23-4642-833b-600f2c123e40", "similarity_coefficient": 0.569620253164557, "overlap_size": 45 } }, { "data": { "id": "fb4c4d95-b7ae-4f69-892b-848f3ab4a60d", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.5822784810126582, "overlap_size": 46 } }, { "data": { "id": "40037b5b-0db5-4280-a356-05b87a559f5c", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "ad6727e7-cfa8-4403-abbf-91f0b6c84a07", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "080d7999-edb3-459d-97a1-0b0c699425b5", "similarity_coefficient": 0.2796610169491525, "overlap_size": 66 } }, { "data": { "id": "a1d2a1bf-ef73-4f25-afb4-cb5c9dc900a0", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49 } }, { "data": { "id": "c0492dc6-eb23-4a55-af8b-81c3376b1228", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49 } }, { "data": { "id": "01d18b14-7c4c-4a0e-89d7-d20dac141833", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "similarity_coefficient": 0.2934131736526946, "overlap_size": 49 } }, { "data": { "id": "9af1af1b-176a-47f0-897d-a067515775f5", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.3081761006289308, "overlap_size": 49 } }, { "data": { "id": "6aeea21e-e59e-4749-baa0-82678f852907", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.4083333333333333, "overlap_size": 49 } }, { "data": { "id": "9a6a7e3d-7324-4c7a-b45a-7bb69a1e7007", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "17018f59-7b29-40d7-bb46-1283a625ad23", "similarity_coefficient": 0.3006134969325153, "overlap_size": 49 } }, { "data": { "id": "4e676d90-f406-4c62-b15b-768fd91fca0c", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49 } }, { "data": { "id": "389248b7-52df-40ba-9fcc-981a82d927c5", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.6352941176470588, "overlap_size": 54 } }, { "data": { "id": "0aae1299-165b-4412-8c18-e3bd44435966", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49 } }, { "data": { "id": "56eac829-f1a7-4aae-83a4-d8e1b92f38c7", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.620253164556962, "overlap_size": 49 } }, { "data": { "id": "a51939e5-c50b-48c9-bb68-f57812a69a5b", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.3983739837398374, "overlap_size": 49 } }, { "data": { "id": "080f3376-39c4-4f60-a1a8-adca272fa57c", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.3770491803278688, "overlap_size": 46 } }, { "data": { "id": "b9815028-cdde-483d-a179-d47d5a52a668", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.3076923076923077, "overlap_size": 52 } }, { "data": { "id": "c2d37888-8701-4ef5-9c36-c4dd3501230b", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49 } }, { "data": { "id": "9c7964f0-cfe3-4b37-a137-acc55248be47", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.6033057851239669, "overlap_size": 73 } }, { "data": { "id": "c1ce9302-c8f1-4c75-9741-1ed3519a4e85", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.4852941176470588, "overlap_size": 66 } }, { "data": { "id": "9c976607-98cd-4d00-979b-b40ab182f9ea", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "dec11a24-597a-4f26-846a-eed2d73e5b96", "similarity_coefficient": 0.7934782608695652, "overlap_size": 73 } }, { "data": { "id": "5d501b14-f480-44e0-b161-47e4a205f8f0", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.25742574257425743, "overlap_size": 52 } }, { "data": { "id": "9d322161-162b-45e9-b424-c2b0348446e6", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.6410256410256411, "overlap_size": 50 } }, { "data": { "id": "8264d40d-8515-4608-b385-9a04dd01c0f0", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "d97db454-5799-44e6-8082-d76526e8e917", "similarity_coefficient": 0.6206896551724138, "overlap_size": 54 } }, { "data": { "id": "a9ed5256-532a-4d85-a90c-6a5a58f892f3", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "a6609db1-5756-4ff4-8409-5013d1a74f05", "similarity_coefficient": 0.34210526315789475, "overlap_size": 52 } }, { "data": { "id": "f414a911-6b94-4b13-805c-fa2bb6dd62fc", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.42592592592592593, "overlap_size": 46 } }, { "data": { "id": "3fdc8644-0956-4954-bc74-2408d743ec1e", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.5416666666666666, "overlap_size": 65 } }, { "data": { "id": "49dc59ce-cb39-441e-bdda-de2aa4baa7ac", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "1732e9b0-d067-4fb4-9670-5e323da79090", "similarity_coefficient": 0.32666666666666666, "overlap_size": 49 } }, { "data": { "id": "e33072c0-af7f-4d87-aef7-6faf9a31ba2e", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49 } }, { "data": { "id": "e79a72ca-d6b3-49d2-9c9b-b44ce98aa263", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "272d2681-1a84-4937-af28-750f4c374bde", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.5609756097560976, "overlap_size": 46 } }, { "data": { "id": "bbfd11d5-eb68-4ac0-ae16-98f860caf1f2", "source": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "e74614e9-0493-430d-a0be-b80a4a7143e0", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "e47a74cd-5800-429b-b89e-f490004f32db", "similarity_coefficient": 0.40816326530612246, "overlap_size": 120 } }, { "data": { "id": "13357971-6677-47dd-9692-7d6104321340", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "84f6f0ed-9615-48ba-a629-667c8302de99", "similarity_coefficient": 0.31313131313131315, "overlap_size": 93 } }, { "data": { "id": "11bfe886-e6a6-4e33-8d3b-6574bf5ebd58", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79 } }, { "data": { "id": "145ce95e-8adf-4ada-bb5d-7bd00bcfe3bf", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79 } }, { "data": { "id": "57858816-7c42-4f6d-a05e-087bb369d425", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.29337539432176657, "overlap_size": 93 } }, { "data": { "id": "0d9cb7b3-60ce-4292-91d3-f478cd4ad224", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "similarity_coefficient": 0.3843537414965986, "overlap_size": 113 } }, { "data": { "id": "418ef6ce-dc89-41a0-93d5-1e62fc166a1a", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79 } }, { "data": { "id": "a88975ef-43f0-4ae6-86a5-c5b4db8c2581", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79 } }, { "data": { "id": "e319ea74-4c0b-4c9d-9e7a-91e7f37ff196", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "611ff36d-7bbc-4322-bcdb-592441240039", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79 } }, { "data": { "id": "c97a9e4e-1d2a-48d9-bf04-9deedc6e95b7", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79 } }, { "data": { "id": "466ee0e9-3e13-42b1-9e84-02adf5a350ea", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "7e8a2798-3efd-4409-a939-be2763ac2d08", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79 } }, { "data": { "id": "5b5219c5-3772-4e94-ae5c-519852f9288f", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79 } }, { "data": { "id": "063baa67-7f42-4877-ac2c-153b62c5c70e", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79 } }, { "data": { "id": "710c7c02-0661-4ad8-9f45-f9749fb77c09", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79 } }, { "data": { "id": "8f39a02a-286e-4475-824d-40ae57d76f72", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "a966733a-44de-48c5-8959-37cec18be5cf", "similarity_coefficient": 0.30612244897959184, "overlap_size": 90 } }, { "data": { "id": "a7def290-9b13-4c94-a16d-595e6cff21fd", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.3215434083601286, "overlap_size": 100 } }, { "data": { "id": "7b0b39b8-6811-411d-9186-f3fee2c6dd73", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.38095238095238093, "overlap_size": 112 } }, { "data": { "id": "5e37b941-4c7d-46b4-9417-7e344ee17ef1", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "316b650d-9339-4038-8610-5d7ba652dfb4", "similarity_coefficient": 0.5122950819672131, "overlap_size": 250 } }, { "data": { "id": "da95096e-4620-4375-823e-38b0383162b1", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.2972972972972973, "overlap_size": 88 } }, { "data": { "id": "13356934-da8d-47f6-bdfa-f4bfa7e75769", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79 } }, { "data": { "id": "1fdda766-cadb-4cb6-a51b-bde620b3eacc", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.33226837060702874, "overlap_size": 104 } }, { "data": { "id": "e32eeb0f-fb11-4ee5-b4e4-113730713a43", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79 } }, { "data": { "id": "35337158-251e-4477-8e3f-ae5dadf8dbe7", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79 } }, { "data": { "id": "f6799319-f7f3-48da-a30d-101b1cfbec7d", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "24500407-f636-44ed-9254-763c3b68aad6", "similarity_coefficient": 0.2711864406779661, "overlap_size": 80 } }, { "data": { "id": "88be5911-7638-4c47-b3a9-6bfabd8e1fbf", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "similarity_coefficient": 0.3843537414965986, "overlap_size": 113 } }, { "data": { "id": "a6f6f5cf-4606-42ec-b6a6-cb88398af2ad", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "eb1d3bcf-4842-469d-b080-15ffd6d86e52", "similarity_coefficient": 0.6476683937823834, "overlap_size": 250 } }, { "data": { "id": "f98982cf-42fd-40aa-9874-840197c4921c", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "85618a5e-0712-414d-a086-843f21373c0c", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79 } }, { "data": { "id": "6ec72a66-9f0c-420a-8879-edaf5bb33731", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.29337539432176657, "overlap_size": 93 } }, { "data": { "id": "7177cebd-8949-42e2-b800-931a9c683e25", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.3469387755102041, "overlap_size": 102 } }, { "data": { "id": "b6d9b3ec-e401-4f73-a4f9-5578ca617ecd", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "similarity_coefficient": 0.25277777777777777, "overlap_size": 91 } }, { "data": { "id": "967ffd56-027f-4c1d-b436-7a115c47357c", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "088965ae-beab-49a6-ba7f-62c8508bf897", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79 } }, { "data": { "id": "227c4254-ebc2-467e-a3ab-315102a6cf03", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79 } }, { "data": { "id": "8b6d3575-08b2-4693-83ab-7c7aad74e7bd", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "similarity_coefficient": 0.25882352941176473, "overlap_size": 88 } }, { "data": { "id": "ae93bfc5-290e-4af4-b712-9c3179ebd465", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "d306e139-166c-40a6-97e4-a78e73fa0903", "similarity_coefficient": 0.5120481927710844, "overlap_size": 255 } }, { "data": { "id": "b14122d1-bb5d-4891-9c60-a748d6208cdb", "source": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.3197278911564626, "overlap_size": 94 } }, { "data": { "id": "c907049a-3ecd-48e4-9454-2d0e6af887f8", "source": "9683e457-b5d3-4ffb-92cf-692bbf7e6eb4", "target": "9c8a56fb-b2c2-4025-9c1e-266f0c5862fd", "similarity_coefficient": 0.48, "overlap_size": 240 } }, { "data": { "id": "2b0825a5-710c-4317-999d-2f5f3b9cae48", "source": "9683e457-b5d3-4ffb-92cf-692bbf7e6eb4", "target": "b76a8552-5234-4d6a-83eb-4221fe662024", "similarity_coefficient": 0.564, "overlap_size": 282 } }, { "data": { "id": "fc0550c8-ec9c-43f2-b37a-80bc55453310", "source": "9683e457-b5d3-4ffb-92cf-692bbf7e6eb4", "target": "e9a4d13e-edb7-4554-9bb8-173dad7f61fd", "similarity_coefficient": 0.2692307692307692, "overlap_size": 140 } }, { "data": { "id": "a6eb5e7f-c2ab-472d-9ebf-ada4b3e41882", "source": "9683e457-b5d3-4ffb-92cf-692bbf7e6eb4", "target": "97dfa99a-4455-4b8d-b217-b0f3604459b9", "similarity_coefficient": 0.2602739726027397, "overlap_size": 228 } }, { "data": { "id": "baa2f287-2120-43e1-8168-c10fccbd6d3f", "source": "9683e457-b5d3-4ffb-92cf-692bbf7e6eb4", "target": "bdfea551-b193-4b01-ae9c-25648ca3c317", "similarity_coefficient": 0.3065173116089613, "overlap_size": 301 } }, { "data": { "id": "8d7e9dcb-9f0c-4775-a284-a38f3040f43d", "source": "9683e457-b5d3-4ffb-92cf-692bbf7e6eb4", "target": "330f6663-8dc5-4e65-8302-757d6733634d", "similarity_coefficient": 0.352, "overlap_size": 176 } }, { "data": { "id": "df105750-7fed-43ec-9fc0-7529a20e0b0d", "source": "9683e457-b5d3-4ffb-92cf-692bbf7e6eb4", "target": "328ca91a-a7c1-42f5-be44-d20d3d77dd18", "similarity_coefficient": 0.3040650406504065, "overlap_size": 187 } }, { "data": { "id": "4294f85e-e83b-4eea-badd-ef5fd7ce7e19", "source": "5e1d748c-a591-46ca-8b13-e34d0a4f1076", "target": "f4735061-16c1-46d1-a53f-b491a4b302ff", "similarity_coefficient": 0.5273972602739726, "overlap_size": 154 } }, { "data": { "id": "3d1d419e-ccbc-4c9b-aa68-c4241396d096", "source": "5e1d748c-a591-46ca-8b13-e34d0a4f1076", "target": "4e2e95c9-0874-44db-b7e5-fad6bfa0022e", "similarity_coefficient": 0.5136612021857924, "overlap_size": 282 } }, { "data": { "id": "19ed271d-0c06-476b-8dde-8cb17fb2a9a3", "source": "5e1d748c-a591-46ca-8b13-e34d0a4f1076", "target": "aff65c15-2d4e-4423-a37b-e57ce775f018", "similarity_coefficient": 0.9306930693069307, "overlap_size": 282 } }, { "data": { "id": "1811dd6d-bdce-4882-8ed5-dc07b30505c6", "source": "5e1d748c-a591-46ca-8b13-e34d0a4f1076", "target": "4db57ec5-4334-45bf-b67e-a42520b33bcb", "similarity_coefficient": 0.6985815602836879, "overlap_size": 197 } }, { "data": { "id": "31db5c2b-1896-40e8-8b98-0edc12def6a8", "source": "a8cf8ef4-7469-4f68-bb69-e44f871037d2", "target": "ebad420a-ccef-4ef0-a787-08ebfa7cfb31", "similarity_coefficient": 0.474025974025974, "overlap_size": 146 } }, { "data": { "id": "049532c5-eda5-4d90-9b31-40db7b44fff1", "source": "558812e5-cf6b-49ec-b1cd-611459f0fc4c", "target": "080d7999-edb3-459d-97a1-0b0c699425b5", "similarity_coefficient": 0.4017467248908297, "overlap_size": 92 } }, { "data": { "id": "f4ed160f-c17c-46a1-8a80-255d6217629c", "source": "558812e5-cf6b-49ec-b1cd-611459f0fc4c", "target": "8eb0c7aa-fc44-4379-8cb1-37fee77ce2c4", "similarity_coefficient": 1, "overlap_size": 92 } }, { "data": { "id": "533b6c90-d89f-43f0-a127-8f95fd3199fb", "source": "558812e5-cf6b-49ec-b1cd-611459f0fc4c", "target": "72dff63e-bb99-4d8f-8b2d-f863ae5278f1", "similarity_coefficient": 0.9583333333333334, "overlap_size": 92 } }, { "data": { "id": "a9ec71a5-fce4-4ec3-95a7-0a66c7f7bb92", "source": "558812e5-cf6b-49ec-b1cd-611459f0fc4c", "target": "e01bb0c4-42f6-4d9d-b9dc-fabc5aa42336", "similarity_coefficient": 0.8846153846153846, "overlap_size": 92 } }, { "data": { "id": "3ee2cbb4-38a8-4b26-9f65-f2089f04cbc8", "source": "558812e5-cf6b-49ec-b1cd-611459f0fc4c", "target": "fb172c5a-c242-43e8-98a4-bc060890f253", "similarity_coefficient": 0.3382352941176471, "overlap_size": 92 } }, { "data": { "id": "2bbc7614-4e21-4608-b7b4-a16cab09a25b", "source": "558812e5-cf6b-49ec-b1cd-611459f0fc4c", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.5443786982248521, "overlap_size": 92 } }, { "data": { "id": "8a43a202-4310-4745-adbe-b8eebb1a63b2", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.25157232704402516, "overlap_size": 80 } }, { "data": { "id": "47fac199-bfc8-4db0-9fc7-d1a4acc938ea", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "d306e139-166c-40a6-97e4-a78e73fa0903", "similarity_coefficient": 0.6928104575163399, "overlap_size": 318 } }, { "data": { "id": "03b96a37-b99b-4b9f-a922-571bf89d89e6", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.2616279069767442, "overlap_size": 90 } }, { "data": { "id": "17aba2cc-2152-462d-bd74-fba4543cb214", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.2716049382716049, "overlap_size": 88 } }, { "data": { "id": "8f4b5527-3cc7-4af1-9e08-c6b4ce1bca4a", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "611ff36d-7bbc-4322-bcdb-592441240039", "similarity_coefficient": 0.25157232704402516, "overlap_size": 80 } }, { "data": { "id": "ade3823d-e84c-497b-8ab8-a3d42f289f9c", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.25157232704402516, "overlap_size": 80 } }, { "data": { "id": "cbfe32b1-a5ca-489b-85d1-3b83321361ee", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "similarity_coefficient": 0.6906077348066298, "overlap_size": 250 } }, { "data": { "id": "b370689e-1bb7-4f22-b956-6ee92d3857f8", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.2831858407079646, "overlap_size": 96 } }, { "data": { "id": "61340b7f-e9d5-49a7-a2d0-8ef1e8ac1461", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "316b650d-9339-4038-8610-5d7ba652dfb4", "similarity_coefficient": 0.7162162162162162, "overlap_size": 318 } }, { "data": { "id": "02731d75-2156-45f7-9cf8-68102741cbb3", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "a966733a-44de-48c5-8959-37cec18be5cf", "similarity_coefficient": 0.2670807453416149, "overlap_size": 86 } }, { "data": { "id": "8dd2bf2e-1b64-40eb-b282-312f074b3f5c", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.25157232704402516, "overlap_size": 80 } }, { "data": { "id": "f002b35e-0fdd-433f-8d9f-3b8430da8aa9", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "similarity_coefficient": 0.25157232704402516, "overlap_size": 80 } }, { "data": { "id": "9949ef3c-9bd1-4544-a736-acac342bffdd", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "24500407-f636-44ed-9254-763c3b68aad6", "similarity_coefficient": 0.25471698113207547, "overlap_size": 81 } }, { "data": { "id": "5d0e9726-5506-4671-a677-ddd285af48ac", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.30434782608695654, "overlap_size": 98 } }, { "data": { "id": "d64af243-956c-46ed-9db4-cddd6c5021d1", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "similarity_coefficient": 0.25157232704402516, "overlap_size": 80 } }, { "data": { "id": "1056f99e-4425-40a2-95d6-dd39def0144c", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.25157232704402516, "overlap_size": 80 } }, { "data": { "id": "9216d5a8-6f51-422e-896f-1eff09c5f677", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.2616279069767442, "overlap_size": 90 } }, { "data": { "id": "0b318c7c-ac68-41ef-805f-e546ab578e90", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.3271604938271605, "overlap_size": 106 } }, { "data": { "id": "802a70fe-d9f6-4130-bf33-fe4d84e1d4d1", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "088965ae-beab-49a6-ba7f-62c8508bf897", "similarity_coefficient": 0.25157232704402516, "overlap_size": 80 } }, { "data": { "id": "107e4fe8-9530-403d-9893-c9e6e6939334", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.25157232704402516, "overlap_size": 80 } }, { "data": { "id": "c8f51010-5ef1-4911-a24a-93bfe5852f06", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.25157232704402516, "overlap_size": 80 } }, { "data": { "id": "9a49f41d-f98a-4d81-b2e3-45f9f0f7142c", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "similarity_coefficient": 0.33436532507739936, "overlap_size": 108 } }, { "data": { "id": "b9b005b2-1e33-435a-ac80-c9603428d4f7", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.25157232704402516, "overlap_size": 80 } }, { "data": { "id": "6d47b610-eb63-488f-9b0a-677a26d63637", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.25157232704402516, "overlap_size": 80 } }, { "data": { "id": "3ea7f6e7-dc5d-433f-9eb2-99f6d6c235cb", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "7e8a2798-3efd-4409-a939-be2763ac2d08", "similarity_coefficient": 0.25157232704402516, "overlap_size": 80 } }, { "data": { "id": "f7c45d45-ebd6-44c7-a4a3-8a95add21322", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "e47a74cd-5800-429b-b89e-f490004f32db", "similarity_coefficient": 0.3476923076923077, "overlap_size": 113 } }, { "data": { "id": "6d300606-08f5-47ee-b079-ef8eb912801b", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.25157232704402516, "overlap_size": 80 } }, { "data": { "id": "c05734f5-0684-476f-ab80-1172125da331", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.25925925925925924, "overlap_size": 84 } }, { "data": { "id": "0b21b5cc-cebc-4587-8a99-ac5e1066df0e", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.3867924528301887, "overlap_size": 123 } }, { "data": { "id": "73cb425d-0c7b-4556-853e-ceab775e7306", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "84f6f0ed-9615-48ba-a629-667c8302de99", "similarity_coefficient": 0.2777777777777778, "overlap_size": 90 } }, { "data": { "id": "3cd0b03f-9a82-4516-84cf-302cd0a9f953", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "eb1d3bcf-4842-469d-b080-15ffd6d86e52", "similarity_coefficient": 0.9298245614035088, "overlap_size": 318 } }, { "data": { "id": "1a03f11e-00d3-46aa-bb48-8aed69427620", "source": "ab24b93a-a426-4fa5-8f15-364938339732", "target": "85618a5e-0712-414d-a086-843f21373c0c", "similarity_coefficient": 0.25157232704402516, "overlap_size": 80 } }, { "data": { "id": "05e17db0-9abd-4fde-a94f-8641683701f6", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.3314917127071823, "overlap_size": 60 } }, { "data": { "id": "8439b880-a7f8-4a7a-88ba-f68c1a5634cd", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49 } }, { "data": { "id": "2af340e1-3a7f-4ce6-bebe-33cb90f097ac", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "similarity_coefficient": 0.6, "overlap_size": 51 } }, { "data": { "id": "196d129a-b30d-483f-9d5d-8f51c259ba20", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49 } }, { "data": { "id": "23ea6da5-ca48-479e-ba90-d15ac204d3aa", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.7, "overlap_size": 49 } }, { "data": { "id": "7127ba54-ba5d-4753-a7f9-a15753639448", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49 } }, { "data": { "id": "c69ed7ef-6cd7-4d8d-bb99-9c950fa7500c", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.2916666666666667, "overlap_size": 49 } }, { "data": { "id": "60ac0570-6bd5-46c1-9a17-95aeaaa224b4", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "e14e2de0-29de-4b83-9b80-8a9a77dd766f", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.5050505050505051, "overlap_size": 50 } }, { "data": { "id": "13da82c9-e82f-428c-9eed-e6f253583757", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.765625, "overlap_size": 49 } }, { "data": { "id": "2ed5245d-a784-483c-8120-a953c6f9a9be", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49 } }, { "data": { "id": "1222b0b5-ae23-4669-a4be-c58a02ec6d24", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.6438356164383562, "overlap_size": 47 } }, { "data": { "id": "bcc948eb-5bed-484c-9749-9e835211e833", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49 } }, { "data": { "id": "1fcda33d-f9e7-4b3b-bab3-85126c47f530", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.746268656716418, "overlap_size": 50 } }, { "data": { "id": "394e3e71-71ec-420f-a002-8be6a5cdcf59", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49 } }, { "data": { "id": "58de0d3b-4ece-40e3-b876-dba68877edc8", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "dec11a24-597a-4f26-846a-eed2d73e5b96", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "28126eee-d9d9-40f7-8a23-6202aacfcdff", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "14654f3b-2789-4eed-a644-a2a654fa934b", "similarity_coefficient": 0.32786885245901637, "overlap_size": 60 } }, { "data": { "id": "f3369ec7-3916-4cfb-be31-08ff243bbb07", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.6923076923076923, "overlap_size": 45 } }, { "data": { "id": "8e63830a-760d-42a4-9d25-5eb1b0b5ed04", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "634dae72-7808-4dd9-a195-9f478dbabe4b", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.7, "overlap_size": 49 } }, { "data": { "id": "f5e5db2d-b2be-4822-9f8a-e87d14976eeb", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "b11df03a-3b97-4d21-8cf6-e717658fcecd", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.68, "overlap_size": 51 } }, { "data": { "id": "d0447dc7-6620-4dcc-89c9-de33f21556fe", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.8064516129032258, "overlap_size": 50 } }, { "data": { "id": "8d4d5183-96ab-4ee6-807a-5db7b462a04b", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49 } }, { "data": { "id": "1cf419ef-6a3a-46ea-9c66-e9f788e8fd97", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.7424242424242424, "overlap_size": 49 } }, { "data": { "id": "4a1e42a3-7c70-4a3f-a7ca-fca6fe649a75", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "8bd0534f-40e5-4731-ac2e-a70192ca919c", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.5897435897435898, "overlap_size": 46 } }, { "data": { "id": "0d65e952-fc7d-4e85-8502-b959220574dc", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.3081761006289308, "overlap_size": 49 } }, { "data": { "id": "5fea438c-7043-43cb-8ced-3f90e36b3840", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "similarity_coefficient": 0.4895833333333333, "overlap_size": 47 } }, { "data": { "id": "cf726f70-0344-4b1d-9896-a083ffae5ae8", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.32167832167832167, "overlap_size": 46 } }, { "data": { "id": "0bb6911a-35c4-49f8-aeed-502e68c532df", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.765625, "overlap_size": 49 } }, { "data": { "id": "331a41a8-245d-4141-95e6-73bb7a70c69c", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.28651685393258425, "overlap_size": 51 } }, { "data": { "id": "6ec61532-6a82-4bfc-a83a-cca19ff85b1f", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.6865671641791045, "overlap_size": 46 } }, { "data": { "id": "51b5b439-6fa6-403b-a74f-b425a3c7b6a5", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.620253164556962, "overlap_size": 49 } }, { "data": { "id": "a24b673c-a959-4a80-88b4-983b1b9bdf65", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.696969696969697, "overlap_size": 46 } }, { "data": { "id": "f0491d8d-d393-4358-aa1e-583fbc1d3776", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.3712121212121212, "overlap_size": 49 } }, { "data": { "id": "a530814f-cd76-4291-a1e9-6dc75ed0c623", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "68d712c5-4a2c-444e-8365-a2c0965e0c91", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "904648c2-551b-426e-815e-74ced2374458", "similarity_coefficient": 0.266304347826087, "overlap_size": 49 } }, { "data": { "id": "9ce94634-3160-4d83-9cc2-ebd02a8c70ac", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "a6609db1-5756-4ff4-8409-5013d1a74f05", "similarity_coefficient": 0.34507042253521125, "overlap_size": 49 } }, { "data": { "id": "5650fed3-c1f7-431f-aae2-5e44efe8ee1d", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.36507936507936506, "overlap_size": 46 } }, { "data": { "id": "047d1713-ebb0-4356-ad1b-6644a5a6e309", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49 } }, { "data": { "id": "f843f4bf-3cae-4a21-af1b-e9eb880e01cd", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.48514851485148514, "overlap_size": 49 } }, { "data": { "id": "710d684e-e6d6-476b-acfd-1e22f7ee5337", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.5842696629213483, "overlap_size": 52 } }, { "data": { "id": "e7f2145f-f47e-47e3-af85-1ffa8f78ef7d", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.3356164383561644, "overlap_size": 49 } }, { "data": { "id": "1681515b-9ac7-4bff-b5a8-baa2912e3a7a", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "72fd7976-1a23-4642-833b-600f2c123e40", "similarity_coefficient": 0.6818181818181818, "overlap_size": 45 } }, { "data": { "id": "0abf71fd-b373-47bb-aea9-3d4bc3819cba", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "17018f59-7b29-40d7-bb46-1283a625ad23", "similarity_coefficient": 0.32666666666666666, "overlap_size": 49 } }, { "data": { "id": "a7e41f8f-1fdf-4add-aee1-429436b3d2f3", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49 } }, { "data": { "id": "b3d1e45d-d959-4e04-8352-119245f72e22", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49 } }, { "data": { "id": "d4386dcb-17d6-4c82-9ac4-218fae281c31", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.4485981308411215, "overlap_size": 48 } }, { "data": { "id": "28870019-8499-4f6f-9dc8-339bbeaba9d5", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49 } }, { "data": { "id": "73ad52ba-2e76-44d1-b775-2a480058a953", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.7538461538461538, "overlap_size": 49 } }, { "data": { "id": "a9a986f7-3aae-414c-b5de-4cc09c85c5de", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49 } }, { "data": { "id": "fa251dfb-9dae-45f8-b612-0f50bff21da4", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49 } }, { "data": { "id": "02c5e617-d5cf-467d-a629-3ee2ac33c1e7", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "006a87aa-64ab-4fa0-9120-07c5b92bff43", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.44144144144144143, "overlap_size": 49 } }, { "data": { "id": "a7c1062c-a612-4c34-9216-cf1347fe06b6", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.611764705882353, "overlap_size": 52 } }, { "data": { "id": "fc852f83-a987-48a1-bdf3-9ff303b33f07", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.4842105263157895, "overlap_size": 46 } }, { "data": { "id": "1e7574f3-5435-4958-98f7-4ac9fe3aab01", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "d97db454-5799-44e6-8082-d76526e8e917", "similarity_coefficient": 0.6623376623376623, "overlap_size": 51 } }, { "data": { "id": "8574f971-db74-4669-a804-1090f275f659", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.375, "overlap_size": 24 } }, { "data": { "id": "afb9dbbd-64a1-4e57-a9e0-b3d3b13fc236", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.8032786885245902, "overlap_size": 49 } }, { "data": { "id": "e77e4282-8089-4fcd-ac95-7515bf4961fb", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.6024096385542169, "overlap_size": 50 } }, { "data": { "id": "d9ec8a9e-94e4-42a6-aa14-b4de39127d1f", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49 } }, { "data": { "id": "9aa83605-3a0a-4211-be02-87056dd801c3", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "similarity_coefficient": 0.550561797752809, "overlap_size": 49 } }, { "data": { "id": "76a5511f-cf8e-4ab1-97bf-357c19bf4377", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.5952380952380952, "overlap_size": 50 } }, { "data": { "id": "d63bdc7f-819d-4daf-b598-a1b548cb6fa1", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.6666666666666666, "overlap_size": 46 } }, { "data": { "id": "da1d6063-04f4-4592-a174-e63cac26a723", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "1732e9b0-d067-4fb4-9670-5e323da79090", "similarity_coefficient": 0.35766423357664234, "overlap_size": 49 } }, { "data": { "id": "4be26c9d-0324-4811-9de4-0687c5f74ec6", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.4375, "overlap_size": 49 } }, { "data": { "id": "1756cd53-de1a-4e87-bba2-b8c951edd45f", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "f9954f17-1709-479e-8d22-403ed421f128", "similarity_coefficient": 0.5, "overlap_size": 46 } }, { "data": { "id": "d93e2bfe-f239-4f80-bd1a-ebc79efcc88e", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.7424242424242424, "overlap_size": 49 } }, { "data": { "id": "da93f6b8-1a83-4e7a-b20e-df550ab0b037", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "similarity_coefficient": 0.6125, "overlap_size": 49 } }, { "data": { "id": "a315505c-59b6-44e2-a4cf-9ab1b0bd9860", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.5416666666666666, "overlap_size": 52 } }, { "data": { "id": "c8a71fc3-05a0-40b9-b5b1-cbb77c29a9aa", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49 } }, { "data": { "id": "558f67eb-f0ee-4beb-845d-9a234d45b1ee", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.47959183673469385, "overlap_size": 47 } }, { "data": { "id": "948e09e3-2519-435b-bfc1-410ddabe0a6b", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49 } }, { "data": { "id": "7c565645-4b96-4426-b671-2f83124ecf3f", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.5212765957446809, "overlap_size": 49 } }, { "data": { "id": "77e15e90-dd05-4a4d-aa08-be16f54c94b9", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.5952380952380952, "overlap_size": 50 } }, { "data": { "id": "5190a101-61a3-437b-b72c-eea18947404b", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.28901734104046245, "overlap_size": 50 } }, { "data": { "id": "94826267-3ac0-4059-9f3d-d801c9eac43e", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "similarity_coefficient": 0.3181818181818182, "overlap_size": 49 } }, { "data": { "id": "bcb34f39-b32f-4aa0-8a8a-5e681a847a15", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "af2a092e-2489-4fbc-82bf-72fc59ba6edd", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "f17b93fb-5ba6-4882-a528-6f753d53ec72", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.4126984126984127, "overlap_size": 52 } }, { "data": { "id": "957006ad-c6a5-4ff0-abde-50afe874c26c", "source": "a416f178-74f3-46bf-af8a-d534e01b18aa", "target": "0d3bb231-67c2-46cb-93ed-80383c138af9", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49 } }, { "data": { "id": "4ba63c54-731b-424c-87b3-9e36f13a60bd", "source": "5da4b98c-4121-439d-b27e-27fc0de7d80c", "target": "3bfb8e85-f48e-403f-ac3c-bf8166cffc77", "similarity_coefficient": 0.4084507042253521, "overlap_size": 29 } }, { "data": { "id": "3caa1683-637c-4c73-a8c7-4648a473ce04", "source": "5da4b98c-4121-439d-b27e-27fc0de7d80c", "target": "386aac68-a2ec-4a2a-a96e-7b32087b2e75", "similarity_coefficient": 0.4444444444444444, "overlap_size": 24 } }, { "data": { "id": "f27a9560-5173-4859-b928-63402460d382", "source": "5da4b98c-4121-439d-b27e-27fc0de7d80c", "target": "826fb2dd-0313-4a40-adb5-dd2b41eea9d4", "similarity_coefficient": 0.515625, "overlap_size": 33 } }, { "data": { "id": "8d87c23d-71aa-458e-99a1-84c38eb2cf0c", "source": "5da4b98c-4121-439d-b27e-27fc0de7d80c", "target": "a87e7bfc-894c-4e4b-b80f-64bba3e8adc1", "similarity_coefficient": 0.559322033898305, "overlap_size": 33 } }, { "data": { "id": "18e6842d-bd11-4816-a700-ab20aa27b7ba", "source": "5da4b98c-4121-439d-b27e-27fc0de7d80c", "target": "51aa4010-3e79-4fea-9a8d-7d096b0002fa", "similarity_coefficient": 0.5892857142857143, "overlap_size": 33 } }, { "data": { "id": "b92e20e3-bcb6-4635-b643-83beb42fa2d1", "source": "5da4b98c-4121-439d-b27e-27fc0de7d80c", "target": "9b45383f-4e68-4ffa-a477-21d4f8675759", "similarity_coefficient": 0.55, "overlap_size": 33 } }, { "data": { "id": "ecbf4afd-0c3b-4c5f-a102-45c1aca81287", "source": "5da4b98c-4121-439d-b27e-27fc0de7d80c", "target": "405225ec-878f-41f4-9b4f-158f553cd119", "similarity_coefficient": 0.6226415094339622, "overlap_size": 33 } }, { "data": { "id": "2bc4ec6c-23ff-40f6-a241-4dc136a96039", "source": "5da4b98c-4121-439d-b27e-27fc0de7d80c", "target": "44338cf6-b799-4097-a74f-e7386e686f63", "similarity_coefficient": 0.4925373134328358, "overlap_size": 33 } }, { "data": { "id": "8d2f5f56-8e90-4b18-9301-fa959d022874", "source": "5da4b98c-4121-439d-b27e-27fc0de7d80c", "target": "31a9d742-83d3-4990-9495-42d49c780cec", "similarity_coefficient": 0.3173076923076923, "overlap_size": 33 } }, { "data": { "id": "f6c9d4c8-b3c4-464f-b68f-4eb5c5fcf264", "source": "2479892f-1718-4ce9-aaf5-42f5072a8e59", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.27510917030567683, "overlap_size": 63 } }, { "data": { "id": "2081e87d-5afc-449f-9d80-311b70047fb1", "source": "2479892f-1718-4ce9-aaf5-42f5072a8e59", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.3112033195020747, "overlap_size": 75 } }, { "data": { "id": "6494142f-51f5-491a-98e4-a47ecbe0aa37", "source": "2479892f-1718-4ce9-aaf5-42f5072a8e59", "target": "558812e5-cf6b-49ec-b1cd-611459f0fc4c", "similarity_coefficient": 0.40350877192982454, "overlap_size": 92 } }, { "data": { "id": "985d4cf5-0580-47bd-ad2f-53cefdaeef69", "source": "2479892f-1718-4ce9-aaf5-42f5072a8e59", "target": "dec11a24-597a-4f26-846a-eed2d73e5b96", "similarity_coefficient": 0.25984251968503935, "overlap_size": 66 } }, { "data": { "id": "6dc1d4fb-eb09-435b-a5f3-949f5de08574", "source": "2479892f-1718-4ce9-aaf5-42f5072a8e59", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.3093220338983051, "overlap_size": 73 } }, { "data": { "id": "11df6650-3ca7-44ee-b647-c185c822588a", "source": "2479892f-1718-4ce9-aaf5-42f5072a8e59", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.30735930735930733, "overlap_size": 71 } }, { "data": { "id": "e9063174-6676-444d-9062-ec36bf6989a0", "source": "2479892f-1718-4ce9-aaf5-42f5072a8e59", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.3017241379310345, "overlap_size": 70 } }, { "data": { "id": "bd0668b0-8781-4120-a976-1298acbde69f", "source": "2479892f-1718-4ce9-aaf5-42f5072a8e59", "target": "fb172c5a-c242-43e8-98a4-bc060890f253", "similarity_coefficient": 0.4749262536873156, "overlap_size": 161 } }, { "data": { "id": "33368c7d-e8b6-4d0a-9e39-8a60f77d47d0", "source": "2479892f-1718-4ce9-aaf5-42f5072a8e59", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.2982456140350877, "overlap_size": 68 } }, { "data": { "id": "96e34337-f500-44a5-ab36-8a0977359780", "source": "2479892f-1718-4ce9-aaf5-42f5072a8e59", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.7412280701754386, "overlap_size": 169 } }, { "data": { "id": "cff11080-18b2-494e-b738-223d5a604526", "source": "2479892f-1718-4ce9-aaf5-42f5072a8e59", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.3203463203463203, "overlap_size": 74 } }, { "data": { "id": "94675ad4-5903-4e22-98c5-f5616f190be3", "source": "2479892f-1718-4ce9-aaf5-42f5072a8e59", "target": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "similarity_coefficient": 0.31601731601731603, "overlap_size": 73 } }, { "data": { "id": "94c8c70f-f93f-48d7-86c6-e593f6ee8723", "source": "2479892f-1718-4ce9-aaf5-42f5072a8e59", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.30869565217391304, "overlap_size": 71 } }, { "data": { "id": "917ff9fe-50ea-4223-b6de-e10b28b28fea", "source": "2479892f-1718-4ce9-aaf5-42f5072a8e59", "target": "1732e9b0-d067-4fb4-9670-5e323da79090", "similarity_coefficient": 0.2553191489361702, "overlap_size": 72 } }, { "data": { "id": "0a3541b9-57e5-4f6b-b8c9-f8ad5ba485e6", "source": "2479892f-1718-4ce9-aaf5-42f5072a8e59", "target": "8eb0c7aa-fc44-4379-8cb1-37fee77ce2c4", "similarity_coefficient": 0.40350877192982454, "overlap_size": 92 } }, { "data": { "id": "a4d9977a-057e-4da0-901b-c67b712d0b4b", "source": "2479892f-1718-4ce9-aaf5-42f5072a8e59", "target": "7ca2e3de-9935-4044-acc8-9703f93d0780", "similarity_coefficient": 0.6063829787234043, "overlap_size": 228 } }, { "data": { "id": "0d3f492d-6ada-40f3-94be-df1a7c6bf217", "source": "2479892f-1718-4ce9-aaf5-42f5072a8e59", "target": "e01bb0c4-42f6-4d9d-b9dc-fabc5aa42336", "similarity_coefficient": 0.45614035087719296, "overlap_size": 104 } }, { "data": { "id": "5cd7cc2e-07bf-4c8b-adf6-04ff70abcead", "source": "2479892f-1718-4ce9-aaf5-42f5072a8e59", "target": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "similarity_coefficient": 0.28085106382978725, "overlap_size": 66 } }, { "data": { "id": "0250b5b0-ff87-4de7-9086-c2217b073082", "source": "2479892f-1718-4ce9-aaf5-42f5072a8e59", "target": "72dff63e-bb99-4d8f-8b2d-f863ae5278f1", "similarity_coefficient": 0.39655172413793105, "overlap_size": 92 } }, { "data": { "id": "2f84a66b-7ccd-4b43-a447-8e920bc9c117", "source": "2479892f-1718-4ce9-aaf5-42f5072a8e59", "target": "29e82af7-6e38-474e-b6bb-dca8aa2b6147", "similarity_coefficient": 0.44015444015444016, "overlap_size": 228 } }, { "data": { "id": "a8cf48fa-b979-4f37-b708-dde64e4ff74c", "source": "2479892f-1718-4ce9-aaf5-42f5072a8e59", "target": "080d7999-edb3-459d-97a1-0b0c699425b5", "similarity_coefficient": 0.9956331877729258, "overlap_size": 228 } }, { "data": { "id": "4794ba55-49ad-4be7-b544-884f0a651344", "source": "97263796-6199-4635-a5c3-88606b560380", "target": "9ee865fe-76a5-4d86-a7e1-0ab08de7033d", "similarity_coefficient": 0.7291666666666666, "overlap_size": 35 } }, { "data": { "id": "b4b8dbf0-f47f-4b9d-a391-04a2ed359724", "source": "97263796-6199-4635-a5c3-88606b560380", "target": "0d129048-034a-41db-97c2-56e1fad7f34a", "similarity_coefficient": 0.2549019607843137, "overlap_size": 13 } }, { "data": { "id": "4ef8ee1c-4e74-40d3-a37f-5c4b621b5c6a", "source": "97263796-6199-4635-a5c3-88606b560380", "target": "e5310ce1-66db-419c-99f7-0aef3b11c3a0", "similarity_coefficient": 0.35714285714285715, "overlap_size": 15 } }, { "data": { "id": "97360a7e-b115-4d41-8fe9-a309143697bf", "source": "97263796-6199-4635-a5c3-88606b560380", "target": "36c62e65-4dec-4c29-9fa7-909db0c24423", "similarity_coefficient": 0.39325842696629215, "overlap_size": 35 } }, { "data": { "id": "f2d27f72-ef87-4c8e-84b4-2db144797fec", "source": "52df0be8-9043-4ccf-adcc-0f0c0f45d26a", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.4117647058823529, "overlap_size": 217 } }, { "data": { "id": "6f8da069-cbf7-4cf3-baa0-8e7c2f9f92f5", "source": "52df0be8-9043-4ccf-adcc-0f0c0f45d26a", "target": "ce4736b4-7d14-450e-88ff-39a6b1df1c27", "similarity_coefficient": 0.9547101449275363, "overlap_size": 527 } }, { "data": { "id": "95bb2df7-3659-40ce-8ac6-3803337d2f0e", "source": "2c68e4c9-cc48-4220-b32a-7cb6d6c80e6c", "target": "e9a4d13e-edb7-4554-9bb8-173dad7f61fd", "similarity_coefficient": 0.4123989218328841, "overlap_size": 153 } }, { "data": { "id": "f26a79b2-e819-487d-8dca-f1f8565922f5", "source": "2c68e4c9-cc48-4220-b32a-7cb6d6c80e6c", "target": "9c8a56fb-b2c2-4025-9c1e-266f0c5862fd", "similarity_coefficient": 0.6413043478260869, "overlap_size": 236 } }, { "data": { "id": "cccd3ae2-99f7-4c4a-81d1-2ed622d4b9a6", "source": "2c68e4c9-cc48-4220-b32a-7cb6d6c80e6c", "target": "753dfe0f-6f61-4a49-90c1-4b3708665dbf", "similarity_coefficient": 0.2855543113101904, "overlap_size": 255 } }, { "data": { "id": "07419ed3-8e8a-442d-ba3f-b9a02d0a84bb", "source": "2c68e4c9-cc48-4220-b32a-7cb6d6c80e6c", "target": "af2f5715-9e8f-430f-9b9c-cada4e18fe01", "similarity_coefficient": 0.3159340659340659, "overlap_size": 115 } }, { "data": { "id": "0511273e-4ff4-43a7-ba4c-d6562d2e227f", "source": "2c68e4c9-cc48-4220-b32a-7cb6d6c80e6c", "target": "e6530407-29e9-4497-ba55-17afc1fe868e", "similarity_coefficient": 0.33791208791208793, "overlap_size": 123 } }, { "data": { "id": "910ad4a9-6445-464a-9d31-ff633c321174", "source": "2c68e4c9-cc48-4220-b32a-7cb6d6c80e6c", "target": "9683e457-b5d3-4ffb-92cf-692bbf7e6eb4", "similarity_coefficient": 0.40032414910858993, "overlap_size": 247 } }, { "data": { "id": "20de6cb7-2e93-42b3-995e-987f830a750f", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.4368932038834951, "overlap_size": 45 } }, { "data": { "id": "5d433efd-a09d-477a-8973-b73d8a264046", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.6716417910447762, "overlap_size": 45 } }, { "data": { "id": "f892c6b3-a665-476a-b07c-4aff7ea0dabb", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "similarity_coefficient": 0.6923076923076923, "overlap_size": 45 } }, { "data": { "id": "b1d9dd02-3eba-4190-9a5b-3e249b8bd9a9", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "similarity_coefficient": 0.4945054945054945, "overlap_size": 45 } }, { "data": { "id": "8642f4d0-bd05-467c-9bb5-50fb3a1c06ad", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "1732e9b0-d067-4fb4-9670-5e323da79090", "similarity_coefficient": 0.3237410071942446, "overlap_size": 45 } }, { "data": { "id": "7836f0eb-50f3-4aee-915f-549a15f5f265", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.6164383561643836, "overlap_size": 45 } }, { "data": { "id": "427b9425-d661-41fc-abcb-9410ec1ef1a8", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.2556818181818182, "overlap_size": 45 } }, { "data": { "id": "71d4302b-92c1-443d-9be3-dcf3c6236368", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.40707964601769914, "overlap_size": 46 } }, { "data": { "id": "c54ec900-62dd-470c-a201-c5d9a140e2dc", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.5, "overlap_size": 45 } }, { "data": { "id": "1c43e5b6-41c9-480b-8b9b-a83ce5ef1cd7", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.6818181818181818, "overlap_size": 45 } }, { "data": { "id": "f99e4a72-922f-44c5-8f25-12c96099278b", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.7142857142857143, "overlap_size": 45 } }, { "data": { "id": "320c5dcd-8968-4639-af60-781b7361be2b", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.6521739130434783, "overlap_size": 45 } }, { "data": { "id": "bd2b5cdc-c6df-4fd6-b61c-47bfc298b921", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.6923076923076923, "overlap_size": 45 } }, { "data": { "id": "7022d35d-2931-48e8-97ee-375b6b754fb4", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.5232558139534884, "overlap_size": 45 } }, { "data": { "id": "9cfbb26d-cbf9-4cd4-b381-0091c880a8fd", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.5844155844155844, "overlap_size": 45 } }, { "data": { "id": "76547f2d-902b-49ad-ac78-5cf5d97dbf67", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.5357142857142857, "overlap_size": 45 } }, { "data": { "id": "ca958b68-9855-4005-91ff-7edb9f0a9a4b", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.569620253164557, "overlap_size": 45 } }, { "data": { "id": "a71eb118-1832-4a52-924c-7ded3f622afa", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "similarity_coefficient": 0.5487804878048781, "overlap_size": 45 } }, { "data": { "id": "b031878c-812c-483e-9b03-f6c8b1529808", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "similarity_coefficient": 0.42424242424242425, "overlap_size": 42 } }, { "data": { "id": "769b5f1a-e54d-4c8c-a84f-45189c7093da", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.3435114503816794, "overlap_size": 45 } }, { "data": { "id": "f46b6e8f-ada0-4275-9e58-93181dd64818", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.42857142857142855, "overlap_size": 45 } }, { "data": { "id": "619f76ce-1991-4cc7-9d2e-812eea685016", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.4639175257731959, "overlap_size": 45 } }, { "data": { "id": "46cd9e47-6b15-49e3-a927-8583ceb98400", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.45454545454545453, "overlap_size": 45 } }, { "data": { "id": "df1bcbad-e7fe-4b66-ad2c-68af42b88faf", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.625, "overlap_size": 45 } }, { "data": { "id": "bac6184a-cceb-4512-921c-53ed1b4f300a", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.6164383561643836, "overlap_size": 45 } }, { "data": { "id": "9af2cf93-9734-45e6-81f0-6b8944b41b6e", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.44554455445544555, "overlap_size": 45 } }, { "data": { "id": "539addb5-093c-48fc-81ca-0d15fde868e8", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.2647058823529412, "overlap_size": 45 } }, { "data": { "id": "a1824251-bc50-4152-baf9-8d6668ea2936", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.34375, "overlap_size": 22 } }, { "data": { "id": "b6f070bc-57f8-49ab-8daa-18d7aa42b16b", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.5172413793103449, "overlap_size": 45 } }, { "data": { "id": "6d1b89d5-ecf5-4bc2-a12c-32983ce653de", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.5172413793103449, "overlap_size": 45 } }, { "data": { "id": "cc3abb9d-9778-454b-8ae9-813f398c295f", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "a416f178-74f3-46bf-af8a-d534e01b18aa", "similarity_coefficient": 0.6164383561643836, "overlap_size": 45 } }, { "data": { "id": "82d65d8f-8b76-4db7-b3ca-92273cb2ffee", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "0d3bb231-67c2-46cb-93ed-80383c138af9", "similarity_coefficient": 0.4090909090909091, "overlap_size": 45 } }, { "data": { "id": "a7425697-47fe-4fa2-8e90-cce02f547be5", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.4787234042553192, "overlap_size": 45 } }, { "data": { "id": "46260424-ca3c-401c-a712-3e62f3d9fa99", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "similarity_coefficient": 0.28846153846153844, "overlap_size": 45 } }, { "data": { "id": "2a0d6931-f10b-41de-bc4f-d3ad94fa3bed", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.6923076923076923, "overlap_size": 45 } }, { "data": { "id": "62ac6fbf-6123-4b6d-9d12-ff1b48468f38", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.525, "overlap_size": 42 } }, { "data": { "id": "7e19a4ed-66bf-47d9-a38b-6a6fd9a87607", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.6081081081081081, "overlap_size": 45 } }, { "data": { "id": "8694319d-e63a-4d30-a40d-0f48fe4a9baa", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "similarity_coefficient": 0.6923076923076923, "overlap_size": 45 } }, { "data": { "id": "55d52c29-e4d9-49fd-b00c-0e3377f0441a", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.37815126050420167, "overlap_size": 45 } }, { "data": { "id": "a3be9375-3621-4d45-a19a-da123c7d3e61", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.6086956521739131, "overlap_size": 42 } }, { "data": { "id": "8dcac120-120a-471c-89e2-daced29b1c2c", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.4838709677419355, "overlap_size": 45 } }, { "data": { "id": "8041dac2-3379-4ac4-b68a-f36e93fa9959", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "f9954f17-1709-479e-8d22-403ed421f128", "similarity_coefficient": 0.46236559139784944, "overlap_size": 43 } }, { "data": { "id": "602c745c-c902-4991-bb7d-df1764031f50", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.4158415841584158, "overlap_size": 42 } }, { "data": { "id": "04582a3b-f39a-429e-9e0e-2c4b1ee44cc4", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "72fd7976-1a23-4642-833b-600f2c123e40", "similarity_coefficient": 0.8793103448275862, "overlap_size": 51 } }, { "data": { "id": "e5c95ac6-8bc9-4eba-b451-266f242ce1ee", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.4411764705882353, "overlap_size": 45 } }, { "data": { "id": "d9cc7a9a-5351-41b4-bfdd-dd433f7d737b", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.30405405405405406, "overlap_size": 45 } }, { "data": { "id": "fbbd80e2-98cf-4d63-a99a-380cf974db6a", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.5769230769230769, "overlap_size": 45 } }, { "data": { "id": "3e69cc71-95b5-4162-a247-7651b4b64f40", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.41284403669724773, "overlap_size": 45 } }, { "data": { "id": "9dcb28ea-9146-4b8e-97e6-9fe2bc190cfa", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.6176470588235294, "overlap_size": 42 } }, { "data": { "id": "42839af1-e251-4754-a3be-9684a1876951", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.7142857142857143, "overlap_size": 45 } }, { "data": { "id": "420dd4b5-9fdb-4b76-b919-08895b1f0266", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "similarity_coefficient": 0.5056179775280899, "overlap_size": 45 } }, { "data": { "id": "7292f3e4-59c0-40f8-8ee0-cad184f4f01c", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.5526315789473685, "overlap_size": 42 } }, { "data": { "id": "f40cec02-193a-40c1-84a2-83fafe76b862", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.6428571428571429, "overlap_size": 45 } }, { "data": { "id": "296ed89b-60ce-4608-8c26-d4c2051d864a", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.6164383561643836, "overlap_size": 45 } }, { "data": { "id": "79fa0a06-7f5e-4b6b-91a1-0d47c20473b8", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.46875, "overlap_size": 45 } }, { "data": { "id": "e445ead8-3716-43e0-baeb-84c1091d1ea8", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.6923076923076923, "overlap_size": 45 } }, { "data": { "id": "f2148511-917e-4675-a44f-ee8914fcf802", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.5357142857142857, "overlap_size": 45 } }, { "data": { "id": "bf7fdb94-7f10-4b37-98d7-6a633a3b13bb", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "17018f59-7b29-40d7-bb46-1283a625ad23", "similarity_coefficient": 0.29605263157894735, "overlap_size": 45 } }, { "data": { "id": "90cd526f-78e5-4081-8ff3-0e37cd289dc5", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.5555555555555556, "overlap_size": 45 } }, { "data": { "id": "d7c43c0f-4536-45f9-91ac-2eee1133f7ce", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.3783783783783784, "overlap_size": 42 } }, { "data": { "id": "d5de36b1-c52a-4072-a12b-e7a3c56f7ad9", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.6617647058823529, "overlap_size": 45 } }, { "data": { "id": "1edc7fff-6be0-4422-8bf3-6e3f6f1d5c3a", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.569620253164557, "overlap_size": 45 } }, { "data": { "id": "2a39fd14-abf1-478e-8706-dbe0bf484397", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.4017857142857143, "overlap_size": 45 } }, { "data": { "id": "027c55a9-d0cc-4e39-aca7-18a942c836bc", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "similarity_coefficient": 0.6428571428571429, "overlap_size": 45 } }, { "data": { "id": "9e495800-8213-4b84-b0a5-b74570a985a7", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "dec11a24-597a-4f26-846a-eed2d73e5b96", "similarity_coefficient": 0.42857142857142855, "overlap_size": 45 } }, { "data": { "id": "0048eba7-677d-4162-ae36-caed649249d2", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.2896551724137931, "overlap_size": 42 } }, { "data": { "id": "d293bb14-8725-49c4-8ca0-19e86dd015f2", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.25609756097560976, "overlap_size": 42 } }, { "data": { "id": "18a6e9fc-1d5e-4399-8b76-25258db74f77", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.6617647058823529, "overlap_size": 45 } }, { "data": { "id": "b330002f-6bce-4788-a4c5-657131e08d05", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.3358208955223881, "overlap_size": 45 } }, { "data": { "id": "69bb0bb7-096d-4bff-b7f5-fe976b4022e1", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "d97db454-5799-44e6-8082-d76526e8e917", "similarity_coefficient": 0.5555555555555556, "overlap_size": 45 } }, { "data": { "id": "3a9635f8-61ef-47a5-abea-ea188bbe2ce5", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.6164383561643836, "overlap_size": 45 } }, { "data": { "id": "95cffa4f-991d-4bf9-a225-e5344a7062a4", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.39823008849557523, "overlap_size": 45 } }, { "data": { "id": "137598b8-ce0f-4a07-b354-2a80d827bc2a", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "similarity_coefficient": 0.5232558139534884, "overlap_size": 45 } }, { "data": { "id": "40c66889-4412-4aec-b077-ae8d797ace46", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.625, "overlap_size": 45 } }, { "data": { "id": "515918c9-9821-4af3-94e4-8fd8bfa4b4ae", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "a6609db1-5756-4ff4-8409-5013d1a74f05", "similarity_coefficient": 0.2857142857142857, "overlap_size": 42 } }, { "data": { "id": "beaa7354-3d4c-4a77-9e83-ed5ca8ee1329", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.5915492957746479, "overlap_size": 42 } }, { "data": { "id": "e4e4db58-ac7e-4ee9-95d6-061afcc5ad6e", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.6818181818181818, "overlap_size": 45 } }, { "data": { "id": "7949dd4c-ba9e-45fa-8937-84dbfebdb281", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.4329896907216495, "overlap_size": 42 } }, { "data": { "id": "56e1ed9d-8475-46b8-8371-f2f68a62ab16", "source": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.328125, "overlap_size": 42 } }, { "data": { "id": "ebdcda1d-15d2-418f-a341-f538643cee0a", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "6188572e-273a-45ae-bbf7-bf6fdec0aef0", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "similarity_coefficient": 0.4, "overlap_size": 78 } }, { "data": { "id": "445e4b9e-b44e-4ec4-b4b5-dd5e13bb5dcb", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "491af84d-4499-4d6d-849a-28cf84bf054b", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "7e8a2798-3efd-4409-a939-be2763ac2d08", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "8f90bf9c-95e4-4837-ac3c-5c7d217ab3dc", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "c07bb4bd-b9e0-4d2e-8e33-29c944f2b7d1", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.5, "overlap_size": 78 } }, { "data": { "id": "24ffab1f-d7ab-408a-95ad-c04e67a17b21", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "d01c1ec0-bd81-4638-ae24-8f2589389663", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "e47a74cd-5800-429b-b89e-f490004f32db", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "9331fe4e-7e63-4610-bd7a-68b3cfb0fb8b", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "59ca6427-f8d5-4321-85f4-e6de6d2b4043", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78 } }, { "data": { "id": "915d083a-5324-48ac-adc3-e0f4c1f20c16", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "47ddbf8d-e502-4bf1-ad72-abbe3750f7a3", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31 } }, { "data": { "id": "9e454afd-fa6b-4baa-8b6f-cd3dc34b5e85", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "a433f873-c0dc-4db1-9e13-b04ea0dcd022", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "80f95619-018c-417f-82c2-172576512fe8", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.3561643835616438, "overlap_size": 78 } }, { "data": { "id": "063f84fa-112f-4fa0-b4cd-60094bba8442", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "088965ae-beab-49a6-ba7f-62c8508bf897", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "a8d1d21e-c6ed-4ef7-b8ee-43c8a07a93d4", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79 } }, { "data": { "id": "e6b7507e-9678-4251-9f22-eec46ece8485", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "c726f3fc-52c9-4539-b655-40da56f12831", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "ab24b93a-a426-4fa5-8f15-364938339732", "similarity_coefficient": 0.25157232704402516, "overlap_size": 80 } }, { "data": { "id": "fe2ef732-81b8-4554-ae73-a5b17d092981", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78 } }, { "data": { "id": "b514bdc8-9057-4f08-9fc4-126cd864a200", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "eb0c3192-c81f-44cf-a1ce-c23d1d9abfda", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "82691e50-1e45-45b2-928d-33a8a642d9df", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "71eb48c9-3f83-4192-a2e7-1a2bb8a5df40", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "6f684c3e-c401-4406-a405-9c1f17756381", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "b692af7a-1af4-45b6-bd5a-99a6d5fee3ae", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "24500407-f636-44ed-9254-763c3b68aad6", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79 } }, { "data": { "id": "74569095-51dd-4996-b6e8-8f548adeff06", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "9e4ddaa2-8b41-4ce5-809e-e9d6b4b8d06c", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "84f6f0ed-9615-48ba-a629-667c8302de99", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78 } }, { "data": { "id": "a3d397ee-c4db-46c7-a129-5b34b5f8f644", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78 } }, { "data": { "id": "98ccbc58-6323-45eb-b231-ea9de6222489", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "8679344b-744e-4b2c-87be-27856d99a200", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "bc35fed1-7197-4539-b991-765db6c53510", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.6370967741935484, "overlap_size": 79 } }, { "data": { "id": "b1556eb6-8af2-4cba-bd94-d1f28891f0ee", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "30e725fd-d68f-4a4a-8b03-b97823f8cec2", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "a90d8b0a-65c2-4919-adb1-509eb6b3023a", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78 } }, { "data": { "id": "8abc1bb6-ccf5-49e6-810a-74ab5dbc1baa", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "a966733a-44de-48c5-8959-37cec18be5cf", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "f9c3b421-823c-4c9a-b5b9-e53af6d71243", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.6694915254237288, "overlap_size": 79 } }, { "data": { "id": "0f77f37a-298a-458e-827d-261cc15e9bee", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "9cc1543e-b2e4-4718-872d-4737deb33c71", "similarity_coefficient": 0.7659574468085106, "overlap_size": 72 } }, { "data": { "id": "52dfbf33-b262-4cf1-8ccd-5dac8519eefb", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31 } }, { "data": { "id": "5cd4d01b-6142-4079-a732-3a88c71f4375", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "85618a5e-0712-414d-a086-843f21373c0c", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "7628e6b3-ddeb-455f-9389-2d6e38a6f469", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "611ff36d-7bbc-4322-bcdb-592441240039", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "2e7a9ad8-a97f-4f0c-b716-d8f1ad90883a", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "dd1cc9b9-2fdd-47fa-aa51-f1bd7f931ace", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31 } }, { "data": { "id": "454a38f7-ad38-475c-8d1a-6957d1fae9a0", "source": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "7269b2f7-11bf-4228-9682-d308012666c3", "source": "70f8556f-4a53-4a4c-a55d-637a08d61a6a", "target": "7f740655-5824-4500-9c1c-7374b02f3664", "similarity_coefficient": 0.6220472440944882, "overlap_size": 79 } }, { "data": { "id": "15f69393-4523-42e3-919f-9d4964fc9b26", "source": "70f8556f-4a53-4a4c-a55d-637a08d61a6a", "target": "859be89e-4625-43a6-b4a6-ab2434d64e10", "similarity_coefficient": 0.2866666666666667, "overlap_size": 43 } }, { "data": { "id": "a13af7cb-9a23-4a05-b335-a885ced4c7a3", "source": "70f8556f-4a53-4a4c-a55d-637a08d61a6a", "target": "e8e52742-1f0c-4014-bb5f-f72c7ca31fd0", "similarity_coefficient": 0.9518072289156626, "overlap_size": 79 } }, { "data": { "id": "2d563ed8-aa62-495c-9da3-3e8bcd43e3af", "source": "70f8556f-4a53-4a4c-a55d-637a08d61a6a", "target": "af5b9119-d987-4c84-8d56-e08a68613613", "similarity_coefficient": 0.5939849624060151, "overlap_size": 79 } }, { "data": { "id": "06ac2c32-b9c7-482f-b5d7-1de479d324fb", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78 } }, { "data": { "id": "a6909554-5b2f-4165-9a4c-a686fa85ed87", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.4756756756756757, "overlap_size": 88 } }, { "data": { "id": "e358a6f3-1366-4aa8-83a8-baa0ff440c1f", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "similarity_coefficient": 0.4564102564102564, "overlap_size": 89 } }, { "data": { "id": "bbbfa94a-6921-4534-8905-0d2381e325d4", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "85618a5e-0712-414d-a086-843f21373c0c", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78 } }, { "data": { "id": "194a81a1-9b11-424b-98c7-7db26ea47baf", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.5086705202312138, "overlap_size": 88 } }, { "data": { "id": "36473c59-ca10-40e1-a0fd-a362599d2bbf", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "similarity_coefficient": 0.25654450261780104, "overlap_size": 49 } }, { "data": { "id": "26296dad-22b8-4952-a058-53ccc029a2bf", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.2768361581920904, "overlap_size": 49 } }, { "data": { "id": "89d9f74f-a7a9-4713-80e3-7e1846f5c238", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.28160919540229884, "overlap_size": 49 } }, { "data": { "id": "68a358b5-72eb-4a39-a70c-81442b70ef34", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.26704545454545453, "overlap_size": 47 } }, { "data": { "id": "ee4ee39a-e735-4f91-b61d-490aab6b39da", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.44, "overlap_size": 88 } }, { "data": { "id": "c7aef336-4f7b-4b8d-8f6d-9b4eec742581", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78 } }, { "data": { "id": "8552bb0a-6dd8-436a-9a7f-84da6484844a", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78 } }, { "data": { "id": "9fb50d5a-3f19-4887-8f59-9ecb9f59bdec", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "a966733a-44de-48c5-8959-37cec18be5cf", "similarity_coefficient": 0.5086705202312138, "overlap_size": 88 } }, { "data": { "id": "6fe31875-b822-4c0a-8881-5690023cc512", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.2556818181818182, "overlap_size": 45 } }, { "data": { "id": "fcebabc4-1538-467b-9781-7e1d6e7fe3d5", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "a416f178-74f3-46bf-af8a-d534e01b18aa", "similarity_coefficient": 0.2692307692307692, "overlap_size": 49 } }, { "data": { "id": "a635f296-b557-4c01-85b1-84ced1dda044", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78 } }, { "data": { "id": "2ad046c1-c61a-48e4-acbd-a25bec1ae4ce", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.2655367231638418, "overlap_size": 47 } }, { "data": { "id": "8ebc8347-dcb9-432b-9520-75d5e523b8d6", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "7e8a2798-3efd-4409-a939-be2763ac2d08", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78 } }, { "data": { "id": "dddd2213-8bea-4612-b321-75776f774c23", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.2737430167597765, "overlap_size": 49 } }, { "data": { "id": "d66f43f8-70ee-4dcf-8a13-6bbb9f908895", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78 } }, { "data": { "id": "f146b705-69f3-48db-86b6-9846e79fc687", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78 } }, { "data": { "id": "5240a9ac-bce0-4884-905c-dedbed10186f", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.7880184331797235, "overlap_size": 171 } }, { "data": { "id": "cbd189fb-896c-4b4c-902c-d8ca0d77034e", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.25, "overlap_size": 49 } }, { "data": { "id": "474e6c20-78fc-4ce6-87fd-359091a97e0d", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.27071823204419887, "overlap_size": 49 } }, { "data": { "id": "7ac09083-b6dd-4346-8406-c1a2cfdc1975", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "24500407-f636-44ed-9254-763c3b68aad6", "similarity_coefficient": 0.4482758620689655, "overlap_size": 78 } }, { "data": { "id": "9cf724d1-756b-4761-b1b0-5e197954e132", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.2604166666666667, "overlap_size": 50 } }, { "data": { "id": "9653ac14-3862-495b-90cd-ae7882a9d67a", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "088965ae-beab-49a6-ba7f-62c8508bf897", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78 } }, { "data": { "id": "3d895746-8257-4b35-b2ad-5ac3eaa8dcd4", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.5683060109289617, "overlap_size": 104 } }, { "data": { "id": "92781df0-2d11-4876-976b-1f6469fda26b", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "similarity_coefficient": 0.25, "overlap_size": 93 } }, { "data": { "id": "75e80263-9d53-4cc0-a179-9b1f2ad734b6", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.46632124352331605, "overlap_size": 90 } }, { "data": { "id": "432c96ed-d281-4b04-a4d1-bde0c19317a3", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.2677595628415301, "overlap_size": 49 } }, { "data": { "id": "6d0d66c9-5a61-472f-8df8-fae52864da32", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.25, "overlap_size": 49 } }, { "data": { "id": "13215d48-4c3e-4a1a-91ea-b24dc2f3344a", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78 } }, { "data": { "id": "a5c0c360-2306-47a2-9bfd-5796751349d4", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78 } }, { "data": { "id": "bd7acf1b-2de5-4d0c-b8e5-d04cc55bd1f0", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.5683060109289617, "overlap_size": 104 } }, { "data": { "id": "3515e3e1-3905-4cea-8ba8-4f8575c65ec2", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "similarity_coefficient": 0.28160919540229884, "overlap_size": 49 } }, { "data": { "id": "d18a70d9-0f5a-468b-9dc2-1fff38e6aecf", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "611ff36d-7bbc-4322-bcdb-592441240039", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78 } }, { "data": { "id": "feefae8e-d9ea-4417-8448-e6e428861017", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.27624309392265195, "overlap_size": 50 } }, { "data": { "id": "ce6c2efd-3798-4245-9a62-1a4e4ffbb5e9", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.3076923076923077, "overlap_size": 88 } }, { "data": { "id": "2a7a2bbd-ee2d-428d-824d-19857062b895", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78 } }, { "data": { "id": "fe53a83e-a063-4d5f-9031-6fc173b99fbf", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78 } }, { "data": { "id": "3a0854a6-bb85-4a3f-b397-aafa828b0ce4", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.3023255813953488, "overlap_size": 52 } }, { "data": { "id": "5da3c4f4-f284-493f-9240-695aa3f38fe1", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "similarity_coefficient": 0.28160919540229884, "overlap_size": 49 } }, { "data": { "id": "69850f90-6b41-4e34-8a05-c62fb3181c3e", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.2578947368421053, "overlap_size": 49 } }, { "data": { "id": "4933f9bd-a194-4496-9be7-d1b05bddf535", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "84f6f0ed-9615-48ba-a629-667c8302de99", "similarity_coefficient": 0.5523255813953488, "overlap_size": 95 } }, { "data": { "id": "a9552d33-8b32-4d20-a387-89fb5d1bdf16", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.28160919540229884, "overlap_size": 49 } }, { "data": { "id": "1f59229c-e843-4021-a938-f3383198aa9a", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "similarity_coefficient": 0.4055299539170507, "overlap_size": 88 } }, { "data": { "id": "7fcfc6b7-e2c9-42b0-966f-b85ceb577a0c", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "e47a74cd-5800-429b-b89e-f490004f32db", "similarity_coefficient": 0.44776119402985076, "overlap_size": 90 } }, { "data": { "id": "a5883c4f-715e-42f3-be63-cedfe654f4d0", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.28488372093023256, "overlap_size": 49 } }, { "data": { "id": "fd06d6a2-a68d-452f-97b9-8dc41c5d5202", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.26344086021505375, "overlap_size": 49 } }, { "data": { "id": "b9e4924b-e020-4d9f-b3bf-96e8b5c83b10", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "52df0be8-9043-4ccf-adcc-0f0c0f45d26a", "similarity_coefficient": 0.32447817836812143, "overlap_size": 171 } }, { "data": { "id": "f0740c56-1f03-4990-953e-7035414d85a6", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.27624309392265195, "overlap_size": 50 } }, { "data": { "id": "6e176017-232e-401b-92cd-9c1bce9ac806", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.2768361581920904, "overlap_size": 49 } }, { "data": { "id": "3c84ba10-60d6-4b7d-8a34-1986615112b9", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.2752808988764045, "overlap_size": 49 } }, { "data": { "id": "9232705e-15dc-45b6-a9d9-f73d3e9a71a8", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.28804347826086957, "overlap_size": 53 } }, { "data": { "id": "626406b3-6913-4b01-bd21-ae1b1ee14101", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "similarity_coefficient": 0.2808988764044944, "overlap_size": 50 } }, { "data": { "id": "b09a625d-09c2-4f95-a13f-c3f90742cf9a", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.2692307692307692, "overlap_size": 49 } }, { "data": { "id": "288452be-5f45-4271-92ee-3b5baa9666e4", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.5229885057471264, "overlap_size": 91 } }, { "data": { "id": "1fcaf506-7286-4088-b9b5-1e023369b700", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.28, "overlap_size": 49 } }, { "data": { "id": "cd85a172-58bb-4cb8-876e-74a6874621c0", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "d97db454-5799-44e6-8082-d76526e8e917", "similarity_coefficient": 0.2578947368421053, "overlap_size": 49 } }, { "data": { "id": "dc32174d-9be4-4e62-8689-ac307194e896", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.25555555555555554, "overlap_size": 46 } }, { "data": { "id": "11d98fbc-b131-4f45-8559-0a0be99e2731", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.26063829787234044, "overlap_size": 49 } }, { "data": { "id": "1fbcd63e-5874-47b8-8597-0c65d12ccf70", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.2512820512820513, "overlap_size": 49 } }, { "data": { "id": "6bf2cafb-d75c-4b2e-bd25-95afa4faf9fb", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.37130801687763715, "overlap_size": 88 } }, { "data": { "id": "c3e3c9c2-b65d-43e4-aae5-115cbe243763", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.28160919540229884, "overlap_size": 49 } }, { "data": { "id": "3e50b6d7-7972-40c8-9e9a-30d82abc9955", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "similarity_coefficient": 0.2512820512820513, "overlap_size": 49 } }, { "data": { "id": "0de0e523-12f8-44f9-b925-8c8fc9a79cb9", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.27624309392265195, "overlap_size": 50 } }, { "data": { "id": "fc3a9194-0b89-498b-863f-2a99f824e303", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78 } }, { "data": { "id": "efb41d7a-f3c2-4808-9ca0-cb90caf04a68", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "similarity_coefficient": 0.3188405797101449, "overlap_size": 88 } }, { "data": { "id": "392ac1b0-4016-4673-a3c5-5c14e91f4aa9", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "72fd7976-1a23-4642-833b-600f2c123e40", "similarity_coefficient": 0.2542372881355932, "overlap_size": 45 } }, { "data": { "id": "bd7be452-ee45-4732-bbe5-28b422ad67bc", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.27071823204419887, "overlap_size": 49 } }, { "data": { "id": "f3277730-377a-4fea-bdac-471e5b7fad00", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "9cc1543e-b2e4-4718-872d-4737deb33c71", "similarity_coefficient": 0.40437158469945356, "overlap_size": 74 } }, { "data": { "id": "a5f669b8-1f10-41a5-9b74-ac0df43b7c67", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.2620320855614973, "overlap_size": 49 } }, { "data": { "id": "b41aeb47-def8-4950-8249-22a309c113cb", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "ce4736b4-7d14-450e-88ff-39a6b1df1c27", "similarity_coefficient": 0.30978260869565216, "overlap_size": 171 } }, { "data": { "id": "50934cdf-a232-40d9-bfaf-2829fbb713f9", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.2604166666666667, "overlap_size": 50 } }, { "data": { "id": "42624bdc-62de-45e7-b664-f11e63125a82", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.29310344827586204, "overlap_size": 51 } }, { "data": { "id": "3b50ae04-fc3a-4516-a49a-b5abc9a8340d", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "similarity_coefficient": 0.36666666666666664, "overlap_size": 88 } }, { "data": { "id": "92f88cda-6c71-46d4-8b55-a4dd4dc64906", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.40669856459330145, "overlap_size": 85 } }, { "data": { "id": "a853c305-953c-4cd3-bfea-5a84d63058c9", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78 } }, { "data": { "id": "bfd92c19-c244-4461-8ecf-927442fd6197", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78 } }, { "data": { "id": "689df838-caef-4371-a196-b8f8fcb2c7b7", "source": "814f7e07-9f98-4192-9976-64397caf0790", "target": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "similarity_coefficient": 0.4489795918367347, "overlap_size": 88 } }, { "data": { "id": "f1a6f707-5a08-4c0c-a93f-4f8ce1fb9443", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.3375, "overlap_size": 54 } }, { "data": { "id": "53511bc6-583e-4955-bf63-efd695771c36", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.6301369863013698, "overlap_size": 46 } }, { "data": { "id": "2d9c63b6-d792-47b2-a0a6-f5c2aff36cd3", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.49, "overlap_size": 49 } }, { "data": { "id": "e22a73eb-d0f0-4766-ab66-b9e0f67df917", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "a6609db1-5756-4ff4-8409-5013d1a74f05", "similarity_coefficient": 0.3680555555555556, "overlap_size": 53 } }, { "data": { "id": "32e27378-94ca-4063-ad59-1bed31fbc2da", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.611764705882353, "overlap_size": 52 } }, { "data": { "id": "eabf79b6-26be-4501-92d0-2b2cf4279c89", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "f9954f17-1709-479e-8d22-403ed421f128", "similarity_coefficient": 0.4845360824742268, "overlap_size": 47 } }, { "data": { "id": "2848beea-7847-490c-b6a6-74cec0ca8d04", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.5408163265306123, "overlap_size": 53 } }, { "data": { "id": "f6b824a3-78bc-42c8-af03-bcfe462e9468", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.5473684210526316, "overlap_size": 52 } }, { "data": { "id": "27acbd02-64a5-421f-9164-ba7335b65efa", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.5730337078651685, "overlap_size": 51 } }, { "data": { "id": "1f7aebb2-dac4-4aed-96cd-196480fbfe4a", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49 } }, { "data": { "id": "0b0c3ff3-f08d-4dcf-af1f-ae89294df920", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.31952662721893493, "overlap_size": 54 } }, { "data": { "id": "090bad6f-7ed4-441b-b5b7-1851121cbc5e", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.5476190476190477, "overlap_size": 46 } }, { "data": { "id": "79750c1c-c252-422d-9362-e6f3e383bb86", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "2a9219d2-bec8-43dc-9c01-0cffcf8b4c54", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.5098039215686274, "overlap_size": 52 } }, { "data": { "id": "22a07b5a-d120-4549-8c38-fa68a5126033", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.7878787878787878, "overlap_size": 52 } }, { "data": { "id": "a3793cff-1745-4879-bba9-df406b162b90", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49 } }, { "data": { "id": "e6dd0649-2a9a-41dc-9643-1b1fadba1e72", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.48514851485148514, "overlap_size": 49 } }, { "data": { "id": "b46db2aa-cfd8-455d-9784-02a6a20c4ea1", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49 } }, { "data": { "id": "35bf46b9-2ad2-4fc5-8955-f3eb50d4c213", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49 } }, { "data": { "id": "4891e355-91ff-43ee-968e-6fa305a5a63e", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49 } }, { "data": { "id": "b52735aa-ca4f-46ee-a0de-dc2b4ea7a773", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.5543478260869565, "overlap_size": 51 } }, { "data": { "id": "b54e0ea6-76ed-4abb-8de4-6c64dd53c2e4", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.7352941176470589, "overlap_size": 50 } }, { "data": { "id": "943c7313-832f-4b9e-bf63-98856159cde2", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "dec11a24-597a-4f26-846a-eed2d73e5b96", "similarity_coefficient": 0.5192307692307693, "overlap_size": 54 } }, { "data": { "id": "5eed90d4-ce22-478c-8d0f-546791e16231", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.5795454545454546, "overlap_size": 51 } }, { "data": { "id": "1776db8b-c73a-4a1c-9333-7d270b30e336", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49 } }, { "data": { "id": "ad7eb96e-c506-4e0c-abd9-ca37298b8b19", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.45544554455445546, "overlap_size": 46 } }, { "data": { "id": "659812eb-462f-4c98-acc9-0651b532de96", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "772cacbb-6621-46fe-8102-35c503fb7a68", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "aedf1ffd-cafc-4e40-a7ce-d856b30619ea", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.4336283185840708, "overlap_size": 49 } }, { "data": { "id": "a731e0b2-aec7-4436-b9e2-cbeadd12f197", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.5051546391752577, "overlap_size": 49 } }, { "data": { "id": "93008ff6-cf5b-4774-8b52-81543cf1f10c", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.7, "overlap_size": 49 } }, { "data": { "id": "bcc96753-0731-4c3a-9364-b70e153ae79d", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.6575342465753424, "overlap_size": 48 } }, { "data": { "id": "24b32c83-d19a-460e-af0a-3469d7695975", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49 } }, { "data": { "id": "886e8dbf-53c6-466a-8938-2343b107e49a", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.6338028169014085, "overlap_size": 45 } }, { "data": { "id": "855ca14a-9059-46b5-b7ed-52ce68e53e0b", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.27979274611398963, "overlap_size": 54 } }, { "data": { "id": "9f9cf22b-228b-4845-9dc4-c85570e97e11", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.6712328767123288, "overlap_size": 49 } }, { "data": { "id": "48dd5371-ee4a-4c3b-83a4-99bb6fb401ce", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.726027397260274, "overlap_size": 53 } }, { "data": { "id": "9552d02f-3b6c-402e-855b-080493eaf1b3", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "similarity_coefficient": 0.5604395604395604, "overlap_size": 51 } }, { "data": { "id": "eabd8e0c-d6c0-4921-9e95-0197c5da6916", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "d97db454-5799-44e6-8082-d76526e8e917", "similarity_coefficient": 0.9705882352941176, "overlap_size": 66 } }, { "data": { "id": "55922bc5-2e12-4b45-99b7-cae66a171050", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "14654f3b-2789-4eed-a644-a2a654fa934b", "similarity_coefficient": 0.27692307692307694, "overlap_size": 54 } }, { "data": { "id": "37d38f9e-2d75-40db-b0d2-768e9aec6e2c", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "a416f178-74f3-46bf-af8a-d534e01b18aa", "similarity_coefficient": 0.68, "overlap_size": 51 } }, { "data": { "id": "f80cd26d-a32f-4da0-9c25-995435da3e4b", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "17018f59-7b29-40d7-bb46-1283a625ad23", "similarity_coefficient": 0.3141025641025641, "overlap_size": 49 } }, { "data": { "id": "57662711-af1b-43c7-adac-7bb752d46c2c", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.4224137931034483, "overlap_size": 49 } }, { "data": { "id": "d3692132-6fa0-44f6-b18e-0a500380a332", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49 } }, { "data": { "id": "ab5bb791-174a-4c5c-86c7-8df47ebb872b", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.7352941176470589, "overlap_size": 50 } }, { "data": { "id": "9f05242e-6ee1-4218-9abf-c863eb8bec30", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.45045045045045046, "overlap_size": 50 } }, { "data": { "id": "5dfdfb56-8a66-4ce6-94ed-2a6abc83ff98", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.3223684210526316, "overlap_size": 49 } }, { "data": { "id": "d320001f-378e-49af-a241-da2b1fd10ebe", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "72fd7976-1a23-4642-833b-600f2c123e40", "similarity_coefficient": 0.625, "overlap_size": 45 } }, { "data": { "id": "4e20b125-78a5-45f9-bd3c-e1510a4ffda0", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49 } }, { "data": { "id": "7a388ed3-698a-4572-b969-24447e485725", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.6388888888888888, "overlap_size": 46 } }, { "data": { "id": "9b5e5b9e-095d-491f-8d81-ec2881270b89", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49 } }, { "data": { "id": "89e54035-5ee5-4801-9c48-987c41fdad73", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.5568181818181818, "overlap_size": 49 } }, { "data": { "id": "17456571-fb66-4f85-ae30-481a1345bb52", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.7, "overlap_size": 49 } }, { "data": { "id": "f80ca4c7-0d0c-4352-a25c-30177c6773ec", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49 } }, { "data": { "id": "43b216ee-91b4-4358-a2fd-5066fb2c1afc", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.40601503759398494, "overlap_size": 54 } }, { "data": { "id": "1b925f8f-be45-4a1c-83a1-7aeb50fdd56f", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49 } }, { "data": { "id": "c862df2d-c643-4c89-8b9c-aaa353b07756", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.26344086021505375, "overlap_size": 49 } }, { "data": { "id": "1ca7960c-eb63-4d06-873f-c8ed5457563e", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.42735042735042733, "overlap_size": 50 } }, { "data": { "id": "0a95be38-6a90-490c-91ab-50c129d63b89", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.3484848484848485, "overlap_size": 46 } }, { "data": { "id": "c0aebb08-6af7-42f0-8466-e4d174285404", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "690757d9-16f6-4752-8d49-59161c30772e", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49 } }, { "data": { "id": "795fc19b-07e9-4c50-8a3d-5efc3d44584c", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "200271ef-4d33-4779-8f6f-f7eb25f6332d", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.3236994219653179, "overlap_size": 56 } }, { "data": { "id": "d2a646b8-94de-496b-bf87-46febccbe4e2", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49 } }, { "data": { "id": "4720b404-ab52-43e6-bbc3-4d7c17b14226", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "904648c2-551b-426e-815e-74ced2374458", "similarity_coefficient": 0.2578947368421053, "overlap_size": 49 } }, { "data": { "id": "f19d93cd-979a-4ad3-93fb-1fb704d2f8f6", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "503b8768-82f7-412b-80c5-9593bba763a8", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "1732e9b0-d067-4fb4-9670-5e323da79090", "similarity_coefficient": 0.34265734265734266, "overlap_size": 49 } }, { "data": { "id": "6809fd00-7c43-4c07-a7d3-0e55b52c7d47", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "similarity_coefficient": 0.569620253164557, "overlap_size": 45 } }, { "data": { "id": "a0582f2e-e23c-4511-b709-8aea49a1c0e8", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "similarity_coefficient": 0.5520833333333334, "overlap_size": 53 } }, { "data": { "id": "a0f8acf8-d49a-4a68-9c8b-9751dfd80e5b", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "similarity_coefficient": 0.6352941176470588, "overlap_size": 54 } }, { "data": { "id": "d502a7aa-3603-4964-9ab6-ff04aa637fd2", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.31756756756756754, "overlap_size": 47 } }, { "data": { "id": "ec20f06e-5f92-4077-925b-432dde38bd57", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49 } }, { "data": { "id": "f7aca3cc-1ec1-438d-a53a-e096abb11eed", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 1, "overlap_size": 66 } }, { "data": { "id": "c873e577-c936-409a-8262-1fc58b716114", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.3983739837398374, "overlap_size": 49 } }, { "data": { "id": "a4dab3ae-b0c4-4bc1-a1ef-acaef5728ea4", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "62af2e23-2b66-4ecd-a319-435052a1c1d8", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.8636363636363636, "overlap_size": 57 } }, { "data": { "id": "25cd3478-e018-4afa-a243-4991638bbcdc", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.373134328358209, "overlap_size": 50 } }, { "data": { "id": "e54adfe4-dc57-4241-8770-9e243276ca6d", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49 } }, { "data": { "id": "45580220-91b6-464f-b7cf-719f2ad3f00c", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "814f7e07-9f98-4192-9976-64397caf0790", "similarity_coefficient": 0.26063829787234044, "overlap_size": 49 } }, { "data": { "id": "6d83f977-5348-4065-92e1-e11cb15945ac", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.34285714285714286, "overlap_size": 24 } }, { "data": { "id": "fd9954f8-35e5-4ddf-ac7e-ed1e06041c2d", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49 } }, { "data": { "id": "c2eab018-5087-434d-b790-978264c4192e", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "0d3bb231-67c2-46cb-93ed-80383c138af9", "similarity_coefficient": 0.4298245614035088, "overlap_size": 49 } }, { "data": { "id": "1896422c-e790-4644-ad2c-76228d1d973f", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "similarity_coefficient": 0.30625, "overlap_size": 49 } }, { "data": { "id": "d649478c-62f3-4c97-91da-f5a2fa7307d3", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49 } }, { "data": { "id": "1ca76360-9b9b-44ac-b793-6e5ccfdc3d93", "source": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "target": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "similarity_coefficient": 0.7352941176470589, "overlap_size": 50 } }, { "data": { "id": "50d0651a-42b1-4d4c-9b44-7b3b96f8ea72", "source": "9e9cc91e-7459-4280-b096-dd42c53a25a4", "target": "053565f9-6e2e-4c4a-8773-19c2e912501a", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "58eeef86-4b60-499c-83b8-e40ecf710f8d", "source": "9e9cc91e-7459-4280-b096-dd42c53a25a4", "target": "9e433294-82cc-456b-bdd9-d76c265b11a9", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "f7790641-abcb-4ac4-a9f7-9d1a6f573a07", "source": "9e9cc91e-7459-4280-b096-dd42c53a25a4", "target": "b6922b98-9220-46d4-a7fc-b265074130b3", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "f5e0566a-cece-4752-a759-ab1aead3b9a1", "source": "9e9cc91e-7459-4280-b096-dd42c53a25a4", "target": "3655cbeb-e303-47c6-b442-f4039b25d644", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "f438f9eb-517e-4616-a7dd-5553b954ce41", "source": "9e9cc91e-7459-4280-b096-dd42c53a25a4", "target": "cddebf8c-4f9a-4ec6-b7c9-83312c9d1c51", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "433ae85b-89fa-4ac7-b69f-5046a724eb28", "source": "9e9cc91e-7459-4280-b096-dd42c53a25a4", "target": "3baa2895-d41a-4b91-925b-906637d521ee", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "9e1e0ab3-e0cd-4729-9f27-7bcdf7ff08b0", "source": "9e9cc91e-7459-4280-b096-dd42c53a25a4", "target": "acb95097-45dd-4bf4-aa47-a787e38591d4", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "54047ff3-0df7-4b3f-bae5-99e1aa0403f7", "source": "9e9cc91e-7459-4280-b096-dd42c53a25a4", "target": "494ff507-5e65-4be7-8344-3f8a80c7d83e", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "4ac7cc82-e8a7-4e32-a33e-54b3ec740a11", "source": "9e9cc91e-7459-4280-b096-dd42c53a25a4", "target": "ba7799c9-3170-4d60-b811-31eae5312965", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "b4c4b553-bb5b-4bf6-ba69-ef938eaf16af", "source": "9e9cc91e-7459-4280-b096-dd42c53a25a4", "target": "c4cb5ff2-7463-4b47-b4d2-2d78f4a4bbc2", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "94df9e7b-7792-4a86-90c7-0c43989e5980", "source": "9e9cc91e-7459-4280-b096-dd42c53a25a4", "target": "8f2732b7-bdc9-40f5-8845-a8d9beca3b22", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "65ba2083-5028-4631-8345-a87ba6cfa570", "source": "9e9cc91e-7459-4280-b096-dd42c53a25a4", "target": "e4351080-e123-4e93-98a7-49cdd09e0c1c", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "521a6daa-ae55-48cb-8a80-64454631e2e4", "source": "9e9cc91e-7459-4280-b096-dd42c53a25a4", "target": "604d62c7-f4cb-4289-a549-64f0bccf5d62", "similarity_coefficient": 1, "overlap_size": 37 } }, { "data": { "id": "4c8eeec1-3ade-409c-a1e3-f724ae208631", "source": "826fb2dd-0313-4a40-adb5-dd2b41eea9d4", "target": "44338cf6-b799-4097-a74f-e7386e686f63", "similarity_coefficient": 0.6545454545454545, "overlap_size": 36 } }, { "data": { "id": "5e1ef8fb-0bbc-4a03-9b7f-d936bb34128a", "source": "826fb2dd-0313-4a40-adb5-dd2b41eea9d4", "target": "3bfb8e85-f48e-403f-ac3c-bf8166cffc77", "similarity_coefficient": 0.3582089552238806, "overlap_size": 24 } }, { "data": { "id": "e057d1c8-3800-41fc-bbfa-4cabed293e6f", "source": "826fb2dd-0313-4a40-adb5-dd2b41eea9d4", "target": "405225ec-878f-41f4-9b4f-158f553cd119", "similarity_coefficient": 0.75, "overlap_size": 33 } }, { "data": { "id": "eaa95826-0649-480a-9fdc-d448567220de", "source": "826fb2dd-0313-4a40-adb5-dd2b41eea9d4", "target": "31a9d742-83d3-4990-9495-42d49c780cec", "similarity_coefficient": 0.3473684210526316, "overlap_size": 33 } }, { "data": { "id": "e297d417-605f-49ba-8e58-9432a9839f88", "source": "826fb2dd-0313-4a40-adb5-dd2b41eea9d4", "target": "9b45383f-4e68-4ffa-a477-21d4f8675759", "similarity_coefficient": 0.7142857142857143, "overlap_size": 35 } }, { "data": { "id": "6be3f3a3-65a9-43be-8ee6-55a925522f5d", "source": "826fb2dd-0313-4a40-adb5-dd2b41eea9d4", "target": "a87e7bfc-894c-4e4b-b80f-64bba3e8adc1", "similarity_coefficient": 0.7291666666666666, "overlap_size": 35 } }, { "data": { "id": "1b6e201c-e914-462c-8a8d-3071cafea418", "source": "826fb2dd-0313-4a40-adb5-dd2b41eea9d4", "target": "51aa4010-3e79-4fea-9a8d-7d096b0002fa", "similarity_coefficient": 0.7777777777777778, "overlap_size": 35 } }, { "data": { "id": "9c4a4ff4-a718-4672-ae39-494188a3c543", "source": "826fb2dd-0313-4a40-adb5-dd2b41eea9d4", "target": "386aac68-a2ec-4a2a-a96e-7b32087b2e75", "similarity_coefficient": 0.5333333333333333, "overlap_size": 24 } }, { "data": { "id": "9d5d3080-3245-4678-a604-7951dd5224f9", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "cf4cd137-78ed-40a4-970c-be79a38ff491", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "9cc1543e-b2e4-4718-872d-4737deb33c71", "similarity_coefficient": 0.7659574468085106, "overlap_size": 72 } }, { "data": { "id": "e843f3fb-9630-406d-b3ee-d115cd392319", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "37636ac9-e07c-415c-a369-0f7b67c3d07d", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "e47a74cd-5800-429b-b89e-f490004f32db", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "ad3ba5d6-69f4-4d95-8a0a-5a8d5fa38021", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "84f6f0ed-9615-48ba-a629-667c8302de99", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78 } }, { "data": { "id": "4879636f-af84-47b9-b88e-15ee13c3c85e", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "814f7e07-9f98-4192-9976-64397caf0790", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78 } }, { "data": { "id": "35678007-d594-4e23-a0e2-791dc299b29d", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "e6f9e7f2-60a8-4df7-9910-c104c1b689d1", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.5, "overlap_size": 78 } }, { "data": { "id": "a9ee7af9-1d75-4d8b-9035-9ab82de9b88f", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78 } }, { "data": { "id": "2239c79a-f6b1-4dc4-9b38-dcdda32e3f75", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "c25ac66e-a165-43c9-bd96-1be9a4ce1ea4", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "ab24b93a-a426-4fa5-8f15-364938339732", "similarity_coefficient": 0.25157232704402516, "overlap_size": 80 } }, { "data": { "id": "b660a14c-df68-4253-8747-1bdd69b1114a", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "590c2116-3ee5-432a-acf8-7e56edaacbcb", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "d7aa5e1a-7cda-4598-95e5-919cc9da4a96", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "acf3e625-da42-4780-9b7f-1b7e44c3b477", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "af4e9fd6-f095-47bd-a577-e60c080f397e", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "73bbe94e-fc33-417b-be11-f4be7f6dad85", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31 } }, { "data": { "id": "5ff62151-05a3-4f0a-b0e3-9c4023958fbd", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "f352e6bb-cb8c-4e8c-b26c-23774166f337", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.3561643835616438, "overlap_size": 78 } }, { "data": { "id": "1d0f554f-f582-4f7c-8112-8ee8ce9cd251", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "088965ae-beab-49a6-ba7f-62c8508bf897", "similarity_coefficient": 1, "overlap_size": 80 } }, { "data": { "id": "e798cee4-8231-419f-a049-f37cecf1688a", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "9decba15-a353-4c96-bd86-188b012cfae2", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78 } }, { "data": { "id": "70b5bc05-0af9-4514-a3e7-795b2e486416", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79 } }, { "data": { "id": "1140e15e-5b94-49fd-a5c5-f1a4823629e6", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.6370967741935484, "overlap_size": 79 } }, { "data": { "id": "4b466f5a-a837-475c-af78-5391fea90716", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "e60bf98c-d371-496b-af5b-5de414037987", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "a966733a-44de-48c5-8959-37cec18be5cf", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "6b817a29-a8aa-4586-a4df-a6b0772c0aae", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78 } }, { "data": { "id": "4b69767a-ec51-467e-9963-14abd5b45f22", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.6694915254237288, "overlap_size": 79 } }, { "data": { "id": "2b68fb4c-ad02-4d9a-a927-c432654ff991", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31 } }, { "data": { "id": "29a8507d-aa08-4982-b680-56281f0748ac", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "85618a5e-0712-414d-a086-843f21373c0c", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "fce1c278-1b29-48f6-b1a1-b0bf005bd75f", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "24500407-f636-44ed-9254-763c3b68aad6", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79 } }, { "data": { "id": "2112e586-1a76-4a78-be3d-57a2d2372e8c", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "7e8a2798-3efd-4409-a939-be2763ac2d08", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "425e9713-9f3c-4680-9c42-69ab62e8e5cb", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "72247e43-ac5a-47d5-916f-28adfe882331", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "7e445a88-e276-4e7e-a513-a072ebee9eac", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "10e78db9-b2eb-449c-976f-dfe07be43f87", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "447bf66c-c64c-4474-a577-81b2b2fb89c7", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78 } }, { "data": { "id": "9255b31f-da17-4311-b68f-17c70945be46", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "e3245208-fa13-42af-b22c-da3ed6bbcfbd", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31 } }, { "data": { "id": "3fc4ae16-9424-4c13-8949-be116c17771f", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "01a49e9d-a197-473f-82ec-597f8c4f4aad", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "884f4ebb-f0df-4f87-96fe-4336722bde15", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "similarity_coefficient": 0.4, "overlap_size": 78 } }, { "data": { "id": "e04d4fe8-9478-4551-acd8-a394405ad935", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "611ff36d-7bbc-4322-bcdb-592441240039", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "18a9cb0e-46ea-4d15-ad34-a5d79faa5ddc", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "95709015-1f8f-4c97-ad3c-e5c6d40df611", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "272e216a-f17f-4490-a14b-8b7449ee2f49", "source": "3608c2a4-44c5-403d-a12c-991578f6376a", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "1b7d421b-fe88-4be2-b1f7-adeccf1ea22a", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49 } }, { "data": { "id": "7ec6afe1-d281-45db-9d70-7123ee9366c4", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.7, "overlap_size": 49 } }, { "data": { "id": "497e6ebf-9e98-4afb-8cb9-3d3290585b7f", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49 } }, { "data": { "id": "02aa4182-65ec-4e65-8bfc-4a6971630cbd", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "similarity_coefficient": 0.5333333333333333, "overlap_size": 48 } }, { "data": { "id": "b686b801-cede-4c42-91fc-c89f144da7ef", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "904648c2-551b-426e-815e-74ced2374458", "similarity_coefficient": 0.288135593220339, "overlap_size": 51 } }, { "data": { "id": "60f003ff-caa0-42e7-8084-721d961a9e39", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.8032786885245902, "overlap_size": 49 } }, { "data": { "id": "d0b50aa2-e4fa-403e-8801-1256eac17d91", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.28, "overlap_size": 49 } }, { "data": { "id": "c3edbae0-007d-4a91-aff7-382e7d056f2d", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "814f7e07-9f98-4192-9976-64397caf0790", "similarity_coefficient": 0.2840909090909091, "overlap_size": 50 } }, { "data": { "id": "f8b6bfa7-ffa2-446a-aa8f-d3d1e123e04a", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.41935483870967744, "overlap_size": 52 } }, { "data": { "id": "d27858d9-3284-4b95-96b6-16952265d61e", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.4423076923076923, "overlap_size": 46 } }, { "data": { "id": "0e7ac430-4967-4727-bd98-dec751941788", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.704225352112676, "overlap_size": 50 } }, { "data": { "id": "ef5ff453-545d-49ac-8d59-8b1ac496ea4f", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.8305084745762712, "overlap_size": 49 } }, { "data": { "id": "8dbe2a2a-5f91-427b-8112-5aba3e01c25b", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49 } }, { "data": { "id": "1fdd4b98-3df0-4fee-8f1d-7f5526beb6a8", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.5, "overlap_size": 52 } }, { "data": { "id": "d57c6197-e0fa-4178-8e6a-67247130f1a1", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.7538461538461538, "overlap_size": 49 } }, { "data": { "id": "177dab97-178c-46f0-ad9d-96b7f67f13b7", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "dec11a24-597a-4f26-846a-eed2d73e5b96", "similarity_coefficient": 0.5473684210526316, "overlap_size": 52 } }, { "data": { "id": "656eb5b2-3273-483d-be20-eca50e939457", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.3333333333333333, "overlap_size": 46 } }, { "data": { "id": "3ad50edb-68ec-4988-a476-9a5655f443fc", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.8253968253968254, "overlap_size": 52 } }, { "data": { "id": "d22fcdfd-fb72-401a-8f40-de864ab156e1", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.8095238095238095, "overlap_size": 51 } }, { "data": { "id": "f459f7de-ade1-46d8-8867-f8bf31921d26", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "1732e9b0-d067-4fb4-9670-5e323da79090", "similarity_coefficient": 0.3923076923076923, "overlap_size": 51 } }, { "data": { "id": "d5fbda17-55d8-4c4b-9172-745b0f2b676b", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.38016528925619836, "overlap_size": 46 } }, { "data": { "id": "22e766a2-4dc1-45e1-80de-98b0f458c7d9", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.325, "overlap_size": 52 } }, { "data": { "id": "34f9b89e-77f4-42cf-b027-b7d3375d92b3", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.532608695652174, "overlap_size": 49 } }, { "data": { "id": "c7d5fd0f-d92c-4614-8cc9-6ce6c8a853b3", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49 } }, { "data": { "id": "43c047b6-03a6-4b84-b6c7-c399f7f25aa0", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "a416f178-74f3-46bf-af8a-d534e01b18aa", "similarity_coefficient": 0.7424242424242424, "overlap_size": 49 } }, { "data": { "id": "7e0f2ed9-d9ae-4c70-ba1b-c34eefa69090", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "14654f3b-2789-4eed-a644-a2a654fa934b", "similarity_coefficient": 0.3005464480874317, "overlap_size": 55 } }, { "data": { "id": "34a59a87-dc12-4532-b16f-97f80d3503ec", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.75, "overlap_size": 45 } }, { "data": { "id": "21317083-21ce-484a-9455-ec8f6c7bbec6", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.6, "overlap_size": 51 } }, { "data": { "id": "045f2e8e-c3be-4e17-b58c-df81ee7cbc0e", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.7164179104477612, "overlap_size": 48 } }, { "data": { "id": "e4fc427c-bbc3-49e0-8cd4-353867df31da", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49 } }, { "data": { "id": "3ac7f3d7-2624-4c96-8abd-e0e7c4a0d783", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49 } }, { "data": { "id": "af478ac4-368c-46a6-9e39-5ea757cbdeee", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.30386740331491713, "overlap_size": 55 } }, { "data": { "id": "d830abaa-9adf-48b1-ae75-5513b84e6487", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "c9b144ee-e7b3-4e1d-9b33-3d1736c376e1", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.6071428571428571, "overlap_size": 51 } }, { "data": { "id": "fb1b1ab1-f9c3-4cbe-984b-4c66236dfed9", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49 } }, { "data": { "id": "05717fa1-e234-489a-a379-998f73ea68dd", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.796875, "overlap_size": 51 } }, { "data": { "id": "ccf958cc-b5e7-4139-b012-26e0b0fede2a", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "similarity_coefficient": 0.8064516129032258, "overlap_size": 50 } }, { "data": { "id": "a9fa36a4-ca58-4c0b-ac7a-b3c748e81622", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49 } }, { "data": { "id": "27389122-2d11-4ec0-b05d-cb7eb6e69c66", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49 } }, { "data": { "id": "b8eaf742-c1d5-4d35-867c-4a78fe3ba97f", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.620253164556962, "overlap_size": 49 } }, { "data": { "id": "1ae38463-61ff-4398-8490-4613f5e995c5", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.8620689655172413, "overlap_size": 50 } }, { "data": { "id": "7eadb3d6-ae43-41a7-8801-e911dce8379e", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "72fd7976-1a23-4642-833b-600f2c123e40", "similarity_coefficient": 0.7377049180327869, "overlap_size": 45 } }, { "data": { "id": "813f7e04-da2d-414d-b443-48b857f50c4c", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49 } }, { "data": { "id": "2e1a08d8-57a8-4c33-be38-7b53926b74b6", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49 } }, { "data": { "id": "b452baf7-91c2-4da2-864d-dca8c0c2c2a2", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49 } }, { "data": { "id": "92060ae9-0a41-4b9a-9efc-c59b99048633", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49 } }, { "data": { "id": "8e5e1c61-10e2-4acf-8513-3321cef96545", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.37681159420289856, "overlap_size": 52 } }, { "data": { "id": "57cd1feb-9f01-446a-a1d4-5e73c16875e2", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.6125, "overlap_size": 49 } }, { "data": { "id": "6fc78a4c-28cf-4b07-bf15-c7615b783b9b", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49 } }, { "data": { "id": "e2e8f266-d51e-48ca-9d7e-c35d047cd2b2", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.7027027027027027, "overlap_size": 52 } }, { "data": { "id": "f4ab57c9-1879-459c-bbf3-7985c87e6c62", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "17018f59-7b29-40d7-bb46-1283a625ad23", "similarity_coefficient": 0.36619718309859156, "overlap_size": 52 } }, { "data": { "id": "eed2d330-0882-4a19-a9a4-e794cc54f50e", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.7027027027027027, "overlap_size": 52 } }, { "data": { "id": "b08341ec-2e7b-4d01-be66-c9f201bcfe99", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49 } }, { "data": { "id": "d4c79581-29e8-48da-a9bb-023a472703c1", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "f9954f17-1709-479e-8d22-403ed421f128", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "cfefc228-991c-458b-8294-acb2b613916c", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.8305084745762712, "overlap_size": 49 } }, { "data": { "id": "3229d456-d048-496e-b0a4-72ffd016afee", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49 } }, { "data": { "id": "8db684a9-7921-40fd-8901-40d1bc3ee36b", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.3096774193548387, "overlap_size": 48 } }, { "data": { "id": "fa5339c1-2c85-40ad-9aa0-3416058ae456", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.5, "overlap_size": 49 } }, { "data": { "id": "b436c035-63d8-4684-a4e0-a006ec50a8c3", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.6301369863013698, "overlap_size": 46 } }, { "data": { "id": "a144d37f-d70b-49c9-a203-7be3840c53f6", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "d97db454-5799-44e6-8082-d76526e8e917", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49 } }, { "data": { "id": "f2c887ac-07ef-4671-a069-78822db42655", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "similarity_coefficient": 0.620253164556962, "overlap_size": 49 } }, { "data": { "id": "e1ea68cc-ce29-45a0-b668-9fd63953f1b9", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.864406779661017, "overlap_size": 51 } }, { "data": { "id": "a7083d7f-1497-4137-9725-e8876fd83d4a", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.5617977528089888, "overlap_size": 50 } }, { "data": { "id": "35d4c19a-4f8d-4ce2-b490-aba616003a80", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.6329113924050633, "overlap_size": 50 } }, { "data": { "id": "6bec3fbe-7d06-40de-968c-e38efb891f50", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "a6609db1-5756-4ff4-8409-5013d1a74f05", "similarity_coefficient": 0.34782608695652173, "overlap_size": 48 } }, { "data": { "id": "9414f469-f6f5-4965-8d58-b143a79a3b0b", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.5714285714285714, "overlap_size": 52 } }, { "data": { "id": "7fa7300e-d91d-4315-9c72-7f8165d2e15a", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.49038461538461536, "overlap_size": 51 } }, { "data": { "id": "1f80648e-0b8f-4c75-b5e6-fd8f54100763", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.71875, "overlap_size": 46 } }, { "data": { "id": "bc51c352-e7f8-42d1-9322-698cfa5eb558", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.8253968253968254, "overlap_size": 52 } }, { "data": { "id": "9ffacf6c-f302-477e-ad9e-c16ed4aff9fb", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49 } }, { "data": { "id": "12669d22-7a03-4ade-ae93-a4663c6537cf", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49 } }, { "data": { "id": "ad3926ad-512a-4071-a364-3cfbd2973f5f", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "0d3bb231-67c2-46cb-93ed-80383c138af9", "similarity_coefficient": 0.504950495049505, "overlap_size": 51 } }, { "data": { "id": "0d606d37-42b7-4e0b-a6e5-56ac4d81fd3d", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.4067796610169492, "overlap_size": 24 } }, { "data": { "id": "a8994c47-04a0-4aef-abef-40f3be19e12b", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.875, "overlap_size": 49 } }, { "data": { "id": "a99e07bb-a99d-4e24-8e0f-c80a05f090c2", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "similarity_coefficient": 0.6617647058823529, "overlap_size": 45 } }, { "data": { "id": "2dbbdb0e-da31-4a0a-8581-a6e4fb6a0432", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "similarity_coefficient": 0.8771929824561403, "overlap_size": 50 } }, { "data": { "id": "a19b666b-6f5e-4f36-ad6d-6c6f871df016", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.4375, "overlap_size": 49 } }, { "data": { "id": "d27466e2-0875-485c-b27b-c7535e91f827", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.8253968253968254, "overlap_size": 52 } }, { "data": { "id": "3d1153c4-974b-4d58-afc9-6df873faa2be", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49 } }, { "data": { "id": "a021f65d-b911-4b91-92cc-6513980df20e", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.3132530120481928, "overlap_size": 52 } }, { "data": { "id": "55ceaadd-fe7b-4446-aa4f-4849b22d1ef7", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.4297520661157025, "overlap_size": 52 } }, { "data": { "id": "4eed2af9-4be8-4149-bb38-4823af97fabe", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.5217391304347826, "overlap_size": 48 } }, { "data": { "id": "8bb357d0-4a02-48bb-8280-cd709169a08a", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49 } }, { "data": { "id": "1b419e0e-1b9c-4393-84d7-44e6dba1040d", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.6046511627906976, "overlap_size": 52 } }, { "data": { "id": "ebbe1e6a-f8dc-4143-abb2-a11c22697886", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "similarity_coefficient": 0.3288590604026846, "overlap_size": 49 } }, { "data": { "id": "9ccb61c9-963e-4598-9551-055f26809d1c", "source": "a9322d3e-0434-4ba3-b569-019127883b2e", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "0c796ca9-0780-41a9-b250-1ac39d37efe4", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78 } }, { "data": { "id": "f30c9204-6085-4cfb-b3de-9bf0b6423be9", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "similarity_coefficient": 0.44, "overlap_size": 88 } }, { "data": { "id": "74b14f4a-11fd-433f-8f26-960ee056626f", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.546583850931677, "overlap_size": 88 } }, { "data": { "id": "3e89714a-0bfc-402a-8616-62bfe9292064", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "similarity_coefficient": 0.2916666666666667, "overlap_size": 35 } }, { "data": { "id": "be38a4b6-a5e5-4c69-9ced-5cc5283a18af", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.8073394495412844, "overlap_size": 88 } }, { "data": { "id": "23e5304c-c2f9-4526-8fdc-06ae3693ff94", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78 } }, { "data": { "id": "de5fac01-2536-478d-8fb7-16ba486b4049", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "088965ae-beab-49a6-ba7f-62c8508bf897", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78 } }, { "data": { "id": "51367c8a-9eea-47ef-9a69-d0461fd5e8c1", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "similarity_coefficient": 0.29411764705882354, "overlap_size": 35 } }, { "data": { "id": "ae80b010-17d2-49a3-97bb-63165e374bd3", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.9072164948453608, "overlap_size": 88 } }, { "data": { "id": "ac32eb0b-3806-40c4-9999-d5f31da4d52e", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.7394957983193278, "overlap_size": 88 } }, { "data": { "id": "e21bf69b-6900-409b-a5b4-5af885ad603d", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.5912408759124088, "overlap_size": 81 } }, { "data": { "id": "d3ebf961-4bc3-4b13-9f8d-79020abfc7f5", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78 } }, { "data": { "id": "b3735201-bf27-400d-98d5-d45a102e1ab9", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "a966733a-44de-48c5-8959-37cec18be5cf", "similarity_coefficient": 0.9473684210526315, "overlap_size": 90 } }, { "data": { "id": "119f2f4a-7c1c-4c73-8884-cb4fc0259330", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78 } }, { "data": { "id": "520cd1a7-3c3f-490c-bd3f-cf948866dedf", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.3181818181818182, "overlap_size": 35 } }, { "data": { "id": "4165ad0c-594f-47f3-bb90-0d454f4f42e7", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.7096774193548387, "overlap_size": 88 } }, { "data": { "id": "03ec55c0-3d59-4ec6-a26d-39562efd9ebf", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "similarity_coefficient": 0.7333333333333333, "overlap_size": 88 } }, { "data": { "id": "6d5b070c-bd85-4d4c-89eb-005b20dca2bd", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78 } }, { "data": { "id": "7038dc90-89bb-486a-bda5-fb4ae8aa99fb", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78 } }, { "data": { "id": "d40bcf6f-7674-450f-ad41-ef38e9ab3cca", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78 } }, { "data": { "id": "8a0e27a8-f5f1-4dae-827a-0a53d130ba5f", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "3608c2a4-44c5-403d-a12c-991578f6376a", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78 } }, { "data": { "id": "b37d7586-cb42-48a9-9295-a3a56f1f5326", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "814f7e07-9f98-4192-9976-64397caf0790", "similarity_coefficient": 0.4943820224719101, "overlap_size": 88 } }, { "data": { "id": "79b2c881-6f56-4e77-b900-b0c1d2c35c3a", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "7e8a2798-3efd-4409-a939-be2763ac2d08", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78 } }, { "data": { "id": "3dac23c0-8de0-4174-a2b7-3289472949c6", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78 } }, { "data": { "id": "7d68731a-2c13-4cc4-b1bb-7df656d5cbe3", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.39285714285714285, "overlap_size": 88 } }, { "data": { "id": "a02f0414-0e5f-4d0c-a0a0-4052038654f1", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "similarity_coefficient": 0.624113475177305, "overlap_size": 88 } }, { "data": { "id": "83cee15f-328e-4cd7-bbfb-71ea26b52d43", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "ab24b93a-a426-4fa5-8f15-364938339732", "similarity_coefficient": 0.2826086956521739, "overlap_size": 91 } }, { "data": { "id": "7668a79d-ceaf-4937-9adb-008309869cf8", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.7154471544715447, "overlap_size": 88 } }, { "data": { "id": "8d1e9b8c-06d1-4328-8c41-0335897e86b2", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.29411764705882354, "overlap_size": 35 } }, { "data": { "id": "cdbd3df0-98e2-463f-81ee-15f2754b57f7", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "24500407-f636-44ed-9254-763c3b68aad6", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78 } }, { "data": { "id": "f8a707e1-9614-4f24-8c16-9b44c345e066", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78 } }, { "data": { "id": "6aef9528-9774-424b-8e0e-0594bd403c09", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "similarity_coefficient": 0.3125, "overlap_size": 35 } }, { "data": { "id": "c31789ee-e91f-4819-88e8-f3fe4b08fa07", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "similarity_coefficient": 0.5365853658536586, "overlap_size": 88 } }, { "data": { "id": "72282e67-39aa-4610-83a8-a7d2f05cbb05", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "611ff36d-7bbc-4322-bcdb-592441240039", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78 } }, { "data": { "id": "16372649-1c72-4768-8299-433dec6652e3", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78 } }, { "data": { "id": "81d5ab4e-d298-44dd-a11f-384c66ac6af5", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78 } }, { "data": { "id": "4e7bd767-23d2-4506-bf1a-3b5529770f71", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "similarity_coefficient": 0.3231292517006803, "overlap_size": 95 } }, { "data": { "id": "ab653af4-b49b-4b5e-bb6f-add74b842b62", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "eb1d3bcf-4842-469d-b080-15ffd6d86e52", "similarity_coefficient": 0.2630057803468208, "overlap_size": 91 } }, { "data": { "id": "4cad1056-a954-4a5c-84c8-e77070323123", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.7154471544715447, "overlap_size": 88 } }, { "data": { "id": "0ace42d6-9543-4dcc-9d05-fe800cd9f207", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "similarity_coefficient": 0.7333333333333333, "overlap_size": 88 } }, { "data": { "id": "15f1f9c0-3fe8-48fe-a963-3c46859d8c32", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78 } }, { "data": { "id": "e663dac8-ecfe-4a60-823e-1121e10ef3d6", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "85618a5e-0712-414d-a086-843f21373c0c", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78 } }, { "data": { "id": "bd0246ba-c442-4aa2-bc36-c341ca20d625", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.41904761904761906, "overlap_size": 88 } }, { "data": { "id": "427e10b4-675b-475b-bbd6-842c1533ed0e", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78 } }, { "data": { "id": "ae05c557-b04a-4ab1-ad38-28baf531d1f8", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "e47a74cd-5800-429b-b89e-f490004f32db", "similarity_coefficient": 0.6929133858267716, "overlap_size": 88 } }, { "data": { "id": "c0bfa63b-e770-4ca2-b593-ef35c467aff8", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "9cc1543e-b2e4-4718-872d-4737deb33c71", "similarity_coefficient": 0.6915887850467289, "overlap_size": 74 } }, { "data": { "id": "40dbf8cc-df6d-49ad-be57-4d2892869d25", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "84f6f0ed-9615-48ba-a629-667c8302de99", "similarity_coefficient": 0.8543689320388349, "overlap_size": 88 } }, { "data": { "id": "54f39790-2365-4f86-9e52-0c742e5260b5", "source": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.8712871287128713, "overlap_size": 88 } }, { "data": { "id": "1c74631b-b6d3-4342-af43-ff32590e6861", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.55, "overlap_size": 88 } }, { "data": { "id": "d2714b32-cf32-4eff-bd72-332b7813599f", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "similarity_coefficient": 0.44221105527638194, "overlap_size": 88 } }, { "data": { "id": "b8d7df7e-51ce-4b6b-ab6b-d172b98ee18e", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "1b974f25-6c11-4375-9d11-c147ab88492e", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "similarity_coefficient": 0.29411764705882354, "overlap_size": 35 } }, { "data": { "id": "4ac9ddb6-a458-4aa5-87a0-76fd16b5c380", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "088965ae-beab-49a6-ba7f-62c8508bf897", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "60c6e7c0-6f52-4006-a59f-2a467fec6198", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.8148148148148148, "overlap_size": 88 } }, { "data": { "id": "da23fda5-4f87-4721-8f0c-886eee1bd5ee", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "similarity_coefficient": 0.2966101694915254, "overlap_size": 35 } }, { "data": { "id": "db07de1f-4ed6-4ff8-ba84-9e1219bf4a4f", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "similarity_coefficient": 0.8712871287128713, "overlap_size": 88 } }, { "data": { "id": "6ea1c0fe-466d-4988-9155-4fc96e9392bf", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "264dab50-c5ea-49d0-b432-d86dfc55f5df", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "85618a5e-0712-414d-a086-843f21373c0c", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "b6e9b9cb-293d-4efe-a73d-48eef8172871", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.42105263157894735, "overlap_size": 88 } }, { "data": { "id": "60f133de-62b5-4707-8406-c5eae12d7811", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "bf754880-f817-4d3e-9b7e-4aafa4a44183", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "9cc1543e-b2e4-4718-872d-4737deb33c71", "similarity_coefficient": 0.6981132075471698, "overlap_size": 74 } }, { "data": { "id": "96efa2ca-d8e8-444a-b5af-36027c1b1ced", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "84f6f0ed-9615-48ba-a629-667c8302de99", "similarity_coefficient": 0.8627450980392157, "overlap_size": 88 } }, { "data": { "id": "133acc30-7264-42c3-b1c8-8b6f32e678b6", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "e47a74cd-5800-429b-b89e-f490004f32db", "similarity_coefficient": 0.6984126984126984, "overlap_size": 88 } }, { "data": { "id": "b68445a1-abfe-4deb-8316-ada17a60de58", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.88, "overlap_size": 88 } }, { "data": { "id": "c6f28611-c91f-42bb-807b-e8937b98a52f", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.39461883408071746, "overlap_size": 88 } }, { "data": { "id": "11fcc099-eaaf-43f4-8c44-75338af6c485", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.2966101694915254, "overlap_size": 35 } }, { "data": { "id": "33dc1e73-397c-4cde-b538-8d4f0b611322", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "cbfd09c3-c23d-486c-86b5-77930e91f2d4", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "ab24b93a-a426-4fa5-8f15-364938339732", "similarity_coefficient": 0.2716049382716049, "overlap_size": 88 } }, { "data": { "id": "db5254d1-2cf5-4353-9a67-4fdc74e4daa2", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "similarity_coefficient": 0.6285714285714286, "overlap_size": 88 } }, { "data": { "id": "8d3370a8-b438-4957-a64c-84ddc12e9132", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "24500407-f636-44ed-9254-763c3b68aad6", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78 } }, { "data": { "id": "3409e387-2a5d-4fba-9a08-8b7642ecf0ea", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "similarity_coefficient": 0.3153153153153153, "overlap_size": 35 } }, { "data": { "id": "ffa9c81a-5011-43e0-bd80-5614469e95b2", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "similarity_coefficient": 0.5398773006134969, "overlap_size": 88 } }, { "data": { "id": "26e49d90-28f5-4b32-9c91-ab453fc2ee2b", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.7213114754098361, "overlap_size": 88 } }, { "data": { "id": "860ddd61-315b-4ecc-ad47-71048b1933f6", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "93a8c1b8-3b3a-4f24-825d-98498983236f", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "a6df67ea-00d0-441e-8b2a-2bb52dd94d66", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "similarity_coefficient": 0.7394957983193278, "overlap_size": 88 } }, { "data": { "id": "9144d708-0c59-4a06-8fb2-486d0d7a02fc", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "similarity_coefficient": 0.8315789473684211, "overlap_size": 79 } }, { "data": { "id": "0906b9a8-071b-4bb5-97db-e27a3ff54818", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "similarity_coefficient": 0.2976588628762542, "overlap_size": 89 } }, { "data": { "id": "845519a0-38e4-47bf-9198-0ad2662e188f", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.7213114754098361, "overlap_size": 88 } }, { "data": { "id": "f071d9ea-d4d2-4748-996a-c39369907907", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "eb1d3bcf-4842-469d-b080-15ffd6d86e52", "similarity_coefficient": 0.25287356321839083, "overlap_size": 88 } }, { "data": { "id": "7b930e72-b1e4-44b2-a1e7-691f94315fdd", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.9166666666666666, "overlap_size": 88 } }, { "data": { "id": "7707211a-00e3-49cb-bf53-fb13a834efed", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "2c0c34fc-46c1-4618-a5c9-53e6b76c4b1b", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.5955882352941176, "overlap_size": 81 } }, { "data": { "id": "6ee2df7c-4200-4820-8ccd-967dd81cfd85", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.7457627118644068, "overlap_size": 88 } }, { "data": { "id": "d9d05c5f-4702-4d5b-b813-4ee1ca2591c4", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "611ff36d-7bbc-4322-bcdb-592441240039", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "c6e22cd9-3be4-49a8-a430-43d5b272a0bc", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.3211009174311927, "overlap_size": 35 } }, { "data": { "id": "f08ebd40-b95b-426d-aa72-dd43bcbb8813", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "a966733a-44de-48c5-8959-37cec18be5cf", "similarity_coefficient": 0.9166666666666666, "overlap_size": 88 } }, { "data": { "id": "e00af3f6-730f-4422-a463-23ef018a0682", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "8ffc186f-8608-48b9-9268-dff5f7bbedd6", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.8034188034188035, "overlap_size": 94 } }, { "data": { "id": "b5b7b71d-5ac4-40e1-b552-f5ffce38489b", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "8d11abdb-bff3-4d8a-9502-c382f69ae9f4", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "3608c2a4-44c5-403d-a12c-991578f6376a", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "09657ddd-608e-44a3-8c26-45c7a10e0ec2", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "similarity_coefficient": 0.7394957983193278, "overlap_size": 88 } }, { "data": { "id": "b3ab53fa-b1a2-4b95-97a4-37e67401bc4d", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "814f7e07-9f98-4192-9976-64397caf0790", "similarity_coefficient": 0.4971751412429379, "overlap_size": 88 } }, { "data": { "id": "59c72e29-d058-4280-88ea-79277c3026ff", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "d0b38d1e-2448-4815-a218-406bd602e9f5", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "914240f0-bcdc-4f97-8a00-da9b6b7f4aa0", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "0abcc076-3224-4e5c-b2c6-f89964264bba", "source": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "target": "7e8a2798-3efd-4409-a939-be2763ac2d08", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "5349825c-b97f-4624-8471-9d73a9ab733d", "source": "1cfa471d-acac-4230-bba5-70fcdd35aafe", "target": "cf3662ba-ff22-4e1e-b61e-12ecb731cce6", "similarity_coefficient": 0.5338345864661654, "overlap_size": 71 } }, { "data": { "id": "d3e6a32b-852c-4ae9-9b61-414298ee81ca", "source": "1cfa471d-acac-4230-bba5-70fcdd35aafe", "target": "695cb122-8385-40a4-ade8-f3a3d8fa7320", "similarity_coefficient": 0.5522388059701493, "overlap_size": 74 } }, { "data": { "id": "3de5dcf3-b0d8-4826-bc5f-9fbe6c4dfd9a", "source": "1cfa471d-acac-4230-bba5-70fcdd35aafe", "target": "8d189e15-c192-4005-a56b-ee419c6a4796", "similarity_coefficient": 0.32722513089005234, "overlap_size": 125 } }, { "data": { "id": "79e6e625-67c7-46ee-916a-9c5c3f0114c6", "source": "1cfa471d-acac-4230-bba5-70fcdd35aafe", "target": "f97b81a8-1862-43e0-8494-7bbe4766e167", "similarity_coefficient": 0.6648936170212766, "overlap_size": 125 } }, { "data": { "id": "3c32f779-7e8f-43ad-957d-31def9599d37", "source": "1cfa471d-acac-4230-bba5-70fcdd35aafe", "target": "a83c9102-412e-47a3-888d-1d5d38000f18", "similarity_coefficient": 0.568, "overlap_size": 71 } }, { "data": { "id": "c5c4730f-2025-4ff0-b531-4bf527f458ad", "source": "1cfa471d-acac-4230-bba5-70fcdd35aafe", "target": "384f6879-1c32-46c3-8b2b-7c9ded001526", "similarity_coefficient": 0.7111111111111111, "overlap_size": 96 } }, { "data": { "id": "d99ea2a3-c3a9-471d-91f5-710ca91b2b39", "source": "1cfa471d-acac-4230-bba5-70fcdd35aafe", "target": "bb4d7b94-8c3a-4684-b925-2e7c7e698b63", "similarity_coefficient": 0.3306878306878307, "overlap_size": 125 } }, { "data": { "id": "b6c37992-09fe-41fc-beeb-0df973ff9996", "source": "1cfa471d-acac-4230-bba5-70fcdd35aafe", "target": "a31fb885-5d37-4b2b-a6e5-41936b5cecc1", "similarity_coefficient": 0.3306878306878307, "overlap_size": 125 } }, { "data": { "id": "17311443-6773-4518-b50a-8f0c1efff715", "source": "1cfa471d-acac-4230-bba5-70fcdd35aafe", "target": "5f454720-e0b8-4c7f-88b3-b288c0e8b59e", "similarity_coefficient": 0.6983240223463687, "overlap_size": 125 } }, { "data": { "id": "098512df-f965-4a95-9d2e-777535ac8d60", "source": "a3e1854e-d9ab-43bc-aa3a-a3ece8063d42", "target": "384f6879-1c32-46c3-8b2b-7c9ded001526", "similarity_coefficient": 0.6981132075471698, "overlap_size": 74 } }, { "data": { "id": "22ffa619-1cec-42b1-b593-0d0df60306d5", "source": "a3e1854e-d9ab-43bc-aa3a-a3ece8063d42", "target": "695cb122-8385-40a4-ade8-f3a3d8fa7320", "similarity_coefficient": 0.891566265060241, "overlap_size": 74 } }, { "data": { "id": "b1b19933-282b-49f6-821a-c9e55c7c555c", "source": "a3e1854e-d9ab-43bc-aa3a-a3ece8063d42", "target": "f97b81a8-1862-43e0-8494-7bbe4766e167", "similarity_coefficient": 0.39361702127659576, "overlap_size": 74 } }, { "data": { "id": "4bc938ca-d5a7-48c2-8d15-81c2b57788f3", "source": "a3e1854e-d9ab-43bc-aa3a-a3ece8063d42", "target": "5f454720-e0b8-4c7f-88b3-b288c0e8b59e", "similarity_coefficient": 0.4134078212290503, "overlap_size": 74 } }, { "data": { "id": "c7afdb39-1936-4739-ba53-d1f128400e85", "source": "a3e1854e-d9ab-43bc-aa3a-a3ece8063d42", "target": "cf3662ba-ff22-4e1e-b61e-12ecb731cce6", "similarity_coefficient": 0.8658536585365854, "overlap_size": 71 } }, { "data": { "id": "facf3222-bbfd-4a1e-a959-d8bf9ccf3b20", "source": "a3e1854e-d9ab-43bc-aa3a-a3ece8063d42", "target": "1cfa471d-acac-4230-bba5-70fcdd35aafe", "similarity_coefficient": 0.592, "overlap_size": 74 } }, { "data": { "id": "849e905c-bbd7-4331-964f-93a0d5c8a2ae", "source": "a3e1854e-d9ab-43bc-aa3a-a3ece8063d42", "target": "a83c9102-412e-47a3-888d-1d5d38000f18", "similarity_coefficient": 0.9594594594594594, "overlap_size": 71 } }, { "data": { "id": "21730f8b-0ed5-4756-be64-af72531b8334", "source": "c16f7809-23d1-484e-b5f5-4529f5798237", "target": "386aac68-a2ec-4a2a-a96e-7b32087b2e75", "similarity_coefficient": 0.6857142857142857, "overlap_size": 24 } }, { "data": { "id": "dc59498a-cf2c-4b53-8a6d-1bc3bb8616c3", "source": "c16f7809-23d1-484e-b5f5-4529f5798237", "target": "31a9d742-83d3-4990-9495-42d49c780cec", "similarity_coefficient": 0.38823529411764707, "overlap_size": 33 } }, { "data": { "id": "57aa5d3e-7bfa-48ef-a37b-5b36903cf986", "source": "c16f7809-23d1-484e-b5f5-4529f5798237", "target": "9b45383f-4e68-4ffa-a477-21d4f8675759", "similarity_coefficient": 0.85, "overlap_size": 34 } }, { "data": { "id": "fe5345cd-1f68-4d31-a1d9-38b578256ed4", "source": "c16f7809-23d1-484e-b5f5-4529f5798237", "target": "5da4b98c-4121-439d-b27e-27fc0de7d80c", "similarity_coefficient": 0.6111111111111112, "overlap_size": 33 } }, { "data": { "id": "ece3739f-7a29-4411-939b-4b2d8f8f8fd9", "source": "c16f7809-23d1-484e-b5f5-4529f5798237", "target": "826fb2dd-0313-4a40-adb5-dd2b41eea9d4", "similarity_coefficient": 0.7727272727272727, "overlap_size": 34 } }, { "data": { "id": "72d9c01e-1107-4a28-bc18-1363f8a772c8", "source": "c16f7809-23d1-484e-b5f5-4529f5798237", "target": "44338cf6-b799-4097-a74f-e7386e686f63", "similarity_coefficient": 0.723404255319149, "overlap_size": 34 } }, { "data": { "id": "8f0e83d2-44fb-486a-98ad-9feca3177051", "source": "c16f7809-23d1-484e-b5f5-4529f5798237", "target": "3bfb8e85-f48e-403f-ac3c-bf8166cffc77", "similarity_coefficient": 0.42105263157894735, "overlap_size": 24 } }, { "data": { "id": "1383323d-88a3-4e22-9887-6df04fd512fd", "source": "c16f7809-23d1-484e-b5f5-4529f5798237", "target": "405225ec-878f-41f4-9b4f-158f553cd119", "similarity_coefficient": 0.9705882352941176, "overlap_size": 33 } }, { "data": { "id": "bba0ea03-8741-424b-b6aa-ea5028bcefcf", "source": "c16f7809-23d1-484e-b5f5-4529f5798237", "target": "a87e7bfc-894c-4e4b-b80f-64bba3e8adc1", "similarity_coefficient": 0.8717948717948718, "overlap_size": 34 } }, { "data": { "id": "84c3a9a4-635e-4dfb-b65a-12f17e74dd64", "source": "c16f7809-23d1-484e-b5f5-4529f5798237", "target": "51aa4010-3e79-4fea-9a8d-7d096b0002fa", "similarity_coefficient": 0.9444444444444444, "overlap_size": 34 } }, { "data": { "id": "dbfd745b-0c04-4be8-9f20-ccce6d69e24e", "source": "55927dce-c65d-4418-9db1-33205a2bd8e8", "target": "330f6663-8dc5-4e65-8302-757d6733634d", "similarity_coefficient": 0.44148936170212766, "overlap_size": 83 } }, { "data": { "id": "c8c8fabd-f155-43f2-8f3c-704844668b44", "source": "55927dce-c65d-4418-9db1-33205a2bd8e8", "target": "d0695f97-406d-467a-ac9e-3fd20d47a3e9", "similarity_coefficient": 0.6526315789473685, "overlap_size": 62 } }, { "data": { "id": "b4dcb197-29f8-45ea-a3f1-06d4cfcc171e", "source": "55927dce-c65d-4418-9db1-33205a2bd8e8", "target": "328ca91a-a7c1-42f5-be44-d20d3d77dd18", "similarity_coefficient": 0.3059210526315789, "overlap_size": 93 } }, { "data": { "id": "08cafe7c-f5c3-4b8d-9460-7fd956a88db4", "source": "55927dce-c65d-4418-9db1-33205a2bd8e8", "target": "077180f7-758c-4448-8995-446025fc993b", "similarity_coefficient": 0.39263803680981596, "overlap_size": 64 } }, { "data": { "id": "b0c69e7e-26bc-4fd0-80ea-9eccdec32f68", "source": "864bc8cb-985d-45b3-a4d2-110108c67339", "target": "3426b560-b523-49c6-8a55-6451ac5ff9fb", "similarity_coefficient": 0.4576271186440678, "overlap_size": 27 } }, { "data": { "id": "39739dff-36d8-460f-8210-2b71c9e0cd5e", "source": "864bc8cb-985d-45b3-a4d2-110108c67339", "target": "fa82a47b-3388-4aec-aa66-f207fa3a1e17", "similarity_coefficient": 0.5084745762711864, "overlap_size": 30 } }, { "data": { "id": "9bc15854-6d1f-4c46-a9cf-de05e7526966", "source": "864bc8cb-985d-45b3-a4d2-110108c67339", "target": "6a073b52-0b0c-457e-86cd-2b8ee3c5e8cf", "similarity_coefficient": 0.3492063492063492, "overlap_size": 22 } }, { "data": { "id": "e1e62bf4-3b57-47b6-9346-8fe4c3351dff", "source": "864bc8cb-985d-45b3-a4d2-110108c67339", "target": "e8f60c2e-a8b6-4682-aa31-e95d21714e83", "similarity_coefficient": 0.5084745762711864, "overlap_size": 30 } }, { "data": { "id": "3fb40ef3-287a-4225-ac75-ec058579218c", "source": "888db3ed-5fd5-4ce2-a4bf-5901f00e236c", "target": "c167249a-c4f0-4f9e-9508-38b203d5aa6f", "similarity_coefficient": 0.6630434782608695, "overlap_size": 122 } }, { "data": { "id": "fa73c2b3-2efb-4ef3-bf73-5c31f4f13736", "source": "888db3ed-5fd5-4ce2-a4bf-5901f00e236c", "target": "23948dfa-a18c-440c-b1eb-1c4b5a4a17c4", "similarity_coefficient": 0.7305389221556886, "overlap_size": 122 } }, { "data": { "id": "0ed7aff6-795a-4d35-92fd-22c9314f3b2a", "source": "888db3ed-5fd5-4ce2-a4bf-5901f00e236c", "target": "c6751f66-b231-4a0d-84d6-e53835fd242d", "similarity_coefficient": 0.2546972860125261, "overlap_size": 122 } }, { "data": { "id": "4abb830b-2b8c-4adb-a56d-fb2110ba9f1f", "source": "888db3ed-5fd5-4ce2-a4bf-5901f00e236c", "target": "a8d12184-7c64-42ff-aa0d-40a047927f81", "similarity_coefficient": 0.8026315789473685, "overlap_size": 122 } }, { "data": { "id": "4a4d7ade-adcc-4001-900b-8194d0ec0814", "source": "888db3ed-5fd5-4ce2-a4bf-5901f00e236c", "target": "74b5bd36-84dd-4786-be05-c3fad4a46c33", "similarity_coefficient": 0.3873015873015873, "overlap_size": 122 } }, { "data": { "id": "f9c112ce-1cc5-4bf4-8604-b123c829950d", "source": "888db3ed-5fd5-4ce2-a4bf-5901f00e236c", "target": "70dc2a0f-dec6-4de4-b504-61c65a84c8d7", "similarity_coefficient": 0.9242424242424242, "overlap_size": 122 } }, { "data": { "id": "97d69dbf-d831-4345-b4d2-4002643d42f3", "source": "888db3ed-5fd5-4ce2-a4bf-5901f00e236c", "target": "f40412c6-5ce1-4780-a6f2-a92ff01d974a", "similarity_coefficient": 0.2850467289719626, "overlap_size": 122 } }, { "data": { "id": "48c1535a-7f06-4ebf-b254-87254db6be12", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "similarity_coefficient": 0.39111111111111113, "overlap_size": 88 } }, { "data": { "id": "4602420d-2db0-42c5-8729-b697c130f661", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "1816d679-edce-49d2-9b73-193ff8713593", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "06390db6-be8c-434c-a4d8-d056be62a797", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "similarity_coefficient": 0.5, "overlap_size": 60 } }, { "data": { "id": "2718b3c1-6ca7-4a48-83af-3ecab9e16aae", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.85, "overlap_size": 102 } }, { "data": { "id": "7e5db664-058e-45ce-9052-a3a7e9ccc971", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "similarity_coefficient": 0.6929133858267716, "overlap_size": 88 } }, { "data": { "id": "cc25ed53-91ec-4ae4-bd09-711f0e60802b", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "similarity_coefficient": 0.6984126984126984, "overlap_size": 88 } }, { "data": { "id": "5bc657f4-ce8c-49de-9f20-ab596d4ede20", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "7786fd6c-f244-45f4-bff8-f2d93ec02fcf", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "088965ae-beab-49a6-ba7f-62c8508bf897", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "6cb1af73-3060-43c6-8d11-2332b81f6dfa", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.7357142857142858, "overlap_size": 103 } }, { "data": { "id": "8667ee96-c1cd-4344-8759-4a33d8f7b45d", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.7213114754098361, "overlap_size": 88 } }, { "data": { "id": "e28ff246-2b88-482b-96b4-edb43a60855c", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "19c9bcb3-18f1-47e6-b82a-2593178272b0", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "316b650d-9339-4038-8610-5d7ba652dfb4", "similarity_coefficient": 0.25055432372505543, "overlap_size": 113 } }, { "data": { "id": "cde92c4e-8723-402c-90cf-4df3e730013b", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.5906040268456376, "overlap_size": 88 } }, { "data": { "id": "13298f12-72c2-44a5-80c7-9b2f8953330e", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "a966733a-44de-48c5-8959-37cec18be5cf", "similarity_coefficient": 0.7213114754098361, "overlap_size": 88 } }, { "data": { "id": "7922c29a-4e5f-4172-a056-90179a02d99a", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "3608c2a4-44c5-403d-a12c-991578f6376a", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "c0a4da47-c167-4206-bab6-c18eacb7da2f", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.9333333333333333, "overlap_size": 112 } }, { "data": { "id": "393dcbdd-ee48-43eb-8eb8-94d64f219936", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.25925925925925924, "overlap_size": 35 } }, { "data": { "id": "ca0ef3d1-65ee-4e66-ba21-e9a2697a1457", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "18299b2a-4725-4185-bb16-b47bd9bf9d2b", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "1fb15cfd-35c2-4c2a-96b9-069cc21bc199", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "similarity_coefficient": 0.9416666666666667, "overlap_size": 113 } }, { "data": { "id": "e12d5454-bfdb-41c5-a26b-299ada06c1c1", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "7e8a2798-3efd-4409-a939-be2763ac2d08", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "ead0fd6e-f7e0-44a8-a81b-674d0f672229", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "24500407-f636-44ed-9254-763c3b68aad6", "similarity_coefficient": 0.6341463414634146, "overlap_size": 78 } }, { "data": { "id": "46464f6d-6ca4-4958-8fda-a86b92fbd57e", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "e18b4c60-2c16-4ded-b629-feb6758b3893", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "814f7e07-9f98-4192-9976-64397caf0790", "similarity_coefficient": 0.44776119402985076, "overlap_size": 90 } }, { "data": { "id": "09f7b90c-eb19-416b-864e-5f8d7f96e25f", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "756f2c9f-e0ee-48f5-974c-82781ce21728", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "ab24b93a-a426-4fa5-8f15-364938339732", "similarity_coefficient": 0.3476923076923077, "overlap_size": 113 } }, { "data": { "id": "f6b9c15a-9f8b-45ab-9495-1548b023df42", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "e9c938a9-d491-44a2-a7ed-68984362ed39", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.6164383561643836, "overlap_size": 90 } }, { "data": { "id": "d174fa45-ca96-4fc1-a208-d69a35bd40b7", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "similarity_coefficient": 0.5301204819277109, "overlap_size": 88 } }, { "data": { "id": "4e8e8970-9191-4890-a300-6a48690f9749", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.6164383561643836, "overlap_size": 90 } }, { "data": { "id": "0c59e770-81c6-4321-9ab8-9cbf0633d93a", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.49166666666666664, "overlap_size": 59 } }, { "data": { "id": "2066f1e5-207b-42b2-a215-fd079a790fab", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "similarity_coefficient": 0.43333333333333335, "overlap_size": 52 } }, { "data": { "id": "87f3d5b0-f764-4eb7-8fab-2d340c66b380", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "1c254683-6796-4901-bb2a-0a50da9d834b", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "636d8711-c4a0-4ac9-a2f8-e2916b5ebe9a", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "eb9b3a98-7b63-4523-9e6b-9bad67633e55", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "611ff36d-7bbc-4322-bcdb-592441240039", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "b0bf03c5-b33c-4405-9099-1e75d6c20acc", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "similarity_coefficient": 0.6068965517241379, "overlap_size": 88 } }, { "data": { "id": "c1676a6d-357f-41ff-9c36-c0a2d262b9fe", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "eb1d3bcf-4842-469d-b080-15ffd6d86e52", "similarity_coefficient": 0.3237822349570201, "overlap_size": 113 } }, { "data": { "id": "0cb1aabb-e67b-40bb-9e68-8b0eaea6643b", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.3643724696356275, "overlap_size": 90 } }, { "data": { "id": "f4f67334-294c-416f-b8f9-409cba44ac1d", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "similarity_coefficient": 0.40816326530612246, "overlap_size": 120 } }, { "data": { "id": "21900100-ad98-4680-a349-bb7cc3117ecb", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "similarity_coefficient": 0.49166666666666664, "overlap_size": 59 } }, { "data": { "id": "b0c07896-9c7e-4a91-9734-8fd04e3b5d20", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "85618a5e-0712-414d-a086-843f21373c0c", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "192e0a01-4b14-41da-b550-e1a356b51fa1", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "9cd3cf7e-118f-449e-b4f0-249f73aac9b8", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "9cc1543e-b2e4-4718-872d-4737deb33c71", "similarity_coefficient": 0.5606060606060606, "overlap_size": 74 } }, { "data": { "id": "10ec3ddb-4dd0-4202-bb5e-58194e047388", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "similarity_coefficient": 0.489247311827957, "overlap_size": 91 } }, { "data": { "id": "5de310cf-a9ba-4cfe-be97-65ff10424346", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "e47a74cd-5800-429b-b89e-f490004f32db", "similarity_coefficient": 1, "overlap_size": 120 } }, { "data": { "id": "94a0d026-b78c-4ca1-87a1-841b4de2166c", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "84f6f0ed-9615-48ba-a629-667c8302de99", "similarity_coefficient": 0.7142857142857143, "overlap_size": 90 } }, { "data": { "id": "205abc4a-e370-4370-ac85-aa43a03f2a6e", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.6984126984126984, "overlap_size": 88 } }, { "data": { "id": "39fcf862-8db8-40a1-8467-26597a0a7f83", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.4731182795698925, "overlap_size": 88 } }, { "data": { "id": "59601092-87a9-4101-bc0c-62ad61373745", "source": "d9b6e170-0a10-4b07-a6be-65588639fd62", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.37446808510638296, "overlap_size": 88 } }, { "data": { "id": "ebd44380-8e5c-4244-b01c-282773ba77ac", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.32450331125827814, "overlap_size": 49 } }, { "data": { "id": "915ea10a-0236-4719-a373-49b1af1392ff", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.43333333333333335, "overlap_size": 52 } }, { "data": { "id": "8ed2945c-0c19-4871-b849-bb2a6135bf1e", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.43333333333333335, "overlap_size": 52 } }, { "data": { "id": "b0f87920-d1c8-4e46-a1f4-6e8bc48c0fbb", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.4854368932038835, "overlap_size": 50 } }, { "data": { "id": "cb4c5b7b-b1b5-4e36-a0db-d406e00ef9d3", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.3888888888888889, "overlap_size": 49 } }, { "data": { "id": "0ff9a2f2-8dab-4a25-b0d4-ec5d3f325049", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "17018f59-7b29-40d7-bb46-1283a625ad23", "similarity_coefficient": 0.7266187050359713, "overlap_size": 101 } }, { "data": { "id": "6de1f577-80d9-462f-b5e4-73210c1fcf05", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "a6609db1-5756-4ff4-8409-5013d1a74f05", "similarity_coefficient": 0.2608695652173913, "overlap_size": 48 } }, { "data": { "id": "92d69621-f222-4598-8192-41916bfab6e7", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "a9322d3e-0434-4ba3-b569-019127883b2e", "similarity_coefficient": 0.5, "overlap_size": 52 } }, { "data": { "id": "2399ae33-a489-4da4-b860-0e0e4eee45c0", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "similarity_coefficient": 0.4049586776859504, "overlap_size": 49 } }, { "data": { "id": "0ee2d84b-c200-48f0-b103-aa0093c2597b", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.3888888888888889, "overlap_size": 49 } }, { "data": { "id": "b57988fd-a422-4cff-849e-8bc63fe0b408", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.40458015267175573, "overlap_size": 53 } }, { "data": { "id": "bff67b63-cd75-40b2-9dba-4ede2a602276", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.41818181818181815, "overlap_size": 46 } }, { "data": { "id": "ca56e5f8-bd0f-4f3d-8345-cb0d00255013", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.3795620437956204, "overlap_size": 52 } }, { "data": { "id": "1ba293a5-cddd-4f51-84f3-c4b4bfdd795c", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.34782608695652173, "overlap_size": 48 } }, { "data": { "id": "15f1f0d8-27ce-4483-8367-857a858b684f", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.3402777777777778, "overlap_size": 49 } }, { "data": { "id": "594cee70-003b-4d29-bec2-f0759fa021cb", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.5, "overlap_size": 52 } }, { "data": { "id": "a5dd6703-a167-46d5-be42-7dcf8cfc56de", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.3865546218487395, "overlap_size": 46 } }, { "data": { "id": "829d010b-1330-428f-8317-1bc7525b3fef", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.37037037037037035, "overlap_size": 50 } }, { "data": { "id": "ce35a2bb-6abe-4cb8-8412-013613a398ae", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "similarity_coefficient": 0.39473684210526316, "overlap_size": 45 } }, { "data": { "id": "98648182-4de4-43c1-85e8-b2d3d9b68543", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "f9954f17-1709-479e-8d22-403ed421f128", "similarity_coefficient": 0.3984375, "overlap_size": 51 } }, { "data": { "id": "71e2c2c2-1794-42d4-93dd-7b6118b6df2b", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49 } }, { "data": { "id": "2b9cbab2-5b45-42c1-ab1c-39e1e776eba1", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49 } }, { "data": { "id": "24ecc6fb-fab5-4b5e-95c5-d77981fb9ef7", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49 } }, { "data": { "id": "cb56377e-fec1-455d-a1f5-45581ff8761c", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.42452830188679247, "overlap_size": 45 } }, { "data": { "id": "1655ce4e-ce6d-4b70-8d94-6170cb014624", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "a416f178-74f3-46bf-af8a-d534e01b18aa", "similarity_coefficient": 0.4375, "overlap_size": 49 } }, { "data": { "id": "b318f34d-cde6-45dc-a9dc-0942f9d92582", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.4247787610619469, "overlap_size": 48 } }, { "data": { "id": "a042b80c-84dc-466b-84e1-8a20c4f8a3e1", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49 } }, { "data": { "id": "d61c2ca5-e4ee-4f87-aae4-b3435b0b014e", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49 } }, { "data": { "id": "34418929-2d49-41e4-b2d5-2a017079f4b1", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "similarity_coefficient": 0.3828125, "overlap_size": 49 } }, { "data": { "id": "e164be36-70e3-4729-8243-46b0d1921da5", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.39416058394160586, "overlap_size": 54 } }, { "data": { "id": "99cf107f-fa37-464a-aee8-c1284db40dd1", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.49074074074074076, "overlap_size": 53 } }, { "data": { "id": "3082677e-7609-4db8-b979-16a4660b53aa", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "similarity_coefficient": 0.392, "overlap_size": 49 } }, { "data": { "id": "85cdf30b-d995-451b-bca4-0b8c04c85485", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "1732e9b0-d067-4fb4-9670-5e323da79090", "similarity_coefficient": 0.29714285714285715, "overlap_size": 52 } }, { "data": { "id": "625923f7-9c29-4b74-ba61-7ea6ce901d94", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49 } }, { "data": { "id": "c57612cf-9410-4f4f-bbf6-cb01e36ca215", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "dec11a24-597a-4f26-846a-eed2d73e5b96", "similarity_coefficient": 0.36879432624113473, "overlap_size": 52 } }, { "data": { "id": "a8b4b077-c995-41c7-a4d5-be757f224084", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.392, "overlap_size": 49 } }, { "data": { "id": "365ca508-ac85-4f6b-84f4-b207946fba70", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.2896174863387978, "overlap_size": 53 } }, { "data": { "id": "ec9c09c4-8aa0-471d-9714-f3699dbdc8dd", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.3767123287671233, "overlap_size": 55 } }, { "data": { "id": "5b11c234-1997-4f0c-9d4e-8fa84b188cef", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49 } }, { "data": { "id": "842b3545-4f47-41ca-8869-c7a3b6268270", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.3684210526315789, "overlap_size": 49 } }, { "data": { "id": "e8d56112-bbf5-4f2c-b40d-cba0c51fc9a3", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "similarity_coefficient": 0.46296296296296297, "overlap_size": 50 } }, { "data": { "id": "a89fb529-21e2-4523-9c20-e475706979fd", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "d97db454-5799-44e6-8082-d76526e8e917", "similarity_coefficient": 0.4083333333333333, "overlap_size": 49 } }, { "data": { "id": "2475f032-8028-47bc-aa5e-ed6e639ca59e", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.4, "overlap_size": 52 } }, { "data": { "id": "eeb9f8b0-0cc1-4b9d-b780-eb3dfcf70d8a", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.3058823529411765, "overlap_size": 52 } }, { "data": { "id": "43b045d5-7566-4bbf-a5a2-32d25e8343e5", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "904648c2-551b-426e-815e-74ced2374458", "similarity_coefficient": 0.2863849765258216, "overlap_size": 61 } }, { "data": { "id": "512bdf1d-5f45-4787-baf6-c73d7dfb1e4f", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "similarity_coefficient": 0.35294117647058826, "overlap_size": 48 } }, { "data": { "id": "97582070-e11c-4904-a4a7-4ed31b0bb3ae", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.30666666666666664, "overlap_size": 46 } }, { "data": { "id": "14fb2c11-2bd0-4e7b-abeb-641968e1957b", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.4224137931034483, "overlap_size": 49 } }, { "data": { "id": "dc6fc551-0ab5-42dc-a2ce-c560908726a8", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49 } }, { "data": { "id": "05df7589-34ab-4218-8943-38d5dec01870", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.4083333333333333, "overlap_size": 49 } }, { "data": { "id": "9f217975-a9b8-4702-ac1f-274c3c33c9cf", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "similarity_coefficient": 0.4152542372881356, "overlap_size": 49 } }, { "data": { "id": "69553b4e-2f55-4c63-92d5-aafd8b5e30ae", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.2754491017964072, "overlap_size": 46 } }, { "data": { "id": "e51713a9-6baf-4db3-9820-2b65d97c2413", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.4807692307692308, "overlap_size": 50 } }, { "data": { "id": "aa1cfa8e-4ab5-43a8-b8bb-d46f6b9abe4e", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "72fd7976-1a23-4642-833b-600f2c123e40", "similarity_coefficient": 0.4205607476635514, "overlap_size": 45 } }, { "data": { "id": "87881e21-e6fa-4f45-b617-e9c64260e478", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.3310810810810811, "overlap_size": 49 } }, { "data": { "id": "2e9c15e8-64c2-4179-8bd0-35b0646df805", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.5333333333333333, "overlap_size": 56 } }, { "data": { "id": "f8d005f4-22a8-41be-a5b6-cb122e6e6300", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49 } }, { "data": { "id": "2c1d4de9-d6d3-4a1c-a1f9-76a50e2a0f25", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.44144144144144143, "overlap_size": 49 } }, { "data": { "id": "73e7dd1b-1d0c-418d-9d3d-e1e413b39321", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.4152542372881356, "overlap_size": 49 } }, { "data": { "id": "3832cf0a-a490-471b-b5b3-53bc5275d7d3", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49 } }, { "data": { "id": "9c5064fe-4c96-4b13-b8ee-a21a0866f95a", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.25, "overlap_size": 46 } }, { "data": { "id": "41632d93-4bf9-4f25-a0f6-cddc048e9af1", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.49074074074074076, "overlap_size": 53 } }, { "data": { "id": "fe8bd971-7c87-4456-bf9a-29907e082a14", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "similarity_coefficient": 0.3769230769230769, "overlap_size": 49 } }, { "data": { "id": "415efdeb-3e0b-4d5e-aa8d-89e68bbac9c3", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49 } }, { "data": { "id": "17f4cdcb-b5f0-4d35-a1a1-2e06af96d76b", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.42735042735042733, "overlap_size": 50 } }, { "data": { "id": "f17fc093-524c-4d6f-98ff-3df780f0dfa4", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.36486486486486486, "overlap_size": 54 } }, { "data": { "id": "9ed9809f-a23e-410e-845f-1d1dddb604a4", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.5083333333333333, "overlap_size": 61 } }, { "data": { "id": "8d93ba9c-7470-4ac1-82c1-7e87c43dc595", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.3475177304964539, "overlap_size": 49 } }, { "data": { "id": "e5171e4a-18a5-4bd5-9325-8a0ff63b7267", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "0d3bb231-67c2-46cb-93ed-80383c138af9", "similarity_coefficient": 0.5230769230769231, "overlap_size": 68 } }, { "data": { "id": "c6eb1827-19a2-4059-a633-9916671febbc", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49 } }, { "data": { "id": "58bda00a-799a-47b6-aa9f-a1baea5286f4", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49 } }, { "data": { "id": "7b535d7a-9dae-4292-872c-c1a3fd71211e", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.5238095238095238, "overlap_size": 55 } }, { "data": { "id": "4a2ab53c-f1e4-4fb3-b90f-5f556854b8a6", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.2524271844660194, "overlap_size": 52 } }, { "data": { "id": "ab016574-a609-4202-b89a-9aae1350eb65", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "similarity_coefficient": 0.25773195876288657, "overlap_size": 50 } }, { "data": { "id": "db225d90-6f9b-4ba8-870f-8c0ef9cb2c35", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.35507246376811596, "overlap_size": 49 } }, { "data": { "id": "e507f6c9-52a7-43c0-8bd6-b4cc5601838c", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.49074074074074076, "overlap_size": 53 } }, { "data": { "id": "4e1196f4-254d-4c16-b5dc-19b9aaa49667", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.35294117647058826, "overlap_size": 54 } }, { "data": { "id": "3f9cb654-fbf4-420e-8178-bf1603bec8ae", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.4336283185840708, "overlap_size": 49 } }, { "data": { "id": "d0458c6e-9042-4061-affc-0950aaa40044", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.31137724550898205, "overlap_size": 52 } }, { "data": { "id": "28749024-2741-49e7-ad16-7fcd7937614f", "source": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "target": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "similarity_coefficient": 0.5, "overlap_size": 51 } }, { "data": { "id": "7b7411bd-b8c1-424c-abaf-80c6d39e853d", "source": "0819f365-0af7-4691-beb0-3375f37c64c8", "target": "7a40f142-e16d-4ef5-bb04-a1d9d674bb76", "similarity_coefficient": 0.8629032258064516, "overlap_size": 107 } }, { "data": { "id": "2c51776d-0b59-4fb8-94a9-9c1d133241b3", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "8854faf4-710a-437a-a978-e9d8b0290fdb", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "similarity_coefficient": 0.7338709677419355, "overlap_size": 91 } }, { "data": { "id": "ff5d9c2a-d7e8-4f50-a4f5-8a21b4ba20d9", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "similarity_coefficient": 0.3064516129032258, "overlap_size": 38 } }, { "data": { "id": "cb082833-c138-4d79-b5ae-619a22bb738e", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.7586206896551724, "overlap_size": 88 } }, { "data": { "id": "4f90fe47-bdb9-41b1-a420-e46b2be08a25", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "d9b6e170-0a10-4b07-a6be-65588639fd62", "similarity_coefficient": 0.6946564885496184, "overlap_size": 91 } }, { "data": { "id": "a9695a92-3650-435e-a40a-c75397f9b3fb", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "85618a5e-0712-414d-a086-843f21373c0c", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "9ace0e05-60e0-40b8-aa07-0eb7c1f73f9f", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "29f8deb7-f0b0-4878-b5db-c4cfda263526", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "da021234-a458-48ec-953e-dfd39db4be26", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.5238095238095238, "overlap_size": 88 } }, { "data": { "id": "bc8892d8-0226-45aa-960e-40f2d447ade1", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.6717557251908397, "overlap_size": 88 } }, { "data": { "id": "25f1c190-4419-45c2-bb0c-56c06c79cb4e", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "92297822-b7c0-450e-bbcd-0868731d4bd0", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "3608c2a4-44c5-403d-a12c-991578f6376a", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "aff2eca9-d799-4ba1-aece-c9c4dff314c6", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "a966733a-44de-48c5-8959-37cec18be5cf", "similarity_coefficient": 0.8461538461538461, "overlap_size": 88 } }, { "data": { "id": "bac9b2f2-b364-43da-998c-c440adcce90f", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "e32141fd-edfb-4c6c-b314-79add330790b", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "814f7e07-9f98-4192-9976-64397caf0790", "similarity_coefficient": 0.4756756756756757, "overlap_size": 88 } }, { "data": { "id": "82f325c0-67e1-4bf2-9c5d-33506c655cac", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "7e8a2798-3efd-4409-a939-be2763ac2d08", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "1191b080-ccc2-445e-95ae-5ad4a82be2c3", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "edd6fff3-9366-4ac8-8bc5-3351d7f550dd", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.29914529914529914, "overlap_size": 35 } }, { "data": { "id": "cc518268-fdf1-42fb-96d3-9fbd67aa8b96", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "0e1ad9ad-83b8-441e-8173-ae80f133e2c5", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "9cc1543e-b2e4-4718-872d-4737deb33c71", "similarity_coefficient": 0.6491228070175439, "overlap_size": 74 } }, { "data": { "id": "6d73f663-5b54-4eb6-bb64-cf5c56058075", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "similarity_coefficient": 0.3089430894308943, "overlap_size": 38 } }, { "data": { "id": "88d849b5-aa00-499c-9d7b-95c577e5b8d4", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "similarity_coefficient": 0.4251207729468599, "overlap_size": 88 } }, { "data": { "id": "03868705-d100-4a6a-babe-e4b377c3fe8b", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "2bb26441-db63-4db7-8140-a1b61b232c7d", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.8461538461538461, "overlap_size": 88 } }, { "data": { "id": "1baed512-412c-4d97-bdf1-d750217680ae", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.5845070422535211, "overlap_size": 83 } }, { "data": { "id": "134b5cb1-2048-460c-b8e8-1c0af621e01a", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "similarity_coefficient": 0.6496815286624203, "overlap_size": 102 } }, { "data": { "id": "9b214cfa-1ad0-43c3-9658-44d4d9fb071b", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "similarity_coefficient": 0.8148148148148148, "overlap_size": 88 } }, { "data": { "id": "083726d6-2a39-4cdd-a96b-b81568884af9", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "similarity_coefficient": 0.6929133858267716, "overlap_size": 88 } }, { "data": { "id": "c59c7c2d-8a53-42b9-8b95-ee52cf8cca29", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "611ff36d-7bbc-4322-bcdb-592441240039", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "6e6af911-db12-466e-889b-a2d7a0999ee5", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "similarity_coefficient": 0.3275862068965517, "overlap_size": 38 } }, { "data": { "id": "0df85908-76ec-4dc4-b99c-7b5f3275ef92", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.4055299539170507, "overlap_size": 88 } }, { "data": { "id": "75563121-02e7-4533-8a76-75395fd36f67", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "2763284f-d6b1-42f6-9947-7af4d34a4194", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "6a5b3b4e-8710-4016-9049-0815789762ac", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.676923076923077, "overlap_size": 88 } }, { "data": { "id": "3ed3ad19-2132-4c87-8a4e-d9ec47efff77", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "similarity_coefficient": 0.5945945945945946, "overlap_size": 88 } }, { "data": { "id": "73da2d26-afef-4b54-8c49-d91726eb6734", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "84f6f0ed-9615-48ba-a629-667c8302de99", "similarity_coefficient": 0.8, "overlap_size": 88 } }, { "data": { "id": "ef9641ca-6663-4c45-a3e1-8405d947d49a", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "ab24b93a-a426-4fa5-8f15-364938339732", "similarity_coefficient": 0.25748502994011974, "overlap_size": 86 } }, { "data": { "id": "dac7f23c-4124-4589-8e02-94387977eb3e", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.8148148148148148, "overlap_size": 88 } }, { "data": { "id": "cb22b9fb-8a1c-4591-9160-5e31582d1f90", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "14c847e3-9860-42f6-827f-494468a1aa15", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.3089430894308943, "overlap_size": 38 } }, { "data": { "id": "d2d744e2-a9bb-4608-a1c0-2fb5df81ed70", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "e47a74cd-5800-429b-b89e-f490004f32db", "similarity_coefficient": 0.6946564885496184, "overlap_size": 91 } }, { "data": { "id": "d929657d-e49e-49bd-a78d-0ac9639cc41c", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "24500407-f636-44ed-9254-763c3b68aad6", "similarity_coefficient": 0.7428571428571429, "overlap_size": 78 } }, { "data": { "id": "347094ba-228a-4cfc-a32a-27bd28ffdb9b", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.676923076923077, "overlap_size": 88 } }, { "data": { "id": "2af5694a-9e47-4f0c-b7ba-eb3656ef782c", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "similarity_coefficient": 0.2983606557377049, "overlap_size": 91 } }, { "data": { "id": "b06ccee9-b3f7-4801-a498-13e704b9d86b", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.7398373983739838, "overlap_size": 91 } }, { "data": { "id": "86e76779-c4bb-470b-be6f-054dd61d4391", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "eac107c6-2502-46c5-b5db-f5507ad6073e", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "088965ae-beab-49a6-ba7f-62c8508bf897", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "72eaaae0-a204-40f3-9158-c09b41d8085c", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "2a6aff84-33a1-4c03-ba81-1b377122a5ee", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.38095238095238093, "overlap_size": 88 } }, { "data": { "id": "1dba0927-7277-48d0-8185-867b5c15dbb1", "source": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "target": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "similarity_coefficient": 0.8073394495412844, "overlap_size": 88 } }, { "data": { "id": "5ca095dc-871b-4c40-b144-e8e06cc2fa0f", "source": "cb2e3ea5-0acb-4d5a-b4b6-0238e4949d2e", "target": "0f02ba1f-1396-4f05-83a1-e85fa76ec8eb", "similarity_coefficient": 0.35, "overlap_size": 21 } }, { "data": { "id": "20e16962-5541-4540-8204-b2ca4eb7401c", "source": "cb2e3ea5-0acb-4d5a-b4b6-0238e4949d2e", "target": "36267ac9-7439-4c18-997b-02dda8ff0f28", "similarity_coefficient": 0.3620689655172414, "overlap_size": 21 } }, { "data": { "id": "8cdcb335-45ca-4f7f-8ab7-f1e8a8e32e64", "source": "2d2d5ab1-d3a5-4f6f-b7a1-4a0090b7cbf2", "target": "864bc8cb-985d-45b3-a4d2-110108c67339", "similarity_coefficient": 0.4406779661016949, "overlap_size": 26 } }, { "data": { "id": "6c362aa5-8873-4d25-89a2-ba707b048af7", "source": "2d2d5ab1-d3a5-4f6f-b7a1-4a0090b7cbf2", "target": "6a073b52-0b0c-457e-86cd-2b8ee3c5e8cf", "similarity_coefficient": 0.6774193548387096, "overlap_size": 21 } }, { "data": { "id": "20925f74-817c-4499-b356-c701f451917d", "source": "2d2d5ab1-d3a5-4f6f-b7a1-4a0090b7cbf2", "target": "fa82a47b-3388-4aec-aa66-f207fa3a1e17", "similarity_coefficient": 0.8666666666666667, "overlap_size": 26 } }, { "data": { "id": "12bceec2-a61b-4a7c-9cf5-b1f27e9fb90a", "source": "2d2d5ab1-d3a5-4f6f-b7a1-4a0090b7cbf2", "target": "3426b560-b523-49c6-8a55-6451ac5ff9fb", "similarity_coefficient": 0.9629629629629629, "overlap_size": 26 } }, { "data": { "id": "3c0fcd89-46c9-4abb-868a-588e8e2ca803", "source": "2d2d5ab1-d3a5-4f6f-b7a1-4a0090b7cbf2", "target": "e8f60c2e-a8b6-4682-aa31-e95d21714e83", "similarity_coefficient": 0.8666666666666667, "overlap_size": 26 } }, { "data": { "id": "bdb9b009-1eac-4061-ba5f-9c51b95fc599", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.47058823529411764, "overlap_size": 64 } }, { "data": { "id": "54c6f01d-e538-4a90-85c9-39494bc16f6d", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.532608695652174, "overlap_size": 49 } }, { "data": { "id": "cb7df537-42d3-4f48-9bfa-8421c9d4bae9", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.5212765957446809, "overlap_size": 49 } }, { "data": { "id": "ad499dcd-f511-45d3-8ffa-94c1f88950a2", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.3967391304347826, "overlap_size": 73 } }, { "data": { "id": "08d88a17-91e2-49e5-8e34-18319aad51f4", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "f1b3048a-3013-41e1-8eb6-787f763dafef", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "similarity_coefficient": 0.4491525423728814, "overlap_size": 53 } }, { "data": { "id": "0706dac1-443f-4ccf-a503-b96c78f56aeb", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.3897058823529412, "overlap_size": 53 } }, { "data": { "id": "1b8afebb-35bc-4317-9399-1e0910d5f82d", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.3357664233576642, "overlap_size": 46 } }, { "data": { "id": "7e10e0c5-824b-4028-83b4-9ade22be040f", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "similarity_coefficient": 0.3795620437956204, "overlap_size": 52 } }, { "data": { "id": "f829a9e3-28a3-4ae2-9e8c-dcb22cc00ca4", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.5367647058823529, "overlap_size": 73 } }, { "data": { "id": "7a48da1f-55e2-4fb2-bee4-11e9d5cd832c", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "1732e9b0-d067-4fb4-9670-5e323da79090", "similarity_coefficient": 0.3128834355828221, "overlap_size": 51 } }, { "data": { "id": "97fee7b9-c928-45b6-9d44-57b81c6ad26c", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.4180790960451977, "overlap_size": 74 } }, { "data": { "id": "922fa134-9b16-4f49-9c7b-ec22f5ca9a7e", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.5416666666666666, "overlap_size": 52 } }, { "data": { "id": "47f5ed66-7af7-4d29-9098-522aef874a1f", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.532608695652174, "overlap_size": 49 } }, { "data": { "id": "aae46c5d-260e-40c8-b369-056e95cae3f7", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.392, "overlap_size": 49 } }, { "data": { "id": "e000176a-16d3-43f7-a1e2-2e4263d0e629", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.5, "overlap_size": 49 } }, { "data": { "id": "a6600cda-aabd-41d8-a4f9-9b697346db50", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.5473684210526316, "overlap_size": 52 } }, { "data": { "id": "c63215fc-1cd0-48fc-b336-58a961ab4e23", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.28708133971291866, "overlap_size": 60 } }, { "data": { "id": "da022623-eef6-4a4a-aa00-0e8619bcfae7", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49 } }, { "data": { "id": "241703c8-9b84-473e-894f-f13989619896", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "similarity_coefficient": 0.8636363636363636, "overlap_size": 76 } }, { "data": { "id": "e151fd4a-1e61-4e35-a003-33e507a6a91e", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.4482758620689655, "overlap_size": 52 } }, { "data": { "id": "cf291ab9-7539-421f-a969-4f5819f12192", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "dec11a24-597a-4f26-846a-eed2d73e5b96", "similarity_coefficient": 0.6822429906542056, "overlap_size": 73 } }, { "data": { "id": "e806d45b-69ae-4683-ac0f-eaeda60e3c14", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "fb172c5a-c242-43e8-98a4-bc060890f253", "similarity_coefficient": 0.27208480565371024, "overlap_size": 77 } }, { "data": { "id": "f8f150b2-e0d5-4ca2-a1ec-c4806660e5da", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.5416666666666666, "overlap_size": 52 } }, { "data": { "id": "e4003dbc-eba0-4c07-91f3-536511056b5a", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.4838709677419355, "overlap_size": 45 } }, { "data": { "id": "89d2bf6c-3804-4b3c-90de-692caba9cfee", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49 } }, { "data": { "id": "9737365c-5480-4a28-8f9a-ed3ed38aecfb", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.8295454545454546, "overlap_size": 73 } }, { "data": { "id": "44dc012b-bade-48d9-b763-3482c46401cf", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49 } }, { "data": { "id": "0b0ab0d8-6be7-4cae-aeb2-c74c0438f3ec", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "d97db454-5799-44e6-8082-d76526e8e917", "similarity_coefficient": 0.5, "overlap_size": 52 } }, { "data": { "id": "9ecb3974-a2e6-450f-84d3-ff3ba63d3eae", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.4807692307692308, "overlap_size": 50 } }, { "data": { "id": "0b1cc63a-ff58-42d5-aef7-1d73b8e91825", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "similarity_coefficient": 0.5098039215686274, "overlap_size": 52 } }, { "data": { "id": "83cee742-fa13-4e57-9607-5e1e8ec59ee5", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49 } }, { "data": { "id": "5024d1e0-6dc9-4f24-9211-128d58461553", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "14654f3b-2789-4eed-a644-a2a654fa934b", "similarity_coefficient": 0.2843601895734597, "overlap_size": 60 } }, { "data": { "id": "848c83e6-1fa2-4b1f-9886-b750fc180fa5", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "2479892f-1718-4ce9-aaf5-42f5072a8e59", "similarity_coefficient": 0.3112033195020747, "overlap_size": 75 } }, { "data": { "id": "7a305fa4-dcd4-4932-9a3b-751848f87c16", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "a416f178-74f3-46bf-af8a-d534e01b18aa", "similarity_coefficient": 0.5416666666666666, "overlap_size": 52 } }, { "data": { "id": "35b4f909-4a3b-4f56-8d68-36fd6af4746d", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49 } }, { "data": { "id": "28cbe725-d132-4bdb-aba0-cd964cc071dc", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.5416666666666666, "overlap_size": 52 } }, { "data": { "id": "157f39b3-dcdb-4f0b-be10-9bd898e1b5ff", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.362962962962963, "overlap_size": 49 } }, { "data": { "id": "735c37d8-6294-44a2-beec-18f109f5a785", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49 } }, { "data": { "id": "a22c7ed5-5e49-4a5d-acee-b2eb871ea65c", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.48598130841121495, "overlap_size": 52 } }, { "data": { "id": "53a8b19e-7aaf-455b-b301-a208c154a083", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49 } }, { "data": { "id": "8f8fa9c7-f991-4202-bbb3-f3aa684adb5e", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.7727272727272727, "overlap_size": 68 } }, { "data": { "id": "892af0c7-7423-4b82-91aa-7a70af63dc16", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.30409356725146197, "overlap_size": 52 } }, { "data": { "id": "d4238989-0e7b-4171-8d35-a61bd9eaebe6", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.875, "overlap_size": 77 } }, { "data": { "id": "13ea0d50-aa8e-4af1-adc7-6321ab667b13", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49 } }, { "data": { "id": "0365a5b6-160f-4c41-8765-16e0fd1fc7ab", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49 } }, { "data": { "id": "521e9f1e-c9d1-4741-8d35-da66016d581c", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "72fd7976-1a23-4642-833b-600f2c123e40", "similarity_coefficient": 0.4787234042553192, "overlap_size": 45 } }, { "data": { "id": "5b512be7-8cb4-4738-be42-dfa8eb96b7b9", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "f9954f17-1709-479e-8d22-403ed421f128", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49 } }, { "data": { "id": "3e0fe25f-9a02-4733-b67f-93dbc8efb589", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49 } }, { "data": { "id": "2360bf08-6357-4d62-bbdf-26bc69f0b5cc", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.4369747899159664, "overlap_size": 52 } }, { "data": { "id": "4ee44d63-74d4-4d55-8718-30bb8e15aec7", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.5161290322580645, "overlap_size": 48 } }, { "data": { "id": "21650ea2-f37e-4658-85a2-3b599cda787c", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "a9322d3e-0434-4ba3-b569-019127883b2e", "similarity_coefficient": 0.5714285714285714, "overlap_size": 52 } }, { "data": { "id": "70541372-345b-43a7-9a79-375828f86443", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.3111111111111111, "overlap_size": 56 } }, { "data": { "id": "f515ef8b-6534-4e77-adf6-1e60f6783f73", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "a6609db1-5756-4ff4-8409-5013d1a74f05", "similarity_coefficient": 0.34355828220858897, "overlap_size": 56 } }, { "data": { "id": "3dc29cb4-90c5-4f61-a673-4eb1bc78b8b4", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.5288461538461539, "overlap_size": 55 } }, { "data": { "id": "4470874d-81f8-483f-b432-826363286781", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.453781512605042, "overlap_size": 54 } }, { "data": { "id": "ece2072b-23d3-42fc-92f9-0aeeee3b8a10", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.35507246376811596, "overlap_size": 49 } }, { "data": { "id": "4550ec12-f8f7-4403-9db9-d1eac108e8f7", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "17018f59-7b29-40d7-bb46-1283a625ad23", "similarity_coefficient": 0.29714285714285715, "overlap_size": 52 } }, { "data": { "id": "533fcdbd-b6a8-4ca7-964c-a19296df5a59", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.9204545454545454, "overlap_size": 81 } }, { "data": { "id": "7679c41a-db72-470c-8ef3-9392266a04e0", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.4742268041237113, "overlap_size": 46 } }, { "data": { "id": "90619a0b-8b27-42bd-8103-ebbf2bd9071b", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.8409090909090909, "overlap_size": 74 } }, { "data": { "id": "c5dc3b7b-0f55-4d46-86b0-54b0197b6a24", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.7272727272727273, "overlap_size": 64 } }, { "data": { "id": "ea5d47c6-6b7a-4264-b14a-bee2b9cfcac6", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.8409090909090909, "overlap_size": 74 } }, { "data": { "id": "5f27d52c-4d42-4c7d-be1f-f00b587c3a34", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49 } }, { "data": { "id": "909b631f-cb77-4984-aec1-f8a8289500f1", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.3983739837398374, "overlap_size": 49 } }, { "data": { "id": "92715bc5-3edf-4432-90e6-501a2bf17338", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.39669421487603307, "overlap_size": 48 } }, { "data": { "id": "c46a17e7-dad4-4748-a63a-c16c3f573a34", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.37404580152671757, "overlap_size": 49 } }, { "data": { "id": "66ffdf6a-28eb-4210-b3b2-ec00de7c7fe3", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.625, "overlap_size": 55 } }, { "data": { "id": "bb071b33-7ce9-4e8c-8396-7155fb4fe82e", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 1, "overlap_size": 88 } }, { "data": { "id": "c00f5bda-67d9-4dde-8d16-3d8499d85572", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.38235294117647056, "overlap_size": 52 } }, { "data": { "id": "c43471b0-2899-4535-a17a-fc1a003a8766", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.42441860465116277, "overlap_size": 73 } }, { "data": { "id": "db15c602-1b87-44b7-8f32-82ed7be329a1", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.5416666666666666, "overlap_size": 52 } }, { "data": { "id": "5bf32cee-55e2-42e1-aa72-0a2350371cd8", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.49, "overlap_size": 49 } }, { "data": { "id": "9cd4e6a2-1e5f-484f-9209-98777ecaefc7", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.33793103448275863, "overlap_size": 49 } }, { "data": { "id": "e7358290-857b-4d9e-bfa9-90c3cbe17bff", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "similarity_coefficient": 0.7692307692307693, "overlap_size": 70 } }, { "data": { "id": "94e28526-3a38-4a76-82c9-877f2680b59e", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.4276315789473684, "overlap_size": 65 } }, { "data": { "id": "1ef10d09-9db0-42fc-9f27-656372c1281f", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.27472527472527475, "overlap_size": 25 } }, { "data": { "id": "6605b2b6-a94f-4a35-8c14-680af2cd7c5d", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.550561797752809, "overlap_size": 49 } }, { "data": { "id": "e4f6a381-38ed-46f9-bbf7-4c8f94c5a875", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "similarity_coefficient": 0.44554455445544555, "overlap_size": 45 } }, { "data": { "id": "7945cf81-679c-4c85-91e9-c1ca92db0d7c", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.5098039215686274, "overlap_size": 52 } }, { "data": { "id": "13ad2793-95d5-4315-8a29-15847d074e2a", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.36423841059602646, "overlap_size": 55 } }, { "data": { "id": "786a7c0d-5c1f-4de1-a595-97b02f2940cf", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.40476190476190477, "overlap_size": 51 } }, { "data": { "id": "ad0e24f9-e346-42d9-bfda-5c0db30897ab", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "similarity_coefficient": 0.5730337078651685, "overlap_size": 51 } }, { "data": { "id": "1f369e98-4993-465a-85b6-3409c141f8e3", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.5416666666666666, "overlap_size": 52 } }, { "data": { "id": "d74277e7-75e9-41d0-944e-227e17a52351", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49 } }, { "data": { "id": "6c9b3f2c-ea5f-49ea-bf58-a06aa42a8a74", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "0d3bb231-67c2-46cb-93ed-80383c138af9", "similarity_coefficient": 0.4015151515151515, "overlap_size": 53 } }, { "data": { "id": "d52270e4-9523-4a24-a24e-12c965047801", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49 } }, { "data": { "id": "45ab1590-75bc-4ab7-a939-04b5625aadff", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "similarity_coefficient": 0.2692307692307692, "overlap_size": 49 } }, { "data": { "id": "f2613210-1737-4d2b-bb81-6a24ea0b2cba", "source": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "target": "080d7999-edb3-459d-97a1-0b0c699425b5", "similarity_coefficient": 0.3153526970954357, "overlap_size": 76 } }, { "data": { "id": "f9c87288-697c-4216-86c9-c4e320bd9a24", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.27071823204419887, "overlap_size": 49 } }, { "data": { "id": "62f4bb88-eff0-4884-a8eb-769c41c71e9d", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "ba6b9d29-44c7-408e-8058-36cf9631eb64", "similarity_coefficient": 0.8578431372549019, "overlap_size": 175 } }, { "data": { "id": "c1a7d1a8-6704-4344-a053-bddf7696e3c3", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "similarity_coefficient": 0.2774869109947644, "overlap_size": 53 } }, { "data": { "id": "0a01ea17-2bf2-484a-8c1e-e9bf29842a56", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.25, "overlap_size": 52 } }, { "data": { "id": "64b11e6f-1ae3-4925-801c-df049414cf03", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "a9322d3e-0434-4ba3-b569-019127883b2e", "similarity_coefficient": 0.27071823204419887, "overlap_size": 49 } }, { "data": { "id": "c8bf0d9f-ece3-4470-bbc5-5b46a5e6d96c", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "similarity_coefficient": 0.2752808988764045, "overlap_size": 49 } }, { "data": { "id": "493eebd8-80a0-4a0f-bb96-57af1055a003", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.26666666666666666, "overlap_size": 48 } }, { "data": { "id": "2552cef1-2403-4609-9607-e445e9e359d7", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "a416f178-74f3-46bf-af8a-d534e01b18aa", "similarity_coefficient": 0.2702702702702703, "overlap_size": 50 } }, { "data": { "id": "f3add8ed-6557-45bc-95c8-924450581400", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.25654450261780104, "overlap_size": 49 } }, { "data": { "id": "e291322d-c916-4925-9ec8-6774638ebdeb", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.25, "overlap_size": 45 } }, { "data": { "id": "96ca6067-920c-414f-8ef2-7787efb21496", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.2541436464088398, "overlap_size": 46 } }, { "data": { "id": "09320369-502c-4b03-9b96-1dbabf18caa8", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.26344086021505375, "overlap_size": 49 } }, { "data": { "id": "a5ee5184-6c51-40fc-a011-ca1d774424da", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "d97db454-5799-44e6-8082-d76526e8e917", "similarity_coefficient": 0.265625, "overlap_size": 51 } }, { "data": { "id": "20a25f9d-b917-481a-89a0-30557e6cc60e", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.26842105263157895, "overlap_size": 51 } }, { "data": { "id": "5e0a0543-1879-4d4d-a68b-a7bf9296dd9c", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "similarity_coefficient": 0.2677595628415301, "overlap_size": 49 } }, { "data": { "id": "ad308e00-f5e9-4b70-8431-c2ea04f4a890", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.2824858757062147, "overlap_size": 50 } }, { "data": { "id": "b56727da-2a46-4bad-a2fe-d4007e49c0ed", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.2648648648648649, "overlap_size": 49 } }, { "data": { "id": "f9be2167-5cd6-4289-b59e-3bda3ae488bc", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.3028571428571429, "overlap_size": 53 } }, { "data": { "id": "7b3c214a-2252-4819-b507-23ca003dff79", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.2568306010928962, "overlap_size": 47 } }, { "data": { "id": "8bc6891e-ec4c-4652-bfe3-6560d3b4965e", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.2737430167597765, "overlap_size": 49 } }, { "data": { "id": "08ff6145-119b-42c9-b3b1-0626955d107d", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "similarity_coefficient": 0.2524271844660194, "overlap_size": 52 } }, { "data": { "id": "ef843622-367f-4884-9545-181f6c2ad755", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.27071823204419887, "overlap_size": 49 } }, { "data": { "id": "9a2af45c-0146-452e-bc0d-b3057d6c57d7", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.25, "overlap_size": 53 } }, { "data": { "id": "dfb8353c-287a-4cea-a746-a1911261e71b", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.26344086021505375, "overlap_size": 49 } }, { "data": { "id": "965f9a50-c89c-419a-a239-d772fb923632", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.2722222222222222, "overlap_size": 49 } }, { "data": { "id": "7fa8ac1a-3389-4c50-ba35-c3f3e3843234", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "similarity_coefficient": 0.2752808988764045, "overlap_size": 49 } }, { "data": { "id": "7d8c0c17-9dda-4293-9ea1-50fb951051bc", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.25257731958762886, "overlap_size": 49 } }, { "data": { "id": "78ef9690-aa0d-49e2-b68e-4fed5702a9c5", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.2578947368421053, "overlap_size": 49 } }, { "data": { "id": "0da95162-8b5b-42d4-9532-4fd428b2935b", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.2857142857142857, "overlap_size": 50 } }, { "data": { "id": "323953fc-23dc-495d-8cbb-7f408fa24a8d", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.2752808988764045, "overlap_size": 49 } }, { "data": { "id": "2e4311da-da38-471a-bea7-6c423ee71106", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "similarity_coefficient": 0.26842105263157895, "overlap_size": 51 } }, { "data": { "id": "ae468d0b-96ab-4a4a-ad61-2b72576102c3", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.26344086021505375, "overlap_size": 49 } }, { "data": { "id": "5959314c-00e4-4410-aa40-a06f44e5d4ff", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.281767955801105, "overlap_size": 51 } }, { "data": { "id": "8adb3938-0258-406f-9770-38ce6d4a327b", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.2752808988764045, "overlap_size": 49 } }, { "data": { "id": "47c28669-61b5-4f89-9674-afd24d876ff8", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.2692307692307692, "overlap_size": 49 } }, { "data": { "id": "b73c94dc-b3b3-4402-85f5-7af65e7398c9", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.2648648648648649, "overlap_size": 49 } }, { "data": { "id": "9e5a33d3-2d4a-4568-8208-00f0dc28eec9", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.2552083333333333, "overlap_size": 49 } }, { "data": { "id": "0e20411a-34c3-49dd-bdfa-76b5f641df80", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.2620320855614973, "overlap_size": 49 } }, { "data": { "id": "8db8cf67-af0f-484b-8bd8-4de249431776", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.26344086021505375, "overlap_size": 49 } }, { "data": { "id": "1ac94659-16b2-4faa-91aa-0bc184363344", "source": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.2548076923076923, "overlap_size": 53 } }, { "data": { "id": "25cd1365-67fa-4813-8793-bee41baa0c22", "source": "3cf80dbd-d5d6-4110-b7e1-ca158988b96a", "target": "b5d73495-423a-4299-9680-7d3e4c6c9ac6", "similarity_coefficient": 0.5818181818181818, "overlap_size": 96 } }, { "data": { "id": "1075a656-18f3-4a67-8e61-da9241c88c72", "source": "3cf80dbd-d5d6-4110-b7e1-ca158988b96a", "target": "6488e429-b436-405e-886a-11af3c96908d", "similarity_coefficient": 0.5345911949685535, "overlap_size": 85 } }, { "data": { "id": "44f123ef-5a73-470c-87e7-54e9b677fb27", "source": "3cf80dbd-d5d6-4110-b7e1-ca158988b96a", "target": "ca923fa4-7bdb-4533-98e9-ecad5b063ba3", "similarity_coefficient": 0.875, "overlap_size": 84 } }, { "data": { "id": "d127b5b2-a5f1-4d3d-a318-f805ef870eda", "source": "3cf80dbd-d5d6-4110-b7e1-ca158988b96a", "target": "1096a44e-4dbc-42d3-a424-671eb9231708", "similarity_coefficient": 0.5157232704402516, "overlap_size": 82 } }, { "data": { "id": "1a19b802-db28-48be-9d40-44ae02b797eb", "source": "3cf80dbd-d5d6-4110-b7e1-ca158988b96a", "target": "2908eab8-04c1-417b-845a-43b3aa49067b", "similarity_coefficient": 0.84375, "overlap_size": 81 } }, { "data": { "id": "a5db4632-ec81-43b9-a0f1-3c47bb292735", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.3076923076923077, "overlap_size": 24 } }, { "data": { "id": "5920d91f-83d3-494d-98a0-39a8547a89b2", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.2857142857142857, "overlap_size": 24 } }, { "data": { "id": "e53f0576-572e-449b-8d15-4b5d4709cde0", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.2777777777777778, "overlap_size": 30 } }, { "data": { "id": "ce36dd14-ad6e-4689-9e7a-dcf3b2502e24", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "similarity_coefficient": 0.2604166666666667, "overlap_size": 25 } }, { "data": { "id": "485528d6-aee1-4d34-a8ea-f9c8aa51cdb9", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "similarity_coefficient": 0.3157894736842105, "overlap_size": 24 } }, { "data": { "id": "54d8b4b9-8be5-4e34-9ebf-e8c566568dee", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "similarity_coefficient": 0.2619047619047619, "overlap_size": 22 } }, { "data": { "id": "197880e6-306e-45e5-aefb-94bc136ed12d", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.25, "overlap_size": 25 } }, { "data": { "id": "ba9b0b5a-f2d9-45a4-a52d-bd849ba1ab06", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.3116883116883117, "overlap_size": 24 } }, { "data": { "id": "0efd86d7-b873-4e4a-aca9-e579b8d7a5f1", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.3, "overlap_size": 24 } }, { "data": { "id": "57d60a16-2db7-422a-a27f-bbcb4a8535ed", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.32432432432432434, "overlap_size": 24 } }, { "data": { "id": "5de0abc5-a721-463a-b613-3f78a855bf4d", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.2727272727272727, "overlap_size": 24 } }, { "data": { "id": "92fdf81e-46cd-480e-824a-c369647c70c4", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.2604166666666667, "overlap_size": 25 } }, { "data": { "id": "9f7a0365-a558-42a0-b38f-7afd51594205", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.3157894736842105, "overlap_size": 24 } }, { "data": { "id": "adaae051-8cff-4d07-ba51-1b074124d685", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.25263157894736843, "overlap_size": 24 } }, { "data": { "id": "309a2e1c-46fd-47cd-896e-6c3e6f9437ef", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.3157894736842105, "overlap_size": 24 } }, { "data": { "id": "c023b2d2-4538-4883-aadc-8fafb88ef2a3", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "a9322d3e-0434-4ba3-b569-019127883b2e", "similarity_coefficient": 0.3037974683544304, "overlap_size": 24 } }, { "data": { "id": "c6d1ca99-9df2-42b5-9e03-d80b95c5fe2e", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.3037974683544304, "overlap_size": 24 } }, { "data": { "id": "e63c8ff8-d9f4-4394-996b-44eb06bf1d62", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.27472527472527475, "overlap_size": 25 } }, { "data": { "id": "bb9eefb7-c81b-488a-9afd-47c4857f6fb7", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "d97db454-5799-44e6-8082-d76526e8e917", "similarity_coefficient": 0.2608695652173913, "overlap_size": 24 } }, { "data": { "id": "b6cb9946-bbd6-470e-85e3-264e71f41257", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.3116883116883117, "overlap_size": 24 } }, { "data": { "id": "df3e55e8-62b7-409c-8024-c485b7b5a603", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "similarity_coefficient": 0.2962962962962963, "overlap_size": 24 } }, { "data": { "id": "101683bf-59f4-4502-9f97-e713b7eaf4b7", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.3037974683544304, "overlap_size": 24 } }, { "data": { "id": "6963f2a4-9500-4379-8ddc-83a98b5d9f25", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.2891566265060241, "overlap_size": 24 } }, { "data": { "id": "70a2dbc6-7b08-46fe-a614-280f9247dc92", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.2857142857142857, "overlap_size": 24 } }, { "data": { "id": "534c5584-b450-417b-8cc0-c378b61f8cd2", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.3037974683544304, "overlap_size": 24 } }, { "data": { "id": "ce84cb5f-bc22-46a7-946e-7052c795dea5", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.3157894736842105, "overlap_size": 24 } }, { "data": { "id": "9db280c4-e1b4-427b-accd-73f20904c158", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.2696629213483146, "overlap_size": 24 } }, { "data": { "id": "1fdbd24b-cb1a-4cb6-b6e8-50d5bc2388f3", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "similarity_coefficient": 0.3157894736842105, "overlap_size": 24 } }, { "data": { "id": "bebfd10d-c9ff-4fdd-9ce2-9fb5141862de", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.2891566265060241, "overlap_size": 24 } }, { "data": { "id": "482c9d95-c1b4-49d4-a029-978d34a49667", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.2823529411764706, "overlap_size": 24 } }, { "data": { "id": "dacc65d4-29b9-43c4-86d8-31133feeefdd", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.28735632183908044, "overlap_size": 25 } }, { "data": { "id": "2d34b3fd-dc60-438a-926b-17f7695096ed", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.26666666666666666, "overlap_size": 24 } }, { "data": { "id": "339535cc-f4d0-4ea0-9f5a-75917b21e54a", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.2962962962962963, "overlap_size": 24 } }, { "data": { "id": "71cff497-1580-406d-b242-b14bfae3f1a4", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.2857142857142857, "overlap_size": 24 } }, { "data": { "id": "b8b444ef-fec8-4e0d-9519-1ae5894c3572", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "72fd7976-1a23-4642-833b-600f2c123e40", "similarity_coefficient": 0.2857142857142857, "overlap_size": 22 } }, { "data": { "id": "0e0f94c8-61c7-4412-a586-945a3844b34a", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.3103448275862069, "overlap_size": 27 } }, { "data": { "id": "7b94bcb3-1d94-416c-9df7-e73dc0068696", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "similarity_coefficient": 0.25252525252525254, "overlap_size": 25 } }, { "data": { "id": "c725b224-baff-4b45-a0e9-ae7dc0088229", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "similarity_coefficient": 0.26666666666666666, "overlap_size": 24 } }, { "data": { "id": "c502ca3f-e7a1-4a08-82c9-50e5928bde39", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.2857142857142857, "overlap_size": 24 } }, { "data": { "id": "967c5ce6-37bd-421a-a35a-f6870009a092", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "a416f178-74f3-46bf-af8a-d534e01b18aa", "similarity_coefficient": 0.2857142857142857, "overlap_size": 24 } }, { "data": { "id": "b9065112-29bc-49e8-b269-1eb2129c0409", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.2894736842105263, "overlap_size": 22 } }, { "data": { "id": "a88b903e-3453-4476-ac20-7872e525b45f", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.3157894736842105, "overlap_size": 24 } }, { "data": { "id": "05269bb1-c3b3-466b-b198-15902a81c3b6", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.25263157894736843, "overlap_size": 24 } }, { "data": { "id": "ca584462-9bce-456e-9310-a4dfd23bda36", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "similarity_coefficient": 0.2717391304347826, "overlap_size": 25 } }, { "data": { "id": "db110dad-6f61-4983-9b12-be2b9446fa18", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.3116883116883117, "overlap_size": 24 } }, { "data": { "id": "a095d311-d1fb-4e26-ad5f-5de673e9f74e", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.25773195876288657, "overlap_size": 25 } }, { "data": { "id": "51bee0a8-3fb9-49a2-a133-6e35247351e4", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.2857142857142857, "overlap_size": 24 } }, { "data": { "id": "b4fd992b-7fb5-4de4-a327-99e44c71d2d0", "source": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.25773195876288657, "overlap_size": 25 } }, { "data": { "id": "7a7d6577-d12e-42de-b7b8-234772910cdd", "source": "b592bd97-9e49-4fa2-b70e-18543d61ff4a", "target": "b249707a-05f4-4096-8a17-b2851f6c5c81", "similarity_coefficient": 1, "overlap_size": 25 } }, { "data": { "id": "25b72945-c83e-40ce-8671-6c9e90c3a124", "source": "7cc43b71-ad89-463c-801b-d56bf869d565", "target": "6d7e36db-57e6-4071-9854-9947792f3ea4", "similarity_coefficient": 0.671264367816092, "overlap_size": 292 } }, { "data": { "id": "1a3262c9-faa5-4486-af32-4a5448db4f41", "source": "7cc43b71-ad89-463c-801b-d56bf869d565", "target": "64583106-cb89-4f3f-9374-2a1622a58cef", "similarity_coefficient": 0.5793650793650794, "overlap_size": 292 } }, { "data": { "id": "c64d378e-dcc6-478e-b978-1db961a7b864", "source": "3216dfe0-53c7-4773-ae8a-249962fe9769", "target": "17018f59-7b29-40d7-bb46-1283a625ad23", "similarity_coefficient": 0.30957683741648107, "overlap_size": 139 } }, { "data": { "id": "fdaa2884-2f61-4595-a974-4970d41b3c86", "source": "f44ab370-490d-4b9a-a6b7-795569797e65", "target": "4ecaabe1-58fe-49d0-8365-8bbb34cc004e", "similarity_coefficient": 0.6113074204946997, "overlap_size": 173 } }, { "data": { "id": "b76876f0-13d4-4b85-a2f3-37a6c9115c09", "source": "f44ab370-490d-4b9a-a6b7-795569797e65", "target": "03e967ee-3f89-4cc6-8fa9-2f62ca71e40f", "similarity_coefficient": 1, "overlap_size": 173 } }, { "data": { "id": "2410fe08-18a9-4325-8403-b5b5f48e0762", "source": "76d2dba6-f52e-4f80-b57f-bf10e25bbfc2", "target": "3281366b-d686-411d-9f64-ce068dbc793e", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49 } }, { "data": { "id": "3c55699f-c235-4eb7-96f6-5d56d583b0c0", "source": "76d2dba6-f52e-4f80-b57f-bf10e25bbfc2", "target": "37b7a69c-a26b-4d83-8f43-9b42b9c6168e", "similarity_coefficient": 0.3984375, "overlap_size": 51 } }, { "data": { "id": "e011e7f5-e233-4490-b87e-bb36d16be1dd", "source": "76d2dba6-f52e-4f80-b57f-bf10e25bbfc2", "target": "8dd921b1-19f9-43d1-8809-18810bb72059", "similarity_coefficient": 0.5481481481481482, "overlap_size": 74 } }, { "data": { "id": "f75168c2-fec8-4a7e-8a17-bcb5c53cd899", "source": "76d2dba6-f52e-4f80-b57f-bf10e25bbfc2", "target": "bddc7abb-9752-416f-b00f-1f6d4745c048", "similarity_coefficient": 0.44594594594594594, "overlap_size": 33 } }, { "data": { "id": "a02b51a5-5724-44d9-a4b6-304ac5b1c73c", "source": "76d2dba6-f52e-4f80-b57f-bf10e25bbfc2", "target": "f1e91a76-6b23-4bee-adcf-402d41b3bc76", "similarity_coefficient": 0.556390977443609, "overlap_size": 74 } }, { "data": { "id": "62792ea5-1cdf-4c55-bbca-13e9ec85dcf1", "source": "76d2dba6-f52e-4f80-b57f-bf10e25bbfc2", "target": "158daadb-15d5-44c8-9670-d08fe9ebb4c3", "similarity_coefficient": 0.2690909090909091, "overlap_size": 74 } }, { "data": { "id": "47b325b0-4a9e-4813-8839-8e4849b567b6", "source": "76d2dba6-f52e-4f80-b57f-bf10e25bbfc2", "target": "a3367273-5acd-4eaa-a023-f4b63d39ff67", "similarity_coefficient": 0.5, "overlap_size": 74 } }, { "data": { "id": "236bac52-1287-4785-ba9d-82dea82419c3", "source": "76d2dba6-f52e-4f80-b57f-bf10e25bbfc2", "target": "05636855-db9f-4249-97d1-199b2d37d4fa", "similarity_coefficient": 0.25, "overlap_size": 23 } }, { "data": { "id": "c240978a-7467-404e-a534-d10541dc3261", "source": "76d2dba6-f52e-4f80-b57f-bf10e25bbfc2", "target": "a0c0e8e0-96ed-4337-bfcc-f28c17708a1a", "similarity_coefficient": 0.4180790960451977, "overlap_size": 74 } }, { "data": { "id": "aa5db77d-e1e5-4f96-84e8-a8b934a7e488", "source": "96bdc05d-568e-4380-9578-cf0a5c6c20ff", "target": "7db9d43a-1d18-4be6-8d7e-f5e096178a4f", "similarity_coefficient": 0.6485319516407599, "overlap_size": 751 } }, { "data": { "id": "e49dfefe-e374-48cc-872d-471be8bebea0", "source": "96bdc05d-568e-4380-9578-cf0a5c6c20ff", "target": "c6751f66-b231-4a0d-84d6-e53835fd242d", "similarity_coefficient": 0.32697547683923706, "overlap_size": 360 } }, { "data": { "id": "e0227c0a-27e8-4042-a19c-5686be898936", "source": "96bdc05d-568e-4380-9578-cf0a5c6c20ff", "target": "b15aeda3-04c6-41d3-b5bf-b302b6105dc0", "similarity_coefficient": 0.6485319516407599, "overlap_size": 751 } }, { "data": { "id": "617cf4d9-14eb-45ba-993b-8be39b6f26c3", "source": "96bdc05d-568e-4380-9578-cf0a5c6c20ff", "target": "ca74dbd7-f987-4bb8-81f5-3c8fef7fee7c", "similarity_coefficient": 0.7281059063136456, "overlap_size": 715 } }, { "data": { "id": "d5e4352e-822f-4ff7-ac6b-9a704e42d24d", "source": "96bdc05d-568e-4380-9578-cf0a5c6c20ff", "target": "d45a77c2-ed42-4c4f-8e17-002f798690b8", "similarity_coefficient": 0.5040733197556008, "overlap_size": 495 } }, { "data": { "id": "92122763-670e-4d7b-b51c-3a146a6570c1", "source": "96bdc05d-568e-4380-9578-cf0a5c6c20ff", "target": "9e1f60ec-a42a-4cf8-88dd-4ad48094fd38", "similarity_coefficient": 0.46925329428989754, "overlap_size": 641 } }, { "data": { "id": "7fa76ac0-918f-478b-9167-9ba29149deb8", "source": "96bdc05d-568e-4380-9578-cf0a5c6c20ff", "target": "6bff1f65-4f71-4a19-805b-939001266251", "similarity_coefficient": 0.29429735234215887, "overlap_size": 289 } }, { "data": { "id": "e9cdf88a-a779-44d3-9e4a-5f5e182f352e", "source": "96bdc05d-568e-4380-9578-cf0a5c6c20ff", "target": "d8273106-b591-4851-a7f4-23759825900c", "similarity_coefficient": 0.29429735234215887, "overlap_size": 289 } }, { "data": { "id": "9bf1fc88-db43-4efa-96e2-0c5319f0fa46", "source": "dda5a46c-28ce-42fd-9da1-c5fe8d873a54", "target": "b3c1d117-4b8e-47cb-a880-fe7f925f032d", "similarity_coefficient": 0.3911620294599018, "overlap_size": 239 } }, { "data": { "id": "4d765bbb-26af-4b06-841e-cc4c9040c621", "source": "dda5a46c-28ce-42fd-9da1-c5fe8d873a54", "target": "49a00525-1f4c-45ab-a993-35fe295a7296", "similarity_coefficient": 0.3271461716937355, "overlap_size": 141 } }, { "data": { "id": "ff86fd75-3b51-4776-aa91-47153a67c4cd", "source": "dda5a46c-28ce-42fd-9da1-c5fe8d873a54", "target": "afb76ddb-0557-438c-8117-cdb324e3c097", "similarity_coefficient": 0.7560137457044673, "overlap_size": 220 } }, { "data": { "id": "9d9d4b9f-8535-4bd6-817d-2452103a95a0", "source": "dda5a46c-28ce-42fd-9da1-c5fe8d873a54", "target": "f95f678c-3ea4-4f54-8600-edb5b6cfe2c5", "similarity_coefficient": 0.28996865203761757, "overlap_size": 185 } }, { "data": { "id": "a08fc04d-74ec-4ecc-8e27-ad98129dd8b7", "source": "feb7d9d6-56e1-4737-8e2f-ca72d6564ff9", "target": "0391f2bd-352e-4b49-b8cc-414c80dffff9", "similarity_coefficient": 0.5650969529085873, "overlap_size": 204 } }, { "data": { "id": "b01f66fa-7b81-4bbd-aeee-e621c422cdcf", "source": "feb7d9d6-56e1-4737-8e2f-ca72d6564ff9", "target": "6b1a95ef-3536-4d95-962f-3d14a4550825", "similarity_coefficient": 0.6313253012048192, "overlap_size": 262 } }, { "data": { "id": "bb921c1d-b468-465b-84b4-55eec96a7ac9", "source": "feb7d9d6-56e1-4737-8e2f-ca72d6564ff9", "target": "753dfe0f-6f61-4a49-90c1-4b3708665dbf", "similarity_coefficient": 0.3486454652532391, "overlap_size": 296 } }, { "data": { "id": "d8de3c27-1b14-408f-bca5-e514bdb6d0f9", "source": "feb7d9d6-56e1-4737-8e2f-ca72d6564ff9", "target": "7b910fec-96ff-45a5-9b23-0ddf4e8d2541", "similarity_coefficient": 0.4734133790737564, "overlap_size": 276 } }, { "data": { "id": "83254710-ad15-43d6-8f33-0654580a81b0", "source": "feb7d9d6-56e1-4737-8e2f-ca72d6564ff9", "target": "bdfea551-b193-4b01-ae9c-25648ca3c317", "similarity_coefficient": 0.4610472541507024, "overlap_size": 361 } }, { "data": { "id": "cc4ec47d-5338-4faf-919a-90312eaf14f8", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.3804878048780488, "overlap_size": 78 } }, { "data": { "id": "81c347c5-1d9f-4752-a864-bf27bfc347ae", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "d1a1a9eb-7526-44ae-bd39-c33472d76a01", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "84f6f0ed-9615-48ba-a629-667c8302de99", "similarity_coefficient": 0.7959183673469388, "overlap_size": 78 } }, { "data": { "id": "3d82b46e-f878-4b90-b422-64bf80b7154d", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "0977c775-e1c3-4062-89c6-e91c60b1b167", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "36424c9f-7a24-492c-96dd-5680543a4745", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "ab24b93a-a426-4fa5-8f15-364938339732", "similarity_coefficient": 0.25157232704402516, "overlap_size": 80 } }, { "data": { "id": "7373f87c-bd91-4a4e-af71-33ce31637a0f", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "9cc1543e-b2e4-4718-872d-4737deb33c71", "similarity_coefficient": 0.7659574468085106, "overlap_size": 72 } }, { "data": { "id": "00a2b062-aafb-4ba1-ada6-b88365e8dffe", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "similarity_coefficient": 0.5735294117647058, "overlap_size": 78 } }, { "data": { "id": "b52f3acf-a5c6-4bf1-950f-5ce00c4e076d", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "7ca1942f-2707-4cb2-a3ff-e305e4c87038", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "81e4c343-f71d-41d8-83b0-aa40d8e56a1b", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "4fa6aa04-d15f-4c29-8bbe-0774c2016a14", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "9797f4cd-c1c3-460c-8089-225da677b24a", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "ce49505f-ac76-43d9-9991-fba9bd0068fa", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "777f4ce9-4658-4a6a-850c-ca809d6a378f", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "24500407-f636-44ed-9254-763c3b68aad6", "similarity_coefficient": 0.9634146341463414, "overlap_size": 79 } }, { "data": { "id": "7e75b37e-2154-4ac5-81b3-58be0f6994d5", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "755395a5-3970-416f-9c76-b855be0a5452", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "e47a74cd-5800-429b-b89e-f490004f32db", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "e799e740-c5b2-4e3b-8abc-2fb70d611e22", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "d9b6e170-0a10-4b07-a6be-65588639fd62", "similarity_coefficient": 0.639344262295082, "overlap_size": 78 } }, { "data": { "id": "13c22f48-5205-43fb-944a-2020fa0bb9e9", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "similarity_coefficient": 0.8041237113402062, "overlap_size": 78 } }, { "data": { "id": "5fc9ca0a-751d-468d-b166-b3c6b11c1626", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "63fde615-2033-4c09-a79e-b0cfeb28ab97", "similarity_coefficient": 0.28440366972477066, "overlap_size": 31 } }, { "data": { "id": "cf845c5a-b669-49d1-ad31-f30900b3f138", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.6610169491525424, "overlap_size": 78 } }, { "data": { "id": "b5cfb331-c5da-4465-bd9f-118092346e22", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "7d1675a9-12ca-4cc8-8f25-d3009511fa4a", "similarity_coefficient": 0.2677966101694915, "overlap_size": 79 } }, { "data": { "id": "46a4738b-e3f2-4f70-bf79-47a9bffe76d7", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "088965ae-beab-49a6-ba7f-62c8508bf897", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "91cc9db3-4b9c-41da-9759-7ae0ea67dcfe", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.3561643835616438, "overlap_size": 78 } }, { "data": { "id": "6a4faebb-ac8d-44b3-9c3b-dc936c19ed11", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "bcc562ce-e218-4bdf-b166-94b2704d924e", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "1fefa03d-e44d-48eb-9b49-5876156c16e0", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "7e8a2798-3efd-4409-a939-be2763ac2d08", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "a255fb01-da57-4688-816b-a29797e89a1d", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "85618a5e-0712-414d-a086-843f21373c0c", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "07398858-d3e8-459a-b81c-2eaf278d73bc", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.75, "overlap_size": 78 } }, { "data": { "id": "10a5e46a-5581-45b1-8bbe-4767b21db9b6", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.6842105263157895, "overlap_size": 78 } }, { "data": { "id": "956dd1b7-2171-4973-98a0-3c81acb6993a", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.6554621848739496, "overlap_size": 78 } }, { "data": { "id": "22eecc0c-fb4f-4b60-8428-efb1b216b129", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "af2e074d-2763-44d3-9fd4-e39775a8f787", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "3608c2a4-44c5-403d-a12c-991578f6376a", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "2703a6ca-62cd-46a0-893e-96d5ee59532c", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "dc42c2cf-77a9-4a40-afb4-26f18d8ac52e", "similarity_coefficient": 0.31313131313131315, "overlap_size": 31 } }, { "data": { "id": "1eac91c7-b800-4075-b4a9-328f5b3781d4", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "0f33e22f-803a-45ed-9d55-4135e35cd295", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "a966733a-44de-48c5-8959-37cec18be5cf", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "0f866514-88a2-439f-8a61-fc393936f83a", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "ca9344c8-25f5-4318-8fda-d36d030284eb", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.5, "overlap_size": 78 } }, { "data": { "id": "06814113-be43-48a2-950d-1932ec65e9cf", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "814f7e07-9f98-4192-9976-64397caf0790", "similarity_coefficient": 0.4508670520231214, "overlap_size": 78 } }, { "data": { "id": "87f46026-a24f-4f85-ab4e-f06e40c3ff3d", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "f2ba299d-5ded-425d-b386-e1b8e8c3fdfa", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "a533273e-ed20-4687-9397-41dafe57adba", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "similarity_coefficient": 0.4, "overlap_size": 78 } }, { "data": { "id": "8a5c6f16-8f65-49db-8e15-171ad9687250", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "similarity_coefficient": 0.49056603773584906, "overlap_size": 78 } }, { "data": { "id": "9b84cff4-7dc4-4aeb-97f7-4a7b2f79c213", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "2e4cf78f-e9ee-43dd-81a1-f3e7b1ae8d6e", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "similarity_coefficient": 0.3069306930693069, "overlap_size": 31 } }, { "data": { "id": "8caa0005-9971-456c-851a-fe8e22db91e7", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.6370967741935484, "overlap_size": 79 } }, { "data": { "id": "b3355bce-4882-42b7-9fb3-2024349f9a41", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "611ff36d-7bbc-4322-bcdb-592441240039", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "8b786458-abe5-402b-9c01-d2b14b3a4f62", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "similarity_coefficient": 0.8125, "overlap_size": 78 } }, { "data": { "id": "fe4538a4-0118-4b53-b904-9101cf3a9025", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.8478260869565217, "overlap_size": 78 } }, { "data": { "id": "81072d32-fd8f-4572-a152-bba31ed4842f", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "similarity_coefficient": 0.6782608695652174, "overlap_size": 78 } }, { "data": { "id": "30180b74-229b-4875-b758-cdbf6c7175d2", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.9753086419753086, "overlap_size": 79 } }, { "data": { "id": "2ca9de1f-9ca2-45cb-82e9-237ab43cd22e", "source": "693a277b-b9fd-476a-a8ac-f501d98b431c", "target": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "similarity_coefficient": 0.28703703703703703, "overlap_size": 31 } }, { "data": { "id": "334bed59-aaa9-479c-b380-c07f8684fadf", "source": "61187295-6a5f-4e0c-8c6f-31225b745289", "target": "c07e81ab-49b0-4377-a77f-dde111571036", "similarity_coefficient": 0.4838709677419355, "overlap_size": 30 } }, { "data": { "id": "6f70532b-1593-4181-a61d-f0b9341d4545", "source": "61187295-6a5f-4e0c-8c6f-31225b745289", "target": "0f4d0e69-aab2-48e4-ba31-cbca97c2d81e", "similarity_coefficient": 0.7126436781609196, "overlap_size": 62 } }, { "data": { "id": "4ae4b8bf-8bb3-42cf-877c-bbdb9fc7b08b", "source": "6c62bbcc-eaa6-44ea-9fd7-4ede1e91d67d", "target": "e9a4d13e-edb7-4554-9bb8-173dad7f61fd", "similarity_coefficient": 0.5470085470085471, "overlap_size": 128 } }, { "data": { "id": "90d81b9e-d25e-467d-95ba-31c1418be086", "source": "6c62bbcc-eaa6-44ea-9fd7-4ede1e91d67d", "target": "9683e457-b5d3-4ffb-92cf-692bbf7e6eb4", "similarity_coefficient": 0.404, "overlap_size": 202 } }, { "data": { "id": "8d163105-f83a-4a3f-99e9-d95e31c38105", "source": "6c62bbcc-eaa6-44ea-9fd7-4ede1e91d67d", "target": "d0695f97-406d-467a-ac9e-3fd20d47a3e9", "similarity_coefficient": 0.3069306930693069, "overlap_size": 62 } }, { "data": { "id": "8b4ef22c-6284-40d9-8ed2-da1fc9a9d81c", "source": "6c62bbcc-eaa6-44ea-9fd7-4ede1e91d67d", "target": "2c68e4c9-cc48-4220-b32a-7cb6d6c80e6c", "similarity_coefficient": 0.2981651376146789, "overlap_size": 130 } }, { "data": { "id": "9744088b-55da-4d8e-891d-f46eb41e8dda", "source": "6c62bbcc-eaa6-44ea-9fd7-4ede1e91d67d", "target": "55927dce-c65d-4418-9db1-33205a2bd8e8", "similarity_coefficient": 0.2801724137931034, "overlap_size": 65 } }, { "data": { "id": "3872fb98-38d4-41fa-a4f7-60cfadacd8af", "source": "6c62bbcc-eaa6-44ea-9fd7-4ede1e91d67d", "target": "e6530407-29e9-4497-ba55-17afc1fe868e", "similarity_coefficient": 0.6089108910891089, "overlap_size": 123 } }, { "data": { "id": "98b51dc1-d6ed-4a11-bf41-ee16729fdda0", "source": "6c62bbcc-eaa6-44ea-9fd7-4ede1e91d67d", "target": "077180f7-758c-4448-8995-446025fc993b", "similarity_coefficient": 0.2796934865900383, "overlap_size": 73 } }, { "data": { "id": "b7aeeafa-0e83-4b1f-b72d-c335cc2cf66e", "source": "6c62bbcc-eaa6-44ea-9fd7-4ede1e91d67d", "target": "9c8a56fb-b2c2-4025-9c1e-266f0c5862fd", "similarity_coefficient": 0.4031746031746032, "overlap_size": 127 } }, { "data": { "id": "13b52242-0826-4488-b591-671a30caa0e2", "source": "6c62bbcc-eaa6-44ea-9fd7-4ede1e91d67d", "target": "bdfea551-b193-4b01-ae9c-25648ca3c317", "similarity_coefficient": 0.25798212005108556, "overlap_size": 202 } }, { "data": { "id": "374eb91b-e098-41fc-9b20-9c37077ec6fa", "source": "c79e288f-03fa-437d-8752-e819a2a058f9", "target": "feb7d9d6-56e1-4737-8e2f-ca72d6564ff9", "similarity_coefficient": 0.2548476454293629, "overlap_size": 92 } }, { "data": { "id": "d8fdb15d-f975-4856-9a40-5a0fba7b55a3", "source": "c79e288f-03fa-437d-8752-e819a2a058f9", "target": "548bff51-72cb-4333-a049-eb2b1449569c", "similarity_coefficient": 0.5760869565217391, "overlap_size": 53 } }, { "data": { "id": "db2ca087-31a4-4687-817f-44f4dea4c473", "source": "54880fa5-ac55-49c1-8bea-08baf28793b2", "target": "e6530407-29e9-4497-ba55-17afc1fe868e", "similarity_coefficient": 0.4155405405405405, "overlap_size": 123 } }, { "data": { "id": "4309c16c-3c1d-45ca-88b1-574de5f3da3c", "source": "54880fa5-ac55-49c1-8bea-08baf28793b2", "target": "9683e457-b5d3-4ffb-92cf-692bbf7e6eb4", "similarity_coefficient": 0.48785046728971965, "overlap_size": 261 } }, { "data": { "id": "0fac6caa-df3c-4ef0-b3ed-bdc2d755c18d", "source": "54880fa5-ac55-49c1-8bea-08baf28793b2", "target": "2c68e4c9-cc48-4220-b32a-7cb6d6c80e6c", "similarity_coefficient": 0.32796780684104626, "overlap_size": 163 } }, { "data": { "id": "cab9428b-3ee3-4da5-b698-8b653cc1f980", "source": "54880fa5-ac55-49c1-8bea-08baf28793b2", "target": "7b910fec-96ff-45a5-9b23-0ddf4e8d2541", "similarity_coefficient": 0.2503937007874016, "overlap_size": 159 } }, { "data": { "id": "dc95ef1b-969d-4bdc-af9f-24751ae96976", "source": "54880fa5-ac55-49c1-8bea-08baf28793b2", "target": "bdfea551-b193-4b01-ae9c-25648ca3c317", "similarity_coefficient": 0.3062953995157385, "overlap_size": 253 } }, { "data": { "id": "795d4a90-fca6-4ef4-b67c-80cf5cddfbcd", "source": "54880fa5-ac55-49c1-8bea-08baf28793b2", "target": "9c8a56fb-b2c2-4025-9c1e-266f0c5862fd", "similarity_coefficient": 0.3638676844783715, "overlap_size": 143 } }, { "data": { "id": "8a059cc2-08bd-412c-8e78-f0f8f967dcb6", "source": "54880fa5-ac55-49c1-8bea-08baf28793b2", "target": "6c62bbcc-eaa6-44ea-9fd7-4ede1e91d67d", "similarity_coefficient": 0.6824324324324325, "overlap_size": 202 } }, { "data": { "id": "b91e250b-a15d-4c8b-b905-48ce4ad7d8f8", "source": "54880fa5-ac55-49c1-8bea-08baf28793b2", "target": "e9a4d13e-edb7-4554-9bb8-173dad7f61fd", "similarity_coefficient": 0.5405405405405406, "overlap_size": 160 } }, { "data": { "id": "74340d43-2ea5-4b75-99ce-ab745286c158", "source": "54880fa5-ac55-49c1-8bea-08baf28793b2", "target": "55927dce-c65d-4418-9db1-33205a2bd8e8", "similarity_coefficient": 0.32094594594594594, "overlap_size": 95 } }, { "data": { "id": "25b1ab93-3642-4653-af77-dc34b42283d1", "source": "54880fa5-ac55-49c1-8bea-08baf28793b2", "target": "330f6663-8dc5-4e65-8302-757d6733634d", "similarity_coefficient": 0.2519893899204244, "overlap_size": 95 } }, { "data": { "id": "c5818759-c3b7-4ed4-bc89-40e2e087f479", "source": "67a256b8-f314-4042-8b51-d5deecd8a425", "target": "cd7f0ec1-cbbb-4c18-bd41-867d46b92ecd", "similarity_coefficient": 0.2641509433962264, "overlap_size": 14 } }, { "data": { "id": "9dec69bd-24a2-479c-b207-85ecb8902023", "source": "67a256b8-f314-4042-8b51-d5deecd8a425", "target": "1fafffcc-89c3-4dbc-8688-59c9afc133de", "similarity_coefficient": 0.2542372881355932, "overlap_size": 15 } }, { "data": { "id": "471e122b-c412-40f9-b612-e1e5c64086ad", "source": "ca5fe228-41d6-4d3e-944e-df784a53136d", "target": "2c5d0add-3722-454a-b999-849bc812da0f", "similarity_coefficient": 0.638095238095238, "overlap_size": 134 } }, { "data": { "id": "ce1eacae-9446-4225-9cdf-6145e781eb18", "source": "ca5fe228-41d6-4d3e-944e-df784a53136d", "target": "e14619f8-5908-4ff3-a64e-733c672c16e1", "similarity_coefficient": 0.27611940298507465, "overlap_size": 37 } }, { "data": { "id": "15ec84cc-7793-4a52-89c0-949bed09aec2", "source": "ca5fe228-41d6-4d3e-944e-df784a53136d", "target": "49a00525-1f4c-45ab-a993-35fe295a7296", "similarity_coefficient": 0.47686832740213525, "overlap_size": 134 } }, { "data": { "id": "c9c00bc1-3bd9-4c41-b937-b6f5ffcabcaf", "source": "ca5fe228-41d6-4d3e-944e-df784a53136d", "target": "f95f678c-3ea4-4f54-8600-edb5b6cfe2c5", "similarity_coefficient": 0.2518796992481203, "overlap_size": 134 } }, { "data": { "id": "9a98d990-6430-414d-b50b-018acb75139e", "source": "ca5fe228-41d6-4d3e-944e-df784a53136d", "target": "9fe2ddb7-4a9e-4b3a-8109-88a5b1aa48e5", "similarity_coefficient": 0.2689655172413793, "overlap_size": 39 } }, { "data": { "id": "66a91ca5-12e8-4349-943a-17ff08cf6cd4", "source": "44a9ed84-9062-44c3-8295-840da4aa2b8a", "target": "c79e288f-03fa-437d-8752-e819a2a058f9", "similarity_coefficient": 0.2826086956521739, "overlap_size": 26 } }, { "data": { "id": "0ce5bddb-13f3-417e-aea3-96de92764381", "source": "7f270385-a18b-4b90-82e3-2d2574c06d29", "target": "3f4ee2f1-717c-42dc-a1d7-0c168250153d", "similarity_coefficient": 0.8205128205128205, "overlap_size": 128 } }, { "data": { "id": "79429fe5-4150-4b64-a1b1-9e55a42cbeb7", "source": "ac92c91b-3994-4290-b2ce-28e0390fe3de", "target": "487ede00-3720-40cc-aeca-6d646d21bb9c", "similarity_coefficient": 0.955, "overlap_size": 382 } }, { "data": { "id": "7076bb78-1182-4603-a5a0-af32f499b830", "source": "bf635c2b-0a1b-47bf-ba15-775cd673a5d5", "target": "b71dd8da-9ecc-4656-9fe5-fd51978cc016", "similarity_coefficient": 0.35815602836879434, "overlap_size": 101 } }, { "data": { "id": "20b0add8-f65c-4648-9ecb-ec0b19117462", "source": "bf635c2b-0a1b-47bf-ba15-775cd673a5d5", "target": "5229abb8-d817-4b27-8b54-4679f2c8353e", "similarity_coefficient": 0.26046511627906976, "overlap_size": 112 } }, { "data": { "id": "7a09971c-72bf-4b88-9897-5d0b712cf59d", "source": "bf635c2b-0a1b-47bf-ba15-775cd673a5d5", "target": "0b287a39-9629-4455-988e-99703244b949", "similarity_coefficient": 0.3784219001610306, "overlap_size": 235 } }, { "data": { "id": "d9cbe8ca-b465-460a-861e-bdeadb3113ad", "source": "bf635c2b-0a1b-47bf-ba15-775cd673a5d5", "target": "5c9e9840-0565-4e14-9526-c57609d4c61e", "similarity_coefficient": 0.33190578158458245, "overlap_size": 155 } }, { "data": { "id": "4a125983-f0d4-4edc-9222-22d3daad3128", "source": "bf635c2b-0a1b-47bf-ba15-775cd673a5d5", "target": "cbaabd94-0052-42ac-986a-766c1c57b30d", "similarity_coefficient": 0.6297872340425532, "overlap_size": 148 } }, { "data": { "id": "dc20505c-66d7-4254-ae42-f56408ba971d", "source": "bf635c2b-0a1b-47bf-ba15-775cd673a5d5", "target": "916b518e-1a95-45db-be11-8e45704c11f1", "similarity_coefficient": 0.3829787234042553, "overlap_size": 90 } }, { "data": { "id": "febada4b-d256-4338-ae15-258bd9728392", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "0d3bb231-67c2-46cb-93ed-80383c138af9", "similarity_coefficient": 0.25380710659898476, "overlap_size": 50 } }, { "data": { "id": "7c614b13-1654-43c2-b8ab-0c024aa0d249", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.33774834437086093, "overlap_size": 51 } }, { "data": { "id": "6a2acb3e-5afe-448a-a672-0448e973710f", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.2905027932960894, "overlap_size": 52 } }, { "data": { "id": "98e09103-a5c3-441f-a2a2-0ba7a5a58039", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "a416f178-74f3-46bf-af8a-d534e01b18aa", "similarity_coefficient": 0.34615384615384615, "overlap_size": 54 } }, { "data": { "id": "6786dc17-ef6a-4581-a543-fb6b8e9d285c", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.2903225806451613, "overlap_size": 45 } }, { "data": { "id": "ff411f14-f77f-46db-8a71-dbeac17bf176", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.26455026455026454, "overlap_size": 50 } }, { "data": { "id": "6360a38f-d90f-4d21-a04e-f64cd6b2f62c", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "similarity_coefficient": 0.2914285714285714, "overlap_size": 51 } }, { "data": { "id": "043ef9b5-6b84-44e6-8081-9cd2b87db09f", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.2883435582822086, "overlap_size": 47 } }, { "data": { "id": "1ea232d7-26bd-40f2-8f93-093833f16a31", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "similarity_coefficient": 0.3202614379084967, "overlap_size": 49 } }, { "data": { "id": "d27fc4a8-aeba-4aaf-bc1a-73ea03576edf", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.27071823204419887, "overlap_size": 49 } }, { "data": { "id": "67009f39-bdef-495c-8ab5-59e75ef38439", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.26344086021505375, "overlap_size": 49 } }, { "data": { "id": "aae4b72c-38c0-4e41-ba72-8025c08fc458", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.3466666666666667, "overlap_size": 52 } }, { "data": { "id": "42f0eb0a-76d5-44ed-a15c-05953f543bab", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.33548387096774196, "overlap_size": 52 } }, { "data": { "id": "f20ca414-5697-499f-b6f1-9b9d0fa63549", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.30434782608695654, "overlap_size": 49 } }, { "data": { "id": "945407a2-1858-47cf-b154-5fdb0cd87da1", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.30246913580246915, "overlap_size": 49 } }, { "data": { "id": "45cec2e4-76f7-4cf6-8c0f-a8f2d918bc06", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.266304347826087, "overlap_size": 49 } }, { "data": { "id": "87352d08-576f-48a7-88eb-c2b6f3afbb96", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.25510204081632654, "overlap_size": 50 } }, { "data": { "id": "e4f56cad-b12f-4d6d-8c6d-62b04c1532e3", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "a9322d3e-0434-4ba3-b569-019127883b2e", "similarity_coefficient": 0.3141025641025641, "overlap_size": 49 } }, { "data": { "id": "a7079cbf-34f6-4a25-a94c-bc092e2d5b96", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "similarity_coefficient": 0.32515337423312884, "overlap_size": 53 } }, { "data": { "id": "e07d253b-2fa1-4f7a-ab67-af1d21f6654b", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.2948717948717949, "overlap_size": 46 } }, { "data": { "id": "a7cf4960-74a1-4956-ae78-9debeb989dad", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "72fd7976-1a23-4642-833b-600f2c123e40", "similarity_coefficient": 0.28846153846153844, "overlap_size": 45 } }, { "data": { "id": "c853f0b5-c83c-4c55-88c2-b0c7e10e3825", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.29518072289156627, "overlap_size": 49 } }, { "data": { "id": "94e5e846-3057-49af-bddb-5e6c25b46265", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "similarity_coefficient": 0.27956989247311825, "overlap_size": 52 } }, { "data": { "id": "a86ded95-cf88-4ee9-b77c-28c1e114b12f", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.3532608695652174, "overlap_size": 65 } }, { "data": { "id": "56a4c874-2418-49c4-af60-05e54b8fa206", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.28488372093023256, "overlap_size": 49 } }, { "data": { "id": "3fb75e51-2810-4627-80cd-579efa9356e0", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.3141025641025641, "overlap_size": 49 } }, { "data": { "id": "342910fd-38a4-4848-90a4-d0733a54322c", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "f9954f17-1709-479e-8d22-403ed421f128", "similarity_coefficient": 0.25274725274725274, "overlap_size": 46 } }, { "data": { "id": "cbca099a-4588-49e7-9c8b-1b921d7b21d4", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.3686868686868687, "overlap_size": 73 } }, { "data": { "id": "4da2c975-7543-4595-8d84-b868de891a8d", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "d97db454-5799-44e6-8082-d76526e8e917", "similarity_coefficient": 0.3374233128834356, "overlap_size": 55 } }, { "data": { "id": "5826a9b1-5fbb-4130-a786-f995b0385a86", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.3185840707964602, "overlap_size": 72 } }, { "data": { "id": "1b8d2a1f-acda-48ac-b749-729cecfcdabe", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.32515337423312884, "overlap_size": 53 } }, { "data": { "id": "219e167a-9f62-4e3c-b56e-b5d8df4663d1", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.3181818181818182, "overlap_size": 49 } }, { "data": { "id": "b12c8823-ee77-4dec-9da6-b58f9bb3752e", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.3141025641025641, "overlap_size": 49 } }, { "data": { "id": "17999f72-ff59-4c6c-9b8e-2fff4af8e927", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "similarity_coefficient": 0.29651162790697677, "overlap_size": 51 } }, { "data": { "id": "6ed5815c-a4c2-4fab-a310-57fe2cffb53a", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.2554347826086957, "overlap_size": 47 } }, { "data": { "id": "5acc7866-18af-42f9-bfd1-713e33b4d5bb", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.40860215053763443, "overlap_size": 76 } }, { "data": { "id": "279d816d-f09b-4c67-affb-308ebc28413a", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "dec11a24-597a-4f26-846a-eed2d73e5b96", "similarity_coefficient": 0.3595505617977528, "overlap_size": 64 } }, { "data": { "id": "dea0965f-7a16-46c0-8655-77a84f63b0b6", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "similarity_coefficient": 0.27607361963190186, "overlap_size": 45 } }, { "data": { "id": "e03584d7-aaba-493a-8381-9de46142d52a", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.4307692307692308, "overlap_size": 84 } }, { "data": { "id": "fd81f1cb-85aa-44cf-ba60-83e7cb66a6bc", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.27380952380952384, "overlap_size": 46 } }, { "data": { "id": "a038f6bb-6d66-4775-a42c-1315873e57f3", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "a6609db1-5756-4ff4-8409-5013d1a74f05", "similarity_coefficient": 0.3444976076555024, "overlap_size": 72 } }, { "data": { "id": "0128c88d-c1cf-46a7-8c64-cf5a65547753", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.2893081761006289, "overlap_size": 46 } }, { "data": { "id": "fc989322-5cdf-42cc-bb3d-3109e06c42a9", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.30434782608695654, "overlap_size": 49 } }, { "data": { "id": "f1f1d3a3-e6f1-4e99-89ca-155dae85bb1c", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.30625, "overlap_size": 49 } }, { "data": { "id": "6a482368-39ab-4e28-a26c-41c09876ccea", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.3161290322580645, "overlap_size": 49 } }, { "data": { "id": "9ab58621-846a-417a-bccd-493fa1698979", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.32450331125827814, "overlap_size": 49 } }, { "data": { "id": "06b73c0d-caca-4211-9cfd-04c7aa697224", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.31210191082802546, "overlap_size": 49 } }, { "data": { "id": "2b1303ca-fe0d-4ea7-8cfa-addcec4cd757", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "similarity_coefficient": 0.2737430167597765, "overlap_size": 49 } }, { "data": { "id": "b37ce94f-18a0-4731-86dd-ca03edf9d1b7", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.31512605042016806, "overlap_size": 75 } }, { "data": { "id": "4fd007be-258e-46ad-ab3b-db6fcdeb4eae", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.30434782608695654, "overlap_size": 49 } }, { "data": { "id": "eb732720-9fb4-4034-b07a-2576f63441f9", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.28901734104046245, "overlap_size": 50 } }, { "data": { "id": "beff5cca-7586-4959-9ac0-7c8c07b810be", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "similarity_coefficient": 0.310126582278481, "overlap_size": 49 } }, { "data": { "id": "b94a5dfb-0829-410c-aa74-4a6ff9090a07", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.28994082840236685, "overlap_size": 49 } }, { "data": { "id": "7a405c3a-77b2-4c8b-837d-85e55af0e2a9", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "similarity_coefficient": 0.3466666666666667, "overlap_size": 52 } }, { "data": { "id": "aaeb0458-3f77-4404-a8ab-561c13422335", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.3181818181818182, "overlap_size": 49 } }, { "data": { "id": "07db4c47-0e68-4d63-856e-2f30a99fe9da", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.25654450261780104, "overlap_size": 49 } }, { "data": { "id": "4f48e3a7-e930-46fc-a783-d0a8a628e8fb", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.2897727272727273, "overlap_size": 51 } }, { "data": { "id": "ff536e5d-efd3-4a9e-bc9e-c7ce25805a8d", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "similarity_coefficient": 0.266304347826087, "overlap_size": 49 } }, { "data": { "id": "b18927f6-6d95-484d-8fcb-91e548ded3d0", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.3466666666666667, "overlap_size": 52 } }, { "data": { "id": "0f3ff348-5256-42f8-a22f-801bcf07b97a", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.296969696969697, "overlap_size": 49 } }, { "data": { "id": "82317a7b-3b55-4b4f-9ee1-11c71054ddb9", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.28735632183908044, "overlap_size": 50 } }, { "data": { "id": "3d3f4c27-945f-48e7-a29c-917e478433c3", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.2934131736526946, "overlap_size": 49 } }, { "data": { "id": "6bc55a19-ef36-4906-bdb5-6dbaed9856ba", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.30128205128205127, "overlap_size": 47 } }, { "data": { "id": "ca499c3b-6d22-4043-a525-85374ac14980", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.40764331210191085, "overlap_size": 64 } }, { "data": { "id": "06c54e91-7ede-422a-9c89-f341974d5ab1", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.2756756756756757, "overlap_size": 51 } }, { "data": { "id": "85c6a9cc-c77e-4c76-9692-98e3bdd249a1", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.2648648648648649, "overlap_size": 49 } }, { "data": { "id": "2cdb7547-a78d-42b2-8bae-b64d286af958", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.2538860103626943, "overlap_size": 49 } }, { "data": { "id": "6bb9fe58-7b85-4c87-845c-14db96de151b", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "fb172c5a-c242-43e8-98a4-bc060890f253", "similarity_coefficient": 0.5514705882352942, "overlap_size": 150 } }, { "data": { "id": "56062c93-9f75-4d03-98ba-7e107a6cbdeb", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.30434782608695654, "overlap_size": 49 } }, { "data": { "id": "3c1fadc6-dc90-47e7-835c-74b2bee1ebd8", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.30625, "overlap_size": 49 } }, { "data": { "id": "a59ac2af-4662-40bb-a62a-a1fe5b1cb2c6", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "similarity_coefficient": 0.28823529411764703, "overlap_size": 49 } }, { "data": { "id": "e58d25d7-3f0c-479c-a9da-10864b11edf3", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.28, "overlap_size": 49 } }, { "data": { "id": "280eed22-8eb0-4a46-8996-197ac703a4a8", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.42790697674418604, "overlap_size": 92 } }, { "data": { "id": "8f8e18ee-1bf0-41d1-8818-326d9534aa16", "source": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.27956989247311825, "overlap_size": 52 } }, { "data": { "id": "c7cabe40-17b5-4133-9ec7-b99e79b83472", "source": "74abd0bb-e77a-474f-a413-fed2de029c68", "target": "c45b1aa5-384d-47a0-a7f9-6f53b71b4f2f", "similarity_coefficient": 0.30864197530864196, "overlap_size": 25 } }, { "data": { "id": "fb3dd677-d9ca-49f0-8b78-ce993495648a", "source": "74abd0bb-e77a-474f-a413-fed2de029c68", "target": "d5e47987-5dc3-4e19-ad00-15642c4c7f1b", "similarity_coefficient": 0.43209876543209874, "overlap_size": 35 } }, { "data": { "id": "ffefdfee-68a1-434a-afa4-2aed5c580a1c", "source": "915cbcf8-ae97-4531-9bfe-ef942022fc2a", "target": "16e263d4-4a82-4f76-a5e0-5b573b4aa8b3", "similarity_coefficient": 0.25, "overlap_size": 33 } }, { "data": { "id": "0aff9fdc-b5fd-4c82-9fc0-f33af2c22425", "source": "915cbcf8-ae97-4531-9bfe-ef942022fc2a", "target": "5b6122ca-f33a-4dad-8c7e-3fcad12405a9", "similarity_coefficient": 0.32515337423312884, "overlap_size": 53 } }, { "data": { "id": "654a97b3-51c1-431c-8476-32e9afa80a4a", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49 } }, { "data": { "id": "8e127b16-e308-4fd5-b59c-b55005c0cfef", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.28735632183908044, "overlap_size": 50 } }, { "data": { "id": "933570b1-58a3-44ca-9390-b18830400634", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.5679012345679012, "overlap_size": 46 } }, { "data": { "id": "ab702370-7031-4ed0-88b3-c6b8cb32c3ee", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49 } }, { "data": { "id": "2af18f1b-5f29-496f-939b-5a27ec823d3f", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "similarity_coefficient": 0.2916666666666667, "overlap_size": 49 } }, { "data": { "id": "e9f2dd5a-b1a1-4508-ae9d-862ccc529237", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.7, "overlap_size": 49 } }, { "data": { "id": "44a04d2b-acdc-4bf2-96a3-04d6626f090f", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.25252525252525254, "overlap_size": 50 } }, { "data": { "id": "8db81979-838b-4513-a72d-da97904b9f66", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "2ecf6f7d-b745-41cc-88f0-740ca72daab1", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "dec11a24-597a-4f26-846a-eed2d73e5b96", "similarity_coefficient": 0.45871559633027525, "overlap_size": 50 } }, { "data": { "id": "dda144a5-a641-4c7e-9b51-dd73847f8fed", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "a416f178-74f3-46bf-af8a-d534e01b18aa", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49 } }, { "data": { "id": "89863d19-dbbb-4c3c-9b6d-4b5639d8337a", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49 } }, { "data": { "id": "6ccb5509-6c1f-4f21-894e-671e3d4dc696", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.494949494949495, "overlap_size": 49 } }, { "data": { "id": "90564764-5644-4edd-b28b-954c6435c1c4", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "similarity_coefficient": 0.5212765957446809, "overlap_size": 49 } }, { "data": { "id": "e8dc7590-df14-49bb-8cd6-9c5495910977", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "14654f3b-2789-4eed-a644-a2a654fa934b", "similarity_coefficient": 0.25, "overlap_size": 50 } }, { "data": { "id": "091418f5-27b2-435d-bfc1-efb8fecc7361", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.625, "overlap_size": 45 } }, { "data": { "id": "271015d5-0aed-4300-9a83-49b9ded2fc42", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.7, "overlap_size": 49 } }, { "data": { "id": "d690ed65-6468-48e6-bafe-b63867af1b58", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.4298245614035088, "overlap_size": 49 } }, { "data": { "id": "e2d9af8e-0ed7-4336-9ab5-96da08819a4a", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.33774834437086093, "overlap_size": 51 } }, { "data": { "id": "519a2bab-32fe-4261-9dcc-0f4c89364235", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49 } }, { "data": { "id": "eb011508-8cdc-4ddf-8543-dbdbf806b1ad", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49 } }, { "data": { "id": "839d2c7e-3c59-42e0-9dd4-00c0feebf705", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "similarity_coefficient": 0.7, "overlap_size": 49 } }, { "data": { "id": "7b05f882-1947-45d0-a9d9-a76e47de0da8", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "b19fad40-b02d-47c6-94bb-0c1a8a61fbee", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "similarity_coefficient": 0.30434782608695654, "overlap_size": 49 } }, { "data": { "id": "7f5a4bbf-3d4a-4ab8-9512-7fa72bcc05a2", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "72fd7976-1a23-4642-833b-600f2c123e40", "similarity_coefficient": 0.6164383561643836, "overlap_size": 45 } }, { "data": { "id": "a96bd199-4743-43ca-a202-a71ef6f4f132", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49 } }, { "data": { "id": "4d632a5c-1040-4891-b4ea-5812b741c0c5", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.620253164556962, "overlap_size": 49 } }, { "data": { "id": "21a59966-1eff-4972-b443-543a1d16a056", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "0d3bb231-67c2-46cb-93ed-80383c138af9", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49 } }, { "data": { "id": "a256f18c-2aad-4fd0-8551-07e3b0655520", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "a6609db1-5756-4ff4-8409-5013d1a74f05", "similarity_coefficient": 0.3026315789473684, "overlap_size": 46 } }, { "data": { "id": "ac63e122-28f1-414e-b1d6-ec5c66690db7", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "904648c2-551b-426e-815e-74ced2374458", "similarity_coefficient": 0.2698412698412698, "overlap_size": 51 } }, { "data": { "id": "74d9e667-10c5-4b7c-80ae-a1d6d795246c", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.5, "overlap_size": 50 } }, { "data": { "id": "da63fc5d-ee60-44fc-aece-bdb36913f81c", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.39655172413793105, "overlap_size": 46 } }, { "data": { "id": "2d709a14-32ec-4193-b9fc-1405cffa074e", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49 } }, { "data": { "id": "abed8b7f-316a-45f7-a7b2-530e8caecf58", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "17018f59-7b29-40d7-bb46-1283a625ad23", "similarity_coefficient": 0.32051282051282054, "overlap_size": 50 } }, { "data": { "id": "6942bc99-4366-4971-810c-91f9539e6954", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "f9954f17-1709-479e-8d22-403ed421f128", "similarity_coefficient": 0.47959183673469385, "overlap_size": 47 } }, { "data": { "id": "52b9eb66-bc6d-471c-a062-17ef5aa6b9df", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.3458646616541353, "overlap_size": 46 } }, { "data": { "id": "9505f4bf-61fa-4de5-b168-e259ea8c5e51", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "814f7e07-9f98-4192-9976-64397caf0790", "similarity_coefficient": 0.26595744680851063, "overlap_size": 50 } }, { "data": { "id": "91fe8a70-d43b-419c-9bfb-d94769c12d5d", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "5fd36e61-d7cf-4bfb-bca3-06dcdf6c11c0", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.4339622641509434, "overlap_size": 46 } }, { "data": { "id": "777016a7-35c3-427d-8c10-55e5a312bfa7", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.6052631578947368, "overlap_size": 46 } }, { "data": { "id": "c7c00cb2-3b13-4d0a-9853-5fe14b741c74", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.46534653465346537, "overlap_size": 47 } }, { "data": { "id": "574d0f97-a3a4-4de5-8e92-51d3fab44491", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "1732e9b0-d067-4fb4-9670-5e323da79090", "similarity_coefficient": 0.34965034965034963, "overlap_size": 50 } }, { "data": { "id": "a4e03773-b402-42ab-99bf-e5a45c53f84b", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49 } }, { "data": { "id": "4e3a0494-fd2d-47c3-8e89-e7e7e1535c2a", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.6493506493506493, "overlap_size": 50 } }, { "data": { "id": "56fa4756-2953-4085-819e-9222525f132c", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.27218934911242604, "overlap_size": 46 } }, { "data": { "id": "429cfd02-6731-4470-a714-0e8cc0bab2dd", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.30666666666666664, "overlap_size": 46 } }, { "data": { "id": "75ef99e8-45eb-4ba1-a1d1-8bb6862ead94", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.6712328767123288, "overlap_size": 49 } }, { "data": { "id": "bbea44b3-c01a-4489-b137-2d2cba20b861", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49 } }, { "data": { "id": "e64cbdf8-e4b9-4e67-acf2-3b373ab78bcb", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.4358974358974359, "overlap_size": 51 } }, { "data": { "id": "2f935d37-e446-4f0b-a4e1-088486709f94", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.6712328767123288, "overlap_size": 49 } }, { "data": { "id": "cadac67a-8960-4ee8-9ab8-1365f5029c22", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "ae1cbbd6-4436-4b18-a7bb-3591e50c4b07", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "similarity_coefficient": 0.5625, "overlap_size": 45 } }, { "data": { "id": "270a1598-eda9-46c5-b7dd-7c3405a4d090", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.5411764705882353, "overlap_size": 46 } }, { "data": { "id": "5471d562-971e-4d10-b6c2-12137451b21a", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49 } }, { "data": { "id": "f6119b30-fa59-4e1a-9ae8-a65036f3625a", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.3380281690140845, "overlap_size": 24 } }, { "data": { "id": "25e21165-2944-4727-91ca-29852af07fe4", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.6493506493506493, "overlap_size": 50 } }, { "data": { "id": "09d54aca-07ef-4bd4-9552-bb46b6bcbc85", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49 } }, { "data": { "id": "8760b530-327e-4753-949b-e33fa4f9a87d", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.4152542372881356, "overlap_size": 49 } }, { "data": { "id": "3aa47fdd-c74a-40bb-a4f7-a83b53c9a570", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49 } }, { "data": { "id": "2321c500-2e04-4b20-ada5-1fd10ed86357", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49 } }, { "data": { "id": "16155c4b-23b9-4c02-a146-d9786e05c33f", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "d97db454-5799-44e6-8082-d76526e8e917", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49 } }, { "data": { "id": "ff53a960-d03f-405e-90d4-ab5b331d9961", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49 } }, { "data": { "id": "b63c6346-da64-46fc-a070-02b5132f3577", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.2777777777777778, "overlap_size": 50 } }, { "data": { "id": "efa7d3b1-4504-4893-b0f3-301fb0939752", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.36231884057971014, "overlap_size": 50 } }, { "data": { "id": "db65aa73-832e-4cf7-b07e-2bd4ba9d9330", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49 } }, { "data": { "id": "e8fe2001-6206-440f-bc7a-4fd3405a2ee6", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.37037037037037035, "overlap_size": 50 } }, { "data": { "id": "10e2e0ff-0d97-42f3-9ab9-90215af2bdec", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49 } }, { "data": { "id": "3690f071-806c-4050-86e7-fdbb56fea4a0", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.7142857142857143, "overlap_size": 50 } }, { "data": { "id": "2a22677c-2776-428c-ad01-9f4eb30a7a56", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "similarity_coefficient": 0.7, "overlap_size": 49 } }, { "data": { "id": "349c427d-8428-4d98-8322-6cedbb29533d", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49 } }, { "data": { "id": "6ced3ead-af11-4f77-afcb-465c86e00534", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "similarity_coefficient": 0.6986301369863014, "overlap_size": 51 } }, { "data": { "id": "efb786f4-b78d-4587-a256-ffbe538df9fc", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49 } }, { "data": { "id": "b1fe0d69-13b5-4453-a89f-8ae1c7c20eb5", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49 } }, { "data": { "id": "486574b3-1758-486a-ba5e-fd882cae47e5", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49 } }, { "data": { "id": "741ec85f-cd18-4339-8661-ead276986b03", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.5681818181818182, "overlap_size": 50 } }, { "data": { "id": "95c4baf4-3c1d-4323-a50c-31d33685dba7", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.2620320855614973, "overlap_size": 49 } }, { "data": { "id": "340c4ce2-dd7d-4588-8611-4b89bd3fd06a", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "similarity_coefficient": 0.423728813559322, "overlap_size": 50 } }, { "data": { "id": "1a0269d8-da6d-463d-9210-3b00de33c10b", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "a9322d3e-0434-4ba3-b569-019127883b2e", "similarity_coefficient": 0.6944444444444444, "overlap_size": 50 } }, { "data": { "id": "c00b1013-4980-49c9-a3e4-b675a0cd0169", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.5681818181818182, "overlap_size": 50 } }, { "data": { "id": "84b4b260-7cf2-42ec-9a26-17b9dbc9d58d", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.6527777777777778, "overlap_size": 47 } }, { "data": { "id": "c4e342c0-47d5-499a-9240-d825a657db3d", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.7, "overlap_size": 49 } }, { "data": { "id": "38889946-02d9-4c5a-b7b6-33fd5ba4ff06", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.532608695652174, "overlap_size": 49 } }, { "data": { "id": "d7d37392-1bf8-4266-bcdd-2bb080ee240c", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.6493506493506493, "overlap_size": 50 } }, { "data": { "id": "30eb2a26-343f-4e36-8f0c-e4eea8c1ca43", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.532608695652174, "overlap_size": 49 } }, { "data": { "id": "2e58fd1e-bd17-4282-9f3d-e1476ae4ed60", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.6024096385542169, "overlap_size": 50 } }, { "data": { "id": "25cc739d-a4de-4cda-ac91-33700d590600", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.53125, "overlap_size": 51 } }, { "data": { "id": "faf71770-6dcd-4cfc-83a8-2750a4563971", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.6438356164383562, "overlap_size": 47 } }, { "data": { "id": "01b14746-0bdf-4f44-97f2-5e771b36c629", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49 } }, { "data": { "id": "0a1f81f8-7cdd-492d-85c3-691a8b94f2df", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.51, "overlap_size": 51 } }, { "data": { "id": "63d49466-fa9d-49e6-b366-f1376b048187", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "similarity_coefficient": 0.2538860103626943, "overlap_size": 49 } }, { "data": { "id": "341020e9-7fae-4a1b-be47-171273840a6b", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49 } }, { "data": { "id": "aa0e6dec-0e19-4d96-bddd-9667afa637f1", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "similarity_coefficient": 0.26373626373626374, "overlap_size": 24 } }, { "data": { "id": "42af4438-aa9f-4364-8293-b4f9b924c487", "source": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "target": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "similarity_coefficient": 0.4423076923076923, "overlap_size": 46 } }, { "data": { "id": "9bd6cef1-154e-4192-b8c2-b76cfbb569cd", "source": "10feadc4-45e8-4700-8cc4-3f7f9a9c4c3c", "target": "f95f678c-3ea4-4f54-8600-edb5b6cfe2c5", "similarity_coefficient": 0.29668874172185433, "overlap_size": 224 } }, { "data": { "id": "983db741-abc7-4235-b1d7-ca83f9e65798", "source": "10feadc4-45e8-4700-8cc4-3f7f9a9c4c3c", "target": "dda5a46c-28ce-42fd-9da1-c5fe8d873a54", "similarity_coefficient": 0.270223752151463, "overlap_size": 157 } }, { "data": { "id": "403d2b6b-1fdb-4519-9c78-d5d046fc47ab", "source": "10feadc4-45e8-4700-8cc4-3f7f9a9c4c3c", "target": "49a00525-1f4c-45ab-a993-35fe295a7296", "similarity_coefficient": 0.6286353467561522, "overlap_size": 281 } }, { "data": { "id": "bca2a7c0-7e0a-4159-beb4-293eb0a5ef25", "source": "10feadc4-45e8-4700-8cc4-3f7f9a9c4c3c", "target": "ca5fe228-41d6-4d3e-944e-df784a53136d", "similarity_coefficient": 0.29977628635346754, "overlap_size": 134 } }, { "data": { "id": "67991d2f-01f2-430a-a175-0635cf7fda42", "source": "10feadc4-45e8-4700-8cc4-3f7f9a9c4c3c", "target": "6797a9cb-9d73-44ec-8b36-dcd1fa877a9d", "similarity_coefficient": 0.2667910447761194, "overlap_size": 143 } }, { "data": { "id": "a64655b4-b865-45c6-a35b-15f389f5d423", "source": "10feadc4-45e8-4700-8cc4-3f7f9a9c4c3c", "target": "2c5d0add-3722-454a-b999-849bc812da0f", "similarity_coefficient": 0.4697986577181208, "overlap_size": 210 } }, { "data": { "id": "b212827f-43b6-4152-89b5-ed53d91dd539", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.27710843373493976, "overlap_size": 46 } }, { "data": { "id": "54a6d1c2-8df2-41a2-ab3f-cf6b72c07a2f", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "similarity_coefficient": 0.3581081081081081, "overlap_size": 53 } }, { "data": { "id": "9331d885-0b70-43f1-9c3c-86f9338a70b5", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.4117647058823529, "overlap_size": 49 } }, { "data": { "id": "cfbe7ca2-8a30-4cac-8bb3-70fc523f3c50", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.46226415094339623, "overlap_size": 49 } }, { "data": { "id": "cc90f9bc-0da6-434b-a0a9-a2ba5229dcb1", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "similarity_coefficient": 0.35555555555555557, "overlap_size": 48 } }, { "data": { "id": "3d020af2-8731-4e1d-93fe-03005824adbf", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.4260869565217391, "overlap_size": 49 } }, { "data": { "id": "772fd185-a112-4359-989a-dc858d4fd568", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.3673469387755102, "overlap_size": 54 } }, { "data": { "id": "21c75157-1b69-4b4b-ab7f-05983ef9b8a2", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.3076923076923077, "overlap_size": 52 } }, { "data": { "id": "884fbbc3-6af1-42a3-b91b-ea71984be79b", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.3087248322147651, "overlap_size": 46 } }, { "data": { "id": "291eecc4-327b-484e-9041-50205b1f8d2f", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.43103448275862066, "overlap_size": 50 } }, { "data": { "id": "cc2c73ee-afd4-4adf-a57a-3d8f4ac42719", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "1732e9b0-d067-4fb4-9670-5e323da79090", "similarity_coefficient": 0.2988505747126437, "overlap_size": 52 } }, { "data": { "id": "72b58f4d-4c55-4b3f-aaa2-494f0ece3d20", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.6, "overlap_size": 60 } }, { "data": { "id": "ee09ae73-0265-465a-a583-14b245edd7ce", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.35766423357664234, "overlap_size": 49 } }, { "data": { "id": "34b08a1a-0910-43fa-96c1-2e8c22043c38", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49 } }, { "data": { "id": "c2e48946-b1b1-4c5a-b6c1-fc427279dd7e", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.44545454545454544, "overlap_size": 49 } }, { "data": { "id": "8b333b82-fd3a-4c4c-8901-6c55c15cf7e3", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.42857142857142855, "overlap_size": 45 } }, { "data": { "id": "a6ec6ef4-b807-498a-8a13-f58a9effab5d", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.48598130841121495, "overlap_size": 52 } }, { "data": { "id": "d1a3f8cf-fb29-48c6-9ace-efbed28b1013", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "similarity_coefficient": 0.3858267716535433, "overlap_size": 49 } }, { "data": { "id": "dadc4ce3-d58c-4e34-9eb6-8479db80424f", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.4224137931034483, "overlap_size": 49 } }, { "data": { "id": "e1e2a372-c3dc-464d-8dcb-0f9d6ac01ffb", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49 } }, { "data": { "id": "417d6977-1f0c-4965-be0f-2766307176be", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.42857142857142855, "overlap_size": 48 } }, { "data": { "id": "415f812e-0e57-4def-8526-66d5a60b2ec3", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "dec11a24-597a-4f26-846a-eed2d73e5b96", "similarity_coefficient": 0.37142857142857144, "overlap_size": 52 } }, { "data": { "id": "4d0b1f1b-4193-4c62-a7e7-7d95752425fb", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49 } }, { "data": { "id": "612ddae3-2867-4e13-9e9b-db93564e8754", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "d97db454-5799-44e6-8082-d76526e8e917", "similarity_coefficient": 0.4117647058823529, "overlap_size": 49 } }, { "data": { "id": "a973daca-14ea-4531-9048-66093693facb", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "similarity_coefficient": 0.4672897196261682, "overlap_size": 50 } }, { "data": { "id": "a5137166-6a50-476d-be8e-c4403c26763a", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.40625, "overlap_size": 52 } }, { "data": { "id": "9ae5aa8f-b606-4bec-bed9-551c09c5119c", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.7407407407407407, "overlap_size": 100 } }, { "data": { "id": "21b7ad81-4e85-4421-9894-0f39569ef557", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49 } }, { "data": { "id": "8f77ebda-6fe6-4aa5-9d29-028074be7a78", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49 } }, { "data": { "id": "e1cf2d0d-d6b6-4778-8300-f4da0aa3a77e", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.48148148148148145, "overlap_size": 52 } }, { "data": { "id": "45769fbc-771c-49b8-9956-b1c8636ee5ca", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "fee5b85f-7bd1-420e-af06-24bee1be5f84", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.4666666666666667, "overlap_size": 49 } }, { "data": { "id": "16833f0f-c648-45de-a3de-894e684c2d08", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "a416f178-74f3-46bf-af8a-d534e01b18aa", "similarity_coefficient": 0.44144144144144143, "overlap_size": 49 } }, { "data": { "id": "af92c6d4-8c16-4fba-9dab-86a43dd64502", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "similarity_coefficient": 0.38235294117647056, "overlap_size": 52 } }, { "data": { "id": "74e0522b-dcb5-4766-8d19-c353ad2e97eb", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "767be81a-b33e-443b-bef7-f772a80ba87a", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.4491525423728814, "overlap_size": 53 } }, { "data": { "id": "455794ad-2ab0-47a6-9095-c4a26883d9ee", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.504950495049505, "overlap_size": 51 } }, { "data": { "id": "05b3162b-d8a9-4e7e-8016-86679b1aa273", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.4854368932038835, "overlap_size": 50 } }, { "data": { "id": "64cad10c-0543-4fd9-940f-37ee0b722c54", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.3828125, "overlap_size": 49 } }, { "data": { "id": "d4ccc005-ada4-464c-b897-ee6838c45ddb", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.3333333333333333, "overlap_size": 49 } }, { "data": { "id": "182d57dc-2d98-4769-b9d1-e90e796e77ec", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "72fd7976-1a23-4642-833b-600f2c123e40", "similarity_coefficient": 0.42452830188679247, "overlap_size": 45 } }, { "data": { "id": "5684ad2a-c4a0-4046-af4d-08d40b5b76c9", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.3475177304964539, "overlap_size": 49 } }, { "data": { "id": "97488ce2-028f-40e0-acd2-b03ff8c4445d", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.4296875, "overlap_size": 55 } }, { "data": { "id": "16b9c5cb-2568-4193-af4e-51266a62207f", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "similarity_coefficient": 0.4083333333333333, "overlap_size": 49 } }, { "data": { "id": "f2148cb8-94f2-453e-b515-bb4c7588ffe2", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "a6609db1-5756-4ff4-8409-5013d1a74f05", "similarity_coefficient": 0.26229508196721313, "overlap_size": 48 } }, { "data": { "id": "ef6a5462-b880-4025-ac75-43e87b6b2fb1", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "a9322d3e-0434-4ba3-b569-019127883b2e", "similarity_coefficient": 0.5048543689320388, "overlap_size": 52 } }, { "data": { "id": "ababba3e-99a6-4ea0-96ac-9c6a3f2317aa", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.392, "overlap_size": 49 } }, { "data": { "id": "5521b2b5-2058-44a1-8a94-09e7fa3bfbd0", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "17018f59-7b29-40d7-bb46-1283a625ad23", "similarity_coefficient": 0.2849462365591398, "overlap_size": 53 } }, { "data": { "id": "f5f3a519-b153-4079-b42d-b1bdaecec638", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.33557046979865773, "overlap_size": 50 } }, { "data": { "id": "2c1f7d4a-9f86-41a0-8bef-298d9c6c5dc1", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49 } }, { "data": { "id": "4e3513b8-2446-4916-81fa-270fa9889539", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.35036496350364965, "overlap_size": 48 } }, { "data": { "id": "bf16a420-6ef5-4eb0-a18c-18a5d4372380", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.4369747899159664, "overlap_size": 52 } }, { "data": { "id": "3cf03872-c7d9-46e6-88c8-689db1add267", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "f9954f17-1709-479e-8d22-403ed421f128", "similarity_coefficient": 0.4015748031496063, "overlap_size": 51 } }, { "data": { "id": "f429e64d-2809-4cad-8b2f-c9e49e838d47", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.42201834862385323, "overlap_size": 46 } }, { "data": { "id": "367c5647-4473-494b-8b00-5bcf92ba68c9", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.3712121212121212, "overlap_size": 49 } }, { "data": { "id": "914dd299-e380-4fbb-9149-42ccc2e5d4b1", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.392, "overlap_size": 49 } }, { "data": { "id": "dfb7f3a4-c8ae-46a0-99f2-2387a427af1a", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.40310077519379844, "overlap_size": 52 } }, { "data": { "id": "fb272875-e250-4c37-99c3-bea35b92b93f", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.3898305084745763, "overlap_size": 46 } }, { "data": { "id": "01ffd1c5-b3b5-4956-a041-69f45addec91", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.5081967213114754, "overlap_size": 62 } }, { "data": { "id": "52445440-f910-40f7-951a-f6ea504e4c42", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.5048543689320388, "overlap_size": 52 } }, { "data": { "id": "1642baf6-1993-43b4-8bb5-024a3287e844", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.34265734265734266, "overlap_size": 49 } }, { "data": { "id": "a78e8eba-cc44-40a7-b106-3b2ad5ddb2d0", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "2e3ecd81-ce4f-4a95-9187-51df53093696", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.38235294117647056, "overlap_size": 52 } }, { "data": { "id": "7af01545-45e7-4cc3-8f99-e37690a5c37f", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.35135135135135137, "overlap_size": 52 } }, { "data": { "id": "1d7da78d-5407-451e-b2b0-f055d93685dd", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.6, "overlap_size": 60 } }, { "data": { "id": "549093bd-095f-427a-8b18-d35194b3b055", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.4375, "overlap_size": 49 } }, { "data": { "id": "90e7b173-c46a-49b2-b47a-f24da6bb6438", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.25365853658536586, "overlap_size": 52 } }, { "data": { "id": "7fdcc9e4-f492-461a-b944-da2f2fc43321", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.3795620437956204, "overlap_size": 52 } }, { "data": { "id": "eb9a7a99-1125-441b-9866-66780fdd4b63", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.31210191082802546, "overlap_size": 49 } }, { "data": { "id": "c6d097d5-f42d-4f6e-8ae1-815b8f64f9a5", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "similarity_coefficient": 0.42735042735042733, "overlap_size": 50 } }, { "data": { "id": "7c753f9e-87dd-4b88-9050-b7b318735634", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49 } }, { "data": { "id": "99f1ad9f-2a90-418b-8a07-94a348f26af9", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.25136612021857924, "overlap_size": 46 } }, { "data": { "id": "e60f34b2-1d4f-4749-9456-648872aaf634", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.48514851485148514, "overlap_size": 49 } }, { "data": { "id": "9d94b0cb-fea5-41cb-81f5-33631e3c15af", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "similarity_coefficient": 0.39823008849557523, "overlap_size": 45 } }, { "data": { "id": "8ce0f3cb-c484-429a-947f-0d4b51b4fa00", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "0d3bb231-67c2-46cb-93ed-80383c138af9", "similarity_coefficient": 0.3586206896551724, "overlap_size": 52 } }, { "data": { "id": "c4ee2303-f02a-4456-b824-b58553f50f57", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.3374233128834356, "overlap_size": 55 } }, { "data": { "id": "b222699a-086e-47dc-91a3-15b207099357", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49 } }, { "data": { "id": "8aa31a2b-6ade-4f14-9dd0-4801411bd357", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.6, "overlap_size": 60 } }, { "data": { "id": "ce2eba2d-214b-4bb2-84c4-8fbcaa3b1f8d", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.2523809523809524, "overlap_size": 53 } }, { "data": { "id": "a44d0fd1-3eaa-432d-ae3a-6a705470d4c1", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "similarity_coefficient": 0.504950495049505, "overlap_size": 51 } }, { "data": { "id": "f533b7e9-d281-40c3-ab08-1a3d2e8b28bf", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "37cceb64-d900-4896-a1e0-f4061d5e7a4e", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "similarity_coefficient": 0.25257731958762886, "overlap_size": 49 } }, { "data": { "id": "405a7657-07ee-4855-9e5c-d589fc2b928e", "source": "77975fe3-8389-462d-b794-dfb5e2c511f2", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.4537037037037037, "overlap_size": 49 } }, { "data": { "id": "e9542a3e-1d5a-4e7a-aba4-31e0db1cbdf5", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.31952662721893493, "overlap_size": 54 } }, { "data": { "id": "a04f0b37-3e65-406c-a32a-91d8be84630b", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.2722222222222222, "overlap_size": 49 } }, { "data": { "id": "3ae9f8bf-67f0-41d5-b983-a59d1f340220", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "similarity_coefficient": 0.2692307692307692, "overlap_size": 49 } }, { "data": { "id": "0379de8e-07c7-4423-92e5-a3f089ea116a", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.2784090909090909, "overlap_size": 49 } }, { "data": { "id": "ac66063e-a6a4-4134-a335-ab8772e8aed8", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.2934131736526946, "overlap_size": 49 } }, { "data": { "id": "27ec1368-0ad1-4c42-bb54-2996627a8834", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.2727272727272727, "overlap_size": 48 } }, { "data": { "id": "1cd3e270-6594-4d8a-9f65-503f140a8335", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.26627218934911245, "overlap_size": 45 } }, { "data": { "id": "4e2d96ef-e962-4270-b947-c32c198ba42a", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "similarity_coefficient": 0.2631578947368421, "overlap_size": 50 } }, { "data": { "id": "f211a76d-9129-4275-ad09-286f74fb8359", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "a416f178-74f3-46bf-af8a-d534e01b18aa", "similarity_coefficient": 0.28, "overlap_size": 49 } }, { "data": { "id": "bc4a0c44-851e-41b5-9d59-a52b546368c0", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "dec11a24-597a-4f26-846a-eed2d73e5b96", "similarity_coefficient": 0.2549019607843137, "overlap_size": 52 } }, { "data": { "id": "e4a0dc63-cf54-41ab-9922-11bd9ed6afba", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.2934131736526946, "overlap_size": 49 } }, { "data": { "id": "47dad673-c07b-4676-a472-7fed17028464", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.2916666666666667, "overlap_size": 49 } }, { "data": { "id": "ecb91f1a-4da7-4b68-a181-a7acc17d1c27", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.28488372093023256, "overlap_size": 49 } }, { "data": { "id": "69d0d4fe-219a-49ab-abc9-88dcb172bf2b", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.2596685082872928, "overlap_size": 47 } }, { "data": { "id": "042a1368-8aa8-409a-b054-22127c2fa865", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.3254437869822485, "overlap_size": 55 } }, { "data": { "id": "a923e38a-09e5-4bf1-a5d1-3ed206c54017", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.28160919540229884, "overlap_size": 49 } }, { "data": { "id": "a5667b4e-07a3-4490-bea6-11f0a82c8017", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.27071823204419887, "overlap_size": 49 } }, { "data": { "id": "dd014e24-71e8-43da-ac2f-f93410a62be8", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "f9954f17-1709-479e-8d22-403ed421f128", "similarity_coefficient": 0.2538860103626943, "overlap_size": 49 } }, { "data": { "id": "b2473aba-a496-433c-a2d6-3fff675b5a29", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.28402366863905326, "overlap_size": 48 } }, { "data": { "id": "4496ef1c-e179-4332-886b-39e4e5d2a6e4", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.2849162011173184, "overlap_size": 51 } }, { "data": { "id": "88222824-3425-44e0-99f3-14518b944217", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.35555555555555557, "overlap_size": 64 } }, { "data": { "id": "a72cffed-a694-4dc5-8de9-f24dd068f7db", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.2663316582914573, "overlap_size": 53 } }, { "data": { "id": "616eed18-c045-4669-bf53-117310784f40", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.26666666666666666, "overlap_size": 52 } }, { "data": { "id": "a03e29f6-1e00-4db2-ae06-f1b47ebb1591", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.26595744680851063, "overlap_size": 50 } }, { "data": { "id": "fa6e6689-ef9c-4550-bb1d-0e48558fca36", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "similarity_coefficient": 0.266304347826087, "overlap_size": 49 } }, { "data": { "id": "6a151176-50d3-4f36-9e19-e057537e2eef", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.3023255813953488, "overlap_size": 52 } }, { "data": { "id": "c2afe9c9-4232-479d-b7df-38226e558af2", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.26595744680851063, "overlap_size": 50 } }, { "data": { "id": "c8b31507-4c29-4642-b2c4-aa0b04b9a101", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "similarity_coefficient": 0.2934131736526946, "overlap_size": 49 } }, { "data": { "id": "b7cb7fcc-6cbe-4bff-8e1d-d909d75c69e3", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "0d3bb231-67c2-46cb-93ed-80383c138af9", "similarity_coefficient": 0.3882978723404255, "overlap_size": 73 } }, { "data": { "id": "af45bf1f-aaeb-4d90-89f1-19e92a723d8c", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.27717391304347827, "overlap_size": 51 } }, { "data": { "id": "d08457bc-8b6a-407f-a047-414099d749c7", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "similarity_coefficient": 0.3090909090909091, "overlap_size": 51 } }, { "data": { "id": "6a708d8e-539a-47c1-a514-c44fccd94020", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "similarity_coefficient": 0.2542372881355932, "overlap_size": 45 } }, { "data": { "id": "4a04c527-0a2f-415a-bb0a-6512cd8d19df", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "similarity_coefficient": 0.26737967914438504, "overlap_size": 50 } }, { "data": { "id": "3bc2313f-dd45-4429-9b4a-236451bbbd88", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.28994082840236685, "overlap_size": 49 } }, { "data": { "id": "5e61c3b8-aae2-4fd4-a821-a8cf70a4a3e4", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.28654970760233917, "overlap_size": 49 } }, { "data": { "id": "0573eab4-b1b8-4e67-a40b-275a000f00cb", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.296969696969697, "overlap_size": 49 } }, { "data": { "id": "a4c3de04-bce9-41d8-b88a-dfa621f312ec", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.2617801047120419, "overlap_size": 50 } }, { "data": { "id": "4f10de29-4d92-4ea1-af7d-79981cf2c5cf", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.26737967914438504, "overlap_size": 50 } }, { "data": { "id": "c3c615b4-36fc-4f86-8d18-fe28c21f7df8", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.25742574257425743, "overlap_size": 52 } }, { "data": { "id": "66f23430-2a90-4a6b-a56f-9ae4e0e41861", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.3023255813953488, "overlap_size": 52 } }, { "data": { "id": "1fa0524c-c300-43af-8757-50dc1b1202fc", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.2571428571428571, "overlap_size": 54 } }, { "data": { "id": "457385e6-6990-4540-b315-1e484aa1ddea", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "196999da-b59b-4107-8e55-9193d03f97be", "similarity_coefficient": 0.28716216216216217, "overlap_size": 85 } }, { "data": { "id": "cd0f144d-4d15-42aa-bfd0-e26bb6b37eff", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "similarity_coefficient": 0.2538860103626943, "overlap_size": 49 } }, { "data": { "id": "41e588a8-c67c-42f5-a042-97530fb26cdf", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.3023255813953488, "overlap_size": 52 } }, { "data": { "id": "7859cbf4-e291-4fe4-8814-1a927c1dcde4", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.28823529411764703, "overlap_size": 49 } }, { "data": { "id": "656831a7-c584-4135-ae17-05aa2ec87e93", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.27472527472527475, "overlap_size": 50 } }, { "data": { "id": "31719d8c-108f-4920-95ea-8a74a844b534", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "a9322d3e-0434-4ba3-b569-019127883b2e", "similarity_coefficient": 0.30357142857142855, "overlap_size": 51 } }, { "data": { "id": "5f9480ad-6ade-40c4-9875-6eaa88289e8b", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "similarity_coefficient": 0.3316582914572864, "overlap_size": 66 } }, { "data": { "id": "ade80882-b2aa-4c56-9e72-9ae19b485991", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.2737430167597765, "overlap_size": 49 } }, { "data": { "id": "09381388-bf31-48c0-8a21-3ee4cbd5b66e", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "904648c2-551b-426e-815e-74ced2374458", "similarity_coefficient": 0.6124401913875598, "overlap_size": 128 } }, { "data": { "id": "ee6a1987-16e9-4300-8138-fc808d315ff5", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.27717391304347827, "overlap_size": 51 } }, { "data": { "id": "88dd807a-e3f5-4a01-b84e-39504c9ba74b", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.31137724550898205, "overlap_size": 52 } }, { "data": { "id": "38d6d6be-9072-4d60-a2da-884bbe962bec", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "similarity_coefficient": 0.2663316582914573, "overlap_size": 53 } }, { "data": { "id": "0db72801-340b-4aec-89af-5c2a77296887", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.2934131736526946, "overlap_size": 49 } }, { "data": { "id": "855813cc-f058-4b8b-a6fa-0c65623cb0d5", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.2916666666666667, "overlap_size": 49 } }, { "data": { "id": "1b6583a8-0a30-4182-8fce-c00d7d4d6ba8", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "similarity_coefficient": 0.27071823204419887, "overlap_size": 49 } }, { "data": { "id": "e9eefee0-a2f5-40d3-9a36-dcb69690e15d", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.2934131736526946, "overlap_size": 49 } }, { "data": { "id": "b9376374-dbd0-4b39-ba0f-d5790e1fe468", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "72fd7976-1a23-4642-833b-600f2c123e40", "similarity_coefficient": 0.2647058823529412, "overlap_size": 45 } }, { "data": { "id": "6678e3e5-bf88-4ff2-a2aa-54a46b69d9ac", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.2658959537572254, "overlap_size": 46 } }, { "data": { "id": "0c169f82-4a43-4ceb-ae8d-0d889e0a81ef", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "similarity_coefficient": 0.28488372093023256, "overlap_size": 49 } }, { "data": { "id": "a8e9c3da-3dfe-4b7b-bd9d-e432ecbf812f", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.2760416666666667, "overlap_size": 53 } }, { "data": { "id": "1e7dff60-39f7-41dc-ba02-cd3df77ed9c7", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "d97db454-5799-44e6-8082-d76526e8e917", "similarity_coefficient": 0.2677595628415301, "overlap_size": 49 } }, { "data": { "id": "bb4faae0-4be0-4fdc-997e-815c926d37a5", "source": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "target": "17018f59-7b29-40d7-bb46-1283a625ad23", "similarity_coefficient": 0.27848101265822783, "overlap_size": 66 } }, { "data": { "id": "e59450f1-7ddc-4a9b-bf51-571779145861", "source": "65d416a6-5383-47b5-9226-b60b2197400f", "target": "c07e81ab-49b0-4377-a77f-dde111571036", "similarity_coefficient": 0.25210084033613445, "overlap_size": 30 } }, { "data": { "id": "32c70b90-ec79-426c-aa24-15824851aefd", "source": "65d416a6-5383-47b5-9226-b60b2197400f", "target": "61187295-6a5f-4e0c-8c6f-31225b745289", "similarity_coefficient": 0.5210084033613446, "overlap_size": 62 } }, { "data": { "id": "c372ac89-718c-4c59-adb5-d5a0be7840fa", "source": "65d416a6-5383-47b5-9226-b60b2197400f", "target": "0f4d0e69-aab2-48e4-ba31-cbca97c2d81e", "similarity_coefficient": 0.7310924369747899, "overlap_size": 87 } }, { "data": { "id": "92a168b2-7f3e-4b7d-8a4c-21c2da62d44a", "source": "b72b181f-58a1-4f6d-ae9e-a8ee03acf8b8", "target": "fb172c5a-c242-43e8-98a4-bc060890f253", "similarity_coefficient": 0.4007352941176471, "overlap_size": 109 } }, { "data": { "id": "238b7a8f-9d54-423c-9bda-cd2672b14530", "source": "b72b181f-58a1-4f6d-ae9e-a8ee03acf8b8", "target": "2479892f-1718-4ce9-aaf5-42f5072a8e59", "similarity_coefficient": 0.4780701754385965, "overlap_size": 109 } }, { "data": { "id": "d73e8249-b278-44d6-a8db-4ed4d3d775f7", "source": "b72b181f-58a1-4f6d-ae9e-a8ee03acf8b8", "target": "558812e5-cf6b-49ec-b1cd-611459f0fc4c", "similarity_coefficient": 0.8440366972477065, "overlap_size": 92 } }, { "data": { "id": "0bf3b769-6649-4edd-b20f-75e417901279", "source": "b72b181f-58a1-4f6d-ae9e-a8ee03acf8b8", "target": "7ca2e3de-9935-4044-acc8-9703f93d0780", "similarity_coefficient": 0.2898936170212766, "overlap_size": 109 } }, { "data": { "id": "f8b09048-0f14-4d0a-bff0-c37e4ef19ae0", "source": "b72b181f-58a1-4f6d-ae9e-a8ee03acf8b8", "target": "8eb0c7aa-fc44-4379-8cb1-37fee77ce2c4", "similarity_coefficient": 0.8440366972477065, "overlap_size": 92 } }, { "data": { "id": "0bbb9b00-1776-4f90-a389-4d56309c52e7", "source": "b72b181f-58a1-4f6d-ae9e-a8ee03acf8b8", "target": "72dff63e-bb99-4d8f-8b2d-f863ae5278f1", "similarity_coefficient": 0.8141592920353983, "overlap_size": 92 } }, { "data": { "id": "39e5a44a-e5b2-4df3-beeb-a4f4b06ef040", "source": "b72b181f-58a1-4f6d-ae9e-a8ee03acf8b8", "target": "080d7999-edb3-459d-97a1-0b0c699425b5", "similarity_coefficient": 0.4759825327510917, "overlap_size": 109 } }, { "data": { "id": "76d92aa7-fe28-4fe4-9dcc-246190bbfec3", "source": "b72b181f-58a1-4f6d-ae9e-a8ee03acf8b8", "target": "e01bb0c4-42f6-4d9d-b9dc-fabc5aa42336", "similarity_coefficient": 0.7603305785123967, "overlap_size": 92 } }, { "data": { "id": "d5046bbb-9b99-4680-bd56-fb11eace5278", "source": "b72b181f-58a1-4f6d-ae9e-a8ee03acf8b8", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.6449704142011834, "overlap_size": 109 } }, { "data": { "id": "ed1ca8ff-edee-462a-8bf0-2f04f6084d17", "source": "e6d26c86-6abe-477f-b5b5-22179e11fe89", "target": "e5310ce1-66db-419c-99f7-0aef3b11c3a0", "similarity_coefficient": 0.39285714285714285, "overlap_size": 22 } }, { "data": { "id": "ca6f165b-9d35-4257-a71e-7ae3c6b8083a", "source": "e6d26c86-6abe-477f-b5b5-22179e11fe89", "target": "97263796-6199-4635-a5c3-88606b560380", "similarity_coefficient": 0.625, "overlap_size": 35 } }, { "data": { "id": "a45ebc99-2586-45fe-985f-305ae1e44e1e", "source": "e6d26c86-6abe-477f-b5b5-22179e11fe89", "target": "9ee865fe-76a5-4d86-a7e1-0ab08de7033d", "similarity_coefficient": 0.5072463768115942, "overlap_size": 35 } }, { "data": { "id": "9dde40ab-fb18-46f1-b092-4b78209e1477", "source": "e6d26c86-6abe-477f-b5b5-22179e11fe89", "target": "36c62e65-4dec-4c29-9fa7-909db0c24423", "similarity_coefficient": 0.6292134831460674, "overlap_size": 56 } }, { "data": { "id": "b72224da-5ce0-4c3c-860d-2ce779ae60a9", "source": "82e6196d-332e-4d80-b196-7e404338ed9f", "target": "61187295-6a5f-4e0c-8c6f-31225b745289", "similarity_coefficient": 0.2545454545454545, "overlap_size": 42 } }, { "data": { "id": "8dc02bd1-a4f3-4fe6-814c-632c761b2a54", "source": "d7f0b9d9-02c0-479a-9064-f4186398815e", "target": "77300d6a-9bc7-4e0c-a548-0a1462ac99a4", "similarity_coefficient": 0.45652173913043476, "overlap_size": 21 } }, { "data": { "id": "2ee2ecf6-b9f9-4ea9-9354-511692bf69d6", "source": "cbd63a3c-9d1e-45ed-8314-62f02e15086e", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.2682926829268293, "overlap_size": 55 } }, { "data": { "id": "f92e0c90-2bf1-4d1c-9da3-5e11bde7a815", "source": "cbd63a3c-9d1e-45ed-8314-62f02e15086e", "target": "be19f28b-2fa2-44f2-9027-54a576cb80e0", "similarity_coefficient": 0.7243816254416962, "overlap_size": 205 } }, { "data": { "id": "550b9d7a-20c7-4060-a7ed-de8fb0dc4e0a", "source": "cbd63a3c-9d1e-45ed-8314-62f02e15086e", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.2754237288135593, "overlap_size": 65 } }, { "data": { "id": "2f6139d7-cb7c-4187-94e7-5d884ef40409", "source": "cbd63a3c-9d1e-45ed-8314-62f02e15086e", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.2936170212765957, "overlap_size": 69 } }, { "data": { "id": "a6be375c-dd8f-4527-ac5a-9c1b893112e1", "source": "cbd63a3c-9d1e-45ed-8314-62f02e15086e", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.25793650793650796, "overlap_size": 65 } }, { "data": { "id": "8982a5cb-b876-4bd0-878f-2bab50e5fcf4", "source": "cbd63a3c-9d1e-45ed-8314-62f02e15086e", "target": "d97db454-5799-44e6-8082-d76526e8e917", "similarity_coefficient": 0.25229357798165136, "overlap_size": 55 } }, { "data": { "id": "35746d55-57fc-4873-8b2f-6b5fe9704f51", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.5268817204301075, "overlap_size": 49 } }, { "data": { "id": "7e287abf-74c2-4bfc-9ecd-04f9a19ef4db", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "1732e9b0-d067-4fb4-9670-5e323da79090", "similarity_coefficient": 0.3798449612403101, "overlap_size": 49 } }, { "data": { "id": "6888d569-3567-420f-8669-1e2a675c3085", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.8596491228070176, "overlap_size": 49 } }, { "data": { "id": "fc16d538-d6e8-46f3-9633-cc42d58c1a47", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "similarity_coefficient": 0.6049382716049383, "overlap_size": 49 } }, { "data": { "id": "8c2a3607-123d-4b5c-9bcb-f1738766e511", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "similarity_coefficient": 0.8909090909090909, "overlap_size": 49 } }, { "data": { "id": "3194c0b0-9812-42de-8ee5-8d3f6cdc0974", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.8064516129032258, "overlap_size": 50 } }, { "data": { "id": "fa92033c-410f-4cf0-b31c-76c8de923fcd", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.31901840490797545, "overlap_size": 52 } }, { "data": { "id": "bedfa98a-3b84-419b-87f1-fe0236755dbd", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.4854368932038835, "overlap_size": 50 } }, { "data": { "id": "7a4cd6f5-57bb-48d0-9374-258719b172e4", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "similarity_coefficient": 0.3157894736842105, "overlap_size": 24 } }, { "data": { "id": "c0a3925d-f9ed-4558-a242-07f019549f4d", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.47572815533980584, "overlap_size": 49 } }, { "data": { "id": "af4dfd0d-933f-4327-add9-a04b4987b477", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.4406779661016949, "overlap_size": 52 } }, { "data": { "id": "9c466992-7797-4d01-b067-d91d7908fd2e", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.3951612903225806, "overlap_size": 49 } }, { "data": { "id": "7b354019-2c1b-4c12-9836-6bca48dd444c", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "f66db0b4-be0a-4e21-bfba-06df46870395", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.8064516129032258, "overlap_size": 50 } }, { "data": { "id": "734db718-1770-41d3-8cbc-d844aed4313b", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "similarity_coefficient": 0.6923076923076923, "overlap_size": 45 } }, { "data": { "id": "25eeefcd-c8a8-4786-885a-3dfcb26282e6", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "d97db454-5799-44e6-8082-d76526e8e917", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49 } }, { "data": { "id": "96717828-6d1d-477d-90c6-9e826f7d3b88", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.42857142857142855, "overlap_size": 24 } }, { "data": { "id": "03a5b4c8-f268-4231-bd24-8ff555a2165c", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "e05302e1-8bbb-48a4-b464-e271fc333904", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.7540983606557377, "overlap_size": 46 } }, { "data": { "id": "8d9af497-1bc7-44cd-9828-24adc620ca15", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "904648c2-551b-426e-815e-74ced2374458", "similarity_coefficient": 0.2784090909090909, "overlap_size": 49 } }, { "data": { "id": "bb404837-cb1c-4ac7-bba8-096ebdd03f60", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "6b27c10f-ed6f-4fcf-b9c2-8dbd28fe59eb", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.3898305084745763, "overlap_size": 46 } }, { "data": { "id": "7da90dc6-0707-47ec-8332-957469f2558d", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.5287356321839081, "overlap_size": 46 } }, { "data": { "id": "c16e81a9-7989-4482-acc4-fe7d34c0baf7", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "similarity_coefficient": 0.2752808988764045, "overlap_size": 49 } }, { "data": { "id": "eb9a951b-aef0-4020-829d-f2ca7430d4c0", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "77975fe3-8389-462d-b794-dfb5e2c511f2", "similarity_coefficient": 0.49019607843137253, "overlap_size": 50 } }, { "data": { "id": "af22b7fb-f1f5-40cc-8c39-80a978016fbb", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "17018f59-7b29-40d7-bb46-1283a625ad23", "similarity_coefficient": 0.34507042253521125, "overlap_size": 49 } }, { "data": { "id": "694d28c2-8bf3-4d30-b118-f4a594f46121", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.684931506849315, "overlap_size": 50 } }, { "data": { "id": "cd64fd0a-7e8a-460a-929e-c6d1e915f862", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49 } }, { "data": { "id": "7fcd9a72-64f6-4106-be9e-d25d0b6ae8f3", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.47, "overlap_size": 47 } }, { "data": { "id": "30420296-7868-42c4-a524-738b2e7a9417", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "similarity_coefficient": 0.5517241379310345, "overlap_size": 48 } }, { "data": { "id": "68cdfaf8-1587-45ba-b635-8bcd3baa035c", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49 } }, { "data": { "id": "636cfb84-a4f5-4c99-8212-07bf70c9ab40", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.28488372093023256, "overlap_size": 49 } }, { "data": { "id": "2ecde292-5549-4b90-ac86-8e61167e6841", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49 } }, { "data": { "id": "1dc59d28-f808-46e0-b331-9ea2ae116a1e", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49 } }, { "data": { "id": "66cd06e3-4882-4347-9f2d-21f1fc3a1c61", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49 } }, { "data": { "id": "d5bebf91-dde5-4da2-b414-c782e8042916", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.6447368421052632, "overlap_size": 49 } }, { "data": { "id": "74f17c37-31c5-4230-aa8c-04b0b2fa52cd", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.7796610169491526, "overlap_size": 46 } }, { "data": { "id": "a5212793-2fe2-49ce-9738-f2c5e8f7e974", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.6125, "overlap_size": 49 } }, { "data": { "id": "c5b4d9dc-8b44-4bcf-b91b-44a6dd8e87e5", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "similarity_coefficient": 0.620253164556962, "overlap_size": 49 } }, { "data": { "id": "b756582a-5a17-4c7e-8ce9-cc83a681f48d", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "a9322d3e-0434-4ba3-b569-019127883b2e", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49 } }, { "data": { "id": "506b505e-fff1-4496-98c5-bd487d223a22", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.875, "overlap_size": 49 } }, { "data": { "id": "89db99ce-9ec2-4c70-9cd6-2bd5951fc6f6", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49 } }, { "data": { "id": "9aff5a57-64d7-47c5-8ea5-d11cf1e9a5a3", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.7313432835820896, "overlap_size": 49 } }, { "data": { "id": "e7863aa5-d177-4180-a45b-1ec0378ce703", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.75, "overlap_size": 48 } }, { "data": { "id": "aecb7f10-82da-4f19-a7fe-f66fde47a80a", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "72fd7976-1a23-4642-833b-600f2c123e40", "similarity_coefficient": 0.7758620689655172, "overlap_size": 45 } }, { "data": { "id": "860f7e61-5012-4714-9ca7-727269978506", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49 } }, { "data": { "id": "b125d776-aa9a-44ef-81ee-8efd40cc8211", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49 } }, { "data": { "id": "f8d275e6-66fd-4fd1-b296-3fb47ceb545d", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.8245614035087719, "overlap_size": 47 } }, { "data": { "id": "3ae874ab-8011-40fc-aec5-522b8b28c8d0", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.494949494949495, "overlap_size": 49 } }, { "data": { "id": "a9ce6521-daa2-4f57-8599-8d8c4aa6e54e", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.36496350364963503, "overlap_size": 50 } }, { "data": { "id": "6d2a134d-6333-4282-98f8-28c38bd99f48", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.7894736842105263, "overlap_size": 45 } }, { "data": { "id": "8d8a0438-cbab-4153-bd74-dfc98dbbe5fa", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.8305084745762712, "overlap_size": 49 } }, { "data": { "id": "7f867924-a60e-4f2f-95b0-92992e5a5aa0", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49 } }, { "data": { "id": "f848f59c-4ce1-40ec-970d-2159262308b3", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.8909090909090909, "overlap_size": 49 } }, { "data": { "id": "a56dc596-2a51-4840-82fe-589438a71dba", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.8909090909090909, "overlap_size": 49 } }, { "data": { "id": "56812004-da2e-480d-924d-c16dea2a44b0", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "63fdd4c7-f868-4ecb-bfc9-633d6db573cf", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "e3958bd6-3357-456d-b95a-166ed3cd1903", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "a416f178-74f3-46bf-af8a-d534e01b18aa", "similarity_coefficient": 0.7777777777777778, "overlap_size": 49 } }, { "data": { "id": "8d0136b2-cc5d-4fe4-86c2-928119b5f98f", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "0d3bb231-67c2-46cb-93ed-80383c138af9", "similarity_coefficient": 0.49, "overlap_size": 49 } }, { "data": { "id": "a6b10359-64b3-43eb-9087-a5e1519ba901", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "14654f3b-2789-4eed-a644-a2a654fa934b", "similarity_coefficient": 0.26344086021505375, "overlap_size": 49 } }, { "data": { "id": "d75bcbce-c8ae-40ec-889f-b52495741d48", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "similarity_coefficient": 0.3356164383561644, "overlap_size": 49 } }, { "data": { "id": "6a24d53d-4941-416c-9d3c-bbf5ff0dc269", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "similarity_coefficient": 0.2934131736526946, "overlap_size": 49 } }, { "data": { "id": "dba3efae-2c42-4772-8825-5f34ed046576", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.8909090909090909, "overlap_size": 49 } }, { "data": { "id": "f54abbc8-3a24-4e27-9879-c6dd2d92fee7", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.6571428571428571, "overlap_size": 46 } }, { "data": { "id": "11f7dd67-c078-4473-b30d-0362a6031db1", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "similarity_coefficient": 0.8909090909090909, "overlap_size": 49 } }, { "data": { "id": "71987834-df7a-4d2c-9b4f-6ec6b3f07289", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.44954128440366975, "overlap_size": 49 } }, { "data": { "id": "c406dca7-a90d-45d9-9c40-f7de946125cb", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.765625, "overlap_size": 49 } }, { "data": { "id": "4de9b4a6-b150-4826-86ef-198c55d6ff76", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.34074074074074073, "overlap_size": 46 } }, { "data": { "id": "cbcfd6fd-55c5-43f3-8a64-62173f89f33f", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "dec11a24-597a-4f26-846a-eed2d73e5b96", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49 } }, { "data": { "id": "d085646a-d14e-4210-85c7-73ca8f0251b4", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49 } }, { "data": { "id": "cd7ba11b-2281-4b6d-ab10-a6823a617a84", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49 } }, { "data": { "id": "3d323dd0-d40b-4775-b45d-5e1db1cd55ce", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.550561797752809, "overlap_size": 49 } }, { "data": { "id": "e1d0e256-b3b8-43cc-9b53-00bea5b4d20a", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49 } }, { "data": { "id": "cb350dc3-d3e7-4951-8b02-f8ab1fbc6129", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.3157894736842105, "overlap_size": 48 } }, { "data": { "id": "f89bbbc5-39d9-43fc-be8c-1c1e420b8cc9", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49 } }, { "data": { "id": "bc153447-2db6-472d-afd4-b1f78e9c2bd5", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "similarity_coefficient": 0.3202614379084967, "overlap_size": 49 } }, { "data": { "id": "40a74db5-8b93-416f-9d10-462ddac4b3bf", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.266304347826087, "overlap_size": 49 } }, { "data": { "id": "be44e56a-ef4f-4327-92a4-488c1d559a6d", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49 } }, { "data": { "id": "c3c3a4fb-39ae-453d-aadb-4cf475ab62b4", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.7903225806451613, "overlap_size": 49 } }, { "data": { "id": "c0ca0841-bf46-432d-809f-be618a3af8d3", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.30625, "overlap_size": 49 } }, { "data": { "id": "d28d1099-6751-476f-be7f-042c92ea26c0", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49 } }, { "data": { "id": "6462fd68-34bf-44bd-9685-2d9b090e1b9e", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "73e0d53b-2bde-4f9e-9802-9723b736e3f7", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.875, "overlap_size": 49 } }, { "data": { "id": "c0d5e70c-ede2-4d17-885f-40c33dab6c77", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "similarity_coefficient": 0.7, "overlap_size": 49 } }, { "data": { "id": "64e4cf01-6f05-4f66-86c1-d73281c8caf7", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "a6609db1-5756-4ff4-8409-5013d1a74f05", "similarity_coefficient": 0.35555555555555557, "overlap_size": 48 } }, { "data": { "id": "d58f29c7-e56a-48dc-ae5a-472b17a59acc", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49 } }, { "data": { "id": "b1b0f52a-dcde-4f11-b006-ee77f963774d", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "814f7e07-9f98-4192-9976-64397caf0790", "similarity_coefficient": 0.28160919540229884, "overlap_size": 49 } }, { "data": { "id": "49377074-96e8-4388-9346-60d3b57968f5", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.7101449275362319, "overlap_size": 49 } }, { "data": { "id": "2d4c72b8-2996-4d7b-a399-35e804786b5e", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.8448275862068966, "overlap_size": 49 } }, { "data": { "id": "55f96d79-7c67-4f7a-8a18-87b15abc6846", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.5393258426966292, "overlap_size": 48 } }, { "data": { "id": "b03e8e27-3464-4c60-8d88-666b6716892e", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "f9954f17-1709-479e-8d22-403ed421f128", "similarity_coefficient": 0.5662650602409639, "overlap_size": 47 } }, { "data": { "id": "18fb8044-9605-4ae5-8df6-012c6edb220b", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.532608695652174, "overlap_size": 49 } }, { "data": { "id": "49d22d6d-cd8c-4b6d-8992-99ca3ee04256", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.9245283018867925, "overlap_size": 49 } }, { "data": { "id": "20bb22af-3407-4ae7-ab3d-6aa231a6e88c", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.8166666666666667, "overlap_size": 49 } }, { "data": { "id": "207ba3f9-d4b4-45ce-9e2e-2812cf353288", "source": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.5882352941176471, "overlap_size": 50 } }, { "data": { "id": "2e3cab16-42e9-4615-aee6-e5a98fdee0fc", "source": "fde360d7-05e2-49a7-982b-1b63c729b582", "target": "c4bf8247-9698-4f02-97dd-37135cff99f8", "similarity_coefficient": 0.75, "overlap_size": 30 } }, { "data": { "id": "25732b6d-6b7b-4f5c-af0f-9efc12a5f677", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "fee70c5f-9365-48f6-aaf2-65daee3821a9", "similarity_coefficient": 0.375, "overlap_size": 63 } }, { "data": { "id": "67b1a5f9-4f09-4fe1-b911-14f0d930311b", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "e5659519-1ff7-448c-915e-aabcc7ee6854", "similarity_coefficient": 0.7, "overlap_size": 49 } }, { "data": { "id": "eeab4b1b-7359-4c97-a5a0-5bd47657c118", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "49c6f0e7-40b6-4530-8154-526c59ed52e0", "similarity_coefficient": 0.45794392523364486, "overlap_size": 49 } }, { "data": { "id": "990f593c-9477-479c-b29d-8cffa140e337", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "ae0379b7-1767-45b9-bb67-825999995acc", "similarity_coefficient": 0.5903614457831325, "overlap_size": 49 } }, { "data": { "id": "621bdb98-f806-495a-98e8-e39888698e8d", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "82d01e11-3850-4c3d-83af-fa5d1d68a635", "similarity_coefficient": 0.5764705882352941, "overlap_size": 49 } }, { "data": { "id": "4adec76f-3d1c-4118-9e70-a667ac371d5e", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "cf308dd7-970b-4481-b9f3-b6ed3ca933c1", "similarity_coefficient": 0.2947976878612717, "overlap_size": 51 } }, { "data": { "id": "383c0e26-435a-41c0-861e-7a020066da7a", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "fe17eb73-47ec-4251-b3c3-609141b3f7eb", "similarity_coefficient": 0.32075471698113206, "overlap_size": 51 } }, { "data": { "id": "9250c318-6dd7-4d0d-8646-9d58d243df0e", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "59feb2ba-e446-4f60-ad2a-08a707a3d4f0", "similarity_coefficient": 0.4297520661157025, "overlap_size": 52 } }, { "data": { "id": "82cb52e9-60d5-4816-aced-f5d2e4aa01db", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "c0686b20-ff4e-4298-8b8e-e699237f29a3", "similarity_coefficient": 0.75, "overlap_size": 54 } }, { "data": { "id": "71bd9cf2-e4ca-4a51-89ad-e36e2b44c84f", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "9d155ca2-fbf2-4791-8eb9-3b9b3a569116", "similarity_coefficient": 0.2916666666666667, "overlap_size": 49 } }, { "data": { "id": "115ebd8e-cc25-45f1-8dbc-7bb9a85c1490", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "a51798fd-20b3-44ba-9fcf-7d260597aa3c", "similarity_coefficient": 0.620253164556962, "overlap_size": 49 } }, { "data": { "id": "3000e580-02c2-4f76-9824-1661f5af3d07", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "1feaa869-3c0b-48db-9ff2-10f9c658f515", "similarity_coefficient": 0.30666666666666664, "overlap_size": 46 } }, { "data": { "id": "d388f005-ea98-4abb-b13a-36699c3e757b", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "0d3bb231-67c2-46cb-93ed-80383c138af9", "similarity_coefficient": 0.6237623762376238, "overlap_size": 63 } }, { "data": { "id": "7c4045b8-d48a-45c2-91ce-c2d68427a6d3", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "8699892d-d15b-4f3d-8833-d8fd933ee911", "similarity_coefficient": 0.5411764705882353, "overlap_size": 46 } }, { "data": { "id": "8f30a001-2479-418b-b218-5696aeddc357", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "842f7484-0b1c-45a0-9865-86eff85b70c5", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49 } }, { "data": { "id": "6d91279b-e783-49b2-82f2-542f773abc24", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "80bcca87-8191-46d4-95d9-85e07b1f746f", "similarity_coefficient": 0.6363636363636364, "overlap_size": 49 } }, { "data": { "id": "11752d79-6fa4-455b-a2ed-03ec6b49d36c", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "e6811e44-1966-4c7c-b42a-a740e8e0d4aa", "similarity_coefficient": 0.75, "overlap_size": 51 } }, { "data": { "id": "57ec2f70-417d-4484-ab78-2dd27adddf20", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "066941b5-39bc-4c66-ac09-ff28c6e0088a", "similarity_coefficient": 0.47115384615384615, "overlap_size": 49 } }, { "data": { "id": "03c01946-2688-420d-bdb4-7a08f38025cf", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "df62ba92-c993-4a8f-9b20-d22661c8b24d", "similarity_coefficient": 0.2717948717948718, "overlap_size": 53 } }, { "data": { "id": "2c6677dd-e2e6-449f-a7f4-d655a47d7c2c", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "dec11a24-597a-4f26-846a-eed2d73e5b96", "similarity_coefficient": 0.4722222222222222, "overlap_size": 51 } }, { "data": { "id": "b7135728-e968-48bc-9a68-4d69e0639c72", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "a0bc0504-0aa3-493e-a98b-01a74812198f", "similarity_coefficient": 0.5416666666666666, "overlap_size": 52 } }, { "data": { "id": "43e24218-b4b5-4eca-bd46-331af6499b14", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "83f72e66-232e-49f9-8eb8-ca4061acfc0d", "similarity_coefficient": 0.5862068965517241, "overlap_size": 51 } }, { "data": { "id": "3b7d0a48-5e21-45d4-be78-086c0d807179", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "6abace7f-f285-465a-98ea-3a72e04cf2c5", "similarity_coefficient": 0.532608695652174, "overlap_size": 49 } }, { "data": { "id": "be3ce10d-b874-4cf2-aa5c-095f05e6ad82", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "4d418edd-7cd6-4c10-a651-fba7f30779f3", "similarity_coefficient": 0.7, "overlap_size": 49 } }, { "data": { "id": "66d14400-6bf8-44f2-9ae2-5c1a8a52cf67", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "904648c2-551b-426e-815e-74ced2374458", "similarity_coefficient": 0.3872832369942196, "overlap_size": 67 } }, { "data": { "id": "855bd999-c288-431f-ae11-33fdce46644e", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "912a8e15-8878-460e-912c-ea5d122f0fb9", "similarity_coefficient": 0.7, "overlap_size": 49 } }, { "data": { "id": "e046f349-1ee6-4c61-a7c0-15062f5316d3", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "d61f0543-15b0-428e-ade4-e9346167811e", "similarity_coefficient": 0.4188034188034188, "overlap_size": 49 } }, { "data": { "id": "44d29614-f16c-441d-8411-af6494331dce", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "594f0680-0bb1-44ff-bb68-72fa7e1f37a0", "similarity_coefficient": 0.39655172413793105, "overlap_size": 46 } }, { "data": { "id": "a84f050b-586f-4ab0-ad5d-c6198cc43687", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "f4ac3c81-1f56-4d9e-8cf7-f769e212cca2", "similarity_coefficient": 0.47058823529411764, "overlap_size": 48 } }, { "data": { "id": "b6e7c183-4b63-4bd2-8c0a-9527528f8c74", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "17018f59-7b29-40d7-bb46-1283a625ad23", "similarity_coefficient": 0.4206896551724138, "overlap_size": 61 } }, { "data": { "id": "e7c7cc16-fc78-4b48-a86a-071561957840", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "1d0c4edf-cef7-4a11-9b02-f2b0a33ce1e4", "similarity_coefficient": 0.5975609756097561, "overlap_size": 49 } }, { "data": { "id": "8abd20ef-cd0c-4094-82cf-3e62f182fec3", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "77975fe3-8389-462d-b794-dfb5e2c511f2", "similarity_coefficient": 0.45217391304347826, "overlap_size": 52 } }, { "data": { "id": "026e7e7f-0716-4b35-ae8e-cbc111132993", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "aa64f6d5-9667-4ffd-bb3d-7ab5cf4b104c", "similarity_coefficient": 0.5048543689320388, "overlap_size": 52 } }, { "data": { "id": "5d66a694-3528-4d73-a54e-c3b70491bf92", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "d86061a3-3499-4177-b910-06ab47193df9", "similarity_coefficient": 0.5048543689320388, "overlap_size": 52 } }, { "data": { "id": "8312731f-34d6-4dd8-9f83-4790dc73761b", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "7724f727-7760-4f29-a243-887fe8858a0c", "similarity_coefficient": 0.2620320855614973, "overlap_size": 49 } }, { "data": { "id": "6a4a2bc5-8e80-4a14-9103-de28cec29387", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "844afc8a-176f-44fe-b051-ffa66bd48717", "similarity_coefficient": 0.6901408450704225, "overlap_size": 49 } }, { "data": { "id": "d87a1da7-acc5-40ec-8c98-d2bfa9853ceb", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "2397885d-fcd1-4e58-97b3-225648b8409e", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49 } }, { "data": { "id": "1420b93f-481e-4849-9bd5-75d5b0b3fa9e", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "de79d48e-20fb-43c4-b9c9-35e713136a3d", "similarity_coefficient": 0.45871559633027525, "overlap_size": 50 } }, { "data": { "id": "f4e41ff1-8597-45b0-8fc8-165b7ff992b7", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "a9322d3e-0434-4ba3-b569-019127883b2e", "similarity_coefficient": 0.7183098591549296, "overlap_size": 51 } }, { "data": { "id": "4e4da4b7-835e-4300-ab58-e9002336bceb", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "5c4a9dff-89ea-47fd-a780-bb8e82670b89", "similarity_coefficient": 0.2538860103626943, "overlap_size": 49 } }, { "data": { "id": "143a0cba-30af-41d6-94d4-235eaca5e519", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "dba2ca7b-e087-447b-97f3-7367cc16ce32", "similarity_coefficient": 0.4803921568627451, "overlap_size": 49 } }, { "data": { "id": "acb2ff1a-efc5-4a0e-95d9-81c49eadfe25", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "cbdfbcbe-7d9e-40c4-9bee-a0fa56e88906", "similarity_coefficient": 0.5632183908045977, "overlap_size": 49 } }, { "data": { "id": "aa16df41-6f99-461d-a336-9adebaf56ff5", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "58618233-288e-4ffc-b557-24ad0847817b", "similarity_coefficient": 0.7638888888888888, "overlap_size": 55 } }, { "data": { "id": "f9e3b0c6-c085-4331-9f64-a726746f44bc", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "98de62c0-99b8-4e59-aaa2-67b57d934a28", "similarity_coefficient": 0.3466666666666667, "overlap_size": 52 } }, { "data": { "id": "1322be8d-b045-48bd-989f-a5245d43f37e", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "e5e95d9d-2f5e-47c2-8c84-8c1b84064a09", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "7411011f-7728-4a59-80a2-703a0ae9b5b0", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "72fd7976-1a23-4642-833b-600f2c123e40", "similarity_coefficient": 0.6164383561643836, "overlap_size": 45 } }, { "data": { "id": "09c8047a-416d-4ba2-8b07-686e43c1c172", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "efcc5402-1c7a-4e72-83a4-e46ca6e4b8e2", "similarity_coefficient": 0.4298245614035088, "overlap_size": 49 } }, { "data": { "id": "2eb5d13c-f94a-4b3b-84c3-122ee0bc9d12", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "676a30e0-10c9-4292-861b-34e45764abd1", "similarity_coefficient": 0.8375, "overlap_size": 67 } }, { "data": { "id": "a034abff-90bf-467f-b96c-d71ee3faf4ae", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "c2ac2f66-3dbc-455a-bfb0-81f916b14a1e", "similarity_coefficient": 0.6666666666666666, "overlap_size": 48 } }, { "data": { "id": "14359533-eaa7-4a82-b8c8-2a5c6cfae48a", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "f75e364b-b5b5-4977-ab50-87c10ffbc227", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "c8bbdb14-cabd-4af6-b276-6d8c8da3d09a", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "d8fa505e-90c1-4ed5-a945-df8e45a30ffd", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49 } }, { "data": { "id": "bc746c55-b9d6-415b-a209-6bf4fcb893cc", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "7ec29276-58e5-4dbe-802c-6f4718df63f7", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49 } }, { "data": { "id": "914d92cb-45cb-4ec6-b092-8f9abee15a13", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "a416f178-74f3-46bf-af8a-d534e01b18aa", "similarity_coefficient": 0.6282051282051282, "overlap_size": 49 } }, { "data": { "id": "233f1bef-eb03-4c6e-ba16-2a3d99f611c1", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "2433c575-ad3e-4cba-bd88-da46c4c2d43a", "similarity_coefficient": 0.625, "overlap_size": 45 } }, { "data": { "id": "5b329b8d-3fd8-4610-a3bb-5435a6a591e8", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "14654f3b-2789-4eed-a644-a2a654fa934b", "similarity_coefficient": 0.26903553299492383, "overlap_size": 53 } }, { "data": { "id": "48661f61-863d-4162-8c75-338a2807f527", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "b4621641-66ea-4676-8d55-0a15cf9fcd95", "similarity_coefficient": 0.7, "overlap_size": 49 } }, { "data": { "id": "2fddc9df-d1e7-447c-8a24-6739d004d25a", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "e8fc3e7d-7092-4629-9f61-b4c46f1920a9", "similarity_coefficient": 0.5700934579439252, "overlap_size": 61 } }, { "data": { "id": "4de8499d-d103-4ddf-bde9-314e75449ba2", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "a45a5476-c0c9-44d2-ade8-9af379dc40d6", "similarity_coefficient": 0.6075949367088608, "overlap_size": 48 } }, { "data": { "id": "5353959a-36f3-4ec1-8550-8c09e73e7007", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "f69a9f1a-7eb7-432d-90e5-f25204f6a1a7", "similarity_coefficient": 0.6621621621621622, "overlap_size": 49 } }, { "data": { "id": "ddef5efe-ddbe-4080-9017-9a333670dfa6", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "caf100b0-01e0-45d7-9834-ded4d91e6c43", "similarity_coefficient": 0.5212765957446809, "overlap_size": 49 } }, { "data": { "id": "d5302478-57f3-4836-a774-e36f9e865751", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "09881653-cb5b-40c3-ad0b-a9de2d2addec", "similarity_coefficient": 0.49523809523809526, "overlap_size": 52 } }, { "data": { "id": "6c1e4c09-d57a-46c2-a3ef-1dad09a5ba01", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "b3a2a07a-a5fd-4ae3-8559-020545970efc", "similarity_coefficient": 0.6933333333333334, "overlap_size": 52 } }, { "data": { "id": "31adf360-72b3-4959-b442-cf014c1b4f1a", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "2fdcc57a-135b-4a9a-a0cb-5291c003e2c0", "similarity_coefficient": 0.5384615384615384, "overlap_size": 49 } }, { "data": { "id": "c81ae897-44b6-40a8-8b26-9fed05704200", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "c51ce6f8-f2ba-4496-80a8-9c84ad7b926b", "similarity_coefficient": 0.7, "overlap_size": 49 } }, { "data": { "id": "b16cfa1c-2a09-4571-9ffe-93cfe3ab41b1", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "a683d5c7-e865-4a5d-a948-0fad85e9e2d9", "similarity_coefficient": 0.7, "overlap_size": 49 } }, { "data": { "id": "44eaa760-d5ac-4ad8-8ea5-4662103197ee", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "4d6ba93b-248e-4fc3-9f70-599df0f45663", "similarity_coefficient": 0.5625, "overlap_size": 45 } }, { "data": { "id": "166ca35e-bb8a-45fe-b6e3-302ef02327fb", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "057d3a77-a0db-4b92-9c08-a000751d7954", "similarity_coefficient": 0.5157894736842106, "overlap_size": 49 } }, { "data": { "id": "4e305b8b-735f-4ad9-a6fa-4093866257f8", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "1732e9b0-d067-4fb4-9670-5e323da79090", "similarity_coefficient": 0.3591549295774648, "overlap_size": 51 } }, { "data": { "id": "19f5f3a6-7a1c-4422-9385-7d6fe9068bdb", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "d447e3e0-80e4-4619-86a9-0fa2178b71c2", "similarity_coefficient": 0.26373626373626374, "overlap_size": 24 } }, { "data": { "id": "573610ae-09ad-4514-8bb6-51836c438f63", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "9503dd7e-fc9d-4e14-bbc2-466c77d7e83e", "similarity_coefficient": 0.6805555555555556, "overlap_size": 49 } }, { "data": { "id": "2318fe95-b204-4e99-86e2-a48442a186d7", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "133bf1a2-6024-4e60-827f-9b06b9ee0d73", "similarity_coefficient": 0.48, "overlap_size": 48 } }, { "data": { "id": "c270a6e8-3cef-4f57-b9cf-f45ba4bab9b7", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "e08450b6-07c9-4466-839b-670ce03c6f51", "similarity_coefficient": 0.6933333333333334, "overlap_size": 52 } }, { "data": { "id": "e981a7ed-d3b3-4135-8864-8bd90dad4349", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "e1718e3d-2ecb-4cad-85b5-4756071c08db", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49 } }, { "data": { "id": "063f3059-ebe5-43a7-9e77-57433e025895", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "5026c9e0-10a2-4e0f-bc43-4e204441837a", "similarity_coefficient": 0.3722627737226277, "overlap_size": 51 } }, { "data": { "id": "ab134987-cf05-4b72-8db1-95ded8f71dde", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "3136e982-a9dc-495e-87e3-01fe57148a84", "similarity_coefficient": 0.6052631578947368, "overlap_size": 46 } }, { "data": { "id": "f6d39355-d56f-4f70-8034-5db3b8005d39", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "19f6170d-5f15-4c2c-9eed-68e87ea5459d", "similarity_coefficient": 0.3805970149253731, "overlap_size": 51 } }, { "data": { "id": "ae381305-b0d4-40b1-a01d-7a648defa437", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "85007193-a6ac-428a-8560-a369fd4bcde6", "similarity_coefficient": 0.4778761061946903, "overlap_size": 54 } }, { "data": { "id": "7297b52d-8211-4b3e-856f-ece125e99c4c", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "25ba247c-7549-49d7-a57d-c80e59da6733", "similarity_coefficient": 0.532608695652174, "overlap_size": 49 } }, { "data": { "id": "998aa99d-db97-4aa1-92c5-0c079c4070e5", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "86687476-8248-4cb0-af40-b17620dd5594", "similarity_coefficient": 0.3458646616541353, "overlap_size": 46 } }, { "data": { "id": "2d956686-7fff-45ce-83bd-b2a54248c053", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "b8df25ab-1568-411c-9322-4ac486b72ee2", "similarity_coefficient": 0.2849162011173184, "overlap_size": 51 } }, { "data": { "id": "27cf7951-55b0-4ab6-bd92-4427508a8ace", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "d97db454-5799-44e6-8082-d76526e8e917", "similarity_coefficient": 0.5697674418604651, "overlap_size": 49 } }, { "data": { "id": "64a05431-5dcc-4cde-be0d-d6cb36ea4cd6", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "52457d27-06bf-4049-97a8-d284bfd8321c", "similarity_coefficient": 0.3380281690140845, "overlap_size": 24 } }, { "data": { "id": "65969f91-643c-4b98-bdd5-5249bbe193e5", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "45836941-b2c4-49e1-b125-b3e2a9e46ad6", "similarity_coefficient": 0.5862068965517241, "overlap_size": 51 } }, { "data": { "id": "8a175688-c5f5-4c72-a545-993f2c794b99", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "a6609db1-5756-4ff4-8409-5013d1a74f05", "similarity_coefficient": 0.32, "overlap_size": 48 } }, { "data": { "id": "3506052d-adea-44b0-8b26-1e90d1e7f667", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "551c599d-46db-4d68-923d-007dcdb10bb7", "similarity_coefficient": 0.6712328767123288, "overlap_size": 49 } }, { "data": { "id": "2b4ab23a-21de-4c11-8788-44edcddedeff", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "eda99b2f-0253-424d-880d-178bdea9777d", "similarity_coefficient": 0.2874251497005988, "overlap_size": 48 } }, { "data": { "id": "928e3e7c-866b-4a96-b2e5-fa7a0028c321", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "8b9b52ca-b63e-479e-b878-e24171ddfc00", "similarity_coefficient": 0.7428571428571429, "overlap_size": 52 } }, { "data": { "id": "dbb6068b-cb1f-46fa-8978-9064630181ab", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "c069a737-3add-46d7-922a-fe2a44aa8aad", "similarity_coefficient": 0.6533333333333333, "overlap_size": 49 } }, { "data": { "id": "2dca7f31-c6b2-4f9b-88ef-a367f9eba322", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "8fde9272-c650-43e9-af45-fa7404d4432f", "similarity_coefficient": 0.5833333333333334, "overlap_size": 49 } }, { "data": { "id": "f379f541-63f3-4268-bb2a-0a4fb423cfd9", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "4cab23ea-9323-4755-9d34-d3fea53afb83", "similarity_coefficient": 0.46153846153846156, "overlap_size": 48 } }, { "data": { "id": "d6d6fc57-79d0-4ee5-b6af-502544208460", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "814f7e07-9f98-4192-9976-64397caf0790", "similarity_coefficient": 0.25925925925925924, "overlap_size": 49 } }, { "data": { "id": "b65bcaa7-ba8a-436e-8549-5e7a3eb384c4", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "1c8bf065-d87e-4297-8537-61bf6766f6fc", "similarity_coefficient": 0.4482758620689655, "overlap_size": 52 } }, { "data": { "id": "61810934-cc65-44fd-a612-95a9486cdced", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "f9954f17-1709-479e-8d22-403ed421f128", "similarity_coefficient": 0.5104166666666666, "overlap_size": 49 } }, { "data": { "id": "69a57401-c24c-4233-9065-512abd7b2622", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "48c1433b-00dd-4330-8b52-5d849ddfd875", "similarity_coefficient": 0.5306122448979592, "overlap_size": 52 } }, { "data": { "id": "5db833ca-7dd3-4e85-86f2-f58f4a1fe9a0", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "e8d3317b-65de-49a7-aed6-686296dc1ca7", "similarity_coefficient": 0.6933333333333334, "overlap_size": 52 } }, { "data": { "id": "f559013e-563d-4d72-81de-eda0ae596aea", "source": "a57fbf4c-7851-4b90-9042-b1edc43cdb4a", "target": "fcff97d9-de34-4c3a-bcbf-6154a94ee567", "similarity_coefficient": 0.7205882352941176, "overlap_size": 49 } }, { "data": { "id": "f4fb7840-c292-44e1-ba1b-0a01624a1a0e", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "2294fe32-9cc8-4547-9add-76f9b67a9db8", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78 } }, { "data": { "id": "3d9fb831-9811-40db-968f-ed393726d776", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "d9b6e170-0a10-4b07-a6be-65588639fd62", "similarity_coefficient": 0.40930232558139534, "overlap_size": 88 } }, { "data": { "id": "663fc66d-735e-41e5-b41b-d7e781559a6d", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "4241a23b-fb03-46e5-9900-1c9b46f0cf61", "similarity_coefficient": 0.4230769230769231, "overlap_size": 88 } }, { "data": { "id": "e23a0777-28d0-4d92-8a8e-51400779d20f", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "c4a3c856-7105-4210-a331-93dbdbd0b0a5", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78 } }, { "data": { "id": "2fb9e9f5-0f7d-4508-bc24-02582695bcb7", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "7e8a2798-3efd-4409-a939-be2763ac2d08", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78 } }, { "data": { "id": "79e1429f-8db9-4d9b-ab7f-00bdc5334ae3", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "088965ae-beab-49a6-ba7f-62c8508bf897", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78 } }, { "data": { "id": "138b3341-98af-430e-b18d-f9035f4f9d01", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "2ac8637b-d554-4c99-a9cd-34dc4ffd2946", "similarity_coefficient": 0.4467005076142132, "overlap_size": 88 } }, { "data": { "id": "96c22230-4a33-4de8-8533-3b68909125eb", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "821a5449-91ba-4a42-bc38-5a1b2ea0c136", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78 } }, { "data": { "id": "340bc34f-3363-4fd0-aca4-0652e2160350", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "cc2b00f7-0582-447f-8ec9-178900aa2d7b", "similarity_coefficient": 0.4631578947368421, "overlap_size": 88 } }, { "data": { "id": "46ebba9c-325d-4a55-90d6-913a0d726f59", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "bba7681d-2edb-40bb-b2e1-5505c46072c6", "similarity_coefficient": 0.4656084656084656, "overlap_size": 88 } }, { "data": { "id": "b58770ce-55f1-4669-bc14-9e36c9929ea8", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "85618a5e-0712-414d-a086-843f21373c0c", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78 } }, { "data": { "id": "2dcb2730-c2a9-446b-a238-d568e1ead3fd", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "16a57939-b1d8-475a-ba1f-2dc3ac1791ce", "similarity_coefficient": 0.9481865284974094, "overlap_size": 183 } }, { "data": { "id": "85701e8d-4ee0-4d69-a43e-b0f39b1ed111", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "cec9100a-041b-436b-896d-c9938244a090", "similarity_coefficient": 0.3534136546184739, "overlap_size": 88 } }, { "data": { "id": "3092b951-ee2d-41aa-a55e-40d45e6b51f9", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "ee0413cd-3232-4384-9450-4d31d014be5d", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78 } }, { "data": { "id": "2e24b997-64dc-4f2c-ac9e-1c6e7b0bfd62", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "24f5af60-b4d1-48a0-9356-137f00085647", "similarity_coefficient": 0.4251207729468599, "overlap_size": 88 } }, { "data": { "id": "6d1dc6dc-e439-4a4a-bc88-0686d274a29c", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "389240a6-5b58-43ac-b7d0-2ece850a04e0", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78 } }, { "data": { "id": "4f507895-3964-49f2-9c17-d759abbebabd", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "4bcc6c1b-f9d8-480e-9846-a99f4ec21931", "similarity_coefficient": 0.4467005076142132, "overlap_size": 88 } }, { "data": { "id": "5fe62b24-4e04-418e-87a0-c5695e01c198", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "e0f0b2e4-6972-4dc5-84c0-2ef1b5fe88a0", "similarity_coefficient": 0.4656084656084656, "overlap_size": 88 } }, { "data": { "id": "009d29dc-d1e0-465e-b9a8-23eda968c619", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "14d3686e-e930-42df-864a-3191fd5d7a54", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78 } }, { "data": { "id": "2e00f4b8-11d8-4ae0-9359-bfddcc5ac118", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "1249987e-51f5-4213-acc3-2bb0aa826a5a", "similarity_coefficient": 0.28205128205128205, "overlap_size": 88 } }, { "data": { "id": "b696f705-eed4-4614-a86b-b03797b296f9", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "e47a74cd-5800-429b-b89e-f490004f32db", "similarity_coefficient": 0.40930232558139534, "overlap_size": 88 } }, { "data": { "id": "2721be46-b3a8-4cd3-9f2e-4303e2333999", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "0970b7b7-4463-4ed2-b5f2-a848c170c7a9", "similarity_coefficient": 0.41706161137440756, "overlap_size": 88 } }, { "data": { "id": "dbf505e7-4ded-4e35-9279-41d8f9d117ba", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "88cef4d1-ef9a-4fba-864d-e3afa0c1f2c1", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78 } }, { "data": { "id": "76e16aed-8778-450c-91a0-50a252905e9b", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "c5f30fd5-df33-4da6-94a8-11cbfca2b2dc", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78 } }, { "data": { "id": "bb687762-c1b3-42e9-9ad4-460c985ae13f", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "08f0f2ea-87f2-413b-829b-c7b4f5421275", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78 } }, { "data": { "id": "4ce762a0-5798-4fe1-b7ab-d549ace43376", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "52870f31-5584-4d32-be83-711380d76819", "similarity_coefficient": 0.41706161137440756, "overlap_size": 88 } }, { "data": { "id": "6f371f40-26c2-4450-8bbe-900a98de10dd", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "363c0045-f111-4629-85ba-f152798af40e", "similarity_coefficient": 0.9014778325123153, "overlap_size": 183 } }, { "data": { "id": "c4ccadec-d674-4f08-be4e-ea293c344384", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "dfa8ae57-66a6-48e1-9939-30b93e241cb0", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78 } }, { "data": { "id": "14318e43-ff66-459e-bd12-476eb928c729", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "9cc1543e-b2e4-4718-872d-4737deb33c71", "similarity_coefficient": 0.37948717948717947, "overlap_size": 74 } }, { "data": { "id": "020bb857-0f0f-4236-974f-705046a8ec29", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "8d08d346-d40c-4b0b-94ae-b1f49a8091d4", "similarity_coefficient": 0.38427947598253276, "overlap_size": 88 } }, { "data": { "id": "056ecdda-8b47-48d9-8244-c8566043fb9d", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "84f6f0ed-9615-48ba-a629-667c8302de99", "similarity_coefficient": 0.4607329842931937, "overlap_size": 88 } }, { "data": { "id": "4b832672-405e-4fe0-bba9-9ad960315285", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "24500407-f636-44ed-9254-763c3b68aad6", "similarity_coefficient": 0.41935483870967744, "overlap_size": 78 } }, { "data": { "id": "1280be6a-2194-4e36-bea3-6f96a9a169d4", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "a966733a-44de-48c5-8959-37cec18be5cf", "similarity_coefficient": 0.4756756756756757, "overlap_size": 88 } }, { "data": { "id": "477a80b4-9677-442b-a0d3-1240bd06b9f0", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "5dc5687f-5c6e-49ee-9ce5-d724dfde9540", "similarity_coefficient": 0.41509433962264153, "overlap_size": 88 } }, { "data": { "id": "1875ed20-9400-4649-9de4-95619f40247f", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "3608c2a4-44c5-403d-a12c-991578f6376a", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78 } }, { "data": { "id": "0a324b0c-4a48-482e-8f1d-b0c271afe87a", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "f4d46987-91b5-4ab5-819d-906956a8a2e2", "similarity_coefficient": 0.3492063492063492, "overlap_size": 88 } }, { "data": { "id": "145bf304-a441-4975-a060-5aea21bbff0a", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "91d5632b-deef-48e8-9b88-b8a88cfbf21b", "similarity_coefficient": 0.4230769230769231, "overlap_size": 88 } }, { "data": { "id": "03f3f00d-e92e-4874-94a0-8f1020fe32be", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "693a277b-b9fd-476a-a8ac-f501d98b431c", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78 } }, { "data": { "id": "4f2bd829-250b-4381-9cd2-46009a131be4", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "d85f39cd-abaf-4bbc-b4ae-4516141e71f0", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78 } }, { "data": { "id": "8d287478-ae30-475e-8175-b9413509777e", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "814f7e07-9f98-4192-9976-64397caf0790", "similarity_coefficient": 0.3308270676691729, "overlap_size": 88 } }, { "data": { "id": "f48e4621-49b0-4697-abe3-01f82c9a5bcc", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "f5535127-b254-4b9a-a92e-a8c7bd1a17f9", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78 } }, { "data": { "id": "e0929586-98e5-4d44-b319-7aea59ec4e34", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "e445c615-3699-4210-b6b5-e615a4e82d2c", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78 } }, { "data": { "id": "0d0ad75f-b396-488e-928c-ab6de0282800", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "cf678ecb-2880-4edb-87e5-d3b22bd94287", "similarity_coefficient": 0.36, "overlap_size": 81 } }, { "data": { "id": "98f7b868-f2ec-4d94-a417-65c2fb618091", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "8df682a4-616c-43a7-bcbf-768df10b482a", "similarity_coefficient": 0.4756756756756757, "overlap_size": 88 } }, { "data": { "id": "1ae9080e-7369-4001-9be0-3c1bb876c13e", "source": "e0b5d160-d449-46bd-bbda-584ba250e688", "target": "611ff36d-7bbc-4322-bcdb-592441240039", "similarity_coefficient": 0.42162162162162165, "overlap_size": 78 } }, { "data": { "id": "0e8213fd-8317-43c0-a3db-14ac5fefdd21", "source": "30d6ce47-80e4-4aca-b5f1-507230263257", "target": "0d129048-034a-41db-97c2-56e1fad7f34a", "similarity_coefficient": 0.36363636363636365, "overlap_size": 16 } }, { "data": { "id": "9601bc5f-4d5e-4315-aab2-1b4ec77d6e72", "source": "30d6ce47-80e4-4aca-b5f1-507230263257", "target": "5fa05894-c36b-4edd-bb4c-cd01142d1c7f", "similarity_coefficient": 0.30612244897959184, "overlap_size": 15 } } ] } } ================================================ FILE: documentation/demos/gpu/index.html ================================================ Cy.js WebGL Demo

Cy.js WebGL Demo

================================================ FILE: documentation/demos/gpu/style.css ================================================ body { font-family: helvetica; font-size: 14px; } #cy { width: 100%; height: 100%; position: absolute; left: 0; top: 0; z-index: 999; } h1 { opacity: 0.5; font-size: 1em; } ================================================ FILE: documentation/demos/grid-layout/code.js ================================================ fetch('data.json', {mode: 'no-cors'}) .then(function(res) { return res.json() }) .then(function(data) { var cy = window.cy = cytoscape({ container: document.getElementById('cy'), boxSelectionEnabled: false, autounselectify: true, layout: { name: 'grid' }, style: [ { selector: 'node', style: { 'height': 20, 'width': 20, 'background-color': '#18e018' } }, { selector: 'edge', style: { 'curve-style': 'haystack', 'haystack-radius': 0, 'width': 5, 'opacity': 0.5, 'line-color': '#a2efa2' } } ], elements: data }); }); ================================================ FILE: documentation/demos/grid-layout/data.json ================================================ [{ "data": { "id": "n40", "weight": 53 }, "position": { "x": 50, "y": 45 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n41", "weight": 23 }, "position": { "x": 150, "y": 45 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n42", "weight": 0 }, "position": { "x": 250, "y": 45 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n43", "weight": 50 }, "position": { "x": 350, "y": 45 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n44", "weight": 60 }, "position": { "x": 450, "y": 45 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n45", "weight": 60 }, "position": { "x": 550, "y": 45 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n46", "weight": 39 }, "position": { "x": 50, "y": 135 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n47", "weight": 96 }, "position": { "x": 150, "y": 135 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n48", "weight": 68 }, "position": { "x": 250, "y": 135 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n49", "weight": 83 }, "position": { "x": 350, "y": 135 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n50", "weight": 77 }, "position": { "x": 450, "y": 135 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n51", "weight": 40 }, "position": { "x": 550, "y": 135 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n52", "weight": 84 }, "position": { "x": 50, "y": 225 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n53", "weight": 47 }, "position": { "x": 150, "y": 225 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n54", "weight": 27 }, "position": { "x": 250, "y": 225 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n55", "weight": 14 }, "position": { "x": 350, "y": 225 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n56", "weight": 3 }, "position": { "x": 450, "y": 225 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n57", "weight": 13 }, "position": { "x": 550, "y": 225 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n58", "weight": 60 }, "position": { "x": 50, "y": 315 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n59", "weight": 72 }, "position": { "x": 150, "y": 315 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n60", "weight": 55 }, "position": { "x": 250, "y": 315 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n61", "weight": 3 }, "position": { "x": 350, "y": 315 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n62", "weight": 65 }, "position": { "x": 450, "y": 315 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n63", "weight": 57 }, "position": { "x": 550, "y": 315 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n64", "weight": 24 }, "position": { "x": 50, "y": 405 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n65", "weight": 68 }, "position": { "x": 150, "y": 405 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n66", "weight": 33 }, "position": { "x": 250, "y": 405 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n67", "weight": 26 }, "position": { "x": 350, "y": 405 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n68", "weight": 54 }, "position": { "x": 450, "y": 405 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "n69", "weight": 42 }, "position": { "x": 550, "y": 405 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e121", "weight": 19, "source": "n41", "target": "n50" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e129", "weight": 31, "source": "n65", "target": "n58" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e131", "weight": 90, "source": "n53", "target": "n43" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e132", "weight": 36, "source": "n52", "target": "n58" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e138", "weight": 65, "source": "n54", "target": "n55" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e142", "weight": 93, "source": "n40", "target": "n45" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e143", "weight": 58, "source": "n63", "target": "n68" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e144", "weight": 6, "source": "n66", "target": "n56" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e149", "weight": 59, "source": "n67", "target": "n45" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e155", "weight": 66, "source": "n43", "target": "n56" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e162", "weight": 39, "source": "n60", "target": "n63" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e164", "weight": 72, "source": "n42", "target": "n68" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e167", "weight": 45, "source": "n43", "target": "n48" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e168", "weight": 10, "source": "n61", "target": "n67" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e173", "weight": 6, "source": "n56", "target": "n40" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e176", "weight": 36, "source": "n48", "target": "n67" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e184", "weight": 59, "source": "n67", "target": "n43" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e210", "weight": 82, "source": "n59", "target": "n66" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e215", "weight": 47, "source": "n51", "target": "n51" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e216", "weight": 70, "source": "n46", "target": "n67" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e218", "weight": 33, "source": "n46", "target": "n62" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e222", "weight": 19, "source": "n49", "target": "n62" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e224", "weight": 92, "source": "n47", "target": "n56" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e234", "weight": 97, "source": "n42", "target": "n63" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e238", "weight": 73, "source": "n58", "target": "n65" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e239", "weight": 99, "source": "n47", "target": "n59" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e260", "weight": 54, "source": "n51", "target": "n45" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e261", "weight": 15, "source": "n63", "target": "n45" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e263", "weight": 43, "source": "n47", "target": "n42" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e268", "weight": 69, "source": "n44", "target": "n49" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e272", "weight": 77, "source": "n50", "target": "n61" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e273", "weight": 95, "source": "n44", "target": "n57" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e274", "weight": 70, "source": "n48", "target": "n58" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e278", "weight": 75, "source": "n57", "target": "n41" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e293", "weight": 50, "source": "n44", "target": "n63" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e295", "weight": 98, "source": "n50", "target": "n66" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e298", "weight": 76, "source": "n49", "target": "n60" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e299", "weight": 6, "source": "n42", "target": "n65" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e307", "weight": 69, "source": "n52", "target": "n47" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e308", "weight": 62, "source": "n53", "target": "n62" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e309", "weight": 66, "source": "n66", "target": "n53" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e311", "weight": 94, "source": "n65", "target": "n55" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }, { "data": { "id": "e312", "weight": 31, "source": "n58", "target": "n42" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbable": true, "classes": "" }] ================================================ FILE: documentation/demos/grid-layout/index.html ================================================ Grid demo

Grid demo

================================================ FILE: documentation/demos/grid-layout/style.css ================================================ body { font-family: helvetica; font-size: 14px; } #cy { width: 100%; height: 100%; position: absolute; left: 0; top: 0; z-index: 999; } h1 { opacity: 0.5; font-size: 1em; } ================================================ FILE: documentation/demos/images-breadthfirst-layout/code.js ================================================ // photos from flickr with creative commons license var cy = cytoscape({ container: document.getElementById('cy'), boxSelectionEnabled: false, autounselectify: true, style: cytoscape.stylesheet() .selector('node') .css({ 'height': 80, 'width': 80, 'background-fit': 'cover', 'border-color': '#000', 'border-width': 3, 'border-opacity': 0.5 }) .selector('.eating') .css({ 'border-color': 'red' }) .selector('.eater') .css({ 'border-width': 9 }) .selector('edge') .css({ 'curve-style': 'bezier', 'width': 6, 'target-arrow-shape': 'triangle', 'line-color': '#ffaaaa', 'target-arrow-color': '#ffaaaa' }) .selector('#bird') .css({ 'background-image': 'https://live.staticflickr.com/7272/7633179468_3e19e45a0c_b.jpg' }) .selector('#cat') .css({ 'background-image': 'https://live.staticflickr.com/1261/1413379559_412a540d29_b.jpg' }) .selector('#ladybug') .css({ 'background-image': 'https://live.staticflickr.com/3063/2751740612_af11fb090b_b.jpg' }) .selector('#aphid') .css({ 'background-image': 'https://live.staticflickr.com/8316/8003798443_32d01257c8_b.jpg' }) .selector('#rose') .css({ 'background-image': 'https://live.staticflickr.com/5109/5817854163_eaccd688f5_b.jpg' }) .selector('#grasshopper') .css({ 'background-image': 'https://live.staticflickr.com/6098/6224655456_f4c3c98589_b.jpg' }) .selector('#plant') .css({ 'background-image': 'https://live.staticflickr.com/3866/14420309584_78bf471658_b.jpg' }) .selector('#wheat') .css({ 'background-image': 'https://live.staticflickr.com/2660/3715569167_7e978e8319_b.jpg' }), elements: { nodes: [ { data: { id: 'cat' } }, { data: { id: 'bird' } }, { data: { id: 'ladybug' } }, { data: { id: 'aphid' } }, { data: { id: 'rose' } }, { data: { id: 'grasshopper' } }, { data: { id: 'plant' } }, { data: { id: 'wheat' } } ], edges: [ { data: { source: 'cat', target: 'bird' } }, { data: { source: 'bird', target: 'ladybug' } }, { data: { source: 'bird', target: 'grasshopper' } }, { data: { source: 'grasshopper', target: 'plant' } }, { data: { source: 'grasshopper', target: 'wheat' } }, { data: { source: 'ladybug', target: 'aphid' } }, { data: { source: 'aphid', target: 'rose' } } ] }, layout: { name: 'breadthfirst', directed: true, padding: 10 } }); // cy init cy.on('tap', 'node', function(){ var nodes = this; var tapped = nodes; var food = []; nodes.addClass('eater'); for(;;){ var connectedEdges = nodes.connectedEdges(function(el){ return !el.target().anySame( nodes ); }); var connectedNodes = connectedEdges.targets(); Array.prototype.push.apply( food, connectedNodes ); nodes = connectedNodes; if( nodes.empty() ){ break; } } var delay = 0; var duration = 500; for( var i = food.length - 1; i >= 0; i-- ){ (function(){ var thisFood = food[i]; var eater = thisFood.connectedEdges(function(el){ return el.target().same(thisFood); }).source(); thisFood.delay( delay, function(){ eater.addClass('eating'); } ).animate({ position: eater.position(), css: { 'width': 10, 'height': 10, 'border-width': 0, 'opacity': 0 } }, { duration: duration, complete: function(){ thisFood.remove(); } }); delay += duration; })(); } // for }); // on tap ================================================ FILE: documentation/demos/images-breadthfirst-layout/index.html ================================================ Images
================================================ FILE: documentation/demos/images-breadthfirst-layout/style.css ================================================ body { font: 14px helvetica neue, helvetica, arial, sans-serif; } #cy { height: 100%; width: 100%; position: absolute; left: 0; top: 0; } #eat { position: absolute; left: 1em; top: 1em; font-size: 1em; z-index: -1; color: #c88; } ================================================ FILE: documentation/demos/initialisation/code.js ================================================ var cy = cytoscape({ container: document.querySelector('#cy'), boxSelectionEnabled: false, autounselectify: true, style: cytoscape.stylesheet() .selector('node') .css({ 'content': 'data(name)', 'text-valign': 'center', 'color': 'white', 'text-outline-width': 2, 'background-color': '#999', 'text-outline-color': '#999' }) .selector('edge') .css({ 'curve-style': 'bezier', 'target-arrow-shape': 'triangle', 'target-arrow-color': '#ccc', 'line-color': '#ccc', 'width': 1 }) .selector(':selected') .css({ 'background-color': 'black', 'line-color': 'black', 'target-arrow-color': 'black', 'source-arrow-color': 'black' }) .selector('.faded') .css({ 'opacity': 0.25, 'text-opacity': 0 }), elements: { nodes: [ { data: { id: 'j', name: 'Jerry' } }, { data: { id: 'e', name: 'Elaine' } }, { data: { id: 'k', name: 'Kramer' } }, { data: { id: 'g', name: 'George' } } ], edges: [ { data: { source: 'j', target: 'e' } }, { data: { source: 'j', target: 'k' } }, { data: { source: 'j', target: 'g' } }, { data: { source: 'e', target: 'j' } }, { data: { source: 'e', target: 'k' } }, { data: { source: 'k', target: 'j' } }, { data: { source: 'k', target: 'e' } }, { data: { source: 'k', target: 'g' } }, { data: { source: 'g', target: 'j' } } ] }, layout: { name: 'grid', padding: 10 } }); cy.on('tap', 'node', function(e){ var node = e.cyTarget; var neighborhood = node.neighborhood().add(node); cy.elements().addClass('faded'); neighborhood.removeClass('faded'); }); cy.on('tap', function(e){ if( e.cyTarget === cy ){ cy.elements().removeClass('faded'); } }); ================================================ FILE: documentation/demos/initialisation/index.html ================================================ Cytoscape.js initialisation
================================================ FILE: documentation/demos/initialisation/style.css ================================================ body { font: 14px helvetica neue, helvetica, arial, sans-serif; } #cy { height: 100%; width: 100%; position: absolute; left: 0; top: 0; } #info { color: #c88; font-size: 1em; position: absolute; z-index: -1; left: 1em; top: 1em; } ================================================ FILE: documentation/demos/labels/code.js ================================================ /* global fetch, cytoscape, document, window */ (function(){ window.cy = cytoscape({ container: document.getElementById('cy'), layout: { name: 'grid', cols: 3 }, style: fetch('cy-style.json').then(function(res){ return res.json(); }), elements: [ { data: { label: 'top left' }, classes: 'top-left' }, { data: { label: 'top center' }, classes: 'top-center' }, { data: { label: 'top right' }, classes: 'top-right' }, { data: { label: 'center left' }, classes: 'center-left' }, { data: { label: 'center center' }, classes: 'center-center' }, { data: { label: 'center right' }, classes: 'center-right' }, { data: { label: 'bottom left' }, classes: 'bottom-left' }, { data: { label: 'bottom center' }, classes: 'bottom-center' }, { data: { label: 'bottom right' }, classes: 'bottom-right' }, { data: { label: 'multiline manual\nfoo\nbar\nbaz' }, classes: 'multiline-manual' }, { data: { label: 'multiline auto foo bar baz' }, classes: 'multiline-auto' }, { data: { label: 'outline' }, classes: 'outline' }, { data: { id: 'ar-src' } }, { data: { id: 'ar-tgt' } }, { data: { source: 'ar-src', target: 'ar-tgt', label: 'autorotate (move my nodes)' }, classes: 'autorotate' }, { data: { label: 'background' }, classes: 'background' } ] }); })(); ================================================ FILE: documentation/demos/labels/cy-style.json ================================================ [ { "selector": "node[label]", "style": { "label": "data(label)" } }, { "selector": "edge[label]", "style": { "label": "data(label)", "width": 3 } }, { "selector": ".top-left", "style": { "text-valign": "top", "text-halign": "left" } }, { "selector": ".top-center", "style": { "text-valign": "top", "text-halign": "center" } }, { "selector": ".top-right", "style": { "text-valign": "top", "text-halign": "right" } }, { "selector": ".center-left", "style": { "text-valign": "center", "text-halign": "left" } }, { "selector": ".center-center", "style": { "text-valign": "center", "text-halign": "center" } }, { "selector": ".center-right", "style": { "text-valign": "center", "text-halign": "right" } }, { "selector": ".bottom-left", "style": { "text-valign": "bottom", "text-halign": "left" } }, { "selector": ".bottom-center", "style": { "text-valign": "bottom", "text-halign": "center" } }, { "selector": ".bottom-right", "style": { "text-valign": "bottom", "text-halign": "right" } }, { "selector": ".multiline-manual", "style": { "text-wrap": "wrap" } }, { "selector": ".multiline-auto", "style": { "text-wrap": "wrap", "text-max-width": 80 } }, { "selector": ".autorotate", "style": { "edge-text-rotation": "autorotate" } }, { "selector": ".background", "style": { "text-background-opacity": 1, "color": "#fff", "text-background-color": "#888", "text-background-shape": "roundrectangle", "text-border-color": "#000", "text-border-width": 1, "text-border-opacity": 1 } }, { "selector": ".outline", "style": { "color": "#fff", "text-outline-color": "#888", "text-outline-width": 3 } } ] ================================================ FILE: documentation/demos/labels/index.html ================================================ Labels demo

Labels demo

================================================ FILE: documentation/demos/labels/style.css ================================================ body { font-family: helvetica, sans-serif; font-size: 14px; } #cy { position: absolute; left: 0; top: 0; right: 0; bottom: 0; z-index: 999; } h1 { opacity: 0.5; font-size: 1em; } ================================================ FILE: documentation/demos/linkout-example/code.js ================================================ var cy = cytoscape({ container: document.getElementById('cy'), boxSelectionEnabled: false, autounselectify: true, style: cytoscape.stylesheet() .selector('node') .css({ 'content': 'data(name)', 'text-valign': 'center', 'color': 'white', 'text-outline-width': 2, 'text-outline-color': '#888', 'background-color': '#888' }) .selector(':selected') .css({ 'background-color': 'black', 'line-color': 'black', 'target-arrow-color': 'black', 'source-arrow-color': 'black', 'text-outline-color': 'black' }), elements: { nodes: [ { data: { id: 'desktop', name: 'Cytoscape', href: 'http://cytoscape.org' } }, { data: { id: 'js', name: 'Cytoscape.js', href: 'http://js.cytoscape.org' } } ], edges: [ { data: { source: 'desktop', target: 'js' } } ] }, layout: { name: 'grid', padding: 10 } }); cy.on('tap', 'node', function(){ try { // your browser may block popups window.open( this.data('href') ); } catch(e){ // fall back on url change window.location.href = this.data('href'); } }); ================================================ FILE: documentation/demos/linkout-example/index.html ================================================ Linkout example
================================================ FILE: documentation/demos/linkout-example/style.css ================================================ body { font: 14px helvetica neue, helvetica, arial, sans-serif; } #cy { height: 100%; width: 100%; position: absolute; left: 0; top: 0; } #info { color: #c88; font-size: 1em; position: absolute; z-index: -1; left: 1em; top: 1em; } ================================================ FILE: documentation/demos/multiple-instances/code.js ================================================ var elesJson = { nodes: [ { data: { id: 'a', foo: 3, bar: 5, baz: 7 } }, { data: { id: 'b', foo: 7, bar: 1, baz: 3 } }, { data: { id: 'c', foo: 2, bar: 7, baz: 6 } }, { data: { id: 'd', foo: 9, bar: 5, baz: 2 } }, { data: { id: 'e', foo: 2, bar: 4, baz: 5 } } ], edges: [ { data: { id: 'ae', weight: 1, source: 'a', target: 'e' } }, { data: { id: 'ab', weight: 3, source: 'a', target: 'b' } }, { data: { id: 'be', weight: 4, source: 'b', target: 'e' } }, { data: { id: 'bc', weight: 5, source: 'b', target: 'c' } }, { data: { id: 'ce', weight: 6, source: 'c', target: 'e' } }, { data: { id: 'cd', weight: 2, source: 'c', target: 'd' } }, { data: { id: 'de', weight: 7, source: 'd', target: 'e' } } ] }; cytoscape({ container: document.getElementById('cy'), style: cytoscape.stylesheet() .selector('node') .css({ 'background-color': '#B3767E', 'width': 'mapData(baz, 0, 10, 10, 40)', 'height': 'mapData(baz, 0, 10, 10, 40)', 'content': 'data(id)' }) .selector('edge') .css({ 'line-color': '#F2B1BA', 'target-arrow-color': '#F2B1BA', 'width': 2, 'target-arrow-shape': 'circle', 'opacity': 0.8 }) .selector(':selected') .css({ 'background-color': 'black', 'line-color': 'black', 'target-arrow-color': 'black', 'source-arrow-color': 'black', 'opacity': 1 }) .selector('.faded') .css({ 'opacity': 0.25, 'text-opacity': 0 }), elements: elesJson, layout: { name: 'circle', padding: 10 }, ready: function(){ // ready 1 } }); cytoscape({ container: document.getElementById('cy2'), style: cytoscape.stylesheet() .selector('node') .css({ 'background-color': '#6272A3', 'shape': 'rectangle', 'width': 'mapData(foo, 0, 10, 10, 30)', 'height': 'mapData(bar, 0, 10, 10, 50)', 'content': 'data(id)' }) .selector('edge') .css({ 'width': 'mapData(weight, 0, 10, 3, 9)', 'line-color': '#B1C1F2', 'target-arrow-color': '#B1C1F2', 'target-arrow-shape': 'triangle', 'opacity': 0.8 }) .selector(':selected') .css({ 'background-color': 'black', 'line-color': 'black', 'target-arrow-color': 'black', 'source-arrow-color': 'black', 'opacity': 1 }), elements: elesJson, layout: { name: 'breadthfirst', directed: true, padding: 10 }, ready: function(){ // ready 2 } }); ================================================ FILE: documentation/demos/multiple-instances/index.html ================================================ Multiple instances
================================================ FILE: documentation/demos/multiple-instances/style.css ================================================ body { font: 14px helvetica neue, helvetica, arial, sans-serif; } #cy { height: 50%; width: 100%; position: absolute; left: 0; top: 0; background-color: #FAEDEF; } #cy2 { height: 50%; width: 100%; position: absolute; left: 0; top: 50%; background-color: #EDF1FA; border-top: 1px solid #ccc; } ================================================ FILE: documentation/demos/multiple-windows/code.js ================================================ var elesJson = { nodes: [ { data: { id: 'a', foo: 3, bar: 5, baz: 7 } }, { data: { id: 'b', foo: 7, bar: 1, baz: 3 } }, { data: { id: 'c', foo: 2, bar: 7, baz: 6 } }, { data: { id: 'd', foo: 9, bar: 5, baz: 2 } }, { data: { id: 'e', foo: 2, bar: 4, baz: 5 } } ], edges: [ { data: { id: 'ae', weight: 1, source: 'a', target: 'e' } }, { data: { id: 'ab', weight: 3, source: 'a', target: 'b' } }, { data: { id: 'be', weight: 4, source: 'b', target: 'e' } }, { data: { id: 'bc', weight: 5, source: 'b', target: 'c' } }, { data: { id: 'ce', weight: 6, source: 'c', target: 'e' } }, { data: { id: 'cd', weight: 2, source: 'c', target: 'd' } }, { data: { id: 'de', weight: 7, source: 'd', target: 'e' } } ] }; function createWindow() { var openWindow = window.open("./windowIndex.html", "_blank", "popup") openWindow.addEventListener("load", (event) => { var container = openWindow.document.createElement("div") container.className = "cy" openWindow.document.body.appendChild(container); cytoscape({ container: container, style: cytoscape.stylesheet() .selector('node') .css({ 'background-color': '#B3767E', 'width': 'mapData(baz, 0, 10, 10, 40)', 'height': 'mapData(baz, 0, 10, 10, 40)', 'content': 'data(id)' }) .selector('edge') .css({ 'line-color': '#F2B1BA', 'target-arrow-color': '#F2B1BA', 'width': 2, 'target-arrow-shape': 'circle', 'opacity': 0.8 }) .selector(':selected') .css({ 'background-color': 'black', 'line-color': 'black', 'target-arrow-color': 'black', 'source-arrow-color': 'black', 'opacity': 1 }) .selector('.faded') .css({ 'opacity': 0.25, 'text-opacity': 0 }), elements: elesJson, layout: { name: 'circle', padding: 10 } }); }); } ================================================ FILE: documentation/demos/multiple-windows/index.html ================================================ Multiple instances ================================================ FILE: documentation/demos/multiple-windows/style.css ================================================ body { font: 14px helvetica neue, helvetica, arial, sans-serif; } .cy { height: 100%; width: 100%; position: absolute; left: 0; top: 0; background-color: #FAEDEF; } ================================================ FILE: documentation/demos/multiple-windows/windowIndex.html ================================================ Graph windown ================================================ FILE: documentation/demos/node-types/code.js ================================================ /* global document, window, fetch, cytoscape */ (function(){ var toJson = function(res){ return res.json(); }; window.cy = cytoscape({ container: document.getElementById('cy'), layout: { name: 'grid' }, style: fetch('cy-style.json').then(toJson), elements: fetch('data.json').then(toJson) }); })(); ================================================ FILE: documentation/demos/node-types/cy-style.json ================================================ [{ "selector": "node", "style": { "shape": "data(type)", "label": "data(type)", "height": 40, "width": 40 } }, { "selector": "node[points]", "style": { "shape-polygon-points": "data(points)", "label": "polygon\n(custom points)", "text-wrap": "wrap" } }] ================================================ FILE: documentation/demos/node-types/data.json ================================================ [{ "data": { "type": "ellipse" } }, { "data": { "type": "triangle" } }, { "data": { "type": "round-triangle" } }, { "data": { "type": "rectangle" } }, { "data": { "type": "round-rectangle" } }, { "data": { "type": "bottom-round-rectangle" } }, { "data": { "type": "cut-rectangle" } }, { "data": { "type": "barrel" } }, { "data": { "type": "rhomboid" } }, { "data": { "type": "right-rhomboid" } }, { "data": { "type": "diamond" } }, { "data": { "type": "round-diamond" } }, { "data": { "type": "pentagon" } }, { "data": { "type": "round-pentagon" } }, { "data": { "type": "hexagon" } }, { "data": { "type": "round-hexagon" } }, { "data": { "type": "concave-hexagon" } }, { "data": { "type": "heptagon" } }, { "data": { "type": "round-heptagon" } }, { "data": { "type": "octagon" } }, { "data": { "type": "round-octagon" } }, { "data": { "type": "star" } }, { "data": { "type": "tag" } }, { "data": { "type": "round-tag" } }, { "data": { "type": "vee" } }, { "data": { "type": "polygon", "points": [ -0.33, -1, 0.33, -1, 0.33, -0.33, 1, -0.33, 1, 0.33, 0.33, 0.33, 0.33, 1, -0.33, 1, -0.33, 0.33, -1, 0.33, -1, -0.33, -0.33, -0.33 ] } }] ================================================ FILE: documentation/demos/node-types/index.html ================================================ Node types demo

Node types demo

================================================ FILE: documentation/demos/node-types/style.css ================================================ body { font-family: helvetica, sans-serif; font-size: 14px; } #cy { position: absolute; left: 0; top: 0; right: 0; bottom: 0; z-index: 999; } h1 { opacity: 0.5; font-size: 1em; } ================================================ FILE: documentation/demos/performance-tuning/code.js ================================================ fetch('data.json', {mode: 'no-cors'}) .then(function(res) { return res.json() }) .then(function(data) { var cy = window.cy = cytoscape({ // these options hide parts of the graph during interaction //hideEdgesOnViewport: true, //hideLabelsOnViewport: true, // this is an alternative that uses a bitmap during interaction // textureOnViewport: true, // interpolate on high density displays instead of increasing resolution // pixelRatio: 1, // a motion blur effect that increases perceived performance for little or no cost // motionBlur: true, container: document.getElementById('cy'), style: cytoscape.stylesheet() .selector('node') .css({ 'width': 'mapData(weight, 0, 100, 10, 60)', 'height': 'mapData(weight, 0, 100, 10, 60)' }) .selector('edge') .css({ 'opacity': '0.333', 'width': 'mapData(weight, 0, 100, 1, 6)', 'curve-style': 'haystack' // fast edges! }), layout: { name: 'concentric', concentric: function( ele ){ return ele.data('weight'); }, levelWidth: function( nodes ){ return 10; }, padding: 10 }, elements: data }); }); ================================================ FILE: documentation/demos/performance-tuning/data.json ================================================ [{ "data": { "id": "n100", "weight": 85 }, "position": { "x": 90.33043314702809, "y": 67.57576698437333 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n101", "weight": 4 }, "position": { "x": 98.42765405774117, "y": 220.6825779285282 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n102", "weight": 82 }, "position": { "x": 321.06718998402357, "y": 180.7057177182287 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n103", "weight": 30 }, "position": { "x": 108.49693324416876, "y": 87.04247628338635 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n104", "weight": 83 }, "position": { "x": 214.79833577759564, "y": 430.49512985162437 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n105", "weight": 68 }, "position": { "x": 0.1534801907837391, "y": 389.8338600061834 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n106", "weight": 32 }, "position": { "x": 59.115116531029344, "y": 105.56708830408752 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n107", "weight": 87 }, "position": { "x": 204.20711492188275, "y": 77.28080344386399 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n108", "weight": 65 }, "position": { "x": 169.52901701442897, "y": 97.01243871822953 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n109", "weight": 50 }, "position": { "x": 209.12356185726821, "y": 452.3987162858248 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n110", "weight": 90 }, "position": { "x": 572.3829288035631, "y": 23.45629264600575 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n111", "weight": 61 }, "position": { "x": 542.3307380173355, "y": 348.3376687858254 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n112", "weight": 66 }, "position": { "x": 340.6042782124132, "y": 161.210028687492 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n113", "weight": 69 }, "position": { "x": 139.10956643521786, "y": 384.9822324234992 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n114", "weight": 61 }, "position": { "x": 301.4122570864856, "y": 364.976091356948 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n115", "weight": 45 }, "position": { "x": 466.10930277965963, "y": 196.4656564872712 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n116", "weight": 50 }, "position": { "x": 391.45658053457737, "y": 486.1291643232107 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n117", "weight": 17 }, "position": { "x": 395.36836110055447, "y": 466.1287560593337 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n118", "weight": 94 }, "position": { "x": 532.2884104214609, "y": 48.947337130084634 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n119", "weight": 84 }, "position": { "x": 252.31536640785635, "y": 204.40462594851851 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n120", "weight": 14 }, "position": { "x": 223.92950719222426, "y": 474.75368455052376 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n121", "weight": 51 }, "position": { "x": 246.21222275309265, "y": 164.76845028810203 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n122", "weight": 11 }, "position": { "x": 292.25443764589727, "y": 219.666096707806 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n123", "weight": 96 }, "position": { "x": 105.15959691256285, "y": 502.4871682282537 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n124", "weight": 2 }, "position": { "x": 113.49955326877534, "y": 350.4616250284016 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n125", "weight": 15 }, "position": { "x": 74.92754459381104, "y": 561.9064669590443 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n126", "weight": 85 }, "position": { "x": 335.4505095630884, "y": 205.56742558255792 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n127", "weight": 59 }, "position": { "x": 470.66900110803545, "y": 131.60508018918335 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n128", "weight": 3 }, "position": { "x": 584.8771033342928, "y": 235.279501369223 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n129", "weight": 49 }, "position": { "x": 503.79035300575197, "y": 585.5802611913532 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n130", "weight": 81 }, "position": { "x": 320.3528548590839, "y": 330.3800898604095 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n131", "weight": 79 }, "position": { "x": 106.34122621268034, "y": 454.9960134085268 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n132", "weight": 76 }, "position": { "x": 356.0224901419133, "y": 500.76905423775315 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n133", "weight": 99 }, "position": { "x": 47.07307582721114, "y": 426.30294039845467 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n134", "weight": 90 }, "position": { "x": 278.48645970225334, "y": 308.42104805633426 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n135", "weight": 87 }, "position": { "x": 478.2062569633126, "y": 461.78252189420164 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n136", "weight": 54 }, "position": { "x": 561.2581222783774, "y": 100.75575644150376 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n137", "weight": 72 }, "position": { "x": 333.68167472071946, "y": 128.47767337225378 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n138", "weight": 89 }, "position": { "x": 218.66086623631418, "y": 238.96430251188576 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n139", "weight": 68 }, "position": { "x": 160.00981614924967, "y": 116.9446833897382 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n140", "weight": 49 }, "position": { "x": 513.204005593434, "y": 364.8408940527588 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n141", "weight": 37 }, "position": { "x": 580.0663413014263, "y": 494.71818250603974 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n142", "weight": 80 }, "position": { "x": 415.5682407785207, "y": 189.13678731769323 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n143", "weight": 14 }, "position": { "x": 590.9442293923348, "y": 1.4251688495278358 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n144", "weight": 49 }, "position": { "x": 584.0626515448093, "y": 422.9631965048611 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n145", "weight": 38 }, "position": { "x": 140.35236448980868, "y": 284.66315497644246 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n146", "weight": 26 }, "position": { "x": 27.575604245066643, "y": 366.0795462783426 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n147", "weight": 78 }, "position": { "x": 106.3865183852613, "y": 91.15662574768066 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n148", "weight": 2 }, "position": { "x": 169.66973142698407, "y": 101.47915994748473 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n149", "weight": 56 }, "position": { "x": 129.32269633747637, "y": 326.24467886053026 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n150", "weight": 67 }, "position": { "x": 219.46371300145984, "y": 523.9080654457211 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n151", "weight": 52 }, "position": { "x": 424.42846703343093, "y": 516.3750871550292 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n152", "weight": 14 }, "position": { "x": 423.8913963083178, "y": 350.2634074073285 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n153", "weight": 44 }, "position": { "x": 559.9552754312754, "y": 328.2787919975817 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n154", "weight": 77 }, "position": { "x": 392.8202345967293, "y": 258.2595158368349 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n155", "weight": 25 }, "position": { "x": 81.48890258744359, "y": 360.4895803146064 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n156", "weight": 73 }, "position": { "x": 339.8625774309039, "y": 421.0641507524997 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n157", "weight": 55 }, "position": { "x": 198.45681726001203, "y": 562.7952589653432 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n158", "weight": 95 }, "position": { "x": 285.48212475143373, "y": 330.5020797997713 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n159", "weight": 39 }, "position": { "x": 236.22534899041057, "y": 193.89875954948366 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n160", "weight": 4 }, "position": { "x": 87.05817991867661, "y": 208.52372185327113 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n161", "weight": 53 }, "position": { "x": 462.3160452581942, "y": 549.9373823404312 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n162", "weight": 33 }, "position": { "x": 477.9633062426001, "y": 221.55817109160125 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n163", "weight": 76 }, "position": { "x": 295.897844620049, "y": 311.88751235604286 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n164", "weight": 55 }, "position": { "x": 578.9040209725499, "y": 278.7616171874106 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n165", "weight": 90 }, "position": { "x": 202.0694233942777, "y": 102.92368805967271 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n166", "weight": 63 }, "position": { "x": 144.01451353915036, "y": 45.191367622464895 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n167", "weight": 34 }, "position": { "x": 324.70673653297126, "y": 517.1742517501116 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n168", "weight": 63 }, "position": { "x": 219.2856808193028, "y": 171.69807222671807 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n169", "weight": 16 }, "position": { "x": 411.37628741562366, "y": 262.81011840328574 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n170", "weight": 83 }, "position": { "x": 574.4048490654677, "y": 383.9300884399563 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n171", "weight": 75 }, "position": { "x": 492.0482608024031, "y": 190.13710697181523 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n172", "weight": 84 }, "position": { "x": 404.6564769465476, "y": 582.2107453364879 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n173", "weight": 15 }, "position": { "x": 482.64799090102315, "y": 47.35475038178265 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n174", "weight": 30 }, "position": { "x": 504.798881476745, "y": 356.85132751241326 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n175", "weight": 95 }, "position": { "x": 453.2366991508752, "y": 264.1326951328665 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n176", "weight": 28 }, "position": { "x": 573.430000199005, "y": 391.25027912668884 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n177", "weight": 52 }, "position": { "x": 69.87873064354062, "y": 78.01776565611362 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n178", "weight": 89 }, "position": { "x": 285.06672782823443, "y": 424.6619902085513 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n179", "weight": 10 }, "position": { "x": 384.3593546189368, "y": 366.18679161183536 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n180", "weight": 30 }, "position": { "x": 153.86937665753067, "y": 597.7610690519214 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n181", "weight": 76 }, "position": { "x": 146.6712644789368, "y": 581.9573717191815 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n182", "weight": 51 }, "position": { "x": 289.3993944860995, "y": 457.8967762179673 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n183", "weight": 23 }, "position": { "x": 381.1925686430186, "y": 104.53879027627409 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n184", "weight": 79 }, "position": { "x": 70.92004786245525, "y": 593.5529066249728 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n185", "weight": 46 }, "position": { "x": 441.0139094106853, "y": 44.29747466929257 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n186", "weight": 15 }, "position": { "x": 343.96853065118194, "y": 273.16679530777037 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n187", "weight": 43 }, "position": { "x": 578.5368898417801, "y": 166.29430814646184 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n188", "weight": 55 }, "position": { "x": 524.8361233156174, "y": 5.126005690544844 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n189", "weight": 11 }, "position": { "x": 479.25988007336855, "y": 373.1290340423584 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n190", "weight": 69 }, "position": { "x": 503.84903820231557, "y": 423.0759831145406 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n191", "weight": 96 }, "position": { "x": 236.79103860631585, "y": 293.9158034976572 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n192", "weight": 19 }, "position": { "x": 386.516071530059, "y": 96.09635747037828 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n193", "weight": 71 }, "position": { "x": 594.2300209309906, "y": 156.85805319808424 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n194", "weight": 37 }, "position": { "x": 265.7954702619463, "y": 382.254497660324 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n195", "weight": 58 }, "position": { "x": 373.6815767828375, "y": 213.85454200208187 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n196", "weight": 94 }, "position": { "x": 307.3433701414615, "y": 227.49342718161643 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n197", "weight": 36 }, "position": { "x": 118.79931287840009, "y": 70.86892942897975 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n198", "weight": 15 }, "position": { "x": 198.16299956291914, "y": 543.4780555777252 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n199", "weight": 63 }, "position": { "x": 80.52623723633587, "y": 259.47743305005133 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n200", "weight": 18 }, "position": { "x": 216.5688722860068, "y": 377.76427790522575 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n201", "weight": 65 }, "position": { "x": 41.60450119525194, "y": 94.36757722869515 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n202", "weight": 86 }, "position": { "x": 1.9039691425859928, "y": 573.2652875594795 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n203", "weight": 56 }, "position": { "x": 179.61548874154687, "y": 72.89273156784475 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n204", "weight": 80 }, "position": { "x": 166.72506197355688, "y": 363.27256648801267 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n205", "weight": 53 }, "position": { "x": 398.8362700212747, "y": 330.6138401851058 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n206", "weight": 79 }, "position": { "x": 163.6723622214049, "y": 453.15604442730546 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n207", "weight": 74 }, "position": { "x": 491.53402405790985, "y": 421.03350246325135 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n208", "weight": 78 }, "position": { "x": 224.00820991024375, "y": 120.36814489401877 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n209", "weight": 80 }, "position": { "x": 559.7439226694405, "y": 573.6626119818538 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n210", "weight": 8 }, "position": { "x": 576.7849819734693, "y": 555.6595641653985 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n211", "weight": 65 }, "position": { "x": 264.068282302469, "y": 177.7811656706035 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n212", "weight": 32 }, "position": { "x": 388.28191766515374, "y": 6.001782696694136 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n213", "weight": 81 }, "position": { "x": 122.07651366479695, "y": 37.87309303879738 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n214", "weight": 27 }, "position": { "x": 406.4874740783125, "y": 345.66657627001405 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n215", "weight": 46 }, "position": { "x": 77.54629645496607, "y": 460.1615925785154 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n216", "weight": 0 }, "position": { "x": 530.6841961573809, "y": 447.75649937801063 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n217", "weight": 41 }, "position": { "x": 455.411554640159, "y": 388.84648606181145 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n218", "weight": 42 }, "position": { "x": 347.3788436036557, "y": 318.0372457019985 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n219", "weight": 94 }, "position": { "x": 235.49277749843895, "y": 102.27953810244799 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n220", "weight": 85 }, "position": { "x": 453.6736117210239, "y": 477.33479174785316 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n221", "weight": 25 }, "position": { "x": 450.38696830160916, "y": 318.1883592624217 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n222", "weight": 45 }, "position": { "x": 141.07193970121443, "y": 146.61325947381556 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n223", "weight": 15 }, "position": { "x": 174.088148586452, "y": 526.5512344893068 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n224", "weight": 8 }, "position": { "x": 252.27090599946678, "y": 440.36303451284766 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n225", "weight": 27 }, "position": { "x": 218.6304895207286, "y": 232.61667774058878 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n226", "weight": 18 }, "position": { "x": 536.5457448642701, "y": 313.1064482498914 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n227", "weight": 75 }, "position": { "x": 350.19698878750205, "y": 132.25818271748722 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n228", "weight": 5 }, "position": { "x": 146.9585034996271, "y": 249.71661935560405 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n229", "weight": 99 }, "position": { "x": 344.7729224804789, "y": 134.61690112017095 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n230", "weight": 71 }, "position": { "x": 565.339429769665, "y": 342.06193280406296 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n231", "weight": 68 }, "position": { "x": 278.35871796123683, "y": 329.92539019323885 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n232", "weight": 83 }, "position": { "x": 89.06870931386948, "y": 377.20367345027626 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n233", "weight": 58 }, "position": { "x": 331.41367114149034, "y": 184.49962036684155 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n234", "weight": 1 }, "position": { "x": 323.3668137341738, "y": 37.14247425086796 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n235", "weight": 6 }, "position": { "x": 4.0590529795736074, "y": 321.3873346801847 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n236", "weight": 83 }, "position": { "x": 44.44442801177502, "y": 386.1872028093785 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n237", "weight": 9 }, "position": { "x": 525.2906925044954, "y": 326.10848075710237 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n238", "weight": 67 }, "position": { "x": 287.21686745993793, "y": 102.08921665325761 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n239", "weight": 2 }, "position": { "x": 594.1282830666751, "y": 0.2985016442835331 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n240", "weight": 20 }, "position": { "x": 229.901380604133, "y": 360.6548611074686 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n241", "weight": 81 }, "position": { "x": 551.3821288011968, "y": 236.22512044385076 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n242", "weight": 47 }, "position": { "x": 35.12806151993573, "y": 419.48916418477893 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n243", "weight": 45 }, "position": { "x": 279.3454442638904, "y": 191.42089490778744 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n244", "weight": 78 }, "position": { "x": 126.08716827817261, "y": 107.5707568321377 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n245", "weight": 96 }, "position": { "x": 486.1858930438757, "y": 557.7284775674343 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n246", "weight": 62 }, "position": { "x": 283.3541798405349, "y": 294.93617811240256 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n247", "weight": 16 }, "position": { "x": 164.0759410802275, "y": 508.67012813687325 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n248", "weight": 53 }, "position": { "x": 254.4427269604057, "y": 564.7928374819458 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n249", "weight": 76 }, "position": { "x": 354.9224649555981, "y": 58.704172912985086 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n250", "weight": 98 }, "position": { "x": 36.62789887748659, "y": 341.77835122682154 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n251", "weight": 79 }, "position": { "x": 267.6840936765075, "y": 283.28993772156537 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n252", "weight": 49 }, "position": { "x": 51.35215907357633, "y": 36.11523541621864 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n253", "weight": 71 }, "position": { "x": 14.794144872575998, "y": 298.28686863183975 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n254", "weight": 9 }, "position": { "x": 502.17341794632375, "y": 307.7050512190908 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n255", "weight": 22 }, "position": { "x": 108.40782062150538, "y": 369.453219557181 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n256", "weight": 71 }, "position": { "x": 330.12815611436963, "y": 16.751331835985184 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n257", "weight": 12 }, "position": { "x": 399.40727879293263, "y": 434.78811839595437 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n258", "weight": 53 }, "position": { "x": 169.6179156191647, "y": 383.14193207770586 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n259", "weight": 58 }, "position": { "x": 557.4684876948595, "y": 447.35698783770204 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n260", "weight": 43 }, "position": { "x": 302.4229642935097, "y": 137.4628986697644 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n261", "weight": 40 }, "position": { "x": 101.32125620730221, "y": 346.0831431671977 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n262", "weight": 87 }, "position": { "x": 247.2834711894393, "y": 597.1894489601254 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n263", "weight": 52 }, "position": { "x": 423.6519788391888, "y": 263.28780809417367 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n264", "weight": 61 }, "position": { "x": 297.20516516827047, "y": 210.5302961077541 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n265", "weight": 69 }, "position": { "x": 547.5035823415965, "y": 82.98676866106689 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n266", "weight": 51 }, "position": { "x": 91.79067160002887, "y": 211.44069749861956 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n267", "weight": 20 }, "position": { "x": 281.0389116872102, "y": 499.7632313054055 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n268", "weight": 29 }, "position": { "x": 561.6009027231485, "y": 248.5825354233384 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n269", "weight": 61 }, "position": { "x": 586.6755412425846, "y": 121.09073507599533 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n270", "weight": 100 }, "position": { "x": 273.0122119188309, "y": 483.1466843839735 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n271", "weight": 22 }, "position": { "x": 484.7905468661338, "y": 205.05071519874036 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n272", "weight": 4 }, "position": { "x": 463.6098769493401, "y": 56.56095910817385 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n273", "weight": 51 }, "position": { "x": 75.90210805647075, "y": 355.2258173469454 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n274", "weight": 40 }, "position": { "x": 549.5471214875579, "y": 308.0871212761849 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n275", "weight": 96 }, "position": { "x": 210.29105382040143, "y": 343.1205519475043 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n276", "weight": 58 }, "position": { "x": 355.0320034381002, "y": 235.71562157012522 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n277", "weight": 76 }, "position": { "x": 353.5466578323394, "y": 164.93011442944407 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n278", "weight": 90 }, "position": { "x": 49.62154375389218, "y": 117.96984057873487 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n279", "weight": 67 }, "position": { "x": 392.9160801228136, "y": 114.48836387135088 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n280", "weight": 87 }, "position": { "x": 251.26904100179672, "y": 338.73993647284806 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n281", "weight": 32 }, "position": { "x": 176.87427741475403, "y": 412.4234817456454 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n282", "weight": 26 }, "position": { "x": 54.06838492490351, "y": 316.45375904627144 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n283", "weight": 57 }, "position": { "x": 365.84735666401684, "y": 576.3143265154213 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n284", "weight": 57 }, "position": { "x": 332.45477993041277, "y": 487.0458672288805 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n285", "weight": 3 }, "position": { "x": 263.189608650282, "y": 213.88759589754045 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n286", "weight": 1 }, "position": { "x": 37.82060737721622, "y": 493.6703465413302 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n287", "weight": 48 }, "position": { "x": 87.2565558180213, "y": 194.84621845185757 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n288", "weight": 97 }, "position": { "x": 444.29547493346035, "y": 20.58343207463622 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n289", "weight": 0 }, "position": { "x": 274.719310272485, "y": 233.53207209147513 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n290", "weight": 9 }, "position": { "x": 570.9396382793784, "y": 455.2213198039681 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n291", "weight": 94 }, "position": { "x": 227.1610158495605, "y": 264.5369135309011 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n292", "weight": 44 }, "position": { "x": 586.1974890343845, "y": 394.1160269547254 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n293", "weight": 80 }, "position": { "x": 230.90849798172712, "y": 264.13698024116457 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n294", "weight": 18 }, "position": { "x": 23.64060007967055, "y": 583.2688798662275 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n295", "weight": 32 }, "position": { "x": 198.47624455578625, "y": 259.7873642574996 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n296", "weight": 72 }, "position": { "x": 82.27326138876379, "y": 426.97911257855594 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n297", "weight": 55 }, "position": { "x": 320.8143993280828, "y": 251.3568101450801 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n298", "weight": 98 }, "position": { "x": 411.4604196511209, "y": 104.74706827662885 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n299", "weight": 21 }, "position": { "x": 2.2927656769752502, "y": 459.53824929893017 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n300", "weight": 1 }, "position": { "x": 203.0403182376176, "y": 287.0727425906807 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n301", "weight": 62 }, "position": { "x": 428.10819880105555, "y": 585.0957113318145 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n302", "weight": 27 }, "position": { "x": 321.205703727901, "y": 199.41455824300647 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n303", "weight": 21 }, "position": { "x": 325.81824311055243, "y": 505.359503114596 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n304", "weight": 67 }, "position": { "x": 383.7785264477134, "y": 555.1064840052277 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n305", "weight": 83 }, "position": { "x": 370.68395046517253, "y": 150.29577487148345 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n306", "weight": 34 }, "position": { "x": 183.93819951452315, "y": 400.37484811618924 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n307", "weight": 33 }, "position": { "x": 74.90068855695426, "y": 90.20321052521467 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n308", "weight": 1 }, "position": { "x": 162.8979479894042, "y": 501.6334820073098 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n309", "weight": 11 }, "position": { "x": 103.90125601552427, "y": 74.82387581840158 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n310", "weight": 60 }, "position": { "x": 235.97033908590674, "y": 343.4303278103471 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n311", "weight": 7 }, "position": { "x": 523.7264455296099, "y": 515.7036676537246 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n312", "weight": 83 }, "position": { "x": 388.0257232580334, "y": 206.91977413371205 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n313", "weight": 88 }, "position": { "x": 314.4999931566417, "y": 73.81074707955122 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n314", "weight": 2 }, "position": { "x": 276.4218495693058, "y": 153.87900257483125 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n315", "weight": 32 }, "position": { "x": 344.16221086867154, "y": 214.15911647491157 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n316", "weight": 13 }, "position": { "x": 85.35173241980374, "y": 139.10133163444698 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n317", "weight": 21 }, "position": { "x": 361.93333407863975, "y": 313.93394032493234 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n318", "weight": 76 }, "position": { "x": 85.17354824580252, "y": 66.00535442121327 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n319", "weight": 8 }, "position": { "x": 172.61339966207743, "y": 413.16469539888203 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n320", "weight": 84 }, "position": { "x": 391.3201557006687, "y": 434.4924826640636 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n321", "weight": 60 }, "position": { "x": 208.58723181299865, "y": 367.39002163521945 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n322", "weight": 74 }, "position": { "x": 560.7792001683265, "y": 435.04529977217317 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n323", "weight": 41 }, "position": { "x": 151.9590221811086, "y": 452.68567632883787 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n324", "weight": 52 }, "position": { "x": 550.6620808504522, "y": 169.9773488100618 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n325", "weight": 90 }, "position": { "x": 181.64402120746672, "y": 69.62914257310331 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n326", "weight": 54 }, "position": { "x": 590.2680426836014, "y": 456.44897357560694 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n327", "weight": 32 }, "position": { "x": 403.76407695002854, "y": 299.3442694656551 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n328", "weight": 61 }, "position": { "x": 469.6005371399224, "y": 362.2612814884633 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n329", "weight": 72 }, "position": { "x": 167.33868489973247, "y": 158.65837368182838 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n330", "weight": 82 }, "position": { "x": 188.01739267073572, "y": 92.5458007492125 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n331", "weight": 44 }, "position": { "x": 344.79003455489874, "y": 377.19480148516595 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n332", "weight": 42 }, "position": { "x": 50.56390059180558, "y": 470.1460654847324 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n333", "weight": 19 }, "position": { "x": 146.86675630509853, "y": 399.164707493037 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n334", "weight": 51 }, "position": { "x": 97.29795372113585, "y": 121.87337279319763 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n335", "weight": 47 }, "position": { "x": 279.94677079841495, "y": 436.70663041993976 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n336", "weight": 3 }, "position": { "x": 33.88970335945487, "y": 560.9082159586251 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n337", "weight": 44 }, "position": { "x": 401.25065026804805, "y": 81.04985151439905 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n338", "weight": 34 }, "position": { "x": 144.03152992017567, "y": 330.1871888805181 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n339", "weight": 85 }, "position": { "x": 587.7932846546173, "y": 171.44769877195358 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n340", "weight": 53 }, "position": { "x": 224.6344394981861, "y": 221.66647561825812 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n341", "weight": 71 }, "position": { "x": 478.8083899766207, "y": 76.45952068269253 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n342", "weight": 68 }, "position": { "x": 445.7306833472103, "y": 437.3939485754818 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n343", "weight": 2 }, "position": { "x": 574.6429829858243, "y": 397.54432551562786 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n344", "weight": 36 }, "position": { "x": 502.19906447455287, "y": 254.48716138489544 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n345", "weight": 42 }, "position": { "x": 128.54694365523756, "y": 482.5948365032673 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n346", "weight": 42 }, "position": { "x": 52.39794719964266, "y": 496.0544635076076 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n347", "weight": 26 }, "position": { "x": 263.709904672578, "y": 188.57107213698328 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n348", "weight": 78 }, "position": { "x": 379.40831361338496, "y": 573.8179944455624 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n349", "weight": 74 }, "position": { "x": 468.6891737859696, "y": 21.503586787730455 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n350", "weight": 90 }, "position": { "x": 270.084655797109, "y": 332.11848763749003 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n351", "weight": 74 }, "position": { "x": 280.581995844841, "y": 192.49232355505228 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n352", "weight": 40 }, "position": { "x": 451.24646835029125, "y": 469.2572794854641 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n353", "weight": 33 }, "position": { "x": 450.51363785751164, "y": 273.06101680733263 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n354", "weight": 13 }, "position": { "x": 221.0912374779582, "y": 212.208443088457 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n355", "weight": 68 }, "position": { "x": 78.41773903928697, "y": 189.8753295186907 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n356", "weight": 56 }, "position": { "x": 498.466983390972, "y": 433.1919754855335 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n357", "weight": 6 }, "position": { "x": 298.0353222694248, "y": 341.9356546830386 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n358", "weight": 65 }, "position": { "x": 169.97237959876657, "y": 327.9325945302844 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n359", "weight": 99 }, "position": { "x": 17.913294956088066, "y": 393.59430936165154 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n360", "weight": 65 }, "position": { "x": 437.7125504426658, "y": 281.7633855622262 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n361", "weight": 29 }, "position": { "x": 254.43465756252408, "y": 524.1072296630591 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n362", "weight": 67 }, "position": { "x": 309.9179425276816, "y": 391.5778733789921 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n363", "weight": 44 }, "position": { "x": 415.4831925407052, "y": 256.7931749392301 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n364", "weight": 64 }, "position": { "x": 481.435064971447, "y": 79.18947148136795 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n365", "weight": 77 }, "position": { "x": 378.4668935928494, "y": 141.26601512543857 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n366", "weight": 43 }, "position": { "x": 241.06620945967734, "y": 330.81271941773593 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n367", "weight": 85 }, "position": { "x": 231.56112455762923, "y": 150.6434611044824 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n368", "weight": 88 }, "position": { "x": 578.2929664012045, "y": 91.61536311730742 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n369", "weight": 18 }, "position": { "x": 571.3643203955144, "y": 533.5413479246199 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n370", "weight": 0 }, "position": { "x": 260.3546693455428, "y": 549.0667614620179 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n371", "weight": 75 }, "position": { "x": 399.73650206811726, "y": 561.5799095481634 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n372", "weight": 96 }, "position": { "x": 328.32744154147804, "y": 269.5445240009576 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n373", "weight": 1 }, "position": { "x": 439.46636714972556, "y": 495.1820442918688 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n374", "weight": 95 }, "position": { "x": 78.13481991179287, "y": 448.5792915802449 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n375", "weight": 29 }, "position": { "x": 211.34792282246053, "y": 270.36462100222707 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n376", "weight": 5 }, "position": { "x": 375.97033493220806, "y": 548.4936970286071 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n377", "weight": 51 }, "position": { "x": 367.67410207539797, "y": 257.8637811820954 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n378", "weight": 24 }, "position": { "x": 468.88834345154464, "y": 19.092932576313615 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n379", "weight": 57 }, "position": { "x": 438.1561366841197, "y": 65.7839774619788 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n380", "weight": 55 }, "position": { "x": 531.4863325562328, "y": 261.8790186010301 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n381", "weight": 72 }, "position": { "x": 72.34304691664875, "y": 113.55564300902188 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n382", "weight": 29 }, "position": { "x": 323.2959698885679, "y": 544.5524888578802 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n383", "weight": 31 }, "position": { "x": 407.12081738747656, "y": 496.0019022691995 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n384", "weight": 75 }, "position": { "x": 530.4194288793951, "y": 521.4414929039776 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n385", "weight": 66 }, "position": { "x": 52.11588987149298, "y": 149.4781049899757 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n386", "weight": 10 }, "position": { "x": 488.3941712323576, "y": 532.1822874248028 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n387", "weight": 70 }, "position": { "x": 301.97879411280155, "y": 552.6510247495025 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n388", "weight": 6 }, "position": { "x": 560.0807379931211, "y": 40.10806088335812 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n389", "weight": 51 }, "position": { "x": 170.82007653079927, "y": 262.379944184795 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n390", "weight": 61 }, "position": { "x": 435.2980170864612, "y": 77.94731575995684 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n391", "weight": 83 }, "position": { "x": 551.8036710564047, "y": 134.26104099489748 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n392", "weight": 93 }, "position": { "x": 566.6545329149812, "y": 302.29840013198555 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n393", "weight": 75 }, "position": { "x": 189.7926629986614, "y": 136.23066083528101 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n394", "weight": 99 }, "position": { "x": 441.58526700921357, "y": 304.36974512413144 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n395", "weight": 70 }, "position": { "x": 350.05031442269683, "y": 448.5143923200667 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n396", "weight": 46 }, "position": { "x": 392.84160886891186, "y": 542.0052716508508 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n397", "weight": 83 }, "position": { "x": 366.41380707733333, "y": 192.36716022714972 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n398", "weight": 54 }, "position": { "x": 193.1806169450283, "y": 200.02417084760964 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n399", "weight": 55 }, "position": { "x": 596.4595500379801, "y": 149.8615823686123 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n400", "weight": 7 }, "position": { "x": 589.6882759407163, "y": 470.34330954775214 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n401", "weight": 57 }, "position": { "x": 69.21488642692566, "y": 40.465323720127344 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n402", "weight": 15 }, "position": { "x": 77.48588933609426, "y": 437.6569563522935 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n403", "weight": 65 }, "position": { "x": 299.72644122317433, "y": 190.3524833265692 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n404", "weight": 17 }, "position": { "x": 247.8893369436264, "y": 288.5517593007535 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n405", "weight": 81 }, "position": { "x": 123.17275512032211, "y": 145.3075383324176 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n406", "weight": 27 }, "position": { "x": 437.83495891839266, "y": 161.12771295011044 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n407", "weight": 22 }, "position": { "x": 176.95819297805429, "y": 102.00427751988173 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n408", "weight": 46 }, "position": { "x": 99.21304523013532, "y": 277.9107045382261 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n409", "weight": 74 }, "position": { "x": 486.469803750515, "y": 307.73613075725734 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n410", "weight": 5 }, "position": { "x": 448.60689654015005, "y": 62.90093902498484 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n411", "weight": 73 }, "position": { "x": 509.611536283046, "y": 225.1094110775739 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n412", "weight": 68 }, "position": { "x": 153.98038811981678, "y": 269.30996594019234 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n413", "weight": 68 }, "position": { "x": 313.7831470929086, "y": 190.89593687094748 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n414", "weight": 62 }, "position": { "x": 418.314738990739, "y": 548.6303720623255 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n415", "weight": 71 }, "position": { "x": 311.6903187241405, "y": 286.95206749252975 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n416", "weight": 4 }, "position": { "x": 8.546166820451617, "y": 92.6282873377204 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n417", "weight": 86 }, "position": { "x": 34.695134684443474, "y": 422.841076226905 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n418", "weight": 50 }, "position": { "x": 542.7848670165986, "y": 293.48909365944564 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n419", "weight": 23 }, "position": { "x": 261.2182666081935, "y": 279.7205707523972 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n420", "weight": 75 }, "position": { "x": 201.13879437558353, "y": 413.8258976396173 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n421", "weight": 93 }, "position": { "x": 134.97788426466286, "y": 575.8902055677027 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n422", "weight": 64 }, "position": { "x": 314.11995026282966, "y": 375.0148736871779 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n423", "weight": 5 }, "position": { "x": 585.903373779729, "y": 375.08573681116104 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n424", "weight": 41 }, "position": { "x": 232.5741277076304, "y": 45.43566154316068 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n425", "weight": 63 }, "position": { "x": 110.34774337895215, "y": 336.78315337747335 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n426", "weight": 59 }, "position": { "x": 392.88143003359437, "y": 198.93624857068062 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n427", "weight": 75 }, "position": { "x": 543.5328633058816, "y": 253.49998245947063 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n428", "weight": 33 }, "position": { "x": 504.72893505357206, "y": 222.86768993362784 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n429", "weight": 64 }, "position": { "x": 201.6115665435791, "y": 95.70716824382544 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n430", "weight": 64 }, "position": { "x": 94.80290925130248, "y": 239.57240637391806 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n431", "weight": 3 }, "position": { "x": 77.03740764409304, "y": 18.992813117802143 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n432", "weight": 32 }, "position": { "x": 489.31782580912113, "y": 64.7117470856756 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n433", "weight": 95 }, "position": { "x": 208.04959922097623, "y": 155.5944750085473 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n434", "weight": 71 }, "position": { "x": 201.31729482673109, "y": 153.0753301922232 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n435", "weight": 75 }, "position": { "x": 273.84492619894445, "y": 65.5470116995275 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n436", "weight": 23 }, "position": { "x": 597.8701799176633, "y": 58.43176385387778 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n437", "weight": 73 }, "position": { "x": 378.52635411545634, "y": 105.70862358435988 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n438", "weight": 48 }, "position": { "x": 546.5859347954392, "y": 117.34278537333012 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n439", "weight": 66 }, "position": { "x": 134.28703495301306, "y": 416.16734764538705 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n440", "weight": 28 }, "position": { "x": 176.76157769747078, "y": 198.02104867994785 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n441", "weight": 76 }, "position": { "x": 516.6742395143956, "y": 214.8561988491565 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n442", "weight": 68 }, "position": { "x": 59.34607372619212, "y": 315.1990385726094 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n443", "weight": 38 }, "position": { "x": 353.12371007166803, "y": 204.36032102443278 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n444", "weight": 79 }, "position": { "x": 372.6827164180577, "y": 14.626735635101795 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n445", "weight": 45 }, "position": { "x": 14.799732528626919, "y": 423.7117718439549 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n446", "weight": 97 }, "position": { "x": 13.342886231839657, "y": 310.88785333558917 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n447", "weight": 3 }, "position": { "x": 195.03652802668512, "y": 475.36503318697214 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n448", "weight": 18 }, "position": { "x": 347.33639918267727, "y": 42.15446971356869 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n449", "weight": 87 }, "position": { "x": 117.34659564681351, "y": 556.1447284184396 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n450", "weight": 21 }, "position": { "x": 236.78468386642635, "y": 167.81869302503765 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n451", "weight": 95 }, "position": { "x": 141.46402878686786, "y": 223.54720328003168 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n452", "weight": 11 }, "position": { "x": 527.4711422156543, "y": 545.1874273829162 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n453", "weight": 93 }, "position": { "x": 470.1397026423365, "y": 85.21981704980135 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n454", "weight": 51 }, "position": { "x": 371.89984819851816, "y": 147.69446421414614 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n455", "weight": 16 }, "position": { "x": 190.03028101287782, "y": 187.3670881614089 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n456", "weight": 22 }, "position": { "x": 437.6111527439207, "y": 170.0493142940104 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n457", "weight": 80 }, "position": { "x": 570.0284115504473, "y": 212.05341867171228 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n458", "weight": 10 }, "position": { "x": 42.804437689483166, "y": 318.3293762616813 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n459", "weight": 73 }, "position": { "x": 220.09229301474988, "y": 509.2823916580528 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n460", "weight": 24 }, "position": { "x": 378.6620638333261, "y": 565.0329106952995 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n461", "weight": 7 }, "position": { "x": 22.190969763323665, "y": 365.63807409256697 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n462", "weight": 40 }, "position": { "x": 560.1874120999128, "y": 303.7075012922287 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n463", "weight": 41 }, "position": { "x": 283.24403199367225, "y": 51.90058937296271 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n464", "weight": 51 }, "position": { "x": 529.1280582547188, "y": 291.9542397838086 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n465", "weight": 66 }, "position": { "x": 50.966361025348306, "y": 70.51188759505749 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n466", "weight": 25 }, "position": { "x": 178.7908441387117, "y": 564.5001844502985 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n467", "weight": 80 }, "position": { "x": 502.2005322854966, "y": 329.3981306254864 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n468", "weight": 4 }, "position": { "x": 503.8512352388352, "y": 313.99600566364825 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n469", "weight": 78 }, "position": { "x": 513.8943783938885, "y": 359.6838206984103 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n470", "weight": 39 }, "position": { "x": 570.4396644607186, "y": 472.1610968001187 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n471", "weight": 77 }, "position": { "x": 288.24336882680655, "y": 255.43125313706696 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n472", "weight": 4 }, "position": { "x": 41.38952773064375, "y": 177.08623283542693 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n473", "weight": 3 }, "position": { "x": 357.5251318048686, "y": 215.20941867493093 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n474", "weight": 20 }, "position": { "x": 404.18885755352676, "y": 342.6614164374769 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n475", "weight": 73 }, "position": { "x": 380.08559541776776, "y": 345.1548254583031 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n476", "weight": 84 }, "position": { "x": 511.32884602993727, "y": 327.1337509620935 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n477", "weight": 89 }, "position": { "x": 110.31984086148441, "y": 478.50128025747836 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n478", "weight": 78 }, "position": { "x": 280.26376250199974, "y": 343.9414984546602 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n479", "weight": 71 }, "position": { "x": 65.34113874658942, "y": 530.3018074482679 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n480", "weight": 34 }, "position": { "x": 445.88241395540535, "y": 225.1662549097091 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n481", "weight": 60 }, "position": { "x": 418.4152304660529, "y": 585.1751471869648 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n482", "weight": 50 }, "position": { "x": 521.0376835428178, "y": 170.1701965648681 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n483", "weight": 74 }, "position": { "x": 430.2790614310652, "y": 54.73813181743026 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n484", "weight": 1 }, "position": { "x": 249.73218594677746, "y": 288.42918793670833 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n485", "weight": 18 }, "position": { "x": 295.2190166339278, "y": 435.6400662101805 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n486", "weight": 41 }, "position": { "x": 457.76993008330464, "y": 184.59772411733866 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n487", "weight": 86 }, "position": { "x": 561.4439405500889, "y": 500.1027401536703 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n488", "weight": 74 }, "position": { "x": 106.42701219767332, "y": 152.04588398337364 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n489", "weight": 48 }, "position": { "x": 270.1066286768764, "y": 596.6087442822754 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n490", "weight": 68 }, "position": { "x": 479.95162694714963, "y": 583.760259160772 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n491", "weight": 59 }, "position": { "x": 211.19401906616986, "y": 43.80224151536822 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n492", "weight": 99 }, "position": { "x": 527.3923243861645, "y": 554.6773872803897 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n493", "weight": 79 }, "position": { "x": 375.0200387556106, "y": 241.44754316657782 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n494", "weight": 32 }, "position": { "x": 2.877640211954713, "y": 383.437019912526 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n495", "weight": 42 }, "position": { "x": 243.58428055420518, "y": 135.9404937364161 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n496", "weight": 9 }, "position": { "x": 63.04837209172547, "y": 3.6527671851217747 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n497", "weight": 0 }, "position": { "x": 449.9779338017106, "y": 548.3183621428907 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n498", "weight": 97 }, "position": { "x": 69.9028892442584, "y": 54.28929445333779 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n499", "weight": 18 }, "position": { "x": 515.765041904524, "y": 355.0030928570777 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n500", "weight": 63 }, "position": { "x": 200.2212225459516, "y": 465.46294586732984 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n501", "weight": 50 }, "position": { "x": 368.33887277171016, "y": 468.0022079497576 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n502", "weight": 9 }, "position": { "x": 485.2716538589448, "y": 482.54807526245713 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n503", "weight": 19 }, "position": { "x": 293.0223926436156, "y": 486.9422192685306 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n504", "weight": 94 }, "position": { "x": 84.18722916394472, "y": 28.523667063564062 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n505", "weight": 58 }, "position": { "x": 443.7302474398166, "y": 549.6572130359709 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n506", "weight": 95 }, "position": { "x": 320.6657609436661, "y": 42.83737577497959 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n507", "weight": 49 }, "position": { "x": 577.1861630491912, "y": 184.04224226251245 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n508", "weight": 19 }, "position": { "x": 73.44335541129112, "y": 298.67447395808995 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n509", "weight": 10 }, "position": { "x": 354.9617439508438, "y": 185.26204344816506 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n510", "weight": 17 }, "position": { "x": 96.82054873555899, "y": 365.0560678448528 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n511", "weight": 59 }, "position": { "x": 6.90379268489778, "y": 238.3642964065075 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n512", "weight": 18 }, "position": { "x": 327.83971675671637, "y": 105.1881923340261 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n513", "weight": 56 }, "position": { "x": 213.61562521196902, "y": 404.4943308457732 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n514", "weight": 82 }, "position": { "x": 539.6121350582689, "y": 63.215225748717785 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n515", "weight": 25 }, "position": { "x": 593.9885756000876, "y": 529.5634866692126 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n516", "weight": 1 }, "position": { "x": 598.7911953125149, "y": 550.7361543830484 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n517", "weight": 93 }, "position": { "x": 21.335125481709838, "y": 550.8506809361279 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n518", "weight": 0 }, "position": { "x": 11.064845463261008, "y": 492.3089994583279 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n519", "weight": 20 }, "position": { "x": 336.75413774326444, "y": 452.85508590750396 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n520", "weight": 62 }, "position": { "x": 124.26586719229817, "y": 389.53184480778873 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n521", "weight": 18 }, "position": { "x": 456.0251352377236, "y": 159.13101551122963 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n522", "weight": 45 }, "position": { "x": 25.373528245836496, "y": 447.707510786131 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n523", "weight": 78 }, "position": { "x": 118.46262509934604, "y": 551.0848817881197 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n524", "weight": 30 }, "position": { "x": 260.51708785817027, "y": 9.6935183275491 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n525", "weight": 12 }, "position": { "x": 269.5972035638988, "y": 335.1176461670548 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n526", "weight": 91 }, "position": { "x": 220.11376535519958, "y": 442.8756925743073 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n527", "weight": 65 }, "position": { "x": 131.72282609157264, "y": 371.7515705153346 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n528", "weight": 70 }, "position": { "x": 317.2978425398469, "y": 236.6845195647329 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n529", "weight": 30 }, "position": { "x": 441.8255254626274, "y": 506.6526507027447 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n530", "weight": 4 }, "position": { "x": 257.51992925070226, "y": 460.836336761713 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n531", "weight": 72 }, "position": { "x": 173.6174994148314, "y": 322.19426496885717 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n532", "weight": 45 }, "position": { "x": 220.48738952726126, "y": 24.136203713715076 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n533", "weight": 8 }, "position": { "x": 552.0089662168175, "y": 256.96038426831365 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n534", "weight": 73 }, "position": { "x": 132.40760006010532, "y": 331.92341825924814 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n535", "weight": 54 }, "position": { "x": 298.48114899359643, "y": 219.72663989290595 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n536", "weight": 91 }, "position": { "x": 473.77850250341, "y": 65.75910919345915 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n537", "weight": 73 }, "position": { "x": 338.942334568128, "y": 325.3508856520057 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n538", "weight": 44 }, "position": { "x": 268.5692531056702, "y": 85.26646918617189 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n539", "weight": 81 }, "position": { "x": 396.90211904235184, "y": 478.7208791356534 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n540", "weight": 60 }, "position": { "x": 479.9864294473082, "y": 40.05963457748294 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n541", "weight": 8 }, "position": { "x": 295.2201318461448, "y": 418.02494851872325 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n542", "weight": 96 }, "position": { "x": 184.45885512046516, "y": 438.3373270276934 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n543", "weight": 61 }, "position": { "x": 16.373434849083424, "y": 424.97592754662037 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n544", "weight": 45 }, "position": { "x": 159.54797244630754, "y": 546.4894122909755 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n545", "weight": 35 }, "position": { "x": 129.28154189139605, "y": 54.02478603646159 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n546", "weight": 12 }, "position": { "x": 284.12679587490857, "y": 31.87563163228333 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n547", "weight": 72 }, "position": { "x": 337.0686834678054, "y": 227.46825478971004 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n548", "weight": 54 }, "position": { "x": 413.2834240794182, "y": 322.0592111349106 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n549", "weight": 38 }, "position": { "x": 167.31637520715594, "y": 366.89914371818304 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n550", "weight": 94 }, "position": { "x": 117.10518929176033, "y": 419.40785720944405 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n551", "weight": 98 }, "position": { "x": 92.6163072232157, "y": 512.3869130853564 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n552", "weight": 70 }, "position": { "x": 418.5624008998275, "y": 278.2356142066419 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n553", "weight": 65 }, "position": { "x": 504.4429214671254, "y": 490.950782597065 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n554", "weight": 88 }, "position": { "x": 526.4804546255618, "y": 7.380172563716769 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n555", "weight": 98 }, "position": { "x": 576.3485301285982, "y": 474.8844803776592 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n556", "weight": 86 }, "position": { "x": 150.40988135151565, "y": 455.0004780292511 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n557", "weight": 6 }, "position": { "x": 433.9592954143882, "y": 592.7227879408747 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n558", "weight": 54 }, "position": { "x": 40.78753790818155, "y": 185.94817500561476 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n559", "weight": 93 }, "position": { "x": 296.61331325769424, "y": 356.9199648220092 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n560", "weight": 9 }, "position": { "x": 358.9652402792126, "y": 89.70543975010514 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n561", "weight": 8 }, "position": { "x": 102.30913083069026, "y": 360.50742832012475 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n562", "weight": 29 }, "position": { "x": 142.38111348822713, "y": 43.09231415390968 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n563", "weight": 21 }, "position": { "x": 299.87526861950755, "y": 393.2184419129044 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n564", "weight": 34 }, "position": { "x": 66.72747256234288, "y": 98.65805692970753 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n565", "weight": 64 }, "position": { "x": 22.891877498477697, "y": 142.3199730925262 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n566", "weight": 33 }, "position": { "x": 41.022511990740895, "y": 133.2920408807695 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n567", "weight": 42 }, "position": { "x": 595.8581047598273, "y": 485.1912693120539 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n568", "weight": 55 }, "position": { "x": 399.8825803399086, "y": 205.1470562350005 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n569", "weight": 79 }, "position": { "x": 130.08065912872553, "y": 450.0575906597078 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n570", "weight": 48 }, "position": { "x": 41.985406167805195, "y": 325.28807781636715 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n571", "weight": 63 }, "position": { "x": 45.0681209564209, "y": 328.1688517425209 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n572", "weight": 18 }, "position": { "x": 23.23858388699591, "y": 423.5963541548699 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n573", "weight": 63 }, "position": { "x": 180.49834216944873, "y": 113.21765491738915 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n574", "weight": 2 }, "position": { "x": 539.3520339857787, "y": 478.46834692172706 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n575", "weight": 86 }, "position": { "x": 471.91505217924714, "y": 129.83070225454867 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n576", "weight": 94 }, "position": { "x": 364.393792161718, "y": 438.40091871097684 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n577", "weight": 65 }, "position": { "x": 371.90362494438887, "y": 170.8913818001747 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n578", "weight": 42 }, "position": { "x": 158.16396502777934, "y": 479.5010781381279 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n579", "weight": 19 }, "position": { "x": 44.39835464581847, "y": 42.57139661349356 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n580", "weight": 27 }, "position": { "x": 263.09543419629335, "y": 382.25729945115745 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n581", "weight": 58 }, "position": { "x": 455.54371615871787, "y": 359.37996888533235 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n582", "weight": 88 }, "position": { "x": 143.90296745114028, "y": 479.9380727112293 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n583", "weight": 57 }, "position": { "x": 348.6004163045436, "y": 393.70961249805987 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n584", "weight": 42 }, "position": { "x": 55.1622707862407, "y": 19.180496223270893 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n585", "weight": 16 }, "position": { "x": 19.408790906891227, "y": 523.6832753755152 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n586", "weight": 73 }, "position": { "x": 45.209741313010454, "y": 22.006810968741775 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n587", "weight": 3 }, "position": { "x": 367.9922802373767, "y": 33.36718319915235 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n588", "weight": 21 }, "position": { "x": 146.7394224833697, "y": 460.2460906840861 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n589", "weight": 82 }, "position": { "x": 509.3618529383093, "y": 356.54555722139776 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n590", "weight": 75 }, "position": { "x": 131.564440112561, "y": 545.2038743533194 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n591", "weight": 2 }, "position": { "x": 571.5841149911284, "y": 322.0603541471064 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n592", "weight": 45 }, "position": { "x": 293.19163248874247, "y": 108.69870744645596 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n593", "weight": 33 }, "position": { "x": 228.65368514321744, "y": 431.14187135361135 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n594", "weight": 48 }, "position": { "x": 594.2994728218764, "y": 255.79732744954526 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n595", "weight": 34 }, "position": { "x": 549.946809746325, "y": 290.87956957519054 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n596", "weight": 77 }, "position": { "x": 578.6252855323255, "y": 96.29180640913546 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n597", "weight": 66 }, "position": { "x": 181.3471502624452, "y": 508.7390294764191 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n598", "weight": 49 }, "position": { "x": 433.9477429166436, "y": 497.63222825713456 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n599", "weight": 39 }, "position": { "x": 284.22265788540244, "y": 550.4128505475819 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e200", "weight": 74, "source": "n482", "target": "n336" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e201", "weight": 69, "source": "n313", "target": "n378" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e202", "weight": 57, "source": "n298", "target": "n273" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e203", "weight": 35, "source": "n394", "target": "n544" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e204", "weight": 50, "source": "n345", "target": "n368" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e205", "weight": 77, "source": "n344", "target": "n469" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e206", "weight": 55, "source": "n269", "target": "n185" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e207", "weight": 3, "source": "n266", "target": "n480" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e208", "weight": 83, "source": "n154", "target": "n521" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e209", "weight": 70, "source": "n451", "target": "n495" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e210", "weight": 40, "source": "n122", "target": "n551" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e211", "weight": 74, "source": "n347", "target": "n221" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e212", "weight": 66, "source": "n305", "target": "n439" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e213", "weight": 60, "source": "n159", "target": "n213" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e214", "weight": 91, "source": "n589", "target": "n535" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e215", "weight": 20, "source": "n161", "target": "n302" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e216", "weight": 57, "source": "n151", "target": "n339" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e217", "weight": 92, "source": "n372", "target": "n271" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e218", "weight": 27, "source": "n211", "target": "n128" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e219", "weight": 28, "source": "n523", "target": "n196" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e220", "weight": 93, "source": "n419", "target": "n181" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e221", "weight": 98, "source": "n555", "target": "n272" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e222", "weight": 85, "source": "n168", "target": "n526" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e223", "weight": 62, "source": "n475", "target": "n271" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e224", "weight": 33, "source": "n485", "target": "n389" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e225", "weight": 52, "source": "n395", "target": "n255" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e226", "weight": 1, "source": "n385", "target": "n184" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e227", "weight": 34, "source": "n257", "target": "n546" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e228", "weight": 20, "source": "n403", "target": "n286" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e229", "weight": 71, "source": "n318", "target": "n475" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e230", "weight": 52, "source": "n298", "target": "n215" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e231", "weight": 27, "source": "n154", "target": "n582" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e232", "weight": 96, "source": "n343", "target": "n489" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e233", "weight": 54, "source": "n485", "target": "n265" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e234", "weight": 3, "source": "n263", "target": "n586" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e235", "weight": 29, "source": "n122", "target": "n128" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e236", "weight": 26, "source": "n454", "target": "n429" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e237", "weight": 50, "source": "n424", "target": "n248" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e238", "weight": 29, "source": "n148", "target": "n103" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e239", "weight": 73, "source": "n479", "target": "n491" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e240", "weight": 94, "source": "n305", "target": "n228" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e241", "weight": 72, "source": "n239", "target": "n223" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e242", "weight": 63, "source": "n585", "target": "n535" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e243", "weight": 1, "source": "n140", "target": "n181" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e244", "weight": 80, "source": "n404", "target": "n569" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e245", "weight": 42, "source": "n125", "target": "n142" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e246", "weight": 11, "source": "n106", "target": "n232" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e247", "weight": 15, "source": "n494", "target": "n313" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e248", "weight": 15, "source": "n383", "target": "n528" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e249", "weight": 7, "source": "n483", "target": "n222" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e250", "weight": 90, "source": "n482", "target": "n306" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e251", "weight": 21, "source": "n176", "target": "n177" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e252", "weight": 17, "source": "n407", "target": "n567" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e253", "weight": 45, "source": "n269", "target": "n361" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e254", "weight": 54, "source": "n268", "target": "n256" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e255", "weight": 51, "source": "n131", "target": "n174" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e256", "weight": 25, "source": "n484", "target": "n414" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e257", "weight": 50, "source": "n506", "target": "n353" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e258", "weight": 39, "source": "n394", "target": "n415" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e259", "weight": 49, "source": "n257", "target": "n155" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e260", "weight": 42, "source": "n232", "target": "n416" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e261", "weight": 1, "source": "n293", "target": "n339" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e262", "weight": 94, "source": "n284", "target": "n470" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e263", "weight": 65, "source": "n294", "target": "n484" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e264", "weight": 72, "source": "n271", "target": "n300" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e265", "weight": 57, "source": "n164", "target": "n248" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e266", "weight": 87, "source": "n557", "target": "n114" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e267", "weight": 6, "source": "n357", "target": "n122" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e268", "weight": 94, "source": "n282", "target": "n151" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e269", "weight": 21, "source": "n483", "target": "n553" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e270", "weight": 99, "source": "n153", "target": "n400" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e271", "weight": 35, "source": "n220", "target": "n319" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e272", "weight": 38, "source": "n501", "target": "n305" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e273", "weight": 20, "source": "n117", "target": "n189" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e274", "weight": 99, "source": "n124", "target": "n357" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e275", "weight": 77, "source": "n492", "target": "n330" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e276", "weight": 88, "source": "n222", "target": "n131" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e277", "weight": 15, "source": "n475", "target": "n427" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e278", "weight": 7, "source": "n563", "target": "n297" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e279", "weight": 95, "source": "n416", "target": "n299" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e280", "weight": 40, "source": "n132", "target": "n100" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e281", "weight": 4, "source": "n155", "target": "n495" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e282", "weight": 84, "source": "n301", "target": "n503" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e283", "weight": 36, "source": "n337", "target": "n542" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e284", "weight": 79, "source": "n136", "target": "n214" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e285", "weight": 38, "source": "n178", "target": "n505" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e286", "weight": 93, "source": "n176", "target": "n160" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e287", "weight": 74, "source": "n359", "target": "n405" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e288", "weight": 13, "source": "n554", "target": "n159" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e289", "weight": 64, "source": "n573", "target": "n318" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e290", "weight": 97, "source": "n546", "target": "n203" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e291", "weight": 29, "source": "n183", "target": "n292" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e292", "weight": 19, "source": "n508", "target": "n389" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e293", "weight": 32, "source": "n342", "target": "n368" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e294", "weight": 61, "source": "n180", "target": "n116" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e295", "weight": 17, "source": "n571", "target": "n429" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e296", "weight": 62, "source": "n533", "target": "n210" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e297", "weight": 98, "source": "n175", "target": "n386" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e298", "weight": 51, "source": "n175", "target": "n551" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e299", "weight": 62, "source": "n535", "target": "n495" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e300", "weight": 26, "source": "n313", "target": "n448" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e301", "weight": 36, "source": "n156", "target": "n183" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e302", "weight": 68, "source": "n153", "target": "n392" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e303", "weight": 38, "source": "n189", "target": "n266" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e304", "weight": 53, "source": "n405", "target": "n491" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e305", "weight": 98, "source": "n236", "target": "n344" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e306", "weight": 4, "source": "n161", "target": "n377" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e307", "weight": 49, "source": "n182", "target": "n547" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e308", "weight": 49, "source": "n527", "target": "n392" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e309", "weight": 15, "source": "n267", "target": "n122" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e310", "weight": 64, "source": "n154", "target": "n120" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e311", "weight": 56, "source": "n362", "target": "n568" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e312", "weight": 32, "source": "n310", "target": "n217" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e313", "weight": 38, "source": "n187", "target": "n405" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e314", "weight": 84, "source": "n501", "target": "n125" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e315", "weight": 48, "source": "n117", "target": "n180" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e316", "weight": 94, "source": "n138", "target": "n429" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e317", "weight": 76, "source": "n229", "target": "n593" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e318", "weight": 14, "source": "n105", "target": "n405" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e319", "weight": 46, "source": "n270", "target": "n193" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e320", "weight": 68, "source": "n513", "target": "n540" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e321", "weight": 15, "source": "n197", "target": "n142" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e322", "weight": 18, "source": "n340", "target": "n173" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e323", "weight": 84, "source": "n374", "target": "n129" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e324", "weight": 2, "source": "n342", "target": "n105" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e325", "weight": 71, "source": "n184", "target": "n113" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e326", "weight": 45, "source": "n255", "target": "n550" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e327", "weight": 28, "source": "n281", "target": "n502" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e328", "weight": 1, "source": "n129", "target": "n284" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e329", "weight": 69, "source": "n274", "target": "n436" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e330", "weight": 25, "source": "n243", "target": "n391" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e331", "weight": 16, "source": "n226", "target": "n538" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e332", "weight": 95, "source": "n334", "target": "n437" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e333", "weight": 37, "source": "n379", "target": "n511" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e334", "weight": 38, "source": "n506", "target": "n251" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e335", "weight": 39, "source": "n525", "target": "n454" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e336", "weight": 54, "source": "n321", "target": "n542" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e337", "weight": 8, "source": "n343", "target": "n182" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e338", "weight": 80, "source": "n318", "target": "n166" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e339", "weight": 88, "source": "n598", "target": "n463" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e340", "weight": 96, "source": "n568", "target": "n342" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e341", "weight": 14, "source": "n201", "target": "n562" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e342", "weight": 68, "source": "n249", "target": "n404" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e343", "weight": 77, "source": "n243", "target": "n214" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e344", "weight": 93, "source": "n558", "target": "n581" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e345", "weight": 74, "source": "n365", "target": "n396" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e346", "weight": 26, "source": "n467", "target": "n229" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e347", "weight": 3, "source": "n260", "target": "n514" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e348", "weight": 45, "source": "n560", "target": "n235" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e349", "weight": 9, "source": "n420", "target": "n437" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e350", "weight": 75, "source": "n176", "target": "n184" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e351", "weight": 3, "source": "n391", "target": "n177" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e352", "weight": 73, "source": "n537", "target": "n560" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e353", "weight": 96, "source": "n125", "target": "n269" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e354", "weight": 27, "source": "n566", "target": "n292" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e355", "weight": 58, "source": "n380", "target": "n270" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e356", "weight": 58, "source": "n401", "target": "n566" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e357", "weight": 57, "source": "n288", "target": "n115" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e358", "weight": 61, "source": "n203", "target": "n418" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e359", "weight": 76, "source": "n503", "target": "n332" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e360", "weight": 42, "source": "n516", "target": "n356" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e361", "weight": 38, "source": "n127", "target": "n525" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e362", "weight": 15, "source": "n329", "target": "n578" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e363", "weight": 3, "source": "n597", "target": "n523" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e364", "weight": 51, "source": "n327", "target": "n137" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e365", "weight": 63, "source": "n569", "target": "n544" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e366", "weight": 81, "source": "n585", "target": "n109" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e367", "weight": 75, "source": "n497", "target": "n440" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e368", "weight": 10, "source": "n577", "target": "n482" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e369", "weight": 62, "source": "n250", "target": "n413" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e370", "weight": 56, "source": "n473", "target": "n535" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e371", "weight": 61, "source": "n483", "target": "n162" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e372", "weight": 65, "source": "n192", "target": "n223" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e373", "weight": 63, "source": "n368", "target": "n473" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e374", "weight": 79, "source": "n228", "target": "n397" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e375", "weight": 58, "source": "n381", "target": "n111" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e376", "weight": 93, "source": "n113", "target": "n442" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e377", "weight": 93, "source": "n457", "target": "n120" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e378", "weight": 38, "source": "n287", "target": "n566" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e379", "weight": 74, "source": "n397", "target": "n488" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e380", "weight": 64, "source": "n185", "target": "n511" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e381", "weight": 28, "source": "n412", "target": "n508" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e382", "weight": 75, "source": "n478", "target": "n458" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e383", "weight": 57, "source": "n462", "target": "n480" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e384", "weight": 41, "source": "n244", "target": "n339" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e385", "weight": 53, "source": "n162", "target": "n199" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e386", "weight": 91, "source": "n506", "target": "n534" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e387", "weight": 1, "source": "n236", "target": "n244" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e388", "weight": 55, "source": "n517", "target": "n536" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e389", "weight": 56, "source": "n585", "target": "n472" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e390", "weight": 19, "source": "n102", "target": "n262" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e391", "weight": 69, "source": "n276", "target": "n356" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e392", "weight": 66, "source": "n567", "target": "n439" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e393", "weight": 44, "source": "n334", "target": "n505" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e394", "weight": 98, "source": "n393", "target": "n471" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e395", "weight": 61, "source": "n270", "target": "n339" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e396", "weight": 99, "source": "n285", "target": "n476" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e397", "weight": 60, "source": "n245", "target": "n485" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e398", "weight": 18, "source": "n107", "target": "n241" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e399", "weight": 41, "source": "n417", "target": "n581" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e400", "weight": 81, "source": "n591", "target": "n589" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e401", "weight": 90, "source": "n463", "target": "n165" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e402", "weight": 60, "source": "n564", "target": "n384" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e403", "weight": 78, "source": "n290", "target": "n484" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e404", "weight": 86, "source": "n378", "target": "n346" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e405", "weight": 67, "source": "n224", "target": "n337" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e406", "weight": 86, "source": "n400", "target": "n301" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e407", "weight": 11, "source": "n220", "target": "n390" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e408", "weight": 98, "source": "n457", "target": "n118" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e409", "weight": 16, "source": "n135", "target": "n152" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e410", "weight": 56, "source": "n163", "target": "n502" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e411", "weight": 11, "source": "n144", "target": "n530" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e412", "weight": 69, "source": "n261", "target": "n206" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e413", "weight": 31, "source": "n379", "target": "n479" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e414", "weight": 46, "source": "n366", "target": "n422" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e415", "weight": 88, "source": "n442", "target": "n533" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e416", "weight": 61, "source": "n244", "target": "n473" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e417", "weight": 39, "source": "n584", "target": "n205" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e418", "weight": 84, "source": "n209", "target": "n394" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e419", "weight": 22, "source": "n521", "target": "n316" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e420", "weight": 26, "source": "n362", "target": "n242" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e421", "weight": 62, "source": "n423", "target": "n175" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e422", "weight": 97, "source": "n262", "target": "n339" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e423", "weight": 47, "source": "n200", "target": "n182" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e424", "weight": 44, "source": "n594", "target": "n341" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e425", "weight": 50, "source": "n140", "target": "n510" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e426", "weight": 53, "source": "n377", "target": "n509" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e427", "weight": 55, "source": "n478", "target": "n335" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e428", "weight": 20, "source": "n407", "target": "n283" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e429", "weight": 50, "source": "n294", "target": "n415" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e430", "weight": 55, "source": "n169", "target": "n575" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e431", "weight": 93, "source": "n435", "target": "n185" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e432", "weight": 29, "source": "n175", "target": "n222" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e433", "weight": 40, "source": "n542", "target": "n210" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e434", "weight": 88, "source": "n245", "target": "n379" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e435", "weight": 13, "source": "n377", "target": "n457" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e436", "weight": 20, "source": "n147", "target": "n404" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e437", "weight": 6, "source": "n531", "target": "n481" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e438", "weight": 69, "source": "n535", "target": "n587" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e439", "weight": 69, "source": "n389", "target": "n488" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e440", "weight": 77, "source": "n437", "target": "n275" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e441", "weight": 32, "source": "n343", "target": "n394" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e442", "weight": 28, "source": "n590", "target": "n136" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e443", "weight": 66, "source": "n552", "target": "n179" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e444", "weight": 99, "source": "n450", "target": "n211" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e445", "weight": 6, "source": "n487", "target": "n157" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e446", "weight": 77, "source": "n557", "target": "n135" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e447", "weight": 58, "source": "n265", "target": "n505" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e448", "weight": 63, "source": "n275", "target": "n363" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e449", "weight": 34, "source": "n327", "target": "n578" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e450", "weight": 12, "source": "n592", "target": "n285" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e451", "weight": 42, "source": "n487", "target": "n207" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e452", "weight": 99, "source": "n244", "target": "n104" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e453", "weight": 52, "source": "n428", "target": "n192" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e454", "weight": 84, "source": "n326", "target": "n524" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e455", "weight": 87, "source": "n349", "target": "n447" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e456", "weight": 23, "source": "n395", "target": "n305" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e457", "weight": 23, "source": "n172", "target": "n300" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e458", "weight": 62, "source": "n280", "target": "n356" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e459", "weight": 99, "source": "n152", "target": "n137" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e460", "weight": 58, "source": "n187", "target": "n245" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e461", "weight": 70, "source": "n431", "target": "n274" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e462", "weight": 51, "source": "n457", "target": "n465" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e463", "weight": 43, "source": "n312", "target": "n584" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e464", "weight": 19, "source": "n258", "target": "n400" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e465", "weight": 90, "source": "n288", "target": "n499" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e466", "weight": 2, "source": "n563", "target": "n381" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e467", "weight": 15, "source": "n154", "target": "n440" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e468", "weight": 44, "source": "n241", "target": "n483" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e469", "weight": 89, "source": "n288", "target": "n155" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e470", "weight": 50, "source": "n235", "target": "n485" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e471", "weight": 91, "source": "n538", "target": "n325" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e472", "weight": 59, "source": "n393", "target": "n445" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e473", "weight": 21, "source": "n402", "target": "n436" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e474", "weight": 38, "source": "n582", "target": "n130" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e475", "weight": 45, "source": "n503", "target": "n264" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e476", "weight": 27, "source": "n522", "target": "n183" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e477", "weight": 91, "source": "n253", "target": "n575" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e478", "weight": 58, "source": "n281", "target": "n353" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e479", "weight": 5, "source": "n429", "target": "n370" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e480", "weight": 68, "source": "n570", "target": "n305" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e481", "weight": 44, "source": "n329", "target": "n590" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e482", "weight": 50, "source": "n461", "target": "n425" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e483", "weight": 46, "source": "n568", "target": "n185" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e484", "weight": 55, "source": "n529", "target": "n217" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e485", "weight": 77, "source": "n289", "target": "n138" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e486", "weight": 46, "source": "n105", "target": "n387" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e487", "weight": 42, "source": "n433", "target": "n484" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e488", "weight": 99, "source": "n438", "target": "n266" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e489", "weight": 66, "source": "n468", "target": "n552" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e490", "weight": 45, "source": "n383", "target": "n282" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e491", "weight": 47, "source": "n454", "target": "n266" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e492", "weight": 85, "source": "n255", "target": "n500" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e493", "weight": 69, "source": "n512", "target": "n141" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e494", "weight": 69, "source": "n549", "target": "n460" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e495", "weight": 23, "source": "n199", "target": "n145" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e496", "weight": 13, "source": "n346", "target": "n338" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e497", "weight": 49, "source": "n550", "target": "n278" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e498", "weight": 14, "source": "n223", "target": "n266" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e499", "weight": 44, "source": "n406", "target": "n112" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e500", "weight": 58, "source": "n521", "target": "n568" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e501", "weight": 65, "source": "n215", "target": "n541" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e502", "weight": 46, "source": "n490", "target": "n351" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e503", "weight": 91, "source": "n324", "target": "n140" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e504", "weight": 29, "source": "n229", "target": "n330" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e505", "weight": 47, "source": "n356", "target": "n572" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e506", "weight": 56, "source": "n391", "target": "n308" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e507", "weight": 21, "source": "n141", "target": "n447" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e508", "weight": 90, "source": "n222", "target": "n134" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e509", "weight": 39, "source": "n232", "target": "n471" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e510", "weight": 68, "source": "n562", "target": "n321" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e511", "weight": 81, "source": "n246", "target": "n518" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e512", "weight": 26, "source": "n213", "target": "n523" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e513", "weight": 55, "source": "n150", "target": "n522" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e514", "weight": 11, "source": "n559", "target": "n409" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e515", "weight": 38, "source": "n205", "target": "n556" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e516", "weight": 55, "source": "n147", "target": "n459" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e517", "weight": 55, "source": "n532", "target": "n553" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e518", "weight": 92, "source": "n441", "target": "n267" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e519", "weight": 7, "source": "n267", "target": "n547" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e520", "weight": 19, "source": "n506", "target": "n148" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e521", "weight": 76, "source": "n149", "target": "n230" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e522", "weight": 82, "source": "n422", "target": "n199" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e523", "weight": 73, "source": "n447", "target": "n260" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e524", "weight": 47, "source": "n208", "target": "n323" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e525", "weight": 50, "source": "n400", "target": "n418" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e526", "weight": 47, "source": "n125", "target": "n243" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e527", "weight": 74, "source": "n335", "target": "n373" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e528", "weight": 72, "source": "n502", "target": "n480" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e529", "weight": 55, "source": "n498", "target": "n359" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e530", "weight": 43, "source": "n168", "target": "n136" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e531", "weight": 38, "source": "n233", "target": "n463" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e532", "weight": 99, "source": "n578", "target": "n178" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e533", "weight": 88, "source": "n542", "target": "n561" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e534", "weight": 19, "source": "n539", "target": "n531" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e535", "weight": 0, "source": "n516", "target": "n346" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e536", "weight": 79, "source": "n303", "target": "n518" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e537", "weight": 86, "source": "n362", "target": "n306" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e538", "weight": 91, "source": "n349", "target": "n251" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e539", "weight": 61, "source": "n422", "target": "n411" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e540", "weight": 31, "source": "n470", "target": "n288" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e541", "weight": 24, "source": "n473", "target": "n481" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e542", "weight": 8, "source": "n276", "target": "n329" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e543", "weight": 18, "source": "n232", "target": "n176" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e544", "weight": 69, "source": "n498", "target": "n377" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e545", "weight": 87, "source": "n444", "target": "n300" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e546", "weight": 72, "source": "n377", "target": "n448" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e547", "weight": 67, "source": "n157", "target": "n571" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e548", "weight": 18, "source": "n516", "target": "n473" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e549", "weight": 47, "source": "n233", "target": "n494" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e550", "weight": 76, "source": "n194", "target": "n125" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e551", "weight": 75, "source": "n464", "target": "n157" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e552", "weight": 6, "source": "n474", "target": "n578" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e553", "weight": 63, "source": "n377", "target": "n334" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e554", "weight": 75, "source": "n379", "target": "n377" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e555", "weight": 51, "source": "n378", "target": "n469" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e556", "weight": 69, "source": "n200", "target": "n434" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e557", "weight": 43, "source": "n549", "target": "n541" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e558", "weight": 76, "source": "n222", "target": "n454" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e559", "weight": 59, "source": "n254", "target": "n375" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e560", "weight": 51, "source": "n159", "target": "n249" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e561", "weight": 86, "source": "n145", "target": "n465" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e562", "weight": 33, "source": "n531", "target": "n452" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e563", "weight": 84, "source": "n347", "target": "n489" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e564", "weight": 50, "source": "n162", "target": "n491" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e565", "weight": 38, "source": "n302", "target": "n314" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e566", "weight": 4, "source": "n339", "target": "n381" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e567", "weight": 77, "source": "n360", "target": "n466" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e568", "weight": 68, "source": "n215", "target": "n569" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e569", "weight": 16, "source": "n289", "target": "n460" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e570", "weight": 92, "source": "n444", "target": "n478" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e571", "weight": 90, "source": "n258", "target": "n166" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e572", "weight": 6, "source": "n192", "target": "n506" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e573", "weight": 91, "source": "n370", "target": "n177" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e574", "weight": 8, "source": "n577", "target": "n426" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e575", "weight": 75, "source": "n429", "target": "n221" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e576", "weight": 34, "source": "n463", "target": "n361" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e577", "weight": 15, "source": "n485", "target": "n210" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e578", "weight": 61, "source": "n460", "target": "n197" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e579", "weight": 36, "source": "n569", "target": "n386" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e580", "weight": 16, "source": "n161", "target": "n167" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e581", "weight": 68, "source": "n508", "target": "n307" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e582", "weight": 3, "source": "n384", "target": "n504" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e583", "weight": 39, "source": "n428", "target": "n553" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e584", "weight": 31, "source": "n255", "target": "n354" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e585", "weight": 4, "source": "n322", "target": "n102" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e586", "weight": 24, "source": "n178", "target": "n332" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e587", "weight": 71, "source": "n132", "target": "n210" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e588", "weight": 63, "source": "n277", "target": "n375" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e589", "weight": 3, "source": "n262", "target": "n242" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e590", "weight": 99, "source": "n251", "target": "n391" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e591", "weight": 30, "source": "n338", "target": "n561" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e592", "weight": 13, "source": "n571", "target": "n442" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e593", "weight": 47, "source": "n407", "target": "n254" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e594", "weight": 51, "source": "n483", "target": "n345" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e595", "weight": 63, "source": "n231", "target": "n472" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e596", "weight": 16, "source": "n531", "target": "n587" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e597", "weight": 25, "source": "n107", "target": "n445" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e598", "weight": 99, "source": "n590", "target": "n266" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e599", "weight": 18, "source": "n204", "target": "n577" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e600", "weight": 76, "source": "n267", "target": "n532" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e601", "weight": 81, "source": "n197", "target": "n593" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e602", "weight": 64, "source": "n496", "target": "n536" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e603", "weight": 23, "source": "n311", "target": "n342" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e604", "weight": 69, "source": "n492", "target": "n472" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e605", "weight": 29, "source": "n475", "target": "n327" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e606", "weight": 38, "source": "n172", "target": "n480" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e607", "weight": 58, "source": "n454", "target": "n522" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e608", "weight": 84, "source": "n530", "target": "n443" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e609", "weight": 8, "source": "n365", "target": "n208" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e610", "weight": 73, "source": "n455", "target": "n436" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e611", "weight": 98, "source": "n459", "target": "n561" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e612", "weight": 75, "source": "n451", "target": "n273" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e613", "weight": 33, "source": "n538", "target": "n456" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e614", "weight": 81, "source": "n580", "target": "n494" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e615", "weight": 93, "source": "n395", "target": "n528" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e616", "weight": 4, "source": "n500", "target": "n523" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e617", "weight": 62, "source": "n485", "target": "n247" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e618", "weight": 62, "source": "n317", "target": "n584" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e619", "weight": 45, "source": "n105", "target": "n425" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e620", "weight": 13, "source": "n237", "target": "n598" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e621", "weight": 44, "source": "n558", "target": "n423" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e622", "weight": 9, "source": "n489", "target": "n316" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e623", "weight": 98, "source": "n114", "target": "n120" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e624", "weight": 89, "source": "n392", "target": "n167" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e625", "weight": 69, "source": "n304", "target": "n507" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e626", "weight": 30, "source": "n424", "target": "n330" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e627", "weight": 3, "source": "n222", "target": "n122" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e628", "weight": 54, "source": "n435", "target": "n156" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e629", "weight": 81, "source": "n492", "target": "n111" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e630", "weight": 63, "source": "n513", "target": "n227" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e631", "weight": 25, "source": "n113", "target": "n303" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e632", "weight": 38, "source": "n385", "target": "n390" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e633", "weight": 6, "source": "n434", "target": "n484" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e634", "weight": 64, "source": "n413", "target": "n138" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e635", "weight": 7, "source": "n193", "target": "n325" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e636", "weight": 64, "source": "n544", "target": "n515" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e637", "weight": 23, "source": "n530", "target": "n584" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e638", "weight": 69, "source": "n241", "target": "n129" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e639", "weight": 56, "source": "n260", "target": "n126" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e640", "weight": 59, "source": "n589", "target": "n388" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e641", "weight": 68, "source": "n353", "target": "n348" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e642", "weight": 47, "source": "n391", "target": "n378" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e643", "weight": 72, "source": "n273", "target": "n485" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e644", "weight": 10, "source": "n511", "target": "n387" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e645", "weight": 81, "source": "n539", "target": "n560" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e646", "weight": 43, "source": "n100", "target": "n586" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e647", "weight": 16, "source": "n491", "target": "n415" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e648", "weight": 79, "source": "n320", "target": "n296" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e649", "weight": 83, "source": "n289", "target": "n304" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e650", "weight": 34, "source": "n430", "target": "n206" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e651", "weight": 35, "source": "n170", "target": "n329" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e652", "weight": 0, "source": "n501", "target": "n143" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e653", "weight": 1, "source": "n505", "target": "n555" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e654", "weight": 40, "source": "n543", "target": "n444" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e655", "weight": 48, "source": "n446", "target": "n395" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e656", "weight": 16, "source": "n518", "target": "n567" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e657", "weight": 16, "source": "n313", "target": "n368" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e658", "weight": 14, "source": "n575", "target": "n568" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e659", "weight": 81, "source": "n144", "target": "n599" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e660", "weight": 13, "source": "n536", "target": "n282" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e661", "weight": 13, "source": "n571", "target": "n217" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e662", "weight": 12, "source": "n369", "target": "n128" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e663", "weight": 5, "source": "n436", "target": "n451" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e664", "weight": 36, "source": "n112", "target": "n133" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e665", "weight": 36, "source": "n411", "target": "n113" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e666", "weight": 17, "source": "n499", "target": "n419" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e667", "weight": 89, "source": "n339", "target": "n397" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e668", "weight": 80, "source": "n168", "target": "n572" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e669", "weight": 11, "source": "n408", "target": "n297" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e670", "weight": 91, "source": "n474", "target": "n117" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e671", "weight": 95, "source": "n507", "target": "n151" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e672", "weight": 15, "source": "n588", "target": "n328" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e673", "weight": 47, "source": "n521", "target": "n429" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e674", "weight": 16, "source": "n111", "target": "n510" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e675", "weight": 94, "source": "n133", "target": "n217" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e676", "weight": 64, "source": "n531", "target": "n522" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e677", "weight": 67, "source": "n561", "target": "n430" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e678", "weight": 42, "source": "n165", "target": "n241" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e679", "weight": 67, "source": "n201", "target": "n574" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e680", "weight": 52, "source": "n108", "target": "n199" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e681", "weight": 11, "source": "n389", "target": "n427" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e682", "weight": 27, "source": "n104", "target": "n429" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e683", "weight": 64, "source": "n213", "target": "n373" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e684", "weight": 56, "source": "n228", "target": "n437" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e685", "weight": 30, "source": "n257", "target": "n372" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e686", "weight": 93, "source": "n499", "target": "n480" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e687", "weight": 29, "source": "n468", "target": "n418" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e688", "weight": 57, "source": "n147", "target": "n553" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e689", "weight": 43, "source": "n588", "target": "n228" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e690", "weight": 75, "source": "n398", "target": "n172" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e691", "weight": 65, "source": "n277", "target": "n105" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e692", "weight": 84, "source": "n125", "target": "n457" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e693", "weight": 96, "source": "n495", "target": "n444" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e694", "weight": 92, "source": "n406", "target": "n500" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e695", "weight": 91, "source": "n310", "target": "n453" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e696", "weight": 50, "source": "n440", "target": "n383" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e697", "weight": 53, "source": "n577", "target": "n533" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e698", "weight": 54, "source": "n583", "target": "n170" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e699", "weight": 100, "source": "n154", "target": "n366" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e700", "weight": 62, "source": "n109", "target": "n340" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e701", "weight": 46, "source": "n439", "target": "n123" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e702", "weight": 68, "source": "n196", "target": "n357" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e703", "weight": 13, "source": "n141", "target": "n274" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e704", "weight": 35, "source": "n360", "target": "n446" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e705", "weight": 49, "source": "n392", "target": "n307" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e706", "weight": 7, "source": "n219", "target": "n272" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e707", "weight": 8, "source": "n246", "target": "n167" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e708", "weight": 2, "source": "n552", "target": "n517" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e709", "weight": 1, "source": "n462", "target": "n330" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e710", "weight": 52, "source": "n409", "target": "n157" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e711", "weight": 24, "source": "n327", "target": "n309" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e712", "weight": 75, "source": "n512", "target": "n446" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e713", "weight": 5, "source": "n350", "target": "n342" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e714", "weight": 81, "source": "n319", "target": "n136" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e715", "weight": 77, "source": "n492", "target": "n105" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e716", "weight": 96, "source": "n158", "target": "n393" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e717", "weight": 65, "source": "n492", "target": "n146" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e718", "weight": 60, "source": "n413", "target": "n202" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e719", "weight": 1, "source": "n263", "target": "n496" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e720", "weight": 62, "source": "n164", "target": "n334" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e721", "weight": 14, "source": "n366", "target": "n422" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e722", "weight": 96, "source": "n343", "target": "n200" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e723", "weight": 63, "source": "n109", "target": "n118" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e724", "weight": 65, "source": "n123", "target": "n357" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e725", "weight": 83, "source": "n537", "target": "n257" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e726", "weight": 35, "source": "n454", "target": "n327" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e727", "weight": 91, "source": "n490", "target": "n290" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e728", "weight": 56, "source": "n284", "target": "n455" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e729", "weight": 36, "source": "n122", "target": "n324" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e730", "weight": 62, "source": "n198", "target": "n398" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e731", "weight": 99, "source": "n104", "target": "n366" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e732", "weight": 79, "source": "n576", "target": "n143" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e733", "weight": 54, "source": "n585", "target": "n374" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e734", "weight": 95, "source": "n291", "target": "n461" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e735", "weight": 48, "source": "n128", "target": "n337" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e736", "weight": 35, "source": "n528", "target": "n463" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e737", "weight": 20, "source": "n172", "target": "n541" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e738", "weight": 78, "source": "n361", "target": "n379" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e739", "weight": 77, "source": "n435", "target": "n106" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e740", "weight": 88, "source": "n298", "target": "n533" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e741", "weight": 51, "source": "n230", "target": "n580" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e742", "weight": 75, "source": "n131", "target": "n241" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e743", "weight": 20, "source": "n262", "target": "n562" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e744", "weight": 75, "source": "n106", "target": "n588" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e745", "weight": 55, "source": "n294", "target": "n506" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e746", "weight": 33, "source": "n495", "target": "n217" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e747", "weight": 50, "source": "n530", "target": "n511" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e748", "weight": 84, "source": "n511", "target": "n437" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e749", "weight": 45, "source": "n594", "target": "n131" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e750", "weight": 52, "source": "n180", "target": "n555" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e751", "weight": 55, "source": "n435", "target": "n416" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e752", "weight": 44, "source": "n330", "target": "n129" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e753", "weight": 77, "source": "n447", "target": "n401" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e754", "weight": 60, "source": "n474", "target": "n534" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e755", "weight": 99, "source": "n226", "target": "n317" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e756", "weight": 58, "source": "n280", "target": "n148" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e757", "weight": 4, "source": "n120", "target": "n301" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e758", "weight": 24, "source": "n432", "target": "n200" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e759", "weight": 83, "source": "n562", "target": "n586" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e760", "weight": 41, "source": "n383", "target": "n430" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e761", "weight": 8, "source": "n444", "target": "n332" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e762", "weight": 91, "source": "n415", "target": "n279" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e763", "weight": 85, "source": "n195", "target": "n258" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e764", "weight": 94, "source": "n300", "target": "n360" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e765", "weight": 15, "source": "n506", "target": "n232" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e766", "weight": 90, "source": "n326", "target": "n298" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e767", "weight": 4, "source": "n450", "target": "n237" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e768", "weight": 7, "source": "n306", "target": "n323" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e769", "weight": 96, "source": "n305", "target": "n481" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e770", "weight": 55, "source": "n283", "target": "n115" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e771", "weight": 67, "source": "n480", "target": "n108" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e772", "weight": 98, "source": "n363", "target": "n346" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e773", "weight": 26, "source": "n292", "target": "n393" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e774", "weight": 96, "source": "n110", "target": "n137" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e775", "weight": 19, "source": "n435", "target": "n341" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e776", "weight": 2, "source": "n307", "target": "n337" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e777", "weight": 97, "source": "n366", "target": "n532" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e778", "weight": 54, "source": "n189", "target": "n524" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e779", "weight": 59, "source": "n189", "target": "n297" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e780", "weight": 81, "source": "n351", "target": "n584" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e781", "weight": 45, "source": "n447", "target": "n419" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e782", "weight": 25, "source": "n596", "target": "n427" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e783", "weight": 17, "source": "n424", "target": "n116" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e784", "weight": 100, "source": "n178", "target": "n398" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e785", "weight": 54, "source": "n539", "target": "n555" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e786", "weight": 77, "source": "n358", "target": "n151" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e787", "weight": 9, "source": "n392", "target": "n127" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e788", "weight": 35, "source": "n556", "target": "n371" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e789", "weight": 77, "source": "n113", "target": "n332" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e790", "weight": 8, "source": "n544", "target": "n229" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e791", "weight": 21, "source": "n399", "target": "n440" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e792", "weight": 18, "source": "n346", "target": "n110" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e793", "weight": 78, "source": "n162", "target": "n564" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e794", "weight": 94, "source": "n411", "target": "n597" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e795", "weight": 90, "source": "n147", "target": "n593" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e796", "weight": 70, "source": "n310", "target": "n211" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e797", "weight": 64, "source": "n285", "target": "n350" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e798", "weight": 50, "source": "n518", "target": "n422" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e799", "weight": 16, "source": "n403", "target": "n255" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e800", "weight": 77, "source": "n376", "target": "n222" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e801", "weight": 67, "source": "n216", "target": "n115" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e802", "weight": 1, "source": "n198", "target": "n592" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e803", "weight": 91, "source": "n191", "target": "n118" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e804", "weight": 89, "source": "n596", "target": "n531" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e805", "weight": 51, "source": "n205", "target": "n114" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e806", "weight": 35, "source": "n536", "target": "n222" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e807", "weight": 72, "source": "n389", "target": "n455" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e808", "weight": 16, "source": "n154", "target": "n408" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e809", "weight": 0, "source": "n370", "target": "n422" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e810", "weight": 55, "source": "n486", "target": "n161" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e811", "weight": 100, "source": "n588", "target": "n409" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e812", "weight": 34, "source": "n597", "target": "n175" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e813", "weight": 59, "source": "n570", "target": "n262" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e814", "weight": 65, "source": "n312", "target": "n572" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e815", "weight": 61, "source": "n257", "target": "n546" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e816", "weight": 44, "source": "n141", "target": "n422" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e817", "weight": 99, "source": "n287", "target": "n357" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e818", "weight": 17, "source": "n524", "target": "n497" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e819", "weight": 44, "source": "n307", "target": "n275" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e820", "weight": 87, "source": "n137", "target": "n426" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e821", "weight": 69, "source": "n446", "target": "n132" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e822", "weight": 10, "source": "n472", "target": "n314" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e823", "weight": 70, "source": "n217", "target": "n543" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e824", "weight": 88, "source": "n487", "target": "n540" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e825", "weight": 29, "source": "n598", "target": "n300" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e826", "weight": 47, "source": "n575", "target": "n129" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e827", "weight": 18, "source": "n534", "target": "n570" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e828", "weight": 19, "source": "n278", "target": "n490" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e829", "weight": 26, "source": "n434", "target": "n443" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e830", "weight": 52, "source": "n115", "target": "n596" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e831", "weight": 60, "source": "n502", "target": "n292" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e832", "weight": 42, "source": "n436", "target": "n215" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e833", "weight": 96, "source": "n289", "target": "n297" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e834", "weight": 40, "source": "n414", "target": "n302" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e835", "weight": 80, "source": "n180", "target": "n206" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e836", "weight": 37, "source": "n110", "target": "n583" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e837", "weight": 31, "source": "n593", "target": "n201" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e838", "weight": 7, "source": "n243", "target": "n328" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e839", "weight": 42, "source": "n307", "target": "n150" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e840", "weight": 49, "source": "n218", "target": "n442" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e841", "weight": 38, "source": "n340", "target": "n248" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e842", "weight": 94, "source": "n505", "target": "n479" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e843", "weight": 95, "source": "n330", "target": "n261" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e844", "weight": 4, "source": "n393", "target": "n128" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e845", "weight": 62, "source": "n467", "target": "n359" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e846", "weight": 41, "source": "n533", "target": "n455" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e847", "weight": 35, "source": "n224", "target": "n116" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e848", "weight": 43, "source": "n481", "target": "n279" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e849", "weight": 7, "source": "n592", "target": "n437" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e850", "weight": 19, "source": "n463", "target": "n354" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e851", "weight": 89, "source": "n292", "target": "n572" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e852", "weight": 69, "source": "n157", "target": "n539" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e853", "weight": 8, "source": "n489", "target": "n254" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e854", "weight": 42, "source": "n584", "target": "n574" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e855", "weight": 38, "source": "n337", "target": "n416" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e856", "weight": 37, "source": "n364", "target": "n121" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e857", "weight": 22, "source": "n415", "target": "n295" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e858", "weight": 5, "source": "n201", "target": "n391" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e859", "weight": 70, "source": "n480", "target": "n463" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e860", "weight": 53, "source": "n284", "target": "n337" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e861", "weight": 11, "source": "n152", "target": "n208" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e862", "weight": 9, "source": "n425", "target": "n247" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e863", "weight": 77, "source": "n332", "target": "n339" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e864", "weight": 25, "source": "n342", "target": "n275" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e865", "weight": 2, "source": "n525", "target": "n455" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e866", "weight": 92, "source": "n392", "target": "n272" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e867", "weight": 20, "source": "n315", "target": "n586" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e868", "weight": 5, "source": "n173", "target": "n111" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e869", "weight": 72, "source": "n441", "target": "n202" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e870", "weight": 44, "source": "n392", "target": "n530" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e871", "weight": 50, "source": "n336", "target": "n132" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e872", "weight": 100, "source": "n570", "target": "n329" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e873", "weight": 80, "source": "n206", "target": "n364" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e874", "weight": 33, "source": "n492", "target": "n551" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e875", "weight": 69, "source": "n446", "target": "n520" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e876", "weight": 99, "source": "n545", "target": "n129" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e877", "weight": 16, "source": "n167", "target": "n380" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e878", "weight": 18, "source": "n273", "target": "n419" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e879", "weight": 41, "source": "n597", "target": "n525" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e880", "weight": 78, "source": "n108", "target": "n216" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e881", "weight": 90, "source": "n341", "target": "n416" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e882", "weight": 54, "source": "n320", "target": "n146" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e883", "weight": 53, "source": "n434", "target": "n588" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e884", "weight": 15, "source": "n106", "target": "n208" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e885", "weight": 86, "source": "n434", "target": "n408" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e886", "weight": 24, "source": "n585", "target": "n120" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e887", "weight": 55, "source": "n200", "target": "n467" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e888", "weight": 70, "source": "n280", "target": "n473" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e889", "weight": 10, "source": "n142", "target": "n211" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e890", "weight": 62, "source": "n287", "target": "n465" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e891", "weight": 91, "source": "n319", "target": "n195" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e892", "weight": 63, "source": "n544", "target": "n351" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e893", "weight": 50, "source": "n152", "target": "n151" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e894", "weight": 30, "source": "n216", "target": "n578" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e895", "weight": 47, "source": "n282", "target": "n337" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e896", "weight": 94, "source": "n203", "target": "n497" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e897", "weight": 46, "source": "n167", "target": "n537" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e898", "weight": 47, "source": "n527", "target": "n309" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e899", "weight": 12, "source": "n302", "target": "n546" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e900", "weight": 40, "source": "n468", "target": "n501" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e901", "weight": 38, "source": "n363", "target": "n253" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e902", "weight": 12, "source": "n466", "target": "n202" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e903", "weight": 85, "source": "n244", "target": "n248" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e904", "weight": 76, "source": "n421", "target": "n587" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e905", "weight": 99, "source": "n331", "target": "n351" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e906", "weight": 81, "source": "n109", "target": "n295" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e907", "weight": 42, "source": "n129", "target": "n393" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e908", "weight": 31, "source": "n209", "target": "n334" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e909", "weight": 83, "source": "n497", "target": "n157" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e910", "weight": 47, "source": "n437", "target": "n517" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e911", "weight": 43, "source": "n298", "target": "n177" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e912", "weight": 57, "source": "n416", "target": "n398" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e913", "weight": 40, "source": "n295", "target": "n580" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e914", "weight": 49, "source": "n595", "target": "n295" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e915", "weight": 6, "source": "n430", "target": "n183" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e916", "weight": 59, "source": "n405", "target": "n254" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e917", "weight": 36, "source": "n151", "target": "n283" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e918", "weight": 45, "source": "n136", "target": "n121" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e919", "weight": 7, "source": "n176", "target": "n235" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e920", "weight": 83, "source": "n352", "target": "n442" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e921", "weight": 85, "source": "n399", "target": "n573" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e922", "weight": 98, "source": "n201", "target": "n507" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e923", "weight": 34, "source": "n313", "target": "n465" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e924", "weight": 41, "source": "n269", "target": "n242" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e925", "weight": 89, "source": "n238", "target": "n574" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e926", "weight": 12, "source": "n330", "target": "n351" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e927", "weight": 78, "source": "n525", "target": "n130" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e928", "weight": 86, "source": "n463", "target": "n193" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e929", "weight": 48, "source": "n559", "target": "n359" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e930", "weight": 74, "source": "n513", "target": "n405" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e931", "weight": 80, "source": "n212", "target": "n465" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e932", "weight": 98, "source": "n272", "target": "n422" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e933", "weight": 63, "source": "n135", "target": "n382" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e934", "weight": 67, "source": "n412", "target": "n251" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e935", "weight": 87, "source": "n471", "target": "n408" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e936", "weight": 73, "source": "n571", "target": "n362" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e937", "weight": 56, "source": "n372", "target": "n375" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e938", "weight": 49, "source": "n405", "target": "n428" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e939", "weight": 85, "source": "n285", "target": "n523" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e940", "weight": 4, "source": "n331", "target": "n219" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e941", "weight": 44, "source": "n189", "target": "n329" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e942", "weight": 86, "source": "n401", "target": "n572" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e943", "weight": 14, "source": "n133", "target": "n278" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e944", "weight": 58, "source": "n109", "target": "n571" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e945", "weight": 5, "source": "n282", "target": "n464" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e946", "weight": 11, "source": "n561", "target": "n546" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e947", "weight": 44, "source": "n439", "target": "n429" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e948", "weight": 80, "source": "n287", "target": "n365" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e949", "weight": 46, "source": "n581", "target": "n512" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e950", "weight": 31, "source": "n525", "target": "n588" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e951", "weight": 89, "source": "n145", "target": "n518" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e952", "weight": 44, "source": "n579", "target": "n278" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e953", "weight": 83, "source": "n290", "target": "n394" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e954", "weight": 83, "source": "n421", "target": "n265" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e955", "weight": 24, "source": "n559", "target": "n157" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e956", "weight": 78, "source": "n179", "target": "n217" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e957", "weight": 90, "source": "n338", "target": "n376" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e958", "weight": 35, "source": "n586", "target": "n283" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e959", "weight": 93, "source": "n409", "target": "n377" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e960", "weight": 54, "source": "n438", "target": "n477" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e961", "weight": 32, "source": "n281", "target": "n375" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e962", "weight": 32, "source": "n393", "target": "n387" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e963", "weight": 68, "source": "n458", "target": "n333" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e964", "weight": 94, "source": "n444", "target": "n365" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e965", "weight": 76, "source": "n550", "target": "n446" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e966", "weight": 42, "source": "n370", "target": "n263" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e967", "weight": 85, "source": "n573", "target": "n188" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e968", "weight": 80, "source": "n470", "target": "n216" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e969", "weight": 66, "source": "n367", "target": "n296" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e970", "weight": 88, "source": "n509", "target": "n277" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e971", "weight": 57, "source": "n109", "target": "n416" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e972", "weight": 72, "source": "n256", "target": "n117" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e973", "weight": 82, "source": "n517", "target": "n127" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e974", "weight": 67, "source": "n220", "target": "n508" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e975", "weight": 44, "source": "n300", "target": "n363" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e976", "weight": 30, "source": "n486", "target": "n408" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e977", "weight": 90, "source": "n220", "target": "n496" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e978", "weight": 60, "source": "n359", "target": "n491" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e979", "weight": 72, "source": "n418", "target": "n297" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e980", "weight": 43, "source": "n284", "target": "n121" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e981", "weight": 46, "source": "n497", "target": "n414" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e982", "weight": 61, "source": "n324", "target": "n501" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e983", "weight": 84, "source": "n206", "target": "n334" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e984", "weight": 80, "source": "n189", "target": "n517" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e985", "weight": 34, "source": "n235", "target": "n310" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e986", "weight": 48, "source": "n341", "target": "n255" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e987", "weight": 57, "source": "n206", "target": "n278" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e988", "weight": 37, "source": "n295", "target": "n412" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e989", "weight": 77, "source": "n478", "target": "n461" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e990", "weight": 0, "source": "n253", "target": "n294" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e991", "weight": 98, "source": "n328", "target": "n387" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e992", "weight": 58, "source": "n279", "target": "n523" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e993", "weight": 6, "source": "n225", "target": "n506" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e994", "weight": 97, "source": "n185", "target": "n321" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e995", "weight": 43, "source": "n429", "target": "n447" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e996", "weight": 52, "source": "n306", "target": "n385" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e997", "weight": 88, "source": "n127", "target": "n408" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e998", "weight": 89, "source": "n314", "target": "n257" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e999", "weight": 85, "source": "n558", "target": "n245" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1000", "weight": 79, "source": "n322", "target": "n342" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1001", "weight": 67, "source": "n549", "target": "n161" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1002", "weight": 75, "source": "n471", "target": "n415" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1003", "weight": 63, "source": "n251", "target": "n566" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1004", "weight": 83, "source": "n252", "target": "n209" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1005", "weight": 49, "source": "n587", "target": "n291" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1006", "weight": 35, "source": "n403", "target": "n421" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1007", "weight": 69, "source": "n376", "target": "n349" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1008", "weight": 61, "source": "n416", "target": "n341" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1009", "weight": 74, "source": "n227", "target": "n113" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1010", "weight": 40, "source": "n576", "target": "n415" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1011", "weight": 88, "source": "n154", "target": "n369" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1012", "weight": 35, "source": "n492", "target": "n488" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1013", "weight": 46, "source": "n393", "target": "n182" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1014", "weight": 79, "source": "n306", "target": "n345" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1015", "weight": 60, "source": "n475", "target": "n250" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1016", "weight": 83, "source": "n172", "target": "n336" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1017", "weight": 49, "source": "n501", "target": "n580" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1018", "weight": 66, "source": "n140", "target": "n560" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1019", "weight": 51, "source": "n249", "target": "n347" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1020", "weight": 11, "source": "n223", "target": "n109" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1021", "weight": 63, "source": "n175", "target": "n226" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1022", "weight": 50, "source": "n414", "target": "n214" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1023", "weight": 49, "source": "n119", "target": "n596" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1024", "weight": 58, "source": "n225", "target": "n487" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1025", "weight": 64, "source": "n438", "target": "n457" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1026", "weight": 54, "source": "n278", "target": "n322" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1027", "weight": 76, "source": "n186", "target": "n391" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1028", "weight": 49, "source": "n334", "target": "n163" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1029", "weight": 93, "source": "n143", "target": "n493" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1030", "weight": 87, "source": "n427", "target": "n320" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1031", "weight": 8, "source": "n173", "target": "n134" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1032", "weight": 64, "source": "n159", "target": "n569" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1033", "weight": 69, "source": "n464", "target": "n570" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1034", "weight": 30, "source": "n124", "target": "n432" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1035", "weight": 78, "source": "n160", "target": "n477" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1036", "weight": 82, "source": "n443", "target": "n404" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1037", "weight": 96, "source": "n568", "target": "n356" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1038", "weight": 31, "source": "n247", "target": "n389" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1039", "weight": 18, "source": "n373", "target": "n152" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1040", "weight": 31, "source": "n168", "target": "n470" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1041", "weight": 83, "source": "n568", "target": "n232" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1042", "weight": 10, "source": "n305", "target": "n218" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1043", "weight": 76, "source": "n408", "target": "n524" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1044", "weight": 19, "source": "n549", "target": "n598" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1045", "weight": 91, "source": "n115", "target": "n397" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1046", "weight": 0, "source": "n357", "target": "n459" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1047", "weight": 39, "source": "n563", "target": "n284" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1048", "weight": 97, "source": "n288", "target": "n449" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1049", "weight": 18, "source": "n384", "target": "n104" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1050", "weight": 36, "source": "n559", "target": "n419" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1051", "weight": 21, "source": "n465", "target": "n334" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1052", "weight": 26, "source": "n407", "target": "n171" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1053", "weight": 10, "source": "n395", "target": "n566" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1054", "weight": 67, "source": "n558", "target": "n388" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1055", "weight": 26, "source": "n246", "target": "n292" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1056", "weight": 61, "source": "n157", "target": "n295" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1057", "weight": 56, "source": "n487", "target": "n260" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1058", "weight": 57, "source": "n465", "target": "n337" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1059", "weight": 21, "source": "n135", "target": "n419" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1060", "weight": 24, "source": "n426", "target": "n319" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1061", "weight": 74, "source": "n473", "target": "n378" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1062", "weight": 74, "source": "n410", "target": "n565" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1063", "weight": 38, "source": "n151", "target": "n596" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1064", "weight": 49, "source": "n477", "target": "n216" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1065", "weight": 99, "source": "n566", "target": "n300" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1066", "weight": 39, "source": "n151", "target": "n478" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1067", "weight": 100, "source": "n318", "target": "n295" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1068", "weight": 31, "source": "n552", "target": "n120" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1069", "weight": 94, "source": "n205", "target": "n491" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1070", "weight": 49, "source": "n560", "target": "n326" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1071", "weight": 90, "source": "n583", "target": "n278" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1072", "weight": 60, "source": "n382", "target": "n300" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1073", "weight": 22, "source": "n438", "target": "n587" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1074", "weight": 97, "source": "n384", "target": "n439" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1075", "weight": 29, "source": "n315", "target": "n431" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1076", "weight": 58, "source": "n536", "target": "n485" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1077", "weight": 63, "source": "n538", "target": "n578" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1078", "weight": 81, "source": "n345", "target": "n470" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1079", "weight": 38, "source": "n252", "target": "n353" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1080", "weight": 46, "source": "n144", "target": "n560" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1081", "weight": 32, "source": "n158", "target": "n223" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1082", "weight": 31, "source": "n530", "target": "n204" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1083", "weight": 26, "source": "n116", "target": "n377" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1084", "weight": 65, "source": "n461", "target": "n498" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1085", "weight": 20, "source": "n184", "target": "n106" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1086", "weight": 5, "source": "n109", "target": "n445" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1087", "weight": 69, "source": "n294", "target": "n185" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1088", "weight": 80, "source": "n129", "target": "n471" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1089", "weight": 38, "source": "n280", "target": "n509" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1090", "weight": 67, "source": "n323", "target": "n123" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1091", "weight": 18, "source": "n433", "target": "n588" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1092", "weight": 7, "source": "n220", "target": "n189" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1093", "weight": 18, "source": "n418", "target": "n413" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1094", "weight": 73, "source": "n307", "target": "n202" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1095", "weight": 24, "source": "n486", "target": "n270" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1096", "weight": 67, "source": "n459", "target": "n523" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1097", "weight": 83, "source": "n348", "target": "n232" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1098", "weight": 33, "source": "n174", "target": "n273" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1099", "weight": 47, "source": "n300", "target": "n127" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1100", "weight": 60, "source": "n331", "target": "n383" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1101", "weight": 18, "source": "n189", "target": "n197" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1102", "weight": 56, "source": "n432", "target": "n498" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1103", "weight": 66, "source": "n167", "target": "n463" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1104", "weight": 18, "source": "n177", "target": "n349" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1105", "weight": 62, "source": "n552", "target": "n414" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1106", "weight": 80, "source": "n582", "target": "n457" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1107", "weight": 79, "source": "n184", "target": "n160" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1108", "weight": 24, "source": "n260", "target": "n153" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1109", "weight": 99, "source": "n400", "target": "n159" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1110", "weight": 17, "source": "n148", "target": "n447" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1111", "weight": 79, "source": "n193", "target": "n141" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1112", "weight": 5, "source": "n457", "target": "n545" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1113", "weight": 99, "source": "n263", "target": "n206" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1114", "weight": 72, "source": "n168", "target": "n236" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1115", "weight": 92, "source": "n150", "target": "n524" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1116", "weight": 73, "source": "n210", "target": "n539" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1117", "weight": 66, "source": "n366", "target": "n331" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1118", "weight": 96, "source": "n576", "target": "n498" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1119", "weight": 54, "source": "n361", "target": "n437" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1120", "weight": 58, "source": "n370", "target": "n381" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1121", "weight": 27, "source": "n107", "target": "n309" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1122", "weight": 49, "source": "n200", "target": "n453" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1123", "weight": 45, "source": "n181", "target": "n519" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1124", "weight": 3, "source": "n161", "target": "n427" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1125", "weight": 10, "source": "n482", "target": "n496" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1126", "weight": 54, "source": "n418", "target": "n469" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1127", "weight": 3, "source": "n392", "target": "n454" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1128", "weight": 35, "source": "n383", "target": "n594" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1129", "weight": 62, "source": "n598", "target": "n266" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1130", "weight": 2, "source": "n522", "target": "n240" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1131", "weight": 42, "source": "n138", "target": "n459" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1132", "weight": 96, "source": "n292", "target": "n356" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1133", "weight": 14, "source": "n101", "target": "n343" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1134", "weight": 5, "source": "n208", "target": "n558" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1135", "weight": 30, "source": "n111", "target": "n553" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1136", "weight": 24, "source": "n442", "target": "n286" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1137", "weight": 44, "source": "n149", "target": "n186" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1138", "weight": 12, "source": "n583", "target": "n591" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1139", "weight": 30, "source": "n289", "target": "n442" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1140", "weight": 6, "source": "n285", "target": "n567" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1141", "weight": 6, "source": "n348", "target": "n249" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1142", "weight": 45, "source": "n461", "target": "n538" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1143", "weight": 80, "source": "n293", "target": "n135" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1144", "weight": 87, "source": "n416", "target": "n325" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1145", "weight": 16, "source": "n558", "target": "n139" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1146", "weight": 73, "source": "n534", "target": "n398" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1147", "weight": 90, "source": "n478", "target": "n460" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1148", "weight": 50, "source": "n394", "target": "n340" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1149", "weight": 99, "source": "n261", "target": "n420" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1150", "weight": 35, "source": "n545", "target": "n401" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1151", "weight": 98, "source": "n464", "target": "n285" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1152", "weight": 69, "source": "n171", "target": "n394" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1153", "weight": 51, "source": "n128", "target": "n495" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1154", "weight": 63, "source": "n534", "target": "n138" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1155", "weight": 72, "source": "n182", "target": "n162" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1156", "weight": 33, "source": "n541", "target": "n472" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1157", "weight": 64, "source": "n477", "target": "n439" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1158", "weight": 76, "source": "n472", "target": "n589" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1159", "weight": 73, "source": "n455", "target": "n286" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1160", "weight": 42, "source": "n290", "target": "n155" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1161", "weight": 69, "source": "n382", "target": "n126" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1162", "weight": 96, "source": "n253", "target": "n441" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1163", "weight": 45, "source": "n311", "target": "n306" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1164", "weight": 65, "source": "n370", "target": "n428" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1165", "weight": 61, "source": "n283", "target": "n283" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1166", "weight": 68, "source": "n124", "target": "n548" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1167", "weight": 31, "source": "n208", "target": "n148" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1168", "weight": 77, "source": "n504", "target": "n256" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1169", "weight": 88, "source": "n330", "target": "n404" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1170", "weight": 73, "source": "n431", "target": "n591" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1171", "weight": 32, "source": "n236", "target": "n143" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1172", "weight": 54, "source": "n439", "target": "n451" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1173", "weight": 26, "source": "n342", "target": "n549" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1174", "weight": 76, "source": "n159", "target": "n201" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1175", "weight": 15, "source": "n406", "target": "n432" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1176", "weight": 46, "source": "n352", "target": "n122" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1177", "weight": 42, "source": "n557", "target": "n455" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1178", "weight": 64, "source": "n214", "target": "n300" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1179", "weight": 53, "source": "n296", "target": "n208" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1180", "weight": 94, "source": "n282", "target": "n521" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1181", "weight": 89, "source": "n413", "target": "n581" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1182", "weight": 26, "source": "n187", "target": "n474" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1183", "weight": 51, "source": "n349", "target": "n493" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1184", "weight": 89, "source": "n134", "target": "n145" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1185", "weight": 10, "source": "n304", "target": "n127" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1186", "weight": 36, "source": "n280", "target": "n363" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1187", "weight": 57, "source": "n183", "target": "n240" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1188", "weight": 78, "source": "n568", "target": "n552" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1189", "weight": 25, "source": "n158", "target": "n367" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1190", "weight": 89, "source": "n593", "target": "n370" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1191", "weight": 94, "source": "n323", "target": "n427" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1192", "weight": 92, "source": "n333", "target": "n199" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1193", "weight": 58, "source": "n405", "target": "n325" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1194", "weight": 71, "source": "n127", "target": "n279" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1195", "weight": 72, "source": "n473", "target": "n308" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1196", "weight": 2, "source": "n156", "target": "n539" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1197", "weight": 35, "source": "n555", "target": "n318" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1198", "weight": 64, "source": "n392", "target": "n521" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1199", "weight": 78, "source": "n160", "target": "n567" }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }] ================================================ FILE: documentation/demos/performance-tuning/index.html ================================================ Performance tuning
================================================ FILE: documentation/demos/performance-tuning/style.css ================================================ body { font: 14px helvetica neue, helvetica, arial, sans-serif; } #cy { position: absolute; left: 0; top: 0; bottom: 0; right: 0; } ================================================ FILE: documentation/demos/pie-style/code.js ================================================ cytoscape({ container: document.getElementById('cy'), style: cytoscape.stylesheet() .selector('node') .css({ 'width': '60px', 'height': '60px', 'content': 'data(id)', 'pie-size': '80%', 'pie-1-background-color': '#E8747C', 'pie-1-background-size': 'mapData(foo, 0, 10, 0, 100)', 'pie-2-background-color': '#74CBE8', 'pie-2-background-size': 'mapData(bar, 0, 10, 0, 100)', 'pie-3-background-color': '#74E883', 'pie-3-background-size': 'mapData(baz, 0, 10, 0, 100)' }) .selector('#d, #e') // make these ones ring charts .css({ 'pie-hole': '60%' }) .selector('edge') .css({ 'curve-style': 'bezier', 'width': 4, 'target-arrow-shape': 'triangle', 'opacity': 0.5 }) .selector(':selected') .css({ 'background-color': 'black', 'line-color': 'black', 'target-arrow-color': 'black', 'source-arrow-color': 'black', 'opacity': 1 }) .selector('.faded') .css({ 'opacity': 0.25, 'text-opacity': 0 }), elements: { nodes: [ { data: { id: 'a', foo: 3, bar: 5, baz: 2 } }, { data: { id: 'b', foo: 6, bar: 1, baz: 3 } }, { data: { id: 'c', foo: 2, bar: 3, baz: 5 } }, { data: { id: 'd', foo: 7, bar: 1, baz: 2 } }, { data: { id: 'e', foo: 2, bar: 3, baz: 5 } } ], edges: [ { data: { id: 'ae', weight: 1, source: 'a', target: 'e' } }, { data: { id: 'ab', weight: 3, source: 'a', target: 'b' } }, { data: { id: 'be', weight: 4, source: 'b', target: 'e' } }, { data: { id: 'bc', weight: 5, source: 'b', target: 'c' } }, { data: { id: 'ce', weight: 6, source: 'c', target: 'e' } }, { data: { id: 'cd', weight: 2, source: 'c', target: 'd' } }, { data: { id: 'de', weight: 7, source: 'd', target: 'e' } } ] }, layout: { name: 'circle', padding: 10 }, ready: function(){ window.cy = this; } }); ================================================ FILE: documentation/demos/pie-style/index.html ================================================ Pie style
================================================ FILE: documentation/demos/pie-style/style.css ================================================ body { font: 14px helvetica neue, helvetica, arial, sans-serif; } #cy { height: 100%; width: 100%; position: absolute; left: 0; top: 0; } ================================================ FILE: documentation/demos/qtip-extension/code.js ================================================ $(function(){ // on dom ready var cy = cytoscape({ container: document.getElementById('cy'), boxSelectionEnabled: false, autounselectify: true, maxZoom: 2, minZoom: 0.5, elements: { nodes: [ { data: { id: 'n', label: 'Tap me' } } ] }, layout: { name: 'grid', padding: 100 }, ready: function(){ window.cy = this; }, style: 'node { content: data(label); }' }); // you can use qtip's regular options // see http://qtip2.com/ cy.$('#n').qtip({ content: 'Hello!', position: { my: 'top center', at: 'bottom center' }, style: { classes: 'qtip-bootstrap', tip: { width: 16, height: 8 } } }); }); // on dom ready ================================================ FILE: documentation/demos/qtip-extension/index.html ================================================ qTip extension
================================================ FILE: documentation/demos/qtip-extension/style.css ================================================ body { font: 14px helvetica neue, helvetica, arial, sans-serif; position: absolute; width: 100%; height: 100%; left: 0; top: 0; margin: 0; padding: 0; } #cy { position: absolute; left: 0; top: 0; right: 0; bottom: 0; } ================================================ FILE: documentation/demos/radius-types/code.js ================================================ /* global document, window, fetch, cytoscape */ (function () { var toJson = function (res) { return res.json(); }; let elements = fetch('data.json').then(toJson); window.cy = cytoscape({ container: document.getElementById('cy'), layout: { name: 'grid', rows: 2 }, style: fetch('cy-style.json').then(toJson), elements: elements }); let cy = window.cy; let globalRadius = 20; document.getElementById("radius").onchange = e => { let edges = cy.edges(); globalRadius = Number.parseInt(e.target.value); edges.style('segment-radii', globalRadius); let nodes = cy.nodes(); nodes.forEach(node => { let position = node.position(); position.x += 0.00001; node.position(position) }) } elements.then(() => { setTimeout(() => { cy.edges().forEach(drawTrace) cy.nodes().on('position', (e) => e.target.connectedEdges().forEach(drawTrace)) function drawTrace(edge) { setTimeout(() => { let rs = edge._private.rscratch; let radii = rs.radii; let radius = radii[0]; if (radius !== globalRadius) return setTimeout(() => drawTrace(edge), 50); cy.nodes(`.point[edge="${edge.id()}"]`).remove(); cy.nodes(`.circle[edge="${edge.id()}"]`).remove(); let corners = rs.roundCorners; let isArcRadii = rs.isArcRadius; let pts = rs.allpts; for (let i = 0; i < corners.length; i++) { let corner = corners[i]; let isArcRadius = isArcRadii[i]; let radius = radii[i]; let p = {x: pts[i * 2 + 2], y: pts[i * 2 + 3]}; cy.add({ data: {edge: edge.id()}, classes: ['point'], position: p }) if (isArcRadius) { cy.add({ data: {diameter: 2 * corner.radius, edge: edge.id(), label: corner.radius === radius ? 'R' : 'limited'}, classes: ['circle'], position: {x: corner.cx, y: corner.cy} }) } else { let pp = {x: pts[i * 2], y: pts[i * 2 + 1]}; let np = {x: pts[i * 2 + 4], y: pts[i * 2 + 5]}; let r = Math.min(radius, dist(p, pp) / 2, dist(p, np) / 2) cy.add({ data: {diameter: 2 * r, edge: edge.id(), label: r === radius ? 'R' : 'limited'}, classes: ['circle'], position: p }) } } cy.nodes('.circle').ungrabify(); }) } }) }) })(); dist = (p1, p2) => Math.sqrt((p2.x - p1.x) ** 2 + (p2.y - p1.y) ** 2) ================================================ FILE: documentation/demos/radius-types/cy-style.json ================================================ [ { "selector": "node", "style": { "height": 40, "width": 40 } }, { "selector": "node.circle[?diameter]", "style": { "shape": "ellipse", "width": "data(diameter)", "height": "data(diameter)", "border-style": "dashed", "label": "data(label)", "text-halign": "center", "text-valign": "center", "text-margin-y": -4, "font-size": 8, "border-dash-pattern": "0.1, 2", "border-cap": "round", "border-width": 1, "background-opacity": 0 } }, { "selector": "node.point", "style": { "shape": "ellipse", "width": "4", "height": "4", "background-color": "red" } }, { "selector": "edge[?radius]", "style": { "curve-style": "round-segments", "radius-type": "data(type)", "label": "data(type)", "text-margin-y": -55, "segment-distances": [ -100, 100, -100, 100, -100 ], "segment-weights": [ 0.3, 0.4, 0.5, 0.6, 0.7 ], "segment-radii": "data(radius)" } } ] ================================================ FILE: documentation/demos/radius-types/data.json ================================================ [ { "data": { "id": "arc-a" } }, { "data": { "id": "arc-b" } }, { "data": { "id": "influence-a" } }, { "data": { "id": "influence-b" } }, { "data": { "source": "arc-a", "target": "arc-b", "radius": 20, "type": "arc-radius" } }, { "data": { "source": "influence-a", "target": "influence-b", "radius": 20, "type": "influence-radius" } } ] ================================================ FILE: documentation/demos/radius-types/index.html ================================================ Radius types demo

Radius types demo

================================================ FILE: documentation/demos/radius-types/style.css ================================================ body { font-family: helvetica, sans-serif; font-size: 14px; } #cy { position: absolute; left: 0; top: 60px; right: 0; bottom: 0; z-index: 999; } .over { z-index: 1000; } h1 { opacity: 0.5; font-size: 1em; } ================================================ FILE: documentation/demos/spread-layout/code.js ================================================ fetch('data.json', {mode: 'no-cors'}) .then(function(res) { return res.json() }) .then(function(data) { var cy = window.cy = cytoscape({ container: document.getElementById('cy'), boxSelectionEnabled: false, autounselectify: true, layout: { name: 'spread', minDist: 40 }, style: [ { selector: 'node', style: { 'content': 'data(id)', 'font-size': 8, 'background-color': '#ea8a31' } }, { selector: 'edge', style: { 'curve-style': 'haystack', 'haystack-radius': 0, 'width': 3, 'opacity': 0.666, 'line-color': '#fcc694' } } ], elements: data }); }); ================================================ FILE: documentation/demos/spread-layout/data.json ================================================ [{ "data": { "id": "SCN3B", "altered": 0, "rank": 182, "cited": 7, "uniprotdesc": "Modulates channel gating kinetics. Causes uniquepersistent sodium currents. Inactivates the sodium channel openingmore slowly than the subunit beta-1. Its association withneurofascin may target the sodium channels to the nodes of Ranvierof developing axons and retain these channels at the nodes inmature myelinated axons (By similarity). ", "isseed": false, "uniprot": "Q9NY72", "isvalid": true, "importance": 3 }, "position": { "x": 761.9856964961891, "y": 668.5312433983302 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "EDN2", "altered": 0, "rank": 105, "cited": 159, "uniprotdesc": "Endothelins are endothelium-derived vasoconstrictorpeptides.", "isseed": false, "uniprot": "P20800", "isvalid": true, "importance": 3 }, "position": { "x": 555.3167768572546, "y": 948.6800832323651 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "HIRA", "altered": 0, "rank": 148, "cited": 53, "uniprotdesc": "Cooperates with ASF1A to promote replication-independentchromatin assembly. Required for the periodic repression ofhistone gene transcription during the cell cycle. Required for theformation of senescence-associated heterochromatin foci (SAHF) andefficient senescence-associated cell cycle exit.", "isseed": false, "uniprot": "P54198", "isvalid": true, "importance": 3 }, "position": { "x": 201.53321183626772, "y": 588.7944080506556 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "AURKA", "altered": 0, "rank": 94, "cited": 228, "uniprotdesc": "Mitotic serine/threonine kinases that contributes to theregulation of cell cycle progression. Associates with thecentrosome and the spindle microtubules during mitosis and plays acritical role in various mitotic events including theestablishment of mitotic spindle, centrosome duplication,centrosome separation as well as maturation, chromosomalalignment, spindle assembly checkpoint, and cytokinesis. Requiredfor initial activation of CDK1 at centrosomes. Phosphorylatesnumerous target proteins, including ARHGEF2, BORA, BRCA1, CDC25B,DLGP5, HDAC6, KIF2A, LATS2, NDEL1, PARD3, PPP1R2, PLK1, RASSF1,TACC3, p53/TP53 and TPX2. Regulates KIF2A tubulin depolymeraseactivity. Required for normal axon formation. Plays a role inmicrotubule remodeling during neurite extension. Important formicrotubule formation and/or stabilization. Also acts as a keyregulatory component of the p53/TP53 pathway, and particularly thecheckpoint-response pathways critical for oncogenic transformationof cells, by phosphorylating and stabilizing p53/TP53.Phosphorylates its own inhibitors, the protein phosphatase type 1(PP1) isoforms, to inhibit their activity. Necessary for propercilia disassembly prior to mitosis. ", "isseed": false, "uniprot": "O14965", "isvalid": true, "importance": 3 }, "position": { "x": 765.8265370658187, "y": 480.08406503564606 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "AURKB", "altered": 0, "rank": 142, "cited": 62, "uniprotdesc": "Serine/threonine-protein kinase component of thechromosomal passenger complex (CPC), a complex that acts as a keyregulator of mitosis. The CPC complex has essential functions atthe centromere in ensuring correct chromosome alignment andsegregation and is required for chromatin-induced microtubulestabilization and spindle assembly. Involved in the bipolarattachment of spindle microtubules to kinetochores and is a keyregulator for the onset of cytokinesis during mitosis. Requiredfor central/midzone spindle assembly and cleavage furrowformation. Key component of the cytokinesis checkpoint, a processrequired to delay abscission to prevent both premature resolutionof intercellular chromosome bridges and accumulation of DNAdamage: phosphorylates CHMP4C, leading to retain abscission-competent VPS4 (VPS4A and/or VPS4B) at the midbody ring untilabscission checkpoint signaling is terminated at late cytokinesis(PubMed:22422861, PubMed:24814515). AURKB phosphorylates the CPCcomplex subunits BIRC5/survivin, CDCA8/borealin and INCENP.Phosphorylation of INCENP leads to increased AURKB activity. Otherknown AURKB substrates involved in centromeric functions andmitosis are CENPA, DES/desmin, GPAF, KIF2C, NSUN2, RACGAP1, SEPT1,VIM/vimentin, GSG2/Haspin, and histone H3. A positive feedbackloop involving GSG2 and AURKB contributes to localization of CPCto centromeres. Phosphorylation of VIM controls vimentin filamentsegregation in cytokinetic process, whereas histone H3 isphosphorylated at 'Ser-10' and 'Ser-28' during mitosis (H3S10phand H3S28ph, respectively). A positive feedback between GSG2 andAURKB contributes to CPC localization. AURKB is also required forkinetochore localization of BUB1 and SGOL1. Phosphorylation ofp53/TP53 negatively regulates its transcriptional activity. Keyregulator of active promoters in resting B- and T-lymphocytes:acts by mediating phosphorylation of H3S28ph at active promotersin resting B-cells, inhibiting RNF2/RING1B-mediated ubiquitinationof histone H2A and enhancing binding and activity of the USP16deubiquitinase at transcribed genes. ", "isseed": false, "uniprot": "Q96GD4", "isvalid": true, "importance": 3 }, "position": { "x": 885.1284743216676, "y": 513.4723232390118 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "BDNF", "altered": 0, "rank": 6, "cited": 5546, "uniprotdesc": "During development, promotes the survival anddifferentiation of selected neuronal populations of the peripheraland central nervous systems. Participates in axonal growth,pathfinding and in the modulation of dendritic growth andmorphology. Major regulator of synaptic transmission andplasticity at adult synapses in many regions of the CNS. Theversatility of BDNF is emphasized by its contribution to a rangeof adaptive neuronal responses including long-term potentiation(LTP), long-term depression (LTD), certain forms of short-termsynaptic plasticity, as well as homeostatic regulation ofintrinsic neuronal excitability. ", "isseed": false, "uniprot": "P23560", "isvalid": true, "importance": 3 }, "position": { "x": 500.41861485138065, "y": 310.3342006937938 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SERPINE1", "altered": 0, "rank": 5, "cited": 7063, "uniprotdesc": "Serine protease inhibitor. This inhibitor acts as 'bait'for tissue plasminogen activator, urokinase, protein C andmatriptase-3/TMPRSS7. Its rapid interaction with PLAT may functionas a major control point in the regulation of fibrinolysis.", "isseed": false, "uniprot": "P05121", "isvalid": true, "importance": 3 }, "position": { "x": 634.3028867500421, "y": 813.6957604211618 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "FAS", "altered": 0, "rank": 38, "cited": 1011, "uniprotdesc": "Receptor for TNFSF6/FASLG. The adapter molecule FADDrecruits caspase-8 to the activated receptor. The resulting death-inducing signaling complex (DISC) performs caspase-8 proteolyticactivation which initiates the subsequent cascade of caspases(aspartate-specific cysteine proteases) mediating apoptosis. FAS-mediated apoptosis may have a role in the induction of peripheraltolerance, in the antigen-stimulated suicide of mature T-cells, orboth. The secreted isoforms 2 to 6 block apoptosis (in vitro).", "isseed": false, "uniprot": "P25445", "isvalid": true, "importance": 3 }, "position": { "x": 769.9224356618503, "y": 287.86878583378393 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CCNA2", "altered": 0, "rank": 50, "cited": 660, "uniprotdesc": "Essential for the control of the cell cycle at the G1/S(start) and the G2/M (mitosis) transitions.", "isseed": false, "uniprot": "P20248", "isvalid": true, "importance": 3 }, "position": { "x": 297.278002843864, "y": 361.90291244587445 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "S100A2", "altered": 0, "rank": 110, "cited": 151, "uniprotdesc": "May function as calcium sensor and modulator,contributing to cellular calcium signaling. May function byinteracting with other proteins, such as TPR-containing proteins,and indirectly play a role in many physiological processes. Mayalso play a role in suppressing tumor cell growth.", "isseed": false, "uniprot": "P29034", "isvalid": true, "importance": 3 }, "position": { "x": 950, "y": 522.8952873980897 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "H1F0", "altered": 0, "rank": 179, "cited": 8, "uniprotdesc": "Histones H1 are necessary for the condensation ofnucleosome chains into higher-order structures. The H1F0 histonesare found in cells that are in terminal stages of differentiationor that have low rates of cell division.", "isseed": false, "uniprot": "P07305", "isvalid": true, "importance": 3 }, "position": { "x": 406.729974699731, "y": 765.219321874992 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "BCL2L14", "altered": 0, "rank": 193, "cited": 3, "uniprotdesc": "Plays a role in apoptosis.", "isseed": false, "uniprot": "Q9BZR8", "isvalid": true, "importance": 3 }, "position": { "x": 694.7508500363929, "y": 257.77336898915996 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "YY1", "altered": 0, "rank": 40, "cited": 894, "uniprotdesc": "Multifunctional transcription factor that exhibitspositive and negative control on a large number of cellular andviral genes by binding to sites overlapping the transcriptionstart site. Binds to the consensus sequence 5'-CCGCCATNTT-3'; somegenes have been shown to contain a longer binding motif allowingenhanced binding; the initial CG dinucleotide can be methylatedgreatly reducing the binding affinity. The effect on transcriptionregulation is depending upon the context in which it binds anddiverse mechanisms of action include direct activation orrepression, indirect activation or repression via cofactorrecruitment, or activation or repression by disruption of bindingsites or conformational DNA changes. Its activity is regulated bytranscription factors and cytoplasmic proteins that have beenshown to abrogate or completely inhibit YY1-mediated activation orrepression. For example, it acts as a repressor in absence ofadenovirus E1A protein but as an activator in its presence. Actssynergistically with the SMAD1 and SMAD4 in bone morphogeneticprotein (BMP)-mediated cardiac-specific gene expression(PubMed:15329343). Binds to SMAD binding elements (SBEs) (5'-GTCT/AGAC-3') within BMP response element (BMPRE) of cardiacactivating regions. May play an important role in development anddifferentiation. Proposed to recruit the PRC2/EED-EZH2 complex totarget genes that are transcriptional repressed. Involved in DNArepair. In vitro, binds to DNA recombination intermediatestructures (Holliday junctions). Proposed core component of the chromatin remodelingINO80 complex which is involved in transcriptional regulation, DNAreplication and probably DNA repair; proposed to target the INO80complex to YY1-responsive elements.", "isseed": false, "uniprot": "P25490", "isvalid": true, "importance": 3 }, "position": { "x": 582.1174682492191, "y": 414.9164664022851 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SKP2", "altered": 0, "rank": 56, "cited": 571, "uniprotdesc": "Substrate recognition component of a SCF (SKP1-CUL1-F-box protein) E3 ubiquitin-protein ligase complex which mediatesthe ubiquitination and subsequent proteasomal degradation oftarget proteins involved in cell cycle progression, signaltransduction and transcription. Specifically recognizesphosphorylated CDKN1B/p27kip and is involved in regulation of G1/Stransition. Degradation of CDKN1B/p27kip also requires CKS1.Recognizes target proteins ORC1, CDT1, RBL2, KMT2A/MLL1, CDK9,RAG2, FOXO1, UBP43, and probably MYC, TOB1 and TAL1. Degradationof TAL1 also requires STUB1. Recognizes CDKN1A in association withCCNE1 or CCNE2 and CDK2. Promotes ubiquitination and destructionof CDH1 in a CK1-Dependent Manner, thereby regulating cellmigration. ", "isseed": false, "uniprot": "Q13309", "isvalid": true, "importance": 3 }, "position": { "x": 503.974780035297, "y": 142.59242611594001 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK1", "altered": 0, "rank": 2, "cited": 17194, "uniprotdesc": "Serine/threonine kinase which acts as an essentialcomponent of the MAP kinase signal transduction pathway.MAPK1/ERK2 and MAPK3/ERK1 are the 2 MAPKs which play an importantrole in the MAPK/ERK cascade. They participate also in a signalingcascade initiated by activated KIT and KITLG/SCF. Depending on thecellular context, the MAPK/ERK cascade mediates diverse biologicalfunctions such as cell growth, adhesion, survival anddifferentiation through the regulation of transcription,translation, cytoskeletal rearrangements. The MAPK/ERK cascadeplays also a role in initiation and regulation of meiosis,mitosis, and postmitotic functions in differentiated cells byphosphorylating a number of transcription factors. About 160substrates have already been discovered for ERKs. Many of thesesubstrates are localized in the nucleus, and seem to participatein the regulation of transcription upon stimulation. However,other substrates are found in the cytosol as well as in othercellular organelles, and those are responsible for processes suchas translation, mitosis and apoptosis. Moreover, the MAPK/ERKcascade is also involved in the regulation of the endosomaldynamics, including lysosome processing and endosome cyclingthrough the perinuclear recycling compartment (PNRC); as well asin the fragmentation of the Golgi apparatus during mitosis. Thesubstrates include transcription factors (such as ATF2, BCL6,ELK1, ERF, FOS, HSF4 or SPZ1), cytoskeletal elements (such asCANX, CTTN, GJA1, MAP2, MAPT, PXN, SORBS3 or STMN1), regulators ofapoptosis (such as BAD, BTG2, CASP9, DAPK1, IER3, MCL1 or PPARG),regulators of translation (such as EIF4EBP1) and a variety ofother signaling-related molecules (like ARHGEF2, DCC, FRS2 orGRB10). Protein kinases (such as RAF1, RPS6KA1/RSK1, RPS6KA3/RSK2,RPS6KA2/RSK3, RPS6KA6/RSK4, SYK, MKNK1/MNK1, MKNK2/MNK2,RPS6KA5/MSK1, RPS6KA4/MSK2, MAPKAPK3 or MAPKAPK5) and phosphatases(such as DUSP1, DUSP4, DUSP6 or DUSP16) are other substrates whichenable the propagation the MAPK/ERK signal to additional cytosolicand nuclear targets, thereby extending the specificity of thecascade. Mediates phosphorylation of TPR in respons to EGFstimulation. May play a role in the spindle assembly checkpoint.Phosphorylates PML and promotes its interaction with PIN1, leadingto PML degradation.Acts as a transcriptional repressor. Binds to a[GC]AAA[GC] consensus sequence. Repress the expression ofinterferon gamma-induced genes. Seems to bind to the promoter ofCCL5, DMP1, IFIH1, IFITM1, IRF7, IRF9, LAMP3, OAS1, OAS2, OAS3 andSTAT1. Transcriptional activity is independent of kinase activity.", "isseed": false, "uniprot": "P28482", "isvalid": true, "importance": 3 }, "position": { "x": 455.25652704229003, "y": 762.2566633032843 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "JUN", "altered": 0, "rank": 8, "cited": 4888, "uniprotdesc": "Transcription factor that recognizes and binds to theenhancer heptamer motif 5'-TGA[CG]TCA-3'. Promotes activity ofNR5A1 when phosphorylated by HIPK3 leading to increasedsteroidogenic gene expression upon cAMP signaling pathwaystimulation. ", "isseed": false, "uniprot": "P05412", "isvalid": true, "importance": 3 }, "position": { "x": 280.796000276297, "y": 743.5925876837853 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "RGCC", "altered": 0, "rank": 200, "cited": 0, "uniprotdesc": "Modulates the activity of cell cycle-specific kinases.Enhances CDK1 activity. May contribute to the regulation of thecell cycle. May inhibit growth of glioma cells by promoting arrestof mitotic progression at the G2/M transition. Fibrogenic factorcontributing to the pathogenesis of renal fibrosis throughfibroblast activation. ", "isseed": false, "uniprot": "Q9H4X1", "isvalid": true, "importance": 3 }, "position": { "x": 511.8072177195267, "y": 244.53538451611672 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK3", "altered": 0, "rank": 1, "cited": 21385, "uniprotdesc": "Serine/threonine kinase which acts as an essentialcomponent of the MAP kinase signal transduction pathway.MAPK1/ERK2 and MAPK3/ERK1 are the 2 MAPKs which play an importantrole in the MAPK/ERK cascade. They participate also in a signalingcascade initiated by activated KIT and KITLG/SCF. Depending on thecellular context, the MAPK/ERK cascade mediates diverse biologicalfunctions such as cell growth, adhesion, survival anddifferentiation through the regulation of transcription,translation, cytoskeletal rearrangements. The MAPK/ERK cascadeplays also a role in initiation and regulation of meiosis,mitosis, and postmitotic functions in differentiated cells byphosphorylating a number of transcription factors. About 160substrates have already been discovered for ERKs. Many of thesesubstrates are localized in the nucleus, and seem to participatein the regulation of transcription upon stimulation. However,other substrates are found in the cytosol as well as in othercellular organelles, and those are responsible for processes suchas translation, mitosis and apoptosis. Moreover, the MAPK/ERKcascade is also involved in the regulation of the endosomaldynamics, including lysosome processing and endosome cyclingthrough the perinuclear recycling compartment (PNRC); as well asin the fragmentation of the Golgi apparatus during mitosis. Thesubstrates include transcription factors (such as ATF2, BCL6,ELK1, ERF, FOS, HSF4 or SPZ1), cytoskeletal elements (such asCANX, CTTN, GJA1, MAP2, MAPT, PXN, SORBS3 or STMN1), regulators ofapoptosis (such as BAD, BTG2, CASP9, DAPK1, IER3, MCL1 or PPARG),regulators of translation (such as EIF4EBP1) and a variety ofother signaling-related molecules (like ARHGEF2, FRS2 or GRB10).Protein kinases (such as RAF1, RPS6KA1/RSK1, RPS6KA3/RSK2,RPS6KA2/RSK3, RPS6KA6/RSK4, SYK, MKNK1/MNK1, MKNK2/MNK2,RPS6KA5/MSK1, RPS6KA4/MSK2, MAPKAPK3 or MAPKAPK5) and phosphatases(such as DUSP1, DUSP4, DUSP6 or DUSP16) are other substrates whichenable the propagation the MAPK/ERK signal to additional cytosolicand nuclear targets, thereby extending the specificity of thecascade. ", "isseed": false, "uniprot": "P27361", "isvalid": true, "importance": 3 }, "position": { "x": 584.1270254748321, "y": 833.0411995474743 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK9", "altered": 0, "rank": 48, "cited": 706, "uniprotdesc": "Serine/threonine-protein kinase involved in variousprocesses such as cell proliferation, differentiation, migration,transformation and programmed cell death. Extracellular stimulisuch as proinflammatory cytokines or physical stress stimulate thestress-activated protein kinase/c-Jun N-terminal kinase (SAP/JNK)signaling pathway. In this cascade, two dual specificity kinasesMAP2K4/MKK4 and MAP2K7/MKK7 phosphorylate and activate MAPK9/JNK2.In turn, MAPK9/JNK2 phosphorylates a number of transcriptionfactors, primarily components of AP-1 such as JUN and ATF2 andthus regulates AP-1 transcriptional activity. In response tooxidative or ribotoxic stresses, inhibits rRNA synthesis byphosphorylating and inactivating the RNA polymerase 1-specifictranscription initiation factor RRN3. Promotes stressed cellapoptosis by phosphorylating key regulatory factors including TP53and YAP1. In T-cells, MAPK8 and MAPK9 are required for polarizeddifferentiation of T-helper cells into Th1 cells. Upon T-cellreceptor (TCR) stimulation, is activated by CARMA1, BCL10, MAP2K7and MAP3K7/TAK1 to regulate JUN protein levels. Plays an importantrole in the osmotic stress-induced epithelial tight-junctionsdisruption. When activated, promotes beta-catenin/CTNNB1degradation and inhibits the canonical Wnt signaling pathway.Participates also in neurite growth in spiral ganglion neurons.Phosphorylates the CLOCK-ARNTL/BMAL1 heterodimer and plays a rolein the regulation of the circadian clock (PubMed:22441692).MAPK9 isoforms display different binding patterns:alpha-1 and alpha-2 preferentially bind to JUN, whereas beta-1 andbeta-2 bind to ATF2. However, there is no correlation betweenbinding and phosphorylation, which is achieved at about the sameefficiency by all isoforms. JUNB is not a substrate for JNK2alpha-2, and JUND binds only weakly to it.", "isseed": false, "uniprot": "P45984", "isvalid": true, "importance": 3 }, "position": { "x": 682.2368360272419, "y": 882.8755069202153 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK8", "altered": 0, "rank": 26, "cited": 2270, "uniprotdesc": "Serine/threonine-protein kinase involved in variousprocesses such as cell proliferation, differentiation, migration,transformation and programmed cell death. Extracellular stimulisuch as proinflammatory cytokines or physical stress stimulate thestress-activated protein kinase/c-Jun N-terminal kinase (SAP/JNK)signaling pathway. In this cascade, two dual specificity kinasesMAP2K4/MKK4 and MAP2K7/MKK7 phosphorylate and activate MAPK8/JNK1.In turn, MAPK8/JNK1 phosphorylates a number of transcriptionfactors, primarily components of AP-1 such as JUN, JDP2 and ATF2and thus regulates AP-1 transcriptional activity. Phosphorylatesthe replication licensing factor CDT1, inhibiting the interactionbetween CDT1 and the histone H4 acetylase HBO1 to replicationorigins. Loss of this interaction abrogates the acetylationrequired for replication initiation. Promotes stressed cellapoptosis by phosphorylating key regulatory factors includingp53/TP53 and Yes-associates protein YAP1. In T-cells, MAPK8 andMAPK9 are required for polarized differentiation of T-helper cellsinto Th1 cells. Contributes to the survival of erythroid cells byphosphorylating the antagonist of cell death BAD upon EPOstimulation. Mediates starvation-induced BCL2 phosphorylation,BCL2 dissociation from BECN1, and thus activation of autophagy.Phosphorylates STMN2 and hence regulates microtubule dynamics,controlling neurite elongation in cortical neurons. In thedeveloping brain, through its cytoplasmic activity on STMN2,negatively regulates the rate of exit from multipolar stage and ofradial migration from the ventricular zone. Phosphorylates severalother substrates including heat shock factor protein 4 (HSF4), thedeacetylase SIRT1, ELK1, or the E3 ligase ITCH. Phosphorylates theCLOCK-ARNTL/BMAL1 heterodimer and plays a role in the regulationof the circadian clock (PubMed:22441692).JNK1 isoforms display different binding patterns: beta-1preferentially binds to c-Jun, whereas alpha-1, alpha-2, and beta-2 have a similar low level of binding to both c-Jun or ATF2.However, there is no correlation between binding andphosphorylation, which is achieved at about the same efficiency byall isoforms.", "isseed": false, "uniprot": "P45983", "isvalid": true, "importance": 3 }, "position": { "x": 336.5801981438756, "y": 429.9095502765703 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRDM1", "altered": 0, "rank": 106, "cited": 159, "uniprotdesc": "Transcriptional repressor that binds specifically to thePRDI element in the promoter of the beta-interferon gene(PubMed:1851123). Drives the maturation of B-lymphocytes into Igsecreting cells (PubMed:12626569). ", "isseed": false, "uniprot": "O75626", "isvalid": true, "importance": 3 }, "position": { "x": 485.4655057645014, "y": 945.6121533057524 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "EIF2AK2", "altered": 0, "rank": 68, "cited": 429, "uniprotdesc": "IFN-induced dsRNA-dependent serine/threonine-proteinkinase which plays a key role in the innate immune response toviral infection and is also involved in the regulation of signaltransduction, apoptosis, cell proliferation and differentiation.Exerts its antiviral activity on a wide range of DNA and RNAviruses including hepatitis C virus (HCV), hepatitis B virus(HBV), measles virus (MV) and herpes simplex virus 1 (HHV-1).Inhibits viral replication via phosphorylation of the alphasubunit of eukaryotic initiation factor 2 (EIF2S1), thisphosphorylation impairs the recycling of EIF2S1 between successiverounds of initiation leading to inhibition of translation whicheventually results in shutdown of cellular and viral proteinsynthesis. Also phosphorylates other substrates includingp53/TP53, PPP2R5A, DHX9, ILF3, IRS1 and the HHV-1 viral proteinUS11. In addition to serine/threonine-protein kinase activity,also has tyrosine-protein kinase activity and phosphorylates CDK1at 'Tyr-4' upon DNA damage, facilitating its ubiquitination andproteosomal degradation. Either as an adapter protein and/or viaits kinase activity, can regulate various signaling pathways (p38MAP kinase, NF-kappa-B and insulin signaling pathways) andtranscription factors (JUN, STAT1, STAT3, IRF1, ATF3) involved inthe expression of genes encoding proinflammatory cytokines andIFNs. Activates the NF-kappa-B pathway via interaction with IKBKBand TRAF family of proteins and activates the p38 MAP kinasepathway via interaction with MAP2K6. Can act as both a positiveand negative regulator of the insulin signaling pathway (ISP).Negatively regulates ISP by inducing the inhibitoryphosphorylation of insulin receptor substrate 1 (IRS1) at 'Ser-312' and positively regulates ISP via phosphorylation of PPP2R5Awhich activates FOXO1, which in turn up-regulates the expressionof insulin receptor substrate 2 (IRS2). Can regulate NLRP3inflammasome assembly and the activation of NLRP3, NLRP1, AIM2 andNLRC4 inflammasomes. Can trigger apoptosis via FADD-mediatedactivation of CASP8. Plays a role in the regulation of thecytoskeleton by binding to gelsolin (GSN), sequestering theprotein in an inactive conformation away from actin.", "isseed": false, "uniprot": "P19525", "isvalid": true, "importance": 3 }, "position": { "x": 569.1493957644504, "y": 882.7180903184712 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "HSPA1A", "altered": 0, "rank": 33, "cited": 1596, "uniprotdesc": "In cooperation with other chaperones, Hsp70s stabilizepreexistent proteins against aggregation and mediate the foldingof newly translated polypeptides in the cytosol as well as withinorganelles. These chaperones participate in all these processesthrough their ability to recognize nonnative conformations ofother proteins. They bind extended peptide segments with a nethydrophobic character exposed by polypeptides during translationand membrane translocation, or following stress-induced damage. Incase of rotavirus A infection, serves as a post-attachmentreceptor for the virus to facilitate entry into the cell.", "isseed": false, "uniprot": "P08107", "isvalid": true, "importance": 3 }, "position": { "x": 291.719976843528, "y": 579.9811430972651 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CHEK1", "altered": 0, "rank": 47, "cited": 727, "uniprotdesc": "Serine/threonine-protein kinase which is required forcheckpoint-mediated cell cycle arrest and activation of DNA repairin response to the presence of DNA damage or unreplicated DNA. Mayalso negatively regulate cell cycle progression during unperturbedcell cycles. This regulation is achieved by a number of mechanismsthat together help to preserve the integrity of the genome.Recognizes the substrate consensus sequence [R-X-X-S/T]. Binds toand phosphorylates CDC25A, CDC25B and CDC25C. Phosphorylation ofCDC25A at 'Ser-178' and 'Thr-507' and phosphorylation of CDC25C at'Ser-216' creates binding sites for 14-3-3 proteins which inhibitCDC25A and CDC25C. Phosphorylation of CDC25A at 'Ser-76', 'Ser-124', 'Ser-178', 'Ser-279' and 'Ser-293' promotes proteolysis ofCDC25A. Phosphorylation of CDC25A at 'Ser-76' primes the proteinfor subsequent phosphorylation at 'Ser-79', 'Ser-82' and 'Ser-88'by NEK11, which is required for polyubiquitination and degradationof CDCD25A. Inhibition of CDC25 leads to increased inhibitorytyrosine phosphorylation of CDK-cyclin complexes and blocks cellcycle progression. Also phosphorylates NEK6. Binds to andphosphorylates RAD51 at 'Thr-309', which promotes the release ofRAD51 from BRCA2 and enhances the association of RAD51 withchromatin, thereby promoting DNA repair by homologousrecombination. Phosphorylates multiple sites within the C-terminusof TP53, which promotes activation of TP53 by acetylation andpromotes cell cycle arrest and suppression of cellularproliferation. Also promotes repair of DNA cross-links throughphosphorylation of FANCE. Binds to and phosphorylates TLK1 at'Ser-743', which prevents the TLK1-dependent phosphorylation ofthe chromatin assembly factor ASF1A. This may enhance chromatinassembly both in the presence or absence of DNA damage. May alsoplay a role in replication fork maintenance through regulation ofPCNA. May regulate the transcription of genes that regulate cell-cycle progression through the phosphorylation of histones.Phosphorylates histone H3.1 (to form H3T11ph), which leads toepigenetic inhibition of a subset of genes. May also phosphorylateRB1 to promote its interaction with the E2F family oftranscription factors and subsequent cell cycle arrest.Isoform 2: Endogenous repressor of isoform 1, interactswith, and antagonizes CHK1 to promote the S to G2/M phasetransition.", "isseed": false, "uniprot": "O14757", "isvalid": true, "importance": 3 }, "position": { "x": 220.1524689166021, "y": 814.1513597603264 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "STK17A", "altered": 0, "rank": 176, "cited": 11, "uniprotdesc": "Acts as a positive regulator of apoptosis. Also acts asa regulator of cellular reactive oxygen species.", "isseed": false, "uniprot": "Q9UEE5", "isvalid": true, "importance": 3 }, "position": { "x": 428.40132786854133, "y": 235.4470639516396 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CHEK2", "altered": 0, "rank": 42, "cited": 859, "uniprotdesc": "Serine/threonine-protein kinase which is required forcheckpoint-mediated cell cycle arrest, activation of DNA repairand apoptosis in response to the presence of DNA double-strandbreaks. May also negatively regulate cell cycle progression duringunperturbed cell cycles. Following activation, phosphorylatesnumerous effectors preferentially at the consensus sequence [L-X-R-X-X-S/T]. Regulates cell cycle checkpoint arrest throughphosphorylation of CDC25A, CDC25B and CDC25C, inhibiting theiractivity. Inhibition of CDC25 phosphatase activity leads toincreased inhibitory tyrosine phosphorylation of CDK-cyclincomplexes and blocks cell cycle progression. May alsophosphorylate NEK6 which is involved in G2/M cell cycle arrest.Regulates DNA repair through phosphorylation of BRCA2, enhancingthe association of RAD51 with chromatin which promotes DNA repairby homologous recombination. Also stimulates the transcription ofgenes involved in DNA repair (including BRCA2) through thephosphorylation and activation of the transcription factor FOXM1.Regulates apoptosis through the phosphorylation of p53/TP53, MDM4and PML. Phosphorylation of p53/TP53 at 'Ser-20' by CHEK2 mayalleviate inhibition by MDM2, leading to accumulation of activep53/TP53. Phosphorylation of MDM4 may also reduce degradation ofp53/TP53. Also controls the transcription of pro-apoptotic genesthrough phosphorylation of the transcription factor E2F1. Tumorsuppressor, it may also have a DNA damage-independent function inmitotic spindle assembly by phosphorylating BRCA1. Its absence maybe a cause of the chromosomal instability observed in some cancercells. ", "isseed": false, "uniprot": "O96017", "isvalid": true, "importance": 3 }, "position": { "x": 556.6585149681805, "y": 677.8506468486836 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "BDKRB2", "altered": 0, "rank": 109, "cited": 151, "uniprotdesc": "Receptor for bradykinin. It is associated with Gproteins that activate a phosphatidylinositol-calcium secondmessenger system.", "isseed": false, "uniprot": "P30411", "isvalid": true, "importance": 3 }, "position": { "x": 629.791361528527, "y": 936.0631456104647 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "LIF", "altered": 0, "rank": 14, "cited": 3270, "uniprotdesc": "LIF has the capacity to induce terminal differentiationin leukemic cells. Its activities include the induction ofhematopoietic differentiation in normal and myeloid leukemiacells, the induction of neuronal cell differentiation, and thestimulation of acute-phase protein synthesis in hepatocytes.", "isseed": false, "uniprot": "P15018", "isvalid": true, "importance": 3 }, "position": { "x": 659.0903263182183, "y": 497.9004799357725 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "VRK1", "altered": 0, "rank": 120, "cited": 97, "uniprotdesc": "Serine/threonine kinase involved in Golgi disassemblyduring the cell cycle: following phosphorylation by PLK3 duringmitosis, required to induce Golgi fragmentation. Acts by mediatingphosphorylation of downstream target protein. Phosphorylates 'Thr-18' of p53/TP53 and may thereby prevent the interaction betweenp53/TP53 and MDM2. Phosphorylates casein and histone H3.Phosphorylates BANF1: disrupts its ability to bind DNA, reducesits binding to LEM domain-containing proteins and causes itsrelocalization from the nucleus to the cytoplasm. PhosphorylatesATF2 which activates its transcriptional activity.", "isseed": false, "uniprot": "Q99986", "isvalid": true, "importance": 3 }, "position": { "x": 491.08155176356354, "y": 847.0627953347798 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "RCHY1", "altered": 0, "rank": 121, "cited": 96, "uniprotdesc": "Mediates E3-dependent ubiquitination and proteasomaldegradation of target proteins, including p53/TP53, P73, HDAC1 andCDKN1B. Preferentially acts on tetrameric p53/TP53.Monoubiquitinates the translesion DNA polymerase POLH. Contributesto the regulation of the cell cycle progression. Increases ARtranscription factor activity. ", "isseed": false, "uniprot": "Q96PM5", "isvalid": true, "importance": 3 }, "position": { "x": 349.49513723436206, "y": 771.4426953107417 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SPP1", "altered": 0, "rank": 20, "cited": 2743, "uniprotdesc": "Binds tightly to hydroxyapatite. Appears to form anintegral part of the mineralized matrix. Probably important tocell-matrix interaction.Acts as a cytokine involved in enhancing production ofinterferon-gamma and interleukin-12 and reducing production ofinterleukin-10 and is essential in the pathway that leads to typeI immunity. ", "isseed": false, "uniprot": "P10451", "isvalid": true, "importance": 3 }, "position": { "x": 806.8861831099688, "y": 833.6687776783972 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "COL18A1", "altered": 0, "rank": 157, "cited": 30, "uniprotdesc": "COLA18A probably plays a major role in determining theretinal structure as well as in the closure of the neural tube.Endostatin potently inhibits endothelial cellproliferation and angiogenesis. May inhibit angiogenesis bybinding to the heparan sulfate proteoglycans involved in growthfactor signaling.", "isseed": false, "uniprot": "P39060", "isvalid": true, "importance": 3 }, "position": { "x": 357.6472681750301, "y": 333.6772210883497 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CREBBP", "altered": 0, "rank": 24, "cited": 2442, "uniprotdesc": "Acetylates histones, giving a specific tag fortranscriptional activation. Also acetylates non-histone proteins,like NCOA3 and FOXO1. Binds specifically to phosphorylated CREBand enhances its transcriptional activity toward cAMP-responsivegenes. Acts as a coactivator of ALX1 in the presence of EP300.Acts as a circadian transcriptional coactivator which enhances theactivity of the circadian transcriptional activators: NPAS2-ARNTL/BMAL1 and CLOCK-ARNTL/BMAL1 heterodimers.", "isseed": false, "uniprot": "Q92793", "isvalid": true, "importance": 3 }, "position": { "x": 541.0862850211842, "y": 281.53821992566566 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "FDXR", "altered": 0, "rank": 147, "cited": 54, "uniprotdesc": "Serves as the first electron transfer protein in all themitochondrial P450 systems. Including cholesterol side chaincleavage in all steroidogenic tissues, steroid 11-betahydroxylation in the adrenal cortex, 25-OH-vitamin D3-24hydroxylation in the kidney, and sterol C-27 hydroxylation in theliver.", "isseed": false, "uniprot": "P22570", "isvalid": true, "importance": 3 }, "position": { "x": 50, "y": 552.9723385624237 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SMYD2", "altered": 0, "rank": 175, "cited": 12, "uniprotdesc": "Protein-lysine N-methyltransferase that methylates bothhistones and non-histone proteins, including p53/TP53 and RB1.Specifically methylates histone H3 'Lys-4' (H3K4me) anddimethylates histone H3 'Lys-36' (H3K36me2). Shows even highermethyltransferase activity on p53/TP53. Monomethylates 'Lys-370'of p53/TP53, leading to decreased DNA-binding activity andsubsequent transcriptional regulation activity of p53/TP53.Monomethylates RB1 at 'Lys-860'. ", "isseed": false, "uniprot": "Q9NRG4", "isvalid": true, "importance": 3 }, "position": { "x": 320.04894775109074, "y": 214.10074865886835 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "ATR", "altered": 0, "rank": 52, "cited": 628, "uniprotdesc": "Serine/threonine protein kinase which activatescheckpoint signaling upon genotoxic stresses such as ionizingradiation (IR), ultraviolet light (UV), or DNA replicationstalling, thereby acting as a DNA damage sensor. Recognizes thesubstrate consensus sequence [ST]-Q. Phosphorylates BRCA1, CHEK1,MCM2, RAD17, RPA2, SMC1 and p53/TP53, which collectively inhibitDNA replication and mitosis and promote DNA repair, recombinationand apoptosis. Phosphorylates 'Ser-139' of histone variantH2AX/H2AFX at sites of DNA damage, thereby regulating DNA damageresponse mechanism. Required for FANCD2 ubiquitination. Criticalfor maintenance of fragile site stability and efficient regulationof centrosome duplication. ", "isseed": false, "uniprot": "Q13535", "isvalid": true, "importance": 3 }, "position": { "x": 718.2890027190751, "y": 616.8179054559004 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "HGF", "altered": 0, "rank": 4, "cited": 7554, "uniprotdesc": "Potent mitogen for mature parenchymal hepatocyte cells,seems to be a hepatotrophic factor, and acts as a growth factorfor a broad spectrum of tissues and cell types. Activating ligandfor the receptor tyrosine kinase MET by binding to it andpromoting its dimerization. ", "isseed": false, "uniprot": "P14210", "isvalid": true, "importance": 3 }, "position": { "x": 108.21311953587619, "y": 752.7468908105759 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "ATM", "altered": 0, "rank": 25, "cited": 2298, "uniprotdesc": "Serine/threonine protein kinase which activatescheckpoint signaling upon double strand breaks (DSBs), apoptosisand genotoxic stresses such as ionizing ultraviolet A light (UVA),thereby acting as a DNA damage sensor. Recognizes the substrateconsensus sequence [ST]-Q. Phosphorylates 'Ser-139' of histonevariant H2AX/H2AFX at double strand breaks (DSBs), therebyregulating DNA damage response mechanism. Also plays a role inpre-B cell allelic exclusion, a process leading to expression of asingle immunoglobulin heavy chain allele to enforce clonality andmonospecific recognition by the B-cell antigen receptor (BCR)expressed on individual B-lymphocytes. After the introduction ofDNA breaks by the RAG complex on one immunoglobulin allele, actsby mediating a repositioning of the second allele topericentromeric heterochromatin, preventing accessibility to theRAG complex and recombination of the second allele. Also involvedin signal transduction and cell cycle control. May function as atumor suppressor. Necessary for activation of ABL1 and SAPK.Phosphorylates DYRK2, CHEK2, p53/TP53, FANCD2, NFKBIA, BRCA1,CTIP, nibrin (NBN), TERF1, RAD9 and DCLRE1C. May play a role invesicle and/or protein transport. Could play a role in T-celldevelopment, gonad and neurological function. Plays a role inreplication-dependent histone mRNA degradation. Binds DNA ends.Phosphorylation of DYRK2 in nucleus in response to genotoxicstress prevents its MDM2-mediated ubiquitination and subsequentproteasome degradation. Phosphorylates ATF2 which stimulates itsfunction in DNA damage response. ", "isseed": false, "uniprot": "Q13315", "isvalid": true, "importance": 3 }, "position": { "x": 447.77537187107083, "y": 711.5773414669369 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "EPHA2", "altered": 0, "rank": 154, "cited": 35, "uniprotdesc": "Receptor tyrosine kinase which binds promiscuouslymembrane-bound ephrin-A family ligands residing on adjacent cells,leading to contact-dependent bidirectional signaling intoneighboring cells. The signaling pathway downstream of thereceptor is referred to as forward signaling while the signalingpathway downstream of the ephrin ligand is referred to as reversesignaling. Activated by the ligand ephrin-A1/EFNA1 regulatesmigration, integrin-mediated adhesion, proliferation anddifferentiation of cells. Regulates cell adhesion anddifferentiation through DSG1/desmoglein-1 and inhibition of theERK1/ERK2 (MAPK3/MAPK1, respectively) signaling pathway. May alsoparticipate in UV radiation-induced apoptosis and have a ligand-independent stimulatory effect on chemotactic cell migration.During development, may function in distinctive aspects of patternformation and subsequently in development of several fetaltissues. Involved for instance in angiogenesis, in early hindbraindevelopment and epithelial proliferation and branchingmorphogenesis during mammary gland development. Engaged by theligand ephrin-A5/EFNA5 may regulate lens fiber cells shape andinteractions and be important for lens transparency developmentand maintenance. With ephrin-A2/EFNA2 may play a role in boneremodeling through regulation of osteoclastogenesis andosteoblastogenesis. ", "isseed": false, "uniprot": "P29317", "isvalid": true, "importance": 3 }, "position": { "x": 169.8249954191063, "y": 752.5176803275788 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PCNA", "altered": 0, "rank": 12, "cited": 3811, "uniprotdesc": "Auxiliary protein of DNA polymerase delta and isinvolved in the control of eukaryotic DNA replication byincreasing the polymerase's processibility during elongation ofthe leading strand. Induces a robust stimulatory effect on the 3'-5' exonuclease and 3'-phosphodiesterase, but not apurinic-apyrimidinic (AP) endonuclease, APEX2 activities. Has to be loadedonto DNA in order to be able to stimulate APEX2. Plays a key rolein DNA damage response (DDR) by being conveniently positioned atthe replication fork to coordinate DNA replication with DNA repairand DNA damage tolerance pathways. Acts as a loading platform torecruit DDR proteins that allow completion of DNA replicationafter DNA damage and promote postreplication repair:Monoubiquitinated PCNA leads to recruitment of translesion (TLS)polymerases, while 'Lys-63'-linked polyubiquitination of PCNA isinvolved in error-free pathway and employs recombinationmechanisms to synthesize across the lesion.", "isseed": false, "uniprot": "P12004", "isvalid": true, "importance": 3 }, "position": { "x": 393.7139913950467, "y": 279.007133040323 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "GRK5", "altered": 0, "rank": 135, "cited": 74, "uniprotdesc": "Serine/threonine kinase that phosphorylatespreferentially the activated forms of a variety of G-protein-coupled receptors (GPCRs). Such receptor phosphorylation initiatesbeta-arrestin-mediated receptor desensitization, internalization,and signaling events leading to their down-regulation.Phosphorylates a variety of GPCRs, including adrenergic receptors,muscarinic acetylcholine receptors (more specifically Gi-coupledM2/M4 subtypes), dopamine receptors and opioid receptors. Inaddition to GPCRs, also phosphorylates various substrates: Hsc70-interacting protein/ST13, TP53/p53, HDAC5, and arrestin-1/ARRB1.Phosphorylation of ARRB1 by GRK5 inhibits G-protein independentMAPK1/MAPK3 signaling downstream of 5HT4-receptors.Phosphorylation of HDAC5, a repressor of myocyte enhancer factor 2(MEF2) leading to nuclear export of HDAC5 and allowing MEF2-mediated transcription. Phosphorylation of TP53/p53, a crucialtumor suppressor, inhibits TP53/p53-mediated apoptosis.Phosphorylation of ST13 regulates internalization of the chemokinereceptor. Phosphorylates rhodopsin (RHO) (in vitro) and a non G-protein-coupled receptor, LRP6 during Wnt signaling (in vitro).", "isseed": false, "uniprot": "P34947", "isvalid": true, "importance": 3 }, "position": { "x": 767.8516929832432, "y": 617.2360347281034 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "STEAP3", "altered": 0, "rank": 155, "cited": 32, "uniprotdesc": "Endosomal ferrireductase required for efficienttransferrin-dependent iron uptake in erythroid cells. Participatesin erythroid iron homeostasis by reducing Fe(3+) to Fe(2+). Canalso reduce of Cu(2+) to Cu(1+), suggesting that it participatesin copper homeostasis. Uses NADP(+) as acceptor. May play a roledownstream of p53/TP53 to interface apoptosis and cell cycleprogression. Indirectly involved in exosome secretion byfacilitating the secretion of proteins such as TCTP.", "isseed": false, "uniprot": "Q658P3", "isvalid": true, "importance": 3 }, "position": { "x": 522.1918220260616, "y": 761.4329566582309 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "NUAK1", "altered": 0, "rank": 149, "cited": 48, "uniprotdesc": "Serine/threonine-protein kinase involved in variousprocesses such as cell adhesion, regulation of cell ploidy andsenescence, cell proliferation and tumor progression.Phosphorylates ATM, CASP6, LATS1, PPP1R12A and p53/TP53. Acts as aregulator of cellular senescence and cellular ploidy by mediatingphosphorylation of 'Ser-464' of LATS1, thereby controlling itsstability. Controls cell adhesion by regulating activity of themyosin protein phosphatase 1 (PP1) complex. Acts by mediatingphosphorylation of PPP1R12A subunit of myosin PP1: phosphorylatedPPP1R12A then interacts with 14-3-3, leading to reduceddephosphorylation of myosin MLC2 by myosin PP1. May be involved inDNA damage response: phosphorylates p53/TP53 at 'Ser-15' and 'Ser-392' and is recruited to the CDKN1A/WAF1 promoter to participateto transcription activation by p53/TP53. May also act as a tumormalignancy-associated factor by promoting tumor invasion andmetastasis under regulation and phosphorylation by AKT1.Suppresses Fas-induced apoptosis by mediating phosphorylation ofCASP6, thereby suppressing the activation of the caspase and thesubsequent cleavage of CFLAR. Regulates UV radiation-induced DNAdamage response mediated by CDKN1A. In association with STK11,phosphorylates CDKN1A in response to UV radiation and contributesto its degradation which is necessary for optimal DNA repair(PubMed:25329316). ", "isseed": false, "uniprot": "O60285", "isvalid": true, "importance": 3 }, "position": { "x": 881.277738332746, "y": 297.5817622426346 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MLH1", "altered": 0, "rank": 17, "cited": 3011, "uniprotdesc": "Heterodimerizes with PMS2 to form MutL alpha, acomponent of the post-replicative DNA mismatch repair system(MMR). DNA repair is initiated by MutS alpha (MSH2-MSH6) or MutSbeta (MSH2-MSH6) binding to a dsDNA mismatch, then MutL alpha isrecruited to the heteroduplex. Assembly of the MutL-MutS-heteroduplex ternary complex in presence of RFC and PCNA issufficient to activate endonuclease activity of PMS2. Itintroduces single-strand breaks near the mismatch and thusgenerates new entry points for the exonuclease EXO1 to degrade thestrand containing the mismatch. DNA methylation would preventcleavage and therefore assure that only the newly mutated DNAstrand is going to be corrected. MutL alpha (MLH1-PMS2) interactsphysically with the clamp loader subunits of DNA polymerase III,suggesting that it may play a role to recruit the DNA polymeraseIII to the site of the MMR. Also implicated in DNA damagesignaling, a process which induces cell cycle arrest and can leadto apoptosis in case of major DNA damages. Heterodimerizes withMLH3 to form MutL gamma which plays a role in meiosis.", "isseed": false, "uniprot": "P40692", "isvalid": true, "importance": 3 }, "position": { "x": 685.7288341053412, "y": 371.7836411187021 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP63", "altered": 0, "rank": 37, "cited": 1171, "uniprotdesc": "Acts as a sequence specific DNA binding transcriptionalactivator or repressor. The isoforms contain a varying set oftransactivation and auto-regulating transactivation inhibitingdomains thus showing an isoform specific activity. Isoform 2activates RIPK4 transcription. May be required in conjunction withTP73/p73 for initiation of p53/TP53 dependent apoptosis inresponse to genotoxic insults and the presence of activatedoncogenes. Involved in Notch signaling by probably inducing JAG1and JAG2. Plays a role in the regulation of epithelialmorphogenesis. The ratio of DeltaN-type and TA*-type isoforms maygovern the maintenance of epithelial stem cell compartments andregulate the initiation of epithelial stratification from theundifferentiated embryonal ectoderm. Required for limb formationfrom the apical ectodermal ridge. Activates transcription of thep21 promoter. ", "isseed": false, "uniprot": "Q9H3D4", "isvalid": true, "importance": 3 }, "position": { "x": 563.6023119048924, "y": 599.9549640614409 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PTEN", "altered": 0, "rank": 16, "cited": 3063, "uniprotdesc": "Tumor suppressor. Acts as a dual-specificity proteinphosphatase, dephosphorylating tyrosine-, serine- and threonine-phosphorylated proteins. Also acts as a lipid phosphatase,removing the phosphate in the D3 position of the inositol ringfrom phosphatidylinositol 3,4,5-trisphosphate,phosphatidylinositol 3,4-diphosphate, phosphatidylinositol 3-phosphate and inositol 1,3,4,5-tetrakisphosphate with order ofsubstrate preference in vitro PtdIns(3,4,5)P3 > PtdIns(3,4)P2 >PtdIns3P > Ins(1,3,4,5)P4. The lipid phosphatase activity iscritical for its tumor suppressor function. Antagonizes the PI3K-AKT/PKB signaling pathway by dephosphorylating phosphoinositidesand thereby modulating cell cycle progression and cell survival.The unphosphorylated form cooperates with AIP1 to suppress AKT1activation. Dephosphorylates tyrosine-phosphorylated focaladhesion kinase and inhibits cell migration and integrin-mediatedcell spreading and focal adhesion formation. Plays a role as a keymodulator of the AKT-mTOR signaling pathway controlling the tempoof the process of newborn neurons integration during adultneurogenesis, including correct neuron positioning, dendriticdevelopment and synapse formation. May be a negative regulator ofinsulin signaling and glucose metabolism in adipose tissue. Thenuclear monoubiquitinated form possesses greater apoptoticpotential, whereas the cytoplasmic nonubiquitinated form inducesless tumor suppressive ability. In motile cells, suppresses theformation of lateral pseudopods and thereby promotes cellpolarization and directed movement.Isoform alpha: Functional kinase, like isoform 1 itantagonizes the PI3K-AKT/PKB signaling pathway. Plays a role inmitochondrial energetic metabolism by promoting COX activity andATP production, via collaboration with isoform 1 in increasingprotein levels of PINK1.", "isseed": false, "uniprot": "P60484", "isvalid": true, "importance": 3 }, "position": { "x": 242.35992881066957, "y": 370.1361741052484 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "GPX1", "altered": 0, "rank": 13, "cited": 3644, "uniprotdesc": "Protects the hemoglobin in erythrocytes from oxidativebreakdown.", "isseed": false, "uniprot": "P07203", "isvalid": true, "importance": 3 }, "position": { "x": 793.1049840702775, "y": 425.5352860504664 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TRIAP1", "altered": 0, "rank": 183, "cited": 7, "uniprotdesc": "Involved in the modulation of the mitochondrialapoptotic pathway by ensuring the accumulation of cardiolipin (CL)in mitochondrial membranes. In vitro, the TRIAP1:PRELID1 complexmediates the transfer of phosphatidic acid (PA) between liposomesand probably functions as a PA transporter across themitochondrion intermembrane space to provide PA for CL synthesisin the inner membrane. Mediates cell survival by inhibitingactivation of caspase-9 which prevents induction of apoptosis.", "isseed": false, "uniprot": "O43715", "isvalid": true, "importance": 3 }, "position": { "x": 890.6310623305461, "y": 699.6801574889628 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SH2D1A", "altered": 0, "rank": 136, "cited": 71, "uniprotdesc": "Inhibitor of the SLAM self-association. Acts by blockingrecruitment of the SH2-domain-containing signal-transductionmolecule SHP-2 to a docking site in the SLAM cytoplasmic region.Mediates interaction between FYN and SLAMF1. May also regulate theactivity of the neurotrophin receptors NTRK1, NTRK2 and NTRK3.", "isseed": false, "uniprot": "O60880", "isvalid": true, "importance": 3 }, "position": { "x": 82.33155378948544, "y": 496.8644892172096 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TGFA", "altered": 0, "rank": 117, "cited": 119, "uniprotdesc": "TGF alpha is a mitogenic polypeptide that is able tobind to the EGF receptor/EGFR and to act synergistically with TGFbeta to promote anchorage-independent cell proliferation in softagar.", "isseed": false, "uniprot": "P01135", "isvalid": true, "importance": 3 }, "position": { "x": 739.8844267917815, "y": 898.5893141001482 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SIK1", "altered": 0, "rank": 134, "cited": 75, "uniprotdesc": "Serine/threonine-protein kinase involved in variousprocesses such as cell cycle regulation, gluconeogenesis andlipogenesis regulation, muscle growth and differentiation andtumor suppression. Phosphorylates HDAC4, HDAC5, PPME1, SREBF1,CRTC1/TORC1 and CRTC2/TORC2. Acts as a tumor suppressor and playsa key role in p53/TP53-dependent anoikis, a type of apoptosistriggered by cell detachment: required for phosphorylation ofp53/TP53 in response to loss of adhesion and is able to suppressmetastasis. Part of a sodium-sensing signaling network, probablyby mediating phosphorylation of PPME1: following increases inintracellular sodium, SIK1 is activated by CaMK1 andphosphorylates PPME1 subunit of protein phosphatase 2A (PP2A),leading to dephosphorylation of sodium/potassium-transportingATPase ATP1A1 and subsequent increase activity of ATP1A1. Acts asa regulator of muscle cells by phosphorylating and inhibitingclass II histone deacetylases HDAC4 and HDAC5, leading to promoteexpression of MEF2 target genes in myocytes. Also required duringcardiomyogenesis by regulating the exit of cardiomyoblasts fromthe cell cycle via down-regulation of CDKN1C/p57Kip2. Acts as aregulator of hepatic gluconeogenesis by phosphorylating andrepressing the CREB-specific coactivators CRTC1/TORC1 andCRTC2/TORC2, leading to inhibit CREB activity. Also regulateshepatic lipogenesis by phosphorylating and inhibiting SREBF1. Inconcert with CRTC1/TORC1, regulates the light-induced entrainmentof the circadian clock by attenuating PER1 induction; repressesCREB-mediated transcription of PER1 by phosphorylating anddeactivating CRTC1/TORC1 (By similarity).", "isseed": false, "uniprot": "P57059", "isvalid": true, "importance": 3 }, "position": { "x": 747.570933642611, "y": 387.82865119565287 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MYC", "altered": 0, "rank": 30, "cited": 2037, "uniprotdesc": "Transcription factor that binds DNA in a non-specificmanner, yet also specifically recognizes the core sequence 5'-CAC[GA]TG-3'. Activates the transcription of growth-related genes.", "isseed": false, "uniprot": "P01106", "isvalid": true, "importance": 3 }, "position": { "x": 633.0696831601513, "y": 404.2734415892882 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "HIST1H1E", "altered": 0, "rank": 167, "cited": 19, "uniprotdesc": "Histone H1 protein binds to linker DNA betweennucleosomes forming the macromolecular structure known as thechromatin fiber. Histones H1 are necessary for the condensation ofnucleosome chains into higher-order structured fibers. Acts alsoas a regulator of individual gene transcription through chromatinremodeling, nucleosome spacing and DNA methylation (Bysimilarity). ", "isseed": false, "uniprot": "P10412", "isvalid": true, "importance": 3 }, "position": { "x": 210.9572764920997, "y": 631.4098611450964 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CCNK", "altered": 0, "rank": 166, "cited": 20, "uniprotdesc": "Regulatory subunit of cyclin-dependent kinases thatmediates activation of target kinases. Plays a role intranscriptional regulation via its role in regulating thephosphorylation of the C-terminal domain (CTD) of the largesubunit of RNA polymerase II (POLR2A).", "isseed": false, "uniprot": "O75909", "isvalid": true, "importance": 3 }, "position": { "x": 933.4855504464184, "y": 400.54843299959515 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "HIST1H1D", "altered": 0, "rank": 184, "cited": 6, "uniprotdesc": "Histone H1 protein binds to linker DNA betweennucleosomes forming the macromolecular structure known as thechromatin fiber. Histones H1 are necessary for the condensation ofnucleosome chains into higher-order structured fibers. Acts alsoas a regulator of individual gene transcription through chromatinremodeling, nucleosome spacing and DNA methylation (Bysimilarity). ", "isseed": false, "uniprot": "P16402", "isvalid": true, "importance": 3 }, "position": { "x": 318.99111250527955, "y": 630.2690168630018 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "HIST1H1C", "altered": 0, "rank": 174, "cited": 13, "uniprotdesc": "Histone H1 protein binds to linker DNA betweennucleosomes forming the macromolecular structure known as thechromatin fiber. Histones H1 are necessary for the condensation ofnucleosome chains into higher-order structured fibers. Acts alsoas a regulator of individual gene transcription through chromatinremodeling, nucleosome spacing and DNA methylation (Bysimilarity). ", "isseed": false, "uniprot": "P16403", "isvalid": true, "importance": 3 }, "position": { "x": 423.7124779205746, "y": 439.2628676931681 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "AIFM2", "altered": 0, "rank": 178, "cited": 9, "uniprotdesc": "Oxidoreductase, which may play a role in mediating ap53/TP53-dependent apoptosis response. Probable oxidoreductasethat acts as a caspase-independent mitochondrial effector ofapoptotic cell death. Binds to DNA in a sequence-independentmanner. May contribute to genotoxin-induced growth arrest.", "isseed": false, "uniprot": "Q9BRQ8", "isvalid": true, "importance": 3 }, "position": { "x": 207.0185344642639, "y": 490.8705561151597 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "HIST1H1B", "altered": 0, "rank": 96, "cited": 209, "uniprotdesc": "Histone H1 protein binds to linker DNA betweennucleosomes forming the macromolecular structure known as thechromatin fiber. Histones H1 are necessary for the condensation ofnucleosome chains into higher-order structured fibers. Acts alsoas a regulator of individual gene transcription through chromatinremodeling, nucleosome spacing and DNA methylation (Bysimilarity). ", "isseed": false, "uniprot": "P16401", "isvalid": true, "importance": 3 }, "position": { "x": 585.5069791170168, "y": 458.2711488629086 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "HIST1H1A", "altered": 0, "rank": 173, "cited": 13, "uniprotdesc": "Histone H1 protein binds to linker DNA betweennucleosomes forming the macromolecular structure known as thechromatin fiber. Histones H1 are necessary for the condensation ofnucleosome chains into higher-order structured fibers. Acts alsoas a regulator of individual gene transcription through chromatinremodeling, nucleosome spacing and DNA methylation (Bysimilarity). ", "isseed": false, "uniprot": "Q02539", "isvalid": true, "importance": 3 }, "position": { "x": 241.49718747239754, "y": 556.7911775921698 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53", "altered": 0, "rank": 0, "cited": 24824, "uniprotdesc": "Acts as a tumor suppressor in many tumor types; inducesgrowth arrest or apoptosis depending on the physiologicalcircumstances and cell type. Involved in cell cycle regulation asa trans-activator that acts to negatively regulate cell divisionby controlling a set of genes required for this process. One ofthe activated genes is an inhibitor of cyclin-dependent kinases.Apoptosis induction seems to be mediated either by stimulation ofBAX and FAS antigen expression, or by repression of Bcl-2expression. In cooperation with mitochondrial PPIF is involved inactivating oxidative stress-induced necrosis; the function islargely independent of transcription. Induces the transcription oflong intergenic non-coding RNA p21 (lincRNA-p21) and lincRNA-Mkln1. LincRNA-p21 participates in TP53-dependent transcriptionalrepression leading to apoptosis and seem to have to effect oncell-cycle regulation. Implicated in Notch signaling cross-over.Prevents CDK7 kinase activity when associated to CAK complex inresponse to DNA damage, thus stopping cell cycle progression.Isoform 2 enhances the transactivation activity of isoform 1 fromsome but not all TP53-inducible promoters. Isoform 4 suppressestransactivation activity and impairs growth suppression mediatedby isoform 1. Isoform 7 inhibits isoform 1-mediated apoptosis.", "isseed": true, "uniprot": "P04637", "isvalid": true, "importance": 4 }, "position": { "x": 503.59062036005196, "y": 551.0587297941704 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TNFRSF10A", "altered": 0, "rank": 79, "cited": 325, "uniprotdesc": "Receptor for the cytotoxic ligand TNFSF10/TRAIL. Theadapter molecule FADD recruits caspase-8 to the activatedreceptor. The resulting death-inducing signaling complex (DISC)performs caspase-8 proteolytic activation which initiates thesubsequent cascade of caspases (aspartate-specific cysteineproteases) mediating apoptosis. Promotes the activation of NF-kappa-B. ", "isseed": false, "uniprot": "O00220", "isvalid": true, "importance": 3 }, "position": { "x": 408.37874239209214, "y": 325.8096383962875 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TNFRSF10C", "altered": 0, "rank": 123, "cited": 89, "uniprotdesc": "Receptor for the cytotoxic ligand TRAIL. Lacks acytoplasmic death domain and hence is not capable of inducingapoptosis. May protect cells against TRAIL mediated apoptosis bycompeting with TRAIL-R1 and R2 for binding to the ligand.", "isseed": false, "uniprot": "O14798", "isvalid": true, "importance": 3 }, "position": { "x": 259.4421110752129, "y": 481.73441339404286 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TNFRSF10B", "altered": 0, "rank": 67, "cited": 444, "uniprotdesc": "Receptor for the cytotoxic ligand TNFSF10/TRAIL. Theadapter molecule FADD recruits caspase-8 to the activatedreceptor. The resulting death-inducing signaling complex (DISC)performs caspase-8 proteolytic activation which initiates thesubsequent cascade of caspases (aspartate-specific cysteineproteases) mediating apoptosis. Promotes the activation of NF-kappa-B. Essential for ER stress-induced apoptosis.", "isseed": false, "uniprot": "O14763", "isvalid": true, "importance": 3 }, "position": { "x": 232.4123158283701, "y": 440.01857176641903 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SERPINB5", "altered": 0, "rank": 75, "cited": 355, "uniprotdesc": "Tumor suppressor. It blocks the growth, invasion, andmetastatic properties of mammary tumors. As it does not undergothe S (stressed) to R (relaxed) conformational transitioncharacteristic of active serpins, it exhibits no serine proteaseinhibitory activity.", "isseed": false, "uniprot": "P36952", "isvalid": true, "importance": 3 }, "position": { "x": 819.1307153090056, "y": 599.6669308051653 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TNFRSF10D", "altered": 0, "rank": 130, "cited": 80, "uniprotdesc": "Receptor for the cytotoxic ligand TRAIL. Contains atruncated death domain and hence is not capable of inducingapoptosis but protects against TRAIL-mediated apoptosis. Reportsare contradictory with regards to its ability to induce the NF-kappa-B pathway. According to PubMed:9382840, it cannot butaccording to PubMed:9430226, it can induce the NF-kappa-B pathway.", "isseed": false, "uniprot": "Q9UBN6", "isvalid": true, "importance": 3 }, "position": { "x": 862.367221328406, "y": 753.6203303045247 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SORT1", "altered": 0, "rank": 108, "cited": 154, "uniprotdesc": "Functions as a sorting receptor in the Golgi compartmentand as a clearance receptor on the cell surface. Required forprotein transport from the Golgi apparatus to the lysosomes by apathway that is independent of the mannose-6-phosphate receptor(M6PR). Also required for protein transport from the Golgiapparatus to the endosomes. Promotes neuronal apoptosis bymediating endocytosis of the proapoptotic precursor forms of BDNF(proBDNF) and NGFB (proNGFB). Also acts as a receptor forneurotensin. May promote mineralization of the extracellularmatrix during osteogenic differentiation by scavengingextracellular LPL. Probably required in adipocytes for theformation of specialized storage vesicles containing the glucosetransporter SLC2A4/GLUT4 (GLUT4 storage vesicles, or GSVs). Thesevesicles provide a stable pool of SLC2A4 and confer increasedresponsiveness to insulin. May also mediate transport from theendoplasmic reticulum to the Golgi. ", "isseed": false, "uniprot": "Q99523", "isvalid": true, "importance": 3 }, "position": { "x": 806.592705031291, "y": 515.3266130220882 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "VCAN", "altered": 0, "rank": 81, "cited": 284, "uniprotdesc": "May play a role in intercellular signaling and inconnecting cells with the extracellular matrix. May take part inthe regulation of cell motility, growth and differentiation. Bindshyaluronic acid.", "isseed": false, "uniprot": "P13611", "isvalid": true, "importance": 3 }, "position": { "x": 937.2827317090515, "y": 579.4279304081701 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "GADD45A", "altered": 0, "rank": 98, "cited": 198, "uniprotdesc": "In T-cells, functions as a regulator of p38 MAPKs byinhibiting p88 phosphorylation and activity (By similarity). Mightaffect PCNA interaction with some CDK (cell division proteinkinase) complexes; stimulates DNA excision repair in vitro andinhibits entry of cells into S phase. ", "isseed": false, "uniprot": "P24522", "isvalid": true, "importance": 3 }, "position": { "x": 463.18991333969666, "y": 259.54432056833656 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "USP7", "altered": 0, "rank": 90, "cited": 240, "uniprotdesc": "Hydrolase that deubiquitinates target proteins such asFOXO4, p53/TP53, MDM2, ERCC6, DNMT1, UHRF1, PTEN and DAXX.Together with DAXX, prevents MDM2 self-ubiquitination and enhancesthe E3 ligase activity of MDM2 towards p53/TP53, thereby promotingp53/TP53 ubiquitination and proteasomal degradation.Deubiquitinates p53/TP53 and MDM2 and strongly stabilizes p53/TP53even in the presence of excess MDM2, and also induces p53/TP53-dependent cell growth repression and apoptosis. Deubiquitinationof FOXO4 in presence of hydrogen peroxide is not dependent onp53/TP53 and inhibits FOXO4-induced transcriptional activity. Inassociation with DAXX, is involved in the deubiquitination andtranslocation of PTEN from the nucleus to the cytoplasm, bothprocesses that are counteracted by PML. Involved in cellproliferation during early embryonic development. Involved intranscription-coupled nucleotide excision repair (TC-NER) inresponse to UV damage: recruited to DNA damage sites followinginteraction with KIAA1530/UVSSA and promotes deubiquitination ofERCC6, preventing UV-induced degradation of ERCC6. Contributes tothe overall stabilization and trans-activation capability of theherpesvirus 1 trans-acting transcriptional protein ICP0/VMW110during HSV-1 infection. Involved in maintenance of DNA methylationvia its interaction with UHRF1 and DNMT1: acts by mediatingdeubiquitination of UHRF1 and DNMT1, preventing their degradationand promoting DNA methylation by DNMT1. Exhibits a preferencetowards 'Lys-48'-linked Ubiquitin chains.", "isseed": false, "uniprot": "Q93009", "isvalid": true, "importance": 3 }, "position": { "x": 192.76410907336586, "y": 404.47458338210714 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "BID", "altered": 0, "rank": 187, "cited": 5, "uniprotdesc": "The major proteolytic product p15 BID allows the releaseof cytochrome c (By similarity). Isoform 1, isoform 2 and isoform4 induce ICE-like proteases and apoptosis. Isoform 3 does notinduce apoptosis. Counters the protective effect of Bcl-2.", "isseed": false, "uniprot": "P55957", "isvalid": true, "importance": 3 }, "position": { "x": 135.33349289793205, "y": 679.3806927432364 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "ZNF274", "altered": 0, "rank": 197, "cited": 1, "uniprotdesc": "Probable transcription repressor. Specifically binds tothe 3'-end of zinc-finger coding genes and recruiting chromatin-modifying proteins such as SETDB1 and TRIM28/KAP1, leading totranscription repression. ", "isseed": false, "uniprot": "Q96GC6", "isvalid": true, "importance": 3 }, "position": { "x": 873.2985497874697, "y": 440.7101362802945 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PML", "altered": 0, "rank": 35, "cited": 1300, "uniprotdesc": "Functions via its association with PML-nuclear bodies(PML-NBs) in a wide range of important cellular processes,including tumor suppression, transcriptional regulation,apoptosis, senescence, DNA damage response, and viral defensemechanisms. Acts as the scaffold of PML-NBs allowing otherproteins to shuttle in and out, a process which is regulated bySUMO-mediated modifications and interactions. Isoform PML-4 has amultifaceted role in the regulation of apoptosis and growthsuppression: activates RB1 and inhibits AKT1 via interactions withPP1 and PP2A phosphatases respectively, negatively affects thePI3K pathway by inhibiting MTOR and activating PTEN, andpositively regulates p53/TP53 by acting at different levels (bypromoting its acetylation and phosphorylation and by inhibitingits MDM2-dependent degradation). Isoform PML-4 also: acts as atranscriptional repressor of TBX2 during cellular senescence andthe repression is dependent on a functional RBL2/E2F4 repressorcomplex, regulates double-strand break repair in gamma-irradiation-induced DNA damage responses via its interaction withWRN, acts as a negative regulator of telomerase by interactingwith TERT, and regulates PER2 nuclear localization and circadianfunction. Isoform PML-6 inhibits specifically the activity of thetetrameric form of PKM. The nuclear isoforms (isoform PML-1,isoform PML-2, isoform PML-3, isoform PML-4 and isoform PML-5) inconcert with SATB1 are involved in local chromatin-loop remodelingand gene expression regulation at the MHC-I locus. Isoform PML-2is required for efficient IFN-gamma induced MHC II genetranscription via regulation of CIITA. Cytoplasmic PML is involvedin the regulation of the TGF-beta signaling pathway. PML alsoregulates transcription activity of ELF4 and can act as animportant mediator for TNF-alpha- and IFN-alpha-mediatedinhibition of endothelial cell network formation and migration.Exhibits antiviral activity against both DNA and RNAviruses. The antiviral activity can involve one or severalisoform(s) and can be enhanced by the permanent PML-NB-associatedprotein DAXX or by the recruitment of p53/TP53 within thesestructures. Isoform PML-4 restricts varicella zoster virus (VZV)via sequestration of virion capsids in PML-NBs thereby preventingtheir nuclear egress and inhibiting formation of infectious virusparticles. The sumoylated isoform PML-4 restricts rabies virus byinhibiting viral mRNA and protein synthesis. The cytoplasmicisoform PML-14 can restrict herpes simplex virus-1 (HHV-1)replication by sequestering the viral E3 ubiquitin-protein ligaseICP0 in the cytoplasm. Isoform PML-6 shows restriction activitytowards human cytomegalovirus (HCMV) and influenza A virus strainsPR8(H1N1) and ST364(H3N2). Sumoylated isoform PML-4 and isoformPML-12 show antiviral activity against encephalomyocarditis virus(EMCV) by promoting nuclear sequestration of viral polymerase(P3D-POL) within PML NBs. Isoform PML-3 exhibits antiviralactivity against poliovirus by inducing apoptosis in infectedcells through the recruitment and the activation of p53/TP53 inthe PML-NBs. Isoform PML-3 represses human foamy virus (HFV)transcription by complexing the HFV transactivator, bel1/tas,preventing its binding to viral DNA. PML may positively regulateinfectious hepatitis C viral (HCV) production and isoform PML-2may enhance adenovirus transcription.", "isseed": false, "uniprot": "P29590", "isvalid": true, "importance": 3 }, "position": { "x": 635.1855245354036, "y": 564.2632220228483 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SFN", "altered": 0, "rank": 133, "cited": 76, "uniprotdesc": "Adapter protein implicated in the regulation of a largespectrum of both general and specialized signaling pathways. Bindsto a large number of partners, usually by recognition of aphosphoserine or phosphothreonine motif. Binding generally resultsin the modulation of the activity of the binding partner. Whenbound to KRT17, regulates protein synthesis and epithelial cellgrowth by stimulating Akt/mTOR pathway. May also regulate MDM2autoubiquitination and degradation and thereby activate p53/TP53.", "isseed": false, "uniprot": "P31947", "isvalid": true, "importance": 3 }, "position": { "x": 180.04322259574639, "y": 347.5436380354516 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SUMO1", "altered": 0, "rank": 36, "cited": 1235, "uniprotdesc": "Ubiquitin-like protein that can be covalently attachedto proteins as a monomer or a lysine-linked polymer. Covalentattachment via an isopeptide bond to its substrates requires prioractivation by the E1 complex SAE1-SAE2 and linkage to the E2enzyme UBE2I, and can be promoted by E3 ligases such as PIAS1-4,RANBP2 or CBX4. This post-translational modification on lysineresidues of proteins plays a crucial role in a number of cellularprocesses such as nuclear transport, DNA replication and repair,mitosis and signal transduction. Involved for instance intargeting RANGAP1 to the nuclear pore complex protein RANBP2.Polymeric SUMO1 chains are also susceptible to polyubiquitinationwhich functions as a signal for proteasomal degradation ofmodified proteins. May also regulate a network of genes involvedin palate development. ", "isseed": false, "uniprot": "P63165", "isvalid": true, "importance": 3 }, "position": { "x": 613.4270232833944, "y": 602.9367043351461 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP2CA", "altered": 0, "rank": 146, "cited": 55, "uniprotdesc": "PP2A is the major phosphatase for microtubule-associatedproteins (MAPs). PP2A can modulate the activity of phosphorylase Bkinase casein kinase 2, mitogen-stimulated S6 kinase, and MAP-2kinase. Cooperates with SGOL2 to protect centromeric cohesin fromseparase-mediated cleavage in oocytes specifically during meiosisI (By similarity). Can dephosphorylate SV40 large T antigen andp53/TP53. Activates RAF1 by dephosphorylating it at 'Ser-259'.", "isseed": false, "uniprot": "P67775", "isvalid": true, "importance": 3 }, "position": { "x": 515.3109458532901, "y": 460.98994490036745 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "BCL2", "altered": 0, "rank": 18, "cited": 2989, "uniprotdesc": "Suppresses apoptosis in a variety of cell systemsincluding factor-dependent lymphohematopoietic and neural cells.Regulates cell death by controlling the mitochondrial membranepermeability. Appears to function in a feedback loop system withcaspases. Inhibits caspase activity either by preventing therelease of cytochrome c from the mitochondria and/or by binding tothe apoptosis-activating factor (APAF-1).", "isseed": false, "uniprot": "P10415", "isvalid": true, "importance": 3 }, "position": { "x": 521.5003395505664, "y": 407.14939838449465 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP2CB", "altered": 0, "rank": 185, "cited": 6, "uniprotdesc": "PP2A can modulate the activity of phosphorylase B kinasecasein kinase 2, mitogen-stimulated S6 kinase, and MAP-2 kinase.", "isseed": false, "uniprot": "P62714", "isvalid": true, "importance": 3 }, "position": { "x": 421.6251282503754, "y": 645.2791863091758 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAA1", "altered": 0, "rank": 78, "cited": 330, "uniprotdesc": "Catalytic subunit of AMP-activated protein kinase(AMPK), an energy sensor protein kinase that plays a key role inregulating cellular energy metabolism. In response to reduction ofintracellular ATP levels, AMPK activates energy-producing pathwaysand inhibits energy-consuming processes: inhibits protein,carbohydrate and lipid biosynthesis, as well as cell growth andproliferation. AMPK acts via direct phosphorylation of metabolicenzymes, and by longer-term effects via phosphorylation oftranscription regulators. Also acts as a regulator of cellularpolarity by remodeling the actin cytoskeleton; probably byindirectly activating myosin. Regulates lipid synthesis byphosphorylating and inactivating lipid metabolic enzymes such asACACA, ACACB, GYS1, HMGCR and LIPE; regulates fatty acid andcholesterol synthesis by phosphorylating acetyl-CoA carboxylase(ACACA and ACACB) and hormone-sensitive lipase (LIPE) enzymes,respectively. Regulates insulin-signaling and glycolysis byphosphorylating IRS1, PFKFB2 and PFKFB3. AMPK stimulates glucoseuptake in muscle by increasing the translocation of the glucosetransporter SLC2A4/GLUT4 to the plasma membrane, possibly bymediating phosphorylation of TBC1D4/AS160. Regulates transcriptionand chromatin structure by phosphorylating transcriptionregulators involved in energy metabolism such as CRTC2/TORC2,FOXO3, histone H2B, HDAC5, MEF2C, MLXIPL/ChREBP, EP300, HNF4A,p53/TP53, SREBF1, SREBF2 and PPARGC1A. Acts as a key regulator ofglucose homeostasis in liver by phosphorylating CRTC2/TORC2,leading to CRTC2/TORC2 sequestration in the cytoplasm. In responseto stress, phosphorylates 'Ser-36' of histone H2B (H2BS36ph),leading to promote transcription. Acts as a key regulator of cellgrowth and proliferation by phosphorylating TSC2, RPTOR andATG1/ULK1: in response to nutrient limitation, negativelyregulates the mTORC1 complex by phosphorylating RPTOR component ofthe mTORC1 complex and by phosphorylating and activating TSC2. Inresponse to nutrient limitation, promotes autophagy byphosphorylating and activating ATG1/ULK1. AMPK also acts as aregulator of circadian rhythm by mediating phosphorylation ofCRY1, leading to destabilize it. May regulate the Wnt signalingpathway by phosphorylating CTNNB1, leading to stabilize it. Alsohas tau-protein kinase activity: in response to amyloid beta A4protein (APP) exposure, activated by CAMKK2, leading tophosphorylation of MAPT/TAU; however the relevance of such dataremains unclear in vivo. Also phosphorylates CFTR, EEF2K, KLC1,NOS3 and SLC12A1. ", "isseed": false, "uniprot": "Q13131", "isvalid": true, "importance": 3 }, "position": { "x": 423.8531959706869, "y": 529.608236405968 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "BCL6", "altered": 0, "rank": 71, "cited": 404, "uniprotdesc": "Transcriptional repressor mainly required for germinalcenter (GC) formation and antibody affinity maturation which hasdifferent mechanisms of action specific to the lineage andbiological functions. Forms complexes with different corepressorsand histone deacetylases to repress the transcriptional expressionof different subsets of target genes. Represses its target genesby binding directly to the DNA sequence 5'-TTCCTAGAA-3' (BCL6-binding site) or indirectly by repressing the transcriptionalactivity of transcription factors. In GC B-cells, represses genesthat function in differentiation, inflammation, apoptosis and cellcycle control, also autoregulates its transcriptional expressionand up-regulates, indirectly, the expression of some genesimportant for GC reactions, such as AICDA, through the repressionof microRNAs expression, like miR155. An important function is toallow GC B-cells to proliferate very rapidly in response to T-celldependent antigens and tolerate the physiological DNA breaksrequired for immunglobulin class switch recombination and somatichypermutation without inducing a p53/TP53-dependent apoptoticresponse. In follicular helper CD4(+) T-cells (T(FH) cells),promotes the expression of T(FH)-related genes but inhibits thedifferentiation of T(H)1, T(H)2 and T(H)17 cells. Also requiredfor the establishment and maintenance of immunological memory forboth T- and B-cells. Suppresses macrophage proliferation throughcompetition with STAT5 for STAT-binding motifs binding on certaintarget genes, such as CCL2 and CCND2. In response to genotoxicstress, controls cell cycle arrest in GC B-cells in both p53/TP53-dependedent and -independent manners. Besides, also controlsneurogenesis through the alteration of the composition of NOTCH-dependent transcriptional complexes at selective NOTCH targets,such as HES5, including the recruitment of the deacetylase SIRT1and resulting in an epigenetic silencing leading to neuronaldifferentiation. ", "isseed": false, "uniprot": "P41182", "isvalid": true, "importance": 3 }, "position": { "x": 603.1471087750683, "y": 199.97253911396137 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAA2", "altered": 0, "rank": 29, "cited": 2074, "uniprotdesc": "Catalytic subunit of AMP-activated protein kinase(AMPK), an energy sensor protein kinase that plays a key role inregulating cellular energy metabolism. In response to reduction ofintracellular ATP levels, AMPK activates energy-producing pathwaysand inhibits energy-consuming processes: inhibits protein,carbohydrate and lipid biosynthesis, as well as cell growth andproliferation. AMPK acts via direct phosphorylation of metabolicenzymes, and by longer-term effects via phosphorylation oftranscription regulators. Also acts as a regulator of cellularpolarity by remodeling the actin cytoskeleton; probably byindirectly activating myosin. Regulates lipid synthesis byphosphorylating and inactivating lipid metabolic enzymes such asACACA, ACACB, GYS1, HMGCR and LIPE; regulates fatty acid andcholesterol synthesis by phosphorylating acetyl-CoA carboxylase(ACACA and ACACB) and hormone-sensitive lipase (LIPE) enzymes,respectively. Regulates insulin-signaling and glycolysis byphosphorylating IRS1, PFKFB2 and PFKFB3. AMPK stimulates glucoseuptake in muscle by increasing the translocation of the glucosetransporter SLC2A4/GLUT4 to the plasma membrane, possibly bymediating phosphorylation of TBC1D4/AS160. Regulates transcriptionand chromatin structure by phosphorylating transcriptionregulators involved in energy metabolism such as CRTC2/TORC2,FOXO3, histone H2B, HDAC5, MEF2C, MLXIPL/ChREBP, EP300, HNF4A,p53/TP53, SREBF1, SREBF2 and PPARGC1A. Acts as a key regulator ofglucose homeostasis in liver by phosphorylating CRTC2/TORC2,leading to CRTC2/TORC2 sequestration in the cytoplasm. In responseto stress, phosphorylates 'Ser-36' of histone H2B (H2BS36ph),leading to promote transcription. Acts as a key regulator of cellgrowth and proliferation by phosphorylating TSC2, RPTOR andATG1/ULK1: in response to nutrient limitation, negativelyregulates the mTORC1 complex by phosphorylating RPTOR component ofthe mTORC1 complex and by phosphorylating and activating TSC2. Inresponse to nutrient limitation, promotes autophagy byphosphorylating and activating ATG1/ULK1. AMPK also acts as aregulator of circadian rhythm by mediating phosphorylation ofCRY1, leading to destabilize it. May regulate the Wnt signalingpathway by phosphorylating CTNNB1, leading to stabilize it. Alsophosphorylates CFTR, EEF2K, KLC1, NOS3 and SLC12A1.", "isseed": false, "uniprot": "P54646", "isvalid": true, "importance": 3 }, "position": { "x": 607.5402207662042, "y": 507.5485495076306 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CSNK1A1", "altered": 0, "rank": 162, "cited": 27, "uniprotdesc": "Casein kinases are operationally defined by theirpreferential utilization of acidic proteins such as caseins assubstrates. It can phosphorylate a large number of proteins.Participates in Wnt signaling. Phosphorylates CTNNB1 at 'Ser-45'.May phosphorylate PER1 and PER2. May play a role in segregatingchromosomes during mitosis. ", "isseed": false, "uniprot": "P48729", "isvalid": true, "importance": 3 }, "position": { "x": 371.6734078535258, "y": 660.8862308836631 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TRIM28", "altered": 0, "rank": 95, "cited": 210, "uniprotdesc": "Nuclear corepressor for KRAB domain-containing zincfinger proteins (KRAB-ZFPs). Mediates gene silencing by recruitingCHD3, a subunit of the nucleosome remodeling and deacetylation(NuRD) complex, and SETDB1 (which specifically methylates histoneH3 at 'Lys-9' (H3K9me)) to the promoter regions of KRAB targetgenes. Enhances transcriptional repression by coordinating theincrease in H3K9me, the decrease in histone H3 'Lys-9 and 'Lys-14'acetylation (H3K9ac and H3K14ac, respectively) and the dispositionof HP1 proteins to silence gene expression. Recruitment of SETDB1induces heterochromatinization. May play a role as a coactivatorfor CEBPB and NR3C1 in the transcriptional activation of ORM1.Also corepressor for ERBB4. Inhibits E2F1 activity by stimulatingE2F1-HDAC1 complex formation and inhibiting E2F1 acetylation. Mayserve as a partial backup to prevent E2F1-mediated apoptosis inthe absence of RB1. Important regulator of CDKN1A/p21(CIP1). HasE3 SUMO-protein ligase activity toward itself via its PHD-typezinc finger. Also specifically sumoylates IRF7, thereby inhibitingits transactivation activity. Ubiquitinates p53/TP53 leading toits proteosomal degradation; the function is enhanced by MAGEC2and MAGEA2, and possibly MAGEA3 and MAGEA6. Mediates the nuclearlocalization of KOX1, ZNF268 and ZNF300 transcription factors.", "isseed": false, "uniprot": "Q13263", "isvalid": true, "importance": 3 }, "position": { "x": 632.2622041434295, "y": 765.1066361517337 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK11", "altered": 0, "rank": 127, "cited": 81, "uniprotdesc": "Serine/threonine kinase which acts as an essentialcomponent of the MAP kinase signal transduction pathway. MAPK11 isone of the four p38 MAPKs which play an important role in thecascades of cellular responses evoked by extracellular stimulisuch as proinflammatory cytokines or physical stress leading todirect activation of transcription factors. Accordingly, p38 MAPKsphosphorylate a broad range of proteins and it has been estimatedthat they may have approximately 200 to 300 substrates each.MAPK11 functions are mostly redundant with those of MAPK14. Someof the targets are downstream kinases which are activated throughphosphorylation and further phosphorylate additional targets.RPS6KA5/MSK1 and RPS6KA4/MSK2 can directly phosphorylate andactivate transcription factors such as CREB1, ATF1, the NF-kappa-Bisoform RELA/NFKB3, STAT1 and STAT3, but can also phosphorylatehistone H3 and the nucleosomal protein HMGN1. RPS6KA5/MSK1 andRPS6KA4/MSK2 play important roles in the rapid induction ofimmediate-early genes in response to stress or mitogenic stimuli,either by inducing chromatin remodeling or by recruiting thetranscription machinery. On the other hand, two other kinasetargets, MAPKAPK2/MK2 and MAPKAPK3/MK3, participate in the controlof gene expression mostly at the post-transcriptional level, byphosphorylating ZFP36 (tristetraprolin) and ELAVL1, and byregulating EEF2K, which is important for the elongation of mRNAduring translation. MKNK1/MNK1 and MKNK2/MNK2, two other kinasesactivated by p38 MAPKs, regulate protein synthesis byphosphorylating the initiation factor EIF4E2. In the cytoplasm,the p38 MAPK pathway is an important regulator of proteinturnover. For example, CFLAR is an inhibitor of TNF-inducedapoptosis whose proteasome-mediated degradation is regulated byp38 MAPK phosphorylation. Ectodomain shedding of transmembraneproteins is regulated by p38 MAPKs as well. In response toinflammatory stimuli, p38 MAPKs phosphorylate the membrane-associated metalloprotease ADAM17. Such phosphorylation isrequired for ADAM17-mediated ectodomain shedding of TGF-alphafamily ligands, which results in the activation of EGFR signalingand cell proliferation. Additional examples of p38 MAPK substratesare the FGFR1. FGFR1 can be translocated from the extracellularspace into the cytosol and nucleus of target cells, and regulatesprocesses such as rRNA synthesis and cell growth. FGFR1translocation requires p38 MAPK activation. In the nucleus, manytranscription factors are phosphorylated and activated by p38MAPKs in response to different stimuli. Classical examples includeATF1, ATF2, ATF6, ELK1, PTPRH, DDIT3, TP53/p53 and MEF2C andMEF2A. The p38 MAPKs are emerging as important modulators of geneexpression by regulating chromatin modifiers and remodelers. Thepromoters of several genes involved in the inflammatory response,such as IL6, IL8 and IL12B, display a p38 MAPK-dependentenrichment of histone H3 phosphorylation on 'Ser-10' (H3S10ph) inLPS-stimulated myeloid cells. This phosphorylation enhances theaccessibility of the cryptic NF-kappa-B-binding sites markingpromoters for increased NF-kappa-B recruitment.", "isseed": false, "uniprot": "Q15759", "isvalid": true, "importance": 3 }, "position": { "x": 665.9726569005197, "y": 599.9344550139408 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SNAI2", "altered": 0, "rank": 107, "cited": 156, "uniprotdesc": "Transcriptional repressor that modulates both activator-dependent and basal transcription. Involved in the generation andmigration of neural crest cells. Plays a role in mediating RAF1-induced transcriptional repression of the TJ protein, occludin(OCLN) and subsequent oncogenic transformation of epithelial cells(By similarity). Represses BRCA2 expression by binding to its E2-box-containing silencer and recruiting CTBP1 and HDAC1 in breastcells. In epidermal keratinocytes, binds to the E-box in ITGA3promoter and represses its transcription. Involved in theregulation of ITGB1 and ITGB4 expression and cell adhesion andproliferation in epidermal keratinocytes. Binds to E-box2 domainof BSG and activates its expression during TGFB1-inducedepithelial-mesenchymal transition (EMT) in hepatocytes. RepressesE-Cadherin/CDH1 transcription via E-box elements. Involved inosteoblast maturation. Binds to RUNX2 and SOC9 promoters and mayact as a positive and negative transcription regulator,respectively, in osteoblasts. Binds to CXCL12 promoter via E-boxregions in mesenchymal stem cells and osteoblasts. Plays anessential role in TWIST1-induced EMT and its ability to promoteinvasion and metastasis. ", "isseed": false, "uniprot": "O43623", "isvalid": true, "importance": 3 }, "position": { "x": 70.26955546111448, "y": 675.4370196728021 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP73", "altered": 0, "rank": 116, "cited": 124, "uniprotdesc": "Participates in the apoptotic response to DNA damage.Isoforms containing the transactivation domain are pro-apoptotic,isoforms lacking the domain are anti-apoptotic and block thefunction of p53 and transactivating p73 isoforms. May be a tumorsuppressor protein. ", "isseed": false, "uniprot": "O15350", "isvalid": true, "importance": 3 }, "position": { "x": 539.647261129666, "y": 618.9662485713551 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53RK", "altered": 0, "rank": 168, "cited": 18, "uniprotdesc": "Component of the EKC/KEOPS complex that is required forthe formation of a threonylcarbamoyl group on adenosine atposition 37 (t(6)A37) in tRNAs that read codons beginning withadenine. The complex is probably involved in the transfer of thethreonylcarbamoyl moiety of threonylcarbamoyl-AMP (TC-AMP) to theN6 group of A37. TP53RK has ATPase activity in the context of theEKC/KEOPS complex and likely plays a supporting role to thecatalytic subunit OSGEP (By similarity). Atypical protein kinasethat phosphorylates 'Ser-15' of p53/TP53 protein and may thereforeparticipate in its activation. ", "isseed": false, "uniprot": "Q96S44", "isvalid": true, "importance": 3 }, "position": { "x": 783.1653568148814, "y": 561.5424764576902 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CCNB1", "altered": 0, "rank": 62, "cited": 491, "uniprotdesc": "Essential for the control of the cell cycle at the G2/M(mitosis) transition. ", "isseed": false, "uniprot": "P14635", "isvalid": true, "importance": 3 }, "position": { "x": 309.48067164859214, "y": 548.0532102053966 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "DUSP5", "altered": 0, "rank": 124, "cited": 89, "uniprotdesc": "Displays phosphatase activity toward several substrates.The highest relative activity is toward ERK1.", "isseed": false, "uniprot": "Q16690", "isvalid": true, "importance": 3 }, "position": { "x": 785.4643326101716, "y": 354.1067973835751 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "AFP", "altered": 0, "rank": 11, "cited": 4006, "uniprotdesc": "Binds copper, nickel, and fatty acids as well as, andbilirubin less well than, serum albumin. Only a small percentage(less than 2%) of the human AFP shows estrogen-binding properties.", "isseed": false, "uniprot": "P02771", "isvalid": true, "importance": 3 }, "position": { "x": 688.5813156151305, "y": 541.6404507733746 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "DKK1", "altered": 0, "rank": 60, "cited": 508, "uniprotdesc": "Antagonizes canonical Wnt signaling by inhibiting LRP5/6interaction with Wnt and by forming a ternary complex with thetransmembrane protein KREMEN that promotes internalization ofLRP5/6. DKKs play an important role in vertebrate development,where they locally inhibit Wnt regulated processes such as antero-posterior axial patterning, limb development, somitogenesis andeye formation. In the adult, Dkks are implicated in bone formationand bone disease, cancer and Alzheimer disease.", "isseed": false, "uniprot": "O94907", "isvalid": true, "importance": 3 }, "position": { "x": 649.5583253603717, "y": 720.8422028075267 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "DUSP1", "altered": 0, "rank": 58, "cited": 541, "uniprotdesc": "Dual specificity phosphatase that dephosphorylates MAPkinase MAPK1/ERK2 on both 'Thr-183' and 'Tyr-185', regulating itsactivity during the meiotic cell cycle. ", "isseed": false, "uniprot": "P28562", "isvalid": true, "importance": 3 }, "position": { "x": 555.9958688894983, "y": 332.45626717902866 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK12", "altered": 0, "rank": 131, "cited": 79, "uniprotdesc": "Serine/threonine kinase which acts as an essentialcomponent of the MAP kinase signal transduction pathway. MAPK12 isone of the four p38 MAPKs which play an important role in thecascades of cellular responses evoked by extracellular stimulisuch as proinflammatory cytokines or physical stress leading todirect activation of transcription factors such as ELK1 and ATF2.Accordingly, p38 MAPKs phosphorylate a broad range of proteins andit has been estimated that they may have approximately 200 to 300substrates each. Some of the targets are downstream kinases suchas MAPKAPK2, which are activated through phosphorylation andfurther phosphorylate additional targets. Plays a role in myoblastdifferentiation and also in the down-regulation of cyclin D1 inresponse to hypoxia in adrenal cells suggesting MAPK12 may inhibitcell proliferation while promoting differentiation. PhosphorylatesDLG1. Following osmotic shock, MAPK12 in the cell nucleusincreases its association with nuclear DLG1, thereby causingdissociation of DLG1-SFPQ complexes. This function is independentof its catalytic activity and could affect mRNA processing and/orgene transcription to aid cell adaptation to osmolarity changes inthe environment. Regulates UV-induced checkpoint signaling andrepair of UV-induced DNA damage and G2 arrest after gamma-radiation exposure. MAPK12 is involved in the regulation of SLC2A1expression and basal glucose uptake in L6 myotubes; and negativelyregulates SLC2A4 expression and contraction-mediated glucoseuptake in adult skeletal muscle. C-Jun (JUN) phosphorylation isstimulated by MAPK14 and inhibited by MAPK12, leading to adistinct AP-1 regulation. MAPK12 is required for the normalkinetochore localization of PLK1, prevents chromosomal instabilityand supports mitotic cell viability. MAPK12-signaling is alsopositively regulating the expansion of transient amplifyingmyogenic precursor cells during muscle growth and regeneration.", "isseed": false, "uniprot": "P53778", "isvalid": true, "importance": 3 }, "position": { "x": 637.3516915553924, "y": 672.7714356361547 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CSNK1D", "altered": 0, "rank": 169, "cited": 18, "uniprotdesc": "Essential serine/threonine-protein kinase that regulatesdiverse cellular growth and survival processes including Wntsignaling, DNA repair and circadian rhythms. It can phosphorylatea large number of proteins. Casein kinases are operationallydefined by their preferential utilization of acidic proteins suchas caseins as substrates. Phosphorylates connexin-43/GJA1, MAP1A,SNAPIN, MAPT/TAU, TOP2A, DCK, HIF1A, EIF6, p53/TP53, DVL2, DVL3,ESR1, AIB1/NCOA3, DNMT1, PKD2, YAP1, PER1 and PER2. Centralcomponent of the circadian clock. In balance with PP1, determinesthe circadian period length through the regulation of the speedand rhythmicity of PER1 and PER2 phospohorylation. Controls PER1and PER2 nuclear transport and degradation. YAP1 phosphorylationpromotes its SCF(beta-TRCP) E3 ubiquitin ligase-mediatedubiquitination and subsequent degradation. DNMT1 phosphorylationreduces its DNA-binding activity. Phosphorylation of ESR1 andAIB1/NCOA3 stimulates their activity and coactivation.Phosphorylation of DVL2 and DVL3 regulates WNT3A signaling pathwaythat controls neurite outgrowth. EIF6 phosphorylation promotes itsnuclear export. Triggers down-regulation of dopamine receptors inthe forebrain. Activates DCK in vitro by phosphorylation. TOP2Aphosphorylation favors DNA cleavable complex formation. Mayregulate the formation of the mitotic spindle apparatus inextravillous trophoblast. Modulates connexin-43/GJA1 gap junctionassembly by phosphorylation. Probably involved in lymphocytephysiology. Regulates fast synaptic transmission mediated byglutamate. ", "isseed": false, "uniprot": "P48730", "isvalid": true, "importance": 3 }, "position": { "x": 384.17355236916507, "y": 905.554195622183 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK13", "altered": 0, "rank": 126, "cited": 88, "uniprotdesc": "Serine/threonine kinase which acts as an essentialcomponent of the MAP kinase signal transduction pathway. MAPK13 isone of the four p38 MAPKs which play an important role in thecascades of cellular responses evoked by extracellular stimulisuch as proinflammatory cytokines or physical stress leading todirect activation of transcription factors such as ELK1 and ATF2.Accordingly, p38 MAPKs phosphorylate a broad range of proteins andit has been estimated that they may have approximately 200 to 300substrates each. MAPK13 is one of the less studied p38 MAPKisoforms. Some of the targets are downstream kinases such asMAPKAPK2, which are activated through phosphorylation and furtherphosphorylate additional targets. Plays a role in the regulationof protein translation by phosphorylating and inactivating EEF2K.Involved in cytoskeletal remodeling through phosphorylation ofMAPT and STMN1. Mediates UV irradiation induced up-regulation ofthe gene expression of CXCL14. Plays an important role in theregulation of epidermal keratinocyte differentiation, apoptosisand skin tumor development. Phosphorylates the transcriptionalactivator MYB in response to stress which leads to rapid MYBdegradation via a proteasome-dependent pathway. MAPK13 alsophosphorylates and down-regulates PRKD1 during regulation ofinsulin secretion in pancreatic beta cells.", "isseed": false, "uniprot": "O15264", "isvalid": true, "importance": 3 }, "position": { "x": 469.6516306042837, "y": 639.081192373394 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CSNK1E", "altered": 0, "rank": 151, "cited": 41, "uniprotdesc": "Casein kinases are operationally defined by theirpreferential utilization of acidic proteins such as caseins assubstrates. Can phosphorylate a large number of proteins.Participates in Wnt signaling. Phosphorylates DVL1. Centralcomponent of the circadian clock. In balance with PP1, determinesthe circadian period length, through the regulation of the speedand rhythmicity of PER1 and PER2 phospohorylation. Controls PER1and PER2 nuclear transport and degradation. Inhibits cytokine-induced granuloytic differentiation. ", "isseed": false, "uniprot": "P49674", "isvalid": true, "importance": 3 }, "position": { "x": 158.56754304229133, "y": 824.3562174008958 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "GSK3B", "altered": 0, "rank": 86, "cited": 272, "uniprotdesc": "Constitutively active protein kinase that acts as anegative regulator in the hormonal control of glucose homeostasis,Wnt signaling and regulation of transcription factors andmicrotubules, by phosphorylating and inactivating glycogensynthase (GYS1 or GYS2), EIF2B, CTNNB1/beta-catenin, APC, AXIN1,DPYSL2/CRMP2, JUN, NFATC1/NFATC, MAPT/TAU and MACF1. Requiresprimed phosphorylation of the majority of its substrates. Inskeletal muscle, contributes to insulin regulation of glycogensynthesis by phosphorylating and inhibiting GYS1 activity andhence glycogen synthesis. May also mediate the development ofinsulin resistance by regulating activation of transcriptionfactors. Regulates protein synthesis by controlling the activityof initiation factor 2B (EIF2BE/EIF2B5) in the same manner asglycogen synthase. In Wnt signaling, GSK3B forms a multimericcomplex with APC, AXIN1 and CTNNB1/beta-catenin and phosphorylatesthe N-terminus of CTNNB1 leading to its degradation mediated byubiquitin/proteasomes. Phosphorylates JUN at sites proximal to itsDNA-binding domain, thereby reducing its affinity for DNA.Phosphorylates NFATC1/NFATC on conserved serine residues promotingNFATC1/NFATC nuclear export, shutting off NFATC1/NFATC generegulation, and thereby opposing the action of calcineurin.Phosphorylates MAPT/TAU on 'Thr-548', decreasing significantlyMAPT/TAU ability to bind and stabilize microtubules. MAPT/TAU isthe principal component of neurofibrillary tangles in Alzheimerdisease. Plays an important role in ERBB2-dependent stabilizationof microtubules at the cell cortex. Phosphorylates MACF1,inhibiting its binding to microtubules which is critical for itsrole in bulge stem cell migration and skin wound repair. Probablyregulates NF-kappa-B (NFKB1) at the transcriptional level and isrequired for the NF-kappa-B-mediated anti-apoptotic response toTNF-alpha (TNF/TNFA). Negatively regulates replication inpancreatic beta-cells, resulting in apoptosis, loss of beta-cellsand diabetes. Through phosphorylation of the anti-apoptoticprotein MCL1, may control cell apoptosis in response to growthfactors deprivation. Phosphorylates MUC1 in breast cancer cells,decreasing the interaction of MUC1 with CTNNB1/beta-catenin. Isnecessary for the establishment of neuronal polarity and axonoutgrowth. Phosphorylates MARK2, leading to inhibit its activity.Phosphorylates SIK1 at 'Thr-182', leading to sustain its activity.Phosphorylates ZC3HAV1 which enhances its antiviral activity.Phosphorylates SNAI1, leading to its BTRC-triggered ubiquitinationand proteasomal degradation. Phosphorylates SFPQ at 'Thr-687' uponT-cell activation. Phosphorylates NR1D1 st 'Ser-55' and 'Ser-59'and stabilizes it by protecting it from proteasomal degradation.Regulates the circadian clock via phosphorylation of the majorclock components including ARNTL/BMAL1, CLOCK and PER2.Phosphorylates CLOCK AT 'Ser-427' and targets it for proteasomaldegradation. Phosphorylates ARNTL/BMAL1 at 'Ser-17' and 'Ser-21'and primes it for ubiquitination and proteasomal degradation.Phosphorylates OGT at 'Ser-3' or 'Ser-4' which positivelyregulates its activity. ", "isseed": false, "uniprot": "P49841", "isvalid": true, "importance": 3 }, "position": { "x": 730.965600225939, "y": 703.2297240898027 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK14", "altered": 0, "rank": 23, "cited": 2528, "uniprotdesc": "Serine/threonine kinase which acts as an essentialcomponent of the MAP kinase signal transduction pathway. MAPK14 isone of the four p38 MAPKs which play an important role in thecascades of cellular responses evoked by extracellular stimulisuch as proinflammatory cytokines or physical stress leading todirect activation of transcription factors. Accordingly, p38 MAPKsphosphorylate a broad range of proteins and it has been estimatedthat they may have approximately 200 to 300 substrates each. Someof the targets are downstream kinases which are activated throughphosphorylation and further phosphorylate additional targets.RPS6KA5/MSK1 and RPS6KA4/MSK2 can directly phosphorylate andactivate transcription factors such as CREB1, ATF1, the NF-kappa-Bisoform RELA/NFKB3, STAT1 and STAT3, but can also phosphorylatehistone H3 and the nucleosomal protein HMGN1. RPS6KA5/MSK1 andRPS6KA4/MSK2 play important roles in the rapid induction ofimmediate-early genes in response to stress or mitogenic stimuli,either by inducing chromatin remodeling or by recruiting thetranscription machinery. On the other hand, two other kinasetargets, MAPKAPK2/MK2 and MAPKAPK3/MK3, participate in the controlof gene expression mostly at the post-transcriptional level, byphosphorylating ZFP36 (tristetraprolin) and ELAVL1, and byregulating EEF2K, which is important for the elongation of mRNAduring translation. MKNK1/MNK1 and MKNK2/MNK2, two other kinasesactivated by p38 MAPKs, regulate protein synthesis byphosphorylating the initiation factor EIF4E2. MAPK14 interactsalso with casein kinase II, leading to its activation throughautophosphorylation and further phosphorylation of TP53/p53. Inthe cytoplasm, the p38 MAPK pathway is an important regulator ofprotein turnover. For example, CFLAR is an inhibitor of TNF-induced apoptosis whose proteasome-mediated degradation isregulated by p38 MAPK phosphorylation. In a similar way, MAPK14phosphorylates the ubiquitin ligase SIAH2, regulating its activitytowards EGLN3. MAPK14 may also inhibit the lysosomal degradationpathway of autophagy by interfering with the intracellulartrafficking of the transmembrane protein ATG9. Another function ofMAPK14 is to regulate the endocytosis of membrane receptors bydifferent mechanisms that impinge on the small GTPase RAB5A. Inaddition, clathrin-mediated EGFR internalization induced byinflammatory cytokines and UV irradiation depends on MAPK14-mediated phosphorylation of EGFR itself as well as of RAB5Aeffectors. Ectodomain shedding of transmembrane proteins isregulated by p38 MAPKs as well. In response to inflammatorystimuli, p38 MAPKs phosphorylate the membrane-associatedmetalloprotease ADAM17. Such phosphorylation is required forADAM17-mediated ectodomain shedding of TGF-alpha family ligands,which results in the activation of EGFR signaling and cellproliferation. Another p38 MAPK substrate is FGFR1. FGFR1 can betranslocated from the extracellular space into the cytosol andnucleus of target cells, and regulates processes such as rRNAsynthesis and cell growth. FGFR1 translocation requires p38 MAPKactivation. In the nucleus, many transcription factors arephosphorylated and activated by p38 MAPKs in response to differentstimuli. Classical examples include ATF1, ATF2, ATF6, ELK1, PTPRH,DDIT3, TP53/p53 and MEF2C and MEF2A. The p38 MAPKs are emerging asimportant modulators of gene expression by regulating chromatinmodifiers and remodelers. The promoters of several genes involvedin the inflammatory response, such as IL6, IL8 and IL12B, displaya p38 MAPK-dependent enrichment of histone H3 phosphorylation on'Ser-10' (H3S10ph) in LPS-stimulated myeloid cells. Thisphosphorylation enhances the accessibility of the cryptic NF-kappa-B-binding sites marking promoters for increased NF-kappa-Brecruitment. Phosphorylates CDC25B and CDC25C which is requiredfor binding to 14-3-3 proteins and leads to initiation of a G2delay after ultraviolet radiation. Phosphorylates TIAR followingDNA damage, releasing TIAR from GADD45A mRNA and preventing mRNAdegradation. The p38 MAPKs may also have kinase-independent roles,which are thought to be due to the binding to targets in theabsence of phosphorylation. Protein O-Glc-N-acylation catalyzed bythe OGT is regulated by MAPK14, and, although OGT does not seem tobe phosphorylated by MAPK14, their interaction increases uponMAPK14 activation induced by glucose deprivation. This interactionmay regulate OGT activity by recruiting it to specific targetssuch as neurofilament H, stimulating its O-Glc-N-acylation.Required in mid-fetal development for the growth of embryo-derivedblood vessels in the labyrinth layer of the placenta. Also playsan essential role in developmental and stress-inducederythropoiesis, through regulation of EPO gene expression. IsoformMXI2 activation is stimulated by mitogens and oxidative stress andonly poorly phosphorylates ELK1 and ATF2. Isoform EXIP may play arole in the early onset of apoptosis. Phosphorylates S100A9 at'Thr-113'. ", "isseed": false, "uniprot": "Q16539", "isvalid": true, "importance": 3 }, "position": { "x": 433.4978884282915, "y": 607.2773773760463 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "BNIP3L", "altered": 0, "rank": 137, "cited": 67, "uniprotdesc": "Induces apoptosis. Interacts with viral and cellularanti-apoptosis proteins. Can overcome the suppressors BCL-2 andBCL-XL, although high levels of BCL-XL expression will inhibitapoptosis. Inhibits apoptosis induced by BNIP3. Involved inmitochondrial quality control via its interaction withSPATA18/MIEAP: in response to mitochondrial damage, participatesto mitochondrial protein catabolic process (also named MALM)leading to the degradation of damaged proteins insidemitochondria. The physical interaction of SPATA18/MIEAP, BNIP3 andBNIP3L/NIX at the mitochondrial outer membrane regulates theopening of a pore in the mitochondrial double membrane in order tomediate the translocation of lysosomal proteins from the cytoplasmto the mitochondrial matrix. May function as a tumor suppressor.", "isseed": false, "uniprot": "O60238", "isvalid": true, "importance": 3 }, "position": { "x": 318.80967305716206, "y": 930.6169009644001 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PERP", "altered": 0, "rank": 172, "cited": 17, "uniprotdesc": "Component of intercellular desmosome junctions. Plays arole in stratified epithelial integrity and cell-cell adhesion bypromoting desmosome assembly. Plays a role as an effector in theTP53-dependent apoptotic pathway (By similarity). ", "isseed": false, "uniprot": "Q96FX8", "isvalid": true, "importance": 3 }, "position": { "x": 346.2035139558667, "y": 382.85500429612796 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53INP1", "altered": 0, "rank": 153, "cited": 35, "uniprotdesc": "Antiproliferative and proapoptotic protein involved incell stress response which acts as a dual regulator oftranscription and autophagy. Acts as a positive regulator ofautophagy. In response to cellular stress or activation ofautophagy, relocates to autophagosomes where it interacts withautophagosome-associated proteins GABARAP, GABARAPL1/L2,MAP1LC3A/B/C and regulates autophagy. Acts as an antioxidant andplays a major role in p53/TP53-driven oxidative stress response.Possesses both a p53/TP53-independent intracellular reactiveoxygen species (ROS) regulatory function and a p53/TP53-dependenttranscription regulatory function. Positively regulates p53/TP53and p73/TP73 and stimulates their capacity to induce apoptosis andregulate cell cycle. In response to double-strand DNA breaks,promotes p53/TP53 phosphorylation on 'Ser-46' and subsequentapoptosis. Acts as a tumor suppressor by inducing cell death by anautophagy and caspase-dependent mechanism. Can reduce cellmigration by regulating the expression of SPARC.", "isseed": false, "uniprot": "Q96A56", "isvalid": true, "importance": 3 }, "position": { "x": 933.5019304835777, "y": 646.8243947636541 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "BARD1", "altered": 0, "rank": 203, "cited": 359, "uniprotdesc": "Probable E3 ubiquitin-protein ligase. The BRCA1-BARD1heterodimer specifically mediates the formation of 'Lys-6'-linkedpolyubiquitin chains and coordinates a diverse range of cellularpathways such as DNA damage repair, ubiquitination andtranscriptional regulation to maintain genomic stability. Plays acentral role in the control of the cell cycle in response to DNAdamage. Acts by mediating ubiquitin E3 ligase activity that isrequired for its tumor suppressor function. Also forms aheterodimer with CSTF1/CSTF-50 to modulate mRNA processing andRNAP II stability by inhibiting pre-mRNA 3' cleavage.", "isseed": false, "uniprot": "Q99728", "isvalid": true, "importance": 2 }, "position": { "x": 857.7442550584816, "y": 402.45336338604807 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "RPS27L", "altered": 0, "rank": 186, "cited": 6, "uniprotdesc": "", "isseed": false, "uniprot": "Q71UM5", "isvalid": true, "importance": 3 }, "position": { "x": 334.00875412019, "y": 485.4834957472843 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PMAIP1", "altered": 0, "rank": 114, "cited": 136, "uniprotdesc": "Promotes activation of caspases and apoptosis. Promotesmitochondrial membrane changes and efflux of apoptogenic proteinsfrom the mitochondria. Contributes to p53/TP53-dependent apoptosisafter radiation exposure. Promotes proteasomal degradation ofMCL1. Competes with BAK1 for binding to MCL1 and can displace BAK1from its binding site on MCL1 (By similarity). Competes withBIM/BCL2L11 for binding to MCL1 and can displace BIM/BCL2L11 fromits binding site on MCL1. ", "isseed": false, "uniprot": "Q13794", "isvalid": true, "importance": 3 }, "position": { "x": 452.3779491756962, "y": 886.3341194591624 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MMP2", "altered": 0, "rank": 10, "cited": 4050, "uniprotdesc": "Ubiquitinous metalloproteinase that is involved indiverse functions such as remodeling of the vasculature,angiogenesis, tissue repair, tumor invasion, inflammation, andatherosclerotic plaque rupture. As well as degrading extracellularmatrix proteins, can also act on several nonmatrix proteins suchas big endothelial 1 and beta-type CGRP promotingvasoconstriction. Also cleaves KISS at a Gly-|-Leu bond. Appearsto have a role in myocardial cell death pathways. Contributes tomyocardial oxidative stress by regulating the activity ofGSK3beta. Cleaves GSK3beta in vitro. Involved in the formation ofthe fibrovascular tissues in association with MMP14.PEX, the C-terminal non-catalytic fragment of MMP2,posseses anti-angiogenic and anti-tumor properties and inhibitscell migration and cell adhesion to FGF2 and vitronectin. Ligandfor integrinv/beta3 on the surface of blood vessels.Isoform 2: Mediates the proteolysis of CHUK/IKKA andinitiates a primary innate immune response by inducingmitochondrial-nuclear stress signaling with activation of the pro-inflammatory NF-kappaB, NFAT and IRF transcriptional pathways.", "isseed": false, "uniprot": "P08253", "isvalid": true, "importance": 3 }, "position": { "x": 222.30168358624883, "y": 682.6984129477325 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "C12orf5", "altered": 0, "rank": 194, "cited": 3, "uniprotdesc": null, "isseed": false, "uniprot": null, "isvalid": true, "importance": 3 }, "position": { "x": 260.6402808294855, "y": 606.755758856589 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "NLRC4", "altered": 0, "rank": 144, "cited": 59, "uniprotdesc": "Key component of inflammasomes that indirectly sensesspecific proteins from pathogenic bacteria and fungi and respondsby assembling an inflammasome complex that promotes caspase-1activation, cytokine production and macrophage pyroptosis.", "isseed": false, "uniprot": "Q9NPP4", "isvalid": true, "importance": 3 }, "position": { "x": 812.7635417443935, "y": 241.84389303863665 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CSNK2A1", "altered": 0, "rank": 93, "cited": 230, "uniprotdesc": "Catalytic subunit of a constitutively activeserine/threonine-protein kinase complex that phosphorylates alarge number of substrates containing acidic residues C-terminalto the phosphorylated serine or threonine. Regulates numerouscellular processes, such as cell cycle progression, apoptosis andtranscription, as well as viral infection. May act as a regulatorynode which integrates and coordinates numerous signals leading toan appropriate cellular response. During mitosis, functions as acomponent of the p53/TP53-dependent spindle assembly checkpoint(SAC) that maintains cyclin-B-CDK1 activity and G2 arrest inresponse to spindle damage. Also required for p53/TP53-mediatedapoptosis, phosphorylating 'Ser-392' of p53/TP53 following UVirradiation. Can also negatively regulate apoptosis.Phosphorylates the caspases CASP9 and CASP2 and the apoptoticregulator NOL3. Phosphorylation protects CASP9 from cleavage andactivation by CASP8, and inhibits the dimerization of CASP2 andactivation of CASP8. Regulates transcription by directphosphorylation of RNA polymerases I, II, III and IV. Alsophosphorylates and regulates numerous transcription factorsincluding NF-kappa-B, STAT1, CREB1, IRF1, IRF2, ATF1, SRF, MAX,JUN, FOS, MYC and MYB. Phosphorylates Hsp90 and its co-chaperonesFKBP4 and CDC37, which is essential for chaperone function.Regulates Wnt signaling by phosphorylating CTNNB1 and thetranscription factor LEF1. Acts as an ectokinase thatphosphorylates several extracellular proteins. During viralinfection, phosphorylates various proteins involved in the virallife cycles of EBV, HSV, HBV, HCV, HIV, CMV and HPV.Phosphorylates PML at 'Ser-565' and primes it for ubiquitin-mediated degradation. Plays an important role in the circadianclock function by phosphorylating ARNTL/BMAL1 at 'Ser-90' which ispivotal for its interaction with CLOCK and which controls CLOCKnuclear entry. ", "isseed": false, "uniprot": "P68400", "isvalid": true, "importance": 3 }, "position": { "x": 237.65214390491954, "y": 883.7517958418963 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PMS2", "altered": 0, "rank": 59, "cited": 537, "uniprotdesc": "Component of the post-replicative DNA mismatch repairsystem (MMR). Heterodimerizes with MLH1 to form MutL alpha. DNArepair is initiated by MutS alpha (MSH2-MSH6) or MutS beta (MSH2-MSH6) binding to a dsDNA mismatch, then MutL alpha is recruited tothe heteroduplex. Assembly of the MutL-MutS-heteroduplex ternarycomplex in presence of RFC and PCNA is sufficient to activateendonuclease activity of PMS2. It introduces single-strand breaksnear the mismatch and thus generates new entry points for theexonuclease EXO1 to degrade the strand containing the mismatch.DNA methylation would prevent cleavage and therefore assure thatonly the newly mutated DNA strand is going to be corrected. MutLalpha (MLH1-PMS2) interacts physically with the clamp loadersubunits of DNA polymerase III, suggesting that it may play a roleto recruit the DNA polymerase III to the site of the MMR. Alsoimplicated in DNA damage signaling, a process which induces cellcycle arrest and can lead to apoptosis in case of major DNAdamages. ", "isseed": false, "uniprot": "P54278", "isvalid": true, "importance": 3 }, "position": { "x": 694.723263764763, "y": 174.62887688437698 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKACA", "altered": 0, "rank": 196, "cited": 2, "uniprotdesc": "Phosphorylates a large number of substrates in thecytoplasm and the nucleus. Regulates the abundance ofcompartmentalized pools of its regulatory subunits throughphosphorylation of PJA2 which binds and ubiquitinates thesesubunits, leading to their subsequent proteolysis. PhosphorylatesCDC25B, ABL1, NFKB1, CLDN3, PSMC5/RPT6, PJA2, RYR2, RORA and VASP.RORA is activated by phosphorylation. Required for glucose-mediated adipogenic differentiation increase and osteogenicdifferentiation inhibition from osteoblasts. Involved in theregulation of platelets in response to thrombin and collagen;maintains circulating platelets in a resting state byphosphorylating proteins in numerous platelet inhibitory pathwayswhen in complex with NF-kappa-B (NFKB1 and NFKB2) and I-kappa-B-alpha (NFKBIA), but thrombin and collagen disrupt these complexesand free active PRKACA stimulates platelets and leads to plateletaggregation by phosphorylating VASP. Prevents theantiproliferative and anti-invasive effects of alpha-difluoromethylornithine in breast cancer cells when activated.RYR2 channel activity is potentiated by phosphorylation inpresence of luminal Ca(2+), leading to reduced amplitude andincreased frequency of store overload-induced Ca(2+) release(SOICR) characterized by an increased rate of Ca(2+) release andpropagation velocity of spontaneous Ca(2+) waves, despite reducedwave amplitude and resting cytosolic Ca(2+). PSMC5/RPT6 activationby phosphorylation stimulates proteasome. Negatively regulatestight junctions (TJs) in ovarian cancer cells via CLDN3phosphorylation. NFKB1 phosphorylation promotes NF-kappa-B p50-p50DNA binding. Involved in embryonic development by down-regulatingthe Hedgehog (Hh) signaling pathway that determines embryo patternformation and morphogenesis. Prevents meiosis resumption inprophase-arrested oocytes via CDC25B inactivation byphosphorylation. May also regulate rapid eye movement (REM) sleepin the pedunculopontine tegmental (PPT). Phosphorylates APOBEC3Gand AICDA. Isoform 2 phosphorylates and activates ABL1 in spermflagellum to promote spermatozoa capacitation.", "isseed": false, "uniprot": "P17612", "isvalid": true, "importance": 3 }, "position": { "x": 420.5855217356488, "y": 950 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53AIP1", "altered": 0, "rank": 192, "cited": 3, "uniprotdesc": "May play an important role in mediating p53/TP53-dependent apoptosis. ", "isseed": false, "uniprot": "Q9HCN2", "isvalid": true, "importance": 3 }, "position": { "x": 128.40499823686412, "y": 550.657306599679 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "EGFR", "altered": 0, "rank": 3, "cited": 11851, "uniprotdesc": "Receptor tyrosine kinase binding ligands of the EGFfamily and activating several signaling cascades to convertextracellular cues into appropriate cellular responses. Knownligands include EGF, TGFA/TGF-alpha, amphiregulin, epigen/EPGN,BTC/betacellulin, epiregulin/EREG and HBEGF/heparin-binding EGF.Ligand binding triggers receptor homo- and/or heterodimerizationand autophosphorylation on key cytoplasmic residues. Thephosphorylated receptor recruits adapter proteins like GRB2 whichin turn activates complex downstream signaling cascades. Activatesat least 4 major downstream signaling cascades including the RAS-RAF-MEK-ERK, PI3 kinase-AKT, PLCgamma-PKC and STATs modules. Mayalso activate the NF-kappa-B signaling cascade. Also directlyphosphorylates other proteins like RGS16, activating its GTPaseactivity and probably coupling the EGF receptor signaling to the Gprotein-coupled receptor signaling. Also phosphorylates MUC1 andincreases its interaction with SRC and CTNNB1/beta-catenin.Isoform 2 may act as an antagonist of EGF action.", "isseed": false, "uniprot": "P00533", "isvalid": true, "importance": 3 }, "position": { "x": 354.16012075930763, "y": 161.32209528494656 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CSNK1G1", "altered": 0, "rank": 198, "cited": 1, "uniprotdesc": "Serine/threonine-protein kinase. Casein kinases areoperationally defined by their preferential utilization of acidicproteins such as caseins as substrates. It can phosphorylate alarge number of proteins. Participates in Wnt signaling. Regulatesfast synaptic transmission mediated by glutamate (By similarity).Phosphorylates CLSPN. ", "isseed": false, "uniprot": "Q9HCP0", "isvalid": true, "importance": 3 }, "position": { "x": 320.23320111858595, "y": 872.7845074937999 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CSNK1G2", "altered": 0, "rank": 163, "cited": 25, "uniprotdesc": "Serine/threonine-protein kinase. Casein kinases areoperationally defined by their preferential utilization of acidicproteins such as caseins as substrates. It can phosphorylate alarge number of proteins. Participates in Wnt signaling.Phosphorylates COL4A3BP/CERT, MTA1 and SMAD3. Involved in braindevelopment and vesicular trafficking and neurotransmitterreleasing from small synaptic vesicles. Regulates fast synaptictransmission mediated by glutamate. SMAD3 phosphorylation promotesits ligand-dependent ubiquitination and subsequent proteasomedegradation, thus inhibiting SMAD3-mediated TGF-beta responses.Hyperphosphorylation of the serine-repeat motif of COL4A3BP/CERTleads to its inactivation by dissociation from the Golgi complex,thus down-regulating ER-to-Golgi transport of ceramide andsphingomyelin synthesis. Triggers PER1 proteasomal degradationprobably through phosphorylation. ", "isseed": false, "uniprot": "P78368", "isvalid": true, "importance": 3 }, "position": { "x": 456.69691708016194, "y": 328.03098496937554 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAB2", "altered": 0, "rank": 189, "cited": 4, "uniprotdesc": "Non-catalytic subunit of AMP-activated protein kinase(AMPK), an energy sensor protein kinase that plays a key role inregulating cellular energy metabolism. In response to reduction ofintracellular ATP levels, AMPK activates energy-producing pathwaysand inhibits energy-consuming processes: inhibits protein,carbohydrate and lipid biosynthesis, as well as cell growth andproliferation. AMPK acts via direct phosphorylation of metabolicenzymes, and by longer-term effects via phosphorylation oftranscription regulators. Also acts as a regulator of cellularpolarity by remodeling the actin cytoskeleton; probably byindirectly activating myosin. Beta non-catalytic subunit acts as ascaffold on which the AMPK complex assembles, via its C-terminusthat bridges alpha (PRKAA1 or PRKAA2) and gamma subunits (PRKAG1,PRKAG2 or PRKAG3).", "isseed": false, "uniprot": "O43741", "isvalid": true, "importance": 3 }, "position": { "x": 557.5554169526856, "y": 483.82675333960515 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAB1", "altered": 0, "rank": 73, "cited": 368, "uniprotdesc": "Non-catalytic subunit of AMP-activated protein kinase(AMPK), an energy sensor protein kinase that plays a key role inregulating cellular energy metabolism. In response to reduction ofintracellular ATP levels, AMPK activates energy-producing pathwaysand inhibits energy-consuming processes: inhibits protein,carbohydrate and lipid biosynthesis, as well as cell growth andproliferation. AMPK acts via direct phosphorylation of metabolicenzymes, and by longer-term effects via phosphorylation oftranscription regulators. Also acts as a regulator of cellularpolarity by remodeling the actin cytoskeleton; probably byindirectly activating myosin. Beta non-catalytic subunit acts as ascaffold on which the AMPK complex assembles, via its C-terminusthat bridges alpha (PRKAA1 or PRKAA2) and gamma subunits (PRKAG1,PRKAG2 or PRKAG3).", "isseed": false, "uniprot": "Q9Y478", "isvalid": true, "importance": 3 }, "position": { "x": 600.7672573884455, "y": 546.5663364811252 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "DDIT4", "altered": 0, "rank": 145, "cited": 55, "uniprotdesc": "Regulates cell growth, proliferation and survival viainhibition of the activity of the mammalian target of rapamycincomplex 1 (mTORC1). Inhibition of mTORC1 is mediated by a pathwaythat involves DDIT4/REDD1, AKT1, the TSC1-TSC2 complex and theGTPase RHEB. Plays an important role in responses to cellularenergy levels and cellular stress, including responses to hypoxiaand DNA damage. Regulates p53/TP53-mediated apoptosis in responseto DNA damage via its effect on mTORC1 activity. Its role in theresponse to hypoxia depends on the cell type; it mediates mTORC1inhibition in fibroblasts and thymocytes, but not in hepatocytes(By similarity). Required for mTORC1-mediated defense againstviral protein synthesis and virus replication (By similarity).Inhibits neuronal differentiation and neurite outgrowth mediatedby NGF via its effect on mTORC1 activity. Required for normalneuron migration during embryonic brain development. Plays a rolein neuronal cell death. ", "isseed": false, "uniprot": "Q9NX09", "isvalid": true, "importance": 3 }, "position": { "x": 580.2951707089753, "y": 741.5876396056142 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAP4K4", "altered": 0, "rank": 141, "cited": 62, "uniprotdesc": null, "isseed": false, "uniprot": null, "isvalid": true, "importance": 3 }, "position": { "x": 807.7538349952035, "y": 777.0494953111878 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "EP300", "altered": 0, "rank": 19, "cited": 2835, "uniprotdesc": "Functions as histone acetyltransferase and regulatestranscription via chromatin remodeling. Acetylates all four corehistones in nucleosomes. Histone acetylation gives an epigenetictag for transcriptional activation. Mediates cAMP-gene regulationby binding specifically to phosphorylated CREB protein. Mediatesacetylation of histone H3 at 'Lys-122' (H3K122ac), a modificationthat localizes at the surface of the histone octamer andstimulates transcription, possibly by promoting nucleosomeinstability. Mediates acetylation of histone H3 at 'Lys-27'(H3K27ac). Also functions as acetyltransferase for nonhistonetargets. Acetylates 'Lys-131' of ALX1 and acts as its coactivatorin the presence of CREBBP. Acetylates SIRT2 and is proposed toindirectly increase the transcriptional activity of TP53 throughacetylation and subsequent attenuation of SIRT2 deacetylasefunction. Acetylates HDAC1 leading to its inactivation andmodulation of transcription. Acts as a TFAP2A-mediatedtranscriptional coactivator in presence of CITED2. Plays a role asa coactivator of NEUROD1-dependent transcription of the secretinand p21 genes and controls terminal differentiation of cells inthe intestinal epithelium. Promotes cardiac myocyte enlargement.Can also mediate transcriptional repression. Binds to and may beinvolved in the transforming capacity of the adenovirus E1Aprotein. In case of HIV-1 infection, it is recruited by the viralprotein Tat. Regulates Tat's transactivating activity and may helpinducing chromatin remodeling of proviral genes. Acetylates FOXO1and enhances its transcriptional activity. Acetylates BCL6 wichdisrupts its ability to recruit histone deacetylases and hindersits transcriptional repressor activity. Participates in CLOCK orNPAS2-regulated rhythmic gene transcription; exhibits a circadianassociation with CLOCK or NPAS2, correlating with increase inPER1/2 mRNA and histone H3 acetylation on the PER1/2 promoter.Acetylates MTA1 at 'Lys-626' which is essential for itstranscriptional coactivator activity (PubMed:10733570,PubMed:11430825, PubMed:11701890, PubMed:12402037,PubMed:12586840, PubMed:12929931, PubMed:14645221,PubMed:15186775, PubMed:15890677, PubMed:16617102,PubMed:16762839, PubMed:18722353, PubMed:18995842,PubMed:23415232, PubMed:23911289, PubMed:23934153,PubMed:8945521). Acetylates XBP1 isoform 2; acetylation increasesprotein stability of XBP1 isoform 2 and enhances itstranscriptional activity (By similarity).", "isseed": false, "uniprot": "Q09472", "isvalid": true, "importance": 3 }, "position": { "x": 468.65661469029556, "y": 457.6204699153876 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "IGBP1", "altered": 0, "rank": 125, "cited": 89, "uniprotdesc": "Associated to surface IgM-receptor; may be involved insignal transduction. Involved in regulation of the catalyticactivity of the phosphatases PP2A, PP4 and PP6 by protecting theirpartially folded catalytic subunits from degradativepolyubiquitination until they associate with regulatory subunits.", "isseed": false, "uniprot": "P78318", "isvalid": true, "importance": 3 }, "position": { "x": 599.836899054013, "y": 694.3354796836817 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CSNK1G3", "altered": 0, "rank": 181, "cited": 8, "uniprotdesc": "Serine/threonine-protein kinase. Casein kinases areoperationally defined by their preferential utilization of acidicproteins such as caseins as substrates. It can phosphorylate alarge number of proteins. Participates in Wnt signaling. Regulatesfast synaptic transmission mediated by glutamate (By similarity).", "isseed": false, "uniprot": "Q9Y6M4", "isvalid": true, "importance": 3 }, "position": { "x": 121.79813086459671, "y": 321.33866722548686 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PIDD", "altered": 0, "rank": 201, "cited": 0, "uniprotdesc": null, "isseed": false, "uniprot": null, "isvalid": false, "importance": 3 }, "position": { "x": 339.6268716937935, "y": 266.29046990361655 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "EP400", "altered": 0, "rank": 208, "cited": 17, "uniprotdesc": "Component of the NuA4 histone acetyltransferase complexwhich is involved in transcriptional activation of select genesprincipally by acetylation of nucleosomal histones H4 and H2A.This modification may both alter nucleosome - DNA interactions andpromote interaction of the modified histones with other proteinswhich positively regulate transcription. May be required fortranscriptional activation of E2F1 and MYC target genes duringcellular proliferation. The NuA4 complex ATPase and helicaseactivities seem to be, at least in part, contributed by theassociation of RUVBL1 and RUVBL2 with EP400. May regulate ZNF42transcription activity. Component of a SWR1-like complex thatspecifically mediates the removal of histone H2A.Z/H2AFZ from thenucleosome. ", "isseed": false, "uniprot": "Q96L91", "isvalid": true, "importance": 2 }, "position": { "x": 342.0938522771279, "y": 578.8892695946087 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "FBXO11", "altered": 0, "rank": 188, "cited": 5, "uniprotdesc": "Substrate recognition component of a SCF (SKP1-CUL1-F-box protein) E3 ubiquitin-protein ligase complex which mediatesthe ubiquitination and subsequent proteasomal degradation oftarget proteins, such as DTL/CDT2, BCL6 and PRDM1/BLIMP1. TheSCF(FBXO11) complex mediates ubiquitination and degradation ofBCL6, thereby playing a role in the germinal center B-cellsterminal differentiation toward memory B-cells and plasma cells.The SCF(FBXO11) complex also mediates ubiquitination anddegradation of DTL, an important step for the regulation of TGF-beta signaling, cell migration and the timing of the cell-cycleprogression and exit. Binds to and neddylates phosphorylatedp53/TP53, inhibiting its transcriptional activity. SCF(FBXO11)does not seem to direct ubiquitination of p53/TP53.", "isseed": false, "uniprot": "Q86XK2", "isvalid": true, "importance": 3 }, "position": { "x": 697.0814139549313, "y": 328.6502233727351 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "HMGB1", "altered": 0, "rank": 54, "cited": 617, "uniprotdesc": "DNA binding proteins that associates with chromatin andhas the ability to bend DNA. Binds preferentially single-strandedDNA. Involved in V(D)J recombination by acting as a cofactor ofthe RAG complex. Acts by stimulating cleavage and RAG proteinbinding at the 23 bp spacer of conserved recombination signalsequences (RSS). Heparin-binding protein that has a role in theextension of neurite-type cytoplasmic processes in developingcells (By similarity). ", "isseed": false, "uniprot": "P09429", "isvalid": true, "importance": 3 }, "position": { "x": 404.19434626545194, "y": 574.3052174750061 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CAV1", "altered": 0, "rank": 32, "cited": 1624, "uniprotdesc": "May act as a scaffolding protein within caveolarmembranes. Interacts directly with G-protein alpha subunits andcan functionally regulate their activity (By similarity). Involvedin the costimulatory signal essential for T-cell receptor (TCR)-mediated T-cell activation. Its binding to DPP4 induces T-cellproliferation and NF-kappa-B activation in a T-cell receptor/CD3-dependent manner. Recruits CTNNB1 to caveolar membranes and mayregulate CTNNB1-mediated signaling through the Wnt pathway.", "isseed": false, "uniprot": "Q03135", "isvalid": true, "importance": 3 }, "position": { "x": 729.6455710270134, "y": 305.3035304524621 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "STK11", "altered": 0, "rank": 57, "cited": 571, "uniprotdesc": "Tumor suppressor serine/threonine-protein kinase thatcontrols the activity of AMP-activated protein kinase (AMPK)family members, thereby playing a role in various processes suchas cell metabolism, cell polarity, apoptosis and DNA damageresponse. Acts by phosphorylating the T-loop of AMPK familyproteins, thus promoting their activity: phosphorylates PRKAA1,PRKAA2, BRSK1, BRSK2, MARK1, MARK2, MARK3, MARK4, NUAK1, NUAK2,SIK1, SIK2, SIK3 and SNRK but not MELK. Also phosphorylates non-AMPK family proteins such as STRADA, PTEN and possibly p53/TP53.Acts as a key upstream regulator of AMPK by mediatingphosphorylation and activation of AMPK catalytic subunits PRKAA1and PRKAA2 and thereby regulates processes including: inhibitionof signaling pathways that promote cell growth and proliferationwhen energy levels are low, glucose homeostasis in liver,activation of autophagy when cells undergo nutrient deprivation,and B-cell differentiation in the germinal center in response toDNA damage. Also acts as a regulator of cellular polarity byremodeling the actin cytoskeleton. Required for cortical neuronpolarization by mediating phosphorylation and activation of BRSK1and BRSK2, leading to axon initiation and specification. Involvedin DNA damage response: interacts with p53/TP53 and recruited tothe CDKN1A/WAF1 promoter to participate in transcriptionactivation. Able to phosphorylate p53/TP53; the relevance of suchresult in vivo is however unclear and phosphorylation may beindirect and mediated by downstream STK11/LKB1 kinase NUAK1. Alsoacts as a mediator of p53/TP53-dependent apoptosis via interactionwith p53/TP53: translocates to the mitochondrion during apoptosisand regulates p53/TP53-dependent apoptosis pathways. In veinendothelial cells, inhibits PI3K/Akt signaling activity and thusinduces apoptosis in response to the oxidant peroxynitrite (invitro). Regulates UV radiation-induced DNA damage responsemediated by CDKN1A. In association with NUAK1, phosphorylatesCDKN1A in response to UV radiation and contributes to itsdegradation which is necessary for optimal DNA repair(PubMed:25329316). ", "isseed": false, "uniprot": "Q15831", "isvalid": true, "importance": 3 }, "position": { "x": 880.9856730374551, "y": 593.5300375591082 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPKAPK5", "altered": 0, "rank": 159, "cited": 28, "uniprotdesc": "Tumor suppressor serine/threonine-protein kinaseinvolved in mTORC1 signaling and post-transcriptional regulation.Phosphorylates FOXO3, ERK3/MAPK6, ERK4/MAPK4, HSP27/HSPB1,p53/TP53 and RHEB. Acts as a tumor suppressor by mediating Ras-induced senescence and phosphorylating p53/TP53. Involved in post-transcriptional regulation of MYC by mediating phosphorylation ofFOXO3: phosphorylation of FOXO3 leads to promote nuclearlocalization of FOXO3, enabling expression of miR-34b and miR-34c,2 post-transcriptional regulators of MYC that bind to the 3'UTR ofMYC transcript and prevent MYC translation. Acts as a negativeregulator of mTORC1 signaling by mediating phosphorylation andinhibition of RHEB. Part of the atypical MAPK signaling via itsinteraction with ERK3/MAPK6 or ERK4/MAPK4: the precise role of thecomplex formed with ERK3/MAPK6 or ERK4/MAPK4 is still unclear, butthe complex follows a complex set of phosphorylation events: uponinteraction with atypical MAPK (ERK3/MAPK6 or ERK4/MAPK4),ERK3/MAPK6 (or ERK4/MAPK4) is phosphorylated and then mediatesphosphorylation and activation of MAPKAPK5, which in turnphosphorylates ERK3/MAPK6 (or ERK4/MAPK4). Mediatesphosphorylation of HSP27/HSPB1 in response to PKA/PRKACAstimulation, inducing F-actin rearrangement.", "isseed": false, "uniprot": "Q8IW41", "isvalid": true, "importance": 3 }, "position": { "x": 511.0003739434644, "y": 362.5477803845663 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "NEDD8", "altered": 0, "rank": 205, "cited": 236, "uniprotdesc": "Ubiquitin-like protein which plays an important role incell cycle control and embryogenesis. Covalent attachment to itssubstrates requires prior activation by the E1 complex UBE1C-APPBP1 and linkage to the E2 enzyme UBE2M. Attachment of NEDD8 tocullins activates their associated E3 ubiquitin ligase activity,and thus promotes polyubiquitination and proteasomal degradationof cyclins and other regulatory proteins.", "isseed": false, "uniprot": "Q15843", "isvalid": true, "importance": 2 }, "position": { "x": 825.1995643905732, "y": 303.29618329811615 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "RRM2B", "altered": 0, "rank": 113, "cited": 139, "uniprotdesc": "Plays a pivotal role in cell survival by repairingdamaged DNA in a p53/TP53-dependent manner. Suppliesdeoxyribonucleotides for DNA repair in cells arrested at G1 or G2.Contains an iron-tyrosyl free radical center required forcatalysis. Forms an active ribonucleotide reductase (RNR) complexwith RRM1 which is expressed both in resting and proliferatingcells in response to DNA damage. ", "isseed": false, "uniprot": "Q7LG56", "isvalid": true, "importance": 3 }, "position": { "x": 249.43764462861293, "y": 217.92446084292578 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CX3CL1", "altered": 0, "rank": 65, "cited": 455, "uniprotdesc": "The soluble form is chemotactic for T-cells andmonocytes, but not for neutrophils. The membrane-bound formpromotes adhesion of those leukocytes to endothelial cells. Mayplay a role in regulating leukocyte adhesion and migrationprocesses at the endothelium. Binds to CX3CR1.", "isseed": false, "uniprot": "P78423", "isvalid": true, "importance": 3 }, "position": { "x": 350.78072551958803, "y": 525.3124530396408 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPKAPK2", "altered": 0, "rank": 88, "cited": 260, "uniprotdesc": "Stress-activated serine/threonine-protein kinaseinvolved in cytokines production, endocytosis, reorganization ofthe cytoskeleton, cell migration, cell cycle control, chromatinremodeling, DNA damage response and transcriptional regulation.Following stress, it is phosphorylated and activated by MAP kinasep38-alpha/MAPK14, leading to phosphorylation of substrates.Phosphorylates serine in the peptide sequence, Hyd-X-R-X(2)-S,where Hyd is a large hydrophobic residue. Phosphorylates ALOX5,CDC25B, CDC25C, ELAVL1, HNRNPA0, HSF1, HSP27/HSPB1, KRT18, KRT20,LIMK1, LSP1, PABPC1, PARN, PDE4A, RCSD1, RPS6KA3, TAB3 andTTP/ZFP36. Mediates phosphorylation of HSP27/HSPB1 in response tostress, leading to dissociate HSP27/HSPB1 from large small heat-shock protein (sHsps) oligomers and impair their chaperoneactivities and ability to protect against oxidative stresseffectively. Involved in inflammatory response by regulating tumornecrosis factor (TNF) and IL6 production post-transcriptionally:acts by phosphorylating AU-rich elements (AREs)-binding proteinsELAVL1, HNRNPA0, PABPC1 and TTP/ZFP36, leading to regulate thestability and translation of TNF and IL6 mRNAs. Phosphorylation ofTTP/ZFP36, a major post-transcriptional regulator of TNF, promotesits binding to 14-3-3 proteins and reduces its ARE mRNA affinityleading to inhibition of dependent degradation of ARE-containingtranscript. Also involved in late G2/M checkpoint following DNAdamage through a process of post-transcriptional mRNAstabilization: following DNA damage, relocalizes from nucleus tocytoplasm and phosphorylates HNRNPA0 and PARN, leading tostabilize GADD45A mRNA. Involved in toll-like receptor signalingpathway (TLR) in dendritic cells: required for acute TLR-inducedmacropinocytosis by phosphorylating and activating RPS6KA3.", "isseed": false, "uniprot": "P49137", "isvalid": true, "importance": 3 }, "position": { "x": 776.3214180597387, "y": 732.2711550652353 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CCNG1", "altered": 0, "rank": 119, "cited": 103, "uniprotdesc": "May play a role in growth regulation. Is associated withG2/M phase arrest in response to DNA damage. May be anintermediate by which p53 mediates its role as an inhibitor ofcellular proliferation (By similarity). ", "isseed": false, "uniprot": "P51959", "isvalid": true, "importance": 3 }, "position": { "x": 464.18930696163426, "y": 387.1968748246589 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TTC5", "altered": 0, "rank": 195, "cited": 2, "uniprotdesc": "Adapter protein involved in p53/TP53 response that actsby regulating and mediating the assembly of multi-proteincomplexes. Required to facilitate the interaction between JMY andp300/EP300 and increase p53/TP53-dependent transcription andapoptosis. Prevents p53/TP53 degradation by MDM2 (By similarity).", "isseed": false, "uniprot": "Q8N0Z6", "isvalid": true, "importance": 3 }, "position": { "x": 435.9996966507328, "y": 823.9150038997356 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SESN1", "altered": 0, "rank": 171, "cited": 17, "uniprotdesc": "Involved in the reduction of peroxiredoxins. May also beregulator of cellular growth. ", "isseed": false, "uniprot": "Q9Y6P5", "isvalid": true, "importance": 3 }, "position": { "x": 454.08873747125034, "y": 679.1847157908614 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "VDR", "altered": 0, "rank": 31, "cited": 1821, "uniprotdesc": "Nuclear hormone receptor. Transcription factor thatmediates the action of vitamin D3 by controlling the expression ofhormone sensitive genes. Regulates transcription of hormonesensitive genes via its association with the WINAC complex, achromatin-remodeling complex. Recruited to promoters via itsinteraction with the WINAC complex subunit BAZ1B/WSTF, whichmediates the interaction with acetylated histones, an essentialstep for VDR-promoter association. Plays a central role in calciumhomeostasis. ", "isseed": false, "uniprot": "P11473", "isvalid": true, "importance": 3 }, "position": { "x": 355.2431221789255, "y": 818.727288973532 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "NDRG1", "altered": 0, "rank": 103, "cited": 165, "uniprotdesc": "Stress-responsive protein involved in hormone responses,cell growth, and differentiation. Acts as a tumor suppressor inmany cell types. Necessary but not sufficient for p53/TP53-mediated caspase activation and apoptosis. Has a role in celltrafficking, notably of the Schwann cell, and is necessary for themaintenance and development of the peripheral nerve myelin sheath.Required for vesicular recycling of CDH1 and TF. May also functionin lipid trafficking. Protects cells from spindle disruptiondamage. Functions in p53/TP53-dependent mitotic spindlecheckpoint. Regulates microtubule dynamics and maintains euploidy.", "isseed": false, "uniprot": "Q92597", "isvalid": true, "importance": 3 }, "position": { "x": 706.1024914564717, "y": 485.60388026187496 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "DYRK2", "altered": 0, "rank": 160, "cited": 27, "uniprotdesc": "Serine/threonine-protein kinase involved in theregulation of the mitotic cell cycle, cell proliferation,apoptosis, organization of the cytoskeleton and neurite outgrowth.Functions in part via its role in ubiquitin-dependent proteasomalprotein degradation. Functions downstream of ATM andphosphorylates p53/TP53 at 'Ser-46', and thereby contributes tothe induction of apoptosis in response to DNA damage.Phosphorylates NFATC1, and thereby inhibits its accumulation inthe nucleus and its transcription factor activity. PhosphorylatesEIF2B5 at 'Ser-544', enabling its subsequent phosphorylation andinhibition by GSK3B. Likewise, phosphorylation of NFATC1,CRMP2/DPYSL2 and CRMP4/DPYSL3 promotes their subsequentphosphorylation by GSK3B. May play a general role in the primingof GSK3 substrates. Inactivates GYS1 by phosphorylation at 'Ser-641', and potentially also a second phosphorylation site, thusregulating glycogen synthesis. Mediates EDVP E3 ligase complexformation and is required for the phosphorylation and subsequentdegradation of KATNA1. Phosphorylates TERT at 'Ser-457', promotingTERT ubiquitination by the EDVP complex. Phosphorylates SIAH2, andthereby increases its ubiquitin ligase activity. Promotes theproteasomal degradation of MYC and JUN, and thereby regulatesprogress through the mitotic cell cycle and cell proliferation.Promotes proteasomal degradation of GLI2 and GLI3, and therebyplays a role in smoothened and sonic hedgehog signaling. Plays arole in cytoskeleton organization and neurite outgrowth via itsphosphorylation of DCX and DPYSL2. Phosphorylates CRMP2/DPYSL2,CRMP4/DPYSL3, DCX, EIF2B5, EIF4EBP1, GLI2, GLI3, GYS1, JUN, MDM2,MYC, NFATC1, p53/TP53, TAU/MAPT and KATNA1. Can phosphorylatehistone H1, histone H3 and histone H2B (in vitro). Canphosphorylate CARHSP1 (in vitro). ", "isseed": false, "uniprot": "Q92630", "isvalid": true, "importance": 3 }, "position": { "x": 633.0886920768896, "y": 350.2573185919784 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TRAF6", "altered": 0, "rank": 41, "cited": 861, "uniprotdesc": "E3 ubiquitin ligase that, together with UBE2N andUBE2V1, mediates the synthesis of 'Lys-63'-linked-polyubiquitinchains conjugated to proteins, such as IKBKG, IRAK1, AKT1 andAKT2. Also mediates ubiquitination of free/unanchoredpolyubiquitin chain that leads to MAP3K7 activation. Leads to theactivation of NF-kappa-B and JUN. May be essential for theformation of functional osteoclasts. Seems to also play a role indendritic cells (DCs) maturation and/or activation. Represses c-Myb-mediated transactivation, in B-lymphocytes. Adapter proteinthat seems to play a role in signal transduction initiated via TNFreceptor, IL-1 receptor and IL-17 receptor. Regulates osteoclastdifferentiation by mediating the activation of adapter proteincomplex 1 (AP-1) and NF-kappa-B, in response to RANK-Lstimulation. Together with MAP3K8, mediates CD40 signals thatactivate ERK in B-cells and macrophages, and thus may play a rolein the regulation of immunoglobulin production.", "isseed": false, "uniprot": "Q9Y4K3", "isvalid": true, "importance": 3 }, "position": { "x": 277.04976414506945, "y": 836.0427463895671 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "UBE2D1", "altered": 0, "rank": 138, "cited": 66, "uniprotdesc": "Accepts ubiquitin from the E1 complex and catalyzes itscovalent attachment to other proteins. In vitro catalyzes 'Lys-48'-linked polyubiquitination. Mediates the selective degradationof short-lived and abnormal proteins. Functions in the E6/E6-AP-induced ubiquitination of p53/TP53. Mediates ubiquitination ofPEX5 and auto-ubiquitination of STUB1, TRAF6 and TRIM63/MURF1.Ubiquitinates STUB1-associated HSP90AB1 in vitro. Lacks inherentspecificity for any particular lysine residue of ubiquitin.Essential for viral activation of IRF3. Mediatespolyubiquitination of CYP3A4. ", "isseed": false, "uniprot": "P51668", "isvalid": true, "importance": 3 }, "position": { "x": 871.5886767286685, "y": 356.6645994728715 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "ASF1A", "altered": 0, "rank": 161, "cited": 27, "uniprotdesc": "Histone chaperone that facilitates histone depositionand histone exchange and removal during nucleosome assembly anddisassembly. Cooperates with chromatin assembly factor 1 (CAF-1)to promote replication-dependent chromatin assembly and with HIRAto promote replication-independent chromatin assembly. Requiredfor the formation of senescence-associated heterochromatin foci(SAHF) and efficient senescence-associated cell cycle exit.", "isseed": false, "uniprot": "Q9Y294", "isvalid": true, "importance": 3 }, "position": { "x": 302.65206677832384, "y": 464.7071221426524 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TAF1", "altered": 0, "rank": 92, "cited": 231, "uniprotdesc": "Largest component and core scaffold of the TFIID basaltranscription factor complex. Contains novel N- and C-terminalSer/Thr kinase domains which can autophosphorylate ortransphosphorylate other transcription factors. PhosphorylatesTP53 on 'Thr-55' which leads to MDM2-mediated degradation of TP53.Phosphorylates GTF2A1 and GTF2F1 on Ser residues. Possesses DNA-binding activity. Essential for progression of the G1 phase of thecell cycle. Exhibits histone acetyltransferase activity towardshistones H3 and H4. ", "isseed": false, "uniprot": "P21675", "isvalid": true, "importance": 3 }, "position": { "x": 542.9246393927122, "y": 203.7648574104729 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "KAT8", "altered": 0, "rank": 199, "cited": 0, "uniprotdesc": "Histone acetyltransferase which may be involved intranscriptional activation. May influence the function of ATM. Aspart of the MSL complex it is involved in acetylation ofnucleosomal histone H4 producing specifically H4K16ac. As part ofthe NSL complex it may be involved in acetylation of nucleosomalhistone H4 on several lysine residues. That activity is lessspecific than the one of the MSL complex. Can also acetylateTP53/p53 at 'Lys-120'. ", "isseed": false, "uniprot": "Q9H7Z6", "isvalid": true, "importance": 3 }, "position": { "x": 697.5604801127984, "y": 732.9170847683375 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "HTT", "altered": 0, "rank": 43, "cited": 858, "uniprotdesc": "May play a role in microtubule-mediated transport orvesicle function.", "isseed": false, "uniprot": "P42858", "isvalid": true, "importance": 3 }, "position": { "x": 582.3288913656866, "y": 644.3481619544401 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MET", "altered": 0, "rank": 39, "cited": 910, "uniprotdesc": "Receptor tyrosine kinase that transduces signals fromthe extracellular matrix into the cytoplasm by binding tohepatocyte growth factor/HGF ligand. Regulates many physiologicalprocesses including proliferation, scattering, morphogenesis andsurvival. Ligand binding at the cell surface inducesautophosphorylation of MET on its intracellular domain thatprovides docking sites for downstream signaling molecules.Following activation by ligand, interacts with the PI3-kinasesubunit PIK3R1, PLCG1, SRC, GRB2, STAT3 or the adapter GAB1.Recruitment of these downstream effectors by MET leads to theactivation of several signaling cascades including the RAS-ERK,PI3 kinase-AKT, or PLCgamma-PKC. The RAS-ERK activation isassociated with the morphogenetic effects while PI3K/AKTcoordinates prosurvival effects. During embryonic development, METsignaling plays a role in gastrulation, development and migrationof muscles and neuronal precursors, angiogenesis and kidneyformation. In adults, participates in wound healing as well asorgan regeneration and tissue remodeling. Promotes alsodifferentiation and proliferation of hematopoietic cells.Acts as a receptor for Listeria internalin inlB,mediating entry of the pathogen into cells.", "isseed": false, "uniprot": "P08581", "isvalid": true, "importance": 3 }, "position": { "x": 923.191137194505, "y": 467.4658758640353 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "ARID3A", "altered": 0, "rank": 170, "cited": 17, "uniprotdesc": "Transcription factor which may be involved in thecontrol of cell cycle progression by the RB1/E2F1 pathway and inB-cell differentiation. ", "isseed": false, "uniprot": "Q99856", "isvalid": true, "importance": 3 }, "position": { "x": 578.4621279419013, "y": 785.7871041164912 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SMG1", "altered": 0, "rank": 129, "cited": 80, "uniprotdesc": "Serine/threonine protein kinase involved in both mRNAsurveillance and genotoxic stress response pathways. Recognizesthe substrate consensus sequence [ST]-Q. Plays a central role innonsense-mediated decay (NMD) of mRNAs containing premature stopcodons by phosphorylating UPF1/RENT1. Recruited by release factorsto stalled ribosomes together with SMG8 and SMG9 (forming theSMG1C protein kinase complex), and UPF1 to form the transient SURF(SMG1-UPF1-eRF1-eRF3) complex. In EJC-dependent NMD, the SURFcomplex associates with the exon junction complex (EJC) throughUPF2 and allows the formation of an UPF1-UPF2-UPF3 surveillancecomplex which is believed to activate NMD. Also acts as agenotoxic stress-activated protein kinase that displays somefunctional overlap with ATM. Can phosphorylate p53/TP53 and isrequired for optimal p53/TP53 activation after cellular exposureto genotoxic stress. Its depletion leads to spontaneous DNA damageand increased sensitivity to ionizing radiation (IR). May activatePRKCI but not PRKCZ. ", "isseed": false, "uniprot": "Q96Q15", "isvalid": true, "importance": 3 }, "position": { "x": 729.5224917169747, "y": 572.5617884607686 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "WRN", "altered": 0, "rank": 53, "cited": 621, "uniprotdesc": "Multifunctional enzyme that has both magnesium and ATP-dependent DNA-helicase activity and 3'->5' exonuclease activitytowards double-stranded DNA with a 5'-overhang. Has no nucleaseactivity towards single-stranded DNA or blunt-ended double-stranded DNA. Binds preferentially to DNA substrates containingalternate secondary structures, such as replication forks andHolliday junctions. May play an important role in the dissociationof joint DNA molecules that can arise as products of homologousrecombination, at stalled replication forks or during DNA repair.Alleviates stalling of DNA polymerases at the site of DNA lesions.Important for genomic integrity. Plays a role in the formation ofDNA replication focal centers; stably associates with focielements generating binding sites for RP-A (By similarity). Playsa role in double-strand break repair after gamma-irradiation.", "isseed": false, "uniprot": "Q14191", "isvalid": true, "importance": 3 }, "position": { "x": 637.8793694329436, "y": 635.940602666384 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "KAT5", "altered": 0, "rank": 76, "cited": 349, "uniprotdesc": "Catalytic subunit of the NuA4 histone acetyltransferasecomplex which is involved in transcriptional activation of selectgenes principally by acetylation of nucleosomal histones H4 andH2A. This modification may both alter nucleosome-DNA interactionsand promote interaction of the modified histones with otherproteins which positively regulate transcription. This complex maybe required for the activation of transcriptional programsassociated with oncogene and proto-oncogene mediated growthinduction, tumor suppressor mediated growth arrest and replicativesenescence, apoptosis, and DNA repair. NuA4 may also play a directrole in DNA repair when recruited to sites of DNA damage. Directlyacetylates and activates ATM. Component of a SWR1-like complexthat specifically mediates the removal of histone H2A.Z/H2AFZ fromthe nucleosome. In case of HIV-1 infection, interaction with theviral Tat protein leads to KAT5 polyubiquitination and targets itto degradation. Relieves NR1D2-mediated inhibition of APOC3expression by acetylating NR1D2. ", "isseed": false, "uniprot": "Q92993", "isvalid": true, "importance": 3 }, "position": { "x": 692.4766723786568, "y": 778.9108010946786 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "BRCA1", "altered": 0, "rank": 202, "cited": 7211, "uniprotdesc": "E3 ubiquitin-protein ligase that specifically mediatesthe formation of 'Lys-6'-linked polyubiquitin chains and plays acentral role in DNA repair by facilitating cellular responses toDNA damage. It is unclear whether it also mediates the formationof other types of polyubiquitin chains. The E3 ubiquitin-proteinligase activity is required for its tumor suppressor function. TheBRCA1-BARD1 heterodimer coordinates a diverse range of cellularpathways such as DNA damage repair, ubiquitination andtranscriptional regulation to maintain genomic stability.Regulates centrosomal microtubule nucleation. Required for normalcell cycle progression from G2 to mitosis. Required forappropriate cell cycle arrests after ionizing irradiation in boththe S-phase and the G2 phase of the cell cycle. Involved intranscriptional regulation of P21 in response to DNA damage.Required for FANCD2 targeting to sites of DNA damage. May functionas a transcriptional regulator. Inhibits lipid synthesis bybinding to inactive phosphorylated ACACA and preventing itsdephosphorylation. Contributes to homologous recombination repair(HRR) via its direct interaction with PALB2, fine-tunesrecombinational repair partly through its modulatory role in thePALB2-dependent loading of BRCA2-RAD51 repair machinery at DNAbreaks. Component of the BRCA1-RBBP8 complex which regulates CHEK1activation and controls cell cycle G2/M checkpoints on DNA damagevia BRCA1-mediated ubiquitination of RBBP8.", "isseed": false, "uniprot": "P38398", "isvalid": true, "importance": 2 }, "position": { "x": 937.1541632109731, "y": 799.935187455848 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDKN1A", "altered": 0, "rank": 9, "cited": 4784, "uniprotdesc": "May be the important intermediate by which p53/TP53mediates its role as an inhibitor of cellular proliferation inresponse to DNA damage. Binds to and inhibits cyclin-dependentkinase activity, preventing phosphorylation of critical cyclin-dependent kinase substrates and blocking cell cycle progression.Functions in the nuclear localization and assembly of cyclin D-CDK4 complex and promotes its kinase activity towards RB1. Athigher stoichiometric ratios, inhibits the kinase activity of thecyclin D-CDK4 complex. ", "isseed": false, "uniprot": "P38936", "isvalid": true, "importance": 3 }, "position": { "x": 392.3525240008982, "y": 507.3606316351979 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PLK3", "altered": 0, "rank": 115, "cited": 130, "uniprotdesc": "Serine/threonine-protein kinase involved in cell cycleregulation, response to stress and Golgi disassembly. Polo-likekinases act by binding and phosphorylating proteins are thatalready phosphorylated on a specific motif recognized by the POLObox domains. Phosphorylates ATF2, BCL2L1, CDC25A, CDC25C, CHEK2,HIF1A, JUN, p53/TP53, p73/TP73, PTEN, TOP2A and VRK1. Involved incell cycle regulation: required for entry into S phase andcytokinesis. Phosphorylates BCL2L1, leading to regulate the G2checkpoint and progression to cytokinesis during mitosis. Plays akey role in response to stress: rapidly activated upon stressstimulation, such as ionizing radiation, reactive oxygen species(ROS), hyperosmotic stress, UV irradiation and hypoxia. Involvedin DNA damage response and G1/S transition checkpoint byphosphorylating CDC25A, p53/TP53 and p73/TP73. Phosphorylatesp53/TP53 in response to reactive oxygen species (ROS), therebypromoting p53/TP53-mediated apoptosis. Phosphorylates CHEK2 inresponse to DNA damage, promoting the G2/M transition checkpoint.Phosphorylates the transcription factor p73/TP73 in response toDNA damage, leading to inhibit p73/TP73-mediated transcriptionalactivation and pro-apoptotic functions. Phosphorylates HIF1A andJUN is response to hypoxia. Phosphorylates ATF2 followinghyperosmotic stress in corneal epithelium. Also involved in Golgidisassembly during the cell cycle: part of a MEK1/MAP2K1-dependentpathway that induces Golgi fragmentation during mitosis bymediating phosphorylation of VRK1. May participate in endomitoticcell cycle, a form of mitosis in which both karyokinesis andcytokinesis are interrupted and is a hallmark of megakaryocytedifferentiation, via its interaction with CIB1.", "isseed": false, "uniprot": "Q9H4B4", "isvalid": true, "importance": 3 }, "position": { "x": 369.85193199889983, "y": 614.3219569072588 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "ATF3", "altered": 0, "rank": 77, "cited": 339, "uniprotdesc": "This protein binds the cAMP response element (CRE)(consensus: 5'-GTGACGT[AC][AG]-3'), a sequence present in manyviral and cellular promoters. Represses transcription frompromoters with ATF sites. It may repress transcription bystabilizing the binding of inhibitory cofactors at the promoter.Isoform 2 activates transcription presumably by sequesteringinhibitory cofactors away from the promoters.", "isseed": false, "uniprot": "P18847", "isvalid": true, "importance": 3 }, "position": { "x": 832.9354732854758, "y": 471.5128054318779 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "BBC3", "altered": 0, "rank": 139, "cited": 66, "uniprotdesc": "Essential mediator of p53/TP53-dependent and p53/TP53-independent apoptosis. Isoform 3 fails to show any growth-inhibitory or apoptotic activity.", "isseed": false, "uniprot": "Q96PG8", "isvalid": true, "importance": 3 }, "position": { "x": 306.81617150334375, "y": 312.1819697247926 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TSC2", "altered": 0, "rank": 45, "cited": 806, "uniprotdesc": "In complex with TSC1, inhibits the nutrient-mediated orgrowth factor-stimulated phosphorylation of S6K1 and EIF4EBP1 bynegatively regulating mTORC1 signaling. Acts as a GTPase-activating protein (GAP) for the small GTPase RHEB, a directactivator of the protein kinase activity of mTORC1. Implicated asa tumor suppressor. Involved in microtubule-mediated proteintransport, but this seems to be due to unregulated mTOR signaling.Stimulates weakly the intrinsic GTPase activity of the Ras-relatedproteins RAP1A and RAB5 in vitro. Mutations in TSC2 lead toconstitutive activation of RAP1A in tumors.", "isseed": false, "uniprot": "P49815", "isvalid": true, "importance": 3 }, "position": { "x": 91.64132623958503, "y": 594.97047188399 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "DYRK1A", "altered": 0, "rank": 128, "cited": 81, "uniprotdesc": "May play a role in a signaling pathway regulatingnuclear functions of cell proliferation. Modulates alternativesplicing by phosphorylating the splice factor SRSF6 (Bysimilarity). Phosphorylates serine, threonine and tyrosineresidues in its sequence and in exogenous substrates such as CRY2,FOXO1, SRSF6 and SIRT1. Exhibits a sugstrate preference forproline at position P+1 and arginine at position P-3.", "isseed": false, "uniprot": "Q13627", "isvalid": true, "importance": 3 }, "position": { "x": 148.13293931501798, "y": 494.97082328014136 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAG1", "altered": 0, "rank": 177, "cited": 11, "uniprotdesc": "AMP/ATP-binding subunit of AMP-activated protein kinase(AMPK), an energy sensor protein kinase that plays a key role inregulating cellular energy metabolism. In response to reduction ofintracellular ATP levels, AMPK activates energy-producing pathwaysand inhibits energy-consuming processes: inhibits protein,carbohydrate and lipid biosynthesis, as well as cell growth andproliferation. AMPK acts via direct phosphorylation of metabolicenzymes, and by longer-term effects via phosphorylation oftranscription regulators. Also acts as a regulator of cellularpolarity by remodeling the actin cytoskeleton; probably byindirectly activating myosin. Gamma non-catalytic subunit mediatesbinding to AMP, ADP and ATP, leading to activate or inhibit AMPK:AMP-binding results in allosteric activation of alpha catalyticsubunit (PRKAA1 or PRKAA2) both by inducing phosphorylation andpreventing dephosphorylation of catalytic subunits. ADP alsostimulates phosphorylation, without stimulating alreadyphosphorylated catalytic subunit. ATP promotes dephosphorylationof catalytic subunit, rendering the AMPK enzyme inactive.", "isseed": false, "uniprot": "P54619", "isvalid": true, "importance": 3 }, "position": { "x": 496.0323421182352, "y": 705.384193533594 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CASP6", "altered": 0, "rank": 104, "cited": 161, "uniprotdesc": "Involved in the activation cascade of caspasesresponsible for apoptosis execution. Cleaves poly(ADP-ribose)polymerase in vitro, as well as lamins. Overexpression promotesprogrammed cell death.", "isseed": false, "uniprot": "P55212", "isvalid": true, "importance": 3 }, "position": { "x": 742.7316044514569, "y": 525.0872325337825 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAX", "altered": 0, "rank": 158, "cited": 28, "uniprotdesc": "Transcription regulator. Forms a sequence-specific DNA-binding protein complex with MYC or MAD which recognizes the coresequence 5'-CAC[GA]TG-3'. The MYC:MAX complex is a transcriptionalactivator, whereas the MAD:MAX complex is a repressor. May represstranscription via the recruitment of a chromatin remodelingcomplex containing H3 'Lys-9' histone methyltransferase activity.", "isseed": false, "uniprot": "P61244", "isvalid": true, "importance": 3 }, "position": { "x": 581.5453245232713, "y": 147.51691525455973 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "FOS", "altered": 0, "rank": 61, "cited": 496, "uniprotdesc": "Nuclear phosphoprotein which forms a tight but non-covalently linked complex with the JUN/AP-1 transcription factor.In the heterodimer, FOS and JUN/AP-1 basic regions each seems tointeract with symmetrical DNA half sites. On TGF-beta activation,forms a multimeric SMAD3/SMAD4/JUN/FOS complex at the AP1/SMAD-binding site to regulate TGF-beta-mediated signaling. Has acritical function in regulating the development of cells destinedto form and maintain the skeleton. It is thought to have animportant role in signal transduction, cell proliferation anddifferentiation. In growing cells, activates phospholipidsynthesis, possibly by activating CDS1 and PI4K2A. This activityrequires Tyr-dephosphorylation and association with theendoplasmic reticulum. ", "isseed": false, "uniprot": "P01100", "isvalid": true, "importance": 3 }, "position": { "x": 227.60953791871847, "y": 758.4325109863331 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53I3", "altered": 0, "rank": 152, "cited": 39, "uniprotdesc": "May be involved in the generation of reactive oxygenspecies (ROS). Has low NADPH-dependent beta-naphthoquinonereductase activity, with a preference for 1,2-beta-naphthoquinoneover 1,4-beta-naphthoquinone. Has low NADPH-dependent diaminereductase activity (in vitro). ", "isseed": false, "uniprot": "Q53FA7", "isvalid": true, "importance": 3 }, "position": { "x": 324.5548645858316, "y": 676.154113875541 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRMT1", "altered": 0, "rank": 206, "cited": 189, "uniprotdesc": "Arginine methyltransferase that methylates (mono andasymmetric dimethylation) the guanidino nitrogens of arginylresidues present in proteins such as ESR1, histone H2, H3 and H4,PIAS1, HNRNPA1, HNRNPD, NFATC2IP, SUPT5H, TAF15 and EWS.Constitutes the main enzyme that mediates monomethylation andasymmetric dimethylation of histone H4 'Arg-4' (H4R3me1 andH4R3me2a, respectively), a specific tag for epigenetictranscriptional activation. Together with dimethylated PIAS1,represses STAT1 transcriptional activity, in the late phase ofinterferon gamma (IFN-gamma) signaling. May be involved in theregulation of TAF15 transcriptional activity, act as an activatorof estrogen receptor (ER)-mediated transactivation, play a keyrole in neurite outgrowth and act as a negative regulator ofmegakaryocytic differentiation, by modulating p38 MAPK pathway.Methylates FOXO1 and retains it in the nucleus increasing itstranscriptional activity. ", "isseed": false, "uniprot": "Q99873", "isvalid": true, "importance": 2 }, "position": { "x": 258.72183323635636, "y": 99.64400735085184 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PCBP4", "altered": 0, "rank": 165, "cited": 20, "uniprotdesc": "Single-stranded nucleic acid binding protein that bindspreferentially to oligo dC. ", "isseed": false, "uniprot": "P57723", "isvalid": true, "importance": 3 }, "position": { "x": 233.14685138855688, "y": 312.8028938937943 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRMT5", "altered": 0, "rank": 118, "cited": 111, "uniprotdesc": "Arginine methyltransferase that can both catalyze theformation of omega-N monomethylarginine (MMA) and symmetricaldimethylarginine (sDMA), with a preference for the formation ofMMA. Specifically mediates the symmetrical dimethylation ofarginine residues in the small nuclear ribonucleoproteins Sm D1(SNRPD1) and Sm D3 (SNRPD3); such methylation being required forthe assembly and biogenesis of snRNP core particles. MethylatesSUPT5H. Mono- and dimethylates arginine residues of myelin basicprotein (MBP) in vitro. Plays a role in the assembly of snRNP coreparticles. May play a role in cytokine-activated transductionpathways. Negatively regulates cyclin E1 promoter activity andcellular proliferation. May regulate the SUPT5H transcriptionalelongation properties. May be part of a pathway that is connectedto a chloride current, possibly through cytoskeletalrearrangement. Methylates histone H2A and H4 'Arg-3' during germcell development. Methylates histone H3 'Arg-8', which may represstranscription. Methylates the Piwi proteins (PIWIL1, PIWIL2 andPIWIL4), methylation of Piwi proteins being required for theinteraction with Tudor domain-containing proteins and subsequentlocalization to the meiotic nuage. Methylates RPS10. AttenuatesEGF signaling through the MAPK1/MAPK3 pathway acting at 2 levels.First, monomethylates EGFR; this enhances EGFR 'Tyr-1197'phosphorylation and PTPN6 recruitment, eventually leading toreduced SOS1 phosphorylation. Second, methylates RAF1 and probablyBRAF, hence destabilizing these 2 signaling proteins and reducingtheir catalytic activity. Required for induction of E-selectin andVCAM-1, on the endothelial cells surface at sites of inflammation.Methylates HOXA9. Methylates and regulates SRGAP2 which isinvolved in cell migration and differentiation. Acts as atranscriptional corepressor in CRY1-mediated repression of thecore circadian component PER1 by regulating the H4R3 dimethylationat the PER1 promoter. ", "isseed": false, "uniprot": "O14744", "isvalid": true, "importance": 3 }, "position": { "x": 132.9271527114873, "y": 627.5220581095622 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "E4F1", "altered": 0, "rank": 150, "cited": 47, "uniprotdesc": "May function as a transcriptional repressor. May alsofunction as a ubiquitin ligase mediating ubiquitination ofchromatin-associated TP53. Functions in cell survival andproliferation through control of the cell cycle. Functions in thep53 and pRB tumor suppressor pathways and regulates the cyclinCCNA2 transcription.Identified as a cellular target of the adenoviraloncoprotein E1A, it is required for both transcriptionalactivation and repression of viral genes.", "isseed": false, "uniprot": "Q66K89", "isvalid": true, "importance": 3 }, "position": { "x": 743.0811426833576, "y": 835.4870087002313 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CASP1", "altered": 0, "rank": 64, "cited": 473, "uniprotdesc": "Thiol protease that cleaves IL-1 beta between an Asp andan Ala, releasing the mature cytokine which is involved in avariety of inflammatory processes. Important for defense againstpathogens. Cleaves and activates sterol regulatory element bindingproteins (SREBPs). Can also promote apoptosis.", "isseed": false, "uniprot": "P29466", "isvalid": true, "importance": 3 }, "position": { "x": 581.6878287748794, "y": 371.76136749824724 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKCA", "altered": 0, "rank": 84, "cited": 275, "uniprotdesc": "Calcium-activated, phospholipid- and diacylglycerol(DAG)-dependent serine/threonine-protein kinase that is involvedin positive and negative regulation of cell proliferation,apoptosis, differentiation, migration and adhesion, tumorigenesis,cardiac hypertrophy, angiogenesis, platelet function andinflammation, by directly phosphorylating targets such as RAF1,BCL2, CSPG4, TNNT2/CTNT, or activating signaling cascade involvingMAPK1/3 (ERK1/2) and RAP1GAP. Involved in cell proliferation andcell growth arrest by positive and negative regulation of the cellcycle. Can promote cell growth by phosphorylating and activatingRAF1, which mediates the activation of the MAPK/ERK signalingcascade, and/or by up-regulating CDKN1A, which facilitates activecyclin-dependent kinase (CDK) complex formation in glioma cells.In intestinal cells stimulated by the phorbol ester PMA, cantrigger a cell cycle arrest program which is associated with theaccumulation of the hyper-phosphorylated growth-suppressive formof RB1 and induction of the CDK inhibitors CDKN1A and CDKN1B.Exhibits anti-apoptotic function in glioma cells and protects themfrom apoptosis by suppressing the p53/TP53-mediated activation ofIGFBP3, and in leukemia cells mediates anti-apoptotic action byphosphorylating BCL2. During macrophage differentiation induced bymacrophage colony-stimulating factor (CSF1), is translocated tothe nucleus and is associated with macrophage development. Afterwounding, translocates from focal contacts to lamellipodia andparticipates in the modulation of desmosomal adhesion. Plays arole in cell motility by phosphorylating CSPG4, which inducesassociation of CSPG4 with extensive lamellipodia at the cellperiphery and polarization of the cell accompanied by increases incell motility. Is highly expressed in a number of cancer cellswhere it can act as a tumor promoter and is implicated inmalignant phenotypes of several tumors such as gliomas and breastcancers. Negatively regulates myocardial contractility andpositively regulates angiogenesis, platelet aggregation andthrombus formation in arteries. Mediates hypertrophic growth ofneonatal cardiomyocytes, in part through a MAPK1/3 (ERK1/2)-dependent signaling pathway, and upon PMA treatment, is requiredto induce cardiomyocyte hypertrophy up to heart failure and death,by increasing protein synthesis, protein-DNA ratio and cellsurface area. Regulates cardiomyocyte function by phosphorylatingcardiac troponin T (TNNT2/CTNT), which induces significantreduction in actomyosin ATPase activity, myofilament calciumsensitivity and myocardial contractility. In angiogenesis, isrequired for full endothelial cell migration, adhesion tovitronectin (VTN), and vascular endothelial growth factor A(VEGFA)-dependent regulation of kinase activation and vasculartube formation. Involved in the stabilization of VEGFA mRNA atpost-transcriptional level and mediates VEGFA-induced cellproliferation. In the regulation of calcium-induced plateletaggregation, mediates signals from the CD36/GP4 receptor forgranule release, and activates the integrin heterodimer ITGA2B-ITGB3 through the RAP1GAP pathway for adhesion. During response tolipopolysaccharides (LPS), may regulate selective LPS-inducedmacrophage functions involved in host defense and inflammation.But in some inflammatory responses, may negatively regulate NF-kappa-B-induced genes, through IL1A-dependent induction of NF-kappa-B inhibitor alpha (NFKBIA/IKBA). Upon stimulation with 12-O-tetradecanoylphorbol-13-acetate (TPA), phosphorylates EIF4G1,which modulates EIF4G1 binding to MKNK1 and may be involved in theregulation of EIF4E phosphorylation. Phosphorylates KIT, leadingto inhibition of KIT activity. Phosphorylates ATF2 which promotescooperation between ATF2 and JUN, activating transcription.", "isseed": false, "uniprot": "P17252", "isvalid": true, "importance": 3 }, "position": { "x": 116.66566872115472, "y": 388.156285585545 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK1", "altered": 0, "rank": 27, "cited": 2149, "uniprotdesc": "Plays a key role in the control of the eukaryotic cellcycle by modulating the centrosome cycle as well as mitotic onset;promotes G2-M transition, and regulates G1 progress and G1-Stransition via association with multiple interphase cyclins.Required in higher cells for entry into S-phase and mitosis.Phosphorylates PARVA/actopaxin, APC, AMPH, APC, BARD1, Bcl-xL/BCL2L1, BRCA2, CALD1, CASP8, CDC7, CDC20, CDC25A, CDC25C,CC2D1A, CSNK2 proteins/CKII, FZR1/CDH1, CDK7, CEBPB, CHAMP1,DMD/dystrophin, EEF1 proteins/EF-1, EZH2, KIF11/EG5, EGFR, FANCG,FOS, GFAP, GOLGA2/GM130, GRASP1, UBE2A/hHR6A, HIST1H1proteins/histone H1, HMGA1, HIVEP3/KRC, LMNA, LMNB, LMNC, LBR,LATS1, MAP1B, MAP4, MARCKS, MCM2, MCM4, MKLP1, MYB, NEFH, NFIC,NPC/nuclear pore complex, PITPNM1/NIR2, NPM1, NCL, NUCKS1,NPM1/numatrin, ORC1, PRKAR2A, EEF1E1/p18, EIF3F/p47, p53/TP53,NONO/p54NRB, PAPOLA, PLEC/plectin, RB1, UL40/R2, RAB4A, RAP1GAP,RCC1, RPS6KB1/S6K1, KHDRBS1/SAM68, ESPL1, SKI, BIRC5/survivin,STIP1, TEX14, beta-tubulins, MAPT/TAU, NEDD1, VIM/vimentin, TK1,FOXO1, RUNX1/AML1, SIRT2 and RUNX2. CDK1/CDC2-cyclin-B controlspronuclear union in interphase fertilized eggs. Essential forearly stages of embryonic development. During G2 and earlymitosis, CDC25A/B/C-mediated dephosphorylation activatesCDK1/cyclin complexes which phosphorylate several substrates thattrigger at least centrosome separation, Golgi dynamics, nuclearenvelope breakdown and chromosome condensation. Once chromosomesare condensed and aligned at the metaphase plate, CDK1 activity isswitched off by WEE1- and PKMYT1-mediated phosphorylation to allowsister chromatid separation, chromosome decondensation,reformation of the nuclear envelope and cytokinesis. Inactivatedby PKR/EIF2AK2- and WEE1-mediated phosphorylation upon DNA damageto stop cell cycle and genome replication at the G2 checkpointthus facilitating DNA repair. Reactivated after successful DNArepair through WIP1-dependent signaling leading to CDC25A/B/C-mediated dephosphorylation and restoring cell cycle progression.In proliferating cells, CDK1-mediated FOXO1 phosphorylation at theG2-M phase represses FOXO1 interaction with 14-3-3 proteins andthereby promotes FOXO1 nuclear accumulation and transcriptionfactor activity, leading to cell death of postmitotic neurons. Thephosphorylation of beta-tubulins regulates microtubule dynamicsduring mitosis. NEDD1 phosphorylation promotes PLK1-mediated NEDD1phosphorylation and subsequent targeting of the gamma-tubulin ringcomplex (gTuRC) to the centrosome, an important step for spindleformation. In addition, CC2D1A phosphorylation regulates CC2D1Aspindle pole localization and association with SCC1/RAD21 andcentriole cohesion during mitosis. The phosphorylation of Bcl-xL/BCL2L1 after prolongated G2 arrest upon DNA damage triggersapoptosis. In contrast, CASP8 phosphorylation during mitosisprevents its activation by proteolysis and subsequent apoptosis.This phosphorylation occurs in cancer cell lines, as well as inprimary breast tissues and lymphocytes. EZH2 phosphorylationpromotes H3K27me3 maintenance and epigenetic gene silencing. CALD1phosphorylation promotes Schwann cell migration during peripheralnerve regeneration. ", "isseed": false, "uniprot": "P06493", "isvalid": true, "importance": 3 }, "position": { "x": 601.8016489931841, "y": 308.13659964436255 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK9", "altered": 0, "rank": 66, "cited": 448, "uniprotdesc": "Protein kinase involved in the regulation oftranscription. Member of the cyclin-dependent kinase pair(CDK9/cyclin-T) complex, also called positive transcriptionelongation factor b (P-TEFb), which facilitates the transitionfrom abortive to productive elongation by phosphorylating the CTD(C-terminal domain) of the large subunit of RNA polymerase II(RNAP II) POLR2A, SUPT5H and RDBP. This complex is inactive whenin the 7SK snRNP complex form. Phosphorylates EP300, MYOD1,RPB1/POLR2A and AR, and the negative elongation factors DSIF andNELF. Regulates cytokine inducible transcription networks byfacilitating promoter recognition of target transcription factors(e.g. TNF-inducible RELA/p65 activation and IL-6-inducible STAT3signaling). Promotes RNA synthesis in genetic programs for cellgrowth, differentiation and viral pathogenesis. P-TEFb is alsoinvolved in cotranscriptional histone modification, mRNAprocessing and mRNA export. Modulates a complex network ofchromatin modifications including histone H2B monoubiquitination(H2Bub1), H3 lysine 4 trimethylation (H3K4me3) and H3K36me3;integrates phosphorylation during transcription with chromatinmodifications to control co-transcriptional histone mRNAprocessing. The CDK9/cyclin-K complex has also a kinase activitytowards CTD of RNAP II and can substitute for CDK9/cyclin-T P-TEFbin vitro. Replication stress response protein; the CDK9/cyclin-Kcomplex is required for genome integrity maintenance, by promotingcell cycle recovery from replication arrest and limiting single-stranded DNA amount in response to replication stress, thusreducing the breakdown of stalled replication forks and avoidingDNA damage. In addition, probable function in DNA repair ofisoform 2 via interaction with KU70/XRCC6. Promotes cardiacmyocyte enlargement. RPB1/POLR2A phosphorylation on 'Ser-2' in CTDactivates transcription. AR phosphorylation modulates ARtranscription factor promoter selectivity and cell growth. DSIFand NELF phosphorylation promotes transcription by inhibitingtheir negative effect. The phosphorylation of MYOD1 enhances itstranscriptional activity and thus promotes muscle differentiation.", "isseed": false, "uniprot": "P50750", "isvalid": true, "importance": 3 }, "position": { "x": 533.4340572561462, "y": 816.3692511693461 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "RB1", "altered": 0, "rank": 15, "cited": 3201, "uniprotdesc": "Key regulator of entry into cell division that acts as atumor suppressor. Promotes G0-G1 transition when phosphorylated byCDK3/cyclin-C. Acts as a transcription repressor of E2F1 targetgenes. The underphosphorylated, active form of RB1 interacts withE2F1 and represses its transcription activity, leading to cellcycle arrest. Directly involved in heterochromatin formation bymaintaining overall chromatin structure and, in particular, thatof constitutive heterochromatin by stabilizing histonemethylation. Recruits and targets histone methyltransferasesSUV39H1, SUV420H1 and SUV420H2, leading to epigenetictranscriptional repression. Controls histone H4 'Lys-20'trimethylation. Inhibits the intrinsic kinase activity of TAF1.Mediates transcriptional repression by SMARCA4/BRG1 by recruitinga histone deacetylase (HDAC) complex to the c-FOS promoter. Inresting neurons, transcription of the c-FOS promoter is inhibitedby BRG1-dependent recruitment of a phospho-RB1-HDAC1 repressorcomplex. Upon calcium influx, RB1 is dephosphorylated bycalcineurin, which leads to release of the repressor complex (Bysimilarity). In case of viral infections, interactions with SV40large T antigen, HPV E7 protein or adenovirus E1A protein inducethe disassembly of RB1-E2F1 complex thereby disrupting RB1'sactivity. ", "isseed": false, "uniprot": "P06400", "isvalid": true, "importance": 3 }, "position": { "x": 391.78279426277885, "y": 853.8348717234876 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK7", "altered": 0, "rank": 72, "cited": 372, "uniprotdesc": "Serine/threonine kinase involved in cell cycle controland in RNA polymerase II-mediated RNA transcription. Cyclin-dependent kinases (CDKs) are activated by the binding to a cyclinand mediate the progression through the cell cycle. Each differentcomplex controls a specific transition between 2 subsequent phasesin the cell cycle. Required for both activation and complexformation of CDK1/cyclin-B during G2-M transition, and foractivation of CDK2/cyclins during G1-S transition (but not complexformation). CDK7 is the catalytic subunit of the CDK-activatingkinase (CAK) complex. Phosphorylates SPT5/SUPT5H, SF1/NR5A1,POLR2A, p53/TP53, CDK1, CDK2, CDK4, CDK6 and CDK11B/CDK11. CAKactivates the cyclin-associated kinases CDK1, CDK2, CDK4 and CDK6by threonine phosphorylation, thus regulating cell cycleprogression. CAK complexed to the core-TFIIH basal transcriptionfactor activates RNA polymerase II by serine phosphorylation ofthe repetitive C-terminal domain (CTD) of its large subunit(POLR2A), allowing its escape from the promoter and elongation ofthe transcripts. Phosphorylation of POLR2A in complex with DNApromotes transcription initiation by triggering dissociation fromDNA. Its expression and activity are constant throughout the cellcycle. Upon DNA damage, triggers p53/TP53 activation byphosphorylation, but is inactivated in turn by p53/TP53; thisfeedback loop may lead to an arrest of the cell cycle and of thetranscription, helping in cell recovery, or to apoptosis. Requiredfor DNA-bound peptides-mediated transcription and cellular growthinhibition. ", "isseed": false, "uniprot": "P50613", "isvalid": true, "importance": 3 }, "position": { "x": 868.3299557784554, "y": 646.8267181173212 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "HMGA2", "altered": 0, "rank": 82, "cited": 280, "uniprotdesc": "Functions as a transcriptional regulator. Functions incell cycle regulation through CCNA2. Plays an important role inchromosome condensation during the meiotic G2/M transition ofspermatocytes. ", "isseed": false, "uniprot": "P52926", "isvalid": true, "importance": 3 }, "position": { "x": 380.59028835335164, "y": 695.540157557881 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "DAPK3", "altered": 0, "rank": 112, "cited": 146, "uniprotdesc": "Serine/threonine kinase which is involved in theregulation of apoptosis, autophagy, transcription, translation andactin cytoskeleton reorganization. Involved in the regulation ofsmooth muscle contraction. Regulates both type I (caspase-dependent) apoptotic and type II (caspase-independent) autophagiccell deaths signal, depending on the cellular setting. Involved inregulation of starvation-induced autophagy. Regulates myosinphosphorylation in both smooth muscle and non-muscle cells. Insmooth muscle, regulates myosin either directly by phosphorylatingMYL12B and MYL9 or through inhibition of smooth muscle myosinphosphatase (SMPP1M) via phosphorylation of PPP1R12A; theinhibition of SMPP1M functions to enhance muscle responsiveness toCa(2+) and promote a contractile state. Phosphorylates MYL12B innon-muscle cells leading to reorganization of actin cytoskeleton.Isoform 2 can phosphorylate myosin, PPP1R12A and MYL12B.Overexpression leads to condensation of actin stress fibers intothick bundles. Involved in actin filament focal adhesion dynamics.The function in both reorganization of actin cytoskeleton andfocal adhesion dissolution is modulated by RhoD. Positivelyregulates canonical Wnt/beta-catenin signaling through interactionwith NLK and TCF7L2. Phosphorylates RPL13A on 'Ser-77' uponinterferon-gamma activation which is causing RPL13A release fromthe ribosome, RPL13A association with the GAIT complex and itssubsequent involvement in transcript-selective translationinhibition. Enhances transcription from AR-responsive promoters ina hormone- and kinase-dependent manner. Involved in regulation ofcell cycle progression and cell proliferation. May be a tumorsuppressor. ", "isseed": false, "uniprot": "O43293", "isvalid": true, "importance": 3 }, "position": { "x": 536.1288589447979, "y": 717.8669627085725 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "HMGA1", "altered": 0, "rank": 111, "cited": 147, "uniprotdesc": "HMG-I/Y bind preferentially to the minor groove of A+Trich regions in double-stranded DNA. It is suggested that theseproteins could function in nucleosome phasing and in the 3'-endprocessing of mRNA transcripts. They are also involved in thetranscription regulation of genes containing, or in closeproximity to A+T-rich regions.", "isseed": false, "uniprot": "P17096", "isvalid": true, "importance": 3 }, "position": { "x": 274.6422515999752, "y": 522.8126086058112 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKCD", "altered": 0, "rank": 122, "cited": 90, "uniprotdesc": "Calcium-independent, phospholipid- and diacylglycerol(DAG)-dependent serine/threonine-protein kinase that playscontrasting roles in cell death and cell survival by functioningas a pro-apoptotic protein during DNA damage-induced apoptosis,but acting as an anti-apoptotic protein during cytokine receptor-initiated cell death, is involved in tumor suppression as well assurvival of several cancers, is required for oxygen radicalproduction by NADPH oxidase and acts as positive or negativeregulator in platelet functional responses. Negatively regulates Bcell proliferation and also has an important function in self-antigen induced B cell tolerance induction. Upon DNA damage,activates the promoter of the death-promoting transcription factorBCLAF1/Btf to trigger BCLAF1-mediated p53/TP53 gene transcriptionand apoptosis. In response to oxidative stress, interact with andactivate CHUK/IKKA in the nucleus, causing the phosphorylation ofp53/TP53. In the case of ER stress or DNA damage-inducedapoptosis, can form a complex with the tyrosine-protein kinaseABL1 which trigger apoptosis independently of p53/TP53. In cytosolcan trigger apoptosis by activating MAPK11 or MAPK14, inhibitingAKT1 and decreasing the level of X-linked inhibitor of apoptosisprotein (XIAP), whereas in nucleus induces apoptosis via theactivation of MAPK8 or MAPK9. Upon ionizing radiation treatment,is required for the activation of the apoptosis regulators BAX andBAK, which trigger the mitochondrial cell death pathway. Canphosphorylate MCL1 and target it for degradation which issufficient to trigger for BAX activation and apoptosis. Isrequired for the control of cell cycle progression both at G1/Sand G2/M phases. Mediates phorbol 12-myristate 13-acetate (PMA)-induced inhibition of cell cycle progression at G1/S phase by up-regulating the CDK inhibitor CDKN1A/p21 and inhibiting the cyclinCCNA2 promoter activity. In response to UV irradiation canphosphorylate CDK1, which is important for the G2/M DNA damagecheckpoint activation. Can protect glioma cells from the apoptosisinduced by TNFSF10/TRAIL, probably by inducing increasedphosphorylation and subsequent activation of AKT1. Is highlyexpressed in a number of cancer cells and promotes cell survivaland resistance against chemotherapeutic drugs by inducing cyclinD1 (CCND1) and hyperphosphorylation of RB1, and via several pro-survival pathways, including NF-kappa-B, AKT1 and MAPK1/3(ERK1/2). Can also act as tumor suppressor upon mitogenicstimulation with PMA or TPA. In N-formyl-methionyl-leucyl-phenylalanine (fMLP)-treated cells, is required for NCF1 (p47-phox) phosphorylation and activation of NADPH oxidase activity,and regulates TNF-elicited superoxide anion production inneutrophils, by direct phosphorylation and activation of NCF1 orindirectly through MAPK1/3 (ERK1/2) signaling pathways. May alsoplay a role in the regulation of NADPH oxidase activity ineosinophil after stimulation with IL5, leukotriene B4 or PMA. Incollagen-induced platelet aggregation, acts a negative regulatorof filopodia formation and actin polymerization by interactingwith and negatively regulating VASP phosphorylation. Downstream ofPAR1, PAR4 and CD36/GP4 receptors, regulates differentiallyplatelet dense granule secretion; acts as a positive regulator inPAR-mediated granule secretion, whereas it negatively regulatesCD36/GP4-mediated granule release. Phosphorylates MUC1 in the C-terminal and regulates the interaction between MUC1 and beta-catenin. The catalytic subunit phosphorylates 14-3-3 proteins(YWHAB, YWHAZ and YWHAH) in a sphingosine-dependent fashion (Bysimilarity). ", "isseed": false, "uniprot": "Q05655", "isvalid": true, "importance": 3 }, "position": { "x": 847.9373487238083, "y": 550.2141828731392 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "UBN1", "altered": 0, "rank": 180, "cited": 8, "uniprotdesc": "Acts as a novel regulator of senescence. Involved in theformation of senescence-associated heterochromatin foci (SAHF),which represses expression of proliferation-promoting genes. Bindsto proliferation-promoting genes. May be required for replication-independent chromatin assembly. ", "isseed": false, "uniprot": "Q9NPG3", "isvalid": true, "importance": 3 }, "position": { "x": 389.1999575610891, "y": 730.6980849406907 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK5", "altered": 0, "rank": 44, "cited": 837, "uniprotdesc": "Proline-directed serine/threonine-protein kinaseessential for neuronal cell cycle arrest and differentiation andmay be involved in apoptotic cell death in neuronal diseases bytriggering abortive cell cycle re-entry. Interacts with D1 and D3-type G1 cyclins. Phosphorylates SRC, NOS3, VIM/vimentin,p35/CDK5R1, MEF2A, SIPA1L1, SH3GLB1, PXN, PAK1, MCAM/MUC18, SEPT5,SYN1, DNM1, AMPH, SYNJ1, CDK16, RAC1, RHOA, CDC42, TONEBP/NFAT5,MAPT/TAU, MAP1B, histone H1, p53/TP53, HDAC1, APEX1, PTK2/FAK1,huntingtin/HTT, ATM, MAP2, NEFH and NEFM. Regulates severalneuronal development and physiological processes includingneuronal survival, migration and differentiation, axonal andneurite growth, synaptogenesis, oligodendrocyte differentiation,synaptic plasticity and neurotransmission, by phosphorylating keyproteins. Activated by interaction with CDK5R1 (p35) and CDK5R2(p39), especially in post-mitotic neurons, and promotes CDK5R1(p35) expression in an autostimulation loop. Phosphorylates manydownstream substrates such as Rho and Ras family small GTPases(e.g. PAK1, RAC1, RHOA, CDC42) or microtubule-binding proteins(e.g. MAPT/TAU, MAP2, MAP1B), and modulates actin dynamics toregulate neurite growth and/or spine morphogenesis. Phosphorylatesalso exocytosis associated proteins such as MCAM/MUC18, SEPT5,SYN1, and CDK16/PCTAIRE1 as well as endocytosis associatedproteins such as DNM1, AMPH and SYNJ1 at synaptic terminals. Inthe mature central nervous system (CNS), regulatesneurotransmitter movements by phosphorylating substratesassociated with neurotransmitter release and synapse plasticity;synaptic vesicle exocytosis, vesicles fusion with the presynapticmembrane, and endocytosis. Promotes cell survival by activatinganti-apoptotic proteins BCL2 and STAT3, and negatively regulatingof JNK3/MAPK10 activity. Phosphorylation of p53/TP53 in responseto genotoxic and oxidative stresses enhances its stabilization bypreventing ubiquitin ligase-mediated proteasomal degradation, andinduces transactivation of p53/TP53 target genes, thus regulatingapoptosis. Phosphorylation of p35/CDK5R1 enhances itsstabilization by preventing calpain-mediated proteolysis producingp25/CDK5R1 and avoiding ubiquitin ligase-mediated proteasomaldegradation. During aberrant cell-cycle activity and DNA damage,p25/CDK5 activity elicits cell-cycle activity and double-strandDNA breaks that precedes neuronal death by deregulating HDAC1. DNAdamage triggered phosphorylation of huntingtin/HTT in nuclei ofneurons protects neurons against polyglutamine expansion as wellas DNA damage mediated toxicity. Phosphorylation of PXN reducesits interaction with PTK2/FAK1 in matrix-cell focal adhesions(MCFA) during oligodendrocytes (OLs) differentiation. Negativeregulator of Wnt/beta-catenin signaling pathway. Activator of theGAIT (IFN-gamma-activated inhibitor of translation) pathway, whichsuppresses expression of a post-transcriptional regulon ofproinflammatory genes in myeloid cells; phosphorylates the linkerdomain of glutamyl-prolyl tRNA synthetase (EPRS) in a IFN-gamma-dependent manner, the initial event in assembly of the GAITcomplex. Phosphorylation of SH3GLB1 is required for autophagyinduction in starved neurons. Phosphorylation of TONEBP/NFAT5 inresponse to osmotic stress mediates its rapid nuclearlocalization. MEF2 is inactivated by phosphorylation in nucleus inresponse to neurotoxin, thus leading to neuronal apoptosis. APEX1AP-endodeoxyribonuclease is repressed by phosphorylation,resulting in accumulation of DNA damage and contributing toneuronal death. NOS3 phosphorylation down regulates NOS3-derivednitrite (NO) levels. SRC phosphorylation mediates its ubiquitin-dependent degradation and thus leads to cytoskeletalreorganization. May regulate endothelial cell migration andangiogenesis via the modulation of lamellipodia formation.Involved in dendritic spine morphogenesis by mediating the EFNA1-EPHA4 signaling. The complex p35/CDK5 participates in theregulation of the circadian clock by modulating the function ofCLOCK protein: phosphorylates CLOCK at 'Thr-451' and 'Thr-461' andregulates the transcriptional activity of the CLOCK-ARNTL/BMAL1heterodimer in association with altered stability and subcellulardistribution. ", "isseed": false, "uniprot": "Q00535", "isvalid": true, "importance": 3 }, "position": { "x": 386.10946133920663, "y": 407.42213889178737 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK2", "altered": 0, "rank": 34, "cited": 1469, "uniprotdesc": "Serine/threonine-protein kinase involved in the controlof the cell cycle; essential for meiosis, but dispensable formitosis. Phosphorylates CTNNB1, USP37, p53/TP53, NPM1, CDK7, RB1,BRCA2, MYC, NPAT, EZH2. Interacts with cyclins A, B1, B3, D, or E.Triggers duplication of centrosomes and DNA. Acts at the G1-Stransition to promote the E2F transcriptional program and theinitiation of DNA synthesis, and modulates G2 progression;controls the timing of entry into mitosis/meiosis by controllingthe subsequent activation of cyclin B/CDK1 by phosphorylation, andcoordinates the activation of cyclin B/CDK1 at the centrosome andin the nucleus. Crucial role in orchestrating a fine balancebetween cellular proliferation, cell death, and DNA repair inhuman embryonic stem cells (hESCs). Activity of CDK2 is maximalduring S phase and G2; activated by interaction with cyclin Eduring the early stages of DNA synthesis to permit G1-Stransition, and subsequently activated by cyclin A2 (cyclin A1 ingerm cells) during the late stages of DNA replication to drive thetransition from S phase to mitosis, the G2 phase. EZH2phosphorylation promotes H3K27me3 maintenance and epigenetic genesilencing. Phosphorylates CABLES1 (By similarity). Cyclin E/CDK2prevents oxidative stress-mediated Ras-induced senescence byphosphorylating MYC. Involved in G1-S phase DNA damage checkpointthat prevents cells with damaged DNA from initiating mitosis;regulates homologous recombination-dependent repair byphosphorylating BRCA2, this phosphorylation is low in S phase whenrecombination is active, but increases as cells progress towardsmitosis. In response to DNA damage, double-strand break repair byhomologous recombination a reduction of CDK2-mediated BRCA2phosphorylation. Phosphorylation of RB1 disturbs its interactionwith E2F1. NPM1 phosphorylation by cyclin E/CDK2 promotes itsdissociates from unduplicated centrosomes, thus initiatingcentrosome duplication. Cyclin E/CDK2-mediated phosphorylation ofNPAT at G1-S transition and until prophase stimulates the NPAT-mediated activation of histone gene transcription during S phase.Required for vitamin D-mediated growth inhibition by being itselfinactivated. Involved in the nitric oxide- (NO) mediated signalingin a nitrosylation/activation-dependent manner. USP37 is activatedby phosphorylation and thus triggers G1-S transition. CTNNB1phosphorylation regulates insulin internalization. ", "isseed": false, "uniprot": "P24941", "isvalid": true, "importance": 3 }, "position": { "x": 593.5733192788242, "y": 255.89854214344376 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "DAPK1", "altered": 0, "rank": 49, "cited": 691, "uniprotdesc": "Calcium/calmodulin-dependent serine/threonine kinaseinvolved in multiple cellular signaling pathways that trigger cellsurvival, apoptosis, and autophagy. Regulates both type Iapoptotic and type II autophagic cell deaths signal, depending onthe cellular setting. The former is caspase-dependent, while thelatter is caspase-independent and is characterized by theaccumulation of autophagic vesicles. Phosphorylates PIN1 resultingin inhibition of its catalytic activity, nuclear localization, andcellular function. Phosphorylates TPM1, enhancing stress fiberformation in endothelial cells. Phosphorylates STX1A andsignificantly decreases its binding to STXBP1. PhosphorylatesPRKD1 and regulates JNK signaling by binding and activating PRKD1under oxidative stress. Phosphorylates BECN1, reducing itsinteraction with BCL2 and BCL2L1 and promoting the induction ofautophagy. Phosphorylates TSC2, disrupting the TSC1-TSC2 complexand stimulating mTORC1 activity in a growth factor-dependentpathway. Phosphorylates RPS6, MYL9 and DAPK3. Acts as a signalingamplifier of NMDA receptors at extrasynaptic sites for mediatingbrain damage in stroke. Cerebral ischemia recruits DAPK1 into theNMDA receptor complex and it phosphorylates GRINB at Ser-1303inducing injurious Ca(2+) influx through NMDA receptor channels,resulting in an irreversible neuronal death. Required togetherwith DAPK3 for phosphorylation of RPL13A upon interferon-gammaactivation which is causing RPL13A involvement in transcript-selective translation inhibition.Isoform 2 cannot induce apoptosis but can inducemembrane blebbing.", "isseed": false, "uniprot": "P53355", "isvalid": true, "importance": 3 }, "position": { "x": 811.3568384414189, "y": 654.1313839187596 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "RFWD2", "altered": 0, "rank": 143, "cited": 60, "uniprotdesc": "E3 ubiquitin-protein ligase that mediates ubiquitinationand subsequent proteasomal degradation of target proteins. E3ubiquitin ligases accept ubiquitin from an E2 ubiquitin-conjugating enzyme in the form of a thioester and then directlytransfers the ubiquitin to targeted substrates. Involved in JUNubiquitination and degradation. Directly involved in p53 (TP53)ubiquitination and degradation, thereby abolishing p53-dependenttranscription and apoptosis. Ubiquitinates p53 independently ofMDM2 or RCHY1. Probably mediates E3 ubiquitin ligase activity byfunctioning as the essential RING domain subunit of larger E3complexes. In contrast, it does not constitute the catalytic RINGsubunit in the DCX DET1-COP1 complex that negatively regulatesJUN, the ubiquitin ligase activity being mediated by RBX1.Involved in 14-3-3 protein sigma/SFN ubiquitination andproteasomal degradation, leading to AKT activation and promotionof cell survival. Ubiquitinates MTA1 leading to its proteasomaldegradation. ", "isseed": false, "uniprot": "Q8NHY2", "isvalid": true, "importance": 3 }, "position": { "x": 413.96962484139175, "y": 371.12786845760456 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPM1J", "altered": 0, "rank": 191, "cited": 3, "uniprotdesc": "", "isseed": false, "uniprot": "Q5JR12", "isvalid": true, "importance": 3 }, "position": { "x": 184.66846327119083, "y": 540.5457635023574 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "BTG2", "altered": 0, "rank": 97, "cited": 205, "uniprotdesc": "Anti-proliferative protein; the function is mediated byassociation with deadenylase subunits of the CCR4-NOT complex.Activates mRNA deadenylation in a CNOT6 and CNOT7-dependentmanner. In vitro can inhibit deadenylase activity of CNOT7 andCNOT8. Involved in cell cycle regulation. Could be involved in thegrowth arrest and differentiation of the neuronal precursors (Bysimilarity). Modulates transcription regulation mediated by ESR1.Involved in mitochondrial depolarization and neurite outgrowth.", "isseed": false, "uniprot": "P78543", "isvalid": true, "importance": 3 }, "position": { "x": 649.4197435695061, "y": 286.8168121746369 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CD82", "altered": 0, "rank": 69, "cited": 417, "uniprotdesc": "Associates with CD4 or CD8 and delivers costimulatorysignals for the TCR/CD3 pathway.", "isseed": false, "uniprot": "P27701", "isvalid": true, "importance": 3 }, "position": { "x": 745.3984479271544, "y": 220.9094661523508 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "HIPK2", "altered": 0, "rank": 70, "cited": 405, "uniprotdesc": "Serine/threonine-protein kinase involved intranscription regulation, p53/TP53-mediated cellular apoptosis andregulation of the cell cycle. Acts as a corepressor of severaltranscription factors, including SMAD1 and POU4F1/Brn3a andprobably NK homeodomain transcription factors. PhosphorylatesPDX1, ATF1, PML, p53/TP53, CREB1, CTBP1, CBX4, RUNX1, EP300,CTNNB1, HMGA1 and ZBTB4. Inhibits cell growth and promotesapoptosis through the activation of p53/TP53 both at thetranscription level and at the protein level (by phosphorylationand indirect acetylation). The phosphorylation of p53/TP53 may bemediated by a p53/TP53-HIPK2-AXIN1 complex. Involved in theresponse to hypoxia by acting as a transcriptional co-suppressorof HIF1A. Mediates transcriptional activation of TP73. In responseto TGFB, cooperates with DAXX to activate JNK. Negative regulatorthrough phosphorylation and subsequent proteasomal degradation ofCTNNB1 and the antiapoptotic factor CTBP1. In the Wnt/beta-cateninsignaling pathway acts as an intermediate kinase betweenMAP3K7/TAK1 and NLK to promote the proteasomal degradation of MYB.Phosphorylates CBX4 upon DNA damage and promotes its E3 SUMO-protein ligase activity. Activates CREB1 and ATF1 transcriptionfactors by phosphorylation in response to genotoxic stress. Inresponse to DNA damage, stabilizes PML by phosphorylation. PML,HIPK2 and FBXO3 may act synergically to activate p53/TP53-dependent transactivation. Promotes angiogenesis, and is involvedin erythroid differentiation, especially during fetal livererythropoiesis. Phosphorylation of RUNX1 and EP300 stimulatesEP300 transcription regulation activity. Triggers ZBTB4 proteindegradation in response to DNA damage. Modulates HMGA1 DNA-bindingaffinity. In response to high glucose, triggers phosphorylation-mediated subnuclear localization shifting of PDX1. Involved in theregulation of eye size, lens formation and retinal laminationduring late embryogenesis. ", "isseed": false, "uniprot": "Q9H2X6", "isvalid": true, "importance": 3 }, "position": { "x": 625.9427635622731, "y": 878.4243437286829 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "DDB2", "altered": 0, "rank": 102, "cited": 168, "uniprotdesc": "Required for DNA repair. Binds to DDB1 to form the UV-damaged DNA-binding protein complex (the UV-DDB complex). The UV-DDB complex may recognize UV-induced DNA damage and recruitproteins of the nucleotide excision repair pathway (the NERpathway) to initiate DNA repair. The UV-DDB complex preferentiallybinds to cyclobutane pyrimidine dimers (CPD), 6-4 photoproducts(6-4 PP), apurinic sites and short mismatches. Also appears tofunction as the substrate recognition module for the DCX (DDB1-CUL4-X-box) E3 ubiquitin-protein ligase complex DDB1-CUL4-ROC1(also known as CUL4-DDB-ROC1 and CUL4-DDB-RBX1). The DDB1-CUL4-ROC1 complex may ubiquitinate histone H2A, histone H3 and histoneH4 at sites of UV-induced DNA damage. The ubiquitination ofhistones may facilitate their removal from the nucleosome andpromote subsequent DNA repair. The DDB1-CUL4-ROC1 complex alsoubiquitinates XPC, which may enhance DNA-binding by XPC andpromote NER. Isoform D1 and isoform D2 inhibit UV-damaged DNArepair. ", "isseed": false, "uniprot": "Q92466", "isvalid": true, "importance": 3 }, "position": { "x": 697.7986767513992, "y": 665.5112052893029 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MDM2", "altered": 0, "rank": 7, "cited": 5024, "uniprotdesc": "E3 ubiquitin-protein ligase that mediates ubiquitinationof p53/TP53, leading to its degradation by the proteasome.Inhibits p53/TP53- and p73/TP73-mediated cell cycle arrest andapoptosis by binding its transcriptional activation domain. Alsoacts as a ubiquitin ligase E3 toward itself and ARRB1. Permits thenuclear export of p53/TP53. Promotes proteasome-dependentubiquitin-independent degradation of retinoblastoma RB1 protein.Inhibits DAXX-mediated apoptosis by inducing its ubiquitinationand degradation. Component of the TRIM28/KAP1-MDM2-p53/TP53complex involved in stabilizing p53/TP53. Also component of theTRIM28/KAP1-ERBB4-MDM2 complex which links growth factor and DNAdamage response pathways. Mediates ubiquitination and subsequentproteasome degradation of DYRK2 in nucleus. Ubiquitinates IGF1Rand SNAI1 and promotes them to proteasomal degradation.", "isseed": false, "uniprot": "Q00987", "isvalid": true, "importance": 3 }, "position": { "x": 656.6570279510614, "y": 447.3606014659473 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CTSD", "altered": 0, "rank": 85, "cited": 273, "uniprotdesc": "Acid protease active in intracellular protein breakdown.Involved in the pathogenesis of several diseases such as breastcancer and possibly Alzheimer disease.", "isseed": false, "uniprot": "P07339", "isvalid": true, "importance": 3 }, "position": { "x": 517.8939083263579, "y": 896.107642578988 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "NGFR", "altered": 0, "rank": 80, "cited": 313, "uniprotdesc": "Plays a role in the regulation of the translocation ofGLUT4 to the cell surface in adipocytes and skeletal muscle cellsin response to insulin, probably by regulating RAB31 activity, andthereby contributes to the regulation of insulin-dependent glucoseuptake (By similarity). Low affinity receptor which can bind toNGF, BDNF, NT-3, and NT-4. Can mediate cell survival as well ascell death of neural cells. Necessary for the circadianoscillation of the clock genes ARNTL/BMAL1, PER1, PER2 and NR1D1in the suprachiasmatic nucleus (SCN) of the brain and in liver andof the genes involved in glucose and lipid metabolism in theliver. ", "isseed": false, "uniprot": "P08138", "isvalid": true, "importance": 3 }, "position": { "x": 388.00687822163627, "y": 207.82490459593345 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CARM1", "altered": 0, "rank": 207, "cited": 152, "uniprotdesc": "Methylates (mono- and asymmetric dimethylation) theguanidino nitrogens of arginyl residues in several proteinsinvolved in DNA packaging, transcription regulation, pre-mRNAsplicing, and mRNA stability. Recruited to promoters upon geneactivation together with histone acetyltransferases fromEP300/P300 and p160 families, methylates histone H3 at 'Arg-17'(H3R17me), forming mainly asymmetric dimethylarginine (H3R17me2a),leading to activate transcription via chromatin remodeling. Duringnuclear hormone receptor activation and TCF7L2/TCF4 activation,acts synergically with EP300/P300 and either one of the p160histone acetyltransferases NCOA1/SRC1, NCOA2/GRIP1 and NCOA3/ACTRor CTNNB1/beta-catenin to activate transcription. During myogenictranscriptional activation, acts together with NCOA3/ACTR as acoactivator for MEF2C. During monocyte inflammatory stimulation,acts together with EP300/P300 as a coactivator for NF-kappa-B.Acts as coactivator for PPARG, promotes adipocyte differentiationand the accumulation of brown fat tissue. Plays a role in theregulation of pre-mRNA alternative splicing by methylation ofsplicing factors. Also seems to be involved in p53/TP53transcriptional activation. Methylates EP300/P300, both at 'Arg-2142', which may loosen its interaction with NCOA2/GRIP1, and at'Arg-580' and 'Arg-604' in the KIX domain, which impairs itsinteraction with CREB and inhibits CREB-dependent transcriptionalactivation. Also methylates arginine residues in RNA-bindingproteins PABPC1, ELAVL1 and ELAV4, which may affect their mRNA-stabilizing properties and the half-life of their target mRNAs.", "isseed": false, "uniprot": "Q86X55", "isvalid": true, "importance": 2 }, "position": { "x": 594.439805599261, "y": 50 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TYRP1", "altered": 0, "rank": 87, "cited": 265, "uniprotdesc": "Oxidation of 5,6-dihydroxyindole-2-carboxylic acid(DHICA) into indole-5,6-quinone-2-carboxylic acid. May regulate orinfluence the type of melanin synthesized.", "isseed": false, "uniprot": "P17643", "isvalid": true, "importance": 3 }, "position": { "x": 181.50735441199495, "y": 699.7378635369411 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKDC", "altered": 0, "rank": 74, "cited": 363, "uniprotdesc": "Serine/threonine-protein kinase that acts as a molecularsensor for DNA damage. Involved in DNA non-homologous end joining(NHEJ) required for double-strand break (DSB) repair and V(D)Jrecombination. Must be bound to DNA to express its catalyticproperties. Promotes processing of hairpin DNA structures in V(D)Jrecombination by activation of the hairpin endonuclease artemis(DCLRE1C). The assembly of the DNA-PK complex at DNA ends is alsorequired for the NHEJ ligation step. Required to protect and alignbroken ends of DNA. May also act as a scaffold protein to aid thelocalization of DNA repair proteins to the site of damage. Foundat the ends of chromosomes, suggesting a further role in themaintenance of telomeric stability and the prevention ofchromosomal end fusion. Also involved in modulation oftranscription. Recognizes the substrate consensus sequence [ST]-Q.Phosphorylates 'Ser-139' of histone variant H2AX/H2AFX, therebyregulating DNA damage response mechanism. Phosphorylates DCLRE1C,c-Abl/ABL1, histone H1, HSPCA, c-jun/JUN, p53/TP53, PARP1, POU2F1,DHX9, SRF, XRCC1, XRCC1, XRCC4, XRCC5, XRCC6, WRN, MYC and RFA2.Can phosphorylate C1D not only in the presence of linear DNA butalso in the presence of supercoiled DNA. Ability to phosphorylatep53/TP53 in the presence of supercoiled DNA is dependent on C1D.Contributes to the determination of the circadian period length byantagonizing phosphorylation of CRY1 'Ser-588' and increasing CRY1protein stability, most likely through an indirect machanism.Interacts with CRY1 and CRY2; negatively regulates CRY1phosphorylation. ", "isseed": false, "uniprot": "P78527", "isvalid": true, "importance": 3 }, "position": { "x": 692.2722260229341, "y": 416.0554559054471 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "HIC1", "altered": 0, "rank": 99, "cited": 185, "uniprotdesc": "Transcriptional repressor. Recognizes and binds to theconsensus sequence '5-[CG]NG[CG]GGGCA[CA]CC-3'. May act as a tumorsuppressor. May be involved in development of head, face, limbsand ventral body wall. Involved in down-regulation of SIRT1 andthereby is involved in regulation of p53/TP53-dependent apoptoticDNA-damage responses. The specific target gene promoterassociation seems to be depend on corepressors, such as CTBP1 orCTBP2 and MTA1. The regulation of SIRT1 transcription in responseto nutrient deprivation seems to involve CTBP1. In cooperationwith MTA1 (indicative for an association with the NuRD complex)represses transcription from CCND1/cyclin-D1 and CDKN1C/p57Kip2specifically in quiescent cells. Involved in regulation of the Wntsignaling pathway probably by association with TCF7L2 andpreventing TCF7L2 and CTNNB1 association with promoters of TCF-responsive genes. Seems to repress transcription from E2F1 andATOH1 which involves ARID1A, indicative for the participation of adistinct SWI/SNF-type chromatin-remodeling complex. Probablyrepresses transcription from ACKR3, FGFBP1 and EFNA1.", "isseed": false, "uniprot": "Q14526", "isvalid": true, "importance": 3 }, "position": { "x": 265.810274961294, "y": 650.3113013209746 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TAP1", "altered": 0, "rank": 63, "cited": 474, "uniprotdesc": "Involved in the transport of antigens from the cytoplasmto the endoplasmic reticulum for association with MHC class Imolecules. Also acts as a molecular scaffold for the final stageof MHC class I folding, namely the binding of peptide. Nascent MHCclass I molecules associate with TAP via tapasin. Inhibited by thecovalent attachment of herpes simplex virus ICP47 protein, whichblocks the peptide-binding site of TAP. Inhibited by humancytomegalovirus US6 glycoprotein, which binds to the lumenal sideof the TAP complex and inhibits peptide translocation byspecifically blocking ATP-binding to TAP1 and prevents theconformational rearrangement of TAP induced by peptide binding.Inhibited by human adenovirus E3-19K glycoprotein, which binds theTAP complex and acts as a tapasin inhibitor, preventing MHC classI/TAP association. Expression of TAP1 is down-regulated by humanEpstein-Barr virus vIL-10 protein, thereby affecting the transportof peptides into the endoplasmic reticulum and subsequent peptideloading by MHC class I molecules.", "isseed": false, "uniprot": "Q03518", "isvalid": true, "importance": 3 }, "position": { "x": 293.85654111273516, "y": 790.2092166715066 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PYCARD", "altered": 0, "rank": 89, "cited": 244, "uniprotdesc": "Functions as key mediator in apoptosis and inflammation.Promotes caspase-mediated apoptosis involving predominantlycaspase-8 and also caspase-9 in a probable cell type-specificmanner. Involved in activation of the mitochondrial apoptoticpathway, promotes caspase-8-dependent proteolytic maturation ofBID independently of FADD in certain cell types and also mediatesmitochondrial translocation of BAX and activates BAX-dependentapoptosis coupled to activation of caspase-9, -2 and -3. Involvedin macrophage pyroptosis, a caspase-1-dependent inflammatory formof cell death and is the major constituent of the ASC pyroptosomewhich forms upon potassium depletion and rapidly recruits andactivates caspase-1. In innate immune response believed to act asan integral adapter in the assembly of the inflammasome whichactivates caspase-1 leading to processing and secretion ofproinflammatory cytokines. The function as activating adapter indifferent types of inflammasomes is mediated by the DAPIN and CARDdomains and their homotypic interactions. Required for recruitmentof caspase-1 to inflammasomes containing certain patternrecognition receptors, such as NLRP2, NLRP3, AIM2 and probablyIFI16. In the NLRP1 and NLRC4 inflammasomes seems not be requiredbut facilitates the processing of procaspase-1. In cooperationwith NOD2 involved in an inflammasome activated by bacterialmuramyl dipeptide leading to caspase-1 activation. May be involvedin DDX58-triggered proinflammatory responses and inflammasomeactivation. Isoform 2 may have a regulating effect on the functionas inflammasome adapter. Isoform 3 seems to inhibit inflammasome-mediated maturation of interleukin-1 beta. In collaboration withAIM2 which detects cytosolic double-stranded DNA may also beinvolved in a caspase-1-independent cell death that involvescaspase-8. In adaptive immunity may be involved in maturation ofdendritic cells to stimulate T-cell immunity and in cytoskeletalrearrangements coupled to chemotaxis and antigen uptake may beinvolved in post-transcriptional regulation of the guaninenucleotide exchange factor DOCK2; the latter function is proposedto involve the nuclear form. Also involved in transcriptionalactivation of cytokines and chemokines independent of theinflammasome; this function may involve AP-1, NF-kappa-B, MAPK andcaspase-8 signaling pathways. For regulation of NF-kappa-Bactivating and inhibiting functions have been reported. ModulatesNF-kappa-B induction at the level of the IKK complex by inhibitingkinase activity of CHUK and IKBK. Proposed to compete with RIPK2for association with CASP1 thereby down-regulating CASP1-mediatedRIPK2-dependent NF-kappa-B activation and activating interleukin-1beta processing. ", "isseed": false, "uniprot": "Q9ULZ3", "isvalid": true, "importance": 3 }, "position": { "x": 687.2350805907764, "y": 826.6021617463574 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "APC", "altered": 0, "rank": 22, "cited": 2683, "uniprotdesc": "Tumor suppressor. Promotes rapid degradation of CTNNB1and participates in Wnt signaling as a negative regulator. APCactivity is correlated with its phosphorylation state. Activatesthe GEF activity of SPATA13 and ARHGEF4. Plays a role inhepatocyte growth factor (HGF)-induced cell migration. Requiredfor MMP9 up-regulation via the JNK signaling pathway in colorectaltumor cells. Acts as a mediator of ERBB2-dependent stabilizationof microtubules at the cell cortex. It is required for thelocalization of MACF1 to the cell membrane and this localizationof MACF1 is critical for its function in microtubulestabilization. ", "isseed": false, "uniprot": "P25054", "isvalid": true, "importance": 3 }, "position": { "x": 747.2587879799543, "y": 778.7815595866688 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "RNF144B", "altered": 0, "rank": 190, "cited": 4, "uniprotdesc": "E3 ubiquitin-protein ligase which accepts ubiquitin fromE2 ubiquitin-conjugating enzymes UBE2L3 and UBE2L6 in the form ofa thioester and then directly transfers the ubiquitin to targetedsubstrates such as LCMT2, thereby promoting their degradation.Induces apoptosis via a p53/TP53-dependent but caspase-independentmechanism. However, its overexpression also produces a decrease ofthe ubiquitin-dependent stability of BAX, a pro-apoptotic protein,ultimately leading to protection of cell death; But, it is not ananti-apoptotic protein per se. ", "isseed": false, "uniprot": "Q7Z419", "isvalid": true, "importance": 3 }, "position": { "x": 271.3513824856756, "y": 270.7570107830495 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "KAT2B", "altered": 0, "rank": 55, "cited": 609, "uniprotdesc": null, "isseed": false, "uniprot": null, "isvalid": true, "importance": 3 }, "position": { "x": 182.79655136099237, "y": 268.7519861935934 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MSH2", "altered": 0, "rank": 21, "cited": 2696, "uniprotdesc": "Component of the post-replicative DNA mismatch repairsystem (MMR). Forms two different heterodimers: MutS alpha (MSH2-MSH6 heterodimer) and MutS beta (MSH2-MSH3 heterodimer) whichbinds to DNA mismatches thereby initiating DNA repair. When bound,heterodimers bend the DNA helix and shields approximately 20 basepairs. MutS alpha recognizes single base mismatches anddinucleotide insertion-deletion loops (IDL) in the DNA. MutS betarecognizes larger insertion-deletion loops up to 13 nucleotideslong. After mismatch binding, MutS alpha or beta forms a ternarycomplex with the MutL alpha heterodimer, which is thought to beresponsible for directing the downstream MMR events, includingstrand discrimination, excision, and resynthesis. ATP binding andhydrolysis play a pivotal role in mismatch repair functions. TheATPase activity associated with MutS alpha regulates bindingsimilar to a molecular switch: mismatched DNA provokes ADP-->ATPexchange, resulting in a discernible conformational transitionthat converts MutS alpha into a sliding clamp capable ofhydrolysis-independent diffusion along the DNA backbone. Thistransition is crucial for mismatch repair. MutS alpha may alsoplay a role in DNA homologous recombination repair. In melanocytesmay modulate both UV-B-induced cell cycle regulation andapoptosis. ", "isseed": false, "uniprot": "P43246", "isvalid": true, "importance": 3 }, "position": { "x": 485.7654641871573, "y": 792.9158059435003 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP1R13L", "altered": 0, "rank": 140, "cited": 63, "uniprotdesc": "Regulator that plays a central role in regulation ofapoptosis and transcription via its interaction with NF-kappa-Band p53/TP53 proteins. Blocks transcription of HIV-1 virus byinhibiting the action of both NF-kappa-B and SP1. Also inhibitsp53/TP53 function, possibly by preventing the association betweenp53/TP53 and ASPP1 or ASPP2, and therefore suppressing thesubsequent activation of apoptosis. ", "isseed": false, "uniprot": "Q8WUF5", "isvalid": true, "importance": 3 }, "position": { "x": 653.1041086465492, "y": 220.8775454626145 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SIRT1", "altered": 0, "rank": 46, "cited": 799, "uniprotdesc": "NAD-dependent protein deacetylase that linkstranscriptional regulation directly to intracellular energeticsand participates in the coordination of several separated cellularfunctions such as cell cycle, response to DNA damage, metobolism,apoptosis and autophagy. Can modulate chromatin function throughdeacetylation of histones and can promote alterations in themethylation of histones and DNA, leading to transcriptionalrepression. Deacetylates a broad range of transcription factorsand coregulators, thereby regulating target gene expressionpositively and negatively. Serves as a sensor of the cytosolicratio of NAD(+)/NADH which is altered by glucose deprivation andmetabolic changes associated with caloric restriction. Isessential in skeletal muscle cell differentiation and in responseto low nutrients mediates the inhibitory effect on skeletalmyoblast differentiation which also involves 5'-AMP-activatedprotein kinase (AMPK) and nicotinamide phosphoribosyltransferase(NAMPT). Component of the eNoSC (energy-dependent nucleolarsilencing) complex, a complex that mediates silencing of rDNA inresponse to intracellular energy status and acts by recruitinghistone-modifying enzymes. The eNoSC complex is able to sense theenergy status of cell: upon glucose starvation, elevation ofNAD(+)/NADP(+) ratio activates SIRT1, leading to histone H3deacetylation followed by dimethylation of H3 at 'Lys-9' (H3K9me2)by SUV39H1 and the formation of silent chromatin in the rDNAlocus. Deacetylates 'Lys-266' of SUV39H1, leading to itsactivation. Inhibits skeletal muscle differentiation bydeacetylating PCAF and MYOD1. Deacetylates H2A and 'Lys-26' ofHIST1H1E. Deacetylates 'Lys-16' of histone H4 (in vitro). Involvedin NR0B2/SHP corepression function through chromatin remodeling:Recruited to LRH1 target gene promoters by NR0B2/SHP therebystimulating histone H3 and H4 deacetylation leading totranscriptional repression. Proposed to contribute to genomicintegrity via positive regulation of telomere length; however,reports on localization to pericentromeric heterochromatin areconflicting. Proposed to play a role in constitutiveheterochromatin (CH) formation and/or maintenance throughregulation of the available pool of nuclear SUV39H1. Uponoxidative/metabolic stress decreases SUV39H1 degradation byinhibiting SUV39H1 polyubiquitination by MDM2. This increase inSUV39H1 levels enhances SUV39H1 turnover in CH, which in turnseems to accelerate renewal of the heterochromatin whichcorrelates with greater genomic integrity during stress response.Deacetylates 'Lys-382' of p53/TP53 and impairs its ability toinduce transcription-dependent proapoptotic program and modulatecell senescence. Deacetylates TAF1B and thereby represses rDNAtranscription by the RNA polymerase I. Deacetylates MYC, promotesthe association of MYC with MAX and decreases MYC stabilityleading to compromised transformational capability. DeacetylatesFOXO3 in response to oxidative stress thereby increasing itsability to induce cell cycle arrest and resistance to oxidativestress but inhibiting FOXO3-mediated induction of apoptosistranscriptional activity; also leading to FOXO3 ubiquitination andprotesomal degradation. Appears to have a similar effect onMLLT7/FOXO4 in regulation of transcriptional activity andapoptosis. Deacetylates DNMT1; thereby impairs DNMT1methyltransferase-independent transcription repressor activity,modulates DNMT1 cell cycle regulatory function and DNMT1-mediatedgene silencing. Deacetylates RELA/NF-kappa-B p65 therebyinhibiting its transactivating potential and augments apoptosis inresponse to TNF-alpha. Deacetylates HIF1A, KAT5/TIP60, RB1 andHIC1. Deacetylates FOXO1 resulting in its nuclear retention andenhancement of its transcriptional activity leading to increasedgluconeogenesis in liver. Inhibits E2F1 transcriptional activityand apoptotic function, possibly by deacetylation. Involved inHES1- and HEY2-mediated transcriptional repression. In cooperationwith MYCN seems to be involved in transcriptional repression ofDUSP6/MAPK3 leading to MYCN stabilization by phosphorylation at'Ser-62'. Deacetylates MEF2D. Required for antagonist-mediatedtranscription suppression of AR-dependent genes which may belinked to local deacetylation of histone H3. Represses HNF1A-mediated transcription. Required for the repression of ESRRG byCREBZF. Modulates AP-1 transcription factor activity. DeacetylatesNR1H3 AND NR1H2 and deacetylation of NR1H3 at 'Lys-434' positivelyregulates transcription of NR1H3:RXR target genes, promotes NR1H3proteosomal degradation and results in cholesterol efflux; apromoter clearing mechanism after reach round of transcription isproposed. Involved in lipid metabolism. Implicated in regulationof adipogenesis and fat mobilization in white adipocytes byrepression of PPARG which probably involves association with NCOR1and SMRT/NCOR2. Deacetylates ACSS2 leading to its activation, andHMGCS1. Involved in liver and muscle metabolism. Throughdeacteylation and activation of PPARGC1A is required to activatefatty acid oxidation in skeletel muscle under low-glucoseconditions and is involved in glucose homeostasis. Involved inregulation of PPARA and fatty acid beta-oxidation in liver.Involved in positive regulation of insulin secretion in pancreaticbeta cells in response to glucose; the function seems to implytranscriptional repression of UCP2. Proposed to deacetylate IRS2thereby facilitating its insulin-induced tyrosine phosphorylation.Deacetylates SREBF1 isoform SREBP-1C thereby decreasing itsstability and transactivation in lipogenic gene expression.Involved in DNA damage response by repressing genes which areinvolved in DNA repair, such as XPC and TP73, deacetylatingXRCC6/Ku70, and faciliting recruitment of additional factors tosites of damaged DNA, such as SIRT1-deacetylated NBN can recruitATM to initiate DNA repair and SIRT1-deacetylated XPA interactswith RPA2. Also involved in DNA repair of DNA double-strand breaksby homologous recombination and specifically single-strandannealing independently of XRCC6/Ku70 and NBN. Transcriptionalsuppression of XPC probably involves an E2F4:RBL2 suppressorcomplex and protein kinase B (AKT) signaling. Transcriptionalsuppression of TP73 probably involves E2F4 and PCAF. DeacetylatesWRN thereby regulating its helicase and exonuclease activities andregulates WRN nuclear translocation in response to DNA damage.Deacetylates APEX1 at 'Lys-6' and 'Lys-7' and stimulates cellularAP endonuclease activity by promoting the association of APEX1 toXRCC1. Increases p53/TP53-mediated transcription-independentapoptosis by blocking nuclear translocation of cytoplasmicp53/TP53 and probably redirecting it to mitochondria. DeacetylatesXRCC6/Ku70 at 'Lys-539' and 'Lys-542' causing it to sequester BAXaway from mitochondria thereby inhibiting stress-inducedapoptosis. Is involved in autophagy, presumably by deacetylatingATG5, ATG7 and MAP1LC3B/ATG8. Deacetylates AKT1 which leads toenhanced binding of AKT1 and PDK1 to PIP3 and promotes theiractivation. Proposed to play role in regulation of STK11/LBK1-dependent AMPK signaling pathways implicated in cellularsenescence which seems to involve the regulation of theacetylation status of STK11/LBK1. Can deacetylate STK11/LBK1 andthereby increase its activity, cytoplasmic localization andassociation with STRAD; however, the relevance of such activity innormal cells is unclear. In endothelial cells is shown to inhibitSTK11/LBK1 activity and to promote its degradation. DeacetylatesSMAD7 at 'Lys-64' and 'Lys-70' thereby promoting its degradation.Deacetylates CIITA and augments its MHC class II transactivationand contributes to its stability. Deacteylates MECOM/EVI1. Isoform2 is shown to deacetylate 'Lys-382' of p53/TP53, however withlower activity than isoform 1. In combination, the two isoformsexert an additive effect. Isoform 2 regulates p53/TP53 expressionand cellular stress response and is in turn repressed by p53/TP53presenting a SIRT1 isoform-dependent auto-regulatory loop. In caseof HIV-1 infection, interacts with and deacetylates the viral Tatprotein. The viral Tat protein inhibits SIRT1 deacetylationactivity toward RELA/NF-kappa-B p65, thereby potentiates itstranscriptional activity and SIRT1 is proposed to contribute to T-cell hyperactivation during infection. Deacetylates PML at 'Lys-487' and this deacetylation promotes PML control of PER2 nuclearlocalization. During the neurogenic transition, repress selectiveNOTCH1-target genes through histone deacetylation in a BCL6-dependent manner and leading to neuronal differentiation.Regulates the circadian expression of several core clock genes,including ARNTL/BMAL1, RORC, PER2 and CRY1 and plays a criticalrole in maintaining a controlled rhythmicity in histoneacetylation, thereby contributing to circadian chromatinremodeling. Deacetylates ARNTL/BMAL1 and histones at the circadiangene promoters in order to facilitate repression by inhibitorycomponents of the circadian oscillator. Deacetylates PER2,facilitating its ubiquitination and degradation by the proteosome.Protects cardiomyocytes against palmitate-induced apoptosis(PubMed:11672523, PubMed:12006491, PubMed:14976264,PubMed:14980222, PubMed:15126506, PubMed:15152190,PubMed:15205477, PubMed:15469825, PubMed:15692560,PubMed:16079181, PubMed:16166628, PubMed:16892051,PubMed:16998810, PubMed:17283066, PubMed:17334224,PubMed:17505061, PubMed:17612497, PubMed:17620057,PubMed:17936707, PubMed:18203716, PubMed:18296641,PubMed:18662546, PubMed:18687677, PubMed:19188449,PubMed:19220062, PubMed:19364925, PubMed:19690166,PubMed:19934257, PubMed:20097625, PubMed:20100829,PubMed:20203304, PubMed:20375098, PubMed:20620956,PubMed:20670893, PubMed:20817729, PubMed:20975832,PubMed:21149730, PubMed:21245319, PubMed:21471201,PubMed:21504832, PubMed:21555002, PubMed:21698133,PubMed:21701047, PubMed:21775285, PubMed:21807113,PubMed:21841822, PubMed:21890893, PubMed:21909281,PubMed:21947282, PubMed:22274616). Deacetylates XBP1 isoform 2;deacetylation decreases protein stability of XBP1 isoform 2 andinhibits its transcriptional activity (By similarity).", "isseed": false, "uniprot": "Q96EB6", "isvalid": true, "importance": 3 }, "position": { "x": 506.7785566302718, "y": 652.3060208548699 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CASP10", "altered": 0, "rank": 100, "cited": 181, "uniprotdesc": "Involved in the activation cascade of caspasesresponsible for apoptosis execution. Recruited to both Fas- andTNFR-1 receptors in a FADD dependent manner. May participate inthe granzyme B apoptotic pathways. Cleaves and activates caspase-3, -4, -6, -7, -8, and -9. Hydrolyzes the small- moleculesubstrates, Tyr-Val-Ala-Asp-|-AMC and Asp-Glu-Val-Asp-|-AMC.", "isseed": false, "uniprot": "Q92851", "isvalid": true, "importance": 3 }, "position": { "x": 823.3502775628414, "y": 703.8022114271403 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SP1", "altered": 0, "rank": 204, "cited": 351, "uniprotdesc": "Transcription factor that can activate or represstranscription in response to physiological and pathologicalstimuli. Binds with high affinity to GC-rich motifs and regulatesthe expression of a large number of genes involved in a variety ofprocesses such as cell growth, apoptosis, differentiation andimmune responses. Highly regulated by post-translationalmodifications (phosphorylations, sumoylation, proteolyticcleavage, glycosylation and acetylation). Binds also the PDGFR-alpha G-box promoter. May have a role in modulating the cellularresponse to DNA damage. Implicated in chromatin remodeling. Playsa role in the recruitment of SMARCA4/BRG1 on the c-FOS promoter.Plays an essential role in the regulation of FE65 gene expression.In complex with ATF7IP, maintains telomerase activity in cancercells by inducing TERT and TERC gene expression. Isoform 3 is astronger activator of transcription than isoform 1. Positivelyregulates the transcription of the core clock componentARNTL/BMAL1. ", "isseed": false, "uniprot": "P08047", "isvalid": true, "importance": 2 }, "position": { "x": 258.4227277526407, "y": 701.678947512601 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "IRF5", "altered": 0, "rank": 101, "cited": 180, "uniprotdesc": "Transcription factor involved in the induction ofinterferons IFNA and INFB and inflammatory cytokines upon virusinfection. Activated by TLR7 or TLR8 signaling.", "isseed": false, "uniprot": "Q13568", "isvalid": true, "importance": 3 }, "position": { "x": 734.4080082809639, "y": 441.0260930389835 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "BAX", "altered": 0, "rank": 51, "cited": 635, "uniprotdesc": "Accelerates programmed cell death by binding to, andantagonizing the apoptosis repressor BCL2 or its adenovirushomolog E1B 19k protein. Under stress conditions, undergoes aconformation change that causes translocation to the mitochondrionmembrane, leading to the release of cytochrome c that thentriggers apoptosis. Promotes activation of CASP3, and therebyapoptosis. ", "isseed": false, "uniprot": "Q07812", "isvalid": true, "importance": 3 }, "position": { "x": 330.17418142037224, "y": 723.0387008700271 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CABIN1", "altered": 0, "rank": 132, "cited": 77, "uniprotdesc": "May be required for replication-independent chromatinassembly. May serve as a negative regulator of T-cell receptor(TCR) signaling via inhibition of calcineurin. Inhibition ofactivated calcineurin is dependent on both PKC and calciumsignals. Acts as a negative regulator of p53/TP53 by keeping p53in an inactive state on chromatin at promoters of a subset of it'starget genes. ", "isseed": false, "uniprot": "Q9Y6J0", "isvalid": true, "importance": 3 }, "position": { "x": 381.2745449733592, "y": 462.0312123428804 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SETD7", "altered": 0, "rank": 156, "cited": 32, "uniprotdesc": "Histone methyltransferase that specificallymonomethylates 'Lys-4' of histone H3. H3 'Lys-4' methylationrepresents a specific tag for epigenetic transcriptionalactivation. Plays a central role in the transcriptional activationof genes such as collagenase or insulin. Recruited by IPF1/PDX-1to the insulin promoter, leading to activate transcription. Hasalso methyltransferase activity toward non-histone proteins suchas p53/TP53, TAF10, and possibly TAF7 by recognizing and bindingthe [KR]-[STA]-K in substrate proteins. Monomethylates 'Lys-189'of TAF10, leading to increase the affinity of TAF10 for RNApolymerase II. Monomethylates 'Lys-372' of p53/TP53, stabilizingp53/TP53 and increasing p53/TP53-mediated transcriptionalactivation. ", "isseed": false, "uniprot": "Q8WTS6", "isvalid": true, "importance": 3 }, "position": { "x": 281.16124461265167, "y": 414.2610512283418 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SETD8", "altered": 0, "rank": 164, "cited": 22, "uniprotdesc": "Protein-lysine N-methyltransferase that monomethylatesboth histones and non-histone proteins. Specificallymonomethylates 'Lys-20' of histone H4 (H4K20me1). H4K20me1 isenriched during mitosis and represents a specific tag forepigenetic transcriptional repression. Mainly functions ineuchromatin regions, thereby playing a central role in thesilencing of euchromatic genes. Required for cell proliferation,probably by contributing to the maintenance of proper higher-orderstructure of DNA during mitosis. Involved in chromosomecondensation and proper cytokinesis. Nucleosomes are preferred assubstrate compared to free histones. Mediates monomethylation ofp53/TP53 at 'Lys-382', leading to repress p53/TP53-target genes.Plays a negative role in TGF-beta response regulation and apositive role in cell migration. ", "isseed": false, "uniprot": "Q9NQR1", "isvalid": true, "importance": 3 }, "position": { "x": 475.19032650389954, "y": 196.8241781379876 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "APAF1", "altered": 0, "rank": 83, "cited": 278, "uniprotdesc": "Oligomeric Apaf-1 mediates the cytochrome c-dependentautocatalytic activation of pro-caspase-9 (Apaf-3), leading to theactivation of caspase-3 and apoptosis. This activation requiresATP. Isoform 6 is less effective in inducing apoptosis.", "isseed": false, "uniprot": "O14727", "isvalid": true, "importance": 3 }, "position": { "x": 427.89507524227804, "y": 146.9580228092954 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "GDF15", "altered": 0, "rank": 91, "cited": 232, "uniprotdesc": "", "isseed": false, "uniprot": "Q99988", "isvalid": true, "importance": 3 }, "position": { "x": 153.71730224970437, "y": 443.9473014720093 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "IGFBP3", "altered": 0, "rank": 28, "cited": 2102, "uniprotdesc": "IGF-binding proteins prolong the half-life of the IGFsand have been shown to either inhibit or stimulate the growthpromoting effects of the IGFs on cell culture. They alter theinteraction of IGFs with their cell surface receptors. Alsoexhibits IGF-independent antiproliferative and apoptotic effectsmediated by its receptor TMEM219/IGFBP-3R.", "isseed": false, "uniprot": "P17936", "isvalid": true, "importance": 3 }, "position": { "x": 77.12765920578023, "y": 437.89417813749833 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-H1F0", "source": "TP53", "cited": 0, "target": "H1F0", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-IRF5", "source": "TP53", "cited": 0, "target": "IRF5", "pubmed": ["11973653"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "KAT8-controls-state-change-of-TP53", "source": "KAT8", "cited": 0, "target": "TP53", "pubmed": ["17189187", "17534149"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "FBXO11-controls-state-change-of-TP53", "source": "FBXO11", "cited": 4, "target": "TP53", "pubmed": ["17098746"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "ATR-controls-state-change-of-TP53", "source": "ATR", "cited": 24, "target": "TP53", "pubmed": ["10202145", "10581258", "10606744", "10608806", "10611322", "10656682", "10656795", "10673501", "10706102", "10710310", "10713094", "10723129", "10733583", "10734067", "10744722", "10958792", "11030628", "11042698", "11096068", "11121242", "11244509", "11258706", "11300786", "11313957", "11314044", "11397945", "11423984", "11447225", "11495913", "11526498", "11546806", "11583595", "11706017", "11707453", "11709713", "11711532", "11850826", "11861384", "11865061", "11875057", "11896572", "11896587", "12021785", "12049739", "12071847", "12080066", "12082529", "12091386", "12151394", "12324477", "12384533", "12393500", "12397362", "12427754", "12511424", "12518062", "12519769", "12519780", "12531896", "12588868", "12606585", "12637545", "12676607", "12702572", "12756247", "12771937", "12776195", "12860987", "12890678", "12902982", "12939400", "12955074", "12959929", "12969974", "1406679", "14517211", "14527925", "14612532", "14665630", "14712210", "14871840", "14871926", "14968111", "15048074", "15064747", "15077171", "15078887", "15082766", "15140942", "15155458", "15159397", "15178764", "15181149", "15226429", "15254178", "15258567", "15269203", "15310764", "15322239", "15355354", "15361830", "15381073", "15456784", "15471885", "15489221", "15489892", "15533933", "15542844", "15580310", "15619621", "15665826", "15750624", "15758953", "15775976", "15782130", "15792956", "15794754", "15843377", "15866171", "15870257", "15897882", "16223874", "16247456", "16288207", "16293623", "16377624", "16397295", "16436515", "16478990", "16489034", "16501611", "16632641", "16636671", "16648554", "16651424", "16714289", "16717128", "16731759", "16774943", "16783362", "16790523", "16818505", "16818520", "16891474", "16916644", "16949371", "17045821", "17105820", "17108107", "17234789", "17245430", "17254968", "17283137", "17297446", "17297454", "17332358", "17339337", "17353187", "17363488", "17371838", "17380123", "17456577", "17486112", "17535811", "17553757", "17591690", "17596534", "17609585", "17616578", "17668048", "17684018", "17698850", "17712528", "17855337", "17891183", "17936559", "17967874", "17975552", "17976513", "17977830", "18032786", "18045533", "18056442", "18097051", "18159951", "18216278", "18246126", "18272544", "18289945", "18332866", "18339864", "18345031", "18381438", "18406507", "18431490", "18449195", "18490454", "18560558", "18604166", "18614045", "18715874", "18718914", "18765533", "18769132", "18778462", "18785202", "18794113", "18818083", "18847491", "18985806", "18995830", "19085961", "19203586", "19251701", "19266268", "19303885", "19477925", "19819244", "19828454", "19861417", "19882354", "19907922", "19934315", "19962312", "20005840", "20024960", "20026654", "20080565", "20123963", "20353948", "20372057", "20562916", "20599567", "20610713", "20637859", "20661218", "20663147", "20696760", "20711232", "20931131", "20935676", "20962272", "21317932", "21383696", "21394211", "21423215", "21441950", "21465263", "21532626", "21642861", "21660965", "21757780", "21765463", "21765464", "21832239", "22002314", "22011578", "22030623", "22037398", "22055193", "22099307", "22112863", "22179839", "22285752", "22728651", "22797063", "22815859", "22975381", "23148227", "23150668", "23184057", "23678107", "23798621", "23871434", "23890999", "23982736", "24038750", "24657168", "24711418", "24820418", "24958101", "25202122", "8327466", "9363941", "9733515", "9744860", "9843217", "9925639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "pid", "PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "EP400-controls-state-change-of-HIRA", "source": "EP400", "cited": 0, "target": "HIRA", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "FBXO11-controls-state-change-of-NEDD8", "source": "FBXO11", "cited": 1, "target": "NEDD8", "pubmed": ["17098746"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-TSC2", "source": "TP53", "cited": 2, "target": "TSC2", "pubmed": ["17409411"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "KAT5-controls-state-change-of-TP53", "source": "KAT5", "cited": 16, "target": "TP53", "pubmed": ["17189186", "17189187", "17534149"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "ATM-controls-state-change-of-TP53", "source": "ATM", "cited": 237, "target": "TP53", "pubmed": ["10202145", "10570149", "10581258", "10606744", "10608806", "10611322", "10656682", "10656795", "10673500", "10673501", "10706102", "10710310", "10713094", "10723129", "10733583", "10734067", "10744722", "10958792", "11030628", "11096068", "11101524", "11121242", "11175334", "11244509", "11258706", "11300786", "11313957", "11314044", "11397945", "11423984", "11447225", "11495913", "11526498", "11546806", "11551930", "11583595", "11706017", "11707453", "11709713", "11711532", "11740489", "11780126", "11850826", "11861384", "11865061", "11875057", "11896572", "11896587", "12021785", "12049739", "12071847", "12080066", "12082529", "12091386", "12093737", "12151394", "12324477", "12384533", "12393500", "12397361", "12397362", "12427754", "12511424", "12518062", "12519769", "12519780", "12531896", "12588868", "12606585", "12637545", "12676607", "12702572", "12756247", "12771937", "12776195", "12810724", "12860987", "12861053", "12890678", "12902982", "12907596", "12939400", "12955074", "12959929", "12969974", "1406679", "14517211", "14527925", "14612532", "14665630", "14712210", "14749479", "14871840", "14871926", "14968111", "15048074", "15064747", "15077171", "15078887", "15082766", "15140942", "15155458", "15159397", "15178764", "15181149", "15226429", "15254178", "15258567", "15269203", "15310764", "15322239", "15355354", "15361830", "15381073", "15456784", "15471885", "15489221", "15489892", "15526030", "15533933", "15542844", "15580310", "15619621", "15629715", "15657359", "15665826", "15671037", "15706352", "15750624", "15758953", "15775976", "15782130", "15792956", "15794754", "15843377", "15866171", "15870257", "15897882", "15963507", "16219768", "16223874", "16247456", "16288207", "16293623", "16377624", "16397295", "16436515", "16478990", "16489034", "16501611", "16601678", "16632641", "16636671", "16648554", "16651424", "16714289", "16717128", "16731759", "16738336", "16774943", "16783362", "16790523", "16793543", "16818505", "16818520", "16891474", "16916644", "16949371", "17045821", "17105820", "17107963", "17108107", "17121812", "17135248", "17210684", "17234789", "17245430", "17283137", "17297446", "17297454", "17332358", "17339337", "17349958", "17349959", "17353187", "17363488", "17371838", "17380123", "17456577", "17486112", "17535811", "17553757", "17567906", "17591690", "17596534", "17609585", "17616578", "17668048", "17684018", "17698850", "17712528", "17855337", "17891183", "17906639", "17936559", "17967874", "17975552", "17976513", "17977830", "18032786", "18045533", "18056442", "18056705", "18097051", "18159951", "18160537", "18216278", "18246126", "18272544", "18289945", "18332866", "18339864", "18345031", "18381438", "18406507", "18431490", "18449195", "18490454", "18536714", "18560558", "18593910", "18604166", "18614045", "18669630", "18715874", "18718914", "18765533", "18769132", "18778462", "18785202", "18794113", "18818083", "18847491", "18985806", "18995830", "19085961", "19203586", "19251701", "19266268", "19303885", "19465479", "19477925", "19819244", "19828042", "19828454", "19857493", "19861417", "19882354", "19907922", "19934315", "19962312", "19965871", "20005840", "20009884", "20018442", "20024960", "20026654", "20041275", "20080565", "20123963", "20171273", "20353948", "20363803", "20372057", "20514025", "20562916", "20599567", "20610713", "20637859", "20661218", "20663147", "20673369", "20696760", "20711232", "20811699", "20931131", "20935676", "20962272", "21057547", "21148320", "21317932", "21383696", "21394211", "21423215", "21441950", "21454683", "21465263", "21532626", "21642861", "21660965", "21757780", "21765463", "21765464", "21832239", "22002314", "22011578", "22030623", "22037398", "22055193", "22099307", "22112863", "22179839", "22285752", "22728651", "22797063", "22815859", "22878263", "22975381", "23148227", "23149944", "23150668", "23184057", "23678107", "23798621", "23871434", "23890999", "23982736", "24038750", "24145406", "24196445", "24379358", "24657168", "24711418", "24820418", "24899407", "24958101", "25202122", "8327466", "9363941", "9733514", "9733515", "9843217", "9925639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome", "PhosphoSite", "pid", "PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SMYD2-controls-state-change-of-TP53", "source": "SMYD2", "cited": 6, "target": "TP53", "pubmed": ["17108971"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-SFN", "source": "TP53", "cited": 1, "target": "SFN", "pubmed": ["17719541", "9659898"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "NGFR-controls-state-change-of-TP53", "source": "NGFR", "cited": 0, "target": "TP53", "pubmed": ["15668238"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53RK-controls-state-change-of-TP53", "source": "TP53RK", "cited": 10, "target": "TP53", "pubmed": ["10202145", "10581258", "10606744", "10608806", "10611322", "10656682", "10656795", "10673501", "10706102", "10710310", "10713094", "10723129", "10733583", "10734067", "10744722", "10958792", "11030628", "11096068", "11121242", "11244509", "11258706", "11313957", "11314044", "11397945", "11423984", "11447225", "11495913", "11526498", "11546806", "11583595", "11706017", "11707453", "11709713", "11711532", "11850826", "11861384", "11865061", "11875057", "11896572", "11896587", "12021785", "12049739", "12071847", "12080066", "12082529", "12091386", "12151394", "12324477", "12384533", "12393500", "12397362", "12427754", "12511424", "12518062", "12519769", "12519780", "12531896", "12588868", "12606585", "12637545", "12676607", "12702572", "12756247", "12771937", "12776195", "12860987", "12890678", "12902982", "12939400", "12955074", "12959929", "12969974", "1406679", "14517211", "14527925", "14612532", "14665630", "14712210", "14871840", "14871926", "14968111", "15048074", "15064747", "15077171", "15078887", "15082766", "15140942", "15155458", "15159397", "15178764", "15181149", "15226429", "15254178", "15258567", "15269203", "15310764", "15322239", "15355354", "15361830", "15381073", "15456784", "15471885", "15489221", "15489892", "15533933", "15542844", "15580310", "15619621", "15665826", "15750624", "15758953", "15775976", "15782130", "15792956", "15794754", "15843377", "15866171", "15870257", "15897882", "16223874", "16247456", "16288207", "16293623", "16377624", "16397295", "16436515", "16478990", "16489034", "16501611", "16632641", "16636671", "16648554", "16651424", "16714289", "16717128", "16731759", "16774943", "16783362", "16790523", "16818505", "16818520", "16891474", "16916644", "16949371", "17045821", "17105820", "17108107", "17234789", "17245430", "17283137", "17297446", "17297454", "17332358", "17339337", "17353187", "17363488", "17371838", "17380123", "17456577", "17486112", "17535811", "17553757", "17591690", "17596534", "17609585", "17616578", "17668048", "17684018", "17698850", "17712528", "17855337", "17891183", "17936559", "17967874", "17975552", "17976513", "17977830", "18032786", "18045533", "18056442", "18097051", "18159951", "18216278", "18246126", "18272544", "18289945", "18332866", "18339864", "18345031", "18381438", "18406507", "18431490", "18449195", "18490454", "18560558", "18604166", "18614045", "18715874", "18718914", "18765533", "18769132", "18778462", "18785202", "18794113", "18818083", "18847491", "18985806", "18995830", "19085961", "19203586", "19251701", "19266268", "19303885", "19477925", "19819244", "19828454", "19861417", "19882354", "19907922", "19934315", "19962312", "20005840", "20024960", "20026654", "20080565", "20123963", "20353948", "20372057", "20562916", "20599567", "20610713", "20637859", "20661218", "20663147", "20696760", "20711232", "20931131", "20935676", "20962272", "21317932", "21383696", "21394211", "21423215", "21441950", "21465263", "21532626", "21642861", "21660965", "21757780", "21765463", "21765464", "21832239", "22002314", "22011578", "22030623", "22037398", "22055193", "22099307", "22112863", "22179839", "22285752", "22728651", "22797063", "22815859", "22975381", "23148227", "23150668", "23184057", "23678107", "23798621", "23871434", "23890999", "23982736", "24038750", "24657168", "24711418", "24820418", "24958101", "25202122", "8327466", "9363941", "9733515", "9843217", "9925639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAX-controls-expression-of-TP53", "source": "MAX", "cited": 0, "target": "TP53", "pubmed": ["8494784"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-BID", "source": "TP53", "cited": 0, "target": "BID", "pubmed": ["12402042"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-CX3CL1", "source": "TP53", "cited": 0, "target": "CX3CL1", "pubmed": ["10919640"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-PRKAB1", "source": "TP53", "cited": 5, "target": "PRKAB1", "pubmed": ["16140933", "17409411"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-CAV1", "source": "TP53", "cited": 16, "target": "CAV1", "pubmed": ["10684646"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-ATF3", "source": "TP53", "cited": 34, "target": "ATF3", "pubmed": ["12372430"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-RRM2B", "source": "TP53", "cited": 39, "target": "RRM2B", "pubmed": ["10716435", "17719542"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MDM2-controls-state-change-of-TP53", "source": "MDM2", "cited": 2748, "target": "TP53", "pubmed": ["10734067", "11127820", "11340074", "11713287", "14654783", "14671306", "14702041", "15210108", "15242646", "16107876", "9153395", "9153396", "9450543"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CCNA2-controls-state-change-of-TP53", "source": "CCNA2", "cited": 46, "target": "TP53", "pubmed": ["10581258", "11078726", "11283254"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SETD8-controls-state-change-of-TP53", "source": "SETD8", "cited": 8, "target": "TP53", "pubmed": ["17707234"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-CCNK", "source": "TP53", "cited": 4, "target": "CCNK", "pubmed": ["11988847"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SETD7-controls-state-change-of-TP53", "source": "SETD7", "cited": 8, "target": "TP53", "pubmed": ["15525938", "17646389"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-TYRP1", "source": "TP53", "cited": 0, "target": "TYRP1", "pubmed": ["10640990"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "ATR-controls-state-change-of-TP63", "source": "ATR", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKCA-controls-state-change-of-TP53", "source": "PRKCA", "cited": 12, "target": "TP53", "pubmed": ["10706102", "10733583", "11007451", "11423984", "11585729", "12080066", "14640983", "14744935", "15659650", "16227590", "17898864", "18812399", "19819244", "19933256", "9254608", "9315650", "9571186", "9620776", "9739174"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "ATM-controls-state-change-of-TP63", "source": "ATM", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CSNK1G3-controls-state-change-of-TP53", "source": "CSNK1G3", "cited": 0, "target": "TP53", "pubmed": ["10606744", "10734067"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CSNK1G1-controls-state-change-of-TP53", "source": "CSNK1G1", "cited": 0, "target": "TP53", "pubmed": ["10606744", "10734067"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CHEK2-controls-state-change-of-TP73", "source": "CHEK2", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CSNK1G2-controls-state-change-of-TP53", "source": "CSNK1G2", "cited": 0, "target": "TP53", "pubmed": ["10606744", "10734067"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-TGFA", "source": "TP53", "cited": 0, "target": "TGFA", "pubmed": ["7651386"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-AFP", "source": "TP53", "cited": 22, "target": "AFP", "pubmed": ["9891062"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-DDB2", "source": "TP53", "cited": 23, "target": "DDB2", "pubmed": ["11971958"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TRAF6-controls-state-change-of-TP53", "source": "TRAF6", "cited": 0, "target": "TP53", "pubmed": ["15668238"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-AIFM2", "source": "TP53", "cited": 0, "target": "AIFM2", "pubmed": ["15273740"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKCD-controls-state-change-of-TP53", "source": "PRKCD", "cited": 0, "target": "TP53", "pubmed": ["10581258", "11030628", "11101524", "11300786", "11495913", "11740489", "11780126", "11875057", "12021785", "12093737", "12397361", "12427754", "12676607", "12860987", "12902982", "12907596", "14749479", "15322239", "15381073", "15471885", "15489221", "15526030", "15619621", "15657359", "15706352", "15750624", "15843377", "15870257", "15897882", "16219768", "16247456", "16377624", "16601678", "16717128", "16738336", "16793543", "17105820", "17107963", "17210684", "17332358", "17349958", "17349959", "17380123", "17567906", "17591690", "17891183", "17906639", "18056705", "18160537", "18216278", "18536714", "18560558", "18769132", "19465479", "19819244", "19828042", "19857493", "19861417", "19882354", "19965871", "20018442", "20024960", "20123963", "20171273", "20363803", "20514025", "20610713", "20673369", "20696760", "20811699", "20935676", "20962272", "21057547", "21383696", "21394211", "21642861", "21660965", "21765463", "21765464", "22011578", "22797063", "22878263", "23149944", "24145406", "24196445", "24379358", "24899407"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TTC5-controls-state-change-of-TP53", "source": "TTC5", "cited": 0, "target": "TP53", "pubmed": ["19011621"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-TP63", "source": "TP53", "cited": 257, "target": "TP63", "pubmed": ["14576823"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "JUN-controls-expression-of-TP53", "source": "JUN", "cited": 21, "target": "TP53", "pubmed": ["10072388", "11136975"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-PML", "source": "TP53", "cited": 102, "target": "PML", "pubmed": ["14992722"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "ATM-controls-state-change-of-TP73", "source": "ATM", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-PTEN", "source": "TP53", "cited": 253, "target": "PTEN", "pubmed": ["11545734", "17409411"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "WRN-controls-state-change-of-TP63", "source": "WRN", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "ATR-controls-state-change-of-TP73", "source": "ATR", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-PCBP4", "source": "TP53", "cited": 0, "target": "PCBP4", "pubmed": ["10891498"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "VRK1-controls-state-change-of-TP53", "source": "VRK1", "cited": 34, "target": "TP53", "pubmed": ["10606744", "10673501", "10733583", "10734067", "11244509", "11258706", "11707453", "11875057", "11883897", "12091386", "12860987", "15355354", "15542844", "17339337", "17977830", "18246126", "18794113", "19819244", "20962272", "21386980", "22112863", "22815859"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-RCHY1", "source": "TP53", "cited": 23, "target": "RCHY1", "pubmed": ["12654245"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TAF1-controls-state-change-of-TP53", "source": "TAF1", "cited": 13, "target": "TP53", "pubmed": ["10933801", "11409876", "14729628", "15053879", "15116093", "16793543", "17245430", "17967874", "18160537", "18952844", "19819244", "20124405", "20473327", "23723076", "24289924"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "STK11-controls-state-change-of-TP53", "source": "STK11", "cited": 23, "target": "TP53", "pubmed": ["10202145", "10348343", "10581258", "10606744", "10608806", "10611322", "10656682", "10656795", "10673501", "10706102", "10710310", "10713094", "10723129", "10733583", "10734067", "10744722", "10747897", "10958792", "11030628", "11096068", "11101524", "11121242", "11239457", "11244509", "11258706", "11313957", "11314044", "11397945", "11423984", "11447225", "11495913", "11526498", "11546806", "11583595", "11706017", "11707453", "11709713", "11711532", "11850826", "11861384", "11865061", "11875057", "11896572", "11896587", "12021785", "12049739", "12071847", "12080066", "12082529", "12091386", "12151394", "12324477", "12384533", "12393500", "12393879", "12397362", "12427754", "12511424", "12518062", "12519769", "12519780", "12531896", "12588868", "12606585", "12637545", "12676607", "12702572", "12756247", "12771937", "12776195", "12860987", "12890678", "12902982", "12939400", "12955074", "12959929", "12969974", "1406679", "14517211", "14527925", "14612532", "14640983", "14665630", "14712210", "14871840", "14871926", "14968111", "15048074", "15064747", "15077171", "15078887", "15082766", "15140942", "15155458", "15159397", "15178764", "15181149", "15226429", "15254178", "15258567", "15269203", "15310764", "15322239", "15355354", "15361830", "15381073", "15456784", "15471885", "15489221", "15489892", "15533933", "15542844", "15580310", "15619621", "15665826", "15750624", "15758953", "15775976", "15782130", "15792956", "15794754", "15843377", "15866171", "15870257", "15897882", "16083285", "16223874", "16247456", "16288207", "16293623", "16319070", "16377624", "16397295", "16436515", "16478990", "16489034", "16501611", "16552184", "16632641", "16636671", "16648554", "16651424", "16714289", "16717128", "16731759", "16774943", "16783362", "16790523", "16818505", "16818520", "16891474", "16916644", "16949371", "17045821", "17105820", "17108107", "17234789", "17237827", "17245430", "17283137", "17297446", "17297454", "17332358", "17339337", "17353187", "17363488", "17371838", "17380123", "17456577", "17486112", "17535811", "17553757", "17591690", "17596534", "17609585", "17616578", "17668048", "17684018", "17698850", "17712528", "17855337", "17891183", "17936559", "17942552", "17967874", "17975552", "17976513", "17977830", "18032786", "18045533", "18056442", "18097051", "18159951", "18216278", "18246126", "18272544", "18289945", "18332866", "18339864", "18345031", "18381438", "18406507", "18431490", "18449195", "18490454", "18523266", "18560558", "18604166", "18614045", "18715874", "18718914", "18765533", "18769132", "18778462", "18785202", "18794113", "18818083", "18847491", "18985806", "18995830", "19085961", "19203586", "19251701", "19266268", "19303885", "19369195", "19413330", "19477925", "19819244", "19828454", "19861417", "19882354", "19907922", "19934315", "19962312", "20005840", "20009884", "20024960", "20026654", "20080565", "20123963", "20353948", "20372057", "20562916", "20599567", "20610713", "20637859", "20661218", "20663147", "20686112", "20696760", "20711232", "20931131", "20935676", "20962272", "21317932", "21383696", "21394211", "21423215", "21441950", "21455220", "21460857", "21465263", "21532626", "21642861", "21660965", "21757780", "21765463", "21765464", "21832239", "22002314", "22011578", "22030623", "22037398", "22055193", "22099307", "22112863", "22179839", "22285752", "22728651", "22797063", "22815859", "22975381", "23148227", "23150668", "23184057", "23312004", "23603988", "23678107", "23798621", "23871434", "23890999", "23982736", "24038750", "24194938", "24657168", "24711418", "24820418", "24958101", "25202122", "8327466", "9254608", "9315650", "9363941", "9467949", "9733515", "9739174", "9843217", "9925639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "EP400-controls-state-change-of-HMGA2", "source": "EP400", "cited": 0, "target": "HMGA2", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-GADD45A", "source": "TP53", "cited": 45, "target": "GADD45A", "pubmed": ["15186775", "18250150"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "USP7-controls-state-change-of-TP53", "source": "USP7", "cited": 70, "target": "TP53", "pubmed": ["17268548"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "EP400-controls-state-change-of-HMGA1", "source": "EP400", "cited": 0, "target": "HMGA1", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKDC-controls-state-change-of-TP53", "source": "PRKDC", "cited": 10, "target": "TP53", "pubmed": ["10202145", "10570149", "10581258", "10606744", "10608806", "10611322", "10656682", "10656795", "10673500", "10673501", "10706102", "10710310", "10713094", "10723129", "10733583", "10734067", "10744722", "10930428", "10958792", "11030628", "11042698", "11096068", "11101524", "11121242", "11175334", "11244509", "11258706", "11300786", "11313957", "11314044", "11397945", "11423984", "11447225", "11495913", "11526498", "11546806", "11551930", "11583595", "11706017", "11707453", "11709713", "11711532", "11740489", "11780126", "11850826", "11861384", "11865061", "11875057", "11883897", "11896572", "11896587", "12021785", "12049739", "12071847", "12080066", "12082529", "12091386", "12093737", "12151394", "12324477", "12384533", "12393500", "12397361", "12397362", "12427754", "12511424", "12518062", "12519769", "12519780", "12531896", "12588868", "12606585", "12637545", "12676607", "12702572", "12756247", "12771937", "12776195", "12810724", "12860987", "12861053", "12890678", "12902982", "12907596", "12939400", "12955074", "12959929", "12969974", "1406679", "14517211", "14527925", "14612532", "14665630", "14712210", "14749479", "14871840", "14871926", "14968111", "15048074", "15064747", "15077171", "15078887", "15082766", "15140942", "15155458", "15159397", "15178764", "15181149", "15226429", "15254178", "15258567", "15269203", "15310764", "15322239", "15355354", "15361830", "15381073", "15456784", "15471885", "15489221", "15489892", "15526030", "15533933", "15542844", "15580310", "15619621", "15629715", "15657359", "15665826", "15671037", "15706352", "15750624", "15758953", "15775976", "15782130", "15792956", "15794754", "15843377", "15866171", "15870257", "15897882", "15963507", "16219768", "16223874", "16247456", "16288207", "16293623", "16377624", "16397295", "16436515", "16478990", "16489034", "16501611", "16601678", "16632641", "16636671", "16648554", "16651424", "16714289", "16717128", "16731759", "16738336", "16774943", "16783362", "16790523", "16793543", "16818505", "16818520", "16891474", "16916644", "16949371", "17045821", "17105820", "17107963", "17108107", "17121812", "17135248", "17210684", "17234789", "17245430", "17254968", "17283137", "17297446", "17297454", "17332358", "17339337", "17349958", "17349959", "17353187", "17363488", "17371838", "17380123", "17456577", "17486112", "17535811", "17553757", "17567906", "17591690", "17596534", "17609585", "17616578", "17668048", "17684018", "17698850", "17712528", "17855337", "17891183", "17906639", "17936559", "17967874", "17975552", "17976513", "17977830", "18032786", "18045533", "18056442", "18056705", "18097051", "18159951", "18160537", "18216278", "18246126", "18272544", "18289945", "18332866", "18339864", "18345031", "18381438", "18406507", "18431490", "18449195", "18490454", "18536714", "18560558", "18593910", "18604166", "18614045", "18669630", "18715874", "18718914", "18765533", "18769132", "18778462", "18785202", "18794113", "18818083", "18847491", "18985806", "18995830", "19085961", "19203586", "19251701", "19266268", "19303885", "19345189", "19465479", "19477925", "19819244", "19828042", "19828454", "19857493", "19861417", "19882354", "19907922", "19934315", "19962312", "19965871", "20005840", "20009884", "20018442", "20024960", "20026654", "20041275", "20080565", "20123963", "20171273", "20353948", "20363803", "20372057", "20514025", "20562916", "20599567", "20610713", "20637859", "20661218", "20663147", "20673369", "20696760", "20711232", "20811699", "20931131", "20935676", "20962272", "21057547", "21148320", "21317932", "21383696", "21386980", "21394211", "21423215", "21441950", "21454683", "21465263", "21532626", "21642861", "21660965", "21757780", "21765463", "21765464", "21832239", "22002314", "22011578", "22030623", "22037398", "22055193", "22099307", "22112863", "22179839", "22285752", "22496350", "22728651", "22797063", "22815859", "22878263", "22975381", "23148227", "23149944", "23150668", "23184057", "23678107", "23798621", "23871434", "23890999", "23982736", "24038750", "24145406", "24196445", "24379358", "24657168", "24711418", "24820418", "24899407", "24958101", "25202122", "8327466", "9363941", "9733515", "9744860", "9843217", "9925639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-EGFR", "source": "TP53", "cited": 254, "target": "EGFR", "pubmed": ["8887630"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-GDF15", "source": "TP53", "cited": 18, "target": "GDF15", "pubmed": ["10618379"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "WRN-controls-state-change-of-TP73", "source": "WRN", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-RPS27L", "source": "TP53", "cited": 0, "target": "RPS27L", "pubmed": ["16260627"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "ATR-controls-state-change-of-BRCA1", "source": "ATR", "cited": 33, "target": "BRCA1", "pubmed": ["15159397"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-MLH1", "source": "TP53", "cited": 65, "target": "MLH1", "pubmed": ["15781865"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-SERPINE1", "source": "TP53", "cited": 35, "target": "SERPINE1", "pubmed": ["7479001"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "GRK5-controls-state-change-of-TP53", "source": "GRK5", "cited": 5, "target": "TP53", "pubmed": ["10933801", "11409876", "14729628", "15053879", "15116093", "16793543", "17245430", "17967874", "18160537", "18952844", "19819244", "20124405", "20473327", "23723076", "24289924"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "EP400-controls-state-change-of-HIST1H1E", "source": "EP400", "cited": 0, "target": "HIST1H1E", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-PPM1J", "source": "TP53", "cited": 0, "target": "PPM1J", "pubmed": ["16260627"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-PIDD", "source": "TP53", "cited": 0, "target": "PIDD", "pubmed": ["10973264"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "EP400-controls-state-change-of-HIST1H1B", "source": "EP400", "cited": 0, "target": "HIST1H1B", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "EP400-controls-state-change-of-HIST1H1A", "source": "EP400", "cited": 0, "target": "HIST1H1A", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-MMP2", "source": "TP53", "cited": 27, "target": "MMP2", "pubmed": ["9343394"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "EP400-controls-state-change-of-HIST1H1D", "source": "EP400", "cited": 0, "target": "HIST1H1D", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "EP400-controls-state-change-of-HIST1H1C", "source": "EP400", "cited": 0, "target": "HIST1H1C", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "NUAK1-controls-state-change-of-TP53", "source": "NUAK1", "cited": 0, "target": "TP53", "pubmed": ["10202145", "10348343", "10581258", "10606744", "10608806", "10611322", "10656682", "10656795", "10673501", "10706102", "10710310", "10713094", "10723129", "10733583", "10734067", "10744722", "10747897", "10958792", "11030628", "11096068", "11101524", "11121242", "11239457", "11244509", "11258706", "11313957", "11314044", "11397945", "11423984", "11447225", "11495913", "11526498", "11546806", "11583595", "11706017", "11707453", "11709713", "11711532", "11850826", "11861384", "11865061", "11875057", "11896572", "11896587", "12021785", "12049739", "12071847", "12080066", "12082529", "12091386", "12151394", "12324477", "12384533", "12393500", "12393879", "12397362", "12427754", "12511424", "12518062", "12519769", "12519780", "12531896", "12588868", "12606585", "12637545", "12676607", "12702572", "12756247", "12771937", "12776195", "12860987", "12890678", "12902982", "12939400", "12955074", "12959929", "12969974", "1406679", "14517211", "14527925", "14612532", "14640983", "14665630", "14712210", "14871840", "14871926", "14968111", "15048074", "15064747", "15077171", "15078887", "15082766", "15140942", "15155458", "15159397", "15178764", "15181149", "15226429", "15254178", "15258567", "15269203", "15310764", "15322239", "15355354", "15361830", "15381073", "15456784", "15471885", "15489221", "15489892", "15533933", "15542844", "15580310", "15619621", "15665826", "15750624", "15758953", "15775976", "15782130", "15792956", "15794754", "15843377", "15866171", "15870257", "15897882", "16083285", "16223874", "16247456", "16288207", "16293623", "16319070", "16377624", "16397295", "16436515", "16478990", "16489034", "16501611", "16552184", "16632641", "16636671", "16648554", "16651424", "16714289", "16717128", "16731759", "16774943", "16783362", "16790523", "16818505", "16818520", "16891474", "16916644", "16949371", "17045821", "17105820", "17108107", "17234789", "17237827", "17245430", "17283137", "17297446", "17297454", "17332358", "17339337", "17353187", "17363488", "17371838", "17380123", "17456577", "17486112", "17535811", "17553757", "17591690", "17596534", "17609585", "17616578", "17668048", "17684018", "17698850", "17712528", "17855337", "17891183", "17936559", "17942552", "17967874", "17975552", "17976513", "17977830", "18032786", "18045533", "18056442", "18097051", "18159951", "18216278", "18246126", "18272544", "18289945", "18332866", "18339864", "18345031", "18381438", "18406507", "18431490", "18449195", "18490454", "18523266", "18560558", "18604166", "18614045", "18715874", "18718914", "18765533", "18769132", "18778462", "18785202", "18794113", "18818083", "18847491", "18985806", "18995830", "19085961", "19203586", "19251701", "19266268", "19303885", "19369195", "19413330", "19477925", "19819244", "19828454", "19861417", "19882354", "19907922", "19934315", "19962312", "20005840", "20009884", "20024960", "20026654", "20080565", "20123963", "20353948", "20372057", "20562916", "20599567", "20610713", "20637859", "20661218", "20663147", "20686112", "20696760", "20711232", "20931131", "20935676", "20962272", "21317932", "21383696", "21394211", "21423215", "21441950", "21455220", "21460857", "21465263", "21532626", "21642861", "21660965", "21757780", "21765463", "21765464", "21832239", "22002314", "22011578", "22030623", "22037398", "22055193", "22099307", "22112863", "22179839", "22285752", "22728651", "22797063", "22815859", "22975381", "23148227", "23150668", "23184057", "23312004", "23603988", "23678107", "23798621", "23871434", "23890999", "23982736", "24038750", "24194938", "24657168", "24711418", "24820418", "24958101", "25202122", "8327466", "9254608", "9315650", "9363941", "9467949", "9733515", "9739174", "9843217", "9925639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "HTT-controls-state-change-of-TP63", "source": "HTT", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-PERP", "source": "TP53", "cited": 6, "target": "PERP", "pubmed": ["14707288"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-TP53INP1", "source": "TP53", "cited": 12, "target": "TP53INP1", "pubmed": ["11511362"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-CCNG1", "source": "TP53", "cited": 20, "target": "CCNG1", "pubmed": ["17110336"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SORT1-controls-state-change-of-TP53", "source": "SORT1", "cited": 0, "target": "TP53", "pubmed": ["15668238"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-CASP1", "source": "TP53", "cited": 6, "target": "CASP1", "pubmed": ["11278253"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK14-controls-state-change-of-TP63", "source": "MAPK14", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "HMGB1-controls-state-change-of-TP73", "source": "HMGB1", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-VDR", "source": "TP53", "cited": 5, "target": "VDR", "pubmed": ["16651407"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-CASP6", "source": "TP53", "cited": 13, "target": "CASP6", "pubmed": ["12089322"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK13-controls-state-change-of-TP63", "source": "MAPK13", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "HTT-controls-state-change-of-TP53", "source": "HTT", "cited": 9, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK12-controls-state-change-of-TP63", "source": "MAPK12", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK11-controls-state-change-of-TP63", "source": "MAPK11", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SIRT1-controls-expression-of-CDKN1A", "source": "SIRT1", "cited": 0, "target": "CDKN1A", "pubmed": [], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PML-controls-state-change-of-TP53", "source": "PML", "cited": 101, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-MET", "source": "TP53", "cited": 1, "target": "MET", "pubmed": ["9920903"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "EP400-controls-expression-of-CDKN1A", "source": "EP400", "cited": 0, "target": "CDKN1A", "pubmed": ["15655109", "8242752"], "isdirected": true, "type": "controls-expression-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "STK17A-controls-state-change-of-TP53", "source": "STK17A", "cited": 0, "target": "TP53", "pubmed": ["10202145", "10570149", "10656795", "10673500", "10673501", "10706102", "10710310", "10734067", "11030628", "11175334", "11244509", "11258706", "11397945", "11423984", "11447225", "11495913", "11526498", "11551930", "11583595", "11707453", "11850826", "11861384", "11875057", "11896572", "11896587", "12091386", "12384533", "12427754", "12531896", "12676607", "12756247", "12810724", "12860987", "12861053", "12902982", "12955074", "12959929", "12969974", "14517211", "14527925", "14612532", "14665630", "15064747", "15140942", "15254178", "15269203", "15322239", "15471885", "15489221", "15629715", "15671037", "15750624", "15843377", "15963507", "16377624", "16651424", "16731759", "16774943", "16818520", "17105820", "17121812", "17135248", "17245430", "17339337", "17353187", "17363488", "17698850", "17967874", "17977830", "18159951", "18593910", "18669630", "18718914", "18778462", "19819244", "19861417", "19882354", "20009884", "20024960", "20041275", "20562916", "20673369", "20696760", "20962272", "21148320", "21383696", "21454683", "21832239", "22030623", "22112863", "22285752", "22728651", "22797063", "22815859", "23798621", "23871434", "24657168", "8327466"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CREBBP-controls-state-change-of-TP53", "source": "CREBBP", "cited": 72, "target": "TP53", "pubmed": ["18485870"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-SERPINB5", "source": "TP53", "cited": 48, "target": "SERPINB5", "pubmed": ["10692390"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "AURKB-controls-state-change-of-TP53", "source": "AURKB", "cited": 0, "target": "TP53", "pubmed": ["15469940", "20847049", "20851891", "20959462", "22611192", "23201157"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "AURKA-controls-state-change-of-TP53", "source": "AURKA", "cited": 17, "target": "TP53", "pubmed": ["10644693", "10656795", "11078726", "11300786", "11687964", "11875057", "12021785", "12397361", "12397362", "12860987", "1406679", "14640983", "14702041", "14744935", "15302935", "15469940", "15619621", "16037820", "16227590", "16552184", "16674116", "16784539", "17287340", "17906639", "17942552", "18521083", "18769132", "18847512", "19413330", "19574224", "19664995", "20363803", "20562916", "20661218", "20686112", "20808790", "20815410", "20847049", "21659604", "21983960", "22011578", "22496350", "22547687", "22611192", "23201157", "23312004", "25159151", "7596441", "8327466", "9254608"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-TAP1", "source": "TP53", "cited": 6, "target": "TAP1", "pubmed": ["10618714", "12857899"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK13-controls-state-change-of-TP53", "source": "MAPK13", "cited": 0, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK12-controls-state-change-of-TP53", "source": "MAPK12", "cited": 0, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK14-controls-state-change-of-TP53", "source": "MAPK14", "cited": 65, "target": "TP53", "pubmed": ["10202145", "10212189", "10581258", "10606744", "10608806", "10611322", "10656682", "10656795", "10673501", "10706102", "10710310", "10713094", "10723129", "10733583", "10734067", "10744722", "10747897", "10958792", "11030628", "11078726", "11096068", "11101524", "11121242", "11244509", "11258706", "11283254", "11300786", "11313957", "11314044", "11397945", "11423984", "11447225", "11495913", "11526498", "11546806", "11583595", "11706017", "11707453", "11709713", "11711532", "11740489", "11780126", "11850826", "11861384", "11865061", "11875057", "11896572", "11896587", "12021785", "12049739", "12071847", "12080066", "12082529", "12091386", "12093737", "12151394", "12324477", "12384533", "12393500", "12397361", "12397362", "12427754", "12511424", "12518062", "12519769", "12519780", "12531896", "12588868", "12606585", "12637545", "12676607", "12702572", "12756247", "12771937", "12776195", "12860987", "12890678", "12902982", "12907596", "12939400", "12955074", "12959929", "12969974", "1406679", "14517211", "14527925", "14612532", "14665630", "14712210", "14749479", "14871840", "14871926", "14968111", "15048074", "15064747", "15077171", "15078887", "15082766", "15140942", "15155458", "15159397", "15178764", "15181149", "15226429", "15254178", "15258567", "15269203", "15310764", "15322239", "15355354", "15361830", "15381073", "15456784", "15471885", "15489221", "15489892", "15526030", "15533933", "15542844", "15580310", "15619621", "15657359", "15665826", "15706352", "15750624", "15758953", "15775976", "15782130", "15792956", "15794754", "15843377", "15866171", "15870257", "15897882", "16219768", "16223874", "16247456", "16288207", "16293623", "16377624", "16397295", "16436515", "16478990", "16489034", "16501611", "16552184", "16601678", "16632641", "16636671", "16648554", "16651424", "16714289", "16717128", "16731759", "16738336", "16774943", "16783362", "16790523", "16793543", "16818505", "16818520", "16891474", "16916644", "16949371", "17045821", "17105820", "17107963", "17108107", "17210684", "17234789", "17245430", "17254968", "17283137", "17297446", "17297454", "17332358", "17339337", "17349958", "17349959", "17353187", "17363488", "17371838", "17380123", "17456577", "17486112", "17535811", "17553757", "17567906", "17591690", "17596534", "17609585", "17616578", "17668048", "17684018", "17698850", "17712528", "17855337", "17891183", "17906639", "17936559", "17942552", "17967874", "17975552", "17976513", "17977830", "18032786", "18045533", "18056442", "18056705", "18097051", "18159951", "18160537", "18216278", "18246126", "18272544", "18289945", "18332866", "18339864", "18345031", "18381438", "18406507", "18431490", "18449195", "18490454", "18536714", "18560558", "18604166", "18614045", "18715874", "18718914", "18765533", "18769132", "18778462", "18785202", "18794113", "18818083", "18847491", "18985806", "18995830", "19085961", "19203586", "19251701", "19266268", "19303885", "19465479", "19477925", "19819244", "19828042", "19828454", "19857493", "19861417", "19882354", "19907922", "19934315", "19962312", "19965871", "20005840", "20018442", "20024960", "20026654", "20080565", "20123963", "20171273", "20353948", "20363803", "20372057", "20514025", "20562916", "20599567", "20610713", "20637859", "20661218", "20663147", "20673369", "20696760", "20711232", "20811699", "20931131", "20935676", "20962272", "21057547", "21317932", "21383696", "21394211", "21423215", "21441950", "21465263", "21532626", "21642861", "21660965", "21757780", "21765463", "21765464", "21832239", "22002314", "22011578", "22030623", "22037398", "22055193", "22099307", "22112863", "22179839", "22285752", "22728651", "22797063", "22815859", "22878263", "22975381", "23148227", "23149944", "23150668", "23184057", "23678107", "23798621", "23871434", "23890999", "23982736", "24038750", "24145406", "24196445", "24379358", "24657168", "24711418", "24820418", "24899407", "24958101", "25202122", "8327466", "9363941", "9372954", "9733515", "9744860", "9843217", "9925639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome", "PhosphoSite", "pid", "PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK11-controls-state-change-of-TP53", "source": "MAPK11", "cited": 0, "target": "TP53", "pubmed": ["10212189", "10747897", "17254968"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome", "pid", "PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-BAX", "source": "TP53", "cited": 95, "target": "BAX", "pubmed": ["14963330"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "HMGB1-controls-state-change-of-TP63", "source": "HMGB1", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-TP73", "source": "TP53", "cited": 42, "target": "TP73", "pubmed": ["11314010"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PML-controls-state-change-of-TP63", "source": "PML", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP2CA-controls-state-change-of-TP73", "source": "PPP2CA", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP2CB-controls-state-change-of-TP73", "source": "PPP2CB", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-BNIP3L", "source": "TP53", "cited": 0, "target": "BNIP3L", "pubmed": ["15607964"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "EIF2AK2-controls-state-change-of-TP53", "source": "EIF2AK2", "cited": 18, "target": "TP53", "pubmed": ["10348343", "10656682", "10706102", "10733583", "10747897", "11101524", "11239457", "11423984", "11850826", "11875057", "12021785", "12393879", "12427754", "12519780", "12676607", "12776195", "12860987", "12959929", "1406679", "14640983", "14968111", "15064747", "15155458", "15322239", "15471885", "15489221", "15619621", "15792956", "15843377", "16083285", "16319070", "16436515", "16552184", "16632641", "16651424", "16717128", "16818520", "17105820", "17108107", "17237827", "17891183", "17942552", "17975552", "18523266", "18718914", "18765533", "18769132", "18778462", "19369195", "19413330", "19819244", "19861417", "19882354", "20009884", "20024960", "20123963", "20562916", "20663147", "20686112", "21317932", "21383696", "21423215", "21455220", "21460857", "21832239", "22112863", "22975381", "23312004", "23603988", "23871434", "24194938", "24657168", "8327466", "9254608", "9315650", "9467949", "9739174"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "FOS-controls-expression-of-TP53", "source": "FOS", "cited": 12, "target": "TP53", "pubmed": ["10072388", "11136975"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-IGFBP3", "source": "TP53", "cited": 17, "target": "IGFBP3", "pubmed": ["7566179"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CREBBP-controls-expression-of-GADD45A", "source": "CREBBP", "cited": 0, "target": "GADD45A", "pubmed": ["15186775", "18250150"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CSNK1E-controls-state-change-of-TP53", "source": "CSNK1E", "cited": 0, "target": "TP53", "pubmed": ["10606744", "10734067"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CSNK1D-controls-state-change-of-TP53", "source": "CSNK1D", "cited": 0, "target": "TP53", "pubmed": ["10202145", "10570149", "10606744", "10656795", "10673500", "10673501", "10706102", "10710310", "10733583", "10734067", "10930428", "11030628", "11175334", "11244509", "11258706", "11397945", "11423984", "11447225", "11495913", "11526498", "11551930", "11583595", "11707453", "11850826", "11861384", "11875057", "11883897", "11896572", "11896587", "12021785", "12082529", "12091386", "12384533", "12427754", "12531896", "12676607", "12702572", "12756247", "12810724", "12860987", "12861053", "12902982", "12955074", "12959929", "12969974", "14517211", "14527925", "14612532", "14665630", "15064747", "15140942", "15254178", "15269203", "15322239", "15355354", "15381073", "15471885", "15489221", "15542844", "15629715", "15671037", "15750624", "15843377", "15963507", "16377624", "16651424", "16731759", "16774943", "16818520", "17105820", "17121812", "17135248", "17245430", "17339337", "17353187", "17363488", "17698850", "17967874", "17977830", "18159951", "18246126", "18593910", "18669630", "18718914", "18769132", "18778462", "18794113", "19345189", "19819244", "19861417", "19882354", "20009884", "20024960", "20041275", "20363803", "20562916", "20673369", "20696760", "20962272", "21148320", "21383696", "21386980", "21454683", "21832239", "22030623", "22112863", "22285752", "22496350", "22728651", "22797063", "22815859", "23798621", "23871434", "24657168", "8327466"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-CDKN1A", "source": "TP53", "cited": 1480, "target": "CDKN1A", "pubmed": ["11080152", "15655109", "17110336", "17409421", "17707234", "17719541", "17938176", "18250150", "18485870", "19011621", "7796420", "8242752"], "isdirected": true, "type": "controls-expression-of", "datasource": ["Reactome", "pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PML-controls-state-change-of-TP73", "source": "PML", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "HMGB1-controls-state-change-of-TP53", "source": "HMGB1", "cited": 21, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-STEAP3", "source": "TP53", "cited": 1, "target": "STEAP3", "pubmed": ["12606722"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "IGBP1-controls-state-change-of-TP73", "source": "IGBP1", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-BDKRB2", "source": "TP53", "cited": 2, "target": "BDKRB2", "pubmed": ["10748162"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "HIPK2-controls-state-change-of-TP53", "source": "HIPK2", "cited": 98, "target": "TP53", "pubmed": ["10581258", "11030628", "11101524", "11300786", "11495913", "11740489", "11780126", "11875057", "12021785", "12093737", "12397361", "12427754", "12676607", "12860987", "12902982", "12907596", "14749479", "15322239", "15381073", "15471885", "15489221", "15526030", "15619621", "15657359", "15706352", "15750624", "15843377", "15870257", "15897882", "16219768", "16247456", "16377624", "16601678", "16717128", "16738336", "16793543", "17105820", "17107963", "17210684", "17332358", "17349958", "17349959", "17380123", "17567906", "17591690", "17891183", "17906639", "18056705", "18160537", "18216278", "18536714", "18560558", "18769132", "19465479", "19819244", "19828042", "19857493", "19861417", "19882354", "19965871", "20018442", "20024960", "20123963", "20171273", "20363803", "20514025", "20610713", "20673369", "20696760", "20811699", "20935676", "20962272", "21057547", "21383696", "21394211", "21642861", "21660965", "21765463", "21765464", "22011578", "22797063", "22878263", "23149944", "24145406", "24196445", "24379358", "24899407"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-RNF144B", "source": "TP53", "cited": 0, "target": "RNF144B", "pubmed": ["12853982"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-DKK1", "source": "TP53", "cited": 5, "target": "DKK1", "pubmed": ["10777218", "11840333", "17409421"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-HIC1", "source": "TP53", "cited": 22, "target": "HIC1", "pubmed": ["16301995"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-HIRA", "source": "TP53", "cited": 1, "target": "HIRA", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK14-controls-state-change-of-TP73", "source": "MAPK14", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-NDRG1", "source": "TP53", "cited": 8, "target": "NDRG1", "pubmed": ["15377670"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-UBN1", "source": "TP53", "cited": 0, "target": "UBN1", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-PMS2", "source": "TP53", "cited": 4, "target": "PMS2", "pubmed": ["15781865"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-RB1", "source": "TP53", "cited": 262, "target": "RB1", "pubmed": ["8119988"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-PMAIP1", "source": "TP53", "cited": 18, "target": "PMAIP1", "pubmed": ["10807576", "15126337", "15598651"], "isdirected": true, "type": "controls-expression-of", "datasource": ["Reactome", "pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK11-controls-state-change-of-TP73", "source": "MAPK11", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-HMGA2", "source": "TP53", "cited": 5, "target": "HMGA2", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-HMGA1", "source": "TP53", "cited": 5, "target": "HMGA1", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK13-controls-state-change-of-TP73", "source": "MAPK13", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK12-controls-state-change-of-TP73", "source": "MAPK12", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "ATR-controls-state-change-of-BARD1", "source": "ATR", "cited": 3, "target": "BARD1", "pubmed": ["15159397"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "IGBP1-controls-state-change-of-TP63", "source": "IGBP1", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-TP53I3", "source": "TP53", "cited": 28, "target": "TP53I3", "pubmed": ["11684014", "11919562", "17719542", "18485870"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK8-controls-state-change-of-TP53", "source": "MAPK8", "cited": 46, "target": "TP53", "pubmed": ["10202145", "10570149", "10581258", "10656795", "10673500", "10673501", "10706102", "10710310", "10734067", "11030628", "11078726", "11175334", "11244509", "11258706", "11283254", "11397945", "11423984", "11447225", "11495913", "11526498", "11551930", "11583595", "11707453", "11850826", "11861384", "11875057", "11896572", "11896587", "12091386", "12384533", "12397361", "12397362", "12427754", "12531896", "12676607", "12756247", "12810724", "12860987", "12861053", "12902982", "12955074", "12959929", "12969974", "14517211", "14527925", "14612532", "14665630", "15064747", "15140942", "15254178", "15269203", "15322239", "15471885", "15489221", "15629715", "15671037", "15750624", "15843377", "15963507", "16377624", "16651424", "16731759", "16774943", "16818520", "17105820", "17121812", "17135248", "17245430", "17339337", "17353187", "17363488", "17698850", "17906639", "17967874", "17977830", "18159951", "18593910", "18669630", "18718914", "18778462", "19819244", "19861417", "19882354", "20009884", "20024960", "20041275", "20562916", "20673369", "20696760", "20962272", "21148320", "21383696", "21454683", "21832239", "22011578", "22030623", "22112863", "22285752", "22728651", "22797063", "22815859", "23798621", "23871434", "24657168", "8327466"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK9-controls-state-change-of-TP53", "source": "MAPK9", "cited": 6, "target": "TP53", "pubmed": ["10202145", "10570149", "10581258", "10656795", "10673500", "10673501", "10706102", "10710310", "10734067", "11030628", "11078726", "11175334", "11244509", "11258706", "11283254", "11397945", "11423984", "11447225", "11495913", "11526498", "11551930", "11583595", "11707453", "11850826", "11861384", "11875057", "11896572", "11896587", "12091386", "12384533", "12427754", "12531896", "12676607", "12756247", "12810724", "12860987", "12861053", "12902982", "12955074", "12959929", "12969974", "14517211", "14527925", "14612532", "14665630", "15064747", "15140942", "15254178", "15269203", "15322239", "15471885", "15489221", "15629715", "15671037", "15750624", "15843377", "15963507", "16377624", "16651424", "16731759", "16774943", "16818520", "17105820", "17121812", "17135248", "17245430", "17339337", "17353187", "17363488", "17698850", "17967874", "17977830", "18159951", "18593910", "18669630", "18718914", "18778462", "19819244", "19861417", "19882354", "20009884", "20024960", "20041275", "20562916", "20673369", "20696760", "20962272", "21148320", "21383696", "21454683", "21832239", "22030623", "22112863", "22285752", "22728651", "22797063", "22815859", "23798621", "23871434", "24657168", "8327466"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-SESN1", "source": "TP53", "cited": 0, "target": "SESN1", "pubmed": ["9926927"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "DYRK1A-controls-state-change-of-TP53", "source": "DYRK1A", "cited": 1, "target": "TP53", "pubmed": ["10202145", "10581258", "10606744", "10608806", "10611322", "10656682", "10656795", "10673501", "10706102", "10710310", "10713094", "10723129", "10733583", "10734067", "10744722", "10958792", "11030628", "11096068", "11121242", "11244509", "11258706", "11313957", "11314044", "11397945", "11423984", "11447225", "11495913", "11526498", "11546806", "11583595", "11706017", "11707453", "11709713", "11711532", "11850826", "11861384", "11865061", "11875057", "11896572", "11896587", "12021785", "12049739", "12071847", "12080066", "12082529", "12091386", "12151394", "12324477", "12384533", "12393500", "12397362", "12427754", "12511424", "12518062", "12519769", "12519780", "12531896", "12588868", "12606585", "12637545", "12676607", "12702572", "12756247", "12771937", "12776195", "12860987", "12890678", "12902982", "12939400", "12955074", "12959929", "12969974", "1406679", "14517211", "14527925", "14612532", "14665630", "14712210", "14871840", "14871926", "14968111", "15048074", "15064747", "15077171", "15078887", "15082766", "15140942", "15155458", "15159397", "15178764", "15181149", "15226429", "15254178", "15258567", "15269203", "15310764", "15322239", "15355354", "15361830", "15381073", "15456784", "15471885", "15489221", "15489892", "15533933", "15542844", "15580310", "15619621", "15665826", "15750624", "15758953", "15775976", "15782130", "15792956", "15794754", "15843377", "15866171", "15870257", "15897882", "16223874", "16247456", "16288207", "16293623", "16377624", "16397295", "16436515", "16478990", "16489034", "16501611", "16632641", "16636671", "16648554", "16651424", "16714289", "16717128", "16731759", "16774943", "16783362", "16790523", "16818505", "16818520", "16891474", "16916644", "16949371", "17045821", "17105820", "17108107", "17234789", "17245430", "17283137", "17297446", "17297454", "17332358", "17339337", "17353187", "17363488", "17371838", "17380123", "17456577", "17486112", "17535811", "17553757", "17591690", "17596534", "17609585", "17616578", "17668048", "17684018", "17698850", "17712528", "17855337", "17891183", "17936559", "17967874", "17975552", "17976513", "17977830", "18032786", "18045533", "18056442", "18097051", "18159951", "18216278", "18246126", "18272544", "18289945", "18332866", "18339864", "18345031", "18381438", "18406507", "18431490", "18449195", "18490454", "18560558", "18604166", "18614045", "18715874", "18718914", "18765533", "18769132", "18778462", "18785202", "18794113", "18818083", "18847491", "18985806", "18995830", "19085961", "19203586", "19251701", "19266268", "19303885", "19477925", "19819244", "19828454", "19861417", "19882354", "19907922", "19934315", "19962312", "20005840", "20024960", "20026654", "20080565", "20123963", "20353948", "20372057", "20562916", "20599567", "20610713", "20637859", "20661218", "20663147", "20696760", "20711232", "20931131", "20935676", "20962272", "21317932", "21383696", "21394211", "21423215", "21441950", "21465263", "21532626", "21642861", "21660965", "21757780", "21765463", "21765464", "21832239", "22002314", "22011578", "22030623", "22037398", "22055193", "22099307", "22112863", "22179839", "22285752", "22728651", "22797063", "22815859", "22975381", "23148227", "23150668", "23184057", "23678107", "23798621", "23871434", "23890999", "23982736", "24038750", "24657168", "24711418", "24820418", "24958101", "25202122", "8327466", "9363941", "9733515", "9843217", "9925639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-SPP1", "source": "TP53", "cited": 0, "target": "SPP1", "pubmed": ["11807984"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SUMO1-controls-state-change-of-TP73", "source": "SUMO1", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAG1-controls-state-change-of-TP63", "source": "PRKAG1", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SIRT1-controls-state-change-of-TP73", "source": "SIRT1", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-RGCC", "source": "TP53", "cited": 0, "target": "RGCC", "pubmed": ["17146433"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-BBC3", "source": "TP53", "cited": 8, "target": "BBC3", "pubmed": ["11463392", "11572983", "15790310", "16286009", "17189186", "17189187", "17707234", "17719541", "18250150", "19011621"], "isdirected": true, "type": "controls-expression-of", "datasource": ["Reactome", "pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TRIM28-controls-state-change-of-TP53", "source": "TRIM28", "cited": 6, "target": "TP53", "pubmed": ["16107876"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "UBE2D1-controls-state-change-of-TP53", "source": "UBE2D1", "cited": 0, "target": "TP53", "pubmed": ["10734067", "11127820", "11340074", "11713287", "14654783", "14671306", "15210108", "9153395", "9153396", "9450543"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP2CB-controls-state-change-of-TP63", "source": "PPP2CB", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CHEK2-controls-state-change-of-TP53", "source": "CHEK2", "cited": 73, "target": "TP53", "pubmed": ["10202145", "10570149", "10581258", "10606744", "10608806", "10611322", "10656682", "10656795", "10673500", "10673501", "10706102", "10710310", "10713094", "10723129", "10733583", "10734067", "10744722", "10958792", "11030628", "11042698", "11096068", "11121242", "11175334", "11244509", "11258706", "11300786", "11313957", "11314044", "11397945", "11423984", "11447225", "11495913", "11526498", "11546806", "11551930", "11583595", "11585729", "11706017", "11707453", "11709713", "11711532", "11850826", "11861384", "11865061", "11875057", "11883897", "11896572", "11896587", "12021785", "12049739", "12071847", "12080066", "12082529", "12091386", "12151394", "12324477", "12384533", "12393500", "12397362", "12427754", "12511424", "12518062", "12519769", "12519780", "12531896", "12588868", "12606585", "12637545", "12676607", "12702572", "12756247", "12771937", "12776195", "12810724", "12860987", "12861053", "12890678", "12902982", "12939400", "12955074", "12959929", "12969974", "1406679", "14517211", "14527925", "14612532", "14640983", "14665630", "14712210", "14871840", "14871926", "14968111", "15048074", "15064747", "15077171", "15078887", "15082766", "15140942", "15155458", "15159397", "15178764", "15181149", "15226429", "15254178", "15258567", "15269203", "15310764", "15322239", "15355354", "15361830", "15381073", "15456784", "15471885", "15489221", "15489892", "15533933", "15542844", "15580310", "15619621", "15629715", "15659650", "15665826", "15671037", "15750624", "15758953", "15775976", "15782130", "15792956", "15794754", "15843377", "15866171", "15870257", "15897882", "15963507", "16223874", "16247456", "16288207", "16293623", "16377624", "16397295", "16436515", "16478990", "16489034", "16501611", "16632641", "16636671", "16648554", "16651424", "16714289", "16717128", "16731759", "16774943", "16783362", "16790523", "16818505", "16818520", "16891474", "16916644", "16949371", "17045821", "17105820", "17108107", "17121812", "17135248", "17234789", "17245430", "17254968", "17283137", "17297446", "17297454", "17332358", "17339337", "17353187", "17363488", "17371838", "17380123", "17456577", "17486112", "17535811", "17553757", "17591690", "17596534", "17609585", "17616578", "17668048", "17684018", "17698850", "17712528", "17855337", "17891183", "17898864", "17936559", "17967874", "17975552", "17976513", "17977830", "18032786", "18045533", "18056442", "18097051", "18159951", "18216278", "18246126", "18272544", "18289945", "18332866", "18339864", "18345031", "18381438", "18406507", "18431490", "18449195", "18490454", "18560558", "18593910", "18604166", "18614045", "18669630", "18715874", "18718914", "18765533", "18769132", "18778462", "18785202", "18794113", "18812399", "18818083", "18847491", "18985806", "18995830", "19085961", "19203586", "19251701", "19266268", "19303885", "19477925", "19819244", "19828454", "19861417", "19882354", "19907922", "19933256", "19934315", "19962312", "20005840", "20009884", "20024960", "20026654", "20041275", "20080565", "20123963", "20353948", "20372057", "20562916", "20599567", "20610713", "20637859", "20661218", "20663147", "20673369", "20696760", "20711232", "20931131", "20935676", "20962272", "21148320", "21317932", "21383696", "21386980", "21394211", "21423215", "21441950", "21454683", "21465263", "21532626", "21642861", "21660965", "21757780", "21765463", "21765464", "21832239", "22002314", "22011578", "22030623", "22037398", "22055193", "22099307", "22112863", "22179839", "22285752", "22728651", "22797063", "22815859", "22975381", "23148227", "23150668", "23184057", "23678107", "23798621", "23871434", "23890999", "23982736", "24038750", "24657168", "24711418", "24820418", "24958101", "25202122", "8327466", "9254608", "9315650", "9363941", "9571186", "9620776", "9733515", "9739174", "9744860", "9843217", "9925639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "pid", "PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP2CA-controls-state-change-of-TP63", "source": "PPP2CA", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK7-controls-state-change-of-TP53", "source": "CDK7", "cited": 7, "target": "TP53", "pubmed": ["10202145", "10348343", "10581258", "10656682", "10656795", "10706102", "10733583", "10747897", "11007451", "11101524", "11239457", "11300786", "11423984", "11495913", "11526498", "11583595", "11585729", "11707453", "11709713", "11850826", "11875057", "12021785", "12080066", "12091386", "12393879", "12397361", "12397362", "12427754", "12519780", "12676607", "12776195", "12860987", "12959929", "1406679", "14640983", "14665630", "14744935", "14968111", "15064747", "15155458", "15322239", "15471885", "15489221", "15619621", "15659650", "15792956", "15843377", "16083285", "16227590", "16319070", "16436515", "16552184", "16632641", "16651424", "16717128", "16818520", "17105820", "17108107", "17237827", "17591690", "17891183", "17898864", "17906639", "17942552", "17975552", "18490454", "18523266", "18718914", "18765533", "18769132", "18778462", "18812399", "19251701", "19369195", "19413330", "19819244", "19861417", "19882354", "19933256", "20009884", "20024960", "20123963", "20562916", "20663147", "20686112", "20962272", "21317932", "21383696", "21423215", "21455220", "21460857", "21832239", "22011578", "22112863", "22975381", "23312004", "23603988", "23871434", "24194938", "24657168", "8327466", "9254608", "9315650", "9372954", "9467949", "9571186", "9620776", "9739174", "9744860"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-ARID3A", "source": "TP53", "cited": 0, "target": "ARID3A", "pubmed": ["12692263"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CHEK1-controls-state-change-of-TP53", "source": "CHEK1", "cited": 51, "target": "TP53", "pubmed": ["10202145", "10570149", "10581258", "10606744", "10608806", "10611322", "10656682", "10656795", "10673500", "10673501", "10706102", "10710310", "10713094", "10723129", "10733583", "10734067", "10744722", "10958792", "11030628", "11042698", "11096068", "11121242", "11175334", "11244509", "11258706", "11300786", "11313957", "11314044", "11397945", "11423984", "11447225", "11495913", "11526498", "11546806", "11551930", "11583595", "11585729", "11706017", "11707453", "11709713", "11711532", "11850826", "11861384", "11865061", "11875057", "11883897", "11896572", "11896587", "12021785", "12049739", "12071847", "12080066", "12082529", "12091386", "12151394", "12324477", "12384533", "12393500", "12397362", "12427754", "12511424", "12518062", "12519769", "12519780", "12531896", "12588868", "12606585", "12637545", "12676607", "12702572", "12756247", "12771937", "12776195", "12810724", "12860987", "12861053", "12890678", "12902982", "12939400", "12955074", "12959929", "12969974", "1406679", "14517211", "14527925", "14612532", "14640983", "14665630", "14712210", "14871840", "14871926", "14968111", "15048074", "15064747", "15077171", "15078887", "15082766", "15140942", "15155458", "15159397", "15178764", "15181149", "15226429", "15254178", "15258567", "15269203", "15310764", "15322239", "15355354", "15361830", "15381073", "15456784", "15471885", "15489221", "15489892", "15533933", "15542844", "15580310", "15619621", "15629715", "15659650", "15665826", "15671037", "15750624", "15758953", "15775976", "15782130", "15792956", "15794754", "15843377", "15866171", "15870257", "15897882", "15963507", "16223874", "16247456", "16288207", "16293623", "16377624", "16397295", "16436515", "16478990", "16489034", "16501611", "16632641", "16636671", "16648554", "16651424", "16714289", "16717128", "16731759", "16774943", "16783362", "16790523", "16818505", "16818520", "16891474", "16916644", "16949371", "17045821", "17105820", "17108107", "17121812", "17135248", "17234789", "17245430", "17254968", "17283137", "17297446", "17297454", "17332358", "17339337", "17353187", "17363488", "17371838", "17380123", "17456577", "17486112", "17535811", "17553757", "17591690", "17596534", "17609585", "17616578", "17668048", "17684018", "17698850", "17712528", "17855337", "17891183", "17898864", "17936559", "17967874", "17975552", "17976513", "17977830", "18032786", "18045533", "18056442", "18097051", "18159951", "18216278", "18246126", "18272544", "18289945", "18332866", "18339864", "18345031", "18381438", "18406507", "18431490", "18449195", "18490454", "18560558", "18593910", "18604166", "18614045", "18669630", "18715874", "18718914", "18765533", "18769132", "18778462", "18785202", "18794113", "18812399", "18818083", "18847491", "18985806", "18995830", "19085961", "19203586", "19251701", "19266268", "19303885", "19477925", "19819244", "19828454", "19861417", "19882354", "19907922", "19933256", "19934315", "19962312", "20005840", "20009884", "20024960", "20026654", "20041275", "20080565", "20123963", "20353948", "20372057", "20562916", "20599567", "20610713", "20637859", "20661218", "20663147", "20673369", "20696760", "20711232", "20931131", "20935676", "20962272", "21148320", "21317932", "21383696", "21386980", "21394211", "21423215", "21441950", "21454683", "21465263", "21532626", "21642861", "21660965", "21757780", "21765463", "21765464", "21832239", "22002314", "22011578", "22030623", "22037398", "22055193", "22099307", "22112863", "22179839", "22285752", "22728651", "22797063", "22815859", "22975381", "23148227", "23150668", "23184057", "23678107", "23798621", "23871434", "23890999", "23982736", "24038750", "24657168", "24711418", "24820418", "24958101", "25202122", "8327466", "9254608", "9315650", "9363941", "9571186", "9620776", "9733515", "9739174", "9744860", "9843217", "9925639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK9-controls-state-change-of-TP53", "source": "CDK9", "cited": 19, "target": "TP53", "pubmed": ["10202145", "10348343", "10581258", "10644693", "10656682", "10656795", "10706102", "10733583", "10747897", "11078726", "11101524", "11239457", "11300786", "11423984", "11495913", "11526498", "11583595", "11687964", "11707453", "11709713", "11850826", "11875057", "12021785", "12091386", "12393879", "12397361", "12397362", "12427754", "12519780", "12676607", "12776195", "12860987", "12959929", "1406679", "14640983", "14665630", "14702041", "14744935", "14968111", "15064747", "15155458", "15302935", "15322239", "15471885", "15489221", "15619621", "15792956", "15843377", "16037820", "16083285", "16227590", "16319070", "16436515", "16552184", "16632641", "16651424", "16674116", "16717128", "16784539", "16818520", "17105820", "17108107", "17237827", "17287340", "17591690", "17891183", "17906639", "17942552", "17975552", "18490454", "18521083", "18523266", "18718914", "18765533", "18769132", "18778462", "18847512", "19251701", "19369195", "19413330", "19574224", "19664995", "19819244", "19861417", "19882354", "20009884", "20024960", "20123963", "20363803", "20562916", "20661218", "20663147", "20686112", "20808790", "20815410", "20962272", "21317932", "21383696", "21423215", "21455220", "21460857", "21659604", "21832239", "21983960", "22011578", "22112863", "22496350", "22547687", "22975381", "23201157", "23312004", "23603988", "23871434", "24194938", "24657168", "25159151", "7596441", "8327466", "9254608", "9315650", "9372954", "9467949", "9739174", "9744860"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-EDN2", "source": "TP53", "cited": 0, "target": "EDN2", "pubmed": ["16260627"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK2-controls-state-change-of-TP53", "source": "CDK2", "cited": 26, "target": "TP53", "pubmed": ["10581258", "10644693", "10656795", "11078726", "11283254", "11300786", "11687964", "11875057", "12021785", "12397361", "12397362", "12860987", "1406679", "14640983", "14702041", "14744935", "15302935", "15619621", "16037820", "16227590", "16552184", "16674116", "16784539", "17287340", "17906639", "17942552", "18521083", "18769132", "18847512", "19413330", "19574224", "19664995", "20363803", "20562916", "20661218", "20686112", "20808790", "20815410", "21659604", "21983960", "22011578", "22496350", "22547687", "23201157", "23312004", "25159151", "7596441", "8327466", "9254608"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK5-controls-state-change-of-TP53", "source": "CDK5", "cited": 23, "target": "TP53", "pubmed": ["10202145", "10570149", "10581258", "10606744", "10608806", "10611322", "10656682", "10656795", "10673500", "10673501", "10706102", "10710310", "10713094", "10723129", "10733583", "10734067", "10744722", "10958792", "11030628", "11096068", "11101524", "11121242", "11175334", "11244509", "11258706", "11300786", "11313957", "11314044", "11397945", "11423984", "11447225", "11495913", "11526498", "11546806", "11551930", "11583595", "11706017", "11707453", "11709713", "11711532", "11740489", "11780126", "11850826", "11861384", "11865061", "11875057", "11896572", "11896587", "12021785", "12049739", "12071847", "12080066", "12082529", "12091386", "12093737", "12151394", "12324477", "12384533", "12393500", "12397361", "12397362", "12427754", "12511424", "12518062", "12519769", "12519780", "12531896", "12588868", "12606585", "12637545", "12676607", "12702572", "12756247", "12771937", "12776195", "12810724", "12860987", "12861053", "12890678", "12902982", "12907596", "12939400", "12955074", "12959929", "12969974", "1406679", "14517211", "14527925", "14612532", "14665630", "14712210", "14749479", "14871840", "14871926", "14968111", "15048074", "15064747", "15077171", "15078887", "15082766", "15140942", "15155458", "15159397", "15178764", "15181149", "15226429", "15254178", "15258567", "15269203", "15310764", "15322239", "15355354", "15361830", "15381073", "15456784", "15471885", "15489221", "15489892", "15526030", "15533933", "15542844", "15580310", "15619621", "15629715", "15657359", "15665826", "15671037", "15706352", "15750624", "15758953", "15775976", "15782130", "15792956", "15794754", "15843377", "15866171", "15870257", "15897882", "15963507", "16219768", "16223874", "16247456", "16288207", "16293623", "16377624", "16397295", "16436515", "16478990", "16489034", "16501611", "16552184", "16601678", "16632641", "16636671", "16648554", "16651424", "16714289", "16717128", "16731759", "16738336", "16774943", "16783362", "16790523", "16793543", "16818505", "16818520", "16891474", "16916644", "16949371", "17045821", "17105820", "17107963", "17108107", "17121812", "17135248", "17210684", "17234789", "17245430", "17283137", "17297446", "17297454", "17332358", "17339337", "17349958", "17349959", "17353187", "17363488", "17371838", "17380123", "17456577", "17486112", "17535811", "17553757", "17567906", "17591690", "17596534", "17609585", "17616578", "17668048", "17684018", "17698850", "17712528", "17855337", "17891183", "17906639", "17936559", "17942552", "17967874", "17975552", "17976513", "17977830", "18032786", "18045533", "18056442", "18056705", "18097051", "18159951", "18160537", "18216278", "18246126", "18272544", "18289945", "18332866", "18339864", "18345031", "18381438", "18406507", "18431490", "18449195", "18490454", "18536714", "18560558", "18593910", "18604166", "18614045", "18669630", "18715874", "18718914", "18765533", "18769132", "18778462", "18785202", "18794113", "18818083", "18847491", "18985806", "18995830", "19085961", "19203586", "19251701", "19266268", "19303885", "19465479", "19477925", "19819244", "19828042", "19828454", "19857493", "19861417", "19882354", "19907922", "19934315", "19962312", "19965871", "20005840", "20009884", "20018442", "20024960", "20026654", "20041275", "20080565", "20123963", "20171273", "20353948", "20363803", "20372057", "20514025", "20562916", "20599567", "20610713", "20637859", "20661218", "20663147", "20673369", "20696760", "20711232", "20811699", "20931131", "20935676", "20962272", "21057547", "21148320", "21317932", "21383696", "21394211", "21423215", "21441950", "21454683", "21465263", "21532626", "21642861", "21660965", "21757780", "21765463", "21765464", "21832239", "22002314", "22011578", "22030623", "22037398", "22055193", "22099307", "22112863", "22179839", "22285752", "22728651", "22797063", "22815859", "22878263", "22975381", "23148227", "23149944", "23150668", "23184057", "23678107", "23798621", "23871434", "23890999", "23982736", "24038750", "24145406", "24196445", "24379358", "24657168", "24711418", "24820418", "24899407", "24958101", "25202122", "8327466", "9363941", "9372954", "9733515", "9744860", "9843217", "9925639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "IGBP1-controls-state-change-of-TP53", "source": "IGBP1", "cited": 0, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "DYRK2-controls-state-change-of-TP53", "source": "DYRK2", "cited": 4, "target": "TP53", "pubmed": ["10581258", "11030628", "11101524", "11300786", "11495913", "11740489", "11780126", "11875057", "12021785", "12093737", "12397361", "12427754", "12676607", "12860987", "12902982", "12907596", "14749479", "15322239", "15381073", "15471885", "15489221", "15526030", "15619621", "15657359", "15706352", "15750624", "15843377", "15870257", "15897882", "16219768", "16247456", "16377624", "16601678", "16717128", "16738336", "16793543", "17105820", "17107963", "17210684", "17332358", "17349958", "17349959", "17380123", "17567906", "17591690", "17891183", "17906639", "18056705", "18160537", "18216278", "18536714", "18560558", "18769132", "19465479", "19819244", "19828042", "19857493", "19861417", "19882354", "19965871", "20018442", "20024960", "20123963", "20171273", "20363803", "20514025", "20610713", "20673369", "20696760", "20811699", "20935676", "20962272", "21057547", "21383696", "21394211", "21642861", "21660965", "21765463", "21765464", "22011578", "22797063", "22878263", "23149944", "24145406", "24196445", "24379358", "24899407"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-BAX", "source": "TP53", "cited": 95, "target": "BAX", "pubmed": ["10518217", "11080152", "11278953", "11684014", "11850816", "15598651", "17145718", "17189187"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-CCNB1", "source": "TP53", "cited": 23, "target": "CCNB1", "pubmed": ["15710382"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "BDNF-controls-state-change-of-TP53", "source": "BDNF", "cited": 0, "target": "TP53", "pubmed": ["15668238"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SIRT1-controls-state-change-of-TP63", "source": "SIRT1", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK1-controls-state-change-of-TP53", "source": "MAPK1", "cited": 93, "target": "TP53", "pubmed": ["10202145", "10581258", "10606744", "10608806", "10611322", "10656682", "10656795", "10673501", "10706102", "10710310", "10713094", "10723129", "10733583", "10734067", "10744722", "10933801", "10958792", "11030628", "11096068", "11121242", "11244509", "11258706", "11313957", "11314044", "11397945", "11409876", "11423984", "11447225", "11495913", "11526498", "11546806", "11583595", "11706017", "11707453", "11709713", "11711532", "11850826", "11861384", "11865061", "11875057", "11896572", "11896587", "12021785", "12049739", "12071847", "12080066", "12082529", "12091386", "12151394", "12324477", "12384533", "12393500", "12397362", "12427754", "12511424", "12518062", "12519769", "12519780", "12531896", "12588868", "12606585", "12637545", "12676607", "12702572", "12756247", "12771937", "12776195", "12860987", "12890678", "12902982", "12939400", "12955074", "12959929", "12969974", "1406679", "14517211", "14527925", "14612532", "14665630", "14712210", "14729628", "14871840", "14871926", "14968111", "15048074", "15053879", "15064747", "15077171", "15078887", "15082766", "15116093", "15140942", "15155458", "15159397", "15178764", "15181149", "15226429", "15254178", "15258567", "15269203", "15310764", "15322239", "15355354", "15361830", "15381073", "15456784", "15471885", "15489221", "15489892", "15533933", "15542844", "15580310", "15619621", "15665826", "15750624", "15758953", "15775976", "15782130", "15792956", "15794754", "15843377", "15866171", "15870257", "15897882", "16223874", "16247456", "16288207", "16293623", "16377624", "16397295", "16436515", "16478990", "16489034", "16501611", "16632641", "16636671", "16648554", "16651424", "16714289", "16717128", "16731759", "16774943", "16783362", "16790523", "16793543", "16818505", "16818520", "16891474", "16916644", "16949371", "17045821", "17105820", "17108107", "17234789", "17245430", "17283137", "17297446", "17297454", "17332358", "17339337", "17353187", "17363488", "17371838", "17380123", "17456577", "17486112", "17535811", "17553757", "17591690", "17596534", "17609585", "17616578", "17668048", "17684018", "17698850", "17712528", "17855337", "17891183", "17936559", "17967874", "17975552", "17976513", "17977830", "18032786", "18045533", "18056442", "18097051", "18159951", "18160537", "18216278", "18246126", "18272544", "18289945", "18332866", "18339864", "18345031", "18381438", "18406507", "18431490", "18449195", "18490454", "18560558", "18604166", "18614045", "18715874", "18718914", "18765533", "18769132", "18778462", "18785202", "18794113", "18818083", "18847491", "18952844", "18985806", "18995830", "19085961", "19203586", "19251701", "19266268", "19303885", "19477925", "19819244", "19828454", "19861417", "19882354", "19907922", "19934315", "19962312", "20005840", "20024960", "20026654", "20080565", "20123963", "20124405", "20353948", "20372057", "20473327", "20562916", "20599567", "20610713", "20637859", "20661218", "20663147", "20696760", "20711232", "20931131", "20935676", "20962272", "21317932", "21383696", "21394211", "21423215", "21441950", "21465263", "21532626", "21642861", "21660965", "21757780", "21765463", "21765464", "21832239", "22002314", "22011578", "22030623", "22037398", "22055193", "22099307", "22112863", "22179839", "22285752", "22728651", "22797063", "22815859", "22975381", "23148227", "23150668", "23184057", "23678107", "23723076", "23798621", "23871434", "23890999", "23982736", "24038750", "24289924", "24657168", "24711418", "24820418", "24958101", "25202122", "8327466", "9363941", "9733515", "9843217", "9925639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAG1-controls-state-change-of-TP73", "source": "PRKAG1", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "EP400-controls-state-change-of-UBN1", "source": "EP400", "cited": 0, "target": "UBN1", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-MDM2", "source": "TP53", "cited": 2784, "target": "MDM2", "pubmed": ["12138177", "17409421", "7651818", "8319905"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP2CB-controls-state-change-of-TP53", "source": "PPP2CB", "cited": 0, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP2CA-controls-state-change-of-TP53", "source": "PPP2CA", "cited": 5, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPK3-controls-state-change-of-TP53", "source": "MAPK3", "cited": 60, "target": "TP53", "pubmed": ["10202145", "10581258", "10606744", "10608806", "10611322", "10656682", "10656795", "10673501", "10706102", "10710310", "10713094", "10723129", "10733583", "10734067", "10744722", "10958792", "11030628", "11096068", "11121242", "11244509", "11258706", "11313957", "11314044", "11397945", "11423984", "11447225", "11495913", "11526498", "11546806", "11583595", "11706017", "11707453", "11709713", "11711532", "11850826", "11861384", "11865061", "11875057", "11896572", "11896587", "12021785", "12049739", "12071847", "12080066", "12082529", "12091386", "12151394", "12324477", "12384533", "12393500", "12397362", "12427754", "12511424", "12518062", "12519769", "12519780", "12531896", "12588868", "12606585", "12637545", "12676607", "12702572", "12756247", "12771937", "12776195", "12860987", "12890678", "12902982", "12939400", "12955074", "12959929", "12969974", "1406679", "14517211", "14527925", "14612532", "14665630", "14712210", "14871840", "14871926", "14968111", "15048074", "15064747", "15077171", "15078887", "15082766", "15140942", "15155458", "15159397", "15178764", "15181149", "15226429", "15254178", "15258567", "15269203", "15310764", "15322239", "15355354", "15361830", "15381073", "15456784", "15471885", "15489221", "15489892", "15533933", "15542844", "15580310", "15619621", "15665826", "15750624", "15758953", "15775976", "15782130", "15792956", "15794754", "15843377", "15866171", "15870257", "15897882", "16223874", "16247456", "16288207", "16293623", "16377624", "16397295", "16436515", "16478990", "16489034", "16501611", "16632641", "16636671", "16648554", "16651424", "16714289", "16717128", "16731759", "16774943", "16783362", "16790523", "16818505", "16818520", "16891474", "16916644", "16949371", "17045821", "17105820", "17108107", "17234789", "17245430", "17283137", "17297446", "17297454", "17332358", "17339337", "17353187", "17363488", "17371838", "17380123", "17456577", "17486112", "17535811", "17553757", "17591690", "17596534", "17609585", "17616578", "17668048", "17684018", "17698850", "17712528", "17855337", "17891183", "17936559", "17967874", "17975552", "17976513", "17977830", "18032786", "18045533", "18056442", "18097051", "18159951", "18216278", "18246126", "18272544", "18289945", "18332866", "18339864", "18345031", "18381438", "18406507", "18431490", "18449195", "18490454", "18560558", "18604166", "18614045", "18715874", "18718914", "18765533", "18769132", "18778462", "18785202", "18794113", "18818083", "18847491", "18985806", "18995830", "19085961", "19203586", "19251701", "19266268", "19303885", "19477925", "19819244", "19828454", "19861417", "19882354", "19907922", "19934315", "19962312", "20005840", "20024960", "20026654", "20080565", "20123963", "20353948", "20372057", "20562916", "20599567", "20610713", "20637859", "20661218", "20663147", "20696760", "20711232", "20931131", "20935676", "20962272", "21317932", "21383696", "21394211", "21423215", "21441950", "21465263", "21532626", "21642861", "21660965", "21757780", "21765463", "21765464", "21832239", "22002314", "22011578", "22030623", "22037398", "22055193", "22099307", "22112863", "22179839", "22285752", "22728651", "22797063", "22815859", "22975381", "23148227", "23150668", "23184057", "23678107", "23798621", "23871434", "23890999", "23982736", "24038750", "24657168", "24711418", "24820418", "24958101", "25202122", "8327466", "9363941", "9733515", "9843217", "9925639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-PCNA", "source": "TP53", "cited": 294, "target": "PCNA", "pubmed": ["8570655"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-S100A2", "source": "TP53", "cited": 8, "target": "S100A2", "pubmed": ["10094469"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-DUSP5", "source": "TP53", "cited": 0, "target": "DUSP5", "pubmed": ["12944906"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CHEK2-controls-state-change-of-TP63", "source": "CHEK2", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-CD82", "source": "TP53", "cited": 44, "target": "CD82", "pubmed": ["9736732"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-SH2D1A", "source": "TP53", "cited": 0, "target": "SH2D1A", "pubmed": ["15378026"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-TP53AIP1", "source": "TP53", "cited": 0, "target": "TP53AIP1", "pubmed": ["11030628", "17719542"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-FDXR", "source": "TP53", "cited": 0, "target": "FDXR", "pubmed": ["12370809", "17409421"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-HTT", "source": "TP53", "cited": 9, "target": "HTT", "pubmed": ["16278683"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-SNAI2", "source": "TP53", "cited": 5, "target": "SNAI2", "pubmed": ["16286009"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-CTSD", "source": "TP53", "cited": 0, "target": "CTSD", "pubmed": ["9619826"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SIRT1-controls-state-change-of-TP53", "source": "SIRT1", "cited": 50, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-CASP10", "source": "TP53", "cited": 0, "target": "CASP10", "pubmed": ["14688482"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-APAF1", "source": "TP53", "cited": 26, "target": "APAF1", "pubmed": ["11559530"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-HGF", "source": "TP53", "cited": 1, "target": "HGF", "pubmed": ["9023107"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-MAP4K4", "source": "TP53", "cited": 1, "target": "MAP4K4", "pubmed": ["15958553"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRMT5-controls-state-change-of-TP53", "source": "PRMT5", "cited": 0, "target": "TP53", "pubmed": ["19011621"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-APC", "source": "TP53", "cited": 166, "target": "APC", "pubmed": ["11279192"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-EPHA2", "source": "TP53", "cited": 5, "target": "EPHA2", "pubmed": ["11641774"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CSNK1A1-controls-state-change-of-TP53", "source": "CSNK1A1", "cited": 0, "target": "TP53", "pubmed": ["10202145", "10570149", "10606744", "10656795", "10673500", "10673501", "10706102", "10710310", "10733583", "10734067", "11030628", "11175334", "11244509", "11258706", "11397945", "11423984", "11447225", "11495913", "11526498", "11551930", "11583595", "11707453", "11850826", "11861384", "11875057", "11883897", "11896572", "11896587", "12091386", "12384533", "12427754", "12531896", "12676607", "12756247", "12810724", "12860987", "12861053", "12902982", "12955074", "12959929", "12969974", "14517211", "14527925", "14612532", "14665630", "15064747", "15140942", "15254178", "15269203", "15322239", "15355354", "15471885", "15489221", "15542844", "15629715", "15671037", "15750624", "15843377", "15963507", "16377624", "16651424", "16731759", "16774943", "16818520", "17105820", "17121812", "17135248", "17245430", "17339337", "17353187", "17363488", "17698850", "17967874", "17977830", "18159951", "18246126", "18593910", "18669630", "18718914", "18778462", "18794113", "19819244", "19861417", "19882354", "20009884", "20024960", "20041275", "20562916", "20673369", "20696760", "20962272", "21148320", "21383696", "21386980", "21454683", "21832239", "22030623", "22112863", "22285752", "22728651", "22797063", "22815859", "23798621", "23871434", "24657168", "8327466"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SKP2-controls-state-change-of-TP53", "source": "SKP2", "cited": 17, "target": "TP53", "pubmed": ["18485870"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CSNK2A1-controls-state-change-of-TP53", "source": "CSNK2A1", "cited": 4, "target": "TP53", "pubmed": ["10348343", "10656682", "10706102", "10733583", "10747897", "11101524", "11239457", "11285227", "11423984", "11850826", "11875057", "12021785", "12393879", "12427754", "12519780", "12628923", "12676607", "12776195", "12860987", "12959929", "1406679", "14640983", "14968111", "15064747", "15155458", "15322239", "15471885", "15489221", "15619621", "15792956", "15843377", "16083285", "16319070", "16436515", "16552184", "16632641", "16651424", "16717128", "16818520", "16964247", "17105820", "17108107", "17237827", "17891183", "17906639", "17942552", "17975552", "18523266", "18718914", "18765533", "18769132", "18778462", "19369195", "19413330", "19819244", "19861417", "19882354", "20009884", "20024960", "20123963", "20562916", "20663147", "20686112", "21127074", "21317932", "21383696", "21423215", "21455220", "21460857", "21832239", "22112863", "22975381", "23312004", "23603988", "23871434", "24194938", "24657168", "8327466", "9254608", "9315650", "9467949", "9739174"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "EP400-controls-state-change-of-H1F0", "source": "EP400", "cited": 0, "target": "H1F0", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-BTG2", "source": "TP53", "cited": 14, "target": "BTG2", "pubmed": ["11814693"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRMT1-controls-expression-of-GADD45A", "source": "PRMT1", "cited": 0, "target": "GADD45A", "pubmed": ["15186775", "18250150"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-TNFRSF10A", "source": "TP53", "cited": 3, "target": "TNFRSF10A", "pubmed": ["15289308"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-TNFRSF10B", "source": "TP53", "cited": 17, "target": "TNFRSF10B", "pubmed": ["10777207", "15289308"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-ASF1A", "source": "TP53", "cited": 1, "target": "ASF1A", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-TNFRSF10C", "source": "TP53", "cited": 12, "target": "TNFRSF10C", "pubmed": ["16230375"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-FAS", "source": "TP53", "cited": 114, "target": "FAS", "pubmed": ["9841917"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "HTT-controls-state-change-of-TP73", "source": "HTT", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-TNFRSF10D", "source": "TP53", "cited": 0, "target": "TNFRSF10D", "pubmed": ["16230375"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAG1-controls-state-change-of-TP53", "source": "PRKAG1", "cited": 0, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-TRIAP1", "source": "TP53", "cited": 2, "target": "TRIAP1", "pubmed": ["15735003"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-RFWD2", "source": "TP53", "cited": 11, "target": "RFWD2", "pubmed": ["15103385"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-BCL2L14", "source": "TP53", "cited": 1, "target": "BCL2L14", "pubmed": ["15958553"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "EP400-controls-state-change-of-ASF1A", "source": "EP400", "cited": 0, "target": "ASF1A", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "EP300-controls-state-change-of-TP63", "source": "EP300", "cited": 2, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPKAPK5-controls-state-change-of-TP53", "source": "MAPKAPK5", "cited": 3, "target": "TP53", "pubmed": ["10581258", "10606744", "10656682", "10656795", "10673501", "10706102", "11042698", "11244509", "11300786", "11314044", "11423984", "11526498", "11583595", "11709713", "11850826", "11865061", "11875057", "12091386", "12519780", "12531896", "12676607", "12756247", "12860987", "12902982", "12959929", "1406679", "14665630", "14712210", "15064747", "15322239", "15355354", "15381073", "15471885", "15489221", "15843377", "16501611", "16714289", "17105820", "17245430", "17254968", "17855337", "17891183", "17967874", "17977830", "18718914", "18765533", "18769132", "19819244", "19861417", "19882354", "20024960", "20562916", "20696760", "20962272", "22030623", "22112863", "22797063", "23871434", "24657168", "9363941", "9744860", "9925639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome", "PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKACA-controls-state-change-of-TP53", "source": "PRKACA", "cited": 0, "target": "TP53", "pubmed": ["11585729", "12080066", "14640983", "15659650", "17898864", "18812399", "19819244", "19933256", "9254608", "9315650", "9571186", "9620776", "9739174"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-COL18A1", "source": "TP53", "cited": 1, "target": "COL18A1", "pubmed": ["15958553"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-BCL2", "source": "TP53", "cited": 380, "target": "BCL2", "pubmed": ["10329733"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SIK1-controls-state-change-of-TP53", "source": "SIK1", "cited": 5, "target": "TP53", "pubmed": ["19622832"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-DDIT4", "source": "TP53", "cited": 0, "target": "DDIT4", "pubmed": ["12453409"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-BCL6", "source": "TP53", "cited": 30, "target": "BCL6", "pubmed": ["16249378"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "EP300-controls-expression-of-GADD45A", "source": "EP300", "cited": 0, "target": "GADD45A", "pubmed": ["15186775", "18250150"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAB2-controls-state-change-of-TP73", "source": "PRKAB2", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "EP300-controls-state-change-of-TP53", "source": "EP300", "cited": 117, "target": "TP53", "pubmed": ["18485870"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid", "PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAB1-controls-state-change-of-TP73", "source": "PRKAB1", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-HIST1H1B", "source": "TP53", "cited": 2, "target": "HIST1H1B", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "EP300-controls-state-change-of-TP73", "source": "EP300", "cited": 1, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-HIST1H1C", "source": "TP53", "cited": 4, "target": "HIST1H1C", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-HIST1H1A", "source": "TP53", "cited": 0, "target": "HIST1H1A", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CARM1-controls-expression-of-GADD45A", "source": "CARM1", "cited": 0, "target": "GADD45A", "pubmed": ["15186775", "18250150"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-HIST1H1D", "source": "TP53", "cited": 0, "target": "HIST1H1D", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-HIST1H1E", "source": "TP53", "cited": 0, "target": "HIST1H1E", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "ZNF274-controls-state-change-of-TP53", "source": "ZNF274", "cited": 0, "target": "TP53", "pubmed": ["15668238"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "EP400-controls-state-change-of-CABIN1", "source": "EP400", "cited": 0, "target": "CABIN1", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "WRN-controls-state-change-of-TP53", "source": "WRN", "cited": 46, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-MSH2", "source": "TP53", "cited": 109, "target": "MSH2", "pubmed": ["10984493", "11350971"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-C12orf5", "source": "TP53", "cited": 0, "target": "C12orf5", "pubmed": ["16140933"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-LIF", "source": "TP53", "cited": 2, "target": "LIF", "pubmed": ["18046411"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-NLRC4", "source": "TP53", "cited": 9, "target": "NLRC4", "pubmed": ["15580302"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "KAT2B-controls-state-change-of-TP53", "source": "KAT2B", "cited": 34, "target": "TP53", "pubmed": ["17110336", "9744860", "9891054"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MAPKAPK2-controls-state-change-of-TP53", "source": "MAPKAPK2", "cited": 2, "target": "TP53", "pubmed": ["10202145", "10570149", "10656795", "10673500", "10673501", "10706102", "10710310", "10734067", "11030628", "11175334", "11244509", "11258706", "11397945", "11423984", "11447225", "11495913", "11526498", "11551930", "11583595", "11707453", "11850826", "11861384", "11875057", "11896572", "11896587", "12091386", "12384533", "12427754", "12531896", "12676607", "12756247", "12810724", "12860987", "12861053", "12902982", "12955074", "12959929", "12969974", "14517211", "14527925", "14612532", "14665630", "15064747", "15140942", "15254178", "15269203", "15322239", "15471885", "15489221", "15629715", "15671037", "15750624", "15843377", "15963507", "16377624", "16651424", "16731759", "16774943", "16818520", "17105820", "17121812", "17135248", "17245430", "17339337", "17353187", "17363488", "17698850", "17967874", "17977830", "18159951", "18593910", "18669630", "18718914", "18778462", "19819244", "19861417", "19882354", "20009884", "20024960", "20041275", "20562916", "20673369", "20696760", "20962272", "21148320", "21383696", "21454683", "21832239", "22030623", "22112863", "22285752", "22728651", "22797063", "22815859", "23798621", "23871434", "24657168", "8327466"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-PYCARD", "source": "TP53", "cited": 13, "target": "PYCARD", "pubmed": ["14730312"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-PRDM1", "source": "TP53", "cited": 6, "target": "PRDM1", "pubmed": ["17264218"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "YY1-controls-state-change-of-TP53", "source": "YY1", "cited": 36, "target": "TP53", "pubmed": ["14671306", "15210108", "9153395", "9153396", "9450543"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAA2-controls-state-change-of-TP53", "source": "PRKAA2", "cited": 5, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SP1-controls-expression-of-CCNB1", "source": "SP1", "cited": 1, "target": "CCNB1", "pubmed": ["15710382"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAA1-controls-state-change-of-TP53", "source": "PRKAA1", "cited": 1, "target": "TP53", "pubmed": ["10202145", "10570149", "10606744", "10656795", "10673500", "10673501", "10706102", "10710310", "10733583", "10734067", "11030628", "11175334", "11244509", "11258706", "11397945", "11423984", "11447225", "11495913", "11526498", "11551930", "11583595", "11707453", "11850826", "11861384", "11875057", "11883897", "11896572", "11896587", "12091386", "12384533", "12427754", "12531896", "12676607", "12756247", "12810724", "12860987", "12861053", "12902982", "12955074", "12959929", "12969974", "14517211", "14527925", "14612532", "14665630", "15064747", "15140942", "15254178", "15269203", "15322239", "15355354", "15471885", "15489221", "15542844", "15629715", "15671037", "15750624", "15843377", "15963507", "16377624", "16651424", "16731759", "16774943", "16818520", "17105820", "17121812", "17135248", "17245430", "17339337", "17353187", "17363488", "17698850", "17967874", "17977830", "18159951", "18246126", "18593910", "18669630", "18718914", "18778462", "18794113", "19819244", "19861417", "19882354", "20009884", "20024960", "20041275", "20562916", "20673369", "20696760", "20962272", "21148320", "21383696", "21386980", "21454683", "21832239", "22030623", "22112863", "22285752", "22728651", "22797063", "22815859", "23798621", "23871434", "24657168", "8327466"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-GPX1", "source": "TP53", "cited": 10, "target": "GPX1", "pubmed": ["16140933"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-state-change-of-CABIN1", "source": "TP53", "cited": 6, "target": "CABIN1", "pubmed": ["15621527", "15655109", "16901784", "17158953", "17242198", "17242207", "23964094"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["Reactome"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-DUSP1", "source": "TP53", "cited": 12, "target": "DUSP1", "pubmed": ["12890671"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-HSPA1A", "source": "TP53", "cited": 69, "target": "HSPA1A", "pubmed": ["8418500"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MDM2-controls-state-change-of-NEDD8", "source": "MDM2", "cited": 10, "target": "NEDD8", "pubmed": ["15242646"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PLK3-controls-state-change-of-TP53", "source": "PLK3", "cited": 16, "target": "TP53", "pubmed": ["10202145", "10570149", "10656795", "10673500", "10673501", "10706102", "10710310", "10734067", "11030628", "11175334", "11244509", "11258706", "11397945", "11423984", "11447225", "11495913", "11526498", "11551930", "11583595", "11707453", "11850826", "11861384", "11875057", "11896572", "11896587", "12091386", "12384533", "12427754", "12531896", "12676607", "12756247", "12810724", "12860987", "12861053", "12902982", "12955074", "12959929", "12969974", "14517211", "14527925", "14612532", "14665630", "15064747", "15140942", "15254178", "15269203", "15322239", "15471885", "15489221", "15629715", "15671037", "15750624", "15843377", "15963507", "16377624", "16651424", "16731759", "16774943", "16818520", "17105820", "17121812", "17135248", "17245430", "17339337", "17353187", "17363488", "17698850", "17967874", "17977830", "18159951", "18593910", "18669630", "18718914", "18778462", "19819244", "19861417", "19882354", "20009884", "20024960", "20041275", "20562916", "20673369", "20696760", "20962272", "21148320", "21383696", "21454683", "21832239", "22030623", "22112863", "22285752", "22728651", "22797063", "22815859", "23798621", "23871434", "24657168", "8327466"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-VCAN", "source": "TP53", "cited": 4, "target": "VCAN", "pubmed": ["12438652"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAB1-controls-state-change-of-TP53", "source": "PRKAB1", "cited": 5, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SUMO1-controls-state-change-of-TP53", "source": "SUMO1", "cited": 39, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAA1-controls-state-change-of-TP63", "source": "PRKAA1", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PPP1R13L-controls-state-change-of-TP53", "source": "PPP1R13L", "cited": 13, "target": "TP53", "pubmed": ["10581258", "11740489", "11780126", "16377624", "17349958", "17906639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "GSK3B-controls-state-change-of-TP53", "source": "GSK3B", "cited": 10, "target": "TP53", "pubmed": ["10733583", "11007451", "11585729", "12080066", "14744935", "16227590", "17898864", "19819244", "9315650", "9571186", "9620776"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite", "pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-PLK3", "source": "TP53", "cited": 16, "target": "PLK3", "pubmed": ["16140933"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAA2-controls-state-change-of-TP63", "source": "PRKAA2", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAB2-controls-state-change-of-TP53", "source": "PRKAB2", "cited": 0, "target": "TP53", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SMG1-controls-state-change-of-TP53", "source": "SMG1", "cited": 2, "target": "TP53", "pubmed": ["10202145", "10581258", "10606744", "10608806", "10611322", "10656682", "10656795", "10673501", "10706102", "10710310", "10713094", "10723129", "10733583", "10734067", "10744722", "10958792", "11030628", "11096068", "11121242", "11244509", "11258706", "11313957", "11314044", "11397945", "11423984", "11447225", "11495913", "11526498", "11546806", "11583595", "11706017", "11707453", "11709713", "11711532", "11850826", "11861384", "11865061", "11875057", "11896572", "11896587", "12021785", "12049739", "12071847", "12080066", "12082529", "12091386", "12151394", "12324477", "12384533", "12393500", "12397362", "12427754", "12511424", "12518062", "12519769", "12519780", "12531896", "12588868", "12606585", "12637545", "12676607", "12702572", "12756247", "12771937", "12776195", "12860987", "12890678", "12902982", "12939400", "12955074", "12959929", "12969974", "1406679", "14517211", "14527925", "14612532", "14665630", "14712210", "14871840", "14871926", "14968111", "15048074", "15064747", "15077171", "15078887", "15082766", "15140942", "15155458", "15159397", "15178764", "15181149", "15226429", "15254178", "15258567", "15269203", "15310764", "15322239", "15355354", "15361830", "15381073", "15456784", "15471885", "15489221", "15489892", "15533933", "15542844", "15580310", "15619621", "15665826", "15750624", "15758953", "15775976", "15782130", "15792956", "15794754", "15843377", "15866171", "15870257", "15897882", "16223874", "16247456", "16288207", "16293623", "16377624", "16397295", "16436515", "16478990", "16489034", "16501611", "16632641", "16636671", "16648554", "16651424", "16714289", "16717128", "16731759", "16774943", "16783362", "16790523", "16818505", "16818520", "16891474", "16916644", "16949371", "17045821", "17105820", "17108107", "17234789", "17245430", "17283137", "17297446", "17297454", "17332358", "17339337", "17353187", "17363488", "17371838", "17380123", "17456577", "17486112", "17535811", "17553757", "17591690", "17596534", "17609585", "17616578", "17668048", "17684018", "17698850", "17712528", "17855337", "17891183", "17936559", "17967874", "17975552", "17976513", "17977830", "18032786", "18045533", "18056442", "18097051", "18159951", "18216278", "18246126", "18272544", "18289945", "18332866", "18339864", "18345031", "18381438", "18406507", "18431490", "18449195", "18490454", "18560558", "18604166", "18614045", "18715874", "18718914", "18765533", "18769132", "18778462", "18785202", "18794113", "18818083", "18847491", "18985806", "18995830", "19085961", "19203586", "19251701", "19266268", "19303885", "19477925", "19819244", "19828454", "19861417", "19882354", "19907922", "19934315", "19962312", "20005840", "20024960", "20026654", "20080565", "20123963", "20353948", "20372057", "20562916", "20599567", "20610713", "20637859", "20661218", "20663147", "20696760", "20711232", "20931131", "20935676", "20962272", "21317932", "21383696", "21394211", "21423215", "21441950", "21465263", "21532626", "21642861", "21660965", "21757780", "21765463", "21765464", "21832239", "22002314", "22011578", "22030623", "22037398", "22055193", "22099307", "22112863", "22179839", "22285752", "22728651", "22797063", "22815859", "22975381", "23148227", "23150668", "23184057", "23678107", "23798621", "23871434", "23890999", "23982736", "24038750", "24657168", "24711418", "24820418", "24958101", "25202122", "8327466", "9363941", "9733515", "9843217", "9925639"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "DAPK1-controls-state-change-of-TP53", "source": "DAPK1", "cited": 6, "target": "TP53", "pubmed": ["10202145", "10570149", "10606744", "10656795", "10673500", "10673501", "10706102", "10710310", "10733583", "10734067", "11030628", "11175334", "11244509", "11258706", "11397945", "11423984", "11447225", "11495913", "11526498", "11551930", "11583595", "11707453", "11850826", "11861384", "11875057", "11883897", "11896572", "11896587", "12091386", "12384533", "12427754", "12531896", "12676607", "12756247", "12810724", "12860987", "12861053", "12902982", "12955074", "12959929", "12969974", "14517211", "14527925", "14612532", "14665630", "15064747", "15140942", "15254178", "15269203", "15322239", "15355354", "15471885", "15489221", "15542844", "15629715", "15671037", "15750624", "15843377", "15963507", "16377624", "16651424", "16731759", "16774943", "16818520", "17105820", "17121812", "17135248", "17245430", "17339337", "17353187", "17363488", "17698850", "17967874", "17977830", "18159951", "18246126", "18593910", "18669630", "18718914", "18778462", "18794113", "19819244", "19861417", "19882354", "20009884", "20024960", "20041275", "20562916", "20673369", "20696760", "20847049", "20851891", "20959462", "20962272", "21148320", "21383696", "21386980", "21454683", "21832239", "22030623", "22112863", "22285752", "22728651", "22797063", "22815859", "23798621", "23871434", "24657168", "8327466"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "TP53-controls-expression-of-SCN3B", "source": "TP53", "cited": 3, "target": "SCN3B", "pubmed": ["15334053"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "CDK1-controls-state-change-of-TP53", "source": "CDK1", "cited": 47, "target": "TP53", "pubmed": ["10644693", "10656795", "11078726", "11300786", "11687964", "11875057", "12021785", "12397361", "12397362", "12860987", "1406679", "14640983", "14702041", "14744935", "15302935", "15619621", "16037820", "16227590", "16552184", "16674116", "16784539", "17287340", "17906639", "17942552", "18521083", "18769132", "18847512", "19413330", "19574224", "19664995", "20363803", "20562916", "20661218", "20686112", "20808790", "20815410", "21659604", "21983960", "22011578", "22496350", "22547687", "23201157", "23312004", "25159151", "7596441", "8327466", "9254608"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "DAPK3-controls-state-change-of-TP53", "source": "DAPK3", "cited": 0, "target": "TP53", "pubmed": ["10202145", "10570149", "10656795", "10673500", "10673501", "10706102", "10710310", "10734067", "11030628", "11175334", "11244509", "11258706", "11397945", "11423984", "11447225", "11495913", "11526498", "11551930", "11583595", "11707453", "11850826", "11861384", "11875057", "11896572", "11896587", "12091386", "12384533", "12427754", "12531896", "12676607", "12756247", "12810724", "12860987", "12861053", "12902982", "12955074", "12959929", "12969974", "14517211", "14527925", "14612532", "14665630", "15064747", "15140942", "15254178", "15269203", "15322239", "15471885", "15489221", "15629715", "15671037", "15750624", "15843377", "15963507", "16377624", "16651424", "16731759", "16774943", "16818520", "17105820", "17121812", "17135248", "17245430", "17339337", "17353187", "17363488", "17698850", "17967874", "17977830", "18159951", "18593910", "18669630", "18718914", "18778462", "19819244", "19861417", "19882354", "20009884", "20024960", "20041275", "20562916", "20673369", "20696760", "20962272", "21148320", "21383696", "21454683", "21832239", "22030623", "22112863", "22285752", "22728651", "22797063", "22815859", "23798621", "23871434", "24657168", "8327466"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PhosphoSite"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "MYC-controls-expression-of-TP53", "source": "MYC", "cited": 125, "target": "TP53", "pubmed": ["8494784"], "isdirected": true, "type": "controls-expression-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAB1-controls-state-change-of-TP63", "source": "PRKAB1", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "SUMO1-controls-state-change-of-TP63", "source": "SUMO1", "cited": 1, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAA1-controls-state-change-of-TP73", "source": "PRKAA1", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "E4F1-controls-state-change-of-TP53", "source": "E4F1", "cited": 12, "target": "TP53", "pubmed": ["17110336", "9288740"], "isdirected": true, "type": "controls-state-change-of", "datasource": ["pid"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAA2-controls-state-change-of-TP73", "source": "PRKAA2", "cited": 0, "target": "TP73", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "PRKAB2-controls-state-change-of-TP63", "source": "PRKAB2", "cited": 0, "target": "TP63", "pubmed": [], "isdirected": true, "type": "controls-state-change-of", "datasource": ["PANTHER"] }, "position": {}, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }] ================================================ FILE: documentation/demos/spread-layout/index.html ================================================ cytoscape-spread.js demo

cytoscape-spread demo

================================================ FILE: documentation/demos/spread-layout/style.css ================================================ body { font-family: helvetica; font-size: 14px; } #cy { width: 100%; height: 100%; position: absolute; left: 0; top: 0; z-index: 999; } h1 { opacity: 0.5; font-size: 1em; } ================================================ FILE: documentation/demos/stripe-style/code.js ================================================ cytoscape({ container: document.getElementById('cy'), style: cytoscape.stylesheet() .selector('node') .css({ 'width': '60px', 'height': '60px', 'content': 'data(id)', 'stripe-size': '100%', 'stripe-direction': 'vertical', 'stripe-1-background-color': '#E8747C', 'stripe-1-background-size': 'mapData(foo, 0, 10, 0, 100)', 'stripe-2-background-color': '#74CBE8', 'stripe-2-background-size': 'mapData(bar, 0, 10, 0, 100)', 'stripe-3-background-color': '#74E883', 'stripe-3-background-size': 'mapData(baz, 0, 10, 0, 100)' }) .selector('edge') .css({ 'curve-style': 'bezier', 'width': 4, 'target-arrow-shape': 'triangle', 'opacity': 0.5 }) .selector(':selected') .css({ 'background-color': 'black', 'line-color': 'black', 'target-arrow-color': 'black', 'source-arrow-color': 'black', 'opacity': 1 }) .selector('.faded') .css({ 'opacity': 0.25, 'text-opacity': 0 }), elements: { nodes: [ { data: { id: 'a', foo: 3, bar: 5, baz: 2 } }, { data: { id: 'b', foo: 6, bar: 1, baz: 3 } }, { data: { id: 'c', foo: 2, bar: 3, baz: 5 } }, { data: { id: 'd', foo: 7, bar: 1, baz: 2 } }, { data: { id: 'e', foo: 2, bar: 3, baz: 5 } } ], edges: [ { data: { id: 'ae', weight: 1, source: 'a', target: 'e' } }, { data: { id: 'ab', weight: 3, source: 'a', target: 'b' } }, { data: { id: 'be', weight: 4, source: 'b', target: 'e' } }, { data: { id: 'bc', weight: 5, source: 'b', target: 'c' } }, { data: { id: 'ce', weight: 6, source: 'c', target: 'e' } }, { data: { id: 'cd', weight: 2, source: 'c', target: 'd' } }, { data: { id: 'de', weight: 7, source: 'd', target: 'e' } } ] }, layout: { name: 'circle', padding: 10 }, ready: function(){ window.cy = this; } }); ================================================ FILE: documentation/demos/stripe-style/index.html ================================================ Pie style
================================================ FILE: documentation/demos/stripe-style/style.css ================================================ body { font: 14px helvetica neue, helvetica, arial, sans-serif; } #cy { height: 100%; width: 100%; position: absolute; left: 0; top: 0; } ================================================ FILE: documentation/demos/tokyo-railways/index.html ================================================ Tokyo railways
================================================ FILE: documentation/demos/tokyo-railways/style.css ================================================ html, body { font: 14px helvetica neue, helvetica, arial, sans-serif; width: 100%; height: 100%; margin: 0; padding: 0; } #cy { position: absolute; left: 0; top: 0; right: 0; bottom: 0; background: #000; } #loading { position: absolute; left: 0; top: 50%; width: 100%; text-align: center; margin-top: -0.5em; font-size: 2em; color: #fff; } #loading.loaded { display: none; } button { font-size: 2em; background-color: #FC4C4C; color: #fff; border: 0; cursor: pointer; border-radius: 0.25em; font-family: helvetica neue, helvetica, arial, sans-serif; outline: 0; } #clear { position: absolute; right: 0; top: 0; margin: 0.25em; visibility: hidden; } body.has-start #clear { visibility: visible; } #end { display: none; } body.has-start:not(.has-end) #end { display: inline; } body.has-start:not(.has-end) #start { display: none; } body.calc #loading { display: block; } ================================================ FILE: documentation/demos/tokyo-railways/tokyo-railways.cycss ================================================ node { background-color: white; border-color: black; content: data(station_name); width: 20; height: 20; min-zoomed-font-size: 16; color: #fff; font-size: 16; z-index: 1; } node:selected, node.start, node.end { height: 60; width: 60; min-zoomed-font-size: 0; font-size: 48; border-color: #000; border-width: 10px; text-outline-color: #000; text-outline-width: 10px; z-index: 9999; } node.start, node.end { background-color: #FC4C4C; color: #FC4C4C; } edge { min-zoomed-font-size: 36; font-size: 8; color: #fff; line-color: green; width: 20; curve-style: haystack; haystack-radius: 0; opacity: 0.5; } edge[line_name] { content: data(line_name); } edge[company_type = 0] { line-color: #00FFFF; } edge[company_type = 1] { line-color: #00FF33; } edge[company_type = 2] { line-color: white; } edge[company_type = 3] { line-color: red; } edge[?is_walking] { line-color: #555; } core { active-bg-color: #fff; active-bg-opacity: 0.333; } edge.not-path { opacity: 0.1; z-index: 0; } node.not-path { opacity: 0.333; z-index: 0; } edge.path { opacity: 0.666; z-index: 0; } ================================================ FILE: documentation/demos/tokyo-railways/tokyo-railways.js ================================================ /* This demo visualises the railway stations in Tokyo (東京) as a graph. This demo gives examples of - loading elements via http request - loading style via http request - using the preset layout with predefined positions in each element - using motion blur for smoother viewport experience - using `min-zoomed-font-size` to show labels only when needed for better performance */ /* global document, fetch, window, cy, cytoscape, Promise, tippy */ document.addEventListener('DOMContentLoaded', function(){ var $ = function(sel){ return document.querySelector(sel); }; // hyperscript-like function var h = function(tag, attrs, children){ var el = document.createElement(tag); if(attrs != null && typeof attrs === typeof {}){ Object.keys(attrs).forEach(function(key){ var val = attrs[key]; el.setAttribute(key, val); }); } else if(typeof attrs === typeof []){ children = attrs; } if(children != null && typeof children === typeof []){ children.forEach(function(child){ el.appendChild(child); }); } else if(children != null && typeof children === typeof ''){ el.appendChild(document.createTextNode(children)); } return el; }; var toJson = function(obj){ return obj.json(); }; var toText = function(obj){ return obj.text(); }; // get exported json from cytoscape desktop var graphP = fetch('tokyo-railways.json').then(toJson); // also get style var styleP = fetch('tokyo-railways.cycss').then(toText); // when both graph export json and style loaded, init cy Promise.all([ graphP, styleP ]).then(initCy); function initCy( then ){ var loading = document.getElementById('loading'); var expJson = then[0]; var styleJson = then[1]; var elements = expJson.elements; loading.classList.add('loaded'); window.cy = cytoscape({ container: document.getElementById('cy'), layout: { name: 'preset' }, style: styleJson, elements: elements, motionBlur: true, selectionType: 'single', boxSelectionEnabled: false }); mendData(); bindRouters(); } function mendData(){ // because the source data doesn't connect nodes properly, use the cytoscape api to mend it: cy.startBatch(); // put nodes in bins based on name var nodes = cy.nodes(); var bin = {}; var metanames = []; for( var i = 0; i < nodes.length; i++ ){ var node = nodes[i]; var name = node.data('station_name'); var nbin = bin[ name ] = bin[ name ] || []; nbin.push( node ); if( nbin.length === 2 ){ metanames.push( name ); } } // connect all nodes together with walking edges for( var i = 0; i < metanames.length; i++ ){ var name = metanames[i]; var nbin = bin[ name ]; for( var j = 0; j < nbin.length; j++ ){ for( var k = j + 1; k < nbin.length; k++ ){ var nj = nbin[j]; var nk = nbin[k]; cy.add({ group: 'edges', data: { source: nj.id(), target: nk.id(), is_walking: true } }); //.css({ // 'line-color': 'yellow' // }); } } } cy.endBatch(); //.autolock( true ); } var start, end; var $body = document.body; function selectStart( node ){ clear(); $body.classList.add('has-start'); start = node; start.addClass('start'); } function selectEnd( node ){ $body.classList.add('has-end', 'calc'); end = node; cy.startBatch(); end.addClass('end'); setTimeout(function(){ var aStar = cy.elements().aStar({ root: start, goal: end, weight: function( e ){ if( e.data('is_walking') ){ return 0.25; // assume very little time to walk inside stn } return e.data('is_bullet') ? 1 : 3; // assume bullet is ~3x faster } }); if( !aStar.found ){ $body.classList.remove('calc'); clear(); cy.endBatch(); return; } cy.elements().not( aStar.path ).addClass('not-path'); aStar.path.addClass('path'); cy.endBatch(); $body.classList.remove('calc'); }, 300); } function clear(){ $body.classList.remove('has-start', 'has-end'); cy.elements().removeClass('path not-path start end'); } var shownTippy; function makeTippy(node, html){ removeTippy(); shownTippy = tippy( node.popperRef(), { html: html, trigger: 'manual', arrow: true, placement: 'bottom', hideOnClick: false, duration: [250, 0], theme: 'light', interactive: true, onHidden: function(tip){ if(tip != null){ tip.destroy(); } } } ).tooltips[0]; shownTippy.show(); return shownTippy; } function removeTippy(){ if(shownTippy){ shownTippy.hide(); } } function bindRouters(){ var $clear = $('#clear'); cy.on('tap pan zoom', function(e){ if(e.target === cy){ removeTippy(); } }); cy.on('tap', 'node', function(e){ var node = e.target; var start = h('button', { id: 'start' }, 'START'); start.addEventListener('click', function(){ var n = cy.$('node:selected'); selectStart( n ); removeTippy(); }); var end = h('button', { id: 'end', }, 'END'); end.addEventListener('click', function(){ var n = cy.$('node:selected'); selectEnd( n ); removeTippy(); }); var html = h('div', { className: 'select-buttons' }, [ start, end]); makeTippy(node, html); }); /* cy.nodes().qtip({ content: { text: function(){ var $ctr = $('
'); var $start = $(''); var $end = $(''); $start.on('click', function(){ var n = cy.$('node:selected'); selectStart( n ); n.qtip('api').hide(); }); $end.on('click', function(){ var n = cy.$('node:selected'); selectEnd( n ); n.qtip('api').hide(); }); $ctr.append( $start ).append( $end ); return $ctr; } }, show: { solo: true }, position: { my: 'top center', at: 'bottom center', adjust: { method: 'flip' } }, style: { classes: 'qtip-bootstrap', tip: { width: 16, height: 8 } } }); */ $clear.addEventListener('click', clear); } }); ================================================ FILE: documentation/demos/tokyo-railways/tokyo-railways.json ================================================ { "format_version" : "1.0", "generated_by" : "cytoscape-3.1.1", "target_cytoscapejs_version" : "~2.1", "data" : { "selected" : true, "__Annotations" : [ "" ], "shared_name" : "main_islands_japan(1)", "SUID" : 20760, "name" : "tokyo_only" }, "elements" : { "nodes" : [ { "data" : { "id" : "8220", "station_name" : "京成高砂", "close_ymd" : "", "lon" : 139.866875, "post" : "", "e_status" : 0, "SUID" : 8220, "station_g_cd" : 2300110, "add" : "東京都葛飾区高砂五丁目28-1", "line_cd" : 99340, "selected" : false, "open_ymd" : "", "name" : "9934001", "pref_name" : "東京都", "shared_name" : "9934001", "lat" : 35.750932, "y" : -357509.32, "x" : 1398668.75 }, "position" : { "x" : 1398668.75, "y" : -357509.32 }, "selected" : false }, { "data" : { "id" : "8221", "station_name" : "新柴又", "close_ymd" : "", "lon" : 139.879376, "post" : "125-0052", "e_status" : 0, "SUID" : 8221, "station_g_cd" : 9934002, "add" : "葛飾区柴又5-7-1", "line_cd" : 99340, "selected" : false, "open_ymd" : "", "name" : "9934002", "pref_name" : "東京都", "shared_name" : "9934002", "lat" : 35.75101, "y" : -357510.10000000003, "x" : 1398793.76 }, "position" : { "x" : 1398793.76, "y" : -357510.10000000003 }, "selected" : false }, { "data" : { "id" : "5901", "station_name" : "日本橋", "close_ymd" : "", "lon" : 139.773516, "post" : "103-0027", "e_status" : 0, "SUID" : 5901, "station_g_cd" : 2800109, "add" : "中央区日本橋1丁目", "line_cd" : 28001, "selected" : false, "open_ymd" : "", "name" : "2800109", "pref_name" : "東京都", "shared_name" : "2800109", "lat" : 35.682078000000004, "y" : -356820.78, "x" : 1397735.16 }, "position" : { "x" : 1397735.16, "y" : -356820.78 }, "selected" : false }, { "data" : { "id" : "5902", "station_name" : "京橋", "close_ymd" : "", "lon" : 139.770126, "post" : "104-0031", "e_status" : 0, "SUID" : 5902, "station_g_cd" : 2800110, "add" : "中央区京橋2-2-10", "line_cd" : 28001, "selected" : false, "open_ymd" : "", "name" : "2800110", "pref_name" : "東京都", "shared_name" : "2800110", "lat" : 35.676856, "y" : -356768.56, "x" : 1397701.26 }, "position" : { "x" : 1397701.26, "y" : -356768.56 }, "selected" : false }, { "data" : { "id" : "5903", "station_name" : "銀座", "close_ymd" : "", "lon" : 139.76396499999998, "post" : "104-0061", "e_status" : 0, "SUID" : 5903, "station_g_cd" : 2800111, "add" : "中央区銀座4-1-2", "line_cd" : 28001, "selected" : false, "open_ymd" : "", "name" : "2800111", "pref_name" : "東京都", "shared_name" : "2800111", "lat" : 35.671989, "y" : -356719.89, "x" : 1397639.65 }, "position" : { "x" : 1397639.65, "y" : -356719.89 }, "selected" : false }, { "data" : { "id" : "5904", "station_name" : "新橋", "close_ymd" : "", "lon" : 139.758432, "post" : "", "e_status" : 0, "SUID" : 5904, "station_g_cd" : 1130102, "add" : "東京都港区新橋二丁目17-5", "line_cd" : 28001, "selected" : false, "open_ymd" : "", "name" : "2800112", "pref_name" : "東京都", "shared_name" : "2800112", "lat" : 35.667434, "y" : -356674.34, "x" : 1397584.32 }, "position" : { "x" : 1397584.32, "y" : -356674.34 }, "selected" : false }, { "data" : { "id" : "5905", "station_name" : "虎ノ門", "close_ymd" : "", "lon" : 139.749832, "post" : "105-0001", "e_status" : 0, "SUID" : 5905, "station_g_cd" : 2800113, "add" : "港区虎ノ門1-1-21", "line_cd" : 28001, "selected" : false, "open_ymd" : "", "name" : "2800113", "pref_name" : "東京都", "shared_name" : "2800113", "lat" : 35.670235999999996, "y" : -356702.3599999999, "x" : 1397498.32 }, "position" : { "x" : 1397498.32, "y" : -356702.3599999999 }, "selected" : false }, { "data" : { "id" : "5906", "station_name" : "溜池山王", "close_ymd" : "", "lon" : 139.741419, "post" : "100-0014", "e_status" : 0, "SUID" : 5906, "station_g_cd" : 2800114, "add" : "千代田区永田町2-11-1", "line_cd" : 28001, "selected" : false, "open_ymd" : "", "name" : "2800114", "pref_name" : "東京都", "shared_name" : "2800114", "lat" : 35.673621000000004, "y" : -356736.21, "x" : 1397414.1900000002 }, "position" : { "x" : 1397414.1900000002, "y" : -356736.21 }, "selected" : false }, { "data" : { "id" : "5907", "station_name" : "赤坂見附", "close_ymd" : "", "lon" : 139.737047, "post" : "107-0052", "e_status" : 0, "SUID" : 5907, "station_g_cd" : 2800115, "add" : "港区赤坂3-1-6", "line_cd" : 28001, "selected" : false, "open_ymd" : "", "name" : "2800115", "pref_name" : "東京都", "shared_name" : "2800115", "lat" : 35.677021, "y" : -356770.21, "x" : 1397370.47 }, "position" : { "x" : 1397370.47, "y" : -356770.21 }, "selected" : false }, { "data" : { "id" : "5908", "station_name" : "青山一丁目", "close_ymd" : "", "lon" : 139.72415900000001, "post" : "107-0062", "e_status" : 0, "SUID" : 5908, "station_g_cd" : 2800116, "add" : "港区南青山1-1-19", "line_cd" : 28001, "selected" : false, "open_ymd" : "", "name" : "2800116", "pref_name" : "東京都", "shared_name" : "2800116", "lat" : 35.672765000000005, "y" : -356727.6500000001, "x" : 1397241.59 }, "position" : { "x" : 1397241.59, "y" : -356727.6500000001 }, "selected" : false }, { "data" : { "id" : "5893", "station_name" : "浅草", "close_ymd" : "", "lon" : 139.79759199999998, "post" : "", "e_status" : 0, "SUID" : 5893, "station_g_cd" : 2100201, "add" : "東京都台東区", "line_cd" : 28001, "selected" : false, "open_ymd" : "", "name" : "2800101", "pref_name" : "東京都", "shared_name" : "2800101", "lat" : 35.710733000000005, "y" : -357107.3300000001, "x" : 1397975.9199999997 }, "position" : { "x" : 1397975.9199999997, "y" : -357107.3300000001 }, "selected" : false }, { "data" : { "id" : "5894", "station_name" : "田原町", "close_ymd" : "", "lon" : 139.790897, "post" : "111-0035", "e_status" : 0, "SUID" : 5894, "station_g_cd" : 2800102, "add" : "台東区西浅草1-1-18", "line_cd" : 28001, "selected" : false, "open_ymd" : "", "name" : "2800102", "pref_name" : "東京都", "shared_name" : "2800102", "lat" : 35.709897, "y" : -357098.97, "x" : 1397908.97 }, "position" : { "x" : 1397908.97, "y" : -357098.97 }, "selected" : false }, { "data" : { "id" : "5895", "station_name" : "稲荷町", "close_ymd" : "", "lon" : 139.782593, "post" : "110-0015", "e_status" : 0, "SUID" : 5895, "station_g_cd" : 2800103, "add" : "台東区東上野3-33-11", "line_cd" : 28001, "selected" : false, "open_ymd" : "", "name" : "2800103", "pref_name" : "東京都", "shared_name" : "2800103", "lat" : 35.711273, "y" : -357112.73, "x" : 1397825.93 }, "position" : { "x" : 1397825.93, "y" : -357112.73 }, "selected" : false }, { "data" : { "id" : "5896", "station_name" : "上野", "close_ymd" : "", "lon" : 139.777122, "post" : "", "e_status" : 0, "SUID" : 5896, "station_g_cd" : 1130220, "add" : "東京都台東区東上野三丁目19-6", "line_cd" : 28001, "selected" : false, "open_ymd" : "", "name" : "2800104", "pref_name" : "東京都", "shared_name" : "2800104", "lat" : 35.711482000000004, "y" : -357114.82000000007, "x" : 1397771.22 }, "position" : { "x" : 1397771.22, "y" : -357114.82000000007 }, "selected" : false }, { "data" : { "id" : "5897", "station_name" : "上野広小路", "close_ymd" : "", "lon" : 139.772877, "post" : "110-0005", "e_status" : 0, "SUID" : 5897, "station_g_cd" : 1130221, "add" : "台東区上野3-29-3", "line_cd" : 28001, "selected" : false, "open_ymd" : "", "name" : "2800105", "pref_name" : "東京都", "shared_name" : "2800105", "lat" : 35.707679999999996, "y" : -357076.8, "x" : 1397728.77 }, "position" : { "x" : 1397728.77, "y" : -357076.8 }, "selected" : false }, { "data" : { "id" : "5898", "station_name" : "末広町", "close_ymd" : "", "lon" : 139.77171299999998, "post" : "101-0021", "e_status" : 0, "SUID" : 5898, "station_g_cd" : 2800106, "add" : "千代田区外神田4-7-3", "line_cd" : 28001, "selected" : false, "open_ymd" : "", "name" : "2800106", "pref_name" : "東京都", "shared_name" : "2800106", "lat" : 35.702971999999995, "y" : -357029.72, "x" : 1397717.1299999997 }, "position" : { "x" : 1397717.1299999997, "y" : -357029.72 }, "selected" : false }, { "data" : { "id" : "5899", "station_name" : "神田", "close_ymd" : "", "lon" : 139.770899, "post" : "", "e_status" : 0, "SUID" : 5899, "station_g_cd" : 1130223, "add" : "東京都千代田区神田須田町一丁目16", "line_cd" : 28001, "selected" : false, "open_ymd" : "", "name" : "2800107", "pref_name" : "東京都", "shared_name" : "2800107", "lat" : 35.693587, "y" : -356935.87, "x" : 1397708.9899999998 }, "position" : { "x" : 1397708.9899999998, "y" : -356935.87 }, "selected" : false }, { "data" : { "id" : "5900", "station_name" : "三越前", "close_ymd" : "", "lon" : 139.773594, "post" : "103-0022", "e_status" : 0, "SUID" : 5900, "station_g_cd" : 1131402, "add" : "中央区日本橋室町1-8-1", "line_cd" : 28001, "selected" : false, "open_ymd" : "", "name" : "2800108", "pref_name" : "東京都", "shared_name" : "2800108", "lat" : 35.687101, "y" : -356871.01, "x" : 1397735.94 }, "position" : { "x" : 1397735.94, "y" : -356871.01 }, "selected" : false }, { "data" : { "id" : "5871", "station_name" : "羽田空港国際線ターミナル", "close_ymd" : "", "lon" : 139.768968, "post" : "144-0041", "e_status" : 0, "SUID" : 5871, "station_g_cd" : 2700207, "add" : "東京都大田区羽田空港二丁目6番5号", "line_cd" : 27002, "selected" : false, "open_ymd" : "2010-10-21", "name" : "2700207", "pref_name" : "東京都", "shared_name" : "2700207", "lat" : 35.544676, "y" : -355446.76, "x" : 1397689.68 }, "position" : { "x" : 1397689.68, "y" : -355446.76 }, "selected" : false }, { "data" : { "id" : "5872", "station_name" : "羽田空港", "close_ymd" : "", "lon" : 139.785962, "post" : "144-0041", "e_status" : 0, "SUID" : 5872, "station_g_cd" : 2700206, "add" : "大田区羽田空港3-3-4", "line_cd" : 27002, "selected" : false, "open_ymd" : "", "name" : "2700206", "pref_name" : "東京都", "shared_name" : "2700206", "lat" : 35.549809, "y" : -355498.09, "x" : 1397859.62 }, "position" : { "x" : 1397859.62, "y" : -355498.09 }, "selected" : false }, { "data" : { "id" : "5869", "station_name" : "穴守稲荷", "close_ymd" : "", "lon" : 139.746669, "post" : "144-0043", "e_status" : 0, "SUID" : 5869, "station_g_cd" : 2700204, "add" : "大田区羽田4-6-11", "line_cd" : 27002, "selected" : false, "open_ymd" : "", "name" : "2700204", "pref_name" : "東京都", "shared_name" : "2700204", "lat" : 35.550326, "y" : -355503.26, "x" : 1397466.69 }, "position" : { "x" : 1397466.69, "y" : -355503.26 }, "selected" : false }, { "data" : { "id" : "5870", "station_name" : "天空橋", "close_ymd" : "", "lon" : 139.75423, "post" : "144-0041", "e_status" : 0, "SUID" : 5870, "station_g_cd" : 2700205, "add" : "大田区羽田空港1-1-2", "line_cd" : 27002, "selected" : false, "open_ymd" : "", "name" : "2700205", "pref_name" : "東京都", "shared_name" : "2700205", "lat" : 35.548908000000004, "y" : -355489.08, "x" : 1397542.3 }, "position" : { "x" : 1397542.3, "y" : -355489.08 }, "selected" : false }, { "data" : { "id" : "5867", "station_name" : "糀谷", "close_ymd" : "", "lon" : 139.72961999999998, "post" : "144-0034", "e_status" : 0, "SUID" : 5867, "station_g_cd" : 2700202, "add" : "大田区西糀谷4-13-17", "line_cd" : 27002, "selected" : false, "open_ymd" : "", "name" : "2700202", "pref_name" : "東京都", "shared_name" : "2700202", "lat" : 35.5545, "y" : -355545.0, "x" : 1397296.1999999997 }, "position" : { "x" : 1397296.1999999997, "y" : -355545.0 }, "selected" : false }, { "data" : { "id" : "5868", "station_name" : "大鳥居", "close_ymd" : "", "lon" : 139.73935600000002, "post" : "144-0034", "e_status" : 0, "SUID" : 5868, "station_g_cd" : 2700203, "add" : "大田区西糀谷3-37-18", "line_cd" : 27002, "selected" : false, "open_ymd" : "", "name" : "2700203", "pref_name" : "東京都", "shared_name" : "2700203", "lat" : 35.552531, "y" : -355525.31, "x" : 1397393.56 }, "position" : { "x" : 1397393.56, "y" : -355525.31 }, "selected" : false }, { "data" : { "id" : "5866", "station_name" : "京急蒲田", "close_ymd" : "", "lon" : 139.723681, "post" : "144-0052", "e_status" : 0, "SUID" : 5866, "station_g_cd" : 2700112, "add" : "大田区蒲田4-50-10", "line_cd" : 27002, "selected" : false, "open_ymd" : "", "name" : "2700201", "pref_name" : "東京都", "shared_name" : "2700201", "lat" : 35.560796, "y" : -355607.96, "x" : 1397236.81 }, "position" : { "x" : 1397236.81, "y" : -355607.96 }, "selected" : false }, { "data" : { "id" : "5826", "station_name" : "梅屋敷", "close_ymd" : "", "lon" : 139.728266, "post" : "144-0052", "e_status" : 0, "SUID" : 5826, "station_g_cd" : 2700111, "add" : "大田区蒲田2-28-1", "line_cd" : 27001, "selected" : false, "open_ymd" : "", "name" : "2700111", "pref_name" : "東京都", "shared_name" : "2700111", "lat" : 35.566873, "y" : -355668.73000000004, "x" : 1397282.66 }, "position" : { "x" : 1397282.66, "y" : -355668.73000000004 }, "selected" : false }, { "data" : { "id" : "5825", "station_name" : "大森町", "close_ymd" : "", "lon" : 139.732027, "post" : "143-0015", "e_status" : 0, "SUID" : 5825, "station_g_cd" : 2700110, "add" : "大田区大森西3-24-7", "line_cd" : 27001, "selected" : false, "open_ymd" : "", "name" : "2700110", "pref_name" : "東京都", "shared_name" : "2700110", "lat" : 35.572431, "y" : -355724.31, "x" : 1397320.2699999998 }, "position" : { "x" : 1397320.2699999998, "y" : -355724.31 }, "selected" : false }, { "data" : { "id" : "5828", "station_name" : "雑色", "close_ymd" : "", "lon" : 139.715005, "post" : "144-0055", "e_status" : 0, "SUID" : 5828, "station_g_cd" : 2700113, "add" : "大田区仲六郷2-42-1", "line_cd" : 27001, "selected" : false, "open_ymd" : "", "name" : "2700113", "pref_name" : "東京都", "shared_name" : "2700113", "lat" : 35.549725, "y" : -355497.25, "x" : 1397150.0499999998 }, "position" : { "x" : 1397150.0499999998, "y" : -355497.25 }, "selected" : false }, { "data" : { "id" : "5827", "station_name" : "京急蒲田", "close_ymd" : "", "lon" : 139.723681, "post" : "144-0052", "e_status" : 0, "SUID" : 5827, "station_g_cd" : 2700112, "add" : "大田区蒲田4-50-10", "line_cd" : 27001, "selected" : false, "open_ymd" : "", "name" : "2700112", "pref_name" : "東京都", "shared_name" : "2700112", "lat" : 35.560796, "y" : -355607.96, "x" : 1397236.81 }, "position" : { "x" : 1397236.81, "y" : -355607.96 }, "selected" : false }, { "data" : { "id" : "5822", "station_name" : "立会川", "close_ymd" : "", "lon" : 139.738886, "post" : "140-0011", "e_status" : 0, "SUID" : 5822, "station_g_cd" : 2700107, "add" : "品川区東大井2-23-1", "line_cd" : 27001, "selected" : false, "open_ymd" : "", "name" : "2700107", "pref_name" : "東京都", "shared_name" : "2700107", "lat" : 35.598489, "y" : -355984.89, "x" : 1397388.86 }, "position" : { "x" : 1397388.86, "y" : -355984.89 }, "selected" : false }, { "data" : { "id" : "5821", "station_name" : "鮫洲", "close_ymd" : "", "lon" : 139.742227, "post" : "140-0011", "e_status" : 0, "SUID" : 5821, "station_g_cd" : 2700106, "add" : "品川区東大井1-2-20", "line_cd" : 27001, "selected" : false, "open_ymd" : "", "name" : "2700106", "pref_name" : "東京都", "shared_name" : "2700106", "lat" : 35.604977000000005, "y" : -356049.7700000001, "x" : 1397422.2700000003 }, "position" : { "x" : 1397422.2700000003, "y" : -356049.7700000001 }, "selected" : false }, { "data" : { "id" : "5824", "station_name" : "平和島", "close_ymd" : "", "lon" : 139.73491, "post" : "143-0016", "e_status" : 0, "SUID" : 5824, "station_g_cd" : 2700109, "add" : "大田区大森北6-13-11", "line_cd" : 27001, "selected" : false, "open_ymd" : "", "name" : "2700109", "pref_name" : "東京都", "shared_name" : "2700109", "lat" : 35.57868, "y" : -355786.8, "x" : 1397349.1 }, "position" : { "x" : 1397349.1, "y" : -355786.8 }, "selected" : false }, { "data" : { "id" : "5823", "station_name" : "大森海岸", "close_ymd" : "", "lon" : 139.73543999999998, "post" : "140-0013", "e_status" : 0, "SUID" : 5823, "station_g_cd" : 2700108, "add" : "品川区南大井3-32-1", "line_cd" : 27001, "selected" : false, "open_ymd" : "", "name" : "2700108", "pref_name" : "東京都", "shared_name" : "2700108", "lat" : 35.587576, "y" : -355875.76, "x" : 1397354.4 }, "position" : { "x" : 1397354.4, "y" : -355875.76 }, "selected" : false }, { "data" : { "id" : "5818", "station_name" : "北品川", "close_ymd" : "", "lon" : 139.739191, "post" : "140-0001", "e_status" : 0, "SUID" : 5818, "station_g_cd" : 2700103, "add" : "品川区北品川1-1-4", "line_cd" : 27001, "selected" : false, "open_ymd" : "", "name" : "2700103", "pref_name" : "東京都", "shared_name" : "2700103", "lat" : 35.622458, "y" : -356224.58, "x" : 1397391.9100000001 }, "position" : { "x" : 1397391.9100000001, "y" : -356224.58 }, "selected" : false }, { "data" : { "id" : "5817", "station_name" : "品川", "close_ymd" : "", "lon" : 139.73809, "post" : "", "e_status" : 0, "SUID" : 5817, "station_g_cd" : 1130103, "add" : "東京都港区高輪三丁目26-26", "line_cd" : 27001, "selected" : false, "open_ymd" : "", "name" : "2700102", "pref_name" : "東京都", "shared_name" : "2700102", "lat" : 35.628284, "y" : -356282.84, "x" : 1397380.9 }, "position" : { "x" : 1397380.9, "y" : -356282.84 }, "selected" : false }, { "data" : { "id" : "5820", "station_name" : "青物横丁", "close_ymd" : "", "lon" : 139.74295800000002, "post" : "140-0004", "e_status" : 0, "SUID" : 5820, "station_g_cd" : 2700105, "add" : "品川区南品川3-1-20", "line_cd" : 27001, "selected" : false, "open_ymd" : "", "name" : "2700105", "pref_name" : "東京都", "shared_name" : "2700105", "lat" : 35.609351000000004, "y" : -356093.51, "x" : 1397429.58 }, "position" : { "x" : 1397429.58, "y" : -356093.51 }, "selected" : false }, { "data" : { "id" : "5819", "station_name" : "新馬場", "close_ymd" : "", "lon" : 139.741366, "post" : "140-0001", "e_status" : 0, "SUID" : 5819, "station_g_cd" : 2700104, "add" : "品川区北品川2-18-1", "line_cd" : 27001, "selected" : false, "open_ymd" : "", "name" : "2700104", "pref_name" : "東京都", "shared_name" : "2700104", "lat" : 35.61762, "y" : -356176.2, "x" : 1397413.66 }, "position" : { "x" : 1397413.66, "y" : -356176.2 }, "selected" : false }, { "data" : { "id" : "5816", "station_name" : "泉岳寺", "close_ymd" : "", "lon" : 139.74002, "post" : "108-0074", "e_status" : 0, "SUID" : 5816, "station_g_cd" : 2700101, "add" : "港区高輪2-16-34", "line_cd" : 27001, "selected" : false, "open_ymd" : "", "name" : "2700101", "pref_name" : "東京都", "shared_name" : "2700101", "lat" : 35.638692, "y" : -356386.92, "x" : 1397400.2 }, "position" : { "x" : 1397400.2, "y" : -356386.92 }, "selected" : false }, { "data" : { "id" : "5829", "station_name" : "六郷土手", "close_ymd" : "", "lon" : 139.7076, "post" : "144-0055", "e_status" : 0, "SUID" : 5829, "station_g_cd" : 2700114, "add" : "大田区仲六郷4-27-11", "line_cd" : 27001, "selected" : false, "open_ymd" : "", "name" : "2700114", "pref_name" : "東京都", "shared_name" : "2700114", "lat" : 35.540577, "y" : -355405.77, "x" : 1397076.0000000002 }, "position" : { "x" : 1397076.0000000002, "y" : -355405.77 }, "selected" : false }, { "data" : { "id" : "5796", "station_name" : "多摩川", "close_ymd" : "", "lon" : 139.668723, "post" : "145-0071", "e_status" : 0, "SUID" : 5796, "station_g_cd" : 2600109, "add" : "大田区田園調布1-53-8", "line_cd" : 26006, "selected" : false, "open_ymd" : "", "name" : "2600601", "pref_name" : "東京都", "shared_name" : "2600601", "lat" : 35.589591, "y" : -355895.91, "x" : 1396687.23 }, "position" : { "x" : 1396687.23, "y" : -355895.91 }, "selected" : false }, { "data" : { "id" : "5795", "station_name" : "蒲田", "close_ymd" : "", "lon" : 139.714626, "post" : "144-0052", "e_status" : 0, "SUID" : 5795, "station_g_cd" : 1133230, "add" : "大田区蒲田5丁目", "line_cd" : 26005, "selected" : false, "open_ymd" : "", "name" : "2600515", "pref_name" : "東京都", "shared_name" : "2600515", "lat" : 35.561766999999996, "y" : -355617.67, "x" : 1397146.26 }, "position" : { "x" : 1397146.26, "y" : -355617.67 }, "selected" : false }, { "data" : { "id" : "5794", "station_name" : "蓮沼", "close_ymd" : "", "lon" : 139.708544, "post" : "144-0051", "e_status" : 0, "SUID" : 5794, "station_g_cd" : 2600514, "add" : "大田区西蒲田7-17-1", "line_cd" : 26005, "selected" : false, "open_ymd" : "", "name" : "2600514", "pref_name" : "東京都", "shared_name" : "2600514", "lat" : 35.564173, "y" : -355641.73, "x" : 1397085.44 }, "position" : { "x" : 1397085.44, "y" : -355641.73 }, "selected" : false }, { "data" : { "id" : "5793", "station_name" : "池上", "close_ymd" : "", "lon" : 139.702822, "post" : "146-0082", "e_status" : 0, "SUID" : 5793, "station_g_cd" : 2600513, "add" : "大田区池上6-3-10", "line_cd" : 26005, "selected" : false, "open_ymd" : "", "name" : "2600513", "pref_name" : "東京都", "shared_name" : "2600513", "lat" : 35.572025, "y" : -355720.24999999994, "x" : 1397028.22 }, "position" : { "x" : 1397028.22, "y" : -355720.24999999994 }, "selected" : false }, { "data" : { "id" : "5792", "station_name" : "千鳥町", "close_ymd" : "", "lon" : 139.69142, "post" : "146-0083", "e_status" : 0, "SUID" : 5792, "station_g_cd" : 2600512, "add" : "大田区千鳥1-20-1", "line_cd" : 26005, "selected" : false, "open_ymd" : "", "name" : "2600512", "pref_name" : "東京都", "shared_name" : "2600512", "lat" : 35.572983, "y" : -355729.83, "x" : 1396914.2 }, "position" : { "x" : 1396914.2, "y" : -355729.83 }, "selected" : false }, { "data" : { "id" : "5791", "station_name" : "久が原", "close_ymd" : "", "lon" : 139.685678, "post" : "146-0084", "e_status" : 0, "SUID" : 5791, "station_g_cd" : 2600511, "add" : "大田区南久が原2-6-10", "line_cd" : 26005, "selected" : false, "open_ymd" : "", "name" : "2600511", "pref_name" : "東京都", "shared_name" : "2600511", "lat" : 35.579499, "y" : -355794.99, "x" : 1396856.78 }, "position" : { "x" : 1396856.78, "y" : -355794.99 }, "selected" : false }, { "data" : { "id" : "5790", "station_name" : "御嶽山", "close_ymd" : "", "lon" : 139.682473, "post" : "145-0073", "e_status" : 0, "SUID" : 5790, "station_g_cd" : 2600510, "add" : "大田区北嶺町32-17", "line_cd" : 26005, "selected" : false, "open_ymd" : "", "name" : "2600510", "pref_name" : "東京都", "shared_name" : "2600510", "lat" : 35.585236, "y" : -355852.36000000004, "x" : 1396824.73 }, "position" : { "x" : 1396824.73, "y" : -355852.36000000004 }, "selected" : false }, { "data" : { "id" : "5789", "station_name" : "雪が谷大塚", "close_ymd" : "", "lon" : 139.681083, "post" : "145-0066", "e_status" : 0, "SUID" : 5789, "station_g_cd" : 2600509, "add" : "大田区南雪谷2-2-16", "line_cd" : 26005, "selected" : false, "open_ymd" : "", "name" : "2600509", "pref_name" : "東京都", "shared_name" : "2600509", "lat" : 35.592038, "y" : -355920.38, "x" : 1396810.83 }, "position" : { "x" : 1396810.83, "y" : -355920.38 }, "selected" : false }, { "data" : { "id" : "5788", "station_name" : "石川台", "close_ymd" : "", "lon" : 139.68506299999999, "post" : "145-0065", "e_status" : 0, "SUID" : 5788, "station_g_cd" : 2600508, "add" : "大田区東雪谷2-23-1", "line_cd" : 26005, "selected" : false, "open_ymd" : "", "name" : "2600508", "pref_name" : "東京都", "shared_name" : "2600508", "lat" : 35.596888, "y" : -355968.88, "x" : 1396850.63 }, "position" : { "x" : 1396850.63, "y" : -355968.88 }, "selected" : false }, { "data" : { "id" : "5787", "station_name" : "洗足池", "close_ymd" : "", "lon" : 139.690896, "post" : "145-0065", "e_status" : 0, "SUID" : 5787, "station_g_cd" : 2600507, "add" : "大田区東雪谷1-1-6", "line_cd" : 26005, "selected" : false, "open_ymd" : "", "name" : "2600507", "pref_name" : "東京都", "shared_name" : "2600507", "lat" : 35.599647999999995, "y" : -355996.4799999999, "x" : 1396908.9600000002 }, "position" : { "x" : 1396908.9600000002, "y" : -355996.4799999999 }, "selected" : false }, { "data" : { "id" : "5786", "station_name" : "長原", "close_ymd" : "", "lon" : 139.697881, "post" : "145-0064", "e_status" : 0, "SUID" : 5786, "station_g_cd" : 2600506, "add" : "大田区上池台1-10-10", "line_cd" : 26005, "selected" : false, "open_ymd" : "", "name" : "2600506", "pref_name" : "東京都", "shared_name" : "2600506", "lat" : 35.60219, "y" : -356021.9, "x" : 1396978.81 }, "position" : { "x" : 1396978.81, "y" : -356021.9 }, "selected" : false }, { "data" : { "id" : "5785", "station_name" : "旗の台", "close_ymd" : "", "lon" : 139.70228600000002, "post" : "142-0064", "e_status" : 0, "SUID" : 5785, "station_g_cd" : 2600406, "add" : "品川区旗の台2-13-1", "line_cd" : 26005, "selected" : false, "open_ymd" : "", "name" : "2600505", "pref_name" : "東京都", "shared_name" : "2600505", "lat" : 35.604923, "y" : -356049.23, "x" : 1397022.86 }, "position" : { "x" : 1397022.86, "y" : -356049.23 }, "selected" : false }, { "data" : { "id" : "5784", "station_name" : "荏原中延", "close_ymd" : "", "lon" : 139.712196, "post" : "142-0053", "e_status" : 0, "SUID" : 5784, "station_g_cd" : 2600504, "add" : "品川区中延2-8-1", "line_cd" : 26005, "selected" : false, "open_ymd" : "", "name" : "2600504", "pref_name" : "東京都", "shared_name" : "2600504", "lat" : 35.610056, "y" : -356100.56, "x" : 1397121.96 }, "position" : { "x" : 1397121.96, "y" : -356100.56 }, "selected" : false }, { "data" : { "id" : "5783", "station_name" : "戸越銀座", "close_ymd" : "", "lon" : 139.714862, "post" : "142-0051", "e_status" : 0, "SUID" : 5783, "station_g_cd" : 2600503, "add" : "品川区平塚2-16-1", "line_cd" : 26005, "selected" : false, "open_ymd" : "", "name" : "2600503", "pref_name" : "東京都", "shared_name" : "2600503", "lat" : 35.615928000000004, "y" : -356159.28, "x" : 1397148.62 }, "position" : { "x" : 1397148.62, "y" : -356159.28 }, "selected" : false }, { "data" : { "id" : "5782", "station_name" : "大崎広小路", "close_ymd" : "", "lon" : 139.72233899999998, "post" : "141-0032", "e_status" : 0, "SUID" : 5782, "station_g_cd" : 2600502, "add" : "品川区大崎4-1-1", "line_cd" : 26005, "selected" : false, "open_ymd" : "", "name" : "2600502", "pref_name" : "東京都", "shared_name" : "2600502", "lat" : 35.622244, "y" : -356222.44, "x" : 1397223.3899999997 }, "position" : { "x" : 1397223.3899999997, "y" : -356222.44 }, "selected" : false }, { "data" : { "id" : "5781", "station_name" : "五反田", "close_ymd" : "", "lon" : 139.724175, "post" : "", "e_status" : 0, "SUID" : 5781, "station_g_cd" : 1130202, "add" : "東京都品川区東五反田二丁目1-1", "line_cd" : 26005, "selected" : false, "open_ymd" : "", "name" : "2600501", "pref_name" : "東京都", "shared_name" : "2600501", "lat" : 35.625262, "y" : -356252.62, "x" : 1397241.75 }, "position" : { "x" : 1397241.75, "y" : -356252.62 }, "selected" : false }, { "data" : { "id" : "5811", "station_name" : "松原", "close_ymd" : "", "lon" : 139.642, "post" : "156-0043", "e_status" : 0, "SUID" : 5811, "station_g_cd" : 2600709, "add" : "世田谷区松原4-10-8", "line_cd" : 26007, "selected" : false, "open_ymd" : "", "name" : "2600709", "pref_name" : "東京都", "shared_name" : "2600709", "lat" : 35.660047999999996, "y" : -356600.48, "x" : 1396420.0 }, "position" : { "x" : 1396420.0, "y" : -356600.48 }, "selected" : false }, { "data" : { "id" : "5812", "station_name" : "下高井戸", "close_ymd" : "", "lon" : 139.641372, "post" : "156-0043", "e_status" : 0, "SUID" : 5812, "station_g_cd" : 2400107, "add" : "世田谷区松原3-29-17", "line_cd" : 26007, "selected" : false, "open_ymd" : "", "name" : "2600710", "pref_name" : "東京都", "shared_name" : "2600710", "lat" : 35.66615, "y" : -356661.5, "x" : 1396413.72 }, "position" : { "x" : 1396413.72, "y" : -356661.5 }, "selected" : false }, { "data" : { "id" : "5809", "station_name" : "宮の坂", "close_ymd" : "", "lon" : 139.64494, "post" : "156-0051", "e_status" : 0, "SUID" : 5809, "station_g_cd" : 2600707, "add" : "世田谷区宮坂1-24-7", "line_cd" : 26007, "selected" : false, "open_ymd" : "", "name" : "2600707", "pref_name" : "東京都", "shared_name" : "2600707", "lat" : 35.647508, "y" : -356475.08, "x" : 1396449.4 }, "position" : { "x" : 1396449.4, "y" : -356475.08 }, "selected" : false }, { "data" : { "id" : "5810", "station_name" : "山下", "close_ymd" : "", "lon" : 139.646509, "post" : "154-0021", "e_status" : 0, "SUID" : 5810, "station_g_cd" : 2500110, "add" : "世田谷区豪徳寺1-44-5", "line_cd" : 26007, "selected" : false, "open_ymd" : "", "name" : "2600708", "pref_name" : "東京都", "shared_name" : "2600708", "lat" : 35.653844, "y" : -356538.44, "x" : 1396465.09 }, "position" : { "x" : 1396465.09, "y" : -356538.44 }, "selected" : false }, { "data" : { "id" : "5807", "station_name" : "世田谷", "close_ymd" : "", "lon" : 139.650945, "post" : "154-0017", "e_status" : 0, "SUID" : 5807, "station_g_cd" : 2600705, "add" : "世田谷区世田谷4-9-6", "line_cd" : 26007, "selected" : false, "open_ymd" : "", "name" : "2600705", "pref_name" : "東京都", "shared_name" : "2600705", "lat" : 35.643564000000005, "y" : -356435.6400000001, "x" : 1396509.4500000002 }, "position" : { "x" : 1396509.4500000002, "y" : -356435.6400000001 }, "selected" : false }, { "data" : { "id" : "5808", "station_name" : "上町", "close_ymd" : "", "lon" : 139.646276, "post" : "154-0017", "e_status" : 0, "SUID" : 5808, "station_g_cd" : 2600706, "add" : "世田谷区世田谷3-4-3", "line_cd" : 26007, "selected" : false, "open_ymd" : "", "name" : "2600706", "pref_name" : "東京都", "shared_name" : "2600706", "lat" : 35.643656, "y" : -356436.56, "x" : 1396462.76 }, "position" : { "x" : 1396462.76, "y" : -356436.56 }, "selected" : false }, { "data" : { "id" : "5805", "station_name" : "若林", "close_ymd" : "", "lon" : 139.65991100000002, "post" : "154-0023", "e_status" : 0, "SUID" : 5805, "station_g_cd" : 2600703, "add" : "世田谷区若林4-3-15", "line_cd" : 26007, "selected" : false, "open_ymd" : "", "name" : "2600703", "pref_name" : "東京都", "shared_name" : "2600703", "lat" : 35.645933, "y" : -356459.33, "x" : 1396599.1100000003 }, "position" : { "x" : 1396599.1100000003, "y" : -356459.33 }, "selected" : false }, { "data" : { "id" : "5806", "station_name" : "松陰神社前", "close_ymd" : "", "lon" : 139.655211, "post" : "154-0023", "e_status" : 0, "SUID" : 5806, "station_g_cd" : 2600704, "add" : "世田谷区若林4-21-16", "line_cd" : 26007, "selected" : false, "open_ymd" : "", "name" : "2600704", "pref_name" : "東京都", "shared_name" : "2600704", "lat" : 35.643947, "y" : -356439.47, "x" : 1396552.11 }, "position" : { "x" : 1396552.11, "y" : -356439.47 }, "selected" : false }, { "data" : { "id" : "5803", "station_name" : "三軒茶屋", "close_ymd" : "", "lon" : 139.670156, "post" : "154-0004", "e_status" : 0, "SUID" : 5803, "station_g_cd" : 2600303, "add" : "世田谷区太子堂4-21-1", "line_cd" : 26007, "selected" : false, "open_ymd" : "", "name" : "2600701", "pref_name" : "東京都", "shared_name" : "2600701", "lat" : 35.643716, "y" : -356437.16, "x" : 1396701.5599999998 }, "position" : { "x" : 1396701.5599999998, "y" : -356437.16 }, "selected" : false }, { "data" : { "id" : "5804", "station_name" : "西太子堂", "close_ymd" : "", "lon" : 139.666382, "post" : "154-0004", "e_status" : 0, "SUID" : 5804, "station_g_cd" : 2600702, "add" : "世田谷区太子堂4-10-3", "line_cd" : 26007, "selected" : false, "open_ymd" : "", "name" : "2600702", "pref_name" : "東京都", "shared_name" : "2600702", "lat" : 35.644545, "y" : -356445.45, "x" : 1396663.82 }, "position" : { "x" : 1396663.82, "y" : -356445.45 }, "selected" : false }, { "data" : { "id" : "5801", "station_name" : "矢口渡", "close_ymd" : "", "lon" : 139.700389, "post" : "146-0095", "e_status" : 0, "SUID" : 5801, "station_g_cd" : 2600606, "add" : "大田区多摩川1-20-15", "line_cd" : 26006, "selected" : false, "open_ymd" : "", "name" : "2600606", "pref_name" : "東京都", "shared_name" : "2600606", "lat" : 35.562462, "y" : -355624.61999999994, "x" : 1397003.89 }, "position" : { "x" : 1397003.89, "y" : -355624.61999999994 }, "selected" : false }, { "data" : { "id" : "5802", "station_name" : "蒲田", "close_ymd" : "", "lon" : 139.714626, "post" : "144-0052", "e_status" : 0, "SUID" : 5802, "station_g_cd" : 1133230, "add" : "大田区蒲田5丁目", "line_cd" : 26006, "selected" : false, "open_ymd" : "", "name" : "2600607", "pref_name" : "東京都", "shared_name" : "2600607", "lat" : 35.561766999999996, "y" : -355617.67, "x" : 1397146.26 }, "position" : { "x" : 1397146.26, "y" : -355617.67 }, "selected" : false }, { "data" : { "id" : "5799", "station_name" : "下丸子", "close_ymd" : "", "lon" : 139.685576, "post" : "146-0092", "e_status" : 0, "SUID" : 5799, "station_g_cd" : 2600604, "add" : "大田区下丸子3-7-1", "line_cd" : 26006, "selected" : false, "open_ymd" : "", "name" : "2600604", "pref_name" : "東京都", "shared_name" : "2600604", "lat" : 35.571397, "y" : -355713.97, "x" : 1396855.76 }, "position" : { "x" : 1396855.76, "y" : -355713.97 }, "selected" : false }, { "data" : { "id" : "5800", "station_name" : "武蔵新田", "close_ymd" : "", "lon" : 139.692506, "post" : "146-0093", "e_status" : 0, "SUID" : 5800, "station_g_cd" : 2600605, "add" : "大田区矢口1-18-1", "line_cd" : 26006, "selected" : false, "open_ymd" : "", "name" : "2600605", "pref_name" : "東京都", "shared_name" : "2600605", "lat" : 35.567806, "y" : -355678.06, "x" : 1396925.06 }, "position" : { "x" : 1396925.06, "y" : -355678.06 }, "selected" : false }, { "data" : { "id" : "5797", "station_name" : "沼部", "close_ymd" : "", "lon" : 139.67326, "post" : "145-0072", "e_status" : 0, "SUID" : 5797, "station_g_cd" : 2600602, "add" : "大田区田園調布本町28-1", "line_cd" : 26006, "selected" : false, "open_ymd" : "", "name" : "2600602", "pref_name" : "東京都", "shared_name" : "2600602", "lat" : 35.582526, "y" : -355825.26, "x" : 1396732.6 }, "position" : { "x" : 1396732.6, "y" : -355825.26 }, "selected" : false }, { "data" : { "id" : "5798", "station_name" : "鵜の木", "close_ymd" : "", "lon" : 139.680554, "post" : "146-0091", "e_status" : 0, "SUID" : 5798, "station_g_cd" : 2600603, "add" : "大田区鵜の木2-4-1", "line_cd" : 26006, "selected" : false, "open_ymd" : "", "name" : "2600603", "pref_name" : "東京都", "shared_name" : "2600603", "lat" : 35.575452, "y" : -355754.51999999996, "x" : 1396805.54 }, "position" : { "x" : 1396805.54, "y" : -355754.51999999996 }, "selected" : false }, { "data" : { "id" : "8157", "station_name" : "立川北", "close_ymd" : "", "lon" : 139.41253999999998, "post" : "190-0012", "e_status" : 0, "SUID" : 8157, "station_g_cd" : 9933412, "add" : "立川市曙町2-4", "line_cd" : 99334, "selected" : false, "open_ymd" : "", "name" : "9933412", "pref_name" : "東京都", "shared_name" : "9933412", "lat" : 35.699502, "y" : -356995.02, "x" : 1394125.3999999997 }, "position" : { "x" : 1394125.3999999997, "y" : -356995.02 }, "selected" : false }, { "data" : { "id" : "8158", "station_name" : "高松", "close_ymd" : "", "lon" : 139.413242, "post" : "190-0011", "e_status" : 0, "SUID" : 8158, "station_g_cd" : 9933413, "add" : "立川市高松町1-100", "line_cd" : 99334, "selected" : false, "open_ymd" : "", "name" : "9933413", "pref_name" : "東京都", "shared_name" : "9933413", "lat" : 35.710158, "y" : -357101.58, "x" : 1394132.42 }, "position" : { "x" : 1394132.42, "y" : -357101.58 }, "selected" : false }, { "data" : { "id" : "8159", "station_name" : "立飛", "close_ymd" : "", "lon" : 139.41738700000002, "post" : "190-0015", "e_status" : 0, "SUID" : 8159, "station_g_cd" : 9933414, "add" : "立川市泉町935", "line_cd" : 99334, "selected" : false, "open_ymd" : "", "name" : "9933414", "pref_name" : "東京都", "shared_name" : "9933414", "lat" : 35.714717, "y" : -357147.17, "x" : 1394173.87 }, "position" : { "x" : 1394173.87, "y" : -357147.17 }, "selected" : false }, { "data" : { "id" : "8160", "station_name" : "泉体育館", "close_ymd" : "", "lon" : 139.419525, "post" : "190-0015", "e_status" : 0, "SUID" : 8160, "station_g_cd" : 9933415, "add" : "立川市泉町841", "line_cd" : 99334, "selected" : false, "open_ymd" : "", "name" : "9933415", "pref_name" : "東京都", "shared_name" : "9933415", "lat" : 35.718775, "y" : -357187.75, "x" : 1394195.25 }, "position" : { "x" : 1394195.25, "y" : -357187.75 }, "selected" : false }, { "data" : { "id" : "8161", "station_name" : "砂川七番", "close_ymd" : "", "lon" : 139.418097, "post" : "190-0002", "e_status" : 0, "SUID" : 8161, "station_g_cd" : 9933416, "add" : "立川市幸町5-1", "line_cd" : 99334, "selected" : false, "open_ymd" : "", "name" : "9933416", "pref_name" : "東京都", "shared_name" : "9933416", "lat" : 35.723319000000004, "y" : -357233.19000000006, "x" : 1394180.97 }, "position" : { "x" : 1394180.97, "y" : -357233.19000000006 }, "selected" : false }, { "data" : { "id" : "8162", "station_name" : "玉川上水", "close_ymd" : "", "lon" : 139.417866, "post" : "190-0002", "e_status" : 0, "SUID" : 8162, "station_g_cd" : 2200805, "add" : "立川市幸町6-36-1", "line_cd" : 99334, "selected" : false, "open_ymd" : "", "name" : "9933417", "pref_name" : "東京都", "shared_name" : "9933417", "lat" : 35.73223, "y" : -357322.3, "x" : 1394178.6600000001 }, "position" : { "x" : 1394178.6600000001, "y" : -357322.3 }, "selected" : false }, { "data" : { "id" : "8163", "station_name" : "桜街道", "close_ymd" : "", "lon" : 139.416653, "post" : "207-0023", "e_status" : 0, "SUID" : 8163, "station_g_cd" : 9933418, "add" : "東大和市上北台3-470", "line_cd" : 99334, "selected" : false, "open_ymd" : "", "name" : "9933418", "pref_name" : "東京都", "shared_name" : "9933418", "lat" : 35.739000000000004, "y" : -357390.00000000006, "x" : 1394166.53 }, "position" : { "x" : 1394166.53, "y" : -357390.00000000006 }, "selected" : false }, { "data" : { "id" : "8164", "station_name" : "上北台", "close_ymd" : "", "lon" : 139.415822, "post" : "207-0023", "e_status" : 0, "SUID" : 8164, "station_g_cd" : 9933419, "add" : "東大和市上北台1-742", "line_cd" : 99334, "selected" : false, "open_ymd" : "", "name" : "9933419", "pref_name" : "東京都", "shared_name" : "9933419", "lat" : 35.745824, "y" : -357458.24, "x" : 1394158.22 }, "position" : { "x" : 1394158.22, "y" : -357458.24 }, "selected" : false }, { "data" : { "id" : "8149", "station_name" : "中央大学・明星大学", "close_ymd" : "", "lon" : 139.408672, "post" : "192-0351", "e_status" : 0, "SUID" : 8149, "station_g_cd" : 9933404, "add" : "八王子市東中野742", "line_cd" : 99334, "selected" : false, "open_ymd" : "", "name" : "9933404", "pref_name" : "東京都", "shared_name" : "9933404", "lat" : 35.64197, "y" : -356419.7, "x" : 1394086.72 }, "position" : { "x" : 1394086.72, "y" : -356419.7 }, "selected" : false }, { "data" : { "id" : "5758", "station_name" : "つくし野", "close_ymd" : "", "lon" : 139.485139, "post" : "194-0001", "e_status" : 0, "SUID" : 5758, "station_g_cd" : 2600323, "add" : "町田市つくし野4-1", "line_cd" : 26003, "selected" : false, "open_ymd" : "", "name" : "2600323", "pref_name" : "東京都", "shared_name" : "2600323", "lat" : 35.527559000000004, "y" : -355275.59, "x" : 1394851.3900000001 }, "position" : { "x" : 1394851.3900000001, "y" : -355275.59 }, "selected" : false }, { "data" : { "id" : "8150", "station_name" : "多摩動物公園", "close_ymd" : "", "lon" : 139.403672, "post" : "191-0042", "e_status" : 0, "SUID" : 8150, "station_g_cd" : 2400502, "add" : "日野市程久保3-36-39", "line_cd" : 99334, "selected" : false, "open_ymd" : "", "name" : "9933405", "pref_name" : "東京都", "shared_name" : "9933405", "lat" : 35.648666, "y" : -356486.66, "x" : 1394036.72 }, "position" : { "x" : 1394036.72, "y" : -356486.66 }, "selected" : false }, { "data" : { "id" : "5759", "station_name" : "すずかけ台", "close_ymd" : "", "lon" : 139.481684, "post" : "194-0001", "e_status" : 0, "SUID" : 5759, "station_g_cd" : 2600324, "add" : "町田市つくし野3-1", "line_cd" : 26003, "selected" : false, "open_ymd" : "", "name" : "2600324", "pref_name" : "東京都", "shared_name" : "2600324", "lat" : 35.517094, "y" : -355170.94, "x" : 1394816.84 }, "position" : { "x" : 1394816.84, "y" : -355170.94 }, "selected" : false }, { "data" : { "id" : "8151", "station_name" : "程久保", "close_ymd" : "", "lon" : 139.410698, "post" : "191-0042", "e_status" : 0, "SUID" : 8151, "station_g_cd" : 9933406, "add" : "日野市程久保8-1", "line_cd" : 99334, "selected" : false, "open_ymd" : "", "name" : "9933406", "pref_name" : "東京都", "shared_name" : "9933406", "lat" : 35.655093, "y" : -356550.93, "x" : 1394106.98 }, "position" : { "x" : 1394106.98, "y" : -356550.93 }, "selected" : false }, { "data" : { "id" : "5760", "station_name" : "南町田", "close_ymd" : "", "lon" : 139.470318, "post" : "194-0004", "e_status" : 0, "SUID" : 5760, "station_g_cd" : 2600325, "add" : "町田市鶴間3-3-2", "line_cd" : 26003, "selected" : false, "open_ymd" : "", "name" : "2600325", "pref_name" : "東京都", "shared_name" : "2600325", "lat" : 35.511502, "y" : -355115.02, "x" : 1394703.18 }, "position" : { "x" : 1394703.18, "y" : -355115.02 }, "selected" : false }, { "data" : { "id" : "8152", "station_name" : "高幡不動", "close_ymd" : "", "lon" : 139.415184, "post" : "191-0031", "e_status" : 0, "SUID" : 8152, "station_g_cd" : 2400129, "add" : "日野市高幡139", "line_cd" : 99334, "selected" : false, "open_ymd" : "", "name" : "9933407", "pref_name" : "東京都", "shared_name" : "9933407", "lat" : 35.66148, "y" : -356614.8, "x" : 1394151.84 }, "position" : { "x" : 1394151.84, "y" : -356614.8 }, "selected" : false }, { "data" : { "id" : "8153", "station_name" : "万願寺", "close_ymd" : "", "lon" : 139.42007900000002, "post" : "191-0022", "e_status" : 0, "SUID" : 8153, "station_g_cd" : 9933408, "add" : "日野市新井124", "line_cd" : 99334, "selected" : false, "open_ymd" : "", "name" : "9933408", "pref_name" : "東京都", "shared_name" : "9933408", "lat" : 35.671248999999996, "y" : -356712.48999999993, "x" : 1394200.7900000003 }, "position" : { "x" : 1394200.7900000003, "y" : -356712.48999999993 }, "selected" : false }, { "data" : { "id" : "8154", "station_name" : "甲州街道", "close_ymd" : "", "lon" : 139.409191, "post" : "191-0012", "e_status" : 0, "SUID" : 8154, "station_g_cd" : 9933409, "add" : "日野市日野1030", "line_cd" : 99334, "selected" : false, "open_ymd" : "", "name" : "9933409", "pref_name" : "東京都", "shared_name" : "9933409", "lat" : 35.678262, "y" : -356782.61999999994, "x" : 1394091.91 }, "position" : { "x" : 1394091.91, "y" : -356782.61999999994 }, "selected" : false }, { "data" : { "id" : "5763", "station_name" : "大井町", "close_ymd" : "", "lon" : 139.735025, "post" : "140-0014", "e_status" : 0, "SUID" : 5763, "station_g_cd" : 1133228, "add" : "品川区大井1丁目", "line_cd" : 26004, "selected" : false, "open_ymd" : "", "name" : "2600401", "pref_name" : "東京都", "shared_name" : "2600401", "lat" : 35.607535, "y" : -356075.35, "x" : 1397350.25 }, "position" : { "x" : 1397350.25, "y" : -356075.35 }, "selected" : false }, { "data" : { "id" : "8155", "station_name" : "柴崎体育館", "close_ymd" : "", "lon" : 139.409191, "post" : "190-0023", "e_status" : 0, "SUID" : 8155, "station_g_cd" : 9933410, "add" : "立川市柴崎町6-107", "line_cd" : 99334, "selected" : false, "open_ymd" : "", "name" : "9933410", "pref_name" : "東京都", "shared_name" : "9933410", "lat" : 35.689475, "y" : -356894.75, "x" : 1394091.91 }, "position" : { "x" : 1394091.91, "y" : -356894.75 }, "selected" : false }, { "data" : { "id" : "8156", "station_name" : "立川南", "close_ymd" : "", "lon" : 139.412546, "post" : "190-0023", "e_status" : 0, "SUID" : 8156, "station_g_cd" : 9933411, "add" : "立川市柴崎町3-7", "line_cd" : 99334, "selected" : false, "open_ymd" : "", "name" : "9933411", "pref_name" : "東京都", "shared_name" : "9933411", "lat" : 35.696077, "y" : -356960.77, "x" : 1394125.46 }, "position" : { "x" : 1394125.46, "y" : -356960.77 }, "selected" : false }, { "data" : { "id" : "5764", "station_name" : "下神明", "close_ymd" : "", "lon" : 139.726256, "post" : "141-0033", "e_status" : 0, "SUID" : 5764, "station_g_cd" : 2600402, "add" : "品川区西品川1-29-6", "line_cd" : 26004, "selected" : false, "open_ymd" : "", "name" : "2600402", "pref_name" : "東京都", "shared_name" : "2600402", "lat" : 35.608703999999996, "y" : -356087.04, "x" : 1397262.56 }, "position" : { "x" : 1397262.56, "y" : -356087.04 }, "selected" : false }, { "data" : { "id" : "5766", "station_name" : "中延", "close_ymd" : "", "lon" : 139.712526, "post" : "142-0053", "e_status" : 0, "SUID" : 5766, "station_g_cd" : 2600404, "add" : "品川区中延4-5-5", "line_cd" : 26004, "selected" : false, "open_ymd" : "", "name" : "2600404", "pref_name" : "東京都", "shared_name" : "2600404", "lat" : 35.605709999999995, "y" : -356057.1, "x" : 1397125.26 }, "position" : { "x" : 1397125.26, "y" : -356057.1 }, "selected" : false }, { "data" : { "id" : "5765", "station_name" : "戸越公園", "close_ymd" : "", "lon" : 139.718159, "post" : "142-0041", "e_status" : 0, "SUID" : 5765, "station_g_cd" : 2600403, "add" : "品川区戸越5-10-15", "line_cd" : 26004, "selected" : false, "open_ymd" : "", "name" : "2600403", "pref_name" : "東京都", "shared_name" : "2600403", "lat" : 35.608856, "y" : -356088.56000000006, "x" : 1397181.59 }, "position" : { "x" : 1397181.59, "y" : -356088.56000000006 }, "selected" : false }, { "data" : { "id" : "8176", "station_name" : "天王洲アイル", "close_ymd" : "", "lon" : 139.750675, "post" : "140-0002", "e_status" : 0, "SUID" : 8176, "station_g_cd" : 9933602, "add" : "品川区東品川2-5-19", "line_cd" : 99336, "selected" : false, "open_ymd" : "", "name" : "9933602", "pref_name" : "東京都", "shared_name" : "9933602", "lat" : 35.622908, "y" : -356229.08, "x" : 1397506.75 }, "position" : { "x" : 1397506.75, "y" : -356229.08 }, "selected" : false }, { "data" : { "id" : "5768", "station_name" : "旗の台", "close_ymd" : "", "lon" : 139.70228600000002, "post" : "142-0064", "e_status" : 0, "SUID" : 5768, "station_g_cd" : 2600406, "add" : "品川区旗の台2-13-1", "line_cd" : 26004, "selected" : false, "open_ymd" : "", "name" : "2600406", "pref_name" : "東京都", "shared_name" : "2600406", "lat" : 35.604923, "y" : -356049.23, "x" : 1397022.86 }, "position" : { "x" : 1397022.86, "y" : -356049.23 }, "selected" : false }, { "data" : { "id" : "8175", "station_name" : "浜松町", "close_ymd" : "", "lon" : 139.756747, "post" : "", "e_status" : 0, "SUID" : 8175, "station_g_cd" : 1130227, "add" : "東京都港区", "line_cd" : 99336, "selected" : false, "open_ymd" : "", "name" : "9933601", "pref_name" : "東京都", "shared_name" : "9933601", "lat" : 35.655666, "y" : -356556.66, "x" : 1397567.47 }, "position" : { "x" : 1397567.47, "y" : -356556.66 }, "selected" : false }, { "data" : { "id" : "5767", "station_name" : "荏原町", "close_ymd" : "", "lon" : 139.707571, "post" : "142-0053", "e_status" : 0, "SUID" : 5767, "station_g_cd" : 2600405, "add" : "品川区中延5-2-1", "line_cd" : 26004, "selected" : false, "open_ymd" : "", "name" : "2600405", "pref_name" : "東京都", "shared_name" : "2600405", "lat" : 35.60382, "y" : -356038.2, "x" : 1397075.71 }, "position" : { "x" : 1397075.71, "y" : -356038.2 }, "selected" : false }, { "data" : { "id" : "8178", "station_name" : "流通センター", "close_ymd" : "", "lon" : 139.748964, "post" : "143-0006", "e_status" : 0, "SUID" : 8178, "station_g_cd" : 9933604, "add" : "大田区平和島6-1-2", "line_cd" : 99336, "selected" : false, "open_ymd" : "", "name" : "9933604", "pref_name" : "東京都", "shared_name" : "9933604", "lat" : 35.58186, "y" : -355818.6, "x" : 1397489.64 }, "position" : { "x" : 1397489.64, "y" : -355818.6 }, "selected" : false }, { "data" : { "id" : "5770", "station_name" : "大岡山", "close_ymd" : "", "lon" : 139.685909, "post" : "145-0062", "e_status" : 0, "SUID" : 5770, "station_g_cd" : 2600206, "add" : "大田区北千束3-27-1", "line_cd" : 26004, "selected" : false, "open_ymd" : "", "name" : "2600408", "pref_name" : "東京都", "shared_name" : "2600408", "lat" : 35.607456, "y" : -356074.56, "x" : 1396859.09 }, "position" : { "x" : 1396859.09, "y" : -356074.56 }, "selected" : false }, { "data" : { "id" : "8177", "station_name" : "大井競馬場前", "close_ymd" : "", "lon" : 139.74708, "post" : "140-0012", "e_status" : 0, "SUID" : 8177, "station_g_cd" : 9933603, "add" : "品川区勝島2-2-35", "line_cd" : 99336, "selected" : false, "open_ymd" : "", "name" : "9933603", "pref_name" : "東京都", "shared_name" : "9933603", "lat" : 35.595006, "y" : -355950.06, "x" : 1397470.8 }, "position" : { "x" : 1397470.8, "y" : -355950.06 }, "selected" : false }, { "data" : { "id" : "5769", "station_name" : "北千束", "close_ymd" : "", "lon" : 139.69330300000001, "post" : "145-0062", "e_status" : 0, "SUID" : 5769, "station_g_cd" : 2600407, "add" : "大田区北千束2-16-1", "line_cd" : 26004, "selected" : false, "open_ymd" : "", "name" : "2600407", "pref_name" : "東京都", "shared_name" : "2600407", "lat" : 35.606311, "y" : -356063.11, "x" : 1396933.0300000003 }, "position" : { "x" : 1396933.0300000003, "y" : -356063.11 }, "selected" : false }, { "data" : { "id" : "8180", "station_name" : "整備場", "close_ymd" : "", "lon" : 139.753366, "post" : "144-0041", "e_status" : 0, "SUID" : 8180, "station_g_cd" : 9933606, "add" : "大田区羽田空港1-7-4", "line_cd" : 99336, "selected" : false, "open_ymd" : "", "name" : "9933606", "pref_name" : "東京都", "shared_name" : "9933606", "lat" : 35.555125, "y" : -355551.24999999994, "x" : 1397533.66 }, "position" : { "x" : 1397533.66, "y" : -355551.24999999994 }, "selected" : false }, { "data" : { "id" : "5772", "station_name" : "自由が丘", "close_ymd" : "", "lon" : 139.66866399999998, "post" : "152-0035", "e_status" : 0, "SUID" : 5772, "station_g_cd" : 2600107, "add" : "目黒区自由が丘1-30-1", "line_cd" : 26004, "selected" : false, "open_ymd" : "", "name" : "2600410", "pref_name" : "東京都", "shared_name" : "2600410", "lat" : 35.607224, "y" : -356072.24000000005, "x" : 1396686.64 }, "position" : { "x" : 1396686.64, "y" : -356072.24000000005 }, "selected" : false }, { "data" : { "id" : "8179", "station_name" : "昭和島", "close_ymd" : "", "lon" : 139.74991799999998, "post" : "143-0004", "e_status" : 0, "SUID" : 8179, "station_g_cd" : 9933605, "add" : "大田区昭和島2-2-1", "line_cd" : 99336, "selected" : false, "open_ymd" : "", "name" : "9933605", "pref_name" : "東京都", "shared_name" : "9933605", "lat" : 35.570656, "y" : -355706.56, "x" : 1397499.1799999997 }, "position" : { "x" : 1397499.1799999997, "y" : -355706.56 }, "selected" : false }, { "data" : { "id" : "5771", "station_name" : "緑が丘", "close_ymd" : "", "lon" : 139.679482, "post" : "152-0034", "e_status" : 0, "SUID" : 5771, "station_g_cd" : 2600409, "add" : "目黒区緑が丘3-1-12", "line_cd" : 26004, "selected" : false, "open_ymd" : "", "name" : "2600409", "pref_name" : "東京都", "shared_name" : "2600409", "lat" : 35.60638, "y" : -356063.8, "x" : 1396794.82 }, "position" : { "x" : 1396794.82, "y" : -356063.8 }, "selected" : false }, { "data" : { "id" : "5774", "station_name" : "尾山台", "close_ymd" : "", "lon" : 139.653862, "post" : "158-0082", "e_status" : 0, "SUID" : 5774, "station_g_cd" : 2600412, "add" : "世田谷区等々力5-5-7", "line_cd" : 26004, "selected" : false, "open_ymd" : "", "name" : "2600412", "pref_name" : "東京都", "shared_name" : "2600412", "lat" : 35.606971, "y" : -356069.71, "x" : 1396538.62 }, "position" : { "x" : 1396538.62, "y" : -356069.71 }, "selected" : false }, { "data" : { "id" : "5773", "station_name" : "九品仏", "close_ymd" : "", "lon" : 139.660992, "post" : "158-0083", "e_status" : 0, "SUID" : 5773, "station_g_cd" : 2600411, "add" : "世田谷区奥沢7-20-1", "line_cd" : 26004, "selected" : false, "open_ymd" : "", "name" : "2600411", "pref_name" : "東京都", "shared_name" : "2600411", "lat" : 35.60538, "y" : -356053.8, "x" : 1396609.92 }, "position" : { "x" : 1396609.92, "y" : -356053.8 }, "selected" : false }, { "data" : { "id" : "5776", "station_name" : "上野毛", "close_ymd" : "", "lon" : 139.638917, "post" : "158-0093", "e_status" : 0, "SUID" : 5776, "station_g_cd" : 2600414, "add" : "世田谷区上野毛1-26-6", "line_cd" : 26004, "selected" : false, "open_ymd" : "", "name" : "2600414", "pref_name" : "東京都", "shared_name" : "2600414", "lat" : 35.611957000000004, "y" : -356119.57000000007, "x" : 1396389.17 }, "position" : { "x" : 1396389.17, "y" : -356119.57000000007 }, "selected" : false }, { "data" : { "id" : "5775", "station_name" : "等々力", "close_ymd" : "", "lon" : 139.64793799999998, "post" : "158-0082", "e_status" : 0, "SUID" : 5775, "station_g_cd" : 2600413, "add" : "世田谷区等々力3-1-1", "line_cd" : 26004, "selected" : false, "open_ymd" : "", "name" : "2600413", "pref_name" : "東京都", "shared_name" : "2600413", "lat" : 35.608369, "y" : -356083.69000000006, "x" : 1396479.38 }, "position" : { "x" : 1396479.38, "y" : -356083.69000000006 }, "selected" : false }, { "data" : { "id" : "5777", "station_name" : "二子玉川", "close_ymd" : "", "lon" : 139.626685, "post" : "158-0094", "e_status" : 0, "SUID" : 5777, "station_g_cd" : 2600307, "add" : "世田谷区玉川2-22-13", "line_cd" : 26004, "selected" : false, "open_ymd" : "", "name" : "2600415", "pref_name" : "東京都", "shared_name" : "2600415", "lat" : 35.611788, "y" : -356117.87999999995, "x" : 1396266.85 }, "position" : { "x" : 1396266.85, "y" : -356117.87999999995 }, "selected" : false }, { "data" : { "id" : "8191", "station_name" : "品川シーサイド", "close_ymd" : "", "lon" : 139.749549, "post" : "140-0002", "e_status" : 0, "SUID" : 8191, "station_g_cd" : 9933706, "add" : "品川区東品川4-12-22", "line_cd" : 99337, "selected" : false, "open_ymd" : "", "name" : "9933706", "pref_name" : "東京都", "shared_name" : "9933706", "lat" : 35.608523999999996, "y" : -356085.23999999993, "x" : 1397495.49 }, "position" : { "x" : 1397495.49, "y" : -356085.23999999993 }, "selected" : false }, { "data" : { "id" : "8192", "station_name" : "大井町", "close_ymd" : "", "lon" : 139.735025, "post" : "140-0014", "e_status" : 0, "SUID" : 8192, "station_g_cd" : 1133228, "add" : "品川区大井1丁目", "line_cd" : 99337, "selected" : false, "open_ymd" : "", "name" : "9933707", "pref_name" : "東京都", "shared_name" : "9933707", "lat" : 35.607535, "y" : -356075.35, "x" : 1397350.25 }, "position" : { "x" : 1397350.25, "y" : -356075.35 }, "selected" : false }, { "data" : { "id" : "8189", "station_name" : "東京テレポート", "close_ymd" : "", "lon" : 139.778896, "post" : "135-0064", "e_status" : 0, "SUID" : 8189, "station_g_cd" : 9933704, "add" : "江東区青海1-2", "line_cd" : 99337, "selected" : false, "open_ymd" : "", "name" : "9933704", "pref_name" : "東京都", "shared_name" : "9933704", "lat" : 35.62753, "y" : -356275.3, "x" : 1397788.96 }, "position" : { "x" : 1397788.96, "y" : -356275.3 }, "selected" : false }, { "data" : { "id" : "8190", "station_name" : "天王洲アイル", "close_ymd" : "", "lon" : 139.750793, "post" : "140-0002", "e_status" : 0, "SUID" : 8190, "station_g_cd" : 9933602, "add" : "品川区東品川2-5-19", "line_cd" : 99337, "selected" : false, "open_ymd" : "", "name" : "9933705", "pref_name" : "東京都", "shared_name" : "9933705", "lat" : 35.620562, "y" : -356205.62, "x" : 1397507.93 }, "position" : { "x" : 1397507.93, "y" : -356205.62 }, "selected" : false }, { "data" : { "id" : "5723", "station_name" : "目黒", "close_ymd" : "", "lon" : 139.7155, "post" : "", "e_status" : 0, "SUID" : 5723, "station_g_cd" : 1130203, "add" : "東京都品川区上大崎四丁目2-1", "line_cd" : 26002, "selected" : false, "open_ymd" : "", "name" : "2600201", "pref_name" : "東京都", "shared_name" : "2600201", "lat" : 35.633272, "y" : -356332.72, "x" : 1397155.0 }, "position" : { "x" : 1397155.0, "y" : -356332.72 }, "selected" : false }, { "data" : { "id" : "5724", "station_name" : "不動前", "close_ymd" : "", "lon" : 139.71469, "post" : "141-0031", "e_status" : 0, "SUID" : 5724, "station_g_cd" : 2600202, "add" : "品川区西五反田5-12-1", "line_cd" : 26002, "selected" : false, "open_ymd" : "", "name" : "2600202", "pref_name" : "東京都", "shared_name" : "2600202", "lat" : 35.626526, "y" : -356265.26, "x" : 1397146.9 }, "position" : { "x" : 1397146.9, "y" : -356265.26 }, "selected" : false }, { "data" : { "id" : "8193", "station_name" : "大崎", "close_ymd" : "", "lon" : 139.72843899999998, "post" : "", "e_status" : 0, "SUID" : 8193, "station_g_cd" : 1130201, "add" : "東京都品川区大崎一丁目21-4", "line_cd" : 99337, "selected" : false, "open_ymd" : "", "name" : "9933708", "pref_name" : "東京都", "shared_name" : "9933708", "lat" : 35.619772, "y" : -356197.72, "x" : 1397284.39 }, "position" : { "x" : 1397284.39, "y" : -356197.72 }, "selected" : false }, { "data" : { "id" : "5727", "station_name" : "洗足", "close_ymd" : "", "lon" : 139.694367, "post" : "152-0012", "e_status" : 0, "SUID" : 5727, "station_g_cd" : 2600205, "add" : "目黒区洗足2-21-1", "line_cd" : 26002, "selected" : false, "open_ymd" : "", "name" : "2600205", "pref_name" : "東京都", "shared_name" : "2600205", "lat" : 35.61043, "y" : -356104.3, "x" : 1396943.67 }, "position" : { "x" : 1396943.67, "y" : -356104.3 }, "selected" : false }, { "data" : { "id" : "8183", "station_name" : "新整備場", "close_ymd" : "", "lon" : 139.786777, "post" : "144-0041", "e_status" : 0, "SUID" : 8183, "station_g_cd" : 9933608, "add" : "大田区羽田空港3-5-1", "line_cd" : 99336, "selected" : false, "open_ymd" : "", "name" : "9933608", "pref_name" : "東京都", "shared_name" : "9933608", "lat" : 35.542773, "y" : -355427.73, "x" : 1397867.77 }, "position" : { "x" : 1397867.77, "y" : -355427.73 }, "selected" : false }, { "data" : { "id" : "5728", "station_name" : "大岡山", "close_ymd" : "", "lon" : 139.685909, "post" : "145-0062", "e_status" : 0, "SUID" : 5728, "station_g_cd" : 2600206, "add" : "大田区北千束3-27-1", "line_cd" : 26002, "selected" : false, "open_ymd" : "", "name" : "2600206", "pref_name" : "東京都", "shared_name" : "2600206", "lat" : 35.607456, "y" : -356074.56, "x" : 1396859.09 }, "position" : { "x" : 1396859.09, "y" : -356074.56 }, "selected" : false }, { "data" : { "id" : "8184", "station_name" : "羽田空港第1ビル", "close_ymd" : "", "lon" : 139.784653, "post" : "144-0041", "e_status" : 0, "SUID" : 8184, "station_g_cd" : 2700206, "add" : "大田区羽田空港3-3-2", "line_cd" : 99336, "selected" : false, "open_ymd" : "", "name" : "9933609", "pref_name" : "東京都", "shared_name" : "9933609", "lat" : 35.549163, "y" : -355491.63, "x" : 1397846.53 }, "position" : { "x" : 1397846.53, "y" : -355491.63 }, "selected" : false }, { "data" : { "id" : "5725", "station_name" : "武蔵小山", "close_ymd" : "", "lon" : 139.704524, "post" : "142-0062", "e_status" : 0, "SUID" : 5725, "station_g_cd" : 2600203, "add" : "品川区小山3-4-8", "line_cd" : 26002, "selected" : false, "open_ymd" : "", "name" : "2600203", "pref_name" : "東京都", "shared_name" : "2600203", "lat" : 35.620538, "y" : -356205.38, "x" : 1397045.24 }, "position" : { "x" : 1397045.24, "y" : -356205.38 }, "selected" : false }, { "data" : { "id" : "8181", "station_name" : "天空橋", "close_ymd" : "", "lon" : 139.75423, "post" : "144-0041", "e_status" : 0, "SUID" : 8181, "station_g_cd" : 2700205, "add" : "大田区羽田空港1-1-2", "line_cd" : 99336, "selected" : false, "open_ymd" : "", "name" : "9933607", "pref_name" : "東京都", "shared_name" : "9933607", "lat" : 35.548908000000004, "y" : -355489.08, "x" : 1397542.3 }, "position" : { "x" : 1397542.3, "y" : -355489.08 }, "selected" : false }, { "data" : { "id" : "5726", "station_name" : "西小山", "close_ymd" : "", "lon" : 139.698694, "post" : "142-0062", "e_status" : 0, "SUID" : 5726, "station_g_cd" : 2600204, "add" : "品川区小山6-3-10", "line_cd" : 26002, "selected" : false, "open_ymd" : "", "name" : "2600204", "pref_name" : "東京都", "shared_name" : "2600204", "lat" : 35.615455, "y" : -356154.55, "x" : 1396986.94 }, "position" : { "x" : 1396986.94, "y" : -356154.55 }, "selected" : false }, { "data" : { "id" : "8182", "station_name" : "羽田空港国際線ビル", "close_ymd" : "", "lon" : 139.768206, "post" : "144-0041", "e_status" : 0, "SUID" : 8182, "station_g_cd" : 2700207, "add" : "東京都大田区羽田空港二丁目6-5", "line_cd" : 99336, "selected" : false, "open_ymd" : "2010-10-21", "name" : "9933611", "pref_name" : "東京都", "shared_name" : "9933611", "lat" : 35.544169000000004, "y" : -355441.69000000006, "x" : 1397682.0599999998 }, "position" : { "x" : 1397682.0599999998, "y" : -355441.69000000006 }, "selected" : false }, { "data" : { "id" : "5731", "station_name" : "多摩川", "close_ymd" : "", "lon" : 139.668723, "post" : "145-0071", "e_status" : 0, "SUID" : 5731, "station_g_cd" : 2600109, "add" : "大田区田園調布1-53-8", "line_cd" : 26002, "selected" : false, "open_ymd" : "", "name" : "2600209", "pref_name" : "東京都", "shared_name" : "2600209", "lat" : 35.589591, "y" : -355895.91, "x" : 1396687.23 }, "position" : { "x" : 1396687.23, "y" : -355895.91 }, "selected" : false }, { "data" : { "id" : "8187", "station_name" : "東雲", "close_ymd" : "", "lon" : 139.804395, "post" : "135-0062", "e_status" : 0, "SUID" : 8187, "station_g_cd" : 9933702, "add" : "江東区東雲2-8-10", "line_cd" : 99337, "selected" : false, "open_ymd" : "", "name" : "9933702", "pref_name" : "東京都", "shared_name" : "9933702", "lat" : 35.640987, "y" : -356409.87000000005, "x" : 1398043.95 }, "position" : { "x" : 1398043.95, "y" : -356409.87000000005 }, "selected" : false }, { "data" : { "id" : "8188", "station_name" : "国際展示場", "close_ymd" : "", "lon" : 139.791617, "post" : "135-0063", "e_status" : 0, "SUID" : 8188, "station_g_cd" : 9933703, "add" : "江東区有明2-5-25", "line_cd" : 99337, "selected" : false, "open_ymd" : "", "name" : "9933703", "pref_name" : "東京都", "shared_name" : "9933703", "lat" : 35.634409999999995, "y" : -356344.1, "x" : 1397916.17 }, "position" : { "x" : 1397916.17, "y" : -356344.1 }, "selected" : false }, { "data" : { "id" : "5729", "station_name" : "奥沢", "close_ymd" : "", "lon" : 139.672355, "post" : "158-0083", "e_status" : 0, "SUID" : 5729, "station_g_cd" : 2600207, "add" : "世田谷区奥沢3-47-17", "line_cd" : 26002, "selected" : false, "open_ymd" : "", "name" : "2600207", "pref_name" : "東京都", "shared_name" : "2600207", "lat" : 35.603947, "y" : -356039.47, "x" : 1396723.55 }, "position" : { "x" : 1396723.55, "y" : -356039.47 }, "selected" : false }, { "data" : { "id" : "8185", "station_name" : "羽田空港第2ビル", "close_ymd" : "", "lon" : 139.787979, "post" : "144-0041", "e_status" : 0, "SUID" : 8185, "station_g_cd" : 2700206, "add" : "大田区羽田空港3-4-2", "line_cd" : 99336, "selected" : false, "open_ymd" : "", "name" : "9933610", "pref_name" : "東京都", "shared_name" : "9933610", "lat" : 35.550734000000006, "y" : -355507.3400000001, "x" : 1397879.79 }, "position" : { "x" : 1397879.79, "y" : -355507.3400000001 }, "selected" : false }, { "data" : { "id" : "5730", "station_name" : "田園調布", "close_ymd" : "", "lon" : 139.667356, "post" : "145-0071", "e_status" : 0, "SUID" : 5730, "station_g_cd" : 2600108, "add" : "大田区田園調布3-25-18", "line_cd" : 26002, "selected" : false, "open_ymd" : "", "name" : "2600208", "pref_name" : "東京都", "shared_name" : "2600208", "lat" : 35.596815, "y" : -355968.15, "x" : 1396673.56 }, "position" : { "x" : 1396673.56, "y" : -355968.15 }, "selected" : false }, { "data" : { "id" : "8186", "station_name" : "新木場", "close_ymd" : "", "lon" : 139.827402, "post" : "", "e_status" : 0, "SUID" : 8186, "station_g_cd" : 1132605, "add" : "東京都江東区新木場一丁目6", "line_cd" : 99337, "selected" : false, "open_ymd" : "", "name" : "9933701", "pref_name" : "東京都", "shared_name" : "9933701", "lat" : 35.646172, "y" : -356461.72, "x" : 1398274.02 }, "position" : { "x" : 1398274.02, "y" : -356461.72 }, "selected" : false }, { "data" : { "id" : "5736", "station_name" : "渋谷", "close_ymd" : "", "lon" : 139.702148, "post" : "", "e_status" : 0, "SUID" : 5736, "station_g_cd" : 1130205, "add" : "東京都渋谷区道玄坂二丁目1-1", "line_cd" : 26003, "selected" : false, "open_ymd" : "", "name" : "2600301", "pref_name" : "東京都", "shared_name" : "2600301", "lat" : 35.65802, "y" : -356580.2, "x" : 1397021.48 }, "position" : { "x" : 1397021.48, "y" : -356580.2 }, "selected" : false }, { "data" : { "id" : "5740", "station_name" : "桜新町", "close_ymd" : "", "lon" : 139.644779, "post" : "154-0015", "e_status" : 0, "SUID" : 5740, "station_g_cd" : 2600305, "add" : "世田谷区桜新町2-8", "line_cd" : 26003, "selected" : false, "open_ymd" : "", "name" : "2600305", "pref_name" : "東京都", "shared_name" : "2600305", "lat" : 35.631665999999996, "y" : -356316.66, "x" : 1396447.79 }, "position" : { "x" : 1396447.79, "y" : -356316.66 }, "selected" : false }, { "data" : { "id" : "5739", "station_name" : "駒沢大学", "close_ymd" : "", "lon" : 139.661702, "post" : "154-0011", "e_status" : 0, "SUID" : 5739, "station_g_cd" : 2600304, "add" : "世田谷区上馬4-3", "line_cd" : 26003, "selected" : false, "open_ymd" : "", "name" : "2600304", "pref_name" : "東京都", "shared_name" : "2600304", "lat" : 35.633471, "y" : -356334.71, "x" : 1396617.02 }, "position" : { "x" : 1396617.02, "y" : -356334.71 }, "selected" : false }, { "data" : { "id" : "5738", "station_name" : "三軒茶屋", "close_ymd" : "", "lon" : 139.670156, "post" : "154-0004", "e_status" : 0, "SUID" : 5738, "station_g_cd" : 2600303, "add" : "世田谷区太子堂4-21-1", "line_cd" : 26003, "selected" : false, "open_ymd" : "", "name" : "2600303", "pref_name" : "東京都", "shared_name" : "2600303", "lat" : 35.643716, "y" : -356437.16, "x" : 1396701.5599999998 }, "position" : { "x" : 1396701.5599999998, "y" : -356437.16 }, "selected" : false }, { "data" : { "id" : "5737", "station_name" : "池尻大橋", "close_ymd" : "", "lon" : 139.684319, "post" : "154-0001", "e_status" : 0, "SUID" : 5737, "station_g_cd" : 2600302, "add" : "世田谷区池尻3-2", "line_cd" : 26003, "selected" : false, "open_ymd" : "", "name" : "2600302", "pref_name" : "東京都", "shared_name" : "2600302", "lat" : 35.650603000000004, "y" : -356506.03, "x" : 1396843.19 }, "position" : { "x" : 1396843.19, "y" : -356506.03 }, "selected" : false }, { "data" : { "id" : "5742", "station_name" : "二子玉川", "close_ymd" : "", "lon" : 139.626685, "post" : "158-0094", "e_status" : 0, "SUID" : 5742, "station_g_cd" : 2600307, "add" : "世田谷区玉川2-22-13", "line_cd" : 26003, "selected" : false, "open_ymd" : "", "name" : "2600307", "pref_name" : "東京都", "shared_name" : "2600307", "lat" : 35.611788, "y" : -356117.87999999995, "x" : 1396266.85 }, "position" : { "x" : 1396266.85, "y" : -356117.87999999995 }, "selected" : false }, { "data" : { "id" : "5741", "station_name" : "用賀", "close_ymd" : "", "lon" : 139.633928, "post" : "158-0097", "e_status" : 0, "SUID" : 5741, "station_g_cd" : 2600306, "add" : "世田谷区用賀2-39", "line_cd" : 26003, "selected" : false, "open_ymd" : "", "name" : "2600306", "pref_name" : "東京都", "shared_name" : "2600306", "lat" : 35.626436, "y" : -356264.36, "x" : 1396339.28 }, "position" : { "x" : 1396339.28, "y" : -356264.36 }, "selected" : false }, { "data" : { "id" : "5699", "station_name" : "小田急永山", "close_ymd" : "", "lon" : 139.44794299999998, "post" : "206-0025", "e_status" : 0, "SUID" : 5699, "station_g_cd" : 2400207, "add" : "多摩市永山1丁目", "line_cd" : 25003, "selected" : false, "open_ymd" : "", "name" : "2500306", "pref_name" : "東京都", "shared_name" : "2500306", "lat" : 35.629971999999995, "y" : -356299.72, "x" : 1394479.4299999997 }, "position" : { "x" : 1394479.4299999997, "y" : -356299.72 }, "selected" : false }, { "data" : { "id" : "5700", "station_name" : "小田急多摩センター", "close_ymd" : "", "lon" : 139.424298, "post" : "206-0033", "e_status" : 0, "SUID" : 5700, "station_g_cd" : 2400208, "add" : "多摩市落合1丁目", "line_cd" : 25003, "selected" : false, "open_ymd" : "", "name" : "2500307", "pref_name" : "東京都", "shared_name" : "2500307", "lat" : 35.624902, "y" : -356249.01999999996, "x" : 1394242.98 }, "position" : { "x" : 1394242.98, "y" : -356249.01999999996 }, "selected" : false }, { "data" : { "id" : "5706", "station_name" : "学芸大学", "close_ymd" : "", "lon" : 139.68522, "post" : "152-0004", "e_status" : 0, "SUID" : 5706, "station_g_cd" : 2600105, "add" : "目黒区鷹番3-2-1", "line_cd" : 26001, "selected" : false, "open_ymd" : "", "name" : "2600105", "pref_name" : "東京都", "shared_name" : "2600105", "lat" : 35.628786, "y" : -356287.86, "x" : 1396852.2 }, "position" : { "x" : 1396852.2, "y" : -356287.86 }, "selected" : false }, { "data" : { "id" : "5705", "station_name" : "祐天寺", "close_ymd" : "", "lon" : 139.69075800000002, "post" : "153-0052", "e_status" : 0, "SUID" : 5705, "station_g_cd" : 2600104, "add" : "目黒区祐天寺2-13-3", "line_cd" : 26001, "selected" : false, "open_ymd" : "", "name" : "2600104", "pref_name" : "東京都", "shared_name" : "2600104", "lat" : 35.637163, "y" : -356371.63, "x" : 1396907.58 }, "position" : { "x" : 1396907.58, "y" : -356371.63 }, "selected" : false }, { "data" : { "id" : "5708", "station_name" : "自由が丘", "close_ymd" : "", "lon" : 139.66866399999998, "post" : "152-0035", "e_status" : 0, "SUID" : 5708, "station_g_cd" : 2600107, "add" : "目黒区自由が丘1-30-1", "line_cd" : 26001, "selected" : false, "open_ymd" : "", "name" : "2600107", "pref_name" : "東京都", "shared_name" : "2600107", "lat" : 35.607224, "y" : -356072.24000000005, "x" : 1396686.64 }, "position" : { "x" : 1396686.64, "y" : -356072.24000000005 }, "selected" : false }, { "data" : { "id" : "5707", "station_name" : "都立大学", "close_ymd" : "", "lon" : 139.676393, "post" : "152-0031", "e_status" : 0, "SUID" : 5707, "station_g_cd" : 2600106, "add" : "目黒区中根1-5-1", "line_cd" : 26001, "selected" : false, "open_ymd" : "", "name" : "2600106", "pref_name" : "東京都", "shared_name" : "2600106", "lat" : 35.617835, "y" : -356178.35, "x" : 1396763.93 }, "position" : { "x" : 1396763.93, "y" : -356178.35 }, "selected" : false }, { "data" : { "id" : "5702", "station_name" : "渋谷", "close_ymd" : "", "lon" : 139.702417, "post" : "-", "e_status" : 0, "SUID" : 5702, "station_g_cd" : 1130205, "add" : "東京都渋谷区渋谷二丁目24-1", "line_cd" : 26001, "selected" : false, "open_ymd" : "", "name" : "2600101", "pref_name" : "東京都", "shared_name" : "2600101", "lat" : 35.659545, "y" : -356595.45, "x" : 1397024.17 }, "position" : { "x" : 1397024.17, "y" : -356595.45 }, "selected" : false }, { "data" : { "id" : "5701", "station_name" : "唐木田", "close_ymd" : "", "lon" : 139.411622, "post" : "206-0033", "e_status" : 0, "SUID" : 5701, "station_g_cd" : 2500308, "add" : "多摩市落合", "line_cd" : 25003, "selected" : false, "open_ymd" : "", "name" : "2500308", "pref_name" : "東京都", "shared_name" : "2500308", "lat" : 35.616671999999994, "y" : -356166.7199999999, "x" : 1394116.22 }, "position" : { "x" : 1394116.22, "y" : -356166.7199999999 }, "selected" : false }, { "data" : { "id" : "5704", "station_name" : "中目黒", "close_ymd" : "", "lon" : 139.698621, "post" : "153-0051", "e_status" : 0, "SUID" : 5704, "station_g_cd" : 2600103, "add" : "目黒区上目黒3-4-1", "line_cd" : 26001, "selected" : false, "open_ymd" : "", "name" : "2600103", "pref_name" : "東京都", "shared_name" : "2600103", "lat" : 35.643854, "y" : -356438.54, "x" : 1396986.21 }, "position" : { "x" : 1396986.21, "y" : -356438.54 }, "selected" : false }, { "data" : { "id" : "5703", "station_name" : "代官山", "close_ymd" : "", "lon" : 139.703284, "post" : "150-0034", "e_status" : 0, "SUID" : 5703, "station_g_cd" : 2600102, "add" : "渋谷区代官山町19-4", "line_cd" : 26001, "selected" : false, "open_ymd" : "", "name" : "2600102", "pref_name" : "東京都", "shared_name" : "2600102", "lat" : 35.648193, "y" : -356481.93, "x" : 1397032.8399999999 }, "position" : { "x" : 1397032.8399999999, "y" : -356481.93 }, "selected" : false }, { "data" : { "id" : "5710", "station_name" : "多摩川", "close_ymd" : "", "lon" : 139.668723, "post" : "145-0071", "e_status" : 0, "SUID" : 5710, "station_g_cd" : 2600109, "add" : "大田区田園調布1-53-8", "line_cd" : 26001, "selected" : false, "open_ymd" : "", "name" : "2600109", "pref_name" : "東京都", "shared_name" : "2600109", "lat" : 35.589591, "y" : -355895.91, "x" : 1396687.23 }, "position" : { "x" : 1396687.23, "y" : -355895.91 }, "selected" : false }, { "data" : { "id" : "5709", "station_name" : "田園調布", "close_ymd" : "", "lon" : 139.667356, "post" : "145-0071", "e_status" : 0, "SUID" : 5709, "station_g_cd" : 2600108, "add" : "大田区田園調布3-25-18", "line_cd" : 26001, "selected" : false, "open_ymd" : "", "name" : "2600108", "pref_name" : "東京都", "shared_name" : "2600108", "lat" : 35.596815, "y" : -355968.15, "x" : 1396673.56 }, "position" : { "x" : 1396673.56, "y" : -355968.15 }, "selected" : false }, { "data" : { "id" : "5655", "station_name" : "玉川学園前", "close_ymd" : "", "lon" : 139.46338799999998, "post" : "194-0041", "e_status" : 0, "SUID" : 5655, "station_g_cd" : 2500126, "add" : "町田市玉川学園2丁目", "line_cd" : 25001, "selected" : false, "open_ymd" : "", "name" : "2500126", "pref_name" : "東京都", "shared_name" : "2500126", "lat" : 35.563486, "y" : -355634.86, "x" : 1394633.88 }, "position" : { "x" : 1394633.88, "y" : -355634.86 }, "selected" : false }, { "data" : { "id" : "5656", "station_name" : "町田", "close_ymd" : "", "lon" : 139.44523600000002, "post" : "194-0013", "e_status" : 0, "SUID" : 5656, "station_g_cd" : 1130611, "add" : "町田市原町田1丁目", "line_cd" : 25001, "selected" : false, "open_ymd" : "", "name" : "2500127", "pref_name" : "東京都", "shared_name" : "2500127", "lat" : 35.544222, "y" : -355442.22, "x" : 1394452.3600000003 }, "position" : { "x" : 1394452.3600000003, "y" : -355442.22 }, "selected" : false }, { "data" : { "id" : "5654", "station_name" : "鶴川", "close_ymd" : "", "lon" : 139.481759, "post" : "195-0053", "e_status" : 0, "SUID" : 5654, "station_g_cd" : 2500125, "add" : "町田市能ケ谷町", "line_cd" : 25001, "selected" : false, "open_ymd" : "", "name" : "2500125", "pref_name" : "東京都", "shared_name" : "2500125", "lat" : 35.583077, "y" : -355830.77, "x" : 1394817.59 }, "position" : { "x" : 1394817.59, "y" : -355830.77 }, "selected" : false }, { "data" : { "id" : "8148", "station_name" : "大塚・帝京大学", "close_ymd" : "", "lon" : 139.416461, "post" : "192-0352", "e_status" : 0, "SUID" : 8148, "station_g_cd" : 9933403, "add" : "八王子市大塚1473", "line_cd" : 99334, "selected" : false, "open_ymd" : "", "name" : "9933403", "pref_name" : "東京都", "shared_name" : "9933403", "lat" : 35.636878, "y" : -356368.78, "x" : 1394164.6099999999 }, "position" : { "x" : 1394164.6099999999, "y" : -356368.78 }, "selected" : false }, { "data" : { "id" : "8147", "station_name" : "松が谷", "close_ymd" : "", "lon" : 139.422201, "post" : "192-0354", "e_status" : 0, "SUID" : 8147, "station_g_cd" : 9933402, "add" : "八王子市松が谷40", "line_cd" : 99334, "selected" : false, "open_ymd" : "", "name" : "9933402", "pref_name" : "東京都", "shared_name" : "9933402", "lat" : 35.63169, "y" : -356316.89999999997, "x" : 1394222.01 }, "position" : { "x" : 1394222.01, "y" : -356316.89999999997 }, "selected" : false }, { "data" : { "id" : "8146", "station_name" : "多摩センター", "close_ymd" : "", "lon" : 139.422782, "post" : "206-0033", "e_status" : 0, "SUID" : 8146, "station_g_cd" : 2400208, "add" : "多摩市落合1-48-1", "line_cd" : 99334, "selected" : false, "open_ymd" : "", "name" : "9933401", "pref_name" : "東京都", "shared_name" : "9933401", "lat" : 35.623723999999996, "y" : -356237.23999999993, "x" : 1394227.82 }, "position" : { "x" : 1394227.82, "y" : -356237.23999999993 }, "selected" : false }, { "data" : { "id" : "7783", "station_name" : "新御徒町", "close_ymd" : "", "lon" : 139.781958, "post" : "111-0041", "e_status" : 0, "SUID" : 7783, "station_g_cd" : 9930111, "add" : "台東区元浅草1-5-2", "line_cd" : 99309, "selected" : false, "open_ymd" : "", "name" : "9930902", "pref_name" : "東京都", "shared_name" : "9930902", "lat" : 35.707045, "y" : -357070.45, "x" : 1397819.58 }, "position" : { "x" : 1397819.58, "y" : -357070.45 }, "selected" : false }, { "data" : { "id" : "7784", "station_name" : "浅草", "close_ymd" : "", "lon" : 139.792389, "post" : "", "e_status" : 0, "SUID" : 7784, "station_g_cd" : 9930903, "add" : "東京都台東区", "line_cd" : 99309, "selected" : false, "open_ymd" : "", "name" : "9930903", "pref_name" : "東京都", "shared_name" : "9930903", "lat" : 35.713817, "y" : -357138.17, "x" : 1397923.89 }, "position" : { "x" : 1397923.89, "y" : -357138.17 }, "selected" : false }, { "data" : { "id" : "7782", "station_name" : "秋葉原", "close_ymd" : "", "lon" : 139.774273, "post" : "", "e_status" : 0, "SUID" : 7782, "station_g_cd" : 1130222, "add" : "東京都千代田区", "line_cd" : 99309, "selected" : false, "open_ymd" : "", "name" : "9930901", "pref_name" : "東京都", "shared_name" : "9930901", "lat" : 35.698889, "y" : -356988.89, "x" : 1397742.73 }, "position" : { "x" : 1397742.73, "y" : -356988.89 }, "selected" : false }, { "data" : { "id" : "7787", "station_name" : "青井", "close_ymd" : "", "lon" : 139.82038, "post" : "120-0012", "e_status" : 0, "SUID" : 7787, "station_g_cd" : 9930906, "add" : "足立区青井三丁目", "line_cd" : 99309, "selected" : false, "open_ymd" : "", "name" : "9930906", "pref_name" : "東京都", "shared_name" : "9930906", "lat" : 35.771782, "y" : -357717.82, "x" : 1398203.8 }, "position" : { "x" : 1398203.8, "y" : -357717.82 }, "selected" : false }, { "data" : { "id" : "7788", "station_name" : "六町", "close_ymd" : "", "lon" : 139.82181599999998, "post" : "121-0073", "e_status" : 0, "SUID" : 7788, "station_g_cd" : 9930907, "add" : "足立区六町四丁目", "line_cd" : 99309, "selected" : false, "open_ymd" : "", "name" : "9930907", "pref_name" : "東京都", "shared_name" : "9930907", "lat" : 35.784963, "y" : -357849.63, "x" : 1398218.16 }, "position" : { "x" : 1398218.16, "y" : -357849.63 }, "selected" : false }, { "data" : { "id" : "7785", "station_name" : "南千住", "close_ymd" : "", "lon" : 139.79878300000001, "post" : "116-0003", "e_status" : 0, "SUID" : 7785, "station_g_cd" : 1132004, "add" : "荒川区南千住4丁目", "line_cd" : 99309, "selected" : false, "open_ymd" : "", "name" : "9930904", "pref_name" : "東京都", "shared_name" : "9930904", "lat" : 35.732413, "y" : -357324.13, "x" : 1397987.83 }, "position" : { "x" : 1397987.83, "y" : -357324.13 }, "selected" : false }, { "data" : { "id" : "7786", "station_name" : "北千住", "close_ymd" : "", "lon" : 139.805092, "post" : "120-0026", "e_status" : 0, "SUID" : 7786, "station_g_cd" : 1132005, "add" : "足立区千住旭町", "line_cd" : 99309, "selected" : false, "open_ymd" : "", "name" : "9930905", "pref_name" : "東京都", "shared_name" : "9930905", "lat" : 35.74949, "y" : -357494.9, "x" : 1398050.92 }, "position" : { "x" : 1398050.92, "y" : -357494.9 }, "selected" : false }, { "data" : { "id" : "7813", "station_name" : "お台場海浜公園", "close_ymd" : "", "lon" : 139.778607, "post" : "135-0091", "e_status" : 0, "SUID" : 7813, "station_g_cd" : 9931106, "add" : "港区台場2-3", "line_cd" : 99311, "selected" : false, "open_ymd" : "", "name" : "9931106", "pref_name" : "東京都", "shared_name" : "9931106", "lat" : 35.629813, "y" : -356298.13, "x" : 1397786.0699999998 }, "position" : { "x" : 1397786.0699999998, "y" : -356298.13 }, "selected" : false }, { "data" : { "id" : "7814", "station_name" : "台場", "close_ymd" : "", "lon" : 139.771435, "post" : "135-0091", "e_status" : 0, "SUID" : 7814, "station_g_cd" : 9931107, "add" : "港区台場2-6", "line_cd" : 99311, "selected" : false, "open_ymd" : "", "name" : "9931107", "pref_name" : "東京都", "shared_name" : "9931107", "lat" : 35.625908, "y" : -356259.08, "x" : 1397714.3499999999 }, "position" : { "x" : 1397714.3499999999, "y" : -356259.08 }, "selected" : false }, { "data" : { "id" : "7815", "station_name" : "船の科学館", "close_ymd" : "", "lon" : 139.773157, "post" : "135-0064", "e_status" : 0, "SUID" : 7815, "station_g_cd" : 9931108, "add" : "江東区青海1", "line_cd" : 99311, "selected" : false, "open_ymd" : "", "name" : "9931108", "pref_name" : "東京都", "shared_name" : "9931108", "lat" : 35.621462, "y" : -356214.62, "x" : 1397731.57 }, "position" : { "x" : 1397731.57, "y" : -356214.62 }, "selected" : false }, { "data" : { "id" : "7816", "station_name" : "テレコムセンター", "close_ymd" : "", "lon" : 139.779327, "post" : "135-0064", "e_status" : 0, "SUID" : 7816, "station_g_cd" : 9931109, "add" : "江東区青海2-29", "line_cd" : 99311, "selected" : false, "open_ymd" : "", "name" : "9931109", "pref_name" : "東京都", "shared_name" : "9931109", "lat" : 35.617593, "y" : -356175.93, "x" : 1397793.27 }, "position" : { "x" : 1397793.27, "y" : -356175.93 }, "selected" : false }, { "data" : { "id" : "7817", "station_name" : "青海", "close_ymd" : "", "lon" : 139.781132, "post" : "135-0064", "e_status" : 0, "SUID" : 7817, "station_g_cd" : 9931110, "add" : "江東区青海1", "line_cd" : 99311, "selected" : false, "open_ymd" : "", "name" : "9931110", "pref_name" : "東京都", "shared_name" : "9931110", "lat" : 35.62467, "y" : -356246.7, "x" : 1397811.32 }, "position" : { "x" : 1397811.32, "y" : -356246.7 }, "selected" : false }, { "data" : { "id" : "7818", "station_name" : "国際展示場正門", "close_ymd" : "", "lon" : 139.791228, "post" : "135-0063", "e_status" : 0, "SUID" : 7818, "station_g_cd" : 9931111, "add" : "江東区有明3-1", "line_cd" : 99311, "selected" : false, "open_ymd" : "", "name" : "9931111", "pref_name" : "東京都", "shared_name" : "9931111", "lat" : 35.630158, "y" : -356301.58, "x" : 1397912.2799999998 }, "position" : { "x" : 1397912.2799999998, "y" : -356301.58 }, "selected" : false }, { "data" : { "id" : "7819", "station_name" : "有明", "close_ymd" : "", "lon" : 139.79326899999998, "post" : "135-0063", "e_status" : 0, "SUID" : 7819, "station_g_cd" : 9931112, "add" : "江東区有明2-5", "line_cd" : 99311, "selected" : false, "open_ymd" : "", "name" : "9931112", "pref_name" : "東京都", "shared_name" : "9931112", "lat" : 35.634596, "y" : -356345.96, "x" : 1397932.6899999997 }, "position" : { "x" : 1397932.6899999997, "y" : -356345.96 }, "selected" : false }, { "data" : { "id" : "7820", "station_name" : "有明テニスの森", "close_ymd" : "", "lon" : 139.78888, "post" : "135-0063", "e_status" : 0, "SUID" : 7820, "station_g_cd" : 9931113, "add" : "江東区有明1丁目", "line_cd" : 99311, "selected" : false, "open_ymd" : "", "name" : "9931113", "pref_name" : "東京都", "shared_name" : "9931113", "lat" : 35.639964, "y" : -356399.64, "x" : 1397888.8 }, "position" : { "x" : 1397888.8, "y" : -356399.64 }, "selected" : false }, { "data" : { "id" : "7821", "station_name" : "市場前", "close_ymd" : "", "lon" : 139.78564, "post" : "135-0061", "e_status" : 0, "SUID" : 7821, "station_g_cd" : 9931114, "add" : "江東区豊洲6丁目", "line_cd" : 99311, "selected" : false, "open_ymd" : "", "name" : "9931114", "pref_name" : "東京都", "shared_name" : "9931114", "lat" : 35.645684, "y" : -356456.84, "x" : 1397856.4 }, "position" : { "x" : 1397856.4, "y" : -356456.84 }, "selected" : false }, { "data" : { "id" : "7822", "station_name" : "新豊洲", "close_ymd" : "", "lon" : 139.789996, "post" : "135-0061", "e_status" : 0, "SUID" : 7822, "station_g_cd" : 9931115, "add" : "江東区豊洲6丁目", "line_cd" : 99311, "selected" : false, "open_ymd" : "", "name" : "9931115", "pref_name" : "東京都", "shared_name" : "9931115", "lat" : 35.648718, "y" : -356487.18000000005, "x" : 1397899.96 }, "position" : { "x" : 1397899.96, "y" : -356487.18000000005 }, "selected" : false }, { "data" : { "id" : "7823", "station_name" : "豊洲", "close_ymd" : "", "lon" : 139.795414, "post" : "", "e_status" : 0, "SUID" : 7823, "station_g_cd" : 2800622, "add" : "東京都江東区豊洲", "line_cd" : 99311, "selected" : false, "open_ymd" : "", "name" : "9931116", "pref_name" : "東京都", "shared_name" : "9931116", "lat" : 35.653791999999996, "y" : -356537.92, "x" : 1397954.14 }, "position" : { "x" : 1397954.14, "y" : -356537.92 }, "selected" : false }, { "data" : { "id" : "7808", "station_name" : "新橋", "close_ymd" : "", "lon" : 139.75964399999998, "post" : "", "e_status" : 0, "SUID" : 7808, "station_g_cd" : 1130102, "add" : "東京都港区東新橋一丁目5-13", "line_cd" : 99311, "selected" : false, "open_ymd" : "", "name" : "9931101", "pref_name" : "東京都", "shared_name" : "9931101", "lat" : 35.665503, "y" : -356655.03, "x" : 1397596.4399999997 }, "position" : { "x" : 1397596.4399999997, "y" : -356655.03 }, "selected" : false }, { "data" : { "id" : "7810", "station_name" : "竹芝", "close_ymd" : "", "lon" : 139.76203700000002, "post" : "105-0022", "e_status" : 0, "SUID" : 7810, "station_g_cd" : 9931103, "add" : "港区海岸1-13-10", "line_cd" : 99311, "selected" : false, "open_ymd" : "", "name" : "9931103", "pref_name" : "東京都", "shared_name" : "9931103", "lat" : 35.654099, "y" : -356540.99000000005, "x" : 1397620.37 }, "position" : { "x" : 1397620.37, "y" : -356540.99000000005 }, "selected" : false }, { "data" : { "id" : "7809", "station_name" : "汐留", "close_ymd" : "", "lon" : 139.759985, "post" : "105-0021", "e_status" : 0, "SUID" : 7809, "station_g_cd" : 9930120, "add" : "港区東新橋1丁目5", "line_cd" : 99311, "selected" : false, "open_ymd" : "", "name" : "9931102", "pref_name" : "東京都", "shared_name" : "9931102", "lat" : 35.662871, "y" : -356628.71, "x" : 1397599.85 }, "position" : { "x" : 1397599.85, "y" : -356628.71 }, "selected" : false }, { "data" : { "id" : "7812", "station_name" : "芝浦ふ頭", "close_ymd" : "", "lon" : 139.757852, "post" : "108-0022", "e_status" : 0, "SUID" : 7812, "station_g_cd" : 9931105, "add" : "港区海岸3-22-12", "line_cd" : 99311, "selected" : false, "open_ymd" : "", "name" : "9931105", "pref_name" : "東京都", "shared_name" : "9931105", "lat" : 35.641773, "y" : -356417.73, "x" : 1397578.5200000003 }, "position" : { "x" : 1397578.5200000003, "y" : -356417.73 }, "selected" : false }, { "data" : { "id" : "7811", "station_name" : "日の出", "close_ymd" : "", "lon" : 139.75906, "post" : "105-0022", "e_status" : 0, "SUID" : 7811, "station_g_cd" : 9931104, "add" : "港区海岸2-7-68", "line_cd" : 99311, "selected" : false, "open_ymd" : "", "name" : "9931104", "pref_name" : "東京都", "shared_name" : "9931104", "lat" : 35.649136, "y" : -356491.36, "x" : 1397590.6 }, "position" : { "x" : 1397590.6, "y" : -356491.36 }, "selected" : false }, { "data" : { "id" : "7723", "station_name" : "舎人", "close_ymd" : "", "lon" : 139.770108, "post" : "121-0831", "e_status" : 0, "SUID" : 7723, "station_g_cd" : 9934212, "add" : "足立区舎人1-16-15", "line_cd" : 99342, "selected" : false, "open_ymd" : "", "name" : "9934212", "pref_name" : "東京都", "shared_name" : "9934212", "lat" : 35.8057, "y" : -358057.0, "x" : 1397701.0799999998 }, "position" : { "x" : 1397701.0799999998, "y" : -358057.0 }, "selected" : false }, { "data" : { "id" : "7724", "station_name" : "見沼代親水公園", "close_ymd" : "", "lon" : 139.77071899999999, "post" : "121-0831", "e_status" : 0, "SUID" : 7724, "station_g_cd" : 9934213, "add" : "足立区舎人2-21-13", "line_cd" : 99342, "selected" : false, "open_ymd" : "", "name" : "9934213", "pref_name" : "東京都", "shared_name" : "9934213", "lat" : 35.814544, "y" : -358145.44, "x" : 1397707.19 }, "position" : { "x" : 1397707.19, "y" : -358145.44 }, "selected" : false }, { "data" : { "id" : "7721", "station_name" : "谷在家", "close_ymd" : "", "lon" : 139.770043, "post" : "123-0863", "e_status" : 0, "SUID" : 7721, "station_g_cd" : 9934210, "add" : "足立区谷在家3-20-23", "line_cd" : 99342, "selected" : false, "open_ymd" : "", "name" : "9934210", "pref_name" : "東京都", "shared_name" : "9934210", "lat" : 35.788774, "y" : -357887.74, "x" : 1397700.43 }, "position" : { "x" : 1397700.43, "y" : -357887.74 }, "selected" : false }, { "data" : { "id" : "7722", "station_name" : "舎人公園", "close_ymd" : "", "lon" : 139.770183, "post" : "121-0837", "e_status" : 0, "SUID" : 7722, "station_g_cd" : 9934211, "add" : "足立区舎人公園1-10", "line_cd" : 99342, "selected" : false, "open_ymd" : "", "name" : "9934211", "pref_name" : "東京都", "shared_name" : "9934211", "lat" : 35.79623, "y" : -357962.3, "x" : 1397701.83 }, "position" : { "x" : 1397701.83, "y" : -357962.3 }, "selected" : false }, { "data" : { "id" : "7719", "station_name" : "江北", "close_ymd" : "", "lon" : 139.770306, "post" : "123-0872", "e_status" : 0, "SUID" : 7719, "station_g_cd" : 9934208, "add" : "足立区江北4-30-27", "line_cd" : 99342, "selected" : false, "open_ymd" : "", "name" : "9934208", "pref_name" : "東京都", "shared_name" : "9934208", "lat" : 35.774021000000005, "y" : -357740.21, "x" : 1397703.06 }, "position" : { "x" : 1397703.06, "y" : -357740.21 }, "selected" : false }, { "data" : { "id" : "7720", "station_name" : "西新井大師西", "close_ymd" : "", "lon" : 139.770094, "post" : "123-0872", "e_status" : 0, "SUID" : 7720, "station_g_cd" : 9934209, "add" : "足立区江北6-30-23", "line_cd" : 99342, "selected" : false, "open_ymd" : "", "name" : "9934209", "pref_name" : "東京都", "shared_name" : "9934209", "lat" : 35.781504999999996, "y" : -357815.04999999993, "x" : 1397700.94 }, "position" : { "x" : 1397700.94, "y" : -357815.04999999993 }, "selected" : false }, { "data" : { "id" : "7717", "station_name" : "扇大橋", "close_ymd" : "", "lon" : 139.77080800000002, "post" : "123-0873", "e_status" : 0, "SUID" : 7717, "station_g_cd" : 9934206, "add" : "足立区扇2-25-7", "line_cd" : 99342, "selected" : false, "open_ymd" : "", "name" : "9934206", "pref_name" : "東京都", "shared_name" : "9934206", "lat" : 35.763897, "y" : -357638.97, "x" : 1397708.08 }, "position" : { "x" : 1397708.08, "y" : -357638.97 }, "selected" : false }, { "data" : { "id" : "7718", "station_name" : "高野", "close_ymd" : "", "lon" : 139.770679, "post" : "123-0873", "e_status" : 0, "SUID" : 7718, "station_g_cd" : 9934207, "add" : "足立区扇2-45-1", "line_cd" : 99342, "selected" : false, "open_ymd" : "", "name" : "9934207", "pref_name" : "東京都", "shared_name" : "9934207", "lat" : 35.768359000000004, "y" : -357683.59, "x" : 1397706.79 }, "position" : { "x" : 1397706.79, "y" : -357683.59 }, "selected" : false }, { "data" : { "id" : "7708", "station_name" : "鬼子母神前", "close_ymd" : "", "lon" : 139.714916, "post" : "171-0032", "e_status" : 0, "SUID" : 7708, "station_g_cd" : 2801010, "add" : "豊島区雑司が谷2", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930527", "pref_name" : "東京都", "shared_name" : "9930527", "lat" : 35.720403000000005, "y" : -357204.03, "x" : 1397149.16 }, "position" : { "x" : 1397149.16, "y" : -357204.03 }, "selected" : false }, { "data" : { "id" : "7707", "station_name" : "都電雑司ヶ谷", "close_ymd" : "", "lon" : 139.718006, "post" : "", "e_status" : 0, "SUID" : 7707, "station_g_cd" : 9930526, "add" : "東京都豊島区南池袋", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930526", "pref_name" : "東京都", "shared_name" : "9930526", "lat" : 35.724261, "y" : -357242.61, "x" : 1397180.06 }, "position" : { "x" : 1397180.06, "y" : -357242.61 }, "selected" : false }, { "data" : { "id" : "7706", "station_name" : "東池袋四丁目", "close_ymd" : "", "lon" : 139.720012, "post" : "170-0013", "e_status" : 0, "SUID" : 7706, "station_g_cd" : 2800610, "add" : "豊島区東池袋5", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930525", "pref_name" : "東京都", "shared_name" : "9930525", "lat" : 35.72528, "y" : -357252.8, "x" : 1397200.1199999999 }, "position" : { "x" : 1397200.1199999999, "y" : -357252.8 }, "selected" : false }, { "data" : { "id" : "7705", "station_name" : "向原", "close_ymd" : "", "lon" : 139.724894, "post" : "170-0005", "e_status" : 0, "SUID" : 7705, "station_g_cd" : 9930524, "add" : "豊島区南大塚3", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930524", "pref_name" : "東京都", "shared_name" : "9930524", "lat" : 35.728938, "y" : -357289.38, "x" : 1397248.9400000002 }, "position" : { "x" : 1397248.9400000002, "y" : -357289.38 }, "selected" : false }, { "data" : { "id" : "7704", "station_name" : "大塚駅前", "close_ymd" : "", "lon" : 139.729593, "post" : "170-0005", "e_status" : 0, "SUID" : 7704, "station_g_cd" : 1130213, "add" : "豊島区南大塚3", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930523", "pref_name" : "東京都", "shared_name" : "9930523", "lat" : 35.732082, "y" : -357320.82, "x" : 1397295.93 }, "position" : { "x" : 1397295.93, "y" : -357320.82 }, "selected" : false }, { "data" : { "id" : "7703", "station_name" : "巣鴨新田", "close_ymd" : "", "lon" : 139.727769, "post" : "170-0001", "e_status" : 0, "SUID" : 7703, "station_g_cd" : 9930522, "add" : "豊島区西巣鴨1", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930522", "pref_name" : "東京都", "shared_name" : "9930522", "lat" : 35.735488000000004, "y" : -357354.88000000006, "x" : 1397277.69 }, "position" : { "x" : 1397277.69, "y" : -357354.88000000006 }, "selected" : false }, { "data" : { "id" : "6078", "station_name" : "渋谷", "close_ymd" : "", "lon" : 139.702417, "post" : "", "e_status" : 0, "SUID" : 6078, "station_g_cd" : 1130205, "add" : "東京都渋谷区道玄坂二丁目1-1", "line_cd" : 28010, "selected" : false, "open_ymd" : "", "name" : "2801016", "pref_name" : "東京都", "shared_name" : "2801016", "lat" : 35.659545, "y" : -356595.45, "x" : 1397024.17 }, "position" : { "x" : 1397024.17, "y" : -356595.45 }, "selected" : false }, { "data" : { "id" : "7702", "station_name" : "庚申塚", "close_ymd" : "", "lon" : 139.72974299999998, "post" : "170-0001", "e_status" : 0, "SUID" : 7702, "station_g_cd" : 9930521, "add" : "豊島区西巣鴨3", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930521", "pref_name" : "東京都", "shared_name" : "9930521", "lat" : 35.739563000000004, "y" : -357395.63000000006, "x" : 1397297.43 }, "position" : { "x" : 1397297.43, "y" : -357395.63000000006 }, "selected" : false }, { "data" : { "id" : "6077", "station_name" : "明治神宮前〈原宿〉", "close_ymd" : "", "lon" : 139.705367, "post" : "150-0001", "e_status" : 0, "SUID" : 6077, "station_g_cd" : 1130206, "add" : "渋谷区神宮前1丁目", "line_cd" : 28010, "selected" : false, "open_ymd" : "", "name" : "2801015", "pref_name" : "東京都", "shared_name" : "2801015", "lat" : 35.668496999999995, "y" : -356684.97, "x" : 1397053.67 }, "position" : { "x" : 1397053.67, "y" : -356684.97 }, "selected" : false }, { "data" : { "id" : "7701", "station_name" : "新庚申塚", "close_ymd" : "", "lon" : 139.730451, "post" : "170-0001", "e_status" : 0, "SUID" : 7701, "station_g_cd" : 9930520, "add" : "豊島区西巣鴨4", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930520", "pref_name" : "東京都", "shared_name" : "9930520", "lat" : 35.741347999999995, "y" : -357413.4799999999, "x" : 1397304.5099999998 }, "position" : { "x" : 1397304.5099999998, "y" : -357413.4799999999 }, "selected" : false }, { "data" : { "id" : "7716", "station_name" : "足立小台", "close_ymd" : "", "lon" : 139.77038100000001, "post" : "120-0046", "e_status" : 0, "SUID" : 7716, "station_g_cd" : 9934205, "add" : "足立区小台1-20-1", "line_cd" : 99342, "selected" : false, "open_ymd" : "", "name" : "9934205", "pref_name" : "東京都", "shared_name" : "9934205", "lat" : 35.754658, "y" : -357546.58, "x" : 1397703.81 }, "position" : { "x" : 1397703.81, "y" : -357546.58 }, "selected" : false }, { "data" : { "id" : "6076", "station_name" : "北参道", "close_ymd" : "", "lon" : 139.705453, "post" : "151-0051", "e_status" : 0, "SUID" : 6076, "station_g_cd" : 2801014, "add" : "渋谷区千駄ヶ谷4丁目", "line_cd" : 28010, "selected" : false, "open_ymd" : "", "name" : "2801014", "pref_name" : "東京都", "shared_name" : "2801014", "lat" : 35.678459000000004, "y" : -356784.59, "x" : 1397054.53 }, "position" : { "x" : 1397054.53, "y" : -356784.59 }, "selected" : false }, { "data" : { "id" : "6075", "station_name" : "新宿三丁目", "close_ymd" : "", "lon" : 139.704828, "post" : "160-0022", "e_status" : 0, "SUID" : 6075, "station_g_cd" : 2800217, "add" : "新宿区新宿3-14-1", "line_cd" : 28010, "selected" : false, "open_ymd" : "", "name" : "2801013", "pref_name" : "東京都", "shared_name" : "2801013", "lat" : 35.690853000000004, "y" : -356908.53, "x" : 1397048.28 }, "position" : { "x" : 1397048.28, "y" : -356908.53 }, "selected" : false }, { "data" : { "id" : "7715", "station_name" : "熊野前", "close_ymd" : "", "lon" : 139.76969499999998, "post" : "116-0012", "e_status" : 0, "SUID" : 7715, "station_g_cd" : 9930509, "add" : "荒川区東尾久5", "line_cd" : 99342, "selected" : false, "open_ymd" : "", "name" : "9934204", "pref_name" : "東京都", "shared_name" : "9934204", "lat" : 35.748971999999995, "y" : -357489.72, "x" : 1397696.95 }, "position" : { "x" : 1397696.95, "y" : -357489.72 }, "selected" : false }, { "data" : { "id" : "6074", "station_name" : "東新宿", "close_ymd" : "", "lon" : 139.707593, "post" : "160-0022", "e_status" : 0, "SUID" : 6074, "station_g_cd" : 2801012, "add" : "新宿区新宿7-27-3", "line_cd" : 28010, "selected" : false, "open_ymd" : "", "name" : "2801012", "pref_name" : "東京都", "shared_name" : "2801012", "lat" : 35.698915, "y" : -356989.15, "x" : 1397075.93 }, "position" : { "x" : 1397075.93, "y" : -356989.15 }, "selected" : false }, { "data" : { "id" : "7714", "station_name" : "赤土小学校前", "close_ymd" : "", "lon" : 139.76898899999998, "post" : "116-0012", "e_status" : 0, "SUID" : 7714, "station_g_cd" : 9934203, "add" : "荒川区東尾久4-7-7", "line_cd" : 99342, "selected" : false, "open_ymd" : "", "name" : "9934203", "pref_name" : "東京都", "shared_name" : "9934203", "lat" : 35.742453999999995, "y" : -357424.54, "x" : 1397689.8899999997 }, "position" : { "x" : 1397689.8899999997, "y" : -357424.54 }, "selected" : false }, { "data" : { "id" : "6073", "station_name" : "西早稲田", "close_ymd" : "", "lon" : 139.709101, "post" : "162-0051", "e_status" : 0, "SUID" : 6073, "station_g_cd" : 2801011, "add" : "新宿区西早稲田二丁目", "line_cd" : 28010, "selected" : false, "open_ymd" : "", "name" : "2801011", "pref_name" : "東京都", "shared_name" : "2801011", "lat" : 35.708242, "y" : -357082.42, "x" : 1397091.01 }, "position" : { "x" : 1397091.01, "y" : -357082.42 }, "selected" : false }, { "data" : { "id" : "7713", "station_name" : "西日暮里", "close_ymd" : "", "lon" : 139.76685700000002, "post" : "", "e_status" : 0, "SUID" : 7713, "station_g_cd" : 1130217, "add" : "東京都荒川区西日暮里五丁目31-7", "line_cd" : 99342, "selected" : false, "open_ymd" : "", "name" : "9934202", "pref_name" : "東京都", "shared_name" : "9934202", "lat" : 35.731953999999995, "y" : -357319.5399999999, "x" : 1397668.57 }, "position" : { "x" : 1397668.57, "y" : -357319.5399999999 }, "selected" : false }, { "data" : { "id" : "6072", "station_name" : "雑司が谷", "close_ymd" : "", "lon" : 139.714795, "post" : "171-0032", "e_status" : 0, "SUID" : 6072, "station_g_cd" : 2801010, "add" : "豊島区雑司が谷二丁目", "line_cd" : 28010, "selected" : false, "open_ymd" : "", "name" : "2801010", "pref_name" : "東京都", "shared_name" : "2801010", "lat" : 35.720233, "y" : -357202.33, "x" : 1397147.9500000002 }, "position" : { "x" : 1397147.9500000002, "y" : -357202.33 }, "selected" : false }, { "data" : { "id" : "7712", "station_name" : "日暮里", "close_ymd" : "", "lon" : 139.771287, "post" : "116-0013", "e_status" : 0, "SUID" : 7712, "station_g_cd" : 1130218, "add" : "東京都荒川区西日暮里二丁目19-1", "line_cd" : 99342, "selected" : false, "open_ymd" : "1905-04-01", "name" : "9934201", "pref_name" : "東京都", "shared_name" : "9934201", "lat" : 35.727908, "y" : -357279.08, "x" : 1397712.87 }, "position" : { "x" : 1397712.87, "y" : -357279.08 }, "selected" : false }, { "data" : { "id" : "6071", "station_name" : "池袋", "close_ymd" : "", "lon" : 139.708291, "post" : "", "e_status" : 0, "SUID" : 6071, "station_g_cd" : 1130212, "add" : "東京都豊島区", "line_cd" : 28010, "selected" : false, "open_ymd" : "", "name" : "2801009", "pref_name" : "東京都", "shared_name" : "2801009", "lat" : 35.731464, "y" : -357314.64, "x" : 1397082.91 }, "position" : { "x" : 1397082.91, "y" : -357314.64 }, "selected" : false }, { "data" : { "id" : "7711", "station_name" : "早稲田", "close_ymd" : "", "lon" : 139.718928, "post" : "", "e_status" : 0, "SUID" : 7711, "station_g_cd" : 9930530, "add" : "東京都新宿区", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930530", "pref_name" : "東京都", "shared_name" : "9930530", "lat" : 35.711847999999996, "y" : -357118.48, "x" : 1397189.28 }, "position" : { "x" : 1397189.28, "y" : -357118.48 }, "selected" : false }, { "data" : { "id" : "6070", "station_name" : "要町", "close_ymd" : "", "lon" : 139.698715, "post" : "", "e_status" : 0, "SUID" : 6070, "station_g_cd" : 2800608, "add" : "東京都豊島区要町一丁目1-10", "line_cd" : 28010, "selected" : false, "open_ymd" : "", "name" : "2801008", "pref_name" : "東京都", "shared_name" : "2801008", "lat" : 35.73323, "y" : -357332.3, "x" : 1396987.15 }, "position" : { "x" : 1396987.15, "y" : -357332.3 }, "selected" : false }, { "data" : { "id" : "7710", "station_name" : "面影橋", "close_ymd" : "", "lon" : 139.714444, "post" : "169-0051", "e_status" : 0, "SUID" : 7710, "station_g_cd" : 9930529, "add" : "新宿区西早稲田3", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930529", "pref_name" : "東京都", "shared_name" : "9930529", "lat" : 35.712981, "y" : -357129.81, "x" : 1397144.44 }, "position" : { "x" : 1397144.44, "y" : -357129.81 }, "selected" : false }, { "data" : { "id" : "6069", "station_name" : "千川", "close_ymd" : "", "lon" : 139.689271, "post" : "", "e_status" : 0, "SUID" : 6069, "station_g_cd" : 2800607, "add" : "東京都豊島区要町三丁目10-7", "line_cd" : 28010, "selected" : false, "open_ymd" : "", "name" : "2801007", "pref_name" : "東京都", "shared_name" : "2801007", "lat" : 35.738229, "y" : -357382.29, "x" : 1396892.71 }, "position" : { "x" : 1396892.71, "y" : -357382.29 }, "selected" : false }, { "data" : { "id" : "7709", "station_name" : "学習院下", "close_ymd" : "", "lon" : 139.71247, "post" : "171-0033", "e_status" : 0, "SUID" : 7709, "station_g_cd" : 9930528, "add" : "豊島区高田2", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930528", "pref_name" : "東京都", "shared_name" : "9930528", "lat" : 35.716248, "y" : -357162.48, "x" : 1397124.7 }, "position" : { "x" : 1397124.7, "y" : -357162.48 }, "selected" : false }, { "data" : { "id" : "6065", "station_name" : "地下鉄赤塚", "close_ymd" : "", "lon" : 139.644021, "post" : "", "e_status" : 0, "SUID" : 6065, "station_g_cd" : 2100109, "add" : "東京都練馬区北町八丁目37-16", "line_cd" : 28010, "selected" : false, "open_ymd" : "", "name" : "2801003", "pref_name" : "東京都", "shared_name" : "2801003", "lat" : 35.769939, "y" : -357699.39, "x" : 1396440.2100000002 }, "position" : { "x" : 1396440.2100000002, "y" : -357699.39 }, "selected" : false }, { "data" : { "id" : "6066", "station_name" : "平和台", "close_ymd" : "", "lon" : 139.653762, "post" : "", "e_status" : 0, "SUID" : 6066, "station_g_cd" : 2800604, "add" : "東京都練馬区早宮2-17-48", "line_cd" : 28010, "selected" : false, "open_ymd" : "", "name" : "2801004", "pref_name" : "東京都", "shared_name" : "2801004", "lat" : 35.757863, "y" : -357578.63, "x" : 1396537.62 }, "position" : { "x" : 1396537.62, "y" : -357578.63 }, "selected" : false }, { "data" : { "id" : "6067", "station_name" : "氷川台", "close_ymd" : "", "lon" : 139.66556699999998, "post" : "", "e_status" : 0, "SUID" : 6067, "station_g_cd" : 2800605, "add" : "東京都練馬区氷川台三丁目38-18", "line_cd" : 28010, "selected" : false, "open_ymd" : "", "name" : "2801005", "pref_name" : "東京都", "shared_name" : "2801005", "lat" : 35.74955, "y" : -357495.5, "x" : 1396655.67 }, "position" : { "x" : 1396655.67, "y" : -357495.5 }, "selected" : false }, { "data" : { "id" : "6068", "station_name" : "小竹向原", "close_ymd" : "", "lon" : 139.678572, "post" : "", "e_status" : 0, "SUID" : 6068, "station_g_cd" : 2200301, "add" : "東京都練馬区小竹町二丁目16-15", "line_cd" : 28010, "selected" : false, "open_ymd" : "", "name" : "2801006", "pref_name" : "東京都", "shared_name" : "2801006", "lat" : 35.743803, "y" : -357438.02999999997, "x" : 1396785.72 }, "position" : { "x" : 1396785.72, "y" : -357438.02999999997 }, "selected" : false }, { "data" : { "id" : "6061", "station_name" : "白金台", "close_ymd" : "", "lon" : 139.726133, "post" : "108-0071", "e_status" : 0, "SUID" : 6061, "station_g_cd" : 2800918, "add" : "港区白金台3-2", "line_cd" : 28009, "selected" : false, "open_ymd" : "", "name" : "2800918", "pref_name" : "東京都", "shared_name" : "2800918", "lat" : 35.637917, "y" : -356379.17000000004, "x" : 1397261.33 }, "position" : { "x" : 1397261.33, "y" : -356379.17000000004 }, "selected" : false }, { "data" : { "id" : "6062", "station_name" : "目黒", "close_ymd" : "", "lon" : 139.7155, "post" : "", "e_status" : 0, "SUID" : 6062, "station_g_cd" : 1130203, "add" : "東京都品川区上大崎四丁目2-1", "line_cd" : 28009, "selected" : false, "open_ymd" : "", "name" : "2800919", "pref_name" : "東京都", "shared_name" : "2800919", "lat" : 35.633272, "y" : -356332.72, "x" : 1397155.0 }, "position" : { "x" : 1397155.0, "y" : -356332.72 }, "selected" : false }, { "data" : { "id" : "6064", "station_name" : "地下鉄成増", "close_ymd" : "", "lon" : 139.631497, "post" : "", "e_status" : 0, "SUID" : 6064, "station_g_cd" : 2100110, "add" : "東京都板橋区成増二丁目11-3", "line_cd" : 28010, "selected" : false, "open_ymd" : "", "name" : "2801002", "pref_name" : "東京都", "shared_name" : "2801002", "lat" : 35.776557000000004, "y" : -357765.57000000007, "x" : 1396314.97 }, "position" : { "x" : 1396314.97, "y" : -357765.57000000007 }, "selected" : false }, { "data" : { "id" : "6057", "station_name" : "溜池山王", "close_ymd" : "", "lon" : 139.741419, "post" : "100-0014", "e_status" : 0, "SUID" : 6057, "station_g_cd" : 2800114, "add" : "千代田区永田町2-11-1", "line_cd" : 28009, "selected" : false, "open_ymd" : "", "name" : "2800914", "pref_name" : "東京都", "shared_name" : "2800914", "lat" : 35.673621000000004, "y" : -356736.21, "x" : 1397414.1900000002 }, "position" : { "x" : 1397414.1900000002, "y" : -356736.21 }, "selected" : false }, { "data" : { "id" : "6058", "station_name" : "六本木一丁目", "close_ymd" : "", "lon" : 139.739, "post" : "106-0032", "e_status" : 0, "SUID" : 6058, "station_g_cd" : 2800915, "add" : "港区六本木1-4-1", "line_cd" : 28009, "selected" : false, "open_ymd" : "", "name" : "2800915", "pref_name" : "東京都", "shared_name" : "2800915", "lat" : 35.665595, "y" : -356655.95, "x" : 1397390.0 }, "position" : { "x" : 1397390.0, "y" : -356655.95 }, "selected" : false }, { "data" : { "id" : "6059", "station_name" : "麻布十番", "close_ymd" : "", "lon" : 139.737051, "post" : "106-0045", "e_status" : 0, "SUID" : 6059, "station_g_cd" : 2800916, "add" : "港区麻布十番4-4-9", "line_cd" : 28009, "selected" : false, "open_ymd" : "", "name" : "2800916", "pref_name" : "東京都", "shared_name" : "2800916", "lat" : 35.654682, "y" : -356546.82, "x" : 1397370.51 }, "position" : { "x" : 1397370.51, "y" : -356546.82 }, "selected" : false }, { "data" : { "id" : "6060", "station_name" : "白金高輪", "close_ymd" : "", "lon" : 139.734104, "post" : "108-0074", "e_status" : 0, "SUID" : 6060, "station_g_cd" : 2800917, "add" : "港区高輪1-3-20", "line_cd" : 28009, "selected" : false, "open_ymd" : "", "name" : "2800917", "pref_name" : "東京都", "shared_name" : "2800917", "lat" : 35.642903000000004, "y" : -356429.03, "x" : 1397341.04 }, "position" : { "x" : 1397341.04, "y" : -356429.03 }, "selected" : false }, { "data" : { "id" : "6053", "station_name" : "飯田橋", "close_ymd" : "", "lon" : 139.74366899999998, "post" : "", "e_status" : 0, "SUID" : 6053, "station_g_cd" : 1131205, "add" : "東京都新宿区神楽坂一丁目13", "line_cd" : 28009, "selected" : false, "open_ymd" : "", "name" : "2800910", "pref_name" : "東京都", "shared_name" : "2800910", "lat" : 35.701934, "y" : -357019.34, "x" : 1397436.69 }, "position" : { "x" : 1397436.69, "y" : -357019.34 }, "selected" : false }, { "data" : { "id" : "6054", "station_name" : "市ケ谷", "close_ymd" : "", "lon" : 139.736642, "post" : "", "e_status" : 0, "SUID" : 6054, "station_g_cd" : 1131206, "add" : "東京都千代田区五番町2-1", "line_cd" : 28009, "selected" : false, "open_ymd" : "", "name" : "2800911", "pref_name" : "東京都", "shared_name" : "2800911", "lat" : 35.691295000000004, "y" : -356912.95, "x" : 1397366.42 }, "position" : { "x" : 1397366.42, "y" : -356912.95 }, "selected" : false }, { "data" : { "id" : "6055", "station_name" : "四ツ谷", "close_ymd" : "", "lon" : 139.72955, "post" : "160-0004", "e_status" : 0, "SUID" : 6055, "station_g_cd" : 1131102, "add" : "新宿区四谷1丁目", "line_cd" : 28009, "selected" : false, "open_ymd" : "", "name" : "2800912", "pref_name" : "東京都", "shared_name" : "2800912", "lat" : 35.686032, "y" : -356860.31999999995, "x" : 1397295.5 }, "position" : { "x" : 1397295.5, "y" : -356860.31999999995 }, "selected" : false }, { "data" : { "id" : "6056", "station_name" : "永田町", "close_ymd" : "", "lon" : 139.740258, "post" : "", "e_status" : 0, "SUID" : 6056, "station_g_cd" : 2800115, "add" : "東京都千代田区永田町一丁目11-28", "line_cd" : 28009, "selected" : false, "open_ymd" : "", "name" : "2800913", "pref_name" : "東京都", "shared_name" : "2800913", "lat" : 35.678757, "y" : -356787.56999999995, "x" : 1397402.58 }, "position" : { "x" : 1397402.58, "y" : -356787.56999999995 }, "selected" : false }, { "data" : { "id" : "7760", "station_name" : "赤羽岩淵", "close_ymd" : "", "lon" : 139.722103, "post" : "115-0045", "e_status" : 0, "SUID" : 7760, "station_g_cd" : 2800901, "add" : "北区赤羽1-52-8", "line_cd" : 99307, "selected" : false, "open_ymd" : "", "name" : "9930701", "pref_name" : "東京都", "shared_name" : "9930701", "lat" : 35.783417, "y" : -357834.17, "x" : 1397221.03 }, "position" : { "x" : 1397221.03, "y" : -357834.17 }, "selected" : false }, { "data" : { "id" : "6050", "station_name" : "本駒込", "close_ymd" : "", "lon" : 139.753828, "post" : "113-0023", "e_status" : 0, "SUID" : 6050, "station_g_cd" : 2800907, "add" : "文京区向丘2-37-1", "line_cd" : 28009, "selected" : false, "open_ymd" : "", "name" : "2800907", "pref_name" : "東京都", "shared_name" : "2800907", "lat" : 35.724154999999996, "y" : -357241.55, "x" : 1397538.28 }, "position" : { "x" : 1397538.28, "y" : -357241.55 }, "selected" : false }, { "data" : { "id" : "6049", "station_name" : "駒込", "close_ymd" : "", "lon" : 139.746442, "post" : "", "e_status" : 0, "SUID" : 6049, "station_g_cd" : 1130215, "add" : "東京都豊島区駒込二丁目", "line_cd" : 28009, "selected" : false, "open_ymd" : "", "name" : "2800906", "pref_name" : "東京都", "shared_name" : "2800906", "lat" : 35.736959000000006, "y" : -357369.5900000001, "x" : 1397464.42 }, "position" : { "x" : 1397464.42, "y" : -357369.5900000001 }, "selected" : false }, { "data" : { "id" : "6052", "station_name" : "後楽園", "close_ymd" : "", "lon" : 139.75186399999998, "post" : "112-0003", "e_status" : 0, "SUID" : 6052, "station_g_cd" : 2800204, "add" : "文京区春日1-2-3", "line_cd" : 28009, "selected" : false, "open_ymd" : "", "name" : "2800909", "pref_name" : "東京都", "shared_name" : "2800909", "lat" : 35.707898, "y" : -357078.98, "x" : 1397518.64 }, "position" : { "x" : 1397518.64, "y" : -357078.98 }, "selected" : false }, { "data" : { "id" : "6051", "station_name" : "東大前", "close_ymd" : "", "lon" : 139.758025, "post" : "113-0023", "e_status" : 0, "SUID" : 6051, "station_g_cd" : 2800908, "add" : "文京区向丘1-19-2", "line_cd" : 28009, "selected" : false, "open_ymd" : "", "name" : "2800908", "pref_name" : "東京都", "shared_name" : "2800908", "lat" : 35.717633, "y" : -357176.33, "x" : 1397580.25 }, "position" : { "x" : 1397580.25, "y" : -357176.33 }, "selected" : false }, { "data" : { "id" : "6046", "station_name" : "王子神谷", "close_ymd" : "", "lon" : 139.73593300000002, "post" : "114-0002", "e_status" : 0, "SUID" : 6046, "station_g_cd" : 2800903, "add" : "北区王子5-2-11", "line_cd" : 28009, "selected" : false, "open_ymd" : "", "name" : "2800903", "pref_name" : "東京都", "shared_name" : "2800903", "lat" : 35.765172, "y" : -357651.72, "x" : 1397359.33 }, "position" : { "x" : 1397359.33, "y" : -357651.72 }, "selected" : false }, { "data" : { "id" : "6045", "station_name" : "志茂", "close_ymd" : "", "lon" : 139.732599, "post" : "115-0042", "e_status" : 0, "SUID" : 6045, "station_g_cd" : 2800902, "add" : "北区志茂2-1-18", "line_cd" : 28009, "selected" : false, "open_ymd" : "", "name" : "2800902", "pref_name" : "東京都", "shared_name" : "2800902", "lat" : 35.777947999999995, "y" : -357779.4799999999, "x" : 1397325.99 }, "position" : { "x" : 1397325.99, "y" : -357779.4799999999 }, "selected" : false }, { "data" : { "id" : "6048", "station_name" : "西ケ原", "close_ymd" : "", "lon" : 139.742322, "post" : "114-0024", "e_status" : 0, "SUID" : 6048, "station_g_cd" : 2800905, "add" : "東京都北区西ヶ原二丁目3-8", "line_cd" : 28009, "selected" : false, "open_ymd" : "", "name" : "2800905", "pref_name" : "東京都", "shared_name" : "2800905", "lat" : 35.746008, "y" : -357460.08, "x" : 1397423.22 }, "position" : { "x" : 1397423.22, "y" : -357460.08 }, "selected" : false }, { "data" : { "id" : "6047", "station_name" : "王子", "close_ymd" : "", "lon" : 139.737618, "post" : "114-0002", "e_status" : 0, "SUID" : 6047, "station_g_cd" : 1133212, "add" : "北区王子1丁目", "line_cd" : 28009, "selected" : false, "open_ymd" : "", "name" : "2800904", "pref_name" : "東京都", "shared_name" : "2800904", "lat" : 35.753966, "y" : -357539.66, "x" : 1397376.18 }, "position" : { "x" : 1397376.18, "y" : -357539.66 }, "selected" : false }, { "data" : { "id" : "6042", "station_name" : "錦糸町", "close_ymd" : "", "lon" : 139.814941, "post" : "130-0022", "e_status" : 0, "SUID" : 6042, "station_g_cd" : 1131322, "add" : "墨田区江東橋3丁目", "line_cd" : 28008, "selected" : false, "open_ymd" : "", "name" : "2800812", "pref_name" : "東京都", "shared_name" : "2800812", "lat" : 35.697578, "y" : -356975.78, "x" : 1398149.4100000001 }, "position" : { "x" : 1398149.4100000001, "y" : -356975.78 }, "selected" : false }, { "data" : { "id" : "6041", "station_name" : "住吉", "close_ymd" : "", "lon" : 139.815681, "post" : "135-0002", "e_status" : 0, "SUID" : 6041, "station_g_cd" : 2800814, "add" : "江東区住吉2-23-12", "line_cd" : 28008, "selected" : false, "open_ymd" : "", "name" : "2800814", "pref_name" : "東京都", "shared_name" : "2800814", "lat" : 35.689073, "y" : -356890.73, "x" : 1398156.81 }, "position" : { "x" : 1398156.81, "y" : -356890.73 }, "selected" : false }, { "data" : { "id" : "6044", "station_name" : "赤羽岩淵", "close_ymd" : "", "lon" : 139.722103, "post" : "115-0045", "e_status" : 0, "SUID" : 6044, "station_g_cd" : 2800901, "add" : "北区赤羽1-52-8", "line_cd" : 28009, "selected" : false, "open_ymd" : "", "name" : "2800901", "pref_name" : "東京都", "shared_name" : "2800901", "lat" : 35.783417, "y" : -357834.17, "x" : 1397221.03 }, "position" : { "x" : 1397221.03, "y" : -357834.17 }, "selected" : false }, { "data" : { "id" : "6043", "station_name" : "押上〈スカイツリー前〉", "close_ymd" : "", "lon" : 139.812935, "post" : "131-0045", "e_status" : 0, "SUID" : 6043, "station_g_cd" : 2100203, "add" : "墨田区押上一丁目", "line_cd" : 28008, "selected" : false, "open_ymd" : "", "name" : "2800813", "pref_name" : "東京都", "shared_name" : "2800813", "lat" : 35.710702000000005, "y" : -357107.0200000001, "x" : 1398129.35 }, "position" : { "x" : 1398129.35, "y" : -357107.0200000001 }, "selected" : false }, { "data" : { "id" : "6038", "station_name" : "三越前", "close_ymd" : "", "lon" : 139.773147, "post" : "103-0022", "e_status" : 0, "SUID" : 6038, "station_g_cd" : 1131402, "add" : "中央区日本橋室町1-8-1", "line_cd" : 28008, "selected" : false, "open_ymd" : "", "name" : "2800809", "pref_name" : "東京都", "shared_name" : "2800809", "lat" : 35.684908, "y" : -356849.08, "x" : 1397731.47 }, "position" : { "x" : 1397731.47, "y" : -356849.08 }, "selected" : false }, { "data" : { "id" : "6037", "station_name" : "大手町", "close_ymd" : "", "lon" : 139.764107, "post" : "100-0004", "e_status" : 0, "SUID" : 6037, "station_g_cd" : 2800208, "add" : "千代田区大手町1丁目", "line_cd" : 28008, "selected" : false, "open_ymd" : "", "name" : "2800808", "pref_name" : "東京都", "shared_name" : "2800808", "lat" : 35.686859999999996, "y" : -356868.6, "x" : 1397641.07 }, "position" : { "x" : 1397641.07, "y" : -356868.6 }, "selected" : false }, { "data" : { "id" : "6040", "station_name" : "清澄白河", "close_ymd" : "", "lon" : 139.798851, "post" : "135-0021", "e_status" : 0, "SUID" : 6040, "station_g_cd" : 2800811, "add" : "江東区白河1-7-14", "line_cd" : 28008, "selected" : false, "open_ymd" : "", "name" : "2800811", "pref_name" : "東京都", "shared_name" : "2800811", "lat" : 35.682105, "y" : -356821.05, "x" : 1397988.5100000002 }, "position" : { "x" : 1397988.5100000002, "y" : -356821.05 }, "selected" : false }, { "data" : { "id" : "6039", "station_name" : "水天宮前", "close_ymd" : "", "lon" : 139.785377, "post" : "103-0014", "e_status" : 0, "SUID" : 6039, "station_g_cd" : 2800810, "add" : "中央区日本橋蛎殻町2-1-1", "line_cd" : 28008, "selected" : false, "open_ymd" : "", "name" : "2800810", "pref_name" : "東京都", "shared_name" : "2800810", "lat" : 35.682683000000004, "y" : -356826.83, "x" : 1397853.77 }, "position" : { "x" : 1397853.77, "y" : -356826.83 }, "selected" : false }, { "data" : { "id" : "6024", "station_name" : "月島", "close_ymd" : "", "lon" : 139.784233, "post" : "104-0052", "e_status" : 0, "SUID" : 6024, "station_g_cd" : 2800621, "add" : "東京都中央区月島一丁目3-9", "line_cd" : 28006, "selected" : false, "open_ymd" : "1988-06-08", "name" : "2800621", "pref_name" : "東京都", "shared_name" : "2800621", "lat" : 35.664871000000005, "y" : -356648.7100000001, "x" : 1397842.33 }, "position" : { "x" : 1397842.33, "y" : -356648.7100000001 }, "selected" : false }, { "data" : { "id" : "6023", "station_name" : "新富町", "close_ymd" : "", "lon" : 139.77371100000002, "post" : "104-0045", "e_status" : 0, "SUID" : 6023, "station_g_cd" : 2800620, "add" : "東京都中央区築地一丁目1-1", "line_cd" : 28006, "selected" : false, "open_ymd" : "1980-03-27", "name" : "2800620", "pref_name" : "東京都", "shared_name" : "2800620", "lat" : 35.670462, "y" : -356704.62, "x" : 1397737.11 }, "position" : { "x" : 1397737.11, "y" : -356704.62 }, "selected" : false }, { "data" : { "id" : "6022", "station_name" : "銀座一丁目", "close_ymd" : "", "lon" : 139.767045, "post" : "104-0061", "e_status" : 0, "SUID" : 6022, "station_g_cd" : 2800619, "add" : "東京都中央区銀座一丁目7-12", "line_cd" : 28006, "selected" : false, "open_ymd" : "1974-10-30", "name" : "2800619", "pref_name" : "東京都", "shared_name" : "2800619", "lat" : 35.67435, "y" : -356743.49999999994, "x" : 1397670.45 }, "position" : { "x" : 1397670.45, "y" : -356743.49999999994 }, "selected" : false }, { "data" : { "id" : "6021", "station_name" : "有楽町", "close_ymd" : "", "lon" : 139.763265, "post" : "100-0006", "e_status" : 0, "SUID" : 6021, "station_g_cd" : 1130225, "add" : "東京都千代田区有楽町一丁目11-1", "line_cd" : 28006, "selected" : false, "open_ymd" : "1974-10-30", "name" : "2800618", "pref_name" : "東京都", "shared_name" : "2800618", "lat" : 35.675714, "y" : -356757.14, "x" : 1397632.65 }, "position" : { "x" : 1397632.65, "y" : -356757.14 }, "selected" : false }, { "data" : { "id" : "6028", "station_name" : "新線池袋", "close_ymd" : "2008-06-14", "lon" : 139.710388, "post" : "171-0021", "e_status" : 2, "SUID" : 6028, "station_g_cd" : 1130212, "add" : "東京都豊島区西池袋", "line_cd" : 28007, "selected" : false, "open_ymd" : "1994-12-07", "name" : "2800701", "pref_name" : "東京都", "shared_name" : "2800701", "lat" : 35.730645, "y" : -357306.45, "x" : 1397103.88 }, "position" : { "x" : 1397103.88, "y" : -357306.45 }, "selected" : false }, { "data" : { "id" : "6027", "station_name" : "新木場", "close_ymd" : "", "lon" : 139.826254, "post" : "136-0082", "e_status" : 0, "SUID" : 6027, "station_g_cd" : 1132605, "add" : "東京都江東区新木場一丁目6", "line_cd" : 28006, "selected" : false, "open_ymd" : "1988-06-08", "name" : "2800624", "pref_name" : "東京都", "shared_name" : "2800624", "lat" : 35.645832, "y" : -356458.32, "x" : 1398262.54 }, "position" : { "x" : 1398262.54, "y" : -356458.32 }, "selected" : false }, { "data" : { "id" : "6026", "station_name" : "辰巳", "close_ymd" : "", "lon" : 139.81052, "post" : "135-0053", "e_status" : 0, "SUID" : 6026, "station_g_cd" : 2800623, "add" : "東京都江東区辰巳一丁目1-44", "line_cd" : 28006, "selected" : false, "open_ymd" : "1988-06-08", "name" : "2800623", "pref_name" : "東京都", "shared_name" : "2800623", "lat" : 35.645576, "y" : -356455.76, "x" : 1398105.2 }, "position" : { "x" : 1398105.2, "y" : -356455.76 }, "selected" : false }, { "data" : { "id" : "6025", "station_name" : "豊洲", "close_ymd" : "", "lon" : 139.79621, "post" : "135-0061", "e_status" : 0, "SUID" : 6025, "station_g_cd" : 2800622, "add" : "東京都江東区豊洲四丁目1-1", "line_cd" : 28006, "selected" : false, "open_ymd" : "1988-06-08", "name" : "2800622", "pref_name" : "東京都", "shared_name" : "2800622", "lat" : 35.654908, "y" : -356549.08, "x" : 1397962.1 }, "position" : { "x" : 1397962.1, "y" : -356549.08 }, "selected" : false }, { "data" : { "id" : "6032", "station_name" : "青山一丁目", "close_ymd" : "", "lon" : 139.72415900000001, "post" : "107-0062", "e_status" : 0, "SUID" : 6032, "station_g_cd" : 2800116, "add" : "港区南青山1-1-19", "line_cd" : 28008, "selected" : false, "open_ymd" : "", "name" : "2800803", "pref_name" : "東京都", "shared_name" : "2800803", "lat" : 35.672765000000005, "y" : -356727.6500000001, "x" : 1397241.59 }, "position" : { "x" : 1397241.59, "y" : -356727.6500000001 }, "selected" : false }, { "data" : { "id" : "6031", "station_name" : "表参道", "close_ymd" : "", "lon" : 139.712314, "post" : "107-0061", "e_status" : 0, "SUID" : 6031, "station_g_cd" : 2800118, "add" : "港区北青山3丁目", "line_cd" : 28008, "selected" : false, "open_ymd" : "", "name" : "2800802", "pref_name" : "東京都", "shared_name" : "2800802", "lat" : 35.665246999999994, "y" : -356652.4699999999, "x" : 1397123.14 }, "position" : { "x" : 1397123.14, "y" : -356652.4699999999 }, "selected" : false }, { "data" : { "id" : "6030", "station_name" : "渋谷", "close_ymd" : "", "lon" : 139.701, "post" : "", "e_status" : 0, "SUID" : 6030, "station_g_cd" : 1130205, "add" : "東京都渋谷区道玄坂二丁目1-1", "line_cd" : 28008, "selected" : false, "open_ymd" : "", "name" : "2800801", "pref_name" : "東京都", "shared_name" : "2800801", "lat" : 35.659065999999996, "y" : -356590.66, "x" : 1397010.0 }, "position" : { "x" : 1397010.0, "y" : -356590.66 }, "selected" : false }, { "data" : { "id" : "6029", "station_name" : "小竹向原", "close_ymd" : "", "lon" : 139.678572, "post" : "176-0004", "e_status" : 2, "SUID" : 6029, "station_g_cd" : 2200301, "add" : "東京都練馬区小竹町二丁目16-15", "line_cd" : 28007, "selected" : false, "open_ymd" : "1983-06-24", "name" : "2800702", "pref_name" : "東京都", "shared_name" : "2800702", "lat" : 35.743803, "y" : -357438.02999999997, "x" : 1396785.72 }, "position" : { "x" : 1396785.72, "y" : -357438.02999999997 }, "selected" : false }, { "data" : { "id" : "6036", "station_name" : "神保町", "close_ymd" : "", "lon" : 139.757606, "post" : "101-0051", "e_status" : 0, "SUID" : 6036, "station_g_cd" : 2800807, "add" : "千代田区神田神保町2-2", "line_cd" : 28008, "selected" : false, "open_ymd" : "", "name" : "2800807", "pref_name" : "東京都", "shared_name" : "2800807", "lat" : 35.695966, "y" : -356959.66, "x" : 1397576.06 }, "position" : { "x" : 1397576.06, "y" : -356959.66 }, "selected" : false }, { "data" : { "id" : "6035", "station_name" : "九段下", "close_ymd" : "", "lon" : 139.751948, "post" : "102-0074", "e_status" : 0, "SUID" : 6035, "station_g_cd" : 2800407, "add" : "千代田区九段南1-6-1", "line_cd" : 28008, "selected" : false, "open_ymd" : "", "name" : "2800806", "pref_name" : "東京都", "shared_name" : "2800806", "lat" : 35.695589, "y" : -356955.88999999996, "x" : 1397519.48 }, "position" : { "x" : 1397519.48, "y" : -356955.88999999996 }, "selected" : false }, { "data" : { "id" : "6034", "station_name" : "半蔵門", "close_ymd" : "", "lon" : 139.74163000000001, "post" : "102-0083", "e_status" : 0, "SUID" : 6034, "station_g_cd" : 2800805, "add" : "千代田区麹町1-6", "line_cd" : 28008, "selected" : false, "open_ymd" : "", "name" : "2800805", "pref_name" : "東京都", "shared_name" : "2800805", "lat" : 35.685703000000004, "y" : -356857.03, "x" : 1397416.3 }, "position" : { "x" : 1397416.3, "y" : -356857.03 }, "selected" : false }, { "data" : { "id" : "6033", "station_name" : "永田町", "close_ymd" : "", "lon" : 139.740258, "post" : "", "e_status" : 0, "SUID" : 6033, "station_g_cd" : 2800115, "add" : "東京都千代田区永田町一丁目11-29", "line_cd" : 28008, "selected" : false, "open_ymd" : "", "name" : "2800804", "pref_name" : "東京都", "shared_name" : "2800804", "lat" : 35.678757, "y" : -356787.56999999995, "x" : 1397402.58 }, "position" : { "x" : 1397402.58, "y" : -356787.56999999995 }, "selected" : false }, { "data" : { "id" : "6007", "station_name" : "平和台", "close_ymd" : "", "lon" : 139.653762, "post" : "179-0085", "e_status" : 0, "SUID" : 6007, "station_g_cd" : 2800604, "add" : "東京都練馬区早宮2-17-48", "line_cd" : 28006, "selected" : false, "open_ymd" : "1983-06-24", "name" : "2800604", "pref_name" : "東京都", "shared_name" : "2800604", "lat" : 35.757863, "y" : -357578.63, "x" : 1396537.62 }, "position" : { "x" : 1396537.62, "y" : -357578.63 }, "selected" : false }, { "data" : { "id" : "6008", "station_name" : "氷川台", "close_ymd" : "", "lon" : 139.66556699999998, "post" : "179-0084", "e_status" : 0, "SUID" : 6008, "station_g_cd" : 2800605, "add" : "東京都練馬区氷川台三丁目38-18", "line_cd" : 28006, "selected" : false, "open_ymd" : "1983-06-24", "name" : "2800605", "pref_name" : "東京都", "shared_name" : "2800605", "lat" : 35.74955, "y" : -357495.5, "x" : 1396655.67 }, "position" : { "x" : 1396655.67, "y" : -357495.5 }, "selected" : false }, { "data" : { "id" : "6005", "station_name" : "地下鉄成増", "close_ymd" : "", "lon" : 139.631497, "post" : "175-0094", "e_status" : 0, "SUID" : 6005, "station_g_cd" : 2100110, "add" : "東京都板橋区成増二丁目11-3", "line_cd" : 28006, "selected" : false, "open_ymd" : "1983-06-24", "name" : "2800602", "pref_name" : "東京都", "shared_name" : "2800602", "lat" : 35.776557000000004, "y" : -357765.57000000007, "x" : 1396314.97 }, "position" : { "x" : 1396314.97, "y" : -357765.57000000007 }, "selected" : false }, { "data" : { "id" : "6006", "station_name" : "地下鉄赤塚", "close_ymd" : "", "lon" : 139.644021, "post" : "179-0081", "e_status" : 0, "SUID" : 6006, "station_g_cd" : 2100109, "add" : "東京都練馬区北町八丁目37-16", "line_cd" : 28006, "selected" : false, "open_ymd" : "1983-06-24", "name" : "2800603", "pref_name" : "東京都", "shared_name" : "2800603", "lat" : 35.769939, "y" : -357699.39, "x" : 1396440.2100000002 }, "position" : { "x" : 1396440.2100000002, "y" : -357699.39 }, "selected" : false }, { "data" : { "id" : "6011", "station_name" : "要町", "close_ymd" : "", "lon" : 139.698715, "post" : "171-0043", "e_status" : 0, "SUID" : 6011, "station_g_cd" : 2800608, "add" : "東京都豊島区要町一丁目1-10", "line_cd" : 28006, "selected" : false, "open_ymd" : "1983-06-24", "name" : "2800608", "pref_name" : "東京都", "shared_name" : "2800608", "lat" : 35.73323, "y" : -357332.3, "x" : 1396987.15 }, "position" : { "x" : 1396987.15, "y" : -357332.3 }, "selected" : false }, { "data" : { "id" : "6012", "station_name" : "池袋", "close_ymd" : "", "lon" : 139.71008799999998, "post" : "171-0021", "e_status" : 0, "SUID" : 6012, "station_g_cd" : 1130212, "add" : "東京都豊島区西池袋三丁目28-14", "line_cd" : 28006, "selected" : false, "open_ymd" : "1954-01-20", "name" : "2800609", "pref_name" : "東京都", "shared_name" : "2800609", "lat" : 35.729565, "y" : -357295.65, "x" : 1397100.88 }, "position" : { "x" : 1397100.88, "y" : -357295.65 }, "selected" : false }, { "data" : { "id" : "6009", "station_name" : "小竹向原", "close_ymd" : "", "lon" : 139.678572, "post" : "176-0004", "e_status" : 0, "SUID" : 6009, "station_g_cd" : 2200301, "add" : "東京都練馬区小竹町二丁目16-15", "line_cd" : 28006, "selected" : false, "open_ymd" : "1983-06-24", "name" : "2800606", "pref_name" : "東京都", "shared_name" : "2800606", "lat" : 35.743803, "y" : -357438.02999999997, "x" : 1396785.72 }, "position" : { "x" : 1396785.72, "y" : -357438.02999999997 }, "selected" : false }, { "data" : { "id" : "6010", "station_name" : "千川", "close_ymd" : "", "lon" : 139.689271, "post" : "171-0043", "e_status" : 0, "SUID" : 6010, "station_g_cd" : 2800607, "add" : "東京都豊島区要町三丁目10-7", "line_cd" : 28006, "selected" : false, "open_ymd" : "1983-06-24", "name" : "2800607", "pref_name" : "東京都", "shared_name" : "2800607", "lat" : 35.738229, "y" : -357382.29, "x" : 1396892.71 }, "position" : { "x" : 1396892.71, "y" : -357382.29 }, "selected" : false }, { "data" : { "id" : "6015", "station_name" : "江戸川橋", "close_ymd" : "", "lon" : 139.73353799999998, "post" : "112-0014", "e_status" : 0, "SUID" : 6015, "station_g_cd" : 2800612, "add" : "東京都文京区関口一丁目19-6", "line_cd" : 28006, "selected" : false, "open_ymd" : "1974-10-30", "name" : "2800612", "pref_name" : "東京都", "shared_name" : "2800612", "lat" : 35.709495000000004, "y" : -357094.95, "x" : 1397335.38 }, "position" : { "x" : 1397335.38, "y" : -357094.95 }, "selected" : false }, { "data" : { "id" : "6016", "station_name" : "飯田橋", "close_ymd" : "", "lon" : 139.74366899999998, "post" : "162-0825", "e_status" : 0, "SUID" : 6016, "station_g_cd" : 1131205, "add" : "東京都新宿区神楽坂一丁目13", "line_cd" : 28006, "selected" : false, "open_ymd" : "1964-12-23", "name" : "2800613", "pref_name" : "東京都", "shared_name" : "2800613", "lat" : 35.701934, "y" : -357019.34, "x" : 1397436.69 }, "position" : { "x" : 1397436.69, "y" : -357019.34 }, "selected" : false }, { "data" : { "id" : "6013", "station_name" : "東池袋", "close_ymd" : "", "lon" : 139.719546, "post" : "170-0013", "e_status" : 0, "SUID" : 6013, "station_g_cd" : 2800610, "add" : "東京都豊島区東池袋四丁目4-4", "line_cd" : 28006, "selected" : false, "open_ymd" : "1974-10-30", "name" : "2800610", "pref_name" : "東京都", "shared_name" : "2800610", "lat" : 35.725732, "y" : -357257.32, "x" : 1397195.4600000002 }, "position" : { "x" : 1397195.4600000002, "y" : -357257.32 }, "selected" : false }, { "data" : { "id" : "6014", "station_name" : "護国寺", "close_ymd" : "", "lon" : 139.72754, "post" : "112-0012", "e_status" : 0, "SUID" : 6014, "station_g_cd" : 2800611, "add" : "東京都文京区大塚五丁目40-8", "line_cd" : 28006, "selected" : false, "open_ymd" : "1974-10-30", "name" : "2800611", "pref_name" : "東京都", "shared_name" : "2800611", "lat" : 35.719044, "y" : -357190.43999999994, "x" : 1397275.4000000001 }, "position" : { "x" : 1397275.4000000001, "y" : -357190.43999999994 }, "selected" : false }, { "data" : { "id" : "6019", "station_name" : "永田町", "close_ymd" : "", "lon" : 139.740258, "post" : "100-0014", "e_status" : 0, "SUID" : 6019, "station_g_cd" : 2800115, "add" : "東京都千代田区永田町一丁目11-28", "line_cd" : 28006, "selected" : false, "open_ymd" : "1974-10-30", "name" : "2800616", "pref_name" : "東京都", "shared_name" : "2800616", "lat" : 35.678757, "y" : -356787.56999999995, "x" : 1397402.58 }, "position" : { "x" : 1397402.58, "y" : -356787.56999999995 }, "selected" : false }, { "data" : { "id" : "6020", "station_name" : "桜田門", "close_ymd" : "", "lon" : 139.75149, "post" : "100-0013", "e_status" : 0, "SUID" : 6020, "station_g_cd" : 2800617, "add" : "東京都千代田区霞が関二丁目1-1", "line_cd" : 28006, "selected" : false, "open_ymd" : "1974-10-30", "name" : "2800617", "pref_name" : "東京都", "shared_name" : "2800617", "lat" : 35.677405, "y" : -356774.05, "x" : 1397514.9 }, "position" : { "x" : 1397514.9, "y" : -356774.05 }, "selected" : false }, { "data" : { "id" : "6017", "station_name" : "市ケ谷", "close_ymd" : "", "lon" : 139.73647, "post" : "162-0843", "e_status" : 0, "SUID" : 6017, "station_g_cd" : 1131206, "add" : "東京都新宿区市谷田町一丁目1", "line_cd" : 28006, "selected" : false, "open_ymd" : "1974-10-30", "name" : "2800614", "pref_name" : "東京都", "shared_name" : "2800614", "lat" : 35.691958, "y" : -356919.58, "x" : 1397364.7 }, "position" : { "x" : 1397364.7, "y" : -356919.58 }, "selected" : false }, { "data" : { "id" : "6018", "station_name" : "麹町", "close_ymd" : "", "lon" : 139.73761299999998, "post" : "102-0083", "e_status" : 0, "SUID" : 6018, "station_g_cd" : 2800615, "add" : "東京都千代田区麹町三丁目2", "line_cd" : 28006, "selected" : false, "open_ymd" : "1974-10-30", "name" : "2800615", "pref_name" : "東京都", "shared_name" : "2800615", "lat" : 35.684006, "y" : -356840.05999999994, "x" : 1397376.13 }, "position" : { "x" : 1397376.13, "y" : -356840.05999999994 }, "selected" : false }, { "data" : { "id" : "5990", "station_name" : "根津", "close_ymd" : "", "lon" : 139.765655, "post" : "113-0031", "e_status" : 0, "SUID" : 5990, "station_g_cd" : 2800507, "add" : "文京区根津1丁目", "line_cd" : 28005, "selected" : false, "open_ymd" : "", "name" : "2800507", "pref_name" : "東京都", "shared_name" : "2800507", "lat" : 35.7174, "y" : -357174.0, "x" : 1397656.55 }, "position" : { "x" : 1397656.55, "y" : -357174.0 }, "selected" : false }, { "data" : { "id" : "5989", "station_name" : "千駄木", "close_ymd" : "", "lon" : 139.763243, "post" : "113-0022", "e_status" : 0, "SUID" : 5989, "station_g_cd" : 2800506, "add" : "文京区千駄木2丁目", "line_cd" : 28005, "selected" : false, "open_ymd" : "", "name" : "2800506", "pref_name" : "東京都", "shared_name" : "2800506", "lat" : 35.725549, "y" : -357255.49, "x" : 1397632.43 }, "position" : { "x" : 1397632.43, "y" : -357255.49 }, "selected" : false }, { "data" : { "id" : "5992", "station_name" : "新御茶ノ水", "close_ymd" : "", "lon" : 139.76601399999998, "post" : "101-0062", "e_status" : 0, "SUID" : 5992, "station_g_cd" : 1131203, "add" : "千代田区神田駿河台3丁目", "line_cd" : 28005, "selected" : false, "open_ymd" : "", "name" : "2800509", "pref_name" : "東京都", "shared_name" : "2800509", "lat" : 35.698071999999996, "y" : -356980.72, "x" : 1397660.14 }, "position" : { "x" : 1397660.14, "y" : -356980.72 }, "selected" : false }, { "data" : { "id" : "5991", "station_name" : "湯島", "close_ymd" : "", "lon" : 139.769916, "post" : "113-0034", "e_status" : 0, "SUID" : 5991, "station_g_cd" : 2800508, "add" : "文京区湯島3丁目", "line_cd" : 28005, "selected" : false, "open_ymd" : "", "name" : "2800508", "pref_name" : "東京都", "shared_name" : "2800508", "lat" : 35.708242999999996, "y" : -357082.42999999993, "x" : 1397699.16 }, "position" : { "x" : 1397699.16, "y" : -357082.42999999993 }, "selected" : false }, { "data" : { "id" : "5994", "station_name" : "二重橋前", "close_ymd" : "", "lon" : 139.761948, "post" : "100-0005", "e_status" : 0, "SUID" : 5994, "station_g_cd" : 2800511, "add" : "千代田区丸の内2丁目", "line_cd" : 28005, "selected" : false, "open_ymd" : "", "name" : "2800511", "pref_name" : "東京都", "shared_name" : "2800511", "lat" : 35.681071, "y" : -356810.71, "x" : 1397619.48 }, "position" : { "x" : 1397619.48, "y" : -356810.71 }, "selected" : false }, { "data" : { "id" : "5993", "station_name" : "大手町", "close_ymd" : "", "lon" : 139.763399, "post" : "100-0004", "e_status" : 0, "SUID" : 5993, "station_g_cd" : 2800208, "add" : "千代田区大手町1丁目", "line_cd" : 28005, "selected" : false, "open_ymd" : "", "name" : "2800510", "pref_name" : "東京都", "shared_name" : "2800510", "lat" : 35.686153999999995, "y" : -356861.5399999999, "x" : 1397633.99 }, "position" : { "x" : 1397633.99, "y" : -356861.5399999999 }, "selected" : false }, { "data" : { "id" : "5996", "station_name" : "霞ケ関", "close_ymd" : "", "lon" : 139.750899, "post" : "100-0013", "e_status" : 0, "SUID" : 5996, "station_g_cd" : 2800211, "add" : "千代田区霞が関2丁目", "line_cd" : 28005, "selected" : false, "open_ymd" : "", "name" : "2800513", "pref_name" : "東京都", "shared_name" : "2800513", "lat" : 35.673838, "y" : -356738.38000000006, "x" : 1397508.99 }, "position" : { "x" : 1397508.99, "y" : -356738.38000000006 }, "selected" : false }, { "data" : { "id" : "5995", "station_name" : "日比谷", "close_ymd" : "", "lon" : 139.758732, "post" : "100-0006", "e_status" : 0, "SUID" : 5995, "station_g_cd" : 2800315, "add" : "千代田区有楽町1丁目", "line_cd" : 28005, "selected" : false, "open_ymd" : "", "name" : "2800512", "pref_name" : "東京都", "shared_name" : "2800512", "lat" : 35.674240999999995, "y" : -356742.41, "x" : 1397587.32 }, "position" : { "x" : 1397587.32, "y" : -356742.41 }, "selected" : false }, { "data" : { "id" : "5998", "station_name" : "赤坂", "close_ymd" : "", "lon" : 139.738348, "post" : "107-0052", "e_status" : 0, "SUID" : 5998, "station_g_cd" : 2800515, "add" : "港区赤坂5丁目", "line_cd" : 28005, "selected" : false, "open_ymd" : "", "name" : "2800515", "pref_name" : "東京都", "shared_name" : "2800515", "lat" : 35.67323, "y" : -356732.3, "x" : 1397383.48 }, "position" : { "x" : 1397383.48, "y" : -356732.3 }, "selected" : false }, { "data" : { "id" : "5997", "station_name" : "国会議事堂前", "close_ymd" : "", "lon" : 139.745219, "post" : "100-0014", "e_status" : 0, "SUID" : 5997, "station_g_cd" : 2800212, "add" : "千代田区永田町1丁目", "line_cd" : 28005, "selected" : false, "open_ymd" : "", "name" : "2800514", "pref_name" : "東京都", "shared_name" : "2800514", "lat" : 35.67393, "y" : -356739.3, "x" : 1397452.19 }, "position" : { "x" : 1397452.19, "y" : -356739.3 }, "selected" : false }, { "data" : { "id" : "6000", "station_name" : "表参道", "close_ymd" : "", "lon" : 139.712314, "post" : "107-0061", "e_status" : 0, "SUID" : 6000, "station_g_cd" : 2800118, "add" : "港区北青山3丁目", "line_cd" : 28005, "selected" : false, "open_ymd" : "", "name" : "2800517", "pref_name" : "東京都", "shared_name" : "2800517", "lat" : 35.665246999999994, "y" : -356652.4699999999, "x" : 1397123.14 }, "position" : { "x" : 1397123.14, "y" : -356652.4699999999 }, "selected" : false }, { "data" : { "id" : "5999", "station_name" : "乃木坂", "close_ymd" : "", "lon" : 139.726215, "post" : "107-0062", "e_status" : 0, "SUID" : 5999, "station_g_cd" : 2800516, "add" : "港区南青山1丁目", "line_cd" : 28005, "selected" : false, "open_ymd" : "", "name" : "2800516", "pref_name" : "東京都", "shared_name" : "2800516", "lat" : 35.666571999999995, "y" : -356665.72, "x" : 1397262.15 }, "position" : { "x" : 1397262.15, "y" : -356665.72 }, "selected" : false }, { "data" : { "id" : "6002", "station_name" : "代々木公園", "close_ymd" : "", "lon" : 139.689099, "post" : "151-0063", "e_status" : 0, "SUID" : 6002, "station_g_cd" : 2500104, "add" : "渋谷区富ケ谷1丁目", "line_cd" : 28005, "selected" : false, "open_ymd" : "", "name" : "2800519", "pref_name" : "東京都", "shared_name" : "2800519", "lat" : 35.669187, "y" : -356691.87, "x" : 1396890.99 }, "position" : { "x" : 1396890.99, "y" : -356691.87 }, "selected" : false }, { "data" : { "id" : "6001", "station_name" : "明治神宮前〈原宿〉", "close_ymd" : "", "lon" : 139.703995, "post" : "150-0001", "e_status" : 0, "SUID" : 6001, "station_g_cd" : 1130206, "add" : "渋谷区神宮前1丁目", "line_cd" : 28005, "selected" : false, "open_ymd" : "", "name" : "2800518", "pref_name" : "東京都", "shared_name" : "2800518", "lat" : 35.669071, "y" : -356690.71, "x" : 1397039.95 }, "position" : { "x" : 1397039.95, "y" : -356690.71 }, "selected" : false }, { "data" : { "id" : "6003", "station_name" : "代々木上原", "close_ymd" : "", "lon" : 139.680153, "post" : "151-0066", "e_status" : 0, "SUID" : 6003, "station_g_cd" : 2500105, "add" : "渋谷区西原3丁目", "line_cd" : 28005, "selected" : false, "open_ymd" : "", "name" : "2800520", "pref_name" : "東京都", "shared_name" : "2800520", "lat" : 35.669159, "y" : -356691.59, "x" : 1396801.5299999998 }, "position" : { "x" : 1396801.5299999998, "y" : -356691.59 }, "selected" : false }, { "data" : { "id" : "5973", "station_name" : "木場", "close_ymd" : "", "lon" : 139.807042, "post" : "135-0042", "e_status" : 0, "SUID" : 5973, "station_g_cd" : 2800413, "add" : "江東区木場5-5-1", "line_cd" : 28004, "selected" : false, "open_ymd" : "", "name" : "2800413", "pref_name" : "東京都", "shared_name" : "2800413", "lat" : 35.669351, "y" : -356693.51, "x" : 1398070.42 }, "position" : { "x" : 1398070.42, "y" : -356693.51 }, "selected" : false }, { "data" : { "id" : "5974", "station_name" : "東陽町", "close_ymd" : "", "lon" : 139.817596, "post" : "135-0016", "e_status" : 0, "SUID" : 5974, "station_g_cd" : 2800414, "add" : "江東区東陽4-2-1", "line_cd" : 28004, "selected" : false, "open_ymd" : "", "name" : "2800414", "pref_name" : "東京都", "shared_name" : "2800414", "lat" : 35.669629, "y" : -356696.29, "x" : 1398175.9600000002 }, "position" : { "x" : 1398175.9600000002, "y" : -356696.29 }, "selected" : false }, { "data" : { "id" : "5975", "station_name" : "南砂町", "close_ymd" : "", "lon" : 139.83065, "post" : "136-0076", "e_status" : 0, "SUID" : 5975, "station_g_cd" : 2800415, "add" : "江東区南砂3-11-85", "line_cd" : 28004, "selected" : false, "open_ymd" : "", "name" : "2800415", "pref_name" : "東京都", "shared_name" : "2800415", "lat" : 35.668796, "y" : -356687.96, "x" : 1398306.5 }, "position" : { "x" : 1398306.5, "y" : -356687.96 }, "selected" : false }, { "data" : { "id" : "5976", "station_name" : "西葛西", "close_ymd" : "", "lon" : 139.859259, "post" : "134-0088", "e_status" : 0, "SUID" : 5976, "station_g_cd" : 2800416, "add" : "江戸川区西葛西6-14-1", "line_cd" : 28004, "selected" : false, "open_ymd" : "", "name" : "2800416", "pref_name" : "東京都", "shared_name" : "2800416", "lat" : 35.664631, "y" : -356646.31, "x" : 1398592.59 }, "position" : { "x" : 1398592.59, "y" : -356646.31 }, "selected" : false }, { "data" : { "id" : "5977", "station_name" : "葛西", "close_ymd" : "", "lon" : 139.872458, "post" : "134-0083", "e_status" : 0, "SUID" : 5977, "station_g_cd" : 2800417, "add" : "江戸川区中葛西5-43-11", "line_cd" : 28004, "selected" : false, "open_ymd" : "", "name" : "2800417", "pref_name" : "東京都", "shared_name" : "2800417", "lat" : 35.663554, "y" : -356635.54, "x" : 1398724.5799999998 }, "position" : { "x" : 1398724.5799999998, "y" : -356635.54 }, "selected" : false }, { "data" : { "id" : "5984", "station_name" : "北綾瀬", "close_ymd" : "", "lon" : 139.83203500000002, "post" : "120-0006", "e_status" : 0, "SUID" : 5984, "station_g_cd" : 2800501, "add" : "足立区谷中2丁目", "line_cd" : 28005, "selected" : false, "open_ymd" : "", "name" : "2800501", "pref_name" : "東京都", "shared_name" : "2800501", "lat" : 35.777117, "y" : -357771.17, "x" : 1398320.35 }, "position" : { "x" : 1398320.35, "y" : -357771.17 }, "selected" : false }, { "data" : { "id" : "5985", "station_name" : "綾瀬", "close_ymd" : "", "lon" : 139.825019, "post" : "120-0005", "e_status" : 0, "SUID" : 5985, "station_g_cd" : 1132006, "add" : "足立区綾瀬3丁目", "line_cd" : 28005, "selected" : false, "open_ymd" : "", "name" : "2800502", "pref_name" : "東京都", "shared_name" : "2800502", "lat" : 35.762221999999994, "y" : -357622.2199999999, "x" : 1398250.19 }, "position" : { "x" : 1398250.19, "y" : -357622.2199999999 }, "selected" : false }, { "data" : { "id" : "5986", "station_name" : "北千住", "close_ymd" : "", "lon" : 139.804276, "post" : "120-0026", "e_status" : 0, "SUID" : 5986, "station_g_cd" : 1132005, "add" : "足立区千住旭町", "line_cd" : 28005, "selected" : false, "open_ymd" : "", "name" : "2800503", "pref_name" : "東京都", "shared_name" : "2800503", "lat" : 35.748915999999994, "y" : -357489.1599999999, "x" : 1398042.7599999998 }, "position" : { "x" : 1398042.7599999998, "y" : -357489.1599999999 }, "selected" : false }, { "data" : { "id" : "5987", "station_name" : "町屋", "close_ymd" : "", "lon" : 139.780501, "post" : "116-0001", "e_status" : 0, "SUID" : 5987, "station_g_cd" : 2300104, "add" : "荒川区町屋1丁目", "line_cd" : 28005, "selected" : false, "open_ymd" : "", "name" : "2800504", "pref_name" : "東京都", "shared_name" : "2800504", "lat" : 35.742733, "y" : -357427.33, "x" : 1397805.0099999998 }, "position" : { "x" : 1397805.0099999998, "y" : -357427.33 }, "selected" : false }, { "data" : { "id" : "5988", "station_name" : "西日暮里", "close_ymd" : "", "lon" : 139.766511, "post" : "", "e_status" : 0, "SUID" : 5988, "station_g_cd" : 1130217, "add" : "東京都荒川区西日暮里五丁目14-1", "line_cd" : 28005, "selected" : false, "open_ymd" : "", "name" : "2800505", "pref_name" : "東京都", "shared_name" : "2800505", "lat" : 35.732257000000004, "y" : -357322.57000000007, "x" : 1397665.11 }, "position" : { "x" : 1397665.11, "y" : -357322.57000000007 }, "selected" : false }, { "data" : { "id" : "5964", "station_name" : "早稲田", "close_ymd" : "", "lon" : 139.721319, "post" : "", "e_status" : 0, "SUID" : 5964, "station_g_cd" : 2800404, "add" : "東京都新宿区", "line_cd" : 28004, "selected" : false, "open_ymd" : "", "name" : "2800404", "pref_name" : "東京都", "shared_name" : "2800404", "lat" : 35.705723, "y" : -357057.23, "x" : 1397213.19 }, "position" : { "x" : 1397213.19, "y" : -357057.23 }, "selected" : false }, { "data" : { "id" : "5963", "station_name" : "高田馬場", "close_ymd" : "", "lon" : 139.704745, "post" : "", "e_status" : 0, "SUID" : 5963, "station_g_cd" : 1130210, "add" : "東京都新宿区高田馬場一丁目35-1", "line_cd" : 28004, "selected" : false, "open_ymd" : "", "name" : "2800403", "pref_name" : "東京都", "shared_name" : "2800403", "lat" : 35.713338, "y" : -357133.38, "x" : 1397047.45 }, "position" : { "x" : 1397047.45, "y" : -357133.38 }, "selected" : false }, { "data" : { "id" : "5962", "station_name" : "落合", "close_ymd" : "", "lon" : 139.687284, "post" : "161-0034", "e_status" : 0, "SUID" : 5962, "station_g_cd" : 2800402, "add" : "新宿区上落合2-13-7", "line_cd" : 28004, "selected" : false, "open_ymd" : "", "name" : "2800402", "pref_name" : "東京都", "shared_name" : "2800402", "lat" : 35.710976, "y" : -357109.76, "x" : 1396872.84 }, "position" : { "x" : 1396872.84, "y" : -357109.76 }, "selected" : false }, { "data" : { "id" : "5961", "station_name" : "中野", "close_ymd" : "", "lon" : 139.66583500000002, "post" : "164-0001", "e_status" : 0, "SUID" : 5961, "station_g_cd" : 1131214, "add" : "中野区中野5丁目", "line_cd" : 28004, "selected" : false, "open_ymd" : "", "name" : "2800401", "pref_name" : "東京都", "shared_name" : "2800401", "lat" : 35.705765, "y" : -357057.65, "x" : 1396658.35 }, "position" : { "x" : 1396658.35, "y" : -357057.65 }, "selected" : false }, { "data" : { "id" : "5960", "station_name" : "中目黒", "close_ymd" : "", "lon" : 139.698621, "post" : "153-0051", "e_status" : 0, "SUID" : 5960, "station_g_cd" : 2600103, "add" : "目黒区上目黒3-4-1", "line_cd" : 28003, "selected" : false, "open_ymd" : "", "name" : "2800321", "pref_name" : "東京都", "shared_name" : "2800321", "lat" : 35.643854, "y" : -356438.54, "x" : 1396986.21 }, "position" : { "x" : 1396986.21, "y" : -356438.54 }, "selected" : false }, { "data" : { "id" : "5959", "station_name" : "恵比寿", "close_ymd" : "", "lon" : 139.70898799999998, "post" : "", "e_status" : 0, "SUID" : 5959, "station_g_cd" : 1130204, "add" : "東京都渋谷区恵比寿南一丁目5-5", "line_cd" : 28003, "selected" : false, "open_ymd" : "", "name" : "2800320", "pref_name" : "東京都", "shared_name" : "2800320", "lat" : 35.647332, "y" : -356473.32, "x" : 1397089.8799999997 }, "position" : { "x" : 1397089.8799999997, "y" : -356473.32 }, "selected" : false }, { "data" : { "id" : "5958", "station_name" : "広尾", "close_ymd" : "", "lon" : 139.722202, "post" : "106-0047", "e_status" : 0, "SUID" : 5958, "station_g_cd" : 2800319, "add" : "港区南麻布5-10-28", "line_cd" : 28003, "selected" : false, "open_ymd" : "", "name" : "2800319", "pref_name" : "東京都", "shared_name" : "2800319", "lat" : 35.652279, "y" : -356522.79, "x" : 1397222.02 }, "position" : { "x" : 1397222.02, "y" : -356522.79 }, "selected" : false }, { "data" : { "id" : "5957", "station_name" : "六本木", "close_ymd" : "", "lon" : 139.73144299999998, "post" : "106-0032", "e_status" : 0, "SUID" : 5957, "station_g_cd" : 2800318, "add" : "港区六本木6-1-25", "line_cd" : 28003, "selected" : false, "open_ymd" : "", "name" : "2800318", "pref_name" : "東京都", "shared_name" : "2800318", "lat" : 35.662836, "y" : -356628.36, "x" : 1397314.43 }, "position" : { "x" : 1397314.43, "y" : -356628.36 }, "selected" : false }, { "data" : { "id" : "5972", "station_name" : "門前仲町", "close_ymd" : "", "lon" : 139.796209, "post" : "135-0048", "e_status" : 0, "SUID" : 5972, "station_g_cd" : 2800412, "add" : "江東区門前仲町1丁目", "line_cd" : 28004, "selected" : false, "open_ymd" : "", "name" : "2800412", "pref_name" : "東京都", "shared_name" : "2800412", "lat" : 35.671851000000004, "y" : -356718.51, "x" : 1397962.09 }, "position" : { "x" : 1397962.09, "y" : -356718.51 }, "selected" : false }, { "data" : { "id" : "5971", "station_name" : "茅場町", "close_ymd" : "", "lon" : 139.78000500000002, "post" : "103-0025", "e_status" : 0, "SUID" : 5971, "station_g_cd" : 2800310, "add" : "中央区日本橋茅場町1-4-6", "line_cd" : 28004, "selected" : false, "open_ymd" : "", "name" : "2800411", "pref_name" : "東京都", "shared_name" : "2800411", "lat" : 35.679752, "y" : -356797.52, "x" : 1397800.0500000003 }, "position" : { "x" : 1397800.0500000003, "y" : -356797.52 }, "selected" : false }, { "data" : { "id" : "5970", "station_name" : "日本橋", "close_ymd" : "", "lon" : 139.773516, "post" : "103-0027", "e_status" : 0, "SUID" : 5970, "station_g_cd" : 2800109, "add" : "中央区日本橋1丁目", "line_cd" : 28004, "selected" : false, "open_ymd" : "", "name" : "2800410", "pref_name" : "東京都", "shared_name" : "2800410", "lat" : 35.682078000000004, "y" : -356820.78, "x" : 1397735.16 }, "position" : { "x" : 1397735.16, "y" : -356820.78 }, "selected" : false }, { "data" : { "id" : "5969", "station_name" : "大手町", "close_ymd" : "", "lon" : 139.766086, "post" : "100-0004", "e_status" : 0, "SUID" : 5969, "station_g_cd" : 2800208, "add" : "千代田区大手町1丁目", "line_cd" : 28004, "selected" : false, "open_ymd" : "", "name" : "2800409", "pref_name" : "東京都", "shared_name" : "2800409", "lat" : 35.684801, "y" : -356848.01, "x" : 1397660.86 }, "position" : { "x" : 1397660.86, "y" : -356848.01 }, "selected" : false }, { "data" : { "id" : "5968", "station_name" : "竹橋", "close_ymd" : "", "lon" : 139.75681699999998, "post" : "100-0003", "e_status" : 0, "SUID" : 5968, "station_g_cd" : 2800408, "add" : "千代田区一ツ橋1-1-1", "line_cd" : 28004, "selected" : false, "open_ymd" : "", "name" : "2800408", "pref_name" : "東京都", "shared_name" : "2800408", "lat" : 35.690661999999996, "y" : -356906.61999999994, "x" : 1397568.17 }, "position" : { "x" : 1397568.17, "y" : -356906.61999999994 }, "selected" : false }, { "data" : { "id" : "5967", "station_name" : "九段下", "close_ymd" : "", "lon" : 139.751948, "post" : "102-0074", "e_status" : 0, "SUID" : 5967, "station_g_cd" : 2800407, "add" : "千代田区九段南1-6-1", "line_cd" : 28004, "selected" : false, "open_ymd" : "", "name" : "2800407", "pref_name" : "東京都", "shared_name" : "2800407", "lat" : 35.695589, "y" : -356955.88999999996, "x" : 1397519.48 }, "position" : { "x" : 1397519.48, "y" : -356955.88999999996 }, "selected" : false }, { "data" : { "id" : "5966", "station_name" : "飯田橋", "close_ymd" : "", "lon" : 139.74598600000002, "post" : "", "e_status" : 0, "SUID" : 5966, "station_g_cd" : 1131205, "add" : "東京都千代田区飯田橋四丁目10-3", "line_cd" : 28004, "selected" : false, "open_ymd" : "", "name" : "2800406", "pref_name" : "東京都", "shared_name" : "2800406", "lat" : 35.701725, "y" : -357017.25000000006, "x" : 1397459.86 }, "position" : { "x" : 1397459.86, "y" : -357017.25000000006 }, "selected" : false }, { "data" : { "id" : "5965", "station_name" : "神楽坂", "close_ymd" : "", "lon" : 139.734546, "post" : "162-0805", "e_status" : 0, "SUID" : 5965, "station_g_cd" : 2800405, "add" : "新宿区矢来町112", "line_cd" : 28004, "selected" : false, "open_ymd" : "", "name" : "2800405", "pref_name" : "東京都", "shared_name" : "2800405", "lat" : 35.703790000000005, "y" : -357037.9, "x" : 1397345.46 }, "position" : { "x" : 1397345.46, "y" : -357037.9 }, "selected" : false }, { "data" : { "id" : "5947", "station_name" : "小伝馬町", "close_ymd" : "", "lon" : 139.778433, "post" : "103-0001", "e_status" : 0, "SUID" : 5947, "station_g_cd" : 2800308, "add" : "中央区日本橋小伝馬町11-1", "line_cd" : 28003, "selected" : false, "open_ymd" : "", "name" : "2800308", "pref_name" : "東京都", "shared_name" : "2800308", "lat" : 35.690737, "y" : -356907.37, "x" : 1397784.33 }, "position" : { "x" : 1397784.33, "y" : -356907.37 }, "selected" : false }, { "data" : { "id" : "5948", "station_name" : "人形町", "close_ymd" : "", "lon" : 139.782285, "post" : "103-0013", "e_status" : 0, "SUID" : 5948, "station_g_cd" : 2800309, "add" : "中央区日本橋人形町2-6-5", "line_cd" : 28003, "selected" : false, "open_ymd" : "", "name" : "2800309", "pref_name" : "東京都", "shared_name" : "2800309", "lat" : 35.686307, "y" : -356863.07, "x" : 1397822.85 }, "position" : { "x" : 1397822.85, "y" : -356863.07 }, "selected" : false }, { "data" : { "id" : "5945", "station_name" : "仲御徒町", "close_ymd" : "", "lon" : 139.77613799999997, "post" : "110-0005", "e_status" : 0, "SUID" : 5945, "station_g_cd" : 1130221, "add" : "台東区上野5-24-12", "line_cd" : 28003, "selected" : false, "open_ymd" : "", "name" : "2800306", "pref_name" : "東京都", "shared_name" : "2800306", "lat" : 35.706649, "y" : -357066.49, "x" : 1397761.3799999997 }, "position" : { "x" : 1397761.3799999997, "y" : -357066.49 }, "selected" : false }, { "data" : { "id" : "5946", "station_name" : "秋葉原", "close_ymd" : "", "lon" : 139.775459, "post" : "", "e_status" : 0, "SUID" : 5946, "station_g_cd" : 1130222, "add" : "東京都千代田区神田佐久間町一丁目21", "line_cd" : 28003, "selected" : false, "open_ymd" : "", "name" : "2800307", "pref_name" : "東京都", "shared_name" : "2800307", "lat" : 35.698161999999996, "y" : -356981.61999999994, "x" : 1397754.59 }, "position" : { "x" : 1397754.59, "y" : -356981.61999999994 }, "selected" : false }, { "data" : { "id" : "5943", "station_name" : "入谷", "close_ymd" : "", "lon" : 139.783924, "post" : "110-0013", "e_status" : 0, "SUID" : 5943, "station_g_cd" : 2800304, "add" : "台東区入谷1-6-4", "line_cd" : 28003, "selected" : false, "open_ymd" : "", "name" : "2800304", "pref_name" : "東京都", "shared_name" : "2800304", "lat" : 35.719862, "y" : -357198.62, "x" : 1397839.2400000002 }, "position" : { "x" : 1397839.2400000002, "y" : -357198.62 }, "selected" : false }, { "data" : { "id" : "5944", "station_name" : "上野", "close_ymd" : "", "lon" : 139.777122, "post" : "", "e_status" : 0, "SUID" : 5944, "station_g_cd" : 1130220, "add" : "東京都台東区東上野三丁目19-6", "line_cd" : 28003, "selected" : false, "open_ymd" : "", "name" : "2800305", "pref_name" : "東京都", "shared_name" : "2800305", "lat" : 35.711482000000004, "y" : -357114.82000000007, "x" : 1397771.22 }, "position" : { "x" : 1397771.22, "y" : -357114.82000000007 }, "selected" : false }, { "data" : { "id" : "5941", "station_name" : "南千住", "close_ymd" : "", "lon" : 139.799273, "post" : "116-0003", "e_status" : 0, "SUID" : 5941, "station_g_cd" : 1132004, "add" : "荒川区南千住4丁目", "line_cd" : 28003, "selected" : false, "open_ymd" : "", "name" : "2800302", "pref_name" : "東京都", "shared_name" : "2800302", "lat" : 35.733398, "y" : -357333.98000000004, "x" : 1397992.73 }, "position" : { "x" : 1397992.73, "y" : -357333.98000000004 }, "selected" : false }, { "data" : { "id" : "5942", "station_name" : "三ノ輪", "close_ymd" : "", "lon" : 139.79148500000002, "post" : "110-0011", "e_status" : 0, "SUID" : 5942, "station_g_cd" : 2800303, "add" : "台東区三ノ輪2-14-7", "line_cd" : 28003, "selected" : false, "open_ymd" : "", "name" : "2800303", "pref_name" : "東京都", "shared_name" : "2800303", "lat" : 35.729623, "y" : -357296.23, "x" : 1397914.8500000003 }, "position" : { "x" : 1397914.8500000003, "y" : -357296.23 }, "selected" : false }, { "data" : { "id" : "5955", "station_name" : "霞ケ関", "close_ymd" : "", "lon" : 139.750899, "post" : "100-0013", "e_status" : 0, "SUID" : 5955, "station_g_cd" : 2800211, "add" : "千代田区霞が関2丁目", "line_cd" : 28003, "selected" : false, "open_ymd" : "", "name" : "2800316", "pref_name" : "東京都", "shared_name" : "2800316", "lat" : 35.673838, "y" : -356738.38000000006, "x" : 1397508.99 }, "position" : { "x" : 1397508.99, "y" : -356738.38000000006 }, "selected" : false }, { "data" : { "id" : "5956", "station_name" : "神谷町", "close_ymd" : "", "lon" : 139.745069, "post" : "105-0001", "e_status" : 0, "SUID" : 5956, "station_g_cd" : 2800317, "add" : "港区虎ノ門5-12-11", "line_cd" : 28003, "selected" : false, "open_ymd" : "", "name" : "2800317", "pref_name" : "東京都", "shared_name" : "2800317", "lat" : 35.662978, "y" : -356629.78, "x" : 1397450.69 }, "position" : { "x" : 1397450.69, "y" : -356629.78 }, "selected" : false }, { "data" : { "id" : "5953", "station_name" : "銀座", "close_ymd" : "", "lon" : 139.76396499999998, "post" : "104-0061", "e_status" : 0, "SUID" : 5953, "station_g_cd" : 2800111, "add" : "中央区銀座4-1-2", "line_cd" : 28003, "selected" : false, "open_ymd" : "", "name" : "2800314", "pref_name" : "東京都", "shared_name" : "2800314", "lat" : 35.671989, "y" : -356719.89, "x" : 1397639.65 }, "position" : { "x" : 1397639.65, "y" : -356719.89 }, "selected" : false }, { "data" : { "id" : "5954", "station_name" : "日比谷", "close_ymd" : "", "lon" : 139.76017, "post" : "100-0006", "e_status" : 0, "SUID" : 5954, "station_g_cd" : 2800315, "add" : "千代田区有楽町1丁目", "line_cd" : 28003, "selected" : false, "open_ymd" : "", "name" : "2800315", "pref_name" : "東京都", "shared_name" : "2800315", "lat" : 35.67459, "y" : -356745.9, "x" : 1397601.7 }, "position" : { "x" : 1397601.7, "y" : -356745.9 }, "selected" : false }, { "data" : { "id" : "5951", "station_name" : "築地", "close_ymd" : "", "lon" : 139.772603, "post" : "104-0045", "e_status" : 0, "SUID" : 5951, "station_g_cd" : 2800312, "add" : "中央区築地3-15-1", "line_cd" : 28003, "selected" : false, "open_ymd" : "", "name" : "2800312", "pref_name" : "東京都", "shared_name" : "2800312", "lat" : 35.668115, "y" : -356681.15, "x" : 1397726.03 }, "position" : { "x" : 1397726.03, "y" : -356681.15 }, "selected" : false }, { "data" : { "id" : "5952", "station_name" : "東銀座", "close_ymd" : "", "lon" : 139.767253, "post" : "104-0061", "e_status" : 0, "SUID" : 5952, "station_g_cd" : 2800313, "add" : "中央区銀座4-12-15", "line_cd" : 28003, "selected" : false, "open_ymd" : "", "name" : "2800313", "pref_name" : "東京都", "shared_name" : "2800313", "lat" : 35.669464000000005, "y" : -356694.6400000001, "x" : 1397672.53 }, "position" : { "x" : 1397672.53, "y" : -356694.6400000001 }, "selected" : false }, { "data" : { "id" : "5949", "station_name" : "茅場町", "close_ymd" : "", "lon" : 139.78000500000002, "post" : "103-0025", "e_status" : 0, "SUID" : 5949, "station_g_cd" : 2800310, "add" : "中央区日本橋茅場町1-4-6", "line_cd" : 28003, "selected" : false, "open_ymd" : "", "name" : "2800310", "pref_name" : "東京都", "shared_name" : "2800310", "lat" : 35.679752, "y" : -356797.52, "x" : 1397800.0500000003 }, "position" : { "x" : 1397800.0500000003, "y" : -356797.52 }, "selected" : false }, { "data" : { "id" : "5950", "station_name" : "八丁堀", "close_ymd" : "", "lon" : 139.776982, "post" : "104-0032", "e_status" : 0, "SUID" : 5950, "station_g_cd" : 1132602, "add" : "中央区八丁堀3丁目", "line_cd" : 28003, "selected" : false, "open_ymd" : "", "name" : "2800311", "pref_name" : "東京都", "shared_name" : "2800311", "lat" : 35.674851000000004, "y" : -356748.51000000007, "x" : 1397769.82 }, "position" : { "x" : 1397769.82, "y" : -356748.51000000007 }, "selected" : false }, { "data" : { "id" : "5930", "station_name" : "西新宿", "close_ymd" : "", "lon" : 139.692778, "post" : "160-0023", "e_status" : 0, "SUID" : 5930, "station_g_cd" : 2800219, "add" : "新宿区西新宿6-7-51", "line_cd" : 28002, "selected" : false, "open_ymd" : "", "name" : "2800219", "pref_name" : "東京都", "shared_name" : "2800219", "lat" : 35.694297999999996, "y" : -356942.98, "x" : 1396927.78 }, "position" : { "x" : 1396927.78, "y" : -356942.98 }, "selected" : false }, { "data" : { "id" : "5929", "station_name" : "新宿", "close_ymd" : "", "lon" : 139.700711, "post" : "-", "e_status" : 0, "SUID" : 5929, "station_g_cd" : 1130208, "add" : "東京都新宿区西新宿一丁目 西口地下街1号", "line_cd" : 28002, "selected" : false, "open_ymd" : "", "name" : "2800218", "pref_name" : "東京都", "shared_name" : "2800218", "lat" : 35.69235, "y" : -356923.5, "x" : 1397007.11 }, "position" : { "x" : 1397007.11, "y" : -356923.5 }, "selected" : false }, { "data" : { "id" : "5932", "station_name" : "新中野", "close_ymd" : "", "lon" : 139.66903, "post" : "164-0011", "e_status" : 0, "SUID" : 5932, "station_g_cd" : 2800221, "add" : "中野区中央4-2-15", "line_cd" : 28002, "selected" : false, "open_ymd" : "", "name" : "2800221", "pref_name" : "東京都", "shared_name" : "2800221", "lat" : 35.697491, "y" : -356974.91, "x" : 1396690.2999999998 }, "position" : { "x" : 1396690.2999999998, "y" : -356974.91 }, "selected" : false }, { "data" : { "id" : "5931", "station_name" : "中野坂上", "close_ymd" : "", "lon" : 139.68291000000002, "post" : "164-0011", "e_status" : 0, "SUID" : 5931, "station_g_cd" : 2800220, "add" : "中野区中央2-1-2", "line_cd" : 28002, "selected" : false, "open_ymd" : "", "name" : "2800220", "pref_name" : "東京都", "shared_name" : "2800220", "lat" : 35.69792, "y" : -356979.2, "x" : 1396829.1000000003 }, "position" : { "x" : 1396829.1000000003, "y" : -356979.2 }, "selected" : false }, { "data" : { "id" : "5926", "station_name" : "四谷三丁目", "close_ymd" : "", "lon" : 139.720103, "post" : "160-0004", "e_status" : 0, "SUID" : 5926, "station_g_cd" : 2800215, "add" : "新宿区四谷3-8", "line_cd" : 28002, "selected" : false, "open_ymd" : "", "name" : "2800215", "pref_name" : "東京都", "shared_name" : "2800215", "lat" : 35.687958, "y" : -356879.58, "x" : 1397201.03 }, "position" : { "x" : 1397201.03, "y" : -356879.58 }, "selected" : false }, { "data" : { "id" : "5925", "station_name" : "四ツ谷", "close_ymd" : "", "lon" : 139.729947, "post" : "160-0004", "e_status" : 0, "SUID" : 5925, "station_g_cd" : 1131102, "add" : "新宿区四谷1丁目", "line_cd" : 28002, "selected" : false, "open_ymd" : "", "name" : "2800214", "pref_name" : "東京都", "shared_name" : "2800214", "lat" : 35.684585999999996, "y" : -356845.86, "x" : 1397299.4700000002 }, "position" : { "x" : 1397299.4700000002, "y" : -356845.86 }, "selected" : false }, { "data" : { "id" : "5928", "station_name" : "新宿三丁目", "close_ymd" : "", "lon" : 139.704895, "post" : "160-0022", "e_status" : 0, "SUID" : 5928, "station_g_cd" : 2800217, "add" : "新宿区新宿3-14-1", "line_cd" : 28002, "selected" : false, "open_ymd" : "", "name" : "2800217", "pref_name" : "東京都", "shared_name" : "2800217", "lat" : 35.690847, "y" : -356908.47, "x" : 1397048.95 }, "position" : { "x" : 1397048.95, "y" : -356908.47 }, "selected" : false }, { "data" : { "id" : "5927", "station_name" : "新宿御苑前", "close_ymd" : "", "lon" : 139.71069, "post" : "160-0022", "e_status" : 0, "SUID" : 5927, "station_g_cd" : 2800216, "add" : "新宿区新宿1-8-1", "line_cd" : 28002, "selected" : false, "open_ymd" : "", "name" : "2800216", "pref_name" : "東京都", "shared_name" : "2800216", "lat" : 35.688588, "y" : -356885.88, "x" : 1397106.9 }, "position" : { "x" : 1397106.9, "y" : -356885.88 }, "selected" : false }, { "data" : { "id" : "5938", "station_name" : "中野富士見町", "close_ymd" : "", "lon" : 139.666933, "post" : "164-0013", "e_status" : 0, "SUID" : 5938, "station_g_cd" : 2800227, "add" : "中野区弥生町5-24-4", "line_cd" : 28002, "selected" : false, "open_ymd" : "", "name" : "2800227", "pref_name" : "東京都", "shared_name" : "2800227", "lat" : 35.690514, "y" : -356905.14, "x" : 1396669.33 }, "position" : { "x" : 1396669.33, "y" : -356905.14 }, "selected" : false }, { "data" : { "id" : "5937", "station_name" : "荻窪", "close_ymd" : "", "lon" : 139.620116, "post" : "167-0043", "e_status" : 0, "SUID" : 5937, "station_g_cd" : 1131217, "add" : "杉並区上荻1丁目", "line_cd" : 28002, "selected" : false, "open_ymd" : "", "name" : "2800225", "pref_name" : "東京都", "shared_name" : "2800225", "lat" : 35.704304, "y" : -357043.04, "x" : 1396201.16 }, "position" : { "x" : 1396201.16, "y" : -357043.04 }, "selected" : false }, { "data" : { "id" : "5940", "station_name" : "北千住", "close_ymd" : "", "lon" : 139.804276, "post" : "120-0026", "e_status" : 0, "SUID" : 5940, "station_g_cd" : 1132005, "add" : "足立区千住旭町", "line_cd" : 28003, "selected" : false, "open_ymd" : "", "name" : "2800301", "pref_name" : "東京都", "shared_name" : "2800301", "lat" : 35.748915999999994, "y" : -357489.1599999999, "x" : 1398042.7599999998 }, "position" : { "x" : 1398042.7599999998, "y" : -357489.1599999999 }, "selected" : false }, { "data" : { "id" : "5939", "station_name" : "方南町", "close_ymd" : "", "lon" : 139.656498, "post" : "166-0013", "e_status" : 0, "SUID" : 5939, "station_g_cd" : 2800228, "add" : "杉並区堀ノ内1-1-1", "line_cd" : 28002, "selected" : false, "open_ymd" : "", "name" : "2800228", "pref_name" : "東京都", "shared_name" : "2800228", "lat" : 35.683496000000005, "y" : -356834.9600000001, "x" : 1396564.98 }, "position" : { "x" : 1396564.98, "y" : -356834.9600000001 }, "selected" : false }, { "data" : { "id" : "5934", "station_name" : "東高円寺", "close_ymd" : "", "lon" : 139.657822, "post" : "166-0012", "e_status" : 0, "SUID" : 5934, "station_g_cd" : 2800222, "add" : "杉並区和田3-55-42", "line_cd" : 28002, "selected" : false, "open_ymd" : "", "name" : "2800222", "pref_name" : "東京都", "shared_name" : "2800222", "lat" : 35.697802, "y" : -356978.02, "x" : 1396578.2200000002 }, "position" : { "x" : 1396578.2200000002, "y" : -356978.02 }, "selected" : false }, { "data" : { "id" : "5933", "station_name" : "中野新橋", "close_ymd" : "", "lon" : 139.67399699999999, "post" : "164-0013", "e_status" : 0, "SUID" : 5933, "station_g_cd" : 2800226, "add" : "中野区弥生町2-26-8", "line_cd" : 28002, "selected" : false, "open_ymd" : "", "name" : "2800226", "pref_name" : "東京都", "shared_name" : "2800226", "lat" : 35.692122999999995, "y" : -356921.2299999999, "x" : 1396739.97 }, "position" : { "x" : 1396739.97, "y" : -356921.2299999999 }, "selected" : false }, { "data" : { "id" : "5936", "station_name" : "南阿佐ケ谷", "close_ymd" : "", "lon" : 139.63576, "post" : "166-0004", "e_status" : 0, "SUID" : 5936, "station_g_cd" : 2800224, "add" : "杉並区阿佐谷南1-15-7", "line_cd" : 28002, "selected" : false, "open_ymd" : "", "name" : "2800224", "pref_name" : "東京都", "shared_name" : "2800224", "lat" : 35.699624, "y" : -356996.24, "x" : 1396357.6 }, "position" : { "x" : 1396357.6, "y" : -356996.24 }, "selected" : false }, { "data" : { "id" : "5935", "station_name" : "新高円寺", "close_ymd" : "", "lon" : 139.648068, "post" : "166-0003", "e_status" : 0, "SUID" : 5935, "station_g_cd" : 2800223, "add" : "杉並区高円寺南2-20-1", "line_cd" : 28002, "selected" : false, "open_ymd" : "", "name" : "2800223", "pref_name" : "東京都", "shared_name" : "2800223", "lat" : 35.697984999999996, "y" : -356979.85, "x" : 1396480.68 }, "position" : { "x" : 1396480.68, "y" : -356979.85 }, "selected" : false }, { "data" : { "id" : "5913", "station_name" : "新大塚", "close_ymd" : "", "lon" : 139.729971, "post" : "112-0012", "e_status" : 0, "SUID" : 5913, "station_g_cd" : 2800202, "add" : "文京区大塚4-51-5", "line_cd" : 28002, "selected" : false, "open_ymd" : "", "name" : "2800202", "pref_name" : "東京都", "shared_name" : "2800202", "lat" : 35.72569, "y" : -357256.9, "x" : 1397299.71 }, "position" : { "x" : 1397299.71, "y" : -357256.9 }, "selected" : false }, { "data" : { "id" : "5914", "station_name" : "茗荷谷", "close_ymd" : "", "lon" : 139.737184, "post" : "112-0006", "e_status" : 0, "SUID" : 5914, "station_g_cd" : 2800203, "add" : "文京区小日向4-6-15", "line_cd" : 28002, "selected" : false, "open_ymd" : "", "name" : "2800203", "pref_name" : "東京都", "shared_name" : "2800203", "lat" : 35.716989, "y" : -357169.88999999996, "x" : 1397371.84 }, "position" : { "x" : 1397371.84, "y" : -357169.88999999996 }, "selected" : false }, { "data" : { "id" : "5915", "station_name" : "後楽園", "close_ymd" : "", "lon" : 139.75186399999998, "post" : "112-0003", "e_status" : 0, "SUID" : 5915, "station_g_cd" : 2800204, "add" : "文京区春日1-2-3", "line_cd" : 28002, "selected" : false, "open_ymd" : "", "name" : "2800204", "pref_name" : "東京都", "shared_name" : "2800204", "lat" : 35.707898, "y" : -357078.98, "x" : 1397518.64 }, "position" : { "x" : 1397518.64, "y" : -357078.98 }, "selected" : false }, { "data" : { "id" : "5916", "station_name" : "本郷三丁目", "close_ymd" : "", "lon" : 139.75991399999998, "post" : "113-0033", "e_status" : 0, "SUID" : 5916, "station_g_cd" : 2800205, "add" : "文京区本郷2-39-1", "line_cd" : 28002, "selected" : false, "open_ymd" : "", "name" : "2800205", "pref_name" : "東京都", "shared_name" : "2800205", "lat" : 35.706671, "y" : -357066.71, "x" : 1397599.14 }, "position" : { "x" : 1397599.14, "y" : -357066.71 }, "selected" : false }, { "data" : { "id" : "5909", "station_name" : "外苑前", "close_ymd" : "", "lon" : 139.717857, "post" : "107-0061", "e_status" : 0, "SUID" : 5909, "station_g_cd" : 2800117, "add" : "港区北青山2-7-16", "line_cd" : 28001, "selected" : false, "open_ymd" : "", "name" : "2800117", "pref_name" : "東京都", "shared_name" : "2800117", "lat" : 35.670527, "y" : -356705.27, "x" : 1397178.57 }, "position" : { "x" : 1397178.57, "y" : -356705.27 }, "selected" : false }, { "data" : { "id" : "5910", "station_name" : "表参道", "close_ymd" : "", "lon" : 139.712314, "post" : "107-0061", "e_status" : 0, "SUID" : 5910, "station_g_cd" : 2800118, "add" : "港区北青山3丁目", "line_cd" : 28001, "selected" : false, "open_ymd" : "", "name" : "2800118", "pref_name" : "東京都", "shared_name" : "2800118", "lat" : 35.665246999999994, "y" : -356652.4699999999, "x" : 1397123.14 }, "position" : { "x" : 1397123.14, "y" : -356652.4699999999 }, "selected" : false }, { "data" : { "id" : "5911", "station_name" : "渋谷", "close_ymd" : "", "lon" : 139.701, "post" : "", "e_status" : 0, "SUID" : 5911, "station_g_cd" : 1130205, "add" : "東京都渋谷区道玄坂一丁目1-1", "line_cd" : 28001, "selected" : false, "open_ymd" : "", "name" : "2800119", "pref_name" : "東京都", "shared_name" : "2800119", "lat" : 35.659065999999996, "y" : -356590.66, "x" : 1397010.0 }, "position" : { "x" : 1397010.0, "y" : -356590.66 }, "selected" : false }, { "data" : { "id" : "5912", "station_name" : "池袋", "close_ymd" : "", "lon" : 139.71108600000002, "post" : "", "e_status" : 0, "SUID" : 5912, "station_g_cd" : 1130212, "add" : "東京都豊島区", "line_cd" : 28002, "selected" : false, "open_ymd" : "", "name" : "2800201", "pref_name" : "東京都", "shared_name" : "2800201", "lat" : 35.730256, "y" : -357302.56, "x" : 1397110.8600000003 }, "position" : { "x" : 1397110.8600000003, "y" : -357302.56 }, "selected" : false }, { "data" : { "id" : "5921", "station_name" : "銀座", "close_ymd" : "", "lon" : 139.76396499999998, "post" : "104-0061", "e_status" : 0, "SUID" : 5921, "station_g_cd" : 2800111, "add" : "中央区銀座4-1-2", "line_cd" : 28002, "selected" : false, "open_ymd" : "", "name" : "2800210", "pref_name" : "東京都", "shared_name" : "2800210", "lat" : 35.671989, "y" : -356719.89, "x" : 1397639.65 }, "position" : { "x" : 1397639.65, "y" : -356719.89 }, "selected" : false }, { "data" : { "id" : "5922", "station_name" : "霞ケ関", "close_ymd" : "", "lon" : 139.750899, "post" : "100-0013", "e_status" : 0, "SUID" : 5922, "station_g_cd" : 2800211, "add" : "千代田区霞が関2丁目", "line_cd" : 28002, "selected" : false, "open_ymd" : "", "name" : "2800211", "pref_name" : "東京都", "shared_name" : "2800211", "lat" : 35.673838, "y" : -356738.38000000006, "x" : 1397508.99 }, "position" : { "x" : 1397508.99, "y" : -356738.38000000006 }, "selected" : false }, { "data" : { "id" : "5923", "station_name" : "国会議事堂前", "close_ymd" : "", "lon" : 139.745219, "post" : "100-0014", "e_status" : 0, "SUID" : 5923, "station_g_cd" : 2800212, "add" : "千代田区永田町1丁目", "line_cd" : 28002, "selected" : false, "open_ymd" : "", "name" : "2800212", "pref_name" : "東京都", "shared_name" : "2800212", "lat" : 35.67393, "y" : -356739.3, "x" : 1397452.19 }, "position" : { "x" : 1397452.19, "y" : -356739.3 }, "selected" : false }, { "data" : { "id" : "5924", "station_name" : "赤坂見附", "close_ymd" : "", "lon" : 139.737047, "post" : "107-0052", "e_status" : 0, "SUID" : 5924, "station_g_cd" : 2800115, "add" : "港区赤坂3-1-6", "line_cd" : 28002, "selected" : false, "open_ymd" : "", "name" : "2800213", "pref_name" : "東京都", "shared_name" : "2800213", "lat" : 35.677021, "y" : -356770.21, "x" : 1397370.47 }, "position" : { "x" : 1397370.47, "y" : -356770.21 }, "selected" : false }, { "data" : { "id" : "5917", "station_name" : "御茶ノ水", "close_ymd" : "", "lon" : 139.763952, "post" : "101-0062", "e_status" : 0, "SUID" : 5917, "station_g_cd" : 1131203, "add" : "千代田区神田駿河台2丁目", "line_cd" : 28002, "selected" : false, "open_ymd" : "", "name" : "2800206", "pref_name" : "東京都", "shared_name" : "2800206", "lat" : 35.700614, "y" : -357006.14, "x" : 1397639.5199999998 }, "position" : { "x" : 1397639.5199999998, "y" : -357006.14 }, "selected" : false }, { "data" : { "id" : "5918", "station_name" : "淡路町", "close_ymd" : "", "lon" : 139.767575, "post" : "101-0063", "e_status" : 0, "SUID" : 5918, "station_g_cd" : 2800207, "add" : "千代田区神田淡路町1-2", "line_cd" : 28002, "selected" : false, "open_ymd" : "", "name" : "2800207", "pref_name" : "東京都", "shared_name" : "2800207", "lat" : 35.695434000000006, "y" : -356954.3400000001, "x" : 1397675.75 }, "position" : { "x" : 1397675.75, "y" : -356954.3400000001 }, "selected" : false }, { "data" : { "id" : "5919", "station_name" : "大手町", "close_ymd" : "", "lon" : 139.7662, "post" : "100-0004", "e_status" : 0, "SUID" : 5919, "station_g_cd" : 2800208, "add" : "千代田区大手町1丁目", "line_cd" : 28002, "selected" : false, "open_ymd" : "", "name" : "2800208", "pref_name" : "東京都", "shared_name" : "2800208", "lat" : 35.686564000000004, "y" : -356865.64, "x" : 1397662.0 }, "position" : { "x" : 1397662.0, "y" : -356865.64 }, "selected" : false }, { "data" : { "id" : "5920", "station_name" : "東京", "close_ymd" : "", "lon" : 139.764708, "post" : "", "e_status" : 0, "SUID" : 5920, "station_g_cd" : 1130101, "add" : "東京都千代田区丸の内一丁目", "line_cd" : 28002, "selected" : false, "open_ymd" : "", "name" : "2800209", "pref_name" : "東京都", "shared_name" : "2800209", "lat" : 35.681753, "y" : -356817.53, "x" : 1397647.08 }, "position" : { "x" : 1397647.08, "y" : -356817.53 }, "selected" : false }, { "data" : { "id" : "3103", "station_name" : "赤羽", "close_ymd" : "", "lon" : 139.72092800000001, "post" : "115-0045", "e_status" : 0, "SUID" : 3103, "station_g_cd" : 1131903, "add" : "北区赤羽1丁目", "line_cd" : 11321, "selected" : false, "open_ymd" : "", "name" : "1132108", "pref_name" : "東京都", "shared_name" : "1132108", "lat" : 35.778026000000004, "y" : -357780.26000000007, "x" : 1397209.2800000003 }, "position" : { "x" : 1397209.2800000003, "y" : -357780.26000000007 }, "selected" : false }, { "data" : { "id" : "3104", "station_name" : "北赤羽", "close_ymd" : "", "lon" : 139.70569, "post" : "115-0052", "e_status" : 0, "SUID" : 3104, "station_g_cd" : 1132109, "add" : "北区赤羽北2丁目", "line_cd" : 11321, "selected" : false, "open_ymd" : "", "name" : "1132109", "pref_name" : "東京都", "shared_name" : "1132109", "lat" : 35.787007, "y" : -357870.07, "x" : 1397056.9000000001 }, "position" : { "x" : 1397056.9000000001, "y" : -357870.07 }, "selected" : false }, { "data" : { "id" : "3101", "station_name" : "板橋", "close_ymd" : "", "lon" : 139.719507, "post" : "173-0004", "e_status" : 0, "SUID" : 3101, "station_g_cd" : 1132106, "add" : "板橋区板橋1丁目", "line_cd" : 11321, "selected" : false, "open_ymd" : "", "name" : "1132106", "pref_name" : "東京都", "shared_name" : "1132106", "lat" : 35.745435, "y" : -357454.35, "x" : 1397195.0699999998 }, "position" : { "x" : 1397195.0699999998, "y" : -357454.35 }, "selected" : false }, { "data" : { "id" : "3102", "station_name" : "十条", "close_ymd" : "", "lon" : 139.72223300000002, "post" : "114-0034", "e_status" : 0, "SUID" : 3102, "station_g_cd" : 1132107, "add" : "北区上十条1丁目", "line_cd" : 11321, "selected" : false, "open_ymd" : "", "name" : "1132107", "pref_name" : "東京都", "shared_name" : "1132107", "lat" : 35.760321000000005, "y" : -357603.21, "x" : 1397222.33 }, "position" : { "x" : 1397222.33, "y" : -357603.21 }, "selected" : false }, { "data" : { "id" : "3105", "station_name" : "浮間舟渡", "close_ymd" : "", "lon" : 139.691341, "post" : "115-0051", "e_status" : 0, "SUID" : 3105, "station_g_cd" : 1132110, "add" : "北区浮間4丁目", "line_cd" : 11321, "selected" : false, "open_ymd" : "", "name" : "1132110", "pref_name" : "東京都", "shared_name" : "1132110", "lat" : 35.791209, "y" : -357912.09, "x" : 1396913.41 }, "position" : { "x" : 1396913.41, "y" : -357912.09 }, "selected" : false }, { "data" : { "id" : "3096", "station_name" : "大崎", "close_ymd" : "", "lon" : 139.72843899999998, "post" : "141-0032", "e_status" : 0, "SUID" : 3096, "station_g_cd" : 1130201, "add" : "東京都品川区大崎一丁目21-4", "line_cd" : 11321, "selected" : false, "open_ymd" : "", "name" : "1132101", "pref_name" : "東京都", "shared_name" : "1132101", "lat" : 35.619772, "y" : -356197.72, "x" : 1397284.39 }, "position" : { "x" : 1397284.39, "y" : -356197.72 }, "selected" : false }, { "data" : { "id" : "3099", "station_name" : "新宿", "close_ymd" : "", "lon" : 139.70046399999998, "post" : "160-0022", "e_status" : 0, "SUID" : 3099, "station_g_cd" : 1130208, "add" : "東京都新宿区新宿三丁目38-1", "line_cd" : 11321, "selected" : false, "open_ymd" : "", "name" : "1132104", "pref_name" : "東京都", "shared_name" : "1132104", "lat" : 35.689729, "y" : -356897.29, "x" : 1397004.64 }, "position" : { "x" : 1397004.64, "y" : -356897.29 }, "selected" : false }, { "data" : { "id" : "5300", "station_name" : "曳舟", "close_ymd" : "", "lon" : 139.81663400000002, "post" : "131-0032", "e_status" : 0, "SUID" : 5300, "station_g_cd" : 2100204, "add" : "墨田区東向島2丁目", "line_cd" : 21005, "selected" : false, "open_ymd" : "", "name" : "2100501", "pref_name" : "東京都", "shared_name" : "2100501", "lat" : 35.718418, "y" : -357184.18, "x" : 1398166.3400000003 }, "position" : { "x" : 1398166.3400000003, "y" : -357184.18 }, "selected" : false }, { "data" : { "id" : "3100", "station_name" : "池袋", "close_ymd" : "", "lon" : 139.71108600000002, "post" : "170-0000", "e_status" : 0, "SUID" : 3100, "station_g_cd" : 1130212, "add" : "東京都豊島区", "line_cd" : 11321, "selected" : false, "open_ymd" : "", "name" : "1132105", "pref_name" : "東京都", "shared_name" : "1132105", "lat" : 35.730256, "y" : -357302.56, "x" : 1397110.8600000003 }, "position" : { "x" : 1397110.8600000003, "y" : -357302.56 }, "selected" : false }, { "data" : { "id" : "3097", "station_name" : "恵比寿", "close_ymd" : "", "lon" : 139.71007, "post" : "151-0022", "e_status" : 0, "SUID" : 3097, "station_g_cd" : 1130204, "add" : "東京都渋谷区恵比寿南一丁目5-5", "line_cd" : 11321, "selected" : false, "open_ymd" : "", "name" : "1132102", "pref_name" : "東京都", "shared_name" : "1132102", "lat" : 35.646685, "y" : -356466.85, "x" : 1397100.7 }, "position" : { "x" : 1397100.7, "y" : -356466.85 }, "selected" : false }, { "data" : { "id" : "3098", "station_name" : "渋谷", "close_ymd" : "", "lon" : 139.701238, "post" : "150-0043", "e_status" : 0, "SUID" : 3098, "station_g_cd" : 1130205, "add" : "東京都渋谷区道玄坂一丁目1-1", "line_cd" : 11321, "selected" : false, "open_ymd" : "", "name" : "1132103", "pref_name" : "東京都", "shared_name" : "1132103", "lat" : 35.658871000000005, "y" : -356588.71, "x" : 1397012.38 }, "position" : { "x" : 1397012.38, "y" : -356588.71 }, "selected" : false }, { "data" : { "id" : "5302", "station_name" : "東あずま", "close_ymd" : "", "lon" : 139.831883, "post" : "131-0043", "e_status" : 0, "SUID" : 5302, "station_g_cd" : 2100503, "add" : "墨田区立花4-23-8", "line_cd" : 21005, "selected" : false, "open_ymd" : "", "name" : "2100503", "pref_name" : "東京都", "shared_name" : "2100503", "lat" : 35.707066999999995, "y" : -357070.6699999999, "x" : 1398318.83 }, "position" : { "x" : 1398318.83, "y" : -357070.6699999999 }, "selected" : false }, { "data" : { "id" : "5301", "station_name" : "小村井", "close_ymd" : "", "lon" : 139.827595, "post" : "131-0044", "e_status" : 0, "SUID" : 5301, "station_g_cd" : 2100502, "add" : "墨田区文花2-20-1", "line_cd" : 21005, "selected" : false, "open_ymd" : "", "name" : "2100502", "pref_name" : "東京都", "shared_name" : "2100502", "lat" : 35.710316, "y" : -357103.16, "x" : 1398275.95 }, "position" : { "x" : 1398275.95, "y" : -357103.16 }, "selected" : false }, { "data" : { "id" : "5304", "station_name" : "亀戸", "close_ymd" : "", "lon" : 139.826791, "post" : "136-0071", "e_status" : 0, "SUID" : 5304, "station_g_cd" : 1131323, "add" : "江東区亀戸5丁目", "line_cd" : 21005, "selected" : false, "open_ymd" : "", "name" : "2100505", "pref_name" : "東京都", "shared_name" : "2100505", "lat" : 35.697708, "y" : -356977.07999999996, "x" : 1398267.91 }, "position" : { "x" : 1398267.91, "y" : -356977.07999999996 }, "selected" : false }, { "data" : { "id" : "5303", "station_name" : "亀戸水神", "close_ymd" : "", "lon" : 139.83342199999998, "post" : "136-0071", "e_status" : 0, "SUID" : 5303, "station_g_cd" : 2100504, "add" : "江東区亀戸8-5-1", "line_cd" : 21005, "selected" : false, "open_ymd" : "", "name" : "2100504", "pref_name" : "東京都", "shared_name" : "2100504", "lat" : 35.699976, "y" : -356999.76, "x" : 1398334.2199999997 }, "position" : { "x" : 1398334.2199999997, "y" : -356999.76 }, "selected" : false }, { "data" : { "id" : "5306", "station_name" : "大師前", "close_ymd" : "", "lon" : 139.781647, "post" : "123-0841", "e_status" : 0, "SUID" : 5306, "station_g_cd" : 2100602, "add" : "足立区西新井1-3-1", "line_cd" : 21006, "selected" : false, "open_ymd" : "", "name" : "2100602", "pref_name" : "東京都", "shared_name" : "2100602", "lat" : 35.778989, "y" : -357789.89, "x" : 1397816.47 }, "position" : { "x" : 1397816.47, "y" : -357789.89 }, "selected" : false }, { "data" : { "id" : "5305", "station_name" : "西新井", "close_ymd" : "", "lon" : 139.790372, "post" : "123-0843", "e_status" : 0, "SUID" : 5305, "station_g_cd" : 2100213, "add" : "足立区西新井栄町2丁目", "line_cd" : 21006, "selected" : false, "open_ymd" : "", "name" : "2100601", "pref_name" : "東京都", "shared_name" : "2100601", "lat" : 35.777322999999996, "y" : -357773.23, "x" : 1397903.72 }, "position" : { "x" : 1397903.72, "y" : -357773.23 }, "selected" : false }, { "data" : { "id" : "3126", "station_name" : "上野", "close_ymd" : "", "lon" : 139.777043, "post" : "", "e_status" : 0, "SUID" : 3126, "station_g_cd" : 1130220, "add" : "東京都台東区上野七丁目1-1", "line_cd" : 11323, "selected" : false, "open_ymd" : "", "name" : "1132301", "pref_name" : "東京都", "shared_name" : "1132301", "lat" : 35.71379, "y" : -357137.9, "x" : 1397770.43 }, "position" : { "x" : 1397770.43, "y" : -357137.9 }, "selected" : false }, { "data" : { "id" : "3127", "station_name" : "尾久", "close_ymd" : "", "lon" : 139.753846, "post" : "114-0011", "e_status" : 0, "SUID" : 3127, "station_g_cd" : 1131902, "add" : "北区昭和町1丁目", "line_cd" : 11323, "selected" : false, "open_ymd" : "", "name" : "1132302", "pref_name" : "東京都", "shared_name" : "1132302", "lat" : 35.746829999999996, "y" : -357468.29999999993, "x" : 1397538.4600000002 }, "position" : { "x" : 1397538.4600000002, "y" : -357468.29999999993 }, "selected" : false }, { "data" : { "id" : "3128", "station_name" : "赤羽", "close_ymd" : "", "lon" : 139.72092800000001, "post" : "115-0045", "e_status" : 0, "SUID" : 3128, "station_g_cd" : 1131903, "add" : "北区赤羽1丁目", "line_cd" : 11323, "selected" : false, "open_ymd" : "", "name" : "1132303", "pref_name" : "東京都", "shared_name" : "1132303", "lat" : 35.778026000000004, "y" : -357780.26000000007, "x" : 1397209.2800000003 }, "position" : { "x" : 1397209.2800000003, "y" : -357780.26000000007 }, "selected" : false }, { "data" : { "id" : "5363", "station_name" : "椎名町", "close_ymd" : "", "lon" : 139.69436299999998, "post" : "171-0051", "e_status" : 0, "SUID" : 5363, "station_g_cd" : 2200102, "add" : "豊島区長崎1-1-22", "line_cd" : 22001, "selected" : false, "open_ymd" : "", "name" : "2200102", "pref_name" : "東京都", "shared_name" : "2200102", "lat" : 35.726572, "y" : -357265.72, "x" : 1396943.63 }, "position" : { "x" : 1396943.63, "y" : -357265.72 }, "selected" : false }, { "data" : { "id" : "5364", "station_name" : "東長崎", "close_ymd" : "", "lon" : 139.683294, "post" : "171-0051", "e_status" : 0, "SUID" : 5364, "station_g_cd" : 2200103, "add" : "豊島区長崎5-1-1", "line_cd" : 22001, "selected" : false, "open_ymd" : "", "name" : "2200103", "pref_name" : "東京都", "shared_name" : "2200103", "lat" : 35.73003, "y" : -357300.3, "x" : 1396832.94 }, "position" : { "x" : 1396832.94, "y" : -357300.3 }, "selected" : false }, { "data" : { "id" : "5362", "station_name" : "池袋", "close_ymd" : "", "lon" : 139.711461, "post" : "171-0022", "e_status" : 0, "SUID" : 5362, "station_g_cd" : 1130212, "add" : "東京都豊島区南池袋一丁目28-2", "line_cd" : 22001, "selected" : false, "open_ymd" : "", "name" : "2200101", "pref_name" : "東京都", "shared_name" : "2200101", "lat" : 35.72913, "y" : -357291.3, "x" : 1397114.61 }, "position" : { "x" : 1397114.61, "y" : -357291.3 }, "selected" : false }, { "data" : { "id" : "5370", "station_name" : "練馬高野台", "close_ymd" : "", "lon" : 139.616749, "post" : "177-0033", "e_status" : 0, "SUID" : 5370, "station_g_cd" : 2200109, "add" : "練馬区高野台1-7-27", "line_cd" : 22001, "selected" : false, "open_ymd" : "", "name" : "2200109", "pref_name" : "東京都", "shared_name" : "2200109", "lat" : 35.740621999999995, "y" : -357406.22, "x" : 1396167.49 }, "position" : { "x" : 1396167.49, "y" : -357406.22 }, "selected" : false }, { "data" : { "id" : "5369", "station_name" : "富士見台", "close_ymd" : "", "lon" : 139.62968999999998, "post" : "176-0021", "e_status" : 0, "SUID" : 5369, "station_g_cd" : 2200108, "add" : "練馬区貫井3-7-4", "line_cd" : 22001, "selected" : false, "open_ymd" : "", "name" : "2200108", "pref_name" : "東京都", "shared_name" : "2200108", "lat" : 35.735867, "y" : -357358.67, "x" : 1396296.9 }, "position" : { "x" : 1396296.9, "y" : -357358.67 }, "selected" : false }, { "data" : { "id" : "5372", "station_name" : "大泉学園", "close_ymd" : "", "lon" : 139.586732, "post" : "178-0063", "e_status" : 0, "SUID" : 5372, "station_g_cd" : 2200111, "add" : "練馬区東大泉1-29-7", "line_cd" : 22001, "selected" : false, "open_ymd" : "", "name" : "2200111", "pref_name" : "東京都", "shared_name" : "2200111", "lat" : 35.749406, "y" : -357494.06, "x" : 1395867.32 }, "position" : { "x" : 1395867.32, "y" : -357494.06 }, "selected" : false }, { "data" : { "id" : "5371", "station_name" : "石神井公園", "close_ymd" : "", "lon" : 139.60698100000002, "post" : "177-0041", "e_status" : 0, "SUID" : 5371, "station_g_cd" : 2200110, "add" : "練馬区石神井町3-23-10", "line_cd" : 22001, "selected" : false, "open_ymd" : "", "name" : "2200110", "pref_name" : "東京都", "shared_name" : "2200110", "lat" : 35.743563, "y" : -357435.63, "x" : 1396069.8100000003 }, "position" : { "x" : 1396069.8100000003, "y" : -357435.63 }, "selected" : false }, { "data" : { "id" : "3214", "station_name" : "葛西臨海公園", "close_ymd" : "", "lon" : 139.861529, "post" : "134-0086", "e_status" : 0, "SUID" : 3214, "station_g_cd" : 1132606, "add" : "江戸川区臨海町6丁目", "line_cd" : 11326, "selected" : false, "open_ymd" : "", "name" : "1132606", "pref_name" : "東京都", "shared_name" : "1132606", "lat" : 35.644391999999996, "y" : -356443.92, "x" : 1398615.2899999998 }, "position" : { "x" : 1398615.2899999998, "y" : -356443.92 }, "selected" : false }, { "data" : { "id" : "5366", "station_name" : "桜台", "close_ymd" : "", "lon" : 139.662602, "post" : "176-0002", "e_status" : 0, "SUID" : 5366, "station_g_cd" : 2200105, "add" : "練馬区桜台1-5-1", "line_cd" : 22001, "selected" : false, "open_ymd" : "", "name" : "2200105", "pref_name" : "東京都", "shared_name" : "2200105", "lat" : 35.738797, "y" : -357387.97, "x" : 1396626.02 }, "position" : { "x" : 1396626.02, "y" : -357387.97 }, "selected" : false }, { "data" : { "id" : "3213", "station_name" : "新木場", "close_ymd" : "", "lon" : 139.827402, "post" : "", "e_status" : 0, "SUID" : 3213, "station_g_cd" : 1132605, "add" : "東京都江東区新木場一丁目5", "line_cd" : 11326, "selected" : false, "open_ymd" : "", "name" : "1132605", "pref_name" : "東京都", "shared_name" : "1132605", "lat" : 35.646172, "y" : -356461.72, "x" : 1398274.02 }, "position" : { "x" : 1398274.02, "y" : -356461.72 }, "selected" : false }, { "data" : { "id" : "5365", "station_name" : "江古田", "close_ymd" : "", "lon" : 139.672814, "post" : "176-0005", "e_status" : 0, "SUID" : 5365, "station_g_cd" : 2200104, "add" : "練馬区旭丘1-78-7", "line_cd" : 22001, "selected" : false, "open_ymd" : "", "name" : "2200104", "pref_name" : "東京都", "shared_name" : "2200104", "lat" : 35.737557, "y" : -357375.57, "x" : 1396728.14 }, "position" : { "x" : 1396728.14, "y" : -357375.57 }, "selected" : false }, { "data" : { "id" : "5368", "station_name" : "中村橋", "close_ymd" : "", "lon" : 139.63745600000001, "post" : "176-0023", "e_status" : 0, "SUID" : 5368, "station_g_cd" : 2200107, "add" : "練馬区中村北4-2-1", "line_cd" : 22001, "selected" : false, "open_ymd" : "", "name" : "2200107", "pref_name" : "東京都", "shared_name" : "2200107", "lat" : 35.736767, "y" : -357367.67, "x" : 1396374.56 }, "position" : { "x" : 1396374.56, "y" : -357367.67 }, "selected" : false }, { "data" : { "id" : "5367", "station_name" : "練馬", "close_ymd" : "", "lon" : 139.654368, "post" : "176-0001", "e_status" : 0, "SUID" : 5367, "station_g_cd" : 2200106, "add" : "練馬区練馬1-3-5", "line_cd" : 22001, "selected" : false, "open_ymd" : "", "name" : "2200106", "pref_name" : "東京都", "shared_name" : "2200106", "lat" : 35.737893, "y" : -357378.93, "x" : 1396543.6800000002 }, "position" : { "x" : 1396543.6800000002, "y" : -357378.93 }, "selected" : false }, { "data" : { "id" : "3210", "station_name" : "八丁堀", "close_ymd" : "", "lon" : 139.777705, "post" : "104-0032", "e_status" : 0, "SUID" : 3210, "station_g_cd" : 1132602, "add" : "中央区八丁堀3丁目", "line_cd" : 11326, "selected" : false, "open_ymd" : "", "name" : "1132602", "pref_name" : "東京都", "shared_name" : "1132602", "lat" : 35.674617, "y" : -356746.17, "x" : 1397777.05 }, "position" : { "x" : 1397777.05, "y" : -356746.17 }, "selected" : false }, { "data" : { "id" : "3209", "station_name" : "東京", "close_ymd" : "", "lon" : 139.76610300000002, "post" : "-", "e_status" : 0, "SUID" : 3209, "station_g_cd" : 1130101, "add" : "東京都千代田区丸の内一丁目", "line_cd" : 11326, "selected" : false, "open_ymd" : "", "name" : "1132601", "pref_name" : "東京都", "shared_name" : "1132601", "lat" : 35.681391, "y" : -356813.91, "x" : 1397661.0300000003 }, "position" : { "x" : 1397661.0300000003, "y" : -356813.91 }, "selected" : false }, { "data" : { "id" : "5377", "station_name" : "秋津", "close_ymd" : "", "lon" : 139.49653899999998, "post" : "189-0001", "e_status" : 0, "SUID" : 5377, "station_g_cd" : 2200116, "add" : "東村山市秋津町5-7-8", "line_cd" : 22001, "selected" : false, "open_ymd" : "", "name" : "2200116", "pref_name" : "東京都", "shared_name" : "2200116", "lat" : 35.778614000000005, "y" : -357786.1400000001, "x" : 1394965.39 }, "position" : { "x" : 1394965.39, "y" : -357786.1400000001 }, "selected" : false }, { "data" : { "id" : "3212", "station_name" : "潮見", "close_ymd" : "", "lon" : 139.817341, "post" : "135-0052", "e_status" : 0, "SUID" : 3212, "station_g_cd" : 1132604, "add" : "江東区潮見2丁目", "line_cd" : 11326, "selected" : false, "open_ymd" : "", "name" : "1132604", "pref_name" : "東京都", "shared_name" : "1132604", "lat" : 35.658702000000005, "y" : -356587.0200000001, "x" : 1398173.41 }, "position" : { "x" : 1398173.41, "y" : -356587.0200000001 }, "selected" : false }, { "data" : { "id" : "3211", "station_name" : "越中島", "close_ymd" : "", "lon" : 139.792713, "post" : "135-0044", "e_status" : 0, "SUID" : 3211, "station_g_cd" : 1132603, "add" : "江東区越中島2丁目", "line_cd" : 11326, "selected" : false, "open_ymd" : "", "name" : "1132603", "pref_name" : "東京都", "shared_name" : "1132603", "lat" : 35.667946, "y" : -356679.46, "x" : 1397927.13 }, "position" : { "x" : 1397927.13, "y" : -356679.46 }, "selected" : false }, { "data" : { "id" : "5374", "station_name" : "ひばりヶ丘", "close_ymd" : "", "lon" : 139.545852, "post" : "202-0005", "e_status" : 0, "SUID" : 5374, "station_g_cd" : 2200113, "add" : "東京都西東京市住吉町三丁目", "line_cd" : 22001, "selected" : false, "open_ymd" : "", "name" : "2200113", "pref_name" : "東京都", "shared_name" : "2200113", "lat" : 35.751484999999995, "y" : -357514.85, "x" : 1395458.52 }, "position" : { "x" : 1395458.52, "y" : -357514.85 }, "selected" : false }, { "data" : { "id" : "5373", "station_name" : "保谷", "close_ymd" : "", "lon" : 139.567753, "post" : "202-0012", "e_status" : 0, "SUID" : 5373, "station_g_cd" : 2200112, "add" : "西東京市東町3-14-30", "line_cd" : 22001, "selected" : false, "open_ymd" : "", "name" : "2200112", "pref_name" : "東京都", "shared_name" : "2200112", "lat" : 35.748222, "y" : -357482.22, "x" : 1395677.53 }, "position" : { "x" : 1395677.53, "y" : -357482.22 }, "selected" : false }, { "data" : { "id" : "5376", "station_name" : "清瀬", "close_ymd" : "", "lon" : 139.519917, "post" : "204-0021", "e_status" : 0, "SUID" : 5376, "station_g_cd" : 2200115, "add" : "清瀬市元町1-2-4", "line_cd" : 22001, "selected" : false, "open_ymd" : "", "name" : "2200115", "pref_name" : "東京都", "shared_name" : "2200115", "lat" : 35.772221, "y" : -357722.21, "x" : 1395199.17 }, "position" : { "x" : 1395199.17, "y" : -357722.21 }, "selected" : false }, { "data" : { "id" : "5375", "station_name" : "東久留米", "close_ymd" : "", "lon" : 139.533739, "post" : "203-0014", "e_status" : 0, "SUID" : 5375, "station_g_cd" : 2200114, "add" : "東久留米市東本町1-8", "line_cd" : 22001, "selected" : false, "open_ymd" : "", "name" : "2200114", "pref_name" : "東京都", "shared_name" : "2200114", "lat" : 35.760445000000004, "y" : -357604.45000000007, "x" : 1395337.39 }, "position" : { "x" : 1395337.39, "y" : -357604.45000000007 }, "selected" : false }, { "data" : { "id" : "7607", "station_name" : "中井", "close_ymd" : "", "lon" : 139.68635600000002, "post" : "161-0032", "e_status" : 0, "SUID" : 7607, "station_g_cd" : 2200704, "add" : "新宿区中落合1-19-1", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930132", "pref_name" : "東京都", "shared_name" : "9930132", "lat" : 35.714034999999996, "y" : -357140.35, "x" : 1396863.5600000003 }, "position" : { "x" : 1396863.5600000003, "y" : -357140.35 }, "selected" : false }, { "data" : { "id" : "5151", "station_name" : "ときわ台", "close_ymd" : "", "lon" : 139.68901499999998, "post" : "174-0071", "e_status" : 0, "SUID" : 5151, "station_g_cd" : 2100106, "add" : "板橋区常盤台1-43-1", "line_cd" : 21001, "selected" : false, "open_ymd" : "", "name" : "2100106", "pref_name" : "東京都", "shared_name" : "2100106", "lat" : 35.758771, "y" : -357587.71, "x" : 1396890.15 }, "position" : { "x" : 1396890.15, "y" : -357587.71 }, "selected" : false }, { "data" : { "id" : "7608", "station_name" : "落合南長崎", "close_ymd" : "", "lon" : 139.683303, "post" : "161-0031", "e_status" : 0, "SUID" : 7608, "station_g_cd" : 9930133, "add" : "新宿区西落合3-1-18", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930133", "pref_name" : "東京都", "shared_name" : "9930133", "lat" : 35.723608, "y" : -357236.07999999996, "x" : 1396833.03 }, "position" : { "x" : 1396833.03, "y" : -357236.07999999996 }, "selected" : false }, { "data" : { "id" : "5152", "station_name" : "上板橋", "close_ymd" : "", "lon" : 139.67641, "post" : "174-0076", "e_status" : 0, "SUID" : 5152, "station_g_cd" : 2100107, "add" : "板橋区上板橋2-36-7", "line_cd" : 21001, "selected" : false, "open_ymd" : "", "name" : "2100107", "pref_name" : "東京都", "shared_name" : "2100107", "lat" : 35.763596, "y" : -357635.96, "x" : 1396764.1 }, "position" : { "x" : 1396764.1, "y" : -357635.96 }, "selected" : false }, { "data" : { "id" : "7605", "station_name" : "中野坂上", "close_ymd" : "", "lon" : 139.682279, "post" : "164-0011", "e_status" : 0, "SUID" : 7605, "station_g_cd" : 2800220, "add" : "中野区中央2-1-2", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930130", "pref_name" : "東京都", "shared_name" : "9930130", "lat" : 35.69709, "y" : -356970.9, "x" : 1396822.79 }, "position" : { "x" : 1396822.79, "y" : -356970.9 }, "selected" : false }, { "data" : { "id" : "5149", "station_name" : "大山", "close_ymd" : "", "lon" : 139.702589, "post" : "173-0023", "e_status" : 0, "SUID" : 5149, "station_g_cd" : 2100104, "add" : "板橋区大山町4-1", "line_cd" : 21001, "selected" : false, "open_ymd" : "", "name" : "2100104", "pref_name" : "東京都", "shared_name" : "2100104", "lat" : 35.748398, "y" : -357483.98000000004, "x" : 1397025.89 }, "position" : { "x" : 1397025.89, "y" : -357483.98000000004 }, "selected" : false }, { "data" : { "id" : "7606", "station_name" : "東中野", "close_ymd" : "", "lon" : 139.682987, "post" : "164-0003", "e_status" : 0, "SUID" : 7606, "station_g_cd" : 1131213, "add" : "中野区東中野4丁目", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930131", "pref_name" : "東京都", "shared_name" : "9930131", "lat" : 35.706891, "y" : -357068.91, "x" : 1396829.8699999999 }, "position" : { "x" : 1396829.8699999999, "y" : -357068.91 }, "selected" : false }, { "data" : { "id" : "5150", "station_name" : "中板橋", "close_ymd" : "", "lon" : 139.694628, "post" : "173-0021", "e_status" : 0, "SUID" : 5150, "station_g_cd" : 2100105, "add" : "板橋区弥生町33-1", "line_cd" : 21001, "selected" : false, "open_ymd" : "", "name" : "2100105", "pref_name" : "東京都", "shared_name" : "2100105", "lat" : 35.756214, "y" : -357562.14, "x" : 1396946.28 }, "position" : { "x" : 1396946.28, "y" : -357562.14 }, "selected" : false }, { "data" : { "id" : "7611", "station_name" : "豊島園", "close_ymd" : "", "lon" : 139.64911, "post" : "176-0001", "e_status" : 0, "SUID" : 7611, "station_g_cd" : 2200402, "add" : "練馬区練馬4-16-5", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930136", "pref_name" : "東京都", "shared_name" : "9930136", "lat" : 35.742067, "y" : -357420.67, "x" : 1396491.1 }, "position" : { "x" : 1396491.1, "y" : -357420.67 }, "selected" : false }, { "data" : { "id" : "5155", "station_name" : "成増", "close_ymd" : "", "lon" : 139.632708, "post" : "175-0094", "e_status" : 0, "SUID" : 5155, "station_g_cd" : 2100110, "add" : "板橋区成増2-13-1", "line_cd" : 21001, "selected" : false, "open_ymd" : "", "name" : "2100110", "pref_name" : "東京都", "shared_name" : "2100110", "lat" : 35.777722999999995, "y" : -357777.2299999999, "x" : 1396327.08 }, "position" : { "x" : 1396327.08, "y" : -357777.2299999999 }, "selected" : false }, { "data" : { "id" : "7612", "station_name" : "練馬春日町", "close_ymd" : "", "lon" : 139.64023600000002, "post" : "179-0074", "e_status" : 0, "SUID" : 7612, "station_g_cd" : 9930137, "add" : "練馬区春日町3-29-25", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930137", "pref_name" : "東京都", "shared_name" : "9930137", "lat" : 35.751452, "y" : -357514.52, "x" : 1396402.36 }, "position" : { "x" : 1396402.36, "y" : -357514.52 }, "selected" : false }, { "data" : { "id" : "7609", "station_name" : "新江古田", "close_ymd" : "", "lon" : 139.67065300000002, "post" : "165-0023", "e_status" : 0, "SUID" : 7609, "station_g_cd" : 9930134, "add" : "中野区江原町2-29-13", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930134", "pref_name" : "東京都", "shared_name" : "9930134", "lat" : 35.732538, "y" : -357325.38, "x" : 1396706.5300000003 }, "position" : { "x" : 1396706.5300000003, "y" : -357325.38 }, "selected" : false }, { "data" : { "id" : "5153", "station_name" : "東武練馬", "close_ymd" : "", "lon" : 139.66196399999998, "post" : "175-0083", "e_status" : 0, "SUID" : 5153, "station_g_cd" : 2100108, "add" : "板橋区徳丸2-2-14", "line_cd" : 21001, "selected" : false, "open_ymd" : "", "name" : "2100108", "pref_name" : "東京都", "shared_name" : "2100108", "lat" : 35.768698, "y" : -357686.98, "x" : 1396619.64 }, "position" : { "x" : 1396619.64, "y" : -357686.98 }, "selected" : false }, { "data" : { "id" : "7610", "station_name" : "練馬", "close_ymd" : "", "lon" : 139.65476999999998, "post" : "176-0001", "e_status" : 0, "SUID" : 7610, "station_g_cd" : 2200106, "add" : "練馬区練馬1-3-5", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930135", "pref_name" : "東京都", "shared_name" : "9930135", "lat" : 35.737404, "y" : -357374.04, "x" : 1396547.7 }, "position" : { "x" : 1396547.7, "y" : -357374.04 }, "selected" : false }, { "data" : { "id" : "5154", "station_name" : "下赤塚", "close_ymd" : "", "lon" : 139.644482, "post" : "175-0093", "e_status" : 0, "SUID" : 5154, "station_g_cd" : 2100109, "add" : "板橋区赤塚新町1-23-1", "line_cd" : 21001, "selected" : false, "open_ymd" : "", "name" : "2100109", "pref_name" : "東京都", "shared_name" : "2100109", "lat" : 35.770558, "y" : -357705.58, "x" : 1396444.82 }, "position" : { "x" : 1396444.82, "y" : -357705.58 }, "selected" : false }, { "data" : { "id" : "7615", "station_name" : "馬込", "close_ymd" : "", "lon" : 139.711772, "post" : "143-0021", "e_status" : 0, "SUID" : 7615, "station_g_cd" : 9930202, "add" : "大田区北馬込2-31-9", "line_cd" : 99302, "selected" : false, "open_ymd" : "", "name" : "9930202", "pref_name" : "東京都", "shared_name" : "9930202", "lat" : 35.596435, "y" : -355964.35, "x" : 1397117.72 }, "position" : { "x" : 1397117.72, "y" : -355964.35 }, "selected" : false }, { "data" : { "id" : "7616", "station_name" : "中延", "close_ymd" : "", "lon" : 139.713736, "post" : "142-0053", "e_status" : 0, "SUID" : 7616, "station_g_cd" : 2600404, "add" : "品川区中延4-5-5", "line_cd" : 99302, "selected" : false, "open_ymd" : "", "name" : "9930203", "pref_name" : "東京都", "shared_name" : "9930203", "lat" : 35.605769, "y" : -356057.69, "x" : 1397137.36 }, "position" : { "x" : 1397137.36, "y" : -356057.69 }, "selected" : false }, { "data" : { "id" : "7613", "station_name" : "光が丘", "close_ymd" : "", "lon" : 139.628603, "post" : "179-0072", "e_status" : 0, "SUID" : 7613, "station_g_cd" : 9930138, "add" : "練馬区光が丘2-9-5", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930138", "pref_name" : "東京都", "shared_name" : "9930138", "lat" : 35.758526, "y" : -357585.26, "x" : 1396286.03 }, "position" : { "x" : 1396286.03, "y" : -357585.26 }, "selected" : false }, { "data" : { "id" : "7614", "station_name" : "西馬込", "close_ymd" : "", "lon" : 139.705942, "post" : "143-0026", "e_status" : 0, "SUID" : 7614, "station_g_cd" : 9930201, "add" : "大田区西馬込2-1-6", "line_cd" : 99302, "selected" : false, "open_ymd" : "", "name" : "9930201", "pref_name" : "東京都", "shared_name" : "9930201", "lat" : 35.586859000000004, "y" : -355868.59, "x" : 1397059.42 }, "position" : { "x" : 1397059.42, "y" : -355868.59 }, "selected" : false }, { "data" : { "id" : "5147", "station_name" : "北池袋", "close_ymd" : "", "lon" : 139.716749, "post" : "170-0011", "e_status" : 0, "SUID" : 5147, "station_g_cd" : 2100102, "add" : "豊島区池袋本町1-36-6", "line_cd" : 21001, "selected" : false, "open_ymd" : "", "name" : "2100102", "pref_name" : "東京都", "shared_name" : "2100102", "lat" : 35.741283, "y" : -357412.83, "x" : 1397167.49 }, "position" : { "x" : 1397167.49, "y" : -357412.83 }, "selected" : false }, { "data" : { "id" : "7619", "station_name" : "高輪台", "close_ymd" : "", "lon" : 139.73030500000002, "post" : "108-0071", "e_status" : 0, "SUID" : 7619, "station_g_cd" : 9930206, "add" : "港区白金台2-26-7", "line_cd" : 99302, "selected" : false, "open_ymd" : "", "name" : "9930206", "pref_name" : "東京都", "shared_name" : "9930206", "lat" : 35.631679, "y" : -356316.79, "x" : 1397303.05 }, "position" : { "x" : 1397303.05, "y" : -356316.79 }, "selected" : false }, { "data" : { "id" : "7620", "station_name" : "泉岳寺", "close_ymd" : "", "lon" : 139.74002, "post" : "108-0074", "e_status" : 0, "SUID" : 7620, "station_g_cd" : 2700101, "add" : "港区高輪2-16-34", "line_cd" : 99302, "selected" : false, "open_ymd" : "", "name" : "9930207", "pref_name" : "東京都", "shared_name" : "9930207", "lat" : 35.638692, "y" : -356386.92, "x" : 1397400.2 }, "position" : { "x" : 1397400.2, "y" : -356386.92 }, "selected" : false }, { "data" : { "id" : "5148", "station_name" : "下板橋", "close_ymd" : "", "lon" : 139.714785, "post" : "170-0011", "e_status" : 0, "SUID" : 5148, "station_g_cd" : 2100103, "add" : "豊島区池袋本町4-43-11", "line_cd" : 21001, "selected" : false, "open_ymd" : "", "name" : "2100103", "pref_name" : "東京都", "shared_name" : "2100103", "lat" : 35.745721, "y" : -357457.21, "x" : 1397147.85 }, "position" : { "x" : 1397147.85, "y" : -357457.21 }, "selected" : false }, { "data" : { "id" : "7617", "station_name" : "戸越", "close_ymd" : "", "lon" : 139.716495, "post" : "142-0041", "e_status" : 0, "SUID" : 7617, "station_g_cd" : 2600503, "add" : "品川区戸越3-4-17", "line_cd" : 99302, "selected" : false, "open_ymd" : "", "name" : "9930204", "pref_name" : "東京都", "shared_name" : "9930204", "lat" : 35.614633000000005, "y" : -356146.3300000001, "x" : 1397164.9500000002 }, "position" : { "x" : 1397164.9500000002, "y" : -356146.3300000001 }, "selected" : false }, { "data" : { "id" : "5146", "station_name" : "池袋", "close_ymd" : "", "lon" : 139.710678, "post" : "", "e_status" : 0, "SUID" : 5146, "station_g_cd" : 1130212, "add" : "東京都豊島区", "line_cd" : 21001, "selected" : false, "open_ymd" : "", "name" : "2100101", "pref_name" : "東京都", "shared_name" : "2100101", "lat" : 35.730924, "y" : -357309.24, "x" : 1397106.78 }, "position" : { "x" : 1397106.78, "y" : -357309.24 }, "selected" : false }, { "data" : { "id" : "7618", "station_name" : "五反田", "close_ymd" : "", "lon" : 139.724175, "post" : "", "e_status" : 0, "SUID" : 7618, "station_g_cd" : 1130202, "add" : "東京都品川区東五反田一丁目26-14", "line_cd" : 99302, "selected" : false, "open_ymd" : "", "name" : "9930205", "pref_name" : "東京都", "shared_name" : "9930205", "lat" : 35.627102, "y" : -356271.02, "x" : 1397241.75 }, "position" : { "x" : 1397241.75, "y" : -356271.02 }, "selected" : false }, { "data" : { "id" : "7624", "station_name" : "東銀座", "close_ymd" : "", "lon" : 139.767253, "post" : "104-0061", "e_status" : 0, "SUID" : 7624, "station_g_cd" : 2800313, "add" : "中央区銀座4-12-15", "line_cd" : 99302, "selected" : false, "open_ymd" : "", "name" : "9930211", "pref_name" : "東京都", "shared_name" : "9930211", "lat" : 35.669464000000005, "y" : -356694.6400000001, "x" : 1397672.53 }, "position" : { "x" : 1397672.53, "y" : -356694.6400000001 }, "selected" : false }, { "data" : { "id" : "7623", "station_name" : "新橋", "close_ymd" : "", "lon" : 139.759451, "post" : "", "e_status" : 0, "SUID" : 7623, "station_g_cd" : 1130102, "add" : "東京都港区新橋二丁目21-1", "line_cd" : 99302, "selected" : false, "open_ymd" : "", "name" : "9930210", "pref_name" : "東京都", "shared_name" : "9930210", "lat" : 35.665577, "y" : -356655.77, "x" : 1397594.5100000002 }, "position" : { "x" : 1397594.5100000002, "y" : -356655.77 }, "selected" : false }, { "data" : { "id" : "7622", "station_name" : "大門", "close_ymd" : "", "lon" : 139.75466, "post" : "105-0013", "e_status" : 0, "SUID" : 7622, "station_g_cd" : 9930121, "add" : "港区浜松町1-27-12", "line_cd" : 99302, "selected" : false, "open_ymd" : "", "name" : "9930209", "pref_name" : "東京都", "shared_name" : "9930209", "lat" : 35.656785, "y" : -356567.85, "x" : 1397546.6 }, "position" : { "x" : 1397546.6, "y" : -356567.85 }, "selected" : false }, { "data" : { "id" : "7621", "station_name" : "三田", "close_ymd" : "", "lon" : 139.748775, "post" : "108-0014", "e_status" : 0, "SUID" : 7621, "station_g_cd" : 9930208, "add" : "港区芝5-34-10", "line_cd" : 99302, "selected" : false, "open_ymd" : "", "name" : "9930208", "pref_name" : "東京都", "shared_name" : "9930208", "lat" : 35.648179999999996, "y" : -356481.8, "x" : 1397487.75 }, "position" : { "x" : 1397487.75, "y" : -356481.8 }, "selected" : false }, { "data" : { "id" : "7628", "station_name" : "東日本橋", "close_ymd" : "", "lon" : 139.784821, "post" : "103-0004", "e_status" : 0, "SUID" : 7628, "station_g_cd" : 1131403, "add" : "中央区東日本橋3-11-8", "line_cd" : 99302, "selected" : false, "open_ymd" : "", "name" : "9930215", "pref_name" : "東京都", "shared_name" : "9930215", "lat" : 35.692126, "y" : -356921.26, "x" : 1397848.21 }, "position" : { "x" : 1397848.21, "y" : -356921.26 }, "selected" : false }, { "data" : { "id" : "7627", "station_name" : "人形町", "close_ymd" : "", "lon" : 139.782285, "post" : "103-0013", "e_status" : 0, "SUID" : 7627, "station_g_cd" : 2800309, "add" : "中央区日本橋人形町2-6-5", "line_cd" : 99302, "selected" : false, "open_ymd" : "", "name" : "9930214", "pref_name" : "東京都", "shared_name" : "9930214", "lat" : 35.686307, "y" : -356863.07, "x" : 1397822.85 }, "position" : { "x" : 1397822.85, "y" : -356863.07 }, "selected" : false }, { "data" : { "id" : "7626", "station_name" : "日本橋", "close_ymd" : "", "lon" : 139.775721, "post" : "103-0027", "e_status" : 0, "SUID" : 7626, "station_g_cd" : 2800109, "add" : "中央区日本橋1丁目", "line_cd" : 99302, "selected" : false, "open_ymd" : "", "name" : "9930213", "pref_name" : "東京都", "shared_name" : "9930213", "lat" : 35.681688, "y" : -356816.88, "x" : 1397757.21 }, "position" : { "x" : 1397757.21, "y" : -356816.88 }, "selected" : false }, { "data" : { "id" : "7625", "station_name" : "宝町", "close_ymd" : "", "lon" : 139.77176699999998, "post" : "104-0031", "e_status" : 0, "SUID" : 7625, "station_g_cd" : 2800110, "add" : "中央区京橋2-13-11", "line_cd" : 99302, "selected" : false, "open_ymd" : "", "name" : "9930212", "pref_name" : "東京都", "shared_name" : "9930212", "lat" : 35.675461, "y" : -356754.61, "x" : 1397717.67 }, "position" : { "x" : 1397717.67, "y" : -356754.61 }, "selected" : false }, { "data" : { "id" : "7632", "station_name" : "本所吾妻橋", "close_ymd" : "", "lon" : 139.804624, "post" : "130-0001", "e_status" : 0, "SUID" : 7632, "station_g_cd" : 9930219, "add" : "墨田区吾妻橋3-7-16", "line_cd" : 99302, "selected" : false, "open_ymd" : "", "name" : "9930219", "pref_name" : "東京都", "shared_name" : "9930219", "lat" : 35.70858, "y" : -357085.8, "x" : 1398046.24 }, "position" : { "x" : 1398046.24, "y" : -357085.8 }, "selected" : false }, { "data" : { "id" : "7631", "station_name" : "浅草", "close_ymd" : "", "lon" : 139.79697, "post" : "", "e_status" : 0, "SUID" : 7631, "station_g_cd" : 2100201, "add" : "東京都台東区", "line_cd" : 99302, "selected" : false, "open_ymd" : "", "name" : "9930218", "pref_name" : "東京都", "shared_name" : "9930218", "lat" : 35.709461, "y" : -357094.61, "x" : 1397969.7 }, "position" : { "x" : 1397969.7, "y" : -357094.61 }, "selected" : false }, { "data" : { "id" : "7630", "station_name" : "蔵前", "close_ymd" : "", "lon" : 139.790931, "post" : "111-0051", "e_status" : 0, "SUID" : 7630, "station_g_cd" : 9930112, "add" : "台東区蔵前2-3-1", "line_cd" : 99302, "selected" : false, "open_ymd" : "", "name" : "9930217", "pref_name" : "東京都", "shared_name" : "9930217", "lat" : 35.703236, "y" : -357032.36, "x" : 1397909.31 }, "position" : { "x" : 1397909.31, "y" : -357032.36 }, "selected" : false }, { "data" : { "id" : "7629", "station_name" : "浅草橋", "close_ymd" : "", "lon" : 139.786305, "post" : "111-0053", "e_status" : 0, "SUID" : 7629, "station_g_cd" : 1131320, "add" : "台東区浅草橋1丁目", "line_cd" : 99302, "selected" : false, "open_ymd" : "", "name" : "9930216", "pref_name" : "東京都", "shared_name" : "9930216", "lat" : 35.697451, "y" : -356974.51, "x" : 1397863.05 }, "position" : { "x" : 1397863.05, "y" : -356974.51 }, "selected" : false }, { "data" : { "id" : "7636", "station_name" : "白金高輪", "close_ymd" : "", "lon" : 139.734104, "post" : "108-0074", "e_status" : 0, "SUID" : 7636, "station_g_cd" : 2800917, "add" : "港区高輪1-3-20", "line_cd" : 99303, "selected" : false, "open_ymd" : "", "name" : "9930303", "pref_name" : "東京都", "shared_name" : "9930303", "lat" : 35.642903000000004, "y" : -356429.03, "x" : 1397341.04 }, "position" : { "x" : 1397341.04, "y" : -356429.03 }, "selected" : false }, { "data" : { "id" : "7635", "station_name" : "白金台", "close_ymd" : "", "lon" : 139.726133, "post" : "108-0071", "e_status" : 0, "SUID" : 7635, "station_g_cd" : 2800918, "add" : "港区白金台3-2", "line_cd" : 99303, "selected" : false, "open_ymd" : "", "name" : "9930302", "pref_name" : "東京都", "shared_name" : "9930302", "lat" : 35.637917, "y" : -356379.17000000004, "x" : 1397261.33 }, "position" : { "x" : 1397261.33, "y" : -356379.17000000004 }, "selected" : false }, { "data" : { "id" : "7634", "station_name" : "目黒", "close_ymd" : "", "lon" : 139.7155, "post" : "", "e_status" : 0, "SUID" : 7634, "station_g_cd" : 1130203, "add" : "東京都品川区上大崎四丁目2-1", "line_cd" : 99303, "selected" : false, "open_ymd" : "", "name" : "9930301", "pref_name" : "東京都", "shared_name" : "9930301", "lat" : 35.633272, "y" : -356332.72, "x" : 1397155.0 }, "position" : { "x" : 1397155.0, "y" : -356332.72 }, "selected" : false }, { "data" : { "id" : "7633", "station_name" : "押上(スカイツリー前)", "close_ymd" : "", "lon" : 139.812935, "post" : "131-0045", "e_status" : 0, "SUID" : 7633, "station_g_cd" : 2100203, "add" : "墨田区押上一丁目", "line_cd" : 99302, "selected" : false, "open_ymd" : "", "name" : "9930220", "pref_name" : "東京都", "shared_name" : "9930220", "lat" : 35.710702000000005, "y" : -357107.0200000001, "x" : 1398129.35 }, "position" : { "x" : 1398129.35, "y" : -357107.0200000001 }, "selected" : false }, { "data" : { "id" : "3270", "station_name" : "高尾", "close_ymd" : "", "lon" : 139.282288, "post" : "193-0844", "e_status" : 0, "SUID" : 3270, "station_g_cd" : 1131112, "add" : "八王子市高尾町", "line_cd" : 11328, "selected" : false, "open_ymd" : "", "name" : "1132815", "pref_name" : "東京都", "shared_name" : "1132815", "lat" : 35.642026, "y" : -356420.26, "x" : 1392822.88 }, "position" : { "x" : 1392822.88, "y" : -356420.26 }, "selected" : false }, { "data" : { "id" : "3271", "station_name" : "八王子", "close_ymd" : "", "lon" : 139.338998, "post" : "-", "e_status" : 0, "SUID" : 3271, "station_g_cd" : 1130620, "add" : "東京都八王子市旭町1-1", "line_cd" : 11328, "selected" : false, "open_ymd" : "1889-08-11", "name" : "1132816", "pref_name" : "東京都", "shared_name" : "1132816", "lat" : 35.655555, "y" : -356555.55, "x" : 1393389.98 }, "position" : { "x" : 1393389.98, "y" : -356555.55 }, "selected" : false }, { "data" : { "id" : "3272", "station_name" : "立川", "close_ymd" : "", "lon" : 139.413704, "post" : "-", "e_status" : 0, "SUID" : 3272, "station_g_cd" : 1130325, "add" : "東京都立川市曙町二丁目1-1", "line_cd" : 11328, "selected" : false, "open_ymd" : "1889-04-11", "name" : "1132817", "pref_name" : "東京都", "shared_name" : "1132817", "lat" : 35.698202, "y" : -356982.02, "x" : 1394137.04 }, "position" : { "x" : 1394137.04, "y" : -356982.02 }, "selected" : false }, { "data" : { "id" : "7576", "station_name" : "都庁前", "close_ymd" : "", "lon" : 139.69257, "post" : "160-0023", "e_status" : 0, "SUID" : 7576, "station_g_cd" : 9930101, "add" : "新宿区西新宿2-8-1", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930101", "pref_name" : "東京都", "shared_name" : "9930101", "lat" : 35.690551, "y" : -356905.51, "x" : 1396925.7 }, "position" : { "x" : 1396925.7, "y" : -356905.51 }, "selected" : false }, { "data" : { "id" : "5184", "station_name" : "浅草", "close_ymd" : "", "lon" : 139.798214, "post" : "", "e_status" : 0, "SUID" : 5184, "station_g_cd" : 2100201, "add" : "東京都台東区", "line_cd" : 21002, "selected" : false, "open_ymd" : "", "name" : "2100201", "pref_name" : "東京都", "shared_name" : "2100201", "lat" : 35.711883, "y" : -357118.83, "x" : 1397982.1400000001 }, "position" : { "x" : 1397982.1400000001, "y" : -357118.83 }, "selected" : false }, { "data" : { "id" : "3273", "station_name" : "国分寺", "close_ymd" : "", "lon" : 139.480841, "post" : "-", "e_status" : 0, "SUID" : 3273, "station_g_cd" : 1131106, "add" : "東京都国分寺市本町二丁目", "line_cd" : 11328, "selected" : false, "open_ymd" : "1889-04-11", "name" : "1132818", "pref_name" : "東京都", "shared_name" : "1132818", "lat" : 35.700123, "y" : -357001.23, "x" : 1394808.41 }, "position" : { "x" : 1394808.41, "y" : -357001.23 }, "selected" : false }, { "data" : { "id" : "7577", "station_name" : "西新宿五丁目", "close_ymd" : "", "lon" : 139.684304, "post" : "160-0023", "e_status" : 0, "SUID" : 7577, "station_g_cd" : 9930129, "add" : "新宿区西新宿5-25-9", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930129", "pref_name" : "東京都", "shared_name" : "9930129", "lat" : 35.689797999999996, "y" : -356897.98, "x" : 1396843.04 }, "position" : { "x" : 1396843.04, "y" : -356897.98 }, "selected" : false }, { "data" : { "id" : "5185", "station_name" : "とうきょうスカイツリー", "close_ymd" : "", "lon" : 139.809332, "post" : "131-0045", "e_status" : 0, "SUID" : 5185, "station_g_cd" : 2100202, "add" : "墨田区押上1丁目", "line_cd" : 21002, "selected" : false, "open_ymd" : "1902-04-01", "name" : "2100202", "pref_name" : "東京都", "shared_name" : "2100202", "lat" : 35.71043, "y" : -357104.30000000005, "x" : 1398093.32 }, "position" : { "x" : 1398093.32, "y" : -357104.30000000005 }, "selected" : false }, { "data" : { "id" : "3274", "station_name" : "三鷹", "close_ymd" : "", "lon" : 139.560325, "post" : "-", "e_status" : 0, "SUID" : 3274, "station_g_cd" : 1131105, "add" : "東京都三鷹市下連雀三丁目46-1", "line_cd" : 11328, "selected" : false, "open_ymd" : "1930-06-25", "name" : "1132819", "pref_name" : "東京都", "shared_name" : "1132819", "lat" : 35.702683, "y" : -357026.83, "x" : 1395603.25 }, "position" : { "x" : 1395603.25, "y" : -357026.83 }, "selected" : false }, { "data" : { "id" : "7578", "station_name" : "新宿西口", "close_ymd" : "", "lon" : 139.69915500000002, "post" : "160-0023", "e_status" : 0, "SUID" : 7578, "station_g_cd" : 9930102, "add" : "新宿区西新宿1-3-17", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930102", "pref_name" : "東京都", "shared_name" : "9930102", "lat" : 35.693315000000005, "y" : -356933.1500000001, "x" : 1396991.5500000003 }, "position" : { "x" : 1396991.5500000003, "y" : -356933.1500000001 }, "selected" : false }, { "data" : { "id" : "5186", "station_name" : "押上〈スカイツリー前〉", "close_ymd" : "", "lon" : 139.812935, "post" : "131-0045", "e_status" : 0, "SUID" : 5186, "station_g_cd" : 2100203, "add" : "墨田区押上一丁目", "line_cd" : 21002, "selected" : false, "open_ymd" : "", "name" : "2100203", "pref_name" : "東京都", "shared_name" : "2100203", "lat" : 35.710702000000005, "y" : -357107.0200000001, "x" : 1398129.35 }, "position" : { "x" : 1398129.35, "y" : -357107.0200000001 }, "selected" : false }, { "data" : { "id" : "3275", "station_name" : "吉祥寺", "close_ymd" : "", "lon" : 139.57976499999998, "post" : "-", "e_status" : 0, "SUID" : 3275, "station_g_cd" : 1131104, "add" : "東京都武蔵野市吉祥寺南町", "line_cd" : 11328, "selected" : false, "open_ymd" : "1899-12-30", "name" : "1132820", "pref_name" : "東京都", "shared_name" : "1132820", "lat" : 35.703119, "y" : -357031.19, "x" : 1395797.65 }, "position" : { "x" : 1395797.65, "y" : -357031.19 }, "selected" : false }, { "data" : { "id" : "7579", "station_name" : "東新宿", "close_ymd" : "", "lon" : 139.707549, "post" : "160-0022", "e_status" : 0, "SUID" : 7579, "station_g_cd" : 2801012, "add" : "新宿区新宿7-27-3", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930103", "pref_name" : "東京都", "shared_name" : "9930103", "lat" : 35.69792, "y" : -356979.2, "x" : 1397075.49 }, "position" : { "x" : 1397075.49, "y" : -356979.2 }, "selected" : false }, { "data" : { "id" : "5187", "station_name" : "曳舟", "close_ymd" : "", "lon" : 139.81663400000002, "post" : "131-0032", "e_status" : 0, "SUID" : 5187, "station_g_cd" : 2100204, "add" : "墨田区東向島2丁目", "line_cd" : 21002, "selected" : false, "open_ymd" : "", "name" : "2100204", "pref_name" : "東京都", "shared_name" : "2100204", "lat" : 35.718418, "y" : -357184.18, "x" : 1398166.3400000003 }, "position" : { "x" : 1398166.3400000003, "y" : -357184.18 }, "selected" : false }, { "data" : { "id" : "5188", "station_name" : "東向島", "close_ymd" : "", "lon" : 139.819306, "post" : "131-0032", "e_status" : 0, "SUID" : 5188, "station_g_cd" : 2100205, "add" : "墨田区東向島4丁目", "line_cd" : 21002, "selected" : false, "open_ymd" : "", "name" : "2100205", "pref_name" : "東京都", "shared_name" : "2100205", "lat" : 35.724323999999996, "y" : -357243.23999999993, "x" : 1398193.06 }, "position" : { "x" : 1398193.06, "y" : -357243.23999999993 }, "selected" : false }, { "data" : { "id" : "7580", "station_name" : "若松河田", "close_ymd" : "", "lon" : 139.718184, "post" : "162-0054", "e_status" : 0, "SUID" : 7580, "station_g_cd" : 9930104, "add" : "新宿区河田町10-10", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930104", "pref_name" : "東京都", "shared_name" : "9930104", "lat" : 35.699218, "y" : -356992.18, "x" : 1397181.84 }, "position" : { "x" : 1397181.84, "y" : -356992.18 }, "selected" : false }, { "data" : { "id" : "7581", "station_name" : "牛込柳町", "close_ymd" : "", "lon" : 139.725027, "post" : "162-0053", "e_status" : 0, "SUID" : 7581, "station_g_cd" : 9930105, "add" : "新宿区原町2-32", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930105", "pref_name" : "東京都", "shared_name" : "9930105", "lat" : 35.699518, "y" : -356995.18, "x" : 1397250.27 }, "position" : { "x" : 1397250.27, "y" : -356995.18 }, "selected" : false }, { "data" : { "id" : "7582", "station_name" : "牛込神楽坂", "close_ymd" : "", "lon" : 139.735802, "post" : "162-0833", "e_status" : 0, "SUID" : 7582, "station_g_cd" : 9930106, "add" : "新宿区箪笥町15", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930106", "pref_name" : "東京都", "shared_name" : "9930106", "lat" : 35.700851, "y" : -357008.51, "x" : 1397358.02 }, "position" : { "x" : 1397358.02, "y" : -357008.51 }, "selected" : false }, { "data" : { "id" : "7583", "station_name" : "飯田橋", "close_ymd" : "", "lon" : 139.744999, "post" : "", "e_status" : 0, "SUID" : 7583, "station_g_cd" : 1131205, "add" : "東京都文京区後楽一丁目9-5", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930107", "pref_name" : "東京都", "shared_name" : "9930107", "lat" : 35.702927, "y" : -357029.27, "x" : 1397449.99 }, "position" : { "x" : 1397449.99, "y" : -357029.27 }, "selected" : false }, { "data" : { "id" : "7584", "station_name" : "春日", "close_ymd" : "", "lon" : 139.75325, "post" : "112-0003", "e_status" : 0, "SUID" : 7584, "station_g_cd" : 9930108, "add" : "文京区春日1-16-17", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930108", "pref_name" : "東京都", "shared_name" : "9930108", "lat" : 35.709598, "y" : -357095.98, "x" : 1397532.5 }, "position" : { "x" : 1397532.5, "y" : -357095.98 }, "selected" : false }, { "data" : { "id" : "7585", "station_name" : "本郷三丁目", "close_ymd" : "", "lon" : 139.760095, "post" : "113-0033", "e_status" : 0, "SUID" : 7585, "station_g_cd" : 2800205, "add" : "文京区本郷2-39-1", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930109", "pref_name" : "東京都", "shared_name" : "9930109", "lat" : 35.707462, "y" : -357074.62, "x" : 1397600.95 }, "position" : { "x" : 1397600.95, "y" : -357074.62 }, "selected" : false }, { "data" : { "id" : "7586", "station_name" : "上野御徒町", "close_ymd" : "", "lon" : 139.77433200000002, "post" : "110-0005", "e_status" : 0, "SUID" : 7586, "station_g_cd" : 1130221, "add" : "台東区上野5-26-6", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930110", "pref_name" : "東京都", "shared_name" : "9930110", "lat" : 35.707893, "y" : -357078.93, "x" : 1397743.32 }, "position" : { "x" : 1397743.32, "y" : -357078.93 }, "selected" : false }, { "data" : { "id" : "7587", "station_name" : "新御徒町", "close_ymd" : "", "lon" : 139.781958, "post" : "111-0041", "e_status" : 0, "SUID" : 7587, "station_g_cd" : 9930111, "add" : "台東区元浅草1-5-2", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930111", "pref_name" : "東京都", "shared_name" : "9930111", "lat" : 35.707045, "y" : -357070.45, "x" : 1397819.58 }, "position" : { "x" : 1397819.58, "y" : -357070.45 }, "selected" : false }, { "data" : { "id" : "7588", "station_name" : "蔵前", "close_ymd" : "", "lon" : 139.790931, "post" : "111-0051", "e_status" : 0, "SUID" : 7588, "station_g_cd" : 9930112, "add" : "台東区蔵前2-3-1", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930112", "pref_name" : "東京都", "shared_name" : "9930112", "lat" : 35.703236, "y" : -357032.36, "x" : 1397909.31 }, "position" : { "x" : 1397909.31, "y" : -357032.36 }, "selected" : false }, { "data" : { "id" : "7590", "station_name" : "森下", "close_ymd" : "", "lon" : 139.797042, "post" : "135-0004", "e_status" : 0, "SUID" : 7590, "station_g_cd" : 9930114, "add" : "江東区森下2-17-17", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930114", "pref_name" : "東京都", "shared_name" : "9930114", "lat" : 35.68796, "y" : -356879.6, "x" : 1397970.4200000002 }, "position" : { "x" : 1397970.4200000002, "y" : -356879.6 }, "selected" : false }, { "data" : { "id" : "5197", "station_name" : "竹ノ塚", "close_ymd" : "", "lon" : 139.790788, "post" : "121-0813", "e_status" : 0, "SUID" : 5197, "station_g_cd" : 2100214, "add" : "足立区竹の塚6丁目", "line_cd" : 21002, "selected" : false, "open_ymd" : "", "name" : "2100214", "pref_name" : "東京都", "shared_name" : "2100214", "lat" : 35.794368, "y" : -357943.68, "x" : 1397907.88 }, "position" : { "x" : 1397907.88, "y" : -357943.68 }, "selected" : false }, { "data" : { "id" : "7589", "station_name" : "両国", "close_ymd" : "", "lon" : 139.79742099999999, "post" : "130-0015", "e_status" : 0, "SUID" : 7589, "station_g_cd" : 1131321, "add" : "墨田区横網1丁目", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930113", "pref_name" : "東京都", "shared_name" : "9930113", "lat" : 35.696881, "y" : -356968.81, "x" : 1397974.21 }, "position" : { "x" : 1397974.21, "y" : -356968.81 }, "selected" : false }, { "data" : { "id" : "7592", "station_name" : "門前仲町", "close_ymd" : "", "lon" : 139.796209, "post" : "135-0048", "e_status" : 0, "SUID" : 7592, "station_g_cd" : 2800412, "add" : "江東区門前仲町1丁目", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930116", "pref_name" : "東京都", "shared_name" : "9930116", "lat" : 35.671851000000004, "y" : -356718.51, "x" : 1397962.09 }, "position" : { "x" : 1397962.09, "y" : -356718.51 }, "selected" : false }, { "data" : { "id" : "7591", "station_name" : "清澄白河", "close_ymd" : "", "lon" : 139.798851, "post" : "135-0021", "e_status" : 0, "SUID" : 7591, "station_g_cd" : 2800811, "add" : "江東区白河1-7-14", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930115", "pref_name" : "東京都", "shared_name" : "9930115", "lat" : 35.682105, "y" : -356821.05, "x" : 1397988.5100000002 }, "position" : { "x" : 1397988.5100000002, "y" : -356821.05 }, "selected" : false }, { "data" : { "id" : "7594", "station_name" : "勝どき", "close_ymd" : "", "lon" : 139.776442, "post" : "104-0054", "e_status" : 0, "SUID" : 7594, "station_g_cd" : 9930118, "add" : "中央区勝どき2-10-15", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930118", "pref_name" : "東京都", "shared_name" : "9930118", "lat" : 35.658507, "y" : -356585.07, "x" : 1397764.42 }, "position" : { "x" : 1397764.42, "y" : -356585.07 }, "selected" : false }, { "data" : { "id" : "7593", "station_name" : "月島", "close_ymd" : "", "lon" : 139.784233, "post" : "", "e_status" : 0, "SUID" : 7593, "station_g_cd" : 2800621, "add" : "東京都中央区月島一丁目3-9", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930117", "pref_name" : "東京都", "shared_name" : "9930117", "lat" : 35.664871000000005, "y" : -356648.7100000001, "x" : 1397842.33 }, "position" : { "x" : 1397842.33, "y" : -356648.7100000001 }, "selected" : false }, { "data" : { "id" : "3260", "station_name" : "池袋", "close_ymd" : "", "lon" : 139.71108600000002, "post" : "", "e_status" : 0, "SUID" : 3260, "station_g_cd" : 1130212, "add" : "東京都豊島区", "line_cd" : 11328, "selected" : false, "open_ymd" : "", "name" : "1132805", "pref_name" : "東京都", "shared_name" : "1132805", "lat" : 35.730256, "y" : -357302.56, "x" : 1397110.8600000003 }, "position" : { "x" : 1397110.8600000003, "y" : -357302.56 }, "selected" : false }, { "data" : { "id" : "7596", "station_name" : "汐留", "close_ymd" : "", "lon" : 139.760642, "post" : "105-0021", "e_status" : 0, "SUID" : 7596, "station_g_cd" : 9930120, "add" : "港区東新橋1丁目5", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930120", "pref_name" : "東京都", "shared_name" : "9930120", "lat" : 35.663703000000005, "y" : -356637.03, "x" : 1397606.42 }, "position" : { "x" : 1397606.42, "y" : -356637.03 }, "selected" : false }, { "data" : { "id" : "7595", "station_name" : "築地市場", "close_ymd" : "", "lon" : 139.76691499999998, "post" : "104-0045", "e_status" : 0, "SUID" : 7595, "station_g_cd" : 9930119, "add" : "中央区築地5-1-2", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930119", "pref_name" : "東京都", "shared_name" : "9930119", "lat" : 35.664895, "y" : -356648.95, "x" : 1397669.15 }, "position" : { "x" : 1397669.15, "y" : -356648.95 }, "selected" : false }, { "data" : { "id" : "5190", "station_name" : "堀切", "close_ymd" : "", "lon" : 139.817727, "post" : "120-0023", "e_status" : 0, "SUID" : 5190, "station_g_cd" : 2100207, "add" : "足立区千住曙町", "line_cd" : 21002, "selected" : false, "open_ymd" : "", "name" : "2100207", "pref_name" : "東京都", "shared_name" : "2100207", "lat" : 35.742977, "y" : -357429.77, "x" : 1398177.27 }, "position" : { "x" : 1398177.27, "y" : -357429.77 }, "selected" : false }, { "data" : { "id" : "3262", "station_name" : "渋谷", "close_ymd" : "", "lon" : 139.701238, "post" : "", "e_status" : 0, "SUID" : 3262, "station_g_cd" : 1130205, "add" : "東京都渋谷区道玄坂一丁目1-1", "line_cd" : 11328, "selected" : false, "open_ymd" : "", "name" : "1132807", "pref_name" : "東京都", "shared_name" : "1132807", "lat" : 35.658871000000005, "y" : -356588.71, "x" : 1397012.38 }, "position" : { "x" : 1397012.38, "y" : -356588.71 }, "selected" : false }, { "data" : { "id" : "7598", "station_name" : "赤羽橋", "close_ymd" : "", "lon" : 139.743642, "post" : "106-0044", "e_status" : 0, "SUID" : 7598, "station_g_cd" : 9930122, "add" : "港区東麻布1-28-13", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930122", "pref_name" : "東京都", "shared_name" : "9930122", "lat" : 35.655007, "y" : -356550.06999999995, "x" : 1397436.42 }, "position" : { "x" : 1397436.42, "y" : -356550.06999999995 }, "selected" : false }, { "data" : { "id" : "5189", "station_name" : "鐘ヶ淵", "close_ymd" : "", "lon" : 139.820344, "post" : "", "e_status" : 0, "SUID" : 5189, "station_g_cd" : 2100206, "add" : "東京都墨田区墨田5丁目", "line_cd" : 21002, "selected" : false, "open_ymd" : "", "name" : "2100206", "pref_name" : "東京都", "shared_name" : "2100206", "lat" : 35.733712, "y" : -357337.12, "x" : 1398203.44 }, "position" : { "x" : 1398203.44, "y" : -357337.12 }, "selected" : false }, { "data" : { "id" : "3261", "station_name" : "新宿", "close_ymd" : "", "lon" : 139.70046399999998, "post" : "", "e_status" : 0, "SUID" : 3261, "station_g_cd" : 1130208, "add" : "東京都新宿区新宿三丁目38-1", "line_cd" : 11328, "selected" : false, "open_ymd" : "", "name" : "1132806", "pref_name" : "東京都", "shared_name" : "1132806", "lat" : 35.689729, "y" : -356897.29, "x" : 1397004.64 }, "position" : { "x" : 1397004.64, "y" : -356897.29 }, "selected" : false }, { "data" : { "id" : "7597", "station_name" : "大門", "close_ymd" : "", "lon" : 139.75466, "post" : "105-0013", "e_status" : 0, "SUID" : 7597, "station_g_cd" : 9930121, "add" : "港区浜松町1-27-12", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930121", "pref_name" : "東京都", "shared_name" : "9930121", "lat" : 35.656785, "y" : -356567.85, "x" : 1397546.6 }, "position" : { "x" : 1397546.6, "y" : -356567.85 }, "selected" : false }, { "data" : { "id" : "5192", "station_name" : "北千住", "close_ymd" : "", "lon" : 139.805564, "post" : "120-0026", "e_status" : 0, "SUID" : 5192, "station_g_cd" : 1132005, "add" : "足立区千住旭町", "line_cd" : 21002, "selected" : false, "open_ymd" : "", "name" : "2100209", "pref_name" : "東京都", "shared_name" : "2100209", "lat" : 35.749891, "y" : -357498.91, "x" : 1398055.6400000001 }, "position" : { "x" : 1398055.6400000001, "y" : -357498.91 }, "selected" : false }, { "data" : { "id" : "3264", "station_name" : "東京", "close_ymd" : "", "lon" : 139.76610300000002, "post" : "", "e_status" : 0, "SUID" : 3264, "station_g_cd" : 1130101, "add" : "東京都千代田区丸の内一丁目", "line_cd" : 11328, "selected" : false, "open_ymd" : "", "name" : "1132809", "pref_name" : "東京都", "shared_name" : "1132809", "lat" : 35.681391, "y" : -356813.91, "x" : 1397661.0300000003 }, "position" : { "x" : 1397661.0300000003, "y" : -356813.91 }, "selected" : false }, { "data" : { "id" : "7600", "station_name" : "六本木", "close_ymd" : "", "lon" : 139.73156699999998, "post" : "106-0032", "e_status" : 0, "SUID" : 7600, "station_g_cd" : 2800318, "add" : "港区六本木6-1-25", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930124", "pref_name" : "東京都", "shared_name" : "9930124", "lat" : 35.663921, "y" : -356639.21, "x" : 1397315.67 }, "position" : { "x" : 1397315.67, "y" : -356639.21 }, "selected" : false }, { "data" : { "id" : "5191", "station_name" : "牛田", "close_ymd" : "", "lon" : 139.811816, "post" : "120-0023", "e_status" : 0, "SUID" : 5191, "station_g_cd" : 2100208, "add" : "足立区千住曙町", "line_cd" : 21002, "selected" : false, "open_ymd" : "", "name" : "2100208", "pref_name" : "東京都", "shared_name" : "2100208", "lat" : 35.744555, "y" : -357445.55, "x" : 1398118.16 }, "position" : { "x" : 1398118.16, "y" : -357445.55 }, "selected" : false }, { "data" : { "id" : "3263", "station_name" : "品川", "close_ymd" : "", "lon" : 139.738999, "post" : "", "e_status" : 0, "SUID" : 3263, "station_g_cd" : 1130103, "add" : "東京都港区高輪三丁目26-26", "line_cd" : 11328, "selected" : false, "open_ymd" : "", "name" : "1132808", "pref_name" : "東京都", "shared_name" : "1132808", "lat" : 35.62876, "y" : -356287.6, "x" : 1397389.99 }, "position" : { "x" : 1397389.99, "y" : -356287.6 }, "selected" : false }, { "data" : { "id" : "7599", "station_name" : "麻布十番", "close_ymd" : "", "lon" : 139.73611599999998, "post" : "106-0045", "e_status" : 0, "SUID" : 7599, "station_g_cd" : 2800916, "add" : "港区麻布十番4-4-9", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930123", "pref_name" : "東京都", "shared_name" : "9930123", "lat" : 35.656503, "y" : -356565.03, "x" : 1397361.16 }, "position" : { "x" : 1397361.16, "y" : -356565.03 }, "selected" : false }, { "data" : { "id" : "5194", "station_name" : "五反野", "close_ymd" : "", "lon" : 139.809643, "post" : "120-0015", "e_status" : 0, "SUID" : 5194, "station_g_cd" : 2100211, "add" : "足立区足立3丁目", "line_cd" : 21002, "selected" : false, "open_ymd" : "", "name" : "2100211", "pref_name" : "東京都", "shared_name" : "2100211", "lat" : 35.765852, "y" : -357658.52, "x" : 1398096.43 }, "position" : { "x" : 1398096.43, "y" : -357658.52 }, "selected" : false }, { "data" : { "id" : "7602", "station_name" : "国立競技場", "close_ymd" : "", "lon" : 139.714932, "post" : "160-0013", "e_status" : 0, "SUID" : 7602, "station_g_cd" : 9930126, "add" : "新宿区霞ケ丘町10-3", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930126", "pref_name" : "東京都", "shared_name" : "9930126", "lat" : 35.679831, "y" : -356798.31, "x" : 1397149.32 }, "position" : { "x" : 1397149.32, "y" : -356798.31 }, "selected" : false }, { "data" : { "id" : "5193", "station_name" : "小菅", "close_ymd" : "", "lon" : 139.812935, "post" : "120-0015", "e_status" : 0, "SUID" : 5193, "station_g_cd" : 2100210, "add" : "足立区足立2丁目", "line_cd" : 21002, "selected" : false, "open_ymd" : "", "name" : "2100210", "pref_name" : "東京都", "shared_name" : "2100210", "lat" : 35.759039, "y" : -357590.39, "x" : 1398129.35 }, "position" : { "x" : 1398129.35, "y" : -357590.39 }, "selected" : false }, { "data" : { "id" : "7601", "station_name" : "青山一丁目", "close_ymd" : "", "lon" : 139.72396, "post" : "107-0062", "e_status" : 0, "SUID" : 7601, "station_g_cd" : 2800116, "add" : "港区南青山1-1-19", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930125", "pref_name" : "東京都", "shared_name" : "9930125", "lat" : 35.672928999999996, "y" : -356729.29, "x" : 1397239.6 }, "position" : { "x" : 1397239.6, "y" : -356729.29 }, "selected" : false }, { "data" : { "id" : "5196", "station_name" : "西新井", "close_ymd" : "", "lon" : 139.790372, "post" : "123-0843", "e_status" : 0, "SUID" : 5196, "station_g_cd" : 2100213, "add" : "足立区西新井栄町2丁目", "line_cd" : 21002, "selected" : false, "open_ymd" : "", "name" : "2100213", "pref_name" : "東京都", "shared_name" : "2100213", "lat" : 35.777322999999996, "y" : -357773.23, "x" : 1397903.72 }, "position" : { "x" : 1397903.72, "y" : -357773.23 }, "selected" : false }, { "data" : { "id" : "7604", "station_name" : "新宿", "close_ymd" : "", "lon" : 139.698812, "post" : "", "e_status" : 0, "SUID" : 7604, "station_g_cd" : 1130208, "add" : "東京都渋谷区代々木二丁目1-1", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930128", "pref_name" : "東京都", "shared_name" : "9930128", "lat" : 35.68869, "y" : -356886.9, "x" : 1396988.12 }, "position" : { "x" : 1396988.12, "y" : -356886.9 }, "selected" : false }, { "data" : { "id" : "5195", "station_name" : "梅島", "close_ymd" : "", "lon" : 139.797916, "post" : "123-0851", "e_status" : 0, "SUID" : 5195, "station_g_cd" : 2100212, "add" : "足立区梅田7丁目", "line_cd" : 21002, "selected" : false, "open_ymd" : "", "name" : "2100212", "pref_name" : "東京都", "shared_name" : "2100212", "lat" : 35.772437, "y" : -357724.36999999994, "x" : 1397979.16 }, "position" : { "x" : 1397979.16, "y" : -357724.36999999994 }, "selected" : false }, { "data" : { "id" : "7603", "station_name" : "代々木", "close_ymd" : "", "lon" : 139.701666, "post" : "", "e_status" : 0, "SUID" : 7603, "station_g_cd" : 1130207, "add" : "東京都渋谷区代々木一丁目35-5", "line_cd" : 99301, "selected" : false, "open_ymd" : "", "name" : "9930127", "pref_name" : "東京都", "shared_name" : "9930127", "lat" : 35.683218, "y" : -356832.18, "x" : 1397016.66 }, "position" : { "x" : 1397016.66, "y" : -356832.18 }, "selected" : false }, { "data" : { "id" : "7675", "station_name" : "大島", "close_ymd" : "", "lon" : 139.83565, "post" : "136-0072", "e_status" : 0, "SUID" : 7675, "station_g_cd" : 9930415, "add" : "江東区大島5-10-8", "line_cd" : 99304, "selected" : false, "open_ymd" : "", "name" : "9930415", "pref_name" : "東京都", "shared_name" : "9930415", "lat" : 35.689904999999996, "y" : -356899.05, "x" : 1398356.4999999998 }, "position" : { "x" : 1398356.4999999998, "y" : -356899.05 }, "selected" : false }, { "data" : { "id" : "7676", "station_name" : "東大島", "close_ymd" : "", "lon" : 139.84596299999998, "post" : "136-0072", "e_status" : 0, "SUID" : 7676, "station_g_cd" : 9930416, "add" : "江東区大島9-3-14", "line_cd" : 99304, "selected" : false, "open_ymd" : "", "name" : "9930416", "pref_name" : "東京都", "shared_name" : "9930416", "lat" : 35.690355, "y" : -356903.55, "x" : 1398459.63 }, "position" : { "x" : 1398459.63, "y" : -356903.55 }, "selected" : false }, { "data" : { "id" : "7673", "station_name" : "住吉", "close_ymd" : "", "lon" : 139.815681, "post" : "135-0002", "e_status" : 0, "SUID" : 7673, "station_g_cd" : 2800814, "add" : "江東区住吉2-23-12", "line_cd" : 99304, "selected" : false, "open_ymd" : "", "name" : "9930413", "pref_name" : "東京都", "shared_name" : "9930413", "lat" : 35.689073, "y" : -356890.73, "x" : 1398156.81 }, "position" : { "x" : 1398156.81, "y" : -356890.73 }, "selected" : false }, { "data" : { "id" : "7674", "station_name" : "西大島", "close_ymd" : "", "lon" : 139.826206, "post" : "136-0072", "e_status" : 0, "SUID" : 7674, "station_g_cd" : 9930414, "add" : "江東区大島2-41-19", "line_cd" : 99304, "selected" : false, "open_ymd" : "", "name" : "9930414", "pref_name" : "東京都", "shared_name" : "9930414", "lat" : 35.689349, "y" : -356893.49, "x" : 1398262.06 }, "position" : { "x" : 1398262.06, "y" : -356893.49 }, "selected" : false }, { "data" : { "id" : "7671", "station_name" : "森下", "close_ymd" : "", "lon" : 139.797042, "post" : "135-0004", "e_status" : 0, "SUID" : 7671, "station_g_cd" : 9930114, "add" : "江東区森下2-17-17", "line_cd" : 99304, "selected" : false, "open_ymd" : "", "name" : "9930411", "pref_name" : "東京都", "shared_name" : "9930411", "lat" : 35.68796, "y" : -356879.6, "x" : 1397970.4200000002 }, "position" : { "x" : 1397970.4200000002, "y" : -356879.6 }, "selected" : false }, { "data" : { "id" : "7672", "station_name" : "菊川", "close_ymd" : "", "lon" : 139.806016, "post" : "130-0024", "e_status" : 0, "SUID" : 7672, "station_g_cd" : 9930412, "add" : "墨田区菊川3-16-2", "line_cd" : 99304, "selected" : false, "open_ymd" : "", "name" : "9930412", "pref_name" : "東京都", "shared_name" : "9930412", "lat" : 35.688379, "y" : -356883.79, "x" : 1398060.16 }, "position" : { "x" : 1398060.16, "y" : -356883.79 }, "selected" : false }, { "data" : { "id" : "7669", "station_name" : "馬喰横山", "close_ymd" : "", "lon" : 139.782768, "post" : "103-0003", "e_status" : 0, "SUID" : 7669, "station_g_cd" : 1131403, "add" : "中央区日本橋横山町4-13", "line_cd" : 99304, "selected" : false, "open_ymd" : "", "name" : "9930409", "pref_name" : "東京都", "shared_name" : "9930409", "lat" : 35.69212, "y" : -356921.2, "x" : 1397827.68 }, "position" : { "x" : 1397827.68, "y" : -356921.2 }, "selected" : false }, { "data" : { "id" : "7670", "station_name" : "浜町", "close_ymd" : "", "lon" : 139.788154, "post" : "103-0007", "e_status" : 0, "SUID" : 7670, "station_g_cd" : 9930410, "add" : "中央区日本橋浜町2-59-3", "line_cd" : 99304, "selected" : false, "open_ymd" : "", "name" : "9930410", "pref_name" : "東京都", "shared_name" : "9930410", "lat" : 35.688516, "y" : -356885.16, "x" : 1397881.5399999998 }, "position" : { "x" : 1397881.5399999998, "y" : -356885.16 }, "selected" : false }, { "data" : { "id" : "3315", "station_name" : "田端", "close_ymd" : "", "lon" : 139.76122900000001, "post" : "", "e_status" : 0, "SUID" : 3315, "station_g_cd" : 1130216, "add" : "東京都北区東田端一丁目17-1", "line_cd" : 11332, "selected" : false, "open_ymd" : "", "name" : "1133214", "pref_name" : "東京都", "shared_name" : "1133214", "lat" : 35.737781, "y" : -357377.81, "x" : 1397612.29 }, "position" : { "x" : 1397612.29, "y" : -357377.81 }, "selected" : false }, { "data" : { "id" : "7683", "station_name" : "荒川一中前", "close_ymd" : "", "lon" : 139.788988, "post" : "116-0003", "e_status" : 0, "SUID" : 7683, "station_g_cd" : 9930502, "add" : "荒川区南千住1-1", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930502", "pref_name" : "東京都", "shared_name" : "9930502", "lat" : 35.733659, "y" : -357336.59, "x" : 1397889.88 }, "position" : { "x" : 1397889.88, "y" : -357336.59 }, "selected" : false }, { "data" : { "id" : "3316", "station_name" : "西日暮里", "close_ymd" : "", "lon" : 139.76685700000002, "post" : "", "e_status" : 0, "SUID" : 3316, "station_g_cd" : 1130217, "add" : "東京都荒川区西日暮里五丁目22-1", "line_cd" : 11332, "selected" : false, "open_ymd" : "", "name" : "1133215", "pref_name" : "東京都", "shared_name" : "1133215", "lat" : 35.731953999999995, "y" : -357319.5399999999, "x" : 1397668.57 }, "position" : { "x" : 1397668.57, "y" : -357319.5399999999 }, "selected" : false }, { "data" : { "id" : "7684", "station_name" : "荒川区役所前", "close_ymd" : "", "lon" : 139.78645600000002, "post" : "116-0002", "e_status" : 0, "SUID" : 7684, "station_g_cd" : 9930503, "add" : "荒川区荒川1", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930503", "pref_name" : "東京都", "shared_name" : "9930503", "lat" : 35.73493, "y" : -357349.3, "x" : 1397864.56 }, "position" : { "x" : 1397864.56, "y" : -357349.3 }, "selected" : false }, { "data" : { "id" : "3313", "station_name" : "王子", "close_ymd" : "", "lon" : 139.73809, "post" : "114-0002", "e_status" : 0, "SUID" : 3313, "station_g_cd" : 1133212, "add" : "北区王子1丁目", "line_cd" : 11332, "selected" : false, "open_ymd" : "", "name" : "1133212", "pref_name" : "東京都", "shared_name" : "1133212", "lat" : 35.752538, "y" : -357525.38, "x" : 1397380.9 }, "position" : { "x" : 1397380.9, "y" : -357525.38 }, "selected" : false }, { "data" : { "id" : "3314", "station_name" : "上中里", "close_ymd" : "", "lon" : 139.745769, "post" : "114-0016", "e_status" : 0, "SUID" : 3314, "station_g_cd" : 1133213, "add" : "北区上中里1丁目", "line_cd" : 11332, "selected" : false, "open_ymd" : "", "name" : "1133213", "pref_name" : "東京都", "shared_name" : "1133213", "lat" : 35.747279999999996, "y" : -357472.8, "x" : 1397457.69 }, "position" : { "x" : 1397457.69, "y" : -357472.8 }, "selected" : false }, { "data" : { "id" : "7682", "station_name" : "三ノ輪橋", "close_ymd" : "", "lon" : 139.791412, "post" : "116-0003", "e_status" : 0, "SUID" : 7682, "station_g_cd" : 9930501, "add" : "荒川区南千住1", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930501", "pref_name" : "東京都", "shared_name" : "9930501", "lat" : 35.732248, "y" : -357322.48, "x" : 1397914.12 }, "position" : { "x" : 1397914.12, "y" : -357322.48 }, "selected" : false }, { "data" : { "id" : "3311", "station_name" : "赤羽", "close_ymd" : "", "lon" : 139.72092800000001, "post" : "115-0045", "e_status" : 0, "SUID" : 3311, "station_g_cd" : 1131903, "add" : "北区赤羽1丁目", "line_cd" : 11332, "selected" : false, "open_ymd" : "", "name" : "1133210", "pref_name" : "東京都", "shared_name" : "1133210", "lat" : 35.778026000000004, "y" : -357780.26000000007, "x" : 1397209.2800000003 }, "position" : { "x" : 1397209.2800000003, "y" : -357780.26000000007 }, "selected" : false }, { "data" : { "id" : "7679", "station_name" : "瑞江", "close_ymd" : "", "lon" : 139.89761000000001, "post" : "132-0011", "e_status" : 0, "SUID" : 7679, "station_g_cd" : 9930419, "add" : "江戸川区瑞江2-2-1", "line_cd" : 99304, "selected" : false, "open_ymd" : "", "name" : "9930419", "pref_name" : "東京都", "shared_name" : "9930419", "lat" : 35.693318, "y" : -356933.18, "x" : 1398976.1 }, "position" : { "x" : 1398976.1, "y" : -356933.18 }, "selected" : false }, { "data" : { "id" : "3312", "station_name" : "東十条", "close_ymd" : "", "lon" : 139.72685800000002, "post" : "114-0001", "e_status" : 0, "SUID" : 3312, "station_g_cd" : 1133211, "add" : "北区東十条3丁目", "line_cd" : 11332, "selected" : false, "open_ymd" : "", "name" : "1133211", "pref_name" : "東京都", "shared_name" : "1133211", "lat" : 35.763803, "y" : -357638.03, "x" : 1397268.5800000003 }, "position" : { "x" : 1397268.5800000003, "y" : -357638.03 }, "selected" : false }, { "data" : { "id" : "7680", "station_name" : "篠崎", "close_ymd" : "", "lon" : 139.903698, "post" : "133-0061", "e_status" : 0, "SUID" : 7680, "station_g_cd" : 9930420, "add" : "江戸川区篠崎町7-27-1", "line_cd" : 99304, "selected" : false, "open_ymd" : "", "name" : "9930420", "pref_name" : "東京都", "shared_name" : "9930420", "lat" : 35.706016999999996, "y" : -357060.17, "x" : 1399036.98 }, "position" : { "x" : 1399036.98, "y" : -357060.17 }, "selected" : false }, { "data" : { "id" : "7677", "station_name" : "船堀", "close_ymd" : "", "lon" : 139.864258, "post" : "134-0091", "e_status" : 0, "SUID" : 7677, "station_g_cd" : 9930417, "add" : "江戸川区船堀3-6-1", "line_cd" : 99304, "selected" : false, "open_ymd" : "", "name" : "9930417", "pref_name" : "東京都", "shared_name" : "9930417", "lat" : 35.683795, "y" : -356837.95, "x" : 1398642.58 }, "position" : { "x" : 1398642.58, "y" : -356837.95 }, "selected" : false }, { "data" : { "id" : "7678", "station_name" : "一之江", "close_ymd" : "", "lon" : 139.882934, "post" : "134-0003", "e_status" : 0, "SUID" : 7678, "station_g_cd" : 9930418, "add" : "江戸川区春江町4-2", "line_cd" : 99304, "selected" : false, "open_ymd" : "", "name" : "9930418", "pref_name" : "東京都", "shared_name" : "9930418", "lat" : 35.686054999999996, "y" : -356860.55, "x" : 1398829.34 }, "position" : { "x" : 1398829.34, "y" : -356860.55 }, "selected" : false }, { "data" : { "id" : "7692", "station_name" : "小台", "close_ymd" : "", "lon" : 139.761779, "post" : "116-0011", "e_status" : 0, "SUID" : 7692, "station_g_cd" : 9930511, "add" : "荒川区西尾久5", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930511", "pref_name" : "東京都", "shared_name" : "9930511", "lat" : 35.750578999999995, "y" : -357505.7899999999, "x" : 1397617.7899999998 }, "position" : { "x" : 1397617.7899999998, "y" : -357505.7899999999 }, "selected" : false }, { "data" : { "id" : "7691", "station_name" : "宮ノ前", "close_ymd" : "", "lon" : 139.76495500000001, "post" : "116-0012", "e_status" : 0, "SUID" : 7691, "station_g_cd" : 9930510, "add" : "荒川区東尾久5", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930510", "pref_name" : "東京都", "shared_name" : "9930510", "lat" : 35.750135, "y" : -357501.35, "x" : 1397649.55 }, "position" : { "x" : 1397649.55, "y" : -357501.35 }, "selected" : false }, { "data" : { "id" : "7690", "station_name" : "熊野前", "close_ymd" : "", "lon" : 139.769204, "post" : "116-0012", "e_status" : 0, "SUID" : 7690, "station_g_cd" : 9930509, "add" : "荒川区東尾久5", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930509", "pref_name" : "東京都", "shared_name" : "9930509", "lat" : 35.749212, "y" : -357492.12, "x" : 1397692.04 }, "position" : { "x" : 1397692.04, "y" : -357492.12 }, "selected" : false }, { "data" : { "id" : "7689", "station_name" : "東尾久三丁目", "close_ymd" : "", "lon" : 139.77438600000002, "post" : "116-0012", "e_status" : 0, "SUID" : 7689, "station_g_cd" : 9930508, "add" : "荒川区東尾久3", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930508", "pref_name" : "東京都", "shared_name" : "9930508", "lat" : 35.745398, "y" : -357453.98000000004, "x" : 1397743.86 }, "position" : { "x" : 1397743.86, "y" : -357453.98000000004 }, "selected" : false }, { "data" : { "id" : "7688", "station_name" : "町屋二丁目", "close_ymd" : "", "lon" : 139.776625, "post" : "116-0002", "e_status" : 0, "SUID" : 7688, "station_g_cd" : 9930507, "add" : "荒川区荒川6", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930507", "pref_name" : "東京都", "shared_name" : "9930507", "lat" : 35.743837, "y" : -357438.37, "x" : 1397766.25 }, "position" : { "x" : 1397766.25, "y" : -357438.37 }, "selected" : false }, { "data" : { "id" : "7687", "station_name" : "町屋駅前", "close_ymd" : "", "lon" : 139.781145, "post" : "116-0002", "e_status" : 0, "SUID" : 7687, "station_g_cd" : 2300104, "add" : "荒川区荒川7", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930506", "pref_name" : "東京都", "shared_name" : "9930506", "lat" : 35.74275, "y" : -357427.5, "x" : 1397811.4500000002 }, "position" : { "x" : 1397811.4500000002, "y" : -357427.5 }, "selected" : false }, { "data" : { "id" : "7686", "station_name" : "荒川七丁目", "close_ymd" : "", "lon" : 139.78417, "post" : "116-0002", "e_status" : 0, "SUID" : 7686, "station_g_cd" : 9930505, "add" : "荒川区荒川7", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930505", "pref_name" : "東京都", "shared_name" : "9930505", "lat" : 35.741975, "y" : -357419.74999999994, "x" : 1397841.7 }, "position" : { "x" : 1397841.7, "y" : -357419.74999999994 }, "selected" : false }, { "data" : { "id" : "7685", "station_name" : "荒川二丁目", "close_ymd" : "", "lon" : 139.784696, "post" : "116-0002", "e_status" : 0, "SUID" : 7685, "station_g_cd" : 9930504, "add" : "荒川区荒川2", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930504", "pref_name" : "東京都", "shared_name" : "9930504", "lat" : 35.738623, "y" : -357386.23, "x" : 1397846.96 }, "position" : { "x" : 1397846.96, "y" : -357386.23 }, "selected" : false }, { "data" : { "id" : "7700", "station_name" : "西ヶ原四丁目", "close_ymd" : "", "lon" : 139.732779, "post" : "", "e_status" : 0, "SUID" : 7700, "station_g_cd" : 9930519, "add" : "東京都北区西ヶ原四丁目", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930519", "pref_name" : "東京都", "shared_name" : "9930519", "lat" : 35.744501, "y" : -357445.01, "x" : 1397327.79 }, "position" : { "x" : 1397327.79, "y" : -357445.01 }, "selected" : false }, { "data" : { "id" : "7699", "station_name" : "滝野川一丁目", "close_ymd" : "", "lon" : 139.735376, "post" : "114-0023", "e_status" : 0, "SUID" : 7699, "station_g_cd" : 9930518, "add" : "北区滝野川1", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930518", "pref_name" : "東京都", "shared_name" : "9930518", "lat" : 35.747374, "y" : -357473.74, "x" : 1397353.76 }, "position" : { "x" : 1397353.76, "y" : -357473.74 }, "selected" : false }, { "data" : { "id" : "7698", "station_name" : "飛鳥山", "close_ymd" : "", "lon" : 139.737382, "post" : "114-0023", "e_status" : 0, "SUID" : 7698, "station_g_cd" : 9930517, "add" : "北区滝野川1", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930517", "pref_name" : "東京都", "shared_name" : "9930517", "lat" : 35.750248, "y" : -357502.48, "x" : 1397373.82 }, "position" : { "x" : 1397373.82, "y" : -357502.48 }, "selected" : false }, { "data" : { "id" : "7697", "station_name" : "王子駅前", "close_ymd" : "", "lon" : 139.737661, "post" : "114-0002", "e_status" : 0, "SUID" : 7697, "station_g_cd" : 1133212, "add" : "北区王子1", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930516", "pref_name" : "東京都", "shared_name" : "9930516", "lat" : 35.753199, "y" : -357531.99000000005, "x" : 1397376.61 }, "position" : { "x" : 1397376.61, "y" : -357531.99000000005 }, "selected" : false }, { "data" : { "id" : "7696", "station_name" : "栄町", "close_ymd" : "", "lon" : 139.742124, "post" : "114-0005", "e_status" : 0, "SUID" : 7696, "station_g_cd" : 9930515, "add" : "北区栄町", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930515", "pref_name" : "東京都", "shared_name" : "9930515", "lat" : 35.750909, "y" : -357509.09, "x" : 1397421.24 }, "position" : { "x" : 1397421.24, "y" : -357509.09 }, "selected" : false }, { "data" : { "id" : "7695", "station_name" : "梶原", "close_ymd" : "", "lon" : 139.747403, "post" : "114-0004", "e_status" : 0, "SUID" : 7695, "station_g_cd" : 9930514, "add" : "北区堀船3", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930514", "pref_name" : "東京都", "shared_name" : "9930514", "lat" : 35.751162, "y" : -357511.62, "x" : 1397474.03 }, "position" : { "x" : 1397474.03, "y" : -357511.62 }, "selected" : false }, { "data" : { "id" : "7694", "station_name" : "荒川車庫前", "close_ymd" : "", "lon" : 139.752617, "post" : "116-0011", "e_status" : 0, "SUID" : 7694, "station_g_cd" : 9930513, "add" : "荒川区西尾久7", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930513", "pref_name" : "東京都", "shared_name" : "9930513", "lat" : 35.750909, "y" : -357509.09, "x" : 1397526.17 }, "position" : { "x" : 1397526.17, "y" : -357509.09 }, "selected" : false }, { "data" : { "id" : "7693", "station_name" : "荒川遊園地前", "close_ymd" : "", "lon" : 139.757767, "post" : "116-0011", "e_status" : 0, "SUID" : 7693, "station_g_cd" : 9930512, "add" : "荒川区西尾久5", "line_cd" : 99305, "selected" : false, "open_ymd" : "", "name" : "9930512", "pref_name" : "東京都", "shared_name" : "9930512", "lat" : 35.750744, "y" : -357507.44, "x" : 1397577.67 }, "position" : { "x" : 1397577.67, "y" : -357507.44 }, "selected" : false }, { "data" : { "id" : "7641", "station_name" : "日比谷", "close_ymd" : "", "lon" : 139.759998, "post" : "100-0006", "e_status" : 0, "SUID" : 7641, "station_g_cd" : 2800315, "add" : "千代田区有楽町1丁目", "line_cd" : 99303, "selected" : false, "open_ymd" : "", "name" : "9930308", "pref_name" : "東京都", "shared_name" : "9930308", "lat" : 35.676035999999996, "y" : -356760.36, "x" : 1397599.98 }, "position" : { "x" : 1397599.98, "y" : -356760.36 }, "selected" : false }, { "data" : { "id" : "7642", "station_name" : "大手町", "close_ymd" : "", "lon" : 139.762959, "post" : "100-0004", "e_status" : 0, "SUID" : 7642, "station_g_cd" : 2800208, "add" : "千代田区大手町1丁目", "line_cd" : 99303, "selected" : false, "open_ymd" : "", "name" : "9930309", "pref_name" : "東京都", "shared_name" : "9930309", "lat" : 35.684855999999996, "y" : -356848.55999999994, "x" : 1397629.5899999999 }, "position" : { "x" : 1397629.5899999999, "y" : -356848.55999999994 }, "selected" : false }, { "data" : { "id" : "3339", "station_name" : "赤羽", "close_ymd" : "", "lon" : 139.72092800000001, "post" : "115-0045", "e_status" : 0, "SUID" : 3339, "station_g_cd" : 1131903, "add" : "北区赤羽1丁目", "line_cd" : 11333, "selected" : false, "open_ymd" : "", "name" : "1133302", "pref_name" : "東京都", "shared_name" : "1133302", "lat" : 35.778026000000004, "y" : -357780.26000000007, "x" : 1397209.2800000003 }, "position" : { "x" : 1397209.2800000003, "y" : -357780.26000000007 }, "selected" : false }, { "data" : { "id" : "7643", "station_name" : "神保町", "close_ymd" : "", "lon" : 139.75812, "post" : "101-0051", "e_status" : 0, "SUID" : 7643, "station_g_cd" : 2800807, "add" : "千代田区神田神保町2-2", "line_cd" : 99303, "selected" : false, "open_ymd" : "", "name" : "9930310", "pref_name" : "東京都", "shared_name" : "9930310", "lat" : 35.695492, "y" : -356954.92000000004, "x" : 1397581.2 }, "position" : { "x" : 1397581.2, "y" : -356954.92000000004 }, "selected" : false }, { "data" : { "id" : "3340", "station_name" : "池袋", "close_ymd" : "", "lon" : 139.71108600000002, "post" : "", "e_status" : 0, "SUID" : 3340, "station_g_cd" : 1130212, "add" : "東京都豊島区", "line_cd" : 11333, "selected" : false, "open_ymd" : "", "name" : "1133303", "pref_name" : "東京都", "shared_name" : "1133303", "lat" : 35.730256, "y" : -357302.56, "x" : 1397110.8600000003 }, "position" : { "x" : 1397110.8600000003, "y" : -357302.56 }, "selected" : false }, { "data" : { "id" : "7644", "station_name" : "水道橋", "close_ymd" : "", "lon" : 139.75516000000002, "post" : "101-0061", "e_status" : 0, "SUID" : 7644, "station_g_cd" : 1131204, "add" : "千代田区三崎町2丁目", "line_cd" : 99303, "selected" : false, "open_ymd" : "", "name" : "9930311", "pref_name" : "東京都", "shared_name" : "9930311", "lat" : 35.703398, "y" : -357033.98, "x" : 1397551.6 }, "position" : { "x" : 1397551.6, "y" : -357033.98 }, "selected" : false }, { "data" : { "id" : "7637", "station_name" : "三田", "close_ymd" : "", "lon" : 139.748775, "post" : "108-0014", "e_status" : 0, "SUID" : 7637, "station_g_cd" : 9930208, "add" : "港区芝5-34-10", "line_cd" : 99303, "selected" : false, "open_ymd" : "", "name" : "9930304", "pref_name" : "東京都", "shared_name" : "9930304", "lat" : 35.648179999999996, "y" : -356481.8, "x" : 1397487.75 }, "position" : { "x" : 1397487.75, "y" : -356481.8 }, "selected" : false }, { "data" : { "id" : "7638", "station_name" : "芝公園", "close_ymd" : "", "lon" : 139.749824, "post" : "105-0011", "e_status" : 0, "SUID" : 7638, "station_g_cd" : 9930305, "add" : "港区芝公園4-8-14", "line_cd" : 99303, "selected" : false, "open_ymd" : "", "name" : "9930305", "pref_name" : "東京都", "shared_name" : "9930305", "lat" : 35.654074, "y" : -356540.74, "x" : 1397498.24 }, "position" : { "x" : 1397498.24, "y" : -356540.74 }, "selected" : false }, { "data" : { "id" : "7639", "station_name" : "御成門", "close_ymd" : "", "lon" : 139.75153500000002, "post" : "105-0003", "e_status" : 0, "SUID" : 7639, "station_g_cd" : 9930306, "add" : "港区西新橋3-24-6", "line_cd" : 99303, "selected" : false, "open_ymd" : "", "name" : "9930306", "pref_name" : "東京都", "shared_name" : "9930306", "lat" : 35.661215000000006, "y" : -356612.1500000001, "x" : 1397515.35 }, "position" : { "x" : 1397515.35, "y" : -356612.1500000001 }, "selected" : false }, { "data" : { "id" : "7640", "station_name" : "内幸町", "close_ymd" : "", "lon" : 139.75561000000002, "post" : "100-0011", "e_status" : 0, "SUID" : 7640, "station_g_cd" : 9930307, "add" : "千代田区内幸町2-2-3", "line_cd" : 99303, "selected" : false, "open_ymd" : "", "name" : "9930307", "pref_name" : "東京都", "shared_name" : "9930307", "lat" : 35.66975, "y" : -356697.5, "x" : 1397556.1 }, "position" : { "x" : 1397556.1, "y" : -356697.5 }, "selected" : false }, { "data" : { "id" : "3345", "station_name" : "西大井", "close_ymd" : "", "lon" : 139.721729, "post" : "140-0015", "e_status" : 0, "SUID" : 3345, "station_g_cd" : 1130804, "add" : "品川区西大井1丁目", "line_cd" : 11333, "selected" : false, "open_ymd" : "", "name" : "1133308", "pref_name" : "東京都", "shared_name" : "1133308", "lat" : 35.601616, "y" : -356016.16, "x" : 1397217.29 }, "position" : { "x" : 1397217.29, "y" : -356016.16 }, "selected" : false }, { "data" : { "id" : "7649", "station_name" : "西巣鴨", "close_ymd" : "", "lon" : 139.728712, "post" : "170-0001", "e_status" : 0, "SUID" : 7649, "station_g_cd" : 9930316, "add" : "豊島区西巣鴨3-25-13", "line_cd" : 99303, "selected" : false, "open_ymd" : "", "name" : "9930316", "pref_name" : "東京都", "shared_name" : "9930316", "lat" : 35.743508, "y" : -357435.07999999996, "x" : 1397287.12 }, "position" : { "x" : 1397287.12, "y" : -357435.07999999996 }, "selected" : false }, { "data" : { "id" : "7650", "station_name" : "新板橋", "close_ymd" : "", "lon" : 139.720101, "post" : "173-0004", "e_status" : 0, "SUID" : 7650, "station_g_cd" : 9930317, "add" : "板橋区板橋1-53-17", "line_cd" : 99303, "selected" : false, "open_ymd" : "", "name" : "9930317", "pref_name" : "東京都", "shared_name" : "9930317", "lat" : 35.748785, "y" : -357487.85, "x" : 1397201.01 }, "position" : { "x" : 1397201.01, "y" : -357487.85 }, "selected" : false }, { "data" : { "id" : "7651", "station_name" : "板橋区役所前", "close_ymd" : "", "lon" : 139.710102, "post" : "173-0004", "e_status" : 0, "SUID" : 7651, "station_g_cd" : 9930318, "add" : "板橋区板橋2-66-17", "line_cd" : 99303, "selected" : false, "open_ymd" : "", "name" : "9930318", "pref_name" : "東京都", "shared_name" : "9930318", "lat" : 35.751284000000005, "y" : -357512.84, "x" : 1397101.02 }, "position" : { "x" : 1397101.02, "y" : -357512.84 }, "selected" : false }, { "data" : { "id" : "7652", "station_name" : "板橋本町", "close_ymd" : "", "lon" : 139.705535, "post" : "173-0012", "e_status" : 0, "SUID" : 7652, "station_g_cd" : 9930319, "add" : "板橋区大和町17-1", "line_cd" : 99303, "selected" : false, "open_ymd" : "", "name" : "9930319", "pref_name" : "東京都", "shared_name" : "9930319", "lat" : 35.761339, "y" : -357613.39, "x" : 1397055.3499999999 }, "position" : { "x" : 1397055.3499999999, "y" : -357613.39 }, "selected" : false }, { "data" : { "id" : "3341", "station_name" : "新宿", "close_ymd" : "", "lon" : 139.70046399999998, "post" : "", "e_status" : 0, "SUID" : 3341, "station_g_cd" : 1130208, "add" : "東京都新宿区新宿三丁目38-1", "line_cd" : 11333, "selected" : false, "open_ymd" : "", "name" : "1133304", "pref_name" : "東京都", "shared_name" : "1133304", "lat" : 35.689729, "y" : -356897.29, "x" : 1397004.64 }, "position" : { "x" : 1397004.64, "y" : -356897.29 }, "selected" : false }, { "data" : { "id" : "7645", "station_name" : "春日", "close_ymd" : "", "lon" : 139.75325, "post" : "112-0003", "e_status" : 0, "SUID" : 7645, "station_g_cd" : 9930108, "add" : "文京区春日1-16-17", "line_cd" : 99303, "selected" : false, "open_ymd" : "", "name" : "9930312", "pref_name" : "東京都", "shared_name" : "9930312", "lat" : 35.709598, "y" : -357095.98, "x" : 1397532.5 }, "position" : { "x" : 1397532.5, "y" : -357095.98 }, "selected" : false }, { "data" : { "id" : "3342", "station_name" : "渋谷", "close_ymd" : "", "lon" : 139.701238, "post" : "", "e_status" : 0, "SUID" : 3342, "station_g_cd" : 1130205, "add" : "東京都渋谷区道玄坂一丁目1-1", "line_cd" : 11333, "selected" : false, "open_ymd" : "", "name" : "1133305", "pref_name" : "東京都", "shared_name" : "1133305", "lat" : 35.658871000000005, "y" : -356588.71, "x" : 1397012.38 }, "position" : { "x" : 1397012.38, "y" : -356588.71 }, "selected" : false }, { "data" : { "id" : "7646", "station_name" : "白山", "close_ymd" : "", "lon" : 139.752136, "post" : "112-0001", "e_status" : 0, "SUID" : 7646, "station_g_cd" : 9930313, "add" : "文京区白山5-36-10", "line_cd" : 99303, "selected" : false, "open_ymd" : "", "name" : "9930313", "pref_name" : "東京都", "shared_name" : "9930313", "lat" : 35.721408000000004, "y" : -357214.08, "x" : 1397521.36 }, "position" : { "x" : 1397521.36, "y" : -357214.08 }, "selected" : false }, { "data" : { "id" : "3343", "station_name" : "恵比寿", "close_ymd" : "", "lon" : 139.71007, "post" : "", "e_status" : 0, "SUID" : 3343, "station_g_cd" : 1130204, "add" : "東京都渋谷区恵比寿南一丁目5-5", "line_cd" : 11333, "selected" : false, "open_ymd" : "", "name" : "1133306", "pref_name" : "東京都", "shared_name" : "1133306", "lat" : 35.646685, "y" : -356466.85, "x" : 1397100.7 }, "position" : { "x" : 1397100.7, "y" : -356466.85 }, "selected" : false }, { "data" : { "id" : "7647", "station_name" : "千石", "close_ymd" : "", "lon" : 139.744792, "post" : "112-0011", "e_status" : 0, "SUID" : 7647, "station_g_cd" : 9930314, "add" : "文京区千石1-29-13", "line_cd" : 99303, "selected" : false, "open_ymd" : "", "name" : "9930314", "pref_name" : "東京都", "shared_name" : "9930314", "lat" : 35.727957, "y" : -357279.57, "x" : 1397447.92 }, "position" : { "x" : 1397447.92, "y" : -357279.57 }, "selected" : false }, { "data" : { "id" : "3344", "station_name" : "大崎", "close_ymd" : "", "lon" : 139.72843899999998, "post" : "", "e_status" : 0, "SUID" : 3344, "station_g_cd" : 1130201, "add" : "東京都品川区大崎一丁目21-4", "line_cd" : 11333, "selected" : false, "open_ymd" : "", "name" : "1133307", "pref_name" : "東京都", "shared_name" : "1133307", "lat" : 35.619772, "y" : -356197.72, "x" : 1397284.39 }, "position" : { "x" : 1397284.39, "y" : -356197.72 }, "selected" : false }, { "data" : { "id" : "7648", "station_name" : "巣鴨", "close_ymd" : "", "lon" : 139.738519, "post" : "", "e_status" : 0, "SUID" : 7648, "station_g_cd" : 1130214, "add" : "東京都豊島区巣鴨", "line_cd" : 99303, "selected" : false, "open_ymd" : "", "name" : "9930315", "pref_name" : "東京都", "shared_name" : "9930315", "lat" : 35.733502, "y" : -357335.02, "x" : 1397385.19 }, "position" : { "x" : 1397385.19, "y" : -357335.02 }, "selected" : false }, { "data" : { "id" : "3322", "station_name" : "神田", "close_ymd" : "", "lon" : 139.77064099999998, "post" : "", "e_status" : 0, "SUID" : 3322, "station_g_cd" : 1130223, "add" : "東京都千代田区鍛冶町二丁目13-1", "line_cd" : 11332, "selected" : false, "open_ymd" : "", "name" : "1133221", "pref_name" : "東京都", "shared_name" : "1133221", "lat" : 35.691173, "y" : -356911.73, "x" : 1397706.41 }, "position" : { "x" : 1397706.41, "y" : -356911.73 }, "selected" : false }, { "data" : { "id" : "7658", "station_name" : "高島平", "close_ymd" : "", "lon" : 139.661216, "post" : "175-0082", "e_status" : 0, "SUID" : 7658, "station_g_cd" : 9930325, "add" : "板橋区高島平8-2-1", "line_cd" : 99303, "selected" : false, "open_ymd" : "", "name" : "9930325", "pref_name" : "東京都", "shared_name" : "9930325", "lat" : 35.789056, "y" : -357890.56, "x" : 1396612.16 }, "position" : { "x" : 1396612.16, "y" : -357890.56 }, "selected" : false }, { "data" : { "id" : "3321", "station_name" : "秋葉原", "close_ymd" : "", "lon" : 139.77328799999998, "post" : "", "e_status" : 0, "SUID" : 3321, "station_g_cd" : 1130222, "add" : "東京都千代田区外神田一丁目17-6", "line_cd" : 11332, "selected" : false, "open_ymd" : "", "name" : "1133220", "pref_name" : "東京都", "shared_name" : "1133220", "lat" : 35.698619, "y" : -356986.19, "x" : 1397732.88 }, "position" : { "x" : 1397732.88, "y" : -356986.19 }, "selected" : false }, { "data" : { "id" : "7657", "station_name" : "西台", "close_ymd" : "", "lon" : 139.673971, "post" : "175-0082", "e_status" : 0, "SUID" : 7657, "station_g_cd" : 9930324, "add" : "板橋区高島平9-1-1", "line_cd" : 99303, "selected" : false, "open_ymd" : "", "name" : "9930324", "pref_name" : "東京都", "shared_name" : "9930324", "lat" : 35.78699, "y" : -357869.9, "x" : 1396739.71 }, "position" : { "x" : 1396739.71, "y" : -357869.9 }, "selected" : false }, { "data" : { "id" : "3324", "station_name" : "有楽町", "close_ymd" : "", "lon" : 139.76380600000002, "post" : "", "e_status" : 0, "SUID" : 3324, "station_g_cd" : 1130225, "add" : "東京都千代田区有楽町二丁目9-17", "line_cd" : 11332, "selected" : false, "open_ymd" : "", "name" : "1133223", "pref_name" : "東京都", "shared_name" : "1133223", "lat" : 35.675441, "y" : -356754.41, "x" : 1397638.06 }, "position" : { "x" : 1397638.06, "y" : -356754.41 }, "selected" : false }, { "data" : { "id" : "7660", "station_name" : "西高島平", "close_ymd" : "", "lon" : 139.64594, "post" : "175-0082", "e_status" : 0, "SUID" : 7660, "station_g_cd" : 9930327, "add" : "板橋区高島平6-1", "line_cd" : 99303, "selected" : false, "open_ymd" : "", "name" : "9930327", "pref_name" : "東京都", "shared_name" : "9930327", "lat" : 35.791833000000004, "y" : -357918.33, "x" : 1396459.4 }, "position" : { "x" : 1396459.4, "y" : -357918.33 }, "selected" : false }, { "data" : { "id" : "3323", "station_name" : "東京", "close_ymd" : "", "lon" : 139.76610300000002, "post" : "", "e_status" : 0, "SUID" : 3323, "station_g_cd" : 1130101, "add" : "東京都千代田区丸の内一丁目", "line_cd" : 11332, "selected" : false, "open_ymd" : "", "name" : "1133222", "pref_name" : "東京都", "shared_name" : "1133222", "lat" : 35.681391, "y" : -356813.91, "x" : 1397661.0300000003 }, "position" : { "x" : 1397661.0300000003, "y" : -356813.91 }, "selected" : false }, { "data" : { "id" : "7659", "station_name" : "新高島平", "close_ymd" : "", "lon" : 139.654275, "post" : "175-0082", "e_status" : 0, "SUID" : 7659, "station_g_cd" : 9930326, "add" : "板橋区高島平7-1", "line_cd" : 99303, "selected" : false, "open_ymd" : "", "name" : "9930326", "pref_name" : "東京都", "shared_name" : "9930326", "lat" : 35.790189, "y" : -357901.88999999996, "x" : 1396542.7500000002 }, "position" : { "x" : 1396542.7500000002, "y" : -357901.88999999996 }, "selected" : false }, { "data" : { "id" : "3318", "station_name" : "鶯谷", "close_ymd" : "", "lon" : 139.77801499999998, "post" : "", "e_status" : 0, "SUID" : 3318, "station_g_cd" : 1130219, "add" : "東京都台東区根岸一丁目4-1", "line_cd" : 11332, "selected" : false, "open_ymd" : "", "name" : "1133217", "pref_name" : "東京都", "shared_name" : "1133217", "lat" : 35.721484000000004, "y" : -357214.84, "x" : 1397780.15 }, "position" : { "x" : 1397780.15, "y" : -357214.84 }, "selected" : false }, { "data" : { "id" : "7654", "station_name" : "志村坂上", "close_ymd" : "", "lon" : 139.69538, "post" : "174-0056", "e_status" : 0, "SUID" : 7654, "station_g_cd" : 9930321, "add" : "板橋区志村1-14-13", "line_cd" : 99303, "selected" : false, "open_ymd" : "", "name" : "9930321", "pref_name" : "東京都", "shared_name" : "9930321", "lat" : 35.775725, "y" : -357757.25, "x" : 1396953.8 }, "position" : { "x" : 1396953.8, "y" : -357757.25 }, "selected" : false }, { "data" : { "id" : "3317", "station_name" : "日暮里", "close_ymd" : "", "lon" : 139.771287, "post" : "", "e_status" : 0, "SUID" : 3317, "station_g_cd" : 1130218, "add" : "東京都荒川区西日暮里二丁目", "line_cd" : 11332, "selected" : false, "open_ymd" : "", "name" : "1133216", "pref_name" : "東京都", "shared_name" : "1133216", "lat" : 35.727908, "y" : -357279.08, "x" : 1397712.87 }, "position" : { "x" : 1397712.87, "y" : -357279.08 }, "selected" : false }, { "data" : { "id" : "7653", "station_name" : "本蓮沼", "close_ymd" : "", "lon" : 139.702324, "post" : "174-0052", "e_status" : 0, "SUID" : 7653, "station_g_cd" : 9930320, "add" : "板橋区蓮沼町19-8", "line_cd" : 99303, "selected" : false, "open_ymd" : "", "name" : "9930320", "pref_name" : "東京都", "shared_name" : "9930320", "lat" : 35.768782, "y" : -357687.82, "x" : 1397023.24 }, "position" : { "x" : 1397023.24, "y" : -357687.82 }, "selected" : false }, { "data" : { "id" : "3320", "station_name" : "御徒町", "close_ymd" : "", "lon" : 139.774727, "post" : "", "e_status" : 0, "SUID" : 3320, "station_g_cd" : 1130221, "add" : "東京都台東区上野五丁目27", "line_cd" : 11332, "selected" : false, "open_ymd" : "", "name" : "1133219", "pref_name" : "東京都", "shared_name" : "1133219", "lat" : 35.707282, "y" : -357072.82, "x" : 1397747.27 }, "position" : { "x" : 1397747.27, "y" : -357072.82 }, "selected" : false }, { "data" : { "id" : "7656", "station_name" : "蓮根", "close_ymd" : "", "lon" : 139.678993, "post" : "174-0046", "e_status" : 0, "SUID" : 7656, "station_g_cd" : 9930323, "add" : "板橋区蓮根2-31-30", "line_cd" : 99303, "selected" : false, "open_ymd" : "", "name" : "9930323", "pref_name" : "東京都", "shared_name" : "9930323", "lat" : 35.784335, "y" : -357843.35, "x" : 1396789.93 }, "position" : { "x" : 1396789.93, "y" : -357843.35 }, "selected" : false }, { "data" : { "id" : "3319", "station_name" : "上野", "close_ymd" : "", "lon" : 139.777043, "post" : "", "e_status" : 0, "SUID" : 3319, "station_g_cd" : 1130220, "add" : "東京都台東区上野七丁目1-1", "line_cd" : 11332, "selected" : false, "open_ymd" : "", "name" : "1133218", "pref_name" : "東京都", "shared_name" : "1133218", "lat" : 35.71379, "y" : -357137.9, "x" : 1397770.43 }, "position" : { "x" : 1397770.43, "y" : -357137.9 }, "selected" : false }, { "data" : { "id" : "7655", "station_name" : "志村三丁目", "close_ymd" : "", "lon" : 139.68593700000002, "post" : "174-0056", "e_status" : 0, "SUID" : 7655, "station_g_cd" : 9930322, "add" : "板橋区志村3-23-1", "line_cd" : 99303, "selected" : false, "open_ymd" : "", "name" : "9930322", "pref_name" : "東京都", "shared_name" : "9930322", "lat" : 35.777390999999994, "y" : -357773.9099999999, "x" : 1396859.3700000003 }, "position" : { "x" : 1396859.3700000003, "y" : -357773.9099999999 }, "selected" : false }, { "data" : { "id" : "3330", "station_name" : "大森", "close_ymd" : "", "lon" : 139.728079, "post" : "143-0016", "e_status" : 0, "SUID" : 3330, "station_g_cd" : 1133229, "add" : "大田区大森北1丁目", "line_cd" : 11332, "selected" : false, "open_ymd" : "", "name" : "1133229", "pref_name" : "東京都", "shared_name" : "1133229", "lat" : 35.588903, "y" : -355889.03, "x" : 1397280.79 }, "position" : { "x" : 1397280.79, "y" : -355889.03 }, "selected" : false }, { "data" : { "id" : "7666", "station_name" : "神保町", "close_ymd" : "", "lon" : 139.757606, "post" : "101-0051", "e_status" : 0, "SUID" : 7666, "station_g_cd" : 2800807, "add" : "千代田区神田神保町2-2", "line_cd" : 99304, "selected" : false, "open_ymd" : "", "name" : "9930406", "pref_name" : "東京都", "shared_name" : "9930406", "lat" : 35.695966, "y" : -356959.66, "x" : 1397576.06 }, "position" : { "x" : 1397576.06, "y" : -356959.66 }, "selected" : false }, { "data" : { "id" : "3329", "station_name" : "大井町", "close_ymd" : "", "lon" : 139.73485, "post" : "140-0014", "e_status" : 0, "SUID" : 3329, "station_g_cd" : 1133228, "add" : "品川区大井1丁目", "line_cd" : 11332, "selected" : false, "open_ymd" : "", "name" : "1133228", "pref_name" : "東京都", "shared_name" : "1133228", "lat" : 35.606257, "y" : -356062.57, "x" : 1397348.5 }, "position" : { "x" : 1397348.5, "y" : -356062.57 }, "selected" : false }, { "data" : { "id" : "7665", "station_name" : "九段下", "close_ymd" : "", "lon" : 139.751948, "post" : "102-0074", "e_status" : 0, "SUID" : 7665, "station_g_cd" : 2800407, "add" : "千代田区九段南1-6-1", "line_cd" : 99304, "selected" : false, "open_ymd" : "", "name" : "9930405", "pref_name" : "東京都", "shared_name" : "9930405", "lat" : 35.695589, "y" : -356955.88999999996, "x" : 1397519.48 }, "position" : { "x" : 1397519.48, "y" : -356955.88999999996 }, "selected" : false }, { "data" : { "id" : "7668", "station_name" : "岩本町", "close_ymd" : "", "lon" : 139.77586599999998, "post" : "101-0033", "e_status" : 0, "SUID" : 7668, "station_g_cd" : 9930408, "add" : "千代田区神田岩本町1", "line_cd" : 99304, "selected" : false, "open_ymd" : "", "name" : "9930408", "pref_name" : "東京都", "shared_name" : "9930408", "lat" : 35.695534, "y" : -356955.34, "x" : 1397758.6599999997 }, "position" : { "x" : 1397758.6599999997, "y" : -356955.34 }, "selected" : false }, { "data" : { "id" : "3331", "station_name" : "蒲田", "close_ymd" : "", "lon" : 139.716032, "post" : "144-0052", "e_status" : 0, "SUID" : 3331, "station_g_cd" : 1133230, "add" : "大田区蒲田5丁目", "line_cd" : 11332, "selected" : false, "open_ymd" : "", "name" : "1133230", "pref_name" : "東京都", "shared_name" : "1133230", "lat" : 35.562517, "y" : -355625.17, "x" : 1397160.32 }, "position" : { "x" : 1397160.32, "y" : -355625.17 }, "selected" : false }, { "data" : { "id" : "7667", "station_name" : "小川町", "close_ymd" : "", "lon" : 139.767551, "post" : "101-0052", "e_status" : 0, "SUID" : 7667, "station_g_cd" : 2800207, "add" : "千代田区神田小川町1-6", "line_cd" : 99304, "selected" : false, "open_ymd" : "", "name" : "9930407", "pref_name" : "東京都", "shared_name" : "9930407", "lat" : 35.695487, "y" : -356954.87, "x" : 1397675.51 }, "position" : { "x" : 1397675.51, "y" : -356954.87 }, "selected" : false }, { "data" : { "id" : "3326", "station_name" : "浜松町", "close_ymd" : "", "lon" : 139.757135, "post" : "", "e_status" : 0, "SUID" : 3326, "station_g_cd" : 1130227, "add" : "東京都港区海岸一丁目3-1", "line_cd" : 11332, "selected" : false, "open_ymd" : "", "name" : "1133225", "pref_name" : "東京都", "shared_name" : "1133225", "lat" : 35.655390999999995, "y" : -356553.9099999999, "x" : 1397571.35 }, "position" : { "x" : 1397571.35, "y" : -356553.9099999999 }, "selected" : false }, { "data" : { "id" : "7662", "station_name" : "新宿三丁目", "close_ymd" : "", "lon" : 139.706271, "post" : "160-0022", "e_status" : 0, "SUID" : 7662, "station_g_cd" : 2800217, "add" : "新宿区新宿3-14-1", "line_cd" : 99304, "selected" : false, "open_ymd" : "", "name" : "9930402", "pref_name" : "東京都", "shared_name" : "9930402", "lat" : 35.690616, "y" : -356906.16, "x" : 1397062.71 }, "position" : { "x" : 1397062.71, "y" : -356906.16 }, "selected" : false }, { "data" : { "id" : "3325", "station_name" : "新橋", "close_ymd" : "", "lon" : 139.758587, "post" : "", "e_status" : 0, "SUID" : 3325, "station_g_cd" : 1130102, "add" : "東京都港区新橋二丁目17", "line_cd" : 11332, "selected" : false, "open_ymd" : "", "name" : "1133224", "pref_name" : "東京都", "shared_name" : "1133224", "lat" : 35.666195, "y" : -356661.95, "x" : 1397585.87 }, "position" : { "x" : 1397585.87, "y" : -356661.95 }, "selected" : false }, { "data" : { "id" : "7661", "station_name" : "新宿", "close_ymd" : "", "lon" : 139.698812, "post" : "", "e_status" : 0, "SUID" : 7661, "station_g_cd" : 1130208, "add" : "東京都新宿区西新宿一丁目18", "line_cd" : 99304, "selected" : false, "open_ymd" : "", "name" : "9930401", "pref_name" : "東京都", "shared_name" : "9930401", "lat" : 35.68869, "y" : -356886.9, "x" : 1396988.12 }, "position" : { "x" : 1396988.12, "y" : -356886.9 }, "selected" : false }, { "data" : { "id" : "3328", "station_name" : "品川", "close_ymd" : "", "lon" : 139.738999, "post" : "", "e_status" : 0, "SUID" : 3328, "station_g_cd" : 1130103, "add" : "東京都港区高輪三丁目26-26", "line_cd" : 11332, "selected" : false, "open_ymd" : "", "name" : "1133227", "pref_name" : "東京都", "shared_name" : "1133227", "lat" : 35.62876, "y" : -356287.6, "x" : 1397389.99 }, "position" : { "x" : 1397389.99, "y" : -356287.6 }, "selected" : false }, { "data" : { "id" : "7664", "station_name" : "市ヶ谷", "close_ymd" : "", "lon" : 139.735794, "post" : "162-0843", "e_status" : 0, "SUID" : 7664, "station_g_cd" : 1131206, "add" : "東京都新宿区市谷田町一丁目1", "line_cd" : 99304, "selected" : false, "open_ymd" : "", "name" : "9930404", "pref_name" : "東京都", "shared_name" : "9930404", "lat" : 35.692594, "y" : -356925.94, "x" : 1397357.94 }, "position" : { "x" : 1397357.94, "y" : -356925.94 }, "selected" : false }, { "data" : { "id" : "3327", "station_name" : "田町", "close_ymd" : "", "lon" : 139.747575, "post" : "", "e_status" : 0, "SUID" : 3327, "station_g_cd" : 1130228, "add" : "東京都港区芝五丁目33-36", "line_cd" : 11332, "selected" : false, "open_ymd" : "", "name" : "1133226", "pref_name" : "東京都", "shared_name" : "1133226", "lat" : 35.645736, "y" : -356457.36, "x" : 1397475.7500000002 }, "position" : { "x" : 1397475.7500000002, "y" : -356457.36 }, "selected" : false }, { "data" : { "id" : "7663", "station_name" : "曙橋", "close_ymd" : "", "lon" : 139.722881, "post" : "162-0065", "e_status" : 0, "SUID" : 7663, "station_g_cd" : 9930403, "add" : "新宿区住吉町7-1", "line_cd" : 99304, "selected" : false, "open_ymd" : "", "name" : "9930403", "pref_name" : "東京都", "shared_name" : "9930403", "lat" : 35.692402, "y" : -356924.02, "x" : 1397228.81 }, "position" : { "x" : 1397228.81, "y" : -356924.02 }, "selected" : false }, { "data" : { "id" : "5541", "station_name" : "京成上野", "close_ymd" : "", "lon" : 139.773571, "post" : "-", "e_status" : 0, "SUID" : 5541, "station_g_cd" : 2300101, "add" : "東京都台東区上野公園1-60", "line_cd" : 23006, "selected" : false, "open_ymd" : "1933-12-10", "name" : "2300601", "pref_name" : "東京都", "shared_name" : "2300601", "lat" : 35.711232, "y" : -357112.32, "x" : 1397735.71 }, "position" : { "x" : 1397735.71, "y" : -357112.32 }, "selected" : false }, { "data" : { "id" : "5542", "station_name" : "日暮里", "close_ymd" : "", "lon" : 139.771287, "post" : "-", "e_status" : 0, "SUID" : 5542, "station_g_cd" : 1130218, "add" : "東京都荒川区西日暮里二丁目19-1", "line_cd" : 23006, "selected" : false, "open_ymd" : "1931-12-19", "name" : "2300602", "pref_name" : "東京都", "shared_name" : "2300602", "lat" : 35.727908, "y" : -357279.08, "x" : 1397712.87 }, "position" : { "x" : 1397712.87, "y" : -357279.08 }, "selected" : false }, { "data" : { "id" : "5543", "station_name" : "青砥", "close_ymd" : "", "lon" : 139.856292, "post" : "-", "e_status" : 0, "SUID" : 5543, "station_g_cd" : 2300109, "add" : "東京都葛飾区青戸三丁目36番1号", "line_cd" : 23006, "selected" : false, "open_ymd" : "1928-11-01", "name" : "2300603", "pref_name" : "東京都", "shared_name" : "2300603", "lat" : 35.745883, "y" : -357458.83, "x" : 1398562.92 }, "position" : { "x" : 1398562.92, "y" : -357458.83 }, "selected" : false }, { "data" : { "id" : "5544", "station_name" : "京成高砂", "close_ymd" : "", "lon" : 139.866875, "post" : "-", "e_status" : 0, "SUID" : 5544, "station_g_cd" : 2300110, "add" : "東京都葛飾区高砂五丁目28-1", "line_cd" : 23006, "selected" : false, "open_ymd" : "", "name" : "2300604", "pref_name" : "東京都", "shared_name" : "2300604", "lat" : 35.750932, "y" : -357509.32, "x" : 1398668.75 }, "position" : { "x" : 1398668.75, "y" : -357509.32 }, "selected" : false }, { "data" : { "id" : "5552", "station_name" : "新宿", "close_ymd" : "", "lon" : 139.69918700000002, "post" : "", "e_status" : 0, "SUID" : 5552, "station_g_cd" : 1130208, "add" : "東京都新宿区西新宿一丁目1-4", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400101", "pref_name" : "東京都", "shared_name" : "2400101", "lat" : 35.690163, "y" : -356901.63, "x" : 1396991.8700000003 }, "position" : { "x" : 1396991.8700000003, "y" : -356901.63 }, "selected" : false }, { "data" : { "id" : "5553", "station_name" : "初台", "close_ymd" : "", "lon" : 139.686354, "post" : "151-0061", "e_status" : 0, "SUID" : 5553, "station_g_cd" : 2400102, "add" : "渋谷区初台1-53-7", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400102", "pref_name" : "東京都", "shared_name" : "2400102", "lat" : 35.68123, "y" : -356812.3, "x" : 1396863.54 }, "position" : { "x" : 1396863.54, "y" : -356812.3 }, "selected" : false }, { "data" : { "id" : "5554", "station_name" : "幡ヶ谷", "close_ymd" : "", "lon" : 139.676183, "post" : "", "e_status" : 0, "SUID" : 5554, "station_g_cd" : 2400103, "add" : "東京都渋谷区幡ヶ谷一丁目", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400103", "pref_name" : "東京都", "shared_name" : "2400103", "lat" : 35.677061, "y" : -356770.61000000004, "x" : 1396761.83 }, "position" : { "x" : 1396761.83, "y" : -356770.61000000004 }, "selected" : false }, { "data" : { "id" : "5555", "station_name" : "笹塚", "close_ymd" : "", "lon" : 139.667251, "post" : "151-0073", "e_status" : 0, "SUID" : 5555, "station_g_cd" : 2400104, "add" : "渋谷区笹塚1-56-7", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400104", "pref_name" : "東京都", "shared_name" : "2400104", "lat" : 35.673758, "y" : -356737.58, "x" : 1396672.51 }, "position" : { "x" : 1396672.51, "y" : -356737.58 }, "selected" : false }, { "data" : { "id" : "5556", "station_name" : "代田橋", "close_ymd" : "", "lon" : 139.659413, "post" : "156-0041", "e_status" : 0, "SUID" : 5556, "station_g_cd" : 2400105, "add" : "世田谷区大原2-18-9", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400105", "pref_name" : "東京都", "shared_name" : "2400105", "lat" : 35.671092, "y" : -356710.92000000004, "x" : 1396594.1300000001 }, "position" : { "x" : 1396594.1300000001, "y" : -356710.92000000004 }, "selected" : false }, { "data" : { "id" : "5575", "station_name" : "府中", "close_ymd" : "", "lon" : 139.4799, "post" : "183-0023", "e_status" : 0, "SUID" : 5575, "station_g_cd" : 2400124, "add" : "府中市宮町1-1-10", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400124", "pref_name" : "東京都", "shared_name" : "2400124", "lat" : 35.672245000000004, "y" : -356722.45, "x" : 1394798.9999999998 }, "position" : { "x" : 1394798.9999999998, "y" : -356722.45 }, "selected" : false }, { "data" : { "id" : "5576", "station_name" : "分倍河原", "close_ymd" : "", "lon" : 139.468798, "post" : "183-0021", "e_status" : 0, "SUID" : 5576, "station_g_cd" : 1130321, "add" : "府中市片町2丁目", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400125", "pref_name" : "東京都", "shared_name" : "2400125", "lat" : 35.668493, "y" : -356684.93, "x" : 1394687.98 }, "position" : { "x" : 1394687.98, "y" : -356684.93 }, "selected" : false }, { "data" : { "id" : "5573", "station_name" : "多磨霊園", "close_ymd" : "", "lon" : 139.502615, "post" : "183-0015", "e_status" : 0, "SUID" : 5573, "station_g_cd" : 2400122, "add" : "府中市清水が丘3-26-11", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400122", "pref_name" : "東京都", "shared_name" : "2400122", "lat" : 35.666197, "y" : -356661.97, "x" : 1395026.15 }, "position" : { "x" : 1395026.15, "y" : -356661.97 }, "selected" : false }, { "data" : { "id" : "5574", "station_name" : "東府中", "close_ymd" : "", "lon" : 139.495257, "post" : "183-0015", "e_status" : 0, "SUID" : 5574, "station_g_cd" : 2400123, "add" : "府中市清水が丘1-8-3", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400123", "pref_name" : "東京都", "shared_name" : "2400123", "lat" : 35.668766, "y" : -356687.66, "x" : 1394952.57 }, "position" : { "x" : 1394952.57, "y" : -356687.66 }, "selected" : false }, { "data" : { "id" : "5579", "station_name" : "百草園", "close_ymd" : "", "lon" : 139.431285, "post" : "191-0033", "e_status" : 0, "SUID" : 5579, "station_g_cd" : 2400128, "add" : "日野市百草209", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400128", "pref_name" : "東京都", "shared_name" : "2400128", "lat" : 35.657362, "y" : -356573.62, "x" : 1394312.85 }, "position" : { "x" : 1394312.85, "y" : -356573.62 }, "selected" : false }, { "data" : { "id" : "5580", "station_name" : "高幡不動", "close_ymd" : "", "lon" : 139.41295300000002, "post" : "191-0031", "e_status" : 0, "SUID" : 5580, "station_g_cd" : 2400129, "add" : "日野市高幡139", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400129", "pref_name" : "東京都", "shared_name" : "2400129", "lat" : 35.662361, "y" : -356623.61, "x" : 1394129.5300000003 }, "position" : { "x" : 1394129.5300000003, "y" : -356623.61 }, "selected" : false }, { "data" : { "id" : "5577", "station_name" : "中河原", "close_ymd" : "", "lon" : 139.457602, "post" : "183-0034", "e_status" : 0, "SUID" : 5577, "station_g_cd" : 2400126, "add" : "府中市住吉町2-1-16", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400126", "pref_name" : "東京都", "shared_name" : "2400126", "lat" : 35.659549, "y" : -356595.49, "x" : 1394576.02 }, "position" : { "x" : 1394576.02, "y" : -356595.49 }, "selected" : false }, { "data" : { "id" : "5578", "station_name" : "聖蹟桜ヶ丘", "close_ymd" : "", "lon" : 139.446979, "post" : "", "e_status" : 0, "SUID" : 5578, "station_g_cd" : 2400127, "add" : "東京都多摩市関戸一丁目10-10", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400127", "pref_name" : "東京都", "shared_name" : "2400127", "lat" : 35.650814000000004, "y" : -356508.14, "x" : 1394469.79 }, "position" : { "x" : 1394469.79, "y" : -356508.14 }, "selected" : false }, { "data" : { "id" : "5583", "station_name" : "長沼", "close_ymd" : "", "lon" : 139.365849, "post" : "192-0907", "e_status" : 0, "SUID" : 5583, "station_g_cd" : 2400132, "add" : "八王子市長沼町700", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400132", "pref_name" : "東京都", "shared_name" : "2400132", "lat" : 35.642788, "y" : -356427.88, "x" : 1393658.49 }, "position" : { "x" : 1393658.49, "y" : -356427.88 }, "selected" : false }, { "data" : { "id" : "5584", "station_name" : "北野", "close_ymd" : "", "lon" : 139.354489, "post" : "192-0911", "e_status" : 0, "SUID" : 5584, "station_g_cd" : 2400133, "add" : "八王子市打越町335-1", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400133", "pref_name" : "東京都", "shared_name" : "2400133", "lat" : 35.644479, "y" : -356444.79, "x" : 1393544.89 }, "position" : { "x" : 1393544.89, "y" : -356444.79 }, "selected" : false }, { "data" : { "id" : "5581", "station_name" : "南平", "close_ymd" : "", "lon" : 139.392008, "post" : "191-0041", "e_status" : 0, "SUID" : 5581, "station_g_cd" : 2400130, "add" : "日野市南平6-9-31", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400130", "pref_name" : "東京都", "shared_name" : "2400130", "lat" : 35.654559000000006, "y" : -356545.5900000001, "x" : 1393920.08 }, "position" : { "x" : 1393920.08, "y" : -356545.5900000001 }, "selected" : false }, { "data" : { "id" : "5582", "station_name" : "平山城址公園", "close_ymd" : "", "lon" : 139.379926, "post" : "191-0043", "e_status" : 0, "SUID" : 5582, "station_g_cd" : 2400131, "add" : "日野市平山5-18-10", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400131", "pref_name" : "東京都", "shared_name" : "2400131", "lat" : 35.647371, "y" : -356473.71, "x" : 1393799.26 }, "position" : { "x" : 1393799.26, "y" : -356473.71 }, "selected" : false }, { "data" : { "id" : "5587", "station_name" : "京王多摩川", "close_ymd" : "", "lon" : 139.536606, "post" : "182-0025", "e_status" : 0, "SUID" : 5587, "station_g_cd" : 2400202, "add" : "調布市多摩川4-40-1", "line_cd" : 24002, "selected" : false, "open_ymd" : "", "name" : "2400202", "pref_name" : "東京都", "shared_name" : "2400202", "lat" : 35.644498999999996, "y" : -356444.99, "x" : 1395366.06 }, "position" : { "x" : 1395366.06, "y" : -356444.99 }, "selected" : false }, { "data" : { "id" : "5585", "station_name" : "京王八王子", "close_ymd" : "", "lon" : 139.343851, "post" : "192-0046", "e_status" : 0, "SUID" : 5585, "station_g_cd" : 2400134, "add" : "八王子市明神町3-27-1", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400134", "pref_name" : "東京都", "shared_name" : "2400134", "lat" : 35.657416, "y" : -356574.16, "x" : 1393438.51 }, "position" : { "x" : 1393438.51, "y" : -356574.16 }, "selected" : false }, { "data" : { "id" : "5586", "station_name" : "調布", "close_ymd" : "", "lon" : 139.54398799999998, "post" : "182-0024", "e_status" : 0, "SUID" : 5586, "station_g_cd" : 2400118, "add" : "調布市布田4-32-1", "line_cd" : 24002, "selected" : false, "open_ymd" : "", "name" : "2400201", "pref_name" : "東京都", "shared_name" : "2400201", "lat" : 35.652181, "y" : -356521.81, "x" : 1395439.88 }, "position" : { "x" : 1395439.88, "y" : -356521.81 }, "selected" : false }, { "data" : { "id" : "5560", "station_name" : "上北沢", "close_ymd" : "", "lon" : 139.62329, "post" : "156-0057", "e_status" : 0, "SUID" : 5560, "station_g_cd" : 2400109, "add" : "世田谷区上北沢4-14-3", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400109", "pref_name" : "東京都", "shared_name" : "2400109", "lat" : 35.668857, "y" : -356688.57, "x" : 1396232.9 }, "position" : { "x" : 1396232.9, "y" : -356688.57 }, "selected" : false }, { "data" : { "id" : "5559", "station_name" : "桜上水", "close_ymd" : "", "lon" : 139.63128999999998, "post" : "156-0045", "e_status" : 0, "SUID" : 5559, "station_g_cd" : 2400108, "add" : "世田谷区桜上水5-29-52", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400108", "pref_name" : "東京都", "shared_name" : "2400108", "lat" : 35.66768, "y" : -356676.8, "x" : 1396312.8999999997 }, "position" : { "x" : 1396312.8999999997, "y" : -356676.8 }, "selected" : false }, { "data" : { "id" : "5558", "station_name" : "下高井戸", "close_ymd" : "", "lon" : 139.641372, "post" : "156-0043", "e_status" : 0, "SUID" : 5558, "station_g_cd" : 2400107, "add" : "世田谷区松原3-29-17", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400107", "pref_name" : "東京都", "shared_name" : "2400107", "lat" : 35.66615, "y" : -356661.5, "x" : 1396413.72 }, "position" : { "x" : 1396413.72, "y" : -356661.5 }, "selected" : false }, { "data" : { "id" : "5557", "station_name" : "明大前", "close_ymd" : "", "lon" : 139.650352, "post" : "156-0043", "e_status" : 0, "SUID" : 5557, "station_g_cd" : 2400106, "add" : "世田谷区松原2-45-1", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400106", "pref_name" : "東京都", "shared_name" : "2400106", "lat" : 35.668758000000004, "y" : -356687.58, "x" : 1396503.52 }, "position" : { "x" : 1396503.52, "y" : -356687.58 }, "selected" : false }, { "data" : { "id" : "5564", "station_name" : "仙川", "close_ymd" : "", "lon" : 139.584908, "post" : "182-0002", "e_status" : 0, "SUID" : 5564, "station_g_cd" : 2400113, "add" : "調布市仙川町1-43", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400113", "pref_name" : "東京都", "shared_name" : "2400113", "lat" : 35.662257000000004, "y" : -356622.57000000007, "x" : 1395849.08 }, "position" : { "x" : 1395849.08, "y" : -356622.57000000007 }, "selected" : false }, { "data" : { "id" : "5563", "station_name" : "千歳烏山", "close_ymd" : "", "lon" : 139.60067, "post" : "157-0062", "e_status" : 0, "SUID" : 5563, "station_g_cd" : 2400112, "add" : "世田谷区南烏山6-1-1", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400112", "pref_name" : "東京都", "shared_name" : "2400112", "lat" : 35.667921, "y" : -356679.21, "x" : 1396006.7000000002 }, "position" : { "x" : 1396006.7000000002, "y" : -356679.21 }, "selected" : false }, { "data" : { "id" : "5562", "station_name" : "芦花公園", "close_ymd" : "", "lon" : 139.608247, "post" : "157-0062", "e_status" : 0, "SUID" : 5562, "station_g_cd" : 2400111, "add" : "世田谷区南烏山3-1-16", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400111", "pref_name" : "東京都", "shared_name" : "2400111", "lat" : 35.670479, "y" : -356704.79, "x" : 1396082.47 }, "position" : { "x" : 1396082.47, "y" : -356704.79 }, "selected" : false }, { "data" : { "id" : "5561", "station_name" : "八幡山", "close_ymd" : "", "lon" : 139.614927, "post" : "168-0074", "e_status" : 0, "SUID" : 5561, "station_g_cd" : 2400110, "add" : "杉並区上高井戸1-1-11", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400110", "pref_name" : "東京都", "shared_name" : "2400110", "lat" : 35.669982, "y" : -356699.81999999995, "x" : 1396149.27 }, "position" : { "x" : 1396149.27, "y" : -356699.81999999995 }, "selected" : false }, { "data" : { "id" : "5568", "station_name" : "布田", "close_ymd" : "", "lon" : 139.551557, "post" : "182-0022", "e_status" : 0, "SUID" : 5568, "station_g_cd" : 2400117, "add" : "調布市国領町5-67-1", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400117", "pref_name" : "東京都", "shared_name" : "2400117", "lat" : 35.649904, "y" : -356499.04, "x" : 1395515.57 }, "position" : { "x" : 1395515.57, "y" : -356499.04 }, "selected" : false }, { "data" : { "id" : "5567", "station_name" : "国領", "close_ymd" : "", "lon" : 139.55803600000002, "post" : "182-0022", "e_status" : 0, "SUID" : 5567, "station_g_cd" : 2400116, "add" : "調布市国領町3-18-1", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400116", "pref_name" : "東京都", "shared_name" : "2400116", "lat" : 35.650087, "y" : -356500.87, "x" : 1395580.36 }, "position" : { "x" : 1395580.36, "y" : -356500.87 }, "selected" : false }, { "data" : { "id" : "5566", "station_name" : "柴崎", "close_ymd" : "", "lon" : 139.56658000000002, "post" : "182-0007", "e_status" : 0, "SUID" : 5566, "station_g_cd" : 2400115, "add" : "調布市菊野台2-67-11", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400115", "pref_name" : "東京都", "shared_name" : "2400115", "lat" : 35.653997, "y" : -356539.97, "x" : 1395665.8 }, "position" : { "x" : 1395665.8, "y" : -356539.97 }, "selected" : false }, { "data" : { "id" : "5565", "station_name" : "つつじヶ丘", "close_ymd" : "", "lon" : 139.575103, "post" : "", "e_status" : 0, "SUID" : 5565, "station_g_cd" : 2400114, "add" : "東京都調布市西つつじヶ丘三丁目35-1", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400114", "pref_name" : "東京都", "shared_name" : "2400114", "lat" : 35.657936, "y" : -356579.36, "x" : 1395751.03 }, "position" : { "x" : 1395751.03, "y" : -356579.36 }, "selected" : false }, { "data" : { "id" : "5572", "station_name" : "武蔵野台", "close_ymd" : "", "lon" : 139.51128899999998, "post" : "183-0011", "e_status" : 0, "SUID" : 5572, "station_g_cd" : 2400121, "add" : "府中市白糸台4-18-4", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400121", "pref_name" : "東京都", "shared_name" : "2400121", "lat" : 35.664159000000005, "y" : -356641.59, "x" : 1395112.8899999997 }, "position" : { "x" : 1395112.8899999997, "y" : -356641.59 }, "selected" : false }, { "data" : { "id" : "5571", "station_name" : "飛田給", "close_ymd" : "", "lon" : 139.523666, "post" : "182-0036", "e_status" : 0, "SUID" : 5571, "station_g_cd" : 2400120, "add" : "調布市飛田給1-42-11", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400120", "pref_name" : "東京都", "shared_name" : "2400120", "lat" : 35.660121000000004, "y" : -356601.21, "x" : 1395236.66 }, "position" : { "x" : 1395236.66, "y" : -356601.21 }, "selected" : false }, { "data" : { "id" : "5570", "station_name" : "西調布", "close_ymd" : "", "lon" : 139.529822, "post" : "182-0035", "e_status" : 0, "SUID" : 5570, "station_g_cd" : 2400119, "add" : "調布市上石原1-25-17", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400119", "pref_name" : "東京都", "shared_name" : "2400119", "lat" : 35.657169, "y" : -356571.69000000006, "x" : 1395298.22 }, "position" : { "x" : 1395298.22, "y" : -356571.69000000006 }, "selected" : false }, { "data" : { "id" : "5569", "station_name" : "調布", "close_ymd" : "", "lon" : 139.54398799999998, "post" : "182-0024", "e_status" : 0, "SUID" : 5569, "station_g_cd" : 2400118, "add" : "調布市布田4-32-1", "line_cd" : 24001, "selected" : false, "open_ymd" : "", "name" : "2400118", "pref_name" : "東京都", "shared_name" : "2400118", "lat" : 35.652181, "y" : -356521.81, "x" : 1395439.88 }, "position" : { "x" : 1395439.88, "y" : -356521.81 }, "selected" : false }, { "data" : { "id" : "5609", "station_name" : "渋谷", "close_ymd" : "", "lon" : 139.700872, "post" : "-", "e_status" : 0, "SUID" : 5609, "station_g_cd" : 1130205, "add" : "東京都渋谷区道玄坂一丁目4-1", "line_cd" : 24006, "selected" : false, "open_ymd" : "", "name" : "2400601", "pref_name" : "東京都", "shared_name" : "2400601", "lat" : 35.6587, "y" : -356587.00000000006, "x" : 1397008.72 }, "position" : { "x" : 1397008.72, "y" : -356587.00000000006 }, "selected" : false }, { "data" : { "id" : "5610", "station_name" : "神泉", "close_ymd" : "", "lon" : 139.693579, "post" : "150-0045", "e_status" : 0, "SUID" : 5610, "station_g_cd" : 2400602, "add" : "渋谷区神泉町4-6", "line_cd" : 24006, "selected" : false, "open_ymd" : "", "name" : "2400602", "pref_name" : "東京都", "shared_name" : "2400602", "lat" : 35.657244, "y" : -356572.44, "x" : 1396935.79 }, "position" : { "x" : 1396935.79, "y" : -356572.44 }, "selected" : false }, { "data" : { "id" : "5611", "station_name" : "駒場東大前", "close_ymd" : "", "lon" : 139.68430800000002, "post" : "153-0041", "e_status" : 0, "SUID" : 5611, "station_g_cd" : 2400603, "add" : "目黒区駒場3-9-1", "line_cd" : 24006, "selected" : false, "open_ymd" : "", "name" : "2400603", "pref_name" : "東京都", "shared_name" : "2400603", "lat" : 35.65868, "y" : -356586.8, "x" : 1396843.08 }, "position" : { "x" : 1396843.08, "y" : -356586.8 }, "selected" : false }, { "data" : { "id" : "5612", "station_name" : "池ノ上", "close_ymd" : "", "lon" : 139.67344, "post" : "155-0032", "e_status" : 0, "SUID" : 5612, "station_g_cd" : 2400104, "add" : "世田谷区代沢2-43-8", "line_cd" : 24006, "selected" : false, "open_ymd" : "", "name" : "2400604", "pref_name" : "東京都", "shared_name" : "2400604", "lat" : 35.660402000000005, "y" : -356604.0200000001, "x" : 1396734.4 }, "position" : { "x" : 1396734.4, "y" : -356604.0200000001 }, "selected" : false }, { "data" : { "id" : "5605", "station_name" : "東府中", "close_ymd" : "", "lon" : 139.495257, "post" : "183-0015", "e_status" : 0, "SUID" : 5605, "station_g_cd" : 2400123, "add" : "府中市清水が丘1-8-3", "line_cd" : 24004, "selected" : false, "open_ymd" : "", "name" : "2400401", "pref_name" : "東京都", "shared_name" : "2400401", "lat" : 35.668766, "y" : -356687.66, "x" : 1394952.57 }, "position" : { "x" : 1394952.57, "y" : -356687.66 }, "selected" : false }, { "data" : { "id" : "5606", "station_name" : "府中競馬正門前", "close_ymd" : "", "lon" : 139.485019, "post" : "183-0016", "e_status" : 0, "SUID" : 5606, "station_g_cd" : 2400402, "add" : "府中市八幡町1-18", "line_cd" : 24004, "selected" : false, "open_ymd" : "", "name" : "2400402", "pref_name" : "東京都", "shared_name" : "2400402", "lat" : 35.668288000000004, "y" : -356682.88000000006, "x" : 1394850.19 }, "position" : { "x" : 1394850.19, "y" : -356682.88000000006 }, "selected" : false }, { "data" : { "id" : "5607", "station_name" : "高幡不動", "close_ymd" : "", "lon" : 139.41295300000002, "post" : "191-0031", "e_status" : 0, "SUID" : 5607, "station_g_cd" : 2400129, "add" : "日野市高幡139", "line_cd" : 24005, "selected" : false, "open_ymd" : "", "name" : "2400501", "pref_name" : "東京都", "shared_name" : "2400501", "lat" : 35.662361, "y" : -356623.61, "x" : 1394129.5300000003 }, "position" : { "x" : 1394129.5300000003, "y" : -356623.61 }, "selected" : false }, { "data" : { "id" : "5608", "station_name" : "多摩動物公園", "close_ymd" : "", "lon" : 139.404627, "post" : "191-0042", "e_status" : 0, "SUID" : 5608, "station_g_cd" : 2400502, "add" : "日野市程久保3-36-39", "line_cd" : 24005, "selected" : false, "open_ymd" : "", "name" : "2400502", "pref_name" : "東京都", "shared_name" : "2400502", "lat" : 35.649215000000005, "y" : -356492.15, "x" : 1394046.27 }, "position" : { "x" : 1394046.27, "y" : -356492.15 }, "selected" : false }, { "data" : { "id" : "5617", "station_name" : "永福町", "close_ymd" : "", "lon" : 139.64273300000002, "post" : "168-0064", "e_status" : 0, "SUID" : 5617, "station_g_cd" : 2400609, "add" : "杉並区永福2-60-31", "line_cd" : 24006, "selected" : false, "open_ymd" : "", "name" : "2400609", "pref_name" : "東京都", "shared_name" : "2400609", "lat" : 35.67629, "y" : -356762.9, "x" : 1396427.3300000003 }, "position" : { "x" : 1396427.3300000003, "y" : -356762.9 }, "selected" : false }, { "data" : { "id" : "5618", "station_name" : "西永福", "close_ymd" : "", "lon" : 139.634936, "post" : "168-0064", "e_status" : 0, "SUID" : 5618, "station_g_cd" : 2400610, "add" : "杉並区永福3-36-1", "line_cd" : 24006, "selected" : false, "open_ymd" : "", "name" : "2400610", "pref_name" : "東京都", "shared_name" : "2400610", "lat" : 35.678917999999996, "y" : -356789.17999999993, "x" : 1396349.36 }, "position" : { "x" : 1396349.36, "y" : -356789.17999999993 }, "selected" : false }, { "data" : { "id" : "5619", "station_name" : "浜田山", "close_ymd" : "", "lon" : 139.627528, "post" : "168-0065", "e_status" : 0, "SUID" : 5619, "station_g_cd" : 2400611, "add" : "杉並区浜田山3-31-2", "line_cd" : 24006, "selected" : false, "open_ymd" : "", "name" : "2400611", "pref_name" : "東京都", "shared_name" : "2400611", "lat" : 35.681603, "y" : -356816.03, "x" : 1396275.28 }, "position" : { "x" : 1396275.28, "y" : -356816.03 }, "selected" : false }, { "data" : { "id" : "5620", "station_name" : "高井戸", "close_ymd" : "", "lon" : 139.615115, "post" : "168-0071", "e_status" : 0, "SUID" : 5620, "station_g_cd" : 2400612, "add" : "杉並区高井戸西2-1-26", "line_cd" : 24006, "selected" : false, "open_ymd" : "", "name" : "2400612", "pref_name" : "東京都", "shared_name" : "2400612", "lat" : 35.683253, "y" : -356832.53, "x" : 1396151.1500000001 }, "position" : { "x" : 1396151.1500000001, "y" : -356832.53 }, "selected" : false }, { "data" : { "id" : "5613", "station_name" : "下北沢", "close_ymd" : "", "lon" : 139.66691, "post" : "155-0031", "e_status" : 0, "SUID" : 5613, "station_g_cd" : 2400605, "add" : "世田谷区北沢2丁目", "line_cd" : 24006, "selected" : false, "open_ymd" : "", "name" : "2400605", "pref_name" : "東京都", "shared_name" : "2400605", "lat" : 35.661539000000005, "y" : -356615.3900000001, "x" : 1396669.1 }, "position" : { "x" : 1396669.1, "y" : -356615.3900000001 }, "selected" : false }, { "data" : { "id" : "5614", "station_name" : "新代田", "close_ymd" : "", "lon" : 139.660524, "post" : "155-0033", "e_status" : 0, "SUID" : 5614, "station_g_cd" : 2400606, "add" : "世田谷区代田5-30-18", "line_cd" : 24006, "selected" : false, "open_ymd" : "", "name" : "2400606", "pref_name" : "東京都", "shared_name" : "2400606", "lat" : 35.662593, "y" : -356625.93, "x" : 1396605.24 }, "position" : { "x" : 1396605.24, "y" : -356625.93 }, "selected" : false }, { "data" : { "id" : "5615", "station_name" : "東松原", "close_ymd" : "", "lon" : 139.65553500000001, "post" : "156-0043", "e_status" : 0, "SUID" : 5615, "station_g_cd" : 2400607, "add" : "世田谷区松原5-2-6", "line_cd" : 24006, "selected" : false, "open_ymd" : "", "name" : "2400607", "pref_name" : "東京都", "shared_name" : "2400607", "lat" : 35.662634000000004, "y" : -356626.34, "x" : 1396555.35 }, "position" : { "x" : 1396555.35, "y" : -356626.34 }, "selected" : false }, { "data" : { "id" : "5616", "station_name" : "明大前", "close_ymd" : "", "lon" : 139.650352, "post" : "156-0043", "e_status" : 0, "SUID" : 5616, "station_g_cd" : 2400106, "add" : "世田谷区松原2-45-1", "line_cd" : 24006, "selected" : false, "open_ymd" : "", "name" : "2400608", "pref_name" : "東京都", "shared_name" : "2400608", "lat" : 35.668758000000004, "y" : -356687.58, "x" : 1396503.52 }, "position" : { "x" : 1396503.52, "y" : -356687.58 }, "selected" : false }, { "data" : { "id" : "5594", "station_name" : "京王堀之内", "close_ymd" : "", "lon" : 139.40031399999998, "post" : "192-0355", "e_status" : 0, "SUID" : 5594, "station_g_cd" : 2400209, "add" : "八王子市堀之内3-24-4", "line_cd" : 24002, "selected" : false, "open_ymd" : "", "name" : "2400209", "pref_name" : "東京都", "shared_name" : "2400209", "lat" : 35.624438, "y" : -356244.38, "x" : 1394003.14 }, "position" : { "x" : 1394003.14, "y" : -356244.38 }, "selected" : false }, { "data" : { "id" : "5593", "station_name" : "京王多摩センター", "close_ymd" : "", "lon" : 139.42401999999998, "post" : "206-0033", "e_status" : 0, "SUID" : 5593, "station_g_cd" : 2400208, "add" : "多摩市落合1-10-2", "line_cd" : 24002, "selected" : false, "open_ymd" : "", "name" : "2400208", "pref_name" : "東京都", "shared_name" : "2400208", "lat" : 35.62518, "y" : -356251.8, "x" : 1394240.2 }, "position" : { "x" : 1394240.2, "y" : -356251.8 }, "selected" : false }, { "data" : { "id" : "5596", "station_name" : "多摩境", "close_ymd" : "", "lon" : 139.36698700000002, "post" : "194-0212", "e_status" : 0, "SUID" : 5596, "station_g_cd" : 2400211, "add" : "町田市小山町2718-1", "line_cd" : 24002, "selected" : false, "open_ymd" : "", "name" : "2400211", "pref_name" : "東京都", "shared_name" : "2400211", "lat" : 35.601826, "y" : -356018.26, "x" : 1393669.8700000003 }, "position" : { "x" : 1393669.8700000003, "y" : -356018.26 }, "selected" : false }, { "data" : { "id" : "5595", "station_name" : "南大沢", "close_ymd" : "", "lon" : 139.3798, "post" : "192-0364", "e_status" : 0, "SUID" : 5595, "station_g_cd" : 2400210, "add" : "八王子市南大沢2-1-6", "line_cd" : 24002, "selected" : false, "open_ymd" : "", "name" : "2400210", "pref_name" : "東京都", "shared_name" : "2400210", "lat" : 35.6141, "y" : -356141.0, "x" : 1393798.0 }, "position" : { "x" : 1393798.0, "y" : -356141.0 }, "selected" : false }, { "data" : { "id" : "5590", "station_name" : "稲城", "close_ymd" : "", "lon" : 139.500398, "post" : "206-0802", "e_status" : 0, "SUID" : 5590, "station_g_cd" : 2400205, "add" : "稲城市東長沼3108", "line_cd" : 24002, "selected" : false, "open_ymd" : "", "name" : "2400205", "pref_name" : "東京都", "shared_name" : "2400205", "lat" : 35.636165999999996, "y" : -356361.66, "x" : 1395003.98 }, "position" : { "x" : 1395003.98, "y" : -356361.66 }, "selected" : false }, { "data" : { "id" : "5589", "station_name" : "京王よみうりランド", "close_ymd" : "", "lon" : 139.517597, "post" : "", "e_status" : 0, "SUID" : 5589, "station_g_cd" : 2400204, "add" : "東京都稲城市矢野口", "line_cd" : 24002, "selected" : false, "open_ymd" : "", "name" : "2400204", "pref_name" : "東京都", "shared_name" : "2400204", "lat" : 35.632934000000006, "y" : -356329.3400000001, "x" : 1395175.97 }, "position" : { "x" : 1395175.97, "y" : -356329.3400000001 }, "selected" : false }, { "data" : { "id" : "5592", "station_name" : "京王永山", "close_ymd" : "", "lon" : 139.448204, "post" : "206-0025", "e_status" : 0, "SUID" : 5592, "station_g_cd" : 2400207, "add" : "多摩市永山1-18-1", "line_cd" : 24002, "selected" : false, "open_ymd" : "", "name" : "2400207", "pref_name" : "東京都", "shared_name" : "2400207", "lat" : 35.630102, "y" : -356301.02, "x" : 1394482.04 }, "position" : { "x" : 1394482.04, "y" : -356301.02 }, "selected" : false }, { "data" : { "id" : "5602", "station_name" : "狭間", "close_ymd" : "", "lon" : 139.293808, "post" : "193-0834", "e_status" : 0, "SUID" : 5602, "station_g_cd" : 2400305, "add" : "八王子市東浅川町773", "line_cd" : 24003, "selected" : false, "open_ymd" : "", "name" : "2400305", "pref_name" : "東京都", "shared_name" : "2400305", "lat" : 35.640637, "y" : -356406.37, "x" : 1392938.08 }, "position" : { "x" : 1392938.08, "y" : -356406.37 }, "selected" : false }, { "data" : { "id" : "5601", "station_name" : "めじろ台", "close_ymd" : "", "lon" : 139.308446, "post" : "193-0833", "e_status" : 0, "SUID" : 5601, "station_g_cd" : 2400304, "add" : "八王子市めじろ台1-100-1", "line_cd" : 24003, "selected" : false, "open_ymd" : "", "name" : "2400304", "pref_name" : "東京都", "shared_name" : "2400304", "lat" : 35.643601000000004, "y" : -356436.01000000007, "x" : 1393084.46 }, "position" : { "x" : 1393084.46, "y" : -356436.01000000007 }, "selected" : false }, { "data" : { "id" : "5604", "station_name" : "高尾山口", "close_ymd" : "", "lon" : 139.269856, "post" : "193-0844", "e_status" : 0, "SUID" : 5604, "station_g_cd" : 2400307, "add" : "八王子市高尾町2241", "line_cd" : 24003, "selected" : false, "open_ymd" : "", "name" : "2400307", "pref_name" : "東京都", "shared_name" : "2400307", "lat" : 35.632377000000005, "y" : -356323.7700000001, "x" : 1392698.56 }, "position" : { "x" : 1392698.56, "y" : -356323.7700000001 }, "selected" : false }, { "data" : { "id" : "5603", "station_name" : "高尾", "close_ymd" : "", "lon" : 139.281551, "post" : "193-0844", "e_status" : 0, "SUID" : 5603, "station_g_cd" : 1131112, "add" : "八王子市高尾町", "line_cd" : 24003, "selected" : false, "open_ymd" : "", "name" : "2400306", "pref_name" : "東京都", "shared_name" : "2400306", "lat" : 35.641645000000004, "y" : -356416.45, "x" : 1392815.51 }, "position" : { "x" : 1392815.51, "y" : -356416.45 }, "selected" : false }, { "data" : { "id" : "5598", "station_name" : "北野", "close_ymd" : "", "lon" : 139.354489, "post" : "192-0911", "e_status" : 0, "SUID" : 5598, "station_g_cd" : 2400133, "add" : "八王子市打越町335-1", "line_cd" : 24003, "selected" : false, "open_ymd" : "", "name" : "2400301", "pref_name" : "東京都", "shared_name" : "2400301", "lat" : 35.644479, "y" : -356444.79, "x" : 1393544.89 }, "position" : { "x" : 1393544.89, "y" : -356444.79 }, "selected" : false }, { "data" : { "id" : "5600", "station_name" : "山田", "close_ymd" : "", "lon" : 139.32108200000002, "post" : "193-0932", "e_status" : 0, "SUID" : 5600, "station_g_cd" : 2400303, "add" : "八王子市緑町434", "line_cd" : 24003, "selected" : false, "open_ymd" : "", "name" : "2400303", "pref_name" : "東京都", "shared_name" : "2400303", "lat" : 35.644411, "y" : -356444.11, "x" : 1393210.8200000003 }, "position" : { "x" : 1393210.8200000003, "y" : -356444.11 }, "selected" : false }, { "data" : { "id" : "5599", "station_name" : "京王片倉", "close_ymd" : "", "lon" : 139.33703500000001, "post" : "192-0914", "e_status" : 0, "SUID" : 5599, "station_g_cd" : 2400302, "add" : "八王子市片倉町34-9", "line_cd" : 24003, "selected" : false, "open_ymd" : "", "name" : "2400302", "pref_name" : "東京都", "shared_name" : "2400302", "lat" : 35.644343, "y" : -356443.43, "x" : 1393370.35 }, "position" : { "x" : 1393370.35, "y" : -356443.43 }, "selected" : false }, { "data" : { "id" : "5643", "station_name" : "成城学園前", "close_ymd" : "", "lon" : 139.598958, "post" : "157-0066", "e_status" : 0, "SUID" : 5643, "station_g_cd" : 2500114, "add" : "世田谷区成城6丁目", "line_cd" : 25001, "selected" : false, "open_ymd" : "", "name" : "2500114", "pref_name" : "東京都", "shared_name" : "2500114", "lat" : 35.640114000000004, "y" : -356401.14, "x" : 1395989.58 }, "position" : { "x" : 1395989.58, "y" : -356401.14 }, "selected" : false }, { "data" : { "id" : "5644", "station_name" : "喜多見", "close_ymd" : "", "lon" : 139.587445, "post" : "157-0067", "e_status" : 0, "SUID" : 5644, "station_g_cd" : 2500115, "add" : "世田谷区喜多見9丁目", "line_cd" : 25001, "selected" : false, "open_ymd" : "", "name" : "2500115", "pref_name" : "東京都", "shared_name" : "2500115", "lat" : 35.636697, "y" : -356366.97, "x" : 1395874.45 }, "position" : { "x" : 1395874.45, "y" : -356366.97 }, "selected" : false }, { "data" : { "id" : "5641", "station_name" : "千歳船橋", "close_ymd" : "", "lon" : 139.624544, "post" : "156-0055", "e_status" : 0, "SUID" : 5641, "station_g_cd" : 2500112, "add" : "世田谷区船橋1丁目", "line_cd" : 25001, "selected" : false, "open_ymd" : "", "name" : "2500112", "pref_name" : "東京都", "shared_name" : "2500112", "lat" : 35.647616, "y" : -356476.16, "x" : 1396245.44 }, "position" : { "x" : 1396245.44, "y" : -356476.16 }, "selected" : false }, { "data" : { "id" : "5642", "station_name" : "祖師ヶ谷大蔵", "close_ymd" : "", "lon" : 139.60965900000002, "post" : "", "e_status" : 0, "SUID" : 5642, "station_g_cd" : 2500113, "add" : "東京都世田谷区祖師谷1丁目", "line_cd" : 25001, "selected" : false, "open_ymd" : "", "name" : "2500113", "pref_name" : "東京都", "shared_name" : "2500113", "lat" : 35.643236, "y" : -356432.36000000004, "x" : 1396096.5900000003 }, "position" : { "x" : 1396096.5900000003, "y" : -356432.36000000004 }, "selected" : false }, { "data" : { "id" : "5639", "station_name" : "豪徳寺", "close_ymd" : "", "lon" : 139.647381, "post" : "154-0021", "e_status" : 0, "SUID" : 5639, "station_g_cd" : 2500110, "add" : "世田谷区豪徳寺1丁目", "line_cd" : 25001, "selected" : false, "open_ymd" : "", "name" : "2500110", "pref_name" : "東京都", "shared_name" : "2500110", "lat" : 35.653807, "y" : -356538.07, "x" : 1396473.81 }, "position" : { "x" : 1396473.81, "y" : -356538.07 }, "selected" : false }, { "data" : { "id" : "5640", "station_name" : "経堂", "close_ymd" : "", "lon" : 139.63599299999998, "post" : "156-0052", "e_status" : 0, "SUID" : 5640, "station_g_cd" : 2500111, "add" : "世田谷区経堂1丁目", "line_cd" : 25001, "selected" : false, "open_ymd" : "", "name" : "2500111", "pref_name" : "東京都", "shared_name" : "2500111", "lat" : 35.650991, "y" : -356509.91, "x" : 1396359.93 }, "position" : { "x" : 1396359.93, "y" : -356509.91 }, "selected" : false }, { "data" : { "id" : "5637", "station_name" : "世田谷代田", "close_ymd" : "", "lon" : 139.66155700000002, "post" : "155-0033", "e_status" : 0, "SUID" : 5637, "station_g_cd" : 2500108, "add" : "世田谷区代田2丁目", "line_cd" : 25001, "selected" : false, "open_ymd" : "", "name" : "2500108", "pref_name" : "東京都", "shared_name" : "2500108", "lat" : 35.65834, "y" : -356583.4, "x" : 1396615.57 }, "position" : { "x" : 1396615.57, "y" : -356583.4 }, "selected" : false }, { "data" : { "id" : "5638", "station_name" : "梅ヶ丘", "close_ymd" : "", "lon" : 139.653628, "post" : "", "e_status" : 0, "SUID" : 5638, "station_g_cd" : 2500109, "add" : "東京都世田谷区梅丘", "line_cd" : 25001, "selected" : false, "open_ymd" : "", "name" : "2500109", "pref_name" : "東京都", "shared_name" : "2500109", "lat" : 35.656024, "y" : -356560.24000000005, "x" : 1396536.28 }, "position" : { "x" : 1396536.28, "y" : -356560.24000000005 }, "selected" : false }, { "data" : { "id" : "5645", "station_name" : "狛江", "close_ymd" : "", "lon" : 139.577127, "post" : "201-0014", "e_status" : 0, "SUID" : 5645, "station_g_cd" : 2500116, "add" : "狛江市東和泉1丁目", "line_cd" : 25001, "selected" : false, "open_ymd" : "", "name" : "2500116", "pref_name" : "東京都", "shared_name" : "2500116", "lat" : 35.632001, "y" : -356320.01, "x" : 1395771.2699999998 }, "position" : { "x" : 1395771.2699999998, "y" : -356320.01 }, "selected" : false }, { "data" : { "id" : "5646", "station_name" : "和泉多摩川", "close_ymd" : "", "lon" : 139.573695, "post" : "201-0014", "e_status" : 0, "SUID" : 5646, "station_g_cd" : 2500117, "add" : "狛江市東和泉4丁目", "line_cd" : 25001, "selected" : false, "open_ymd" : "", "name" : "2500117", "pref_name" : "東京都", "shared_name" : "2500117", "lat" : 35.627349, "y" : -356273.49000000005, "x" : 1395736.95 }, "position" : { "x" : 1395736.95, "y" : -356273.49000000005 }, "selected" : false }, { "data" : { "id" : "5628", "station_name" : "幡ヶ谷", "close_ymd" : "", "lon" : 139.676183, "post" : "-", "e_status" : 0, "SUID" : 5628, "station_g_cd" : 2400103, "add" : "東京都渋谷区幡ヶ谷一丁目", "line_cd" : 24007, "selected" : false, "open_ymd" : "", "name" : "2400703", "pref_name" : "東京都", "shared_name" : "2400703", "lat" : 35.677061, "y" : -356770.61000000004, "x" : 1396761.83 }, "position" : { "x" : 1396761.83, "y" : -356770.61000000004 }, "selected" : false }, { "data" : { "id" : "5627", "station_name" : "初台", "close_ymd" : "", "lon" : 139.686354, "post" : "151-0061", "e_status" : 0, "SUID" : 5627, "station_g_cd" : 2400102, "add" : "渋谷区初台1-53-7", "line_cd" : 24007, "selected" : false, "open_ymd" : "", "name" : "2400702", "pref_name" : "東京都", "shared_name" : "2400702", "lat" : 35.68123, "y" : -356812.3, "x" : 1396863.54 }, "position" : { "x" : 1396863.54, "y" : -356812.3 }, "selected" : false }, { "data" : { "id" : "5626", "station_name" : "新線新宿", "close_ymd" : "", "lon" : 139.698812, "post" : "-", "e_status" : 0, "SUID" : 5626, "station_g_cd" : 1130208, "add" : "東京都新宿区西新宿一丁目18", "line_cd" : 24007, "selected" : false, "open_ymd" : "", "name" : "2400701", "pref_name" : "東京都", "shared_name" : "2400701", "lat" : 35.68869, "y" : -356886.9, "x" : 1396988.12 }, "position" : { "x" : 1396988.12, "y" : -356886.9 }, "selected" : false }, { "data" : { "id" : "5625", "station_name" : "吉祥寺", "close_ymd" : "", "lon" : 139.580306, "post" : "", "e_status" : 0, "SUID" : 5625, "station_g_cd" : 1131104, "add" : "東京都武蔵野市吉祥寺南町", "line_cd" : 24006, "selected" : false, "open_ymd" : "", "name" : "2400617", "pref_name" : "東京都", "shared_name" : "2400617", "lat" : 35.702290999999995, "y" : -357022.91, "x" : 1395803.06 }, "position" : { "x" : 1395803.06, "y" : -357022.91 }, "selected" : false }, { "data" : { "id" : "5624", "station_name" : "井の頭公園", "close_ymd" : "", "lon" : 139.583112, "post" : "181-0001", "e_status" : 0, "SUID" : 5624, "station_g_cd" : 2400616, "add" : "三鷹市井の頭3-35-12", "line_cd" : 24006, "selected" : false, "open_ymd" : "", "name" : "2400616", "pref_name" : "東京都", "shared_name" : "2400616", "lat" : 35.697303999999995, "y" : -356973.04, "x" : 1395831.12 }, "position" : { "x" : 1395831.12, "y" : -356973.04 }, "selected" : false }, { "data" : { "id" : "5623", "station_name" : "三鷹台", "close_ymd" : "", "lon" : 139.58929799999999, "post" : "181-0001", "e_status" : 0, "SUID" : 5623, "station_g_cd" : 2400615, "add" : "三鷹市井の頭1-32-1", "line_cd" : 24006, "selected" : false, "open_ymd" : "", "name" : "2400615", "pref_name" : "東京都", "shared_name" : "2400615", "lat" : 35.692046000000005, "y" : -356920.46, "x" : 1395892.9799999997 }, "position" : { "x" : 1395892.9799999997, "y" : -356920.46 }, "selected" : false }, { "data" : { "id" : "5622", "station_name" : "久我山", "close_ymd" : "", "lon" : 139.599211, "post" : "168-0082", "e_status" : 0, "SUID" : 5622, "station_g_cd" : 2400614, "add" : "杉並区久我山4-1-11", "line_cd" : 24006, "selected" : false, "open_ymd" : "", "name" : "2400614", "pref_name" : "東京都", "shared_name" : "2400614", "lat" : 35.688138, "y" : -356881.38, "x" : 1395992.1099999999 }, "position" : { "x" : 1395992.1099999999, "y" : -356881.38 }, "selected" : false }, { "data" : { "id" : "5621", "station_name" : "富士見ヶ丘", "close_ymd" : "", "lon" : 139.607072, "post" : "", "e_status" : 0, "SUID" : 5621, "station_g_cd" : 2400613, "add" : "東京都杉並区久我山五丁目1番25号", "line_cd" : 24006, "selected" : false, "open_ymd" : "", "name" : "2400613", "pref_name" : "東京都", "shared_name" : "2400613", "lat" : 35.684805, "y" : -356848.05, "x" : 1396070.72 }, "position" : { "x" : 1396070.72, "y" : -356848.05 }, "selected" : false }, { "data" : { "id" : "5636", "station_name" : "下北沢", "close_ymd" : "", "lon" : 139.66751599999998, "post" : "155-0031", "e_status" : 0, "SUID" : 5636, "station_g_cd" : 2400605, "add" : "世田谷区北沢2丁目", "line_cd" : 25001, "selected" : false, "open_ymd" : "", "name" : "2500107", "pref_name" : "東京都", "shared_name" : "2500107", "lat" : 35.661654999999996, "y" : -356616.55, "x" : 1396675.1599999997 }, "position" : { "x" : 1396675.1599999997, "y" : -356616.55 }, "selected" : false }, { "data" : { "id" : "5635", "station_name" : "東北沢", "close_ymd" : "", "lon" : 139.673014, "post" : "155-0031", "e_status" : 0, "SUID" : 5635, "station_g_cd" : 2500106, "add" : "世田谷区北沢3丁目", "line_cd" : 25001, "selected" : false, "open_ymd" : "", "name" : "2500106", "pref_name" : "東京都", "shared_name" : "2500106", "lat" : 35.665378999999994, "y" : -356653.7899999999, "x" : 1396730.14 }, "position" : { "x" : 1396730.14, "y" : -356653.7899999999 }, "selected" : false }, { "data" : { "id" : "5634", "station_name" : "代々木上原", "close_ymd" : "", "lon" : 139.680153, "post" : "151-0066", "e_status" : 0, "SUID" : 5634, "station_g_cd" : 2500105, "add" : "渋谷区西原3丁目", "line_cd" : 25001, "selected" : false, "open_ymd" : "", "name" : "2500105", "pref_name" : "東京都", "shared_name" : "2500105", "lat" : 35.669159, "y" : -356691.59, "x" : 1396801.5299999998 }, "position" : { "x" : 1396801.5299999998, "y" : -356691.59 }, "selected" : false }, { "data" : { "id" : "5633", "station_name" : "代々木八幡", "close_ymd" : "", "lon" : 139.68891299999999, "post" : "151-0053", "e_status" : 0, "SUID" : 5633, "station_g_cd" : 2500104, "add" : "渋谷区代々木5丁目", "line_cd" : 25001, "selected" : false, "open_ymd" : "", "name" : "2500104", "pref_name" : "東京都", "shared_name" : "2500104", "lat" : 35.669715000000004, "y" : -356697.15, "x" : 1396889.13 }, "position" : { "x" : 1396889.13, "y" : -356697.15 }, "selected" : false }, { "data" : { "id" : "5632", "station_name" : "参宮橋", "close_ymd" : "", "lon" : 139.693568, "post" : "151-0053", "e_status" : 0, "SUID" : 5632, "station_g_cd" : 2500103, "add" : "渋谷区代々木4丁目", "line_cd" : 25001, "selected" : false, "open_ymd" : "", "name" : "2500103", "pref_name" : "東京都", "shared_name" : "2500103", "lat" : 35.678585999999996, "y" : -356785.86, "x" : 1396935.68 }, "position" : { "x" : 1396935.68, "y" : -356785.86 }, "selected" : false }, { "data" : { "id" : "5631", "station_name" : "南新宿", "close_ymd" : "", "lon" : 139.69867, "post" : "151-0053", "e_status" : 0, "SUID" : 5631, "station_g_cd" : 2500102, "add" : "渋谷区代々木2丁目", "line_cd" : 25001, "selected" : false, "open_ymd" : "", "name" : "2500102", "pref_name" : "東京都", "shared_name" : "2500102", "lat" : 35.683483, "y" : -356834.83, "x" : 1396986.7 }, "position" : { "x" : 1396986.7, "y" : -356834.83 }, "selected" : false }, { "data" : { "id" : "5630", "station_name" : "新宿", "close_ymd" : "", "lon" : 139.699574, "post" : "", "e_status" : 0, "SUID" : 5630, "station_g_cd" : 1130208, "add" : "東京都新宿区西新宿一丁目1-3", "line_cd" : 25001, "selected" : false, "open_ymd" : "", "name" : "2500101", "pref_name" : "東京都", "shared_name" : "2500101", "lat" : 35.691435, "y" : -356914.35, "x" : 1396995.7400000002 }, "position" : { "x" : 1396995.7400000002, "y" : -356914.35 }, "selected" : false }, { "data" : { "id" : "5629", "station_name" : "笹塚", "close_ymd" : "", "lon" : 139.667251, "post" : "151-0073", "e_status" : 0, "SUID" : 5629, "station_g_cd" : 2400104, "add" : "渋谷区笹塚1-56-7", "line_cd" : 24007, "selected" : false, "open_ymd" : "", "name" : "2400704", "pref_name" : "東京都", "shared_name" : "2400704", "lat" : 35.673758, "y" : -356737.58, "x" : 1396672.51 }, "position" : { "x" : 1396672.51, "y" : -356737.58 }, "selected" : false }, { "data" : { "id" : "5422", "station_name" : "都立家政", "close_ymd" : "", "lon" : 139.644839, "post" : "165-0032", "e_status" : 0, "SUID" : 5422, "station_g_cd" : 2200708, "add" : "中野区鷺宮1-16-1", "line_cd" : 22007, "selected" : false, "open_ymd" : "", "name" : "2200708", "pref_name" : "東京都", "shared_name" : "2200708", "lat" : 35.722313, "y" : -357223.13, "x" : 1396448.39 }, "position" : { "x" : 1396448.39, "y" : -357223.13 }, "selected" : false }, { "data" : { "id" : "5421", "station_name" : "野方", "close_ymd" : "", "lon" : 139.652733, "post" : "165-0027", "e_status" : 0, "SUID" : 5421, "station_g_cd" : 2200707, "add" : "中野区野方6-3-3", "line_cd" : 22007, "selected" : false, "open_ymd" : "", "name" : "2200707", "pref_name" : "東京都", "shared_name" : "2200707", "lat" : 35.719658, "y" : -357196.58, "x" : 1396527.33 }, "position" : { "x" : 1396527.33, "y" : -357196.58 }, "selected" : false }, { "data" : { "id" : "5424", "station_name" : "下井草", "close_ymd" : "", "lon" : 139.624688, "post" : "167-0022", "e_status" : 0, "SUID" : 5424, "station_g_cd" : 2200710, "add" : "杉並区下井草2-44-10", "line_cd" : 22007, "selected" : false, "open_ymd" : "", "name" : "2200710", "pref_name" : "東京都", "shared_name" : "2200710", "lat" : 35.723852, "y" : -357238.52, "x" : 1396246.88 }, "position" : { "x" : 1396246.88, "y" : -357238.52 }, "selected" : false }, { "data" : { "id" : "5423", "station_name" : "鷺ノ宮", "close_ymd" : "", "lon" : 139.63891999999998, "post" : "165-0032", "e_status" : 0, "SUID" : 5423, "station_g_cd" : 2200709, "add" : "中野区鷺宮3-15-1", "line_cd" : 22007, "selected" : false, "open_ymd" : "", "name" : "2200709", "pref_name" : "東京都", "shared_name" : "2200709", "lat" : 35.722605, "y" : -357226.05, "x" : 1396389.2 }, "position" : { "x" : 1396389.2, "y" : -357226.05 }, "selected" : false }, { "data" : { "id" : "5426", "station_name" : "上井草", "close_ymd" : "", "lon" : 139.602937, "post" : "167-0023", "e_status" : 0, "SUID" : 5426, "station_g_cd" : 2200712, "add" : "杉並区上井草3-32-1", "line_cd" : 22007, "selected" : false, "open_ymd" : "", "name" : "2200712", "pref_name" : "東京都", "shared_name" : "2200712", "lat" : 35.725326, "y" : -357253.26, "x" : 1396029.3699999999 }, "position" : { "x" : 1396029.3699999999, "y" : -357253.26 }, "selected" : false }, { "data" : { "id" : "5425", "station_name" : "井荻", "close_ymd" : "", "lon" : 139.615303, "post" : "167-0022", "e_status" : 0, "SUID" : 5425, "station_g_cd" : 2200711, "add" : "杉並区下井草5-23-15", "line_cd" : 22007, "selected" : false, "open_ymd" : "", "name" : "2200711", "pref_name" : "東京都", "shared_name" : "2200711", "lat" : 35.72469, "y" : -357246.9, "x" : 1396153.03 }, "position" : { "x" : 1396153.03, "y" : -357246.9 }, "selected" : false }, { "data" : { "id" : "5428", "station_name" : "武蔵関", "close_ymd" : "", "lon" : 139.576417, "post" : "177-0051", "e_status" : 0, "SUID" : 5428, "station_g_cd" : 2200714, "add" : "練馬区関町北2-29-1", "line_cd" : 22007, "selected" : false, "open_ymd" : "", "name" : "2200714", "pref_name" : "東京都", "shared_name" : "2200714", "lat" : 35.7276, "y" : -357276.0, "x" : 1395764.17 }, "position" : { "x" : 1395764.17, "y" : -357276.0 }, "selected" : false }, { "data" : { "id" : "5427", "station_name" : "上石神井", "close_ymd" : "", "lon" : 139.592266, "post" : "177-0044", "e_status" : 0, "SUID" : 5427, "station_g_cd" : 2200713, "add" : "練馬区上石神井1-2-45", "line_cd" : 22007, "selected" : false, "open_ymd" : "", "name" : "2200713", "pref_name" : "東京都", "shared_name" : "2200713", "lat" : 35.726189, "y" : -357261.88999999996, "x" : 1395922.66 }, "position" : { "x" : 1395922.66, "y" : -357261.88999999996 }, "selected" : false }, { "data" : { "id" : "5416", "station_name" : "高田馬場", "close_ymd" : "", "lon" : 139.703715, "post" : "169-0075", "e_status" : 0, "SUID" : 5416, "station_g_cd" : 1130210, "add" : "東京都新宿区高田馬場一丁目35-2", "line_cd" : 22007, "selected" : false, "open_ymd" : "", "name" : "2200702", "pref_name" : "東京都", "shared_name" : "2200702", "lat" : 35.712677, "y" : -357126.77, "x" : 1397037.15 }, "position" : { "x" : 1397037.15, "y" : -357126.77 }, "selected" : false }, { "data" : { "id" : "5415", "station_name" : "西武新宿", "close_ymd" : "", "lon" : 139.7, "post" : "160-0021", "e_status" : 0, "SUID" : 5415, "station_g_cd" : 2200701, "add" : "新宿区歌舞伎町1-30-1", "line_cd" : 22007, "selected" : false, "open_ymd" : "", "name" : "2200701", "pref_name" : "東京都", "shared_name" : "2200701", "lat" : 35.696253999999996, "y" : -356962.54, "x" : 1397000.0 }, "position" : { "x" : 1397000.0, "y" : -356962.54 }, "selected" : false }, { "data" : { "id" : "5418", "station_name" : "中井", "close_ymd" : "", "lon" : 139.68696699999998, "post" : "161-0032", "e_status" : 0, "SUID" : 5418, "station_g_cd" : 2200704, "add" : "新宿区中落合1-19-1", "line_cd" : 22007, "selected" : false, "open_ymd" : "", "name" : "2200704", "pref_name" : "東京都", "shared_name" : "2200704", "lat" : 35.715106, "y" : -357151.06, "x" : 1396869.67 }, "position" : { "x" : 1396869.67, "y" : -357151.06 }, "selected" : false }, { "data" : { "id" : "5417", "station_name" : "下落合", "close_ymd" : "", "lon" : 139.695391, "post" : "161-0033", "e_status" : 0, "SUID" : 5417, "station_g_cd" : 2200703, "add" : "新宿区下落合1-16-1", "line_cd" : 22007, "selected" : false, "open_ymd" : "", "name" : "2200703", "pref_name" : "東京都", "shared_name" : "2200703", "lat" : 35.715846, "y" : -357158.45999999996, "x" : 1396953.91 }, "position" : { "x" : 1396953.91, "y" : -357158.45999999996 }, "selected" : false }, { "data" : { "id" : "5420", "station_name" : "沼袋", "close_ymd" : "", "lon" : 139.663841, "post" : "165-0025", "e_status" : 0, "SUID" : 5420, "station_g_cd" : 2200706, "add" : "中野区沼袋1-35-1", "line_cd" : 22007, "selected" : false, "open_ymd" : "", "name" : "2200706", "pref_name" : "東京都", "shared_name" : "2200706", "lat" : 35.719458, "y" : -357194.58, "x" : 1396638.41 }, "position" : { "x" : 1396638.41, "y" : -357194.58 }, "selected" : false }, { "data" : { "id" : "5419", "station_name" : "新井薬師前", "close_ymd" : "", "lon" : 139.672582, "post" : "164-0002", "e_status" : 0, "SUID" : 5419, "station_g_cd" : 2200705, "add" : "中野区上高田5-43-20", "line_cd" : 22007, "selected" : false, "open_ymd" : "", "name" : "2200705", "pref_name" : "東京都", "shared_name" : "2200705", "lat" : 35.715778, "y" : -357157.78, "x" : 1396725.82 }, "position" : { "x" : 1396725.82, "y" : -357157.78 }, "selected" : false }, { "data" : { "id" : "5405", "station_name" : "新桜台", "close_ymd" : "", "lon" : 139.6683, "post" : "176-0002", "e_status" : 0, "SUID" : 5405, "station_g_cd" : 2200302, "add" : "練馬区桜台1-28-11", "line_cd" : 22003, "selected" : false, "open_ymd" : "", "name" : "2200302", "pref_name" : "東京都", "shared_name" : "2200302", "lat" : 35.74077, "y" : -357407.69999999995, "x" : 1396682.9999999998 }, "position" : { "x" : 1396682.9999999998, "y" : -357407.69999999995 }, "selected" : false }, { "data" : { "id" : "5406", "station_name" : "練馬", "close_ymd" : "", "lon" : 139.654368, "post" : "176-0001", "e_status" : 0, "SUID" : 5406, "station_g_cd" : 2200106, "add" : "練馬区練馬1-3-5", "line_cd" : 22003, "selected" : false, "open_ymd" : "", "name" : "2200303", "pref_name" : "東京都", "shared_name" : "2200303", "lat" : 35.737893, "y" : -357378.93, "x" : 1396543.6800000002 }, "position" : { "x" : 1396543.6800000002, "y" : -357378.93 }, "selected" : false }, { "data" : { "id" : "5407", "station_name" : "練馬", "close_ymd" : "", "lon" : 139.654368, "post" : "176-0001", "e_status" : 0, "SUID" : 5407, "station_g_cd" : 2200106, "add" : "練馬区練馬1-3-5", "line_cd" : 22004, "selected" : false, "open_ymd" : "", "name" : "2200401", "pref_name" : "東京都", "shared_name" : "2200401", "lat" : 35.737893, "y" : -357378.93, "x" : 1396543.6800000002 }, "position" : { "x" : 1396543.6800000002, "y" : -357378.93 }, "selected" : false }, { "data" : { "id" : "5408", "station_name" : "豊島園", "close_ymd" : "", "lon" : 139.647979, "post" : "176-0001", "e_status" : 0, "SUID" : 5408, "station_g_cd" : 2200402, "add" : "練馬区練馬4-16-5", "line_cd" : 22004, "selected" : false, "open_ymd" : "", "name" : "2200402", "pref_name" : "東京都", "shared_name" : "2200402", "lat" : 35.742053999999996, "y" : -357420.54, "x" : 1396479.79 }, "position" : { "x" : 1396479.79, "y" : -357420.54 }, "selected" : false }, { "data" : { "id" : "5412", "station_name" : "西武遊園地", "close_ymd" : "", "lon" : 139.442747, "post" : "189-0026", "e_status" : 0, "SUID" : 5412, "station_g_cd" : 2200601, "add" : "東村山市多摩湖町3-15-18", "line_cd" : 22006, "selected" : false, "open_ymd" : "", "name" : "2200601", "pref_name" : "東京都", "shared_name" : "2200601", "lat" : 35.765881, "y" : -357658.81, "x" : 1394427.47 }, "position" : { "x" : 1394427.47, "y" : -357658.81 }, "selected" : false }, { "data" : { "id" : "5404", "station_name" : "小竹向原", "close_ymd" : "", "lon" : 139.678572, "post" : "176-0004", "e_status" : 0, "SUID" : 5404, "station_g_cd" : 2200301, "add" : "東京都練馬区小竹町二丁目16-15", "line_cd" : 22003, "selected" : false, "open_ymd" : "", "name" : "2200301", "pref_name" : "東京都", "shared_name" : "2200301", "lat" : 35.743803, "y" : -357438.02999999997, "x" : 1396785.72 }, "position" : { "x" : 1396785.72, "y" : -357438.02999999997 }, "selected" : false }, { "data" : { "id" : "5456", "station_name" : "鷹の台", "close_ymd" : "", "lon" : 139.461155, "post" : "187-0024", "e_status" : 0, "SUID" : 5456, "station_g_cd" : 2201003, "add" : "小平市たかの台45-4", "line_cd" : 22010, "selected" : false, "open_ymd" : "", "name" : "2201003", "pref_name" : "東京都", "shared_name" : "2201003", "lat" : 35.723096999999996, "y" : -357230.97, "x" : 1394611.5499999998 }, "position" : { "x" : 1394611.5499999998, "y" : -357230.97 }, "selected" : false }, { "data" : { "id" : "5455", "station_name" : "恋ヶ窪", "close_ymd" : "", "lon" : 139.463944, "post" : "", "e_status" : 0, "SUID" : 5455, "station_g_cd" : 2201002, "add" : "東京都国分寺市戸倉一丁目1-4", "line_cd" : 22010, "selected" : false, "open_ymd" : "", "name" : "2201002", "pref_name" : "東京都", "shared_name" : "2201002", "lat" : 35.711385, "y" : -357113.85, "x" : 1394639.44 }, "position" : { "x" : 1394639.44, "y" : -357113.85 }, "selected" : false }, { "data" : { "id" : "5454", "station_name" : "国分寺", "close_ymd" : "", "lon" : 139.480841, "post" : "", "e_status" : 0, "SUID" : 5454, "station_g_cd" : 1131106, "add" : "東京都国分寺市本町二丁目1-23", "line_cd" : 22010, "selected" : false, "open_ymd" : "", "name" : "2201001", "pref_name" : "東京都", "shared_name" : "2201001", "lat" : 35.700123, "y" : -357001.23, "x" : 1394808.41 }, "position" : { "x" : 1394808.41, "y" : -357001.23 }, "selected" : false }, { "data" : { "id" : "5453", "station_name" : "西武園", "close_ymd" : "", "lon" : 139.448904, "post" : "189-0026", "e_status" : 0, "SUID" : 5453, "station_g_cd" : 2200902, "add" : "東村山市多摩湖町4-29-1", "line_cd" : 22009, "selected" : false, "open_ymd" : "", "name" : "2200902", "pref_name" : "東京都", "shared_name" : "2200902", "lat" : 35.767684, "y" : -357676.84, "x" : 1394489.04 }, "position" : { "x" : 1394489.04, "y" : -357676.84 }, "selected" : false }, { "data" : { "id" : "5460", "station_name" : "一橋学園", "close_ymd" : "", "lon" : 139.48003899999998, "post" : "187-0045", "e_status" : 0, "SUID" : 5460, "station_g_cd" : 2201102, "add" : "小平市学園西町2-1-1", "line_cd" : 22011, "selected" : false, "open_ymd" : "", "name" : "2201102", "pref_name" : "東京都", "shared_name" : "2201102", "lat" : 35.72217, "y" : -357221.7, "x" : 1394800.3899999997 }, "position" : { "x" : 1394800.3899999997, "y" : -357221.7 }, "selected" : false }, { "data" : { "id" : "5459", "station_name" : "国分寺", "close_ymd" : "", "lon" : 139.479547, "post" : "", "e_status" : 0, "SUID" : 5459, "station_g_cd" : 1131106, "add" : "東京都国分寺市本町二丁目1-23", "line_cd" : 22011, "selected" : false, "open_ymd" : "", "name" : "2201101", "pref_name" : "東京都", "shared_name" : "2201101", "lat" : 35.700835999999995, "y" : -357008.3599999999, "x" : 1394795.47 }, "position" : { "x" : 1394795.47, "y" : -357008.3599999999 }, "selected" : false }, { "data" : { "id" : "5458", "station_name" : "東村山", "close_ymd" : "", "lon" : 139.465839, "post" : "189-0014", "e_status" : 0, "SUID" : 5458, "station_g_cd" : 2200721, "add" : "東村山市本町2-3-32", "line_cd" : 22010, "selected" : false, "open_ymd" : "", "name" : "2201005", "pref_name" : "東京都", "shared_name" : "2201005", "lat" : 35.760059999999996, "y" : -357600.6, "x" : 1394658.39 }, "position" : { "x" : 1394658.39, "y" : -357600.6 }, "selected" : false }, { "data" : { "id" : "5457", "station_name" : "小川", "close_ymd" : "", "lon" : 139.463493, "post" : "187-0031", "e_status" : 0, "SUID" : 5457, "station_g_cd" : 2200803, "add" : "小平市小川東町1-20-1", "line_cd" : 22010, "selected" : false, "open_ymd" : "", "name" : "2201004", "pref_name" : "東京都", "shared_name" : "2201004", "lat" : 35.737573, "y" : -357375.73, "x" : 1394634.93 }, "position" : { "x" : 1394634.93, "y" : -357375.73 }, "selected" : false }, { "data" : { "id" : "5448", "station_name" : "玉川上水", "close_ymd" : "", "lon" : 139.41843500000002, "post" : "190-0002", "e_status" : 0, "SUID" : 5448, "station_g_cd" : 2200805, "add" : "立川市幸町6-36-1", "line_cd" : 22008, "selected" : false, "open_ymd" : "", "name" : "2200805", "pref_name" : "東京都", "shared_name" : "2200805", "lat" : 35.731751, "y" : -357317.51, "x" : 1394184.35 }, "position" : { "x" : 1394184.35, "y" : -357317.51 }, "selected" : false }, { "data" : { "id" : "5447", "station_name" : "東大和市", "close_ymd" : "", "lon" : 139.434249, "post" : "207-0022", "e_status" : 0, "SUID" : 5447, "station_g_cd" : 2200804, "add" : "東大和市桜が丘1-1415-1", "line_cd" : 22008, "selected" : false, "open_ymd" : "", "name" : "2200804", "pref_name" : "東京都", "shared_name" : "2200804", "lat" : 35.732828999999995, "y" : -357328.29, "x" : 1394342.49 }, "position" : { "x" : 1394342.49, "y" : -357328.29 }, "selected" : false }, { "data" : { "id" : "5446", "station_name" : "小川", "close_ymd" : "", "lon" : 139.463493, "post" : "187-0031", "e_status" : 0, "SUID" : 5446, "station_g_cd" : 2200803, "add" : "小平市小川東町1-20-1", "line_cd" : 22008, "selected" : false, "open_ymd" : "", "name" : "2200803", "pref_name" : "東京都", "shared_name" : "2200803", "lat" : 35.737573, "y" : -357375.73, "x" : 1394634.93 }, "position" : { "x" : 1394634.93, "y" : -357375.73 }, "selected" : false }, { "data" : { "id" : "5445", "station_name" : "萩山", "close_ymd" : "", "lon" : 139.476903, "post" : "189-0012", "e_status" : 0, "SUID" : 5445, "station_g_cd" : 2200802, "add" : "東村山市萩山町2-1-1", "line_cd" : 22008, "selected" : false, "open_ymd" : "", "name" : "2200802", "pref_name" : "東京都", "shared_name" : "2200802", "lat" : 35.740759000000004, "y" : -357407.59, "x" : 1394769.03 }, "position" : { "x" : 1394769.03, "y" : -357407.59 }, "selected" : false }, { "data" : { "id" : "5452", "station_name" : "東村山", "close_ymd" : "", "lon" : 139.465839, "post" : "189-0014", "e_status" : 0, "SUID" : 5452, "station_g_cd" : 2200721, "add" : "東村山市本町2-3-32", "line_cd" : 22009, "selected" : false, "open_ymd" : "", "name" : "2200901", "pref_name" : "東京都", "shared_name" : "2200901", "lat" : 35.760059999999996, "y" : -357600.6, "x" : 1394658.39 }, "position" : { "x" : 1394658.39, "y" : -357600.6 }, "selected" : false }, { "data" : { "id" : "5451", "station_name" : "拝島", "close_ymd" : "", "lon" : 139.343468, "post" : "196-0003", "e_status" : 0, "SUID" : 5451, "station_g_cd" : 1131506, "add" : "昭島市松原町4丁目", "line_cd" : 22008, "selected" : false, "open_ymd" : "", "name" : "2200808", "pref_name" : "東京都", "shared_name" : "2200808", "lat" : 35.721278000000005, "y" : -357212.78, "x" : 1393434.68 }, "position" : { "x" : 1393434.68, "y" : -357212.78 }, "selected" : false }, { "data" : { "id" : "5450", "station_name" : "西武立川", "close_ymd" : "", "lon" : 139.370124, "post" : "190-0034", "e_status" : 0, "SUID" : 5450, "station_g_cd" : 2200807, "add" : "立川市西砂町1-21-2", "line_cd" : 22008, "selected" : false, "open_ymd" : "", "name" : "2200807", "pref_name" : "東京都", "shared_name" : "2200807", "lat" : 35.7262, "y" : -357262.0, "x" : 1393701.24 }, "position" : { "x" : 1393701.24, "y" : -357262.0 }, "selected" : false }, { "data" : { "id" : "5449", "station_name" : "武蔵砂川", "close_ymd" : "", "lon" : 139.392319, "post" : "190-0032", "e_status" : 0, "SUID" : 5449, "station_g_cd" : 2200806, "add" : "立川市上砂町5-44-4", "line_cd" : 22008, "selected" : false, "open_ymd" : "", "name" : "2200806", "pref_name" : "東京都", "shared_name" : "2200806", "lat" : 35.728876, "y" : -357288.76, "x" : 1393923.19 }, "position" : { "x" : 1393923.19, "y" : -357288.76 }, "selected" : false }, { "data" : { "id" : "5444", "station_name" : "小平", "close_ymd" : "", "lon" : 139.48849099999998, "post" : "187-0041", "e_status" : 0, "SUID" : 5444, "station_g_cd" : 2200719, "add" : "小平市美園町1-34-1", "line_cd" : 22008, "selected" : false, "open_ymd" : "", "name" : "2200801", "pref_name" : "東京都", "shared_name" : "2200801", "lat" : 35.736963, "y" : -357369.63, "x" : 1394884.91 }, "position" : { "x" : 1394884.91, "y" : -357369.63 }, "selected" : false }, { "data" : { "id" : "5431", "station_name" : "田無", "close_ymd" : "", "lon" : 139.53925900000002, "post" : "188-0011", "e_status" : 0, "SUID" : 5431, "station_g_cd" : 2200717, "add" : "西東京市田無町4-1-1", "line_cd" : 22007, "selected" : false, "open_ymd" : "", "name" : "2200717", "pref_name" : "東京都", "shared_name" : "2200717", "lat" : 35.727307, "y" : -357273.07, "x" : 1395392.59 }, "position" : { "x" : 1395392.59, "y" : -357273.07 }, "selected" : false }, { "data" : { "id" : "5432", "station_name" : "花小金井", "close_ymd" : "", "lon" : 139.513228, "post" : "187-0002", "e_status" : 0, "SUID" : 5432, "station_g_cd" : 2200718, "add" : "小平市花小金井1-10-5", "line_cd" : 22007, "selected" : false, "open_ymd" : "", "name" : "2200718", "pref_name" : "東京都", "shared_name" : "2200718", "lat" : 35.726129, "y" : -357261.29, "x" : 1395132.28 }, "position" : { "x" : 1395132.28, "y" : -357261.29 }, "selected" : false }, { "data" : { "id" : "5429", "station_name" : "東伏見", "close_ymd" : "", "lon" : 139.56352900000002, "post" : "202-0021", "e_status" : 0, "SUID" : 5429, "station_g_cd" : 2200715, "add" : "西東京市東伏見2-5-1", "line_cd" : 22007, "selected" : false, "open_ymd" : "", "name" : "2200715", "pref_name" : "東京都", "shared_name" : "2200715", "lat" : 35.728761, "y" : -357287.61, "x" : 1395635.2900000003 }, "position" : { "x" : 1395635.2900000003, "y" : -357287.61 }, "selected" : false }, { "data" : { "id" : "5430", "station_name" : "西武柳沢", "close_ymd" : "", "lon" : 139.552477, "post" : "202-0015", "e_status" : 0, "SUID" : 5430, "station_g_cd" : 2200716, "add" : "西東京市保谷町3-11-24", "line_cd" : 22007, "selected" : false, "open_ymd" : "", "name" : "2200716", "pref_name" : "東京都", "shared_name" : "2200716", "lat" : 35.728621000000004, "y" : -357286.21, "x" : 1395524.77 }, "position" : { "x" : 1395524.77, "y" : -357286.21 }, "selected" : false }, { "data" : { "id" : "5435", "station_name" : "東村山", "close_ymd" : "", "lon" : 139.465839, "post" : "189-0014", "e_status" : 0, "SUID" : 5435, "station_g_cd" : 2200721, "add" : "東村山市本町2-3-32", "line_cd" : 22007, "selected" : false, "open_ymd" : "", "name" : "2200721", "pref_name" : "東京都", "shared_name" : "2200721", "lat" : 35.760059999999996, "y" : -357600.6, "x" : 1394658.39 }, "position" : { "x" : 1394658.39, "y" : -357600.6 }, "selected" : false }, { "data" : { "id" : "5433", "station_name" : "小平", "close_ymd" : "", "lon" : 139.48849099999998, "post" : "187-0041", "e_status" : 0, "SUID" : 5433, "station_g_cd" : 2200719, "add" : "小平市美園町1-34-1", "line_cd" : 22007, "selected" : false, "open_ymd" : "", "name" : "2200719", "pref_name" : "東京都", "shared_name" : "2200719", "lat" : 35.736963, "y" : -357369.63, "x" : 1394884.91 }, "position" : { "x" : 1394884.91, "y" : -357369.63 }, "selected" : false }, { "data" : { "id" : "5434", "station_name" : "久米川", "close_ymd" : "", "lon" : 139.472653, "post" : "189-0013", "e_status" : 0, "SUID" : 5434, "station_g_cd" : 2200720, "add" : "東村山市栄町2-3-1", "line_cd" : 22007, "selected" : false, "open_ymd" : "", "name" : "2200720", "pref_name" : "東京都", "shared_name" : "2200720", "lat" : 35.749575, "y" : -357495.75, "x" : 1394726.53 }, "position" : { "x" : 1394726.53, "y" : -357495.75 }, "selected" : false }, { "data" : { "id" : "5482", "station_name" : "京成小岩", "close_ymd" : "", "lon" : 139.88371, "post" : "133-0051", "e_status" : 0, "SUID" : 5482, "station_g_cd" : 2300111, "add" : "江戸川区北小岩2-10-9", "line_cd" : 23001, "selected" : false, "open_ymd" : "", "name" : "2300111", "pref_name" : "東京都", "shared_name" : "2300111", "lat" : 35.742158, "y" : -357421.58, "x" : 1398837.1 }, "position" : { "x" : 1398837.1, "y" : -357421.58 }, "selected" : false }, { "data" : { "id" : "5481", "station_name" : "京成高砂", "close_ymd" : "", "lon" : 139.866875, "post" : "", "e_status" : 0, "SUID" : 5481, "station_g_cd" : 2300110, "add" : "東京都葛飾区高砂五丁目28-1", "line_cd" : 23001, "selected" : false, "open_ymd" : "", "name" : "2300110", "pref_name" : "東京都", "shared_name" : "2300110", "lat" : 35.750932, "y" : -357509.32, "x" : 1398668.75 }, "position" : { "x" : 1398668.75, "y" : -357509.32 }, "selected" : false }, { "data" : { "id" : "5483", "station_name" : "江戸川", "close_ymd" : "", "lon" : 139.896226, "post" : "133-0051", "e_status" : 0, "SUID" : 5483, "station_g_cd" : 2300112, "add" : "江戸川区北小岩3-24-15", "line_cd" : 23001, "selected" : false, "open_ymd" : "", "name" : "2300112", "pref_name" : "東京都", "shared_name" : "2300112", "lat" : 35.737722999999995, "y" : -357377.23, "x" : 1398962.2600000002 }, "position" : { "x" : 1398962.2600000002, "y" : -357377.23 }, "selected" : false }, { "data" : { "id" : "5478", "station_name" : "堀切菖蒲園", "close_ymd" : "", "lon" : 139.827545, "post" : "124-0006", "e_status" : 0, "SUID" : 5478, "station_g_cd" : 2300107, "add" : "葛飾区堀切5-1-1", "line_cd" : 23001, "selected" : false, "open_ymd" : "", "name" : "2300107", "pref_name" : "東京都", "shared_name" : "2300107", "lat" : 35.747648999999996, "y" : -357476.48999999993, "x" : 1398275.45 }, "position" : { "x" : 1398275.45, "y" : -357476.48999999993 }, "selected" : false }, { "data" : { "id" : "5477", "station_name" : "京成関屋", "close_ymd" : "", "lon" : 139.81183000000001, "post" : "120-0023", "e_status" : 0, "SUID" : 5477, "station_g_cd" : 2100208, "add" : "足立区千住曙町2-2", "line_cd" : 23001, "selected" : false, "open_ymd" : "", "name" : "2300106", "pref_name" : "東京都", "shared_name" : "2300106", "lat" : 35.744008, "y" : -357440.08, "x" : 1398118.3 }, "position" : { "x" : 1398118.3, "y" : -357440.08 }, "selected" : false }, { "data" : { "id" : "5480", "station_name" : "青砥", "close_ymd" : "", "lon" : 139.856292, "post" : "", "e_status" : 0, "SUID" : 5480, "station_g_cd" : 2300109, "add" : "東京都葛飾区青戸三丁目36番1号", "line_cd" : 23001, "selected" : false, "open_ymd" : "", "name" : "2300109", "pref_name" : "東京都", "shared_name" : "2300109", "lat" : 35.745883, "y" : -357458.83, "x" : 1398562.92 }, "position" : { "x" : 1398562.92, "y" : -357458.83 }, "selected" : false }, { "data" : { "id" : "5479", "station_name" : "お花茶屋", "close_ymd" : "", "lon" : 139.83988, "post" : "124-0005", "e_status" : 0, "SUID" : 5479, "station_g_cd" : 2300108, "add" : "葛飾区宝町2-37-1", "line_cd" : 23001, "selected" : false, "open_ymd" : "", "name" : "2300108", "pref_name" : "東京都", "shared_name" : "2300108", "lat" : 35.747585, "y" : -357475.85000000003, "x" : 1398398.8 }, "position" : { "x" : 1398398.8, "y" : -357475.85000000003 }, "selected" : false }, { "data" : { "id" : "5473", "station_name" : "日暮里", "close_ymd" : "", "lon" : 139.771287, "post" : "", "e_status" : 0, "SUID" : 5473, "station_g_cd" : 1130218, "add" : "東京都荒川区西日暮里二丁目", "line_cd" : 23001, "selected" : false, "open_ymd" : "", "name" : "2300102", "pref_name" : "東京都", "shared_name" : "2300102", "lat" : 35.727908, "y" : -357279.08, "x" : 1397712.87 }, "position" : { "x" : 1397712.87, "y" : -357279.08 }, "selected" : false }, { "data" : { "id" : "5474", "station_name" : "新三河島", "close_ymd" : "", "lon" : 139.77383400000002, "post" : "116-0013", "e_status" : 0, "SUID" : 5474, "station_g_cd" : 2300103, "add" : "荒川区西日暮里6-2-1", "line_cd" : 23001, "selected" : false, "open_ymd" : "", "name" : "2300103", "pref_name" : "東京都", "shared_name" : "2300103", "lat" : 35.737140000000004, "y" : -357371.4, "x" : 1397738.3400000003 }, "position" : { "x" : 1397738.3400000003, "y" : -357371.4 }, "selected" : false }, { "data" : { "id" : "5475", "station_name" : "町屋", "close_ymd" : "", "lon" : 139.781499, "post" : "116-0001", "e_status" : 0, "SUID" : 5475, "station_g_cd" : 2300104, "add" : "荒川区町屋1丁目", "line_cd" : 23001, "selected" : false, "open_ymd" : "", "name" : "2300104", "pref_name" : "東京都", "shared_name" : "2300104", "lat" : 35.742354, "y" : -357423.54, "x" : 1397814.99 }, "position" : { "x" : 1397814.99, "y" : -357423.54 }, "selected" : false }, { "data" : { "id" : "5476", "station_name" : "千住大橋", "close_ymd" : "", "lon" : 139.79693400000002, "post" : "120-0038", "e_status" : 0, "SUID" : 5476, "station_g_cd" : 2300105, "add" : "足立区千住橋戸町11-1", "line_cd" : 23001, "selected" : false, "open_ymd" : "", "name" : "2300105", "pref_name" : "東京都", "shared_name" : "2300105", "lat" : 35.74243, "y" : -357424.3, "x" : 1397969.3400000003 }, "position" : { "x" : 1397969.3400000003, "y" : -357424.3 }, "selected" : false }, { "data" : { "id" : "5469", "station_name" : "白糸台", "close_ymd" : "", "lon" : 139.509862, "post" : "183-0011", "e_status" : 0, "SUID" : 5469, "station_g_cd" : 2201204, "add" : "府中市白糸台2-71-6", "line_cd" : 22012, "selected" : false, "open_ymd" : "", "name" : "2201204", "pref_name" : "東京都", "shared_name" : "2201204", "lat" : 35.666517, "y" : -356665.17, "x" : 1395098.6199999999 }, "position" : { "x" : 1395098.6199999999, "y" : -356665.17 }, "selected" : false }, { "data" : { "id" : "5470", "station_name" : "競艇場前", "close_ymd" : "", "lon" : 139.499721, "post" : "183-0013", "e_status" : 0, "SUID" : 5470, "station_g_cd" : 2201205, "add" : "府中市小柳町4-10-11", "line_cd" : 22012, "selected" : false, "open_ymd" : "", "name" : "2201205", "pref_name" : "東京都", "shared_name" : "2201205", "lat" : 35.656232, "y" : -356562.32, "x" : 1394997.21 }, "position" : { "x" : 1394997.21, "y" : -356562.32 }, "selected" : false }, { "data" : { "id" : "5471", "station_name" : "是政", "close_ymd" : "", "lon" : 139.48859199999998, "post" : "183-0014", "e_status" : 0, "SUID" : 5471, "station_g_cd" : 2201206, "add" : "府中市是政5-8-2", "line_cd" : 22012, "selected" : false, "open_ymd" : "", "name" : "2201206", "pref_name" : "東京都", "shared_name" : "2201206", "lat" : 35.656242, "y" : -356562.42, "x" : 1394885.92 }, "position" : { "x" : 1394885.92, "y" : -356562.42 }, "selected" : false }, { "data" : { "id" : "5472", "station_name" : "京成上野", "close_ymd" : "", "lon" : 139.773571, "post" : "", "e_status" : 0, "SUID" : 5472, "station_g_cd" : 2300101, "add" : "東京都台東区上野公園1-60", "line_cd" : 23001, "selected" : false, "open_ymd" : "", "name" : "2300101", "pref_name" : "東京都", "shared_name" : "2300101", "lat" : 35.711232, "y" : -357112.32, "x" : 1397735.71 }, "position" : { "x" : 1397735.71, "y" : -357112.32 }, "selected" : false }, { "data" : { "id" : "5465", "station_name" : "西武遊園地", "close_ymd" : "", "lon" : 139.442747, "post" : "189-0026", "e_status" : 0, "SUID" : 5465, "station_g_cd" : 2200601, "add" : "東村山市多摩湖町3-15-18", "line_cd" : 22011, "selected" : false, "open_ymd" : "", "name" : "2201108", "pref_name" : "東京都", "shared_name" : "2201108", "lat" : 35.765881, "y" : -357658.81, "x" : 1394427.47 }, "position" : { "x" : 1394427.47, "y" : -357658.81 }, "selected" : false }, { "data" : { "id" : "5466", "station_name" : "武蔵境", "close_ymd" : "", "lon" : 139.54340200000001, "post" : "180-0022", "e_status" : 0, "SUID" : 5466, "station_g_cd" : 1131221, "add" : "武蔵野市境1丁目", "line_cd" : 22012, "selected" : false, "open_ymd" : "", "name" : "2201201", "pref_name" : "東京都", "shared_name" : "2201201", "lat" : 35.702083, "y" : -357020.83, "x" : 1395434.0200000003 }, "position" : { "x" : 1395434.0200000003, "y" : -357020.83 }, "selected" : false }, { "data" : { "id" : "5467", "station_name" : "新小金井", "close_ymd" : "", "lon" : 139.526603, "post" : "184-0011", "e_status" : 0, "SUID" : 5467, "station_g_cd" : 2201202, "add" : "小金井市東町4-24-1", "line_cd" : 22012, "selected" : false, "open_ymd" : "", "name" : "2201202", "pref_name" : "東京都", "shared_name" : "2201202", "lat" : 35.695908, "y" : -356959.08, "x" : 1395266.03 }, "position" : { "x" : 1395266.03, "y" : -356959.08 }, "selected" : false }, { "data" : { "id" : "5468", "station_name" : "多磨", "close_ymd" : "", "lon" : 139.51713, "post" : "183-0004", "e_status" : 0, "SUID" : 5468, "station_g_cd" : 2201203, "add" : "府中市紅葉丘3-42-2", "line_cd" : 22012, "selected" : false, "open_ymd" : "", "name" : "2201203", "pref_name" : "東京都", "shared_name" : "2201203", "lat" : 35.676821000000004, "y" : -356768.21, "x" : 1395171.3 }, "position" : { "x" : 1395171.3, "y" : -356768.21 }, "selected" : false }, { "data" : { "id" : "5461", "station_name" : "青梅街道", "close_ymd" : "", "lon" : 139.476628, "post" : "187-0032", "e_status" : 0, "SUID" : 5461, "station_g_cd" : 2201103, "add" : "小平市小川町2-1846", "line_cd" : 22011, "selected" : false, "open_ymd" : "", "name" : "2201103", "pref_name" : "東京都", "shared_name" : "2201103", "lat" : 35.730979999999995, "y" : -357309.79999999993, "x" : 1394766.28 }, "position" : { "x" : 1394766.28, "y" : -357309.79999999993 }, "selected" : false }, { "data" : { "id" : "5462", "station_name" : "萩山", "close_ymd" : "", "lon" : 139.476903, "post" : "189-0012", "e_status" : 0, "SUID" : 5462, "station_g_cd" : 2200802, "add" : "東村山市萩山町2-1-1", "line_cd" : 22011, "selected" : false, "open_ymd" : "", "name" : "2201105", "pref_name" : "東京都", "shared_name" : "2201105", "lat" : 35.740759000000004, "y" : -357407.59, "x" : 1394769.03 }, "position" : { "x" : 1394769.03, "y" : -357407.59 }, "selected" : false }, { "data" : { "id" : "5463", "station_name" : "八坂", "close_ymd" : "", "lon" : 139.467676, "post" : "189-0013", "e_status" : 0, "SUID" : 5463, "station_g_cd" : 2201106, "add" : "東村山市栄町3-18-1", "line_cd" : 22011, "selected" : false, "open_ymd" : "", "name" : "2201106", "pref_name" : "東京都", "shared_name" : "2201106", "lat" : 35.744925, "y" : -357449.25, "x" : 1394676.76 }, "position" : { "x" : 1394676.76, "y" : -357449.25 }, "selected" : false }, { "data" : { "id" : "5464", "station_name" : "武蔵大和", "close_ymd" : "", "lon" : 139.444008, "post" : "189-0025", "e_status" : 0, "SUID" : 5464, "station_g_cd" : 2201107, "add" : "東村山市廻田町3-9-19", "line_cd" : 22011, "selected" : false, "open_ymd" : "", "name" : "2201107", "pref_name" : "東京都", "shared_name" : "2201107", "lat" : 35.756427, "y" : -357564.27, "x" : 1394440.08 }, "position" : { "x" : 1394440.08, "y" : -357564.27 }, "selected" : false }, { "data" : { "id" : "5524", "station_name" : "京成金町", "close_ymd" : "", "lon" : 139.87038700000002, "post" : "125-0042", "e_status" : 0, "SUID" : 5524, "station_g_cd" : 1132008, "add" : "葛飾区金町5-37-9", "line_cd" : 23003, "selected" : false, "open_ymd" : "", "name" : "2300303", "pref_name" : "東京都", "shared_name" : "2300303", "lat" : 35.768471000000005, "y" : -357684.7100000001, "x" : 1398703.87 }, "position" : { "x" : 1398703.87, "y" : -357684.7100000001 }, "selected" : false }, { "data" : { "id" : "5523", "station_name" : "柴又", "close_ymd" : "", "lon" : 139.87518799999998, "post" : "125-0052", "e_status" : 0, "SUID" : 5523, "station_g_cd" : 2300302, "add" : "葛飾区柴又4-8-14", "line_cd" : 23003, "selected" : false, "open_ymd" : "", "name" : "2300302", "pref_name" : "東京都", "shared_name" : "2300302", "lat" : 35.756322999999995, "y" : -357563.2299999999, "x" : 1398751.88 }, "position" : { "x" : 1398751.88, "y" : -357563.2299999999 }, "selected" : false }, { "data" : { "id" : "5522", "station_name" : "京成高砂", "close_ymd" : "", "lon" : 139.866875, "post" : "", "e_status" : 0, "SUID" : 5522, "station_g_cd" : 2300110, "add" : "東京都葛飾区高砂五丁目28-1", "line_cd" : 23003, "selected" : false, "open_ymd" : "", "name" : "2300301", "pref_name" : "東京都", "shared_name" : "2300301", "lat" : 35.750932, "y" : -357509.32, "x" : 1398668.75 }, "position" : { "x" : 1398668.75, "y" : -357509.32 }, "selected" : false }, { "data" : { "id" : "5521", "station_name" : "京成高砂", "close_ymd" : "", "lon" : 139.866875, "post" : "", "e_status" : 0, "SUID" : 5521, "station_g_cd" : 2300110, "add" : "東京都葛飾区高砂五丁目28-1", "line_cd" : 23002, "selected" : false, "open_ymd" : "", "name" : "2300207", "pref_name" : "東京都", "shared_name" : "2300207", "lat" : 35.750932, "y" : -357509.32, "x" : 1398668.75 }, "position" : { "x" : 1398668.75, "y" : -357509.32 }, "selected" : false }, { "data" : { "id" : "5520", "station_name" : "青砥", "close_ymd" : "", "lon" : 139.856292, "post" : "", "e_status" : 0, "SUID" : 5520, "station_g_cd" : 2300109, "add" : "東京都葛飾区青戸三丁目36番1号", "line_cd" : 23002, "selected" : false, "open_ymd" : "", "name" : "2300206", "pref_name" : "東京都", "shared_name" : "2300206", "lat" : 35.745883, "y" : -357458.83, "x" : 1398562.92 }, "position" : { "x" : 1398562.92, "y" : -357458.83 }, "selected" : false }, { "data" : { "id" : "5519", "station_name" : "京成立石", "close_ymd" : "", "lon" : 139.848558, "post" : "124-0012", "e_status" : 0, "SUID" : 5519, "station_g_cd" : 2300205, "add" : "葛飾区立石4-24-1", "line_cd" : 23002, "selected" : false, "open_ymd" : "", "name" : "2300205", "pref_name" : "東京都", "shared_name" : "2300205", "lat" : 35.738281, "y" : -357382.81, "x" : 1398485.58 }, "position" : { "x" : 1398485.58, "y" : -357382.81 }, "selected" : false }, { "data" : { "id" : "5518", "station_name" : "四ツ木", "close_ymd" : "", "lon" : 139.834918, "post" : "124-0011", "e_status" : 0, "SUID" : 5518, "station_g_cd" : 2300204, "add" : "葛飾区四つ木1-1-1", "line_cd" : 23002, "selected" : false, "open_ymd" : "", "name" : "2300204", "pref_name" : "東京都", "shared_name" : "2300204", "lat" : 35.731962, "y" : -357319.62000000005, "x" : 1398349.18 }, "position" : { "x" : 1398349.18, "y" : -357319.62000000005 }, "selected" : false }, { "data" : { "id" : "5517", "station_name" : "八広", "close_ymd" : "", "lon" : 139.828738, "post" : "131-0041", "e_status" : 0, "SUID" : 5517, "station_g_cd" : 2300203, "add" : "墨田区八広6-25-20", "line_cd" : 23002, "selected" : false, "open_ymd" : "", "name" : "2300203", "pref_name" : "東京都", "shared_name" : "2300203", "lat" : 35.727687, "y" : -357276.87000000005, "x" : 1398287.38 }, "position" : { "x" : 1398287.38, "y" : -357276.87000000005 }, "selected" : false }, { "data" : { "id" : "5516", "station_name" : "京成曳舟", "close_ymd" : "", "lon" : 139.82001200000002, "post" : "131-0046", "e_status" : 0, "SUID" : 5516, "station_g_cd" : 2300202, "add" : "墨田区京島1-39-1", "line_cd" : 23002, "selected" : false, "open_ymd" : "", "name" : "2300202", "pref_name" : "東京都", "shared_name" : "2300202", "lat" : 35.718441, "y" : -357184.41, "x" : 1398200.12 }, "position" : { "x" : 1398200.12, "y" : -357184.41 }, "selected" : false }, { "data" : { "id" : "5515", "station_name" : "押上(スカイツリー前)", "close_ymd" : "", "lon" : 139.812935, "post" : "131-0045", "e_status" : 0, "SUID" : 5515, "station_g_cd" : 2100203, "add" : "墨田区押上一丁目", "line_cd" : 23002, "selected" : false, "open_ymd" : "", "name" : "2300201", "pref_name" : "東京都", "shared_name" : "2300201", "lat" : 35.710702000000005, "y" : -357107.0200000001, "x" : 1398129.35 }, "position" : { "x" : 1398129.35, "y" : -357107.0200000001 }, "selected" : false }, { "data" : { "id" : "2702", "station_name" : "品川", "close_ymd" : "", "lon" : 139.738999, "post" : "108-0074", "e_status" : 0, "SUID" : 2702, "station_g_cd" : 1130103, "add" : "東京都港区高輪三丁目26-26", "line_cd" : 11302, "selected" : false, "open_ymd" : "1872-06-12", "name" : "1130229", "pref_name" : "東京都", "shared_name" : "1130229", "lat" : 35.62876, "y" : -356287.6, "x" : 1397389.99 }, "position" : { "x" : 1397389.99, "y" : -356287.6 }, "selected" : false }, { "data" : { "id" : "2701", "station_name" : "田町", "close_ymd" : "", "lon" : 139.747575, "post" : "108-0014", "e_status" : 0, "SUID" : 2701, "station_g_cd" : 1130228, "add" : "東京都港区芝五丁目33-36", "line_cd" : 11302, "selected" : false, "open_ymd" : "1906-12-16", "name" : "1130228", "pref_name" : "東京都", "shared_name" : "1130228", "lat" : 35.645736, "y" : -356457.36, "x" : 1397475.7500000002 }, "position" : { "x" : 1397475.7500000002, "y" : -356457.36 }, "selected" : false }, { "data" : { "id" : "2694", "station_name" : "御徒町", "close_ymd" : "", "lon" : 139.774727, "post" : "110-0005", "e_status" : 0, "SUID" : 2694, "station_g_cd" : 1130221, "add" : "東京都台東区上野五丁目27", "line_cd" : 11302, "selected" : false, "open_ymd" : "1925-11-01", "name" : "1130221", "pref_name" : "東京都", "shared_name" : "1130221", "lat" : 35.707282, "y" : -357072.82, "x" : 1397747.27 }, "position" : { "x" : 1397747.27, "y" : -357072.82 }, "selected" : false }, { "data" : { "id" : "2693", "station_name" : "上野", "close_ymd" : "", "lon" : 139.777043, "post" : "110-0005", "e_status" : 0, "SUID" : 2693, "station_g_cd" : 1130220, "add" : "東京都台東区上野七丁目1-1", "line_cd" : 11302, "selected" : false, "open_ymd" : "1883-07-28", "name" : "1130220", "pref_name" : "東京都", "shared_name" : "1130220", "lat" : 35.71379, "y" : -357137.9, "x" : 1397770.43 }, "position" : { "x" : 1397770.43, "y" : -357137.9 }, "selected" : false }, { "data" : { "id" : "2696", "station_name" : "神田", "close_ymd" : "", "lon" : 139.77064099999998, "post" : "101-0044", "e_status" : 0, "SUID" : 2696, "station_g_cd" : 1130223, "add" : "東京都千代田区鍛冶町二丁目13-1", "line_cd" : 11302, "selected" : false, "open_ymd" : "1919-03-01", "name" : "1130223", "pref_name" : "東京都", "shared_name" : "1130223", "lat" : 35.691173, "y" : -356911.73, "x" : 1397706.41 }, "position" : { "x" : 1397706.41, "y" : -356911.73 }, "selected" : false }, { "data" : { "id" : "2695", "station_name" : "秋葉原", "close_ymd" : "", "lon" : 139.77328799999998, "post" : "101-0021", "e_status" : 0, "SUID" : 2695, "station_g_cd" : 1130222, "add" : "東京都千代田区外神田一丁目17", "line_cd" : 11302, "selected" : false, "open_ymd" : "1890-11-01", "name" : "1130222", "pref_name" : "東京都", "shared_name" : "1130222", "lat" : 35.698619, "y" : -356986.19, "x" : 1397732.88 }, "position" : { "x" : 1397732.88, "y" : -356986.19 }, "selected" : false }, { "data" : { "id" : "2698", "station_name" : "有楽町", "close_ymd" : "", "lon" : 139.76380600000002, "post" : "100-0006", "e_status" : 0, "SUID" : 2698, "station_g_cd" : 1130225, "add" : "東京都千代田区有楽町二丁目9", "line_cd" : 11302, "selected" : false, "open_ymd" : "1910-06-25", "name" : "1130225", "pref_name" : "東京都", "shared_name" : "1130225", "lat" : 35.675441, "y" : -356754.41, "x" : 1397638.06 }, "position" : { "x" : 1397638.06, "y" : -356754.41 }, "selected" : false }, { "data" : { "id" : "2697", "station_name" : "東京", "close_ymd" : "", "lon" : 139.76610300000002, "post" : "100-0005", "e_status" : 0, "SUID" : 2697, "station_g_cd" : 1130101, "add" : "東京都千代田区丸の内一丁目9-1", "line_cd" : 11302, "selected" : false, "open_ymd" : "1914-12-20", "name" : "1130224", "pref_name" : "東京都", "shared_name" : "1130224", "lat" : 35.681391, "y" : -356813.91, "x" : 1397661.0300000003 }, "position" : { "x" : 1397661.0300000003, "y" : -356813.91 }, "selected" : false }, { "data" : { "id" : "2700", "station_name" : "浜松町", "close_ymd" : "", "lon" : 139.757135, "post" : "105-0022", "e_status" : 0, "SUID" : 2700, "station_g_cd" : 1130227, "add" : "東京都港区海岸一丁目3-1", "line_cd" : 11302, "selected" : false, "open_ymd" : "1909-12-16", "name" : "1130227", "pref_name" : "東京都", "shared_name" : "1130227", "lat" : 35.655390999999995, "y" : -356553.9099999999, "x" : 1397571.35 }, "position" : { "x" : 1397571.35, "y" : -356553.9099999999 }, "selected" : false }, { "data" : { "id" : "2699", "station_name" : "新橋", "close_ymd" : "", "lon" : 139.758587, "post" : "105-0004", "e_status" : 0, "SUID" : 2699, "station_g_cd" : 1130102, "add" : "東京都港区新橋二丁目17", "line_cd" : 11302, "selected" : false, "open_ymd" : "1909-12-16", "name" : "1130226", "pref_name" : "東京都", "shared_name" : "1130226", "lat" : 35.666195, "y" : -356661.95, "x" : 1397585.87 }, "position" : { "x" : 1397585.87, "y" : -356661.95 }, "selected" : false }, { "data" : { "id" : "2685", "station_name" : "池袋", "close_ymd" : "", "lon" : 139.71108600000002, "post" : "171-0022", "e_status" : 0, "SUID" : 2685, "station_g_cd" : 1130212, "add" : "東京都豊島区南池袋一丁目28-2", "line_cd" : 11302, "selected" : false, "open_ymd" : "1903-04-01", "name" : "1130212", "pref_name" : "東京都", "shared_name" : "1130212", "lat" : 35.730256, "y" : -357302.56, "x" : 1397110.8600000003 }, "position" : { "x" : 1397110.8600000003, "y" : -357302.56 }, "selected" : false }, { "data" : { "id" : "2686", "station_name" : "大塚", "close_ymd" : "", "lon" : 139.728584, "post" : "170-0005", "e_status" : 0, "SUID" : 2686, "station_g_cd" : 1130213, "add" : "東京都豊島区南大塚三丁目33-1", "line_cd" : 11302, "selected" : false, "open_ymd" : "1903-04-01", "name" : "1130213", "pref_name" : "東京都", "shared_name" : "1130213", "lat" : 35.731412, "y" : -357314.12, "x" : 1397285.84 }, "position" : { "x" : 1397285.84, "y" : -357314.12 }, "selected" : false }, { "data" : { "id" : "2687", "station_name" : "巣鴨", "close_ymd" : "", "lon" : 139.739303, "post" : "170-0002", "e_status" : 0, "SUID" : 2687, "station_g_cd" : 1130214, "add" : "東京都豊島区巣鴨一丁目16-1", "line_cd" : 11302, "selected" : false, "open_ymd" : "1903-04-01", "name" : "1130214", "pref_name" : "東京都", "shared_name" : "1130214", "lat" : 35.733445, "y" : -357334.45, "x" : 1397393.03 }, "position" : { "x" : 1397393.03, "y" : -357334.45 }, "selected" : false }, { "data" : { "id" : "2688", "station_name" : "駒込", "close_ymd" : "", "lon" : 139.748053, "post" : "170-0003", "e_status" : 0, "SUID" : 2688, "station_g_cd" : 1130215, "add" : "東京都豊島区駒込二丁目1-1", "line_cd" : 11302, "selected" : false, "open_ymd" : "1910-11-15", "name" : "1130215", "pref_name" : "東京都", "shared_name" : "1130215", "lat" : 35.736825, "y" : -357368.25000000006, "x" : 1397480.53 }, "position" : { "x" : 1397480.53, "y" : -357368.25000000006 }, "selected" : false }, { "data" : { "id" : "2689", "station_name" : "田端", "close_ymd" : "", "lon" : 139.76122900000001, "post" : "114-0013", "e_status" : 0, "SUID" : 2689, "station_g_cd" : 1130216, "add" : "東京都北区東田端一丁目17-1", "line_cd" : 11302, "selected" : false, "open_ymd" : "1896-04-01", "name" : "1130216", "pref_name" : "東京都", "shared_name" : "1130216", "lat" : 35.737781, "y" : -357377.81, "x" : 1397612.29 }, "position" : { "x" : 1397612.29, "y" : -357377.81 }, "selected" : false }, { "data" : { "id" : "2690", "station_name" : "西日暮里", "close_ymd" : "", "lon" : 139.76685700000002, "post" : "116-0013", "e_status" : 0, "SUID" : 2690, "station_g_cd" : 1130217, "add" : "東京都荒川区西日暮里五丁目22-1", "line_cd" : 11302, "selected" : false, "open_ymd" : "1971-04-20", "name" : "1130217", "pref_name" : "東京都", "shared_name" : "1130217", "lat" : 35.731953999999995, "y" : -357319.5399999999, "x" : 1397668.57 }, "position" : { "x" : 1397668.57, "y" : -357319.5399999999 }, "selected" : false }, { "data" : { "id" : "2691", "station_name" : "日暮里", "close_ymd" : "", "lon" : 139.771287, "post" : "116-0013", "e_status" : 0, "SUID" : 2691, "station_g_cd" : 1130218, "add" : "東京都荒川区西日暮里二丁目19-1", "line_cd" : 11302, "selected" : false, "open_ymd" : "1905-04-01", "name" : "1130218", "pref_name" : "東京都", "shared_name" : "1130218", "lat" : 35.727908, "y" : -357279.08, "x" : 1397712.87 }, "position" : { "x" : 1397712.87, "y" : -357279.08 }, "selected" : false }, { "data" : { "id" : "2692", "station_name" : "鶯谷", "close_ymd" : "", "lon" : 139.77801499999998, "post" : "110-0003", "e_status" : 0, "SUID" : 2692, "station_g_cd" : 1130219, "add" : "東京都台東区根岸一丁目4-1", "line_cd" : 11302, "selected" : false, "open_ymd" : "1912-07-11", "name" : "1130219", "pref_name" : "東京都", "shared_name" : "1130219", "lat" : 35.721484000000004, "y" : -357214.84, "x" : 1397780.15 }, "position" : { "x" : 1397780.15, "y" : -357214.84 }, "selected" : false }, { "data" : { "id" : "2677", "station_name" : "恵比寿", "close_ymd" : "", "lon" : 139.71007, "post" : "150-0022", "e_status" : 0, "SUID" : 2677, "station_g_cd" : 1130204, "add" : "東京都渋谷区恵比寿南一丁目5-5", "line_cd" : 11302, "selected" : false, "open_ymd" : "1901-02-25", "name" : "1130204", "pref_name" : "東京都", "shared_name" : "1130204", "lat" : 35.646685, "y" : -356466.85, "x" : 1397100.7 }, "position" : { "x" : 1397100.7, "y" : -356466.85 }, "selected" : false }, { "data" : { "id" : "2678", "station_name" : "渋谷", "close_ymd" : "", "lon" : 139.701238, "post" : "150-0043", "e_status" : 0, "SUID" : 2678, "station_g_cd" : 1130205, "add" : "東京都渋谷区道玄坂一丁目1-1", "line_cd" : 11302, "selected" : false, "open_ymd" : "1885-03-01", "name" : "1130205", "pref_name" : "東京都", "shared_name" : "1130205", "lat" : 35.658871000000005, "y" : -356588.71, "x" : 1397012.38 }, "position" : { "x" : 1397012.38, "y" : -356588.71 }, "selected" : false }, { "data" : { "id" : "2679", "station_name" : "原宿", "close_ymd" : "", "lon" : 139.70259199999998, "post" : "150-0001", "e_status" : 0, "SUID" : 2679, "station_g_cd" : 1130206, "add" : "東京都渋谷区神宮前一丁目18", "line_cd" : 11302, "selected" : false, "open_ymd" : "1906-10-30", "name" : "1130206", "pref_name" : "東京都", "shared_name" : "1130206", "lat" : 35.670646000000005, "y" : -356706.46, "x" : 1397025.92 }, "position" : { "x" : 1397025.92, "y" : -356706.46 }, "selected" : false }, { "data" : { "id" : "2680", "station_name" : "代々木", "close_ymd" : "", "lon" : 139.702042, "post" : "151-0053", "e_status" : 0, "SUID" : 2680, "station_g_cd" : 1130207, "add" : "東京都渋谷区代々木一丁目34-1", "line_cd" : 11302, "selected" : false, "open_ymd" : "1906-09-23", "name" : "1130207", "pref_name" : "東京都", "shared_name" : "1130207", "lat" : 35.683061, "y" : -356830.61000000004, "x" : 1397020.4200000002 }, "position" : { "x" : 1397020.4200000002, "y" : -356830.61000000004 }, "selected" : false }, { "data" : { "id" : "2681", "station_name" : "新宿", "close_ymd" : "", "lon" : 139.70046399999998, "post" : "160-0022", "e_status" : 0, "SUID" : 2681, "station_g_cd" : 1130208, "add" : "東京都新宿区新宿三丁目38-1", "line_cd" : 11302, "selected" : false, "open_ymd" : "1885-03-01", "name" : "1130208", "pref_name" : "東京都", "shared_name" : "1130208", "lat" : 35.689729, "y" : -356897.29, "x" : 1397004.64 }, "position" : { "x" : 1397004.64, "y" : -356897.29 }, "selected" : false }, { "data" : { "id" : "2682", "station_name" : "新大久保", "close_ymd" : "", "lon" : 139.700261, "post" : "169-0073", "e_status" : 0, "SUID" : 2682, "station_g_cd" : 1130209, "add" : "東京都新宿区百人町一丁目10-15", "line_cd" : 11302, "selected" : false, "open_ymd" : "1914-11-15", "name" : "1130209", "pref_name" : "東京都", "shared_name" : "1130209", "lat" : 35.700875, "y" : -357008.75000000006, "x" : 1397002.61 }, "position" : { "x" : 1397002.61, "y" : -357008.75000000006 }, "selected" : false }, { "data" : { "id" : "2683", "station_name" : "高田馬場", "close_ymd" : "", "lon" : 139.703715, "post" : "169-0075", "e_status" : 0, "SUID" : 2683, "station_g_cd" : 1130210, "add" : "東京都新宿区高田馬場一丁目35-1", "line_cd" : 11302, "selected" : false, "open_ymd" : "1910-09-15", "name" : "1130210", "pref_name" : "東京都", "shared_name" : "1130210", "lat" : 35.712677, "y" : -357126.77, "x" : 1397037.15 }, "position" : { "x" : 1397037.15, "y" : -357126.77 }, "selected" : false }, { "data" : { "id" : "2684", "station_name" : "目白", "close_ymd" : "", "lon" : 139.706228, "post" : "171-0031", "e_status" : 0, "SUID" : 2684, "station_g_cd" : 1130211, "add" : "東京都豊島区目白三丁目3-1", "line_cd" : 11302, "selected" : false, "open_ymd" : "1885-03-16", "name" : "1130211", "pref_name" : "東京都", "shared_name" : "1130211", "lat" : 35.720476, "y" : -357204.75999999995, "x" : 1397062.28 }, "position" : { "x" : 1397062.28, "y" : -357204.75999999995 }, "selected" : false }, { "data" : { "id" : "2676", "station_name" : "目黒", "close_ymd" : "", "lon" : 139.715775, "post" : "141-0021", "e_status" : 0, "SUID" : 2676, "station_g_cd" : 1130203, "add" : "東京都品川区上大崎二丁目16-9", "line_cd" : 11302, "selected" : false, "open_ymd" : "1885-03-16", "name" : "1130203", "pref_name" : "東京都", "shared_name" : "1130203", "lat" : 35.633922999999996, "y" : -356339.23, "x" : 1397157.75 }, "position" : { "x" : 1397157.75, "y" : -356339.23 }, "selected" : false }, { "data" : { "id" : "2675", "station_name" : "五反田", "close_ymd" : "", "lon" : 139.72382199999998, "post" : "141-0022", "e_status" : 0, "SUID" : 2675, "station_g_cd" : 1130202, "add" : "東京都品川区東五反田一丁目26", "line_cd" : 11302, "selected" : false, "open_ymd" : "1911-10-15", "name" : "1130202", "pref_name" : "東京都", "shared_name" : "1130202", "lat" : 35.625974, "y" : -356259.74, "x" : 1397238.2199999997 }, "position" : { "x" : 1397238.2199999997, "y" : -356259.74 }, "selected" : false }, { "data" : { "id" : "2674", "station_name" : "大崎", "close_ymd" : "", "lon" : 139.72843899999998, "post" : "141-0032", "e_status" : 0, "SUID" : 2674, "station_g_cd" : 1130201, "add" : "東京都品川区大崎一丁目21-4", "line_cd" : 11302, "selected" : false, "open_ymd" : "1901-02-25", "name" : "1130201", "pref_name" : "東京都", "shared_name" : "1130201", "lat" : 35.619772, "y" : -356197.72, "x" : 1397284.39 }, "position" : { "x" : 1397284.39, "y" : -356197.72 }, "selected" : false }, { "data" : { "id" : "2655", "station_name" : "品川", "close_ymd" : "", "lon" : 139.738999, "post" : "108-0074", "e_status" : 0, "SUID" : 2655, "station_g_cd" : 1130103, "add" : "東京都港区高輪三丁目26-27", "line_cd" : 11301, "selected" : false, "open_ymd" : "", "name" : "1130103", "pref_name" : "東京都", "shared_name" : "1130103", "lat" : 35.62876, "y" : -356287.6, "x" : 1397389.99 }, "position" : { "x" : 1397389.99, "y" : -356287.6 }, "selected" : false }, { "data" : { "id" : "2653", "station_name" : "東京", "close_ymd" : "", "lon" : 139.76610300000002, "post" : "100-0005", "e_status" : 0, "SUID" : 2653, "station_g_cd" : 1130101, "add" : "東京都千代田区丸の内一丁目", "line_cd" : 11301, "selected" : false, "open_ymd" : "", "name" : "1130101", "pref_name" : "東京都", "shared_name" : "1130101", "lat" : 35.681391, "y" : -356813.91, "x" : 1397661.0300000003 }, "position" : { "x" : 1397661.0300000003, "y" : -356813.91 }, "selected" : false }, { "data" : { "id" : "2654", "station_name" : "新橋", "close_ymd" : "", "lon" : 139.758587, "post" : "105-0004", "e_status" : 0, "SUID" : 2654, "station_g_cd" : 1130102, "add" : "東京都港区新橋二丁目17", "line_cd" : 11301, "selected" : false, "open_ymd" : "", "name" : "1130102", "pref_name" : "東京都", "shared_name" : "1130102", "lat" : 35.666195, "y" : -356661.95, "x" : 1397585.87 }, "position" : { "x" : 1397585.87, "y" : -356661.95 }, "selected" : false }, { "data" : { "id" : "2746", "station_name" : "北府中", "close_ymd" : "", "lon" : 139.471792, "post" : "183-0057", "e_status" : 0, "SUID" : 2746, "station_g_cd" : 1130502, "add" : "府中市晴見町2丁目", "line_cd" : 11305, "selected" : false, "open_ymd" : "", "name" : "1130502", "pref_name" : "東京都", "shared_name" : "1130502", "lat" : 35.68088, "y" : -356808.80000000005, "x" : 1394717.92 }, "position" : { "x" : 1394717.92, "y" : -356808.80000000005 }, "selected" : false }, { "data" : { "id" : "2745", "station_name" : "府中本町", "close_ymd" : "", "lon" : 139.477142, "post" : "183-0027", "e_status" : 0, "SUID" : 2745, "station_g_cd" : 1130320, "add" : "府中市本町1丁目", "line_cd" : 11305, "selected" : false, "open_ymd" : "", "name" : "1130501", "pref_name" : "東京都", "shared_name" : "1130501", "lat" : 35.665766, "y" : -356657.66, "x" : 1394771.42 }, "position" : { "x" : 1394771.42, "y" : -356657.66 }, "selected" : false }, { "data" : { "id" : "2748", "station_name" : "新小平", "close_ymd" : "", "lon" : 139.470745, "post" : "187-0032", "e_status" : 0, "SUID" : 2748, "station_g_cd" : 1130504, "add" : "小平市小川町2丁目", "line_cd" : 11305, "selected" : false, "open_ymd" : "", "name" : "1130504", "pref_name" : "東京都", "shared_name" : "1130504", "lat" : 35.73128, "y" : -357312.8, "x" : 1394707.45 }, "position" : { "x" : 1394707.45, "y" : -357312.8 }, "selected" : false }, { "data" : { "id" : "2747", "station_name" : "西国分寺", "close_ymd" : "", "lon" : 139.465994, "post" : "185-0013", "e_status" : 0, "SUID" : 2747, "station_g_cd" : 1130503, "add" : "国分寺市西恋ケ窪2丁目", "line_cd" : 11305, "selected" : false, "open_ymd" : "", "name" : "1130503", "pref_name" : "東京都", "shared_name" : "1130503", "lat" : 35.699744, "y" : -356997.44, "x" : 1394659.94 }, "position" : { "x" : 1394659.94, "y" : -356997.44 }, "selected" : false }, { "data" : { "id" : "2749", "station_name" : "新秋津", "close_ymd" : "", "lon" : 139.493592, "post" : "189-0001", "e_status" : 0, "SUID" : 2749, "station_g_cd" : 1130505, "add" : "東村山市秋津町5丁目", "line_cd" : 11305, "selected" : false, "open_ymd" : "", "name" : "1130505", "pref_name" : "東京都", "shared_name" : "1130505", "lat" : 35.778331, "y" : -357783.31, "x" : 1394935.9200000002 }, "position" : { "x" : 1394935.9200000002, "y" : -357783.31 }, "selected" : false }, { "data" : { "id" : "2729", "station_name" : "立川", "close_ymd" : "", "lon" : 139.413704, "post" : "190-0012", "e_status" : 0, "SUID" : 2729, "station_g_cd" : 1130325, "add" : "東京都立川市曙町二丁目1-1", "line_cd" : 11303, "selected" : false, "open_ymd" : "", "name" : "1130325", "pref_name" : "東京都", "shared_name" : "1130325", "lat" : 35.698202, "y" : -356982.02, "x" : 1394137.04 }, "position" : { "x" : 1394137.04, "y" : -356982.02 }, "selected" : false }, { "data" : { "id" : "2727", "station_name" : "矢川", "close_ymd" : "", "lon" : 139.431611, "post" : "186-0011", "e_status" : 0, "SUID" : 2727, "station_g_cd" : 1130323, "add" : "国立市谷保石田", "line_cd" : 11303, "selected" : false, "open_ymd" : "", "name" : "1130323", "pref_name" : "東京都", "shared_name" : "1130323", "lat" : 35.685078999999995, "y" : -356850.7899999999, "x" : 1394316.11 }, "position" : { "x" : 1394316.11, "y" : -356850.7899999999 }, "selected" : false }, { "data" : { "id" : "2728", "station_name" : "西国立", "close_ymd" : "", "lon" : 139.423887, "post" : "190-0021", "e_status" : 0, "SUID" : 2728, "station_g_cd" : 1130324, "add" : "立川市羽衣町1丁目", "line_cd" : 11303, "selected" : false, "open_ymd" : "", "name" : "1130324", "pref_name" : "東京都", "shared_name" : "1130324", "lat" : 35.69375, "y" : -356937.5, "x" : 1394238.87 }, "position" : { "x" : 1394238.87, "y" : -356937.5 }, "selected" : false }, { "data" : { "id" : "2725", "station_name" : "西府", "close_ymd" : "", "lon" : 139.457477, "post" : "183-0032", "e_status" : 0, "SUID" : 2725, "station_g_cd" : 1130329, "add" : "東京都府中市本宿町一丁目40-6", "line_cd" : 11303, "selected" : false, "open_ymd" : "", "name" : "1130329", "pref_name" : "東京都", "shared_name" : "1130329", "lat" : 35.670912, "y" : -356709.12, "x" : 1394574.77 }, "position" : { "x" : 1394574.77, "y" : -356709.12 }, "selected" : false }, { "data" : { "id" : "2726", "station_name" : "谷保", "close_ymd" : "", "lon" : 139.446724, "post" : "186-0011", "e_status" : 0, "SUID" : 2726, "station_g_cd" : 1130322, "add" : "国立市谷保町", "line_cd" : 11303, "selected" : false, "open_ymd" : "", "name" : "1130322", "pref_name" : "東京都", "shared_name" : "1130322", "lat" : 35.681377000000005, "y" : -356813.7700000001, "x" : 1394467.24 }, "position" : { "x" : 1394467.24, "y" : -356813.7700000001 }, "selected" : false }, { "data" : { "id" : "2724", "station_name" : "分倍河原", "close_ymd" : "", "lon" : 139.468798, "post" : "183-0021", "e_status" : 0, "SUID" : 2724, "station_g_cd" : 1130321, "add" : "府中市片町2丁目", "line_cd" : 11303, "selected" : false, "open_ymd" : "", "name" : "1130321", "pref_name" : "東京都", "shared_name" : "1130321", "lat" : 35.668493, "y" : -356684.93, "x" : 1394687.98 }, "position" : { "x" : 1394687.98, "y" : -356684.93 }, "selected" : false }, { "data" : { "id" : "2723", "station_name" : "府中本町", "close_ymd" : "", "lon" : 139.477142, "post" : "183-0027", "e_status" : 0, "SUID" : 2723, "station_g_cd" : 1130320, "add" : "府中市本町1丁目", "line_cd" : 11303, "selected" : false, "open_ymd" : "", "name" : "1130320", "pref_name" : "東京都", "shared_name" : "1130320", "lat" : 35.665766, "y" : -356657.66, "x" : 1394771.42 }, "position" : { "x" : 1394771.42, "y" : -356657.66 }, "selected" : false }, { "data" : { "id" : "2722", "station_name" : "南多摩", "close_ymd" : "", "lon" : 139.489781, "post" : "206-0801", "e_status" : 0, "SUID" : 2722, "station_g_cd" : 1130319, "add" : "稲城市大丸", "line_cd" : 11303, "selected" : false, "open_ymd" : "", "name" : "1130319", "pref_name" : "東京都", "shared_name" : "1130319", "lat" : 35.649249, "y" : -356492.49, "x" : 1394897.8099999998 }, "position" : { "x" : 1394897.8099999998, "y" : -356492.49 }, "selected" : false }, { "data" : { "id" : "2721", "station_name" : "稲城長沼", "close_ymd" : "", "lon" : 139.502811, "post" : "206-0802", "e_status" : 0, "SUID" : 2721, "station_g_cd" : 1130318, "add" : "稲城市東長沼", "line_cd" : 11303, "selected" : false, "open_ymd" : "", "name" : "1130318", "pref_name" : "東京都", "shared_name" : "1130318", "lat" : 35.644184, "y" : -356441.84, "x" : 1395028.11 }, "position" : { "x" : 1395028.11, "y" : -356441.84 }, "selected" : false }, { "data" : { "id" : "2720", "station_name" : "矢野口", "close_ymd" : "", "lon" : 139.520849, "post" : "206-0812", "e_status" : 0, "SUID" : 2720, "station_g_cd" : 1130317, "add" : "稲城市矢野口", "line_cd" : 11303, "selected" : false, "open_ymd" : "", "name" : "1130317", "pref_name" : "東京都", "shared_name" : "1130317", "lat" : 35.641304999999996, "y" : -356413.04999999993, "x" : 1395208.49 }, "position" : { "x" : 1395208.49, "y" : -356413.04999999993 }, "selected" : false }, { "data" : { "id" : "2806", "station_name" : "西大井", "close_ymd" : "", "lon" : 139.721729, "post" : "140-0015", "e_status" : 0, "SUID" : 2806, "station_g_cd" : 1130804, "add" : "品川区西大井1丁目", "line_cd" : 11308, "selected" : false, "open_ymd" : "", "name" : "1130804", "pref_name" : "東京都", "shared_name" : "1130804", "lat" : 35.601616, "y" : -356016.16, "x" : 1397217.29 }, "position" : { "x" : 1397217.29, "y" : -356016.16 }, "selected" : false }, { "data" : { "id" : "2805", "station_name" : "品川", "close_ymd" : "", "lon" : 139.738999, "post" : "108-0074", "e_status" : 0, "SUID" : 2805, "station_g_cd" : 1130103, "add" : "東京都港区高輪三丁目26-26", "line_cd" : 11308, "selected" : false, "open_ymd" : "", "name" : "1130803", "pref_name" : "東京都", "shared_name" : "1130803", "lat" : 35.62876, "y" : -356287.6, "x" : 1397389.99 }, "position" : { "x" : 1397389.99, "y" : -356287.6 }, "selected" : false }, { "data" : { "id" : "2789", "station_name" : "片倉", "close_ymd" : "", "lon" : 139.34118999999998, "post" : "192-0914", "e_status" : 0, "SUID" : 2789, "station_g_cd" : 1130619, "add" : "八王子市片倉町", "line_cd" : 11306, "selected" : false, "open_ymd" : "", "name" : "1130619", "pref_name" : "東京都", "shared_name" : "1130619", "lat" : 35.639703999999995, "y" : -356397.0399999999, "x" : 1393411.9 }, "position" : { "x" : 1393411.9, "y" : -356397.0399999999 }, "selected" : false }, { "data" : { "id" : "2790", "station_name" : "八王子", "close_ymd" : "", "lon" : 139.338998, "post" : "192-0083", "e_status" : 0, "SUID" : 2790, "station_g_cd" : 1130620, "add" : "東京都八王子市旭町1-1", "line_cd" : 11306, "selected" : false, "open_ymd" : "", "name" : "1130620", "pref_name" : "東京都", "shared_name" : "1130620", "lat" : 35.655555, "y" : -356555.55, "x" : 1393389.98 }, "position" : { "x" : 1393389.98, "y" : -356555.55 }, "selected" : false }, { "data" : { "id" : "2803", "station_name" : "東京", "close_ymd" : "", "lon" : 139.76610300000002, "post" : "100-0005", "e_status" : 0, "SUID" : 2803, "station_g_cd" : 1130101, "add" : "東京都千代田区丸の内一丁目", "line_cd" : 11308, "selected" : false, "open_ymd" : "", "name" : "1130801", "pref_name" : "東京都", "shared_name" : "1130801", "lat" : 35.681391, "y" : -356813.91, "x" : 1397661.0300000003 }, "position" : { "x" : 1397661.0300000003, "y" : -356813.91 }, "selected" : false }, { "data" : { "id" : "2804", "station_name" : "新橋", "close_ymd" : "", "lon" : 139.758587, "post" : "105-0004", "e_status" : 0, "SUID" : 2804, "station_g_cd" : 1130102, "add" : "東京都港区新橋二丁目17", "line_cd" : 11308, "selected" : false, "open_ymd" : "", "name" : "1130802", "pref_name" : "東京都", "shared_name" : "1130802", "lat" : 35.666195, "y" : -356661.95, "x" : 1397585.87 }, "position" : { "x" : 1397585.87, "y" : -356661.95 }, "selected" : false }, { "data" : { "id" : "2780", "station_name" : "成瀬", "close_ymd" : "", "lon" : 139.472875, "post" : "194-0045", "e_status" : 0, "SUID" : 2780, "station_g_cd" : 1130610, "add" : "町田市南成瀬1丁目", "line_cd" : 11306, "selected" : false, "open_ymd" : "", "name" : "1130610", "pref_name" : "東京都", "shared_name" : "1130610", "lat" : 35.535412, "y" : -355354.12, "x" : 1394728.7499999998 }, "position" : { "x" : 1394728.7499999998, "y" : -355354.12 }, "selected" : false }, { "data" : { "id" : "2781", "station_name" : "町田", "close_ymd" : "", "lon" : 139.445579, "post" : "194-0013", "e_status" : 0, "SUID" : 2781, "station_g_cd" : 1130611, "add" : "町田市原町田1丁目", "line_cd" : 11306, "selected" : false, "open_ymd" : "", "name" : "1130611", "pref_name" : "東京都", "shared_name" : "1130611", "lat" : 35.542004, "y" : -355420.04, "x" : 1394455.79 }, "position" : { "x" : 1394455.79, "y" : -355420.04 }, "selected" : false }, { "data" : { "id" : "2788", "station_name" : "八王子みなみ野", "close_ymd" : "", "lon" : 139.330678, "post" : "192-0915", "e_status" : 0, "SUID" : 2788, "station_g_cd" : 1130618, "add" : "八王子市宇津貫町", "line_cd" : 11306, "selected" : false, "open_ymd" : "", "name" : "1130618", "pref_name" : "東京都", "shared_name" : "1130618", "lat" : 35.630664, "y" : -356306.64, "x" : 1393306.78 }, "position" : { "x" : 1393306.78, "y" : -356306.64 }, "selected" : false }, { "data" : { "id" : "2787", "station_name" : "相原", "close_ymd" : "", "lon" : 139.33168999999998, "post" : "194-0211", "e_status" : 0, "SUID" : 2787, "station_g_cd" : 1130617, "add" : "町田市相原町", "line_cd" : 11306, "selected" : false, "open_ymd" : "", "name" : "1130617", "pref_name" : "東京都", "shared_name" : "1130617", "lat" : 35.60694, "y" : -356069.4, "x" : 1393316.9 }, "position" : { "x" : 1393316.9, "y" : -356069.4 }, "selected" : false }, { "data" : { "id" : "2900", "station_name" : "阿佐ケ谷", "close_ymd" : "", "lon" : 139.635868, "post" : "166-0004", "e_status" : 0, "SUID" : 2900, "station_g_cd" : 1131216, "add" : "東京都杉並区阿佐谷南三丁目36-3", "line_cd" : 11312, "selected" : false, "open_ymd" : "", "name" : "1131216", "pref_name" : "東京都", "shared_name" : "1131216", "lat" : 35.704817999999996, "y" : -357048.17999999993, "x" : 1396358.68 }, "position" : { "x" : 1396358.68, "y" : -357048.17999999993 }, "selected" : false }, { "data" : { "id" : "2899", "station_name" : "高円寺", "close_ymd" : "", "lon" : 139.649664, "post" : "166-0003", "e_status" : 0, "SUID" : 2899, "station_g_cd" : 1131215, "add" : "杉並区高円寺南4丁目", "line_cd" : 11312, "selected" : false, "open_ymd" : "", "name" : "1131215", "pref_name" : "東京都", "shared_name" : "1131215", "lat" : 35.705326, "y" : -357053.26, "x" : 1396496.64 }, "position" : { "x" : 1396496.64, "y" : -357053.26 }, "selected" : false }, { "data" : { "id" : "2898", "station_name" : "中野", "close_ymd" : "", "lon" : 139.66583500000002, "post" : "164-0001", "e_status" : 0, "SUID" : 2898, "station_g_cd" : 1131214, "add" : "中野区中野5丁目", "line_cd" : 11312, "selected" : false, "open_ymd" : "", "name" : "1131214", "pref_name" : "東京都", "shared_name" : "1131214", "lat" : 35.705765, "y" : -357057.65, "x" : 1396658.35 }, "position" : { "x" : 1396658.35, "y" : -357057.65 }, "selected" : false }, { "data" : { "id" : "2897", "station_name" : "新宿", "close_ymd" : "", "lon" : 139.70046399999998, "post" : "160-0022", "e_status" : 0, "SUID" : 2897, "station_g_cd" : 1130208, "add" : "東京都新宿区新宿三丁目38-1", "line_cd" : 11312, "selected" : false, "open_ymd" : "", "name" : "1131211", "pref_name" : "東京都", "shared_name" : "1131211", "lat" : 35.689729, "y" : -356897.29, "x" : 1397004.64 }, "position" : { "x" : 1397004.64, "y" : -356897.29 }, "selected" : false }, { "data" : { "id" : "2896", "station_name" : "四ツ谷", "close_ymd" : "", "lon" : 139.73064399999998, "post" : "160-0004", "e_status" : 0, "SUID" : 2896, "station_g_cd" : 1131102, "add" : "東京都新宿区四谷一丁目", "line_cd" : 11312, "selected" : false, "open_ymd" : "", "name" : "1131207", "pref_name" : "東京都", "shared_name" : "1131207", "lat" : 35.686040999999996, "y" : -356860.41, "x" : 1397306.44 }, "position" : { "x" : 1397306.44, "y" : -356860.41 }, "selected" : false }, { "data" : { "id" : "2895", "station_name" : "御茶ノ水", "close_ymd" : "", "lon" : 139.76495500000001, "post" : "101-0062", "e_status" : 0, "SUID" : 2895, "station_g_cd" : 1131203, "add" : "千代田区神田駿河台2丁目", "line_cd" : 11312, "selected" : false, "open_ymd" : "", "name" : "1131203", "pref_name" : "東京都", "shared_name" : "1131203", "lat" : 35.699605, "y" : -356996.05, "x" : 1397649.55 }, "position" : { "x" : 1397649.55, "y" : -356996.05 }, "selected" : false }, { "data" : { "id" : "2894", "station_name" : "神田", "close_ymd" : "", "lon" : 139.77064099999998, "post" : "101-0044", "e_status" : 0, "SUID" : 2894, "station_g_cd" : 1130223, "add" : "東京都千代田区鍛冶町二丁目13-1", "line_cd" : 11312, "selected" : false, "open_ymd" : "", "name" : "1131202", "pref_name" : "東京都", "shared_name" : "1131202", "lat" : 35.691173, "y" : -356911.73, "x" : 1397706.41 }, "position" : { "x" : 1397706.41, "y" : -356911.73 }, "selected" : false }, { "data" : { "id" : "2893", "station_name" : "東京", "close_ymd" : "", "lon" : 139.76610300000002, "post" : "100-0005", "e_status" : 0, "SUID" : 2893, "station_g_cd" : 1130101, "add" : "東京都千代田区丸の内一丁目", "line_cd" : 11312, "selected" : false, "open_ymd" : "", "name" : "1131201", "pref_name" : "東京都", "shared_name" : "1131201", "lat" : 35.681391, "y" : -356813.91, "x" : 1397661.0300000003 }, "position" : { "x" : 1397661.0300000003, "y" : -356813.91 }, "selected" : false }, { "data" : { "id" : "2849", "station_name" : "八王子", "close_ymd" : "", "lon" : 139.338998, "post" : "192-0083", "e_status" : 0, "SUID" : 2849, "station_g_cd" : 1130620, "add" : "東京都八王子市旭町1-1", "line_cd" : 11311, "selected" : false, "open_ymd" : "", "name" : "1131110", "pref_name" : "東京都", "shared_name" : "1131110", "lat" : 35.655555, "y" : -356555.55, "x" : 1393389.98 }, "position" : { "x" : 1393389.98, "y" : -356555.55 }, "selected" : false }, { "data" : { "id" : "2850", "station_name" : "西八王子", "close_ymd" : "", "lon" : 139.31264, "post" : "193-0835", "e_status" : 0, "SUID" : 2850, "station_g_cd" : 1131111, "add" : "八王子市千人町2丁目", "line_cd" : 11311, "selected" : false, "open_ymd" : "", "name" : "1131111", "pref_name" : "東京都", "shared_name" : "1131111", "lat" : 35.656621, "y" : -356566.21, "x" : 1393126.4 }, "position" : { "x" : 1393126.4, "y" : -356566.21 }, "selected" : false }, { "data" : { "id" : "2851", "station_name" : "高尾", "close_ymd" : "", "lon" : 139.282288, "post" : "193-0844", "e_status" : 0, "SUID" : 2851, "station_g_cd" : 1131112, "add" : "八王子市高尾町", "line_cd" : 11311, "selected" : false, "open_ymd" : "", "name" : "1131112", "pref_name" : "東京都", "shared_name" : "1131112", "lat" : 35.642026, "y" : -356420.26, "x" : 1392822.88 }, "position" : { "x" : 1392822.88, "y" : -356420.26 }, "selected" : false }, { "data" : { "id" : "2845", "station_name" : "国分寺", "close_ymd" : "", "lon" : 139.480841, "post" : "185-0012", "e_status" : 0, "SUID" : 2845, "station_g_cd" : 1131106, "add" : "東京都国分寺市本町二丁目1-23", "line_cd" : 11311, "selected" : false, "open_ymd" : "", "name" : "1131106", "pref_name" : "東京都", "shared_name" : "1131106", "lat" : 35.700123, "y" : -357001.23, "x" : 1394808.41 }, "position" : { "x" : 1394808.41, "y" : -357001.23 }, "selected" : false }, { "data" : { "id" : "2846", "station_name" : "立川", "close_ymd" : "", "lon" : 139.413704, "post" : "190-0012", "e_status" : 0, "SUID" : 2846, "station_g_cd" : 1130325, "add" : "東京都立川市曙町二丁目1-1", "line_cd" : 11311, "selected" : false, "open_ymd" : "", "name" : "1131107", "pref_name" : "東京都", "shared_name" : "1131107", "lat" : 35.698202, "y" : -356982.02, "x" : 1394137.04 }, "position" : { "x" : 1394137.04, "y" : -356982.02 }, "selected" : false }, { "data" : { "id" : "2847", "station_name" : "日野", "close_ymd" : "", "lon" : 139.39393, "post" : "191-0061", "e_status" : 0, "SUID" : 2847, "station_g_cd" : 1131108, "add" : "日野市大坂上1丁目", "line_cd" : 11311, "selected" : false, "open_ymd" : "", "name" : "1131108", "pref_name" : "東京都", "shared_name" : "1131108", "lat" : 35.679244, "y" : -356792.43999999994, "x" : 1393939.3 }, "position" : { "x" : 1393939.3, "y" : -356792.43999999994 }, "selected" : false }, { "data" : { "id" : "2848", "station_name" : "豊田", "close_ymd" : "", "lon" : 139.381495, "post" : "191-0053", "e_status" : 0, "SUID" : 2848, "station_g_cd" : 1131109, "add" : "日野市豊田4丁目", "line_cd" : 11311, "selected" : false, "open_ymd" : "", "name" : "1131109", "pref_name" : "東京都", "shared_name" : "1131109", "lat" : 35.659502, "y" : -356595.02, "x" : 1393814.95 }, "position" : { "x" : 1393814.95, "y" : -356595.02 }, "selected" : false }, { "data" : { "id" : "2841", "station_name" : "四ツ谷", "close_ymd" : "", "lon" : 139.73064399999998, "post" : "160-0004", "e_status" : 0, "SUID" : 2841, "station_g_cd" : 1131102, "add" : "東京都新宿区四谷一丁目", "line_cd" : 11311, "selected" : false, "open_ymd" : "", "name" : "1131102", "pref_name" : "東京都", "shared_name" : "1131102", "lat" : 35.686040999999996, "y" : -356860.41, "x" : 1397306.44 }, "position" : { "x" : 1397306.44, "y" : -356860.41 }, "selected" : false }, { "data" : { "id" : "2842", "station_name" : "新宿", "close_ymd" : "", "lon" : 139.70046399999998, "post" : "160-0022", "e_status" : 0, "SUID" : 2842, "station_g_cd" : 1130208, "add" : "東京都新宿区新宿三丁目38-1", "line_cd" : 11311, "selected" : false, "open_ymd" : "", "name" : "1131103", "pref_name" : "東京都", "shared_name" : "1131103", "lat" : 35.689729, "y" : -356897.29, "x" : 1397004.64 }, "position" : { "x" : 1397004.64, "y" : -356897.29 }, "selected" : false }, { "data" : { "id" : "2843", "station_name" : "吉祥寺", "close_ymd" : "", "lon" : 139.57976499999998, "post" : "180-0003", "e_status" : 0, "SUID" : 2843, "station_g_cd" : 1131104, "add" : "東京都武蔵野市吉祥寺南町", "line_cd" : 11311, "selected" : false, "open_ymd" : "", "name" : "1131104", "pref_name" : "東京都", "shared_name" : "1131104", "lat" : 35.703119, "y" : -357031.19, "x" : 1395797.65 }, "position" : { "x" : 1395797.65, "y" : -357031.19 }, "selected" : false }, { "data" : { "id" : "2844", "station_name" : "三鷹", "close_ymd" : "", "lon" : 139.560325, "post" : "181-0013", "e_status" : 0, "SUID" : 2844, "station_g_cd" : 1131105, "add" : "東京都三鷹市下連雀三丁目46-1", "line_cd" : 11311, "selected" : false, "open_ymd" : "", "name" : "1131105", "pref_name" : "東京都", "shared_name" : "1131105", "lat" : 35.702683, "y" : -357026.83, "x" : 1395603.25 }, "position" : { "x" : 1395603.25, "y" : -357026.83 }, "selected" : false }, { "data" : { "id" : "2840", "station_name" : "東京", "close_ymd" : "", "lon" : 139.76610300000002, "post" : "100-0005", "e_status" : 0, "SUID" : 2840, "station_g_cd" : 1130101, "add" : "東京都千代田区丸の内一丁目", "line_cd" : 11311, "selected" : false, "open_ymd" : "", "name" : "1131101", "pref_name" : "東京都", "shared_name" : "1131101", "lat" : 35.681391, "y" : -356813.91, "x" : 1397661.0300000003 }, "position" : { "x" : 1397661.0300000003, "y" : -356813.91 }, "selected" : false }, { "data" : { "id" : "2941", "station_name" : "新小岩", "close_ymd" : "", "lon" : 139.857777, "post" : "124-0024", "e_status" : 0, "SUID" : 2941, "station_g_cd" : 1131325, "add" : "葛飾区新小岩1丁目", "line_cd" : 11313, "selected" : false, "open_ymd" : "", "name" : "1131325", "pref_name" : "東京都", "shared_name" : "1131325", "lat" : 35.716903, "y" : -357169.03, "x" : 1398577.77 }, "position" : { "x" : 1398577.77, "y" : -357169.03 }, "selected" : false }, { "data" : { "id" : "2942", "station_name" : "小岩", "close_ymd" : "", "lon" : 139.881755, "post" : "133-0056", "e_status" : 0, "SUID" : 2942, "station_g_cd" : 1131326, "add" : "江戸川区南小岩7丁目", "line_cd" : 11313, "selected" : false, "open_ymd" : "", "name" : "1131326", "pref_name" : "東京都", "shared_name" : "1131326", "lat" : 35.733207, "y" : -357332.07, "x" : 1398817.55 }, "position" : { "x" : 1398817.55, "y" : -357332.07 }, "selected" : false }, { "data" : { "id" : "2935", "station_name" : "秋葉原", "close_ymd" : "", "lon" : 139.77328799999998, "post" : "101-0021", "e_status" : 0, "SUID" : 2935, "station_g_cd" : 1130222, "add" : "東京都千代田区外神田一丁目17-6", "line_cd" : 11313, "selected" : false, "open_ymd" : "", "name" : "1131319", "pref_name" : "東京都", "shared_name" : "1131319", "lat" : 35.698619, "y" : -356986.19, "x" : 1397732.88 }, "position" : { "x" : 1397732.88, "y" : -356986.19 }, "selected" : false }, { "data" : { "id" : "2936", "station_name" : "浅草橋", "close_ymd" : "", "lon" : 139.784427, "post" : "111-0053", "e_status" : 0, "SUID" : 2936, "station_g_cd" : 1131320, "add" : "台東区浅草橋1丁目", "line_cd" : 11313, "selected" : false, "open_ymd" : "", "name" : "1131320", "pref_name" : "東京都", "shared_name" : "1131320", "lat" : 35.697403, "y" : -356974.03, "x" : 1397844.27 }, "position" : { "x" : 1397844.27, "y" : -356974.03 }, "selected" : false }, { "data" : { "id" : "2933", "station_name" : "水道橋", "close_ymd" : "", "lon" : 139.754312, "post" : "101-0061", "e_status" : 0, "SUID" : 2933, "station_g_cd" : 1131204, "add" : "千代田区三崎町2丁目", "line_cd" : 11313, "selected" : false, "open_ymd" : "", "name" : "1131317", "pref_name" : "東京都", "shared_name" : "1131317", "lat" : 35.702039, "y" : -357020.39, "x" : 1397543.1199999999 }, "position" : { "x" : 1397543.1199999999, "y" : -357020.39 }, "selected" : false }, { "data" : { "id" : "2934", "station_name" : "御茶ノ水", "close_ymd" : "", "lon" : 139.76495500000001, "post" : "101-0062", "e_status" : 0, "SUID" : 2934, "station_g_cd" : 1131203, "add" : "千代田区神田駿河台2丁目", "line_cd" : 11313, "selected" : false, "open_ymd" : "", "name" : "1131318", "pref_name" : "東京都", "shared_name" : "1131318", "lat" : 35.699605, "y" : -356996.05, "x" : 1397649.55 }, "position" : { "x" : 1397649.55, "y" : -356996.05 }, "selected" : false }, { "data" : { "id" : "2939", "station_name" : "亀戸", "close_ymd" : "", "lon" : 139.826262, "post" : "136-0071", "e_status" : 0, "SUID" : 2939, "station_g_cd" : 1131323, "add" : "江東区亀戸5丁目", "line_cd" : 11313, "selected" : false, "open_ymd" : "", "name" : "1131323", "pref_name" : "東京都", "shared_name" : "1131323", "lat" : 35.697345, "y" : -356973.45, "x" : 1398262.62 }, "position" : { "x" : 1398262.62, "y" : -356973.45 }, "selected" : false }, { "data" : { "id" : "2940", "station_name" : "平井", "close_ymd" : "", "lon" : 139.842181, "post" : "132-0035", "e_status" : 0, "SUID" : 2940, "station_g_cd" : 1131324, "add" : "江戸川区平井3丁目", "line_cd" : 11313, "selected" : false, "open_ymd" : "", "name" : "1131324", "pref_name" : "東京都", "shared_name" : "1131324", "lat" : 35.70643, "y" : -357064.3, "x" : 1398421.81 }, "position" : { "x" : 1398421.81, "y" : -357064.3 }, "selected" : false }, { "data" : { "id" : "2937", "station_name" : "両国", "close_ymd" : "", "lon" : 139.79333400000002, "post" : "130-0015", "e_status" : 0, "SUID" : 2937, "station_g_cd" : 1131321, "add" : "墨田区横網1丁目", "line_cd" : 11313, "selected" : false, "open_ymd" : "", "name" : "1131321", "pref_name" : "東京都", "shared_name" : "1131321", "lat" : 35.69579, "y" : -356957.9, "x" : 1397933.34 }, "position" : { "x" : 1397933.34, "y" : -356957.9 }, "selected" : false }, { "data" : { "id" : "2938", "station_name" : "錦糸町", "close_ymd" : "", "lon" : 139.81413600000002, "post" : "130-0022", "e_status" : 0, "SUID" : 2938, "station_g_cd" : 1131322, "add" : "墨田区江東橋3丁目", "line_cd" : 11313, "selected" : false, "open_ymd" : "", "name" : "1131322", "pref_name" : "東京都", "shared_name" : "1131322", "lat" : 35.696802000000005, "y" : -356968.0200000001, "x" : 1398141.36 }, "position" : { "x" : 1398141.36, "y" : -356968.0200000001 }, "selected" : false }, { "data" : { "id" : "2960", "station_name" : "新小岩", "close_ymd" : "", "lon" : 139.857777, "post" : "124-0024", "e_status" : 0, "SUID" : 2960, "station_g_cd" : 1131325, "add" : "葛飾区新小岩1丁目", "line_cd" : 11314, "selected" : false, "open_ymd" : "", "name" : "1131405", "pref_name" : "東京都", "shared_name" : "1131405", "lat" : 35.716903, "y" : -357169.03, "x" : 1398577.77 }, "position" : { "x" : 1398577.77, "y" : -357169.03 }, "selected" : false }, { "data" : { "id" : "2959", "station_name" : "錦糸町", "close_ymd" : "", "lon" : 139.81413600000002, "post" : "130-0022", "e_status" : 0, "SUID" : 2959, "station_g_cd" : 1131322, "add" : "墨田区江東橋3丁目", "line_cd" : 11314, "selected" : false, "open_ymd" : "", "name" : "1131404", "pref_name" : "東京都", "shared_name" : "1131404", "lat" : 35.696802000000005, "y" : -356968.0200000001, "x" : 1398141.36 }, "position" : { "x" : 1398141.36, "y" : -356968.0200000001 }, "selected" : false }, { "data" : { "id" : "2958", "station_name" : "馬喰町", "close_ymd" : "", "lon" : 139.78238000000002, "post" : "103-0002", "e_status" : 0, "SUID" : 2958, "station_g_cd" : 1131403, "add" : "中央区日本橋馬喰町1丁目", "line_cd" : 11314, "selected" : false, "open_ymd" : "", "name" : "1131403", "pref_name" : "東京都", "shared_name" : "1131403", "lat" : 35.693365, "y" : -356933.65, "x" : 1397823.8000000003 }, "position" : { "x" : 1397823.8000000003, "y" : -356933.65 }, "selected" : false }, { "data" : { "id" : "2957", "station_name" : "新日本橋", "close_ymd" : "", "lon" : 139.77323, "post" : "103-0022", "e_status" : 0, "SUID" : 2957, "station_g_cd" : 1131402, "add" : "中央区日本橋室町4丁目", "line_cd" : 11314, "selected" : false, "open_ymd" : "", "name" : "1131402", "pref_name" : "東京都", "shared_name" : "1131402", "lat" : 35.688687, "y" : -356886.87, "x" : 1397732.3 }, "position" : { "x" : 1397732.3, "y" : -356886.87 }, "selected" : false }, { "data" : { "id" : "2956", "station_name" : "東京", "close_ymd" : "", "lon" : 139.76610300000002, "post" : "100-0005", "e_status" : 0, "SUID" : 2956, "station_g_cd" : 1130101, "add" : "東京都千代田区丸の内一丁目", "line_cd" : 11314, "selected" : false, "open_ymd" : "", "name" : "1131401", "pref_name" : "東京都", "shared_name" : "1131401", "lat" : 35.681391, "y" : -356813.91, "x" : 1397661.0300000003 }, "position" : { "x" : 1397661.0300000003, "y" : -356813.91 }, "selected" : false }, { "data" : { "id" : "2909", "station_name" : "西国分寺", "close_ymd" : "", "lon" : 139.465994, "post" : "185-0013", "e_status" : 0, "SUID" : 2909, "station_g_cd" : 1130503, "add" : "国分寺市西恋ケ窪2丁目", "line_cd" : 11312, "selected" : false, "open_ymd" : "", "name" : "1131225", "pref_name" : "東京都", "shared_name" : "1131225", "lat" : 35.699744, "y" : -356997.44, "x" : 1394659.94 }, "position" : { "x" : 1394659.94, "y" : -356997.44 }, "selected" : false }, { "data" : { "id" : "2910", "station_name" : "国立", "close_ymd" : "", "lon" : 139.44634, "post" : "186-0001", "e_status" : 0, "SUID" : 2910, "station_g_cd" : 1131226, "add" : "国立市北1丁目", "line_cd" : 11312, "selected" : false, "open_ymd" : "", "name" : "1131226", "pref_name" : "東京都", "shared_name" : "1131226", "lat" : 35.69923, "y" : -356992.3, "x" : 1394463.4 }, "position" : { "x" : 1394463.4, "y" : -356992.3 }, "selected" : false }, { "data" : { "id" : "2911", "station_name" : "立川", "close_ymd" : "", "lon" : 139.413704, "post" : "190-0012", "e_status" : 0, "SUID" : 2911, "station_g_cd" : 1130325, "add" : "東京都立川市曙町二丁目1-1", "line_cd" : 11312, "selected" : false, "open_ymd" : "", "name" : "1131227", "pref_name" : "東京都", "shared_name" : "1131227", "lat" : 35.698202, "y" : -356982.02, "x" : 1394137.04 }, "position" : { "x" : 1394137.04, "y" : -356982.02 }, "selected" : false }, { "data" : { "id" : "2912", "station_name" : "日野", "close_ymd" : "", "lon" : 139.39393, "post" : "191-0061", "e_status" : 0, "SUID" : 2912, "station_g_cd" : 1131108, "add" : "日野市大坂上1丁目", "line_cd" : 11312, "selected" : false, "open_ymd" : "", "name" : "1131228", "pref_name" : "東京都", "shared_name" : "1131228", "lat" : 35.679244, "y" : -356792.43999999994, "x" : 1393939.3 }, "position" : { "x" : 1393939.3, "y" : -356792.43999999994 }, "selected" : false }, { "data" : { "id" : "2913", "station_name" : "豊田", "close_ymd" : "", "lon" : 139.381495, "post" : "191-0053", "e_status" : 0, "SUID" : 2913, "station_g_cd" : 1131109, "add" : "日野市豊田4丁目", "line_cd" : 11312, "selected" : false, "open_ymd" : "", "name" : "1131229", "pref_name" : "東京都", "shared_name" : "1131229", "lat" : 35.659502, "y" : -356595.02, "x" : 1393814.95 }, "position" : { "x" : 1393814.95, "y" : -356595.02 }, "selected" : false }, { "data" : { "id" : "2914", "station_name" : "八王子", "close_ymd" : "", "lon" : 139.338998, "post" : "192-0083", "e_status" : 0, "SUID" : 2914, "station_g_cd" : 1130620, "add" : "東京都八王子市旭町1-1", "line_cd" : 11312, "selected" : false, "open_ymd" : "", "name" : "1131230", "pref_name" : "東京都", "shared_name" : "1131230", "lat" : 35.655555, "y" : -356555.55, "x" : 1393389.98 }, "position" : { "x" : 1393389.98, "y" : -356555.55 }, "selected" : false }, { "data" : { "id" : "2915", "station_name" : "西八王子", "close_ymd" : "", "lon" : 139.31264, "post" : "193-0835", "e_status" : 0, "SUID" : 2915, "station_g_cd" : 1131111, "add" : "八王子市千人町2丁目", "line_cd" : 11312, "selected" : false, "open_ymd" : "", "name" : "1131231", "pref_name" : "東京都", "shared_name" : "1131231", "lat" : 35.656621, "y" : -356566.21, "x" : 1393126.4 }, "position" : { "x" : 1393126.4, "y" : -356566.21 }, "selected" : false }, { "data" : { "id" : "2916", "station_name" : "高尾", "close_ymd" : "", "lon" : 139.282288, "post" : "193-0844", "e_status" : 0, "SUID" : 2916, "station_g_cd" : 1131112, "add" : "八王子市高尾町", "line_cd" : 11312, "selected" : false, "open_ymd" : "", "name" : "1131232", "pref_name" : "東京都", "shared_name" : "1131232", "lat" : 35.642026, "y" : -356420.26, "x" : 1392822.88 }, "position" : { "x" : 1392822.88, "y" : -356420.26 }, "selected" : false }, { "data" : { "id" : "2901", "station_name" : "荻窪", "close_ymd" : "", "lon" : 139.620109, "post" : "167-0043", "e_status" : 0, "SUID" : 2901, "station_g_cd" : 1131217, "add" : "杉並区上荻1丁目", "line_cd" : 11312, "selected" : false, "open_ymd" : "", "name" : "1131217", "pref_name" : "東京都", "shared_name" : "1131217", "lat" : 35.704522999999995, "y" : -357045.2299999999, "x" : 1396201.09 }, "position" : { "x" : 1396201.09, "y" : -357045.2299999999 }, "selected" : false }, { "data" : { "id" : "2902", "station_name" : "西荻窪", "close_ymd" : "", "lon" : 139.59936100000002, "post" : "167-0053", "e_status" : 0, "SUID" : 2902, "station_g_cd" : 1131218, "add" : "杉並区西荻南3丁目", "line_cd" : 11312, "selected" : false, "open_ymd" : "", "name" : "1131218", "pref_name" : "東京都", "shared_name" : "1131218", "lat" : 35.703842, "y" : -357038.42000000004, "x" : 1395993.61 }, "position" : { "x" : 1395993.61, "y" : -357038.42000000004 }, "selected" : false }, { "data" : { "id" : "2903", "station_name" : "吉祥寺", "close_ymd" : "", "lon" : 139.57976499999998, "post" : "180-0003", "e_status" : 0, "SUID" : 2903, "station_g_cd" : 1131104, "add" : "東京都武蔵野市吉祥寺南町", "line_cd" : 11312, "selected" : false, "open_ymd" : "", "name" : "1131219", "pref_name" : "東京都", "shared_name" : "1131219", "lat" : 35.703119, "y" : -357031.19, "x" : 1395797.65 }, "position" : { "x" : 1395797.65, "y" : -357031.19 }, "selected" : false }, { "data" : { "id" : "2904", "station_name" : "三鷹", "close_ymd" : "", "lon" : 139.560325, "post" : "181-0013", "e_status" : 0, "SUID" : 2904, "station_g_cd" : 1131105, "add" : "東京都三鷹市下連雀三丁目46-1", "line_cd" : 11312, "selected" : false, "open_ymd" : "", "name" : "1131220", "pref_name" : "東京都", "shared_name" : "1131220", "lat" : 35.702683, "y" : -357026.83, "x" : 1395603.25 }, "position" : { "x" : 1395603.25, "y" : -357026.83 }, "selected" : false }, { "data" : { "id" : "2905", "station_name" : "武蔵境", "close_ymd" : "", "lon" : 139.54340200000001, "post" : "180-0022", "e_status" : 0, "SUID" : 2905, "station_g_cd" : 1131221, "add" : "武蔵野市境1丁目", "line_cd" : 11312, "selected" : false, "open_ymd" : "", "name" : "1131221", "pref_name" : "東京都", "shared_name" : "1131221", "lat" : 35.702083, "y" : -357020.83, "x" : 1395434.0200000003 }, "position" : { "x" : 1395434.0200000003, "y" : -357020.83 }, "selected" : false }, { "data" : { "id" : "2906", "station_name" : "東小金井", "close_ymd" : "", "lon" : 139.52483700000002, "post" : "184-0002", "e_status" : 0, "SUID" : 2906, "station_g_cd" : 1131222, "add" : "小金井市梶野町5丁目", "line_cd" : 11312, "selected" : false, "open_ymd" : "", "name" : "1131222", "pref_name" : "東京都", "shared_name" : "1131222", "lat" : 35.701643, "y" : -357016.43, "x" : 1395248.37 }, "position" : { "x" : 1395248.37, "y" : -357016.43 }, "selected" : false }, { "data" : { "id" : "2907", "station_name" : "武蔵小金井", "close_ymd" : "", "lon" : 139.506483, "post" : "184-0004", "e_status" : 0, "SUID" : 2907, "station_g_cd" : 1131223, "add" : "小金井市本町6丁目", "line_cd" : 11312, "selected" : false, "open_ymd" : "", "name" : "1131223", "pref_name" : "東京都", "shared_name" : "1131223", "lat" : 35.701337, "y" : -357013.37, "x" : 1395064.83 }, "position" : { "x" : 1395064.83, "y" : -357013.37 }, "selected" : false }, { "data" : { "id" : "2908", "station_name" : "国分寺", "close_ymd" : "", "lon" : 139.480841, "post" : "185-0012", "e_status" : 0, "SUID" : 2908, "station_g_cd" : 1131106, "add" : "東京都国分寺市本町二丁目1-23", "line_cd" : 11312, "selected" : false, "open_ymd" : "", "name" : "1131224", "pref_name" : "東京都", "shared_name" : "1131224", "lat" : 35.700123, "y" : -357001.23, "x" : 1394808.41 }, "position" : { "x" : 1394808.41, "y" : -357001.23 }, "selected" : false }, { "data" : { "id" : "2926", "station_name" : "新宿", "close_ymd" : "", "lon" : 139.70046399999998, "post" : "160-0022", "e_status" : 0, "SUID" : 2926, "station_g_cd" : 1130208, "add" : "東京都新宿区新宿三丁目38-1", "line_cd" : 11313, "selected" : false, "open_ymd" : "", "name" : "1131310", "pref_name" : "東京都", "shared_name" : "1131310", "lat" : 35.689729, "y" : -356897.29, "x" : 1397004.64 }, "position" : { "x" : 1397004.64, "y" : -356897.29 }, "selected" : false }, { "data" : { "id" : "2925", "station_name" : "大久保", "close_ymd" : "", "lon" : 139.69732, "post" : "169-0073", "e_status" : 0, "SUID" : 2925, "station_g_cd" : 1131212, "add" : "新宿区百人町1丁目", "line_cd" : 11313, "selected" : false, "open_ymd" : "", "name" : "1131309", "pref_name" : "東京都", "shared_name" : "1131309", "lat" : 35.700784000000006, "y" : -357007.8400000001, "x" : 1396973.2 }, "position" : { "x" : 1396973.2, "y" : -357007.8400000001 }, "selected" : false }, { "data" : { "id" : "2928", "station_name" : "千駄ケ谷", "close_ymd" : "", "lon" : 139.711644, "post" : "151-0051", "e_status" : 0, "SUID" : 2928, "station_g_cd" : 1131209, "add" : "東京都渋谷区千駄ヶ谷一丁目35-10", "line_cd" : 11313, "selected" : false, "open_ymd" : "", "name" : "1131312", "pref_name" : "東京都", "shared_name" : "1131312", "lat" : 35.681231, "y" : -356812.30999999994, "x" : 1397116.4400000002 }, "position" : { "x" : 1397116.4400000002, "y" : -356812.30999999994 }, "selected" : false }, { "data" : { "id" : "2927", "station_name" : "代々木", "close_ymd" : "", "lon" : 139.702042, "post" : "151-0053", "e_status" : 0, "SUID" : 2927, "station_g_cd" : 1130207, "add" : "東京都渋谷区代々木一丁目34-1", "line_cd" : 11313, "selected" : false, "open_ymd" : "", "name" : "1131311", "pref_name" : "東京都", "shared_name" : "1131311", "lat" : 35.683061, "y" : -356830.61000000004, "x" : 1397020.4200000002 }, "position" : { "x" : 1397020.4200000002, "y" : -356830.61000000004 }, "selected" : false }, { "data" : { "id" : "2930", "station_name" : "四ツ谷", "close_ymd" : "", "lon" : 139.73064399999998, "post" : "160-0004", "e_status" : 0, "SUID" : 2930, "station_g_cd" : 1131102, "add" : "東京都新宿区四谷一丁目", "line_cd" : 11313, "selected" : false, "open_ymd" : "", "name" : "1131314", "pref_name" : "東京都", "shared_name" : "1131314", "lat" : 35.686040999999996, "y" : -356860.41, "x" : 1397306.44 }, "position" : { "x" : 1397306.44, "y" : -356860.41 }, "selected" : false }, { "data" : { "id" : "2929", "station_name" : "信濃町", "close_ymd" : "", "lon" : 139.720729, "post" : "160-0016", "e_status" : 0, "SUID" : 2929, "station_g_cd" : 1131208, "add" : "新宿区信濃町", "line_cd" : 11313, "selected" : false, "open_ymd" : "", "name" : "1131313", "pref_name" : "東京都", "shared_name" : "1131313", "lat" : 35.680031, "y" : -356800.31, "x" : 1397207.29 }, "position" : { "x" : 1397207.29, "y" : -356800.31 }, "selected" : false }, { "data" : { "id" : "2932", "station_name" : "飯田橋", "close_ymd" : "", "lon" : 139.74514299999998, "post" : "102-0072", "e_status" : 0, "SUID" : 2932, "station_g_cd" : 1131205, "add" : "東京都千代田区飯田橋四丁目10-2", "line_cd" : 11313, "selected" : false, "open_ymd" : "", "name" : "1131316", "pref_name" : "東京都", "shared_name" : "1131316", "lat" : 35.701834999999996, "y" : -357018.35, "x" : 1397451.43 }, "position" : { "x" : 1397451.43, "y" : -357018.35 }, "selected" : false }, { "data" : { "id" : "2931", "station_name" : "市ケ谷", "close_ymd" : "", "lon" : 139.735241, "post" : "162-0843", "e_status" : 0, "SUID" : 2931, "station_g_cd" : 1131206, "add" : "東京都新宿区市谷田町一丁目1", "line_cd" : 11313, "selected" : false, "open_ymd" : "", "name" : "1131315", "pref_name" : "東京都", "shared_name" : "1131315", "lat" : 35.691105, "y" : -356911.05, "x" : 1397352.41 }, "position" : { "x" : 1397352.41, "y" : -356911.05 }, "selected" : false }, { "data" : { "id" : "2918", "station_name" : "吉祥寺", "close_ymd" : "", "lon" : 139.57976499999998, "post" : "180-0003", "e_status" : 0, "SUID" : 2918, "station_g_cd" : 1131104, "add" : "東京都武蔵野市吉祥寺南町", "line_cd" : 11313, "selected" : false, "open_ymd" : "", "name" : "1131302", "pref_name" : "東京都", "shared_name" : "1131302", "lat" : 35.703119, "y" : -357031.19, "x" : 1395797.65 }, "position" : { "x" : 1395797.65, "y" : -357031.19 }, "selected" : false }, { "data" : { "id" : "2917", "station_name" : "三鷹", "close_ymd" : "", "lon" : 139.560325, "post" : "181-0013", "e_status" : 0, "SUID" : 2917, "station_g_cd" : 1131105, "add" : "東京都三鷹市下連雀三丁目46-1", "line_cd" : 11313, "selected" : false, "open_ymd" : "", "name" : "1131301", "pref_name" : "東京都", "shared_name" : "1131301", "lat" : 35.702683, "y" : -357026.83, "x" : 1395603.25 }, "position" : { "x" : 1395603.25, "y" : -357026.83 }, "selected" : false }, { "data" : { "id" : "2920", "station_name" : "荻窪", "close_ymd" : "", "lon" : 139.620109, "post" : "167-0043", "e_status" : 0, "SUID" : 2920, "station_g_cd" : 1131217, "add" : "杉並区上荻1丁目", "line_cd" : 11313, "selected" : false, "open_ymd" : "", "name" : "1131304", "pref_name" : "東京都", "shared_name" : "1131304", "lat" : 35.704522999999995, "y" : -357045.2299999999, "x" : 1396201.09 }, "position" : { "x" : 1396201.09, "y" : -357045.2299999999 }, "selected" : false }, { "data" : { "id" : "2919", "station_name" : "西荻窪", "close_ymd" : "", "lon" : 139.59936100000002, "post" : "167-0053", "e_status" : 0, "SUID" : 2919, "station_g_cd" : 1131218, "add" : "杉並区西荻南3丁目", "line_cd" : 11313, "selected" : false, "open_ymd" : "", "name" : "1131303", "pref_name" : "東京都", "shared_name" : "1131303", "lat" : 35.703842, "y" : -357038.42000000004, "x" : 1395993.61 }, "position" : { "x" : 1395993.61, "y" : -357038.42000000004 }, "selected" : false }, { "data" : { "id" : "2922", "station_name" : "高円寺", "close_ymd" : "", "lon" : 139.649664, "post" : "166-0003", "e_status" : 0, "SUID" : 2922, "station_g_cd" : 1131215, "add" : "杉並区高円寺南4丁目", "line_cd" : 11313, "selected" : false, "open_ymd" : "", "name" : "1131306", "pref_name" : "東京都", "shared_name" : "1131306", "lat" : 35.705326, "y" : -357053.26, "x" : 1396496.64 }, "position" : { "x" : 1396496.64, "y" : -357053.26 }, "selected" : false }, { "data" : { "id" : "2921", "station_name" : "阿佐ケ谷", "close_ymd" : "", "lon" : 139.635868, "post" : "166-0004", "e_status" : 0, "SUID" : 2921, "station_g_cd" : 1131216, "add" : "東京都杉並区阿佐谷南三丁目36-2", "line_cd" : 11313, "selected" : false, "open_ymd" : "", "name" : "1131305", "pref_name" : "東京都", "shared_name" : "1131305", "lat" : 35.704817999999996, "y" : -357048.17999999993, "x" : 1396358.68 }, "position" : { "x" : 1396358.68, "y" : -357048.17999999993 }, "selected" : false }, { "data" : { "id" : "2924", "station_name" : "東中野", "close_ymd" : "", "lon" : 139.684436, "post" : "164-0003", "e_status" : 0, "SUID" : 2924, "station_g_cd" : 1131213, "add" : "中野区東中野4丁目", "line_cd" : 11313, "selected" : false, "open_ymd" : "", "name" : "1131308", "pref_name" : "東京都", "shared_name" : "1131308", "lat" : 35.706528999999996, "y" : -357065.29, "x" : 1396844.36 }, "position" : { "x" : 1396844.36, "y" : -357065.29 }, "selected" : false }, { "data" : { "id" : "2923", "station_name" : "中野", "close_ymd" : "", "lon" : 139.66583500000002, "post" : "164-0001", "e_status" : 0, "SUID" : 2923, "station_g_cd" : 1131214, "add" : "中野区中野5丁目", "line_cd" : 11313, "selected" : false, "open_ymd" : "", "name" : "1131307", "pref_name" : "東京都", "shared_name" : "1131307", "lat" : 35.705765, "y" : -357057.65, "x" : 1396658.35 }, "position" : { "x" : 1396658.35, "y" : -357057.65 }, "selected" : false }, { "data" : { "id" : "3004", "station_name" : "軍畑", "close_ymd" : "", "lon" : 139.207431, "post" : "198-0172", "e_status" : 0, "SUID" : 3004, "station_g_cd" : 1131518, "add" : "青梅市沢井1丁目", "line_cd" : 11315, "selected" : false, "open_ymd" : "", "name" : "1131518", "pref_name" : "東京都", "shared_name" : "1131518", "lat" : 35.807382000000004, "y" : -358073.82000000007, "x" : 1392074.31 }, "position" : { "x" : 1392074.31, "y" : -358073.82000000007 }, "selected" : false }, { "data" : { "id" : "3003", "station_name" : "二俣尾", "close_ymd" : "", "lon" : 139.216161, "post" : "198-0171", "e_status" : 0, "SUID" : 3003, "station_g_cd" : 1131517, "add" : "青梅市二俣尾4丁目", "line_cd" : 11315, "selected" : false, "open_ymd" : "", "name" : "1131517", "pref_name" : "東京都", "shared_name" : "1131517", "lat" : 35.803946, "y" : -358039.46, "x" : 1392161.61 }, "position" : { "x" : 1392161.61, "y" : -358039.46 }, "selected" : false }, { "data" : { "id" : "3002", "station_name" : "石神前", "close_ymd" : "", "lon" : 139.225096, "post" : "198-0171", "e_status" : 0, "SUID" : 3002, "station_g_cd" : 1131516, "add" : "青梅市二俣尾1丁目", "line_cd" : 11315, "selected" : false, "open_ymd" : "", "name" : "1131516", "pref_name" : "東京都", "shared_name" : "1131516", "lat" : 35.79683, "y" : -357968.3, "x" : 1392250.96 }, "position" : { "x" : 1392250.96, "y" : -357968.3 }, "selected" : false }, { "data" : { "id" : "3001", "station_name" : "日向和田", "close_ymd" : "", "lon" : 139.229515, "post" : "198-0046", "e_status" : 0, "SUID" : 3001, "station_g_cd" : 1131515, "add" : "青梅市日向和田3丁目", "line_cd" : 11315, "selected" : false, "open_ymd" : "", "name" : "1131515", "pref_name" : "東京都", "shared_name" : "1131515", "lat" : 35.788665, "y" : -357886.65, "x" : 1392295.15 }, "position" : { "x" : 1392295.15, "y" : -357886.65 }, "selected" : false }, { "data" : { "id" : "3000", "station_name" : "宮ノ平", "close_ymd" : "", "lon" : 139.23728899999998, "post" : "198-0046", "e_status" : 0, "SUID" : 3000, "station_g_cd" : 1131514, "add" : "青梅市日向和田2丁目", "line_cd" : 11315, "selected" : false, "open_ymd" : "", "name" : "1131514", "pref_name" : "東京都", "shared_name" : "1131514", "lat" : 35.787545, "y" : -357875.45, "x" : 1392372.8899999997 }, "position" : { "x" : 1392372.8899999997, "y" : -357875.45 }, "selected" : false }, { "data" : { "id" : "2999", "station_name" : "青梅", "close_ymd" : "", "lon" : 139.258096, "post" : "198-0000", "e_status" : 0, "SUID" : 2999, "station_g_cd" : 1131513, "add" : "青梅市青梅", "line_cd" : 11315, "selected" : false, "open_ymd" : "", "name" : "1131513", "pref_name" : "東京都", "shared_name" : "1131513", "lat" : 35.790512, "y" : -357905.12, "x" : 1392580.96 }, "position" : { "x" : 1392580.96, "y" : -357905.12 }, "selected" : false }, { "data" : { "id" : "2998", "station_name" : "東青梅", "close_ymd" : "", "lon" : 139.272841, "post" : "198-0042", "e_status" : 0, "SUID" : 2998, "station_g_cd" : 1131512, "add" : "青梅市東青梅1丁目", "line_cd" : 11315, "selected" : false, "open_ymd" : "", "name" : "1131512", "pref_name" : "東京都", "shared_name" : "1131512", "lat" : 35.789768, "y" : -357897.68000000005, "x" : 1392728.41 }, "position" : { "x" : 1392728.41, "y" : -357897.68000000005 }, "selected" : false }, { "data" : { "id" : "2997", "station_name" : "河辺", "close_ymd" : "", "lon" : 139.284032, "post" : "198-0036", "e_status" : 0, "SUID" : 2997, "station_g_cd" : 1131511, "add" : "青梅市河辺町5丁目", "line_cd" : 11315, "selected" : false, "open_ymd" : "", "name" : "1131511", "pref_name" : "東京都", "shared_name" : "1131511", "lat" : 35.784729999999996, "y" : -357847.3, "x" : 1392840.32 }, "position" : { "x" : 1392840.32, "y" : -357847.3 }, "selected" : false }, { "data" : { "id" : "3012", "station_name" : "拝島", "close_ymd" : "", "lon" : 139.343468, "post" : "196-0003", "e_status" : 0, "SUID" : 3012, "station_g_cd" : 1131506, "add" : "昭島市松原町4丁目", "line_cd" : 11316, "selected" : false, "open_ymd" : "", "name" : "1131601", "pref_name" : "東京都", "shared_name" : "1131601", "lat" : 35.721278000000005, "y" : -357212.78, "x" : 1393434.68 }, "position" : { "x" : 1393434.68, "y" : -357212.78 }, "selected" : false }, { "data" : { "id" : "3011", "station_name" : "奥多摩", "close_ymd" : "", "lon" : 139.09696100000002, "post" : "198-0212", "e_status" : 0, "SUID" : 3011, "station_g_cd" : 1131525, "add" : "西多摩郡奥多摩町氷川", "line_cd" : 11315, "selected" : false, "open_ymd" : "", "name" : "1131525", "pref_name" : "東京都", "shared_name" : "1131525", "lat" : 35.809357, "y" : -358093.57, "x" : 1390969.61 }, "position" : { "x" : 1390969.61, "y" : -358093.57 }, "selected" : false }, { "data" : { "id" : "3010", "station_name" : "白丸", "close_ymd" : "", "lon" : 139.11486100000002, "post" : "198-0107", "e_status" : 0, "SUID" : 3010, "station_g_cd" : 1131524, "add" : "西多摩郡奥多摩町白丸", "line_cd" : 11315, "selected" : false, "open_ymd" : "", "name" : "1131524", "pref_name" : "東京都", "shared_name" : "1131524", "lat" : 35.811735, "y" : -358117.35, "x" : 1391148.61 }, "position" : { "x" : 1391148.61, "y" : -358117.35 }, "selected" : false }, { "data" : { "id" : "3009", "station_name" : "鳩ノ巣", "close_ymd" : "", "lon" : 139.12893200000002, "post" : "198-0106", "e_status" : 0, "SUID" : 3009, "station_g_cd" : 1131523, "add" : "西多摩郡奥多摩町棚沢", "line_cd" : 11315, "selected" : false, "open_ymd" : "", "name" : "1131523", "pref_name" : "東京都", "shared_name" : "1131523", "lat" : 35.815127000000004, "y" : -358151.27, "x" : 1391289.3200000003 }, "position" : { "x" : 1391289.3200000003, "y" : -358151.27 }, "selected" : false }, { "data" : { "id" : "3008", "station_name" : "古里", "close_ymd" : "", "lon" : 139.152102, "post" : "198-0105", "e_status" : 0, "SUID" : 3008, "station_g_cd" : 1131522, "add" : "西多摩郡奥多摩町小丹波", "line_cd" : 11315, "selected" : false, "open_ymd" : "", "name" : "1131522", "pref_name" : "東京都", "shared_name" : "1131522", "lat" : 35.816247, "y" : -358162.47, "x" : 1391521.02 }, "position" : { "x" : 1391521.02, "y" : -358162.47 }, "selected" : false }, { "data" : { "id" : "3007", "station_name" : "川井", "close_ymd" : "", "lon" : 139.16429, "post" : "198-0102", "e_status" : 0, "SUID" : 3007, "station_g_cd" : 1131521, "add" : "西多摩郡奥多摩町川井", "line_cd" : 11315, "selected" : false, "open_ymd" : "", "name" : "1131521", "pref_name" : "東京都", "shared_name" : "1131521", "lat" : 35.813697, "y" : -358136.97, "x" : 1391642.9 }, "position" : { "x" : 1391642.9, "y" : -358136.97 }, "selected" : false }, { "data" : { "id" : "3006", "station_name" : "御嶽", "close_ymd" : "", "lon" : 139.18258899999998, "post" : "198-0173", "e_status" : 0, "SUID" : 3006, "station_g_cd" : 1131520, "add" : "青梅市御岳本町", "line_cd" : 11315, "selected" : false, "open_ymd" : "", "name" : "1131520", "pref_name" : "東京都", "shared_name" : "1131520", "lat" : 35.801468, "y" : -358014.68, "x" : 1391825.89 }, "position" : { "x" : 1391825.89, "y" : -358014.68 }, "selected" : false }, { "data" : { "id" : "3005", "station_name" : "沢井", "close_ymd" : "", "lon" : 139.193324, "post" : "198-0172", "e_status" : 0, "SUID" : 3005, "station_g_cd" : 1131519, "add" : "青梅市沢井2丁目", "line_cd" : 11315, "selected" : false, "open_ymd" : "", "name" : "1131519", "pref_name" : "東京都", "shared_name" : "1131519", "lat" : 35.80594, "y" : -358059.4, "x" : 1391933.24 }, "position" : { "x" : 1391933.24, "y" : -358059.4 }, "selected" : false }, { "data" : { "id" : "3019", "station_name" : "八王子", "close_ymd" : "", "lon" : 139.338998, "post" : "192-0083", "e_status" : 0, "SUID" : 3019, "station_g_cd" : 1130620, "add" : "東京都八王子市旭町1-1", "line_cd" : 11317, "selected" : false, "open_ymd" : "", "name" : "1131701", "pref_name" : "東京都", "shared_name" : "1131701", "lat" : 35.655555, "y" : -356555.55, "x" : 1393389.98 }, "position" : { "x" : 1393389.98, "y" : -356555.55 }, "selected" : false }, { "data" : { "id" : "3020", "station_name" : "北八王子", "close_ymd" : "", "lon" : 139.363348, "post" : "192-0032", "e_status" : 0, "SUID" : 3020, "station_g_cd" : 1131702, "add" : "八王子市石川町", "line_cd" : 11317, "selected" : false, "open_ymd" : "", "name" : "1131702", "pref_name" : "東京都", "shared_name" : "1131702", "lat" : 35.669232, "y" : -356692.32, "x" : 1393633.48 }, "position" : { "x" : 1393633.48, "y" : -356692.32 }, "selected" : false }, { "data" : { "id" : "3017", "station_name" : "武蔵増戸", "close_ymd" : "", "lon" : 139.256355, "post" : "190-0142", "e_status" : 0, "SUID" : 3017, "station_g_cd" : 1131606, "add" : "あきる野市伊奈", "line_cd" : 11316, "selected" : false, "open_ymd" : "", "name" : "1131606", "pref_name" : "東京都", "shared_name" : "1131606", "lat" : 35.730961, "y" : -357309.61, "x" : 1392563.55 }, "position" : { "x" : 1392563.55, "y" : -357309.61 }, "selected" : false }, { "data" : { "id" : "3018", "station_name" : "武蔵五日市", "close_ymd" : "", "lon" : 139.228039, "post" : "190-0163", "e_status" : 0, "SUID" : 3018, "station_g_cd" : 1131607, "add" : "あきる野市舘谷", "line_cd" : 11316, "selected" : false, "open_ymd" : "", "name" : "1131607", "pref_name" : "東京都", "shared_name" : "1131607", "lat" : 35.732248, "y" : -357322.48, "x" : 1392280.39 }, "position" : { "x" : 1392280.39, "y" : -357322.48 }, "selected" : false }, { "data" : { "id" : "3015", "station_name" : "秋川", "close_ymd" : "", "lon" : 139.286715, "post" : "197-0827", "e_status" : 0, "SUID" : 3015, "station_g_cd" : 1131604, "add" : "あきる野市油平", "line_cd" : 11316, "selected" : false, "open_ymd" : "", "name" : "1131604", "pref_name" : "東京都", "shared_name" : "1131604", "lat" : 35.727998, "y" : -357279.98, "x" : 1392867.15 }, "position" : { "x" : 1392867.15, "y" : -357279.98 }, "selected" : false }, { "data" : { "id" : "3016", "station_name" : "武蔵引田", "close_ymd" : "", "lon" : 139.26990700000002, "post" : "190-0100", "e_status" : 0, "SUID" : 3016, "station_g_cd" : 1131605, "add" : "あきる野市下引田", "line_cd" : 11316, "selected" : false, "open_ymd" : "", "name" : "1131605", "pref_name" : "東京都", "shared_name" : "1131605", "lat" : 35.729711, "y" : -357297.11000000004, "x" : 1392699.07 }, "position" : { "x" : 1392699.07, "y" : -357297.11000000004 }, "selected" : false }, { "data" : { "id" : "3013", "station_name" : "熊川", "close_ymd" : "", "lon" : 139.33584, "post" : "197-0003", "e_status" : 0, "SUID" : 3013, "station_g_cd" : 1131602, "add" : "福生市熊川北", "line_cd" : 11316, "selected" : false, "open_ymd" : "", "name" : "1131602", "pref_name" : "東京都", "shared_name" : "1131602", "lat" : 35.728321, "y" : -357283.21, "x" : 1393358.4 }, "position" : { "x" : 1393358.4, "y" : -357283.21 }, "selected" : false }, { "data" : { "id" : "3014", "station_name" : "東秋留", "close_ymd" : "", "lon" : 139.31166499999998, "post" : "197-0823", "e_status" : 0, "SUID" : 3014, "station_g_cd" : 1131603, "add" : "あきる野市野辺", "line_cd" : 11316, "selected" : false, "open_ymd" : "", "name" : "1131603", "pref_name" : "東京都", "shared_name" : "1131603", "lat" : 35.725904, "y" : -357259.04, "x" : 1393116.6499999997 }, "position" : { "x" : 1393116.6499999997, "y" : -357259.04 }, "selected" : false }, { "data" : { "id" : "3023", "station_name" : "東福生", "close_ymd" : "", "lon" : 139.33594, "post" : "197-0013", "e_status" : 0, "SUID" : 3023, "station_g_cd" : 1131705, "add" : "福生市武蔵野台1丁目", "line_cd" : 11317, "selected" : false, "open_ymd" : "", "name" : "1131705", "pref_name" : "東京都", "shared_name" : "1131705", "lat" : 35.745810999999996, "y" : -357458.11, "x" : 1393359.4 }, "position" : { "x" : 1393359.4, "y" : -357458.11 }, "selected" : false }, { "data" : { "id" : "3024", "station_name" : "箱根ケ崎", "close_ymd" : "", "lon" : 139.34680500000002, "post" : "190-1221", "e_status" : 0, "SUID" : 3024, "station_g_cd" : 1131706, "add" : "東京都西多摩郡瑞穂町大字箱根ケ崎397", "line_cd" : 11317, "selected" : false, "open_ymd" : "", "name" : "1131706", "pref_name" : "東京都", "shared_name" : "1131706", "lat" : 35.771158, "y" : -357711.58, "x" : 1393468.0500000003 }, "position" : { "x" : 1393468.0500000003, "y" : -357711.58 }, "selected" : false }, { "data" : { "id" : "3021", "station_name" : "小宮", "close_ymd" : "", "lon" : 139.368481, "post" : "192-0031", "e_status" : 0, "SUID" : 3021, "station_g_cd" : 1131703, "add" : "八王子市小宮町", "line_cd" : 11317, "selected" : false, "open_ymd" : "", "name" : "1131703", "pref_name" : "東京都", "shared_name" : "1131703", "lat" : 35.685798999999996, "y" : -356857.98999999993, "x" : 1393684.81 }, "position" : { "x" : 1393684.81, "y" : -356857.98999999993 }, "selected" : false }, { "data" : { "id" : "3022", "station_name" : "拝島", "close_ymd" : "", "lon" : 139.343468, "post" : "196-0003", "e_status" : 0, "SUID" : 3022, "station_g_cd" : 1131506, "add" : "昭島市松原町4丁目", "line_cd" : 11317, "selected" : false, "open_ymd" : "", "name" : "1131704", "pref_name" : "東京都", "shared_name" : "1131704", "lat" : 35.721278000000005, "y" : -357212.78, "x" : 1393434.68 }, "position" : { "x" : 1393434.68, "y" : -357212.78 }, "selected" : false }, { "data" : { "id" : "2987", "station_name" : "立川", "close_ymd" : "", "lon" : 139.413704, "post" : "190-0012", "e_status" : 0, "SUID" : 2987, "station_g_cd" : 1130325, "add" : "東京都立川市曙町二丁目1-1", "line_cd" : 11315, "selected" : false, "open_ymd" : "", "name" : "1131501", "pref_name" : "東京都", "shared_name" : "1131501", "lat" : 35.698202, "y" : -356982.02, "x" : 1394137.04 }, "position" : { "x" : 1394137.04, "y" : -356982.02 }, "selected" : false }, { "data" : { "id" : "2988", "station_name" : "西立川", "close_ymd" : "", "lon" : 139.39355600000002, "post" : "190-0013", "e_status" : 0, "SUID" : 2988, "station_g_cd" : 1131502, "add" : "立川市富士見町1丁目", "line_cd" : 11315, "selected" : false, "open_ymd" : "", "name" : "1131502", "pref_name" : "東京都", "shared_name" : "1131502", "lat" : 35.703526000000004, "y" : -357035.26, "x" : 1393935.5600000003 }, "position" : { "x" : 1393935.5600000003, "y" : -357035.26 }, "selected" : false }, { "data" : { "id" : "2993", "station_name" : "牛浜", "close_ymd" : "", "lon" : 139.333677, "post" : "197-0024", "e_status" : 0, "SUID" : 2993, "station_g_cd" : 1131507, "add" : "福生市牛浜", "line_cd" : 11315, "selected" : false, "open_ymd" : "", "name" : "1131507", "pref_name" : "東京都", "shared_name" : "1131507", "lat" : 35.734547, "y" : -357345.47, "x" : 1393336.77 }, "position" : { "x" : 1393336.77, "y" : -357345.47 }, "selected" : false }, { "data" : { "id" : "2994", "station_name" : "福生", "close_ymd" : "", "lon" : 139.32776299999998, "post" : "197-0022", "e_status" : 0, "SUID" : 2994, "station_g_cd" : 1131508, "add" : "福生市本町", "line_cd" : 11315, "selected" : false, "open_ymd" : "", "name" : "1131508", "pref_name" : "東京都", "shared_name" : "1131508", "lat" : 35.742456, "y" : -357424.56, "x" : 1393277.6299999997 }, "position" : { "x" : 1393277.6299999997, "y" : -357424.56 }, "selected" : false }, { "data" : { "id" : "2995", "station_name" : "羽村", "close_ymd" : "", "lon" : 139.31618799999998, "post" : "205-0014", "e_status" : 0, "SUID" : 2995, "station_g_cd" : 1131509, "add" : "羽村市羽東1丁目", "line_cd" : 11315, "selected" : false, "open_ymd" : "", "name" : "1131509", "pref_name" : "東京都", "shared_name" : "1131509", "lat" : 35.758072999999996, "y" : -357580.73, "x" : 1393161.88 }, "position" : { "x" : 1393161.88, "y" : -357580.73 }, "selected" : false }, { "data" : { "id" : "2996", "station_name" : "小作", "close_ymd" : "", "lon" : 139.302233, "post" : "205-0001", "e_status" : 0, "SUID" : 2996, "station_g_cd" : 1131510, "add" : "羽村市小作台", "line_cd" : 11315, "selected" : false, "open_ymd" : "", "name" : "1131510", "pref_name" : "東京都", "shared_name" : "1131510", "lat" : 35.776047999999996, "y" : -357760.48, "x" : 1393022.33 }, "position" : { "x" : 1393022.33, "y" : -357760.48 }, "selected" : false }, { "data" : { "id" : "2989", "station_name" : "東中神", "close_ymd" : "", "lon" : 139.38452900000001, "post" : "196-0034", "e_status" : 0, "SUID" : 2989, "station_g_cd" : 1131503, "add" : "昭島市玉川町1丁目", "line_cd" : 11315, "selected" : false, "open_ymd" : "", "name" : "1131503", "pref_name" : "東京都", "shared_name" : "1131503", "lat" : 35.706337, "y" : -357063.37, "x" : 1393845.29 }, "position" : { "x" : 1393845.29, "y" : -357063.37 }, "selected" : false }, { "data" : { "id" : "2990", "station_name" : "中神", "close_ymd" : "", "lon" : 139.375816, "post" : "196-0025", "e_status" : 0, "SUID" : 2990, "station_g_cd" : 1131504, "add" : "昭島市朝日町1丁目", "line_cd" : 11315, "selected" : false, "open_ymd" : "", "name" : "1131504", "pref_name" : "東京都", "shared_name" : "1131504", "lat" : 35.709058, "y" : -357090.58, "x" : 1393758.16 }, "position" : { "x" : 1393758.16, "y" : -357090.58 }, "selected" : false }, { "data" : { "id" : "2991", "station_name" : "昭島", "close_ymd" : "", "lon" : 139.361564, "post" : "196-0015", "e_status" : 0, "SUID" : 2991, "station_g_cd" : 1131505, "add" : "昭島市昭和町2丁目", "line_cd" : 11315, "selected" : false, "open_ymd" : "", "name" : "1131505", "pref_name" : "東京都", "shared_name" : "1131505", "lat" : 35.713305, "y" : -357133.05, "x" : 1393615.64 }, "position" : { "x" : 1393615.64, "y" : -357133.05 }, "selected" : false }, { "data" : { "id" : "2992", "station_name" : "拝島", "close_ymd" : "", "lon" : 139.343468, "post" : "196-0003", "e_status" : 0, "SUID" : 2992, "station_g_cd" : 1131506, "add" : "昭島市松原町4丁目", "line_cd" : 11315, "selected" : false, "open_ymd" : "", "name" : "1131506", "pref_name" : "東京都", "shared_name" : "1131506", "lat" : 35.721278000000005, "y" : -357212.78, "x" : 1393434.68 }, "position" : { "x" : 1393434.68, "y" : -357212.78 }, "selected" : false }, { "data" : { "id" : "3079", "station_name" : "三河島", "close_ymd" : "", "lon" : 139.777131, "post" : "116-0013", "e_status" : 0, "SUID" : 3079, "station_g_cd" : 1132003, "add" : "荒川区西日暮里1丁目", "line_cd" : 11320, "selected" : false, "open_ymd" : "", "name" : "1132003", "pref_name" : "東京都", "shared_name" : "1132003", "lat" : 35.733383, "y" : -357333.83, "x" : 1397771.31 }, "position" : { "x" : 1397771.31, "y" : -357333.83 }, "selected" : false }, { "data" : { "id" : "3080", "station_name" : "南千住", "close_ymd" : "", "lon" : 139.7994, "post" : "116-0003", "e_status" : 0, "SUID" : 3080, "station_g_cd" : 1132004, "add" : "荒川区南千住4丁目", "line_cd" : 11320, "selected" : false, "open_ymd" : "", "name" : "1132004", "pref_name" : "東京都", "shared_name" : "1132004", "lat" : 35.734033000000004, "y" : -357340.33, "x" : 1397994.0 }, "position" : { "x" : 1397994.0, "y" : -357340.33 }, "selected" : false }, { "data" : { "id" : "3077", "station_name" : "上野", "close_ymd" : "", "lon" : 139.777043, "post" : "110-0005", "e_status" : 0, "SUID" : 3077, "station_g_cd" : 1130220, "add" : "東京都台東区上野七丁目1-1", "line_cd" : 11320, "selected" : false, "open_ymd" : "", "name" : "1132001", "pref_name" : "東京都", "shared_name" : "1132001", "lat" : 35.71379, "y" : -357137.9, "x" : 1397770.43 }, "position" : { "x" : 1397770.43, "y" : -357137.9 }, "selected" : false }, { "data" : { "id" : "3078", "station_name" : "日暮里", "close_ymd" : "", "lon" : 139.771287, "post" : "116-0013", "e_status" : 0, "SUID" : 3078, "station_g_cd" : 1130218, "add" : "東京都荒川区西日暮里二丁目", "line_cd" : 11320, "selected" : false, "open_ymd" : "", "name" : "1132002", "pref_name" : "東京都", "shared_name" : "1132002", "lat" : 35.727908, "y" : -357279.08, "x" : 1397712.87 }, "position" : { "x" : 1397712.87, "y" : -357279.08 }, "selected" : false }, { "data" : { "id" : "3083", "station_name" : "亀有", "close_ymd" : "", "lon" : 139.847573, "post" : "125-0061", "e_status" : 0, "SUID" : 3083, "station_g_cd" : 1132007, "add" : "葛飾区亀有3", "line_cd" : 11320, "selected" : false, "open_ymd" : "", "name" : "1132007", "pref_name" : "東京都", "shared_name" : "1132007", "lat" : 35.766527, "y" : -357665.27, "x" : 1398475.7300000002 }, "position" : { "x" : 1398475.7300000002, "y" : -357665.27 }, "selected" : false }, { "data" : { "id" : "3084", "station_name" : "金町", "close_ymd" : "", "lon" : 139.870482, "post" : "125-0042", "e_status" : 0, "SUID" : 3084, "station_g_cd" : 1132008, "add" : "葛飾区金町6丁目", "line_cd" : 11320, "selected" : false, "open_ymd" : "", "name" : "1132008", "pref_name" : "東京都", "shared_name" : "1132008", "lat" : 35.769582, "y" : -357695.82, "x" : 1398704.82 }, "position" : { "x" : 1398704.82, "y" : -357695.82 }, "selected" : false }, { "data" : { "id" : "3081", "station_name" : "北千住", "close_ymd" : "", "lon" : 139.804872, "post" : "120-0026", "e_status" : 0, "SUID" : 3081, "station_g_cd" : 1132005, "add" : "足立区千住旭町", "line_cd" : 11320, "selected" : false, "open_ymd" : "", "name" : "1132005", "pref_name" : "東京都", "shared_name" : "1132005", "lat" : 35.749677, "y" : -357496.76999999996, "x" : 1398048.72 }, "position" : { "x" : 1398048.72, "y" : -357496.76999999996 }, "selected" : false }, { "data" : { "id" : "3082", "station_name" : "綾瀬", "close_ymd" : "", "lon" : 139.825019, "post" : "120-0005", "e_status" : 0, "SUID" : 3082, "station_g_cd" : 1132006, "add" : "足立区綾瀬3丁目", "line_cd" : 11320, "selected" : false, "open_ymd" : "", "name" : "1132006", "pref_name" : "東京都", "shared_name" : "1132006", "lat" : 35.762221999999994, "y" : -357622.2199999999, "x" : 1398250.19 }, "position" : { "x" : 1398250.19, "y" : -357622.2199999999 }, "selected" : false }, { "data" : { "id" : "3044", "station_name" : "上野", "close_ymd" : "", "lon" : 139.777043, "post" : "110-0005", "e_status" : 0, "SUID" : 3044, "station_g_cd" : 1130220, "add" : "東京都台東区上野七丁目1-1", "line_cd" : 11319, "selected" : false, "open_ymd" : "", "name" : "1131901", "pref_name" : "東京都", "shared_name" : "1131901", "lat" : 35.71379, "y" : -357137.9, "x" : 1397770.43 }, "position" : { "x" : 1397770.43, "y" : -357137.9 }, "selected" : false }, { "data" : { "id" : "3045", "station_name" : "尾久", "close_ymd" : "", "lon" : 139.753846, "post" : "114-0011", "e_status" : 0, "SUID" : 3045, "station_g_cd" : 1131902, "add" : "北区昭和町1丁目", "line_cd" : 11319, "selected" : false, "open_ymd" : "", "name" : "1131902", "pref_name" : "東京都", "shared_name" : "1131902", "lat" : 35.746829999999996, "y" : -357468.29999999993, "x" : 1397538.4600000002 }, "position" : { "x" : 1397538.4600000002, "y" : -357468.29999999993 }, "selected" : false }, { "data" : { "id" : "3046", "station_name" : "赤羽", "close_ymd" : "", "lon" : 139.72092800000001, "post" : "115-0045", "e_status" : 0, "SUID" : 3046, "station_g_cd" : 1131903, "add" : "北区赤羽1丁目", "line_cd" : 11319, "selected" : false, "open_ymd" : "", "name" : "1131903", "pref_name" : "東京都", "shared_name" : "1131903", "lat" : 35.778026000000004, "y" : -357780.26000000007, "x" : 1397209.2800000003 }, "position" : { "x" : 1397209.2800000003, "y" : -357780.26000000007 }, "selected" : false } ], "edges" : [ { "data" : { "id" : "18417", "source" : "8220", "target" : "8221", "line_name_k" : "ホクソウテツドウホクソウセン", "is_bullet" : false, "lon" : 140.03784499075186, "company_name_k" : "ホクソウテツドウ", "zoom" : 11, "SUID" : 18417, "company_type" : 0, "company_name_h" : "北総鉄道株式会社", "interaction" : "99340", "shared_interaction" : "99340", "company_url" : "http://www.hokuso-railway.co.jp/", "line_name" : "北総鉄道北総線", "selected" : false, "company_name" : "北総鉄道", "company_cd" : 152, "name" : "9934001 (99340) 9934002", "rr_cd" : 99, "company_name_r" : "北総鉄道", "e_status_x" : 0, "shared_name" : "9934001 (99340) 9934002", "lat" : 35.78346285846615, "e_status_y" : 0, "line_name_h" : "北総鉄道北総線" }, "selected" : false }, { "data" : { "id" : "16253", "source" : "5901", "target" : "5902", "line_name_k" : "ギンザセン", "is_bullet" : false, "lon" : 139.75720810526002, "company_name_k" : "トウキョウメトロ", "zoom" : 13, "SUID" : 16253, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28001", "shared_interaction" : "28001", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ銀座線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800109 (28001) 2800110", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800109 (28001) 2800110", "lat" : 35.68646095045909, "e_status_y" : 0, "line_name_h" : "東京メトロ銀座線" }, "selected" : false }, { "data" : { "id" : "16254", "source" : "5902", "target" : "5903", "line_name_k" : "ギンザセン", "is_bullet" : false, "lon" : 139.75720810526002, "company_name_k" : "トウキョウメトロ", "zoom" : 13, "SUID" : 16254, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28001", "shared_interaction" : "28001", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ銀座線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800110 (28001) 2800111", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800110 (28001) 2800111", "lat" : 35.68646095045909, "e_status_y" : 0, "line_name_h" : "東京メトロ銀座線" }, "selected" : false }, { "data" : { "id" : "16255", "source" : "5903", "target" : "5904", "line_name_k" : "ギンザセン", "is_bullet" : false, "lon" : 139.75720810526002, "company_name_k" : "トウキョウメトロ", "zoom" : 13, "SUID" : 16255, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28001", "shared_interaction" : "28001", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ銀座線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800111 (28001) 2800112", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800111 (28001) 2800112", "lat" : 35.68646095045909, "e_status_y" : 0, "line_name_h" : "東京メトロ銀座線" }, "selected" : false }, { "data" : { "id" : "16256", "source" : "5904", "target" : "5905", "line_name_k" : "ギンザセン", "is_bullet" : false, "lon" : 139.75720810526002, "company_name_k" : "トウキョウメトロ", "zoom" : 13, "SUID" : 16256, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28001", "shared_interaction" : "28001", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ銀座線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800112 (28001) 2800113", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800112 (28001) 2800113", "lat" : 35.68646095045909, "e_status_y" : 0, "line_name_h" : "東京メトロ銀座線" }, "selected" : false }, { "data" : { "id" : "16257", "source" : "5905", "target" : "5906", "line_name_k" : "ギンザセン", "is_bullet" : false, "lon" : 139.75720810526002, "company_name_k" : "トウキョウメトロ", "zoom" : 13, "SUID" : 16257, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28001", "shared_interaction" : "28001", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ銀座線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800113 (28001) 2800114", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800113 (28001) 2800114", "lat" : 35.68646095045909, "e_status_y" : 0, "line_name_h" : "東京メトロ銀座線" }, "selected" : false }, { "data" : { "id" : "16258", "source" : "5906", "target" : "5907", "line_name_k" : "ギンザセン", "is_bullet" : false, "lon" : 139.75720810526002, "company_name_k" : "トウキョウメトロ", "zoom" : 13, "SUID" : 16258, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28001", "shared_interaction" : "28001", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ銀座線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800114 (28001) 2800115", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800114 (28001) 2800115", "lat" : 35.68646095045909, "e_status_y" : 0, "line_name_h" : "東京メトロ銀座線" }, "selected" : false }, { "data" : { "id" : "16259", "source" : "5907", "target" : "5908", "line_name_k" : "ギンザセン", "is_bullet" : false, "lon" : 139.75720810526002, "company_name_k" : "トウキョウメトロ", "zoom" : 13, "SUID" : 16259, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28001", "shared_interaction" : "28001", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ銀座線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800115 (28001) 2800116", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800115 (28001) 2800116", "lat" : 35.68646095045909, "e_status_y" : 0, "line_name_h" : "東京メトロ銀座線" }, "selected" : false }, { "data" : { "id" : "16260", "source" : "5908", "target" : "5909", "line_name_k" : "ギンザセン", "is_bullet" : false, "lon" : 139.75720810526002, "company_name_k" : "トウキョウメトロ", "zoom" : 13, "SUID" : 16260, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28001", "shared_interaction" : "28001", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ銀座線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800116 (28001) 2800117", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800116 (28001) 2800117", "lat" : 35.68646095045909, "e_status_y" : 0, "line_name_h" : "東京メトロ銀座線" }, "selected" : false }, { "data" : { "id" : "16245", "source" : "5893", "target" : "5894", "line_name_k" : "ギンザセン", "is_bullet" : false, "lon" : 139.75720810526002, "company_name_k" : "トウキョウメトロ", "zoom" : 13, "SUID" : 16245, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28001", "shared_interaction" : "28001", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ銀座線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800101 (28001) 2800102", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800101 (28001) 2800102", "lat" : 35.68646095045909, "e_status_y" : 0, "line_name_h" : "東京メトロ銀座線" }, "selected" : false }, { "data" : { "id" : "16246", "source" : "5894", "target" : "5895", "line_name_k" : "ギンザセン", "is_bullet" : false, "lon" : 139.75720810526002, "company_name_k" : "トウキョウメトロ", "zoom" : 13, "SUID" : 16246, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28001", "shared_interaction" : "28001", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ銀座線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800102 (28001) 2800103", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800102 (28001) 2800103", "lat" : 35.68646095045909, "e_status_y" : 0, "line_name_h" : "東京メトロ銀座線" }, "selected" : false }, { "data" : { "id" : "16247", "source" : "5895", "target" : "5896", "line_name_k" : "ギンザセン", "is_bullet" : false, "lon" : 139.75720810526002, "company_name_k" : "トウキョウメトロ", "zoom" : 13, "SUID" : 16247, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28001", "shared_interaction" : "28001", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ銀座線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800103 (28001) 2800104", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800103 (28001) 2800104", "lat" : 35.68646095045909, "e_status_y" : 0, "line_name_h" : "東京メトロ銀座線" }, "selected" : false }, { "data" : { "id" : "16248", "source" : "5896", "target" : "5897", "line_name_k" : "ギンザセン", "is_bullet" : false, "lon" : 139.75720810526002, "company_name_k" : "トウキョウメトロ", "zoom" : 13, "SUID" : 16248, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28001", "shared_interaction" : "28001", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ銀座線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800104 (28001) 2800105", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800104 (28001) 2800105", "lat" : 35.68646095045909, "e_status_y" : 0, "line_name_h" : "東京メトロ銀座線" }, "selected" : false }, { "data" : { "id" : "16249", "source" : "5897", "target" : "5898", "line_name_k" : "ギンザセン", "is_bullet" : false, "lon" : 139.75720810526002, "company_name_k" : "トウキョウメトロ", "zoom" : 13, "SUID" : 16249, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28001", "shared_interaction" : "28001", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ銀座線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800105 (28001) 2800106", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800105 (28001) 2800106", "lat" : 35.68646095045909, "e_status_y" : 0, "line_name_h" : "東京メトロ銀座線" }, "selected" : false }, { "data" : { "id" : "16250", "source" : "5898", "target" : "5899", "line_name_k" : "ギンザセン", "is_bullet" : false, "lon" : 139.75720810526002, "company_name_k" : "トウキョウメトロ", "zoom" : 13, "SUID" : 16250, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28001", "shared_interaction" : "28001", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ銀座線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800106 (28001) 2800107", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800106 (28001) 2800107", "lat" : 35.68646095045909, "e_status_y" : 0, "line_name_h" : "東京メトロ銀座線" }, "selected" : false }, { "data" : { "id" : "16251", "source" : "5899", "target" : "5900", "line_name_k" : "ギンザセン", "is_bullet" : false, "lon" : 139.75720810526002, "company_name_k" : "トウキョウメトロ", "zoom" : 13, "SUID" : 16251, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28001", "shared_interaction" : "28001", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ銀座線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800107 (28001) 2800108", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800107 (28001) 2800108", "lat" : 35.68646095045909, "e_status_y" : 0, "line_name_h" : "東京メトロ銀座線" }, "selected" : false }, { "data" : { "id" : "16252", "source" : "5900", "target" : "5901", "line_name_k" : "ギンザセン", "is_bullet" : false, "lon" : 139.75720810526002, "company_name_k" : "トウキョウメトロ", "zoom" : 13, "SUID" : 16252, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28001", "shared_interaction" : "28001", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ銀座線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800108 (28001) 2800109", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800108 (28001) 2800109", "lat" : 35.68646095045909, "e_status_y" : 0, "line_name_h" : "東京メトロ銀座線" }, "selected" : false }, { "data" : { "id" : "16227", "source" : "5871", "target" : "5872", "line_name_k" : "ケイキュウクウコウセン", "is_bullet" : false, "lon" : 139.74978371429006, "company_name_k" : "ケイキュウデンテツ", "zoom" : 13, "SUID" : 16227, "company_type" : 2, "company_name_h" : "京浜急行電鉄株式会社", "interaction" : "27002", "shared_interaction" : "27002", "company_url" : "http://www.keikyu.co.jp/", "line_name" : "京急空港線", "selected" : false, "company_name" : "京急電鉄", "company_cd" : 17, "name" : "2700207 (27002) 2700206", "rr_cd" : 27, "company_name_r" : "京急", "e_status_x" : 0, "shared_name" : "2700207 (27002) 2700206", "lat" : 35.5550012530646, "e_status_y" : 0, "line_name_h" : "京急空港線" }, "selected" : false }, { "data" : { "id" : "16225", "source" : "5869", "target" : "5870", "line_name_k" : "ケイキュウクウコウセン", "is_bullet" : false, "lon" : 139.74978371429006, "company_name_k" : "ケイキュウデンテツ", "zoom" : 13, "SUID" : 16225, "company_type" : 2, "company_name_h" : "京浜急行電鉄株式会社", "interaction" : "27002", "shared_interaction" : "27002", "company_url" : "http://www.keikyu.co.jp/", "line_name" : "京急空港線", "selected" : false, "company_name" : "京急電鉄", "company_cd" : 17, "name" : "2700204 (27002) 2700205", "rr_cd" : 27, "company_name_r" : "京急", "e_status_x" : 0, "shared_name" : "2700204 (27002) 2700205", "lat" : 35.5550012530646, "e_status_y" : 0, "line_name_h" : "京急空港線" }, "selected" : false }, { "data" : { "id" : "16226", "source" : "5870", "target" : "5871", "line_name_k" : "ケイキュウクウコウセン", "is_bullet" : false, "lon" : 139.74978371429006, "company_name_k" : "ケイキュウデンテツ", "zoom" : 13, "SUID" : 16226, "company_type" : 2, "company_name_h" : "京浜急行電鉄株式会社", "interaction" : "27002", "shared_interaction" : "27002", "company_url" : "http://www.keikyu.co.jp/", "line_name" : "京急空港線", "selected" : false, "company_name" : "京急電鉄", "company_cd" : 17, "name" : "2700205 (27002) 2700207", "rr_cd" : 27, "company_name_r" : "京急", "e_status_x" : 0, "shared_name" : "2700205 (27002) 2700207", "lat" : 35.5550012530646, "e_status_y" : 0, "line_name_h" : "京急空港線" }, "selected" : false }, { "data" : { "id" : "16223", "source" : "5867", "target" : "5868", "line_name_k" : "ケイキュウクウコウセン", "is_bullet" : false, "lon" : 139.74978371429006, "company_name_k" : "ケイキュウデンテツ", "zoom" : 13, "SUID" : 16223, "company_type" : 2, "company_name_h" : "京浜急行電鉄株式会社", "interaction" : "27002", "shared_interaction" : "27002", "company_url" : "http://www.keikyu.co.jp/", "line_name" : "京急空港線", "selected" : false, "company_name" : "京急電鉄", "company_cd" : 17, "name" : "2700202 (27002) 2700203", "rr_cd" : 27, "company_name_r" : "京急", "e_status_x" : 0, "shared_name" : "2700202 (27002) 2700203", "lat" : 35.5550012530646, "e_status_y" : 0, "line_name_h" : "京急空港線" }, "selected" : false }, { "data" : { "id" : "16224", "source" : "5868", "target" : "5869", "line_name_k" : "ケイキュウクウコウセン", "is_bullet" : false, "lon" : 139.74978371429006, "company_name_k" : "ケイキュウデンテツ", "zoom" : 13, "SUID" : 16224, "company_type" : 2, "company_name_h" : "京浜急行電鉄株式会社", "interaction" : "27002", "shared_interaction" : "27002", "company_url" : "http://www.keikyu.co.jp/", "line_name" : "京急空港線", "selected" : false, "company_name" : "京急電鉄", "company_cd" : 17, "name" : "2700203 (27002) 2700204", "rr_cd" : 27, "company_name_r" : "京急", "e_status_x" : 0, "shared_name" : "2700203 (27002) 2700204", "lat" : 35.5550012530646, "e_status_y" : 0, "line_name_h" : "京急空港線" }, "selected" : false }, { "data" : { "id" : "16222", "source" : "5866", "target" : "5867", "line_name_k" : "ケイキュウクウコウセン", "is_bullet" : false, "lon" : 139.74978371429006, "company_name_k" : "ケイキュウデンテツ", "zoom" : 13, "SUID" : 16222, "company_type" : 2, "company_name_h" : "京浜急行電鉄株式会社", "interaction" : "27002", "shared_interaction" : "27002", "company_url" : "http://www.keikyu.co.jp/", "line_name" : "京急空港線", "selected" : false, "company_name" : "京急電鉄", "company_cd" : 17, "name" : "2700201 (27002) 2700202", "rr_cd" : 27, "company_name_r" : "京急", "e_status_x" : 0, "shared_name" : "2700201 (27002) 2700202", "lat" : 35.5550012530646, "e_status_y" : 0, "line_name_h" : "京急空港線" }, "selected" : false }, { "data" : { "id" : "16183", "source" : "5826", "target" : "5827", "line_name_k" : "ケイキュウホンセン", "is_bullet" : false, "lon" : 139.66542155593754, "company_name_k" : "ケイキュウデンテツ", "zoom" : 10, "SUID" : 16183, "company_type" : 2, "company_name_h" : "京浜急行電鉄株式会社", "interaction" : "27001", "shared_interaction" : "27001", "company_url" : "http://www.keikyu.co.jp/", "line_name" : "京急本線", "selected" : false, "company_name" : "京急電鉄", "company_cd" : 17, "name" : "2700111 (27001) 2700112", "rr_cd" : 27, "company_name_r" : "京急", "e_status_x" : 0, "shared_name" : "2700111 (27001) 2700112", "lat" : 35.470013165246186, "e_status_y" : 0, "line_name_h" : "京急本線" }, "selected" : false }, { "data" : { "id" : "16182", "source" : "5825", "target" : "5826", "line_name_k" : "ケイキュウホンセン", "is_bullet" : false, "lon" : 139.66542155593754, "company_name_k" : "ケイキュウデンテツ", "zoom" : 10, "SUID" : 16182, "company_type" : 2, "company_name_h" : "京浜急行電鉄株式会社", "interaction" : "27001", "shared_interaction" : "27001", "company_url" : "http://www.keikyu.co.jp/", "line_name" : "京急本線", "selected" : false, "company_name" : "京急電鉄", "company_cd" : 17, "name" : "2700110 (27001) 2700111", "rr_cd" : 27, "company_name_r" : "京急", "e_status_x" : 0, "shared_name" : "2700110 (27001) 2700111", "lat" : 35.470013165246186, "e_status_y" : 0, "line_name_h" : "京急本線" }, "selected" : false }, { "data" : { "id" : "16185", "source" : "5828", "target" : "5829", "line_name_k" : "ケイキュウホンセン", "is_bullet" : false, "lon" : 139.66542155593754, "company_name_k" : "ケイキュウデンテツ", "zoom" : 10, "SUID" : 16185, "company_type" : 2, "company_name_h" : "京浜急行電鉄株式会社", "interaction" : "27001", "shared_interaction" : "27001", "company_url" : "http://www.keikyu.co.jp/", "line_name" : "京急本線", "selected" : false, "company_name" : "京急電鉄", "company_cd" : 17, "name" : "2700113 (27001) 2700114", "rr_cd" : 27, "company_name_r" : "京急", "e_status_x" : 0, "shared_name" : "2700113 (27001) 2700114", "lat" : 35.470013165246186, "e_status_y" : 0, "line_name_h" : "京急本線" }, "selected" : false }, { "data" : { "id" : "16184", "source" : "5827", "target" : "5828", "line_name_k" : "ケイキュウホンセン", "is_bullet" : false, "lon" : 139.66542155593754, "company_name_k" : "ケイキュウデンテツ", "zoom" : 10, "SUID" : 16184, "company_type" : 2, "company_name_h" : "京浜急行電鉄株式会社", "interaction" : "27001", "shared_interaction" : "27001", "company_url" : "http://www.keikyu.co.jp/", "line_name" : "京急本線", "selected" : false, "company_name" : "京急電鉄", "company_cd" : 17, "name" : "2700112 (27001) 2700113", "rr_cd" : 27, "company_name_r" : "京急", "e_status_x" : 0, "shared_name" : "2700112 (27001) 2700113", "lat" : 35.470013165246186, "e_status_y" : 0, "line_name_h" : "京急本線" }, "selected" : false }, { "data" : { "id" : "16179", "source" : "5822", "target" : "5823", "line_name_k" : "ケイキュウホンセン", "is_bullet" : false, "lon" : 139.66542155593754, "company_name_k" : "ケイキュウデンテツ", "zoom" : 10, "SUID" : 16179, "company_type" : 2, "company_name_h" : "京浜急行電鉄株式会社", "interaction" : "27001", "shared_interaction" : "27001", "company_url" : "http://www.keikyu.co.jp/", "line_name" : "京急本線", "selected" : false, "company_name" : "京急電鉄", "company_cd" : 17, "name" : "2700107 (27001) 2700108", "rr_cd" : 27, "company_name_r" : "京急", "e_status_x" : 0, "shared_name" : "2700107 (27001) 2700108", "lat" : 35.470013165246186, "e_status_y" : 0, "line_name_h" : "京急本線" }, "selected" : false }, { "data" : { "id" : "16178", "source" : "5821", "target" : "5822", "line_name_k" : "ケイキュウホンセン", "is_bullet" : false, "lon" : 139.66542155593754, "company_name_k" : "ケイキュウデンテツ", "zoom" : 10, "SUID" : 16178, "company_type" : 2, "company_name_h" : "京浜急行電鉄株式会社", "interaction" : "27001", "shared_interaction" : "27001", "company_url" : "http://www.keikyu.co.jp/", "line_name" : "京急本線", "selected" : false, "company_name" : "京急電鉄", "company_cd" : 17, "name" : "2700106 (27001) 2700107", "rr_cd" : 27, "company_name_r" : "京急", "e_status_x" : 0, "shared_name" : "2700106 (27001) 2700107", "lat" : 35.470013165246186, "e_status_y" : 0, "line_name_h" : "京急本線" }, "selected" : false }, { "data" : { "id" : "16181", "source" : "5824", "target" : "5825", "line_name_k" : "ケイキュウホンセン", "is_bullet" : false, "lon" : 139.66542155593754, "company_name_k" : "ケイキュウデンテツ", "zoom" : 10, "SUID" : 16181, "company_type" : 2, "company_name_h" : "京浜急行電鉄株式会社", "interaction" : "27001", "shared_interaction" : "27001", "company_url" : "http://www.keikyu.co.jp/", "line_name" : "京急本線", "selected" : false, "company_name" : "京急電鉄", "company_cd" : 17, "name" : "2700109 (27001) 2700110", "rr_cd" : 27, "company_name_r" : "京急", "e_status_x" : 0, "shared_name" : "2700109 (27001) 2700110", "lat" : 35.470013165246186, "e_status_y" : 0, "line_name_h" : "京急本線" }, "selected" : false }, { "data" : { "id" : "16180", "source" : "5823", "target" : "5824", "line_name_k" : "ケイキュウホンセン", "is_bullet" : false, "lon" : 139.66542155593754, "company_name_k" : "ケイキュウデンテツ", "zoom" : 10, "SUID" : 16180, "company_type" : 2, "company_name_h" : "京浜急行電鉄株式会社", "interaction" : "27001", "shared_interaction" : "27001", "company_url" : "http://www.keikyu.co.jp/", "line_name" : "京急本線", "selected" : false, "company_name" : "京急電鉄", "company_cd" : 17, "name" : "2700108 (27001) 2700109", "rr_cd" : 27, "company_name_r" : "京急", "e_status_x" : 0, "shared_name" : "2700108 (27001) 2700109", "lat" : 35.470013165246186, "e_status_y" : 0, "line_name_h" : "京急本線" }, "selected" : false }, { "data" : { "id" : "16175", "source" : "5818", "target" : "5819", "line_name_k" : "ケイキュウホンセン", "is_bullet" : false, "lon" : 139.66542155593754, "company_name_k" : "ケイキュウデンテツ", "zoom" : 10, "SUID" : 16175, "company_type" : 2, "company_name_h" : "京浜急行電鉄株式会社", "interaction" : "27001", "shared_interaction" : "27001", "company_url" : "http://www.keikyu.co.jp/", "line_name" : "京急本線", "selected" : false, "company_name" : "京急電鉄", "company_cd" : 17, "name" : "2700103 (27001) 2700104", "rr_cd" : 27, "company_name_r" : "京急", "e_status_x" : 0, "shared_name" : "2700103 (27001) 2700104", "lat" : 35.470013165246186, "e_status_y" : 0, "line_name_h" : "京急本線" }, "selected" : false }, { "data" : { "id" : "16174", "source" : "5817", "target" : "5818", "line_name_k" : "ケイキュウホンセン", "is_bullet" : false, "lon" : 139.66542155593754, "company_name_k" : "ケイキュウデンテツ", "zoom" : 10, "SUID" : 16174, "company_type" : 2, "company_name_h" : "京浜急行電鉄株式会社", "interaction" : "27001", "shared_interaction" : "27001", "company_url" : "http://www.keikyu.co.jp/", "line_name" : "京急本線", "selected" : false, "company_name" : "京急電鉄", "company_cd" : 17, "name" : "2700102 (27001) 2700103", "rr_cd" : 27, "company_name_r" : "京急", "e_status_x" : 0, "shared_name" : "2700102 (27001) 2700103", "lat" : 35.470013165246186, "e_status_y" : 0, "line_name_h" : "京急本線" }, "selected" : false }, { "data" : { "id" : "16177", "source" : "5820", "target" : "5821", "line_name_k" : "ケイキュウホンセン", "is_bullet" : false, "lon" : 139.66542155593754, "company_name_k" : "ケイキュウデンテツ", "zoom" : 10, "SUID" : 16177, "company_type" : 2, "company_name_h" : "京浜急行電鉄株式会社", "interaction" : "27001", "shared_interaction" : "27001", "company_url" : "http://www.keikyu.co.jp/", "line_name" : "京急本線", "selected" : false, "company_name" : "京急電鉄", "company_cd" : 17, "name" : "2700105 (27001) 2700106", "rr_cd" : 27, "company_name_r" : "京急", "e_status_x" : 0, "shared_name" : "2700105 (27001) 2700106", "lat" : 35.470013165246186, "e_status_y" : 0, "line_name_h" : "京急本線" }, "selected" : false }, { "data" : { "id" : "16176", "source" : "5819", "target" : "5820", "line_name_k" : "ケイキュウホンセン", "is_bullet" : false, "lon" : 139.66542155593754, "company_name_k" : "ケイキュウデンテツ", "zoom" : 10, "SUID" : 16176, "company_type" : 2, "company_name_h" : "京浜急行電鉄株式会社", "interaction" : "27001", "shared_interaction" : "27001", "company_url" : "http://www.keikyu.co.jp/", "line_name" : "京急本線", "selected" : false, "company_name" : "京急電鉄", "company_cd" : 17, "name" : "2700104 (27001) 2700105", "rr_cd" : 27, "company_name_r" : "京急", "e_status_x" : 0, "shared_name" : "2700104 (27001) 2700105", "lat" : 35.470013165246186, "e_status_y" : 0, "line_name_h" : "京急本線" }, "selected" : false }, { "data" : { "id" : "16173", "source" : "5816", "target" : "5817", "line_name_k" : "ケイキュウホンセン", "is_bullet" : false, "lon" : 139.66542155593754, "company_name_k" : "ケイキュウデンテツ", "zoom" : 10, "SUID" : 16173, "company_type" : 2, "company_name_h" : "京浜急行電鉄株式会社", "interaction" : "27001", "shared_interaction" : "27001", "company_url" : "http://www.keikyu.co.jp/", "line_name" : "京急本線", "selected" : false, "company_name" : "京急電鉄", "company_cd" : 17, "name" : "2700101 (27001) 2700102", "rr_cd" : 27, "company_name_r" : "京急", "e_status_x" : 0, "shared_name" : "2700101 (27001) 2700102", "lat" : 35.470013165246186, "e_status_y" : 0, "line_name_h" : "京急本線" }, "selected" : false }, { "data" : { "id" : "16156", "source" : "5796", "target" : "5797", "line_name_k" : "トウキュウタマガワセン", "is_bullet" : false, "lon" : 139.68743273015912, "company_name_k" : "トウキョウデンテツ", "zoom" : 13, "SUID" : 16156, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26006", "shared_interaction" : "26006", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急多摩川線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600601 (26006) 2600602", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600601 (26006) 2600602", "lat" : 35.5724416406283, "e_status_y" : 0, "line_name_h" : "東急多摩川線" }, "selected" : false }, { "data" : { "id" : "16155", "source" : "5794", "target" : "5795", "line_name_k" : "トウキュウイケガミセン", "is_bullet" : false, "lon" : 139.70623944130853, "company_name_k" : "トウキョウデンテツ", "zoom" : 13, "SUID" : 16155, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26005", "shared_interaction" : "26005", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急池上線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600514 (26005) 2600515", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600514 (26005) 2600515", "lat" : 35.59393651096109, "e_status_y" : 0, "line_name_h" : "東急池上線" }, "selected" : false }, { "data" : { "id" : "16154", "source" : "5793", "target" : "5794", "line_name_k" : "トウキュウイケガミセン", "is_bullet" : false, "lon" : 139.70623944130853, "company_name_k" : "トウキョウデンテツ", "zoom" : 13, "SUID" : 16154, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26005", "shared_interaction" : "26005", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急池上線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600513 (26005) 2600514", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600513 (26005) 2600514", "lat" : 35.59393651096109, "e_status_y" : 0, "line_name_h" : "東急池上線" }, "selected" : false }, { "data" : { "id" : "16153", "source" : "5792", "target" : "5793", "line_name_k" : "トウキュウイケガミセン", "is_bullet" : false, "lon" : 139.70623944130853, "company_name_k" : "トウキョウデンテツ", "zoom" : 13, "SUID" : 16153, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26005", "shared_interaction" : "26005", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急池上線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600512 (26005) 2600513", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600512 (26005) 2600513", "lat" : 35.59393651096109, "e_status_y" : 0, "line_name_h" : "東急池上線" }, "selected" : false }, { "data" : { "id" : "16152", "source" : "5791", "target" : "5792", "line_name_k" : "トウキュウイケガミセン", "is_bullet" : false, "lon" : 139.70623944130853, "company_name_k" : "トウキョウデンテツ", "zoom" : 13, "SUID" : 16152, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26005", "shared_interaction" : "26005", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急池上線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600511 (26005) 2600512", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600511 (26005) 2600512", "lat" : 35.59393651096109, "e_status_y" : 0, "line_name_h" : "東急池上線" }, "selected" : false }, { "data" : { "id" : "16151", "source" : "5790", "target" : "5791", "line_name_k" : "トウキュウイケガミセン", "is_bullet" : false, "lon" : 139.70623944130853, "company_name_k" : "トウキョウデンテツ", "zoom" : 13, "SUID" : 16151, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26005", "shared_interaction" : "26005", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急池上線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600510 (26005) 2600511", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600510 (26005) 2600511", "lat" : 35.59393651096109, "e_status_y" : 0, "line_name_h" : "東急池上線" }, "selected" : false }, { "data" : { "id" : "16150", "source" : "5789", "target" : "5790", "line_name_k" : "トウキュウイケガミセン", "is_bullet" : false, "lon" : 139.70623944130853, "company_name_k" : "トウキョウデンテツ", "zoom" : 13, "SUID" : 16150, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26005", "shared_interaction" : "26005", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急池上線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600509 (26005) 2600510", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600509 (26005) 2600510", "lat" : 35.59393651096109, "e_status_y" : 0, "line_name_h" : "東急池上線" }, "selected" : false }, { "data" : { "id" : "16149", "source" : "5788", "target" : "5789", "line_name_k" : "トウキュウイケガミセン", "is_bullet" : false, "lon" : 139.70623944130853, "company_name_k" : "トウキョウデンテツ", "zoom" : 13, "SUID" : 16149, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26005", "shared_interaction" : "26005", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急池上線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600508 (26005) 2600509", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600508 (26005) 2600509", "lat" : 35.59393651096109, "e_status_y" : 0, "line_name_h" : "東急池上線" }, "selected" : false }, { "data" : { "id" : "16148", "source" : "5787", "target" : "5788", "line_name_k" : "トウキュウイケガミセン", "is_bullet" : false, "lon" : 139.70623944130853, "company_name_k" : "トウキョウデンテツ", "zoom" : 13, "SUID" : 16148, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26005", "shared_interaction" : "26005", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急池上線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600507 (26005) 2600508", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600507 (26005) 2600508", "lat" : 35.59393651096109, "e_status_y" : 0, "line_name_h" : "東急池上線" }, "selected" : false }, { "data" : { "id" : "16147", "source" : "5786", "target" : "5787", "line_name_k" : "トウキュウイケガミセン", "is_bullet" : false, "lon" : 139.70623944130853, "company_name_k" : "トウキョウデンテツ", "zoom" : 13, "SUID" : 16147, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26005", "shared_interaction" : "26005", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急池上線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600506 (26005) 2600507", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600506 (26005) 2600507", "lat" : 35.59393651096109, "e_status_y" : 0, "line_name_h" : "東急池上線" }, "selected" : false }, { "data" : { "id" : "16146", "source" : "5785", "target" : "5786", "line_name_k" : "トウキュウイケガミセン", "is_bullet" : false, "lon" : 139.70623944130853, "company_name_k" : "トウキョウデンテツ", "zoom" : 13, "SUID" : 16146, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26005", "shared_interaction" : "26005", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急池上線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600505 (26005) 2600506", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600505 (26005) 2600506", "lat" : 35.59393651096109, "e_status_y" : 0, "line_name_h" : "東急池上線" }, "selected" : false }, { "data" : { "id" : "16145", "source" : "5784", "target" : "5785", "line_name_k" : "トウキュウイケガミセン", "is_bullet" : false, "lon" : 139.70623944130853, "company_name_k" : "トウキョウデンテツ", "zoom" : 13, "SUID" : 16145, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26005", "shared_interaction" : "26005", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急池上線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600504 (26005) 2600505", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600504 (26005) 2600505", "lat" : 35.59393651096109, "e_status_y" : 0, "line_name_h" : "東急池上線" }, "selected" : false }, { "data" : { "id" : "16144", "source" : "5783", "target" : "5784", "line_name_k" : "トウキュウイケガミセン", "is_bullet" : false, "lon" : 139.70623944130853, "company_name_k" : "トウキョウデンテツ", "zoom" : 13, "SUID" : 16144, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26005", "shared_interaction" : "26005", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急池上線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600503 (26005) 2600504", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600503 (26005) 2600504", "lat" : 35.59393651096109, "e_status_y" : 0, "line_name_h" : "東急池上線" }, "selected" : false }, { "data" : { "id" : "16143", "source" : "5782", "target" : "5783", "line_name_k" : "トウキュウイケガミセン", "is_bullet" : false, "lon" : 139.70623944130853, "company_name_k" : "トウキョウデンテツ", "zoom" : 13, "SUID" : 16143, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26005", "shared_interaction" : "26005", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急池上線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600502 (26005) 2600503", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600502 (26005) 2600503", "lat" : 35.59393651096109, "e_status_y" : 0, "line_name_h" : "東急池上線" }, "selected" : false }, { "data" : { "id" : "16142", "source" : "5781", "target" : "5782", "line_name_k" : "トウキュウイケガミセン", "is_bullet" : false, "lon" : 139.70623944130853, "company_name_k" : "トウキョウデンテツ", "zoom" : 13, "SUID" : 16142, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26005", "shared_interaction" : "26005", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急池上線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600501 (26005) 2600502", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600501 (26005) 2600502", "lat" : 35.59393651096109, "e_status_y" : 0, "line_name_h" : "東急池上線" }, "selected" : false }, { "data" : { "id" : "16170", "source" : "5811", "target" : "5812", "line_name_k" : "トウキュウセタガヤセン", "is_bullet" : false, "lon" : 139.6525418613769, "company_name_k" : "トウキョウデンテツ", "zoom" : 14, "SUID" : 16170, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26007", "shared_interaction" : "26007", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急世田谷線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600709 (26007) 2600710", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600709 (26007) 2600710", "lat" : 35.653196779881476, "e_status_y" : 0, "line_name_h" : "東急世田谷線" }, "selected" : false }, { "data" : { "id" : "16168", "source" : "5809", "target" : "5810", "line_name_k" : "トウキュウセタガヤセン", "is_bullet" : false, "lon" : 139.6525418613769, "company_name_k" : "トウキョウデンテツ", "zoom" : 14, "SUID" : 16168, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26007", "shared_interaction" : "26007", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急世田谷線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600707 (26007) 2600708", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600707 (26007) 2600708", "lat" : 35.653196779881476, "e_status_y" : 0, "line_name_h" : "東急世田谷線" }, "selected" : false }, { "data" : { "id" : "16169", "source" : "5810", "target" : "5811", "line_name_k" : "トウキュウセタガヤセン", "is_bullet" : false, "lon" : 139.6525418613769, "company_name_k" : "トウキョウデンテツ", "zoom" : 14, "SUID" : 16169, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26007", "shared_interaction" : "26007", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急世田谷線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600708 (26007) 2600709", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600708 (26007) 2600709", "lat" : 35.653196779881476, "e_status_y" : 0, "line_name_h" : "東急世田谷線" }, "selected" : false }, { "data" : { "id" : "16166", "source" : "5807", "target" : "5808", "line_name_k" : "トウキュウセタガヤセン", "is_bullet" : false, "lon" : 139.6525418613769, "company_name_k" : "トウキョウデンテツ", "zoom" : 14, "SUID" : 16166, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26007", "shared_interaction" : "26007", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急世田谷線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600705 (26007) 2600706", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600705 (26007) 2600706", "lat" : 35.653196779881476, "e_status_y" : 0, "line_name_h" : "東急世田谷線" }, "selected" : false }, { "data" : { "id" : "16167", "source" : "5808", "target" : "5809", "line_name_k" : "トウキュウセタガヤセン", "is_bullet" : false, "lon" : 139.6525418613769, "company_name_k" : "トウキョウデンテツ", "zoom" : 14, "SUID" : 16167, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26007", "shared_interaction" : "26007", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急世田谷線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600706 (26007) 2600707", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600706 (26007) 2600707", "lat" : 35.653196779881476, "e_status_y" : 0, "line_name_h" : "東急世田谷線" }, "selected" : false }, { "data" : { "id" : "16164", "source" : "5805", "target" : "5806", "line_name_k" : "トウキュウセタガヤセン", "is_bullet" : false, "lon" : 139.6525418613769, "company_name_k" : "トウキョウデンテツ", "zoom" : 14, "SUID" : 16164, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26007", "shared_interaction" : "26007", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急世田谷線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600703 (26007) 2600704", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600703 (26007) 2600704", "lat" : 35.653196779881476, "e_status_y" : 0, "line_name_h" : "東急世田谷線" }, "selected" : false }, { "data" : { "id" : "16165", "source" : "5806", "target" : "5807", "line_name_k" : "トウキュウセタガヤセン", "is_bullet" : false, "lon" : 139.6525418613769, "company_name_k" : "トウキョウデンテツ", "zoom" : 14, "SUID" : 16165, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26007", "shared_interaction" : "26007", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急世田谷線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600704 (26007) 2600705", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600704 (26007) 2600705", "lat" : 35.653196779881476, "e_status_y" : 0, "line_name_h" : "東急世田谷線" }, "selected" : false }, { "data" : { "id" : "16162", "source" : "5803", "target" : "5804", "line_name_k" : "トウキュウセタガヤセン", "is_bullet" : false, "lon" : 139.6525418613769, "company_name_k" : "トウキョウデンテツ", "zoom" : 14, "SUID" : 16162, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26007", "shared_interaction" : "26007", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急世田谷線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600701 (26007) 2600702", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600701 (26007) 2600702", "lat" : 35.653196779881476, "e_status_y" : 0, "line_name_h" : "東急世田谷線" }, "selected" : false }, { "data" : { "id" : "16163", "source" : "5804", "target" : "5805", "line_name_k" : "トウキュウセタガヤセン", "is_bullet" : false, "lon" : 139.6525418613769, "company_name_k" : "トウキョウデンテツ", "zoom" : 14, "SUID" : 16163, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26007", "shared_interaction" : "26007", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急世田谷線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600702 (26007) 2600703", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600702 (26007) 2600703", "lat" : 35.653196779881476, "e_status_y" : 0, "line_name_h" : "東急世田谷線" }, "selected" : false }, { "data" : { "id" : "16161", "source" : "5801", "target" : "5802", "line_name_k" : "トウキュウタマガワセン", "is_bullet" : false, "lon" : 139.68743273015912, "company_name_k" : "トウキョウデンテツ", "zoom" : 13, "SUID" : 16161, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26006", "shared_interaction" : "26006", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急多摩川線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600606 (26006) 2600607", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600606 (26006) 2600607", "lat" : 35.5724416406283, "e_status_y" : 0, "line_name_h" : "東急多摩川線" }, "selected" : false }, { "data" : { "id" : "16159", "source" : "5799", "target" : "5800", "line_name_k" : "トウキュウタマガワセン", "is_bullet" : false, "lon" : 139.68743273015912, "company_name_k" : "トウキョウデンテツ", "zoom" : 13, "SUID" : 16159, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26006", "shared_interaction" : "26006", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急多摩川線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600604 (26006) 2600605", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600604 (26006) 2600605", "lat" : 35.5724416406283, "e_status_y" : 0, "line_name_h" : "東急多摩川線" }, "selected" : false }, { "data" : { "id" : "16160", "source" : "5800", "target" : "5801", "line_name_k" : "トウキュウタマガワセン", "is_bullet" : false, "lon" : 139.68743273015912, "company_name_k" : "トウキョウデンテツ", "zoom" : 13, "SUID" : 16160, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26006", "shared_interaction" : "26006", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急多摩川線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600605 (26006) 2600606", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600605 (26006) 2600606", "lat" : 35.5724416406283, "e_status_y" : 0, "line_name_h" : "東急多摩川線" }, "selected" : false }, { "data" : { "id" : "16157", "source" : "5797", "target" : "5798", "line_name_k" : "トウキュウタマガワセン", "is_bullet" : false, "lon" : 139.68743273015912, "company_name_k" : "トウキョウデンテツ", "zoom" : 13, "SUID" : 16157, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26006", "shared_interaction" : "26006", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急多摩川線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600602 (26006) 2600603", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600602 (26006) 2600603", "lat" : 35.5724416406283, "e_status_y" : 0, "line_name_h" : "東急多摩川線" }, "selected" : false }, { "data" : { "id" : "16158", "source" : "5798", "target" : "5799", "line_name_k" : "トウキュウタマガワセン", "is_bullet" : false, "lon" : 139.68743273015912, "company_name_k" : "トウキョウデンテツ", "zoom" : 13, "SUID" : 16158, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26006", "shared_interaction" : "26006", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急多摩川線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600603 (26006) 2600604", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600603 (26006) 2600604", "lat" : 35.5724416406283, "e_status_y" : 0, "line_name_h" : "東急多摩川線" }, "selected" : false }, { "data" : { "id" : "18361", "source" : "8157", "target" : "8158", "line_name_k" : "タマモノレール", "is_bullet" : false, "lon" : 139.42169850770813, "company_name_k" : "タマトシモノレール", "zoom" : 12, "SUID" : 18361, "company_type" : 0, "company_name_h" : "多摩都市モノレール株式会社", "interaction" : "99334", "shared_interaction" : "99334", "company_url" : "http://www.tama-monorail.co.jp/", "line_name" : "多摩モノレール", "selected" : false, "company_name" : "多摩都市モノレール", "company_cd" : 146, "name" : "9933412 (99334) 9933413", "rr_cd" : 99, "company_name_r" : "多摩モノレール", "e_status_x" : 0, "shared_name" : "9933412 (99334) 9933413", "lat" : 35.69743141486103, "e_status_y" : 0, "line_name_h" : "多摩都市モノレール線" }, "selected" : false }, { "data" : { "id" : "18362", "source" : "8158", "target" : "8159", "line_name_k" : "タマモノレール", "is_bullet" : false, "lon" : 139.42169850770813, "company_name_k" : "タマトシモノレール", "zoom" : 12, "SUID" : 18362, "company_type" : 0, "company_name_h" : "多摩都市モノレール株式会社", "interaction" : "99334", "shared_interaction" : "99334", "company_url" : "http://www.tama-monorail.co.jp/", "line_name" : "多摩モノレール", "selected" : false, "company_name" : "多摩都市モノレール", "company_cd" : 146, "name" : "9933413 (99334) 9933414", "rr_cd" : 99, "company_name_r" : "多摩モノレール", "e_status_x" : 0, "shared_name" : "9933413 (99334) 9933414", "lat" : 35.69743141486103, "e_status_y" : 0, "line_name_h" : "多摩都市モノレール線" }, "selected" : false }, { "data" : { "id" : "18363", "source" : "8159", "target" : "8160", "line_name_k" : "タマモノレール", "is_bullet" : false, "lon" : 139.42169850770813, "company_name_k" : "タマトシモノレール", "zoom" : 12, "SUID" : 18363, "company_type" : 0, "company_name_h" : "多摩都市モノレール株式会社", "interaction" : "99334", "shared_interaction" : "99334", "company_url" : "http://www.tama-monorail.co.jp/", "line_name" : "多摩モノレール", "selected" : false, "company_name" : "多摩都市モノレール", "company_cd" : 146, "name" : "9933414 (99334) 9933415", "rr_cd" : 99, "company_name_r" : "多摩モノレール", "e_status_x" : 0, "shared_name" : "9933414 (99334) 9933415", "lat" : 35.69743141486103, "e_status_y" : 0, "line_name_h" : "多摩都市モノレール線" }, "selected" : false }, { "data" : { "id" : "18364", "source" : "8160", "target" : "8161", "line_name_k" : "タマモノレール", "is_bullet" : false, "lon" : 139.42169850770813, "company_name_k" : "タマトシモノレール", "zoom" : 12, "SUID" : 18364, "company_type" : 0, "company_name_h" : "多摩都市モノレール株式会社", "interaction" : "99334", "shared_interaction" : "99334", "company_url" : "http://www.tama-monorail.co.jp/", "line_name" : "多摩モノレール", "selected" : false, "company_name" : "多摩都市モノレール", "company_cd" : 146, "name" : "9933415 (99334) 9933416", "rr_cd" : 99, "company_name_r" : "多摩モノレール", "e_status_x" : 0, "shared_name" : "9933415 (99334) 9933416", "lat" : 35.69743141486103, "e_status_y" : 0, "line_name_h" : "多摩都市モノレール線" }, "selected" : false }, { "data" : { "id" : "18365", "source" : "8161", "target" : "8162", "line_name_k" : "タマモノレール", "is_bullet" : false, "lon" : 139.42169850770813, "company_name_k" : "タマトシモノレール", "zoom" : 12, "SUID" : 18365, "company_type" : 0, "company_name_h" : "多摩都市モノレール株式会社", "interaction" : "99334", "shared_interaction" : "99334", "company_url" : "http://www.tama-monorail.co.jp/", "line_name" : "多摩モノレール", "selected" : false, "company_name" : "多摩都市モノレール", "company_cd" : 146, "name" : "9933416 (99334) 9933417", "rr_cd" : 99, "company_name_r" : "多摩モノレール", "e_status_x" : 0, "shared_name" : "9933416 (99334) 9933417", "lat" : 35.69743141486103, "e_status_y" : 0, "line_name_h" : "多摩都市モノレール線" }, "selected" : false }, { "data" : { "id" : "18366", "source" : "8162", "target" : "8163", "line_name_k" : "タマモノレール", "is_bullet" : false, "lon" : 139.42169850770813, "company_name_k" : "タマトシモノレール", "zoom" : 12, "SUID" : 18366, "company_type" : 0, "company_name_h" : "多摩都市モノレール株式会社", "interaction" : "99334", "shared_interaction" : "99334", "company_url" : "http://www.tama-monorail.co.jp/", "line_name" : "多摩モノレール", "selected" : false, "company_name" : "多摩都市モノレール", "company_cd" : 146, "name" : "9933417 (99334) 9933418", "rr_cd" : 99, "company_name_r" : "多摩モノレール", "e_status_x" : 0, "shared_name" : "9933417 (99334) 9933418", "lat" : 35.69743141486103, "e_status_y" : 0, "line_name_h" : "多摩都市モノレール線" }, "selected" : false }, { "data" : { "id" : "18367", "source" : "8163", "target" : "8164", "line_name_k" : "タマモノレール", "is_bullet" : false, "lon" : 139.42169850770813, "company_name_k" : "タマトシモノレール", "zoom" : 12, "SUID" : 18367, "company_type" : 0, "company_name_h" : "多摩都市モノレール株式会社", "interaction" : "99334", "shared_interaction" : "99334", "company_url" : "http://www.tama-monorail.co.jp/", "line_name" : "多摩モノレール", "selected" : false, "company_name" : "多摩都市モノレール", "company_cd" : 146, "name" : "9933418 (99334) 9933419", "rr_cd" : 99, "company_name_r" : "多摩モノレール", "e_status_x" : 0, "shared_name" : "9933418 (99334) 9933419", "lat" : 35.69743141486103, "e_status_y" : 0, "line_name_h" : "多摩都市モノレール線" }, "selected" : false }, { "data" : { "id" : "18353", "source" : "8149", "target" : "8150", "line_name_k" : "タマモノレール", "is_bullet" : false, "lon" : 139.42169850770813, "company_name_k" : "タマトシモノレール", "zoom" : 12, "SUID" : 18353, "company_type" : 0, "company_name_h" : "多摩都市モノレール株式会社", "interaction" : "99334", "shared_interaction" : "99334", "company_url" : "http://www.tama-monorail.co.jp/", "line_name" : "多摩モノレール", "selected" : false, "company_name" : "多摩都市モノレール", "company_cd" : 146, "name" : "9933404 (99334) 9933405", "rr_cd" : 99, "company_name_r" : "多摩モノレール", "e_status_x" : 0, "shared_name" : "9933404 (99334) 9933405", "lat" : 35.69743141486103, "e_status_y" : 0, "line_name_h" : "多摩都市モノレール線" }, "selected" : false }, { "data" : { "id" : "16121", "source" : "5758", "target" : "5759", "line_name_k" : "トウキュウデンエントシセン", "is_bullet" : false, "lon" : 139.58465916941623, "company_name_k" : "トウキョウデンテツ", "zoom" : 11, "SUID" : 16121, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26003", "shared_interaction" : "26003", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急田園都市線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600323 (26003) 2600324", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600323 (26003) 2600324", "lat" : 35.58324215005882, "e_status_y" : 0, "line_name_h" : "東急田園都市線" }, "selected" : false }, { "data" : { "id" : "18354", "source" : "8150", "target" : "8151", "line_name_k" : "タマモノレール", "is_bullet" : false, "lon" : 139.42169850770813, "company_name_k" : "タマトシモノレール", "zoom" : 12, "SUID" : 18354, "company_type" : 0, "company_name_h" : "多摩都市モノレール株式会社", "interaction" : "99334", "shared_interaction" : "99334", "company_url" : "http://www.tama-monorail.co.jp/", "line_name" : "多摩モノレール", "selected" : false, "company_name" : "多摩都市モノレール", "company_cd" : 146, "name" : "9933405 (99334) 9933406", "rr_cd" : 99, "company_name_r" : "多摩モノレール", "e_status_x" : 0, "shared_name" : "9933405 (99334) 9933406", "lat" : 35.69743141486103, "e_status_y" : 0, "line_name_h" : "多摩都市モノレール線" }, "selected" : false }, { "data" : { "id" : "16122", "source" : "5759", "target" : "5760", "line_name_k" : "トウキュウデンエントシセン", "is_bullet" : false, "lon" : 139.58465916941623, "company_name_k" : "トウキョウデンテツ", "zoom" : 11, "SUID" : 16122, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26003", "shared_interaction" : "26003", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急田園都市線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600324 (26003) 2600325", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600324 (26003) 2600325", "lat" : 35.58324215005882, "e_status_y" : 0, "line_name_h" : "東急田園都市線" }, "selected" : false }, { "data" : { "id" : "18355", "source" : "8151", "target" : "8152", "line_name_k" : "タマモノレール", "is_bullet" : false, "lon" : 139.42169850770813, "company_name_k" : "タマトシモノレール", "zoom" : 12, "SUID" : 18355, "company_type" : 0, "company_name_h" : "多摩都市モノレール株式会社", "interaction" : "99334", "shared_interaction" : "99334", "company_url" : "http://www.tama-monorail.co.jp/", "line_name" : "多摩モノレール", "selected" : false, "company_name" : "多摩都市モノレール", "company_cd" : 146, "name" : "9933406 (99334) 9933407", "rr_cd" : 99, "company_name_r" : "多摩モノレール", "e_status_x" : 0, "shared_name" : "9933406 (99334) 9933407", "lat" : 35.69743141486103, "e_status_y" : 0, "line_name_h" : "多摩都市モノレール線" }, "selected" : false }, { "data" : { "id" : "18356", "source" : "8152", "target" : "8153", "line_name_k" : "タマモノレール", "is_bullet" : false, "lon" : 139.42169850770813, "company_name_k" : "タマトシモノレール", "zoom" : 12, "SUID" : 18356, "company_type" : 0, "company_name_h" : "多摩都市モノレール株式会社", "interaction" : "99334", "shared_interaction" : "99334", "company_url" : "http://www.tama-monorail.co.jp/", "line_name" : "多摩モノレール", "selected" : false, "company_name" : "多摩都市モノレール", "company_cd" : 146, "name" : "9933407 (99334) 9933408", "rr_cd" : 99, "company_name_r" : "多摩モノレール", "e_status_x" : 0, "shared_name" : "9933407 (99334) 9933408", "lat" : 35.69743141486103, "e_status_y" : 0, "line_name_h" : "多摩都市モノレール線" }, "selected" : false }, { "data" : { "id" : "18357", "source" : "8153", "target" : "8154", "line_name_k" : "タマモノレール", "is_bullet" : false, "lon" : 139.42169850770813, "company_name_k" : "タマトシモノレール", "zoom" : 12, "SUID" : 18357, "company_type" : 0, "company_name_h" : "多摩都市モノレール株式会社", "interaction" : "99334", "shared_interaction" : "99334", "company_url" : "http://www.tama-monorail.co.jp/", "line_name" : "多摩モノレール", "selected" : false, "company_name" : "多摩都市モノレール", "company_cd" : 146, "name" : "9933408 (99334) 9933409", "rr_cd" : 99, "company_name_r" : "多摩モノレール", "e_status_x" : 0, "shared_name" : "9933408 (99334) 9933409", "lat" : 35.69743141486103, "e_status_y" : 0, "line_name_h" : "多摩都市モノレール線" }, "selected" : false }, { "data" : { "id" : "18358", "source" : "8154", "target" : "8155", "line_name_k" : "タマモノレール", "is_bullet" : false, "lon" : 139.42169850770813, "company_name_k" : "タマトシモノレール", "zoom" : 12, "SUID" : 18358, "company_type" : 0, "company_name_h" : "多摩都市モノレール株式会社", "interaction" : "99334", "shared_interaction" : "99334", "company_url" : "http://www.tama-monorail.co.jp/", "line_name" : "多摩モノレール", "selected" : false, "company_name" : "多摩都市モノレール", "company_cd" : 146, "name" : "9933409 (99334) 9933410", "rr_cd" : 99, "company_name_r" : "多摩モノレール", "e_status_x" : 0, "shared_name" : "9933409 (99334) 9933410", "lat" : 35.69743141486103, "e_status_y" : 0, "line_name_h" : "多摩都市モノレール線" }, "selected" : false }, { "data" : { "id" : "16125", "source" : "5763", "target" : "5764", "line_name_k" : "トウキュウオオイマチセン", "is_bullet" : false, "lon" : 139.67537624870124, "company_name_k" : "トウキョウデンテツ", "zoom" : 12, "SUID" : 16125, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26004", "shared_interaction" : "26004", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急大井町線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600401 (26004) 2600402", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600401 (26004) 2600402", "lat" : 35.607027243076224, "e_status_y" : 0, "line_name_h" : "東急大井町線" }, "selected" : false }, { "data" : { "id" : "18359", "source" : "8155", "target" : "8156", "line_name_k" : "タマモノレール", "is_bullet" : false, "lon" : 139.42169850770813, "company_name_k" : "タマトシモノレール", "zoom" : 12, "SUID" : 18359, "company_type" : 0, "company_name_h" : "多摩都市モノレール株式会社", "interaction" : "99334", "shared_interaction" : "99334", "company_url" : "http://www.tama-monorail.co.jp/", "line_name" : "多摩モノレール", "selected" : false, "company_name" : "多摩都市モノレール", "company_cd" : 146, "name" : "9933410 (99334) 9933411", "rr_cd" : 99, "company_name_r" : "多摩モノレール", "e_status_x" : 0, "shared_name" : "9933410 (99334) 9933411", "lat" : 35.69743141486103, "e_status_y" : 0, "line_name_h" : "多摩都市モノレール線" }, "selected" : false }, { "data" : { "id" : "18360", "source" : "8156", "target" : "8157", "line_name_k" : "タマモノレール", "is_bullet" : false, "lon" : 139.42169850770813, "company_name_k" : "タマトシモノレール", "zoom" : 12, "SUID" : 18360, "company_type" : 0, "company_name_h" : "多摩都市モノレール株式会社", "interaction" : "99334", "shared_interaction" : "99334", "company_url" : "http://www.tama-monorail.co.jp/", "line_name" : "多摩モノレール", "selected" : false, "company_name" : "多摩都市モノレール", "company_cd" : 146, "name" : "9933411 (99334) 9933412", "rr_cd" : 99, "company_name_r" : "多摩モノレール", "e_status_x" : 0, "shared_name" : "9933411 (99334) 9933412", "lat" : 35.69743141486103, "e_status_y" : 0, "line_name_h" : "多摩都市モノレール線" }, "selected" : false }, { "data" : { "id" : "16126", "source" : "5764", "target" : "5765", "line_name_k" : "トウキュウオオイマチセン", "is_bullet" : false, "lon" : 139.67537624870124, "company_name_k" : "トウキョウデンテツ", "zoom" : 12, "SUID" : 16126, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26004", "shared_interaction" : "26004", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急大井町線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600402 (26004) 2600403", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600402 (26004) 2600403", "lat" : 35.607027243076224, "e_status_y" : 0, "line_name_h" : "東急大井町線" }, "selected" : false }, { "data" : { "id" : "16128", "source" : "5766", "target" : "5767", "line_name_k" : "トウキュウオオイマチセン", "is_bullet" : false, "lon" : 139.67537624870124, "company_name_k" : "トウキョウデンテツ", "zoom" : 12, "SUID" : 16128, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26004", "shared_interaction" : "26004", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急大井町線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600404 (26004) 2600405", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600404 (26004) 2600405", "lat" : 35.607027243076224, "e_status_y" : 0, "line_name_h" : "東急大井町線" }, "selected" : false }, { "data" : { "id" : "16127", "source" : "5765", "target" : "5766", "line_name_k" : "トウキュウオオイマチセン", "is_bullet" : false, "lon" : 139.67537624870124, "company_name_k" : "トウキョウデンテツ", "zoom" : 12, "SUID" : 16127, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26004", "shared_interaction" : "26004", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急大井町線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600403 (26004) 2600404", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600403 (26004) 2600404", "lat" : 35.607027243076224, "e_status_y" : 0, "line_name_h" : "東急大井町線" }, "selected" : false }, { "data" : { "id" : "18378", "source" : "8176", "target" : "8177", "line_name_k" : "トウキョウモノレール", "is_bullet" : false, "lon" : 139.76328619095784, "company_name_k" : "トウキョウモノレール", "zoom" : 12, "SUID" : 18378, "company_type" : 0, "company_name_h" : "東京モノレール株式会社", "interaction" : "99336", "shared_interaction" : "99336", "company_url" : "http://www.tokyo-monorail.co.jp/", "line_name" : "東京モノレール", "selected" : false, "company_name" : "東京モノレール", "company_cd" : 148, "name" : "9933602 (99336) 9933603", "rr_cd" : 99, "company_name_r" : "東京モノレール", "e_status_x" : 0, "shared_name" : "9933602 (99336) 9933603", "lat" : 35.59102280877391, "e_status_y" : 0, "line_name_h" : "東京モノレール羽田空港線" }, "selected" : false }, { "data" : { "id" : "16130", "source" : "5768", "target" : "5769", "line_name_k" : "トウキュウオオイマチセン", "is_bullet" : false, "lon" : 139.67537624870124, "company_name_k" : "トウキョウデンテツ", "zoom" : 12, "SUID" : 16130, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26004", "shared_interaction" : "26004", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急大井町線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600406 (26004) 2600407", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600406 (26004) 2600407", "lat" : 35.607027243076224, "e_status_y" : 0, "line_name_h" : "東急大井町線" }, "selected" : false }, { "data" : { "id" : "18377", "source" : "8175", "target" : "8176", "line_name_k" : "トウキョウモノレール", "is_bullet" : false, "lon" : 139.76328619095784, "company_name_k" : "トウキョウモノレール", "zoom" : 12, "SUID" : 18377, "company_type" : 0, "company_name_h" : "東京モノレール株式会社", "interaction" : "99336", "shared_interaction" : "99336", "company_url" : "http://www.tokyo-monorail.co.jp/", "line_name" : "東京モノレール", "selected" : false, "company_name" : "東京モノレール", "company_cd" : 148, "name" : "9933601 (99336) 9933602", "rr_cd" : 99, "company_name_r" : "東京モノレール", "e_status_x" : 0, "shared_name" : "9933601 (99336) 9933602", "lat" : 35.59102280877391, "e_status_y" : 0, "line_name_h" : "東京モノレール羽田空港線" }, "selected" : false }, { "data" : { "id" : "16129", "source" : "5767", "target" : "5768", "line_name_k" : "トウキュウオオイマチセン", "is_bullet" : false, "lon" : 139.67537624870124, "company_name_k" : "トウキョウデンテツ", "zoom" : 12, "SUID" : 16129, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26004", "shared_interaction" : "26004", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急大井町線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600405 (26004) 2600406", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600405 (26004) 2600406", "lat" : 35.607027243076224, "e_status_y" : 0, "line_name_h" : "東急大井町線" }, "selected" : false }, { "data" : { "id" : "18380", "source" : "8178", "target" : "8179", "line_name_k" : "トウキョウモノレール", "is_bullet" : false, "lon" : 139.76328619095784, "company_name_k" : "トウキョウモノレール", "zoom" : 12, "SUID" : 18380, "company_type" : 0, "company_name_h" : "東京モノレール株式会社", "interaction" : "99336", "shared_interaction" : "99336", "company_url" : "http://www.tokyo-monorail.co.jp/", "line_name" : "東京モノレール", "selected" : false, "company_name" : "東京モノレール", "company_cd" : 148, "name" : "9933604 (99336) 9933605", "rr_cd" : 99, "company_name_r" : "東京モノレール", "e_status_x" : 0, "shared_name" : "9933604 (99336) 9933605", "lat" : 35.59102280877391, "e_status_y" : 0, "line_name_h" : "東京モノレール羽田空港線" }, "selected" : false }, { "data" : { "id" : "16132", "source" : "5770", "target" : "5771", "line_name_k" : "トウキュウオオイマチセン", "is_bullet" : false, "lon" : 139.67537624870124, "company_name_k" : "トウキョウデンテツ", "zoom" : 12, "SUID" : 16132, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26004", "shared_interaction" : "26004", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急大井町線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600408 (26004) 2600409", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600408 (26004) 2600409", "lat" : 35.607027243076224, "e_status_y" : 0, "line_name_h" : "東急大井町線" }, "selected" : false }, { "data" : { "id" : "18379", "source" : "8177", "target" : "8178", "line_name_k" : "トウキョウモノレール", "is_bullet" : false, "lon" : 139.76328619095784, "company_name_k" : "トウキョウモノレール", "zoom" : 12, "SUID" : 18379, "company_type" : 0, "company_name_h" : "東京モノレール株式会社", "interaction" : "99336", "shared_interaction" : "99336", "company_url" : "http://www.tokyo-monorail.co.jp/", "line_name" : "東京モノレール", "selected" : false, "company_name" : "東京モノレール", "company_cd" : 148, "name" : "9933603 (99336) 9933604", "rr_cd" : 99, "company_name_r" : "東京モノレール", "e_status_x" : 0, "shared_name" : "9933603 (99336) 9933604", "lat" : 35.59102280877391, "e_status_y" : 0, "line_name_h" : "東京モノレール羽田空港線" }, "selected" : false }, { "data" : { "id" : "16131", "source" : "5769", "target" : "5770", "line_name_k" : "トウキュウオオイマチセン", "is_bullet" : false, "lon" : 139.67537624870124, "company_name_k" : "トウキョウデンテツ", "zoom" : 12, "SUID" : 16131, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26004", "shared_interaction" : "26004", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急大井町線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600407 (26004) 2600408", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600407 (26004) 2600408", "lat" : 35.607027243076224, "e_status_y" : 0, "line_name_h" : "東急大井町線" }, "selected" : false }, { "data" : { "id" : "18382", "source" : "8180", "target" : "8181", "line_name_k" : "トウキョウモノレール", "is_bullet" : false, "lon" : 139.76328619095784, "company_name_k" : "トウキョウモノレール", "zoom" : 12, "SUID" : 18382, "company_type" : 0, "company_name_h" : "東京モノレール株式会社", "interaction" : "99336", "shared_interaction" : "99336", "company_url" : "http://www.tokyo-monorail.co.jp/", "line_name" : "東京モノレール", "selected" : false, "company_name" : "東京モノレール", "company_cd" : 148, "name" : "9933606 (99336) 9933607", "rr_cd" : 99, "company_name_r" : "東京モノレール", "e_status_x" : 0, "shared_name" : "9933606 (99336) 9933607", "lat" : 35.59102280877391, "e_status_y" : 0, "line_name_h" : "東京モノレール羽田空港線" }, "selected" : false }, { "data" : { "id" : "16134", "source" : "5772", "target" : "5773", "line_name_k" : "トウキュウオオイマチセン", "is_bullet" : false, "lon" : 139.67537624870124, "company_name_k" : "トウキョウデンテツ", "zoom" : 12, "SUID" : 16134, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26004", "shared_interaction" : "26004", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急大井町線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600410 (26004) 2600411", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600410 (26004) 2600411", "lat" : 35.607027243076224, "e_status_y" : 0, "line_name_h" : "東急大井町線" }, "selected" : false }, { "data" : { "id" : "18381", "source" : "8179", "target" : "8180", "line_name_k" : "トウキョウモノレール", "is_bullet" : false, "lon" : 139.76328619095784, "company_name_k" : "トウキョウモノレール", "zoom" : 12, "SUID" : 18381, "company_type" : 0, "company_name_h" : "東京モノレール株式会社", "interaction" : "99336", "shared_interaction" : "99336", "company_url" : "http://www.tokyo-monorail.co.jp/", "line_name" : "東京モノレール", "selected" : false, "company_name" : "東京モノレール", "company_cd" : 148, "name" : "9933605 (99336) 9933606", "rr_cd" : 99, "company_name_r" : "東京モノレール", "e_status_x" : 0, "shared_name" : "9933605 (99336) 9933606", "lat" : 35.59102280877391, "e_status_y" : 0, "line_name_h" : "東京モノレール羽田空港線" }, "selected" : false }, { "data" : { "id" : "16133", "source" : "5771", "target" : "5772", "line_name_k" : "トウキュウオオイマチセン", "is_bullet" : false, "lon" : 139.67537624870124, "company_name_k" : "トウキョウデンテツ", "zoom" : 12, "SUID" : 16133, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26004", "shared_interaction" : "26004", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急大井町線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600409 (26004) 2600410", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600409 (26004) 2600410", "lat" : 35.607027243076224, "e_status_y" : 0, "line_name_h" : "東急大井町線" }, "selected" : false }, { "data" : { "id" : "16136", "source" : "5774", "target" : "5775", "line_name_k" : "トウキュウオオイマチセン", "is_bullet" : false, "lon" : 139.67537624870124, "company_name_k" : "トウキョウデンテツ", "zoom" : 12, "SUID" : 16136, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26004", "shared_interaction" : "26004", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急大井町線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600412 (26004) 2600413", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600412 (26004) 2600413", "lat" : 35.607027243076224, "e_status_y" : 0, "line_name_h" : "東急大井町線" }, "selected" : false }, { "data" : { "id" : "16135", "source" : "5773", "target" : "5774", "line_name_k" : "トウキュウオオイマチセン", "is_bullet" : false, "lon" : 139.67537624870124, "company_name_k" : "トウキョウデンテツ", "zoom" : 12, "SUID" : 16135, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26004", "shared_interaction" : "26004", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急大井町線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600411 (26004) 2600412", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600411 (26004) 2600412", "lat" : 35.607027243076224, "e_status_y" : 0, "line_name_h" : "東急大井町線" }, "selected" : false }, { "data" : { "id" : "16138", "source" : "5776", "target" : "5777", "line_name_k" : "トウキュウオオイマチセン", "is_bullet" : false, "lon" : 139.67537624870124, "company_name_k" : "トウキョウデンテツ", "zoom" : 12, "SUID" : 16138, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26004", "shared_interaction" : "26004", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急大井町線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600414 (26004) 2600415", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600414 (26004) 2600415", "lat" : 35.607027243076224, "e_status_y" : 0, "line_name_h" : "東急大井町線" }, "selected" : false }, { "data" : { "id" : "16137", "source" : "5775", "target" : "5776", "line_name_k" : "トウキュウオオイマチセン", "is_bullet" : false, "lon" : 139.67537624870124, "company_name_k" : "トウキョウデンテツ", "zoom" : 12, "SUID" : 16137, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26004", "shared_interaction" : "26004", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急大井町線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600413 (26004) 2600414", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600413 (26004) 2600414", "lat" : 35.607027243076224, "e_status_y" : 0, "line_name_h" : "東急大井町線" }, "selected" : false }, { "data" : { "id" : "18392", "source" : "8191", "target" : "8192", "line_name_k" : "リンカイセン", "is_bullet" : false, "lon" : 139.7661296428223, "company_name_k" : "トウキョウリンカイコウソクテツドウ", "zoom" : 13, "SUID" : 18392, "company_type" : 0, "company_name_h" : "東京臨海高速鉄道株式会社", "interaction" : "99337", "shared_interaction" : "99337", "company_url" : "http://www.twr.co.jp/", "line_name" : "りんかい線", "selected" : false, "company_name" : "東京臨海高速鉄道", "company_cd" : 149, "name" : "9933706 (99337) 9933707", "rr_cd" : 99, "company_name_r" : "東京臨海高速鉄道", "e_status_x" : 0, "shared_name" : "9933706 (99337) 9933707", "lat" : 35.62373301157322, "e_status_y" : 0, "line_name_h" : "東京臨海高速鉄道りんかい線" }, "selected" : false }, { "data" : { "id" : "18393", "source" : "8192", "target" : "8193", "line_name_k" : "リンカイセン", "is_bullet" : false, "lon" : 139.7661296428223, "company_name_k" : "トウキョウリンカイコウソクテツドウ", "zoom" : 13, "SUID" : 18393, "company_type" : 0, "company_name_h" : "東京臨海高速鉄道株式会社", "interaction" : "99337", "shared_interaction" : "99337", "company_url" : "http://www.twr.co.jp/", "line_name" : "りんかい線", "selected" : false, "company_name" : "東京臨海高速鉄道", "company_cd" : 149, "name" : "9933707 (99337) 9933708", "rr_cd" : 99, "company_name_r" : "東京臨海高速鉄道", "e_status_x" : 0, "shared_name" : "9933707 (99337) 9933708", "lat" : 35.62373301157322, "e_status_y" : 0, "line_name_h" : "東京臨海高速鉄道りんかい線" }, "selected" : false }, { "data" : { "id" : "18390", "source" : "8189", "target" : "8190", "line_name_k" : "リンカイセン", "is_bullet" : false, "lon" : 139.7661296428223, "company_name_k" : "トウキョウリンカイコウソクテツドウ", "zoom" : 13, "SUID" : 18390, "company_type" : 0, "company_name_h" : "東京臨海高速鉄道株式会社", "interaction" : "99337", "shared_interaction" : "99337", "company_url" : "http://www.twr.co.jp/", "line_name" : "りんかい線", "selected" : false, "company_name" : "東京臨海高速鉄道", "company_cd" : 149, "name" : "9933704 (99337) 9933705", "rr_cd" : 99, "company_name_r" : "東京臨海高速鉄道", "e_status_x" : 0, "shared_name" : "9933704 (99337) 9933705", "lat" : 35.62373301157322, "e_status_y" : 0, "line_name_h" : "東京臨海高速鉄道りんかい線" }, "selected" : false }, { "data" : { "id" : "18391", "source" : "8190", "target" : "8191", "line_name_k" : "リンカイセン", "is_bullet" : false, "lon" : 139.7661296428223, "company_name_k" : "トウキョウリンカイコウソクテツドウ", "zoom" : 13, "SUID" : 18391, "company_type" : 0, "company_name_h" : "東京臨海高速鉄道株式会社", "interaction" : "99337", "shared_interaction" : "99337", "company_url" : "http://www.twr.co.jp/", "line_name" : "りんかい線", "selected" : false, "company_name" : "東京臨海高速鉄道", "company_cd" : 149, "name" : "9933705 (99337) 9933706", "rr_cd" : 99, "company_name_r" : "東京臨海高速鉄道", "e_status_x" : 0, "shared_name" : "9933705 (99337) 9933706", "lat" : 35.62373301157322, "e_status_y" : 0, "line_name_h" : "東京臨海高速鉄道りんかい線" }, "selected" : false }, { "data" : { "id" : "16087", "source" : "5723", "target" : "5724", "line_name_k" : "トウキュウメグロセン", "is_bullet" : false, "lon" : 139.67835129424657, "company_name_k" : "トウキョウデンテツ", "zoom" : 13, "SUID" : 16087, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26002", "shared_interaction" : "26002", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急目黒線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600201 (26002) 2600202", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600201 (26002) 2600202", "lat" : 35.603755429181255, "e_status_y" : 0, "line_name_h" : "東急目黒線" }, "selected" : false }, { "data" : { "id" : "16088", "source" : "5724", "target" : "5725", "line_name_k" : "トウキュウメグロセン", "is_bullet" : false, "lon" : 139.67835129424657, "company_name_k" : "トウキョウデンテツ", "zoom" : 13, "SUID" : 16088, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26002", "shared_interaction" : "26002", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急目黒線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600202 (26002) 2600203", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600202 (26002) 2600203", "lat" : 35.603755429181255, "e_status_y" : 0, "line_name_h" : "東急目黒線" }, "selected" : false }, { "data" : { "id" : "16091", "source" : "5727", "target" : "5728", "line_name_k" : "トウキュウメグロセン", "is_bullet" : false, "lon" : 139.67835129424657, "company_name_k" : "トウキョウデンテツ", "zoom" : 13, "SUID" : 16091, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26002", "shared_interaction" : "26002", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急目黒線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600205 (26002) 2600206", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600205 (26002) 2600206", "lat" : 35.603755429181255, "e_status_y" : 0, "line_name_h" : "東急目黒線" }, "selected" : false }, { "data" : { "id" : "18385", "source" : "8183", "target" : "8184", "line_name_k" : "トウキョウモノレール", "is_bullet" : false, "lon" : 139.76328619095784, "company_name_k" : "トウキョウモノレール", "zoom" : 12, "SUID" : 18385, "company_type" : 0, "company_name_h" : "東京モノレール株式会社", "interaction" : "99336", "shared_interaction" : "99336", "company_url" : "http://www.tokyo-monorail.co.jp/", "line_name" : "東京モノレール", "selected" : false, "company_name" : "東京モノレール", "company_cd" : 148, "name" : "9933608 (99336) 9933609", "rr_cd" : 99, "company_name_r" : "東京モノレール", "e_status_x" : 0, "shared_name" : "9933608 (99336) 9933609", "lat" : 35.59102280877391, "e_status_y" : 0, "line_name_h" : "東京モノレール羽田空港線" }, "selected" : false }, { "data" : { "id" : "16092", "source" : "5728", "target" : "5729", "line_name_k" : "トウキュウメグロセン", "is_bullet" : false, "lon" : 139.67835129424657, "company_name_k" : "トウキョウデンテツ", "zoom" : 13, "SUID" : 16092, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26002", "shared_interaction" : "26002", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急目黒線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600206 (26002) 2600207", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600206 (26002) 2600207", "lat" : 35.603755429181255, "e_status_y" : 0, "line_name_h" : "東急目黒線" }, "selected" : false }, { "data" : { "id" : "18386", "source" : "8184", "target" : "8185", "line_name_k" : "トウキョウモノレール", "is_bullet" : false, "lon" : 139.76328619095784, "company_name_k" : "トウキョウモノレール", "zoom" : 12, "SUID" : 18386, "company_type" : 0, "company_name_h" : "東京モノレール株式会社", "interaction" : "99336", "shared_interaction" : "99336", "company_url" : "http://www.tokyo-monorail.co.jp/", "line_name" : "東京モノレール", "selected" : false, "company_name" : "東京モノレール", "company_cd" : 148, "name" : "9933609 (99336) 9933610", "rr_cd" : 99, "company_name_r" : "東京モノレール", "e_status_x" : 0, "shared_name" : "9933609 (99336) 9933610", "lat" : 35.59102280877391, "e_status_y" : 0, "line_name_h" : "東京モノレール羽田空港線" }, "selected" : false }, { "data" : { "id" : "16089", "source" : "5725", "target" : "5726", "line_name_k" : "トウキュウメグロセン", "is_bullet" : false, "lon" : 139.67835129424657, "company_name_k" : "トウキョウデンテツ", "zoom" : 13, "SUID" : 16089, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26002", "shared_interaction" : "26002", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急目黒線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600203 (26002) 2600204", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600203 (26002) 2600204", "lat" : 35.603755429181255, "e_status_y" : 0, "line_name_h" : "東急目黒線" }, "selected" : false }, { "data" : { "id" : "18383", "source" : "8181", "target" : "8182", "line_name_k" : "トウキョウモノレール", "is_bullet" : false, "lon" : 139.76328619095784, "company_name_k" : "トウキョウモノレール", "zoom" : 12, "SUID" : 18383, "company_type" : 0, "company_name_h" : "東京モノレール株式会社", "interaction" : "99336", "shared_interaction" : "99336", "company_url" : "http://www.tokyo-monorail.co.jp/", "line_name" : "東京モノレール", "selected" : false, "company_name" : "東京モノレール", "company_cd" : 148, "name" : "9933607 (99336) 9933611", "rr_cd" : 99, "company_name_r" : "東京モノレール", "e_status_x" : 0, "shared_name" : "9933607 (99336) 9933611", "lat" : 35.59102280877391, "e_status_y" : 0, "line_name_h" : "東京モノレール羽田空港線" }, "selected" : false }, { "data" : { "id" : "16090", "source" : "5726", "target" : "5727", "line_name_k" : "トウキュウメグロセン", "is_bullet" : false, "lon" : 139.67835129424657, "company_name_k" : "トウキョウデンテツ", "zoom" : 13, "SUID" : 16090, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26002", "shared_interaction" : "26002", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急目黒線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600204 (26002) 2600205", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600204 (26002) 2600205", "lat" : 35.603755429181255, "e_status_y" : 0, "line_name_h" : "東急目黒線" }, "selected" : false }, { "data" : { "id" : "18384", "source" : "8182", "target" : "8183", "line_name_k" : "トウキョウモノレール", "is_bullet" : false, "lon" : 139.76328619095784, "company_name_k" : "トウキョウモノレール", "zoom" : 12, "SUID" : 18384, "company_type" : 0, "company_name_h" : "東京モノレール株式会社", "interaction" : "99336", "shared_interaction" : "99336", "company_url" : "http://www.tokyo-monorail.co.jp/", "line_name" : "東京モノレール", "selected" : false, "company_name" : "東京モノレール", "company_cd" : 148, "name" : "9933611 (99336) 9933608", "rr_cd" : 99, "company_name_r" : "東京モノレール", "e_status_x" : 0, "shared_name" : "9933611 (99336) 9933608", "lat" : 35.59102280877391, "e_status_y" : 0, "line_name_h" : "東京モノレール羽田空港線" }, "selected" : false }, { "data" : { "id" : "18388", "source" : "8187", "target" : "8188", "line_name_k" : "リンカイセン", "is_bullet" : false, "lon" : 139.7661296428223, "company_name_k" : "トウキョウリンカイコウソクテツドウ", "zoom" : 13, "SUID" : 18388, "company_type" : 0, "company_name_h" : "東京臨海高速鉄道株式会社", "interaction" : "99337", "shared_interaction" : "99337", "company_url" : "http://www.twr.co.jp/", "line_name" : "りんかい線", "selected" : false, "company_name" : "東京臨海高速鉄道", "company_cd" : 149, "name" : "9933702 (99337) 9933703", "rr_cd" : 99, "company_name_r" : "東京臨海高速鉄道", "e_status_x" : 0, "shared_name" : "9933702 (99337) 9933703", "lat" : 35.62373301157322, "e_status_y" : 0, "line_name_h" : "東京臨海高速鉄道りんかい線" }, "selected" : false }, { "data" : { "id" : "18389", "source" : "8188", "target" : "8189", "line_name_k" : "リンカイセン", "is_bullet" : false, "lon" : 139.7661296428223, "company_name_k" : "トウキョウリンカイコウソクテツドウ", "zoom" : 13, "SUID" : 18389, "company_type" : 0, "company_name_h" : "東京臨海高速鉄道株式会社", "interaction" : "99337", "shared_interaction" : "99337", "company_url" : "http://www.twr.co.jp/", "line_name" : "りんかい線", "selected" : false, "company_name" : "東京臨海高速鉄道", "company_cd" : 149, "name" : "9933703 (99337) 9933704", "rr_cd" : 99, "company_name_r" : "東京臨海高速鉄道", "e_status_x" : 0, "shared_name" : "9933703 (99337) 9933704", "lat" : 35.62373301157322, "e_status_y" : 0, "line_name_h" : "東京臨海高速鉄道りんかい線" }, "selected" : false }, { "data" : { "id" : "16093", "source" : "5729", "target" : "5730", "line_name_k" : "トウキュウメグロセン", "is_bullet" : false, "lon" : 139.67835129424657, "company_name_k" : "トウキョウデンテツ", "zoom" : 13, "SUID" : 16093, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26002", "shared_interaction" : "26002", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急目黒線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600207 (26002) 2600208", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600207 (26002) 2600208", "lat" : 35.603755429181255, "e_status_y" : 0, "line_name_h" : "東急目黒線" }, "selected" : false }, { "data" : { "id" : "16094", "source" : "5730", "target" : "5731", "line_name_k" : "トウキュウメグロセン", "is_bullet" : false, "lon" : 139.67835129424657, "company_name_k" : "トウキョウデンテツ", "zoom" : 13, "SUID" : 16094, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26002", "shared_interaction" : "26002", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急目黒線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600208 (26002) 2600209", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600208 (26002) 2600209", "lat" : 35.603755429181255, "e_status_y" : 0, "line_name_h" : "東急目黒線" }, "selected" : false }, { "data" : { "id" : "18387", "source" : "8186", "target" : "8187", "line_name_k" : "リンカイセン", "is_bullet" : false, "lon" : 139.7661296428223, "company_name_k" : "トウキョウリンカイコウソクテツドウ", "zoom" : 13, "SUID" : 18387, "company_type" : 0, "company_name_h" : "東京臨海高速鉄道株式会社", "interaction" : "99337", "shared_interaction" : "99337", "company_url" : "http://www.twr.co.jp/", "line_name" : "りんかい線", "selected" : false, "company_name" : "東京臨海高速鉄道", "company_cd" : 149, "name" : "9933701 (99337) 9933702", "rr_cd" : 99, "company_name_r" : "東京臨海高速鉄道", "e_status_x" : 0, "shared_name" : "9933701 (99337) 9933702", "lat" : 35.62373301157322, "e_status_y" : 0, "line_name_h" : "東京臨海高速鉄道りんかい線" }, "selected" : false }, { "data" : { "id" : "16099", "source" : "5736", "target" : "5737", "line_name_k" : "トウキュウデンエントシセン", "is_bullet" : false, "lon" : 139.58465916941623, "company_name_k" : "トウキョウデンテツ", "zoom" : 11, "SUID" : 16099, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26003", "shared_interaction" : "26003", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急田園都市線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600301 (26003) 2600302", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600301 (26003) 2600302", "lat" : 35.58324215005882, "e_status_y" : 0, "line_name_h" : "東急田園都市線" }, "selected" : false }, { "data" : { "id" : "16103", "source" : "5740", "target" : "5741", "line_name_k" : "トウキュウデンエントシセン", "is_bullet" : false, "lon" : 139.58465916941623, "company_name_k" : "トウキョウデンテツ", "zoom" : 11, "SUID" : 16103, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26003", "shared_interaction" : "26003", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急田園都市線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600305 (26003) 2600306", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600305 (26003) 2600306", "lat" : 35.58324215005882, "e_status_y" : 0, "line_name_h" : "東急田園都市線" }, "selected" : false }, { "data" : { "id" : "16102", "source" : "5739", "target" : "5740", "line_name_k" : "トウキュウデンエントシセン", "is_bullet" : false, "lon" : 139.58465916941623, "company_name_k" : "トウキョウデンテツ", "zoom" : 11, "SUID" : 16102, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26003", "shared_interaction" : "26003", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急田園都市線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600304 (26003) 2600305", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600304 (26003) 2600305", "lat" : 35.58324215005882, "e_status_y" : 0, "line_name_h" : "東急田園都市線" }, "selected" : false }, { "data" : { "id" : "16101", "source" : "5738", "target" : "5739", "line_name_k" : "トウキュウデンエントシセン", "is_bullet" : false, "lon" : 139.58465916941623, "company_name_k" : "トウキョウデンテツ", "zoom" : 11, "SUID" : 16101, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26003", "shared_interaction" : "26003", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急田園都市線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600303 (26003) 2600304", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600303 (26003) 2600304", "lat" : 35.58324215005882, "e_status_y" : 0, "line_name_h" : "東急田園都市線" }, "selected" : false }, { "data" : { "id" : "16100", "source" : "5737", "target" : "5738", "line_name_k" : "トウキュウデンエントシセン", "is_bullet" : false, "lon" : 139.58465916941623, "company_name_k" : "トウキョウデンテツ", "zoom" : 11, "SUID" : 16100, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26003", "shared_interaction" : "26003", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急田園都市線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600302 (26003) 2600303", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600302 (26003) 2600303", "lat" : 35.58324215005882, "e_status_y" : 0, "line_name_h" : "東急田園都市線" }, "selected" : false }, { "data" : { "id" : "16104", "source" : "5741", "target" : "5742", "line_name_k" : "トウキュウデンエントシセン", "is_bullet" : false, "lon" : 139.58465916941623, "company_name_k" : "トウキョウデンテツ", "zoom" : 11, "SUID" : 16104, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26003", "shared_interaction" : "26003", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急田園都市線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600306 (26003) 2600307", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600306 (26003) 2600307", "lat" : 35.58324215005882, "e_status_y" : 0, "line_name_h" : "東急田園都市線" }, "selected" : false }, { "data" : { "id" : "16065", "source" : "5699", "target" : "5700", "line_name_k" : "オダキュウタマセン", "is_bullet" : false, "lon" : 139.4602937407226, "company_name_k" : "オダキュウデンテツ", "zoom" : 13, "SUID" : 16065, "company_type" : 2, "company_name_h" : "小田急電鉄株式会社", "interaction" : "25003", "shared_interaction" : "25003", "company_url" : "http://www.odakyu.jp/", "line_name" : "小田急多摩線", "selected" : false, "company_name" : "小田急電鉄", "company_cd" : 15, "name" : "2500306 (25003) 2500307", "rr_cd" : 25, "company_name_r" : "小田急", "e_status_x" : 0, "shared_name" : "2500306 (25003) 2500307", "lat" : 35.61945834975, "e_status_y" : 0, "line_name_h" : "小田急多摩線" }, "selected" : false }, { "data" : { "id" : "16066", "source" : "5700", "target" : "5701", "line_name_k" : "オダキュウタマセン", "is_bullet" : false, "lon" : 139.4602937407226, "company_name_k" : "オダキュウデンテツ", "zoom" : 13, "SUID" : 16066, "company_type" : 2, "company_name_h" : "小田急電鉄株式会社", "interaction" : "25003", "shared_interaction" : "25003", "company_url" : "http://www.odakyu.jp/", "line_name" : "小田急多摩線", "selected" : false, "company_name" : "小田急電鉄", "company_cd" : 15, "name" : "2500307 (25003) 2500308", "rr_cd" : 25, "company_name_r" : "小田急", "e_status_x" : 0, "shared_name" : "2500307 (25003) 2500308", "lat" : 35.61945834975, "e_status_y" : 0, "line_name_h" : "小田急多摩線" }, "selected" : false }, { "data" : { "id" : "16071", "source" : "5706", "target" : "5707", "line_name_k" : "トウキュウトウヨコセン", "is_bullet" : false, "lon" : 139.66832596832717, "company_name_k" : "トウキョウデンテツ", "zoom" : 11, "SUID" : 16071, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26001", "shared_interaction" : "26001", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急東横線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600105 (26001) 2600106", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600105 (26001) 2600106", "lat" : 35.58608048810499, "e_status_y" : 0, "line_name_h" : "東急東横線" }, "selected" : false }, { "data" : { "id" : "16070", "source" : "5705", "target" : "5706", "line_name_k" : "トウキュウトウヨコセン", "is_bullet" : false, "lon" : 139.66832596832717, "company_name_k" : "トウキョウデンテツ", "zoom" : 11, "SUID" : 16070, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26001", "shared_interaction" : "26001", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急東横線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600104 (26001) 2600105", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600104 (26001) 2600105", "lat" : 35.58608048810499, "e_status_y" : 0, "line_name_h" : "東急東横線" }, "selected" : false }, { "data" : { "id" : "16073", "source" : "5708", "target" : "5709", "line_name_k" : "トウキュウトウヨコセン", "is_bullet" : false, "lon" : 139.66832596832717, "company_name_k" : "トウキョウデンテツ", "zoom" : 11, "SUID" : 16073, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26001", "shared_interaction" : "26001", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急東横線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600107 (26001) 2600108", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600107 (26001) 2600108", "lat" : 35.58608048810499, "e_status_y" : 0, "line_name_h" : "東急東横線" }, "selected" : false }, { "data" : { "id" : "16072", "source" : "5707", "target" : "5708", "line_name_k" : "トウキュウトウヨコセン", "is_bullet" : false, "lon" : 139.66832596832717, "company_name_k" : "トウキョウデンテツ", "zoom" : 11, "SUID" : 16072, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26001", "shared_interaction" : "26001", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急東横線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600106 (26001) 2600107", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600106 (26001) 2600107", "lat" : 35.58608048810499, "e_status_y" : 0, "line_name_h" : "東急東横線" }, "selected" : false }, { "data" : { "id" : "16067", "source" : "5702", "target" : "5703", "line_name_k" : "トウキュウトウヨコセン", "is_bullet" : false, "lon" : 139.66832596832717, "company_name_k" : "トウキョウデンテツ", "zoom" : 11, "SUID" : 16067, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26001", "shared_interaction" : "26001", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急東横線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600101 (26001) 2600102", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600101 (26001) 2600102", "lat" : 35.58608048810499, "e_status_y" : 0, "line_name_h" : "東急東横線" }, "selected" : false }, { "data" : { "id" : "16069", "source" : "5704", "target" : "5705", "line_name_k" : "トウキュウトウヨコセン", "is_bullet" : false, "lon" : 139.66832596832717, "company_name_k" : "トウキョウデンテツ", "zoom" : 11, "SUID" : 16069, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26001", "shared_interaction" : "26001", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急東横線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600103 (26001) 2600104", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600103 (26001) 2600104", "lat" : 35.58608048810499, "e_status_y" : 0, "line_name_h" : "東急東横線" }, "selected" : false }, { "data" : { "id" : "16068", "source" : "5703", "target" : "5704", "line_name_k" : "トウキュウトウヨコセン", "is_bullet" : false, "lon" : 139.66832596832717, "company_name_k" : "トウキョウデンテツ", "zoom" : 11, "SUID" : 16068, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26001", "shared_interaction" : "26001", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急東横線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600102 (26001) 2600103", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600102 (26001) 2600103", "lat" : 35.58608048810499, "e_status_y" : 0, "line_name_h" : "東急東横線" }, "selected" : false }, { "data" : { "id" : "16074", "source" : "5709", "target" : "5710", "line_name_k" : "トウキュウトウヨコセン", "is_bullet" : false, "lon" : 139.66832596832717, "company_name_k" : "トウキョウデンテツ", "zoom" : 11, "SUID" : 16074, "company_type" : 2, "company_name_h" : "東京急行電鉄株式会社", "interaction" : "26001", "shared_interaction" : "26001", "company_url" : "http://www.tokyu.co.jp/", "line_name" : "東急東横線", "selected" : false, "company_name" : "東急電鉄", "company_cd" : 16, "name" : "2600108 (26001) 2600109", "rr_cd" : 26, "company_name_r" : "東急", "e_status_x" : 0, "shared_name" : "2600108 (26001) 2600109", "lat" : 35.58608048810499, "e_status_y" : 0, "line_name_h" : "東急東横線" }, "selected" : false }, { "data" : { "id" : "16023", "source" : "5655", "target" : "5656", "line_name_k" : "オダキュウセン", "is_bullet" : false, "lon" : 139.43477539316441, "company_name_k" : "オダキュウデンテツ", "zoom" : 11, "SUID" : 16023, "company_type" : 2, "company_name_h" : "小田急電鉄株式会社", "interaction" : "25001", "shared_interaction" : "25001", "company_url" : "http://www.odakyu.jp/", "line_name" : "小田急線", "selected" : false, "company_name" : "小田急電鉄", "company_cd" : 15, "name" : "2500126 (25001) 2500127", "rr_cd" : 25, "company_name_r" : "小田急", "e_status_x" : 0, "shared_name" : "2500126 (25001) 2500127", "lat" : 35.528535238628024, "e_status_y" : 0, "line_name_h" : "小田急小田原線" }, "selected" : false }, { "data" : { "id" : "16022", "source" : "5654", "target" : "5655", "line_name_k" : "オダキュウセン", "is_bullet" : false, "lon" : 139.43477539316441, "company_name_k" : "オダキュウデンテツ", "zoom" : 11, "SUID" : 16022, "company_type" : 2, "company_name_h" : "小田急電鉄株式会社", "interaction" : "25001", "shared_interaction" : "25001", "company_url" : "http://www.odakyu.jp/", "line_name" : "小田急線", "selected" : false, "company_name" : "小田急電鉄", "company_cd" : 15, "name" : "2500125 (25001) 2500126", "rr_cd" : 25, "company_name_r" : "小田急", "e_status_x" : 0, "shared_name" : "2500125 (25001) 2500126", "lat" : 35.528535238628024, "e_status_y" : 0, "line_name_h" : "小田急小田原線" }, "selected" : false }, { "data" : { "id" : "18352", "source" : "8148", "target" : "8149", "line_name_k" : "タマモノレール", "is_bullet" : false, "lon" : 139.42169850770813, "company_name_k" : "タマトシモノレール", "zoom" : 12, "SUID" : 18352, "company_type" : 0, "company_name_h" : "多摩都市モノレール株式会社", "interaction" : "99334", "shared_interaction" : "99334", "company_url" : "http://www.tama-monorail.co.jp/", "line_name" : "多摩モノレール", "selected" : false, "company_name" : "多摩都市モノレール", "company_cd" : 146, "name" : "9933403 (99334) 9933404", "rr_cd" : 99, "company_name_r" : "多摩モノレール", "e_status_x" : 0, "shared_name" : "9933403 (99334) 9933404", "lat" : 35.69743141486103, "e_status_y" : 0, "line_name_h" : "多摩都市モノレール線" }, "selected" : false }, { "data" : { "id" : "18351", "source" : "8147", "target" : "8148", "line_name_k" : "タマモノレール", "is_bullet" : false, "lon" : 139.42169850770813, "company_name_k" : "タマトシモノレール", "zoom" : 12, "SUID" : 18351, "company_type" : 0, "company_name_h" : "多摩都市モノレール株式会社", "interaction" : "99334", "shared_interaction" : "99334", "company_url" : "http://www.tama-monorail.co.jp/", "line_name" : "多摩モノレール", "selected" : false, "company_name" : "多摩都市モノレール", "company_cd" : 146, "name" : "9933402 (99334) 9933403", "rr_cd" : 99, "company_name_r" : "多摩モノレール", "e_status_x" : 0, "shared_name" : "9933402 (99334) 9933403", "lat" : 35.69743141486103, "e_status_y" : 0, "line_name_h" : "多摩都市モノレール線" }, "selected" : false }, { "data" : { "id" : "18350", "source" : "8146", "target" : "8147", "line_name_k" : "タマモノレール", "is_bullet" : false, "lon" : 139.42169850770813, "company_name_k" : "タマトシモノレール", "zoom" : 12, "SUID" : 18350, "company_type" : 0, "company_name_h" : "多摩都市モノレール株式会社", "interaction" : "99334", "shared_interaction" : "99334", "company_url" : "http://www.tama-monorail.co.jp/", "line_name" : "多摩モノレール", "selected" : false, "company_name" : "多摩都市モノレール", "company_cd" : 146, "name" : "9933401 (99334) 9933402", "rr_cd" : 99, "company_name_r" : "多摩モノレール", "e_status_x" : 0, "shared_name" : "9933401 (99334) 9933402", "lat" : 35.69743141486103, "e_status_y" : 0, "line_name_h" : "多摩都市モノレール線" }, "selected" : false }, { "data" : { "id" : "18012", "source" : "7783", "target" : "7784", "line_name_k" : "ツクバエクスプレス", "is_bullet" : false, "lon" : 139.93750930625004, "company_name_k" : "シュトケンシントシテツドウ", "zoom" : 10, "SUID" : 18012, "company_type" : 0, "company_name_h" : "首都圏新都市鉄道株式会社", "interaction" : "99309", "shared_interaction" : "99309", "company_url" : "http://www.mir.co.jp/", "line_name" : "つくばエクスプレス", "selected" : false, "company_name" : "首都圏新都市鉄道", "company_cd" : 123, "name" : "9930902 (99309) 9930903", "rr_cd" : 99, "company_name_r" : "首都圏新都市鉄道", "e_status_x" : 0, "shared_name" : "9930902 (99309) 9930903", "lat" : 35.90577190655735, "e_status_y" : 0, "line_name_h" : "首都圏新都市鉄道つくばエクスプレス" }, "selected" : false }, { "data" : { "id" : "18013", "source" : "7784", "target" : "7785", "line_name_k" : "ツクバエクスプレス", "is_bullet" : false, "lon" : 139.93750930625004, "company_name_k" : "シュトケンシントシテツドウ", "zoom" : 10, "SUID" : 18013, "company_type" : 0, "company_name_h" : "首都圏新都市鉄道株式会社", "interaction" : "99309", "shared_interaction" : "99309", "company_url" : "http://www.mir.co.jp/", "line_name" : "つくばエクスプレス", "selected" : false, "company_name" : "首都圏新都市鉄道", "company_cd" : 123, "name" : "9930903 (99309) 9930904", "rr_cd" : 99, "company_name_r" : "首都圏新都市鉄道", "e_status_x" : 0, "shared_name" : "9930903 (99309) 9930904", "lat" : 35.90577190655735, "e_status_y" : 0, "line_name_h" : "首都圏新都市鉄道つくばエクスプレス" }, "selected" : false }, { "data" : { "id" : "18011", "source" : "7782", "target" : "7783", "line_name_k" : "ツクバエクスプレス", "is_bullet" : false, "lon" : 139.93750930625004, "company_name_k" : "シュトケンシントシテツドウ", "zoom" : 10, "SUID" : 18011, "company_type" : 0, "company_name_h" : "首都圏新都市鉄道株式会社", "interaction" : "99309", "shared_interaction" : "99309", "company_url" : "http://www.mir.co.jp/", "line_name" : "つくばエクスプレス", "selected" : false, "company_name" : "首都圏新都市鉄道", "company_cd" : 123, "name" : "9930901 (99309) 9930902", "rr_cd" : 99, "company_name_r" : "首都圏新都市鉄道", "e_status_x" : 0, "shared_name" : "9930901 (99309) 9930902", "lat" : 35.90577190655735, "e_status_y" : 0, "line_name_h" : "首都圏新都市鉄道つくばエクスプレス" }, "selected" : false }, { "data" : { "id" : "18016", "source" : "7787", "target" : "7788", "line_name_k" : "ツクバエクスプレス", "is_bullet" : false, "lon" : 139.93750930625004, "company_name_k" : "シュトケンシントシテツドウ", "zoom" : 10, "SUID" : 18016, "company_type" : 0, "company_name_h" : "首都圏新都市鉄道株式会社", "interaction" : "99309", "shared_interaction" : "99309", "company_url" : "http://www.mir.co.jp/", "line_name" : "つくばエクスプレス", "selected" : false, "company_name" : "首都圏新都市鉄道", "company_cd" : 123, "name" : "9930906 (99309) 9930907", "rr_cd" : 99, "company_name_r" : "首都圏新都市鉄道", "e_status_x" : 0, "shared_name" : "9930906 (99309) 9930907", "lat" : 35.90577190655735, "e_status_y" : 0, "line_name_h" : "首都圏新都市鉄道つくばエクスプレス" }, "selected" : false }, { "data" : { "id" : "18014", "source" : "7785", "target" : "7786", "line_name_k" : "ツクバエクスプレス", "is_bullet" : false, "lon" : 139.93750930625004, "company_name_k" : "シュトケンシントシテツドウ", "zoom" : 10, "SUID" : 18014, "company_type" : 0, "company_name_h" : "首都圏新都市鉄道株式会社", "interaction" : "99309", "shared_interaction" : "99309", "company_url" : "http://www.mir.co.jp/", "line_name" : "つくばエクスプレス", "selected" : false, "company_name" : "首都圏新都市鉄道", "company_cd" : 123, "name" : "9930904 (99309) 9930905", "rr_cd" : 99, "company_name_r" : "首都圏新都市鉄道", "e_status_x" : 0, "shared_name" : "9930904 (99309) 9930905", "lat" : 35.90577190655735, "e_status_y" : 0, "line_name_h" : "首都圏新都市鉄道つくばエクスプレス" }, "selected" : false }, { "data" : { "id" : "18015", "source" : "7786", "target" : "7787", "line_name_k" : "ツクバエクスプレス", "is_bullet" : false, "lon" : 139.93750930625004, "company_name_k" : "シュトケンシントシテツドウ", "zoom" : 10, "SUID" : 18015, "company_type" : 0, "company_name_h" : "首都圏新都市鉄道株式会社", "interaction" : "99309", "shared_interaction" : "99309", "company_url" : "http://www.mir.co.jp/", "line_name" : "つくばエクスプレス", "selected" : false, "company_name" : "首都圏新都市鉄道", "company_cd" : 123, "name" : "9930905 (99309) 9930906", "rr_cd" : 99, "company_name_r" : "首都圏新都市鉄道", "e_status_x" : 0, "shared_name" : "9930905 (99309) 9930906", "lat" : 35.90577190655735, "e_status_y" : 0, "line_name_h" : "首都圏新都市鉄道つくばエクスプレス" }, "selected" : false }, { "data" : { "id" : "18040", "source" : "7813", "target" : "7814", "line_name_k" : "ユリカモメ", "is_bullet" : false, "lon" : 139.77494982373048, "company_name_k" : "ユリカモメ", "zoom" : 13, "SUID" : 18040, "company_type" : 0, "company_name_h" : "株式会社ゆりかもめ", "interaction" : "99311", "shared_interaction" : "99311", "company_url" : "http://www.yurikamome.co.jp/", "line_name" : "ゆりかもめ", "selected" : false, "company_name" : "ゆりかもめ", "company_cd" : 125, "name" : "9931106 (99311) 9931107", "rr_cd" : 99, "company_name_r" : "ゆりかもめ", "e_status_x" : 0, "shared_name" : "9931106 (99311) 9931107", "lat" : 35.64286984685855, "e_status_y" : 0, "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" }, "selected" : false }, { "data" : { "id" : "18041", "source" : "7814", "target" : "7815", "line_name_k" : "ユリカモメ", "is_bullet" : false, "lon" : 139.77494982373048, "company_name_k" : "ユリカモメ", "zoom" : 13, "SUID" : 18041, "company_type" : 0, "company_name_h" : "株式会社ゆりかもめ", "interaction" : "99311", "shared_interaction" : "99311", "company_url" : "http://www.yurikamome.co.jp/", "line_name" : "ゆりかもめ", "selected" : false, "company_name" : "ゆりかもめ", "company_cd" : 125, "name" : "9931107 (99311) 9931108", "rr_cd" : 99, "company_name_r" : "ゆりかもめ", "e_status_x" : 0, "shared_name" : "9931107 (99311) 9931108", "lat" : 35.64286984685855, "e_status_y" : 0, "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" }, "selected" : false }, { "data" : { "id" : "18042", "source" : "7815", "target" : "7816", "line_name_k" : "ユリカモメ", "is_bullet" : false, "lon" : 139.77494982373048, "company_name_k" : "ユリカモメ", "zoom" : 13, "SUID" : 18042, "company_type" : 0, "company_name_h" : "株式会社ゆりかもめ", "interaction" : "99311", "shared_interaction" : "99311", "company_url" : "http://www.yurikamome.co.jp/", "line_name" : "ゆりかもめ", "selected" : false, "company_name" : "ゆりかもめ", "company_cd" : 125, "name" : "9931108 (99311) 9931109", "rr_cd" : 99, "company_name_r" : "ゆりかもめ", "e_status_x" : 0, "shared_name" : "9931108 (99311) 9931109", "lat" : 35.64286984685855, "e_status_y" : 0, "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" }, "selected" : false }, { "data" : { "id" : "18043", "source" : "7816", "target" : "7817", "line_name_k" : "ユリカモメ", "is_bullet" : false, "lon" : 139.77494982373048, "company_name_k" : "ユリカモメ", "zoom" : 13, "SUID" : 18043, "company_type" : 0, "company_name_h" : "株式会社ゆりかもめ", "interaction" : "99311", "shared_interaction" : "99311", "company_url" : "http://www.yurikamome.co.jp/", "line_name" : "ゆりかもめ", "selected" : false, "company_name" : "ゆりかもめ", "company_cd" : 125, "name" : "9931109 (99311) 9931110", "rr_cd" : 99, "company_name_r" : "ゆりかもめ", "e_status_x" : 0, "shared_name" : "9931109 (99311) 9931110", "lat" : 35.64286984685855, "e_status_y" : 0, "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" }, "selected" : false }, { "data" : { "id" : "18044", "source" : "7817", "target" : "7818", "line_name_k" : "ユリカモメ", "is_bullet" : false, "lon" : 139.77494982373048, "company_name_k" : "ユリカモメ", "zoom" : 13, "SUID" : 18044, "company_type" : 0, "company_name_h" : "株式会社ゆりかもめ", "interaction" : "99311", "shared_interaction" : "99311", "company_url" : "http://www.yurikamome.co.jp/", "line_name" : "ゆりかもめ", "selected" : false, "company_name" : "ゆりかもめ", "company_cd" : 125, "name" : "9931110 (99311) 9931111", "rr_cd" : 99, "company_name_r" : "ゆりかもめ", "e_status_x" : 0, "shared_name" : "9931110 (99311) 9931111", "lat" : 35.64286984685855, "e_status_y" : 0, "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" }, "selected" : false }, { "data" : { "id" : "18045", "source" : "7818", "target" : "7819", "line_name_k" : "ユリカモメ", "is_bullet" : false, "lon" : 139.77494982373048, "company_name_k" : "ユリカモメ", "zoom" : 13, "SUID" : 18045, "company_type" : 0, "company_name_h" : "株式会社ゆりかもめ", "interaction" : "99311", "shared_interaction" : "99311", "company_url" : "http://www.yurikamome.co.jp/", "line_name" : "ゆりかもめ", "selected" : false, "company_name" : "ゆりかもめ", "company_cd" : 125, "name" : "9931111 (99311) 9931112", "rr_cd" : 99, "company_name_r" : "ゆりかもめ", "e_status_x" : 0, "shared_name" : "9931111 (99311) 9931112", "lat" : 35.64286984685855, "e_status_y" : 0, "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" }, "selected" : false }, { "data" : { "id" : "18046", "source" : "7819", "target" : "7820", "line_name_k" : "ユリカモメ", "is_bullet" : false, "lon" : 139.77494982373048, "company_name_k" : "ユリカモメ", "zoom" : 13, "SUID" : 18046, "company_type" : 0, "company_name_h" : "株式会社ゆりかもめ", "interaction" : "99311", "shared_interaction" : "99311", "company_url" : "http://www.yurikamome.co.jp/", "line_name" : "ゆりかもめ", "selected" : false, "company_name" : "ゆりかもめ", "company_cd" : 125, "name" : "9931112 (99311) 9931113", "rr_cd" : 99, "company_name_r" : "ゆりかもめ", "e_status_x" : 0, "shared_name" : "9931112 (99311) 9931113", "lat" : 35.64286984685855, "e_status_y" : 0, "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" }, "selected" : false }, { "data" : { "id" : "18047", "source" : "7820", "target" : "7821", "line_name_k" : "ユリカモメ", "is_bullet" : false, "lon" : 139.77494982373048, "company_name_k" : "ユリカモメ", "zoom" : 13, "SUID" : 18047, "company_type" : 0, "company_name_h" : "株式会社ゆりかもめ", "interaction" : "99311", "shared_interaction" : "99311", "company_url" : "http://www.yurikamome.co.jp/", "line_name" : "ゆりかもめ", "selected" : false, "company_name" : "ゆりかもめ", "company_cd" : 125, "name" : "9931113 (99311) 9931114", "rr_cd" : 99, "company_name_r" : "ゆりかもめ", "e_status_x" : 0, "shared_name" : "9931113 (99311) 9931114", "lat" : 35.64286984685855, "e_status_y" : 0, "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" }, "selected" : false }, { "data" : { "id" : "18048", "source" : "7821", "target" : "7822", "line_name_k" : "ユリカモメ", "is_bullet" : false, "lon" : 139.77494982373048, "company_name_k" : "ユリカモメ", "zoom" : 13, "SUID" : 18048, "company_type" : 0, "company_name_h" : "株式会社ゆりかもめ", "interaction" : "99311", "shared_interaction" : "99311", "company_url" : "http://www.yurikamome.co.jp/", "line_name" : "ゆりかもめ", "selected" : false, "company_name" : "ゆりかもめ", "company_cd" : 125, "name" : "9931114 (99311) 9931115", "rr_cd" : 99, "company_name_r" : "ゆりかもめ", "e_status_x" : 0, "shared_name" : "9931114 (99311) 9931115", "lat" : 35.64286984685855, "e_status_y" : 0, "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" }, "selected" : false }, { "data" : { "id" : "18049", "source" : "7822", "target" : "7823", "line_name_k" : "ユリカモメ", "is_bullet" : false, "lon" : 139.77494982373048, "company_name_k" : "ユリカモメ", "zoom" : 13, "SUID" : 18049, "company_type" : 0, "company_name_h" : "株式会社ゆりかもめ", "interaction" : "99311", "shared_interaction" : "99311", "company_url" : "http://www.yurikamome.co.jp/", "line_name" : "ゆりかもめ", "selected" : false, "company_name" : "ゆりかもめ", "company_cd" : 125, "name" : "9931115 (99311) 9931116", "rr_cd" : 99, "company_name_r" : "ゆりかもめ", "e_status_x" : 0, "shared_name" : "9931115 (99311) 9931116", "lat" : 35.64286984685855, "e_status_y" : 0, "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" }, "selected" : false }, { "data" : { "id" : "18035", "source" : "7808", "target" : "7809", "line_name_k" : "ユリカモメ", "is_bullet" : false, "lon" : 139.77494982373048, "company_name_k" : "ユリカモメ", "zoom" : 13, "SUID" : 18035, "company_type" : 0, "company_name_h" : "株式会社ゆりかもめ", "interaction" : "99311", "shared_interaction" : "99311", "company_url" : "http://www.yurikamome.co.jp/", "line_name" : "ゆりかもめ", "selected" : false, "company_name" : "ゆりかもめ", "company_cd" : 125, "name" : "9931101 (99311) 9931102", "rr_cd" : 99, "company_name_r" : "ゆりかもめ", "e_status_x" : 0, "shared_name" : "9931101 (99311) 9931102", "lat" : 35.64286984685855, "e_status_y" : 0, "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" }, "selected" : false }, { "data" : { "id" : "18037", "source" : "7810", "target" : "7811", "line_name_k" : "ユリカモメ", "is_bullet" : false, "lon" : 139.77494982373048, "company_name_k" : "ユリカモメ", "zoom" : 13, "SUID" : 18037, "company_type" : 0, "company_name_h" : "株式会社ゆりかもめ", "interaction" : "99311", "shared_interaction" : "99311", "company_url" : "http://www.yurikamome.co.jp/", "line_name" : "ゆりかもめ", "selected" : false, "company_name" : "ゆりかもめ", "company_cd" : 125, "name" : "9931103 (99311) 9931104", "rr_cd" : 99, "company_name_r" : "ゆりかもめ", "e_status_x" : 0, "shared_name" : "9931103 (99311) 9931104", "lat" : 35.64286984685855, "e_status_y" : 0, "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" }, "selected" : false }, { "data" : { "id" : "18036", "source" : "7809", "target" : "7810", "line_name_k" : "ユリカモメ", "is_bullet" : false, "lon" : 139.77494982373048, "company_name_k" : "ユリカモメ", "zoom" : 13, "SUID" : 18036, "company_type" : 0, "company_name_h" : "株式会社ゆりかもめ", "interaction" : "99311", "shared_interaction" : "99311", "company_url" : "http://www.yurikamome.co.jp/", "line_name" : "ゆりかもめ", "selected" : false, "company_name" : "ゆりかもめ", "company_cd" : 125, "name" : "9931102 (99311) 9931103", "rr_cd" : 99, "company_name_r" : "ゆりかもめ", "e_status_x" : 0, "shared_name" : "9931102 (99311) 9931103", "lat" : 35.64286984685855, "e_status_y" : 0, "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" }, "selected" : false }, { "data" : { "id" : "18039", "source" : "7812", "target" : "7813", "line_name_k" : "ユリカモメ", "is_bullet" : false, "lon" : 139.77494982373048, "company_name_k" : "ユリカモメ", "zoom" : 13, "SUID" : 18039, "company_type" : 0, "company_name_h" : "株式会社ゆりかもめ", "interaction" : "99311", "shared_interaction" : "99311", "company_url" : "http://www.yurikamome.co.jp/", "line_name" : "ゆりかもめ", "selected" : false, "company_name" : "ゆりかもめ", "company_cd" : 125, "name" : "9931105 (99311) 9931106", "rr_cd" : 99, "company_name_r" : "ゆりかもめ", "e_status_x" : 0, "shared_name" : "9931105 (99311) 9931106", "lat" : 35.64286984685855, "e_status_y" : 0, "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" }, "selected" : false }, { "data" : { "id" : "18038", "source" : "7811", "target" : "7812", "line_name_k" : "ユリカモメ", "is_bullet" : false, "lon" : 139.77494982373048, "company_name_k" : "ユリカモメ", "zoom" : 13, "SUID" : 18038, "company_type" : 0, "company_name_h" : "株式会社ゆりかもめ", "interaction" : "99311", "shared_interaction" : "99311", "company_url" : "http://www.yurikamome.co.jp/", "line_name" : "ゆりかもめ", "selected" : false, "company_name" : "ゆりかもめ", "company_cd" : 125, "name" : "9931104 (99311) 9931105", "rr_cd" : 99, "company_name_r" : "ゆりかもめ", "e_status_x" : 0, "shared_name" : "9931104 (99311) 9931105", "lat" : 35.64286984685855, "e_status_y" : 0, "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" }, "selected" : false }, { "data" : { "id" : "17956", "source" : "7723", "target" : "7724", "line_name_k" : "ニッポリ・トネリライナー", "is_bullet" : false, "lon" : 139.76949647740912, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17956, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99342", "shared_interaction" : "99342", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "日暮里・舎人ライナー", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9934212 (99342) 9934213", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9934212 (99342) 9934213", "lat" : 35.78182568612205, "e_status_y" : 0, "line_name_h" : "日暮里・舎人ライナー" }, "selected" : false }, { "data" : { "id" : "17954", "source" : "7721", "target" : "7722", "line_name_k" : "ニッポリ・トネリライナー", "is_bullet" : false, "lon" : 139.76949647740912, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17954, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99342", "shared_interaction" : "99342", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "日暮里・舎人ライナー", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9934210 (99342) 9934211", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9934210 (99342) 9934211", "lat" : 35.78182568612205, "e_status_y" : 0, "line_name_h" : "日暮里・舎人ライナー" }, "selected" : false }, { "data" : { "id" : "17955", "source" : "7722", "target" : "7723", "line_name_k" : "ニッポリ・トネリライナー", "is_bullet" : false, "lon" : 139.76949647740912, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17955, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99342", "shared_interaction" : "99342", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "日暮里・舎人ライナー", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9934211 (99342) 9934212", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9934211 (99342) 9934212", "lat" : 35.78182568612205, "e_status_y" : 0, "line_name_h" : "日暮里・舎人ライナー" }, "selected" : false }, { "data" : { "id" : "17952", "source" : "7719", "target" : "7720", "line_name_k" : "ニッポリ・トネリライナー", "is_bullet" : false, "lon" : 139.76949647740912, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17952, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99342", "shared_interaction" : "99342", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "日暮里・舎人ライナー", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9934208 (99342) 9934209", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9934208 (99342) 9934209", "lat" : 35.78182568612205, "e_status_y" : 0, "line_name_h" : "日暮里・舎人ライナー" }, "selected" : false }, { "data" : { "id" : "17953", "source" : "7720", "target" : "7721", "line_name_k" : "ニッポリ・トネリライナー", "is_bullet" : false, "lon" : 139.76949647740912, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17953, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99342", "shared_interaction" : "99342", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "日暮里・舎人ライナー", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9934209 (99342) 9934210", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9934209 (99342) 9934210", "lat" : 35.78182568612205, "e_status_y" : 0, "line_name_h" : "日暮里・舎人ライナー" }, "selected" : false }, { "data" : { "id" : "17950", "source" : "7717", "target" : "7718", "line_name_k" : "ニッポリ・トネリライナー", "is_bullet" : false, "lon" : 139.76949647740912, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17950, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99342", "shared_interaction" : "99342", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "日暮里・舎人ライナー", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9934206 (99342) 9934207", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9934206 (99342) 9934207", "lat" : 35.78182568612205, "e_status_y" : 0, "line_name_h" : "日暮里・舎人ライナー" }, "selected" : false }, { "data" : { "id" : "17951", "source" : "7718", "target" : "7719", "line_name_k" : "ニッポリ・トネリライナー", "is_bullet" : false, "lon" : 139.76949647740912, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17951, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99342", "shared_interaction" : "99342", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "日暮里・舎人ライナー", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9934207 (99342) 9934208", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9934207 (99342) 9934208", "lat" : 35.78182568612205, "e_status_y" : 0, "line_name_h" : "日暮里・舎人ライナー" }, "selected" : false }, { "data" : { "id" : "17942", "source" : "7708", "target" : "7709", "line_name_k" : "トデンアラカワセン", "is_bullet" : false, "lon" : 139.74861502275394, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 13, "SUID" : 17942, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99305", "shared_interaction" : "99305", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都電荒川線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930527 (99305) 9930528", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930527 (99305) 9930528", "lat" : 35.735016925780094, "e_status_y" : 0, "line_name_h" : "都営都電荒川線" }, "selected" : false }, { "data" : { "id" : "17941", "source" : "7707", "target" : "7708", "line_name_k" : "トデンアラカワセン", "is_bullet" : false, "lon" : 139.74861502275394, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 13, "SUID" : 17941, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99305", "shared_interaction" : "99305", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都電荒川線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930526 (99305) 9930527", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930526 (99305) 9930527", "lat" : 35.735016925780094, "e_status_y" : 0, "line_name_h" : "都営都電荒川線" }, "selected" : false }, { "data" : { "id" : "17940", "source" : "7706", "target" : "7707", "line_name_k" : "トデンアラカワセン", "is_bullet" : false, "lon" : 139.74861502275394, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 13, "SUID" : 17940, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99305", "shared_interaction" : "99305", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都電荒川線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930525 (99305) 9930526", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930525 (99305) 9930526", "lat" : 35.735016925780094, "e_status_y" : 0, "line_name_h" : "都営都電荒川線" }, "selected" : false }, { "data" : { "id" : "17939", "source" : "7705", "target" : "7706", "line_name_k" : "トデンアラカワセン", "is_bullet" : false, "lon" : 139.74861502275394, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 13, "SUID" : 17939, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99305", "shared_interaction" : "99305", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都電荒川線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930524 (99305) 9930525", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930524 (99305) 9930525", "lat" : 35.735016925780094, "e_status_y" : 0, "line_name_h" : "都営都電荒川線" }, "selected" : false }, { "data" : { "id" : "17938", "source" : "7704", "target" : "7705", "line_name_k" : "トデンアラカワセン", "is_bullet" : false, "lon" : 139.74861502275394, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 13, "SUID" : 17938, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99305", "shared_interaction" : "99305", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都電荒川線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930523 (99305) 9930524", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930523 (99305) 9930524", "lat" : 35.735016925780094, "e_status_y" : 0, "line_name_h" : "都営都電荒川線" }, "selected" : false }, { "data" : { "id" : "17937", "source" : "7703", "target" : "7704", "line_name_k" : "トデンアラカワセン", "is_bullet" : false, "lon" : 139.74861502275394, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 13, "SUID" : 17937, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99305", "shared_interaction" : "99305", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都電荒川線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930522 (99305) 9930523", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930522 (99305) 9930523", "lat" : 35.735016925780094, "e_status_y" : 0, "line_name_h" : "都営都電荒川線" }, "selected" : false }, { "data" : { "id" : "17936", "source" : "7702", "target" : "7703", "line_name_k" : "トデンアラカワセン", "is_bullet" : false, "lon" : 139.74861502275394, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 13, "SUID" : 17936, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99305", "shared_interaction" : "99305", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都電荒川線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930521 (99305) 9930522", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930521 (99305) 9930522", "lat" : 35.735016925780094, "e_status_y" : 0, "line_name_h" : "都営都電荒川線" }, "selected" : false }, { "data" : { "id" : "16420", "source" : "6077", "target" : "6078", "line_name_k" : "フクトシンセン", "is_bullet" : false, "lon" : 139.686663477539, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16420, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28010", "shared_interaction" : "28010", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ副都心線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2801015 (28010) 2801016", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2801015 (28010) 2801016", "lat" : 35.731442005432505, "e_status_y" : 0, "line_name_h" : "東京メトロ副都心線" }, "selected" : false }, { "data" : { "id" : "17935", "source" : "7701", "target" : "7702", "line_name_k" : "トデンアラカワセン", "is_bullet" : false, "lon" : 139.74861502275394, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 13, "SUID" : 17935, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99305", "shared_interaction" : "99305", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都電荒川線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930520 (99305) 9930521", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930520 (99305) 9930521", "lat" : 35.735016925780094, "e_status_y" : 0, "line_name_h" : "都営都電荒川線" }, "selected" : false }, { "data" : { "id" : "17949", "source" : "7716", "target" : "7717", "line_name_k" : "ニッポリ・トネリライナー", "is_bullet" : false, "lon" : 139.76949647740912, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17949, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99342", "shared_interaction" : "99342", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "日暮里・舎人ライナー", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9934205 (99342) 9934206", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9934205 (99342) 9934206", "lat" : 35.78182568612205, "e_status_y" : 0, "line_name_h" : "日暮里・舎人ライナー" }, "selected" : false }, { "data" : { "id" : "16419", "source" : "6076", "target" : "6077", "line_name_k" : "フクトシンセン", "is_bullet" : false, "lon" : 139.686663477539, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16419, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28010", "shared_interaction" : "28010", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ副都心線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2801014 (28010) 2801015", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2801014 (28010) 2801015", "lat" : 35.731442005432505, "e_status_y" : 0, "line_name_h" : "東京メトロ副都心線" }, "selected" : false }, { "data" : { "id" : "16418", "source" : "6075", "target" : "6076", "line_name_k" : "フクトシンセン", "is_bullet" : false, "lon" : 139.686663477539, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16418, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28010", "shared_interaction" : "28010", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ副都心線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2801013 (28010) 2801014", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2801013 (28010) 2801014", "lat" : 35.731442005432505, "e_status_y" : 0, "line_name_h" : "東京メトロ副都心線" }, "selected" : false }, { "data" : { "id" : "17948", "source" : "7715", "target" : "7716", "line_name_k" : "ニッポリ・トネリライナー", "is_bullet" : false, "lon" : 139.76949647740912, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17948, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99342", "shared_interaction" : "99342", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "日暮里・舎人ライナー", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9934204 (99342) 9934205", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9934204 (99342) 9934205", "lat" : 35.78182568612205, "e_status_y" : 0, "line_name_h" : "日暮里・舎人ライナー" }, "selected" : false }, { "data" : { "id" : "16417", "source" : "6074", "target" : "6075", "line_name_k" : "フクトシンセン", "is_bullet" : false, "lon" : 139.686663477539, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16417, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28010", "shared_interaction" : "28010", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ副都心線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2801012 (28010) 2801013", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2801012 (28010) 2801013", "lat" : 35.731442005432505, "e_status_y" : 0, "line_name_h" : "東京メトロ副都心線" }, "selected" : false }, { "data" : { "id" : "17947", "source" : "7714", "target" : "7715", "line_name_k" : "ニッポリ・トネリライナー", "is_bullet" : false, "lon" : 139.76949647740912, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17947, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99342", "shared_interaction" : "99342", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "日暮里・舎人ライナー", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9934203 (99342) 9934204", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9934203 (99342) 9934204", "lat" : 35.78182568612205, "e_status_y" : 0, "line_name_h" : "日暮里・舎人ライナー" }, "selected" : false }, { "data" : { "id" : "16416", "source" : "6073", "target" : "6074", "line_name_k" : "フクトシンセン", "is_bullet" : false, "lon" : 139.686663477539, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16416, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28010", "shared_interaction" : "28010", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ副都心線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2801011 (28010) 2801012", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2801011 (28010) 2801012", "lat" : 35.731442005432505, "e_status_y" : 0, "line_name_h" : "東京メトロ副都心線" }, "selected" : false }, { "data" : { "id" : "17946", "source" : "7713", "target" : "7714", "line_name_k" : "ニッポリ・トネリライナー", "is_bullet" : false, "lon" : 139.76949647740912, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17946, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99342", "shared_interaction" : "99342", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "日暮里・舎人ライナー", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9934202 (99342) 9934203", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9934202 (99342) 9934203", "lat" : 35.78182568612205, "e_status_y" : 0, "line_name_h" : "日暮里・舎人ライナー" }, "selected" : false }, { "data" : { "id" : "16415", "source" : "6072", "target" : "6073", "line_name_k" : "フクトシンセン", "is_bullet" : false, "lon" : 139.686663477539, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16415, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28010", "shared_interaction" : "28010", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ副都心線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2801010 (28010) 2801011", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2801010 (28010) 2801011", "lat" : 35.731442005432505, "e_status_y" : 0, "line_name_h" : "東京メトロ副都心線" }, "selected" : false }, { "data" : { "id" : "17945", "source" : "7712", "target" : "7713", "line_name_k" : "ニッポリ・トネリライナー", "is_bullet" : false, "lon" : 139.76949647740912, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17945, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99342", "shared_interaction" : "99342", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "日暮里・舎人ライナー", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9934201 (99342) 9934202", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9934201 (99342) 9934202", "lat" : 35.78182568612205, "e_status_y" : 0, "line_name_h" : "日暮里・舎人ライナー" }, "selected" : false }, { "data" : { "id" : "16414", "source" : "6071", "target" : "6072", "line_name_k" : "フクトシンセン", "is_bullet" : false, "lon" : 139.686663477539, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16414, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28010", "shared_interaction" : "28010", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ副都心線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2801009 (28010) 2801010", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2801009 (28010) 2801010", "lat" : 35.731442005432505, "e_status_y" : 0, "line_name_h" : "東京メトロ副都心線" }, "selected" : false }, { "data" : { "id" : "16413", "source" : "6070", "target" : "6071", "line_name_k" : "フクトシンセン", "is_bullet" : false, "lon" : 139.686663477539, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16413, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28010", "shared_interaction" : "28010", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ副都心線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2801008 (28010) 2801009", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2801008 (28010) 2801009", "lat" : 35.731442005432505, "e_status_y" : 0, "line_name_h" : "東京メトロ副都心線" }, "selected" : false }, { "data" : { "id" : "17944", "source" : "7710", "target" : "7711", "line_name_k" : "トデンアラカワセン", "is_bullet" : false, "lon" : 139.74861502275394, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 13, "SUID" : 17944, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99305", "shared_interaction" : "99305", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都電荒川線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930529 (99305) 9930530", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930529 (99305) 9930530", "lat" : 35.735016925780094, "e_status_y" : 0, "line_name_h" : "都営都電荒川線" }, "selected" : false }, { "data" : { "id" : "16412", "source" : "6069", "target" : "6070", "line_name_k" : "フクトシンセン", "is_bullet" : false, "lon" : 139.686663477539, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16412, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28010", "shared_interaction" : "28010", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ副都心線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2801007 (28010) 2801008", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2801007 (28010) 2801008", "lat" : 35.731442005432505, "e_status_y" : 0, "line_name_h" : "東京メトロ副都心線" }, "selected" : false }, { "data" : { "id" : "17943", "source" : "7709", "target" : "7710", "line_name_k" : "トデンアラカワセン", "is_bullet" : false, "lon" : 139.74861502275394, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 13, "SUID" : 17943, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99305", "shared_interaction" : "99305", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都電荒川線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930528 (99305) 9930529", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930528 (99305) 9930529", "lat" : 35.735016925780094, "e_status_y" : 0, "line_name_h" : "都営都電荒川線" }, "selected" : false }, { "data" : { "id" : "16408", "source" : "6065", "target" : "6066", "line_name_k" : "フクトシンセン", "is_bullet" : false, "lon" : 139.686663477539, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16408, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28010", "shared_interaction" : "28010", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ副都心線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2801003 (28010) 2801004", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2801003 (28010) 2801004", "lat" : 35.731442005432505, "e_status_y" : 0, "line_name_h" : "東京メトロ副都心線" }, "selected" : false }, { "data" : { "id" : "16409", "source" : "6066", "target" : "6067", "line_name_k" : "フクトシンセン", "is_bullet" : false, "lon" : 139.686663477539, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16409, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28010", "shared_interaction" : "28010", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ副都心線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2801004 (28010) 2801005", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2801004 (28010) 2801005", "lat" : 35.731442005432505, "e_status_y" : 0, "line_name_h" : "東京メトロ副都心線" }, "selected" : false }, { "data" : { "id" : "16410", "source" : "6067", "target" : "6068", "line_name_k" : "フクトシンセン", "is_bullet" : false, "lon" : 139.686663477539, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16410, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28010", "shared_interaction" : "28010", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ副都心線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2801005 (28010) 2801006", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2801005 (28010) 2801006", "lat" : 35.731442005432505, "e_status_y" : 0, "line_name_h" : "東京メトロ副都心線" }, "selected" : false }, { "data" : { "id" : "16411", "source" : "6068", "target" : "6069", "line_name_k" : "フクトシンセン", "is_bullet" : false, "lon" : 139.686663477539, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16411, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28010", "shared_interaction" : "28010", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ副都心線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2801006 (28010) 2801007", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2801006 (28010) 2801007", "lat" : 35.731442005432505, "e_status_y" : 0, "line_name_h" : "東京メトロ副都心線" }, "selected" : false }, { "data" : { "id" : "16405", "source" : "6061", "target" : "6062", "line_name_k" : "ナンボクセン", "is_bullet" : false, "lon" : 139.73433187075705, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16405, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28009", "shared_interaction" : "28009", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ南北線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800918 (28009) 2800919", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800918 (28009) 2800919", "lat" : 35.710299718407505, "e_status_y" : 0, "line_name_h" : "東京メトロ南北線" }, "selected" : false }, { "data" : { "id" : "16407", "source" : "6064", "target" : "6065", "line_name_k" : "フクトシンセン", "is_bullet" : false, "lon" : 139.686663477539, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16407, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28010", "shared_interaction" : "28010", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ副都心線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2801002 (28010) 2801003", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2801002 (28010) 2801003", "lat" : 35.731442005432505, "e_status_y" : 0, "line_name_h" : "東京メトロ副都心線" }, "selected" : false }, { "data" : { "id" : "16401", "source" : "6057", "target" : "6058", "line_name_k" : "ナンボクセン", "is_bullet" : false, "lon" : 139.73433187075705, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16401, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28009", "shared_interaction" : "28009", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ南北線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800914 (28009) 2800915", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800914 (28009) 2800915", "lat" : 35.710299718407505, "e_status_y" : 0, "line_name_h" : "東京メトロ南北線" }, "selected" : false }, { "data" : { "id" : "16402", "source" : "6058", "target" : "6059", "line_name_k" : "ナンボクセン", "is_bullet" : false, "lon" : 139.73433187075705, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16402, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28009", "shared_interaction" : "28009", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ南北線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800915 (28009) 2800916", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800915 (28009) 2800916", "lat" : 35.710299718407505, "e_status_y" : 0, "line_name_h" : "東京メトロ南北線" }, "selected" : false }, { "data" : { "id" : "16403", "source" : "6059", "target" : "6060", "line_name_k" : "ナンボクセン", "is_bullet" : false, "lon" : 139.73433187075705, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16403, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28009", "shared_interaction" : "28009", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ南北線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800916 (28009) 2800917", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800916 (28009) 2800917", "lat" : 35.710299718407505, "e_status_y" : 0, "line_name_h" : "東京メトロ南北線" }, "selected" : false }, { "data" : { "id" : "16404", "source" : "6060", "target" : "6061", "line_name_k" : "ナンボクセン", "is_bullet" : false, "lon" : 139.73433187075705, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16404, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28009", "shared_interaction" : "28009", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ南北線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800917 (28009) 2800918", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800917 (28009) 2800918", "lat" : 35.710299718407505, "e_status_y" : 0, "line_name_h" : "東京メトロ南北線" }, "selected" : false }, { "data" : { "id" : "16397", "source" : "6053", "target" : "6054", "line_name_k" : "ナンボクセン", "is_bullet" : false, "lon" : 139.73433187075705, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16397, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28009", "shared_interaction" : "28009", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ南北線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800910 (28009) 2800911", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800910 (28009) 2800911", "lat" : 35.710299718407505, "e_status_y" : 0, "line_name_h" : "東京メトロ南北線" }, "selected" : false }, { "data" : { "id" : "16398", "source" : "6054", "target" : "6055", "line_name_k" : "ナンボクセン", "is_bullet" : false, "lon" : 139.73433187075705, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16398, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28009", "shared_interaction" : "28009", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ南北線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800911 (28009) 2800912", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800911 (28009) 2800912", "lat" : 35.710299718407505, "e_status_y" : 0, "line_name_h" : "東京メトロ南北線" }, "selected" : false }, { "data" : { "id" : "16399", "source" : "6055", "target" : "6056", "line_name_k" : "ナンボクセン", "is_bullet" : false, "lon" : 139.73433187075705, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16399, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28009", "shared_interaction" : "28009", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ南北線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800912 (28009) 2800913", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800912 (28009) 2800913", "lat" : 35.710299718407505, "e_status_y" : 0, "line_name_h" : "東京メトロ南北線" }, "selected" : false }, { "data" : { "id" : "16400", "source" : "6056", "target" : "6057", "line_name_k" : "ナンボクセン", "is_bullet" : false, "lon" : 139.73433187075705, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16400, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28009", "shared_interaction" : "28009", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ南北線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800913 (28009) 2800914", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800913 (28009) 2800914", "lat" : 35.710299718407505, "e_status_y" : 0, "line_name_h" : "東京メトロ南北線" }, "selected" : false }, { "data" : { "id" : "16394", "source" : "6050", "target" : "6051", "line_name_k" : "ナンボクセン", "is_bullet" : false, "lon" : 139.73433187075705, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16394, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28009", "shared_interaction" : "28009", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ南北線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800907 (28009) 2800908", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800907 (28009) 2800908", "lat" : 35.710299718407505, "e_status_y" : 0, "line_name_h" : "東京メトロ南北線" }, "selected" : false }, { "data" : { "id" : "16393", "source" : "6049", "target" : "6050", "line_name_k" : "ナンボクセン", "is_bullet" : false, "lon" : 139.73433187075705, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16393, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28009", "shared_interaction" : "28009", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ南北線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800906 (28009) 2800907", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800906 (28009) 2800907", "lat" : 35.710299718407505, "e_status_y" : 0, "line_name_h" : "東京メトロ南北線" }, "selected" : false }, { "data" : { "id" : "16396", "source" : "6052", "target" : "6053", "line_name_k" : "ナンボクセン", "is_bullet" : false, "lon" : 139.73433187075705, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16396, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28009", "shared_interaction" : "28009", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ南北線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800909 (28009) 2800910", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800909 (28009) 2800910", "lat" : 35.710299718407505, "e_status_y" : 0, "line_name_h" : "東京メトロ南北線" }, "selected" : false }, { "data" : { "id" : "16395", "source" : "6051", "target" : "6052", "line_name_k" : "ナンボクセン", "is_bullet" : false, "lon" : 139.73433187075705, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16395, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28009", "shared_interaction" : "28009", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ南北線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800908 (28009) 2800909", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800908 (28009) 2800909", "lat" : 35.710299718407505, "e_status_y" : 0, "line_name_h" : "東京メトロ南北線" }, "selected" : false }, { "data" : { "id" : "16390", "source" : "6046", "target" : "6047", "line_name_k" : "ナンボクセン", "is_bullet" : false, "lon" : 139.73433187075705, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16390, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28009", "shared_interaction" : "28009", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ南北線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800903 (28009) 2800904", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800903 (28009) 2800904", "lat" : 35.710299718407505, "e_status_y" : 0, "line_name_h" : "東京メトロ南北線" }, "selected" : false }, { "data" : { "id" : "16389", "source" : "6045", "target" : "6046", "line_name_k" : "ナンボクセン", "is_bullet" : false, "lon" : 139.73433187075705, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16389, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28009", "shared_interaction" : "28009", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ南北線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800902 (28009) 2800903", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800902 (28009) 2800903", "lat" : 35.710299718407505, "e_status_y" : 0, "line_name_h" : "東京メトロ南北線" }, "selected" : false }, { "data" : { "id" : "16392", "source" : "6048", "target" : "6049", "line_name_k" : "ナンボクセン", "is_bullet" : false, "lon" : 139.73433187075705, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16392, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28009", "shared_interaction" : "28009", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ南北線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800905 (28009) 2800906", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800905 (28009) 2800906", "lat" : 35.710299718407505, "e_status_y" : 0, "line_name_h" : "東京メトロ南北線" }, "selected" : false }, { "data" : { "id" : "16391", "source" : "6047", "target" : "6048", "line_name_k" : "ナンボクセン", "is_bullet" : false, "lon" : 139.73433187075705, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16391, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28009", "shared_interaction" : "28009", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ南北線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800904 (28009) 2800905", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800904 (28009) 2800905", "lat" : 35.710299718407505, "e_status_y" : 0, "line_name_h" : "東京メトロ南北線" }, "selected" : false }, { "data" : { "id" : "16387", "source" : "6042", "target" : "6043", "line_name_k" : "ハンゾウモンセン", "is_bullet" : false, "lon" : 139.76522714815565, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16387, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28008", "shared_interaction" : "28008", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ半蔵門線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800812 (28008) 2800813", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800812 (28008) 2800813", "lat" : 35.68813210626038, "e_status_y" : 0, "line_name_h" : "東京メトロ半蔵門線" }, "selected" : false }, { "data" : { "id" : "16386", "source" : "6041", "target" : "6042", "line_name_k" : "ハンゾウモンセン", "is_bullet" : false, "lon" : 139.76522714815565, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16386, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28008", "shared_interaction" : "28008", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ半蔵門線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800814 (28008) 2800812", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800814 (28008) 2800812", "lat" : 35.68813210626038, "e_status_y" : 0, "line_name_h" : "東京メトロ半蔵門線" }, "selected" : false }, { "data" : { "id" : "16388", "source" : "6044", "target" : "6045", "line_name_k" : "ナンボクセン", "is_bullet" : false, "lon" : 139.73433187075705, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16388, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28009", "shared_interaction" : "28009", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ南北線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800901 (28009) 2800902", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800901 (28009) 2800902", "lat" : 35.710299718407505, "e_status_y" : 0, "line_name_h" : "東京メトロ南北線" }, "selected" : false }, { "data" : { "id" : "16383", "source" : "6038", "target" : "6039", "line_name_k" : "ハンゾウモンセン", "is_bullet" : false, "lon" : 139.76522714815565, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16383, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28008", "shared_interaction" : "28008", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ半蔵門線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800809 (28008) 2800810", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800809 (28008) 2800810", "lat" : 35.68813210626038, "e_status_y" : 0, "line_name_h" : "東京メトロ半蔵門線" }, "selected" : false }, { "data" : { "id" : "16382", "source" : "6037", "target" : "6038", "line_name_k" : "ハンゾウモンセン", "is_bullet" : false, "lon" : 139.76522714815565, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16382, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28008", "shared_interaction" : "28008", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ半蔵門線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800808 (28008) 2800809", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800808 (28008) 2800809", "lat" : 35.68813210626038, "e_status_y" : 0, "line_name_h" : "東京メトロ半蔵門線" }, "selected" : false }, { "data" : { "id" : "16385", "source" : "6040", "target" : "6041", "line_name_k" : "ハンゾウモンセン", "is_bullet" : false, "lon" : 139.76522714815565, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16385, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28008", "shared_interaction" : "28008", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ半蔵門線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800811 (28008) 2800814", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800811 (28008) 2800814", "lat" : 35.68813210626038, "e_status_y" : 0, "line_name_h" : "東京メトロ半蔵門線" }, "selected" : false }, { "data" : { "id" : "16384", "source" : "6039", "target" : "6040", "line_name_k" : "ハンゾウモンセン", "is_bullet" : false, "lon" : 139.76522714815565, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16384, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28008", "shared_interaction" : "28008", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ半蔵門線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800810 (28008) 2800811", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800810 (28008) 2800811", "lat" : 35.68813210626038, "e_status_y" : 0, "line_name_h" : "東京メトロ半蔵門線" }, "selected" : false }, { "data" : { "id" : "16371", "source" : "6024", "target" : "6025", "line_name_k" : "ユウラクチョウセン", "is_bullet" : false, "lon" : 139.70420434309565, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16371, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28006", "shared_interaction" : "28006", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ有楽町線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800621 (28006) 2800622", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800621 (28006) 2800622", "lat" : 35.73316551916096, "e_status_y" : 0, "line_name_h" : "東京メトロ有楽町線" }, "selected" : false }, { "data" : { "id" : "16370", "source" : "6023", "target" : "6024", "line_name_k" : "ユウラクチョウセン", "is_bullet" : false, "lon" : 139.70420434309565, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16370, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28006", "shared_interaction" : "28006", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ有楽町線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800620 (28006) 2800621", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800620 (28006) 2800621", "lat" : 35.73316551916096, "e_status_y" : 0, "line_name_h" : "東京メトロ有楽町線" }, "selected" : false }, { "data" : { "id" : "16369", "source" : "6022", "target" : "6023", "line_name_k" : "ユウラクチョウセン", "is_bullet" : false, "lon" : 139.70420434309565, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16369, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28006", "shared_interaction" : "28006", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ有楽町線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800619 (28006) 2800620", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800619 (28006) 2800620", "lat" : 35.73316551916096, "e_status_y" : 0, "line_name_h" : "東京メトロ有楽町線" }, "selected" : false }, { "data" : { "id" : "16368", "source" : "6021", "target" : "6022", "line_name_k" : "ユウラクチョウセン", "is_bullet" : false, "lon" : 139.70420434309565, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16368, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28006", "shared_interaction" : "28006", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ有楽町線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800618 (28006) 2800619", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800618 (28006) 2800619", "lat" : 35.73316551916096, "e_status_y" : 0, "line_name_h" : "東京メトロ有楽町線" }, "selected" : false }, { "data" : { "id" : "16374", "source" : "6028", "target" : "6029", "line_name_k" : "ユウラクチョウシンセン", "is_bullet" : false, "lon" : 139.69139009521484, "company_name_k" : "トウキョウメトロ", "zoom" : 14, "SUID" : 16374, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28007", "shared_interaction" : "28007", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ有楽町新線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800701 (28007) 2800702", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 2, "shared_name" : "2800701 (28007) 2800702", "lat" : 35.73819936189844, "e_status_y" : 0, "line_name_h" : "東京メトロ有楽町新線" }, "selected" : false }, { "data" : { "id" : "16373", "source" : "6026", "target" : "6027", "line_name_k" : "ユウラクチョウセン", "is_bullet" : false, "lon" : 139.70420434309565, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16373, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28006", "shared_interaction" : "28006", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ有楽町線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800623 (28006) 2800624", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800623 (28006) 2800624", "lat" : 35.73316551916096, "e_status_y" : 0, "line_name_h" : "東京メトロ有楽町線" }, "selected" : false }, { "data" : { "id" : "16372", "source" : "6025", "target" : "6026", "line_name_k" : "ユウラクチョウセン", "is_bullet" : false, "lon" : 139.70420434309565, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16372, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28006", "shared_interaction" : "28006", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ有楽町線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800622 (28006) 2800623", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800622 (28006) 2800623", "lat" : 35.73316551916096, "e_status_y" : 0, "line_name_h" : "東京メトロ有楽町線" }, "selected" : false }, { "data" : { "id" : "16377", "source" : "6032", "target" : "6033", "line_name_k" : "ハンゾウモンセン", "is_bullet" : false, "lon" : 139.76522714815565, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16377, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28008", "shared_interaction" : "28008", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ半蔵門線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800803 (28008) 2800804", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800803 (28008) 2800804", "lat" : 35.68813210626038, "e_status_y" : 0, "line_name_h" : "東京メトロ半蔵門線" }, "selected" : false }, { "data" : { "id" : "16376", "source" : "6031", "target" : "6032", "line_name_k" : "ハンゾウモンセン", "is_bullet" : false, "lon" : 139.76522714815565, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16376, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28008", "shared_interaction" : "28008", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ半蔵門線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800802 (28008) 2800803", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800802 (28008) 2800803", "lat" : 35.68813210626038, "e_status_y" : 0, "line_name_h" : "東京メトロ半蔵門線" }, "selected" : false }, { "data" : { "id" : "16375", "source" : "6030", "target" : "6031", "line_name_k" : "ハンゾウモンセン", "is_bullet" : false, "lon" : 139.76522714815565, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16375, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28008", "shared_interaction" : "28008", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ半蔵門線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800801 (28008) 2800802", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800801 (28008) 2800802", "lat" : 35.68813210626038, "e_status_y" : 0, "line_name_h" : "東京メトロ半蔵門線" }, "selected" : false }, { "data" : { "id" : "16381", "source" : "6036", "target" : "6037", "line_name_k" : "ハンゾウモンセン", "is_bullet" : false, "lon" : 139.76522714815565, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16381, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28008", "shared_interaction" : "28008", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ半蔵門線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800807 (28008) 2800808", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800807 (28008) 2800808", "lat" : 35.68813210626038, "e_status_y" : 0, "line_name_h" : "東京メトロ半蔵門線" }, "selected" : false }, { "data" : { "id" : "16380", "source" : "6035", "target" : "6036", "line_name_k" : "ハンゾウモンセン", "is_bullet" : false, "lon" : 139.76522714815565, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16380, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28008", "shared_interaction" : "28008", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ半蔵門線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800806 (28008) 2800807", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800806 (28008) 2800807", "lat" : 35.68813210626038, "e_status_y" : 0, "line_name_h" : "東京メトロ半蔵門線" }, "selected" : false }, { "data" : { "id" : "16379", "source" : "6034", "target" : "6035", "line_name_k" : "ハンゾウモンセン", "is_bullet" : false, "lon" : 139.76522714815565, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16379, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28008", "shared_interaction" : "28008", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ半蔵門線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800805 (28008) 2800806", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800805 (28008) 2800806", "lat" : 35.68813210626038, "e_status_y" : 0, "line_name_h" : "東京メトロ半蔵門線" }, "selected" : false }, { "data" : { "id" : "16378", "source" : "6033", "target" : "6034", "line_name_k" : "ハンゾウモンセン", "is_bullet" : false, "lon" : 139.76522714815565, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16378, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28008", "shared_interaction" : "28008", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ半蔵門線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800804 (28008) 2800805", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800804 (28008) 2800805", "lat" : 35.68813210626038, "e_status_y" : 0, "line_name_h" : "東京メトロ半蔵門線" }, "selected" : false }, { "data" : { "id" : "16354", "source" : "6007", "target" : "6008", "line_name_k" : "ユウラクチョウセン", "is_bullet" : false, "lon" : 139.70420434309565, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16354, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28006", "shared_interaction" : "28006", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ有楽町線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800604 (28006) 2800605", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800604 (28006) 2800605", "lat" : 35.73316551916096, "e_status_y" : 0, "line_name_h" : "東京メトロ有楽町線" }, "selected" : false }, { "data" : { "id" : "16355", "source" : "6008", "target" : "6009", "line_name_k" : "ユウラクチョウセン", "is_bullet" : false, "lon" : 139.70420434309565, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16355, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28006", "shared_interaction" : "28006", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ有楽町線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800605 (28006) 2800606", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800605 (28006) 2800606", "lat" : 35.73316551916096, "e_status_y" : 0, "line_name_h" : "東京メトロ有楽町線" }, "selected" : false }, { "data" : { "id" : "16352", "source" : "6005", "target" : "6006", "line_name_k" : "ユウラクチョウセン", "is_bullet" : false, "lon" : 139.70420434309565, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16352, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28006", "shared_interaction" : "28006", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ有楽町線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800602 (28006) 2800603", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800602 (28006) 2800603", "lat" : 35.73316551916096, "e_status_y" : 0, "line_name_h" : "東京メトロ有楽町線" }, "selected" : false }, { "data" : { "id" : "16353", "source" : "6006", "target" : "6007", "line_name_k" : "ユウラクチョウセン", "is_bullet" : false, "lon" : 139.70420434309565, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16353, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28006", "shared_interaction" : "28006", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ有楽町線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800603 (28006) 2800604", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800603 (28006) 2800604", "lat" : 35.73316551916096, "e_status_y" : 0, "line_name_h" : "東京メトロ有楽町線" }, "selected" : false }, { "data" : { "id" : "16358", "source" : "6011", "target" : "6012", "line_name_k" : "ユウラクチョウセン", "is_bullet" : false, "lon" : 139.70420434309565, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16358, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28006", "shared_interaction" : "28006", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ有楽町線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800608 (28006) 2800609", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800608 (28006) 2800609", "lat" : 35.73316551916096, "e_status_y" : 0, "line_name_h" : "東京メトロ有楽町線" }, "selected" : false }, { "data" : { "id" : "16359", "source" : "6012", "target" : "6013", "line_name_k" : "ユウラクチョウセン", "is_bullet" : false, "lon" : 139.70420434309565, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16359, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28006", "shared_interaction" : "28006", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ有楽町線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800609 (28006) 2800610", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800609 (28006) 2800610", "lat" : 35.73316551916096, "e_status_y" : 0, "line_name_h" : "東京メトロ有楽町線" }, "selected" : false }, { "data" : { "id" : "16356", "source" : "6009", "target" : "6010", "line_name_k" : "ユウラクチョウセン", "is_bullet" : false, "lon" : 139.70420434309565, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16356, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28006", "shared_interaction" : "28006", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ有楽町線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800606 (28006) 2800607", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800606 (28006) 2800607", "lat" : 35.73316551916096, "e_status_y" : 0, "line_name_h" : "東京メトロ有楽町線" }, "selected" : false }, { "data" : { "id" : "16357", "source" : "6010", "target" : "6011", "line_name_k" : "ユウラクチョウセン", "is_bullet" : false, "lon" : 139.70420434309565, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16357, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28006", "shared_interaction" : "28006", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ有楽町線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800607 (28006) 2800608", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800607 (28006) 2800608", "lat" : 35.73316551916096, "e_status_y" : 0, "line_name_h" : "東京メトロ有楽町線" }, "selected" : false }, { "data" : { "id" : "16362", "source" : "6015", "target" : "6016", "line_name_k" : "ユウラクチョウセン", "is_bullet" : false, "lon" : 139.70420434309565, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16362, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28006", "shared_interaction" : "28006", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ有楽町線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800612 (28006) 2800613", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800612 (28006) 2800613", "lat" : 35.73316551916096, "e_status_y" : 0, "line_name_h" : "東京メトロ有楽町線" }, "selected" : false }, { "data" : { "id" : "16363", "source" : "6016", "target" : "6017", "line_name_k" : "ユウラクチョウセン", "is_bullet" : false, "lon" : 139.70420434309565, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16363, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28006", "shared_interaction" : "28006", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ有楽町線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800613 (28006) 2800614", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800613 (28006) 2800614", "lat" : 35.73316551916096, "e_status_y" : 0, "line_name_h" : "東京メトロ有楽町線" }, "selected" : false }, { "data" : { "id" : "16360", "source" : "6013", "target" : "6014", "line_name_k" : "ユウラクチョウセン", "is_bullet" : false, "lon" : 139.70420434309565, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16360, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28006", "shared_interaction" : "28006", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ有楽町線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800610 (28006) 2800611", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800610 (28006) 2800611", "lat" : 35.73316551916096, "e_status_y" : 0, "line_name_h" : "東京メトロ有楽町線" }, "selected" : false }, { "data" : { "id" : "16361", "source" : "6014", "target" : "6015", "line_name_k" : "ユウラクチョウセン", "is_bullet" : false, "lon" : 139.70420434309565, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16361, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28006", "shared_interaction" : "28006", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ有楽町線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800611 (28006) 2800612", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800611 (28006) 2800612", "lat" : 35.73316551916096, "e_status_y" : 0, "line_name_h" : "東京メトロ有楽町線" }, "selected" : false }, { "data" : { "id" : "16366", "source" : "6019", "target" : "6020", "line_name_k" : "ユウラクチョウセン", "is_bullet" : false, "lon" : 139.70420434309565, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16366, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28006", "shared_interaction" : "28006", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ有楽町線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800616 (28006) 2800617", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800616 (28006) 2800617", "lat" : 35.73316551916096, "e_status_y" : 0, "line_name_h" : "東京メトロ有楽町線" }, "selected" : false }, { "data" : { "id" : "16367", "source" : "6020", "target" : "6021", "line_name_k" : "ユウラクチョウセン", "is_bullet" : false, "lon" : 139.70420434309565, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16367, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28006", "shared_interaction" : "28006", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ有楽町線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800617 (28006) 2800618", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800617 (28006) 2800618", "lat" : 35.73316551916096, "e_status_y" : 0, "line_name_h" : "東京メトロ有楽町線" }, "selected" : false }, { "data" : { "id" : "16364", "source" : "6017", "target" : "6018", "line_name_k" : "ユウラクチョウセン", "is_bullet" : false, "lon" : 139.70420434309565, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16364, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28006", "shared_interaction" : "28006", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ有楽町線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800614 (28006) 2800615", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800614 (28006) 2800615", "lat" : 35.73316551916096, "e_status_y" : 0, "line_name_h" : "東京メトロ有楽町線" }, "selected" : false }, { "data" : { "id" : "16365", "source" : "6018", "target" : "6019", "line_name_k" : "ユウラクチョウセン", "is_bullet" : false, "lon" : 139.70420434309565, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16365, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28006", "shared_interaction" : "28006", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ有楽町線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800615 (28006) 2800616", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800615 (28006) 2800616", "lat" : 35.73316551916096, "e_status_y" : 0, "line_name_h" : "東京メトロ有楽町線" }, "selected" : false }, { "data" : { "id" : "16338", "source" : "5990", "target" : "5991", "line_name_k" : "チヨダセン", "is_bullet" : false, "lon" : 139.7558611955078, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16338, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28005", "shared_interaction" : "28005", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ千代田線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800507 (28005) 2800508", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800507 (28005) 2800508", "lat" : 35.723011671551085, "e_status_y" : 0, "line_name_h" : "東京メトロ千代田線" }, "selected" : false }, { "data" : { "id" : "16337", "source" : "5989", "target" : "5990", "line_name_k" : "チヨダセン", "is_bullet" : false, "lon" : 139.7558611955078, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16337, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28005", "shared_interaction" : "28005", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ千代田線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800506 (28005) 2800507", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800506 (28005) 2800507", "lat" : 35.723011671551085, "e_status_y" : 0, "line_name_h" : "東京メトロ千代田線" }, "selected" : false }, { "data" : { "id" : "16340", "source" : "5992", "target" : "5993", "line_name_k" : "チヨダセン", "is_bullet" : false, "lon" : 139.7558611955078, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16340, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28005", "shared_interaction" : "28005", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ千代田線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800509 (28005) 2800510", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800509 (28005) 2800510", "lat" : 35.723011671551085, "e_status_y" : 0, "line_name_h" : "東京メトロ千代田線" }, "selected" : false }, { "data" : { "id" : "16339", "source" : "5991", "target" : "5992", "line_name_k" : "チヨダセン", "is_bullet" : false, "lon" : 139.7558611955078, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16339, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28005", "shared_interaction" : "28005", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ千代田線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800508 (28005) 2800509", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800508 (28005) 2800509", "lat" : 35.723011671551085, "e_status_y" : 0, "line_name_h" : "東京メトロ千代田線" }, "selected" : false }, { "data" : { "id" : "16342", "source" : "5994", "target" : "5995", "line_name_k" : "チヨダセン", "is_bullet" : false, "lon" : 139.7558611955078, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16342, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28005", "shared_interaction" : "28005", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ千代田線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800511 (28005) 2800512", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800511 (28005) 2800512", "lat" : 35.723011671551085, "e_status_y" : 0, "line_name_h" : "東京メトロ千代田線" }, "selected" : false }, { "data" : { "id" : "16341", "source" : "5993", "target" : "5994", "line_name_k" : "チヨダセン", "is_bullet" : false, "lon" : 139.7558611955078, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16341, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28005", "shared_interaction" : "28005", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ千代田線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800510 (28005) 2800511", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800510 (28005) 2800511", "lat" : 35.723011671551085, "e_status_y" : 0, "line_name_h" : "東京メトロ千代田線" }, "selected" : false }, { "data" : { "id" : "16344", "source" : "5996", "target" : "5997", "line_name_k" : "チヨダセン", "is_bullet" : false, "lon" : 139.7558611955078, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16344, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28005", "shared_interaction" : "28005", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ千代田線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800513 (28005) 2800514", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800513 (28005) 2800514", "lat" : 35.723011671551085, "e_status_y" : 0, "line_name_h" : "東京メトロ千代田線" }, "selected" : false }, { "data" : { "id" : "16343", "source" : "5995", "target" : "5996", "line_name_k" : "チヨダセン", "is_bullet" : false, "lon" : 139.7558611955078, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16343, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28005", "shared_interaction" : "28005", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ千代田線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800512 (28005) 2800513", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800512 (28005) 2800513", "lat" : 35.723011671551085, "e_status_y" : 0, "line_name_h" : "東京メトロ千代田線" }, "selected" : false }, { "data" : { "id" : "16346", "source" : "5998", "target" : "5999", "line_name_k" : "チヨダセン", "is_bullet" : false, "lon" : 139.7558611955078, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16346, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28005", "shared_interaction" : "28005", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ千代田線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800515 (28005) 2800516", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800515 (28005) 2800516", "lat" : 35.723011671551085, "e_status_y" : 0, "line_name_h" : "東京メトロ千代田線" }, "selected" : false }, { "data" : { "id" : "16345", "source" : "5997", "target" : "5998", "line_name_k" : "チヨダセン", "is_bullet" : false, "lon" : 139.7558611955078, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16345, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28005", "shared_interaction" : "28005", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ千代田線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800514 (28005) 2800515", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800514 (28005) 2800515", "lat" : 35.723011671551085, "e_status_y" : 0, "line_name_h" : "東京メトロ千代田線" }, "selected" : false }, { "data" : { "id" : "16348", "source" : "6000", "target" : "6001", "line_name_k" : "チヨダセン", "is_bullet" : false, "lon" : 139.7558611955078, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16348, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28005", "shared_interaction" : "28005", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ千代田線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800517 (28005) 2800518", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800517 (28005) 2800518", "lat" : 35.723011671551085, "e_status_y" : 0, "line_name_h" : "東京メトロ千代田線" }, "selected" : false }, { "data" : { "id" : "16347", "source" : "5999", "target" : "6000", "line_name_k" : "チヨダセン", "is_bullet" : false, "lon" : 139.7558611955078, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16347, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28005", "shared_interaction" : "28005", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ千代田線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800516 (28005) 2800517", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800516 (28005) 2800517", "lat" : 35.723011671551085, "e_status_y" : 0, "line_name_h" : "東京メトロ千代田線" }, "selected" : false }, { "data" : { "id" : "16350", "source" : "6002", "target" : "6003", "line_name_k" : "チヨダセン", "is_bullet" : false, "lon" : 139.7558611955078, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16350, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28005", "shared_interaction" : "28005", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ千代田線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800519 (28005) 2800520", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800519 (28005) 2800520", "lat" : 35.723011671551085, "e_status_y" : 0, "line_name_h" : "東京メトロ千代田線" }, "selected" : false }, { "data" : { "id" : "16349", "source" : "6001", "target" : "6002", "line_name_k" : "チヨダセン", "is_bullet" : false, "lon" : 139.7558611955078, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16349, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28005", "shared_interaction" : "28005", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ千代田線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800518 (28005) 2800519", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800518 (28005) 2800519", "lat" : 35.723011671551085, "e_status_y" : 0, "line_name_h" : "東京メトロ千代田線" }, "selected" : false }, { "data" : { "id" : "16322", "source" : "5973", "target" : "5974", "line_name_k" : "トウザイセン", "is_bullet" : false, "lon" : 139.8154913497142, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16322, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28004", "shared_interaction" : "28004", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ東西線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800413 (28004) 2800414", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800413 (28004) 2800414", "lat" : 35.683265329761525, "e_status_y" : 0, "line_name_h" : "東京メトロ東西線" }, "selected" : false }, { "data" : { "id" : "16323", "source" : "5974", "target" : "5975", "line_name_k" : "トウザイセン", "is_bullet" : false, "lon" : 139.8154913497142, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16323, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28004", "shared_interaction" : "28004", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ東西線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800414 (28004) 2800415", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800414 (28004) 2800415", "lat" : 35.683265329761525, "e_status_y" : 0, "line_name_h" : "東京メトロ東西線" }, "selected" : false }, { "data" : { "id" : "16324", "source" : "5975", "target" : "5976", "line_name_k" : "トウザイセン", "is_bullet" : false, "lon" : 139.8154913497142, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16324, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28004", "shared_interaction" : "28004", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ東西線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800415 (28004) 2800416", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800415 (28004) 2800416", "lat" : 35.683265329761525, "e_status_y" : 0, "line_name_h" : "東京メトロ東西線" }, "selected" : false }, { "data" : { "id" : "16325", "source" : "5976", "target" : "5977", "line_name_k" : "トウザイセン", "is_bullet" : false, "lon" : 139.8154913497142, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16325, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28004", "shared_interaction" : "28004", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ東西線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800416 (28004) 2800417", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800416 (28004) 2800417", "lat" : 35.683265329761525, "e_status_y" : 0, "line_name_h" : "東京メトロ東西線" }, "selected" : false }, { "data" : { "id" : "16332", "source" : "5984", "target" : "5985", "line_name_k" : "チヨダセン", "is_bullet" : false, "lon" : 139.7558611955078, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16332, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28005", "shared_interaction" : "28005", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ千代田線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800501 (28005) 2800502", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800501 (28005) 2800502", "lat" : 35.723011671551085, "e_status_y" : 0, "line_name_h" : "東京メトロ千代田線" }, "selected" : false }, { "data" : { "id" : "16333", "source" : "5985", "target" : "5986", "line_name_k" : "チヨダセン", "is_bullet" : false, "lon" : 139.7558611955078, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16333, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28005", "shared_interaction" : "28005", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ千代田線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800502 (28005) 2800503", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800502 (28005) 2800503", "lat" : 35.723011671551085, "e_status_y" : 0, "line_name_h" : "東京メトロ千代田線" }, "selected" : false }, { "data" : { "id" : "16334", "source" : "5986", "target" : "5987", "line_name_k" : "チヨダセン", "is_bullet" : false, "lon" : 139.7558611955078, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16334, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28005", "shared_interaction" : "28005", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ千代田線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800503 (28005) 2800504", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800503 (28005) 2800504", "lat" : 35.723011671551085, "e_status_y" : 0, "line_name_h" : "東京メトロ千代田線" }, "selected" : false }, { "data" : { "id" : "16335", "source" : "5987", "target" : "5988", "line_name_k" : "チヨダセン", "is_bullet" : false, "lon" : 139.7558611955078, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16335, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28005", "shared_interaction" : "28005", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ千代田線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800504 (28005) 2800505", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800504 (28005) 2800505", "lat" : 35.723011671551085, "e_status_y" : 0, "line_name_h" : "東京メトロ千代田線" }, "selected" : false }, { "data" : { "id" : "16336", "source" : "5988", "target" : "5989", "line_name_k" : "チヨダセン", "is_bullet" : false, "lon" : 139.7558611955078, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16336, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28005", "shared_interaction" : "28005", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ千代田線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800505 (28005) 2800506", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800505 (28005) 2800506", "lat" : 35.723011671551085, "e_status_y" : 0, "line_name_h" : "東京メトロ千代田線" }, "selected" : false }, { "data" : { "id" : "16313", "source" : "5964", "target" : "5965", "line_name_k" : "トウザイセン", "is_bullet" : false, "lon" : 139.8154913497142, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16313, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28004", "shared_interaction" : "28004", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ東西線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800404 (28004) 2800405", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800404 (28004) 2800405", "lat" : 35.683265329761525, "e_status_y" : 0, "line_name_h" : "東京メトロ東西線" }, "selected" : false }, { "data" : { "id" : "16312", "source" : "5963", "target" : "5964", "line_name_k" : "トウザイセン", "is_bullet" : false, "lon" : 139.8154913497142, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16312, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28004", "shared_interaction" : "28004", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ東西線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800403 (28004) 2800404", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800403 (28004) 2800404", "lat" : 35.683265329761525, "e_status_y" : 0, "line_name_h" : "東京メトロ東西線" }, "selected" : false }, { "data" : { "id" : "16311", "source" : "5962", "target" : "5963", "line_name_k" : "トウザイセン", "is_bullet" : false, "lon" : 139.8154913497142, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16311, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28004", "shared_interaction" : "28004", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ東西線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800402 (28004) 2800403", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800402 (28004) 2800403", "lat" : 35.683265329761525, "e_status_y" : 0, "line_name_h" : "東京メトロ東西線" }, "selected" : false }, { "data" : { "id" : "16310", "source" : "5961", "target" : "5962", "line_name_k" : "トウザイセン", "is_bullet" : false, "lon" : 139.8154913497142, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16310, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28004", "shared_interaction" : "28004", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ東西線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800401 (28004) 2800402", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800401 (28004) 2800402", "lat" : 35.683265329761525, "e_status_y" : 0, "line_name_h" : "東京メトロ東西線" }, "selected" : false }, { "data" : { "id" : "16309", "source" : "5959", "target" : "5960", "line_name_k" : "ヒビヤセン", "is_bullet" : false, "lon" : 139.76790012172296, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16309, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28003", "shared_interaction" : "28003", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ日比谷線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800320 (28003) 2800321", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800320 (28003) 2800321", "lat" : 35.69469233873322, "e_status_y" : 0, "line_name_h" : "東京メトロ日比谷線" }, "selected" : false }, { "data" : { "id" : "16308", "source" : "5958", "target" : "5959", "line_name_k" : "ヒビヤセン", "is_bullet" : false, "lon" : 139.76790012172296, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16308, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28003", "shared_interaction" : "28003", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ日比谷線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800319 (28003) 2800320", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800319 (28003) 2800320", "lat" : 35.69469233873322, "e_status_y" : 0, "line_name_h" : "東京メトロ日比谷線" }, "selected" : false }, { "data" : { "id" : "16307", "source" : "5957", "target" : "5958", "line_name_k" : "ヒビヤセン", "is_bullet" : false, "lon" : 139.76790012172296, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16307, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28003", "shared_interaction" : "28003", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ日比谷線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800318 (28003) 2800319", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800318 (28003) 2800319", "lat" : 35.69469233873322, "e_status_y" : 0, "line_name_h" : "東京メトロ日比谷線" }, "selected" : false }, { "data" : { "id" : "16321", "source" : "5972", "target" : "5973", "line_name_k" : "トウザイセン", "is_bullet" : false, "lon" : 139.8154913497142, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16321, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28004", "shared_interaction" : "28004", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ東西線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800412 (28004) 2800413", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800412 (28004) 2800413", "lat" : 35.683265329761525, "e_status_y" : 0, "line_name_h" : "東京メトロ東西線" }, "selected" : false }, { "data" : { "id" : "16320", "source" : "5971", "target" : "5972", "line_name_k" : "トウザイセン", "is_bullet" : false, "lon" : 139.8154913497142, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16320, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28004", "shared_interaction" : "28004", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ東西線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800411 (28004) 2800412", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800411 (28004) 2800412", "lat" : 35.683265329761525, "e_status_y" : 0, "line_name_h" : "東京メトロ東西線" }, "selected" : false }, { "data" : { "id" : "16319", "source" : "5970", "target" : "5971", "line_name_k" : "トウザイセン", "is_bullet" : false, "lon" : 139.8154913497142, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16319, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28004", "shared_interaction" : "28004", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ東西線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800410 (28004) 2800411", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800410 (28004) 2800411", "lat" : 35.683265329761525, "e_status_y" : 0, "line_name_h" : "東京メトロ東西線" }, "selected" : false }, { "data" : { "id" : "16318", "source" : "5969", "target" : "5970", "line_name_k" : "トウザイセン", "is_bullet" : false, "lon" : 139.8154913497142, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16318, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28004", "shared_interaction" : "28004", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ東西線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800409 (28004) 2800410", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800409 (28004) 2800410", "lat" : 35.683265329761525, "e_status_y" : 0, "line_name_h" : "東京メトロ東西線" }, "selected" : false }, { "data" : { "id" : "16317", "source" : "5968", "target" : "5969", "line_name_k" : "トウザイセン", "is_bullet" : false, "lon" : 139.8154913497142, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16317, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28004", "shared_interaction" : "28004", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ東西線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800408 (28004) 2800409", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800408 (28004) 2800409", "lat" : 35.683265329761525, "e_status_y" : 0, "line_name_h" : "東京メトロ東西線" }, "selected" : false }, { "data" : { "id" : "16316", "source" : "5967", "target" : "5968", "line_name_k" : "トウザイセン", "is_bullet" : false, "lon" : 139.8154913497142, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16316, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28004", "shared_interaction" : "28004", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ東西線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800407 (28004) 2800408", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800407 (28004) 2800408", "lat" : 35.683265329761525, "e_status_y" : 0, "line_name_h" : "東京メトロ東西線" }, "selected" : false }, { "data" : { "id" : "16315", "source" : "5966", "target" : "5967", "line_name_k" : "トウザイセン", "is_bullet" : false, "lon" : 139.8154913497142, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16315, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28004", "shared_interaction" : "28004", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ東西線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800406 (28004) 2800407", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800406 (28004) 2800407", "lat" : 35.683265329761525, "e_status_y" : 0, "line_name_h" : "東京メトロ東西線" }, "selected" : false }, { "data" : { "id" : "16314", "source" : "5965", "target" : "5966", "line_name_k" : "トウザイセン", "is_bullet" : false, "lon" : 139.8154913497142, "company_name_k" : "トウキョウメトロ", "zoom" : 11, "SUID" : 16314, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28004", "shared_interaction" : "28004", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ東西線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800405 (28004) 2800406", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800405 (28004) 2800406", "lat" : 35.683265329761525, "e_status_y" : 0, "line_name_h" : "東京メトロ東西線" }, "selected" : false }, { "data" : { "id" : "16297", "source" : "5947", "target" : "5948", "line_name_k" : "ヒビヤセン", "is_bullet" : false, "lon" : 139.76790012172296, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16297, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28003", "shared_interaction" : "28003", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ日比谷線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800308 (28003) 2800309", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800308 (28003) 2800309", "lat" : 35.69469233873322, "e_status_y" : 0, "line_name_h" : "東京メトロ日比谷線" }, "selected" : false }, { "data" : { "id" : "16298", "source" : "5948", "target" : "5949", "line_name_k" : "ヒビヤセン", "is_bullet" : false, "lon" : 139.76790012172296, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16298, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28003", "shared_interaction" : "28003", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ日比谷線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800309 (28003) 2800310", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800309 (28003) 2800310", "lat" : 35.69469233873322, "e_status_y" : 0, "line_name_h" : "東京メトロ日比谷線" }, "selected" : false }, { "data" : { "id" : "16295", "source" : "5945", "target" : "5946", "line_name_k" : "ヒビヤセン", "is_bullet" : false, "lon" : 139.76790012172296, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16295, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28003", "shared_interaction" : "28003", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ日比谷線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800306 (28003) 2800307", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800306 (28003) 2800307", "lat" : 35.69469233873322, "e_status_y" : 0, "line_name_h" : "東京メトロ日比谷線" }, "selected" : false }, { "data" : { "id" : "16296", "source" : "5946", "target" : "5947", "line_name_k" : "ヒビヤセン", "is_bullet" : false, "lon" : 139.76790012172296, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16296, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28003", "shared_interaction" : "28003", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ日比谷線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800307 (28003) 2800308", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800307 (28003) 2800308", "lat" : 35.69469233873322, "e_status_y" : 0, "line_name_h" : "東京メトロ日比谷線" }, "selected" : false }, { "data" : { "id" : "16293", "source" : "5943", "target" : "5944", "line_name_k" : "ヒビヤセン", "is_bullet" : false, "lon" : 139.76790012172296, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16293, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28003", "shared_interaction" : "28003", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ日比谷線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800304 (28003) 2800305", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800304 (28003) 2800305", "lat" : 35.69469233873322, "e_status_y" : 0, "line_name_h" : "東京メトロ日比谷線" }, "selected" : false }, { "data" : { "id" : "16294", "source" : "5944", "target" : "5945", "line_name_k" : "ヒビヤセン", "is_bullet" : false, "lon" : 139.76790012172296, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16294, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28003", "shared_interaction" : "28003", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ日比谷線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800305 (28003) 2800306", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800305 (28003) 2800306", "lat" : 35.69469233873322, "e_status_y" : 0, "line_name_h" : "東京メトロ日比谷線" }, "selected" : false }, { "data" : { "id" : "16291", "source" : "5941", "target" : "5942", "line_name_k" : "ヒビヤセン", "is_bullet" : false, "lon" : 139.76790012172296, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16291, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28003", "shared_interaction" : "28003", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ日比谷線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800302 (28003) 2800303", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800302 (28003) 2800303", "lat" : 35.69469233873322, "e_status_y" : 0, "line_name_h" : "東京メトロ日比谷線" }, "selected" : false }, { "data" : { "id" : "16292", "source" : "5942", "target" : "5943", "line_name_k" : "ヒビヤセン", "is_bullet" : false, "lon" : 139.76790012172296, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16292, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28003", "shared_interaction" : "28003", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ日比谷線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800303 (28003) 2800304", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800303 (28003) 2800304", "lat" : 35.69469233873322, "e_status_y" : 0, "line_name_h" : "東京メトロ日比谷線" }, "selected" : false }, { "data" : { "id" : "16305", "source" : "5955", "target" : "5956", "line_name_k" : "ヒビヤセン", "is_bullet" : false, "lon" : 139.76790012172296, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16305, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28003", "shared_interaction" : "28003", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ日比谷線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800316 (28003) 2800317", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800316 (28003) 2800317", "lat" : 35.69469233873322, "e_status_y" : 0, "line_name_h" : "東京メトロ日比谷線" }, "selected" : false }, { "data" : { "id" : "16306", "source" : "5956", "target" : "5957", "line_name_k" : "ヒビヤセン", "is_bullet" : false, "lon" : 139.76790012172296, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16306, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28003", "shared_interaction" : "28003", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ日比谷線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800317 (28003) 2800318", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800317 (28003) 2800318", "lat" : 35.69469233873322, "e_status_y" : 0, "line_name_h" : "東京メトロ日比谷線" }, "selected" : false }, { "data" : { "id" : "16303", "source" : "5953", "target" : "5954", "line_name_k" : "ヒビヤセン", "is_bullet" : false, "lon" : 139.76790012172296, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16303, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28003", "shared_interaction" : "28003", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ日比谷線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800314 (28003) 2800315", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800314 (28003) 2800315", "lat" : 35.69469233873322, "e_status_y" : 0, "line_name_h" : "東京メトロ日比谷線" }, "selected" : false }, { "data" : { "id" : "16304", "source" : "5954", "target" : "5955", "line_name_k" : "ヒビヤセン", "is_bullet" : false, "lon" : 139.76790012172296, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16304, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28003", "shared_interaction" : "28003", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ日比谷線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800315 (28003) 2800316", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800315 (28003) 2800316", "lat" : 35.69469233873322, "e_status_y" : 0, "line_name_h" : "東京メトロ日比谷線" }, "selected" : false }, { "data" : { "id" : "16301", "source" : "5951", "target" : "5952", "line_name_k" : "ヒビヤセン", "is_bullet" : false, "lon" : 139.76790012172296, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16301, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28003", "shared_interaction" : "28003", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ日比谷線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800312 (28003) 2800313", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800312 (28003) 2800313", "lat" : 35.69469233873322, "e_status_y" : 0, "line_name_h" : "東京メトロ日比谷線" }, "selected" : false }, { "data" : { "id" : "16302", "source" : "5952", "target" : "5953", "line_name_k" : "ヒビヤセン", "is_bullet" : false, "lon" : 139.76790012172296, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16302, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28003", "shared_interaction" : "28003", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ日比谷線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800313 (28003) 2800314", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800313 (28003) 2800314", "lat" : 35.69469233873322, "e_status_y" : 0, "line_name_h" : "東京メトロ日比谷線" }, "selected" : false }, { "data" : { "id" : "16299", "source" : "5949", "target" : "5950", "line_name_k" : "ヒビヤセン", "is_bullet" : false, "lon" : 139.76790012172296, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16299, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28003", "shared_interaction" : "28003", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ日比谷線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800310 (28003) 2800311", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800310 (28003) 2800311", "lat" : 35.69469233873322, "e_status_y" : 0, "line_name_h" : "東京メトロ日比谷線" }, "selected" : false }, { "data" : { "id" : "16300", "source" : "5950", "target" : "5951", "line_name_k" : "ヒビヤセン", "is_bullet" : false, "lon" : 139.76790012172296, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16300, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28003", "shared_interaction" : "28003", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ日比谷線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800311 (28003) 2800312", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800311 (28003) 2800312", "lat" : 35.69469233873322, "e_status_y" : 0, "line_name_h" : "東京メトロ日比谷線" }, "selected" : false }, { "data" : { "id" : "16281", "source" : "5930", "target" : "5931", "line_name_k" : "マルノウチセン", "is_bullet" : false, "lon" : 139.70043660044496, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16281, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28002", "shared_interaction" : "28002", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ丸ノ内線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800219 (28002) 2800220", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800219 (28002) 2800220", "lat" : 35.70518513577206, "e_status_y" : 0, "line_name_h" : "東京メトロ丸ノ内線" }, "selected" : false }, { "data" : { "id" : "16280", "source" : "5929", "target" : "5930", "line_name_k" : "マルノウチセン", "is_bullet" : false, "lon" : 139.70043660044496, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16280, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28002", "shared_interaction" : "28002", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ丸ノ内線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800218 (28002) 2800219", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800218 (28002) 2800219", "lat" : 35.70518513577206, "e_status_y" : 0, "line_name_h" : "東京メトロ丸ノ内線" }, "selected" : false }, { "data" : { "id" : "16284", "source" : "5932", "target" : "5934", "line_name_k" : "マルノウチセン", "is_bullet" : false, "lon" : 139.70043660044496, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16284, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28002", "shared_interaction" : "28002", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ丸ノ内線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800221 (28002) 2800222", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800221 (28002) 2800222", "lat" : 35.70518513577206, "e_status_y" : 0, "line_name_h" : "東京メトロ丸ノ内線" }, "selected" : false }, { "data" : { "id" : "16282", "source" : "5931", "target" : "5932", "line_name_k" : "マルノウチセン", "is_bullet" : false, "lon" : 139.70043660044496, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16282, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28002", "shared_interaction" : "28002", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ丸ノ内線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800220 (28002) 2800221", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800220 (28002) 2800221", "lat" : 35.70518513577206, "e_status_y" : 0, "line_name_h" : "東京メトロ丸ノ内線" }, "selected" : false }, { "data" : { "id" : "16283", "source" : "5931", "target" : "5933", "line_name_k" : "マルノウチセン", "is_bullet" : false, "lon" : 139.70043660044496, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16283, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28002", "shared_interaction" : "28002", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ丸ノ内線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800220 (28002) 2800226", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800220 (28002) 2800226", "lat" : 35.70518513577206, "e_status_y" : 0, "line_name_h" : "東京メトロ丸ノ内線" }, "selected" : false }, { "data" : { "id" : "16277", "source" : "5926", "target" : "5927", "line_name_k" : "マルノウチセン", "is_bullet" : false, "lon" : 139.70043660044496, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16277, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28002", "shared_interaction" : "28002", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ丸ノ内線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800215 (28002) 2800216", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800215 (28002) 2800216", "lat" : 35.70518513577206, "e_status_y" : 0, "line_name_h" : "東京メトロ丸ノ内線" }, "selected" : false }, { "data" : { "id" : "16276", "source" : "5925", "target" : "5926", "line_name_k" : "マルノウチセン", "is_bullet" : false, "lon" : 139.70043660044496, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16276, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28002", "shared_interaction" : "28002", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ丸ノ内線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800214 (28002) 2800215", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800214 (28002) 2800215", "lat" : 35.70518513577206, "e_status_y" : 0, "line_name_h" : "東京メトロ丸ノ内線" }, "selected" : false }, { "data" : { "id" : "16279", "source" : "5928", "target" : "5929", "line_name_k" : "マルノウチセン", "is_bullet" : false, "lon" : 139.70043660044496, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16279, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28002", "shared_interaction" : "28002", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ丸ノ内線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800217 (28002) 2800218", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800217 (28002) 2800218", "lat" : 35.70518513577206, "e_status_y" : 0, "line_name_h" : "東京メトロ丸ノ内線" }, "selected" : false }, { "data" : { "id" : "16278", "source" : "5927", "target" : "5928", "line_name_k" : "マルノウチセン", "is_bullet" : false, "lon" : 139.70043660044496, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16278, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28002", "shared_interaction" : "28002", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ丸ノ内線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800216 (28002) 2800217", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800216 (28002) 2800217", "lat" : 35.70518513577206, "e_status_y" : 0, "line_name_h" : "東京メトロ丸ノ内線" }, "selected" : false }, { "data" : { "id" : "16289", "source" : "5938", "target" : "5939", "line_name_k" : "マルノウチセン", "is_bullet" : false, "lon" : 139.70043660044496, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16289, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28002", "shared_interaction" : "28002", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ丸ノ内線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800227 (28002) 2800228", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800227 (28002) 2800228", "lat" : 35.70518513577206, "e_status_y" : 0, "line_name_h" : "東京メトロ丸ノ内線" }, "selected" : false }, { "data" : { "id" : "16290", "source" : "5940", "target" : "5941", "line_name_k" : "ヒビヤセン", "is_bullet" : false, "lon" : 139.76790012172296, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16290, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28003", "shared_interaction" : "28003", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ日比谷線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800301 (28003) 2800302", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800301 (28003) 2800302", "lat" : 35.69469233873322, "e_status_y" : 0, "line_name_h" : "東京メトロ日比谷線" }, "selected" : false }, { "data" : { "id" : "16286", "source" : "5934", "target" : "5935", "line_name_k" : "マルノウチセン", "is_bullet" : false, "lon" : 139.70043660044496, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16286, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28002", "shared_interaction" : "28002", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ丸ノ内線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800222 (28002) 2800223", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800222 (28002) 2800223", "lat" : 35.70518513577206, "e_status_y" : 0, "line_name_h" : "東京メトロ丸ノ内線" }, "selected" : false }, { "data" : { "id" : "16285", "source" : "5933", "target" : "5938", "line_name_k" : "マルノウチセン", "is_bullet" : false, "lon" : 139.70043660044496, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16285, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28002", "shared_interaction" : "28002", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ丸ノ内線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800226 (28002) 2800227", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800226 (28002) 2800227", "lat" : 35.70518513577206, "e_status_y" : 0, "line_name_h" : "東京メトロ丸ノ内線" }, "selected" : false }, { "data" : { "id" : "16288", "source" : "5936", "target" : "5937", "line_name_k" : "マルノウチセン", "is_bullet" : false, "lon" : 139.70043660044496, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16288, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28002", "shared_interaction" : "28002", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ丸ノ内線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800224 (28002) 2800225", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800224 (28002) 2800225", "lat" : 35.70518513577206, "e_status_y" : 0, "line_name_h" : "東京メトロ丸ノ内線" }, "selected" : false }, { "data" : { "id" : "16287", "source" : "5935", "target" : "5936", "line_name_k" : "マルノウチセン", "is_bullet" : false, "lon" : 139.70043660044496, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16287, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28002", "shared_interaction" : "28002", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ丸ノ内線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800223 (28002) 2800224", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800223 (28002) 2800224", "lat" : 35.70518513577206, "e_status_y" : 0, "line_name_h" : "東京メトロ丸ノ内線" }, "selected" : false }, { "data" : { "id" : "16264", "source" : "5913", "target" : "5914", "line_name_k" : "マルノウチセン", "is_bullet" : false, "lon" : 139.70043660044496, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16264, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28002", "shared_interaction" : "28002", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ丸ノ内線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800202 (28002) 2800203", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800202 (28002) 2800203", "lat" : 35.70518513577206, "e_status_y" : 0, "line_name_h" : "東京メトロ丸ノ内線" }, "selected" : false }, { "data" : { "id" : "16265", "source" : "5914", "target" : "5915", "line_name_k" : "マルノウチセン", "is_bullet" : false, "lon" : 139.70043660044496, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16265, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28002", "shared_interaction" : "28002", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ丸ノ内線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800203 (28002) 2800204", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800203 (28002) 2800204", "lat" : 35.70518513577206, "e_status_y" : 0, "line_name_h" : "東京メトロ丸ノ内線" }, "selected" : false }, { "data" : { "id" : "16266", "source" : "5915", "target" : "5916", "line_name_k" : "マルノウチセン", "is_bullet" : false, "lon" : 139.70043660044496, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16266, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28002", "shared_interaction" : "28002", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ丸ノ内線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800204 (28002) 2800205", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800204 (28002) 2800205", "lat" : 35.70518513577206, "e_status_y" : 0, "line_name_h" : "東京メトロ丸ノ内線" }, "selected" : false }, { "data" : { "id" : "16267", "source" : "5916", "target" : "5917", "line_name_k" : "マルノウチセン", "is_bullet" : false, "lon" : 139.70043660044496, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16267, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28002", "shared_interaction" : "28002", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ丸ノ内線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800205 (28002) 2800206", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800205 (28002) 2800206", "lat" : 35.70518513577206, "e_status_y" : 0, "line_name_h" : "東京メトロ丸ノ内線" }, "selected" : false }, { "data" : { "id" : "16261", "source" : "5909", "target" : "5910", "line_name_k" : "ギンザセン", "is_bullet" : false, "lon" : 139.75720810526002, "company_name_k" : "トウキョウメトロ", "zoom" : 13, "SUID" : 16261, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28001", "shared_interaction" : "28001", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ銀座線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800117 (28001) 2800118", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800117 (28001) 2800118", "lat" : 35.68646095045909, "e_status_y" : 0, "line_name_h" : "東京メトロ銀座線" }, "selected" : false }, { "data" : { "id" : "16262", "source" : "5910", "target" : "5911", "line_name_k" : "ギンザセン", "is_bullet" : false, "lon" : 139.75720810526002, "company_name_k" : "トウキョウメトロ", "zoom" : 13, "SUID" : 16262, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28001", "shared_interaction" : "28001", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ銀座線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800118 (28001) 2800119", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800118 (28001) 2800119", "lat" : 35.68646095045909, "e_status_y" : 0, "line_name_h" : "東京メトロ銀座線" }, "selected" : false }, { "data" : { "id" : "16263", "source" : "5912", "target" : "5913", "line_name_k" : "マルノウチセン", "is_bullet" : false, "lon" : 139.70043660044496, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16263, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28002", "shared_interaction" : "28002", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ丸ノ内線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800201 (28002) 2800202", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800201 (28002) 2800202", "lat" : 35.70518513577206, "e_status_y" : 0, "line_name_h" : "東京メトロ丸ノ内線" }, "selected" : false }, { "data" : { "id" : "16272", "source" : "5921", "target" : "5922", "line_name_k" : "マルノウチセン", "is_bullet" : false, "lon" : 139.70043660044496, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16272, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28002", "shared_interaction" : "28002", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ丸ノ内線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800210 (28002) 2800211", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800210 (28002) 2800211", "lat" : 35.70518513577206, "e_status_y" : 0, "line_name_h" : "東京メトロ丸ノ内線" }, "selected" : false }, { "data" : { "id" : "16273", "source" : "5922", "target" : "5923", "line_name_k" : "マルノウチセン", "is_bullet" : false, "lon" : 139.70043660044496, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16273, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28002", "shared_interaction" : "28002", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ丸ノ内線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800211 (28002) 2800212", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800211 (28002) 2800212", "lat" : 35.70518513577206, "e_status_y" : 0, "line_name_h" : "東京メトロ丸ノ内線" }, "selected" : false }, { "data" : { "id" : "16274", "source" : "5923", "target" : "5924", "line_name_k" : "マルノウチセン", "is_bullet" : false, "lon" : 139.70043660044496, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16274, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28002", "shared_interaction" : "28002", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ丸ノ内線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800212 (28002) 2800213", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800212 (28002) 2800213", "lat" : 35.70518513577206, "e_status_y" : 0, "line_name_h" : "東京メトロ丸ノ内線" }, "selected" : false }, { "data" : { "id" : "16275", "source" : "5924", "target" : "5925", "line_name_k" : "マルノウチセン", "is_bullet" : false, "lon" : 139.70043660044496, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16275, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28002", "shared_interaction" : "28002", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ丸ノ内線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800213 (28002) 2800214", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800213 (28002) 2800214", "lat" : 35.70518513577206, "e_status_y" : 0, "line_name_h" : "東京メトロ丸ノ内線" }, "selected" : false }, { "data" : { "id" : "16268", "source" : "5917", "target" : "5918", "line_name_k" : "マルノウチセン", "is_bullet" : false, "lon" : 139.70043660044496, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16268, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28002", "shared_interaction" : "28002", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ丸ノ内線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800206 (28002) 2800207", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800206 (28002) 2800207", "lat" : 35.70518513577206, "e_status_y" : 0, "line_name_h" : "東京メトロ丸ノ内線" }, "selected" : false }, { "data" : { "id" : "16269", "source" : "5918", "target" : "5919", "line_name_k" : "マルノウチセン", "is_bullet" : false, "lon" : 139.70043660044496, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16269, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28002", "shared_interaction" : "28002", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ丸ノ内線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800207 (28002) 2800208", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800207 (28002) 2800208", "lat" : 35.70518513577206, "e_status_y" : 0, "line_name_h" : "東京メトロ丸ノ内線" }, "selected" : false }, { "data" : { "id" : "16270", "source" : "5919", "target" : "5920", "line_name_k" : "マルノウチセン", "is_bullet" : false, "lon" : 139.70043660044496, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16270, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28002", "shared_interaction" : "28002", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ丸ノ内線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800208 (28002) 2800209", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800208 (28002) 2800209", "lat" : 35.70518513577206, "e_status_y" : 0, "line_name_h" : "東京メトロ丸ノ内線" }, "selected" : false }, { "data" : { "id" : "16271", "source" : "5920", "target" : "5921", "line_name_k" : "マルノウチセン", "is_bullet" : false, "lon" : 139.70043660044496, "company_name_k" : "トウキョウメトロ", "zoom" : 12, "SUID" : 16271, "company_type" : 2, "company_name_h" : "東京地下鉄株式会社", "interaction" : "28002", "shared_interaction" : "28002", "company_url" : "http://www.tokyometro.jp/", "line_name" : "東京メトロ丸ノ内線", "selected" : false, "company_name" : "東京メトロ", "company_cd" : 18, "name" : "2800209 (28002) 2800210", "rr_cd" : 28, "company_name_r" : "東京メトロ", "e_status_x" : 0, "shared_name" : "2800209 (28002) 2800210", "lat" : 35.70518513577206, "e_status_y" : 0, "line_name_h" : "東京メトロ丸ノ内線" }, "selected" : false }, { "data" : { "id" : "13589", "source" : "3103", "target" : "3104", "line_name_k" : "サイキョウセン", "is_bullet" : false, "lon" : 139.6182015405503, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13589, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11321", "shared_interaction" : "11321", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR埼京線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132108 (11321) 1132109", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132108 (11321) 1132109", "lat" : 35.80319581571332, "e_status_y" : 0, "line_name_h" : "JR埼京線" }, "selected" : false }, { "data" : { "id" : "13590", "source" : "3104", "target" : "3105", "line_name_k" : "サイキョウセン", "is_bullet" : false, "lon" : 139.6182015405503, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13590, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11321", "shared_interaction" : "11321", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR埼京線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132109 (11321) 1132110", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132109 (11321) 1132110", "lat" : 35.80319581571332, "e_status_y" : 0, "line_name_h" : "JR埼京線" }, "selected" : false }, { "data" : { "id" : "13587", "source" : "3101", "target" : "3102", "line_name_k" : "サイキョウセン", "is_bullet" : false, "lon" : 139.6182015405503, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13587, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11321", "shared_interaction" : "11321", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR埼京線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132106 (11321) 1132107", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132106 (11321) 1132107", "lat" : 35.80319581571332, "e_status_y" : 0, "line_name_h" : "JR埼京線" }, "selected" : false }, { "data" : { "id" : "13588", "source" : "3102", "target" : "3103", "line_name_k" : "サイキョウセン", "is_bullet" : false, "lon" : 139.6182015405503, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13588, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11321", "shared_interaction" : "11321", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR埼京線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132107 (11321) 1132108", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132107 (11321) 1132108", "lat" : 35.80319581571332, "e_status_y" : 0, "line_name_h" : "JR埼京線" }, "selected" : false }, { "data" : { "id" : "13582", "source" : "3096", "target" : "3097", "line_name_k" : "サイキョウセン", "is_bullet" : false, "lon" : 139.6182015405503, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13582, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11321", "shared_interaction" : "11321", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR埼京線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132101 (11321) 1132102", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132101 (11321) 1132102", "lat" : 35.80319581571332, "e_status_y" : 0, "line_name_h" : "JR埼京線" }, "selected" : false }, { "data" : { "id" : "13585", "source" : "3099", "target" : "3100", "line_name_k" : "サイキョウセン", "is_bullet" : false, "lon" : 139.6182015405503, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13585, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11321", "shared_interaction" : "11321", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR埼京線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132104 (11321) 1132105", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132104 (11321) 1132105", "lat" : 35.80319581571332, "e_status_y" : 0, "line_name_h" : "JR埼京線" }, "selected" : false }, { "data" : { "id" : "15701", "source" : "5300", "target" : "5301", "line_name_k" : "トウブカメイドセン", "is_bullet" : false, "lon" : 139.8243467565918, "company_name_k" : "トウブテツドウ", "zoom" : 14, "SUID" : 15701, "company_type" : 2, "company_name_h" : "東武鉄道株式会社", "interaction" : "21005", "shared_interaction" : "21005", "company_url" : "http://www.tobu.co.jp/", "line_name" : "東武亀戸線", "selected" : false, "company_name" : "東武鉄道", "company_cd" : 11, "name" : "2100501 (21005) 2100502", "rr_cd" : 21, "company_name_r" : "東武", "e_status_x" : 0, "shared_name" : "2100501 (21005) 2100502", "lat" : 35.707951515131064, "e_status_y" : 0, "line_name_h" : "東武亀戸線" }, "selected" : false }, { "data" : { "id" : "13586", "source" : "3100", "target" : "3101", "line_name_k" : "サイキョウセン", "is_bullet" : false, "lon" : 139.6182015405503, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13586, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11321", "shared_interaction" : "11321", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR埼京線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132105 (11321) 1132106", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132105 (11321) 1132106", "lat" : 35.80319581571332, "e_status_y" : 0, "line_name_h" : "JR埼京線" }, "selected" : false }, { "data" : { "id" : "13583", "source" : "3097", "target" : "3098", "line_name_k" : "サイキョウセン", "is_bullet" : false, "lon" : 139.6182015405503, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13583, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11321", "shared_interaction" : "11321", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR埼京線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132102 (11321) 1132103", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132102 (11321) 1132103", "lat" : 35.80319581571332, "e_status_y" : 0, "line_name_h" : "JR埼京線" }, "selected" : false }, { "data" : { "id" : "13584", "source" : "3098", "target" : "3099", "line_name_k" : "サイキョウセン", "is_bullet" : false, "lon" : 139.6182015405503, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13584, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11321", "shared_interaction" : "11321", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR埼京線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132103 (11321) 1132104", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132103 (11321) 1132104", "lat" : 35.80319581571332, "e_status_y" : 0, "line_name_h" : "JR埼京線" }, "selected" : false }, { "data" : { "id" : "15703", "source" : "5302", "target" : "5303", "line_name_k" : "トウブカメイドセン", "is_bullet" : false, "lon" : 139.8243467565918, "company_name_k" : "トウブテツドウ", "zoom" : 14, "SUID" : 15703, "company_type" : 2, "company_name_h" : "東武鉄道株式会社", "interaction" : "21005", "shared_interaction" : "21005", "company_url" : "http://www.tobu.co.jp/", "line_name" : "東武亀戸線", "selected" : false, "company_name" : "東武鉄道", "company_cd" : 11, "name" : "2100503 (21005) 2100504", "rr_cd" : 21, "company_name_r" : "東武", "e_status_x" : 0, "shared_name" : "2100503 (21005) 2100504", "lat" : 35.707951515131064, "e_status_y" : 0, "line_name_h" : "東武亀戸線" }, "selected" : false }, { "data" : { "id" : "15702", "source" : "5301", "target" : "5302", "line_name_k" : "トウブカメイドセン", "is_bullet" : false, "lon" : 139.8243467565918, "company_name_k" : "トウブテツドウ", "zoom" : 14, "SUID" : 15702, "company_type" : 2, "company_name_h" : "東武鉄道株式会社", "interaction" : "21005", "shared_interaction" : "21005", "company_url" : "http://www.tobu.co.jp/", "line_name" : "東武亀戸線", "selected" : false, "company_name" : "東武鉄道", "company_cd" : 11, "name" : "2100502 (21005) 2100503", "rr_cd" : 21, "company_name_r" : "東武", "e_status_x" : 0, "shared_name" : "2100502 (21005) 2100503", "lat" : 35.707951515131064, "e_status_y" : 0, "line_name_h" : "東武亀戸線" }, "selected" : false }, { "data" : { "id" : "15704", "source" : "5303", "target" : "5304", "line_name_k" : "トウブカメイドセン", "is_bullet" : false, "lon" : 139.8243467565918, "company_name_k" : "トウブテツドウ", "zoom" : 14, "SUID" : 15704, "company_type" : 2, "company_name_h" : "東武鉄道株式会社", "interaction" : "21005", "shared_interaction" : "21005", "company_url" : "http://www.tobu.co.jp/", "line_name" : "東武亀戸線", "selected" : false, "company_name" : "東武鉄道", "company_cd" : 11, "name" : "2100504 (21005) 2100505", "rr_cd" : 21, "company_name_r" : "東武", "e_status_x" : 0, "shared_name" : "2100504 (21005) 2100505", "lat" : 35.707951515131064, "e_status_y" : 0, "line_name_h" : "東武亀戸線" }, "selected" : false }, { "data" : { "id" : "15705", "source" : "5305", "target" : "5306", "line_name_k" : "トウブダイシセン", "is_bullet" : false, "lon" : 139.78532285449214, "company_name_k" : "トウブテツドウ", "zoom" : 15, "SUID" : 15705, "company_type" : 2, "company_name_h" : "東武鉄道株式会社", "interaction" : "21006", "shared_interaction" : "21006", "company_url" : "http://www.tobu.co.jp/", "line_name" : "東武大師線", "selected" : false, "company_name" : "東武鉄道", "company_cd" : 11, "name" : "2100601 (21006) 2100602", "rr_cd" : 21, "company_name_r" : "東武", "e_status_x" : 0, "shared_name" : "2100601 (21006) 2100602", "lat" : 35.77906122777853, "e_status_y" : 0, "line_name_h" : "東武大師線" }, "selected" : false }, { "data" : { "id" : "13610", "source" : "3126", "target" : "3127", "line_name_k" : "タカサキセン", "is_bullet" : false, "lon" : 139.45218074609377, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 9, "SUID" : 13610, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11323", "shared_interaction" : "11323", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR高崎線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132301 (11323) 1132302", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132301 (11323) 1132302", "lat" : 36.09573564081418, "e_status_y" : 0, "line_name_h" : "JR高崎線" }, "selected" : false }, { "data" : { "id" : "13611", "source" : "3127", "target" : "3128", "line_name_k" : "タカサキセン", "is_bullet" : false, "lon" : 139.45218074609377, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 9, "SUID" : 13611, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11323", "shared_interaction" : "11323", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR高崎線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132302 (11323) 1132303", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132302 (11323) 1132303", "lat" : 36.09573564081418, "e_status_y" : 0, "line_name_h" : "JR高崎線" }, "selected" : false }, { "data" : { "id" : "15756", "source" : "5363", "target" : "5364", "line_name_k" : "セイブイケブクロセン", "is_bullet" : false, "lon" : 139.46789285918442, "company_name_k" : "セイブテツドウ", "zoom" : 10, "SUID" : 15756, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22001", "shared_interaction" : "22001", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武池袋線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200102 (22001) 2200103", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200102 (22001) 2200103", "lat" : 35.791261736068634, "e_status_y" : 0, "line_name_h" : "西武池袋線" }, "selected" : false }, { "data" : { "id" : "15757", "source" : "5364", "target" : "5365", "line_name_k" : "セイブイケブクロセン", "is_bullet" : false, "lon" : 139.46789285918442, "company_name_k" : "セイブテツドウ", "zoom" : 10, "SUID" : 15757, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22001", "shared_interaction" : "22001", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武池袋線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200103 (22001) 2200104", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200103 (22001) 2200104", "lat" : 35.791261736068634, "e_status_y" : 0, "line_name_h" : "西武池袋線" }, "selected" : false }, { "data" : { "id" : "15755", "source" : "5362", "target" : "5363", "line_name_k" : "セイブイケブクロセン", "is_bullet" : false, "lon" : 139.46789285918442, "company_name_k" : "セイブテツドウ", "zoom" : 10, "SUID" : 15755, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22001", "shared_interaction" : "22001", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武池袋線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200101 (22001) 2200102", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200101 (22001) 2200102", "lat" : 35.791261736068634, "e_status_y" : 0, "line_name_h" : "西武池袋線" }, "selected" : false }, { "data" : { "id" : "15763", "source" : "5370", "target" : "5371", "line_name_k" : "セイブイケブクロセン", "is_bullet" : false, "lon" : 139.46789285918442, "company_name_k" : "セイブテツドウ", "zoom" : 10, "SUID" : 15763, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22001", "shared_interaction" : "22001", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武池袋線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200109 (22001) 2200110", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200109 (22001) 2200110", "lat" : 35.791261736068634, "e_status_y" : 0, "line_name_h" : "西武池袋線" }, "selected" : false }, { "data" : { "id" : "15762", "source" : "5369", "target" : "5370", "line_name_k" : "セイブイケブクロセン", "is_bullet" : false, "lon" : 139.46789285918442, "company_name_k" : "セイブテツドウ", "zoom" : 10, "SUID" : 15762, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22001", "shared_interaction" : "22001", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武池袋線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200108 (22001) 2200109", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200108 (22001) 2200109", "lat" : 35.791261736068634, "e_status_y" : 0, "line_name_h" : "西武池袋線" }, "selected" : false }, { "data" : { "id" : "15765", "source" : "5372", "target" : "5373", "line_name_k" : "セイブイケブクロセン", "is_bullet" : false, "lon" : 139.46789285918442, "company_name_k" : "セイブテツドウ", "zoom" : 10, "SUID" : 15765, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22001", "shared_interaction" : "22001", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武池袋線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200111 (22001) 2200112", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200111 (22001) 2200112", "lat" : 35.791261736068634, "e_status_y" : 0, "line_name_h" : "西武池袋線" }, "selected" : false }, { "data" : { "id" : "15764", "source" : "5371", "target" : "5372", "line_name_k" : "セイブイケブクロセン", "is_bullet" : false, "lon" : 139.46789285918442, "company_name_k" : "セイブテツドウ", "zoom" : 10, "SUID" : 15764, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22001", "shared_interaction" : "22001", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武池袋線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200110 (22001) 2200111", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200110 (22001) 2200111", "lat" : 35.791261736068634, "e_status_y" : 0, "line_name_h" : "西武池袋線" }, "selected" : false }, { "data" : { "id" : "15759", "source" : "5366", "target" : "5367", "line_name_k" : "セイブイケブクロセン", "is_bullet" : false, "lon" : 139.46789285918442, "company_name_k" : "セイブテツドウ", "zoom" : 10, "SUID" : 15759, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22001", "shared_interaction" : "22001", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武池袋線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200105 (22001) 2200106", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200105 (22001) 2200106", "lat" : 35.791261736068634, "e_status_y" : 0, "line_name_h" : "西武池袋線" }, "selected" : false }, { "data" : { "id" : "13694", "source" : "3213", "target" : "3214", "line_name_k" : "ケイヨウセン", "is_bullet" : false, "lon" : 139.93611002907872, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13694, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11326", "shared_interaction" : "11326", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR京葉線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132605 (11326) 1132606", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132605 (11326) 1132606", "lat" : 35.643649620088546, "e_status_y" : 0, "line_name_h" : "JR京葉線" }, "selected" : false }, { "data" : { "id" : "15758", "source" : "5365", "target" : "5366", "line_name_k" : "セイブイケブクロセン", "is_bullet" : false, "lon" : 139.46789285918442, "company_name_k" : "セイブテツドウ", "zoom" : 10, "SUID" : 15758, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22001", "shared_interaction" : "22001", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武池袋線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200104 (22001) 2200105", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200104 (22001) 2200105", "lat" : 35.791261736068634, "e_status_y" : 0, "line_name_h" : "西武池袋線" }, "selected" : false }, { "data" : { "id" : "15761", "source" : "5368", "target" : "5369", "line_name_k" : "セイブイケブクロセン", "is_bullet" : false, "lon" : 139.46789285918442, "company_name_k" : "セイブテツドウ", "zoom" : 10, "SUID" : 15761, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22001", "shared_interaction" : "22001", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武池袋線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200107 (22001) 2200108", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200107 (22001) 2200108", "lat" : 35.791261736068634, "e_status_y" : 0, "line_name_h" : "西武池袋線" }, "selected" : false }, { "data" : { "id" : "15760", "source" : "5367", "target" : "5368", "line_name_k" : "セイブイケブクロセン", "is_bullet" : false, "lon" : 139.46789285918442, "company_name_k" : "セイブテツドウ", "zoom" : 10, "SUID" : 15760, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22001", "shared_interaction" : "22001", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武池袋線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200106 (22001) 2200107", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200106 (22001) 2200107", "lat" : 35.791261736068634, "e_status_y" : 0, "line_name_h" : "西武池袋線" }, "selected" : false }, { "data" : { "id" : "13691", "source" : "3210", "target" : "3211", "line_name_k" : "ケイヨウセン", "is_bullet" : false, "lon" : 139.93611002907872, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13691, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11326", "shared_interaction" : "11326", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR京葉線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132602 (11326) 1132603", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132602 (11326) 1132603", "lat" : 35.643649620088546, "e_status_y" : 0, "line_name_h" : "JR京葉線" }, "selected" : false }, { "data" : { "id" : "13690", "source" : "3209", "target" : "3210", "line_name_k" : "ケイヨウセン", "is_bullet" : false, "lon" : 139.93611002907872, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13690, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11326", "shared_interaction" : "11326", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR京葉線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132601 (11326) 1132602", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132601 (11326) 1132602", "lat" : 35.643649620088546, "e_status_y" : 0, "line_name_h" : "JR京葉線" }, "selected" : false }, { "data" : { "id" : "13693", "source" : "3212", "target" : "3213", "line_name_k" : "ケイヨウセン", "is_bullet" : false, "lon" : 139.93611002907872, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13693, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11326", "shared_interaction" : "11326", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR京葉線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132604 (11326) 1132605", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132604 (11326) 1132605", "lat" : 35.643649620088546, "e_status_y" : 0, "line_name_h" : "JR京葉線" }, "selected" : false }, { "data" : { "id" : "13692", "source" : "3211", "target" : "3212", "line_name_k" : "ケイヨウセン", "is_bullet" : false, "lon" : 139.93611002907872, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13692, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11326", "shared_interaction" : "11326", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR京葉線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132603 (11326) 1132604", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132603 (11326) 1132604", "lat" : 35.643649620088546, "e_status_y" : 0, "line_name_h" : "JR京葉線" }, "selected" : false }, { "data" : { "id" : "15767", "source" : "5374", "target" : "5375", "line_name_k" : "セイブイケブクロセン", "is_bullet" : false, "lon" : 139.46789285918442, "company_name_k" : "セイブテツドウ", "zoom" : 10, "SUID" : 15767, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22001", "shared_interaction" : "22001", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武池袋線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200113 (22001) 2200114", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200113 (22001) 2200114", "lat" : 35.791261736068634, "e_status_y" : 0, "line_name_h" : "西武池袋線" }, "selected" : false }, { "data" : { "id" : "15766", "source" : "5373", "target" : "5374", "line_name_k" : "セイブイケブクロセン", "is_bullet" : false, "lon" : 139.46789285918442, "company_name_k" : "セイブテツドウ", "zoom" : 10, "SUID" : 15766, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22001", "shared_interaction" : "22001", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武池袋線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200112 (22001) 2200113", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200112 (22001) 2200113", "lat" : 35.791261736068634, "e_status_y" : 0, "line_name_h" : "西武池袋線" }, "selected" : false }, { "data" : { "id" : "15769", "source" : "5376", "target" : "5377", "line_name_k" : "セイブイケブクロセン", "is_bullet" : false, "lon" : 139.46789285918442, "company_name_k" : "セイブテツドウ", "zoom" : 10, "SUID" : 15769, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22001", "shared_interaction" : "22001", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武池袋線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200115 (22001) 2200116", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200115 (22001) 2200116", "lat" : 35.791261736068634, "e_status_y" : 0, "line_name_h" : "西武池袋線" }, "selected" : false }, { "data" : { "id" : "15768", "source" : "5375", "target" : "5376", "line_name_k" : "セイブイケブクロセン", "is_bullet" : false, "lon" : 139.46789285918442, "company_name_k" : "セイブテツドウ", "zoom" : 10, "SUID" : 15768, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22001", "shared_interaction" : "22001", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武池袋線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200114 (22001) 2200115", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200114 (22001) 2200115", "lat" : 35.791261736068634, "e_status_y" : 0, "line_name_h" : "西武池袋線" }, "selected" : false }, { "data" : { "id" : "17845", "source" : "7607", "target" : "7608", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17845, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930132 (99301) 9930133", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930132 (99301) 9930133", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "15556", "source" : "5151", "target" : "5152", "line_name_k" : "トウブトウジョウセン", "is_bullet" : false, "lon" : 139.4596378608162, "company_name_k" : "トウブテツドウ", "zoom" : 10, "SUID" : 15556, "company_type" : 2, "company_name_h" : "東武鉄道株式会社", "interaction" : "21001", "shared_interaction" : "21001", "company_url" : "http://www.tobu.co.jp/", "line_name" : "東武東上線", "selected" : false, "company_name" : "東武鉄道", "company_cd" : 11, "name" : "2100106 (21001) 2100107", "rr_cd" : 21, "company_name_r" : "東武", "e_status_x" : 0, "shared_name" : "2100106 (21001) 2100107", "lat" : 35.921218671003345, "e_status_y" : 0, "line_name_h" : "東武東上線" }, "selected" : false }, { "data" : { "id" : "17846", "source" : "7608", "target" : "7609", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17846, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930133 (99301) 9930134", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930133 (99301) 9930134", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "15557", "source" : "5152", "target" : "5153", "line_name_k" : "トウブトウジョウセン", "is_bullet" : false, "lon" : 139.4596378608162, "company_name_k" : "トウブテツドウ", "zoom" : 10, "SUID" : 15557, "company_type" : 2, "company_name_h" : "東武鉄道株式会社", "interaction" : "21001", "shared_interaction" : "21001", "company_url" : "http://www.tobu.co.jp/", "line_name" : "東武東上線", "selected" : false, "company_name" : "東武鉄道", "company_cd" : 11, "name" : "2100107 (21001) 2100108", "rr_cd" : 21, "company_name_r" : "東武", "e_status_x" : 0, "shared_name" : "2100107 (21001) 2100108", "lat" : 35.921218671003345, "e_status_y" : 0, "line_name_h" : "東武東上線" }, "selected" : false }, { "data" : { "id" : "17843", "source" : "7605", "target" : "7606", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17843, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930130 (99301) 9930131", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930130 (99301) 9930131", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "15554", "source" : "5149", "target" : "5150", "line_name_k" : "トウブトウジョウセン", "is_bullet" : false, "lon" : 139.4596378608162, "company_name_k" : "トウブテツドウ", "zoom" : 10, "SUID" : 15554, "company_type" : 2, "company_name_h" : "東武鉄道株式会社", "interaction" : "21001", "shared_interaction" : "21001", "company_url" : "http://www.tobu.co.jp/", "line_name" : "東武東上線", "selected" : false, "company_name" : "東武鉄道", "company_cd" : 11, "name" : "2100104 (21001) 2100105", "rr_cd" : 21, "company_name_r" : "東武", "e_status_x" : 0, "shared_name" : "2100104 (21001) 2100105", "lat" : 35.921218671003345, "e_status_y" : 0, "line_name_h" : "東武東上線" }, "selected" : false }, { "data" : { "id" : "17844", "source" : "7606", "target" : "7607", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17844, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930131 (99301) 9930132", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930131 (99301) 9930132", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "15555", "source" : "5150", "target" : "5151", "line_name_k" : "トウブトウジョウセン", "is_bullet" : false, "lon" : 139.4596378608162, "company_name_k" : "トウブテツドウ", "zoom" : 10, "SUID" : 15555, "company_type" : 2, "company_name_h" : "東武鉄道株式会社", "interaction" : "21001", "shared_interaction" : "21001", "company_url" : "http://www.tobu.co.jp/", "line_name" : "東武東上線", "selected" : false, "company_name" : "東武鉄道", "company_cd" : 11, "name" : "2100105 (21001) 2100106", "rr_cd" : 21, "company_name_r" : "東武", "e_status_x" : 0, "shared_name" : "2100105 (21001) 2100106", "lat" : 35.921218671003345, "e_status_y" : 0, "line_name_h" : "東武東上線" }, "selected" : false }, { "data" : { "id" : "17849", "source" : "7611", "target" : "7612", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17849, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930136 (99301) 9930137", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930136 (99301) 9930137", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "17850", "source" : "7612", "target" : "7613", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17850, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930137 (99301) 9930138", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930137 (99301) 9930138", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "17847", "source" : "7609", "target" : "7610", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17847, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930134 (99301) 9930135", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930134 (99301) 9930135", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "15558", "source" : "5153", "target" : "5154", "line_name_k" : "トウブトウジョウセン", "is_bullet" : false, "lon" : 139.4596378608162, "company_name_k" : "トウブテツドウ", "zoom" : 10, "SUID" : 15558, "company_type" : 2, "company_name_h" : "東武鉄道株式会社", "interaction" : "21001", "shared_interaction" : "21001", "company_url" : "http://www.tobu.co.jp/", "line_name" : "東武東上線", "selected" : false, "company_name" : "東武鉄道", "company_cd" : 11, "name" : "2100108 (21001) 2100109", "rr_cd" : 21, "company_name_r" : "東武", "e_status_x" : 0, "shared_name" : "2100108 (21001) 2100109", "lat" : 35.921218671003345, "e_status_y" : 0, "line_name_h" : "東武東上線" }, "selected" : false }, { "data" : { "id" : "17848", "source" : "7610", "target" : "7611", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17848, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930135 (99301) 9930136", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930135 (99301) 9930136", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "15559", "source" : "5154", "target" : "5155", "line_name_k" : "トウブトウジョウセン", "is_bullet" : false, "lon" : 139.4596378608162, "company_name_k" : "トウブテツドウ", "zoom" : 10, "SUID" : 15559, "company_type" : 2, "company_name_h" : "東武鉄道株式会社", "interaction" : "21001", "shared_interaction" : "21001", "company_url" : "http://www.tobu.co.jp/", "line_name" : "東武東上線", "selected" : false, "company_name" : "東武鉄道", "company_cd" : 11, "name" : "2100109 (21001) 2100110", "rr_cd" : 21, "company_name_r" : "東武", "e_status_x" : 0, "shared_name" : "2100109 (21001) 2100110", "lat" : 35.921218671003345, "e_status_y" : 0, "line_name_h" : "東武東上線" }, "selected" : false }, { "data" : { "id" : "17852", "source" : "7615", "target" : "7616", "line_name_k" : "トエイアサクサセン", "is_bullet" : false, "lon" : 139.75860382724613, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17852, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99302", "shared_interaction" : "99302", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営浅草線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930202 (99302) 9930203", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930202 (99302) 9930203", "lat" : 35.66226194441651, "e_status_y" : 0, "line_name_h" : "都営浅草線" }, "selected" : false }, { "data" : { "id" : "17853", "source" : "7616", "target" : "7617", "line_name_k" : "トエイアサクサセン", "is_bullet" : false, "lon" : 139.75860382724613, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17853, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99302", "shared_interaction" : "99302", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営浅草線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930203 (99302) 9930204", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930203 (99302) 9930204", "lat" : 35.66226194441651, "e_status_y" : 0, "line_name_h" : "都営浅草線" }, "selected" : false }, { "data" : { "id" : "17851", "source" : "7614", "target" : "7615", "line_name_k" : "トエイアサクサセン", "is_bullet" : false, "lon" : 139.75860382724613, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17851, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99302", "shared_interaction" : "99302", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営浅草線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930201 (99302) 9930202", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930201 (99302) 9930202", "lat" : 35.66226194441651, "e_status_y" : 0, "line_name_h" : "都営浅草線" }, "selected" : false }, { "data" : { "id" : "15552", "source" : "5147", "target" : "5148", "line_name_k" : "トウブトウジョウセン", "is_bullet" : false, "lon" : 139.4596378608162, "company_name_k" : "トウブテツドウ", "zoom" : 10, "SUID" : 15552, "company_type" : 2, "company_name_h" : "東武鉄道株式会社", "interaction" : "21001", "shared_interaction" : "21001", "company_url" : "http://www.tobu.co.jp/", "line_name" : "東武東上線", "selected" : false, "company_name" : "東武鉄道", "company_cd" : 11, "name" : "2100102 (21001) 2100103", "rr_cd" : 21, "company_name_r" : "東武", "e_status_x" : 0, "shared_name" : "2100102 (21001) 2100103", "lat" : 35.921218671003345, "e_status_y" : 0, "line_name_h" : "東武東上線" }, "selected" : false }, { "data" : { "id" : "17856", "source" : "7619", "target" : "7620", "line_name_k" : "トエイアサクサセン", "is_bullet" : false, "lon" : 139.75860382724613, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17856, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99302", "shared_interaction" : "99302", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営浅草線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930206 (99302) 9930207", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930206 (99302) 9930207", "lat" : 35.66226194441651, "e_status_y" : 0, "line_name_h" : "都営浅草線" }, "selected" : false }, { "data" : { "id" : "17857", "source" : "7620", "target" : "7621", "line_name_k" : "トエイアサクサセン", "is_bullet" : false, "lon" : 139.75860382724613, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17857, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99302", "shared_interaction" : "99302", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営浅草線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930207 (99302) 9930208", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930207 (99302) 9930208", "lat" : 35.66226194441651, "e_status_y" : 0, "line_name_h" : "都営浅草線" }, "selected" : false }, { "data" : { "id" : "15553", "source" : "5148", "target" : "5149", "line_name_k" : "トウブトウジョウセン", "is_bullet" : false, "lon" : 139.4596378608162, "company_name_k" : "トウブテツドウ", "zoom" : 10, "SUID" : 15553, "company_type" : 2, "company_name_h" : "東武鉄道株式会社", "interaction" : "21001", "shared_interaction" : "21001", "company_url" : "http://www.tobu.co.jp/", "line_name" : "東武東上線", "selected" : false, "company_name" : "東武鉄道", "company_cd" : 11, "name" : "2100103 (21001) 2100104", "rr_cd" : 21, "company_name_r" : "東武", "e_status_x" : 0, "shared_name" : "2100103 (21001) 2100104", "lat" : 35.921218671003345, "e_status_y" : 0, "line_name_h" : "東武東上線" }, "selected" : false }, { "data" : { "id" : "17854", "source" : "7617", "target" : "7618", "line_name_k" : "トエイアサクサセン", "is_bullet" : false, "lon" : 139.75860382724613, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17854, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99302", "shared_interaction" : "99302", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営浅草線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930204 (99302) 9930205", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930204 (99302) 9930205", "lat" : 35.66226194441651, "e_status_y" : 0, "line_name_h" : "都営浅草線" }, "selected" : false }, { "data" : { "id" : "15551", "source" : "5146", "target" : "5147", "line_name_k" : "トウブトウジョウセン", "is_bullet" : false, "lon" : 139.4596378608162, "company_name_k" : "トウブテツドウ", "zoom" : 10, "SUID" : 15551, "company_type" : 2, "company_name_h" : "東武鉄道株式会社", "interaction" : "21001", "shared_interaction" : "21001", "company_url" : "http://www.tobu.co.jp/", "line_name" : "東武東上線", "selected" : false, "company_name" : "東武鉄道", "company_cd" : 11, "name" : "2100101 (21001) 2100102", "rr_cd" : 21, "company_name_r" : "東武", "e_status_x" : 0, "shared_name" : "2100101 (21001) 2100102", "lat" : 35.921218671003345, "e_status_y" : 0, "line_name_h" : "東武東上線" }, "selected" : false }, { "data" : { "id" : "17855", "source" : "7618", "target" : "7619", "line_name_k" : "トエイアサクサセン", "is_bullet" : false, "lon" : 139.75860382724613, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17855, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99302", "shared_interaction" : "99302", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営浅草線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930205 (99302) 9930206", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930205 (99302) 9930206", "lat" : 35.66226194441651, "e_status_y" : 0, "line_name_h" : "都営浅草線" }, "selected" : false }, { "data" : { "id" : "17861", "source" : "7624", "target" : "7625", "line_name_k" : "トエイアサクサセン", "is_bullet" : false, "lon" : 139.75860382724613, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17861, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99302", "shared_interaction" : "99302", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営浅草線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930211 (99302) 9930212", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930211 (99302) 9930212", "lat" : 35.66226194441651, "e_status_y" : 0, "line_name_h" : "都営浅草線" }, "selected" : false }, { "data" : { "id" : "17860", "source" : "7623", "target" : "7624", "line_name_k" : "トエイアサクサセン", "is_bullet" : false, "lon" : 139.75860382724613, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17860, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99302", "shared_interaction" : "99302", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営浅草線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930210 (99302) 9930211", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930210 (99302) 9930211", "lat" : 35.66226194441651, "e_status_y" : 0, "line_name_h" : "都営浅草線" }, "selected" : false }, { "data" : { "id" : "17859", "source" : "7622", "target" : "7623", "line_name_k" : "トエイアサクサセン", "is_bullet" : false, "lon" : 139.75860382724613, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17859, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99302", "shared_interaction" : "99302", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営浅草線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930209 (99302) 9930210", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930209 (99302) 9930210", "lat" : 35.66226194441651, "e_status_y" : 0, "line_name_h" : "都営浅草線" }, "selected" : false }, { "data" : { "id" : "17858", "source" : "7621", "target" : "7622", "line_name_k" : "トエイアサクサセン", "is_bullet" : false, "lon" : 139.75860382724613, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17858, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99302", "shared_interaction" : "99302", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営浅草線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930208 (99302) 9930209", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930208 (99302) 9930209", "lat" : 35.66226194441651, "e_status_y" : 0, "line_name_h" : "都営浅草線" }, "selected" : false }, { "data" : { "id" : "17865", "source" : "7628", "target" : "7629", "line_name_k" : "トエイアサクサセン", "is_bullet" : false, "lon" : 139.75860382724613, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17865, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99302", "shared_interaction" : "99302", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営浅草線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930215 (99302) 9930216", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930215 (99302) 9930216", "lat" : 35.66226194441651, "e_status_y" : 0, "line_name_h" : "都営浅草線" }, "selected" : false }, { "data" : { "id" : "17864", "source" : "7627", "target" : "7628", "line_name_k" : "トエイアサクサセン", "is_bullet" : false, "lon" : 139.75860382724613, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17864, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99302", "shared_interaction" : "99302", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営浅草線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930214 (99302) 9930215", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930214 (99302) 9930215", "lat" : 35.66226194441651, "e_status_y" : 0, "line_name_h" : "都営浅草線" }, "selected" : false }, { "data" : { "id" : "17863", "source" : "7626", "target" : "7627", "line_name_k" : "トエイアサクサセン", "is_bullet" : false, "lon" : 139.75860382724613, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17863, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99302", "shared_interaction" : "99302", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営浅草線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930213 (99302) 9930214", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930213 (99302) 9930214", "lat" : 35.66226194441651, "e_status_y" : 0, "line_name_h" : "都営浅草線" }, "selected" : false }, { "data" : { "id" : "17862", "source" : "7625", "target" : "7626", "line_name_k" : "トエイアサクサセン", "is_bullet" : false, "lon" : 139.75860382724613, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17862, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99302", "shared_interaction" : "99302", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営浅草線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930212 (99302) 9930213", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930212 (99302) 9930213", "lat" : 35.66226194441651, "e_status_y" : 0, "line_name_h" : "都営浅草線" }, "selected" : false }, { "data" : { "id" : "17869", "source" : "7632", "target" : "7633", "line_name_k" : "トエイアサクサセン", "is_bullet" : false, "lon" : 139.75860382724613, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17869, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99302", "shared_interaction" : "99302", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営浅草線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930219 (99302) 9930220", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930219 (99302) 9930220", "lat" : 35.66226194441651, "e_status_y" : 0, "line_name_h" : "都営浅草線" }, "selected" : false }, { "data" : { "id" : "17868", "source" : "7631", "target" : "7632", "line_name_k" : "トエイアサクサセン", "is_bullet" : false, "lon" : 139.75860382724613, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17868, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99302", "shared_interaction" : "99302", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営浅草線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930218 (99302) 9930219", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930218 (99302) 9930219", "lat" : 35.66226194441651, "e_status_y" : 0, "line_name_h" : "都営浅草線" }, "selected" : false }, { "data" : { "id" : "17867", "source" : "7630", "target" : "7631", "line_name_k" : "トエイアサクサセン", "is_bullet" : false, "lon" : 139.75860382724613, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17867, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99302", "shared_interaction" : "99302", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営浅草線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930217 (99302) 9930218", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930217 (99302) 9930218", "lat" : 35.66226194441651, "e_status_y" : 0, "line_name_h" : "都営浅草線" }, "selected" : false }, { "data" : { "id" : "17866", "source" : "7629", "target" : "7630", "line_name_k" : "トエイアサクサセン", "is_bullet" : false, "lon" : 139.75860382724613, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17866, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99302", "shared_interaction" : "99302", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営浅草線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930216 (99302) 9930217", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930216 (99302) 9930217", "lat" : 35.66226194441651, "e_status_y" : 0, "line_name_h" : "都営浅草線" }, "selected" : false }, { "data" : { "id" : "17872", "source" : "7636", "target" : "7637", "line_name_k" : "トエイミタセン", "is_bullet" : false, "lon" : 139.7032176242069, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17872, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99303", "shared_interaction" : "99303", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営三田線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930303 (99303) 9930304", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930303 (99303) 9930304", "lat" : 35.71883584494032, "e_status_y" : 0, "line_name_h" : "都営三田線" }, "selected" : false }, { "data" : { "id" : "17871", "source" : "7635", "target" : "7636", "line_name_k" : "トエイミタセン", "is_bullet" : false, "lon" : 139.7032176242069, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17871, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99303", "shared_interaction" : "99303", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営三田線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930302 (99303) 9930303", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930302 (99303) 9930303", "lat" : 35.71883584494032, "e_status_y" : 0, "line_name_h" : "都営三田線" }, "selected" : false }, { "data" : { "id" : "17870", "source" : "7634", "target" : "7635", "line_name_k" : "トエイミタセン", "is_bullet" : false, "lon" : 139.7032176242069, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17870, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99303", "shared_interaction" : "99303", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営三田線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930301 (99303) 9930302", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930301 (99303) 9930302", "lat" : 35.71883584494032, "e_status_y" : 0, "line_name_h" : "都営三田線" }, "selected" : false }, { "data" : { "id" : "13749", "source" : "3270", "target" : "3271", "line_name_k" : "ナリタエクスプレス", "is_bullet" : false, "lon" : 139.7571982434863, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 9, "SUID" : 13749, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11328", "shared_interaction" : "11328", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR成田エクスプレス", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132815 (11328) 1132816", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132815 (11328) 1132816", "lat" : 35.69212091775545, "e_status_y" : 0, "line_name_h" : "JR成田エクスプレス" }, "selected" : false }, { "data" : { "id" : "13750", "source" : "3271", "target" : "3272", "line_name_k" : "ナリタエクスプレス", "is_bullet" : false, "lon" : 139.7571982434863, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 9, "SUID" : 13750, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11328", "shared_interaction" : "11328", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR成田エクスプレス", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132816 (11328) 1132817", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132816 (11328) 1132817", "lat" : 35.69212091775545, "e_status_y" : 0, "line_name_h" : "JR成田エクスプレス" }, "selected" : false }, { "data" : { "id" : "13751", "source" : "3272", "target" : "3273", "line_name_k" : "ナリタエクスプレス", "is_bullet" : false, "lon" : 139.7571982434863, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 9, "SUID" : 13751, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11328", "shared_interaction" : "11328", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR成田エクスプレス", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132817 (11328) 1132818", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132817 (11328) 1132818", "lat" : 35.69212091775545, "e_status_y" : 0, "line_name_h" : "JR成田エクスプレス" }, "selected" : false }, { "data" : { "id" : "17813", "source" : "7576", "target" : "7577", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17813, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930101 (99301) 9930129", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930101 (99301) 9930129", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "17814", "source" : "7576", "target" : "7578", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17814, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930101 (99301) 9930102", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930101 (99301) 9930102", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "15588", "source" : "5184", "target" : "5185", "line_name_k" : "トウブイセサキセン", "is_bullet" : false, "lon" : 139.49934131661746, "company_name_k" : "トウブテツドウ", "zoom" : 10, "SUID" : 15588, "company_type" : 2, "company_name_h" : "東武鉄道株式会社", "interaction" : "21002", "shared_interaction" : "21002", "company_url" : "http://www.tobu.co.jp/", "line_name" : "東武伊勢崎線", "selected" : false, "company_name" : "東武鉄道", "company_cd" : 11, "name" : "2100201 (21002) 2100202", "rr_cd" : 21, "company_name_r" : "東武", "e_status_x" : 0, "shared_name" : "2100201 (21002) 2100202", "lat" : 36.05676642458757, "e_status_y" : 0, "line_name_h" : "東武伊勢崎線" }, "selected" : false }, { "data" : { "id" : "13752", "source" : "3273", "target" : "3274", "line_name_k" : "ナリタエクスプレス", "is_bullet" : false, "lon" : 139.7571982434863, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 9, "SUID" : 13752, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11328", "shared_interaction" : "11328", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR成田エクスプレス", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132818 (11328) 1132819", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132818 (11328) 1132819", "lat" : 35.69212091775545, "e_status_y" : 0, "line_name_h" : "JR成田エクスプレス" }, "selected" : false }, { "data" : { "id" : "17815", "source" : "7577", "target" : "7605", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17815, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930129 (99301) 9930130", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930129 (99301) 9930130", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "15589", "source" : "5185", "target" : "5186", "line_name_k" : "トウブイセサキセン", "is_bullet" : false, "lon" : 139.49934131661746, "company_name_k" : "トウブテツドウ", "zoom" : 10, "SUID" : 15589, "company_type" : 2, "company_name_h" : "東武鉄道株式会社", "interaction" : "21002", "shared_interaction" : "21002", "company_url" : "http://www.tobu.co.jp/", "line_name" : "東武伊勢崎線", "selected" : false, "company_name" : "東武鉄道", "company_cd" : 11, "name" : "2100202 (21002) 2100203", "rr_cd" : 21, "company_name_r" : "東武", "e_status_x" : 0, "shared_name" : "2100202 (21002) 2100203", "lat" : 36.05676642458757, "e_status_y" : 0, "line_name_h" : "東武伊勢崎線" }, "selected" : false }, { "data" : { "id" : "13753", "source" : "3274", "target" : "3275", "line_name_k" : "ナリタエクスプレス", "is_bullet" : false, "lon" : 139.7571982434863, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 9, "SUID" : 13753, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11328", "shared_interaction" : "11328", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR成田エクスプレス", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132819 (11328) 1132820", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132819 (11328) 1132820", "lat" : 35.69212091775545, "e_status_y" : 0, "line_name_h" : "JR成田エクスプレス" }, "selected" : false }, { "data" : { "id" : "17816", "source" : "7578", "target" : "7579", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17816, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930102 (99301) 9930103", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930102 (99301) 9930103", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "15590", "source" : "5186", "target" : "5187", "line_name_k" : "トウブイセサキセン", "is_bullet" : false, "lon" : 139.49934131661746, "company_name_k" : "トウブテツドウ", "zoom" : 10, "SUID" : 15590, "company_type" : 2, "company_name_h" : "東武鉄道株式会社", "interaction" : "21002", "shared_interaction" : "21002", "company_url" : "http://www.tobu.co.jp/", "line_name" : "東武伊勢崎線", "selected" : false, "company_name" : "東武鉄道", "company_cd" : 11, "name" : "2100203 (21002) 2100204", "rr_cd" : 21, "company_name_r" : "東武", "e_status_x" : 0, "shared_name" : "2100203 (21002) 2100204", "lat" : 36.05676642458757, "e_status_y" : 0, "line_name_h" : "東武伊勢崎線" }, "selected" : false }, { "data" : { "id" : "13754", "source" : "3275", "target" : "3261", "line_name_k" : "ナリタエクスプレス", "is_bullet" : false, "lon" : 139.7571982434863, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 9, "SUID" : 13754, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11328", "shared_interaction" : "11328", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR成田エクスプレス", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132820 (11328) 1132806", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132820 (11328) 1132806", "lat" : 35.69212091775545, "e_status_y" : 0, "line_name_h" : "JR成田エクスプレス" }, "selected" : false }, { "data" : { "id" : "17817", "source" : "7579", "target" : "7580", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17817, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930103 (99301) 9930104", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930103 (99301) 9930104", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "15591", "source" : "5187", "target" : "5188", "line_name_k" : "トウブイセサキセン", "is_bullet" : false, "lon" : 139.49934131661746, "company_name_k" : "トウブテツドウ", "zoom" : 10, "SUID" : 15591, "company_type" : 2, "company_name_h" : "東武鉄道株式会社", "interaction" : "21002", "shared_interaction" : "21002", "company_url" : "http://www.tobu.co.jp/", "line_name" : "東武伊勢崎線", "selected" : false, "company_name" : "東武鉄道", "company_cd" : 11, "name" : "2100204 (21002) 2100205", "rr_cd" : 21, "company_name_r" : "東武", "e_status_x" : 0, "shared_name" : "2100204 (21002) 2100205", "lat" : 36.05676642458757, "e_status_y" : 0, "line_name_h" : "東武伊勢崎線" }, "selected" : false }, { "data" : { "id" : "15592", "source" : "5188", "target" : "5189", "line_name_k" : "トウブイセサキセン", "is_bullet" : false, "lon" : 139.49934131661746, "company_name_k" : "トウブテツドウ", "zoom" : 10, "SUID" : 15592, "company_type" : 2, "company_name_h" : "東武鉄道株式会社", "interaction" : "21002", "shared_interaction" : "21002", "company_url" : "http://www.tobu.co.jp/", "line_name" : "東武伊勢崎線", "selected" : false, "company_name" : "東武鉄道", "company_cd" : 11, "name" : "2100205 (21002) 2100206", "rr_cd" : 21, "company_name_r" : "東武", "e_status_x" : 0, "shared_name" : "2100205 (21002) 2100206", "lat" : 36.05676642458757, "e_status_y" : 0, "line_name_h" : "東武伊勢崎線" }, "selected" : false }, { "data" : { "id" : "17818", "source" : "7580", "target" : "7581", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17818, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930104 (99301) 9930105", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930104 (99301) 9930105", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "17819", "source" : "7581", "target" : "7582", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17819, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930105 (99301) 9930106", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930105 (99301) 9930106", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "17820", "source" : "7582", "target" : "7583", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17820, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930106 (99301) 9930107", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930106 (99301) 9930107", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "17821", "source" : "7583", "target" : "7584", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17821, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930107 (99301) 9930108", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930107 (99301) 9930108", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "17822", "source" : "7584", "target" : "7585", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17822, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930108 (99301) 9930109", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930108 (99301) 9930109", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "17823", "source" : "7585", "target" : "7586", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17823, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930109 (99301) 9930110", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930109 (99301) 9930110", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "17824", "source" : "7586", "target" : "7587", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17824, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930110 (99301) 9930111", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930110 (99301) 9930111", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "17825", "source" : "7587", "target" : "7588", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17825, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930111 (99301) 9930112", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930111 (99301) 9930112", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "17826", "source" : "7588", "target" : "7589", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17826, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930112 (99301) 9930113", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930112 (99301) 9930113", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "17828", "source" : "7590", "target" : "7591", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17828, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930114 (99301) 9930115", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930114 (99301) 9930115", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "17827", "source" : "7589", "target" : "7590", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17827, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930113 (99301) 9930114", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930113 (99301) 9930114", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "17830", "source" : "7592", "target" : "7593", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17830, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930116 (99301) 9930117", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930116 (99301) 9930117", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "17829", "source" : "7591", "target" : "7592", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17829, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930115 (99301) 9930116", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930115 (99301) 9930116", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "17832", "source" : "7594", "target" : "7595", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17832, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930118 (99301) 9930119", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930118 (99301) 9930119", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "17831", "source" : "7593", "target" : "7594", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17831, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930117 (99301) 9930118", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930117 (99301) 9930118", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "13740", "source" : "3260", "target" : "3261", "line_name_k" : "ナリタエクスプレス", "is_bullet" : false, "lon" : 139.7571982434863, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 9, "SUID" : 13740, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11328", "shared_interaction" : "11328", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR成田エクスプレス", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132805 (11328) 1132806", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132805 (11328) 1132806", "lat" : 35.69212091775545, "e_status_y" : 0, "line_name_h" : "JR成田エクスプレス" }, "selected" : false }, { "data" : { "id" : "17834", "source" : "7596", "target" : "7597", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17834, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930120 (99301) 9930121", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930120 (99301) 9930121", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "17833", "source" : "7595", "target" : "7596", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17833, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930119 (99301) 9930120", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930119 (99301) 9930120", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "15594", "source" : "5190", "target" : "5191", "line_name_k" : "トウブイセサキセン", "is_bullet" : false, "lon" : 139.49934131661746, "company_name_k" : "トウブテツドウ", "zoom" : 10, "SUID" : 15594, "company_type" : 2, "company_name_h" : "東武鉄道株式会社", "interaction" : "21002", "shared_interaction" : "21002", "company_url" : "http://www.tobu.co.jp/", "line_name" : "東武伊勢崎線", "selected" : false, "company_name" : "東武鉄道", "company_cd" : 11, "name" : "2100207 (21002) 2100208", "rr_cd" : 21, "company_name_r" : "東武", "e_status_x" : 0, "shared_name" : "2100207 (21002) 2100208", "lat" : 36.05676642458757, "e_status_y" : 0, "line_name_h" : "東武伊勢崎線" }, "selected" : false }, { "data" : { "id" : "13742", "source" : "3262", "target" : "3263", "line_name_k" : "ナリタエクスプレス", "is_bullet" : false, "lon" : 139.7571982434863, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 9, "SUID" : 13742, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11328", "shared_interaction" : "11328", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR成田エクスプレス", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132807 (11328) 1132808", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132807 (11328) 1132808", "lat" : 35.69212091775545, "e_status_y" : 0, "line_name_h" : "JR成田エクスプレス" }, "selected" : false }, { "data" : { "id" : "17836", "source" : "7598", "target" : "7599", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17836, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930122 (99301) 9930123", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930122 (99301) 9930123", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "15593", "source" : "5189", "target" : "5190", "line_name_k" : "トウブイセサキセン", "is_bullet" : false, "lon" : 139.49934131661746, "company_name_k" : "トウブテツドウ", "zoom" : 10, "SUID" : 15593, "company_type" : 2, "company_name_h" : "東武鉄道株式会社", "interaction" : "21002", "shared_interaction" : "21002", "company_url" : "http://www.tobu.co.jp/", "line_name" : "東武伊勢崎線", "selected" : false, "company_name" : "東武鉄道", "company_cd" : 11, "name" : "2100206 (21002) 2100207", "rr_cd" : 21, "company_name_r" : "東武", "e_status_x" : 0, "shared_name" : "2100206 (21002) 2100207", "lat" : 36.05676642458757, "e_status_y" : 0, "line_name_h" : "東武伊勢崎線" }, "selected" : false }, { "data" : { "id" : "13741", "source" : "3261", "target" : "3262", "line_name_k" : "ナリタエクスプレス", "is_bullet" : false, "lon" : 139.7571982434863, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 9, "SUID" : 13741, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11328", "shared_interaction" : "11328", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR成田エクスプレス", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132806 (11328) 1132807", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132806 (11328) 1132807", "lat" : 35.69212091775545, "e_status_y" : 0, "line_name_h" : "JR成田エクスプレス" }, "selected" : false }, { "data" : { "id" : "17835", "source" : "7597", "target" : "7598", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17835, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930121 (99301) 9930122", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930121 (99301) 9930122", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "15596", "source" : "5192", "target" : "5193", "line_name_k" : "トウブイセサキセン", "is_bullet" : false, "lon" : 139.49934131661746, "company_name_k" : "トウブテツドウ", "zoom" : 10, "SUID" : 15596, "company_type" : 2, "company_name_h" : "東武鉄道株式会社", "interaction" : "21002", "shared_interaction" : "21002", "company_url" : "http://www.tobu.co.jp/", "line_name" : "東武伊勢崎線", "selected" : false, "company_name" : "東武鉄道", "company_cd" : 11, "name" : "2100209 (21002) 2100210", "rr_cd" : 21, "company_name_r" : "東武", "e_status_x" : 0, "shared_name" : "2100209 (21002) 2100210", "lat" : 36.05676642458757, "e_status_y" : 0, "line_name_h" : "東武伊勢崎線" }, "selected" : false }, { "data" : { "id" : "17838", "source" : "7600", "target" : "7601", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17838, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930124 (99301) 9930125", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930124 (99301) 9930125", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "15595", "source" : "5191", "target" : "5192", "line_name_k" : "トウブイセサキセン", "is_bullet" : false, "lon" : 139.49934131661746, "company_name_k" : "トウブテツドウ", "zoom" : 10, "SUID" : 15595, "company_type" : 2, "company_name_h" : "東武鉄道株式会社", "interaction" : "21002", "shared_interaction" : "21002", "company_url" : "http://www.tobu.co.jp/", "line_name" : "東武伊勢崎線", "selected" : false, "company_name" : "東武鉄道", "company_cd" : 11, "name" : "2100208 (21002) 2100209", "rr_cd" : 21, "company_name_r" : "東武", "e_status_x" : 0, "shared_name" : "2100208 (21002) 2100209", "lat" : 36.05676642458757, "e_status_y" : 0, "line_name_h" : "東武伊勢崎線" }, "selected" : false }, { "data" : { "id" : "13743", "source" : "3263", "target" : "3264", "line_name_k" : "ナリタエクスプレス", "is_bullet" : false, "lon" : 139.7571982434863, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 9, "SUID" : 13743, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11328", "shared_interaction" : "11328", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR成田エクスプレス", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132808 (11328) 1132809", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132808 (11328) 1132809", "lat" : 35.69212091775545, "e_status_y" : 0, "line_name_h" : "JR成田エクスプレス" }, "selected" : false }, { "data" : { "id" : "17837", "source" : "7599", "target" : "7600", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17837, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930123 (99301) 9930124", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930123 (99301) 9930124", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "15598", "source" : "5194", "target" : "5195", "line_name_k" : "トウブイセサキセン", "is_bullet" : false, "lon" : 139.49934131661746, "company_name_k" : "トウブテツドウ", "zoom" : 10, "SUID" : 15598, "company_type" : 2, "company_name_h" : "東武鉄道株式会社", "interaction" : "21002", "shared_interaction" : "21002", "company_url" : "http://www.tobu.co.jp/", "line_name" : "東武伊勢崎線", "selected" : false, "company_name" : "東武鉄道", "company_cd" : 11, "name" : "2100211 (21002) 2100212", "rr_cd" : 21, "company_name_r" : "東武", "e_status_x" : 0, "shared_name" : "2100211 (21002) 2100212", "lat" : 36.05676642458757, "e_status_y" : 0, "line_name_h" : "東武伊勢崎線" }, "selected" : false }, { "data" : { "id" : "17840", "source" : "7602", "target" : "7603", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17840, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930126 (99301) 9930127", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930126 (99301) 9930127", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "15597", "source" : "5193", "target" : "5194", "line_name_k" : "トウブイセサキセン", "is_bullet" : false, "lon" : 139.49934131661746, "company_name_k" : "トウブテツドウ", "zoom" : 10, "SUID" : 15597, "company_type" : 2, "company_name_h" : "東武鉄道株式会社", "interaction" : "21002", "shared_interaction" : "21002", "company_url" : "http://www.tobu.co.jp/", "line_name" : "東武伊勢崎線", "selected" : false, "company_name" : "東武鉄道", "company_cd" : 11, "name" : "2100210 (21002) 2100211", "rr_cd" : 21, "company_name_r" : "東武", "e_status_x" : 0, "shared_name" : "2100210 (21002) 2100211", "lat" : 36.05676642458757, "e_status_y" : 0, "line_name_h" : "東武伊勢崎線" }, "selected" : false }, { "data" : { "id" : "17839", "source" : "7601", "target" : "7602", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17839, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930125 (99301) 9930126", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930125 (99301) 9930126", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "15600", "source" : "5196", "target" : "5197", "line_name_k" : "トウブイセサキセン", "is_bullet" : false, "lon" : 139.49934131661746, "company_name_k" : "トウブテツドウ", "zoom" : 10, "SUID" : 15600, "company_type" : 2, "company_name_h" : "東武鉄道株式会社", "interaction" : "21002", "shared_interaction" : "21002", "company_url" : "http://www.tobu.co.jp/", "line_name" : "東武伊勢崎線", "selected" : false, "company_name" : "東武鉄道", "company_cd" : 11, "name" : "2100213 (21002) 2100214", "rr_cd" : 21, "company_name_r" : "東武", "e_status_x" : 0, "shared_name" : "2100213 (21002) 2100214", "lat" : 36.05676642458757, "e_status_y" : 0, "line_name_h" : "東武伊勢崎線" }, "selected" : false }, { "data" : { "id" : "17842", "source" : "7604", "target" : "7576", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17842, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930128 (99301) 9930101", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930128 (99301) 9930101", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "15599", "source" : "5195", "target" : "5196", "line_name_k" : "トウブイセサキセン", "is_bullet" : false, "lon" : 139.49934131661746, "company_name_k" : "トウブテツドウ", "zoom" : 10, "SUID" : 15599, "company_type" : 2, "company_name_h" : "東武鉄道株式会社", "interaction" : "21002", "shared_interaction" : "21002", "company_url" : "http://www.tobu.co.jp/", "line_name" : "東武伊勢崎線", "selected" : false, "company_name" : "東武鉄道", "company_cd" : 11, "name" : "2100212 (21002) 2100213", "rr_cd" : 21, "company_name_r" : "東武", "e_status_x" : 0, "shared_name" : "2100212 (21002) 2100213", "lat" : 36.05676642458757, "e_status_y" : 0, "line_name_h" : "東武伊勢崎線" }, "selected" : false }, { "data" : { "id" : "17841", "source" : "7603", "target" : "7604", "line_name_k" : "トエイオオエドセン", "is_bullet" : false, "lon" : 139.7137041757577, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17841, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99301", "shared_interaction" : "99301", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営大江戸線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930127 (99301) 9930128", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930127 (99301) 9930128", "lat" : 35.70754622711237, "e_status_y" : 0, "line_name_h" : "都営大江戸線" }, "selected" : false }, { "data" : { "id" : "17910", "source" : "7675", "target" : "7676", "line_name_k" : "トエイシンジュクセン", "is_bullet" : false, "lon" : 139.80940398416865, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 11, "SUID" : 17910, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99304", "shared_interaction" : "99304", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営新宿線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930415 (99304) 9930416", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930415 (99304) 9930416", "lat" : 35.68917479494153, "e_status_y" : 0, "line_name_h" : "都営新宿線" }, "selected" : false }, { "data" : { "id" : "17911", "source" : "7676", "target" : "7677", "line_name_k" : "トエイシンジュクセン", "is_bullet" : false, "lon" : 139.80940398416865, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 11, "SUID" : 17911, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99304", "shared_interaction" : "99304", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営新宿線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930416 (99304) 9930417", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930416 (99304) 9930417", "lat" : 35.68917479494153, "e_status_y" : 0, "line_name_h" : "都営新宿線" }, "selected" : false }, { "data" : { "id" : "17908", "source" : "7673", "target" : "7674", "line_name_k" : "トエイシンジュクセン", "is_bullet" : false, "lon" : 139.80940398416865, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 11, "SUID" : 17908, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99304", "shared_interaction" : "99304", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営新宿線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930413 (99304) 9930414", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930413 (99304) 9930414", "lat" : 35.68917479494153, "e_status_y" : 0, "line_name_h" : "都営新宿線" }, "selected" : false }, { "data" : { "id" : "17909", "source" : "7674", "target" : "7675", "line_name_k" : "トエイシンジュクセン", "is_bullet" : false, "lon" : 139.80940398416865, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 11, "SUID" : 17909, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99304", "shared_interaction" : "99304", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営新宿線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930414 (99304) 9930415", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930414 (99304) 9930415", "lat" : 35.68917479494153, "e_status_y" : 0, "line_name_h" : "都営新宿線" }, "selected" : false }, { "data" : { "id" : "17906", "source" : "7671", "target" : "7672", "line_name_k" : "トエイシンジュクセン", "is_bullet" : false, "lon" : 139.80940398416865, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 11, "SUID" : 17906, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99304", "shared_interaction" : "99304", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営新宿線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930411 (99304) 9930412", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930411 (99304) 9930412", "lat" : 35.68917479494153, "e_status_y" : 0, "line_name_h" : "都営新宿線" }, "selected" : false }, { "data" : { "id" : "17907", "source" : "7672", "target" : "7673", "line_name_k" : "トエイシンジュクセン", "is_bullet" : false, "lon" : 139.80940398416865, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 11, "SUID" : 17907, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99304", "shared_interaction" : "99304", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営新宿線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930412 (99304) 9930413", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930412 (99304) 9930413", "lat" : 35.68917479494153, "e_status_y" : 0, "line_name_h" : "都営新宿線" }, "selected" : false }, { "data" : { "id" : "17904", "source" : "7669", "target" : "7670", "line_name_k" : "トエイシンジュクセン", "is_bullet" : false, "lon" : 139.80940398416865, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 11, "SUID" : 17904, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99304", "shared_interaction" : "99304", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営新宿線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930409 (99304) 9930410", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930409 (99304) 9930410", "lat" : 35.68917479494153, "e_status_y" : 0, "line_name_h" : "都営新宿線" }, "selected" : false }, { "data" : { "id" : "17905", "source" : "7670", "target" : "7671", "line_name_k" : "トエイシンジュクセン", "is_bullet" : false, "lon" : 139.80940398416865, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 11, "SUID" : 17905, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99304", "shared_interaction" : "99304", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営新宿線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930410 (99304) 9930411", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930410 (99304) 9930411", "lat" : 35.68917479494153, "e_status_y" : 0, "line_name_h" : "都営新宿線" }, "selected" : false }, { "data" : { "id" : "13791", "source" : "3315", "target" : "3316", "line_name_k" : "ケイヒントウホクセン", "is_bullet" : false, "lon" : 139.6425120970631, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13791, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11332", "shared_interaction" : "11332", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR京浜東北線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1133214 (11332) 1133215", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1133214 (11332) 1133215", "lat" : 35.63929555924292, "e_status_y" : 0, "line_name_h" : "JR京浜東北線" }, "selected" : false }, { "data" : { "id" : "17917", "source" : "7683", "target" : "7684", "line_name_k" : "トデンアラカワセン", "is_bullet" : false, "lon" : 139.74861502275394, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 13, "SUID" : 17917, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99305", "shared_interaction" : "99305", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都電荒川線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930502 (99305) 9930503", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930502 (99305) 9930503", "lat" : 35.735016925780094, "e_status_y" : 0, "line_name_h" : "都営都電荒川線" }, "selected" : false }, { "data" : { "id" : "13792", "source" : "3316", "target" : "3317", "line_name_k" : "ケイヒントウホクセン", "is_bullet" : false, "lon" : 139.6425120970631, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13792, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11332", "shared_interaction" : "11332", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR京浜東北線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1133215 (11332) 1133216", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1133215 (11332) 1133216", "lat" : 35.63929555924292, "e_status_y" : 0, "line_name_h" : "JR京浜東北線" }, "selected" : false }, { "data" : { "id" : "17918", "source" : "7684", "target" : "7685", "line_name_k" : "トデンアラカワセン", "is_bullet" : false, "lon" : 139.74861502275394, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 13, "SUID" : 17918, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99305", "shared_interaction" : "99305", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都電荒川線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930503 (99305) 9930504", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930503 (99305) 9930504", "lat" : 35.735016925780094, "e_status_y" : 0, "line_name_h" : "都営都電荒川線" }, "selected" : false }, { "data" : { "id" : "13789", "source" : "3313", "target" : "3314", "line_name_k" : "ケイヒントウホクセン", "is_bullet" : false, "lon" : 139.6425120970631, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13789, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11332", "shared_interaction" : "11332", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR京浜東北線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1133212 (11332) 1133213", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1133212 (11332) 1133213", "lat" : 35.63929555924292, "e_status_y" : 0, "line_name_h" : "JR京浜東北線" }, "selected" : false }, { "data" : { "id" : "13790", "source" : "3314", "target" : "3315", "line_name_k" : "ケイヒントウホクセン", "is_bullet" : false, "lon" : 139.6425120970631, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13790, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11332", "shared_interaction" : "11332", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR京浜東北線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1133213 (11332) 1133214", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1133213 (11332) 1133214", "lat" : 35.63929555924292, "e_status_y" : 0, "line_name_h" : "JR京浜東北線" }, "selected" : false }, { "data" : { "id" : "17916", "source" : "7682", "target" : "7683", "line_name_k" : "トデンアラカワセン", "is_bullet" : false, "lon" : 139.74861502275394, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 13, "SUID" : 17916, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99305", "shared_interaction" : "99305", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都電荒川線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930501 (99305) 9930502", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930501 (99305) 9930502", "lat" : 35.735016925780094, "e_status_y" : 0, "line_name_h" : "都営都電荒川線" }, "selected" : false }, { "data" : { "id" : "13787", "source" : "3311", "target" : "3312", "line_name_k" : "ケイヒントウホクセン", "is_bullet" : false, "lon" : 139.6425120970631, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13787, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11332", "shared_interaction" : "11332", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR京浜東北線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1133210 (11332) 1133211", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1133210 (11332) 1133211", "lat" : 35.63929555924292, "e_status_y" : 0, "line_name_h" : "JR京浜東北線" }, "selected" : false }, { "data" : { "id" : "17914", "source" : "7679", "target" : "7680", "line_name_k" : "トエイシンジュクセン", "is_bullet" : false, "lon" : 139.80940398416865, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 11, "SUID" : 17914, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99304", "shared_interaction" : "99304", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営新宿線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930419 (99304) 9930420", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930419 (99304) 9930420", "lat" : 35.68917479494153, "e_status_y" : 0, "line_name_h" : "都営新宿線" }, "selected" : false }, { "data" : { "id" : "13788", "source" : "3312", "target" : "3313", "line_name_k" : "ケイヒントウホクセン", "is_bullet" : false, "lon" : 139.6425120970631, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13788, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11332", "shared_interaction" : "11332", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR京浜東北線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1133211 (11332) 1133212", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1133211 (11332) 1133212", "lat" : 35.63929555924292, "e_status_y" : 0, "line_name_h" : "JR京浜東北線" }, "selected" : false }, { "data" : { "id" : "17912", "source" : "7677", "target" : "7678", "line_name_k" : "トエイシンジュクセン", "is_bullet" : false, "lon" : 139.80940398416865, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 11, "SUID" : 17912, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99304", "shared_interaction" : "99304", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営新宿線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930417 (99304) 9930418", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930417 (99304) 9930418", "lat" : 35.68917479494153, "e_status_y" : 0, "line_name_h" : "都営新宿線" }, "selected" : false }, { "data" : { "id" : "17913", "source" : "7678", "target" : "7679", "line_name_k" : "トエイシンジュクセン", "is_bullet" : false, "lon" : 139.80940398416865, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 11, "SUID" : 17913, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99304", "shared_interaction" : "99304", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営新宿線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930418 (99304) 9930419", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930418 (99304) 9930419", "lat" : 35.68917479494153, "e_status_y" : 0, "line_name_h" : "都営新宿線" }, "selected" : false }, { "data" : { "id" : "17926", "source" : "7692", "target" : "7693", "line_name_k" : "トデンアラカワセン", "is_bullet" : false, "lon" : 139.74861502275394, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 13, "SUID" : 17926, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99305", "shared_interaction" : "99305", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都電荒川線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930511 (99305) 9930512", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930511 (99305) 9930512", "lat" : 35.735016925780094, "e_status_y" : 0, "line_name_h" : "都営都電荒川線" }, "selected" : false }, { "data" : { "id" : "17925", "source" : "7691", "target" : "7692", "line_name_k" : "トデンアラカワセン", "is_bullet" : false, "lon" : 139.74861502275394, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 13, "SUID" : 17925, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99305", "shared_interaction" : "99305", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都電荒川線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930510 (99305) 9930511", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930510 (99305) 9930511", "lat" : 35.735016925780094, "e_status_y" : 0, "line_name_h" : "都営都電荒川線" }, "selected" : false }, { "data" : { "id" : "17924", "source" : "7690", "target" : "7691", "line_name_k" : "トデンアラカワセン", "is_bullet" : false, "lon" : 139.74861502275394, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 13, "SUID" : 17924, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99305", "shared_interaction" : "99305", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都電荒川線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930509 (99305) 9930510", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930509 (99305) 9930510", "lat" : 35.735016925780094, "e_status_y" : 0, "line_name_h" : "都営都電荒川線" }, "selected" : false }, { "data" : { "id" : "17923", "source" : "7689", "target" : "7690", "line_name_k" : "トデンアラカワセン", "is_bullet" : false, "lon" : 139.74861502275394, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 13, "SUID" : 17923, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99305", "shared_interaction" : "99305", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都電荒川線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930508 (99305) 9930509", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930508 (99305) 9930509", "lat" : 35.735016925780094, "e_status_y" : 0, "line_name_h" : "都営都電荒川線" }, "selected" : false }, { "data" : { "id" : "17922", "source" : "7688", "target" : "7689", "line_name_k" : "トデンアラカワセン", "is_bullet" : false, "lon" : 139.74861502275394, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 13, "SUID" : 17922, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99305", "shared_interaction" : "99305", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都電荒川線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930507 (99305) 9930508", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930507 (99305) 9930508", "lat" : 35.735016925780094, "e_status_y" : 0, "line_name_h" : "都営都電荒川線" }, "selected" : false }, { "data" : { "id" : "17921", "source" : "7687", "target" : "7688", "line_name_k" : "トデンアラカワセン", "is_bullet" : false, "lon" : 139.74861502275394, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 13, "SUID" : 17921, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99305", "shared_interaction" : "99305", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都電荒川線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930506 (99305) 9930507", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930506 (99305) 9930507", "lat" : 35.735016925780094, "e_status_y" : 0, "line_name_h" : "都営都電荒川線" }, "selected" : false }, { "data" : { "id" : "17920", "source" : "7686", "target" : "7687", "line_name_k" : "トデンアラカワセン", "is_bullet" : false, "lon" : 139.74861502275394, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 13, "SUID" : 17920, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99305", "shared_interaction" : "99305", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都電荒川線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930505 (99305) 9930506", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930505 (99305) 9930506", "lat" : 35.735016925780094, "e_status_y" : 0, "line_name_h" : "都営都電荒川線" }, "selected" : false }, { "data" : { "id" : "17919", "source" : "7685", "target" : "7686", "line_name_k" : "トデンアラカワセン", "is_bullet" : false, "lon" : 139.74861502275394, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 13, "SUID" : 17919, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99305", "shared_interaction" : "99305", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都電荒川線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930504 (99305) 9930505", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930504 (99305) 9930505", "lat" : 35.735016925780094, "e_status_y" : 0, "line_name_h" : "都営都電荒川線" }, "selected" : false }, { "data" : { "id" : "17934", "source" : "7700", "target" : "7701", "line_name_k" : "トデンアラカワセン", "is_bullet" : false, "lon" : 139.74861502275394, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 13, "SUID" : 17934, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99305", "shared_interaction" : "99305", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都電荒川線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930519 (99305) 9930520", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930519 (99305) 9930520", "lat" : 35.735016925780094, "e_status_y" : 0, "line_name_h" : "都営都電荒川線" }, "selected" : false }, { "data" : { "id" : "17933", "source" : "7699", "target" : "7700", "line_name_k" : "トデンアラカワセン", "is_bullet" : false, "lon" : 139.74861502275394, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 13, "SUID" : 17933, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99305", "shared_interaction" : "99305", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都電荒川線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930518 (99305) 9930519", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930518 (99305) 9930519", "lat" : 35.735016925780094, "e_status_y" : 0, "line_name_h" : "都営都電荒川線" }, "selected" : false }, { "data" : { "id" : "17932", "source" : "7698", "target" : "7699", "line_name_k" : "トデンアラカワセン", "is_bullet" : false, "lon" : 139.74861502275394, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 13, "SUID" : 17932, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99305", "shared_interaction" : "99305", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都電荒川線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930517 (99305) 9930518", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930517 (99305) 9930518", "lat" : 35.735016925780094, "e_status_y" : 0, "line_name_h" : "都営都電荒川線" }, "selected" : false }, { "data" : { "id" : "17931", "source" : "7697", "target" : "7698", "line_name_k" : "トデンアラカワセン", "is_bullet" : false, "lon" : 139.74861502275394, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 13, "SUID" : 17931, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99305", "shared_interaction" : "99305", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都電荒川線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930516 (99305) 9930517", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930516 (99305) 9930517", "lat" : 35.735016925780094, "e_status_y" : 0, "line_name_h" : "都営都電荒川線" }, "selected" : false }, { "data" : { "id" : "17930", "source" : "7696", "target" : "7697", "line_name_k" : "トデンアラカワセン", "is_bullet" : false, "lon" : 139.74861502275394, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 13, "SUID" : 17930, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99305", "shared_interaction" : "99305", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都電荒川線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930515 (99305) 9930516", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930515 (99305) 9930516", "lat" : 35.735016925780094, "e_status_y" : 0, "line_name_h" : "都営都電荒川線" }, "selected" : false }, { "data" : { "id" : "17929", "source" : "7695", "target" : "7696", "line_name_k" : "トデンアラカワセン", "is_bullet" : false, "lon" : 139.74861502275394, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 13, "SUID" : 17929, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99305", "shared_interaction" : "99305", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都電荒川線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930514 (99305) 9930515", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930514 (99305) 9930515", "lat" : 35.735016925780094, "e_status_y" : 0, "line_name_h" : "都営都電荒川線" }, "selected" : false }, { "data" : { "id" : "17928", "source" : "7694", "target" : "7695", "line_name_k" : "トデンアラカワセン", "is_bullet" : false, "lon" : 139.74861502275394, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 13, "SUID" : 17928, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99305", "shared_interaction" : "99305", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都電荒川線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930513 (99305) 9930514", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930513 (99305) 9930514", "lat" : 35.735016925780094, "e_status_y" : 0, "line_name_h" : "都営都電荒川線" }, "selected" : false }, { "data" : { "id" : "17927", "source" : "7693", "target" : "7694", "line_name_k" : "トデンアラカワセン", "is_bullet" : false, "lon" : 139.74861502275394, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 13, "SUID" : 17927, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99305", "shared_interaction" : "99305", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都電荒川線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930512 (99305) 9930513", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930512 (99305) 9930513", "lat" : 35.735016925780094, "e_status_y" : 0, "line_name_h" : "都営都電荒川線" }, "selected" : false }, { "data" : { "id" : "17877", "source" : "7641", "target" : "7642", "line_name_k" : "トエイミタセン", "is_bullet" : false, "lon" : 139.7032176242069, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17877, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99303", "shared_interaction" : "99303", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営三田線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930308 (99303) 9930309", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930308 (99303) 9930309", "lat" : 35.71883584494032, "e_status_y" : 0, "line_name_h" : "都営三田線" }, "selected" : false }, { "data" : { "id" : "17878", "source" : "7642", "target" : "7643", "line_name_k" : "トエイミタセン", "is_bullet" : false, "lon" : 139.7032176242069, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17878, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99303", "shared_interaction" : "99303", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営三田線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930309 (99303) 9930310", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930309 (99303) 9930310", "lat" : 35.71883584494032, "e_status_y" : 0, "line_name_h" : "都営三田線" }, "selected" : false }, { "data" : { "id" : "13814", "source" : "3339", "target" : "3340", "line_name_k" : "ショウナンシンジュクライン", "is_bullet" : false, "lon" : 139.6229436643263, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13814, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11333", "shared_interaction" : "11333", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR湘南新宿ライン", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1133302 (11333) 1133303", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1133302 (11333) 1133303", "lat" : 35.65739974071942, "e_status_y" : 0, "line_name_h" : "JR湘南新宿ライン" }, "selected" : false }, { "data" : { "id" : "17879", "source" : "7643", "target" : "7644", "line_name_k" : "トエイミタセン", "is_bullet" : false, "lon" : 139.7032176242069, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17879, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99303", "shared_interaction" : "99303", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営三田線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930310 (99303) 9930311", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930310 (99303) 9930311", "lat" : 35.71883584494032, "e_status_y" : 0, "line_name_h" : "都営三田線" }, "selected" : false }, { "data" : { "id" : "13815", "source" : "3340", "target" : "3341", "line_name_k" : "ショウナンシンジュクライン", "is_bullet" : false, "lon" : 139.6229436643263, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13815, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11333", "shared_interaction" : "11333", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR湘南新宿ライン", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1133303 (11333) 1133304", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1133303 (11333) 1133304", "lat" : 35.65739974071942, "e_status_y" : 0, "line_name_h" : "JR湘南新宿ライン" }, "selected" : false }, { "data" : { "id" : "17880", "source" : "7644", "target" : "7645", "line_name_k" : "トエイミタセン", "is_bullet" : false, "lon" : 139.7032176242069, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17880, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99303", "shared_interaction" : "99303", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営三田線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930311 (99303) 9930312", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930311 (99303) 9930312", "lat" : 35.71883584494032, "e_status_y" : 0, "line_name_h" : "都営三田線" }, "selected" : false }, { "data" : { "id" : "17873", "source" : "7637", "target" : "7638", "line_name_k" : "トエイミタセン", "is_bullet" : false, "lon" : 139.7032176242069, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17873, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99303", "shared_interaction" : "99303", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営三田線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930304 (99303) 9930305", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930304 (99303) 9930305", "lat" : 35.71883584494032, "e_status_y" : 0, "line_name_h" : "都営三田線" }, "selected" : false }, { "data" : { "id" : "17874", "source" : "7638", "target" : "7639", "line_name_k" : "トエイミタセン", "is_bullet" : false, "lon" : 139.7032176242069, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17874, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99303", "shared_interaction" : "99303", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営三田線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930305 (99303) 9930306", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930305 (99303) 9930306", "lat" : 35.71883584494032, "e_status_y" : 0, "line_name_h" : "都営三田線" }, "selected" : false }, { "data" : { "id" : "17875", "source" : "7639", "target" : "7640", "line_name_k" : "トエイミタセン", "is_bullet" : false, "lon" : 139.7032176242069, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17875, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99303", "shared_interaction" : "99303", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営三田線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930306 (99303) 9930307", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930306 (99303) 9930307", "lat" : 35.71883584494032, "e_status_y" : 0, "line_name_h" : "都営三田線" }, "selected" : false }, { "data" : { "id" : "17876", "source" : "7640", "target" : "7641", "line_name_k" : "トエイミタセン", "is_bullet" : false, "lon" : 139.7032176242069, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17876, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99303", "shared_interaction" : "99303", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営三田線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930307 (99303) 9930308", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930307 (99303) 9930308", "lat" : 35.71883584494032, "e_status_y" : 0, "line_name_h" : "都営三田線" }, "selected" : false }, { "data" : { "id" : "17885", "source" : "7649", "target" : "7650", "line_name_k" : "トエイミタセン", "is_bullet" : false, "lon" : 139.7032176242069, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17885, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99303", "shared_interaction" : "99303", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営三田線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930316 (99303) 9930317", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930316 (99303) 9930317", "lat" : 35.71883584494032, "e_status_y" : 0, "line_name_h" : "都営三田線" }, "selected" : false }, { "data" : { "id" : "17886", "source" : "7650", "target" : "7651", "line_name_k" : "トエイミタセン", "is_bullet" : false, "lon" : 139.7032176242069, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17886, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99303", "shared_interaction" : "99303", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営三田線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930317 (99303) 9930318", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930317 (99303) 9930318", "lat" : 35.71883584494032, "e_status_y" : 0, "line_name_h" : "都営三田線" }, "selected" : false }, { "data" : { "id" : "17887", "source" : "7651", "target" : "7652", "line_name_k" : "トエイミタセン", "is_bullet" : false, "lon" : 139.7032176242069, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17887, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99303", "shared_interaction" : "99303", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営三田線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930318 (99303) 9930319", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930318 (99303) 9930319", "lat" : 35.71883584494032, "e_status_y" : 0, "line_name_h" : "都営三田線" }, "selected" : false }, { "data" : { "id" : "17888", "source" : "7652", "target" : "7653", "line_name_k" : "トエイミタセン", "is_bullet" : false, "lon" : 139.7032176242069, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17888, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99303", "shared_interaction" : "99303", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営三田線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930319 (99303) 9930320", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930319 (99303) 9930320", "lat" : 35.71883584494032, "e_status_y" : 0, "line_name_h" : "都営三田線" }, "selected" : false }, { "data" : { "id" : "13816", "source" : "3341", "target" : "3342", "line_name_k" : "ショウナンシンジュクライン", "is_bullet" : false, "lon" : 139.6229436643263, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13816, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11333", "shared_interaction" : "11333", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR湘南新宿ライン", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1133304 (11333) 1133305", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1133304 (11333) 1133305", "lat" : 35.65739974071942, "e_status_y" : 0, "line_name_h" : "JR湘南新宿ライン" }, "selected" : false }, { "data" : { "id" : "17881", "source" : "7645", "target" : "7646", "line_name_k" : "トエイミタセン", "is_bullet" : false, "lon" : 139.7032176242069, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17881, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99303", "shared_interaction" : "99303", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営三田線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930312 (99303) 9930313", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930312 (99303) 9930313", "lat" : 35.71883584494032, "e_status_y" : 0, "line_name_h" : "都営三田線" }, "selected" : false }, { "data" : { "id" : "13817", "source" : "3342", "target" : "3343", "line_name_k" : "ショウナンシンジュクライン", "is_bullet" : false, "lon" : 139.6229436643263, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13817, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11333", "shared_interaction" : "11333", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR湘南新宿ライン", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1133305 (11333) 1133306", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1133305 (11333) 1133306", "lat" : 35.65739974071942, "e_status_y" : 0, "line_name_h" : "JR湘南新宿ライン" }, "selected" : false }, { "data" : { "id" : "17882", "source" : "7646", "target" : "7647", "line_name_k" : "トエイミタセン", "is_bullet" : false, "lon" : 139.7032176242069, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17882, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99303", "shared_interaction" : "99303", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営三田線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930313 (99303) 9930314", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930313 (99303) 9930314", "lat" : 35.71883584494032, "e_status_y" : 0, "line_name_h" : "都営三田線" }, "selected" : false }, { "data" : { "id" : "13818", "source" : "3343", "target" : "3344", "line_name_k" : "ショウナンシンジュクライン", "is_bullet" : false, "lon" : 139.6229436643263, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13818, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11333", "shared_interaction" : "11333", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR湘南新宿ライン", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1133306 (11333) 1133307", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1133306 (11333) 1133307", "lat" : 35.65739974071942, "e_status_y" : 0, "line_name_h" : "JR湘南新宿ライン" }, "selected" : false }, { "data" : { "id" : "17883", "source" : "7647", "target" : "7648", "line_name_k" : "トエイミタセン", "is_bullet" : false, "lon" : 139.7032176242069, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17883, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99303", "shared_interaction" : "99303", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営三田線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930314 (99303) 9930315", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930314 (99303) 9930315", "lat" : 35.71883584494032, "e_status_y" : 0, "line_name_h" : "都営三田線" }, "selected" : false }, { "data" : { "id" : "13819", "source" : "3344", "target" : "3345", "line_name_k" : "ショウナンシンジュクライン", "is_bullet" : false, "lon" : 139.6229436643263, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13819, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11333", "shared_interaction" : "11333", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR湘南新宿ライン", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1133307 (11333) 1133308", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1133307 (11333) 1133308", "lat" : 35.65739974071942, "e_status_y" : 0, "line_name_h" : "JR湘南新宿ライン" }, "selected" : false }, { "data" : { "id" : "17884", "source" : "7648", "target" : "7649", "line_name_k" : "トエイミタセン", "is_bullet" : false, "lon" : 139.7032176242069, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17884, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99303", "shared_interaction" : "99303", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営三田線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930315 (99303) 9930316", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930315 (99303) 9930316", "lat" : 35.71883584494032, "e_status_y" : 0, "line_name_h" : "都営三田線" }, "selected" : false }, { "data" : { "id" : "13798", "source" : "3322", "target" : "3323", "line_name_k" : "ケイヒントウホクセン", "is_bullet" : false, "lon" : 139.6425120970631, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13798, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11332", "shared_interaction" : "11332", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR京浜東北線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1133221 (11332) 1133222", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1133221 (11332) 1133222", "lat" : 35.63929555924292, "e_status_y" : 0, "line_name_h" : "JR京浜東北線" }, "selected" : false }, { "data" : { "id" : "17894", "source" : "7658", "target" : "7659", "line_name_k" : "トエイミタセン", "is_bullet" : false, "lon" : 139.7032176242069, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17894, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99303", "shared_interaction" : "99303", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営三田線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930325 (99303) 9930326", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930325 (99303) 9930326", "lat" : 35.71883584494032, "e_status_y" : 0, "line_name_h" : "都営三田線" }, "selected" : false }, { "data" : { "id" : "13797", "source" : "3321", "target" : "3322", "line_name_k" : "ケイヒントウホクセン", "is_bullet" : false, "lon" : 139.6425120970631, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13797, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11332", "shared_interaction" : "11332", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR京浜東北線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1133220 (11332) 1133221", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1133220 (11332) 1133221", "lat" : 35.63929555924292, "e_status_y" : 0, "line_name_h" : "JR京浜東北線" }, "selected" : false }, { "data" : { "id" : "17893", "source" : "7657", "target" : "7658", "line_name_k" : "トエイミタセン", "is_bullet" : false, "lon" : 139.7032176242069, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17893, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99303", "shared_interaction" : "99303", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営三田線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930324 (99303) 9930325", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930324 (99303) 9930325", "lat" : 35.71883584494032, "e_status_y" : 0, "line_name_h" : "都営三田線" }, "selected" : false }, { "data" : { "id" : "13800", "source" : "3324", "target" : "3325", "line_name_k" : "ケイヒントウホクセン", "is_bullet" : false, "lon" : 139.6425120970631, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13800, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11332", "shared_interaction" : "11332", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR京浜東北線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1133223 (11332) 1133224", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1133223 (11332) 1133224", "lat" : 35.63929555924292, "e_status_y" : 0, "line_name_h" : "JR京浜東北線" }, "selected" : false }, { "data" : { "id" : "13799", "source" : "3323", "target" : "3324", "line_name_k" : "ケイヒントウホクセン", "is_bullet" : false, "lon" : 139.6425120970631, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13799, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11332", "shared_interaction" : "11332", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR京浜東北線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1133222 (11332) 1133223", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1133222 (11332) 1133223", "lat" : 35.63929555924292, "e_status_y" : 0, "line_name_h" : "JR京浜東北線" }, "selected" : false }, { "data" : { "id" : "17895", "source" : "7659", "target" : "7660", "line_name_k" : "トエイミタセン", "is_bullet" : false, "lon" : 139.7032176242069, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17895, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99303", "shared_interaction" : "99303", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営三田線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930326 (99303) 9930327", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930326 (99303) 9930327", "lat" : 35.71883584494032, "e_status_y" : 0, "line_name_h" : "都営三田線" }, "selected" : false }, { "data" : { "id" : "13794", "source" : "3318", "target" : "3319", "line_name_k" : "ケイヒントウホクセン", "is_bullet" : false, "lon" : 139.6425120970631, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13794, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11332", "shared_interaction" : "11332", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR京浜東北線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1133217 (11332) 1133218", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1133217 (11332) 1133218", "lat" : 35.63929555924292, "e_status_y" : 0, "line_name_h" : "JR京浜東北線" }, "selected" : false }, { "data" : { "id" : "17890", "source" : "7654", "target" : "7655", "line_name_k" : "トエイミタセン", "is_bullet" : false, "lon" : 139.7032176242069, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17890, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99303", "shared_interaction" : "99303", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営三田線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930321 (99303) 9930322", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930321 (99303) 9930322", "lat" : 35.71883584494032, "e_status_y" : 0, "line_name_h" : "都営三田線" }, "selected" : false }, { "data" : { "id" : "13793", "source" : "3317", "target" : "3318", "line_name_k" : "ケイヒントウホクセン", "is_bullet" : false, "lon" : 139.6425120970631, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13793, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11332", "shared_interaction" : "11332", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR京浜東北線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1133216 (11332) 1133217", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1133216 (11332) 1133217", "lat" : 35.63929555924292, "e_status_y" : 0, "line_name_h" : "JR京浜東北線" }, "selected" : false }, { "data" : { "id" : "17889", "source" : "7653", "target" : "7654", "line_name_k" : "トエイミタセン", "is_bullet" : false, "lon" : 139.7032176242069, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17889, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99303", "shared_interaction" : "99303", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営三田線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930320 (99303) 9930321", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930320 (99303) 9930321", "lat" : 35.71883584494032, "e_status_y" : 0, "line_name_h" : "都営三田線" }, "selected" : false }, { "data" : { "id" : "13796", "source" : "3320", "target" : "3321", "line_name_k" : "ケイヒントウホクセン", "is_bullet" : false, "lon" : 139.6425120970631, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13796, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11332", "shared_interaction" : "11332", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR京浜東北線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1133219 (11332) 1133220", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1133219 (11332) 1133220", "lat" : 35.63929555924292, "e_status_y" : 0, "line_name_h" : "JR京浜東北線" }, "selected" : false }, { "data" : { "id" : "17892", "source" : "7656", "target" : "7657", "line_name_k" : "トエイミタセン", "is_bullet" : false, "lon" : 139.7032176242069, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17892, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99303", "shared_interaction" : "99303", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営三田線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930323 (99303) 9930324", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930323 (99303) 9930324", "lat" : 35.71883584494032, "e_status_y" : 0, "line_name_h" : "都営三田線" }, "selected" : false }, { "data" : { "id" : "13795", "source" : "3319", "target" : "3320", "line_name_k" : "ケイヒントウホクセン", "is_bullet" : false, "lon" : 139.6425120970631, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13795, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11332", "shared_interaction" : "11332", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR京浜東北線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1133218 (11332) 1133219", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1133218 (11332) 1133219", "lat" : 35.63929555924292, "e_status_y" : 0, "line_name_h" : "JR京浜東北線" }, "selected" : false }, { "data" : { "id" : "17891", "source" : "7655", "target" : "7656", "line_name_k" : "トエイミタセン", "is_bullet" : false, "lon" : 139.7032176242069, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 12, "SUID" : 17891, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99303", "shared_interaction" : "99303", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営三田線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930322 (99303) 9930323", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930322 (99303) 9930323", "lat" : 35.71883584494032, "e_status_y" : 0, "line_name_h" : "都営三田線" }, "selected" : false }, { "data" : { "id" : "13806", "source" : "3330", "target" : "3331", "line_name_k" : "ケイヒントウホクセン", "is_bullet" : false, "lon" : 139.6425120970631, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13806, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11332", "shared_interaction" : "11332", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR京浜東北線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1133229 (11332) 1133230", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1133229 (11332) 1133230", "lat" : 35.63929555924292, "e_status_y" : 0, "line_name_h" : "JR京浜東北線" }, "selected" : false }, { "data" : { "id" : "17901", "source" : "7666", "target" : "7667", "line_name_k" : "トエイシンジュクセン", "is_bullet" : false, "lon" : 139.80940398416865, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 11, "SUID" : 17901, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99304", "shared_interaction" : "99304", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営新宿線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930406 (99304) 9930407", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930406 (99304) 9930407", "lat" : 35.68917479494153, "e_status_y" : 0, "line_name_h" : "都営新宿線" }, "selected" : false }, { "data" : { "id" : "13805", "source" : "3329", "target" : "3330", "line_name_k" : "ケイヒントウホクセン", "is_bullet" : false, "lon" : 139.6425120970631, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13805, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11332", "shared_interaction" : "11332", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR京浜東北線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1133228 (11332) 1133229", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1133228 (11332) 1133229", "lat" : 35.63929555924292, "e_status_y" : 0, "line_name_h" : "JR京浜東北線" }, "selected" : false }, { "data" : { "id" : "17900", "source" : "7665", "target" : "7666", "line_name_k" : "トエイシンジュクセン", "is_bullet" : false, "lon" : 139.80940398416865, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 11, "SUID" : 17900, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99304", "shared_interaction" : "99304", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営新宿線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930405 (99304) 9930406", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930405 (99304) 9930406", "lat" : 35.68917479494153, "e_status_y" : 0, "line_name_h" : "都営新宿線" }, "selected" : false }, { "data" : { "id" : "17903", "source" : "7668", "target" : "7669", "line_name_k" : "トエイシンジュクセン", "is_bullet" : false, "lon" : 139.80940398416865, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 11, "SUID" : 17903, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99304", "shared_interaction" : "99304", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営新宿線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930408 (99304) 9930409", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930408 (99304) 9930409", "lat" : 35.68917479494153, "e_status_y" : 0, "line_name_h" : "都営新宿線" }, "selected" : false }, { "data" : { "id" : "17902", "source" : "7667", "target" : "7668", "line_name_k" : "トエイシンジュクセン", "is_bullet" : false, "lon" : 139.80940398416865, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 11, "SUID" : 17902, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99304", "shared_interaction" : "99304", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営新宿線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930407 (99304) 9930408", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930407 (99304) 9930408", "lat" : 35.68917479494153, "e_status_y" : 0, "line_name_h" : "都営新宿線" }, "selected" : false }, { "data" : { "id" : "13802", "source" : "3326", "target" : "3327", "line_name_k" : "ケイヒントウホクセン", "is_bullet" : false, "lon" : 139.6425120970631, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13802, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11332", "shared_interaction" : "11332", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR京浜東北線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1133225 (11332) 1133226", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1133225 (11332) 1133226", "lat" : 35.63929555924292, "e_status_y" : 0, "line_name_h" : "JR京浜東北線" }, "selected" : false }, { "data" : { "id" : "17897", "source" : "7662", "target" : "7663", "line_name_k" : "トエイシンジュクセン", "is_bullet" : false, "lon" : 139.80940398416865, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 11, "SUID" : 17897, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99304", "shared_interaction" : "99304", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営新宿線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930402 (99304) 9930403", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930402 (99304) 9930403", "lat" : 35.68917479494153, "e_status_y" : 0, "line_name_h" : "都営新宿線" }, "selected" : false }, { "data" : { "id" : "13801", "source" : "3325", "target" : "3326", "line_name_k" : "ケイヒントウホクセン", "is_bullet" : false, "lon" : 139.6425120970631, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13801, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11332", "shared_interaction" : "11332", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR京浜東北線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1133224 (11332) 1133225", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1133224 (11332) 1133225", "lat" : 35.63929555924292, "e_status_y" : 0, "line_name_h" : "JR京浜東北線" }, "selected" : false }, { "data" : { "id" : "17896", "source" : "7661", "target" : "7662", "line_name_k" : "トエイシンジュクセン", "is_bullet" : false, "lon" : 139.80940398416865, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 11, "SUID" : 17896, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99304", "shared_interaction" : "99304", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営新宿線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930401 (99304) 9930402", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930401 (99304) 9930402", "lat" : 35.68917479494153, "e_status_y" : 0, "line_name_h" : "都営新宿線" }, "selected" : false }, { "data" : { "id" : "13804", "source" : "3328", "target" : "3329", "line_name_k" : "ケイヒントウホクセン", "is_bullet" : false, "lon" : 139.6425120970631, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13804, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11332", "shared_interaction" : "11332", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR京浜東北線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1133227 (11332) 1133228", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1133227 (11332) 1133228", "lat" : 35.63929555924292, "e_status_y" : 0, "line_name_h" : "JR京浜東北線" }, "selected" : false }, { "data" : { "id" : "17899", "source" : "7664", "target" : "7665", "line_name_k" : "トエイシンジュクセン", "is_bullet" : false, "lon" : 139.80940398416865, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 11, "SUID" : 17899, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99304", "shared_interaction" : "99304", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営新宿線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930404 (99304) 9930405", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930404 (99304) 9930405", "lat" : 35.68917479494153, "e_status_y" : 0, "line_name_h" : "都営新宿線" }, "selected" : false }, { "data" : { "id" : "13803", "source" : "3327", "target" : "3328", "line_name_k" : "ケイヒントウホクセン", "is_bullet" : false, "lon" : 139.6425120970631, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13803, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11332", "shared_interaction" : "11332", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR京浜東北線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1133226 (11332) 1133227", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1133226 (11332) 1133227", "lat" : 35.63929555924292, "e_status_y" : 0, "line_name_h" : "JR京浜東北線" }, "selected" : false }, { "data" : { "id" : "17898", "source" : "7663", "target" : "7664", "line_name_k" : "トエイシンジュクセン", "is_bullet" : false, "lon" : 139.80940398416865, "company_name_k" : "トウキョウトコウツウキョク", "zoom" : 11, "SUID" : 17898, "company_type" : 0, "company_name_h" : "東京都交通局", "interaction" : "99304", "shared_interaction" : "99304", "company_url" : "http://www.kotsu.metro.tokyo.jp/", "line_name" : "都営新宿線", "selected" : false, "company_name" : "東京都交通局", "company_cd" : 119, "name" : "9930403 (99304) 9930404", "rr_cd" : 99, "company_name_r" : "東京都交通局", "e_status_x" : 0, "shared_name" : "9930403 (99304) 9930404", "lat" : 35.68917479494153, "e_status_y" : 0, "line_name_h" : "都営新宿線" }, "selected" : false }, { "data" : { "id" : "15917", "source" : "5541", "target" : "5542", "line_name_k" : "ナリタスカイアクセス", "is_bullet" : false, "lon" : 140.04557998117627, "company_name_k" : "ケイセイデンテツ", "zoom" : 10, "SUID" : 15917, "company_type" : 2, "company_name_h" : "京成電鉄株式会社", "interaction" : "23006", "shared_interaction" : "23006", "company_url" : "http://www.keisei.co.jp/", "line_name" : "成田スカイアクセス", "selected" : false, "company_name" : "京成電鉄", "company_cd" : 13, "name" : "2300601 (23006) 2300602", "rr_cd" : 23, "company_name_r" : "京成", "e_status_x" : 0, "shared_name" : "2300601 (23006) 2300602", "lat" : 35.783474701668865, "e_status_y" : 0, "line_name_h" : "京成成田空港線" }, "selected" : false }, { "data" : { "id" : "15918", "source" : "5542", "target" : "5543", "line_name_k" : "ナリタスカイアクセス", "is_bullet" : false, "lon" : 140.04557998117627, "company_name_k" : "ケイセイデンテツ", "zoom" : 10, "SUID" : 15918, "company_type" : 2, "company_name_h" : "京成電鉄株式会社", "interaction" : "23006", "shared_interaction" : "23006", "company_url" : "http://www.keisei.co.jp/", "line_name" : "成田スカイアクセス", "selected" : false, "company_name" : "京成電鉄", "company_cd" : 13, "name" : "2300602 (23006) 2300603", "rr_cd" : 23, "company_name_r" : "京成", "e_status_x" : 0, "shared_name" : "2300602 (23006) 2300603", "lat" : 35.783474701668865, "e_status_y" : 0, "line_name_h" : "京成成田空港線" }, "selected" : false }, { "data" : { "id" : "15919", "source" : "5543", "target" : "5544", "line_name_k" : "ナリタスカイアクセス", "is_bullet" : false, "lon" : 140.04557998117627, "company_name_k" : "ケイセイデンテツ", "zoom" : 10, "SUID" : 15919, "company_type" : 2, "company_name_h" : "京成電鉄株式会社", "interaction" : "23006", "shared_interaction" : "23006", "company_url" : "http://www.keisei.co.jp/", "line_name" : "成田スカイアクセス", "selected" : false, "company_name" : "京成電鉄", "company_cd" : 13, "name" : "2300603 (23006) 2300604", "rr_cd" : 23, "company_name_r" : "京成", "e_status_x" : 0, "shared_name" : "2300603 (23006) 2300604", "lat" : 35.783474701668865, "e_status_y" : 0, "line_name_h" : "京成成田空港線" }, "selected" : false }, { "data" : { "id" : "15927", "source" : "5552", "target" : "5553", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15927, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400101 (24001) 2400102", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400101 (24001) 2400102", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15928", "source" : "5553", "target" : "5554", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15928, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400102 (24001) 2400103", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400102 (24001) 2400103", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15929", "source" : "5554", "target" : "5555", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15929, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400103 (24001) 2400104", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400103 (24001) 2400104", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15930", "source" : "5555", "target" : "5556", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15930, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400104 (24001) 2400105", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400104 (24001) 2400105", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15931", "source" : "5556", "target" : "5557", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15931, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400105 (24001) 2400106", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400105 (24001) 2400106", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15950", "source" : "5575", "target" : "5576", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15950, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400124 (24001) 2400125", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400124 (24001) 2400125", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15951", "source" : "5576", "target" : "5577", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15951, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400125 (24001) 2400126", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400125 (24001) 2400126", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15948", "source" : "5573", "target" : "5574", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15948, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400122 (24001) 2400123", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400122 (24001) 2400123", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15949", "source" : "5574", "target" : "5575", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15949, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400123 (24001) 2400124", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400123 (24001) 2400124", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15954", "source" : "5579", "target" : "5580", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15954, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400128 (24001) 2400129", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400128 (24001) 2400129", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15955", "source" : "5580", "target" : "5581", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15955, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400129 (24001) 2400130", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400129 (24001) 2400130", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15952", "source" : "5577", "target" : "5578", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15952, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400126 (24001) 2400127", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400126 (24001) 2400127", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15953", "source" : "5578", "target" : "5579", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15953, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400127 (24001) 2400128", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400127 (24001) 2400128", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15958", "source" : "5583", "target" : "5584", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15958, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400132 (24001) 2400133", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400132 (24001) 2400133", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15959", "source" : "5584", "target" : "5585", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15959, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400133 (24001) 2400134", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400133 (24001) 2400134", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15956", "source" : "5581", "target" : "5582", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15956, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400130 (24001) 2400131", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400130 (24001) 2400131", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15957", "source" : "5582", "target" : "5583", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15957, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400131 (24001) 2400132", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400131 (24001) 2400132", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15960", "source" : "5586", "target" : "5587", "line_name_k" : "ケイオウサガミハラセン", "is_bullet" : false, "lon" : 139.43751621679692, "company_name_k" : "ケイオウデンテツ", "zoom" : 12, "SUID" : 15960, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24002", "shared_interaction" : "24002", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王相模原線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400201 (24002) 2400202", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400201 (24002) 2400202", "lat" : 35.625846999999986, "e_status_y" : 0, "line_name_h" : "京王相模原線" }, "selected" : false }, { "data" : { "id" : "15935", "source" : "5560", "target" : "5561", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15935, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400109 (24001) 2400110", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400109 (24001) 2400110", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15934", "source" : "5559", "target" : "5560", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15934, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400108 (24001) 2400109", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400108 (24001) 2400109", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15933", "source" : "5558", "target" : "5559", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15933, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400107 (24001) 2400108", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400107 (24001) 2400108", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15932", "source" : "5557", "target" : "5558", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15932, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400106 (24001) 2400107", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400106 (24001) 2400107", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15939", "source" : "5564", "target" : "5565", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15939, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400113 (24001) 2400114", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400113 (24001) 2400114", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15938", "source" : "5563", "target" : "5564", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15938, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400112 (24001) 2400113", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400112 (24001) 2400113", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15937", "source" : "5562", "target" : "5563", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15937, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400111 (24001) 2400112", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400111 (24001) 2400112", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15936", "source" : "5561", "target" : "5562", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15936, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400110 (24001) 2400111", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400110 (24001) 2400111", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15943", "source" : "5568", "target" : "5569", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15943, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400117 (24001) 2400118", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400117 (24001) 2400118", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15942", "source" : "5567", "target" : "5568", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15942, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400116 (24001) 2400117", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400116 (24001) 2400117", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15941", "source" : "5566", "target" : "5567", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15941, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400115 (24001) 2400116", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400115 (24001) 2400116", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15940", "source" : "5565", "target" : "5566", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15940, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400114 (24001) 2400115", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400114 (24001) 2400115", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15947", "source" : "5572", "target" : "5573", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15947, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400121 (24001) 2400122", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400121 (24001) 2400122", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15946", "source" : "5571", "target" : "5572", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15946, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400120 (24001) 2400121", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400120 (24001) 2400121", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15945", "source" : "5570", "target" : "5571", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15945, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400119 (24001) 2400120", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400119 (24001) 2400120", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15944", "source" : "5569", "target" : "5570", "line_name_k" : "ケイオウセン", "is_bullet" : false, "lon" : 139.53357685914878, "company_name_k" : "ケイオウデンテツ", "zoom" : 11, "SUID" : 15944, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24001", "shared_interaction" : "24001", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400118 (24001) 2400119", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400118 (24001) 2400119", "lat" : 35.67836429466227, "e_status_y" : 0, "line_name_h" : "京王線" }, "selected" : false }, { "data" : { "id" : "15979", "source" : "5609", "target" : "5610", "line_name_k" : "ケイオウイノガシラセン", "is_bullet" : false, "lon" : 139.63498783283308, "company_name_k" : "ケイオウデンテツ", "zoom" : 12, "SUID" : 15979, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24006", "shared_interaction" : "24006", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王井の頭線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400601 (24006) 2400602", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400601 (24006) 2400602", "lat" : 35.67668499412642, "e_status_y" : 0, "line_name_h" : "京王井の頭線" }, "selected" : false }, { "data" : { "id" : "15980", "source" : "5610", "target" : "5611", "line_name_k" : "ケイオウイノガシラセン", "is_bullet" : false, "lon" : 139.63498783283308, "company_name_k" : "ケイオウデンテツ", "zoom" : 12, "SUID" : 15980, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24006", "shared_interaction" : "24006", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王井の頭線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400602 (24006) 2400603", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400602 (24006) 2400603", "lat" : 35.67668499412642, "e_status_y" : 0, "line_name_h" : "京王井の頭線" }, "selected" : false }, { "data" : { "id" : "15981", "source" : "5611", "target" : "5612", "line_name_k" : "ケイオウイノガシラセン", "is_bullet" : false, "lon" : 139.63498783283308, "company_name_k" : "ケイオウデンテツ", "zoom" : 12, "SUID" : 15981, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24006", "shared_interaction" : "24006", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王井の頭線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400603 (24006) 2400604", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400603 (24006) 2400604", "lat" : 35.67668499412642, "e_status_y" : 0, "line_name_h" : "京王井の頭線" }, "selected" : false }, { "data" : { "id" : "15982", "source" : "5612", "target" : "5613", "line_name_k" : "ケイオウイノガシラセン", "is_bullet" : false, "lon" : 139.63498783283308, "company_name_k" : "ケイオウデンテツ", "zoom" : 12, "SUID" : 15982, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24006", "shared_interaction" : "24006", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王井の頭線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400604 (24006) 2400605", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400604 (24006) 2400605", "lat" : 35.67668499412642, "e_status_y" : 0, "line_name_h" : "京王井の頭線" }, "selected" : false }, { "data" : { "id" : "15977", "source" : "5605", "target" : "5606", "line_name_k" : "ケイオウケイバジョウセン", "is_bullet" : false, "lon" : 139.48962301586914, "company_name_k" : "ケイオウデンテツ", "zoom" : 14, "SUID" : 15977, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24004", "shared_interaction" : "24004", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王競馬場線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400401 (24004) 2400402", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400401 (24004) 2400402", "lat" : 35.66894537404467, "e_status_y" : 0, "line_name_h" : "京王競馬場線" }, "selected" : false }, { "data" : { "id" : "15978", "source" : "5607", "target" : "5608", "line_name_k" : "ケイオウドウブツエンセン", "is_bullet" : false, "lon" : 139.40999162963863, "company_name_k" : "ケイオウデンテツ", "zoom" : 14, "SUID" : 15978, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24005", "shared_interaction" : "24005", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王動物園線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400501 (24005) 2400502", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400501 (24005) 2400502", "lat" : 35.657461750041946, "e_status_y" : 0, "line_name_h" : "京王動物園線" }, "selected" : false }, { "data" : { "id" : "15987", "source" : "5617", "target" : "5618", "line_name_k" : "ケイオウイノガシラセン", "is_bullet" : false, "lon" : 139.63498783283308, "company_name_k" : "ケイオウデンテツ", "zoom" : 12, "SUID" : 15987, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24006", "shared_interaction" : "24006", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王井の頭線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400609 (24006) 2400610", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400609 (24006) 2400610", "lat" : 35.67668499412642, "e_status_y" : 0, "line_name_h" : "京王井の頭線" }, "selected" : false }, { "data" : { "id" : "15988", "source" : "5618", "target" : "5619", "line_name_k" : "ケイオウイノガシラセン", "is_bullet" : false, "lon" : 139.63498783283308, "company_name_k" : "ケイオウデンテツ", "zoom" : 12, "SUID" : 15988, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24006", "shared_interaction" : "24006", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王井の頭線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400610 (24006) 2400611", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400610 (24006) 2400611", "lat" : 35.67668499412642, "e_status_y" : 0, "line_name_h" : "京王井の頭線" }, "selected" : false }, { "data" : { "id" : "15989", "source" : "5619", "target" : "5620", "line_name_k" : "ケイオウイノガシラセン", "is_bullet" : false, "lon" : 139.63498783283308, "company_name_k" : "ケイオウデンテツ", "zoom" : 12, "SUID" : 15989, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24006", "shared_interaction" : "24006", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王井の頭線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400611 (24006) 2400612", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400611 (24006) 2400612", "lat" : 35.67668499412642, "e_status_y" : 0, "line_name_h" : "京王井の頭線" }, "selected" : false }, { "data" : { "id" : "15990", "source" : "5620", "target" : "5621", "line_name_k" : "ケイオウイノガシラセン", "is_bullet" : false, "lon" : 139.63498783283308, "company_name_k" : "ケイオウデンテツ", "zoom" : 12, "SUID" : 15990, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24006", "shared_interaction" : "24006", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王井の頭線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400612 (24006) 2400613", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400612 (24006) 2400613", "lat" : 35.67668499412642, "e_status_y" : 0, "line_name_h" : "京王井の頭線" }, "selected" : false }, { "data" : { "id" : "15983", "source" : "5613", "target" : "5614", "line_name_k" : "ケイオウイノガシラセン", "is_bullet" : false, "lon" : 139.63498783283308, "company_name_k" : "ケイオウデンテツ", "zoom" : 12, "SUID" : 15983, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24006", "shared_interaction" : "24006", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王井の頭線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400605 (24006) 2400606", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400605 (24006) 2400606", "lat" : 35.67668499412642, "e_status_y" : 0, "line_name_h" : "京王井の頭線" }, "selected" : false }, { "data" : { "id" : "15984", "source" : "5614", "target" : "5615", "line_name_k" : "ケイオウイノガシラセン", "is_bullet" : false, "lon" : 139.63498783283308, "company_name_k" : "ケイオウデンテツ", "zoom" : 12, "SUID" : 15984, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24006", "shared_interaction" : "24006", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王井の頭線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400606 (24006) 2400607", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400606 (24006) 2400607", "lat" : 35.67668499412642, "e_status_y" : 0, "line_name_h" : "京王井の頭線" }, "selected" : false }, { "data" : { "id" : "15985", "source" : "5615", "target" : "5616", "line_name_k" : "ケイオウイノガシラセン", "is_bullet" : false, "lon" : 139.63498783283308, "company_name_k" : "ケイオウデンテツ", "zoom" : 12, "SUID" : 15985, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24006", "shared_interaction" : "24006", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王井の頭線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400607 (24006) 2400608", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400607 (24006) 2400608", "lat" : 35.67668499412642, "e_status_y" : 0, "line_name_h" : "京王井の頭線" }, "selected" : false }, { "data" : { "id" : "15986", "source" : "5616", "target" : "5617", "line_name_k" : "ケイオウイノガシラセン", "is_bullet" : false, "lon" : 139.63498783283308, "company_name_k" : "ケイオウデンテツ", "zoom" : 12, "SUID" : 15986, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24006", "shared_interaction" : "24006", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王井の頭線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400608 (24006) 2400609", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400608 (24006) 2400609", "lat" : 35.67668499412642, "e_status_y" : 0, "line_name_h" : "京王井の頭線" }, "selected" : false }, { "data" : { "id" : "15968", "source" : "5594", "target" : "5595", "line_name_k" : "ケイオウサガミハラセン", "is_bullet" : false, "lon" : 139.43751621679692, "company_name_k" : "ケイオウデンテツ", "zoom" : 12, "SUID" : 15968, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24002", "shared_interaction" : "24002", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王相模原線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400209 (24002) 2400210", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400209 (24002) 2400210", "lat" : 35.625846999999986, "e_status_y" : 0, "line_name_h" : "京王相模原線" }, "selected" : false }, { "data" : { "id" : "15967", "source" : "5593", "target" : "5594", "line_name_k" : "ケイオウサガミハラセン", "is_bullet" : false, "lon" : 139.43751621679692, "company_name_k" : "ケイオウデンテツ", "zoom" : 12, "SUID" : 15967, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24002", "shared_interaction" : "24002", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王相模原線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400208 (24002) 2400209", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400208 (24002) 2400209", "lat" : 35.625846999999986, "e_status_y" : 0, "line_name_h" : "京王相模原線" }, "selected" : false }, { "data" : { "id" : "15969", "source" : "5595", "target" : "5596", "line_name_k" : "ケイオウサガミハラセン", "is_bullet" : false, "lon" : 139.43751621679692, "company_name_k" : "ケイオウデンテツ", "zoom" : 12, "SUID" : 15969, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24002", "shared_interaction" : "24002", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王相模原線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400210 (24002) 2400211", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400210 (24002) 2400211", "lat" : 35.625846999999986, "e_status_y" : 0, "line_name_h" : "京王相模原線" }, "selected" : false }, { "data" : { "id" : "15963", "source" : "5589", "target" : "5590", "line_name_k" : "ケイオウサガミハラセン", "is_bullet" : false, "lon" : 139.43751621679692, "company_name_k" : "ケイオウデンテツ", "zoom" : 12, "SUID" : 15963, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24002", "shared_interaction" : "24002", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王相模原線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400204 (24002) 2400205", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400204 (24002) 2400205", "lat" : 35.625846999999986, "e_status_y" : 0, "line_name_h" : "京王相模原線" }, "selected" : false }, { "data" : { "id" : "15966", "source" : "5592", "target" : "5593", "line_name_k" : "ケイオウサガミハラセン", "is_bullet" : false, "lon" : 139.43751621679692, "company_name_k" : "ケイオウデンテツ", "zoom" : 12, "SUID" : 15966, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24002", "shared_interaction" : "24002", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王相模原線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400207 (24002) 2400208", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400207 (24002) 2400208", "lat" : 35.625846999999986, "e_status_y" : 0, "line_name_h" : "京王相模原線" }, "selected" : false }, { "data" : { "id" : "15975", "source" : "5602", "target" : "5603", "line_name_k" : "ケイオウタカオセン", "is_bullet" : false, "lon" : 139.3084367460283, "company_name_k" : "ケイオウデンテツ", "zoom" : 13, "SUID" : 15975, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24003", "shared_interaction" : "24003", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王高尾線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400305 (24003) 2400306", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400305 (24003) 2400306", "lat" : 35.64331590360225, "e_status_y" : 0, "line_name_h" : "京王高尾線" }, "selected" : false }, { "data" : { "id" : "15974", "source" : "5601", "target" : "5602", "line_name_k" : "ケイオウタカオセン", "is_bullet" : false, "lon" : 139.3084367460283, "company_name_k" : "ケイオウデンテツ", "zoom" : 13, "SUID" : 15974, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24003", "shared_interaction" : "24003", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王高尾線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400304 (24003) 2400305", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400304 (24003) 2400305", "lat" : 35.64331590360225, "e_status_y" : 0, "line_name_h" : "京王高尾線" }, "selected" : false }, { "data" : { "id" : "15976", "source" : "5603", "target" : "5604", "line_name_k" : "ケイオウタカオセン", "is_bullet" : false, "lon" : 139.3084367460283, "company_name_k" : "ケイオウデンテツ", "zoom" : 13, "SUID" : 15976, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24003", "shared_interaction" : "24003", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王高尾線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400306 (24003) 2400307", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400306 (24003) 2400307", "lat" : 35.64331590360225, "e_status_y" : 0, "line_name_h" : "京王高尾線" }, "selected" : false }, { "data" : { "id" : "15971", "source" : "5598", "target" : "5599", "line_name_k" : "ケイオウタカオセン", "is_bullet" : false, "lon" : 139.3084367460283, "company_name_k" : "ケイオウデンテツ", "zoom" : 13, "SUID" : 15971, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24003", "shared_interaction" : "24003", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王高尾線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400301 (24003) 2400302", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400301 (24003) 2400302", "lat" : 35.64331590360225, "e_status_y" : 0, "line_name_h" : "京王高尾線" }, "selected" : false }, { "data" : { "id" : "15973", "source" : "5600", "target" : "5601", "line_name_k" : "ケイオウタカオセン", "is_bullet" : false, "lon" : 139.3084367460283, "company_name_k" : "ケイオウデンテツ", "zoom" : 13, "SUID" : 15973, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24003", "shared_interaction" : "24003", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王高尾線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400303 (24003) 2400304", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400303 (24003) 2400304", "lat" : 35.64331590360225, "e_status_y" : 0, "line_name_h" : "京王高尾線" }, "selected" : false }, { "data" : { "id" : "15972", "source" : "5599", "target" : "5600", "line_name_k" : "ケイオウタカオセン", "is_bullet" : false, "lon" : 139.3084367460283, "company_name_k" : "ケイオウデンテツ", "zoom" : 13, "SUID" : 15972, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24003", "shared_interaction" : "24003", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王高尾線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400302 (24003) 2400303", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400302 (24003) 2400303", "lat" : 35.64331590360225, "e_status_y" : 0, "line_name_h" : "京王高尾線" }, "selected" : false }, { "data" : { "id" : "16011", "source" : "5643", "target" : "5644", "line_name_k" : "オダキュウセン", "is_bullet" : false, "lon" : 139.43477539316441, "company_name_k" : "オダキュウデンテツ", "zoom" : 11, "SUID" : 16011, "company_type" : 2, "company_name_h" : "小田急電鉄株式会社", "interaction" : "25001", "shared_interaction" : "25001", "company_url" : "http://www.odakyu.jp/", "line_name" : "小田急線", "selected" : false, "company_name" : "小田急電鉄", "company_cd" : 15, "name" : "2500114 (25001) 2500115", "rr_cd" : 25, "company_name_r" : "小田急", "e_status_x" : 0, "shared_name" : "2500114 (25001) 2500115", "lat" : 35.528535238628024, "e_status_y" : 0, "line_name_h" : "小田急小田原線" }, "selected" : false }, { "data" : { "id" : "16012", "source" : "5644", "target" : "5645", "line_name_k" : "オダキュウセン", "is_bullet" : false, "lon" : 139.43477539316441, "company_name_k" : "オダキュウデンテツ", "zoom" : 11, "SUID" : 16012, "company_type" : 2, "company_name_h" : "小田急電鉄株式会社", "interaction" : "25001", "shared_interaction" : "25001", "company_url" : "http://www.odakyu.jp/", "line_name" : "小田急線", "selected" : false, "company_name" : "小田急電鉄", "company_cd" : 15, "name" : "2500115 (25001) 2500116", "rr_cd" : 25, "company_name_r" : "小田急", "e_status_x" : 0, "shared_name" : "2500115 (25001) 2500116", "lat" : 35.528535238628024, "e_status_y" : 0, "line_name_h" : "小田急小田原線" }, "selected" : false }, { "data" : { "id" : "16009", "source" : "5641", "target" : "5642", "line_name_k" : "オダキュウセン", "is_bullet" : false, "lon" : 139.43477539316441, "company_name_k" : "オダキュウデンテツ", "zoom" : 11, "SUID" : 16009, "company_type" : 2, "company_name_h" : "小田急電鉄株式会社", "interaction" : "25001", "shared_interaction" : "25001", "company_url" : "http://www.odakyu.jp/", "line_name" : "小田急線", "selected" : false, "company_name" : "小田急電鉄", "company_cd" : 15, "name" : "2500112 (25001) 2500113", "rr_cd" : 25, "company_name_r" : "小田急", "e_status_x" : 0, "shared_name" : "2500112 (25001) 2500113", "lat" : 35.528535238628024, "e_status_y" : 0, "line_name_h" : "小田急小田原線" }, "selected" : false }, { "data" : { "id" : "16010", "source" : "5642", "target" : "5643", "line_name_k" : "オダキュウセン", "is_bullet" : false, "lon" : 139.43477539316441, "company_name_k" : "オダキュウデンテツ", "zoom" : 11, "SUID" : 16010, "company_type" : 2, "company_name_h" : "小田急電鉄株式会社", "interaction" : "25001", "shared_interaction" : "25001", "company_url" : "http://www.odakyu.jp/", "line_name" : "小田急線", "selected" : false, "company_name" : "小田急電鉄", "company_cd" : 15, "name" : "2500113 (25001) 2500114", "rr_cd" : 25, "company_name_r" : "小田急", "e_status_x" : 0, "shared_name" : "2500113 (25001) 2500114", "lat" : 35.528535238628024, "e_status_y" : 0, "line_name_h" : "小田急小田原線" }, "selected" : false }, { "data" : { "id" : "16007", "source" : "5639", "target" : "5640", "line_name_k" : "オダキュウセン", "is_bullet" : false, "lon" : 139.43477539316441, "company_name_k" : "オダキュウデンテツ", "zoom" : 11, "SUID" : 16007, "company_type" : 2, "company_name_h" : "小田急電鉄株式会社", "interaction" : "25001", "shared_interaction" : "25001", "company_url" : "http://www.odakyu.jp/", "line_name" : "小田急線", "selected" : false, "company_name" : "小田急電鉄", "company_cd" : 15, "name" : "2500110 (25001) 2500111", "rr_cd" : 25, "company_name_r" : "小田急", "e_status_x" : 0, "shared_name" : "2500110 (25001) 2500111", "lat" : 35.528535238628024, "e_status_y" : 0, "line_name_h" : "小田急小田原線" }, "selected" : false }, { "data" : { "id" : "16008", "source" : "5640", "target" : "5641", "line_name_k" : "オダキュウセン", "is_bullet" : false, "lon" : 139.43477539316441, "company_name_k" : "オダキュウデンテツ", "zoom" : 11, "SUID" : 16008, "company_type" : 2, "company_name_h" : "小田急電鉄株式会社", "interaction" : "25001", "shared_interaction" : "25001", "company_url" : "http://www.odakyu.jp/", "line_name" : "小田急線", "selected" : false, "company_name" : "小田急電鉄", "company_cd" : 15, "name" : "2500111 (25001) 2500112", "rr_cd" : 25, "company_name_r" : "小田急", "e_status_x" : 0, "shared_name" : "2500111 (25001) 2500112", "lat" : 35.528535238628024, "e_status_y" : 0, "line_name_h" : "小田急小田原線" }, "selected" : false }, { "data" : { "id" : "16005", "source" : "5637", "target" : "5638", "line_name_k" : "オダキュウセン", "is_bullet" : false, "lon" : 139.43477539316441, "company_name_k" : "オダキュウデンテツ", "zoom" : 11, "SUID" : 16005, "company_type" : 2, "company_name_h" : "小田急電鉄株式会社", "interaction" : "25001", "shared_interaction" : "25001", "company_url" : "http://www.odakyu.jp/", "line_name" : "小田急線", "selected" : false, "company_name" : "小田急電鉄", "company_cd" : 15, "name" : "2500108 (25001) 2500109", "rr_cd" : 25, "company_name_r" : "小田急", "e_status_x" : 0, "shared_name" : "2500108 (25001) 2500109", "lat" : 35.528535238628024, "e_status_y" : 0, "line_name_h" : "小田急小田原線" }, "selected" : false }, { "data" : { "id" : "16006", "source" : "5638", "target" : "5639", "line_name_k" : "オダキュウセン", "is_bullet" : false, "lon" : 139.43477539316441, "company_name_k" : "オダキュウデンテツ", "zoom" : 11, "SUID" : 16006, "company_type" : 2, "company_name_h" : "小田急電鉄株式会社", "interaction" : "25001", "shared_interaction" : "25001", "company_url" : "http://www.odakyu.jp/", "line_name" : "小田急線", "selected" : false, "company_name" : "小田急電鉄", "company_cd" : 15, "name" : "2500109 (25001) 2500110", "rr_cd" : 25, "company_name_r" : "小田急", "e_status_x" : 0, "shared_name" : "2500109 (25001) 2500110", "lat" : 35.528535238628024, "e_status_y" : 0, "line_name_h" : "小田急小田原線" }, "selected" : false }, { "data" : { "id" : "16013", "source" : "5645", "target" : "5646", "line_name_k" : "オダキュウセン", "is_bullet" : false, "lon" : 139.43477539316441, "company_name_k" : "オダキュウデンテツ", "zoom" : 11, "SUID" : 16013, "company_type" : 2, "company_name_h" : "小田急電鉄株式会社", "interaction" : "25001", "shared_interaction" : "25001", "company_url" : "http://www.odakyu.jp/", "line_name" : "小田急線", "selected" : false, "company_name" : "小田急電鉄", "company_cd" : 15, "name" : "2500116 (25001) 2500117", "rr_cd" : 25, "company_name_r" : "小田急", "e_status_x" : 0, "shared_name" : "2500116 (25001) 2500117", "lat" : 35.528535238628024, "e_status_y" : 0, "line_name_h" : "小田急小田原線" }, "selected" : false }, { "data" : { "id" : "15997", "source" : "5628", "target" : "5629", "line_name_k" : "ケイオウシンセン", "is_bullet" : false, "lon" : 139.6852505207062, "company_name_k" : "ケイオウデンテツ", "zoom" : 14, "SUID" : 15997, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24007", "shared_interaction" : "24007", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王新線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400703 (24007) 2400704", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400703 (24007) 2400704", "lat" : 35.6804985281479, "e_status_y" : 0, "line_name_h" : "京王新線" }, "selected" : false }, { "data" : { "id" : "15996", "source" : "5627", "target" : "5628", "line_name_k" : "ケイオウシンセン", "is_bullet" : false, "lon" : 139.6852505207062, "company_name_k" : "ケイオウデンテツ", "zoom" : 14, "SUID" : 15996, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24007", "shared_interaction" : "24007", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王新線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400702 (24007) 2400703", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400702 (24007) 2400703", "lat" : 35.6804985281479, "e_status_y" : 0, "line_name_h" : "京王新線" }, "selected" : false }, { "data" : { "id" : "15995", "source" : "5626", "target" : "5627", "line_name_k" : "ケイオウシンセン", "is_bullet" : false, "lon" : 139.6852505207062, "company_name_k" : "ケイオウデンテツ", "zoom" : 14, "SUID" : 15995, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24007", "shared_interaction" : "24007", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王新線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400701 (24007) 2400702", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400701 (24007) 2400702", "lat" : 35.6804985281479, "e_status_y" : 0, "line_name_h" : "京王新線" }, "selected" : false }, { "data" : { "id" : "15994", "source" : "5624", "target" : "5625", "line_name_k" : "ケイオウイノガシラセン", "is_bullet" : false, "lon" : 139.63498783283308, "company_name_k" : "ケイオウデンテツ", "zoom" : 12, "SUID" : 15994, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24006", "shared_interaction" : "24006", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王井の頭線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400616 (24006) 2400617", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400616 (24006) 2400617", "lat" : 35.67668499412642, "e_status_y" : 0, "line_name_h" : "京王井の頭線" }, "selected" : false }, { "data" : { "id" : "15993", "source" : "5623", "target" : "5624", "line_name_k" : "ケイオウイノガシラセン", "is_bullet" : false, "lon" : 139.63498783283308, "company_name_k" : "ケイオウデンテツ", "zoom" : 12, "SUID" : 15993, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24006", "shared_interaction" : "24006", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王井の頭線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400615 (24006) 2400616", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400615 (24006) 2400616", "lat" : 35.67668499412642, "e_status_y" : 0, "line_name_h" : "京王井の頭線" }, "selected" : false }, { "data" : { "id" : "15992", "source" : "5622", "target" : "5623", "line_name_k" : "ケイオウイノガシラセン", "is_bullet" : false, "lon" : 139.63498783283308, "company_name_k" : "ケイオウデンテツ", "zoom" : 12, "SUID" : 15992, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24006", "shared_interaction" : "24006", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王井の頭線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400614 (24006) 2400615", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400614 (24006) 2400615", "lat" : 35.67668499412642, "e_status_y" : 0, "line_name_h" : "京王井の頭線" }, "selected" : false }, { "data" : { "id" : "15991", "source" : "5621", "target" : "5622", "line_name_k" : "ケイオウイノガシラセン", "is_bullet" : false, "lon" : 139.63498783283308, "company_name_k" : "ケイオウデンテツ", "zoom" : 12, "SUID" : 15991, "company_type" : 2, "company_name_h" : "京王電鉄株式会社", "interaction" : "24006", "shared_interaction" : "24006", "company_url" : "http://www.keio.co.jp/", "line_name" : "京王井の頭線", "selected" : false, "company_name" : "京王電鉄", "company_cd" : 14, "name" : "2400613 (24006) 2400614", "rr_cd" : 24, "company_name_r" : "京王", "e_status_x" : 0, "shared_name" : "2400613 (24006) 2400614", "lat" : 35.67668499412642, "e_status_y" : 0, "line_name_h" : "京王井の頭線" }, "selected" : false }, { "data" : { "id" : "16004", "source" : "5636", "target" : "5637", "line_name_k" : "オダキュウセン", "is_bullet" : false, "lon" : 139.43477539316441, "company_name_k" : "オダキュウデンテツ", "zoom" : 11, "SUID" : 16004, "company_type" : 2, "company_name_h" : "小田急電鉄株式会社", "interaction" : "25001", "shared_interaction" : "25001", "company_url" : "http://www.odakyu.jp/", "line_name" : "小田急線", "selected" : false, "company_name" : "小田急電鉄", "company_cd" : 15, "name" : "2500107 (25001) 2500108", "rr_cd" : 25, "company_name_r" : "小田急", "e_status_x" : 0, "shared_name" : "2500107 (25001) 2500108", "lat" : 35.528535238628024, "e_status_y" : 0, "line_name_h" : "小田急小田原線" }, "selected" : false }, { "data" : { "id" : "16003", "source" : "5635", "target" : "5636", "line_name_k" : "オダキュウセン", "is_bullet" : false, "lon" : 139.43477539316441, "company_name_k" : "オダキュウデンテツ", "zoom" : 11, "SUID" : 16003, "company_type" : 2, "company_name_h" : "小田急電鉄株式会社", "interaction" : "25001", "shared_interaction" : "25001", "company_url" : "http://www.odakyu.jp/", "line_name" : "小田急線", "selected" : false, "company_name" : "小田急電鉄", "company_cd" : 15, "name" : "2500106 (25001) 2500107", "rr_cd" : 25, "company_name_r" : "小田急", "e_status_x" : 0, "shared_name" : "2500106 (25001) 2500107", "lat" : 35.528535238628024, "e_status_y" : 0, "line_name_h" : "小田急小田原線" }, "selected" : false }, { "data" : { "id" : "16002", "source" : "5634", "target" : "5635", "line_name_k" : "オダキュウセン", "is_bullet" : false, "lon" : 139.43477539316441, "company_name_k" : "オダキュウデンテツ", "zoom" : 11, "SUID" : 16002, "company_type" : 2, "company_name_h" : "小田急電鉄株式会社", "interaction" : "25001", "shared_interaction" : "25001", "company_url" : "http://www.odakyu.jp/", "line_name" : "小田急線", "selected" : false, "company_name" : "小田急電鉄", "company_cd" : 15, "name" : "2500105 (25001) 2500106", "rr_cd" : 25, "company_name_r" : "小田急", "e_status_x" : 0, "shared_name" : "2500105 (25001) 2500106", "lat" : 35.528535238628024, "e_status_y" : 0, "line_name_h" : "小田急小田原線" }, "selected" : false }, { "data" : { "id" : "16001", "source" : "5633", "target" : "5634", "line_name_k" : "オダキュウセン", "is_bullet" : false, "lon" : 139.43477539316441, "company_name_k" : "オダキュウデンテツ", "zoom" : 11, "SUID" : 16001, "company_type" : 2, "company_name_h" : "小田急電鉄株式会社", "interaction" : "25001", "shared_interaction" : "25001", "company_url" : "http://www.odakyu.jp/", "line_name" : "小田急線", "selected" : false, "company_name" : "小田急電鉄", "company_cd" : 15, "name" : "2500104 (25001) 2500105", "rr_cd" : 25, "company_name_r" : "小田急", "e_status_x" : 0, "shared_name" : "2500104 (25001) 2500105", "lat" : 35.528535238628024, "e_status_y" : 0, "line_name_h" : "小田急小田原線" }, "selected" : false }, { "data" : { "id" : "16000", "source" : "5632", "target" : "5633", "line_name_k" : "オダキュウセン", "is_bullet" : false, "lon" : 139.43477539316441, "company_name_k" : "オダキュウデンテツ", "zoom" : 11, "SUID" : 16000, "company_type" : 2, "company_name_h" : "小田急電鉄株式会社", "interaction" : "25001", "shared_interaction" : "25001", "company_url" : "http://www.odakyu.jp/", "line_name" : "小田急線", "selected" : false, "company_name" : "小田急電鉄", "company_cd" : 15, "name" : "2500103 (25001) 2500104", "rr_cd" : 25, "company_name_r" : "小田急", "e_status_x" : 0, "shared_name" : "2500103 (25001) 2500104", "lat" : 35.528535238628024, "e_status_y" : 0, "line_name_h" : "小田急小田原線" }, "selected" : false }, { "data" : { "id" : "15999", "source" : "5631", "target" : "5632", "line_name_k" : "オダキュウセン", "is_bullet" : false, "lon" : 139.43477539316441, "company_name_k" : "オダキュウデンテツ", "zoom" : 11, "SUID" : 15999, "company_type" : 2, "company_name_h" : "小田急電鉄株式会社", "interaction" : "25001", "shared_interaction" : "25001", "company_url" : "http://www.odakyu.jp/", "line_name" : "小田急線", "selected" : false, "company_name" : "小田急電鉄", "company_cd" : 15, "name" : "2500102 (25001) 2500103", "rr_cd" : 25, "company_name_r" : "小田急", "e_status_x" : 0, "shared_name" : "2500102 (25001) 2500103", "lat" : 35.528535238628024, "e_status_y" : 0, "line_name_h" : "小田急小田原線" }, "selected" : false }, { "data" : { "id" : "15998", "source" : "5630", "target" : "5631", "line_name_k" : "オダキュウセン", "is_bullet" : false, "lon" : 139.43477539316441, "company_name_k" : "オダキュウデンテツ", "zoom" : 11, "SUID" : 15998, "company_type" : 2, "company_name_h" : "小田急電鉄株式会社", "interaction" : "25001", "shared_interaction" : "25001", "company_url" : "http://www.odakyu.jp/", "line_name" : "小田急線", "selected" : false, "company_name" : "小田急電鉄", "company_cd" : 15, "name" : "2500101 (25001) 2500102", "rr_cd" : 25, "company_name_r" : "小田急", "e_status_x" : 0, "shared_name" : "2500101 (25001) 2500102", "lat" : 35.528535238628024, "e_status_y" : 0, "line_name_h" : "小田急小田原線" }, "selected" : false }, { "data" : { "id" : "15809", "source" : "5422", "target" : "5423", "line_name_k" : "セイブシンジュクセン", "is_bullet" : false, "lon" : 139.5308648735163, "company_name_k" : "セイブテツドウ", "zoom" : 11, "SUID" : 15809, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22007", "shared_interaction" : "22007", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武新宿線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200708 (22007) 2200709", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200708 (22007) 2200709", "lat" : 35.776946871074955, "e_status_y" : 0, "line_name_h" : "西武新宿線" }, "selected" : false }, { "data" : { "id" : "15808", "source" : "5421", "target" : "5422", "line_name_k" : "セイブシンジュクセン", "is_bullet" : false, "lon" : 139.5308648735163, "company_name_k" : "セイブテツドウ", "zoom" : 11, "SUID" : 15808, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22007", "shared_interaction" : "22007", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武新宿線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200707 (22007) 2200708", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200707 (22007) 2200708", "lat" : 35.776946871074955, "e_status_y" : 0, "line_name_h" : "西武新宿線" }, "selected" : false }, { "data" : { "id" : "15811", "source" : "5424", "target" : "5425", "line_name_k" : "セイブシンジュクセン", "is_bullet" : false, "lon" : 139.5308648735163, "company_name_k" : "セイブテツドウ", "zoom" : 11, "SUID" : 15811, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22007", "shared_interaction" : "22007", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武新宿線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200710 (22007) 2200711", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200710 (22007) 2200711", "lat" : 35.776946871074955, "e_status_y" : 0, "line_name_h" : "西武新宿線" }, "selected" : false }, { "data" : { "id" : "15810", "source" : "5423", "target" : "5424", "line_name_k" : "セイブシンジュクセン", "is_bullet" : false, "lon" : 139.5308648735163, "company_name_k" : "セイブテツドウ", "zoom" : 11, "SUID" : 15810, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22007", "shared_interaction" : "22007", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武新宿線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200709 (22007) 2200710", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200709 (22007) 2200710", "lat" : 35.776946871074955, "e_status_y" : 0, "line_name_h" : "西武新宿線" }, "selected" : false }, { "data" : { "id" : "15813", "source" : "5426", "target" : "5427", "line_name_k" : "セイブシンジュクセン", "is_bullet" : false, "lon" : 139.5308648735163, "company_name_k" : "セイブテツドウ", "zoom" : 11, "SUID" : 15813, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22007", "shared_interaction" : "22007", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武新宿線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200712 (22007) 2200713", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200712 (22007) 2200713", "lat" : 35.776946871074955, "e_status_y" : 0, "line_name_h" : "西武新宿線" }, "selected" : false }, { "data" : { "id" : "15812", "source" : "5425", "target" : "5426", "line_name_k" : "セイブシンジュクセン", "is_bullet" : false, "lon" : 139.5308648735163, "company_name_k" : "セイブテツドウ", "zoom" : 11, "SUID" : 15812, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22007", "shared_interaction" : "22007", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武新宿線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200711 (22007) 2200712", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200711 (22007) 2200712", "lat" : 35.776946871074955, "e_status_y" : 0, "line_name_h" : "西武新宿線" }, "selected" : false }, { "data" : { "id" : "15815", "source" : "5428", "target" : "5429", "line_name_k" : "セイブシンジュクセン", "is_bullet" : false, "lon" : 139.5308648735163, "company_name_k" : "セイブテツドウ", "zoom" : 11, "SUID" : 15815, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22007", "shared_interaction" : "22007", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武新宿線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200714 (22007) 2200715", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200714 (22007) 2200715", "lat" : 35.776946871074955, "e_status_y" : 0, "line_name_h" : "西武新宿線" }, "selected" : false }, { "data" : { "id" : "15814", "source" : "5427", "target" : "5428", "line_name_k" : "セイブシンジュクセン", "is_bullet" : false, "lon" : 139.5308648735163, "company_name_k" : "セイブテツドウ", "zoom" : 11, "SUID" : 15814, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22007", "shared_interaction" : "22007", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武新宿線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200713 (22007) 2200714", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200713 (22007) 2200714", "lat" : 35.776946871074955, "e_status_y" : 0, "line_name_h" : "西武新宿線" }, "selected" : false }, { "data" : { "id" : "15803", "source" : "5416", "target" : "5417", "line_name_k" : "セイブシンジュクセン", "is_bullet" : false, "lon" : 139.5308648735163, "company_name_k" : "セイブテツドウ", "zoom" : 11, "SUID" : 15803, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22007", "shared_interaction" : "22007", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武新宿線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200702 (22007) 2200703", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200702 (22007) 2200703", "lat" : 35.776946871074955, "e_status_y" : 0, "line_name_h" : "西武新宿線" }, "selected" : false }, { "data" : { "id" : "15802", "source" : "5415", "target" : "5416", "line_name_k" : "セイブシンジュクセン", "is_bullet" : false, "lon" : 139.5308648735163, "company_name_k" : "セイブテツドウ", "zoom" : 11, "SUID" : 15802, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22007", "shared_interaction" : "22007", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武新宿線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200701 (22007) 2200702", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200701 (22007) 2200702", "lat" : 35.776946871074955, "e_status_y" : 0, "line_name_h" : "西武新宿線" }, "selected" : false }, { "data" : { "id" : "15805", "source" : "5418", "target" : "5419", "line_name_k" : "セイブシンジュクセン", "is_bullet" : false, "lon" : 139.5308648735163, "company_name_k" : "セイブテツドウ", "zoom" : 11, "SUID" : 15805, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22007", "shared_interaction" : "22007", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武新宿線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200704 (22007) 2200705", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200704 (22007) 2200705", "lat" : 35.776946871074955, "e_status_y" : 0, "line_name_h" : "西武新宿線" }, "selected" : false }, { "data" : { "id" : "15804", "source" : "5417", "target" : "5418", "line_name_k" : "セイブシンジュクセン", "is_bullet" : false, "lon" : 139.5308648735163, "company_name_k" : "セイブテツドウ", "zoom" : 11, "SUID" : 15804, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22007", "shared_interaction" : "22007", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武新宿線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200703 (22007) 2200704", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200703 (22007) 2200704", "lat" : 35.776946871074955, "e_status_y" : 0, "line_name_h" : "西武新宿線" }, "selected" : false }, { "data" : { "id" : "15807", "source" : "5420", "target" : "5421", "line_name_k" : "セイブシンジュクセン", "is_bullet" : false, "lon" : 139.5308648735163, "company_name_k" : "セイブテツドウ", "zoom" : 11, "SUID" : 15807, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22007", "shared_interaction" : "22007", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武新宿線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200706 (22007) 2200707", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200706 (22007) 2200707", "lat" : 35.776946871074955, "e_status_y" : 0, "line_name_h" : "西武新宿線" }, "selected" : false }, { "data" : { "id" : "15806", "source" : "5419", "target" : "5420", "line_name_k" : "セイブシンジュクセン", "is_bullet" : false, "lon" : 139.5308648735163, "company_name_k" : "セイブテツドウ", "zoom" : 11, "SUID" : 15806, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22007", "shared_interaction" : "22007", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武新宿線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200705 (22007) 2200706", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200705 (22007) 2200706", "lat" : 35.776946871074955, "e_status_y" : 0, "line_name_h" : "西武新宿線" }, "selected" : false }, { "data" : { "id" : "15796", "source" : "5405", "target" : "5406", "line_name_k" : "セイブユウラクチョウセン", "is_bullet" : false, "lon" : 139.6675949841308, "company_name_k" : "セイブテツドウ", "zoom" : 14, "SUID" : 15796, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22003", "shared_interaction" : "22003", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武有楽町線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200302 (22003) 2200303", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200302 (22003) 2200303", "lat" : 35.74040400298963, "e_status_y" : 0, "line_name_h" : "西武有楽町線" }, "selected" : false }, { "data" : { "id" : "15797", "source" : "5407", "target" : "5408", "line_name_k" : "セイブトシマセン", "is_bullet" : false, "lon" : 139.65151682275393, "company_name_k" : "セイブテツドウ", "zoom" : 15, "SUID" : 15797, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22004", "shared_interaction" : "22004", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武豊島線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200401 (22004) 2200402", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200401 (22004) 2200402", "lat" : 35.740043166697504, "e_status_y" : 0, "line_name_h" : "西武豊島線" }, "selected" : false }, { "data" : { "id" : "15795", "source" : "5404", "target" : "5405", "line_name_k" : "セイブユウラクチョウセン", "is_bullet" : false, "lon" : 139.6675949841308, "company_name_k" : "セイブテツドウ", "zoom" : 14, "SUID" : 15795, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22003", "shared_interaction" : "22003", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武有楽町線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200301 (22003) 2200302", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200301 (22003) 2200302", "lat" : 35.74040400298963, "e_status_y" : 0, "line_name_h" : "西武有楽町線" }, "selected" : false }, { "data" : { "id" : "15840", "source" : "5456", "target" : "5457", "line_name_k" : "セイブコクブンジセン", "is_bullet" : false, "lon" : 139.46774104550786, "company_name_k" : "セイブテツドウ", "zoom" : 13, "SUID" : 15840, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22010", "shared_interaction" : "22010", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武国分寺線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2201003 (22010) 2201004", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2201003 (22010) 2201004", "lat" : 35.73062820396875, "e_status_y" : 0, "line_name_h" : "西武国分寺線" }, "selected" : false }, { "data" : { "id" : "15839", "source" : "5455", "target" : "5456", "line_name_k" : "セイブコクブンジセン", "is_bullet" : false, "lon" : 139.46774104550786, "company_name_k" : "セイブテツドウ", "zoom" : 13, "SUID" : 15839, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22010", "shared_interaction" : "22010", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武国分寺線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2201002 (22010) 2201003", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2201002 (22010) 2201003", "lat" : 35.73062820396875, "e_status_y" : 0, "line_name_h" : "西武国分寺線" }, "selected" : false }, { "data" : { "id" : "15838", "source" : "5454", "target" : "5455", "line_name_k" : "セイブコクブンジセン", "is_bullet" : false, "lon" : 139.46774104550786, "company_name_k" : "セイブテツドウ", "zoom" : 13, "SUID" : 15838, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22010", "shared_interaction" : "22010", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武国分寺線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2201001 (22010) 2201002", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2201001 (22010) 2201002", "lat" : 35.73062820396875, "e_status_y" : 0, "line_name_h" : "西武国分寺線" }, "selected" : false }, { "data" : { "id" : "15843", "source" : "5460", "target" : "5461", "line_name_k" : "セイブタマコセン", "is_bullet" : false, "lon" : 139.46850918519954, "company_name_k" : "セイブテツドウ", "zoom" : 13, "SUID" : 15843, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22011", "shared_interaction" : "22011", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武多摩湖線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2201102 (22011) 2201103", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2201102 (22011) 2201103", "lat" : 35.741048131945206, "e_status_y" : 0, "line_name_h" : "西武多摩湖線" }, "selected" : false }, { "data" : { "id" : "15842", "source" : "5459", "target" : "5460", "line_name_k" : "セイブタマコセン", "is_bullet" : false, "lon" : 139.46850918519954, "company_name_k" : "セイブテツドウ", "zoom" : 13, "SUID" : 15842, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22011", "shared_interaction" : "22011", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武多摩湖線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2201101 (22011) 2201102", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2201101 (22011) 2201102", "lat" : 35.741048131945206, "e_status_y" : 0, "line_name_h" : "西武多摩湖線" }, "selected" : false }, { "data" : { "id" : "15841", "source" : "5457", "target" : "5458", "line_name_k" : "セイブコクブンジセン", "is_bullet" : false, "lon" : 139.46774104550786, "company_name_k" : "セイブテツドウ", "zoom" : 13, "SUID" : 15841, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22010", "shared_interaction" : "22010", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武国分寺線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2201004 (22010) 2201005", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2201004 (22010) 2201005", "lat" : 35.73062820396875, "e_status_y" : 0, "line_name_h" : "西武国分寺線" }, "selected" : false }, { "data" : { "id" : "15834", "source" : "5448", "target" : "5449", "line_name_k" : "セイブハイジマセン", "is_bullet" : false, "lon" : 139.41313556738282, "company_name_k" : "セイブテツドウ", "zoom" : 12, "SUID" : 15834, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22008", "shared_interaction" : "22008", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武拝島線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200805 (22008) 2200806", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200805 (22008) 2200806", "lat" : 35.73286470476111, "e_status_y" : 0, "line_name_h" : "西武拝島線" }, "selected" : false }, { "data" : { "id" : "15833", "source" : "5447", "target" : "5448", "line_name_k" : "セイブハイジマセン", "is_bullet" : false, "lon" : 139.41313556738282, "company_name_k" : "セイブテツドウ", "zoom" : 12, "SUID" : 15833, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22008", "shared_interaction" : "22008", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武拝島線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200804 (22008) 2200805", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200804 (22008) 2200805", "lat" : 35.73286470476111, "e_status_y" : 0, "line_name_h" : "西武拝島線" }, "selected" : false }, { "data" : { "id" : "15832", "source" : "5446", "target" : "5447", "line_name_k" : "セイブハイジマセン", "is_bullet" : false, "lon" : 139.41313556738282, "company_name_k" : "セイブテツドウ", "zoom" : 12, "SUID" : 15832, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22008", "shared_interaction" : "22008", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武拝島線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200803 (22008) 2200804", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200803 (22008) 2200804", "lat" : 35.73286470476111, "e_status_y" : 0, "line_name_h" : "西武拝島線" }, "selected" : false }, { "data" : { "id" : "15831", "source" : "5445", "target" : "5446", "line_name_k" : "セイブハイジマセン", "is_bullet" : false, "lon" : 139.41313556738282, "company_name_k" : "セイブテツドウ", "zoom" : 12, "SUID" : 15831, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22008", "shared_interaction" : "22008", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武拝島線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200802 (22008) 2200803", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200802 (22008) 2200803", "lat" : 35.73286470476111, "e_status_y" : 0, "line_name_h" : "西武拝島線" }, "selected" : false }, { "data" : { "id" : "15837", "source" : "5452", "target" : "5453", "line_name_k" : "セイブセイブエンセン", "is_bullet" : false, "lon" : 139.45737150000002, "company_name_k" : "セイブテツドウ", "zoom" : 14, "SUID" : 15837, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22009", "shared_interaction" : "22009", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武西武園線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200901 (22009) 2200902", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200901 (22009) 2200902", "lat" : 35.764150582754176, "e_status_y" : 0, "line_name_h" : "西武西武園線" }, "selected" : false }, { "data" : { "id" : "15836", "source" : "5450", "target" : "5451", "line_name_k" : "セイブハイジマセン", "is_bullet" : false, "lon" : 139.41313556738282, "company_name_k" : "セイブテツドウ", "zoom" : 12, "SUID" : 15836, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22008", "shared_interaction" : "22008", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武拝島線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200807 (22008) 2200808", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200807 (22008) 2200808", "lat" : 35.73286470476111, "e_status_y" : 0, "line_name_h" : "西武拝島線" }, "selected" : false }, { "data" : { "id" : "15835", "source" : "5449", "target" : "5450", "line_name_k" : "セイブハイジマセン", "is_bullet" : false, "lon" : 139.41313556738282, "company_name_k" : "セイブテツドウ", "zoom" : 12, "SUID" : 15835, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22008", "shared_interaction" : "22008", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武拝島線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200806 (22008) 2200807", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200806 (22008) 2200807", "lat" : 35.73286470476111, "e_status_y" : 0, "line_name_h" : "西武拝島線" }, "selected" : false }, { "data" : { "id" : "15830", "source" : "5444", "target" : "5445", "line_name_k" : "セイブハイジマセン", "is_bullet" : false, "lon" : 139.41313556738282, "company_name_k" : "セイブテツドウ", "zoom" : 12, "SUID" : 15830, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22008", "shared_interaction" : "22008", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武拝島線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200801 (22008) 2200802", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200801 (22008) 2200802", "lat" : 35.73286470476111, "e_status_y" : 0, "line_name_h" : "西武拝島線" }, "selected" : false }, { "data" : { "id" : "15818", "source" : "5431", "target" : "5432", "line_name_k" : "セイブシンジュクセン", "is_bullet" : false, "lon" : 139.5308648735163, "company_name_k" : "セイブテツドウ", "zoom" : 11, "SUID" : 15818, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22007", "shared_interaction" : "22007", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武新宿線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200717 (22007) 2200718", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200717 (22007) 2200718", "lat" : 35.776946871074955, "e_status_y" : 0, "line_name_h" : "西武新宿線" }, "selected" : false }, { "data" : { "id" : "15819", "source" : "5432", "target" : "5433", "line_name_k" : "セイブシンジュクセン", "is_bullet" : false, "lon" : 139.5308648735163, "company_name_k" : "セイブテツドウ", "zoom" : 11, "SUID" : 15819, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22007", "shared_interaction" : "22007", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武新宿線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200718 (22007) 2200719", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200718 (22007) 2200719", "lat" : 35.776946871074955, "e_status_y" : 0, "line_name_h" : "西武新宿線" }, "selected" : false }, { "data" : { "id" : "15816", "source" : "5429", "target" : "5430", "line_name_k" : "セイブシンジュクセン", "is_bullet" : false, "lon" : 139.5308648735163, "company_name_k" : "セイブテツドウ", "zoom" : 11, "SUID" : 15816, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22007", "shared_interaction" : "22007", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武新宿線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200715 (22007) 2200716", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200715 (22007) 2200716", "lat" : 35.776946871074955, "e_status_y" : 0, "line_name_h" : "西武新宿線" }, "selected" : false }, { "data" : { "id" : "15817", "source" : "5430", "target" : "5431", "line_name_k" : "セイブシンジュクセン", "is_bullet" : false, "lon" : 139.5308648735163, "company_name_k" : "セイブテツドウ", "zoom" : 11, "SUID" : 15817, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22007", "shared_interaction" : "22007", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武新宿線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200716 (22007) 2200717", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200716 (22007) 2200717", "lat" : 35.776946871074955, "e_status_y" : 0, "line_name_h" : "西武新宿線" }, "selected" : false }, { "data" : { "id" : "15820", "source" : "5433", "target" : "5434", "line_name_k" : "セイブシンジュクセン", "is_bullet" : false, "lon" : 139.5308648735163, "company_name_k" : "セイブテツドウ", "zoom" : 11, "SUID" : 15820, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22007", "shared_interaction" : "22007", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武新宿線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200719 (22007) 2200720", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200719 (22007) 2200720", "lat" : 35.776946871074955, "e_status_y" : 0, "line_name_h" : "西武新宿線" }, "selected" : false }, { "data" : { "id" : "15821", "source" : "5434", "target" : "5435", "line_name_k" : "セイブシンジュクセン", "is_bullet" : false, "lon" : 139.5308648735163, "company_name_k" : "セイブテツドウ", "zoom" : 11, "SUID" : 15821, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22007", "shared_interaction" : "22007", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武新宿線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2200720 (22007) 2200721", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2200720 (22007) 2200721", "lat" : 35.776946871074955, "e_status_y" : 0, "line_name_h" : "西武新宿線" }, "selected" : false }, { "data" : { "id" : "15863", "source" : "5482", "target" : "5483", "line_name_k" : "ケイセイホンセン", "is_bullet" : false, "lon" : 140.07226251112684, "company_name_k" : "ケイセイデンテツ", "zoom" : 10, "SUID" : 15863, "company_type" : 2, "company_name_h" : "京成電鉄株式会社", "interaction" : "23001", "shared_interaction" : "23001", "company_url" : "http://www.keisei.co.jp/", "line_name" : "京成本線", "selected" : false, "company_name" : "京成電鉄", "company_cd" : 13, "name" : "2300111 (23001) 2300112", "rr_cd" : 23, "company_name_r" : "京成", "e_status_x" : 0, "shared_name" : "2300111 (23001) 2300112", "lat" : 35.726288869528844, "e_status_y" : 0, "line_name_h" : "京成本線" }, "selected" : false }, { "data" : { "id" : "15862", "source" : "5481", "target" : "5482", "line_name_k" : "ケイセイホンセン", "is_bullet" : false, "lon" : 140.07226251112684, "company_name_k" : "ケイセイデンテツ", "zoom" : 10, "SUID" : 15862, "company_type" : 2, "company_name_h" : "京成電鉄株式会社", "interaction" : "23001", "shared_interaction" : "23001", "company_url" : "http://www.keisei.co.jp/", "line_name" : "京成本線", "selected" : false, "company_name" : "京成電鉄", "company_cd" : 13, "name" : "2300110 (23001) 2300111", "rr_cd" : 23, "company_name_r" : "京成", "e_status_x" : 0, "shared_name" : "2300110 (23001) 2300111", "lat" : 35.726288869528844, "e_status_y" : 0, "line_name_h" : "京成本線" }, "selected" : false }, { "data" : { "id" : "15859", "source" : "5478", "target" : "5479", "line_name_k" : "ケイセイホンセン", "is_bullet" : false, "lon" : 140.07226251112684, "company_name_k" : "ケイセイデンテツ", "zoom" : 10, "SUID" : 15859, "company_type" : 2, "company_name_h" : "京成電鉄株式会社", "interaction" : "23001", "shared_interaction" : "23001", "company_url" : "http://www.keisei.co.jp/", "line_name" : "京成本線", "selected" : false, "company_name" : "京成電鉄", "company_cd" : 13, "name" : "2300107 (23001) 2300108", "rr_cd" : 23, "company_name_r" : "京成", "e_status_x" : 0, "shared_name" : "2300107 (23001) 2300108", "lat" : 35.726288869528844, "e_status_y" : 0, "line_name_h" : "京成本線" }, "selected" : false }, { "data" : { "id" : "15858", "source" : "5477", "target" : "5478", "line_name_k" : "ケイセイホンセン", "is_bullet" : false, "lon" : 140.07226251112684, "company_name_k" : "ケイセイデンテツ", "zoom" : 10, "SUID" : 15858, "company_type" : 2, "company_name_h" : "京成電鉄株式会社", "interaction" : "23001", "shared_interaction" : "23001", "company_url" : "http://www.keisei.co.jp/", "line_name" : "京成本線", "selected" : false, "company_name" : "京成電鉄", "company_cd" : 13, "name" : "2300106 (23001) 2300107", "rr_cd" : 23, "company_name_r" : "京成", "e_status_x" : 0, "shared_name" : "2300106 (23001) 2300107", "lat" : 35.726288869528844, "e_status_y" : 0, "line_name_h" : "京成本線" }, "selected" : false }, { "data" : { "id" : "15861", "source" : "5480", "target" : "5481", "line_name_k" : "ケイセイホンセン", "is_bullet" : false, "lon" : 140.07226251112684, "company_name_k" : "ケイセイデンテツ", "zoom" : 10, "SUID" : 15861, "company_type" : 2, "company_name_h" : "京成電鉄株式会社", "interaction" : "23001", "shared_interaction" : "23001", "company_url" : "http://www.keisei.co.jp/", "line_name" : "京成本線", "selected" : false, "company_name" : "京成電鉄", "company_cd" : 13, "name" : "2300109 (23001) 2300110", "rr_cd" : 23, "company_name_r" : "京成", "e_status_x" : 0, "shared_name" : "2300109 (23001) 2300110", "lat" : 35.726288869528844, "e_status_y" : 0, "line_name_h" : "京成本線" }, "selected" : false }, { "data" : { "id" : "15860", "source" : "5479", "target" : "5480", "line_name_k" : "ケイセイホンセン", "is_bullet" : false, "lon" : 140.07226251112684, "company_name_k" : "ケイセイデンテツ", "zoom" : 10, "SUID" : 15860, "company_type" : 2, "company_name_h" : "京成電鉄株式会社", "interaction" : "23001", "shared_interaction" : "23001", "company_url" : "http://www.keisei.co.jp/", "line_name" : "京成本線", "selected" : false, "company_name" : "京成電鉄", "company_cd" : 13, "name" : "2300108 (23001) 2300109", "rr_cd" : 23, "company_name_r" : "京成", "e_status_x" : 0, "shared_name" : "2300108 (23001) 2300109", "lat" : 35.726288869528844, "e_status_y" : 0, "line_name_h" : "京成本線" }, "selected" : false }, { "data" : { "id" : "15854", "source" : "5473", "target" : "5474", "line_name_k" : "ケイセイホンセン", "is_bullet" : false, "lon" : 140.07226251112684, "company_name_k" : "ケイセイデンテツ", "zoom" : 10, "SUID" : 15854, "company_type" : 2, "company_name_h" : "京成電鉄株式会社", "interaction" : "23001", "shared_interaction" : "23001", "company_url" : "http://www.keisei.co.jp/", "line_name" : "京成本線", "selected" : false, "company_name" : "京成電鉄", "company_cd" : 13, "name" : "2300102 (23001) 2300103", "rr_cd" : 23, "company_name_r" : "京成", "e_status_x" : 0, "shared_name" : "2300102 (23001) 2300103", "lat" : 35.726288869528844, "e_status_y" : 0, "line_name_h" : "京成本線" }, "selected" : false }, { "data" : { "id" : "15855", "source" : "5474", "target" : "5475", "line_name_k" : "ケイセイホンセン", "is_bullet" : false, "lon" : 140.07226251112684, "company_name_k" : "ケイセイデンテツ", "zoom" : 10, "SUID" : 15855, "company_type" : 2, "company_name_h" : "京成電鉄株式会社", "interaction" : "23001", "shared_interaction" : "23001", "company_url" : "http://www.keisei.co.jp/", "line_name" : "京成本線", "selected" : false, "company_name" : "京成電鉄", "company_cd" : 13, "name" : "2300103 (23001) 2300104", "rr_cd" : 23, "company_name_r" : "京成", "e_status_x" : 0, "shared_name" : "2300103 (23001) 2300104", "lat" : 35.726288869528844, "e_status_y" : 0, "line_name_h" : "京成本線" }, "selected" : false }, { "data" : { "id" : "15856", "source" : "5475", "target" : "5476", "line_name_k" : "ケイセイホンセン", "is_bullet" : false, "lon" : 140.07226251112684, "company_name_k" : "ケイセイデンテツ", "zoom" : 10, "SUID" : 15856, "company_type" : 2, "company_name_h" : "京成電鉄株式会社", "interaction" : "23001", "shared_interaction" : "23001", "company_url" : "http://www.keisei.co.jp/", "line_name" : "京成本線", "selected" : false, "company_name" : "京成電鉄", "company_cd" : 13, "name" : "2300104 (23001) 2300105", "rr_cd" : 23, "company_name_r" : "京成", "e_status_x" : 0, "shared_name" : "2300104 (23001) 2300105", "lat" : 35.726288869528844, "e_status_y" : 0, "line_name_h" : "京成本線" }, "selected" : false }, { "data" : { "id" : "15857", "source" : "5476", "target" : "5477", "line_name_k" : "ケイセイホンセン", "is_bullet" : false, "lon" : 140.07226251112684, "company_name_k" : "ケイセイデンテツ", "zoom" : 10, "SUID" : 15857, "company_type" : 2, "company_name_h" : "京成電鉄株式会社", "interaction" : "23001", "shared_interaction" : "23001", "company_url" : "http://www.keisei.co.jp/", "line_name" : "京成本線", "selected" : false, "company_name" : "京成電鉄", "company_cd" : 13, "name" : "2300105 (23001) 2300106", "rr_cd" : 23, "company_name_r" : "京成", "e_status_x" : 0, "shared_name" : "2300105 (23001) 2300106", "lat" : 35.726288869528844, "e_status_y" : 0, "line_name_h" : "京成本線" }, "selected" : false }, { "data" : { "id" : "15851", "source" : "5469", "target" : "5470", "line_name_k" : "セイブタマガワセン", "is_bullet" : false, "lon" : 139.51353168782222, "company_name_k" : "セイブテツドウ", "zoom" : 13, "SUID" : 15851, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22012", "shared_interaction" : "22012", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武多摩川線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2201204 (22012) 2201205", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2201204 (22012) 2201205", "lat" : 35.67702828078765, "e_status_y" : 0, "line_name_h" : "西武多摩川線" }, "selected" : false }, { "data" : { "id" : "15852", "source" : "5470", "target" : "5471", "line_name_k" : "セイブタマガワセン", "is_bullet" : false, "lon" : 139.51353168782222, "company_name_k" : "セイブテツドウ", "zoom" : 13, "SUID" : 15852, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22012", "shared_interaction" : "22012", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武多摩川線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2201205 (22012) 2201206", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2201205 (22012) 2201206", "lat" : 35.67702828078765, "e_status_y" : 0, "line_name_h" : "西武多摩川線" }, "selected" : false }, { "data" : { "id" : "15853", "source" : "5472", "target" : "5473", "line_name_k" : "ケイセイホンセン", "is_bullet" : false, "lon" : 140.07226251112684, "company_name_k" : "ケイセイデンテツ", "zoom" : 10, "SUID" : 15853, "company_type" : 2, "company_name_h" : "京成電鉄株式会社", "interaction" : "23001", "shared_interaction" : "23001", "company_url" : "http://www.keisei.co.jp/", "line_name" : "京成本線", "selected" : false, "company_name" : "京成電鉄", "company_cd" : 13, "name" : "2300101 (23001) 2300102", "rr_cd" : 23, "company_name_r" : "京成", "e_status_x" : 0, "shared_name" : "2300101 (23001) 2300102", "lat" : 35.726288869528844, "e_status_y" : 0, "line_name_h" : "京成本線" }, "selected" : false }, { "data" : { "id" : "15848", "source" : "5466", "target" : "5467", "line_name_k" : "セイブタマガワセン", "is_bullet" : false, "lon" : 139.51353168782222, "company_name_k" : "セイブテツドウ", "zoom" : 13, "SUID" : 15848, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22012", "shared_interaction" : "22012", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武多摩川線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2201201 (22012) 2201202", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2201201 (22012) 2201202", "lat" : 35.67702828078765, "e_status_y" : 0, "line_name_h" : "西武多摩川線" }, "selected" : false }, { "data" : { "id" : "15849", "source" : "5467", "target" : "5468", "line_name_k" : "セイブタマガワセン", "is_bullet" : false, "lon" : 139.51353168782222, "company_name_k" : "セイブテツドウ", "zoom" : 13, "SUID" : 15849, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22012", "shared_interaction" : "22012", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武多摩川線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2201202 (22012) 2201203", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2201202 (22012) 2201203", "lat" : 35.67702828078765, "e_status_y" : 0, "line_name_h" : "西武多摩川線" }, "selected" : false }, { "data" : { "id" : "15850", "source" : "5468", "target" : "5469", "line_name_k" : "セイブタマガワセン", "is_bullet" : false, "lon" : 139.51353168782222, "company_name_k" : "セイブテツドウ", "zoom" : 13, "SUID" : 15850, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22012", "shared_interaction" : "22012", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武多摩川線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2201203 (22012) 2201204", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2201203 (22012) 2201204", "lat" : 35.67702828078765, "e_status_y" : 0, "line_name_h" : "西武多摩川線" }, "selected" : false }, { "data" : { "id" : "15844", "source" : "5461", "target" : "5462", "line_name_k" : "セイブタマコセン", "is_bullet" : false, "lon" : 139.46850918519954, "company_name_k" : "セイブテツドウ", "zoom" : 13, "SUID" : 15844, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22011", "shared_interaction" : "22011", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武多摩湖線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2201103 (22011) 2201105", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2201103 (22011) 2201105", "lat" : 35.741048131945206, "e_status_y" : 0, "line_name_h" : "西武多摩湖線" }, "selected" : false }, { "data" : { "id" : "15845", "source" : "5462", "target" : "5463", "line_name_k" : "セイブタマコセン", "is_bullet" : false, "lon" : 139.46850918519954, "company_name_k" : "セイブテツドウ", "zoom" : 13, "SUID" : 15845, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22011", "shared_interaction" : "22011", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武多摩湖線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2201105 (22011) 2201106", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2201105 (22011) 2201106", "lat" : 35.741048131945206, "e_status_y" : 0, "line_name_h" : "西武多摩湖線" }, "selected" : false }, { "data" : { "id" : "15846", "source" : "5463", "target" : "5464", "line_name_k" : "セイブタマコセン", "is_bullet" : false, "lon" : 139.46850918519954, "company_name_k" : "セイブテツドウ", "zoom" : 13, "SUID" : 15846, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22011", "shared_interaction" : "22011", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武多摩湖線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2201106 (22011) 2201107", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2201106 (22011) 2201107", "lat" : 35.741048131945206, "e_status_y" : 0, "line_name_h" : "西武多摩湖線" }, "selected" : false }, { "data" : { "id" : "15847", "source" : "5464", "target" : "5465", "line_name_k" : "セイブタマコセン", "is_bullet" : false, "lon" : 139.46850918519954, "company_name_k" : "セイブテツドウ", "zoom" : 13, "SUID" : 15847, "company_type" : 2, "company_name_h" : "西武鉄道株式会社", "interaction" : "22011", "shared_interaction" : "22011", "company_url" : "http://www.seibu-group.co.jp/railways/", "line_name" : "西武多摩湖線", "selected" : false, "company_name" : "西武鉄道", "company_cd" : 12, "name" : "2201107 (22011) 2201108", "rr_cd" : 22, "company_name_r" : "西武", "e_status_x" : 0, "shared_name" : "2201107 (22011) 2201108", "lat" : 35.741048131945206, "e_status_y" : 0, "line_name_h" : "西武多摩湖線" }, "selected" : false }, { "data" : { "id" : "15902", "source" : "5523", "target" : "5524", "line_name_k" : "ケイセイカナマチセン", "is_bullet" : false, "lon" : 139.86858506876956, "company_name_k" : "ケイセイデンテツ", "zoom" : 14, "SUID" : 15902, "company_type" : 2, "company_name_h" : "京成電鉄株式会社", "interaction" : "23003", "shared_interaction" : "23003", "company_url" : "http://www.keisei.co.jp/", "line_name" : "京成金町線", "selected" : false, "company_name" : "京成電鉄", "company_cd" : 13, "name" : "2300302 (23003) 2300303", "rr_cd" : 23, "company_name_r" : "京成", "e_status_x" : 0, "shared_name" : "2300302 (23003) 2300303", "lat" : 35.76122200631621, "e_status_y" : 0, "line_name_h" : "京成金町線" }, "selected" : false }, { "data" : { "id" : "15901", "source" : "5522", "target" : "5523", "line_name_k" : "ケイセイカナマチセン", "is_bullet" : false, "lon" : 139.86858506876956, "company_name_k" : "ケイセイデンテツ", "zoom" : 14, "SUID" : 15901, "company_type" : 2, "company_name_h" : "京成電鉄株式会社", "interaction" : "23003", "shared_interaction" : "23003", "company_url" : "http://www.keisei.co.jp/", "line_name" : "京成金町線", "selected" : false, "company_name" : "京成電鉄", "company_cd" : 13, "name" : "2300301 (23003) 2300302", "rr_cd" : 23, "company_name_r" : "京成", "e_status_x" : 0, "shared_name" : "2300301 (23003) 2300302", "lat" : 35.76122200631621, "e_status_y" : 0, "line_name_h" : "京成金町線" }, "selected" : false }, { "data" : { "id" : "15900", "source" : "5520", "target" : "5521", "line_name_k" : "ケイセイオシアゲセン", "is_bullet" : false, "lon" : 139.84176579896905, "company_name_k" : "ケイセイデンテツ", "zoom" : 13, "SUID" : 15900, "company_type" : 2, "company_name_h" : "京成電鉄株式会社", "interaction" : "23002", "shared_interaction" : "23002", "company_url" : "http://www.keisei.co.jp/", "line_name" : "京成押上線", "selected" : false, "company_name" : "京成電鉄", "company_cd" : 13, "name" : "2300206 (23002) 2300207", "rr_cd" : 23, "company_name_r" : "京成", "e_status_x" : 0, "shared_name" : "2300206 (23002) 2300207", "lat" : 35.737000349715125, "e_status_y" : 0, "line_name_h" : "京成押上線" }, "selected" : false }, { "data" : { "id" : "15899", "source" : "5519", "target" : "5520", "line_name_k" : "ケイセイオシアゲセン", "is_bullet" : false, "lon" : 139.84176579896905, "company_name_k" : "ケイセイデンテツ", "zoom" : 13, "SUID" : 15899, "company_type" : 2, "company_name_h" : "京成電鉄株式会社", "interaction" : "23002", "shared_interaction" : "23002", "company_url" : "http://www.keisei.co.jp/", "line_name" : "京成押上線", "selected" : false, "company_name" : "京成電鉄", "company_cd" : 13, "name" : "2300205 (23002) 2300206", "rr_cd" : 23, "company_name_r" : "京成", "e_status_x" : 0, "shared_name" : "2300205 (23002) 2300206", "lat" : 35.737000349715125, "e_status_y" : 0, "line_name_h" : "京成押上線" }, "selected" : false }, { "data" : { "id" : "15898", "source" : "5518", "target" : "5519", "line_name_k" : "ケイセイオシアゲセン", "is_bullet" : false, "lon" : 139.84176579896905, "company_name_k" : "ケイセイデンテツ", "zoom" : 13, "SUID" : 15898, "company_type" : 2, "company_name_h" : "京成電鉄株式会社", "interaction" : "23002", "shared_interaction" : "23002", "company_url" : "http://www.keisei.co.jp/", "line_name" : "京成押上線", "selected" : false, "company_name" : "京成電鉄", "company_cd" : 13, "name" : "2300204 (23002) 2300205", "rr_cd" : 23, "company_name_r" : "京成", "e_status_x" : 0, "shared_name" : "2300204 (23002) 2300205", "lat" : 35.737000349715125, "e_status_y" : 0, "line_name_h" : "京成押上線" }, "selected" : false }, { "data" : { "id" : "15897", "source" : "5517", "target" : "5518", "line_name_k" : "ケイセイオシアゲセン", "is_bullet" : false, "lon" : 139.84176579896905, "company_name_k" : "ケイセイデンテツ", "zoom" : 13, "SUID" : 15897, "company_type" : 2, "company_name_h" : "京成電鉄株式会社", "interaction" : "23002", "shared_interaction" : "23002", "company_url" : "http://www.keisei.co.jp/", "line_name" : "京成押上線", "selected" : false, "company_name" : "京成電鉄", "company_cd" : 13, "name" : "2300203 (23002) 2300204", "rr_cd" : 23, "company_name_r" : "京成", "e_status_x" : 0, "shared_name" : "2300203 (23002) 2300204", "lat" : 35.737000349715125, "e_status_y" : 0, "line_name_h" : "京成押上線" }, "selected" : false }, { "data" : { "id" : "15896", "source" : "5516", "target" : "5517", "line_name_k" : "ケイセイオシアゲセン", "is_bullet" : false, "lon" : 139.84176579896905, "company_name_k" : "ケイセイデンテツ", "zoom" : 13, "SUID" : 15896, "company_type" : 2, "company_name_h" : "京成電鉄株式会社", "interaction" : "23002", "shared_interaction" : "23002", "company_url" : "http://www.keisei.co.jp/", "line_name" : "京成押上線", "selected" : false, "company_name" : "京成電鉄", "company_cd" : 13, "name" : "2300202 (23002) 2300203", "rr_cd" : 23, "company_name_r" : "京成", "e_status_x" : 0, "shared_name" : "2300202 (23002) 2300203", "lat" : 35.737000349715125, "e_status_y" : 0, "line_name_h" : "京成押上線" }, "selected" : false }, { "data" : { "id" : "15895", "source" : "5515", "target" : "5516", "line_name_k" : "ケイセイオシアゲセン", "is_bullet" : false, "lon" : 139.84176579896905, "company_name_k" : "ケイセイデンテツ", "zoom" : 13, "SUID" : 15895, "company_type" : 2, "company_name_h" : "京成電鉄株式会社", "interaction" : "23002", "shared_interaction" : "23002", "company_url" : "http://www.keisei.co.jp/", "line_name" : "京成押上線", "selected" : false, "company_name" : "京成電鉄", "company_cd" : 13, "name" : "2300201 (23002) 2300202", "rr_cd" : 23, "company_name_r" : "京成", "e_status_x" : 0, "shared_name" : "2300201 (23002) 2300202", "lat" : 35.737000349715125, "e_status_y" : 0, "line_name_h" : "京成押上線" }, "selected" : false }, { "data" : { "id" : "13204", "source" : "2702", "target" : "2674", "line_name_k" : "ヤマノテセン", "is_bullet" : false, "lon" : 139.73522275686264, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13204, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11302", "shared_interaction" : "11302", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR山手線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130229 (11302) 1130201", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130229 (11302) 1130201", "lat" : 35.693027307629926, "e_status_y" : 0, "line_name_h" : "JR山手線" }, "selected" : false }, { "data" : { "id" : "13203", "source" : "2701", "target" : "2702", "line_name_k" : "ヤマノテセン", "is_bullet" : false, "lon" : 139.73522275686264, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13203, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11302", "shared_interaction" : "11302", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR山手線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130228 (11302) 1130229", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130228 (11302) 1130229", "lat" : 35.693027307629926, "e_status_y" : 0, "line_name_h" : "JR山手線" }, "selected" : false }, { "data" : { "id" : "13196", "source" : "2694", "target" : "2695", "line_name_k" : "ヤマノテセン", "is_bullet" : false, "lon" : 139.73522275686264, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13196, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11302", "shared_interaction" : "11302", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR山手線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130221 (11302) 1130222", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130221 (11302) 1130222", "lat" : 35.693027307629926, "e_status_y" : 0, "line_name_h" : "JR山手線" }, "selected" : false }, { "data" : { "id" : "13195", "source" : "2693", "target" : "2694", "line_name_k" : "ヤマノテセン", "is_bullet" : false, "lon" : 139.73522275686264, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13195, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11302", "shared_interaction" : "11302", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR山手線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130220 (11302) 1130221", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130220 (11302) 1130221", "lat" : 35.693027307629926, "e_status_y" : 0, "line_name_h" : "JR山手線" }, "selected" : false }, { "data" : { "id" : "13198", "source" : "2696", "target" : "2697", "line_name_k" : "ヤマノテセン", "is_bullet" : false, "lon" : 139.73522275686264, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13198, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11302", "shared_interaction" : "11302", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR山手線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130223 (11302) 1130224", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130223 (11302) 1130224", "lat" : 35.693027307629926, "e_status_y" : 0, "line_name_h" : "JR山手線" }, "selected" : false }, { "data" : { "id" : "13197", "source" : "2695", "target" : "2696", "line_name_k" : "ヤマノテセン", "is_bullet" : false, "lon" : 139.73522275686264, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13197, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11302", "shared_interaction" : "11302", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR山手線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130222 (11302) 1130223", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130222 (11302) 1130223", "lat" : 35.693027307629926, "e_status_y" : 0, "line_name_h" : "JR山手線" }, "selected" : false }, { "data" : { "id" : "13200", "source" : "2698", "target" : "2699", "line_name_k" : "ヤマノテセン", "is_bullet" : false, "lon" : 139.73522275686264, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13200, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11302", "shared_interaction" : "11302", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR山手線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130225 (11302) 1130226", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130225 (11302) 1130226", "lat" : 35.693027307629926, "e_status_y" : 0, "line_name_h" : "JR山手線" }, "selected" : false }, { "data" : { "id" : "13199", "source" : "2697", "target" : "2698", "line_name_k" : "ヤマノテセン", "is_bullet" : false, "lon" : 139.73522275686264, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13199, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11302", "shared_interaction" : "11302", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR山手線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130224 (11302) 1130225", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130224 (11302) 1130225", "lat" : 35.693027307629926, "e_status_y" : 0, "line_name_h" : "JR山手線" }, "selected" : false }, { "data" : { "id" : "13202", "source" : "2700", "target" : "2701", "line_name_k" : "ヤマノテセン", "is_bullet" : false, "lon" : 139.73522275686264, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13202, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11302", "shared_interaction" : "11302", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR山手線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130227 (11302) 1130228", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130227 (11302) 1130228", "lat" : 35.693027307629926, "e_status_y" : 0, "line_name_h" : "JR山手線" }, "selected" : false }, { "data" : { "id" : "13201", "source" : "2699", "target" : "2700", "line_name_k" : "ヤマノテセン", "is_bullet" : false, "lon" : 139.73522275686264, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13201, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11302", "shared_interaction" : "11302", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR山手線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130226 (11302) 1130227", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130226 (11302) 1130227", "lat" : 35.693027307629926, "e_status_y" : 0, "line_name_h" : "JR山手線" }, "selected" : false }, { "data" : { "id" : "13187", "source" : "2685", "target" : "2686", "line_name_k" : "ヤマノテセン", "is_bullet" : false, "lon" : 139.73522275686264, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13187, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11302", "shared_interaction" : "11302", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR山手線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130212 (11302) 1130213", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130212 (11302) 1130213", "lat" : 35.693027307629926, "e_status_y" : 0, "line_name_h" : "JR山手線" }, "selected" : false }, { "data" : { "id" : "13188", "source" : "2686", "target" : "2687", "line_name_k" : "ヤマノテセン", "is_bullet" : false, "lon" : 139.73522275686264, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13188, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11302", "shared_interaction" : "11302", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR山手線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130213 (11302) 1130214", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130213 (11302) 1130214", "lat" : 35.693027307629926, "e_status_y" : 0, "line_name_h" : "JR山手線" }, "selected" : false }, { "data" : { "id" : "13189", "source" : "2687", "target" : "2688", "line_name_k" : "ヤマノテセン", "is_bullet" : false, "lon" : 139.73522275686264, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13189, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11302", "shared_interaction" : "11302", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR山手線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130214 (11302) 1130215", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130214 (11302) 1130215", "lat" : 35.693027307629926, "e_status_y" : 0, "line_name_h" : "JR山手線" }, "selected" : false }, { "data" : { "id" : "13190", "source" : "2688", "target" : "2689", "line_name_k" : "ヤマノテセン", "is_bullet" : false, "lon" : 139.73522275686264, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13190, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11302", "shared_interaction" : "11302", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR山手線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130215 (11302) 1130216", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130215 (11302) 1130216", "lat" : 35.693027307629926, "e_status_y" : 0, "line_name_h" : "JR山手線" }, "selected" : false }, { "data" : { "id" : "13191", "source" : "2689", "target" : "2690", "line_name_k" : "ヤマノテセン", "is_bullet" : false, "lon" : 139.73522275686264, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13191, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11302", "shared_interaction" : "11302", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR山手線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130216 (11302) 1130217", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130216 (11302) 1130217", "lat" : 35.693027307629926, "e_status_y" : 0, "line_name_h" : "JR山手線" }, "selected" : false }, { "data" : { "id" : "13192", "source" : "2690", "target" : "2691", "line_name_k" : "ヤマノテセン", "is_bullet" : false, "lon" : 139.73522275686264, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13192, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11302", "shared_interaction" : "11302", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR山手線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130217 (11302) 1130218", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130217 (11302) 1130218", "lat" : 35.693027307629926, "e_status_y" : 0, "line_name_h" : "JR山手線" }, "selected" : false }, { "data" : { "id" : "13193", "source" : "2691", "target" : "2692", "line_name_k" : "ヤマノテセン", "is_bullet" : false, "lon" : 139.73522275686264, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13193, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11302", "shared_interaction" : "11302", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR山手線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130218 (11302) 1130219", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130218 (11302) 1130219", "lat" : 35.693027307629926, "e_status_y" : 0, "line_name_h" : "JR山手線" }, "selected" : false }, { "data" : { "id" : "13194", "source" : "2692", "target" : "2693", "line_name_k" : "ヤマノテセン", "is_bullet" : false, "lon" : 139.73522275686264, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13194, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11302", "shared_interaction" : "11302", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR山手線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130219 (11302) 1130220", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130219 (11302) 1130220", "lat" : 35.693027307629926, "e_status_y" : 0, "line_name_h" : "JR山手線" }, "selected" : false }, { "data" : { "id" : "13179", "source" : "2677", "target" : "2678", "line_name_k" : "ヤマノテセン", "is_bullet" : false, "lon" : 139.73522275686264, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13179, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11302", "shared_interaction" : "11302", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR山手線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130204 (11302) 1130205", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130204 (11302) 1130205", "lat" : 35.693027307629926, "e_status_y" : 0, "line_name_h" : "JR山手線" }, "selected" : false }, { "data" : { "id" : "13180", "source" : "2678", "target" : "2679", "line_name_k" : "ヤマノテセン", "is_bullet" : false, "lon" : 139.73522275686264, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13180, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11302", "shared_interaction" : "11302", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR山手線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130205 (11302) 1130206", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130205 (11302) 1130206", "lat" : 35.693027307629926, "e_status_y" : 0, "line_name_h" : "JR山手線" }, "selected" : false }, { "data" : { "id" : "13181", "source" : "2679", "target" : "2680", "line_name_k" : "ヤマノテセン", "is_bullet" : false, "lon" : 139.73522275686264, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13181, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11302", "shared_interaction" : "11302", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR山手線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130206 (11302) 1130207", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130206 (11302) 1130207", "lat" : 35.693027307629926, "e_status_y" : 0, "line_name_h" : "JR山手線" }, "selected" : false }, { "data" : { "id" : "13182", "source" : "2680", "target" : "2681", "line_name_k" : "ヤマノテセン", "is_bullet" : false, "lon" : 139.73522275686264, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13182, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11302", "shared_interaction" : "11302", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR山手線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130207 (11302) 1130208", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130207 (11302) 1130208", "lat" : 35.693027307629926, "e_status_y" : 0, "line_name_h" : "JR山手線" }, "selected" : false }, { "data" : { "id" : "13183", "source" : "2681", "target" : "2682", "line_name_k" : "ヤマノテセン", "is_bullet" : false, "lon" : 139.73522275686264, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13183, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11302", "shared_interaction" : "11302", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR山手線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130208 (11302) 1130209", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130208 (11302) 1130209", "lat" : 35.693027307629926, "e_status_y" : 0, "line_name_h" : "JR山手線" }, "selected" : false }, { "data" : { "id" : "13184", "source" : "2682", "target" : "2683", "line_name_k" : "ヤマノテセン", "is_bullet" : false, "lon" : 139.73522275686264, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13184, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11302", "shared_interaction" : "11302", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR山手線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130209 (11302) 1130210", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130209 (11302) 1130210", "lat" : 35.693027307629926, "e_status_y" : 0, "line_name_h" : "JR山手線" }, "selected" : false }, { "data" : { "id" : "13185", "source" : "2683", "target" : "2684", "line_name_k" : "ヤマノテセン", "is_bullet" : false, "lon" : 139.73522275686264, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13185, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11302", "shared_interaction" : "11302", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR山手線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130210 (11302) 1130211", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130210 (11302) 1130211", "lat" : 35.693027307629926, "e_status_y" : 0, "line_name_h" : "JR山手線" }, "selected" : false }, { "data" : { "id" : "13186", "source" : "2684", "target" : "2685", "line_name_k" : "ヤマノテセン", "is_bullet" : false, "lon" : 139.73522275686264, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13186, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11302", "shared_interaction" : "11302", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR山手線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130211 (11302) 1130212", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130211 (11302) 1130212", "lat" : 35.693027307629926, "e_status_y" : 0, "line_name_h" : "JR山手線" }, "selected" : false }, { "data" : { "id" : "13178", "source" : "2676", "target" : "2677", "line_name_k" : "ヤマノテセン", "is_bullet" : false, "lon" : 139.73522275686264, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13178, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11302", "shared_interaction" : "11302", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR山手線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130203 (11302) 1130204", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130203 (11302) 1130204", "lat" : 35.693027307629926, "e_status_y" : 0, "line_name_h" : "JR山手線" }, "selected" : false }, { "data" : { "id" : "13177", "source" : "2675", "target" : "2676", "line_name_k" : "ヤマノテセン", "is_bullet" : false, "lon" : 139.73522275686264, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13177, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11302", "shared_interaction" : "11302", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR山手線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130202 (11302) 1130203", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130202 (11302) 1130203", "lat" : 35.693027307629926, "e_status_y" : 0, "line_name_h" : "JR山手線" }, "selected" : false }, { "data" : { "id" : "13176", "source" : "2674", "target" : "2675", "line_name_k" : "ヤマノテセン", "is_bullet" : false, "lon" : 139.73522275686264, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13176, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11302", "shared_interaction" : "11302", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR山手線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130201 (11302) 1130202", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130201 (11302) 1130202", "lat" : 35.693027307629926, "e_status_y" : 0, "line_name_h" : "JR山手線" }, "selected" : false }, { "data" : { "id" : "13156", "source" : "2653", "target" : "2654", "line_name_k" : "トウカイドウホンセン", "is_bullet" : false, "lon" : 139.43024413263132, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13156, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11301", "shared_interaction" : "11301", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR東海道本線(東京~熱海)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130101 (11301) 1130102", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130101 (11301) 1130102", "lat" : 35.39507962341528, "e_status_y" : 0, "line_name_h" : "JR東海道本線(東京~熱海)" }, "selected" : false }, { "data" : { "id" : "13157", "source" : "2654", "target" : "2655", "line_name_k" : "トウカイドウホンセン", "is_bullet" : false, "lon" : 139.43024413263132, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13157, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11301", "shared_interaction" : "11301", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR東海道本線(東京~熱海)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130102 (11301) 1130103", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130102 (11301) 1130103", "lat" : 35.39507962341528, "e_status_y" : 0, "line_name_h" : "JR東海道本線(東京~熱海)" }, "selected" : false }, { "data" : { "id" : "13246", "source" : "2746", "target" : "2747", "line_name_k" : "ムサシノセン", "is_bullet" : false, "lon" : 139.70511311944188, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13246, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11305", "shared_interaction" : "11305", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR武蔵野線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130502 (11305) 1130503", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130502 (11305) 1130503", "lat" : 35.802577076922994, "e_status_y" : 0, "line_name_h" : "JR武蔵野線" }, "selected" : false }, { "data" : { "id" : "13245", "source" : "2745", "target" : "2746", "line_name_k" : "ムサシノセン", "is_bullet" : false, "lon" : 139.70511311944188, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13245, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11305", "shared_interaction" : "11305", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR武蔵野線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130501 (11305) 1130502", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130501 (11305) 1130502", "lat" : 35.802577076922994, "e_status_y" : 0, "line_name_h" : "JR武蔵野線" }, "selected" : false }, { "data" : { "id" : "13248", "source" : "2748", "target" : "2749", "line_name_k" : "ムサシノセン", "is_bullet" : false, "lon" : 139.70511311944188, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13248, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11305", "shared_interaction" : "11305", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR武蔵野線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130504 (11305) 1130505", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130504 (11305) 1130505", "lat" : 35.802577076922994, "e_status_y" : 0, "line_name_h" : "JR武蔵野線" }, "selected" : false }, { "data" : { "id" : "13247", "source" : "2747", "target" : "2748", "line_name_k" : "ムサシノセン", "is_bullet" : false, "lon" : 139.70511311944188, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13247, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11305", "shared_interaction" : "11305", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR武蔵野線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130503 (11305) 1130504", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130503 (11305) 1130504", "lat" : 35.802577076922994, "e_status_y" : 0, "line_name_h" : "JR武蔵野線" }, "selected" : false }, { "data" : { "id" : "13230", "source" : "2727", "target" : "2728", "line_name_k" : "ナンブセン", "is_bullet" : false, "lon" : 139.5621831285025, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13230, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11303", "shared_interaction" : "11303", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR南武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130323 (11303) 1130324", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130323 (11303) 1130324", "lat" : 35.62126801796464, "e_status_y" : 0, "line_name_h" : "JR南武線" }, "selected" : false }, { "data" : { "id" : "13231", "source" : "2728", "target" : "2729", "line_name_k" : "ナンブセン", "is_bullet" : false, "lon" : 139.5621831285025, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13231, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11303", "shared_interaction" : "11303", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR南武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130324 (11303) 1130325", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130324 (11303) 1130325", "lat" : 35.62126801796464, "e_status_y" : 0, "line_name_h" : "JR南武線" }, "selected" : false }, { "data" : { "id" : "13228", "source" : "2725", "target" : "2726", "line_name_k" : "ナンブセン", "is_bullet" : false, "lon" : 139.5621831285025, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13228, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11303", "shared_interaction" : "11303", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR南武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130329 (11303) 1130322", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130329 (11303) 1130322", "lat" : 35.62126801796464, "e_status_y" : 0, "line_name_h" : "JR南武線" }, "selected" : false }, { "data" : { "id" : "13229", "source" : "2726", "target" : "2727", "line_name_k" : "ナンブセン", "is_bullet" : false, "lon" : 139.5621831285025, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13229, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11303", "shared_interaction" : "11303", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR南武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130322 (11303) 1130323", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130322 (11303) 1130323", "lat" : 35.62126801796464, "e_status_y" : 0, "line_name_h" : "JR南武線" }, "selected" : false }, { "data" : { "id" : "13227", "source" : "2724", "target" : "2725", "line_name_k" : "ナンブセン", "is_bullet" : false, "lon" : 139.5621831285025, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13227, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11303", "shared_interaction" : "11303", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR南武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130321 (11303) 1130329", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130321 (11303) 1130329", "lat" : 35.62126801796464, "e_status_y" : 0, "line_name_h" : "JR南武線" }, "selected" : false }, { "data" : { "id" : "13226", "source" : "2723", "target" : "2724", "line_name_k" : "ナンブセン", "is_bullet" : false, "lon" : 139.5621831285025, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13226, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11303", "shared_interaction" : "11303", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR南武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130320 (11303) 1130321", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130320 (11303) 1130321", "lat" : 35.62126801796464, "e_status_y" : 0, "line_name_h" : "JR南武線" }, "selected" : false }, { "data" : { "id" : "13225", "source" : "2722", "target" : "2723", "line_name_k" : "ナンブセン", "is_bullet" : false, "lon" : 139.5621831285025, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13225, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11303", "shared_interaction" : "11303", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR南武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130319 (11303) 1130320", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130319 (11303) 1130320", "lat" : 35.62126801796464, "e_status_y" : 0, "line_name_h" : "JR南武線" }, "selected" : false }, { "data" : { "id" : "13224", "source" : "2721", "target" : "2722", "line_name_k" : "ナンブセン", "is_bullet" : false, "lon" : 139.5621831285025, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13224, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11303", "shared_interaction" : "11303", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR南武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130318 (11303) 1130319", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130318 (11303) 1130319", "lat" : 35.62126801796464, "e_status_y" : 0, "line_name_h" : "JR南武線" }, "selected" : false }, { "data" : { "id" : "13223", "source" : "2720", "target" : "2721", "line_name_k" : "ナンブセン", "is_bullet" : false, "lon" : 139.5621831285025, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13223, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11303", "shared_interaction" : "11303", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR南武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130317 (11303) 1130318", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130317 (11303) 1130318", "lat" : 35.62126801796464, "e_status_y" : 0, "line_name_h" : "JR南武線" }, "selected" : false }, { "data" : { "id" : "13302", "source" : "2805", "target" : "2806", "line_name_k" : "ヨコスカセン", "is_bullet" : false, "lon" : 139.64761859128498, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13302, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11308", "shared_interaction" : "11308", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR横須賀線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130803 (11308) 1130804", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130803 (11308) 1130804", "lat" : 35.48340539219034, "e_status_y" : 0, "line_name_h" : "JR横須賀線" }, "selected" : false }, { "data" : { "id" : "13288", "source" : "2789", "target" : "2790", "line_name_k" : "ヨコハマセン", "is_bullet" : false, "lon" : 139.47111850000002, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13288, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11306", "shared_interaction" : "11306", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR横浜線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130619 (11306) 1130620", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130619 (11306) 1130620", "lat" : 35.56100410614944, "e_status_y" : 0, "line_name_h" : "JR横浜線" }, "selected" : false }, { "data" : { "id" : "13300", "source" : "2803", "target" : "2804", "line_name_k" : "ヨコスカセン", "is_bullet" : false, "lon" : 139.64761859128498, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13300, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11308", "shared_interaction" : "11308", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR横須賀線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130801 (11308) 1130802", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130801 (11308) 1130802", "lat" : 35.48340539219034, "e_status_y" : 0, "line_name_h" : "JR横須賀線" }, "selected" : false }, { "data" : { "id" : "13301", "source" : "2804", "target" : "2805", "line_name_k" : "ヨコスカセン", "is_bullet" : false, "lon" : 139.64761859128498, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13301, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11308", "shared_interaction" : "11308", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR横須賀線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130802 (11308) 1130803", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130802 (11308) 1130803", "lat" : 35.48340539219034, "e_status_y" : 0, "line_name_h" : "JR横須賀線" }, "selected" : false }, { "data" : { "id" : "13279", "source" : "2780", "target" : "2781", "line_name_k" : "ヨコハマセン", "is_bullet" : false, "lon" : 139.47111850000002, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13279, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11306", "shared_interaction" : "11306", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR横浜線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130610 (11306) 1130611", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130610 (11306) 1130611", "lat" : 35.56100410614944, "e_status_y" : 0, "line_name_h" : "JR横浜線" }, "selected" : false }, { "data" : { "id" : "13287", "source" : "2788", "target" : "2789", "line_name_k" : "ヨコハマセン", "is_bullet" : false, "lon" : 139.47111850000002, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13287, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11306", "shared_interaction" : "11306", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR横浜線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130618 (11306) 1130619", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130618 (11306) 1130619", "lat" : 35.56100410614944, "e_status_y" : 0, "line_name_h" : "JR横浜線" }, "selected" : false }, { "data" : { "id" : "13286", "source" : "2787", "target" : "2788", "line_name_k" : "ヨコハマセン", "is_bullet" : false, "lon" : 139.47111850000002, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13286, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11306", "shared_interaction" : "11306", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR横浜線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1130617 (11306) 1130618", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1130617 (11306) 1130618", "lat" : 35.56100410614944, "e_status_y" : 0, "line_name_h" : "JR横浜線" }, "selected" : false }, { "data" : { "id" : "13395", "source" : "2900", "target" : "2901", "line_name_k" : "チュウオウセン", "is_bullet" : false, "lon" : 139.53798847265622, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13395, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11312", "shared_interaction" : "11312", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央線(快速)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131216 (11312) 1131217", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131216 (11312) 1131217", "lat" : 35.700170421148705, "e_status_y" : 0, "line_name_h" : "JR中央線(快速)" }, "selected" : false }, { "data" : { "id" : "13394", "source" : "2899", "target" : "2900", "line_name_k" : "チュウオウセン", "is_bullet" : false, "lon" : 139.53798847265622, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13394, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11312", "shared_interaction" : "11312", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央線(快速)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131215 (11312) 1131216", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131215 (11312) 1131216", "lat" : 35.700170421148705, "e_status_y" : 0, "line_name_h" : "JR中央線(快速)" }, "selected" : false }, { "data" : { "id" : "13393", "source" : "2898", "target" : "2899", "line_name_k" : "チュウオウセン", "is_bullet" : false, "lon" : 139.53798847265622, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13393, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11312", "shared_interaction" : "11312", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央線(快速)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131214 (11312) 1131215", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131214 (11312) 1131215", "lat" : 35.700170421148705, "e_status_y" : 0, "line_name_h" : "JR中央線(快速)" }, "selected" : false }, { "data" : { "id" : "13392", "source" : "2897", "target" : "2898", "line_name_k" : "チュウオウセン", "is_bullet" : false, "lon" : 139.53798847265622, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13392, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11312", "shared_interaction" : "11312", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央線(快速)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131211 (11312) 1131214", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131211 (11312) 1131214", "lat" : 35.700170421148705, "e_status_y" : 0, "line_name_h" : "JR中央線(快速)" }, "selected" : false }, { "data" : { "id" : "13391", "source" : "2896", "target" : "2897", "line_name_k" : "チュウオウセン", "is_bullet" : false, "lon" : 139.53798847265622, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13391, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11312", "shared_interaction" : "11312", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央線(快速)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131207 (11312) 1131211", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131207 (11312) 1131211", "lat" : 35.700170421148705, "e_status_y" : 0, "line_name_h" : "JR中央線(快速)" }, "selected" : false }, { "data" : { "id" : "13390", "source" : "2895", "target" : "2896", "line_name_k" : "チュウオウセン", "is_bullet" : false, "lon" : 139.53798847265622, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13390, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11312", "shared_interaction" : "11312", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央線(快速)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131203 (11312) 1131207", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131203 (11312) 1131207", "lat" : 35.700170421148705, "e_status_y" : 0, "line_name_h" : "JR中央線(快速)" }, "selected" : false }, { "data" : { "id" : "13389", "source" : "2894", "target" : "2895", "line_name_k" : "チュウオウセン", "is_bullet" : false, "lon" : 139.53798847265622, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13389, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11312", "shared_interaction" : "11312", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央線(快速)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131202 (11312) 1131203", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131202 (11312) 1131203", "lat" : 35.700170421148705, "e_status_y" : 0, "line_name_h" : "JR中央線(快速)" }, "selected" : false }, { "data" : { "id" : "13388", "source" : "2893", "target" : "2894", "line_name_k" : "チュウオウセン", "is_bullet" : false, "lon" : 139.53798847265622, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13388, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11312", "shared_interaction" : "11312", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央線(快速)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131201 (11312) 1131202", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131201 (11312) 1131202", "lat" : 35.700170421148705, "e_status_y" : 0, "line_name_h" : "JR中央線(快速)" }, "selected" : false }, { "data" : { "id" : "13344", "source" : "2849", "target" : "2850", "line_name_k" : "チュウオウホンセン", "is_bullet" : false, "lon" : 138.61735796977746, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 9, "SUID" : 13344, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11311", "shared_interaction" : "11311", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央本線(東京~塩尻)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131110 (11311) 1131111", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131110 (11311) 1131111", "lat" : 35.770367336599776, "e_status_y" : 0, "line_name_h" : "JR中央本線(東京~塩尻)" }, "selected" : false }, { "data" : { "id" : "13345", "source" : "2850", "target" : "2851", "line_name_k" : "チュウオウホンセン", "is_bullet" : false, "lon" : 138.61735796977746, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 9, "SUID" : 13345, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11311", "shared_interaction" : "11311", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央本線(東京~塩尻)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131111 (11311) 1131112", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131111 (11311) 1131112", "lat" : 35.770367336599776, "e_status_y" : 0, "line_name_h" : "JR中央本線(東京~塩尻)" }, "selected" : false }, { "data" : { "id" : "13340", "source" : "2845", "target" : "2846", "line_name_k" : "チュウオウホンセン", "is_bullet" : false, "lon" : 138.61735796977746, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 9, "SUID" : 13340, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11311", "shared_interaction" : "11311", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央本線(東京~塩尻)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131106 (11311) 1131107", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131106 (11311) 1131107", "lat" : 35.770367336599776, "e_status_y" : 0, "line_name_h" : "JR中央本線(東京~塩尻)" }, "selected" : false }, { "data" : { "id" : "13341", "source" : "2846", "target" : "2847", "line_name_k" : "チュウオウホンセン", "is_bullet" : false, "lon" : 138.61735796977746, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 9, "SUID" : 13341, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11311", "shared_interaction" : "11311", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央本線(東京~塩尻)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131107 (11311) 1131108", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131107 (11311) 1131108", "lat" : 35.770367336599776, "e_status_y" : 0, "line_name_h" : "JR中央本線(東京~塩尻)" }, "selected" : false }, { "data" : { "id" : "13342", "source" : "2847", "target" : "2848", "line_name_k" : "チュウオウホンセン", "is_bullet" : false, "lon" : 138.61735796977746, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 9, "SUID" : 13342, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11311", "shared_interaction" : "11311", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央本線(東京~塩尻)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131108 (11311) 1131109", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131108 (11311) 1131109", "lat" : 35.770367336599776, "e_status_y" : 0, "line_name_h" : "JR中央本線(東京~塩尻)" }, "selected" : false }, { "data" : { "id" : "13343", "source" : "2848", "target" : "2849", "line_name_k" : "チュウオウホンセン", "is_bullet" : false, "lon" : 138.61735796977746, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 9, "SUID" : 13343, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11311", "shared_interaction" : "11311", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央本線(東京~塩尻)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131109 (11311) 1131110", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131109 (11311) 1131110", "lat" : 35.770367336599776, "e_status_y" : 0, "line_name_h" : "JR中央本線(東京~塩尻)" }, "selected" : false }, { "data" : { "id" : "13336", "source" : "2841", "target" : "2842", "line_name_k" : "チュウオウホンセン", "is_bullet" : false, "lon" : 138.61735796977746, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 9, "SUID" : 13336, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11311", "shared_interaction" : "11311", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央本線(東京~塩尻)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131102 (11311) 1131103", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131102 (11311) 1131103", "lat" : 35.770367336599776, "e_status_y" : 0, "line_name_h" : "JR中央本線(東京~塩尻)" }, "selected" : false }, { "data" : { "id" : "13337", "source" : "2842", "target" : "2843", "line_name_k" : "チュウオウホンセン", "is_bullet" : false, "lon" : 138.61735796977746, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 9, "SUID" : 13337, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11311", "shared_interaction" : "11311", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央本線(東京~塩尻)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131103 (11311) 1131104", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131103 (11311) 1131104", "lat" : 35.770367336599776, "e_status_y" : 0, "line_name_h" : "JR中央本線(東京~塩尻)" }, "selected" : false }, { "data" : { "id" : "13338", "source" : "2843", "target" : "2844", "line_name_k" : "チュウオウホンセン", "is_bullet" : false, "lon" : 138.61735796977746, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 9, "SUID" : 13338, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11311", "shared_interaction" : "11311", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央本線(東京~塩尻)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131104 (11311) 1131105", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131104 (11311) 1131105", "lat" : 35.770367336599776, "e_status_y" : 0, "line_name_h" : "JR中央本線(東京~塩尻)" }, "selected" : false }, { "data" : { "id" : "13339", "source" : "2844", "target" : "2845", "line_name_k" : "チュウオウホンセン", "is_bullet" : false, "lon" : 138.61735796977746, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 9, "SUID" : 13339, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11311", "shared_interaction" : "11311", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央本線(東京~塩尻)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131105 (11311) 1131106", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131105 (11311) 1131106", "lat" : 35.770367336599776, "e_status_y" : 0, "line_name_h" : "JR中央本線(東京~塩尻)" }, "selected" : false }, { "data" : { "id" : "13335", "source" : "2840", "target" : "2841", "line_name_k" : "チュウオウホンセン", "is_bullet" : false, "lon" : 138.61735796977746, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 9, "SUID" : 13335, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11311", "shared_interaction" : "11311", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央本線(東京~塩尻)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131101 (11311) 1131102", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131101 (11311) 1131102", "lat" : 35.770367336599776, "e_status_y" : 0, "line_name_h" : "JR中央本線(東京~塩尻)" }, "selected" : false }, { "data" : { "id" : "13435", "source" : "2941", "target" : "2942", "line_name_k" : "チュウオウ・ソウブセン", "is_bullet" : false, "lon" : 139.83715522681192, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13435, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11313", "shared_interaction" : "11313", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央・総武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131325 (11313) 1131326", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131325 (11313) 1131326", "lat" : 35.701641362335245, "e_status_y" : 0, "line_name_h" : "JR中央・総武緩行線" }, "selected" : false }, { "data" : { "id" : "13429", "source" : "2935", "target" : "2936", "line_name_k" : "チュウオウ・ソウブセン", "is_bullet" : false, "lon" : 139.83715522681192, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13429, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11313", "shared_interaction" : "11313", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央・総武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131319 (11313) 1131320", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131319 (11313) 1131320", "lat" : 35.701641362335245, "e_status_y" : 0, "line_name_h" : "JR中央・総武緩行線" }, "selected" : false }, { "data" : { "id" : "13430", "source" : "2936", "target" : "2937", "line_name_k" : "チュウオウ・ソウブセン", "is_bullet" : false, "lon" : 139.83715522681192, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13430, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11313", "shared_interaction" : "11313", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央・総武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131320 (11313) 1131321", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131320 (11313) 1131321", "lat" : 35.701641362335245, "e_status_y" : 0, "line_name_h" : "JR中央・総武緩行線" }, "selected" : false }, { "data" : { "id" : "13427", "source" : "2933", "target" : "2934", "line_name_k" : "チュウオウ・ソウブセン", "is_bullet" : false, "lon" : 139.83715522681192, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13427, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11313", "shared_interaction" : "11313", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央・総武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131317 (11313) 1131318", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131317 (11313) 1131318", "lat" : 35.701641362335245, "e_status_y" : 0, "line_name_h" : "JR中央・総武緩行線" }, "selected" : false }, { "data" : { "id" : "13428", "source" : "2934", "target" : "2935", "line_name_k" : "チュウオウ・ソウブセン", "is_bullet" : false, "lon" : 139.83715522681192, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13428, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11313", "shared_interaction" : "11313", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央・総武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131318 (11313) 1131319", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131318 (11313) 1131319", "lat" : 35.701641362335245, "e_status_y" : 0, "line_name_h" : "JR中央・総武緩行線" }, "selected" : false }, { "data" : { "id" : "13433", "source" : "2939", "target" : "2940", "line_name_k" : "チュウオウ・ソウブセン", "is_bullet" : false, "lon" : 139.83715522681192, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13433, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11313", "shared_interaction" : "11313", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央・総武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131323 (11313) 1131324", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131323 (11313) 1131324", "lat" : 35.701641362335245, "e_status_y" : 0, "line_name_h" : "JR中央・総武緩行線" }, "selected" : false }, { "data" : { "id" : "13434", "source" : "2940", "target" : "2941", "line_name_k" : "チュウオウ・ソウブセン", "is_bullet" : false, "lon" : 139.83715522681192, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13434, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11313", "shared_interaction" : "11313", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央・総武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131324 (11313) 1131325", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131324 (11313) 1131325", "lat" : 35.701641362335245, "e_status_y" : 0, "line_name_h" : "JR中央・総武緩行線" }, "selected" : false }, { "data" : { "id" : "13431", "source" : "2937", "target" : "2938", "line_name_k" : "チュウオウ・ソウブセン", "is_bullet" : false, "lon" : 139.83715522681192, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13431, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11313", "shared_interaction" : "11313", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央・総武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131321 (11313) 1131322", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131321 (11313) 1131322", "lat" : 35.701641362335245, "e_status_y" : 0, "line_name_h" : "JR中央・総武緩行線" }, "selected" : false }, { "data" : { "id" : "13432", "source" : "2938", "target" : "2939", "line_name_k" : "チュウオウ・ソウブセン", "is_bullet" : false, "lon" : 139.83715522681192, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13432, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11313", "shared_interaction" : "11313", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央・総武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131322 (11313) 1131323", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131322 (11313) 1131323", "lat" : 35.701641362335245, "e_status_y" : 0, "line_name_h" : "JR中央・総武緩行線" }, "selected" : false }, { "data" : { "id" : "13452", "source" : "2959", "target" : "2960", "line_name_k" : "ソウブホンセン", "is_bullet" : false, "lon" : 140.25466124558875, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 9, "SUID" : 13452, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11314", "shared_interaction" : "11314", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR総武本線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131404 (11314) 1131405", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131404 (11314) 1131405", "lat" : 35.68790263001846, "e_status_y" : 0, "line_name_h" : "JR総武本線" }, "selected" : false }, { "data" : { "id" : "13451", "source" : "2958", "target" : "2959", "line_name_k" : "ソウブホンセン", "is_bullet" : false, "lon" : 140.25466124558875, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 9, "SUID" : 13451, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11314", "shared_interaction" : "11314", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR総武本線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131403 (11314) 1131404", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131403 (11314) 1131404", "lat" : 35.68790263001846, "e_status_y" : 0, "line_name_h" : "JR総武本線" }, "selected" : false }, { "data" : { "id" : "13450", "source" : "2957", "target" : "2958", "line_name_k" : "ソウブホンセン", "is_bullet" : false, "lon" : 140.25466124558875, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 9, "SUID" : 13450, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11314", "shared_interaction" : "11314", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR総武本線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131402 (11314) 1131403", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131402 (11314) 1131403", "lat" : 35.68790263001846, "e_status_y" : 0, "line_name_h" : "JR総武本線" }, "selected" : false }, { "data" : { "id" : "13449", "source" : "2956", "target" : "2957", "line_name_k" : "ソウブホンセン", "is_bullet" : false, "lon" : 140.25466124558875, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 9, "SUID" : 13449, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11314", "shared_interaction" : "11314", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR総武本線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131401 (11314) 1131402", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131401 (11314) 1131402", "lat" : 35.68790263001846, "e_status_y" : 0, "line_name_h" : "JR総武本線" }, "selected" : false }, { "data" : { "id" : "13404", "source" : "2909", "target" : "2910", "line_name_k" : "チュウオウセン", "is_bullet" : false, "lon" : 139.53798847265622, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13404, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11312", "shared_interaction" : "11312", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央線(快速)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131225 (11312) 1131226", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131225 (11312) 1131226", "lat" : 35.700170421148705, "e_status_y" : 0, "line_name_h" : "JR中央線(快速)" }, "selected" : false }, { "data" : { "id" : "13405", "source" : "2910", "target" : "2911", "line_name_k" : "チュウオウセン", "is_bullet" : false, "lon" : 139.53798847265622, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13405, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11312", "shared_interaction" : "11312", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央線(快速)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131226 (11312) 1131227", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131226 (11312) 1131227", "lat" : 35.700170421148705, "e_status_y" : 0, "line_name_h" : "JR中央線(快速)" }, "selected" : false }, { "data" : { "id" : "13406", "source" : "2911", "target" : "2912", "line_name_k" : "チュウオウセン", "is_bullet" : false, "lon" : 139.53798847265622, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13406, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11312", "shared_interaction" : "11312", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央線(快速)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131227 (11312) 1131228", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131227 (11312) 1131228", "lat" : 35.700170421148705, "e_status_y" : 0, "line_name_h" : "JR中央線(快速)" }, "selected" : false }, { "data" : { "id" : "13407", "source" : "2912", "target" : "2913", "line_name_k" : "チュウオウセン", "is_bullet" : false, "lon" : 139.53798847265622, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13407, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11312", "shared_interaction" : "11312", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央線(快速)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131228 (11312) 1131229", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131228 (11312) 1131229", "lat" : 35.700170421148705, "e_status_y" : 0, "line_name_h" : "JR中央線(快速)" }, "selected" : false }, { "data" : { "id" : "13408", "source" : "2913", "target" : "2914", "line_name_k" : "チュウオウセン", "is_bullet" : false, "lon" : 139.53798847265622, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13408, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11312", "shared_interaction" : "11312", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央線(快速)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131229 (11312) 1131230", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131229 (11312) 1131230", "lat" : 35.700170421148705, "e_status_y" : 0, "line_name_h" : "JR中央線(快速)" }, "selected" : false }, { "data" : { "id" : "13409", "source" : "2914", "target" : "2915", "line_name_k" : "チュウオウセン", "is_bullet" : false, "lon" : 139.53798847265622, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13409, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11312", "shared_interaction" : "11312", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央線(快速)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131230 (11312) 1131231", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131230 (11312) 1131231", "lat" : 35.700170421148705, "e_status_y" : 0, "line_name_h" : "JR中央線(快速)" }, "selected" : false }, { "data" : { "id" : "13410", "source" : "2915", "target" : "2916", "line_name_k" : "チュウオウセン", "is_bullet" : false, "lon" : 139.53798847265622, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13410, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11312", "shared_interaction" : "11312", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央線(快速)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131231 (11312) 1131232", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131231 (11312) 1131232", "lat" : 35.700170421148705, "e_status_y" : 0, "line_name_h" : "JR中央線(快速)" }, "selected" : false }, { "data" : { "id" : "13396", "source" : "2901", "target" : "2902", "line_name_k" : "チュウオウセン", "is_bullet" : false, "lon" : 139.53798847265622, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13396, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11312", "shared_interaction" : "11312", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央線(快速)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131217 (11312) 1131218", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131217 (11312) 1131218", "lat" : 35.700170421148705, "e_status_y" : 0, "line_name_h" : "JR中央線(快速)" }, "selected" : false }, { "data" : { "id" : "13397", "source" : "2902", "target" : "2903", "line_name_k" : "チュウオウセン", "is_bullet" : false, "lon" : 139.53798847265622, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13397, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11312", "shared_interaction" : "11312", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央線(快速)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131218 (11312) 1131219", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131218 (11312) 1131219", "lat" : 35.700170421148705, "e_status_y" : 0, "line_name_h" : "JR中央線(快速)" }, "selected" : false }, { "data" : { "id" : "13398", "source" : "2903", "target" : "2904", "line_name_k" : "チュウオウセン", "is_bullet" : false, "lon" : 139.53798847265622, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13398, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11312", "shared_interaction" : "11312", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央線(快速)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131219 (11312) 1131220", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131219 (11312) 1131220", "lat" : 35.700170421148705, "e_status_y" : 0, "line_name_h" : "JR中央線(快速)" }, "selected" : false }, { "data" : { "id" : "13399", "source" : "2904", "target" : "2905", "line_name_k" : "チュウオウセン", "is_bullet" : false, "lon" : 139.53798847265622, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13399, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11312", "shared_interaction" : "11312", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央線(快速)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131220 (11312) 1131221", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131220 (11312) 1131221", "lat" : 35.700170421148705, "e_status_y" : 0, "line_name_h" : "JR中央線(快速)" }, "selected" : false }, { "data" : { "id" : "13400", "source" : "2905", "target" : "2906", "line_name_k" : "チュウオウセン", "is_bullet" : false, "lon" : 139.53798847265622, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13400, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11312", "shared_interaction" : "11312", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央線(快速)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131221 (11312) 1131222", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131221 (11312) 1131222", "lat" : 35.700170421148705, "e_status_y" : 0, "line_name_h" : "JR中央線(快速)" }, "selected" : false }, { "data" : { "id" : "13401", "source" : "2906", "target" : "2907", "line_name_k" : "チュウオウセン", "is_bullet" : false, "lon" : 139.53798847265622, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13401, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11312", "shared_interaction" : "11312", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央線(快速)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131222 (11312) 1131223", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131222 (11312) 1131223", "lat" : 35.700170421148705, "e_status_y" : 0, "line_name_h" : "JR中央線(快速)" }, "selected" : false }, { "data" : { "id" : "13402", "source" : "2907", "target" : "2908", "line_name_k" : "チュウオウセン", "is_bullet" : false, "lon" : 139.53798847265622, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13402, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11312", "shared_interaction" : "11312", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央線(快速)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131223 (11312) 1131224", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131223 (11312) 1131224", "lat" : 35.700170421148705, "e_status_y" : 0, "line_name_h" : "JR中央線(快速)" }, "selected" : false }, { "data" : { "id" : "13403", "source" : "2908", "target" : "2909", "line_name_k" : "チュウオウセン", "is_bullet" : false, "lon" : 139.53798847265622, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13403, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11312", "shared_interaction" : "11312", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央線(快速)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131224 (11312) 1131225", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131224 (11312) 1131225", "lat" : 35.700170421148705, "e_status_y" : 0, "line_name_h" : "JR中央線(快速)" }, "selected" : false }, { "data" : { "id" : "13420", "source" : "2926", "target" : "2927", "line_name_k" : "チュウオウ・ソウブセン", "is_bullet" : false, "lon" : 139.83715522681192, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13420, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11313", "shared_interaction" : "11313", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央・総武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131310 (11313) 1131311", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131310 (11313) 1131311", "lat" : 35.701641362335245, "e_status_y" : 0, "line_name_h" : "JR中央・総武緩行線" }, "selected" : false }, { "data" : { "id" : "13419", "source" : "2925", "target" : "2926", "line_name_k" : "チュウオウ・ソウブセン", "is_bullet" : false, "lon" : 139.83715522681192, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13419, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11313", "shared_interaction" : "11313", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央・総武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131309 (11313) 1131310", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131309 (11313) 1131310", "lat" : 35.701641362335245, "e_status_y" : 0, "line_name_h" : "JR中央・総武緩行線" }, "selected" : false }, { "data" : { "id" : "13422", "source" : "2928", "target" : "2929", "line_name_k" : "チュウオウ・ソウブセン", "is_bullet" : false, "lon" : 139.83715522681192, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13422, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11313", "shared_interaction" : "11313", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央・総武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131312 (11313) 1131313", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131312 (11313) 1131313", "lat" : 35.701641362335245, "e_status_y" : 0, "line_name_h" : "JR中央・総武緩行線" }, "selected" : false }, { "data" : { "id" : "13421", "source" : "2927", "target" : "2928", "line_name_k" : "チュウオウ・ソウブセン", "is_bullet" : false, "lon" : 139.83715522681192, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13421, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11313", "shared_interaction" : "11313", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央・総武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131311 (11313) 1131312", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131311 (11313) 1131312", "lat" : 35.701641362335245, "e_status_y" : 0, "line_name_h" : "JR中央・総武緩行線" }, "selected" : false }, { "data" : { "id" : "13424", "source" : "2930", "target" : "2931", "line_name_k" : "チュウオウ・ソウブセン", "is_bullet" : false, "lon" : 139.83715522681192, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13424, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11313", "shared_interaction" : "11313", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央・総武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131314 (11313) 1131315", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131314 (11313) 1131315", "lat" : 35.701641362335245, "e_status_y" : 0, "line_name_h" : "JR中央・総武緩行線" }, "selected" : false }, { "data" : { "id" : "13423", "source" : "2929", "target" : "2930", "line_name_k" : "チュウオウ・ソウブセン", "is_bullet" : false, "lon" : 139.83715522681192, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13423, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11313", "shared_interaction" : "11313", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央・総武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131313 (11313) 1131314", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131313 (11313) 1131314", "lat" : 35.701641362335245, "e_status_y" : 0, "line_name_h" : "JR中央・総武緩行線" }, "selected" : false }, { "data" : { "id" : "13426", "source" : "2932", "target" : "2933", "line_name_k" : "チュウオウ・ソウブセン", "is_bullet" : false, "lon" : 139.83715522681192, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13426, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11313", "shared_interaction" : "11313", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央・総武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131316 (11313) 1131317", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131316 (11313) 1131317", "lat" : 35.701641362335245, "e_status_y" : 0, "line_name_h" : "JR中央・総武緩行線" }, "selected" : false }, { "data" : { "id" : "13425", "source" : "2931", "target" : "2932", "line_name_k" : "チュウオウ・ソウブセン", "is_bullet" : false, "lon" : 139.83715522681192, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13425, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11313", "shared_interaction" : "11313", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央・総武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131315 (11313) 1131316", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131315 (11313) 1131316", "lat" : 35.701641362335245, "e_status_y" : 0, "line_name_h" : "JR中央・総武緩行線" }, "selected" : false }, { "data" : { "id" : "13412", "source" : "2918", "target" : "2919", "line_name_k" : "チュウオウ・ソウブセン", "is_bullet" : false, "lon" : 139.83715522681192, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13412, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11313", "shared_interaction" : "11313", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央・総武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131302 (11313) 1131303", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131302 (11313) 1131303", "lat" : 35.701641362335245, "e_status_y" : 0, "line_name_h" : "JR中央・総武緩行線" }, "selected" : false }, { "data" : { "id" : "13411", "source" : "2917", "target" : "2918", "line_name_k" : "チュウオウ・ソウブセン", "is_bullet" : false, "lon" : 139.83715522681192, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13411, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11313", "shared_interaction" : "11313", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央・総武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131301 (11313) 1131302", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131301 (11313) 1131302", "lat" : 35.701641362335245, "e_status_y" : 0, "line_name_h" : "JR中央・総武緩行線" }, "selected" : false }, { "data" : { "id" : "13414", "source" : "2920", "target" : "2921", "line_name_k" : "チュウオウ・ソウブセン", "is_bullet" : false, "lon" : 139.83715522681192, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13414, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11313", "shared_interaction" : "11313", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央・総武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131304 (11313) 1131305", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131304 (11313) 1131305", "lat" : 35.701641362335245, "e_status_y" : 0, "line_name_h" : "JR中央・総武緩行線" }, "selected" : false }, { "data" : { "id" : "13413", "source" : "2919", "target" : "2920", "line_name_k" : "チュウオウ・ソウブセン", "is_bullet" : false, "lon" : 139.83715522681192, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13413, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11313", "shared_interaction" : "11313", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央・総武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131303 (11313) 1131304", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131303 (11313) 1131304", "lat" : 35.701641362335245, "e_status_y" : 0, "line_name_h" : "JR中央・総武緩行線" }, "selected" : false }, { "data" : { "id" : "13416", "source" : "2922", "target" : "2923", "line_name_k" : "チュウオウ・ソウブセン", "is_bullet" : false, "lon" : 139.83715522681192, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13416, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11313", "shared_interaction" : "11313", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央・総武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131306 (11313) 1131307", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131306 (11313) 1131307", "lat" : 35.701641362335245, "e_status_y" : 0, "line_name_h" : "JR中央・総武緩行線" }, "selected" : false }, { "data" : { "id" : "13415", "source" : "2921", "target" : "2922", "line_name_k" : "チュウオウ・ソウブセン", "is_bullet" : false, "lon" : 139.83715522681192, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13415, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11313", "shared_interaction" : "11313", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央・総武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131305 (11313) 1131306", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131305 (11313) 1131306", "lat" : 35.701641362335245, "e_status_y" : 0, "line_name_h" : "JR中央・総武緩行線" }, "selected" : false }, { "data" : { "id" : "13418", "source" : "2924", "target" : "2925", "line_name_k" : "チュウオウ・ソウブセン", "is_bullet" : false, "lon" : 139.83715522681192, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13418, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11313", "shared_interaction" : "11313", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央・総武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131308 (11313) 1131309", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131308 (11313) 1131309", "lat" : 35.701641362335245, "e_status_y" : 0, "line_name_h" : "JR中央・総武緩行線" }, "selected" : false }, { "data" : { "id" : "13417", "source" : "2923", "target" : "2924", "line_name_k" : "チュウオウ・ソウブセン", "is_bullet" : false, "lon" : 139.83715522681192, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 10, "SUID" : 13417, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11313", "shared_interaction" : "11313", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR中央・総武線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131307 (11313) 1131308", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131307 (11313) 1131308", "lat" : 35.701641362335245, "e_status_y" : 0, "line_name_h" : "JR中央・総武緩行線" }, "selected" : false }, { "data" : { "id" : "13496", "source" : "3004", "target" : "3005", "line_name_k" : "オウメセン", "is_bullet" : false, "lon" : 139.2400413547656, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13496, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11315", "shared_interaction" : "11315", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR青梅線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131518 (11315) 1131519", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131518 (11315) 1131519", "lat" : 35.782572650078514, "e_status_y" : 0, "line_name_h" : "JR青梅線" }, "selected" : false }, { "data" : { "id" : "13495", "source" : "3003", "target" : "3004", "line_name_k" : "オウメセン", "is_bullet" : false, "lon" : 139.2400413547656, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13495, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11315", "shared_interaction" : "11315", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR青梅線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131517 (11315) 1131518", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131517 (11315) 1131518", "lat" : 35.782572650078514, "e_status_y" : 0, "line_name_h" : "JR青梅線" }, "selected" : false }, { "data" : { "id" : "13494", "source" : "3002", "target" : "3003", "line_name_k" : "オウメセン", "is_bullet" : false, "lon" : 139.2400413547656, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13494, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11315", "shared_interaction" : "11315", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR青梅線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131516 (11315) 1131517", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131516 (11315) 1131517", "lat" : 35.782572650078514, "e_status_y" : 0, "line_name_h" : "JR青梅線" }, "selected" : false }, { "data" : { "id" : "13493", "source" : "3001", "target" : "3002", "line_name_k" : "オウメセン", "is_bullet" : false, "lon" : 139.2400413547656, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13493, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11315", "shared_interaction" : "11315", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR青梅線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131515 (11315) 1131516", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131515 (11315) 1131516", "lat" : 35.782572650078514, "e_status_y" : 0, "line_name_h" : "JR青梅線" }, "selected" : false }, { "data" : { "id" : "13492", "source" : "3000", "target" : "3001", "line_name_k" : "オウメセン", "is_bullet" : false, "lon" : 139.2400413547656, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13492, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11315", "shared_interaction" : "11315", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR青梅線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131514 (11315) 1131515", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131514 (11315) 1131515", "lat" : 35.782572650078514, "e_status_y" : 0, "line_name_h" : "JR青梅線" }, "selected" : false }, { "data" : { "id" : "13491", "source" : "2999", "target" : "3000", "line_name_k" : "オウメセン", "is_bullet" : false, "lon" : 139.2400413547656, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13491, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11315", "shared_interaction" : "11315", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR青梅線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131513 (11315) 1131514", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131513 (11315) 1131514", "lat" : 35.782572650078514, "e_status_y" : 0, "line_name_h" : "JR青梅線" }, "selected" : false }, { "data" : { "id" : "13490", "source" : "2998", "target" : "2999", "line_name_k" : "オウメセン", "is_bullet" : false, "lon" : 139.2400413547656, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13490, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11315", "shared_interaction" : "11315", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR青梅線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131512 (11315) 1131513", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131512 (11315) 1131513", "lat" : 35.782572650078514, "e_status_y" : 0, "line_name_h" : "JR青梅線" }, "selected" : false }, { "data" : { "id" : "13489", "source" : "2997", "target" : "2998", "line_name_k" : "オウメセン", "is_bullet" : false, "lon" : 139.2400413547656, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13489, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11315", "shared_interaction" : "11315", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR青梅線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131511 (11315) 1131512", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131511 (11315) 1131512", "lat" : 35.782572650078514, "e_status_y" : 0, "line_name_h" : "JR青梅線" }, "selected" : false }, { "data" : { "id" : "13503", "source" : "3012", "target" : "3013", "line_name_k" : "イツカイチセン", "is_bullet" : false, "lon" : 139.29165743387557, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13503, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11316", "shared_interaction" : "11316", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR五日市線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131601 (11316) 1131602", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131601 (11316) 1131602", "lat" : 35.725830442825945, "e_status_y" : 0, "line_name_h" : "JR五日市線" }, "selected" : false }, { "data" : { "id" : "13502", "source" : "3010", "target" : "3011", "line_name_k" : "オウメセン", "is_bullet" : false, "lon" : 139.2400413547656, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13502, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11315", "shared_interaction" : "11315", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR青梅線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131524 (11315) 1131525", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131524 (11315) 1131525", "lat" : 35.782572650078514, "e_status_y" : 0, "line_name_h" : "JR青梅線" }, "selected" : false }, { "data" : { "id" : "13501", "source" : "3009", "target" : "3010", "line_name_k" : "オウメセン", "is_bullet" : false, "lon" : 139.2400413547656, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13501, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11315", "shared_interaction" : "11315", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR青梅線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131523 (11315) 1131524", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131523 (11315) 1131524", "lat" : 35.782572650078514, "e_status_y" : 0, "line_name_h" : "JR青梅線" }, "selected" : false }, { "data" : { "id" : "13500", "source" : "3008", "target" : "3009", "line_name_k" : "オウメセン", "is_bullet" : false, "lon" : 139.2400413547656, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13500, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11315", "shared_interaction" : "11315", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR青梅線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131522 (11315) 1131523", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131522 (11315) 1131523", "lat" : 35.782572650078514, "e_status_y" : 0, "line_name_h" : "JR青梅線" }, "selected" : false }, { "data" : { "id" : "13499", "source" : "3007", "target" : "3008", "line_name_k" : "オウメセン", "is_bullet" : false, "lon" : 139.2400413547656, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13499, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11315", "shared_interaction" : "11315", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR青梅線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131521 (11315) 1131522", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131521 (11315) 1131522", "lat" : 35.782572650078514, "e_status_y" : 0, "line_name_h" : "JR青梅線" }, "selected" : false }, { "data" : { "id" : "13498", "source" : "3006", "target" : "3007", "line_name_k" : "オウメセン", "is_bullet" : false, "lon" : 139.2400413547656, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13498, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11315", "shared_interaction" : "11315", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR青梅線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131520 (11315) 1131521", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131520 (11315) 1131521", "lat" : 35.782572650078514, "e_status_y" : 0, "line_name_h" : "JR青梅線" }, "selected" : false }, { "data" : { "id" : "13497", "source" : "3005", "target" : "3006", "line_name_k" : "オウメセン", "is_bullet" : false, "lon" : 139.2400413547656, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13497, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11315", "shared_interaction" : "11315", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR青梅線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131519 (11315) 1131520", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131519 (11315) 1131520", "lat" : 35.782572650078514, "e_status_y" : 0, "line_name_h" : "JR青梅線" }, "selected" : false }, { "data" : { "id" : "13509", "source" : "3019", "target" : "3020", "line_name_k" : "ハチコウセン", "is_bullet" : false, "lon" : 139.33299376182276, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13509, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11317", "shared_interaction" : "11317", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR八高線(八王子~高麗川)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131701 (11317) 1131702", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131701 (11317) 1131702", "lat" : 35.78050242395001, "e_status_y" : 0, "line_name_h" : "JR八高線(八王子~高麗川)" }, "selected" : false }, { "data" : { "id" : "13510", "source" : "3020", "target" : "3021", "line_name_k" : "ハチコウセン", "is_bullet" : false, "lon" : 139.33299376182276, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13510, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11317", "shared_interaction" : "11317", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR八高線(八王子~高麗川)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131702 (11317) 1131703", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131702 (11317) 1131703", "lat" : 35.78050242395001, "e_status_y" : 0, "line_name_h" : "JR八高線(八王子~高麗川)" }, "selected" : false }, { "data" : { "id" : "13508", "source" : "3017", "target" : "3018", "line_name_k" : "イツカイチセン", "is_bullet" : false, "lon" : 139.29165743387557, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13508, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11316", "shared_interaction" : "11316", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR五日市線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131606 (11316) 1131607", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131606 (11316) 1131607", "lat" : 35.725830442825945, "e_status_y" : 0, "line_name_h" : "JR五日市線" }, "selected" : false }, { "data" : { "id" : "13506", "source" : "3015", "target" : "3016", "line_name_k" : "イツカイチセン", "is_bullet" : false, "lon" : 139.29165743387557, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13506, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11316", "shared_interaction" : "11316", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR五日市線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131604 (11316) 1131605", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131604 (11316) 1131605", "lat" : 35.725830442825945, "e_status_y" : 0, "line_name_h" : "JR五日市線" }, "selected" : false }, { "data" : { "id" : "13507", "source" : "3016", "target" : "3017", "line_name_k" : "イツカイチセン", "is_bullet" : false, "lon" : 139.29165743387557, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13507, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11316", "shared_interaction" : "11316", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR五日市線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131605 (11316) 1131606", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131605 (11316) 1131606", "lat" : 35.725830442825945, "e_status_y" : 0, "line_name_h" : "JR五日市線" }, "selected" : false }, { "data" : { "id" : "13504", "source" : "3013", "target" : "3014", "line_name_k" : "イツカイチセン", "is_bullet" : false, "lon" : 139.29165743387557, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13504, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11316", "shared_interaction" : "11316", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR五日市線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131602 (11316) 1131603", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131602 (11316) 1131603", "lat" : 35.725830442825945, "e_status_y" : 0, "line_name_h" : "JR五日市線" }, "selected" : false }, { "data" : { "id" : "13505", "source" : "3014", "target" : "3015", "line_name_k" : "イツカイチセン", "is_bullet" : false, "lon" : 139.29165743387557, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 12, "SUID" : 13505, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11316", "shared_interaction" : "11316", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR五日市線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131603 (11316) 1131604", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131603 (11316) 1131604", "lat" : 35.725830442825945, "e_status_y" : 0, "line_name_h" : "JR五日市線" }, "selected" : false }, { "data" : { "id" : "13513", "source" : "3023", "target" : "3024", "line_name_k" : "ハチコウセン", "is_bullet" : false, "lon" : 139.33299376182276, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13513, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11317", "shared_interaction" : "11317", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR八高線(八王子~高麗川)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131705 (11317) 1131706", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131705 (11317) 1131706", "lat" : 35.78050242395001, "e_status_y" : 0, "line_name_h" : "JR八高線(八王子~高麗川)" }, "selected" : false }, { "data" : { "id" : "13511", "source" : "3021", "target" : "3022", "line_name_k" : "ハチコウセン", "is_bullet" : false, "lon" : 139.33299376182276, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13511, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11317", "shared_interaction" : "11317", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR八高線(八王子~高麗川)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131703 (11317) 1131704", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131703 (11317) 1131704", "lat" : 35.78050242395001, "e_status_y" : 0, "line_name_h" : "JR八高線(八王子~高麗川)" }, "selected" : false }, { "data" : { "id" : "13512", "source" : "3022", "target" : "3023", "line_name_k" : "ハチコウセン", "is_bullet" : false, "lon" : 139.33299376182276, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13512, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11317", "shared_interaction" : "11317", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR八高線(八王子~高麗川)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131704 (11317) 1131705", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131704 (11317) 1131705", "lat" : 35.78050242395001, "e_status_y" : 0, "line_name_h" : "JR八高線(八王子~高麗川)" }, "selected" : false }, { "data" : { "id" : "13479", "source" : "2987", "target" : "2988", "line_name_k" : "オウメセン", "is_bullet" : false, "lon" : 139.2400413547656, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13479, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11315", "shared_interaction" : "11315", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR青梅線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131501 (11315) 1131502", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131501 (11315) 1131502", "lat" : 35.782572650078514, "e_status_y" : 0, "line_name_h" : "JR青梅線" }, "selected" : false }, { "data" : { "id" : "13480", "source" : "2988", "target" : "2989", "line_name_k" : "オウメセン", "is_bullet" : false, "lon" : 139.2400413547656, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13480, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11315", "shared_interaction" : "11315", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR青梅線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131502 (11315) 1131503", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131502 (11315) 1131503", "lat" : 35.782572650078514, "e_status_y" : 0, "line_name_h" : "JR青梅線" }, "selected" : false }, { "data" : { "id" : "13485", "source" : "2993", "target" : "2994", "line_name_k" : "オウメセン", "is_bullet" : false, "lon" : 139.2400413547656, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13485, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11315", "shared_interaction" : "11315", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR青梅線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131507 (11315) 1131508", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131507 (11315) 1131508", "lat" : 35.782572650078514, "e_status_y" : 0, "line_name_h" : "JR青梅線" }, "selected" : false }, { "data" : { "id" : "13486", "source" : "2994", "target" : "2995", "line_name_k" : "オウメセン", "is_bullet" : false, "lon" : 139.2400413547656, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13486, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11315", "shared_interaction" : "11315", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR青梅線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131508 (11315) 1131509", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131508 (11315) 1131509", "lat" : 35.782572650078514, "e_status_y" : 0, "line_name_h" : "JR青梅線" }, "selected" : false }, { "data" : { "id" : "13487", "source" : "2995", "target" : "2996", "line_name_k" : "オウメセン", "is_bullet" : false, "lon" : 139.2400413547656, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13487, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11315", "shared_interaction" : "11315", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR青梅線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131509 (11315) 1131510", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131509 (11315) 1131510", "lat" : 35.782572650078514, "e_status_y" : 0, "line_name_h" : "JR青梅線" }, "selected" : false }, { "data" : { "id" : "13488", "source" : "2996", "target" : "2997", "line_name_k" : "オウメセン", "is_bullet" : false, "lon" : 139.2400413547656, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13488, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11315", "shared_interaction" : "11315", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR青梅線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131510 (11315) 1131511", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131510 (11315) 1131511", "lat" : 35.782572650078514, "e_status_y" : 0, "line_name_h" : "JR青梅線" }, "selected" : false }, { "data" : { "id" : "13481", "source" : "2989", "target" : "2990", "line_name_k" : "オウメセン", "is_bullet" : false, "lon" : 139.2400413547656, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13481, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11315", "shared_interaction" : "11315", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR青梅線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131503 (11315) 1131504", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131503 (11315) 1131504", "lat" : 35.782572650078514, "e_status_y" : 0, "line_name_h" : "JR青梅線" }, "selected" : false }, { "data" : { "id" : "13482", "source" : "2990", "target" : "2991", "line_name_k" : "オウメセン", "is_bullet" : false, "lon" : 139.2400413547656, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13482, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11315", "shared_interaction" : "11315", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR青梅線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131504 (11315) 1131505", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131504 (11315) 1131505", "lat" : 35.782572650078514, "e_status_y" : 0, "line_name_h" : "JR青梅線" }, "selected" : false }, { "data" : { "id" : "13483", "source" : "2991", "target" : "2992", "line_name_k" : "オウメセン", "is_bullet" : false, "lon" : 139.2400413547656, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13483, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11315", "shared_interaction" : "11315", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR青梅線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131505 (11315) 1131506", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131505 (11315) 1131506", "lat" : 35.782572650078514, "e_status_y" : 0, "line_name_h" : "JR青梅線" }, "selected" : false }, { "data" : { "id" : "13484", "source" : "2992", "target" : "2993", "line_name_k" : "オウメセン", "is_bullet" : false, "lon" : 139.2400413547656, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13484, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11315", "shared_interaction" : "11315", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR青梅線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131506 (11315) 1131507", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131506 (11315) 1131507", "lat" : 35.782572650078514, "e_status_y" : 0, "line_name_h" : "JR青梅線" }, "selected" : false }, { "data" : { "id" : "13566", "source" : "3079", "target" : "3080", "line_name_k" : "ジョウバンセン", "is_bullet" : false, "lon" : 139.92381250144126, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13566, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11320", "shared_interaction" : "11320", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR常磐線(上野~取手)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132003 (11320) 1132004", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132003 (11320) 1132004", "lat" : 35.8197193273695, "e_status_y" : 0, "line_name_h" : "JR常磐線(上野~取手)" }, "selected" : false }, { "data" : { "id" : "13567", "source" : "3080", "target" : "3081", "line_name_k" : "ジョウバンセン", "is_bullet" : false, "lon" : 139.92381250144126, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13567, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11320", "shared_interaction" : "11320", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR常磐線(上野~取手)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132004 (11320) 1132005", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132004 (11320) 1132005", "lat" : 35.8197193273695, "e_status_y" : 0, "line_name_h" : "JR常磐線(上野~取手)" }, "selected" : false }, { "data" : { "id" : "13564", "source" : "3077", "target" : "3078", "line_name_k" : "ジョウバンセン", "is_bullet" : false, "lon" : 139.92381250144126, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13564, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11320", "shared_interaction" : "11320", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR常磐線(上野~取手)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132001 (11320) 1132002", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132001 (11320) 1132002", "lat" : 35.8197193273695, "e_status_y" : 0, "line_name_h" : "JR常磐線(上野~取手)" }, "selected" : false }, { "data" : { "id" : "13565", "source" : "3078", "target" : "3079", "line_name_k" : "ジョウバンセン", "is_bullet" : false, "lon" : 139.92381250144126, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13565, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11320", "shared_interaction" : "11320", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR常磐線(上野~取手)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132002 (11320) 1132003", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132002 (11320) 1132003", "lat" : 35.8197193273695, "e_status_y" : 0, "line_name_h" : "JR常磐線(上野~取手)" }, "selected" : false }, { "data" : { "id" : "13570", "source" : "3083", "target" : "3084", "line_name_k" : "ジョウバンセン", "is_bullet" : false, "lon" : 139.92381250144126, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13570, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11320", "shared_interaction" : "11320", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR常磐線(上野~取手)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132007 (11320) 1132008", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132007 (11320) 1132008", "lat" : 35.8197193273695, "e_status_y" : 0, "line_name_h" : "JR常磐線(上野~取手)" }, "selected" : false }, { "data" : { "id" : "13568", "source" : "3081", "target" : "3082", "line_name_k" : "ジョウバンセン", "is_bullet" : false, "lon" : 139.92381250144126, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13568, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11320", "shared_interaction" : "11320", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR常磐線(上野~取手)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132005 (11320) 1132006", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132005 (11320) 1132006", "lat" : 35.8197193273695, "e_status_y" : 0, "line_name_h" : "JR常磐線(上野~取手)" }, "selected" : false }, { "data" : { "id" : "13569", "source" : "3082", "target" : "3083", "line_name_k" : "ジョウバンセン", "is_bullet" : false, "lon" : 139.92381250144126, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 11, "SUID" : 13569, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11320", "shared_interaction" : "11320", "company_url" : "http://www.jreast.co.jp/", "line_name" : "JR常磐線(上野~取手)", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1132006 (11320) 1132007", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1132006 (11320) 1132007", "lat" : 35.8197193273695, "e_status_y" : 0, "line_name_h" : "JR常磐線(上野~取手)" }, "selected" : false }, { "data" : { "id" : "13532", "source" : "3044", "target" : "3045", "line_name_k" : "ウツノミヤセン", "is_bullet" : false, "lon" : 139.8464030031987, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 9, "SUID" : 13532, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11319", "shared_interaction" : "11319", "company_url" : "http://www.jreast.co.jp/", "line_name" : "宇都宮線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131901 (11319) 1131902", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131901 (11319) 1131902", "lat" : 36.37943924080079, "e_status_y" : 0, "line_name_h" : "JR東北本線" }, "selected" : false }, { "data" : { "id" : "13533", "source" : "3045", "target" : "3046", "line_name_k" : "ウツノミヤセン", "is_bullet" : false, "lon" : 139.8464030031987, "company_name_k" : "ジェイアールヒガシニホン", "zoom" : 9, "SUID" : 13533, "company_type" : 1, "company_name_h" : "東日本旅客鉄道株式会社", "interaction" : "11319", "shared_interaction" : "11319", "company_url" : "http://www.jreast.co.jp/", "line_name" : "宇都宮線", "selected" : false, "company_name" : "JR東日本", "company_cd" : 2, "name" : "1131902 (11319) 1131903", "rr_cd" : 11, "company_name_r" : "JR東日本", "e_status_x" : 0, "shared_name" : "1131902 (11319) 1131903", "lat" : 36.37943924080079, "e_status_y" : 0, "line_name_h" : "JR東北本線" }, "selected" : false } ] } } ================================================ FILE: documentation/demos/visual-style/code.js ================================================ cytoscape({ container: document.getElementById('cy'), layout: { name: 'cose', padding: 10 }, style: cytoscape.stylesheet() .selector('node') .css({ 'shape': 'data(faveShape)', 'width': 'mapData(weight, 40, 80, 20, 60)', 'content': 'data(name)', 'text-valign': 'center', 'text-outline-width': 2, 'text-outline-color': 'data(faveColor)', 'background-color': 'data(faveColor)', 'color': '#fff' }) .selector(':selected') .css({ 'border-width': 3, 'border-color': '#333' }) .selector('edge') .css({ 'curve-style': 'bezier', 'opacity': 0.666, 'width': 'mapData(strength, 70, 100, 2, 6)', 'target-arrow-shape': 'triangle', 'source-arrow-shape': 'circle', 'line-color': 'data(faveColor)', 'source-arrow-color': 'data(faveColor)', 'target-arrow-color': 'data(faveColor)' }) .selector('edge.questionable') .css({ 'line-style': 'dotted', 'target-arrow-shape': 'diamond' }) .selector('.faded') .css({ 'opacity': 0.25, 'text-opacity': 0 }), elements: { nodes: [ { data: { id: 'j', name: 'Jerry', weight: 65, faveColor: '#6FB1FC', faveShape: 'triangle' } }, { data: { id: 'e', name: 'Elaine', weight: 45, faveColor: '#EDA1ED', faveShape: 'ellipse' } }, { data: { id: 'k', name: 'Kramer', weight: 75, faveColor: '#86B342', faveShape: 'octagon' } }, { data: { id: 'g', name: 'George', weight: 70, faveColor: '#F5A45D', faveShape: 'rectangle' } } ], edges: [ { data: { source: 'j', target: 'e', faveColor: '#6FB1FC', strength: 90 } }, { data: { source: 'j', target: 'k', faveColor: '#6FB1FC', strength: 70 } }, { data: { source: 'j', target: 'g', faveColor: '#6FB1FC', strength: 80 } }, { data: { source: 'e', target: 'j', faveColor: '#EDA1ED', strength: 95 } }, { data: { source: 'e', target: 'k', faveColor: '#EDA1ED', strength: 60 }, classes: 'questionable' }, { data: { source: 'k', target: 'j', faveColor: '#86B342', strength: 100 } }, { data: { source: 'k', target: 'e', faveColor: '#86B342', strength: 100 } }, { data: { source: 'k', target: 'g', faveColor: '#86B342', strength: 100 } }, { data: { source: 'g', target: 'j', faveColor: '#F5A45D', strength: 90 } } ] }, ready: function(){ window.cy = this; } }); ================================================ FILE: documentation/demos/visual-style/index.html ================================================ Visual style
================================================ FILE: documentation/demos/visual-style/style.css ================================================ body { font: 14px helvetica neue, helvetica, arial, sans-serif; } #cy { height: 100%; width: 100%; position: absolute; left: 0; top: 0; } ================================================ FILE: documentation/demos/wine-cheese-map/index.html ================================================ Wine and cheese Reference ================================================ FILE: documentation/docmaker.json ================================================ { "fnArgLinks": { "selector": "#selectors", "event": "#events", "events": "#events", "eleObj": "#notation/elements-json", "eleObjs": "#notation/elements-json", "elesArray": "#notation/elements-json", "elesJson": "#notation/elements-json", "eleJson": "#notation/elements-json", "ele": "#collection", "eles": "#collection", "root": "#collection", "roots": "#collection", "position": "#notation/position", "pos": "#notation/position", "renderedPosition": "#notation/position", "pan": "#notation/position", "panBy": "#notation/position", "css": "#style", "style": "#style", "stylesheet": "#style", "easing": "#style/transition-animation", "cyJson": "#core/initialisation" }, "mdRunButtonBlocked": [ "intro.md", "notation.md", "getting-started.md", "core/init.md" ], "sections": [ { "md": "links" }, { "name": "Demos", "md": "demos", "demos": [ { "name": "FCOSE gene-gene graph", "id": "fcose-gene" }, { "name": "Tokyo railways", "id": "tokyo-railways" }, { "name": "Wine & cheese", "id": "wine-cheese-map", "github": "cytoscape/wineandcheesemap", "viewUrl": "http://wineandcheesemap.com" }, { "name": "SBGN stylesheet", "id": "sbgn-stylesheet", "github": "PathwayCommons/cytoscape-sbgn-stylesheet" }, { "name": "Popper.js extension", "id": "popper", "github": "cytoscape/cytoscape.js-popper" }, { "name": "Popper.js extension & Tippy.js tooltips", "id": "popper-tippy", "github": "cytoscape/cytoscape.js-popper", "viewUrl": "https://cytoscape.github.io/cytoscape.js-popper/demo-tippy.html" }, { "name": "Automove extension", "id": "automove", "github": "cytoscape/cytoscape.js-automove" }, { "name": "Cxtmenu extension", "id": "cxtmenu", "github": "cytoscape/cytoscape.js-cxtmenu" }, { "name": "Edgehandles extension", "id": "edgehandles", "github": "cytoscape/cytoscape.js-edgehandles", "viewUrl": "https://cytoscape.org/cytoscape.js-edgehandles/demo-snap.html" }, { "name": "Compound drag-and-drop extension", "id": "compound-drag-and-drop", "github": "cytoscape/cytoscape.js-compound-drag-and-drop" }, { "name": "Circle layout", "id": "circle-layout" }, { "name": "Concentric layout", "id": "concentric-layout" }, { "name": "AVSDF layout", "id": "avsdf-layout", "github": "iVis-at-Bilkent/cytoscape.js-avsdf", "viewUrl": "https://ivis-at-bilkent.github.io/cytoscape.js-avsdf/demo.html" }, { "name": "CiSE layout", "id": "cise-layout", "github": "iVis-at-Bilkent/cytoscape.js-cise", "viewUrl": "https://ivis-at-bilkent.github.io/cytoscape.js-cise/demo/demo.html" }, { "name": "Grid layout", "id": "grid-layout" }, { "name": "CoSE layout", "id": "cose-layout" }, { "name": "CoSE Bilkent layout", "id": "cose-bilkent-layout", "github": "cytoscape/cytoscape.js-cose-bilkent" }, { "name": "CoSE Bilkent layout (compound)", "id": "cose-bilkent-layout-compound", "github": "cytoscape/cytoscape.js-cose-bilkent", "viewUrl": "https://cytoscape.github.io/cytoscape.js-cose-bilkent/demo-compound.html" }, { "name": "fCoSE layout", "id": "fcose-layout", "github": "iVis-at-Bilkent/cytoscape.js-fcose", "viewUrl": "https://ivis-at-bilkent.github.io/cytoscape.js-fcose/demo/demo.html" }, { "name": "fCoSE layout (compound)", "id": "fcose-layout-compound", "github": "iVis-at-Bilkent/cytoscape.js-fcose", "viewUrl": "https://ivis-at-bilkent.github.io/cytoscape.js-fcose/demo/demo-compound.html" }, { "name": "fCoSE layout (constraint)", "id": "fcose-layout-constraint", "github": "iVis-at-Bilkent/cytoscape.js-fcose", "viewUrl": "https://ivis-at-bilkent.github.io/cytoscape.js-fcose/demo/demo-constraint.html" }, { "name": "Cola layout", "id": "cola-layout", "github": "cytoscape/cytoscape.js-cola" }, { "name": "Cola layout (compound)", "id": "cola-layout-compound", "github": "cytoscape/cytoscape.js-cola", "viewUrl": "https://cytoscape.github.io/cytoscape.js-cola/demo-compound.html" }, { "name": "Euler layout", "id": "euler-layout", "github": "cytoscape/cytoscape.js-euler" }, { "name": "Spread layout", "id": "spread-layout", "github": "cytoscape/cytoscape.js-spread" }, { "name": "Dagre layout", "id": "dagre-layout", "github": "cytoscape/cytoscape.js-dagre" }, { "name": "Klay layout", "id": "klay-layout", "github": "cytoscape/cytoscape.js-klay" }, { "name": "Breadthfirst layout & images", "id": "images-breadthfirst-layout" }, { "name": "Animated BFS", "id": "animated-bfs" }, { "name": "Node types", "id": "node-types" }, { "name": "Edge types", "id": "edge-types" }, { "name": "Radius types", "id": "radius-types" }, { "name": "Edge arrow types", "id": "edge-arrows" }, { "name": "Labels", "id": "labels" }, { "name": "Compound nodes", "id": "compound-nodes" }, { "name": "Linkout example", "id": "linkout-example" } ], "disabledDemos": [ { "name": "Multiple instances", "id": "multiple-instances" }, { "name": "Visual style", "id": "visual-style" }, { "name": "Initialisation", "id": "initialisation" }, { "name": "Multiple windows", "id": "multiple-windows" } ] }, { "name": "Introduction", "mdTemplate": "intro"}, { "name": "Notation", "md": "notation" }, { "name": "Getting started", "md": "getting-started" }, { "name": "Core", "md": "core/core", "sections": [ { "name": "Initialisation", "md": "core/init" }, { "name": "Graph manipulation", "fns": [ { "name": "cy.add", "descr": "Add elements to the graph and return them.", "formats": [ { "descr": "Add a specified element to the graph.", "args": [ { "name": "eleObj", "descr": "A plain object that specifies the element." } ] }, { "descr": "Add the specified elements to the graph.", "args": [ { "name": "eleObjs", "descr": "An array of elements specified by plain objects." } ] }, { "descr": "Add the specified elements to the graph.", "args": [ { "name": "eles", "descr": "A collection of elements." } ] } ], "md": "core/add" }, { "name": "cy.remove", "descr": "Remove elements from the graph and return them.", "formats": [ { "descr": "Remove the specified elements.", "args": [ { "name": "eles", "descr": "A collection of elements to remove." } ] }, { "descr": "Remove elements in the graph matching the specified selector.", "args": [ { "name": "selector", "descr": "Elements matching this selector are removed." } ] } ], "md": "core/remove" }, { "name": "cy.collection", "descr": "Return a new collection, empty or with new elements in a removed state.", "formats": [ { "descr": "Get an empty collection." }, { "name": "cy.collection", "descr": "Create a collection with new elements in a removed state.", "args": [ { "name": "eleObjs", "descr": "Elements to be created" }, { "name": "options", "descr": "The options for the collection", "fields": [ { "name": "removed", "descr": "A truthy value that sets whether the elements are in the removed state (true) or added to the graph (false, default)." } ] } ] } ], "md": "core/collection" }, { "name": "cy.getElementById", "pureAliases": ["cy.$id"], "descr": "Get an element from its ID in a very performant way.", "formats": [ { "args": [ { "name": "id", "descr": "The ID of the element to get." } ] } ], "md": "core/getElementById" }, { "name": "cy.$", "descr": "Get elements in the graph matching a selector or a filter function.", "formats": [ { "name": "cy.$", "descr": "Get elements in the graph matching the specified selector.", "args": [ { "name": "selector", "descr": "The selector the elements should match." } ] }, { "name": "cy.elements", "descr": "Get elements in the graph matching the specified selector.", "args": [ { "name": "selector", "descr": "The selector the elements should match." } ] }, { "name": "cy.nodes", "descr": "Get nodes in the graph matching the specified selector.", "args": [ { "name": "selector", "descr": "The selector the nodes should match." } ] }, { "name": "cy.edges", "descr": "Get edges in the graph matching the specified selector.", "args": [ { "name": "selector", "descr": "The selector the edges should match." } ] }, { "name": "cy.filter", "descr": "Get elements in the graph matching the specified selector.", "args": [ { "name": "selector", "descr": "The selector the elements should match." } ] }, { "name": "cy.filter", "descr": "Get elements in the graph matching the specified filter function.", "args": [ { "name": "function(ele, i, eles)", "descr": "The filter function that returns true for elements that should be returned.", "fields": [ { "name": "ele", "descr": "The current element under consideration for filtering." }, { "name": "i", "descr": "The counter used for iteration over the elements in the graph." }, { "name": "eles", "descr": "The collection of elements being filtered" } ] } ] } ], "md": "core/elements" }, { "name": "cy.batch", "descr": "Allow for manipulation of elements without triggering multiple style calculations or multiple redraws.", "formats": [ { "args": [ { "name": "function()", "descr": "A callback within which you can make batch updates to elements." } ] }, { "name": "cy.startBatch", "descr": "Starts batching manually (useful for asynchronous cases)." }, { "name": "cy.endBatch", "descr": "Ends batching manually (useful for asynchronous cases)." } ], "md": "core/batch" }, { "name": "cy.mount", "descr": "Attaches the instance to the specified container for visualisation.", "formats": [ { "args": [ { "name": "container", "descr": "A HTML DOM element in which the graph should be rendered." } ] } ], "md": "core/mount" }, { "name": "cy.unmount", "descr": "Remove the instance from its current container.", "md": "core/unmount" }, { "name": "cy.destroy", "descr": "A convenience function to explicitly destroy the instance.", "md": "core/destroy" }, { "name": "cy.destroyed", "descr": "Get whether the instance of Cytoscape.js has been destroyed or not." } ] }, { "name": "Data", "fns": [ { "name": "cy.data", "pureAliases": [ "cy.attr" ], "descr": "Read and write developer-defined data associated with the graph.", "formatsSameFn": true, "formats": [ { "name": "cy.data", "descr": "Get the entire data object." }, { "name": "cy.data", "descr": "Get a particular data field.", "args": [ { "name": "name", "descr": "The name of the field to get." } ] }, { "name": "cy.data", "descr": "Set a particular data field.", "args": [ { "name": "name", "descr": "The name of the field to set." }, { "name": "value", "descr": "The value to set for the field." } ] }, { "name": "cy.data", "descr": "Update multiple data fields at once via an object.", "args": [ { "name": "obj", "descr": "The object containing name-value pairs to update data fields." } ] } ] }, { "name": "cy.removeData", "pureAliases": [ "cy.removeAttr" ], "descr": "Remove developer-defined data associated with the elements.", "formats": [ { "descr": "Removes all mutable data fields for the elements." }, { "descr": "Removes the specified mutable data fields for the elements.", "args": [ { "name": "names", "descr": "A space-separated list of fields to delete." } ] } ] }, { "name": "cy.scratch", "extFn": true, "descr": "Set or get scratchpad data, where temporary or non-JSON data can be stored. App-level scratchpad data should use namespaces prefixed with underscore, like `'_foo'`. This is analogous to the more common [`ele.scratch()`](#ele.scratch) but for graph global data.", "formats": [ { "descr": "Get the entire scratchpad object for the core." }, { "descr": "Get the scratchpad at a particular namespace.", "args": [ { "name": "namespace", "descr": "A namespace string." } ] }, { "descr": "Set the scratchpad at a particular namespace.", "args": [ { "name": "namespace", "descr": "A namespace string." }, { "name": "value", "descr": "The value to set at the specified namespace." } ] } ] }, { "name": "cy.removeScratch", "extFn": true, "descr": "Remove scratchpad data. You should remove scratchpad data only at your own namespaces. This is analogous to the more common [`ele.removeScratch()`](#ele.removeScratch) but for graph global data.", "formats": [ { "descr": "Remove the scratchpad data at a particular namespace.", "args": [ { "name": "namespace", "descr": "A namespace string." } ] } ], "md": "collection/removeScratch" } ] }, { "name": "Events", "fns": [ { "name": "cy.on", "pureAliases": ["cy.bind", "cy.listen", "cy.addListener"], "descr": "Listen to events that occur on the core.", "formats": [ { "args": [ { "name": "events", "descr": "A space separated list of event names." }, { "name": "selector", "descr": "A selector to specify elements for which the handler runs.", "optional": true }, { "name": "function(event)", "descr": "The handler function that is called when one of the specified events occurs.", "fields": [ { "name": "event", "descr": "The event object." } ] } ] } ], "md": "core/on" }, { "name": "cy.promiseOn", "pureAliases": ["cy.pon"], "descr": "Get a promise that is resolved when the core emits the first of any of the specified events.", "formats": [ { "args": [ { "name": "events", "descr": "A space separated list of event names." }, { "name": "selector", "descr": "A selector to specify elements for which the handler runs.", "optional": true } ] } ], "md": "core/promiseOn" }, { "name": "cy.one", "descr": "Listen to events that occur on the core, and run the handler only once.", "formats": [ { "args": [ { "name": "events", "descr": "A space separated list of event names." }, { "name": "selector", "descr": "A selector to specify elements for which the handler runs.", "optional": true }, { "name": "function(event)", "descr": "The handler function that is called when one of the specified events occurs.", "fields": [ { "name": "event", "descr": "The event object." } ] } ] } ], "md": "core/one" }, { "name": "cy.removeListener", "pureAliases": ["cy.off", "cy.unbind", "cy.unlisten"], "descr": "Remove event handlers on the core.", "formats": [ { "args": [ { "name": "events", "descr": "A space separated list of event names." }, { "name": "selector", "descr": "The same selector used to listen to the events.", "optional": true }, { "name": "handler", "descr": "A reference to the handler function to remove.", "optional": true } ] } ], "md": "core/removeListener" }, { "name": "cy.removeAllListeners", "descr": "Remove all event handlers on the core." }, { "name": "cy.emit", "pureAliases": ["cy.trigger"], "descr": "Emit one or more events.", "formats": [ { "args": [ { "name": "events", "descr": "A list of event names to emit (either a space-separated string or an array)" }, { "name": "extraParams", "descr": "An array of additional parameters to pass to the handler.", "optional": true } ] } ], "md": "core/emit" }, { "name": "cy.ready", "descr": "Run a callback as soon as the graph becomes ready (i.e. intitial data loaded and initial layout completed). If the graph is already ready, then the callback is called immediately. If data is loaded synchronously and the layout used is discrete/synchronous/unanimated/unspecified, then you don't need `cy.ready()`.", "formats": [ { "args": [ { "name": "function(event)", "descr": "The callback run as soon as the graph is ready.", "fields": [ { "name": "event", "descr": "The `ready` event." } ] } ] } ] } ] }, { "name": "Viewport manipulation", "fns": [ { "name": "cy.container", "descr": "Get the HTML DOM element in which the graph is visualised. A null value is returned if the instance is headless." }, { "name": "cy.center", "pureAliases": ["cy.centre"], "descr": "Pan the graph to the centre of a collection.", "formats": [ { "descr": "Centre on all elements in the graph." }, { "descr": "Centre on the specified elements.", "args": [ { "name": "eles", "descr": "The collection to centre upon." } ] } ], "md": "core/center" }, { "name": "cy.fit", "descr": "Pan and zooms the graph to fit to a collection.", "formats": [ { "descr": "Fit to all elements in the graph." }, { "descr": "Fit to the specified elements.", "args": [ { "name": "eles", "descr": "The collection to fit to.", "optional": true }, { "name": "padding", "descr": "An amount of padding (in rendered pixels) to have around the graph (default `0`).", "optional": true } ] } ], "md": "core/fit" }, { "name": "cy.reset", "descr": "Reset the graph to the default zoom level and panning position.", "formats": [ { "descr": "Resets the zoom and pan." } ], "md": "core/reset" }, { "name": "cy.pan", "descr": "Get or set the panning position of the graph.", "formats": [ { "descr": "Get the current panning position." }, { "descr": "Set the current panning position.", "args": [ { "name": "renderedPosition", "descr": "The rendered position to pan the graph to." } ] } ], "md": "core/pan" }, { "name": "cy.panBy", "descr": "Relatively pan the graph by a specified rendered position vector.", "formats": [ { "args": [ { "name": "renderedPosition", "descr": "The rendered position vector to pan the graph by." } ] } ], "md": "core/panBy" }, { "name": "cy.panningEnabled", "descr": "Get or set whether panning is enabled.", "formats": [ { "descr": "Get whether panning is enabled." }, { "descr": "Set whether panning is enabled.", "args": [ { "name": "bool", "descr": "A truthy value enables panning; a falsey value disables it." } ] } ], "md": "core/panningEnabled" }, { "name": "cy.userPanningEnabled", "descr": "Get or set whether panning by user events (e.g. dragging the graph background) is enabled.", "formats": [ { "descr": "Get whether user panning is enabled." }, { "descr": "Set whether user panning is enabled.", "args": [ { "name": "bool", "descr": "A truthy value enables user panning; a falsey value disables it." } ] } ], "md": "core/userPanningEnabled" }, { "name": "cy.zoom", "descr": "Get or set the zoom level of the graph.", "formats": [ { "descr": "Get the zoom level." }, { "descr": "Set the zoom level.", "args": [ { "name": "level", "descr": "The zoom level to set." } ] }, { "descr": "Set the zoom level.", "args": [ { "name": "options", "descr": "The options for zooming.", "fields": [ { "name": "level", "descr": "The zoom level to set." }, { "name": "position", "descr": "The position about which to zoom." }, { "name": "renderedPosition", "descr": "The rendered position about which to zoom." } ] } ] } ], "md": "core/zoom" }, { "name": "cy.zoomingEnabled", "descr": "Get or set whether zooming is enabled.", "formats": [ { "descr": "Get whether zooming is enabled." }, { "descr": "Set whether zooming is enabled.", "args": [ { "name": "bool", "descr": "A truthy value enables zooming; a falsey value disables it." } ] } ], "md": "core/zoomingEnabled" }, { "name": "cy.userZoomingEnabled", "descr": "Get or set whether zooming by user events (e.g. mouse wheel, pinch-to-zoom) is enabled.", "formats": [ { "descr": "Get whether user zooming is enabled." }, { "descr": "Set whether user zooming is enabled.", "args": [ { "name": "bool", "descr": "A truthy value enables user zooming; a falsey value disables it." } ] } ], "md": "core/userZoomingEnabled" }, { "name": "cy.minZoom", "descr": "Get or set the minimum zoom level.", "formats": [ { "descr": "Get the minimum zoom level." }, { "descr": "Set the minimum zoom level.", "args": [ { "name": "zoom", "descr": "The new minimum zoom level to use." } ] } ] }, { "name": "cy.maxZoom", "descr": "Get or set the maximum zoom level.", "formats": [ { "descr": "Get the maximum zoom level." }, { "descr": "Set the maximum zoom level.", "args": [ { "name": "zoom", "descr": "The new maximum zoom level to use." } ] } ] }, { "name": "cy.viewport", "descr": "Set the viewport state (pan & zoom) in one call.", "formats": [ { "args": [ { "name": "options", "descr": "The viewport options.", "fields": [ { "name": "zoom", "descr": "The zoom level to set." }, { "name": "pan", "descr": "The pan to set (a rendered position)." } ] } ] } ], "md": "core/viewport" }, { "name": "cy.boxSelectionEnabled", "descr": "Get or set whether box selection is enabled. If enabled along with panning, the user must hold down one of shift, control, alt, or command to initiate box selection.", "formats": [ { "descr": "Get whether box selection is enabled." }, { "descr": "Set whether box selection is enabled.", "args": [ { "name": "bool", "descr": "A truthy value enables box selection; a falsey value disables it." } ] } ], "md": "core/boxSelectionEnabled" }, { "name": "cy.selectionType", "descr": "Get or set the selection type. The `'single'` selection type is the default, tapping an element selects that element and deselects the previous elements. The `'additive' selection type toggles the selection state of an element when tapped.`", "formats": [ { "descr": "Get the selection type string." }, { "descr": "Set the selection type.", "args": [ { "name": "type", "descr": "The selection type string; one of `'single'` (default) or `'additive'`." } ] } ] }, { "name": "cy.width", "descr": "Get the on-screen width of the viewport in pixels." }, { "name": "cy.height", "descr": "Get the on-screen height of the viewport in pixels." }, { "name": "cy.extent", "descr": "Get the extent of the viewport, a bounding box in model co-ordinates that lets you know what model positions are visible in the viewport.", "md": "core/extent" }, { "name": "cy.renderedExtent", "descr": "Get the width and height of the viewport canvas in [rendered (on-screen) points](#notation/position).", "md": "core/extent" }, { "name": "cy.autolock", "descr": "Get or set whether nodes are automatically locked (i.e. if `true`, nodes are locked despite their individual state).", "formats": [ { "descr": "Get whether autolocking is enabled." }, { "descr": "Set whether autolocking is enabled.", "args": [ { "name": "bool", "descr": "A truthy value enables autolocking; a falsey value disables it." } ] } ], "md": "core/autolock" }, { "name": "cy.autoungrabify", "descr": "Get or set whether nodes are automatically ungrabified (i.e. if `true`, nodes are ungrabbable despite their individual state).", "formats": [ { "descr": "Get whether autoungrabifying is enabled." }, { "descr": "Set whether autoungrabifying is enabled.", "args": [ { "name": "bool", "descr": "A truthy value enables autoungrabbifying; a falsey value disables it." } ] } ], "md": "core/autoungrabify" }, { "name": "cy.autounselectify", "descr": "Get or set whether nodes are automatically unselectified (i.e. if `true`, nodes are unselectable despite their individual state).", "formats": [ { "descr": "Get whether autounselectifying is enabled." }, { "descr": "Set whether autounselectifying is enabled.", "args": [ { "name": "bool", "descr": "A truthy value enables autounselectifying; a falsey value disables it." } ] } ], "md": "core/autounselectify" }, { "name": "cy.resize", "pureAliases": ["cy.invalidateDimensions"], "descr": "Force the renderer to recalculate the viewport bounds.", "md": "core/resize" } ] }, { "name": "Animation", "fns": [ { "name": "cy.animated", "descr": "Get whether the viewport is currently being animated." }, { "name": "cy.animate", "descr": "Animate the viewport.", "formats": [ { "args": [ { "name": "options", "descr": "An object containing the details of the animation.", "fields": [ { "name": "zoom", "descr": "A zoom level (number) or a zoom configuration object to which the graph will be animated.", "fields": [ { "name": "level", "descr": "The zoom level to use." }, { "name": "position", "descr": "The position about which zooming occurs. This automatically modifies the pan such that the specified model position remains at the same position in the viewport extent during zooming." }, { "name": "renderedPosition", "descr": "The rendered position about which zooming occurs, as an alternative to using the model position. This automatically modifies the pan such that the model position, corresponding to the rendered position at the start of the animation, remains at the same position in the viewport extent during zooming." } ] }, { "name": "pan", "descr": "A panning position to which the graph will be animated." }, { "name": "panBy", "descr": "A relative panning position to which the graph will be animated." }, { "name": "fit", "descr": "An object containing fitting options from which the graph will be animated.", "fields": [ { "name": "eles", "descr": "Elements or a selector to which the viewport will be fitted." }, { "name": "padding", "descr": "Padding to use with the fitting (default `0`)." } ] }, { "name": "center", "descr": "An object containing centring options from which the graph will be animated.", "fields": [ { "name": "eles", "descr": "Elements or a selector to which the viewport will be centred." } ] }, { "name": "duration", "descr": "The duration of the animation in milliseconds." }, { "name": "queue", "descr": "A boolean indicating whether to queue the animation (default `true`). Queued animations on the core run in order until the queue is empty." }, { "name": "easing", "descr": "A [`transition-timing-function`](#style/transition-animation) easing style string that shapes the animation progress curve." }, { "name": "complete", "descr": "A function to call when the animation is done." }, { "name": "step", "descr": "A function to call each time the animation steps." } ] } ] } ], "md": "core/animate" }, { "name": "cy.animation", "descr": "Get an [animation](#animations) of the viewport.", "formats": [ { "args": [ { "name": "options", "descr": "An object containing the details of the animation.", "fields": [ { "name": "zoom", "descr": "A zoom level (number) or a zoom configuration object to which the graph will be animated.", "fields": [ { "name": "level", "descr": "The zoom level to use." }, { "name": "position", "descr": "The position about which zooming occurs. This automatically modifies the pan such that the specified model position remains at the same position in the viewport extent during zooming." }, { "name": "renderedPosition", "descr": "The rendered position about which zooming occurs, as an alternative to using the model position. This automatically modifies the pan such that the model position, corresponding to the rendered position at the start of the animation, remains at the same position in the viewport extent during zooming." } ] }, { "name": "pan", "descr": "A panning position to which the graph will be animated." }, { "name": "panBy", "descr": "A relative panning position to which the graph will be animated." }, { "name": "fit", "descr": "An object containing fitting options from which the graph will be animated.", "fields": [ { "name": "eles", "descr": "Elements or a selector to which the viewport will be fitted." }, { "name": "padding", "descr": "Padding to use with the fitting (default `0`)." } ] }, { "name": "center", "descr": "An object containing centring options from which the graph will be animated.", "fields": [ { "name": "eles", "descr": "Elements or a selector to which the viewport will be centred." } ] }, { "name": "duration", "descr": "The duration of the animation in milliseconds." }, { "name": "easing", "descr": "A [`transition-timing-function`](#style/transition-animation) easing style string that shapes the animation progress curve." }, { "name": "complete", "descr": "A function to call when the animation is done." }, { "name": "step", "descr": "A function to call each time the animation steps." } ] } ] } ] }, { "name": "cy.delay", "descr": "Add a delay between queued animations for the viewport.", "formats": [ { "args": [ { "name": "duration", "descr": "How long the delay should be in milliseconds." }, { "name": "complete", "descr": "A function to call when the delay is complete." } ] } ], "md": "core/delay" }, { "name": "cy.delayAnimation", "descr": "Get a delay [animation](#animations) of the viewport.", "formats": [ { "args": [ { "name": "duration", "descr": "How long the delay should be in milliseconds." } ] } ] }, { "name": "cy.stop", "descr": "Stop all viewport animations that are currently running.", "formats": [ { "args": [ { "name": "clearQueue", "descr": "A boolean (default `false`), indicating whether the queue of animations should be emptied." }, { "name": "jumpToEnd", "descr": "A boolean (default `false`), indicating whether the currently-running animations should jump to their ends rather than just stopping midway." } ] } ], "md": "core/stop" }, { "name": "cy.clearQueue", "descr": "Remove all queued animations for the viewport." } ] }, { "name": "Layout", "fns": [ { "name": "cy.layout", "pureAliases": ["cy.createLayout", "cy.makeLayout"], "descr": "Get a new layout, which can be used to algorithmically position the nodes in the graph.", "formats": [ { "args": [ { "name": "options", "descr": "The layout options." } ] } ], "md": "core/layout" } ] }, { "name": "Style", "fns": [ { "name": "cy.style", "descr": "Get the entry point to modify the visual style of the graph after initialisation.", "formats": [ { "descr": "Get the current style object." }, { "descr": "Assign a new stylesheet to replace the existing one.", "args": [ { "name": "stylesheet", "descr": "Either a `cytoscape.stylesheet()` object, a string stylesheet, or a JSON stylesheet (the same formats accepted for [`options.style`](#style) at initialisation)." } ] } ], "md": "core/style" } ] }, { "name": "Export", "fns": [ { "name": "cy.png", "descr": "Export the current graph view as a PNG image.", "formats": [ { "args": [ { "name": "options", "descr": "The export options.", "fields": [ { "name": "output", "descr": "Whether the output should be `'base64uri'` (default), `'base64'`, `'blob'`, or `'blob-promise'` (a promise that resolves to the blob is returned)." }, { "name": "bg", "descr": "The background colour of the image (transparent by default)." }, { "name": "full", "descr": "Whether to export the current viewport view (`false`, default) or the entire graph (`true`)." }, { "name": "scale", "descr": "This value specifies a positive number that scales the size of the resultant image." }, { "name": "maxWidth", "descr": "Specifies the scale automatically in combination with `maxHeight` such that the resultant image is no wider than `maxWidth`." }, { "name": "maxHeight", "descr": "Specifies the scale automatically in combination with `maxWidth` such that the resultant image is no taller than `maxHeight`." } ] } ] } ], "md": "core/png" }, { "name": "cy.jpg", "pureAliases": ["cy.jpeg"], "descr": "Export the current graph view as a JPG image.", "formats": [ { "args": [ { "name": "options", "descr": "The export options.", "fields": [ { "name": "output", "descr": "Whether the output should be `'base64uri'` (default), `'base64'`, `'blob'`, or `'blob-promise'` (a promise that resolves to the blob is returned)." }, { "name": "bg", "descr": "The background colour of the image (white by default)." }, { "name": "full", "descr": "Whether to export the current viewport view (`false`, default) or the entire graph (`true`)." }, { "name": "scale", "descr": "This value specifies a positive number that scales the size of the resultant image." }, { "name": "maxWidth", "descr": "Specifies the scale automatically in combination with `maxHeight` such that the resultant image is no wider than `maxWidth`." }, { "name": "maxHeight", "descr": "Specifies the scale automatically in combination with `maxWidth` such that the resultant image is no taller than `maxHeight`." }, { "name": "quality", "descr": "Specifies the quality of the image from `0` (low quality, low filesize) to `1` (high quality, high filesize). If not set, the browser's default quality value is used." } ] } ] } ], "md": "core/jpg" }, { "name": "cy.json", "descr": "Import or export the graph in the same JSON format used at initialisation.", "formats": [ { "descr": "Export the graph as JSON.", "args": [ { "name": "flatEles", "descr": "Whether the resulant JSON should include the elements as a flat array (`true`) or as two keyed arrays by group (`false`, default)." } ] }, { "descr": "Import the graph as JSON, updating only the fields specified.", "args": [ { "name": "cyJson", "descr": "The object with the fields corresponding to the states that should be changed." } ] } ], "md": "core/json" } ] } ] }, { "name": "Collection", "md": "collection/collection", "sections": [ { "name": "Graph manipulation", "fns": [ { "name": "ele.cy", "descr": "Get the core instance that owns the element." }, { "name": "eles.remove", "descr": "Remove the elements from the graph, and return all elements removed by this call.", "md": "collection/remove" }, { "name": "ele.removed", "descr": "Get whether the element has been removed from the graph." }, { "name": "ele.inside", "descr": "Get whether the element is inside the graph (i.e. not removed)." }, { "name": "eles.restore", "descr": "Put removed elements back into the graph.", "md": "collection/restore" }, { "name": "eles.clone", "pureAliases": [ "eles.copy" ], "descr": "Get a new collection containing clones (i.e. copies) of the elements in the calling collection." }, { "name": "eles.move", "descr": "Move the elements with respect to graph topology (i.e. new `source`, `target`, or `parent`).", "formats": [ { "name": "edges.move", "descr": "Change the source, target, or both source and target.", "args": [ { "name": "location", "descr": "Where the edges are moved. You can specify a new source, a new target, or both.", "fields": [ { "name": "source", "descr": "The ID of the new source node." }, { "name": "target", "descr": "The ID of the new target node." } ] } ] }, { "name": "nodes.move", "descr": "Change the parent.", "args": [ { "name": "location", "descr": "Where the nodes are moved.", "fields": [ { "name": "parent", "descr": "The ID of the new parent node (use `null` for no parent)." } ] } ] } ], "md": "collection/move" } ] }, { "name": "Events", "fns": [ { "name": "eles.on", "pureAliases": ["eles.bind", "eles.listen", "eles.addListener"], "descr": "Listen to events that occur on the elements.", "formats": [ { "args": [ { "name": "events", "descr": "A space separated list of event names." }, { "name": "selector", "descr": "A delegate selector to specify child elements for which the handler runs.", "optional": true }, { "name": "function(event)", "descr": "The handler function that is called when one of the specified events occurs.", "fields": [ { "name": "event", "descr": "The event object." } ] } ] } ], "md": "collection/on" }, { "name": "eles.promiseOn", "pureAliases": ["eles.pon"], "descr": "Get a promise that is resolved the first time any of the elements emit any of the specified events.", "formats": [ { "args": [ { "name": "events", "descr": "A space separated list of event names." }, { "name": "selector", "descr": "A selector to specify elements for which the handler is emitted.", "optional": true } ] } ], "md": "collection/promiseOn" }, { "name": "eles.one", "descr": "Add a listener that is called once per event per element.", "formats": [ { "args": [ { "name": "events", "descr": "A space separated list of event names." }, { "name": "selector", "descr": "A delegate selector to specify child elements for which the handler runs.", "optional": true }, { "name": "function(event)", "descr": "The handler function that is called when one of the specified events occurs.", "fields": [ { "name": "event", "descr": "The event object." } ] } ] } ], "md": "collection/one" }, { "name": "eles.once", "descr": "Add a listener that is called once per event per collection.", "formats": [ { "args": [ { "name": "events", "descr": "A space separated list of event names." }, { "name": "selector", "descr": "A delegate selector to specify child elements for which the handler runs.", "optional": true }, { "name": "function(event)", "descr": "The handler function that is called when one of the specified events occurs.", "fields": [ { "name": "event", "descr": "The event object." } ] } ] } ], "md": "collection/once" }, { "name": "eles.removeListener", "pureAliases": ["eles.off", "eles.unbind", "eles.unlisten"], "descr": "Remove one or more listeners on the elements.", "formats": [ { "args": [ { "name": "events", "descr": "A space separated list of event names." }, { "name": "selector", "descr": "The same delegate selector used to listen to the events.", "optional": true }, { "name": "handler", "descr": "A reference to the handler function to remove.", "optional": true } ] } ], "md": "collection/removeListener" }, { "name": "eles.removeAllListeners", "descr": "Remove all event handlers on the elements." }, { "name": "eles.emit", "pureAliases": ["eles.trigger"], "descr": "Emit events on the elements.", "formats": [ { "args": [ { "name": "events", "descr": "A list of event names to emit (either a space-separated string or an array)" }, { "name": "extraParams", "descr": "An array of additional parameters to pass to the handler.", "optional": true } ] } ], "md": "collection/emit" } ] }, { "name": "Data", "fns": [ { "name": "eles.data", "pureAliases": [ "eles.attr" ], "descr": "Read and write developer-defined data associated with the elements.", "formatsSameFn": true, "formats": [ { "name": "ele.data", "descr": "Get the entire data object." }, { "name": "ele.data", "descr": "Get a particular data field for the element.", "args": [ { "name": "name", "descr": "The name of the field to get." } ] }, { "name": "ele.data", "descr": "Set a particular data field for the element.", "args": [ { "name": "name", "descr": "The name of the field to set." }, { "name": "value", "descr": "The value to set for the field." } ] }, { "name": "ele.data", "descr": "Update multiple data fields at once via an object.", "args": [ { "name": "obj", "descr": "The object containing name-value pairs to update data fields." } ] } ], "md": "collection/data" }, { "name": "eles.removeData", "pureAliases": [ "eles.removeAttr" ], "descr": "Remove developer-defined data associated with the elements.", "formats": [ { "descr": "Removes all mutable data fields for the elements." }, { "descr": "Removes the specified mutable data fields for the elements.", "args": [ { "name": "names", "descr": "A space-separated list of fields to delete." } ] } ], "md": "collection/removeData" }, { "name": "ele.scratch", "extFn": true, "descr": "Set or get scratchpad data, where temporary or non-JSON data can be stored. App-level scratchpad data should use namespaces prefixed with underscore, like `'_foo'`.", "formats": [ { "descr": "Get the entire scratchpad object for the element." }, { "descr": "Get the scratchpad at a particular namespace.", "args": [ { "name": "namespace", "descr": "A namespace string." } ] }, { "descr": "Set the scratchpad at a particular namespace.", "args": [ { "name": "namespace", "descr": "A namespace string." }, { "name": "value", "descr": "The value to set at the specified namespace." } ] } ], "md": "collection/scratch" }, { "name": "ele.removeScratch", "extFn": true, "descr": "Remove scratchpad data. You should remove scratchpad data only at your own namespaces.", "formats": [ { "descr": "Remove the scratchpad data at a particular namespace.", "args": [ { "name": "namespace", "descr": "A namespace string." } ] } ] }, { "name": "ele.id", "descr": "A shortcut to get the ID of an element." }, { "name": "ele.json", "descr": "Get or mutate the element's plain JavaScript object representation.", "formats": [ { "descr": "Get the element's JSON.", "args": [] }, { "descr": "Mutate the element's state as specified.", "args": [ { "name": "eleJson", "descr": "For each field in the object, the element's state is mutated as specified." } ] } ], "md": "collection/json" }, { "name": "eles.jsons", "descr": "Get an array of the plain JavaScript object representation of all elements in the collection.", "md": "collection/jsons" }, { "name": "ele.group", "descr": "Get the group string that defines the type of the element.", "md": "collection/group" }, { "name": "ele.isNode", "descr": "Get whether the element is a node." }, { "name": "ele.isEdge", "descr": "Get whether the element is an edge." }, { "name": "edge.isLoop", "descr": "Get whether the edge is a loop (i.e. same source and target)." }, { "name": "edge.isSimple", "descr": "Get whether the edge is simple (i.e. different source and target)." } ] }, { "name": "Metadata", "fns": [ { "name": "node.degree", "formats": [ { "name": "node.degree", "descr": "Get the degree of a node.", "args": [ { "name": "includeLoops", "descr": "A boolean, indicating whether loops are to be included in degree calculations." } ] }, { "name": "node.indegree", "descr": "Get the indegree of a node.", "args": [ { "name": "includeLoops", "descr": "A boolean, indicating whether loops are to be included in degree calculations." } ] }, { "name": "node.outdegree", "descr": "Get the outdegree of a node.", "args": [ { "name": "includeLoops", "descr": "A boolean, indicating whether loops are to be included in degree calculations." } ] }, { "name": "nodes.totalDegree", "descr": "Get the total degree of a collection of nodes.", "args": [ { "name": "includeLoops", "descr": "A boolean, indicating whether loops are to be included in degree calculations." } ] }, { "name": "nodes.minDegree", "descr": "Get the minimum degree of the nodes in the collection.", "args": [ { "name": "includeLoops", "descr": "A boolean, indicating whether loops are to be included in degree calculations." } ] }, { "name": "nodes.maxDegree", "descr": "Get the maximum degree of the nodes in the collection.", "args": [ { "name": "includeLoops", "descr": "A boolean, indicating whether loops are to be included in degree calculations." } ] }, { "name": "nodes.minIndegree", "descr": "Get the minimum indegree of the nodes in the collection.", "args": [ { "name": "includeLoops", "descr": "A boolean, indicating whether loops are to be included in degree calculations." } ] }, { "name": "nodes.maxIndegree", "descr": "Get the maximum indegree of the nodes in the collection.", "args": [ { "name": "includeLoops", "descr": "A boolean, indicating whether loops are to be included in degree calculations." } ] }, { "name": "nodes.minOutdegree", "descr": "Get the minimum outdegree of the nodes in the collection.", "args": [ { "name": "includeLoops", "descr": "A boolean, indicating whether loops are to be included in degree calculations." } ] }, { "name": "nodes.maxOutdegree", "descr": "Get the maximum outdegree of the nodes in the collection.", "args": [ { "name": "includeLoops", "descr": "A boolean, indicating whether loops are to be included in degree calculations." } ] } ], "md": "collection/degree" } ] }, { "name": "Position & dimensions", "fns": [ { "name": "node.position", "pureAliases": [ "node.modelPosition", "node.point" ], "descr": "Get or set the [model position](#notation/position) of a node.", "formats": [ { "descr": "Get the entire position object." }, { "descr": "Get the value of a specified position dimension.", "args": [ { "name": "dimension", "descr": "The position dimension to get." } ] }, { "descr": "Set the value of a specified position dimension.", "args": [ { "name": "dimension", "descr": "The position dimension to set." }, { "name": "value", "descr": "The value to set to the dimension." } ] }, { "descr": "Set the position using name-value pairs in the specified object.", "args": [ { "name": "pos", "descr": "An object specifying name-value pairs representing dimensions to set." } ] } ], "md": "collection/position" }, { "name": "nodes.shift", "descr": "Shift the positions of the nodes by a given [model position](#notation/position) vector.", "formats": [ { "descr": "Shift the nodes by one of `'x'` or `'y'`.", "args": [ { "name": "dimension", "descr": "The position dimension to shift." }, { "name": "value", "descr": "The value to shift the dimension." } ] }, { "descr": "Shift the nodes by a position vector.", "args": [ { "name": "pos", "descr": "An object specifying name-value pairs representing dimensions to shift." } ] } ], "md": "collection/shift" }, { "name": "nodes.positions", "pureAliases": [ "nodes.modelPositions", "nodes.points" ], "descr": "Set the [model positions](#notation/position) of several nodes with a function.", "formats": [ { "descr": "Set the positions via a function.", "args": [ { "name": "function(ele, i)", "descr": "A callback function that returns the position to set for each element.", "fields": [ { "name": "ele", "descr": "The element being iterated over for which the function should return a position to set." }, { "name": "i", "descr": "The index of the element when iterating over the elements in the collection." } ] } ] }, { "descr": "Set positions for all nodes based on a single position object.", "args": [ { "name": "pos", "descr": "An object specifying name-value pairs representing dimensions to set." } ] } ], "md": "collection/positions" }, { "name": "node.renderedPosition", "pureAliases": [ "node.renderedPoint" ], "descr": "Get or set the [rendered (on-screen) position](#notation/position) of a node.", "formats": [ { "descr": "Get the entire rendered position object." }, { "descr": "Get the value of a specified rendered position dimension.", "args": [ { "name": "dimension", "descr": "The position dimension to get." } ] }, { "descr": "Set the value of a specified rendered position dimension.", "args": [ { "name": "dimension", "descr": "The position dimension to set." }, { "name": "value", "descr": "The value to set to the dimension." } ] }, { "descr": "Set the rendered position using name-value pairs in the specified object.", "args": [ { "name": "pos", "descr": "An object specifying name-value pairs representing dimensions to set." } ] } ] }, { "name": "node.relativePosition", "pureAliases": [ "node.relativePoint" ], "descr": "Get or set the [model position](#notation/position) of a node, relative to its compound parent.", "formats": [ { "descr": "Get the entire relative position object." }, { "descr": "Get the value of a specified relative position dimension.", "args": [ { "name": "dimension", "descr": "The position dimension to get." } ] }, { "descr": "Set the value of a specified relative position dimension.", "args": [ { "name": "dimension", "descr": "The position dimension to set." }, { "name": "value", "descr": "The value to set to the dimension." } ] }, { "descr": "Set the relative position using name-value pairs in the specified object.", "args": [ { "name": "pos", "descr": "An object specifying name-value pairs representing dimensions to set." } ] } ] }, { "name": "ele.width", "descr": "Get the width of the element. The raw width of the element is returned, independent of whether the element is visibile.", "formats": [ { "name": "ele.width", "descr": "Get the width of the element in [model dimensions](#notation/position)." }, { "name": "ele.outerWidth", "descr": "Get the outer width of the element in [model dimensions](#notation/position) (includes width, padding, & border)." }, { "name": "ele.renderedWidth", "descr": "Get the width of the element in [rendered dimensions](#notation/position)." }, { "name": "ele.renderedOuterWidth", "descr": "Get the outer width of the element in [rendered dimensions](#notation/position) (includes width, padding, & border) in rendered dimensions." } ] }, { "name": "ele.height", "descr": "Get the height of the element. The raw height of the element is returned, independent of whether the element is visibile.", "formats": [ { "name": "ele.height", "descr": "Get the height of the element in [model dimensions](#notation/position)." }, { "name": "ele.outerHeight", "descr": "Get the outer height of the element in [model dimensions](#notation/position) (includes height, padding, & border)." }, { "name": "ele.renderedHeight", "descr": "Get the height of the element in [rendered dimensions](#notation/position)." }, { "name": "ele.renderedOuterHeight", "descr": "Get the outer height of the element in [rendered dimensions](#notation/position) (includes height, padding, & border) in rendered dimensions." } ] }, { "name": "eles.boundingBox", "pureAliases": [ "eles.boundingbox", "eles.bb" ], "descr": "Get the bounding box of the elements (in [model co-ordinates](#notation/position)).", "formats": [ { "name": "eles.boundingBox", "descr": "Get the bounding box of the elements in [model co-ordinates](#notation/position).", "args": [ { "name": "options", "descr": "An object containing options for the function.", "fields": [ { "name": "includeNodes", "descr": "A boolean indicating whether to include nodes in the bounding box (default `true`)." }, { "name": "includeEdges", "descr": "A boolean indicating whether to include edges in the bounding box (default `true`)." }, { "name": "includeLabels", "descr": "A boolean indicating whether to include labels overall in the bounding box (default `true`). This option overrides all other label options if `false`." }, { "name": "includeMainLabels", "descr": "A boolean indicating whether to include main (node or edge) `label`s in the bounding box (default `true`)." }, { "name": "includeSourceLabels", "descr": "A boolean indicating whether to include (edge) `source-label`s in the bounding box (default `true`)." }, { "name": "includeTargetLabels", "descr": "A boolean indicating whether to include (edge) `target-label`s in the bounding box (default `true`)." }, { "name": "includeOverlays", "descr": "A boolean indicating whether to include overlays (such as the one which appears when a node is clicked) in the bounding box (default `true`)." }, { "name": "includeUnderlays", "descr": "A boolean indicating whether to include underlays (configurable in node or edge style) in the bounding box (default `true`)." } ] } ] } ], "md": "collection/boundingBox" }, { "name": "eles.renderedBoundingBox", "pureAliases": [ "eles.renderedBoundingbox" ], "descr": "Get the [rendered](#notation/position) bounding box of the elements.", "formats": [ { "name": "eles.renderedBoundingBox", "descr": "Get the bounding box of the elements in rendered co-ordinates.", "args": [ { "name": "options", "descr": "An object containing options for the function.", "fields": [ { "name": "includeNodes", "descr": "A boolean indicating whether to include nodes in the bounding box (default `true`)." }, { "name": "includeEdges", "descr": "A boolean indicating whether to include edges in the bounding box (default `true`)." }, { "name": "includeLabels", "descr": "A boolean indicating whether to include labels overall in the bounding box (default `true`). This option overrides all other label options if `false`." }, { "name": "includeMainLabels", "descr": "A boolean indicating whether to include main (node or edge) `label`s in the bounding box (default `true`)." }, { "name": "includeSourceLabels", "descr": "A boolean indicating whether to include (edge) `source-label`s in the bounding box (default `true`)." }, { "name": "includeTargetLabels", "descr": "A boolean indicating whether to include (edge) `target-label`s in the bounding box (default `true`)." }, { "name": "includeOverlays", "descr": "A boolean indicating whether to include overlays (such as the one which appears when a node is clicked) in the bounding box (default `true`)." }, { "name": "includeUnderlays", "descr": "A boolean indicating whether to include underlays (configurable in node or edge style) in the bounding box (default `true`)." } ] } ] } ], "md": "collection/boundingBox" }, { "name": "node.grabbed", "descr": "Get whether a node is currently grabbed, meaning the user has hold of the node." }, { "name": "node.grabbable", "descr": "Get whether the user can grab a node." }, { "name": "nodes.grabify", "descr": "Allow the user to grab the nodes.", "md": "collection/grabify" }, { "name": "nodes.ungrabify", "descr": "Disallow the user to grab the nodes.", "md": "collection/ungrabify" }, { "name": "node.locked", "descr": "Get whether a node is locked, meaning that its position can not be changed." }, { "name": "nodes.lock", "descr": "Lock the nodes such that their positions can not be changed.", "md": "collection/lock" }, { "name": "nodes.unlock", "descr": "Unlock the nodes such that their positions can be changed.", "md": "collection/unlock" }, { "name": "ele.active", "descr": "Gets whether the element is active (e.g. on user tap, grab, etc)." }, { "name": "ele.pannable", "descr": "Gets whether the element allows passthrough panning.", "md": "collection/pannable" }, { "name": "eles.panify", "descr": "Enables passthrough panning on the elements.", "md": "collection/panify" }, { "name": "eles.unpanify", "descr": "Disables passthrough panning on the elements.", "md": "collection/unpanify" } ] }, { "name": "Edge points", "fns": [ { "name": "edge.controlPoints", "descr": "Get an array of control point positions for a [`curve-style: bezier`](#style/bezier-edges) or [`curve-style: unbundled-bezier`](#style/unbundled-bezier-edges) edge.", "formats": [ { "name": "edge.controlPoints", "descr": "Get the control points in [model co-ordinates](#notation/position)." }, { "name": "edge.renderedControlPoints", "descr": "Get the control points in [rendered co-ordinates](#notation/position)." } ], "md": "collection/controlPoints" }, { "name": "edge.segmentPoints", "descr": "Get an array of segment point positions (i.e. bend points) for a [`curve-style: segments`](#style/segments-edges) edge.", "formats": [ { "name": "edge.segmentPoints", "descr": "Get the segment points in [model co-ordinates](#notation/position)." }, { "name": "edge.renderedSegmentPoints", "descr": "Get the segment points in [rendered co-ordinates](#notation/position)." } ], "md": "collection/segmentPoints" }, { "name": "edge.sourceEndpoint", "descr": "Get the position of where the edge ends, towards the source node.", "formats": [ { "name": "edge.sourceEndpoint", "descr": "Get the source endpoint in [model co-ordinates](#notation/position)." }, { "name": "edge.renderedSourceEndpoint", "descr": "Get the target endpoint in [rendered co-ordinates](#notation/position)." } ] }, { "name": "edge.targetEndpoint", "descr": "Get the position of where the edge ends, towards the target node.", "formats": [ { "name": "edge.targetEndpoint", "descr": "Get the target endpoint in [model co-ordinates](#notation/position)." }, { "name": "edge.renderedTargetEndpoint", "descr": "Get the target endpoint in [rendered co-ordinates](#notation/position)." } ] }, { "name": "edge.midpoint", "descr": "Get the position of the midpoint of the edge.", "formats": [ { "name": "edge.midpoint", "descr": "Get the midpoint in [model co-ordinates](#notation/position)." }, { "name": "edge.renderedMidpoint", "descr": "Get the midpoint in [rendered co-ordinates](#notation/position)." } ], "md": "collection/midpoint.md" } ] }, { "name": "Layout", "fns": [ { "name": "eles.layout", "pureAliases": ["eles.createLayout", "eles.makeLayout"], "descr": "Get a new layout, which can be used to algorithmically position the nodes in the collection.", "formats": [ { "args": [ { "name": "options", "descr": "The layout options." } ] } ], "md": "collection/layout" }, { "name": "nodes.layoutPositions", "descr": "Position the nodes for a discrete/synchronous layout.", "extFn": true, "formats": [ { "args": [ { "name": "layout", "descr": "The layout." }, { "name": "options", "descr": "The layout options object." }, { "name": "function(ele, i)", "descr": "A function that returns the new position for the specified node.", "fields": [ { "name": "ele", "descr": "The node being iterated over for which the function should return a position to set." }, { "name": "i", "descr": "The index of the current node while iterating over the nodes in the layout." } ] } ] } ], "md": "collection/layoutPositions" }, { "name": "node.layoutDimensions", "descr": "Get the node width and height. This function is intended for use in layout positioning to do overlap detection.", "extFn": true, "formats": [ { "args": [ { "name": "options", "descr": "The layout options object." } ] } ], "md": "collection/layoutDimensions" } ] }, { "name": "Selection", "fns": [ { "name": "ele.selected", "descr": "Get whether the element is selected." }, { "name": "eles.select", "descr": "Make the elements selected. Elements outside the collection are not affected.", "md": "collection/select" }, { "name": "eles.unselect", "pureAliases": ["eles.deselect"], "descr": "Make the elements not selected. Elements outside the collection are not affected.", "md": "collection/unselect" }, { "name": "ele.selectable", "descr": "Get whether the element's selection state is mutable." }, { "name": "eles.selectify", "descr": "Make the selection states of the elements mutable.", "md": "collection/selectify" }, { "name": "eles.unselectify", "descr": "Make the selection states of the elements immutable.", "md": "collection/unselectify" } ] }, { "name": "Style", "fns": [ { "name": "eles.addClass", "descr": "Add classes to elements. The classes should be specified in the [stylesheet](#style) in order to have an effect on the rendered style of the elements.", "formats": [ { "args": [ { "name": "classes", "descr": "An array (or a space-separated string) of class names to add to the elements." } ] } ], "md": "collection/addClass" }, { "name": "eles.removeClass", "descr": "Remove classes from elements. The classes should be specified in the [stylesheet](#style) in order to have an effect on the rendered style of the elements.", "formats": [ { "args": [ { "name": "classes", "descr": "An array (or a space-separated string) of class names to remove from the elements." } ] } ], "md": "collection/removeClass" }, { "name": "eles.toggleClass", "descr": "Toggle whether the elements have the specified classes. The classes should be specified in the [stylesheet](#style) in order to have an effect on the rendered style of the elements.", "formats": [ { "args": [ { "name": "classes", "descr": "An array (or a space-separated string) of class names to toggle on the elements." }, { "name": "toggle", "descr": "Instead of automatically toggling, adds the classes on truthy values or removes them on falsey values.", "optional": true } ] } ], "md": "collection/toggleClass" }, { "name": "eles.classes", "pureAliases": ["eles.className", "eles.classNames"], "descr": "Get or replace the current list of classes on the elements with the specified list.", "formats": [ { "name": "ele.classes", "descr": "Get the list of classes as an array for the element." }, { "name": "eles.classes", "descr": "Replace the list of classes for all elements in the collection.", "args": [ { "name": "classes", "descr": "An array (or a space-separated string) of class names that replaces the current class list." } ] } ], "md": "collection/classes" }, { "name": "eles.flashClass", "descr": "Add classes to the elements, and then remove the classes after a specified duration.", "formats": [ { "args": [ { "name": "classes", "descr": "An array (or a space-separated string) of class names to flash on the elements." }, { "name": "duration", "descr": "The duration in milliseconds that the classes should be added on the elements. After the duration, the classes are removed.", "optional": true } ] } ], "md": "collection/flashClass" }, { "name": "ele.hasClass", "descr": "Get whether an element has a particular class.", "formats": [ { "args": [ { "name": "className", "descr": "The name of the class to test for." } ] } ], "md": "collection/hasClass" }, { "name": "eles.style", "pureAliases": [ "eles.css" ], "descr": "Get or override the style of the element.", "formatsSameFn": true, "formats": [ { "name": "ele.style", "descr": "Get a name-value pair object containing visual style properties and their values for the element." }, { "name": "ele.style", "descr": "Get a particular style property value.", "args": [ { "name": "name", "descr": "The name of the visual style property to get." } ] }, { "name": "eles.style", "descr": "Set a particular style property value.", "args": [ { "name": "name", "descr": "The name of the visual style property to set." }, { "name": "value", "descr": "The value of the visual style property to set." } ] }, { "name": "eles.style", "descr": "Set several particular style property values.", "args": [ { "name": "obj", "descr": "An object of style property name-value pairs to set." } ] }, { "name": "eles.removeStyle", "descr": "Remove all style overrides." }, { "name": "eles.removeStyle", "descr": "Remove specific style overrides.", "args": [ { "name": "names", "descr": "A space-separated list of property names to remove overrides." } ] } ], "md": "collection/style" }, { "name": "ele.numericStyle", "descr": "Get the numeric value of a style property in preferred units that can be used for calculations.", "formats": [ { "args": [ { "name": "name", "descr": "The name of the style property to get." } ] } ], "md": "collection/numericStyle" }, { "name": "ele.numericStyleUnits", "descr": "Get the units that `ele.numericStyle()` is expressed in, for a particular property.", "formats": [ { "args": [ { "name": "name", "descr": "The name of the style property to get." } ] } ] }, { "name": "ele.visible", "descr": "Get whether the element is [visible](#style/visibility) (i.e. `display: element` and `visibility: visible`).", "formats": [ { "name": "ele.visible", "descr": "Get whether the element is visible." }, { "name": "ele.hidden", "descr": "Get whether the element is hidden." } ] }, { "name": "ele.effectiveOpacity", "descr": "Get the effective opacity of the element (i.e. on-screen opacity), which takes into consideration parent node opacity." }, { "name": "ele.transparent", "descr": "Get whether the element's effective opacity is completely transparent, which takes into consideration parent node opacity." } ] }, { "name": "Animation", "fns": [ { "name": "ele.animated", "descr": "Get whether the element is currently being animated." }, { "name": "eles.animate", "descr": "Animate the elements.", "formats": [ { "args": [ { "name": "options", "descr": "An object containing the details of the animation.", "fields": [ { "name": "position", "descr": "A position to which the elements will be animated." }, { "name": "renderedPosition", "descr": "A rendered position to which the elements will be animated." }, { "name": "style", "descr": "An object containing name-value pairs of style properties to animate." }, { "name": "duration", "descr": "The duration of the animation in milliseconds." }, { "name": "queue", "descr": "A boolean indicating whether to queue the animation (default `true`)." }, { "name": "easing", "descr": "A [`transition-timing-function`](#style/transition-animation) easing style string that shapes the animation progress curve." }, { "name": "complete", "descr": "A function to call when the animation is done." }, { "name": "step", "descr": "A function to call each time the animation steps." } ] } ] } ], "md": "collection/animate" }, { "name": "ele.animation", "descr": "Get an [animation](#animations) for the element.", "formats": [ { "args": [ { "name": "options", "descr": "An object containing the details of the animation.", "fields": [ { "name": "position", "descr": "A position to which the elements will be animated." }, { "name": "renderedPosition", "descr": "A rendered position to which the elements will be animated." }, { "name": "style", "descr": "An object containing name-value pairs of style properties to animate." }, { "name": "duration", "descr": "The duration of the animation in milliseconds." }, { "name": "easing", "descr": "A [`transition-timing-function`](#style/transition-animation) easing style string that shapes the animation progress curve." }, { "name": "complete", "descr": "A function to call when the animation is done." }, { "name": "step", "descr": "A function to call each time the animation steps." } ] } ] } ] }, { "name": "eles.delay", "descr": "Add a delay between queued animations for the elements.", "formats": [ { "args": [ { "name": "duration", "descr": "How long the delay should be in milliseconds." }, { "name": "complete", "descr": "A function to call when the delay is complete." } ] } ], "md": "collection/delay" }, { "name": "ele.delayAnimation", "descr": "Get a delay [animation](#animations) for the element.", "formats": [ { "args": [ { "name": "duration", "descr": "How long the delay should be in milliseconds." } ] } ] }, { "name": "eles.stop", "descr": "Stop all animations that are currently running.", "formats": [ { "args": [ { "name": "clearQueue", "descr": "A boolean, indicating whether the queue of animations should be emptied." }, { "name": "jumpToEnd", "descr": "A boolean, indicating whether the currently-running animations should jump to their ends rather than just stopping midway." } ] } ], "md": "collection/stop" }, { "name": "eles.clearQueue", "descr": "Remove all queued animations for the elements." } ] }, { "name": "Comparison", "fns": [ { "name": "eles.same", "descr": "Determine whether this collection contains exactly the same elements as another collection.", "formats": [ { "args": [ { "name": "eles", "descr": "The other elements to compare to." } ] } ], "md": "collection/same" }, { "name": "eles.anySame", "descr": "Determine whether this collection contains any of the same elements as another collection.", "formats": [ { "args": [ { "name": "eles", "descr": "The other elements to compare to." } ] } ], "md": "collection/anySame" }, { "name": "eles.contains", "pureAliases": ["eles.has"], "descr": "Determine whether this collection contains all of the elements of another collection.", "formats": [ { "args": [ { "name": "eles", "descr": "The other elements to compare to." } ] } ], "md": "collection/contains" }, { "name": "eles.allAreNeighbors", "pureAliases": ["eles.allAreNeighbours"], "descr": "Determine whether all elements in the specified collection are in the neighbourhood of the calling collection.", "formats": [ { "args": [ { "name": "eles", "descr": "The other elements to compare to." } ] } ], "md": "collection/allAreNeighbors" }, { "name": "eles.is", "descr": "Determine whether any element in this collection matches a selector.", "formats": [ { "args": [ { "name": "selector", "descr": "The selector to match against." } ] } ], "md": "collection/is" }, { "name": "eles.allAre", "descr": "Determine whether all elements in the collection match a selector.", "formats": [ { "args": [ { "name": "selector", "descr": "The selector to match against." } ] } ], "md": "collection/allAre" }, { "name": "eles.some", "descr": "Determine whether any element in this collection satisfies the specified test function.", "formats": [ { "args": [ { "name": "function(ele, i, eles)", "descr": "The test function that returns truthy values for elements that satisfy the test and falsey values for elements that do not satisfy the test.", "fields": [ { "name": "ele", "descr": "The current element." }, { "name": "i", "descr": "The index of the current element." }, { "name": "eles", "descr": "The collection of elements being tested." } ] }, { "name": "thisArg", "descr": "The value for `this` within the test function.", "optional": "true" } ] } ], "md": "collection/some" }, { "name": "eles.every", "descr": "Determine whether all elements in this collection satisfy the specified test function.", "formats": [ { "args": [ { "name": "function(ele, i, eles)", "descr": "The test function that returns truthy values for elements that satisfy the test and falsey values for elements that do not satisfy the test.", "fields": [ { "name": "ele", "descr": "The current element." }, { "name": "i", "descr": "The index of the current element." }, { "name": "eles", "descr": "The collection of elements being tested." } ] }, { "name": "thisArg", "descr": "The value for `this` within the test function.", "optional": "true" } ] } ], "md": "collection/every" } ] }, { "name": "Iteration", "fns": [ { "name": "eles.size", "descr": "Get the number of elements in the collection.", "md": "collection/size" }, { "name": "eles.empty", "descr": "Get whether the collection is empty, meaning it has no elements.", "formats": [ { "name": "eles.empty", "descr": "Get whether the collection is empty." }, { "name": "eles.nonempty", "descr": "Get whether the collection is nonempty." } ] }, { "name": "eles.forEach", "pureAliases": ["eles.each"], "descr": "Iterate over the elements in the collection.", "formats": [ { "args": [ { "name": "function(ele, i, eles)", "descr": "The function executed each iteration.", "fields": [ { "name": "ele", "descr": "The current element." }, { "name": "i", "descr": "The index of the current element." }, { "name": "eles", "descr": "The collection of elements being iterated." } ] }, { "name": "thisArg", "descr": "The value for `this` within the iterating function.", "optional": "true" } ] } ], "md": "collection/forEach" }, { "name": "eles.eq", "descr": "Get an element at a particular index in the collection.", "formats": [ { "args": [ { "name": "index", "descr": "The index of the element to get." } ] }, { "name": "eles.first", "descr": "Get the first element in the collection." }, { "name": "eles.last", "descr": "Get the last element in the collection." } ], "md": "collection/eq" }, { "name": "eles.slice", "descr": "Get a subset of the elements in the collection based on specified indices.", "formats": [ { "args": [ { "name": "start", "descr": "An integer that specifies where to start the selection. The first element has an index of 0. Use negative numbers to select from the end of an array.", "optional": true }, { "name": "end", "descr": "An integer that specifies where to end the selection. If omitted, all elements from the start position and to the end of the array will be selected. Use negative numbers to select from the end of an array.", "optional": true } ] } ] }, { "name": "eles.toArray", "descr": "Get the collection as an array, maintaining the order of the elements." } ] }, { "name": "Building & filtering", "fns": [ { "name": "eles.getElementById", "pureAliases": ["eles.$id"], "descr": "Get an element in the collection from its ID in a very performant way.", "formats": [ { "args": [ { "name": "id", "descr": "The ID of the element to get." } ] } ] }, { "name": "eles.union", "pureAliases": [ "eles.add", "eles.or", "eles['u']", "eles['+']", "eles['|']" ], "descr": "Get a new collection, resulting from adding the collection with another one", "formats": [ { "args": [ { "name": "eles", "descr": "The elements to add." } ] }, { "args": [ { "name": "selector", "descr": "Elements in the graph matching this selector are added." } ] } ], "md": "collection/union" }, { "name": "eles.difference", "pureAliases": [ "eles.not", "eles.subtract", "eles.relativeComplement", "eles['\\\\']", "eles['!']", "eles['-']" ], "descr": "Get a new collection, resulting from the collection without some specified elements.", "formats": [ { "args": [ { "name": "eles", "descr": "The elements that will not be in the resultant collection." } ] }, { "args": [ { "name": "selector", "descr": "Elements from the calling collection matching this selector will not be in the resultant collection." } ] } ], "md": "collection/difference" }, { "name": "eles.absoluteComplement", "pureAliases": [ "eles.abscomp", "eles.complement" ], "descr": "Get all elements in the graph that are not in the calling collection.", "md": "collection/absoluteComplement" }, { "name": "eles.intersection", "pureAliases": [ "eles.intersect", "eles.and", "eles['n']", "eles['&']", "eles['.']" ], "descr": "Get the elements in both this collection and another specified collection.", "formats": [ { "args": [ { "name": "eles", "descr": "The elements to intersect with." } ] }, { "args": [ { "name": "selector", "descr": "A selector representing the elements to intersect with. All elements in the graph matching the selector are used as the passed collection." } ] } ], "md": "collection/intersection" }, { "name": "eles.symmetricDifference", "pureAliases": [ "eles.symdiff", "eles.xor", "eles['^']", "eles['(+)']", "eles['(-)']" ], "descr": "Get the elements that are in the calling collection or the passed collection but not in both.", "formats": [ { "args": [ { "name": "eles", "descr": "The elements to apply the symmetric difference with." } ] }, { "args": [ { "name": "selector", "descr": "A selector representing the elements to apply the symmetric difference with. All elements in the graph matching the selector are used as the passed collection." } ] } ], "md": "collection/symmetricDifference" }, { "name": "eles.diff", "descr": "Perform a traditional left/right diff on the two collections.", "formats": [ { "args": [ { "name": "eles", "descr": "The elements on the right side of the diff." } ] }, { "args": [ { "name": "selector", "descr": "A selector representing the elements on the right side of the diff. All elements in the graph matching the selector are used as the passed collection." } ] } ], "md": "collection/diff" }, { "name": "eles.merge", "descr": "Perform a in-place merge of the given elements into the calling collection.", "formats": [ { "args": [ { "name": "eles", "descr": "The elements to merge in-place." } ] }, { "args": [ { "name": "selector", "descr": "A selector representing the elements to merge. All elements in the graph matching the selector are used as the passed collection." } ] } ], "md": "collection/merge" }, { "name": "eles.unmerge", "descr": "Perform an in-place operation on the calling collection to remove the given elements.", "formats": [ { "args": [ { "name": "eles", "descr": "The elements to remove in-place." } ] }, { "args": [ { "name": "selector", "descr": "A selector representing the elements to remove. All elements in the graph matching the selector are used as the passed collection." } ] } ], "md": "collection/unmerge" }, { "name": "eles.filter", "descr": "Get a new collection containing elements that are accepted by the specified filter function or selector.", "formats": [ { "args": [ { "name": "function(ele, i, eles)", "descr": "The filter function that returns truthy values for elements to include and falsey values for elements to exclude.", "fields": [ { "name": "ele", "descr": "The current element." }, { "name": "i", "descr": "The index of the current element." }, { "name": "eles", "descr": "The collection of elements being filtered." } ] }, { "name": "thisArg", "descr": "The value for `this` within the iterating function.", "optional": "true" } ] }, { "name": "eles.filter", "descr": "Get the elements that match the specified selector.", "args": [ { "name": "selector", "descr": "The selector to match against." } ] }, { "name": "eles.nodes", "descr": "Get the nodes that match the specified selector.", "args": [ { "name": "selector", "descr": "The selector to match against." } ] }, { "name": "eles.edges", "descr": "Get the edges that match the specified selector.", "args": [ { "name": "selector", "descr": "The selector to match against." } ] } ], "md": "collection/filter" }, { "name": "eles.sort", "descr": "Get a new collection containing the elements sorted by the specified comparison function.", "formats": [ { "args": [ { "name": "function(ele1, ele2)", "descr": "The sorting comparison function that returns a negative number for `ele1` before `ele2`, 0 for `ele1` same as `ele2`, or a positive number for `ele1` after `ele2`." } ] } ], "md": "collection/sort" }, { "name": "eles.map", "descr": "Get an array containing values mapped from the collection.", "formats": [ { "args": [ { "name": "function(ele, i, eles)", "descr": "The function that returns the mapped value for each element.", "fields": [ { "name": "ele", "descr": "The current element." }, { "name": "i", "descr": "The index of the current element." }, { "name": "eles", "descr": "The collection of elements being mapped." } ] }, { "name": "thisArg", "descr": "The value for `this` within the iterating function.", "optional": "true" } ] } ], "md": "collection/map" }, { "name": "eles.reduce", "descr": "Reduce a single value by applying a function against an accumulator and each value of the collection.", "formats": [ { "args": [ { "name": "function(prevVal, ele, i, eles)", "descr": "The function that returns the accumulated value given the previous value and the current element.", "fields": [ { "name": "prevVal", "descr": "The value accumulated from previous elements." }, { "name": "ele", "descr": "The current element." }, { "name": "i", "descr": "The index of the current element." }, { "name": "eles", "descr": "The collection of elements being reduced." } ] } ] } ], "md": "collection/reduce" }, { "name": "eles.min", "descr": "Find a minimum value in a collection.", "formats": [ { "args": [ { "name": "function(ele, i, eles)", "descr": "The function that returns the value to compare for each element.", "fields": [ { "name": "ele", "descr": "The current element." }, { "name": "i", "descr": "The index of the current element." }, { "name": "eles", "descr": "The collection of elements being searched." } ] }, { "name": "thisArg", "descr": "The value for `this` within the iterating function.", "optional": "true" } ] } ], "md": "collection/min" }, { "name": "eles.max", "descr": "Find a maximum value and the corresponding element.", "formats": [ { "args": [ { "name": "function(ele, i, eles)", "descr": "The function that returns the value to compare for each element.", "fields": [ { "name": "ele", "descr": "The current element." }, { "name": "i", "descr": "The index of the current element." }, { "name": "eles", "descr": "The collection of elements being searched." } ] }, { "name": "thisArg", "descr": "The value for `this` within the iterating function.", "optional": "true" } ] } ], "md": "collection/max" } ] }, { "name": "Traversing", "fns": [ { "name": "eles.neighborhood", "descr": "Get the neighbourhood of the elements.", "formats": [ { "name": "eles.neighborhood", "pureAliases": ["eles.neighbourhood"], "descr": "Get the open neighbourhood of the elements.", "args": [ { "name": "selector", "descr": "An optional selector that is used to filter the resultant collection.", "optional": true } ] }, { "name": "eles.openNeighborhood", "pureAliases": ["eles.openNeighbourhood"], "descr": "Get the open neighbourhood of the elements.", "args": [ { "name": "selector", "descr": "An optional selector that is used to filter the resultant collection.", "optional": true } ] }, { "name": "eles.closedNeighborhood", "pureAliases": ["eles.closedNeighbourhood"], "descr": "Get the closed neighbourhood of the elements.", "args": [ { "name": "selector", "descr": "An optional selector that is used to filter the resultant collection.", "optional": true } ] } ], "md": "collection/neighborhood" }, { "name": "eles.components", "descr": "Get the connected components.", "formats": [ { "name": "eles.components", "descr": "Get the connected components, considering only the elements in the calling collection. An array of collections is returned, with each collection representing a component." }, { "name": "eles.componentsOf", "descr": "Get the connected components to which the passed elements belong. The components consider only the subgraph made by the elements in the calling collection. An array of collections is returned, with each collection representing a component.", "args": [ { "name": "root", "descr": "The components that contain these elements are returned." } ] }, { "name": "ele.component", "descr": "Get the connected component for the calling element. The component considers all elements in the graph." } ] }, { "name": "nodes.edgesWith", "descr": "Get the edges connecting the collection to another collection. Direction of the edges does not matter.", "formats": [ { "args": [ { "name": "eles", "descr": "The other collection." } ] }, { "args": [ { "name": "selector", "descr": "The other collection, specified as a selector which is matched against all elements in the graph." } ] } ], "md": "collection/edgesWith" }, { "name": "nodes.edgesTo", "descr": "Get the edges coming from the collection (i.e. the source) going to another collection (i.e. the target).", "formats": [ { "args": [ { "name": "eles", "descr": "The other collection." } ] }, { "args": [ { "name": "selector", "descr": "The other collection, specified as a selector which is matched against all elements in the graph." } ] } ], "md": "collection/edgesTo" }, { "name": "edges.connectedNodes", "descr": "Get the nodes connected to the edges in the collection.", "formats": [ { "args": [ { "name": "selector", "descr": "An optional selector that is used to filter the resultant collection.", "optional": true } ] } ], "md": "collection/connectedNodes" }, { "name": "nodes.connectedEdges", "descr": "Get the edges connected to the nodes in the collection.", "formats": [ { "args": [ { "name": "selector", "descr": "An optional selector that is used to filter the resultant collection.", "optional": true } ] } ], "md": "collection/connectedEdges" }, { "name": "edge.source", "descr": "Get source node of this edge.", "formats": [ { "args": [ { "name": "selector", "descr": "An optional selector that is used to filter the resultant collection.", "optional": true } ] } ], "md": "collection/source" }, { "name": "edges.sources", "descr": "Get source nodes connected to the edges in the collection.", "formats": [ { "args": [ { "name": "selector", "descr": "An optional selector that is used to filter the resultant collection.", "optional": true } ] } ], "md": "collection/sources" }, { "name": "edge.target", "descr": "Get target node of this edge.", "formats": [ { "args": [ { "name": "selector", "descr": "An optional selector that is used to filter the resultant collection.", "optional": true } ] } ], "md": "collection/target" }, { "name": "edges.targets", "descr": "Get target nodes connected to the edges in the collection.", "formats": [ { "args": [ { "name": "selector", "descr": "An optional selector that is used to filter the resultant collection.", "optional": true } ] } ], "md": "collection/targets" }, { "name": "edges.parallelEdges", "descr": "Get edges parallel to those in the collection.", "formats": [ { "args": [ { "name": "selector", "descr": "An optional selector that is used to filter the resultant collection.", "optional": true } ] } ], "md": "collection/parallelEdges" }, { "name": "edges.codirectedEdges", "descr": "Get edges codirected to those in the collection.", "formats": [ { "args": [ { "name": "selector", "descr": "An optional selector that is used to filter the resultant collection.", "optional": true } ] } ], "md": "collection/codirectedEdges" }, { "name": "nodes.roots", "descr": "From the set of calling nodes, get the nodes which are roots (i.e. no incoming edges, as in a directed acyclic graph).", "formats": [ { "args": [ { "name": "selector", "descr": "An optional selector that is used to filter the resultant collection.", "optional": true } ] } ] }, { "name": "nodes.leaves", "descr": "From the set of calling nodes, get the nodes which are leaves (i.e. no outgoing edges, as in a directed acyclic graph).", "formats": [ { "args": [ { "name": "selector", "descr": "An optional selector that is used to filter the resultant collection.", "optional": true } ] } ] }, { "name": "nodes.outgoers", "descr": "Get edges (and their targets) coming out of the nodes in the collection.", "formats": [ { "args": [ { "name": "selector", "descr": "An optional selector that is used to filter the resultant collection.", "optional": true } ] } ], "md": "collection/outgoers" }, { "name": "nodes.successors", "descr": "Recursively get edges (and their targets) coming out of the nodes in the collection (i.e. the outgoers, the outgoers' outgoers, ...).", "formats": [ { "args": [ { "name": "selector", "descr": "An optional selector that is used to filter the resultant collection.", "optional": true } ] } ], "md": "collection/successors" }, { "name": "nodes.incomers", "descr": "Get edges (and their sources) coming into the nodes in the collection.", "formats": [ { "args": [ { "name": "selector", "descr": "An optional selector that is used to filter the resultant collection.", "optional": true } ] } ], "md": "collection/incomers" }, { "name": "nodes.predecessors", "descr": "Recursively get edges (and their sources) coming into the nodes in the collection (i.e. the incomers, the incomers' incomers, ...).", "formats": [ { "args": [ { "name": "selector", "descr": "An optional selector that is used to filter the resultant collection.", "optional": true } ] } ], "md": "collection/predecessors" } ] }, { "name": "Search", "md": "collection/algorithms", "fns": [ { "name": "eles.breadthFirstSearch", "pureAliases": [ "eles.bfs" ], "descr": "Perform a [breadth-first search](https://en.wikipedia.org/wiki/Breadth-first_search) within the elements in the collection.", "formats": [ { "args": [ { "name": "options", "fields": [ { "name": "root", "descr": "The root nodes (selector or collection) to start the search from." }, { "name": "visit: function(v, e, u, i, depth)", "descr": "A handler function that is called when a node is visited in the search. The handler returns `true` when it finds the desired node, and it returns `false` to cancel the search.", "optional": true, "fields": [ { "name": "v", "descr": "The current node." }, { "name": "e", "descr": "The edge connecting the previous node to the current node." }, { "name": "u", "descr": "The previous node." }, { "name": "i", "descr": "The index indicating this node is the ith visited node." }, { "name": "depth", "descr": "How many edge hops away this node is from the root nodes." } ] }, { "name": "directed", "descr": "A boolean indicating whether the algorithm should only go along edges from source to target (default `false`).", "optional": true } ] } ] } ], "md": "collection/breadthFirstSearch" }, { "name": "eles.depthFirstSearch", "pureAliases": [ "eles.dfs" ], "descr": "Perform a [depth-first search](https://en.wikipedia.org/wiki/Depth-first_search) within the elements in the collection.", "formats": [ { "args": [ { "name": "options", "fields": [ { "name": "root", "descr": "The root nodes (selector or collection) to start the search from." }, { "name": "visit: function(v, e, u, i, depth)", "descr": "A handler function that is called when a node is visited in the search. The handler returns `true` when it finds the desired node, and it returns `false` to cancel the search.", "optional": true, "fields": [ { "name": "v", "descr": "The current node." }, { "name": "e", "descr": "The edge connecting the previous node to the current node." }, { "name": "u", "descr": "The previous node." }, { "name": "i", "descr": "The index indicating this node is the ith visited node." }, { "name": "depth", "descr": "How many edge hops away this node is from the root nodes." } ] }, { "name": "directed", "descr": "A boolean indicating whether the algorithm should only go along edges from source to target (default `false`).", "optional": true } ] } ] } ], "md": "collection/depthFirstSearch" }, { "name": "eles.dijkstra", "descr": "Perform [Dijkstra's](https://en.wikipedia.org/wiki/Dijkstra%27s_algorithm) algorithm on the elements in the collection. This finds the shortest paths to all other nodes in the collection from the root node.", "formats": [ { "args": [ { "name": "options", "fields": [ { "name": "root", "descr": "The root node (selector or collection) where the algorithm starts." }, { "name": "weight: function(edge)", "descr": "A function that returns the positive numeric weight for the edge. The weight indicates the cost of going from one node to another node.", "optional": true }, { "name": "directed", "descr": "A boolean indicating whether the algorithm should only go along edges from source to target (default `false`).", "optional": true } ] } ] } ], "md": "collection/dijkstra" }, { "name": "eles.aStar", "descr": "Perform the [A*](https://en.wikipedia.org/wiki/A*_search_algorithm) search algorithm on the elements in the collection. This finds the shortest path from the root node to the goal node.", "formats": [ { "args": [ { "name": "options", "fields": [ { "name": "root", "descr": "The root node (selector or collection) where the search starts." }, { "name": "goal", "descr": "The goal node (selector or collection) where the search ends." }, { "name": "weight: function(edge)", "descr": "A function that returns the positive numeric weight for the edge. The weight indicates the cost of going from one node to another node.", "optional": true }, { "name": "heuristic: function(node)", "descr": "A function that returns an estimation (cannot be overestimation) on the shortest distance from the current node to the goal.", "optional": true }, { "name": "directed", "descr": "A boolean indicating whether the algorithm should only go along edges from source to target (default `false`).", "optional": true } ] } ] } ], "md": "collection/aStar" }, { "name": "eles.floydWarshall", "descr": "Perform the [Floyd-Warshall](https://en.wikipedia.org/wiki/Floyd%E2%80%93Warshall_algorithm) search algorithm on the elements in the collection. This finds the shortest path between all pairs of nodes.", "formats": [ { "args": [ { "name": "options", "fields": [ { "name": "weight: function(edge)", "descr": "A function that returns the numeric weight for the edge. The weight indicates the cost of going from one node to another node. The weight may be positive or negative, but no negative cycles are allowed.", "optional": true }, { "name": "directed", "descr": "A boolean indicating whether the algorithm should only go along edges from source to target (default `false`).", "optional": true } ] } ] } ], "md": "collection/floydWarshall" }, { "name": "eles.bellmanFord", "descr": "Perform the [Bellman-Ford](https://en.wikipedia.org/wiki/Bellman%E2%80%93Ford_algorithm) search algorithm on the elements in the collection. This finds the shortest path from the starting node to all other nodes in the collection.", "formats": [ { "args": [ { "name": "options", "fields": [ { "name": "root", "descr": "The root node (selector or collection) where the search starts." }, { "name": "weight: function(edge)", "descr": "A function that returns the numeric weight for the edge. The weight indicates the cost of going from one node to another node. The weight may be positive or negative.", "optional": true }, { "name": "directed", "descr": "A boolean indicating whether the algorithm should only go along edges from source to target (default `false`).", "optional": true } ] } ] } ], "md": "collection/bellmanFord" }, { "name": "eles.hierholzer", "descr": "Perform the [Hierholzer](https://en.wikipedia.org/wiki/Eulerian_path#Hierholzer's_algorithm) search algorithm on the elements in the collection. This finds Eulerian trails and circuits.", "formats": [ { "args": [ { "name": "options", "fields": [ { "name": "root", "descr": "The root node (selector or collection) where the search starts.", "optional": true }, { "name": "directed", "descr": "A boolean indicating whether the algorithm should only go along edges from source to target (default `false`).", "optional": true } ] } ] } ], "md": "collection/hierholzer" } ] }, { "name": "Spanning", "fns": [ { "name": "eles.kruskal", "descr": "Perform [Kruskal's](https://en.wikipedia.org/wiki/Kruskal%27s_algorithm) algorithm on the elements in the collection, returning the minimum spanning tree, assuming undirected edges.", "formats": [ { "args": [ { "name": "function(edge)", "descr": "A function that returns the positive numeric weight for the edge.", "optional": true } ] } ], "md": "collection/kruskal" } ] }, { "name": "Cut", "fns": [ { "name": "eles.kargerStein", "descr": "Finds the minimum cut in a graph using the [Karger-Stein](https://en.wikipedia.org/wiki/Karger%27s_algorithm#Karger.E2.80.93Stein_algorithm) algorithm. The optimal result is found with a high probability, but without guarantee.", "md": "collection/kargerStein" }, { "name": "eles.hopcroftTarjanBiconnected", "pureAliases": [ "eles.hopcroftTarjanBiconnectedComponents", "eles.htb", "eles.htbc" ], "descr": "Finds the [biconnected components](https://en.wikipedia.org/wiki/Biconnected_component) in an undirected graph, as well as their respective cut vertices, using an algorithm due to Hopcroft and Tarjan.", "md": "collection/hopcroftTarjanBiconnected" }, { "name": "eles.tarjanStronglyConnected", "pureAliases": [ "eles.tarjanStronglyConnectedComponents", "eles.tsc", "eles.tscc" ], "descr": "Finds the [strongly connected components](https://en.wikipedia.org/wiki/Strongly_connected_component) of a directed graph using Tarjan's algorithm.", "md": "collection/tarjanStronglyConnected" } ] }, { "name": "Centrality", "fns": [ { "name": "eles.degreeCentrality", "pureAliases": ["eles.dc"], "descr": "Considering only the elements in the calling collection, calculate the [degree centrality](https://en.wikipedia.org/wiki/Centrality#Degree_centrality) of the specified root node.", "formats": [ { "args": [ { "name": "options", "fields": [ { "name": "root", "descr": "The root node (selector or collection) for which the centrality calculation is made." }, { "name": "weight: function(edge)", "descr": "A function that returns the positive weight for the edge. The weight indicates the importance of the edge, with a high value representing high importance.", "optional": true }, { "name": "alpha", "descr": "The alpha value for the centrality calculation, ranging on [0, 1]. With value 0 (default), disregards edge weights and solely uses number of edges in the centrality calculation. With value 1, disregards number of edges and solely uses the edge weights in the centrality calculation.", "optional": true }, { "name": "directed", "descr": "A boolean indicating whether the directed indegree and outdegree centrality is calculated (`true`) or whether the undirected centrality is calculated (`false`, default).", "optional": true } ] } ] } ], "md": "collection/degreeCentrality" }, { "name": "eles.degreeCentralityNormalized", "pureAliases": ["eles.dcn", "eles.degreeCentralityNormalised"], "descr": "Considering only the elements in the calling collection, calculate the normalised [degree centrality](https://en.wikipedia.org/wiki/Centrality#Degree_centrality) of the nodes.", "formats": [ { "args": [ { "name": "options", "fields": [ { "name": "weight: function(edge)", "descr": "A function that returns the positive weight for the edge. The weight indicates the importance of the edge, with a high value representing high importance.", "optional": true }, { "name": "alpha", "descr": "The alpha value for the centrality calculation, ranging on [0, 1]. With value 0 (default), disregards edge weights and solely uses number of edges in the centrality calculation. With value 1, disregards number of edges and solely uses the edge weights in the centrality calculation.", "optional": true }, { "name": "directed", "descr": "A boolean indicating whether the directed indegree and outdegree centrality is calculated (`true`) or whether the undirected centrality is calculated (`false`, default).", "optional": true } ] } ] } ], "md": "collection/degreeCentralityNormalized" }, { "name": "eles.closenessCentrality", "pureAliases": ["eles.cc"], "descr": "Considering only the elements in the calling collection, calculate the [closeness centrality](https://en.wikipedia.org/wiki/Closeness_centrality) of the specified root node.", "formats": [ { "args": [ { "name": "options", "fields": [ { "name": "root", "descr": "The root node (selector or collection) for which the centrality calculation is made." }, { "name": "weight: function(edge)", "descr": "A function that returns the positive weight for the edge. The weight indicates the importance of the edge, with a high value representing high importance.", "optional": true }, { "name": "directed", "descr": "A boolean indicating whether the algorithm operates on edges in a directed manner from source to target (`true`) or whether the algorithm operates in an undirected manner (`false`, default).", "optional": true }, { "name": "harmonic", "descr": "A boolean indicating whether the algorithm calculates the harmonic mean (`true`, default) or the arithmetic mean (`false`) of distances. The harmonic mean is very useful for graphs that are not strongly connected.", "optional": true } ] } ] } ], "md": "collection/closenessCentrality" }, { "name": "eles.closenessCentralityNormalized", "pureAliases": ["eles.ccn", "eles.closenessCentralityNormalised"], "descr": "Considering only the elements in the calling collection, calculate the [closeness centrality](https://en.wikipedia.org/wiki/Closeness_centrality) of the nodes.", "formats": [ { "args": [ { "name": "options", "fields": [ { "name": "weight: function(edge)", "descr": "A function that returns the positive weight for the edge. The weight indicates the importance of the edge, with a high value representing high importance.", "optional": true }, { "name": "directed", "descr": "A boolean indicating whether the algorithm operates on edges in a directed manner from source to target (`true`) or whether the algorithm operates in an undirected manner (`false`, default).", "optional": true }, { "name": "harmonic", "descr": "A boolean indicating whether the algorithm calculates the harmonic mean (`true`, default) or the arithmetic mean (`false`) of distances. The harmonic mean is very useful for graphs that are not strongly connected.", "optional": true } ] } ] } ], "md": "collection/closenessCentralityNormalized" }, { "name": "eles.betweennessCentrality", "pureAliases": ["eles.bc"], "descr": "Considering only the elements in the calling collection, calculate the [betweenness centrality](https://en.wikipedia.org/wiki/Betweenness_centrality) of the nodes.", "formats": [ { "args": [ { "name": "options", "fields": [ { "name": "weight: function(edge)", "descr": "A function that returns the positive weight for the edge. The weight indicates the importance of the edge, with a high value representing high importance.", "optional": true }, { "name": "directed", "descr": "A boolean indicating whether the algorithm operates on edges in a directed manner from source to target (`true`) or whether the algorithm operates in an undirected manner (`false`, default).", "optional": true } ] } ] } ], "md": "collection/betweennessCentrality" }, { "name": "eles.pageRank", "descr": "Rank the nodes in the collection using the [Page Rank](https://en.wikipedia.org/wiki/PageRank) algorithm.", "formats": [ { "args": [ { "name": "options", "fields": [ { "name": "dampingFactor", "descr": "The [damping factor](https://en.wikipedia.org/wiki/PageRank#Damping_factor), affecting how long the algorithm goes along the topology of the graph (default `0.8`).", "optional": true}, { "name": "precision", "descr": "Numeric parameter that represents the required precision (default `0.000001`). The algorithm stops when the difference between iterations is this value or less.", "optional": true }, { "name": "iterations", "descr": "Maximum number of iterations to perform (default `200`).", "optional": true } ] } ] } ], "md": "collection/pageRank" } ] }, { "name": "Clustering", "fns": [ { "name": "eles.markovClustering", "pureAliases": ["eles.mcl"], "descr": "Considering only the elements in the calling collection, run the [Markov cluster algorithm](https://micans.org/mcl/) of the nodes.", "formats": [ { "args": [ { "name": "options", "fields": [ { "name": "attributes: [ function(edge) ... ]", "descr": "An array of attribute functions, each of which returns a numeric attribute value for the specified edge. Attributes are used to cluster the nodes; i.e. the attributes of an edge indicate similarity between its nodes." }, { "name": "expandFactor", "descr": "A number that affects time of computation and cluster granularity to some extent: `M * M` (default `2`)", "optional": true }, { "name": "inflateFactor", "descr": "A number that affects cluster granularity (the greater the value, the more clusters): `M(i,j) / E(j)` (default `2`)", "optional": true }, { "name": "multFactor", "descr": "Optional number of self loops for each node. Use a neutral value to improve cluster computations (default `1`).", "optional": true }, { "name": "maxIterations", "descr": "Maximum number of iterations of the MCL algorithm in a single run (default `20`).", "optional": true } ] } ] } ], "md": "collection/markovClustering" }, { "name": "nodes.kMeans", "descr": "Considering only the nodes in the calling collection, calculate the [k-means clustering](https://en.wikipedia.org/wiki/K-means_clustering) of the nodes.", "formats": [ { "args": [ { "name": "options", "fields": [ { "name": "attributes: [ function( node ) ... ]", "descr": "An array of attribute functions, each of which returns a numeric attribute value for the specified node. Attributes are used to cluster the nodes; i.e. two nodes with similar attributes tend to be in the same cluster. Each attribute may have to be normalised in order for the chosen distance metric to make sense. Attributes must be specified unless a custom `distance: function( nodeP, nodeQ )` is specified." }, { "name": "k", "descr": "The number of clusters to return." }, { "name": "distance", "descr": "The distance classifier used to compare attribute vectors. It is optional if attributes are specified. It may take on one of several values:", "fields": [ { "name": "'euclidean'", "descr": "[Euclidean distance](https://en.wikipedia.org/wiki/Euclidean_distance) (default)" }, { "name": "'squaredEuclidean'", "descr": "[Squared Euclidean distance](https://en.wikipedia.org/wiki/Euclidean_distance#Squared_Euclidean_distance)" }, { "name": "'manhattan'", "descr": "[Manhattan distance](https://en.wikipedia.org/wiki/Taxicab_geometry)" }, { "name": "'max'", "descr": "[Max distance](https://en.wikipedia.org/wiki/Uniform_norm)" }, { "name": "function( length, getPAt, getQAt[, nodeP, nodeQ] )", "descr": "A custom function that returns the distance between attribute vectors `p` and `q`.", "fields": [ { "name": "length", "descr": "The length of the vectors." }, { "name": "getPAt(i)", "descr": "A function that returns the ith value of the `p` vector." }, { "name": "getQAt(i)", "descr": "A function that returns the ith value of the `q` vector." } ] } ] }, { "name": "maxIterations", "descr": "The maximum number of iterations of the algorithm to run (default `10`).", "optional": true }, { "name": "sensitivityThreshold", "descr": "The coefficients difference threshold used to determine whether the algorithm has converged (default `0.001`).", "optional": true } ] } ] } ], "md": "collection/kMeans" }, { "name": "nodes.kMedoids", "descr": "Considering only the nodes in the calling collection, calculate the [k-medoids clustering](https://en.wikipedia.org/wiki/K-medoids) of the nodes.", "formats": [ { "args": [ { "name": "options", "fields": [ { "name": "attributes: [ function( node ) ... ]", "descr": "An array of attribute functions, each of which returns a numeric attribute value for the specified node. Attributes are used to cluster the nodes; i.e. two nodes with similar attributes tend to be in the same cluster. Each attribute may have to be normalised in order for the chosen distance metric to make sense. Attributes must be specified unless a custom `distance: function( nodeP, nodeQ )` is specified." }, { "name": "k", "descr": "The number of clusters to return." }, { "name": "distance", "descr": "The distance classifier used to compare attribute vectors. It is optional if attributes are specified. It may take on one of several values:", "fields": [ { "name": "'euclidean'", "descr": "[Euclidean distance](https://en.wikipedia.org/wiki/Euclidean_distance) (default)" }, { "name": "'squaredEuclidean'", "descr": "[Squared Euclidean distance](https://en.wikipedia.org/wiki/Euclidean_distance#Squared_Euclidean_distance)" }, { "name": "'manhattan'", "descr": "[Manhattan distance](https://en.wikipedia.org/wiki/Taxicab_geometry)" }, { "name": "'max'", "descr": "[Max distance](https://en.wikipedia.org/wiki/Uniform_norm)" }, { "name": "function( length, getPAt, getQAt[, nodeP, nodeQ] )", "descr": "A custom function that returns the distance between attribute vectors `p` and `q`.", "fields": [ { "name": "length", "descr": "The length of the vectors." }, { "name": "getPAt(i)", "descr": "A function that returns the ith value of the `p` vector." }, { "name": "getQAt(i)", "descr": "A function that returns the ith value of the `q` vector." }, { "name": "nodeP", "optional": true, "descr": "An optionally-used reference to the node associated with the `p` attribute vector. It is useful for affecting the weights with information outside of the attributes, such as connectivity." }, { "name": "nodeQ", "optional": true, "descr": "An optionally-used reference to the node associated with the `q` attribute vector. It is useful for affecting the weights with information outside of the attributes, such as connectivity." } ] }, { "name": "function( nodeP, nodeQ )", "descr": "A custom function that returns the distance between `nodeP` and `nodeQ`. This allows for specifying the distance matrix directly, forgoing attributes." } ] }, { "name": "maxIterations", "descr": "The maximum number of iterations of the algorithm to run (default `10`).", "optional": true } ] } ] } ], "md": "collection/kMedoids" }, { "name": "nodes.fuzzyCMeans", "pureAliases": ["nodes.fcm"], "descr": "Considering only the elements in the calling collection, calculate the [fuzzy c-means clustering](https://en.wikipedia.org/wiki/Fuzzy_clustering#Fuzzy_C-means_clustering) of the nodes.", "formats": [ { "args": [ { "name": "options", "fields": [ { "name": "attributes: [ function( node ) ... ]", "descr": "An array of attribute functions, each of which returns a numeric attribute value for the specified node. Attributes are used to cluster the nodes; i.e. two nodes with similar attributes tend to be in the same cluster. Each attribute may have to be normalised in order for the chosen distance metric to make sense. Attributes must be specified unless a custom `distance: function( nodeP, nodeQ )` is specified." }, { "name": "k", "descr": "The number of clusters to return." }, { "name": "distance", "descr": "The distance classifier used to compare attribute vectors. It is optional if attributes are specified. It may take on one of several values:", "fields": [ { "name": "'euclidean'", "descr": "[Euclidean distance](https://en.wikipedia.org/wiki/Euclidean_distance) (default)" }, { "name": "'squaredEuclidean'", "descr": "[Squared Euclidean distance](https://en.wikipedia.org/wiki/Euclidean_distance#Squared_Euclidean_distance)" }, { "name": "'manhattan'", "descr": "[Manhattan distance](https://en.wikipedia.org/wiki/Taxicab_geometry)" }, { "name": "'max'", "descr": "[Max distance](https://en.wikipedia.org/wiki/Uniform_norm)" }, { "name": "function( length, getPAt, getQAt[, nodeP, nodeQ] )", "descr": "A custom function that returns the distance between attribute vectors `p` and `q`.", "fields": [ { "name": "length", "descr": "The length of the vectors." }, { "name": "getPAt(i)", "descr": "A function that returns the ith value of the `p` vector." }, { "name": "getQAt(i)", "descr": "A function that returns the ith value of the `q` vector." } ] } ] }, { "name": "maxIterations", "descr": "The maximum number of iterations of the algorithm to run (default `10`).", "optional": true }, { "name": "sensitivityThreshold", "descr": "The coefficient difference threshold used to determine whether the algorithm has converged (default `0.001`).", "optional": true } ] } ] } ], "md": "collection/fuzzyCMeans" }, { "name": "nodes.hierarchicalClustering", "pureAliases": ["nodes.hca"], "descr": "Considering only the elements in the calling collection, calculate the agglomerative [hierarchical clustering](https://en.wikipedia.org/wiki/Hierarchical_clustering) of the nodes.", "formats": [ { "args": [ { "name": "options", "fields": [ { "name": "attributes: [ function( node ) ... ]", "descr": "An array of attribute functions, each of which returns a numeric attribute value for the specified node. Attributes are used to cluster the nodes; i.e. two nodes with similar attributes tend to be in the same cluster. Each attribute may have to be normalised in order for the chosen distance metric to make sense. Attributes must be specified unless a custom `distance: function( nodeP, nodeQ )` is specified." }, { "name": "distance", "descr": "The distance classifier used to compare attribute vectors. It is optional if attributes are specified. It may take on one of several values:", "fields": [ { "name": "'euclidean'", "descr": "[Euclidean distance](https://en.wikipedia.org/wiki/Euclidean_distance) (default)" }, { "name": "'squaredEuclidean'", "descr": "[Squared Euclidean distance](https://en.wikipedia.org/wiki/Euclidean_distance#Squared_Euclidean_distance)" }, { "name": "'manhattan'", "descr": "[Manhattan distance](https://en.wikipedia.org/wiki/Taxicab_geometry)" }, { "name": "'max'", "descr": "[Max distance](https://en.wikipedia.org/wiki/Uniform_norm)" }, { "name": "function( length, getPAt, getQAt[, nodeP, nodeQ] )", "descr": "A custom function that returns the distance between attribute vectors `p` and `q`.", "fields": [ { "name": "length", "descr": "The length of the vectors." }, { "name": "getPAt(i)", "descr": "A function that returns the ith value of the `p` vector." }, { "name": "getQAt(i)", "descr": "A function that returns the ith value of the `q` vector." }, { "name": "nodeP", "optional": true, "descr": "An optionally-used reference to the node associated with the `p` attribute vector. It is useful for affecting the weights with information outside of the attributes, such as connectivity." }, { "name": "nodeQ", "optional": true, "descr": "An optionally-used reference to the node associated with the `q` attribute vector. It is useful for affecting the weights with information outside of the attributes, such as connectivity." } ] }, { "name": "function( nodeP, nodeQ )", "descr": "A custom function that returns the distance between `nodeP` and `nodeQ`. This allows for specifying the distance matrix directly, forgoing attributes." } ] }, { "name": "linkage", "optional": true, "descr": "The [linkage criterion](https://en.wikipedia.org/wiki/Hierarchical_clustering#Linkage_criteria) for measuring the distance between two clusters; may be one of `'mean'`, `'min'` (a.k.a. `'single'`, default), `'max'` (a.k.a. `'complete'`)." }, { "name": "mode", "descr": "The mode of the algorithm. For `'threshold'` (default), clusters are merged until they are at least the specified distance apart. For `'dendrogram'`, the clusters are recursively merged using the branches in a [dendrogram](https://en.wikipedia.org/wiki/Dendrogram) (tree) structure beyond a specified depth." }, { "name": "threshold", "descr": "In `mode: 'threshold'`, distance threshold for stopping the algorithm. All pairs of the returned clusters are at least `threshold` distance apart. Without specifying this value for `mode: 'threshold'`, all clusters will eventually be merged into a single cluster." }, { "name": "dendrogramDepth", "descr": "In `mode: 'dendrogram'`, the depth beyond which branches are merged in the tree. For example, a value of 0 (default) results in all branches being merged into a single cluster." }, { "name": "addDendrogram", "optional": true, "descr": "In `mode: 'dendrogram'`, whether to add nodes and edges to the graph for the dendrogram (default `false`). This is not necessary to run the algorithm, but it is useful for visualising the results." } ] } ] } ], "md": "collection/hierarchicalClustering" }, { "name": "nodes.affinityPropagation", "pureAliases": ["nodes.ap"], "descr": "Considering only the elements in the calling collection, calculate the [affinity propagation clustering](https://en.wikipedia.org/wiki/Affinity_propagation) of the nodes.", "formats": [ { "args": [ { "name": "options", "fields": [ { "name": "attributes: [ function( node ) ... ]", "descr": "An array of attribute functions, each of which returns a numeric attribute value for the specified node. Attributes are used to cluster the nodes; i.e. two nodes with similar attributes tend to be in the same cluster. Each attribute may have to be normalised in order for the chosen distance metric to make sense. Attributes must be specified unless a custom `distance: function( nodeP, nodeQ )` is specified." }, { "name": "distance", "descr": "The distance classifier used to compare attribute vectors. It is optional if attributes are specified. It may take on one of several values:", "fields": [ { "name": "'euclidean'", "descr": "[Euclidean distance](https://en.wikipedia.org/wiki/Euclidean_distance) (default)" }, { "name": "'squaredEuclidean'", "descr": "[Squared Euclidean distance](https://en.wikipedia.org/wiki/Euclidean_distance#Squared_Euclidean_distance)" }, { "name": "'manhattan'", "descr": "[Manhattan distance](https://en.wikipedia.org/wiki/Taxicab_geometry)" }, { "name": "'max'", "descr": "[Max distance](https://en.wikipedia.org/wiki/Uniform_norm)" }, { "name": "function( length, getPAt, getQAt[, nodeP, nodeQ] )", "descr": "A custom function that returns the distance between attribute vectors `p` and `q`.", "fields": [ { "name": "length", "descr": "The length of the vectors." }, { "name": "getPAt(i)", "descr": "A function that returns the ith value of the `p` vector." }, { "name": "getQAt(i)", "descr": "A function that returns the ith value of the `q` vector." }, { "name": "nodeP", "optional": true, "descr": "An optionally-used reference to the node associated with the `p` attribute vector. It is useful for affecting the weights with information outside of the attributes, such as connectivity." }, { "name": "nodeQ", "optional": true, "descr": "An optionally-used reference to the node associated with the `q` attribute vector. It is useful for affecting the weights with information outside of the attributes, such as connectivity." } ] }, { "name": "function( nodeP, nodeQ )", "descr": "A custom function that returns the distance between `nodeP` and `nodeQ`. This allows for specifying the distance matrix directly, forgoing attributes." } ] }, { "name": "preference", "optional": true, "descr": "The metric used to determine the suitability of a data point (i.e. node attribute vector) to serve as an exemplar. It may take on one of several special values, which are determined from the similarity matrix (i.e. the negative distance matrix). Or a manual, numeric value may be used (generally of the opposite sign of your distance values). The special values include:", "fields": [ { "name": "'median'", "descr": "Use the median value of the similarity matrix (default)." }, { "name": "'mean'", "descr": "Use the mean value of the similarity matrix." }, { "name": "'min'", "descr": "Use the minimum value of the similarity matrix." }, { "name": "'max'", "descr": "Use the maximum value of the similarity matrix." } ] }, { "name": "damping", "descr": "A damping factor on [0.5, 1) (default `0.8`).", "optional": true }, { "name": "minIterations", "descr": "The minimum number of iteraions the algorithm will run before stopping (default `100`).", "optional": true }, { "name": "maxIterations", "descr": "The maximum number of iteraions the algorithm will run before stopping (default `1000`).", "optional": true } ] } ] } ], "md": "collection/affinityPropagation" } ] }, { "name": "Compound nodes", "md": "collection/compoundNodes", "fns": [ { "name": "node.isParent", "descr": "Get whether the node is a compound parent (i.e. a node containing one or more child nodes)" }, { "name": "node.isChildless", "descr": "Get whether the node is childless (i.e. a node with no child nodes)" }, { "name": "node.isChild", "descr": "Get whether the node is a compound child (i.e. contained within a node)" }, { "name": "node.isOrphan", "descr": "Get whether the node is an orphan (i.e. a node with no parent)" }, { "name": "nodes.parent", "descr": "Get the compound parent node of each node in the collection.", "formats": [ { "args": [ { "name": "selector", "descr": "A selector used to filter the resultant collection.", "optional": true } ] } ] }, { "name": "nodes.ancestors", "pureAliases": ["nodes.parents"], "descr": "Get all compound ancestor nodes (i.e. parents, parents' parents, etc.) of each node in the collection.", "formats": [ { "args": [ { "name": "selector", "descr": "A selector used to filter the resultant collection.", "optional": true } ] } ] }, { "name": "nodes.commonAncestors", "descr": "Get all compound ancestors common to all the nodes in the collection, starting with the closest and getting progressively farther.", "formats": [ { "args": [ { "name": "selector", "descr": "A selector used to filter the resultant collection.", "optional": true } ] } ], "md": "collection/commonAncestors" }, { "name": "nodes.orphans", "descr": "Get all orphan (i.e. has no compound parent) nodes in the calling collection.", "formats": [ { "args": [ { "name": "selector", "descr": "A selector used to filter the resultant collection.", "optional": true } ] } ] }, { "name": "nodes.nonorphans", "descr": "Get all nonorphan (i.e. has a compound parent) nodes in the calling collection.", "formats": [ { "args": [ { "name": "selector", "descr": "A selector used to filter the resultant collection.", "optional": true } ] } ] }, { "name": "nodes.children", "descr": "Get all compound child (i.e. direct descendant) nodes of each node in the collection.", "formats": [ { "args": [ { "name": "selector", "descr": "A selector used to filter the resultant collection.", "optional": true } ] } ] }, { "name": "nodes.descendants", "descr": "Get all compound descendant (i.e. children, children's children, etc.) nodes of each node in the collection.", "formats": [ { "args": [ { "name": "selector", "descr": "A selector used to filter the resultant collection.", "optional": true } ] } ] }, { "name": "nodes.siblings", "descr": "Get all sibling (i.e. same compound parent) nodes of each node in the collection.", "formats": [ { "args": [ { "name": "selector", "descr": "A selector used to filter the resultant collection.", "optional": true } ] } ] } ] } ] }, { "name": "Selectors", "md": "selectors" }, { "name": "Style", "md": "style" }, { "name": "Events", "md": "events" }, { "name": "Layouts", "md": "layout/intro", "sections": [ { "md": "layouts/null", "layout": { "name": "null" } }, { "md": "layouts/random", "layout": { "name": "random" } }, { "md": "layouts/preset", "layout": { "name": "preset" } }, { "md": "layouts/grid", "layout": { "name": "grid" } }, { "md": "layouts/circle", "layout": { "name": "circle" } }, { "md": "layouts/concentric", "layout": { "name": "concentric" } }, { "md": "layouts/breadthfirst", "layout": { "name": "breadthfirst" } }, { "md": "layouts/cose", "layout": { "name": "cose" } }, { "name": "Layout manipulation", "md": "layout/manipulation", "fns": [ { "name": "layout.run", "pureAliases": [ "layout.start" ], "descr": "Start running the layout.", "md": "layout/run" }, { "name": "layout.stop", "descr": "Stop running the (asynchronous/discrete) layout.", "md": "layout/stop" } ] }, { "name": "Layout events", "md": "layout/events", "fns": [ { "name": "layout.on", "pureAliases": ["layout.bind", "layout.listen", "layout.addListener"], "descr": "Listen to events that are emitted by the layout.", "formats": [ { "args": [ { "name": "events", "descr": "A space separated list of event names." }, { "name": "data", "descr": "A plain object which is passed to the handler in the event object argument.", "optional": true }, { "name": "function(event)", "descr": "The handler function that is called when one of the specified events occurs.", "fields": [ { "name": "event", "descr": "The event object." } ] } ] } ], "md": "layout/on" }, { "name": "layout.promiseOn", "pureAliases": ["layout.pon"], "descr": "Get a promise that is resolved when the layout emits the first of any of the specified events.", "formats": [ { "args": [ { "name": "events", "descr": "A space separated list of event names." } ] } ], "md": "layout/promiseOn" }, { "name": "layout.one", "descr": "Listen to events that are emitted by the layout, and run the handler only once.", "formats": [ { "args": [ { "name": "events", "descr": "A space separated list of event names." }, { "name": "data", "descr": "A plain object which is passed to the handler in the event object argument.", "optional": true }, { "name": "function(event)", "descr": "The handler function that is called when one of the specified events occurs.", "fields": [ { "name": "event", "descr": "The event object." } ] } ] } ], "md": "layout/one" }, { "name": "layout.removeListener", "pureAliases": ["layout.off", "layout.unbind", "layout.unlisten"], "descr": "Remove event handlers on the layout.", "formats": [ { "args": [ { "name": "events", "descr": "A space separated list of event names." }, { "name": "handler", "descr": "A reference to the handler function to remove.", "optional": true } ] } ], "md": "layout/removeListener" }, { "name": "layout.removeAllListeners", "descr": "Remove all event handlers on the layout." }, { "name": "layout.emit", "pureAliases": ["layout.trigger"], "descr": "Emit one or more events on the layout.", "formats": [ { "args": [ { "name": "events", "descr": "A list of event names to emit (either a space-separated string or an array)." }, { "name": "extraParams", "descr": "An array of additional parameters to pass to the handler.", "optional": true } ] } ], "md": "layout/emit" } ] } ] }, { "name": "Animations", "md": "animations", "sections": [ { "name": "Animation manipulation", "fns": [ { "name": "ani.play", "pureAliases": ["ani.run"], "descr": "Requests that the animation be played, starting on the next frame. If the animation is complete, it restarts from the beginning.", "md": "animation/play" }, { "name": "ani.playing", "pureAliases": ["ani.running"], "descr": "Get whether the animation is currently playing." }, { "name": "ani.progress", "descr": "Get or set how far along the animation has progressed.", "formats": [ { "name": "ani.progress", "descr": "Get the progress of the animation in percent." }, { "name": "ani.progress", "descr": "Set the progress of the animation in percent.", "args": [ { "name": "progress", "descr": "The progress in percent (i.e. between 0 and 1 inclusive) to set to the animation." } ] }, { "name": "ani.time", "descr": "Get the progress of the animation in milliseconds." }, { "name": "ani.time", "descr": "Set the progress of the animation in milliseconds.", "args": [ { "name": "time", "descr": "The progress in milliseconds (i.e. between 0 and the duration inclusive) to set to the animation." } ] }, { "name": "ani.rewind", "descr": "Rewind the animation to the beginning." }, { "name": "ani.fastforward", "descr": "Fastforward the animation to the end." } ], "md": "animation/progress" }, { "name": "ani.pause", "descr": "Pause the animation, maintaining the current progress.", "md": "animation/pause" }, { "name": "ani.stop", "descr": "Stop the animation, maintaining the current progress and removing the animation from any associated queues.", "md": "animation/stop" }, { "name": "ani.completed", "pureAliases": ["ani.complete"], "descr": "Get whether the animation has progressed to the end." }, { "name": "ani.apply", "descr": "Apply the animation at its current progress.", "md": "animation/apply" }, { "name": "ani.applying", "descr": "Get whether the animation is currently applying." }, { "name": "ani.reverse", "descr": "Reverse the animation such that its starting conditions and ending conditions are reversed.", "md": "animation/reverse" }, { "name": "ani.promise", "descr": "Get a promise that is fulfilled with the specified animation event.", "formats": [ { "descr": "Get a promise that is fulfilled with the next `completed` event." }, { "descr": "Get a promise that is fulfilled with the specified animation event.", "args": [ { "name": "animationEvent", "descr": "A string for the event name; `completed` or `complete` for completing the animation or `frame` for the next frame of the animation." } ] } ], "md": "animation/promise" } ] } ] }, { "name": "Extensions", "md": "extensions" }, { "name": "Performance", "md": "performance" } ] } ================================================ FILE: documentation/docmaker.mjs ================================================ /* eslint-disable no-console, no-useless-escape */ // convert to import statements import fs from 'fs'; import * as marked from 'marked'; import Handlebars from 'handlebars'; import jsonlint from 'jsonlint'; import hljs from 'highlight.js'; import path from 'path'; import process from 'process'; const encoding = 'utf8'; const configFile = './docmaker.json'; const versionFile = './versions.json'; const __dirname = path.dirname(new URL(import.meta.url).pathname); const readFileSync = file => fs.readFileSync( path.join(__dirname, file), 'utf8') let config, versions; let mdRend = new marked.Renderer(); let mdRendDefault = new marked.Renderer(); let rendCode = mdRend.code; mdRend.code = function(code, lang){ let button = ''; if( lang === 'js' ){ button = ''; } return rendCode.call(this, code, lang) + button; }; try { let confFileContents = readFileSync(configFile); jsonlint.parse(confFileContents); // validate first for convenience config = JSON.parse(confFileContents); let versionFileContents = readFileSync(versionFile); jsonlint.parse(versionFileContents); // validate first for convenience versions = JSON.parse(versionFileContents); } catch(e){ console.error('\n`' + configFile + '` could not be read; check the JSON is formatted correctly via jsonlint'); throw e; } config.version = process.env.VERSION || 'snapshot'; function linkifyArg( arg ){ let link = config.fnArgLinks[ arg.name ]; if( link ){ arg.linkedName = '' + arg.name + ''; } else { arg.linkedName = arg.name; } } // let html = converter.makeHtml("**I am bold!**"); // let html = Handlebars.compile(); function md2html( file ){ file = file.substr( file.length - 3 ) === '.md' ? file : file + '.md'; // add extension if need be let md; try{ md = fs.readFileSync( path.join(__dirname, './md', file) , 'utf8'); } catch(e){ throw 'A markdown file named `' + file + '` was referenced but could not be read'; } let options = { highlight: function(code, lang){ let ret; if( lang ){ ret = hljs.highlight(code, { language: lang }).value; } else { ret = hljs.highlightAuto(code).value; } return ret; }, smartypants: true, gfm: true }; let mdBtnBlocked = config.mdRunButtonBlocked.indexOf(file) >= 0; let mdBtnAllowed = !mdBtnBlocked; if( mdBtnAllowed ){ // add run button to code blocks options.renderer = mdRend; } else { options.renderer = mdRendDefault; } marked.setOptions(options); let html = marked.parse( md ); return html; } function templateToHtml(context) { if (context.mdTemplate === "intro") { generate_versions(context); } let introHtmlTemplate = md2html(context.mdTemplate); let introTemplate = Handlebars.compile(introHtmlTemplate); let infoHtml = introTemplate(context); let html = marked.parse(infoHtml); return html; } function toUrl( str ){ str = str || ''; str = str.replace(/ /g, '-'); str = str.replace(/\&|\,|\;|\(|\)/g, ''); str = str.toLowerCase(); return str; } function makeBookmark( id ){ return ''; } function parseSubsections( section ){ let parentName = section.name; let html = section.html; let matches = html.match(/\.+?\<\/h2\>/g); let psubs = []; for( let i = 0; matches && i < matches.length; i++ ){ let match = matches[i]; let name = match.match(/\(.+)\<\/h2\>/)[1]; let id = toUrl(parentName) + '/' + toUrl(name); psubs.push({ name: name, fromMd: true, id: id, bookmark: makeBookmark(id) }); section.html = section.html.replace(match, '

' + name + ' ' + makeBookmark(id) + '

'); } return psubs; } function populateDemo( demo ){ if( demo.github ){ demo.githubUrl = 'https://github.com/' + demo.github; if( !demo.viewUrl ){ // use github pages url if unspecified let gh = demo.github.match(/([^/]+)\/([^/]+)/); demo.viewUrl = 'https://' + gh[1] + '.github.io/' + gh[2]; } } else { // main repo demo demo.githubUrl = 'https://github.com/cytoscape/cytoscape.js/tree/master/documentation/demos/' + demo.id; demo.viewUrl = 'demos/' + demo.id; } demo.imgUrl = 'img/demos/' + demo.id + '.png'; } function processFields( fields ){ for( let i = 0; fields && i < fields.length; i++ ){ let field = fields[i]; field.descr = marked.parse( field.descr || '' ); linkifyArg( field ); let subfields = field.fields; if( subfields ){ processFields( subfields ); } } } function compileAliases( section, fn ){ if( fn.pureAliases ){ let procdAliases = []; for( let k = 0; k < fn.pureAliases.length; k++ ){ let pa = '' + fn.pureAliases[k]; procdAliases.push({ name: pa, id: section.id + '/' + pa }); } fn.processedPureAliases = procdAliases; } } function compileConfig( config ){ let sections = config.sections; let parent = config; for( let i = 0; sections && i < sections.length; i++ ){ let section = sections[i]; if (section.mdTemplate) { section.html = templateToHtml(section); let psubs = parseSubsections( section ); let subs = section.sections = section.sections || []; section.sections = subs.concat( psubs ); } if( section.layout ){ section.name = section.layout.name; } section.id = (parent.name ? (toUrl(parent.name) + '/') : '') + toUrl( section.name ); section.bookmark = makeBookmark( section.id ); if( section.md ){ section.html = md2html( section.md ); let psubs = parseSubsections( section ); let subs = section.sections = section.sections || []; section.sections = subs.concat( psubs ); } if( section.mddescr ){ section.descr = md2html( section.mddescr ); } if( section.demos ){ let demos = section.demos; for( let j = 0; j < demos.length; j++ ){ let demo = demos[j]; populateDemo( demo ); } } if( section.demo ){ populateDemo( section.demo ); } if( section.layout ){ let layout = section.layout; section.name = layout.name; layout.code = fs.readFileSync( path.join(__dirname, '../src/extensions/layout/' + layout.name + '.mjs'), 'utf8' ); try { layout.options = layout.code.match(/defaults\s*\=\s*(\{(?:.|\s)+?\}\;)/)[1]; let lopts = layout.options; // cleanup indent lopts = lopts.replace(/\n[ ]{4}/g, '\n '); lopts = lopts.replace(/[ ]{2}\}\;/g, '};'); // add name lopts = lopts.replace(/\{/, '{\n name: \'' + layout.name + '\',\n'); // wrap w/ code lopts = 'let options = ' + lopts + '\n\ncy.layout( options );'; // highlight lopts = hljs.highlight(lopts, { language: 'js' }).value; layout.optionsFormatted = lopts; } catch(e){ throw 'Error processing layout options for `'+ layout.name +'`; must have `defaults = { ... };`'; } } if( section.fns ){ let fns = section.fns; for( let j = 0; j < fns.length; j++ ){ let fn = fns[j]; fn.altIds = []; fn.altIds.push( section.id + '/' + fn.name ); fn.id = fn.name; fn.bookmark = makeBookmark( fn.id ); fn.descr = fn.descr ? marked.parse( fn.descr ) : undefined; if( fn.md ){ fn.html = md2html( fn.md ); // the html for functions should only have h3 tags, not h1 or h2 fn.html = fn.html.replace(/\

/g, '

'); fn.html = fn.html.replace(/\

/g, '

'); } if( fn.pureAliases ){ fn.pureAliases.forEach(function( aId ){ fn.altIds.push( section.id + '/' + aId ); fn.altIds.push( aId ); }); } let formatsHaveDiffNames = false; if( fn.formats ){ let formats = fn.formats; for( let k = 0; k < formats.length; k++ ){ let format = formats[k]; format.name = format.name || fn.name; // copy name to format if not specified format.descr = marked.parse( format.descr || '' ); fn.altIds.push( section.id + '/' + format.name ); fn.altIds.push( format.name ); if( format.args ){ for( let m = 0; m < format.args.length; m++ ){ let arg = format.args[m]; linkifyArg( arg ); arg.descr = marked.parse( arg.descr || '' ); processFields( arg.fields ); } } if( format.name !== fn.name ){ formatsHaveDiffNames = true; } compileAliases( section, format ); } } // if // mark as diff names if( formatsHaveDiffNames ){ fn.aliases = true; } compileAliases( section, fn ); } // for // sort functions by name within a section // fns.sort(function(a, b){ // return a.name.toLowerCase() > b.name.toLowerCase(); // }); } if( section.sections ){ // then compile those subsections too compileConfig( section ); } } } function sortSoftwareVersions(versions, type) { return versions.sort((a, b) => { var aParts, bParts; if (type === 'major') { aParts = a.version.split('.'); bParts = b.version.split('.'); } else { aParts = a.split('.'); bParts = b.split('.'); } for (let i = 0; i < Math.max(aParts.length, bParts.length); i++) { const aNum = Number(aParts[i]) || 0; const bNum = Number(bParts[i]) || 0; if (aNum > bNum) return -1; else if (aNum < bNum) return 1; } return 0; }); } function getMilestoneLink(minor_ver) { return "https://github.com/cytoscape/cytoscape.js/issues?q=milestone%3A".concat(minor_ver).concat("+is%3Aclosed"); } function getVersionMap(all_versions) { const version_map = new Map(); const breakpoint = /(\d+.\d+)/; all_versions.forEach((e) => { let notEmptyStr = v => v != null && v !== ''; let v = e.split(breakpoint).filter(notEmptyStr); if (version_map.has(v[0])) version_map.get(v[0]).push(v[1]); else { version_map.set(v[0], [v[1]]); } }); return version_map; } function generate_versions(context) { let all_versions = versions.versions; let unique_versions = [...new Set(all_versions)]; const version_map = getVersionMap(unique_versions); const data = { major_release: [] }; for (const major_version of version_map.entries()) { const temp = {"version" : major_version[0]}; temp["minor_release"] = []; const sorted = sortSoftwareVersions(major_version[1], "minor"); for (let i = 0, len = sorted.length; i < len; i++) { // sorted[i] represent the minor version and its object contains the version and the link const temp_minor = {}; temp_minor["minor_ver"] = major_version[0].concat(sorted[i]); temp_minor["link"] = getMilestoneLink(temp_minor["minor_ver"]); temp["minor_release"].push(temp_minor); } // console.log(temp); data.major_release.push(temp); }; let sortedRelease = sortSoftwareVersions(data.major_release, "major"); context["major_release"] = sortedRelease; } function writeDocs(){ let context = config; compileConfig( config ); let htmlTemplate = fs.readFileSync( path.join(__dirname, './template.html'), encoding); let template = Handlebars.compile( htmlTemplate ); let html = template( context ); fs.writeFileSync( path.join(__dirname, 'index.html'), html, encoding); } writeDocs(); ================================================ FILE: documentation/js/cytoscape.cjs.js ================================================ /** * Copyright (c) 2016-2024, The Cytoscape Consortium. * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the “Software”), to deal in * the Software without restriction, including without limitation the rights to * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies * of the Software, and to permit persons to whom the Software is furnished to do * so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ 'use strict'; function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; } function _defineProperty$1(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); } function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; } function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function () {}; return { s: F, n: function () { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function (e) { throw e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function () { it = it.call(o); }, n: function () { var step = it.next(); normalCompletion = step.done; return step; }, e: function (e) { didErr = true; err = e; }, f: function () { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; } var _window = typeof window === 'undefined' ? null : window; // eslint-disable-line no-undef var navigator = _window ? _window.navigator : null; _window ? _window.document : null; var typeofstr = _typeof(''); var typeofobj = _typeof({}); var typeoffn = _typeof(function () {}); var typeofhtmlele = typeof HTMLElement === "undefined" ? "undefined" : _typeof(HTMLElement); var instanceStr = function instanceStr(obj) { return obj && obj.instanceString && fn$6(obj.instanceString) ? obj.instanceString() : null; }; var string = function string(obj) { return obj != null && _typeof(obj) == typeofstr; }; var fn$6 = function fn(obj) { return obj != null && _typeof(obj) === typeoffn; }; var array = function array(obj) { return !elementOrCollection(obj) && (Array.isArray ? Array.isArray(obj) : obj != null && obj instanceof Array); }; var plainObject = function plainObject(obj) { return obj != null && _typeof(obj) === typeofobj && !array(obj) && obj.constructor === Object; }; var object = function object(obj) { return obj != null && _typeof(obj) === typeofobj; }; var number$1 = function number(obj) { return obj != null && _typeof(obj) === _typeof(1) && !isNaN(obj); }; var integer = function integer(obj) { return number$1(obj) && Math.floor(obj) === obj; }; var htmlElement = function htmlElement(obj) { if ('undefined' === typeofhtmlele) { return undefined; } else { return null != obj && obj instanceof HTMLElement; } }; var elementOrCollection = function elementOrCollection(obj) { return element(obj) || collection(obj); }; var element = function element(obj) { return instanceStr(obj) === 'collection' && obj._private.single; }; var collection = function collection(obj) { return instanceStr(obj) === 'collection' && !obj._private.single; }; var core = function core(obj) { return instanceStr(obj) === 'core'; }; var stylesheet = function stylesheet(obj) { return instanceStr(obj) === 'stylesheet'; }; var event = function event(obj) { return instanceStr(obj) === 'event'; }; var emptyString = function emptyString(obj) { if (obj === undefined || obj === null) { // null is empty return true; } else if (obj === '' || obj.match(/^\s+$/)) { return true; // empty string is empty } return false; // otherwise, we don't know what we've got }; var domElement = function domElement(obj) { if (typeof HTMLElement === 'undefined') { return false; // we're not in a browser so it doesn't matter } else { return obj instanceof HTMLElement; } }; var boundingBox = function boundingBox(obj) { return plainObject(obj) && number$1(obj.x1) && number$1(obj.x2) && number$1(obj.y1) && number$1(obj.y2); }; var promise = function promise(obj) { return object(obj) && fn$6(obj.then); }; var ms = function ms() { return navigator && navigator.userAgent.match(/msie|trident|edge/i); }; // probably a better way to detect this... var memoize$1 = function memoize(fn, keyFn) { if (!keyFn) { keyFn = function keyFn() { if (arguments.length === 1) { return arguments[0]; } else if (arguments.length === 0) { return 'undefined'; } var args = []; for (var i = 0; i < arguments.length; i++) { args.push(arguments[i]); } return args.join('$'); }; } var memoizedFn = function memoizedFn() { var self = this; var args = arguments; var ret; var k = keyFn.apply(self, args); var cache = memoizedFn.cache; if (!(ret = cache[k])) { ret = cache[k] = fn.apply(self, args); } return ret; }; memoizedFn.cache = {}; return memoizedFn; }; var camel2dash = memoize$1(function (str) { return str.replace(/([A-Z])/g, function (v) { return '-' + v.toLowerCase(); }); }); var dash2camel = memoize$1(function (str) { return str.replace(/(-\w)/g, function (v) { return v[1].toUpperCase(); }); }); var prependCamel = memoize$1(function (prefix, str) { return prefix + str[0].toUpperCase() + str.substring(1); }, function (prefix, str) { return prefix + '$' + str; }); var capitalize = function capitalize(str) { if (emptyString(str)) { return str; } return str.charAt(0).toUpperCase() + str.substring(1); }; var number = '(?:[-+]?(?:(?:\\d+|\\d*\\.\\d+)(?:[Ee][+-]?\\d+)?))'; var rgba = 'rgb[a]?\\((' + number + '[%]?)\\s*,\\s*(' + number + '[%]?)\\s*,\\s*(' + number + '[%]?)(?:\\s*,\\s*(' + number + '))?\\)'; var rgbaNoBackRefs = 'rgb[a]?\\((?:' + number + '[%]?)\\s*,\\s*(?:' + number + '[%]?)\\s*,\\s*(?:' + number + '[%]?)(?:\\s*,\\s*(?:' + number + '))?\\)'; var hsla = 'hsl[a]?\\((' + number + ')\\s*,\\s*(' + number + '[%])\\s*,\\s*(' + number + '[%])(?:\\s*,\\s*(' + number + '))?\\)'; var hslaNoBackRefs = 'hsl[a]?\\((?:' + number + ')\\s*,\\s*(?:' + number + '[%])\\s*,\\s*(?:' + number + '[%])(?:\\s*,\\s*(?:' + number + '))?\\)'; var hex3 = '\\#[0-9a-fA-F]{3}'; var hex6 = '\\#[0-9a-fA-F]{6}'; var ascending = function ascending(a, b) { if (a < b) { return -1; } else if (a > b) { return 1; } else { return 0; } }; var descending = function descending(a, b) { return -1 * ascending(a, b); }; var extend = Object.assign != null ? Object.assign.bind(Object) : function (tgt) { var args = arguments; for (var i = 1; i < args.length; i++) { var obj = args[i]; if (obj == null) { continue; } var keys = Object.keys(obj); for (var j = 0; j < keys.length; j++) { var k = keys[j]; tgt[k] = obj[k]; } } return tgt; }; // get [r, g, b] from #abc or #aabbcc var hex2tuple = function hex2tuple(hex) { if (!(hex.length === 4 || hex.length === 7) || hex[0] !== '#') { return; } var shortHex = hex.length === 4; var r, g, b; var base = 16; if (shortHex) { r = parseInt(hex[1] + hex[1], base); g = parseInt(hex[2] + hex[2], base); b = parseInt(hex[3] + hex[3], base); } else { r = parseInt(hex[1] + hex[2], base); g = parseInt(hex[3] + hex[4], base); b = parseInt(hex[5] + hex[6], base); } return [r, g, b]; }; // get [r, g, b, a] from hsl(0, 0, 0) or hsla(0, 0, 0, 0) var hsl2tuple = function hsl2tuple(hsl) { var ret; var h, s, l, a, r, g, b; function hue2rgb(p, q, t) { if (t < 0) t += 1; if (t > 1) t -= 1; if (t < 1 / 6) return p + (q - p) * 6 * t; if (t < 1 / 2) return q; if (t < 2 / 3) return p + (q - p) * (2 / 3 - t) * 6; return p; } var m = new RegExp('^' + hsla + '$').exec(hsl); if (m) { // get hue h = parseInt(m[1]); if (h < 0) { h = (360 - -1 * h % 360) % 360; } else if (h > 360) { h = h % 360; } h /= 360; // normalise on [0, 1] s = parseFloat(m[2]); if (s < 0 || s > 100) { return; } // saturation is [0, 100] s = s / 100; // normalise on [0, 1] l = parseFloat(m[3]); if (l < 0 || l > 100) { return; } // lightness is [0, 100] l = l / 100; // normalise on [0, 1] a = m[4]; if (a !== undefined) { a = parseFloat(a); if (a < 0 || a > 1) { return; } // alpha is [0, 1] } // now, convert to rgb // code from http://mjijackson.com/2008/02/rgb-to-hsl-and-rgb-to-hsv-color-model-conversion-algorithms-in-javascript if (s === 0) { r = g = b = Math.round(l * 255); // achromatic } else { var q = l < 0.5 ? l * (1 + s) : l + s - l * s; var p = 2 * l - q; r = Math.round(255 * hue2rgb(p, q, h + 1 / 3)); g = Math.round(255 * hue2rgb(p, q, h)); b = Math.round(255 * hue2rgb(p, q, h - 1 / 3)); } ret = [r, g, b, a]; } return ret; }; // get [r, g, b, a] from rgb(0, 0, 0) or rgba(0, 0, 0, 0) var rgb2tuple = function rgb2tuple(rgb) { var ret; var m = new RegExp('^' + rgba + '$').exec(rgb); if (m) { ret = []; var isPct = []; for (var i = 1; i <= 3; i++) { var channel = m[i]; if (channel[channel.length - 1] === '%') { isPct[i] = true; } channel = parseFloat(channel); if (isPct[i]) { channel = channel / 100 * 255; // normalise to [0, 255] } if (channel < 0 || channel > 255) { return; } // invalid channel value ret.push(Math.floor(channel)); } var atLeastOneIsPct = isPct[1] || isPct[2] || isPct[3]; var allArePct = isPct[1] && isPct[2] && isPct[3]; if (atLeastOneIsPct && !allArePct) { return; } // must all be percent values if one is var alpha = m[4]; if (alpha !== undefined) { alpha = parseFloat(alpha); if (alpha < 0 || alpha > 1) { return; } // invalid alpha value ret.push(alpha); } } return ret; }; var colorname2tuple = function colorname2tuple(color) { return colors[color.toLowerCase()]; }; var color2tuple = function color2tuple(color) { return (array(color) ? color : null) || colorname2tuple(color) || hex2tuple(color) || rgb2tuple(color) || hsl2tuple(color); }; var colors = { // special colour names transparent: [0, 0, 0, 0], // NB alpha === 0 // regular colours aliceblue: [240, 248, 255], antiquewhite: [250, 235, 215], aqua: [0, 255, 255], aquamarine: [127, 255, 212], azure: [240, 255, 255], beige: [245, 245, 220], bisque: [255, 228, 196], black: [0, 0, 0], blanchedalmond: [255, 235, 205], blue: [0, 0, 255], blueviolet: [138, 43, 226], brown: [165, 42, 42], burlywood: [222, 184, 135], cadetblue: [95, 158, 160], chartreuse: [127, 255, 0], chocolate: [210, 105, 30], coral: [255, 127, 80], cornflowerblue: [100, 149, 237], cornsilk: [255, 248, 220], crimson: [220, 20, 60], cyan: [0, 255, 255], darkblue: [0, 0, 139], darkcyan: [0, 139, 139], darkgoldenrod: [184, 134, 11], darkgray: [169, 169, 169], darkgreen: [0, 100, 0], darkgrey: [169, 169, 169], darkkhaki: [189, 183, 107], darkmagenta: [139, 0, 139], darkolivegreen: [85, 107, 47], darkorange: [255, 140, 0], darkorchid: [153, 50, 204], darkred: [139, 0, 0], darksalmon: [233, 150, 122], darkseagreen: [143, 188, 143], darkslateblue: [72, 61, 139], darkslategray: [47, 79, 79], darkslategrey: [47, 79, 79], darkturquoise: [0, 206, 209], darkviolet: [148, 0, 211], deeppink: [255, 20, 147], deepskyblue: [0, 191, 255], dimgray: [105, 105, 105], dimgrey: [105, 105, 105], dodgerblue: [30, 144, 255], firebrick: [178, 34, 34], floralwhite: [255, 250, 240], forestgreen: [34, 139, 34], fuchsia: [255, 0, 255], gainsboro: [220, 220, 220], ghostwhite: [248, 248, 255], gold: [255, 215, 0], goldenrod: [218, 165, 32], gray: [128, 128, 128], grey: [128, 128, 128], green: [0, 128, 0], greenyellow: [173, 255, 47], honeydew: [240, 255, 240], hotpink: [255, 105, 180], indianred: [205, 92, 92], indigo: [75, 0, 130], ivory: [255, 255, 240], khaki: [240, 230, 140], lavender: [230, 230, 250], lavenderblush: [255, 240, 245], lawngreen: [124, 252, 0], lemonchiffon: [255, 250, 205], lightblue: [173, 216, 230], lightcoral: [240, 128, 128], lightcyan: [224, 255, 255], lightgoldenrodyellow: [250, 250, 210], lightgray: [211, 211, 211], lightgreen: [144, 238, 144], lightgrey: [211, 211, 211], lightpink: [255, 182, 193], lightsalmon: [255, 160, 122], lightseagreen: [32, 178, 170], lightskyblue: [135, 206, 250], lightslategray: [119, 136, 153], lightslategrey: [119, 136, 153], lightsteelblue: [176, 196, 222], lightyellow: [255, 255, 224], lime: [0, 255, 0], limegreen: [50, 205, 50], linen: [250, 240, 230], magenta: [255, 0, 255], maroon: [128, 0, 0], mediumaquamarine: [102, 205, 170], mediumblue: [0, 0, 205], mediumorchid: [186, 85, 211], mediumpurple: [147, 112, 219], mediumseagreen: [60, 179, 113], mediumslateblue: [123, 104, 238], mediumspringgreen: [0, 250, 154], mediumturquoise: [72, 209, 204], mediumvioletred: [199, 21, 133], midnightblue: [25, 25, 112], mintcream: [245, 255, 250], mistyrose: [255, 228, 225], moccasin: [255, 228, 181], navajowhite: [255, 222, 173], navy: [0, 0, 128], oldlace: [253, 245, 230], olive: [128, 128, 0], olivedrab: [107, 142, 35], orange: [255, 165, 0], orangered: [255, 69, 0], orchid: [218, 112, 214], palegoldenrod: [238, 232, 170], palegreen: [152, 251, 152], paleturquoise: [175, 238, 238], palevioletred: [219, 112, 147], papayawhip: [255, 239, 213], peachpuff: [255, 218, 185], peru: [205, 133, 63], pink: [255, 192, 203], plum: [221, 160, 221], powderblue: [176, 224, 230], purple: [128, 0, 128], red: [255, 0, 0], rosybrown: [188, 143, 143], royalblue: [65, 105, 225], saddlebrown: [139, 69, 19], salmon: [250, 128, 114], sandybrown: [244, 164, 96], seagreen: [46, 139, 87], seashell: [255, 245, 238], sienna: [160, 82, 45], silver: [192, 192, 192], skyblue: [135, 206, 235], slateblue: [106, 90, 205], slategray: [112, 128, 144], slategrey: [112, 128, 144], snow: [255, 250, 250], springgreen: [0, 255, 127], steelblue: [70, 130, 180], tan: [210, 180, 140], teal: [0, 128, 128], thistle: [216, 191, 216], tomato: [255, 99, 71], turquoise: [64, 224, 208], violet: [238, 130, 238], wheat: [245, 222, 179], white: [255, 255, 255], whitesmoke: [245, 245, 245], yellow: [255, 255, 0], yellowgreen: [154, 205, 50] }; // sets the value in a map (map may not be built) var setMap = function setMap(options) { var obj = options.map; var keys = options.keys; var l = keys.length; for (var i = 0; i < l; i++) { var key = keys[i]; if (plainObject(key)) { throw Error('Tried to set map with object key'); } if (i < keys.length - 1) { // extend the map if necessary if (obj[key] == null) { obj[key] = {}; } obj = obj[key]; } else { // set the value obj[key] = options.value; } } }; // gets the value in a map even if it's not built in places var getMap = function getMap(options) { var obj = options.map; var keys = options.keys; var l = keys.length; for (var i = 0; i < l; i++) { var key = keys[i]; if (plainObject(key)) { throw Error('Tried to get map with object key'); } obj = obj[key]; if (obj == null) { return obj; } } return obj; }; /** * Checks if `value` is the * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types) * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`) * * @static * @memberOf _ * @since 0.1.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is an object, else `false`. * @example * * _.isObject({}); * // => true * * _.isObject([1, 2, 3]); * // => true * * _.isObject(_.noop); * // => true * * _.isObject(null); * // => false */ function isObject(value) { var type = typeof value; return value != null && (type == 'object' || type == 'function'); } var isObject_1 = isObject; var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; function createCommonjsModule(fn, module) { return module = { exports: {} }, fn(module, module.exports), module.exports; } /** Detect free variable `global` from Node.js. */ var freeGlobal = typeof commonjsGlobal == 'object' && commonjsGlobal && commonjsGlobal.Object === Object && commonjsGlobal; var _freeGlobal = freeGlobal; /** Detect free variable `self`. */ var freeSelf = typeof self == 'object' && self && self.Object === Object && self; /** Used as a reference to the global object. */ var root = _freeGlobal || freeSelf || Function('return this')(); var _root = root; /** * Gets the timestamp of the number of milliseconds that have elapsed since * the Unix epoch (1 January 1970 00:00:00 UTC). * * @static * @memberOf _ * @since 2.4.0 * @category Date * @returns {number} Returns the timestamp. * @example * * _.defer(function(stamp) { * console.log(_.now() - stamp); * }, _.now()); * // => Logs the number of milliseconds it took for the deferred invocation. */ var now = function() { return _root.Date.now(); }; var now_1 = now; /** Used to match a single whitespace character. */ var reWhitespace = /\s/; /** * Used by `_.trim` and `_.trimEnd` to get the index of the last non-whitespace * character of `string`. * * @private * @param {string} string The string to inspect. * @returns {number} Returns the index of the last non-whitespace character. */ function trimmedEndIndex(string) { var index = string.length; while (index-- && reWhitespace.test(string.charAt(index))) {} return index; } var _trimmedEndIndex = trimmedEndIndex; /** Used to match leading whitespace. */ var reTrimStart = /^\s+/; /** * The base implementation of `_.trim`. * * @private * @param {string} string The string to trim. * @returns {string} Returns the trimmed string. */ function baseTrim(string) { return string ? string.slice(0, _trimmedEndIndex(string) + 1).replace(reTrimStart, '') : string; } var _baseTrim = baseTrim; /** Built-in value references. */ var Symbol$1 = _root.Symbol; var _Symbol = Symbol$1; /** Used for built-in method references. */ var objectProto$5 = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty$4 = objectProto$5.hasOwnProperty; /** * Used to resolve the * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) * of values. */ var nativeObjectToString$1 = objectProto$5.toString; /** Built-in value references. */ var symToStringTag$1 = _Symbol ? _Symbol.toStringTag : undefined; /** * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values. * * @private * @param {*} value The value to query. * @returns {string} Returns the raw `toStringTag`. */ function getRawTag(value) { var isOwn = hasOwnProperty$4.call(value, symToStringTag$1), tag = value[symToStringTag$1]; try { value[symToStringTag$1] = undefined; var unmasked = true; } catch (e) {} var result = nativeObjectToString$1.call(value); if (unmasked) { if (isOwn) { value[symToStringTag$1] = tag; } else { delete value[symToStringTag$1]; } } return result; } var _getRawTag = getRawTag; /** Used for built-in method references. */ var objectProto$4 = Object.prototype; /** * Used to resolve the * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) * of values. */ var nativeObjectToString = objectProto$4.toString; /** * Converts `value` to a string using `Object.prototype.toString`. * * @private * @param {*} value The value to convert. * @returns {string} Returns the converted string. */ function objectToString(value) { return nativeObjectToString.call(value); } var _objectToString = objectToString; /** `Object#toString` result references. */ var nullTag = '[object Null]', undefinedTag = '[object Undefined]'; /** Built-in value references. */ var symToStringTag = _Symbol ? _Symbol.toStringTag : undefined; /** * The base implementation of `getTag` without fallbacks for buggy environments. * * @private * @param {*} value The value to query. * @returns {string} Returns the `toStringTag`. */ function baseGetTag(value) { if (value == null) { return value === undefined ? undefinedTag : nullTag; } return (symToStringTag && symToStringTag in Object(value)) ? _getRawTag(value) : _objectToString(value); } var _baseGetTag = baseGetTag; /** * Checks if `value` is object-like. A value is object-like if it's not `null` * and has a `typeof` result of "object". * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is object-like, else `false`. * @example * * _.isObjectLike({}); * // => true * * _.isObjectLike([1, 2, 3]); * // => true * * _.isObjectLike(_.noop); * // => false * * _.isObjectLike(null); * // => false */ function isObjectLike(value) { return value != null && typeof value == 'object'; } var isObjectLike_1 = isObjectLike; /** `Object#toString` result references. */ var symbolTag = '[object Symbol]'; /** * Checks if `value` is classified as a `Symbol` primitive or object. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a symbol, else `false`. * @example * * _.isSymbol(Symbol.iterator); * // => true * * _.isSymbol('abc'); * // => false */ function isSymbol(value) { return typeof value == 'symbol' || (isObjectLike_1(value) && _baseGetTag(value) == symbolTag); } var isSymbol_1 = isSymbol; /** Used as references for various `Number` constants. */ var NAN = 0 / 0; /** Used to detect bad signed hexadecimal string values. */ var reIsBadHex = /^[-+]0x[0-9a-f]+$/i; /** Used to detect binary string values. */ var reIsBinary = /^0b[01]+$/i; /** Used to detect octal string values. */ var reIsOctal = /^0o[0-7]+$/i; /** Built-in method references without a dependency on `root`. */ var freeParseInt = parseInt; /** * Converts `value` to a number. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to process. * @returns {number} Returns the number. * @example * * _.toNumber(3.2); * // => 3.2 * * _.toNumber(Number.MIN_VALUE); * // => 5e-324 * * _.toNumber(Infinity); * // => Infinity * * _.toNumber('3.2'); * // => 3.2 */ function toNumber(value) { if (typeof value == 'number') { return value; } if (isSymbol_1(value)) { return NAN; } if (isObject_1(value)) { var other = typeof value.valueOf == 'function' ? value.valueOf() : value; value = isObject_1(other) ? (other + '') : other; } if (typeof value != 'string') { return value === 0 ? value : +value; } value = _baseTrim(value); var isBinary = reIsBinary.test(value); return (isBinary || reIsOctal.test(value)) ? freeParseInt(value.slice(2), isBinary ? 2 : 8) : (reIsBadHex.test(value) ? NAN : +value); } var toNumber_1 = toNumber; /** Error message constants. */ var FUNC_ERROR_TEXT$1 = 'Expected a function'; /* Built-in method references for those with the same name as other `lodash` methods. */ var nativeMax = Math.max, nativeMin = Math.min; /** * Creates a debounced function that delays invoking `func` until after `wait` * milliseconds have elapsed since the last time the debounced function was * invoked. The debounced function comes with a `cancel` method to cancel * delayed `func` invocations and a `flush` method to immediately invoke them. * Provide `options` to indicate whether `func` should be invoked on the * leading and/or trailing edge of the `wait` timeout. The `func` is invoked * with the last arguments provided to the debounced function. Subsequent * calls to the debounced function return the result of the last `func` * invocation. * * **Note:** If `leading` and `trailing` options are `true`, `func` is * invoked on the trailing edge of the timeout only if the debounced function * is invoked more than once during the `wait` timeout. * * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred * until to the next tick, similar to `setTimeout` with a timeout of `0`. * * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/) * for details over the differences between `_.debounce` and `_.throttle`. * * @static * @memberOf _ * @since 0.1.0 * @category Function * @param {Function} func The function to debounce. * @param {number} [wait=0] The number of milliseconds to delay. * @param {Object} [options={}] The options object. * @param {boolean} [options.leading=false] * Specify invoking on the leading edge of the timeout. * @param {number} [options.maxWait] * The maximum time `func` is allowed to be delayed before it's invoked. * @param {boolean} [options.trailing=true] * Specify invoking on the trailing edge of the timeout. * @returns {Function} Returns the new debounced function. * @example * * // Avoid costly calculations while the window size is in flux. * jQuery(window).on('resize', _.debounce(calculateLayout, 150)); * * // Invoke `sendMail` when clicked, debouncing subsequent calls. * jQuery(element).on('click', _.debounce(sendMail, 300, { * 'leading': true, * 'trailing': false * })); * * // Ensure `batchLog` is invoked once after 1 second of debounced calls. * var debounced = _.debounce(batchLog, 250, { 'maxWait': 1000 }); * var source = new EventSource('/stream'); * jQuery(source).on('message', debounced); * * // Cancel the trailing debounced invocation. * jQuery(window).on('popstate', debounced.cancel); */ function debounce(func, wait, options) { var lastArgs, lastThis, maxWait, result, timerId, lastCallTime, lastInvokeTime = 0, leading = false, maxing = false, trailing = true; if (typeof func != 'function') { throw new TypeError(FUNC_ERROR_TEXT$1); } wait = toNumber_1(wait) || 0; if (isObject_1(options)) { leading = !!options.leading; maxing = 'maxWait' in options; maxWait = maxing ? nativeMax(toNumber_1(options.maxWait) || 0, wait) : maxWait; trailing = 'trailing' in options ? !!options.trailing : trailing; } function invokeFunc(time) { var args = lastArgs, thisArg = lastThis; lastArgs = lastThis = undefined; lastInvokeTime = time; result = func.apply(thisArg, args); return result; } function leadingEdge(time) { // Reset any `maxWait` timer. lastInvokeTime = time; // Start the timer for the trailing edge. timerId = setTimeout(timerExpired, wait); // Invoke the leading edge. return leading ? invokeFunc(time) : result; } function remainingWait(time) { var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime, timeWaiting = wait - timeSinceLastCall; return maxing ? nativeMin(timeWaiting, maxWait - timeSinceLastInvoke) : timeWaiting; } function shouldInvoke(time) { var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime; // Either this is the first call, activity has stopped and we're at the // trailing edge, the system time has gone backwards and we're treating // it as the trailing edge, or we've hit the `maxWait` limit. return (lastCallTime === undefined || (timeSinceLastCall >= wait) || (timeSinceLastCall < 0) || (maxing && timeSinceLastInvoke >= maxWait)); } function timerExpired() { var time = now_1(); if (shouldInvoke(time)) { return trailingEdge(time); } // Restart the timer. timerId = setTimeout(timerExpired, remainingWait(time)); } function trailingEdge(time) { timerId = undefined; // Only invoke if we have `lastArgs` which means `func` has been // debounced at least once. if (trailing && lastArgs) { return invokeFunc(time); } lastArgs = lastThis = undefined; return result; } function cancel() { if (timerId !== undefined) { clearTimeout(timerId); } lastInvokeTime = 0; lastArgs = lastCallTime = lastThis = timerId = undefined; } function flush() { return timerId === undefined ? result : trailingEdge(now_1()); } function debounced() { var time = now_1(), isInvoking = shouldInvoke(time); lastArgs = arguments; lastThis = this; lastCallTime = time; if (isInvoking) { if (timerId === undefined) { return leadingEdge(lastCallTime); } if (maxing) { // Handle invocations in a tight loop. clearTimeout(timerId); timerId = setTimeout(timerExpired, wait); return invokeFunc(lastCallTime); } } if (timerId === undefined) { timerId = setTimeout(timerExpired, wait); } return result; } debounced.cancel = cancel; debounced.flush = flush; return debounced; } var debounce_1 = debounce; var performance = _window ? _window.performance : null; var pnow = performance && performance.now ? function () { return performance.now(); } : function () { return Date.now(); }; var raf = function () { if (_window) { if (_window.requestAnimationFrame) { return function (fn) { _window.requestAnimationFrame(fn); }; } else if (_window.mozRequestAnimationFrame) { return function (fn) { _window.mozRequestAnimationFrame(fn); }; } else if (_window.webkitRequestAnimationFrame) { return function (fn) { _window.webkitRequestAnimationFrame(fn); }; } else if (_window.msRequestAnimationFrame) { return function (fn) { _window.msRequestAnimationFrame(fn); }; } } return function (fn) { if (fn) { setTimeout(function () { fn(pnow()); }, 1000 / 60); } }; }(); var requestAnimationFrame = function requestAnimationFrame(fn) { return raf(fn); }; var performanceNow = pnow; var DEFAULT_HASH_SEED = 9261; var K = 65599; // 37 also works pretty well var DEFAULT_HASH_SEED_ALT = 5381; var hashIterableInts = function hashIterableInts(iterator) { var seed = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : DEFAULT_HASH_SEED; // sdbm/string-hash var hash = seed; var entry; for (;;) { entry = iterator.next(); if (entry.done) { break; } hash = hash * K + entry.value | 0; } return hash; }; var hashInt = function hashInt(num) { var seed = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : DEFAULT_HASH_SEED; // sdbm/string-hash return seed * K + num | 0; }; var hashIntAlt = function hashIntAlt(num) { var seed = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : DEFAULT_HASH_SEED_ALT; // djb2/string-hash return (seed << 5) + seed + num | 0; }; var combineHashes = function combineHashes(hash1, hash2) { return hash1 * 0x200000 + hash2; }; var combineHashesArray = function combineHashesArray(hashes) { return hashes[0] * 0x200000 + hashes[1]; }; var hashArrays = function hashArrays(hashes1, hashes2) { return [hashInt(hashes1[0], hashes2[0]), hashIntAlt(hashes1[1], hashes2[1])]; }; var hashIntsArray = function hashIntsArray(ints, seed) { var entry = { value: 0, done: false }; var i = 0; var length = ints.length; var iterator = { next: function next() { if (i < length) { entry.value = ints[i++]; } else { entry.done = true; } return entry; } }; return hashIterableInts(iterator, seed); }; var hashString = function hashString(str, seed) { var entry = { value: 0, done: false }; var i = 0; var length = str.length; var iterator = { next: function next() { if (i < length) { entry.value = str.charCodeAt(i++); } else { entry.done = true; } return entry; } }; return hashIterableInts(iterator, seed); }; var hashStrings = function hashStrings() { return hashStringsArray(arguments); }; var hashStringsArray = function hashStringsArray(strs) { var hash; for (var i = 0; i < strs.length; i++) { var str = strs[i]; if (i === 0) { hash = hashString(str); } else { hash = hashString(str, hash); } } return hash; }; /*global console */ var warningsEnabled = true; var warnSupported = console.warn != null; // eslint-disable-line no-console var traceSupported = console.trace != null; // eslint-disable-line no-console var MAX_INT$1 = Number.MAX_SAFE_INTEGER || 9007199254740991; var trueify = function trueify() { return true; }; var falsify = function falsify() { return false; }; var zeroify = function zeroify() { return 0; }; var noop$1 = function noop() {}; var error = function error(msg) { throw new Error(msg); }; var warnings = function warnings(enabled) { if (enabled !== undefined) { warningsEnabled = !!enabled; } else { return warningsEnabled; } }; var warn = function warn(msg) { /* eslint-disable no-console */ if (!warnings()) { return; } if (warnSupported) { console.warn(msg); } else { console.log(msg); if (traceSupported) { console.trace(); } } }; /* eslint-enable */ var clone = function clone(obj) { return extend({}, obj); }; // gets a shallow copy of the argument var copy = function copy(obj) { if (obj == null) { return obj; } if (array(obj)) { return obj.slice(); } else if (plainObject(obj)) { return clone(obj); } else { return obj; } }; var copyArray$1 = function copyArray(arr) { return arr.slice(); }; var uuid = function uuid(a, b /* placeholders */) { for ( // loop :) b = a = ''; // b - result , a - numeric letiable a++ < 36; // b += a * 51 & 52 // if "a" is not 9 or 14 or 19 or 24 ? // return a random number or 4 (a ^ 15 // if "a" is not 15 ? // generate a random number from 0 to 15 8 ^ Math.random() * (a ^ 20 ? 16 : 4) // unless "a" is 20, in which case a random number from 8 to 11 : 4 // otherwise 4 ).toString(16) : '-' // in other cases (if "a" is 9,14,19,24) insert "-" ) { } return b; }; var _staticEmptyObject = {}; var staticEmptyObject = function staticEmptyObject() { return _staticEmptyObject; }; var defaults$g = function defaults(_defaults) { var keys = Object.keys(_defaults); return function (opts) { var filledOpts = {}; for (var i = 0; i < keys.length; i++) { var key = keys[i]; var optVal = opts == null ? undefined : opts[key]; filledOpts[key] = optVal === undefined ? _defaults[key] : optVal; } return filledOpts; }; }; var removeFromArray = function removeFromArray(arr, ele, oneCopy) { for (var i = arr.length - 1; i >= 0; i--) { if (arr[i] === ele) { arr.splice(i, 1); if (oneCopy) { break; } } } }; var clearArray = function clearArray(arr) { arr.splice(0, arr.length); }; var push = function push(arr, otherArr) { for (var i = 0; i < otherArr.length; i++) { var el = otherArr[i]; arr.push(el); } }; var getPrefixedProperty = function getPrefixedProperty(obj, propName, prefix) { if (prefix) { propName = prependCamel(prefix, propName); // e.g. (labelWidth, source) => sourceLabelWidth } return obj[propName]; }; var setPrefixedProperty = function setPrefixedProperty(obj, propName, prefix, value) { if (prefix) { propName = prependCamel(prefix, propName); // e.g. (labelWidth, source) => sourceLabelWidth } obj[propName] = value; }; /* global Map */ var ObjectMap = /*#__PURE__*/function () { function ObjectMap() { _classCallCheck(this, ObjectMap); this._obj = {}; } _createClass(ObjectMap, [{ key: "set", value: function set(key, val) { this._obj[key] = val; return this; } }, { key: "delete", value: function _delete(key) { this._obj[key] = undefined; return this; } }, { key: "clear", value: function clear() { this._obj = {}; } }, { key: "has", value: function has(key) { return this._obj[key] !== undefined; } }, { key: "get", value: function get(key) { return this._obj[key]; } }]); return ObjectMap; }(); var Map$2 = typeof Map !== 'undefined' ? Map : ObjectMap; /* global Set */ var undef = "undefined" ; var ObjectSet = /*#__PURE__*/function () { function ObjectSet(arrayOrObjectSet) { _classCallCheck(this, ObjectSet); this._obj = Object.create(null); this.size = 0; if (arrayOrObjectSet != null) { var arr; if (arrayOrObjectSet.instanceString != null && arrayOrObjectSet.instanceString() === this.instanceString()) { arr = arrayOrObjectSet.toArray(); } else { arr = arrayOrObjectSet; } for (var i = 0; i < arr.length; i++) { this.add(arr[i]); } } } _createClass(ObjectSet, [{ key: "instanceString", value: function instanceString() { return 'set'; } }, { key: "add", value: function add(val) { var o = this._obj; if (o[val] !== 1) { o[val] = 1; this.size++; } } }, { key: "delete", value: function _delete(val) { var o = this._obj; if (o[val] === 1) { o[val] = 0; this.size--; } } }, { key: "clear", value: function clear() { this._obj = Object.create(null); } }, { key: "has", value: function has(val) { return this._obj[val] === 1; } }, { key: "toArray", value: function toArray() { var _this = this; return Object.keys(this._obj).filter(function (key) { return _this.has(key); }); } }, { key: "forEach", value: function forEach(callback, thisArg) { return this.toArray().forEach(callback, thisArg); } }]); return ObjectSet; }(); var Set$1 = (typeof Set === "undefined" ? "undefined" : _typeof(Set)) !== undef ? Set : ObjectSet; // represents a node or an edge var Element = function Element(cy, params) { var restore = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true; if (cy === undefined || params === undefined || !core(cy)) { error('An element must have a core reference and parameters set'); return; } var group = params.group; // try to automatically infer the group if unspecified if (group == null) { if (params.data && params.data.source != null && params.data.target != null) { group = 'edges'; } else { group = 'nodes'; } } // validate group if (group !== 'nodes' && group !== 'edges') { error('An element must be of type `nodes` or `edges`; you specified `' + group + '`'); return; } // make the element array-like, just like a collection this.length = 1; this[0] = this; // NOTE: when something is added here, add also to ele.json() var _p = this._private = { cy: cy, single: true, // indicates this is an element data: params.data || {}, // data object position: params.position || { x: 0, y: 0 }, // (x, y) position pair autoWidth: undefined, // width and height of nodes calculated by the renderer when set to special 'auto' value autoHeight: undefined, autoPadding: undefined, compoundBoundsClean: false, // whether the compound dimensions need to be recalculated the next time dimensions are read listeners: [], // array of bound listeners group: group, // string; 'nodes' or 'edges' style: {}, // properties as set by the style rstyle: {}, // properties for style sent from the renderer to the core styleCxts: [], // applied style contexts from the styler styleKeys: {}, // per-group keys of style property values removed: true, // whether it's inside the vis; true if removed (set true here since we call restore) selected: params.selected ? true : false, // whether it's selected selectable: params.selectable === undefined ? true : params.selectable ? true : false, // whether it's selectable locked: params.locked ? true : false, // whether the element is locked (cannot be moved) grabbed: false, // whether the element is grabbed by the mouse; renderer sets this privately grabbable: params.grabbable === undefined ? true : params.grabbable ? true : false, // whether the element can be grabbed pannable: params.pannable === undefined ? group === 'edges' ? true : false : params.pannable ? true : false, // whether the element has passthrough panning enabled active: false, // whether the element is active from user interaction classes: new Set$1(), // map ( className => true ) animation: { // object for currently-running animations current: [], queue: [] }, rscratch: {}, // object in which the renderer can store information scratch: params.scratch || {}, // scratch objects edges: [], // array of connected edges children: [], // array of children parent: params.parent && params.parent.isNode() ? params.parent : null, // parent ref traversalCache: {}, // cache of output of traversal functions backgrounding: false, // whether background images are loading bbCache: null, // cache of the current bounding box bbCacheShift: { x: 0, y: 0 }, // shift applied to cached bb to be applied on next get bodyBounds: null, // bounds cache of element body, w/o overlay overlayBounds: null, // bounds cache of element body, including overlay labelBounds: { // bounds cache of labels all: null, source: null, target: null, main: null }, arrowBounds: { // bounds cache of edge arrows source: null, target: null, 'mid-source': null, 'mid-target': null } }; if (_p.position.x == null) { _p.position.x = 0; } if (_p.position.y == null) { _p.position.y = 0; } // renderedPosition overrides if specified if (params.renderedPosition) { var rpos = params.renderedPosition; var pan = cy.pan(); var zoom = cy.zoom(); _p.position = { x: (rpos.x - pan.x) / zoom, y: (rpos.y - pan.y) / zoom }; } var classes = []; if (array(params.classes)) { classes = params.classes; } else if (string(params.classes)) { classes = params.classes.split(/\s+/); } for (var i = 0, l = classes.length; i < l; i++) { var cls = classes[i]; if (!cls || cls === '') { continue; } _p.classes.add(cls); } this.createEmitter(); var bypass = params.style || params.css; if (bypass) { warn('Setting a `style` bypass at element creation should be done only when absolutely necessary. Try to use the stylesheet instead.'); this.style(bypass); } if (restore === undefined || restore) { this.restore(); } }; var defineSearch = function defineSearch(params) { params = { bfs: params.bfs || !params.dfs, dfs: params.dfs || !params.bfs }; // from pseudocode on wikipedia return function searchFn(roots, fn, directed) { var options; if (plainObject(roots) && !elementOrCollection(roots)) { options = roots; roots = options.roots || options.root; fn = options.visit; directed = options.directed; } directed = arguments.length === 2 && !fn$6(fn) ? fn : directed; fn = fn$6(fn) ? fn : function () {}; var cy = this._private.cy; var v = roots = string(roots) ? this.filter(roots) : roots; var Q = []; var connectedNodes = []; var connectedBy = {}; var id2depth = {}; var V = {}; var j = 0; var found; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; // enqueue v for (var i = 0; i < v.length; i++) { var vi = v[i]; var viId = vi.id(); if (vi.isNode()) { Q.unshift(vi); if (params.bfs) { V[viId] = true; connectedNodes.push(vi); } id2depth[viId] = 0; } } var _loop = function _loop() { var v = params.bfs ? Q.shift() : Q.pop(); var vId = v.id(); if (params.dfs) { if (V[vId]) { return "continue"; } V[vId] = true; connectedNodes.push(v); } var depth = id2depth[vId]; var prevEdge = connectedBy[vId]; var src = prevEdge != null ? prevEdge.source() : null; var tgt = prevEdge != null ? prevEdge.target() : null; var prevNode = prevEdge == null ? undefined : v.same(src) ? tgt[0] : src[0]; var ret = void 0; ret = fn(v, prevEdge, prevNode, j++, depth); if (ret === true) { found = v; return "break"; } if (ret === false) { return "break"; } var vwEdges = v.connectedEdges().filter(function (e) { return (!directed || e.source().same(v)) && edges.has(e); }); for (var _i2 = 0; _i2 < vwEdges.length; _i2++) { var e = vwEdges[_i2]; var w = e.connectedNodes().filter(function (n) { return !n.same(v) && nodes.has(n); }); var wId = w.id(); if (w.length !== 0 && !V[wId]) { w = w[0]; Q.push(w); if (params.bfs) { V[wId] = true; connectedNodes.push(w); } connectedBy[wId] = e; id2depth[wId] = id2depth[vId] + 1; } } }; while (Q.length !== 0) { var _ret = _loop(); if (_ret === "continue") continue; if (_ret === "break") break; } var connectedEles = cy.collection(); for (var _i = 0; _i < connectedNodes.length; _i++) { var node = connectedNodes[_i]; var edge = connectedBy[node.id()]; if (edge != null) { connectedEles.push(edge); } connectedEles.push(node); } return { path: cy.collection(connectedEles), found: cy.collection(found) }; }; }; // search, spanning trees, etc var elesfn$v = { breadthFirstSearch: defineSearch({ bfs: true }), depthFirstSearch: defineSearch({ dfs: true }) }; // nice, short mathematical alias elesfn$v.bfs = elesfn$v.breadthFirstSearch; elesfn$v.dfs = elesfn$v.depthFirstSearch; var heap$1 = createCommonjsModule(function (module, exports) { // Generated by CoffeeScript 1.8.0 (function() { var Heap, defaultCmp, floor, heapify, heappop, heappush, heappushpop, heapreplace, insort, min, nlargest, nsmallest, updateItem, _siftdown, _siftup; floor = Math.floor, min = Math.min; /* Default comparison function to be used */ defaultCmp = function(x, y) { if (x < y) { return -1; } if (x > y) { return 1; } return 0; }; /* Insert item x in list a, and keep it sorted assuming a is sorted. If x is already in a, insert it to the right of the rightmost x. Optional args lo (default 0) and hi (default a.length) bound the slice of a to be searched. */ insort = function(a, x, lo, hi, cmp) { var mid; if (lo == null) { lo = 0; } if (cmp == null) { cmp = defaultCmp; } if (lo < 0) { throw new Error('lo must be non-negative'); } if (hi == null) { hi = a.length; } while (lo < hi) { mid = floor((lo + hi) / 2); if (cmp(x, a[mid]) < 0) { hi = mid; } else { lo = mid + 1; } } return ([].splice.apply(a, [lo, lo - lo].concat(x)), x); }; /* Push item onto heap, maintaining the heap invariant. */ heappush = function(array, item, cmp) { if (cmp == null) { cmp = defaultCmp; } array.push(item); return _siftdown(array, 0, array.length - 1, cmp); }; /* Pop the smallest item off the heap, maintaining the heap invariant. */ heappop = function(array, cmp) { var lastelt, returnitem; if (cmp == null) { cmp = defaultCmp; } lastelt = array.pop(); if (array.length) { returnitem = array[0]; array[0] = lastelt; _siftup(array, 0, cmp); } else { returnitem = lastelt; } return returnitem; }; /* Pop and return the current smallest value, and add the new item. This is more efficient than heappop() followed by heappush(), and can be more appropriate when using a fixed size heap. Note that the value returned may be larger than item! That constrains reasonable use of this routine unless written as part of a conditional replacement: if item > array[0] item = heapreplace(array, item) */ heapreplace = function(array, item, cmp) { var returnitem; if (cmp == null) { cmp = defaultCmp; } returnitem = array[0]; array[0] = item; _siftup(array, 0, cmp); return returnitem; }; /* Fast version of a heappush followed by a heappop. */ heappushpop = function(array, item, cmp) { var _ref; if (cmp == null) { cmp = defaultCmp; } if (array.length && cmp(array[0], item) < 0) { _ref = [array[0], item], item = _ref[0], array[0] = _ref[1]; _siftup(array, 0, cmp); } return item; }; /* Transform list into a heap, in-place, in O(array.length) time. */ heapify = function(array, cmp) { var i, _i, _len, _ref1, _results, _results1; if (cmp == null) { cmp = defaultCmp; } _ref1 = (function() { _results1 = []; for (var _j = 0, _ref = floor(array.length / 2); 0 <= _ref ? _j < _ref : _j > _ref; 0 <= _ref ? _j++ : _j--){ _results1.push(_j); } return _results1; }).apply(this).reverse(); _results = []; for (_i = 0, _len = _ref1.length; _i < _len; _i++) { i = _ref1[_i]; _results.push(_siftup(array, i, cmp)); } return _results; }; /* Update the position of the given item in the heap. This function should be called every time the item is being modified. */ updateItem = function(array, item, cmp) { var pos; if (cmp == null) { cmp = defaultCmp; } pos = array.indexOf(item); if (pos === -1) { return; } _siftdown(array, 0, pos, cmp); return _siftup(array, pos, cmp); }; /* Find the n largest elements in a dataset. */ nlargest = function(array, n, cmp) { var elem, result, _i, _len, _ref; if (cmp == null) { cmp = defaultCmp; } result = array.slice(0, n); if (!result.length) { return result; } heapify(result, cmp); _ref = array.slice(n); for (_i = 0, _len = _ref.length; _i < _len; _i++) { elem = _ref[_i]; heappushpop(result, elem, cmp); } return result.sort(cmp).reverse(); }; /* Find the n smallest elements in a dataset. */ nsmallest = function(array, n, cmp) { var elem, los, result, _i, _j, _len, _ref, _ref1, _results; if (cmp == null) { cmp = defaultCmp; } if (n * 10 <= array.length) { result = array.slice(0, n).sort(cmp); if (!result.length) { return result; } los = result[result.length - 1]; _ref = array.slice(n); for (_i = 0, _len = _ref.length; _i < _len; _i++) { elem = _ref[_i]; if (cmp(elem, los) < 0) { insort(result, elem, 0, null, cmp); result.pop(); los = result[result.length - 1]; } } return result; } heapify(array, cmp); _results = []; for (_j = 0, _ref1 = min(n, array.length); 0 <= _ref1 ? _j < _ref1 : _j > _ref1; 0 <= _ref1 ? ++_j : --_j) { _results.push(heappop(array, cmp)); } return _results; }; _siftdown = function(array, startpos, pos, cmp) { var newitem, parent, parentpos; if (cmp == null) { cmp = defaultCmp; } newitem = array[pos]; while (pos > startpos) { parentpos = (pos - 1) >> 1; parent = array[parentpos]; if (cmp(newitem, parent) < 0) { array[pos] = parent; pos = parentpos; continue; } break; } return array[pos] = newitem; }; _siftup = function(array, pos, cmp) { var childpos, endpos, newitem, rightpos, startpos; if (cmp == null) { cmp = defaultCmp; } endpos = array.length; startpos = pos; newitem = array[pos]; childpos = 2 * pos + 1; while (childpos < endpos) { rightpos = childpos + 1; if (rightpos < endpos && !(cmp(array[childpos], array[rightpos]) < 0)) { childpos = rightpos; } array[pos] = array[childpos]; pos = childpos; childpos = 2 * pos + 1; } array[pos] = newitem; return _siftdown(array, startpos, pos, cmp); }; Heap = (function() { Heap.push = heappush; Heap.pop = heappop; Heap.replace = heapreplace; Heap.pushpop = heappushpop; Heap.heapify = heapify; Heap.updateItem = updateItem; Heap.nlargest = nlargest; Heap.nsmallest = nsmallest; function Heap(cmp) { this.cmp = cmp != null ? cmp : defaultCmp; this.nodes = []; } Heap.prototype.push = function(x) { return heappush(this.nodes, x, this.cmp); }; Heap.prototype.pop = function() { return heappop(this.nodes, this.cmp); }; Heap.prototype.peek = function() { return this.nodes[0]; }; Heap.prototype.contains = function(x) { return this.nodes.indexOf(x) !== -1; }; Heap.prototype.replace = function(x) { return heapreplace(this.nodes, x, this.cmp); }; Heap.prototype.pushpop = function(x) { return heappushpop(this.nodes, x, this.cmp); }; Heap.prototype.heapify = function() { return heapify(this.nodes, this.cmp); }; Heap.prototype.updateItem = function(x) { return updateItem(this.nodes, x, this.cmp); }; Heap.prototype.clear = function() { return this.nodes = []; }; Heap.prototype.empty = function() { return this.nodes.length === 0; }; Heap.prototype.size = function() { return this.nodes.length; }; Heap.prototype.clone = function() { var heap; heap = new Heap(); heap.nodes = this.nodes.slice(0); return heap; }; Heap.prototype.toArray = function() { return this.nodes.slice(0); }; Heap.prototype.insert = Heap.prototype.push; Heap.prototype.top = Heap.prototype.peek; Heap.prototype.front = Heap.prototype.peek; Heap.prototype.has = Heap.prototype.contains; Heap.prototype.copy = Heap.prototype.clone; return Heap; })(); (function(root, factory) { { return module.exports = factory(); } })(this, function() { return Heap; }); }).call(commonjsGlobal); }); var heap = heap$1; var dijkstraDefaults = defaults$g({ root: null, weight: function weight(edge) { return 1; }, directed: false }); var elesfn$u = { dijkstra: function dijkstra(options) { if (!plainObject(options)) { var args = arguments; options = { root: args[0], weight: args[1], directed: args[2] }; } var _dijkstraDefaults = dijkstraDefaults(options), root = _dijkstraDefaults.root, weight = _dijkstraDefaults.weight, directed = _dijkstraDefaults.directed; var eles = this; var weightFn = weight; var source = string(root) ? this.filter(root)[0] : root[0]; var dist = {}; var prev = {}; var knownDist = {}; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; edges.unmergeBy(function (ele) { return ele.isLoop(); }); var getDist = function getDist(node) { return dist[node.id()]; }; var setDist = function setDist(node, d) { dist[node.id()] = d; Q.updateItem(node); }; var Q = new heap(function (a, b) { return getDist(a) - getDist(b); }); for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; dist[node.id()] = node.same(source) ? 0 : Infinity; Q.push(node); } var distBetween = function distBetween(u, v) { var uvs = (directed ? u.edgesTo(v) : u.edgesWith(v)).intersect(edges); var smallestDistance = Infinity; var smallestEdge; for (var _i = 0; _i < uvs.length; _i++) { var edge = uvs[_i]; var _weight = weightFn(edge); if (_weight < smallestDistance || !smallestEdge) { smallestDistance = _weight; smallestEdge = edge; } } return { edge: smallestEdge, dist: smallestDistance }; }; while (Q.size() > 0) { var u = Q.pop(); var smalletsDist = getDist(u); var uid = u.id(); knownDist[uid] = smalletsDist; if (smalletsDist === Infinity) { continue; } var neighbors = u.neighborhood().intersect(nodes); for (var _i2 = 0; _i2 < neighbors.length; _i2++) { var v = neighbors[_i2]; var vid = v.id(); var vDist = distBetween(u, v); var alt = smalletsDist + vDist.dist; if (alt < getDist(v)) { setDist(v, alt); prev[vid] = { node: u, edge: vDist.edge }; } } // for } // while return { distanceTo: function distanceTo(node) { var target = string(node) ? nodes.filter(node)[0] : node[0]; return knownDist[target.id()]; }, pathTo: function pathTo(node) { var target = string(node) ? nodes.filter(node)[0] : node[0]; var S = []; var u = target; var uid = u.id(); if (target.length > 0) { S.unshift(target); while (prev[uid]) { var p = prev[uid]; S.unshift(p.edge); S.unshift(p.node); u = p.node; uid = u.id(); } } return eles.spawn(S); } }; } }; var elesfn$t = { // kruskal's algorithm (finds min spanning tree, assuming undirected graph) // implemented from pseudocode from wikipedia kruskal: function kruskal(weightFn) { weightFn = weightFn || function (edge) { return 1; }; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; var numNodes = nodes.length; var forest = new Array(numNodes); var A = nodes; // assumes byGroup() creates new collections that can be safely mutated var findSetIndex = function findSetIndex(ele) { for (var i = 0; i < forest.length; i++) { var eles = forest[i]; if (eles.has(ele)) { return i; } } }; // start with one forest per node for (var i = 0; i < numNodes; i++) { forest[i] = this.spawn(nodes[i]); } var S = edges.sort(function (a, b) { return weightFn(a) - weightFn(b); }); for (var _i = 0; _i < S.length; _i++) { var edge = S[_i]; var u = edge.source()[0]; var v = edge.target()[0]; var setUIndex = findSetIndex(u); var setVIndex = findSetIndex(v); var setU = forest[setUIndex]; var setV = forest[setVIndex]; if (setUIndex !== setVIndex) { A.merge(edge); // combine forests for u and v setU.merge(setV); forest.splice(setVIndex, 1); } } return A; } }; var aStarDefaults = defaults$g({ root: null, goal: null, weight: function weight(edge) { return 1; }, heuristic: function heuristic(edge) { return 0; }, directed: false }); var elesfn$s = { // Implemented from pseudocode from wikipedia aStar: function aStar(options) { var cy = this.cy(); var _aStarDefaults = aStarDefaults(options), root = _aStarDefaults.root, goal = _aStarDefaults.goal, heuristic = _aStarDefaults.heuristic, directed = _aStarDefaults.directed, weight = _aStarDefaults.weight; root = cy.collection(root)[0]; goal = cy.collection(goal)[0]; var sid = root.id(); var tid = goal.id(); var gScore = {}; var fScore = {}; var closedSetIds = {}; var openSet = new heap(function (a, b) { return fScore[a.id()] - fScore[b.id()]; }); var openSetIds = new Set$1(); var cameFrom = {}; var cameFromEdge = {}; var addToOpenSet = function addToOpenSet(ele, id) { openSet.push(ele); openSetIds.add(id); }; var cMin, cMinId; var popFromOpenSet = function popFromOpenSet() { cMin = openSet.pop(); cMinId = cMin.id(); openSetIds["delete"](cMinId); }; var isInOpenSet = function isInOpenSet(id) { return openSetIds.has(id); }; addToOpenSet(root, sid); gScore[sid] = 0; fScore[sid] = heuristic(root); // Counter var steps = 0; // Main loop while (openSet.size() > 0) { popFromOpenSet(); steps++; // If we've found our goal, then we are done if (cMinId === tid) { var path = []; var pathNode = goal; var pathNodeId = tid; var pathEdge = cameFromEdge[pathNodeId]; for (;;) { path.unshift(pathNode); if (pathEdge != null) { path.unshift(pathEdge); } pathNode = cameFrom[pathNodeId]; if (pathNode == null) { break; } pathNodeId = pathNode.id(); pathEdge = cameFromEdge[pathNodeId]; } return { found: true, distance: gScore[cMinId], path: this.spawn(path), steps: steps }; } // Add cMin to processed nodes closedSetIds[cMinId] = true; // Update scores for neighbors of cMin // Take into account if graph is directed or not var vwEdges = cMin._private.edges; for (var i = 0; i < vwEdges.length; i++) { var e = vwEdges[i]; // edge must be in set of calling eles if (!this.hasElementWithId(e.id())) { continue; } // cMin must be the source of edge if directed if (directed && e.data('source') !== cMinId) { continue; } var wSrc = e.source(); var wTgt = e.target(); var w = wSrc.id() !== cMinId ? wSrc : wTgt; var wid = w.id(); // node must be in set of calling eles if (!this.hasElementWithId(wid)) { continue; } // if node is in closedSet, ignore it if (closedSetIds[wid]) { continue; } // New tentative score for node w var tempScore = gScore[cMinId] + weight(e); // Update gScore for node w if: // w not present in openSet // OR // tentative gScore is less than previous value // w not in openSet if (!isInOpenSet(wid)) { gScore[wid] = tempScore; fScore[wid] = tempScore + heuristic(w); addToOpenSet(w, wid); cameFrom[wid] = cMin; cameFromEdge[wid] = e; continue; } // w already in openSet, but with greater gScore if (tempScore < gScore[wid]) { gScore[wid] = tempScore; fScore[wid] = tempScore + heuristic(w); cameFrom[wid] = cMin; cameFromEdge[wid] = e; } } // End of neighbors update } // End of main loop // If we've reached here, then we've not reached our goal return { found: false, distance: undefined, path: undefined, steps: steps }; } }; // elesfn var floydWarshallDefaults = defaults$g({ weight: function weight(edge) { return 1; }, directed: false }); var elesfn$r = { // Implemented from pseudocode from wikipedia floydWarshall: function floydWarshall(options) { var cy = this.cy(); var _floydWarshallDefault = floydWarshallDefaults(options), weight = _floydWarshallDefault.weight, directed = _floydWarshallDefault.directed; var weightFn = weight; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; var N = nodes.length; var Nsq = N * N; var indexOf = function indexOf(node) { return nodes.indexOf(node); }; var atIndex = function atIndex(i) { return nodes[i]; }; // Initialize distance matrix var dist = new Array(Nsq); for (var n = 0; n < Nsq; n++) { var j = n % N; var i = (n - j) / N; if (i === j) { dist[n] = 0; } else { dist[n] = Infinity; } } // Initialize matrix used for path reconstruction // Initialize distance matrix var next = new Array(Nsq); var edgeNext = new Array(Nsq); // Process edges for (var _i = 0; _i < edges.length; _i++) { var edge = edges[_i]; var src = edge.source()[0]; var tgt = edge.target()[0]; if (src === tgt) { continue; } // exclude loops var s = indexOf(src); var t = indexOf(tgt); var st = s * N + t; // source to target index var _weight = weightFn(edge); // Check if already process another edge between same 2 nodes if (dist[st] > _weight) { dist[st] = _weight; next[st] = t; edgeNext[st] = edge; } // If undirected graph, process 'reversed' edge if (!directed) { var ts = t * N + s; // target to source index if (!directed && dist[ts] > _weight) { dist[ts] = _weight; next[ts] = s; edgeNext[ts] = edge; } } } // Main loop for (var k = 0; k < N; k++) { for (var _i2 = 0; _i2 < N; _i2++) { var ik = _i2 * N + k; for (var _j = 0; _j < N; _j++) { var ij = _i2 * N + _j; var kj = k * N + _j; if (dist[ik] + dist[kj] < dist[ij]) { dist[ij] = dist[ik] + dist[kj]; next[ij] = next[ik]; } } } } var getArgEle = function getArgEle(ele) { return (string(ele) ? cy.filter(ele) : ele)[0]; }; var indexOfArgEle = function indexOfArgEle(ele) { return indexOf(getArgEle(ele)); }; var res = { distance: function distance(from, to) { var i = indexOfArgEle(from); var j = indexOfArgEle(to); return dist[i * N + j]; }, path: function path(from, to) { var i = indexOfArgEle(from); var j = indexOfArgEle(to); var fromNode = atIndex(i); if (i === j) { return fromNode.collection(); } if (next[i * N + j] == null) { return cy.collection(); } var path = cy.collection(); var prev = i; var edge; path.merge(fromNode); while (i !== j) { prev = i; i = next[i * N + j]; edge = edgeNext[prev * N + i]; path.merge(edge); path.merge(atIndex(i)); } return path; } }; return res; } // floydWarshall }; // elesfn var bellmanFordDefaults = defaults$g({ weight: function weight(edge) { return 1; }, directed: false, root: null }); var elesfn$q = { // Implemented from pseudocode from wikipedia bellmanFord: function bellmanFord(options) { var _this = this; var _bellmanFordDefaults = bellmanFordDefaults(options), weight = _bellmanFordDefaults.weight, directed = _bellmanFordDefaults.directed, root = _bellmanFordDefaults.root; var weightFn = weight; var eles = this; var cy = this.cy(); var _this$byGroup = this.byGroup(), edges = _this$byGroup.edges, nodes = _this$byGroup.nodes; var numNodes = nodes.length; var infoMap = new Map$2(); var hasNegativeWeightCycle = false; var negativeWeightCycles = []; root = cy.collection(root)[0]; // in case selector passed edges.unmergeBy(function (edge) { return edge.isLoop(); }); var numEdges = edges.length; var getInfo = function getInfo(node) { var obj = infoMap.get(node.id()); if (!obj) { obj = {}; infoMap.set(node.id(), obj); } return obj; }; var getNodeFromTo = function getNodeFromTo(to) { return (string(to) ? cy.$(to) : to)[0]; }; var distanceTo = function distanceTo(to) { return getInfo(getNodeFromTo(to)).dist; }; var pathTo = function pathTo(to) { var thisStart = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : root; var end = getNodeFromTo(to); var path = []; var node = end; for (;;) { if (node == null) { return _this.spawn(); } var _getInfo = getInfo(node), edge = _getInfo.edge, pred = _getInfo.pred; path.unshift(node[0]); if (node.same(thisStart) && path.length > 0) { break; } if (edge != null) { path.unshift(edge); } node = pred; } return eles.spawn(path); }; // Initializations { dist, pred, edge } for (var i = 0; i < numNodes; i++) { var node = nodes[i]; var info = getInfo(node); if (node.same(root)) { info.dist = 0; } else { info.dist = Infinity; } info.pred = null; info.edge = null; } // Edges relaxation var replacedEdge = false; var checkForEdgeReplacement = function checkForEdgeReplacement(node1, node2, edge, info1, info2, weight) { var dist = info1.dist + weight; if (dist < info2.dist && !edge.same(info1.edge)) { info2.dist = dist; info2.pred = node1; info2.edge = edge; replacedEdge = true; } }; for (var _i = 1; _i < numNodes; _i++) { replacedEdge = false; for (var e = 0; e < numEdges; e++) { var edge = edges[e]; var src = edge.source(); var tgt = edge.target(); var _weight = weightFn(edge); var srcInfo = getInfo(src); var tgtInfo = getInfo(tgt); checkForEdgeReplacement(src, tgt, edge, srcInfo, tgtInfo, _weight); // If undirected graph, we need to take into account the 'reverse' edge if (!directed) { checkForEdgeReplacement(tgt, src, edge, tgtInfo, srcInfo, _weight); } } if (!replacedEdge) { break; } } if (replacedEdge) { // Check for negative weight cycles var negativeWeightCycleIds = []; for (var _e = 0; _e < numEdges; _e++) { var _edge = edges[_e]; var _src = _edge.source(); var _tgt = _edge.target(); var _weight2 = weightFn(_edge); var srcDist = getInfo(_src).dist; var tgtDist = getInfo(_tgt).dist; if (srcDist + _weight2 < tgtDist || !directed && tgtDist + _weight2 < srcDist) { if (!hasNegativeWeightCycle) { warn('Graph contains a negative weight cycle for Bellman-Ford'); hasNegativeWeightCycle = true; } if (options.findNegativeWeightCycles !== false) { var negativeNodes = []; if (srcDist + _weight2 < tgtDist) { negativeNodes.push(_src); } if (!directed && tgtDist + _weight2 < srcDist) { negativeNodes.push(_tgt); } var numNegativeNodes = negativeNodes.length; for (var n = 0; n < numNegativeNodes; n++) { var start = negativeNodes[n]; var cycle = [start]; cycle.push(getInfo(start).edge); var _node = getInfo(start).pred; while (cycle.indexOf(_node) === -1) { cycle.push(_node); cycle.push(getInfo(_node).edge); _node = getInfo(_node).pred; } cycle = cycle.slice(cycle.indexOf(_node)); var smallestId = cycle[0].id(); var smallestIndex = 0; for (var c = 2; c < cycle.length; c += 2) { if (cycle[c].id() < smallestId) { smallestId = cycle[c].id(); smallestIndex = c; } } cycle = cycle.slice(smallestIndex).concat(cycle.slice(0, smallestIndex)); cycle.push(cycle[0]); var cycleId = cycle.map(function (el) { return el.id(); }).join(","); if (negativeWeightCycleIds.indexOf(cycleId) === -1) { negativeWeightCycles.push(eles.spawn(cycle)); negativeWeightCycleIds.push(cycleId); } } } else { break; } } } } return { distanceTo: distanceTo, pathTo: pathTo, hasNegativeWeightCycle: hasNegativeWeightCycle, negativeWeightCycles: negativeWeightCycles }; } // bellmanFord }; // elesfn var sqrt2 = Math.sqrt(2); // Function which colapses 2 (meta) nodes into one // Updates the remaining edge lists // Receives as a paramater the edge which causes the collapse var collapse = function collapse(edgeIndex, nodeMap, remainingEdges) { if (remainingEdges.length === 0) { error("Karger-Stein must be run on a connected (sub)graph"); } var edgeInfo = remainingEdges[edgeIndex]; var sourceIn = edgeInfo[1]; var targetIn = edgeInfo[2]; var partition1 = nodeMap[sourceIn]; var partition2 = nodeMap[targetIn]; var newEdges = remainingEdges; // re-use array // Delete all edges between partition1 and partition2 for (var i = newEdges.length - 1; i >= 0; i--) { var edge = newEdges[i]; var src = edge[1]; var tgt = edge[2]; if (nodeMap[src] === partition1 && nodeMap[tgt] === partition2 || nodeMap[src] === partition2 && nodeMap[tgt] === partition1) { newEdges.splice(i, 1); } } // All edges pointing to partition2 should now point to partition1 for (var _i = 0; _i < newEdges.length; _i++) { var _edge = newEdges[_i]; if (_edge[1] === partition2) { // Check source newEdges[_i] = _edge.slice(); // copy newEdges[_i][1] = partition1; } else if (_edge[2] === partition2) { // Check target newEdges[_i] = _edge.slice(); // copy newEdges[_i][2] = partition1; } } // Move all nodes from partition2 to partition1 for (var _i2 = 0; _i2 < nodeMap.length; _i2++) { if (nodeMap[_i2] === partition2) { nodeMap[_i2] = partition1; } } return newEdges; }; // Contracts a graph until we reach a certain number of meta nodes var contractUntil = function contractUntil(metaNodeMap, remainingEdges, size, sizeLimit) { while (size > sizeLimit) { // Choose an edge randomly var edgeIndex = Math.floor(Math.random() * remainingEdges.length); // Collapse graph based on edge remainingEdges = collapse(edgeIndex, metaNodeMap, remainingEdges); size--; } return remainingEdges; }; var elesfn$p = { // Computes the minimum cut of an undirected graph // Returns the correct answer with high probability kargerStein: function kargerStein() { var _this = this; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; edges.unmergeBy(function (edge) { return edge.isLoop(); }); var numNodes = nodes.length; var numEdges = edges.length; var numIter = Math.ceil(Math.pow(Math.log(numNodes) / Math.LN2, 2)); var stopSize = Math.floor(numNodes / sqrt2); if (numNodes < 2) { error('At least 2 nodes are required for Karger-Stein algorithm'); return undefined; } // Now store edge destination as indexes // Format for each edge (edge index, source node index, target node index) var edgeIndexes = []; for (var i = 0; i < numEdges; i++) { var e = edges[i]; edgeIndexes.push([i, nodes.indexOf(e.source()), nodes.indexOf(e.target())]); } // We will store the best cut found here var minCutSize = Infinity; var minCutEdgeIndexes = []; var minCutNodeMap = new Array(numNodes); // Initial meta node partition var metaNodeMap = new Array(numNodes); var metaNodeMap2 = new Array(numNodes); var copyNodesMap = function copyNodesMap(from, to) { for (var _i3 = 0; _i3 < numNodes; _i3++) { to[_i3] = from[_i3]; } }; // Main loop for (var iter = 0; iter <= numIter; iter++) { // Reset meta node partition for (var _i4 = 0; _i4 < numNodes; _i4++) { metaNodeMap[_i4] = _i4; } // Contract until stop point (stopSize nodes) var edgesState = contractUntil(metaNodeMap, edgeIndexes.slice(), numNodes, stopSize); var edgesState2 = edgesState.slice(); // copy // Create a copy of the colapsed nodes state copyNodesMap(metaNodeMap, metaNodeMap2); // Run 2 iterations starting in the stop state var res1 = contractUntil(metaNodeMap, edgesState, stopSize, 2); var res2 = contractUntil(metaNodeMap2, edgesState2, stopSize, 2); // Is any of the 2 results the best cut so far? if (res1.length <= res2.length && res1.length < minCutSize) { minCutSize = res1.length; minCutEdgeIndexes = res1; copyNodesMap(metaNodeMap, minCutNodeMap); } else if (res2.length <= res1.length && res2.length < minCutSize) { minCutSize = res2.length; minCutEdgeIndexes = res2; copyNodesMap(metaNodeMap2, minCutNodeMap); } } // end of main loop // Construct result var cut = this.spawn(minCutEdgeIndexes.map(function (e) { return edges[e[0]]; })); var partition1 = this.spawn(); var partition2 = this.spawn(); // traverse metaNodeMap for best cut var witnessNodePartition = minCutNodeMap[0]; for (var _i5 = 0; _i5 < minCutNodeMap.length; _i5++) { var partitionId = minCutNodeMap[_i5]; var node = nodes[_i5]; if (partitionId === witnessNodePartition) { partition1.merge(node); } else { partition2.merge(node); } } // construct components corresponding to each disjoint subset of nodes var constructComponent = function constructComponent(subset) { var component = _this.spawn(); subset.forEach(function (node) { component.merge(node); node.connectedEdges().forEach(function (edge) { // ensure edge is within calling collection and edge is not in cut if (_this.contains(edge) && !cut.contains(edge)) { component.merge(edge); } }); }); return component; }; var components = [constructComponent(partition1), constructComponent(partition2)]; var ret = { cut: cut, components: components, // n.b. partitions are included to be compatible with the old api spec // (could be removed in a future major version) partition1: partition1, partition2: partition2 }; return ret; } }; // elesfn var copyPosition = function copyPosition(p) { return { x: p.x, y: p.y }; }; var modelToRenderedPosition = function modelToRenderedPosition(p, zoom, pan) { return { x: p.x * zoom + pan.x, y: p.y * zoom + pan.y }; }; var renderedToModelPosition = function renderedToModelPosition(p, zoom, pan) { return { x: (p.x - pan.x) / zoom, y: (p.y - pan.y) / zoom }; }; var array2point = function array2point(arr) { return { x: arr[0], y: arr[1] }; }; var min = function min(arr) { var begin = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; var end = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : arr.length; var min = Infinity; for (var i = begin; i < end; i++) { var val = arr[i]; if (isFinite(val)) { min = Math.min(val, min); } } return min; }; var max = function max(arr) { var begin = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; var end = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : arr.length; var max = -Infinity; for (var i = begin; i < end; i++) { var val = arr[i]; if (isFinite(val)) { max = Math.max(val, max); } } return max; }; var mean = function mean(arr) { var begin = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; var end = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : arr.length; var total = 0; var n = 0; for (var i = begin; i < end; i++) { var val = arr[i]; if (isFinite(val)) { total += val; n++; } } return total / n; }; var median = function median(arr) { var begin = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; var end = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : arr.length; var copy = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true; var sort = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true; var includeHoles = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : true; if (copy) { arr = arr.slice(begin, end); } else { if (end < arr.length) { arr.splice(end, arr.length - end); } if (begin > 0) { arr.splice(0, begin); } } // all non finite (e.g. Infinity, NaN) elements must be -Infinity so they go to the start var off = 0; // offset from non-finite values for (var i = arr.length - 1; i >= 0; i--) { var v = arr[i]; if (includeHoles) { if (!isFinite(v)) { arr[i] = -Infinity; off++; } } else { // just remove it if we don't want to consider holes arr.splice(i, 1); } } if (sort) { arr.sort(function (a, b) { return a - b; }); // requires copy = true if you don't want to change the orig } var len = arr.length; var mid = Math.floor(len / 2); if (len % 2 !== 0) { return arr[mid + 1 + off]; } else { return (arr[mid - 1 + off] + arr[mid + off]) / 2; } }; var deg2rad = function deg2rad(deg) { return Math.PI * deg / 180; }; var getAngleFromDisp = function getAngleFromDisp(dispX, dispY) { return Math.atan2(dispY, dispX) - Math.PI / 2; }; var log2 = Math.log2 || function (n) { return Math.log(n) / Math.log(2); }; var signum = function signum(x) { if (x > 0) { return 1; } else if (x < 0) { return -1; } else { return 0; } }; var dist = function dist(p1, p2) { return Math.sqrt(sqdist(p1, p2)); }; var sqdist = function sqdist(p1, p2) { var dx = p2.x - p1.x; var dy = p2.y - p1.y; return dx * dx + dy * dy; }; var inPlaceSumNormalize = function inPlaceSumNormalize(v) { var length = v.length; // First, get sum of all elements var total = 0; for (var i = 0; i < length; i++) { total += v[i]; } // Now, divide each by the sum of all elements for (var _i = 0; _i < length; _i++) { v[_i] = v[_i] / total; } return v; }; // from http://en.wikipedia.org/wiki/Bézier_curve#Quadratic_curves var qbezierAt = function qbezierAt(p0, p1, p2, t) { return (1 - t) * (1 - t) * p0 + 2 * (1 - t) * t * p1 + t * t * p2; }; var qbezierPtAt = function qbezierPtAt(p0, p1, p2, t) { return { x: qbezierAt(p0.x, p1.x, p2.x, t), y: qbezierAt(p0.y, p1.y, p2.y, t) }; }; var lineAt = function lineAt(p0, p1, t, d) { var vec = { x: p1.x - p0.x, y: p1.y - p0.y }; var vecDist = dist(p0, p1); var normVec = { x: vec.x / vecDist, y: vec.y / vecDist }; t = t == null ? 0 : t; d = d != null ? d : t * vecDist; return { x: p0.x + normVec.x * d, y: p0.y + normVec.y * d }; }; var bound = function bound(min, val, max) { return Math.max(min, Math.min(max, val)); }; // makes a full bb (x1, y1, x2, y2, w, h) from implicit params var makeBoundingBox = function makeBoundingBox(bb) { if (bb == null) { return { x1: Infinity, y1: Infinity, x2: -Infinity, y2: -Infinity, w: 0, h: 0 }; } else if (bb.x1 != null && bb.y1 != null) { if (bb.x2 != null && bb.y2 != null && bb.x2 >= bb.x1 && bb.y2 >= bb.y1) { return { x1: bb.x1, y1: bb.y1, x2: bb.x2, y2: bb.y2, w: bb.x2 - bb.x1, h: bb.y2 - bb.y1 }; } else if (bb.w != null && bb.h != null && bb.w >= 0 && bb.h >= 0) { return { x1: bb.x1, y1: bb.y1, x2: bb.x1 + bb.w, y2: bb.y1 + bb.h, w: bb.w, h: bb.h }; } } }; var copyBoundingBox = function copyBoundingBox(bb) { return { x1: bb.x1, x2: bb.x2, w: bb.w, y1: bb.y1, y2: bb.y2, h: bb.h }; }; var clearBoundingBox = function clearBoundingBox(bb) { bb.x1 = Infinity; bb.y1 = Infinity; bb.x2 = -Infinity; bb.y2 = -Infinity; bb.w = 0; bb.h = 0; }; var shiftBoundingBox = function shiftBoundingBox(bb, dx, dy) { return { x1: bb.x1 + dx, x2: bb.x2 + dx, y1: bb.y1 + dy, y2: bb.y2 + dy, w: bb.w, h: bb.h }; }; var updateBoundingBox = function updateBoundingBox(bb1, bb2) { // update bb1 with bb2 bounds bb1.x1 = Math.min(bb1.x1, bb2.x1); bb1.x2 = Math.max(bb1.x2, bb2.x2); bb1.w = bb1.x2 - bb1.x1; bb1.y1 = Math.min(bb1.y1, bb2.y1); bb1.y2 = Math.max(bb1.y2, bb2.y2); bb1.h = bb1.y2 - bb1.y1; }; var expandBoundingBoxByPoint = function expandBoundingBoxByPoint(bb, x, y) { bb.x1 = Math.min(bb.x1, x); bb.x2 = Math.max(bb.x2, x); bb.w = bb.x2 - bb.x1; bb.y1 = Math.min(bb.y1, y); bb.y2 = Math.max(bb.y2, y); bb.h = bb.y2 - bb.y1; }; var expandBoundingBox = function expandBoundingBox(bb) { var padding = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; bb.x1 -= padding; bb.x2 += padding; bb.y1 -= padding; bb.y2 += padding; bb.w = bb.x2 - bb.x1; bb.h = bb.y2 - bb.y1; return bb; }; var expandBoundingBoxSides = function expandBoundingBoxSides(bb) { var padding = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [0]; var top, right, bottom, left; if (padding.length === 1) { top = right = bottom = left = padding[0]; } else if (padding.length === 2) { top = bottom = padding[0]; left = right = padding[1]; } else if (padding.length === 4) { var _padding = _slicedToArray(padding, 4); top = _padding[0]; right = _padding[1]; bottom = _padding[2]; left = _padding[3]; } bb.x1 -= left; bb.x2 += right; bb.y1 -= top; bb.y2 += bottom; bb.w = bb.x2 - bb.x1; bb.h = bb.y2 - bb.y1; return bb; }; // assign the values of bb2 into bb1 var assignBoundingBox = function assignBoundingBox(bb1, bb2) { bb1.x1 = bb2.x1; bb1.y1 = bb2.y1; bb1.x2 = bb2.x2; bb1.y2 = bb2.y2; bb1.w = bb1.x2 - bb1.x1; bb1.h = bb1.y2 - bb1.y1; }; var boundingBoxesIntersect = function boundingBoxesIntersect(bb1, bb2) { // case: one bb to right of other if (bb1.x1 > bb2.x2) { return false; } if (bb2.x1 > bb1.x2) { return false; } // case: one bb to left of other if (bb1.x2 < bb2.x1) { return false; } if (bb2.x2 < bb1.x1) { return false; } // case: one bb above other if (bb1.y2 < bb2.y1) { return false; } if (bb2.y2 < bb1.y1) { return false; } // case: one bb below other if (bb1.y1 > bb2.y2) { return false; } if (bb2.y1 > bb1.y2) { return false; } // otherwise, must have some overlap return true; }; var inBoundingBox = function inBoundingBox(bb, x, y) { return bb.x1 <= x && x <= bb.x2 && bb.y1 <= y && y <= bb.y2; }; var pointInBoundingBox = function pointInBoundingBox(bb, pt) { return inBoundingBox(bb, pt.x, pt.y); }; var boundingBoxInBoundingBox = function boundingBoxInBoundingBox(bb1, bb2) { return inBoundingBox(bb1, bb2.x1, bb2.y1) && inBoundingBox(bb1, bb2.x2, bb2.y2); }; var roundRectangleIntersectLine = function roundRectangleIntersectLine(x, y, nodeX, nodeY, width, height, padding) { var radius = arguments.length > 7 && arguments[7] !== undefined ? arguments[7] : 'auto'; var cornerRadius = radius === 'auto' ? getRoundRectangleRadius(width, height) : radius; var halfWidth = width / 2; var halfHeight = height / 2; cornerRadius = Math.min(cornerRadius, halfWidth, halfHeight); var doWidth = cornerRadius !== halfWidth, doHeight = cornerRadius !== halfHeight; // Check intersections with straight line segments var straightLineIntersections; // Top segment, left to right if (doWidth) { var topStartX = nodeX - halfWidth + cornerRadius - padding; var topStartY = nodeY - halfHeight - padding; var topEndX = nodeX + halfWidth - cornerRadius + padding; var topEndY = topStartY; straightLineIntersections = finiteLinesIntersect(x, y, nodeX, nodeY, topStartX, topStartY, topEndX, topEndY, false); if (straightLineIntersections.length > 0) { return straightLineIntersections; } } // Right segment, top to bottom if (doHeight) { var rightStartX = nodeX + halfWidth + padding; var rightStartY = nodeY - halfHeight + cornerRadius - padding; var rightEndX = rightStartX; var rightEndY = nodeY + halfHeight - cornerRadius + padding; straightLineIntersections = finiteLinesIntersect(x, y, nodeX, nodeY, rightStartX, rightStartY, rightEndX, rightEndY, false); if (straightLineIntersections.length > 0) { return straightLineIntersections; } } // Bottom segment, left to right if (doWidth) { var bottomStartX = nodeX - halfWidth + cornerRadius - padding; var bottomStartY = nodeY + halfHeight + padding; var bottomEndX = nodeX + halfWidth - cornerRadius + padding; var bottomEndY = bottomStartY; straightLineIntersections = finiteLinesIntersect(x, y, nodeX, nodeY, bottomStartX, bottomStartY, bottomEndX, bottomEndY, false); if (straightLineIntersections.length > 0) { return straightLineIntersections; } } // Left segment, top to bottom if (doHeight) { var leftStartX = nodeX - halfWidth - padding; var leftStartY = nodeY - halfHeight + cornerRadius - padding; var leftEndX = leftStartX; var leftEndY = nodeY + halfHeight - cornerRadius + padding; straightLineIntersections = finiteLinesIntersect(x, y, nodeX, nodeY, leftStartX, leftStartY, leftEndX, leftEndY, false); if (straightLineIntersections.length > 0) { return straightLineIntersections; } } // Check intersections with arc segments var arcIntersections; // Top Left { var topLeftCenterX = nodeX - halfWidth + cornerRadius; var topLeftCenterY = nodeY - halfHeight + cornerRadius; arcIntersections = intersectLineCircle(x, y, nodeX, nodeY, topLeftCenterX, topLeftCenterY, cornerRadius + padding); // Ensure the intersection is on the desired quarter of the circle if (arcIntersections.length > 0 && arcIntersections[0] <= topLeftCenterX && arcIntersections[1] <= topLeftCenterY) { return [arcIntersections[0], arcIntersections[1]]; } } // Top Right { var topRightCenterX = nodeX + halfWidth - cornerRadius; var topRightCenterY = nodeY - halfHeight + cornerRadius; arcIntersections = intersectLineCircle(x, y, nodeX, nodeY, topRightCenterX, topRightCenterY, cornerRadius + padding); // Ensure the intersection is on the desired quarter of the circle if (arcIntersections.length > 0 && arcIntersections[0] >= topRightCenterX && arcIntersections[1] <= topRightCenterY) { return [arcIntersections[0], arcIntersections[1]]; } } // Bottom Right { var bottomRightCenterX = nodeX + halfWidth - cornerRadius; var bottomRightCenterY = nodeY + halfHeight - cornerRadius; arcIntersections = intersectLineCircle(x, y, nodeX, nodeY, bottomRightCenterX, bottomRightCenterY, cornerRadius + padding); // Ensure the intersection is on the desired quarter of the circle if (arcIntersections.length > 0 && arcIntersections[0] >= bottomRightCenterX && arcIntersections[1] >= bottomRightCenterY) { return [arcIntersections[0], arcIntersections[1]]; } } // Bottom Left { var bottomLeftCenterX = nodeX - halfWidth + cornerRadius; var bottomLeftCenterY = nodeY + halfHeight - cornerRadius; arcIntersections = intersectLineCircle(x, y, nodeX, nodeY, bottomLeftCenterX, bottomLeftCenterY, cornerRadius + padding); // Ensure the intersection is on the desired quarter of the circle if (arcIntersections.length > 0 && arcIntersections[0] <= bottomLeftCenterX && arcIntersections[1] >= bottomLeftCenterY) { return [arcIntersections[0], arcIntersections[1]]; } } return []; // if nothing }; var inLineVicinity = function inLineVicinity(x, y, lx1, ly1, lx2, ly2, tolerance) { var t = tolerance; var x1 = Math.min(lx1, lx2); var x2 = Math.max(lx1, lx2); var y1 = Math.min(ly1, ly2); var y2 = Math.max(ly1, ly2); return x1 - t <= x && x <= x2 + t && y1 - t <= y && y <= y2 + t; }; var inBezierVicinity = function inBezierVicinity(x, y, x1, y1, x2, y2, x3, y3, tolerance) { var bb = { x1: Math.min(x1, x3, x2) - tolerance, x2: Math.max(x1, x3, x2) + tolerance, y1: Math.min(y1, y3, y2) - tolerance, y2: Math.max(y1, y3, y2) + tolerance }; // if outside the rough bounding box for the bezier, then it can't be a hit if (x < bb.x1 || x > bb.x2 || y < bb.y1 || y > bb.y2) { // console.log('bezier out of rough bb') return false; } else { // console.log('do more expensive check'); return true; } }; var solveQuadratic = function solveQuadratic(a, b, c, val) { c -= val; var r = b * b - 4 * a * c; if (r < 0) { return []; } var sqrtR = Math.sqrt(r); var denom = 2 * a; var root1 = (-b + sqrtR) / denom; var root2 = (-b - sqrtR) / denom; return [root1, root2]; }; var solveCubic = function solveCubic(a, b, c, d, result) { // Solves a cubic function, returns root in form [r1, i1, r2, i2, r3, i3], where // r is the real component, i is the imaginary component // An implementation of the Cardano method from the year 1545 // http://en.wikipedia.org/wiki/Cubic_function#The_nature_of_the_roots var epsilon = 0.00001; // avoid division by zero while keeping the overall expression close in value if (a === 0) { a = epsilon; } b /= a; c /= a; d /= a; var discriminant, q, r, dum1, s, t, term1, r13; q = (3.0 * c - b * b) / 9.0; r = -(27.0 * d) + b * (9.0 * c - 2.0 * (b * b)); r /= 54.0; discriminant = q * q * q + r * r; result[1] = 0; term1 = b / 3.0; if (discriminant > 0) { s = r + Math.sqrt(discriminant); s = s < 0 ? -Math.pow(-s, 1.0 / 3.0) : Math.pow(s, 1.0 / 3.0); t = r - Math.sqrt(discriminant); t = t < 0 ? -Math.pow(-t, 1.0 / 3.0) : Math.pow(t, 1.0 / 3.0); result[0] = -term1 + s + t; term1 += (s + t) / 2.0; result[4] = result[2] = -term1; term1 = Math.sqrt(3.0) * (-t + s) / 2; result[3] = term1; result[5] = -term1; return; } result[5] = result[3] = 0; if (discriminant === 0) { r13 = r < 0 ? -Math.pow(-r, 1.0 / 3.0) : Math.pow(r, 1.0 / 3.0); result[0] = -term1 + 2.0 * r13; result[4] = result[2] = -(r13 + term1); return; } q = -q; dum1 = q * q * q; dum1 = Math.acos(r / Math.sqrt(dum1)); r13 = 2.0 * Math.sqrt(q); result[0] = -term1 + r13 * Math.cos(dum1 / 3.0); result[2] = -term1 + r13 * Math.cos((dum1 + 2.0 * Math.PI) / 3.0); result[4] = -term1 + r13 * Math.cos((dum1 + 4.0 * Math.PI) / 3.0); return; }; var sqdistToQuadraticBezier = function sqdistToQuadraticBezier(x, y, x1, y1, x2, y2, x3, y3) { // Find minimum distance by using the minimum of the distance // function between the given point and the curve // This gives the coefficients of the resulting cubic equation // whose roots tell us where a possible minimum is // (Coefficients are divided by 4) var a = 1.0 * x1 * x1 - 4 * x1 * x2 + 2 * x1 * x3 + 4 * x2 * x2 - 4 * x2 * x3 + x3 * x3 + y1 * y1 - 4 * y1 * y2 + 2 * y1 * y3 + 4 * y2 * y2 - 4 * y2 * y3 + y3 * y3; var b = 1.0 * 9 * x1 * x2 - 3 * x1 * x1 - 3 * x1 * x3 - 6 * x2 * x2 + 3 * x2 * x3 + 9 * y1 * y2 - 3 * y1 * y1 - 3 * y1 * y3 - 6 * y2 * y2 + 3 * y2 * y3; var c = 1.0 * 3 * x1 * x1 - 6 * x1 * x2 + x1 * x3 - x1 * x + 2 * x2 * x2 + 2 * x2 * x - x3 * x + 3 * y1 * y1 - 6 * y1 * y2 + y1 * y3 - y1 * y + 2 * y2 * y2 + 2 * y2 * y - y3 * y; var d = 1.0 * x1 * x2 - x1 * x1 + x1 * x - x2 * x + y1 * y2 - y1 * y1 + y1 * y - y2 * y; // debug("coefficients: " + a / a + ", " + b / a + ", " + c / a + ", " + d / a); var roots = []; // Use the cubic solving algorithm solveCubic(a, b, c, d, roots); var zeroThreshold = 0.0000001; var params = []; for (var index = 0; index < 6; index += 2) { if (Math.abs(roots[index + 1]) < zeroThreshold && roots[index] >= 0 && roots[index] <= 1.0) { params.push(roots[index]); } } params.push(1.0); params.push(0.0); var minDistanceSquared = -1; var curX, curY, distSquared; for (var i = 0; i < params.length; i++) { curX = Math.pow(1.0 - params[i], 2.0) * x1 + 2.0 * (1 - params[i]) * params[i] * x2 + params[i] * params[i] * x3; curY = Math.pow(1 - params[i], 2.0) * y1 + 2 * (1.0 - params[i]) * params[i] * y2 + params[i] * params[i] * y3; distSquared = Math.pow(curX - x, 2) + Math.pow(curY - y, 2); // debug('distance for param ' + params[i] + ": " + Math.sqrt(distSquared)); if (minDistanceSquared >= 0) { if (distSquared < minDistanceSquared) { minDistanceSquared = distSquared; } } else { minDistanceSquared = distSquared; } } return minDistanceSquared; }; var sqdistToFiniteLine = function sqdistToFiniteLine(x, y, x1, y1, x2, y2) { var offset = [x - x1, y - y1]; var line = [x2 - x1, y2 - y1]; var lineSq = line[0] * line[0] + line[1] * line[1]; var hypSq = offset[0] * offset[0] + offset[1] * offset[1]; var dotProduct = offset[0] * line[0] + offset[1] * line[1]; var adjSq = dotProduct * dotProduct / lineSq; if (dotProduct < 0) { return hypSq; } if (adjSq > lineSq) { return (x - x2) * (x - x2) + (y - y2) * (y - y2); } return hypSq - adjSq; }; var pointInsidePolygonPoints = function pointInsidePolygonPoints(x, y, points) { var x1, y1, x2, y2; var y3; // Intersect with vertical line through (x, y) var up = 0; // let down = 0; for (var i = 0; i < points.length / 2; i++) { x1 = points[i * 2]; y1 = points[i * 2 + 1]; if (i + 1 < points.length / 2) { x2 = points[(i + 1) * 2]; y2 = points[(i + 1) * 2 + 1]; } else { x2 = points[(i + 1 - points.length / 2) * 2]; y2 = points[(i + 1 - points.length / 2) * 2 + 1]; } if (x1 == x && x2 == x) ; else if (x1 >= x && x >= x2 || x1 <= x && x <= x2) { y3 = (x - x1) / (x2 - x1) * (y2 - y1) + y1; if (y3 > y) { up++; } // if( y3 < y ){ // down++; // } } else { continue; } } if (up % 2 === 0) { return false; } else { return true; } }; var pointInsidePolygon = function pointInsidePolygon(x, y, basePoints, centerX, centerY, width, height, direction, padding) { var transformedPoints = new Array(basePoints.length); // Gives negative angle var angle; if (direction[0] != null) { angle = Math.atan(direction[1] / direction[0]); if (direction[0] < 0) { angle = angle + Math.PI / 2; } else { angle = -angle - Math.PI / 2; } } else { angle = direction; } var cos = Math.cos(-angle); var sin = Math.sin(-angle); // console.log("base: " + basePoints); for (var i = 0; i < transformedPoints.length / 2; i++) { transformedPoints[i * 2] = width / 2 * (basePoints[i * 2] * cos - basePoints[i * 2 + 1] * sin); transformedPoints[i * 2 + 1] = height / 2 * (basePoints[i * 2 + 1] * cos + basePoints[i * 2] * sin); transformedPoints[i * 2] += centerX; transformedPoints[i * 2 + 1] += centerY; } var points; if (padding > 0) { var expandedLineSet = expandPolygon(transformedPoints, -padding); points = joinLines(expandedLineSet); } else { points = transformedPoints; } return pointInsidePolygonPoints(x, y, points); }; var pointInsideRoundPolygon = function pointInsideRoundPolygon(x, y, basePoints, centerX, centerY, width, height, corners) { var cutPolygonPoints = new Array(basePoints.length * 2); for (var i = 0; i < corners.length; i++) { var corner = corners[i]; cutPolygonPoints[i * 4 + 0] = corner.startX; cutPolygonPoints[i * 4 + 1] = corner.startY; cutPolygonPoints[i * 4 + 2] = corner.stopX; cutPolygonPoints[i * 4 + 3] = corner.stopY; var squaredDistance = Math.pow(corner.cx - x, 2) + Math.pow(corner.cy - y, 2); if (squaredDistance <= Math.pow(corner.radius, 2)) { return true; } } return pointInsidePolygonPoints(x, y, cutPolygonPoints); }; var joinLines = function joinLines(lineSet) { var vertices = new Array(lineSet.length / 2); var currentLineStartX, currentLineStartY, currentLineEndX, currentLineEndY; var nextLineStartX, nextLineStartY, nextLineEndX, nextLineEndY; for (var i = 0; i < lineSet.length / 4; i++) { currentLineStartX = lineSet[i * 4]; currentLineStartY = lineSet[i * 4 + 1]; currentLineEndX = lineSet[i * 4 + 2]; currentLineEndY = lineSet[i * 4 + 3]; if (i < lineSet.length / 4 - 1) { nextLineStartX = lineSet[(i + 1) * 4]; nextLineStartY = lineSet[(i + 1) * 4 + 1]; nextLineEndX = lineSet[(i + 1) * 4 + 2]; nextLineEndY = lineSet[(i + 1) * 4 + 3]; } else { nextLineStartX = lineSet[0]; nextLineStartY = lineSet[1]; nextLineEndX = lineSet[2]; nextLineEndY = lineSet[3]; } var intersection = finiteLinesIntersect(currentLineStartX, currentLineStartY, currentLineEndX, currentLineEndY, nextLineStartX, nextLineStartY, nextLineEndX, nextLineEndY, true); vertices[i * 2] = intersection[0]; vertices[i * 2 + 1] = intersection[1]; } return vertices; }; var expandPolygon = function expandPolygon(points, pad) { var expandedLineSet = new Array(points.length * 2); var currentPointX, currentPointY, nextPointX, nextPointY; for (var i = 0; i < points.length / 2; i++) { currentPointX = points[i * 2]; currentPointY = points[i * 2 + 1]; if (i < points.length / 2 - 1) { nextPointX = points[(i + 1) * 2]; nextPointY = points[(i + 1) * 2 + 1]; } else { nextPointX = points[0]; nextPointY = points[1]; } // Current line: [currentPointX, currentPointY] to [nextPointX, nextPointY] // Assume CCW polygon winding var offsetX = nextPointY - currentPointY; var offsetY = -(nextPointX - currentPointX); // Normalize var offsetLength = Math.sqrt(offsetX * offsetX + offsetY * offsetY); var normalizedOffsetX = offsetX / offsetLength; var normalizedOffsetY = offsetY / offsetLength; expandedLineSet[i * 4] = currentPointX + normalizedOffsetX * pad; expandedLineSet[i * 4 + 1] = currentPointY + normalizedOffsetY * pad; expandedLineSet[i * 4 + 2] = nextPointX + normalizedOffsetX * pad; expandedLineSet[i * 4 + 3] = nextPointY + normalizedOffsetY * pad; } return expandedLineSet; }; var intersectLineEllipse = function intersectLineEllipse(x, y, centerX, centerY, ellipseWradius, ellipseHradius) { var dispX = centerX - x; var dispY = centerY - y; dispX /= ellipseWradius; dispY /= ellipseHradius; var len = Math.sqrt(dispX * dispX + dispY * dispY); var newLength = len - 1; if (newLength < 0) { return []; } var lenProportion = newLength / len; return [(centerX - x) * lenProportion + x, (centerY - y) * lenProportion + y]; }; var checkInEllipse = function checkInEllipse(x, y, width, height, centerX, centerY, padding) { x -= centerX; y -= centerY; x /= width / 2 + padding; y /= height / 2 + padding; return x * x + y * y <= 1; }; // Returns intersections of increasing distance from line's start point var intersectLineCircle = function intersectLineCircle(x1, y1, x2, y2, centerX, centerY, radius) { // Calculate d, direction vector of line var d = [x2 - x1, y2 - y1]; // Direction vector of line var f = [x1 - centerX, y1 - centerY]; var a = d[0] * d[0] + d[1] * d[1]; var b = 2 * (f[0] * d[0] + f[1] * d[1]); var c = f[0] * f[0] + f[1] * f[1] - radius * radius; var discriminant = b * b - 4 * a * c; if (discriminant < 0) { return []; } var t1 = (-b + Math.sqrt(discriminant)) / (2 * a); var t2 = (-b - Math.sqrt(discriminant)) / (2 * a); var tMin = Math.min(t1, t2); var tMax = Math.max(t1, t2); var inRangeParams = []; if (tMin >= 0 && tMin <= 1) { inRangeParams.push(tMin); } if (tMax >= 0 && tMax <= 1) { inRangeParams.push(tMax); } if (inRangeParams.length === 0) { return []; } var nearIntersectionX = inRangeParams[0] * d[0] + x1; var nearIntersectionY = inRangeParams[0] * d[1] + y1; if (inRangeParams.length > 1) { if (inRangeParams[0] == inRangeParams[1]) { return [nearIntersectionX, nearIntersectionY]; } else { var farIntersectionX = inRangeParams[1] * d[0] + x1; var farIntersectionY = inRangeParams[1] * d[1] + y1; return [nearIntersectionX, nearIntersectionY, farIntersectionX, farIntersectionY]; } } else { return [nearIntersectionX, nearIntersectionY]; } }; var midOfThree = function midOfThree(a, b, c) { if (b <= a && a <= c || c <= a && a <= b) { return a; } else if (a <= b && b <= c || c <= b && b <= a) { return b; } else { return c; } }; // (x1,y1)=>(x2,y2) intersect with (x3,y3)=>(x4,y4) var finiteLinesIntersect = function finiteLinesIntersect(x1, y1, x2, y2, x3, y3, x4, y4, infiniteLines) { var dx13 = x1 - x3; var dx21 = x2 - x1; var dx43 = x4 - x3; var dy13 = y1 - y3; var dy21 = y2 - y1; var dy43 = y4 - y3; var ua_t = dx43 * dy13 - dy43 * dx13; var ub_t = dx21 * dy13 - dy21 * dx13; var u_b = dy43 * dx21 - dx43 * dy21; if (u_b !== 0) { var ua = ua_t / u_b; var ub = ub_t / u_b; var flptThreshold = 0.001; var _min = 0 - flptThreshold; var _max = 1 + flptThreshold; if (_min <= ua && ua <= _max && _min <= ub && ub <= _max) { return [x1 + ua * dx21, y1 + ua * dy21]; } else { if (!infiniteLines) { return []; } else { return [x1 + ua * dx21, y1 + ua * dy21]; } } } else { if (ua_t === 0 || ub_t === 0) { // Parallel, coincident lines. Check if overlap // Check endpoint of second line if (midOfThree(x1, x2, x4) === x4) { return [x4, y4]; } // Check start point of second line if (midOfThree(x1, x2, x3) === x3) { return [x3, y3]; } // Endpoint of first line if (midOfThree(x3, x4, x2) === x2) { return [x2, y2]; } return []; } else { // Parallel, non-coincident return []; } } }; // math.polygonIntersectLine( x, y, basePoints, centerX, centerY, width, height, padding ) // intersect a node polygon (pts transformed) // // math.polygonIntersectLine( x, y, basePoints, centerX, centerY ) // intersect the points (no transform) var polygonIntersectLine = function polygonIntersectLine(x, y, basePoints, centerX, centerY, width, height, padding) { var intersections = []; var intersection; var transformedPoints = new Array(basePoints.length); var doTransform = true; if (width == null) { doTransform = false; } var points; if (doTransform) { for (var i = 0; i < transformedPoints.length / 2; i++) { transformedPoints[i * 2] = basePoints[i * 2] * width + centerX; transformedPoints[i * 2 + 1] = basePoints[i * 2 + 1] * height + centerY; } if (padding > 0) { var expandedLineSet = expandPolygon(transformedPoints, -padding); points = joinLines(expandedLineSet); } else { points = transformedPoints; } } else { points = basePoints; } var currentX, currentY, nextX, nextY; for (var _i2 = 0; _i2 < points.length / 2; _i2++) { currentX = points[_i2 * 2]; currentY = points[_i2 * 2 + 1]; if (_i2 < points.length / 2 - 1) { nextX = points[(_i2 + 1) * 2]; nextY = points[(_i2 + 1) * 2 + 1]; } else { nextX = points[0]; nextY = points[1]; } intersection = finiteLinesIntersect(x, y, centerX, centerY, currentX, currentY, nextX, nextY); if (intersection.length !== 0) { intersections.push(intersection[0], intersection[1]); } } return intersections; }; var roundPolygonIntersectLine = function roundPolygonIntersectLine(x, y, basePoints, centerX, centerY, width, height, padding, corners) { var intersections = []; var intersection; var lines = new Array(basePoints.length * 2); corners.forEach(function (corner, i) { if (i === 0) { lines[lines.length - 2] = corner.startX; lines[lines.length - 1] = corner.startY; } else { lines[i * 4 - 2] = corner.startX; lines[i * 4 - 1] = corner.startY; } lines[i * 4] = corner.stopX; lines[i * 4 + 1] = corner.stopY; intersection = intersectLineCircle(x, y, centerX, centerY, corner.cx, corner.cy, corner.radius); if (intersection.length !== 0) { intersections.push(intersection[0], intersection[1]); } }); for (var i = 0; i < lines.length / 4; i++) { intersection = finiteLinesIntersect(x, y, centerX, centerY, lines[i * 4], lines[i * 4 + 1], lines[i * 4 + 2], lines[i * 4 + 3], false); if (intersection.length !== 0) { intersections.push(intersection[0], intersection[1]); } } if (intersections.length > 2) { var lowestIntersection = [intersections[0], intersections[1]]; var lowestSquaredDistance = Math.pow(lowestIntersection[0] - x, 2) + Math.pow(lowestIntersection[1] - y, 2); for (var _i3 = 1; _i3 < intersections.length / 2; _i3++) { var squaredDistance = Math.pow(intersections[_i3 * 2] - x, 2) + Math.pow(intersections[_i3 * 2 + 1] - y, 2); if (squaredDistance <= lowestSquaredDistance) { lowestIntersection[0] = intersections[_i3 * 2]; lowestIntersection[1] = intersections[_i3 * 2 + 1]; lowestSquaredDistance = squaredDistance; } } return lowestIntersection; } return intersections; }; var shortenIntersection = function shortenIntersection(intersection, offset, amount) { var disp = [intersection[0] - offset[0], intersection[1] - offset[1]]; var length = Math.sqrt(disp[0] * disp[0] + disp[1] * disp[1]); var lenRatio = (length - amount) / length; if (lenRatio < 0) { lenRatio = 0.00001; } return [offset[0] + lenRatio * disp[0], offset[1] + lenRatio * disp[1]]; }; var generateUnitNgonPointsFitToSquare = function generateUnitNgonPointsFitToSquare(sides, rotationRadians) { var points = generateUnitNgonPoints(sides, rotationRadians); points = fitPolygonToSquare(points); return points; }; var fitPolygonToSquare = function fitPolygonToSquare(points) { var x, y; var sides = points.length / 2; var minX = Infinity, minY = Infinity, maxX = -Infinity, maxY = -Infinity; for (var i = 0; i < sides; i++) { x = points[2 * i]; y = points[2 * i + 1]; minX = Math.min(minX, x); maxX = Math.max(maxX, x); minY = Math.min(minY, y); maxY = Math.max(maxY, y); } // stretch factors var sx = 2 / (maxX - minX); var sy = 2 / (maxY - minY); for (var _i4 = 0; _i4 < sides; _i4++) { x = points[2 * _i4] = points[2 * _i4] * sx; y = points[2 * _i4 + 1] = points[2 * _i4 + 1] * sy; minX = Math.min(minX, x); maxX = Math.max(maxX, x); minY = Math.min(minY, y); maxY = Math.max(maxY, y); } if (minY < -1) { for (var _i5 = 0; _i5 < sides; _i5++) { y = points[2 * _i5 + 1] = points[2 * _i5 + 1] + (-1 - minY); } } return points; }; var generateUnitNgonPoints = function generateUnitNgonPoints(sides, rotationRadians) { var increment = 1.0 / sides * 2 * Math.PI; var startAngle = sides % 2 === 0 ? Math.PI / 2.0 + increment / 2.0 : Math.PI / 2.0; startAngle += rotationRadians; var points = new Array(sides * 2); var currentAngle; for (var i = 0; i < sides; i++) { currentAngle = i * increment + startAngle; points[2 * i] = Math.cos(currentAngle); // x points[2 * i + 1] = Math.sin(-currentAngle); // y } return points; }; // Set the default radius, unless half of width or height is smaller than default var getRoundRectangleRadius = function getRoundRectangleRadius(width, height) { return Math.min(width / 4, height / 4, 8); }; // Set the default radius var getRoundPolygonRadius = function getRoundPolygonRadius(width, height) { return Math.min(width / 10, height / 10, 8); }; var getCutRectangleCornerLength = function getCutRectangleCornerLength() { return 8; }; var bezierPtsToQuadCoeff = function bezierPtsToQuadCoeff(p0, p1, p2) { return [p0 - 2 * p1 + p2, 2 * (p1 - p0), p0]; }; // get curve width, height, and control point position offsets as a percentage of node height / width var getBarrelCurveConstants = function getBarrelCurveConstants(width, height) { return { heightOffset: Math.min(15, 0.05 * height), widthOffset: Math.min(100, 0.25 * width), ctrlPtOffsetPct: 0.05 }; }; var pageRankDefaults = defaults$g({ dampingFactor: 0.8, precision: 0.000001, iterations: 200, weight: function weight(edge) { return 1; } }); var elesfn$o = { pageRank: function pageRank(options) { var _pageRankDefaults = pageRankDefaults(options), dampingFactor = _pageRankDefaults.dampingFactor, precision = _pageRankDefaults.precision, iterations = _pageRankDefaults.iterations, weight = _pageRankDefaults.weight; var cy = this._private.cy; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; var numNodes = nodes.length; var numNodesSqd = numNodes * numNodes; var numEdges = edges.length; // Construct transposed adjacency matrix // First lets have a zeroed matrix of the right size // We'll also keep track of the sum of each column var matrix = new Array(numNodesSqd); var columnSum = new Array(numNodes); var additionalProb = (1 - dampingFactor) / numNodes; // Create null matrix for (var i = 0; i < numNodes; i++) { for (var j = 0; j < numNodes; j++) { var n = i * numNodes + j; matrix[n] = 0; } columnSum[i] = 0; } // Now, process edges for (var _i = 0; _i < numEdges; _i++) { var edge = edges[_i]; var srcId = edge.data('source'); var tgtId = edge.data('target'); // Don't include loops in the matrix if (srcId === tgtId) { continue; } var s = nodes.indexOfId(srcId); var t = nodes.indexOfId(tgtId); var w = weight(edge); var _n = t * numNodes + s; // Update matrix matrix[_n] += w; // Update column sum columnSum[s] += w; } // Add additional probability based on damping factor // Also, take into account columns that have sum = 0 var p = 1.0 / numNodes + additionalProb; // Shorthand // Traverse matrix, column by column for (var _j = 0; _j < numNodes; _j++) { if (columnSum[_j] === 0) { // No 'links' out from node jth, assume equal probability for each possible node for (var _i2 = 0; _i2 < numNodes; _i2++) { var _n2 = _i2 * numNodes + _j; matrix[_n2] = p; } } else { // Node jth has outgoing link, compute normalized probabilities for (var _i3 = 0; _i3 < numNodes; _i3++) { var _n3 = _i3 * numNodes + _j; matrix[_n3] = matrix[_n3] / columnSum[_j] + additionalProb; } } } // Compute dominant eigenvector using power method var eigenvector = new Array(numNodes); var temp = new Array(numNodes); var previous; // Start with a vector of all 1's // Also, initialize a null vector which will be used as shorthand for (var _i4 = 0; _i4 < numNodes; _i4++) { eigenvector[_i4] = 1; } for (var iter = 0; iter < iterations; iter++) { // Temp array with all 0's for (var _i5 = 0; _i5 < numNodes; _i5++) { temp[_i5] = 0; } // Multiply matrix with previous result for (var _i6 = 0; _i6 < numNodes; _i6++) { for (var _j2 = 0; _j2 < numNodes; _j2++) { var _n4 = _i6 * numNodes + _j2; temp[_i6] += matrix[_n4] * eigenvector[_j2]; } } inPlaceSumNormalize(temp); previous = eigenvector; eigenvector = temp; temp = previous; var diff = 0; // Compute difference (squared module) of both vectors for (var _i7 = 0; _i7 < numNodes; _i7++) { var delta = previous[_i7] - eigenvector[_i7]; diff += delta * delta; } // If difference is less than the desired threshold, stop iterating if (diff < precision) { break; } } // Construct result var res = { rank: function rank(node) { node = cy.collection(node)[0]; return eigenvector[nodes.indexOf(node)]; } }; return res; } // pageRank }; // elesfn var defaults$f = defaults$g({ root: null, weight: function weight(edge) { return 1; }, directed: false, alpha: 0 }); var elesfn$n = { degreeCentralityNormalized: function degreeCentralityNormalized(options) { options = defaults$f(options); var cy = this.cy(); var nodes = this.nodes(); var numNodes = nodes.length; if (!options.directed) { var degrees = {}; var maxDegree = 0; for (var i = 0; i < numNodes; i++) { var node = nodes[i]; // add current node to the current options object and call degreeCentrality options.root = node; var currDegree = this.degreeCentrality(options); if (maxDegree < currDegree.degree) { maxDegree = currDegree.degree; } degrees[node.id()] = currDegree.degree; } return { degree: function degree(node) { if (maxDegree === 0) { return 0; } if (string(node)) { // from is a selector string node = cy.filter(node); } return degrees[node.id()] / maxDegree; } }; } else { var indegrees = {}; var outdegrees = {}; var maxIndegree = 0; var maxOutdegree = 0; for (var _i = 0; _i < numNodes; _i++) { var _node = nodes[_i]; var id = _node.id(); // add current node to the current options object and call degreeCentrality options.root = _node; var _currDegree = this.degreeCentrality(options); if (maxIndegree < _currDegree.indegree) maxIndegree = _currDegree.indegree; if (maxOutdegree < _currDegree.outdegree) maxOutdegree = _currDegree.outdegree; indegrees[id] = _currDegree.indegree; outdegrees[id] = _currDegree.outdegree; } return { indegree: function indegree(node) { if (maxIndegree == 0) { return 0; } if (string(node)) { // from is a selector string node = cy.filter(node); } return indegrees[node.id()] / maxIndegree; }, outdegree: function outdegree(node) { if (maxOutdegree === 0) { return 0; } if (string(node)) { // from is a selector string node = cy.filter(node); } return outdegrees[node.id()] / maxOutdegree; } }; } }, // degreeCentralityNormalized // Implemented from the algorithm in Opsahl's paper // "Node centrality in weighted networks: Generalizing degree and shortest paths" // check the heading 2 "Degree" degreeCentrality: function degreeCentrality(options) { options = defaults$f(options); var cy = this.cy(); var callingEles = this; var _options = options, root = _options.root, weight = _options.weight, directed = _options.directed, alpha = _options.alpha; root = cy.collection(root)[0]; if (!directed) { var connEdges = root.connectedEdges().intersection(callingEles); var k = connEdges.length; var s = 0; // Now, sum edge weights for (var i = 0; i < connEdges.length; i++) { s += weight(connEdges[i]); } return { degree: Math.pow(k, 1 - alpha) * Math.pow(s, alpha) }; } else { var edges = root.connectedEdges(); var incoming = edges.filter(function (edge) { return edge.target().same(root) && callingEles.has(edge); }); var outgoing = edges.filter(function (edge) { return edge.source().same(root) && callingEles.has(edge); }); var k_in = incoming.length; var k_out = outgoing.length; var s_in = 0; var s_out = 0; // Now, sum incoming edge weights for (var _i2 = 0; _i2 < incoming.length; _i2++) { s_in += weight(incoming[_i2]); } // Now, sum outgoing edge weights for (var _i3 = 0; _i3 < outgoing.length; _i3++) { s_out += weight(outgoing[_i3]); } return { indegree: Math.pow(k_in, 1 - alpha) * Math.pow(s_in, alpha), outdegree: Math.pow(k_out, 1 - alpha) * Math.pow(s_out, alpha) }; } } // degreeCentrality }; // elesfn // nice, short mathematical alias elesfn$n.dc = elesfn$n.degreeCentrality; elesfn$n.dcn = elesfn$n.degreeCentralityNormalised = elesfn$n.degreeCentralityNormalized; var defaults$e = defaults$g({ harmonic: true, weight: function weight() { return 1; }, directed: false, root: null }); var elesfn$m = { closenessCentralityNormalized: function closenessCentralityNormalized(options) { var _defaults = defaults$e(options), harmonic = _defaults.harmonic, weight = _defaults.weight, directed = _defaults.directed; var cy = this.cy(); var closenesses = {}; var maxCloseness = 0; var nodes = this.nodes(); var fw = this.floydWarshall({ weight: weight, directed: directed }); // Compute closeness for every node and find the maximum closeness for (var i = 0; i < nodes.length; i++) { var currCloseness = 0; var node_i = nodes[i]; for (var j = 0; j < nodes.length; j++) { if (i !== j) { var d = fw.distance(node_i, nodes[j]); if (harmonic) { currCloseness += 1 / d; } else { currCloseness += d; } } } if (!harmonic) { currCloseness = 1 / currCloseness; } if (maxCloseness < currCloseness) { maxCloseness = currCloseness; } closenesses[node_i.id()] = currCloseness; } return { closeness: function closeness(node) { if (maxCloseness == 0) { return 0; } if (string(node)) { // from is a selector string node = cy.filter(node)[0].id(); } else { // from is a node node = node.id(); } return closenesses[node] / maxCloseness; } }; }, // Implemented from pseudocode from wikipedia closenessCentrality: function closenessCentrality(options) { var _defaults2 = defaults$e(options), root = _defaults2.root, weight = _defaults2.weight, directed = _defaults2.directed, harmonic = _defaults2.harmonic; root = this.filter(root)[0]; // we need distance from this node to every other node var dijkstra = this.dijkstra({ root: root, weight: weight, directed: directed }); var totalDistance = 0; var nodes = this.nodes(); for (var i = 0; i < nodes.length; i++) { var n = nodes[i]; if (!n.same(root)) { var d = dijkstra.distanceTo(n); if (harmonic) { totalDistance += 1 / d; } else { totalDistance += d; } } } return harmonic ? totalDistance : 1 / totalDistance; } // closenessCentrality }; // elesfn // nice, short mathematical alias elesfn$m.cc = elesfn$m.closenessCentrality; elesfn$m.ccn = elesfn$m.closenessCentralityNormalised = elesfn$m.closenessCentralityNormalized; var defaults$d = defaults$g({ weight: null, directed: false }); var elesfn$l = { // Implemented from the algorithm in the paper "On Variants of Shortest-Path Betweenness Centrality and their Generic Computation" by Ulrik Brandes betweennessCentrality: function betweennessCentrality(options) { var _defaults = defaults$d(options), directed = _defaults.directed, weight = _defaults.weight; var weighted = weight != null; var cy = this.cy(); // starting var V = this.nodes(); var A = {}; var _C = {}; var max = 0; var C = { set: function set(key, val) { _C[key] = val; if (val > max) { max = val; } }, get: function get(key) { return _C[key]; } }; // A contains the neighborhoods of every node for (var i = 0; i < V.length; i++) { var v = V[i]; var vid = v.id(); if (directed) { A[vid] = v.outgoers().nodes(); // get outgoers of every node } else { A[vid] = v.openNeighborhood().nodes(); // get neighbors of every node } C.set(vid, 0); } var _loop = function _loop(s) { var sid = V[s].id(); var S = []; // stack var P = {}; var g = {}; var d = {}; var Q = new heap(function (a, b) { return d[a] - d[b]; }); // queue // init dictionaries for (var _i = 0; _i < V.length; _i++) { var _vid = V[_i].id(); P[_vid] = []; g[_vid] = 0; d[_vid] = Infinity; } g[sid] = 1; // sigma d[sid] = 0; // distance to s Q.push(sid); while (!Q.empty()) { var _v = Q.pop(); S.push(_v); if (weighted) { for (var j = 0; j < A[_v].length; j++) { var w = A[_v][j]; var vEle = cy.getElementById(_v); var edge = void 0; if (vEle.edgesTo(w).length > 0) { edge = vEle.edgesTo(w)[0]; } else { edge = w.edgesTo(vEle)[0]; } var edgeWeight = weight(edge); w = w.id(); if (d[w] > d[_v] + edgeWeight) { d[w] = d[_v] + edgeWeight; if (Q.nodes.indexOf(w) < 0) { //if w is not in Q Q.push(w); } else { // update position if w is in Q Q.updateItem(w); } g[w] = 0; P[w] = []; } if (d[w] == d[_v] + edgeWeight) { g[w] = g[w] + g[_v]; P[w].push(_v); } } } else { for (var _j = 0; _j < A[_v].length; _j++) { var _w = A[_v][_j].id(); if (d[_w] == Infinity) { Q.push(_w); d[_w] = d[_v] + 1; } if (d[_w] == d[_v] + 1) { g[_w] = g[_w] + g[_v]; P[_w].push(_v); } } } } var e = {}; for (var _i2 = 0; _i2 < V.length; _i2++) { e[V[_i2].id()] = 0; } while (S.length > 0) { var _w2 = S.pop(); for (var _j2 = 0; _j2 < P[_w2].length; _j2++) { var _v2 = P[_w2][_j2]; e[_v2] = e[_v2] + g[_v2] / g[_w2] * (1 + e[_w2]); } if (_w2 != V[s].id()) { C.set(_w2, C.get(_w2) + e[_w2]); } } }; for (var s = 0; s < V.length; s++) { _loop(s); } var ret = { betweenness: function betweenness(node) { var id = cy.collection(node).id(); return C.get(id); }, betweennessNormalized: function betweennessNormalized(node) { if (max == 0) { return 0; } var id = cy.collection(node).id(); return C.get(id) / max; } }; // alias ret.betweennessNormalised = ret.betweennessNormalized; return ret; } // betweennessCentrality }; // elesfn // nice, short mathematical alias elesfn$l.bc = elesfn$l.betweennessCentrality; // Implemented by Zoe Xi @zoexi for GSOC 2016 /* eslint-disable no-unused-vars */ var defaults$c = defaults$g({ expandFactor: 2, // affects time of computation and cluster granularity to some extent: M * M inflateFactor: 2, // affects cluster granularity (the greater the value, the more clusters): M(i,j) / E(j) multFactor: 1, // optional self loops for each node. Use a neutral value to improve cluster computations. maxIterations: 20, // maximum number of iterations of the MCL algorithm in a single run attributes: [ // attributes/features used to group nodes, ie. similarity values between nodes function (edge) { return 1; }] }); /* eslint-enable */ var setOptions$3 = function setOptions(options) { return defaults$c(options); }; /* eslint-enable */ var getSimilarity$1 = function getSimilarity(edge, attributes) { var total = 0; for (var i = 0; i < attributes.length; i++) { total += attributes[i](edge); } return total; }; var addLoops = function addLoops(M, n, val) { for (var i = 0; i < n; i++) { M[i * n + i] = val; } }; var normalize = function normalize(M, n) { var sum; for (var col = 0; col < n; col++) { sum = 0; for (var row = 0; row < n; row++) { sum += M[row * n + col]; } for (var _row = 0; _row < n; _row++) { M[_row * n + col] = M[_row * n + col] / sum; } } }; // TODO: blocked matrix multiplication? var mmult = function mmult(A, B, n) { var C = new Array(n * n); for (var i = 0; i < n; i++) { for (var j = 0; j < n; j++) { C[i * n + j] = 0; } for (var k = 0; k < n; k++) { for (var _j = 0; _j < n; _j++) { C[i * n + _j] += A[i * n + k] * B[k * n + _j]; } } } return C; }; var expand = function expand(M, n, expandFactor /** power **/) { var _M = M.slice(0); for (var p = 1; p < expandFactor; p++) { M = mmult(M, _M, n); } return M; }; var inflate = function inflate(M, n, inflateFactor /** r **/) { var _M = new Array(n * n); // M(i,j) ^ inflatePower for (var i = 0; i < n * n; i++) { _M[i] = Math.pow(M[i], inflateFactor); } normalize(_M, n); return _M; }; var hasConverged = function hasConverged(M, _M, n2, roundFactor) { // Check that both matrices have the same elements (i,j) for (var i = 0; i < n2; i++) { var v1 = Math.round(M[i] * Math.pow(10, roundFactor)) / Math.pow(10, roundFactor); // truncate to 'roundFactor' decimal places var v2 = Math.round(_M[i] * Math.pow(10, roundFactor)) / Math.pow(10, roundFactor); if (v1 !== v2) { return false; } } return true; }; var assign$2 = function assign(M, n, nodes, cy) { var clusters = []; for (var i = 0; i < n; i++) { var cluster = []; for (var j = 0; j < n; j++) { // Row-wise attractors and elements that they attract belong in same cluster if (Math.round(M[i * n + j] * 1000) / 1000 > 0) { cluster.push(nodes[j]); } } if (cluster.length !== 0) { clusters.push(cy.collection(cluster)); } } return clusters; }; var isDuplicate = function isDuplicate(c1, c2) { for (var i = 0; i < c1.length; i++) { if (!c2[i] || c1[i].id() !== c2[i].id()) { return false; } } return true; }; var removeDuplicates = function removeDuplicates(clusters) { for (var i = 0; i < clusters.length; i++) { for (var j = 0; j < clusters.length; j++) { if (i != j && isDuplicate(clusters[i], clusters[j])) { clusters.splice(j, 1); } } } return clusters; }; var markovClustering = function markovClustering(options) { var nodes = this.nodes(); var edges = this.edges(); var cy = this.cy(); // Set parameters of algorithm: var opts = setOptions$3(options); // Map each node to its position in node array var id2position = {}; for (var i = 0; i < nodes.length; i++) { id2position[nodes[i].id()] = i; } // Generate stochastic matrix M from input graph G (should be symmetric/undirected) var n = nodes.length, n2 = n * n; var M = new Array(n2), _M; for (var _i = 0; _i < n2; _i++) { M[_i] = 0; } for (var e = 0; e < edges.length; e++) { var edge = edges[e]; var _i2 = id2position[edge.source().id()]; var j = id2position[edge.target().id()]; var sim = getSimilarity$1(edge, opts.attributes); M[_i2 * n + j] += sim; // G should be symmetric and undirected M[j * n + _i2] += sim; } // Begin Markov cluster algorithm // Step 1: Add self loops to each node, ie. add multFactor to matrix diagonal addLoops(M, n, opts.multFactor); // Step 2: M = normalize( M ); normalize(M, n); var isStillMoving = true; var iterations = 0; while (isStillMoving && iterations < opts.maxIterations) { isStillMoving = false; // Step 3: _M = expand(M, n, opts.expandFactor); // Step 4: M = inflate(_M, n, opts.inflateFactor); // Step 5: check to see if ~steady state has been reached if (!hasConverged(M, _M, n2, 4)) { isStillMoving = true; } iterations++; } // Build clusters from matrix var clusters = assign$2(M, n, nodes, cy); // Remove duplicate clusters due to symmetry of graph and M matrix clusters = removeDuplicates(clusters); return clusters; }; var markovClustering$1 = { markovClustering: markovClustering, mcl: markovClustering }; // Common distance metrics for clustering algorithms var identity = function identity(x) { return x; }; var absDiff = function absDiff(p, q) { return Math.abs(q - p); }; var addAbsDiff = function addAbsDiff(total, p, q) { return total + absDiff(p, q); }; var addSquaredDiff = function addSquaredDiff(total, p, q) { return total + Math.pow(q - p, 2); }; var sqrt = function sqrt(x) { return Math.sqrt(x); }; var maxAbsDiff = function maxAbsDiff(currentMax, p, q) { return Math.max(currentMax, absDiff(p, q)); }; var getDistance = function getDistance(length, getP, getQ, init, visit) { var post = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : identity; var ret = init; var p, q; for (var dim = 0; dim < length; dim++) { p = getP(dim); q = getQ(dim); ret = visit(ret, p, q); } return post(ret); }; var distances = { euclidean: function euclidean(length, getP, getQ) { if (length >= 2) { return getDistance(length, getP, getQ, 0, addSquaredDiff, sqrt); } else { // for single attr case, more efficient to avoid sqrt return getDistance(length, getP, getQ, 0, addAbsDiff); } }, squaredEuclidean: function squaredEuclidean(length, getP, getQ) { return getDistance(length, getP, getQ, 0, addSquaredDiff); }, manhattan: function manhattan(length, getP, getQ) { return getDistance(length, getP, getQ, 0, addAbsDiff); }, max: function max(length, getP, getQ) { return getDistance(length, getP, getQ, -Infinity, maxAbsDiff); } }; // in case the user accidentally doesn't use camel case distances['squared-euclidean'] = distances['squaredEuclidean']; distances['squaredeuclidean'] = distances['squaredEuclidean']; function clusteringDistance (method, length, getP, getQ, nodeP, nodeQ) { var impl; if (fn$6(method)) { impl = method; } else { impl = distances[method] || distances.euclidean; } if (length === 0 && fn$6(method)) { return impl(nodeP, nodeQ); } else { return impl(length, getP, getQ, nodeP, nodeQ); } } var defaults$b = defaults$g({ k: 2, m: 2, sensitivityThreshold: 0.0001, distance: 'euclidean', maxIterations: 10, attributes: [], testMode: false, testCentroids: null }); var setOptions$2 = function setOptions(options) { return defaults$b(options); }; var getDist = function getDist(type, node, centroid, attributes, mode) { var noNodeP = mode !== 'kMedoids'; var getP = noNodeP ? function (i) { return centroid[i]; } : function (i) { return attributes[i](centroid); }; var getQ = function getQ(i) { return attributes[i](node); }; var nodeP = centroid; var nodeQ = node; return clusteringDistance(type, attributes.length, getP, getQ, nodeP, nodeQ); }; var randomCentroids = function randomCentroids(nodes, k, attributes) { var ndim = attributes.length; var min = new Array(ndim); var max = new Array(ndim); var centroids = new Array(k); var centroid = null; // Find min, max values for each attribute dimension for (var i = 0; i < ndim; i++) { min[i] = nodes.min(attributes[i]).value; max[i] = nodes.max(attributes[i]).value; } // Build k centroids, each represented as an n-dim feature vector for (var c = 0; c < k; c++) { centroid = []; for (var _i = 0; _i < ndim; _i++) { centroid[_i] = Math.random() * (max[_i] - min[_i]) + min[_i]; // random initial value } centroids[c] = centroid; } return centroids; }; var classify = function classify(node, centroids, distance, attributes, type) { var min = Infinity; var index = 0; for (var i = 0; i < centroids.length; i++) { var dist = getDist(distance, node, centroids[i], attributes, type); if (dist < min) { min = dist; index = i; } } return index; }; var buildCluster = function buildCluster(centroid, nodes, assignment) { var cluster = []; var node = null; for (var n = 0; n < nodes.length; n++) { node = nodes[n]; if (assignment[node.id()] === centroid) { //console.log("Node " + node.id() + " is associated with medoid #: " + m); cluster.push(node); } } return cluster; }; var haveValuesConverged = function haveValuesConverged(v1, v2, sensitivityThreshold) { return Math.abs(v2 - v1) <= sensitivityThreshold; }; var haveMatricesConverged = function haveMatricesConverged(v1, v2, sensitivityThreshold) { for (var i = 0; i < v1.length; i++) { for (var j = 0; j < v1[i].length; j++) { var diff = Math.abs(v1[i][j] - v2[i][j]); if (diff > sensitivityThreshold) { return false; } } } return true; }; var seenBefore = function seenBefore(node, medoids, n) { for (var i = 0; i < n; i++) { if (node === medoids[i]) return true; } return false; }; var randomMedoids = function randomMedoids(nodes, k) { var medoids = new Array(k); // For small data sets, the probability of medoid conflict is greater, // so we need to check to see if we've already seen or chose this node before. if (nodes.length < 50) { // Randomly select k medoids from the n nodes for (var i = 0; i < k; i++) { var node = nodes[Math.floor(Math.random() * nodes.length)]; // If we've already chosen this node to be a medoid, don't choose it again (for small data sets). // Instead choose a different random node. while (seenBefore(node, medoids, i)) { node = nodes[Math.floor(Math.random() * nodes.length)]; } medoids[i] = node; } } else { // Relatively large data set, so pretty safe to not check and just select random nodes for (var _i2 = 0; _i2 < k; _i2++) { medoids[_i2] = nodes[Math.floor(Math.random() * nodes.length)]; } } return medoids; }; var findCost = function findCost(potentialNewMedoid, cluster, attributes) { var cost = 0; for (var n = 0; n < cluster.length; n++) { cost += getDist('manhattan', cluster[n], potentialNewMedoid, attributes, 'kMedoids'); } return cost; }; var kMeans = function kMeans(options) { var cy = this.cy(); var nodes = this.nodes(); var node = null; // Set parameters of algorithm: # of clusters, distance metric, etc. var opts = setOptions$2(options); // Begin k-means algorithm var clusters = new Array(opts.k); var assignment = {}; var centroids; // Step 1: Initialize centroid positions if (opts.testMode) { if (typeof opts.testCentroids === 'number') { // TODO: implement a seeded random number generator. opts.testCentroids; centroids = randomCentroids(nodes, opts.k, opts.attributes); } else if (_typeof(opts.testCentroids) === 'object') { centroids = opts.testCentroids; } else { centroids = randomCentroids(nodes, opts.k, opts.attributes); } } else { centroids = randomCentroids(nodes, opts.k, opts.attributes); } var isStillMoving = true; var iterations = 0; while (isStillMoving && iterations < opts.maxIterations) { // Step 2: Assign nodes to the nearest centroid for (var n = 0; n < nodes.length; n++) { node = nodes[n]; // Determine which cluster this node belongs to: node id => cluster # assignment[node.id()] = classify(node, centroids, opts.distance, opts.attributes, 'kMeans'); } // Step 3: For each of the k clusters, update its centroid isStillMoving = false; for (var c = 0; c < opts.k; c++) { // Get all nodes that belong to this cluster var cluster = buildCluster(c, nodes, assignment); if (cluster.length === 0) { // If cluster is empty, break out early & move to next cluster continue; } // Update centroids by calculating avg of all nodes within the cluster. var ndim = opts.attributes.length; var centroid = centroids[c]; // [ dim_1, dim_2, dim_3, ... , dim_n ] var newCentroid = new Array(ndim); var sum = new Array(ndim); for (var d = 0; d < ndim; d++) { sum[d] = 0.0; for (var i = 0; i < cluster.length; i++) { node = cluster[i]; sum[d] += opts.attributes[d](node); } newCentroid[d] = sum[d] / cluster.length; // Check to see if algorithm has converged, i.e. when centroids no longer change if (!haveValuesConverged(newCentroid[d], centroid[d], opts.sensitivityThreshold)) { isStillMoving = true; } } centroids[c] = newCentroid; clusters[c] = cy.collection(cluster); } iterations++; } return clusters; }; var kMedoids = function kMedoids(options) { var cy = this.cy(); var nodes = this.nodes(); var node = null; var opts = setOptions$2(options); // Begin k-medoids algorithm var clusters = new Array(opts.k); var medoids; var assignment = {}; var curCost; var minCosts = new Array(opts.k); // minimum cost configuration for each cluster // Step 1: Initialize k medoids if (opts.testMode) { if (typeof opts.testCentroids === 'number') ; else if (_typeof(opts.testCentroids) === 'object') { medoids = opts.testCentroids; } else { medoids = randomMedoids(nodes, opts.k); } } else { medoids = randomMedoids(nodes, opts.k); } var isStillMoving = true; var iterations = 0; while (isStillMoving && iterations < opts.maxIterations) { // Step 2: Assign nodes to the nearest medoid for (var n = 0; n < nodes.length; n++) { node = nodes[n]; // Determine which cluster this node belongs to: node id => cluster # assignment[node.id()] = classify(node, medoids, opts.distance, opts.attributes, 'kMedoids'); } isStillMoving = false; // Step 3: For each medoid m, and for each node associated with mediod m, // select the node with the lowest configuration cost as new medoid. for (var m = 0; m < medoids.length; m++) { // Get all nodes that belong to this medoid var cluster = buildCluster(m, nodes, assignment); if (cluster.length === 0) { // If cluster is empty, break out early & move to next cluster continue; } minCosts[m] = findCost(medoids[m], cluster, opts.attributes); // original cost // Select different medoid if its configuration has the lowest cost for (var _n = 0; _n < cluster.length; _n++) { curCost = findCost(cluster[_n], cluster, opts.attributes); if (curCost < minCosts[m]) { minCosts[m] = curCost; medoids[m] = cluster[_n]; isStillMoving = true; } } clusters[m] = cy.collection(cluster); } iterations++; } return clusters; }; var updateCentroids = function updateCentroids(centroids, nodes, U, weight, opts) { var numerator, denominator; for (var n = 0; n < nodes.length; n++) { for (var c = 0; c < centroids.length; c++) { weight[n][c] = Math.pow(U[n][c], opts.m); } } for (var _c = 0; _c < centroids.length; _c++) { for (var dim = 0; dim < opts.attributes.length; dim++) { numerator = 0; denominator = 0; for (var _n2 = 0; _n2 < nodes.length; _n2++) { numerator += weight[_n2][_c] * opts.attributes[dim](nodes[_n2]); denominator += weight[_n2][_c]; } centroids[_c][dim] = numerator / denominator; } } }; var updateMembership = function updateMembership(U, _U, centroids, nodes, opts) { // Save previous step for (var i = 0; i < U.length; i++) { _U[i] = U[i].slice(); } var sum, numerator, denominator; var pow = 2 / (opts.m - 1); for (var c = 0; c < centroids.length; c++) { for (var n = 0; n < nodes.length; n++) { sum = 0; for (var k = 0; k < centroids.length; k++) { // against all other centroids numerator = getDist(opts.distance, nodes[n], centroids[c], opts.attributes, 'cmeans'); denominator = getDist(opts.distance, nodes[n], centroids[k], opts.attributes, 'cmeans'); sum += Math.pow(numerator / denominator, pow); } U[n][c] = 1 / sum; } } }; var assign$1 = function assign(nodes, U, opts, cy) { var clusters = new Array(opts.k); for (var c = 0; c < clusters.length; c++) { clusters[c] = []; } var max; var index; for (var n = 0; n < U.length; n++) { // for each node (U is N x C matrix) max = -Infinity; index = -1; // Determine which cluster the node is most likely to belong in for (var _c2 = 0; _c2 < U[0].length; _c2++) { if (U[n][_c2] > max) { max = U[n][_c2]; index = _c2; } } clusters[index].push(nodes[n]); } // Turn every array into a collection of nodes for (var _c3 = 0; _c3 < clusters.length; _c3++) { clusters[_c3] = cy.collection(clusters[_c3]); } return clusters; }; var fuzzyCMeans = function fuzzyCMeans(options) { var cy = this.cy(); var nodes = this.nodes(); var opts = setOptions$2(options); // Begin fuzzy c-means algorithm var clusters; var centroids; var U; var _U; var weight; // Step 1: Initialize letiables. _U = new Array(nodes.length); for (var i = 0; i < nodes.length; i++) { // N x C matrix _U[i] = new Array(opts.k); } U = new Array(nodes.length); for (var _i3 = 0; _i3 < nodes.length; _i3++) { // N x C matrix U[_i3] = new Array(opts.k); } for (var _i4 = 0; _i4 < nodes.length; _i4++) { var total = 0; for (var j = 0; j < opts.k; j++) { U[_i4][j] = Math.random(); total += U[_i4][j]; } for (var _j = 0; _j < opts.k; _j++) { U[_i4][_j] = U[_i4][_j] / total; } } centroids = new Array(opts.k); for (var _i5 = 0; _i5 < opts.k; _i5++) { centroids[_i5] = new Array(opts.attributes.length); } weight = new Array(nodes.length); for (var _i6 = 0; _i6 < nodes.length; _i6++) { // N x C matrix weight[_i6] = new Array(opts.k); } // end init FCM var isStillMoving = true; var iterations = 0; while (isStillMoving && iterations < opts.maxIterations) { isStillMoving = false; // Step 2: Calculate the centroids for each step. updateCentroids(centroids, nodes, U, weight, opts); // Step 3: Update the partition matrix U. updateMembership(U, _U, centroids, nodes, opts); // Step 4: Check for convergence. if (!haveMatricesConverged(U, _U, opts.sensitivityThreshold)) { isStillMoving = true; } iterations++; } // Assign nodes to clusters with highest probability. clusters = assign$1(nodes, U, opts, cy); return { clusters: clusters, degreeOfMembership: U }; }; var kClustering = { kMeans: kMeans, kMedoids: kMedoids, fuzzyCMeans: fuzzyCMeans, fcm: fuzzyCMeans }; // Implemented by Zoe Xi @zoexi for GSOC 2016 var defaults$a = defaults$g({ distance: 'euclidean', // distance metric to compare nodes linkage: 'min', // linkage criterion : how to determine the distance between clusters of nodes mode: 'threshold', // mode:'threshold' => clusters must be threshold distance apart threshold: Infinity, // the distance threshold // mode:'dendrogram' => the nodes are organised as leaves in a tree (siblings are close), merging makes clusters addDendrogram: false, // whether to add the dendrogram to the graph for viz dendrogramDepth: 0, // depth at which dendrogram branches are merged into the returned clusters attributes: [] // array of attr functions }); var linkageAliases = { 'single': 'min', 'complete': 'max' }; var setOptions$1 = function setOptions(options) { var opts = defaults$a(options); var preferredAlias = linkageAliases[opts.linkage]; if (preferredAlias != null) { opts.linkage = preferredAlias; } return opts; }; var mergeClosest = function mergeClosest(clusters, index, dists, mins, opts) { // Find two closest clusters from cached mins var minKey = 0; var min = Infinity; var dist; var attrs = opts.attributes; var getDist = function getDist(n1, n2) { return clusteringDistance(opts.distance, attrs.length, function (i) { return attrs[i](n1); }, function (i) { return attrs[i](n2); }, n1, n2); }; for (var i = 0; i < clusters.length; i++) { var key = clusters[i].key; var _dist = dists[key][mins[key]]; if (_dist < min) { minKey = key; min = _dist; } } if (opts.mode === 'threshold' && min >= opts.threshold || opts.mode === 'dendrogram' && clusters.length === 1) { return false; } var c1 = index[minKey]; var c2 = index[mins[minKey]]; var merged; // Merge two closest clusters if (opts.mode === 'dendrogram') { merged = { left: c1, right: c2, key: c1.key }; } else { merged = { value: c1.value.concat(c2.value), key: c1.key }; } clusters[c1.index] = merged; clusters.splice(c2.index, 1); index[c1.key] = merged; // Update distances with new merged cluster for (var _i = 0; _i < clusters.length; _i++) { var cur = clusters[_i]; if (c1.key === cur.key) { dist = Infinity; } else if (opts.linkage === 'min') { dist = dists[c1.key][cur.key]; if (dists[c1.key][cur.key] > dists[c2.key][cur.key]) { dist = dists[c2.key][cur.key]; } } else if (opts.linkage === 'max') { dist = dists[c1.key][cur.key]; if (dists[c1.key][cur.key] < dists[c2.key][cur.key]) { dist = dists[c2.key][cur.key]; } } else if (opts.linkage === 'mean') { dist = (dists[c1.key][cur.key] * c1.size + dists[c2.key][cur.key] * c2.size) / (c1.size + c2.size); } else { if (opts.mode === 'dendrogram') dist = getDist(cur.value, c1.value);else dist = getDist(cur.value[0], c1.value[0]); } dists[c1.key][cur.key] = dists[cur.key][c1.key] = dist; // distance matrix is symmetric } // Update cached mins for (var _i2 = 0; _i2 < clusters.length; _i2++) { var key1 = clusters[_i2].key; if (mins[key1] === c1.key || mins[key1] === c2.key) { var _min = key1; for (var j = 0; j < clusters.length; j++) { var key2 = clusters[j].key; if (dists[key1][key2] < dists[key1][_min]) { _min = key2; } } mins[key1] = _min; } clusters[_i2].index = _i2; } // Clean up meta data used for clustering c1.key = c2.key = c1.index = c2.index = null; return true; }; var getAllChildren = function getAllChildren(root, arr, cy) { if (!root) return; if (root.value) { arr.push(root.value); } else { if (root.left) getAllChildren(root.left, arr); if (root.right) getAllChildren(root.right, arr); } }; var buildDendrogram = function buildDendrogram(root, cy) { if (!root) return ''; if (root.left && root.right) { var leftStr = buildDendrogram(root.left, cy); var rightStr = buildDendrogram(root.right, cy); var node = cy.add({ group: 'nodes', data: { id: leftStr + ',' + rightStr } }); cy.add({ group: 'edges', data: { source: leftStr, target: node.id() } }); cy.add({ group: 'edges', data: { source: rightStr, target: node.id() } }); return node.id(); } else if (root.value) { return root.value.id(); } }; var buildClustersFromTree = function buildClustersFromTree(root, k, cy) { if (!root) return []; var left = [], right = [], leaves = []; if (k === 0) { // don't cut tree, simply return all nodes as 1 single cluster if (root.left) getAllChildren(root.left, left); if (root.right) getAllChildren(root.right, right); leaves = left.concat(right); return [cy.collection(leaves)]; } else if (k === 1) { // cut at root if (root.value) { // leaf node return [cy.collection(root.value)]; } else { if (root.left) getAllChildren(root.left, left); if (root.right) getAllChildren(root.right, right); return [cy.collection(left), cy.collection(right)]; } } else { if (root.value) { return [cy.collection(root.value)]; } else { if (root.left) left = buildClustersFromTree(root.left, k - 1, cy); if (root.right) right = buildClustersFromTree(root.right, k - 1, cy); return left.concat(right); } } }; var hierarchicalClustering = function hierarchicalClustering(options) { var cy = this.cy(); var nodes = this.nodes(); // Set parameters of algorithm: linkage type, distance metric, etc. var opts = setOptions$1(options); var attrs = opts.attributes; var getDist = function getDist(n1, n2) { return clusteringDistance(opts.distance, attrs.length, function (i) { return attrs[i](n1); }, function (i) { return attrs[i](n2); }, n1, n2); }; // Begin hierarchical algorithm var clusters = []; var dists = []; // distances between each pair of clusters var mins = []; // closest cluster for each cluster var index = []; // hash of all clusters by key // In agglomerative (bottom-up) clustering, each node starts as its own cluster for (var n = 0; n < nodes.length; n++) { var cluster = { value: opts.mode === 'dendrogram' ? nodes[n] : [nodes[n]], key: n, index: n }; clusters[n] = cluster; index[n] = cluster; dists[n] = []; mins[n] = 0; } // Calculate the distance between each pair of clusters for (var i = 0; i < clusters.length; i++) { for (var j = 0; j <= i; j++) { var dist = void 0; if (opts.mode === 'dendrogram') { // modes store cluster values differently dist = i === j ? Infinity : getDist(clusters[i].value, clusters[j].value); } else { dist = i === j ? Infinity : getDist(clusters[i].value[0], clusters[j].value[0]); } dists[i][j] = dist; dists[j][i] = dist; if (dist < dists[i][mins[i]]) { mins[i] = j; // Cache mins: closest cluster to cluster i is cluster j } } } // Find the closest pair of clusters and merge them into a single cluster. // Update distances between new cluster and each of the old clusters, and loop until threshold reached. var merged = mergeClosest(clusters, index, dists, mins, opts); while (merged) { merged = mergeClosest(clusters, index, dists, mins, opts); } var retClusters; // Dendrogram mode builds the hierarchy and adds intermediary nodes + edges // in addition to returning the clusters. if (opts.mode === 'dendrogram') { retClusters = buildClustersFromTree(clusters[0], opts.dendrogramDepth, cy); if (opts.addDendrogram) buildDendrogram(clusters[0], cy); } else { // Regular mode simply returns the clusters retClusters = new Array(clusters.length); clusters.forEach(function (cluster, i) { // Clean up meta data used for clustering cluster.key = cluster.index = null; retClusters[i] = cy.collection(cluster.value); }); } return retClusters; }; var hierarchicalClustering$1 = { hierarchicalClustering: hierarchicalClustering, hca: hierarchicalClustering }; // Implemented by Zoe Xi @zoexi for GSOC 2016 var defaults$9 = defaults$g({ distance: 'euclidean', // distance metric to compare attributes between two nodes preference: 'median', // suitability of a data point to serve as an exemplar damping: 0.8, // damping factor between [0.5, 1) maxIterations: 1000, // max number of iterations to run minIterations: 100, // min number of iterations to run in order for clustering to stop attributes: [// functions to quantify the similarity between any two points // e.g. node => node.data('weight') ] }); var setOptions = function setOptions(options) { var dmp = options.damping; var pref = options.preference; if (!(0.5 <= dmp && dmp < 1)) { error("Damping must range on [0.5, 1). Got: ".concat(dmp)); } var validPrefs = ['median', 'mean', 'min', 'max']; if (!(validPrefs.some(function (v) { return v === pref; }) || number$1(pref))) { error("Preference must be one of [".concat(validPrefs.map(function (p) { return "'".concat(p, "'"); }).join(', '), "] or a number. Got: ").concat(pref)); } return defaults$9(options); }; var getSimilarity = function getSimilarity(type, n1, n2, attributes) { var attr = function attr(n, i) { return attributes[i](n); }; // nb negative because similarity should have an inverse relationship to distance return -clusteringDistance(type, attributes.length, function (i) { return attr(n1, i); }, function (i) { return attr(n2, i); }, n1, n2); }; var getPreference = function getPreference(S, preference) { // larger preference = greater # of clusters var p = null; if (preference === 'median') { p = median(S); } else if (preference === 'mean') { p = mean(S); } else if (preference === 'min') { p = min(S); } else if (preference === 'max') { p = max(S); } else { // Custom preference number, as set by user p = preference; } return p; }; var findExemplars = function findExemplars(n, R, A) { var indices = []; for (var i = 0; i < n; i++) { if (R[i * n + i] + A[i * n + i] > 0) { indices.push(i); } } return indices; }; var assignClusters = function assignClusters(n, S, exemplars) { var clusters = []; for (var i = 0; i < n; i++) { var index = -1; var max = -Infinity; for (var ei = 0; ei < exemplars.length; ei++) { var e = exemplars[ei]; if (S[i * n + e] > max) { index = e; max = S[i * n + e]; } } if (index > 0) { clusters.push(index); } } for (var _ei = 0; _ei < exemplars.length; _ei++) { clusters[exemplars[_ei]] = exemplars[_ei]; } return clusters; }; var assign = function assign(n, S, exemplars) { var clusters = assignClusters(n, S, exemplars); for (var ei = 0; ei < exemplars.length; ei++) { var ii = []; for (var c = 0; c < clusters.length; c++) { if (clusters[c] === exemplars[ei]) { ii.push(c); } } var maxI = -1; var maxSum = -Infinity; for (var i = 0; i < ii.length; i++) { var sum = 0; for (var j = 0; j < ii.length; j++) { sum += S[ii[j] * n + ii[i]]; } if (sum > maxSum) { maxI = i; maxSum = sum; } } exemplars[ei] = ii[maxI]; } clusters = assignClusters(n, S, exemplars); return clusters; }; var affinityPropagation = function affinityPropagation(options) { var cy = this.cy(); var nodes = this.nodes(); var opts = setOptions(options); // Map each node to its position in node array var id2position = {}; for (var i = 0; i < nodes.length; i++) { id2position[nodes[i].id()] = i; } // Begin affinity propagation algorithm var n; // number of data points var n2; // size of matrices var S; // similarity matrix (1D array) var p; // preference/suitability of a data point to serve as an exemplar var R; // responsibility matrix (1D array) var A; // availability matrix (1D array) n = nodes.length; n2 = n * n; // Initialize and build S similarity matrix S = new Array(n2); for (var _i = 0; _i < n2; _i++) { S[_i] = -Infinity; // for cases where two data points shouldn't be linked together } for (var _i2 = 0; _i2 < n; _i2++) { for (var j = 0; j < n; j++) { if (_i2 !== j) { S[_i2 * n + j] = getSimilarity(opts.distance, nodes[_i2], nodes[j], opts.attributes); } } } // Place preferences on the diagonal of S p = getPreference(S, opts.preference); for (var _i3 = 0; _i3 < n; _i3++) { S[_i3 * n + _i3] = p; } // Initialize R responsibility matrix R = new Array(n2); for (var _i4 = 0; _i4 < n2; _i4++) { R[_i4] = 0.0; } // Initialize A availability matrix A = new Array(n2); for (var _i5 = 0; _i5 < n2; _i5++) { A[_i5] = 0.0; } var old = new Array(n); var Rp = new Array(n); var se = new Array(n); for (var _i6 = 0; _i6 < n; _i6++) { old[_i6] = 0.0; Rp[_i6] = 0.0; se[_i6] = 0; } var e = new Array(n * opts.minIterations); for (var _i7 = 0; _i7 < e.length; _i7++) { e[_i7] = 0; } var iter; for (iter = 0; iter < opts.maxIterations; iter++) { // main algorithmic loop // Update R responsibility matrix for (var _i8 = 0; _i8 < n; _i8++) { var max = -Infinity, max2 = -Infinity, maxI = -1, AS = 0.0; for (var _j = 0; _j < n; _j++) { old[_j] = R[_i8 * n + _j]; AS = A[_i8 * n + _j] + S[_i8 * n + _j]; if (AS >= max) { max2 = max; max = AS; maxI = _j; } else if (AS > max2) { max2 = AS; } } for (var _j2 = 0; _j2 < n; _j2++) { R[_i8 * n + _j2] = (1 - opts.damping) * (S[_i8 * n + _j2] - max) + opts.damping * old[_j2]; } R[_i8 * n + maxI] = (1 - opts.damping) * (S[_i8 * n + maxI] - max2) + opts.damping * old[maxI]; } // Update A availability matrix for (var _i9 = 0; _i9 < n; _i9++) { var sum = 0; for (var _j3 = 0; _j3 < n; _j3++) { old[_j3] = A[_j3 * n + _i9]; Rp[_j3] = Math.max(0, R[_j3 * n + _i9]); sum += Rp[_j3]; } sum -= Rp[_i9]; Rp[_i9] = R[_i9 * n + _i9]; sum += Rp[_i9]; for (var _j4 = 0; _j4 < n; _j4++) { A[_j4 * n + _i9] = (1 - opts.damping) * Math.min(0, sum - Rp[_j4]) + opts.damping * old[_j4]; } A[_i9 * n + _i9] = (1 - opts.damping) * (sum - Rp[_i9]) + opts.damping * old[_i9]; } // Check for convergence var K = 0; for (var _i10 = 0; _i10 < n; _i10++) { var E = A[_i10 * n + _i10] + R[_i10 * n + _i10] > 0 ? 1 : 0; e[iter % opts.minIterations * n + _i10] = E; K += E; } if (K > 0 && (iter >= opts.minIterations - 1 || iter == opts.maxIterations - 1)) { var _sum = 0; for (var _i11 = 0; _i11 < n; _i11++) { se[_i11] = 0; for (var _j5 = 0; _j5 < opts.minIterations; _j5++) { se[_i11] += e[_j5 * n + _i11]; } if (se[_i11] === 0 || se[_i11] === opts.minIterations) { _sum++; } } if (_sum === n) { // then we have convergence break; } } } // Identify exemplars (cluster centers) var exemplarsIndices = findExemplars(n, R, A); // Assign nodes to clusters var clusterIndices = assign(n, S, exemplarsIndices); var clusters = {}; for (var c = 0; c < exemplarsIndices.length; c++) { clusters[exemplarsIndices[c]] = []; } for (var _i12 = 0; _i12 < nodes.length; _i12++) { var pos = id2position[nodes[_i12].id()]; var clusterIndex = clusterIndices[pos]; if (clusterIndex != null) { // the node may have not been assigned a cluster if no valid attributes were specified clusters[clusterIndex].push(nodes[_i12]); } } var retClusters = new Array(exemplarsIndices.length); for (var _c = 0; _c < exemplarsIndices.length; _c++) { retClusters[_c] = cy.collection(clusters[exemplarsIndices[_c]]); } return retClusters; }; var affinityPropagation$1 = { affinityPropagation: affinityPropagation, ap: affinityPropagation }; var hierholzerDefaults = defaults$g({ root: undefined, directed: false }); var elesfn$k = { hierholzer: function hierholzer(options) { if (!plainObject(options)) { var args = arguments; options = { root: args[0], directed: args[1] }; } var _hierholzerDefaults = hierholzerDefaults(options), root = _hierholzerDefaults.root, directed = _hierholzerDefaults.directed; var eles = this; var dflag = false; var oddIn; var oddOut; var startVertex; if (root) startVertex = string(root) ? this.filter(root)[0].id() : root[0].id(); var nodes = {}; var edges = {}; if (directed) { eles.forEach(function (ele) { var id = ele.id(); if (ele.isNode()) { var ind = ele.indegree(true); var outd = ele.outdegree(true); var d1 = ind - outd; var d2 = outd - ind; if (d1 == 1) { if (oddIn) dflag = true;else oddIn = id; } else if (d2 == 1) { if (oddOut) dflag = true;else oddOut = id; } else if (d2 > 1 || d1 > 1) { dflag = true; } nodes[id] = []; ele.outgoers().forEach(function (e) { if (e.isEdge()) nodes[id].push(e.id()); }); } else { edges[id] = [undefined, ele.target().id()]; } }); } else { eles.forEach(function (ele) { var id = ele.id(); if (ele.isNode()) { var d = ele.degree(true); if (d % 2) { if (!oddIn) oddIn = id;else if (!oddOut) oddOut = id;else dflag = true; } nodes[id] = []; ele.connectedEdges().forEach(function (e) { return nodes[id].push(e.id()); }); } else { edges[id] = [ele.source().id(), ele.target().id()]; } }); } var result = { found: false, trail: undefined }; if (dflag) return result;else if (oddOut && oddIn) { if (directed) { if (startVertex && oddOut != startVertex) { return result; } startVertex = oddOut; } else { if (startVertex && oddOut != startVertex && oddIn != startVertex) { return result; } else if (!startVertex) { startVertex = oddOut; } } } else { if (!startVertex) startVertex = eles[0].id(); } var walk = function walk(v) { var currentNode = v; var subtour = [v]; var adj, adjTail, adjHead; while (nodes[currentNode].length) { adj = nodes[currentNode].shift(); adjTail = edges[adj][0]; adjHead = edges[adj][1]; if (currentNode != adjHead) { nodes[adjHead] = nodes[adjHead].filter(function (e) { return e != adj; }); currentNode = adjHead; } else if (!directed && currentNode != adjTail) { nodes[adjTail] = nodes[adjTail].filter(function (e) { return e != adj; }); currentNode = adjTail; } subtour.unshift(adj); subtour.unshift(currentNode); } return subtour; }; var trail = []; var subtour = []; subtour = walk(startVertex); while (subtour.length != 1) { if (nodes[subtour[0]].length == 0) { trail.unshift(eles.getElementById(subtour.shift())); trail.unshift(eles.getElementById(subtour.shift())); } else { subtour = walk(subtour.shift()).concat(subtour); } } trail.unshift(eles.getElementById(subtour.shift())); // final node for (var d in nodes) { if (nodes[d].length) { return result; } } result.found = true; result.trail = this.spawn(trail, true); return result; } }; var hopcroftTarjanBiconnected = function hopcroftTarjanBiconnected() { var eles = this; var nodes = {}; var id = 0; var edgeCount = 0; var components = []; var stack = []; var visitedEdges = {}; var buildComponent = function buildComponent(x, y) { var i = stack.length - 1; var cutset = []; var component = eles.spawn(); while (stack[i].x != x || stack[i].y != y) { cutset.push(stack.pop().edge); i--; } cutset.push(stack.pop().edge); cutset.forEach(function (edge) { var connectedNodes = edge.connectedNodes().intersection(eles); component.merge(edge); connectedNodes.forEach(function (node) { var nodeId = node.id(); var connectedEdges = node.connectedEdges().intersection(eles); component.merge(node); if (!nodes[nodeId].cutVertex) { component.merge(connectedEdges); } else { component.merge(connectedEdges.filter(function (edge) { return edge.isLoop(); })); } }); }); components.push(component); }; var biconnectedSearch = function biconnectedSearch(root, currentNode, parent) { if (root === parent) edgeCount += 1; nodes[currentNode] = { id: id, low: id++, cutVertex: false }; var edges = eles.getElementById(currentNode).connectedEdges().intersection(eles); if (edges.size() === 0) { components.push(eles.spawn(eles.getElementById(currentNode))); } else { var sourceId, targetId, otherNodeId, edgeId; edges.forEach(function (edge) { sourceId = edge.source().id(); targetId = edge.target().id(); otherNodeId = sourceId === currentNode ? targetId : sourceId; if (otherNodeId !== parent) { edgeId = edge.id(); if (!visitedEdges[edgeId]) { visitedEdges[edgeId] = true; stack.push({ x: currentNode, y: otherNodeId, edge: edge }); } if (!(otherNodeId in nodes)) { biconnectedSearch(root, otherNodeId, currentNode); nodes[currentNode].low = Math.min(nodes[currentNode].low, nodes[otherNodeId].low); if (nodes[currentNode].id <= nodes[otherNodeId].low) { nodes[currentNode].cutVertex = true; buildComponent(currentNode, otherNodeId); } } else { nodes[currentNode].low = Math.min(nodes[currentNode].low, nodes[otherNodeId].id); } } }); } }; eles.forEach(function (ele) { if (ele.isNode()) { var nodeId = ele.id(); if (!(nodeId in nodes)) { edgeCount = 0; biconnectedSearch(nodeId, nodeId); nodes[nodeId].cutVertex = edgeCount > 1; } } }); var cutVertices = Object.keys(nodes).filter(function (id) { return nodes[id].cutVertex; }).map(function (id) { return eles.getElementById(id); }); return { cut: eles.spawn(cutVertices), components: components }; }; var hopcroftTarjanBiconnected$1 = { hopcroftTarjanBiconnected: hopcroftTarjanBiconnected, htbc: hopcroftTarjanBiconnected, htb: hopcroftTarjanBiconnected, hopcroftTarjanBiconnectedComponents: hopcroftTarjanBiconnected }; var tarjanStronglyConnected = function tarjanStronglyConnected() { var eles = this; var nodes = {}; var index = 0; var components = []; var stack = []; var cut = eles.spawn(eles); var stronglyConnectedSearch = function stronglyConnectedSearch(sourceNodeId) { stack.push(sourceNodeId); nodes[sourceNodeId] = { index: index, low: index++, explored: false }; var connectedEdges = eles.getElementById(sourceNodeId).connectedEdges().intersection(eles); connectedEdges.forEach(function (edge) { var targetNodeId = edge.target().id(); if (targetNodeId !== sourceNodeId) { if (!(targetNodeId in nodes)) { stronglyConnectedSearch(targetNodeId); } if (!nodes[targetNodeId].explored) { nodes[sourceNodeId].low = Math.min(nodes[sourceNodeId].low, nodes[targetNodeId].low); } } }); if (nodes[sourceNodeId].index === nodes[sourceNodeId].low) { var componentNodes = eles.spawn(); for (;;) { var nodeId = stack.pop(); componentNodes.merge(eles.getElementById(nodeId)); nodes[nodeId].low = nodes[sourceNodeId].index; nodes[nodeId].explored = true; if (nodeId === sourceNodeId) { break; } } var componentEdges = componentNodes.edgesWith(componentNodes); var component = componentNodes.merge(componentEdges); components.push(component); cut = cut.difference(component); } }; eles.forEach(function (ele) { if (ele.isNode()) { var nodeId = ele.id(); if (!(nodeId in nodes)) { stronglyConnectedSearch(nodeId); } } }); return { cut: cut, components: components }; }; var tarjanStronglyConnected$1 = { tarjanStronglyConnected: tarjanStronglyConnected, tsc: tarjanStronglyConnected, tscc: tarjanStronglyConnected, tarjanStronglyConnectedComponents: tarjanStronglyConnected }; var elesfn$j = {}; [elesfn$v, elesfn$u, elesfn$t, elesfn$s, elesfn$r, elesfn$q, elesfn$p, elesfn$o, elesfn$n, elesfn$m, elesfn$l, markovClustering$1, kClustering, hierarchicalClustering$1, affinityPropagation$1, elesfn$k, hopcroftTarjanBiconnected$1, tarjanStronglyConnected$1].forEach(function (props) { extend(elesfn$j, props); }); /*! Embeddable Minimum Strictly-Compliant Promises/A+ 1.1.1 Thenable Copyright (c) 2013-2014 Ralf S. Engelschall (http://engelschall.com) Licensed under The MIT License (http://opensource.org/licenses/MIT) */ /* promise states [Promises/A+ 2.1] */ var STATE_PENDING = 0; /* [Promises/A+ 2.1.1] */ var STATE_FULFILLED = 1; /* [Promises/A+ 2.1.2] */ var STATE_REJECTED = 2; /* [Promises/A+ 2.1.3] */ /* promise object constructor */ var api = function api(executor) { /* optionally support non-constructor/plain-function call */ if (!(this instanceof api)) return new api(executor); /* initialize object */ this.id = 'Thenable/1.0.7'; this.state = STATE_PENDING; /* initial state */ this.fulfillValue = undefined; /* initial value */ /* [Promises/A+ 1.3, 2.1.2.2] */ this.rejectReason = undefined; /* initial reason */ /* [Promises/A+ 1.5, 2.1.3.2] */ this.onFulfilled = []; /* initial handlers */ this.onRejected = []; /* initial handlers */ /* provide optional information-hiding proxy */ this.proxy = { then: this.then.bind(this) }; /* support optional executor function */ if (typeof executor === 'function') executor.call(this, this.fulfill.bind(this), this.reject.bind(this)); }; /* promise API methods */ api.prototype = { /* promise resolving methods */ fulfill: function fulfill(value) { return deliver(this, STATE_FULFILLED, 'fulfillValue', value); }, reject: function reject(value) { return deliver(this, STATE_REJECTED, 'rejectReason', value); }, /* "The then Method" [Promises/A+ 1.1, 1.2, 2.2] */ then: function then(onFulfilled, onRejected) { var curr = this; var next = new api(); /* [Promises/A+ 2.2.7] */ curr.onFulfilled.push(resolver(onFulfilled, next, 'fulfill')); /* [Promises/A+ 2.2.2/2.2.6] */ curr.onRejected.push(resolver(onRejected, next, 'reject')); /* [Promises/A+ 2.2.3/2.2.6] */ execute(curr); return next.proxy; /* [Promises/A+ 2.2.7, 3.3] */ } }; /* deliver an action */ var deliver = function deliver(curr, state, name, value) { if (curr.state === STATE_PENDING) { curr.state = state; /* [Promises/A+ 2.1.2.1, 2.1.3.1] */ curr[name] = value; /* [Promises/A+ 2.1.2.2, 2.1.3.2] */ execute(curr); } return curr; }; /* execute all handlers */ var execute = function execute(curr) { if (curr.state === STATE_FULFILLED) execute_handlers(curr, 'onFulfilled', curr.fulfillValue);else if (curr.state === STATE_REJECTED) execute_handlers(curr, 'onRejected', curr.rejectReason); }; /* execute particular set of handlers */ var execute_handlers = function execute_handlers(curr, name, value) { /* global setImmediate: true */ /* global setTimeout: true */ /* short-circuit processing */ if (curr[name].length === 0) return; /* iterate over all handlers, exactly once */ var handlers = curr[name]; curr[name] = []; /* [Promises/A+ 2.2.2.3, 2.2.3.3] */ var func = function func() { for (var i = 0; i < handlers.length; i++) { handlers[i](value); } /* [Promises/A+ 2.2.5] */ }; /* execute procedure asynchronously */ /* [Promises/A+ 2.2.4, 3.1] */ if (typeof setImmediate === 'function') setImmediate(func);else setTimeout(func, 0); }; /* generate a resolver function */ var resolver = function resolver(cb, next, method) { return function (value) { if (typeof cb !== 'function') /* [Promises/A+ 2.2.1, 2.2.7.3, 2.2.7.4] */ next[method].call(next, value); /* [Promises/A+ 2.2.7.3, 2.2.7.4] */else { var result; try { result = cb(value); } /* [Promises/A+ 2.2.2.1, 2.2.3.1, 2.2.5, 3.2] */ catch (e) { next.reject(e); /* [Promises/A+ 2.2.7.2] */ return; } resolve(next, result); /* [Promises/A+ 2.2.7.1] */ } }; }; /* "Promise Resolution Procedure" */ /* [Promises/A+ 2.3] */ var resolve = function resolve(promise, x) { /* sanity check arguments */ /* [Promises/A+ 2.3.1] */ if (promise === x || promise.proxy === x) { promise.reject(new TypeError('cannot resolve promise with itself')); return; } /* surgically check for a "then" method (mainly to just call the "getter" of "then" only once) */ var then; if (_typeof(x) === 'object' && x !== null || typeof x === 'function') { try { then = x.then; } /* [Promises/A+ 2.3.3.1, 3.5] */ catch (e) { promise.reject(e); /* [Promises/A+ 2.3.3.2] */ return; } } /* handle own Thenables [Promises/A+ 2.3.2] and similar "thenables" [Promises/A+ 2.3.3] */ if (typeof then === 'function') { var resolved = false; try { /* call retrieved "then" method */ /* [Promises/A+ 2.3.3.3] */ then.call(x, /* resolvePromise */ /* [Promises/A+ 2.3.3.3.1] */ function (y) { if (resolved) return; resolved = true; /* [Promises/A+ 2.3.3.3.3] */ if (y === x) /* [Promises/A+ 3.6] */ promise.reject(new TypeError('circular thenable chain'));else resolve(promise, y); }, /* rejectPromise */ /* [Promises/A+ 2.3.3.3.2] */ function (r) { if (resolved) return; resolved = true; /* [Promises/A+ 2.3.3.3.3] */ promise.reject(r); }); } catch (e) { if (!resolved) /* [Promises/A+ 2.3.3.3.3] */ promise.reject(e); /* [Promises/A+ 2.3.3.3.4] */ } return; } /* handle other values */ promise.fulfill(x); /* [Promises/A+ 2.3.4, 2.3.3.4] */ }; // so we always have Promise.all() api.all = function (ps) { return new api(function (resolveAll, rejectAll) { var vals = new Array(ps.length); var doneCount = 0; var fulfill = function fulfill(i, val) { vals[i] = val; doneCount++; if (doneCount === ps.length) { resolveAll(vals); } }; for (var i = 0; i < ps.length; i++) { (function (i) { var p = ps[i]; var isPromise = p != null && p.then != null; if (isPromise) { p.then(function (val) { fulfill(i, val); }, function (err) { rejectAll(err); }); } else { var val = p; fulfill(i, val); } })(i); } }); }; api.resolve = function (val) { return new api(function (resolve, reject) { resolve(val); }); }; api.reject = function (val) { return new api(function (resolve, reject) { reject(val); }); }; var Promise$1 = typeof Promise !== 'undefined' ? Promise : api; // eslint-disable-line no-undef var Animation = function Animation(target, opts, opts2) { var isCore = core(target); var isEle = !isCore; var _p = this._private = extend({ duration: 1000 }, opts, opts2); _p.target = target; _p.style = _p.style || _p.css; _p.started = false; _p.playing = false; _p.hooked = false; _p.applying = false; _p.progress = 0; _p.completes = []; _p.frames = []; if (_p.complete && fn$6(_p.complete)) { _p.completes.push(_p.complete); } if (isEle) { var pos = target.position(); _p.startPosition = _p.startPosition || { x: pos.x, y: pos.y }; _p.startStyle = _p.startStyle || target.cy().style().getAnimationStartStyle(target, _p.style); } if (isCore) { var pan = target.pan(); _p.startPan = { x: pan.x, y: pan.y }; _p.startZoom = target.zoom(); } // for future timeline/animations impl this.length = 1; this[0] = this; }; var anifn = Animation.prototype; extend(anifn, { instanceString: function instanceString() { return 'animation'; }, hook: function hook() { var _p = this._private; if (!_p.hooked) { // add to target's animation queue var q; var tAni = _p.target._private.animation; if (_p.queue) { q = tAni.queue; } else { q = tAni.current; } q.push(this); // add to the animation loop pool if (elementOrCollection(_p.target)) { _p.target.cy().addToAnimationPool(_p.target); } _p.hooked = true; } return this; }, play: function play() { var _p = this._private; // autorewind if (_p.progress === 1) { _p.progress = 0; } _p.playing = true; _p.started = false; // needs to be started by animation loop _p.stopped = false; this.hook(); // the animation loop will start the animation... return this; }, playing: function playing() { return this._private.playing; }, apply: function apply() { var _p = this._private; _p.applying = true; _p.started = false; // needs to be started by animation loop _p.stopped = false; this.hook(); // the animation loop will apply the animation at this progress return this; }, applying: function applying() { return this._private.applying; }, pause: function pause() { var _p = this._private; _p.playing = false; _p.started = false; return this; }, stop: function stop() { var _p = this._private; _p.playing = false; _p.started = false; _p.stopped = true; // to be removed from animation queues return this; }, rewind: function rewind() { return this.progress(0); }, fastforward: function fastforward() { return this.progress(1); }, time: function time(t) { var _p = this._private; if (t === undefined) { return _p.progress * _p.duration; } else { return this.progress(t / _p.duration); } }, progress: function progress(p) { var _p = this._private; var wasPlaying = _p.playing; if (p === undefined) { return _p.progress; } else { if (wasPlaying) { this.pause(); } _p.progress = p; _p.started = false; if (wasPlaying) { this.play(); } } return this; }, completed: function completed() { return this._private.progress === 1; }, reverse: function reverse() { var _p = this._private; var wasPlaying = _p.playing; if (wasPlaying) { this.pause(); } _p.progress = 1 - _p.progress; _p.started = false; var swap = function swap(a, b) { var _pa = _p[a]; if (_pa == null) { return; } _p[a] = _p[b]; _p[b] = _pa; }; swap('zoom', 'startZoom'); swap('pan', 'startPan'); swap('position', 'startPosition'); // swap styles if (_p.style) { for (var i = 0; i < _p.style.length; i++) { var prop = _p.style[i]; var name = prop.name; var startStyleProp = _p.startStyle[name]; _p.startStyle[name] = prop; _p.style[i] = startStyleProp; } } if (wasPlaying) { this.play(); } return this; }, promise: function promise(type) { var _p = this._private; var arr; switch (type) { case 'frame': arr = _p.frames; break; default: case 'complete': case 'completed': arr = _p.completes; } return new Promise$1(function (resolve, reject) { arr.push(function () { resolve(); }); }); } }); anifn.complete = anifn.completed; anifn.run = anifn.play; anifn.running = anifn.playing; var define$3 = { animated: function animated() { return function animatedImpl() { var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var cy = this._private.cy || this; if (!cy.styleEnabled()) { return false; } var ele = all[0]; if (ele) { return ele._private.animation.current.length > 0; } }; }, // animated clearQueue: function clearQueue() { return function clearQueueImpl() { var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var cy = this._private.cy || this; if (!cy.styleEnabled()) { return this; } for (var i = 0; i < all.length; i++) { var ele = all[i]; ele._private.animation.queue = []; } return this; }; }, // clearQueue delay: function delay() { return function delayImpl(time, complete) { var cy = this._private.cy || this; if (!cy.styleEnabled()) { return this; } return this.animate({ delay: time, duration: time, complete: complete }); }; }, // delay delayAnimation: function delayAnimation() { return function delayAnimationImpl(time, complete) { var cy = this._private.cy || this; if (!cy.styleEnabled()) { return this; } return this.animation({ delay: time, duration: time, complete: complete }); }; }, // delay animation: function animation() { return function animationImpl(properties, params) { var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var cy = this._private.cy || this; var isCore = !selfIsArrayLike; var isEles = !isCore; if (!cy.styleEnabled()) { return this; } var style = cy.style(); properties = extend({}, properties, params); var propertiesEmpty = Object.keys(properties).length === 0; if (propertiesEmpty) { return new Animation(all[0], properties); // nothing to animate } if (properties.duration === undefined) { properties.duration = 400; } switch (properties.duration) { case 'slow': properties.duration = 600; break; case 'fast': properties.duration = 200; break; } if (isEles) { properties.style = style.getPropsList(properties.style || properties.css); properties.css = undefined; } if (isEles && properties.renderedPosition != null) { var rpos = properties.renderedPosition; var pan = cy.pan(); var zoom = cy.zoom(); properties.position = renderedToModelPosition(rpos, zoom, pan); } // override pan w/ panBy if set if (isCore && properties.panBy != null) { var panBy = properties.panBy; var cyPan = cy.pan(); properties.pan = { x: cyPan.x + panBy.x, y: cyPan.y + panBy.y }; } // override pan w/ center if set var center = properties.center || properties.centre; if (isCore && center != null) { var centerPan = cy.getCenterPan(center.eles, properties.zoom); if (centerPan != null) { properties.pan = centerPan; } } // override pan & zoom w/ fit if set if (isCore && properties.fit != null) { var fit = properties.fit; var fitVp = cy.getFitViewport(fit.eles || fit.boundingBox, fit.padding); if (fitVp != null) { properties.pan = fitVp.pan; properties.zoom = fitVp.zoom; } } // override zoom (& potentially pan) w/ zoom obj if set if (isCore && plainObject(properties.zoom)) { var vp = cy.getZoomedViewport(properties.zoom); if (vp != null) { if (vp.zoomed) { properties.zoom = vp.zoom; } if (vp.panned) { properties.pan = vp.pan; } } else { properties.zoom = null; // an inavalid zoom (e.g. no delta) gets automatically destroyed } } return new Animation(all[0], properties); }; }, // animate animate: function animate() { return function animateImpl(properties, params) { var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var cy = this._private.cy || this; if (!cy.styleEnabled()) { return this; } if (params) { properties = extend({}, properties, params); } // manually hook and run the animation for (var i = 0; i < all.length; i++) { var ele = all[i]; var queue = ele.animated() && (properties.queue === undefined || properties.queue); var ani = ele.animation(properties, queue ? { queue: true } : undefined); ani.play(); } return this; // chaining }; }, // animate stop: function stop() { return function stopImpl(clearQueue, jumpToEnd) { var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var cy = this._private.cy || this; if (!cy.styleEnabled()) { return this; } for (var i = 0; i < all.length; i++) { var ele = all[i]; var _p = ele._private; var anis = _p.animation.current; for (var j = 0; j < anis.length; j++) { var ani = anis[j]; var ani_p = ani._private; if (jumpToEnd) { // next iteration of the animation loop, the animation // will go straight to the end and be removed ani_p.duration = 0; } } // clear the queue of future animations if (clearQueue) { _p.animation.queue = []; } if (!jumpToEnd) { _p.animation.current = []; } } // we have to notify (the animation loop doesn't do it for us on `stop`) cy.notify('draw'); return this; }; } // stop }; // define /** * Checks if `value` is classified as an `Array` object. * * @static * @memberOf _ * @since 0.1.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is an array, else `false`. * @example * * _.isArray([1, 2, 3]); * // => true * * _.isArray(document.body.children); * // => false * * _.isArray('abc'); * // => false * * _.isArray(_.noop); * // => false */ var isArray = Array.isArray; var isArray_1 = isArray; /** Used to match property names within property paths. */ var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, reIsPlainProp = /^\w*$/; /** * Checks if `value` is a property name and not a property path. * * @private * @param {*} value The value to check. * @param {Object} [object] The object to query keys on. * @returns {boolean} Returns `true` if `value` is a property name, else `false`. */ function isKey(value, object) { if (isArray_1(value)) { return false; } var type = typeof value; if (type == 'number' || type == 'symbol' || type == 'boolean' || value == null || isSymbol_1(value)) { return true; } return reIsPlainProp.test(value) || !reIsDeepProp.test(value) || (object != null && value in Object(object)); } var _isKey = isKey; /** `Object#toString` result references. */ var asyncTag = '[object AsyncFunction]', funcTag = '[object Function]', genTag = '[object GeneratorFunction]', proxyTag = '[object Proxy]'; /** * Checks if `value` is classified as a `Function` object. * * @static * @memberOf _ * @since 0.1.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a function, else `false`. * @example * * _.isFunction(_); * // => true * * _.isFunction(/abc/); * // => false */ function isFunction(value) { if (!isObject_1(value)) { return false; } // The use of `Object#toString` avoids issues with the `typeof` operator // in Safari 9 which returns 'object' for typed arrays and other constructors. var tag = _baseGetTag(value); return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag; } var isFunction_1 = isFunction; /** Used to detect overreaching core-js shims. */ var coreJsData = _root['__core-js_shared__']; var _coreJsData = coreJsData; /** Used to detect methods masquerading as native. */ var maskSrcKey = (function() { var uid = /[^.]+$/.exec(_coreJsData && _coreJsData.keys && _coreJsData.keys.IE_PROTO || ''); return uid ? ('Symbol(src)_1.' + uid) : ''; }()); /** * Checks if `func` has its source masked. * * @private * @param {Function} func The function to check. * @returns {boolean} Returns `true` if `func` is masked, else `false`. */ function isMasked(func) { return !!maskSrcKey && (maskSrcKey in func); } var _isMasked = isMasked; /** Used for built-in method references. */ var funcProto$1 = Function.prototype; /** Used to resolve the decompiled source of functions. */ var funcToString$1 = funcProto$1.toString; /** * Converts `func` to its source code. * * @private * @param {Function} func The function to convert. * @returns {string} Returns the source code. */ function toSource(func) { if (func != null) { try { return funcToString$1.call(func); } catch (e) {} try { return (func + ''); } catch (e) {} } return ''; } var _toSource = toSource; /** * Used to match `RegExp` * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns). */ var reRegExpChar = /[\\^$.*+?()[\]{}|]/g; /** Used to detect host constructors (Safari). */ var reIsHostCtor = /^\[object .+?Constructor\]$/; /** Used for built-in method references. */ var funcProto = Function.prototype, objectProto$3 = Object.prototype; /** Used to resolve the decompiled source of functions. */ var funcToString = funcProto.toString; /** Used to check objects for own properties. */ var hasOwnProperty$3 = objectProto$3.hasOwnProperty; /** Used to detect if a method is native. */ var reIsNative = RegExp('^' + funcToString.call(hasOwnProperty$3).replace(reRegExpChar, '\\$&') .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$' ); /** * The base implementation of `_.isNative` without bad shim checks. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a native function, * else `false`. */ function baseIsNative(value) { if (!isObject_1(value) || _isMasked(value)) { return false; } var pattern = isFunction_1(value) ? reIsNative : reIsHostCtor; return pattern.test(_toSource(value)); } var _baseIsNative = baseIsNative; /** * Gets the value at `key` of `object`. * * @private * @param {Object} [object] The object to query. * @param {string} key The key of the property to get. * @returns {*} Returns the property value. */ function getValue$1(object, key) { return object == null ? undefined : object[key]; } var _getValue = getValue$1; /** * Gets the native function at `key` of `object`. * * @private * @param {Object} object The object to query. * @param {string} key The key of the method to get. * @returns {*} Returns the function if it's native, else `undefined`. */ function getNative(object, key) { var value = _getValue(object, key); return _baseIsNative(value) ? value : undefined; } var _getNative = getNative; /* Built-in method references that are verified to be native. */ var nativeCreate = _getNative(Object, 'create'); var _nativeCreate = nativeCreate; /** * Removes all key-value entries from the hash. * * @private * @name clear * @memberOf Hash */ function hashClear() { this.__data__ = _nativeCreate ? _nativeCreate(null) : {}; this.size = 0; } var _hashClear = hashClear; /** * Removes `key` and its value from the hash. * * @private * @name delete * @memberOf Hash * @param {Object} hash The hash to modify. * @param {string} key The key of the value to remove. * @returns {boolean} Returns `true` if the entry was removed, else `false`. */ function hashDelete(key) { var result = this.has(key) && delete this.__data__[key]; this.size -= result ? 1 : 0; return result; } var _hashDelete = hashDelete; /** Used to stand-in for `undefined` hash values. */ var HASH_UNDEFINED$1 = '__lodash_hash_undefined__'; /** Used for built-in method references. */ var objectProto$2 = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty$2 = objectProto$2.hasOwnProperty; /** * Gets the hash value for `key`. * * @private * @name get * @memberOf Hash * @param {string} key The key of the value to get. * @returns {*} Returns the entry value. */ function hashGet(key) { var data = this.__data__; if (_nativeCreate) { var result = data[key]; return result === HASH_UNDEFINED$1 ? undefined : result; } return hasOwnProperty$2.call(data, key) ? data[key] : undefined; } var _hashGet = hashGet; /** Used for built-in method references. */ var objectProto$1 = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty$1 = objectProto$1.hasOwnProperty; /** * Checks if a hash value for `key` exists. * * @private * @name has * @memberOf Hash * @param {string} key The key of the entry to check. * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. */ function hashHas(key) { var data = this.__data__; return _nativeCreate ? (data[key] !== undefined) : hasOwnProperty$1.call(data, key); } var _hashHas = hashHas; /** Used to stand-in for `undefined` hash values. */ var HASH_UNDEFINED = '__lodash_hash_undefined__'; /** * Sets the hash `key` to `value`. * * @private * @name set * @memberOf Hash * @param {string} key The key of the value to set. * @param {*} value The value to set. * @returns {Object} Returns the hash instance. */ function hashSet(key, value) { var data = this.__data__; this.size += this.has(key) ? 0 : 1; data[key] = (_nativeCreate && value === undefined) ? HASH_UNDEFINED : value; return this; } var _hashSet = hashSet; /** * Creates a hash object. * * @private * @constructor * @param {Array} [entries] The key-value pairs to cache. */ function Hash(entries) { var index = -1, length = entries == null ? 0 : entries.length; this.clear(); while (++index < length) { var entry = entries[index]; this.set(entry[0], entry[1]); } } // Add methods to `Hash`. Hash.prototype.clear = _hashClear; Hash.prototype['delete'] = _hashDelete; Hash.prototype.get = _hashGet; Hash.prototype.has = _hashHas; Hash.prototype.set = _hashSet; var _Hash = Hash; /** * Removes all key-value entries from the list cache. * * @private * @name clear * @memberOf ListCache */ function listCacheClear() { this.__data__ = []; this.size = 0; } var _listCacheClear = listCacheClear; /** * Performs a * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) * comparison between two values to determine if they are equivalent. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to compare. * @param {*} other The other value to compare. * @returns {boolean} Returns `true` if the values are equivalent, else `false`. * @example * * var object = { 'a': 1 }; * var other = { 'a': 1 }; * * _.eq(object, object); * // => true * * _.eq(object, other); * // => false * * _.eq('a', 'a'); * // => true * * _.eq('a', Object('a')); * // => false * * _.eq(NaN, NaN); * // => true */ function eq(value, other) { return value === other || (value !== value && other !== other); } var eq_1 = eq; /** * Gets the index at which the `key` is found in `array` of key-value pairs. * * @private * @param {Array} array The array to inspect. * @param {*} key The key to search for. * @returns {number} Returns the index of the matched value, else `-1`. */ function assocIndexOf(array, key) { var length = array.length; while (length--) { if (eq_1(array[length][0], key)) { return length; } } return -1; } var _assocIndexOf = assocIndexOf; /** Used for built-in method references. */ var arrayProto = Array.prototype; /** Built-in value references. */ var splice = arrayProto.splice; /** * Removes `key` and its value from the list cache. * * @private * @name delete * @memberOf ListCache * @param {string} key The key of the value to remove. * @returns {boolean} Returns `true` if the entry was removed, else `false`. */ function listCacheDelete(key) { var data = this.__data__, index = _assocIndexOf(data, key); if (index < 0) { return false; } var lastIndex = data.length - 1; if (index == lastIndex) { data.pop(); } else { splice.call(data, index, 1); } --this.size; return true; } var _listCacheDelete = listCacheDelete; /** * Gets the list cache value for `key`. * * @private * @name get * @memberOf ListCache * @param {string} key The key of the value to get. * @returns {*} Returns the entry value. */ function listCacheGet(key) { var data = this.__data__, index = _assocIndexOf(data, key); return index < 0 ? undefined : data[index][1]; } var _listCacheGet = listCacheGet; /** * Checks if a list cache value for `key` exists. * * @private * @name has * @memberOf ListCache * @param {string} key The key of the entry to check. * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. */ function listCacheHas(key) { return _assocIndexOf(this.__data__, key) > -1; } var _listCacheHas = listCacheHas; /** * Sets the list cache `key` to `value`. * * @private * @name set * @memberOf ListCache * @param {string} key The key of the value to set. * @param {*} value The value to set. * @returns {Object} Returns the list cache instance. */ function listCacheSet(key, value) { var data = this.__data__, index = _assocIndexOf(data, key); if (index < 0) { ++this.size; data.push([key, value]); } else { data[index][1] = value; } return this; } var _listCacheSet = listCacheSet; /** * Creates an list cache object. * * @private * @constructor * @param {Array} [entries] The key-value pairs to cache. */ function ListCache(entries) { var index = -1, length = entries == null ? 0 : entries.length; this.clear(); while (++index < length) { var entry = entries[index]; this.set(entry[0], entry[1]); } } // Add methods to `ListCache`. ListCache.prototype.clear = _listCacheClear; ListCache.prototype['delete'] = _listCacheDelete; ListCache.prototype.get = _listCacheGet; ListCache.prototype.has = _listCacheHas; ListCache.prototype.set = _listCacheSet; var _ListCache = ListCache; /* Built-in method references that are verified to be native. */ var Map$1 = _getNative(_root, 'Map'); var _Map = Map$1; /** * Removes all key-value entries from the map. * * @private * @name clear * @memberOf MapCache */ function mapCacheClear() { this.size = 0; this.__data__ = { 'hash': new _Hash, 'map': new (_Map || _ListCache), 'string': new _Hash }; } var _mapCacheClear = mapCacheClear; /** * Checks if `value` is suitable for use as unique object key. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is suitable, else `false`. */ function isKeyable(value) { var type = typeof value; return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean') ? (value !== '__proto__') : (value === null); } var _isKeyable = isKeyable; /** * Gets the data for `map`. * * @private * @param {Object} map The map to query. * @param {string} key The reference key. * @returns {*} Returns the map data. */ function getMapData(map, key) { var data = map.__data__; return _isKeyable(key) ? data[typeof key == 'string' ? 'string' : 'hash'] : data.map; } var _getMapData = getMapData; /** * Removes `key` and its value from the map. * * @private * @name delete * @memberOf MapCache * @param {string} key The key of the value to remove. * @returns {boolean} Returns `true` if the entry was removed, else `false`. */ function mapCacheDelete(key) { var result = _getMapData(this, key)['delete'](key); this.size -= result ? 1 : 0; return result; } var _mapCacheDelete = mapCacheDelete; /** * Gets the map value for `key`. * * @private * @name get * @memberOf MapCache * @param {string} key The key of the value to get. * @returns {*} Returns the entry value. */ function mapCacheGet(key) { return _getMapData(this, key).get(key); } var _mapCacheGet = mapCacheGet; /** * Checks if a map value for `key` exists. * * @private * @name has * @memberOf MapCache * @param {string} key The key of the entry to check. * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. */ function mapCacheHas(key) { return _getMapData(this, key).has(key); } var _mapCacheHas = mapCacheHas; /** * Sets the map `key` to `value`. * * @private * @name set * @memberOf MapCache * @param {string} key The key of the value to set. * @param {*} value The value to set. * @returns {Object} Returns the map cache instance. */ function mapCacheSet(key, value) { var data = _getMapData(this, key), size = data.size; data.set(key, value); this.size += data.size == size ? 0 : 1; return this; } var _mapCacheSet = mapCacheSet; /** * Creates a map cache object to store key-value pairs. * * @private * @constructor * @param {Array} [entries] The key-value pairs to cache. */ function MapCache(entries) { var index = -1, length = entries == null ? 0 : entries.length; this.clear(); while (++index < length) { var entry = entries[index]; this.set(entry[0], entry[1]); } } // Add methods to `MapCache`. MapCache.prototype.clear = _mapCacheClear; MapCache.prototype['delete'] = _mapCacheDelete; MapCache.prototype.get = _mapCacheGet; MapCache.prototype.has = _mapCacheHas; MapCache.prototype.set = _mapCacheSet; var _MapCache = MapCache; /** Error message constants. */ var FUNC_ERROR_TEXT = 'Expected a function'; /** * Creates a function that memoizes the result of `func`. If `resolver` is * provided, it determines the cache key for storing the result based on the * arguments provided to the memoized function. By default, the first argument * provided to the memoized function is used as the map cache key. The `func` * is invoked with the `this` binding of the memoized function. * * **Note:** The cache is exposed as the `cache` property on the memoized * function. Its creation may be customized by replacing the `_.memoize.Cache` * constructor with one whose instances implement the * [`Map`](http://ecma-international.org/ecma-262/7.0/#sec-properties-of-the-map-prototype-object) * method interface of `clear`, `delete`, `get`, `has`, and `set`. * * @static * @memberOf _ * @since 0.1.0 * @category Function * @param {Function} func The function to have its output memoized. * @param {Function} [resolver] The function to resolve the cache key. * @returns {Function} Returns the new memoized function. * @example * * var object = { 'a': 1, 'b': 2 }; * var other = { 'c': 3, 'd': 4 }; * * var values = _.memoize(_.values); * values(object); * // => [1, 2] * * values(other); * // => [3, 4] * * object.a = 2; * values(object); * // => [1, 2] * * // Modify the result cache. * values.cache.set(object, ['a', 'b']); * values(object); * // => ['a', 'b'] * * // Replace `_.memoize.Cache`. * _.memoize.Cache = WeakMap; */ function memoize(func, resolver) { if (typeof func != 'function' || (resolver != null && typeof resolver != 'function')) { throw new TypeError(FUNC_ERROR_TEXT); } var memoized = function() { var args = arguments, key = resolver ? resolver.apply(this, args) : args[0], cache = memoized.cache; if (cache.has(key)) { return cache.get(key); } var result = func.apply(this, args); memoized.cache = cache.set(key, result) || cache; return result; }; memoized.cache = new (memoize.Cache || _MapCache); return memoized; } // Expose `MapCache`. memoize.Cache = _MapCache; var memoize_1 = memoize; /** Used as the maximum memoize cache size. */ var MAX_MEMOIZE_SIZE = 500; /** * A specialized version of `_.memoize` which clears the memoized function's * cache when it exceeds `MAX_MEMOIZE_SIZE`. * * @private * @param {Function} func The function to have its output memoized. * @returns {Function} Returns the new memoized function. */ function memoizeCapped(func) { var result = memoize_1(func, function(key) { if (cache.size === MAX_MEMOIZE_SIZE) { cache.clear(); } return key; }); var cache = result.cache; return result; } var _memoizeCapped = memoizeCapped; /** Used to match property names within property paths. */ var rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g; /** Used to match backslashes in property paths. */ var reEscapeChar = /\\(\\)?/g; /** * Converts `string` to a property path array. * * @private * @param {string} string The string to convert. * @returns {Array} Returns the property path array. */ var stringToPath = _memoizeCapped(function(string) { var result = []; if (string.charCodeAt(0) === 46 /* . */) { result.push(''); } string.replace(rePropName, function(match, number, quote, subString) { result.push(quote ? subString.replace(reEscapeChar, '$1') : (number || match)); }); return result; }); var _stringToPath = stringToPath; /** * A specialized version of `_.map` for arrays without support for iteratee * shorthands. * * @private * @param {Array} [array] The array to iterate over. * @param {Function} iteratee The function invoked per iteration. * @returns {Array} Returns the new mapped array. */ function arrayMap(array, iteratee) { var index = -1, length = array == null ? 0 : array.length, result = Array(length); while (++index < length) { result[index] = iteratee(array[index], index, array); } return result; } var _arrayMap = arrayMap; /** Used as references for various `Number` constants. */ var INFINITY$1 = 1 / 0; /** Used to convert symbols to primitives and strings. */ var symbolProto = _Symbol ? _Symbol.prototype : undefined, symbolToString = symbolProto ? symbolProto.toString : undefined; /** * The base implementation of `_.toString` which doesn't convert nullish * values to empty strings. * * @private * @param {*} value The value to process. * @returns {string} Returns the string. */ function baseToString(value) { // Exit early for strings to avoid a performance hit in some environments. if (typeof value == 'string') { return value; } if (isArray_1(value)) { // Recursively convert values (susceptible to call stack limits). return _arrayMap(value, baseToString) + ''; } if (isSymbol_1(value)) { return symbolToString ? symbolToString.call(value) : ''; } var result = (value + ''); return (result == '0' && (1 / value) == -INFINITY$1) ? '-0' : result; } var _baseToString = baseToString; /** * Converts `value` to a string. An empty string is returned for `null` * and `undefined` values. The sign of `-0` is preserved. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to convert. * @returns {string} Returns the converted string. * @example * * _.toString(null); * // => '' * * _.toString(-0); * // => '-0' * * _.toString([1, 2, 3]); * // => '1,2,3' */ function toString$1(value) { return value == null ? '' : _baseToString(value); } var toString_1 = toString$1; /** * Casts `value` to a path array if it's not one. * * @private * @param {*} value The value to inspect. * @param {Object} [object] The object to query keys on. * @returns {Array} Returns the cast property path array. */ function castPath(value, object) { if (isArray_1(value)) { return value; } return _isKey(value, object) ? [value] : _stringToPath(toString_1(value)); } var _castPath = castPath; /** Used as references for various `Number` constants. */ var INFINITY = 1 / 0; /** * Converts `value` to a string key if it's not a string or symbol. * * @private * @param {*} value The value to inspect. * @returns {string|symbol} Returns the key. */ function toKey(value) { if (typeof value == 'string' || isSymbol_1(value)) { return value; } var result = (value + ''); return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result; } var _toKey = toKey; /** * The base implementation of `_.get` without support for default values. * * @private * @param {Object} object The object to query. * @param {Array|string} path The path of the property to get. * @returns {*} Returns the resolved value. */ function baseGet(object, path) { path = _castPath(path, object); var index = 0, length = path.length; while (object != null && index < length) { object = object[_toKey(path[index++])]; } return (index && index == length) ? object : undefined; } var _baseGet = baseGet; /** * Gets the value at `path` of `object`. If the resolved value is * `undefined`, the `defaultValue` is returned in its place. * * @static * @memberOf _ * @since 3.7.0 * @category Object * @param {Object} object The object to query. * @param {Array|string} path The path of the property to get. * @param {*} [defaultValue] The value returned for `undefined` resolved values. * @returns {*} Returns the resolved value. * @example * * var object = { 'a': [{ 'b': { 'c': 3 } }] }; * * _.get(object, 'a[0].b.c'); * // => 3 * * _.get(object, ['a', '0', 'b', 'c']); * // => 3 * * _.get(object, 'a.b.c', 'default'); * // => 'default' */ function get(object, path, defaultValue) { var result = object == null ? undefined : _baseGet(object, path); return result === undefined ? defaultValue : result; } var get_1 = get; var defineProperty = (function() { try { var func = _getNative(Object, 'defineProperty'); func({}, '', {}); return func; } catch (e) {} }()); var _defineProperty = defineProperty; /** * The base implementation of `assignValue` and `assignMergeValue` without * value checks. * * @private * @param {Object} object The object to modify. * @param {string} key The key of the property to assign. * @param {*} value The value to assign. */ function baseAssignValue(object, key, value) { if (key == '__proto__' && _defineProperty) { _defineProperty(object, key, { 'configurable': true, 'enumerable': true, 'value': value, 'writable': true }); } else { object[key] = value; } } var _baseAssignValue = baseAssignValue; /** Used for built-in method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** * Assigns `value` to `key` of `object` if the existing value is not equivalent * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) * for equality comparisons. * * @private * @param {Object} object The object to modify. * @param {string} key The key of the property to assign. * @param {*} value The value to assign. */ function assignValue(object, key, value) { var objValue = object[key]; if (!(hasOwnProperty.call(object, key) && eq_1(objValue, value)) || (value === undefined && !(key in object))) { _baseAssignValue(object, key, value); } } var _assignValue = assignValue; /** Used as references for various `Number` constants. */ var MAX_SAFE_INTEGER = 9007199254740991; /** Used to detect unsigned integer values. */ var reIsUint = /^(?:0|[1-9]\d*)$/; /** * Checks if `value` is a valid array-like index. * * @private * @param {*} value The value to check. * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index. * @returns {boolean} Returns `true` if `value` is a valid index, else `false`. */ function isIndex(value, length) { var type = typeof value; length = length == null ? MAX_SAFE_INTEGER : length; return !!length && (type == 'number' || (type != 'symbol' && reIsUint.test(value))) && (value > -1 && value % 1 == 0 && value < length); } var _isIndex = isIndex; /** * The base implementation of `_.set`. * * @private * @param {Object} object The object to modify. * @param {Array|string} path The path of the property to set. * @param {*} value The value to set. * @param {Function} [customizer] The function to customize path creation. * @returns {Object} Returns `object`. */ function baseSet(object, path, value, customizer) { if (!isObject_1(object)) { return object; } path = _castPath(path, object); var index = -1, length = path.length, lastIndex = length - 1, nested = object; while (nested != null && ++index < length) { var key = _toKey(path[index]), newValue = value; if (key === '__proto__' || key === 'constructor' || key === 'prototype') { return object; } if (index != lastIndex) { var objValue = nested[key]; newValue = customizer ? customizer(objValue, key, nested) : undefined; if (newValue === undefined) { newValue = isObject_1(objValue) ? objValue : (_isIndex(path[index + 1]) ? [] : {}); } } _assignValue(nested, key, newValue); nested = nested[key]; } return object; } var _baseSet = baseSet; /** * Sets the value at `path` of `object`. If a portion of `path` doesn't exist, * it's created. Arrays are created for missing index properties while objects * are created for all other missing properties. Use `_.setWith` to customize * `path` creation. * * **Note:** This method mutates `object`. * * @static * @memberOf _ * @since 3.7.0 * @category Object * @param {Object} object The object to modify. * @param {Array|string} path The path of the property to set. * @param {*} value The value to set. * @returns {Object} Returns `object`. * @example * * var object = { 'a': [{ 'b': { 'c': 3 } }] }; * * _.set(object, 'a[0].b.c', 4); * console.log(object.a[0].b.c); * // => 4 * * _.set(object, ['x', '0', 'y', 'z'], 5); * console.log(object.x[0].y.z); * // => 5 */ function set(object, path, value) { return object == null ? object : _baseSet(object, path, value); } var set_1 = set; /** * Copies the values of `source` to `array`. * * @private * @param {Array} source The array to copy values from. * @param {Array} [array=[]] The array to copy values to. * @returns {Array} Returns `array`. */ function copyArray(source, array) { var index = -1, length = source.length; array || (array = Array(length)); while (++index < length) { array[index] = source[index]; } return array; } var _copyArray = copyArray; /** * Converts `value` to a property path array. * * @static * @memberOf _ * @since 4.0.0 * @category Util * @param {*} value The value to convert. * @returns {Array} Returns the new property path array. * @example * * _.toPath('a.b.c'); * // => ['a', 'b', 'c'] * * _.toPath('a[0].b.c'); * // => ['a', '0', 'b', 'c'] */ function toPath(value) { if (isArray_1(value)) { return _arrayMap(value, _toKey); } return isSymbol_1(value) ? [value] : _copyArray(_stringToPath(toString_1(value))); } var toPath_1 = toPath; var define$2 = { // access data field data: function data(params) { var defaults = { field: 'data', bindingEvent: 'data', allowBinding: false, allowSetting: false, allowGetting: false, settingEvent: 'data', settingTriggersEvent: false, triggerFnName: 'trigger', immutableKeys: {}, // key => true if immutable updateStyle: false, beforeGet: function beforeGet(self) {}, beforeSet: function beforeSet(self, obj) {}, onSet: function onSet(self) {}, canSet: function canSet(self) { return true; } }; params = extend({}, defaults, params); return function dataImpl(name, value) { var p = params; var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var single = selfIsArrayLike ? self[0] : self; // .data('foo', ...) if (string(name)) { // set or get property var isPathLike = name.indexOf('.') !== -1; // there might be a normal field with a dot var path = isPathLike && toPath_1(name); // .data('foo') if (p.allowGetting && value === undefined) { // get var ret; if (single) { p.beforeGet(single); // check if it's path and a field with the same name doesn't exist if (path && single._private[p.field][name] === undefined) { ret = get_1(single._private[p.field], path); } else { ret = single._private[p.field][name]; } } return ret; // .data('foo', 'bar') } else if (p.allowSetting && value !== undefined) { // set var valid = !p.immutableKeys[name]; if (valid) { var change = _defineProperty$1({}, name, value); p.beforeSet(self, change); for (var i = 0, l = all.length; i < l; i++) { var ele = all[i]; if (p.canSet(ele)) { if (path && single._private[p.field][name] === undefined) { set_1(ele._private[p.field], path, value); } else { ele._private[p.field][name] = value; } } } // update mappers if asked if (p.updateStyle) { self.updateStyle(); } // call onSet callback p.onSet(self); if (p.settingTriggersEvent) { self[p.triggerFnName](p.settingEvent); } } } // .data({ 'foo': 'bar' }) } else if (p.allowSetting && plainObject(name)) { // extend var obj = name; var k, v; var keys = Object.keys(obj); p.beforeSet(self, obj); for (var _i = 0; _i < keys.length; _i++) { k = keys[_i]; v = obj[k]; var _valid = !p.immutableKeys[k]; if (_valid) { for (var j = 0; j < all.length; j++) { var _ele = all[j]; if (p.canSet(_ele)) { _ele._private[p.field][k] = v; } } } } // update mappers if asked if (p.updateStyle) { self.updateStyle(); } // call onSet callback p.onSet(self); if (p.settingTriggersEvent) { self[p.triggerFnName](p.settingEvent); } // .data(function(){ ... }) } else if (p.allowBinding && fn$6(name)) { // bind to event var fn = name; self.on(p.bindingEvent, fn); // .data() } else if (p.allowGetting && name === undefined) { // get whole object var _ret; if (single) { p.beforeGet(single); _ret = single._private[p.field]; } return _ret; } return self; // maintain chainability }; // function }, // data // remove data field removeData: function removeData(params) { var defaults = { field: 'data', event: 'data', triggerFnName: 'trigger', triggerEvent: false, immutableKeys: {} // key => true if immutable }; params = extend({}, defaults, params); return function removeDataImpl(names) { var p = params; var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like // .removeData('foo bar') if (string(names)) { // then get the list of keys, and delete them var keys = names.split(/\s+/); var l = keys.length; for (var i = 0; i < l; i++) { // delete each non-empty key var key = keys[i]; if (emptyString(key)) { continue; } var valid = !p.immutableKeys[key]; // not valid if immutable if (valid) { for (var i_a = 0, l_a = all.length; i_a < l_a; i_a++) { all[i_a]._private[p.field][key] = undefined; } } } if (p.triggerEvent) { self[p.triggerFnName](p.event); } // .removeData() } else if (names === undefined) { // then delete all keys for (var _i_a = 0, _l_a = all.length; _i_a < _l_a; _i_a++) { var _privateFields = all[_i_a]._private[p.field]; var _keys = Object.keys(_privateFields); for (var _i2 = 0; _i2 < _keys.length; _i2++) { var _key = _keys[_i2]; var validKeyToDelete = !p.immutableKeys[_key]; if (validKeyToDelete) { _privateFields[_key] = undefined; } } } if (p.triggerEvent) { self[p.triggerFnName](p.event); } } return self; // maintain chaining }; // function } // removeData }; // define var define$1 = { eventAliasesOn: function eventAliasesOn(proto) { var p = proto; p.addListener = p.listen = p.bind = p.on; p.unlisten = p.unbind = p.off = p.removeListener; p.trigger = p.emit; // this is just a wrapper alias of .on() p.pon = p.promiseOn = function (events, selector) { var self = this; var args = Array.prototype.slice.call(arguments, 0); return new Promise$1(function (resolve, reject) { var callback = function callback(e) { self.off.apply(self, offArgs); resolve(e); }; var onArgs = args.concat([callback]); var offArgs = onArgs.concat([]); self.on.apply(self, onArgs); }); }; } }; // define // use this module to cherry pick functions into your prototype var define = {}; [define$3, define$2, define$1].forEach(function (m) { extend(define, m); }); var elesfn$i = { animate: define.animate(), animation: define.animation(), animated: define.animated(), clearQueue: define.clearQueue(), delay: define.delay(), delayAnimation: define.delayAnimation(), stop: define.stop() }; var elesfn$h = { classes: function classes(_classes) { var self = this; if (_classes === undefined) { var ret = []; self[0]._private.classes.forEach(function (cls) { return ret.push(cls); }); return ret; } else if (!array(_classes)) { // extract classes from string _classes = (_classes || '').match(/\S+/g) || []; } var changed = []; var classesSet = new Set$1(_classes); // check and update each ele for (var j = 0; j < self.length; j++) { var ele = self[j]; var _p = ele._private; var eleClasses = _p.classes; var changedEle = false; // check if ele has all of the passed classes for (var i = 0; i < _classes.length; i++) { var cls = _classes[i]; var eleHasClass = eleClasses.has(cls); if (!eleHasClass) { changedEle = true; break; } } // check if ele has classes outside of those passed if (!changedEle) { changedEle = eleClasses.size !== _classes.length; } if (changedEle) { _p.classes = classesSet; changed.push(ele); } } // trigger update style on those eles that had class changes if (changed.length > 0) { this.spawn(changed).updateStyle().emit('class'); } return self; }, addClass: function addClass(classes) { return this.toggleClass(classes, true); }, hasClass: function hasClass(className) { var ele = this[0]; return ele != null && ele._private.classes.has(className); }, toggleClass: function toggleClass(classes, toggle) { if (!array(classes)) { // extract classes from string classes = classes.match(/\S+/g) || []; } var self = this; var toggleUndefd = toggle === undefined; var changed = []; // eles who had classes changed for (var i = 0, il = self.length; i < il; i++) { var ele = self[i]; var eleClasses = ele._private.classes; var changedEle = false; for (var j = 0; j < classes.length; j++) { var cls = classes[j]; var hasClass = eleClasses.has(cls); var changedNow = false; if (toggle || toggleUndefd && !hasClass) { eleClasses.add(cls); changedNow = true; } else if (!toggle || toggleUndefd && hasClass) { eleClasses["delete"](cls); changedNow = true; } if (!changedEle && changedNow) { changed.push(ele); changedEle = true; } } // for j classes } // for i eles // trigger update style on those eles that had class changes if (changed.length > 0) { this.spawn(changed).updateStyle().emit('class'); } return self; }, removeClass: function removeClass(classes) { return this.toggleClass(classes, false); }, flashClass: function flashClass(classes, duration) { var self = this; if (duration == null) { duration = 250; } else if (duration === 0) { return self; // nothing to do really } self.addClass(classes); setTimeout(function () { self.removeClass(classes); }, duration); return self; } }; elesfn$h.className = elesfn$h.classNames = elesfn$h.classes; // tokens in the query language var tokens = { metaChar: '[\\!\\"\\#\\$\\%\\&\\\'\\(\\)\\*\\+\\,\\.\\/\\:\\;\\<\\=\\>\\?\\@\\[\\]\\^\\`\\{\\|\\}\\~]', // chars we need to escape in let names, etc comparatorOp: '=|\\!=|>|>=|<|<=|\\$=|\\^=|\\*=', // binary comparison op (used in data selectors) boolOp: '\\?|\\!|\\^', // boolean (unary) operators (used in data selectors) string: '"(?:\\\\"|[^"])*"' + '|' + "'(?:\\\\'|[^'])*'", // string literals (used in data selectors) -- doublequotes | singlequotes number: number, // number literal (used in data selectors) --- e.g. 0.1234, 1234, 12e123 meta: 'degree|indegree|outdegree', // allowed metadata fields (i.e. allowed functions to use from Collection) separator: '\\s*,\\s*', // queries are separated by commas, e.g. edge[foo = 'bar'], node.someClass descendant: '\\s+', child: '\\s+>\\s+', subject: '\\$', group: 'node|edge|\\*', directedEdge: '\\s+->\\s+', undirectedEdge: '\\s+<->\\s+' }; tokens.variable = '(?:[\\w-.]|(?:\\\\' + tokens.metaChar + '))+'; // a variable name can have letters, numbers, dashes, and periods tokens.className = '(?:[\\w-]|(?:\\\\' + tokens.metaChar + '))+'; // a class name has the same rules as a variable except it can't have a '.' in the name tokens.value = tokens.string + '|' + tokens.number; // a value literal, either a string or number tokens.id = tokens.variable; // an element id (follows variable conventions) (function () { var ops, op, i; // add @ variants to comparatorOp ops = tokens.comparatorOp.split('|'); for (i = 0; i < ops.length; i++) { op = ops[i]; tokens.comparatorOp += '|@' + op; } // add ! variants to comparatorOp ops = tokens.comparatorOp.split('|'); for (i = 0; i < ops.length; i++) { op = ops[i]; if (op.indexOf('!') >= 0) { continue; } // skip ops that explicitly contain ! if (op === '=') { continue; } // skip = b/c != is explicitly defined tokens.comparatorOp += '|\\!' + op; } })(); /** * Make a new query object * * @prop type {Type} The type enum (int) of the query * @prop checks List of checks to make against an ele to test for a match */ var newQuery = function newQuery() { return { checks: [] }; }; /** * A check type enum-like object. Uses integer values for fast match() lookup. * The ordering does not matter as long as the ints are unique. */ var Type = { /** E.g. node */ GROUP: 0, /** A collection of elements */ COLLECTION: 1, /** A filter(ele) function */ FILTER: 2, /** E.g. [foo > 1] */ DATA_COMPARE: 3, /** E.g. [foo] */ DATA_EXIST: 4, /** E.g. [?foo] */ DATA_BOOL: 5, /** E.g. [[degree > 2]] */ META_COMPARE: 6, /** E.g. :selected */ STATE: 7, /** E.g. #foo */ ID: 8, /** E.g. .foo */ CLASS: 9, /** E.g. #foo <-> #bar */ UNDIRECTED_EDGE: 10, /** E.g. #foo -> #bar */ DIRECTED_EDGE: 11, /** E.g. $#foo -> #bar */ NODE_SOURCE: 12, /** E.g. #foo -> $#bar */ NODE_TARGET: 13, /** E.g. $#foo <-> #bar */ NODE_NEIGHBOR: 14, /** E.g. #foo > #bar */ CHILD: 15, /** E.g. #foo #bar */ DESCENDANT: 16, /** E.g. $#foo > #bar */ PARENT: 17, /** E.g. $#foo #bar */ ANCESTOR: 18, /** E.g. #foo > $bar > #baz */ COMPOUND_SPLIT: 19, /** Always matches, useful placeholder for subject in `COMPOUND_SPLIT` */ TRUE: 20 }; var stateSelectors = [{ selector: ':selected', matches: function matches(ele) { return ele.selected(); } }, { selector: ':unselected', matches: function matches(ele) { return !ele.selected(); } }, { selector: ':selectable', matches: function matches(ele) { return ele.selectable(); } }, { selector: ':unselectable', matches: function matches(ele) { return !ele.selectable(); } }, { selector: ':locked', matches: function matches(ele) { return ele.locked(); } }, { selector: ':unlocked', matches: function matches(ele) { return !ele.locked(); } }, { selector: ':visible', matches: function matches(ele) { return ele.visible(); } }, { selector: ':hidden', matches: function matches(ele) { return !ele.visible(); } }, { selector: ':transparent', matches: function matches(ele) { return ele.transparent(); } }, { selector: ':grabbed', matches: function matches(ele) { return ele.grabbed(); } }, { selector: ':free', matches: function matches(ele) { return !ele.grabbed(); } }, { selector: ':removed', matches: function matches(ele) { return ele.removed(); } }, { selector: ':inside', matches: function matches(ele) { return !ele.removed(); } }, { selector: ':grabbable', matches: function matches(ele) { return ele.grabbable(); } }, { selector: ':ungrabbable', matches: function matches(ele) { return !ele.grabbable(); } }, { selector: ':animated', matches: function matches(ele) { return ele.animated(); } }, { selector: ':unanimated', matches: function matches(ele) { return !ele.animated(); } }, { selector: ':parent', matches: function matches(ele) { return ele.isParent(); } }, { selector: ':childless', matches: function matches(ele) { return ele.isChildless(); } }, { selector: ':child', matches: function matches(ele) { return ele.isChild(); } }, { selector: ':orphan', matches: function matches(ele) { return ele.isOrphan(); } }, { selector: ':nonorphan', matches: function matches(ele) { return ele.isChild(); } }, { selector: ':compound', matches: function matches(ele) { if (ele.isNode()) { return ele.isParent(); } else { return ele.source().isParent() || ele.target().isParent(); } } }, { selector: ':loop', matches: function matches(ele) { return ele.isLoop(); } }, { selector: ':simple', matches: function matches(ele) { return ele.isSimple(); } }, { selector: ':active', matches: function matches(ele) { return ele.active(); } }, { selector: ':inactive', matches: function matches(ele) { return !ele.active(); } }, { selector: ':backgrounding', matches: function matches(ele) { return ele.backgrounding(); } }, { selector: ':nonbackgrounding', matches: function matches(ele) { return !ele.backgrounding(); } }].sort(function (a, b) { // n.b. selectors that are starting substrings of others must have the longer ones first return descending(a.selector, b.selector); }); var lookup = function () { var selToFn = {}; var s; for (var i = 0; i < stateSelectors.length; i++) { s = stateSelectors[i]; selToFn[s.selector] = s.matches; } return selToFn; }(); var stateSelectorMatches = function stateSelectorMatches(sel, ele) { return lookup[sel](ele); }; var stateSelectorRegex = '(' + stateSelectors.map(function (s) { return s.selector; }).join('|') + ')'; // when a token like a variable has escaped meta characters, we need to clean the backslashes out // so that values get compared properly in Selector.filter() var cleanMetaChars = function cleanMetaChars(str) { return str.replace(new RegExp('\\\\(' + tokens.metaChar + ')', 'g'), function (match, $1) { return $1; }); }; var replaceLastQuery = function replaceLastQuery(selector, examiningQuery, replacementQuery) { selector[selector.length - 1] = replacementQuery; }; // NOTE: add new expression syntax here to have it recognised by the parser; // - a query contains all adjacent (i.e. no separator in between) expressions; // - the current query is stored in selector[i] // - you need to check the query objects in match() for it actually filter properly, but that's pretty straight forward var exprs = [{ name: 'group', // just used for identifying when debugging query: true, regex: '(' + tokens.group + ')', populate: function populate(selector, query, _ref) { var _ref2 = _slicedToArray(_ref, 1), group = _ref2[0]; query.checks.push({ type: Type.GROUP, value: group === '*' ? group : group + 's' }); } }, { name: 'state', query: true, regex: stateSelectorRegex, populate: function populate(selector, query, _ref3) { var _ref4 = _slicedToArray(_ref3, 1), state = _ref4[0]; query.checks.push({ type: Type.STATE, value: state }); } }, { name: 'id', query: true, regex: '\\#(' + tokens.id + ')', populate: function populate(selector, query, _ref5) { var _ref6 = _slicedToArray(_ref5, 1), id = _ref6[0]; query.checks.push({ type: Type.ID, value: cleanMetaChars(id) }); } }, { name: 'className', query: true, regex: '\\.(' + tokens.className + ')', populate: function populate(selector, query, _ref7) { var _ref8 = _slicedToArray(_ref7, 1), className = _ref8[0]; query.checks.push({ type: Type.CLASS, value: cleanMetaChars(className) }); } }, { name: 'dataExists', query: true, regex: '\\[\\s*(' + tokens.variable + ')\\s*\\]', populate: function populate(selector, query, _ref9) { var _ref10 = _slicedToArray(_ref9, 1), variable = _ref10[0]; query.checks.push({ type: Type.DATA_EXIST, field: cleanMetaChars(variable) }); } }, { name: 'dataCompare', query: true, regex: '\\[\\s*(' + tokens.variable + ')\\s*(' + tokens.comparatorOp + ')\\s*(' + tokens.value + ')\\s*\\]', populate: function populate(selector, query, _ref11) { var _ref12 = _slicedToArray(_ref11, 3), variable = _ref12[0], comparatorOp = _ref12[1], value = _ref12[2]; var valueIsString = new RegExp('^' + tokens.string + '$').exec(value) != null; if (valueIsString) { value = value.substring(1, value.length - 1); } else { value = parseFloat(value); } query.checks.push({ type: Type.DATA_COMPARE, field: cleanMetaChars(variable), operator: comparatorOp, value: value }); } }, { name: 'dataBool', query: true, regex: '\\[\\s*(' + tokens.boolOp + ')\\s*(' + tokens.variable + ')\\s*\\]', populate: function populate(selector, query, _ref13) { var _ref14 = _slicedToArray(_ref13, 2), boolOp = _ref14[0], variable = _ref14[1]; query.checks.push({ type: Type.DATA_BOOL, field: cleanMetaChars(variable), operator: boolOp }); } }, { name: 'metaCompare', query: true, regex: '\\[\\[\\s*(' + tokens.meta + ')\\s*(' + tokens.comparatorOp + ')\\s*(' + tokens.number + ')\\s*\\]\\]', populate: function populate(selector, query, _ref15) { var _ref16 = _slicedToArray(_ref15, 3), meta = _ref16[0], comparatorOp = _ref16[1], number = _ref16[2]; query.checks.push({ type: Type.META_COMPARE, field: cleanMetaChars(meta), operator: comparatorOp, value: parseFloat(number) }); } }, { name: 'nextQuery', separator: true, regex: tokens.separator, populate: function populate(selector, query) { var currentSubject = selector.currentSubject; var edgeCount = selector.edgeCount; var compoundCount = selector.compoundCount; var lastQ = selector[selector.length - 1]; if (currentSubject != null) { lastQ.subject = currentSubject; selector.currentSubject = null; } lastQ.edgeCount = edgeCount; lastQ.compoundCount = compoundCount; selector.edgeCount = 0; selector.compoundCount = 0; // go on to next query var nextQuery = selector[selector.length++] = newQuery(); return nextQuery; // this is the new query to be filled by the following exprs } }, { name: 'directedEdge', separator: true, regex: tokens.directedEdge, populate: function populate(selector, query) { if (selector.currentSubject == null) { // undirected edge var edgeQuery = newQuery(); var source = query; var target = newQuery(); edgeQuery.checks.push({ type: Type.DIRECTED_EDGE, source: source, target: target }); // the query in the selector should be the edge rather than the source replaceLastQuery(selector, query, edgeQuery); selector.edgeCount++; // we're now populating the target query with expressions that follow return target; } else { // source/target var srcTgtQ = newQuery(); var _source = query; var _target = newQuery(); srcTgtQ.checks.push({ type: Type.NODE_SOURCE, source: _source, target: _target }); // the query in the selector should be the neighbourhood rather than the node replaceLastQuery(selector, query, srcTgtQ); selector.edgeCount++; return _target; // now populating the target with the following expressions } } }, { name: 'undirectedEdge', separator: true, regex: tokens.undirectedEdge, populate: function populate(selector, query) { if (selector.currentSubject == null) { // undirected edge var edgeQuery = newQuery(); var source = query; var target = newQuery(); edgeQuery.checks.push({ type: Type.UNDIRECTED_EDGE, nodes: [source, target] }); // the query in the selector should be the edge rather than the source replaceLastQuery(selector, query, edgeQuery); selector.edgeCount++; // we're now populating the target query with expressions that follow return target; } else { // neighbourhood var nhoodQ = newQuery(); var node = query; var neighbor = newQuery(); nhoodQ.checks.push({ type: Type.NODE_NEIGHBOR, node: node, neighbor: neighbor }); // the query in the selector should be the neighbourhood rather than the node replaceLastQuery(selector, query, nhoodQ); return neighbor; // now populating the neighbor with following expressions } } }, { name: 'child', separator: true, regex: tokens.child, populate: function populate(selector, query) { if (selector.currentSubject == null) { // default: child query var parentChildQuery = newQuery(); var child = newQuery(); var parent = selector[selector.length - 1]; parentChildQuery.checks.push({ type: Type.CHILD, parent: parent, child: child }); // the query in the selector should be the '>' itself replaceLastQuery(selector, query, parentChildQuery); selector.compoundCount++; // we're now populating the child query with expressions that follow return child; } else if (selector.currentSubject === query) { // compound split query var compound = newQuery(); var left = selector[selector.length - 1]; var right = newQuery(); var subject = newQuery(); var _child = newQuery(); var _parent = newQuery(); // set up the root compound q compound.checks.push({ type: Type.COMPOUND_SPLIT, left: left, right: right, subject: subject }); // populate the subject and replace the q at the old spot (within left) with TRUE subject.checks = query.checks; // take the checks from the left query.checks = [{ type: Type.TRUE }]; // checks under left refs the subject implicitly // set up the right q _parent.checks.push({ type: Type.TRUE }); // parent implicitly refs the subject right.checks.push({ type: Type.PARENT, // type is swapped on right side queries parent: _parent, child: _child // empty for now }); replaceLastQuery(selector, left, compound); // update the ref since we moved things around for `query` selector.currentSubject = subject; selector.compoundCount++; return _child; // now populating the right side's child } else { // parent query // info for parent query var _parent2 = newQuery(); var _child2 = newQuery(); var pcQChecks = [{ type: Type.PARENT, parent: _parent2, child: _child2 }]; // the parent-child query takes the place of the query previously being populated _parent2.checks = query.checks; // the previous query contains the checks for the parent query.checks = pcQChecks; // pc query takes over selector.compoundCount++; return _child2; // we're now populating the child } } }, { name: 'descendant', separator: true, regex: tokens.descendant, populate: function populate(selector, query) { if (selector.currentSubject == null) { // default: descendant query var ancChQuery = newQuery(); var descendant = newQuery(); var ancestor = selector[selector.length - 1]; ancChQuery.checks.push({ type: Type.DESCENDANT, ancestor: ancestor, descendant: descendant }); // the query in the selector should be the '>' itself replaceLastQuery(selector, query, ancChQuery); selector.compoundCount++; // we're now populating the descendant query with expressions that follow return descendant; } else if (selector.currentSubject === query) { // compound split query var compound = newQuery(); var left = selector[selector.length - 1]; var right = newQuery(); var subject = newQuery(); var _descendant = newQuery(); var _ancestor = newQuery(); // set up the root compound q compound.checks.push({ type: Type.COMPOUND_SPLIT, left: left, right: right, subject: subject }); // populate the subject and replace the q at the old spot (within left) with TRUE subject.checks = query.checks; // take the checks from the left query.checks = [{ type: Type.TRUE }]; // checks under left refs the subject implicitly // set up the right q _ancestor.checks.push({ type: Type.TRUE }); // ancestor implicitly refs the subject right.checks.push({ type: Type.ANCESTOR, // type is swapped on right side queries ancestor: _ancestor, descendant: _descendant // empty for now }); replaceLastQuery(selector, left, compound); // update the ref since we moved things around for `query` selector.currentSubject = subject; selector.compoundCount++; return _descendant; // now populating the right side's descendant } else { // ancestor query // info for parent query var _ancestor2 = newQuery(); var _descendant2 = newQuery(); var adQChecks = [{ type: Type.ANCESTOR, ancestor: _ancestor2, descendant: _descendant2 }]; // the parent-child query takes the place of the query previously being populated _ancestor2.checks = query.checks; // the previous query contains the checks for the parent query.checks = adQChecks; // pc query takes over selector.compoundCount++; return _descendant2; // we're now populating the child } } }, { name: 'subject', modifier: true, regex: tokens.subject, populate: function populate(selector, query) { if (selector.currentSubject != null && selector.currentSubject !== query) { warn('Redefinition of subject in selector `' + selector.toString() + '`'); return false; } selector.currentSubject = query; var topQ = selector[selector.length - 1]; var topChk = topQ.checks[0]; var topType = topChk == null ? null : topChk.type; if (topType === Type.DIRECTED_EDGE) { // directed edge with subject on the target // change to target node check topChk.type = Type.NODE_TARGET; } else if (topType === Type.UNDIRECTED_EDGE) { // undirected edge with subject on the second node // change to neighbor check topChk.type = Type.NODE_NEIGHBOR; topChk.node = topChk.nodes[1]; // second node is subject topChk.neighbor = topChk.nodes[0]; // clean up unused fields for new type topChk.nodes = null; } } }]; exprs.forEach(function (e) { return e.regexObj = new RegExp('^' + e.regex); }); /** * Of all the expressions, find the first match in the remaining text. * @param {string} remaining The remaining text to parse * @returns The matched expression and the newly remaining text `{ expr, match, name, remaining }` */ var consumeExpr = function consumeExpr(remaining) { var expr; var match; var name; for (var j = 0; j < exprs.length; j++) { var e = exprs[j]; var n = e.name; var m = remaining.match(e.regexObj); if (m != null) { match = m; expr = e; name = n; var consumed = m[0]; remaining = remaining.substring(consumed.length); break; // we've consumed one expr, so we can return now } } return { expr: expr, match: match, name: name, remaining: remaining }; }; /** * Consume all the leading whitespace * @param {string} remaining The text to consume * @returns The text with the leading whitespace removed */ var consumeWhitespace = function consumeWhitespace(remaining) { var match = remaining.match(/^\s+/); if (match) { var consumed = match[0]; remaining = remaining.substring(consumed.length); } return remaining; }; /** * Parse the string and store the parsed representation in the Selector. * @param {string} selector The selector string * @returns `true` if the selector was successfully parsed, `false` otherwise */ var parse = function parse(selector) { var self = this; var remaining = self.inputText = selector; var currentQuery = self[0] = newQuery(); self.length = 1; remaining = consumeWhitespace(remaining); // get rid of leading whitespace for (;;) { var exprInfo = consumeExpr(remaining); if (exprInfo.expr == null) { warn('The selector `' + selector + '`is invalid'); return false; } else { var args = exprInfo.match.slice(1); // let the token populate the selector object in currentQuery var ret = exprInfo.expr.populate(self, currentQuery, args); if (ret === false) { return false; // exit if population failed } else if (ret != null) { currentQuery = ret; // change the current query to be filled if the expr specifies } } remaining = exprInfo.remaining; // we're done when there's nothing left to parse if (remaining.match(/^\s*$/)) { break; } } var lastQ = self[self.length - 1]; if (self.currentSubject != null) { lastQ.subject = self.currentSubject; } lastQ.edgeCount = self.edgeCount; lastQ.compoundCount = self.compoundCount; for (var i = 0; i < self.length; i++) { var q = self[i]; // in future, this could potentially be allowed if there were operator precedence and detection of invalid combinations if (q.compoundCount > 0 && q.edgeCount > 0) { warn('The selector `' + selector + '` is invalid because it uses both a compound selector and an edge selector'); return false; } if (q.edgeCount > 1) { warn('The selector `' + selector + '` is invalid because it uses multiple edge selectors'); return false; } else if (q.edgeCount === 1) { warn('The selector `' + selector + '` is deprecated. Edge selectors do not take effect on changes to source and target nodes after an edge is added, for performance reasons. Use a class or data selector on edges instead, updating the class or data of an edge when your app detects a change in source or target nodes.'); } } return true; // success }; /** * Get the selector represented as a string. This value uses default formatting, * so things like spacing may differ from the input text passed to the constructor. * @returns {string} The selector string */ var toString = function toString() { if (this.toStringCache != null) { return this.toStringCache; } var clean = function clean(obj) { if (obj == null) { return ''; } else { return obj; } }; var cleanVal = function cleanVal(val) { if (string(val)) { return '"' + val + '"'; } else { return clean(val); } }; var space = function space(val) { return ' ' + val + ' '; }; var checkToString = function checkToString(check, subject) { var type = check.type, value = check.value; switch (type) { case Type.GROUP: { var group = clean(value); return group.substring(0, group.length - 1); } case Type.DATA_COMPARE: { var field = check.field, operator = check.operator; return '[' + field + space(clean(operator)) + cleanVal(value) + ']'; } case Type.DATA_BOOL: { var _operator = check.operator, _field = check.field; return '[' + clean(_operator) + _field + ']'; } case Type.DATA_EXIST: { var _field2 = check.field; return '[' + _field2 + ']'; } case Type.META_COMPARE: { var _operator2 = check.operator, _field3 = check.field; return '[[' + _field3 + space(clean(_operator2)) + cleanVal(value) + ']]'; } case Type.STATE: { return value; } case Type.ID: { return '#' + value; } case Type.CLASS: { return '.' + value; } case Type.PARENT: case Type.CHILD: { return queryToString(check.parent, subject) + space('>') + queryToString(check.child, subject); } case Type.ANCESTOR: case Type.DESCENDANT: { return queryToString(check.ancestor, subject) + ' ' + queryToString(check.descendant, subject); } case Type.COMPOUND_SPLIT: { var lhs = queryToString(check.left, subject); var sub = queryToString(check.subject, subject); var rhs = queryToString(check.right, subject); return lhs + (lhs.length > 0 ? ' ' : '') + sub + rhs; } case Type.TRUE: { return ''; } } }; var queryToString = function queryToString(query, subject) { return query.checks.reduce(function (str, chk, i) { return str + (subject === query && i === 0 ? '$' : '') + checkToString(chk, subject); }, ''); }; var str = ''; for (var i = 0; i < this.length; i++) { var query = this[i]; str += queryToString(query, query.subject); if (this.length > 1 && i < this.length - 1) { str += ', '; } } this.toStringCache = str; return str; }; var parse$1 = { parse: parse, toString: toString }; var valCmp = function valCmp(fieldVal, operator, value) { var matches; var isFieldStr = string(fieldVal); var isFieldNum = number$1(fieldVal); var isValStr = string(value); var fieldStr, valStr; var caseInsensitive = false; var notExpr = false; var isIneqCmp = false; if (operator.indexOf('!') >= 0) { operator = operator.replace('!', ''); notExpr = true; } if (operator.indexOf('@') >= 0) { operator = operator.replace('@', ''); caseInsensitive = true; } if (isFieldStr || isValStr || caseInsensitive) { fieldStr = !isFieldStr && !isFieldNum ? '' : '' + fieldVal; valStr = '' + value; } // if we're doing a case insensitive comparison, then we're using a STRING comparison // even if we're comparing numbers if (caseInsensitive) { fieldVal = fieldStr = fieldStr.toLowerCase(); value = valStr = valStr.toLowerCase(); } switch (operator) { case '*=': matches = fieldStr.indexOf(valStr) >= 0; break; case '$=': matches = fieldStr.indexOf(valStr, fieldStr.length - valStr.length) >= 0; break; case '^=': matches = fieldStr.indexOf(valStr) === 0; break; case '=': matches = fieldVal === value; break; case '>': isIneqCmp = true; matches = fieldVal > value; break; case '>=': isIneqCmp = true; matches = fieldVal >= value; break; case '<': isIneqCmp = true; matches = fieldVal < value; break; case '<=': isIneqCmp = true; matches = fieldVal <= value; break; default: matches = false; break; } // apply the not op, but null vals for inequalities should always stay non-matching if (notExpr && (fieldVal != null || !isIneqCmp)) { matches = !matches; } return matches; }; var boolCmp = function boolCmp(fieldVal, operator) { switch (operator) { case '?': return fieldVal ? true : false; case '!': return fieldVal ? false : true; case '^': return fieldVal === undefined; } }; var existCmp = function existCmp(fieldVal) { return fieldVal !== undefined; }; var data$1 = function data(ele, field) { return ele.data(field); }; var meta = function meta(ele, field) { return ele[field](); }; /** A lookup of `match(check, ele)` functions by `Type` int */ var match = []; /** * Returns whether the query matches for the element * @param query The `{ type, value, ... }` query object * @param ele The element to compare against */ var matches$1 = function matches(query, ele) { return query.checks.every(function (chk) { return match[chk.type](chk, ele); }); }; match[Type.GROUP] = function (check, ele) { var group = check.value; return group === '*' || group === ele.group(); }; match[Type.STATE] = function (check, ele) { var stateSelector = check.value; return stateSelectorMatches(stateSelector, ele); }; match[Type.ID] = function (check, ele) { var id = check.value; return ele.id() === id; }; match[Type.CLASS] = function (check, ele) { var cls = check.value; return ele.hasClass(cls); }; match[Type.META_COMPARE] = function (check, ele) { var field = check.field, operator = check.operator, value = check.value; return valCmp(meta(ele, field), operator, value); }; match[Type.DATA_COMPARE] = function (check, ele) { var field = check.field, operator = check.operator, value = check.value; return valCmp(data$1(ele, field), operator, value); }; match[Type.DATA_BOOL] = function (check, ele) { var field = check.field, operator = check.operator; return boolCmp(data$1(ele, field), operator); }; match[Type.DATA_EXIST] = function (check, ele) { var field = check.field; check.operator; return existCmp(data$1(ele, field)); }; match[Type.UNDIRECTED_EDGE] = function (check, ele) { var qA = check.nodes[0]; var qB = check.nodes[1]; var src = ele.source(); var tgt = ele.target(); return matches$1(qA, src) && matches$1(qB, tgt) || matches$1(qB, src) && matches$1(qA, tgt); }; match[Type.NODE_NEIGHBOR] = function (check, ele) { return matches$1(check.node, ele) && ele.neighborhood().some(function (n) { return n.isNode() && matches$1(check.neighbor, n); }); }; match[Type.DIRECTED_EDGE] = function (check, ele) { return matches$1(check.source, ele.source()) && matches$1(check.target, ele.target()); }; match[Type.NODE_SOURCE] = function (check, ele) { return matches$1(check.source, ele) && ele.outgoers().some(function (n) { return n.isNode() && matches$1(check.target, n); }); }; match[Type.NODE_TARGET] = function (check, ele) { return matches$1(check.target, ele) && ele.incomers().some(function (n) { return n.isNode() && matches$1(check.source, n); }); }; match[Type.CHILD] = function (check, ele) { return matches$1(check.child, ele) && matches$1(check.parent, ele.parent()); }; match[Type.PARENT] = function (check, ele) { return matches$1(check.parent, ele) && ele.children().some(function (c) { return matches$1(check.child, c); }); }; match[Type.DESCENDANT] = function (check, ele) { return matches$1(check.descendant, ele) && ele.ancestors().some(function (a) { return matches$1(check.ancestor, a); }); }; match[Type.ANCESTOR] = function (check, ele) { return matches$1(check.ancestor, ele) && ele.descendants().some(function (d) { return matches$1(check.descendant, d); }); }; match[Type.COMPOUND_SPLIT] = function (check, ele) { return matches$1(check.subject, ele) && matches$1(check.left, ele) && matches$1(check.right, ele); }; match[Type.TRUE] = function () { return true; }; match[Type.COLLECTION] = function (check, ele) { var collection = check.value; return collection.has(ele); }; match[Type.FILTER] = function (check, ele) { var filter = check.value; return filter(ele); }; // filter an existing collection var filter = function filter(collection) { var self = this; // for 1 id #foo queries, just get the element if (self.length === 1 && self[0].checks.length === 1 && self[0].checks[0].type === Type.ID) { return collection.getElementById(self[0].checks[0].value).collection(); } var selectorFunction = function selectorFunction(element) { for (var j = 0; j < self.length; j++) { var query = self[j]; if (matches$1(query, element)) { return true; } } return false; }; if (self.text() == null) { selectorFunction = function selectorFunction() { return true; }; } return collection.filter(selectorFunction); }; // filter // does selector match a single element? var matches = function matches(ele) { var self = this; for (var j = 0; j < self.length; j++) { var query = self[j]; if (matches$1(query, ele)) { return true; } } return false; }; // matches var matching = { matches: matches, filter: filter }; var Selector = function Selector(selector) { this.inputText = selector; this.currentSubject = null; this.compoundCount = 0; this.edgeCount = 0; this.length = 0; if (selector == null || string(selector) && selector.match(/^\s*$/)) ; else if (elementOrCollection(selector)) { this.addQuery({ checks: [{ type: Type.COLLECTION, value: selector.collection() }] }); } else if (fn$6(selector)) { this.addQuery({ checks: [{ type: Type.FILTER, value: selector }] }); } else if (string(selector)) { if (!this.parse(selector)) { this.invalid = true; } } else { error('A selector must be created from a string; found '); } }; var selfn = Selector.prototype; [parse$1, matching].forEach(function (p) { return extend(selfn, p); }); selfn.text = function () { return this.inputText; }; selfn.size = function () { return this.length; }; selfn.eq = function (i) { return this[i]; }; selfn.sameText = function (otherSel) { return !this.invalid && !otherSel.invalid && this.text() === otherSel.text(); }; selfn.addQuery = function (q) { this[this.length++] = q; }; selfn.selector = selfn.toString; var elesfn$g = { allAre: function allAre(selector) { var selObj = new Selector(selector); return this.every(function (ele) { return selObj.matches(ele); }); }, is: function is(selector) { var selObj = new Selector(selector); return this.some(function (ele) { return selObj.matches(ele); }); }, some: function some(fn, thisArg) { for (var i = 0; i < this.length; i++) { var ret = !thisArg ? fn(this[i], i, this) : fn.apply(thisArg, [this[i], i, this]); if (ret) { return true; } } return false; }, every: function every(fn, thisArg) { for (var i = 0; i < this.length; i++) { var ret = !thisArg ? fn(this[i], i, this) : fn.apply(thisArg, [this[i], i, this]); if (!ret) { return false; } } return true; }, same: function same(collection) { // cheap collection ref check if (this === collection) { return true; } collection = this.cy().collection(collection); var thisLength = this.length; var collectionLength = collection.length; // cheap length check if (thisLength !== collectionLength) { return false; } // cheap element ref check if (thisLength === 1) { return this[0] === collection[0]; } return this.every(function (ele) { return collection.hasElementWithId(ele.id()); }); }, anySame: function anySame(collection) { collection = this.cy().collection(collection); return this.some(function (ele) { return collection.hasElementWithId(ele.id()); }); }, allAreNeighbors: function allAreNeighbors(collection) { collection = this.cy().collection(collection); var nhood = this.neighborhood(); return collection.every(function (ele) { return nhood.hasElementWithId(ele.id()); }); }, contains: function contains(collection) { collection = this.cy().collection(collection); var self = this; return collection.every(function (ele) { return self.hasElementWithId(ele.id()); }); } }; elesfn$g.allAreNeighbours = elesfn$g.allAreNeighbors; elesfn$g.has = elesfn$g.contains; elesfn$g.equal = elesfn$g.equals = elesfn$g.same; var cache = function cache(fn, name) { return function traversalCache(arg1, arg2, arg3, arg4) { var selectorOrEles = arg1; var eles = this; var key; if (selectorOrEles == null) { key = ''; } else if (elementOrCollection(selectorOrEles) && selectorOrEles.length === 1) { key = selectorOrEles.id(); } if (eles.length === 1 && key) { var _p = eles[0]._private; var tch = _p.traversalCache = _p.traversalCache || {}; var ch = tch[name] = tch[name] || []; var hash = hashString(key); var cacheHit = ch[hash]; if (cacheHit) { return cacheHit; } else { return ch[hash] = fn.call(eles, arg1, arg2, arg3, arg4); } } else { return fn.call(eles, arg1, arg2, arg3, arg4); } }; }; var elesfn$f = { parent: function parent(selector) { var parents = []; // optimisation for single ele call if (this.length === 1) { var parent = this[0]._private.parent; if (parent) { return parent; } } for (var i = 0; i < this.length; i++) { var ele = this[i]; var _parent = ele._private.parent; if (_parent) { parents.push(_parent); } } return this.spawn(parents, true).filter(selector); }, parents: function parents(selector) { var parents = []; var eles = this.parent(); while (eles.nonempty()) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; parents.push(ele); } eles = eles.parent(); } return this.spawn(parents, true).filter(selector); }, commonAncestors: function commonAncestors(selector) { var ancestors; for (var i = 0; i < this.length; i++) { var ele = this[i]; var parents = ele.parents(); ancestors = ancestors || parents; ancestors = ancestors.intersect(parents); // current list must be common with current ele parents set } return ancestors.filter(selector); }, orphans: function orphans(selector) { return this.stdFilter(function (ele) { return ele.isOrphan(); }).filter(selector); }, nonorphans: function nonorphans(selector) { return this.stdFilter(function (ele) { return ele.isChild(); }).filter(selector); }, children: cache(function (selector) { var children = []; for (var i = 0; i < this.length; i++) { var ele = this[i]; var eleChildren = ele._private.children; for (var j = 0; j < eleChildren.length; j++) { children.push(eleChildren[j]); } } return this.spawn(children, true).filter(selector); }, 'children'), siblings: function siblings(selector) { return this.parent().children().not(this).filter(selector); }, isParent: function isParent() { var ele = this[0]; if (ele) { return ele.isNode() && ele._private.children.length !== 0; } }, isChildless: function isChildless() { var ele = this[0]; if (ele) { return ele.isNode() && ele._private.children.length === 0; } }, isChild: function isChild() { var ele = this[0]; if (ele) { return ele.isNode() && ele._private.parent != null; } }, isOrphan: function isOrphan() { var ele = this[0]; if (ele) { return ele.isNode() && ele._private.parent == null; } }, descendants: function descendants(selector) { var elements = []; function add(eles) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; elements.push(ele); if (ele.children().nonempty()) { add(ele.children()); } } } add(this.children()); return this.spawn(elements, true).filter(selector); } }; function forEachCompound(eles, fn, includeSelf, recursiveStep) { var q = []; var did = new Set$1(); var cy = eles.cy(); var hasCompounds = cy.hasCompoundNodes(); for (var i = 0; i < eles.length; i++) { var ele = eles[i]; if (includeSelf) { q.push(ele); } else if (hasCompounds) { recursiveStep(q, did, ele); } } while (q.length > 0) { var _ele = q.shift(); fn(_ele); did.add(_ele.id()); if (hasCompounds) { recursiveStep(q, did, _ele); } } return eles; } function addChildren(q, did, ele) { if (ele.isParent()) { var children = ele._private.children; for (var i = 0; i < children.length; i++) { var child = children[i]; if (!did.has(child.id())) { q.push(child); } } } } // very efficient version of eles.add( eles.descendants() ).forEach() // for internal use elesfn$f.forEachDown = function (fn) { var includeSelf = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; return forEachCompound(this, fn, includeSelf, addChildren); }; function addParent(q, did, ele) { if (ele.isChild()) { var parent = ele._private.parent; if (!did.has(parent.id())) { q.push(parent); } } } elesfn$f.forEachUp = function (fn) { var includeSelf = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; return forEachCompound(this, fn, includeSelf, addParent); }; function addParentAndChildren(q, did, ele) { addParent(q, did, ele); addChildren(q, did, ele); } elesfn$f.forEachUpAndDown = function (fn) { var includeSelf = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; return forEachCompound(this, fn, includeSelf, addParentAndChildren); }; // aliases elesfn$f.ancestors = elesfn$f.parents; var fn$5, elesfn$e; fn$5 = elesfn$e = { data: define.data({ field: 'data', bindingEvent: 'data', allowBinding: true, allowSetting: true, settingEvent: 'data', settingTriggersEvent: true, triggerFnName: 'trigger', allowGetting: true, immutableKeys: { 'id': true, 'source': true, 'target': true, 'parent': true }, updateStyle: true }), removeData: define.removeData({ field: 'data', event: 'data', triggerFnName: 'trigger', triggerEvent: true, immutableKeys: { 'id': true, 'source': true, 'target': true, 'parent': true }, updateStyle: true }), scratch: define.data({ field: 'scratch', bindingEvent: 'scratch', allowBinding: true, allowSetting: true, settingEvent: 'scratch', settingTriggersEvent: true, triggerFnName: 'trigger', allowGetting: true, updateStyle: true }), removeScratch: define.removeData({ field: 'scratch', event: 'scratch', triggerFnName: 'trigger', triggerEvent: true, updateStyle: true }), rscratch: define.data({ field: 'rscratch', allowBinding: false, allowSetting: true, settingTriggersEvent: false, allowGetting: true }), removeRscratch: define.removeData({ field: 'rscratch', triggerEvent: false }), id: function id() { var ele = this[0]; if (ele) { return ele._private.data.id; } } }; // aliases fn$5.attr = fn$5.data; fn$5.removeAttr = fn$5.removeData; var data = elesfn$e; var elesfn$d = {}; function defineDegreeFunction(callback) { return function (includeLoops) { var self = this; if (includeLoops === undefined) { includeLoops = true; } if (self.length === 0) { return; } if (self.isNode() && !self.removed()) { var degree = 0; var node = self[0]; var connectedEdges = node._private.edges; for (var i = 0; i < connectedEdges.length; i++) { var edge = connectedEdges[i]; if (!includeLoops && edge.isLoop()) { continue; } degree += callback(node, edge); } return degree; } else { return; } }; } extend(elesfn$d, { degree: defineDegreeFunction(function (node, edge) { if (edge.source().same(edge.target())) { return 2; } else { return 1; } }), indegree: defineDegreeFunction(function (node, edge) { if (edge.target().same(node)) { return 1; } else { return 0; } }), outdegree: defineDegreeFunction(function (node, edge) { if (edge.source().same(node)) { return 1; } else { return 0; } }) }); function defineDegreeBoundsFunction(degreeFn, callback) { return function (includeLoops) { var ret; var nodes = this.nodes(); for (var i = 0; i < nodes.length; i++) { var ele = nodes[i]; var degree = ele[degreeFn](includeLoops); if (degree !== undefined && (ret === undefined || callback(degree, ret))) { ret = degree; } } return ret; }; } extend(elesfn$d, { minDegree: defineDegreeBoundsFunction('degree', function (degree, min) { return degree < min; }), maxDegree: defineDegreeBoundsFunction('degree', function (degree, max) { return degree > max; }), minIndegree: defineDegreeBoundsFunction('indegree', function (degree, min) { return degree < min; }), maxIndegree: defineDegreeBoundsFunction('indegree', function (degree, max) { return degree > max; }), minOutdegree: defineDegreeBoundsFunction('outdegree', function (degree, min) { return degree < min; }), maxOutdegree: defineDegreeBoundsFunction('outdegree', function (degree, max) { return degree > max; }) }); extend(elesfn$d, { totalDegree: function totalDegree(includeLoops) { var total = 0; var nodes = this.nodes(); for (var i = 0; i < nodes.length; i++) { total += nodes[i].degree(includeLoops); } return total; } }); var fn$4, elesfn$c; var beforePositionSet = function beforePositionSet(eles, newPos, silent) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; if (!ele.locked()) { var oldPos = ele._private.position; var delta = { x: newPos.x != null ? newPos.x - oldPos.x : 0, y: newPos.y != null ? newPos.y - oldPos.y : 0 }; if (ele.isParent() && !(delta.x === 0 && delta.y === 0)) { ele.children().shift(delta, silent); } ele.dirtyBoundingBoxCache(); } } }; var positionDef = { field: 'position', bindingEvent: 'position', allowBinding: true, allowSetting: true, settingEvent: 'position', settingTriggersEvent: true, triggerFnName: 'emitAndNotify', allowGetting: true, validKeys: ['x', 'y'], beforeGet: function beforeGet(ele) { ele.updateCompoundBounds(); }, beforeSet: function beforeSet(eles, newPos) { beforePositionSet(eles, newPos, false); }, onSet: function onSet(eles) { eles.dirtyCompoundBoundsCache(); }, canSet: function canSet(ele) { return !ele.locked(); } }; fn$4 = elesfn$c = { position: define.data(positionDef), // position but no notification to renderer silentPosition: define.data(extend({}, positionDef, { allowBinding: false, allowSetting: true, settingTriggersEvent: false, allowGetting: false, beforeSet: function beforeSet(eles, newPos) { beforePositionSet(eles, newPos, true); }, onSet: function onSet(eles) { eles.dirtyCompoundBoundsCache(); } })), positions: function positions(pos, silent) { if (plainObject(pos)) { if (silent) { this.silentPosition(pos); } else { this.position(pos); } } else if (fn$6(pos)) { var _fn = pos; var cy = this.cy(); cy.startBatch(); for (var i = 0; i < this.length; i++) { var ele = this[i]; var _pos = void 0; if (_pos = _fn(ele, i)) { if (silent) { ele.silentPosition(_pos); } else { ele.position(_pos); } } } cy.endBatch(); } return this; // chaining }, silentPositions: function silentPositions(pos) { return this.positions(pos, true); }, shift: function shift(dim, val, silent) { var delta; if (plainObject(dim)) { delta = { x: number$1(dim.x) ? dim.x : 0, y: number$1(dim.y) ? dim.y : 0 }; silent = val; } else if (string(dim) && number$1(val)) { delta = { x: 0, y: 0 }; delta[dim] = val; } if (delta != null) { var cy = this.cy(); cy.startBatch(); for (var i = 0; i < this.length; i++) { var ele = this[i]; // exclude any node that is a descendant of the calling collection if (cy.hasCompoundNodes() && ele.isChild() && ele.ancestors().anySame(this)) { continue; } var pos = ele.position(); var newPos = { x: pos.x + delta.x, y: pos.y + delta.y }; if (silent) { ele.silentPosition(newPos); } else { ele.position(newPos); } } cy.endBatch(); } return this; }, silentShift: function silentShift(dim, val) { if (plainObject(dim)) { this.shift(dim, true); } else if (string(dim) && number$1(val)) { this.shift(dim, val, true); } return this; }, // get/set the rendered (i.e. on screen) positon of the element renderedPosition: function renderedPosition(dim, val) { var ele = this[0]; var cy = this.cy(); var zoom = cy.zoom(); var pan = cy.pan(); var rpos = plainObject(dim) ? dim : undefined; var setting = rpos !== undefined || val !== undefined && string(dim); if (ele && ele.isNode()) { // must have an element and must be a node to return position if (setting) { for (var i = 0; i < this.length; i++) { var _ele = this[i]; if (val !== undefined) { // set one dimension _ele.position(dim, (val - pan[dim]) / zoom); } else if (rpos !== undefined) { // set whole position _ele.position(renderedToModelPosition(rpos, zoom, pan)); } } } else { // getting var pos = ele.position(); rpos = modelToRenderedPosition(pos, zoom, pan); if (dim === undefined) { // then return the whole rendered position return rpos; } else { // then return the specified dimension return rpos[dim]; } } } else if (!setting) { return undefined; // for empty collection case } return this; // chaining }, // get/set the position relative to the parent relativePosition: function relativePosition(dim, val) { var ele = this[0]; var cy = this.cy(); var ppos = plainObject(dim) ? dim : undefined; var setting = ppos !== undefined || val !== undefined && string(dim); var hasCompoundNodes = cy.hasCompoundNodes(); if (ele && ele.isNode()) { // must have an element and must be a node to return position if (setting) { for (var i = 0; i < this.length; i++) { var _ele2 = this[i]; var parent = hasCompoundNodes ? _ele2.parent() : null; var hasParent = parent && parent.length > 0; var relativeToParent = hasParent; if (hasParent) { parent = parent[0]; } var origin = relativeToParent ? parent.position() : { x: 0, y: 0 }; if (val !== undefined) { // set one dimension _ele2.position(dim, val + origin[dim]); } else if (ppos !== undefined) { // set whole position _ele2.position({ x: ppos.x + origin.x, y: ppos.y + origin.y }); } } } else { // getting var pos = ele.position(); var _parent = hasCompoundNodes ? ele.parent() : null; var _hasParent = _parent && _parent.length > 0; var _relativeToParent = _hasParent; if (_hasParent) { _parent = _parent[0]; } var _origin = _relativeToParent ? _parent.position() : { x: 0, y: 0 }; ppos = { x: pos.x - _origin.x, y: pos.y - _origin.y }; if (dim === undefined) { // then return the whole rendered position return ppos; } else { // then return the specified dimension return ppos[dim]; } } } else if (!setting) { return undefined; // for empty collection case } return this; // chaining } }; // aliases fn$4.modelPosition = fn$4.point = fn$4.position; fn$4.modelPositions = fn$4.points = fn$4.positions; fn$4.renderedPoint = fn$4.renderedPosition; fn$4.relativePoint = fn$4.relativePosition; var position = elesfn$c; var fn$3, elesfn$b; fn$3 = elesfn$b = {}; elesfn$b.renderedBoundingBox = function (options) { var bb = this.boundingBox(options); var cy = this.cy(); var zoom = cy.zoom(); var pan = cy.pan(); var x1 = bb.x1 * zoom + pan.x; var x2 = bb.x2 * zoom + pan.x; var y1 = bb.y1 * zoom + pan.y; var y2 = bb.y2 * zoom + pan.y; return { x1: x1, x2: x2, y1: y1, y2: y2, w: x2 - x1, h: y2 - y1 }; }; elesfn$b.dirtyCompoundBoundsCache = function () { var silent = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false; var cy = this.cy(); if (!cy.styleEnabled() || !cy.hasCompoundNodes()) { return this; } this.forEachUp(function (ele) { if (ele.isParent()) { var _p = ele._private; _p.compoundBoundsClean = false; _p.bbCache = null; if (!silent) { ele.emitAndNotify('bounds'); } } }); return this; }; elesfn$b.updateCompoundBounds = function () { var force = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false; var cy = this.cy(); // not possible to do on non-compound graphs or with the style disabled if (!cy.styleEnabled() || !cy.hasCompoundNodes()) { return this; } // save cycles when batching -- but bounds will be stale (or not exist yet) if (!force && cy.batching()) { return this; } function update(parent) { if (!parent.isParent()) { return; } var _p = parent._private; var children = parent.children(); var includeLabels = parent.pstyle('compound-sizing-wrt-labels').value === 'include'; var min = { width: { val: parent.pstyle('min-width').pfValue, left: parent.pstyle('min-width-bias-left'), right: parent.pstyle('min-width-bias-right') }, height: { val: parent.pstyle('min-height').pfValue, top: parent.pstyle('min-height-bias-top'), bottom: parent.pstyle('min-height-bias-bottom') } }; var bb = children.boundingBox({ includeLabels: includeLabels, includeOverlays: false, // updating the compound bounds happens outside of the regular // cache cycle (i.e. before fired events) useCache: false }); var pos = _p.position; // if children take up zero area then keep position and fall back on stylesheet w/h if (bb.w === 0 || bb.h === 0) { bb = { w: parent.pstyle('width').pfValue, h: parent.pstyle('height').pfValue }; bb.x1 = pos.x - bb.w / 2; bb.x2 = pos.x + bb.w / 2; bb.y1 = pos.y - bb.h / 2; bb.y2 = pos.y + bb.h / 2; } function computeBiasValues(propDiff, propBias, propBiasComplement) { var biasDiff = 0; var biasComplementDiff = 0; var biasTotal = propBias + propBiasComplement; if (propDiff > 0 && biasTotal > 0) { biasDiff = propBias / biasTotal * propDiff; biasComplementDiff = propBiasComplement / biasTotal * propDiff; } return { biasDiff: biasDiff, biasComplementDiff: biasComplementDiff }; } function computePaddingValues(width, height, paddingObject, relativeTo) { // Assuming percentage is number from 0 to 1 if (paddingObject.units === '%') { switch (relativeTo) { case 'width': return width > 0 ? paddingObject.pfValue * width : 0; case 'height': return height > 0 ? paddingObject.pfValue * height : 0; case 'average': return width > 0 && height > 0 ? paddingObject.pfValue * (width + height) / 2 : 0; case 'min': return width > 0 && height > 0 ? width > height ? paddingObject.pfValue * height : paddingObject.pfValue * width : 0; case 'max': return width > 0 && height > 0 ? width > height ? paddingObject.pfValue * width : paddingObject.pfValue * height : 0; default: return 0; } } else if (paddingObject.units === 'px') { return paddingObject.pfValue; } else { return 0; } } var leftVal = min.width.left.value; if (min.width.left.units === 'px' && min.width.val > 0) { leftVal = leftVal * 100 / min.width.val; } var rightVal = min.width.right.value; if (min.width.right.units === 'px' && min.width.val > 0) { rightVal = rightVal * 100 / min.width.val; } var topVal = min.height.top.value; if (min.height.top.units === 'px' && min.height.val > 0) { topVal = topVal * 100 / min.height.val; } var bottomVal = min.height.bottom.value; if (min.height.bottom.units === 'px' && min.height.val > 0) { bottomVal = bottomVal * 100 / min.height.val; } var widthBiasDiffs = computeBiasValues(min.width.val - bb.w, leftVal, rightVal); var diffLeft = widthBiasDiffs.biasDiff; var diffRight = widthBiasDiffs.biasComplementDiff; var heightBiasDiffs = computeBiasValues(min.height.val - bb.h, topVal, bottomVal); var diffTop = heightBiasDiffs.biasDiff; var diffBottom = heightBiasDiffs.biasComplementDiff; _p.autoPadding = computePaddingValues(bb.w, bb.h, parent.pstyle('padding'), parent.pstyle('padding-relative-to').value); _p.autoWidth = Math.max(bb.w, min.width.val); pos.x = (-diffLeft + bb.x1 + bb.x2 + diffRight) / 2; _p.autoHeight = Math.max(bb.h, min.height.val); pos.y = (-diffTop + bb.y1 + bb.y2 + diffBottom) / 2; } for (var i = 0; i < this.length; i++) { var ele = this[i]; var _p = ele._private; if (!_p.compoundBoundsClean || force) { update(ele); if (!cy.batching()) { _p.compoundBoundsClean = true; } } } return this; }; var noninf = function noninf(x) { if (x === Infinity || x === -Infinity) { return 0; } return x; }; var updateBounds = function updateBounds(b, x1, y1, x2, y2) { // don't update with zero area boxes if (x2 - x1 === 0 || y2 - y1 === 0) { return; } // don't update with null dim if (x1 == null || y1 == null || x2 == null || y2 == null) { return; } b.x1 = x1 < b.x1 ? x1 : b.x1; b.x2 = x2 > b.x2 ? x2 : b.x2; b.y1 = y1 < b.y1 ? y1 : b.y1; b.y2 = y2 > b.y2 ? y2 : b.y2; b.w = b.x2 - b.x1; b.h = b.y2 - b.y1; }; var updateBoundsFromBox = function updateBoundsFromBox(b, b2) { if (b2 == null) { return b; } return updateBounds(b, b2.x1, b2.y1, b2.x2, b2.y2); }; var prefixedProperty = function prefixedProperty(obj, field, prefix) { return getPrefixedProperty(obj, field, prefix); }; var updateBoundsFromArrow = function updateBoundsFromArrow(bounds, ele, prefix) { if (ele.cy().headless()) { return; } var _p = ele._private; var rstyle = _p.rstyle; var halfArW = rstyle.arrowWidth / 2; var arrowType = ele.pstyle(prefix + '-arrow-shape').value; var x; var y; if (arrowType !== 'none') { if (prefix === 'source') { x = rstyle.srcX; y = rstyle.srcY; } else if (prefix === 'target') { x = rstyle.tgtX; y = rstyle.tgtY; } else { x = rstyle.midX; y = rstyle.midY; } // always store the individual arrow bounds var bbs = _p.arrowBounds = _p.arrowBounds || {}; var bb = bbs[prefix] = bbs[prefix] || {}; bb.x1 = x - halfArW; bb.y1 = y - halfArW; bb.x2 = x + halfArW; bb.y2 = y + halfArW; bb.w = bb.x2 - bb.x1; bb.h = bb.y2 - bb.y1; expandBoundingBox(bb, 1); updateBounds(bounds, bb.x1, bb.y1, bb.x2, bb.y2); } }; var updateBoundsFromLabel = function updateBoundsFromLabel(bounds, ele, prefix) { if (ele.cy().headless()) { return; } var prefixDash; if (prefix) { prefixDash = prefix + '-'; } else { prefixDash = ''; } var _p = ele._private; var rstyle = _p.rstyle; var label = ele.pstyle(prefixDash + 'label').strValue; if (label) { var halign = ele.pstyle('text-halign'); var valign = ele.pstyle('text-valign'); var labelWidth = prefixedProperty(rstyle, 'labelWidth', prefix); var labelHeight = prefixedProperty(rstyle, 'labelHeight', prefix); var labelX = prefixedProperty(rstyle, 'labelX', prefix); var labelY = prefixedProperty(rstyle, 'labelY', prefix); var marginX = ele.pstyle(prefixDash + 'text-margin-x').pfValue; var marginY = ele.pstyle(prefixDash + 'text-margin-y').pfValue; var isEdge = ele.isEdge(); var rotation = ele.pstyle(prefixDash + 'text-rotation'); var outlineWidth = ele.pstyle('text-outline-width').pfValue; var borderWidth = ele.pstyle('text-border-width').pfValue; var halfBorderWidth = borderWidth / 2; var padding = ele.pstyle('text-background-padding').pfValue; var marginOfError = 2; // expand to work around browser dimension inaccuracies var lh = labelHeight; var lw = labelWidth; var lw_2 = lw / 2; var lh_2 = lh / 2; var lx1, lx2, ly1, ly2; if (isEdge) { lx1 = labelX - lw_2; lx2 = labelX + lw_2; ly1 = labelY - lh_2; ly2 = labelY + lh_2; } else { switch (halign.value) { case 'left': lx1 = labelX - lw; lx2 = labelX; break; case 'center': lx1 = labelX - lw_2; lx2 = labelX + lw_2; break; case 'right': lx1 = labelX; lx2 = labelX + lw; break; } switch (valign.value) { case 'top': ly1 = labelY - lh; ly2 = labelY; break; case 'center': ly1 = labelY - lh_2; ly2 = labelY + lh_2; break; case 'bottom': ly1 = labelY; ly2 = labelY + lh; break; } } // shift by margin and expand by outline and border lx1 += marginX - Math.max(outlineWidth, halfBorderWidth) - padding - marginOfError; lx2 += marginX + Math.max(outlineWidth, halfBorderWidth) + padding + marginOfError; ly1 += marginY - Math.max(outlineWidth, halfBorderWidth) - padding - marginOfError; ly2 += marginY + Math.max(outlineWidth, halfBorderWidth) + padding + marginOfError; // always store the unrotated label bounds separately var bbPrefix = prefix || 'main'; var bbs = _p.labelBounds; var bb = bbs[bbPrefix] = bbs[bbPrefix] || {}; bb.x1 = lx1; bb.y1 = ly1; bb.x2 = lx2; bb.y2 = ly2; bb.w = lx2 - lx1; bb.h = ly2 - ly1; var isAutorotate = isEdge && rotation.strValue === 'autorotate'; var isPfValue = rotation.pfValue != null && rotation.pfValue !== 0; if (isAutorotate || isPfValue) { var theta = isAutorotate ? prefixedProperty(_p.rstyle, 'labelAngle', prefix) : rotation.pfValue; var cos = Math.cos(theta); var sin = Math.sin(theta); // rotation point (default value for center-center) var xo = (lx1 + lx2) / 2; var yo = (ly1 + ly2) / 2; if (!isEdge) { switch (halign.value) { case 'left': xo = lx2; break; case 'right': xo = lx1; break; } switch (valign.value) { case 'top': yo = ly2; break; case 'bottom': yo = ly1; break; } } var rotate = function rotate(x, y) { x = x - xo; y = y - yo; return { x: x * cos - y * sin + xo, y: x * sin + y * cos + yo }; }; var px1y1 = rotate(lx1, ly1); var px1y2 = rotate(lx1, ly2); var px2y1 = rotate(lx2, ly1); var px2y2 = rotate(lx2, ly2); lx1 = Math.min(px1y1.x, px1y2.x, px2y1.x, px2y2.x); lx2 = Math.max(px1y1.x, px1y2.x, px2y1.x, px2y2.x); ly1 = Math.min(px1y1.y, px1y2.y, px2y1.y, px2y2.y); ly2 = Math.max(px1y1.y, px1y2.y, px2y1.y, px2y2.y); } var bbPrefixRot = bbPrefix + 'Rot'; var bbRot = bbs[bbPrefixRot] = bbs[bbPrefixRot] || {}; bbRot.x1 = lx1; bbRot.y1 = ly1; bbRot.x2 = lx2; bbRot.y2 = ly2; bbRot.w = lx2 - lx1; bbRot.h = ly2 - ly1; updateBounds(bounds, lx1, ly1, lx2, ly2); updateBounds(_p.labelBounds.all, lx1, ly1, lx2, ly2); } return bounds; }; var updateBoundsFromOutline = function updateBoundsFromOutline(bounds, ele) { if (ele.cy().headless()) { return; } var outlineOpacity = ele.pstyle('outline-opacity').value; var outlineWidth = ele.pstyle('outline-width').value; if (outlineOpacity > 0 && outlineWidth > 0) { var outlineOffset = ele.pstyle('outline-offset').value; var nodeShape = ele.pstyle('shape').value; var outlineSize = outlineWidth + outlineOffset; var scaleX = (bounds.w + outlineSize * 2) / bounds.w; var scaleY = (bounds.h + outlineSize * 2) / bounds.h; var xOffset = 0; var yOffset = 0; if (["diamond", "pentagon", "round-triangle"].includes(nodeShape)) { scaleX = (bounds.w + outlineSize * 2.4) / bounds.w; yOffset = -outlineSize / 3.6; } else if (["concave-hexagon", "rhomboid", "right-rhomboid"].includes(nodeShape)) { scaleX = (bounds.w + outlineSize * 2.4) / bounds.w; } else if (nodeShape === "star") { scaleX = (bounds.w + outlineSize * 2.8) / bounds.w; scaleY = (bounds.h + outlineSize * 2.6) / bounds.h; yOffset = -outlineSize / 3.8; } else if (nodeShape === "triangle") { scaleX = (bounds.w + outlineSize * 2.8) / bounds.w; scaleY = (bounds.h + outlineSize * 2.4) / bounds.h; yOffset = -outlineSize / 1.4; } else if (nodeShape === "vee") { scaleX = (bounds.w + outlineSize * 4.4) / bounds.w; scaleY = (bounds.h + outlineSize * 3.8) / bounds.h; yOffset = -outlineSize * .5; } var hDelta = bounds.h * scaleY - bounds.h; var wDelta = bounds.w * scaleX - bounds.w; expandBoundingBoxSides(bounds, [Math.ceil(hDelta / 2), Math.ceil(wDelta / 2)]); if (xOffset != 0 || yOffset !== 0) { var oBounds = shiftBoundingBox(bounds, xOffset, yOffset); updateBoundingBox(bounds, oBounds); } } }; // get the bounding box of the elements (in raw model position) var boundingBoxImpl = function boundingBoxImpl(ele, options) { var cy = ele._private.cy; var styleEnabled = cy.styleEnabled(); var headless = cy.headless(); var bounds = makeBoundingBox(); var _p = ele._private; var isNode = ele.isNode(); var isEdge = ele.isEdge(); var ex1, ex2, ey1, ey2; // extrema of body / lines var x, y; // node pos var rstyle = _p.rstyle; var manualExpansion = isNode && styleEnabled ? ele.pstyle('bounds-expansion').pfValue : [0]; // must use `display` prop only, as reading `compound.width()` causes recursion // (other factors like width values will be considered later in this function anyway) var isDisplayed = function isDisplayed(ele) { return ele.pstyle('display').value !== 'none'; }; var displayed = !styleEnabled || isDisplayed(ele) // must take into account connected nodes b/c of implicit edge hiding on display:none node && (!isEdge || isDisplayed(ele.source()) && isDisplayed(ele.target())); if (displayed) { // displayed suffices, since we will find zero area eles anyway var overlayOpacity = 0; var overlayPadding = 0; if (styleEnabled && options.includeOverlays) { overlayOpacity = ele.pstyle('overlay-opacity').value; if (overlayOpacity !== 0) { overlayPadding = ele.pstyle('overlay-padding').value; } } var underlayOpacity = 0; var underlayPadding = 0; if (styleEnabled && options.includeUnderlays) { underlayOpacity = ele.pstyle('underlay-opacity').value; if (underlayOpacity !== 0) { underlayPadding = ele.pstyle('underlay-padding').value; } } var padding = Math.max(overlayPadding, underlayPadding); var w = 0; var wHalf = 0; if (styleEnabled) { w = ele.pstyle('width').pfValue; wHalf = w / 2; } if (isNode && options.includeNodes) { var pos = ele.position(); x = pos.x; y = pos.y; var _w = ele.outerWidth(); var halfW = _w / 2; var h = ele.outerHeight(); var halfH = h / 2; // handle node dimensions ///////////////////////// ex1 = x - halfW; ex2 = x + halfW; ey1 = y - halfH; ey2 = y + halfH; updateBounds(bounds, ex1, ey1, ex2, ey2); if (styleEnabled && options.includeOutlines) { updateBoundsFromOutline(bounds, ele); } } else if (isEdge && options.includeEdges) { if (styleEnabled && !headless) { var curveStyle = ele.pstyle('curve-style').strValue; // handle edge dimensions (rough box estimate) ////////////////////////////////////////////// ex1 = Math.min(rstyle.srcX, rstyle.midX, rstyle.tgtX); ex2 = Math.max(rstyle.srcX, rstyle.midX, rstyle.tgtX); ey1 = Math.min(rstyle.srcY, rstyle.midY, rstyle.tgtY); ey2 = Math.max(rstyle.srcY, rstyle.midY, rstyle.tgtY); // take into account edge width ex1 -= wHalf; ex2 += wHalf; ey1 -= wHalf; ey2 += wHalf; updateBounds(bounds, ex1, ey1, ex2, ey2); // precise edges //////////////// if (curveStyle === 'haystack') { var hpts = rstyle.haystackPts; if (hpts && hpts.length === 2) { ex1 = hpts[0].x; ey1 = hpts[0].y; ex2 = hpts[1].x; ey2 = hpts[1].y; if (ex1 > ex2) { var temp = ex1; ex1 = ex2; ex2 = temp; } if (ey1 > ey2) { var _temp = ey1; ey1 = ey2; ey2 = _temp; } updateBounds(bounds, ex1 - wHalf, ey1 - wHalf, ex2 + wHalf, ey2 + wHalf); } } else if (curveStyle === 'bezier' || curveStyle === 'unbundled-bezier' || curveStyle.endsWith('segments') || curveStyle.endsWith('taxi')) { var pts; switch (curveStyle) { case 'bezier': case 'unbundled-bezier': pts = rstyle.bezierPts; break; case 'segments': case 'taxi': case 'round-segments': case 'round-taxi': pts = rstyle.linePts; break; } if (pts != null) { for (var j = 0; j < pts.length; j++) { var pt = pts[j]; ex1 = pt.x - wHalf; ex2 = pt.x + wHalf; ey1 = pt.y - wHalf; ey2 = pt.y + wHalf; updateBounds(bounds, ex1, ey1, ex2, ey2); } } } // bezier-like or segment-like edge } else { // headless or style disabled // fallback on source and target positions ////////////////////////////////////////// var n1 = ele.source(); var n1pos = n1.position(); var n2 = ele.target(); var n2pos = n2.position(); ex1 = n1pos.x; ex2 = n2pos.x; ey1 = n1pos.y; ey2 = n2pos.y; if (ex1 > ex2) { var _temp2 = ex1; ex1 = ex2; ex2 = _temp2; } if (ey1 > ey2) { var _temp3 = ey1; ey1 = ey2; ey2 = _temp3; } // take into account edge width ex1 -= wHalf; ex2 += wHalf; ey1 -= wHalf; ey2 += wHalf; updateBounds(bounds, ex1, ey1, ex2, ey2); } // headless or style disabled } // edges // handle edge arrow size ///////////////////////// if (styleEnabled && options.includeEdges && isEdge) { updateBoundsFromArrow(bounds, ele, 'mid-source'); updateBoundsFromArrow(bounds, ele, 'mid-target'); updateBoundsFromArrow(bounds, ele, 'source'); updateBoundsFromArrow(bounds, ele, 'target'); } // ghost //////// if (styleEnabled) { var ghost = ele.pstyle('ghost').value === 'yes'; if (ghost) { var gx = ele.pstyle('ghost-offset-x').pfValue; var gy = ele.pstyle('ghost-offset-y').pfValue; updateBounds(bounds, bounds.x1 + gx, bounds.y1 + gy, bounds.x2 + gx, bounds.y2 + gy); } } // always store the body bounds separately from the labels var bbBody = _p.bodyBounds = _p.bodyBounds || {}; assignBoundingBox(bbBody, bounds); expandBoundingBoxSides(bbBody, manualExpansion); expandBoundingBox(bbBody, 1); // expand to work around browser dimension inaccuracies // overlay ////////// if (styleEnabled) { ex1 = bounds.x1; ex2 = bounds.x2; ey1 = bounds.y1; ey2 = bounds.y2; updateBounds(bounds, ex1 - padding, ey1 - padding, ex2 + padding, ey2 + padding); } // always store the body bounds separately from the labels var bbOverlay = _p.overlayBounds = _p.overlayBounds || {}; assignBoundingBox(bbOverlay, bounds); expandBoundingBoxSides(bbOverlay, manualExpansion); expandBoundingBox(bbOverlay, 1); // expand to work around browser dimension inaccuracies // handle label dimensions ////////////////////////// var bbLabels = _p.labelBounds = _p.labelBounds || {}; if (bbLabels.all != null) { clearBoundingBox(bbLabels.all); } else { bbLabels.all = makeBoundingBox(); } if (styleEnabled && options.includeLabels) { if (options.includeMainLabels) { updateBoundsFromLabel(bounds, ele, null); } if (isEdge) { if (options.includeSourceLabels) { updateBoundsFromLabel(bounds, ele, 'source'); } if (options.includeTargetLabels) { updateBoundsFromLabel(bounds, ele, 'target'); } } } // style enabled for labels } // if displayed bounds.x1 = noninf(bounds.x1); bounds.y1 = noninf(bounds.y1); bounds.x2 = noninf(bounds.x2); bounds.y2 = noninf(bounds.y2); bounds.w = noninf(bounds.x2 - bounds.x1); bounds.h = noninf(bounds.y2 - bounds.y1); if (bounds.w > 0 && bounds.h > 0 && displayed) { expandBoundingBoxSides(bounds, manualExpansion); // expand bounds by 1 because antialiasing can increase the visual/effective size by 1 on all sides expandBoundingBox(bounds, 1); } return bounds; }; var getKey = function getKey(opts) { var i = 0; var tf = function tf(val) { return (val ? 1 : 0) << i++; }; var key = 0; key += tf(opts.incudeNodes); key += tf(opts.includeEdges); key += tf(opts.includeLabels); key += tf(opts.includeMainLabels); key += tf(opts.includeSourceLabels); key += tf(opts.includeTargetLabels); key += tf(opts.includeOverlays); key += tf(opts.includeOutlines); return key; }; var getBoundingBoxPosKey = function getBoundingBoxPosKey(ele) { if (ele.isEdge()) { var p1 = ele.source().position(); var p2 = ele.target().position(); var r = function r(x) { return Math.round(x); }; return hashIntsArray([r(p1.x), r(p1.y), r(p2.x), r(p2.y)]); } else { return 0; } }; var cachedBoundingBoxImpl = function cachedBoundingBoxImpl(ele, opts) { var _p = ele._private; var bb; var isEdge = ele.isEdge(); var key = opts == null ? defBbOptsKey : getKey(opts); var usingDefOpts = key === defBbOptsKey; var currPosKey = getBoundingBoxPosKey(ele); var isPosKeySame = _p.bbCachePosKey === currPosKey; var useCache = opts.useCache && isPosKeySame; var isDirty = function isDirty(ele) { return ele._private.bbCache == null || ele._private.styleDirty; }; var needRecalc = !useCache || isDirty(ele) || isEdge && isDirty(ele.source()) || isDirty(ele.target()); if (needRecalc) { if (!isPosKeySame) { ele.recalculateRenderedStyle(useCache); } bb = boundingBoxImpl(ele, defBbOpts); _p.bbCache = bb; _p.bbCachePosKey = currPosKey; } else { bb = _p.bbCache; } // not using def opts => need to build up bb from combination of sub bbs if (!usingDefOpts) { var isNode = ele.isNode(); bb = makeBoundingBox(); if (opts.includeNodes && isNode || opts.includeEdges && !isNode) { if (opts.includeOverlays) { updateBoundsFromBox(bb, _p.overlayBounds); } else { updateBoundsFromBox(bb, _p.bodyBounds); } } if (opts.includeLabels) { if (opts.includeMainLabels && (!isEdge || opts.includeSourceLabels && opts.includeTargetLabels)) { updateBoundsFromBox(bb, _p.labelBounds.all); } else { if (opts.includeMainLabels) { updateBoundsFromBox(bb, _p.labelBounds.mainRot); } if (opts.includeSourceLabels) { updateBoundsFromBox(bb, _p.labelBounds.sourceRot); } if (opts.includeTargetLabels) { updateBoundsFromBox(bb, _p.labelBounds.targetRot); } } } bb.w = bb.x2 - bb.x1; bb.h = bb.y2 - bb.y1; } return bb; }; var defBbOpts = { includeNodes: true, includeEdges: true, includeLabels: true, includeMainLabels: true, includeSourceLabels: true, includeTargetLabels: true, includeOverlays: true, includeUnderlays: true, includeOutlines: true, useCache: true }; var defBbOptsKey = getKey(defBbOpts); var filledBbOpts = defaults$g(defBbOpts); elesfn$b.boundingBox = function (options) { var bounds; // the main usecase is ele.boundingBox() for a single element with no/def options // specified s.t. the cache is used, so check for this case to make it faster by // avoiding the overhead of the rest of the function if (this.length === 1 && this[0]._private.bbCache != null && !this[0]._private.styleDirty && (options === undefined || options.useCache === undefined || options.useCache === true)) { if (options === undefined) { options = defBbOpts; } else { options = filledBbOpts(options); } bounds = cachedBoundingBoxImpl(this[0], options); } else { bounds = makeBoundingBox(); options = options || defBbOpts; var opts = filledBbOpts(options); var eles = this; var cy = eles.cy(); var styleEnabled = cy.styleEnabled(); if (styleEnabled) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var _p = ele._private; var currPosKey = getBoundingBoxPosKey(ele); var isPosKeySame = _p.bbCachePosKey === currPosKey; var useCache = opts.useCache && isPosKeySame && !_p.styleDirty; ele.recalculateRenderedStyle(useCache); } } this.updateCompoundBounds(!options.useCache); for (var _i = 0; _i < eles.length; _i++) { var _ele = eles[_i]; updateBoundsFromBox(bounds, cachedBoundingBoxImpl(_ele, opts)); } } bounds.x1 = noninf(bounds.x1); bounds.y1 = noninf(bounds.y1); bounds.x2 = noninf(bounds.x2); bounds.y2 = noninf(bounds.y2); bounds.w = noninf(bounds.x2 - bounds.x1); bounds.h = noninf(bounds.y2 - bounds.y1); return bounds; }; elesfn$b.dirtyBoundingBoxCache = function () { for (var i = 0; i < this.length; i++) { var _p = this[i]._private; _p.bbCache = null; _p.bbCachePosKey = null; _p.bodyBounds = null; _p.overlayBounds = null; _p.labelBounds.all = null; _p.labelBounds.source = null; _p.labelBounds.target = null; _p.labelBounds.main = null; _p.labelBounds.sourceRot = null; _p.labelBounds.targetRot = null; _p.labelBounds.mainRot = null; _p.arrowBounds.source = null; _p.arrowBounds.target = null; _p.arrowBounds['mid-source'] = null; _p.arrowBounds['mid-target'] = null; } this.emitAndNotify('bounds'); return this; }; // private helper to get bounding box for custom node positions // - good for perf in certain cases but currently requires dirtying the rendered style // - would be better to not modify the nodes but the nodes are read directly everywhere in the renderer... // - try to use for only things like discrete layouts where the node position would change anyway elesfn$b.boundingBoxAt = function (fn) { var nodes = this.nodes(); var cy = this.cy(); var hasCompoundNodes = cy.hasCompoundNodes(); var parents = cy.collection(); if (hasCompoundNodes) { parents = nodes.filter(function (node) { return node.isParent(); }); nodes = nodes.not(parents); } if (plainObject(fn)) { var obj = fn; fn = function fn() { return obj; }; } var storeOldPos = function storeOldPos(node, i) { return node._private.bbAtOldPos = fn(node, i); }; var getOldPos = function getOldPos(node) { return node._private.bbAtOldPos; }; cy.startBatch(); nodes.forEach(storeOldPos).silentPositions(fn); if (hasCompoundNodes) { parents.dirtyCompoundBoundsCache(); parents.dirtyBoundingBoxCache(); parents.updateCompoundBounds(true); // force update b/c we're inside a batch cycle } var bb = copyBoundingBox(this.boundingBox({ useCache: false })); nodes.silentPositions(getOldPos); if (hasCompoundNodes) { parents.dirtyCompoundBoundsCache(); parents.dirtyBoundingBoxCache(); parents.updateCompoundBounds(true); // force update b/c we're inside a batch cycle } cy.endBatch(); return bb; }; fn$3.boundingbox = fn$3.bb = fn$3.boundingBox; fn$3.renderedBoundingbox = fn$3.renderedBoundingBox; var bounds = elesfn$b; var fn$2, elesfn$a; fn$2 = elesfn$a = {}; var defineDimFns = function defineDimFns(opts) { opts.uppercaseName = capitalize(opts.name); opts.autoName = 'auto' + opts.uppercaseName; opts.labelName = 'label' + opts.uppercaseName; opts.outerName = 'outer' + opts.uppercaseName; opts.uppercaseOuterName = capitalize(opts.outerName); fn$2[opts.name] = function dimImpl() { var ele = this[0]; var _p = ele._private; var cy = _p.cy; var styleEnabled = cy._private.styleEnabled; if (ele) { if (styleEnabled) { if (ele.isParent()) { ele.updateCompoundBounds(); return _p[opts.autoName] || 0; } var d = ele.pstyle(opts.name); switch (d.strValue) { case 'label': ele.recalculateRenderedStyle(); return _p.rstyle[opts.labelName] || 0; default: return d.pfValue; } } else { return 1; } } }; fn$2['outer' + opts.uppercaseName] = function outerDimImpl() { var ele = this[0]; var _p = ele._private; var cy = _p.cy; var styleEnabled = cy._private.styleEnabled; if (ele) { if (styleEnabled) { var dim = ele[opts.name](); var border = ele.pstyle('border-width').pfValue; // n.b. 1/2 each side var padding = 2 * ele.padding(); return dim + border + padding; } else { return 1; } } }; fn$2['rendered' + opts.uppercaseName] = function renderedDimImpl() { var ele = this[0]; if (ele) { var d = ele[opts.name](); return d * this.cy().zoom(); } }; fn$2['rendered' + opts.uppercaseOuterName] = function renderedOuterDimImpl() { var ele = this[0]; if (ele) { var od = ele[opts.outerName](); return od * this.cy().zoom(); } }; }; defineDimFns({ name: 'width' }); defineDimFns({ name: 'height' }); elesfn$a.padding = function () { var ele = this[0]; var _p = ele._private; if (ele.isParent()) { ele.updateCompoundBounds(); if (_p.autoPadding !== undefined) { return _p.autoPadding; } else { return ele.pstyle('padding').pfValue; } } else { return ele.pstyle('padding').pfValue; } }; elesfn$a.paddedHeight = function () { var ele = this[0]; return ele.height() + 2 * ele.padding(); }; elesfn$a.paddedWidth = function () { var ele = this[0]; return ele.width() + 2 * ele.padding(); }; var widthHeight = elesfn$a; var ifEdge = function ifEdge(ele, getValue) { if (ele.isEdge()) { return getValue(ele); } }; var ifEdgeRenderedPosition = function ifEdgeRenderedPosition(ele, getPoint) { if (ele.isEdge()) { var cy = ele.cy(); return modelToRenderedPosition(getPoint(ele), cy.zoom(), cy.pan()); } }; var ifEdgeRenderedPositions = function ifEdgeRenderedPositions(ele, getPoints) { if (ele.isEdge()) { var cy = ele.cy(); var pan = cy.pan(); var zoom = cy.zoom(); return getPoints(ele).map(function (p) { return modelToRenderedPosition(p, zoom, pan); }); } }; var controlPoints = function controlPoints(ele) { return ele.renderer().getControlPoints(ele); }; var segmentPoints = function segmentPoints(ele) { return ele.renderer().getSegmentPoints(ele); }; var sourceEndpoint = function sourceEndpoint(ele) { return ele.renderer().getSourceEndpoint(ele); }; var targetEndpoint = function targetEndpoint(ele) { return ele.renderer().getTargetEndpoint(ele); }; var midpoint = function midpoint(ele) { return ele.renderer().getEdgeMidpoint(ele); }; var pts = { controlPoints: { get: controlPoints, mult: true }, segmentPoints: { get: segmentPoints, mult: true }, sourceEndpoint: { get: sourceEndpoint }, targetEndpoint: { get: targetEndpoint }, midpoint: { get: midpoint } }; var renderedName = function renderedName(name) { return 'rendered' + name[0].toUpperCase() + name.substr(1); }; var edgePoints = Object.keys(pts).reduce(function (obj, name) { var spec = pts[name]; var rName = renderedName(name); obj[name] = function () { return ifEdge(this, spec.get); }; if (spec.mult) { obj[rName] = function () { return ifEdgeRenderedPositions(this, spec.get); }; } else { obj[rName] = function () { return ifEdgeRenderedPosition(this, spec.get); }; } return obj; }, {}); var dimensions = extend({}, position, bounds, widthHeight, edgePoints); /*! Event object based on jQuery events, MIT license https://jquery.org/license/ https://tldrlegal.com/license/mit-license https://github.com/jquery/jquery/blob/master/src/event.js */ var Event = function Event(src, props) { this.recycle(src, props); }; function returnFalse() { return false; } function returnTrue() { return true; } // http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html Event.prototype = { instanceString: function instanceString() { return 'event'; }, recycle: function recycle(src, props) { this.isImmediatePropagationStopped = this.isPropagationStopped = this.isDefaultPrevented = returnFalse; if (src != null && src.preventDefault) { // Browser Event object this.type = src.type; // Events bubbling up the document may have been marked as prevented // by a handler lower down the tree; reflect the correct value. this.isDefaultPrevented = src.defaultPrevented ? returnTrue : returnFalse; } else if (src != null && src.type) { // Plain object containing all event details props = src; } else { // Event string this.type = src; } // Put explicitly provided properties onto the event object if (props != null) { // more efficient to manually copy fields we use this.originalEvent = props.originalEvent; this.type = props.type != null ? props.type : this.type; this.cy = props.cy; this.target = props.target; this.position = props.position; this.renderedPosition = props.renderedPosition; this.namespace = props.namespace; this.layout = props.layout; } if (this.cy != null && this.position != null && this.renderedPosition == null) { // create a rendered position based on the passed position var pos = this.position; var zoom = this.cy.zoom(); var pan = this.cy.pan(); this.renderedPosition = { x: pos.x * zoom + pan.x, y: pos.y * zoom + pan.y }; } // Create a timestamp if incoming event doesn't have one this.timeStamp = src && src.timeStamp || Date.now(); }, preventDefault: function preventDefault() { this.isDefaultPrevented = returnTrue; var e = this.originalEvent; if (!e) { return; } // if preventDefault exists run it on the original event if (e.preventDefault) { e.preventDefault(); } }, stopPropagation: function stopPropagation() { this.isPropagationStopped = returnTrue; var e = this.originalEvent; if (!e) { return; } // if stopPropagation exists run it on the original event if (e.stopPropagation) { e.stopPropagation(); } }, stopImmediatePropagation: function stopImmediatePropagation() { this.isImmediatePropagationStopped = returnTrue; this.stopPropagation(); }, isDefaultPrevented: returnFalse, isPropagationStopped: returnFalse, isImmediatePropagationStopped: returnFalse }; var eventRegex = /^([^.]+)(\.(?:[^.]+))?$/; // regex for matching event strings (e.g. "click.namespace") var universalNamespace = '.*'; // matches as if no namespace specified and prevents users from unbinding accidentally var defaults$8 = { qualifierCompare: function qualifierCompare(q1, q2) { return q1 === q2; }, eventMatches: function eventMatches( /*context, listener, eventObj*/ ) { return true; }, addEventFields: function addEventFields( /*context, evt*/ ) {}, callbackContext: function callbackContext(context /*, listener, eventObj*/) { return context; }, beforeEmit: function beforeEmit( /* context, listener, eventObj */ ) {}, afterEmit: function afterEmit( /* context, listener, eventObj */ ) {}, bubble: function bubble( /*context*/ ) { return false; }, parent: function parent( /*context*/ ) { return null; }, context: null }; var defaultsKeys = Object.keys(defaults$8); var emptyOpts = {}; function Emitter() { var opts = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : emptyOpts; var context = arguments.length > 1 ? arguments[1] : undefined; // micro-optimisation vs Object.assign() -- reduces Element instantiation time for (var i = 0; i < defaultsKeys.length; i++) { var key = defaultsKeys[i]; this[key] = opts[key] || defaults$8[key]; } this.context = context || this.context; this.listeners = []; this.emitting = 0; } var p = Emitter.prototype; var forEachEvent = function forEachEvent(self, handler, events, qualifier, callback, conf, confOverrides) { if (fn$6(qualifier)) { callback = qualifier; qualifier = null; } if (confOverrides) { if (conf == null) { conf = confOverrides; } else { conf = extend({}, conf, confOverrides); } } var eventList = array(events) ? events : events.split(/\s+/); for (var i = 0; i < eventList.length; i++) { var evt = eventList[i]; if (emptyString(evt)) { continue; } var match = evt.match(eventRegex); // type[.namespace] if (match) { var type = match[1]; var namespace = match[2] ? match[2] : null; var ret = handler(self, evt, type, namespace, qualifier, callback, conf); if (ret === false) { break; } // allow exiting early } } }; var makeEventObj = function makeEventObj(self, obj) { self.addEventFields(self.context, obj); return new Event(obj.type, obj); }; var forEachEventObj = function forEachEventObj(self, handler, events) { if (event(events)) { handler(self, events); return; } else if (plainObject(events)) { handler(self, makeEventObj(self, events)); return; } var eventList = array(events) ? events : events.split(/\s+/); for (var i = 0; i < eventList.length; i++) { var evt = eventList[i]; if (emptyString(evt)) { continue; } var match = evt.match(eventRegex); // type[.namespace] if (match) { var type = match[1]; var namespace = match[2] ? match[2] : null; var eventObj = makeEventObj(self, { type: type, namespace: namespace, target: self.context }); handler(self, eventObj); } } }; p.on = p.addListener = function (events, qualifier, callback, conf, confOverrides) { forEachEvent(this, function (self, event, type, namespace, qualifier, callback, conf) { if (fn$6(callback)) { self.listeners.push({ event: event, // full event string callback: callback, // callback to run type: type, // the event type (e.g. 'click') namespace: namespace, // the event namespace (e.g. ".foo") qualifier: qualifier, // a restriction on whether to match this emitter conf: conf // additional configuration }); } }, events, qualifier, callback, conf, confOverrides); return this; }; p.one = function (events, qualifier, callback, conf) { return this.on(events, qualifier, callback, conf, { one: true }); }; p.removeListener = p.off = function (events, qualifier, callback, conf) { var _this = this; if (this.emitting !== 0) { this.listeners = copyArray$1(this.listeners); } var listeners = this.listeners; var _loop = function _loop(i) { var listener = listeners[i]; forEachEvent(_this, function (self, event, type, namespace, qualifier, callback /*, conf*/) { if ((listener.type === type || events === '*') && (!namespace && listener.namespace !== '.*' || listener.namespace === namespace) && (!qualifier || self.qualifierCompare(listener.qualifier, qualifier)) && (!callback || listener.callback === callback)) { listeners.splice(i, 1); return false; } }, events, qualifier, callback, conf); }; for (var i = listeners.length - 1; i >= 0; i--) { _loop(i); } return this; }; p.removeAllListeners = function () { return this.removeListener('*'); }; p.emit = p.trigger = function (events, extraParams, manualCallback) { var listeners = this.listeners; var numListenersBeforeEmit = listeners.length; this.emitting++; if (!array(extraParams)) { extraParams = [extraParams]; } forEachEventObj(this, function (self, eventObj) { if (manualCallback != null) { listeners = [{ event: eventObj.event, type: eventObj.type, namespace: eventObj.namespace, callback: manualCallback }]; numListenersBeforeEmit = listeners.length; } var _loop2 = function _loop2(i) { var listener = listeners[i]; if (listener.type === eventObj.type && (!listener.namespace || listener.namespace === eventObj.namespace || listener.namespace === universalNamespace) && self.eventMatches(self.context, listener, eventObj)) { var args = [eventObj]; if (extraParams != null) { push(args, extraParams); } self.beforeEmit(self.context, listener, eventObj); if (listener.conf && listener.conf.one) { self.listeners = self.listeners.filter(function (l) { return l !== listener; }); } var context = self.callbackContext(self.context, listener, eventObj); var ret = listener.callback.apply(context, args); self.afterEmit(self.context, listener, eventObj); if (ret === false) { eventObj.stopPropagation(); eventObj.preventDefault(); } } // if listener matches }; for (var i = 0; i < numListenersBeforeEmit; i++) { _loop2(i); } // for listener if (self.bubble(self.context) && !eventObj.isPropagationStopped()) { self.parent(self.context).emit(eventObj, extraParams); } }, events); this.emitting--; return this; }; var emitterOptions$1 = { qualifierCompare: function qualifierCompare(selector1, selector2) { if (selector1 == null || selector2 == null) { return selector1 == null && selector2 == null; } else { return selector1.sameText(selector2); } }, eventMatches: function eventMatches(ele, listener, eventObj) { var selector = listener.qualifier; if (selector != null) { return ele !== eventObj.target && element(eventObj.target) && selector.matches(eventObj.target); } return true; }, addEventFields: function addEventFields(ele, evt) { evt.cy = ele.cy(); evt.target = ele; }, callbackContext: function callbackContext(ele, listener, eventObj) { return listener.qualifier != null ? eventObj.target : ele; }, beforeEmit: function beforeEmit(context, listener /*, eventObj*/) { if (listener.conf && listener.conf.once) { listener.conf.onceCollection.removeListener(listener.event, listener.qualifier, listener.callback); } }, bubble: function bubble() { return true; }, parent: function parent(ele) { return ele.isChild() ? ele.parent() : ele.cy(); } }; var argSelector$1 = function argSelector(arg) { if (string(arg)) { return new Selector(arg); } else { return arg; } }; var elesfn$9 = { createEmitter: function createEmitter() { for (var i = 0; i < this.length; i++) { var ele = this[i]; var _p = ele._private; if (!_p.emitter) { _p.emitter = new Emitter(emitterOptions$1, ele); } } return this; }, emitter: function emitter() { return this._private.emitter; }, on: function on(events, selector, callback) { var argSel = argSelector$1(selector); for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().on(events, argSel, callback); } return this; }, removeListener: function removeListener(events, selector, callback) { var argSel = argSelector$1(selector); for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().removeListener(events, argSel, callback); } return this; }, removeAllListeners: function removeAllListeners() { for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().removeAllListeners(); } return this; }, one: function one(events, selector, callback) { var argSel = argSelector$1(selector); for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().one(events, argSel, callback); } return this; }, once: function once(events, selector, callback) { var argSel = argSelector$1(selector); for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().on(events, argSel, callback, { once: true, onceCollection: this }); } }, emit: function emit(events, extraParams) { for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().emit(events, extraParams); } return this; }, emitAndNotify: function emitAndNotify(event, extraParams) { // for internal use only if (this.length === 0) { return; } // empty collections don't need to notify anything // notify renderer this.cy().notify(event, this); this.emit(event, extraParams); return this; } }; define.eventAliasesOn(elesfn$9); var elesfn$8 = { nodes: function nodes(selector) { return this.filter(function (ele) { return ele.isNode(); }).filter(selector); }, edges: function edges(selector) { return this.filter(function (ele) { return ele.isEdge(); }).filter(selector); }, // internal helper to get nodes and edges as separate collections with single iteration over elements byGroup: function byGroup() { var nodes = this.spawn(); var edges = this.spawn(); for (var i = 0; i < this.length; i++) { var ele = this[i]; if (ele.isNode()) { nodes.push(ele); } else { edges.push(ele); } } return { nodes: nodes, edges: edges }; }, filter: function filter(_filter, thisArg) { if (_filter === undefined) { // check this first b/c it's the most common/performant case return this; } else if (string(_filter) || elementOrCollection(_filter)) { return new Selector(_filter).filter(this); } else if (fn$6(_filter)) { var filterEles = this.spawn(); var eles = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var include = thisArg ? _filter.apply(thisArg, [ele, i, eles]) : _filter(ele, i, eles); if (include) { filterEles.push(ele); } } return filterEles; } return this.spawn(); // if not handled by above, give 'em an empty collection }, not: function not(toRemove) { if (!toRemove) { return this; } else { if (string(toRemove)) { toRemove = this.filter(toRemove); } var elements = this.spawn(); for (var i = 0; i < this.length; i++) { var element = this[i]; var remove = toRemove.has(element); if (!remove) { elements.push(element); } } return elements; } }, absoluteComplement: function absoluteComplement() { var cy = this.cy(); return cy.mutableElements().not(this); }, intersect: function intersect(other) { // if a selector is specified, then filter by it instead if (string(other)) { var selector = other; return this.filter(selector); } var elements = this.spawn(); var col1 = this; var col2 = other; var col1Smaller = this.length < other.length; var colS = col1Smaller ? col1 : col2; var colL = col1Smaller ? col2 : col1; for (var i = 0; i < colS.length; i++) { var ele = colS[i]; if (colL.has(ele)) { elements.push(ele); } } return elements; }, xor: function xor(other) { var cy = this._private.cy; if (string(other)) { other = cy.$(other); } var elements = this.spawn(); var col1 = this; var col2 = other; var add = function add(col, other) { for (var i = 0; i < col.length; i++) { var ele = col[i]; var id = ele._private.data.id; var inOther = other.hasElementWithId(id); if (!inOther) { elements.push(ele); } } }; add(col1, col2); add(col2, col1); return elements; }, diff: function diff(other) { var cy = this._private.cy; if (string(other)) { other = cy.$(other); } var left = this.spawn(); var right = this.spawn(); var both = this.spawn(); var col1 = this; var col2 = other; var add = function add(col, other, retEles) { for (var i = 0; i < col.length; i++) { var ele = col[i]; var id = ele._private.data.id; var inOther = other.hasElementWithId(id); if (inOther) { both.merge(ele); } else { retEles.push(ele); } } }; add(col1, col2, left); add(col2, col1, right); return { left: left, right: right, both: both }; }, add: function add(toAdd) { var cy = this._private.cy; if (!toAdd) { return this; } if (string(toAdd)) { var selector = toAdd; toAdd = cy.mutableElements().filter(selector); } var elements = this.spawnSelf(); for (var i = 0; i < toAdd.length; i++) { var ele = toAdd[i]; var add = !this.has(ele); if (add) { elements.push(ele); } } return elements; }, // in place merge on calling collection merge: function merge(toAdd) { var _p = this._private; var cy = _p.cy; if (!toAdd) { return this; } if (toAdd && string(toAdd)) { var selector = toAdd; toAdd = cy.mutableElements().filter(selector); } var map = _p.map; for (var i = 0; i < toAdd.length; i++) { var toAddEle = toAdd[i]; var id = toAddEle._private.data.id; var add = !map.has(id); if (add) { var index = this.length++; this[index] = toAddEle; map.set(id, { ele: toAddEle, index: index }); } } return this; // chaining }, unmergeAt: function unmergeAt(i) { var ele = this[i]; var id = ele.id(); var _p = this._private; var map = _p.map; // remove ele this[i] = undefined; map["delete"](id); var unmergedLastEle = i === this.length - 1; // replace empty spot with last ele in collection if (this.length > 1 && !unmergedLastEle) { var lastEleI = this.length - 1; var lastEle = this[lastEleI]; var lastEleId = lastEle._private.data.id; this[lastEleI] = undefined; this[i] = lastEle; map.set(lastEleId, { ele: lastEle, index: i }); } // the collection is now 1 ele smaller this.length--; return this; }, // remove single ele in place in calling collection unmergeOne: function unmergeOne(ele) { ele = ele[0]; var _p = this._private; var id = ele._private.data.id; var map = _p.map; var entry = map.get(id); if (!entry) { return this; // no need to remove } var i = entry.index; this.unmergeAt(i); return this; }, // remove eles in place on calling collection unmerge: function unmerge(toRemove) { var cy = this._private.cy; if (!toRemove) { return this; } if (toRemove && string(toRemove)) { var selector = toRemove; toRemove = cy.mutableElements().filter(selector); } for (var i = 0; i < toRemove.length; i++) { this.unmergeOne(toRemove[i]); } return this; // chaining }, unmergeBy: function unmergeBy(toRmFn) { for (var i = this.length - 1; i >= 0; i--) { var ele = this[i]; if (toRmFn(ele)) { this.unmergeAt(i); } } return this; }, map: function map(mapFn, thisArg) { var arr = []; var eles = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var ret = thisArg ? mapFn.apply(thisArg, [ele, i, eles]) : mapFn(ele, i, eles); arr.push(ret); } return arr; }, reduce: function reduce(fn, initialValue) { var val = initialValue; var eles = this; for (var i = 0; i < eles.length; i++) { val = fn(val, eles[i], i, eles); } return val; }, max: function max(valFn, thisArg) { var max = -Infinity; var maxEle; var eles = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var val = thisArg ? valFn.apply(thisArg, [ele, i, eles]) : valFn(ele, i, eles); if (val > max) { max = val; maxEle = ele; } } return { value: max, ele: maxEle }; }, min: function min(valFn, thisArg) { var min = Infinity; var minEle; var eles = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var val = thisArg ? valFn.apply(thisArg, [ele, i, eles]) : valFn(ele, i, eles); if (val < min) { min = val; minEle = ele; } } return { value: min, ele: minEle }; } }; // aliases var fn$1 = elesfn$8; fn$1['u'] = fn$1['|'] = fn$1['+'] = fn$1.union = fn$1.or = fn$1.add; fn$1['\\'] = fn$1['!'] = fn$1['-'] = fn$1.difference = fn$1.relativeComplement = fn$1.subtract = fn$1.not; fn$1['n'] = fn$1['&'] = fn$1['.'] = fn$1.and = fn$1.intersection = fn$1.intersect; fn$1['^'] = fn$1['(+)'] = fn$1['(-)'] = fn$1.symmetricDifference = fn$1.symdiff = fn$1.xor; fn$1.fnFilter = fn$1.filterFn = fn$1.stdFilter = fn$1.filter; fn$1.complement = fn$1.abscomp = fn$1.absoluteComplement; var elesfn$7 = { isNode: function isNode() { return this.group() === 'nodes'; }, isEdge: function isEdge() { return this.group() === 'edges'; }, isLoop: function isLoop() { return this.isEdge() && this.source()[0] === this.target()[0]; }, isSimple: function isSimple() { return this.isEdge() && this.source()[0] !== this.target()[0]; }, group: function group() { var ele = this[0]; if (ele) { return ele._private.group; } } }; /** * Elements are drawn in a specific order based on compound depth (low to high), the element type (nodes above edges), * and z-index (low to high). These styles affect how this applies: * * z-compound-depth: May be `bottom | orphan | auto | top`. The first drawn is `bottom`, then `orphan` which is the * same depth as the root of the compound graph, followed by the default value `auto` which draws in order from * root to leaves of the compound graph. The last drawn is `top`. * z-index-compare: May be `auto | manual`. The default value is `auto` which always draws edges under nodes. * `manual` ignores this convention and draws based on the `z-index` value setting. * z-index: An integer value that affects the relative draw order of elements. In general, an element with a higher * `z-index` will be drawn on top of an element with a lower `z-index`. */ var zIndexSort = function zIndexSort(a, b) { var cy = a.cy(); var hasCompoundNodes = cy.hasCompoundNodes(); function getDepth(ele) { var style = ele.pstyle('z-compound-depth'); if (style.value === 'auto') { return hasCompoundNodes ? ele.zDepth() : 0; } else if (style.value === 'bottom') { return -1; } else if (style.value === 'top') { return MAX_INT$1; } // 'orphan' return 0; } var depthDiff = getDepth(a) - getDepth(b); if (depthDiff !== 0) { return depthDiff; } function getEleDepth(ele) { var style = ele.pstyle('z-index-compare'); if (style.value === 'auto') { return ele.isNode() ? 1 : 0; } // 'manual' return 0; } var eleDiff = getEleDepth(a) - getEleDepth(b); if (eleDiff !== 0) { return eleDiff; } var zDiff = a.pstyle('z-index').value - b.pstyle('z-index').value; if (zDiff !== 0) { return zDiff; } // compare indices in the core (order added to graph w/ last on top) return a.poolIndex() - b.poolIndex(); }; var elesfn$6 = { forEach: function forEach(fn, thisArg) { if (fn$6(fn)) { var N = this.length; for (var i = 0; i < N; i++) { var ele = this[i]; var ret = thisArg ? fn.apply(thisArg, [ele, i, this]) : fn(ele, i, this); if (ret === false) { break; } // exit each early on return false } } return this; }, toArray: function toArray() { var array = []; for (var i = 0; i < this.length; i++) { array.push(this[i]); } return array; }, slice: function slice(start, end) { var array = []; var thisSize = this.length; if (end == null) { end = thisSize; } if (start == null) { start = 0; } if (start < 0) { start = thisSize + start; } if (end < 0) { end = thisSize + end; } for (var i = start; i >= 0 && i < end && i < thisSize; i++) { array.push(this[i]); } return this.spawn(array); }, size: function size() { return this.length; }, eq: function eq(i) { return this[i] || this.spawn(); }, first: function first() { return this[0] || this.spawn(); }, last: function last() { return this[this.length - 1] || this.spawn(); }, empty: function empty() { return this.length === 0; }, nonempty: function nonempty() { return !this.empty(); }, sort: function sort(sortFn) { if (!fn$6(sortFn)) { return this; } var sorted = this.toArray().sort(sortFn); return this.spawn(sorted); }, sortByZIndex: function sortByZIndex() { return this.sort(zIndexSort); }, zDepth: function zDepth() { var ele = this[0]; if (!ele) { return undefined; } // let cy = ele.cy(); var _p = ele._private; var group = _p.group; if (group === 'nodes') { var depth = _p.data.parent ? ele.parents().size() : 0; if (!ele.isParent()) { return MAX_INT$1 - 1; // childless nodes always on top } return depth; } else { var src = _p.source; var tgt = _p.target; var srcDepth = src.zDepth(); var tgtDepth = tgt.zDepth(); return Math.max(srcDepth, tgtDepth, 0); // depth of deepest parent } } }; elesfn$6.each = elesfn$6.forEach; var defineSymbolIterator = function defineSymbolIterator() { var typeofUndef = "undefined" ; var isIteratorSupported = (typeof Symbol === "undefined" ? "undefined" : _typeof(Symbol)) != typeofUndef && _typeof(Symbol.iterator) != typeofUndef; // eslint-disable-line no-undef if (isIteratorSupported) { elesfn$6[Symbol.iterator] = function () { var _this = this; // eslint-disable-line no-undef var entry = { value: undefined, done: false }; var i = 0; var length = this.length; return _defineProperty$1({ next: function next() { if (i < length) { entry.value = _this[i++]; } else { entry.value = undefined; entry.done = true; } return entry; } }, Symbol.iterator, function () { // eslint-disable-line no-undef return this; }); }; } }; defineSymbolIterator(); var getLayoutDimensionOptions = defaults$g({ nodeDimensionsIncludeLabels: false }); var elesfn$5 = { // Calculates and returns node dimensions { x, y } based on options given layoutDimensions: function layoutDimensions(options) { options = getLayoutDimensionOptions(options); var dims; if (!this.takesUpSpace()) { dims = { w: 0, h: 0 }; } else if (options.nodeDimensionsIncludeLabels) { var bbDim = this.boundingBox(); dims = { w: bbDim.w, h: bbDim.h }; } else { dims = { w: this.outerWidth(), h: this.outerHeight() }; } // sanitise the dimensions for external layouts (avoid division by zero) if (dims.w === 0 || dims.h === 0) { dims.w = dims.h = 1; } return dims; }, // using standard layout options, apply position function (w/ or w/o animation) layoutPositions: function layoutPositions(layout, options, fn) { var nodes = this.nodes().filter(function (n) { return !n.isParent(); }); var cy = this.cy(); var layoutEles = options.eles; // nodes & edges var getMemoizeKey = function getMemoizeKey(node) { return node.id(); }; var fnMem = memoize$1(fn, getMemoizeKey); // memoized version of position function layout.emit({ type: 'layoutstart', layout: layout }); layout.animations = []; var calculateSpacing = function calculateSpacing(spacing, nodesBb, pos) { var center = { x: nodesBb.x1 + nodesBb.w / 2, y: nodesBb.y1 + nodesBb.h / 2 }; var spacingVector = { // scale from center of bounding box (not necessarily 0,0) x: (pos.x - center.x) * spacing, y: (pos.y - center.y) * spacing }; return { x: center.x + spacingVector.x, y: center.y + spacingVector.y }; }; var useSpacingFactor = options.spacingFactor && options.spacingFactor !== 1; var spacingBb = function spacingBb() { if (!useSpacingFactor) { return null; } var bb = makeBoundingBox(); for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; var pos = fnMem(node, i); expandBoundingBoxByPoint(bb, pos.x, pos.y); } return bb; }; var bb = spacingBb(); var getFinalPos = memoize$1(function (node, i) { var newPos = fnMem(node, i); if (useSpacingFactor) { var spacing = Math.abs(options.spacingFactor); newPos = calculateSpacing(spacing, bb, newPos); } if (options.transform != null) { newPos = options.transform(node, newPos); } return newPos; }, getMemoizeKey); if (options.animate) { for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; var newPos = getFinalPos(node, i); var animateNode = options.animateFilter == null || options.animateFilter(node, i); if (animateNode) { var ani = node.animation({ position: newPos, duration: options.animationDuration, easing: options.animationEasing }); layout.animations.push(ani); } else { node.position(newPos); } } if (options.fit) { var fitAni = cy.animation({ fit: { boundingBox: layoutEles.boundingBoxAt(getFinalPos), padding: options.padding }, duration: options.animationDuration, easing: options.animationEasing }); layout.animations.push(fitAni); } else if (options.zoom !== undefined && options.pan !== undefined) { var zoomPanAni = cy.animation({ zoom: options.zoom, pan: options.pan, duration: options.animationDuration, easing: options.animationEasing }); layout.animations.push(zoomPanAni); } layout.animations.forEach(function (ani) { return ani.play(); }); layout.one('layoutready', options.ready); layout.emit({ type: 'layoutready', layout: layout }); Promise$1.all(layout.animations.map(function (ani) { return ani.promise(); })).then(function () { layout.one('layoutstop', options.stop); layout.emit({ type: 'layoutstop', layout: layout }); }); } else { nodes.positions(getFinalPos); if (options.fit) { cy.fit(options.eles, options.padding); } if (options.zoom != null) { cy.zoom(options.zoom); } if (options.pan) { cy.pan(options.pan); } layout.one('layoutready', options.ready); layout.emit({ type: 'layoutready', layout: layout }); layout.one('layoutstop', options.stop); layout.emit({ type: 'layoutstop', layout: layout }); } return this; // chaining }, layout: function layout(options) { var cy = this.cy(); return cy.makeLayout(extend({}, options, { eles: this })); } }; // aliases: elesfn$5.createLayout = elesfn$5.makeLayout = elesfn$5.layout; function styleCache(key, fn, ele) { var _p = ele._private; var cache = _p.styleCache = _p.styleCache || []; var val; if ((val = cache[key]) != null) { return val; } else { val = cache[key] = fn(ele); return val; } } function cacheStyleFunction(key, fn) { key = hashString(key); return function cachedStyleFunction(ele) { return styleCache(key, fn, ele); }; } function cachePrototypeStyleFunction(key, fn) { key = hashString(key); var selfFn = function selfFn(ele) { return fn.call(ele); }; return function cachedPrototypeStyleFunction() { var ele = this[0]; if (ele) { return styleCache(key, selfFn, ele); } }; } var elesfn$4 = { recalculateRenderedStyle: function recalculateRenderedStyle(useCache) { var cy = this.cy(); var renderer = cy.renderer(); var styleEnabled = cy.styleEnabled(); if (renderer && styleEnabled) { renderer.recalculateRenderedStyle(this, useCache); } return this; }, dirtyStyleCache: function dirtyStyleCache() { var cy = this.cy(); var dirty = function dirty(ele) { return ele._private.styleCache = null; }; if (cy.hasCompoundNodes()) { var eles; eles = this.spawnSelf().merge(this.descendants()).merge(this.parents()); eles.merge(eles.connectedEdges()); eles.forEach(dirty); } else { this.forEach(function (ele) { dirty(ele); ele.connectedEdges().forEach(dirty); }); } return this; }, // fully updates (recalculates) the style for the elements updateStyle: function updateStyle(notifyRenderer) { var cy = this._private.cy; if (!cy.styleEnabled()) { return this; } if (cy.batching()) { var bEles = cy._private.batchStyleEles; bEles.merge(this); return this; // chaining and exit early when batching } var hasCompounds = cy.hasCompoundNodes(); var updatedEles = this; notifyRenderer = notifyRenderer || notifyRenderer === undefined ? true : false; if (hasCompounds) { // then add everything up and down for compound selector checks updatedEles = this.spawnSelf().merge(this.descendants()).merge(this.parents()); } // let changedEles = style.apply( updatedEles ); var changedEles = updatedEles; if (notifyRenderer) { changedEles.emitAndNotify('style'); // let renderer know we changed style } else { changedEles.emit('style'); // just fire the event } updatedEles.forEach(function (ele) { return ele._private.styleDirty = true; }); return this; // chaining }, // private: clears dirty flag and recalculates style cleanStyle: function cleanStyle() { var cy = this.cy(); if (!cy.styleEnabled()) { return; } for (var i = 0; i < this.length; i++) { var ele = this[i]; if (ele._private.styleDirty) { // n.b. this flag should be set before apply() to avoid potential infinite recursion ele._private.styleDirty = false; cy.style().apply(ele); } } }, // get the internal parsed style object for the specified property parsedStyle: function parsedStyle(property) { var includeNonDefault = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; var ele = this[0]; var cy = ele.cy(); if (!cy.styleEnabled()) { return; } if (ele) { this.cleanStyle(); var overriddenStyle = ele._private.style[property]; if (overriddenStyle != null) { return overriddenStyle; } else if (includeNonDefault) { return cy.style().getDefaultProperty(property); } else { return null; } } }, numericStyle: function numericStyle(property) { var ele = this[0]; if (!ele.cy().styleEnabled()) { return; } if (ele) { var pstyle = ele.pstyle(property); return pstyle.pfValue !== undefined ? pstyle.pfValue : pstyle.value; } }, numericStyleUnits: function numericStyleUnits(property) { var ele = this[0]; if (!ele.cy().styleEnabled()) { return; } if (ele) { return ele.pstyle(property).units; } }, // get the specified css property as a rendered value (i.e. on-screen value) // or get the whole rendered style if no property specified (NB doesn't allow setting) renderedStyle: function renderedStyle(property) { var cy = this.cy(); if (!cy.styleEnabled()) { return this; } var ele = this[0]; if (ele) { return cy.style().getRenderedStyle(ele, property); } }, // read the calculated css style of the element or override the style (via a bypass) style: function style(name, value) { var cy = this.cy(); if (!cy.styleEnabled()) { return this; } var updateTransitions = false; var style = cy.style(); if (plainObject(name)) { // then extend the bypass var props = name; style.applyBypass(this, props, updateTransitions); this.emitAndNotify('style'); // let the renderer know we've updated style } else if (string(name)) { if (value === undefined) { // then get the property from the style var ele = this[0]; if (ele) { return style.getStylePropertyValue(ele, name); } else { // empty collection => can't get any value return; } } else { // then set the bypass with the property value style.applyBypass(this, name, value, updateTransitions); this.emitAndNotify('style'); // let the renderer know we've updated style } } else if (name === undefined) { var _ele = this[0]; if (_ele) { return style.getRawStyle(_ele); } else { // empty collection => can't get any value return; } } return this; // chaining }, removeStyle: function removeStyle(names) { var cy = this.cy(); if (!cy.styleEnabled()) { return this; } var updateTransitions = false; var style = cy.style(); var eles = this; if (names === undefined) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; style.removeAllBypasses(ele, updateTransitions); } } else { names = names.split(/\s+/); for (var _i = 0; _i < eles.length; _i++) { var _ele2 = eles[_i]; style.removeBypasses(_ele2, names, updateTransitions); } } this.emitAndNotify('style'); // let the renderer know we've updated style return this; // chaining }, show: function show() { this.css('display', 'element'); return this; // chaining }, hide: function hide() { this.css('display', 'none'); return this; // chaining }, effectiveOpacity: function effectiveOpacity() { var cy = this.cy(); if (!cy.styleEnabled()) { return 1; } var hasCompoundNodes = cy.hasCompoundNodes(); var ele = this[0]; if (ele) { var _p = ele._private; var parentOpacity = ele.pstyle('opacity').value; if (!hasCompoundNodes) { return parentOpacity; } var parents = !_p.data.parent ? null : ele.parents(); if (parents) { for (var i = 0; i < parents.length; i++) { var parent = parents[i]; var opacity = parent.pstyle('opacity').value; parentOpacity = opacity * parentOpacity; } } return parentOpacity; } }, transparent: function transparent() { var cy = this.cy(); if (!cy.styleEnabled()) { return false; } var ele = this[0]; var hasCompoundNodes = ele.cy().hasCompoundNodes(); if (ele) { if (!hasCompoundNodes) { return ele.pstyle('opacity').value === 0; } else { return ele.effectiveOpacity() === 0; } } }, backgrounding: function backgrounding() { var cy = this.cy(); if (!cy.styleEnabled()) { return false; } var ele = this[0]; return ele._private.backgrounding ? true : false; } }; function checkCompound(ele, parentOk) { var _p = ele._private; var parents = _p.data.parent ? ele.parents() : null; if (parents) { for (var i = 0; i < parents.length; i++) { var parent = parents[i]; if (!parentOk(parent)) { return false; } } } return true; } function defineDerivedStateFunction(specs) { var ok = specs.ok; var edgeOkViaNode = specs.edgeOkViaNode || specs.ok; var parentOk = specs.parentOk || specs.ok; return function () { var cy = this.cy(); if (!cy.styleEnabled()) { return true; } var ele = this[0]; var hasCompoundNodes = cy.hasCompoundNodes(); if (ele) { var _p = ele._private; if (!ok(ele)) { return false; } if (ele.isNode()) { return !hasCompoundNodes || checkCompound(ele, parentOk); } else { var src = _p.source; var tgt = _p.target; return edgeOkViaNode(src) && (!hasCompoundNodes || checkCompound(src, edgeOkViaNode)) && (src === tgt || edgeOkViaNode(tgt) && (!hasCompoundNodes || checkCompound(tgt, edgeOkViaNode))); } } }; } var eleTakesUpSpace = cacheStyleFunction('eleTakesUpSpace', function (ele) { return ele.pstyle('display').value === 'element' && ele.width() !== 0 && (ele.isNode() ? ele.height() !== 0 : true); }); elesfn$4.takesUpSpace = cachePrototypeStyleFunction('takesUpSpace', defineDerivedStateFunction({ ok: eleTakesUpSpace })); var eleInteractive = cacheStyleFunction('eleInteractive', function (ele) { return ele.pstyle('events').value === 'yes' && ele.pstyle('visibility').value === 'visible' && eleTakesUpSpace(ele); }); var parentInteractive = cacheStyleFunction('parentInteractive', function (parent) { return parent.pstyle('visibility').value === 'visible' && eleTakesUpSpace(parent); }); elesfn$4.interactive = cachePrototypeStyleFunction('interactive', defineDerivedStateFunction({ ok: eleInteractive, parentOk: parentInteractive, edgeOkViaNode: eleTakesUpSpace })); elesfn$4.noninteractive = function () { var ele = this[0]; if (ele) { return !ele.interactive(); } }; var eleVisible = cacheStyleFunction('eleVisible', function (ele) { return ele.pstyle('visibility').value === 'visible' && ele.pstyle('opacity').pfValue !== 0 && eleTakesUpSpace(ele); }); var edgeVisibleViaNode = eleTakesUpSpace; elesfn$4.visible = cachePrototypeStyleFunction('visible', defineDerivedStateFunction({ ok: eleVisible, edgeOkViaNode: edgeVisibleViaNode })); elesfn$4.hidden = function () { var ele = this[0]; if (ele) { return !ele.visible(); } }; elesfn$4.isBundledBezier = cachePrototypeStyleFunction('isBundledBezier', function () { if (!this.cy().styleEnabled()) { return false; } return !this.removed() && this.pstyle('curve-style').value === 'bezier' && this.takesUpSpace(); }); elesfn$4.bypass = elesfn$4.css = elesfn$4.style; elesfn$4.renderedCss = elesfn$4.renderedStyle; elesfn$4.removeBypass = elesfn$4.removeCss = elesfn$4.removeStyle; elesfn$4.pstyle = elesfn$4.parsedStyle; var elesfn$3 = {}; function defineSwitchFunction(params) { return function () { var args = arguments; var changedEles = []; // e.g. cy.nodes().select( data, handler ) if (args.length === 2) { var data = args[0]; var handler = args[1]; this.on(params.event, data, handler); } // e.g. cy.nodes().select( handler ) else if (args.length === 1 && fn$6(args[0])) { var _handler = args[0]; this.on(params.event, _handler); } // e.g. cy.nodes().select() // e.g. (private) cy.nodes().select(['tapselect']) else if (args.length === 0 || args.length === 1 && array(args[0])) { var addlEvents = args.length === 1 ? args[0] : null; for (var i = 0; i < this.length; i++) { var ele = this[i]; var able = !params.ableField || ele._private[params.ableField]; var changed = ele._private[params.field] != params.value; if (params.overrideAble) { var overrideAble = params.overrideAble(ele); if (overrideAble !== undefined) { able = overrideAble; if (!overrideAble) { return this; } // to save cycles assume not able for all on override } } if (able) { ele._private[params.field] = params.value; if (changed) { changedEles.push(ele); } } } var changedColl = this.spawn(changedEles); changedColl.updateStyle(); // change of state => possible change of style changedColl.emit(params.event); if (addlEvents) { changedColl.emit(addlEvents); } } return this; }; } function defineSwitchSet(params) { elesfn$3[params.field] = function () { var ele = this[0]; if (ele) { if (params.overrideField) { var val = params.overrideField(ele); if (val !== undefined) { return val; } } return ele._private[params.field]; } }; elesfn$3[params.on] = defineSwitchFunction({ event: params.on, field: params.field, ableField: params.ableField, overrideAble: params.overrideAble, value: true }); elesfn$3[params.off] = defineSwitchFunction({ event: params.off, field: params.field, ableField: params.ableField, overrideAble: params.overrideAble, value: false }); } defineSwitchSet({ field: 'locked', overrideField: function overrideField(ele) { return ele.cy().autolock() ? true : undefined; }, on: 'lock', off: 'unlock' }); defineSwitchSet({ field: 'grabbable', overrideField: function overrideField(ele) { return ele.cy().autoungrabify() || ele.pannable() ? false : undefined; }, on: 'grabify', off: 'ungrabify' }); defineSwitchSet({ field: 'selected', ableField: 'selectable', overrideAble: function overrideAble(ele) { return ele.cy().autounselectify() ? false : undefined; }, on: 'select', off: 'unselect' }); defineSwitchSet({ field: 'selectable', overrideField: function overrideField(ele) { return ele.cy().autounselectify() ? false : undefined; }, on: 'selectify', off: 'unselectify' }); elesfn$3.deselect = elesfn$3.unselect; elesfn$3.grabbed = function () { var ele = this[0]; if (ele) { return ele._private.grabbed; } }; defineSwitchSet({ field: 'active', on: 'activate', off: 'unactivate' }); defineSwitchSet({ field: 'pannable', on: 'panify', off: 'unpanify' }); elesfn$3.inactive = function () { var ele = this[0]; if (ele) { return !ele._private.active; } }; var elesfn$2 = {}; // DAG functions //////////////// var defineDagExtremity = function defineDagExtremity(params) { return function dagExtremityImpl(selector) { var eles = this; var ret = []; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; if (!ele.isNode()) { continue; } var disqualified = false; var edges = ele.connectedEdges(); for (var j = 0; j < edges.length; j++) { var edge = edges[j]; var src = edge.source(); var tgt = edge.target(); if (params.noIncomingEdges && tgt === ele && src !== ele || params.noOutgoingEdges && src === ele && tgt !== ele) { disqualified = true; break; } } if (!disqualified) { ret.push(ele); } } return this.spawn(ret, true).filter(selector); }; }; var defineDagOneHop = function defineDagOneHop(params) { return function (selector) { var eles = this; var oEles = []; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; if (!ele.isNode()) { continue; } var edges = ele.connectedEdges(); for (var j = 0; j < edges.length; j++) { var edge = edges[j]; var src = edge.source(); var tgt = edge.target(); if (params.outgoing && src === ele) { oEles.push(edge); oEles.push(tgt); } else if (params.incoming && tgt === ele) { oEles.push(edge); oEles.push(src); } } } return this.spawn(oEles, true).filter(selector); }; }; var defineDagAllHops = function defineDagAllHops(params) { return function (selector) { var eles = this; var sEles = []; var sElesIds = {}; for (;;) { var next = params.outgoing ? eles.outgoers() : eles.incomers(); if (next.length === 0) { break; } // done if none left var newNext = false; for (var i = 0; i < next.length; i++) { var n = next[i]; var nid = n.id(); if (!sElesIds[nid]) { sElesIds[nid] = true; sEles.push(n); newNext = true; } } if (!newNext) { break; } // done if touched all outgoers already eles = next; } return this.spawn(sEles, true).filter(selector); }; }; elesfn$2.clearTraversalCache = function () { for (var i = 0; i < this.length; i++) { this[i]._private.traversalCache = null; } }; extend(elesfn$2, { // get the root nodes in the DAG roots: defineDagExtremity({ noIncomingEdges: true }), // get the leaf nodes in the DAG leaves: defineDagExtremity({ noOutgoingEdges: true }), // normally called children in graph theory // these nodes =edges=> outgoing nodes outgoers: cache(defineDagOneHop({ outgoing: true }), 'outgoers'), // aka DAG descendants successors: defineDagAllHops({ outgoing: true }), // normally called parents in graph theory // these nodes <=edges= incoming nodes incomers: cache(defineDagOneHop({ incoming: true }), 'incomers'), // aka DAG ancestors predecessors: defineDagAllHops({ incoming: true }) }); // Neighbourhood functions ////////////////////////// extend(elesfn$2, { neighborhood: cache(function (selector) { var elements = []; var nodes = this.nodes(); for (var i = 0; i < nodes.length; i++) { // for all nodes var node = nodes[i]; var connectedEdges = node.connectedEdges(); // for each connected edge, add the edge and the other node for (var j = 0; j < connectedEdges.length; j++) { var edge = connectedEdges[j]; var src = edge.source(); var tgt = edge.target(); var otherNode = node === src ? tgt : src; // need check in case of loop if (otherNode.length > 0) { elements.push(otherNode[0]); // add node 1 hop away } // add connected edge elements.push(edge[0]); } } return this.spawn(elements, true).filter(selector); }, 'neighborhood'), closedNeighborhood: function closedNeighborhood(selector) { return this.neighborhood().add(this).filter(selector); }, openNeighborhood: function openNeighborhood(selector) { return this.neighborhood(selector); } }); // aliases elesfn$2.neighbourhood = elesfn$2.neighborhood; elesfn$2.closedNeighbourhood = elesfn$2.closedNeighborhood; elesfn$2.openNeighbourhood = elesfn$2.openNeighborhood; // Edge functions ///////////////// extend(elesfn$2, { source: cache(function sourceImpl(selector) { var ele = this[0]; var src; if (ele) { src = ele._private.source || ele.cy().collection(); } return src && selector ? src.filter(selector) : src; }, 'source'), target: cache(function targetImpl(selector) { var ele = this[0]; var tgt; if (ele) { tgt = ele._private.target || ele.cy().collection(); } return tgt && selector ? tgt.filter(selector) : tgt; }, 'target'), sources: defineSourceFunction({ attr: 'source' }), targets: defineSourceFunction({ attr: 'target' }) }); function defineSourceFunction(params) { return function sourceImpl(selector) { var sources = []; for (var i = 0; i < this.length; i++) { var ele = this[i]; var src = ele._private[params.attr]; if (src) { sources.push(src); } } return this.spawn(sources, true).filter(selector); }; } extend(elesfn$2, { edgesWith: cache(defineEdgesWithFunction(), 'edgesWith'), edgesTo: cache(defineEdgesWithFunction({ thisIsSrc: true }), 'edgesTo') }); function defineEdgesWithFunction(params) { return function edgesWithImpl(otherNodes) { var elements = []; var cy = this._private.cy; var p = params || {}; // get elements if a selector is specified if (string(otherNodes)) { otherNodes = cy.$(otherNodes); } for (var h = 0; h < otherNodes.length; h++) { var edges = otherNodes[h]._private.edges; for (var i = 0; i < edges.length; i++) { var edge = edges[i]; var edgeData = edge._private.data; var thisToOther = this.hasElementWithId(edgeData.source) && otherNodes.hasElementWithId(edgeData.target); var otherToThis = otherNodes.hasElementWithId(edgeData.source) && this.hasElementWithId(edgeData.target); var edgeConnectsThisAndOther = thisToOther || otherToThis; if (!edgeConnectsThisAndOther) { continue; } if (p.thisIsSrc || p.thisIsTgt) { if (p.thisIsSrc && !thisToOther) { continue; } if (p.thisIsTgt && !otherToThis) { continue; } } elements.push(edge); } } return this.spawn(elements, true); }; } extend(elesfn$2, { connectedEdges: cache(function (selector) { var retEles = []; var eles = this; for (var i = 0; i < eles.length; i++) { var node = eles[i]; if (!node.isNode()) { continue; } var edges = node._private.edges; for (var j = 0; j < edges.length; j++) { var edge = edges[j]; retEles.push(edge); } } return this.spawn(retEles, true).filter(selector); }, 'connectedEdges'), connectedNodes: cache(function (selector) { var retEles = []; var eles = this; for (var i = 0; i < eles.length; i++) { var edge = eles[i]; if (!edge.isEdge()) { continue; } retEles.push(edge.source()[0]); retEles.push(edge.target()[0]); } return this.spawn(retEles, true).filter(selector); }, 'connectedNodes'), parallelEdges: cache(defineParallelEdgesFunction(), 'parallelEdges'), codirectedEdges: cache(defineParallelEdgesFunction({ codirected: true }), 'codirectedEdges') }); function defineParallelEdgesFunction(params) { var defaults = { codirected: false }; params = extend({}, defaults, params); return function parallelEdgesImpl(selector) { // micro-optimised for renderer var elements = []; var edges = this.edges(); var p = params; // look at all the edges in the collection for (var i = 0; i < edges.length; i++) { var edge1 = edges[i]; var edge1_p = edge1._private; var src1 = edge1_p.source; var srcid1 = src1._private.data.id; var tgtid1 = edge1_p.data.target; var srcEdges1 = src1._private.edges; // look at edges connected to the src node of this edge for (var j = 0; j < srcEdges1.length; j++) { var edge2 = srcEdges1[j]; var edge2data = edge2._private.data; var tgtid2 = edge2data.target; var srcid2 = edge2data.source; var codirected = tgtid2 === tgtid1 && srcid2 === srcid1; var oppdirected = srcid1 === tgtid2 && tgtid1 === srcid2; if (p.codirected && codirected || !p.codirected && (codirected || oppdirected)) { elements.push(edge2); } } } return this.spawn(elements, true).filter(selector); }; } // Misc functions ///////////////// extend(elesfn$2, { components: function components(root) { var self = this; var cy = self.cy(); var visited = cy.collection(); var unvisited = root == null ? self.nodes() : root.nodes(); var components = []; if (root != null && unvisited.empty()) { // root may contain only edges unvisited = root.sources(); // doesn't matter which node to use (undirected), so just use the source sides } var visitInComponent = function visitInComponent(node, component) { visited.merge(node); unvisited.unmerge(node); component.merge(node); }; if (unvisited.empty()) { return self.spawn(); } var _loop = function _loop() { // each iteration yields a component var cmpt = cy.collection(); components.push(cmpt); var root = unvisited[0]; visitInComponent(root, cmpt); self.bfs({ directed: false, roots: root, visit: function visit(v) { return visitInComponent(v, cmpt); } }); cmpt.forEach(function (node) { node.connectedEdges().forEach(function (e) { // connectedEdges() usually cached if (self.has(e) && cmpt.has(e.source()) && cmpt.has(e.target())) { // has() is cheap cmpt.merge(e); // forEach() only considers nodes -- sets N at call time } }); }); }; do { _loop(); } while (unvisited.length > 0); return components; }, component: function component() { var ele = this[0]; return ele.cy().mutableElements().components(ele)[0]; } }); elesfn$2.componentsOf = elesfn$2.components; // represents a set of nodes, edges, or both together var Collection = function Collection(cy, elements) { var unique = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false; var removed = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false; if (cy === undefined) { error('A collection must have a reference to the core'); return; } var map = new Map$2(); var createdElements = false; if (!elements) { elements = []; } else if (elements.length > 0 && plainObject(elements[0]) && !element(elements[0])) { createdElements = true; // make elements from json and restore all at once later var eles = []; var elesIds = new Set$1(); for (var i = 0, l = elements.length; i < l; i++) { var json = elements[i]; if (json.data == null) { json.data = {}; } var _data = json.data; // make sure newly created elements have valid ids if (_data.id == null) { _data.id = uuid(); } else if (cy.hasElementWithId(_data.id) || elesIds.has(_data.id)) { continue; // can't create element if prior id already exists } var ele = new Element(cy, json, false); eles.push(ele); elesIds.add(_data.id); } elements = eles; } this.length = 0; for (var _i = 0, _l = elements.length; _i < _l; _i++) { var element$1 = elements[_i][0]; // [0] in case elements is an array of collections, rather than array of elements if (element$1 == null) { continue; } var id = element$1._private.data.id; if (!unique || !map.has(id)) { if (unique) { map.set(id, { index: this.length, ele: element$1 }); } this[this.length] = element$1; this.length++; } } this._private = { eles: this, cy: cy, get map() { if (this.lazyMap == null) { this.rebuildMap(); } return this.lazyMap; }, set map(m) { this.lazyMap = m; }, rebuildMap: function rebuildMap() { var m = this.lazyMap = new Map$2(); var eles = this.eles; for (var _i2 = 0; _i2 < eles.length; _i2++) { var _ele = eles[_i2]; m.set(_ele.id(), { index: _i2, ele: _ele }); } } }; if (unique) { this._private.map = map; } // restore the elements if we created them from json if (createdElements && !removed) { this.restore(); } }; // Functions //////////////////////////////////////////////////////////////////////////////////////////////////// // keep the prototypes in sync (an element has the same functions as a collection) // and use elefn and elesfn as shorthands to the prototypes var elesfn$1 = Element.prototype = Collection.prototype = Object.create(Array.prototype); elesfn$1.instanceString = function () { return 'collection'; }; elesfn$1.spawn = function (eles, unique) { return new Collection(this.cy(), eles, unique); }; elesfn$1.spawnSelf = function () { return this.spawn(this); }; elesfn$1.cy = function () { return this._private.cy; }; elesfn$1.renderer = function () { return this._private.cy.renderer(); }; elesfn$1.element = function () { return this[0]; }; elesfn$1.collection = function () { if (collection(this)) { return this; } else { // an element return new Collection(this._private.cy, [this]); } }; elesfn$1.unique = function () { return new Collection(this._private.cy, this, true); }; elesfn$1.hasElementWithId = function (id) { id = '' + id; // id must be string return this._private.map.has(id); }; elesfn$1.getElementById = function (id) { id = '' + id; // id must be string var cy = this._private.cy; var entry = this._private.map.get(id); return entry ? entry.ele : new Collection(cy); // get ele or empty collection }; elesfn$1.$id = elesfn$1.getElementById; elesfn$1.poolIndex = function () { var cy = this._private.cy; var eles = cy._private.elements; var id = this[0]._private.data.id; return eles._private.map.get(id).index; }; elesfn$1.indexOf = function (ele) { var id = ele[0]._private.data.id; return this._private.map.get(id).index; }; elesfn$1.indexOfId = function (id) { id = '' + id; // id must be string return this._private.map.get(id).index; }; elesfn$1.json = function (obj) { var ele = this.element(); var cy = this.cy(); if (ele == null && obj) { return this; } // can't set to no eles if (ele == null) { return undefined; } // can't get from no eles var p = ele._private; if (plainObject(obj)) { // set cy.startBatch(); if (obj.data) { ele.data(obj.data); var _data2 = p.data; if (ele.isEdge()) { // source and target are immutable via data() var move = false; var spec = {}; var src = obj.data.source; var tgt = obj.data.target; if (src != null && src != _data2.source) { spec.source = '' + src; // id must be string move = true; } if (tgt != null && tgt != _data2.target) { spec.target = '' + tgt; // id must be string move = true; } if (move) { ele = ele.move(spec); } } else { // parent is immutable via data() var newParentValSpecd = ('parent' in obj.data); var parent = obj.data.parent; if (newParentValSpecd && (parent != null || _data2.parent != null) && parent != _data2.parent) { if (parent === undefined) { // can't set undefined imperatively, so use null parent = null; } if (parent != null) { parent = '' + parent; // id must be string } ele = ele.move({ parent: parent }); } } } if (obj.position) { ele.position(obj.position); } // ignore group -- immutable var checkSwitch = function checkSwitch(k, trueFnName, falseFnName) { var obj_k = obj[k]; if (obj_k != null && obj_k !== p[k]) { if (obj_k) { ele[trueFnName](); } else { ele[falseFnName](); } } }; checkSwitch('removed', 'remove', 'restore'); checkSwitch('selected', 'select', 'unselect'); checkSwitch('selectable', 'selectify', 'unselectify'); checkSwitch('locked', 'lock', 'unlock'); checkSwitch('grabbable', 'grabify', 'ungrabify'); checkSwitch('pannable', 'panify', 'unpanify'); if (obj.classes != null) { ele.classes(obj.classes); } cy.endBatch(); return this; } else if (obj === undefined) { // get var json = { data: copy(p.data), position: copy(p.position), group: p.group, removed: p.removed, selected: p.selected, selectable: p.selectable, locked: p.locked, grabbable: p.grabbable, pannable: p.pannable, classes: null }; json.classes = ''; var i = 0; p.classes.forEach(function (cls) { return json.classes += i++ === 0 ? cls : ' ' + cls; }); return json; } }; elesfn$1.jsons = function () { var jsons = []; for (var i = 0; i < this.length; i++) { var ele = this[i]; var json = ele.json(); jsons.push(json); } return jsons; }; elesfn$1.clone = function () { var cy = this.cy(); var elesArr = []; for (var i = 0; i < this.length; i++) { var ele = this[i]; var json = ele.json(); var clone = new Element(cy, json, false); // NB no restore elesArr.push(clone); } return new Collection(cy, elesArr); }; elesfn$1.copy = elesfn$1.clone; elesfn$1.restore = function () { var notifyRenderer = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true; var addToPool = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; var self = this; var cy = self.cy(); var cy_p = cy._private; // create arrays of nodes and edges, since we need to // restore the nodes first var nodes = []; var edges = []; var elements; for (var _i3 = 0, l = self.length; _i3 < l; _i3++) { var ele = self[_i3]; if (addToPool && !ele.removed()) { // don't need to handle this ele continue; } // keep nodes first in the array and edges after if (ele.isNode()) { // put to front of array if node nodes.push(ele); } else { // put to end of array if edge edges.push(ele); } } elements = nodes.concat(edges); var i; var removeFromElements = function removeFromElements() { elements.splice(i, 1); i--; }; // now, restore each element for (i = 0; i < elements.length; i++) { var _ele2 = elements[i]; var _private = _ele2._private; var _data3 = _private.data; // the traversal cache should start fresh when ele is added _ele2.clearTraversalCache(); // set id and validate if (!addToPool && !_private.removed) ; else if (_data3.id === undefined) { _data3.id = uuid(); } else if (number$1(_data3.id)) { _data3.id = '' + _data3.id; // now it's a string } else if (emptyString(_data3.id) || !string(_data3.id)) { error('Can not create element with invalid string ID `' + _data3.id + '`'); // can't create element if it has empty string as id or non-string id removeFromElements(); continue; } else if (cy.hasElementWithId(_data3.id)) { error('Can not create second element with ID `' + _data3.id + '`'); // can't create element if one already has that id removeFromElements(); continue; } var id = _data3.id; // id is finalised, now let's keep a ref if (_ele2.isNode()) { // extra checks for nodes var pos = _private.position; // make sure the nodes have a defined position if (pos.x == null) { pos.x = 0; } if (pos.y == null) { pos.y = 0; } } if (_ele2.isEdge()) { // extra checks for edges var edge = _ele2; var fields = ['source', 'target']; var fieldsLength = fields.length; var badSourceOrTarget = false; for (var j = 0; j < fieldsLength; j++) { var field = fields[j]; var val = _data3[field]; if (number$1(val)) { val = _data3[field] = '' + _data3[field]; // now string } if (val == null || val === '') { // can't create if source or target is not defined properly error('Can not create edge `' + id + '` with unspecified ' + field); badSourceOrTarget = true; } else if (!cy.hasElementWithId(val)) { // can't create edge if one of its nodes doesn't exist error('Can not create edge `' + id + '` with nonexistant ' + field + ' `' + val + '`'); badSourceOrTarget = true; } } if (badSourceOrTarget) { removeFromElements(); continue; } // can't create this var src = cy.getElementById(_data3.source); var tgt = cy.getElementById(_data3.target); // only one edge in node if loop if (src.same(tgt)) { src._private.edges.push(edge); } else { src._private.edges.push(edge); tgt._private.edges.push(edge); } edge._private.source = src; edge._private.target = tgt; } // if is edge // create mock ids / indexes maps for element so it can be used like collections _private.map = new Map$2(); _private.map.set(id, { ele: _ele2, index: 0 }); _private.removed = false; if (addToPool) { cy.addToPool(_ele2); } } // for each element // do compound node sanity checks for (var _i4 = 0; _i4 < nodes.length; _i4++) { // each node var node = nodes[_i4]; var _data4 = node._private.data; if (number$1(_data4.parent)) { // then automake string _data4.parent = '' + _data4.parent; } var parentId = _data4.parent; var specifiedParent = parentId != null; if (specifiedParent || node._private.parent) { var parent = node._private.parent ? cy.collection().merge(node._private.parent) : cy.getElementById(parentId); if (parent.empty()) { // non-existant parent; just remove it _data4.parent = undefined; } else if (parent[0].removed()) { warn('Node added with missing parent, reference to parent removed'); _data4.parent = undefined; node._private.parent = null; } else { var selfAsParent = false; var ancestor = parent; while (!ancestor.empty()) { if (node.same(ancestor)) { // mark self as parent and remove from data selfAsParent = true; _data4.parent = undefined; // remove parent reference // exit or we loop forever break; } ancestor = ancestor.parent(); } if (!selfAsParent) { // connect with children parent[0]._private.children.push(node); node._private.parent = parent[0]; // let the core know we have a compound graph cy_p.hasCompoundNodes = true; } } // else } // if specified parent } // for each node if (elements.length > 0) { var restored = elements.length === self.length ? self : new Collection(cy, elements); for (var _i5 = 0; _i5 < restored.length; _i5++) { var _ele3 = restored[_i5]; if (_ele3.isNode()) { continue; } // adding an edge invalidates the traversal caches for the parallel edges _ele3.parallelEdges().clearTraversalCache(); // adding an edge invalidates the traversal cache for the connected nodes _ele3.source().clearTraversalCache(); _ele3.target().clearTraversalCache(); } var toUpdateStyle; if (cy_p.hasCompoundNodes) { toUpdateStyle = cy.collection().merge(restored).merge(restored.connectedNodes()).merge(restored.parent()); } else { toUpdateStyle = restored; } toUpdateStyle.dirtyCompoundBoundsCache().dirtyBoundingBoxCache().updateStyle(notifyRenderer); if (notifyRenderer) { restored.emitAndNotify('add'); } else if (addToPool) { restored.emit('add'); } } return self; // chainability }; elesfn$1.removed = function () { var ele = this[0]; return ele && ele._private.removed; }; elesfn$1.inside = function () { var ele = this[0]; return ele && !ele._private.removed; }; elesfn$1.remove = function () { var notifyRenderer = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true; var removeFromPool = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; var self = this; var elesToRemove = []; var elesToRemoveIds = {}; var cy = self._private.cy; // add connected edges function addConnectedEdges(node) { var edges = node._private.edges; for (var i = 0; i < edges.length; i++) { add(edges[i]); } } // add descendant nodes function addChildren(node) { var children = node._private.children; for (var i = 0; i < children.length; i++) { add(children[i]); } } function add(ele) { var alreadyAdded = elesToRemoveIds[ele.id()]; if (removeFromPool && ele.removed() || alreadyAdded) { return; } else { elesToRemoveIds[ele.id()] = true; } if (ele.isNode()) { elesToRemove.push(ele); // nodes are removed last addConnectedEdges(ele); addChildren(ele); } else { elesToRemove.unshift(ele); // edges are removed first } } // make the list of elements to remove // (may be removing more than specified due to connected edges etc) for (var i = 0, l = self.length; i < l; i++) { var ele = self[i]; add(ele); } function removeEdgeRef(node, edge) { var connectedEdges = node._private.edges; removeFromArray(connectedEdges, edge); // removing an edges invalidates the traversal cache for its nodes node.clearTraversalCache(); } function removeParallelRef(pllEdge) { // removing an edge invalidates the traversal caches for the parallel edges pllEdge.clearTraversalCache(); } var alteredParents = []; alteredParents.ids = {}; function removeChildRef(parent, ele) { ele = ele[0]; parent = parent[0]; var children = parent._private.children; var pid = parent.id(); removeFromArray(children, ele); // remove parent => child ref ele._private.parent = null; // remove child => parent ref if (!alteredParents.ids[pid]) { alteredParents.ids[pid] = true; alteredParents.push(parent); } } self.dirtyCompoundBoundsCache(); if (removeFromPool) { cy.removeFromPool(elesToRemove); // remove from core pool } for (var _i6 = 0; _i6 < elesToRemove.length; _i6++) { var _ele4 = elesToRemove[_i6]; if (_ele4.isEdge()) { // remove references to this edge in its connected nodes var src = _ele4.source()[0]; var tgt = _ele4.target()[0]; removeEdgeRef(src, _ele4); removeEdgeRef(tgt, _ele4); var pllEdges = _ele4.parallelEdges(); for (var j = 0; j < pllEdges.length; j++) { var pllEdge = pllEdges[j]; removeParallelRef(pllEdge); if (pllEdge.isBundledBezier()) { pllEdge.dirtyBoundingBoxCache(); } } } else { // remove reference to parent var parent = _ele4.parent(); if (parent.length !== 0) { removeChildRef(parent, _ele4); } } if (removeFromPool) { // mark as removed _ele4._private.removed = true; } } // check to see if we have a compound graph or not var elesStillInside = cy._private.elements; cy._private.hasCompoundNodes = false; for (var _i7 = 0; _i7 < elesStillInside.length; _i7++) { var _ele5 = elesStillInside[_i7]; if (_ele5.isParent()) { cy._private.hasCompoundNodes = true; break; } } var removedElements = new Collection(this.cy(), elesToRemove); if (removedElements.size() > 0) { // must manually notify since trigger won't do this automatically once removed if (notifyRenderer) { removedElements.emitAndNotify('remove'); } else if (removeFromPool) { removedElements.emit('remove'); } } // the parents who were modified by the removal need their style updated for (var _i8 = 0; _i8 < alteredParents.length; _i8++) { var _ele6 = alteredParents[_i8]; if (!removeFromPool || !_ele6.removed()) { _ele6.updateStyle(); } } return removedElements; }; elesfn$1.move = function (struct) { var cy = this._private.cy; var eles = this; // just clean up refs, caches, etc. in the same way as when removing and then restoring // (our calls to remove/restore do not remove from the graph or make events) var notifyRenderer = false; var modifyPool = false; var toString = function toString(id) { return id == null ? id : '' + id; }; // id must be string if (struct.source !== undefined || struct.target !== undefined) { var srcId = toString(struct.source); var tgtId = toString(struct.target); var srcExists = srcId != null && cy.hasElementWithId(srcId); var tgtExists = tgtId != null && cy.hasElementWithId(tgtId); if (srcExists || tgtExists) { cy.batch(function () { // avoid duplicate style updates eles.remove(notifyRenderer, modifyPool); // clean up refs etc. eles.emitAndNotify('moveout'); for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var _data5 = ele._private.data; if (ele.isEdge()) { if (srcExists) { _data5.source = srcId; } if (tgtExists) { _data5.target = tgtId; } } } eles.restore(notifyRenderer, modifyPool); // make new refs, style, etc. }); eles.emitAndNotify('move'); } } else if (struct.parent !== undefined) { // move node to new parent var parentId = toString(struct.parent); var parentExists = parentId === null || cy.hasElementWithId(parentId); if (parentExists) { var pidToAssign = parentId === null ? undefined : parentId; cy.batch(function () { // avoid duplicate style updates var updated = eles.remove(notifyRenderer, modifyPool); // clean up refs etc. updated.emitAndNotify('moveout'); for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var _data6 = ele._private.data; if (ele.isNode()) { _data6.parent = pidToAssign; } } updated.restore(notifyRenderer, modifyPool); // make new refs, style, etc. }); eles.emitAndNotify('move'); } } return this; }; [elesfn$j, elesfn$i, elesfn$h, elesfn$g, elesfn$f, data, elesfn$d, dimensions, elesfn$9, elesfn$8, elesfn$7, elesfn$6, elesfn$5, elesfn$4, elesfn$3, elesfn$2].forEach(function (props) { extend(elesfn$1, props); }); var corefn$9 = { add: function add(opts) { var elements; var cy = this; // add the elements if (elementOrCollection(opts)) { var eles = opts; if (eles._private.cy === cy) { // same instance => just restore elements = eles.restore(); } else { // otherwise, copy from json var jsons = []; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; jsons.push(ele.json()); } elements = new Collection(cy, jsons); } } // specify an array of options else if (array(opts)) { var _jsons = opts; elements = new Collection(cy, _jsons); } // specify via opts.nodes and opts.edges else if (plainObject(opts) && (array(opts.nodes) || array(opts.edges))) { var elesByGroup = opts; var _jsons2 = []; var grs = ['nodes', 'edges']; for (var _i = 0, il = grs.length; _i < il; _i++) { var group = grs[_i]; var elesArray = elesByGroup[group]; if (array(elesArray)) { for (var j = 0, jl = elesArray.length; j < jl; j++) { var json = extend({ group: group }, elesArray[j]); _jsons2.push(json); } } } elements = new Collection(cy, _jsons2); } // specify options for one element else { var _json = opts; elements = new Element(cy, _json).collection(); } return elements; }, remove: function remove(collection) { if (elementOrCollection(collection)) ; else if (string(collection)) { var selector = collection; collection = this.$(selector); } return collection.remove(); } }; /* global Float32Array */ /*! Bezier curve function generator. Copyright Gaetan Renaudeau. MIT License: http://en.wikipedia.org/wiki/MIT_License */ function generateCubicBezier(mX1, mY1, mX2, mY2) { var NEWTON_ITERATIONS = 4, NEWTON_MIN_SLOPE = 0.001, SUBDIVISION_PRECISION = 0.0000001, SUBDIVISION_MAX_ITERATIONS = 10, kSplineTableSize = 11, kSampleStepSize = 1.0 / (kSplineTableSize - 1.0), float32ArraySupported = typeof Float32Array !== 'undefined'; /* Must contain four arguments. */ if (arguments.length !== 4) { return false; } /* Arguments must be numbers. */ for (var i = 0; i < 4; ++i) { if (typeof arguments[i] !== "number" || isNaN(arguments[i]) || !isFinite(arguments[i])) { return false; } } /* X values must be in the [0, 1] range. */ mX1 = Math.min(mX1, 1); mX2 = Math.min(mX2, 1); mX1 = Math.max(mX1, 0); mX2 = Math.max(mX2, 0); var mSampleValues = float32ArraySupported ? new Float32Array(kSplineTableSize) : new Array(kSplineTableSize); function A(aA1, aA2) { return 1.0 - 3.0 * aA2 + 3.0 * aA1; } function B(aA1, aA2) { return 3.0 * aA2 - 6.0 * aA1; } function C(aA1) { return 3.0 * aA1; } function calcBezier(aT, aA1, aA2) { return ((A(aA1, aA2) * aT + B(aA1, aA2)) * aT + C(aA1)) * aT; } function getSlope(aT, aA1, aA2) { return 3.0 * A(aA1, aA2) * aT * aT + 2.0 * B(aA1, aA2) * aT + C(aA1); } function newtonRaphsonIterate(aX, aGuessT) { for (var _i = 0; _i < NEWTON_ITERATIONS; ++_i) { var currentSlope = getSlope(aGuessT, mX1, mX2); if (currentSlope === 0.0) { return aGuessT; } var currentX = calcBezier(aGuessT, mX1, mX2) - aX; aGuessT -= currentX / currentSlope; } return aGuessT; } function calcSampleValues() { for (var _i2 = 0; _i2 < kSplineTableSize; ++_i2) { mSampleValues[_i2] = calcBezier(_i2 * kSampleStepSize, mX1, mX2); } } function binarySubdivide(aX, aA, aB) { var currentX, currentT, i = 0; do { currentT = aA + (aB - aA) / 2.0; currentX = calcBezier(currentT, mX1, mX2) - aX; if (currentX > 0.0) { aB = currentT; } else { aA = currentT; } } while (Math.abs(currentX) > SUBDIVISION_PRECISION && ++i < SUBDIVISION_MAX_ITERATIONS); return currentT; } function getTForX(aX) { var intervalStart = 0.0, currentSample = 1, lastSample = kSplineTableSize - 1; for (; currentSample !== lastSample && mSampleValues[currentSample] <= aX; ++currentSample) { intervalStart += kSampleStepSize; } --currentSample; var dist = (aX - mSampleValues[currentSample]) / (mSampleValues[currentSample + 1] - mSampleValues[currentSample]), guessForT = intervalStart + dist * kSampleStepSize, initialSlope = getSlope(guessForT, mX1, mX2); if (initialSlope >= NEWTON_MIN_SLOPE) { return newtonRaphsonIterate(aX, guessForT); } else if (initialSlope === 0.0) { return guessForT; } else { return binarySubdivide(aX, intervalStart, intervalStart + kSampleStepSize); } } var _precomputed = false; function precompute() { _precomputed = true; if (mX1 !== mY1 || mX2 !== mY2) { calcSampleValues(); } } var f = function f(aX) { if (!_precomputed) { precompute(); } if (mX1 === mY1 && mX2 === mY2) { return aX; } if (aX === 0) { return 0; } if (aX === 1) { return 1; } return calcBezier(getTForX(aX), mY1, mY2); }; f.getControlPoints = function () { return [{ x: mX1, y: mY1 }, { x: mX2, y: mY2 }]; }; var str = "generateBezier(" + [mX1, mY1, mX2, mY2] + ")"; f.toString = function () { return str; }; return f; } /*! Runge-Kutta spring physics function generator. Adapted from Framer.js, copyright Koen Bok. MIT License: http://en.wikipedia.org/wiki/MIT_License */ /* Given a tension, friction, and duration, a simulation at 60FPS will first run without a defined duration in order to calculate the full path. A second pass then adjusts the time delta -- using the relation between actual time and duration -- to calculate the path for the duration-constrained animation. */ var generateSpringRK4 = function () { function springAccelerationForState(state) { return -state.tension * state.x - state.friction * state.v; } function springEvaluateStateWithDerivative(initialState, dt, derivative) { var state = { x: initialState.x + derivative.dx * dt, v: initialState.v + derivative.dv * dt, tension: initialState.tension, friction: initialState.friction }; return { dx: state.v, dv: springAccelerationForState(state) }; } function springIntegrateState(state, dt) { var a = { dx: state.v, dv: springAccelerationForState(state) }, b = springEvaluateStateWithDerivative(state, dt * 0.5, a), c = springEvaluateStateWithDerivative(state, dt * 0.5, b), d = springEvaluateStateWithDerivative(state, dt, c), dxdt = 1.0 / 6.0 * (a.dx + 2.0 * (b.dx + c.dx) + d.dx), dvdt = 1.0 / 6.0 * (a.dv + 2.0 * (b.dv + c.dv) + d.dv); state.x = state.x + dxdt * dt; state.v = state.v + dvdt * dt; return state; } return function springRK4Factory(tension, friction, duration) { var initState = { x: -1, v: 0, tension: null, friction: null }, path = [0], time_lapsed = 0, tolerance = 1 / 10000, DT = 16 / 1000, have_duration, dt, last_state; tension = parseFloat(tension) || 500; friction = parseFloat(friction) || 20; duration = duration || null; initState.tension = tension; initState.friction = friction; have_duration = duration !== null; /* Calculate the actual time it takes for this animation to complete with the provided conditions. */ if (have_duration) { /* Run the simulation without a duration. */ time_lapsed = springRK4Factory(tension, friction); /* Compute the adjusted time delta. */ dt = time_lapsed / duration * DT; } else { dt = DT; } for (;;) { /* Next/step function .*/ last_state = springIntegrateState(last_state || initState, dt); /* Store the position. */ path.push(1 + last_state.x); time_lapsed += 16; /* If the change threshold is reached, break. */ if (!(Math.abs(last_state.x) > tolerance && Math.abs(last_state.v) > tolerance)) { break; } } /* If duration is not defined, return the actual time required for completing this animation. Otherwise, return a closure that holds the computed path and returns a snapshot of the position according to a given percentComplete. */ return !have_duration ? time_lapsed : function (percentComplete) { return path[percentComplete * (path.length - 1) | 0]; }; }; }(); var cubicBezier = function cubicBezier(t1, p1, t2, p2) { var bezier = generateCubicBezier(t1, p1, t2, p2); return function (start, end, percent) { return start + (end - start) * bezier(percent); }; }; var easings = { 'linear': function linear(start, end, percent) { return start + (end - start) * percent; }, // default easings 'ease': cubicBezier(0.25, 0.1, 0.25, 1), 'ease-in': cubicBezier(0.42, 0, 1, 1), 'ease-out': cubicBezier(0, 0, 0.58, 1), 'ease-in-out': cubicBezier(0.42, 0, 0.58, 1), // sine 'ease-in-sine': cubicBezier(0.47, 0, 0.745, 0.715), 'ease-out-sine': cubicBezier(0.39, 0.575, 0.565, 1), 'ease-in-out-sine': cubicBezier(0.445, 0.05, 0.55, 0.95), // quad 'ease-in-quad': cubicBezier(0.55, 0.085, 0.68, 0.53), 'ease-out-quad': cubicBezier(0.25, 0.46, 0.45, 0.94), 'ease-in-out-quad': cubicBezier(0.455, 0.03, 0.515, 0.955), // cubic 'ease-in-cubic': cubicBezier(0.55, 0.055, 0.675, 0.19), 'ease-out-cubic': cubicBezier(0.215, 0.61, 0.355, 1), 'ease-in-out-cubic': cubicBezier(0.645, 0.045, 0.355, 1), // quart 'ease-in-quart': cubicBezier(0.895, 0.03, 0.685, 0.22), 'ease-out-quart': cubicBezier(0.165, 0.84, 0.44, 1), 'ease-in-out-quart': cubicBezier(0.77, 0, 0.175, 1), // quint 'ease-in-quint': cubicBezier(0.755, 0.05, 0.855, 0.06), 'ease-out-quint': cubicBezier(0.23, 1, 0.32, 1), 'ease-in-out-quint': cubicBezier(0.86, 0, 0.07, 1), // expo 'ease-in-expo': cubicBezier(0.95, 0.05, 0.795, 0.035), 'ease-out-expo': cubicBezier(0.19, 1, 0.22, 1), 'ease-in-out-expo': cubicBezier(1, 0, 0, 1), // circ 'ease-in-circ': cubicBezier(0.6, 0.04, 0.98, 0.335), 'ease-out-circ': cubicBezier(0.075, 0.82, 0.165, 1), 'ease-in-out-circ': cubicBezier(0.785, 0.135, 0.15, 0.86), // user param easings... 'spring': function spring(tension, friction, duration) { if (duration === 0) { // can't get a spring w/ duration 0 return easings.linear; // duration 0 => jump to end so impl doesn't matter } var spring = generateSpringRK4(tension, friction, duration); return function (start, end, percent) { return start + (end - start) * spring(percent); }; }, 'cubic-bezier': cubicBezier }; function getEasedValue(type, start, end, percent, easingFn) { if (percent === 1) { return end; } if (start === end) { return end; } var val = easingFn(start, end, percent); if (type == null) { return val; } if (type.roundValue || type.color) { val = Math.round(val); } if (type.min !== undefined) { val = Math.max(val, type.min); } if (type.max !== undefined) { val = Math.min(val, type.max); } return val; } function getValue(prop, spec) { if (prop.pfValue != null || prop.value != null) { if (prop.pfValue != null && (spec == null || spec.type.units !== '%')) { return prop.pfValue; } else { return prop.value; } } else { return prop; } } function ease(startProp, endProp, percent, easingFn, propSpec) { var type = propSpec != null ? propSpec.type : null; if (percent < 0) { percent = 0; } else if (percent > 1) { percent = 1; } var start = getValue(startProp, propSpec); var end = getValue(endProp, propSpec); if (number$1(start) && number$1(end)) { return getEasedValue(type, start, end, percent, easingFn); } else if (array(start) && array(end)) { var easedArr = []; for (var i = 0; i < end.length; i++) { var si = start[i]; var ei = end[i]; if (si != null && ei != null) { var val = getEasedValue(type, si, ei, percent, easingFn); easedArr.push(val); } else { easedArr.push(ei); } } return easedArr; } return undefined; } function step$1(self, ani, now, isCore) { var isEles = !isCore; var _p = self._private; var ani_p = ani._private; var pEasing = ani_p.easing; var startTime = ani_p.startTime; var cy = isCore ? self : self.cy(); var style = cy.style(); if (!ani_p.easingImpl) { if (pEasing == null) { // use default ani_p.easingImpl = easings['linear']; } else { // then define w/ name var easingVals; if (string(pEasing)) { var easingProp = style.parse('transition-timing-function', pEasing); easingVals = easingProp.value; } else { // then assume preparsed array easingVals = pEasing; } var name, args; if (string(easingVals)) { name = easingVals; args = []; } else { name = easingVals[1]; args = easingVals.slice(2).map(function (n) { return +n; }); } if (args.length > 0) { // create with args if (name === 'spring') { args.push(ani_p.duration); // need duration to generate spring } ani_p.easingImpl = easings[name].apply(null, args); } else { // static impl by name ani_p.easingImpl = easings[name]; } } } var easing = ani_p.easingImpl; var percent; if (ani_p.duration === 0) { percent = 1; } else { percent = (now - startTime) / ani_p.duration; } if (ani_p.applying) { percent = ani_p.progress; } if (percent < 0) { percent = 0; } else if (percent > 1) { percent = 1; } if (ani_p.delay == null) { // then update var startPos = ani_p.startPosition; var endPos = ani_p.position; if (endPos && isEles && !self.locked()) { var newPos = {}; if (valid(startPos.x, endPos.x)) { newPos.x = ease(startPos.x, endPos.x, percent, easing); } if (valid(startPos.y, endPos.y)) { newPos.y = ease(startPos.y, endPos.y, percent, easing); } self.position(newPos); } var startPan = ani_p.startPan; var endPan = ani_p.pan; var pan = _p.pan; var animatingPan = endPan != null && isCore; if (animatingPan) { if (valid(startPan.x, endPan.x)) { pan.x = ease(startPan.x, endPan.x, percent, easing); } if (valid(startPan.y, endPan.y)) { pan.y = ease(startPan.y, endPan.y, percent, easing); } self.emit('pan'); } var startZoom = ani_p.startZoom; var endZoom = ani_p.zoom; var animatingZoom = endZoom != null && isCore; if (animatingZoom) { if (valid(startZoom, endZoom)) { _p.zoom = bound(_p.minZoom, ease(startZoom, endZoom, percent, easing), _p.maxZoom); } self.emit('zoom'); } if (animatingPan || animatingZoom) { self.emit('viewport'); } var props = ani_p.style; if (props && props.length > 0 && isEles) { for (var i = 0; i < props.length; i++) { var prop = props[i]; var _name = prop.name; var end = prop; var start = ani_p.startStyle[_name]; var propSpec = style.properties[start.name]; var easedVal = ease(start, end, percent, easing, propSpec); style.overrideBypass(self, _name, easedVal); } // for props self.emit('style'); } // if } ani_p.progress = percent; return percent; } function valid(start, end) { if (start == null || end == null) { return false; } if (number$1(start) && number$1(end)) { return true; } else if (start && end) { return true; } return false; } function startAnimation(self, ani, now, isCore) { var ani_p = ani._private; ani_p.started = true; ani_p.startTime = now - ani_p.progress * ani_p.duration; } function stepAll(now, cy) { var eles = cy._private.aniEles; var doneEles = []; function stepOne(ele, isCore) { var _p = ele._private; var current = _p.animation.current; var queue = _p.animation.queue; var ranAnis = false; // if nothing currently animating, get something from the queue if (current.length === 0) { var next = queue.shift(); if (next) { current.push(next); } } var callbacks = function callbacks(_callbacks) { for (var j = _callbacks.length - 1; j >= 0; j--) { var cb = _callbacks[j]; cb(); } _callbacks.splice(0, _callbacks.length); }; // step and remove if done for (var i = current.length - 1; i >= 0; i--) { var ani = current[i]; var ani_p = ani._private; if (ani_p.stopped) { current.splice(i, 1); ani_p.hooked = false; ani_p.playing = false; ani_p.started = false; callbacks(ani_p.frames); continue; } if (!ani_p.playing && !ani_p.applying) { continue; } // an apply() while playing shouldn't do anything if (ani_p.playing && ani_p.applying) { ani_p.applying = false; } if (!ani_p.started) { startAnimation(ele, ani, now); } step$1(ele, ani, now, isCore); if (ani_p.applying) { ani_p.applying = false; } callbacks(ani_p.frames); if (ani_p.step != null) { ani_p.step(now); } if (ani.completed()) { current.splice(i, 1); ani_p.hooked = false; ani_p.playing = false; ani_p.started = false; callbacks(ani_p.completes); } ranAnis = true; } if (!isCore && current.length === 0 && queue.length === 0) { doneEles.push(ele); } return ranAnis; } // stepElement // handle all eles var ranEleAni = false; for (var e = 0; e < eles.length; e++) { var ele = eles[e]; var handledThisEle = stepOne(ele); ranEleAni = ranEleAni || handledThisEle; } // each element var ranCoreAni = stepOne(cy, true); // notify renderer if (ranEleAni || ranCoreAni) { if (eles.length > 0) { cy.notify('draw', eles); } else { cy.notify('draw'); } } // remove elements from list of currently animating if its queues are empty eles.unmerge(doneEles); cy.emit('step'); } // stepAll var corefn$8 = { // pull in animation functions animate: define.animate(), animation: define.animation(), animated: define.animated(), clearQueue: define.clearQueue(), delay: define.delay(), delayAnimation: define.delayAnimation(), stop: define.stop(), addToAnimationPool: function addToAnimationPool(eles) { var cy = this; if (!cy.styleEnabled()) { return; } // save cycles when no style used cy._private.aniEles.merge(eles); }, stopAnimationLoop: function stopAnimationLoop() { this._private.animationsRunning = false; }, startAnimationLoop: function startAnimationLoop() { var cy = this; cy._private.animationsRunning = true; if (!cy.styleEnabled()) { return; } // save cycles when no style used // NB the animation loop will exec in headless environments if style enabled // and explicit cy.destroy() is necessary to stop the loop function headlessStep() { if (!cy._private.animationsRunning) { return; } requestAnimationFrame(function animationStep(now) { stepAll(now, cy); headlessStep(); }); } var renderer = cy.renderer(); if (renderer && renderer.beforeRender) { // let the renderer schedule animations renderer.beforeRender(function rendererAnimationStep(willDraw, now) { stepAll(now, cy); }, renderer.beforeRenderPriorities.animations); } else { // manage the animation loop ourselves headlessStep(); // first call } } }; var emitterOptions = { qualifierCompare: function qualifierCompare(selector1, selector2) { if (selector1 == null || selector2 == null) { return selector1 == null && selector2 == null; } else { return selector1.sameText(selector2); } }, eventMatches: function eventMatches(cy, listener, eventObj) { var selector = listener.qualifier; if (selector != null) { return cy !== eventObj.target && element(eventObj.target) && selector.matches(eventObj.target); } return true; }, addEventFields: function addEventFields(cy, evt) { evt.cy = cy; evt.target = cy; }, callbackContext: function callbackContext(cy, listener, eventObj) { return listener.qualifier != null ? eventObj.target : cy; } }; var argSelector = function argSelector(arg) { if (string(arg)) { return new Selector(arg); } else { return arg; } }; var elesfn = { createEmitter: function createEmitter() { var _p = this._private; if (!_p.emitter) { _p.emitter = new Emitter(emitterOptions, this); } return this; }, emitter: function emitter() { return this._private.emitter; }, on: function on(events, selector, callback) { this.emitter().on(events, argSelector(selector), callback); return this; }, removeListener: function removeListener(events, selector, callback) { this.emitter().removeListener(events, argSelector(selector), callback); return this; }, removeAllListeners: function removeAllListeners() { this.emitter().removeAllListeners(); return this; }, one: function one(events, selector, callback) { this.emitter().one(events, argSelector(selector), callback); return this; }, once: function once(events, selector, callback) { this.emitter().one(events, argSelector(selector), callback); return this; }, emit: function emit(events, extraParams) { this.emitter().emit(events, extraParams); return this; }, emitAndNotify: function emitAndNotify(event, eles) { this.emit(event); this.notify(event, eles); return this; } }; define.eventAliasesOn(elesfn); var corefn$7 = { png: function png(options) { var renderer = this._private.renderer; options = options || {}; return renderer.png(options); }, jpg: function jpg(options) { var renderer = this._private.renderer; options = options || {}; options.bg = options.bg || '#fff'; return renderer.jpg(options); } }; corefn$7.jpeg = corefn$7.jpg; var corefn$6 = { layout: function layout(options) { var cy = this; if (options == null) { error('Layout options must be specified to make a layout'); return; } if (options.name == null) { error('A `name` must be specified to make a layout'); return; } var name = options.name; var Layout = cy.extension('layout', name); if (Layout == null) { error('No such layout `' + name + '` found. Did you forget to import it and `cytoscape.use()` it?'); return; } var eles; if (string(options.eles)) { eles = cy.$(options.eles); } else { eles = options.eles != null ? options.eles : cy.$(); } var layout = new Layout(extend({}, options, { cy: cy, eles: eles })); return layout; } }; corefn$6.createLayout = corefn$6.makeLayout = corefn$6.layout; var corefn$5 = { notify: function notify(eventName, eventEles) { var _p = this._private; if (this.batching()) { _p.batchNotifications = _p.batchNotifications || {}; var eles = _p.batchNotifications[eventName] = _p.batchNotifications[eventName] || this.collection(); if (eventEles != null) { eles.merge(eventEles); } return; // notifications are disabled during batching } if (!_p.notificationsEnabled) { return; } // exit on disabled var renderer = this.renderer(); // exit if destroy() called on core or renderer in between frames #1499 #1528 if (this.destroyed() || !renderer) { return; } renderer.notify(eventName, eventEles); }, notifications: function notifications(bool) { var p = this._private; if (bool === undefined) { return p.notificationsEnabled; } else { p.notificationsEnabled = bool ? true : false; } return this; }, noNotifications: function noNotifications(callback) { this.notifications(false); callback(); this.notifications(true); }, batching: function batching() { return this._private.batchCount > 0; }, startBatch: function startBatch() { var _p = this._private; if (_p.batchCount == null) { _p.batchCount = 0; } if (_p.batchCount === 0) { _p.batchStyleEles = this.collection(); _p.batchNotifications = {}; } _p.batchCount++; return this; }, endBatch: function endBatch() { var _p = this._private; if (_p.batchCount === 0) { return this; } _p.batchCount--; if (_p.batchCount === 0) { // update style for dirty eles _p.batchStyleEles.updateStyle(); var renderer = this.renderer(); // notify the renderer of queued eles and event types Object.keys(_p.batchNotifications).forEach(function (eventName) { var eles = _p.batchNotifications[eventName]; if (eles.empty()) { renderer.notify(eventName); } else { renderer.notify(eventName, eles); } }); } return this; }, batch: function batch(callback) { this.startBatch(); callback(); this.endBatch(); return this; }, // for backwards compatibility batchData: function batchData(map) { var cy = this; return this.batch(function () { var ids = Object.keys(map); for (var i = 0; i < ids.length; i++) { var id = ids[i]; var data = map[id]; var ele = cy.getElementById(id); ele.data(data); } }); } }; var rendererDefaults = defaults$g({ hideEdgesOnViewport: false, textureOnViewport: false, motionBlur: false, motionBlurOpacity: 0.05, pixelRatio: undefined, desktopTapThreshold: 4, touchTapThreshold: 8, wheelSensitivity: 1, debug: false, showFps: false, webgl: false }); var corefn$4 = { renderTo: function renderTo(context, zoom, pan, pxRatio) { var r = this._private.renderer; r.renderTo(context, zoom, pan, pxRatio); return this; }, renderer: function renderer() { return this._private.renderer; }, forceRender: function forceRender() { this.notify('draw'); return this; }, resize: function resize() { this.invalidateSize(); this.emitAndNotify('resize'); return this; }, initRenderer: function initRenderer(options) { var cy = this; var RendererProto = cy.extension('renderer', options.name); if (RendererProto == null) { error("Can not initialise: No such renderer `".concat(options.name, "` found. Did you forget to import it and `cytoscape.use()` it?")); return; } if (options.wheelSensitivity !== undefined) { warn("You have set a custom wheel sensitivity. This will make your app zoom unnaturally when using mainstream mice. You should change this value from the default only if you can guarantee that all your users will use the same hardware and OS configuration as your current machine."); } var rOpts = rendererDefaults(options); rOpts.cy = cy; cy._private.renderer = new RendererProto(rOpts); this.notify('init'); }, destroyRenderer: function destroyRenderer() { var cy = this; cy.notify('destroy'); // destroy the renderer var domEle = cy.container(); if (domEle) { domEle._cyreg = null; while (domEle.childNodes.length > 0) { domEle.removeChild(domEle.childNodes[0]); } } cy._private.renderer = null; // to be extra safe, remove the ref cy.mutableElements().forEach(function (ele) { var _p = ele._private; _p.rscratch = {}; _p.rstyle = {}; _p.animation.current = []; _p.animation.queue = []; }); }, onRender: function onRender(fn) { return this.on('render', fn); }, offRender: function offRender(fn) { return this.off('render', fn); } }; corefn$4.invalidateDimensions = corefn$4.resize; var corefn$3 = { // get a collection // - empty collection on no args // - collection of elements in the graph on selector arg // - guarantee a returned collection when elements or collection specified collection: function collection(eles, opts) { if (string(eles)) { return this.$(eles); } else if (elementOrCollection(eles)) { return eles.collection(); } else if (array(eles)) { if (!opts) { opts = {}; } return new Collection(this, eles, opts.unique, opts.removed); } return new Collection(this); }, nodes: function nodes(selector) { var nodes = this.$(function (ele) { return ele.isNode(); }); if (selector) { return nodes.filter(selector); } return nodes; }, edges: function edges(selector) { var edges = this.$(function (ele) { return ele.isEdge(); }); if (selector) { return edges.filter(selector); } return edges; }, // search the graph like jQuery $: function $(selector) { var eles = this._private.elements; if (selector) { return eles.filter(selector); } else { return eles.spawnSelf(); } }, mutableElements: function mutableElements() { return this._private.elements; } }; // aliases corefn$3.elements = corefn$3.filter = corefn$3.$; var styfn$8 = {}; // keys for style blocks, e.g. ttfftt var TRUE = 't'; var FALSE = 'f'; // (potentially expensive calculation) // apply the style to the element based on // - its bypass // - what selectors match it styfn$8.apply = function (eles) { var self = this; var _p = self._private; var cy = _p.cy; var updatedEles = cy.collection(); for (var ie = 0; ie < eles.length; ie++) { var ele = eles[ie]; var cxtMeta = self.getContextMeta(ele); if (cxtMeta.empty) { continue; } var cxtStyle = self.getContextStyle(cxtMeta); var app = self.applyContextStyle(cxtMeta, cxtStyle, ele); if (ele._private.appliedInitStyle) { self.updateTransitions(ele, app.diffProps); } else { ele._private.appliedInitStyle = true; } var hintsDiff = self.updateStyleHints(ele); if (hintsDiff) { updatedEles.push(ele); } } // for elements return updatedEles; }; styfn$8.getPropertiesDiff = function (oldCxtKey, newCxtKey) { var self = this; var cache = self._private.propDiffs = self._private.propDiffs || {}; var dualCxtKey = oldCxtKey + '-' + newCxtKey; var cachedVal = cache[dualCxtKey]; if (cachedVal) { return cachedVal; } var diffProps = []; var addedProp = {}; for (var i = 0; i < self.length; i++) { var cxt = self[i]; var oldHasCxt = oldCxtKey[i] === TRUE; var newHasCxt = newCxtKey[i] === TRUE; var cxtHasDiffed = oldHasCxt !== newHasCxt; var cxtHasMappedProps = cxt.mappedProperties.length > 0; if (cxtHasDiffed || newHasCxt && cxtHasMappedProps) { var props = void 0; if (cxtHasDiffed && cxtHasMappedProps) { props = cxt.properties; // suffices b/c mappedProperties is a subset of properties } else if (cxtHasDiffed) { props = cxt.properties; // need to check them all } else if (cxtHasMappedProps) { props = cxt.mappedProperties; // only need to check mapped } for (var j = 0; j < props.length; j++) { var prop = props[j]; var name = prop.name; // if a later context overrides this property, then the fact that this context has switched/diffed doesn't matter // (semi expensive check since it makes this function O(n^2) on context length, but worth it since overall result // is cached) var laterCxtOverrides = false; for (var k = i + 1; k < self.length; k++) { var laterCxt = self[k]; var hasLaterCxt = newCxtKey[k] === TRUE; if (!hasLaterCxt) { continue; } // can't override unless the context is active laterCxtOverrides = laterCxt.properties[prop.name] != null; if (laterCxtOverrides) { break; } // exit early as long as one later context overrides } if (!addedProp[name] && !laterCxtOverrides) { addedProp[name] = true; diffProps.push(name); } } // for props } // if } // for contexts cache[dualCxtKey] = diffProps; return diffProps; }; styfn$8.getContextMeta = function (ele) { var self = this; var cxtKey = ''; var diffProps; var prevKey = ele._private.styleCxtKey || ''; // get the cxt key for (var i = 0; i < self.length; i++) { var context = self[i]; var contextSelectorMatches = context.selector && context.selector.matches(ele); // NB: context.selector may be null for 'core' if (contextSelectorMatches) { cxtKey += TRUE; } else { cxtKey += FALSE; } } // for context diffProps = self.getPropertiesDiff(prevKey, cxtKey); ele._private.styleCxtKey = cxtKey; return { key: cxtKey, diffPropNames: diffProps, empty: diffProps.length === 0 }; }; // gets a computed ele style object based on matched contexts styfn$8.getContextStyle = function (cxtMeta) { var cxtKey = cxtMeta.key; var self = this; var cxtStyles = this._private.contextStyles = this._private.contextStyles || {}; // if already computed style, returned cached copy if (cxtStyles[cxtKey]) { return cxtStyles[cxtKey]; } var style = { _private: { key: cxtKey } }; for (var i = 0; i < self.length; i++) { var cxt = self[i]; var hasCxt = cxtKey[i] === TRUE; if (!hasCxt) { continue; } for (var j = 0; j < cxt.properties.length; j++) { var prop = cxt.properties[j]; style[prop.name] = prop; } } cxtStyles[cxtKey] = style; return style; }; styfn$8.applyContextStyle = function (cxtMeta, cxtStyle, ele) { var self = this; var diffProps = cxtMeta.diffPropNames; var retDiffProps = {}; var types = self.types; for (var i = 0; i < diffProps.length; i++) { var diffPropName = diffProps[i]; var cxtProp = cxtStyle[diffPropName]; var eleProp = ele.pstyle(diffPropName); if (!cxtProp) { // no context prop means delete if (!eleProp) { continue; // no existing prop means nothing needs to be removed // nb affects initial application on mapped values like control-point-distances } else if (eleProp.bypass) { cxtProp = { name: diffPropName, deleteBypassed: true }; } else { cxtProp = { name: diffPropName, "delete": true }; } } // save cycles when the context prop doesn't need to be applied if (eleProp === cxtProp) { continue; } // save cycles when a mapped context prop doesn't need to be applied if (cxtProp.mapped === types.fn // context prop is function mapper && eleProp != null // some props can be null even by default (e.g. a prop that overrides another one) && eleProp.mapping != null // ele prop is a concrete value from from a mapper && eleProp.mapping.value === cxtProp.value // the current prop on the ele is a flat prop value for the function mapper ) { // NB don't write to cxtProp, as it's shared among eles (stored in stylesheet) var mapping = eleProp.mapping; // can write to mapping, as it's a per-ele copy var fnValue = mapping.fnValue = cxtProp.value(ele); // temporarily cache the value in case of a miss if (fnValue === mapping.prevFnValue) { continue; } } var retDiffProp = retDiffProps[diffPropName] = { prev: eleProp }; self.applyParsedProperty(ele, cxtProp); retDiffProp.next = ele.pstyle(diffPropName); if (retDiffProp.next && retDiffProp.next.bypass) { retDiffProp.next = retDiffProp.next.bypassed; } } return { diffProps: retDiffProps }; }; styfn$8.updateStyleHints = function (ele) { var _p = ele._private; var self = this; var propNames = self.propertyGroupNames; var propGrKeys = self.propertyGroupKeys; var propHash = function propHash(ele, propNames, seedKey) { return self.getPropertiesHash(ele, propNames, seedKey); }; var oldStyleKey = _p.styleKey; if (ele.removed()) { return false; } var isNode = _p.group === 'nodes'; // get the style key hashes per prop group // but lazily -- only use non-default prop values to reduce the number of hashes // var overriddenStyles = ele._private.style; propNames = Object.keys(overriddenStyles); for (var i = 0; i < propGrKeys.length; i++) { var grKey = propGrKeys[i]; _p.styleKeys[grKey] = [DEFAULT_HASH_SEED, DEFAULT_HASH_SEED_ALT]; } var updateGrKey1 = function updateGrKey1(val, grKey) { return _p.styleKeys[grKey][0] = hashInt(val, _p.styleKeys[grKey][0]); }; var updateGrKey2 = function updateGrKey2(val, grKey) { return _p.styleKeys[grKey][1] = hashIntAlt(val, _p.styleKeys[grKey][1]); }; var updateGrKey = function updateGrKey(val, grKey) { updateGrKey1(val, grKey); updateGrKey2(val, grKey); }; var updateGrKeyWStr = function updateGrKeyWStr(strVal, grKey) { for (var j = 0; j < strVal.length; j++) { var ch = strVal.charCodeAt(j); updateGrKey1(ch, grKey); updateGrKey2(ch, grKey); } }; // - hashing works on 32 bit ints b/c we use bitwise ops // - small numbers get cut off (e.g. 0.123 is seen as 0 by the hashing function) // - raise up small numbers so more significant digits are seen by hashing // - make small numbers larger than a normal value to avoid collisions // - works in practice and it's relatively cheap var N = 2000000000; var cleanNum = function cleanNum(val) { return -128 < val && val < 128 && Math.floor(val) !== val ? N - (val * 1024 | 0) : val; }; for (var _i = 0; _i < propNames.length; _i++) { var name = propNames[_i]; var parsedProp = overriddenStyles[name]; if (parsedProp == null) { continue; } var propInfo = this.properties[name]; var type = propInfo.type; var _grKey = propInfo.groupKey; var normalizedNumberVal = void 0; if (propInfo.hashOverride != null) { normalizedNumberVal = propInfo.hashOverride(ele, parsedProp); } else if (parsedProp.pfValue != null) { normalizedNumberVal = parsedProp.pfValue; } // might not be a number if it allows enums var numberVal = propInfo.enums == null ? parsedProp.value : null; var haveNormNum = normalizedNumberVal != null; var haveUnitedNum = numberVal != null; var haveNum = haveNormNum || haveUnitedNum; var units = parsedProp.units; // numbers are cheaper to hash than strings // 1 hash op vs n hash ops (for length n string) if (type.number && haveNum && !type.multiple) { var v = haveNormNum ? normalizedNumberVal : numberVal; updateGrKey(cleanNum(v), _grKey); if (!haveNormNum && units != null) { updateGrKeyWStr(units, _grKey); } } else { updateGrKeyWStr(parsedProp.strValue, _grKey); } } // overall style key // var hash = [DEFAULT_HASH_SEED, DEFAULT_HASH_SEED_ALT]; for (var _i2 = 0; _i2 < propGrKeys.length; _i2++) { var _grKey2 = propGrKeys[_i2]; var grHash = _p.styleKeys[_grKey2]; hash[0] = hashInt(grHash[0], hash[0]); hash[1] = hashIntAlt(grHash[1], hash[1]); } _p.styleKey = combineHashes(hash[0], hash[1]); // label dims // var sk = _p.styleKeys; _p.labelDimsKey = combineHashesArray(sk.labelDimensions); var labelKeys = propHash(ele, ['label'], sk.labelDimensions); _p.labelKey = combineHashesArray(labelKeys); _p.labelStyleKey = combineHashesArray(hashArrays(sk.commonLabel, labelKeys)); if (!isNode) { var sourceLabelKeys = propHash(ele, ['source-label'], sk.labelDimensions); _p.sourceLabelKey = combineHashesArray(sourceLabelKeys); _p.sourceLabelStyleKey = combineHashesArray(hashArrays(sk.commonLabel, sourceLabelKeys)); var targetLabelKeys = propHash(ele, ['target-label'], sk.labelDimensions); _p.targetLabelKey = combineHashesArray(targetLabelKeys); _p.targetLabelStyleKey = combineHashesArray(hashArrays(sk.commonLabel, targetLabelKeys)); } // node // if (isNode) { var _p$styleKeys = _p.styleKeys, nodeBody = _p$styleKeys.nodeBody, nodeBorder = _p$styleKeys.nodeBorder, nodeOutline = _p$styleKeys.nodeOutline, backgroundImage = _p$styleKeys.backgroundImage, compound = _p$styleKeys.compound, pie = _p$styleKeys.pie; var nodeKeys = [nodeBody, nodeBorder, nodeOutline, backgroundImage, compound, pie].filter(function (k) { return k != null; }).reduce(hashArrays, [DEFAULT_HASH_SEED, DEFAULT_HASH_SEED_ALT]); _p.nodeKey = combineHashesArray(nodeKeys); _p.hasPie = pie != null && pie[0] !== DEFAULT_HASH_SEED && pie[1] !== DEFAULT_HASH_SEED_ALT; } return oldStyleKey !== _p.styleKey; }; styfn$8.clearStyleHints = function (ele) { var _p = ele._private; _p.styleCxtKey = ''; _p.styleKeys = {}; _p.styleKey = null; _p.labelKey = null; _p.labelStyleKey = null; _p.sourceLabelKey = null; _p.sourceLabelStyleKey = null; _p.targetLabelKey = null; _p.targetLabelStyleKey = null; _p.nodeKey = null; _p.hasPie = null; }; // apply a property to the style (for internal use) // returns whether application was successful // // now, this function flattens the property, and here's how: // // for parsedProp:{ bypass: true, deleteBypass: true } // no property is generated, instead the bypass property in the // element's style is replaced by what's pointed to by the `bypassed` // field in the bypass property (i.e. restoring the property the // bypass was overriding) // // for parsedProp:{ mapped: truthy } // the generated flattenedProp:{ mapping: prop } // // for parsedProp:{ bypass: true } // the generated flattenedProp:{ bypassed: parsedProp } styfn$8.applyParsedProperty = function (ele, parsedProp) { var self = this; var prop = parsedProp; var style = ele._private.style; var flatProp; var types = self.types; var type = self.properties[prop.name].type; var propIsBypass = prop.bypass; var origProp = style[prop.name]; var origPropIsBypass = origProp && origProp.bypass; var _p = ele._private; var flatPropMapping = 'mapping'; var getVal = function getVal(p) { if (p == null) { return null; } else if (p.pfValue != null) { return p.pfValue; } else { return p.value; } }; var checkTriggers = function checkTriggers() { var fromVal = getVal(origProp); var toVal = getVal(prop); self.checkTriggers(ele, prop.name, fromVal, toVal); }; // edge sanity checks to prevent the client from making serious mistakes if (parsedProp.name === 'curve-style' && ele.isEdge() && ( // loops must be bundled beziers parsedProp.value !== 'bezier' && ele.isLoop() || // edges connected to compound nodes can not be haystacks parsedProp.value === 'haystack' && (ele.source().isParent() || ele.target().isParent()))) { prop = parsedProp = this.parse(parsedProp.name, 'bezier', propIsBypass); } if (prop["delete"]) { // delete the property and use the default value on falsey value style[prop.name] = undefined; checkTriggers(); return true; } if (prop.deleteBypassed) { // delete the property that the if (!origProp) { checkTriggers(); return true; // can't delete if no prop } else if (origProp.bypass) { // delete bypassed origProp.bypassed = undefined; checkTriggers(); return true; } else { return false; // we're unsuccessful deleting the bypassed } } // check if we need to delete the current bypass if (prop.deleteBypass) { // then this property is just here to indicate we need to delete if (!origProp) { checkTriggers(); return true; // property is already not defined } else if (origProp.bypass) { // then replace the bypass property with the original // because the bypassed property was already applied (and therefore parsed), we can just replace it (no reapplying necessary) style[prop.name] = origProp.bypassed; checkTriggers(); return true; } else { return false; // we're unsuccessful deleting the bypass } } var printMappingErr = function printMappingErr() { warn('Do not assign mappings to elements without corresponding data (i.e. ele `' + ele.id() + '` has no mapping for property `' + prop.name + '` with data field `' + prop.field + '`); try a `[' + prop.field + ']` selector to limit scope to elements with `' + prop.field + '` defined'); }; // put the property in the style objects switch (prop.mapped) { // flatten the property if mapped case types.mapData: { // flatten the field (e.g. data.foo.bar) var fields = prop.field.split('.'); var fieldVal = _p.data; for (var i = 0; i < fields.length && fieldVal; i++) { var field = fields[i]; fieldVal = fieldVal[field]; } if (fieldVal == null) { printMappingErr(); return false; } var percent; if (!number$1(fieldVal)) { // then don't apply and fall back on the existing style warn('Do not use continuous mappers without specifying numeric data (i.e. `' + prop.field + ': ' + fieldVal + '` for `' + ele.id() + '` is non-numeric)'); return false; } else { var fieldWidth = prop.fieldMax - prop.fieldMin; if (fieldWidth === 0) { // safety check -- not strictly necessary as no props of zero range should be passed here percent = 0; } else { percent = (fieldVal - prop.fieldMin) / fieldWidth; } } // make sure to bound percent value if (percent < 0) { percent = 0; } else if (percent > 1) { percent = 1; } if (type.color) { var r1 = prop.valueMin[0]; var r2 = prop.valueMax[0]; var g1 = prop.valueMin[1]; var g2 = prop.valueMax[1]; var b1 = prop.valueMin[2]; var b2 = prop.valueMax[2]; var a1 = prop.valueMin[3] == null ? 1 : prop.valueMin[3]; var a2 = prop.valueMax[3] == null ? 1 : prop.valueMax[3]; var clr = [Math.round(r1 + (r2 - r1) * percent), Math.round(g1 + (g2 - g1) * percent), Math.round(b1 + (b2 - b1) * percent), Math.round(a1 + (a2 - a1) * percent)]; flatProp = { // colours are simple, so just create the flat property instead of expensive string parsing bypass: prop.bypass, // we're a bypass if the mapping property is a bypass name: prop.name, value: clr, strValue: 'rgb(' + clr[0] + ', ' + clr[1] + ', ' + clr[2] + ')' }; } else if (type.number) { var calcValue = prop.valueMin + (prop.valueMax - prop.valueMin) * percent; flatProp = this.parse(prop.name, calcValue, prop.bypass, flatPropMapping); } else { return false; // can only map to colours and numbers } if (!flatProp) { // if we can't flatten the property, then don't apply the property and fall back on the existing style printMappingErr(); return false; } flatProp.mapping = prop; // keep a reference to the mapping prop = flatProp; // the flattened (mapped) property is the one we want break; } // direct mapping case types.data: { // flatten the field (e.g. data.foo.bar) var _fields = prop.field.split('.'); var _fieldVal = _p.data; for (var _i3 = 0; _i3 < _fields.length && _fieldVal; _i3++) { var _field = _fields[_i3]; _fieldVal = _fieldVal[_field]; } if (_fieldVal != null) { flatProp = this.parse(prop.name, _fieldVal, prop.bypass, flatPropMapping); } if (!flatProp) { // if we can't flatten the property, then don't apply and fall back on the existing style printMappingErr(); return false; } flatProp.mapping = prop; // keep a reference to the mapping prop = flatProp; // the flattened (mapped) property is the one we want break; } case types.fn: { var fn = prop.value; var fnRetVal = prop.fnValue != null ? prop.fnValue : fn(ele); // check for cached value before calling function prop.prevFnValue = fnRetVal; if (fnRetVal == null) { warn('Custom function mappers may not return null (i.e. `' + prop.name + '` for ele `' + ele.id() + '` is null)'); return false; } flatProp = this.parse(prop.name, fnRetVal, prop.bypass, flatPropMapping); if (!flatProp) { warn('Custom function mappers may not return invalid values for the property type (i.e. `' + prop.name + '` for ele `' + ele.id() + '` is invalid)'); return false; } flatProp.mapping = copy(prop); // keep a reference to the mapping prop = flatProp; // the flattened (mapped) property is the one we want break; } case undefined: break; // just set the property default: return false; // not a valid mapping } // if the property is a bypass property, then link the resultant property to the original one if (propIsBypass) { if (origPropIsBypass) { // then this bypass overrides the existing one prop.bypassed = origProp.bypassed; // steal bypassed prop from old bypass } else { // then link the orig prop to the new bypass prop.bypassed = origProp; } style[prop.name] = prop; // and set } else { // prop is not bypass if (origPropIsBypass) { // then keep the orig prop (since it's a bypass) and link to the new prop origProp.bypassed = prop; } else { // then just replace the old prop with the new one style[prop.name] = prop; } } checkTriggers(); return true; }; styfn$8.cleanElements = function (eles, keepBypasses) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; this.clearStyleHints(ele); ele.dirtyCompoundBoundsCache(); ele.dirtyBoundingBoxCache(); if (!keepBypasses) { ele._private.style = {}; } else { var style = ele._private.style; var propNames = Object.keys(style); for (var j = 0; j < propNames.length; j++) { var propName = propNames[j]; var eleProp = style[propName]; if (eleProp != null) { if (eleProp.bypass) { eleProp.bypassed = null; } else { style[propName] = null; } } } } } }; // updates the visual style for all elements (useful for manual style modification after init) styfn$8.update = function () { var cy = this._private.cy; var eles = cy.mutableElements(); eles.updateStyle(); }; // diffProps : { name => { prev, next } } styfn$8.updateTransitions = function (ele, diffProps) { var self = this; var _p = ele._private; var props = ele.pstyle('transition-property').value; var duration = ele.pstyle('transition-duration').pfValue; var delay = ele.pstyle('transition-delay').pfValue; if (props.length > 0 && duration > 0) { var style = {}; // build up the style to animate towards var anyPrev = false; for (var i = 0; i < props.length; i++) { var prop = props[i]; var styProp = ele.pstyle(prop); var diffProp = diffProps[prop]; if (!diffProp) { continue; } var prevProp = diffProp.prev; var fromProp = prevProp; var toProp = diffProp.next != null ? diffProp.next : styProp; var diff = false; var initVal = void 0; var initDt = 0.000001; // delta time % value for initVal (allows animating out of init zero opacity) if (!fromProp) { continue; } // consider px values if (number$1(fromProp.pfValue) && number$1(toProp.pfValue)) { diff = toProp.pfValue - fromProp.pfValue; // nonzero is truthy initVal = fromProp.pfValue + initDt * diff; // consider numerical values } else if (number$1(fromProp.value) && number$1(toProp.value)) { diff = toProp.value - fromProp.value; // nonzero is truthy initVal = fromProp.value + initDt * diff; // consider colour values } else if (array(fromProp.value) && array(toProp.value)) { diff = fromProp.value[0] !== toProp.value[0] || fromProp.value[1] !== toProp.value[1] || fromProp.value[2] !== toProp.value[2]; initVal = fromProp.strValue; } // the previous value is good for an animation only if it's different if (diff) { style[prop] = toProp.strValue; // to val this.applyBypass(ele, prop, initVal); // from val anyPrev = true; } } // end if props allow ani // can't transition if there's nothing previous to transition from if (!anyPrev) { return; } _p.transitioning = true; new Promise$1(function (resolve) { if (delay > 0) { ele.delayAnimation(delay).play().promise().then(resolve); } else { resolve(); } }).then(function () { return ele.animation({ style: style, duration: duration, easing: ele.pstyle('transition-timing-function').value, queue: false }).play().promise(); }).then(function () { // if( !isBypass ){ self.removeBypasses(ele, props); ele.emitAndNotify('style'); // } _p.transitioning = false; }); } else if (_p.transitioning) { this.removeBypasses(ele, props); ele.emitAndNotify('style'); _p.transitioning = false; } }; styfn$8.checkTrigger = function (ele, name, fromValue, toValue, getTrigger, onTrigger) { var prop = this.properties[name]; var triggerCheck = getTrigger(prop); if (triggerCheck != null && triggerCheck(fromValue, toValue)) { onTrigger(prop); } }; styfn$8.checkZOrderTrigger = function (ele, name, fromValue, toValue) { var _this = this; this.checkTrigger(ele, name, fromValue, toValue, function (prop) { return prop.triggersZOrder; }, function () { _this._private.cy.notify('zorder', ele); }); }; styfn$8.checkBoundsTrigger = function (ele, name, fromValue, toValue) { this.checkTrigger(ele, name, fromValue, toValue, function (prop) { return prop.triggersBounds; }, function (prop) { ele.dirtyCompoundBoundsCache(); ele.dirtyBoundingBoxCache(); // if the prop change makes the bb of pll bezier edges invalid, // then dirty the pll edge bb cache as well if ( // only for beziers -- so performance of other edges isn't affected prop.triggersBoundsOfParallelBeziers && name === 'curve-style' && (fromValue === 'bezier' || toValue === 'bezier')) { ele.parallelEdges().forEach(function (pllEdge) { if (pllEdge.isBundledBezier()) { pllEdge.dirtyBoundingBoxCache(); } }); } if (prop.triggersBoundsOfConnectedEdges && name === 'display' && (fromValue === 'none' || toValue === 'none')) { ele.connectedEdges().forEach(function (edge) { edge.dirtyBoundingBoxCache(); }); } }); }; styfn$8.checkTriggers = function (ele, name, fromValue, toValue) { ele.dirtyStyleCache(); this.checkZOrderTrigger(ele, name, fromValue, toValue); this.checkBoundsTrigger(ele, name, fromValue, toValue); }; var styfn$7 = {}; // bypasses are applied to an existing style on an element, and just tacked on temporarily // returns true iff application was successful for at least 1 specified property styfn$7.applyBypass = function (eles, name, value, updateTransitions) { var self = this; var props = []; var isBypass = true; // put all the properties (can specify one or many) in an array after parsing them if (name === '*' || name === '**') { // apply to all property names if (value !== undefined) { for (var i = 0; i < self.properties.length; i++) { var prop = self.properties[i]; var _name = prop.name; var parsedProp = this.parse(_name, value, true); if (parsedProp) { props.push(parsedProp); } } } } else if (string(name)) { // then parse the single property var _parsedProp = this.parse(name, value, true); if (_parsedProp) { props.push(_parsedProp); } } else if (plainObject(name)) { // then parse each property var specifiedProps = name; updateTransitions = value; var names = Object.keys(specifiedProps); for (var _i = 0; _i < names.length; _i++) { var _name2 = names[_i]; var _value = specifiedProps[_name2]; if (_value === undefined) { // try camel case name too _value = specifiedProps[dash2camel(_name2)]; } if (_value !== undefined) { var _parsedProp2 = this.parse(_name2, _value, true); if (_parsedProp2) { props.push(_parsedProp2); } } } } else { // can't do anything without well defined properties return false; } // we've failed if there are no valid properties if (props.length === 0) { return false; } // now, apply the bypass properties on the elements var ret = false; // return true if at least one succesful bypass applied for (var _i2 = 0; _i2 < eles.length; _i2++) { // for each ele var ele = eles[_i2]; var diffProps = {}; var diffProp = void 0; for (var j = 0; j < props.length; j++) { // for each prop var _prop = props[j]; if (updateTransitions) { var prevProp = ele.pstyle(_prop.name); diffProp = diffProps[_prop.name] = { prev: prevProp }; } ret = this.applyParsedProperty(ele, copy(_prop)) || ret; if (updateTransitions) { diffProp.next = ele.pstyle(_prop.name); } } // for props if (ret) { this.updateStyleHints(ele); } if (updateTransitions) { this.updateTransitions(ele, diffProps, isBypass); } } // for eles return ret; }; // only useful in specific cases like animation styfn$7.overrideBypass = function (eles, name, value) { name = camel2dash(name); for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var prop = ele._private.style[name]; var type = this.properties[name].type; var isColor = type.color; var isMulti = type.mutiple; var oldValue = !prop ? null : prop.pfValue != null ? prop.pfValue : prop.value; if (!prop || !prop.bypass) { // need a bypass if one doesn't exist this.applyBypass(ele, name, value); } else { prop.value = value; if (prop.pfValue != null) { prop.pfValue = value; } if (isColor) { prop.strValue = 'rgb(' + value.join(',') + ')'; } else if (isMulti) { prop.strValue = value.join(' '); } else { prop.strValue = '' + value; } this.updateStyleHints(ele); } this.checkTriggers(ele, name, oldValue, value); } }; styfn$7.removeAllBypasses = function (eles, updateTransitions) { return this.removeBypasses(eles, this.propertyNames, updateTransitions); }; styfn$7.removeBypasses = function (eles, props, updateTransitions) { var isBypass = true; for (var j = 0; j < eles.length; j++) { var ele = eles[j]; var diffProps = {}; for (var i = 0; i < props.length; i++) { var name = props[i]; var prop = this.properties[name]; var prevProp = ele.pstyle(prop.name); if (!prevProp || !prevProp.bypass) { // if a bypass doesn't exist for the prop, nothing needs to be removed continue; } var value = ''; // empty => remove bypass var parsedProp = this.parse(name, value, true); var diffProp = diffProps[prop.name] = { prev: prevProp }; this.applyParsedProperty(ele, parsedProp); diffProp.next = ele.pstyle(prop.name); } // for props this.updateStyleHints(ele); if (updateTransitions) { this.updateTransitions(ele, diffProps, isBypass); } } // for eles }; var styfn$6 = {}; // gets what an em size corresponds to in pixels relative to a dom element styfn$6.getEmSizeInPixels = function () { var px = this.containerCss('font-size'); if (px != null) { return parseFloat(px); } else { return 1; // for headless } }; // gets css property from the core container styfn$6.containerCss = function (propName) { var cy = this._private.cy; var domElement = cy.container(); var containerWindow = cy.window(); if (containerWindow && domElement && containerWindow.getComputedStyle) { return containerWindow.getComputedStyle(domElement).getPropertyValue(propName); } }; var styfn$5 = {}; // gets the rendered style for an element styfn$5.getRenderedStyle = function (ele, prop) { if (prop) { return this.getStylePropertyValue(ele, prop, true); } else { return this.getRawStyle(ele, true); } }; // gets the raw style for an element styfn$5.getRawStyle = function (ele, isRenderedVal) { var self = this; ele = ele[0]; // insure it's an element if (ele) { var rstyle = {}; for (var i = 0; i < self.properties.length; i++) { var prop = self.properties[i]; var val = self.getStylePropertyValue(ele, prop.name, isRenderedVal); if (val != null) { rstyle[prop.name] = val; rstyle[dash2camel(prop.name)] = val; } } return rstyle; } }; styfn$5.getIndexedStyle = function (ele, property, subproperty, index) { var pstyle = ele.pstyle(property)[subproperty][index]; return pstyle != null ? pstyle : ele.cy().style().getDefaultProperty(property)[subproperty][0]; }; styfn$5.getStylePropertyValue = function (ele, propName, isRenderedVal) { var self = this; ele = ele[0]; // insure it's an element if (ele) { var prop = self.properties[propName]; if (prop.alias) { prop = prop.pointsTo; } var type = prop.type; var styleProp = ele.pstyle(prop.name); if (styleProp) { var value = styleProp.value, units = styleProp.units, strValue = styleProp.strValue; if (isRenderedVal && type.number && value != null && number$1(value)) { var zoom = ele.cy().zoom(); var getRenderedValue = function getRenderedValue(val) { return val * zoom; }; var getValueStringWithUnits = function getValueStringWithUnits(val, units) { return getRenderedValue(val) + units; }; var isArrayValue = array(value); var haveUnits = isArrayValue ? units.every(function (u) { return u != null; }) : units != null; if (haveUnits) { if (isArrayValue) { return value.map(function (v, i) { return getValueStringWithUnits(v, units[i]); }).join(' '); } else { return getValueStringWithUnits(value, units); } } else { if (isArrayValue) { return value.map(function (v) { return string(v) ? v : '' + getRenderedValue(v); }).join(' '); } else { return '' + getRenderedValue(value); } } } else if (strValue != null) { return strValue; } } return null; } }; styfn$5.getAnimationStartStyle = function (ele, aniProps) { var rstyle = {}; for (var i = 0; i < aniProps.length; i++) { var aniProp = aniProps[i]; var name = aniProp.name; var styleProp = ele.pstyle(name); if (styleProp !== undefined) { // then make a prop of it if (plainObject(styleProp)) { styleProp = this.parse(name, styleProp.strValue); } else { styleProp = this.parse(name, styleProp); } } if (styleProp) { rstyle[name] = styleProp; } } return rstyle; }; styfn$5.getPropsList = function (propsObj) { var self = this; var rstyle = []; var style = propsObj; var props = self.properties; if (style) { var names = Object.keys(style); for (var i = 0; i < names.length; i++) { var name = names[i]; var val = style[name]; var prop = props[name] || props[camel2dash(name)]; var styleProp = this.parse(prop.name, val); if (styleProp) { rstyle.push(styleProp); } } } return rstyle; }; styfn$5.getNonDefaultPropertiesHash = function (ele, propNames, seed) { var hash = seed.slice(); var name, val, strVal, chVal; var i, j; for (i = 0; i < propNames.length; i++) { name = propNames[i]; val = ele.pstyle(name, false); if (val == null) { continue; } else if (val.pfValue != null) { hash[0] = hashInt(chVal, hash[0]); hash[1] = hashIntAlt(chVal, hash[1]); } else { strVal = val.strValue; for (j = 0; j < strVal.length; j++) { chVal = strVal.charCodeAt(j); hash[0] = hashInt(chVal, hash[0]); hash[1] = hashIntAlt(chVal, hash[1]); } } } return hash; }; styfn$5.getPropertiesHash = styfn$5.getNonDefaultPropertiesHash; var styfn$4 = {}; styfn$4.appendFromJson = function (json) { var style = this; for (var i = 0; i < json.length; i++) { var context = json[i]; var selector = context.selector; var props = context.style || context.css; var names = Object.keys(props); style.selector(selector); // apply selector for (var j = 0; j < names.length; j++) { var name = names[j]; var value = props[name]; style.css(name, value); // apply property } } return style; }; // accessible cy.style() function styfn$4.fromJson = function (json) { var style = this; style.resetToDefault(); style.appendFromJson(json); return style; }; // get json from cy.style() api styfn$4.json = function () { var json = []; for (var i = this.defaultLength; i < this.length; i++) { var cxt = this[i]; var selector = cxt.selector; var props = cxt.properties; var css = {}; for (var j = 0; j < props.length; j++) { var prop = props[j]; css[prop.name] = prop.strValue; } json.push({ selector: !selector ? 'core' : selector.toString(), style: css }); } return json; }; var styfn$3 = {}; styfn$3.appendFromString = function (string) { var self = this; var style = this; var remaining = '' + string; var selAndBlockStr; var blockRem; var propAndValStr; // remove comments from the style string remaining = remaining.replace(/[/][*](\s|.)+?[*][/]/g, ''); function removeSelAndBlockFromRemaining() { // remove the parsed selector and block from the remaining text to parse if (remaining.length > selAndBlockStr.length) { remaining = remaining.substr(selAndBlockStr.length); } else { remaining = ''; } } function removePropAndValFromRem() { // remove the parsed property and value from the remaining block text to parse if (blockRem.length > propAndValStr.length) { blockRem = blockRem.substr(propAndValStr.length); } else { blockRem = ''; } } for (;;) { var nothingLeftToParse = remaining.match(/^\s*$/); if (nothingLeftToParse) { break; } var selAndBlock = remaining.match(/^\s*((?:.|\s)+?)\s*\{((?:.|\s)+?)\}/); if (!selAndBlock) { warn('Halting stylesheet parsing: String stylesheet contains more to parse but no selector and block found in: ' + remaining); break; } selAndBlockStr = selAndBlock[0]; // parse the selector var selectorStr = selAndBlock[1]; if (selectorStr !== 'core') { var selector = new Selector(selectorStr); if (selector.invalid) { warn('Skipping parsing of block: Invalid selector found in string stylesheet: ' + selectorStr); // skip this selector and block removeSelAndBlockFromRemaining(); continue; } } // parse the block of properties and values var blockStr = selAndBlock[2]; var invalidBlock = false; blockRem = blockStr; var props = []; for (;;) { var _nothingLeftToParse = blockRem.match(/^\s*$/); if (_nothingLeftToParse) { break; } var propAndVal = blockRem.match(/^\s*(.+?)\s*:\s*(.+?)(?:\s*;|\s*$)/); if (!propAndVal) { warn('Skipping parsing of block: Invalid formatting of style property and value definitions found in:' + blockStr); invalidBlock = true; break; } propAndValStr = propAndVal[0]; var propStr = propAndVal[1]; var valStr = propAndVal[2]; var prop = self.properties[propStr]; if (!prop) { warn('Skipping property: Invalid property name in: ' + propAndValStr); // skip this property in the block removePropAndValFromRem(); continue; } var parsedProp = style.parse(propStr, valStr); if (!parsedProp) { warn('Skipping property: Invalid property definition in: ' + propAndValStr); // skip this property in the block removePropAndValFromRem(); continue; } props.push({ name: propStr, val: valStr }); removePropAndValFromRem(); } if (invalidBlock) { removeSelAndBlockFromRemaining(); break; } // put the parsed block in the style style.selector(selectorStr); for (var i = 0; i < props.length; i++) { var _prop = props[i]; style.css(_prop.name, _prop.val); } removeSelAndBlockFromRemaining(); } return style; }; styfn$3.fromString = function (string) { var style = this; style.resetToDefault(); style.appendFromString(string); return style; }; var styfn$2 = {}; (function () { var number$1 = number; var rgba = rgbaNoBackRefs; var hsla = hslaNoBackRefs; var hex3$1 = hex3; var hex6$1 = hex6; var data = function data(prefix) { return '^' + prefix + '\\s*\\(\\s*([\\w\\.]+)\\s*\\)$'; }; var mapData = function mapData(prefix) { var mapArg = number$1 + '|\\w+|' + rgba + '|' + hsla + '|' + hex3$1 + '|' + hex6$1; return '^' + prefix + '\\s*\\(([\\w\\.]+)\\s*\\,\\s*(' + number$1 + ')\\s*\\,\\s*(' + number$1 + ')\\s*,\\s*(' + mapArg + ')\\s*\\,\\s*(' + mapArg + ')\\)$'; }; var urlRegexes = ['^url\\s*\\(\\s*[\'"]?(.+?)[\'"]?\\s*\\)$', '^(none)$', '^(.+)$']; // each visual style property has a type and needs to be validated according to it styfn$2.types = { time: { number: true, min: 0, units: 's|ms', implicitUnits: 'ms' }, percent: { number: true, min: 0, max: 100, units: '%', implicitUnits: '%' }, percentages: { number: true, min: 0, max: 100, units: '%', implicitUnits: '%', multiple: true }, zeroOneNumber: { number: true, min: 0, max: 1, unitless: true }, zeroOneNumbers: { number: true, min: 0, max: 1, unitless: true, multiple: true }, nOneOneNumber: { number: true, min: -1, max: 1, unitless: true }, nonNegativeInt: { number: true, min: 0, integer: true, unitless: true }, nonNegativeNumber: { number: true, min: 0, unitless: true }, position: { enums: ['parent', 'origin'] }, nodeSize: { number: true, min: 0, enums: ['label'] }, number: { number: true, unitless: true }, numbers: { number: true, unitless: true, multiple: true }, positiveNumber: { number: true, unitless: true, min: 0, strictMin: true }, size: { number: true, min: 0 }, bidirectionalSize: { number: true }, // allows negative bidirectionalSizeMaybePercent: { number: true, allowPercent: true }, // allows negative bidirectionalSizes: { number: true, multiple: true }, // allows negative sizeMaybePercent: { number: true, min: 0, allowPercent: true }, axisDirection: { enums: ['horizontal', 'leftward', 'rightward', 'vertical', 'upward', 'downward', 'auto'] }, paddingRelativeTo: { enums: ['width', 'height', 'average', 'min', 'max'] }, bgWH: { number: true, min: 0, allowPercent: true, enums: ['auto'], multiple: true }, bgPos: { number: true, allowPercent: true, multiple: true }, bgRelativeTo: { enums: ['inner', 'include-padding'], multiple: true }, bgRepeat: { enums: ['repeat', 'repeat-x', 'repeat-y', 'no-repeat'], multiple: true }, bgFit: { enums: ['none', 'contain', 'cover'], multiple: true }, bgCrossOrigin: { enums: ['anonymous', 'use-credentials', 'null'], multiple: true }, bgClip: { enums: ['none', 'node'], multiple: true }, bgContainment: { enums: ['inside', 'over'], multiple: true }, color: { color: true }, colors: { color: true, multiple: true }, fill: { enums: ['solid', 'linear-gradient', 'radial-gradient'] }, bool: { enums: ['yes', 'no'] }, bools: { enums: ['yes', 'no'], multiple: true }, lineStyle: { enums: ['solid', 'dotted', 'dashed'] }, lineCap: { enums: ['butt', 'round', 'square'] }, linePosition: { enums: ['center', 'inside', 'outside'] }, lineJoin: { enums: ['round', 'bevel', 'miter'] }, borderStyle: { enums: ['solid', 'dotted', 'dashed', 'double'] }, curveStyle: { enums: ['bezier', 'unbundled-bezier', 'haystack', 'segments', 'straight', 'straight-triangle', 'taxi', 'round-segments', 'round-taxi'] }, radiusType: { enums: ['arc-radius', 'influence-radius'], multiple: true }, fontFamily: { regex: '^([\\w- \\"]+(?:\\s*,\\s*[\\w- \\"]+)*)$' }, fontStyle: { enums: ['italic', 'normal', 'oblique'] }, fontWeight: { enums: ['normal', 'bold', 'bolder', 'lighter', '100', '200', '300', '400', '500', '600', '800', '900', 100, 200, 300, 400, 500, 600, 700, 800, 900] }, textDecoration: { enums: ['none', 'underline', 'overline', 'line-through'] }, textTransform: { enums: ['none', 'uppercase', 'lowercase'] }, textWrap: { enums: ['none', 'wrap', 'ellipsis'] }, textOverflowWrap: { enums: ['whitespace', 'anywhere'] }, textBackgroundShape: { enums: ['rectangle', 'roundrectangle', 'round-rectangle'] }, nodeShape: { enums: ['rectangle', 'roundrectangle', 'round-rectangle', 'cutrectangle', 'cut-rectangle', 'bottomroundrectangle', 'bottom-round-rectangle', 'barrel', 'ellipse', 'triangle', 'round-triangle', 'square', 'pentagon', 'round-pentagon', 'hexagon', 'round-hexagon', 'concavehexagon', 'concave-hexagon', 'heptagon', 'round-heptagon', 'octagon', 'round-octagon', 'tag', 'round-tag', 'star', 'diamond', 'round-diamond', 'vee', 'rhomboid', 'right-rhomboid', 'polygon'] }, overlayShape: { enums: ['roundrectangle', 'round-rectangle', 'ellipse'] }, cornerRadius: { number: true, min: 0, units: 'px|em', implicitUnits: 'px', enums: ['auto'] }, compoundIncludeLabels: { enums: ['include', 'exclude'] }, arrowShape: { enums: ['tee', 'triangle', 'triangle-tee', 'circle-triangle', 'triangle-cross', 'triangle-backcurve', 'vee', 'square', 'circle', 'diamond', 'chevron', 'none'] }, arrowFill: { enums: ['filled', 'hollow'] }, arrowWidth: { number: true, units: '%|px|em', implicitUnits: 'px', enums: ['match-line'] }, display: { enums: ['element', 'none'] }, visibility: { enums: ['hidden', 'visible'] }, zCompoundDepth: { enums: ['bottom', 'orphan', 'auto', 'top'] }, zIndexCompare: { enums: ['auto', 'manual'] }, valign: { enums: ['top', 'center', 'bottom'] }, halign: { enums: ['left', 'center', 'right'] }, justification: { enums: ['left', 'center', 'right', 'auto'] }, text: { string: true }, data: { mapping: true, regex: data('data') }, layoutData: { mapping: true, regex: data('layoutData') }, scratch: { mapping: true, regex: data('scratch') }, mapData: { mapping: true, regex: mapData('mapData') }, mapLayoutData: { mapping: true, regex: mapData('mapLayoutData') }, mapScratch: { mapping: true, regex: mapData('mapScratch') }, fn: { mapping: true, fn: true }, url: { regexes: urlRegexes, singleRegexMatchValue: true }, urls: { regexes: urlRegexes, singleRegexMatchValue: true, multiple: true }, propList: { propList: true }, angle: { number: true, units: 'deg|rad', implicitUnits: 'rad' }, textRotation: { number: true, units: 'deg|rad', implicitUnits: 'rad', enums: ['none', 'autorotate'] }, polygonPointList: { number: true, multiple: true, evenMultiple: true, min: -1, max: 1, unitless: true }, edgeDistances: { enums: ['intersection', 'node-position', 'endpoints'] }, edgeEndpoint: { number: true, multiple: true, units: '%|px|em|deg|rad', implicitUnits: 'px', enums: ['inside-to-node', 'outside-to-node', 'outside-to-node-or-label', 'outside-to-line', 'outside-to-line-or-label'], singleEnum: true, validate: function validate(valArr, unitsArr) { switch (valArr.length) { case 2: // can be % or px only return unitsArr[0] !== 'deg' && unitsArr[0] !== 'rad' && unitsArr[1] !== 'deg' && unitsArr[1] !== 'rad'; case 1: // can be enum, deg, or rad only return string(valArr[0]) || unitsArr[0] === 'deg' || unitsArr[0] === 'rad'; default: return false; } } }, easing: { regexes: ['^(spring)\\s*\\(\\s*(' + number$1 + ')\\s*,\\s*(' + number$1 + ')\\s*\\)$', '^(cubic-bezier)\\s*\\(\\s*(' + number$1 + ')\\s*,\\s*(' + number$1 + ')\\s*,\\s*(' + number$1 + ')\\s*,\\s*(' + number$1 + ')\\s*\\)$'], enums: ['linear', 'ease', 'ease-in', 'ease-out', 'ease-in-out', 'ease-in-sine', 'ease-out-sine', 'ease-in-out-sine', 'ease-in-quad', 'ease-out-quad', 'ease-in-out-quad', 'ease-in-cubic', 'ease-out-cubic', 'ease-in-out-cubic', 'ease-in-quart', 'ease-out-quart', 'ease-in-out-quart', 'ease-in-quint', 'ease-out-quint', 'ease-in-out-quint', 'ease-in-expo', 'ease-out-expo', 'ease-in-out-expo', 'ease-in-circ', 'ease-out-circ', 'ease-in-out-circ'] }, gradientDirection: { enums: ['to-bottom', 'to-top', 'to-left', 'to-right', 'to-bottom-right', 'to-bottom-left', 'to-top-right', 'to-top-left', 'to-right-bottom', 'to-left-bottom', 'to-right-top', 'to-left-top' // different order ] }, boundsExpansion: { number: true, multiple: true, min: 0, validate: function validate(valArr) { var length = valArr.length; return length === 1 || length === 2 || length === 4; } } }; var diff = { zeroNonZero: function zeroNonZero(val1, val2) { if ((val1 == null || val2 == null) && val1 !== val2) { return true; // null cases could represent any value } if (val1 == 0 && val2 != 0) { return true; } else if (val1 != 0 && val2 == 0) { return true; } else { return false; } }, any: function any(val1, val2) { return val1 != val2; }, emptyNonEmpty: function emptyNonEmpty(str1, str2) { var empty1 = emptyString(str1); var empty2 = emptyString(str2); return empty1 && !empty2 || !empty1 && empty2; } }; // define visual style properties // // - n.b. adding a new group of props may require updates to updateStyleHints() // - adding new props to an existing group gets handled automatically var t = styfn$2.types; var mainLabel = [{ name: 'label', type: t.text, triggersBounds: diff.any, triggersZOrder: diff.emptyNonEmpty }, { name: 'text-rotation', type: t.textRotation, triggersBounds: diff.any }, { name: 'text-margin-x', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'text-margin-y', type: t.bidirectionalSize, triggersBounds: diff.any }]; var sourceLabel = [{ name: 'source-label', type: t.text, triggersBounds: diff.any }, { name: 'source-text-rotation', type: t.textRotation, triggersBounds: diff.any }, { name: 'source-text-margin-x', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'source-text-margin-y', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'source-text-offset', type: t.size, triggersBounds: diff.any }]; var targetLabel = [{ name: 'target-label', type: t.text, triggersBounds: diff.any }, { name: 'target-text-rotation', type: t.textRotation, triggersBounds: diff.any }, { name: 'target-text-margin-x', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'target-text-margin-y', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'target-text-offset', type: t.size, triggersBounds: diff.any }]; var labelDimensions = [{ name: 'font-family', type: t.fontFamily, triggersBounds: diff.any }, { name: 'font-style', type: t.fontStyle, triggersBounds: diff.any }, { name: 'font-weight', type: t.fontWeight, triggersBounds: diff.any }, { name: 'font-size', type: t.size, triggersBounds: diff.any }, { name: 'text-transform', type: t.textTransform, triggersBounds: diff.any }, { name: 'text-wrap', type: t.textWrap, triggersBounds: diff.any }, { name: 'text-overflow-wrap', type: t.textOverflowWrap, triggersBounds: diff.any }, { name: 'text-max-width', type: t.size, triggersBounds: diff.any }, { name: 'text-outline-width', type: t.size, triggersBounds: diff.any }, { name: 'line-height', type: t.positiveNumber, triggersBounds: diff.any }]; var commonLabel = [{ name: 'text-valign', type: t.valign, triggersBounds: diff.any }, { name: 'text-halign', type: t.halign, triggersBounds: diff.any }, { name: 'color', type: t.color }, { name: 'text-outline-color', type: t.color }, { name: 'text-outline-opacity', type: t.zeroOneNumber }, { name: 'text-background-color', type: t.color }, { name: 'text-background-opacity', type: t.zeroOneNumber }, { name: 'text-background-padding', type: t.size, triggersBounds: diff.any }, { name: 'text-border-opacity', type: t.zeroOneNumber }, { name: 'text-border-color', type: t.color }, { name: 'text-border-width', type: t.size, triggersBounds: diff.any }, { name: 'text-border-style', type: t.borderStyle, triggersBounds: diff.any }, { name: 'text-background-shape', type: t.textBackgroundShape, triggersBounds: diff.any }, { name: 'text-justification', type: t.justification }]; var behavior = [{ name: 'events', type: t.bool, triggersZOrder: diff.any }, { name: 'text-events', type: t.bool, triggersZOrder: diff.any }]; var visibility = [{ name: 'display', type: t.display, triggersZOrder: diff.any, triggersBounds: diff.any, triggersBoundsOfConnectedEdges: true }, { name: 'visibility', type: t.visibility, triggersZOrder: diff.any }, { name: 'opacity', type: t.zeroOneNumber, triggersZOrder: diff.zeroNonZero }, { name: 'text-opacity', type: t.zeroOneNumber }, { name: 'min-zoomed-font-size', type: t.size }, { name: 'z-compound-depth', type: t.zCompoundDepth, triggersZOrder: diff.any }, { name: 'z-index-compare', type: t.zIndexCompare, triggersZOrder: diff.any }, { name: 'z-index', type: t.number, triggersZOrder: diff.any }]; var overlay = [{ name: 'overlay-padding', type: t.size, triggersBounds: diff.any }, { name: 'overlay-color', type: t.color }, { name: 'overlay-opacity', type: t.zeroOneNumber, triggersBounds: diff.zeroNonZero }, { name: 'overlay-shape', type: t.overlayShape, triggersBounds: diff.any }, { name: 'overlay-corner-radius', type: t.cornerRadius }]; var underlay = [{ name: 'underlay-padding', type: t.size, triggersBounds: diff.any }, { name: 'underlay-color', type: t.color }, { name: 'underlay-opacity', type: t.zeroOneNumber, triggersBounds: diff.zeroNonZero }, { name: 'underlay-shape', type: t.overlayShape, triggersBounds: diff.any }, { name: 'underlay-corner-radius', type: t.cornerRadius }]; var transition = [{ name: 'transition-property', type: t.propList }, { name: 'transition-duration', type: t.time }, { name: 'transition-delay', type: t.time }, { name: 'transition-timing-function', type: t.easing }]; var nodeSizeHashOverride = function nodeSizeHashOverride(ele, parsedProp) { if (parsedProp.value === 'label') { return -ele.poolIndex(); // no hash key hits is using label size (hitrate for perf probably low anyway) } else { return parsedProp.pfValue; } }; var nodeBody = [{ name: 'height', type: t.nodeSize, triggersBounds: diff.any, hashOverride: nodeSizeHashOverride }, { name: 'width', type: t.nodeSize, triggersBounds: diff.any, hashOverride: nodeSizeHashOverride }, { name: 'shape', type: t.nodeShape, triggersBounds: diff.any }, { name: 'shape-polygon-points', type: t.polygonPointList, triggersBounds: diff.any }, { name: 'corner-radius', type: t.cornerRadius }, { name: 'background-color', type: t.color }, { name: 'background-fill', type: t.fill }, { name: 'background-opacity', type: t.zeroOneNumber }, { name: 'background-blacken', type: t.nOneOneNumber }, { name: 'background-gradient-stop-colors', type: t.colors }, { name: 'background-gradient-stop-positions', type: t.percentages }, { name: 'background-gradient-direction', type: t.gradientDirection }, { name: 'padding', type: t.sizeMaybePercent, triggersBounds: diff.any }, { name: 'padding-relative-to', type: t.paddingRelativeTo, triggersBounds: diff.any }, { name: 'bounds-expansion', type: t.boundsExpansion, triggersBounds: diff.any }]; var nodeBorder = [{ name: 'border-color', type: t.color }, { name: 'border-opacity', type: t.zeroOneNumber }, { name: 'border-width', type: t.size, triggersBounds: diff.any }, { name: 'border-style', type: t.borderStyle }, { name: 'border-cap', type: t.lineCap }, { name: 'border-join', type: t.lineJoin }, { name: 'border-dash-pattern', type: t.numbers }, { name: 'border-dash-offset', type: t.number }, { name: 'border-position', type: t.linePosition }]; var nodeOutline = [{ name: 'outline-color', type: t.color }, { name: 'outline-opacity', type: t.zeroOneNumber }, { name: 'outline-width', type: t.size, triggersBounds: diff.any }, { name: 'outline-style', type: t.borderStyle }, { name: 'outline-offset', type: t.size, triggersBounds: diff.any }]; var backgroundImage = [{ name: 'background-image', type: t.urls }, { name: 'background-image-crossorigin', type: t.bgCrossOrigin }, { name: 'background-image-opacity', type: t.zeroOneNumbers }, { name: 'background-image-containment', type: t.bgContainment }, { name: 'background-image-smoothing', type: t.bools }, { name: 'background-position-x', type: t.bgPos }, { name: 'background-position-y', type: t.bgPos }, { name: 'background-width-relative-to', type: t.bgRelativeTo }, { name: 'background-height-relative-to', type: t.bgRelativeTo }, { name: 'background-repeat', type: t.bgRepeat }, { name: 'background-fit', type: t.bgFit }, { name: 'background-clip', type: t.bgClip }, { name: 'background-width', type: t.bgWH }, { name: 'background-height', type: t.bgWH }, { name: 'background-offset-x', type: t.bgPos }, { name: 'background-offset-y', type: t.bgPos }]; var compound = [{ name: 'position', type: t.position, triggersBounds: diff.any }, { name: 'compound-sizing-wrt-labels', type: t.compoundIncludeLabels, triggersBounds: diff.any }, { name: 'min-width', type: t.size, triggersBounds: diff.any }, { name: 'min-width-bias-left', type: t.sizeMaybePercent, triggersBounds: diff.any }, { name: 'min-width-bias-right', type: t.sizeMaybePercent, triggersBounds: diff.any }, { name: 'min-height', type: t.size, triggersBounds: diff.any }, { name: 'min-height-bias-top', type: t.sizeMaybePercent, triggersBounds: diff.any }, { name: 'min-height-bias-bottom', type: t.sizeMaybePercent, triggersBounds: diff.any }]; var edgeLine = [{ name: 'line-style', type: t.lineStyle }, { name: 'line-color', type: t.color }, { name: 'line-fill', type: t.fill }, { name: 'line-cap', type: t.lineCap }, { name: 'line-opacity', type: t.zeroOneNumber }, { name: 'line-dash-pattern', type: t.numbers }, { name: 'line-dash-offset', type: t.number }, { name: 'line-gradient-stop-colors', type: t.colors }, { name: 'line-gradient-stop-positions', type: t.percentages }, { name: 'curve-style', type: t.curveStyle, triggersBounds: diff.any, triggersBoundsOfParallelBeziers: true }, { name: 'haystack-radius', type: t.zeroOneNumber, triggersBounds: diff.any }, { name: 'source-endpoint', type: t.edgeEndpoint, triggersBounds: diff.any }, { name: 'target-endpoint', type: t.edgeEndpoint, triggersBounds: diff.any }, { name: 'control-point-step-size', type: t.size, triggersBounds: diff.any }, { name: 'control-point-distances', type: t.bidirectionalSizes, triggersBounds: diff.any }, { name: 'control-point-weights', type: t.numbers, triggersBounds: diff.any }, { name: 'segment-distances', type: t.bidirectionalSizes, triggersBounds: diff.any }, { name: 'segment-weights', type: t.numbers, triggersBounds: diff.any }, { name: 'segment-radii', type: t.numbers, triggersBounds: diff.any }, { name: 'radius-type', type: t.radiusType, triggersBounds: diff.any }, { name: 'taxi-turn', type: t.bidirectionalSizeMaybePercent, triggersBounds: diff.any }, { name: 'taxi-turn-min-distance', type: t.size, triggersBounds: diff.any }, { name: 'taxi-direction', type: t.axisDirection, triggersBounds: diff.any }, { name: 'taxi-radius', type: t.number, triggersBounds: diff.any }, { name: 'edge-distances', type: t.edgeDistances, triggersBounds: diff.any }, { name: 'arrow-scale', type: t.positiveNumber, triggersBounds: diff.any }, { name: 'loop-direction', type: t.angle, triggersBounds: diff.any }, { name: 'loop-sweep', type: t.angle, triggersBounds: diff.any }, { name: 'source-distance-from-node', type: t.size, triggersBounds: diff.any }, { name: 'target-distance-from-node', type: t.size, triggersBounds: diff.any }]; var ghost = [{ name: 'ghost', type: t.bool, triggersBounds: diff.any }, { name: 'ghost-offset-x', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'ghost-offset-y', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'ghost-opacity', type: t.zeroOneNumber }]; var core = [{ name: 'selection-box-color', type: t.color }, { name: 'selection-box-opacity', type: t.zeroOneNumber }, { name: 'selection-box-border-color', type: t.color }, { name: 'selection-box-border-width', type: t.size }, { name: 'active-bg-color', type: t.color }, { name: 'active-bg-opacity', type: t.zeroOneNumber }, { name: 'active-bg-size', type: t.size }, { name: 'outside-texture-bg-color', type: t.color }, { name: 'outside-texture-bg-opacity', type: t.zeroOneNumber }]; // pie backgrounds for nodes var pie = []; styfn$2.pieBackgroundN = 16; // because the pie properties are numbered, give access to a constant N (for renderer use) pie.push({ name: 'pie-size', type: t.sizeMaybePercent }); for (var i = 1; i <= styfn$2.pieBackgroundN; i++) { pie.push({ name: 'pie-' + i + '-background-color', type: t.color }); pie.push({ name: 'pie-' + i + '-background-size', type: t.percent }); pie.push({ name: 'pie-' + i + '-background-opacity', type: t.zeroOneNumber }); } // edge arrows var edgeArrow = []; var arrowPrefixes = styfn$2.arrowPrefixes = ['source', 'mid-source', 'target', 'mid-target']; [{ name: 'arrow-shape', type: t.arrowShape, triggersBounds: diff.any }, { name: 'arrow-color', type: t.color }, { name: 'arrow-fill', type: t.arrowFill }, { name: 'arrow-width', type: t.arrowWidth }].forEach(function (prop) { arrowPrefixes.forEach(function (prefix) { var name = prefix + '-' + prop.name; var type = prop.type, triggersBounds = prop.triggersBounds; edgeArrow.push({ name: name, type: type, triggersBounds: triggersBounds }); }); }, {}); var props = styfn$2.properties = [].concat(behavior, transition, visibility, overlay, underlay, ghost, commonLabel, labelDimensions, mainLabel, sourceLabel, targetLabel, nodeBody, nodeBorder, nodeOutline, backgroundImage, pie, compound, edgeLine, edgeArrow, core); var propGroups = styfn$2.propertyGroups = { // common to all eles behavior: behavior, transition: transition, visibility: visibility, overlay: overlay, underlay: underlay, ghost: ghost, // labels commonLabel: commonLabel, labelDimensions: labelDimensions, mainLabel: mainLabel, sourceLabel: sourceLabel, targetLabel: targetLabel, // node props nodeBody: nodeBody, nodeBorder: nodeBorder, nodeOutline: nodeOutline, backgroundImage: backgroundImage, pie: pie, compound: compound, // edge props edgeLine: edgeLine, edgeArrow: edgeArrow, core: core }; var propGroupNames = styfn$2.propertyGroupNames = {}; var propGroupKeys = styfn$2.propertyGroupKeys = Object.keys(propGroups); propGroupKeys.forEach(function (key) { propGroupNames[key] = propGroups[key].map(function (prop) { return prop.name; }); propGroups[key].forEach(function (prop) { return prop.groupKey = key; }); }); // define aliases var aliases = styfn$2.aliases = [{ name: 'content', pointsTo: 'label' }, { name: 'control-point-distance', pointsTo: 'control-point-distances' }, { name: 'control-point-weight', pointsTo: 'control-point-weights' }, { name: 'segment-distance', pointsTo: 'segment-distances' }, { name: 'segment-weight', pointsTo: 'segment-weights' }, { name: 'segment-radius', pointsTo: 'segment-radii' }, { name: 'edge-text-rotation', pointsTo: 'text-rotation' }, { name: 'padding-left', pointsTo: 'padding' }, { name: 'padding-right', pointsTo: 'padding' }, { name: 'padding-top', pointsTo: 'padding' }, { name: 'padding-bottom', pointsTo: 'padding' }]; // list of property names styfn$2.propertyNames = props.map(function (p) { return p.name; }); // allow access of properties by name ( e.g. style.properties.height ) for (var _i = 0; _i < props.length; _i++) { var prop = props[_i]; props[prop.name] = prop; // allow lookup by name } // map aliases for (var _i2 = 0; _i2 < aliases.length; _i2++) { var alias = aliases[_i2]; var pointsToProp = props[alias.pointsTo]; var aliasProp = { name: alias.name, alias: true, pointsTo: pointsToProp }; // add alias prop for parsing props.push(aliasProp); props[alias.name] = aliasProp; // allow lookup by name } })(); styfn$2.getDefaultProperty = function (name) { return this.getDefaultProperties()[name]; }; styfn$2.getDefaultProperties = function () { var _p = this._private; if (_p.defaultProperties != null) { return _p.defaultProperties; } var rawProps = extend({ // core props 'selection-box-color': '#ddd', 'selection-box-opacity': 0.65, 'selection-box-border-color': '#aaa', 'selection-box-border-width': 1, 'active-bg-color': 'black', 'active-bg-opacity': 0.15, 'active-bg-size': 30, 'outside-texture-bg-color': '#000', 'outside-texture-bg-opacity': 0.125, // common node/edge props 'events': 'yes', 'text-events': 'no', 'text-valign': 'top', 'text-halign': 'center', 'text-justification': 'auto', 'line-height': 1, 'color': '#000', 'text-outline-color': '#000', 'text-outline-width': 0, 'text-outline-opacity': 1, 'text-opacity': 1, 'text-decoration': 'none', 'text-transform': 'none', 'text-wrap': 'none', 'text-overflow-wrap': 'whitespace', 'text-max-width': 9999, 'text-background-color': '#000', 'text-background-opacity': 0, 'text-background-shape': 'rectangle', 'text-background-padding': 0, 'text-border-opacity': 0, 'text-border-width': 0, 'text-border-style': 'solid', 'text-border-color': '#000', 'font-family': 'Helvetica Neue, Helvetica, sans-serif', 'font-style': 'normal', 'font-weight': 'normal', 'font-size': 16, 'min-zoomed-font-size': 0, 'text-rotation': 'none', 'source-text-rotation': 'none', 'target-text-rotation': 'none', 'visibility': 'visible', 'display': 'element', 'opacity': 1, 'z-compound-depth': 'auto', 'z-index-compare': 'auto', 'z-index': 0, 'label': '', 'text-margin-x': 0, 'text-margin-y': 0, 'source-label': '', 'source-text-offset': 0, 'source-text-margin-x': 0, 'source-text-margin-y': 0, 'target-label': '', 'target-text-offset': 0, 'target-text-margin-x': 0, 'target-text-margin-y': 0, 'overlay-opacity': 0, 'overlay-color': '#000', 'overlay-padding': 10, 'overlay-shape': 'round-rectangle', 'overlay-corner-radius': 'auto', 'underlay-opacity': 0, 'underlay-color': '#000', 'underlay-padding': 10, 'underlay-shape': 'round-rectangle', 'underlay-corner-radius': 'auto', 'transition-property': 'none', 'transition-duration': 0, 'transition-delay': 0, 'transition-timing-function': 'linear', // node props 'background-blacken': 0, 'background-color': '#999', 'background-fill': 'solid', 'background-opacity': 1, 'background-image': 'none', 'background-image-crossorigin': 'anonymous', 'background-image-opacity': 1, 'background-image-containment': 'inside', 'background-image-smoothing': 'yes', 'background-position-x': '50%', 'background-position-y': '50%', 'background-offset-x': 0, 'background-offset-y': 0, 'background-width-relative-to': 'include-padding', 'background-height-relative-to': 'include-padding', 'background-repeat': 'no-repeat', 'background-fit': 'none', 'background-clip': 'node', 'background-width': 'auto', 'background-height': 'auto', 'border-color': '#000', 'border-opacity': 1, 'border-width': 0, 'border-style': 'solid', 'border-dash-pattern': [4, 2], 'border-dash-offset': 0, 'border-cap': 'butt', 'border-join': 'miter', 'border-position': 'center', 'outline-color': '#999', 'outline-opacity': 1, 'outline-width': 0, 'outline-offset': 0, 'outline-style': 'solid', 'height': 30, 'width': 30, 'shape': 'ellipse', 'shape-polygon-points': '-1, -1, 1, -1, 1, 1, -1, 1', 'corner-radius': 'auto', 'bounds-expansion': 0, // node gradient 'background-gradient-direction': 'to-bottom', 'background-gradient-stop-colors': '#999', 'background-gradient-stop-positions': '0%', // ghost props 'ghost': 'no', 'ghost-offset-y': 0, 'ghost-offset-x': 0, 'ghost-opacity': 0, // compound props 'padding': 0, 'padding-relative-to': 'width', 'position': 'origin', 'compound-sizing-wrt-labels': 'include', 'min-width': 0, 'min-width-bias-left': 0, 'min-width-bias-right': 0, 'min-height': 0, 'min-height-bias-top': 0, 'min-height-bias-bottom': 0 }, { // node pie bg 'pie-size': '100%' }, [{ name: 'pie-{{i}}-background-color', value: 'black' }, { name: 'pie-{{i}}-background-size', value: '0%' }, { name: 'pie-{{i}}-background-opacity', value: 1 }].reduce(function (css, prop) { for (var i = 1; i <= styfn$2.pieBackgroundN; i++) { var name = prop.name.replace('{{i}}', i); var val = prop.value; css[name] = val; } return css; }, {}), { // edge props 'line-style': 'solid', 'line-color': '#999', 'line-fill': 'solid', 'line-cap': 'butt', 'line-opacity': 1, 'line-gradient-stop-colors': '#999', 'line-gradient-stop-positions': '0%', 'control-point-step-size': 40, 'control-point-weights': 0.5, 'segment-weights': 0.5, 'segment-distances': 20, 'segment-radii': 15, 'radius-type': 'arc-radius', 'taxi-turn': '50%', 'taxi-radius': 15, 'taxi-turn-min-distance': 10, 'taxi-direction': 'auto', 'edge-distances': 'intersection', 'curve-style': 'haystack', 'haystack-radius': 0, 'arrow-scale': 1, 'loop-direction': '-45deg', 'loop-sweep': '-90deg', 'source-distance-from-node': 0, 'target-distance-from-node': 0, 'source-endpoint': 'outside-to-node', 'target-endpoint': 'outside-to-node', 'line-dash-pattern': [6, 3], 'line-dash-offset': 0 }, [{ name: 'arrow-shape', value: 'none' }, { name: 'arrow-color', value: '#999' }, { name: 'arrow-fill', value: 'filled' }, { name: 'arrow-width', value: 1 }].reduce(function (css, prop) { styfn$2.arrowPrefixes.forEach(function (prefix) { var name = prefix + '-' + prop.name; var val = prop.value; css[name] = val; }); return css; }, {})); var parsedProps = {}; for (var i = 0; i < this.properties.length; i++) { var prop = this.properties[i]; if (prop.pointsTo) { continue; } var name = prop.name; var val = rawProps[name]; var parsedProp = this.parse(name, val); parsedProps[name] = parsedProp; } _p.defaultProperties = parsedProps; return _p.defaultProperties; }; styfn$2.addDefaultStylesheet = function () { this.selector(':parent').css({ 'shape': 'rectangle', 'padding': 10, 'background-color': '#eee', 'border-color': '#ccc', 'border-width': 1 }).selector('edge').css({ 'width': 3 }).selector(':loop').css({ 'curve-style': 'bezier' }).selector('edge:compound').css({ 'curve-style': 'bezier', 'source-endpoint': 'outside-to-line', 'target-endpoint': 'outside-to-line' }).selector(':selected').css({ 'background-color': '#0169D9', 'line-color': '#0169D9', 'source-arrow-color': '#0169D9', 'target-arrow-color': '#0169D9', 'mid-source-arrow-color': '#0169D9', 'mid-target-arrow-color': '#0169D9' }).selector(':parent:selected').css({ 'background-color': '#CCE1F9', 'border-color': '#aec8e5' }).selector(':active').css({ 'overlay-color': 'black', 'overlay-padding': 10, 'overlay-opacity': 0.25 }); this.defaultLength = this.length; }; var styfn$1 = {}; // a caching layer for property parsing styfn$1.parse = function (name, value, propIsBypass, propIsFlat) { var self = this; // function values can't be cached in all cases, and there isn't much benefit of caching them anyway if (fn$6(value)) { return self.parseImplWarn(name, value, propIsBypass, propIsFlat); } var flatKey = propIsFlat === 'mapping' || propIsFlat === true || propIsFlat === false || propIsFlat == null ? 'dontcare' : propIsFlat; var bypassKey = propIsBypass ? 't' : 'f'; var valueKey = '' + value; var argHash = hashStrings(name, valueKey, bypassKey, flatKey); var propCache = self.propCache = self.propCache || []; var ret; if (!(ret = propCache[argHash])) { ret = propCache[argHash] = self.parseImplWarn(name, value, propIsBypass, propIsFlat); } // - bypasses can't be shared b/c the value can be changed by animations or otherwise overridden // - mappings can't be shared b/c mappings are per-element if (propIsBypass || propIsFlat === 'mapping') { // need a copy since props are mutated later in their lifecycles ret = copy(ret); if (ret) { ret.value = copy(ret.value); // because it could be an array, e.g. colour } } return ret; }; styfn$1.parseImplWarn = function (name, value, propIsBypass, propIsFlat) { var prop = this.parseImpl(name, value, propIsBypass, propIsFlat); if (!prop && value != null) { warn("The style property `".concat(name, ": ").concat(value, "` is invalid")); } if (prop && (prop.name === 'width' || prop.name === 'height') && value === 'label') { warn('The style value of `label` is deprecated for `' + prop.name + '`'); } return prop; }; // parse a property; return null on invalid; return parsed property otherwise // fields : // - name : the name of the property // - value : the parsed, native-typed value of the property // - strValue : a string value that represents the property value in valid css // - bypass : true iff the property is a bypass property styfn$1.parseImpl = function (name, value, propIsBypass, propIsFlat) { var self = this; name = camel2dash(name); // make sure the property name is in dash form (e.g. 'property-name' not 'propertyName') var property = self.properties[name]; var passedValue = value; var types = self.types; if (!property) { return null; } // return null on property of unknown name if (value === undefined) { return null; } // can't assign undefined // the property may be an alias if (property.alias) { property = property.pointsTo; name = property.name; } var valueIsString = string(value); if (valueIsString) { // trim the value to make parsing easier value = value.trim(); } var type = property.type; if (!type) { return null; } // no type, no luck // check if bypass is null or empty string (i.e. indication to delete bypass property) if (propIsBypass && (value === '' || value === null)) { return { name: name, value: value, bypass: true, deleteBypass: true }; } // check if value is a function used as a mapper if (fn$6(value)) { return { name: name, value: value, strValue: 'fn', mapped: types.fn, bypass: propIsBypass }; } // check if value is mapped var data, mapData; if (!valueIsString || propIsFlat || value.length < 7 || value[1] !== 'a') ; else if (value.length >= 7 && value[0] === 'd' && (data = new RegExp(types.data.regex).exec(value))) { if (propIsBypass) { return false; } // mappers not allowed in bypass var mapped = types.data; return { name: name, value: data, strValue: '' + value, mapped: mapped, field: data[1], bypass: propIsBypass }; } else if (value.length >= 10 && value[0] === 'm' && (mapData = new RegExp(types.mapData.regex).exec(value))) { if (propIsBypass) { return false; } // mappers not allowed in bypass if (type.multiple) { return false; } // impossible to map to num var _mapped = types.mapData; // we can map only if the type is a colour or a number if (!(type.color || type.number)) { return false; } var valueMin = this.parse(name, mapData[4]); // parse to validate if (!valueMin || valueMin.mapped) { return false; } // can't be invalid or mapped var valueMax = this.parse(name, mapData[5]); // parse to validate if (!valueMax || valueMax.mapped) { return false; } // can't be invalid or mapped // check if valueMin and valueMax are the same if (valueMin.pfValue === valueMax.pfValue || valueMin.strValue === valueMax.strValue) { warn('`' + name + ': ' + value + '` is not a valid mapper because the output range is zero; converting to `' + name + ': ' + valueMin.strValue + '`'); return this.parse(name, valueMin.strValue); // can't make much of a mapper without a range } else if (type.color) { var c1 = valueMin.value; var c2 = valueMax.value; var same = c1[0] === c2[0] // red && c1[1] === c2[1] // green && c1[2] === c2[2] // blue && ( // optional alpha c1[3] === c2[3] // same alpha outright || (c1[3] == null || c1[3] === 1 // full opacity for colour 1? ) && (c2[3] == null || c2[3] === 1) // full opacity for colour 2? ); if (same) { return false; } // can't make a mapper without a range } return { name: name, value: mapData, strValue: '' + value, mapped: _mapped, field: mapData[1], fieldMin: parseFloat(mapData[2]), // min & max are numeric fieldMax: parseFloat(mapData[3]), valueMin: valueMin.value, valueMax: valueMax.value, bypass: propIsBypass }; } if (type.multiple && propIsFlat !== 'multiple') { var vals; if (valueIsString) { vals = value.split(/\s+/); } else if (array(value)) { vals = value; } else { vals = [value]; } if (type.evenMultiple && vals.length % 2 !== 0) { return null; } var valArr = []; var unitsArr = []; var pfValArr = []; var strVal = ''; var hasEnum = false; for (var i = 0; i < vals.length; i++) { var p = self.parse(name, vals[i], propIsBypass, 'multiple'); hasEnum = hasEnum || string(p.value); valArr.push(p.value); pfValArr.push(p.pfValue != null ? p.pfValue : p.value); unitsArr.push(p.units); strVal += (i > 0 ? ' ' : '') + p.strValue; } if (type.validate && !type.validate(valArr, unitsArr)) { return null; } if (type.singleEnum && hasEnum) { if (valArr.length === 1 && string(valArr[0])) { return { name: name, value: valArr[0], strValue: valArr[0], bypass: propIsBypass }; } else { return null; } } return { name: name, value: valArr, pfValue: pfValArr, strValue: strVal, bypass: propIsBypass, units: unitsArr }; } // several types also allow enums var checkEnums = function checkEnums() { for (var _i = 0; _i < type.enums.length; _i++) { var en = type.enums[_i]; if (en === value) { return { name: name, value: value, strValue: '' + value, bypass: propIsBypass }; } } return null; }; // check the type and return the appropriate object if (type.number) { var units; var implicitUnits = 'px'; // not set => px if (type.units) { // use specified units if set units = type.units; } if (type.implicitUnits) { implicitUnits = type.implicitUnits; } if (!type.unitless) { if (valueIsString) { var unitsRegex = 'px|em' + (type.allowPercent ? '|\\%' : ''); if (units) { unitsRegex = units; } // only allow explicit units if so set var match = value.match('^(' + number + ')(' + unitsRegex + ')?' + '$'); if (match) { value = match[1]; units = match[2] || implicitUnits; } } else if (!units || type.implicitUnits) { units = implicitUnits; // implicitly px if unspecified } } value = parseFloat(value); // if not a number and enums not allowed, then the value is invalid if (isNaN(value) && type.enums === undefined) { return null; } // check if this number type also accepts special keywords in place of numbers // (i.e. `left`, `auto`, etc) if (isNaN(value) && type.enums !== undefined) { value = passedValue; return checkEnums(); } // check if value must be an integer if (type.integer && !integer(value)) { return null; } // check value is within range if (type.min !== undefined && (value < type.min || type.strictMin && value === type.min) || type.max !== undefined && (value > type.max || type.strictMax && value === type.max)) { return null; } var ret = { name: name, value: value, strValue: '' + value + (units ? units : ''), units: units, bypass: propIsBypass }; // normalise value in pixels if (type.unitless || units !== 'px' && units !== 'em') { ret.pfValue = value; } else { ret.pfValue = units === 'px' || !units ? value : this.getEmSizeInPixels() * value; } // normalise value in ms if (units === 'ms' || units === 's') { ret.pfValue = units === 'ms' ? value : 1000 * value; } // normalise value in rad if (units === 'deg' || units === 'rad') { ret.pfValue = units === 'rad' ? value : deg2rad(value); } // normalize value in % if (units === '%') { ret.pfValue = value / 100; } return ret; } else if (type.propList) { var props = []; var propsStr = '' + value; if (propsStr === 'none') ; else { // go over each prop var propsSplit = propsStr.split(/\s*,\s*|\s+/); for (var _i2 = 0; _i2 < propsSplit.length; _i2++) { var propName = propsSplit[_i2].trim(); if (self.properties[propName]) { props.push(propName); } else { warn('`' + propName + '` is not a valid property name'); } } if (props.length === 0) { return null; } } return { name: name, value: props, strValue: props.length === 0 ? 'none' : props.join(' '), bypass: propIsBypass }; } else if (type.color) { var tuple = color2tuple(value); if (!tuple) { return null; } return { name: name, value: tuple, pfValue: tuple, strValue: 'rgb(' + tuple[0] + ',' + tuple[1] + ',' + tuple[2] + ')', // n.b. no spaces b/c of multiple support bypass: propIsBypass }; } else if (type.regex || type.regexes) { // first check enums if (type.enums) { var enumProp = checkEnums(); if (enumProp) { return enumProp; } } var regexes = type.regexes ? type.regexes : [type.regex]; for (var _i3 = 0; _i3 < regexes.length; _i3++) { var regex = new RegExp(regexes[_i3]); // make a regex from the type string var m = regex.exec(value); if (m) { // regex matches return { name: name, value: type.singleRegexMatchValue ? m[1] : m, strValue: '' + value, bypass: propIsBypass }; } } return null; // didn't match any } else if (type.string) { // just return return { name: name, value: '' + value, strValue: '' + value, bypass: propIsBypass }; } else if (type.enums) { // check enums last because it's a combo type in others return checkEnums(); } else { return null; // not a type we can handle } }; var Style = function Style(cy) { if (!(this instanceof Style)) { return new Style(cy); } if (!core(cy)) { error('A style must have a core reference'); return; } this._private = { cy: cy, coreStyle: {} }; this.length = 0; this.resetToDefault(); }; var styfn = Style.prototype; styfn.instanceString = function () { return 'style'; }; // remove all contexts styfn.clear = function () { var _p = this._private; var cy = _p.cy; var eles = cy.elements(); for (var i = 0; i < this.length; i++) { this[i] = undefined; } this.length = 0; _p.contextStyles = {}; _p.propDiffs = {}; this.cleanElements(eles, true); eles.forEach(function (ele) { var ele_p = ele[0]._private; ele_p.styleDirty = true; ele_p.appliedInitStyle = false; }); return this; // chaining }; styfn.resetToDefault = function () { this.clear(); this.addDefaultStylesheet(); return this; }; // builds a style object for the 'core' selector styfn.core = function (propName) { return this._private.coreStyle[propName] || this.getDefaultProperty(propName); }; // create a new context from the specified selector string and switch to that context styfn.selector = function (selectorStr) { // 'core' is a special case and does not need a selector var selector = selectorStr === 'core' ? null : new Selector(selectorStr); var i = this.length++; // new context means new index this[i] = { selector: selector, properties: [], mappedProperties: [], index: i }; return this; // chaining }; // add one or many css rules to the current context styfn.css = function () { var self = this; var args = arguments; if (args.length === 1) { var map = args[0]; for (var i = 0; i < self.properties.length; i++) { var prop = self.properties[i]; var mapVal = map[prop.name]; if (mapVal === undefined) { mapVal = map[dash2camel(prop.name)]; } if (mapVal !== undefined) { this.cssRule(prop.name, mapVal); } } } else if (args.length === 2) { this.cssRule(args[0], args[1]); } // do nothing if args are invalid return this; // chaining }; styfn.style = styfn.css; // add a single css rule to the current context styfn.cssRule = function (name, value) { // name-value pair var property = this.parse(name, value); // add property to current context if valid if (property) { var i = this.length - 1; this[i].properties.push(property); this[i].properties[property.name] = property; // allow access by name as well if (property.name.match(/pie-(\d+)-background-size/) && property.value) { this._private.hasPie = true; } if (property.mapped) { this[i].mappedProperties.push(property); } // add to core style if necessary var currentSelectorIsCore = !this[i].selector; if (currentSelectorIsCore) { this._private.coreStyle[property.name] = property; } } return this; // chaining }; styfn.append = function (style) { if (stylesheet(style)) { style.appendToStyle(this); } else if (array(style)) { this.appendFromJson(style); } else if (string(style)) { this.appendFromString(style); } // you probably wouldn't want to append a Style, since you'd duplicate the default parts return this; }; // static function Style.fromJson = function (cy, json) { var style = new Style(cy); style.fromJson(json); return style; }; Style.fromString = function (cy, string) { return new Style(cy).fromString(string); }; [styfn$8, styfn$7, styfn$6, styfn$5, styfn$4, styfn$3, styfn$2, styfn$1].forEach(function (props) { extend(styfn, props); }); Style.types = styfn.types; Style.properties = styfn.properties; Style.propertyGroups = styfn.propertyGroups; Style.propertyGroupNames = styfn.propertyGroupNames; Style.propertyGroupKeys = styfn.propertyGroupKeys; var corefn$2 = { style: function style(newStyle) { if (newStyle) { var s = this.setStyle(newStyle); s.update(); } return this._private.style; }, setStyle: function setStyle(style) { var _p = this._private; if (stylesheet(style)) { _p.style = style.generateStyle(this); } else if (array(style)) { _p.style = Style.fromJson(this, style); } else if (string(style)) { _p.style = Style.fromString(this, style); } else { _p.style = Style(this); } return _p.style; }, // e.g. cy.data() changed => recalc ele mappers updateStyle: function updateStyle() { this.mutableElements().updateStyle(); // just send to all eles } }; var defaultSelectionType = 'single'; var corefn$1 = { autolock: function autolock(bool) { if (bool !== undefined) { this._private.autolock = bool ? true : false; } else { return this._private.autolock; } return this; // chaining }, autoungrabify: function autoungrabify(bool) { if (bool !== undefined) { this._private.autoungrabify = bool ? true : false; } else { return this._private.autoungrabify; } return this; // chaining }, autounselectify: function autounselectify(bool) { if (bool !== undefined) { this._private.autounselectify = bool ? true : false; } else { return this._private.autounselectify; } return this; // chaining }, selectionType: function selectionType(selType) { var _p = this._private; if (_p.selectionType == null) { _p.selectionType = defaultSelectionType; } if (selType !== undefined) { if (selType === 'additive' || selType === 'single') { _p.selectionType = selType; } } else { return _p.selectionType; } return this; }, panningEnabled: function panningEnabled(bool) { if (bool !== undefined) { this._private.panningEnabled = bool ? true : false; } else { return this._private.panningEnabled; } return this; // chaining }, userPanningEnabled: function userPanningEnabled(bool) { if (bool !== undefined) { this._private.userPanningEnabled = bool ? true : false; } else { return this._private.userPanningEnabled; } return this; // chaining }, zoomingEnabled: function zoomingEnabled(bool) { if (bool !== undefined) { this._private.zoomingEnabled = bool ? true : false; } else { return this._private.zoomingEnabled; } return this; // chaining }, userZoomingEnabled: function userZoomingEnabled(bool) { if (bool !== undefined) { this._private.userZoomingEnabled = bool ? true : false; } else { return this._private.userZoomingEnabled; } return this; // chaining }, boxSelectionEnabled: function boxSelectionEnabled(bool) { if (bool !== undefined) { this._private.boxSelectionEnabled = bool ? true : false; } else { return this._private.boxSelectionEnabled; } return this; // chaining }, pan: function pan() { var args = arguments; var pan = this._private.pan; var dim, val, dims, x, y; switch (args.length) { case 0: // .pan() return pan; case 1: if (string(args[0])) { // .pan('x') dim = args[0]; return pan[dim]; } else if (plainObject(args[0])) { // .pan({ x: 0, y: 100 }) if (!this._private.panningEnabled) { return this; } dims = args[0]; x = dims.x; y = dims.y; if (number$1(x)) { pan.x = x; } if (number$1(y)) { pan.y = y; } this.emit('pan viewport'); } break; case 2: // .pan('x', 100) if (!this._private.panningEnabled) { return this; } dim = args[0]; val = args[1]; if ((dim === 'x' || dim === 'y') && number$1(val)) { pan[dim] = val; } this.emit('pan viewport'); break; // invalid } this.notify('viewport'); return this; // chaining }, panBy: function panBy(arg0, arg1) { var args = arguments; var pan = this._private.pan; var dim, val, dims, x, y; if (!this._private.panningEnabled) { return this; } switch (args.length) { case 1: if (plainObject(arg0)) { // .panBy({ x: 0, y: 100 }) dims = args[0]; x = dims.x; y = dims.y; if (number$1(x)) { pan.x += x; } if (number$1(y)) { pan.y += y; } this.emit('pan viewport'); } break; case 2: // .panBy('x', 100) dim = arg0; val = arg1; if ((dim === 'x' || dim === 'y') && number$1(val)) { pan[dim] += val; } this.emit('pan viewport'); break; // invalid } this.notify('viewport'); return this; // chaining }, fit: function fit(elements, padding) { var viewportState = this.getFitViewport(elements, padding); if (viewportState) { var _p = this._private; _p.zoom = viewportState.zoom; _p.pan = viewportState.pan; this.emit('pan zoom viewport'); this.notify('viewport'); } return this; // chaining }, getFitViewport: function getFitViewport(elements, padding) { if (number$1(elements) && padding === undefined) { // elements is optional padding = elements; elements = undefined; } if (!this._private.panningEnabled || !this._private.zoomingEnabled) { return; } var bb; if (string(elements)) { var sel = elements; elements = this.$(sel); } else if (boundingBox(elements)) { // assume bb var bbe = elements; bb = { x1: bbe.x1, y1: bbe.y1, x2: bbe.x2, y2: bbe.y2 }; bb.w = bb.x2 - bb.x1; bb.h = bb.y2 - bb.y1; } else if (!elementOrCollection(elements)) { elements = this.mutableElements(); } if (elementOrCollection(elements) && elements.empty()) { return; } // can't fit to nothing bb = bb || elements.boundingBox(); var w = this.width(); var h = this.height(); var zoom; padding = number$1(padding) ? padding : 0; if (!isNaN(w) && !isNaN(h) && w > 0 && h > 0 && !isNaN(bb.w) && !isNaN(bb.h) && bb.w > 0 && bb.h > 0) { zoom = Math.min((w - 2 * padding) / bb.w, (h - 2 * padding) / bb.h); // crop zoom zoom = zoom > this._private.maxZoom ? this._private.maxZoom : zoom; zoom = zoom < this._private.minZoom ? this._private.minZoom : zoom; var pan = { // now pan to middle x: (w - zoom * (bb.x1 + bb.x2)) / 2, y: (h - zoom * (bb.y1 + bb.y2)) / 2 }; return { zoom: zoom, pan: pan }; } return; }, zoomRange: function zoomRange(min, max) { var _p = this._private; if (max == null) { var opts = min; min = opts.min; max = opts.max; } if (number$1(min) && number$1(max) && min <= max) { _p.minZoom = min; _p.maxZoom = max; } else if (number$1(min) && max === undefined && min <= _p.maxZoom) { _p.minZoom = min; } else if (number$1(max) && min === undefined && max >= _p.minZoom) { _p.maxZoom = max; } return this; }, minZoom: function minZoom(zoom) { if (zoom === undefined) { return this._private.minZoom; } else { return this.zoomRange({ min: zoom }); } }, maxZoom: function maxZoom(zoom) { if (zoom === undefined) { return this._private.maxZoom; } else { return this.zoomRange({ max: zoom }); } }, getZoomedViewport: function getZoomedViewport(params) { var _p = this._private; var currentPan = _p.pan; var currentZoom = _p.zoom; var pos; // in rendered px var zoom; var bail = false; if (!_p.zoomingEnabled) { // zooming disabled bail = true; } if (number$1(params)) { // then set the zoom zoom = params; } else if (plainObject(params)) { // then zoom about a point zoom = params.level; if (params.position != null) { pos = modelToRenderedPosition(params.position, currentZoom, currentPan); } else if (params.renderedPosition != null) { pos = params.renderedPosition; } if (pos != null && !_p.panningEnabled) { // panning disabled bail = true; } } // crop zoom zoom = zoom > _p.maxZoom ? _p.maxZoom : zoom; zoom = zoom < _p.minZoom ? _p.minZoom : zoom; // can't zoom with invalid params if (bail || !number$1(zoom) || zoom === currentZoom || pos != null && (!number$1(pos.x) || !number$1(pos.y))) { return null; } if (pos != null) { // set zoom about position var pan1 = currentPan; var zoom1 = currentZoom; var zoom2 = zoom; var pan2 = { x: -zoom2 / zoom1 * (pos.x - pan1.x) + pos.x, y: -zoom2 / zoom1 * (pos.y - pan1.y) + pos.y }; return { zoomed: true, panned: true, zoom: zoom2, pan: pan2 }; } else { // just set the zoom return { zoomed: true, panned: false, zoom: zoom, pan: currentPan }; } }, zoom: function zoom(params) { if (params === undefined) { // get return this._private.zoom; } else { // set var vp = this.getZoomedViewport(params); var _p = this._private; if (vp == null || !vp.zoomed) { return this; } _p.zoom = vp.zoom; if (vp.panned) { _p.pan.x = vp.pan.x; _p.pan.y = vp.pan.y; } this.emit('zoom' + (vp.panned ? ' pan' : '') + ' viewport'); this.notify('viewport'); return this; // chaining } }, viewport: function viewport(opts) { var _p = this._private; var zoomDefd = true; var panDefd = true; var events = []; // to trigger var zoomFailed = false; var panFailed = false; if (!opts) { return this; } if (!number$1(opts.zoom)) { zoomDefd = false; } if (!plainObject(opts.pan)) { panDefd = false; } if (!zoomDefd && !panDefd) { return this; } if (zoomDefd) { var z = opts.zoom; if (z < _p.minZoom || z > _p.maxZoom || !_p.zoomingEnabled) { zoomFailed = true; } else { _p.zoom = z; events.push('zoom'); } } if (panDefd && (!zoomFailed || !opts.cancelOnFailedZoom) && _p.panningEnabled) { var p = opts.pan; if (number$1(p.x)) { _p.pan.x = p.x; panFailed = false; } if (number$1(p.y)) { _p.pan.y = p.y; panFailed = false; } if (!panFailed) { events.push('pan'); } } if (events.length > 0) { events.push('viewport'); this.emit(events.join(' ')); this.notify('viewport'); } return this; // chaining }, center: function center(elements) { var pan = this.getCenterPan(elements); if (pan) { this._private.pan = pan; this.emit('pan viewport'); this.notify('viewport'); } return this; // chaining }, getCenterPan: function getCenterPan(elements, zoom) { if (!this._private.panningEnabled) { return; } if (string(elements)) { var selector = elements; elements = this.mutableElements().filter(selector); } else if (!elementOrCollection(elements)) { elements = this.mutableElements(); } if (elements.length === 0) { return; } // can't centre pan to nothing var bb = elements.boundingBox(); var w = this.width(); var h = this.height(); zoom = zoom === undefined ? this._private.zoom : zoom; var pan = { // middle x: (w - zoom * (bb.x1 + bb.x2)) / 2, y: (h - zoom * (bb.y1 + bb.y2)) / 2 }; return pan; }, reset: function reset() { if (!this._private.panningEnabled || !this._private.zoomingEnabled) { return this; } this.viewport({ pan: { x: 0, y: 0 }, zoom: 1 }); return this; // chaining }, invalidateSize: function invalidateSize() { this._private.sizeCache = null; }, size: function size() { var _p = this._private; var container = _p.container; var cy = this; return _p.sizeCache = _p.sizeCache || (container ? function () { var style = cy.window().getComputedStyle(container); var val = function val(name) { return parseFloat(style.getPropertyValue(name)); }; return { width: container.clientWidth - val('padding-left') - val('padding-right'), height: container.clientHeight - val('padding-top') - val('padding-bottom') }; }() : { // fallback if no container (not 0 b/c can be used for dividing etc) width: 1, height: 1 }); }, width: function width() { return this.size().width; }, height: function height() { return this.size().height; }, extent: function extent() { var pan = this._private.pan; var zoom = this._private.zoom; var rb = this.renderedExtent(); var b = { x1: (rb.x1 - pan.x) / zoom, x2: (rb.x2 - pan.x) / zoom, y1: (rb.y1 - pan.y) / zoom, y2: (rb.y2 - pan.y) / zoom }; b.w = b.x2 - b.x1; b.h = b.y2 - b.y1; return b; }, renderedExtent: function renderedExtent() { var width = this.width(); var height = this.height(); return { x1: 0, y1: 0, x2: width, y2: height, w: width, h: height }; }, multiClickDebounceTime: function multiClickDebounceTime(_int) { if (_int) this._private.multiClickDebounceTime = _int;else return this._private.multiClickDebounceTime; return this; // chaining } }; // aliases corefn$1.centre = corefn$1.center; // backwards compatibility corefn$1.autolockNodes = corefn$1.autolock; corefn$1.autoungrabifyNodes = corefn$1.autoungrabify; var fn = { data: define.data({ field: 'data', bindingEvent: 'data', allowBinding: true, allowSetting: true, settingEvent: 'data', settingTriggersEvent: true, triggerFnName: 'trigger', allowGetting: true, updateStyle: true }), removeData: define.removeData({ field: 'data', event: 'data', triggerFnName: 'trigger', triggerEvent: true, updateStyle: true }), scratch: define.data({ field: 'scratch', bindingEvent: 'scratch', allowBinding: true, allowSetting: true, settingEvent: 'scratch', settingTriggersEvent: true, triggerFnName: 'trigger', allowGetting: true, updateStyle: true }), removeScratch: define.removeData({ field: 'scratch', event: 'scratch', triggerFnName: 'trigger', triggerEvent: true, updateStyle: true }) }; // aliases fn.attr = fn.data; fn.removeAttr = fn.removeData; var Core = function Core(opts) { var cy = this; opts = extend({}, opts); var container = opts.container; // allow for passing a wrapped jquery object // e.g. cytoscape({ container: $('#cy') }) if (container && !htmlElement(container) && htmlElement(container[0])) { container = container[0]; } var reg = container ? container._cyreg : null; // e.g. already registered some info (e.g. readies) via jquery reg = reg || {}; if (reg && reg.cy) { reg.cy.destroy(); reg = {}; // old instance => replace reg completely } var readies = reg.readies = reg.readies || []; if (container) { container._cyreg = reg; } // make sure container assoc'd reg points to this cy reg.cy = cy; var head = _window !== undefined && container !== undefined && !opts.headless; var options = opts; options.layout = extend({ name: head ? 'grid' : 'null' }, options.layout); options.renderer = extend({ name: head ? 'canvas' : 'null' }, options.renderer); var defVal = function defVal(def, val, altVal) { if (val !== undefined) { return val; } else if (altVal !== undefined) { return altVal; } else { return def; } }; var _p = this._private = { container: container, // html dom ele container ready: false, // whether ready has been triggered options: options, // cached options elements: new Collection(this), // elements in the graph listeners: [], // list of listeners aniEles: new Collection(this), // elements being animated data: options.data || {}, // data for the core scratch: {}, // scratch object for core layout: null, renderer: null, destroyed: false, // whether destroy was called notificationsEnabled: true, // whether notifications are sent to the renderer minZoom: 1e-50, maxZoom: 1e50, zoomingEnabled: defVal(true, options.zoomingEnabled), userZoomingEnabled: defVal(true, options.userZoomingEnabled), panningEnabled: defVal(true, options.panningEnabled), userPanningEnabled: defVal(true, options.userPanningEnabled), boxSelectionEnabled: defVal(true, options.boxSelectionEnabled), autolock: defVal(false, options.autolock, options.autolockNodes), autoungrabify: defVal(false, options.autoungrabify, options.autoungrabifyNodes), autounselectify: defVal(false, options.autounselectify), styleEnabled: options.styleEnabled === undefined ? head : options.styleEnabled, zoom: number$1(options.zoom) ? options.zoom : 1, pan: { x: plainObject(options.pan) && number$1(options.pan.x) ? options.pan.x : 0, y: plainObject(options.pan) && number$1(options.pan.y) ? options.pan.y : 0 }, animation: { // object for currently-running animations current: [], queue: [] }, hasCompoundNodes: false, multiClickDebounceTime: defVal(250, options.multiClickDebounceTime) }; this.createEmitter(); // set selection type this.selectionType(options.selectionType); // init zoom bounds this.zoomRange({ min: options.minZoom, max: options.maxZoom }); var loadExtData = function loadExtData(extData, next) { var anyIsPromise = extData.some(promise); if (anyIsPromise) { return Promise$1.all(extData).then(next); // load all data asynchronously, then exec rest of init } else { next(extData); // exec synchronously for convenience } }; // start with the default stylesheet so we have something before loading an external stylesheet if (_p.styleEnabled) { cy.setStyle([]); } // create the renderer var rendererOptions = extend({}, options, options.renderer); // allow rendering hints in top level options cy.initRenderer(rendererOptions); var setElesAndLayout = function setElesAndLayout(elements, onload, ondone) { cy.notifications(false); // remove old elements var oldEles = cy.mutableElements(); if (oldEles.length > 0) { oldEles.remove(); } if (elements != null) { if (plainObject(elements) || array(elements)) { cy.add(elements); } } cy.one('layoutready', function (e) { cy.notifications(true); cy.emit(e); // we missed this event by turning notifications off, so pass it on cy.one('load', onload); cy.emitAndNotify('load'); }).one('layoutstop', function () { cy.one('done', ondone); cy.emit('done'); }); var layoutOpts = extend({}, cy._private.options.layout); layoutOpts.eles = cy.elements(); cy.layout(layoutOpts).run(); }; loadExtData([options.style, options.elements], function (thens) { var initStyle = thens[0]; var initEles = thens[1]; // init style if (_p.styleEnabled) { cy.style().append(initStyle); } // initial load setElesAndLayout(initEles, function () { // onready cy.startAnimationLoop(); _p.ready = true; // if a ready callback is specified as an option, the bind it if (fn$6(options.ready)) { cy.on('ready', options.ready); } // bind all the ready handlers registered before creating this instance for (var i = 0; i < readies.length; i++) { var fn = readies[i]; cy.on('ready', fn); } if (reg) { reg.readies = []; } // clear b/c we've bound them all and don't want to keep it around in case a new core uses the same div etc cy.emit('ready'); }, options.done); }); }; var corefn = Core.prototype; // short alias extend(corefn, { instanceString: function instanceString() { return 'core'; }, isReady: function isReady() { return this._private.ready; }, destroyed: function destroyed() { return this._private.destroyed; }, ready: function ready(fn) { if (this.isReady()) { this.emitter().emit('ready', [], fn); // just calls fn as though triggered via ready event } else { this.on('ready', fn); } return this; }, destroy: function destroy() { var cy = this; if (cy.destroyed()) return; cy.stopAnimationLoop(); cy.destroyRenderer(); this.emit('destroy'); cy._private.destroyed = true; return cy; }, hasElementWithId: function hasElementWithId(id) { return this._private.elements.hasElementWithId(id); }, getElementById: function getElementById(id) { return this._private.elements.getElementById(id); }, hasCompoundNodes: function hasCompoundNodes() { return this._private.hasCompoundNodes; }, headless: function headless() { return this._private.renderer.isHeadless(); }, styleEnabled: function styleEnabled() { return this._private.styleEnabled; }, addToPool: function addToPool(eles) { this._private.elements.merge(eles); return this; // chaining }, removeFromPool: function removeFromPool(eles) { this._private.elements.unmerge(eles); return this; }, container: function container() { return this._private.container || null; }, window: function window() { var container = this._private.container; if (container == null) return _window; var ownerDocument = this._private.container.ownerDocument; if (ownerDocument === undefined || ownerDocument == null) { return _window; } return ownerDocument.defaultView || _window; }, mount: function mount(container) { if (container == null) { return; } var cy = this; var _p = cy._private; var options = _p.options; if (!htmlElement(container) && htmlElement(container[0])) { container = container[0]; } cy.stopAnimationLoop(); cy.destroyRenderer(); _p.container = container; _p.styleEnabled = true; cy.invalidateSize(); cy.initRenderer(extend({}, options, options.renderer, { // allow custom renderer name to be re-used, otherwise use canvas name: options.renderer.name === 'null' ? 'canvas' : options.renderer.name })); cy.startAnimationLoop(); cy.style(options.style); cy.emit('mount'); return cy; }, unmount: function unmount() { var cy = this; cy.stopAnimationLoop(); cy.destroyRenderer(); cy.initRenderer({ name: 'null' }); cy.emit('unmount'); return cy; }, options: function options() { return copy(this._private.options); }, json: function json(obj) { var cy = this; var _p = cy._private; var eles = cy.mutableElements(); var getFreshRef = function getFreshRef(ele) { return cy.getElementById(ele.id()); }; if (plainObject(obj)) { // set cy.startBatch(); if (obj.elements) { var idInJson = {}; var updateEles = function updateEles(jsons, gr) { var toAdd = []; var toMod = []; for (var i = 0; i < jsons.length; i++) { var json = jsons[i]; if (!json.data.id) { warn('cy.json() cannot handle elements without an ID attribute'); continue; } var id = '' + json.data.id; // id must be string var ele = cy.getElementById(id); idInJson[id] = true; if (ele.length !== 0) { // existing element should be updated toMod.push({ ele: ele, json: json }); } else { // otherwise should be added if (gr) { json.group = gr; toAdd.push(json); } else { toAdd.push(json); } } } cy.add(toAdd); for (var _i = 0; _i < toMod.length; _i++) { var _toMod$_i = toMod[_i], _ele = _toMod$_i.ele, _json = _toMod$_i.json; _ele.json(_json); } }; if (array(obj.elements)) { // elements: [] updateEles(obj.elements); } else { // elements: { nodes: [], edges: [] } var grs = ['nodes', 'edges']; for (var i = 0; i < grs.length; i++) { var gr = grs[i]; var elements = obj.elements[gr]; if (array(elements)) { updateEles(elements, gr); } } } var parentsToRemove = cy.collection(); eles.filter(function (ele) { return !idInJson[ele.id()]; }).forEach(function (ele) { if (ele.isParent()) { parentsToRemove.merge(ele); } else { ele.remove(); } }); // so that children are not removed w/parent parentsToRemove.forEach(function (ele) { return ele.children().move({ parent: null }); }); // intermediate parents may be moved by prior line, so make sure we remove by fresh refs parentsToRemove.forEach(function (ele) { return getFreshRef(ele).remove(); }); } if (obj.style) { cy.style(obj.style); } if (obj.zoom != null && obj.zoom !== _p.zoom) { cy.zoom(obj.zoom); } if (obj.pan) { if (obj.pan.x !== _p.pan.x || obj.pan.y !== _p.pan.y) { cy.pan(obj.pan); } } if (obj.data) { cy.data(obj.data); } var fields = ['minZoom', 'maxZoom', 'zoomingEnabled', 'userZoomingEnabled', 'panningEnabled', 'userPanningEnabled', 'boxSelectionEnabled', 'autolock', 'autoungrabify', 'autounselectify', 'multiClickDebounceTime']; for (var _i2 = 0; _i2 < fields.length; _i2++) { var f = fields[_i2]; if (obj[f] != null) { cy[f](obj[f]); } } cy.endBatch(); return this; // chaining } else { // get var flat = !!obj; var json = {}; if (flat) { json.elements = this.elements().map(function (ele) { return ele.json(); }); } else { json.elements = {}; eles.forEach(function (ele) { var group = ele.group(); if (!json.elements[group]) { json.elements[group] = []; } json.elements[group].push(ele.json()); }); } if (this._private.styleEnabled) { json.style = cy.style().json(); } json.data = copy(cy.data()); var options = _p.options; json.zoomingEnabled = _p.zoomingEnabled; json.userZoomingEnabled = _p.userZoomingEnabled; json.zoom = _p.zoom; json.minZoom = _p.minZoom; json.maxZoom = _p.maxZoom; json.panningEnabled = _p.panningEnabled; json.userPanningEnabled = _p.userPanningEnabled; json.pan = copy(_p.pan); json.boxSelectionEnabled = _p.boxSelectionEnabled; json.renderer = copy(options.renderer); json.hideEdgesOnViewport = options.hideEdgesOnViewport; json.textureOnViewport = options.textureOnViewport; json.wheelSensitivity = options.wheelSensitivity; json.motionBlur = options.motionBlur; json.multiClickDebounceTime = options.multiClickDebounceTime; return json; } } }); corefn.$id = corefn.getElementById; [corefn$9, corefn$8, elesfn, corefn$7, corefn$6, corefn$5, corefn$4, corefn$3, corefn$2, corefn$1, fn].forEach(function (props) { extend(corefn, props); }); /* eslint-disable no-unused-vars */ var defaults$7 = { fit: true, // whether to fit the viewport to the graph directed: false, // whether the tree is directed downwards (or edges can point in any direction if false) padding: 30, // padding on fit circle: false, // put depths in concentric circles if true, put depths top down if false grid: false, // whether to create an even grid into which the DAG is placed (circle:false only) spacingFactor: 1.75, // positive spacing factor, larger => more space between nodes (N.B. n/a if causes overlap) boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } avoidOverlap: true, // prevents node overlap, may overflow boundingBox if not enough space nodeDimensionsIncludeLabels: false, // Excludes the label when calculating node bounding boxes for the layout algorithm roots: undefined, // the roots of the trees depthSort: undefined, // a sorting function to order nodes at equal depth. e.g. function(a, b){ return a.data('weight') - b.data('weight') } animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled, animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; var deprecatedOptionDefaults = { maximal: false, // whether to shift nodes down their natural BFS depths in order to avoid upwards edges (DAGS only); setting acyclic to true sets maximal to true also acyclic: false // whether the tree is acyclic and thus a node could be shifted (due to the maximal option) multiple times without causing an infinite loop; setting to true sets maximal to true also; if you are uncertain whether a tree is acyclic, set to false to avoid potential infinite loops }; /* eslint-enable */ var getInfo = function getInfo(ele) { return ele.scratch('breadthfirst'); }; var setInfo = function setInfo(ele, obj) { return ele.scratch('breadthfirst', obj); }; function BreadthFirstLayout(options) { this.options = extend({}, defaults$7, deprecatedOptionDefaults, options); } BreadthFirstLayout.prototype.run = function () { var params = this.options; var options = params; var cy = params.cy; var eles = options.eles; var nodes = eles.nodes().filter(function (n) { return !n.isParent(); }); var graph = eles; var directed = options.directed; var maximal = options.acyclic || options.maximal || options.maximalAdjustments > 0; // maximalAdjustments for compat. w/ old code; also, setting acyclic to true sets maximal to true var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); var roots; if (elementOrCollection(options.roots)) { roots = options.roots; } else if (array(options.roots)) { var rootsArray = []; for (var i = 0; i < options.roots.length; i++) { var id = options.roots[i]; var ele = cy.getElementById(id); rootsArray.push(ele); } roots = cy.collection(rootsArray); } else if (string(options.roots)) { roots = cy.$(options.roots); } else { if (directed) { roots = nodes.roots(); } else { var components = eles.components(); roots = cy.collection(); var _loop = function _loop(_i) { var comp = components[_i]; var maxDegree = comp.maxDegree(false); var compRoots = comp.filter(function (ele) { return ele.degree(false) === maxDegree; }); roots = roots.add(compRoots); }; for (var _i = 0; _i < components.length; _i++) { _loop(_i); } } } var depths = []; var foundByBfs = {}; var addToDepth = function addToDepth(ele, d) { if (depths[d] == null) { depths[d] = []; } var i = depths[d].length; depths[d].push(ele); setInfo(ele, { index: i, depth: d }); }; var changeDepth = function changeDepth(ele, newDepth) { var _getInfo = getInfo(ele), depth = _getInfo.depth, index = _getInfo.index; depths[depth][index] = null; addToDepth(ele, newDepth); }; // find the depths of the nodes graph.bfs({ roots: roots, directed: options.directed, visit: function visit(node, edge, pNode, i, depth) { var ele = node[0]; var id = ele.id(); addToDepth(ele, depth); foundByBfs[id] = true; } }); // check for nodes not found by bfs var orphanNodes = []; for (var _i2 = 0; _i2 < nodes.length; _i2++) { var _ele = nodes[_i2]; if (foundByBfs[_ele.id()]) { continue; } else { orphanNodes.push(_ele); } } // assign the nodes a depth and index var assignDepthsAt = function assignDepthsAt(i) { var eles = depths[i]; for (var j = 0; j < eles.length; j++) { var _ele2 = eles[j]; if (_ele2 == null) { eles.splice(j, 1); j--; continue; } setInfo(_ele2, { depth: i, index: j }); } }; var assignDepths = function assignDepths() { for (var _i3 = 0; _i3 < depths.length; _i3++) { assignDepthsAt(_i3); } }; var adjustMaximally = function adjustMaximally(ele, shifted) { var eInfo = getInfo(ele); var incomers = ele.incomers().filter(function (el) { return el.isNode() && eles.has(el); }); var maxDepth = -1; var id = ele.id(); for (var k = 0; k < incomers.length; k++) { var incmr = incomers[k]; var iInfo = getInfo(incmr); maxDepth = Math.max(maxDepth, iInfo.depth); } if (eInfo.depth <= maxDepth) { if (!options.acyclic && shifted[id]) { return null; } var newDepth = maxDepth + 1; changeDepth(ele, newDepth); shifted[id] = newDepth; return true; } return false; }; // for the directed case, try to make the edges all go down (i.e. depth i => depth i + 1) if (directed && maximal) { var Q = []; var shifted = {}; var enqueue = function enqueue(n) { return Q.push(n); }; var dequeue = function dequeue() { return Q.shift(); }; nodes.forEach(function (n) { return Q.push(n); }); while (Q.length > 0) { var _ele3 = dequeue(); var didShift = adjustMaximally(_ele3, shifted); if (didShift) { _ele3.outgoers().filter(function (el) { return el.isNode() && eles.has(el); }).forEach(enqueue); } else if (didShift === null) { warn('Detected double maximal shift for node `' + _ele3.id() + '`. Bailing maximal adjustment due to cycle. Use `options.maximal: true` only on DAGs.'); break; // exit on failure } } } assignDepths(); // clear holes // find min distance we need to leave between nodes var minDistance = 0; if (options.avoidOverlap) { for (var _i4 = 0; _i4 < nodes.length; _i4++) { var n = nodes[_i4]; var nbb = n.layoutDimensions(options); var w = nbb.w; var h = nbb.h; minDistance = Math.max(minDistance, w, h); } } // get the weighted percent for an element based on its connectivity to other levels var cachedWeightedPercent = {}; var getWeightedPercent = function getWeightedPercent(ele) { if (cachedWeightedPercent[ele.id()]) { return cachedWeightedPercent[ele.id()]; } var eleDepth = getInfo(ele).depth; var neighbors = ele.neighborhood(); var percent = 0; var samples = 0; for (var _i5 = 0; _i5 < neighbors.length; _i5++) { var neighbor = neighbors[_i5]; if (neighbor.isEdge() || neighbor.isParent() || !nodes.has(neighbor)) { continue; } var bf = getInfo(neighbor); if (bf == null) { continue; } var index = bf.index; var depth = bf.depth; // unassigned neighbours shouldn't affect the ordering if (index == null || depth == null) { continue; } var nDepth = depths[depth].length; if (depth < eleDepth) { // only get influenced by elements above percent += index / nDepth; samples++; } } samples = Math.max(1, samples); percent = percent / samples; if (samples === 0) { // put lone nodes at the start percent = 0; } cachedWeightedPercent[ele.id()] = percent; return percent; }; // rearrange the indices in each depth level based on connectivity var sortFn = function sortFn(a, b) { var apct = getWeightedPercent(a); var bpct = getWeightedPercent(b); var diff = apct - bpct; if (diff === 0) { return ascending(a.id(), b.id()); // make sure sort doesn't have don't-care comparisons } else { return diff; } }; if (options.depthSort !== undefined) { sortFn = options.depthSort; } // sort each level to make connected nodes closer for (var _i6 = 0; _i6 < depths.length; _i6++) { depths[_i6].sort(sortFn); assignDepthsAt(_i6); } // assign orphan nodes to a new top-level depth var orphanDepth = []; for (var _i7 = 0; _i7 < orphanNodes.length; _i7++) { orphanDepth.push(orphanNodes[_i7]); } depths.unshift(orphanDepth); assignDepths(); var biggestDepthSize = 0; for (var _i8 = 0; _i8 < depths.length; _i8++) { biggestDepthSize = Math.max(depths[_i8].length, biggestDepthSize); } var center = { x: bb.x1 + bb.w / 2, y: bb.x1 + bb.h / 2 }; var maxDepthSize = depths.reduce(function (max, eles) { return Math.max(max, eles.length); }, 0); var getPosition = function getPosition(ele) { var _getInfo2 = getInfo(ele), depth = _getInfo2.depth, index = _getInfo2.index; var depthSize = depths[depth].length; var distanceX = Math.max(bb.w / ((options.grid ? maxDepthSize : depthSize) + 1), minDistance); var distanceY = Math.max(bb.h / (depths.length + 1), minDistance); var radiusStepSize = Math.min(bb.w / 2 / depths.length, bb.h / 2 / depths.length); radiusStepSize = Math.max(radiusStepSize, minDistance); if (!options.circle) { var epos = { x: center.x + (index + 1 - (depthSize + 1) / 2) * distanceX, y: (depth + 1) * distanceY }; return epos; } else { var radius = radiusStepSize * depth + radiusStepSize - (depths.length > 0 && depths[0].length <= 3 ? radiusStepSize / 2 : 0); var theta = 2 * Math.PI / depths[depth].length * index; if (depth === 0 && depths[0].length === 1) { radius = 1; } return { x: center.x + radius * Math.cos(theta), y: center.y + radius * Math.sin(theta) }; } }; eles.nodes().layoutPositions(this, options, getPosition); return this; // chaining }; var defaults$6 = { fit: true, // whether to fit the viewport to the graph padding: 30, // the padding on fit boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } avoidOverlap: true, // prevents node overlap, may overflow boundingBox and radius if not enough space nodeDimensionsIncludeLabels: false, // Excludes the label when calculating node bounding boxes for the layout algorithm spacingFactor: undefined, // Applies a multiplicative factor (>0) to expand or compress the overall area that the nodes take up radius: undefined, // the radius of the circle startAngle: 3 / 2 * Math.PI, // where nodes start in radians sweep: undefined, // how many radians should be between the first and last node (defaults to full circle) clockwise: true, // whether the layout should go clockwise (true) or counterclockwise/anticlockwise (false) sort: undefined, // a sorting function to order the nodes; e.g. function(a, b){ return a.data('weight') - b.data('weight') } animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function CircleLayout(options) { this.options = extend({}, defaults$6, options); } CircleLayout.prototype.run = function () { var params = this.options; var options = params; var cy = params.cy; var eles = options.eles; var clockwise = options.counterclockwise !== undefined ? !options.counterclockwise : options.clockwise; var nodes = eles.nodes().not(':parent'); if (options.sort) { nodes = nodes.sort(options.sort); } var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); var center = { x: bb.x1 + bb.w / 2, y: bb.y1 + bb.h / 2 }; var sweep = options.sweep === undefined ? 2 * Math.PI - 2 * Math.PI / nodes.length : options.sweep; var dTheta = sweep / Math.max(1, nodes.length - 1); var r; var minDistance = 0; for (var i = 0; i < nodes.length; i++) { var n = nodes[i]; var nbb = n.layoutDimensions(options); var w = nbb.w; var h = nbb.h; minDistance = Math.max(minDistance, w, h); } if (number$1(options.radius)) { r = options.radius; } else if (nodes.length <= 1) { r = 0; } else { r = Math.min(bb.h, bb.w) / 2 - minDistance; } // calculate the radius if (nodes.length > 1 && options.avoidOverlap) { // but only if more than one node (can't overlap) minDistance *= 1.75; // just to have some nice spacing var dcos = Math.cos(dTheta) - Math.cos(0); var dsin = Math.sin(dTheta) - Math.sin(0); var rMin = Math.sqrt(minDistance * minDistance / (dcos * dcos + dsin * dsin)); // s.t. no nodes overlapping r = Math.max(rMin, r); } var getPos = function getPos(ele, i) { var theta = options.startAngle + i * dTheta * (clockwise ? 1 : -1); var rx = r * Math.cos(theta); var ry = r * Math.sin(theta); var pos = { x: center.x + rx, y: center.y + ry }; return pos; }; eles.nodes().layoutPositions(this, options, getPos); return this; // chaining }; var defaults$5 = { fit: true, // whether to fit the viewport to the graph padding: 30, // the padding on fit startAngle: 3 / 2 * Math.PI, // where nodes start in radians sweep: undefined, // how many radians should be between the first and last node (defaults to full circle) clockwise: true, // whether the layout should go clockwise (true) or counterclockwise/anticlockwise (false) equidistant: false, // whether levels have an equal radial distance betwen them, may cause bounding box overflow minNodeSpacing: 10, // min spacing between outside of nodes (used for radius adjustment) boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } avoidOverlap: true, // prevents node overlap, may overflow boundingBox if not enough space nodeDimensionsIncludeLabels: false, // Excludes the label when calculating node bounding boxes for the layout algorithm height: undefined, // height of layout area (overrides container height) width: undefined, // width of layout area (overrides container width) spacingFactor: undefined, // Applies a multiplicative factor (>0) to expand or compress the overall area that the nodes take up concentric: function concentric(node) { // returns numeric value for each node, placing higher nodes in levels towards the centre return node.degree(); }, levelWidth: function levelWidth(nodes) { // the variation of concentric values in each level return nodes.maxDegree() / 4; }, animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function ConcentricLayout(options) { this.options = extend({}, defaults$5, options); } ConcentricLayout.prototype.run = function () { var params = this.options; var options = params; var clockwise = options.counterclockwise !== undefined ? !options.counterclockwise : options.clockwise; var cy = params.cy; var eles = options.eles; var nodes = eles.nodes().not(':parent'); var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); var center = { x: bb.x1 + bb.w / 2, y: bb.y1 + bb.h / 2 }; var nodeValues = []; // { node, value } var maxNodeSize = 0; for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; var value = void 0; // calculate the node value value = options.concentric(node); nodeValues.push({ value: value, node: node }); // for style mapping node._private.scratch.concentric = value; } // in case we used the `concentric` in style nodes.updateStyle(); // calculate max size now based on potentially updated mappers for (var _i = 0; _i < nodes.length; _i++) { var _node = nodes[_i]; var nbb = _node.layoutDimensions(options); maxNodeSize = Math.max(maxNodeSize, nbb.w, nbb.h); } // sort node values in descreasing order nodeValues.sort(function (a, b) { return b.value - a.value; }); var levelWidth = options.levelWidth(nodes); // put the values into levels var levels = [[]]; var currentLevel = levels[0]; for (var _i2 = 0; _i2 < nodeValues.length; _i2++) { var val = nodeValues[_i2]; if (currentLevel.length > 0) { var diff = Math.abs(currentLevel[0].value - val.value); if (diff >= levelWidth) { currentLevel = []; levels.push(currentLevel); } } currentLevel.push(val); } // create positions from levels var minDist = maxNodeSize + options.minNodeSpacing; // min dist between nodes if (!options.avoidOverlap) { // then strictly constrain to bb var firstLvlHasMulti = levels.length > 0 && levels[0].length > 1; var maxR = Math.min(bb.w, bb.h) / 2 - minDist; var rStep = maxR / (levels.length + firstLvlHasMulti ? 1 : 0); minDist = Math.min(minDist, rStep); } // find the metrics for each level var r = 0; for (var _i3 = 0; _i3 < levels.length; _i3++) { var level = levels[_i3]; var sweep = options.sweep === undefined ? 2 * Math.PI - 2 * Math.PI / level.length : options.sweep; var dTheta = level.dTheta = sweep / Math.max(1, level.length - 1); // calculate the radius if (level.length > 1 && options.avoidOverlap) { // but only if more than one node (can't overlap) var dcos = Math.cos(dTheta) - Math.cos(0); var dsin = Math.sin(dTheta) - Math.sin(0); var rMin = Math.sqrt(minDist * minDist / (dcos * dcos + dsin * dsin)); // s.t. no nodes overlapping r = Math.max(rMin, r); } level.r = r; r += minDist; } if (options.equidistant) { var rDeltaMax = 0; var _r = 0; for (var _i4 = 0; _i4 < levels.length; _i4++) { var _level = levels[_i4]; var rDelta = _level.r - _r; rDeltaMax = Math.max(rDeltaMax, rDelta); } _r = 0; for (var _i5 = 0; _i5 < levels.length; _i5++) { var _level2 = levels[_i5]; if (_i5 === 0) { _r = _level2.r; } _level2.r = _r; _r += rDeltaMax; } } // calculate the node positions var pos = {}; // id => position for (var _i6 = 0; _i6 < levels.length; _i6++) { var _level3 = levels[_i6]; var _dTheta = _level3.dTheta; var _r2 = _level3.r; for (var j = 0; j < _level3.length; j++) { var _val = _level3[j]; var theta = options.startAngle + (clockwise ? 1 : -1) * _dTheta * j; var p = { x: center.x + _r2 * Math.cos(theta), y: center.y + _r2 * Math.sin(theta) }; pos[_val.node.id()] = p; } } // position the nodes eles.nodes().layoutPositions(this, options, function (ele) { var id = ele.id(); return pos[id]; }); return this; // chaining }; /* The CoSE layout was written by Gerardo Huck. https://www.linkedin.com/in/gerardohuck/ Based on the following article: http://dl.acm.org/citation.cfm?id=1498047 Modifications tracked on Github. */ var DEBUG; /** * @brief : default layout options */ var defaults$4 = { // Called on `layoutready` ready: function ready() {}, // Called on `layoutstop` stop: function stop() {}, // Whether to animate while running the layout // true : Animate continuously as the layout is running // false : Just show the end result // 'end' : Animate with the end result, from the initial positions to the end positions animate: true, // Easing of the animation for animate:'end' animationEasing: undefined, // The duration of the animation for animate:'end' animationDuration: undefined, // A function that determines whether the node should be animated // All nodes animated by default on animate enabled // Non-animated nodes are positioned immediately when the layout starts animateFilter: function animateFilter(node, i) { return true; }, // The layout animates only after this many milliseconds for animate:true // (prevents flashing on fast runs) animationThreshold: 250, // Number of iterations between consecutive screen positions update refresh: 20, // Whether to fit the network view after when done fit: true, // Padding on fit padding: 30, // Constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } boundingBox: undefined, // Excludes the label when calculating node bounding boxes for the layout algorithm nodeDimensionsIncludeLabels: false, // Randomize the initial positions of the nodes (true) or use existing positions (false) randomize: false, // Extra spacing between components in non-compound graphs componentSpacing: 40, // Node repulsion (non overlapping) multiplier nodeRepulsion: function nodeRepulsion(node) { return 2048; }, // Node repulsion (overlapping) multiplier nodeOverlap: 4, // Ideal edge (non nested) length idealEdgeLength: function idealEdgeLength(edge) { return 32; }, // Divisor to compute edge forces edgeElasticity: function edgeElasticity(edge) { return 32; }, // Nesting factor (multiplier) to compute ideal edge length for nested edges nestingFactor: 1.2, // Gravity force (constant) gravity: 1, // Maximum number of iterations to perform numIter: 1000, // Initial temperature (maximum node displacement) initialTemp: 1000, // Cooling factor (how the temperature is reduced between consecutive iterations coolingFactor: 0.99, // Lower temperature threshold (below this point the layout will end) minTemp: 1.0 }; /** * @brief : constructor * @arg options : object containing layout options */ function CoseLayout(options) { this.options = extend({}, defaults$4, options); this.options.layout = this; // Exclude any edge that has a source or target node that is not in the set of passed-in nodes var nodes = this.options.eles.nodes(); var edges = this.options.eles.edges(); var notEdges = edges.filter(function (e) { var sourceId = e.source().data('id'); var targetId = e.target().data('id'); var hasSource = nodes.some(function (n) { return n.data('id') === sourceId; }); var hasTarget = nodes.some(function (n) { return n.data('id') === targetId; }); return !hasSource || !hasTarget; }); this.options.eles = this.options.eles.not(notEdges); } /** * @brief : runs the layout */ CoseLayout.prototype.run = function () { var options = this.options; var cy = options.cy; var layout = this; layout.stopped = false; if (options.animate === true || options.animate === false) { layout.emit({ type: 'layoutstart', layout: layout }); } // Set DEBUG - Global variable if (true === options.debug) { DEBUG = true; } else { DEBUG = false; } // Initialize layout info var layoutInfo = createLayoutInfo(cy, layout, options); // Show LayoutInfo contents if debugging if (DEBUG) { printLayoutInfo(layoutInfo); } // If required, randomize node positions if (options.randomize) { randomizePositions(layoutInfo); } var startTime = performanceNow(); var refresh = function refresh() { refreshPositions(layoutInfo, cy, options); // Fit the graph if necessary if (true === options.fit) { cy.fit(options.padding); } }; var mainLoop = function mainLoop(i) { if (layout.stopped || i >= options.numIter) { // logDebug("Layout manually stopped. Stopping computation in step " + i); return false; } // Do one step in the phisical simulation step(layoutInfo, options); // Update temperature layoutInfo.temperature = layoutInfo.temperature * options.coolingFactor; // logDebug("New temperature: " + layoutInfo.temperature); if (layoutInfo.temperature < options.minTemp) { // logDebug("Temperature drop below minimum threshold. Stopping computation in step " + i); return false; } return true; }; var done = function done() { if (options.animate === true || options.animate === false) { refresh(); // Layout has finished layout.one('layoutstop', options.stop); layout.emit({ type: 'layoutstop', layout: layout }); } else { var nodes = options.eles.nodes(); var getScaledPos = getScaleInBoundsFn(layoutInfo, options, nodes); nodes.layoutPositions(layout, options, getScaledPos); } }; var i = 0; var loopRet = true; if (options.animate === true) { var frame = function frame() { var f = 0; while (loopRet && f < options.refresh) { loopRet = mainLoop(i); i++; f++; } if (!loopRet) { // it's done separateComponents(layoutInfo, options); done(); } else { var now = performanceNow(); if (now - startTime >= options.animationThreshold) { refresh(); } requestAnimationFrame(frame); } }; frame(); } else { while (loopRet) { loopRet = mainLoop(i); i++; } separateComponents(layoutInfo, options); done(); } return this; // chaining }; /** * @brief : called on continuous layouts to stop them before they finish */ CoseLayout.prototype.stop = function () { this.stopped = true; if (this.thread) { this.thread.stop(); } this.emit('layoutstop'); return this; // chaining }; CoseLayout.prototype.destroy = function () { if (this.thread) { this.thread.stop(); } return this; // chaining }; /** * @brief : Creates an object which is contains all the data * used in the layout process * @arg cy : cytoscape.js object * @return : layoutInfo object initialized */ var createLayoutInfo = function createLayoutInfo(cy, layout, options) { // Shortcut var edges = options.eles.edges(); var nodes = options.eles.nodes(); var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); var layoutInfo = { isCompound: cy.hasCompoundNodes(), layoutNodes: [], idToIndex: {}, nodeSize: nodes.size(), graphSet: [], indexToGraph: [], layoutEdges: [], edgeSize: edges.size(), temperature: options.initialTemp, clientWidth: bb.w, clientHeight: bb.h, boundingBox: bb }; var components = options.eles.components(); var id2cmptId = {}; for (var i = 0; i < components.length; i++) { var component = components[i]; for (var j = 0; j < component.length; j++) { var node = component[j]; id2cmptId[node.id()] = i; } } // Iterate over all nodes, creating layout nodes for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = nodes[i]; var nbb = n.layoutDimensions(options); var tempNode = {}; tempNode.isLocked = n.locked(); tempNode.id = n.data('id'); tempNode.parentId = n.data('parent'); tempNode.cmptId = id2cmptId[n.id()]; tempNode.children = []; tempNode.positionX = n.position('x'); tempNode.positionY = n.position('y'); tempNode.offsetX = 0; tempNode.offsetY = 0; tempNode.height = nbb.w; tempNode.width = nbb.h; tempNode.maxX = tempNode.positionX + tempNode.width / 2; tempNode.minX = tempNode.positionX - tempNode.width / 2; tempNode.maxY = tempNode.positionY + tempNode.height / 2; tempNode.minY = tempNode.positionY - tempNode.height / 2; tempNode.padLeft = parseFloat(n.style('padding')); tempNode.padRight = parseFloat(n.style('padding')); tempNode.padTop = parseFloat(n.style('padding')); tempNode.padBottom = parseFloat(n.style('padding')); // forces tempNode.nodeRepulsion = fn$6(options.nodeRepulsion) ? options.nodeRepulsion(n) : options.nodeRepulsion; // Add new node layoutInfo.layoutNodes.push(tempNode); // Add entry to id-index map layoutInfo.idToIndex[tempNode.id] = i; } // Inline implementation of a queue, used for traversing the graph in BFS order var queue = []; var start = 0; // Points to the start the queue var end = -1; // Points to the end of the queue var tempGraph = []; // Second pass to add child information and // initialize queue for hierarchical traversal for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = layoutInfo.layoutNodes[i]; var p_id = n.parentId; // Check if node n has a parent node if (null != p_id) { // Add node Id to parent's list of children layoutInfo.layoutNodes[layoutInfo.idToIndex[p_id]].children.push(n.id); } else { // If a node doesn't have a parent, then it's in the root graph queue[++end] = n.id; tempGraph.push(n.id); } } // Add root graph to graphSet layoutInfo.graphSet.push(tempGraph); // Traverse the graph, level by level, while (start <= end) { // Get the node to visit and remove it from queue var node_id = queue[start++]; var node_ix = layoutInfo.idToIndex[node_id]; var node = layoutInfo.layoutNodes[node_ix]; var children = node.children; if (children.length > 0) { // Add children nodes as a new graph to graph set layoutInfo.graphSet.push(children); // Add children to que queue to be visited for (var i = 0; i < children.length; i++) { queue[++end] = children[i]; } } } // Create indexToGraph map for (var i = 0; i < layoutInfo.graphSet.length; i++) { var graph = layoutInfo.graphSet[i]; for (var j = 0; j < graph.length; j++) { var index = layoutInfo.idToIndex[graph[j]]; layoutInfo.indexToGraph[index] = i; } } // Iterate over all edges, creating Layout Edges for (var i = 0; i < layoutInfo.edgeSize; i++) { var e = edges[i]; var tempEdge = {}; tempEdge.id = e.data('id'); tempEdge.sourceId = e.data('source'); tempEdge.targetId = e.data('target'); // Compute ideal length var idealLength = fn$6(options.idealEdgeLength) ? options.idealEdgeLength(e) : options.idealEdgeLength; var elasticity = fn$6(options.edgeElasticity) ? options.edgeElasticity(e) : options.edgeElasticity; // Check if it's an inter graph edge var sourceIx = layoutInfo.idToIndex[tempEdge.sourceId]; var targetIx = layoutInfo.idToIndex[tempEdge.targetId]; var sourceGraph = layoutInfo.indexToGraph[sourceIx]; var targetGraph = layoutInfo.indexToGraph[targetIx]; if (sourceGraph != targetGraph) { // Find lowest common graph ancestor var lca = findLCA(tempEdge.sourceId, tempEdge.targetId, layoutInfo); // Compute sum of node depths, relative to lca graph var lcaGraph = layoutInfo.graphSet[lca]; var depth = 0; // Source depth var tempNode = layoutInfo.layoutNodes[sourceIx]; while (-1 === lcaGraph.indexOf(tempNode.id)) { tempNode = layoutInfo.layoutNodes[layoutInfo.idToIndex[tempNode.parentId]]; depth++; } // Target depth tempNode = layoutInfo.layoutNodes[targetIx]; while (-1 === lcaGraph.indexOf(tempNode.id)) { tempNode = layoutInfo.layoutNodes[layoutInfo.idToIndex[tempNode.parentId]]; depth++; } // logDebug('LCA of nodes ' + tempEdge.sourceId + ' and ' + tempEdge.targetId + // ". Index: " + lca + " Contents: " + lcaGraph.toString() + // ". Depth: " + depth); // Update idealLength idealLength *= depth * options.nestingFactor; } tempEdge.idealLength = idealLength; tempEdge.elasticity = elasticity; layoutInfo.layoutEdges.push(tempEdge); } // Finally, return layoutInfo object return layoutInfo; }; /** * @brief : This function finds the index of the lowest common * graph ancestor between 2 nodes in the subtree * (from the graph hierarchy induced tree) whose * root is graphIx * * @arg node1: node1's ID * @arg node2: node2's ID * @arg layoutInfo: layoutInfo object * */ var findLCA = function findLCA(node1, node2, layoutInfo) { // Find their common ancester, starting from the root graph var res = findLCA_aux(node1, node2, 0, layoutInfo); if (2 > res.count) { // If aux function couldn't find the common ancester, // then it is the root graph return 0; } else { return res.graph; } }; /** * @brief : Auxiliary function used for LCA computation * * @arg node1 : node1's ID * @arg node2 : node2's ID * @arg graphIx : subgraph index * @arg layoutInfo : layoutInfo object * * @return : object of the form {count: X, graph: Y}, where: * X is the number of ancestors (max: 2) found in * graphIx (and it's subgraphs), * Y is the graph index of the lowest graph containing * all X nodes */ var findLCA_aux = function findLCA_aux(node1, node2, graphIx, layoutInfo) { var graph = layoutInfo.graphSet[graphIx]; // If both nodes belongs to graphIx if (-1 < graph.indexOf(node1) && -1 < graph.indexOf(node2)) { return { count: 2, graph: graphIx }; } // Make recursive calls for all subgraphs var c = 0; for (var i = 0; i < graph.length; i++) { var nodeId = graph[i]; var nodeIx = layoutInfo.idToIndex[nodeId]; var children = layoutInfo.layoutNodes[nodeIx].children; // If the node has no child, skip it if (0 === children.length) { continue; } var childGraphIx = layoutInfo.indexToGraph[layoutInfo.idToIndex[children[0]]]; var result = findLCA_aux(node1, node2, childGraphIx, layoutInfo); if (0 === result.count) { // Neither node1 nor node2 are present in this subgraph continue; } else if (1 === result.count) { // One of (node1, node2) is present in this subgraph c++; if (2 === c) { // We've already found both nodes, no need to keep searching break; } } else { // Both nodes are present in this subgraph return result; } } return { count: c, graph: graphIx }; }; /** * @brief: printsLayoutInfo into js console * Only used for debbuging */ var printLayoutInfo; /** * @brief : Randomizes the position of all nodes */ var randomizePositions = function randomizePositions(layoutInfo, cy) { var width = layoutInfo.clientWidth; var height = layoutInfo.clientHeight; for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = layoutInfo.layoutNodes[i]; // No need to randomize compound nodes or locked nodes if (0 === n.children.length && !n.isLocked) { n.positionX = Math.random() * width; n.positionY = Math.random() * height; } } }; var getScaleInBoundsFn = function getScaleInBoundsFn(layoutInfo, options, nodes) { var bb = layoutInfo.boundingBox; var coseBB = { x1: Infinity, x2: -Infinity, y1: Infinity, y2: -Infinity }; if (options.boundingBox) { nodes.forEach(function (node) { var lnode = layoutInfo.layoutNodes[layoutInfo.idToIndex[node.data('id')]]; coseBB.x1 = Math.min(coseBB.x1, lnode.positionX); coseBB.x2 = Math.max(coseBB.x2, lnode.positionX); coseBB.y1 = Math.min(coseBB.y1, lnode.positionY); coseBB.y2 = Math.max(coseBB.y2, lnode.positionY); }); coseBB.w = coseBB.x2 - coseBB.x1; coseBB.h = coseBB.y2 - coseBB.y1; } return function (ele, i) { var lnode = layoutInfo.layoutNodes[layoutInfo.idToIndex[ele.data('id')]]; if (options.boundingBox) { // then add extra bounding box constraint var pctX = (lnode.positionX - coseBB.x1) / coseBB.w; var pctY = (lnode.positionY - coseBB.y1) / coseBB.h; return { x: bb.x1 + pctX * bb.w, y: bb.y1 + pctY * bb.h }; } else { return { x: lnode.positionX, y: lnode.positionY }; } }; }; /** * @brief : Updates the positions of nodes in the network * @arg layoutInfo : LayoutInfo object * @arg cy : Cytoscape object * @arg options : Layout options */ var refreshPositions = function refreshPositions(layoutInfo, cy, options) { // var s = 'Refreshing positions'; // logDebug(s); var layout = options.layout; var nodes = options.eles.nodes(); var getScaledPos = getScaleInBoundsFn(layoutInfo, options, nodes); nodes.positions(getScaledPos); // Trigger layoutReady only on first call if (true !== layoutInfo.ready) { // s = 'Triggering layoutready'; // logDebug(s); layoutInfo.ready = true; layout.one('layoutready', options.ready); layout.emit({ type: 'layoutready', layout: this }); } }; /** * @brief : Logs a debug message in JS console, if DEBUG is ON */ // var logDebug = function(text) { // if (DEBUG) { // console.debug(text); // } // }; /** * @brief : Performs one iteration of the physical simulation * @arg layoutInfo : LayoutInfo object already initialized * @arg cy : Cytoscape object * @arg options : Layout options */ var step = function step(layoutInfo, options, _step) { // var s = "\n\n###############################"; // s += "\nSTEP: " + step; // s += "\n###############################\n"; // logDebug(s); // Calculate node repulsions calculateNodeForces(layoutInfo, options); // Calculate edge forces calculateEdgeForces(layoutInfo); // Calculate gravity forces calculateGravityForces(layoutInfo, options); // Propagate forces from parent to child propagateForces(layoutInfo); // Update positions based on calculated forces updatePositions(layoutInfo); }; /** * @brief : Computes the node repulsion forces */ var calculateNodeForces = function calculateNodeForces(layoutInfo, options) { // Go through each of the graphs in graphSet // Nodes only repel each other if they belong to the same graph // var s = 'calculateNodeForces'; // logDebug(s); for (var i = 0; i < layoutInfo.graphSet.length; i++) { var graph = layoutInfo.graphSet[i]; var numNodes = graph.length; // s = "Set: " + graph.toString(); // logDebug(s); // Now get all the pairs of nodes // Only get each pair once, (A, B) = (B, A) for (var j = 0; j < numNodes; j++) { var node1 = layoutInfo.layoutNodes[layoutInfo.idToIndex[graph[j]]]; for (var k = j + 1; k < numNodes; k++) { var node2 = layoutInfo.layoutNodes[layoutInfo.idToIndex[graph[k]]]; nodeRepulsion(node1, node2, layoutInfo, options); } } } }; var randomDistance = function randomDistance(max) { return -max + 2 * max * Math.random(); }; /** * @brief : Compute the node repulsion forces between a pair of nodes */ var nodeRepulsion = function nodeRepulsion(node1, node2, layoutInfo, options) { // var s = "Node repulsion. Node1: " + node1.id + " Node2: " + node2.id; var cmptId1 = node1.cmptId; var cmptId2 = node2.cmptId; if (cmptId1 !== cmptId2 && !layoutInfo.isCompound) { return; } // Get direction of line connecting both node centers var directionX = node2.positionX - node1.positionX; var directionY = node2.positionY - node1.positionY; var maxRandDist = 1; // s += "\ndirectionX: " + directionX + ", directionY: " + directionY; // If both centers are the same, apply a random force if (0 === directionX && 0 === directionY) { directionX = randomDistance(maxRandDist); directionY = randomDistance(maxRandDist); } var overlap = nodesOverlap(node1, node2, directionX, directionY); if (overlap > 0) { // s += "\nNodes DO overlap."; // s += "\nOverlap: " + overlap; // If nodes overlap, repulsion force is proportional // to the overlap var force = options.nodeOverlap * overlap; // Compute the module and components of the force vector var distance = Math.sqrt(directionX * directionX + directionY * directionY); // s += "\nDistance: " + distance; var forceX = force * directionX / distance; var forceY = force * directionY / distance; } else { // s += "\nNodes do NOT overlap."; // If there's no overlap, force is inversely proportional // to squared distance // Get clipping points for both nodes var point1 = findClippingPoint(node1, directionX, directionY); var point2 = findClippingPoint(node2, -1 * directionX, -1 * directionY); // Use clipping points to compute distance var distanceX = point2.x - point1.x; var distanceY = point2.y - point1.y; var distanceSqr = distanceX * distanceX + distanceY * distanceY; var distance = Math.sqrt(distanceSqr); // s += "\nDistance: " + distance; // Compute the module and components of the force vector var force = (node1.nodeRepulsion + node2.nodeRepulsion) / distanceSqr; var forceX = force * distanceX / distance; var forceY = force * distanceY / distance; } // Apply force if (!node1.isLocked) { node1.offsetX -= forceX; node1.offsetY -= forceY; } if (!node2.isLocked) { node2.offsetX += forceX; node2.offsetY += forceY; } // s += "\nForceX: " + forceX + " ForceY: " + forceY; // logDebug(s); return; }; /** * @brief : Determines whether two nodes overlap or not * @return : Amount of overlapping (0 => no overlap) */ var nodesOverlap = function nodesOverlap(node1, node2, dX, dY) { if (dX > 0) { var overlapX = node1.maxX - node2.minX; } else { var overlapX = node2.maxX - node1.minX; } if (dY > 0) { var overlapY = node1.maxY - node2.minY; } else { var overlapY = node2.maxY - node1.minY; } if (overlapX >= 0 && overlapY >= 0) { return Math.sqrt(overlapX * overlapX + overlapY * overlapY); } else { return 0; } }; /** * @brief : Finds the point in which an edge (direction dX, dY) intersects * the rectangular bounding box of it's source/target node */ var findClippingPoint = function findClippingPoint(node, dX, dY) { // Shorcuts var X = node.positionX; var Y = node.positionY; var H = node.height || 1; var W = node.width || 1; var dirSlope = dY / dX; var nodeSlope = H / W; // var s = 'Computing clipping point of node ' + node.id + // " . Height: " + H + ", Width: " + W + // "\nDirection " + dX + ", " + dY; // // Compute intersection var res = {}; // Case: Vertical direction (up) if (0 === dX && 0 < dY) { res.x = X; // s += "\nUp direction"; res.y = Y + H / 2; return res; } // Case: Vertical direction (down) if (0 === dX && 0 > dY) { res.x = X; res.y = Y + H / 2; // s += "\nDown direction"; return res; } // Case: Intersects the right border if (0 < dX && -1 * nodeSlope <= dirSlope && dirSlope <= nodeSlope) { res.x = X + W / 2; res.y = Y + W * dY / 2 / dX; // s += "\nRightborder"; return res; } // Case: Intersects the left border if (0 > dX && -1 * nodeSlope <= dirSlope && dirSlope <= nodeSlope) { res.x = X - W / 2; res.y = Y - W * dY / 2 / dX; // s += "\nLeftborder"; return res; } // Case: Intersects the top border if (0 < dY && (dirSlope <= -1 * nodeSlope || dirSlope >= nodeSlope)) { res.x = X + H * dX / 2 / dY; res.y = Y + H / 2; // s += "\nTop border"; return res; } // Case: Intersects the bottom border if (0 > dY && (dirSlope <= -1 * nodeSlope || dirSlope >= nodeSlope)) { res.x = X - H * dX / 2 / dY; res.y = Y - H / 2; // s += "\nBottom border"; return res; } // s += "\nClipping point found at " + res.x + ", " + res.y; // logDebug(s); return res; }; /** * @brief : Calculates all edge forces */ var calculateEdgeForces = function calculateEdgeForces(layoutInfo, options) { // Iterate over all edges for (var i = 0; i < layoutInfo.edgeSize; i++) { // Get edge, source & target nodes var edge = layoutInfo.layoutEdges[i]; var sourceIx = layoutInfo.idToIndex[edge.sourceId]; var source = layoutInfo.layoutNodes[sourceIx]; var targetIx = layoutInfo.idToIndex[edge.targetId]; var target = layoutInfo.layoutNodes[targetIx]; // Get direction of line connecting both node centers var directionX = target.positionX - source.positionX; var directionY = target.positionY - source.positionY; // If both centers are the same, do nothing. // A random force has already been applied as node repulsion if (0 === directionX && 0 === directionY) { continue; } // Get clipping points for both nodes var point1 = findClippingPoint(source, directionX, directionY); var point2 = findClippingPoint(target, -1 * directionX, -1 * directionY); var lx = point2.x - point1.x; var ly = point2.y - point1.y; var l = Math.sqrt(lx * lx + ly * ly); var force = Math.pow(edge.idealLength - l, 2) / edge.elasticity; if (0 !== l) { var forceX = force * lx / l; var forceY = force * ly / l; } else { var forceX = 0; var forceY = 0; } // Add this force to target and source nodes if (!source.isLocked) { source.offsetX += forceX; source.offsetY += forceY; } if (!target.isLocked) { target.offsetX -= forceX; target.offsetY -= forceY; } // var s = 'Edge force between nodes ' + source.id + ' and ' + target.id; // s += "\nDistance: " + l + " Force: (" + forceX + ", " + forceY + ")"; // logDebug(s); } }; /** * @brief : Computes gravity forces for all nodes */ var calculateGravityForces = function calculateGravityForces(layoutInfo, options) { if (options.gravity === 0) { return; } var distThreshold = 1; // var s = 'calculateGravityForces'; // logDebug(s); for (var i = 0; i < layoutInfo.graphSet.length; i++) { var graph = layoutInfo.graphSet[i]; var numNodes = graph.length; // s = "Set: " + graph.toString(); // logDebug(s); // Compute graph center if (0 === i) { var centerX = layoutInfo.clientHeight / 2; var centerY = layoutInfo.clientWidth / 2; } else { // Get Parent node for this graph, and use its position as center var temp = layoutInfo.layoutNodes[layoutInfo.idToIndex[graph[0]]]; var parent = layoutInfo.layoutNodes[layoutInfo.idToIndex[temp.parentId]]; var centerX = parent.positionX; var centerY = parent.positionY; } // s = "Center found at: " + centerX + ", " + centerY; // logDebug(s); // Apply force to all nodes in graph for (var j = 0; j < numNodes; j++) { var node = layoutInfo.layoutNodes[layoutInfo.idToIndex[graph[j]]]; // s = "Node: " + node.id; if (node.isLocked) { continue; } var dx = centerX - node.positionX; var dy = centerY - node.positionY; var d = Math.sqrt(dx * dx + dy * dy); if (d > distThreshold) { var fx = options.gravity * dx / d; var fy = options.gravity * dy / d; node.offsetX += fx; node.offsetY += fy; // s += ": Applied force: " + fx + ", " + fy; } // logDebug(s); } } }; /** * @brief : This function propagates the existing offsets from * parent nodes to its descendents. * @arg layoutInfo : layoutInfo Object * @arg cy : cytoscape Object * @arg options : Layout options */ var propagateForces = function propagateForces(layoutInfo, options) { // Inline implementation of a queue, used for traversing the graph in BFS order var queue = []; var start = 0; // Points to the start the queue var end = -1; // Points to the end of the queue // logDebug('propagateForces'); // Start by visiting the nodes in the root graph queue.push.apply(queue, layoutInfo.graphSet[0]); end += layoutInfo.graphSet[0].length; // Traverse the graph, level by level, while (start <= end) { // Get the node to visit and remove it from queue var nodeId = queue[start++]; var nodeIndex = layoutInfo.idToIndex[nodeId]; var node = layoutInfo.layoutNodes[nodeIndex]; var children = node.children; // We only need to process the node if it's compound if (0 < children.length && !node.isLocked) { var offX = node.offsetX; var offY = node.offsetY; // var s = "Propagating offset from parent node : " + node.id + // ". OffsetX: " + offX + ". OffsetY: " + offY; // s += "\n Children: " + children.toString(); // logDebug(s); for (var i = 0; i < children.length; i++) { var childNode = layoutInfo.layoutNodes[layoutInfo.idToIndex[children[i]]]; // Propagate offset childNode.offsetX += offX; childNode.offsetY += offY; // Add children to queue to be visited queue[++end] = children[i]; } // Reset parent offsets node.offsetX = 0; node.offsetY = 0; } } }; /** * @brief : Updates the layout model positions, based on * the accumulated forces */ var updatePositions = function updatePositions(layoutInfo, options) { // var s = 'Updating positions'; // logDebug(s); // Reset boundaries for compound nodes for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = layoutInfo.layoutNodes[i]; if (0 < n.children.length) { // logDebug("Resetting boundaries of compound node: " + n.id); n.maxX = undefined; n.minX = undefined; n.maxY = undefined; n.minY = undefined; } } for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = layoutInfo.layoutNodes[i]; if (0 < n.children.length || n.isLocked) { // No need to set compound or locked node position // logDebug("Skipping position update of node: " + n.id); continue; } // s = "Node: " + n.id + " Previous position: (" + // n.positionX + ", " + n.positionY + ")."; // Limit displacement in order to improve stability var tempForce = limitForce(n.offsetX, n.offsetY, layoutInfo.temperature); n.positionX += tempForce.x; n.positionY += tempForce.y; n.offsetX = 0; n.offsetY = 0; n.minX = n.positionX - n.width; n.maxX = n.positionX + n.width; n.minY = n.positionY - n.height; n.maxY = n.positionY + n.height; // s += " New Position: (" + n.positionX + ", " + n.positionY + ")."; // logDebug(s); // Update ancestry boudaries updateAncestryBoundaries(n, layoutInfo); } // Update size, position of compund nodes for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = layoutInfo.layoutNodes[i]; if (0 < n.children.length && !n.isLocked) { n.positionX = (n.maxX + n.minX) / 2; n.positionY = (n.maxY + n.minY) / 2; n.width = n.maxX - n.minX; n.height = n.maxY - n.minY; // s = "Updating position, size of compound node " + n.id; // s += "\nPositionX: " + n.positionX + ", PositionY: " + n.positionY; // s += "\nWidth: " + n.width + ", Height: " + n.height; // logDebug(s); } } }; /** * @brief : Limits a force (forceX, forceY) to be not * greater (in modulo) than max. 8 Preserves force direction. */ var limitForce = function limitForce(forceX, forceY, max) { // var s = "Limiting force: (" + forceX + ", " + forceY + "). Max: " + max; var force = Math.sqrt(forceX * forceX + forceY * forceY); if (force > max) { var res = { x: max * forceX / force, y: max * forceY / force }; } else { var res = { x: forceX, y: forceY }; } // s += ".\nResult: (" + res.x + ", " + res.y + ")"; // logDebug(s); return res; }; /** * @brief : Function used for keeping track of compound node * sizes, since they should bound all their subnodes. */ var updateAncestryBoundaries = function updateAncestryBoundaries(node, layoutInfo) { // var s = "Propagating new position/size of node " + node.id; var parentId = node.parentId; if (null == parentId) { // If there's no parent, we are done // s += ". No parent node."; // logDebug(s); return; } // Get Parent Node var p = layoutInfo.layoutNodes[layoutInfo.idToIndex[parentId]]; var flag = false; // MaxX if (null == p.maxX || node.maxX + p.padRight > p.maxX) { p.maxX = node.maxX + p.padRight; flag = true; // s += "\nNew maxX for parent node " + p.id + ": " + p.maxX; } // MinX if (null == p.minX || node.minX - p.padLeft < p.minX) { p.minX = node.minX - p.padLeft; flag = true; // s += "\nNew minX for parent node " + p.id + ": " + p.minX; } // MaxY if (null == p.maxY || node.maxY + p.padBottom > p.maxY) { p.maxY = node.maxY + p.padBottom; flag = true; // s += "\nNew maxY for parent node " + p.id + ": " + p.maxY; } // MinY if (null == p.minY || node.minY - p.padTop < p.minY) { p.minY = node.minY - p.padTop; flag = true; // s += "\nNew minY for parent node " + p.id + ": " + p.minY; } // If updated boundaries, propagate changes upward if (flag) { // logDebug(s); return updateAncestryBoundaries(p, layoutInfo); } // s += ". No changes in boundaries/position of parent node " + p.id; // logDebug(s); return; }; var separateComponents = function separateComponents(layoutInfo, options) { var nodes = layoutInfo.layoutNodes; var components = []; for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; var cid = node.cmptId; var component = components[cid] = components[cid] || []; component.push(node); } var totalA = 0; for (var i = 0; i < components.length; i++) { var c = components[i]; if (!c) { continue; } c.x1 = Infinity; c.x2 = -Infinity; c.y1 = Infinity; c.y2 = -Infinity; for (var j = 0; j < c.length; j++) { var n = c[j]; c.x1 = Math.min(c.x1, n.positionX - n.width / 2); c.x2 = Math.max(c.x2, n.positionX + n.width / 2); c.y1 = Math.min(c.y1, n.positionY - n.height / 2); c.y2 = Math.max(c.y2, n.positionY + n.height / 2); } c.w = c.x2 - c.x1; c.h = c.y2 - c.y1; totalA += c.w * c.h; } components.sort(function (c1, c2) { return c2.w * c2.h - c1.w * c1.h; }); var x = 0; var y = 0; var usedW = 0; var rowH = 0; var maxRowW = Math.sqrt(totalA) * layoutInfo.clientWidth / layoutInfo.clientHeight; for (var i = 0; i < components.length; i++) { var c = components[i]; if (!c) { continue; } for (var j = 0; j < c.length; j++) { var n = c[j]; if (!n.isLocked) { n.positionX += x - c.x1; n.positionY += y - c.y1; } } x += c.w + options.componentSpacing; usedW += c.w + options.componentSpacing; rowH = Math.max(rowH, c.h); if (usedW > maxRowW) { y += rowH + options.componentSpacing; x = 0; usedW = 0; rowH = 0; } } }; var defaults$3 = { fit: true, // whether to fit the viewport to the graph padding: 30, // padding used on fit boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } avoidOverlap: true, // prevents node overlap, may overflow boundingBox if not enough space avoidOverlapPadding: 10, // extra spacing around nodes when avoidOverlap: true nodeDimensionsIncludeLabels: false, // Excludes the label when calculating node bounding boxes for the layout algorithm spacingFactor: undefined, // Applies a multiplicative factor (>0) to expand or compress the overall area that the nodes take up condense: false, // uses all available space on false, uses minimal space on true rows: undefined, // force num of rows in the grid cols: undefined, // force num of columns in the grid position: function position(node) {}, // returns { row, col } for element sort: undefined, // a sorting function to order the nodes; e.g. function(a, b){ return a.data('weight') - b.data('weight') } animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function GridLayout(options) { this.options = extend({}, defaults$3, options); } GridLayout.prototype.run = function () { var params = this.options; var options = params; var cy = params.cy; var eles = options.eles; var nodes = eles.nodes().not(':parent'); if (options.sort) { nodes = nodes.sort(options.sort); } var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); if (bb.h === 0 || bb.w === 0) { eles.nodes().layoutPositions(this, options, function (ele) { return { x: bb.x1, y: bb.y1 }; }); } else { // width/height * splits^2 = cells where splits is number of times to split width var cells = nodes.size(); var splits = Math.sqrt(cells * bb.h / bb.w); var rows = Math.round(splits); var cols = Math.round(bb.w / bb.h * splits); var small = function small(val) { if (val == null) { return Math.min(rows, cols); } else { var min = Math.min(rows, cols); if (min == rows) { rows = val; } else { cols = val; } } }; var large = function large(val) { if (val == null) { return Math.max(rows, cols); } else { var max = Math.max(rows, cols); if (max == rows) { rows = val; } else { cols = val; } } }; var oRows = options.rows; var oCols = options.cols != null ? options.cols : options.columns; // if rows or columns were set in options, use those values if (oRows != null && oCols != null) { rows = oRows; cols = oCols; } else if (oRows != null && oCols == null) { rows = oRows; cols = Math.ceil(cells / rows); } else if (oRows == null && oCols != null) { cols = oCols; rows = Math.ceil(cells / cols); } // otherwise use the automatic values and adjust accordingly // if rounding was up, see if we can reduce rows or columns else if (cols * rows > cells) { var sm = small(); var lg = large(); // reducing the small side takes away the most cells, so try it first if ((sm - 1) * lg >= cells) { small(sm - 1); } else if ((lg - 1) * sm >= cells) { large(lg - 1); } } else { // if rounding was too low, add rows or columns while (cols * rows < cells) { var _sm = small(); var _lg = large(); // try to add to larger side first (adds less in multiplication) if ((_lg + 1) * _sm >= cells) { large(_lg + 1); } else { small(_sm + 1); } } } var cellWidth = bb.w / cols; var cellHeight = bb.h / rows; if (options.condense) { cellWidth = 0; cellHeight = 0; } if (options.avoidOverlap) { for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; var pos = node._private.position; if (pos.x == null || pos.y == null) { // for bb pos.x = 0; pos.y = 0; } var nbb = node.layoutDimensions(options); var p = options.avoidOverlapPadding; var w = nbb.w + p; var h = nbb.h + p; cellWidth = Math.max(cellWidth, w); cellHeight = Math.max(cellHeight, h); } } var cellUsed = {}; // e.g. 'c-0-2' => true var used = function used(row, col) { return cellUsed['c-' + row + '-' + col] ? true : false; }; var use = function use(row, col) { cellUsed['c-' + row + '-' + col] = true; }; // to keep track of current cell position var row = 0; var col = 0; var moveToNextCell = function moveToNextCell() { col++; if (col >= cols) { col = 0; row++; } }; // get a cache of all the manual positions var id2manPos = {}; for (var _i = 0; _i < nodes.length; _i++) { var _node = nodes[_i]; var rcPos = options.position(_node); if (rcPos && (rcPos.row !== undefined || rcPos.col !== undefined)) { // must have at least row or col def'd var _pos = { row: rcPos.row, col: rcPos.col }; if (_pos.col === undefined) { // find unused col _pos.col = 0; while (used(_pos.row, _pos.col)) { _pos.col++; } } else if (_pos.row === undefined) { // find unused row _pos.row = 0; while (used(_pos.row, _pos.col)) { _pos.row++; } } id2manPos[_node.id()] = _pos; use(_pos.row, _pos.col); } } var getPos = function getPos(element, i) { var x, y; if (element.locked() || element.isParent()) { return false; } // see if we have a manual position set var rcPos = id2manPos[element.id()]; if (rcPos) { x = rcPos.col * cellWidth + cellWidth / 2 + bb.x1; y = rcPos.row * cellHeight + cellHeight / 2 + bb.y1; } else { // otherwise set automatically while (used(row, col)) { moveToNextCell(); } x = col * cellWidth + cellWidth / 2 + bb.x1; y = row * cellHeight + cellHeight / 2 + bb.y1; use(row, col); moveToNextCell(); } return { x: x, y: y }; }; nodes.layoutPositions(this, options, getPos); } return this; // chaining }; // default layout options var defaults$2 = { ready: function ready() {}, // on layoutready stop: function stop() {} // on layoutstop }; // constructor // options : object containing layout options function NullLayout(options) { this.options = extend({}, defaults$2, options); } // runs the layout NullLayout.prototype.run = function () { var options = this.options; var eles = options.eles; // elements to consider in the layout var layout = this; // cy is automatically populated for us in the constructor // (disable eslint for next line as this serves as example layout code to external developers) // eslint-disable-next-line no-unused-vars options.cy; layout.emit('layoutstart'); // puts all nodes at (0, 0) // n.b. most layouts would use layoutPositions(), instead of positions() and manual events eles.nodes().positions(function () { return { x: 0, y: 0 }; }); // trigger layoutready when each node has had its position set at least once layout.one('layoutready', options.ready); layout.emit('layoutready'); // trigger layoutstop when the layout stops (e.g. finishes) layout.one('layoutstop', options.stop); layout.emit('layoutstop'); return this; // chaining }; // called on continuous layouts to stop them before they finish NullLayout.prototype.stop = function () { return this; // chaining }; var defaults$1 = { positions: undefined, // map of (node id) => (position obj); or function(node){ return somPos; } zoom: undefined, // the zoom level to set (prob want fit = false if set) pan: undefined, // the pan level to set (prob want fit = false if set) fit: true, // whether to fit to viewport padding: 30, // padding on fit spacingFactor: undefined, // Applies a multiplicative factor (>0) to expand or compress the overall area that the nodes take up animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function PresetLayout(options) { this.options = extend({}, defaults$1, options); } PresetLayout.prototype.run = function () { var options = this.options; var eles = options.eles; var nodes = eles.nodes(); var posIsFn = fn$6(options.positions); function getPosition(node) { if (options.positions == null) { return copyPosition(node.position()); } if (posIsFn) { return options.positions(node); } var pos = options.positions[node._private.data.id]; if (pos == null) { return null; } return pos; } nodes.layoutPositions(this, options, function (node, i) { var position = getPosition(node); if (node.locked() || position == null) { return false; } return position; }); return this; // chaining }; var defaults = { fit: true, // whether to fit to viewport padding: 30, // fit padding boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function RandomLayout(options) { this.options = extend({}, defaults, options); } RandomLayout.prototype.run = function () { var options = this.options; var cy = options.cy; var eles = options.eles; var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); var getPos = function getPos(node, i) { return { x: bb.x1 + Math.round(Math.random() * bb.w), y: bb.y1 + Math.round(Math.random() * bb.h) }; }; eles.nodes().layoutPositions(this, options, getPos); return this; // chaining }; var layout = [{ name: 'breadthfirst', impl: BreadthFirstLayout }, { name: 'circle', impl: CircleLayout }, { name: 'concentric', impl: ConcentricLayout }, { name: 'cose', impl: CoseLayout }, { name: 'grid', impl: GridLayout }, { name: 'null', impl: NullLayout }, { name: 'preset', impl: PresetLayout }, { name: 'random', impl: RandomLayout }]; function NullRenderer(options) { this.options = options; this.notifications = 0; // for testing } var noop = function noop() {}; var throwImgErr = function throwImgErr() { throw new Error('A headless instance can not render images'); }; NullRenderer.prototype = { recalculateRenderedStyle: noop, notify: function notify() { this.notifications++; }, init: noop, isHeadless: function isHeadless() { return true; }, png: throwImgErr, jpg: throwImgErr }; var BRp$f = {}; BRp$f.arrowShapeWidth = 0.3; BRp$f.registerArrowShapes = function () { var arrowShapes = this.arrowShapes = {}; var renderer = this; // Contract for arrow shapes: // 0, 0 is arrow tip // (0, 1) is direction towards node // (1, 0) is right // // functional api: // collide: check x, y in shape // roughCollide: called before collide, no false negatives // draw: draw // spacing: dist(arrowTip, nodeBoundary) // gap: dist(edgeTip, nodeBoundary), edgeTip may != arrowTip var bbCollide = function bbCollide(x, y, size, angle, translation, edgeWidth, padding) { var x1 = translation.x - size / 2 - padding; var x2 = translation.x + size / 2 + padding; var y1 = translation.y - size / 2 - padding; var y2 = translation.y + size / 2 + padding; var inside = x1 <= x && x <= x2 && y1 <= y && y <= y2; return inside; }; var transform = function transform(x, y, size, angle, translation) { var xRotated = x * Math.cos(angle) - y * Math.sin(angle); var yRotated = x * Math.sin(angle) + y * Math.cos(angle); var xScaled = xRotated * size; var yScaled = yRotated * size; var xTranslated = xScaled + translation.x; var yTranslated = yScaled + translation.y; return { x: xTranslated, y: yTranslated }; }; var transformPoints = function transformPoints(pts, size, angle, translation) { var retPts = []; for (var i = 0; i < pts.length; i += 2) { var x = pts[i]; var y = pts[i + 1]; retPts.push(transform(x, y, size, angle, translation)); } return retPts; }; var pointsToArr = function pointsToArr(pts) { var ret = []; for (var i = 0; i < pts.length; i++) { var p = pts[i]; ret.push(p.x, p.y); } return ret; }; var standardGap = function standardGap(edge) { return edge.pstyle('width').pfValue * edge.pstyle('arrow-scale').pfValue * 2; }; var defineArrowShape = function defineArrowShape(name, defn) { if (string(defn)) { defn = arrowShapes[defn]; } arrowShapes[name] = extend({ name: name, points: [-0.15, -0.3, 0.15, -0.3, 0.15, 0.3, -0.15, 0.3], collide: function collide(x, y, size, angle, translation, padding) { var points = pointsToArr(transformPoints(this.points, size + 2 * padding, angle, translation)); var inside = pointInsidePolygonPoints(x, y, points); return inside; }, roughCollide: bbCollide, draw: function draw(context, size, angle, translation) { var points = transformPoints(this.points, size, angle, translation); renderer.arrowShapeImpl('polygon')(context, points); }, spacing: function spacing(edge) { return 0; }, gap: standardGap }, defn); }; defineArrowShape('none', { collide: falsify, roughCollide: falsify, draw: noop$1, spacing: zeroify, gap: zeroify }); defineArrowShape('triangle', { points: [-0.15, -0.3, 0, 0, 0.15, -0.3] }); defineArrowShape('arrow', 'triangle'); defineArrowShape('triangle-backcurve', { points: arrowShapes['triangle'].points, controlPoint: [0, -0.15], roughCollide: bbCollide, draw: function draw(context, size, angle, translation, edgeWidth) { var ptsTrans = transformPoints(this.points, size, angle, translation); var ctrlPt = this.controlPoint; var ctrlPtTrans = transform(ctrlPt[0], ctrlPt[1], size, angle, translation); renderer.arrowShapeImpl(this.name)(context, ptsTrans, ctrlPtTrans); }, gap: function gap(edge) { return standardGap(edge) * 0.8; } }); defineArrowShape('triangle-tee', { points: [0, 0, 0.15, -0.3, -0.15, -0.3, 0, 0], pointsTee: [-0.15, -0.4, -0.15, -0.5, 0.15, -0.5, 0.15, -0.4], collide: function collide(x, y, size, angle, translation, edgeWidth, padding) { var triPts = pointsToArr(transformPoints(this.points, size + 2 * padding, angle, translation)); var teePts = pointsToArr(transformPoints(this.pointsTee, size + 2 * padding, angle, translation)); var inside = pointInsidePolygonPoints(x, y, triPts) || pointInsidePolygonPoints(x, y, teePts); return inside; }, draw: function draw(context, size, angle, translation, edgeWidth) { var triPts = transformPoints(this.points, size, angle, translation); var teePts = transformPoints(this.pointsTee, size, angle, translation); renderer.arrowShapeImpl(this.name)(context, triPts, teePts); } }); defineArrowShape('circle-triangle', { radius: 0.15, pointsTr: [0, -0.15, 0.15, -0.45, -0.15, -0.45, 0, -0.15], collide: function collide(x, y, size, angle, translation, edgeWidth, padding) { var t = translation; var circleInside = Math.pow(t.x - x, 2) + Math.pow(t.y - y, 2) <= Math.pow((size + 2 * padding) * this.radius, 2); var triPts = pointsToArr(transformPoints(this.points, size + 2 * padding, angle, translation)); return pointInsidePolygonPoints(x, y, triPts) || circleInside; }, draw: function draw(context, size, angle, translation, edgeWidth) { var triPts = transformPoints(this.pointsTr, size, angle, translation); renderer.arrowShapeImpl(this.name)(context, triPts, translation.x, translation.y, this.radius * size); }, spacing: function spacing(edge) { return renderer.getArrowWidth(edge.pstyle('width').pfValue, edge.pstyle('arrow-scale').value) * this.radius; } }); defineArrowShape('triangle-cross', { points: [0, 0, 0.15, -0.3, -0.15, -0.3, 0, 0], baseCrossLinePts: [-0.15, -0.4, // first half of the rectangle -0.15, -0.4, 0.15, -0.4, // second half of the rectangle 0.15, -0.4], crossLinePts: function crossLinePts(size, edgeWidth) { // shift points so that the distance between the cross points matches edge width var p = this.baseCrossLinePts.slice(); var shiftFactor = edgeWidth / size; var y0 = 3; var y1 = 5; p[y0] = p[y0] - shiftFactor; p[y1] = p[y1] - shiftFactor; return p; }, collide: function collide(x, y, size, angle, translation, edgeWidth, padding) { var triPts = pointsToArr(transformPoints(this.points, size + 2 * padding, angle, translation)); var teePts = pointsToArr(transformPoints(this.crossLinePts(size, edgeWidth), size + 2 * padding, angle, translation)); var inside = pointInsidePolygonPoints(x, y, triPts) || pointInsidePolygonPoints(x, y, teePts); return inside; }, draw: function draw(context, size, angle, translation, edgeWidth) { var triPts = transformPoints(this.points, size, angle, translation); var crossLinePts = transformPoints(this.crossLinePts(size, edgeWidth), size, angle, translation); renderer.arrowShapeImpl(this.name)(context, triPts, crossLinePts); } }); defineArrowShape('vee', { points: [-0.15, -0.3, 0, 0, 0.15, -0.3, 0, -0.15], gap: function gap(edge) { return standardGap(edge) * 0.525; } }); defineArrowShape('circle', { radius: 0.15, collide: function collide(x, y, size, angle, translation, edgeWidth, padding) { var t = translation; var inside = Math.pow(t.x - x, 2) + Math.pow(t.y - y, 2) <= Math.pow((size + 2 * padding) * this.radius, 2); return inside; }, draw: function draw(context, size, angle, translation, edgeWidth) { renderer.arrowShapeImpl(this.name)(context, translation.x, translation.y, this.radius * size); }, spacing: function spacing(edge) { return renderer.getArrowWidth(edge.pstyle('width').pfValue, edge.pstyle('arrow-scale').value) * this.radius; } }); defineArrowShape('tee', { points: [-0.15, 0, -0.15, -0.1, 0.15, -0.1, 0.15, 0], spacing: function spacing(edge) { return 1; }, gap: function gap(edge) { return 1; } }); defineArrowShape('square', { points: [-0.15, 0.00, 0.15, 0.00, 0.15, -0.3, -0.15, -0.3] }); defineArrowShape('diamond', { points: [-0.15, -0.15, 0, -0.3, 0.15, -0.15, 0, 0], gap: function gap(edge) { return edge.pstyle('width').pfValue * edge.pstyle('arrow-scale').value; } }); defineArrowShape('chevron', { points: [0, 0, -0.15, -0.15, -0.1, -0.2, 0, -0.1, 0.1, -0.2, 0.15, -0.15], gap: function gap(edge) { return 0.95 * edge.pstyle('width').pfValue * edge.pstyle('arrow-scale').value; } }); }; var BRp$e = {}; // Project mouse BRp$e.projectIntoViewport = function (clientX, clientY) { var cy = this.cy; var offsets = this.findContainerClientCoords(); var offsetLeft = offsets[0]; var offsetTop = offsets[1]; var scale = offsets[4]; var pan = cy.pan(); var zoom = cy.zoom(); var x = ((clientX - offsetLeft) / scale - pan.x) / zoom; var y = ((clientY - offsetTop) / scale - pan.y) / zoom; return [x, y]; }; BRp$e.findContainerClientCoords = function () { if (this.containerBB) { return this.containerBB; } var container = this.container; var rect = container.getBoundingClientRect(); var style = this.cy.window().getComputedStyle(container); var styleValue = function styleValue(name) { return parseFloat(style.getPropertyValue(name)); }; var padding = { left: styleValue('padding-left'), right: styleValue('padding-right'), top: styleValue('padding-top'), bottom: styleValue('padding-bottom') }; var border = { left: styleValue('border-left-width'), right: styleValue('border-right-width'), top: styleValue('border-top-width'), bottom: styleValue('border-bottom-width') }; var clientWidth = container.clientWidth; var clientHeight = container.clientHeight; var paddingHor = padding.left + padding.right; var paddingVer = padding.top + padding.bottom; var borderHor = border.left + border.right; var scale = rect.width / (clientWidth + borderHor); var unscaledW = clientWidth - paddingHor; var unscaledH = clientHeight - paddingVer; var left = rect.left + padding.left + border.left; var top = rect.top + padding.top + border.top; return this.containerBB = [left, top, unscaledW, unscaledH, scale]; }; BRp$e.invalidateContainerClientCoordsCache = function () { this.containerBB = null; }; BRp$e.findNearestElement = function (x, y, interactiveElementsOnly, isTouch) { return this.findNearestElements(x, y, interactiveElementsOnly, isTouch)[0]; }; BRp$e.findNearestElements = function (x, y, interactiveElementsOnly, isTouch) { var self = this; var r = this; var eles = r.getCachedZSortedEles(); var near = []; // 1 node max, 1 edge max var zoom = r.cy.zoom(); var hasCompounds = r.cy.hasCompoundNodes(); var edgeThreshold = (isTouch ? 24 : 8) / zoom; var nodeThreshold = (isTouch ? 8 : 2) / zoom; var labelThreshold = (isTouch ? 8 : 2) / zoom; var minSqDist = Infinity; var nearEdge; var nearNode; if (interactiveElementsOnly) { eles = eles.interactive; } function addEle(ele, sqDist) { if (ele.isNode()) { if (nearNode) { return; // can't replace node } else { nearNode = ele; near.push(ele); } } if (ele.isEdge() && (sqDist == null || sqDist < minSqDist)) { if (nearEdge) { // then replace existing edge // can replace only if same z-index if (nearEdge.pstyle('z-compound-depth').value === ele.pstyle('z-compound-depth').value && nearEdge.pstyle('z-compound-depth').value === ele.pstyle('z-compound-depth').value) { for (var i = 0; i < near.length; i++) { if (near[i].isEdge()) { near[i] = ele; nearEdge = ele; minSqDist = sqDist != null ? sqDist : minSqDist; break; } } } } else { near.push(ele); nearEdge = ele; minSqDist = sqDist != null ? sqDist : minSqDist; } } } function checkNode(node) { var width = node.outerWidth() + 2 * nodeThreshold; var height = node.outerHeight() + 2 * nodeThreshold; var hw = width / 2; var hh = height / 2; var pos = node.position(); var cornerRadius = node.pstyle('corner-radius').value === 'auto' ? 'auto' : node.pstyle('corner-radius').pfValue; var rs = node._private.rscratch; if (pos.x - hw <= x && x <= pos.x + hw // bb check x && pos.y - hh <= y && y <= pos.y + hh // bb check y ) { var shape = r.nodeShapes[self.getNodeShape(node)]; if (shape.checkPoint(x, y, 0, width, height, pos.x, pos.y, cornerRadius, rs)) { addEle(node, 0); return true; } } } function checkEdge(edge) { var _p = edge._private; var rs = _p.rscratch; var styleWidth = edge.pstyle('width').pfValue; var scale = edge.pstyle('arrow-scale').value; var width = styleWidth / 2 + edgeThreshold; // more like a distance radius from centre var widthSq = width * width; var width2 = width * 2; var src = _p.source; var tgt = _p.target; var sqDist; if (rs.edgeType === 'segments' || rs.edgeType === 'straight' || rs.edgeType === 'haystack') { var pts = rs.allpts; for (var i = 0; i + 3 < pts.length; i += 2) { if (inLineVicinity(x, y, pts[i], pts[i + 1], pts[i + 2], pts[i + 3], width2) && widthSq > (sqDist = sqdistToFiniteLine(x, y, pts[i], pts[i + 1], pts[i + 2], pts[i + 3]))) { addEle(edge, sqDist); return true; } } } else if (rs.edgeType === 'bezier' || rs.edgeType === 'multibezier' || rs.edgeType === 'self' || rs.edgeType === 'compound') { var pts = rs.allpts; for (var i = 0; i + 5 < rs.allpts.length; i += 4) { if (inBezierVicinity(x, y, pts[i], pts[i + 1], pts[i + 2], pts[i + 3], pts[i + 4], pts[i + 5], width2) && widthSq > (sqDist = sqdistToQuadraticBezier(x, y, pts[i], pts[i + 1], pts[i + 2], pts[i + 3], pts[i + 4], pts[i + 5]))) { addEle(edge, sqDist); return true; } } } // if we're close to the edge but didn't hit it, maybe we hit its arrows var src = src || _p.source; var tgt = tgt || _p.target; var arSize = self.getArrowWidth(styleWidth, scale); var arrows = [{ name: 'source', x: rs.arrowStartX, y: rs.arrowStartY, angle: rs.srcArrowAngle }, { name: 'target', x: rs.arrowEndX, y: rs.arrowEndY, angle: rs.tgtArrowAngle }, { name: 'mid-source', x: rs.midX, y: rs.midY, angle: rs.midsrcArrowAngle }, { name: 'mid-target', x: rs.midX, y: rs.midY, angle: rs.midtgtArrowAngle }]; for (var i = 0; i < arrows.length; i++) { var ar = arrows[i]; var shape = r.arrowShapes[edge.pstyle(ar.name + '-arrow-shape').value]; var edgeWidth = edge.pstyle('width').pfValue; if (shape.roughCollide(x, y, arSize, ar.angle, { x: ar.x, y: ar.y }, edgeWidth, edgeThreshold) && shape.collide(x, y, arSize, ar.angle, { x: ar.x, y: ar.y }, edgeWidth, edgeThreshold)) { addEle(edge); return true; } } // for compound graphs, hitting edge may actually want a connected node instead (b/c edge may have greater z-index precedence) if (hasCompounds && near.length > 0) { checkNode(src); checkNode(tgt); } } function preprop(obj, name, pre) { return getPrefixedProperty(obj, name, pre); } function checkLabel(ele, prefix) { var _p = ele._private; var th = labelThreshold; var prefixDash; if (prefix) { prefixDash = prefix + '-'; } else { prefixDash = ''; } ele.boundingBox(); var bb = _p.labelBounds[prefix || 'main']; var text = ele.pstyle(prefixDash + 'label').value; var eventsEnabled = ele.pstyle('text-events').strValue === 'yes'; if (!eventsEnabled || !text) { return; } var lx = preprop(_p.rscratch, 'labelX', prefix); var ly = preprop(_p.rscratch, 'labelY', prefix); var theta = preprop(_p.rscratch, 'labelAngle', prefix); var ox = ele.pstyle(prefixDash + 'text-margin-x').pfValue; var oy = ele.pstyle(prefixDash + 'text-margin-y').pfValue; var lx1 = bb.x1 - th - ox; // (-ox, -oy) as bb already includes margin var lx2 = bb.x2 + th - ox; // and rotation is about (lx, ly) var ly1 = bb.y1 - th - oy; var ly2 = bb.y2 + th - oy; if (theta) { var cos = Math.cos(theta); var sin = Math.sin(theta); var rotate = function rotate(x, y) { x = x - lx; y = y - ly; return { x: x * cos - y * sin + lx, y: x * sin + y * cos + ly }; }; var px1y1 = rotate(lx1, ly1); var px1y2 = rotate(lx1, ly2); var px2y1 = rotate(lx2, ly1); var px2y2 = rotate(lx2, ly2); var points = [ // with the margin added after the rotation is applied px1y1.x + ox, px1y1.y + oy, px2y1.x + ox, px2y1.y + oy, px2y2.x + ox, px2y2.y + oy, px1y2.x + ox, px1y2.y + oy]; if (pointInsidePolygonPoints(x, y, points)) { addEle(ele); return true; } } else { // do a cheaper bb check if (inBoundingBox(bb, x, y)) { addEle(ele); return true; } } } for (var i = eles.length - 1; i >= 0; i--) { // reverse order for precedence var ele = eles[i]; if (ele.isNode()) { checkNode(ele) || checkLabel(ele); } else { // then edge checkEdge(ele) || checkLabel(ele) || checkLabel(ele, 'source') || checkLabel(ele, 'target'); } } return near; }; // 'Give me everything from this box' BRp$e.getAllInBox = function (x1, y1, x2, y2) { var eles = this.getCachedZSortedEles().interactive; var box = []; var x1c = Math.min(x1, x2); var x2c = Math.max(x1, x2); var y1c = Math.min(y1, y2); var y2c = Math.max(y1, y2); x1 = x1c; x2 = x2c; y1 = y1c; y2 = y2c; var boxBb = makeBoundingBox({ x1: x1, y1: y1, x2: x2, y2: y2 }); for (var e = 0; e < eles.length; e++) { var ele = eles[e]; if (ele.isNode()) { var node = ele; var nodeBb = node.boundingBox({ includeNodes: true, includeEdges: false, includeLabels: false }); if (boundingBoxesIntersect(boxBb, nodeBb) && !boundingBoxInBoundingBox(nodeBb, boxBb)) { box.push(node); } } else { var edge = ele; var _p = edge._private; var rs = _p.rscratch; if (rs.startX != null && rs.startY != null && !inBoundingBox(boxBb, rs.startX, rs.startY)) { continue; } if (rs.endX != null && rs.endY != null && !inBoundingBox(boxBb, rs.endX, rs.endY)) { continue; } if (rs.edgeType === 'bezier' || rs.edgeType === 'multibezier' || rs.edgeType === 'self' || rs.edgeType === 'compound' || rs.edgeType === 'segments' || rs.edgeType === 'haystack') { var pts = _p.rstyle.bezierPts || _p.rstyle.linePts || _p.rstyle.haystackPts; var allInside = true; for (var i = 0; i < pts.length; i++) { if (!pointInBoundingBox(boxBb, pts[i])) { allInside = false; break; } } if (allInside) { box.push(edge); } } else if (rs.edgeType === 'haystack' || rs.edgeType === 'straight') { box.push(edge); } } } return box; }; var BRp$d = {}; BRp$d.calculateArrowAngles = function (edge) { var rs = edge._private.rscratch; var isHaystack = rs.edgeType === 'haystack'; var isBezier = rs.edgeType === 'bezier'; var isMultibezier = rs.edgeType === 'multibezier'; var isSegments = rs.edgeType === 'segments'; var isCompound = rs.edgeType === 'compound'; var isSelf = rs.edgeType === 'self'; // Displacement gives direction for arrowhead orientation var dispX, dispY; var startX, startY, endX, endY, midX, midY; if (isHaystack) { startX = rs.haystackPts[0]; startY = rs.haystackPts[1]; endX = rs.haystackPts[2]; endY = rs.haystackPts[3]; } else { startX = rs.arrowStartX; startY = rs.arrowStartY; endX = rs.arrowEndX; endY = rs.arrowEndY; } midX = rs.midX; midY = rs.midY; // source // if (isSegments) { dispX = startX - rs.segpts[0]; dispY = startY - rs.segpts[1]; } else if (isMultibezier || isCompound || isSelf || isBezier) { var pts = rs.allpts; var bX = qbezierAt(pts[0], pts[2], pts[4], 0.1); var bY = qbezierAt(pts[1], pts[3], pts[5], 0.1); dispX = startX - bX; dispY = startY - bY; } else { dispX = startX - midX; dispY = startY - midY; } rs.srcArrowAngle = getAngleFromDisp(dispX, dispY); // mid target // var midX = rs.midX; var midY = rs.midY; if (isHaystack) { midX = (startX + endX) / 2; midY = (startY + endY) / 2; } dispX = endX - startX; dispY = endY - startY; if (isSegments) { var pts = rs.allpts; if (pts.length / 2 % 2 === 0) { var i2 = pts.length / 2; var i1 = i2 - 2; dispX = pts[i2] - pts[i1]; dispY = pts[i2 + 1] - pts[i1 + 1]; } else if (rs.isRound) { dispX = rs.midVector[1]; dispY = -rs.midVector[0]; } else { var i2 = pts.length / 2 - 1; var i1 = i2 - 2; dispX = pts[i2] - pts[i1]; dispY = pts[i2 + 1] - pts[i1 + 1]; } } else if (isMultibezier || isCompound || isSelf) { var pts = rs.allpts; var cpts = rs.ctrlpts; var bp0x, bp0y; var bp1x, bp1y; if (cpts.length / 2 % 2 === 0) { var p0 = pts.length / 2 - 1; // startpt var ic = p0 + 2; var p1 = ic + 2; bp0x = qbezierAt(pts[p0], pts[ic], pts[p1], 0.0); bp0y = qbezierAt(pts[p0 + 1], pts[ic + 1], pts[p1 + 1], 0.0); bp1x = qbezierAt(pts[p0], pts[ic], pts[p1], 0.0001); bp1y = qbezierAt(pts[p0 + 1], pts[ic + 1], pts[p1 + 1], 0.0001); } else { var ic = pts.length / 2 - 1; // ctrpt var p0 = ic - 2; // startpt var p1 = ic + 2; // endpt bp0x = qbezierAt(pts[p0], pts[ic], pts[p1], 0.4999); bp0y = qbezierAt(pts[p0 + 1], pts[ic + 1], pts[p1 + 1], 0.4999); bp1x = qbezierAt(pts[p0], pts[ic], pts[p1], 0.5); bp1y = qbezierAt(pts[p0 + 1], pts[ic + 1], pts[p1 + 1], 0.5); } dispX = bp1x - bp0x; dispY = bp1y - bp0y; } rs.midtgtArrowAngle = getAngleFromDisp(dispX, dispY); rs.midDispX = dispX; rs.midDispY = dispY; // mid source // dispX *= -1; dispY *= -1; if (isSegments) { var pts = rs.allpts; if (pts.length / 2 % 2 === 0) ; else if (!rs.isRound) { var i2 = pts.length / 2 - 1; var i3 = i2 + 2; dispX = -(pts[i3] - pts[i2]); dispY = -(pts[i3 + 1] - pts[i2 + 1]); } } rs.midsrcArrowAngle = getAngleFromDisp(dispX, dispY); // target // if (isSegments) { dispX = endX - rs.segpts[rs.segpts.length - 2]; dispY = endY - rs.segpts[rs.segpts.length - 1]; } else if (isMultibezier || isCompound || isSelf || isBezier) { var pts = rs.allpts; var l = pts.length; var bX = qbezierAt(pts[l - 6], pts[l - 4], pts[l - 2], 0.9); var bY = qbezierAt(pts[l - 5], pts[l - 3], pts[l - 1], 0.9); dispX = endX - bX; dispY = endY - bY; } else { dispX = endX - midX; dispY = endY - midY; } rs.tgtArrowAngle = getAngleFromDisp(dispX, dispY); }; BRp$d.getArrowWidth = BRp$d.getArrowHeight = function (edgeWidth, scale) { var cache = this.arrowWidthCache = this.arrowWidthCache || {}; var cachedVal = cache[edgeWidth + ', ' + scale]; if (cachedVal) { return cachedVal; } cachedVal = Math.max(Math.pow(edgeWidth * 13.37, 0.9), 29) * scale; cache[edgeWidth + ', ' + scale] = cachedVal; return cachedVal; }; /** * Explained by Blindman67 at https://stackoverflow.com/a/44856925/11028828 */ // Declare reused variable to avoid reallocating variables every time the function is called var x, y, v1 = {}, v2 = {}, sinA, sinA90, radDirection, drawDirection, angle, halfAngle, cRadius, lenOut, radius, limit; var startX, startY, stopX, stopY; var lastPoint; // convert 2 points into vector form, polar form, and normalised var asVec = function asVec(p, pp, v) { v.x = pp.x - p.x; v.y = pp.y - p.y; v.len = Math.sqrt(v.x * v.x + v.y * v.y); v.nx = v.x / v.len; v.ny = v.y / v.len; v.ang = Math.atan2(v.ny, v.nx); }; var invertVec = function invertVec(originalV, invertedV) { invertedV.x = originalV.x * -1; invertedV.y = originalV.y * -1; invertedV.nx = originalV.nx * -1; invertedV.ny = originalV.ny * -1; invertedV.ang = originalV.ang > 0 ? -(Math.PI - originalV.ang) : Math.PI + originalV.ang; }; var calcCornerArc = function calcCornerArc(previousPoint, currentPoint, nextPoint, radiusMax, isArcRadius) { //----------------------------------------- // Part 1 previousPoint !== lastPoint ? asVec(currentPoint, previousPoint, v1) : invertVec(v2, v1); // Avoid recalculating vec if it is the invert of the last one calculated asVec(currentPoint, nextPoint, v2); sinA = v1.nx * v2.ny - v1.ny * v2.nx; sinA90 = v1.nx * v2.nx - v1.ny * -v2.ny; angle = Math.asin(Math.max(-1, Math.min(1, sinA))); if (Math.abs(angle) < 1e-6) { x = currentPoint.x; y = currentPoint.y; cRadius = radius = 0; return; } //----------------------------------------- radDirection = 1; drawDirection = false; if (sinA90 < 0) { if (angle < 0) { angle = Math.PI + angle; } else { angle = Math.PI - angle; radDirection = -1; drawDirection = true; } } else { if (angle > 0) { radDirection = -1; drawDirection = true; } } if (currentPoint.radius !== undefined) { radius = currentPoint.radius; } else { radius = radiusMax; } //----------------------------------------- // Part 2 halfAngle = angle / 2; //----------------------------------------- limit = Math.min(v1.len / 2, v2.len / 2); if (isArcRadius) { //----------------------------------------- // Part 3 lenOut = Math.abs(Math.cos(halfAngle) * radius / Math.sin(halfAngle)); //----------------------------------------- // Special part A if (lenOut > limit) { lenOut = limit; cRadius = Math.abs(lenOut * Math.sin(halfAngle) / Math.cos(halfAngle)); } else { cRadius = radius; } } else { lenOut = Math.min(limit, radius); cRadius = Math.abs(lenOut * Math.sin(halfAngle) / Math.cos(halfAngle)); } //----------------------------------------- //----------------------------------------- // Part 4 stopX = currentPoint.x + v2.nx * lenOut; stopY = currentPoint.y + v2.ny * lenOut; //----------------------------------------- // Part 5 x = stopX - v2.ny * cRadius * radDirection; y = stopY + v2.nx * cRadius * radDirection; //----------------------------------------- // Additional Part : calculate start point E startX = currentPoint.x + v1.nx * lenOut; startY = currentPoint.y + v1.ny * lenOut; // Save last point to avoid recalculating vector when not needed lastPoint = currentPoint; }; /** * Draw corner provided by {@link getRoundCorner} * * @param ctx :CanvasRenderingContext2D * @param roundCorner {{cx:number, cy:number, radius:number, endAngle: number, startAngle: number, counterClockwise: boolean}} */ function drawPreparedRoundCorner(ctx, roundCorner) { if (roundCorner.radius === 0) ctx.lineTo(roundCorner.cx, roundCorner.cy);else ctx.arc(roundCorner.cx, roundCorner.cy, roundCorner.radius, roundCorner.startAngle, roundCorner.endAngle, roundCorner.counterClockwise); } /** * Get round corner from a point and its previous and next neighbours in a path * * @param previousPoint {{x: number, y:number, radius: number?}} * @param currentPoint {{x: number, y:number, radius: number?}} * @param nextPoint {{x: number, y:number, radius: number?}} * @param radiusMax :number * @param isArcRadius :boolean * @return {{ * cx:number, cy:number, radius:number, * startX:number, startY:number, * stopX:number, stopY: number, * endAngle: number, startAngle: number, counterClockwise: boolean * }} */ function getRoundCorner(previousPoint, currentPoint, nextPoint, radiusMax) { var isArcRadius = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true; if (radiusMax === 0 || currentPoint.radius === 0) return { cx: currentPoint.x, cy: currentPoint.y, radius: 0, startX: currentPoint.x, startY: currentPoint.y, stopX: currentPoint.x, stopY: currentPoint.y, startAngle: undefined, endAngle: undefined, counterClockwise: undefined }; calcCornerArc(previousPoint, currentPoint, nextPoint, radiusMax, isArcRadius); return { cx: x, cy: y, radius: cRadius, startX: startX, startY: startY, stopX: stopX, stopY: stopY, startAngle: v1.ang + Math.PI / 2 * radDirection, endAngle: v2.ang - Math.PI / 2 * radDirection, counterClockwise: drawDirection }; } var BRp$c = {}; BRp$c.findMidptPtsEtc = function (edge, pairInfo) { var posPts = pairInfo.posPts, intersectionPts = pairInfo.intersectionPts, vectorNormInverse = pairInfo.vectorNormInverse; var midptPts; // n.b. assumes all edges in bezier bundle have same endpoints specified var srcManEndpt = edge.pstyle('source-endpoint'); var tgtManEndpt = edge.pstyle('target-endpoint'); var haveManualEndPts = srcManEndpt.units != null && tgtManEndpt.units != null; var recalcVectorNormInverse = function recalcVectorNormInverse(x1, y1, x2, y2) { var dy = y2 - y1; var dx = x2 - x1; var l = Math.sqrt(dx * dx + dy * dy); return { x: -dy / l, y: dx / l }; }; var edgeDistances = edge.pstyle('edge-distances').value; switch (edgeDistances) { case 'node-position': midptPts = posPts; break; case 'intersection': midptPts = intersectionPts; break; case 'endpoints': { if (haveManualEndPts) { var _this$manualEndptToPx = this.manualEndptToPx(edge.source()[0], srcManEndpt), _this$manualEndptToPx2 = _slicedToArray(_this$manualEndptToPx, 2), x1 = _this$manualEndptToPx2[0], y1 = _this$manualEndptToPx2[1]; var _this$manualEndptToPx3 = this.manualEndptToPx(edge.target()[0], tgtManEndpt), _this$manualEndptToPx4 = _slicedToArray(_this$manualEndptToPx3, 2), x2 = _this$manualEndptToPx4[0], y2 = _this$manualEndptToPx4[1]; var endPts = { x1: x1, y1: y1, x2: x2, y2: y2 }; vectorNormInverse = recalcVectorNormInverse(x1, y1, x2, y2); midptPts = endPts; } else { warn("Edge ".concat(edge.id(), " has edge-distances:endpoints specified without manual endpoints specified via source-endpoint and target-endpoint. Falling back on edge-distances:intersection (default).")); midptPts = intersectionPts; // back to default } break; } } return { midptPts: midptPts, vectorNormInverse: vectorNormInverse }; }; BRp$c.findHaystackPoints = function (edges) { for (var i = 0; i < edges.length; i++) { var edge = edges[i]; var _p = edge._private; var rs = _p.rscratch; if (!rs.haystack) { var angle = Math.random() * 2 * Math.PI; rs.source = { x: Math.cos(angle), y: Math.sin(angle) }; angle = Math.random() * 2 * Math.PI; rs.target = { x: Math.cos(angle), y: Math.sin(angle) }; } var src = _p.source; var tgt = _p.target; var srcPos = src.position(); var tgtPos = tgt.position(); var srcW = src.width(); var tgtW = tgt.width(); var srcH = src.height(); var tgtH = tgt.height(); var radius = edge.pstyle('haystack-radius').value; var halfRadius = radius / 2; // b/c have to half width/height rs.haystackPts = rs.allpts = [rs.source.x * srcW * halfRadius + srcPos.x, rs.source.y * srcH * halfRadius + srcPos.y, rs.target.x * tgtW * halfRadius + tgtPos.x, rs.target.y * tgtH * halfRadius + tgtPos.y]; rs.midX = (rs.allpts[0] + rs.allpts[2]) / 2; rs.midY = (rs.allpts[1] + rs.allpts[3]) / 2; // always override as haystack in case set to different type previously rs.edgeType = 'haystack'; rs.haystack = true; this.storeEdgeProjections(edge); this.calculateArrowAngles(edge); this.recalculateEdgeLabelProjections(edge); this.calculateLabelAngles(edge); } }; BRp$c.findSegmentsPoints = function (edge, pairInfo) { // Segments (multiple straight lines) var rs = edge._private.rscratch; var segmentWs = edge.pstyle('segment-weights'); var segmentDs = edge.pstyle('segment-distances'); var segmentRs = edge.pstyle('segment-radii'); var segmentTs = edge.pstyle('radius-type'); var segmentsN = Math.min(segmentWs.pfValue.length, segmentDs.pfValue.length); var lastRadius = segmentRs.pfValue[segmentRs.pfValue.length - 1]; var lastRadiusType = segmentTs.pfValue[segmentTs.pfValue.length - 1]; rs.edgeType = 'segments'; rs.segpts = []; rs.radii = []; rs.isArcRadius = []; for (var s = 0; s < segmentsN; s++) { var w = segmentWs.pfValue[s]; var d = segmentDs.pfValue[s]; var w1 = 1 - w; var w2 = w; var _this$findMidptPtsEtc = this.findMidptPtsEtc(edge, pairInfo), midptPts = _this$findMidptPtsEtc.midptPts, vectorNormInverse = _this$findMidptPtsEtc.vectorNormInverse; var adjustedMidpt = { x: midptPts.x1 * w1 + midptPts.x2 * w2, y: midptPts.y1 * w1 + midptPts.y2 * w2 }; rs.segpts.push(adjustedMidpt.x + vectorNormInverse.x * d, adjustedMidpt.y + vectorNormInverse.y * d); rs.radii.push(segmentRs.pfValue[s] !== undefined ? segmentRs.pfValue[s] : lastRadius); rs.isArcRadius.push((segmentTs.pfValue[s] !== undefined ? segmentTs.pfValue[s] : lastRadiusType) === 'arc-radius'); } }; BRp$c.findLoopPoints = function (edge, pairInfo, i, edgeIsUnbundled) { // Self-edge var rs = edge._private.rscratch; var dirCounts = pairInfo.dirCounts, srcPos = pairInfo.srcPos; var ctrlptDists = edge.pstyle('control-point-distances'); var ctrlptDist = ctrlptDists ? ctrlptDists.pfValue[0] : undefined; var loopDir = edge.pstyle('loop-direction').pfValue; var loopSwp = edge.pstyle('loop-sweep').pfValue; var stepSize = edge.pstyle('control-point-step-size').pfValue; rs.edgeType = 'self'; var j = i; var loopDist = stepSize; if (edgeIsUnbundled) { j = 0; loopDist = ctrlptDist; } var loopAngle = loopDir - Math.PI / 2; var outAngle = loopAngle - loopSwp / 2; var inAngle = loopAngle + loopSwp / 2; // increase by step size for overlapping loops, keyed on direction and sweep values var dc = String(loopDir + '_' + loopSwp); j = dirCounts[dc] === undefined ? dirCounts[dc] = 0 : ++dirCounts[dc]; rs.ctrlpts = [srcPos.x + Math.cos(outAngle) * 1.4 * loopDist * (j / 3 + 1), srcPos.y + Math.sin(outAngle) * 1.4 * loopDist * (j / 3 + 1), srcPos.x + Math.cos(inAngle) * 1.4 * loopDist * (j / 3 + 1), srcPos.y + Math.sin(inAngle) * 1.4 * loopDist * (j / 3 + 1)]; }; BRp$c.findCompoundLoopPoints = function (edge, pairInfo, i, edgeIsUnbundled) { // Compound edge var rs = edge._private.rscratch; rs.edgeType = 'compound'; var srcPos = pairInfo.srcPos, tgtPos = pairInfo.tgtPos, srcW = pairInfo.srcW, srcH = pairInfo.srcH, tgtW = pairInfo.tgtW, tgtH = pairInfo.tgtH; var stepSize = edge.pstyle('control-point-step-size').pfValue; var ctrlptDists = edge.pstyle('control-point-distances'); var ctrlptDist = ctrlptDists ? ctrlptDists.pfValue[0] : undefined; var j = i; var loopDist = stepSize; if (edgeIsUnbundled) { j = 0; loopDist = ctrlptDist; } var loopW = 50; var loopaPos = { x: srcPos.x - srcW / 2, y: srcPos.y - srcH / 2 }; var loopbPos = { x: tgtPos.x - tgtW / 2, y: tgtPos.y - tgtH / 2 }; var loopPos = { x: Math.min(loopaPos.x, loopbPos.x), y: Math.min(loopaPos.y, loopbPos.y) }; // avoids cases with impossible beziers var minCompoundStretch = 0.5; var compoundStretchA = Math.max(minCompoundStretch, Math.log(srcW * 0.01)); var compoundStretchB = Math.max(minCompoundStretch, Math.log(tgtW * 0.01)); rs.ctrlpts = [loopPos.x, loopPos.y - (1 + Math.pow(loopW, 1.12) / 100) * loopDist * (j / 3 + 1) * compoundStretchA, loopPos.x - (1 + Math.pow(loopW, 1.12) / 100) * loopDist * (j / 3 + 1) * compoundStretchB, loopPos.y]; }; BRp$c.findStraightEdgePoints = function (edge) { // Straight edge within bundle edge._private.rscratch.edgeType = 'straight'; }; BRp$c.findBezierPoints = function (edge, pairInfo, i, edgeIsUnbundled, edgeIsSwapped) { var rs = edge._private.rscratch; var stepSize = edge.pstyle('control-point-step-size').pfValue; var ctrlptDists = edge.pstyle('control-point-distances'); var ctrlptWs = edge.pstyle('control-point-weights'); var bezierN = ctrlptDists && ctrlptWs ? Math.min(ctrlptDists.value.length, ctrlptWs.value.length) : 1; var ctrlptDist = ctrlptDists ? ctrlptDists.pfValue[0] : undefined; var ctrlptWeight = ctrlptWs.value[0]; // (Multi)bezier var multi = edgeIsUnbundled; rs.edgeType = multi ? 'multibezier' : 'bezier'; rs.ctrlpts = []; for (var b = 0; b < bezierN; b++) { var normctrlptDist = (0.5 - pairInfo.eles.length / 2 + i) * stepSize * (edgeIsSwapped ? -1 : 1); var manctrlptDist = void 0; var sign = signum(normctrlptDist); if (multi) { ctrlptDist = ctrlptDists ? ctrlptDists.pfValue[b] : stepSize; // fall back on step size ctrlptWeight = ctrlptWs.value[b]; } if (edgeIsUnbundled) { // multi or single unbundled manctrlptDist = ctrlptDist; } else { manctrlptDist = ctrlptDist !== undefined ? sign * ctrlptDist : undefined; } var distanceFromMidpoint = manctrlptDist !== undefined ? manctrlptDist : normctrlptDist; var w1 = 1 - ctrlptWeight; var w2 = ctrlptWeight; var _this$findMidptPtsEtc2 = this.findMidptPtsEtc(edge, pairInfo), midptPts = _this$findMidptPtsEtc2.midptPts, vectorNormInverse = _this$findMidptPtsEtc2.vectorNormInverse; var adjustedMidpt = { x: midptPts.x1 * w1 + midptPts.x2 * w2, y: midptPts.y1 * w1 + midptPts.y2 * w2 }; rs.ctrlpts.push(adjustedMidpt.x + vectorNormInverse.x * distanceFromMidpoint, adjustedMidpt.y + vectorNormInverse.y * distanceFromMidpoint); } }; BRp$c.findTaxiPoints = function (edge, pairInfo) { // Taxicab geometry with two turns maximum var rs = edge._private.rscratch; rs.edgeType = 'segments'; var VERTICAL = 'vertical'; var HORIZONTAL = 'horizontal'; var LEFTWARD = 'leftward'; var RIGHTWARD = 'rightward'; var DOWNWARD = 'downward'; var UPWARD = 'upward'; var AUTO = 'auto'; var posPts = pairInfo.posPts, srcW = pairInfo.srcW, srcH = pairInfo.srcH, tgtW = pairInfo.tgtW, tgtH = pairInfo.tgtH; var edgeDistances = edge.pstyle('edge-distances').value; var dIncludesNodeBody = edgeDistances !== 'node-position'; var taxiDir = edge.pstyle('taxi-direction').value; var rawTaxiDir = taxiDir; // unprocessed value var taxiTurn = edge.pstyle('taxi-turn'); var turnIsPercent = taxiTurn.units === '%'; var taxiTurnPfVal = taxiTurn.pfValue; var turnIsNegative = taxiTurnPfVal < 0; // i.e. from target side var minD = edge.pstyle('taxi-turn-min-distance').pfValue; var dw = dIncludesNodeBody ? (srcW + tgtW) / 2 : 0; var dh = dIncludesNodeBody ? (srcH + tgtH) / 2 : 0; var pdx = posPts.x2 - posPts.x1; var pdy = posPts.y2 - posPts.y1; // take away the effective w/h from the magnitude of the delta value var subDWH = function subDWH(dxy, dwh) { if (dxy > 0) { return Math.max(dxy - dwh, 0); } else { return Math.min(dxy + dwh, 0); } }; var dx = subDWH(pdx, dw); var dy = subDWH(pdy, dh); var isExplicitDir = false; if (rawTaxiDir === AUTO) { taxiDir = Math.abs(dx) > Math.abs(dy) ? HORIZONTAL : VERTICAL; } else if (rawTaxiDir === UPWARD || rawTaxiDir === DOWNWARD) { taxiDir = VERTICAL; isExplicitDir = true; } else if (rawTaxiDir === LEFTWARD || rawTaxiDir === RIGHTWARD) { taxiDir = HORIZONTAL; isExplicitDir = true; } var isVert = taxiDir === VERTICAL; var l = isVert ? dy : dx; var pl = isVert ? pdy : pdx; var sgnL = signum(pl); var forcedDir = false; if (!(isExplicitDir && (turnIsPercent || turnIsNegative)) // forcing in this case would cause weird growing in the opposite direction && (rawTaxiDir === DOWNWARD && pl < 0 || rawTaxiDir === UPWARD && pl > 0 || rawTaxiDir === LEFTWARD && pl > 0 || rawTaxiDir === RIGHTWARD && pl < 0)) { sgnL *= -1; l = sgnL * Math.abs(l); forcedDir = true; } var d; if (turnIsPercent) { var p = taxiTurnPfVal < 0 ? 1 + taxiTurnPfVal : taxiTurnPfVal; d = p * l; } else { var k = taxiTurnPfVal < 0 ? l : 0; d = k + taxiTurnPfVal * sgnL; } var getIsTooClose = function getIsTooClose(d) { return Math.abs(d) < minD || Math.abs(d) >= Math.abs(l); }; var isTooCloseSrc = getIsTooClose(d); var isTooCloseTgt = getIsTooClose(Math.abs(l) - Math.abs(d)); var isTooClose = isTooCloseSrc || isTooCloseTgt; if (isTooClose && !forcedDir) { // non-ideal routing if (isVert) { // vertical fallbacks var lShapeInsideSrc = Math.abs(pl) <= srcH / 2; var lShapeInsideTgt = Math.abs(pdx) <= tgtW / 2; if (lShapeInsideSrc) { // horizontal Z-shape (direction not respected) var x = (posPts.x1 + posPts.x2) / 2; var y1 = posPts.y1, y2 = posPts.y2; rs.segpts = [x, y1, x, y2]; } else if (lShapeInsideTgt) { // vertical Z-shape (distance not respected) var y = (posPts.y1 + posPts.y2) / 2; var x1 = posPts.x1, x2 = posPts.x2; rs.segpts = [x1, y, x2, y]; } else { // L-shape fallback (turn distance not respected, but works well with tree siblings) rs.segpts = [posPts.x1, posPts.y2]; } } else { // horizontal fallbacks var _lShapeInsideSrc = Math.abs(pl) <= srcW / 2; var _lShapeInsideTgt = Math.abs(pdy) <= tgtH / 2; if (_lShapeInsideSrc) { // vertical Z-shape (direction not respected) var _y = (posPts.y1 + posPts.y2) / 2; var _x = posPts.x1, _x2 = posPts.x2; rs.segpts = [_x, _y, _x2, _y]; } else if (_lShapeInsideTgt) { // horizontal Z-shape (turn distance not respected) var _x3 = (posPts.x1 + posPts.x2) / 2; var _y2 = posPts.y1, _y3 = posPts.y2; rs.segpts = [_x3, _y2, _x3, _y3]; } else { // L-shape (turn distance not respected, but works well for tree siblings) rs.segpts = [posPts.x2, posPts.y1]; } } } else { // ideal routing if (isVert) { var _y4 = posPts.y1 + d + (dIncludesNodeBody ? srcH / 2 * sgnL : 0); var _x4 = posPts.x1, _x5 = posPts.x2; rs.segpts = [_x4, _y4, _x5, _y4]; } else { // horizontal var _x6 = posPts.x1 + d + (dIncludesNodeBody ? srcW / 2 * sgnL : 0); var _y5 = posPts.y1, _y6 = posPts.y2; rs.segpts = [_x6, _y5, _x6, _y6]; } } if (rs.isRound) { var radius = edge.pstyle('taxi-radius').value; var isArcRadius = edge.pstyle('radius-type').value[0] === 'arc-radius'; rs.radii = new Array(rs.segpts.length / 2).fill(radius); rs.isArcRadius = new Array(rs.segpts.length / 2).fill(isArcRadius); } }; BRp$c.tryToCorrectInvalidPoints = function (edge, pairInfo) { var rs = edge._private.rscratch; // can only correct beziers for now... if (rs.edgeType === 'bezier') { var srcPos = pairInfo.srcPos, tgtPos = pairInfo.tgtPos, srcW = pairInfo.srcW, srcH = pairInfo.srcH, tgtW = pairInfo.tgtW, tgtH = pairInfo.tgtH, srcShape = pairInfo.srcShape, tgtShape = pairInfo.tgtShape, srcCornerRadius = pairInfo.srcCornerRadius, tgtCornerRadius = pairInfo.tgtCornerRadius, srcRs = pairInfo.srcRs, tgtRs = pairInfo.tgtRs; var badStart = !number$1(rs.startX) || !number$1(rs.startY); var badAStart = !number$1(rs.arrowStartX) || !number$1(rs.arrowStartY); var badEnd = !number$1(rs.endX) || !number$1(rs.endY); var badAEnd = !number$1(rs.arrowEndX) || !number$1(rs.arrowEndY); var minCpADistFactor = 3; var arrowW = this.getArrowWidth(edge.pstyle('width').pfValue, edge.pstyle('arrow-scale').value) * this.arrowShapeWidth; var minCpADist = minCpADistFactor * arrowW; var startACpDist = dist({ x: rs.ctrlpts[0], y: rs.ctrlpts[1] }, { x: rs.startX, y: rs.startY }); var closeStartACp = startACpDist < minCpADist; var endACpDist = dist({ x: rs.ctrlpts[0], y: rs.ctrlpts[1] }, { x: rs.endX, y: rs.endY }); var closeEndACp = endACpDist < minCpADist; var overlapping = false; if (badStart || badAStart || closeStartACp) { overlapping = true; // project control point along line from src centre to outside the src shape // (otherwise intersection will yield nothing) var cpD = { // delta x: rs.ctrlpts[0] - srcPos.x, y: rs.ctrlpts[1] - srcPos.y }; var cpL = Math.sqrt(cpD.x * cpD.x + cpD.y * cpD.y); // length of line var cpM = { // normalised delta x: cpD.x / cpL, y: cpD.y / cpL }; var radius = Math.max(srcW, srcH); var cpProj = { // *2 radius guarantees outside shape x: rs.ctrlpts[0] + cpM.x * 2 * radius, y: rs.ctrlpts[1] + cpM.y * 2 * radius }; var srcCtrlPtIntn = srcShape.intersectLine(srcPos.x, srcPos.y, srcW, srcH, cpProj.x, cpProj.y, 0, srcCornerRadius, srcRs); if (closeStartACp) { rs.ctrlpts[0] = rs.ctrlpts[0] + cpM.x * (minCpADist - startACpDist); rs.ctrlpts[1] = rs.ctrlpts[1] + cpM.y * (minCpADist - startACpDist); } else { rs.ctrlpts[0] = srcCtrlPtIntn[0] + cpM.x * minCpADist; rs.ctrlpts[1] = srcCtrlPtIntn[1] + cpM.y * minCpADist; } } if (badEnd || badAEnd || closeEndACp) { overlapping = true; // project control point along line from tgt centre to outside the tgt shape // (otherwise intersection will yield nothing) var _cpD = { // delta x: rs.ctrlpts[0] - tgtPos.x, y: rs.ctrlpts[1] - tgtPos.y }; var _cpL = Math.sqrt(_cpD.x * _cpD.x + _cpD.y * _cpD.y); // length of line var _cpM = { // normalised delta x: _cpD.x / _cpL, y: _cpD.y / _cpL }; var _radius = Math.max(srcW, srcH); var _cpProj = { // *2 radius guarantees outside shape x: rs.ctrlpts[0] + _cpM.x * 2 * _radius, y: rs.ctrlpts[1] + _cpM.y * 2 * _radius }; var tgtCtrlPtIntn = tgtShape.intersectLine(tgtPos.x, tgtPos.y, tgtW, tgtH, _cpProj.x, _cpProj.y, 0, tgtCornerRadius, tgtRs); if (closeEndACp) { rs.ctrlpts[0] = rs.ctrlpts[0] + _cpM.x * (minCpADist - endACpDist); rs.ctrlpts[1] = rs.ctrlpts[1] + _cpM.y * (minCpADist - endACpDist); } else { rs.ctrlpts[0] = tgtCtrlPtIntn[0] + _cpM.x * minCpADist; rs.ctrlpts[1] = tgtCtrlPtIntn[1] + _cpM.y * minCpADist; } } if (overlapping) { // recalc endpts this.findEndpoints(edge); } } }; BRp$c.storeAllpts = function (edge) { var rs = edge._private.rscratch; if (rs.edgeType === 'multibezier' || rs.edgeType === 'bezier' || rs.edgeType === 'self' || rs.edgeType === 'compound') { rs.allpts = []; rs.allpts.push(rs.startX, rs.startY); for (var b = 0; b + 1 < rs.ctrlpts.length; b += 2) { // ctrl pt itself rs.allpts.push(rs.ctrlpts[b], rs.ctrlpts[b + 1]); // the midpt between ctrlpts as intermediate destination pts if (b + 3 < rs.ctrlpts.length) { rs.allpts.push((rs.ctrlpts[b] + rs.ctrlpts[b + 2]) / 2, (rs.ctrlpts[b + 1] + rs.ctrlpts[b + 3]) / 2); } } rs.allpts.push(rs.endX, rs.endY); var m, mt; if (rs.ctrlpts.length / 2 % 2 === 0) { m = rs.allpts.length / 2 - 1; rs.midX = rs.allpts[m]; rs.midY = rs.allpts[m + 1]; } else { m = rs.allpts.length / 2 - 3; mt = 0.5; rs.midX = qbezierAt(rs.allpts[m], rs.allpts[m + 2], rs.allpts[m + 4], mt); rs.midY = qbezierAt(rs.allpts[m + 1], rs.allpts[m + 3], rs.allpts[m + 5], mt); } } else if (rs.edgeType === 'straight') { // need to calc these after endpts rs.allpts = [rs.startX, rs.startY, rs.endX, rs.endY]; // default midpt for labels etc rs.midX = (rs.startX + rs.endX + rs.arrowStartX + rs.arrowEndX) / 4; rs.midY = (rs.startY + rs.endY + rs.arrowStartY + rs.arrowEndY) / 4; } else if (rs.edgeType === 'segments') { rs.allpts = []; rs.allpts.push(rs.startX, rs.startY); rs.allpts.push.apply(rs.allpts, rs.segpts); rs.allpts.push(rs.endX, rs.endY); if (rs.isRound) { rs.roundCorners = []; for (var i = 2; i + 3 < rs.allpts.length; i += 2) { var radius = rs.radii[i / 2 - 1]; var isArcRadius = rs.isArcRadius[i / 2 - 1]; rs.roundCorners.push(getRoundCorner({ x: rs.allpts[i - 2], y: rs.allpts[i - 1] }, { x: rs.allpts[i], y: rs.allpts[i + 1], radius: radius }, { x: rs.allpts[i + 2], y: rs.allpts[i + 3] }, radius, isArcRadius)); } } if (rs.segpts.length % 4 === 0) { var i2 = rs.segpts.length / 2; var i1 = i2 - 2; rs.midX = (rs.segpts[i1] + rs.segpts[i2]) / 2; rs.midY = (rs.segpts[i1 + 1] + rs.segpts[i2 + 1]) / 2; } else { var _i = rs.segpts.length / 2 - 1; if (!rs.isRound) { rs.midX = rs.segpts[_i]; rs.midY = rs.segpts[_i + 1]; } else { var point = { x: rs.segpts[_i], y: rs.segpts[_i + 1] }; var corner = rs.roundCorners[_i / 2]; var v = [point.x - corner.cx, point.y - corner.cy]; var factor = corner.radius / Math.sqrt(Math.pow(v[0], 2) + Math.pow(v[1], 2)); v = v.map(function (c) { return c * factor; }); rs.midX = corner.cx + v[0]; rs.midY = corner.cy + v[1]; rs.midVector = v; } } } }; BRp$c.checkForInvalidEdgeWarning = function (edge) { var rs = edge[0]._private.rscratch; if (rs.nodesOverlap || number$1(rs.startX) && number$1(rs.startY) && number$1(rs.endX) && number$1(rs.endY)) { rs.loggedErr = false; } else { if (!rs.loggedErr) { rs.loggedErr = true; warn('Edge `' + edge.id() + '` has invalid endpoints and so it is impossible to draw. Adjust your edge style (e.g. control points) accordingly or use an alternative edge type. This is expected behaviour when the source node and the target node overlap.'); } } }; BRp$c.findEdgeControlPoints = function (edges) { var _this = this; if (!edges || edges.length === 0) { return; } var r = this; var cy = r.cy; var hasCompounds = cy.hasCompoundNodes(); var hashTable = { map: new Map$2(), get: function get(pairId) { var map2 = this.map.get(pairId[0]); if (map2 != null) { return map2.get(pairId[1]); } else { return null; } }, set: function set(pairId, val) { var map2 = this.map.get(pairId[0]); if (map2 == null) { map2 = new Map$2(); this.map.set(pairId[0], map2); } map2.set(pairId[1], val); } }; var pairIds = []; var haystackEdges = []; // create a table of edge (src, tgt) => list of edges between them for (var i = 0; i < edges.length; i++) { var edge = edges[i]; var _p = edge._private; var curveStyle = edge.pstyle('curve-style').value; // ignore edges who are not to be displayed // they shouldn't take up space if (edge.removed() || !edge.takesUpSpace()) { continue; } if (curveStyle === 'haystack') { haystackEdges.push(edge); continue; } var edgeIsUnbundled = curveStyle === 'unbundled-bezier' || curveStyle.endsWith('segments') || curveStyle === 'straight' || curveStyle === 'straight-triangle' || curveStyle.endsWith('taxi'); var edgeIsBezier = curveStyle === 'unbundled-bezier' || curveStyle === 'bezier'; var src = _p.source; var tgt = _p.target; var srcIndex = src.poolIndex(); var tgtIndex = tgt.poolIndex(); var pairId = [srcIndex, tgtIndex].sort(); var tableEntry = hashTable.get(pairId); if (tableEntry == null) { tableEntry = { eles: [] }; hashTable.set(pairId, tableEntry); pairIds.push(pairId); } tableEntry.eles.push(edge); if (edgeIsUnbundled) { tableEntry.hasUnbundled = true; } if (edgeIsBezier) { tableEntry.hasBezier = true; } } // for each pair (src, tgt), create the ctrl pts // Nested for loop is OK; total number of iterations for both loops = edgeCount var _loop = function _loop(p) { var pairId = pairIds[p]; var pairInfo = hashTable.get(pairId); var swappedpairInfo = void 0; if (!pairInfo.hasUnbundled) { var pllEdges = pairInfo.eles[0].parallelEdges().filter(function (e) { return e.isBundledBezier(); }); clearArray(pairInfo.eles); pllEdges.forEach(function (edge) { return pairInfo.eles.push(edge); }); // for each pair id, the edges should be sorted by index pairInfo.eles.sort(function (edge1, edge2) { return edge1.poolIndex() - edge2.poolIndex(); }); } var firstEdge = pairInfo.eles[0]; var src = firstEdge.source(); var tgt = firstEdge.target(); // make sure src/tgt distinction is consistent w.r.t. pairId if (src.poolIndex() > tgt.poolIndex()) { var temp = src; src = tgt; tgt = temp; } var srcPos = pairInfo.srcPos = src.position(); var tgtPos = pairInfo.tgtPos = tgt.position(); var srcW = pairInfo.srcW = src.outerWidth(); var srcH = pairInfo.srcH = src.outerHeight(); var tgtW = pairInfo.tgtW = tgt.outerWidth(); var tgtH = pairInfo.tgtH = tgt.outerHeight(); var srcShape = pairInfo.srcShape = r.nodeShapes[_this.getNodeShape(src)]; var tgtShape = pairInfo.tgtShape = r.nodeShapes[_this.getNodeShape(tgt)]; var srcCornerRadius = pairInfo.srcCornerRadius = src.pstyle('corner-radius').value === 'auto' ? 'auto' : src.pstyle('corner-radius').pfValue; var tgtCornerRadius = pairInfo.tgtCornerRadius = tgt.pstyle('corner-radius').value === 'auto' ? 'auto' : tgt.pstyle('corner-radius').pfValue; var tgtRs = pairInfo.tgtRs = tgt._private.rscratch; var srcRs = pairInfo.srcRs = src._private.rscratch; pairInfo.dirCounts = { 'north': 0, 'west': 0, 'south': 0, 'east': 0, 'northwest': 0, 'southwest': 0, 'northeast': 0, 'southeast': 0 }; for (var _i2 = 0; _i2 < pairInfo.eles.length; _i2++) { var _edge = pairInfo.eles[_i2]; var rs = _edge[0]._private.rscratch; var _curveStyle = _edge.pstyle('curve-style').value; var _edgeIsUnbundled = _curveStyle === 'unbundled-bezier' || _curveStyle.endsWith('segments') || _curveStyle.endsWith('taxi'); // whether the normalised pair order is the reverse of the edge's src-tgt order var edgeIsSwapped = !src.same(_edge.source()); if (!pairInfo.calculatedIntersection && src !== tgt && (pairInfo.hasBezier || pairInfo.hasUnbundled)) { pairInfo.calculatedIntersection = true; // pt outside src shape to calc distance/displacement from src to tgt var srcOutside = srcShape.intersectLine(srcPos.x, srcPos.y, srcW, srcH, tgtPos.x, tgtPos.y, 0, srcCornerRadius, srcRs); var srcIntn = pairInfo.srcIntn = srcOutside; // pt outside tgt shape to calc distance/displacement from src to tgt var tgtOutside = tgtShape.intersectLine(tgtPos.x, tgtPos.y, tgtW, tgtH, srcPos.x, srcPos.y, 0, tgtCornerRadius, tgtRs); var tgtIntn = pairInfo.tgtIntn = tgtOutside; var intersectionPts = pairInfo.intersectionPts = { x1: srcOutside[0], x2: tgtOutside[0], y1: srcOutside[1], y2: tgtOutside[1] }; var posPts = pairInfo.posPts = { x1: srcPos.x, x2: tgtPos.x, y1: srcPos.y, y2: tgtPos.y }; var dy = tgtOutside[1] - srcOutside[1]; var dx = tgtOutside[0] - srcOutside[0]; var l = Math.sqrt(dx * dx + dy * dy); var vector = pairInfo.vector = { x: dx, y: dy }; var vectorNorm = pairInfo.vectorNorm = { x: vector.x / l, y: vector.y / l }; var vectorNormInverse = { x: -vectorNorm.y, y: vectorNorm.x }; // if node shapes overlap, then no ctrl pts to draw pairInfo.nodesOverlap = !number$1(l) || tgtShape.checkPoint(srcOutside[0], srcOutside[1], 0, tgtW, tgtH, tgtPos.x, tgtPos.y, tgtCornerRadius, tgtRs) || srcShape.checkPoint(tgtOutside[0], tgtOutside[1], 0, srcW, srcH, srcPos.x, srcPos.y, srcCornerRadius, srcRs); pairInfo.vectorNormInverse = vectorNormInverse; swappedpairInfo = { nodesOverlap: pairInfo.nodesOverlap, dirCounts: pairInfo.dirCounts, calculatedIntersection: true, hasBezier: pairInfo.hasBezier, hasUnbundled: pairInfo.hasUnbundled, eles: pairInfo.eles, srcPos: tgtPos, tgtPos: srcPos, srcW: tgtW, srcH: tgtH, tgtW: srcW, tgtH: srcH, srcIntn: tgtIntn, tgtIntn: srcIntn, srcShape: tgtShape, tgtShape: srcShape, posPts: { x1: posPts.x2, y1: posPts.y2, x2: posPts.x1, y2: posPts.y1 }, intersectionPts: { x1: intersectionPts.x2, y1: intersectionPts.y2, x2: intersectionPts.x1, y2: intersectionPts.y1 }, vector: { x: -vector.x, y: -vector.y }, vectorNorm: { x: -vectorNorm.x, y: -vectorNorm.y }, vectorNormInverse: { x: -vectorNormInverse.x, y: -vectorNormInverse.y } }; } var passedPairInfo = edgeIsSwapped ? swappedpairInfo : pairInfo; rs.nodesOverlap = passedPairInfo.nodesOverlap; rs.srcIntn = passedPairInfo.srcIntn; rs.tgtIntn = passedPairInfo.tgtIntn; rs.isRound = _curveStyle.startsWith('round'); if (hasCompounds && (src.isParent() || src.isChild() || tgt.isParent() || tgt.isChild()) && (src.parents().anySame(tgt) || tgt.parents().anySame(src) || src.same(tgt) && src.isParent())) { _this.findCompoundLoopPoints(_edge, passedPairInfo, _i2, _edgeIsUnbundled); } else if (src === tgt) { _this.findLoopPoints(_edge, passedPairInfo, _i2, _edgeIsUnbundled); } else if (_curveStyle.endsWith('segments')) { _this.findSegmentsPoints(_edge, passedPairInfo); } else if (_curveStyle.endsWith('taxi')) { _this.findTaxiPoints(_edge, passedPairInfo); } else if (_curveStyle === 'straight' || !_edgeIsUnbundled && pairInfo.eles.length % 2 === 1 && _i2 === Math.floor(pairInfo.eles.length / 2)) { _this.findStraightEdgePoints(_edge); } else { _this.findBezierPoints(_edge, passedPairInfo, _i2, _edgeIsUnbundled, edgeIsSwapped); } _this.findEndpoints(_edge); _this.tryToCorrectInvalidPoints(_edge, passedPairInfo); _this.checkForInvalidEdgeWarning(_edge); _this.storeAllpts(_edge); _this.storeEdgeProjections(_edge); _this.calculateArrowAngles(_edge); _this.recalculateEdgeLabelProjections(_edge); _this.calculateLabelAngles(_edge); } // for pair edges }; for (var p = 0; p < pairIds.length; p++) { _loop(p); } // for pair ids // haystacks avoid the expense of pairInfo stuff (intersections etc.) this.findHaystackPoints(haystackEdges); }; function getPts(pts) { var retPts = []; if (pts == null) { return; } for (var i = 0; i < pts.length; i += 2) { var x = pts[i]; var y = pts[i + 1]; retPts.push({ x: x, y: y }); } return retPts; } BRp$c.getSegmentPoints = function (edge) { var rs = edge[0]._private.rscratch; var type = rs.edgeType; if (type === 'segments') { this.recalculateRenderedStyle(edge); return getPts(rs.segpts); } }; BRp$c.getControlPoints = function (edge) { var rs = edge[0]._private.rscratch; var type = rs.edgeType; if (type === 'bezier' || type === 'multibezier' || type === 'self' || type === 'compound') { this.recalculateRenderedStyle(edge); return getPts(rs.ctrlpts); } }; BRp$c.getEdgeMidpoint = function (edge) { var rs = edge[0]._private.rscratch; this.recalculateRenderedStyle(edge); return { x: rs.midX, y: rs.midY }; }; var BRp$b = {}; BRp$b.manualEndptToPx = function (node, prop) { var r = this; var npos = node.position(); var w = node.outerWidth(); var h = node.outerHeight(); var rs = node._private.rscratch; if (prop.value.length === 2) { var p = [prop.pfValue[0], prop.pfValue[1]]; if (prop.units[0] === '%') { p[0] = p[0] * w; } if (prop.units[1] === '%') { p[1] = p[1] * h; } p[0] += npos.x; p[1] += npos.y; return p; } else { var angle = prop.pfValue[0]; angle = -Math.PI / 2 + angle; // start at 12 o'clock var l = 2 * Math.max(w, h); var _p = [npos.x + Math.cos(angle) * l, npos.y + Math.sin(angle) * l]; return r.nodeShapes[this.getNodeShape(node)].intersectLine(npos.x, npos.y, w, h, _p[0], _p[1], 0, node.pstyle('corner-radius').value === 'auto' ? 'auto' : node.pstyle('corner-radius').pfValue, rs); } }; BRp$b.findEndpoints = function (edge) { var r = this; var intersect; var source = edge.source()[0]; var target = edge.target()[0]; var srcPos = source.position(); var tgtPos = target.position(); var tgtArShape = edge.pstyle('target-arrow-shape').value; var srcArShape = edge.pstyle('source-arrow-shape').value; var tgtDist = edge.pstyle('target-distance-from-node').pfValue; var srcDist = edge.pstyle('source-distance-from-node').pfValue; var srcRs = source._private.rscratch; var tgtRs = target._private.rscratch; var curveStyle = edge.pstyle('curve-style').value; var rs = edge._private.rscratch; var et = rs.edgeType; var taxi = curveStyle === 'taxi'; var self = et === 'self' || et === 'compound'; var bezier = et === 'bezier' || et === 'multibezier' || self; var multi = et !== 'bezier'; var lines = et === 'straight' || et === 'segments'; var segments = et === 'segments'; var hasEndpts = bezier || multi || lines; var overrideEndpts = self || taxi; var srcManEndpt = edge.pstyle('source-endpoint'); var srcManEndptVal = overrideEndpts ? 'outside-to-node' : srcManEndpt.value; var srcCornerRadius = source.pstyle('corner-radius').value === 'auto' ? 'auto' : source.pstyle('corner-radius').pfValue; var tgtManEndpt = edge.pstyle('target-endpoint'); var tgtManEndptVal = overrideEndpts ? 'outside-to-node' : tgtManEndpt.value; var tgtCornerRadius = target.pstyle('corner-radius').value === 'auto' ? 'auto' : target.pstyle('corner-radius').pfValue; rs.srcManEndpt = srcManEndpt; rs.tgtManEndpt = tgtManEndpt; var p1; // last known point of edge on target side var p2; // last known point of edge on source side var p1_i; // point to intersect with target shape var p2_i; // point to intersect with source shape if (bezier) { var cpStart = [rs.ctrlpts[0], rs.ctrlpts[1]]; var cpEnd = multi ? [rs.ctrlpts[rs.ctrlpts.length - 2], rs.ctrlpts[rs.ctrlpts.length - 1]] : cpStart; p1 = cpEnd; p2 = cpStart; } else if (lines) { var srcArrowFromPt = !segments ? [tgtPos.x, tgtPos.y] : rs.segpts.slice(0, 2); var tgtArrowFromPt = !segments ? [srcPos.x, srcPos.y] : rs.segpts.slice(rs.segpts.length - 2); p1 = tgtArrowFromPt; p2 = srcArrowFromPt; } if (tgtManEndptVal === 'inside-to-node') { intersect = [tgtPos.x, tgtPos.y]; } else if (tgtManEndpt.units) { intersect = this.manualEndptToPx(target, tgtManEndpt); } else if (tgtManEndptVal === 'outside-to-line') { intersect = rs.tgtIntn; // use cached value from ctrlpt calc } else { if (tgtManEndptVal === 'outside-to-node' || tgtManEndptVal === 'outside-to-node-or-label') { p1_i = p1; } else if (tgtManEndptVal === 'outside-to-line' || tgtManEndptVal === 'outside-to-line-or-label') { p1_i = [srcPos.x, srcPos.y]; } intersect = r.nodeShapes[this.getNodeShape(target)].intersectLine(tgtPos.x, tgtPos.y, target.outerWidth(), target.outerHeight(), p1_i[0], p1_i[1], 0, tgtCornerRadius, tgtRs); if (tgtManEndptVal === 'outside-to-node-or-label' || tgtManEndptVal === 'outside-to-line-or-label') { var trs = target._private.rscratch; var lw = trs.labelWidth; var lh = trs.labelHeight; var lx = trs.labelX; var ly = trs.labelY; var lw2 = lw / 2; var lh2 = lh / 2; var va = target.pstyle('text-valign').value; if (va === 'top') { ly -= lh2; } else if (va === 'bottom') { ly += lh2; } var ha = target.pstyle('text-halign').value; if (ha === 'left') { lx -= lw2; } else if (ha === 'right') { lx += lw2; } var labelIntersect = polygonIntersectLine(p1_i[0], p1_i[1], [lx - lw2, ly - lh2, lx + lw2, ly - lh2, lx + lw2, ly + lh2, lx - lw2, ly + lh2], tgtPos.x, tgtPos.y); if (labelIntersect.length > 0) { var refPt = srcPos; var intSqdist = sqdist(refPt, array2point(intersect)); var labIntSqdist = sqdist(refPt, array2point(labelIntersect)); var minSqDist = intSqdist; if (labIntSqdist < intSqdist) { intersect = labelIntersect; minSqDist = labIntSqdist; } if (labelIntersect.length > 2) { var labInt2SqDist = sqdist(refPt, { x: labelIntersect[2], y: labelIntersect[3] }); if (labInt2SqDist < minSqDist) { intersect = [labelIntersect[2], labelIntersect[3]]; } } } } } var arrowEnd = shortenIntersection(intersect, p1, r.arrowShapes[tgtArShape].spacing(edge) + tgtDist); var edgeEnd = shortenIntersection(intersect, p1, r.arrowShapes[tgtArShape].gap(edge) + tgtDist); rs.endX = edgeEnd[0]; rs.endY = edgeEnd[1]; rs.arrowEndX = arrowEnd[0]; rs.arrowEndY = arrowEnd[1]; if (srcManEndptVal === 'inside-to-node') { intersect = [srcPos.x, srcPos.y]; } else if (srcManEndpt.units) { intersect = this.manualEndptToPx(source, srcManEndpt); } else if (srcManEndptVal === 'outside-to-line') { intersect = rs.srcIntn; // use cached value from ctrlpt calc } else { if (srcManEndptVal === 'outside-to-node' || srcManEndptVal === 'outside-to-node-or-label') { p2_i = p2; } else if (srcManEndptVal === 'outside-to-line' || srcManEndptVal === 'outside-to-line-or-label') { p2_i = [tgtPos.x, tgtPos.y]; } intersect = r.nodeShapes[this.getNodeShape(source)].intersectLine(srcPos.x, srcPos.y, source.outerWidth(), source.outerHeight(), p2_i[0], p2_i[1], 0, srcCornerRadius, srcRs); if (srcManEndptVal === 'outside-to-node-or-label' || srcManEndptVal === 'outside-to-line-or-label') { var srs = source._private.rscratch; var _lw = srs.labelWidth; var _lh = srs.labelHeight; var _lx = srs.labelX; var _ly = srs.labelY; var _lw2 = _lw / 2; var _lh2 = _lh / 2; var _va = source.pstyle('text-valign').value; if (_va === 'top') { _ly -= _lh2; } else if (_va === 'bottom') { _ly += _lh2; } var _ha = source.pstyle('text-halign').value; if (_ha === 'left') { _lx -= _lw2; } else if (_ha === 'right') { _lx += _lw2; } var _labelIntersect = polygonIntersectLine(p2_i[0], p2_i[1], [_lx - _lw2, _ly - _lh2, _lx + _lw2, _ly - _lh2, _lx + _lw2, _ly + _lh2, _lx - _lw2, _ly + _lh2], srcPos.x, srcPos.y); if (_labelIntersect.length > 0) { var _refPt = tgtPos; var _intSqdist = sqdist(_refPt, array2point(intersect)); var _labIntSqdist = sqdist(_refPt, array2point(_labelIntersect)); var _minSqDist = _intSqdist; if (_labIntSqdist < _intSqdist) { intersect = [_labelIntersect[0], _labelIntersect[1]]; _minSqDist = _labIntSqdist; } if (_labelIntersect.length > 2) { var _labInt2SqDist = sqdist(_refPt, { x: _labelIntersect[2], y: _labelIntersect[3] }); if (_labInt2SqDist < _minSqDist) { intersect = [_labelIntersect[2], _labelIntersect[3]]; } } } } } var arrowStart = shortenIntersection(intersect, p2, r.arrowShapes[srcArShape].spacing(edge) + srcDist); var edgeStart = shortenIntersection(intersect, p2, r.arrowShapes[srcArShape].gap(edge) + srcDist); rs.startX = edgeStart[0]; rs.startY = edgeStart[1]; rs.arrowStartX = arrowStart[0]; rs.arrowStartY = arrowStart[1]; if (hasEndpts) { if (!number$1(rs.startX) || !number$1(rs.startY) || !number$1(rs.endX) || !number$1(rs.endY)) { rs.badLine = true; } else { rs.badLine = false; } } }; BRp$b.getSourceEndpoint = function (edge) { var rs = edge[0]._private.rscratch; this.recalculateRenderedStyle(edge); switch (rs.edgeType) { case 'haystack': return { x: rs.haystackPts[0], y: rs.haystackPts[1] }; default: return { x: rs.arrowStartX, y: rs.arrowStartY }; } }; BRp$b.getTargetEndpoint = function (edge) { var rs = edge[0]._private.rscratch; this.recalculateRenderedStyle(edge); switch (rs.edgeType) { case 'haystack': return { x: rs.haystackPts[2], y: rs.haystackPts[3] }; default: return { x: rs.arrowEndX, y: rs.arrowEndY }; } }; var BRp$a = {}; function pushBezierPts(r, edge, pts) { var qbezierAt$1 = function qbezierAt$1(p1, p2, p3, t) { return qbezierAt(p1, p2, p3, t); }; var _p = edge._private; var bpts = _p.rstyle.bezierPts; for (var i = 0; i < r.bezierProjPcts.length; i++) { var p = r.bezierProjPcts[i]; bpts.push({ x: qbezierAt$1(pts[0], pts[2], pts[4], p), y: qbezierAt$1(pts[1], pts[3], pts[5], p) }); } } BRp$a.storeEdgeProjections = function (edge) { var _p = edge._private; var rs = _p.rscratch; var et = rs.edgeType; // clear the cached points state _p.rstyle.bezierPts = null; _p.rstyle.linePts = null; _p.rstyle.haystackPts = null; if (et === 'multibezier' || et === 'bezier' || et === 'self' || et === 'compound') { _p.rstyle.bezierPts = []; for (var i = 0; i + 5 < rs.allpts.length; i += 4) { pushBezierPts(this, edge, rs.allpts.slice(i, i + 6)); } } else if (et === 'segments') { var lpts = _p.rstyle.linePts = []; for (var i = 0; i + 1 < rs.allpts.length; i += 2) { lpts.push({ x: rs.allpts[i], y: rs.allpts[i + 1] }); } } else if (et === 'haystack') { var hpts = rs.haystackPts; _p.rstyle.haystackPts = [{ x: hpts[0], y: hpts[1] }, { x: hpts[2], y: hpts[3] }]; } _p.rstyle.arrowWidth = this.getArrowWidth(edge.pstyle('width').pfValue, edge.pstyle('arrow-scale').value) * this.arrowShapeWidth; }; BRp$a.recalculateEdgeProjections = function (edges) { this.findEdgeControlPoints(edges); }; var BRp$9 = {}; BRp$9.recalculateNodeLabelProjection = function (node) { var content = node.pstyle('label').strValue; if (emptyString(content)) { return; } var textX, textY; var _p = node._private; var nodeWidth = node.width(); var nodeHeight = node.height(); var padding = node.padding(); var nodePos = node.position(); var textHalign = node.pstyle('text-halign').strValue; var textValign = node.pstyle('text-valign').strValue; var rs = _p.rscratch; var rstyle = _p.rstyle; switch (textHalign) { case 'left': textX = nodePos.x - nodeWidth / 2 - padding; break; case 'right': textX = nodePos.x + nodeWidth / 2 + padding; break; default: // e.g. center textX = nodePos.x; } switch (textValign) { case 'top': textY = nodePos.y - nodeHeight / 2 - padding; break; case 'bottom': textY = nodePos.y + nodeHeight / 2 + padding; break; default: // e.g. middle textY = nodePos.y; } rs.labelX = textX; rs.labelY = textY; rstyle.labelX = textX; rstyle.labelY = textY; this.calculateLabelAngles(node); this.applyLabelDimensions(node); }; var lineAngleFromDelta = function lineAngleFromDelta(dx, dy) { var angle = Math.atan(dy / dx); if (dx === 0 && angle < 0) { angle = angle * -1; } return angle; }; var lineAngle = function lineAngle(p0, p1) { var dx = p1.x - p0.x; var dy = p1.y - p0.y; return lineAngleFromDelta(dx, dy); }; var bezierAngle = function bezierAngle(p0, p1, p2, t) { var t0 = bound(0, t - 0.001, 1); var t1 = bound(0, t + 0.001, 1); var lp0 = qbezierPtAt(p0, p1, p2, t0); var lp1 = qbezierPtAt(p0, p1, p2, t1); return lineAngle(lp0, lp1); }; BRp$9.recalculateEdgeLabelProjections = function (edge) { var p; var _p = edge._private; var rs = _p.rscratch; var r = this; var content = { mid: edge.pstyle('label').strValue, source: edge.pstyle('source-label').strValue, target: edge.pstyle('target-label').strValue }; if (content.mid || content.source || content.target) ; else { return; // no labels => no calcs } // add center point to style so bounding box calculations can use it // p = { x: rs.midX, y: rs.midY }; var setRs = function setRs(propName, prefix, value) { setPrefixedProperty(_p.rscratch, propName, prefix, value); setPrefixedProperty(_p.rstyle, propName, prefix, value); }; setRs('labelX', null, p.x); setRs('labelY', null, p.y); var midAngle = lineAngleFromDelta(rs.midDispX, rs.midDispY); setRs('labelAutoAngle', null, midAngle); var createControlPointInfo = function createControlPointInfo() { if (createControlPointInfo.cache) { return createControlPointInfo.cache; } // use cache so only 1x per edge var ctrlpts = []; // store each ctrlpt info init for (var i = 0; i + 5 < rs.allpts.length; i += 4) { var p0 = { x: rs.allpts[i], y: rs.allpts[i + 1] }; var p1 = { x: rs.allpts[i + 2], y: rs.allpts[i + 3] }; // ctrlpt var p2 = { x: rs.allpts[i + 4], y: rs.allpts[i + 5] }; ctrlpts.push({ p0: p0, p1: p1, p2: p2, startDist: 0, length: 0, segments: [] }); } var bpts = _p.rstyle.bezierPts; var nProjs = r.bezierProjPcts.length; function addSegment(cp, p0, p1, t0, t1) { var length = dist(p0, p1); var prevSegment = cp.segments[cp.segments.length - 1]; var segment = { p0: p0, p1: p1, t0: t0, t1: t1, startDist: prevSegment ? prevSegment.startDist + prevSegment.length : 0, length: length }; cp.segments.push(segment); cp.length += length; } // update each ctrlpt with segment info for (var _i = 0; _i < ctrlpts.length; _i++) { var cp = ctrlpts[_i]; var prevCp = ctrlpts[_i - 1]; if (prevCp) { cp.startDist = prevCp.startDist + prevCp.length; } addSegment(cp, cp.p0, bpts[_i * nProjs], 0, r.bezierProjPcts[0]); // first for (var j = 0; j < nProjs - 1; j++) { addSegment(cp, bpts[_i * nProjs + j], bpts[_i * nProjs + j + 1], r.bezierProjPcts[j], r.bezierProjPcts[j + 1]); } addSegment(cp, bpts[_i * nProjs + nProjs - 1], cp.p2, r.bezierProjPcts[nProjs - 1], 1); // last } return createControlPointInfo.cache = ctrlpts; }; var calculateEndProjection = function calculateEndProjection(prefix) { var angle; var isSrc = prefix === 'source'; if (!content[prefix]) { return; } var offset = edge.pstyle(prefix + '-text-offset').pfValue; switch (rs.edgeType) { case 'self': case 'compound': case 'bezier': case 'multibezier': { var cps = createControlPointInfo(); var selected; var startDist = 0; var totalDist = 0; // find the segment we're on for (var i = 0; i < cps.length; i++) { var _cp = cps[isSrc ? i : cps.length - 1 - i]; for (var j = 0; j < _cp.segments.length; j++) { var _seg = _cp.segments[isSrc ? j : _cp.segments.length - 1 - j]; var lastSeg = i === cps.length - 1 && j === _cp.segments.length - 1; startDist = totalDist; totalDist += _seg.length; if (totalDist >= offset || lastSeg) { selected = { cp: _cp, segment: _seg }; break; } } if (selected) { break; } } var cp = selected.cp; var seg = selected.segment; var tSegment = (offset - startDist) / seg.length; var segDt = seg.t1 - seg.t0; var t = isSrc ? seg.t0 + segDt * tSegment : seg.t1 - segDt * tSegment; t = bound(0, t, 1); p = qbezierPtAt(cp.p0, cp.p1, cp.p2, t); angle = bezierAngle(cp.p0, cp.p1, cp.p2, t); break; } case 'straight': case 'segments': case 'haystack': { var d = 0, di, d0; var p0, p1; var l = rs.allpts.length; for (var _i2 = 0; _i2 + 3 < l; _i2 += 2) { if (isSrc) { p0 = { x: rs.allpts[_i2], y: rs.allpts[_i2 + 1] }; p1 = { x: rs.allpts[_i2 + 2], y: rs.allpts[_i2 + 3] }; } else { p0 = { x: rs.allpts[l - 2 - _i2], y: rs.allpts[l - 1 - _i2] }; p1 = { x: rs.allpts[l - 4 - _i2], y: rs.allpts[l - 3 - _i2] }; } di = dist(p0, p1); d0 = d; d += di; if (d >= offset) { break; } } var pD = offset - d0; var _t = pD / di; _t = bound(0, _t, 1); p = lineAt(p0, p1, _t); angle = lineAngle(p0, p1); break; } } setRs('labelX', prefix, p.x); setRs('labelY', prefix, p.y); setRs('labelAutoAngle', prefix, angle); }; calculateEndProjection('source'); calculateEndProjection('target'); this.applyLabelDimensions(edge); }; BRp$9.applyLabelDimensions = function (ele) { this.applyPrefixedLabelDimensions(ele); if (ele.isEdge()) { this.applyPrefixedLabelDimensions(ele, 'source'); this.applyPrefixedLabelDimensions(ele, 'target'); } }; BRp$9.applyPrefixedLabelDimensions = function (ele, prefix) { var _p = ele._private; var text = this.getLabelText(ele, prefix); var labelDims = this.calculateLabelDimensions(ele, text); var lineHeight = ele.pstyle('line-height').pfValue; var textWrap = ele.pstyle('text-wrap').strValue; var lines = getPrefixedProperty(_p.rscratch, 'labelWrapCachedLines', prefix) || []; var numLines = textWrap !== 'wrap' ? 1 : Math.max(lines.length, 1); var normPerLineHeight = labelDims.height / numLines; var labelLineHeight = normPerLineHeight * lineHeight; var width = labelDims.width; var height = labelDims.height + (numLines - 1) * (lineHeight - 1) * normPerLineHeight; setPrefixedProperty(_p.rstyle, 'labelWidth', prefix, width); setPrefixedProperty(_p.rscratch, 'labelWidth', prefix, width); setPrefixedProperty(_p.rstyle, 'labelHeight', prefix, height); setPrefixedProperty(_p.rscratch, 'labelHeight', prefix, height); setPrefixedProperty(_p.rscratch, 'labelLineHeight', prefix, labelLineHeight); }; BRp$9.getLabelText = function (ele, prefix) { var _p = ele._private; var pfd = prefix ? prefix + '-' : ''; var text = ele.pstyle(pfd + 'label').strValue; var textTransform = ele.pstyle('text-transform').value; var rscratch = function rscratch(propName, value) { if (value) { setPrefixedProperty(_p.rscratch, propName, prefix, value); return value; } else { return getPrefixedProperty(_p.rscratch, propName, prefix); } }; // for empty text, skip all processing if (!text) { return ''; } if (textTransform == 'none') ; else if (textTransform == 'uppercase') { text = text.toUpperCase(); } else if (textTransform == 'lowercase') { text = text.toLowerCase(); } var wrapStyle = ele.pstyle('text-wrap').value; if (wrapStyle === 'wrap') { var labelKey = rscratch('labelKey'); // save recalc if the label is the same as before if (labelKey != null && rscratch('labelWrapKey') === labelKey) { return rscratch('labelWrapCachedText'); } var zwsp = "\u200B"; var lines = text.split('\n'); var maxW = ele.pstyle('text-max-width').pfValue; var overflow = ele.pstyle('text-overflow-wrap').value; var overflowAny = overflow === 'anywhere'; var wrappedLines = []; var separatorRegex = /[\s\u200b]+|$/g; // Include end of string to add last word for (var l = 0; l < lines.length; l++) { var line = lines[l]; var lineDims = this.calculateLabelDimensions(ele, line); var lineW = lineDims.width; if (overflowAny) { var processedLine = line.split('').join(zwsp); line = processedLine; } if (lineW > maxW) { // line is too long var separatorMatches = line.matchAll(separatorRegex); var subline = ''; var previousIndex = 0; // Add fake match var _iterator = _createForOfIteratorHelper(separatorMatches), _step; try { for (_iterator.s(); !(_step = _iterator.n()).done;) { var separatorMatch = _step.value; var wordSeparator = separatorMatch[0]; var word = line.substring(previousIndex, separatorMatch.index); previousIndex = separatorMatch.index + wordSeparator.length; var testLine = subline.length === 0 ? word : subline + word + wordSeparator; var testDims = this.calculateLabelDimensions(ele, testLine); var testW = testDims.width; if (testW <= maxW) { // word fits on current line subline += word + wordSeparator; } else { // word starts new line if (subline) { wrappedLines.push(subline); } subline = word + wordSeparator; } } // if there's remaining text, put it in a wrapped line } catch (err) { _iterator.e(err); } finally { _iterator.f(); } if (!subline.match(/^[\s\u200b]+$/)) { wrappedLines.push(subline); } } else { // line is already short enough wrappedLines.push(line); } } // for rscratch('labelWrapCachedLines', wrappedLines); text = rscratch('labelWrapCachedText', wrappedLines.join('\n')); rscratch('labelWrapKey', labelKey); } else if (wrapStyle === 'ellipsis') { var _maxW = ele.pstyle('text-max-width').pfValue; var ellipsized = ''; var ellipsis = "\u2026"; var incLastCh = false; if (this.calculateLabelDimensions(ele, text).width < _maxW) { // the label already fits return text; } for (var i = 0; i < text.length; i++) { var widthWithNextCh = this.calculateLabelDimensions(ele, ellipsized + text[i] + ellipsis).width; if (widthWithNextCh > _maxW) { break; } ellipsized += text[i]; if (i === text.length - 1) { incLastCh = true; } } if (!incLastCh) { ellipsized += ellipsis; } return ellipsized; } // if ellipsize return text; }; BRp$9.getLabelJustification = function (ele) { var justification = ele.pstyle('text-justification').strValue; var textHalign = ele.pstyle('text-halign').strValue; if (justification === 'auto') { if (ele.isNode()) { switch (textHalign) { case 'left': return 'right'; case 'right': return 'left'; default: return 'center'; } } else { return 'center'; } } else { return justification; } }; BRp$9.calculateLabelDimensions = function (ele, text) { var r = this; var containerWindow = r.cy.window(); var document = containerWindow.document; var cacheKey = hashString(text, ele._private.labelDimsKey); var cache = r.labelDimCache || (r.labelDimCache = []); var existingVal = cache[cacheKey]; if (existingVal != null) { return existingVal; } var padding = 0; // add padding around text dims, as the measurement isn't that accurate var fStyle = ele.pstyle('font-style').strValue; var size = ele.pstyle('font-size').pfValue; var family = ele.pstyle('font-family').strValue; var weight = ele.pstyle('font-weight').strValue; var canvas = this.labelCalcCanvas; var c2d = this.labelCalcCanvasContext; if (!canvas) { canvas = this.labelCalcCanvas = document.createElement('canvas'); c2d = this.labelCalcCanvasContext = canvas.getContext('2d'); var ds = canvas.style; ds.position = 'absolute'; ds.left = '-9999px'; ds.top = '-9999px'; ds.zIndex = '-1'; ds.visibility = 'hidden'; ds.pointerEvents = 'none'; } c2d.font = "".concat(fStyle, " ").concat(weight, " ").concat(size, "px ").concat(family); var width = 0; var height = 0; var lines = text.split('\n'); for (var i = 0; i < lines.length; i++) { var line = lines[i]; var metrics = c2d.measureText(line); var w = Math.ceil(metrics.width); var h = size; width = Math.max(w, width); height += h; } width += padding; height += padding; return cache[cacheKey] = { width: width, height: height }; }; BRp$9.calculateLabelAngle = function (ele, prefix) { var _p = ele._private; var rs = _p.rscratch; var isEdge = ele.isEdge(); var prefixDash = prefix ? prefix + '-' : ''; var rot = ele.pstyle(prefixDash + 'text-rotation'); var rotStr = rot.strValue; if (rotStr === 'none') { return 0; } else if (isEdge && rotStr === 'autorotate') { return rs.labelAutoAngle; } else if (rotStr === 'autorotate') { return 0; } else { return rot.pfValue; } }; BRp$9.calculateLabelAngles = function (ele) { var r = this; var isEdge = ele.isEdge(); var _p = ele._private; var rs = _p.rscratch; rs.labelAngle = r.calculateLabelAngle(ele); if (isEdge) { rs.sourceLabelAngle = r.calculateLabelAngle(ele, 'source'); rs.targetLabelAngle = r.calculateLabelAngle(ele, 'target'); } }; var BRp$8 = {}; var TOO_SMALL_CUT_RECT = 28; var warnedCutRect = false; BRp$8.getNodeShape = function (node) { var r = this; var shape = node.pstyle('shape').value; if (shape === 'cutrectangle' && (node.width() < TOO_SMALL_CUT_RECT || node.height() < TOO_SMALL_CUT_RECT)) { if (!warnedCutRect) { warn('The `cutrectangle` node shape can not be used at small sizes so `rectangle` is used instead'); warnedCutRect = true; } return 'rectangle'; } if (node.isParent()) { if (shape === 'rectangle' || shape === 'roundrectangle' || shape === 'round-rectangle' || shape === 'cutrectangle' || shape === 'cut-rectangle' || shape === 'barrel') { return shape; } else { return 'rectangle'; } } if (shape === 'polygon') { var points = node.pstyle('shape-polygon-points').value; return r.nodeShapes.makePolygon(points).name; } return shape; }; var BRp$7 = {}; BRp$7.registerCalculationListeners = function () { var cy = this.cy; var elesToUpdate = cy.collection(); var r = this; var enqueue = function enqueue(eles) { var dirtyStyleCaches = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; elesToUpdate.merge(eles); if (dirtyStyleCaches) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var _p = ele._private; var rstyle = _p.rstyle; rstyle.clean = false; rstyle.cleanConnected = false; } } }; r.binder(cy).on('bounds.* dirty.*', function onDirtyBounds(e) { var ele = e.target; enqueue(ele); }).on('style.* background.*', function onDirtyStyle(e) { var ele = e.target; enqueue(ele, false); }); var updateEleCalcs = function updateEleCalcs(willDraw) { if (willDraw) { var fns = r.onUpdateEleCalcsFns; // because we need to have up-to-date style (e.g. stylesheet mappers) // before calculating rendered style (and pstyle might not be called yet) elesToUpdate.cleanStyle(); for (var i = 0; i < elesToUpdate.length; i++) { var ele = elesToUpdate[i]; var rstyle = ele._private.rstyle; if (ele.isNode() && !rstyle.cleanConnected) { enqueue(ele.connectedEdges()); rstyle.cleanConnected = true; } } if (fns) { for (var _i = 0; _i < fns.length; _i++) { var fn = fns[_i]; fn(willDraw, elesToUpdate); } } r.recalculateRenderedStyle(elesToUpdate); elesToUpdate = cy.collection(); } }; r.flushRenderedStyleQueue = function () { updateEleCalcs(true); }; r.beforeRender(updateEleCalcs, r.beforeRenderPriorities.eleCalcs); }; BRp$7.onUpdateEleCalcs = function (fn) { var fns = this.onUpdateEleCalcsFns = this.onUpdateEleCalcsFns || []; fns.push(fn); }; BRp$7.recalculateRenderedStyle = function (eles, useCache) { var isCleanConnected = function isCleanConnected(ele) { return ele._private.rstyle.cleanConnected; }; var edges = []; var nodes = []; // the renderer can't be used for calcs when destroyed, e.g. ele.boundingBox() if (this.destroyed) { return; } // use cache by default for perf if (useCache === undefined) { useCache = true; } for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var _p = ele._private; var rstyle = _p.rstyle; // an edge may be implicitly dirty b/c of one of its connected nodes // (and a request for recalc may come in between frames) if (ele.isEdge() && (!isCleanConnected(ele.source()) || !isCleanConnected(ele.target()))) { rstyle.clean = false; } // only update if dirty and in graph if (useCache && rstyle.clean || ele.removed()) { continue; } // only update if not display: none if (ele.pstyle('display').value === 'none') { continue; } if (_p.group === 'nodes') { nodes.push(ele); } else { // edges edges.push(ele); } rstyle.clean = true; } // update node data from projections for (var _i2 = 0; _i2 < nodes.length; _i2++) { var _ele = nodes[_i2]; var _p2 = _ele._private; var _rstyle = _p2.rstyle; var pos = _ele.position(); this.recalculateNodeLabelProjection(_ele); _rstyle.nodeX = pos.x; _rstyle.nodeY = pos.y; _rstyle.nodeW = _ele.pstyle('width').pfValue; _rstyle.nodeH = _ele.pstyle('height').pfValue; } this.recalculateEdgeProjections(edges); // update edge data from projections for (var _i3 = 0; _i3 < edges.length; _i3++) { var _ele2 = edges[_i3]; var _p3 = _ele2._private; var _rstyle2 = _p3.rstyle; var rs = _p3.rscratch; // update rstyle positions _rstyle2.srcX = rs.arrowStartX; _rstyle2.srcY = rs.arrowStartY; _rstyle2.tgtX = rs.arrowEndX; _rstyle2.tgtY = rs.arrowEndY; _rstyle2.midX = rs.midX; _rstyle2.midY = rs.midY; _rstyle2.labelAngle = rs.labelAngle; _rstyle2.sourceLabelAngle = rs.sourceLabelAngle; _rstyle2.targetLabelAngle = rs.targetLabelAngle; } }; var BRp$6 = {}; BRp$6.updateCachedGrabbedEles = function () { var eles = this.cachedZSortedEles; if (!eles) { // just let this be recalculated on the next z sort tick return; } eles.drag = []; eles.nondrag = []; var grabTargets = []; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var rs = ele._private.rscratch; if (ele.grabbed() && !ele.isParent()) { grabTargets.push(ele); } else if (rs.inDragLayer) { eles.drag.push(ele); } else { eles.nondrag.push(ele); } } // put the grab target nodes last so it's on top of its neighbourhood for (var i = 0; i < grabTargets.length; i++) { var ele = grabTargets[i]; eles.drag.push(ele); } }; BRp$6.invalidateCachedZSortedEles = function () { this.cachedZSortedEles = null; }; BRp$6.getCachedZSortedEles = function (forceRecalc) { if (forceRecalc || !this.cachedZSortedEles) { var eles = this.cy.mutableElements().toArray(); eles.sort(zIndexSort); eles.interactive = eles.filter(function (ele) { return ele.interactive(); }); this.cachedZSortedEles = eles; this.updateCachedGrabbedEles(); } else { eles = this.cachedZSortedEles; } return eles; }; var BRp$5 = {}; [BRp$e, BRp$d, BRp$c, BRp$b, BRp$a, BRp$9, BRp$8, BRp$7, BRp$6].forEach(function (props) { extend(BRp$5, props); }); var BRp$4 = {}; BRp$4.getCachedImage = function (url, crossOrigin, onLoad) { var r = this; var imageCache = r.imageCache = r.imageCache || {}; var cache = imageCache[url]; if (cache) { if (!cache.image.complete) { cache.image.addEventListener('load', onLoad); } return cache.image; } else { cache = imageCache[url] = imageCache[url] || {}; var image = cache.image = new Image(); // eslint-disable-line no-undef image.addEventListener('load', onLoad); image.addEventListener('error', function () { image.error = true; }); // #1582 safari doesn't load data uris with crossOrigin properly // https://bugs.webkit.org/show_bug.cgi?id=123978 var dataUriPrefix = 'data:'; var isDataUri = url.substring(0, dataUriPrefix.length).toLowerCase() === dataUriPrefix; if (!isDataUri) { // if crossorigin is 'null'(stringified), then manually set it to null crossOrigin = crossOrigin === 'null' ? null : crossOrigin; image.crossOrigin = crossOrigin; // prevent tainted canvas } image.src = url; return image; } }; var BRp$3 = {}; /* global document, ResizeObserver, MutationObserver */ BRp$3.registerBinding = function (target, event, handler, useCapture) { // eslint-disable-line no-unused-vars var args = Array.prototype.slice.apply(arguments, [1]); // copy var b = this.binder(target); return b.on.apply(b, args); }; BRp$3.binder = function (tgt) { var r = this; var containerWindow = r.cy.window(); var tgtIsDom = tgt === containerWindow || tgt === containerWindow.document || tgt === containerWindow.document.body || domElement(tgt); if (r.supportsPassiveEvents == null) { // from https://github.com/WICG/EventListenerOptions/blob/gh-pages/explainer.md#feature-detection var supportsPassive = false; try { var opts = Object.defineProperty({}, 'passive', { get: function get() { supportsPassive = true; return true; } }); containerWindow.addEventListener('test', null, opts); } catch (err) { // not supported } r.supportsPassiveEvents = supportsPassive; } var on = function on(event, handler, useCapture) { var args = Array.prototype.slice.call(arguments); if (tgtIsDom && r.supportsPassiveEvents) { // replace useCapture w/ opts obj args[2] = { capture: useCapture != null ? useCapture : false, passive: false, once: false }; } r.bindings.push({ target: tgt, args: args }); (tgt.addEventListener || tgt.on).apply(tgt, args); return this; }; return { on: on, addEventListener: on, addListener: on, bind: on }; }; BRp$3.nodeIsDraggable = function (node) { return node && node.isNode() && !node.locked() && node.grabbable(); }; BRp$3.nodeIsGrabbable = function (node) { return this.nodeIsDraggable(node) && node.interactive(); }; BRp$3.load = function () { var r = this; var containerWindow = r.cy.window(); var isSelected = function isSelected(ele) { return ele.selected(); }; var triggerEvents = function triggerEvents(target, names, e, position) { if (target == null) { target = r.cy; } for (var i = 0; i < names.length; i++) { var name = names[i]; target.emit({ originalEvent: e, type: name, position: position }); } }; var isMultSelKeyDown = function isMultSelKeyDown(e) { return e.shiftKey || e.metaKey || e.ctrlKey; // maybe e.altKey }; var allowPanningPassthrough = function allowPanningPassthrough(down, downs) { var allowPassthrough = true; if (r.cy.hasCompoundNodes() && down && down.pannable()) { // a grabbable compound node below the ele => no passthrough panning for (var i = 0; downs && i < downs.length; i++) { var down = downs[i]; //if any parent node in event hierarchy isn't pannable, reject passthrough if (down.isNode() && down.isParent() && !down.pannable()) { allowPassthrough = false; break; } } } else { allowPassthrough = true; } return allowPassthrough; }; var setGrabbed = function setGrabbed(ele) { ele[0]._private.grabbed = true; }; var setFreed = function setFreed(ele) { ele[0]._private.grabbed = false; }; var setInDragLayer = function setInDragLayer(ele) { ele[0]._private.rscratch.inDragLayer = true; }; var setOutDragLayer = function setOutDragLayer(ele) { ele[0]._private.rscratch.inDragLayer = false; }; var setGrabTarget = function setGrabTarget(ele) { ele[0]._private.rscratch.isGrabTarget = true; }; var removeGrabTarget = function removeGrabTarget(ele) { ele[0]._private.rscratch.isGrabTarget = false; }; var addToDragList = function addToDragList(ele, opts) { var list = opts.addToList; var listHasEle = list.has(ele); if (!listHasEle && ele.grabbable() && !ele.locked()) { list.merge(ele); setGrabbed(ele); } }; // helper function to determine which child nodes and inner edges // of a compound node to be dragged as well as the grabbed and selected nodes var addDescendantsToDrag = function addDescendantsToDrag(node, opts) { if (!node.cy().hasCompoundNodes()) { return; } if (opts.inDragLayer == null && opts.addToList == null) { return; } // nothing to do var innerNodes = node.descendants(); if (opts.inDragLayer) { innerNodes.forEach(setInDragLayer); innerNodes.connectedEdges().forEach(setInDragLayer); } if (opts.addToList) { addToDragList(innerNodes, opts); } }; // adds the given nodes and its neighbourhood to the drag layer var addNodesToDrag = function addNodesToDrag(nodes, opts) { opts = opts || {}; var hasCompoundNodes = nodes.cy().hasCompoundNodes(); if (opts.inDragLayer) { nodes.forEach(setInDragLayer); nodes.neighborhood().stdFilter(function (ele) { return !hasCompoundNodes || ele.isEdge(); }).forEach(setInDragLayer); } if (opts.addToList) { nodes.forEach(function (ele) { addToDragList(ele, opts); }); } addDescendantsToDrag(nodes, opts); // always add to drag // also add nodes and edges related to the topmost ancestor updateAncestorsInDragLayer(nodes, { inDragLayer: opts.inDragLayer }); r.updateCachedGrabbedEles(); }; var addNodeToDrag = addNodesToDrag; var freeDraggedElements = function freeDraggedElements(grabbedEles) { if (!grabbedEles) { return; } // just go over all elements rather than doing a bunch of (possibly expensive) traversals r.getCachedZSortedEles().forEach(function (ele) { setFreed(ele); setOutDragLayer(ele); removeGrabTarget(ele); }); r.updateCachedGrabbedEles(); }; // helper function to determine which ancestor nodes and edges should go // to the drag layer (or should be removed from drag layer). var updateAncestorsInDragLayer = function updateAncestorsInDragLayer(node, opts) { if (opts.inDragLayer == null && opts.addToList == null) { return; } // nothing to do if (!node.cy().hasCompoundNodes()) { return; } // find top-level parent var parent = node.ancestors().orphans(); // no parent node: no nodes to add to the drag layer if (parent.same(node)) { return; } var nodes = parent.descendants().spawnSelf().merge(parent).unmerge(node).unmerge(node.descendants()); var edges = nodes.connectedEdges(); if (opts.inDragLayer) { edges.forEach(setInDragLayer); nodes.forEach(setInDragLayer); } if (opts.addToList) { nodes.forEach(function (ele) { addToDragList(ele, opts); }); } }; var blurActiveDomElement = function blurActiveDomElement() { if (document.activeElement != null && document.activeElement.blur != null) { document.activeElement.blur(); } }; var haveMutationsApi = typeof MutationObserver !== 'undefined'; var haveResizeObserverApi = typeof ResizeObserver !== 'undefined'; // watch for when the cy container is removed from the dom if (haveMutationsApi) { r.removeObserver = new MutationObserver(function (mutns) { // eslint-disable-line no-undef for (var i = 0; i < mutns.length; i++) { var mutn = mutns[i]; var rNodes = mutn.removedNodes; if (rNodes) { for (var j = 0; j < rNodes.length; j++) { var rNode = rNodes[j]; if (rNode === r.container) { r.destroy(); break; } } } } }); if (r.container.parentNode) { r.removeObserver.observe(r.container.parentNode, { childList: true }); } } else { r.registerBinding(r.container, 'DOMNodeRemoved', function (e) { // eslint-disable-line no-unused-vars r.destroy(); }); } var onResize = debounce_1(function () { r.cy.resize(); }, 100); if (haveMutationsApi) { r.styleObserver = new MutationObserver(onResize); // eslint-disable-line no-undef r.styleObserver.observe(r.container, { attributes: true }); } // auto resize r.registerBinding(containerWindow, 'resize', onResize); // eslint-disable-line no-undef if (haveResizeObserverApi) { r.resizeObserver = new ResizeObserver(onResize); // eslint-disable-line no-undef r.resizeObserver.observe(r.container); } var forEachUp = function forEachUp(domEle, fn) { while (domEle != null) { fn(domEle); domEle = domEle.parentNode; } }; var invalidateCoords = function invalidateCoords() { r.invalidateContainerClientCoordsCache(); }; forEachUp(r.container, function (domEle) { r.registerBinding(domEle, 'transitionend', invalidateCoords); r.registerBinding(domEle, 'animationend', invalidateCoords); r.registerBinding(domEle, 'scroll', invalidateCoords); }); // stop right click menu from appearing on cy r.registerBinding(r.container, 'contextmenu', function (e) { e.preventDefault(); }); var inBoxSelection = function inBoxSelection() { return r.selection[4] !== 0; }; var eventInContainer = function eventInContainer(e) { // save cycles if mouse events aren't to be captured var containerPageCoords = r.findContainerClientCoords(); var x = containerPageCoords[0]; var y = containerPageCoords[1]; var width = containerPageCoords[2]; var height = containerPageCoords[3]; var positions = e.touches ? e.touches : [e]; var atLeastOnePosInside = false; for (var i = 0; i < positions.length; i++) { var p = positions[i]; if (x <= p.clientX && p.clientX <= x + width && y <= p.clientY && p.clientY <= y + height) { atLeastOnePosInside = true; break; } } if (!atLeastOnePosInside) { return false; } var container = r.container; var target = e.target; var tParent = target.parentNode; var containerIsTarget = false; while (tParent) { if (tParent === container) { containerIsTarget = true; break; } tParent = tParent.parentNode; } if (!containerIsTarget) { return false; } // if target is outisde cy container, then this event is not for us return true; }; // Primary key r.registerBinding(r.container, 'mousedown', function mousedownHandler(e) { if (!eventInContainer(e)) { return; } e.preventDefault(); blurActiveDomElement(); r.hoverData.capture = true; r.hoverData.which = e.which; var cy = r.cy; var gpos = [e.clientX, e.clientY]; var pos = r.projectIntoViewport(gpos[0], gpos[1]); var select = r.selection; var nears = r.findNearestElements(pos[0], pos[1], true, false); var near = nears[0]; var draggedElements = r.dragData.possibleDragElements; r.hoverData.mdownPos = pos; r.hoverData.mdownGPos = gpos; var checkForTaphold = function checkForTaphold() { r.hoverData.tapholdCancelled = false; clearTimeout(r.hoverData.tapholdTimeout); r.hoverData.tapholdTimeout = setTimeout(function () { if (r.hoverData.tapholdCancelled) { return; } else { var ele = r.hoverData.down; if (ele) { ele.emit({ originalEvent: e, type: 'taphold', position: { x: pos[0], y: pos[1] } }); } else { cy.emit({ originalEvent: e, type: 'taphold', position: { x: pos[0], y: pos[1] } }); } } }, r.tapholdDuration); }; // Right click button if (e.which == 3) { r.hoverData.cxtStarted = true; var cxtEvt = { originalEvent: e, type: 'cxttapstart', position: { x: pos[0], y: pos[1] } }; if (near) { near.activate(); near.emit(cxtEvt); r.hoverData.down = near; } else { cy.emit(cxtEvt); } r.hoverData.downTime = new Date().getTime(); r.hoverData.cxtDragged = false; // Primary button } else if (e.which == 1) { if (near) { near.activate(); } // Element dragging { // If something is under the cursor and it is draggable, prepare to grab it if (near != null) { if (r.nodeIsGrabbable(near)) { var makeEvent = function makeEvent(type) { return { originalEvent: e, type: type, position: { x: pos[0], y: pos[1] } }; }; var triggerGrab = function triggerGrab(ele) { ele.emit(makeEvent('grab')); }; setGrabTarget(near); if (!near.selected()) { draggedElements = r.dragData.possibleDragElements = cy.collection(); addNodeToDrag(near, { addToList: draggedElements }); near.emit(makeEvent('grabon')).emit(makeEvent('grab')); } else { draggedElements = r.dragData.possibleDragElements = cy.collection(); var selectedNodes = cy.$(function (ele) { return ele.isNode() && ele.selected() && r.nodeIsGrabbable(ele); }); addNodesToDrag(selectedNodes, { addToList: draggedElements }); near.emit(makeEvent('grabon')); selectedNodes.forEach(triggerGrab); } r.redrawHint('eles', true); r.redrawHint('drag', true); } } r.hoverData.down = near; r.hoverData.downs = nears; r.hoverData.downTime = new Date().getTime(); } triggerEvents(near, ['mousedown', 'tapstart', 'vmousedown'], e, { x: pos[0], y: pos[1] }); if (near == null) { select[4] = 1; r.data.bgActivePosistion = { x: pos[0], y: pos[1] }; r.redrawHint('select', true); r.redraw(); } else if (near.pannable()) { select[4] = 1; // for future pan } checkForTaphold(); } // Initialize selection box coordinates select[0] = select[2] = pos[0]; select[1] = select[3] = pos[1]; }, false); r.registerBinding(containerWindow, 'mousemove', function mousemoveHandler(e) { // eslint-disable-line no-undef var capture = r.hoverData.capture; if (!capture && !eventInContainer(e)) { return; } var preventDefault = false; var cy = r.cy; var zoom = cy.zoom(); var gpos = [e.clientX, e.clientY]; var pos = r.projectIntoViewport(gpos[0], gpos[1]); var mdownPos = r.hoverData.mdownPos; var mdownGPos = r.hoverData.mdownGPos; var select = r.selection; var near = null; if (!r.hoverData.draggingEles && !r.hoverData.dragging && !r.hoverData.selecting) { near = r.findNearestElement(pos[0], pos[1], true, false); } var last = r.hoverData.last; var down = r.hoverData.down; var disp = [pos[0] - select[2], pos[1] - select[3]]; var draggedElements = r.dragData.possibleDragElements; var isOverThresholdDrag; if (mdownGPos) { var dx = gpos[0] - mdownGPos[0]; var dx2 = dx * dx; var dy = gpos[1] - mdownGPos[1]; var dy2 = dy * dy; var dist2 = dx2 + dy2; r.hoverData.isOverThresholdDrag = isOverThresholdDrag = dist2 >= r.desktopTapThreshold2; } var multSelKeyDown = isMultSelKeyDown(e); if (isOverThresholdDrag) { r.hoverData.tapholdCancelled = true; } var updateDragDelta = function updateDragDelta() { var dragDelta = r.hoverData.dragDelta = r.hoverData.dragDelta || []; if (dragDelta.length === 0) { dragDelta.push(disp[0]); dragDelta.push(disp[1]); } else { dragDelta[0] += disp[0]; dragDelta[1] += disp[1]; } }; preventDefault = true; triggerEvents(near, ['mousemove', 'vmousemove', 'tapdrag'], e, { x: pos[0], y: pos[1] }); var goIntoBoxMode = function goIntoBoxMode() { r.data.bgActivePosistion = undefined; if (!r.hoverData.selecting) { cy.emit({ originalEvent: e, type: 'boxstart', position: { x: pos[0], y: pos[1] } }); } select[4] = 1; r.hoverData.selecting = true; r.redrawHint('select', true); r.redraw(); }; // trigger context drag if rmouse down if (r.hoverData.which === 3) { // but only if over threshold if (isOverThresholdDrag) { var cxtEvt = { originalEvent: e, type: 'cxtdrag', position: { x: pos[0], y: pos[1] } }; if (down) { down.emit(cxtEvt); } else { cy.emit(cxtEvt); } r.hoverData.cxtDragged = true; if (!r.hoverData.cxtOver || near !== r.hoverData.cxtOver) { if (r.hoverData.cxtOver) { r.hoverData.cxtOver.emit({ originalEvent: e, type: 'cxtdragout', position: { x: pos[0], y: pos[1] } }); } r.hoverData.cxtOver = near; if (near) { near.emit({ originalEvent: e, type: 'cxtdragover', position: { x: pos[0], y: pos[1] } }); } } } // Check if we are drag panning the entire graph } else if (r.hoverData.dragging) { preventDefault = true; if (cy.panningEnabled() && cy.userPanningEnabled()) { var deltaP; if (r.hoverData.justStartedPan) { var mdPos = r.hoverData.mdownPos; deltaP = { x: (pos[0] - mdPos[0]) * zoom, y: (pos[1] - mdPos[1]) * zoom }; r.hoverData.justStartedPan = false; } else { deltaP = { x: disp[0] * zoom, y: disp[1] * zoom }; } cy.panBy(deltaP); cy.emit('dragpan'); r.hoverData.dragged = true; } // Needs reproject due to pan changing viewport pos = r.projectIntoViewport(e.clientX, e.clientY); // Checks primary button down & out of time & mouse not moved much } else if (select[4] == 1 && (down == null || down.pannable())) { if (isOverThresholdDrag) { if (!r.hoverData.dragging && cy.boxSelectionEnabled() && (multSelKeyDown || !cy.panningEnabled() || !cy.userPanningEnabled())) { goIntoBoxMode(); } else if (!r.hoverData.selecting && cy.panningEnabled() && cy.userPanningEnabled()) { var allowPassthrough = allowPanningPassthrough(down, r.hoverData.downs); if (allowPassthrough) { r.hoverData.dragging = true; r.hoverData.justStartedPan = true; select[4] = 0; r.data.bgActivePosistion = array2point(mdownPos); r.redrawHint('select', true); r.redraw(); } } if (down && down.pannable() && down.active()) { down.unactivate(); } } } else { if (down && down.pannable() && down.active()) { down.unactivate(); } if ((!down || !down.grabbed()) && near != last) { if (last) { triggerEvents(last, ['mouseout', 'tapdragout'], e, { x: pos[0], y: pos[1] }); } if (near) { triggerEvents(near, ['mouseover', 'tapdragover'], e, { x: pos[0], y: pos[1] }); } r.hoverData.last = near; } if (down) { if (isOverThresholdDrag) { // then we can take action if (cy.boxSelectionEnabled() && multSelKeyDown) { // then selection overrides if (down && down.grabbed()) { freeDraggedElements(draggedElements); down.emit('freeon'); draggedElements.emit('free'); if (r.dragData.didDrag) { down.emit('dragfreeon'); draggedElements.emit('dragfree'); } } goIntoBoxMode(); } else if (down && down.grabbed() && r.nodeIsDraggable(down)) { // drag node var justStartedDrag = !r.dragData.didDrag; if (justStartedDrag) { r.redrawHint('eles', true); } r.dragData.didDrag = true; // indicate that we actually did drag the node // now, add the elements to the drag layer if not done already if (!r.hoverData.draggingEles) { addNodesToDrag(draggedElements, { inDragLayer: true }); } var totalShift = { x: 0, y: 0 }; if (number$1(disp[0]) && number$1(disp[1])) { totalShift.x += disp[0]; totalShift.y += disp[1]; if (justStartedDrag) { var dragDelta = r.hoverData.dragDelta; if (dragDelta && number$1(dragDelta[0]) && number$1(dragDelta[1])) { totalShift.x += dragDelta[0]; totalShift.y += dragDelta[1]; } } } r.hoverData.draggingEles = true; draggedElements.silentShift(totalShift).emit('position drag'); r.redrawHint('drag', true); r.redraw(); } } else { // otherwise save drag delta for when we actually start dragging so the relative grab pos is constant updateDragDelta(); } } // prevent the dragging from triggering text selection on the page preventDefault = true; } select[2] = pos[0]; select[3] = pos[1]; if (preventDefault) { if (e.stopPropagation) e.stopPropagation(); if (e.preventDefault) e.preventDefault(); return false; } }, false); var clickTimeout, didDoubleClick, prevClickTimeStamp; r.registerBinding(containerWindow, 'mouseup', function mouseupHandler(e) { // eslint-disable-line no-undef var capture = r.hoverData.capture; if (!capture) { return; } r.hoverData.capture = false; var cy = r.cy; var pos = r.projectIntoViewport(e.clientX, e.clientY); var select = r.selection; var near = r.findNearestElement(pos[0], pos[1], true, false); var draggedElements = r.dragData.possibleDragElements; var down = r.hoverData.down; var multSelKeyDown = isMultSelKeyDown(e); if (r.data.bgActivePosistion) { r.redrawHint('select', true); r.redraw(); } r.hoverData.tapholdCancelled = true; r.data.bgActivePosistion = undefined; // not active bg now if (down) { down.unactivate(); } if (r.hoverData.which === 3) { var cxtEvt = { originalEvent: e, type: 'cxttapend', position: { x: pos[0], y: pos[1] } }; if (down) { down.emit(cxtEvt); } else { cy.emit(cxtEvt); } if (!r.hoverData.cxtDragged) { var cxtTap = { originalEvent: e, type: 'cxttap', position: { x: pos[0], y: pos[1] } }; if (down) { down.emit(cxtTap); } else { cy.emit(cxtTap); } } r.hoverData.cxtDragged = false; r.hoverData.which = null; } else if (r.hoverData.which === 1) { triggerEvents(near, ['mouseup', 'tapend', 'vmouseup'], e, { x: pos[0], y: pos[1] }); if (!r.dragData.didDrag && // didn't move a node around !r.hoverData.dragged && // didn't pan !r.hoverData.selecting && // not box selection !r.hoverData.isOverThresholdDrag // didn't move too much ) { triggerEvents(down, ["click", "tap", "vclick"], e, { x: pos[0], y: pos[1] }); didDoubleClick = false; if (e.timeStamp - prevClickTimeStamp <= cy.multiClickDebounceTime()) { clickTimeout && clearTimeout(clickTimeout); didDoubleClick = true; prevClickTimeStamp = null; triggerEvents(down, ["dblclick", "dbltap", "vdblclick"], e, { x: pos[0], y: pos[1] }); } else { clickTimeout = setTimeout(function () { if (didDoubleClick) return; triggerEvents(down, ["oneclick", "onetap", "voneclick"], e, { x: pos[0], y: pos[1] }); }, cy.multiClickDebounceTime()); prevClickTimeStamp = e.timeStamp; } } // Deselect all elements if nothing is currently under the mouse cursor and we aren't dragging something if (down == null // not mousedown on node && !r.dragData.didDrag // didn't move the node around && !r.hoverData.selecting // not box selection && !r.hoverData.dragged // didn't pan && !isMultSelKeyDown(e)) { cy.$(isSelected).unselect(['tapunselect']); if (draggedElements.length > 0) { r.redrawHint('eles', true); } r.dragData.possibleDragElements = draggedElements = cy.collection(); } // Single selection if (near == down && !r.dragData.didDrag && !r.hoverData.selecting) { if (near != null && near._private.selectable) { if (r.hoverData.dragging) ; else if (cy.selectionType() === 'additive' || multSelKeyDown) { if (near.selected()) { near.unselect(['tapunselect']); } else { near.select(['tapselect']); } } else { if (!multSelKeyDown) { cy.$(isSelected).unmerge(near).unselect(['tapunselect']); near.select(['tapselect']); } } r.redrawHint('eles', true); } } if (r.hoverData.selecting) { var box = cy.collection(r.getAllInBox(select[0], select[1], select[2], select[3])); r.redrawHint('select', true); if (box.length > 0) { r.redrawHint('eles', true); } cy.emit({ type: 'boxend', originalEvent: e, position: { x: pos[0], y: pos[1] } }); var eleWouldBeSelected = function eleWouldBeSelected(ele) { return ele.selectable() && !ele.selected(); }; if (cy.selectionType() === 'additive') { box.emit('box').stdFilter(eleWouldBeSelected).select().emit('boxselect'); } else { if (!multSelKeyDown) { cy.$(isSelected).unmerge(box).unselect(); } box.emit('box').stdFilter(eleWouldBeSelected).select().emit('boxselect'); } // always need redraw in case eles unselectable r.redraw(); } // Cancel drag pan if (r.hoverData.dragging) { r.hoverData.dragging = false; r.redrawHint('select', true); r.redrawHint('eles', true); r.redraw(); } if (!select[4]) { r.redrawHint('drag', true); r.redrawHint('eles', true); var downWasGrabbed = down && down.grabbed(); freeDraggedElements(draggedElements); if (downWasGrabbed) { down.emit('freeon'); draggedElements.emit('free'); if (r.dragData.didDrag) { down.emit('dragfreeon'); draggedElements.emit('dragfree'); } } } } // else not right mouse select[4] = 0; r.hoverData.down = null; r.hoverData.cxtStarted = false; r.hoverData.draggingEles = false; r.hoverData.selecting = false; r.hoverData.isOverThresholdDrag = false; r.dragData.didDrag = false; r.hoverData.dragged = false; r.hoverData.dragDelta = []; r.hoverData.mdownPos = null; r.hoverData.mdownGPos = null; }, false); var wheelHandler = function wheelHandler(e) { if (r.scrollingPage) { return; } // while scrolling, ignore wheel-to-zoom var cy = r.cy; var zoom = cy.zoom(); var pan = cy.pan(); var pos = r.projectIntoViewport(e.clientX, e.clientY); var rpos = [pos[0] * zoom + pan.x, pos[1] * zoom + pan.y]; if (r.hoverData.draggingEles || r.hoverData.dragging || r.hoverData.cxtStarted || inBoxSelection()) { // if pan dragging or cxt dragging, wheel movements make no zoom e.preventDefault(); return; } if (cy.panningEnabled() && cy.userPanningEnabled() && cy.zoomingEnabled() && cy.userZoomingEnabled()) { e.preventDefault(); r.data.wheelZooming = true; clearTimeout(r.data.wheelTimeout); r.data.wheelTimeout = setTimeout(function () { r.data.wheelZooming = false; r.redrawHint('eles', true); r.redraw(); }, 150); var diff; if (e.deltaY != null) { diff = e.deltaY / -250; } else if (e.wheelDeltaY != null) { diff = e.wheelDeltaY / 1000; } else { diff = e.wheelDelta / 1000; } diff = diff * r.wheelSensitivity; var needsWheelFix = e.deltaMode === 1; if (needsWheelFix) { // fixes slow wheel events on ff/linux and ff/windows diff *= 33; } var newZoom = cy.zoom() * Math.pow(10, diff); if (e.type === 'gesturechange') { newZoom = r.gestureStartZoom * e.scale; } cy.zoom({ level: newZoom, renderedPosition: { x: rpos[0], y: rpos[1] } }); cy.emit(e.type === 'gesturechange' ? 'pinchzoom' : 'scrollzoom'); } }; // Functions to help with whether mouse wheel should trigger zooming // -- r.registerBinding(r.container, 'wheel', wheelHandler, true); // disable nonstandard wheel events // r.registerBinding(r.container, 'mousewheel', wheelHandler, true); // r.registerBinding(r.container, 'DOMMouseScroll', wheelHandler, true); // r.registerBinding(r.container, 'MozMousePixelScroll', wheelHandler, true); // older firefox r.registerBinding(containerWindow, 'scroll', function scrollHandler(e) { // eslint-disable-line no-unused-vars r.scrollingPage = true; clearTimeout(r.scrollingPageTimeout); r.scrollingPageTimeout = setTimeout(function () { r.scrollingPage = false; }, 250); }, true); // desktop safari pinch to zoom start r.registerBinding(r.container, 'gesturestart', function gestureStartHandler(e) { r.gestureStartZoom = r.cy.zoom(); if (!r.hasTouchStarted) { // don't affect touch devices like iphone e.preventDefault(); } }, true); r.registerBinding(r.container, 'gesturechange', function (e) { if (!r.hasTouchStarted) { // don't affect touch devices like iphone wheelHandler(e); } }, true); // Functions to help with handling mouseout/mouseover on the Cytoscape container // Handle mouseout on Cytoscape container r.registerBinding(r.container, 'mouseout', function mouseOutHandler(e) { var pos = r.projectIntoViewport(e.clientX, e.clientY); r.cy.emit({ originalEvent: e, type: 'mouseout', position: { x: pos[0], y: pos[1] } }); }, false); r.registerBinding(r.container, 'mouseover', function mouseOverHandler(e) { var pos = r.projectIntoViewport(e.clientX, e.clientY); r.cy.emit({ originalEvent: e, type: 'mouseover', position: { x: pos[0], y: pos[1] } }); }, false); var f1x1, f1y1, f2x1, f2y1; // starting points for pinch-to-zoom var distance1, distance1Sq; // initial distance between finger 1 and finger 2 for pinch-to-zoom var center1, modelCenter1; // center point on start pinch to zoom var offsetLeft, offsetTop; var containerWidth, containerHeight; var twoFingersStartInside; var distance = function distance(x1, y1, x2, y2) { return Math.sqrt((x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1)); }; var distanceSq = function distanceSq(x1, y1, x2, y2) { return (x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1); }; var touchstartHandler; r.registerBinding(r.container, 'touchstart', touchstartHandler = function touchstartHandler(e) { r.hasTouchStarted = true; if (!eventInContainer(e)) { return; } blurActiveDomElement(); r.touchData.capture = true; r.data.bgActivePosistion = undefined; var cy = r.cy; var now = r.touchData.now; var earlier = r.touchData.earlier; if (e.touches[0]) { var pos = r.projectIntoViewport(e.touches[0].clientX, e.touches[0].clientY); now[0] = pos[0]; now[1] = pos[1]; } if (e.touches[1]) { var pos = r.projectIntoViewport(e.touches[1].clientX, e.touches[1].clientY); now[2] = pos[0]; now[3] = pos[1]; } if (e.touches[2]) { var pos = r.projectIntoViewport(e.touches[2].clientX, e.touches[2].clientY); now[4] = pos[0]; now[5] = pos[1]; } // record starting points for pinch-to-zoom if (e.touches[1]) { r.touchData.singleTouchMoved = true; freeDraggedElements(r.dragData.touchDragEles); var offsets = r.findContainerClientCoords(); offsetLeft = offsets[0]; offsetTop = offsets[1]; containerWidth = offsets[2]; containerHeight = offsets[3]; f1x1 = e.touches[0].clientX - offsetLeft; f1y1 = e.touches[0].clientY - offsetTop; f2x1 = e.touches[1].clientX - offsetLeft; f2y1 = e.touches[1].clientY - offsetTop; twoFingersStartInside = 0 <= f1x1 && f1x1 <= containerWidth && 0 <= f2x1 && f2x1 <= containerWidth && 0 <= f1y1 && f1y1 <= containerHeight && 0 <= f2y1 && f2y1 <= containerHeight; var pan = cy.pan(); var zoom = cy.zoom(); distance1 = distance(f1x1, f1y1, f2x1, f2y1); distance1Sq = distanceSq(f1x1, f1y1, f2x1, f2y1); center1 = [(f1x1 + f2x1) / 2, (f1y1 + f2y1) / 2]; modelCenter1 = [(center1[0] - pan.x) / zoom, (center1[1] - pan.y) / zoom]; // consider context tap var cxtDistThreshold = 200; var cxtDistThresholdSq = cxtDistThreshold * cxtDistThreshold; if (distance1Sq < cxtDistThresholdSq && !e.touches[2]) { var near1 = r.findNearestElement(now[0], now[1], true, true); var near2 = r.findNearestElement(now[2], now[3], true, true); if (near1 && near1.isNode()) { near1.activate().emit({ originalEvent: e, type: 'cxttapstart', position: { x: now[0], y: now[1] } }); r.touchData.start = near1; } else if (near2 && near2.isNode()) { near2.activate().emit({ originalEvent: e, type: 'cxttapstart', position: { x: now[0], y: now[1] } }); r.touchData.start = near2; } else { cy.emit({ originalEvent: e, type: 'cxttapstart', position: { x: now[0], y: now[1] } }); } if (r.touchData.start) { r.touchData.start._private.grabbed = false; } r.touchData.cxt = true; r.touchData.cxtDragged = false; r.data.bgActivePosistion = undefined; r.redraw(); return; } } if (e.touches[2]) { // ignore // safari on ios pans the page otherwise (normally you should be able to preventdefault on touchmove...) if (cy.boxSelectionEnabled()) { e.preventDefault(); } } else if (e.touches[1]) ; else if (e.touches[0]) { var nears = r.findNearestElements(now[0], now[1], true, true); var near = nears[0]; if (near != null) { near.activate(); r.touchData.start = near; r.touchData.starts = nears; if (r.nodeIsGrabbable(near)) { var draggedEles = r.dragData.touchDragEles = cy.collection(); var selectedNodes = null; r.redrawHint('eles', true); r.redrawHint('drag', true); if (near.selected()) { // reset drag elements, since near will be added again selectedNodes = cy.$(function (ele) { return ele.selected() && r.nodeIsGrabbable(ele); }); addNodesToDrag(selectedNodes, { addToList: draggedEles }); } else { addNodeToDrag(near, { addToList: draggedEles }); } setGrabTarget(near); var makeEvent = function makeEvent(type) { return { originalEvent: e, type: type, position: { x: now[0], y: now[1] } }; }; near.emit(makeEvent('grabon')); if (selectedNodes) { selectedNodes.forEach(function (n) { n.emit(makeEvent('grab')); }); } else { near.emit(makeEvent('grab')); } } } triggerEvents(near, ['touchstart', 'tapstart', 'vmousedown'], e, { x: now[0], y: now[1] }); if (near == null) { r.data.bgActivePosistion = { x: pos[0], y: pos[1] }; r.redrawHint('select', true); r.redraw(); } // Tap, taphold // ----- r.touchData.singleTouchMoved = false; r.touchData.singleTouchStartTime = +new Date(); clearTimeout(r.touchData.tapholdTimeout); r.touchData.tapholdTimeout = setTimeout(function () { if (r.touchData.singleTouchMoved === false && !r.pinching // if pinching, then taphold unselect shouldn't take effect && !r.touchData.selecting // box selection shouldn't allow taphold through ) { triggerEvents(r.touchData.start, ['taphold'], e, { x: now[0], y: now[1] }); } }, r.tapholdDuration); } if (e.touches.length >= 1) { var sPos = r.touchData.startPosition = [null, null, null, null, null, null]; for (var i = 0; i < now.length; i++) { sPos[i] = earlier[i] = now[i]; } var touch0 = e.touches[0]; r.touchData.startGPosition = [touch0.clientX, touch0.clientY]; } }, false); var touchmoveHandler; r.registerBinding(containerWindow, 'touchmove', touchmoveHandler = function touchmoveHandler(e) { // eslint-disable-line no-undef var capture = r.touchData.capture; if (!capture && !eventInContainer(e)) { return; } var select = r.selection; var cy = r.cy; var now = r.touchData.now; var earlier = r.touchData.earlier; var zoom = cy.zoom(); if (e.touches[0]) { var pos = r.projectIntoViewport(e.touches[0].clientX, e.touches[0].clientY); now[0] = pos[0]; now[1] = pos[1]; } if (e.touches[1]) { var pos = r.projectIntoViewport(e.touches[1].clientX, e.touches[1].clientY); now[2] = pos[0]; now[3] = pos[1]; } if (e.touches[2]) { var pos = r.projectIntoViewport(e.touches[2].clientX, e.touches[2].clientY); now[4] = pos[0]; now[5] = pos[1]; } var startGPos = r.touchData.startGPosition; var isOverThresholdDrag; if (capture && e.touches[0] && startGPos) { var disp = []; for (var j = 0; j < now.length; j++) { disp[j] = now[j] - earlier[j]; } var dx = e.touches[0].clientX - startGPos[0]; var dx2 = dx * dx; var dy = e.touches[0].clientY - startGPos[1]; var dy2 = dy * dy; var dist2 = dx2 + dy2; isOverThresholdDrag = dist2 >= r.touchTapThreshold2; } // context swipe cancelling if (capture && r.touchData.cxt) { e.preventDefault(); var f1x2 = e.touches[0].clientX - offsetLeft, f1y2 = e.touches[0].clientY - offsetTop; var f2x2 = e.touches[1].clientX - offsetLeft, f2y2 = e.touches[1].clientY - offsetTop; // var distance2 = distance( f1x2, f1y2, f2x2, f2y2 ); var distance2Sq = distanceSq(f1x2, f1y2, f2x2, f2y2); var factorSq = distance2Sq / distance1Sq; var distThreshold = 150; var distThresholdSq = distThreshold * distThreshold; var factorThreshold = 1.5; var factorThresholdSq = factorThreshold * factorThreshold; // cancel ctx gestures if the distance b/t the fingers increases if (factorSq >= factorThresholdSq || distance2Sq >= distThresholdSq) { r.touchData.cxt = false; r.data.bgActivePosistion = undefined; r.redrawHint('select', true); var cxtEvt = { originalEvent: e, type: 'cxttapend', position: { x: now[0], y: now[1] } }; if (r.touchData.start) { r.touchData.start.unactivate().emit(cxtEvt); r.touchData.start = null; } else { cy.emit(cxtEvt); } } } // context swipe if (capture && r.touchData.cxt) { var cxtEvt = { originalEvent: e, type: 'cxtdrag', position: { x: now[0], y: now[1] } }; r.data.bgActivePosistion = undefined; r.redrawHint('select', true); if (r.touchData.start) { r.touchData.start.emit(cxtEvt); } else { cy.emit(cxtEvt); } if (r.touchData.start) { r.touchData.start._private.grabbed = false; } r.touchData.cxtDragged = true; var near = r.findNearestElement(now[0], now[1], true, true); if (!r.touchData.cxtOver || near !== r.touchData.cxtOver) { if (r.touchData.cxtOver) { r.touchData.cxtOver.emit({ originalEvent: e, type: 'cxtdragout', position: { x: now[0], y: now[1] } }); } r.touchData.cxtOver = near; if (near) { near.emit({ originalEvent: e, type: 'cxtdragover', position: { x: now[0], y: now[1] } }); } } // box selection } else if (capture && e.touches[2] && cy.boxSelectionEnabled()) { e.preventDefault(); r.data.bgActivePosistion = undefined; this.lastThreeTouch = +new Date(); if (!r.touchData.selecting) { cy.emit({ originalEvent: e, type: 'boxstart', position: { x: now[0], y: now[1] } }); } r.touchData.selecting = true; r.touchData.didSelect = true; select[4] = 1; if (!select || select.length === 0 || select[0] === undefined) { select[0] = (now[0] + now[2] + now[4]) / 3; select[1] = (now[1] + now[3] + now[5]) / 3; select[2] = (now[0] + now[2] + now[4]) / 3 + 1; select[3] = (now[1] + now[3] + now[5]) / 3 + 1; } else { select[2] = (now[0] + now[2] + now[4]) / 3; select[3] = (now[1] + now[3] + now[5]) / 3; } r.redrawHint('select', true); r.redraw(); // pinch to zoom } else if (capture && e.touches[1] && !r.touchData.didSelect // don't allow box selection to degrade to pinch-to-zoom && cy.zoomingEnabled() && cy.panningEnabled() && cy.userZoomingEnabled() && cy.userPanningEnabled()) { // two fingers => pinch to zoom e.preventDefault(); r.data.bgActivePosistion = undefined; r.redrawHint('select', true); var draggedEles = r.dragData.touchDragEles; if (draggedEles) { r.redrawHint('drag', true); for (var i = 0; i < draggedEles.length; i++) { var de_p = draggedEles[i]._private; de_p.grabbed = false; de_p.rscratch.inDragLayer = false; } } var _start = r.touchData.start; // (x2, y2) for fingers 1 and 2 var f1x2 = e.touches[0].clientX - offsetLeft, f1y2 = e.touches[0].clientY - offsetTop; var f2x2 = e.touches[1].clientX - offsetLeft, f2y2 = e.touches[1].clientY - offsetTop; var distance2 = distance(f1x2, f1y2, f2x2, f2y2); // var distance2Sq = distanceSq( f1x2, f1y2, f2x2, f2y2 ); // var factor = Math.sqrt( distance2Sq ) / Math.sqrt( distance1Sq ); var factor = distance2 / distance1; if (twoFingersStartInside) { // delta finger1 var df1x = f1x2 - f1x1; var df1y = f1y2 - f1y1; // delta finger 2 var df2x = f2x2 - f2x1; var df2y = f2y2 - f2y1; // translation is the normalised vector of the two fingers movement // i.e. so pinching cancels out and moving together pans var tx = (df1x + df2x) / 2; var ty = (df1y + df2y) / 2; // now calculate the zoom var zoom1 = cy.zoom(); var zoom2 = zoom1 * factor; var pan1 = cy.pan(); // the model center point converted to the current rendered pos var ctrx = modelCenter1[0] * zoom1 + pan1.x; var ctry = modelCenter1[1] * zoom1 + pan1.y; var pan2 = { x: -zoom2 / zoom1 * (ctrx - pan1.x - tx) + ctrx, y: -zoom2 / zoom1 * (ctry - pan1.y - ty) + ctry }; // remove dragged eles if (_start && _start.active()) { var draggedEles = r.dragData.touchDragEles; freeDraggedElements(draggedEles); r.redrawHint('drag', true); r.redrawHint('eles', true); _start.unactivate().emit('freeon'); draggedEles.emit('free'); if (r.dragData.didDrag) { _start.emit('dragfreeon'); draggedEles.emit('dragfree'); } } cy.viewport({ zoom: zoom2, pan: pan2, cancelOnFailedZoom: true }); cy.emit('pinchzoom'); distance1 = distance2; f1x1 = f1x2; f1y1 = f1y2; f2x1 = f2x2; f2y1 = f2y2; r.pinching = true; } // Re-project if (e.touches[0]) { var pos = r.projectIntoViewport(e.touches[0].clientX, e.touches[0].clientY); now[0] = pos[0]; now[1] = pos[1]; } if (e.touches[1]) { var pos = r.projectIntoViewport(e.touches[1].clientX, e.touches[1].clientY); now[2] = pos[0]; now[3] = pos[1]; } if (e.touches[2]) { var pos = r.projectIntoViewport(e.touches[2].clientX, e.touches[2].clientY); now[4] = pos[0]; now[5] = pos[1]; } } else if (e.touches[0] && !r.touchData.didSelect // don't allow box selection to degrade to single finger events like panning ) { var start = r.touchData.start; var last = r.touchData.last; var near; if (!r.hoverData.draggingEles && !r.swipePanning) { near = r.findNearestElement(now[0], now[1], true, true); } if (capture && start != null) { e.preventDefault(); } // dragging nodes if (capture && start != null && r.nodeIsDraggable(start)) { if (isOverThresholdDrag) { // then dragging can happen var draggedEles = r.dragData.touchDragEles; var justStartedDrag = !r.dragData.didDrag; if (justStartedDrag) { addNodesToDrag(draggedEles, { inDragLayer: true }); } r.dragData.didDrag = true; var totalShift = { x: 0, y: 0 }; if (number$1(disp[0]) && number$1(disp[1])) { totalShift.x += disp[0]; totalShift.y += disp[1]; if (justStartedDrag) { r.redrawHint('eles', true); var dragDelta = r.touchData.dragDelta; if (dragDelta && number$1(dragDelta[0]) && number$1(dragDelta[1])) { totalShift.x += dragDelta[0]; totalShift.y += dragDelta[1]; } } } r.hoverData.draggingEles = true; draggedEles.silentShift(totalShift).emit('position drag'); r.redrawHint('drag', true); if (r.touchData.startPosition[0] == earlier[0] && r.touchData.startPosition[1] == earlier[1]) { r.redrawHint('eles', true); } r.redraw(); } else { // otherwise keep track of drag delta for later var dragDelta = r.touchData.dragDelta = r.touchData.dragDelta || []; if (dragDelta.length === 0) { dragDelta.push(disp[0]); dragDelta.push(disp[1]); } else { dragDelta[0] += disp[0]; dragDelta[1] += disp[1]; } } } // touchmove { triggerEvents(start || near, ['touchmove', 'tapdrag', 'vmousemove'], e, { x: now[0], y: now[1] }); if ((!start || !start.grabbed()) && near != last) { if (last) { last.emit({ originalEvent: e, type: 'tapdragout', position: { x: now[0], y: now[1] } }); } if (near) { near.emit({ originalEvent: e, type: 'tapdragover', position: { x: now[0], y: now[1] } }); } } r.touchData.last = near; } // check to cancel taphold if (capture) { for (var i = 0; i < now.length; i++) { if (now[i] && r.touchData.startPosition[i] && isOverThresholdDrag) { r.touchData.singleTouchMoved = true; } } } // panning if (capture && (start == null || start.pannable()) && cy.panningEnabled() && cy.userPanningEnabled()) { var allowPassthrough = allowPanningPassthrough(start, r.touchData.starts); if (allowPassthrough) { e.preventDefault(); if (!r.data.bgActivePosistion) { r.data.bgActivePosistion = array2point(r.touchData.startPosition); } if (r.swipePanning) { cy.panBy({ x: disp[0] * zoom, y: disp[1] * zoom }); cy.emit('dragpan'); } else if (isOverThresholdDrag) { r.swipePanning = true; cy.panBy({ x: dx * zoom, y: dy * zoom }); cy.emit('dragpan'); if (start) { start.unactivate(); r.redrawHint('select', true); r.touchData.start = null; } } } // Re-project var pos = r.projectIntoViewport(e.touches[0].clientX, e.touches[0].clientY); now[0] = pos[0]; now[1] = pos[1]; } } for (var j = 0; j < now.length; j++) { earlier[j] = now[j]; } // the active bg indicator should be removed when making a swipe that is neither for dragging nodes or panning if (capture && e.touches.length > 0 && !r.hoverData.draggingEles && !r.swipePanning && r.data.bgActivePosistion != null) { r.data.bgActivePosistion = undefined; r.redrawHint('select', true); r.redraw(); } }, false); var touchcancelHandler; r.registerBinding(containerWindow, 'touchcancel', touchcancelHandler = function touchcancelHandler(e) { // eslint-disable-line no-unused-vars var start = r.touchData.start; r.touchData.capture = false; if (start) { start.unactivate(); } }); var touchendHandler, didDoubleTouch, touchTimeout, prevTouchTimeStamp; r.registerBinding(containerWindow, 'touchend', touchendHandler = function touchendHandler(e) { // eslint-disable-line no-unused-vars var start = r.touchData.start; var capture = r.touchData.capture; if (capture) { if (e.touches.length === 0) { r.touchData.capture = false; } e.preventDefault(); } else { return; } var select = r.selection; r.swipePanning = false; r.hoverData.draggingEles = false; var cy = r.cy; var zoom = cy.zoom(); var now = r.touchData.now; var earlier = r.touchData.earlier; if (e.touches[0]) { var pos = r.projectIntoViewport(e.touches[0].clientX, e.touches[0].clientY); now[0] = pos[0]; now[1] = pos[1]; } if (e.touches[1]) { var pos = r.projectIntoViewport(e.touches[1].clientX, e.touches[1].clientY); now[2] = pos[0]; now[3] = pos[1]; } if (e.touches[2]) { var pos = r.projectIntoViewport(e.touches[2].clientX, e.touches[2].clientY); now[4] = pos[0]; now[5] = pos[1]; } if (start) { start.unactivate(); } var ctxTapend; if (r.touchData.cxt) { ctxTapend = { originalEvent: e, type: 'cxttapend', position: { x: now[0], y: now[1] } }; if (start) { start.emit(ctxTapend); } else { cy.emit(ctxTapend); } if (!r.touchData.cxtDragged) { var ctxTap = { originalEvent: e, type: 'cxttap', position: { x: now[0], y: now[1] } }; if (start) { start.emit(ctxTap); } else { cy.emit(ctxTap); } } if (r.touchData.start) { r.touchData.start._private.grabbed = false; } r.touchData.cxt = false; r.touchData.start = null; r.redraw(); return; } // no more box selection if we don't have three fingers if (!e.touches[2] && cy.boxSelectionEnabled() && r.touchData.selecting) { r.touchData.selecting = false; var box = cy.collection(r.getAllInBox(select[0], select[1], select[2], select[3])); select[0] = undefined; select[1] = undefined; select[2] = undefined; select[3] = undefined; select[4] = 0; r.redrawHint('select', true); cy.emit({ type: 'boxend', originalEvent: e, position: { x: now[0], y: now[1] } }); var eleWouldBeSelected = function eleWouldBeSelected(ele) { return ele.selectable() && !ele.selected(); }; box.emit('box').stdFilter(eleWouldBeSelected).select().emit('boxselect'); if (box.nonempty()) { r.redrawHint('eles', true); } r.redraw(); } if (start != null) { start.unactivate(); } if (e.touches[2]) { r.data.bgActivePosistion = undefined; r.redrawHint('select', true); } else if (e.touches[1]) ; else if (e.touches[0]) ; else if (!e.touches[0]) { r.data.bgActivePosistion = undefined; r.redrawHint('select', true); var draggedEles = r.dragData.touchDragEles; if (start != null) { var startWasGrabbed = start._private.grabbed; freeDraggedElements(draggedEles); r.redrawHint('drag', true); r.redrawHint('eles', true); if (startWasGrabbed) { start.emit('freeon'); draggedEles.emit('free'); if (r.dragData.didDrag) { start.emit('dragfreeon'); draggedEles.emit('dragfree'); } } triggerEvents(start, ['touchend', 'tapend', 'vmouseup', 'tapdragout'], e, { x: now[0], y: now[1] }); start.unactivate(); r.touchData.start = null; } else { var near = r.findNearestElement(now[0], now[1], true, true); triggerEvents(near, ['touchend', 'tapend', 'vmouseup', 'tapdragout'], e, { x: now[0], y: now[1] }); } var dx = r.touchData.startPosition[0] - now[0]; var dx2 = dx * dx; var dy = r.touchData.startPosition[1] - now[1]; var dy2 = dy * dy; var dist2 = dx2 + dy2; var rdist2 = dist2 * zoom * zoom; // Tap event, roughly same as mouse click event for touch if (!r.touchData.singleTouchMoved) { if (!start) { cy.$(':selected').unselect(['tapunselect']); } triggerEvents(start, ['tap', 'vclick'], e, { x: now[0], y: now[1] }); didDoubleTouch = false; if (e.timeStamp - prevTouchTimeStamp <= cy.multiClickDebounceTime()) { touchTimeout && clearTimeout(touchTimeout); didDoubleTouch = true; prevTouchTimeStamp = null; triggerEvents(start, ['dbltap', 'vdblclick'], e, { x: now[0], y: now[1] }); } else { touchTimeout = setTimeout(function () { if (didDoubleTouch) return; triggerEvents(start, ['onetap', 'voneclick'], e, { x: now[0], y: now[1] }); }, cy.multiClickDebounceTime()); prevTouchTimeStamp = e.timeStamp; } } // Prepare to select the currently touched node, only if it hasn't been dragged past a certain distance if (start != null && !r.dragData.didDrag // didn't drag nodes around && start._private.selectable && rdist2 < r.touchTapThreshold2 && !r.pinching // pinch to zoom should not affect selection ) { if (cy.selectionType() === 'single') { cy.$(isSelected).unmerge(start).unselect(['tapunselect']); start.select(['tapselect']); } else { if (start.selected()) { start.unselect(['tapunselect']); } else { start.select(['tapselect']); } } r.redrawHint('eles', true); } r.touchData.singleTouchMoved = true; } for (var j = 0; j < now.length; j++) { earlier[j] = now[j]; } r.dragData.didDrag = false; // reset for next touchstart if (e.touches.length === 0) { r.touchData.dragDelta = []; r.touchData.startPosition = [null, null, null, null, null, null]; r.touchData.startGPosition = null; r.touchData.didSelect = false; } if (e.touches.length < 2) { if (e.touches.length === 1) { // the old start global pos'n may not be the same finger that remains r.touchData.startGPosition = [e.touches[0].clientX, e.touches[0].clientY]; } r.pinching = false; r.redrawHint('eles', true); r.redraw(); } //r.redraw(); }, false); // fallback compatibility layer for ms pointer events if (typeof TouchEvent === 'undefined') { var pointers = []; var makeTouch = function makeTouch(e) { return { clientX: e.clientX, clientY: e.clientY, force: 1, identifier: e.pointerId, pageX: e.pageX, pageY: e.pageY, radiusX: e.width / 2, radiusY: e.height / 2, screenX: e.screenX, screenY: e.screenY, target: e.target }; }; var makePointer = function makePointer(e) { return { event: e, touch: makeTouch(e) }; }; var addPointer = function addPointer(e) { pointers.push(makePointer(e)); }; var removePointer = function removePointer(e) { for (var i = 0; i < pointers.length; i++) { var p = pointers[i]; if (p.event.pointerId === e.pointerId) { pointers.splice(i, 1); return; } } }; var updatePointer = function updatePointer(e) { var p = pointers.filter(function (p) { return p.event.pointerId === e.pointerId; })[0]; p.event = e; p.touch = makeTouch(e); }; var addTouchesToEvent = function addTouchesToEvent(e) { e.touches = pointers.map(function (p) { return p.touch; }); }; var pointerIsMouse = function pointerIsMouse(e) { return e.pointerType === 'mouse' || e.pointerType === 4; }; r.registerBinding(r.container, 'pointerdown', function (e) { if (pointerIsMouse(e)) { return; } // mouse already handled e.preventDefault(); addPointer(e); addTouchesToEvent(e); touchstartHandler(e); }); r.registerBinding(r.container, 'pointerup', function (e) { if (pointerIsMouse(e)) { return; } // mouse already handled removePointer(e); addTouchesToEvent(e); touchendHandler(e); }); r.registerBinding(r.container, 'pointercancel', function (e) { if (pointerIsMouse(e)) { return; } // mouse already handled removePointer(e); addTouchesToEvent(e); touchcancelHandler(e); }); r.registerBinding(r.container, 'pointermove', function (e) { if (pointerIsMouse(e)) { return; } // mouse already handled e.preventDefault(); updatePointer(e); addTouchesToEvent(e); touchmoveHandler(e); }); } }; var BRp$2 = {}; BRp$2.generatePolygon = function (name, points) { return this.nodeShapes[name] = { renderer: this, name: name, points: points, draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl('polygon', context, centerX, centerY, width, height, this.points); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { return polygonIntersectLine(x, y, this.points, nodeX, nodeY, width / 2, height / 2, padding); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { return pointInsidePolygon(x, y, this.points, centerX, centerY, width, height, [0, -1], padding); } }; }; BRp$2.generateEllipse = function () { return this.nodeShapes['ellipse'] = { renderer: this, name: 'ellipse', draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl(this.name, context, centerX, centerY, width, height); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { return intersectLineEllipse(x, y, nodeX, nodeY, width / 2 + padding, height / 2 + padding); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { return checkInEllipse(x, y, width, height, centerX, centerY, padding); } }; }; BRp$2.generateRoundPolygon = function (name, points) { return this.nodeShapes[name] = { renderer: this, name: name, points: points, getOrCreateCorners: function getOrCreateCorners(centerX, centerY, width, height, cornerRadius, rs, field) { if (rs[field] !== undefined && rs[field + '-cx'] === centerX && rs[field + '-cy'] === centerY) { return rs[field]; } rs[field] = new Array(points.length / 2); rs[field + '-cx'] = centerX; rs[field + '-cy'] = centerY; var halfW = width / 2; var halfH = height / 2; cornerRadius = cornerRadius === 'auto' ? getRoundPolygonRadius(width, height) : cornerRadius; var p = new Array(points.length / 2); for (var _i = 0; _i < points.length / 2; _i++) { p[_i] = { x: centerX + halfW * points[_i * 2], y: centerY + halfH * points[_i * 2 + 1] }; } var i, p1, p2, p3, len = p.length; p1 = p[len - 1]; // for each point for (i = 0; i < len; i++) { p2 = p[i % len]; p3 = p[(i + 1) % len]; rs[field][i] = getRoundCorner(p1, p2, p3, cornerRadius); p1 = p2; p2 = p3; } return rs[field]; }, draw: function draw(context, centerX, centerY, width, height, cornerRadius, rs) { this.renderer.nodeShapeImpl('round-polygon', context, centerX, centerY, width, height, this.points, this.getOrCreateCorners(centerX, centerY, width, height, cornerRadius, rs, 'drawCorners')); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius, rs) { return roundPolygonIntersectLine(x, y, this.points, nodeX, nodeY, width, height, padding, this.getOrCreateCorners(nodeX, nodeY, width, height, cornerRadius, rs, 'corners')); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius, rs) { return pointInsideRoundPolygon(x, y, this.points, centerX, centerY, width, height, this.getOrCreateCorners(centerX, centerY, width, height, cornerRadius, rs, 'corners')); } }; }; BRp$2.generateRoundRectangle = function () { return this.nodeShapes['round-rectangle'] = this.nodeShapes['roundrectangle'] = { renderer: this, name: 'round-rectangle', points: generateUnitNgonPointsFitToSquare(4, 0), draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl(this.name, context, centerX, centerY, width, height, this.points, cornerRadius); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { return roundRectangleIntersectLine(x, y, nodeX, nodeY, width, height, padding, cornerRadius); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { var halfWidth = width / 2; var halfHeight = height / 2; cornerRadius = cornerRadius === 'auto' ? getRoundRectangleRadius(width, height) : cornerRadius; cornerRadius = Math.min(halfWidth, halfHeight, cornerRadius); var diam = cornerRadius * 2; // Check hBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width, height - diam, [0, -1], padding)) { return true; } // Check vBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width - diam, height, [0, -1], padding)) { return true; } // Check top left quarter circle if (checkInEllipse(x, y, diam, diam, centerX - halfWidth + cornerRadius, centerY - halfHeight + cornerRadius, padding)) { return true; } // Check top right quarter circle if (checkInEllipse(x, y, diam, diam, centerX + halfWidth - cornerRadius, centerY - halfHeight + cornerRadius, padding)) { return true; } // Check bottom right quarter circle if (checkInEllipse(x, y, diam, diam, centerX + halfWidth - cornerRadius, centerY + halfHeight - cornerRadius, padding)) { return true; } // Check bottom left quarter circle if (checkInEllipse(x, y, diam, diam, centerX - halfWidth + cornerRadius, centerY + halfHeight - cornerRadius, padding)) { return true; } return false; } }; }; BRp$2.generateCutRectangle = function () { return this.nodeShapes['cut-rectangle'] = this.nodeShapes['cutrectangle'] = { renderer: this, name: 'cut-rectangle', cornerLength: getCutRectangleCornerLength(), points: generateUnitNgonPointsFitToSquare(4, 0), draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl(this.name, context, centerX, centerY, width, height, null, cornerRadius); }, generateCutTrianglePts: function generateCutTrianglePts(width, height, centerX, centerY, cornerRadius) { var cl = cornerRadius === 'auto' ? this.cornerLength : cornerRadius; var hh = height / 2; var hw = width / 2; var xBegin = centerX - hw; var xEnd = centerX + hw; var yBegin = centerY - hh; var yEnd = centerY + hh; // points are in clockwise order, inner (imaginary) triangle pt on [4, 5] return { topLeft: [xBegin, yBegin + cl, xBegin + cl, yBegin, xBegin + cl, yBegin + cl], topRight: [xEnd - cl, yBegin, xEnd, yBegin + cl, xEnd - cl, yBegin + cl], bottomRight: [xEnd, yEnd - cl, xEnd - cl, yEnd, xEnd - cl, yEnd - cl], bottomLeft: [xBegin + cl, yEnd, xBegin, yEnd - cl, xBegin + cl, yEnd - cl] }; }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { var cPts = this.generateCutTrianglePts(width + 2 * padding, height + 2 * padding, nodeX, nodeY, cornerRadius); var pts = [].concat.apply([], [cPts.topLeft.splice(0, 4), cPts.topRight.splice(0, 4), cPts.bottomRight.splice(0, 4), cPts.bottomLeft.splice(0, 4)]); return polygonIntersectLine(x, y, pts, nodeX, nodeY); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { var cl = cornerRadius === 'auto' ? this.cornerLength : cornerRadius; // Check hBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width, height - 2 * cl, [0, -1], padding)) { return true; } // Check vBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width - 2 * cl, height, [0, -1], padding)) { return true; } var cutTrianglePts = this.generateCutTrianglePts(width, height, centerX, centerY); return pointInsidePolygonPoints(x, y, cutTrianglePts.topLeft) || pointInsidePolygonPoints(x, y, cutTrianglePts.topRight) || pointInsidePolygonPoints(x, y, cutTrianglePts.bottomRight) || pointInsidePolygonPoints(x, y, cutTrianglePts.bottomLeft); } }; }; BRp$2.generateBarrel = function () { return this.nodeShapes['barrel'] = { renderer: this, name: 'barrel', points: generateUnitNgonPointsFitToSquare(4, 0), draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl(this.name, context, centerX, centerY, width, height); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { // use two fixed t values for the bezier curve approximation var t0 = 0.15; var t1 = 0.5; var t2 = 0.85; var bPts = this.generateBarrelBezierPts(width + 2 * padding, height + 2 * padding, nodeX, nodeY); var approximateBarrelCurvePts = function approximateBarrelCurvePts(pts) { // approximate curve pts based on the two t values var m0 = qbezierPtAt({ x: pts[0], y: pts[1] }, { x: pts[2], y: pts[3] }, { x: pts[4], y: pts[5] }, t0); var m1 = qbezierPtAt({ x: pts[0], y: pts[1] }, { x: pts[2], y: pts[3] }, { x: pts[4], y: pts[5] }, t1); var m2 = qbezierPtAt({ x: pts[0], y: pts[1] }, { x: pts[2], y: pts[3] }, { x: pts[4], y: pts[5] }, t2); return [pts[0], pts[1], m0.x, m0.y, m1.x, m1.y, m2.x, m2.y, pts[4], pts[5]]; }; var pts = [].concat(approximateBarrelCurvePts(bPts.topLeft), approximateBarrelCurvePts(bPts.topRight), approximateBarrelCurvePts(bPts.bottomRight), approximateBarrelCurvePts(bPts.bottomLeft)); return polygonIntersectLine(x, y, pts, nodeX, nodeY); }, generateBarrelBezierPts: function generateBarrelBezierPts(width, height, centerX, centerY) { var hh = height / 2; var hw = width / 2; var xBegin = centerX - hw; var xEnd = centerX + hw; var yBegin = centerY - hh; var yEnd = centerY + hh; var curveConstants = getBarrelCurveConstants(width, height); var hOffset = curveConstants.heightOffset; var wOffset = curveConstants.widthOffset; var ctrlPtXOffset = curveConstants.ctrlPtOffsetPct * width; // points are in clockwise order, inner (imaginary) control pt on [4, 5] var pts = { topLeft: [xBegin, yBegin + hOffset, xBegin + ctrlPtXOffset, yBegin, xBegin + wOffset, yBegin], topRight: [xEnd - wOffset, yBegin, xEnd - ctrlPtXOffset, yBegin, xEnd, yBegin + hOffset], bottomRight: [xEnd, yEnd - hOffset, xEnd - ctrlPtXOffset, yEnd, xEnd - wOffset, yEnd], bottomLeft: [xBegin + wOffset, yEnd, xBegin + ctrlPtXOffset, yEnd, xBegin, yEnd - hOffset] }; pts.topLeft.isTop = true; pts.topRight.isTop = true; pts.bottomLeft.isBottom = true; pts.bottomRight.isBottom = true; return pts; }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { var curveConstants = getBarrelCurveConstants(width, height); var hOffset = curveConstants.heightOffset; var wOffset = curveConstants.widthOffset; // Check hBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width, height - 2 * hOffset, [0, -1], padding)) { return true; } // Check vBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width - 2 * wOffset, height, [0, -1], padding)) { return true; } var barrelCurvePts = this.generateBarrelBezierPts(width, height, centerX, centerY); var getCurveT = function getCurveT(x, y, curvePts) { var x0 = curvePts[4]; var x1 = curvePts[2]; var x2 = curvePts[0]; var y0 = curvePts[5]; // var y1 = curvePts[ 3 ]; var y2 = curvePts[1]; var xMin = Math.min(x0, x2); var xMax = Math.max(x0, x2); var yMin = Math.min(y0, y2); var yMax = Math.max(y0, y2); if (xMin <= x && x <= xMax && yMin <= y && y <= yMax) { var coeff = bezierPtsToQuadCoeff(x0, x1, x2); var roots = solveQuadratic(coeff[0], coeff[1], coeff[2], x); var validRoots = roots.filter(function (r) { return 0 <= r && r <= 1; }); if (validRoots.length > 0) { return validRoots[0]; } } return null; }; var curveRegions = Object.keys(barrelCurvePts); for (var i = 0; i < curveRegions.length; i++) { var corner = curveRegions[i]; var cornerPts = barrelCurvePts[corner]; var t = getCurveT(x, y, cornerPts); if (t == null) { continue; } var y0 = cornerPts[5]; var y1 = cornerPts[3]; var y2 = cornerPts[1]; var bezY = qbezierAt(y0, y1, y2, t); if (cornerPts.isTop && bezY <= y) { return true; } if (cornerPts.isBottom && y <= bezY) { return true; } } return false; } }; }; BRp$2.generateBottomRoundrectangle = function () { return this.nodeShapes['bottom-round-rectangle'] = this.nodeShapes['bottomroundrectangle'] = { renderer: this, name: 'bottom-round-rectangle', points: generateUnitNgonPointsFitToSquare(4, 0), draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl(this.name, context, centerX, centerY, width, height, this.points, cornerRadius); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { var topStartX = nodeX - (width / 2 + padding); var topStartY = nodeY - (height / 2 + padding); var topEndY = topStartY; var topEndX = nodeX + (width / 2 + padding); var topIntersections = finiteLinesIntersect(x, y, nodeX, nodeY, topStartX, topStartY, topEndX, topEndY, false); if (topIntersections.length > 0) { return topIntersections; } return roundRectangleIntersectLine(x, y, nodeX, nodeY, width, height, padding, cornerRadius); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { cornerRadius = cornerRadius === 'auto' ? getRoundRectangleRadius(width, height) : cornerRadius; var diam = 2 * cornerRadius; // Check hBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width, height - diam, [0, -1], padding)) { return true; } // Check vBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width - diam, height, [0, -1], padding)) { return true; } // check non-rounded top side var outerWidth = width / 2 + 2 * padding; var outerHeight = height / 2 + 2 * padding; var points = [centerX - outerWidth, centerY - outerHeight, centerX - outerWidth, centerY, centerX + outerWidth, centerY, centerX + outerWidth, centerY - outerHeight]; if (pointInsidePolygonPoints(x, y, points)) { return true; } // Check bottom right quarter circle if (checkInEllipse(x, y, diam, diam, centerX + width / 2 - cornerRadius, centerY + height / 2 - cornerRadius, padding)) { return true; } // Check bottom left quarter circle if (checkInEllipse(x, y, diam, diam, centerX - width / 2 + cornerRadius, centerY + height / 2 - cornerRadius, padding)) { return true; } return false; } }; }; BRp$2.registerNodeShapes = function () { var nodeShapes = this.nodeShapes = {}; var renderer = this; this.generateEllipse(); this.generatePolygon('triangle', generateUnitNgonPointsFitToSquare(3, 0)); this.generateRoundPolygon('round-triangle', generateUnitNgonPointsFitToSquare(3, 0)); this.generatePolygon('rectangle', generateUnitNgonPointsFitToSquare(4, 0)); nodeShapes['square'] = nodeShapes['rectangle']; this.generateRoundRectangle(); this.generateCutRectangle(); this.generateBarrel(); this.generateBottomRoundrectangle(); { var diamondPoints = [0, 1, 1, 0, 0, -1, -1, 0]; this.generatePolygon('diamond', diamondPoints); this.generateRoundPolygon('round-diamond', diamondPoints); } this.generatePolygon('pentagon', generateUnitNgonPointsFitToSquare(5, 0)); this.generateRoundPolygon('round-pentagon', generateUnitNgonPointsFitToSquare(5, 0)); this.generatePolygon('hexagon', generateUnitNgonPointsFitToSquare(6, 0)); this.generateRoundPolygon('round-hexagon', generateUnitNgonPointsFitToSquare(6, 0)); this.generatePolygon('heptagon', generateUnitNgonPointsFitToSquare(7, 0)); this.generateRoundPolygon('round-heptagon', generateUnitNgonPointsFitToSquare(7, 0)); this.generatePolygon('octagon', generateUnitNgonPointsFitToSquare(8, 0)); this.generateRoundPolygon('round-octagon', generateUnitNgonPointsFitToSquare(8, 0)); var star5Points = new Array(20); { var outerPoints = generateUnitNgonPoints(5, 0); var innerPoints = generateUnitNgonPoints(5, Math.PI / 5); // Outer radius is 1; inner radius of star is smaller var innerRadius = 0.5 * (3 - Math.sqrt(5)); innerRadius *= 1.57; for (var i = 0; i < innerPoints.length / 2; i++) { innerPoints[i * 2] *= innerRadius; innerPoints[i * 2 + 1] *= innerRadius; } for (var i = 0; i < 20 / 4; i++) { star5Points[i * 4] = outerPoints[i * 2]; star5Points[i * 4 + 1] = outerPoints[i * 2 + 1]; star5Points[i * 4 + 2] = innerPoints[i * 2]; star5Points[i * 4 + 3] = innerPoints[i * 2 + 1]; } } star5Points = fitPolygonToSquare(star5Points); this.generatePolygon('star', star5Points); this.generatePolygon('vee', [-1, -1, 0, -0.333, 1, -1, 0, 1]); this.generatePolygon('rhomboid', [-1, -1, 0.333, -1, 1, 1, -0.333, 1]); this.generatePolygon('right-rhomboid', [-0.333, -1, 1, -1, 0.333, 1, -1, 1]); this.nodeShapes['concavehexagon'] = this.generatePolygon('concave-hexagon', [-1, -0.95, -0.75, 0, -1, 0.95, 1, 0.95, 0.75, 0, 1, -0.95]); { var tagPoints = [-1, -1, 0.25, -1, 1, 0, 0.25, 1, -1, 1]; this.generatePolygon('tag', tagPoints); this.generateRoundPolygon('round-tag', tagPoints); } nodeShapes.makePolygon = function (points) { // use caching on user-specified polygons so they are as fast as native shapes var key = points.join('$'); var name = 'polygon-' + key; var shape; if (shape = this[name]) { // got cached shape return shape; } // create and cache new shape return renderer.generatePolygon(name, points); }; }; var BRp$1 = {}; BRp$1.timeToRender = function () { return this.redrawTotalTime / this.redrawCount; }; BRp$1.redraw = function (options) { options = options || staticEmptyObject(); var r = this; if (r.averageRedrawTime === undefined) { r.averageRedrawTime = 0; } if (r.lastRedrawTime === undefined) { r.lastRedrawTime = 0; } if (r.lastDrawTime === undefined) { r.lastDrawTime = 0; } r.requestedFrame = true; r.renderOptions = options; }; BRp$1.beforeRender = function (fn, priority) { // the renderer can't add tick callbacks when destroyed if (this.destroyed) { return; } if (priority == null) { error('Priority is not optional for beforeRender'); } var cbs = this.beforeRenderCallbacks; cbs.push({ fn: fn, priority: priority }); // higher priority callbacks executed first cbs.sort(function (a, b) { return b.priority - a.priority; }); }; var beforeRenderCallbacks = function beforeRenderCallbacks(r, willDraw, startTime) { var cbs = r.beforeRenderCallbacks; for (var i = 0; i < cbs.length; i++) { cbs[i].fn(willDraw, startTime); } }; BRp$1.startRenderLoop = function () { var r = this; var cy = r.cy; if (r.renderLoopStarted) { return; } else { r.renderLoopStarted = true; } var renderFn = function renderFn(requestTime) { if (r.destroyed) { return; } if (cy.batching()) ; else if (r.requestedFrame && !r.skipFrame) { beforeRenderCallbacks(r, true, requestTime); var startTime = performanceNow(); r.render(r.renderOptions); var endTime = r.lastDrawTime = performanceNow(); if (r.averageRedrawTime === undefined) { r.averageRedrawTime = endTime - startTime; } if (r.redrawCount === undefined) { r.redrawCount = 0; } r.redrawCount++; if (r.redrawTotalTime === undefined) { r.redrawTotalTime = 0; } var duration = endTime - startTime; r.redrawTotalTime += duration; r.lastRedrawTime = duration; // use a weighted average with a bias from the previous average so we don't spike so easily r.averageRedrawTime = r.averageRedrawTime / 2 + duration / 2; r.requestedFrame = false; } else { beforeRenderCallbacks(r, false, requestTime); } r.skipFrame = false; requestAnimationFrame(renderFn); }; requestAnimationFrame(renderFn); }; var BaseRenderer = function BaseRenderer(options) { this.init(options); }; var BR = BaseRenderer; var BRp = BR.prototype; BRp.clientFunctions = ['redrawHint', 'render', 'renderTo', 'matchCanvasSize', 'nodeShapeImpl', 'arrowShapeImpl']; BRp.init = function (options) { var r = this; r.options = options; r.cy = options.cy; var ctr = r.container = options.cy.container(); var containerWindow = r.cy.window(); // prepend a stylesheet in the head such that if (containerWindow) { var document = containerWindow.document; var head = document.head; var stylesheetId = '__________cytoscape_stylesheet'; var className = '__________cytoscape_container'; var stylesheetAlreadyExists = document.getElementById(stylesheetId) != null; if (ctr.className.indexOf(className) < 0) { ctr.className = (ctr.className || '') + ' ' + className; } if (!stylesheetAlreadyExists) { var stylesheet = document.createElement('style'); stylesheet.id = stylesheetId; stylesheet.textContent = '.' + className + ' { position: relative; }'; head.insertBefore(stylesheet, head.children[0]); // first so lowest priority } var computedStyle = containerWindow.getComputedStyle(ctr); var position = computedStyle.getPropertyValue('position'); if (position === 'static') { warn('A Cytoscape container has style position:static and so can not use UI extensions properly'); } } r.selection = [undefined, undefined, undefined, undefined, 0]; // Coordinates for selection box, plus enabled flag r.bezierProjPcts = [0.05, 0.225, 0.4, 0.5, 0.6, 0.775, 0.95]; //--Pointer-related data r.hoverData = { down: null, last: null, downTime: null, triggerMode: null, dragging: false, initialPan: [null, null], capture: false }; r.dragData = { possibleDragElements: [] }; r.touchData = { start: null, capture: false, // These 3 fields related to tap, taphold events startPosition: [null, null, null, null, null, null], singleTouchStartTime: null, singleTouchMoved: true, now: [null, null, null, null, null, null], earlier: [null, null, null, null, null, null] }; r.redraws = 0; r.showFps = options.showFps; r.debug = options.debug; r.hideEdgesOnViewport = options.hideEdgesOnViewport; r.textureOnViewport = options.textureOnViewport; r.wheelSensitivity = options.wheelSensitivity; r.motionBlurEnabled = options.motionBlur; // on by default r.forcedPixelRatio = number$1(options.pixelRatio) ? options.pixelRatio : null; r.motionBlur = options.motionBlur; // for initial kick off r.motionBlurOpacity = options.motionBlurOpacity; r.motionBlurTransparency = 1 - r.motionBlurOpacity; r.motionBlurPxRatio = 1; r.mbPxRBlurry = 1; //0.8; r.minMbLowQualFrames = 4; r.fullQualityMb = false; r.clearedForMotionBlur = []; r.desktopTapThreshold = options.desktopTapThreshold; r.desktopTapThreshold2 = options.desktopTapThreshold * options.desktopTapThreshold; r.touchTapThreshold = options.touchTapThreshold; r.touchTapThreshold2 = options.touchTapThreshold * options.touchTapThreshold; r.tapholdDuration = 500; r.webgl = options.webgl; r.bindings = []; r.beforeRenderCallbacks = []; r.beforeRenderPriorities = { // higher priority execs before lower one animations: 400, eleCalcs: 300, eleTxrDeq: 200, lyrTxrDeq: 150, lyrTxrSkip: 100 }; r.registerNodeShapes(); r.registerArrowShapes(); r.registerCalculationListeners(); }; BRp.notify = function (eventName, eles) { var r = this; var cy = r.cy; // the renderer can't be notified after it's destroyed if (this.destroyed) { return; } if (eventName === 'init') { r.load(); return; } if (eventName === 'destroy') { r.destroy(); return; } if (eventName === 'add' || eventName === 'remove' || eventName === 'move' && cy.hasCompoundNodes() || eventName === 'load' || eventName === 'zorder' || eventName === 'mount') { r.invalidateCachedZSortedEles(); } if (eventName === 'viewport') { r.redrawHint('select', true); } if (eventName === 'load' || eventName === 'resize' || eventName === 'mount') { r.invalidateContainerClientCoordsCache(); r.matchCanvasSize(r.container); } r.redrawHint('eles', true); r.redrawHint('drag', true); this.startRenderLoop(); this.redraw(); }; BRp.destroy = function () { var r = this; r.destroyed = true; r.cy.stopAnimationLoop(); for (var i = 0; i < r.bindings.length; i++) { var binding = r.bindings[i]; var b = binding; var tgt = b.target; (tgt.off || tgt.removeEventListener).apply(tgt, b.args); } r.bindings = []; r.beforeRenderCallbacks = []; r.onUpdateEleCalcsFns = []; if (r.removeObserver) { r.removeObserver.disconnect(); } if (r.styleObserver) { r.styleObserver.disconnect(); } if (r.resizeObserver) { r.resizeObserver.disconnect(); } if (r.labelCalcDiv) { try { document.body.removeChild(r.labelCalcDiv); // eslint-disable-line no-undef } catch (e) { // ie10 issue #1014 } } }; BRp.isHeadless = function () { return false; }; [BRp$f, BRp$5, BRp$4, BRp$3, BRp$2, BRp$1].forEach(function (props) { extend(BRp, props); }); var fullFpsTime = 1000 / 60; // assume 60 frames per second var defs = { setupDequeueing: function setupDequeueing(opts) { return function setupDequeueingImpl() { var self = this; var r = this.renderer; if (self.dequeueingSetup) { return; } else { self.dequeueingSetup = true; } var queueRedraw = debounce_1(function () { r.redrawHint('eles', true); r.redrawHint('drag', true); r.redraw(); }, opts.deqRedrawThreshold); var dequeue = function dequeue(willDraw, frameStartTime) { var startTime = performanceNow(); var avgRenderTime = r.averageRedrawTime; var renderTime = r.lastRedrawTime; var deqd = []; var extent = r.cy.extent(); var pixelRatio = r.getPixelRatio(); // if we aren't in a tick that causes a draw, then the rendered style // queue won't automatically be flushed before dequeueing starts if (!willDraw) { r.flushRenderedStyleQueue(); } while (true) { // eslint-disable-line no-constant-condition var now = performanceNow(); var duration = now - startTime; var frameDuration = now - frameStartTime; if (renderTime < fullFpsTime) { // if we're rendering faster than the ideal fps, then do dequeueing // during all of the remaining frame time var timeAvailable = fullFpsTime - (willDraw ? avgRenderTime : 0); if (frameDuration >= opts.deqFastCost * timeAvailable) { break; } } else { if (willDraw) { if (duration >= opts.deqCost * renderTime || duration >= opts.deqAvgCost * avgRenderTime) { break; } } else if (frameDuration >= opts.deqNoDrawCost * fullFpsTime) { break; } } var thisDeqd = opts.deq(self, pixelRatio, extent); if (thisDeqd.length > 0) { for (var i = 0; i < thisDeqd.length; i++) { deqd.push(thisDeqd[i]); } } else { break; } } // callbacks on dequeue if (deqd.length > 0) { opts.onDeqd(self, deqd); if (!willDraw && opts.shouldRedraw(self, deqd, pixelRatio, extent)) { queueRedraw(); } } }; var priority = opts.priority || noop$1; r.beforeRender(dequeue, priority(self)); }; } }; // Allows lookups for (ele, lvl) => cache. // Uses keys so elements may share the same cache. var ElementTextureCacheLookup = /*#__PURE__*/function () { function ElementTextureCacheLookup(getKey) { var doesEleInvalidateKey = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : falsify; _classCallCheck(this, ElementTextureCacheLookup); this.idsByKey = new Map$2(); this.keyForId = new Map$2(); this.cachesByLvl = new Map$2(); this.lvls = []; this.getKey = getKey; this.doesEleInvalidateKey = doesEleInvalidateKey; } _createClass(ElementTextureCacheLookup, [{ key: "getIdsFor", value: function getIdsFor(key) { if (key == null) { error("Can not get id list for null key"); } var idsByKey = this.idsByKey; var ids = this.idsByKey.get(key); if (!ids) { ids = new Set$1(); idsByKey.set(key, ids); } return ids; } }, { key: "addIdForKey", value: function addIdForKey(key, id) { if (key != null) { this.getIdsFor(key).add(id); } } }, { key: "deleteIdForKey", value: function deleteIdForKey(key, id) { if (key != null) { this.getIdsFor(key)["delete"](id); } } }, { key: "getNumberOfIdsForKey", value: function getNumberOfIdsForKey(key) { if (key == null) { return 0; } else { return this.getIdsFor(key).size; } } }, { key: "updateKeyMappingFor", value: function updateKeyMappingFor(ele) { var id = ele.id(); var prevKey = this.keyForId.get(id); var currKey = this.getKey(ele); this.deleteIdForKey(prevKey, id); this.addIdForKey(currKey, id); this.keyForId.set(id, currKey); } }, { key: "deleteKeyMappingFor", value: function deleteKeyMappingFor(ele) { var id = ele.id(); var prevKey = this.keyForId.get(id); this.deleteIdForKey(prevKey, id); this.keyForId["delete"](id); } }, { key: "keyHasChangedFor", value: function keyHasChangedFor(ele) { var id = ele.id(); var prevKey = this.keyForId.get(id); var newKey = this.getKey(ele); return prevKey !== newKey; } }, { key: "isInvalid", value: function isInvalid(ele) { return this.keyHasChangedFor(ele) || this.doesEleInvalidateKey(ele); } }, { key: "getCachesAt", value: function getCachesAt(lvl) { var cachesByLvl = this.cachesByLvl, lvls = this.lvls; var caches = cachesByLvl.get(lvl); if (!caches) { caches = new Map$2(); cachesByLvl.set(lvl, caches); lvls.push(lvl); } return caches; } }, { key: "getCache", value: function getCache(key, lvl) { return this.getCachesAt(lvl).get(key); } }, { key: "get", value: function get(ele, lvl) { var key = this.getKey(ele); var cache = this.getCache(key, lvl); // getting for an element may need to add to the id list b/c eles can share keys if (cache != null) { this.updateKeyMappingFor(ele); } return cache; } }, { key: "getForCachedKey", value: function getForCachedKey(ele, lvl) { var key = this.keyForId.get(ele.id()); // n.b. use cached key, not newly computed key var cache = this.getCache(key, lvl); return cache; } }, { key: "hasCache", value: function hasCache(key, lvl) { return this.getCachesAt(lvl).has(key); } }, { key: "has", value: function has(ele, lvl) { var key = this.getKey(ele); return this.hasCache(key, lvl); } }, { key: "setCache", value: function setCache(key, lvl, cache) { cache.key = key; this.getCachesAt(lvl).set(key, cache); } }, { key: "set", value: function set(ele, lvl, cache) { var key = this.getKey(ele); this.setCache(key, lvl, cache); this.updateKeyMappingFor(ele); } }, { key: "deleteCache", value: function deleteCache(key, lvl) { this.getCachesAt(lvl)["delete"](key); } }, { key: "delete", value: function _delete(ele, lvl) { var key = this.getKey(ele); this.deleteCache(key, lvl); } }, { key: "invalidateKey", value: function invalidateKey(key) { var _this = this; this.lvls.forEach(function (lvl) { return _this.deleteCache(key, lvl); }); } // returns true if no other eles reference the invalidated cache (n.b. other eles may need the cache with the same key) }, { key: "invalidate", value: function invalidate(ele) { var id = ele.id(); var key = this.keyForId.get(id); // n.b. use stored key rather than current (potential key) this.deleteKeyMappingFor(ele); var entireKeyInvalidated = this.doesEleInvalidateKey(ele); if (entireKeyInvalidated) { // clear mapping for current key this.invalidateKey(key); } return entireKeyInvalidated || this.getNumberOfIdsForKey(key) === 0; } }]); return ElementTextureCacheLookup; }(); var minTxrH = 25; // the size of the texture cache for small height eles (special case) var txrStepH = 50; // the min size of the regular cache, and the size it increases with each step up var minLvl$1 = -4; // when scaling smaller than that we don't need to re-render var maxLvl$1 = 3; // when larger than this scale just render directly (caching is not helpful) var maxZoom$1 = 7.99; // beyond this zoom level, layered textures are not used var eleTxrSpacing = 8; // spacing between elements on textures to avoid blitting overlaps var defTxrWidth = 1024; // default/minimum texture width var maxTxrW = 1024; // the maximum width of a texture var maxTxrH = 1024; // the maximum height of a texture var minUtility = 0.2; // if usage of texture is less than this, it is retired var maxFullness = 0.8; // fullness of texture after which queue removal is checked var maxFullnessChecks = 10; // dequeued after this many checks var deqCost$1 = 0.15; // % of add'l rendering cost allowed for dequeuing ele caches each frame var deqAvgCost$1 = 0.1; // % of add'l rendering cost compared to average overall redraw time var deqNoDrawCost$1 = 0.9; // % of avg frame time that can be used for dequeueing when not drawing var deqFastCost$1 = 0.9; // % of frame time to be used when >60fps var deqRedrawThreshold$1 = 100; // time to batch redraws together from dequeueing to allow more dequeueing calcs to happen in the meanwhile var maxDeqSize$1 = 1; // number of eles to dequeue and render at higher texture in each batch var getTxrReasons = { dequeue: 'dequeue', downscale: 'downscale', highQuality: 'highQuality' }; var initDefaults = defaults$g({ getKey: null, doesEleInvalidateKey: falsify, drawElement: null, getBoundingBox: null, getRotationPoint: null, getRotationOffset: null, isVisible: trueify, allowEdgeTxrCaching: true, allowParentTxrCaching: true }); var ElementTextureCache = function ElementTextureCache(renderer, initOptions) { var self = this; self.renderer = renderer; self.onDequeues = []; var opts = initDefaults(initOptions); extend(self, opts); self.lookup = new ElementTextureCacheLookup(opts.getKey, opts.doesEleInvalidateKey); self.setupDequeueing(); }; var ETCp = ElementTextureCache.prototype; ETCp.reasons = getTxrReasons; // the list of textures in which new subtextures for elements can be placed ETCp.getTextureQueue = function (txrH) { var self = this; self.eleImgCaches = self.eleImgCaches || {}; return self.eleImgCaches[txrH] = self.eleImgCaches[txrH] || []; }; // the list of usused textures which can be recycled (in use in texture queue) ETCp.getRetiredTextureQueue = function (txrH) { var self = this; var rtxtrQs = self.eleImgCaches.retired = self.eleImgCaches.retired || {}; var rtxtrQ = rtxtrQs[txrH] = rtxtrQs[txrH] || []; return rtxtrQ; }; // queue of element draw requests at different scale levels ETCp.getElementQueue = function () { var self = this; var q = self.eleCacheQueue = self.eleCacheQueue || new heap(function (a, b) { return b.reqs - a.reqs; }); return q; }; // queue of element draw requests at different scale levels (element id lookup) ETCp.getElementKeyToQueue = function () { var self = this; var k2q = self.eleKeyToCacheQueue = self.eleKeyToCacheQueue || {}; return k2q; }; ETCp.getElement = function (ele, bb, pxRatio, lvl, reason) { var self = this; var r = this.renderer; var zoom = r.cy.zoom(); var lookup = this.lookup; if (!bb || bb.w === 0 || bb.h === 0 || isNaN(bb.w) || isNaN(bb.h) || !ele.visible() || ele.removed()) { return null; } if (!self.allowEdgeTxrCaching && ele.isEdge() || !self.allowParentTxrCaching && ele.isParent()) { return null; } if (lvl == null) { lvl = Math.ceil(log2(zoom * pxRatio)); } if (lvl < minLvl$1) { lvl = minLvl$1; } else if (zoom >= maxZoom$1 || lvl > maxLvl$1) { return null; } var scale = Math.pow(2, lvl); var eleScaledH = bb.h * scale; var eleScaledW = bb.w * scale; var scaledLabelShown = r.eleTextBiggerThanMin(ele, scale); if (!this.isVisible(ele, scaledLabelShown)) { return null; } var eleCache = lookup.get(ele, lvl); // if this get was on an unused/invalidated cache, then restore the texture usage metric if (eleCache && eleCache.invalidated) { eleCache.invalidated = false; eleCache.texture.invalidatedWidth -= eleCache.width; } if (eleCache) { return eleCache; } var txrH; // which texture height this ele belongs to if (eleScaledH <= minTxrH) { txrH = minTxrH; } else if (eleScaledH <= txrStepH) { txrH = txrStepH; } else { txrH = Math.ceil(eleScaledH / txrStepH) * txrStepH; } if (eleScaledH > maxTxrH || eleScaledW > maxTxrW) { return null; // caching large elements is not efficient } var txrQ = self.getTextureQueue(txrH); // first try the second last one in case it has space at the end var txr = txrQ[txrQ.length - 2]; var addNewTxr = function addNewTxr() { return self.recycleTexture(txrH, eleScaledW) || self.addTexture(txrH, eleScaledW); }; // try the last one if there is no second last one if (!txr) { txr = txrQ[txrQ.length - 1]; } // if the last one doesn't exist, we need a first one if (!txr) { txr = addNewTxr(); } // if there's no room in the current texture, we need a new one if (txr.width - txr.usedWidth < eleScaledW) { txr = addNewTxr(); } var scalableFrom = function scalableFrom(otherCache) { return otherCache && otherCache.scaledLabelShown === scaledLabelShown; }; var deqing = reason && reason === getTxrReasons.dequeue; var highQualityReq = reason && reason === getTxrReasons.highQuality; var downscaleReq = reason && reason === getTxrReasons.downscale; var higherCache; // the nearest cache with a higher level for (var l = lvl + 1; l <= maxLvl$1; l++) { var c = lookup.get(ele, l); if (c) { higherCache = c; break; } } var oneUpCache = higherCache && higherCache.level === lvl + 1 ? higherCache : null; var downscale = function downscale() { txr.context.drawImage(oneUpCache.texture.canvas, oneUpCache.x, 0, oneUpCache.width, oneUpCache.height, txr.usedWidth, 0, eleScaledW, eleScaledH); }; // reset ele area in texture txr.context.setTransform(1, 0, 0, 1, 0, 0); txr.context.clearRect(txr.usedWidth, 0, eleScaledW, txrH); if (scalableFrom(oneUpCache)) { // then we can relatively cheaply rescale the existing image w/o rerendering downscale(); } else if (scalableFrom(higherCache)) { // then use the higher cache for now and queue the next level down // to cheaply scale towards the smaller level if (highQualityReq) { for (var _l = higherCache.level; _l > lvl; _l--) { oneUpCache = self.getElement(ele, bb, pxRatio, _l, getTxrReasons.downscale); } downscale(); } else { self.queueElement(ele, higherCache.level - 1); return higherCache; } } else { var lowerCache; // the nearest cache with a lower level if (!deqing && !highQualityReq && !downscaleReq) { for (var _l2 = lvl - 1; _l2 >= minLvl$1; _l2--) { var _c = lookup.get(ele, _l2); if (_c) { lowerCache = _c; break; } } } if (scalableFrom(lowerCache)) { // then use the lower quality cache for now and queue the better one for later self.queueElement(ele, lvl); return lowerCache; } txr.context.translate(txr.usedWidth, 0); txr.context.scale(scale, scale); this.drawElement(txr.context, ele, bb, scaledLabelShown, false); txr.context.scale(1 / scale, 1 / scale); txr.context.translate(-txr.usedWidth, 0); } eleCache = { x: txr.usedWidth, texture: txr, level: lvl, scale: scale, width: eleScaledW, height: eleScaledH, scaledLabelShown: scaledLabelShown }; txr.usedWidth += Math.ceil(eleScaledW + eleTxrSpacing); txr.eleCaches.push(eleCache); lookup.set(ele, lvl, eleCache); self.checkTextureFullness(txr); return eleCache; }; ETCp.invalidateElements = function (eles) { for (var i = 0; i < eles.length; i++) { this.invalidateElement(eles[i]); } }; ETCp.invalidateElement = function (ele) { var self = this; var lookup = self.lookup; var caches = []; var invalid = lookup.isInvalid(ele); if (!invalid) { return; // override the invalidation request if the element key has not changed } for (var lvl = minLvl$1; lvl <= maxLvl$1; lvl++) { var cache = lookup.getForCachedKey(ele, lvl); if (cache) { caches.push(cache); } } var noOtherElesUseCache = lookup.invalidate(ele); if (noOtherElesUseCache) { for (var i = 0; i < caches.length; i++) { var _cache = caches[i]; var txr = _cache.texture; // remove space from the texture it belongs to txr.invalidatedWidth += _cache.width; // mark the cache as invalidated _cache.invalidated = true; // retire the texture if its utility is low self.checkTextureUtility(txr); } } // remove from queue since the old req was for the old state self.removeFromQueue(ele); }; ETCp.checkTextureUtility = function (txr) { // invalidate all entries in the cache if the cache size is small if (txr.invalidatedWidth >= minUtility * txr.width) { this.retireTexture(txr); } }; ETCp.checkTextureFullness = function (txr) { // if texture has been mostly filled and passed over several times, remove // it from the queue so we don't need to waste time looking at it to put new things var self = this; var txrQ = self.getTextureQueue(txr.height); if (txr.usedWidth / txr.width > maxFullness && txr.fullnessChecks >= maxFullnessChecks) { removeFromArray(txrQ, txr); } else { txr.fullnessChecks++; } }; ETCp.retireTexture = function (txr) { var self = this; var txrH = txr.height; var txrQ = self.getTextureQueue(txrH); var lookup = this.lookup; // retire the texture from the active / searchable queue: removeFromArray(txrQ, txr); txr.retired = true; // remove the refs from the eles to the caches: var eleCaches = txr.eleCaches; for (var i = 0; i < eleCaches.length; i++) { var eleCache = eleCaches[i]; lookup.deleteCache(eleCache.key, eleCache.level); } clearArray(eleCaches); // add the texture to a retired queue so it can be recycled in future: var rtxtrQ = self.getRetiredTextureQueue(txrH); rtxtrQ.push(txr); }; ETCp.addTexture = function (txrH, minW) { var self = this; var txrQ = self.getTextureQueue(txrH); var txr = {}; txrQ.push(txr); txr.eleCaches = []; txr.height = txrH; txr.width = Math.max(defTxrWidth, minW); txr.usedWidth = 0; txr.invalidatedWidth = 0; txr.fullnessChecks = 0; txr.canvas = self.renderer.makeOffscreenCanvas(txr.width, txr.height); txr.context = txr.canvas.getContext('2d'); return txr; }; ETCp.recycleTexture = function (txrH, minW) { var self = this; var txrQ = self.getTextureQueue(txrH); var rtxtrQ = self.getRetiredTextureQueue(txrH); for (var i = 0; i < rtxtrQ.length; i++) { var txr = rtxtrQ[i]; if (txr.width >= minW) { txr.retired = false; txr.usedWidth = 0; txr.invalidatedWidth = 0; txr.fullnessChecks = 0; clearArray(txr.eleCaches); txr.context.setTransform(1, 0, 0, 1, 0, 0); txr.context.clearRect(0, 0, txr.width, txr.height); removeFromArray(rtxtrQ, txr); txrQ.push(txr); return txr; } } }; ETCp.queueElement = function (ele, lvl) { var self = this; var q = self.getElementQueue(); var k2q = self.getElementKeyToQueue(); var key = this.getKey(ele); var existingReq = k2q[key]; if (existingReq) { // use the max lvl b/c in between lvls are cheap to make existingReq.level = Math.max(existingReq.level, lvl); existingReq.eles.merge(ele); existingReq.reqs++; q.updateItem(existingReq); } else { var req = { eles: ele.spawn().merge(ele), level: lvl, reqs: 1, key: key }; q.push(req); k2q[key] = req; } }; ETCp.dequeue = function (pxRatio /*, extent*/) { var self = this; var q = self.getElementQueue(); var k2q = self.getElementKeyToQueue(); var dequeued = []; var lookup = self.lookup; for (var i = 0; i < maxDeqSize$1; i++) { if (q.size() > 0) { var req = q.pop(); var key = req.key; var ele = req.eles[0]; // all eles have the same key var cacheExists = lookup.hasCache(ele, req.level); // clear out the key to req lookup k2q[key] = null; // dequeueing isn't necessary with an existing cache if (cacheExists) { continue; } dequeued.push(req); var bb = self.getBoundingBox(ele); self.getElement(ele, bb, pxRatio, req.level, getTxrReasons.dequeue); } else { break; } } return dequeued; }; ETCp.removeFromQueue = function (ele) { var self = this; var q = self.getElementQueue(); var k2q = self.getElementKeyToQueue(); var key = this.getKey(ele); var req = k2q[key]; if (req != null) { if (req.eles.length === 1) { // remove if last ele in the req // bring to front of queue req.reqs = MAX_INT$1; q.updateItem(req); q.pop(); // remove from queue k2q[key] = null; // remove from lookup map } else { // otherwise just remove ele from req req.eles.unmerge(ele); } } }; ETCp.onDequeue = function (fn) { this.onDequeues.push(fn); }; ETCp.offDequeue = function (fn) { removeFromArray(this.onDequeues, fn); }; ETCp.setupDequeueing = defs.setupDequeueing({ deqRedrawThreshold: deqRedrawThreshold$1, deqCost: deqCost$1, deqAvgCost: deqAvgCost$1, deqNoDrawCost: deqNoDrawCost$1, deqFastCost: deqFastCost$1, deq: function deq(self, pxRatio, extent) { return self.dequeue(pxRatio, extent); }, onDeqd: function onDeqd(self, deqd) { for (var i = 0; i < self.onDequeues.length; i++) { var fn = self.onDequeues[i]; fn(deqd); } }, shouldRedraw: function shouldRedraw(self, deqd, pxRatio, extent) { for (var i = 0; i < deqd.length; i++) { var eles = deqd[i].eles; for (var j = 0; j < eles.length; j++) { var bb = eles[j].boundingBox(); if (boundingBoxesIntersect(bb, extent)) { return true; } } } return false; }, priority: function priority(self) { return self.renderer.beforeRenderPriorities.eleTxrDeq; } }); var defNumLayers = 1; // default number of layers to use var minLvl = -4; // when scaling smaller than that we don't need to re-render var maxLvl = 2; // when larger than this scale just render directly (caching is not helpful) var maxZoom = 3.99; // beyond this zoom level, layered textures are not used var deqRedrawThreshold = 50; // time to batch redraws together from dequeueing to allow more dequeueing calcs to happen in the meanwhile var refineEleDebounceTime = 50; // time to debounce sharper ele texture updates var deqCost = 0.15; // % of add'l rendering cost allowed for dequeuing ele caches each frame var deqAvgCost = 0.1; // % of add'l rendering cost compared to average overall redraw time var deqNoDrawCost = 0.9; // % of avg frame time that can be used for dequeueing when not drawing var deqFastCost = 0.9; // % of frame time to be used when >60fps var maxDeqSize = 1; // number of eles to dequeue and render at higher texture in each batch var invalidThreshold = 250; // time threshold for disabling b/c of invalidations var maxLayerArea = 4000 * 4000; // layers can't be bigger than this var useHighQualityEleTxrReqs = true; // whether to use high quality ele txr requests (generally faster and cheaper in the longterm) // var log = function(){ console.log.apply( console, arguments ); }; var LayeredTextureCache = function LayeredTextureCache(renderer) { var self = this; var r = self.renderer = renderer; var cy = r.cy; self.layersByLevel = {}; // e.g. 2 => [ layer1, layer2, ..., layerN ] self.firstGet = true; self.lastInvalidationTime = performanceNow() - 2 * invalidThreshold; self.skipping = false; self.eleTxrDeqs = cy.collection(); self.scheduleElementRefinement = debounce_1(function () { self.refineElementTextures(self.eleTxrDeqs); self.eleTxrDeqs.unmerge(self.eleTxrDeqs); }, refineEleDebounceTime); r.beforeRender(function (willDraw, now) { if (now - self.lastInvalidationTime <= invalidThreshold) { self.skipping = true; } else { self.skipping = false; } }, r.beforeRenderPriorities.lyrTxrSkip); var qSort = function qSort(a, b) { return b.reqs - a.reqs; }; self.layersQueue = new heap(qSort); self.setupDequeueing(); }; var LTCp = LayeredTextureCache.prototype; var layerIdPool = 0; var MAX_INT = Math.pow(2, 53) - 1; LTCp.makeLayer = function (bb, lvl) { var scale = Math.pow(2, lvl); var w = Math.ceil(bb.w * scale); var h = Math.ceil(bb.h * scale); var canvas = this.renderer.makeOffscreenCanvas(w, h); var layer = { id: layerIdPool = ++layerIdPool % MAX_INT, bb: bb, level: lvl, width: w, height: h, canvas: canvas, context: canvas.getContext('2d'), eles: [], elesQueue: [], reqs: 0 }; // log('make layer %s with w %s and h %s and lvl %s', layer.id, layer.width, layer.height, layer.level); var cxt = layer.context; var dx = -layer.bb.x1; var dy = -layer.bb.y1; // do the transform on creation to save cycles (it's the same for all eles) cxt.scale(scale, scale); cxt.translate(dx, dy); return layer; }; LTCp.getLayers = function (eles, pxRatio, lvl) { var self = this; var r = self.renderer; var cy = r.cy; var zoom = cy.zoom(); var firstGet = self.firstGet; self.firstGet = false; // log('--\nget layers with %s eles', eles.length); //log eles.map(function(ele){ return ele.id() }) ); if (lvl == null) { lvl = Math.ceil(log2(zoom * pxRatio)); if (lvl < minLvl) { lvl = minLvl; } else if (zoom >= maxZoom || lvl > maxLvl) { return null; } } self.validateLayersElesOrdering(lvl, eles); var layersByLvl = self.layersByLevel; var scale = Math.pow(2, lvl); var layers = layersByLvl[lvl] = layersByLvl[lvl] || []; var bb; var lvlComplete = self.levelIsComplete(lvl, eles); var tmpLayers; var checkTempLevels = function checkTempLevels() { var canUseAsTmpLvl = function canUseAsTmpLvl(l) { self.validateLayersElesOrdering(l, eles); if (self.levelIsComplete(l, eles)) { tmpLayers = layersByLvl[l]; return true; } }; var checkLvls = function checkLvls(dir) { if (tmpLayers) { return; } for (var l = lvl + dir; minLvl <= l && l <= maxLvl; l += dir) { if (canUseAsTmpLvl(l)) { break; } } }; checkLvls(+1); checkLvls(-1); // remove the invalid layers; they will be replaced as needed later in this function for (var i = layers.length - 1; i >= 0; i--) { var layer = layers[i]; if (layer.invalid) { removeFromArray(layers, layer); } } }; if (!lvlComplete) { // if the current level is incomplete, then use the closest, best quality layerset temporarily // and later queue the current layerset so we can get the proper quality level soon checkTempLevels(); } else { // log('level complete, using existing layers\n--'); return layers; } var getBb = function getBb() { if (!bb) { bb = makeBoundingBox(); for (var i = 0; i < eles.length; i++) { updateBoundingBox(bb, eles[i].boundingBox()); } } return bb; }; var makeLayer = function makeLayer(opts) { opts = opts || {}; var after = opts.after; getBb(); var area = bb.w * scale * (bb.h * scale); if (area > maxLayerArea) { return null; } var layer = self.makeLayer(bb, lvl); if (after != null) { var index = layers.indexOf(after) + 1; layers.splice(index, 0, layer); } else if (opts.insert === undefined || opts.insert) { // no after specified => first layer made so put at start layers.unshift(layer); } // if( tmpLayers ){ //self.queueLayer( layer ); // } return layer; }; if (self.skipping && !firstGet) { // log('skip layers'); return null; } // log('do layers'); var layer = null; var maxElesPerLayer = eles.length / defNumLayers; var allowLazyQueueing = !firstGet; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var rs = ele._private.rscratch; var caches = rs.imgLayerCaches = rs.imgLayerCaches || {}; // log('look at ele', ele.id()); var existingLayer = caches[lvl]; if (existingLayer) { // reuse layer for later eles // log('reuse layer for', ele.id()); layer = existingLayer; continue; } if (!layer || layer.eles.length >= maxElesPerLayer || !boundingBoxInBoundingBox(layer.bb, ele.boundingBox())) { // log('make new layer for ele %s', ele.id()); layer = makeLayer({ insert: true, after: layer }); // if now layer can be built then we can't use layers at this level if (!layer) { return null; } // log('new layer with id %s', layer.id); } if (tmpLayers || allowLazyQueueing) { // log('queue ele %s in layer %s', ele.id(), layer.id); self.queueLayer(layer, ele); } else { // log('draw ele %s in layer %s', ele.id(), layer.id); self.drawEleInLayer(layer, ele, lvl, pxRatio); } layer.eles.push(ele); caches[lvl] = layer; } // log('--'); if (tmpLayers) { // then we only queued the current layerset and can't draw it yet return tmpLayers; } if (allowLazyQueueing) { // log('lazy queue level', lvl); return null; } return layers; }; // a layer may want to use an ele cache of a higher level to avoid blurriness // so the layer level might not equal the ele level LTCp.getEleLevelForLayerLevel = function (lvl, pxRatio) { return lvl; }; LTCp.drawEleInLayer = function (layer, ele, lvl, pxRatio) { var self = this; var r = this.renderer; var context = layer.context; var bb = ele.boundingBox(); if (bb.w === 0 || bb.h === 0 || !ele.visible()) { return; } lvl = self.getEleLevelForLayerLevel(lvl, pxRatio); { r.setImgSmoothing(context, false); } { r.drawCachedElement(context, ele, null, null, lvl, useHighQualityEleTxrReqs); } { r.setImgSmoothing(context, true); } }; LTCp.levelIsComplete = function (lvl, eles) { var self = this; var layers = self.layersByLevel[lvl]; if (!layers || layers.length === 0) { return false; } var numElesInLayers = 0; for (var i = 0; i < layers.length; i++) { var layer = layers[i]; // if there are any eles needed to be drawn yet, the level is not complete if (layer.reqs > 0) { return false; } // if the layer is invalid, the level is not complete if (layer.invalid) { return false; } numElesInLayers += layer.eles.length; } // we should have exactly the number of eles passed in to be complete if (numElesInLayers !== eles.length) { return false; } return true; }; LTCp.validateLayersElesOrdering = function (lvl, eles) { var layers = this.layersByLevel[lvl]; if (!layers) { return; } // if in a layer the eles are not in the same order, then the layer is invalid // (i.e. there is an ele in between the eles in the layer) for (var i = 0; i < layers.length; i++) { var layer = layers[i]; var offset = -1; // find the offset for (var j = 0; j < eles.length; j++) { if (layer.eles[0] === eles[j]) { offset = j; break; } } if (offset < 0) { // then the layer has nonexistent elements and is invalid this.invalidateLayer(layer); continue; } // the eles in the layer must be in the same continuous order, else the layer is invalid var o = offset; for (var j = 0; j < layer.eles.length; j++) { if (layer.eles[j] !== eles[o + j]) { // log('invalidate based on ordering', layer.id); this.invalidateLayer(layer); break; } } } }; LTCp.updateElementsInLayers = function (eles, update) { var self = this; var isEles = element(eles[0]); // collect udpated elements (cascaded from the layers) and update each // layer itself along the way for (var i = 0; i < eles.length; i++) { var req = isEles ? null : eles[i]; var ele = isEles ? eles[i] : eles[i].ele; var rs = ele._private.rscratch; var caches = rs.imgLayerCaches = rs.imgLayerCaches || {}; for (var l = minLvl; l <= maxLvl; l++) { var layer = caches[l]; if (!layer) { continue; } // if update is a request from the ele cache, then it affects only // the matching level if (req && self.getEleLevelForLayerLevel(layer.level) !== req.level) { continue; } update(layer, ele, req); } } }; LTCp.haveLayers = function () { var self = this; var haveLayers = false; for (var l = minLvl; l <= maxLvl; l++) { var layers = self.layersByLevel[l]; if (layers && layers.length > 0) { haveLayers = true; break; } } return haveLayers; }; LTCp.invalidateElements = function (eles) { var self = this; if (eles.length === 0) { return; } self.lastInvalidationTime = performanceNow(); // log('update invalidate layer time from eles'); if (eles.length === 0 || !self.haveLayers()) { return; } self.updateElementsInLayers(eles, function invalAssocLayers(layer, ele, req) { self.invalidateLayer(layer); }); }; LTCp.invalidateLayer = function (layer) { // log('update invalidate layer time'); this.lastInvalidationTime = performanceNow(); if (layer.invalid) { return; } // save cycles var lvl = layer.level; var eles = layer.eles; var layers = this.layersByLevel[lvl]; // log('invalidate layer', layer.id ); removeFromArray(layers, layer); // layer.eles = []; layer.elesQueue = []; layer.invalid = true; if (layer.replacement) { layer.replacement.invalid = true; } for (var i = 0; i < eles.length; i++) { var caches = eles[i]._private.rscratch.imgLayerCaches; if (caches) { caches[lvl] = null; } } }; LTCp.refineElementTextures = function (eles) { var self = this; // log('refine', eles.length); self.updateElementsInLayers(eles, function refineEachEle(layer, ele, req) { var rLyr = layer.replacement; if (!rLyr) { rLyr = layer.replacement = self.makeLayer(layer.bb, layer.level); rLyr.replaces = layer; rLyr.eles = layer.eles; // log('make replacement layer %s for %s with level %s', rLyr.id, layer.id, rLyr.level); } if (!rLyr.reqs) { for (var i = 0; i < rLyr.eles.length; i++) { self.queueLayer(rLyr, rLyr.eles[i]); } // log('queue replacement layer refinement', rLyr.id); } }); }; LTCp.enqueueElementRefinement = function (ele) { this.eleTxrDeqs.merge(ele); this.scheduleElementRefinement(); }; LTCp.queueLayer = function (layer, ele) { var self = this; var q = self.layersQueue; var elesQ = layer.elesQueue; var hasId = elesQ.hasId = elesQ.hasId || {}; // if a layer is going to be replaced, queuing is a waste of time if (layer.replacement) { return; } if (ele) { if (hasId[ele.id()]) { return; } elesQ.push(ele); hasId[ele.id()] = true; } if (layer.reqs) { layer.reqs++; q.updateItem(layer); } else { layer.reqs = 1; q.push(layer); } }; LTCp.dequeue = function (pxRatio) { var self = this; var q = self.layersQueue; var deqd = []; var eleDeqs = 0; while (eleDeqs < maxDeqSize) { if (q.size() === 0) { break; } var layer = q.peek(); // if a layer has been or will be replaced, then don't waste time with it if (layer.replacement) { // log('layer %s in queue skipped b/c it already has a replacement', layer.id); q.pop(); continue; } // if this is a replacement layer that has been superceded, then forget it if (layer.replaces && layer !== layer.replaces.replacement) { // log('layer is no longer the most uptodate replacement; dequeued', layer.id) q.pop(); continue; } if (layer.invalid) { // log('replacement layer %s is invalid; dequeued', layer.id); q.pop(); continue; } var ele = layer.elesQueue.shift(); if (ele) { // log('dequeue layer %s', layer.id); self.drawEleInLayer(layer, ele, layer.level, pxRatio); eleDeqs++; } if (deqd.length === 0) { // we need only one entry in deqd to queue redrawing etc deqd.push(true); } // if the layer has all its eles done, then remove from the queue if (layer.elesQueue.length === 0) { q.pop(); layer.reqs = 0; // log('dequeue of layer %s complete', layer.id); // when a replacement layer is dequeued, it replaces the old layer in the level if (layer.replaces) { self.applyLayerReplacement(layer); } self.requestRedraw(); } } return deqd; }; LTCp.applyLayerReplacement = function (layer) { var self = this; var layersInLevel = self.layersByLevel[layer.level]; var replaced = layer.replaces; var index = layersInLevel.indexOf(replaced); // if the replaced layer is not in the active list for the level, then replacing // refs would be a mistake (i.e. overwriting the true active layer) if (index < 0 || replaced.invalid) { // log('replacement layer would have no effect', layer.id); return; } layersInLevel[index] = layer; // replace level ref // replace refs in eles for (var i = 0; i < layer.eles.length; i++) { var _p = layer.eles[i]._private; var cache = _p.imgLayerCaches = _p.imgLayerCaches || {}; if (cache) { cache[layer.level] = layer; } } // log('apply replacement layer %s over %s', layer.id, replaced.id); self.requestRedraw(); }; LTCp.requestRedraw = debounce_1(function () { var r = this.renderer; r.redrawHint('eles', true); r.redrawHint('drag', true); r.redraw(); }, 100); LTCp.setupDequeueing = defs.setupDequeueing({ deqRedrawThreshold: deqRedrawThreshold, deqCost: deqCost, deqAvgCost: deqAvgCost, deqNoDrawCost: deqNoDrawCost, deqFastCost: deqFastCost, deq: function deq(self, pxRatio) { return self.dequeue(pxRatio); }, onDeqd: noop$1, shouldRedraw: trueify, priority: function priority(self) { return self.renderer.beforeRenderPriorities.lyrTxrDeq; } }); var CRp$b = {}; var impl; function polygon(context, points) { for (var i = 0; i < points.length; i++) { var pt = points[i]; context.lineTo(pt.x, pt.y); } } function triangleBackcurve(context, points, controlPoint) { var firstPt; for (var i = 0; i < points.length; i++) { var pt = points[i]; if (i === 0) { firstPt = pt; } context.lineTo(pt.x, pt.y); } context.quadraticCurveTo(controlPoint.x, controlPoint.y, firstPt.x, firstPt.y); } function triangleTee(context, trianglePoints, teePoints) { if (context.beginPath) { context.beginPath(); } var triPts = trianglePoints; for (var i = 0; i < triPts.length; i++) { var pt = triPts[i]; context.lineTo(pt.x, pt.y); } var teePts = teePoints; var firstTeePt = teePoints[0]; context.moveTo(firstTeePt.x, firstTeePt.y); for (var i = 1; i < teePts.length; i++) { var pt = teePts[i]; context.lineTo(pt.x, pt.y); } if (context.closePath) { context.closePath(); } } function circleTriangle(context, trianglePoints, rx, ry, r) { if (context.beginPath) { context.beginPath(); } context.arc(rx, ry, r, 0, Math.PI * 2, false); var triPts = trianglePoints; var firstTrPt = triPts[0]; context.moveTo(firstTrPt.x, firstTrPt.y); for (var i = 0; i < triPts.length; i++) { var pt = triPts[i]; context.lineTo(pt.x, pt.y); } if (context.closePath) { context.closePath(); } } function circle(context, rx, ry, r) { context.arc(rx, ry, r, 0, Math.PI * 2, false); } CRp$b.arrowShapeImpl = function (name) { return (impl || (impl = { 'polygon': polygon, 'triangle-backcurve': triangleBackcurve, 'triangle-tee': triangleTee, 'circle-triangle': circleTriangle, 'triangle-cross': triangleTee, 'circle': circle }))[name]; }; var CRp$a = {}; CRp$a.drawElement = function (context, ele, shiftToOriginWithBb, showLabel, showOverlay, showOpacity) { var r = this; if (ele.isNode()) { r.drawNode(context, ele, shiftToOriginWithBb, showLabel, showOverlay, showOpacity); } else { r.drawEdge(context, ele, shiftToOriginWithBb, showLabel, showOverlay, showOpacity); } }; CRp$a.drawElementOverlay = function (context, ele) { var r = this; if (ele.isNode()) { r.drawNodeOverlay(context, ele); } else { r.drawEdgeOverlay(context, ele); } }; CRp$a.drawElementUnderlay = function (context, ele) { var r = this; if (ele.isNode()) { r.drawNodeUnderlay(context, ele); } else { r.drawEdgeUnderlay(context, ele); } }; CRp$a.drawCachedElementPortion = function (context, ele, eleTxrCache, pxRatio, lvl, reason, getRotation, getOpacity) { var r = this; var bb = eleTxrCache.getBoundingBox(ele); if (bb.w === 0 || bb.h === 0) { return; } // ignore zero size case var eleCache = eleTxrCache.getElement(ele, bb, pxRatio, lvl, reason); if (eleCache != null) { var opacity = getOpacity(r, ele); if (opacity === 0) { return; } var theta = getRotation(r, ele); var x1 = bb.x1, y1 = bb.y1, w = bb.w, h = bb.h; var x, y, sx, sy, smooth; if (theta !== 0) { var rotPt = eleTxrCache.getRotationPoint(ele); sx = rotPt.x; sy = rotPt.y; context.translate(sx, sy); context.rotate(theta); smooth = r.getImgSmoothing(context); if (!smooth) { r.setImgSmoothing(context, true); } var off = eleTxrCache.getRotationOffset(ele); x = off.x; y = off.y; } else { x = x1; y = y1; } var oldGlobalAlpha; if (opacity !== 1) { oldGlobalAlpha = context.globalAlpha; context.globalAlpha = oldGlobalAlpha * opacity; } context.drawImage(eleCache.texture.canvas, eleCache.x, 0, eleCache.width, eleCache.height, x, y, w, h); if (opacity !== 1) { context.globalAlpha = oldGlobalAlpha; } if (theta !== 0) { context.rotate(-theta); context.translate(-sx, -sy); if (!smooth) { r.setImgSmoothing(context, false); } } } else { eleTxrCache.drawElement(context, ele); // direct draw fallback } }; var getZeroRotation = function getZeroRotation() { return 0; }; var getLabelRotation = function getLabelRotation(r, ele) { return r.getTextAngle(ele, null); }; var getSourceLabelRotation = function getSourceLabelRotation(r, ele) { return r.getTextAngle(ele, 'source'); }; var getTargetLabelRotation = function getTargetLabelRotation(r, ele) { return r.getTextAngle(ele, 'target'); }; var getOpacity = function getOpacity(r, ele) { return ele.effectiveOpacity(); }; var getTextOpacity = function getTextOpacity(e, ele) { return ele.pstyle('text-opacity').pfValue * ele.effectiveOpacity(); }; CRp$a.drawCachedElement = function (context, ele, pxRatio, extent, lvl, requestHighQuality) { var r = this; var _r$data = r.data, eleTxrCache = _r$data.eleTxrCache, lblTxrCache = _r$data.lblTxrCache, slbTxrCache = _r$data.slbTxrCache, tlbTxrCache = _r$data.tlbTxrCache; var bb = ele.boundingBox(); var reason = requestHighQuality === true ? eleTxrCache.reasons.highQuality : null; if (bb.w === 0 || bb.h === 0 || !ele.visible()) { return; } if (!extent || boundingBoxesIntersect(bb, extent)) { var isEdge = ele.isEdge(); var badLine = ele.element()._private.rscratch.badLine; r.drawElementUnderlay(context, ele); r.drawCachedElementPortion(context, ele, eleTxrCache, pxRatio, lvl, reason, getZeroRotation, getOpacity); if (!isEdge || !badLine) { r.drawCachedElementPortion(context, ele, lblTxrCache, pxRatio, lvl, reason, getLabelRotation, getTextOpacity); } if (isEdge && !badLine) { r.drawCachedElementPortion(context, ele, slbTxrCache, pxRatio, lvl, reason, getSourceLabelRotation, getTextOpacity); r.drawCachedElementPortion(context, ele, tlbTxrCache, pxRatio, lvl, reason, getTargetLabelRotation, getTextOpacity); } r.drawElementOverlay(context, ele); } }; CRp$a.drawElements = function (context, eles) { var r = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; r.drawElement(context, ele); } }; CRp$a.drawCachedElements = function (context, eles, pxRatio, extent) { var r = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; r.drawCachedElement(context, ele, pxRatio, extent); } }; CRp$a.drawCachedNodes = function (context, eles, pxRatio, extent) { var r = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; if (!ele.isNode()) { continue; } r.drawCachedElement(context, ele, pxRatio, extent); } }; CRp$a.drawLayeredElements = function (context, eles, pxRatio, extent) { var r = this; var layers = r.data.lyrTxrCache.getLayers(eles, pxRatio); if (layers) { for (var i = 0; i < layers.length; i++) { var layer = layers[i]; var bb = layer.bb; if (bb.w === 0 || bb.h === 0) { continue; } context.drawImage(layer.canvas, bb.x1, bb.y1, bb.w, bb.h); } } else { // fall back on plain caching if no layers r.drawCachedElements(context, eles, pxRatio, extent); } }; var CRp$9 = {}; CRp$9.drawEdge = function (context, edge, shiftToOriginWithBb) { var drawLabel = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true; var shouldDrawOverlay = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true; var shouldDrawOpacity = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : true; var r = this; var rs = edge._private.rscratch; if (shouldDrawOpacity && !edge.visible()) { return; } // if bezier ctrl pts can not be calculated, then die if (rs.badLine || rs.allpts == null || isNaN(rs.allpts[0])) { // isNaN in case edge is impossible and browser bugs (e.g. safari) return; } var bb; if (shiftToOriginWithBb) { bb = shiftToOriginWithBb; context.translate(-bb.x1, -bb.y1); } var opacity = shouldDrawOpacity ? edge.pstyle('opacity').value : 1; var lineOpacity = shouldDrawOpacity ? edge.pstyle('line-opacity').value : 1; var curveStyle = edge.pstyle('curve-style').value; var lineStyle = edge.pstyle('line-style').value; var edgeWidth = edge.pstyle('width').pfValue; var lineCap = edge.pstyle('line-cap').value; var effectiveLineOpacity = opacity * lineOpacity; // separate arrow opacity would require arrow-opacity property var effectiveArrowOpacity = opacity * lineOpacity; var drawLine = function drawLine() { var strokeOpacity = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : effectiveLineOpacity; if (curveStyle === 'straight-triangle') { r.eleStrokeStyle(context, edge, strokeOpacity); r.drawEdgeTrianglePath(edge, context, rs.allpts); } else { context.lineWidth = edgeWidth; context.lineCap = lineCap; r.eleStrokeStyle(context, edge, strokeOpacity); r.drawEdgePath(edge, context, rs.allpts, lineStyle); context.lineCap = 'butt'; // reset for other drawing functions } }; var drawOverlay = function drawOverlay() { if (!shouldDrawOverlay) { return; } r.drawEdgeOverlay(context, edge); }; var drawUnderlay = function drawUnderlay() { if (!shouldDrawOverlay) { return; } r.drawEdgeUnderlay(context, edge); }; var drawArrows = function drawArrows() { var arrowOpacity = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : effectiveArrowOpacity; r.drawArrowheads(context, edge, arrowOpacity); }; var drawText = function drawText() { r.drawElementText(context, edge, null, drawLabel); }; context.lineJoin = 'round'; var ghost = edge.pstyle('ghost').value === 'yes'; if (ghost) { var gx = edge.pstyle('ghost-offset-x').pfValue; var gy = edge.pstyle('ghost-offset-y').pfValue; var ghostOpacity = edge.pstyle('ghost-opacity').value; var effectiveGhostOpacity = effectiveLineOpacity * ghostOpacity; context.translate(gx, gy); drawLine(effectiveGhostOpacity); drawArrows(effectiveGhostOpacity); context.translate(-gx, -gy); } drawUnderlay(); drawLine(); drawArrows(); drawOverlay(); drawText(); if (shiftToOriginWithBb) { context.translate(bb.x1, bb.y1); } }; var drawEdgeOverlayUnderlay = function drawEdgeOverlayUnderlay(overlayOrUnderlay) { if (!['overlay', 'underlay'].includes(overlayOrUnderlay)) { throw new Error('Invalid state'); } return function (context, edge) { if (!edge.visible()) { return; } var opacity = edge.pstyle("".concat(overlayOrUnderlay, "-opacity")).value; if (opacity === 0) { return; } var r = this; var usePaths = r.usePaths(); var rs = edge._private.rscratch; var padding = edge.pstyle("".concat(overlayOrUnderlay, "-padding")).pfValue; var width = 2 * padding; var color = edge.pstyle("".concat(overlayOrUnderlay, "-color")).value; context.lineWidth = width; if (rs.edgeType === 'self' && !usePaths) { context.lineCap = 'butt'; } else { context.lineCap = 'round'; } r.colorStrokeStyle(context, color[0], color[1], color[2], opacity); r.drawEdgePath(edge, context, rs.allpts, 'solid'); }; }; CRp$9.drawEdgeOverlay = drawEdgeOverlayUnderlay('overlay'); CRp$9.drawEdgeUnderlay = drawEdgeOverlayUnderlay('underlay'); CRp$9.drawEdgePath = function (edge, context, pts, type) { var rs = edge._private.rscratch; var canvasCxt = context; var path; var pathCacheHit = false; var usePaths = this.usePaths(); var lineDashPattern = edge.pstyle('line-dash-pattern').pfValue; var lineDashOffset = edge.pstyle('line-dash-offset').pfValue; if (usePaths) { var pathCacheKey = pts.join('$'); var keyMatches = rs.pathCacheKey && rs.pathCacheKey === pathCacheKey; if (keyMatches) { path = context = rs.pathCache; pathCacheHit = true; } else { path = context = new Path2D(); rs.pathCacheKey = pathCacheKey; rs.pathCache = path; } } if (canvasCxt.setLineDash) { // for very outofdate browsers switch (type) { case 'dotted': canvasCxt.setLineDash([1, 1]); break; case 'dashed': canvasCxt.setLineDash(lineDashPattern); canvasCxt.lineDashOffset = lineDashOffset; break; case 'solid': canvasCxt.setLineDash([]); break; } } if (!pathCacheHit && !rs.badLine) { if (context.beginPath) { context.beginPath(); } context.moveTo(pts[0], pts[1]); switch (rs.edgeType) { case 'bezier': case 'self': case 'compound': case 'multibezier': for (var i = 2; i + 3 < pts.length; i += 4) { context.quadraticCurveTo(pts[i], pts[i + 1], pts[i + 2], pts[i + 3]); } break; case 'straight': case 'haystack': for (var _i = 2; _i + 1 < pts.length; _i += 2) { context.lineTo(pts[_i], pts[_i + 1]); } break; case 'segments': if (rs.isRound) { var _iterator = _createForOfIteratorHelper(rs.roundCorners), _step; try { for (_iterator.s(); !(_step = _iterator.n()).done;) { var corner = _step.value; drawPreparedRoundCorner(context, corner); } } catch (err) { _iterator.e(err); } finally { _iterator.f(); } context.lineTo(pts[pts.length - 2], pts[pts.length - 1]); } else { for (var _i2 = 2; _i2 + 1 < pts.length; _i2 += 2) { context.lineTo(pts[_i2], pts[_i2 + 1]); } } break; } } context = canvasCxt; if (usePaths) { context.stroke(path); } else { context.stroke(); } // reset any line dashes if (context.setLineDash) { // for very outofdate browsers context.setLineDash([]); } }; CRp$9.drawEdgeTrianglePath = function (edge, context, pts) { // use line stroke style for triangle fill style context.fillStyle = context.strokeStyle; var edgeWidth = edge.pstyle('width').pfValue; for (var i = 0; i + 1 < pts.length; i += 2) { var vector = [pts[i + 2] - pts[i], pts[i + 3] - pts[i + 1]]; var length = Math.sqrt(vector[0] * vector[0] + vector[1] * vector[1]); var normal = [vector[1] / length, -vector[0] / length]; var triangleHead = [normal[0] * edgeWidth / 2, normal[1] * edgeWidth / 2]; context.beginPath(); context.moveTo(pts[i] - triangleHead[0], pts[i + 1] - triangleHead[1]); context.lineTo(pts[i] + triangleHead[0], pts[i + 1] + triangleHead[1]); context.lineTo(pts[i + 2], pts[i + 3]); context.closePath(); context.fill(); } }; CRp$9.drawArrowheads = function (context, edge, opacity) { var rs = edge._private.rscratch; var isHaystack = rs.edgeType === 'haystack'; if (!isHaystack) { this.drawArrowhead(context, edge, 'source', rs.arrowStartX, rs.arrowStartY, rs.srcArrowAngle, opacity); } this.drawArrowhead(context, edge, 'mid-target', rs.midX, rs.midY, rs.midtgtArrowAngle, opacity); this.drawArrowhead(context, edge, 'mid-source', rs.midX, rs.midY, rs.midsrcArrowAngle, opacity); if (!isHaystack) { this.drawArrowhead(context, edge, 'target', rs.arrowEndX, rs.arrowEndY, rs.tgtArrowAngle, opacity); } }; CRp$9.drawArrowhead = function (context, edge, prefix, x, y, angle, opacity) { if (isNaN(x) || x == null || isNaN(y) || y == null || isNaN(angle) || angle == null) { return; } var self = this; var arrowShape = edge.pstyle(prefix + '-arrow-shape').value; if (arrowShape === 'none') { return; } var arrowClearFill = edge.pstyle(prefix + '-arrow-fill').value === 'hollow' ? 'both' : 'filled'; var arrowFill = edge.pstyle(prefix + '-arrow-fill').value; var edgeWidth = edge.pstyle('width').pfValue; var pArrowWidth = edge.pstyle(prefix + '-arrow-width'); var arrowWidth = pArrowWidth.value === 'match-line' ? edgeWidth : pArrowWidth.pfValue; if (pArrowWidth.units === '%') arrowWidth *= edgeWidth; var edgeOpacity = edge.pstyle('opacity').value; if (opacity === undefined) { opacity = edgeOpacity; } var gco = context.globalCompositeOperation; if (opacity !== 1 || arrowFill === 'hollow') { // then extra clear is needed context.globalCompositeOperation = 'destination-out'; self.colorFillStyle(context, 255, 255, 255, 1); self.colorStrokeStyle(context, 255, 255, 255, 1); self.drawArrowShape(edge, context, arrowClearFill, edgeWidth, arrowShape, arrowWidth, x, y, angle); context.globalCompositeOperation = gco; } // otherwise, the opaque arrow clears it for free :) var color = edge.pstyle(prefix + '-arrow-color').value; self.colorFillStyle(context, color[0], color[1], color[2], opacity); self.colorStrokeStyle(context, color[0], color[1], color[2], opacity); self.drawArrowShape(edge, context, arrowFill, edgeWidth, arrowShape, arrowWidth, x, y, angle); }; CRp$9.drawArrowShape = function (edge, context, fill, edgeWidth, shape, shapeWidth, x, y, angle) { var r = this; var usePaths = this.usePaths() && shape !== 'triangle-cross'; var pathCacheHit = false; var path; var canvasContext = context; var translation = { x: x, y: y }; var scale = edge.pstyle('arrow-scale').value; var size = this.getArrowWidth(edgeWidth, scale); var shapeImpl = r.arrowShapes[shape]; if (usePaths) { var cache = r.arrowPathCache = r.arrowPathCache || []; var key = hashString(shape); var cachedPath = cache[key]; if (cachedPath != null) { path = context = cachedPath; pathCacheHit = true; } else { path = context = new Path2D(); cache[key] = path; } } if (!pathCacheHit) { if (context.beginPath) { context.beginPath(); } if (usePaths) { // store in the path cache with values easily manipulated later shapeImpl.draw(context, 1, 0, { x: 0, y: 0 }, 1); } else { shapeImpl.draw(context, size, angle, translation, edgeWidth); } if (context.closePath) { context.closePath(); } } context = canvasContext; if (usePaths) { // set transform to arrow position/orientation context.translate(x, y); context.rotate(angle); context.scale(size, size); } if (fill === 'filled' || fill === 'both') { if (usePaths) { context.fill(path); } else { context.fill(); } } if (fill === 'hollow' || fill === 'both') { context.lineWidth = shapeWidth / (usePaths ? size : 1); context.lineJoin = 'miter'; if (usePaths) { context.stroke(path); } else { context.stroke(); } } if (usePaths) { // reset transform by applying inverse context.scale(1 / size, 1 / size); context.rotate(-angle); context.translate(-x, -y); } }; var CRp$8 = {}; CRp$8.safeDrawImage = function (context, img, ix, iy, iw, ih, x, y, w, h) { // detect problematic cases for old browsers with bad images (cheaper than try-catch) if (iw <= 0 || ih <= 0 || w <= 0 || h <= 0) { return; } try { context.drawImage(img, ix, iy, iw, ih, x, y, w, h); } catch (e) { warn(e); } }; CRp$8.drawInscribedImage = function (context, img, node, index, nodeOpacity) { var r = this; var pos = node.position(); var nodeX = pos.x; var nodeY = pos.y; var styleObj = node.cy().style(); var getIndexedStyle = styleObj.getIndexedStyle.bind(styleObj); var fit = getIndexedStyle(node, 'background-fit', 'value', index); var repeat = getIndexedStyle(node, 'background-repeat', 'value', index); var nodeW = node.width(); var nodeH = node.height(); var paddingX2 = node.padding() * 2; var nodeTW = nodeW + (getIndexedStyle(node, 'background-width-relative-to', 'value', index) === 'inner' ? 0 : paddingX2); var nodeTH = nodeH + (getIndexedStyle(node, 'background-height-relative-to', 'value', index) === 'inner' ? 0 : paddingX2); var rs = node._private.rscratch; var clip = getIndexedStyle(node, 'background-clip', 'value', index); var shouldClip = clip === 'node'; var imgOpacity = getIndexedStyle(node, 'background-image-opacity', 'value', index) * nodeOpacity; var smooth = getIndexedStyle(node, 'background-image-smoothing', 'value', index); var cornerRadius = node.pstyle('corner-radius').value; if (cornerRadius !== 'auto') cornerRadius = node.pstyle('corner-radius').pfValue; var imgW = img.width || img.cachedW; var imgH = img.height || img.cachedH; // workaround for broken browsers like ie if (null == imgW || null == imgH) { document.body.appendChild(img); // eslint-disable-line no-undef imgW = img.cachedW = img.width || img.offsetWidth; imgH = img.cachedH = img.height || img.offsetHeight; document.body.removeChild(img); // eslint-disable-line no-undef } var w = imgW; var h = imgH; if (getIndexedStyle(node, 'background-width', 'value', index) !== 'auto') { if (getIndexedStyle(node, 'background-width', 'units', index) === '%') { w = getIndexedStyle(node, 'background-width', 'pfValue', index) * nodeTW; } else { w = getIndexedStyle(node, 'background-width', 'pfValue', index); } } if (getIndexedStyle(node, 'background-height', 'value', index) !== 'auto') { if (getIndexedStyle(node, 'background-height', 'units', index) === '%') { h = getIndexedStyle(node, 'background-height', 'pfValue', index) * nodeTH; } else { h = getIndexedStyle(node, 'background-height', 'pfValue', index); } } if (w === 0 || h === 0) { return; // no point in drawing empty image (and chrome is broken in this case) } if (fit === 'contain') { var scale = Math.min(nodeTW / w, nodeTH / h); w *= scale; h *= scale; } else if (fit === 'cover') { var scale = Math.max(nodeTW / w, nodeTH / h); w *= scale; h *= scale; } var x = nodeX - nodeTW / 2; // left var posXUnits = getIndexedStyle(node, 'background-position-x', 'units', index); var posXPfVal = getIndexedStyle(node, 'background-position-x', 'pfValue', index); if (posXUnits === '%') { x += (nodeTW - w) * posXPfVal; } else { x += posXPfVal; } var offXUnits = getIndexedStyle(node, 'background-offset-x', 'units', index); var offXPfVal = getIndexedStyle(node, 'background-offset-x', 'pfValue', index); if (offXUnits === '%') { x += (nodeTW - w) * offXPfVal; } else { x += offXPfVal; } var y = nodeY - nodeTH / 2; // top var posYUnits = getIndexedStyle(node, 'background-position-y', 'units', index); var posYPfVal = getIndexedStyle(node, 'background-position-y', 'pfValue', index); if (posYUnits === '%') { y += (nodeTH - h) * posYPfVal; } else { y += posYPfVal; } var offYUnits = getIndexedStyle(node, 'background-offset-y', 'units', index); var offYPfVal = getIndexedStyle(node, 'background-offset-y', 'pfValue', index); if (offYUnits === '%') { y += (nodeTH - h) * offYPfVal; } else { y += offYPfVal; } if (rs.pathCache) { x -= nodeX; y -= nodeY; nodeX = 0; nodeY = 0; } var gAlpha = context.globalAlpha; context.globalAlpha = imgOpacity; var smoothingEnabled = r.getImgSmoothing(context); var isSmoothingSwitched = false; if (smooth === 'no' && smoothingEnabled) { r.setImgSmoothing(context, false); isSmoothingSwitched = true; } else if (smooth === 'yes' && !smoothingEnabled) { r.setImgSmoothing(context, true); isSmoothingSwitched = true; } if (repeat === 'no-repeat') { if (shouldClip) { context.save(); if (rs.pathCache) { context.clip(rs.pathCache); } else { r.nodeShapes[r.getNodeShape(node)].draw(context, nodeX, nodeY, nodeTW, nodeTH, cornerRadius, rs); context.clip(); } } r.safeDrawImage(context, img, 0, 0, imgW, imgH, x, y, w, h); if (shouldClip) { context.restore(); } } else { var pattern = context.createPattern(img, repeat); context.fillStyle = pattern; r.nodeShapes[r.getNodeShape(node)].draw(context, nodeX, nodeY, nodeTW, nodeTH, cornerRadius, rs); context.translate(x, y); context.fill(); context.translate(-x, -y); } context.globalAlpha = gAlpha; if (isSmoothingSwitched) { r.setImgSmoothing(context, smoothingEnabled); } }; var CRp$7 = {}; CRp$7.eleTextBiggerThanMin = function (ele, scale) { if (!scale) { var zoom = ele.cy().zoom(); var pxRatio = this.getPixelRatio(); var lvl = Math.ceil(log2(zoom * pxRatio)); // the effective texture level scale = Math.pow(2, lvl); } var computedSize = ele.pstyle('font-size').pfValue * scale; var minSize = ele.pstyle('min-zoomed-font-size').pfValue; if (computedSize < minSize) { return false; } return true; }; CRp$7.drawElementText = function (context, ele, shiftToOriginWithBb, force, prefix) { var useEleOpacity = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : true; var r = this; if (force == null) { if (useEleOpacity && !r.eleTextBiggerThanMin(ele)) { return; } } else if (force === false) { return; } if (ele.isNode()) { var label = ele.pstyle('label'); if (!label || !label.value) { return; } var justification = r.getLabelJustification(ele); context.textAlign = justification; context.textBaseline = 'bottom'; } else { var badLine = ele.element()._private.rscratch.badLine; var _label = ele.pstyle('label'); var srcLabel = ele.pstyle('source-label'); var tgtLabel = ele.pstyle('target-label'); if (badLine || (!_label || !_label.value) && (!srcLabel || !srcLabel.value) && (!tgtLabel || !tgtLabel.value)) { return; } context.textAlign = 'center'; context.textBaseline = 'bottom'; } var applyRotation = !shiftToOriginWithBb; var bb; if (shiftToOriginWithBb) { bb = shiftToOriginWithBb; context.translate(-bb.x1, -bb.y1); } if (prefix == null) { r.drawText(context, ele, null, applyRotation, useEleOpacity); if (ele.isEdge()) { r.drawText(context, ele, 'source', applyRotation, useEleOpacity); r.drawText(context, ele, 'target', applyRotation, useEleOpacity); } } else { r.drawText(context, ele, prefix, applyRotation, useEleOpacity); } if (shiftToOriginWithBb) { context.translate(bb.x1, bb.y1); } }; CRp$7.getFontCache = function (context) { var cache; this.fontCaches = this.fontCaches || []; for (var i = 0; i < this.fontCaches.length; i++) { cache = this.fontCaches[i]; if (cache.context === context) { return cache; } } cache = { context: context }; this.fontCaches.push(cache); return cache; }; // set up canvas context with font // returns transformed text string CRp$7.setupTextStyle = function (context, ele) { var useEleOpacity = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true; // Font style var labelStyle = ele.pstyle('font-style').strValue; var labelSize = ele.pstyle('font-size').pfValue + 'px'; var labelFamily = ele.pstyle('font-family').strValue; var labelWeight = ele.pstyle('font-weight').strValue; var opacity = useEleOpacity ? ele.effectiveOpacity() * ele.pstyle('text-opacity').value : 1; var outlineOpacity = ele.pstyle('text-outline-opacity').value * opacity; var color = ele.pstyle('color').value; var outlineColor = ele.pstyle('text-outline-color').value; context.font = labelStyle + ' ' + labelWeight + ' ' + labelSize + ' ' + labelFamily; context.lineJoin = 'round'; // so text outlines aren't jagged this.colorFillStyle(context, color[0], color[1], color[2], opacity); this.colorStrokeStyle(context, outlineColor[0], outlineColor[1], outlineColor[2], outlineOpacity); }; // TODO ensure re-used function roundRect(ctx, x, y, width, height) { var radius = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : 5; var stroke = arguments.length > 6 ? arguments[6] : undefined; ctx.beginPath(); ctx.moveTo(x + radius, y); ctx.lineTo(x + width - radius, y); ctx.quadraticCurveTo(x + width, y, x + width, y + radius); ctx.lineTo(x + width, y + height - radius); ctx.quadraticCurveTo(x + width, y + height, x + width - radius, y + height); ctx.lineTo(x + radius, y + height); ctx.quadraticCurveTo(x, y + height, x, y + height - radius); ctx.lineTo(x, y + radius); ctx.quadraticCurveTo(x, y, x + radius, y); ctx.closePath(); if (stroke) ctx.stroke();else ctx.fill(); } CRp$7.getTextAngle = function (ele, prefix) { var theta; var _p = ele._private; var rscratch = _p.rscratch; var pdash = prefix ? prefix + '-' : ''; var rotation = ele.pstyle(pdash + 'text-rotation'); var textAngle = getPrefixedProperty(rscratch, 'labelAngle', prefix); if (rotation.strValue === 'autorotate') { theta = ele.isEdge() ? textAngle : 0; } else if (rotation.strValue === 'none') { theta = 0; } else { theta = rotation.pfValue; } return theta; }; CRp$7.drawText = function (context, ele, prefix) { var applyRotation = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true; var useEleOpacity = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true; var _p = ele._private; var rscratch = _p.rscratch; var parentOpacity = useEleOpacity ? ele.effectiveOpacity() : 1; if (useEleOpacity && (parentOpacity === 0 || ele.pstyle('text-opacity').value === 0)) { return; } // use 'main' as an alias for the main label (i.e. null prefix) if (prefix === 'main') { prefix = null; } var textX = getPrefixedProperty(rscratch, 'labelX', prefix); var textY = getPrefixedProperty(rscratch, 'labelY', prefix); var orgTextX, orgTextY; // used for rotation var text = this.getLabelText(ele, prefix); if (text != null && text !== '' && !isNaN(textX) && !isNaN(textY)) { this.setupTextStyle(context, ele, useEleOpacity); var pdash = prefix ? prefix + '-' : ''; var textW = getPrefixedProperty(rscratch, 'labelWidth', prefix); var textH = getPrefixedProperty(rscratch, 'labelHeight', prefix); var marginX = ele.pstyle(pdash + 'text-margin-x').pfValue; var marginY = ele.pstyle(pdash + 'text-margin-y').pfValue; var isEdge = ele.isEdge(); var halign = ele.pstyle('text-halign').value; var valign = ele.pstyle('text-valign').value; if (isEdge) { halign = 'center'; valign = 'center'; } textX += marginX; textY += marginY; var theta; if (!applyRotation) { theta = 0; } else { theta = this.getTextAngle(ele, prefix); } if (theta !== 0) { orgTextX = textX; orgTextY = textY; context.translate(orgTextX, orgTextY); context.rotate(theta); textX = 0; textY = 0; } switch (valign) { case 'top': break; case 'center': textY += textH / 2; break; case 'bottom': textY += textH; break; } var backgroundOpacity = ele.pstyle('text-background-opacity').value; var borderOpacity = ele.pstyle('text-border-opacity').value; var textBorderWidth = ele.pstyle('text-border-width').pfValue; var backgroundPadding = ele.pstyle('text-background-padding').pfValue; var styleShape = ele.pstyle('text-background-shape').strValue; var rounded = styleShape.indexOf('round') === 0; var roundRadius = 2; if (backgroundOpacity > 0 || textBorderWidth > 0 && borderOpacity > 0) { var bgX = textX - backgroundPadding; switch (halign) { case 'left': bgX -= textW; break; case 'center': bgX -= textW / 2; break; } var bgY = textY - textH - backgroundPadding; var bgW = textW + 2 * backgroundPadding; var bgH = textH + 2 * backgroundPadding; if (backgroundOpacity > 0) { var textFill = context.fillStyle; var textBackgroundColor = ele.pstyle('text-background-color').value; context.fillStyle = 'rgba(' + textBackgroundColor[0] + ',' + textBackgroundColor[1] + ',' + textBackgroundColor[2] + ',' + backgroundOpacity * parentOpacity + ')'; if (rounded) { roundRect(context, bgX, bgY, bgW, bgH, roundRadius); } else { context.fillRect(bgX, bgY, bgW, bgH); } context.fillStyle = textFill; } if (textBorderWidth > 0 && borderOpacity > 0) { var textStroke = context.strokeStyle; var textLineWidth = context.lineWidth; var textBorderColor = ele.pstyle('text-border-color').value; var textBorderStyle = ele.pstyle('text-border-style').value; context.strokeStyle = 'rgba(' + textBorderColor[0] + ',' + textBorderColor[1] + ',' + textBorderColor[2] + ',' + borderOpacity * parentOpacity + ')'; context.lineWidth = textBorderWidth; if (context.setLineDash) { // for very outofdate browsers switch (textBorderStyle) { case 'dotted': context.setLineDash([1, 1]); break; case 'dashed': context.setLineDash([4, 2]); break; case 'double': context.lineWidth = textBorderWidth / 4; // 50% reserved for white between the two borders context.setLineDash([]); break; case 'solid': context.setLineDash([]); break; } } if (rounded) { roundRect(context, bgX, bgY, bgW, bgH, roundRadius, 'stroke'); } else { context.strokeRect(bgX, bgY, bgW, bgH); } if (textBorderStyle === 'double') { var whiteWidth = textBorderWidth / 2; if (rounded) { roundRect(context, bgX + whiteWidth, bgY + whiteWidth, bgW - whiteWidth * 2, bgH - whiteWidth * 2, roundRadius, 'stroke'); } else { context.strokeRect(bgX + whiteWidth, bgY + whiteWidth, bgW - whiteWidth * 2, bgH - whiteWidth * 2); } } if (context.setLineDash) { // for very outofdate browsers context.setLineDash([]); } context.lineWidth = textLineWidth; context.strokeStyle = textStroke; } } var lineWidth = 2 * ele.pstyle('text-outline-width').pfValue; // *2 b/c the stroke is drawn centred on the middle if (lineWidth > 0) { context.lineWidth = lineWidth; } if (ele.pstyle('text-wrap').value === 'wrap') { var lines = getPrefixedProperty(rscratch, 'labelWrapCachedLines', prefix); var lineHeight = getPrefixedProperty(rscratch, 'labelLineHeight', prefix); var halfTextW = textW / 2; var justification = this.getLabelJustification(ele); if (justification === 'auto') ; else if (halign === 'left') { // auto justification : right if (justification === 'left') { textX += -textW; } else if (justification === 'center') { textX += -halfTextW; } // else same as auto } else if (halign === 'center') { // auto justfication : center if (justification === 'left') { textX += -halfTextW; } else if (justification === 'right') { textX += halfTextW; } // else same as auto } else if (halign === 'right') { // auto justification : left if (justification === 'center') { textX += halfTextW; } else if (justification === 'right') { textX += textW; } // else same as auto } switch (valign) { case 'top': textY -= (lines.length - 1) * lineHeight; break; case 'center': case 'bottom': textY -= (lines.length - 1) * lineHeight; break; } for (var l = 0; l < lines.length; l++) { if (lineWidth > 0) { context.strokeText(lines[l], textX, textY); } context.fillText(lines[l], textX, textY); textY += lineHeight; } } else { if (lineWidth > 0) { context.strokeText(text, textX, textY); } context.fillText(text, textX, textY); } if (theta !== 0) { context.rotate(-theta); context.translate(-orgTextX, -orgTextY); } } }; /* global Path2D */ var CRp$6 = {}; CRp$6.drawNode = function (context, node, shiftToOriginWithBb) { var drawLabel = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true; var shouldDrawOverlay = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true; var shouldDrawOpacity = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : true; var r = this; var nodeWidth, nodeHeight; var _p = node._private; var rs = _p.rscratch; var pos = node.position(); if (!number$1(pos.x) || !number$1(pos.y)) { return; // can't draw node with undefined position } if (shouldDrawOpacity && !node.visible()) { return; } var eleOpacity = shouldDrawOpacity ? node.effectiveOpacity() : 1; var usePaths = r.usePaths(); var path; var pathCacheHit = false; var padding = node.padding(); nodeWidth = node.width() + 2 * padding; nodeHeight = node.height() + 2 * padding; // // setup shift var bb; if (shiftToOriginWithBb) { bb = shiftToOriginWithBb; context.translate(-bb.x1, -bb.y1); } // // load bg image var bgImgProp = node.pstyle('background-image'); var urls = bgImgProp.value; var urlDefined = new Array(urls.length); var image = new Array(urls.length); var numImages = 0; for (var i = 0; i < urls.length; i++) { var url = urls[i]; var defd = urlDefined[i] = url != null && url !== 'none'; if (defd) { var bgImgCrossOrigin = node.cy().style().getIndexedStyle(node, 'background-image-crossorigin', 'value', i); numImages++; // get image, and if not loaded then ask to redraw when later loaded image[i] = r.getCachedImage(url, bgImgCrossOrigin, function () { _p.backgroundTimestamp = Date.now(); node.emitAndNotify('background'); }); } } // // setup styles var darkness = node.pstyle('background-blacken').value; var borderWidth = node.pstyle('border-width').pfValue; var bgOpacity = node.pstyle('background-opacity').value * eleOpacity; var borderColor = node.pstyle('border-color').value; var borderStyle = node.pstyle('border-style').value; var borderJoin = node.pstyle('border-join').value; var borderCap = node.pstyle('border-cap').value; var borderPosition = node.pstyle('border-position').value; var borderPattern = node.pstyle('border-dash-pattern').pfValue; var borderOffset = node.pstyle('border-dash-offset').pfValue; var borderOpacity = node.pstyle('border-opacity').value * eleOpacity; var outlineWidth = node.pstyle('outline-width').pfValue; var outlineColor = node.pstyle('outline-color').value; var outlineStyle = node.pstyle('outline-style').value; var outlineOpacity = node.pstyle('outline-opacity').value * eleOpacity; var outlineOffset = node.pstyle('outline-offset').value; var cornerRadius = node.pstyle('corner-radius').value; if (cornerRadius !== 'auto') cornerRadius = node.pstyle('corner-radius').pfValue; var setupShapeColor = function setupShapeColor() { var bgOpy = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : bgOpacity; r.eleFillStyle(context, node, bgOpy); }; var setupBorderColor = function setupBorderColor() { var bdrOpy = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : borderOpacity; r.colorStrokeStyle(context, borderColor[0], borderColor[1], borderColor[2], bdrOpy); }; var setupOutlineColor = function setupOutlineColor() { var otlnOpy = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : outlineOpacity; r.colorStrokeStyle(context, outlineColor[0], outlineColor[1], outlineColor[2], otlnOpy); }; // // setup shape var getPath = function getPath(width, height, shape, points) { var pathCache = r.nodePathCache = r.nodePathCache || []; var key = hashStrings(shape === 'polygon' ? shape + ',' + points.join(',') : shape, '' + height, '' + width, '' + cornerRadius); var cachedPath = pathCache[key]; var path; var cacheHit = false; if (cachedPath != null) { path = cachedPath; cacheHit = true; rs.pathCache = path; } else { path = new Path2D(); pathCache[key] = rs.pathCache = path; } return { path: path, cacheHit: cacheHit }; }; var styleShape = node.pstyle('shape').strValue; var shapePts = node.pstyle('shape-polygon-points').pfValue; if (usePaths) { context.translate(pos.x, pos.y); var shapePath = getPath(nodeWidth, nodeHeight, styleShape, shapePts); path = shapePath.path; pathCacheHit = shapePath.cacheHit; } var drawShape = function drawShape() { if (!pathCacheHit) { var npos = pos; if (usePaths) { npos = { x: 0, y: 0 }; } r.nodeShapes[r.getNodeShape(node)].draw(path || context, npos.x, npos.y, nodeWidth, nodeHeight, cornerRadius, rs); } if (usePaths) { context.fill(path); } else { context.fill(); } }; var drawImages = function drawImages() { var nodeOpacity = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : eleOpacity; var inside = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; var prevBging = _p.backgrounding; var totalCompleted = 0; for (var _i = 0; _i < image.length; _i++) { var bgContainment = node.cy().style().getIndexedStyle(node, 'background-image-containment', 'value', _i); if (inside && bgContainment === 'over' || !inside && bgContainment === 'inside') { totalCompleted++; continue; } if (urlDefined[_i] && image[_i].complete && !image[_i].error) { totalCompleted++; r.drawInscribedImage(context, image[_i], node, _i, nodeOpacity); } } _p.backgrounding = !(totalCompleted === numImages); if (prevBging !== _p.backgrounding) { // update style b/c :backgrounding state changed node.updateStyle(false); } }; var drawPie = function drawPie() { var redrawShape = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false; var pieOpacity = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : eleOpacity; if (r.hasPie(node)) { r.drawPie(context, node, pieOpacity); // redraw/restore path if steps after pie need it if (redrawShape) { if (!usePaths) { r.nodeShapes[r.getNodeShape(node)].draw(context, pos.x, pos.y, nodeWidth, nodeHeight, cornerRadius, rs); } } } }; var darken = function darken() { var darkenOpacity = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : eleOpacity; var opacity = (darkness > 0 ? darkness : -darkness) * darkenOpacity; var c = darkness > 0 ? 0 : 255; if (darkness !== 0) { r.colorFillStyle(context, c, c, c, opacity); if (usePaths) { context.fill(path); } else { context.fill(); } } }; var drawBorder = function drawBorder() { if (borderWidth > 0) { context.lineWidth = borderWidth; context.lineCap = borderCap; context.lineJoin = borderJoin; if (context.setLineDash) { // for very outofdate browsers switch (borderStyle) { case 'dotted': context.setLineDash([1, 1]); break; case 'dashed': context.setLineDash(borderPattern); context.lineDashOffset = borderOffset; break; case 'solid': case 'double': context.setLineDash([]); break; } } if (borderPosition !== 'center') { context.save(); context.lineWidth *= 2; if (borderPosition === 'inside') { usePaths ? context.clip(path) : context.clip(); } else { var region = new Path2D(); region.rect(-nodeWidth / 2 - borderWidth, -nodeHeight / 2 - borderWidth, nodeWidth + 2 * borderWidth, nodeHeight + 2 * borderWidth); region.addPath(path); context.clip(region, 'evenodd'); } usePaths ? context.stroke(path) : context.stroke(); context.restore(); } else { usePaths ? context.stroke(path) : context.stroke(); } if (borderStyle === 'double') { context.lineWidth = borderWidth / 3; var gco = context.globalCompositeOperation; context.globalCompositeOperation = 'destination-out'; if (usePaths) { context.stroke(path); } else { context.stroke(); } context.globalCompositeOperation = gco; } // reset in case we changed the border style if (context.setLineDash) { // for very outofdate browsers context.setLineDash([]); } } }; var drawOutline = function drawOutline() { if (outlineWidth > 0) { context.lineWidth = outlineWidth; context.lineCap = 'butt'; if (context.setLineDash) { // for very outofdate browsers switch (outlineStyle) { case 'dotted': context.setLineDash([1, 1]); break; case 'dashed': context.setLineDash([4, 2]); break; case 'solid': case 'double': context.setLineDash([]); break; } } var npos = pos; if (usePaths) { npos = { x: 0, y: 0 }; } var shape = r.getNodeShape(node); var bWidth = borderWidth; if (borderPosition === 'inside') bWidth = 0; if (borderPosition === 'outside') bWidth *= 2; var scaleX = (nodeWidth + bWidth + (outlineWidth + outlineOffset)) / nodeWidth; var scaleY = (nodeHeight + bWidth + (outlineWidth + outlineOffset)) / nodeHeight; var sWidth = nodeWidth * scaleX; var sHeight = nodeHeight * scaleY; var points = r.nodeShapes[shape].points; var _path; if (usePaths) { var outlinePath = getPath(sWidth, sHeight, shape, points); _path = outlinePath.path; } // draw the outline path, either by using expanded points or by scaling // the dimensions, depending on shape if (shape === "ellipse") { r.drawEllipsePath(_path || context, npos.x, npos.y, sWidth, sHeight); } else if (['round-diamond', 'round-heptagon', 'round-hexagon', 'round-octagon', 'round-pentagon', 'round-polygon', 'round-triangle', 'round-tag'].includes(shape)) { var sMult = 0; var offsetX = 0; var offsetY = 0; if (shape === 'round-diamond') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.4; } else if (shape === 'round-heptagon') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.075; offsetY = -(bWidth / 2 + outlineOffset + outlineWidth) / 35; } else if (shape === 'round-hexagon') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.12; } else if (shape === 'round-pentagon') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.13; offsetY = -(bWidth / 2 + outlineOffset + outlineWidth) / 15; } else if (shape === 'round-tag') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.12; offsetX = (bWidth / 2 + outlineWidth + outlineOffset) * .07; } else if (shape === 'round-triangle') { sMult = (bWidth + outlineOffset + outlineWidth) * (Math.PI / 2); offsetY = -(bWidth + outlineOffset / 2 + outlineWidth) / Math.PI; } if (sMult !== 0) { scaleX = (nodeWidth + sMult) / nodeWidth; sWidth = nodeWidth * scaleX; if (!['round-hexagon', 'round-tag'].includes(shape)) { scaleY = (nodeHeight + sMult) / nodeHeight; sHeight = nodeHeight * scaleY; } } cornerRadius = cornerRadius === 'auto' ? getRoundPolygonRadius(sWidth, sHeight) : cornerRadius; var halfW = sWidth / 2; var halfH = sHeight / 2; var radius = cornerRadius + (bWidth + outlineWidth + outlineOffset) / 2; var p = new Array(points.length / 2); var corners = new Array(points.length / 2); for (var _i3 = 0; _i3 < points.length / 2; _i3++) { p[_i3] = { x: npos.x + offsetX + halfW * points[_i3 * 2], y: npos.y + offsetY + halfH * points[_i3 * 2 + 1] }; } var _i2, p1, p2, p3, len = p.length; p1 = p[len - 1]; // for each point for (_i2 = 0; _i2 < len; _i2++) { p2 = p[_i2 % len]; p3 = p[(_i2 + 1) % len]; corners[_i2] = getRoundCorner(p1, p2, p3, radius); p1 = p2; p2 = p3; } r.drawRoundPolygonPath(_path || context, npos.x + offsetX, npos.y + offsetY, nodeWidth * scaleX, nodeHeight * scaleY, points, corners); } else if (['roundrectangle', 'round-rectangle'].includes(shape)) { cornerRadius = cornerRadius === 'auto' ? getRoundRectangleRadius(sWidth, sHeight) : cornerRadius; r.drawRoundRectanglePath(_path || context, npos.x, npos.y, sWidth, sHeight, cornerRadius + (bWidth + outlineWidth + outlineOffset) / 2); } else if (['cutrectangle', 'cut-rectangle'].includes(shape)) { cornerRadius = cornerRadius === 'auto' ? getCutRectangleCornerLength() : cornerRadius; r.drawCutRectanglePath(_path || context, npos.x, npos.y, sWidth, sHeight, null, cornerRadius + (bWidth + outlineWidth + outlineOffset) / 4); } else if (['bottomroundrectangle', 'bottom-round-rectangle'].includes(shape)) { cornerRadius = cornerRadius === 'auto' ? getRoundRectangleRadius(sWidth, sHeight) : cornerRadius; r.drawBottomRoundRectanglePath(_path || context, npos.x, npos.y, sWidth, sHeight, cornerRadius + (bWidth + outlineWidth + outlineOffset) / 2); } else if (shape === "barrel") { r.drawBarrelPath(_path || context, npos.x, npos.y, sWidth, sHeight); } else if (shape.startsWith("polygon") || ['rhomboid', 'right-rhomboid', 'round-tag', 'tag', 'vee'].includes(shape)) { var pad = (bWidth + outlineWidth + outlineOffset) / nodeWidth; points = joinLines(expandPolygon(points, pad)); r.drawPolygonPath(_path || context, npos.x, npos.y, nodeWidth, nodeHeight, points); } else { var _pad = (bWidth + outlineWidth + outlineOffset) / nodeWidth; points = joinLines(expandPolygon(points, -_pad)); r.drawPolygonPath(_path || context, npos.x, npos.y, nodeWidth, nodeHeight, points); } if (usePaths) { context.stroke(_path); } else { context.stroke(); } if (outlineStyle === 'double') { context.lineWidth = bWidth / 3; var gco = context.globalCompositeOperation; context.globalCompositeOperation = 'destination-out'; if (usePaths) { context.stroke(_path); } else { context.stroke(); } context.globalCompositeOperation = gco; } // reset in case we changed the border style if (context.setLineDash) { // for very outofdate browsers context.setLineDash([]); } } }; var drawOverlay = function drawOverlay() { if (shouldDrawOverlay) { r.drawNodeOverlay(context, node, pos, nodeWidth, nodeHeight); } }; var drawUnderlay = function drawUnderlay() { if (shouldDrawOverlay) { r.drawNodeUnderlay(context, node, pos, nodeWidth, nodeHeight); } }; var drawText = function drawText() { r.drawElementText(context, node, null, drawLabel); }; var ghost = node.pstyle('ghost').value === 'yes'; if (ghost) { var gx = node.pstyle('ghost-offset-x').pfValue; var gy = node.pstyle('ghost-offset-y').pfValue; var ghostOpacity = node.pstyle('ghost-opacity').value; var effGhostOpacity = ghostOpacity * eleOpacity; context.translate(gx, gy); setupOutlineColor(); drawOutline(); setupShapeColor(ghostOpacity * bgOpacity); drawShape(); drawImages(effGhostOpacity, true); setupBorderColor(ghostOpacity * borderOpacity); drawBorder(); drawPie(darkness !== 0 || borderWidth !== 0); drawImages(effGhostOpacity, false); darken(effGhostOpacity); context.translate(-gx, -gy); } if (usePaths) { context.translate(-pos.x, -pos.y); } drawUnderlay(); if (usePaths) { context.translate(pos.x, pos.y); } setupOutlineColor(); drawOutline(); setupShapeColor(); drawShape(); drawImages(eleOpacity, true); setupBorderColor(); drawBorder(); drawPie(darkness !== 0 || borderWidth !== 0); drawImages(eleOpacity, false); darken(); if (usePaths) { context.translate(-pos.x, -pos.y); } drawText(); drawOverlay(); // // clean up shift if (shiftToOriginWithBb) { context.translate(bb.x1, bb.y1); } }; var drawNodeOverlayUnderlay = function drawNodeOverlayUnderlay(overlayOrUnderlay) { if (!['overlay', 'underlay'].includes(overlayOrUnderlay)) { throw new Error('Invalid state'); } return function (context, node, pos, nodeWidth, nodeHeight) { var r = this; if (!node.visible()) { return; } var padding = node.pstyle("".concat(overlayOrUnderlay, "-padding")).pfValue; var opacity = node.pstyle("".concat(overlayOrUnderlay, "-opacity")).value; var color = node.pstyle("".concat(overlayOrUnderlay, "-color")).value; var shape = node.pstyle("".concat(overlayOrUnderlay, "-shape")).value; var radius = node.pstyle("".concat(overlayOrUnderlay, "-corner-radius")).value; if (opacity > 0) { pos = pos || node.position(); if (nodeWidth == null || nodeHeight == null) { var _padding = node.padding(); nodeWidth = node.width() + 2 * _padding; nodeHeight = node.height() + 2 * _padding; } r.colorFillStyle(context, color[0], color[1], color[2], opacity); r.nodeShapes[shape].draw(context, pos.x, pos.y, nodeWidth + padding * 2, nodeHeight + padding * 2, radius); context.fill(); } }; }; CRp$6.drawNodeOverlay = drawNodeOverlayUnderlay('overlay'); CRp$6.drawNodeUnderlay = drawNodeOverlayUnderlay('underlay'); // does the node have at least one pie piece? CRp$6.hasPie = function (node) { node = node[0]; // ensure ele ref return node._private.hasPie; }; CRp$6.drawPie = function (context, node, nodeOpacity, pos) { node = node[0]; // ensure ele ref pos = pos || node.position(); var cyStyle = node.cy().style(); var pieSize = node.pstyle('pie-size'); var x = pos.x; var y = pos.y; var nodeW = node.width(); var nodeH = node.height(); var radius = Math.min(nodeW, nodeH) / 2; // must fit in node var lastPercent = 0; // what % to continue drawing pie slices from on [0, 1] var usePaths = this.usePaths(); if (usePaths) { x = 0; y = 0; } if (pieSize.units === '%') { radius = radius * pieSize.pfValue; } else if (pieSize.pfValue !== undefined) { radius = pieSize.pfValue / 2; } for (var i = 1; i <= cyStyle.pieBackgroundN; i++) { // 1..N var size = node.pstyle('pie-' + i + '-background-size').value; var color = node.pstyle('pie-' + i + '-background-color').value; var opacity = node.pstyle('pie-' + i + '-background-opacity').value * nodeOpacity; var percent = size / 100; // map integer range [0, 100] to [0, 1] // percent can't push beyond 1 if (percent + lastPercent > 1) { percent = 1 - lastPercent; } var angleStart = 1.5 * Math.PI + 2 * Math.PI * lastPercent; // start at 12 o'clock and go clockwise var angleDelta = 2 * Math.PI * percent; var angleEnd = angleStart + angleDelta; // ignore if // - zero size // - we're already beyond the full circle // - adding the current slice would go beyond the full circle if (size === 0 || lastPercent >= 1 || lastPercent + percent > 1) { continue; } context.beginPath(); context.moveTo(x, y); context.arc(x, y, radius, angleStart, angleEnd); context.closePath(); this.colorFillStyle(context, color[0], color[1], color[2], opacity); context.fill(); lastPercent += percent; } }; var CRp$5 = {}; var motionBlurDelay = 100; // var isFirefox = typeof InstallTrigger !== 'undefined'; CRp$5.getPixelRatio = function () { var context = this.data.contexts[0]; if (this.forcedPixelRatio != null) { return this.forcedPixelRatio; } var containerWindow = this.cy.window(); var backingStore = context.backingStorePixelRatio || context.webkitBackingStorePixelRatio || context.mozBackingStorePixelRatio || context.msBackingStorePixelRatio || context.oBackingStorePixelRatio || context.backingStorePixelRatio || 1; return (containerWindow.devicePixelRatio || 1) / backingStore; // eslint-disable-line no-undef }; CRp$5.paintCache = function (context) { var caches = this.paintCaches = this.paintCaches || []; var needToCreateCache = true; var cache; for (var i = 0; i < caches.length; i++) { cache = caches[i]; if (cache.context === context) { needToCreateCache = false; break; } } if (needToCreateCache) { cache = { context: context }; caches.push(cache); } return cache; }; CRp$5.createGradientStyleFor = function (context, shapeStyleName, ele, fill, opacity) { var gradientStyle; var usePaths = this.usePaths(); var colors = ele.pstyle(shapeStyleName + '-gradient-stop-colors').value, positions = ele.pstyle(shapeStyleName + '-gradient-stop-positions').pfValue; if (fill === 'radial-gradient') { if (ele.isEdge()) { var start = ele.sourceEndpoint(), end = ele.targetEndpoint(), mid = ele.midpoint(); var d1 = dist(start, mid); var d2 = dist(end, mid); gradientStyle = context.createRadialGradient(mid.x, mid.y, 0, mid.x, mid.y, Math.max(d1, d2)); } else { var pos = usePaths ? { x: 0, y: 0 } : ele.position(), width = ele.paddedWidth(), height = ele.paddedHeight(); gradientStyle = context.createRadialGradient(pos.x, pos.y, 0, pos.x, pos.y, Math.max(width, height)); } } else { if (ele.isEdge()) { var _start = ele.sourceEndpoint(), _end = ele.targetEndpoint(); gradientStyle = context.createLinearGradient(_start.x, _start.y, _end.x, _end.y); } else { var _pos = usePaths ? { x: 0, y: 0 } : ele.position(), _width = ele.paddedWidth(), _height = ele.paddedHeight(), halfWidth = _width / 2, halfHeight = _height / 2; var direction = ele.pstyle('background-gradient-direction').value; switch (direction) { case 'to-bottom': gradientStyle = context.createLinearGradient(_pos.x, _pos.y - halfHeight, _pos.x, _pos.y + halfHeight); break; case 'to-top': gradientStyle = context.createLinearGradient(_pos.x, _pos.y + halfHeight, _pos.x, _pos.y - halfHeight); break; case 'to-left': gradientStyle = context.createLinearGradient(_pos.x + halfWidth, _pos.y, _pos.x - halfWidth, _pos.y); break; case 'to-right': gradientStyle = context.createLinearGradient(_pos.x - halfWidth, _pos.y, _pos.x + halfWidth, _pos.y); break; case 'to-bottom-right': case 'to-right-bottom': gradientStyle = context.createLinearGradient(_pos.x - halfWidth, _pos.y - halfHeight, _pos.x + halfWidth, _pos.y + halfHeight); break; case 'to-top-right': case 'to-right-top': gradientStyle = context.createLinearGradient(_pos.x - halfWidth, _pos.y + halfHeight, _pos.x + halfWidth, _pos.y - halfHeight); break; case 'to-bottom-left': case 'to-left-bottom': gradientStyle = context.createLinearGradient(_pos.x + halfWidth, _pos.y - halfHeight, _pos.x - halfWidth, _pos.y + halfHeight); break; case 'to-top-left': case 'to-left-top': gradientStyle = context.createLinearGradient(_pos.x + halfWidth, _pos.y + halfHeight, _pos.x - halfWidth, _pos.y - halfHeight); break; } } } if (!gradientStyle) return null; // invalid gradient style var hasPositions = positions.length === colors.length; var length = colors.length; for (var i = 0; i < length; i++) { gradientStyle.addColorStop(hasPositions ? positions[i] : i / (length - 1), 'rgba(' + colors[i][0] + ',' + colors[i][1] + ',' + colors[i][2] + ',' + opacity + ')'); } return gradientStyle; }; CRp$5.gradientFillStyle = function (context, ele, fill, opacity) { var gradientStyle = this.createGradientStyleFor(context, 'background', ele, fill, opacity); if (!gradientStyle) return null; // error context.fillStyle = gradientStyle; }; CRp$5.colorFillStyle = function (context, r, g, b, a) { context.fillStyle = 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')'; // turn off for now, seems context does its own caching // var cache = this.paintCache(context); // var fillStyle = 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')'; // if( cache.fillStyle !== fillStyle ){ // context.fillStyle = cache.fillStyle = fillStyle; // } }; CRp$5.eleFillStyle = function (context, ele, opacity) { var backgroundFill = ele.pstyle('background-fill').value; if (backgroundFill === 'linear-gradient' || backgroundFill === 'radial-gradient') { this.gradientFillStyle(context, ele, backgroundFill, opacity); } else { var backgroundColor = ele.pstyle('background-color').value; this.colorFillStyle(context, backgroundColor[0], backgroundColor[1], backgroundColor[2], opacity); } }; CRp$5.gradientStrokeStyle = function (context, ele, fill, opacity) { var gradientStyle = this.createGradientStyleFor(context, 'line', ele, fill, opacity); if (!gradientStyle) return null; // error context.strokeStyle = gradientStyle; }; CRp$5.colorStrokeStyle = function (context, r, g, b, a) { context.strokeStyle = 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')'; // turn off for now, seems context does its own caching // var cache = this.paintCache(context); // var strokeStyle = 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')'; // if( cache.strokeStyle !== strokeStyle ){ // context.strokeStyle = cache.strokeStyle = strokeStyle; // } }; CRp$5.eleStrokeStyle = function (context, ele, opacity) { var lineFill = ele.pstyle('line-fill').value; if (lineFill === 'linear-gradient' || lineFill === 'radial-gradient') { this.gradientStrokeStyle(context, ele, lineFill, opacity); } else { var lineColor = ele.pstyle('line-color').value; this.colorStrokeStyle(context, lineColor[0], lineColor[1], lineColor[2], opacity); } }; // Resize canvas CRp$5.matchCanvasSize = function (container) { var r = this; var data = r.data; var bb = r.findContainerClientCoords(); var width = bb[2]; var height = bb[3]; var pixelRatio = r.getPixelRatio(); var mbPxRatio = r.motionBlurPxRatio; if (container === r.data.bufferCanvases[r.MOTIONBLUR_BUFFER_NODE] || container === r.data.bufferCanvases[r.MOTIONBLUR_BUFFER_DRAG]) { pixelRatio = mbPxRatio; } var canvasWidth = width * pixelRatio; var canvasHeight = height * pixelRatio; var canvas; if (canvasWidth === r.canvasWidth && canvasHeight === r.canvasHeight) { return; // save cycles if same } r.fontCaches = null; // resizing resets the style var canvasContainer = data.canvasContainer; canvasContainer.style.width = width + 'px'; canvasContainer.style.height = height + 'px'; for (var i = 0; i < r.CANVAS_LAYERS; i++) { canvas = data.canvases[i]; canvas.width = canvasWidth; canvas.height = canvasHeight; canvas.style.width = width + 'px'; canvas.style.height = height + 'px'; } for (var i = 0; i < r.BUFFER_COUNT; i++) { canvas = data.bufferCanvases[i]; canvas.width = canvasWidth; canvas.height = canvasHeight; canvas.style.width = width + 'px'; canvas.style.height = height + 'px'; } r.textureMult = 1; if (pixelRatio <= 1) { canvas = data.bufferCanvases[r.TEXTURE_BUFFER]; r.textureMult = 2; canvas.width = canvasWidth * r.textureMult; canvas.height = canvasHeight * r.textureMult; } r.canvasWidth = canvasWidth; r.canvasHeight = canvasHeight; r.pixelRatio = pixelRatio; }; CRp$5.renderTo = function (cxt, zoom, pan, pxRatio) { this.render({ forcedContext: cxt, forcedZoom: zoom, forcedPan: pan, drawAllLayers: true, forcedPxRatio: pxRatio }); }; CRp$5.clearCanvas = function () { var r = this; var data = r.data; function clear(context) { context.clearRect(0, 0, r.canvasWidth, r.canvasHeight); } clear(data.contexts[r.NODE]); clear(data.contexts[r.DRAG]); }; CRp$5.render = function (options) { var r = this; options = options || staticEmptyObject(); var cy = r.cy; if (r.webgl) { if (cy.zoom() > maxZoom$1) { r.clearWebgl(); } else { r.clearCanvas(); r.renderWebgl(options); return; } } var forcedContext = options.forcedContext; var drawAllLayers = options.drawAllLayers; var drawOnlyNodeLayer = options.drawOnlyNodeLayer; var forcedZoom = options.forcedZoom; var forcedPan = options.forcedPan; var pixelRatio = options.forcedPxRatio === undefined ? this.getPixelRatio() : options.forcedPxRatio; var data = r.data; var needDraw = data.canvasNeedsRedraw; var textureDraw = r.textureOnViewport && !forcedContext && (r.pinching || r.hoverData.dragging || r.swipePanning || r.data.wheelZooming); var motionBlur = options.motionBlur !== undefined ? options.motionBlur : r.motionBlur; var mbPxRatio = r.motionBlurPxRatio; var hasCompoundNodes = cy.hasCompoundNodes(); var inNodeDragGesture = r.hoverData.draggingEles; var inBoxSelection = r.hoverData.selecting || r.touchData.selecting ? true : false; motionBlur = motionBlur && !forcedContext && r.motionBlurEnabled && !inBoxSelection; var motionBlurFadeEffect = motionBlur; if (!forcedContext) { if (r.prevPxRatio !== pixelRatio) { r.invalidateContainerClientCoordsCache(); r.matchCanvasSize(r.container); r.redrawHint('eles', true); r.redrawHint('drag', true); } r.prevPxRatio = pixelRatio; } if (!forcedContext && r.motionBlurTimeout) { clearTimeout(r.motionBlurTimeout); } if (motionBlur) { if (r.mbFrames == null) { r.mbFrames = 0; } r.mbFrames++; if (r.mbFrames < 3) { // need several frames before even high quality motionblur motionBlurFadeEffect = false; } // go to lower quality blurry frames when several m/b frames have been rendered (avoids flashing) if (r.mbFrames > r.minMbLowQualFrames) { //r.fullQualityMb = false; r.motionBlurPxRatio = r.mbPxRBlurry; } } if (r.clearingMotionBlur) { r.motionBlurPxRatio = 1; } // b/c drawToContext() may be async w.r.t. redraw(), keep track of last texture frame // because a rogue async texture frame would clear needDraw if (r.textureDrawLastFrame && !textureDraw) { needDraw[r.NODE] = true; needDraw[r.SELECT_BOX] = true; } var style = cy.style(); var zoom = cy.zoom(); var effectiveZoom = forcedZoom !== undefined ? forcedZoom : zoom; var pan = cy.pan(); var effectivePan = { x: pan.x, y: pan.y }; var vp = { zoom: zoom, pan: { x: pan.x, y: pan.y } }; var prevVp = r.prevViewport; var viewportIsDiff = prevVp === undefined || vp.zoom !== prevVp.zoom || vp.pan.x !== prevVp.pan.x || vp.pan.y !== prevVp.pan.y; // we want the low quality motionblur only when the viewport is being manipulated etc (where it's not noticed) if (!viewportIsDiff && !(inNodeDragGesture && !hasCompoundNodes)) { r.motionBlurPxRatio = 1; } if (forcedPan) { effectivePan = forcedPan; } // apply pixel ratio effectiveZoom *= pixelRatio; effectivePan.x *= pixelRatio; effectivePan.y *= pixelRatio; var eles = r.getCachedZSortedEles(); function mbclear(context, x, y, w, h) { var gco = context.globalCompositeOperation; context.globalCompositeOperation = 'destination-out'; r.colorFillStyle(context, 255, 255, 255, r.motionBlurTransparency); context.fillRect(x, y, w, h); context.globalCompositeOperation = gco; } function setContextTransform(context, clear) { var ePan, eZoom, w, h; if (!r.clearingMotionBlur && (context === data.bufferContexts[r.MOTIONBLUR_BUFFER_NODE] || context === data.bufferContexts[r.MOTIONBLUR_BUFFER_DRAG])) { ePan = { x: pan.x * mbPxRatio, y: pan.y * mbPxRatio }; eZoom = zoom * mbPxRatio; w = r.canvasWidth * mbPxRatio; h = r.canvasHeight * mbPxRatio; } else { ePan = effectivePan; eZoom = effectiveZoom; w = r.canvasWidth; h = r.canvasHeight; } context.setTransform(1, 0, 0, 1, 0, 0); if (clear === 'motionBlur') { mbclear(context, 0, 0, w, h); } else if (!forcedContext && (clear === undefined || clear)) { context.clearRect(0, 0, w, h); } if (!drawAllLayers) { context.translate(ePan.x, ePan.y); context.scale(eZoom, eZoom); } if (forcedPan) { context.translate(forcedPan.x, forcedPan.y); } if (forcedZoom) { context.scale(forcedZoom, forcedZoom); } } if (!textureDraw) { r.textureDrawLastFrame = false; } if (textureDraw) { r.textureDrawLastFrame = true; if (!r.textureCache) { r.textureCache = {}; r.textureCache.bb = cy.mutableElements().boundingBox(); r.textureCache.texture = r.data.bufferCanvases[r.TEXTURE_BUFFER]; var cxt = r.data.bufferContexts[r.TEXTURE_BUFFER]; cxt.setTransform(1, 0, 0, 1, 0, 0); cxt.clearRect(0, 0, r.canvasWidth * r.textureMult, r.canvasHeight * r.textureMult); r.render({ forcedContext: cxt, drawOnlyNodeLayer: true, forcedPxRatio: pixelRatio * r.textureMult }); var vp = r.textureCache.viewport = { zoom: cy.zoom(), pan: cy.pan(), width: r.canvasWidth, height: r.canvasHeight }; vp.mpan = { x: (0 - vp.pan.x) / vp.zoom, y: (0 - vp.pan.y) / vp.zoom }; } needDraw[r.DRAG] = false; needDraw[r.NODE] = false; var context = data.contexts[r.NODE]; var texture = r.textureCache.texture; var vp = r.textureCache.viewport; context.setTransform(1, 0, 0, 1, 0, 0); if (motionBlur) { mbclear(context, 0, 0, vp.width, vp.height); } else { context.clearRect(0, 0, vp.width, vp.height); } var outsideBgColor = style.core('outside-texture-bg-color').value; var outsideBgOpacity = style.core('outside-texture-bg-opacity').value; r.colorFillStyle(context, outsideBgColor[0], outsideBgColor[1], outsideBgColor[2], outsideBgOpacity); context.fillRect(0, 0, vp.width, vp.height); var zoom = cy.zoom(); setContextTransform(context, false); context.clearRect(vp.mpan.x, vp.mpan.y, vp.width / vp.zoom / pixelRatio, vp.height / vp.zoom / pixelRatio); context.drawImage(texture, vp.mpan.x, vp.mpan.y, vp.width / vp.zoom / pixelRatio, vp.height / vp.zoom / pixelRatio); } else if (r.textureOnViewport && !forcedContext) { // clear the cache since we don't need it r.textureCache = null; } var extent = cy.extent(); var vpManip = r.pinching || r.hoverData.dragging || r.swipePanning || r.data.wheelZooming || r.hoverData.draggingEles || r.cy.animated(); var hideEdges = r.hideEdgesOnViewport && vpManip; var needMbClear = []; needMbClear[r.NODE] = !needDraw[r.NODE] && motionBlur && !r.clearedForMotionBlur[r.NODE] || r.clearingMotionBlur; if (needMbClear[r.NODE]) { r.clearedForMotionBlur[r.NODE] = true; } needMbClear[r.DRAG] = !needDraw[r.DRAG] && motionBlur && !r.clearedForMotionBlur[r.DRAG] || r.clearingMotionBlur; if (needMbClear[r.DRAG]) { r.clearedForMotionBlur[r.DRAG] = true; } if (needDraw[r.NODE] || drawAllLayers || drawOnlyNodeLayer || needMbClear[r.NODE]) { var useBuffer = motionBlur && !needMbClear[r.NODE] && mbPxRatio !== 1; var context = forcedContext || (useBuffer ? r.data.bufferContexts[r.MOTIONBLUR_BUFFER_NODE] : data.contexts[r.NODE]); var clear = motionBlur && !useBuffer ? 'motionBlur' : undefined; setContextTransform(context, clear); if (hideEdges) { r.drawCachedNodes(context, eles.nondrag, pixelRatio, extent); } else { r.drawLayeredElements(context, eles.nondrag, pixelRatio, extent); } if (r.debug) { r.drawDebugPoints(context, eles.nondrag); } if (!drawAllLayers && !motionBlur) { needDraw[r.NODE] = false; } } if (!drawOnlyNodeLayer && (needDraw[r.DRAG] || drawAllLayers || needMbClear[r.DRAG])) { var useBuffer = motionBlur && !needMbClear[r.DRAG] && mbPxRatio !== 1; var context = forcedContext || (useBuffer ? r.data.bufferContexts[r.MOTIONBLUR_BUFFER_DRAG] : data.contexts[r.DRAG]); setContextTransform(context, motionBlur && !useBuffer ? 'motionBlur' : undefined); if (hideEdges) { r.drawCachedNodes(context, eles.drag, pixelRatio, extent); } else { r.drawCachedElements(context, eles.drag, pixelRatio, extent); } if (r.debug) { r.drawDebugPoints(context, eles.drag); } if (!drawAllLayers && !motionBlur) { needDraw[r.DRAG] = false; } } this.drawSelectionRectangle(options, setContextTransform); // motionblur: blit rendered blurry frames if (motionBlur && mbPxRatio !== 1) { var cxtNode = data.contexts[r.NODE]; var txtNode = r.data.bufferCanvases[r.MOTIONBLUR_BUFFER_NODE]; var cxtDrag = data.contexts[r.DRAG]; var txtDrag = r.data.bufferCanvases[r.MOTIONBLUR_BUFFER_DRAG]; var drawMotionBlur = function drawMotionBlur(cxt, txt, needClear) { cxt.setTransform(1, 0, 0, 1, 0, 0); if (needClear || !motionBlurFadeEffect) { cxt.clearRect(0, 0, r.canvasWidth, r.canvasHeight); } else { mbclear(cxt, 0, 0, r.canvasWidth, r.canvasHeight); } var pxr = mbPxRatio; cxt.drawImage(txt, // img 0, 0, // sx, sy r.canvasWidth * pxr, r.canvasHeight * pxr, // sw, sh 0, 0, // x, y r.canvasWidth, r.canvasHeight // w, h ); }; if (needDraw[r.NODE] || needMbClear[r.NODE]) { drawMotionBlur(cxtNode, txtNode, needMbClear[r.NODE]); needDraw[r.NODE] = false; } if (needDraw[r.DRAG] || needMbClear[r.DRAG]) { drawMotionBlur(cxtDrag, txtDrag, needMbClear[r.DRAG]); needDraw[r.DRAG] = false; } } r.prevViewport = vp; if (r.clearingMotionBlur) { r.clearingMotionBlur = false; r.motionBlurCleared = true; r.motionBlur = true; } if (motionBlur) { r.motionBlurTimeout = setTimeout(function () { r.motionBlurTimeout = null; r.clearedForMotionBlur[r.NODE] = false; r.clearedForMotionBlur[r.DRAG] = false; r.motionBlur = false; r.clearingMotionBlur = !textureDraw; r.mbFrames = 0; needDraw[r.NODE] = true; needDraw[r.DRAG] = true; r.redraw(); }, motionBlurDelay); } if (!forcedContext) { cy.emit('render'); } }; CRp$5.drawSelectionRectangle = function (options, setContextTransform) { var r = this; var cy = r.cy; var data = r.data; var style = cy.style(); var drawOnlyNodeLayer = options.drawOnlyNodeLayer; var drawAllLayers = options.drawAllLayers; var needDraw = data.canvasNeedsRedraw; var forcedContext = options.forcedContext; if (r.showFps || !drawOnlyNodeLayer && needDraw[r.SELECT_BOX] && !drawAllLayers) { var context = forcedContext || data.contexts[r.SELECT_BOX]; setContextTransform(context); if (r.selection[4] == 1 && (r.hoverData.selecting || r.touchData.selecting)) { var zoom = r.cy.zoom(); var borderWidth = style.core('selection-box-border-width').value / zoom; context.lineWidth = borderWidth; context.fillStyle = 'rgba(' + style.core('selection-box-color').value[0] + ',' + style.core('selection-box-color').value[1] + ',' + style.core('selection-box-color').value[2] + ',' + style.core('selection-box-opacity').value + ')'; context.fillRect(r.selection[0], r.selection[1], r.selection[2] - r.selection[0], r.selection[3] - r.selection[1]); if (borderWidth > 0) { context.strokeStyle = 'rgba(' + style.core('selection-box-border-color').value[0] + ',' + style.core('selection-box-border-color').value[1] + ',' + style.core('selection-box-border-color').value[2] + ',' + style.core('selection-box-opacity').value + ')'; context.strokeRect(r.selection[0], r.selection[1], r.selection[2] - r.selection[0], r.selection[3] - r.selection[1]); } } if (data.bgActivePosistion && !r.hoverData.selecting) { var zoom = r.cy.zoom(); var pos = data.bgActivePosistion; context.fillStyle = 'rgba(' + style.core('active-bg-color').value[0] + ',' + style.core('active-bg-color').value[1] + ',' + style.core('active-bg-color').value[2] + ',' + style.core('active-bg-opacity').value + ')'; context.beginPath(); context.arc(pos.x, pos.y, style.core('active-bg-size').pfValue / zoom, 0, 2 * Math.PI); context.fill(); } var timeToRender = r.lastRedrawTime; if (r.showFps && timeToRender) { timeToRender = Math.round(timeToRender); var fps = Math.round(1000 / timeToRender); context.setTransform(1, 0, 0, 1, 0, 0); context.fillStyle = 'rgba(255, 0, 0, 0.75)'; context.strokeStyle = 'rgba(255, 0, 0, 0.75)'; context.lineWidth = 1; context.fillText('1 frame = ' + timeToRender + ' ms = ' + fps + ' fps', 0, 20); var maxFps = 60; context.strokeRect(0, 30, 250, 20); context.fillRect(0, 30, 250 * Math.min(fps / maxFps, 1), 20); } if (!drawAllLayers) { needDraw[r.SELECT_BOX] = false; } } }; function transformMatrix3x3(x, y, zoom) { var mat = new Array(9).fill(0); mat[0] = zoom; mat[4] = zoom; mat[6] = x; mat[7] = y; mat[8] = 1; return mat; } function projectionMatrix3x3(width, height) { // maps the canvas space into clip space var mat = new Array(9).fill(0); mat[0] = 2 / width; mat[4] = -2 / height; mat[6] = -1; mat[7] = 1; mat[8] = 1; return mat; } function multiply3x3(a, b) { var a00 = a[0], a01 = a[1], a02 = a[2]; var a10 = a[3], a11 = a[4], a12 = a[5]; var a20 = a[6], a21 = a[7], a22 = a[8]; var b00 = b[0], b01 = b[1], b02 = b[2]; var b10 = b[3], b11 = b[4], b12 = b[5]; var b20 = b[6], b21 = b[7], b22 = b[8]; return [b00 * a00 + b01 * a10 + b02 * a20, b00 * a01 + b01 * a11 + b02 * a21, b00 * a02 + b01 * a12 + b02 * a22, b10 * a00 + b11 * a10 + b12 * a20, b10 * a01 + b11 * a11 + b12 * a21, b10 * a02 + b11 * a12 + b12 * a22, b20 * a00 + b21 * a10 + b22 * a20, b20 * a01 + b21 * a11 + b22 * a21, b20 * a02 + b21 * a12 + b22 * a22]; } function transformMatrix4x4(x, y, zoom) { var mat = new Array(16).fill(0); mat[0] = zoom; mat[5] = zoom; mat[10] = 1; mat[12] = x; mat[13] = y; mat[15] = 1; return mat; } function projectionMatrix4x4(width, height) { // maps the canvas space into clip space var near = -100; var far = 100; var lr = 1 / (0 - width); var bt = 1 / (height - 0); var nf = 1 / (near - far); var mat = new Array(16).fill(0); mat[0] = -2 * lr; mat[5] = -2 * bt; mat[10] = 2 * nf; mat[12] = (0 + width) * lr; mat[13] = (0 + height) * bt; mat[14] = (far + near) * nf; mat[15] = 1; return mat; } function multiply4x4(a, b) { var a00 = a[0], a01 = a[1], a02 = a[2], a03 = a[3]; var a10 = a[4], a11 = a[5], a12 = a[6], a13 = a[7]; var a20 = a[8], a21 = a[9], a22 = a[10], a23 = a[11]; var a30 = a[12], a31 = a[13], a32 = a[14], a33 = a[15]; var b00 = b[0], b01 = b[1], b02 = b[2], b03 = b[3]; var b10 = b[4], b11 = b[5], b12 = b[6], b13 = b[7]; var b20 = b[8], b21 = b[9], b22 = b[10], b23 = b[11]; var b30 = b[12], b31 = b[13], b32 = b[14], b33 = b[15]; return [b00 * a00 + b01 * a10 + b02 * a20 + b03 * a30, b00 * a01 + b01 * a11 + b02 * a21 + b03 * a31, b00 * a02 + b01 * a12 + b02 * a22 + b03 * a32, b00 * a03 + b01 * a13 + b02 * a23 + b03 * a33, b10 * a00 + b11 * a10 + b12 * a20 + b13 * a30, b10 * a01 + b11 * a11 + b12 * a21 + b13 * a31, b10 * a02 + b11 * a12 + b12 * a22 + b13 * a32, b10 * a03 + b11 * a13 + b12 * a23 + b13 * a33, b20 * a00 + b21 * a10 + b22 * a20 + b23 * a30, b20 * a01 + b21 * a11 + b22 * a21 + b23 * a31, b20 * a02 + b21 * a12 + b22 * a22 + b23 * a32, b20 * a03 + b21 * a13 + b22 * a23 + b23 * a33, b30 * a00 + b31 * a10 + b32 * a20 + b33 * a30, b30 * a01 + b31 * a11 + b32 * a21 + b33 * a31, b30 * a02 + b31 * a12 + b32 * a22 + b33 * a32, b30 * a03 + b31 * a13 + b32 * a23 + b33 * a33]; } function compileShader(gl, type, source) { var shader = gl.createShader(type); gl.shaderSource(shader, source); gl.compileShader(shader); if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS)) { throw new Error(gl.getShaderInfoLog(shader)); } console.log(gl.getShaderInfoLog(shader)); return shader; } function createProgram(gl, vertexSource, fragementSource) { var vertexShader = compileShader(gl, gl.VERTEX_SHADER, vertexSource); var fragmentShader = compileShader(gl, gl.FRAGMENT_SHADER, fragementSource); var program = gl.createProgram(); gl.attachShader(program, vertexShader); gl.attachShader(program, fragmentShader); gl.linkProgram(program); if (!gl.getProgramParameter(program, gl.LINK_STATUS)) { throw new Error('Could not initialize shaders'); } return program; } function createNodeShaderProgram(gl) { var vertexShaderSource = "#version 300 es\n precision highp float;\n\n uniform mat4 uMatrix;\n\n in vec3 aVertexPosition;\n // in vec3 aVertexColor;\n in vec2 aTexCoord;\n\n // out vec4 vVertexColor;\n out vec2 vTexCoord;\n\n void main(void) {\n // vVertexColor = vec4(aVertexColor, 1.0);\n vTexCoord = aTexCoord;\n gl_Position = uMatrix * vec4(aVertexPosition, 1.0);\n }\n "; var fragmentShaderSource = "#version 300 es\n precision highp float;\n\n uniform sampler2D uEleTexture;\n uniform sampler2D uLabelTexture;\n\n // in vec4 vVertexColor;\n in vec2 vTexCoord;\n\n out vec4 outColor;\n\n void main(void) {\n // outColor = vVertexColor;\n vec4 bottomColor = texture(uEleTexture, vTexCoord);\n vec4 topColor = texture(uLabelTexture, vTexCoord);\n outColor = mix(bottomColor, topColor, topColor.a);\n }\n "; var program = createProgram(gl, vertexShaderSource, fragmentShaderSource); program.uMatrix = gl.getUniformLocation(program, 'uMatrix'); program.uEleTexture = gl.getUniformLocation(program, 'uEleTexture'); program.uLabelTexture = gl.getUniformLocation(program, 'uLabelTexture'); program.layerUniforms = [program.uEleTexture, program.uLabelTexture]; program.aVertexPosition = gl.getAttribLocation(program, 'aVertexPosition'); // program.aVertexColor = gl.getAttribLocation(program, 'aVertexColor'); program.aTexCoord = gl.getAttribLocation(program, 'aTexCoord'); return program; } function createEdgeShaderProgram(gl) { var vertexShaderSource = "#version 300 es\n precision highp float;\n\n uniform mat3 uMatrix;\n\n in vec2 aVertexPosition;\n // in vec3 aVertexColor;\n\n out vec4 vVertexColor;\n\n void main(void) {\n // vVertexColor = vec4(aVertexColor, 1.0);\n vVertexColor = vec4(0.0, 1.0, 0.0, 1.0);\n gl_Position = vec4(uMatrix * vec3(aVertexPosition, 1.0), 1.0);\n }\n "; var fragmentShaderSource = "#version 300 es\n precision highp float;\n\n in vec4 vVertexColor;\n out vec4 fragColor;\n\n void main(void) {\n fragColor = vVertexColor;\n }\n "; var program = createProgram(gl, vertexShaderSource, fragmentShaderSource); program.aVertexPosition = gl.getAttribLocation(program, 'aVertexPosition'); // program.aVertexColor = gl.getAttribLocation(program, 'aVertexColor'); program.uMatrix = gl.getUniformLocation(program, 'uMatrix'); return program; } var CRp$4 = {}; CRp$4.initWebgl = function (options) { var r = this; var gl = r.data.contexts[r.WEBGL]; gl.clearColor(0, 0, 0, 0); // background color // enable alpha blending of textures gl.enable(gl.BLEND); gl.blendEquation(gl.FUNC_ADD); gl.blendFunc(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA); // enable z-coord across multiple draw calls // gl.enable(gl.DEPTH_TEST); console.log('max texture', gl.getParameter(gl.MAX_TEXTURE_SIZE)); var nodeProgram = createNodeShaderProgram(gl); var edgeProgram = createEdgeShaderProgram(gl); r.data.webgl = { nodeProgram: nodeProgram, edgeProgram: edgeProgram, needBuffer: true }; r.onUpdateEleCalcs(function invalidateBuffer(willDraw, eles) { if (eles.length > 0) { r.data.webgl.needBuffer = true; console.log("elements changed: " + eles.length); } }); }; CRp$4.clearWebgl = function () { var r = this; var gl = r.data.contexts[r.WEBGL]; gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); }; function createVertexArrays(eles) { var nodeVertexArray = []; // const nodeColorArray = []; var nodeTexArray = []; var nodes = []; var edgeVertexArray = []; var nodeCount = 0; var edgeCount = 0; var z = -90; // TODO How to handle z-order? for (var i = 0; i < eles.length; i++) { var ele = eles[i]; if (ele.isNode()) { var node = ele; nodes.push(node); // const bgcolor = node.pstyle('background-color').value; // const opacity = node.pstyle('opacity').value; // const [ r, g, b, a ] = [ bgcolor[0]/256, bgcolor[1]/256, bgcolor[2]/256, opacity ]; var pos = node.position(); var padding = node.padding(); var nodeWidth = node.width() + 2 * padding; var nodeHeight = node.height() + 2 * padding; var halfW = nodeWidth / 2; var halfH = nodeHeight / 2; var topY = pos.y + halfH; var botY = pos.y - halfH; var leftX = pos.x - halfW; var rightX = pos.x + halfW; // TODO use indexing to reduce the size of these arrays // 6 vertices per node (for now) nodeVertexArray.push(leftX, botY, z, rightX, botY, z, rightX, topY, z, leftX, botY, z, rightX, topY, z, leftX, topY, z); // 6 vertices per node (for now) nodeTexArray.push(0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1); // // TODO this is not optimal, but we will be using textures eventually so this will dissapear // nodeColorArray.push( // r, g, b, // r, g, b, // r, g, b, // r, g, b, // r, g, b, // r, g, b, // ); nodeCount++; z++; } else { var edge = ele; var sp = edge.source().position(); var tp = edge.target().position(); edgeVertexArray.push(sp.x, sp.y, tp.x, tp.y); edgeCount++; } } return { nodeVertexArray: nodeVertexArray, // nodeColorArray, nodeTexArray: nodeTexArray, nodes: nodes, nodeCount: nodeCount, edgeVertexArray: edgeVertexArray, edgeCount: edgeCount }; } function getEffectivePanZoom(r) { var pixelRatio = r.pixelRatio; var zoom = r.cy.zoom(); var pan = r.cy.pan(); return { zoom: zoom * pixelRatio, x: pan.x * pixelRatio, y: pan.y * pixelRatio }; } function createMatrices(r) { var width = r.canvasWidth; var height = r.canvasHeight; var panzoom = getEffectivePanZoom(r); var transformMatrix3 = transformMatrix3x3(panzoom.x, panzoom.y, panzoom.zoom); var projectionMatrix3 = projectionMatrix3x3(width, height); var matrix3 = multiply3x3(projectionMatrix3, transformMatrix3); var transformMatrix = transformMatrix4x4(panzoom.x, panzoom.y, panzoom.zoom); var projectionMatrix = projectionMatrix4x4(width, height); var matrix = multiply4x4(projectionMatrix, transformMatrix); return { transformMatrix3: transformMatrix3, projectionMatrix3: projectionMatrix3, matrix3: matrix3, transformMatrix: transformMatrix, projectionMatrix: projectionMatrix, matrix: matrix }; } /** @param {WebGLRenderingContext} gl */ function bufferNodeData(r, gl, program, vertices) { var vao = gl.createVertexArray(); gl.bindVertexArray(vao); { // positions var buffer = gl.createBuffer(); gl.bindBuffer(gl.ARRAY_BUFFER, buffer); gl.bufferData(gl.ARRAY_BUFFER, new Float32Array(vertices.nodeVertexArray), gl.STATIC_DRAW); gl.vertexAttribPointer(program.aVertexPosition, 3, gl.FLOAT, false, 0, 0); gl.enableVertexAttribArray(program.aVertexPosition); gl.bindBuffer(gl.ARRAY_BUFFER, null); } // { // colors // const buffer = gl.createBuffer(); // gl.bindBuffer(gl.ARRAY_BUFFER, buffer); // gl.bufferData(gl.ARRAY_BUFFER, new Float32Array(vertices.nodeColorArray), gl.STATIC_DRAW); // gl.vertexAttribPointer(program.aVertexColor, 3, gl.FLOAT, false, 0, 0); // gl.enableVertexAttribArray(program.aVertexColor); // gl.bindBuffer(gl.ARRAY_BUFFER, null); // } { // texture coords var _buffer = gl.createBuffer(); gl.bindBuffer(gl.ARRAY_BUFFER, _buffer); gl.bufferData(gl.ARRAY_BUFFER, new Float32Array(vertices.nodeTexArray), gl.STATIC_DRAW); gl.vertexAttribPointer(program.aTexCoord, 2, gl.FLOAT, true, 0, 0); gl.enableVertexAttribArray(program.aTexCoord); gl.bindBuffer(gl.ARRAY_BUFFER, null); } gl.bindVertexArray(null); // texture(s) var layers = 2; var textures = new Array(layers); var node = vertices.nodes[0]; // TODO temp for (var layer = 0; layer < layers; layer++) { var eleCache = getTextureForNode(r, node, layer); var texture = gl.createTexture(); textures[layer] = texture; gl.bindTexture(gl.TEXTURE_2D, texture); if (eleCache) { gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, eleCache.width, eleCache.height, 0, gl.RGBA, gl.UNSIGNED_BYTE, eleCache.texture.canvas); gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR); gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR_MIPMAP_NEAREST); gl.generateMipmap(gl.TEXTURE_2D); } else { gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, new Uint8Array([0, 0, 0, 0])); } gl.bindTexture(gl.TEXTURE_2D, null); } var bind = function bind() { gl.bindVertexArray(vao); for (var _layer = 0; _layer < layers; _layer++) { if (textures[_layer]) { gl.activeTexture(gl.TEXTURE0 + _layer); gl.bindTexture(gl.TEXTURE_2D, textures[_layer]); gl.uniform1i(program.layerUniforms[_layer], _layer); // texture unit } } }; var unbind = function unbind() { gl.bindVertexArray(null); }; return { vao: vao, count: vertices.nodeCount * 6, bind: bind, unbind: unbind }; } function getTextureForNode(r, node, layer) { var pixelRatio = r.pixelRatio; var cache = layer === 0 ? r.data.eleTxrCache : r.data.lblTxrCache; var reason = 'highQuality'; // what does this mean? var lvl = maxLvl$1; var bb = cache.getBoundingBox(node); var eleCache = cache.getElement(node, bb, pixelRatio, lvl, reason); return eleCache; // may be null } function bufferEdgeData(gl, program, vertices) { var vao = gl.createVertexArray(); gl.bindVertexArray(vao); var buffer = gl.createBuffer(); gl.bindBuffer(gl.ARRAY_BUFFER, buffer); gl.bufferData(gl.ARRAY_BUFFER, new Float32Array(vertices.edgeVertexArray), gl.STATIC_DRAW); gl.vertexAttribPointer(program.aVertexPosition, 2, gl.FLOAT, false, 0, 0); gl.enableVertexAttribArray(program.aVertexPosition); gl.bindBuffer(gl.ARRAY_BUFFER, null); gl.bindVertexArray(null); var bind = function bind() { gl.bindVertexArray(vao); }; var unbind = function unbind() { gl.bindVertexArray(null); }; return { vao: vao, count: vertices.edgeCount * 2, bind: bind, unbind: unbind }; } function drawSelectionRectangle(r, options) { function setContextTransform(context) { var w = r.canvasWidth; var h = r.canvasHeight; var panzoom = getEffectivePanZoom(r); context.setTransform(1, 0, 0, 1, 0, 0); context.clearRect(0, 0, w, h); context.translate(panzoom.x, panzoom.y); context.scale(panzoom.zoom, panzoom.zoom); } r.drawSelectionRectangle(options, setContextTransform); } CRp$4.renderWebgl = function (options) { var r = this; console.log('webgl render'); if (r.data.canvasNeedsRedraw[r.SELECT_BOX]) { drawSelectionRectangle(r, options); } /** @type {WebGLRenderingContext} gl */ var gl = r.data.contexts[r.WEBGL]; var nodeProgram = r.data.webgl.nodeProgram; var edgeProgram = r.data.webgl.edgeProgram; if (r.data.webgl.needBuffer) { var eles = r.getCachedZSortedEles(); var vertices = createVertexArrays(eles); r.nodeBuffer = bufferNodeData(r, gl, nodeProgram, vertices); r.edgeBuffer = bufferEdgeData(gl, edgeProgram, vertices); r.data.webgl.needBuffer = false; } if (r.data.canvasNeedsRedraw[r.NODE]) { var matrices = createMatrices(r); gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); gl.viewport(0, 0, gl.canvas.width, gl.canvas.height); { // EDGES gl.useProgram(edgeProgram); r.edgeBuffer.bind(); gl.uniformMatrix3fv(edgeProgram.uMatrix, false, matrices.matrix3); gl.drawArrays(gl.LINES, 0, r.edgeBuffer.count); r.edgeBuffer.unbind(); } { // Nodes gl.useProgram(nodeProgram); r.nodeBuffer.bind(); gl.uniformMatrix4fv(nodeProgram.uMatrix, false, matrices.matrix); gl.drawArrays(gl.TRIANGLES, 0, r.nodeBuffer.count); r.nodeBuffer.unbind(); } } }; var CRp$3 = {}; // @O Polygon drawing CRp$3.drawPolygonPath = function (context, x, y, width, height, points) { var halfW = width / 2; var halfH = height / 2; if (context.beginPath) { context.beginPath(); } context.moveTo(x + halfW * points[0], y + halfH * points[1]); for (var i = 1; i < points.length / 2; i++) { context.lineTo(x + halfW * points[i * 2], y + halfH * points[i * 2 + 1]); } context.closePath(); }; CRp$3.drawRoundPolygonPath = function (context, x, y, width, height, points, corners) { corners.forEach(function (corner) { return drawPreparedRoundCorner(context, corner); }); context.closePath(); }; // Round rectangle drawing CRp$3.drawRoundRectanglePath = function (context, x, y, width, height, radius) { var halfWidth = width / 2; var halfHeight = height / 2; var cornerRadius = radius === 'auto' ? getRoundRectangleRadius(width, height) : Math.min(radius, halfHeight, halfWidth); if (context.beginPath) { context.beginPath(); } // Start at top middle context.moveTo(x, y - halfHeight); // Arc from middle top to right side context.arcTo(x + halfWidth, y - halfHeight, x + halfWidth, y, cornerRadius); // Arc from right side to bottom context.arcTo(x + halfWidth, y + halfHeight, x, y + halfHeight, cornerRadius); // Arc from bottom to left side context.arcTo(x - halfWidth, y + halfHeight, x - halfWidth, y, cornerRadius); // Arc from left side to topBorder context.arcTo(x - halfWidth, y - halfHeight, x, y - halfHeight, cornerRadius); // Join line context.lineTo(x, y - halfHeight); context.closePath(); }; CRp$3.drawBottomRoundRectanglePath = function (context, x, y, width, height, radius) { var halfWidth = width / 2; var halfHeight = height / 2; var cornerRadius = radius === 'auto' ? getRoundRectangleRadius(width, height) : radius; if (context.beginPath) { context.beginPath(); } // Start at top middle context.moveTo(x, y - halfHeight); context.lineTo(x + halfWidth, y - halfHeight); context.lineTo(x + halfWidth, y); context.arcTo(x + halfWidth, y + halfHeight, x, y + halfHeight, cornerRadius); context.arcTo(x - halfWidth, y + halfHeight, x - halfWidth, y, cornerRadius); context.lineTo(x - halfWidth, y - halfHeight); context.lineTo(x, y - halfHeight); context.closePath(); }; CRp$3.drawCutRectanglePath = function (context, x, y, width, height, points, corners) { var halfWidth = width / 2; var halfHeight = height / 2; var cornerLength = corners === 'auto' ? getCutRectangleCornerLength() : corners; if (context.beginPath) { context.beginPath(); } context.moveTo(x - halfWidth + cornerLength, y - halfHeight); context.lineTo(x + halfWidth - cornerLength, y - halfHeight); context.lineTo(x + halfWidth, y - halfHeight + cornerLength); context.lineTo(x + halfWidth, y + halfHeight - cornerLength); context.lineTo(x + halfWidth - cornerLength, y + halfHeight); context.lineTo(x - halfWidth + cornerLength, y + halfHeight); context.lineTo(x - halfWidth, y + halfHeight - cornerLength); context.lineTo(x - halfWidth, y - halfHeight + cornerLength); context.closePath(); }; CRp$3.drawBarrelPath = function (context, x, y, width, height) { var halfWidth = width / 2; var halfHeight = height / 2; var xBegin = x - halfWidth; var xEnd = x + halfWidth; var yBegin = y - halfHeight; var yEnd = y + halfHeight; var barrelCurveConstants = getBarrelCurveConstants(width, height); var wOffset = barrelCurveConstants.widthOffset; var hOffset = barrelCurveConstants.heightOffset; var ctrlPtXOffset = barrelCurveConstants.ctrlPtOffsetPct * wOffset; if (context.beginPath) { context.beginPath(); } context.moveTo(xBegin, yBegin + hOffset); context.lineTo(xBegin, yEnd - hOffset); context.quadraticCurveTo(xBegin + ctrlPtXOffset, yEnd, xBegin + wOffset, yEnd); context.lineTo(xEnd - wOffset, yEnd); context.quadraticCurveTo(xEnd - ctrlPtXOffset, yEnd, xEnd, yEnd - hOffset); context.lineTo(xEnd, yBegin + hOffset); context.quadraticCurveTo(xEnd - ctrlPtXOffset, yBegin, xEnd - wOffset, yBegin); context.lineTo(xBegin + wOffset, yBegin); context.quadraticCurveTo(xBegin + ctrlPtXOffset, yBegin, xBegin, yBegin + hOffset); context.closePath(); }; var sin0 = Math.sin(0); var cos0 = Math.cos(0); var sin = {}; var cos = {}; var ellipseStepSize = Math.PI / 40; for (var i = 0 * Math.PI; i < 2 * Math.PI; i += ellipseStepSize) { sin[i] = Math.sin(i); cos[i] = Math.cos(i); } CRp$3.drawEllipsePath = function (context, centerX, centerY, width, height) { if (context.beginPath) { context.beginPath(); } if (context.ellipse) { context.ellipse(centerX, centerY, width / 2, height / 2, 0, 0, 2 * Math.PI); } else { var xPos, yPos; var rw = width / 2; var rh = height / 2; for (var i = 0 * Math.PI; i < 2 * Math.PI; i += ellipseStepSize) { xPos = centerX - rw * sin[i] * sin0 + rw * cos[i] * cos0; yPos = centerY + rh * cos[i] * sin0 + rh * sin[i] * cos0; if (i === 0) { context.moveTo(xPos, yPos); } else { context.lineTo(xPos, yPos); } } } context.closePath(); }; /* global atob, ArrayBuffer, Uint8Array, Blob */ var CRp$2 = {}; CRp$2.createBuffer = function (w, h) { var buffer = document.createElement('canvas'); // eslint-disable-line no-undef buffer.width = w; buffer.height = h; return [buffer, buffer.getContext('2d')]; }; CRp$2.bufferCanvasImage = function (options) { var cy = this.cy; var eles = cy.mutableElements(); var bb = eles.boundingBox(); var ctrRect = this.findContainerClientCoords(); var width = options.full ? Math.ceil(bb.w) : ctrRect[2]; var height = options.full ? Math.ceil(bb.h) : ctrRect[3]; var specdMaxDims = number$1(options.maxWidth) || number$1(options.maxHeight); var pxRatio = this.getPixelRatio(); var scale = 1; if (options.scale !== undefined) { width *= options.scale; height *= options.scale; scale = options.scale; } else if (specdMaxDims) { var maxScaleW = Infinity; var maxScaleH = Infinity; if (number$1(options.maxWidth)) { maxScaleW = scale * options.maxWidth / width; } if (number$1(options.maxHeight)) { maxScaleH = scale * options.maxHeight / height; } scale = Math.min(maxScaleW, maxScaleH); width *= scale; height *= scale; } if (!specdMaxDims) { width *= pxRatio; height *= pxRatio; scale *= pxRatio; } var buffCanvas = document.createElement('canvas'); // eslint-disable-line no-undef buffCanvas.width = width; buffCanvas.height = height; buffCanvas.style.width = width + 'px'; buffCanvas.style.height = height + 'px'; var buffCxt = buffCanvas.getContext('2d'); // Rasterize the layers, but only if container has nonzero size if (width > 0 && height > 0) { buffCxt.clearRect(0, 0, width, height); buffCxt.globalCompositeOperation = 'source-over'; var zsortedEles = this.getCachedZSortedEles(); if (options.full) { // draw the full bounds of the graph buffCxt.translate(-bb.x1 * scale, -bb.y1 * scale); buffCxt.scale(scale, scale); this.drawElements(buffCxt, zsortedEles); buffCxt.scale(1 / scale, 1 / scale); buffCxt.translate(bb.x1 * scale, bb.y1 * scale); } else { // draw the current view var pan = cy.pan(); var translation = { x: pan.x * scale, y: pan.y * scale }; scale *= cy.zoom(); buffCxt.translate(translation.x, translation.y); buffCxt.scale(scale, scale); this.drawElements(buffCxt, zsortedEles); buffCxt.scale(1 / scale, 1 / scale); buffCxt.translate(-translation.x, -translation.y); } // need to fill bg at end like this in order to fill cleared transparent pixels in jpgs if (options.bg) { buffCxt.globalCompositeOperation = 'destination-over'; buffCxt.fillStyle = options.bg; buffCxt.rect(0, 0, width, height); buffCxt.fill(); } } return buffCanvas; }; function b64ToBlob(b64, mimeType) { var bytes = atob(b64); var buff = new ArrayBuffer(bytes.length); var buffUint8 = new Uint8Array(buff); for (var i = 0; i < bytes.length; i++) { buffUint8[i] = bytes.charCodeAt(i); } return new Blob([buff], { type: mimeType }); } function b64UriToB64(b64uri) { var i = b64uri.indexOf(','); return b64uri.substr(i + 1); } function output(options, canvas, mimeType) { var getB64Uri = function getB64Uri() { return canvas.toDataURL(mimeType, options.quality); }; switch (options.output) { case 'blob-promise': return new Promise$1(function (resolve, reject) { try { canvas.toBlob(function (blob) { if (blob != null) { resolve(blob); } else { reject(new Error('`canvas.toBlob()` sent a null value in its callback')); } }, mimeType, options.quality); } catch (err) { reject(err); } }); case 'blob': return b64ToBlob(b64UriToB64(getB64Uri()), mimeType); case 'base64': return b64UriToB64(getB64Uri()); case 'base64uri': default: return getB64Uri(); } } CRp$2.png = function (options) { return output(options, this.bufferCanvasImage(options), 'image/png'); }; CRp$2.jpg = function (options) { return output(options, this.bufferCanvasImage(options), 'image/jpeg'); }; var CRp$1 = {}; CRp$1.nodeShapeImpl = function (name, context, centerX, centerY, width, height, points, corners) { switch (name) { case 'ellipse': return this.drawEllipsePath(context, centerX, centerY, width, height); case 'polygon': return this.drawPolygonPath(context, centerX, centerY, width, height, points); case 'round-polygon': return this.drawRoundPolygonPath(context, centerX, centerY, width, height, points, corners); case 'roundrectangle': case 'round-rectangle': return this.drawRoundRectanglePath(context, centerX, centerY, width, height, corners); case 'cutrectangle': case 'cut-rectangle': return this.drawCutRectanglePath(context, centerX, centerY, width, height, points, corners); case 'bottomroundrectangle': case 'bottom-round-rectangle': return this.drawBottomRoundRectanglePath(context, centerX, centerY, width, height, corners); case 'barrel': return this.drawBarrelPath(context, centerX, centerY, width, height); } }; var CR = CanvasRenderer; var CRp = CanvasRenderer.prototype; CRp.CANVAS_LAYERS = 3; // CRp.SELECT_BOX = 0; CRp.DRAG = 1; CRp.NODE = 2; CRp.WEBGL = 3; CRp.CANVAS_TYPES = ['2d', '2d', '2d', 'webgl2']; CRp.BUFFER_COUNT = 3; // CRp.TEXTURE_BUFFER = 0; CRp.MOTIONBLUR_BUFFER_NODE = 1; CRp.MOTIONBLUR_BUFFER_DRAG = 2; function CanvasRenderer(options) { var r = this; var containerWindow = r.cy.window(); var document = containerWindow.document; if (options.webgl) { CRp.CANVAS_LAYERS = r.CANVAS_LAYERS = 4; console.log('webgl rendering enabled'); } r.data = { canvases: new Array(CRp.CANVAS_LAYERS), contexts: new Array(CRp.CANVAS_LAYERS), canvasNeedsRedraw: new Array(CRp.CANVAS_LAYERS), bufferCanvases: new Array(CRp.BUFFER_COUNT), bufferContexts: new Array(CRp.CANVAS_LAYERS) }; var tapHlOffAttr = '-webkit-tap-highlight-color'; var tapHlOffStyle = 'rgba(0,0,0,0)'; r.data.canvasContainer = document.createElement('div'); // eslint-disable-line no-undef var containerStyle = r.data.canvasContainer.style; r.data.canvasContainer.style[tapHlOffAttr] = tapHlOffStyle; containerStyle.position = 'relative'; containerStyle.zIndex = '0'; containerStyle.overflow = 'hidden'; var container = options.cy.container(); container.appendChild(r.data.canvasContainer); container.style[tapHlOffAttr] = tapHlOffStyle; var styleMap = { '-webkit-user-select': 'none', '-moz-user-select': '-moz-none', 'user-select': 'none', '-webkit-tap-highlight-color': 'rgba(0,0,0,0)', 'outline-style': 'none' }; if (ms()) { styleMap['-ms-touch-action'] = 'none'; styleMap['touch-action'] = 'none'; } for (var i = 0; i < CRp.CANVAS_LAYERS; i++) { var canvas = r.data.canvases[i] = document.createElement('canvas'); // eslint-disable-line no-undef var type = CRp.CANVAS_TYPES[i]; r.data.contexts[i] = canvas.getContext(type); if (!r.data.contexts[i]) { error('Could not create canvas of type ' + type); } Object.keys(styleMap).forEach(function (k) { canvas.style[k] = styleMap[k]; }); canvas.style.position = 'absolute'; canvas.setAttribute('data-id', 'layer' + i); canvas.style.zIndex = String(CRp.CANVAS_LAYERS - i); r.data.canvasContainer.appendChild(canvas); r.data.canvasNeedsRedraw[i] = false; } r.data.topCanvas = r.data.canvases[0]; r.data.canvases[CRp.NODE].setAttribute('data-id', 'layer' + CRp.NODE + '-node'); r.data.canvases[CRp.SELECT_BOX].setAttribute('data-id', 'layer' + CRp.SELECT_BOX + '-selectbox'); r.data.canvases[CRp.DRAG].setAttribute('data-id', 'layer' + CRp.DRAG + '-drag'); if (r.data.canvases[CRp.WEBGL]) { r.data.canvases[CRp.WEBGL].setAttribute('data-id', 'layer' + CRp.WEBGL + '-webgl'); } for (var i = 0; i < CRp.BUFFER_COUNT; i++) { r.data.bufferCanvases[i] = document.createElement('canvas'); // eslint-disable-line no-undef r.data.bufferContexts[i] = r.data.bufferCanvases[i].getContext('2d'); r.data.bufferCanvases[i].style.position = 'absolute'; r.data.bufferCanvases[i].setAttribute('data-id', 'buffer' + i); r.data.bufferCanvases[i].style.zIndex = String(-i - 1); r.data.bufferCanvases[i].style.visibility = 'hidden'; //r.data.canvasContainer.appendChild(r.data.bufferCanvases[i]); } r.pathsEnabled = true; var emptyBb = makeBoundingBox(); var getBoxCenter = function getBoxCenter(bb) { return { x: (bb.x1 + bb.x2) / 2, y: (bb.y1 + bb.y2) / 2 }; }; var getCenterOffset = function getCenterOffset(bb) { return { x: -bb.w / 2, y: -bb.h / 2 }; }; var backgroundTimestampHasChanged = function backgroundTimestampHasChanged(ele) { var _p = ele[0]._private; var same = _p.oldBackgroundTimestamp === _p.backgroundTimestamp; return !same; }; var getStyleKey = function getStyleKey(ele) { return ele[0]._private.nodeKey; }; var getLabelKey = function getLabelKey(ele) { return ele[0]._private.labelStyleKey; }; var getSourceLabelKey = function getSourceLabelKey(ele) { return ele[0]._private.sourceLabelStyleKey; }; var getTargetLabelKey = function getTargetLabelKey(ele) { return ele[0]._private.targetLabelStyleKey; }; var drawElement = function drawElement(context, ele, bb, scaledLabelShown, useEleOpacity) { return r.drawElement(context, ele, bb, false, false, useEleOpacity); }; var drawLabel = function drawLabel(context, ele, bb, scaledLabelShown, useEleOpacity) { return r.drawElementText(context, ele, bb, scaledLabelShown, 'main', useEleOpacity); }; var drawSourceLabel = function drawSourceLabel(context, ele, bb, scaledLabelShown, useEleOpacity) { return r.drawElementText(context, ele, bb, scaledLabelShown, 'source', useEleOpacity); }; var drawTargetLabel = function drawTargetLabel(context, ele, bb, scaledLabelShown, useEleOpacity) { return r.drawElementText(context, ele, bb, scaledLabelShown, 'target', useEleOpacity); }; var getElementBox = function getElementBox(ele) { ele.boundingBox(); return ele[0]._private.bodyBounds; }; var getLabelBox = function getLabelBox(ele) { ele.boundingBox(); return ele[0]._private.labelBounds.main || emptyBb; }; var getSourceLabelBox = function getSourceLabelBox(ele) { ele.boundingBox(); return ele[0]._private.labelBounds.source || emptyBb; }; var getTargetLabelBox = function getTargetLabelBox(ele) { ele.boundingBox(); return ele[0]._private.labelBounds.target || emptyBb; }; var isLabelVisibleAtScale = function isLabelVisibleAtScale(ele, scaledLabelShown) { return scaledLabelShown; }; var getElementRotationPoint = function getElementRotationPoint(ele) { return getBoxCenter(getElementBox(ele)); }; var addTextMargin = function addTextMargin(prefix, pt, ele) { var pre = prefix ? prefix + '-' : ''; return { x: pt.x + ele.pstyle(pre + 'text-margin-x').pfValue, y: pt.y + ele.pstyle(pre + 'text-margin-y').pfValue }; }; var getRsPt = function getRsPt(ele, x, y) { var rs = ele[0]._private.rscratch; return { x: rs[x], y: rs[y] }; }; var getLabelRotationPoint = function getLabelRotationPoint(ele) { return addTextMargin('', getRsPt(ele, 'labelX', 'labelY'), ele); }; var getSourceLabelRotationPoint = function getSourceLabelRotationPoint(ele) { return addTextMargin('source', getRsPt(ele, 'sourceLabelX', 'sourceLabelY'), ele); }; var getTargetLabelRotationPoint = function getTargetLabelRotationPoint(ele) { return addTextMargin('target', getRsPt(ele, 'targetLabelX', 'targetLabelY'), ele); }; var getElementRotationOffset = function getElementRotationOffset(ele) { return getCenterOffset(getElementBox(ele)); }; var getSourceLabelRotationOffset = function getSourceLabelRotationOffset(ele) { return getCenterOffset(getSourceLabelBox(ele)); }; var getTargetLabelRotationOffset = function getTargetLabelRotationOffset(ele) { return getCenterOffset(getTargetLabelBox(ele)); }; var getLabelRotationOffset = function getLabelRotationOffset(ele) { var bb = getLabelBox(ele); var p = getCenterOffset(getLabelBox(ele)); if (ele.isNode()) { switch (ele.pstyle('text-halign').value) { case 'left': p.x = -bb.w; break; case 'right': p.x = 0; break; } switch (ele.pstyle('text-valign').value) { case 'top': p.y = -bb.h; break; case 'bottom': p.y = 0; break; } } return p; }; var eleTxrCache = r.data.eleTxrCache = new ElementTextureCache(r, { getKey: getStyleKey, doesEleInvalidateKey: backgroundTimestampHasChanged, drawElement: drawElement, getBoundingBox: getElementBox, getRotationPoint: getElementRotationPoint, getRotationOffset: getElementRotationOffset, allowEdgeTxrCaching: false, allowParentTxrCaching: false }); var lblTxrCache = r.data.lblTxrCache = new ElementTextureCache(r, { getKey: getLabelKey, drawElement: drawLabel, getBoundingBox: getLabelBox, getRotationPoint: getLabelRotationPoint, getRotationOffset: getLabelRotationOffset, isVisible: isLabelVisibleAtScale }); var slbTxrCache = r.data.slbTxrCache = new ElementTextureCache(r, { getKey: getSourceLabelKey, drawElement: drawSourceLabel, getBoundingBox: getSourceLabelBox, getRotationPoint: getSourceLabelRotationPoint, getRotationOffset: getSourceLabelRotationOffset, isVisible: isLabelVisibleAtScale }); var tlbTxrCache = r.data.tlbTxrCache = new ElementTextureCache(r, { getKey: getTargetLabelKey, drawElement: drawTargetLabel, getBoundingBox: getTargetLabelBox, getRotationPoint: getTargetLabelRotationPoint, getRotationOffset: getTargetLabelRotationOffset, isVisible: isLabelVisibleAtScale }); var lyrTxrCache = r.data.lyrTxrCache = new LayeredTextureCache(r); r.onUpdateEleCalcs(function invalidateTextureCaches(willDraw, eles) { // each cache should check for sub-key diff to see that the update affects that cache particularly eleTxrCache.invalidateElements(eles); lblTxrCache.invalidateElements(eles); slbTxrCache.invalidateElements(eles); tlbTxrCache.invalidateElements(eles); // any change invalidates the layers lyrTxrCache.invalidateElements(eles); // update the old bg timestamp so diffs can be done in the ele txr caches for (var _i = 0; _i < eles.length; _i++) { var _p = eles[_i]._private; _p.oldBackgroundTimestamp = _p.backgroundTimestamp; } }); var refineInLayers = function refineInLayers(reqs) { for (var i = 0; i < reqs.length; i++) { lyrTxrCache.enqueueElementRefinement(reqs[i].ele); } }; eleTxrCache.onDequeue(refineInLayers); lblTxrCache.onDequeue(refineInLayers); slbTxrCache.onDequeue(refineInLayers); tlbTxrCache.onDequeue(refineInLayers); if (options.webgl) { r.initWebgl(options); } } CRp.redrawHint = function (group, bool) { var r = this; switch (group) { case 'eles': r.data.canvasNeedsRedraw[CRp.NODE] = bool; break; case 'drag': r.data.canvasNeedsRedraw[CRp.DRAG] = bool; break; case 'select': r.data.canvasNeedsRedraw[CRp.SELECT_BOX] = bool; break; } }; // whether to use Path2D caching for drawing var pathsImpld = typeof Path2D !== 'undefined'; CRp.path2dEnabled = function (on) { if (on === undefined) { return this.pathsEnabled; } this.pathsEnabled = on ? true : false; }; CRp.usePaths = function () { return pathsImpld && this.pathsEnabled; }; CRp.setImgSmoothing = function (context, bool) { if (context.imageSmoothingEnabled != null) { context.imageSmoothingEnabled = bool; } else { context.webkitImageSmoothingEnabled = bool; context.mozImageSmoothingEnabled = bool; context.msImageSmoothingEnabled = bool; } }; CRp.getImgSmoothing = function (context) { if (context.imageSmoothingEnabled != null) { return context.imageSmoothingEnabled; } else { return context.webkitImageSmoothingEnabled || context.mozImageSmoothingEnabled || context.msImageSmoothingEnabled; } }; CRp.makeOffscreenCanvas = function (width, height) { var canvas; if ((typeof OffscreenCanvas === "undefined" ? "undefined" : _typeof(OffscreenCanvas)) !== ("undefined" )) { canvas = new OffscreenCanvas(width, height); } else { var containerWindow = this.cy.window(); var document = containerWindow.document; canvas = document.createElement('canvas'); // eslint-disable-line no-undef canvas.width = width; canvas.height = height; } return canvas; }; [CRp$b, CRp$a, CRp$9, CRp$8, CRp$7, CRp$6, CRp$5, CRp$4, CRp$3, CRp$2, CRp$1].forEach(function (props) { extend(CRp, props); }); var renderer = [{ name: 'null', impl: NullRenderer }, { name: 'base', impl: BR }, { name: 'canvas', impl: CR }]; var incExts = [{ type: 'layout', extensions: layout }, { type: 'renderer', extensions: renderer }]; // registered extensions to cytoscape, indexed by name var extensions = {}; // registered modules for extensions, indexed by name var modules = {}; function setExtension(type, name, registrant) { var ext = registrant; var overrideErr = function overrideErr(field) { warn('Can not register `' + name + '` for `' + type + '` since `' + field + '` already exists in the prototype and can not be overridden'); }; if (type === 'core') { if (Core.prototype[name]) { return overrideErr(name); } else { Core.prototype[name] = registrant; } } else if (type === 'collection') { if (Collection.prototype[name]) { return overrideErr(name); } else { Collection.prototype[name] = registrant; } } else if (type === 'layout') { // fill in missing layout functions in the prototype var Layout = function Layout(options) { this.options = options; registrant.call(this, options); // make sure layout has _private for use w/ std apis like .on() if (!plainObject(this._private)) { this._private = {}; } this._private.cy = options.cy; this._private.listeners = []; this.createEmitter(); }; var layoutProto = Layout.prototype = Object.create(registrant.prototype); var optLayoutFns = []; for (var i = 0; i < optLayoutFns.length; i++) { var fnName = optLayoutFns[i]; layoutProto[fnName] = layoutProto[fnName] || function () { return this; }; } // either .start() or .run() is defined, so autogen the other if (layoutProto.start && !layoutProto.run) { layoutProto.run = function () { this.start(); return this; }; } else if (!layoutProto.start && layoutProto.run) { layoutProto.start = function () { this.run(); return this; }; } var regStop = registrant.prototype.stop; layoutProto.stop = function () { var opts = this.options; if (opts && opts.animate) { var anis = this.animations; if (anis) { for (var _i = 0; _i < anis.length; _i++) { anis[_i].stop(); } } } if (regStop) { regStop.call(this); } else { this.emit('layoutstop'); } return this; }; if (!layoutProto.destroy) { layoutProto.destroy = function () { return this; }; } layoutProto.cy = function () { return this._private.cy; }; var getCy = function getCy(layout) { return layout._private.cy; }; var emitterOpts = { addEventFields: function addEventFields(layout, evt) { evt.layout = layout; evt.cy = getCy(layout); evt.target = layout; }, bubble: function bubble() { return true; }, parent: function parent(layout) { return getCy(layout); } }; extend(layoutProto, { createEmitter: function createEmitter() { this._private.emitter = new Emitter(emitterOpts, this); return this; }, emitter: function emitter() { return this._private.emitter; }, on: function on(evt, cb) { this.emitter().on(evt, cb); return this; }, one: function one(evt, cb) { this.emitter().one(evt, cb); return this; }, once: function once(evt, cb) { this.emitter().one(evt, cb); return this; }, removeListener: function removeListener(evt, cb) { this.emitter().removeListener(evt, cb); return this; }, removeAllListeners: function removeAllListeners() { this.emitter().removeAllListeners(); return this; }, emit: function emit(evt, params) { this.emitter().emit(evt, params); return this; } }); define.eventAliasesOn(layoutProto); ext = Layout; // replace with our wrapped layout } else if (type === 'renderer' && name !== 'null' && name !== 'base') { // user registered renderers inherit from base var BaseRenderer = getExtension('renderer', 'base'); var bProto = BaseRenderer.prototype; var RegistrantRenderer = registrant; var rProto = registrant.prototype; var Renderer = function Renderer() { BaseRenderer.apply(this, arguments); RegistrantRenderer.apply(this, arguments); }; var proto = Renderer.prototype; for (var pName in bProto) { var pVal = bProto[pName]; var existsInR = rProto[pName] != null; if (existsInR) { return overrideErr(pName); } proto[pName] = pVal; // take impl from base } for (var _pName in rProto) { proto[_pName] = rProto[_pName]; // take impl from registrant } bProto.clientFunctions.forEach(function (name) { proto[name] = proto[name] || function () { error('Renderer does not implement `renderer.' + name + '()` on its prototype'); }; }); ext = Renderer; } else if (type === '__proto__' || type === 'constructor' || type === 'prototype') { // to avoid potential prototype pollution return error(type + ' is an illegal type to be registered, possibly lead to prototype pollutions'); } return setMap({ map: extensions, keys: [type, name], value: ext }); } function getExtension(type, name) { return getMap({ map: extensions, keys: [type, name] }); } function setModule(type, name, moduleType, moduleName, registrant) { return setMap({ map: modules, keys: [type, name, moduleType, moduleName], value: registrant }); } function getModule(type, name, moduleType, moduleName) { return getMap({ map: modules, keys: [type, name, moduleType, moduleName] }); } var extension = function extension() { // e.g. extension('renderer', 'svg') if (arguments.length === 2) { return getExtension.apply(null, arguments); } // e.g. extension('renderer', 'svg', { ... }) else if (arguments.length === 3) { return setExtension.apply(null, arguments); } // e.g. extension('renderer', 'svg', 'nodeShape', 'ellipse') else if (arguments.length === 4) { return getModule.apply(null, arguments); } // e.g. extension('renderer', 'svg', 'nodeShape', 'ellipse', { ... }) else if (arguments.length === 5) { return setModule.apply(null, arguments); } else { error('Invalid extension access syntax'); } }; // allows a core instance to access extensions internally Core.prototype.extension = extension; // included extensions incExts.forEach(function (group) { group.extensions.forEach(function (ext) { setExtension(group.type, ext.name, ext.impl); }); }); // a dummy stylesheet object that doesn't need a reference to the core // (useful for init) var Stylesheet = function Stylesheet() { if (!(this instanceof Stylesheet)) { return new Stylesheet(); } this.length = 0; }; var sheetfn = Stylesheet.prototype; sheetfn.instanceString = function () { return 'stylesheet'; }; // just store the selector to be parsed later sheetfn.selector = function (selector) { var i = this.length++; this[i] = { selector: selector, properties: [] }; return this; // chaining }; // just store the property to be parsed later sheetfn.css = function (name, value) { var i = this.length - 1; if (string(name)) { this[i].properties.push({ name: name, value: value }); } else if (plainObject(name)) { var map = name; var propNames = Object.keys(map); for (var j = 0; j < propNames.length; j++) { var key = propNames[j]; var mapVal = map[key]; if (mapVal == null) { continue; } var prop = Style.properties[key] || Style.properties[dash2camel(key)]; if (prop == null) { continue; } var _name = prop.name; var _value = mapVal; this[i].properties.push({ name: _name, value: _value }); } } return this; // chaining }; sheetfn.style = sheetfn.css; // generate a real style object from the dummy stylesheet sheetfn.generateStyle = function (cy) { var style = new Style(cy); return this.appendToStyle(style); }; // append a dummy stylesheet object on a real style object sheetfn.appendToStyle = function (style) { for (var i = 0; i < this.length; i++) { var context = this[i]; var selector = context.selector; var props = context.properties; style.selector(selector); // apply selector for (var j = 0; j < props.length; j++) { var prop = props[j]; style.css(prop.name, prop.value); // apply property } } return style; }; var version = "snapshot"; var cytoscape = function cytoscape(options) { // if no options specified, use default if (options === undefined) { options = {}; } // create instance if (plainObject(options)) { return new Core(options); } // allow for registration of extensions else if (string(options)) { return extension.apply(extension, arguments); } }; // e.g. cytoscape.use( require('cytoscape-foo'), bar ) cytoscape.use = function (ext) { var args = Array.prototype.slice.call(arguments, 1); // args to pass to ext args.unshift(cytoscape); // cytoscape is first arg to ext ext.apply(null, args); return this; }; cytoscape.warnings = function (bool) { return warnings(bool); }; // replaced by build system cytoscape.version = version; // expose public apis (mostly for extensions) cytoscape.stylesheet = cytoscape.Stylesheet = Stylesheet; module.exports = cytoscape; ================================================ FILE: documentation/js/cytoscape.umd.js ================================================ /** * Copyright (c) 2016-2024, The Cytoscape Consortium. * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the “Software”), to deal in * the Software without restriction, including without limitation the rights to * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies * of the Software, and to permit persons to whom the Software is furnished to do * so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define === 'function' && define.amd ? define(factory) : (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.cytoscape = factory()); })(this, (function () { 'use strict'; function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; } function _defineProperty$1(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); } function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; } function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function () {}; return { s: F, n: function () { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function (e) { throw e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function () { it = it.call(o); }, n: function () { var step = it.next(); normalCompletion = step.done; return step; }, e: function (e) { didErr = true; err = e; }, f: function () { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; } var _window = typeof window === 'undefined' ? null : window; // eslint-disable-line no-undef var navigator = _window ? _window.navigator : null; _window ? _window.document : null; var typeofstr = _typeof(''); var typeofobj = _typeof({}); var typeoffn = _typeof(function () {}); var typeofhtmlele = typeof HTMLElement === "undefined" ? "undefined" : _typeof(HTMLElement); var instanceStr = function instanceStr(obj) { return obj && obj.instanceString && fn$6(obj.instanceString) ? obj.instanceString() : null; }; var string = function string(obj) { return obj != null && _typeof(obj) == typeofstr; }; var fn$6 = function fn(obj) { return obj != null && _typeof(obj) === typeoffn; }; var array = function array(obj) { return !elementOrCollection(obj) && (Array.isArray ? Array.isArray(obj) : obj != null && obj instanceof Array); }; var plainObject = function plainObject(obj) { return obj != null && _typeof(obj) === typeofobj && !array(obj) && obj.constructor === Object; }; var object = function object(obj) { return obj != null && _typeof(obj) === typeofobj; }; var number$1 = function number(obj) { return obj != null && _typeof(obj) === _typeof(1) && !isNaN(obj); }; var integer = function integer(obj) { return number$1(obj) && Math.floor(obj) === obj; }; var htmlElement = function htmlElement(obj) { if ('undefined' === typeofhtmlele) { return undefined; } else { return null != obj && obj instanceof HTMLElement; } }; var elementOrCollection = function elementOrCollection(obj) { return element(obj) || collection(obj); }; var element = function element(obj) { return instanceStr(obj) === 'collection' && obj._private.single; }; var collection = function collection(obj) { return instanceStr(obj) === 'collection' && !obj._private.single; }; var core = function core(obj) { return instanceStr(obj) === 'core'; }; var stylesheet = function stylesheet(obj) { return instanceStr(obj) === 'stylesheet'; }; var event = function event(obj) { return instanceStr(obj) === 'event'; }; var emptyString = function emptyString(obj) { if (obj === undefined || obj === null) { // null is empty return true; } else if (obj === '' || obj.match(/^\s+$/)) { return true; // empty string is empty } return false; // otherwise, we don't know what we've got }; var domElement = function domElement(obj) { if (typeof HTMLElement === 'undefined') { return false; // we're not in a browser so it doesn't matter } else { return obj instanceof HTMLElement; } }; var boundingBox = function boundingBox(obj) { return plainObject(obj) && number$1(obj.x1) && number$1(obj.x2) && number$1(obj.y1) && number$1(obj.y2); }; var promise = function promise(obj) { return object(obj) && fn$6(obj.then); }; var ms = function ms() { return navigator && navigator.userAgent.match(/msie|trident|edge/i); }; // probably a better way to detect this... var memoize$1 = function memoize(fn, keyFn) { if (!keyFn) { keyFn = function keyFn() { if (arguments.length === 1) { return arguments[0]; } else if (arguments.length === 0) { return 'undefined'; } var args = []; for (var i = 0; i < arguments.length; i++) { args.push(arguments[i]); } return args.join('$'); }; } var memoizedFn = function memoizedFn() { var self = this; var args = arguments; var ret; var k = keyFn.apply(self, args); var cache = memoizedFn.cache; if (!(ret = cache[k])) { ret = cache[k] = fn.apply(self, args); } return ret; }; memoizedFn.cache = {}; return memoizedFn; }; var camel2dash = memoize$1(function (str) { return str.replace(/([A-Z])/g, function (v) { return '-' + v.toLowerCase(); }); }); var dash2camel = memoize$1(function (str) { return str.replace(/(-\w)/g, function (v) { return v[1].toUpperCase(); }); }); var prependCamel = memoize$1(function (prefix, str) { return prefix + str[0].toUpperCase() + str.substring(1); }, function (prefix, str) { return prefix + '$' + str; }); var capitalize = function capitalize(str) { if (emptyString(str)) { return str; } return str.charAt(0).toUpperCase() + str.substring(1); }; var number = '(?:[-+]?(?:(?:\\d+|\\d*\\.\\d+)(?:[Ee][+-]?\\d+)?))'; var rgba = 'rgb[a]?\\((' + number + '[%]?)\\s*,\\s*(' + number + '[%]?)\\s*,\\s*(' + number + '[%]?)(?:\\s*,\\s*(' + number + '))?\\)'; var rgbaNoBackRefs = 'rgb[a]?\\((?:' + number + '[%]?)\\s*,\\s*(?:' + number + '[%]?)\\s*,\\s*(?:' + number + '[%]?)(?:\\s*,\\s*(?:' + number + '))?\\)'; var hsla = 'hsl[a]?\\((' + number + ')\\s*,\\s*(' + number + '[%])\\s*,\\s*(' + number + '[%])(?:\\s*,\\s*(' + number + '))?\\)'; var hslaNoBackRefs = 'hsl[a]?\\((?:' + number + ')\\s*,\\s*(?:' + number + '[%])\\s*,\\s*(?:' + number + '[%])(?:\\s*,\\s*(?:' + number + '))?\\)'; var hex3 = '\\#[0-9a-fA-F]{3}'; var hex6 = '\\#[0-9a-fA-F]{6}'; var ascending = function ascending(a, b) { if (a < b) { return -1; } else if (a > b) { return 1; } else { return 0; } }; var descending = function descending(a, b) { return -1 * ascending(a, b); }; var extend = Object.assign != null ? Object.assign.bind(Object) : function (tgt) { var args = arguments; for (var i = 1; i < args.length; i++) { var obj = args[i]; if (obj == null) { continue; } var keys = Object.keys(obj); for (var j = 0; j < keys.length; j++) { var k = keys[j]; tgt[k] = obj[k]; } } return tgt; }; // get [r, g, b] from #abc or #aabbcc var hex2tuple = function hex2tuple(hex) { if (!(hex.length === 4 || hex.length === 7) || hex[0] !== '#') { return; } var shortHex = hex.length === 4; var r, g, b; var base = 16; if (shortHex) { r = parseInt(hex[1] + hex[1], base); g = parseInt(hex[2] + hex[2], base); b = parseInt(hex[3] + hex[3], base); } else { r = parseInt(hex[1] + hex[2], base); g = parseInt(hex[3] + hex[4], base); b = parseInt(hex[5] + hex[6], base); } return [r, g, b]; }; // get [r, g, b, a] from hsl(0, 0, 0) or hsla(0, 0, 0, 0) var hsl2tuple = function hsl2tuple(hsl) { var ret; var h, s, l, a, r, g, b; function hue2rgb(p, q, t) { if (t < 0) t += 1; if (t > 1) t -= 1; if (t < 1 / 6) return p + (q - p) * 6 * t; if (t < 1 / 2) return q; if (t < 2 / 3) return p + (q - p) * (2 / 3 - t) * 6; return p; } var m = new RegExp('^' + hsla + '$').exec(hsl); if (m) { // get hue h = parseInt(m[1]); if (h < 0) { h = (360 - -1 * h % 360) % 360; } else if (h > 360) { h = h % 360; } h /= 360; // normalise on [0, 1] s = parseFloat(m[2]); if (s < 0 || s > 100) { return; } // saturation is [0, 100] s = s / 100; // normalise on [0, 1] l = parseFloat(m[3]); if (l < 0 || l > 100) { return; } // lightness is [0, 100] l = l / 100; // normalise on [0, 1] a = m[4]; if (a !== undefined) { a = parseFloat(a); if (a < 0 || a > 1) { return; } // alpha is [0, 1] } // now, convert to rgb // code from http://mjijackson.com/2008/02/rgb-to-hsl-and-rgb-to-hsv-color-model-conversion-algorithms-in-javascript if (s === 0) { r = g = b = Math.round(l * 255); // achromatic } else { var q = l < 0.5 ? l * (1 + s) : l + s - l * s; var p = 2 * l - q; r = Math.round(255 * hue2rgb(p, q, h + 1 / 3)); g = Math.round(255 * hue2rgb(p, q, h)); b = Math.round(255 * hue2rgb(p, q, h - 1 / 3)); } ret = [r, g, b, a]; } return ret; }; // get [r, g, b, a] from rgb(0, 0, 0) or rgba(0, 0, 0, 0) var rgb2tuple = function rgb2tuple(rgb) { var ret; var m = new RegExp('^' + rgba + '$').exec(rgb); if (m) { ret = []; var isPct = []; for (var i = 1; i <= 3; i++) { var channel = m[i]; if (channel[channel.length - 1] === '%') { isPct[i] = true; } channel = parseFloat(channel); if (isPct[i]) { channel = channel / 100 * 255; // normalise to [0, 255] } if (channel < 0 || channel > 255) { return; } // invalid channel value ret.push(Math.floor(channel)); } var atLeastOneIsPct = isPct[1] || isPct[2] || isPct[3]; var allArePct = isPct[1] && isPct[2] && isPct[3]; if (atLeastOneIsPct && !allArePct) { return; } // must all be percent values if one is var alpha = m[4]; if (alpha !== undefined) { alpha = parseFloat(alpha); if (alpha < 0 || alpha > 1) { return; } // invalid alpha value ret.push(alpha); } } return ret; }; var colorname2tuple = function colorname2tuple(color) { return colors[color.toLowerCase()]; }; var color2tuple = function color2tuple(color) { return (array(color) ? color : null) || colorname2tuple(color) || hex2tuple(color) || rgb2tuple(color) || hsl2tuple(color); }; var colors = { // special colour names transparent: [0, 0, 0, 0], // NB alpha === 0 // regular colours aliceblue: [240, 248, 255], antiquewhite: [250, 235, 215], aqua: [0, 255, 255], aquamarine: [127, 255, 212], azure: [240, 255, 255], beige: [245, 245, 220], bisque: [255, 228, 196], black: [0, 0, 0], blanchedalmond: [255, 235, 205], blue: [0, 0, 255], blueviolet: [138, 43, 226], brown: [165, 42, 42], burlywood: [222, 184, 135], cadetblue: [95, 158, 160], chartreuse: [127, 255, 0], chocolate: [210, 105, 30], coral: [255, 127, 80], cornflowerblue: [100, 149, 237], cornsilk: [255, 248, 220], crimson: [220, 20, 60], cyan: [0, 255, 255], darkblue: [0, 0, 139], darkcyan: [0, 139, 139], darkgoldenrod: [184, 134, 11], darkgray: [169, 169, 169], darkgreen: [0, 100, 0], darkgrey: [169, 169, 169], darkkhaki: [189, 183, 107], darkmagenta: [139, 0, 139], darkolivegreen: [85, 107, 47], darkorange: [255, 140, 0], darkorchid: [153, 50, 204], darkred: [139, 0, 0], darksalmon: [233, 150, 122], darkseagreen: [143, 188, 143], darkslateblue: [72, 61, 139], darkslategray: [47, 79, 79], darkslategrey: [47, 79, 79], darkturquoise: [0, 206, 209], darkviolet: [148, 0, 211], deeppink: [255, 20, 147], deepskyblue: [0, 191, 255], dimgray: [105, 105, 105], dimgrey: [105, 105, 105], dodgerblue: [30, 144, 255], firebrick: [178, 34, 34], floralwhite: [255, 250, 240], forestgreen: [34, 139, 34], fuchsia: [255, 0, 255], gainsboro: [220, 220, 220], ghostwhite: [248, 248, 255], gold: [255, 215, 0], goldenrod: [218, 165, 32], gray: [128, 128, 128], grey: [128, 128, 128], green: [0, 128, 0], greenyellow: [173, 255, 47], honeydew: [240, 255, 240], hotpink: [255, 105, 180], indianred: [205, 92, 92], indigo: [75, 0, 130], ivory: [255, 255, 240], khaki: [240, 230, 140], lavender: [230, 230, 250], lavenderblush: [255, 240, 245], lawngreen: [124, 252, 0], lemonchiffon: [255, 250, 205], lightblue: [173, 216, 230], lightcoral: [240, 128, 128], lightcyan: [224, 255, 255], lightgoldenrodyellow: [250, 250, 210], lightgray: [211, 211, 211], lightgreen: [144, 238, 144], lightgrey: [211, 211, 211], lightpink: [255, 182, 193], lightsalmon: [255, 160, 122], lightseagreen: [32, 178, 170], lightskyblue: [135, 206, 250], lightslategray: [119, 136, 153], lightslategrey: [119, 136, 153], lightsteelblue: [176, 196, 222], lightyellow: [255, 255, 224], lime: [0, 255, 0], limegreen: [50, 205, 50], linen: [250, 240, 230], magenta: [255, 0, 255], maroon: [128, 0, 0], mediumaquamarine: [102, 205, 170], mediumblue: [0, 0, 205], mediumorchid: [186, 85, 211], mediumpurple: [147, 112, 219], mediumseagreen: [60, 179, 113], mediumslateblue: [123, 104, 238], mediumspringgreen: [0, 250, 154], mediumturquoise: [72, 209, 204], mediumvioletred: [199, 21, 133], midnightblue: [25, 25, 112], mintcream: [245, 255, 250], mistyrose: [255, 228, 225], moccasin: [255, 228, 181], navajowhite: [255, 222, 173], navy: [0, 0, 128], oldlace: [253, 245, 230], olive: [128, 128, 0], olivedrab: [107, 142, 35], orange: [255, 165, 0], orangered: [255, 69, 0], orchid: [218, 112, 214], palegoldenrod: [238, 232, 170], palegreen: [152, 251, 152], paleturquoise: [175, 238, 238], palevioletred: [219, 112, 147], papayawhip: [255, 239, 213], peachpuff: [255, 218, 185], peru: [205, 133, 63], pink: [255, 192, 203], plum: [221, 160, 221], powderblue: [176, 224, 230], purple: [128, 0, 128], red: [255, 0, 0], rosybrown: [188, 143, 143], royalblue: [65, 105, 225], saddlebrown: [139, 69, 19], salmon: [250, 128, 114], sandybrown: [244, 164, 96], seagreen: [46, 139, 87], seashell: [255, 245, 238], sienna: [160, 82, 45], silver: [192, 192, 192], skyblue: [135, 206, 235], slateblue: [106, 90, 205], slategray: [112, 128, 144], slategrey: [112, 128, 144], snow: [255, 250, 250], springgreen: [0, 255, 127], steelblue: [70, 130, 180], tan: [210, 180, 140], teal: [0, 128, 128], thistle: [216, 191, 216], tomato: [255, 99, 71], turquoise: [64, 224, 208], violet: [238, 130, 238], wheat: [245, 222, 179], white: [255, 255, 255], whitesmoke: [245, 245, 245], yellow: [255, 255, 0], yellowgreen: [154, 205, 50] }; // sets the value in a map (map may not be built) var setMap = function setMap(options) { var obj = options.map; var keys = options.keys; var l = keys.length; for (var i = 0; i < l; i++) { var key = keys[i]; if (plainObject(key)) { throw Error('Tried to set map with object key'); } if (i < keys.length - 1) { // extend the map if necessary if (obj[key] == null) { obj[key] = {}; } obj = obj[key]; } else { // set the value obj[key] = options.value; } } }; // gets the value in a map even if it's not built in places var getMap = function getMap(options) { var obj = options.map; var keys = options.keys; var l = keys.length; for (var i = 0; i < l; i++) { var key = keys[i]; if (plainObject(key)) { throw Error('Tried to get map with object key'); } obj = obj[key]; if (obj == null) { return obj; } } return obj; }; /** * Checks if `value` is the * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types) * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`) * * @static * @memberOf _ * @since 0.1.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is an object, else `false`. * @example * * _.isObject({}); * // => true * * _.isObject([1, 2, 3]); * // => true * * _.isObject(_.noop); * // => true * * _.isObject(null); * // => false */ function isObject(value) { var type = typeof value; return value != null && (type == 'object' || type == 'function'); } var isObject_1 = isObject; var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; function createCommonjsModule(fn, module) { return module = { exports: {} }, fn(module, module.exports), module.exports; } /** Detect free variable `global` from Node.js. */ var freeGlobal = typeof commonjsGlobal == 'object' && commonjsGlobal && commonjsGlobal.Object === Object && commonjsGlobal; var _freeGlobal = freeGlobal; /** Detect free variable `self`. */ var freeSelf = typeof self == 'object' && self && self.Object === Object && self; /** Used as a reference to the global object. */ var root = _freeGlobal || freeSelf || Function('return this')(); var _root = root; /** * Gets the timestamp of the number of milliseconds that have elapsed since * the Unix epoch (1 January 1970 00:00:00 UTC). * * @static * @memberOf _ * @since 2.4.0 * @category Date * @returns {number} Returns the timestamp. * @example * * _.defer(function(stamp) { * console.log(_.now() - stamp); * }, _.now()); * // => Logs the number of milliseconds it took for the deferred invocation. */ var now = function() { return _root.Date.now(); }; var now_1 = now; /** Used to match a single whitespace character. */ var reWhitespace = /\s/; /** * Used by `_.trim` and `_.trimEnd` to get the index of the last non-whitespace * character of `string`. * * @private * @param {string} string The string to inspect. * @returns {number} Returns the index of the last non-whitespace character. */ function trimmedEndIndex(string) { var index = string.length; while (index-- && reWhitespace.test(string.charAt(index))) {} return index; } var _trimmedEndIndex = trimmedEndIndex; /** Used to match leading whitespace. */ var reTrimStart = /^\s+/; /** * The base implementation of `_.trim`. * * @private * @param {string} string The string to trim. * @returns {string} Returns the trimmed string. */ function baseTrim(string) { return string ? string.slice(0, _trimmedEndIndex(string) + 1).replace(reTrimStart, '') : string; } var _baseTrim = baseTrim; /** Built-in value references. */ var Symbol$1 = _root.Symbol; var _Symbol = Symbol$1; /** Used for built-in method references. */ var objectProto$5 = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty$4 = objectProto$5.hasOwnProperty; /** * Used to resolve the * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) * of values. */ var nativeObjectToString$1 = objectProto$5.toString; /** Built-in value references. */ var symToStringTag$1 = _Symbol ? _Symbol.toStringTag : undefined; /** * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values. * * @private * @param {*} value The value to query. * @returns {string} Returns the raw `toStringTag`. */ function getRawTag(value) { var isOwn = hasOwnProperty$4.call(value, symToStringTag$1), tag = value[symToStringTag$1]; try { value[symToStringTag$1] = undefined; var unmasked = true; } catch (e) {} var result = nativeObjectToString$1.call(value); if (unmasked) { if (isOwn) { value[symToStringTag$1] = tag; } else { delete value[symToStringTag$1]; } } return result; } var _getRawTag = getRawTag; /** Used for built-in method references. */ var objectProto$4 = Object.prototype; /** * Used to resolve the * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) * of values. */ var nativeObjectToString = objectProto$4.toString; /** * Converts `value` to a string using `Object.prototype.toString`. * * @private * @param {*} value The value to convert. * @returns {string} Returns the converted string. */ function objectToString(value) { return nativeObjectToString.call(value); } var _objectToString = objectToString; /** `Object#toString` result references. */ var nullTag = '[object Null]', undefinedTag = '[object Undefined]'; /** Built-in value references. */ var symToStringTag = _Symbol ? _Symbol.toStringTag : undefined; /** * The base implementation of `getTag` without fallbacks for buggy environments. * * @private * @param {*} value The value to query. * @returns {string} Returns the `toStringTag`. */ function baseGetTag(value) { if (value == null) { return value === undefined ? undefinedTag : nullTag; } return (symToStringTag && symToStringTag in Object(value)) ? _getRawTag(value) : _objectToString(value); } var _baseGetTag = baseGetTag; /** * Checks if `value` is object-like. A value is object-like if it's not `null` * and has a `typeof` result of "object". * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is object-like, else `false`. * @example * * _.isObjectLike({}); * // => true * * _.isObjectLike([1, 2, 3]); * // => true * * _.isObjectLike(_.noop); * // => false * * _.isObjectLike(null); * // => false */ function isObjectLike(value) { return value != null && typeof value == 'object'; } var isObjectLike_1 = isObjectLike; /** `Object#toString` result references. */ var symbolTag = '[object Symbol]'; /** * Checks if `value` is classified as a `Symbol` primitive or object. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a symbol, else `false`. * @example * * _.isSymbol(Symbol.iterator); * // => true * * _.isSymbol('abc'); * // => false */ function isSymbol(value) { return typeof value == 'symbol' || (isObjectLike_1(value) && _baseGetTag(value) == symbolTag); } var isSymbol_1 = isSymbol; /** Used as references for various `Number` constants. */ var NAN = 0 / 0; /** Used to detect bad signed hexadecimal string values. */ var reIsBadHex = /^[-+]0x[0-9a-f]+$/i; /** Used to detect binary string values. */ var reIsBinary = /^0b[01]+$/i; /** Used to detect octal string values. */ var reIsOctal = /^0o[0-7]+$/i; /** Built-in method references without a dependency on `root`. */ var freeParseInt = parseInt; /** * Converts `value` to a number. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to process. * @returns {number} Returns the number. * @example * * _.toNumber(3.2); * // => 3.2 * * _.toNumber(Number.MIN_VALUE); * // => 5e-324 * * _.toNumber(Infinity); * // => Infinity * * _.toNumber('3.2'); * // => 3.2 */ function toNumber(value) { if (typeof value == 'number') { return value; } if (isSymbol_1(value)) { return NAN; } if (isObject_1(value)) { var other = typeof value.valueOf == 'function' ? value.valueOf() : value; value = isObject_1(other) ? (other + '') : other; } if (typeof value != 'string') { return value === 0 ? value : +value; } value = _baseTrim(value); var isBinary = reIsBinary.test(value); return (isBinary || reIsOctal.test(value)) ? freeParseInt(value.slice(2), isBinary ? 2 : 8) : (reIsBadHex.test(value) ? NAN : +value); } var toNumber_1 = toNumber; /** Error message constants. */ var FUNC_ERROR_TEXT$1 = 'Expected a function'; /* Built-in method references for those with the same name as other `lodash` methods. */ var nativeMax = Math.max, nativeMin = Math.min; /** * Creates a debounced function that delays invoking `func` until after `wait` * milliseconds have elapsed since the last time the debounced function was * invoked. The debounced function comes with a `cancel` method to cancel * delayed `func` invocations and a `flush` method to immediately invoke them. * Provide `options` to indicate whether `func` should be invoked on the * leading and/or trailing edge of the `wait` timeout. The `func` is invoked * with the last arguments provided to the debounced function. Subsequent * calls to the debounced function return the result of the last `func` * invocation. * * **Note:** If `leading` and `trailing` options are `true`, `func` is * invoked on the trailing edge of the timeout only if the debounced function * is invoked more than once during the `wait` timeout. * * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred * until to the next tick, similar to `setTimeout` with a timeout of `0`. * * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/) * for details over the differences between `_.debounce` and `_.throttle`. * * @static * @memberOf _ * @since 0.1.0 * @category Function * @param {Function} func The function to debounce. * @param {number} [wait=0] The number of milliseconds to delay. * @param {Object} [options={}] The options object. * @param {boolean} [options.leading=false] * Specify invoking on the leading edge of the timeout. * @param {number} [options.maxWait] * The maximum time `func` is allowed to be delayed before it's invoked. * @param {boolean} [options.trailing=true] * Specify invoking on the trailing edge of the timeout. * @returns {Function} Returns the new debounced function. * @example * * // Avoid costly calculations while the window size is in flux. * jQuery(window).on('resize', _.debounce(calculateLayout, 150)); * * // Invoke `sendMail` when clicked, debouncing subsequent calls. * jQuery(element).on('click', _.debounce(sendMail, 300, { * 'leading': true, * 'trailing': false * })); * * // Ensure `batchLog` is invoked once after 1 second of debounced calls. * var debounced = _.debounce(batchLog, 250, { 'maxWait': 1000 }); * var source = new EventSource('/stream'); * jQuery(source).on('message', debounced); * * // Cancel the trailing debounced invocation. * jQuery(window).on('popstate', debounced.cancel); */ function debounce(func, wait, options) { var lastArgs, lastThis, maxWait, result, timerId, lastCallTime, lastInvokeTime = 0, leading = false, maxing = false, trailing = true; if (typeof func != 'function') { throw new TypeError(FUNC_ERROR_TEXT$1); } wait = toNumber_1(wait) || 0; if (isObject_1(options)) { leading = !!options.leading; maxing = 'maxWait' in options; maxWait = maxing ? nativeMax(toNumber_1(options.maxWait) || 0, wait) : maxWait; trailing = 'trailing' in options ? !!options.trailing : trailing; } function invokeFunc(time) { var args = lastArgs, thisArg = lastThis; lastArgs = lastThis = undefined; lastInvokeTime = time; result = func.apply(thisArg, args); return result; } function leadingEdge(time) { // Reset any `maxWait` timer. lastInvokeTime = time; // Start the timer for the trailing edge. timerId = setTimeout(timerExpired, wait); // Invoke the leading edge. return leading ? invokeFunc(time) : result; } function remainingWait(time) { var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime, timeWaiting = wait - timeSinceLastCall; return maxing ? nativeMin(timeWaiting, maxWait - timeSinceLastInvoke) : timeWaiting; } function shouldInvoke(time) { var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime; // Either this is the first call, activity has stopped and we're at the // trailing edge, the system time has gone backwards and we're treating // it as the trailing edge, or we've hit the `maxWait` limit. return (lastCallTime === undefined || (timeSinceLastCall >= wait) || (timeSinceLastCall < 0) || (maxing && timeSinceLastInvoke >= maxWait)); } function timerExpired() { var time = now_1(); if (shouldInvoke(time)) { return trailingEdge(time); } // Restart the timer. timerId = setTimeout(timerExpired, remainingWait(time)); } function trailingEdge(time) { timerId = undefined; // Only invoke if we have `lastArgs` which means `func` has been // debounced at least once. if (trailing && lastArgs) { return invokeFunc(time); } lastArgs = lastThis = undefined; return result; } function cancel() { if (timerId !== undefined) { clearTimeout(timerId); } lastInvokeTime = 0; lastArgs = lastCallTime = lastThis = timerId = undefined; } function flush() { return timerId === undefined ? result : trailingEdge(now_1()); } function debounced() { var time = now_1(), isInvoking = shouldInvoke(time); lastArgs = arguments; lastThis = this; lastCallTime = time; if (isInvoking) { if (timerId === undefined) { return leadingEdge(lastCallTime); } if (maxing) { // Handle invocations in a tight loop. clearTimeout(timerId); timerId = setTimeout(timerExpired, wait); return invokeFunc(lastCallTime); } } if (timerId === undefined) { timerId = setTimeout(timerExpired, wait); } return result; } debounced.cancel = cancel; debounced.flush = flush; return debounced; } var debounce_1 = debounce; var performance = _window ? _window.performance : null; var pnow = performance && performance.now ? function () { return performance.now(); } : function () { return Date.now(); }; var raf = function () { if (_window) { if (_window.requestAnimationFrame) { return function (fn) { _window.requestAnimationFrame(fn); }; } else if (_window.mozRequestAnimationFrame) { return function (fn) { _window.mozRequestAnimationFrame(fn); }; } else if (_window.webkitRequestAnimationFrame) { return function (fn) { _window.webkitRequestAnimationFrame(fn); }; } else if (_window.msRequestAnimationFrame) { return function (fn) { _window.msRequestAnimationFrame(fn); }; } } return function (fn) { if (fn) { setTimeout(function () { fn(pnow()); }, 1000 / 60); } }; }(); var requestAnimationFrame = function requestAnimationFrame(fn) { return raf(fn); }; var performanceNow = pnow; var DEFAULT_HASH_SEED = 9261; var K = 65599; // 37 also works pretty well var DEFAULT_HASH_SEED_ALT = 5381; var hashIterableInts = function hashIterableInts(iterator) { var seed = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : DEFAULT_HASH_SEED; // sdbm/string-hash var hash = seed; var entry; for (;;) { entry = iterator.next(); if (entry.done) { break; } hash = hash * K + entry.value | 0; } return hash; }; var hashInt = function hashInt(num) { var seed = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : DEFAULT_HASH_SEED; // sdbm/string-hash return seed * K + num | 0; }; var hashIntAlt = function hashIntAlt(num) { var seed = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : DEFAULT_HASH_SEED_ALT; // djb2/string-hash return (seed << 5) + seed + num | 0; }; var combineHashes = function combineHashes(hash1, hash2) { return hash1 * 0x200000 + hash2; }; var combineHashesArray = function combineHashesArray(hashes) { return hashes[0] * 0x200000 + hashes[1]; }; var hashArrays = function hashArrays(hashes1, hashes2) { return [hashInt(hashes1[0], hashes2[0]), hashIntAlt(hashes1[1], hashes2[1])]; }; var hashIntsArray = function hashIntsArray(ints, seed) { var entry = { value: 0, done: false }; var i = 0; var length = ints.length; var iterator = { next: function next() { if (i < length) { entry.value = ints[i++]; } else { entry.done = true; } return entry; } }; return hashIterableInts(iterator, seed); }; var hashString = function hashString(str, seed) { var entry = { value: 0, done: false }; var i = 0; var length = str.length; var iterator = { next: function next() { if (i < length) { entry.value = str.charCodeAt(i++); } else { entry.done = true; } return entry; } }; return hashIterableInts(iterator, seed); }; var hashStrings = function hashStrings() { return hashStringsArray(arguments); }; var hashStringsArray = function hashStringsArray(strs) { var hash; for (var i = 0; i < strs.length; i++) { var str = strs[i]; if (i === 0) { hash = hashString(str); } else { hash = hashString(str, hash); } } return hash; }; /*global console */ var warningsEnabled = true; var warnSupported = console.warn != null; // eslint-disable-line no-console var traceSupported = console.trace != null; // eslint-disable-line no-console var MAX_INT$1 = Number.MAX_SAFE_INTEGER || 9007199254740991; var trueify = function trueify() { return true; }; var falsify = function falsify() { return false; }; var zeroify = function zeroify() { return 0; }; var noop$1 = function noop() {}; var error = function error(msg) { throw new Error(msg); }; var warnings = function warnings(enabled) { if (enabled !== undefined) { warningsEnabled = !!enabled; } else { return warningsEnabled; } }; var warn = function warn(msg) { /* eslint-disable no-console */ if (!warnings()) { return; } if (warnSupported) { console.warn(msg); } else { console.log(msg); if (traceSupported) { console.trace(); } } }; /* eslint-enable */ var clone = function clone(obj) { return extend({}, obj); }; // gets a shallow copy of the argument var copy = function copy(obj) { if (obj == null) { return obj; } if (array(obj)) { return obj.slice(); } else if (plainObject(obj)) { return clone(obj); } else { return obj; } }; var copyArray$1 = function copyArray(arr) { return arr.slice(); }; var uuid = function uuid(a, b /* placeholders */) { for ( // loop :) b = a = ''; // b - result , a - numeric letiable a++ < 36; // b += a * 51 & 52 // if "a" is not 9 or 14 or 19 or 24 ? // return a random number or 4 (a ^ 15 // if "a" is not 15 ? // generate a random number from 0 to 15 8 ^ Math.random() * (a ^ 20 ? 16 : 4) // unless "a" is 20, in which case a random number from 8 to 11 : 4 // otherwise 4 ).toString(16) : '-' // in other cases (if "a" is 9,14,19,24) insert "-" ) { } return b; }; var _staticEmptyObject = {}; var staticEmptyObject = function staticEmptyObject() { return _staticEmptyObject; }; var defaults$g = function defaults(_defaults) { var keys = Object.keys(_defaults); return function (opts) { var filledOpts = {}; for (var i = 0; i < keys.length; i++) { var key = keys[i]; var optVal = opts == null ? undefined : opts[key]; filledOpts[key] = optVal === undefined ? _defaults[key] : optVal; } return filledOpts; }; }; var removeFromArray = function removeFromArray(arr, ele, oneCopy) { for (var i = arr.length - 1; i >= 0; i--) { if (arr[i] === ele) { arr.splice(i, 1); if (oneCopy) { break; } } } }; var clearArray = function clearArray(arr) { arr.splice(0, arr.length); }; var push = function push(arr, otherArr) { for (var i = 0; i < otherArr.length; i++) { var el = otherArr[i]; arr.push(el); } }; var getPrefixedProperty = function getPrefixedProperty(obj, propName, prefix) { if (prefix) { propName = prependCamel(prefix, propName); // e.g. (labelWidth, source) => sourceLabelWidth } return obj[propName]; }; var setPrefixedProperty = function setPrefixedProperty(obj, propName, prefix, value) { if (prefix) { propName = prependCamel(prefix, propName); // e.g. (labelWidth, source) => sourceLabelWidth } obj[propName] = value; }; /* global Map */ var ObjectMap = /*#__PURE__*/function () { function ObjectMap() { _classCallCheck(this, ObjectMap); this._obj = {}; } _createClass(ObjectMap, [{ key: "set", value: function set(key, val) { this._obj[key] = val; return this; } }, { key: "delete", value: function _delete(key) { this._obj[key] = undefined; return this; } }, { key: "clear", value: function clear() { this._obj = {}; } }, { key: "has", value: function has(key) { return this._obj[key] !== undefined; } }, { key: "get", value: function get(key) { return this._obj[key]; } }]); return ObjectMap; }(); var Map$2 = typeof Map !== 'undefined' ? Map : ObjectMap; /* global Set */ var undef = "undefined" ; var ObjectSet = /*#__PURE__*/function () { function ObjectSet(arrayOrObjectSet) { _classCallCheck(this, ObjectSet); this._obj = Object.create(null); this.size = 0; if (arrayOrObjectSet != null) { var arr; if (arrayOrObjectSet.instanceString != null && arrayOrObjectSet.instanceString() === this.instanceString()) { arr = arrayOrObjectSet.toArray(); } else { arr = arrayOrObjectSet; } for (var i = 0; i < arr.length; i++) { this.add(arr[i]); } } } _createClass(ObjectSet, [{ key: "instanceString", value: function instanceString() { return 'set'; } }, { key: "add", value: function add(val) { var o = this._obj; if (o[val] !== 1) { o[val] = 1; this.size++; } } }, { key: "delete", value: function _delete(val) { var o = this._obj; if (o[val] === 1) { o[val] = 0; this.size--; } } }, { key: "clear", value: function clear() { this._obj = Object.create(null); } }, { key: "has", value: function has(val) { return this._obj[val] === 1; } }, { key: "toArray", value: function toArray() { var _this = this; return Object.keys(this._obj).filter(function (key) { return _this.has(key); }); } }, { key: "forEach", value: function forEach(callback, thisArg) { return this.toArray().forEach(callback, thisArg); } }]); return ObjectSet; }(); var Set$1 = (typeof Set === "undefined" ? "undefined" : _typeof(Set)) !== undef ? Set : ObjectSet; // represents a node or an edge var Element = function Element(cy, params) { var restore = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true; if (cy === undefined || params === undefined || !core(cy)) { error('An element must have a core reference and parameters set'); return; } var group = params.group; // try to automatically infer the group if unspecified if (group == null) { if (params.data && params.data.source != null && params.data.target != null) { group = 'edges'; } else { group = 'nodes'; } } // validate group if (group !== 'nodes' && group !== 'edges') { error('An element must be of type `nodes` or `edges`; you specified `' + group + '`'); return; } // make the element array-like, just like a collection this.length = 1; this[0] = this; // NOTE: when something is added here, add also to ele.json() var _p = this._private = { cy: cy, single: true, // indicates this is an element data: params.data || {}, // data object position: params.position || { x: 0, y: 0 }, // (x, y) position pair autoWidth: undefined, // width and height of nodes calculated by the renderer when set to special 'auto' value autoHeight: undefined, autoPadding: undefined, compoundBoundsClean: false, // whether the compound dimensions need to be recalculated the next time dimensions are read listeners: [], // array of bound listeners group: group, // string; 'nodes' or 'edges' style: {}, // properties as set by the style rstyle: {}, // properties for style sent from the renderer to the core styleCxts: [], // applied style contexts from the styler styleKeys: {}, // per-group keys of style property values removed: true, // whether it's inside the vis; true if removed (set true here since we call restore) selected: params.selected ? true : false, // whether it's selected selectable: params.selectable === undefined ? true : params.selectable ? true : false, // whether it's selectable locked: params.locked ? true : false, // whether the element is locked (cannot be moved) grabbed: false, // whether the element is grabbed by the mouse; renderer sets this privately grabbable: params.grabbable === undefined ? true : params.grabbable ? true : false, // whether the element can be grabbed pannable: params.pannable === undefined ? group === 'edges' ? true : false : params.pannable ? true : false, // whether the element has passthrough panning enabled active: false, // whether the element is active from user interaction classes: new Set$1(), // map ( className => true ) animation: { // object for currently-running animations current: [], queue: [] }, rscratch: {}, // object in which the renderer can store information scratch: params.scratch || {}, // scratch objects edges: [], // array of connected edges children: [], // array of children parent: params.parent && params.parent.isNode() ? params.parent : null, // parent ref traversalCache: {}, // cache of output of traversal functions backgrounding: false, // whether background images are loading bbCache: null, // cache of the current bounding box bbCacheShift: { x: 0, y: 0 }, // shift applied to cached bb to be applied on next get bodyBounds: null, // bounds cache of element body, w/o overlay overlayBounds: null, // bounds cache of element body, including overlay labelBounds: { // bounds cache of labels all: null, source: null, target: null, main: null }, arrowBounds: { // bounds cache of edge arrows source: null, target: null, 'mid-source': null, 'mid-target': null } }; if (_p.position.x == null) { _p.position.x = 0; } if (_p.position.y == null) { _p.position.y = 0; } // renderedPosition overrides if specified if (params.renderedPosition) { var rpos = params.renderedPosition; var pan = cy.pan(); var zoom = cy.zoom(); _p.position = { x: (rpos.x - pan.x) / zoom, y: (rpos.y - pan.y) / zoom }; } var classes = []; if (array(params.classes)) { classes = params.classes; } else if (string(params.classes)) { classes = params.classes.split(/\s+/); } for (var i = 0, l = classes.length; i < l; i++) { var cls = classes[i]; if (!cls || cls === '') { continue; } _p.classes.add(cls); } this.createEmitter(); var bypass = params.style || params.css; if (bypass) { warn('Setting a `style` bypass at element creation should be done only when absolutely necessary. Try to use the stylesheet instead.'); this.style(bypass); } if (restore === undefined || restore) { this.restore(); } }; var defineSearch = function defineSearch(params) { params = { bfs: params.bfs || !params.dfs, dfs: params.dfs || !params.bfs }; // from pseudocode on wikipedia return function searchFn(roots, fn, directed) { var options; if (plainObject(roots) && !elementOrCollection(roots)) { options = roots; roots = options.roots || options.root; fn = options.visit; directed = options.directed; } directed = arguments.length === 2 && !fn$6(fn) ? fn : directed; fn = fn$6(fn) ? fn : function () {}; var cy = this._private.cy; var v = roots = string(roots) ? this.filter(roots) : roots; var Q = []; var connectedNodes = []; var connectedBy = {}; var id2depth = {}; var V = {}; var j = 0; var found; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; // enqueue v for (var i = 0; i < v.length; i++) { var vi = v[i]; var viId = vi.id(); if (vi.isNode()) { Q.unshift(vi); if (params.bfs) { V[viId] = true; connectedNodes.push(vi); } id2depth[viId] = 0; } } var _loop = function _loop() { var v = params.bfs ? Q.shift() : Q.pop(); var vId = v.id(); if (params.dfs) { if (V[vId]) { return "continue"; } V[vId] = true; connectedNodes.push(v); } var depth = id2depth[vId]; var prevEdge = connectedBy[vId]; var src = prevEdge != null ? prevEdge.source() : null; var tgt = prevEdge != null ? prevEdge.target() : null; var prevNode = prevEdge == null ? undefined : v.same(src) ? tgt[0] : src[0]; var ret = void 0; ret = fn(v, prevEdge, prevNode, j++, depth); if (ret === true) { found = v; return "break"; } if (ret === false) { return "break"; } var vwEdges = v.connectedEdges().filter(function (e) { return (!directed || e.source().same(v)) && edges.has(e); }); for (var _i2 = 0; _i2 < vwEdges.length; _i2++) { var e = vwEdges[_i2]; var w = e.connectedNodes().filter(function (n) { return !n.same(v) && nodes.has(n); }); var wId = w.id(); if (w.length !== 0 && !V[wId]) { w = w[0]; Q.push(w); if (params.bfs) { V[wId] = true; connectedNodes.push(w); } connectedBy[wId] = e; id2depth[wId] = id2depth[vId] + 1; } } }; while (Q.length !== 0) { var _ret = _loop(); if (_ret === "continue") continue; if (_ret === "break") break; } var connectedEles = cy.collection(); for (var _i = 0; _i < connectedNodes.length; _i++) { var node = connectedNodes[_i]; var edge = connectedBy[node.id()]; if (edge != null) { connectedEles.push(edge); } connectedEles.push(node); } return { path: cy.collection(connectedEles), found: cy.collection(found) }; }; }; // search, spanning trees, etc var elesfn$v = { breadthFirstSearch: defineSearch({ bfs: true }), depthFirstSearch: defineSearch({ dfs: true }) }; // nice, short mathematical alias elesfn$v.bfs = elesfn$v.breadthFirstSearch; elesfn$v.dfs = elesfn$v.depthFirstSearch; var heap$1 = createCommonjsModule(function (module, exports) { // Generated by CoffeeScript 1.8.0 (function() { var Heap, defaultCmp, floor, heapify, heappop, heappush, heappushpop, heapreplace, insort, min, nlargest, nsmallest, updateItem, _siftdown, _siftup; floor = Math.floor, min = Math.min; /* Default comparison function to be used */ defaultCmp = function(x, y) { if (x < y) { return -1; } if (x > y) { return 1; } return 0; }; /* Insert item x in list a, and keep it sorted assuming a is sorted. If x is already in a, insert it to the right of the rightmost x. Optional args lo (default 0) and hi (default a.length) bound the slice of a to be searched. */ insort = function(a, x, lo, hi, cmp) { var mid; if (lo == null) { lo = 0; } if (cmp == null) { cmp = defaultCmp; } if (lo < 0) { throw new Error('lo must be non-negative'); } if (hi == null) { hi = a.length; } while (lo < hi) { mid = floor((lo + hi) / 2); if (cmp(x, a[mid]) < 0) { hi = mid; } else { lo = mid + 1; } } return ([].splice.apply(a, [lo, lo - lo].concat(x)), x); }; /* Push item onto heap, maintaining the heap invariant. */ heappush = function(array, item, cmp) { if (cmp == null) { cmp = defaultCmp; } array.push(item); return _siftdown(array, 0, array.length - 1, cmp); }; /* Pop the smallest item off the heap, maintaining the heap invariant. */ heappop = function(array, cmp) { var lastelt, returnitem; if (cmp == null) { cmp = defaultCmp; } lastelt = array.pop(); if (array.length) { returnitem = array[0]; array[0] = lastelt; _siftup(array, 0, cmp); } else { returnitem = lastelt; } return returnitem; }; /* Pop and return the current smallest value, and add the new item. This is more efficient than heappop() followed by heappush(), and can be more appropriate when using a fixed size heap. Note that the value returned may be larger than item! That constrains reasonable use of this routine unless written as part of a conditional replacement: if item > array[0] item = heapreplace(array, item) */ heapreplace = function(array, item, cmp) { var returnitem; if (cmp == null) { cmp = defaultCmp; } returnitem = array[0]; array[0] = item; _siftup(array, 0, cmp); return returnitem; }; /* Fast version of a heappush followed by a heappop. */ heappushpop = function(array, item, cmp) { var _ref; if (cmp == null) { cmp = defaultCmp; } if (array.length && cmp(array[0], item) < 0) { _ref = [array[0], item], item = _ref[0], array[0] = _ref[1]; _siftup(array, 0, cmp); } return item; }; /* Transform list into a heap, in-place, in O(array.length) time. */ heapify = function(array, cmp) { var i, _i, _len, _ref1, _results, _results1; if (cmp == null) { cmp = defaultCmp; } _ref1 = (function() { _results1 = []; for (var _j = 0, _ref = floor(array.length / 2); 0 <= _ref ? _j < _ref : _j > _ref; 0 <= _ref ? _j++ : _j--){ _results1.push(_j); } return _results1; }).apply(this).reverse(); _results = []; for (_i = 0, _len = _ref1.length; _i < _len; _i++) { i = _ref1[_i]; _results.push(_siftup(array, i, cmp)); } return _results; }; /* Update the position of the given item in the heap. This function should be called every time the item is being modified. */ updateItem = function(array, item, cmp) { var pos; if (cmp == null) { cmp = defaultCmp; } pos = array.indexOf(item); if (pos === -1) { return; } _siftdown(array, 0, pos, cmp); return _siftup(array, pos, cmp); }; /* Find the n largest elements in a dataset. */ nlargest = function(array, n, cmp) { var elem, result, _i, _len, _ref; if (cmp == null) { cmp = defaultCmp; } result = array.slice(0, n); if (!result.length) { return result; } heapify(result, cmp); _ref = array.slice(n); for (_i = 0, _len = _ref.length; _i < _len; _i++) { elem = _ref[_i]; heappushpop(result, elem, cmp); } return result.sort(cmp).reverse(); }; /* Find the n smallest elements in a dataset. */ nsmallest = function(array, n, cmp) { var elem, los, result, _i, _j, _len, _ref, _ref1, _results; if (cmp == null) { cmp = defaultCmp; } if (n * 10 <= array.length) { result = array.slice(0, n).sort(cmp); if (!result.length) { return result; } los = result[result.length - 1]; _ref = array.slice(n); for (_i = 0, _len = _ref.length; _i < _len; _i++) { elem = _ref[_i]; if (cmp(elem, los) < 0) { insort(result, elem, 0, null, cmp); result.pop(); los = result[result.length - 1]; } } return result; } heapify(array, cmp); _results = []; for (_j = 0, _ref1 = min(n, array.length); 0 <= _ref1 ? _j < _ref1 : _j > _ref1; 0 <= _ref1 ? ++_j : --_j) { _results.push(heappop(array, cmp)); } return _results; }; _siftdown = function(array, startpos, pos, cmp) { var newitem, parent, parentpos; if (cmp == null) { cmp = defaultCmp; } newitem = array[pos]; while (pos > startpos) { parentpos = (pos - 1) >> 1; parent = array[parentpos]; if (cmp(newitem, parent) < 0) { array[pos] = parent; pos = parentpos; continue; } break; } return array[pos] = newitem; }; _siftup = function(array, pos, cmp) { var childpos, endpos, newitem, rightpos, startpos; if (cmp == null) { cmp = defaultCmp; } endpos = array.length; startpos = pos; newitem = array[pos]; childpos = 2 * pos + 1; while (childpos < endpos) { rightpos = childpos + 1; if (rightpos < endpos && !(cmp(array[childpos], array[rightpos]) < 0)) { childpos = rightpos; } array[pos] = array[childpos]; pos = childpos; childpos = 2 * pos + 1; } array[pos] = newitem; return _siftdown(array, startpos, pos, cmp); }; Heap = (function() { Heap.push = heappush; Heap.pop = heappop; Heap.replace = heapreplace; Heap.pushpop = heappushpop; Heap.heapify = heapify; Heap.updateItem = updateItem; Heap.nlargest = nlargest; Heap.nsmallest = nsmallest; function Heap(cmp) { this.cmp = cmp != null ? cmp : defaultCmp; this.nodes = []; } Heap.prototype.push = function(x) { return heappush(this.nodes, x, this.cmp); }; Heap.prototype.pop = function() { return heappop(this.nodes, this.cmp); }; Heap.prototype.peek = function() { return this.nodes[0]; }; Heap.prototype.contains = function(x) { return this.nodes.indexOf(x) !== -1; }; Heap.prototype.replace = function(x) { return heapreplace(this.nodes, x, this.cmp); }; Heap.prototype.pushpop = function(x) { return heappushpop(this.nodes, x, this.cmp); }; Heap.prototype.heapify = function() { return heapify(this.nodes, this.cmp); }; Heap.prototype.updateItem = function(x) { return updateItem(this.nodes, x, this.cmp); }; Heap.prototype.clear = function() { return this.nodes = []; }; Heap.prototype.empty = function() { return this.nodes.length === 0; }; Heap.prototype.size = function() { return this.nodes.length; }; Heap.prototype.clone = function() { var heap; heap = new Heap(); heap.nodes = this.nodes.slice(0); return heap; }; Heap.prototype.toArray = function() { return this.nodes.slice(0); }; Heap.prototype.insert = Heap.prototype.push; Heap.prototype.top = Heap.prototype.peek; Heap.prototype.front = Heap.prototype.peek; Heap.prototype.has = Heap.prototype.contains; Heap.prototype.copy = Heap.prototype.clone; return Heap; })(); (function(root, factory) { { return module.exports = factory(); } })(this, function() { return Heap; }); }).call(commonjsGlobal); }); var heap = heap$1; var dijkstraDefaults = defaults$g({ root: null, weight: function weight(edge) { return 1; }, directed: false }); var elesfn$u = { dijkstra: function dijkstra(options) { if (!plainObject(options)) { var args = arguments; options = { root: args[0], weight: args[1], directed: args[2] }; } var _dijkstraDefaults = dijkstraDefaults(options), root = _dijkstraDefaults.root, weight = _dijkstraDefaults.weight, directed = _dijkstraDefaults.directed; var eles = this; var weightFn = weight; var source = string(root) ? this.filter(root)[0] : root[0]; var dist = {}; var prev = {}; var knownDist = {}; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; edges.unmergeBy(function (ele) { return ele.isLoop(); }); var getDist = function getDist(node) { return dist[node.id()]; }; var setDist = function setDist(node, d) { dist[node.id()] = d; Q.updateItem(node); }; var Q = new heap(function (a, b) { return getDist(a) - getDist(b); }); for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; dist[node.id()] = node.same(source) ? 0 : Infinity; Q.push(node); } var distBetween = function distBetween(u, v) { var uvs = (directed ? u.edgesTo(v) : u.edgesWith(v)).intersect(edges); var smallestDistance = Infinity; var smallestEdge; for (var _i = 0; _i < uvs.length; _i++) { var edge = uvs[_i]; var _weight = weightFn(edge); if (_weight < smallestDistance || !smallestEdge) { smallestDistance = _weight; smallestEdge = edge; } } return { edge: smallestEdge, dist: smallestDistance }; }; while (Q.size() > 0) { var u = Q.pop(); var smalletsDist = getDist(u); var uid = u.id(); knownDist[uid] = smalletsDist; if (smalletsDist === Infinity) { continue; } var neighbors = u.neighborhood().intersect(nodes); for (var _i2 = 0; _i2 < neighbors.length; _i2++) { var v = neighbors[_i2]; var vid = v.id(); var vDist = distBetween(u, v); var alt = smalletsDist + vDist.dist; if (alt < getDist(v)) { setDist(v, alt); prev[vid] = { node: u, edge: vDist.edge }; } } // for } // while return { distanceTo: function distanceTo(node) { var target = string(node) ? nodes.filter(node)[0] : node[0]; return knownDist[target.id()]; }, pathTo: function pathTo(node) { var target = string(node) ? nodes.filter(node)[0] : node[0]; var S = []; var u = target; var uid = u.id(); if (target.length > 0) { S.unshift(target); while (prev[uid]) { var p = prev[uid]; S.unshift(p.edge); S.unshift(p.node); u = p.node; uid = u.id(); } } return eles.spawn(S); } }; } }; var elesfn$t = { // kruskal's algorithm (finds min spanning tree, assuming undirected graph) // implemented from pseudocode from wikipedia kruskal: function kruskal(weightFn) { weightFn = weightFn || function (edge) { return 1; }; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; var numNodes = nodes.length; var forest = new Array(numNodes); var A = nodes; // assumes byGroup() creates new collections that can be safely mutated var findSetIndex = function findSetIndex(ele) { for (var i = 0; i < forest.length; i++) { var eles = forest[i]; if (eles.has(ele)) { return i; } } }; // start with one forest per node for (var i = 0; i < numNodes; i++) { forest[i] = this.spawn(nodes[i]); } var S = edges.sort(function (a, b) { return weightFn(a) - weightFn(b); }); for (var _i = 0; _i < S.length; _i++) { var edge = S[_i]; var u = edge.source()[0]; var v = edge.target()[0]; var setUIndex = findSetIndex(u); var setVIndex = findSetIndex(v); var setU = forest[setUIndex]; var setV = forest[setVIndex]; if (setUIndex !== setVIndex) { A.merge(edge); // combine forests for u and v setU.merge(setV); forest.splice(setVIndex, 1); } } return A; } }; var aStarDefaults = defaults$g({ root: null, goal: null, weight: function weight(edge) { return 1; }, heuristic: function heuristic(edge) { return 0; }, directed: false }); var elesfn$s = { // Implemented from pseudocode from wikipedia aStar: function aStar(options) { var cy = this.cy(); var _aStarDefaults = aStarDefaults(options), root = _aStarDefaults.root, goal = _aStarDefaults.goal, heuristic = _aStarDefaults.heuristic, directed = _aStarDefaults.directed, weight = _aStarDefaults.weight; root = cy.collection(root)[0]; goal = cy.collection(goal)[0]; var sid = root.id(); var tid = goal.id(); var gScore = {}; var fScore = {}; var closedSetIds = {}; var openSet = new heap(function (a, b) { return fScore[a.id()] - fScore[b.id()]; }); var openSetIds = new Set$1(); var cameFrom = {}; var cameFromEdge = {}; var addToOpenSet = function addToOpenSet(ele, id) { openSet.push(ele); openSetIds.add(id); }; var cMin, cMinId; var popFromOpenSet = function popFromOpenSet() { cMin = openSet.pop(); cMinId = cMin.id(); openSetIds["delete"](cMinId); }; var isInOpenSet = function isInOpenSet(id) { return openSetIds.has(id); }; addToOpenSet(root, sid); gScore[sid] = 0; fScore[sid] = heuristic(root); // Counter var steps = 0; // Main loop while (openSet.size() > 0) { popFromOpenSet(); steps++; // If we've found our goal, then we are done if (cMinId === tid) { var path = []; var pathNode = goal; var pathNodeId = tid; var pathEdge = cameFromEdge[pathNodeId]; for (;;) { path.unshift(pathNode); if (pathEdge != null) { path.unshift(pathEdge); } pathNode = cameFrom[pathNodeId]; if (pathNode == null) { break; } pathNodeId = pathNode.id(); pathEdge = cameFromEdge[pathNodeId]; } return { found: true, distance: gScore[cMinId], path: this.spawn(path), steps: steps }; } // Add cMin to processed nodes closedSetIds[cMinId] = true; // Update scores for neighbors of cMin // Take into account if graph is directed or not var vwEdges = cMin._private.edges; for (var i = 0; i < vwEdges.length; i++) { var e = vwEdges[i]; // edge must be in set of calling eles if (!this.hasElementWithId(e.id())) { continue; } // cMin must be the source of edge if directed if (directed && e.data('source') !== cMinId) { continue; } var wSrc = e.source(); var wTgt = e.target(); var w = wSrc.id() !== cMinId ? wSrc : wTgt; var wid = w.id(); // node must be in set of calling eles if (!this.hasElementWithId(wid)) { continue; } // if node is in closedSet, ignore it if (closedSetIds[wid]) { continue; } // New tentative score for node w var tempScore = gScore[cMinId] + weight(e); // Update gScore for node w if: // w not present in openSet // OR // tentative gScore is less than previous value // w not in openSet if (!isInOpenSet(wid)) { gScore[wid] = tempScore; fScore[wid] = tempScore + heuristic(w); addToOpenSet(w, wid); cameFrom[wid] = cMin; cameFromEdge[wid] = e; continue; } // w already in openSet, but with greater gScore if (tempScore < gScore[wid]) { gScore[wid] = tempScore; fScore[wid] = tempScore + heuristic(w); cameFrom[wid] = cMin; cameFromEdge[wid] = e; } } // End of neighbors update } // End of main loop // If we've reached here, then we've not reached our goal return { found: false, distance: undefined, path: undefined, steps: steps }; } }; // elesfn var floydWarshallDefaults = defaults$g({ weight: function weight(edge) { return 1; }, directed: false }); var elesfn$r = { // Implemented from pseudocode from wikipedia floydWarshall: function floydWarshall(options) { var cy = this.cy(); var _floydWarshallDefault = floydWarshallDefaults(options), weight = _floydWarshallDefault.weight, directed = _floydWarshallDefault.directed; var weightFn = weight; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; var N = nodes.length; var Nsq = N * N; var indexOf = function indexOf(node) { return nodes.indexOf(node); }; var atIndex = function atIndex(i) { return nodes[i]; }; // Initialize distance matrix var dist = new Array(Nsq); for (var n = 0; n < Nsq; n++) { var j = n % N; var i = (n - j) / N; if (i === j) { dist[n] = 0; } else { dist[n] = Infinity; } } // Initialize matrix used for path reconstruction // Initialize distance matrix var next = new Array(Nsq); var edgeNext = new Array(Nsq); // Process edges for (var _i = 0; _i < edges.length; _i++) { var edge = edges[_i]; var src = edge.source()[0]; var tgt = edge.target()[0]; if (src === tgt) { continue; } // exclude loops var s = indexOf(src); var t = indexOf(tgt); var st = s * N + t; // source to target index var _weight = weightFn(edge); // Check if already process another edge between same 2 nodes if (dist[st] > _weight) { dist[st] = _weight; next[st] = t; edgeNext[st] = edge; } // If undirected graph, process 'reversed' edge if (!directed) { var ts = t * N + s; // target to source index if (!directed && dist[ts] > _weight) { dist[ts] = _weight; next[ts] = s; edgeNext[ts] = edge; } } } // Main loop for (var k = 0; k < N; k++) { for (var _i2 = 0; _i2 < N; _i2++) { var ik = _i2 * N + k; for (var _j = 0; _j < N; _j++) { var ij = _i2 * N + _j; var kj = k * N + _j; if (dist[ik] + dist[kj] < dist[ij]) { dist[ij] = dist[ik] + dist[kj]; next[ij] = next[ik]; } } } } var getArgEle = function getArgEle(ele) { return (string(ele) ? cy.filter(ele) : ele)[0]; }; var indexOfArgEle = function indexOfArgEle(ele) { return indexOf(getArgEle(ele)); }; var res = { distance: function distance(from, to) { var i = indexOfArgEle(from); var j = indexOfArgEle(to); return dist[i * N + j]; }, path: function path(from, to) { var i = indexOfArgEle(from); var j = indexOfArgEle(to); var fromNode = atIndex(i); if (i === j) { return fromNode.collection(); } if (next[i * N + j] == null) { return cy.collection(); } var path = cy.collection(); var prev = i; var edge; path.merge(fromNode); while (i !== j) { prev = i; i = next[i * N + j]; edge = edgeNext[prev * N + i]; path.merge(edge); path.merge(atIndex(i)); } return path; } }; return res; } // floydWarshall }; // elesfn var bellmanFordDefaults = defaults$g({ weight: function weight(edge) { return 1; }, directed: false, root: null }); var elesfn$q = { // Implemented from pseudocode from wikipedia bellmanFord: function bellmanFord(options) { var _this = this; var _bellmanFordDefaults = bellmanFordDefaults(options), weight = _bellmanFordDefaults.weight, directed = _bellmanFordDefaults.directed, root = _bellmanFordDefaults.root; var weightFn = weight; var eles = this; var cy = this.cy(); var _this$byGroup = this.byGroup(), edges = _this$byGroup.edges, nodes = _this$byGroup.nodes; var numNodes = nodes.length; var infoMap = new Map$2(); var hasNegativeWeightCycle = false; var negativeWeightCycles = []; root = cy.collection(root)[0]; // in case selector passed edges.unmergeBy(function (edge) { return edge.isLoop(); }); var numEdges = edges.length; var getInfo = function getInfo(node) { var obj = infoMap.get(node.id()); if (!obj) { obj = {}; infoMap.set(node.id(), obj); } return obj; }; var getNodeFromTo = function getNodeFromTo(to) { return (string(to) ? cy.$(to) : to)[0]; }; var distanceTo = function distanceTo(to) { return getInfo(getNodeFromTo(to)).dist; }; var pathTo = function pathTo(to) { var thisStart = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : root; var end = getNodeFromTo(to); var path = []; var node = end; for (;;) { if (node == null) { return _this.spawn(); } var _getInfo = getInfo(node), edge = _getInfo.edge, pred = _getInfo.pred; path.unshift(node[0]); if (node.same(thisStart) && path.length > 0) { break; } if (edge != null) { path.unshift(edge); } node = pred; } return eles.spawn(path); }; // Initializations { dist, pred, edge } for (var i = 0; i < numNodes; i++) { var node = nodes[i]; var info = getInfo(node); if (node.same(root)) { info.dist = 0; } else { info.dist = Infinity; } info.pred = null; info.edge = null; } // Edges relaxation var replacedEdge = false; var checkForEdgeReplacement = function checkForEdgeReplacement(node1, node2, edge, info1, info2, weight) { var dist = info1.dist + weight; if (dist < info2.dist && !edge.same(info1.edge)) { info2.dist = dist; info2.pred = node1; info2.edge = edge; replacedEdge = true; } }; for (var _i = 1; _i < numNodes; _i++) { replacedEdge = false; for (var e = 0; e < numEdges; e++) { var edge = edges[e]; var src = edge.source(); var tgt = edge.target(); var _weight = weightFn(edge); var srcInfo = getInfo(src); var tgtInfo = getInfo(tgt); checkForEdgeReplacement(src, tgt, edge, srcInfo, tgtInfo, _weight); // If undirected graph, we need to take into account the 'reverse' edge if (!directed) { checkForEdgeReplacement(tgt, src, edge, tgtInfo, srcInfo, _weight); } } if (!replacedEdge) { break; } } if (replacedEdge) { // Check for negative weight cycles var negativeWeightCycleIds = []; for (var _e = 0; _e < numEdges; _e++) { var _edge = edges[_e]; var _src = _edge.source(); var _tgt = _edge.target(); var _weight2 = weightFn(_edge); var srcDist = getInfo(_src).dist; var tgtDist = getInfo(_tgt).dist; if (srcDist + _weight2 < tgtDist || !directed && tgtDist + _weight2 < srcDist) { if (!hasNegativeWeightCycle) { warn('Graph contains a negative weight cycle for Bellman-Ford'); hasNegativeWeightCycle = true; } if (options.findNegativeWeightCycles !== false) { var negativeNodes = []; if (srcDist + _weight2 < tgtDist) { negativeNodes.push(_src); } if (!directed && tgtDist + _weight2 < srcDist) { negativeNodes.push(_tgt); } var numNegativeNodes = negativeNodes.length; for (var n = 0; n < numNegativeNodes; n++) { var start = negativeNodes[n]; var cycle = [start]; cycle.push(getInfo(start).edge); var _node = getInfo(start).pred; while (cycle.indexOf(_node) === -1) { cycle.push(_node); cycle.push(getInfo(_node).edge); _node = getInfo(_node).pred; } cycle = cycle.slice(cycle.indexOf(_node)); var smallestId = cycle[0].id(); var smallestIndex = 0; for (var c = 2; c < cycle.length; c += 2) { if (cycle[c].id() < smallestId) { smallestId = cycle[c].id(); smallestIndex = c; } } cycle = cycle.slice(smallestIndex).concat(cycle.slice(0, smallestIndex)); cycle.push(cycle[0]); var cycleId = cycle.map(function (el) { return el.id(); }).join(","); if (negativeWeightCycleIds.indexOf(cycleId) === -1) { negativeWeightCycles.push(eles.spawn(cycle)); negativeWeightCycleIds.push(cycleId); } } } else { break; } } } } return { distanceTo: distanceTo, pathTo: pathTo, hasNegativeWeightCycle: hasNegativeWeightCycle, negativeWeightCycles: negativeWeightCycles }; } // bellmanFord }; // elesfn var sqrt2 = Math.sqrt(2); // Function which colapses 2 (meta) nodes into one // Updates the remaining edge lists // Receives as a paramater the edge which causes the collapse var collapse = function collapse(edgeIndex, nodeMap, remainingEdges) { if (remainingEdges.length === 0) { error("Karger-Stein must be run on a connected (sub)graph"); } var edgeInfo = remainingEdges[edgeIndex]; var sourceIn = edgeInfo[1]; var targetIn = edgeInfo[2]; var partition1 = nodeMap[sourceIn]; var partition2 = nodeMap[targetIn]; var newEdges = remainingEdges; // re-use array // Delete all edges between partition1 and partition2 for (var i = newEdges.length - 1; i >= 0; i--) { var edge = newEdges[i]; var src = edge[1]; var tgt = edge[2]; if (nodeMap[src] === partition1 && nodeMap[tgt] === partition2 || nodeMap[src] === partition2 && nodeMap[tgt] === partition1) { newEdges.splice(i, 1); } } // All edges pointing to partition2 should now point to partition1 for (var _i = 0; _i < newEdges.length; _i++) { var _edge = newEdges[_i]; if (_edge[1] === partition2) { // Check source newEdges[_i] = _edge.slice(); // copy newEdges[_i][1] = partition1; } else if (_edge[2] === partition2) { // Check target newEdges[_i] = _edge.slice(); // copy newEdges[_i][2] = partition1; } } // Move all nodes from partition2 to partition1 for (var _i2 = 0; _i2 < nodeMap.length; _i2++) { if (nodeMap[_i2] === partition2) { nodeMap[_i2] = partition1; } } return newEdges; }; // Contracts a graph until we reach a certain number of meta nodes var contractUntil = function contractUntil(metaNodeMap, remainingEdges, size, sizeLimit) { while (size > sizeLimit) { // Choose an edge randomly var edgeIndex = Math.floor(Math.random() * remainingEdges.length); // Collapse graph based on edge remainingEdges = collapse(edgeIndex, metaNodeMap, remainingEdges); size--; } return remainingEdges; }; var elesfn$p = { // Computes the minimum cut of an undirected graph // Returns the correct answer with high probability kargerStein: function kargerStein() { var _this = this; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; edges.unmergeBy(function (edge) { return edge.isLoop(); }); var numNodes = nodes.length; var numEdges = edges.length; var numIter = Math.ceil(Math.pow(Math.log(numNodes) / Math.LN2, 2)); var stopSize = Math.floor(numNodes / sqrt2); if (numNodes < 2) { error('At least 2 nodes are required for Karger-Stein algorithm'); return undefined; } // Now store edge destination as indexes // Format for each edge (edge index, source node index, target node index) var edgeIndexes = []; for (var i = 0; i < numEdges; i++) { var e = edges[i]; edgeIndexes.push([i, nodes.indexOf(e.source()), nodes.indexOf(e.target())]); } // We will store the best cut found here var minCutSize = Infinity; var minCutEdgeIndexes = []; var minCutNodeMap = new Array(numNodes); // Initial meta node partition var metaNodeMap = new Array(numNodes); var metaNodeMap2 = new Array(numNodes); var copyNodesMap = function copyNodesMap(from, to) { for (var _i3 = 0; _i3 < numNodes; _i3++) { to[_i3] = from[_i3]; } }; // Main loop for (var iter = 0; iter <= numIter; iter++) { // Reset meta node partition for (var _i4 = 0; _i4 < numNodes; _i4++) { metaNodeMap[_i4] = _i4; } // Contract until stop point (stopSize nodes) var edgesState = contractUntil(metaNodeMap, edgeIndexes.slice(), numNodes, stopSize); var edgesState2 = edgesState.slice(); // copy // Create a copy of the colapsed nodes state copyNodesMap(metaNodeMap, metaNodeMap2); // Run 2 iterations starting in the stop state var res1 = contractUntil(metaNodeMap, edgesState, stopSize, 2); var res2 = contractUntil(metaNodeMap2, edgesState2, stopSize, 2); // Is any of the 2 results the best cut so far? if (res1.length <= res2.length && res1.length < minCutSize) { minCutSize = res1.length; minCutEdgeIndexes = res1; copyNodesMap(metaNodeMap, minCutNodeMap); } else if (res2.length <= res1.length && res2.length < minCutSize) { minCutSize = res2.length; minCutEdgeIndexes = res2; copyNodesMap(metaNodeMap2, minCutNodeMap); } } // end of main loop // Construct result var cut = this.spawn(minCutEdgeIndexes.map(function (e) { return edges[e[0]]; })); var partition1 = this.spawn(); var partition2 = this.spawn(); // traverse metaNodeMap for best cut var witnessNodePartition = minCutNodeMap[0]; for (var _i5 = 0; _i5 < minCutNodeMap.length; _i5++) { var partitionId = minCutNodeMap[_i5]; var node = nodes[_i5]; if (partitionId === witnessNodePartition) { partition1.merge(node); } else { partition2.merge(node); } } // construct components corresponding to each disjoint subset of nodes var constructComponent = function constructComponent(subset) { var component = _this.spawn(); subset.forEach(function (node) { component.merge(node); node.connectedEdges().forEach(function (edge) { // ensure edge is within calling collection and edge is not in cut if (_this.contains(edge) && !cut.contains(edge)) { component.merge(edge); } }); }); return component; }; var components = [constructComponent(partition1), constructComponent(partition2)]; var ret = { cut: cut, components: components, // n.b. partitions are included to be compatible with the old api spec // (could be removed in a future major version) partition1: partition1, partition2: partition2 }; return ret; } }; // elesfn var copyPosition = function copyPosition(p) { return { x: p.x, y: p.y }; }; var modelToRenderedPosition = function modelToRenderedPosition(p, zoom, pan) { return { x: p.x * zoom + pan.x, y: p.y * zoom + pan.y }; }; var renderedToModelPosition = function renderedToModelPosition(p, zoom, pan) { return { x: (p.x - pan.x) / zoom, y: (p.y - pan.y) / zoom }; }; var array2point = function array2point(arr) { return { x: arr[0], y: arr[1] }; }; var min = function min(arr) { var begin = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; var end = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : arr.length; var min = Infinity; for (var i = begin; i < end; i++) { var val = arr[i]; if (isFinite(val)) { min = Math.min(val, min); } } return min; }; var max = function max(arr) { var begin = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; var end = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : arr.length; var max = -Infinity; for (var i = begin; i < end; i++) { var val = arr[i]; if (isFinite(val)) { max = Math.max(val, max); } } return max; }; var mean = function mean(arr) { var begin = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; var end = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : arr.length; var total = 0; var n = 0; for (var i = begin; i < end; i++) { var val = arr[i]; if (isFinite(val)) { total += val; n++; } } return total / n; }; var median = function median(arr) { var begin = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; var end = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : arr.length; var copy = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true; var sort = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true; var includeHoles = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : true; if (copy) { arr = arr.slice(begin, end); } else { if (end < arr.length) { arr.splice(end, arr.length - end); } if (begin > 0) { arr.splice(0, begin); } } // all non finite (e.g. Infinity, NaN) elements must be -Infinity so they go to the start var off = 0; // offset from non-finite values for (var i = arr.length - 1; i >= 0; i--) { var v = arr[i]; if (includeHoles) { if (!isFinite(v)) { arr[i] = -Infinity; off++; } } else { // just remove it if we don't want to consider holes arr.splice(i, 1); } } if (sort) { arr.sort(function (a, b) { return a - b; }); // requires copy = true if you don't want to change the orig } var len = arr.length; var mid = Math.floor(len / 2); if (len % 2 !== 0) { return arr[mid + 1 + off]; } else { return (arr[mid - 1 + off] + arr[mid + off]) / 2; } }; var deg2rad = function deg2rad(deg) { return Math.PI * deg / 180; }; var getAngleFromDisp = function getAngleFromDisp(dispX, dispY) { return Math.atan2(dispY, dispX) - Math.PI / 2; }; var log2 = Math.log2 || function (n) { return Math.log(n) / Math.log(2); }; var signum = function signum(x) { if (x > 0) { return 1; } else if (x < 0) { return -1; } else { return 0; } }; var dist = function dist(p1, p2) { return Math.sqrt(sqdist(p1, p2)); }; var sqdist = function sqdist(p1, p2) { var dx = p2.x - p1.x; var dy = p2.y - p1.y; return dx * dx + dy * dy; }; var inPlaceSumNormalize = function inPlaceSumNormalize(v) { var length = v.length; // First, get sum of all elements var total = 0; for (var i = 0; i < length; i++) { total += v[i]; } // Now, divide each by the sum of all elements for (var _i = 0; _i < length; _i++) { v[_i] = v[_i] / total; } return v; }; // from http://en.wikipedia.org/wiki/Bézier_curve#Quadratic_curves var qbezierAt = function qbezierAt(p0, p1, p2, t) { return (1 - t) * (1 - t) * p0 + 2 * (1 - t) * t * p1 + t * t * p2; }; var qbezierPtAt = function qbezierPtAt(p0, p1, p2, t) { return { x: qbezierAt(p0.x, p1.x, p2.x, t), y: qbezierAt(p0.y, p1.y, p2.y, t) }; }; var lineAt = function lineAt(p0, p1, t, d) { var vec = { x: p1.x - p0.x, y: p1.y - p0.y }; var vecDist = dist(p0, p1); var normVec = { x: vec.x / vecDist, y: vec.y / vecDist }; t = t == null ? 0 : t; d = d != null ? d : t * vecDist; return { x: p0.x + normVec.x * d, y: p0.y + normVec.y * d }; }; var bound = function bound(min, val, max) { return Math.max(min, Math.min(max, val)); }; // makes a full bb (x1, y1, x2, y2, w, h) from implicit params var makeBoundingBox = function makeBoundingBox(bb) { if (bb == null) { return { x1: Infinity, y1: Infinity, x2: -Infinity, y2: -Infinity, w: 0, h: 0 }; } else if (bb.x1 != null && bb.y1 != null) { if (bb.x2 != null && bb.y2 != null && bb.x2 >= bb.x1 && bb.y2 >= bb.y1) { return { x1: bb.x1, y1: bb.y1, x2: bb.x2, y2: bb.y2, w: bb.x2 - bb.x1, h: bb.y2 - bb.y1 }; } else if (bb.w != null && bb.h != null && bb.w >= 0 && bb.h >= 0) { return { x1: bb.x1, y1: bb.y1, x2: bb.x1 + bb.w, y2: bb.y1 + bb.h, w: bb.w, h: bb.h }; } } }; var copyBoundingBox = function copyBoundingBox(bb) { return { x1: bb.x1, x2: bb.x2, w: bb.w, y1: bb.y1, y2: bb.y2, h: bb.h }; }; var clearBoundingBox = function clearBoundingBox(bb) { bb.x1 = Infinity; bb.y1 = Infinity; bb.x2 = -Infinity; bb.y2 = -Infinity; bb.w = 0; bb.h = 0; }; var shiftBoundingBox = function shiftBoundingBox(bb, dx, dy) { return { x1: bb.x1 + dx, x2: bb.x2 + dx, y1: bb.y1 + dy, y2: bb.y2 + dy, w: bb.w, h: bb.h }; }; var updateBoundingBox = function updateBoundingBox(bb1, bb2) { // update bb1 with bb2 bounds bb1.x1 = Math.min(bb1.x1, bb2.x1); bb1.x2 = Math.max(bb1.x2, bb2.x2); bb1.w = bb1.x2 - bb1.x1; bb1.y1 = Math.min(bb1.y1, bb2.y1); bb1.y2 = Math.max(bb1.y2, bb2.y2); bb1.h = bb1.y2 - bb1.y1; }; var expandBoundingBoxByPoint = function expandBoundingBoxByPoint(bb, x, y) { bb.x1 = Math.min(bb.x1, x); bb.x2 = Math.max(bb.x2, x); bb.w = bb.x2 - bb.x1; bb.y1 = Math.min(bb.y1, y); bb.y2 = Math.max(bb.y2, y); bb.h = bb.y2 - bb.y1; }; var expandBoundingBox = function expandBoundingBox(bb) { var padding = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; bb.x1 -= padding; bb.x2 += padding; bb.y1 -= padding; bb.y2 += padding; bb.w = bb.x2 - bb.x1; bb.h = bb.y2 - bb.y1; return bb; }; var expandBoundingBoxSides = function expandBoundingBoxSides(bb) { var padding = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [0]; var top, right, bottom, left; if (padding.length === 1) { top = right = bottom = left = padding[0]; } else if (padding.length === 2) { top = bottom = padding[0]; left = right = padding[1]; } else if (padding.length === 4) { var _padding = _slicedToArray(padding, 4); top = _padding[0]; right = _padding[1]; bottom = _padding[2]; left = _padding[3]; } bb.x1 -= left; bb.x2 += right; bb.y1 -= top; bb.y2 += bottom; bb.w = bb.x2 - bb.x1; bb.h = bb.y2 - bb.y1; return bb; }; // assign the values of bb2 into bb1 var assignBoundingBox = function assignBoundingBox(bb1, bb2) { bb1.x1 = bb2.x1; bb1.y1 = bb2.y1; bb1.x2 = bb2.x2; bb1.y2 = bb2.y2; bb1.w = bb1.x2 - bb1.x1; bb1.h = bb1.y2 - bb1.y1; }; var boundingBoxesIntersect = function boundingBoxesIntersect(bb1, bb2) { // case: one bb to right of other if (bb1.x1 > bb2.x2) { return false; } if (bb2.x1 > bb1.x2) { return false; } // case: one bb to left of other if (bb1.x2 < bb2.x1) { return false; } if (bb2.x2 < bb1.x1) { return false; } // case: one bb above other if (bb1.y2 < bb2.y1) { return false; } if (bb2.y2 < bb1.y1) { return false; } // case: one bb below other if (bb1.y1 > bb2.y2) { return false; } if (bb2.y1 > bb1.y2) { return false; } // otherwise, must have some overlap return true; }; var inBoundingBox = function inBoundingBox(bb, x, y) { return bb.x1 <= x && x <= bb.x2 && bb.y1 <= y && y <= bb.y2; }; var pointInBoundingBox = function pointInBoundingBox(bb, pt) { return inBoundingBox(bb, pt.x, pt.y); }; var boundingBoxInBoundingBox = function boundingBoxInBoundingBox(bb1, bb2) { return inBoundingBox(bb1, bb2.x1, bb2.y1) && inBoundingBox(bb1, bb2.x2, bb2.y2); }; var roundRectangleIntersectLine = function roundRectangleIntersectLine(x, y, nodeX, nodeY, width, height, padding) { var radius = arguments.length > 7 && arguments[7] !== undefined ? arguments[7] : 'auto'; var cornerRadius = radius === 'auto' ? getRoundRectangleRadius(width, height) : radius; var halfWidth = width / 2; var halfHeight = height / 2; cornerRadius = Math.min(cornerRadius, halfWidth, halfHeight); var doWidth = cornerRadius !== halfWidth, doHeight = cornerRadius !== halfHeight; // Check intersections with straight line segments var straightLineIntersections; // Top segment, left to right if (doWidth) { var topStartX = nodeX - halfWidth + cornerRadius - padding; var topStartY = nodeY - halfHeight - padding; var topEndX = nodeX + halfWidth - cornerRadius + padding; var topEndY = topStartY; straightLineIntersections = finiteLinesIntersect(x, y, nodeX, nodeY, topStartX, topStartY, topEndX, topEndY, false); if (straightLineIntersections.length > 0) { return straightLineIntersections; } } // Right segment, top to bottom if (doHeight) { var rightStartX = nodeX + halfWidth + padding; var rightStartY = nodeY - halfHeight + cornerRadius - padding; var rightEndX = rightStartX; var rightEndY = nodeY + halfHeight - cornerRadius + padding; straightLineIntersections = finiteLinesIntersect(x, y, nodeX, nodeY, rightStartX, rightStartY, rightEndX, rightEndY, false); if (straightLineIntersections.length > 0) { return straightLineIntersections; } } // Bottom segment, left to right if (doWidth) { var bottomStartX = nodeX - halfWidth + cornerRadius - padding; var bottomStartY = nodeY + halfHeight + padding; var bottomEndX = nodeX + halfWidth - cornerRadius + padding; var bottomEndY = bottomStartY; straightLineIntersections = finiteLinesIntersect(x, y, nodeX, nodeY, bottomStartX, bottomStartY, bottomEndX, bottomEndY, false); if (straightLineIntersections.length > 0) { return straightLineIntersections; } } // Left segment, top to bottom if (doHeight) { var leftStartX = nodeX - halfWidth - padding; var leftStartY = nodeY - halfHeight + cornerRadius - padding; var leftEndX = leftStartX; var leftEndY = nodeY + halfHeight - cornerRadius + padding; straightLineIntersections = finiteLinesIntersect(x, y, nodeX, nodeY, leftStartX, leftStartY, leftEndX, leftEndY, false); if (straightLineIntersections.length > 0) { return straightLineIntersections; } } // Check intersections with arc segments var arcIntersections; // Top Left { var topLeftCenterX = nodeX - halfWidth + cornerRadius; var topLeftCenterY = nodeY - halfHeight + cornerRadius; arcIntersections = intersectLineCircle(x, y, nodeX, nodeY, topLeftCenterX, topLeftCenterY, cornerRadius + padding); // Ensure the intersection is on the desired quarter of the circle if (arcIntersections.length > 0 && arcIntersections[0] <= topLeftCenterX && arcIntersections[1] <= topLeftCenterY) { return [arcIntersections[0], arcIntersections[1]]; } } // Top Right { var topRightCenterX = nodeX + halfWidth - cornerRadius; var topRightCenterY = nodeY - halfHeight + cornerRadius; arcIntersections = intersectLineCircle(x, y, nodeX, nodeY, topRightCenterX, topRightCenterY, cornerRadius + padding); // Ensure the intersection is on the desired quarter of the circle if (arcIntersections.length > 0 && arcIntersections[0] >= topRightCenterX && arcIntersections[1] <= topRightCenterY) { return [arcIntersections[0], arcIntersections[1]]; } } // Bottom Right { var bottomRightCenterX = nodeX + halfWidth - cornerRadius; var bottomRightCenterY = nodeY + halfHeight - cornerRadius; arcIntersections = intersectLineCircle(x, y, nodeX, nodeY, bottomRightCenterX, bottomRightCenterY, cornerRadius + padding); // Ensure the intersection is on the desired quarter of the circle if (arcIntersections.length > 0 && arcIntersections[0] >= bottomRightCenterX && arcIntersections[1] >= bottomRightCenterY) { return [arcIntersections[0], arcIntersections[1]]; } } // Bottom Left { var bottomLeftCenterX = nodeX - halfWidth + cornerRadius; var bottomLeftCenterY = nodeY + halfHeight - cornerRadius; arcIntersections = intersectLineCircle(x, y, nodeX, nodeY, bottomLeftCenterX, bottomLeftCenterY, cornerRadius + padding); // Ensure the intersection is on the desired quarter of the circle if (arcIntersections.length > 0 && arcIntersections[0] <= bottomLeftCenterX && arcIntersections[1] >= bottomLeftCenterY) { return [arcIntersections[0], arcIntersections[1]]; } } return []; // if nothing }; var inLineVicinity = function inLineVicinity(x, y, lx1, ly1, lx2, ly2, tolerance) { var t = tolerance; var x1 = Math.min(lx1, lx2); var x2 = Math.max(lx1, lx2); var y1 = Math.min(ly1, ly2); var y2 = Math.max(ly1, ly2); return x1 - t <= x && x <= x2 + t && y1 - t <= y && y <= y2 + t; }; var inBezierVicinity = function inBezierVicinity(x, y, x1, y1, x2, y2, x3, y3, tolerance) { var bb = { x1: Math.min(x1, x3, x2) - tolerance, x2: Math.max(x1, x3, x2) + tolerance, y1: Math.min(y1, y3, y2) - tolerance, y2: Math.max(y1, y3, y2) + tolerance }; // if outside the rough bounding box for the bezier, then it can't be a hit if (x < bb.x1 || x > bb.x2 || y < bb.y1 || y > bb.y2) { // console.log('bezier out of rough bb') return false; } else { // console.log('do more expensive check'); return true; } }; var solveQuadratic = function solveQuadratic(a, b, c, val) { c -= val; var r = b * b - 4 * a * c; if (r < 0) { return []; } var sqrtR = Math.sqrt(r); var denom = 2 * a; var root1 = (-b + sqrtR) / denom; var root2 = (-b - sqrtR) / denom; return [root1, root2]; }; var solveCubic = function solveCubic(a, b, c, d, result) { // Solves a cubic function, returns root in form [r1, i1, r2, i2, r3, i3], where // r is the real component, i is the imaginary component // An implementation of the Cardano method from the year 1545 // http://en.wikipedia.org/wiki/Cubic_function#The_nature_of_the_roots var epsilon = 0.00001; // avoid division by zero while keeping the overall expression close in value if (a === 0) { a = epsilon; } b /= a; c /= a; d /= a; var discriminant, q, r, dum1, s, t, term1, r13; q = (3.0 * c - b * b) / 9.0; r = -(27.0 * d) + b * (9.0 * c - 2.0 * (b * b)); r /= 54.0; discriminant = q * q * q + r * r; result[1] = 0; term1 = b / 3.0; if (discriminant > 0) { s = r + Math.sqrt(discriminant); s = s < 0 ? -Math.pow(-s, 1.0 / 3.0) : Math.pow(s, 1.0 / 3.0); t = r - Math.sqrt(discriminant); t = t < 0 ? -Math.pow(-t, 1.0 / 3.0) : Math.pow(t, 1.0 / 3.0); result[0] = -term1 + s + t; term1 += (s + t) / 2.0; result[4] = result[2] = -term1; term1 = Math.sqrt(3.0) * (-t + s) / 2; result[3] = term1; result[5] = -term1; return; } result[5] = result[3] = 0; if (discriminant === 0) { r13 = r < 0 ? -Math.pow(-r, 1.0 / 3.0) : Math.pow(r, 1.0 / 3.0); result[0] = -term1 + 2.0 * r13; result[4] = result[2] = -(r13 + term1); return; } q = -q; dum1 = q * q * q; dum1 = Math.acos(r / Math.sqrt(dum1)); r13 = 2.0 * Math.sqrt(q); result[0] = -term1 + r13 * Math.cos(dum1 / 3.0); result[2] = -term1 + r13 * Math.cos((dum1 + 2.0 * Math.PI) / 3.0); result[4] = -term1 + r13 * Math.cos((dum1 + 4.0 * Math.PI) / 3.0); return; }; var sqdistToQuadraticBezier = function sqdistToQuadraticBezier(x, y, x1, y1, x2, y2, x3, y3) { // Find minimum distance by using the minimum of the distance // function between the given point and the curve // This gives the coefficients of the resulting cubic equation // whose roots tell us where a possible minimum is // (Coefficients are divided by 4) var a = 1.0 * x1 * x1 - 4 * x1 * x2 + 2 * x1 * x3 + 4 * x2 * x2 - 4 * x2 * x3 + x3 * x3 + y1 * y1 - 4 * y1 * y2 + 2 * y1 * y3 + 4 * y2 * y2 - 4 * y2 * y3 + y3 * y3; var b = 1.0 * 9 * x1 * x2 - 3 * x1 * x1 - 3 * x1 * x3 - 6 * x2 * x2 + 3 * x2 * x3 + 9 * y1 * y2 - 3 * y1 * y1 - 3 * y1 * y3 - 6 * y2 * y2 + 3 * y2 * y3; var c = 1.0 * 3 * x1 * x1 - 6 * x1 * x2 + x1 * x3 - x1 * x + 2 * x2 * x2 + 2 * x2 * x - x3 * x + 3 * y1 * y1 - 6 * y1 * y2 + y1 * y3 - y1 * y + 2 * y2 * y2 + 2 * y2 * y - y3 * y; var d = 1.0 * x1 * x2 - x1 * x1 + x1 * x - x2 * x + y1 * y2 - y1 * y1 + y1 * y - y2 * y; // debug("coefficients: " + a / a + ", " + b / a + ", " + c / a + ", " + d / a); var roots = []; // Use the cubic solving algorithm solveCubic(a, b, c, d, roots); var zeroThreshold = 0.0000001; var params = []; for (var index = 0; index < 6; index += 2) { if (Math.abs(roots[index + 1]) < zeroThreshold && roots[index] >= 0 && roots[index] <= 1.0) { params.push(roots[index]); } } params.push(1.0); params.push(0.0); var minDistanceSquared = -1; var curX, curY, distSquared; for (var i = 0; i < params.length; i++) { curX = Math.pow(1.0 - params[i], 2.0) * x1 + 2.0 * (1 - params[i]) * params[i] * x2 + params[i] * params[i] * x3; curY = Math.pow(1 - params[i], 2.0) * y1 + 2 * (1.0 - params[i]) * params[i] * y2 + params[i] * params[i] * y3; distSquared = Math.pow(curX - x, 2) + Math.pow(curY - y, 2); // debug('distance for param ' + params[i] + ": " + Math.sqrt(distSquared)); if (minDistanceSquared >= 0) { if (distSquared < minDistanceSquared) { minDistanceSquared = distSquared; } } else { minDistanceSquared = distSquared; } } return minDistanceSquared; }; var sqdistToFiniteLine = function sqdistToFiniteLine(x, y, x1, y1, x2, y2) { var offset = [x - x1, y - y1]; var line = [x2 - x1, y2 - y1]; var lineSq = line[0] * line[0] + line[1] * line[1]; var hypSq = offset[0] * offset[0] + offset[1] * offset[1]; var dotProduct = offset[0] * line[0] + offset[1] * line[1]; var adjSq = dotProduct * dotProduct / lineSq; if (dotProduct < 0) { return hypSq; } if (adjSq > lineSq) { return (x - x2) * (x - x2) + (y - y2) * (y - y2); } return hypSq - adjSq; }; var pointInsidePolygonPoints = function pointInsidePolygonPoints(x, y, points) { var x1, y1, x2, y2; var y3; // Intersect with vertical line through (x, y) var up = 0; // let down = 0; for (var i = 0; i < points.length / 2; i++) { x1 = points[i * 2]; y1 = points[i * 2 + 1]; if (i + 1 < points.length / 2) { x2 = points[(i + 1) * 2]; y2 = points[(i + 1) * 2 + 1]; } else { x2 = points[(i + 1 - points.length / 2) * 2]; y2 = points[(i + 1 - points.length / 2) * 2 + 1]; } if (x1 == x && x2 == x) ; else if (x1 >= x && x >= x2 || x1 <= x && x <= x2) { y3 = (x - x1) / (x2 - x1) * (y2 - y1) + y1; if (y3 > y) { up++; } // if( y3 < y ){ // down++; // } } else { continue; } } if (up % 2 === 0) { return false; } else { return true; } }; var pointInsidePolygon = function pointInsidePolygon(x, y, basePoints, centerX, centerY, width, height, direction, padding) { var transformedPoints = new Array(basePoints.length); // Gives negative angle var angle; if (direction[0] != null) { angle = Math.atan(direction[1] / direction[0]); if (direction[0] < 0) { angle = angle + Math.PI / 2; } else { angle = -angle - Math.PI / 2; } } else { angle = direction; } var cos = Math.cos(-angle); var sin = Math.sin(-angle); // console.log("base: " + basePoints); for (var i = 0; i < transformedPoints.length / 2; i++) { transformedPoints[i * 2] = width / 2 * (basePoints[i * 2] * cos - basePoints[i * 2 + 1] * sin); transformedPoints[i * 2 + 1] = height / 2 * (basePoints[i * 2 + 1] * cos + basePoints[i * 2] * sin); transformedPoints[i * 2] += centerX; transformedPoints[i * 2 + 1] += centerY; } var points; if (padding > 0) { var expandedLineSet = expandPolygon(transformedPoints, -padding); points = joinLines(expandedLineSet); } else { points = transformedPoints; } return pointInsidePolygonPoints(x, y, points); }; var pointInsideRoundPolygon = function pointInsideRoundPolygon(x, y, basePoints, centerX, centerY, width, height, corners) { var cutPolygonPoints = new Array(basePoints.length * 2); for (var i = 0; i < corners.length; i++) { var corner = corners[i]; cutPolygonPoints[i * 4 + 0] = corner.startX; cutPolygonPoints[i * 4 + 1] = corner.startY; cutPolygonPoints[i * 4 + 2] = corner.stopX; cutPolygonPoints[i * 4 + 3] = corner.stopY; var squaredDistance = Math.pow(corner.cx - x, 2) + Math.pow(corner.cy - y, 2); if (squaredDistance <= Math.pow(corner.radius, 2)) { return true; } } return pointInsidePolygonPoints(x, y, cutPolygonPoints); }; var joinLines = function joinLines(lineSet) { var vertices = new Array(lineSet.length / 2); var currentLineStartX, currentLineStartY, currentLineEndX, currentLineEndY; var nextLineStartX, nextLineStartY, nextLineEndX, nextLineEndY; for (var i = 0; i < lineSet.length / 4; i++) { currentLineStartX = lineSet[i * 4]; currentLineStartY = lineSet[i * 4 + 1]; currentLineEndX = lineSet[i * 4 + 2]; currentLineEndY = lineSet[i * 4 + 3]; if (i < lineSet.length / 4 - 1) { nextLineStartX = lineSet[(i + 1) * 4]; nextLineStartY = lineSet[(i + 1) * 4 + 1]; nextLineEndX = lineSet[(i + 1) * 4 + 2]; nextLineEndY = lineSet[(i + 1) * 4 + 3]; } else { nextLineStartX = lineSet[0]; nextLineStartY = lineSet[1]; nextLineEndX = lineSet[2]; nextLineEndY = lineSet[3]; } var intersection = finiteLinesIntersect(currentLineStartX, currentLineStartY, currentLineEndX, currentLineEndY, nextLineStartX, nextLineStartY, nextLineEndX, nextLineEndY, true); vertices[i * 2] = intersection[0]; vertices[i * 2 + 1] = intersection[1]; } return vertices; }; var expandPolygon = function expandPolygon(points, pad) { var expandedLineSet = new Array(points.length * 2); var currentPointX, currentPointY, nextPointX, nextPointY; for (var i = 0; i < points.length / 2; i++) { currentPointX = points[i * 2]; currentPointY = points[i * 2 + 1]; if (i < points.length / 2 - 1) { nextPointX = points[(i + 1) * 2]; nextPointY = points[(i + 1) * 2 + 1]; } else { nextPointX = points[0]; nextPointY = points[1]; } // Current line: [currentPointX, currentPointY] to [nextPointX, nextPointY] // Assume CCW polygon winding var offsetX = nextPointY - currentPointY; var offsetY = -(nextPointX - currentPointX); // Normalize var offsetLength = Math.sqrt(offsetX * offsetX + offsetY * offsetY); var normalizedOffsetX = offsetX / offsetLength; var normalizedOffsetY = offsetY / offsetLength; expandedLineSet[i * 4] = currentPointX + normalizedOffsetX * pad; expandedLineSet[i * 4 + 1] = currentPointY + normalizedOffsetY * pad; expandedLineSet[i * 4 + 2] = nextPointX + normalizedOffsetX * pad; expandedLineSet[i * 4 + 3] = nextPointY + normalizedOffsetY * pad; } return expandedLineSet; }; var intersectLineEllipse = function intersectLineEllipse(x, y, centerX, centerY, ellipseWradius, ellipseHradius) { var dispX = centerX - x; var dispY = centerY - y; dispX /= ellipseWradius; dispY /= ellipseHradius; var len = Math.sqrt(dispX * dispX + dispY * dispY); var newLength = len - 1; if (newLength < 0) { return []; } var lenProportion = newLength / len; return [(centerX - x) * lenProportion + x, (centerY - y) * lenProportion + y]; }; var checkInEllipse = function checkInEllipse(x, y, width, height, centerX, centerY, padding) { x -= centerX; y -= centerY; x /= width / 2 + padding; y /= height / 2 + padding; return x * x + y * y <= 1; }; // Returns intersections of increasing distance from line's start point var intersectLineCircle = function intersectLineCircle(x1, y1, x2, y2, centerX, centerY, radius) { // Calculate d, direction vector of line var d = [x2 - x1, y2 - y1]; // Direction vector of line var f = [x1 - centerX, y1 - centerY]; var a = d[0] * d[0] + d[1] * d[1]; var b = 2 * (f[0] * d[0] + f[1] * d[1]); var c = f[0] * f[0] + f[1] * f[1] - radius * radius; var discriminant = b * b - 4 * a * c; if (discriminant < 0) { return []; } var t1 = (-b + Math.sqrt(discriminant)) / (2 * a); var t2 = (-b - Math.sqrt(discriminant)) / (2 * a); var tMin = Math.min(t1, t2); var tMax = Math.max(t1, t2); var inRangeParams = []; if (tMin >= 0 && tMin <= 1) { inRangeParams.push(tMin); } if (tMax >= 0 && tMax <= 1) { inRangeParams.push(tMax); } if (inRangeParams.length === 0) { return []; } var nearIntersectionX = inRangeParams[0] * d[0] + x1; var nearIntersectionY = inRangeParams[0] * d[1] + y1; if (inRangeParams.length > 1) { if (inRangeParams[0] == inRangeParams[1]) { return [nearIntersectionX, nearIntersectionY]; } else { var farIntersectionX = inRangeParams[1] * d[0] + x1; var farIntersectionY = inRangeParams[1] * d[1] + y1; return [nearIntersectionX, nearIntersectionY, farIntersectionX, farIntersectionY]; } } else { return [nearIntersectionX, nearIntersectionY]; } }; var midOfThree = function midOfThree(a, b, c) { if (b <= a && a <= c || c <= a && a <= b) { return a; } else if (a <= b && b <= c || c <= b && b <= a) { return b; } else { return c; } }; // (x1,y1)=>(x2,y2) intersect with (x3,y3)=>(x4,y4) var finiteLinesIntersect = function finiteLinesIntersect(x1, y1, x2, y2, x3, y3, x4, y4, infiniteLines) { var dx13 = x1 - x3; var dx21 = x2 - x1; var dx43 = x4 - x3; var dy13 = y1 - y3; var dy21 = y2 - y1; var dy43 = y4 - y3; var ua_t = dx43 * dy13 - dy43 * dx13; var ub_t = dx21 * dy13 - dy21 * dx13; var u_b = dy43 * dx21 - dx43 * dy21; if (u_b !== 0) { var ua = ua_t / u_b; var ub = ub_t / u_b; var flptThreshold = 0.001; var _min = 0 - flptThreshold; var _max = 1 + flptThreshold; if (_min <= ua && ua <= _max && _min <= ub && ub <= _max) { return [x1 + ua * dx21, y1 + ua * dy21]; } else { if (!infiniteLines) { return []; } else { return [x1 + ua * dx21, y1 + ua * dy21]; } } } else { if (ua_t === 0 || ub_t === 0) { // Parallel, coincident lines. Check if overlap // Check endpoint of second line if (midOfThree(x1, x2, x4) === x4) { return [x4, y4]; } // Check start point of second line if (midOfThree(x1, x2, x3) === x3) { return [x3, y3]; } // Endpoint of first line if (midOfThree(x3, x4, x2) === x2) { return [x2, y2]; } return []; } else { // Parallel, non-coincident return []; } } }; // math.polygonIntersectLine( x, y, basePoints, centerX, centerY, width, height, padding ) // intersect a node polygon (pts transformed) // // math.polygonIntersectLine( x, y, basePoints, centerX, centerY ) // intersect the points (no transform) var polygonIntersectLine = function polygonIntersectLine(x, y, basePoints, centerX, centerY, width, height, padding) { var intersections = []; var intersection; var transformedPoints = new Array(basePoints.length); var doTransform = true; if (width == null) { doTransform = false; } var points; if (doTransform) { for (var i = 0; i < transformedPoints.length / 2; i++) { transformedPoints[i * 2] = basePoints[i * 2] * width + centerX; transformedPoints[i * 2 + 1] = basePoints[i * 2 + 1] * height + centerY; } if (padding > 0) { var expandedLineSet = expandPolygon(transformedPoints, -padding); points = joinLines(expandedLineSet); } else { points = transformedPoints; } } else { points = basePoints; } var currentX, currentY, nextX, nextY; for (var _i2 = 0; _i2 < points.length / 2; _i2++) { currentX = points[_i2 * 2]; currentY = points[_i2 * 2 + 1]; if (_i2 < points.length / 2 - 1) { nextX = points[(_i2 + 1) * 2]; nextY = points[(_i2 + 1) * 2 + 1]; } else { nextX = points[0]; nextY = points[1]; } intersection = finiteLinesIntersect(x, y, centerX, centerY, currentX, currentY, nextX, nextY); if (intersection.length !== 0) { intersections.push(intersection[0], intersection[1]); } } return intersections; }; var roundPolygonIntersectLine = function roundPolygonIntersectLine(x, y, basePoints, centerX, centerY, width, height, padding, corners) { var intersections = []; var intersection; var lines = new Array(basePoints.length * 2); corners.forEach(function (corner, i) { if (i === 0) { lines[lines.length - 2] = corner.startX; lines[lines.length - 1] = corner.startY; } else { lines[i * 4 - 2] = corner.startX; lines[i * 4 - 1] = corner.startY; } lines[i * 4] = corner.stopX; lines[i * 4 + 1] = corner.stopY; intersection = intersectLineCircle(x, y, centerX, centerY, corner.cx, corner.cy, corner.radius); if (intersection.length !== 0) { intersections.push(intersection[0], intersection[1]); } }); for (var i = 0; i < lines.length / 4; i++) { intersection = finiteLinesIntersect(x, y, centerX, centerY, lines[i * 4], lines[i * 4 + 1], lines[i * 4 + 2], lines[i * 4 + 3], false); if (intersection.length !== 0) { intersections.push(intersection[0], intersection[1]); } } if (intersections.length > 2) { var lowestIntersection = [intersections[0], intersections[1]]; var lowestSquaredDistance = Math.pow(lowestIntersection[0] - x, 2) + Math.pow(lowestIntersection[1] - y, 2); for (var _i3 = 1; _i3 < intersections.length / 2; _i3++) { var squaredDistance = Math.pow(intersections[_i3 * 2] - x, 2) + Math.pow(intersections[_i3 * 2 + 1] - y, 2); if (squaredDistance <= lowestSquaredDistance) { lowestIntersection[0] = intersections[_i3 * 2]; lowestIntersection[1] = intersections[_i3 * 2 + 1]; lowestSquaredDistance = squaredDistance; } } return lowestIntersection; } return intersections; }; var shortenIntersection = function shortenIntersection(intersection, offset, amount) { var disp = [intersection[0] - offset[0], intersection[1] - offset[1]]; var length = Math.sqrt(disp[0] * disp[0] + disp[1] * disp[1]); var lenRatio = (length - amount) / length; if (lenRatio < 0) { lenRatio = 0.00001; } return [offset[0] + lenRatio * disp[0], offset[1] + lenRatio * disp[1]]; }; var generateUnitNgonPointsFitToSquare = function generateUnitNgonPointsFitToSquare(sides, rotationRadians) { var points = generateUnitNgonPoints(sides, rotationRadians); points = fitPolygonToSquare(points); return points; }; var fitPolygonToSquare = function fitPolygonToSquare(points) { var x, y; var sides = points.length / 2; var minX = Infinity, minY = Infinity, maxX = -Infinity, maxY = -Infinity; for (var i = 0; i < sides; i++) { x = points[2 * i]; y = points[2 * i + 1]; minX = Math.min(minX, x); maxX = Math.max(maxX, x); minY = Math.min(minY, y); maxY = Math.max(maxY, y); } // stretch factors var sx = 2 / (maxX - minX); var sy = 2 / (maxY - minY); for (var _i4 = 0; _i4 < sides; _i4++) { x = points[2 * _i4] = points[2 * _i4] * sx; y = points[2 * _i4 + 1] = points[2 * _i4 + 1] * sy; minX = Math.min(minX, x); maxX = Math.max(maxX, x); minY = Math.min(minY, y); maxY = Math.max(maxY, y); } if (minY < -1) { for (var _i5 = 0; _i5 < sides; _i5++) { y = points[2 * _i5 + 1] = points[2 * _i5 + 1] + (-1 - minY); } } return points; }; var generateUnitNgonPoints = function generateUnitNgonPoints(sides, rotationRadians) { var increment = 1.0 / sides * 2 * Math.PI; var startAngle = sides % 2 === 0 ? Math.PI / 2.0 + increment / 2.0 : Math.PI / 2.0; startAngle += rotationRadians; var points = new Array(sides * 2); var currentAngle; for (var i = 0; i < sides; i++) { currentAngle = i * increment + startAngle; points[2 * i] = Math.cos(currentAngle); // x points[2 * i + 1] = Math.sin(-currentAngle); // y } return points; }; // Set the default radius, unless half of width or height is smaller than default var getRoundRectangleRadius = function getRoundRectangleRadius(width, height) { return Math.min(width / 4, height / 4, 8); }; // Set the default radius var getRoundPolygonRadius = function getRoundPolygonRadius(width, height) { return Math.min(width / 10, height / 10, 8); }; var getCutRectangleCornerLength = function getCutRectangleCornerLength() { return 8; }; var bezierPtsToQuadCoeff = function bezierPtsToQuadCoeff(p0, p1, p2) { return [p0 - 2 * p1 + p2, 2 * (p1 - p0), p0]; }; // get curve width, height, and control point position offsets as a percentage of node height / width var getBarrelCurveConstants = function getBarrelCurveConstants(width, height) { return { heightOffset: Math.min(15, 0.05 * height), widthOffset: Math.min(100, 0.25 * width), ctrlPtOffsetPct: 0.05 }; }; var pageRankDefaults = defaults$g({ dampingFactor: 0.8, precision: 0.000001, iterations: 200, weight: function weight(edge) { return 1; } }); var elesfn$o = { pageRank: function pageRank(options) { var _pageRankDefaults = pageRankDefaults(options), dampingFactor = _pageRankDefaults.dampingFactor, precision = _pageRankDefaults.precision, iterations = _pageRankDefaults.iterations, weight = _pageRankDefaults.weight; var cy = this._private.cy; var _this$byGroup = this.byGroup(), nodes = _this$byGroup.nodes, edges = _this$byGroup.edges; var numNodes = nodes.length; var numNodesSqd = numNodes * numNodes; var numEdges = edges.length; // Construct transposed adjacency matrix // First lets have a zeroed matrix of the right size // We'll also keep track of the sum of each column var matrix = new Array(numNodesSqd); var columnSum = new Array(numNodes); var additionalProb = (1 - dampingFactor) / numNodes; // Create null matrix for (var i = 0; i < numNodes; i++) { for (var j = 0; j < numNodes; j++) { var n = i * numNodes + j; matrix[n] = 0; } columnSum[i] = 0; } // Now, process edges for (var _i = 0; _i < numEdges; _i++) { var edge = edges[_i]; var srcId = edge.data('source'); var tgtId = edge.data('target'); // Don't include loops in the matrix if (srcId === tgtId) { continue; } var s = nodes.indexOfId(srcId); var t = nodes.indexOfId(tgtId); var w = weight(edge); var _n = t * numNodes + s; // Update matrix matrix[_n] += w; // Update column sum columnSum[s] += w; } // Add additional probability based on damping factor // Also, take into account columns that have sum = 0 var p = 1.0 / numNodes + additionalProb; // Shorthand // Traverse matrix, column by column for (var _j = 0; _j < numNodes; _j++) { if (columnSum[_j] === 0) { // No 'links' out from node jth, assume equal probability for each possible node for (var _i2 = 0; _i2 < numNodes; _i2++) { var _n2 = _i2 * numNodes + _j; matrix[_n2] = p; } } else { // Node jth has outgoing link, compute normalized probabilities for (var _i3 = 0; _i3 < numNodes; _i3++) { var _n3 = _i3 * numNodes + _j; matrix[_n3] = matrix[_n3] / columnSum[_j] + additionalProb; } } } // Compute dominant eigenvector using power method var eigenvector = new Array(numNodes); var temp = new Array(numNodes); var previous; // Start with a vector of all 1's // Also, initialize a null vector which will be used as shorthand for (var _i4 = 0; _i4 < numNodes; _i4++) { eigenvector[_i4] = 1; } for (var iter = 0; iter < iterations; iter++) { // Temp array with all 0's for (var _i5 = 0; _i5 < numNodes; _i5++) { temp[_i5] = 0; } // Multiply matrix with previous result for (var _i6 = 0; _i6 < numNodes; _i6++) { for (var _j2 = 0; _j2 < numNodes; _j2++) { var _n4 = _i6 * numNodes + _j2; temp[_i6] += matrix[_n4] * eigenvector[_j2]; } } inPlaceSumNormalize(temp); previous = eigenvector; eigenvector = temp; temp = previous; var diff = 0; // Compute difference (squared module) of both vectors for (var _i7 = 0; _i7 < numNodes; _i7++) { var delta = previous[_i7] - eigenvector[_i7]; diff += delta * delta; } // If difference is less than the desired threshold, stop iterating if (diff < precision) { break; } } // Construct result var res = { rank: function rank(node) { node = cy.collection(node)[0]; return eigenvector[nodes.indexOf(node)]; } }; return res; } // pageRank }; // elesfn var defaults$f = defaults$g({ root: null, weight: function weight(edge) { return 1; }, directed: false, alpha: 0 }); var elesfn$n = { degreeCentralityNormalized: function degreeCentralityNormalized(options) { options = defaults$f(options); var cy = this.cy(); var nodes = this.nodes(); var numNodes = nodes.length; if (!options.directed) { var degrees = {}; var maxDegree = 0; for (var i = 0; i < numNodes; i++) { var node = nodes[i]; // add current node to the current options object and call degreeCentrality options.root = node; var currDegree = this.degreeCentrality(options); if (maxDegree < currDegree.degree) { maxDegree = currDegree.degree; } degrees[node.id()] = currDegree.degree; } return { degree: function degree(node) { if (maxDegree === 0) { return 0; } if (string(node)) { // from is a selector string node = cy.filter(node); } return degrees[node.id()] / maxDegree; } }; } else { var indegrees = {}; var outdegrees = {}; var maxIndegree = 0; var maxOutdegree = 0; for (var _i = 0; _i < numNodes; _i++) { var _node = nodes[_i]; var id = _node.id(); // add current node to the current options object and call degreeCentrality options.root = _node; var _currDegree = this.degreeCentrality(options); if (maxIndegree < _currDegree.indegree) maxIndegree = _currDegree.indegree; if (maxOutdegree < _currDegree.outdegree) maxOutdegree = _currDegree.outdegree; indegrees[id] = _currDegree.indegree; outdegrees[id] = _currDegree.outdegree; } return { indegree: function indegree(node) { if (maxIndegree == 0) { return 0; } if (string(node)) { // from is a selector string node = cy.filter(node); } return indegrees[node.id()] / maxIndegree; }, outdegree: function outdegree(node) { if (maxOutdegree === 0) { return 0; } if (string(node)) { // from is a selector string node = cy.filter(node); } return outdegrees[node.id()] / maxOutdegree; } }; } }, // degreeCentralityNormalized // Implemented from the algorithm in Opsahl's paper // "Node centrality in weighted networks: Generalizing degree and shortest paths" // check the heading 2 "Degree" degreeCentrality: function degreeCentrality(options) { options = defaults$f(options); var cy = this.cy(); var callingEles = this; var _options = options, root = _options.root, weight = _options.weight, directed = _options.directed, alpha = _options.alpha; root = cy.collection(root)[0]; if (!directed) { var connEdges = root.connectedEdges().intersection(callingEles); var k = connEdges.length; var s = 0; // Now, sum edge weights for (var i = 0; i < connEdges.length; i++) { s += weight(connEdges[i]); } return { degree: Math.pow(k, 1 - alpha) * Math.pow(s, alpha) }; } else { var edges = root.connectedEdges(); var incoming = edges.filter(function (edge) { return edge.target().same(root) && callingEles.has(edge); }); var outgoing = edges.filter(function (edge) { return edge.source().same(root) && callingEles.has(edge); }); var k_in = incoming.length; var k_out = outgoing.length; var s_in = 0; var s_out = 0; // Now, sum incoming edge weights for (var _i2 = 0; _i2 < incoming.length; _i2++) { s_in += weight(incoming[_i2]); } // Now, sum outgoing edge weights for (var _i3 = 0; _i3 < outgoing.length; _i3++) { s_out += weight(outgoing[_i3]); } return { indegree: Math.pow(k_in, 1 - alpha) * Math.pow(s_in, alpha), outdegree: Math.pow(k_out, 1 - alpha) * Math.pow(s_out, alpha) }; } } // degreeCentrality }; // elesfn // nice, short mathematical alias elesfn$n.dc = elesfn$n.degreeCentrality; elesfn$n.dcn = elesfn$n.degreeCentralityNormalised = elesfn$n.degreeCentralityNormalized; var defaults$e = defaults$g({ harmonic: true, weight: function weight() { return 1; }, directed: false, root: null }); var elesfn$m = { closenessCentralityNormalized: function closenessCentralityNormalized(options) { var _defaults = defaults$e(options), harmonic = _defaults.harmonic, weight = _defaults.weight, directed = _defaults.directed; var cy = this.cy(); var closenesses = {}; var maxCloseness = 0; var nodes = this.nodes(); var fw = this.floydWarshall({ weight: weight, directed: directed }); // Compute closeness for every node and find the maximum closeness for (var i = 0; i < nodes.length; i++) { var currCloseness = 0; var node_i = nodes[i]; for (var j = 0; j < nodes.length; j++) { if (i !== j) { var d = fw.distance(node_i, nodes[j]); if (harmonic) { currCloseness += 1 / d; } else { currCloseness += d; } } } if (!harmonic) { currCloseness = 1 / currCloseness; } if (maxCloseness < currCloseness) { maxCloseness = currCloseness; } closenesses[node_i.id()] = currCloseness; } return { closeness: function closeness(node) { if (maxCloseness == 0) { return 0; } if (string(node)) { // from is a selector string node = cy.filter(node)[0].id(); } else { // from is a node node = node.id(); } return closenesses[node] / maxCloseness; } }; }, // Implemented from pseudocode from wikipedia closenessCentrality: function closenessCentrality(options) { var _defaults2 = defaults$e(options), root = _defaults2.root, weight = _defaults2.weight, directed = _defaults2.directed, harmonic = _defaults2.harmonic; root = this.filter(root)[0]; // we need distance from this node to every other node var dijkstra = this.dijkstra({ root: root, weight: weight, directed: directed }); var totalDistance = 0; var nodes = this.nodes(); for (var i = 0; i < nodes.length; i++) { var n = nodes[i]; if (!n.same(root)) { var d = dijkstra.distanceTo(n); if (harmonic) { totalDistance += 1 / d; } else { totalDistance += d; } } } return harmonic ? totalDistance : 1 / totalDistance; } // closenessCentrality }; // elesfn // nice, short mathematical alias elesfn$m.cc = elesfn$m.closenessCentrality; elesfn$m.ccn = elesfn$m.closenessCentralityNormalised = elesfn$m.closenessCentralityNormalized; var defaults$d = defaults$g({ weight: null, directed: false }); var elesfn$l = { // Implemented from the algorithm in the paper "On Variants of Shortest-Path Betweenness Centrality and their Generic Computation" by Ulrik Brandes betweennessCentrality: function betweennessCentrality(options) { var _defaults = defaults$d(options), directed = _defaults.directed, weight = _defaults.weight; var weighted = weight != null; var cy = this.cy(); // starting var V = this.nodes(); var A = {}; var _C = {}; var max = 0; var C = { set: function set(key, val) { _C[key] = val; if (val > max) { max = val; } }, get: function get(key) { return _C[key]; } }; // A contains the neighborhoods of every node for (var i = 0; i < V.length; i++) { var v = V[i]; var vid = v.id(); if (directed) { A[vid] = v.outgoers().nodes(); // get outgoers of every node } else { A[vid] = v.openNeighborhood().nodes(); // get neighbors of every node } C.set(vid, 0); } var _loop = function _loop(s) { var sid = V[s].id(); var S = []; // stack var P = {}; var g = {}; var d = {}; var Q = new heap(function (a, b) { return d[a] - d[b]; }); // queue // init dictionaries for (var _i = 0; _i < V.length; _i++) { var _vid = V[_i].id(); P[_vid] = []; g[_vid] = 0; d[_vid] = Infinity; } g[sid] = 1; // sigma d[sid] = 0; // distance to s Q.push(sid); while (!Q.empty()) { var _v = Q.pop(); S.push(_v); if (weighted) { for (var j = 0; j < A[_v].length; j++) { var w = A[_v][j]; var vEle = cy.getElementById(_v); var edge = void 0; if (vEle.edgesTo(w).length > 0) { edge = vEle.edgesTo(w)[0]; } else { edge = w.edgesTo(vEle)[0]; } var edgeWeight = weight(edge); w = w.id(); if (d[w] > d[_v] + edgeWeight) { d[w] = d[_v] + edgeWeight; if (Q.nodes.indexOf(w) < 0) { //if w is not in Q Q.push(w); } else { // update position if w is in Q Q.updateItem(w); } g[w] = 0; P[w] = []; } if (d[w] == d[_v] + edgeWeight) { g[w] = g[w] + g[_v]; P[w].push(_v); } } } else { for (var _j = 0; _j < A[_v].length; _j++) { var _w = A[_v][_j].id(); if (d[_w] == Infinity) { Q.push(_w); d[_w] = d[_v] + 1; } if (d[_w] == d[_v] + 1) { g[_w] = g[_w] + g[_v]; P[_w].push(_v); } } } } var e = {}; for (var _i2 = 0; _i2 < V.length; _i2++) { e[V[_i2].id()] = 0; } while (S.length > 0) { var _w2 = S.pop(); for (var _j2 = 0; _j2 < P[_w2].length; _j2++) { var _v2 = P[_w2][_j2]; e[_v2] = e[_v2] + g[_v2] / g[_w2] * (1 + e[_w2]); } if (_w2 != V[s].id()) { C.set(_w2, C.get(_w2) + e[_w2]); } } }; for (var s = 0; s < V.length; s++) { _loop(s); } var ret = { betweenness: function betweenness(node) { var id = cy.collection(node).id(); return C.get(id); }, betweennessNormalized: function betweennessNormalized(node) { if (max == 0) { return 0; } var id = cy.collection(node).id(); return C.get(id) / max; } }; // alias ret.betweennessNormalised = ret.betweennessNormalized; return ret; } // betweennessCentrality }; // elesfn // nice, short mathematical alias elesfn$l.bc = elesfn$l.betweennessCentrality; // Implemented by Zoe Xi @zoexi for GSOC 2016 /* eslint-disable no-unused-vars */ var defaults$c = defaults$g({ expandFactor: 2, // affects time of computation and cluster granularity to some extent: M * M inflateFactor: 2, // affects cluster granularity (the greater the value, the more clusters): M(i,j) / E(j) multFactor: 1, // optional self loops for each node. Use a neutral value to improve cluster computations. maxIterations: 20, // maximum number of iterations of the MCL algorithm in a single run attributes: [ // attributes/features used to group nodes, ie. similarity values between nodes function (edge) { return 1; }] }); /* eslint-enable */ var setOptions$3 = function setOptions(options) { return defaults$c(options); }; /* eslint-enable */ var getSimilarity$1 = function getSimilarity(edge, attributes) { var total = 0; for (var i = 0; i < attributes.length; i++) { total += attributes[i](edge); } return total; }; var addLoops = function addLoops(M, n, val) { for (var i = 0; i < n; i++) { M[i * n + i] = val; } }; var normalize = function normalize(M, n) { var sum; for (var col = 0; col < n; col++) { sum = 0; for (var row = 0; row < n; row++) { sum += M[row * n + col]; } for (var _row = 0; _row < n; _row++) { M[_row * n + col] = M[_row * n + col] / sum; } } }; // TODO: blocked matrix multiplication? var mmult = function mmult(A, B, n) { var C = new Array(n * n); for (var i = 0; i < n; i++) { for (var j = 0; j < n; j++) { C[i * n + j] = 0; } for (var k = 0; k < n; k++) { for (var _j = 0; _j < n; _j++) { C[i * n + _j] += A[i * n + k] * B[k * n + _j]; } } } return C; }; var expand = function expand(M, n, expandFactor /** power **/) { var _M = M.slice(0); for (var p = 1; p < expandFactor; p++) { M = mmult(M, _M, n); } return M; }; var inflate = function inflate(M, n, inflateFactor /** r **/) { var _M = new Array(n * n); // M(i,j) ^ inflatePower for (var i = 0; i < n * n; i++) { _M[i] = Math.pow(M[i], inflateFactor); } normalize(_M, n); return _M; }; var hasConverged = function hasConverged(M, _M, n2, roundFactor) { // Check that both matrices have the same elements (i,j) for (var i = 0; i < n2; i++) { var v1 = Math.round(M[i] * Math.pow(10, roundFactor)) / Math.pow(10, roundFactor); // truncate to 'roundFactor' decimal places var v2 = Math.round(_M[i] * Math.pow(10, roundFactor)) / Math.pow(10, roundFactor); if (v1 !== v2) { return false; } } return true; }; var assign$2 = function assign(M, n, nodes, cy) { var clusters = []; for (var i = 0; i < n; i++) { var cluster = []; for (var j = 0; j < n; j++) { // Row-wise attractors and elements that they attract belong in same cluster if (Math.round(M[i * n + j] * 1000) / 1000 > 0) { cluster.push(nodes[j]); } } if (cluster.length !== 0) { clusters.push(cy.collection(cluster)); } } return clusters; }; var isDuplicate = function isDuplicate(c1, c2) { for (var i = 0; i < c1.length; i++) { if (!c2[i] || c1[i].id() !== c2[i].id()) { return false; } } return true; }; var removeDuplicates = function removeDuplicates(clusters) { for (var i = 0; i < clusters.length; i++) { for (var j = 0; j < clusters.length; j++) { if (i != j && isDuplicate(clusters[i], clusters[j])) { clusters.splice(j, 1); } } } return clusters; }; var markovClustering = function markovClustering(options) { var nodes = this.nodes(); var edges = this.edges(); var cy = this.cy(); // Set parameters of algorithm: var opts = setOptions$3(options); // Map each node to its position in node array var id2position = {}; for (var i = 0; i < nodes.length; i++) { id2position[nodes[i].id()] = i; } // Generate stochastic matrix M from input graph G (should be symmetric/undirected) var n = nodes.length, n2 = n * n; var M = new Array(n2), _M; for (var _i = 0; _i < n2; _i++) { M[_i] = 0; } for (var e = 0; e < edges.length; e++) { var edge = edges[e]; var _i2 = id2position[edge.source().id()]; var j = id2position[edge.target().id()]; var sim = getSimilarity$1(edge, opts.attributes); M[_i2 * n + j] += sim; // G should be symmetric and undirected M[j * n + _i2] += sim; } // Begin Markov cluster algorithm // Step 1: Add self loops to each node, ie. add multFactor to matrix diagonal addLoops(M, n, opts.multFactor); // Step 2: M = normalize( M ); normalize(M, n); var isStillMoving = true; var iterations = 0; while (isStillMoving && iterations < opts.maxIterations) { isStillMoving = false; // Step 3: _M = expand(M, n, opts.expandFactor); // Step 4: M = inflate(_M, n, opts.inflateFactor); // Step 5: check to see if ~steady state has been reached if (!hasConverged(M, _M, n2, 4)) { isStillMoving = true; } iterations++; } // Build clusters from matrix var clusters = assign$2(M, n, nodes, cy); // Remove duplicate clusters due to symmetry of graph and M matrix clusters = removeDuplicates(clusters); return clusters; }; var markovClustering$1 = { markovClustering: markovClustering, mcl: markovClustering }; // Common distance metrics for clustering algorithms var identity$1 = function identity(x) { return x; }; var absDiff = function absDiff(p, q) { return Math.abs(q - p); }; var addAbsDiff = function addAbsDiff(total, p, q) { return total + absDiff(p, q); }; var addSquaredDiff = function addSquaredDiff(total, p, q) { return total + Math.pow(q - p, 2); }; var sqrt = function sqrt(x) { return Math.sqrt(x); }; var maxAbsDiff = function maxAbsDiff(currentMax, p, q) { return Math.max(currentMax, absDiff(p, q)); }; var getDistance = function getDistance(length, getP, getQ, init, visit) { var post = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : identity$1; var ret = init; var p, q; for (var dim = 0; dim < length; dim++) { p = getP(dim); q = getQ(dim); ret = visit(ret, p, q); } return post(ret); }; var distances = { euclidean: function euclidean(length, getP, getQ) { if (length >= 2) { return getDistance(length, getP, getQ, 0, addSquaredDiff, sqrt); } else { // for single attr case, more efficient to avoid sqrt return getDistance(length, getP, getQ, 0, addAbsDiff); } }, squaredEuclidean: function squaredEuclidean(length, getP, getQ) { return getDistance(length, getP, getQ, 0, addSquaredDiff); }, manhattan: function manhattan(length, getP, getQ) { return getDistance(length, getP, getQ, 0, addAbsDiff); }, max: function max(length, getP, getQ) { return getDistance(length, getP, getQ, -Infinity, maxAbsDiff); } }; // in case the user accidentally doesn't use camel case distances['squared-euclidean'] = distances['squaredEuclidean']; distances['squaredeuclidean'] = distances['squaredEuclidean']; function clusteringDistance (method, length, getP, getQ, nodeP, nodeQ) { var impl; if (fn$6(method)) { impl = method; } else { impl = distances[method] || distances.euclidean; } if (length === 0 && fn$6(method)) { return impl(nodeP, nodeQ); } else { return impl(length, getP, getQ, nodeP, nodeQ); } } var defaults$b = defaults$g({ k: 2, m: 2, sensitivityThreshold: 0.0001, distance: 'euclidean', maxIterations: 10, attributes: [], testMode: false, testCentroids: null }); var setOptions$2 = function setOptions(options) { return defaults$b(options); }; var getDist = function getDist(type, node, centroid, attributes, mode) { var noNodeP = mode !== 'kMedoids'; var getP = noNodeP ? function (i) { return centroid[i]; } : function (i) { return attributes[i](centroid); }; var getQ = function getQ(i) { return attributes[i](node); }; var nodeP = centroid; var nodeQ = node; return clusteringDistance(type, attributes.length, getP, getQ, nodeP, nodeQ); }; var randomCentroids = function randomCentroids(nodes, k, attributes) { var ndim = attributes.length; var min = new Array(ndim); var max = new Array(ndim); var centroids = new Array(k); var centroid = null; // Find min, max values for each attribute dimension for (var i = 0; i < ndim; i++) { min[i] = nodes.min(attributes[i]).value; max[i] = nodes.max(attributes[i]).value; } // Build k centroids, each represented as an n-dim feature vector for (var c = 0; c < k; c++) { centroid = []; for (var _i = 0; _i < ndim; _i++) { centroid[_i] = Math.random() * (max[_i] - min[_i]) + min[_i]; // random initial value } centroids[c] = centroid; } return centroids; }; var classify = function classify(node, centroids, distance, attributes, type) { var min = Infinity; var index = 0; for (var i = 0; i < centroids.length; i++) { var dist = getDist(distance, node, centroids[i], attributes, type); if (dist < min) { min = dist; index = i; } } return index; }; var buildCluster = function buildCluster(centroid, nodes, assignment) { var cluster = []; var node = null; for (var n = 0; n < nodes.length; n++) { node = nodes[n]; if (assignment[node.id()] === centroid) { //console.log("Node " + node.id() + " is associated with medoid #: " + m); cluster.push(node); } } return cluster; }; var haveValuesConverged = function haveValuesConverged(v1, v2, sensitivityThreshold) { return Math.abs(v2 - v1) <= sensitivityThreshold; }; var haveMatricesConverged = function haveMatricesConverged(v1, v2, sensitivityThreshold) { for (var i = 0; i < v1.length; i++) { for (var j = 0; j < v1[i].length; j++) { var diff = Math.abs(v1[i][j] - v2[i][j]); if (diff > sensitivityThreshold) { return false; } } } return true; }; var seenBefore = function seenBefore(node, medoids, n) { for (var i = 0; i < n; i++) { if (node === medoids[i]) return true; } return false; }; var randomMedoids = function randomMedoids(nodes, k) { var medoids = new Array(k); // For small data sets, the probability of medoid conflict is greater, // so we need to check to see if we've already seen or chose this node before. if (nodes.length < 50) { // Randomly select k medoids from the n nodes for (var i = 0; i < k; i++) { var node = nodes[Math.floor(Math.random() * nodes.length)]; // If we've already chosen this node to be a medoid, don't choose it again (for small data sets). // Instead choose a different random node. while (seenBefore(node, medoids, i)) { node = nodes[Math.floor(Math.random() * nodes.length)]; } medoids[i] = node; } } else { // Relatively large data set, so pretty safe to not check and just select random nodes for (var _i2 = 0; _i2 < k; _i2++) { medoids[_i2] = nodes[Math.floor(Math.random() * nodes.length)]; } } return medoids; }; var findCost = function findCost(potentialNewMedoid, cluster, attributes) { var cost = 0; for (var n = 0; n < cluster.length; n++) { cost += getDist('manhattan', cluster[n], potentialNewMedoid, attributes, 'kMedoids'); } return cost; }; var kMeans = function kMeans(options) { var cy = this.cy(); var nodes = this.nodes(); var node = null; // Set parameters of algorithm: # of clusters, distance metric, etc. var opts = setOptions$2(options); // Begin k-means algorithm var clusters = new Array(opts.k); var assignment = {}; var centroids; // Step 1: Initialize centroid positions if (opts.testMode) { if (typeof opts.testCentroids === 'number') { // TODO: implement a seeded random number generator. opts.testCentroids; centroids = randomCentroids(nodes, opts.k, opts.attributes); } else if (_typeof(opts.testCentroids) === 'object') { centroids = opts.testCentroids; } else { centroids = randomCentroids(nodes, opts.k, opts.attributes); } } else { centroids = randomCentroids(nodes, opts.k, opts.attributes); } var isStillMoving = true; var iterations = 0; while (isStillMoving && iterations < opts.maxIterations) { // Step 2: Assign nodes to the nearest centroid for (var n = 0; n < nodes.length; n++) { node = nodes[n]; // Determine which cluster this node belongs to: node id => cluster # assignment[node.id()] = classify(node, centroids, opts.distance, opts.attributes, 'kMeans'); } // Step 3: For each of the k clusters, update its centroid isStillMoving = false; for (var c = 0; c < opts.k; c++) { // Get all nodes that belong to this cluster var cluster = buildCluster(c, nodes, assignment); if (cluster.length === 0) { // If cluster is empty, break out early & move to next cluster continue; } // Update centroids by calculating avg of all nodes within the cluster. var ndim = opts.attributes.length; var centroid = centroids[c]; // [ dim_1, dim_2, dim_3, ... , dim_n ] var newCentroid = new Array(ndim); var sum = new Array(ndim); for (var d = 0; d < ndim; d++) { sum[d] = 0.0; for (var i = 0; i < cluster.length; i++) { node = cluster[i]; sum[d] += opts.attributes[d](node); } newCentroid[d] = sum[d] / cluster.length; // Check to see if algorithm has converged, i.e. when centroids no longer change if (!haveValuesConverged(newCentroid[d], centroid[d], opts.sensitivityThreshold)) { isStillMoving = true; } } centroids[c] = newCentroid; clusters[c] = cy.collection(cluster); } iterations++; } return clusters; }; var kMedoids = function kMedoids(options) { var cy = this.cy(); var nodes = this.nodes(); var node = null; var opts = setOptions$2(options); // Begin k-medoids algorithm var clusters = new Array(opts.k); var medoids; var assignment = {}; var curCost; var minCosts = new Array(opts.k); // minimum cost configuration for each cluster // Step 1: Initialize k medoids if (opts.testMode) { if (typeof opts.testCentroids === 'number') ; else if (_typeof(opts.testCentroids) === 'object') { medoids = opts.testCentroids; } else { medoids = randomMedoids(nodes, opts.k); } } else { medoids = randomMedoids(nodes, opts.k); } var isStillMoving = true; var iterations = 0; while (isStillMoving && iterations < opts.maxIterations) { // Step 2: Assign nodes to the nearest medoid for (var n = 0; n < nodes.length; n++) { node = nodes[n]; // Determine which cluster this node belongs to: node id => cluster # assignment[node.id()] = classify(node, medoids, opts.distance, opts.attributes, 'kMedoids'); } isStillMoving = false; // Step 3: For each medoid m, and for each node associated with mediod m, // select the node with the lowest configuration cost as new medoid. for (var m = 0; m < medoids.length; m++) { // Get all nodes that belong to this medoid var cluster = buildCluster(m, nodes, assignment); if (cluster.length === 0) { // If cluster is empty, break out early & move to next cluster continue; } minCosts[m] = findCost(medoids[m], cluster, opts.attributes); // original cost // Select different medoid if its configuration has the lowest cost for (var _n = 0; _n < cluster.length; _n++) { curCost = findCost(cluster[_n], cluster, opts.attributes); if (curCost < minCosts[m]) { minCosts[m] = curCost; medoids[m] = cluster[_n]; isStillMoving = true; } } clusters[m] = cy.collection(cluster); } iterations++; } return clusters; }; var updateCentroids = function updateCentroids(centroids, nodes, U, weight, opts) { var numerator, denominator; for (var n = 0; n < nodes.length; n++) { for (var c = 0; c < centroids.length; c++) { weight[n][c] = Math.pow(U[n][c], opts.m); } } for (var _c = 0; _c < centroids.length; _c++) { for (var dim = 0; dim < opts.attributes.length; dim++) { numerator = 0; denominator = 0; for (var _n2 = 0; _n2 < nodes.length; _n2++) { numerator += weight[_n2][_c] * opts.attributes[dim](nodes[_n2]); denominator += weight[_n2][_c]; } centroids[_c][dim] = numerator / denominator; } } }; var updateMembership = function updateMembership(U, _U, centroids, nodes, opts) { // Save previous step for (var i = 0; i < U.length; i++) { _U[i] = U[i].slice(); } var sum, numerator, denominator; var pow = 2 / (opts.m - 1); for (var c = 0; c < centroids.length; c++) { for (var n = 0; n < nodes.length; n++) { sum = 0; for (var k = 0; k < centroids.length; k++) { // against all other centroids numerator = getDist(opts.distance, nodes[n], centroids[c], opts.attributes, 'cmeans'); denominator = getDist(opts.distance, nodes[n], centroids[k], opts.attributes, 'cmeans'); sum += Math.pow(numerator / denominator, pow); } U[n][c] = 1 / sum; } } }; var assign$1 = function assign(nodes, U, opts, cy) { var clusters = new Array(opts.k); for (var c = 0; c < clusters.length; c++) { clusters[c] = []; } var max; var index; for (var n = 0; n < U.length; n++) { // for each node (U is N x C matrix) max = -Infinity; index = -1; // Determine which cluster the node is most likely to belong in for (var _c2 = 0; _c2 < U[0].length; _c2++) { if (U[n][_c2] > max) { max = U[n][_c2]; index = _c2; } } clusters[index].push(nodes[n]); } // Turn every array into a collection of nodes for (var _c3 = 0; _c3 < clusters.length; _c3++) { clusters[_c3] = cy.collection(clusters[_c3]); } return clusters; }; var fuzzyCMeans = function fuzzyCMeans(options) { var cy = this.cy(); var nodes = this.nodes(); var opts = setOptions$2(options); // Begin fuzzy c-means algorithm var clusters; var centroids; var U; var _U; var weight; // Step 1: Initialize letiables. _U = new Array(nodes.length); for (var i = 0; i < nodes.length; i++) { // N x C matrix _U[i] = new Array(opts.k); } U = new Array(nodes.length); for (var _i3 = 0; _i3 < nodes.length; _i3++) { // N x C matrix U[_i3] = new Array(opts.k); } for (var _i4 = 0; _i4 < nodes.length; _i4++) { var total = 0; for (var j = 0; j < opts.k; j++) { U[_i4][j] = Math.random(); total += U[_i4][j]; } for (var _j = 0; _j < opts.k; _j++) { U[_i4][_j] = U[_i4][_j] / total; } } centroids = new Array(opts.k); for (var _i5 = 0; _i5 < opts.k; _i5++) { centroids[_i5] = new Array(opts.attributes.length); } weight = new Array(nodes.length); for (var _i6 = 0; _i6 < nodes.length; _i6++) { // N x C matrix weight[_i6] = new Array(opts.k); } // end init FCM var isStillMoving = true; var iterations = 0; while (isStillMoving && iterations < opts.maxIterations) { isStillMoving = false; // Step 2: Calculate the centroids for each step. updateCentroids(centroids, nodes, U, weight, opts); // Step 3: Update the partition matrix U. updateMembership(U, _U, centroids, nodes, opts); // Step 4: Check for convergence. if (!haveMatricesConverged(U, _U, opts.sensitivityThreshold)) { isStillMoving = true; } iterations++; } // Assign nodes to clusters with highest probability. clusters = assign$1(nodes, U, opts, cy); return { clusters: clusters, degreeOfMembership: U }; }; var kClustering = { kMeans: kMeans, kMedoids: kMedoids, fuzzyCMeans: fuzzyCMeans, fcm: fuzzyCMeans }; // Implemented by Zoe Xi @zoexi for GSOC 2016 var defaults$a = defaults$g({ distance: 'euclidean', // distance metric to compare nodes linkage: 'min', // linkage criterion : how to determine the distance between clusters of nodes mode: 'threshold', // mode:'threshold' => clusters must be threshold distance apart threshold: Infinity, // the distance threshold // mode:'dendrogram' => the nodes are organised as leaves in a tree (siblings are close), merging makes clusters addDendrogram: false, // whether to add the dendrogram to the graph for viz dendrogramDepth: 0, // depth at which dendrogram branches are merged into the returned clusters attributes: [] // array of attr functions }); var linkageAliases = { 'single': 'min', 'complete': 'max' }; var setOptions$1 = function setOptions(options) { var opts = defaults$a(options); var preferredAlias = linkageAliases[opts.linkage]; if (preferredAlias != null) { opts.linkage = preferredAlias; } return opts; }; var mergeClosest = function mergeClosest(clusters, index, dists, mins, opts) { // Find two closest clusters from cached mins var minKey = 0; var min = Infinity; var dist; var attrs = opts.attributes; var getDist = function getDist(n1, n2) { return clusteringDistance(opts.distance, attrs.length, function (i) { return attrs[i](n1); }, function (i) { return attrs[i](n2); }, n1, n2); }; for (var i = 0; i < clusters.length; i++) { var key = clusters[i].key; var _dist = dists[key][mins[key]]; if (_dist < min) { minKey = key; min = _dist; } } if (opts.mode === 'threshold' && min >= opts.threshold || opts.mode === 'dendrogram' && clusters.length === 1) { return false; } var c1 = index[minKey]; var c2 = index[mins[minKey]]; var merged; // Merge two closest clusters if (opts.mode === 'dendrogram') { merged = { left: c1, right: c2, key: c1.key }; } else { merged = { value: c1.value.concat(c2.value), key: c1.key }; } clusters[c1.index] = merged; clusters.splice(c2.index, 1); index[c1.key] = merged; // Update distances with new merged cluster for (var _i = 0; _i < clusters.length; _i++) { var cur = clusters[_i]; if (c1.key === cur.key) { dist = Infinity; } else if (opts.linkage === 'min') { dist = dists[c1.key][cur.key]; if (dists[c1.key][cur.key] > dists[c2.key][cur.key]) { dist = dists[c2.key][cur.key]; } } else if (opts.linkage === 'max') { dist = dists[c1.key][cur.key]; if (dists[c1.key][cur.key] < dists[c2.key][cur.key]) { dist = dists[c2.key][cur.key]; } } else if (opts.linkage === 'mean') { dist = (dists[c1.key][cur.key] * c1.size + dists[c2.key][cur.key] * c2.size) / (c1.size + c2.size); } else { if (opts.mode === 'dendrogram') dist = getDist(cur.value, c1.value);else dist = getDist(cur.value[0], c1.value[0]); } dists[c1.key][cur.key] = dists[cur.key][c1.key] = dist; // distance matrix is symmetric } // Update cached mins for (var _i2 = 0; _i2 < clusters.length; _i2++) { var key1 = clusters[_i2].key; if (mins[key1] === c1.key || mins[key1] === c2.key) { var _min = key1; for (var j = 0; j < clusters.length; j++) { var key2 = clusters[j].key; if (dists[key1][key2] < dists[key1][_min]) { _min = key2; } } mins[key1] = _min; } clusters[_i2].index = _i2; } // Clean up meta data used for clustering c1.key = c2.key = c1.index = c2.index = null; return true; }; var getAllChildren = function getAllChildren(root, arr, cy) { if (!root) return; if (root.value) { arr.push(root.value); } else { if (root.left) getAllChildren(root.left, arr); if (root.right) getAllChildren(root.right, arr); } }; var buildDendrogram = function buildDendrogram(root, cy) { if (!root) return ''; if (root.left && root.right) { var leftStr = buildDendrogram(root.left, cy); var rightStr = buildDendrogram(root.right, cy); var node = cy.add({ group: 'nodes', data: { id: leftStr + ',' + rightStr } }); cy.add({ group: 'edges', data: { source: leftStr, target: node.id() } }); cy.add({ group: 'edges', data: { source: rightStr, target: node.id() } }); return node.id(); } else if (root.value) { return root.value.id(); } }; var buildClustersFromTree = function buildClustersFromTree(root, k, cy) { if (!root) return []; var left = [], right = [], leaves = []; if (k === 0) { // don't cut tree, simply return all nodes as 1 single cluster if (root.left) getAllChildren(root.left, left); if (root.right) getAllChildren(root.right, right); leaves = left.concat(right); return [cy.collection(leaves)]; } else if (k === 1) { // cut at root if (root.value) { // leaf node return [cy.collection(root.value)]; } else { if (root.left) getAllChildren(root.left, left); if (root.right) getAllChildren(root.right, right); return [cy.collection(left), cy.collection(right)]; } } else { if (root.value) { return [cy.collection(root.value)]; } else { if (root.left) left = buildClustersFromTree(root.left, k - 1, cy); if (root.right) right = buildClustersFromTree(root.right, k - 1, cy); return left.concat(right); } } }; var hierarchicalClustering = function hierarchicalClustering(options) { var cy = this.cy(); var nodes = this.nodes(); // Set parameters of algorithm: linkage type, distance metric, etc. var opts = setOptions$1(options); var attrs = opts.attributes; var getDist = function getDist(n1, n2) { return clusteringDistance(opts.distance, attrs.length, function (i) { return attrs[i](n1); }, function (i) { return attrs[i](n2); }, n1, n2); }; // Begin hierarchical algorithm var clusters = []; var dists = []; // distances between each pair of clusters var mins = []; // closest cluster for each cluster var index = []; // hash of all clusters by key // In agglomerative (bottom-up) clustering, each node starts as its own cluster for (var n = 0; n < nodes.length; n++) { var cluster = { value: opts.mode === 'dendrogram' ? nodes[n] : [nodes[n]], key: n, index: n }; clusters[n] = cluster; index[n] = cluster; dists[n] = []; mins[n] = 0; } // Calculate the distance between each pair of clusters for (var i = 0; i < clusters.length; i++) { for (var j = 0; j <= i; j++) { var dist = void 0; if (opts.mode === 'dendrogram') { // modes store cluster values differently dist = i === j ? Infinity : getDist(clusters[i].value, clusters[j].value); } else { dist = i === j ? Infinity : getDist(clusters[i].value[0], clusters[j].value[0]); } dists[i][j] = dist; dists[j][i] = dist; if (dist < dists[i][mins[i]]) { mins[i] = j; // Cache mins: closest cluster to cluster i is cluster j } } } // Find the closest pair of clusters and merge them into a single cluster. // Update distances between new cluster and each of the old clusters, and loop until threshold reached. var merged = mergeClosest(clusters, index, dists, mins, opts); while (merged) { merged = mergeClosest(clusters, index, dists, mins, opts); } var retClusters; // Dendrogram mode builds the hierarchy and adds intermediary nodes + edges // in addition to returning the clusters. if (opts.mode === 'dendrogram') { retClusters = buildClustersFromTree(clusters[0], opts.dendrogramDepth, cy); if (opts.addDendrogram) buildDendrogram(clusters[0], cy); } else { // Regular mode simply returns the clusters retClusters = new Array(clusters.length); clusters.forEach(function (cluster, i) { // Clean up meta data used for clustering cluster.key = cluster.index = null; retClusters[i] = cy.collection(cluster.value); }); } return retClusters; }; var hierarchicalClustering$1 = { hierarchicalClustering: hierarchicalClustering, hca: hierarchicalClustering }; // Implemented by Zoe Xi @zoexi for GSOC 2016 var defaults$9 = defaults$g({ distance: 'euclidean', // distance metric to compare attributes between two nodes preference: 'median', // suitability of a data point to serve as an exemplar damping: 0.8, // damping factor between [0.5, 1) maxIterations: 1000, // max number of iterations to run minIterations: 100, // min number of iterations to run in order for clustering to stop attributes: [// functions to quantify the similarity between any two points // e.g. node => node.data('weight') ] }); var setOptions = function setOptions(options) { var dmp = options.damping; var pref = options.preference; if (!(0.5 <= dmp && dmp < 1)) { error("Damping must range on [0.5, 1). Got: ".concat(dmp)); } var validPrefs = ['median', 'mean', 'min', 'max']; if (!(validPrefs.some(function (v) { return v === pref; }) || number$1(pref))) { error("Preference must be one of [".concat(validPrefs.map(function (p) { return "'".concat(p, "'"); }).join(', '), "] or a number. Got: ").concat(pref)); } return defaults$9(options); }; var getSimilarity = function getSimilarity(type, n1, n2, attributes) { var attr = function attr(n, i) { return attributes[i](n); }; // nb negative because similarity should have an inverse relationship to distance return -clusteringDistance(type, attributes.length, function (i) { return attr(n1, i); }, function (i) { return attr(n2, i); }, n1, n2); }; var getPreference = function getPreference(S, preference) { // larger preference = greater # of clusters var p = null; if (preference === 'median') { p = median(S); } else if (preference === 'mean') { p = mean(S); } else if (preference === 'min') { p = min(S); } else if (preference === 'max') { p = max(S); } else { // Custom preference number, as set by user p = preference; } return p; }; var findExemplars = function findExemplars(n, R, A) { var indices = []; for (var i = 0; i < n; i++) { if (R[i * n + i] + A[i * n + i] > 0) { indices.push(i); } } return indices; }; var assignClusters = function assignClusters(n, S, exemplars) { var clusters = []; for (var i = 0; i < n; i++) { var index = -1; var max = -Infinity; for (var ei = 0; ei < exemplars.length; ei++) { var e = exemplars[ei]; if (S[i * n + e] > max) { index = e; max = S[i * n + e]; } } if (index > 0) { clusters.push(index); } } for (var _ei = 0; _ei < exemplars.length; _ei++) { clusters[exemplars[_ei]] = exemplars[_ei]; } return clusters; }; var assign = function assign(n, S, exemplars) { var clusters = assignClusters(n, S, exemplars); for (var ei = 0; ei < exemplars.length; ei++) { var ii = []; for (var c = 0; c < clusters.length; c++) { if (clusters[c] === exemplars[ei]) { ii.push(c); } } var maxI = -1; var maxSum = -Infinity; for (var i = 0; i < ii.length; i++) { var sum = 0; for (var j = 0; j < ii.length; j++) { sum += S[ii[j] * n + ii[i]]; } if (sum > maxSum) { maxI = i; maxSum = sum; } } exemplars[ei] = ii[maxI]; } clusters = assignClusters(n, S, exemplars); return clusters; }; var affinityPropagation = function affinityPropagation(options) { var cy = this.cy(); var nodes = this.nodes(); var opts = setOptions(options); // Map each node to its position in node array var id2position = {}; for (var i = 0; i < nodes.length; i++) { id2position[nodes[i].id()] = i; } // Begin affinity propagation algorithm var n; // number of data points var n2; // size of matrices var S; // similarity matrix (1D array) var p; // preference/suitability of a data point to serve as an exemplar var R; // responsibility matrix (1D array) var A; // availability matrix (1D array) n = nodes.length; n2 = n * n; // Initialize and build S similarity matrix S = new Array(n2); for (var _i = 0; _i < n2; _i++) { S[_i] = -Infinity; // for cases where two data points shouldn't be linked together } for (var _i2 = 0; _i2 < n; _i2++) { for (var j = 0; j < n; j++) { if (_i2 !== j) { S[_i2 * n + j] = getSimilarity(opts.distance, nodes[_i2], nodes[j], opts.attributes); } } } // Place preferences on the diagonal of S p = getPreference(S, opts.preference); for (var _i3 = 0; _i3 < n; _i3++) { S[_i3 * n + _i3] = p; } // Initialize R responsibility matrix R = new Array(n2); for (var _i4 = 0; _i4 < n2; _i4++) { R[_i4] = 0.0; } // Initialize A availability matrix A = new Array(n2); for (var _i5 = 0; _i5 < n2; _i5++) { A[_i5] = 0.0; } var old = new Array(n); var Rp = new Array(n); var se = new Array(n); for (var _i6 = 0; _i6 < n; _i6++) { old[_i6] = 0.0; Rp[_i6] = 0.0; se[_i6] = 0; } var e = new Array(n * opts.minIterations); for (var _i7 = 0; _i7 < e.length; _i7++) { e[_i7] = 0; } var iter; for (iter = 0; iter < opts.maxIterations; iter++) { // main algorithmic loop // Update R responsibility matrix for (var _i8 = 0; _i8 < n; _i8++) { var max = -Infinity, max2 = -Infinity, maxI = -1, AS = 0.0; for (var _j = 0; _j < n; _j++) { old[_j] = R[_i8 * n + _j]; AS = A[_i8 * n + _j] + S[_i8 * n + _j]; if (AS >= max) { max2 = max; max = AS; maxI = _j; } else if (AS > max2) { max2 = AS; } } for (var _j2 = 0; _j2 < n; _j2++) { R[_i8 * n + _j2] = (1 - opts.damping) * (S[_i8 * n + _j2] - max) + opts.damping * old[_j2]; } R[_i8 * n + maxI] = (1 - opts.damping) * (S[_i8 * n + maxI] - max2) + opts.damping * old[maxI]; } // Update A availability matrix for (var _i9 = 0; _i9 < n; _i9++) { var sum = 0; for (var _j3 = 0; _j3 < n; _j3++) { old[_j3] = A[_j3 * n + _i9]; Rp[_j3] = Math.max(0, R[_j3 * n + _i9]); sum += Rp[_j3]; } sum -= Rp[_i9]; Rp[_i9] = R[_i9 * n + _i9]; sum += Rp[_i9]; for (var _j4 = 0; _j4 < n; _j4++) { A[_j4 * n + _i9] = (1 - opts.damping) * Math.min(0, sum - Rp[_j4]) + opts.damping * old[_j4]; } A[_i9 * n + _i9] = (1 - opts.damping) * (sum - Rp[_i9]) + opts.damping * old[_i9]; } // Check for convergence var K = 0; for (var _i10 = 0; _i10 < n; _i10++) { var E = A[_i10 * n + _i10] + R[_i10 * n + _i10] > 0 ? 1 : 0; e[iter % opts.minIterations * n + _i10] = E; K += E; } if (K > 0 && (iter >= opts.minIterations - 1 || iter == opts.maxIterations - 1)) { var _sum = 0; for (var _i11 = 0; _i11 < n; _i11++) { se[_i11] = 0; for (var _j5 = 0; _j5 < opts.minIterations; _j5++) { se[_i11] += e[_j5 * n + _i11]; } if (se[_i11] === 0 || se[_i11] === opts.minIterations) { _sum++; } } if (_sum === n) { // then we have convergence break; } } } // Identify exemplars (cluster centers) var exemplarsIndices = findExemplars(n, R, A); // Assign nodes to clusters var clusterIndices = assign(n, S, exemplarsIndices); var clusters = {}; for (var c = 0; c < exemplarsIndices.length; c++) { clusters[exemplarsIndices[c]] = []; } for (var _i12 = 0; _i12 < nodes.length; _i12++) { var pos = id2position[nodes[_i12].id()]; var clusterIndex = clusterIndices[pos]; if (clusterIndex != null) { // the node may have not been assigned a cluster if no valid attributes were specified clusters[clusterIndex].push(nodes[_i12]); } } var retClusters = new Array(exemplarsIndices.length); for (var _c = 0; _c < exemplarsIndices.length; _c++) { retClusters[_c] = cy.collection(clusters[exemplarsIndices[_c]]); } return retClusters; }; var affinityPropagation$1 = { affinityPropagation: affinityPropagation, ap: affinityPropagation }; var hierholzerDefaults = defaults$g({ root: undefined, directed: false }); var elesfn$k = { hierholzer: function hierholzer(options) { if (!plainObject(options)) { var args = arguments; options = { root: args[0], directed: args[1] }; } var _hierholzerDefaults = hierholzerDefaults(options), root = _hierholzerDefaults.root, directed = _hierholzerDefaults.directed; var eles = this; var dflag = false; var oddIn; var oddOut; var startVertex; if (root) startVertex = string(root) ? this.filter(root)[0].id() : root[0].id(); var nodes = {}; var edges = {}; if (directed) { eles.forEach(function (ele) { var id = ele.id(); if (ele.isNode()) { var ind = ele.indegree(true); var outd = ele.outdegree(true); var d1 = ind - outd; var d2 = outd - ind; if (d1 == 1) { if (oddIn) dflag = true;else oddIn = id; } else if (d2 == 1) { if (oddOut) dflag = true;else oddOut = id; } else if (d2 > 1 || d1 > 1) { dflag = true; } nodes[id] = []; ele.outgoers().forEach(function (e) { if (e.isEdge()) nodes[id].push(e.id()); }); } else { edges[id] = [undefined, ele.target().id()]; } }); } else { eles.forEach(function (ele) { var id = ele.id(); if (ele.isNode()) { var d = ele.degree(true); if (d % 2) { if (!oddIn) oddIn = id;else if (!oddOut) oddOut = id;else dflag = true; } nodes[id] = []; ele.connectedEdges().forEach(function (e) { return nodes[id].push(e.id()); }); } else { edges[id] = [ele.source().id(), ele.target().id()]; } }); } var result = { found: false, trail: undefined }; if (dflag) return result;else if (oddOut && oddIn) { if (directed) { if (startVertex && oddOut != startVertex) { return result; } startVertex = oddOut; } else { if (startVertex && oddOut != startVertex && oddIn != startVertex) { return result; } else if (!startVertex) { startVertex = oddOut; } } } else { if (!startVertex) startVertex = eles[0].id(); } var walk = function walk(v) { var currentNode = v; var subtour = [v]; var adj, adjTail, adjHead; while (nodes[currentNode].length) { adj = nodes[currentNode].shift(); adjTail = edges[adj][0]; adjHead = edges[adj][1]; if (currentNode != adjHead) { nodes[adjHead] = nodes[adjHead].filter(function (e) { return e != adj; }); currentNode = adjHead; } else if (!directed && currentNode != adjTail) { nodes[adjTail] = nodes[adjTail].filter(function (e) { return e != adj; }); currentNode = adjTail; } subtour.unshift(adj); subtour.unshift(currentNode); } return subtour; }; var trail = []; var subtour = []; subtour = walk(startVertex); while (subtour.length != 1) { if (nodes[subtour[0]].length == 0) { trail.unshift(eles.getElementById(subtour.shift())); trail.unshift(eles.getElementById(subtour.shift())); } else { subtour = walk(subtour.shift()).concat(subtour); } } trail.unshift(eles.getElementById(subtour.shift())); // final node for (var d in nodes) { if (nodes[d].length) { return result; } } result.found = true; result.trail = this.spawn(trail, true); return result; } }; var hopcroftTarjanBiconnected = function hopcroftTarjanBiconnected() { var eles = this; var nodes = {}; var id = 0; var edgeCount = 0; var components = []; var stack = []; var visitedEdges = {}; var buildComponent = function buildComponent(x, y) { var i = stack.length - 1; var cutset = []; var component = eles.spawn(); while (stack[i].x != x || stack[i].y != y) { cutset.push(stack.pop().edge); i--; } cutset.push(stack.pop().edge); cutset.forEach(function (edge) { var connectedNodes = edge.connectedNodes().intersection(eles); component.merge(edge); connectedNodes.forEach(function (node) { var nodeId = node.id(); var connectedEdges = node.connectedEdges().intersection(eles); component.merge(node); if (!nodes[nodeId].cutVertex) { component.merge(connectedEdges); } else { component.merge(connectedEdges.filter(function (edge) { return edge.isLoop(); })); } }); }); components.push(component); }; var biconnectedSearch = function biconnectedSearch(root, currentNode, parent) { if (root === parent) edgeCount += 1; nodes[currentNode] = { id: id, low: id++, cutVertex: false }; var edges = eles.getElementById(currentNode).connectedEdges().intersection(eles); if (edges.size() === 0) { components.push(eles.spawn(eles.getElementById(currentNode))); } else { var sourceId, targetId, otherNodeId, edgeId; edges.forEach(function (edge) { sourceId = edge.source().id(); targetId = edge.target().id(); otherNodeId = sourceId === currentNode ? targetId : sourceId; if (otherNodeId !== parent) { edgeId = edge.id(); if (!visitedEdges[edgeId]) { visitedEdges[edgeId] = true; stack.push({ x: currentNode, y: otherNodeId, edge: edge }); } if (!(otherNodeId in nodes)) { biconnectedSearch(root, otherNodeId, currentNode); nodes[currentNode].low = Math.min(nodes[currentNode].low, nodes[otherNodeId].low); if (nodes[currentNode].id <= nodes[otherNodeId].low) { nodes[currentNode].cutVertex = true; buildComponent(currentNode, otherNodeId); } } else { nodes[currentNode].low = Math.min(nodes[currentNode].low, nodes[otherNodeId].id); } } }); } }; eles.forEach(function (ele) { if (ele.isNode()) { var nodeId = ele.id(); if (!(nodeId in nodes)) { edgeCount = 0; biconnectedSearch(nodeId, nodeId); nodes[nodeId].cutVertex = edgeCount > 1; } } }); var cutVertices = Object.keys(nodes).filter(function (id) { return nodes[id].cutVertex; }).map(function (id) { return eles.getElementById(id); }); return { cut: eles.spawn(cutVertices), components: components }; }; var hopcroftTarjanBiconnected$1 = { hopcroftTarjanBiconnected: hopcroftTarjanBiconnected, htbc: hopcroftTarjanBiconnected, htb: hopcroftTarjanBiconnected, hopcroftTarjanBiconnectedComponents: hopcroftTarjanBiconnected }; var tarjanStronglyConnected = function tarjanStronglyConnected() { var eles = this; var nodes = {}; var index = 0; var components = []; var stack = []; var cut = eles.spawn(eles); var stronglyConnectedSearch = function stronglyConnectedSearch(sourceNodeId) { stack.push(sourceNodeId); nodes[sourceNodeId] = { index: index, low: index++, explored: false }; var connectedEdges = eles.getElementById(sourceNodeId).connectedEdges().intersection(eles); connectedEdges.forEach(function (edge) { var targetNodeId = edge.target().id(); if (targetNodeId !== sourceNodeId) { if (!(targetNodeId in nodes)) { stronglyConnectedSearch(targetNodeId); } if (!nodes[targetNodeId].explored) { nodes[sourceNodeId].low = Math.min(nodes[sourceNodeId].low, nodes[targetNodeId].low); } } }); if (nodes[sourceNodeId].index === nodes[sourceNodeId].low) { var componentNodes = eles.spawn(); for (;;) { var nodeId = stack.pop(); componentNodes.merge(eles.getElementById(nodeId)); nodes[nodeId].low = nodes[sourceNodeId].index; nodes[nodeId].explored = true; if (nodeId === sourceNodeId) { break; } } var componentEdges = componentNodes.edgesWith(componentNodes); var component = componentNodes.merge(componentEdges); components.push(component); cut = cut.difference(component); } }; eles.forEach(function (ele) { if (ele.isNode()) { var nodeId = ele.id(); if (!(nodeId in nodes)) { stronglyConnectedSearch(nodeId); } } }); return { cut: cut, components: components }; }; var tarjanStronglyConnected$1 = { tarjanStronglyConnected: tarjanStronglyConnected, tsc: tarjanStronglyConnected, tscc: tarjanStronglyConnected, tarjanStronglyConnectedComponents: tarjanStronglyConnected }; var elesfn$j = {}; [elesfn$v, elesfn$u, elesfn$t, elesfn$s, elesfn$r, elesfn$q, elesfn$p, elesfn$o, elesfn$n, elesfn$m, elesfn$l, markovClustering$1, kClustering, hierarchicalClustering$1, affinityPropagation$1, elesfn$k, hopcroftTarjanBiconnected$1, tarjanStronglyConnected$1].forEach(function (props) { extend(elesfn$j, props); }); /*! Embeddable Minimum Strictly-Compliant Promises/A+ 1.1.1 Thenable Copyright (c) 2013-2014 Ralf S. Engelschall (http://engelschall.com) Licensed under The MIT License (http://opensource.org/licenses/MIT) */ /* promise states [Promises/A+ 2.1] */ var STATE_PENDING = 0; /* [Promises/A+ 2.1.1] */ var STATE_FULFILLED = 1; /* [Promises/A+ 2.1.2] */ var STATE_REJECTED = 2; /* [Promises/A+ 2.1.3] */ /* promise object constructor */ var api = function api(executor) { /* optionally support non-constructor/plain-function call */ if (!(this instanceof api)) return new api(executor); /* initialize object */ this.id = 'Thenable/1.0.7'; this.state = STATE_PENDING; /* initial state */ this.fulfillValue = undefined; /* initial value */ /* [Promises/A+ 1.3, 2.1.2.2] */ this.rejectReason = undefined; /* initial reason */ /* [Promises/A+ 1.5, 2.1.3.2] */ this.onFulfilled = []; /* initial handlers */ this.onRejected = []; /* initial handlers */ /* provide optional information-hiding proxy */ this.proxy = { then: this.then.bind(this) }; /* support optional executor function */ if (typeof executor === 'function') executor.call(this, this.fulfill.bind(this), this.reject.bind(this)); }; /* promise API methods */ api.prototype = { /* promise resolving methods */ fulfill: function fulfill(value) { return deliver(this, STATE_FULFILLED, 'fulfillValue', value); }, reject: function reject(value) { return deliver(this, STATE_REJECTED, 'rejectReason', value); }, /* "The then Method" [Promises/A+ 1.1, 1.2, 2.2] */ then: function then(onFulfilled, onRejected) { var curr = this; var next = new api(); /* [Promises/A+ 2.2.7] */ curr.onFulfilled.push(resolver(onFulfilled, next, 'fulfill')); /* [Promises/A+ 2.2.2/2.2.6] */ curr.onRejected.push(resolver(onRejected, next, 'reject')); /* [Promises/A+ 2.2.3/2.2.6] */ execute(curr); return next.proxy; /* [Promises/A+ 2.2.7, 3.3] */ } }; /* deliver an action */ var deliver = function deliver(curr, state, name, value) { if (curr.state === STATE_PENDING) { curr.state = state; /* [Promises/A+ 2.1.2.1, 2.1.3.1] */ curr[name] = value; /* [Promises/A+ 2.1.2.2, 2.1.3.2] */ execute(curr); } return curr; }; /* execute all handlers */ var execute = function execute(curr) { if (curr.state === STATE_FULFILLED) execute_handlers(curr, 'onFulfilled', curr.fulfillValue);else if (curr.state === STATE_REJECTED) execute_handlers(curr, 'onRejected', curr.rejectReason); }; /* execute particular set of handlers */ var execute_handlers = function execute_handlers(curr, name, value) { /* global setImmediate: true */ /* global setTimeout: true */ /* short-circuit processing */ if (curr[name].length === 0) return; /* iterate over all handlers, exactly once */ var handlers = curr[name]; curr[name] = []; /* [Promises/A+ 2.2.2.3, 2.2.3.3] */ var func = function func() { for (var i = 0; i < handlers.length; i++) { handlers[i](value); } /* [Promises/A+ 2.2.5] */ }; /* execute procedure asynchronously */ /* [Promises/A+ 2.2.4, 3.1] */ if (typeof setImmediate === 'function') setImmediate(func);else setTimeout(func, 0); }; /* generate a resolver function */ var resolver = function resolver(cb, next, method) { return function (value) { if (typeof cb !== 'function') /* [Promises/A+ 2.2.1, 2.2.7.3, 2.2.7.4] */ next[method].call(next, value); /* [Promises/A+ 2.2.7.3, 2.2.7.4] */else { var result; try { result = cb(value); } /* [Promises/A+ 2.2.2.1, 2.2.3.1, 2.2.5, 3.2] */ catch (e) { next.reject(e); /* [Promises/A+ 2.2.7.2] */ return; } resolve(next, result); /* [Promises/A+ 2.2.7.1] */ } }; }; /* "Promise Resolution Procedure" */ /* [Promises/A+ 2.3] */ var resolve = function resolve(promise, x) { /* sanity check arguments */ /* [Promises/A+ 2.3.1] */ if (promise === x || promise.proxy === x) { promise.reject(new TypeError('cannot resolve promise with itself')); return; } /* surgically check for a "then" method (mainly to just call the "getter" of "then" only once) */ var then; if (_typeof(x) === 'object' && x !== null || typeof x === 'function') { try { then = x.then; } /* [Promises/A+ 2.3.3.1, 3.5] */ catch (e) { promise.reject(e); /* [Promises/A+ 2.3.3.2] */ return; } } /* handle own Thenables [Promises/A+ 2.3.2] and similar "thenables" [Promises/A+ 2.3.3] */ if (typeof then === 'function') { var resolved = false; try { /* call retrieved "then" method */ /* [Promises/A+ 2.3.3.3] */ then.call(x, /* resolvePromise */ /* [Promises/A+ 2.3.3.3.1] */ function (y) { if (resolved) return; resolved = true; /* [Promises/A+ 2.3.3.3.3] */ if (y === x) /* [Promises/A+ 3.6] */ promise.reject(new TypeError('circular thenable chain'));else resolve(promise, y); }, /* rejectPromise */ /* [Promises/A+ 2.3.3.3.2] */ function (r) { if (resolved) return; resolved = true; /* [Promises/A+ 2.3.3.3.3] */ promise.reject(r); }); } catch (e) { if (!resolved) /* [Promises/A+ 2.3.3.3.3] */ promise.reject(e); /* [Promises/A+ 2.3.3.3.4] */ } return; } /* handle other values */ promise.fulfill(x); /* [Promises/A+ 2.3.4, 2.3.3.4] */ }; // so we always have Promise.all() api.all = function (ps) { return new api(function (resolveAll, rejectAll) { var vals = new Array(ps.length); var doneCount = 0; var fulfill = function fulfill(i, val) { vals[i] = val; doneCount++; if (doneCount === ps.length) { resolveAll(vals); } }; for (var i = 0; i < ps.length; i++) { (function (i) { var p = ps[i]; var isPromise = p != null && p.then != null; if (isPromise) { p.then(function (val) { fulfill(i, val); }, function (err) { rejectAll(err); }); } else { var val = p; fulfill(i, val); } })(i); } }); }; api.resolve = function (val) { return new api(function (resolve, reject) { resolve(val); }); }; api.reject = function (val) { return new api(function (resolve, reject) { reject(val); }); }; var Promise$1 = typeof Promise !== 'undefined' ? Promise : api; // eslint-disable-line no-undef var Animation = function Animation(target, opts, opts2) { var isCore = core(target); var isEle = !isCore; var _p = this._private = extend({ duration: 1000 }, opts, opts2); _p.target = target; _p.style = _p.style || _p.css; _p.started = false; _p.playing = false; _p.hooked = false; _p.applying = false; _p.progress = 0; _p.completes = []; _p.frames = []; if (_p.complete && fn$6(_p.complete)) { _p.completes.push(_p.complete); } if (isEle) { var pos = target.position(); _p.startPosition = _p.startPosition || { x: pos.x, y: pos.y }; _p.startStyle = _p.startStyle || target.cy().style().getAnimationStartStyle(target, _p.style); } if (isCore) { var pan = target.pan(); _p.startPan = { x: pan.x, y: pan.y }; _p.startZoom = target.zoom(); } // for future timeline/animations impl this.length = 1; this[0] = this; }; var anifn = Animation.prototype; extend(anifn, { instanceString: function instanceString() { return 'animation'; }, hook: function hook() { var _p = this._private; if (!_p.hooked) { // add to target's animation queue var q; var tAni = _p.target._private.animation; if (_p.queue) { q = tAni.queue; } else { q = tAni.current; } q.push(this); // add to the animation loop pool if (elementOrCollection(_p.target)) { _p.target.cy().addToAnimationPool(_p.target); } _p.hooked = true; } return this; }, play: function play() { var _p = this._private; // autorewind if (_p.progress === 1) { _p.progress = 0; } _p.playing = true; _p.started = false; // needs to be started by animation loop _p.stopped = false; this.hook(); // the animation loop will start the animation... return this; }, playing: function playing() { return this._private.playing; }, apply: function apply() { var _p = this._private; _p.applying = true; _p.started = false; // needs to be started by animation loop _p.stopped = false; this.hook(); // the animation loop will apply the animation at this progress return this; }, applying: function applying() { return this._private.applying; }, pause: function pause() { var _p = this._private; _p.playing = false; _p.started = false; return this; }, stop: function stop() { var _p = this._private; _p.playing = false; _p.started = false; _p.stopped = true; // to be removed from animation queues return this; }, rewind: function rewind() { return this.progress(0); }, fastforward: function fastforward() { return this.progress(1); }, time: function time(t) { var _p = this._private; if (t === undefined) { return _p.progress * _p.duration; } else { return this.progress(t / _p.duration); } }, progress: function progress(p) { var _p = this._private; var wasPlaying = _p.playing; if (p === undefined) { return _p.progress; } else { if (wasPlaying) { this.pause(); } _p.progress = p; _p.started = false; if (wasPlaying) { this.play(); } } return this; }, completed: function completed() { return this._private.progress === 1; }, reverse: function reverse() { var _p = this._private; var wasPlaying = _p.playing; if (wasPlaying) { this.pause(); } _p.progress = 1 - _p.progress; _p.started = false; var swap = function swap(a, b) { var _pa = _p[a]; if (_pa == null) { return; } _p[a] = _p[b]; _p[b] = _pa; }; swap('zoom', 'startZoom'); swap('pan', 'startPan'); swap('position', 'startPosition'); // swap styles if (_p.style) { for (var i = 0; i < _p.style.length; i++) { var prop = _p.style[i]; var name = prop.name; var startStyleProp = _p.startStyle[name]; _p.startStyle[name] = prop; _p.style[i] = startStyleProp; } } if (wasPlaying) { this.play(); } return this; }, promise: function promise(type) { var _p = this._private; var arr; switch (type) { case 'frame': arr = _p.frames; break; default: case 'complete': case 'completed': arr = _p.completes; } return new Promise$1(function (resolve, reject) { arr.push(function () { resolve(); }); }); } }); anifn.complete = anifn.completed; anifn.run = anifn.play; anifn.running = anifn.playing; var define$3 = { animated: function animated() { return function animatedImpl() { var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var cy = this._private.cy || this; if (!cy.styleEnabled()) { return false; } var ele = all[0]; if (ele) { return ele._private.animation.current.length > 0; } }; }, // animated clearQueue: function clearQueue() { return function clearQueueImpl() { var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var cy = this._private.cy || this; if (!cy.styleEnabled()) { return this; } for (var i = 0; i < all.length; i++) { var ele = all[i]; ele._private.animation.queue = []; } return this; }; }, // clearQueue delay: function delay() { return function delayImpl(time, complete) { var cy = this._private.cy || this; if (!cy.styleEnabled()) { return this; } return this.animate({ delay: time, duration: time, complete: complete }); }; }, // delay delayAnimation: function delayAnimation() { return function delayAnimationImpl(time, complete) { var cy = this._private.cy || this; if (!cy.styleEnabled()) { return this; } return this.animation({ delay: time, duration: time, complete: complete }); }; }, // delay animation: function animation() { return function animationImpl(properties, params) { var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var cy = this._private.cy || this; var isCore = !selfIsArrayLike; var isEles = !isCore; if (!cy.styleEnabled()) { return this; } var style = cy.style(); properties = extend({}, properties, params); var propertiesEmpty = Object.keys(properties).length === 0; if (propertiesEmpty) { return new Animation(all[0], properties); // nothing to animate } if (properties.duration === undefined) { properties.duration = 400; } switch (properties.duration) { case 'slow': properties.duration = 600; break; case 'fast': properties.duration = 200; break; } if (isEles) { properties.style = style.getPropsList(properties.style || properties.css); properties.css = undefined; } if (isEles && properties.renderedPosition != null) { var rpos = properties.renderedPosition; var pan = cy.pan(); var zoom = cy.zoom(); properties.position = renderedToModelPosition(rpos, zoom, pan); } // override pan w/ panBy if set if (isCore && properties.panBy != null) { var panBy = properties.panBy; var cyPan = cy.pan(); properties.pan = { x: cyPan.x + panBy.x, y: cyPan.y + panBy.y }; } // override pan w/ center if set var center = properties.center || properties.centre; if (isCore && center != null) { var centerPan = cy.getCenterPan(center.eles, properties.zoom); if (centerPan != null) { properties.pan = centerPan; } } // override pan & zoom w/ fit if set if (isCore && properties.fit != null) { var fit = properties.fit; var fitVp = cy.getFitViewport(fit.eles || fit.boundingBox, fit.padding); if (fitVp != null) { properties.pan = fitVp.pan; properties.zoom = fitVp.zoom; } } // override zoom (& potentially pan) w/ zoom obj if set if (isCore && plainObject(properties.zoom)) { var vp = cy.getZoomedViewport(properties.zoom); if (vp != null) { if (vp.zoomed) { properties.zoom = vp.zoom; } if (vp.panned) { properties.pan = vp.pan; } } else { properties.zoom = null; // an inavalid zoom (e.g. no delta) gets automatically destroyed } } return new Animation(all[0], properties); }; }, // animate animate: function animate() { return function animateImpl(properties, params) { var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var cy = this._private.cy || this; if (!cy.styleEnabled()) { return this; } if (params) { properties = extend({}, properties, params); } // manually hook and run the animation for (var i = 0; i < all.length; i++) { var ele = all[i]; var queue = ele.animated() && (properties.queue === undefined || properties.queue); var ani = ele.animation(properties, queue ? { queue: true } : undefined); ani.play(); } return this; // chaining }; }, // animate stop: function stop() { return function stopImpl(clearQueue, jumpToEnd) { var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var cy = this._private.cy || this; if (!cy.styleEnabled()) { return this; } for (var i = 0; i < all.length; i++) { var ele = all[i]; var _p = ele._private; var anis = _p.animation.current; for (var j = 0; j < anis.length; j++) { var ani = anis[j]; var ani_p = ani._private; if (jumpToEnd) { // next iteration of the animation loop, the animation // will go straight to the end and be removed ani_p.duration = 0; } } // clear the queue of future animations if (clearQueue) { _p.animation.queue = []; } if (!jumpToEnd) { _p.animation.current = []; } } // we have to notify (the animation loop doesn't do it for us on `stop`) cy.notify('draw'); return this; }; } // stop }; // define /** * Checks if `value` is classified as an `Array` object. * * @static * @memberOf _ * @since 0.1.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is an array, else `false`. * @example * * _.isArray([1, 2, 3]); * // => true * * _.isArray(document.body.children); * // => false * * _.isArray('abc'); * // => false * * _.isArray(_.noop); * // => false */ var isArray = Array.isArray; var isArray_1 = isArray; /** Used to match property names within property paths. */ var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, reIsPlainProp = /^\w*$/; /** * Checks if `value` is a property name and not a property path. * * @private * @param {*} value The value to check. * @param {Object} [object] The object to query keys on. * @returns {boolean} Returns `true` if `value` is a property name, else `false`. */ function isKey(value, object) { if (isArray_1(value)) { return false; } var type = typeof value; if (type == 'number' || type == 'symbol' || type == 'boolean' || value == null || isSymbol_1(value)) { return true; } return reIsPlainProp.test(value) || !reIsDeepProp.test(value) || (object != null && value in Object(object)); } var _isKey = isKey; /** `Object#toString` result references. */ var asyncTag = '[object AsyncFunction]', funcTag = '[object Function]', genTag = '[object GeneratorFunction]', proxyTag = '[object Proxy]'; /** * Checks if `value` is classified as a `Function` object. * * @static * @memberOf _ * @since 0.1.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a function, else `false`. * @example * * _.isFunction(_); * // => true * * _.isFunction(/abc/); * // => false */ function isFunction(value) { if (!isObject_1(value)) { return false; } // The use of `Object#toString` avoids issues with the `typeof` operator // in Safari 9 which returns 'object' for typed arrays and other constructors. var tag = _baseGetTag(value); return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag; } var isFunction_1 = isFunction; /** Used to detect overreaching core-js shims. */ var coreJsData = _root['__core-js_shared__']; var _coreJsData = coreJsData; /** Used to detect methods masquerading as native. */ var maskSrcKey = (function() { var uid = /[^.]+$/.exec(_coreJsData && _coreJsData.keys && _coreJsData.keys.IE_PROTO || ''); return uid ? ('Symbol(src)_1.' + uid) : ''; }()); /** * Checks if `func` has its source masked. * * @private * @param {Function} func The function to check. * @returns {boolean} Returns `true` if `func` is masked, else `false`. */ function isMasked(func) { return !!maskSrcKey && (maskSrcKey in func); } var _isMasked = isMasked; /** Used for built-in method references. */ var funcProto$1 = Function.prototype; /** Used to resolve the decompiled source of functions. */ var funcToString$1 = funcProto$1.toString; /** * Converts `func` to its source code. * * @private * @param {Function} func The function to convert. * @returns {string} Returns the source code. */ function toSource(func) { if (func != null) { try { return funcToString$1.call(func); } catch (e) {} try { return (func + ''); } catch (e) {} } return ''; } var _toSource = toSource; /** * Used to match `RegExp` * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns). */ var reRegExpChar = /[\\^$.*+?()[\]{}|]/g; /** Used to detect host constructors (Safari). */ var reIsHostCtor = /^\[object .+?Constructor\]$/; /** Used for built-in method references. */ var funcProto = Function.prototype, objectProto$3 = Object.prototype; /** Used to resolve the decompiled source of functions. */ var funcToString = funcProto.toString; /** Used to check objects for own properties. */ var hasOwnProperty$3 = objectProto$3.hasOwnProperty; /** Used to detect if a method is native. */ var reIsNative = RegExp('^' + funcToString.call(hasOwnProperty$3).replace(reRegExpChar, '\\$&') .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$' ); /** * The base implementation of `_.isNative` without bad shim checks. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a native function, * else `false`. */ function baseIsNative(value) { if (!isObject_1(value) || _isMasked(value)) { return false; } var pattern = isFunction_1(value) ? reIsNative : reIsHostCtor; return pattern.test(_toSource(value)); } var _baseIsNative = baseIsNative; /** * Gets the value at `key` of `object`. * * @private * @param {Object} [object] The object to query. * @param {string} key The key of the property to get. * @returns {*} Returns the property value. */ function getValue$1(object, key) { return object == null ? undefined : object[key]; } var _getValue = getValue$1; /** * Gets the native function at `key` of `object`. * * @private * @param {Object} object The object to query. * @param {string} key The key of the method to get. * @returns {*} Returns the function if it's native, else `undefined`. */ function getNative(object, key) { var value = _getValue(object, key); return _baseIsNative(value) ? value : undefined; } var _getNative = getNative; /* Built-in method references that are verified to be native. */ var nativeCreate = _getNative(Object, 'create'); var _nativeCreate = nativeCreate; /** * Removes all key-value entries from the hash. * * @private * @name clear * @memberOf Hash */ function hashClear() { this.__data__ = _nativeCreate ? _nativeCreate(null) : {}; this.size = 0; } var _hashClear = hashClear; /** * Removes `key` and its value from the hash. * * @private * @name delete * @memberOf Hash * @param {Object} hash The hash to modify. * @param {string} key The key of the value to remove. * @returns {boolean} Returns `true` if the entry was removed, else `false`. */ function hashDelete(key) { var result = this.has(key) && delete this.__data__[key]; this.size -= result ? 1 : 0; return result; } var _hashDelete = hashDelete; /** Used to stand-in for `undefined` hash values. */ var HASH_UNDEFINED$1 = '__lodash_hash_undefined__'; /** Used for built-in method references. */ var objectProto$2 = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty$2 = objectProto$2.hasOwnProperty; /** * Gets the hash value for `key`. * * @private * @name get * @memberOf Hash * @param {string} key The key of the value to get. * @returns {*} Returns the entry value. */ function hashGet(key) { var data = this.__data__; if (_nativeCreate) { var result = data[key]; return result === HASH_UNDEFINED$1 ? undefined : result; } return hasOwnProperty$2.call(data, key) ? data[key] : undefined; } var _hashGet = hashGet; /** Used for built-in method references. */ var objectProto$1 = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty$1 = objectProto$1.hasOwnProperty; /** * Checks if a hash value for `key` exists. * * @private * @name has * @memberOf Hash * @param {string} key The key of the entry to check. * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. */ function hashHas(key) { var data = this.__data__; return _nativeCreate ? (data[key] !== undefined) : hasOwnProperty$1.call(data, key); } var _hashHas = hashHas; /** Used to stand-in for `undefined` hash values. */ var HASH_UNDEFINED = '__lodash_hash_undefined__'; /** * Sets the hash `key` to `value`. * * @private * @name set * @memberOf Hash * @param {string} key The key of the value to set. * @param {*} value The value to set. * @returns {Object} Returns the hash instance. */ function hashSet(key, value) { var data = this.__data__; this.size += this.has(key) ? 0 : 1; data[key] = (_nativeCreate && value === undefined) ? HASH_UNDEFINED : value; return this; } var _hashSet = hashSet; /** * Creates a hash object. * * @private * @constructor * @param {Array} [entries] The key-value pairs to cache. */ function Hash(entries) { var index = -1, length = entries == null ? 0 : entries.length; this.clear(); while (++index < length) { var entry = entries[index]; this.set(entry[0], entry[1]); } } // Add methods to `Hash`. Hash.prototype.clear = _hashClear; Hash.prototype['delete'] = _hashDelete; Hash.prototype.get = _hashGet; Hash.prototype.has = _hashHas; Hash.prototype.set = _hashSet; var _Hash = Hash; /** * Removes all key-value entries from the list cache. * * @private * @name clear * @memberOf ListCache */ function listCacheClear() { this.__data__ = []; this.size = 0; } var _listCacheClear = listCacheClear; /** * Performs a * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) * comparison between two values to determine if they are equivalent. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to compare. * @param {*} other The other value to compare. * @returns {boolean} Returns `true` if the values are equivalent, else `false`. * @example * * var object = { 'a': 1 }; * var other = { 'a': 1 }; * * _.eq(object, object); * // => true * * _.eq(object, other); * // => false * * _.eq('a', 'a'); * // => true * * _.eq('a', Object('a')); * // => false * * _.eq(NaN, NaN); * // => true */ function eq(value, other) { return value === other || (value !== value && other !== other); } var eq_1 = eq; /** * Gets the index at which the `key` is found in `array` of key-value pairs. * * @private * @param {Array} array The array to inspect. * @param {*} key The key to search for. * @returns {number} Returns the index of the matched value, else `-1`. */ function assocIndexOf(array, key) { var length = array.length; while (length--) { if (eq_1(array[length][0], key)) { return length; } } return -1; } var _assocIndexOf = assocIndexOf; /** Used for built-in method references. */ var arrayProto = Array.prototype; /** Built-in value references. */ var splice = arrayProto.splice; /** * Removes `key` and its value from the list cache. * * @private * @name delete * @memberOf ListCache * @param {string} key The key of the value to remove. * @returns {boolean} Returns `true` if the entry was removed, else `false`. */ function listCacheDelete(key) { var data = this.__data__, index = _assocIndexOf(data, key); if (index < 0) { return false; } var lastIndex = data.length - 1; if (index == lastIndex) { data.pop(); } else { splice.call(data, index, 1); } --this.size; return true; } var _listCacheDelete = listCacheDelete; /** * Gets the list cache value for `key`. * * @private * @name get * @memberOf ListCache * @param {string} key The key of the value to get. * @returns {*} Returns the entry value. */ function listCacheGet(key) { var data = this.__data__, index = _assocIndexOf(data, key); return index < 0 ? undefined : data[index][1]; } var _listCacheGet = listCacheGet; /** * Checks if a list cache value for `key` exists. * * @private * @name has * @memberOf ListCache * @param {string} key The key of the entry to check. * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. */ function listCacheHas(key) { return _assocIndexOf(this.__data__, key) > -1; } var _listCacheHas = listCacheHas; /** * Sets the list cache `key` to `value`. * * @private * @name set * @memberOf ListCache * @param {string} key The key of the value to set. * @param {*} value The value to set. * @returns {Object} Returns the list cache instance. */ function listCacheSet(key, value) { var data = this.__data__, index = _assocIndexOf(data, key); if (index < 0) { ++this.size; data.push([key, value]); } else { data[index][1] = value; } return this; } var _listCacheSet = listCacheSet; /** * Creates an list cache object. * * @private * @constructor * @param {Array} [entries] The key-value pairs to cache. */ function ListCache(entries) { var index = -1, length = entries == null ? 0 : entries.length; this.clear(); while (++index < length) { var entry = entries[index]; this.set(entry[0], entry[1]); } } // Add methods to `ListCache`. ListCache.prototype.clear = _listCacheClear; ListCache.prototype['delete'] = _listCacheDelete; ListCache.prototype.get = _listCacheGet; ListCache.prototype.has = _listCacheHas; ListCache.prototype.set = _listCacheSet; var _ListCache = ListCache; /* Built-in method references that are verified to be native. */ var Map$1 = _getNative(_root, 'Map'); var _Map = Map$1; /** * Removes all key-value entries from the map. * * @private * @name clear * @memberOf MapCache */ function mapCacheClear() { this.size = 0; this.__data__ = { 'hash': new _Hash, 'map': new (_Map || _ListCache), 'string': new _Hash }; } var _mapCacheClear = mapCacheClear; /** * Checks if `value` is suitable for use as unique object key. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is suitable, else `false`. */ function isKeyable(value) { var type = typeof value; return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean') ? (value !== '__proto__') : (value === null); } var _isKeyable = isKeyable; /** * Gets the data for `map`. * * @private * @param {Object} map The map to query. * @param {string} key The reference key. * @returns {*} Returns the map data. */ function getMapData(map, key) { var data = map.__data__; return _isKeyable(key) ? data[typeof key == 'string' ? 'string' : 'hash'] : data.map; } var _getMapData = getMapData; /** * Removes `key` and its value from the map. * * @private * @name delete * @memberOf MapCache * @param {string} key The key of the value to remove. * @returns {boolean} Returns `true` if the entry was removed, else `false`. */ function mapCacheDelete(key) { var result = _getMapData(this, key)['delete'](key); this.size -= result ? 1 : 0; return result; } var _mapCacheDelete = mapCacheDelete; /** * Gets the map value for `key`. * * @private * @name get * @memberOf MapCache * @param {string} key The key of the value to get. * @returns {*} Returns the entry value. */ function mapCacheGet(key) { return _getMapData(this, key).get(key); } var _mapCacheGet = mapCacheGet; /** * Checks if a map value for `key` exists. * * @private * @name has * @memberOf MapCache * @param {string} key The key of the entry to check. * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. */ function mapCacheHas(key) { return _getMapData(this, key).has(key); } var _mapCacheHas = mapCacheHas; /** * Sets the map `key` to `value`. * * @private * @name set * @memberOf MapCache * @param {string} key The key of the value to set. * @param {*} value The value to set. * @returns {Object} Returns the map cache instance. */ function mapCacheSet(key, value) { var data = _getMapData(this, key), size = data.size; data.set(key, value); this.size += data.size == size ? 0 : 1; return this; } var _mapCacheSet = mapCacheSet; /** * Creates a map cache object to store key-value pairs. * * @private * @constructor * @param {Array} [entries] The key-value pairs to cache. */ function MapCache(entries) { var index = -1, length = entries == null ? 0 : entries.length; this.clear(); while (++index < length) { var entry = entries[index]; this.set(entry[0], entry[1]); } } // Add methods to `MapCache`. MapCache.prototype.clear = _mapCacheClear; MapCache.prototype['delete'] = _mapCacheDelete; MapCache.prototype.get = _mapCacheGet; MapCache.prototype.has = _mapCacheHas; MapCache.prototype.set = _mapCacheSet; var _MapCache = MapCache; /** Error message constants. */ var FUNC_ERROR_TEXT = 'Expected a function'; /** * Creates a function that memoizes the result of `func`. If `resolver` is * provided, it determines the cache key for storing the result based on the * arguments provided to the memoized function. By default, the first argument * provided to the memoized function is used as the map cache key. The `func` * is invoked with the `this` binding of the memoized function. * * **Note:** The cache is exposed as the `cache` property on the memoized * function. Its creation may be customized by replacing the `_.memoize.Cache` * constructor with one whose instances implement the * [`Map`](http://ecma-international.org/ecma-262/7.0/#sec-properties-of-the-map-prototype-object) * method interface of `clear`, `delete`, `get`, `has`, and `set`. * * @static * @memberOf _ * @since 0.1.0 * @category Function * @param {Function} func The function to have its output memoized. * @param {Function} [resolver] The function to resolve the cache key. * @returns {Function} Returns the new memoized function. * @example * * var object = { 'a': 1, 'b': 2 }; * var other = { 'c': 3, 'd': 4 }; * * var values = _.memoize(_.values); * values(object); * // => [1, 2] * * values(other); * // => [3, 4] * * object.a = 2; * values(object); * // => [1, 2] * * // Modify the result cache. * values.cache.set(object, ['a', 'b']); * values(object); * // => ['a', 'b'] * * // Replace `_.memoize.Cache`. * _.memoize.Cache = WeakMap; */ function memoize(func, resolver) { if (typeof func != 'function' || (resolver != null && typeof resolver != 'function')) { throw new TypeError(FUNC_ERROR_TEXT); } var memoized = function() { var args = arguments, key = resolver ? resolver.apply(this, args) : args[0], cache = memoized.cache; if (cache.has(key)) { return cache.get(key); } var result = func.apply(this, args); memoized.cache = cache.set(key, result) || cache; return result; }; memoized.cache = new (memoize.Cache || _MapCache); return memoized; } // Expose `MapCache`. memoize.Cache = _MapCache; var memoize_1 = memoize; /** Used as the maximum memoize cache size. */ var MAX_MEMOIZE_SIZE = 500; /** * A specialized version of `_.memoize` which clears the memoized function's * cache when it exceeds `MAX_MEMOIZE_SIZE`. * * @private * @param {Function} func The function to have its output memoized. * @returns {Function} Returns the new memoized function. */ function memoizeCapped(func) { var result = memoize_1(func, function(key) { if (cache.size === MAX_MEMOIZE_SIZE) { cache.clear(); } return key; }); var cache = result.cache; return result; } var _memoizeCapped = memoizeCapped; /** Used to match property names within property paths. */ var rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g; /** Used to match backslashes in property paths. */ var reEscapeChar = /\\(\\)?/g; /** * Converts `string` to a property path array. * * @private * @param {string} string The string to convert. * @returns {Array} Returns the property path array. */ var stringToPath = _memoizeCapped(function(string) { var result = []; if (string.charCodeAt(0) === 46 /* . */) { result.push(''); } string.replace(rePropName, function(match, number, quote, subString) { result.push(quote ? subString.replace(reEscapeChar, '$1') : (number || match)); }); return result; }); var _stringToPath = stringToPath; /** * A specialized version of `_.map` for arrays without support for iteratee * shorthands. * * @private * @param {Array} [array] The array to iterate over. * @param {Function} iteratee The function invoked per iteration. * @returns {Array} Returns the new mapped array. */ function arrayMap(array, iteratee) { var index = -1, length = array == null ? 0 : array.length, result = Array(length); while (++index < length) { result[index] = iteratee(array[index], index, array); } return result; } var _arrayMap = arrayMap; /** Used as references for various `Number` constants. */ var INFINITY$1 = 1 / 0; /** Used to convert symbols to primitives and strings. */ var symbolProto = _Symbol ? _Symbol.prototype : undefined, symbolToString = symbolProto ? symbolProto.toString : undefined; /** * The base implementation of `_.toString` which doesn't convert nullish * values to empty strings. * * @private * @param {*} value The value to process. * @returns {string} Returns the string. */ function baseToString(value) { // Exit early for strings to avoid a performance hit in some environments. if (typeof value == 'string') { return value; } if (isArray_1(value)) { // Recursively convert values (susceptible to call stack limits). return _arrayMap(value, baseToString) + ''; } if (isSymbol_1(value)) { return symbolToString ? symbolToString.call(value) : ''; } var result = (value + ''); return (result == '0' && (1 / value) == -INFINITY$1) ? '-0' : result; } var _baseToString = baseToString; /** * Converts `value` to a string. An empty string is returned for `null` * and `undefined` values. The sign of `-0` is preserved. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to convert. * @returns {string} Returns the converted string. * @example * * _.toString(null); * // => '' * * _.toString(-0); * // => '-0' * * _.toString([1, 2, 3]); * // => '1,2,3' */ function toString$1(value) { return value == null ? '' : _baseToString(value); } var toString_1 = toString$1; /** * Casts `value` to a path array if it's not one. * * @private * @param {*} value The value to inspect. * @param {Object} [object] The object to query keys on. * @returns {Array} Returns the cast property path array. */ function castPath(value, object) { if (isArray_1(value)) { return value; } return _isKey(value, object) ? [value] : _stringToPath(toString_1(value)); } var _castPath = castPath; /** Used as references for various `Number` constants. */ var INFINITY = 1 / 0; /** * Converts `value` to a string key if it's not a string or symbol. * * @private * @param {*} value The value to inspect. * @returns {string|symbol} Returns the key. */ function toKey(value) { if (typeof value == 'string' || isSymbol_1(value)) { return value; } var result = (value + ''); return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result; } var _toKey = toKey; /** * The base implementation of `_.get` without support for default values. * * @private * @param {Object} object The object to query. * @param {Array|string} path The path of the property to get. * @returns {*} Returns the resolved value. */ function baseGet(object, path) { path = _castPath(path, object); var index = 0, length = path.length; while (object != null && index < length) { object = object[_toKey(path[index++])]; } return (index && index == length) ? object : undefined; } var _baseGet = baseGet; /** * Gets the value at `path` of `object`. If the resolved value is * `undefined`, the `defaultValue` is returned in its place. * * @static * @memberOf _ * @since 3.7.0 * @category Object * @param {Object} object The object to query. * @param {Array|string} path The path of the property to get. * @param {*} [defaultValue] The value returned for `undefined` resolved values. * @returns {*} Returns the resolved value. * @example * * var object = { 'a': [{ 'b': { 'c': 3 } }] }; * * _.get(object, 'a[0].b.c'); * // => 3 * * _.get(object, ['a', '0', 'b', 'c']); * // => 3 * * _.get(object, 'a.b.c', 'default'); * // => 'default' */ function get(object, path, defaultValue) { var result = object == null ? undefined : _baseGet(object, path); return result === undefined ? defaultValue : result; } var get_1 = get; var defineProperty = (function() { try { var func = _getNative(Object, 'defineProperty'); func({}, '', {}); return func; } catch (e) {} }()); var _defineProperty = defineProperty; /** * The base implementation of `assignValue` and `assignMergeValue` without * value checks. * * @private * @param {Object} object The object to modify. * @param {string} key The key of the property to assign. * @param {*} value The value to assign. */ function baseAssignValue(object, key, value) { if (key == '__proto__' && _defineProperty) { _defineProperty(object, key, { 'configurable': true, 'enumerable': true, 'value': value, 'writable': true }); } else { object[key] = value; } } var _baseAssignValue = baseAssignValue; /** Used for built-in method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** * Assigns `value` to `key` of `object` if the existing value is not equivalent * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) * for equality comparisons. * * @private * @param {Object} object The object to modify. * @param {string} key The key of the property to assign. * @param {*} value The value to assign. */ function assignValue(object, key, value) { var objValue = object[key]; if (!(hasOwnProperty.call(object, key) && eq_1(objValue, value)) || (value === undefined && !(key in object))) { _baseAssignValue(object, key, value); } } var _assignValue = assignValue; /** Used as references for various `Number` constants. */ var MAX_SAFE_INTEGER = 9007199254740991; /** Used to detect unsigned integer values. */ var reIsUint = /^(?:0|[1-9]\d*)$/; /** * Checks if `value` is a valid array-like index. * * @private * @param {*} value The value to check. * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index. * @returns {boolean} Returns `true` if `value` is a valid index, else `false`. */ function isIndex(value, length) { var type = typeof value; length = length == null ? MAX_SAFE_INTEGER : length; return !!length && (type == 'number' || (type != 'symbol' && reIsUint.test(value))) && (value > -1 && value % 1 == 0 && value < length); } var _isIndex = isIndex; /** * The base implementation of `_.set`. * * @private * @param {Object} object The object to modify. * @param {Array|string} path The path of the property to set. * @param {*} value The value to set. * @param {Function} [customizer] The function to customize path creation. * @returns {Object} Returns `object`. */ function baseSet(object, path, value, customizer) { if (!isObject_1(object)) { return object; } path = _castPath(path, object); var index = -1, length = path.length, lastIndex = length - 1, nested = object; while (nested != null && ++index < length) { var key = _toKey(path[index]), newValue = value; if (key === '__proto__' || key === 'constructor' || key === 'prototype') { return object; } if (index != lastIndex) { var objValue = nested[key]; newValue = customizer ? customizer(objValue, key, nested) : undefined; if (newValue === undefined) { newValue = isObject_1(objValue) ? objValue : (_isIndex(path[index + 1]) ? [] : {}); } } _assignValue(nested, key, newValue); nested = nested[key]; } return object; } var _baseSet = baseSet; /** * Sets the value at `path` of `object`. If a portion of `path` doesn't exist, * it's created. Arrays are created for missing index properties while objects * are created for all other missing properties. Use `_.setWith` to customize * `path` creation. * * **Note:** This method mutates `object`. * * @static * @memberOf _ * @since 3.7.0 * @category Object * @param {Object} object The object to modify. * @param {Array|string} path The path of the property to set. * @param {*} value The value to set. * @returns {Object} Returns `object`. * @example * * var object = { 'a': [{ 'b': { 'c': 3 } }] }; * * _.set(object, 'a[0].b.c', 4); * console.log(object.a[0].b.c); * // => 4 * * _.set(object, ['x', '0', 'y', 'z'], 5); * console.log(object.x[0].y.z); * // => 5 */ function set(object, path, value) { return object == null ? object : _baseSet(object, path, value); } var set_1 = set; /** * Copies the values of `source` to `array`. * * @private * @param {Array} source The array to copy values from. * @param {Array} [array=[]] The array to copy values to. * @returns {Array} Returns `array`. */ function copyArray(source, array) { var index = -1, length = source.length; array || (array = Array(length)); while (++index < length) { array[index] = source[index]; } return array; } var _copyArray = copyArray; /** * Converts `value` to a property path array. * * @static * @memberOf _ * @since 4.0.0 * @category Util * @param {*} value The value to convert. * @returns {Array} Returns the new property path array. * @example * * _.toPath('a.b.c'); * // => ['a', 'b', 'c'] * * _.toPath('a[0].b.c'); * // => ['a', '0', 'b', 'c'] */ function toPath(value) { if (isArray_1(value)) { return _arrayMap(value, _toKey); } return isSymbol_1(value) ? [value] : _copyArray(_stringToPath(toString_1(value))); } var toPath_1 = toPath; var define$2 = { // access data field data: function data(params) { var defaults = { field: 'data', bindingEvent: 'data', allowBinding: false, allowSetting: false, allowGetting: false, settingEvent: 'data', settingTriggersEvent: false, triggerFnName: 'trigger', immutableKeys: {}, // key => true if immutable updateStyle: false, beforeGet: function beforeGet(self) {}, beforeSet: function beforeSet(self, obj) {}, onSet: function onSet(self) {}, canSet: function canSet(self) { return true; } }; params = extend({}, defaults, params); return function dataImpl(name, value) { var p = params; var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like var single = selfIsArrayLike ? self[0] : self; // .data('foo', ...) if (string(name)) { // set or get property var isPathLike = name.indexOf('.') !== -1; // there might be a normal field with a dot var path = isPathLike && toPath_1(name); // .data('foo') if (p.allowGetting && value === undefined) { // get var ret; if (single) { p.beforeGet(single); // check if it's path and a field with the same name doesn't exist if (path && single._private[p.field][name] === undefined) { ret = get_1(single._private[p.field], path); } else { ret = single._private[p.field][name]; } } return ret; // .data('foo', 'bar') } else if (p.allowSetting && value !== undefined) { // set var valid = !p.immutableKeys[name]; if (valid) { var change = _defineProperty$1({}, name, value); p.beforeSet(self, change); for (var i = 0, l = all.length; i < l; i++) { var ele = all[i]; if (p.canSet(ele)) { if (path && single._private[p.field][name] === undefined) { set_1(ele._private[p.field], path, value); } else { ele._private[p.field][name] = value; } } } // update mappers if asked if (p.updateStyle) { self.updateStyle(); } // call onSet callback p.onSet(self); if (p.settingTriggersEvent) { self[p.triggerFnName](p.settingEvent); } } } // .data({ 'foo': 'bar' }) } else if (p.allowSetting && plainObject(name)) { // extend var obj = name; var k, v; var keys = Object.keys(obj); p.beforeSet(self, obj); for (var _i = 0; _i < keys.length; _i++) { k = keys[_i]; v = obj[k]; var _valid = !p.immutableKeys[k]; if (_valid) { for (var j = 0; j < all.length; j++) { var _ele = all[j]; if (p.canSet(_ele)) { _ele._private[p.field][k] = v; } } } } // update mappers if asked if (p.updateStyle) { self.updateStyle(); } // call onSet callback p.onSet(self); if (p.settingTriggersEvent) { self[p.triggerFnName](p.settingEvent); } // .data(function(){ ... }) } else if (p.allowBinding && fn$6(name)) { // bind to event var fn = name; self.on(p.bindingEvent, fn); // .data() } else if (p.allowGetting && name === undefined) { // get whole object var _ret; if (single) { p.beforeGet(single); _ret = single._private[p.field]; } return _ret; } return self; // maintain chainability }; // function }, // data // remove data field removeData: function removeData(params) { var defaults = { field: 'data', event: 'data', triggerFnName: 'trigger', triggerEvent: false, immutableKeys: {} // key => true if immutable }; params = extend({}, defaults, params); return function removeDataImpl(names) { var p = params; var self = this; var selfIsArrayLike = self.length !== undefined; var all = selfIsArrayLike ? self : [self]; // put in array if not array-like // .removeData('foo bar') if (string(names)) { // then get the list of keys, and delete them var keys = names.split(/\s+/); var l = keys.length; for (var i = 0; i < l; i++) { // delete each non-empty key var key = keys[i]; if (emptyString(key)) { continue; } var valid = !p.immutableKeys[key]; // not valid if immutable if (valid) { for (var i_a = 0, l_a = all.length; i_a < l_a; i_a++) { all[i_a]._private[p.field][key] = undefined; } } } if (p.triggerEvent) { self[p.triggerFnName](p.event); } // .removeData() } else if (names === undefined) { // then delete all keys for (var _i_a = 0, _l_a = all.length; _i_a < _l_a; _i_a++) { var _privateFields = all[_i_a]._private[p.field]; var _keys = Object.keys(_privateFields); for (var _i2 = 0; _i2 < _keys.length; _i2++) { var _key = _keys[_i2]; var validKeyToDelete = !p.immutableKeys[_key]; if (validKeyToDelete) { _privateFields[_key] = undefined; } } } if (p.triggerEvent) { self[p.triggerFnName](p.event); } } return self; // maintain chaining }; // function } // removeData }; // define var define$1 = { eventAliasesOn: function eventAliasesOn(proto) { var p = proto; p.addListener = p.listen = p.bind = p.on; p.unlisten = p.unbind = p.off = p.removeListener; p.trigger = p.emit; // this is just a wrapper alias of .on() p.pon = p.promiseOn = function (events, selector) { var self = this; var args = Array.prototype.slice.call(arguments, 0); return new Promise$1(function (resolve, reject) { var callback = function callback(e) { self.off.apply(self, offArgs); resolve(e); }; var onArgs = args.concat([callback]); var offArgs = onArgs.concat([]); self.on.apply(self, onArgs); }); }; } }; // define // use this module to cherry pick functions into your prototype var define = {}; [define$3, define$2, define$1].forEach(function (m) { extend(define, m); }); var elesfn$i = { animate: define.animate(), animation: define.animation(), animated: define.animated(), clearQueue: define.clearQueue(), delay: define.delay(), delayAnimation: define.delayAnimation(), stop: define.stop() }; var elesfn$h = { classes: function classes(_classes) { var self = this; if (_classes === undefined) { var ret = []; self[0]._private.classes.forEach(function (cls) { return ret.push(cls); }); return ret; } else if (!array(_classes)) { // extract classes from string _classes = (_classes || '').match(/\S+/g) || []; } var changed = []; var classesSet = new Set$1(_classes); // check and update each ele for (var j = 0; j < self.length; j++) { var ele = self[j]; var _p = ele._private; var eleClasses = _p.classes; var changedEle = false; // check if ele has all of the passed classes for (var i = 0; i < _classes.length; i++) { var cls = _classes[i]; var eleHasClass = eleClasses.has(cls); if (!eleHasClass) { changedEle = true; break; } } // check if ele has classes outside of those passed if (!changedEle) { changedEle = eleClasses.size !== _classes.length; } if (changedEle) { _p.classes = classesSet; changed.push(ele); } } // trigger update style on those eles that had class changes if (changed.length > 0) { this.spawn(changed).updateStyle().emit('class'); } return self; }, addClass: function addClass(classes) { return this.toggleClass(classes, true); }, hasClass: function hasClass(className) { var ele = this[0]; return ele != null && ele._private.classes.has(className); }, toggleClass: function toggleClass(classes, toggle) { if (!array(classes)) { // extract classes from string classes = classes.match(/\S+/g) || []; } var self = this; var toggleUndefd = toggle === undefined; var changed = []; // eles who had classes changed for (var i = 0, il = self.length; i < il; i++) { var ele = self[i]; var eleClasses = ele._private.classes; var changedEle = false; for (var j = 0; j < classes.length; j++) { var cls = classes[j]; var hasClass = eleClasses.has(cls); var changedNow = false; if (toggle || toggleUndefd && !hasClass) { eleClasses.add(cls); changedNow = true; } else if (!toggle || toggleUndefd && hasClass) { eleClasses["delete"](cls); changedNow = true; } if (!changedEle && changedNow) { changed.push(ele); changedEle = true; } } // for j classes } // for i eles // trigger update style on those eles that had class changes if (changed.length > 0) { this.spawn(changed).updateStyle().emit('class'); } return self; }, removeClass: function removeClass(classes) { return this.toggleClass(classes, false); }, flashClass: function flashClass(classes, duration) { var self = this; if (duration == null) { duration = 250; } else if (duration === 0) { return self; // nothing to do really } self.addClass(classes); setTimeout(function () { self.removeClass(classes); }, duration); return self; } }; elesfn$h.className = elesfn$h.classNames = elesfn$h.classes; // tokens in the query language var tokens = { metaChar: '[\\!\\"\\#\\$\\%\\&\\\'\\(\\)\\*\\+\\,\\.\\/\\:\\;\\<\\=\\>\\?\\@\\[\\]\\^\\`\\{\\|\\}\\~]', // chars we need to escape in let names, etc comparatorOp: '=|\\!=|>|>=|<|<=|\\$=|\\^=|\\*=', // binary comparison op (used in data selectors) boolOp: '\\?|\\!|\\^', // boolean (unary) operators (used in data selectors) string: '"(?:\\\\"|[^"])*"' + '|' + "'(?:\\\\'|[^'])*'", // string literals (used in data selectors) -- doublequotes | singlequotes number: number, // number literal (used in data selectors) --- e.g. 0.1234, 1234, 12e123 meta: 'degree|indegree|outdegree', // allowed metadata fields (i.e. allowed functions to use from Collection) separator: '\\s*,\\s*', // queries are separated by commas, e.g. edge[foo = 'bar'], node.someClass descendant: '\\s+', child: '\\s+>\\s+', subject: '\\$', group: 'node|edge|\\*', directedEdge: '\\s+->\\s+', undirectedEdge: '\\s+<->\\s+' }; tokens.variable = '(?:[\\w-.]|(?:\\\\' + tokens.metaChar + '))+'; // a variable name can have letters, numbers, dashes, and periods tokens.className = '(?:[\\w-]|(?:\\\\' + tokens.metaChar + '))+'; // a class name has the same rules as a variable except it can't have a '.' in the name tokens.value = tokens.string + '|' + tokens.number; // a value literal, either a string or number tokens.id = tokens.variable; // an element id (follows variable conventions) (function () { var ops, op, i; // add @ variants to comparatorOp ops = tokens.comparatorOp.split('|'); for (i = 0; i < ops.length; i++) { op = ops[i]; tokens.comparatorOp += '|@' + op; } // add ! variants to comparatorOp ops = tokens.comparatorOp.split('|'); for (i = 0; i < ops.length; i++) { op = ops[i]; if (op.indexOf('!') >= 0) { continue; } // skip ops that explicitly contain ! if (op === '=') { continue; } // skip = b/c != is explicitly defined tokens.comparatorOp += '|\\!' + op; } })(); /** * Make a new query object * * @prop type {Type} The type enum (int) of the query * @prop checks List of checks to make against an ele to test for a match */ var newQuery = function newQuery() { return { checks: [] }; }; /** * A check type enum-like object. Uses integer values for fast match() lookup. * The ordering does not matter as long as the ints are unique. */ var Type = { /** E.g. node */ GROUP: 0, /** A collection of elements */ COLLECTION: 1, /** A filter(ele) function */ FILTER: 2, /** E.g. [foo > 1] */ DATA_COMPARE: 3, /** E.g. [foo] */ DATA_EXIST: 4, /** E.g. [?foo] */ DATA_BOOL: 5, /** E.g. [[degree > 2]] */ META_COMPARE: 6, /** E.g. :selected */ STATE: 7, /** E.g. #foo */ ID: 8, /** E.g. .foo */ CLASS: 9, /** E.g. #foo <-> #bar */ UNDIRECTED_EDGE: 10, /** E.g. #foo -> #bar */ DIRECTED_EDGE: 11, /** E.g. $#foo -> #bar */ NODE_SOURCE: 12, /** E.g. #foo -> $#bar */ NODE_TARGET: 13, /** E.g. $#foo <-> #bar */ NODE_NEIGHBOR: 14, /** E.g. #foo > #bar */ CHILD: 15, /** E.g. #foo #bar */ DESCENDANT: 16, /** E.g. $#foo > #bar */ PARENT: 17, /** E.g. $#foo #bar */ ANCESTOR: 18, /** E.g. #foo > $bar > #baz */ COMPOUND_SPLIT: 19, /** Always matches, useful placeholder for subject in `COMPOUND_SPLIT` */ TRUE: 20 }; var stateSelectors = [{ selector: ':selected', matches: function matches(ele) { return ele.selected(); } }, { selector: ':unselected', matches: function matches(ele) { return !ele.selected(); } }, { selector: ':selectable', matches: function matches(ele) { return ele.selectable(); } }, { selector: ':unselectable', matches: function matches(ele) { return !ele.selectable(); } }, { selector: ':locked', matches: function matches(ele) { return ele.locked(); } }, { selector: ':unlocked', matches: function matches(ele) { return !ele.locked(); } }, { selector: ':visible', matches: function matches(ele) { return ele.visible(); } }, { selector: ':hidden', matches: function matches(ele) { return !ele.visible(); } }, { selector: ':transparent', matches: function matches(ele) { return ele.transparent(); } }, { selector: ':grabbed', matches: function matches(ele) { return ele.grabbed(); } }, { selector: ':free', matches: function matches(ele) { return !ele.grabbed(); } }, { selector: ':removed', matches: function matches(ele) { return ele.removed(); } }, { selector: ':inside', matches: function matches(ele) { return !ele.removed(); } }, { selector: ':grabbable', matches: function matches(ele) { return ele.grabbable(); } }, { selector: ':ungrabbable', matches: function matches(ele) { return !ele.grabbable(); } }, { selector: ':animated', matches: function matches(ele) { return ele.animated(); } }, { selector: ':unanimated', matches: function matches(ele) { return !ele.animated(); } }, { selector: ':parent', matches: function matches(ele) { return ele.isParent(); } }, { selector: ':childless', matches: function matches(ele) { return ele.isChildless(); } }, { selector: ':child', matches: function matches(ele) { return ele.isChild(); } }, { selector: ':orphan', matches: function matches(ele) { return ele.isOrphan(); } }, { selector: ':nonorphan', matches: function matches(ele) { return ele.isChild(); } }, { selector: ':compound', matches: function matches(ele) { if (ele.isNode()) { return ele.isParent(); } else { return ele.source().isParent() || ele.target().isParent(); } } }, { selector: ':loop', matches: function matches(ele) { return ele.isLoop(); } }, { selector: ':simple', matches: function matches(ele) { return ele.isSimple(); } }, { selector: ':active', matches: function matches(ele) { return ele.active(); } }, { selector: ':inactive', matches: function matches(ele) { return !ele.active(); } }, { selector: ':backgrounding', matches: function matches(ele) { return ele.backgrounding(); } }, { selector: ':nonbackgrounding', matches: function matches(ele) { return !ele.backgrounding(); } }].sort(function (a, b) { // n.b. selectors that are starting substrings of others must have the longer ones first return descending(a.selector, b.selector); }); var lookup = function () { var selToFn = {}; var s; for (var i = 0; i < stateSelectors.length; i++) { s = stateSelectors[i]; selToFn[s.selector] = s.matches; } return selToFn; }(); var stateSelectorMatches = function stateSelectorMatches(sel, ele) { return lookup[sel](ele); }; var stateSelectorRegex = '(' + stateSelectors.map(function (s) { return s.selector; }).join('|') + ')'; // when a token like a variable has escaped meta characters, we need to clean the backslashes out // so that values get compared properly in Selector.filter() var cleanMetaChars = function cleanMetaChars(str) { return str.replace(new RegExp('\\\\(' + tokens.metaChar + ')', 'g'), function (match, $1) { return $1; }); }; var replaceLastQuery = function replaceLastQuery(selector, examiningQuery, replacementQuery) { selector[selector.length - 1] = replacementQuery; }; // NOTE: add new expression syntax here to have it recognised by the parser; // - a query contains all adjacent (i.e. no separator in between) expressions; // - the current query is stored in selector[i] // - you need to check the query objects in match() for it actually filter properly, but that's pretty straight forward var exprs = [{ name: 'group', // just used for identifying when debugging query: true, regex: '(' + tokens.group + ')', populate: function populate(selector, query, _ref) { var _ref2 = _slicedToArray(_ref, 1), group = _ref2[0]; query.checks.push({ type: Type.GROUP, value: group === '*' ? group : group + 's' }); } }, { name: 'state', query: true, regex: stateSelectorRegex, populate: function populate(selector, query, _ref3) { var _ref4 = _slicedToArray(_ref3, 1), state = _ref4[0]; query.checks.push({ type: Type.STATE, value: state }); } }, { name: 'id', query: true, regex: '\\#(' + tokens.id + ')', populate: function populate(selector, query, _ref5) { var _ref6 = _slicedToArray(_ref5, 1), id = _ref6[0]; query.checks.push({ type: Type.ID, value: cleanMetaChars(id) }); } }, { name: 'className', query: true, regex: '\\.(' + tokens.className + ')', populate: function populate(selector, query, _ref7) { var _ref8 = _slicedToArray(_ref7, 1), className = _ref8[0]; query.checks.push({ type: Type.CLASS, value: cleanMetaChars(className) }); } }, { name: 'dataExists', query: true, regex: '\\[\\s*(' + tokens.variable + ')\\s*\\]', populate: function populate(selector, query, _ref9) { var _ref10 = _slicedToArray(_ref9, 1), variable = _ref10[0]; query.checks.push({ type: Type.DATA_EXIST, field: cleanMetaChars(variable) }); } }, { name: 'dataCompare', query: true, regex: '\\[\\s*(' + tokens.variable + ')\\s*(' + tokens.comparatorOp + ')\\s*(' + tokens.value + ')\\s*\\]', populate: function populate(selector, query, _ref11) { var _ref12 = _slicedToArray(_ref11, 3), variable = _ref12[0], comparatorOp = _ref12[1], value = _ref12[2]; var valueIsString = new RegExp('^' + tokens.string + '$').exec(value) != null; if (valueIsString) { value = value.substring(1, value.length - 1); } else { value = parseFloat(value); } query.checks.push({ type: Type.DATA_COMPARE, field: cleanMetaChars(variable), operator: comparatorOp, value: value }); } }, { name: 'dataBool', query: true, regex: '\\[\\s*(' + tokens.boolOp + ')\\s*(' + tokens.variable + ')\\s*\\]', populate: function populate(selector, query, _ref13) { var _ref14 = _slicedToArray(_ref13, 2), boolOp = _ref14[0], variable = _ref14[1]; query.checks.push({ type: Type.DATA_BOOL, field: cleanMetaChars(variable), operator: boolOp }); } }, { name: 'metaCompare', query: true, regex: '\\[\\[\\s*(' + tokens.meta + ')\\s*(' + tokens.comparatorOp + ')\\s*(' + tokens.number + ')\\s*\\]\\]', populate: function populate(selector, query, _ref15) { var _ref16 = _slicedToArray(_ref15, 3), meta = _ref16[0], comparatorOp = _ref16[1], number = _ref16[2]; query.checks.push({ type: Type.META_COMPARE, field: cleanMetaChars(meta), operator: comparatorOp, value: parseFloat(number) }); } }, { name: 'nextQuery', separator: true, regex: tokens.separator, populate: function populate(selector, query) { var currentSubject = selector.currentSubject; var edgeCount = selector.edgeCount; var compoundCount = selector.compoundCount; var lastQ = selector[selector.length - 1]; if (currentSubject != null) { lastQ.subject = currentSubject; selector.currentSubject = null; } lastQ.edgeCount = edgeCount; lastQ.compoundCount = compoundCount; selector.edgeCount = 0; selector.compoundCount = 0; // go on to next query var nextQuery = selector[selector.length++] = newQuery(); return nextQuery; // this is the new query to be filled by the following exprs } }, { name: 'directedEdge', separator: true, regex: tokens.directedEdge, populate: function populate(selector, query) { if (selector.currentSubject == null) { // undirected edge var edgeQuery = newQuery(); var source = query; var target = newQuery(); edgeQuery.checks.push({ type: Type.DIRECTED_EDGE, source: source, target: target }); // the query in the selector should be the edge rather than the source replaceLastQuery(selector, query, edgeQuery); selector.edgeCount++; // we're now populating the target query with expressions that follow return target; } else { // source/target var srcTgtQ = newQuery(); var _source = query; var _target = newQuery(); srcTgtQ.checks.push({ type: Type.NODE_SOURCE, source: _source, target: _target }); // the query in the selector should be the neighbourhood rather than the node replaceLastQuery(selector, query, srcTgtQ); selector.edgeCount++; return _target; // now populating the target with the following expressions } } }, { name: 'undirectedEdge', separator: true, regex: tokens.undirectedEdge, populate: function populate(selector, query) { if (selector.currentSubject == null) { // undirected edge var edgeQuery = newQuery(); var source = query; var target = newQuery(); edgeQuery.checks.push({ type: Type.UNDIRECTED_EDGE, nodes: [source, target] }); // the query in the selector should be the edge rather than the source replaceLastQuery(selector, query, edgeQuery); selector.edgeCount++; // we're now populating the target query with expressions that follow return target; } else { // neighbourhood var nhoodQ = newQuery(); var node = query; var neighbor = newQuery(); nhoodQ.checks.push({ type: Type.NODE_NEIGHBOR, node: node, neighbor: neighbor }); // the query in the selector should be the neighbourhood rather than the node replaceLastQuery(selector, query, nhoodQ); return neighbor; // now populating the neighbor with following expressions } } }, { name: 'child', separator: true, regex: tokens.child, populate: function populate(selector, query) { if (selector.currentSubject == null) { // default: child query var parentChildQuery = newQuery(); var child = newQuery(); var parent = selector[selector.length - 1]; parentChildQuery.checks.push({ type: Type.CHILD, parent: parent, child: child }); // the query in the selector should be the '>' itself replaceLastQuery(selector, query, parentChildQuery); selector.compoundCount++; // we're now populating the child query with expressions that follow return child; } else if (selector.currentSubject === query) { // compound split query var compound = newQuery(); var left = selector[selector.length - 1]; var right = newQuery(); var subject = newQuery(); var _child = newQuery(); var _parent = newQuery(); // set up the root compound q compound.checks.push({ type: Type.COMPOUND_SPLIT, left: left, right: right, subject: subject }); // populate the subject and replace the q at the old spot (within left) with TRUE subject.checks = query.checks; // take the checks from the left query.checks = [{ type: Type.TRUE }]; // checks under left refs the subject implicitly // set up the right q _parent.checks.push({ type: Type.TRUE }); // parent implicitly refs the subject right.checks.push({ type: Type.PARENT, // type is swapped on right side queries parent: _parent, child: _child // empty for now }); replaceLastQuery(selector, left, compound); // update the ref since we moved things around for `query` selector.currentSubject = subject; selector.compoundCount++; return _child; // now populating the right side's child } else { // parent query // info for parent query var _parent2 = newQuery(); var _child2 = newQuery(); var pcQChecks = [{ type: Type.PARENT, parent: _parent2, child: _child2 }]; // the parent-child query takes the place of the query previously being populated _parent2.checks = query.checks; // the previous query contains the checks for the parent query.checks = pcQChecks; // pc query takes over selector.compoundCount++; return _child2; // we're now populating the child } } }, { name: 'descendant', separator: true, regex: tokens.descendant, populate: function populate(selector, query) { if (selector.currentSubject == null) { // default: descendant query var ancChQuery = newQuery(); var descendant = newQuery(); var ancestor = selector[selector.length - 1]; ancChQuery.checks.push({ type: Type.DESCENDANT, ancestor: ancestor, descendant: descendant }); // the query in the selector should be the '>' itself replaceLastQuery(selector, query, ancChQuery); selector.compoundCount++; // we're now populating the descendant query with expressions that follow return descendant; } else if (selector.currentSubject === query) { // compound split query var compound = newQuery(); var left = selector[selector.length - 1]; var right = newQuery(); var subject = newQuery(); var _descendant = newQuery(); var _ancestor = newQuery(); // set up the root compound q compound.checks.push({ type: Type.COMPOUND_SPLIT, left: left, right: right, subject: subject }); // populate the subject and replace the q at the old spot (within left) with TRUE subject.checks = query.checks; // take the checks from the left query.checks = [{ type: Type.TRUE }]; // checks under left refs the subject implicitly // set up the right q _ancestor.checks.push({ type: Type.TRUE }); // ancestor implicitly refs the subject right.checks.push({ type: Type.ANCESTOR, // type is swapped on right side queries ancestor: _ancestor, descendant: _descendant // empty for now }); replaceLastQuery(selector, left, compound); // update the ref since we moved things around for `query` selector.currentSubject = subject; selector.compoundCount++; return _descendant; // now populating the right side's descendant } else { // ancestor query // info for parent query var _ancestor2 = newQuery(); var _descendant2 = newQuery(); var adQChecks = [{ type: Type.ANCESTOR, ancestor: _ancestor2, descendant: _descendant2 }]; // the parent-child query takes the place of the query previously being populated _ancestor2.checks = query.checks; // the previous query contains the checks for the parent query.checks = adQChecks; // pc query takes over selector.compoundCount++; return _descendant2; // we're now populating the child } } }, { name: 'subject', modifier: true, regex: tokens.subject, populate: function populate(selector, query) { if (selector.currentSubject != null && selector.currentSubject !== query) { warn('Redefinition of subject in selector `' + selector.toString() + '`'); return false; } selector.currentSubject = query; var topQ = selector[selector.length - 1]; var topChk = topQ.checks[0]; var topType = topChk == null ? null : topChk.type; if (topType === Type.DIRECTED_EDGE) { // directed edge with subject on the target // change to target node check topChk.type = Type.NODE_TARGET; } else if (topType === Type.UNDIRECTED_EDGE) { // undirected edge with subject on the second node // change to neighbor check topChk.type = Type.NODE_NEIGHBOR; topChk.node = topChk.nodes[1]; // second node is subject topChk.neighbor = topChk.nodes[0]; // clean up unused fields for new type topChk.nodes = null; } } }]; exprs.forEach(function (e) { return e.regexObj = new RegExp('^' + e.regex); }); /** * Of all the expressions, find the first match in the remaining text. * @param {string} remaining The remaining text to parse * @returns The matched expression and the newly remaining text `{ expr, match, name, remaining }` */ var consumeExpr = function consumeExpr(remaining) { var expr; var match; var name; for (var j = 0; j < exprs.length; j++) { var e = exprs[j]; var n = e.name; var m = remaining.match(e.regexObj); if (m != null) { match = m; expr = e; name = n; var consumed = m[0]; remaining = remaining.substring(consumed.length); break; // we've consumed one expr, so we can return now } } return { expr: expr, match: match, name: name, remaining: remaining }; }; /** * Consume all the leading whitespace * @param {string} remaining The text to consume * @returns The text with the leading whitespace removed */ var consumeWhitespace = function consumeWhitespace(remaining) { var match = remaining.match(/^\s+/); if (match) { var consumed = match[0]; remaining = remaining.substring(consumed.length); } return remaining; }; /** * Parse the string and store the parsed representation in the Selector. * @param {string} selector The selector string * @returns `true` if the selector was successfully parsed, `false` otherwise */ var parse = function parse(selector) { var self = this; var remaining = self.inputText = selector; var currentQuery = self[0] = newQuery(); self.length = 1; remaining = consumeWhitespace(remaining); // get rid of leading whitespace for (;;) { var exprInfo = consumeExpr(remaining); if (exprInfo.expr == null) { warn('The selector `' + selector + '`is invalid'); return false; } else { var args = exprInfo.match.slice(1); // let the token populate the selector object in currentQuery var ret = exprInfo.expr.populate(self, currentQuery, args); if (ret === false) { return false; // exit if population failed } else if (ret != null) { currentQuery = ret; // change the current query to be filled if the expr specifies } } remaining = exprInfo.remaining; // we're done when there's nothing left to parse if (remaining.match(/^\s*$/)) { break; } } var lastQ = self[self.length - 1]; if (self.currentSubject != null) { lastQ.subject = self.currentSubject; } lastQ.edgeCount = self.edgeCount; lastQ.compoundCount = self.compoundCount; for (var i = 0; i < self.length; i++) { var q = self[i]; // in future, this could potentially be allowed if there were operator precedence and detection of invalid combinations if (q.compoundCount > 0 && q.edgeCount > 0) { warn('The selector `' + selector + '` is invalid because it uses both a compound selector and an edge selector'); return false; } if (q.edgeCount > 1) { warn('The selector `' + selector + '` is invalid because it uses multiple edge selectors'); return false; } else if (q.edgeCount === 1) { warn('The selector `' + selector + '` is deprecated. Edge selectors do not take effect on changes to source and target nodes after an edge is added, for performance reasons. Use a class or data selector on edges instead, updating the class or data of an edge when your app detects a change in source or target nodes.'); } } return true; // success }; /** * Get the selector represented as a string. This value uses default formatting, * so things like spacing may differ from the input text passed to the constructor. * @returns {string} The selector string */ var toString = function toString() { if (this.toStringCache != null) { return this.toStringCache; } var clean = function clean(obj) { if (obj == null) { return ''; } else { return obj; } }; var cleanVal = function cleanVal(val) { if (string(val)) { return '"' + val + '"'; } else { return clean(val); } }; var space = function space(val) { return ' ' + val + ' '; }; var checkToString = function checkToString(check, subject) { var type = check.type, value = check.value; switch (type) { case Type.GROUP: { var group = clean(value); return group.substring(0, group.length - 1); } case Type.DATA_COMPARE: { var field = check.field, operator = check.operator; return '[' + field + space(clean(operator)) + cleanVal(value) + ']'; } case Type.DATA_BOOL: { var _operator = check.operator, _field = check.field; return '[' + clean(_operator) + _field + ']'; } case Type.DATA_EXIST: { var _field2 = check.field; return '[' + _field2 + ']'; } case Type.META_COMPARE: { var _operator2 = check.operator, _field3 = check.field; return '[[' + _field3 + space(clean(_operator2)) + cleanVal(value) + ']]'; } case Type.STATE: { return value; } case Type.ID: { return '#' + value; } case Type.CLASS: { return '.' + value; } case Type.PARENT: case Type.CHILD: { return queryToString(check.parent, subject) + space('>') + queryToString(check.child, subject); } case Type.ANCESTOR: case Type.DESCENDANT: { return queryToString(check.ancestor, subject) + ' ' + queryToString(check.descendant, subject); } case Type.COMPOUND_SPLIT: { var lhs = queryToString(check.left, subject); var sub = queryToString(check.subject, subject); var rhs = queryToString(check.right, subject); return lhs + (lhs.length > 0 ? ' ' : '') + sub + rhs; } case Type.TRUE: { return ''; } } }; var queryToString = function queryToString(query, subject) { return query.checks.reduce(function (str, chk, i) { return str + (subject === query && i === 0 ? '$' : '') + checkToString(chk, subject); }, ''); }; var str = ''; for (var i = 0; i < this.length; i++) { var query = this[i]; str += queryToString(query, query.subject); if (this.length > 1 && i < this.length - 1) { str += ', '; } } this.toStringCache = str; return str; }; var parse$1 = { parse: parse, toString: toString }; var valCmp = function valCmp(fieldVal, operator, value) { var matches; var isFieldStr = string(fieldVal); var isFieldNum = number$1(fieldVal); var isValStr = string(value); var fieldStr, valStr; var caseInsensitive = false; var notExpr = false; var isIneqCmp = false; if (operator.indexOf('!') >= 0) { operator = operator.replace('!', ''); notExpr = true; } if (operator.indexOf('@') >= 0) { operator = operator.replace('@', ''); caseInsensitive = true; } if (isFieldStr || isValStr || caseInsensitive) { fieldStr = !isFieldStr && !isFieldNum ? '' : '' + fieldVal; valStr = '' + value; } // if we're doing a case insensitive comparison, then we're using a STRING comparison // even if we're comparing numbers if (caseInsensitive) { fieldVal = fieldStr = fieldStr.toLowerCase(); value = valStr = valStr.toLowerCase(); } switch (operator) { case '*=': matches = fieldStr.indexOf(valStr) >= 0; break; case '$=': matches = fieldStr.indexOf(valStr, fieldStr.length - valStr.length) >= 0; break; case '^=': matches = fieldStr.indexOf(valStr) === 0; break; case '=': matches = fieldVal === value; break; case '>': isIneqCmp = true; matches = fieldVal > value; break; case '>=': isIneqCmp = true; matches = fieldVal >= value; break; case '<': isIneqCmp = true; matches = fieldVal < value; break; case '<=': isIneqCmp = true; matches = fieldVal <= value; break; default: matches = false; break; } // apply the not op, but null vals for inequalities should always stay non-matching if (notExpr && (fieldVal != null || !isIneqCmp)) { matches = !matches; } return matches; }; var boolCmp = function boolCmp(fieldVal, operator) { switch (operator) { case '?': return fieldVal ? true : false; case '!': return fieldVal ? false : true; case '^': return fieldVal === undefined; } }; var existCmp = function existCmp(fieldVal) { return fieldVal !== undefined; }; var data$1 = function data(ele, field) { return ele.data(field); }; var meta = function meta(ele, field) { return ele[field](); }; /** A lookup of `match(check, ele)` functions by `Type` int */ var match = []; /** * Returns whether the query matches for the element * @param query The `{ type, value, ... }` query object * @param ele The element to compare against */ var matches$1 = function matches(query, ele) { return query.checks.every(function (chk) { return match[chk.type](chk, ele); }); }; match[Type.GROUP] = function (check, ele) { var group = check.value; return group === '*' || group === ele.group(); }; match[Type.STATE] = function (check, ele) { var stateSelector = check.value; return stateSelectorMatches(stateSelector, ele); }; match[Type.ID] = function (check, ele) { var id = check.value; return ele.id() === id; }; match[Type.CLASS] = function (check, ele) { var cls = check.value; return ele.hasClass(cls); }; match[Type.META_COMPARE] = function (check, ele) { var field = check.field, operator = check.operator, value = check.value; return valCmp(meta(ele, field), operator, value); }; match[Type.DATA_COMPARE] = function (check, ele) { var field = check.field, operator = check.operator, value = check.value; return valCmp(data$1(ele, field), operator, value); }; match[Type.DATA_BOOL] = function (check, ele) { var field = check.field, operator = check.operator; return boolCmp(data$1(ele, field), operator); }; match[Type.DATA_EXIST] = function (check, ele) { var field = check.field; check.operator; return existCmp(data$1(ele, field)); }; match[Type.UNDIRECTED_EDGE] = function (check, ele) { var qA = check.nodes[0]; var qB = check.nodes[1]; var src = ele.source(); var tgt = ele.target(); return matches$1(qA, src) && matches$1(qB, tgt) || matches$1(qB, src) && matches$1(qA, tgt); }; match[Type.NODE_NEIGHBOR] = function (check, ele) { return matches$1(check.node, ele) && ele.neighborhood().some(function (n) { return n.isNode() && matches$1(check.neighbor, n); }); }; match[Type.DIRECTED_EDGE] = function (check, ele) { return matches$1(check.source, ele.source()) && matches$1(check.target, ele.target()); }; match[Type.NODE_SOURCE] = function (check, ele) { return matches$1(check.source, ele) && ele.outgoers().some(function (n) { return n.isNode() && matches$1(check.target, n); }); }; match[Type.NODE_TARGET] = function (check, ele) { return matches$1(check.target, ele) && ele.incomers().some(function (n) { return n.isNode() && matches$1(check.source, n); }); }; match[Type.CHILD] = function (check, ele) { return matches$1(check.child, ele) && matches$1(check.parent, ele.parent()); }; match[Type.PARENT] = function (check, ele) { return matches$1(check.parent, ele) && ele.children().some(function (c) { return matches$1(check.child, c); }); }; match[Type.DESCENDANT] = function (check, ele) { return matches$1(check.descendant, ele) && ele.ancestors().some(function (a) { return matches$1(check.ancestor, a); }); }; match[Type.ANCESTOR] = function (check, ele) { return matches$1(check.ancestor, ele) && ele.descendants().some(function (d) { return matches$1(check.descendant, d); }); }; match[Type.COMPOUND_SPLIT] = function (check, ele) { return matches$1(check.subject, ele) && matches$1(check.left, ele) && matches$1(check.right, ele); }; match[Type.TRUE] = function () { return true; }; match[Type.COLLECTION] = function (check, ele) { var collection = check.value; return collection.has(ele); }; match[Type.FILTER] = function (check, ele) { var filter = check.value; return filter(ele); }; // filter an existing collection var filter = function filter(collection) { var self = this; // for 1 id #foo queries, just get the element if (self.length === 1 && self[0].checks.length === 1 && self[0].checks[0].type === Type.ID) { return collection.getElementById(self[0].checks[0].value).collection(); } var selectorFunction = function selectorFunction(element) { for (var j = 0; j < self.length; j++) { var query = self[j]; if (matches$1(query, element)) { return true; } } return false; }; if (self.text() == null) { selectorFunction = function selectorFunction() { return true; }; } return collection.filter(selectorFunction); }; // filter // does selector match a single element? var matches = function matches(ele) { var self = this; for (var j = 0; j < self.length; j++) { var query = self[j]; if (matches$1(query, ele)) { return true; } } return false; }; // matches var matching = { matches: matches, filter: filter }; var Selector = function Selector(selector) { this.inputText = selector; this.currentSubject = null; this.compoundCount = 0; this.edgeCount = 0; this.length = 0; if (selector == null || string(selector) && selector.match(/^\s*$/)) ; else if (elementOrCollection(selector)) { this.addQuery({ checks: [{ type: Type.COLLECTION, value: selector.collection() }] }); } else if (fn$6(selector)) { this.addQuery({ checks: [{ type: Type.FILTER, value: selector }] }); } else if (string(selector)) { if (!this.parse(selector)) { this.invalid = true; } } else { error('A selector must be created from a string; found '); } }; var selfn = Selector.prototype; [parse$1, matching].forEach(function (p) { return extend(selfn, p); }); selfn.text = function () { return this.inputText; }; selfn.size = function () { return this.length; }; selfn.eq = function (i) { return this[i]; }; selfn.sameText = function (otherSel) { return !this.invalid && !otherSel.invalid && this.text() === otherSel.text(); }; selfn.addQuery = function (q) { this[this.length++] = q; }; selfn.selector = selfn.toString; var elesfn$g = { allAre: function allAre(selector) { var selObj = new Selector(selector); return this.every(function (ele) { return selObj.matches(ele); }); }, is: function is(selector) { var selObj = new Selector(selector); return this.some(function (ele) { return selObj.matches(ele); }); }, some: function some(fn, thisArg) { for (var i = 0; i < this.length; i++) { var ret = !thisArg ? fn(this[i], i, this) : fn.apply(thisArg, [this[i], i, this]); if (ret) { return true; } } return false; }, every: function every(fn, thisArg) { for (var i = 0; i < this.length; i++) { var ret = !thisArg ? fn(this[i], i, this) : fn.apply(thisArg, [this[i], i, this]); if (!ret) { return false; } } return true; }, same: function same(collection) { // cheap collection ref check if (this === collection) { return true; } collection = this.cy().collection(collection); var thisLength = this.length; var collectionLength = collection.length; // cheap length check if (thisLength !== collectionLength) { return false; } // cheap element ref check if (thisLength === 1) { return this[0] === collection[0]; } return this.every(function (ele) { return collection.hasElementWithId(ele.id()); }); }, anySame: function anySame(collection) { collection = this.cy().collection(collection); return this.some(function (ele) { return collection.hasElementWithId(ele.id()); }); }, allAreNeighbors: function allAreNeighbors(collection) { collection = this.cy().collection(collection); var nhood = this.neighborhood(); return collection.every(function (ele) { return nhood.hasElementWithId(ele.id()); }); }, contains: function contains(collection) { collection = this.cy().collection(collection); var self = this; return collection.every(function (ele) { return self.hasElementWithId(ele.id()); }); } }; elesfn$g.allAreNeighbours = elesfn$g.allAreNeighbors; elesfn$g.has = elesfn$g.contains; elesfn$g.equal = elesfn$g.equals = elesfn$g.same; var cache = function cache(fn, name) { return function traversalCache(arg1, arg2, arg3, arg4) { var selectorOrEles = arg1; var eles = this; var key; if (selectorOrEles == null) { key = ''; } else if (elementOrCollection(selectorOrEles) && selectorOrEles.length === 1) { key = selectorOrEles.id(); } if (eles.length === 1 && key) { var _p = eles[0]._private; var tch = _p.traversalCache = _p.traversalCache || {}; var ch = tch[name] = tch[name] || []; var hash = hashString(key); var cacheHit = ch[hash]; if (cacheHit) { return cacheHit; } else { return ch[hash] = fn.call(eles, arg1, arg2, arg3, arg4); } } else { return fn.call(eles, arg1, arg2, arg3, arg4); } }; }; var elesfn$f = { parent: function parent(selector) { var parents = []; // optimisation for single ele call if (this.length === 1) { var parent = this[0]._private.parent; if (parent) { return parent; } } for (var i = 0; i < this.length; i++) { var ele = this[i]; var _parent = ele._private.parent; if (_parent) { parents.push(_parent); } } return this.spawn(parents, true).filter(selector); }, parents: function parents(selector) { var parents = []; var eles = this.parent(); while (eles.nonempty()) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; parents.push(ele); } eles = eles.parent(); } return this.spawn(parents, true).filter(selector); }, commonAncestors: function commonAncestors(selector) { var ancestors; for (var i = 0; i < this.length; i++) { var ele = this[i]; var parents = ele.parents(); ancestors = ancestors || parents; ancestors = ancestors.intersect(parents); // current list must be common with current ele parents set } return ancestors.filter(selector); }, orphans: function orphans(selector) { return this.stdFilter(function (ele) { return ele.isOrphan(); }).filter(selector); }, nonorphans: function nonorphans(selector) { return this.stdFilter(function (ele) { return ele.isChild(); }).filter(selector); }, children: cache(function (selector) { var children = []; for (var i = 0; i < this.length; i++) { var ele = this[i]; var eleChildren = ele._private.children; for (var j = 0; j < eleChildren.length; j++) { children.push(eleChildren[j]); } } return this.spawn(children, true).filter(selector); }, 'children'), siblings: function siblings(selector) { return this.parent().children().not(this).filter(selector); }, isParent: function isParent() { var ele = this[0]; if (ele) { return ele.isNode() && ele._private.children.length !== 0; } }, isChildless: function isChildless() { var ele = this[0]; if (ele) { return ele.isNode() && ele._private.children.length === 0; } }, isChild: function isChild() { var ele = this[0]; if (ele) { return ele.isNode() && ele._private.parent != null; } }, isOrphan: function isOrphan() { var ele = this[0]; if (ele) { return ele.isNode() && ele._private.parent == null; } }, descendants: function descendants(selector) { var elements = []; function add(eles) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; elements.push(ele); if (ele.children().nonempty()) { add(ele.children()); } } } add(this.children()); return this.spawn(elements, true).filter(selector); } }; function forEachCompound(eles, fn, includeSelf, recursiveStep) { var q = []; var did = new Set$1(); var cy = eles.cy(); var hasCompounds = cy.hasCompoundNodes(); for (var i = 0; i < eles.length; i++) { var ele = eles[i]; if (includeSelf) { q.push(ele); } else if (hasCompounds) { recursiveStep(q, did, ele); } } while (q.length > 0) { var _ele = q.shift(); fn(_ele); did.add(_ele.id()); if (hasCompounds) { recursiveStep(q, did, _ele); } } return eles; } function addChildren(q, did, ele) { if (ele.isParent()) { var children = ele._private.children; for (var i = 0; i < children.length; i++) { var child = children[i]; if (!did.has(child.id())) { q.push(child); } } } } // very efficient version of eles.add( eles.descendants() ).forEach() // for internal use elesfn$f.forEachDown = function (fn) { var includeSelf = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; return forEachCompound(this, fn, includeSelf, addChildren); }; function addParent(q, did, ele) { if (ele.isChild()) { var parent = ele._private.parent; if (!did.has(parent.id())) { q.push(parent); } } } elesfn$f.forEachUp = function (fn) { var includeSelf = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; return forEachCompound(this, fn, includeSelf, addParent); }; function addParentAndChildren(q, did, ele) { addParent(q, did, ele); addChildren(q, did, ele); } elesfn$f.forEachUpAndDown = function (fn) { var includeSelf = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; return forEachCompound(this, fn, includeSelf, addParentAndChildren); }; // aliases elesfn$f.ancestors = elesfn$f.parents; var fn$5, elesfn$e; fn$5 = elesfn$e = { data: define.data({ field: 'data', bindingEvent: 'data', allowBinding: true, allowSetting: true, settingEvent: 'data', settingTriggersEvent: true, triggerFnName: 'trigger', allowGetting: true, immutableKeys: { 'id': true, 'source': true, 'target': true, 'parent': true }, updateStyle: true }), removeData: define.removeData({ field: 'data', event: 'data', triggerFnName: 'trigger', triggerEvent: true, immutableKeys: { 'id': true, 'source': true, 'target': true, 'parent': true }, updateStyle: true }), scratch: define.data({ field: 'scratch', bindingEvent: 'scratch', allowBinding: true, allowSetting: true, settingEvent: 'scratch', settingTriggersEvent: true, triggerFnName: 'trigger', allowGetting: true, updateStyle: true }), removeScratch: define.removeData({ field: 'scratch', event: 'scratch', triggerFnName: 'trigger', triggerEvent: true, updateStyle: true }), rscratch: define.data({ field: 'rscratch', allowBinding: false, allowSetting: true, settingTriggersEvent: false, allowGetting: true }), removeRscratch: define.removeData({ field: 'rscratch', triggerEvent: false }), id: function id() { var ele = this[0]; if (ele) { return ele._private.data.id; } } }; // aliases fn$5.attr = fn$5.data; fn$5.removeAttr = fn$5.removeData; var data = elesfn$e; var elesfn$d = {}; function defineDegreeFunction(callback) { return function (includeLoops) { var self = this; if (includeLoops === undefined) { includeLoops = true; } if (self.length === 0) { return; } if (self.isNode() && !self.removed()) { var degree = 0; var node = self[0]; var connectedEdges = node._private.edges; for (var i = 0; i < connectedEdges.length; i++) { var edge = connectedEdges[i]; if (!includeLoops && edge.isLoop()) { continue; } degree += callback(node, edge); } return degree; } else { return; } }; } extend(elesfn$d, { degree: defineDegreeFunction(function (node, edge) { if (edge.source().same(edge.target())) { return 2; } else { return 1; } }), indegree: defineDegreeFunction(function (node, edge) { if (edge.target().same(node)) { return 1; } else { return 0; } }), outdegree: defineDegreeFunction(function (node, edge) { if (edge.source().same(node)) { return 1; } else { return 0; } }) }); function defineDegreeBoundsFunction(degreeFn, callback) { return function (includeLoops) { var ret; var nodes = this.nodes(); for (var i = 0; i < nodes.length; i++) { var ele = nodes[i]; var degree = ele[degreeFn](includeLoops); if (degree !== undefined && (ret === undefined || callback(degree, ret))) { ret = degree; } } return ret; }; } extend(elesfn$d, { minDegree: defineDegreeBoundsFunction('degree', function (degree, min) { return degree < min; }), maxDegree: defineDegreeBoundsFunction('degree', function (degree, max) { return degree > max; }), minIndegree: defineDegreeBoundsFunction('indegree', function (degree, min) { return degree < min; }), maxIndegree: defineDegreeBoundsFunction('indegree', function (degree, max) { return degree > max; }), minOutdegree: defineDegreeBoundsFunction('outdegree', function (degree, min) { return degree < min; }), maxOutdegree: defineDegreeBoundsFunction('outdegree', function (degree, max) { return degree > max; }) }); extend(elesfn$d, { totalDegree: function totalDegree(includeLoops) { var total = 0; var nodes = this.nodes(); for (var i = 0; i < nodes.length; i++) { total += nodes[i].degree(includeLoops); } return total; } }); var fn$4, elesfn$c; var beforePositionSet = function beforePositionSet(eles, newPos, silent) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; if (!ele.locked()) { var oldPos = ele._private.position; var delta = { x: newPos.x != null ? newPos.x - oldPos.x : 0, y: newPos.y != null ? newPos.y - oldPos.y : 0 }; if (ele.isParent() && !(delta.x === 0 && delta.y === 0)) { ele.children().shift(delta, silent); } ele.dirtyBoundingBoxCache(); } } }; var positionDef = { field: 'position', bindingEvent: 'position', allowBinding: true, allowSetting: true, settingEvent: 'position', settingTriggersEvent: true, triggerFnName: 'emitAndNotify', allowGetting: true, validKeys: ['x', 'y'], beforeGet: function beforeGet(ele) { ele.updateCompoundBounds(); }, beforeSet: function beforeSet(eles, newPos) { beforePositionSet(eles, newPos, false); }, onSet: function onSet(eles) { eles.dirtyCompoundBoundsCache(); }, canSet: function canSet(ele) { return !ele.locked(); } }; fn$4 = elesfn$c = { position: define.data(positionDef), // position but no notification to renderer silentPosition: define.data(extend({}, positionDef, { allowBinding: false, allowSetting: true, settingTriggersEvent: false, allowGetting: false, beforeSet: function beforeSet(eles, newPos) { beforePositionSet(eles, newPos, true); }, onSet: function onSet(eles) { eles.dirtyCompoundBoundsCache(); } })), positions: function positions(pos, silent) { if (plainObject(pos)) { if (silent) { this.silentPosition(pos); } else { this.position(pos); } } else if (fn$6(pos)) { var _fn = pos; var cy = this.cy(); cy.startBatch(); for (var i = 0; i < this.length; i++) { var ele = this[i]; var _pos = void 0; if (_pos = _fn(ele, i)) { if (silent) { ele.silentPosition(_pos); } else { ele.position(_pos); } } } cy.endBatch(); } return this; // chaining }, silentPositions: function silentPositions(pos) { return this.positions(pos, true); }, shift: function shift(dim, val, silent) { var delta; if (plainObject(dim)) { delta = { x: number$1(dim.x) ? dim.x : 0, y: number$1(dim.y) ? dim.y : 0 }; silent = val; } else if (string(dim) && number$1(val)) { delta = { x: 0, y: 0 }; delta[dim] = val; } if (delta != null) { var cy = this.cy(); cy.startBatch(); for (var i = 0; i < this.length; i++) { var ele = this[i]; // exclude any node that is a descendant of the calling collection if (cy.hasCompoundNodes() && ele.isChild() && ele.ancestors().anySame(this)) { continue; } var pos = ele.position(); var newPos = { x: pos.x + delta.x, y: pos.y + delta.y }; if (silent) { ele.silentPosition(newPos); } else { ele.position(newPos); } } cy.endBatch(); } return this; }, silentShift: function silentShift(dim, val) { if (plainObject(dim)) { this.shift(dim, true); } else if (string(dim) && number$1(val)) { this.shift(dim, val, true); } return this; }, // get/set the rendered (i.e. on screen) positon of the element renderedPosition: function renderedPosition(dim, val) { var ele = this[0]; var cy = this.cy(); var zoom = cy.zoom(); var pan = cy.pan(); var rpos = plainObject(dim) ? dim : undefined; var setting = rpos !== undefined || val !== undefined && string(dim); if (ele && ele.isNode()) { // must have an element and must be a node to return position if (setting) { for (var i = 0; i < this.length; i++) { var _ele = this[i]; if (val !== undefined) { // set one dimension _ele.position(dim, (val - pan[dim]) / zoom); } else if (rpos !== undefined) { // set whole position _ele.position(renderedToModelPosition(rpos, zoom, pan)); } } } else { // getting var pos = ele.position(); rpos = modelToRenderedPosition(pos, zoom, pan); if (dim === undefined) { // then return the whole rendered position return rpos; } else { // then return the specified dimension return rpos[dim]; } } } else if (!setting) { return undefined; // for empty collection case } return this; // chaining }, // get/set the position relative to the parent relativePosition: function relativePosition(dim, val) { var ele = this[0]; var cy = this.cy(); var ppos = plainObject(dim) ? dim : undefined; var setting = ppos !== undefined || val !== undefined && string(dim); var hasCompoundNodes = cy.hasCompoundNodes(); if (ele && ele.isNode()) { // must have an element and must be a node to return position if (setting) { for (var i = 0; i < this.length; i++) { var _ele2 = this[i]; var parent = hasCompoundNodes ? _ele2.parent() : null; var hasParent = parent && parent.length > 0; var relativeToParent = hasParent; if (hasParent) { parent = parent[0]; } var origin = relativeToParent ? parent.position() : { x: 0, y: 0 }; if (val !== undefined) { // set one dimension _ele2.position(dim, val + origin[dim]); } else if (ppos !== undefined) { // set whole position _ele2.position({ x: ppos.x + origin.x, y: ppos.y + origin.y }); } } } else { // getting var pos = ele.position(); var _parent = hasCompoundNodes ? ele.parent() : null; var _hasParent = _parent && _parent.length > 0; var _relativeToParent = _hasParent; if (_hasParent) { _parent = _parent[0]; } var _origin = _relativeToParent ? _parent.position() : { x: 0, y: 0 }; ppos = { x: pos.x - _origin.x, y: pos.y - _origin.y }; if (dim === undefined) { // then return the whole rendered position return ppos; } else { // then return the specified dimension return ppos[dim]; } } } else if (!setting) { return undefined; // for empty collection case } return this; // chaining } }; // aliases fn$4.modelPosition = fn$4.point = fn$4.position; fn$4.modelPositions = fn$4.points = fn$4.positions; fn$4.renderedPoint = fn$4.renderedPosition; fn$4.relativePoint = fn$4.relativePosition; var position = elesfn$c; var fn$3, elesfn$b; fn$3 = elesfn$b = {}; elesfn$b.renderedBoundingBox = function (options) { var bb = this.boundingBox(options); var cy = this.cy(); var zoom = cy.zoom(); var pan = cy.pan(); var x1 = bb.x1 * zoom + pan.x; var x2 = bb.x2 * zoom + pan.x; var y1 = bb.y1 * zoom + pan.y; var y2 = bb.y2 * zoom + pan.y; return { x1: x1, x2: x2, y1: y1, y2: y2, w: x2 - x1, h: y2 - y1 }; }; elesfn$b.dirtyCompoundBoundsCache = function () { var silent = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false; var cy = this.cy(); if (!cy.styleEnabled() || !cy.hasCompoundNodes()) { return this; } this.forEachUp(function (ele) { if (ele.isParent()) { var _p = ele._private; _p.compoundBoundsClean = false; _p.bbCache = null; if (!silent) { ele.emitAndNotify('bounds'); } } }); return this; }; elesfn$b.updateCompoundBounds = function () { var force = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false; var cy = this.cy(); // not possible to do on non-compound graphs or with the style disabled if (!cy.styleEnabled() || !cy.hasCompoundNodes()) { return this; } // save cycles when batching -- but bounds will be stale (or not exist yet) if (!force && cy.batching()) { return this; } function update(parent) { if (!parent.isParent()) { return; } var _p = parent._private; var children = parent.children(); var includeLabels = parent.pstyle('compound-sizing-wrt-labels').value === 'include'; var min = { width: { val: parent.pstyle('min-width').pfValue, left: parent.pstyle('min-width-bias-left'), right: parent.pstyle('min-width-bias-right') }, height: { val: parent.pstyle('min-height').pfValue, top: parent.pstyle('min-height-bias-top'), bottom: parent.pstyle('min-height-bias-bottom') } }; var bb = children.boundingBox({ includeLabels: includeLabels, includeOverlays: false, // updating the compound bounds happens outside of the regular // cache cycle (i.e. before fired events) useCache: false }); var pos = _p.position; // if children take up zero area then keep position and fall back on stylesheet w/h if (bb.w === 0 || bb.h === 0) { bb = { w: parent.pstyle('width').pfValue, h: parent.pstyle('height').pfValue }; bb.x1 = pos.x - bb.w / 2; bb.x2 = pos.x + bb.w / 2; bb.y1 = pos.y - bb.h / 2; bb.y2 = pos.y + bb.h / 2; } function computeBiasValues(propDiff, propBias, propBiasComplement) { var biasDiff = 0; var biasComplementDiff = 0; var biasTotal = propBias + propBiasComplement; if (propDiff > 0 && biasTotal > 0) { biasDiff = propBias / biasTotal * propDiff; biasComplementDiff = propBiasComplement / biasTotal * propDiff; } return { biasDiff: biasDiff, biasComplementDiff: biasComplementDiff }; } function computePaddingValues(width, height, paddingObject, relativeTo) { // Assuming percentage is number from 0 to 1 if (paddingObject.units === '%') { switch (relativeTo) { case 'width': return width > 0 ? paddingObject.pfValue * width : 0; case 'height': return height > 0 ? paddingObject.pfValue * height : 0; case 'average': return width > 0 && height > 0 ? paddingObject.pfValue * (width + height) / 2 : 0; case 'min': return width > 0 && height > 0 ? width > height ? paddingObject.pfValue * height : paddingObject.pfValue * width : 0; case 'max': return width > 0 && height > 0 ? width > height ? paddingObject.pfValue * width : paddingObject.pfValue * height : 0; default: return 0; } } else if (paddingObject.units === 'px') { return paddingObject.pfValue; } else { return 0; } } var leftVal = min.width.left.value; if (min.width.left.units === 'px' && min.width.val > 0) { leftVal = leftVal * 100 / min.width.val; } var rightVal = min.width.right.value; if (min.width.right.units === 'px' && min.width.val > 0) { rightVal = rightVal * 100 / min.width.val; } var topVal = min.height.top.value; if (min.height.top.units === 'px' && min.height.val > 0) { topVal = topVal * 100 / min.height.val; } var bottomVal = min.height.bottom.value; if (min.height.bottom.units === 'px' && min.height.val > 0) { bottomVal = bottomVal * 100 / min.height.val; } var widthBiasDiffs = computeBiasValues(min.width.val - bb.w, leftVal, rightVal); var diffLeft = widthBiasDiffs.biasDiff; var diffRight = widthBiasDiffs.biasComplementDiff; var heightBiasDiffs = computeBiasValues(min.height.val - bb.h, topVal, bottomVal); var diffTop = heightBiasDiffs.biasDiff; var diffBottom = heightBiasDiffs.biasComplementDiff; _p.autoPadding = computePaddingValues(bb.w, bb.h, parent.pstyle('padding'), parent.pstyle('padding-relative-to').value); _p.autoWidth = Math.max(bb.w, min.width.val); pos.x = (-diffLeft + bb.x1 + bb.x2 + diffRight) / 2; _p.autoHeight = Math.max(bb.h, min.height.val); pos.y = (-diffTop + bb.y1 + bb.y2 + diffBottom) / 2; } for (var i = 0; i < this.length; i++) { var ele = this[i]; var _p = ele._private; if (!_p.compoundBoundsClean || force) { update(ele); if (!cy.batching()) { _p.compoundBoundsClean = true; } } } return this; }; var noninf = function noninf(x) { if (x === Infinity || x === -Infinity) { return 0; } return x; }; var updateBounds = function updateBounds(b, x1, y1, x2, y2) { // don't update with zero area boxes if (x2 - x1 === 0 || y2 - y1 === 0) { return; } // don't update with null dim if (x1 == null || y1 == null || x2 == null || y2 == null) { return; } b.x1 = x1 < b.x1 ? x1 : b.x1; b.x2 = x2 > b.x2 ? x2 : b.x2; b.y1 = y1 < b.y1 ? y1 : b.y1; b.y2 = y2 > b.y2 ? y2 : b.y2; b.w = b.x2 - b.x1; b.h = b.y2 - b.y1; }; var updateBoundsFromBox = function updateBoundsFromBox(b, b2) { if (b2 == null) { return b; } return updateBounds(b, b2.x1, b2.y1, b2.x2, b2.y2); }; var prefixedProperty = function prefixedProperty(obj, field, prefix) { return getPrefixedProperty(obj, field, prefix); }; var updateBoundsFromArrow = function updateBoundsFromArrow(bounds, ele, prefix) { if (ele.cy().headless()) { return; } var _p = ele._private; var rstyle = _p.rstyle; var halfArW = rstyle.arrowWidth / 2; var arrowType = ele.pstyle(prefix + '-arrow-shape').value; var x; var y; if (arrowType !== 'none') { if (prefix === 'source') { x = rstyle.srcX; y = rstyle.srcY; } else if (prefix === 'target') { x = rstyle.tgtX; y = rstyle.tgtY; } else { x = rstyle.midX; y = rstyle.midY; } // always store the individual arrow bounds var bbs = _p.arrowBounds = _p.arrowBounds || {}; var bb = bbs[prefix] = bbs[prefix] || {}; bb.x1 = x - halfArW; bb.y1 = y - halfArW; bb.x2 = x + halfArW; bb.y2 = y + halfArW; bb.w = bb.x2 - bb.x1; bb.h = bb.y2 - bb.y1; expandBoundingBox(bb, 1); updateBounds(bounds, bb.x1, bb.y1, bb.x2, bb.y2); } }; var updateBoundsFromLabel = function updateBoundsFromLabel(bounds, ele, prefix) { if (ele.cy().headless()) { return; } var prefixDash; if (prefix) { prefixDash = prefix + '-'; } else { prefixDash = ''; } var _p = ele._private; var rstyle = _p.rstyle; var label = ele.pstyle(prefixDash + 'label').strValue; if (label) { var halign = ele.pstyle('text-halign'); var valign = ele.pstyle('text-valign'); var labelWidth = prefixedProperty(rstyle, 'labelWidth', prefix); var labelHeight = prefixedProperty(rstyle, 'labelHeight', prefix); var labelX = prefixedProperty(rstyle, 'labelX', prefix); var labelY = prefixedProperty(rstyle, 'labelY', prefix); var marginX = ele.pstyle(prefixDash + 'text-margin-x').pfValue; var marginY = ele.pstyle(prefixDash + 'text-margin-y').pfValue; var isEdge = ele.isEdge(); var rotation = ele.pstyle(prefixDash + 'text-rotation'); var outlineWidth = ele.pstyle('text-outline-width').pfValue; var borderWidth = ele.pstyle('text-border-width').pfValue; var halfBorderWidth = borderWidth / 2; var padding = ele.pstyle('text-background-padding').pfValue; var marginOfError = 2; // expand to work around browser dimension inaccuracies var lh = labelHeight; var lw = labelWidth; var lw_2 = lw / 2; var lh_2 = lh / 2; var lx1, lx2, ly1, ly2; if (isEdge) { lx1 = labelX - lw_2; lx2 = labelX + lw_2; ly1 = labelY - lh_2; ly2 = labelY + lh_2; } else { switch (halign.value) { case 'left': lx1 = labelX - lw; lx2 = labelX; break; case 'center': lx1 = labelX - lw_2; lx2 = labelX + lw_2; break; case 'right': lx1 = labelX; lx2 = labelX + lw; break; } switch (valign.value) { case 'top': ly1 = labelY - lh; ly2 = labelY; break; case 'center': ly1 = labelY - lh_2; ly2 = labelY + lh_2; break; case 'bottom': ly1 = labelY; ly2 = labelY + lh; break; } } // shift by margin and expand by outline and border lx1 += marginX - Math.max(outlineWidth, halfBorderWidth) - padding - marginOfError; lx2 += marginX + Math.max(outlineWidth, halfBorderWidth) + padding + marginOfError; ly1 += marginY - Math.max(outlineWidth, halfBorderWidth) - padding - marginOfError; ly2 += marginY + Math.max(outlineWidth, halfBorderWidth) + padding + marginOfError; // always store the unrotated label bounds separately var bbPrefix = prefix || 'main'; var bbs = _p.labelBounds; var bb = bbs[bbPrefix] = bbs[bbPrefix] || {}; bb.x1 = lx1; bb.y1 = ly1; bb.x2 = lx2; bb.y2 = ly2; bb.w = lx2 - lx1; bb.h = ly2 - ly1; var isAutorotate = isEdge && rotation.strValue === 'autorotate'; var isPfValue = rotation.pfValue != null && rotation.pfValue !== 0; if (isAutorotate || isPfValue) { var theta = isAutorotate ? prefixedProperty(_p.rstyle, 'labelAngle', prefix) : rotation.pfValue; var cos = Math.cos(theta); var sin = Math.sin(theta); // rotation point (default value for center-center) var xo = (lx1 + lx2) / 2; var yo = (ly1 + ly2) / 2; if (!isEdge) { switch (halign.value) { case 'left': xo = lx2; break; case 'right': xo = lx1; break; } switch (valign.value) { case 'top': yo = ly2; break; case 'bottom': yo = ly1; break; } } var rotate = function rotate(x, y) { x = x - xo; y = y - yo; return { x: x * cos - y * sin + xo, y: x * sin + y * cos + yo }; }; var px1y1 = rotate(lx1, ly1); var px1y2 = rotate(lx1, ly2); var px2y1 = rotate(lx2, ly1); var px2y2 = rotate(lx2, ly2); lx1 = Math.min(px1y1.x, px1y2.x, px2y1.x, px2y2.x); lx2 = Math.max(px1y1.x, px1y2.x, px2y1.x, px2y2.x); ly1 = Math.min(px1y1.y, px1y2.y, px2y1.y, px2y2.y); ly2 = Math.max(px1y1.y, px1y2.y, px2y1.y, px2y2.y); } var bbPrefixRot = bbPrefix + 'Rot'; var bbRot = bbs[bbPrefixRot] = bbs[bbPrefixRot] || {}; bbRot.x1 = lx1; bbRot.y1 = ly1; bbRot.x2 = lx2; bbRot.y2 = ly2; bbRot.w = lx2 - lx1; bbRot.h = ly2 - ly1; updateBounds(bounds, lx1, ly1, lx2, ly2); updateBounds(_p.labelBounds.all, lx1, ly1, lx2, ly2); } return bounds; }; var updateBoundsFromOutline = function updateBoundsFromOutline(bounds, ele) { if (ele.cy().headless()) { return; } var outlineOpacity = ele.pstyle('outline-opacity').value; var outlineWidth = ele.pstyle('outline-width').value; if (outlineOpacity > 0 && outlineWidth > 0) { var outlineOffset = ele.pstyle('outline-offset').value; var nodeShape = ele.pstyle('shape').value; var outlineSize = outlineWidth + outlineOffset; var scaleX = (bounds.w + outlineSize * 2) / bounds.w; var scaleY = (bounds.h + outlineSize * 2) / bounds.h; var xOffset = 0; var yOffset = 0; if (["diamond", "pentagon", "round-triangle"].includes(nodeShape)) { scaleX = (bounds.w + outlineSize * 2.4) / bounds.w; yOffset = -outlineSize / 3.6; } else if (["concave-hexagon", "rhomboid", "right-rhomboid"].includes(nodeShape)) { scaleX = (bounds.w + outlineSize * 2.4) / bounds.w; } else if (nodeShape === "star") { scaleX = (bounds.w + outlineSize * 2.8) / bounds.w; scaleY = (bounds.h + outlineSize * 2.6) / bounds.h; yOffset = -outlineSize / 3.8; } else if (nodeShape === "triangle") { scaleX = (bounds.w + outlineSize * 2.8) / bounds.w; scaleY = (bounds.h + outlineSize * 2.4) / bounds.h; yOffset = -outlineSize / 1.4; } else if (nodeShape === "vee") { scaleX = (bounds.w + outlineSize * 4.4) / bounds.w; scaleY = (bounds.h + outlineSize * 3.8) / bounds.h; yOffset = -outlineSize * .5; } var hDelta = bounds.h * scaleY - bounds.h; var wDelta = bounds.w * scaleX - bounds.w; expandBoundingBoxSides(bounds, [Math.ceil(hDelta / 2), Math.ceil(wDelta / 2)]); if (xOffset != 0 || yOffset !== 0) { var oBounds = shiftBoundingBox(bounds, xOffset, yOffset); updateBoundingBox(bounds, oBounds); } } }; // get the bounding box of the elements (in raw model position) var boundingBoxImpl = function boundingBoxImpl(ele, options) { var cy = ele._private.cy; var styleEnabled = cy.styleEnabled(); var headless = cy.headless(); var bounds = makeBoundingBox(); var _p = ele._private; var isNode = ele.isNode(); var isEdge = ele.isEdge(); var ex1, ex2, ey1, ey2; // extrema of body / lines var x, y; // node pos var rstyle = _p.rstyle; var manualExpansion = isNode && styleEnabled ? ele.pstyle('bounds-expansion').pfValue : [0]; // must use `display` prop only, as reading `compound.width()` causes recursion // (other factors like width values will be considered later in this function anyway) var isDisplayed = function isDisplayed(ele) { return ele.pstyle('display').value !== 'none'; }; var displayed = !styleEnabled || isDisplayed(ele) // must take into account connected nodes b/c of implicit edge hiding on display:none node && (!isEdge || isDisplayed(ele.source()) && isDisplayed(ele.target())); if (displayed) { // displayed suffices, since we will find zero area eles anyway var overlayOpacity = 0; var overlayPadding = 0; if (styleEnabled && options.includeOverlays) { overlayOpacity = ele.pstyle('overlay-opacity').value; if (overlayOpacity !== 0) { overlayPadding = ele.pstyle('overlay-padding').value; } } var underlayOpacity = 0; var underlayPadding = 0; if (styleEnabled && options.includeUnderlays) { underlayOpacity = ele.pstyle('underlay-opacity').value; if (underlayOpacity !== 0) { underlayPadding = ele.pstyle('underlay-padding').value; } } var padding = Math.max(overlayPadding, underlayPadding); var w = 0; var wHalf = 0; if (styleEnabled) { w = ele.pstyle('width').pfValue; wHalf = w / 2; } if (isNode && options.includeNodes) { var pos = ele.position(); x = pos.x; y = pos.y; var _w = ele.outerWidth(); var halfW = _w / 2; var h = ele.outerHeight(); var halfH = h / 2; // handle node dimensions ///////////////////////// ex1 = x - halfW; ex2 = x + halfW; ey1 = y - halfH; ey2 = y + halfH; updateBounds(bounds, ex1, ey1, ex2, ey2); if (styleEnabled && options.includeOutlines) { updateBoundsFromOutline(bounds, ele); } } else if (isEdge && options.includeEdges) { if (styleEnabled && !headless) { var curveStyle = ele.pstyle('curve-style').strValue; // handle edge dimensions (rough box estimate) ////////////////////////////////////////////// ex1 = Math.min(rstyle.srcX, rstyle.midX, rstyle.tgtX); ex2 = Math.max(rstyle.srcX, rstyle.midX, rstyle.tgtX); ey1 = Math.min(rstyle.srcY, rstyle.midY, rstyle.tgtY); ey2 = Math.max(rstyle.srcY, rstyle.midY, rstyle.tgtY); // take into account edge width ex1 -= wHalf; ex2 += wHalf; ey1 -= wHalf; ey2 += wHalf; updateBounds(bounds, ex1, ey1, ex2, ey2); // precise edges //////////////// if (curveStyle === 'haystack') { var hpts = rstyle.haystackPts; if (hpts && hpts.length === 2) { ex1 = hpts[0].x; ey1 = hpts[0].y; ex2 = hpts[1].x; ey2 = hpts[1].y; if (ex1 > ex2) { var temp = ex1; ex1 = ex2; ex2 = temp; } if (ey1 > ey2) { var _temp = ey1; ey1 = ey2; ey2 = _temp; } updateBounds(bounds, ex1 - wHalf, ey1 - wHalf, ex2 + wHalf, ey2 + wHalf); } } else if (curveStyle === 'bezier' || curveStyle === 'unbundled-bezier' || curveStyle.endsWith('segments') || curveStyle.endsWith('taxi')) { var pts; switch (curveStyle) { case 'bezier': case 'unbundled-bezier': pts = rstyle.bezierPts; break; case 'segments': case 'taxi': case 'round-segments': case 'round-taxi': pts = rstyle.linePts; break; } if (pts != null) { for (var j = 0; j < pts.length; j++) { var pt = pts[j]; ex1 = pt.x - wHalf; ex2 = pt.x + wHalf; ey1 = pt.y - wHalf; ey2 = pt.y + wHalf; updateBounds(bounds, ex1, ey1, ex2, ey2); } } } // bezier-like or segment-like edge } else { // headless or style disabled // fallback on source and target positions ////////////////////////////////////////// var n1 = ele.source(); var n1pos = n1.position(); var n2 = ele.target(); var n2pos = n2.position(); ex1 = n1pos.x; ex2 = n2pos.x; ey1 = n1pos.y; ey2 = n2pos.y; if (ex1 > ex2) { var _temp2 = ex1; ex1 = ex2; ex2 = _temp2; } if (ey1 > ey2) { var _temp3 = ey1; ey1 = ey2; ey2 = _temp3; } // take into account edge width ex1 -= wHalf; ex2 += wHalf; ey1 -= wHalf; ey2 += wHalf; updateBounds(bounds, ex1, ey1, ex2, ey2); } // headless or style disabled } // edges // handle edge arrow size ///////////////////////// if (styleEnabled && options.includeEdges && isEdge) { updateBoundsFromArrow(bounds, ele, 'mid-source'); updateBoundsFromArrow(bounds, ele, 'mid-target'); updateBoundsFromArrow(bounds, ele, 'source'); updateBoundsFromArrow(bounds, ele, 'target'); } // ghost //////// if (styleEnabled) { var ghost = ele.pstyle('ghost').value === 'yes'; if (ghost) { var gx = ele.pstyle('ghost-offset-x').pfValue; var gy = ele.pstyle('ghost-offset-y').pfValue; updateBounds(bounds, bounds.x1 + gx, bounds.y1 + gy, bounds.x2 + gx, bounds.y2 + gy); } } // always store the body bounds separately from the labels var bbBody = _p.bodyBounds = _p.bodyBounds || {}; assignBoundingBox(bbBody, bounds); expandBoundingBoxSides(bbBody, manualExpansion); expandBoundingBox(bbBody, 1); // expand to work around browser dimension inaccuracies // overlay ////////// if (styleEnabled) { ex1 = bounds.x1; ex2 = bounds.x2; ey1 = bounds.y1; ey2 = bounds.y2; updateBounds(bounds, ex1 - padding, ey1 - padding, ex2 + padding, ey2 + padding); } // always store the body bounds separately from the labels var bbOverlay = _p.overlayBounds = _p.overlayBounds || {}; assignBoundingBox(bbOverlay, bounds); expandBoundingBoxSides(bbOverlay, manualExpansion); expandBoundingBox(bbOverlay, 1); // expand to work around browser dimension inaccuracies // handle label dimensions ////////////////////////// var bbLabels = _p.labelBounds = _p.labelBounds || {}; if (bbLabels.all != null) { clearBoundingBox(bbLabels.all); } else { bbLabels.all = makeBoundingBox(); } if (styleEnabled && options.includeLabels) { if (options.includeMainLabels) { updateBoundsFromLabel(bounds, ele, null); } if (isEdge) { if (options.includeSourceLabels) { updateBoundsFromLabel(bounds, ele, 'source'); } if (options.includeTargetLabels) { updateBoundsFromLabel(bounds, ele, 'target'); } } } // style enabled for labels } // if displayed bounds.x1 = noninf(bounds.x1); bounds.y1 = noninf(bounds.y1); bounds.x2 = noninf(bounds.x2); bounds.y2 = noninf(bounds.y2); bounds.w = noninf(bounds.x2 - bounds.x1); bounds.h = noninf(bounds.y2 - bounds.y1); if (bounds.w > 0 && bounds.h > 0 && displayed) { expandBoundingBoxSides(bounds, manualExpansion); // expand bounds by 1 because antialiasing can increase the visual/effective size by 1 on all sides expandBoundingBox(bounds, 1); } return bounds; }; var getKey = function getKey(opts) { var i = 0; var tf = function tf(val) { return (val ? 1 : 0) << i++; }; var key = 0; key += tf(opts.incudeNodes); key += tf(opts.includeEdges); key += tf(opts.includeLabels); key += tf(opts.includeMainLabels); key += tf(opts.includeSourceLabels); key += tf(opts.includeTargetLabels); key += tf(opts.includeOverlays); key += tf(opts.includeOutlines); return key; }; var getBoundingBoxPosKey = function getBoundingBoxPosKey(ele) { if (ele.isEdge()) { var p1 = ele.source().position(); var p2 = ele.target().position(); var r = function r(x) { return Math.round(x); }; return hashIntsArray([r(p1.x), r(p1.y), r(p2.x), r(p2.y)]); } else { return 0; } }; var cachedBoundingBoxImpl = function cachedBoundingBoxImpl(ele, opts) { var _p = ele._private; var bb; var isEdge = ele.isEdge(); var key = opts == null ? defBbOptsKey : getKey(opts); var usingDefOpts = key === defBbOptsKey; var currPosKey = getBoundingBoxPosKey(ele); var isPosKeySame = _p.bbCachePosKey === currPosKey; var useCache = opts.useCache && isPosKeySame; var isDirty = function isDirty(ele) { return ele._private.bbCache == null || ele._private.styleDirty; }; var needRecalc = !useCache || isDirty(ele) || isEdge && isDirty(ele.source()) || isDirty(ele.target()); if (needRecalc) { if (!isPosKeySame) { ele.recalculateRenderedStyle(useCache); } bb = boundingBoxImpl(ele, defBbOpts); _p.bbCache = bb; _p.bbCachePosKey = currPosKey; } else { bb = _p.bbCache; } // not using def opts => need to build up bb from combination of sub bbs if (!usingDefOpts) { var isNode = ele.isNode(); bb = makeBoundingBox(); if (opts.includeNodes && isNode || opts.includeEdges && !isNode) { if (opts.includeOverlays) { updateBoundsFromBox(bb, _p.overlayBounds); } else { updateBoundsFromBox(bb, _p.bodyBounds); } } if (opts.includeLabels) { if (opts.includeMainLabels && (!isEdge || opts.includeSourceLabels && opts.includeTargetLabels)) { updateBoundsFromBox(bb, _p.labelBounds.all); } else { if (opts.includeMainLabels) { updateBoundsFromBox(bb, _p.labelBounds.mainRot); } if (opts.includeSourceLabels) { updateBoundsFromBox(bb, _p.labelBounds.sourceRot); } if (opts.includeTargetLabels) { updateBoundsFromBox(bb, _p.labelBounds.targetRot); } } } bb.w = bb.x2 - bb.x1; bb.h = bb.y2 - bb.y1; } return bb; }; var defBbOpts = { includeNodes: true, includeEdges: true, includeLabels: true, includeMainLabels: true, includeSourceLabels: true, includeTargetLabels: true, includeOverlays: true, includeUnderlays: true, includeOutlines: true, useCache: true }; var defBbOptsKey = getKey(defBbOpts); var filledBbOpts = defaults$g(defBbOpts); elesfn$b.boundingBox = function (options) { var bounds; // the main usecase is ele.boundingBox() for a single element with no/def options // specified s.t. the cache is used, so check for this case to make it faster by // avoiding the overhead of the rest of the function if (this.length === 1 && this[0]._private.bbCache != null && !this[0]._private.styleDirty && (options === undefined || options.useCache === undefined || options.useCache === true)) { if (options === undefined) { options = defBbOpts; } else { options = filledBbOpts(options); } bounds = cachedBoundingBoxImpl(this[0], options); } else { bounds = makeBoundingBox(); options = options || defBbOpts; var opts = filledBbOpts(options); var eles = this; var cy = eles.cy(); var styleEnabled = cy.styleEnabled(); if (styleEnabled) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var _p = ele._private; var currPosKey = getBoundingBoxPosKey(ele); var isPosKeySame = _p.bbCachePosKey === currPosKey; var useCache = opts.useCache && isPosKeySame && !_p.styleDirty; ele.recalculateRenderedStyle(useCache); } } this.updateCompoundBounds(!options.useCache); for (var _i = 0; _i < eles.length; _i++) { var _ele = eles[_i]; updateBoundsFromBox(bounds, cachedBoundingBoxImpl(_ele, opts)); } } bounds.x1 = noninf(bounds.x1); bounds.y1 = noninf(bounds.y1); bounds.x2 = noninf(bounds.x2); bounds.y2 = noninf(bounds.y2); bounds.w = noninf(bounds.x2 - bounds.x1); bounds.h = noninf(bounds.y2 - bounds.y1); return bounds; }; elesfn$b.dirtyBoundingBoxCache = function () { for (var i = 0; i < this.length; i++) { var _p = this[i]._private; _p.bbCache = null; _p.bbCachePosKey = null; _p.bodyBounds = null; _p.overlayBounds = null; _p.labelBounds.all = null; _p.labelBounds.source = null; _p.labelBounds.target = null; _p.labelBounds.main = null; _p.labelBounds.sourceRot = null; _p.labelBounds.targetRot = null; _p.labelBounds.mainRot = null; _p.arrowBounds.source = null; _p.arrowBounds.target = null; _p.arrowBounds['mid-source'] = null; _p.arrowBounds['mid-target'] = null; } this.emitAndNotify('bounds'); return this; }; // private helper to get bounding box for custom node positions // - good for perf in certain cases but currently requires dirtying the rendered style // - would be better to not modify the nodes but the nodes are read directly everywhere in the renderer... // - try to use for only things like discrete layouts where the node position would change anyway elesfn$b.boundingBoxAt = function (fn) { var nodes = this.nodes(); var cy = this.cy(); var hasCompoundNodes = cy.hasCompoundNodes(); var parents = cy.collection(); if (hasCompoundNodes) { parents = nodes.filter(function (node) { return node.isParent(); }); nodes = nodes.not(parents); } if (plainObject(fn)) { var obj = fn; fn = function fn() { return obj; }; } var storeOldPos = function storeOldPos(node, i) { return node._private.bbAtOldPos = fn(node, i); }; var getOldPos = function getOldPos(node) { return node._private.bbAtOldPos; }; cy.startBatch(); nodes.forEach(storeOldPos).silentPositions(fn); if (hasCompoundNodes) { parents.dirtyCompoundBoundsCache(); parents.dirtyBoundingBoxCache(); parents.updateCompoundBounds(true); // force update b/c we're inside a batch cycle } var bb = copyBoundingBox(this.boundingBox({ useCache: false })); nodes.silentPositions(getOldPos); if (hasCompoundNodes) { parents.dirtyCompoundBoundsCache(); parents.dirtyBoundingBoxCache(); parents.updateCompoundBounds(true); // force update b/c we're inside a batch cycle } cy.endBatch(); return bb; }; fn$3.boundingbox = fn$3.bb = fn$3.boundingBox; fn$3.renderedBoundingbox = fn$3.renderedBoundingBox; var bounds = elesfn$b; var fn$2, elesfn$a; fn$2 = elesfn$a = {}; var defineDimFns = function defineDimFns(opts) { opts.uppercaseName = capitalize(opts.name); opts.autoName = 'auto' + opts.uppercaseName; opts.labelName = 'label' + opts.uppercaseName; opts.outerName = 'outer' + opts.uppercaseName; opts.uppercaseOuterName = capitalize(opts.outerName); fn$2[opts.name] = function dimImpl() { var ele = this[0]; var _p = ele._private; var cy = _p.cy; var styleEnabled = cy._private.styleEnabled; if (ele) { if (styleEnabled) { if (ele.isParent()) { ele.updateCompoundBounds(); return _p[opts.autoName] || 0; } var d = ele.pstyle(opts.name); switch (d.strValue) { case 'label': ele.recalculateRenderedStyle(); return _p.rstyle[opts.labelName] || 0; default: return d.pfValue; } } else { return 1; } } }; fn$2['outer' + opts.uppercaseName] = function outerDimImpl() { var ele = this[0]; var _p = ele._private; var cy = _p.cy; var styleEnabled = cy._private.styleEnabled; if (ele) { if (styleEnabled) { var dim = ele[opts.name](); var border = ele.pstyle('border-width').pfValue; // n.b. 1/2 each side var padding = 2 * ele.padding(); return dim + border + padding; } else { return 1; } } }; fn$2['rendered' + opts.uppercaseName] = function renderedDimImpl() { var ele = this[0]; if (ele) { var d = ele[opts.name](); return d * this.cy().zoom(); } }; fn$2['rendered' + opts.uppercaseOuterName] = function renderedOuterDimImpl() { var ele = this[0]; if (ele) { var od = ele[opts.outerName](); return od * this.cy().zoom(); } }; }; defineDimFns({ name: 'width' }); defineDimFns({ name: 'height' }); elesfn$a.padding = function () { var ele = this[0]; var _p = ele._private; if (ele.isParent()) { ele.updateCompoundBounds(); if (_p.autoPadding !== undefined) { return _p.autoPadding; } else { return ele.pstyle('padding').pfValue; } } else { return ele.pstyle('padding').pfValue; } }; elesfn$a.paddedHeight = function () { var ele = this[0]; return ele.height() + 2 * ele.padding(); }; elesfn$a.paddedWidth = function () { var ele = this[0]; return ele.width() + 2 * ele.padding(); }; var widthHeight = elesfn$a; var ifEdge = function ifEdge(ele, getValue) { if (ele.isEdge()) { return getValue(ele); } }; var ifEdgeRenderedPosition = function ifEdgeRenderedPosition(ele, getPoint) { if (ele.isEdge()) { var cy = ele.cy(); return modelToRenderedPosition(getPoint(ele), cy.zoom(), cy.pan()); } }; var ifEdgeRenderedPositions = function ifEdgeRenderedPositions(ele, getPoints) { if (ele.isEdge()) { var cy = ele.cy(); var pan = cy.pan(); var zoom = cy.zoom(); return getPoints(ele).map(function (p) { return modelToRenderedPosition(p, zoom, pan); }); } }; var controlPoints = function controlPoints(ele) { return ele.renderer().getControlPoints(ele); }; var segmentPoints = function segmentPoints(ele) { return ele.renderer().getSegmentPoints(ele); }; var sourceEndpoint = function sourceEndpoint(ele) { return ele.renderer().getSourceEndpoint(ele); }; var targetEndpoint = function targetEndpoint(ele) { return ele.renderer().getTargetEndpoint(ele); }; var midpoint = function midpoint(ele) { return ele.renderer().getEdgeMidpoint(ele); }; var pts = { controlPoints: { get: controlPoints, mult: true }, segmentPoints: { get: segmentPoints, mult: true }, sourceEndpoint: { get: sourceEndpoint }, targetEndpoint: { get: targetEndpoint }, midpoint: { get: midpoint } }; var renderedName = function renderedName(name) { return 'rendered' + name[0].toUpperCase() + name.substr(1); }; var edgePoints = Object.keys(pts).reduce(function (obj, name) { var spec = pts[name]; var rName = renderedName(name); obj[name] = function () { return ifEdge(this, spec.get); }; if (spec.mult) { obj[rName] = function () { return ifEdgeRenderedPositions(this, spec.get); }; } else { obj[rName] = function () { return ifEdgeRenderedPosition(this, spec.get); }; } return obj; }, {}); var dimensions = extend({}, position, bounds, widthHeight, edgePoints); /*! Event object based on jQuery events, MIT license https://jquery.org/license/ https://tldrlegal.com/license/mit-license https://github.com/jquery/jquery/blob/master/src/event.js */ var Event = function Event(src, props) { this.recycle(src, props); }; function returnFalse() { return false; } function returnTrue() { return true; } // http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html Event.prototype = { instanceString: function instanceString() { return 'event'; }, recycle: function recycle(src, props) { this.isImmediatePropagationStopped = this.isPropagationStopped = this.isDefaultPrevented = returnFalse; if (src != null && src.preventDefault) { // Browser Event object this.type = src.type; // Events bubbling up the document may have been marked as prevented // by a handler lower down the tree; reflect the correct value. this.isDefaultPrevented = src.defaultPrevented ? returnTrue : returnFalse; } else if (src != null && src.type) { // Plain object containing all event details props = src; } else { // Event string this.type = src; } // Put explicitly provided properties onto the event object if (props != null) { // more efficient to manually copy fields we use this.originalEvent = props.originalEvent; this.type = props.type != null ? props.type : this.type; this.cy = props.cy; this.target = props.target; this.position = props.position; this.renderedPosition = props.renderedPosition; this.namespace = props.namespace; this.layout = props.layout; } if (this.cy != null && this.position != null && this.renderedPosition == null) { // create a rendered position based on the passed position var pos = this.position; var zoom = this.cy.zoom(); var pan = this.cy.pan(); this.renderedPosition = { x: pos.x * zoom + pan.x, y: pos.y * zoom + pan.y }; } // Create a timestamp if incoming event doesn't have one this.timeStamp = src && src.timeStamp || Date.now(); }, preventDefault: function preventDefault() { this.isDefaultPrevented = returnTrue; var e = this.originalEvent; if (!e) { return; } // if preventDefault exists run it on the original event if (e.preventDefault) { e.preventDefault(); } }, stopPropagation: function stopPropagation() { this.isPropagationStopped = returnTrue; var e = this.originalEvent; if (!e) { return; } // if stopPropagation exists run it on the original event if (e.stopPropagation) { e.stopPropagation(); } }, stopImmediatePropagation: function stopImmediatePropagation() { this.isImmediatePropagationStopped = returnTrue; this.stopPropagation(); }, isDefaultPrevented: returnFalse, isPropagationStopped: returnFalse, isImmediatePropagationStopped: returnFalse }; var eventRegex = /^([^.]+)(\.(?:[^.]+))?$/; // regex for matching event strings (e.g. "click.namespace") var universalNamespace = '.*'; // matches as if no namespace specified and prevents users from unbinding accidentally var defaults$8 = { qualifierCompare: function qualifierCompare(q1, q2) { return q1 === q2; }, eventMatches: function eventMatches( /*context, listener, eventObj*/ ) { return true; }, addEventFields: function addEventFields( /*context, evt*/ ) {}, callbackContext: function callbackContext(context /*, listener, eventObj*/) { return context; }, beforeEmit: function beforeEmit( /* context, listener, eventObj */ ) {}, afterEmit: function afterEmit( /* context, listener, eventObj */ ) {}, bubble: function bubble( /*context*/ ) { return false; }, parent: function parent( /*context*/ ) { return null; }, context: null }; var defaultsKeys = Object.keys(defaults$8); var emptyOpts = {}; function Emitter() { var opts = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : emptyOpts; var context = arguments.length > 1 ? arguments[1] : undefined; // micro-optimisation vs Object.assign() -- reduces Element instantiation time for (var i = 0; i < defaultsKeys.length; i++) { var key = defaultsKeys[i]; this[key] = opts[key] || defaults$8[key]; } this.context = context || this.context; this.listeners = []; this.emitting = 0; } var p = Emitter.prototype; var forEachEvent = function forEachEvent(self, handler, events, qualifier, callback, conf, confOverrides) { if (fn$6(qualifier)) { callback = qualifier; qualifier = null; } if (confOverrides) { if (conf == null) { conf = confOverrides; } else { conf = extend({}, conf, confOverrides); } } var eventList = array(events) ? events : events.split(/\s+/); for (var i = 0; i < eventList.length; i++) { var evt = eventList[i]; if (emptyString(evt)) { continue; } var match = evt.match(eventRegex); // type[.namespace] if (match) { var type = match[1]; var namespace = match[2] ? match[2] : null; var ret = handler(self, evt, type, namespace, qualifier, callback, conf); if (ret === false) { break; } // allow exiting early } } }; var makeEventObj = function makeEventObj(self, obj) { self.addEventFields(self.context, obj); return new Event(obj.type, obj); }; var forEachEventObj = function forEachEventObj(self, handler, events) { if (event(events)) { handler(self, events); return; } else if (plainObject(events)) { handler(self, makeEventObj(self, events)); return; } var eventList = array(events) ? events : events.split(/\s+/); for (var i = 0; i < eventList.length; i++) { var evt = eventList[i]; if (emptyString(evt)) { continue; } var match = evt.match(eventRegex); // type[.namespace] if (match) { var type = match[1]; var namespace = match[2] ? match[2] : null; var eventObj = makeEventObj(self, { type: type, namespace: namespace, target: self.context }); handler(self, eventObj); } } }; p.on = p.addListener = function (events, qualifier, callback, conf, confOverrides) { forEachEvent(this, function (self, event, type, namespace, qualifier, callback, conf) { if (fn$6(callback)) { self.listeners.push({ event: event, // full event string callback: callback, // callback to run type: type, // the event type (e.g. 'click') namespace: namespace, // the event namespace (e.g. ".foo") qualifier: qualifier, // a restriction on whether to match this emitter conf: conf // additional configuration }); } }, events, qualifier, callback, conf, confOverrides); return this; }; p.one = function (events, qualifier, callback, conf) { return this.on(events, qualifier, callback, conf, { one: true }); }; p.removeListener = p.off = function (events, qualifier, callback, conf) { var _this = this; if (this.emitting !== 0) { this.listeners = copyArray$1(this.listeners); } var listeners = this.listeners; var _loop = function _loop(i) { var listener = listeners[i]; forEachEvent(_this, function (self, event, type, namespace, qualifier, callback /*, conf*/) { if ((listener.type === type || events === '*') && (!namespace && listener.namespace !== '.*' || listener.namespace === namespace) && (!qualifier || self.qualifierCompare(listener.qualifier, qualifier)) && (!callback || listener.callback === callback)) { listeners.splice(i, 1); return false; } }, events, qualifier, callback, conf); }; for (var i = listeners.length - 1; i >= 0; i--) { _loop(i); } return this; }; p.removeAllListeners = function () { return this.removeListener('*'); }; p.emit = p.trigger = function (events, extraParams, manualCallback) { var listeners = this.listeners; var numListenersBeforeEmit = listeners.length; this.emitting++; if (!array(extraParams)) { extraParams = [extraParams]; } forEachEventObj(this, function (self, eventObj) { if (manualCallback != null) { listeners = [{ event: eventObj.event, type: eventObj.type, namespace: eventObj.namespace, callback: manualCallback }]; numListenersBeforeEmit = listeners.length; } var _loop2 = function _loop2(i) { var listener = listeners[i]; if (listener.type === eventObj.type && (!listener.namespace || listener.namespace === eventObj.namespace || listener.namespace === universalNamespace) && self.eventMatches(self.context, listener, eventObj)) { var args = [eventObj]; if (extraParams != null) { push(args, extraParams); } self.beforeEmit(self.context, listener, eventObj); if (listener.conf && listener.conf.one) { self.listeners = self.listeners.filter(function (l) { return l !== listener; }); } var context = self.callbackContext(self.context, listener, eventObj); var ret = listener.callback.apply(context, args); self.afterEmit(self.context, listener, eventObj); if (ret === false) { eventObj.stopPropagation(); eventObj.preventDefault(); } } // if listener matches }; for (var i = 0; i < numListenersBeforeEmit; i++) { _loop2(i); } // for listener if (self.bubble(self.context) && !eventObj.isPropagationStopped()) { self.parent(self.context).emit(eventObj, extraParams); } }, events); this.emitting--; return this; }; var emitterOptions$1 = { qualifierCompare: function qualifierCompare(selector1, selector2) { if (selector1 == null || selector2 == null) { return selector1 == null && selector2 == null; } else { return selector1.sameText(selector2); } }, eventMatches: function eventMatches(ele, listener, eventObj) { var selector = listener.qualifier; if (selector != null) { return ele !== eventObj.target && element(eventObj.target) && selector.matches(eventObj.target); } return true; }, addEventFields: function addEventFields(ele, evt) { evt.cy = ele.cy(); evt.target = ele; }, callbackContext: function callbackContext(ele, listener, eventObj) { return listener.qualifier != null ? eventObj.target : ele; }, beforeEmit: function beforeEmit(context, listener /*, eventObj*/) { if (listener.conf && listener.conf.once) { listener.conf.onceCollection.removeListener(listener.event, listener.qualifier, listener.callback); } }, bubble: function bubble() { return true; }, parent: function parent(ele) { return ele.isChild() ? ele.parent() : ele.cy(); } }; var argSelector$1 = function argSelector(arg) { if (string(arg)) { return new Selector(arg); } else { return arg; } }; var elesfn$9 = { createEmitter: function createEmitter() { for (var i = 0; i < this.length; i++) { var ele = this[i]; var _p = ele._private; if (!_p.emitter) { _p.emitter = new Emitter(emitterOptions$1, ele); } } return this; }, emitter: function emitter() { return this._private.emitter; }, on: function on(events, selector, callback) { var argSel = argSelector$1(selector); for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().on(events, argSel, callback); } return this; }, removeListener: function removeListener(events, selector, callback) { var argSel = argSelector$1(selector); for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().removeListener(events, argSel, callback); } return this; }, removeAllListeners: function removeAllListeners() { for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().removeAllListeners(); } return this; }, one: function one(events, selector, callback) { var argSel = argSelector$1(selector); for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().one(events, argSel, callback); } return this; }, once: function once(events, selector, callback) { var argSel = argSelector$1(selector); for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().on(events, argSel, callback, { once: true, onceCollection: this }); } }, emit: function emit(events, extraParams) { for (var i = 0; i < this.length; i++) { var ele = this[i]; ele.emitter().emit(events, extraParams); } return this; }, emitAndNotify: function emitAndNotify(event, extraParams) { // for internal use only if (this.length === 0) { return; } // empty collections don't need to notify anything // notify renderer this.cy().notify(event, this); this.emit(event, extraParams); return this; } }; define.eventAliasesOn(elesfn$9); var elesfn$8 = { nodes: function nodes(selector) { return this.filter(function (ele) { return ele.isNode(); }).filter(selector); }, edges: function edges(selector) { return this.filter(function (ele) { return ele.isEdge(); }).filter(selector); }, // internal helper to get nodes and edges as separate collections with single iteration over elements byGroup: function byGroup() { var nodes = this.spawn(); var edges = this.spawn(); for (var i = 0; i < this.length; i++) { var ele = this[i]; if (ele.isNode()) { nodes.push(ele); } else { edges.push(ele); } } return { nodes: nodes, edges: edges }; }, filter: function filter(_filter, thisArg) { if (_filter === undefined) { // check this first b/c it's the most common/performant case return this; } else if (string(_filter) || elementOrCollection(_filter)) { return new Selector(_filter).filter(this); } else if (fn$6(_filter)) { var filterEles = this.spawn(); var eles = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var include = thisArg ? _filter.apply(thisArg, [ele, i, eles]) : _filter(ele, i, eles); if (include) { filterEles.push(ele); } } return filterEles; } return this.spawn(); // if not handled by above, give 'em an empty collection }, not: function not(toRemove) { if (!toRemove) { return this; } else { if (string(toRemove)) { toRemove = this.filter(toRemove); } var elements = this.spawn(); for (var i = 0; i < this.length; i++) { var element = this[i]; var remove = toRemove.has(element); if (!remove) { elements.push(element); } } return elements; } }, absoluteComplement: function absoluteComplement() { var cy = this.cy(); return cy.mutableElements().not(this); }, intersect: function intersect(other) { // if a selector is specified, then filter by it instead if (string(other)) { var selector = other; return this.filter(selector); } var elements = this.spawn(); var col1 = this; var col2 = other; var col1Smaller = this.length < other.length; var colS = col1Smaller ? col1 : col2; var colL = col1Smaller ? col2 : col1; for (var i = 0; i < colS.length; i++) { var ele = colS[i]; if (colL.has(ele)) { elements.push(ele); } } return elements; }, xor: function xor(other) { var cy = this._private.cy; if (string(other)) { other = cy.$(other); } var elements = this.spawn(); var col1 = this; var col2 = other; var add = function add(col, other) { for (var i = 0; i < col.length; i++) { var ele = col[i]; var id = ele._private.data.id; var inOther = other.hasElementWithId(id); if (!inOther) { elements.push(ele); } } }; add(col1, col2); add(col2, col1); return elements; }, diff: function diff(other) { var cy = this._private.cy; if (string(other)) { other = cy.$(other); } var left = this.spawn(); var right = this.spawn(); var both = this.spawn(); var col1 = this; var col2 = other; var add = function add(col, other, retEles) { for (var i = 0; i < col.length; i++) { var ele = col[i]; var id = ele._private.data.id; var inOther = other.hasElementWithId(id); if (inOther) { both.merge(ele); } else { retEles.push(ele); } } }; add(col1, col2, left); add(col2, col1, right); return { left: left, right: right, both: both }; }, add: function add(toAdd) { var cy = this._private.cy; if (!toAdd) { return this; } if (string(toAdd)) { var selector = toAdd; toAdd = cy.mutableElements().filter(selector); } var elements = this.spawnSelf(); for (var i = 0; i < toAdd.length; i++) { var ele = toAdd[i]; var add = !this.has(ele); if (add) { elements.push(ele); } } return elements; }, // in place merge on calling collection merge: function merge(toAdd) { var _p = this._private; var cy = _p.cy; if (!toAdd) { return this; } if (toAdd && string(toAdd)) { var selector = toAdd; toAdd = cy.mutableElements().filter(selector); } var map = _p.map; for (var i = 0; i < toAdd.length; i++) { var toAddEle = toAdd[i]; var id = toAddEle._private.data.id; var add = !map.has(id); if (add) { var index = this.length++; this[index] = toAddEle; map.set(id, { ele: toAddEle, index: index }); } } return this; // chaining }, unmergeAt: function unmergeAt(i) { var ele = this[i]; var id = ele.id(); var _p = this._private; var map = _p.map; // remove ele this[i] = undefined; map["delete"](id); var unmergedLastEle = i === this.length - 1; // replace empty spot with last ele in collection if (this.length > 1 && !unmergedLastEle) { var lastEleI = this.length - 1; var lastEle = this[lastEleI]; var lastEleId = lastEle._private.data.id; this[lastEleI] = undefined; this[i] = lastEle; map.set(lastEleId, { ele: lastEle, index: i }); } // the collection is now 1 ele smaller this.length--; return this; }, // remove single ele in place in calling collection unmergeOne: function unmergeOne(ele) { ele = ele[0]; var _p = this._private; var id = ele._private.data.id; var map = _p.map; var entry = map.get(id); if (!entry) { return this; // no need to remove } var i = entry.index; this.unmergeAt(i); return this; }, // remove eles in place on calling collection unmerge: function unmerge(toRemove) { var cy = this._private.cy; if (!toRemove) { return this; } if (toRemove && string(toRemove)) { var selector = toRemove; toRemove = cy.mutableElements().filter(selector); } for (var i = 0; i < toRemove.length; i++) { this.unmergeOne(toRemove[i]); } return this; // chaining }, unmergeBy: function unmergeBy(toRmFn) { for (var i = this.length - 1; i >= 0; i--) { var ele = this[i]; if (toRmFn(ele)) { this.unmergeAt(i); } } return this; }, map: function map(mapFn, thisArg) { var arr = []; var eles = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var ret = thisArg ? mapFn.apply(thisArg, [ele, i, eles]) : mapFn(ele, i, eles); arr.push(ret); } return arr; }, reduce: function reduce(fn, initialValue) { var val = initialValue; var eles = this; for (var i = 0; i < eles.length; i++) { val = fn(val, eles[i], i, eles); } return val; }, max: function max(valFn, thisArg) { var max = -Infinity; var maxEle; var eles = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var val = thisArg ? valFn.apply(thisArg, [ele, i, eles]) : valFn(ele, i, eles); if (val > max) { max = val; maxEle = ele; } } return { value: max, ele: maxEle }; }, min: function min(valFn, thisArg) { var min = Infinity; var minEle; var eles = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var val = thisArg ? valFn.apply(thisArg, [ele, i, eles]) : valFn(ele, i, eles); if (val < min) { min = val; minEle = ele; } } return { value: min, ele: minEle }; } }; // aliases var fn$1 = elesfn$8; fn$1['u'] = fn$1['|'] = fn$1['+'] = fn$1.union = fn$1.or = fn$1.add; fn$1['\\'] = fn$1['!'] = fn$1['-'] = fn$1.difference = fn$1.relativeComplement = fn$1.subtract = fn$1.not; fn$1['n'] = fn$1['&'] = fn$1['.'] = fn$1.and = fn$1.intersection = fn$1.intersect; fn$1['^'] = fn$1['(+)'] = fn$1['(-)'] = fn$1.symmetricDifference = fn$1.symdiff = fn$1.xor; fn$1.fnFilter = fn$1.filterFn = fn$1.stdFilter = fn$1.filter; fn$1.complement = fn$1.abscomp = fn$1.absoluteComplement; var elesfn$7 = { isNode: function isNode() { return this.group() === 'nodes'; }, isEdge: function isEdge() { return this.group() === 'edges'; }, isLoop: function isLoop() { return this.isEdge() && this.source()[0] === this.target()[0]; }, isSimple: function isSimple() { return this.isEdge() && this.source()[0] !== this.target()[0]; }, group: function group() { var ele = this[0]; if (ele) { return ele._private.group; } } }; /** * Elements are drawn in a specific order based on compound depth (low to high), the element type (nodes above edges), * and z-index (low to high). These styles affect how this applies: * * z-compound-depth: May be `bottom | orphan | auto | top`. The first drawn is `bottom`, then `orphan` which is the * same depth as the root of the compound graph, followed by the default value `auto` which draws in order from * root to leaves of the compound graph. The last drawn is `top`. * z-index-compare: May be `auto | manual`. The default value is `auto` which always draws edges under nodes. * `manual` ignores this convention and draws based on the `z-index` value setting. * z-index: An integer value that affects the relative draw order of elements. In general, an element with a higher * `z-index` will be drawn on top of an element with a lower `z-index`. */ var zIndexSort = function zIndexSort(a, b) { var cy = a.cy(); var hasCompoundNodes = cy.hasCompoundNodes(); function getDepth(ele) { var style = ele.pstyle('z-compound-depth'); if (style.value === 'auto') { return hasCompoundNodes ? ele.zDepth() : 0; } else if (style.value === 'bottom') { return -1; } else if (style.value === 'top') { return MAX_INT$1; } // 'orphan' return 0; } var depthDiff = getDepth(a) - getDepth(b); if (depthDiff !== 0) { return depthDiff; } function getEleDepth(ele) { var style = ele.pstyle('z-index-compare'); if (style.value === 'auto') { return ele.isNode() ? 1 : 0; } // 'manual' return 0; } var eleDiff = getEleDepth(a) - getEleDepth(b); if (eleDiff !== 0) { return eleDiff; } var zDiff = a.pstyle('z-index').value - b.pstyle('z-index').value; if (zDiff !== 0) { return zDiff; } // compare indices in the core (order added to graph w/ last on top) return a.poolIndex() - b.poolIndex(); }; var elesfn$6 = { forEach: function forEach(fn, thisArg) { if (fn$6(fn)) { var N = this.length; for (var i = 0; i < N; i++) { var ele = this[i]; var ret = thisArg ? fn.apply(thisArg, [ele, i, this]) : fn(ele, i, this); if (ret === false) { break; } // exit each early on return false } } return this; }, toArray: function toArray() { var array = []; for (var i = 0; i < this.length; i++) { array.push(this[i]); } return array; }, slice: function slice(start, end) { var array = []; var thisSize = this.length; if (end == null) { end = thisSize; } if (start == null) { start = 0; } if (start < 0) { start = thisSize + start; } if (end < 0) { end = thisSize + end; } for (var i = start; i >= 0 && i < end && i < thisSize; i++) { array.push(this[i]); } return this.spawn(array); }, size: function size() { return this.length; }, eq: function eq(i) { return this[i] || this.spawn(); }, first: function first() { return this[0] || this.spawn(); }, last: function last() { return this[this.length - 1] || this.spawn(); }, empty: function empty() { return this.length === 0; }, nonempty: function nonempty() { return !this.empty(); }, sort: function sort(sortFn) { if (!fn$6(sortFn)) { return this; } var sorted = this.toArray().sort(sortFn); return this.spawn(sorted); }, sortByZIndex: function sortByZIndex() { return this.sort(zIndexSort); }, zDepth: function zDepth() { var ele = this[0]; if (!ele) { return undefined; } // let cy = ele.cy(); var _p = ele._private; var group = _p.group; if (group === 'nodes') { var depth = _p.data.parent ? ele.parents().size() : 0; if (!ele.isParent()) { return MAX_INT$1 - 1; // childless nodes always on top } return depth; } else { var src = _p.source; var tgt = _p.target; var srcDepth = src.zDepth(); var tgtDepth = tgt.zDepth(); return Math.max(srcDepth, tgtDepth, 0); // depth of deepest parent } } }; elesfn$6.each = elesfn$6.forEach; var defineSymbolIterator = function defineSymbolIterator() { var typeofUndef = "undefined" ; var isIteratorSupported = (typeof Symbol === "undefined" ? "undefined" : _typeof(Symbol)) != typeofUndef && _typeof(Symbol.iterator) != typeofUndef; // eslint-disable-line no-undef if (isIteratorSupported) { elesfn$6[Symbol.iterator] = function () { var _this = this; // eslint-disable-line no-undef var entry = { value: undefined, done: false }; var i = 0; var length = this.length; return _defineProperty$1({ next: function next() { if (i < length) { entry.value = _this[i++]; } else { entry.value = undefined; entry.done = true; } return entry; } }, Symbol.iterator, function () { // eslint-disable-line no-undef return this; }); }; } }; defineSymbolIterator(); var getLayoutDimensionOptions = defaults$g({ nodeDimensionsIncludeLabels: false }); var elesfn$5 = { // Calculates and returns node dimensions { x, y } based on options given layoutDimensions: function layoutDimensions(options) { options = getLayoutDimensionOptions(options); var dims; if (!this.takesUpSpace()) { dims = { w: 0, h: 0 }; } else if (options.nodeDimensionsIncludeLabels) { var bbDim = this.boundingBox(); dims = { w: bbDim.w, h: bbDim.h }; } else { dims = { w: this.outerWidth(), h: this.outerHeight() }; } // sanitise the dimensions for external layouts (avoid division by zero) if (dims.w === 0 || dims.h === 0) { dims.w = dims.h = 1; } return dims; }, // using standard layout options, apply position function (w/ or w/o animation) layoutPositions: function layoutPositions(layout, options, fn) { var nodes = this.nodes().filter(function (n) { return !n.isParent(); }); var cy = this.cy(); var layoutEles = options.eles; // nodes & edges var getMemoizeKey = function getMemoizeKey(node) { return node.id(); }; var fnMem = memoize$1(fn, getMemoizeKey); // memoized version of position function layout.emit({ type: 'layoutstart', layout: layout }); layout.animations = []; var calculateSpacing = function calculateSpacing(spacing, nodesBb, pos) { var center = { x: nodesBb.x1 + nodesBb.w / 2, y: nodesBb.y1 + nodesBb.h / 2 }; var spacingVector = { // scale from center of bounding box (not necessarily 0,0) x: (pos.x - center.x) * spacing, y: (pos.y - center.y) * spacing }; return { x: center.x + spacingVector.x, y: center.y + spacingVector.y }; }; var useSpacingFactor = options.spacingFactor && options.spacingFactor !== 1; var spacingBb = function spacingBb() { if (!useSpacingFactor) { return null; } var bb = makeBoundingBox(); for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; var pos = fnMem(node, i); expandBoundingBoxByPoint(bb, pos.x, pos.y); } return bb; }; var bb = spacingBb(); var getFinalPos = memoize$1(function (node, i) { var newPos = fnMem(node, i); if (useSpacingFactor) { var spacing = Math.abs(options.spacingFactor); newPos = calculateSpacing(spacing, bb, newPos); } if (options.transform != null) { newPos = options.transform(node, newPos); } return newPos; }, getMemoizeKey); if (options.animate) { for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; var newPos = getFinalPos(node, i); var animateNode = options.animateFilter == null || options.animateFilter(node, i); if (animateNode) { var ani = node.animation({ position: newPos, duration: options.animationDuration, easing: options.animationEasing }); layout.animations.push(ani); } else { node.position(newPos); } } if (options.fit) { var fitAni = cy.animation({ fit: { boundingBox: layoutEles.boundingBoxAt(getFinalPos), padding: options.padding }, duration: options.animationDuration, easing: options.animationEasing }); layout.animations.push(fitAni); } else if (options.zoom !== undefined && options.pan !== undefined) { var zoomPanAni = cy.animation({ zoom: options.zoom, pan: options.pan, duration: options.animationDuration, easing: options.animationEasing }); layout.animations.push(zoomPanAni); } layout.animations.forEach(function (ani) { return ani.play(); }); layout.one('layoutready', options.ready); layout.emit({ type: 'layoutready', layout: layout }); Promise$1.all(layout.animations.map(function (ani) { return ani.promise(); })).then(function () { layout.one('layoutstop', options.stop); layout.emit({ type: 'layoutstop', layout: layout }); }); } else { nodes.positions(getFinalPos); if (options.fit) { cy.fit(options.eles, options.padding); } if (options.zoom != null) { cy.zoom(options.zoom); } if (options.pan) { cy.pan(options.pan); } layout.one('layoutready', options.ready); layout.emit({ type: 'layoutready', layout: layout }); layout.one('layoutstop', options.stop); layout.emit({ type: 'layoutstop', layout: layout }); } return this; // chaining }, layout: function layout(options) { var cy = this.cy(); return cy.makeLayout(extend({}, options, { eles: this })); } }; // aliases: elesfn$5.createLayout = elesfn$5.makeLayout = elesfn$5.layout; function styleCache(key, fn, ele) { var _p = ele._private; var cache = _p.styleCache = _p.styleCache || []; var val; if ((val = cache[key]) != null) { return val; } else { val = cache[key] = fn(ele); return val; } } function cacheStyleFunction(key, fn) { key = hashString(key); return function cachedStyleFunction(ele) { return styleCache(key, fn, ele); }; } function cachePrototypeStyleFunction(key, fn) { key = hashString(key); var selfFn = function selfFn(ele) { return fn.call(ele); }; return function cachedPrototypeStyleFunction() { var ele = this[0]; if (ele) { return styleCache(key, selfFn, ele); } }; } var elesfn$4 = { recalculateRenderedStyle: function recalculateRenderedStyle(useCache) { var cy = this.cy(); var renderer = cy.renderer(); var styleEnabled = cy.styleEnabled(); if (renderer && styleEnabled) { renderer.recalculateRenderedStyle(this, useCache); } return this; }, dirtyStyleCache: function dirtyStyleCache() { var cy = this.cy(); var dirty = function dirty(ele) { return ele._private.styleCache = null; }; if (cy.hasCompoundNodes()) { var eles; eles = this.spawnSelf().merge(this.descendants()).merge(this.parents()); eles.merge(eles.connectedEdges()); eles.forEach(dirty); } else { this.forEach(function (ele) { dirty(ele); ele.connectedEdges().forEach(dirty); }); } return this; }, // fully updates (recalculates) the style for the elements updateStyle: function updateStyle(notifyRenderer) { var cy = this._private.cy; if (!cy.styleEnabled()) { return this; } if (cy.batching()) { var bEles = cy._private.batchStyleEles; bEles.merge(this); return this; // chaining and exit early when batching } var hasCompounds = cy.hasCompoundNodes(); var updatedEles = this; notifyRenderer = notifyRenderer || notifyRenderer === undefined ? true : false; if (hasCompounds) { // then add everything up and down for compound selector checks updatedEles = this.spawnSelf().merge(this.descendants()).merge(this.parents()); } // let changedEles = style.apply( updatedEles ); var changedEles = updatedEles; if (notifyRenderer) { changedEles.emitAndNotify('style'); // let renderer know we changed style } else { changedEles.emit('style'); // just fire the event } updatedEles.forEach(function (ele) { return ele._private.styleDirty = true; }); return this; // chaining }, // private: clears dirty flag and recalculates style cleanStyle: function cleanStyle() { var cy = this.cy(); if (!cy.styleEnabled()) { return; } for (var i = 0; i < this.length; i++) { var ele = this[i]; if (ele._private.styleDirty) { // n.b. this flag should be set before apply() to avoid potential infinite recursion ele._private.styleDirty = false; cy.style().apply(ele); } } }, // get the internal parsed style object for the specified property parsedStyle: function parsedStyle(property) { var includeNonDefault = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; var ele = this[0]; var cy = ele.cy(); if (!cy.styleEnabled()) { return; } if (ele) { this.cleanStyle(); var overriddenStyle = ele._private.style[property]; if (overriddenStyle != null) { return overriddenStyle; } else if (includeNonDefault) { return cy.style().getDefaultProperty(property); } else { return null; } } }, numericStyle: function numericStyle(property) { var ele = this[0]; if (!ele.cy().styleEnabled()) { return; } if (ele) { var pstyle = ele.pstyle(property); return pstyle.pfValue !== undefined ? pstyle.pfValue : pstyle.value; } }, numericStyleUnits: function numericStyleUnits(property) { var ele = this[0]; if (!ele.cy().styleEnabled()) { return; } if (ele) { return ele.pstyle(property).units; } }, // get the specified css property as a rendered value (i.e. on-screen value) // or get the whole rendered style if no property specified (NB doesn't allow setting) renderedStyle: function renderedStyle(property) { var cy = this.cy(); if (!cy.styleEnabled()) { return this; } var ele = this[0]; if (ele) { return cy.style().getRenderedStyle(ele, property); } }, // read the calculated css style of the element or override the style (via a bypass) style: function style(name, value) { var cy = this.cy(); if (!cy.styleEnabled()) { return this; } var updateTransitions = false; var style = cy.style(); if (plainObject(name)) { // then extend the bypass var props = name; style.applyBypass(this, props, updateTransitions); this.emitAndNotify('style'); // let the renderer know we've updated style } else if (string(name)) { if (value === undefined) { // then get the property from the style var ele = this[0]; if (ele) { return style.getStylePropertyValue(ele, name); } else { // empty collection => can't get any value return; } } else { // then set the bypass with the property value style.applyBypass(this, name, value, updateTransitions); this.emitAndNotify('style'); // let the renderer know we've updated style } } else if (name === undefined) { var _ele = this[0]; if (_ele) { return style.getRawStyle(_ele); } else { // empty collection => can't get any value return; } } return this; // chaining }, removeStyle: function removeStyle(names) { var cy = this.cy(); if (!cy.styleEnabled()) { return this; } var updateTransitions = false; var style = cy.style(); var eles = this; if (names === undefined) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; style.removeAllBypasses(ele, updateTransitions); } } else { names = names.split(/\s+/); for (var _i = 0; _i < eles.length; _i++) { var _ele2 = eles[_i]; style.removeBypasses(_ele2, names, updateTransitions); } } this.emitAndNotify('style'); // let the renderer know we've updated style return this; // chaining }, show: function show() { this.css('display', 'element'); return this; // chaining }, hide: function hide() { this.css('display', 'none'); return this; // chaining }, effectiveOpacity: function effectiveOpacity() { var cy = this.cy(); if (!cy.styleEnabled()) { return 1; } var hasCompoundNodes = cy.hasCompoundNodes(); var ele = this[0]; if (ele) { var _p = ele._private; var parentOpacity = ele.pstyle('opacity').value; if (!hasCompoundNodes) { return parentOpacity; } var parents = !_p.data.parent ? null : ele.parents(); if (parents) { for (var i = 0; i < parents.length; i++) { var parent = parents[i]; var opacity = parent.pstyle('opacity').value; parentOpacity = opacity * parentOpacity; } } return parentOpacity; } }, transparent: function transparent() { var cy = this.cy(); if (!cy.styleEnabled()) { return false; } var ele = this[0]; var hasCompoundNodes = ele.cy().hasCompoundNodes(); if (ele) { if (!hasCompoundNodes) { return ele.pstyle('opacity').value === 0; } else { return ele.effectiveOpacity() === 0; } } }, backgrounding: function backgrounding() { var cy = this.cy(); if (!cy.styleEnabled()) { return false; } var ele = this[0]; return ele._private.backgrounding ? true : false; } }; function checkCompound(ele, parentOk) { var _p = ele._private; var parents = _p.data.parent ? ele.parents() : null; if (parents) { for (var i = 0; i < parents.length; i++) { var parent = parents[i]; if (!parentOk(parent)) { return false; } } } return true; } function defineDerivedStateFunction(specs) { var ok = specs.ok; var edgeOkViaNode = specs.edgeOkViaNode || specs.ok; var parentOk = specs.parentOk || specs.ok; return function () { var cy = this.cy(); if (!cy.styleEnabled()) { return true; } var ele = this[0]; var hasCompoundNodes = cy.hasCompoundNodes(); if (ele) { var _p = ele._private; if (!ok(ele)) { return false; } if (ele.isNode()) { return !hasCompoundNodes || checkCompound(ele, parentOk); } else { var src = _p.source; var tgt = _p.target; return edgeOkViaNode(src) && (!hasCompoundNodes || checkCompound(src, edgeOkViaNode)) && (src === tgt || edgeOkViaNode(tgt) && (!hasCompoundNodes || checkCompound(tgt, edgeOkViaNode))); } } }; } var eleTakesUpSpace = cacheStyleFunction('eleTakesUpSpace', function (ele) { return ele.pstyle('display').value === 'element' && ele.width() !== 0 && (ele.isNode() ? ele.height() !== 0 : true); }); elesfn$4.takesUpSpace = cachePrototypeStyleFunction('takesUpSpace', defineDerivedStateFunction({ ok: eleTakesUpSpace })); var eleInteractive = cacheStyleFunction('eleInteractive', function (ele) { return ele.pstyle('events').value === 'yes' && ele.pstyle('visibility').value === 'visible' && eleTakesUpSpace(ele); }); var parentInteractive = cacheStyleFunction('parentInteractive', function (parent) { return parent.pstyle('visibility').value === 'visible' && eleTakesUpSpace(parent); }); elesfn$4.interactive = cachePrototypeStyleFunction('interactive', defineDerivedStateFunction({ ok: eleInteractive, parentOk: parentInteractive, edgeOkViaNode: eleTakesUpSpace })); elesfn$4.noninteractive = function () { var ele = this[0]; if (ele) { return !ele.interactive(); } }; var eleVisible = cacheStyleFunction('eleVisible', function (ele) { return ele.pstyle('visibility').value === 'visible' && ele.pstyle('opacity').pfValue !== 0 && eleTakesUpSpace(ele); }); var edgeVisibleViaNode = eleTakesUpSpace; elesfn$4.visible = cachePrototypeStyleFunction('visible', defineDerivedStateFunction({ ok: eleVisible, edgeOkViaNode: edgeVisibleViaNode })); elesfn$4.hidden = function () { var ele = this[0]; if (ele) { return !ele.visible(); } }; elesfn$4.isBundledBezier = cachePrototypeStyleFunction('isBundledBezier', function () { if (!this.cy().styleEnabled()) { return false; } return !this.removed() && this.pstyle('curve-style').value === 'bezier' && this.takesUpSpace(); }); elesfn$4.bypass = elesfn$4.css = elesfn$4.style; elesfn$4.renderedCss = elesfn$4.renderedStyle; elesfn$4.removeBypass = elesfn$4.removeCss = elesfn$4.removeStyle; elesfn$4.pstyle = elesfn$4.parsedStyle; var elesfn$3 = {}; function defineSwitchFunction(params) { return function () { var args = arguments; var changedEles = []; // e.g. cy.nodes().select( data, handler ) if (args.length === 2) { var data = args[0]; var handler = args[1]; this.on(params.event, data, handler); } // e.g. cy.nodes().select( handler ) else if (args.length === 1 && fn$6(args[0])) { var _handler = args[0]; this.on(params.event, _handler); } // e.g. cy.nodes().select() // e.g. (private) cy.nodes().select(['tapselect']) else if (args.length === 0 || args.length === 1 && array(args[0])) { var addlEvents = args.length === 1 ? args[0] : null; for (var i = 0; i < this.length; i++) { var ele = this[i]; var able = !params.ableField || ele._private[params.ableField]; var changed = ele._private[params.field] != params.value; if (params.overrideAble) { var overrideAble = params.overrideAble(ele); if (overrideAble !== undefined) { able = overrideAble; if (!overrideAble) { return this; } // to save cycles assume not able for all on override } } if (able) { ele._private[params.field] = params.value; if (changed) { changedEles.push(ele); } } } var changedColl = this.spawn(changedEles); changedColl.updateStyle(); // change of state => possible change of style changedColl.emit(params.event); if (addlEvents) { changedColl.emit(addlEvents); } } return this; }; } function defineSwitchSet(params) { elesfn$3[params.field] = function () { var ele = this[0]; if (ele) { if (params.overrideField) { var val = params.overrideField(ele); if (val !== undefined) { return val; } } return ele._private[params.field]; } }; elesfn$3[params.on] = defineSwitchFunction({ event: params.on, field: params.field, ableField: params.ableField, overrideAble: params.overrideAble, value: true }); elesfn$3[params.off] = defineSwitchFunction({ event: params.off, field: params.field, ableField: params.ableField, overrideAble: params.overrideAble, value: false }); } defineSwitchSet({ field: 'locked', overrideField: function overrideField(ele) { return ele.cy().autolock() ? true : undefined; }, on: 'lock', off: 'unlock' }); defineSwitchSet({ field: 'grabbable', overrideField: function overrideField(ele) { return ele.cy().autoungrabify() || ele.pannable() ? false : undefined; }, on: 'grabify', off: 'ungrabify' }); defineSwitchSet({ field: 'selected', ableField: 'selectable', overrideAble: function overrideAble(ele) { return ele.cy().autounselectify() ? false : undefined; }, on: 'select', off: 'unselect' }); defineSwitchSet({ field: 'selectable', overrideField: function overrideField(ele) { return ele.cy().autounselectify() ? false : undefined; }, on: 'selectify', off: 'unselectify' }); elesfn$3.deselect = elesfn$3.unselect; elesfn$3.grabbed = function () { var ele = this[0]; if (ele) { return ele._private.grabbed; } }; defineSwitchSet({ field: 'active', on: 'activate', off: 'unactivate' }); defineSwitchSet({ field: 'pannable', on: 'panify', off: 'unpanify' }); elesfn$3.inactive = function () { var ele = this[0]; if (ele) { return !ele._private.active; } }; var elesfn$2 = {}; // DAG functions //////////////// var defineDagExtremity = function defineDagExtremity(params) { return function dagExtremityImpl(selector) { var eles = this; var ret = []; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; if (!ele.isNode()) { continue; } var disqualified = false; var edges = ele.connectedEdges(); for (var j = 0; j < edges.length; j++) { var edge = edges[j]; var src = edge.source(); var tgt = edge.target(); if (params.noIncomingEdges && tgt === ele && src !== ele || params.noOutgoingEdges && src === ele && tgt !== ele) { disqualified = true; break; } } if (!disqualified) { ret.push(ele); } } return this.spawn(ret, true).filter(selector); }; }; var defineDagOneHop = function defineDagOneHop(params) { return function (selector) { var eles = this; var oEles = []; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; if (!ele.isNode()) { continue; } var edges = ele.connectedEdges(); for (var j = 0; j < edges.length; j++) { var edge = edges[j]; var src = edge.source(); var tgt = edge.target(); if (params.outgoing && src === ele) { oEles.push(edge); oEles.push(tgt); } else if (params.incoming && tgt === ele) { oEles.push(edge); oEles.push(src); } } } return this.spawn(oEles, true).filter(selector); }; }; var defineDagAllHops = function defineDagAllHops(params) { return function (selector) { var eles = this; var sEles = []; var sElesIds = {}; for (;;) { var next = params.outgoing ? eles.outgoers() : eles.incomers(); if (next.length === 0) { break; } // done if none left var newNext = false; for (var i = 0; i < next.length; i++) { var n = next[i]; var nid = n.id(); if (!sElesIds[nid]) { sElesIds[nid] = true; sEles.push(n); newNext = true; } } if (!newNext) { break; } // done if touched all outgoers already eles = next; } return this.spawn(sEles, true).filter(selector); }; }; elesfn$2.clearTraversalCache = function () { for (var i = 0; i < this.length; i++) { this[i]._private.traversalCache = null; } }; extend(elesfn$2, { // get the root nodes in the DAG roots: defineDagExtremity({ noIncomingEdges: true }), // get the leaf nodes in the DAG leaves: defineDagExtremity({ noOutgoingEdges: true }), // normally called children in graph theory // these nodes =edges=> outgoing nodes outgoers: cache(defineDagOneHop({ outgoing: true }), 'outgoers'), // aka DAG descendants successors: defineDagAllHops({ outgoing: true }), // normally called parents in graph theory // these nodes <=edges= incoming nodes incomers: cache(defineDagOneHop({ incoming: true }), 'incomers'), // aka DAG ancestors predecessors: defineDagAllHops({ incoming: true }) }); // Neighbourhood functions ////////////////////////// extend(elesfn$2, { neighborhood: cache(function (selector) { var elements = []; var nodes = this.nodes(); for (var i = 0; i < nodes.length; i++) { // for all nodes var node = nodes[i]; var connectedEdges = node.connectedEdges(); // for each connected edge, add the edge and the other node for (var j = 0; j < connectedEdges.length; j++) { var edge = connectedEdges[j]; var src = edge.source(); var tgt = edge.target(); var otherNode = node === src ? tgt : src; // need check in case of loop if (otherNode.length > 0) { elements.push(otherNode[0]); // add node 1 hop away } // add connected edge elements.push(edge[0]); } } return this.spawn(elements, true).filter(selector); }, 'neighborhood'), closedNeighborhood: function closedNeighborhood(selector) { return this.neighborhood().add(this).filter(selector); }, openNeighborhood: function openNeighborhood(selector) { return this.neighborhood(selector); } }); // aliases elesfn$2.neighbourhood = elesfn$2.neighborhood; elesfn$2.closedNeighbourhood = elesfn$2.closedNeighborhood; elesfn$2.openNeighbourhood = elesfn$2.openNeighborhood; // Edge functions ///////////////// extend(elesfn$2, { source: cache(function sourceImpl(selector) { var ele = this[0]; var src; if (ele) { src = ele._private.source || ele.cy().collection(); } return src && selector ? src.filter(selector) : src; }, 'source'), target: cache(function targetImpl(selector) { var ele = this[0]; var tgt; if (ele) { tgt = ele._private.target || ele.cy().collection(); } return tgt && selector ? tgt.filter(selector) : tgt; }, 'target'), sources: defineSourceFunction({ attr: 'source' }), targets: defineSourceFunction({ attr: 'target' }) }); function defineSourceFunction(params) { return function sourceImpl(selector) { var sources = []; for (var i = 0; i < this.length; i++) { var ele = this[i]; var src = ele._private[params.attr]; if (src) { sources.push(src); } } return this.spawn(sources, true).filter(selector); }; } extend(elesfn$2, { edgesWith: cache(defineEdgesWithFunction(), 'edgesWith'), edgesTo: cache(defineEdgesWithFunction({ thisIsSrc: true }), 'edgesTo') }); function defineEdgesWithFunction(params) { return function edgesWithImpl(otherNodes) { var elements = []; var cy = this._private.cy; var p = params || {}; // get elements if a selector is specified if (string(otherNodes)) { otherNodes = cy.$(otherNodes); } for (var h = 0; h < otherNodes.length; h++) { var edges = otherNodes[h]._private.edges; for (var i = 0; i < edges.length; i++) { var edge = edges[i]; var edgeData = edge._private.data; var thisToOther = this.hasElementWithId(edgeData.source) && otherNodes.hasElementWithId(edgeData.target); var otherToThis = otherNodes.hasElementWithId(edgeData.source) && this.hasElementWithId(edgeData.target); var edgeConnectsThisAndOther = thisToOther || otherToThis; if (!edgeConnectsThisAndOther) { continue; } if (p.thisIsSrc || p.thisIsTgt) { if (p.thisIsSrc && !thisToOther) { continue; } if (p.thisIsTgt && !otherToThis) { continue; } } elements.push(edge); } } return this.spawn(elements, true); }; } extend(elesfn$2, { connectedEdges: cache(function (selector) { var retEles = []; var eles = this; for (var i = 0; i < eles.length; i++) { var node = eles[i]; if (!node.isNode()) { continue; } var edges = node._private.edges; for (var j = 0; j < edges.length; j++) { var edge = edges[j]; retEles.push(edge); } } return this.spawn(retEles, true).filter(selector); }, 'connectedEdges'), connectedNodes: cache(function (selector) { var retEles = []; var eles = this; for (var i = 0; i < eles.length; i++) { var edge = eles[i]; if (!edge.isEdge()) { continue; } retEles.push(edge.source()[0]); retEles.push(edge.target()[0]); } return this.spawn(retEles, true).filter(selector); }, 'connectedNodes'), parallelEdges: cache(defineParallelEdgesFunction(), 'parallelEdges'), codirectedEdges: cache(defineParallelEdgesFunction({ codirected: true }), 'codirectedEdges') }); function defineParallelEdgesFunction(params) { var defaults = { codirected: false }; params = extend({}, defaults, params); return function parallelEdgesImpl(selector) { // micro-optimised for renderer var elements = []; var edges = this.edges(); var p = params; // look at all the edges in the collection for (var i = 0; i < edges.length; i++) { var edge1 = edges[i]; var edge1_p = edge1._private; var src1 = edge1_p.source; var srcid1 = src1._private.data.id; var tgtid1 = edge1_p.data.target; var srcEdges1 = src1._private.edges; // look at edges connected to the src node of this edge for (var j = 0; j < srcEdges1.length; j++) { var edge2 = srcEdges1[j]; var edge2data = edge2._private.data; var tgtid2 = edge2data.target; var srcid2 = edge2data.source; var codirected = tgtid2 === tgtid1 && srcid2 === srcid1; var oppdirected = srcid1 === tgtid2 && tgtid1 === srcid2; if (p.codirected && codirected || !p.codirected && (codirected || oppdirected)) { elements.push(edge2); } } } return this.spawn(elements, true).filter(selector); }; } // Misc functions ///////////////// extend(elesfn$2, { components: function components(root) { var self = this; var cy = self.cy(); var visited = cy.collection(); var unvisited = root == null ? self.nodes() : root.nodes(); var components = []; if (root != null && unvisited.empty()) { // root may contain only edges unvisited = root.sources(); // doesn't matter which node to use (undirected), so just use the source sides } var visitInComponent = function visitInComponent(node, component) { visited.merge(node); unvisited.unmerge(node); component.merge(node); }; if (unvisited.empty()) { return self.spawn(); } var _loop = function _loop() { // each iteration yields a component var cmpt = cy.collection(); components.push(cmpt); var root = unvisited[0]; visitInComponent(root, cmpt); self.bfs({ directed: false, roots: root, visit: function visit(v) { return visitInComponent(v, cmpt); } }); cmpt.forEach(function (node) { node.connectedEdges().forEach(function (e) { // connectedEdges() usually cached if (self.has(e) && cmpt.has(e.source()) && cmpt.has(e.target())) { // has() is cheap cmpt.merge(e); // forEach() only considers nodes -- sets N at call time } }); }); }; do { _loop(); } while (unvisited.length > 0); return components; }, component: function component() { var ele = this[0]; return ele.cy().mutableElements().components(ele)[0]; } }); elesfn$2.componentsOf = elesfn$2.components; // represents a set of nodes, edges, or both together var Collection = function Collection(cy, elements) { var unique = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false; var removed = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false; if (cy === undefined) { error('A collection must have a reference to the core'); return; } var map = new Map$2(); var createdElements = false; if (!elements) { elements = []; } else if (elements.length > 0 && plainObject(elements[0]) && !element(elements[0])) { createdElements = true; // make elements from json and restore all at once later var eles = []; var elesIds = new Set$1(); for (var i = 0, l = elements.length; i < l; i++) { var json = elements[i]; if (json.data == null) { json.data = {}; } var _data = json.data; // make sure newly created elements have valid ids if (_data.id == null) { _data.id = uuid(); } else if (cy.hasElementWithId(_data.id) || elesIds.has(_data.id)) { continue; // can't create element if prior id already exists } var ele = new Element(cy, json, false); eles.push(ele); elesIds.add(_data.id); } elements = eles; } this.length = 0; for (var _i = 0, _l = elements.length; _i < _l; _i++) { var element$1 = elements[_i][0]; // [0] in case elements is an array of collections, rather than array of elements if (element$1 == null) { continue; } var id = element$1._private.data.id; if (!unique || !map.has(id)) { if (unique) { map.set(id, { index: this.length, ele: element$1 }); } this[this.length] = element$1; this.length++; } } this._private = { eles: this, cy: cy, get map() { if (this.lazyMap == null) { this.rebuildMap(); } return this.lazyMap; }, set map(m) { this.lazyMap = m; }, rebuildMap: function rebuildMap() { var m = this.lazyMap = new Map$2(); var eles = this.eles; for (var _i2 = 0; _i2 < eles.length; _i2++) { var _ele = eles[_i2]; m.set(_ele.id(), { index: _i2, ele: _ele }); } } }; if (unique) { this._private.map = map; } // restore the elements if we created them from json if (createdElements && !removed) { this.restore(); } }; // Functions //////////////////////////////////////////////////////////////////////////////////////////////////// // keep the prototypes in sync (an element has the same functions as a collection) // and use elefn and elesfn as shorthands to the prototypes var elesfn$1 = Element.prototype = Collection.prototype = Object.create(Array.prototype); elesfn$1.instanceString = function () { return 'collection'; }; elesfn$1.spawn = function (eles, unique) { return new Collection(this.cy(), eles, unique); }; elesfn$1.spawnSelf = function () { return this.spawn(this); }; elesfn$1.cy = function () { return this._private.cy; }; elesfn$1.renderer = function () { return this._private.cy.renderer(); }; elesfn$1.element = function () { return this[0]; }; elesfn$1.collection = function () { if (collection(this)) { return this; } else { // an element return new Collection(this._private.cy, [this]); } }; elesfn$1.unique = function () { return new Collection(this._private.cy, this, true); }; elesfn$1.hasElementWithId = function (id) { id = '' + id; // id must be string return this._private.map.has(id); }; elesfn$1.getElementById = function (id) { id = '' + id; // id must be string var cy = this._private.cy; var entry = this._private.map.get(id); return entry ? entry.ele : new Collection(cy); // get ele or empty collection }; elesfn$1.$id = elesfn$1.getElementById; elesfn$1.poolIndex = function () { var cy = this._private.cy; var eles = cy._private.elements; var id = this[0]._private.data.id; return eles._private.map.get(id).index; }; elesfn$1.indexOf = function (ele) { var id = ele[0]._private.data.id; return this._private.map.get(id).index; }; elesfn$1.indexOfId = function (id) { id = '' + id; // id must be string return this._private.map.get(id).index; }; elesfn$1.json = function (obj) { var ele = this.element(); var cy = this.cy(); if (ele == null && obj) { return this; } // can't set to no eles if (ele == null) { return undefined; } // can't get from no eles var p = ele._private; if (plainObject(obj)) { // set cy.startBatch(); if (obj.data) { ele.data(obj.data); var _data2 = p.data; if (ele.isEdge()) { // source and target are immutable via data() var move = false; var spec = {}; var src = obj.data.source; var tgt = obj.data.target; if (src != null && src != _data2.source) { spec.source = '' + src; // id must be string move = true; } if (tgt != null && tgt != _data2.target) { spec.target = '' + tgt; // id must be string move = true; } if (move) { ele = ele.move(spec); } } else { // parent is immutable via data() var newParentValSpecd = ('parent' in obj.data); var parent = obj.data.parent; if (newParentValSpecd && (parent != null || _data2.parent != null) && parent != _data2.parent) { if (parent === undefined) { // can't set undefined imperatively, so use null parent = null; } if (parent != null) { parent = '' + parent; // id must be string } ele = ele.move({ parent: parent }); } } } if (obj.position) { ele.position(obj.position); } // ignore group -- immutable var checkSwitch = function checkSwitch(k, trueFnName, falseFnName) { var obj_k = obj[k]; if (obj_k != null && obj_k !== p[k]) { if (obj_k) { ele[trueFnName](); } else { ele[falseFnName](); } } }; checkSwitch('removed', 'remove', 'restore'); checkSwitch('selected', 'select', 'unselect'); checkSwitch('selectable', 'selectify', 'unselectify'); checkSwitch('locked', 'lock', 'unlock'); checkSwitch('grabbable', 'grabify', 'ungrabify'); checkSwitch('pannable', 'panify', 'unpanify'); if (obj.classes != null) { ele.classes(obj.classes); } cy.endBatch(); return this; } else if (obj === undefined) { // get var json = { data: copy(p.data), position: copy(p.position), group: p.group, removed: p.removed, selected: p.selected, selectable: p.selectable, locked: p.locked, grabbable: p.grabbable, pannable: p.pannable, classes: null }; json.classes = ''; var i = 0; p.classes.forEach(function (cls) { return json.classes += i++ === 0 ? cls : ' ' + cls; }); return json; } }; elesfn$1.jsons = function () { var jsons = []; for (var i = 0; i < this.length; i++) { var ele = this[i]; var json = ele.json(); jsons.push(json); } return jsons; }; elesfn$1.clone = function () { var cy = this.cy(); var elesArr = []; for (var i = 0; i < this.length; i++) { var ele = this[i]; var json = ele.json(); var clone = new Element(cy, json, false); // NB no restore elesArr.push(clone); } return new Collection(cy, elesArr); }; elesfn$1.copy = elesfn$1.clone; elesfn$1.restore = function () { var notifyRenderer = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true; var addToPool = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; var self = this; var cy = self.cy(); var cy_p = cy._private; // create arrays of nodes and edges, since we need to // restore the nodes first var nodes = []; var edges = []; var elements; for (var _i3 = 0, l = self.length; _i3 < l; _i3++) { var ele = self[_i3]; if (addToPool && !ele.removed()) { // don't need to handle this ele continue; } // keep nodes first in the array and edges after if (ele.isNode()) { // put to front of array if node nodes.push(ele); } else { // put to end of array if edge edges.push(ele); } } elements = nodes.concat(edges); var i; var removeFromElements = function removeFromElements() { elements.splice(i, 1); i--; }; // now, restore each element for (i = 0; i < elements.length; i++) { var _ele2 = elements[i]; var _private = _ele2._private; var _data3 = _private.data; // the traversal cache should start fresh when ele is added _ele2.clearTraversalCache(); // set id and validate if (!addToPool && !_private.removed) ; else if (_data3.id === undefined) { _data3.id = uuid(); } else if (number$1(_data3.id)) { _data3.id = '' + _data3.id; // now it's a string } else if (emptyString(_data3.id) || !string(_data3.id)) { error('Can not create element with invalid string ID `' + _data3.id + '`'); // can't create element if it has empty string as id or non-string id removeFromElements(); continue; } else if (cy.hasElementWithId(_data3.id)) { error('Can not create second element with ID `' + _data3.id + '`'); // can't create element if one already has that id removeFromElements(); continue; } var id = _data3.id; // id is finalised, now let's keep a ref if (_ele2.isNode()) { // extra checks for nodes var pos = _private.position; // make sure the nodes have a defined position if (pos.x == null) { pos.x = 0; } if (pos.y == null) { pos.y = 0; } } if (_ele2.isEdge()) { // extra checks for edges var edge = _ele2; var fields = ['source', 'target']; var fieldsLength = fields.length; var badSourceOrTarget = false; for (var j = 0; j < fieldsLength; j++) { var field = fields[j]; var val = _data3[field]; if (number$1(val)) { val = _data3[field] = '' + _data3[field]; // now string } if (val == null || val === '') { // can't create if source or target is not defined properly error('Can not create edge `' + id + '` with unspecified ' + field); badSourceOrTarget = true; } else if (!cy.hasElementWithId(val)) { // can't create edge if one of its nodes doesn't exist error('Can not create edge `' + id + '` with nonexistant ' + field + ' `' + val + '`'); badSourceOrTarget = true; } } if (badSourceOrTarget) { removeFromElements(); continue; } // can't create this var src = cy.getElementById(_data3.source); var tgt = cy.getElementById(_data3.target); // only one edge in node if loop if (src.same(tgt)) { src._private.edges.push(edge); } else { src._private.edges.push(edge); tgt._private.edges.push(edge); } edge._private.source = src; edge._private.target = tgt; } // if is edge // create mock ids / indexes maps for element so it can be used like collections _private.map = new Map$2(); _private.map.set(id, { ele: _ele2, index: 0 }); _private.removed = false; if (addToPool) { cy.addToPool(_ele2); } } // for each element // do compound node sanity checks for (var _i4 = 0; _i4 < nodes.length; _i4++) { // each node var node = nodes[_i4]; var _data4 = node._private.data; if (number$1(_data4.parent)) { // then automake string _data4.parent = '' + _data4.parent; } var parentId = _data4.parent; var specifiedParent = parentId != null; if (specifiedParent || node._private.parent) { var parent = node._private.parent ? cy.collection().merge(node._private.parent) : cy.getElementById(parentId); if (parent.empty()) { // non-existant parent; just remove it _data4.parent = undefined; } else if (parent[0].removed()) { warn('Node added with missing parent, reference to parent removed'); _data4.parent = undefined; node._private.parent = null; } else { var selfAsParent = false; var ancestor = parent; while (!ancestor.empty()) { if (node.same(ancestor)) { // mark self as parent and remove from data selfAsParent = true; _data4.parent = undefined; // remove parent reference // exit or we loop forever break; } ancestor = ancestor.parent(); } if (!selfAsParent) { // connect with children parent[0]._private.children.push(node); node._private.parent = parent[0]; // let the core know we have a compound graph cy_p.hasCompoundNodes = true; } } // else } // if specified parent } // for each node if (elements.length > 0) { var restored = elements.length === self.length ? self : new Collection(cy, elements); for (var _i5 = 0; _i5 < restored.length; _i5++) { var _ele3 = restored[_i5]; if (_ele3.isNode()) { continue; } // adding an edge invalidates the traversal caches for the parallel edges _ele3.parallelEdges().clearTraversalCache(); // adding an edge invalidates the traversal cache for the connected nodes _ele3.source().clearTraversalCache(); _ele3.target().clearTraversalCache(); } var toUpdateStyle; if (cy_p.hasCompoundNodes) { toUpdateStyle = cy.collection().merge(restored).merge(restored.connectedNodes()).merge(restored.parent()); } else { toUpdateStyle = restored; } toUpdateStyle.dirtyCompoundBoundsCache().dirtyBoundingBoxCache().updateStyle(notifyRenderer); if (notifyRenderer) { restored.emitAndNotify('add'); } else if (addToPool) { restored.emit('add'); } } return self; // chainability }; elesfn$1.removed = function () { var ele = this[0]; return ele && ele._private.removed; }; elesfn$1.inside = function () { var ele = this[0]; return ele && !ele._private.removed; }; elesfn$1.remove = function () { var notifyRenderer = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true; var removeFromPool = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; var self = this; var elesToRemove = []; var elesToRemoveIds = {}; var cy = self._private.cy; // add connected edges function addConnectedEdges(node) { var edges = node._private.edges; for (var i = 0; i < edges.length; i++) { add(edges[i]); } } // add descendant nodes function addChildren(node) { var children = node._private.children; for (var i = 0; i < children.length; i++) { add(children[i]); } } function add(ele) { var alreadyAdded = elesToRemoveIds[ele.id()]; if (removeFromPool && ele.removed() || alreadyAdded) { return; } else { elesToRemoveIds[ele.id()] = true; } if (ele.isNode()) { elesToRemove.push(ele); // nodes are removed last addConnectedEdges(ele); addChildren(ele); } else { elesToRemove.unshift(ele); // edges are removed first } } // make the list of elements to remove // (may be removing more than specified due to connected edges etc) for (var i = 0, l = self.length; i < l; i++) { var ele = self[i]; add(ele); } function removeEdgeRef(node, edge) { var connectedEdges = node._private.edges; removeFromArray(connectedEdges, edge); // removing an edges invalidates the traversal cache for its nodes node.clearTraversalCache(); } function removeParallelRef(pllEdge) { // removing an edge invalidates the traversal caches for the parallel edges pllEdge.clearTraversalCache(); } var alteredParents = []; alteredParents.ids = {}; function removeChildRef(parent, ele) { ele = ele[0]; parent = parent[0]; var children = parent._private.children; var pid = parent.id(); removeFromArray(children, ele); // remove parent => child ref ele._private.parent = null; // remove child => parent ref if (!alteredParents.ids[pid]) { alteredParents.ids[pid] = true; alteredParents.push(parent); } } self.dirtyCompoundBoundsCache(); if (removeFromPool) { cy.removeFromPool(elesToRemove); // remove from core pool } for (var _i6 = 0; _i6 < elesToRemove.length; _i6++) { var _ele4 = elesToRemove[_i6]; if (_ele4.isEdge()) { // remove references to this edge in its connected nodes var src = _ele4.source()[0]; var tgt = _ele4.target()[0]; removeEdgeRef(src, _ele4); removeEdgeRef(tgt, _ele4); var pllEdges = _ele4.parallelEdges(); for (var j = 0; j < pllEdges.length; j++) { var pllEdge = pllEdges[j]; removeParallelRef(pllEdge); if (pllEdge.isBundledBezier()) { pllEdge.dirtyBoundingBoxCache(); } } } else { // remove reference to parent var parent = _ele4.parent(); if (parent.length !== 0) { removeChildRef(parent, _ele4); } } if (removeFromPool) { // mark as removed _ele4._private.removed = true; } } // check to see if we have a compound graph or not var elesStillInside = cy._private.elements; cy._private.hasCompoundNodes = false; for (var _i7 = 0; _i7 < elesStillInside.length; _i7++) { var _ele5 = elesStillInside[_i7]; if (_ele5.isParent()) { cy._private.hasCompoundNodes = true; break; } } var removedElements = new Collection(this.cy(), elesToRemove); if (removedElements.size() > 0) { // must manually notify since trigger won't do this automatically once removed if (notifyRenderer) { removedElements.emitAndNotify('remove'); } else if (removeFromPool) { removedElements.emit('remove'); } } // the parents who were modified by the removal need their style updated for (var _i8 = 0; _i8 < alteredParents.length; _i8++) { var _ele6 = alteredParents[_i8]; if (!removeFromPool || !_ele6.removed()) { _ele6.updateStyle(); } } return removedElements; }; elesfn$1.move = function (struct) { var cy = this._private.cy; var eles = this; // just clean up refs, caches, etc. in the same way as when removing and then restoring // (our calls to remove/restore do not remove from the graph or make events) var notifyRenderer = false; var modifyPool = false; var toString = function toString(id) { return id == null ? id : '' + id; }; // id must be string if (struct.source !== undefined || struct.target !== undefined) { var srcId = toString(struct.source); var tgtId = toString(struct.target); var srcExists = srcId != null && cy.hasElementWithId(srcId); var tgtExists = tgtId != null && cy.hasElementWithId(tgtId); if (srcExists || tgtExists) { cy.batch(function () { // avoid duplicate style updates eles.remove(notifyRenderer, modifyPool); // clean up refs etc. eles.emitAndNotify('moveout'); for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var _data5 = ele._private.data; if (ele.isEdge()) { if (srcExists) { _data5.source = srcId; } if (tgtExists) { _data5.target = tgtId; } } } eles.restore(notifyRenderer, modifyPool); // make new refs, style, etc. }); eles.emitAndNotify('move'); } } else if (struct.parent !== undefined) { // move node to new parent var parentId = toString(struct.parent); var parentExists = parentId === null || cy.hasElementWithId(parentId); if (parentExists) { var pidToAssign = parentId === null ? undefined : parentId; cy.batch(function () { // avoid duplicate style updates var updated = eles.remove(notifyRenderer, modifyPool); // clean up refs etc. updated.emitAndNotify('moveout'); for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var _data6 = ele._private.data; if (ele.isNode()) { _data6.parent = pidToAssign; } } updated.restore(notifyRenderer, modifyPool); // make new refs, style, etc. }); eles.emitAndNotify('move'); } } return this; }; [elesfn$j, elesfn$i, elesfn$h, elesfn$g, elesfn$f, data, elesfn$d, dimensions, elesfn$9, elesfn$8, elesfn$7, elesfn$6, elesfn$5, elesfn$4, elesfn$3, elesfn$2].forEach(function (props) { extend(elesfn$1, props); }); var corefn$9 = { add: function add(opts) { var elements; var cy = this; // add the elements if (elementOrCollection(opts)) { var eles = opts; if (eles._private.cy === cy) { // same instance => just restore elements = eles.restore(); } else { // otherwise, copy from json var jsons = []; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; jsons.push(ele.json()); } elements = new Collection(cy, jsons); } } // specify an array of options else if (array(opts)) { var _jsons = opts; elements = new Collection(cy, _jsons); } // specify via opts.nodes and opts.edges else if (plainObject(opts) && (array(opts.nodes) || array(opts.edges))) { var elesByGroup = opts; var _jsons2 = []; var grs = ['nodes', 'edges']; for (var _i = 0, il = grs.length; _i < il; _i++) { var group = grs[_i]; var elesArray = elesByGroup[group]; if (array(elesArray)) { for (var j = 0, jl = elesArray.length; j < jl; j++) { var json = extend({ group: group }, elesArray[j]); _jsons2.push(json); } } } elements = new Collection(cy, _jsons2); } // specify options for one element else { var _json = opts; elements = new Element(cy, _json).collection(); } return elements; }, remove: function remove(collection) { if (elementOrCollection(collection)) ; else if (string(collection)) { var selector = collection; collection = this.$(selector); } return collection.remove(); } }; /* global Float32Array */ /*! Bezier curve function generator. Copyright Gaetan Renaudeau. MIT License: http://en.wikipedia.org/wiki/MIT_License */ function generateCubicBezier(mX1, mY1, mX2, mY2) { var NEWTON_ITERATIONS = 4, NEWTON_MIN_SLOPE = 0.001, SUBDIVISION_PRECISION = 0.0000001, SUBDIVISION_MAX_ITERATIONS = 10, kSplineTableSize = 11, kSampleStepSize = 1.0 / (kSplineTableSize - 1.0), float32ArraySupported = typeof Float32Array !== 'undefined'; /* Must contain four arguments. */ if (arguments.length !== 4) { return false; } /* Arguments must be numbers. */ for (var i = 0; i < 4; ++i) { if (typeof arguments[i] !== "number" || isNaN(arguments[i]) || !isFinite(arguments[i])) { return false; } } /* X values must be in the [0, 1] range. */ mX1 = Math.min(mX1, 1); mX2 = Math.min(mX2, 1); mX1 = Math.max(mX1, 0); mX2 = Math.max(mX2, 0); var mSampleValues = float32ArraySupported ? new Float32Array(kSplineTableSize) : new Array(kSplineTableSize); function A(aA1, aA2) { return 1.0 - 3.0 * aA2 + 3.0 * aA1; } function B(aA1, aA2) { return 3.0 * aA2 - 6.0 * aA1; } function C(aA1) { return 3.0 * aA1; } function calcBezier(aT, aA1, aA2) { return ((A(aA1, aA2) * aT + B(aA1, aA2)) * aT + C(aA1)) * aT; } function getSlope(aT, aA1, aA2) { return 3.0 * A(aA1, aA2) * aT * aT + 2.0 * B(aA1, aA2) * aT + C(aA1); } function newtonRaphsonIterate(aX, aGuessT) { for (var _i = 0; _i < NEWTON_ITERATIONS; ++_i) { var currentSlope = getSlope(aGuessT, mX1, mX2); if (currentSlope === 0.0) { return aGuessT; } var currentX = calcBezier(aGuessT, mX1, mX2) - aX; aGuessT -= currentX / currentSlope; } return aGuessT; } function calcSampleValues() { for (var _i2 = 0; _i2 < kSplineTableSize; ++_i2) { mSampleValues[_i2] = calcBezier(_i2 * kSampleStepSize, mX1, mX2); } } function binarySubdivide(aX, aA, aB) { var currentX, currentT, i = 0; do { currentT = aA + (aB - aA) / 2.0; currentX = calcBezier(currentT, mX1, mX2) - aX; if (currentX > 0.0) { aB = currentT; } else { aA = currentT; } } while (Math.abs(currentX) > SUBDIVISION_PRECISION && ++i < SUBDIVISION_MAX_ITERATIONS); return currentT; } function getTForX(aX) { var intervalStart = 0.0, currentSample = 1, lastSample = kSplineTableSize - 1; for (; currentSample !== lastSample && mSampleValues[currentSample] <= aX; ++currentSample) { intervalStart += kSampleStepSize; } --currentSample; var dist = (aX - mSampleValues[currentSample]) / (mSampleValues[currentSample + 1] - mSampleValues[currentSample]), guessForT = intervalStart + dist * kSampleStepSize, initialSlope = getSlope(guessForT, mX1, mX2); if (initialSlope >= NEWTON_MIN_SLOPE) { return newtonRaphsonIterate(aX, guessForT); } else if (initialSlope === 0.0) { return guessForT; } else { return binarySubdivide(aX, intervalStart, intervalStart + kSampleStepSize); } } var _precomputed = false; function precompute() { _precomputed = true; if (mX1 !== mY1 || mX2 !== mY2) { calcSampleValues(); } } var f = function f(aX) { if (!_precomputed) { precompute(); } if (mX1 === mY1 && mX2 === mY2) { return aX; } if (aX === 0) { return 0; } if (aX === 1) { return 1; } return calcBezier(getTForX(aX), mY1, mY2); }; f.getControlPoints = function () { return [{ x: mX1, y: mY1 }, { x: mX2, y: mY2 }]; }; var str = "generateBezier(" + [mX1, mY1, mX2, mY2] + ")"; f.toString = function () { return str; }; return f; } /*! Runge-Kutta spring physics function generator. Adapted from Framer.js, copyright Koen Bok. MIT License: http://en.wikipedia.org/wiki/MIT_License */ /* Given a tension, friction, and duration, a simulation at 60FPS will first run without a defined duration in order to calculate the full path. A second pass then adjusts the time delta -- using the relation between actual time and duration -- to calculate the path for the duration-constrained animation. */ var generateSpringRK4 = function () { function springAccelerationForState(state) { return -state.tension * state.x - state.friction * state.v; } function springEvaluateStateWithDerivative(initialState, dt, derivative) { var state = { x: initialState.x + derivative.dx * dt, v: initialState.v + derivative.dv * dt, tension: initialState.tension, friction: initialState.friction }; return { dx: state.v, dv: springAccelerationForState(state) }; } function springIntegrateState(state, dt) { var a = { dx: state.v, dv: springAccelerationForState(state) }, b = springEvaluateStateWithDerivative(state, dt * 0.5, a), c = springEvaluateStateWithDerivative(state, dt * 0.5, b), d = springEvaluateStateWithDerivative(state, dt, c), dxdt = 1.0 / 6.0 * (a.dx + 2.0 * (b.dx + c.dx) + d.dx), dvdt = 1.0 / 6.0 * (a.dv + 2.0 * (b.dv + c.dv) + d.dv); state.x = state.x + dxdt * dt; state.v = state.v + dvdt * dt; return state; } return function springRK4Factory(tension, friction, duration) { var initState = { x: -1, v: 0, tension: null, friction: null }, path = [0], time_lapsed = 0, tolerance = 1 / 10000, DT = 16 / 1000, have_duration, dt, last_state; tension = parseFloat(tension) || 500; friction = parseFloat(friction) || 20; duration = duration || null; initState.tension = tension; initState.friction = friction; have_duration = duration !== null; /* Calculate the actual time it takes for this animation to complete with the provided conditions. */ if (have_duration) { /* Run the simulation without a duration. */ time_lapsed = springRK4Factory(tension, friction); /* Compute the adjusted time delta. */ dt = time_lapsed / duration * DT; } else { dt = DT; } for (;;) { /* Next/step function .*/ last_state = springIntegrateState(last_state || initState, dt); /* Store the position. */ path.push(1 + last_state.x); time_lapsed += 16; /* If the change threshold is reached, break. */ if (!(Math.abs(last_state.x) > tolerance && Math.abs(last_state.v) > tolerance)) { break; } } /* If duration is not defined, return the actual time required for completing this animation. Otherwise, return a closure that holds the computed path and returns a snapshot of the position according to a given percentComplete. */ return !have_duration ? time_lapsed : function (percentComplete) { return path[percentComplete * (path.length - 1) | 0]; }; }; }(); var cubicBezier = function cubicBezier(t1, p1, t2, p2) { var bezier = generateCubicBezier(t1, p1, t2, p2); return function (start, end, percent) { return start + (end - start) * bezier(percent); }; }; var easings = { 'linear': function linear(start, end, percent) { return start + (end - start) * percent; }, // default easings 'ease': cubicBezier(0.25, 0.1, 0.25, 1), 'ease-in': cubicBezier(0.42, 0, 1, 1), 'ease-out': cubicBezier(0, 0, 0.58, 1), 'ease-in-out': cubicBezier(0.42, 0, 0.58, 1), // sine 'ease-in-sine': cubicBezier(0.47, 0, 0.745, 0.715), 'ease-out-sine': cubicBezier(0.39, 0.575, 0.565, 1), 'ease-in-out-sine': cubicBezier(0.445, 0.05, 0.55, 0.95), // quad 'ease-in-quad': cubicBezier(0.55, 0.085, 0.68, 0.53), 'ease-out-quad': cubicBezier(0.25, 0.46, 0.45, 0.94), 'ease-in-out-quad': cubicBezier(0.455, 0.03, 0.515, 0.955), // cubic 'ease-in-cubic': cubicBezier(0.55, 0.055, 0.675, 0.19), 'ease-out-cubic': cubicBezier(0.215, 0.61, 0.355, 1), 'ease-in-out-cubic': cubicBezier(0.645, 0.045, 0.355, 1), // quart 'ease-in-quart': cubicBezier(0.895, 0.03, 0.685, 0.22), 'ease-out-quart': cubicBezier(0.165, 0.84, 0.44, 1), 'ease-in-out-quart': cubicBezier(0.77, 0, 0.175, 1), // quint 'ease-in-quint': cubicBezier(0.755, 0.05, 0.855, 0.06), 'ease-out-quint': cubicBezier(0.23, 1, 0.32, 1), 'ease-in-out-quint': cubicBezier(0.86, 0, 0.07, 1), // expo 'ease-in-expo': cubicBezier(0.95, 0.05, 0.795, 0.035), 'ease-out-expo': cubicBezier(0.19, 1, 0.22, 1), 'ease-in-out-expo': cubicBezier(1, 0, 0, 1), // circ 'ease-in-circ': cubicBezier(0.6, 0.04, 0.98, 0.335), 'ease-out-circ': cubicBezier(0.075, 0.82, 0.165, 1), 'ease-in-out-circ': cubicBezier(0.785, 0.135, 0.15, 0.86), // user param easings... 'spring': function spring(tension, friction, duration) { if (duration === 0) { // can't get a spring w/ duration 0 return easings.linear; // duration 0 => jump to end so impl doesn't matter } var spring = generateSpringRK4(tension, friction, duration); return function (start, end, percent) { return start + (end - start) * spring(percent); }; }, 'cubic-bezier': cubicBezier }; function getEasedValue(type, start, end, percent, easingFn) { if (percent === 1) { return end; } if (start === end) { return end; } var val = easingFn(start, end, percent); if (type == null) { return val; } if (type.roundValue || type.color) { val = Math.round(val); } if (type.min !== undefined) { val = Math.max(val, type.min); } if (type.max !== undefined) { val = Math.min(val, type.max); } return val; } function getValue(prop, spec) { if (prop.pfValue != null || prop.value != null) { if (prop.pfValue != null && (spec == null || spec.type.units !== '%')) { return prop.pfValue; } else { return prop.value; } } else { return prop; } } function ease(startProp, endProp, percent, easingFn, propSpec) { var type = propSpec != null ? propSpec.type : null; if (percent < 0) { percent = 0; } else if (percent > 1) { percent = 1; } var start = getValue(startProp, propSpec); var end = getValue(endProp, propSpec); if (number$1(start) && number$1(end)) { return getEasedValue(type, start, end, percent, easingFn); } else if (array(start) && array(end)) { var easedArr = []; for (var i = 0; i < end.length; i++) { var si = start[i]; var ei = end[i]; if (si != null && ei != null) { var val = getEasedValue(type, si, ei, percent, easingFn); easedArr.push(val); } else { easedArr.push(ei); } } return easedArr; } return undefined; } function step$1(self, ani, now, isCore) { var isEles = !isCore; var _p = self._private; var ani_p = ani._private; var pEasing = ani_p.easing; var startTime = ani_p.startTime; var cy = isCore ? self : self.cy(); var style = cy.style(); if (!ani_p.easingImpl) { if (pEasing == null) { // use default ani_p.easingImpl = easings['linear']; } else { // then define w/ name var easingVals; if (string(pEasing)) { var easingProp = style.parse('transition-timing-function', pEasing); easingVals = easingProp.value; } else { // then assume preparsed array easingVals = pEasing; } var name, args; if (string(easingVals)) { name = easingVals; args = []; } else { name = easingVals[1]; args = easingVals.slice(2).map(function (n) { return +n; }); } if (args.length > 0) { // create with args if (name === 'spring') { args.push(ani_p.duration); // need duration to generate spring } ani_p.easingImpl = easings[name].apply(null, args); } else { // static impl by name ani_p.easingImpl = easings[name]; } } } var easing = ani_p.easingImpl; var percent; if (ani_p.duration === 0) { percent = 1; } else { percent = (now - startTime) / ani_p.duration; } if (ani_p.applying) { percent = ani_p.progress; } if (percent < 0) { percent = 0; } else if (percent > 1) { percent = 1; } if (ani_p.delay == null) { // then update var startPos = ani_p.startPosition; var endPos = ani_p.position; if (endPos && isEles && !self.locked()) { var newPos = {}; if (valid(startPos.x, endPos.x)) { newPos.x = ease(startPos.x, endPos.x, percent, easing); } if (valid(startPos.y, endPos.y)) { newPos.y = ease(startPos.y, endPos.y, percent, easing); } self.position(newPos); } var startPan = ani_p.startPan; var endPan = ani_p.pan; var pan = _p.pan; var animatingPan = endPan != null && isCore; if (animatingPan) { if (valid(startPan.x, endPan.x)) { pan.x = ease(startPan.x, endPan.x, percent, easing); } if (valid(startPan.y, endPan.y)) { pan.y = ease(startPan.y, endPan.y, percent, easing); } self.emit('pan'); } var startZoom = ani_p.startZoom; var endZoom = ani_p.zoom; var animatingZoom = endZoom != null && isCore; if (animatingZoom) { if (valid(startZoom, endZoom)) { _p.zoom = bound(_p.minZoom, ease(startZoom, endZoom, percent, easing), _p.maxZoom); } self.emit('zoom'); } if (animatingPan || animatingZoom) { self.emit('viewport'); } var props = ani_p.style; if (props && props.length > 0 && isEles) { for (var i = 0; i < props.length; i++) { var prop = props[i]; var _name = prop.name; var end = prop; var start = ani_p.startStyle[_name]; var propSpec = style.properties[start.name]; var easedVal = ease(start, end, percent, easing, propSpec); style.overrideBypass(self, _name, easedVal); } // for props self.emit('style'); } // if } ani_p.progress = percent; return percent; } function valid(start, end) { if (start == null || end == null) { return false; } if (number$1(start) && number$1(end)) { return true; } else if (start && end) { return true; } return false; } function startAnimation(self, ani, now, isCore) { var ani_p = ani._private; ani_p.started = true; ani_p.startTime = now - ani_p.progress * ani_p.duration; } function stepAll(now, cy) { var eles = cy._private.aniEles; var doneEles = []; function stepOne(ele, isCore) { var _p = ele._private; var current = _p.animation.current; var queue = _p.animation.queue; var ranAnis = false; // if nothing currently animating, get something from the queue if (current.length === 0) { var next = queue.shift(); if (next) { current.push(next); } } var callbacks = function callbacks(_callbacks) { for (var j = _callbacks.length - 1; j >= 0; j--) { var cb = _callbacks[j]; cb(); } _callbacks.splice(0, _callbacks.length); }; // step and remove if done for (var i = current.length - 1; i >= 0; i--) { var ani = current[i]; var ani_p = ani._private; if (ani_p.stopped) { current.splice(i, 1); ani_p.hooked = false; ani_p.playing = false; ani_p.started = false; callbacks(ani_p.frames); continue; } if (!ani_p.playing && !ani_p.applying) { continue; } // an apply() while playing shouldn't do anything if (ani_p.playing && ani_p.applying) { ani_p.applying = false; } if (!ani_p.started) { startAnimation(ele, ani, now); } step$1(ele, ani, now, isCore); if (ani_p.applying) { ani_p.applying = false; } callbacks(ani_p.frames); if (ani_p.step != null) { ani_p.step(now); } if (ani.completed()) { current.splice(i, 1); ani_p.hooked = false; ani_p.playing = false; ani_p.started = false; callbacks(ani_p.completes); } ranAnis = true; } if (!isCore && current.length === 0 && queue.length === 0) { doneEles.push(ele); } return ranAnis; } // stepElement // handle all eles var ranEleAni = false; for (var e = 0; e < eles.length; e++) { var ele = eles[e]; var handledThisEle = stepOne(ele); ranEleAni = ranEleAni || handledThisEle; } // each element var ranCoreAni = stepOne(cy, true); // notify renderer if (ranEleAni || ranCoreAni) { if (eles.length > 0) { cy.notify('draw', eles); } else { cy.notify('draw'); } } // remove elements from list of currently animating if its queues are empty eles.unmerge(doneEles); cy.emit('step'); } // stepAll var corefn$8 = { // pull in animation functions animate: define.animate(), animation: define.animation(), animated: define.animated(), clearQueue: define.clearQueue(), delay: define.delay(), delayAnimation: define.delayAnimation(), stop: define.stop(), addToAnimationPool: function addToAnimationPool(eles) { var cy = this; if (!cy.styleEnabled()) { return; } // save cycles when no style used cy._private.aniEles.merge(eles); }, stopAnimationLoop: function stopAnimationLoop() { this._private.animationsRunning = false; }, startAnimationLoop: function startAnimationLoop() { var cy = this; cy._private.animationsRunning = true; if (!cy.styleEnabled()) { return; } // save cycles when no style used // NB the animation loop will exec in headless environments if style enabled // and explicit cy.destroy() is necessary to stop the loop function headlessStep() { if (!cy._private.animationsRunning) { return; } requestAnimationFrame(function animationStep(now) { stepAll(now, cy); headlessStep(); }); } var renderer = cy.renderer(); if (renderer && renderer.beforeRender) { // let the renderer schedule animations renderer.beforeRender(function rendererAnimationStep(willDraw, now) { stepAll(now, cy); }, renderer.beforeRenderPriorities.animations); } else { // manage the animation loop ourselves headlessStep(); // first call } } }; var emitterOptions = { qualifierCompare: function qualifierCompare(selector1, selector2) { if (selector1 == null || selector2 == null) { return selector1 == null && selector2 == null; } else { return selector1.sameText(selector2); } }, eventMatches: function eventMatches(cy, listener, eventObj) { var selector = listener.qualifier; if (selector != null) { return cy !== eventObj.target && element(eventObj.target) && selector.matches(eventObj.target); } return true; }, addEventFields: function addEventFields(cy, evt) { evt.cy = cy; evt.target = cy; }, callbackContext: function callbackContext(cy, listener, eventObj) { return listener.qualifier != null ? eventObj.target : cy; } }; var argSelector = function argSelector(arg) { if (string(arg)) { return new Selector(arg); } else { return arg; } }; var elesfn = { createEmitter: function createEmitter() { var _p = this._private; if (!_p.emitter) { _p.emitter = new Emitter(emitterOptions, this); } return this; }, emitter: function emitter() { return this._private.emitter; }, on: function on(events, selector, callback) { this.emitter().on(events, argSelector(selector), callback); return this; }, removeListener: function removeListener(events, selector, callback) { this.emitter().removeListener(events, argSelector(selector), callback); return this; }, removeAllListeners: function removeAllListeners() { this.emitter().removeAllListeners(); return this; }, one: function one(events, selector, callback) { this.emitter().one(events, argSelector(selector), callback); return this; }, once: function once(events, selector, callback) { this.emitter().one(events, argSelector(selector), callback); return this; }, emit: function emit(events, extraParams) { this.emitter().emit(events, extraParams); return this; }, emitAndNotify: function emitAndNotify(event, eles) { this.emit(event); this.notify(event, eles); return this; } }; define.eventAliasesOn(elesfn); var corefn$7 = { png: function png(options) { var renderer = this._private.renderer; options = options || {}; return renderer.png(options); }, jpg: function jpg(options) { var renderer = this._private.renderer; options = options || {}; options.bg = options.bg || '#fff'; return renderer.jpg(options); } }; corefn$7.jpeg = corefn$7.jpg; var corefn$6 = { layout: function layout(options) { var cy = this; if (options == null) { error('Layout options must be specified to make a layout'); return; } if (options.name == null) { error('A `name` must be specified to make a layout'); return; } var name = options.name; var Layout = cy.extension('layout', name); if (Layout == null) { error('No such layout `' + name + '` found. Did you forget to import it and `cytoscape.use()` it?'); return; } var eles; if (string(options.eles)) { eles = cy.$(options.eles); } else { eles = options.eles != null ? options.eles : cy.$(); } var layout = new Layout(extend({}, options, { cy: cy, eles: eles })); return layout; } }; corefn$6.createLayout = corefn$6.makeLayout = corefn$6.layout; var corefn$5 = { notify: function notify(eventName, eventEles) { var _p = this._private; if (this.batching()) { _p.batchNotifications = _p.batchNotifications || {}; var eles = _p.batchNotifications[eventName] = _p.batchNotifications[eventName] || this.collection(); if (eventEles != null) { eles.merge(eventEles); } return; // notifications are disabled during batching } if (!_p.notificationsEnabled) { return; } // exit on disabled var renderer = this.renderer(); // exit if destroy() called on core or renderer in between frames #1499 #1528 if (this.destroyed() || !renderer) { return; } renderer.notify(eventName, eventEles); }, notifications: function notifications(bool) { var p = this._private; if (bool === undefined) { return p.notificationsEnabled; } else { p.notificationsEnabled = bool ? true : false; } return this; }, noNotifications: function noNotifications(callback) { this.notifications(false); callback(); this.notifications(true); }, batching: function batching() { return this._private.batchCount > 0; }, startBatch: function startBatch() { var _p = this._private; if (_p.batchCount == null) { _p.batchCount = 0; } if (_p.batchCount === 0) { _p.batchStyleEles = this.collection(); _p.batchNotifications = {}; } _p.batchCount++; return this; }, endBatch: function endBatch() { var _p = this._private; if (_p.batchCount === 0) { return this; } _p.batchCount--; if (_p.batchCount === 0) { // update style for dirty eles _p.batchStyleEles.updateStyle(); var renderer = this.renderer(); // notify the renderer of queued eles and event types Object.keys(_p.batchNotifications).forEach(function (eventName) { var eles = _p.batchNotifications[eventName]; if (eles.empty()) { renderer.notify(eventName); } else { renderer.notify(eventName, eles); } }); } return this; }, batch: function batch(callback) { this.startBatch(); callback(); this.endBatch(); return this; }, // for backwards compatibility batchData: function batchData(map) { var cy = this; return this.batch(function () { var ids = Object.keys(map); for (var i = 0; i < ids.length; i++) { var id = ids[i]; var data = map[id]; var ele = cy.getElementById(id); ele.data(data); } }); } }; var rendererDefaults = defaults$g({ hideEdgesOnViewport: false, textureOnViewport: false, motionBlur: false, motionBlurOpacity: 0.05, pixelRatio: undefined, desktopTapThreshold: 4, touchTapThreshold: 8, wheelSensitivity: 1, debug: false, showFps: false, webgl: false }); var corefn$4 = { renderTo: function renderTo(context, zoom, pan, pxRatio) { var r = this._private.renderer; r.renderTo(context, zoom, pan, pxRatio); return this; }, renderer: function renderer() { return this._private.renderer; }, forceRender: function forceRender() { this.notify('draw'); return this; }, resize: function resize() { this.invalidateSize(); this.emitAndNotify('resize'); return this; }, initRenderer: function initRenderer(options) { var cy = this; var RendererProto = cy.extension('renderer', options.name); if (RendererProto == null) { error("Can not initialise: No such renderer `".concat(options.name, "` found. Did you forget to import it and `cytoscape.use()` it?")); return; } if (options.wheelSensitivity !== undefined) { warn("You have set a custom wheel sensitivity. This will make your app zoom unnaturally when using mainstream mice. You should change this value from the default only if you can guarantee that all your users will use the same hardware and OS configuration as your current machine."); } var rOpts = rendererDefaults(options); rOpts.cy = cy; cy._private.renderer = new RendererProto(rOpts); this.notify('init'); }, destroyRenderer: function destroyRenderer() { var cy = this; cy.notify('destroy'); // destroy the renderer var domEle = cy.container(); if (domEle) { domEle._cyreg = null; while (domEle.childNodes.length > 0) { domEle.removeChild(domEle.childNodes[0]); } } cy._private.renderer = null; // to be extra safe, remove the ref cy.mutableElements().forEach(function (ele) { var _p = ele._private; _p.rscratch = {}; _p.rstyle = {}; _p.animation.current = []; _p.animation.queue = []; }); }, onRender: function onRender(fn) { return this.on('render', fn); }, offRender: function offRender(fn) { return this.off('render', fn); } }; corefn$4.invalidateDimensions = corefn$4.resize; var corefn$3 = { // get a collection // - empty collection on no args // - collection of elements in the graph on selector arg // - guarantee a returned collection when elements or collection specified collection: function collection(eles, opts) { if (string(eles)) { return this.$(eles); } else if (elementOrCollection(eles)) { return eles.collection(); } else if (array(eles)) { if (!opts) { opts = {}; } return new Collection(this, eles, opts.unique, opts.removed); } return new Collection(this); }, nodes: function nodes(selector) { var nodes = this.$(function (ele) { return ele.isNode(); }); if (selector) { return nodes.filter(selector); } return nodes; }, edges: function edges(selector) { var edges = this.$(function (ele) { return ele.isEdge(); }); if (selector) { return edges.filter(selector); } return edges; }, // search the graph like jQuery $: function $(selector) { var eles = this._private.elements; if (selector) { return eles.filter(selector); } else { return eles.spawnSelf(); } }, mutableElements: function mutableElements() { return this._private.elements; } }; // aliases corefn$3.elements = corefn$3.filter = corefn$3.$; var styfn$8 = {}; // keys for style blocks, e.g. ttfftt var TRUE = 't'; var FALSE = 'f'; // (potentially expensive calculation) // apply the style to the element based on // - its bypass // - what selectors match it styfn$8.apply = function (eles) { var self = this; var _p = self._private; var cy = _p.cy; var updatedEles = cy.collection(); for (var ie = 0; ie < eles.length; ie++) { var ele = eles[ie]; var cxtMeta = self.getContextMeta(ele); if (cxtMeta.empty) { continue; } var cxtStyle = self.getContextStyle(cxtMeta); var app = self.applyContextStyle(cxtMeta, cxtStyle, ele); if (ele._private.appliedInitStyle) { self.updateTransitions(ele, app.diffProps); } else { ele._private.appliedInitStyle = true; } var hintsDiff = self.updateStyleHints(ele); if (hintsDiff) { updatedEles.push(ele); } } // for elements return updatedEles; }; styfn$8.getPropertiesDiff = function (oldCxtKey, newCxtKey) { var self = this; var cache = self._private.propDiffs = self._private.propDiffs || {}; var dualCxtKey = oldCxtKey + '-' + newCxtKey; var cachedVal = cache[dualCxtKey]; if (cachedVal) { return cachedVal; } var diffProps = []; var addedProp = {}; for (var i = 0; i < self.length; i++) { var cxt = self[i]; var oldHasCxt = oldCxtKey[i] === TRUE; var newHasCxt = newCxtKey[i] === TRUE; var cxtHasDiffed = oldHasCxt !== newHasCxt; var cxtHasMappedProps = cxt.mappedProperties.length > 0; if (cxtHasDiffed || newHasCxt && cxtHasMappedProps) { var props = void 0; if (cxtHasDiffed && cxtHasMappedProps) { props = cxt.properties; // suffices b/c mappedProperties is a subset of properties } else if (cxtHasDiffed) { props = cxt.properties; // need to check them all } else if (cxtHasMappedProps) { props = cxt.mappedProperties; // only need to check mapped } for (var j = 0; j < props.length; j++) { var prop = props[j]; var name = prop.name; // if a later context overrides this property, then the fact that this context has switched/diffed doesn't matter // (semi expensive check since it makes this function O(n^2) on context length, but worth it since overall result // is cached) var laterCxtOverrides = false; for (var k = i + 1; k < self.length; k++) { var laterCxt = self[k]; var hasLaterCxt = newCxtKey[k] === TRUE; if (!hasLaterCxt) { continue; } // can't override unless the context is active laterCxtOverrides = laterCxt.properties[prop.name] != null; if (laterCxtOverrides) { break; } // exit early as long as one later context overrides } if (!addedProp[name] && !laterCxtOverrides) { addedProp[name] = true; diffProps.push(name); } } // for props } // if } // for contexts cache[dualCxtKey] = diffProps; return diffProps; }; styfn$8.getContextMeta = function (ele) { var self = this; var cxtKey = ''; var diffProps; var prevKey = ele._private.styleCxtKey || ''; // get the cxt key for (var i = 0; i < self.length; i++) { var context = self[i]; var contextSelectorMatches = context.selector && context.selector.matches(ele); // NB: context.selector may be null for 'core' if (contextSelectorMatches) { cxtKey += TRUE; } else { cxtKey += FALSE; } } // for context diffProps = self.getPropertiesDiff(prevKey, cxtKey); ele._private.styleCxtKey = cxtKey; return { key: cxtKey, diffPropNames: diffProps, empty: diffProps.length === 0 }; }; // gets a computed ele style object based on matched contexts styfn$8.getContextStyle = function (cxtMeta) { var cxtKey = cxtMeta.key; var self = this; var cxtStyles = this._private.contextStyles = this._private.contextStyles || {}; // if already computed style, returned cached copy if (cxtStyles[cxtKey]) { return cxtStyles[cxtKey]; } var style = { _private: { key: cxtKey } }; for (var i = 0; i < self.length; i++) { var cxt = self[i]; var hasCxt = cxtKey[i] === TRUE; if (!hasCxt) { continue; } for (var j = 0; j < cxt.properties.length; j++) { var prop = cxt.properties[j]; style[prop.name] = prop; } } cxtStyles[cxtKey] = style; return style; }; styfn$8.applyContextStyle = function (cxtMeta, cxtStyle, ele) { var self = this; var diffProps = cxtMeta.diffPropNames; var retDiffProps = {}; var types = self.types; for (var i = 0; i < diffProps.length; i++) { var diffPropName = diffProps[i]; var cxtProp = cxtStyle[diffPropName]; var eleProp = ele.pstyle(diffPropName); if (!cxtProp) { // no context prop means delete if (!eleProp) { continue; // no existing prop means nothing needs to be removed // nb affects initial application on mapped values like control-point-distances } else if (eleProp.bypass) { cxtProp = { name: diffPropName, deleteBypassed: true }; } else { cxtProp = { name: diffPropName, "delete": true }; } } // save cycles when the context prop doesn't need to be applied if (eleProp === cxtProp) { continue; } // save cycles when a mapped context prop doesn't need to be applied if (cxtProp.mapped === types.fn // context prop is function mapper && eleProp != null // some props can be null even by default (e.g. a prop that overrides another one) && eleProp.mapping != null // ele prop is a concrete value from from a mapper && eleProp.mapping.value === cxtProp.value // the current prop on the ele is a flat prop value for the function mapper ) { // NB don't write to cxtProp, as it's shared among eles (stored in stylesheet) var mapping = eleProp.mapping; // can write to mapping, as it's a per-ele copy var fnValue = mapping.fnValue = cxtProp.value(ele); // temporarily cache the value in case of a miss if (fnValue === mapping.prevFnValue) { continue; } } var retDiffProp = retDiffProps[diffPropName] = { prev: eleProp }; self.applyParsedProperty(ele, cxtProp); retDiffProp.next = ele.pstyle(diffPropName); if (retDiffProp.next && retDiffProp.next.bypass) { retDiffProp.next = retDiffProp.next.bypassed; } } return { diffProps: retDiffProps }; }; styfn$8.updateStyleHints = function (ele) { var _p = ele._private; var self = this; var propNames = self.propertyGroupNames; var propGrKeys = self.propertyGroupKeys; var propHash = function propHash(ele, propNames, seedKey) { return self.getPropertiesHash(ele, propNames, seedKey); }; var oldStyleKey = _p.styleKey; if (ele.removed()) { return false; } var isNode = _p.group === 'nodes'; // get the style key hashes per prop group // but lazily -- only use non-default prop values to reduce the number of hashes // var overriddenStyles = ele._private.style; propNames = Object.keys(overriddenStyles); for (var i = 0; i < propGrKeys.length; i++) { var grKey = propGrKeys[i]; _p.styleKeys[grKey] = [DEFAULT_HASH_SEED, DEFAULT_HASH_SEED_ALT]; } var updateGrKey1 = function updateGrKey1(val, grKey) { return _p.styleKeys[grKey][0] = hashInt(val, _p.styleKeys[grKey][0]); }; var updateGrKey2 = function updateGrKey2(val, grKey) { return _p.styleKeys[grKey][1] = hashIntAlt(val, _p.styleKeys[grKey][1]); }; var updateGrKey = function updateGrKey(val, grKey) { updateGrKey1(val, grKey); updateGrKey2(val, grKey); }; var updateGrKeyWStr = function updateGrKeyWStr(strVal, grKey) { for (var j = 0; j < strVal.length; j++) { var ch = strVal.charCodeAt(j); updateGrKey1(ch, grKey); updateGrKey2(ch, grKey); } }; // - hashing works on 32 bit ints b/c we use bitwise ops // - small numbers get cut off (e.g. 0.123 is seen as 0 by the hashing function) // - raise up small numbers so more significant digits are seen by hashing // - make small numbers larger than a normal value to avoid collisions // - works in practice and it's relatively cheap var N = 2000000000; var cleanNum = function cleanNum(val) { return -128 < val && val < 128 && Math.floor(val) !== val ? N - (val * 1024 | 0) : val; }; for (var _i = 0; _i < propNames.length; _i++) { var name = propNames[_i]; var parsedProp = overriddenStyles[name]; if (parsedProp == null) { continue; } var propInfo = this.properties[name]; var type = propInfo.type; var _grKey = propInfo.groupKey; var normalizedNumberVal = void 0; if (propInfo.hashOverride != null) { normalizedNumberVal = propInfo.hashOverride(ele, parsedProp); } else if (parsedProp.pfValue != null) { normalizedNumberVal = parsedProp.pfValue; } // might not be a number if it allows enums var numberVal = propInfo.enums == null ? parsedProp.value : null; var haveNormNum = normalizedNumberVal != null; var haveUnitedNum = numberVal != null; var haveNum = haveNormNum || haveUnitedNum; var units = parsedProp.units; // numbers are cheaper to hash than strings // 1 hash op vs n hash ops (for length n string) if (type.number && haveNum && !type.multiple) { var v = haveNormNum ? normalizedNumberVal : numberVal; updateGrKey(cleanNum(v), _grKey); if (!haveNormNum && units != null) { updateGrKeyWStr(units, _grKey); } } else { updateGrKeyWStr(parsedProp.strValue, _grKey); } } // overall style key // var hash = [DEFAULT_HASH_SEED, DEFAULT_HASH_SEED_ALT]; for (var _i2 = 0; _i2 < propGrKeys.length; _i2++) { var _grKey2 = propGrKeys[_i2]; var grHash = _p.styleKeys[_grKey2]; hash[0] = hashInt(grHash[0], hash[0]); hash[1] = hashIntAlt(grHash[1], hash[1]); } _p.styleKey = combineHashes(hash[0], hash[1]); // label dims // var sk = _p.styleKeys; _p.labelDimsKey = combineHashesArray(sk.labelDimensions); var labelKeys = propHash(ele, ['label'], sk.labelDimensions); _p.labelKey = combineHashesArray(labelKeys); _p.labelStyleKey = combineHashesArray(hashArrays(sk.commonLabel, labelKeys)); if (!isNode) { var sourceLabelKeys = propHash(ele, ['source-label'], sk.labelDimensions); _p.sourceLabelKey = combineHashesArray(sourceLabelKeys); _p.sourceLabelStyleKey = combineHashesArray(hashArrays(sk.commonLabel, sourceLabelKeys)); var targetLabelKeys = propHash(ele, ['target-label'], sk.labelDimensions); _p.targetLabelKey = combineHashesArray(targetLabelKeys); _p.targetLabelStyleKey = combineHashesArray(hashArrays(sk.commonLabel, targetLabelKeys)); } // node // if (isNode) { var _p$styleKeys = _p.styleKeys, nodeBody = _p$styleKeys.nodeBody, nodeBorder = _p$styleKeys.nodeBorder, nodeOutline = _p$styleKeys.nodeOutline, backgroundImage = _p$styleKeys.backgroundImage, compound = _p$styleKeys.compound, pie = _p$styleKeys.pie; var nodeKeys = [nodeBody, nodeBorder, nodeOutline, backgroundImage, compound, pie].filter(function (k) { return k != null; }).reduce(hashArrays, [DEFAULT_HASH_SEED, DEFAULT_HASH_SEED_ALT]); _p.nodeKey = combineHashesArray(nodeKeys); _p.hasPie = pie != null && pie[0] !== DEFAULT_HASH_SEED && pie[1] !== DEFAULT_HASH_SEED_ALT; } return oldStyleKey !== _p.styleKey; }; styfn$8.clearStyleHints = function (ele) { var _p = ele._private; _p.styleCxtKey = ''; _p.styleKeys = {}; _p.styleKey = null; _p.labelKey = null; _p.labelStyleKey = null; _p.sourceLabelKey = null; _p.sourceLabelStyleKey = null; _p.targetLabelKey = null; _p.targetLabelStyleKey = null; _p.nodeKey = null; _p.hasPie = null; }; // apply a property to the style (for internal use) // returns whether application was successful // // now, this function flattens the property, and here's how: // // for parsedProp:{ bypass: true, deleteBypass: true } // no property is generated, instead the bypass property in the // element's style is replaced by what's pointed to by the `bypassed` // field in the bypass property (i.e. restoring the property the // bypass was overriding) // // for parsedProp:{ mapped: truthy } // the generated flattenedProp:{ mapping: prop } // // for parsedProp:{ bypass: true } // the generated flattenedProp:{ bypassed: parsedProp } styfn$8.applyParsedProperty = function (ele, parsedProp) { var self = this; var prop = parsedProp; var style = ele._private.style; var flatProp; var types = self.types; var type = self.properties[prop.name].type; var propIsBypass = prop.bypass; var origProp = style[prop.name]; var origPropIsBypass = origProp && origProp.bypass; var _p = ele._private; var flatPropMapping = 'mapping'; var getVal = function getVal(p) { if (p == null) { return null; } else if (p.pfValue != null) { return p.pfValue; } else { return p.value; } }; var checkTriggers = function checkTriggers() { var fromVal = getVal(origProp); var toVal = getVal(prop); self.checkTriggers(ele, prop.name, fromVal, toVal); }; // edge sanity checks to prevent the client from making serious mistakes if (parsedProp.name === 'curve-style' && ele.isEdge() && ( // loops must be bundled beziers parsedProp.value !== 'bezier' && ele.isLoop() || // edges connected to compound nodes can not be haystacks parsedProp.value === 'haystack' && (ele.source().isParent() || ele.target().isParent()))) { prop = parsedProp = this.parse(parsedProp.name, 'bezier', propIsBypass); } if (prop["delete"]) { // delete the property and use the default value on falsey value style[prop.name] = undefined; checkTriggers(); return true; } if (prop.deleteBypassed) { // delete the property that the if (!origProp) { checkTriggers(); return true; // can't delete if no prop } else if (origProp.bypass) { // delete bypassed origProp.bypassed = undefined; checkTriggers(); return true; } else { return false; // we're unsuccessful deleting the bypassed } } // check if we need to delete the current bypass if (prop.deleteBypass) { // then this property is just here to indicate we need to delete if (!origProp) { checkTriggers(); return true; // property is already not defined } else if (origProp.bypass) { // then replace the bypass property with the original // because the bypassed property was already applied (and therefore parsed), we can just replace it (no reapplying necessary) style[prop.name] = origProp.bypassed; checkTriggers(); return true; } else { return false; // we're unsuccessful deleting the bypass } } var printMappingErr = function printMappingErr() { warn('Do not assign mappings to elements without corresponding data (i.e. ele `' + ele.id() + '` has no mapping for property `' + prop.name + '` with data field `' + prop.field + '`); try a `[' + prop.field + ']` selector to limit scope to elements with `' + prop.field + '` defined'); }; // put the property in the style objects switch (prop.mapped) { // flatten the property if mapped case types.mapData: { // flatten the field (e.g. data.foo.bar) var fields = prop.field.split('.'); var fieldVal = _p.data; for (var i = 0; i < fields.length && fieldVal; i++) { var field = fields[i]; fieldVal = fieldVal[field]; } if (fieldVal == null) { printMappingErr(); return false; } var percent; if (!number$1(fieldVal)) { // then don't apply and fall back on the existing style warn('Do not use continuous mappers without specifying numeric data (i.e. `' + prop.field + ': ' + fieldVal + '` for `' + ele.id() + '` is non-numeric)'); return false; } else { var fieldWidth = prop.fieldMax - prop.fieldMin; if (fieldWidth === 0) { // safety check -- not strictly necessary as no props of zero range should be passed here percent = 0; } else { percent = (fieldVal - prop.fieldMin) / fieldWidth; } } // make sure to bound percent value if (percent < 0) { percent = 0; } else if (percent > 1) { percent = 1; } if (type.color) { var r1 = prop.valueMin[0]; var r2 = prop.valueMax[0]; var g1 = prop.valueMin[1]; var g2 = prop.valueMax[1]; var b1 = prop.valueMin[2]; var b2 = prop.valueMax[2]; var a1 = prop.valueMin[3] == null ? 1 : prop.valueMin[3]; var a2 = prop.valueMax[3] == null ? 1 : prop.valueMax[3]; var clr = [Math.round(r1 + (r2 - r1) * percent), Math.round(g1 + (g2 - g1) * percent), Math.round(b1 + (b2 - b1) * percent), Math.round(a1 + (a2 - a1) * percent)]; flatProp = { // colours are simple, so just create the flat property instead of expensive string parsing bypass: prop.bypass, // we're a bypass if the mapping property is a bypass name: prop.name, value: clr, strValue: 'rgb(' + clr[0] + ', ' + clr[1] + ', ' + clr[2] + ')' }; } else if (type.number) { var calcValue = prop.valueMin + (prop.valueMax - prop.valueMin) * percent; flatProp = this.parse(prop.name, calcValue, prop.bypass, flatPropMapping); } else { return false; // can only map to colours and numbers } if (!flatProp) { // if we can't flatten the property, then don't apply the property and fall back on the existing style printMappingErr(); return false; } flatProp.mapping = prop; // keep a reference to the mapping prop = flatProp; // the flattened (mapped) property is the one we want break; } // direct mapping case types.data: { // flatten the field (e.g. data.foo.bar) var _fields = prop.field.split('.'); var _fieldVal = _p.data; for (var _i3 = 0; _i3 < _fields.length && _fieldVal; _i3++) { var _field = _fields[_i3]; _fieldVal = _fieldVal[_field]; } if (_fieldVal != null) { flatProp = this.parse(prop.name, _fieldVal, prop.bypass, flatPropMapping); } if (!flatProp) { // if we can't flatten the property, then don't apply and fall back on the existing style printMappingErr(); return false; } flatProp.mapping = prop; // keep a reference to the mapping prop = flatProp; // the flattened (mapped) property is the one we want break; } case types.fn: { var fn = prop.value; var fnRetVal = prop.fnValue != null ? prop.fnValue : fn(ele); // check for cached value before calling function prop.prevFnValue = fnRetVal; if (fnRetVal == null) { warn('Custom function mappers may not return null (i.e. `' + prop.name + '` for ele `' + ele.id() + '` is null)'); return false; } flatProp = this.parse(prop.name, fnRetVal, prop.bypass, flatPropMapping); if (!flatProp) { warn('Custom function mappers may not return invalid values for the property type (i.e. `' + prop.name + '` for ele `' + ele.id() + '` is invalid)'); return false; } flatProp.mapping = copy(prop); // keep a reference to the mapping prop = flatProp; // the flattened (mapped) property is the one we want break; } case undefined: break; // just set the property default: return false; // not a valid mapping } // if the property is a bypass property, then link the resultant property to the original one if (propIsBypass) { if (origPropIsBypass) { // then this bypass overrides the existing one prop.bypassed = origProp.bypassed; // steal bypassed prop from old bypass } else { // then link the orig prop to the new bypass prop.bypassed = origProp; } style[prop.name] = prop; // and set } else { // prop is not bypass if (origPropIsBypass) { // then keep the orig prop (since it's a bypass) and link to the new prop origProp.bypassed = prop; } else { // then just replace the old prop with the new one style[prop.name] = prop; } } checkTriggers(); return true; }; styfn$8.cleanElements = function (eles, keepBypasses) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; this.clearStyleHints(ele); ele.dirtyCompoundBoundsCache(); ele.dirtyBoundingBoxCache(); if (!keepBypasses) { ele._private.style = {}; } else { var style = ele._private.style; var propNames = Object.keys(style); for (var j = 0; j < propNames.length; j++) { var propName = propNames[j]; var eleProp = style[propName]; if (eleProp != null) { if (eleProp.bypass) { eleProp.bypassed = null; } else { style[propName] = null; } } } } } }; // updates the visual style for all elements (useful for manual style modification after init) styfn$8.update = function () { var cy = this._private.cy; var eles = cy.mutableElements(); eles.updateStyle(); }; // diffProps : { name => { prev, next } } styfn$8.updateTransitions = function (ele, diffProps) { var self = this; var _p = ele._private; var props = ele.pstyle('transition-property').value; var duration = ele.pstyle('transition-duration').pfValue; var delay = ele.pstyle('transition-delay').pfValue; if (props.length > 0 && duration > 0) { var style = {}; // build up the style to animate towards var anyPrev = false; for (var i = 0; i < props.length; i++) { var prop = props[i]; var styProp = ele.pstyle(prop); var diffProp = diffProps[prop]; if (!diffProp) { continue; } var prevProp = diffProp.prev; var fromProp = prevProp; var toProp = diffProp.next != null ? diffProp.next : styProp; var diff = false; var initVal = void 0; var initDt = 0.000001; // delta time % value for initVal (allows animating out of init zero opacity) if (!fromProp) { continue; } // consider px values if (number$1(fromProp.pfValue) && number$1(toProp.pfValue)) { diff = toProp.pfValue - fromProp.pfValue; // nonzero is truthy initVal = fromProp.pfValue + initDt * diff; // consider numerical values } else if (number$1(fromProp.value) && number$1(toProp.value)) { diff = toProp.value - fromProp.value; // nonzero is truthy initVal = fromProp.value + initDt * diff; // consider colour values } else if (array(fromProp.value) && array(toProp.value)) { diff = fromProp.value[0] !== toProp.value[0] || fromProp.value[1] !== toProp.value[1] || fromProp.value[2] !== toProp.value[2]; initVal = fromProp.strValue; } // the previous value is good for an animation only if it's different if (diff) { style[prop] = toProp.strValue; // to val this.applyBypass(ele, prop, initVal); // from val anyPrev = true; } } // end if props allow ani // can't transition if there's nothing previous to transition from if (!anyPrev) { return; } _p.transitioning = true; new Promise$1(function (resolve) { if (delay > 0) { ele.delayAnimation(delay).play().promise().then(resolve); } else { resolve(); } }).then(function () { return ele.animation({ style: style, duration: duration, easing: ele.pstyle('transition-timing-function').value, queue: false }).play().promise(); }).then(function () { // if( !isBypass ){ self.removeBypasses(ele, props); ele.emitAndNotify('style'); // } _p.transitioning = false; }); } else if (_p.transitioning) { this.removeBypasses(ele, props); ele.emitAndNotify('style'); _p.transitioning = false; } }; styfn$8.checkTrigger = function (ele, name, fromValue, toValue, getTrigger, onTrigger) { var prop = this.properties[name]; var triggerCheck = getTrigger(prop); if (triggerCheck != null && triggerCheck(fromValue, toValue)) { onTrigger(prop); } }; styfn$8.checkZOrderTrigger = function (ele, name, fromValue, toValue) { var _this = this; this.checkTrigger(ele, name, fromValue, toValue, function (prop) { return prop.triggersZOrder; }, function () { _this._private.cy.notify('zorder', ele); }); }; styfn$8.checkBoundsTrigger = function (ele, name, fromValue, toValue) { this.checkTrigger(ele, name, fromValue, toValue, function (prop) { return prop.triggersBounds; }, function (prop) { ele.dirtyCompoundBoundsCache(); ele.dirtyBoundingBoxCache(); // if the prop change makes the bb of pll bezier edges invalid, // then dirty the pll edge bb cache as well if ( // only for beziers -- so performance of other edges isn't affected prop.triggersBoundsOfParallelBeziers && name === 'curve-style' && (fromValue === 'bezier' || toValue === 'bezier')) { ele.parallelEdges().forEach(function (pllEdge) { if (pllEdge.isBundledBezier()) { pllEdge.dirtyBoundingBoxCache(); } }); } if (prop.triggersBoundsOfConnectedEdges && name === 'display' && (fromValue === 'none' || toValue === 'none')) { ele.connectedEdges().forEach(function (edge) { edge.dirtyBoundingBoxCache(); }); } }); }; styfn$8.checkTriggers = function (ele, name, fromValue, toValue) { ele.dirtyStyleCache(); this.checkZOrderTrigger(ele, name, fromValue, toValue); this.checkBoundsTrigger(ele, name, fromValue, toValue); }; var styfn$7 = {}; // bypasses are applied to an existing style on an element, and just tacked on temporarily // returns true iff application was successful for at least 1 specified property styfn$7.applyBypass = function (eles, name, value, updateTransitions) { var self = this; var props = []; var isBypass = true; // put all the properties (can specify one or many) in an array after parsing them if (name === '*' || name === '**') { // apply to all property names if (value !== undefined) { for (var i = 0; i < self.properties.length; i++) { var prop = self.properties[i]; var _name = prop.name; var parsedProp = this.parse(_name, value, true); if (parsedProp) { props.push(parsedProp); } } } } else if (string(name)) { // then parse the single property var _parsedProp = this.parse(name, value, true); if (_parsedProp) { props.push(_parsedProp); } } else if (plainObject(name)) { // then parse each property var specifiedProps = name; updateTransitions = value; var names = Object.keys(specifiedProps); for (var _i = 0; _i < names.length; _i++) { var _name2 = names[_i]; var _value = specifiedProps[_name2]; if (_value === undefined) { // try camel case name too _value = specifiedProps[dash2camel(_name2)]; } if (_value !== undefined) { var _parsedProp2 = this.parse(_name2, _value, true); if (_parsedProp2) { props.push(_parsedProp2); } } } } else { // can't do anything without well defined properties return false; } // we've failed if there are no valid properties if (props.length === 0) { return false; } // now, apply the bypass properties on the elements var ret = false; // return true if at least one succesful bypass applied for (var _i2 = 0; _i2 < eles.length; _i2++) { // for each ele var ele = eles[_i2]; var diffProps = {}; var diffProp = void 0; for (var j = 0; j < props.length; j++) { // for each prop var _prop = props[j]; if (updateTransitions) { var prevProp = ele.pstyle(_prop.name); diffProp = diffProps[_prop.name] = { prev: prevProp }; } ret = this.applyParsedProperty(ele, copy(_prop)) || ret; if (updateTransitions) { diffProp.next = ele.pstyle(_prop.name); } } // for props if (ret) { this.updateStyleHints(ele); } if (updateTransitions) { this.updateTransitions(ele, diffProps, isBypass); } } // for eles return ret; }; // only useful in specific cases like animation styfn$7.overrideBypass = function (eles, name, value) { name = camel2dash(name); for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var prop = ele._private.style[name]; var type = this.properties[name].type; var isColor = type.color; var isMulti = type.mutiple; var oldValue = !prop ? null : prop.pfValue != null ? prop.pfValue : prop.value; if (!prop || !prop.bypass) { // need a bypass if one doesn't exist this.applyBypass(ele, name, value); } else { prop.value = value; if (prop.pfValue != null) { prop.pfValue = value; } if (isColor) { prop.strValue = 'rgb(' + value.join(',') + ')'; } else if (isMulti) { prop.strValue = value.join(' '); } else { prop.strValue = '' + value; } this.updateStyleHints(ele); } this.checkTriggers(ele, name, oldValue, value); } }; styfn$7.removeAllBypasses = function (eles, updateTransitions) { return this.removeBypasses(eles, this.propertyNames, updateTransitions); }; styfn$7.removeBypasses = function (eles, props, updateTransitions) { var isBypass = true; for (var j = 0; j < eles.length; j++) { var ele = eles[j]; var diffProps = {}; for (var i = 0; i < props.length; i++) { var name = props[i]; var prop = this.properties[name]; var prevProp = ele.pstyle(prop.name); if (!prevProp || !prevProp.bypass) { // if a bypass doesn't exist for the prop, nothing needs to be removed continue; } var value = ''; // empty => remove bypass var parsedProp = this.parse(name, value, true); var diffProp = diffProps[prop.name] = { prev: prevProp }; this.applyParsedProperty(ele, parsedProp); diffProp.next = ele.pstyle(prop.name); } // for props this.updateStyleHints(ele); if (updateTransitions) { this.updateTransitions(ele, diffProps, isBypass); } } // for eles }; var styfn$6 = {}; // gets what an em size corresponds to in pixels relative to a dom element styfn$6.getEmSizeInPixels = function () { var px = this.containerCss('font-size'); if (px != null) { return parseFloat(px); } else { return 1; // for headless } }; // gets css property from the core container styfn$6.containerCss = function (propName) { var cy = this._private.cy; var domElement = cy.container(); var containerWindow = cy.window(); if (containerWindow && domElement && containerWindow.getComputedStyle) { return containerWindow.getComputedStyle(domElement).getPropertyValue(propName); } }; var styfn$5 = {}; // gets the rendered style for an element styfn$5.getRenderedStyle = function (ele, prop) { if (prop) { return this.getStylePropertyValue(ele, prop, true); } else { return this.getRawStyle(ele, true); } }; // gets the raw style for an element styfn$5.getRawStyle = function (ele, isRenderedVal) { var self = this; ele = ele[0]; // insure it's an element if (ele) { var rstyle = {}; for (var i = 0; i < self.properties.length; i++) { var prop = self.properties[i]; var val = self.getStylePropertyValue(ele, prop.name, isRenderedVal); if (val != null) { rstyle[prop.name] = val; rstyle[dash2camel(prop.name)] = val; } } return rstyle; } }; styfn$5.getIndexedStyle = function (ele, property, subproperty, index) { var pstyle = ele.pstyle(property)[subproperty][index]; return pstyle != null ? pstyle : ele.cy().style().getDefaultProperty(property)[subproperty][0]; }; styfn$5.getStylePropertyValue = function (ele, propName, isRenderedVal) { var self = this; ele = ele[0]; // insure it's an element if (ele) { var prop = self.properties[propName]; if (prop.alias) { prop = prop.pointsTo; } var type = prop.type; var styleProp = ele.pstyle(prop.name); if (styleProp) { var value = styleProp.value, units = styleProp.units, strValue = styleProp.strValue; if (isRenderedVal && type.number && value != null && number$1(value)) { var zoom = ele.cy().zoom(); var getRenderedValue = function getRenderedValue(val) { return val * zoom; }; var getValueStringWithUnits = function getValueStringWithUnits(val, units) { return getRenderedValue(val) + units; }; var isArrayValue = array(value); var haveUnits = isArrayValue ? units.every(function (u) { return u != null; }) : units != null; if (haveUnits) { if (isArrayValue) { return value.map(function (v, i) { return getValueStringWithUnits(v, units[i]); }).join(' '); } else { return getValueStringWithUnits(value, units); } } else { if (isArrayValue) { return value.map(function (v) { return string(v) ? v : '' + getRenderedValue(v); }).join(' '); } else { return '' + getRenderedValue(value); } } } else if (strValue != null) { return strValue; } } return null; } }; styfn$5.getAnimationStartStyle = function (ele, aniProps) { var rstyle = {}; for (var i = 0; i < aniProps.length; i++) { var aniProp = aniProps[i]; var name = aniProp.name; var styleProp = ele.pstyle(name); if (styleProp !== undefined) { // then make a prop of it if (plainObject(styleProp)) { styleProp = this.parse(name, styleProp.strValue); } else { styleProp = this.parse(name, styleProp); } } if (styleProp) { rstyle[name] = styleProp; } } return rstyle; }; styfn$5.getPropsList = function (propsObj) { var self = this; var rstyle = []; var style = propsObj; var props = self.properties; if (style) { var names = Object.keys(style); for (var i = 0; i < names.length; i++) { var name = names[i]; var val = style[name]; var prop = props[name] || props[camel2dash(name)]; var styleProp = this.parse(prop.name, val); if (styleProp) { rstyle.push(styleProp); } } } return rstyle; }; styfn$5.getNonDefaultPropertiesHash = function (ele, propNames, seed) { var hash = seed.slice(); var name, val, strVal, chVal; var i, j; for (i = 0; i < propNames.length; i++) { name = propNames[i]; val = ele.pstyle(name, false); if (val == null) { continue; } else if (val.pfValue != null) { hash[0] = hashInt(chVal, hash[0]); hash[1] = hashIntAlt(chVal, hash[1]); } else { strVal = val.strValue; for (j = 0; j < strVal.length; j++) { chVal = strVal.charCodeAt(j); hash[0] = hashInt(chVal, hash[0]); hash[1] = hashIntAlt(chVal, hash[1]); } } } return hash; }; styfn$5.getPropertiesHash = styfn$5.getNonDefaultPropertiesHash; var styfn$4 = {}; styfn$4.appendFromJson = function (json) { var style = this; for (var i = 0; i < json.length; i++) { var context = json[i]; var selector = context.selector; var props = context.style || context.css; var names = Object.keys(props); style.selector(selector); // apply selector for (var j = 0; j < names.length; j++) { var name = names[j]; var value = props[name]; style.css(name, value); // apply property } } return style; }; // accessible cy.style() function styfn$4.fromJson = function (json) { var style = this; style.resetToDefault(); style.appendFromJson(json); return style; }; // get json from cy.style() api styfn$4.json = function () { var json = []; for (var i = this.defaultLength; i < this.length; i++) { var cxt = this[i]; var selector = cxt.selector; var props = cxt.properties; var css = {}; for (var j = 0; j < props.length; j++) { var prop = props[j]; css[prop.name] = prop.strValue; } json.push({ selector: !selector ? 'core' : selector.toString(), style: css }); } return json; }; var styfn$3 = {}; styfn$3.appendFromString = function (string) { var self = this; var style = this; var remaining = '' + string; var selAndBlockStr; var blockRem; var propAndValStr; // remove comments from the style string remaining = remaining.replace(/[/][*](\s|.)+?[*][/]/g, ''); function removeSelAndBlockFromRemaining() { // remove the parsed selector and block from the remaining text to parse if (remaining.length > selAndBlockStr.length) { remaining = remaining.substr(selAndBlockStr.length); } else { remaining = ''; } } function removePropAndValFromRem() { // remove the parsed property and value from the remaining block text to parse if (blockRem.length > propAndValStr.length) { blockRem = blockRem.substr(propAndValStr.length); } else { blockRem = ''; } } for (;;) { var nothingLeftToParse = remaining.match(/^\s*$/); if (nothingLeftToParse) { break; } var selAndBlock = remaining.match(/^\s*((?:.|\s)+?)\s*\{((?:.|\s)+?)\}/); if (!selAndBlock) { warn('Halting stylesheet parsing: String stylesheet contains more to parse but no selector and block found in: ' + remaining); break; } selAndBlockStr = selAndBlock[0]; // parse the selector var selectorStr = selAndBlock[1]; if (selectorStr !== 'core') { var selector = new Selector(selectorStr); if (selector.invalid) { warn('Skipping parsing of block: Invalid selector found in string stylesheet: ' + selectorStr); // skip this selector and block removeSelAndBlockFromRemaining(); continue; } } // parse the block of properties and values var blockStr = selAndBlock[2]; var invalidBlock = false; blockRem = blockStr; var props = []; for (;;) { var _nothingLeftToParse = blockRem.match(/^\s*$/); if (_nothingLeftToParse) { break; } var propAndVal = blockRem.match(/^\s*(.+?)\s*:\s*(.+?)(?:\s*;|\s*$)/); if (!propAndVal) { warn('Skipping parsing of block: Invalid formatting of style property and value definitions found in:' + blockStr); invalidBlock = true; break; } propAndValStr = propAndVal[0]; var propStr = propAndVal[1]; var valStr = propAndVal[2]; var prop = self.properties[propStr]; if (!prop) { warn('Skipping property: Invalid property name in: ' + propAndValStr); // skip this property in the block removePropAndValFromRem(); continue; } var parsedProp = style.parse(propStr, valStr); if (!parsedProp) { warn('Skipping property: Invalid property definition in: ' + propAndValStr); // skip this property in the block removePropAndValFromRem(); continue; } props.push({ name: propStr, val: valStr }); removePropAndValFromRem(); } if (invalidBlock) { removeSelAndBlockFromRemaining(); break; } // put the parsed block in the style style.selector(selectorStr); for (var i = 0; i < props.length; i++) { var _prop = props[i]; style.css(_prop.name, _prop.val); } removeSelAndBlockFromRemaining(); } return style; }; styfn$3.fromString = function (string) { var style = this; style.resetToDefault(); style.appendFromString(string); return style; }; var styfn$2 = {}; (function () { var number$1 = number; var rgba = rgbaNoBackRefs; var hsla = hslaNoBackRefs; var hex3$1 = hex3; var hex6$1 = hex6; var data = function data(prefix) { return '^' + prefix + '\\s*\\(\\s*([\\w\\.]+)\\s*\\)$'; }; var mapData = function mapData(prefix) { var mapArg = number$1 + '|\\w+|' + rgba + '|' + hsla + '|' + hex3$1 + '|' + hex6$1; return '^' + prefix + '\\s*\\(([\\w\\.]+)\\s*\\,\\s*(' + number$1 + ')\\s*\\,\\s*(' + number$1 + ')\\s*,\\s*(' + mapArg + ')\\s*\\,\\s*(' + mapArg + ')\\)$'; }; var urlRegexes = ['^url\\s*\\(\\s*[\'"]?(.+?)[\'"]?\\s*\\)$', '^(none)$', '^(.+)$']; // each visual style property has a type and needs to be validated according to it styfn$2.types = { time: { number: true, min: 0, units: 's|ms', implicitUnits: 'ms' }, percent: { number: true, min: 0, max: 100, units: '%', implicitUnits: '%' }, percentages: { number: true, min: 0, max: 100, units: '%', implicitUnits: '%', multiple: true }, zeroOneNumber: { number: true, min: 0, max: 1, unitless: true }, zeroOneNumbers: { number: true, min: 0, max: 1, unitless: true, multiple: true }, nOneOneNumber: { number: true, min: -1, max: 1, unitless: true }, nonNegativeInt: { number: true, min: 0, integer: true, unitless: true }, nonNegativeNumber: { number: true, min: 0, unitless: true }, position: { enums: ['parent', 'origin'] }, nodeSize: { number: true, min: 0, enums: ['label'] }, number: { number: true, unitless: true }, numbers: { number: true, unitless: true, multiple: true }, positiveNumber: { number: true, unitless: true, min: 0, strictMin: true }, size: { number: true, min: 0 }, bidirectionalSize: { number: true }, // allows negative bidirectionalSizeMaybePercent: { number: true, allowPercent: true }, // allows negative bidirectionalSizes: { number: true, multiple: true }, // allows negative sizeMaybePercent: { number: true, min: 0, allowPercent: true }, axisDirection: { enums: ['horizontal', 'leftward', 'rightward', 'vertical', 'upward', 'downward', 'auto'] }, paddingRelativeTo: { enums: ['width', 'height', 'average', 'min', 'max'] }, bgWH: { number: true, min: 0, allowPercent: true, enums: ['auto'], multiple: true }, bgPos: { number: true, allowPercent: true, multiple: true }, bgRelativeTo: { enums: ['inner', 'include-padding'], multiple: true }, bgRepeat: { enums: ['repeat', 'repeat-x', 'repeat-y', 'no-repeat'], multiple: true }, bgFit: { enums: ['none', 'contain', 'cover'], multiple: true }, bgCrossOrigin: { enums: ['anonymous', 'use-credentials', 'null'], multiple: true }, bgClip: { enums: ['none', 'node'], multiple: true }, bgContainment: { enums: ['inside', 'over'], multiple: true }, color: { color: true }, colors: { color: true, multiple: true }, fill: { enums: ['solid', 'linear-gradient', 'radial-gradient'] }, bool: { enums: ['yes', 'no'] }, bools: { enums: ['yes', 'no'], multiple: true }, lineStyle: { enums: ['solid', 'dotted', 'dashed'] }, lineCap: { enums: ['butt', 'round', 'square'] }, linePosition: { enums: ['center', 'inside', 'outside'] }, lineJoin: { enums: ['round', 'bevel', 'miter'] }, borderStyle: { enums: ['solid', 'dotted', 'dashed', 'double'] }, curveStyle: { enums: ['bezier', 'unbundled-bezier', 'haystack', 'segments', 'straight', 'straight-triangle', 'taxi', 'round-segments', 'round-taxi'] }, radiusType: { enums: ['arc-radius', 'influence-radius'], multiple: true }, fontFamily: { regex: '^([\\w- \\"]+(?:\\s*,\\s*[\\w- \\"]+)*)$' }, fontStyle: { enums: ['italic', 'normal', 'oblique'] }, fontWeight: { enums: ['normal', 'bold', 'bolder', 'lighter', '100', '200', '300', '400', '500', '600', '800', '900', 100, 200, 300, 400, 500, 600, 700, 800, 900] }, textDecoration: { enums: ['none', 'underline', 'overline', 'line-through'] }, textTransform: { enums: ['none', 'uppercase', 'lowercase'] }, textWrap: { enums: ['none', 'wrap', 'ellipsis'] }, textOverflowWrap: { enums: ['whitespace', 'anywhere'] }, textBackgroundShape: { enums: ['rectangle', 'roundrectangle', 'round-rectangle'] }, nodeShape: { enums: ['rectangle', 'roundrectangle', 'round-rectangle', 'cutrectangle', 'cut-rectangle', 'bottomroundrectangle', 'bottom-round-rectangle', 'barrel', 'ellipse', 'triangle', 'round-triangle', 'square', 'pentagon', 'round-pentagon', 'hexagon', 'round-hexagon', 'concavehexagon', 'concave-hexagon', 'heptagon', 'round-heptagon', 'octagon', 'round-octagon', 'tag', 'round-tag', 'star', 'diamond', 'round-diamond', 'vee', 'rhomboid', 'right-rhomboid', 'polygon'] }, overlayShape: { enums: ['roundrectangle', 'round-rectangle', 'ellipse'] }, cornerRadius: { number: true, min: 0, units: 'px|em', implicitUnits: 'px', enums: ['auto'] }, compoundIncludeLabels: { enums: ['include', 'exclude'] }, arrowShape: { enums: ['tee', 'triangle', 'triangle-tee', 'circle-triangle', 'triangle-cross', 'triangle-backcurve', 'vee', 'square', 'circle', 'diamond', 'chevron', 'none'] }, arrowFill: { enums: ['filled', 'hollow'] }, arrowWidth: { number: true, units: '%|px|em', implicitUnits: 'px', enums: ['match-line'] }, display: { enums: ['element', 'none'] }, visibility: { enums: ['hidden', 'visible'] }, zCompoundDepth: { enums: ['bottom', 'orphan', 'auto', 'top'] }, zIndexCompare: { enums: ['auto', 'manual'] }, valign: { enums: ['top', 'center', 'bottom'] }, halign: { enums: ['left', 'center', 'right'] }, justification: { enums: ['left', 'center', 'right', 'auto'] }, text: { string: true }, data: { mapping: true, regex: data('data') }, layoutData: { mapping: true, regex: data('layoutData') }, scratch: { mapping: true, regex: data('scratch') }, mapData: { mapping: true, regex: mapData('mapData') }, mapLayoutData: { mapping: true, regex: mapData('mapLayoutData') }, mapScratch: { mapping: true, regex: mapData('mapScratch') }, fn: { mapping: true, fn: true }, url: { regexes: urlRegexes, singleRegexMatchValue: true }, urls: { regexes: urlRegexes, singleRegexMatchValue: true, multiple: true }, propList: { propList: true }, angle: { number: true, units: 'deg|rad', implicitUnits: 'rad' }, textRotation: { number: true, units: 'deg|rad', implicitUnits: 'rad', enums: ['none', 'autorotate'] }, polygonPointList: { number: true, multiple: true, evenMultiple: true, min: -1, max: 1, unitless: true }, edgeDistances: { enums: ['intersection', 'node-position', 'endpoints'] }, edgeEndpoint: { number: true, multiple: true, units: '%|px|em|deg|rad', implicitUnits: 'px', enums: ['inside-to-node', 'outside-to-node', 'outside-to-node-or-label', 'outside-to-line', 'outside-to-line-or-label'], singleEnum: true, validate: function validate(valArr, unitsArr) { switch (valArr.length) { case 2: // can be % or px only return unitsArr[0] !== 'deg' && unitsArr[0] !== 'rad' && unitsArr[1] !== 'deg' && unitsArr[1] !== 'rad'; case 1: // can be enum, deg, or rad only return string(valArr[0]) || unitsArr[0] === 'deg' || unitsArr[0] === 'rad'; default: return false; } } }, easing: { regexes: ['^(spring)\\s*\\(\\s*(' + number$1 + ')\\s*,\\s*(' + number$1 + ')\\s*\\)$', '^(cubic-bezier)\\s*\\(\\s*(' + number$1 + ')\\s*,\\s*(' + number$1 + ')\\s*,\\s*(' + number$1 + ')\\s*,\\s*(' + number$1 + ')\\s*\\)$'], enums: ['linear', 'ease', 'ease-in', 'ease-out', 'ease-in-out', 'ease-in-sine', 'ease-out-sine', 'ease-in-out-sine', 'ease-in-quad', 'ease-out-quad', 'ease-in-out-quad', 'ease-in-cubic', 'ease-out-cubic', 'ease-in-out-cubic', 'ease-in-quart', 'ease-out-quart', 'ease-in-out-quart', 'ease-in-quint', 'ease-out-quint', 'ease-in-out-quint', 'ease-in-expo', 'ease-out-expo', 'ease-in-out-expo', 'ease-in-circ', 'ease-out-circ', 'ease-in-out-circ'] }, gradientDirection: { enums: ['to-bottom', 'to-top', 'to-left', 'to-right', 'to-bottom-right', 'to-bottom-left', 'to-top-right', 'to-top-left', 'to-right-bottom', 'to-left-bottom', 'to-right-top', 'to-left-top' // different order ] }, boundsExpansion: { number: true, multiple: true, min: 0, validate: function validate(valArr) { var length = valArr.length; return length === 1 || length === 2 || length === 4; } } }; var diff = { zeroNonZero: function zeroNonZero(val1, val2) { if ((val1 == null || val2 == null) && val1 !== val2) { return true; // null cases could represent any value } if (val1 == 0 && val2 != 0) { return true; } else if (val1 != 0 && val2 == 0) { return true; } else { return false; } }, any: function any(val1, val2) { return val1 != val2; }, emptyNonEmpty: function emptyNonEmpty(str1, str2) { var empty1 = emptyString(str1); var empty2 = emptyString(str2); return empty1 && !empty2 || !empty1 && empty2; } }; // define visual style properties // // - n.b. adding a new group of props may require updates to updateStyleHints() // - adding new props to an existing group gets handled automatically var t = styfn$2.types; var mainLabel = [{ name: 'label', type: t.text, triggersBounds: diff.any, triggersZOrder: diff.emptyNonEmpty }, { name: 'text-rotation', type: t.textRotation, triggersBounds: diff.any }, { name: 'text-margin-x', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'text-margin-y', type: t.bidirectionalSize, triggersBounds: diff.any }]; var sourceLabel = [{ name: 'source-label', type: t.text, triggersBounds: diff.any }, { name: 'source-text-rotation', type: t.textRotation, triggersBounds: diff.any }, { name: 'source-text-margin-x', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'source-text-margin-y', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'source-text-offset', type: t.size, triggersBounds: diff.any }]; var targetLabel = [{ name: 'target-label', type: t.text, triggersBounds: diff.any }, { name: 'target-text-rotation', type: t.textRotation, triggersBounds: diff.any }, { name: 'target-text-margin-x', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'target-text-margin-y', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'target-text-offset', type: t.size, triggersBounds: diff.any }]; var labelDimensions = [{ name: 'font-family', type: t.fontFamily, triggersBounds: diff.any }, { name: 'font-style', type: t.fontStyle, triggersBounds: diff.any }, { name: 'font-weight', type: t.fontWeight, triggersBounds: diff.any }, { name: 'font-size', type: t.size, triggersBounds: diff.any }, { name: 'text-transform', type: t.textTransform, triggersBounds: diff.any }, { name: 'text-wrap', type: t.textWrap, triggersBounds: diff.any }, { name: 'text-overflow-wrap', type: t.textOverflowWrap, triggersBounds: diff.any }, { name: 'text-max-width', type: t.size, triggersBounds: diff.any }, { name: 'text-outline-width', type: t.size, triggersBounds: diff.any }, { name: 'line-height', type: t.positiveNumber, triggersBounds: diff.any }]; var commonLabel = [{ name: 'text-valign', type: t.valign, triggersBounds: diff.any }, { name: 'text-halign', type: t.halign, triggersBounds: diff.any }, { name: 'color', type: t.color }, { name: 'text-outline-color', type: t.color }, { name: 'text-outline-opacity', type: t.zeroOneNumber }, { name: 'text-background-color', type: t.color }, { name: 'text-background-opacity', type: t.zeroOneNumber }, { name: 'text-background-padding', type: t.size, triggersBounds: diff.any }, { name: 'text-border-opacity', type: t.zeroOneNumber }, { name: 'text-border-color', type: t.color }, { name: 'text-border-width', type: t.size, triggersBounds: diff.any }, { name: 'text-border-style', type: t.borderStyle, triggersBounds: diff.any }, { name: 'text-background-shape', type: t.textBackgroundShape, triggersBounds: diff.any }, { name: 'text-justification', type: t.justification }]; var behavior = [{ name: 'events', type: t.bool, triggersZOrder: diff.any }, { name: 'text-events', type: t.bool, triggersZOrder: diff.any }]; var visibility = [{ name: 'display', type: t.display, triggersZOrder: diff.any, triggersBounds: diff.any, triggersBoundsOfConnectedEdges: true }, { name: 'visibility', type: t.visibility, triggersZOrder: diff.any }, { name: 'opacity', type: t.zeroOneNumber, triggersZOrder: diff.zeroNonZero }, { name: 'text-opacity', type: t.zeroOneNumber }, { name: 'min-zoomed-font-size', type: t.size }, { name: 'z-compound-depth', type: t.zCompoundDepth, triggersZOrder: diff.any }, { name: 'z-index-compare', type: t.zIndexCompare, triggersZOrder: diff.any }, { name: 'z-index', type: t.number, triggersZOrder: diff.any }]; var overlay = [{ name: 'overlay-padding', type: t.size, triggersBounds: diff.any }, { name: 'overlay-color', type: t.color }, { name: 'overlay-opacity', type: t.zeroOneNumber, triggersBounds: diff.zeroNonZero }, { name: 'overlay-shape', type: t.overlayShape, triggersBounds: diff.any }, { name: 'overlay-corner-radius', type: t.cornerRadius }]; var underlay = [{ name: 'underlay-padding', type: t.size, triggersBounds: diff.any }, { name: 'underlay-color', type: t.color }, { name: 'underlay-opacity', type: t.zeroOneNumber, triggersBounds: diff.zeroNonZero }, { name: 'underlay-shape', type: t.overlayShape, triggersBounds: diff.any }, { name: 'underlay-corner-radius', type: t.cornerRadius }]; var transition = [{ name: 'transition-property', type: t.propList }, { name: 'transition-duration', type: t.time }, { name: 'transition-delay', type: t.time }, { name: 'transition-timing-function', type: t.easing }]; var nodeSizeHashOverride = function nodeSizeHashOverride(ele, parsedProp) { if (parsedProp.value === 'label') { return -ele.poolIndex(); // no hash key hits is using label size (hitrate for perf probably low anyway) } else { return parsedProp.pfValue; } }; var nodeBody = [{ name: 'height', type: t.nodeSize, triggersBounds: diff.any, hashOverride: nodeSizeHashOverride }, { name: 'width', type: t.nodeSize, triggersBounds: diff.any, hashOverride: nodeSizeHashOverride }, { name: 'shape', type: t.nodeShape, triggersBounds: diff.any }, { name: 'shape-polygon-points', type: t.polygonPointList, triggersBounds: diff.any }, { name: 'corner-radius', type: t.cornerRadius }, { name: 'background-color', type: t.color }, { name: 'background-fill', type: t.fill }, { name: 'background-opacity', type: t.zeroOneNumber }, { name: 'background-blacken', type: t.nOneOneNumber }, { name: 'background-gradient-stop-colors', type: t.colors }, { name: 'background-gradient-stop-positions', type: t.percentages }, { name: 'background-gradient-direction', type: t.gradientDirection }, { name: 'padding', type: t.sizeMaybePercent, triggersBounds: diff.any }, { name: 'padding-relative-to', type: t.paddingRelativeTo, triggersBounds: diff.any }, { name: 'bounds-expansion', type: t.boundsExpansion, triggersBounds: diff.any }]; var nodeBorder = [{ name: 'border-color', type: t.color }, { name: 'border-opacity', type: t.zeroOneNumber }, { name: 'border-width', type: t.size, triggersBounds: diff.any }, { name: 'border-style', type: t.borderStyle }, { name: 'border-cap', type: t.lineCap }, { name: 'border-join', type: t.lineJoin }, { name: 'border-dash-pattern', type: t.numbers }, { name: 'border-dash-offset', type: t.number }, { name: 'border-position', type: t.linePosition }]; var nodeOutline = [{ name: 'outline-color', type: t.color }, { name: 'outline-opacity', type: t.zeroOneNumber }, { name: 'outline-width', type: t.size, triggersBounds: diff.any }, { name: 'outline-style', type: t.borderStyle }, { name: 'outline-offset', type: t.size, triggersBounds: diff.any }]; var backgroundImage = [{ name: 'background-image', type: t.urls }, { name: 'background-image-crossorigin', type: t.bgCrossOrigin }, { name: 'background-image-opacity', type: t.zeroOneNumbers }, { name: 'background-image-containment', type: t.bgContainment }, { name: 'background-image-smoothing', type: t.bools }, { name: 'background-position-x', type: t.bgPos }, { name: 'background-position-y', type: t.bgPos }, { name: 'background-width-relative-to', type: t.bgRelativeTo }, { name: 'background-height-relative-to', type: t.bgRelativeTo }, { name: 'background-repeat', type: t.bgRepeat }, { name: 'background-fit', type: t.bgFit }, { name: 'background-clip', type: t.bgClip }, { name: 'background-width', type: t.bgWH }, { name: 'background-height', type: t.bgWH }, { name: 'background-offset-x', type: t.bgPos }, { name: 'background-offset-y', type: t.bgPos }]; var compound = [{ name: 'position', type: t.position, triggersBounds: diff.any }, { name: 'compound-sizing-wrt-labels', type: t.compoundIncludeLabels, triggersBounds: diff.any }, { name: 'min-width', type: t.size, triggersBounds: diff.any }, { name: 'min-width-bias-left', type: t.sizeMaybePercent, triggersBounds: diff.any }, { name: 'min-width-bias-right', type: t.sizeMaybePercent, triggersBounds: diff.any }, { name: 'min-height', type: t.size, triggersBounds: diff.any }, { name: 'min-height-bias-top', type: t.sizeMaybePercent, triggersBounds: diff.any }, { name: 'min-height-bias-bottom', type: t.sizeMaybePercent, triggersBounds: diff.any }]; var edgeLine = [{ name: 'line-style', type: t.lineStyle }, { name: 'line-color', type: t.color }, { name: 'line-fill', type: t.fill }, { name: 'line-cap', type: t.lineCap }, { name: 'line-opacity', type: t.zeroOneNumber }, { name: 'line-dash-pattern', type: t.numbers }, { name: 'line-dash-offset', type: t.number }, { name: 'line-gradient-stop-colors', type: t.colors }, { name: 'line-gradient-stop-positions', type: t.percentages }, { name: 'curve-style', type: t.curveStyle, triggersBounds: diff.any, triggersBoundsOfParallelBeziers: true }, { name: 'haystack-radius', type: t.zeroOneNumber, triggersBounds: diff.any }, { name: 'source-endpoint', type: t.edgeEndpoint, triggersBounds: diff.any }, { name: 'target-endpoint', type: t.edgeEndpoint, triggersBounds: diff.any }, { name: 'control-point-step-size', type: t.size, triggersBounds: diff.any }, { name: 'control-point-distances', type: t.bidirectionalSizes, triggersBounds: diff.any }, { name: 'control-point-weights', type: t.numbers, triggersBounds: diff.any }, { name: 'segment-distances', type: t.bidirectionalSizes, triggersBounds: diff.any }, { name: 'segment-weights', type: t.numbers, triggersBounds: diff.any }, { name: 'segment-radii', type: t.numbers, triggersBounds: diff.any }, { name: 'radius-type', type: t.radiusType, triggersBounds: diff.any }, { name: 'taxi-turn', type: t.bidirectionalSizeMaybePercent, triggersBounds: diff.any }, { name: 'taxi-turn-min-distance', type: t.size, triggersBounds: diff.any }, { name: 'taxi-direction', type: t.axisDirection, triggersBounds: diff.any }, { name: 'taxi-radius', type: t.number, triggersBounds: diff.any }, { name: 'edge-distances', type: t.edgeDistances, triggersBounds: diff.any }, { name: 'arrow-scale', type: t.positiveNumber, triggersBounds: diff.any }, { name: 'loop-direction', type: t.angle, triggersBounds: diff.any }, { name: 'loop-sweep', type: t.angle, triggersBounds: diff.any }, { name: 'source-distance-from-node', type: t.size, triggersBounds: diff.any }, { name: 'target-distance-from-node', type: t.size, triggersBounds: diff.any }]; var ghost = [{ name: 'ghost', type: t.bool, triggersBounds: diff.any }, { name: 'ghost-offset-x', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'ghost-offset-y', type: t.bidirectionalSize, triggersBounds: diff.any }, { name: 'ghost-opacity', type: t.zeroOneNumber }]; var core = [{ name: 'selection-box-color', type: t.color }, { name: 'selection-box-opacity', type: t.zeroOneNumber }, { name: 'selection-box-border-color', type: t.color }, { name: 'selection-box-border-width', type: t.size }, { name: 'active-bg-color', type: t.color }, { name: 'active-bg-opacity', type: t.zeroOneNumber }, { name: 'active-bg-size', type: t.size }, { name: 'outside-texture-bg-color', type: t.color }, { name: 'outside-texture-bg-opacity', type: t.zeroOneNumber }]; // pie backgrounds for nodes var pie = []; styfn$2.pieBackgroundN = 16; // because the pie properties are numbered, give access to a constant N (for renderer use) pie.push({ name: 'pie-size', type: t.sizeMaybePercent }); for (var i = 1; i <= styfn$2.pieBackgroundN; i++) { pie.push({ name: 'pie-' + i + '-background-color', type: t.color }); pie.push({ name: 'pie-' + i + '-background-size', type: t.percent }); pie.push({ name: 'pie-' + i + '-background-opacity', type: t.zeroOneNumber }); } // edge arrows var edgeArrow = []; var arrowPrefixes = styfn$2.arrowPrefixes = ['source', 'mid-source', 'target', 'mid-target']; [{ name: 'arrow-shape', type: t.arrowShape, triggersBounds: diff.any }, { name: 'arrow-color', type: t.color }, { name: 'arrow-fill', type: t.arrowFill }, { name: 'arrow-width', type: t.arrowWidth }].forEach(function (prop) { arrowPrefixes.forEach(function (prefix) { var name = prefix + '-' + prop.name; var type = prop.type, triggersBounds = prop.triggersBounds; edgeArrow.push({ name: name, type: type, triggersBounds: triggersBounds }); }); }, {}); var props = styfn$2.properties = [].concat(behavior, transition, visibility, overlay, underlay, ghost, commonLabel, labelDimensions, mainLabel, sourceLabel, targetLabel, nodeBody, nodeBorder, nodeOutline, backgroundImage, pie, compound, edgeLine, edgeArrow, core); var propGroups = styfn$2.propertyGroups = { // common to all eles behavior: behavior, transition: transition, visibility: visibility, overlay: overlay, underlay: underlay, ghost: ghost, // labels commonLabel: commonLabel, labelDimensions: labelDimensions, mainLabel: mainLabel, sourceLabel: sourceLabel, targetLabel: targetLabel, // node props nodeBody: nodeBody, nodeBorder: nodeBorder, nodeOutline: nodeOutline, backgroundImage: backgroundImage, pie: pie, compound: compound, // edge props edgeLine: edgeLine, edgeArrow: edgeArrow, core: core }; var propGroupNames = styfn$2.propertyGroupNames = {}; var propGroupKeys = styfn$2.propertyGroupKeys = Object.keys(propGroups); propGroupKeys.forEach(function (key) { propGroupNames[key] = propGroups[key].map(function (prop) { return prop.name; }); propGroups[key].forEach(function (prop) { return prop.groupKey = key; }); }); // define aliases var aliases = styfn$2.aliases = [{ name: 'content', pointsTo: 'label' }, { name: 'control-point-distance', pointsTo: 'control-point-distances' }, { name: 'control-point-weight', pointsTo: 'control-point-weights' }, { name: 'segment-distance', pointsTo: 'segment-distances' }, { name: 'segment-weight', pointsTo: 'segment-weights' }, { name: 'segment-radius', pointsTo: 'segment-radii' }, { name: 'edge-text-rotation', pointsTo: 'text-rotation' }, { name: 'padding-left', pointsTo: 'padding' }, { name: 'padding-right', pointsTo: 'padding' }, { name: 'padding-top', pointsTo: 'padding' }, { name: 'padding-bottom', pointsTo: 'padding' }]; // list of property names styfn$2.propertyNames = props.map(function (p) { return p.name; }); // allow access of properties by name ( e.g. style.properties.height ) for (var _i = 0; _i < props.length; _i++) { var prop = props[_i]; props[prop.name] = prop; // allow lookup by name } // map aliases for (var _i2 = 0; _i2 < aliases.length; _i2++) { var alias = aliases[_i2]; var pointsToProp = props[alias.pointsTo]; var aliasProp = { name: alias.name, alias: true, pointsTo: pointsToProp }; // add alias prop for parsing props.push(aliasProp); props[alias.name] = aliasProp; // allow lookup by name } })(); styfn$2.getDefaultProperty = function (name) { return this.getDefaultProperties()[name]; }; styfn$2.getDefaultProperties = function () { var _p = this._private; if (_p.defaultProperties != null) { return _p.defaultProperties; } var rawProps = extend({ // core props 'selection-box-color': '#ddd', 'selection-box-opacity': 0.65, 'selection-box-border-color': '#aaa', 'selection-box-border-width': 1, 'active-bg-color': 'black', 'active-bg-opacity': 0.15, 'active-bg-size': 30, 'outside-texture-bg-color': '#000', 'outside-texture-bg-opacity': 0.125, // common node/edge props 'events': 'yes', 'text-events': 'no', 'text-valign': 'top', 'text-halign': 'center', 'text-justification': 'auto', 'line-height': 1, 'color': '#000', 'text-outline-color': '#000', 'text-outline-width': 0, 'text-outline-opacity': 1, 'text-opacity': 1, 'text-decoration': 'none', 'text-transform': 'none', 'text-wrap': 'none', 'text-overflow-wrap': 'whitespace', 'text-max-width': 9999, 'text-background-color': '#000', 'text-background-opacity': 0, 'text-background-shape': 'rectangle', 'text-background-padding': 0, 'text-border-opacity': 0, 'text-border-width': 0, 'text-border-style': 'solid', 'text-border-color': '#000', 'font-family': 'Helvetica Neue, Helvetica, sans-serif', 'font-style': 'normal', 'font-weight': 'normal', 'font-size': 16, 'min-zoomed-font-size': 0, 'text-rotation': 'none', 'source-text-rotation': 'none', 'target-text-rotation': 'none', 'visibility': 'visible', 'display': 'element', 'opacity': 1, 'z-compound-depth': 'auto', 'z-index-compare': 'auto', 'z-index': 0, 'label': '', 'text-margin-x': 0, 'text-margin-y': 0, 'source-label': '', 'source-text-offset': 0, 'source-text-margin-x': 0, 'source-text-margin-y': 0, 'target-label': '', 'target-text-offset': 0, 'target-text-margin-x': 0, 'target-text-margin-y': 0, 'overlay-opacity': 0, 'overlay-color': '#000', 'overlay-padding': 10, 'overlay-shape': 'round-rectangle', 'overlay-corner-radius': 'auto', 'underlay-opacity': 0, 'underlay-color': '#000', 'underlay-padding': 10, 'underlay-shape': 'round-rectangle', 'underlay-corner-radius': 'auto', 'transition-property': 'none', 'transition-duration': 0, 'transition-delay': 0, 'transition-timing-function': 'linear', // node props 'background-blacken': 0, 'background-color': '#999', 'background-fill': 'solid', 'background-opacity': 1, 'background-image': 'none', 'background-image-crossorigin': 'anonymous', 'background-image-opacity': 1, 'background-image-containment': 'inside', 'background-image-smoothing': 'yes', 'background-position-x': '50%', 'background-position-y': '50%', 'background-offset-x': 0, 'background-offset-y': 0, 'background-width-relative-to': 'include-padding', 'background-height-relative-to': 'include-padding', 'background-repeat': 'no-repeat', 'background-fit': 'none', 'background-clip': 'node', 'background-width': 'auto', 'background-height': 'auto', 'border-color': '#000', 'border-opacity': 1, 'border-width': 0, 'border-style': 'solid', 'border-dash-pattern': [4, 2], 'border-dash-offset': 0, 'border-cap': 'butt', 'border-join': 'miter', 'border-position': 'center', 'outline-color': '#999', 'outline-opacity': 1, 'outline-width': 0, 'outline-offset': 0, 'outline-style': 'solid', 'height': 30, 'width': 30, 'shape': 'ellipse', 'shape-polygon-points': '-1, -1, 1, -1, 1, 1, -1, 1', 'corner-radius': 'auto', 'bounds-expansion': 0, // node gradient 'background-gradient-direction': 'to-bottom', 'background-gradient-stop-colors': '#999', 'background-gradient-stop-positions': '0%', // ghost props 'ghost': 'no', 'ghost-offset-y': 0, 'ghost-offset-x': 0, 'ghost-opacity': 0, // compound props 'padding': 0, 'padding-relative-to': 'width', 'position': 'origin', 'compound-sizing-wrt-labels': 'include', 'min-width': 0, 'min-width-bias-left': 0, 'min-width-bias-right': 0, 'min-height': 0, 'min-height-bias-top': 0, 'min-height-bias-bottom': 0 }, { // node pie bg 'pie-size': '100%' }, [{ name: 'pie-{{i}}-background-color', value: 'black' }, { name: 'pie-{{i}}-background-size', value: '0%' }, { name: 'pie-{{i}}-background-opacity', value: 1 }].reduce(function (css, prop) { for (var i = 1; i <= styfn$2.pieBackgroundN; i++) { var name = prop.name.replace('{{i}}', i); var val = prop.value; css[name] = val; } return css; }, {}), { // edge props 'line-style': 'solid', 'line-color': '#999', 'line-fill': 'solid', 'line-cap': 'butt', 'line-opacity': 1, 'line-gradient-stop-colors': '#999', 'line-gradient-stop-positions': '0%', 'control-point-step-size': 40, 'control-point-weights': 0.5, 'segment-weights': 0.5, 'segment-distances': 20, 'segment-radii': 15, 'radius-type': 'arc-radius', 'taxi-turn': '50%', 'taxi-radius': 15, 'taxi-turn-min-distance': 10, 'taxi-direction': 'auto', 'edge-distances': 'intersection', 'curve-style': 'haystack', 'haystack-radius': 0, 'arrow-scale': 1, 'loop-direction': '-45deg', 'loop-sweep': '-90deg', 'source-distance-from-node': 0, 'target-distance-from-node': 0, 'source-endpoint': 'outside-to-node', 'target-endpoint': 'outside-to-node', 'line-dash-pattern': [6, 3], 'line-dash-offset': 0 }, [{ name: 'arrow-shape', value: 'none' }, { name: 'arrow-color', value: '#999' }, { name: 'arrow-fill', value: 'filled' }, { name: 'arrow-width', value: 1 }].reduce(function (css, prop) { styfn$2.arrowPrefixes.forEach(function (prefix) { var name = prefix + '-' + prop.name; var val = prop.value; css[name] = val; }); return css; }, {})); var parsedProps = {}; for (var i = 0; i < this.properties.length; i++) { var prop = this.properties[i]; if (prop.pointsTo) { continue; } var name = prop.name; var val = rawProps[name]; var parsedProp = this.parse(name, val); parsedProps[name] = parsedProp; } _p.defaultProperties = parsedProps; return _p.defaultProperties; }; styfn$2.addDefaultStylesheet = function () { this.selector(':parent').css({ 'shape': 'rectangle', 'padding': 10, 'background-color': '#eee', 'border-color': '#ccc', 'border-width': 1 }).selector('edge').css({ 'width': 3 }).selector(':loop').css({ 'curve-style': 'bezier' }).selector('edge:compound').css({ 'curve-style': 'bezier', 'source-endpoint': 'outside-to-line', 'target-endpoint': 'outside-to-line' }).selector(':selected').css({ 'background-color': '#0169D9', 'line-color': '#0169D9', 'source-arrow-color': '#0169D9', 'target-arrow-color': '#0169D9', 'mid-source-arrow-color': '#0169D9', 'mid-target-arrow-color': '#0169D9' }).selector(':parent:selected').css({ 'background-color': '#CCE1F9', 'border-color': '#aec8e5' }).selector(':active').css({ 'overlay-color': 'black', 'overlay-padding': 10, 'overlay-opacity': 0.25 }); this.defaultLength = this.length; }; var styfn$1 = {}; // a caching layer for property parsing styfn$1.parse = function (name, value, propIsBypass, propIsFlat) { var self = this; // function values can't be cached in all cases, and there isn't much benefit of caching them anyway if (fn$6(value)) { return self.parseImplWarn(name, value, propIsBypass, propIsFlat); } var flatKey = propIsFlat === 'mapping' || propIsFlat === true || propIsFlat === false || propIsFlat == null ? 'dontcare' : propIsFlat; var bypassKey = propIsBypass ? 't' : 'f'; var valueKey = '' + value; var argHash = hashStrings(name, valueKey, bypassKey, flatKey); var propCache = self.propCache = self.propCache || []; var ret; if (!(ret = propCache[argHash])) { ret = propCache[argHash] = self.parseImplWarn(name, value, propIsBypass, propIsFlat); } // - bypasses can't be shared b/c the value can be changed by animations or otherwise overridden // - mappings can't be shared b/c mappings are per-element if (propIsBypass || propIsFlat === 'mapping') { // need a copy since props are mutated later in their lifecycles ret = copy(ret); if (ret) { ret.value = copy(ret.value); // because it could be an array, e.g. colour } } return ret; }; styfn$1.parseImplWarn = function (name, value, propIsBypass, propIsFlat) { var prop = this.parseImpl(name, value, propIsBypass, propIsFlat); if (!prop && value != null) { warn("The style property `".concat(name, ": ").concat(value, "` is invalid")); } if (prop && (prop.name === 'width' || prop.name === 'height') && value === 'label') { warn('The style value of `label` is deprecated for `' + prop.name + '`'); } return prop; }; // parse a property; return null on invalid; return parsed property otherwise // fields : // - name : the name of the property // - value : the parsed, native-typed value of the property // - strValue : a string value that represents the property value in valid css // - bypass : true iff the property is a bypass property styfn$1.parseImpl = function (name, value, propIsBypass, propIsFlat) { var self = this; name = camel2dash(name); // make sure the property name is in dash form (e.g. 'property-name' not 'propertyName') var property = self.properties[name]; var passedValue = value; var types = self.types; if (!property) { return null; } // return null on property of unknown name if (value === undefined) { return null; } // can't assign undefined // the property may be an alias if (property.alias) { property = property.pointsTo; name = property.name; } var valueIsString = string(value); if (valueIsString) { // trim the value to make parsing easier value = value.trim(); } var type = property.type; if (!type) { return null; } // no type, no luck // check if bypass is null or empty string (i.e. indication to delete bypass property) if (propIsBypass && (value === '' || value === null)) { return { name: name, value: value, bypass: true, deleteBypass: true }; } // check if value is a function used as a mapper if (fn$6(value)) { return { name: name, value: value, strValue: 'fn', mapped: types.fn, bypass: propIsBypass }; } // check if value is mapped var data, mapData; if (!valueIsString || propIsFlat || value.length < 7 || value[1] !== 'a') ; else if (value.length >= 7 && value[0] === 'd' && (data = new RegExp(types.data.regex).exec(value))) { if (propIsBypass) { return false; } // mappers not allowed in bypass var mapped = types.data; return { name: name, value: data, strValue: '' + value, mapped: mapped, field: data[1], bypass: propIsBypass }; } else if (value.length >= 10 && value[0] === 'm' && (mapData = new RegExp(types.mapData.regex).exec(value))) { if (propIsBypass) { return false; } // mappers not allowed in bypass if (type.multiple) { return false; } // impossible to map to num var _mapped = types.mapData; // we can map only if the type is a colour or a number if (!(type.color || type.number)) { return false; } var valueMin = this.parse(name, mapData[4]); // parse to validate if (!valueMin || valueMin.mapped) { return false; } // can't be invalid or mapped var valueMax = this.parse(name, mapData[5]); // parse to validate if (!valueMax || valueMax.mapped) { return false; } // can't be invalid or mapped // check if valueMin and valueMax are the same if (valueMin.pfValue === valueMax.pfValue || valueMin.strValue === valueMax.strValue) { warn('`' + name + ': ' + value + '` is not a valid mapper because the output range is zero; converting to `' + name + ': ' + valueMin.strValue + '`'); return this.parse(name, valueMin.strValue); // can't make much of a mapper without a range } else if (type.color) { var c1 = valueMin.value; var c2 = valueMax.value; var same = c1[0] === c2[0] // red && c1[1] === c2[1] // green && c1[2] === c2[2] // blue && ( // optional alpha c1[3] === c2[3] // same alpha outright || (c1[3] == null || c1[3] === 1 // full opacity for colour 1? ) && (c2[3] == null || c2[3] === 1) // full opacity for colour 2? ); if (same) { return false; } // can't make a mapper without a range } return { name: name, value: mapData, strValue: '' + value, mapped: _mapped, field: mapData[1], fieldMin: parseFloat(mapData[2]), // min & max are numeric fieldMax: parseFloat(mapData[3]), valueMin: valueMin.value, valueMax: valueMax.value, bypass: propIsBypass }; } if (type.multiple && propIsFlat !== 'multiple') { var vals; if (valueIsString) { vals = value.split(/\s+/); } else if (array(value)) { vals = value; } else { vals = [value]; } if (type.evenMultiple && vals.length % 2 !== 0) { return null; } var valArr = []; var unitsArr = []; var pfValArr = []; var strVal = ''; var hasEnum = false; for (var i = 0; i < vals.length; i++) { var p = self.parse(name, vals[i], propIsBypass, 'multiple'); hasEnum = hasEnum || string(p.value); valArr.push(p.value); pfValArr.push(p.pfValue != null ? p.pfValue : p.value); unitsArr.push(p.units); strVal += (i > 0 ? ' ' : '') + p.strValue; } if (type.validate && !type.validate(valArr, unitsArr)) { return null; } if (type.singleEnum && hasEnum) { if (valArr.length === 1 && string(valArr[0])) { return { name: name, value: valArr[0], strValue: valArr[0], bypass: propIsBypass }; } else { return null; } } return { name: name, value: valArr, pfValue: pfValArr, strValue: strVal, bypass: propIsBypass, units: unitsArr }; } // several types also allow enums var checkEnums = function checkEnums() { for (var _i = 0; _i < type.enums.length; _i++) { var en = type.enums[_i]; if (en === value) { return { name: name, value: value, strValue: '' + value, bypass: propIsBypass }; } } return null; }; // check the type and return the appropriate object if (type.number) { var units; var implicitUnits = 'px'; // not set => px if (type.units) { // use specified units if set units = type.units; } if (type.implicitUnits) { implicitUnits = type.implicitUnits; } if (!type.unitless) { if (valueIsString) { var unitsRegex = 'px|em' + (type.allowPercent ? '|\\%' : ''); if (units) { unitsRegex = units; } // only allow explicit units if so set var match = value.match('^(' + number + ')(' + unitsRegex + ')?' + '$'); if (match) { value = match[1]; units = match[2] || implicitUnits; } } else if (!units || type.implicitUnits) { units = implicitUnits; // implicitly px if unspecified } } value = parseFloat(value); // if not a number and enums not allowed, then the value is invalid if (isNaN(value) && type.enums === undefined) { return null; } // check if this number type also accepts special keywords in place of numbers // (i.e. `left`, `auto`, etc) if (isNaN(value) && type.enums !== undefined) { value = passedValue; return checkEnums(); } // check if value must be an integer if (type.integer && !integer(value)) { return null; } // check value is within range if (type.min !== undefined && (value < type.min || type.strictMin && value === type.min) || type.max !== undefined && (value > type.max || type.strictMax && value === type.max)) { return null; } var ret = { name: name, value: value, strValue: '' + value + (units ? units : ''), units: units, bypass: propIsBypass }; // normalise value in pixels if (type.unitless || units !== 'px' && units !== 'em') { ret.pfValue = value; } else { ret.pfValue = units === 'px' || !units ? value : this.getEmSizeInPixels() * value; } // normalise value in ms if (units === 'ms' || units === 's') { ret.pfValue = units === 'ms' ? value : 1000 * value; } // normalise value in rad if (units === 'deg' || units === 'rad') { ret.pfValue = units === 'rad' ? value : deg2rad(value); } // normalize value in % if (units === '%') { ret.pfValue = value / 100; } return ret; } else if (type.propList) { var props = []; var propsStr = '' + value; if (propsStr === 'none') ; else { // go over each prop var propsSplit = propsStr.split(/\s*,\s*|\s+/); for (var _i2 = 0; _i2 < propsSplit.length; _i2++) { var propName = propsSplit[_i2].trim(); if (self.properties[propName]) { props.push(propName); } else { warn('`' + propName + '` is not a valid property name'); } } if (props.length === 0) { return null; } } return { name: name, value: props, strValue: props.length === 0 ? 'none' : props.join(' '), bypass: propIsBypass }; } else if (type.color) { var tuple = color2tuple(value); if (!tuple) { return null; } return { name: name, value: tuple, pfValue: tuple, strValue: 'rgb(' + tuple[0] + ',' + tuple[1] + ',' + tuple[2] + ')', // n.b. no spaces b/c of multiple support bypass: propIsBypass }; } else if (type.regex || type.regexes) { // first check enums if (type.enums) { var enumProp = checkEnums(); if (enumProp) { return enumProp; } } var regexes = type.regexes ? type.regexes : [type.regex]; for (var _i3 = 0; _i3 < regexes.length; _i3++) { var regex = new RegExp(regexes[_i3]); // make a regex from the type string var m = regex.exec(value); if (m) { // regex matches return { name: name, value: type.singleRegexMatchValue ? m[1] : m, strValue: '' + value, bypass: propIsBypass }; } } return null; // didn't match any } else if (type.string) { // just return return { name: name, value: '' + value, strValue: '' + value, bypass: propIsBypass }; } else if (type.enums) { // check enums last because it's a combo type in others return checkEnums(); } else { return null; // not a type we can handle } }; var Style = function Style(cy) { if (!(this instanceof Style)) { return new Style(cy); } if (!core(cy)) { error('A style must have a core reference'); return; } this._private = { cy: cy, coreStyle: {} }; this.length = 0; this.resetToDefault(); }; var styfn = Style.prototype; styfn.instanceString = function () { return 'style'; }; // remove all contexts styfn.clear = function () { var _p = this._private; var cy = _p.cy; var eles = cy.elements(); for (var i = 0; i < this.length; i++) { this[i] = undefined; } this.length = 0; _p.contextStyles = {}; _p.propDiffs = {}; this.cleanElements(eles, true); eles.forEach(function (ele) { var ele_p = ele[0]._private; ele_p.styleDirty = true; ele_p.appliedInitStyle = false; }); return this; // chaining }; styfn.resetToDefault = function () { this.clear(); this.addDefaultStylesheet(); return this; }; // builds a style object for the 'core' selector styfn.core = function (propName) { return this._private.coreStyle[propName] || this.getDefaultProperty(propName); }; // create a new context from the specified selector string and switch to that context styfn.selector = function (selectorStr) { // 'core' is a special case and does not need a selector var selector = selectorStr === 'core' ? null : new Selector(selectorStr); var i = this.length++; // new context means new index this[i] = { selector: selector, properties: [], mappedProperties: [], index: i }; return this; // chaining }; // add one or many css rules to the current context styfn.css = function () { var self = this; var args = arguments; if (args.length === 1) { var map = args[0]; for (var i = 0; i < self.properties.length; i++) { var prop = self.properties[i]; var mapVal = map[prop.name]; if (mapVal === undefined) { mapVal = map[dash2camel(prop.name)]; } if (mapVal !== undefined) { this.cssRule(prop.name, mapVal); } } } else if (args.length === 2) { this.cssRule(args[0], args[1]); } // do nothing if args are invalid return this; // chaining }; styfn.style = styfn.css; // add a single css rule to the current context styfn.cssRule = function (name, value) { // name-value pair var property = this.parse(name, value); // add property to current context if valid if (property) { var i = this.length - 1; this[i].properties.push(property); this[i].properties[property.name] = property; // allow access by name as well if (property.name.match(/pie-(\d+)-background-size/) && property.value) { this._private.hasPie = true; } if (property.mapped) { this[i].mappedProperties.push(property); } // add to core style if necessary var currentSelectorIsCore = !this[i].selector; if (currentSelectorIsCore) { this._private.coreStyle[property.name] = property; } } return this; // chaining }; styfn.append = function (style) { if (stylesheet(style)) { style.appendToStyle(this); } else if (array(style)) { this.appendFromJson(style); } else if (string(style)) { this.appendFromString(style); } // you probably wouldn't want to append a Style, since you'd duplicate the default parts return this; }; // static function Style.fromJson = function (cy, json) { var style = new Style(cy); style.fromJson(json); return style; }; Style.fromString = function (cy, string) { return new Style(cy).fromString(string); }; [styfn$8, styfn$7, styfn$6, styfn$5, styfn$4, styfn$3, styfn$2, styfn$1].forEach(function (props) { extend(styfn, props); }); Style.types = styfn.types; Style.properties = styfn.properties; Style.propertyGroups = styfn.propertyGroups; Style.propertyGroupNames = styfn.propertyGroupNames; Style.propertyGroupKeys = styfn.propertyGroupKeys; var corefn$2 = { style: function style(newStyle) { if (newStyle) { var s = this.setStyle(newStyle); s.update(); } return this._private.style; }, setStyle: function setStyle(style) { var _p = this._private; if (stylesheet(style)) { _p.style = style.generateStyle(this); } else if (array(style)) { _p.style = Style.fromJson(this, style); } else if (string(style)) { _p.style = Style.fromString(this, style); } else { _p.style = Style(this); } return _p.style; }, // e.g. cy.data() changed => recalc ele mappers updateStyle: function updateStyle() { this.mutableElements().updateStyle(); // just send to all eles } }; var defaultSelectionType = 'single'; var corefn$1 = { autolock: function autolock(bool) { if (bool !== undefined) { this._private.autolock = bool ? true : false; } else { return this._private.autolock; } return this; // chaining }, autoungrabify: function autoungrabify(bool) { if (bool !== undefined) { this._private.autoungrabify = bool ? true : false; } else { return this._private.autoungrabify; } return this; // chaining }, autounselectify: function autounselectify(bool) { if (bool !== undefined) { this._private.autounselectify = bool ? true : false; } else { return this._private.autounselectify; } return this; // chaining }, selectionType: function selectionType(selType) { var _p = this._private; if (_p.selectionType == null) { _p.selectionType = defaultSelectionType; } if (selType !== undefined) { if (selType === 'additive' || selType === 'single') { _p.selectionType = selType; } } else { return _p.selectionType; } return this; }, panningEnabled: function panningEnabled(bool) { if (bool !== undefined) { this._private.panningEnabled = bool ? true : false; } else { return this._private.panningEnabled; } return this; // chaining }, userPanningEnabled: function userPanningEnabled(bool) { if (bool !== undefined) { this._private.userPanningEnabled = bool ? true : false; } else { return this._private.userPanningEnabled; } return this; // chaining }, zoomingEnabled: function zoomingEnabled(bool) { if (bool !== undefined) { this._private.zoomingEnabled = bool ? true : false; } else { return this._private.zoomingEnabled; } return this; // chaining }, userZoomingEnabled: function userZoomingEnabled(bool) { if (bool !== undefined) { this._private.userZoomingEnabled = bool ? true : false; } else { return this._private.userZoomingEnabled; } return this; // chaining }, boxSelectionEnabled: function boxSelectionEnabled(bool) { if (bool !== undefined) { this._private.boxSelectionEnabled = bool ? true : false; } else { return this._private.boxSelectionEnabled; } return this; // chaining }, pan: function pan() { var args = arguments; var pan = this._private.pan; var dim, val, dims, x, y; switch (args.length) { case 0: // .pan() return pan; case 1: if (string(args[0])) { // .pan('x') dim = args[0]; return pan[dim]; } else if (plainObject(args[0])) { // .pan({ x: 0, y: 100 }) if (!this._private.panningEnabled) { return this; } dims = args[0]; x = dims.x; y = dims.y; if (number$1(x)) { pan.x = x; } if (number$1(y)) { pan.y = y; } this.emit('pan viewport'); } break; case 2: // .pan('x', 100) if (!this._private.panningEnabled) { return this; } dim = args[0]; val = args[1]; if ((dim === 'x' || dim === 'y') && number$1(val)) { pan[dim] = val; } this.emit('pan viewport'); break; // invalid } this.notify('viewport'); return this; // chaining }, panBy: function panBy(arg0, arg1) { var args = arguments; var pan = this._private.pan; var dim, val, dims, x, y; if (!this._private.panningEnabled) { return this; } switch (args.length) { case 1: if (plainObject(arg0)) { // .panBy({ x: 0, y: 100 }) dims = args[0]; x = dims.x; y = dims.y; if (number$1(x)) { pan.x += x; } if (number$1(y)) { pan.y += y; } this.emit('pan viewport'); } break; case 2: // .panBy('x', 100) dim = arg0; val = arg1; if ((dim === 'x' || dim === 'y') && number$1(val)) { pan[dim] += val; } this.emit('pan viewport'); break; // invalid } this.notify('viewport'); return this; // chaining }, fit: function fit(elements, padding) { var viewportState = this.getFitViewport(elements, padding); if (viewportState) { var _p = this._private; _p.zoom = viewportState.zoom; _p.pan = viewportState.pan; this.emit('pan zoom viewport'); this.notify('viewport'); } return this; // chaining }, getFitViewport: function getFitViewport(elements, padding) { if (number$1(elements) && padding === undefined) { // elements is optional padding = elements; elements = undefined; } if (!this._private.panningEnabled || !this._private.zoomingEnabled) { return; } var bb; if (string(elements)) { var sel = elements; elements = this.$(sel); } else if (boundingBox(elements)) { // assume bb var bbe = elements; bb = { x1: bbe.x1, y1: bbe.y1, x2: bbe.x2, y2: bbe.y2 }; bb.w = bb.x2 - bb.x1; bb.h = bb.y2 - bb.y1; } else if (!elementOrCollection(elements)) { elements = this.mutableElements(); } if (elementOrCollection(elements) && elements.empty()) { return; } // can't fit to nothing bb = bb || elements.boundingBox(); var w = this.width(); var h = this.height(); var zoom; padding = number$1(padding) ? padding : 0; if (!isNaN(w) && !isNaN(h) && w > 0 && h > 0 && !isNaN(bb.w) && !isNaN(bb.h) && bb.w > 0 && bb.h > 0) { zoom = Math.min((w - 2 * padding) / bb.w, (h - 2 * padding) / bb.h); // crop zoom zoom = zoom > this._private.maxZoom ? this._private.maxZoom : zoom; zoom = zoom < this._private.minZoom ? this._private.minZoom : zoom; var pan = { // now pan to middle x: (w - zoom * (bb.x1 + bb.x2)) / 2, y: (h - zoom * (bb.y1 + bb.y2)) / 2 }; return { zoom: zoom, pan: pan }; } return; }, zoomRange: function zoomRange(min, max) { var _p = this._private; if (max == null) { var opts = min; min = opts.min; max = opts.max; } if (number$1(min) && number$1(max) && min <= max) { _p.minZoom = min; _p.maxZoom = max; } else if (number$1(min) && max === undefined && min <= _p.maxZoom) { _p.minZoom = min; } else if (number$1(max) && min === undefined && max >= _p.minZoom) { _p.maxZoom = max; } return this; }, minZoom: function minZoom(zoom) { if (zoom === undefined) { return this._private.minZoom; } else { return this.zoomRange({ min: zoom }); } }, maxZoom: function maxZoom(zoom) { if (zoom === undefined) { return this._private.maxZoom; } else { return this.zoomRange({ max: zoom }); } }, getZoomedViewport: function getZoomedViewport(params) { var _p = this._private; var currentPan = _p.pan; var currentZoom = _p.zoom; var pos; // in rendered px var zoom; var bail = false; if (!_p.zoomingEnabled) { // zooming disabled bail = true; } if (number$1(params)) { // then set the zoom zoom = params; } else if (plainObject(params)) { // then zoom about a point zoom = params.level; if (params.position != null) { pos = modelToRenderedPosition(params.position, currentZoom, currentPan); } else if (params.renderedPosition != null) { pos = params.renderedPosition; } if (pos != null && !_p.panningEnabled) { // panning disabled bail = true; } } // crop zoom zoom = zoom > _p.maxZoom ? _p.maxZoom : zoom; zoom = zoom < _p.minZoom ? _p.minZoom : zoom; // can't zoom with invalid params if (bail || !number$1(zoom) || zoom === currentZoom || pos != null && (!number$1(pos.x) || !number$1(pos.y))) { return null; } if (pos != null) { // set zoom about position var pan1 = currentPan; var zoom1 = currentZoom; var zoom2 = zoom; var pan2 = { x: -zoom2 / zoom1 * (pos.x - pan1.x) + pos.x, y: -zoom2 / zoom1 * (pos.y - pan1.y) + pos.y }; return { zoomed: true, panned: true, zoom: zoom2, pan: pan2 }; } else { // just set the zoom return { zoomed: true, panned: false, zoom: zoom, pan: currentPan }; } }, zoom: function zoom(params) { if (params === undefined) { // get return this._private.zoom; } else { // set var vp = this.getZoomedViewport(params); var _p = this._private; if (vp == null || !vp.zoomed) { return this; } _p.zoom = vp.zoom; if (vp.panned) { _p.pan.x = vp.pan.x; _p.pan.y = vp.pan.y; } this.emit('zoom' + (vp.panned ? ' pan' : '') + ' viewport'); this.notify('viewport'); return this; // chaining } }, viewport: function viewport(opts) { var _p = this._private; var zoomDefd = true; var panDefd = true; var events = []; // to trigger var zoomFailed = false; var panFailed = false; if (!opts) { return this; } if (!number$1(opts.zoom)) { zoomDefd = false; } if (!plainObject(opts.pan)) { panDefd = false; } if (!zoomDefd && !panDefd) { return this; } if (zoomDefd) { var z = opts.zoom; if (z < _p.minZoom || z > _p.maxZoom || !_p.zoomingEnabled) { zoomFailed = true; } else { _p.zoom = z; events.push('zoom'); } } if (panDefd && (!zoomFailed || !opts.cancelOnFailedZoom) && _p.panningEnabled) { var p = opts.pan; if (number$1(p.x)) { _p.pan.x = p.x; panFailed = false; } if (number$1(p.y)) { _p.pan.y = p.y; panFailed = false; } if (!panFailed) { events.push('pan'); } } if (events.length > 0) { events.push('viewport'); this.emit(events.join(' ')); this.notify('viewport'); } return this; // chaining }, center: function center(elements) { var pan = this.getCenterPan(elements); if (pan) { this._private.pan = pan; this.emit('pan viewport'); this.notify('viewport'); } return this; // chaining }, getCenterPan: function getCenterPan(elements, zoom) { if (!this._private.panningEnabled) { return; } if (string(elements)) { var selector = elements; elements = this.mutableElements().filter(selector); } else if (!elementOrCollection(elements)) { elements = this.mutableElements(); } if (elements.length === 0) { return; } // can't centre pan to nothing var bb = elements.boundingBox(); var w = this.width(); var h = this.height(); zoom = zoom === undefined ? this._private.zoom : zoom; var pan = { // middle x: (w - zoom * (bb.x1 + bb.x2)) / 2, y: (h - zoom * (bb.y1 + bb.y2)) / 2 }; return pan; }, reset: function reset() { if (!this._private.panningEnabled || !this._private.zoomingEnabled) { return this; } this.viewport({ pan: { x: 0, y: 0 }, zoom: 1 }); return this; // chaining }, invalidateSize: function invalidateSize() { this._private.sizeCache = null; }, size: function size() { var _p = this._private; var container = _p.container; var cy = this; return _p.sizeCache = _p.sizeCache || (container ? function () { var style = cy.window().getComputedStyle(container); var val = function val(name) { return parseFloat(style.getPropertyValue(name)); }; return { width: container.clientWidth - val('padding-left') - val('padding-right'), height: container.clientHeight - val('padding-top') - val('padding-bottom') }; }() : { // fallback if no container (not 0 b/c can be used for dividing etc) width: 1, height: 1 }); }, width: function width() { return this.size().width; }, height: function height() { return this.size().height; }, extent: function extent() { var pan = this._private.pan; var zoom = this._private.zoom; var rb = this.renderedExtent(); var b = { x1: (rb.x1 - pan.x) / zoom, x2: (rb.x2 - pan.x) / zoom, y1: (rb.y1 - pan.y) / zoom, y2: (rb.y2 - pan.y) / zoom }; b.w = b.x2 - b.x1; b.h = b.y2 - b.y1; return b; }, renderedExtent: function renderedExtent() { var width = this.width(); var height = this.height(); return { x1: 0, y1: 0, x2: width, y2: height, w: width, h: height }; }, multiClickDebounceTime: function multiClickDebounceTime(_int) { if (_int) this._private.multiClickDebounceTime = _int;else return this._private.multiClickDebounceTime; return this; // chaining } }; // aliases corefn$1.centre = corefn$1.center; // backwards compatibility corefn$1.autolockNodes = corefn$1.autolock; corefn$1.autoungrabifyNodes = corefn$1.autoungrabify; var fn = { data: define.data({ field: 'data', bindingEvent: 'data', allowBinding: true, allowSetting: true, settingEvent: 'data', settingTriggersEvent: true, triggerFnName: 'trigger', allowGetting: true, updateStyle: true }), removeData: define.removeData({ field: 'data', event: 'data', triggerFnName: 'trigger', triggerEvent: true, updateStyle: true }), scratch: define.data({ field: 'scratch', bindingEvent: 'scratch', allowBinding: true, allowSetting: true, settingEvent: 'scratch', settingTriggersEvent: true, triggerFnName: 'trigger', allowGetting: true, updateStyle: true }), removeScratch: define.removeData({ field: 'scratch', event: 'scratch', triggerFnName: 'trigger', triggerEvent: true, updateStyle: true }) }; // aliases fn.attr = fn.data; fn.removeAttr = fn.removeData; var Core = function Core(opts) { var cy = this; opts = extend({}, opts); var container = opts.container; // allow for passing a wrapped jquery object // e.g. cytoscape({ container: $('#cy') }) if (container && !htmlElement(container) && htmlElement(container[0])) { container = container[0]; } var reg = container ? container._cyreg : null; // e.g. already registered some info (e.g. readies) via jquery reg = reg || {}; if (reg && reg.cy) { reg.cy.destroy(); reg = {}; // old instance => replace reg completely } var readies = reg.readies = reg.readies || []; if (container) { container._cyreg = reg; } // make sure container assoc'd reg points to this cy reg.cy = cy; var head = _window !== undefined && container !== undefined && !opts.headless; var options = opts; options.layout = extend({ name: head ? 'grid' : 'null' }, options.layout); options.renderer = extend({ name: head ? 'canvas' : 'null' }, options.renderer); var defVal = function defVal(def, val, altVal) { if (val !== undefined) { return val; } else if (altVal !== undefined) { return altVal; } else { return def; } }; var _p = this._private = { container: container, // html dom ele container ready: false, // whether ready has been triggered options: options, // cached options elements: new Collection(this), // elements in the graph listeners: [], // list of listeners aniEles: new Collection(this), // elements being animated data: options.data || {}, // data for the core scratch: {}, // scratch object for core layout: null, renderer: null, destroyed: false, // whether destroy was called notificationsEnabled: true, // whether notifications are sent to the renderer minZoom: 1e-50, maxZoom: 1e50, zoomingEnabled: defVal(true, options.zoomingEnabled), userZoomingEnabled: defVal(true, options.userZoomingEnabled), panningEnabled: defVal(true, options.panningEnabled), userPanningEnabled: defVal(true, options.userPanningEnabled), boxSelectionEnabled: defVal(true, options.boxSelectionEnabled), autolock: defVal(false, options.autolock, options.autolockNodes), autoungrabify: defVal(false, options.autoungrabify, options.autoungrabifyNodes), autounselectify: defVal(false, options.autounselectify), styleEnabled: options.styleEnabled === undefined ? head : options.styleEnabled, zoom: number$1(options.zoom) ? options.zoom : 1, pan: { x: plainObject(options.pan) && number$1(options.pan.x) ? options.pan.x : 0, y: plainObject(options.pan) && number$1(options.pan.y) ? options.pan.y : 0 }, animation: { // object for currently-running animations current: [], queue: [] }, hasCompoundNodes: false, multiClickDebounceTime: defVal(250, options.multiClickDebounceTime) }; this.createEmitter(); // set selection type this.selectionType(options.selectionType); // init zoom bounds this.zoomRange({ min: options.minZoom, max: options.maxZoom }); var loadExtData = function loadExtData(extData, next) { var anyIsPromise = extData.some(promise); if (anyIsPromise) { return Promise$1.all(extData).then(next); // load all data asynchronously, then exec rest of init } else { next(extData); // exec synchronously for convenience } }; // start with the default stylesheet so we have something before loading an external stylesheet if (_p.styleEnabled) { cy.setStyle([]); } // create the renderer var rendererOptions = extend({}, options, options.renderer); // allow rendering hints in top level options cy.initRenderer(rendererOptions); var setElesAndLayout = function setElesAndLayout(elements, onload, ondone) { cy.notifications(false); // remove old elements var oldEles = cy.mutableElements(); if (oldEles.length > 0) { oldEles.remove(); } if (elements != null) { if (plainObject(elements) || array(elements)) { cy.add(elements); } } cy.one('layoutready', function (e) { cy.notifications(true); cy.emit(e); // we missed this event by turning notifications off, so pass it on cy.one('load', onload); cy.emitAndNotify('load'); }).one('layoutstop', function () { cy.one('done', ondone); cy.emit('done'); }); var layoutOpts = extend({}, cy._private.options.layout); layoutOpts.eles = cy.elements(); cy.layout(layoutOpts).run(); }; loadExtData([options.style, options.elements], function (thens) { var initStyle = thens[0]; var initEles = thens[1]; // init style if (_p.styleEnabled) { cy.style().append(initStyle); } // initial load setElesAndLayout(initEles, function () { // onready cy.startAnimationLoop(); _p.ready = true; // if a ready callback is specified as an option, the bind it if (fn$6(options.ready)) { cy.on('ready', options.ready); } // bind all the ready handlers registered before creating this instance for (var i = 0; i < readies.length; i++) { var fn = readies[i]; cy.on('ready', fn); } if (reg) { reg.readies = []; } // clear b/c we've bound them all and don't want to keep it around in case a new core uses the same div etc cy.emit('ready'); }, options.done); }); }; var corefn = Core.prototype; // short alias extend(corefn, { instanceString: function instanceString() { return 'core'; }, isReady: function isReady() { return this._private.ready; }, destroyed: function destroyed() { return this._private.destroyed; }, ready: function ready(fn) { if (this.isReady()) { this.emitter().emit('ready', [], fn); // just calls fn as though triggered via ready event } else { this.on('ready', fn); } return this; }, destroy: function destroy() { var cy = this; if (cy.destroyed()) return; cy.stopAnimationLoop(); cy.destroyRenderer(); this.emit('destroy'); cy._private.destroyed = true; return cy; }, hasElementWithId: function hasElementWithId(id) { return this._private.elements.hasElementWithId(id); }, getElementById: function getElementById(id) { return this._private.elements.getElementById(id); }, hasCompoundNodes: function hasCompoundNodes() { return this._private.hasCompoundNodes; }, headless: function headless() { return this._private.renderer.isHeadless(); }, styleEnabled: function styleEnabled() { return this._private.styleEnabled; }, addToPool: function addToPool(eles) { this._private.elements.merge(eles); return this; // chaining }, removeFromPool: function removeFromPool(eles) { this._private.elements.unmerge(eles); return this; }, container: function container() { return this._private.container || null; }, window: function window() { var container = this._private.container; if (container == null) return _window; var ownerDocument = this._private.container.ownerDocument; if (ownerDocument === undefined || ownerDocument == null) { return _window; } return ownerDocument.defaultView || _window; }, mount: function mount(container) { if (container == null) { return; } var cy = this; var _p = cy._private; var options = _p.options; if (!htmlElement(container) && htmlElement(container[0])) { container = container[0]; } cy.stopAnimationLoop(); cy.destroyRenderer(); _p.container = container; _p.styleEnabled = true; cy.invalidateSize(); cy.initRenderer(extend({}, options, options.renderer, { // allow custom renderer name to be re-used, otherwise use canvas name: options.renderer.name === 'null' ? 'canvas' : options.renderer.name })); cy.startAnimationLoop(); cy.style(options.style); cy.emit('mount'); return cy; }, unmount: function unmount() { var cy = this; cy.stopAnimationLoop(); cy.destroyRenderer(); cy.initRenderer({ name: 'null' }); cy.emit('unmount'); return cy; }, options: function options() { return copy(this._private.options); }, json: function json(obj) { var cy = this; var _p = cy._private; var eles = cy.mutableElements(); var getFreshRef = function getFreshRef(ele) { return cy.getElementById(ele.id()); }; if (plainObject(obj)) { // set cy.startBatch(); if (obj.elements) { var idInJson = {}; var updateEles = function updateEles(jsons, gr) { var toAdd = []; var toMod = []; for (var i = 0; i < jsons.length; i++) { var json = jsons[i]; if (!json.data.id) { warn('cy.json() cannot handle elements without an ID attribute'); continue; } var id = '' + json.data.id; // id must be string var ele = cy.getElementById(id); idInJson[id] = true; if (ele.length !== 0) { // existing element should be updated toMod.push({ ele: ele, json: json }); } else { // otherwise should be added if (gr) { json.group = gr; toAdd.push(json); } else { toAdd.push(json); } } } cy.add(toAdd); for (var _i = 0; _i < toMod.length; _i++) { var _toMod$_i = toMod[_i], _ele = _toMod$_i.ele, _json = _toMod$_i.json; _ele.json(_json); } }; if (array(obj.elements)) { // elements: [] updateEles(obj.elements); } else { // elements: { nodes: [], edges: [] } var grs = ['nodes', 'edges']; for (var i = 0; i < grs.length; i++) { var gr = grs[i]; var elements = obj.elements[gr]; if (array(elements)) { updateEles(elements, gr); } } } var parentsToRemove = cy.collection(); eles.filter(function (ele) { return !idInJson[ele.id()]; }).forEach(function (ele) { if (ele.isParent()) { parentsToRemove.merge(ele); } else { ele.remove(); } }); // so that children are not removed w/parent parentsToRemove.forEach(function (ele) { return ele.children().move({ parent: null }); }); // intermediate parents may be moved by prior line, so make sure we remove by fresh refs parentsToRemove.forEach(function (ele) { return getFreshRef(ele).remove(); }); } if (obj.style) { cy.style(obj.style); } if (obj.zoom != null && obj.zoom !== _p.zoom) { cy.zoom(obj.zoom); } if (obj.pan) { if (obj.pan.x !== _p.pan.x || obj.pan.y !== _p.pan.y) { cy.pan(obj.pan); } } if (obj.data) { cy.data(obj.data); } var fields = ['minZoom', 'maxZoom', 'zoomingEnabled', 'userZoomingEnabled', 'panningEnabled', 'userPanningEnabled', 'boxSelectionEnabled', 'autolock', 'autoungrabify', 'autounselectify', 'multiClickDebounceTime']; for (var _i2 = 0; _i2 < fields.length; _i2++) { var f = fields[_i2]; if (obj[f] != null) { cy[f](obj[f]); } } cy.endBatch(); return this; // chaining } else { // get var flat = !!obj; var json = {}; if (flat) { json.elements = this.elements().map(function (ele) { return ele.json(); }); } else { json.elements = {}; eles.forEach(function (ele) { var group = ele.group(); if (!json.elements[group]) { json.elements[group] = []; } json.elements[group].push(ele.json()); }); } if (this._private.styleEnabled) { json.style = cy.style().json(); } json.data = copy(cy.data()); var options = _p.options; json.zoomingEnabled = _p.zoomingEnabled; json.userZoomingEnabled = _p.userZoomingEnabled; json.zoom = _p.zoom; json.minZoom = _p.minZoom; json.maxZoom = _p.maxZoom; json.panningEnabled = _p.panningEnabled; json.userPanningEnabled = _p.userPanningEnabled; json.pan = copy(_p.pan); json.boxSelectionEnabled = _p.boxSelectionEnabled; json.renderer = copy(options.renderer); json.hideEdgesOnViewport = options.hideEdgesOnViewport; json.textureOnViewport = options.textureOnViewport; json.wheelSensitivity = options.wheelSensitivity; json.motionBlur = options.motionBlur; json.multiClickDebounceTime = options.multiClickDebounceTime; return json; } } }); corefn.$id = corefn.getElementById; [corefn$9, corefn$8, elesfn, corefn$7, corefn$6, corefn$5, corefn$4, corefn$3, corefn$2, corefn$1, fn].forEach(function (props) { extend(corefn, props); }); /* eslint-disable no-unused-vars */ var defaults$7 = { fit: true, // whether to fit the viewport to the graph directed: false, // whether the tree is directed downwards (or edges can point in any direction if false) padding: 30, // padding on fit circle: false, // put depths in concentric circles if true, put depths top down if false grid: false, // whether to create an even grid into which the DAG is placed (circle:false only) spacingFactor: 1.75, // positive spacing factor, larger => more space between nodes (N.B. n/a if causes overlap) boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } avoidOverlap: true, // prevents node overlap, may overflow boundingBox if not enough space nodeDimensionsIncludeLabels: false, // Excludes the label when calculating node bounding boxes for the layout algorithm roots: undefined, // the roots of the trees depthSort: undefined, // a sorting function to order nodes at equal depth. e.g. function(a, b){ return a.data('weight') - b.data('weight') } animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled, animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; var deprecatedOptionDefaults = { maximal: false, // whether to shift nodes down their natural BFS depths in order to avoid upwards edges (DAGS only); setting acyclic to true sets maximal to true also acyclic: false // whether the tree is acyclic and thus a node could be shifted (due to the maximal option) multiple times without causing an infinite loop; setting to true sets maximal to true also; if you are uncertain whether a tree is acyclic, set to false to avoid potential infinite loops }; /* eslint-enable */ var getInfo = function getInfo(ele) { return ele.scratch('breadthfirst'); }; var setInfo = function setInfo(ele, obj) { return ele.scratch('breadthfirst', obj); }; function BreadthFirstLayout(options) { this.options = extend({}, defaults$7, deprecatedOptionDefaults, options); } BreadthFirstLayout.prototype.run = function () { var params = this.options; var options = params; var cy = params.cy; var eles = options.eles; var nodes = eles.nodes().filter(function (n) { return !n.isParent(); }); var graph = eles; var directed = options.directed; var maximal = options.acyclic || options.maximal || options.maximalAdjustments > 0; // maximalAdjustments for compat. w/ old code; also, setting acyclic to true sets maximal to true var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); var roots; if (elementOrCollection(options.roots)) { roots = options.roots; } else if (array(options.roots)) { var rootsArray = []; for (var i = 0; i < options.roots.length; i++) { var id = options.roots[i]; var ele = cy.getElementById(id); rootsArray.push(ele); } roots = cy.collection(rootsArray); } else if (string(options.roots)) { roots = cy.$(options.roots); } else { if (directed) { roots = nodes.roots(); } else { var components = eles.components(); roots = cy.collection(); var _loop = function _loop(_i) { var comp = components[_i]; var maxDegree = comp.maxDegree(false); var compRoots = comp.filter(function (ele) { return ele.degree(false) === maxDegree; }); roots = roots.add(compRoots); }; for (var _i = 0; _i < components.length; _i++) { _loop(_i); } } } var depths = []; var foundByBfs = {}; var addToDepth = function addToDepth(ele, d) { if (depths[d] == null) { depths[d] = []; } var i = depths[d].length; depths[d].push(ele); setInfo(ele, { index: i, depth: d }); }; var changeDepth = function changeDepth(ele, newDepth) { var _getInfo = getInfo(ele), depth = _getInfo.depth, index = _getInfo.index; depths[depth][index] = null; addToDepth(ele, newDepth); }; // find the depths of the nodes graph.bfs({ roots: roots, directed: options.directed, visit: function visit(node, edge, pNode, i, depth) { var ele = node[0]; var id = ele.id(); addToDepth(ele, depth); foundByBfs[id] = true; } }); // check for nodes not found by bfs var orphanNodes = []; for (var _i2 = 0; _i2 < nodes.length; _i2++) { var _ele = nodes[_i2]; if (foundByBfs[_ele.id()]) { continue; } else { orphanNodes.push(_ele); } } // assign the nodes a depth and index var assignDepthsAt = function assignDepthsAt(i) { var eles = depths[i]; for (var j = 0; j < eles.length; j++) { var _ele2 = eles[j]; if (_ele2 == null) { eles.splice(j, 1); j--; continue; } setInfo(_ele2, { depth: i, index: j }); } }; var assignDepths = function assignDepths() { for (var _i3 = 0; _i3 < depths.length; _i3++) { assignDepthsAt(_i3); } }; var adjustMaximally = function adjustMaximally(ele, shifted) { var eInfo = getInfo(ele); var incomers = ele.incomers().filter(function (el) { return el.isNode() && eles.has(el); }); var maxDepth = -1; var id = ele.id(); for (var k = 0; k < incomers.length; k++) { var incmr = incomers[k]; var iInfo = getInfo(incmr); maxDepth = Math.max(maxDepth, iInfo.depth); } if (eInfo.depth <= maxDepth) { if (!options.acyclic && shifted[id]) { return null; } var newDepth = maxDepth + 1; changeDepth(ele, newDepth); shifted[id] = newDepth; return true; } return false; }; // for the directed case, try to make the edges all go down (i.e. depth i => depth i + 1) if (directed && maximal) { var Q = []; var shifted = {}; var enqueue = function enqueue(n) { return Q.push(n); }; var dequeue = function dequeue() { return Q.shift(); }; nodes.forEach(function (n) { return Q.push(n); }); while (Q.length > 0) { var _ele3 = dequeue(); var didShift = adjustMaximally(_ele3, shifted); if (didShift) { _ele3.outgoers().filter(function (el) { return el.isNode() && eles.has(el); }).forEach(enqueue); } else if (didShift === null) { warn('Detected double maximal shift for node `' + _ele3.id() + '`. Bailing maximal adjustment due to cycle. Use `options.maximal: true` only on DAGs.'); break; // exit on failure } } } assignDepths(); // clear holes // find min distance we need to leave between nodes var minDistance = 0; if (options.avoidOverlap) { for (var _i4 = 0; _i4 < nodes.length; _i4++) { var n = nodes[_i4]; var nbb = n.layoutDimensions(options); var w = nbb.w; var h = nbb.h; minDistance = Math.max(minDistance, w, h); } } // get the weighted percent for an element based on its connectivity to other levels var cachedWeightedPercent = {}; var getWeightedPercent = function getWeightedPercent(ele) { if (cachedWeightedPercent[ele.id()]) { return cachedWeightedPercent[ele.id()]; } var eleDepth = getInfo(ele).depth; var neighbors = ele.neighborhood(); var percent = 0; var samples = 0; for (var _i5 = 0; _i5 < neighbors.length; _i5++) { var neighbor = neighbors[_i5]; if (neighbor.isEdge() || neighbor.isParent() || !nodes.has(neighbor)) { continue; } var bf = getInfo(neighbor); if (bf == null) { continue; } var index = bf.index; var depth = bf.depth; // unassigned neighbours shouldn't affect the ordering if (index == null || depth == null) { continue; } var nDepth = depths[depth].length; if (depth < eleDepth) { // only get influenced by elements above percent += index / nDepth; samples++; } } samples = Math.max(1, samples); percent = percent / samples; if (samples === 0) { // put lone nodes at the start percent = 0; } cachedWeightedPercent[ele.id()] = percent; return percent; }; // rearrange the indices in each depth level based on connectivity var sortFn = function sortFn(a, b) { var apct = getWeightedPercent(a); var bpct = getWeightedPercent(b); var diff = apct - bpct; if (diff === 0) { return ascending(a.id(), b.id()); // make sure sort doesn't have don't-care comparisons } else { return diff; } }; if (options.depthSort !== undefined) { sortFn = options.depthSort; } // sort each level to make connected nodes closer for (var _i6 = 0; _i6 < depths.length; _i6++) { depths[_i6].sort(sortFn); assignDepthsAt(_i6); } // assign orphan nodes to a new top-level depth var orphanDepth = []; for (var _i7 = 0; _i7 < orphanNodes.length; _i7++) { orphanDepth.push(orphanNodes[_i7]); } depths.unshift(orphanDepth); assignDepths(); var biggestDepthSize = 0; for (var _i8 = 0; _i8 < depths.length; _i8++) { biggestDepthSize = Math.max(depths[_i8].length, biggestDepthSize); } var center = { x: bb.x1 + bb.w / 2, y: bb.x1 + bb.h / 2 }; var maxDepthSize = depths.reduce(function (max, eles) { return Math.max(max, eles.length); }, 0); var getPosition = function getPosition(ele) { var _getInfo2 = getInfo(ele), depth = _getInfo2.depth, index = _getInfo2.index; var depthSize = depths[depth].length; var distanceX = Math.max(bb.w / ((options.grid ? maxDepthSize : depthSize) + 1), minDistance); var distanceY = Math.max(bb.h / (depths.length + 1), minDistance); var radiusStepSize = Math.min(bb.w / 2 / depths.length, bb.h / 2 / depths.length); radiusStepSize = Math.max(radiusStepSize, minDistance); if (!options.circle) { var epos = { x: center.x + (index + 1 - (depthSize + 1) / 2) * distanceX, y: (depth + 1) * distanceY }; return epos; } else { var radius = radiusStepSize * depth + radiusStepSize - (depths.length > 0 && depths[0].length <= 3 ? radiusStepSize / 2 : 0); var theta = 2 * Math.PI / depths[depth].length * index; if (depth === 0 && depths[0].length === 1) { radius = 1; } return { x: center.x + radius * Math.cos(theta), y: center.y + radius * Math.sin(theta) }; } }; eles.nodes().layoutPositions(this, options, getPosition); return this; // chaining }; var defaults$6 = { fit: true, // whether to fit the viewport to the graph padding: 30, // the padding on fit boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } avoidOverlap: true, // prevents node overlap, may overflow boundingBox and radius if not enough space nodeDimensionsIncludeLabels: false, // Excludes the label when calculating node bounding boxes for the layout algorithm spacingFactor: undefined, // Applies a multiplicative factor (>0) to expand or compress the overall area that the nodes take up radius: undefined, // the radius of the circle startAngle: 3 / 2 * Math.PI, // where nodes start in radians sweep: undefined, // how many radians should be between the first and last node (defaults to full circle) clockwise: true, // whether the layout should go clockwise (true) or counterclockwise/anticlockwise (false) sort: undefined, // a sorting function to order the nodes; e.g. function(a, b){ return a.data('weight') - b.data('weight') } animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function CircleLayout(options) { this.options = extend({}, defaults$6, options); } CircleLayout.prototype.run = function () { var params = this.options; var options = params; var cy = params.cy; var eles = options.eles; var clockwise = options.counterclockwise !== undefined ? !options.counterclockwise : options.clockwise; var nodes = eles.nodes().not(':parent'); if (options.sort) { nodes = nodes.sort(options.sort); } var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); var center = { x: bb.x1 + bb.w / 2, y: bb.y1 + bb.h / 2 }; var sweep = options.sweep === undefined ? 2 * Math.PI - 2 * Math.PI / nodes.length : options.sweep; var dTheta = sweep / Math.max(1, nodes.length - 1); var r; var minDistance = 0; for (var i = 0; i < nodes.length; i++) { var n = nodes[i]; var nbb = n.layoutDimensions(options); var w = nbb.w; var h = nbb.h; minDistance = Math.max(minDistance, w, h); } if (number$1(options.radius)) { r = options.radius; } else if (nodes.length <= 1) { r = 0; } else { r = Math.min(bb.h, bb.w) / 2 - minDistance; } // calculate the radius if (nodes.length > 1 && options.avoidOverlap) { // but only if more than one node (can't overlap) minDistance *= 1.75; // just to have some nice spacing var dcos = Math.cos(dTheta) - Math.cos(0); var dsin = Math.sin(dTheta) - Math.sin(0); var rMin = Math.sqrt(minDistance * minDistance / (dcos * dcos + dsin * dsin)); // s.t. no nodes overlapping r = Math.max(rMin, r); } var getPos = function getPos(ele, i) { var theta = options.startAngle + i * dTheta * (clockwise ? 1 : -1); var rx = r * Math.cos(theta); var ry = r * Math.sin(theta); var pos = { x: center.x + rx, y: center.y + ry }; return pos; }; eles.nodes().layoutPositions(this, options, getPos); return this; // chaining }; var defaults$5 = { fit: true, // whether to fit the viewport to the graph padding: 30, // the padding on fit startAngle: 3 / 2 * Math.PI, // where nodes start in radians sweep: undefined, // how many radians should be between the first and last node (defaults to full circle) clockwise: true, // whether the layout should go clockwise (true) or counterclockwise/anticlockwise (false) equidistant: false, // whether levels have an equal radial distance betwen them, may cause bounding box overflow minNodeSpacing: 10, // min spacing between outside of nodes (used for radius adjustment) boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } avoidOverlap: true, // prevents node overlap, may overflow boundingBox if not enough space nodeDimensionsIncludeLabels: false, // Excludes the label when calculating node bounding boxes for the layout algorithm height: undefined, // height of layout area (overrides container height) width: undefined, // width of layout area (overrides container width) spacingFactor: undefined, // Applies a multiplicative factor (>0) to expand or compress the overall area that the nodes take up concentric: function concentric(node) { // returns numeric value for each node, placing higher nodes in levels towards the centre return node.degree(); }, levelWidth: function levelWidth(nodes) { // the variation of concentric values in each level return nodes.maxDegree() / 4; }, animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function ConcentricLayout(options) { this.options = extend({}, defaults$5, options); } ConcentricLayout.prototype.run = function () { var params = this.options; var options = params; var clockwise = options.counterclockwise !== undefined ? !options.counterclockwise : options.clockwise; var cy = params.cy; var eles = options.eles; var nodes = eles.nodes().not(':parent'); var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); var center = { x: bb.x1 + bb.w / 2, y: bb.y1 + bb.h / 2 }; var nodeValues = []; // { node, value } var maxNodeSize = 0; for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; var value = void 0; // calculate the node value value = options.concentric(node); nodeValues.push({ value: value, node: node }); // for style mapping node._private.scratch.concentric = value; } // in case we used the `concentric` in style nodes.updateStyle(); // calculate max size now based on potentially updated mappers for (var _i = 0; _i < nodes.length; _i++) { var _node = nodes[_i]; var nbb = _node.layoutDimensions(options); maxNodeSize = Math.max(maxNodeSize, nbb.w, nbb.h); } // sort node values in descreasing order nodeValues.sort(function (a, b) { return b.value - a.value; }); var levelWidth = options.levelWidth(nodes); // put the values into levels var levels = [[]]; var currentLevel = levels[0]; for (var _i2 = 0; _i2 < nodeValues.length; _i2++) { var val = nodeValues[_i2]; if (currentLevel.length > 0) { var diff = Math.abs(currentLevel[0].value - val.value); if (diff >= levelWidth) { currentLevel = []; levels.push(currentLevel); } } currentLevel.push(val); } // create positions from levels var minDist = maxNodeSize + options.minNodeSpacing; // min dist between nodes if (!options.avoidOverlap) { // then strictly constrain to bb var firstLvlHasMulti = levels.length > 0 && levels[0].length > 1; var maxR = Math.min(bb.w, bb.h) / 2 - minDist; var rStep = maxR / (levels.length + firstLvlHasMulti ? 1 : 0); minDist = Math.min(minDist, rStep); } // find the metrics for each level var r = 0; for (var _i3 = 0; _i3 < levels.length; _i3++) { var level = levels[_i3]; var sweep = options.sweep === undefined ? 2 * Math.PI - 2 * Math.PI / level.length : options.sweep; var dTheta = level.dTheta = sweep / Math.max(1, level.length - 1); // calculate the radius if (level.length > 1 && options.avoidOverlap) { // but only if more than one node (can't overlap) var dcos = Math.cos(dTheta) - Math.cos(0); var dsin = Math.sin(dTheta) - Math.sin(0); var rMin = Math.sqrt(minDist * minDist / (dcos * dcos + dsin * dsin)); // s.t. no nodes overlapping r = Math.max(rMin, r); } level.r = r; r += minDist; } if (options.equidistant) { var rDeltaMax = 0; var _r = 0; for (var _i4 = 0; _i4 < levels.length; _i4++) { var _level = levels[_i4]; var rDelta = _level.r - _r; rDeltaMax = Math.max(rDeltaMax, rDelta); } _r = 0; for (var _i5 = 0; _i5 < levels.length; _i5++) { var _level2 = levels[_i5]; if (_i5 === 0) { _r = _level2.r; } _level2.r = _r; _r += rDeltaMax; } } // calculate the node positions var pos = {}; // id => position for (var _i6 = 0; _i6 < levels.length; _i6++) { var _level3 = levels[_i6]; var _dTheta = _level3.dTheta; var _r2 = _level3.r; for (var j = 0; j < _level3.length; j++) { var _val = _level3[j]; var theta = options.startAngle + (clockwise ? 1 : -1) * _dTheta * j; var p = { x: center.x + _r2 * Math.cos(theta), y: center.y + _r2 * Math.sin(theta) }; pos[_val.node.id()] = p; } } // position the nodes eles.nodes().layoutPositions(this, options, function (ele) { var id = ele.id(); return pos[id]; }); return this; // chaining }; /* The CoSE layout was written by Gerardo Huck. https://www.linkedin.com/in/gerardohuck/ Based on the following article: http://dl.acm.org/citation.cfm?id=1498047 Modifications tracked on Github. */ var DEBUG; /** * @brief : default layout options */ var defaults$4 = { // Called on `layoutready` ready: function ready() {}, // Called on `layoutstop` stop: function stop() {}, // Whether to animate while running the layout // true : Animate continuously as the layout is running // false : Just show the end result // 'end' : Animate with the end result, from the initial positions to the end positions animate: true, // Easing of the animation for animate:'end' animationEasing: undefined, // The duration of the animation for animate:'end' animationDuration: undefined, // A function that determines whether the node should be animated // All nodes animated by default on animate enabled // Non-animated nodes are positioned immediately when the layout starts animateFilter: function animateFilter(node, i) { return true; }, // The layout animates only after this many milliseconds for animate:true // (prevents flashing on fast runs) animationThreshold: 250, // Number of iterations between consecutive screen positions update refresh: 20, // Whether to fit the network view after when done fit: true, // Padding on fit padding: 30, // Constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } boundingBox: undefined, // Excludes the label when calculating node bounding boxes for the layout algorithm nodeDimensionsIncludeLabels: false, // Randomize the initial positions of the nodes (true) or use existing positions (false) randomize: false, // Extra spacing between components in non-compound graphs componentSpacing: 40, // Node repulsion (non overlapping) multiplier nodeRepulsion: function nodeRepulsion(node) { return 2048; }, // Node repulsion (overlapping) multiplier nodeOverlap: 4, // Ideal edge (non nested) length idealEdgeLength: function idealEdgeLength(edge) { return 32; }, // Divisor to compute edge forces edgeElasticity: function edgeElasticity(edge) { return 32; }, // Nesting factor (multiplier) to compute ideal edge length for nested edges nestingFactor: 1.2, // Gravity force (constant) gravity: 1, // Maximum number of iterations to perform numIter: 1000, // Initial temperature (maximum node displacement) initialTemp: 1000, // Cooling factor (how the temperature is reduced between consecutive iterations coolingFactor: 0.99, // Lower temperature threshold (below this point the layout will end) minTemp: 1.0 }; /** * @brief : constructor * @arg options : object containing layout options */ function CoseLayout(options) { this.options = extend({}, defaults$4, options); this.options.layout = this; // Exclude any edge that has a source or target node that is not in the set of passed-in nodes var nodes = this.options.eles.nodes(); var edges = this.options.eles.edges(); var notEdges = edges.filter(function (e) { var sourceId = e.source().data('id'); var targetId = e.target().data('id'); var hasSource = nodes.some(function (n) { return n.data('id') === sourceId; }); var hasTarget = nodes.some(function (n) { return n.data('id') === targetId; }); return !hasSource || !hasTarget; }); this.options.eles = this.options.eles.not(notEdges); } /** * @brief : runs the layout */ CoseLayout.prototype.run = function () { var options = this.options; var cy = options.cy; var layout = this; layout.stopped = false; if (options.animate === true || options.animate === false) { layout.emit({ type: 'layoutstart', layout: layout }); } // Set DEBUG - Global variable if (true === options.debug) { DEBUG = true; } else { DEBUG = false; } // Initialize layout info var layoutInfo = createLayoutInfo(cy, layout, options); // Show LayoutInfo contents if debugging if (DEBUG) { printLayoutInfo(layoutInfo); } // If required, randomize node positions if (options.randomize) { randomizePositions(layoutInfo); } var startTime = performanceNow(); var refresh = function refresh() { refreshPositions(layoutInfo, cy, options); // Fit the graph if necessary if (true === options.fit) { cy.fit(options.padding); } }; var mainLoop = function mainLoop(i) { if (layout.stopped || i >= options.numIter) { // logDebug("Layout manually stopped. Stopping computation in step " + i); return false; } // Do one step in the phisical simulation step(layoutInfo, options); // Update temperature layoutInfo.temperature = layoutInfo.temperature * options.coolingFactor; // logDebug("New temperature: " + layoutInfo.temperature); if (layoutInfo.temperature < options.minTemp) { // logDebug("Temperature drop below minimum threshold. Stopping computation in step " + i); return false; } return true; }; var done = function done() { if (options.animate === true || options.animate === false) { refresh(); // Layout has finished layout.one('layoutstop', options.stop); layout.emit({ type: 'layoutstop', layout: layout }); } else { var nodes = options.eles.nodes(); var getScaledPos = getScaleInBoundsFn(layoutInfo, options, nodes); nodes.layoutPositions(layout, options, getScaledPos); } }; var i = 0; var loopRet = true; if (options.animate === true) { var frame = function frame() { var f = 0; while (loopRet && f < options.refresh) { loopRet = mainLoop(i); i++; f++; } if (!loopRet) { // it's done separateComponents(layoutInfo, options); done(); } else { var now = performanceNow(); if (now - startTime >= options.animationThreshold) { refresh(); } requestAnimationFrame(frame); } }; frame(); } else { while (loopRet) { loopRet = mainLoop(i); i++; } separateComponents(layoutInfo, options); done(); } return this; // chaining }; /** * @brief : called on continuous layouts to stop them before they finish */ CoseLayout.prototype.stop = function () { this.stopped = true; if (this.thread) { this.thread.stop(); } this.emit('layoutstop'); return this; // chaining }; CoseLayout.prototype.destroy = function () { if (this.thread) { this.thread.stop(); } return this; // chaining }; /** * @brief : Creates an object which is contains all the data * used in the layout process * @arg cy : cytoscape.js object * @return : layoutInfo object initialized */ var createLayoutInfo = function createLayoutInfo(cy, layout, options) { // Shortcut var edges = options.eles.edges(); var nodes = options.eles.nodes(); var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); var layoutInfo = { isCompound: cy.hasCompoundNodes(), layoutNodes: [], idToIndex: {}, nodeSize: nodes.size(), graphSet: [], indexToGraph: [], layoutEdges: [], edgeSize: edges.size(), temperature: options.initialTemp, clientWidth: bb.w, clientHeight: bb.h, boundingBox: bb }; var components = options.eles.components(); var id2cmptId = {}; for (var i = 0; i < components.length; i++) { var component = components[i]; for (var j = 0; j < component.length; j++) { var node = component[j]; id2cmptId[node.id()] = i; } } // Iterate over all nodes, creating layout nodes for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = nodes[i]; var nbb = n.layoutDimensions(options); var tempNode = {}; tempNode.isLocked = n.locked(); tempNode.id = n.data('id'); tempNode.parentId = n.data('parent'); tempNode.cmptId = id2cmptId[n.id()]; tempNode.children = []; tempNode.positionX = n.position('x'); tempNode.positionY = n.position('y'); tempNode.offsetX = 0; tempNode.offsetY = 0; tempNode.height = nbb.w; tempNode.width = nbb.h; tempNode.maxX = tempNode.positionX + tempNode.width / 2; tempNode.minX = tempNode.positionX - tempNode.width / 2; tempNode.maxY = tempNode.positionY + tempNode.height / 2; tempNode.minY = tempNode.positionY - tempNode.height / 2; tempNode.padLeft = parseFloat(n.style('padding')); tempNode.padRight = parseFloat(n.style('padding')); tempNode.padTop = parseFloat(n.style('padding')); tempNode.padBottom = parseFloat(n.style('padding')); // forces tempNode.nodeRepulsion = fn$6(options.nodeRepulsion) ? options.nodeRepulsion(n) : options.nodeRepulsion; // Add new node layoutInfo.layoutNodes.push(tempNode); // Add entry to id-index map layoutInfo.idToIndex[tempNode.id] = i; } // Inline implementation of a queue, used for traversing the graph in BFS order var queue = []; var start = 0; // Points to the start the queue var end = -1; // Points to the end of the queue var tempGraph = []; // Second pass to add child information and // initialize queue for hierarchical traversal for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = layoutInfo.layoutNodes[i]; var p_id = n.parentId; // Check if node n has a parent node if (null != p_id) { // Add node Id to parent's list of children layoutInfo.layoutNodes[layoutInfo.idToIndex[p_id]].children.push(n.id); } else { // If a node doesn't have a parent, then it's in the root graph queue[++end] = n.id; tempGraph.push(n.id); } } // Add root graph to graphSet layoutInfo.graphSet.push(tempGraph); // Traverse the graph, level by level, while (start <= end) { // Get the node to visit and remove it from queue var node_id = queue[start++]; var node_ix = layoutInfo.idToIndex[node_id]; var node = layoutInfo.layoutNodes[node_ix]; var children = node.children; if (children.length > 0) { // Add children nodes as a new graph to graph set layoutInfo.graphSet.push(children); // Add children to que queue to be visited for (var i = 0; i < children.length; i++) { queue[++end] = children[i]; } } } // Create indexToGraph map for (var i = 0; i < layoutInfo.graphSet.length; i++) { var graph = layoutInfo.graphSet[i]; for (var j = 0; j < graph.length; j++) { var index = layoutInfo.idToIndex[graph[j]]; layoutInfo.indexToGraph[index] = i; } } // Iterate over all edges, creating Layout Edges for (var i = 0; i < layoutInfo.edgeSize; i++) { var e = edges[i]; var tempEdge = {}; tempEdge.id = e.data('id'); tempEdge.sourceId = e.data('source'); tempEdge.targetId = e.data('target'); // Compute ideal length var idealLength = fn$6(options.idealEdgeLength) ? options.idealEdgeLength(e) : options.idealEdgeLength; var elasticity = fn$6(options.edgeElasticity) ? options.edgeElasticity(e) : options.edgeElasticity; // Check if it's an inter graph edge var sourceIx = layoutInfo.idToIndex[tempEdge.sourceId]; var targetIx = layoutInfo.idToIndex[tempEdge.targetId]; var sourceGraph = layoutInfo.indexToGraph[sourceIx]; var targetGraph = layoutInfo.indexToGraph[targetIx]; if (sourceGraph != targetGraph) { // Find lowest common graph ancestor var lca = findLCA(tempEdge.sourceId, tempEdge.targetId, layoutInfo); // Compute sum of node depths, relative to lca graph var lcaGraph = layoutInfo.graphSet[lca]; var depth = 0; // Source depth var tempNode = layoutInfo.layoutNodes[sourceIx]; while (-1 === lcaGraph.indexOf(tempNode.id)) { tempNode = layoutInfo.layoutNodes[layoutInfo.idToIndex[tempNode.parentId]]; depth++; } // Target depth tempNode = layoutInfo.layoutNodes[targetIx]; while (-1 === lcaGraph.indexOf(tempNode.id)) { tempNode = layoutInfo.layoutNodes[layoutInfo.idToIndex[tempNode.parentId]]; depth++; } // logDebug('LCA of nodes ' + tempEdge.sourceId + ' and ' + tempEdge.targetId + // ". Index: " + lca + " Contents: " + lcaGraph.toString() + // ". Depth: " + depth); // Update idealLength idealLength *= depth * options.nestingFactor; } tempEdge.idealLength = idealLength; tempEdge.elasticity = elasticity; layoutInfo.layoutEdges.push(tempEdge); } // Finally, return layoutInfo object return layoutInfo; }; /** * @brief : This function finds the index of the lowest common * graph ancestor between 2 nodes in the subtree * (from the graph hierarchy induced tree) whose * root is graphIx * * @arg node1: node1's ID * @arg node2: node2's ID * @arg layoutInfo: layoutInfo object * */ var findLCA = function findLCA(node1, node2, layoutInfo) { // Find their common ancester, starting from the root graph var res = findLCA_aux(node1, node2, 0, layoutInfo); if (2 > res.count) { // If aux function couldn't find the common ancester, // then it is the root graph return 0; } else { return res.graph; } }; /** * @brief : Auxiliary function used for LCA computation * * @arg node1 : node1's ID * @arg node2 : node2's ID * @arg graphIx : subgraph index * @arg layoutInfo : layoutInfo object * * @return : object of the form {count: X, graph: Y}, where: * X is the number of ancestors (max: 2) found in * graphIx (and it's subgraphs), * Y is the graph index of the lowest graph containing * all X nodes */ var findLCA_aux = function findLCA_aux(node1, node2, graphIx, layoutInfo) { var graph = layoutInfo.graphSet[graphIx]; // If both nodes belongs to graphIx if (-1 < graph.indexOf(node1) && -1 < graph.indexOf(node2)) { return { count: 2, graph: graphIx }; } // Make recursive calls for all subgraphs var c = 0; for (var i = 0; i < graph.length; i++) { var nodeId = graph[i]; var nodeIx = layoutInfo.idToIndex[nodeId]; var children = layoutInfo.layoutNodes[nodeIx].children; // If the node has no child, skip it if (0 === children.length) { continue; } var childGraphIx = layoutInfo.indexToGraph[layoutInfo.idToIndex[children[0]]]; var result = findLCA_aux(node1, node2, childGraphIx, layoutInfo); if (0 === result.count) { // Neither node1 nor node2 are present in this subgraph continue; } else if (1 === result.count) { // One of (node1, node2) is present in this subgraph c++; if (2 === c) { // We've already found both nodes, no need to keep searching break; } } else { // Both nodes are present in this subgraph return result; } } return { count: c, graph: graphIx }; }; /** * @brief: printsLayoutInfo into js console * Only used for debbuging */ var printLayoutInfo; /** * @brief : Randomizes the position of all nodes */ var randomizePositions = function randomizePositions(layoutInfo, cy) { var width = layoutInfo.clientWidth; var height = layoutInfo.clientHeight; for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = layoutInfo.layoutNodes[i]; // No need to randomize compound nodes or locked nodes if (0 === n.children.length && !n.isLocked) { n.positionX = Math.random() * width; n.positionY = Math.random() * height; } } }; var getScaleInBoundsFn = function getScaleInBoundsFn(layoutInfo, options, nodes) { var bb = layoutInfo.boundingBox; var coseBB = { x1: Infinity, x2: -Infinity, y1: Infinity, y2: -Infinity }; if (options.boundingBox) { nodes.forEach(function (node) { var lnode = layoutInfo.layoutNodes[layoutInfo.idToIndex[node.data('id')]]; coseBB.x1 = Math.min(coseBB.x1, lnode.positionX); coseBB.x2 = Math.max(coseBB.x2, lnode.positionX); coseBB.y1 = Math.min(coseBB.y1, lnode.positionY); coseBB.y2 = Math.max(coseBB.y2, lnode.positionY); }); coseBB.w = coseBB.x2 - coseBB.x1; coseBB.h = coseBB.y2 - coseBB.y1; } return function (ele, i) { var lnode = layoutInfo.layoutNodes[layoutInfo.idToIndex[ele.data('id')]]; if (options.boundingBox) { // then add extra bounding box constraint var pctX = (lnode.positionX - coseBB.x1) / coseBB.w; var pctY = (lnode.positionY - coseBB.y1) / coseBB.h; return { x: bb.x1 + pctX * bb.w, y: bb.y1 + pctY * bb.h }; } else { return { x: lnode.positionX, y: lnode.positionY }; } }; }; /** * @brief : Updates the positions of nodes in the network * @arg layoutInfo : LayoutInfo object * @arg cy : Cytoscape object * @arg options : Layout options */ var refreshPositions = function refreshPositions(layoutInfo, cy, options) { // var s = 'Refreshing positions'; // logDebug(s); var layout = options.layout; var nodes = options.eles.nodes(); var getScaledPos = getScaleInBoundsFn(layoutInfo, options, nodes); nodes.positions(getScaledPos); // Trigger layoutReady only on first call if (true !== layoutInfo.ready) { // s = 'Triggering layoutready'; // logDebug(s); layoutInfo.ready = true; layout.one('layoutready', options.ready); layout.emit({ type: 'layoutready', layout: this }); } }; /** * @brief : Logs a debug message in JS console, if DEBUG is ON */ // var logDebug = function(text) { // if (DEBUG) { // console.debug(text); // } // }; /** * @brief : Performs one iteration of the physical simulation * @arg layoutInfo : LayoutInfo object already initialized * @arg cy : Cytoscape object * @arg options : Layout options */ var step = function step(layoutInfo, options, _step) { // var s = "\n\n###############################"; // s += "\nSTEP: " + step; // s += "\n###############################\n"; // logDebug(s); // Calculate node repulsions calculateNodeForces(layoutInfo, options); // Calculate edge forces calculateEdgeForces(layoutInfo); // Calculate gravity forces calculateGravityForces(layoutInfo, options); // Propagate forces from parent to child propagateForces(layoutInfo); // Update positions based on calculated forces updatePositions(layoutInfo); }; /** * @brief : Computes the node repulsion forces */ var calculateNodeForces = function calculateNodeForces(layoutInfo, options) { // Go through each of the graphs in graphSet // Nodes only repel each other if they belong to the same graph // var s = 'calculateNodeForces'; // logDebug(s); for (var i = 0; i < layoutInfo.graphSet.length; i++) { var graph = layoutInfo.graphSet[i]; var numNodes = graph.length; // s = "Set: " + graph.toString(); // logDebug(s); // Now get all the pairs of nodes // Only get each pair once, (A, B) = (B, A) for (var j = 0; j < numNodes; j++) { var node1 = layoutInfo.layoutNodes[layoutInfo.idToIndex[graph[j]]]; for (var k = j + 1; k < numNodes; k++) { var node2 = layoutInfo.layoutNodes[layoutInfo.idToIndex[graph[k]]]; nodeRepulsion(node1, node2, layoutInfo, options); } } } }; var randomDistance = function randomDistance(max) { return -max + 2 * max * Math.random(); }; /** * @brief : Compute the node repulsion forces between a pair of nodes */ var nodeRepulsion = function nodeRepulsion(node1, node2, layoutInfo, options) { // var s = "Node repulsion. Node1: " + node1.id + " Node2: " + node2.id; var cmptId1 = node1.cmptId; var cmptId2 = node2.cmptId; if (cmptId1 !== cmptId2 && !layoutInfo.isCompound) { return; } // Get direction of line connecting both node centers var directionX = node2.positionX - node1.positionX; var directionY = node2.positionY - node1.positionY; var maxRandDist = 1; // s += "\ndirectionX: " + directionX + ", directionY: " + directionY; // If both centers are the same, apply a random force if (0 === directionX && 0 === directionY) { directionX = randomDistance(maxRandDist); directionY = randomDistance(maxRandDist); } var overlap = nodesOverlap(node1, node2, directionX, directionY); if (overlap > 0) { // s += "\nNodes DO overlap."; // s += "\nOverlap: " + overlap; // If nodes overlap, repulsion force is proportional // to the overlap var force = options.nodeOverlap * overlap; // Compute the module and components of the force vector var distance = Math.sqrt(directionX * directionX + directionY * directionY); // s += "\nDistance: " + distance; var forceX = force * directionX / distance; var forceY = force * directionY / distance; } else { // s += "\nNodes do NOT overlap."; // If there's no overlap, force is inversely proportional // to squared distance // Get clipping points for both nodes var point1 = findClippingPoint(node1, directionX, directionY); var point2 = findClippingPoint(node2, -1 * directionX, -1 * directionY); // Use clipping points to compute distance var distanceX = point2.x - point1.x; var distanceY = point2.y - point1.y; var distanceSqr = distanceX * distanceX + distanceY * distanceY; var distance = Math.sqrt(distanceSqr); // s += "\nDistance: " + distance; // Compute the module and components of the force vector var force = (node1.nodeRepulsion + node2.nodeRepulsion) / distanceSqr; var forceX = force * distanceX / distance; var forceY = force * distanceY / distance; } // Apply force if (!node1.isLocked) { node1.offsetX -= forceX; node1.offsetY -= forceY; } if (!node2.isLocked) { node2.offsetX += forceX; node2.offsetY += forceY; } // s += "\nForceX: " + forceX + " ForceY: " + forceY; // logDebug(s); return; }; /** * @brief : Determines whether two nodes overlap or not * @return : Amount of overlapping (0 => no overlap) */ var nodesOverlap = function nodesOverlap(node1, node2, dX, dY) { if (dX > 0) { var overlapX = node1.maxX - node2.minX; } else { var overlapX = node2.maxX - node1.minX; } if (dY > 0) { var overlapY = node1.maxY - node2.minY; } else { var overlapY = node2.maxY - node1.minY; } if (overlapX >= 0 && overlapY >= 0) { return Math.sqrt(overlapX * overlapX + overlapY * overlapY); } else { return 0; } }; /** * @brief : Finds the point in which an edge (direction dX, dY) intersects * the rectangular bounding box of it's source/target node */ var findClippingPoint = function findClippingPoint(node, dX, dY) { // Shorcuts var X = node.positionX; var Y = node.positionY; var H = node.height || 1; var W = node.width || 1; var dirSlope = dY / dX; var nodeSlope = H / W; // var s = 'Computing clipping point of node ' + node.id + // " . Height: " + H + ", Width: " + W + // "\nDirection " + dX + ", " + dY; // // Compute intersection var res = {}; // Case: Vertical direction (up) if (0 === dX && 0 < dY) { res.x = X; // s += "\nUp direction"; res.y = Y + H / 2; return res; } // Case: Vertical direction (down) if (0 === dX && 0 > dY) { res.x = X; res.y = Y + H / 2; // s += "\nDown direction"; return res; } // Case: Intersects the right border if (0 < dX && -1 * nodeSlope <= dirSlope && dirSlope <= nodeSlope) { res.x = X + W / 2; res.y = Y + W * dY / 2 / dX; // s += "\nRightborder"; return res; } // Case: Intersects the left border if (0 > dX && -1 * nodeSlope <= dirSlope && dirSlope <= nodeSlope) { res.x = X - W / 2; res.y = Y - W * dY / 2 / dX; // s += "\nLeftborder"; return res; } // Case: Intersects the top border if (0 < dY && (dirSlope <= -1 * nodeSlope || dirSlope >= nodeSlope)) { res.x = X + H * dX / 2 / dY; res.y = Y + H / 2; // s += "\nTop border"; return res; } // Case: Intersects the bottom border if (0 > dY && (dirSlope <= -1 * nodeSlope || dirSlope >= nodeSlope)) { res.x = X - H * dX / 2 / dY; res.y = Y - H / 2; // s += "\nBottom border"; return res; } // s += "\nClipping point found at " + res.x + ", " + res.y; // logDebug(s); return res; }; /** * @brief : Calculates all edge forces */ var calculateEdgeForces = function calculateEdgeForces(layoutInfo, options) { // Iterate over all edges for (var i = 0; i < layoutInfo.edgeSize; i++) { // Get edge, source & target nodes var edge = layoutInfo.layoutEdges[i]; var sourceIx = layoutInfo.idToIndex[edge.sourceId]; var source = layoutInfo.layoutNodes[sourceIx]; var targetIx = layoutInfo.idToIndex[edge.targetId]; var target = layoutInfo.layoutNodes[targetIx]; // Get direction of line connecting both node centers var directionX = target.positionX - source.positionX; var directionY = target.positionY - source.positionY; // If both centers are the same, do nothing. // A random force has already been applied as node repulsion if (0 === directionX && 0 === directionY) { continue; } // Get clipping points for both nodes var point1 = findClippingPoint(source, directionX, directionY); var point2 = findClippingPoint(target, -1 * directionX, -1 * directionY); var lx = point2.x - point1.x; var ly = point2.y - point1.y; var l = Math.sqrt(lx * lx + ly * ly); var force = Math.pow(edge.idealLength - l, 2) / edge.elasticity; if (0 !== l) { var forceX = force * lx / l; var forceY = force * ly / l; } else { var forceX = 0; var forceY = 0; } // Add this force to target and source nodes if (!source.isLocked) { source.offsetX += forceX; source.offsetY += forceY; } if (!target.isLocked) { target.offsetX -= forceX; target.offsetY -= forceY; } // var s = 'Edge force between nodes ' + source.id + ' and ' + target.id; // s += "\nDistance: " + l + " Force: (" + forceX + ", " + forceY + ")"; // logDebug(s); } }; /** * @brief : Computes gravity forces for all nodes */ var calculateGravityForces = function calculateGravityForces(layoutInfo, options) { if (options.gravity === 0) { return; } var distThreshold = 1; // var s = 'calculateGravityForces'; // logDebug(s); for (var i = 0; i < layoutInfo.graphSet.length; i++) { var graph = layoutInfo.graphSet[i]; var numNodes = graph.length; // s = "Set: " + graph.toString(); // logDebug(s); // Compute graph center if (0 === i) { var centerX = layoutInfo.clientHeight / 2; var centerY = layoutInfo.clientWidth / 2; } else { // Get Parent node for this graph, and use its position as center var temp = layoutInfo.layoutNodes[layoutInfo.idToIndex[graph[0]]]; var parent = layoutInfo.layoutNodes[layoutInfo.idToIndex[temp.parentId]]; var centerX = parent.positionX; var centerY = parent.positionY; } // s = "Center found at: " + centerX + ", " + centerY; // logDebug(s); // Apply force to all nodes in graph for (var j = 0; j < numNodes; j++) { var node = layoutInfo.layoutNodes[layoutInfo.idToIndex[graph[j]]]; // s = "Node: " + node.id; if (node.isLocked) { continue; } var dx = centerX - node.positionX; var dy = centerY - node.positionY; var d = Math.sqrt(dx * dx + dy * dy); if (d > distThreshold) { var fx = options.gravity * dx / d; var fy = options.gravity * dy / d; node.offsetX += fx; node.offsetY += fy; // s += ": Applied force: " + fx + ", " + fy; } // logDebug(s); } } }; /** * @brief : This function propagates the existing offsets from * parent nodes to its descendents. * @arg layoutInfo : layoutInfo Object * @arg cy : cytoscape Object * @arg options : Layout options */ var propagateForces = function propagateForces(layoutInfo, options) { // Inline implementation of a queue, used for traversing the graph in BFS order var queue = []; var start = 0; // Points to the start the queue var end = -1; // Points to the end of the queue // logDebug('propagateForces'); // Start by visiting the nodes in the root graph queue.push.apply(queue, layoutInfo.graphSet[0]); end += layoutInfo.graphSet[0].length; // Traverse the graph, level by level, while (start <= end) { // Get the node to visit and remove it from queue var nodeId = queue[start++]; var nodeIndex = layoutInfo.idToIndex[nodeId]; var node = layoutInfo.layoutNodes[nodeIndex]; var children = node.children; // We only need to process the node if it's compound if (0 < children.length && !node.isLocked) { var offX = node.offsetX; var offY = node.offsetY; // var s = "Propagating offset from parent node : " + node.id + // ". OffsetX: " + offX + ". OffsetY: " + offY; // s += "\n Children: " + children.toString(); // logDebug(s); for (var i = 0; i < children.length; i++) { var childNode = layoutInfo.layoutNodes[layoutInfo.idToIndex[children[i]]]; // Propagate offset childNode.offsetX += offX; childNode.offsetY += offY; // Add children to queue to be visited queue[++end] = children[i]; } // Reset parent offsets node.offsetX = 0; node.offsetY = 0; } } }; /** * @brief : Updates the layout model positions, based on * the accumulated forces */ var updatePositions = function updatePositions(layoutInfo, options) { // var s = 'Updating positions'; // logDebug(s); // Reset boundaries for compound nodes for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = layoutInfo.layoutNodes[i]; if (0 < n.children.length) { // logDebug("Resetting boundaries of compound node: " + n.id); n.maxX = undefined; n.minX = undefined; n.maxY = undefined; n.minY = undefined; } } for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = layoutInfo.layoutNodes[i]; if (0 < n.children.length || n.isLocked) { // No need to set compound or locked node position // logDebug("Skipping position update of node: " + n.id); continue; } // s = "Node: " + n.id + " Previous position: (" + // n.positionX + ", " + n.positionY + ")."; // Limit displacement in order to improve stability var tempForce = limitForce(n.offsetX, n.offsetY, layoutInfo.temperature); n.positionX += tempForce.x; n.positionY += tempForce.y; n.offsetX = 0; n.offsetY = 0; n.minX = n.positionX - n.width; n.maxX = n.positionX + n.width; n.minY = n.positionY - n.height; n.maxY = n.positionY + n.height; // s += " New Position: (" + n.positionX + ", " + n.positionY + ")."; // logDebug(s); // Update ancestry boudaries updateAncestryBoundaries(n, layoutInfo); } // Update size, position of compund nodes for (var i = 0; i < layoutInfo.nodeSize; i++) { var n = layoutInfo.layoutNodes[i]; if (0 < n.children.length && !n.isLocked) { n.positionX = (n.maxX + n.minX) / 2; n.positionY = (n.maxY + n.minY) / 2; n.width = n.maxX - n.minX; n.height = n.maxY - n.minY; // s = "Updating position, size of compound node " + n.id; // s += "\nPositionX: " + n.positionX + ", PositionY: " + n.positionY; // s += "\nWidth: " + n.width + ", Height: " + n.height; // logDebug(s); } } }; /** * @brief : Limits a force (forceX, forceY) to be not * greater (in modulo) than max. 8 Preserves force direction. */ var limitForce = function limitForce(forceX, forceY, max) { // var s = "Limiting force: (" + forceX + ", " + forceY + "). Max: " + max; var force = Math.sqrt(forceX * forceX + forceY * forceY); if (force > max) { var res = { x: max * forceX / force, y: max * forceY / force }; } else { var res = { x: forceX, y: forceY }; } // s += ".\nResult: (" + res.x + ", " + res.y + ")"; // logDebug(s); return res; }; /** * @brief : Function used for keeping track of compound node * sizes, since they should bound all their subnodes. */ var updateAncestryBoundaries = function updateAncestryBoundaries(node, layoutInfo) { // var s = "Propagating new position/size of node " + node.id; var parentId = node.parentId; if (null == parentId) { // If there's no parent, we are done // s += ". No parent node."; // logDebug(s); return; } // Get Parent Node var p = layoutInfo.layoutNodes[layoutInfo.idToIndex[parentId]]; var flag = false; // MaxX if (null == p.maxX || node.maxX + p.padRight > p.maxX) { p.maxX = node.maxX + p.padRight; flag = true; // s += "\nNew maxX for parent node " + p.id + ": " + p.maxX; } // MinX if (null == p.minX || node.minX - p.padLeft < p.minX) { p.minX = node.minX - p.padLeft; flag = true; // s += "\nNew minX for parent node " + p.id + ": " + p.minX; } // MaxY if (null == p.maxY || node.maxY + p.padBottom > p.maxY) { p.maxY = node.maxY + p.padBottom; flag = true; // s += "\nNew maxY for parent node " + p.id + ": " + p.maxY; } // MinY if (null == p.minY || node.minY - p.padTop < p.minY) { p.minY = node.minY - p.padTop; flag = true; // s += "\nNew minY for parent node " + p.id + ": " + p.minY; } // If updated boundaries, propagate changes upward if (flag) { // logDebug(s); return updateAncestryBoundaries(p, layoutInfo); } // s += ". No changes in boundaries/position of parent node " + p.id; // logDebug(s); return; }; var separateComponents = function separateComponents(layoutInfo, options) { var nodes = layoutInfo.layoutNodes; var components = []; for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; var cid = node.cmptId; var component = components[cid] = components[cid] || []; component.push(node); } var totalA = 0; for (var i = 0; i < components.length; i++) { var c = components[i]; if (!c) { continue; } c.x1 = Infinity; c.x2 = -Infinity; c.y1 = Infinity; c.y2 = -Infinity; for (var j = 0; j < c.length; j++) { var n = c[j]; c.x1 = Math.min(c.x1, n.positionX - n.width / 2); c.x2 = Math.max(c.x2, n.positionX + n.width / 2); c.y1 = Math.min(c.y1, n.positionY - n.height / 2); c.y2 = Math.max(c.y2, n.positionY + n.height / 2); } c.w = c.x2 - c.x1; c.h = c.y2 - c.y1; totalA += c.w * c.h; } components.sort(function (c1, c2) { return c2.w * c2.h - c1.w * c1.h; }); var x = 0; var y = 0; var usedW = 0; var rowH = 0; var maxRowW = Math.sqrt(totalA) * layoutInfo.clientWidth / layoutInfo.clientHeight; for (var i = 0; i < components.length; i++) { var c = components[i]; if (!c) { continue; } for (var j = 0; j < c.length; j++) { var n = c[j]; if (!n.isLocked) { n.positionX += x - c.x1; n.positionY += y - c.y1; } } x += c.w + options.componentSpacing; usedW += c.w + options.componentSpacing; rowH = Math.max(rowH, c.h); if (usedW > maxRowW) { y += rowH + options.componentSpacing; x = 0; usedW = 0; rowH = 0; } } }; var defaults$3 = { fit: true, // whether to fit the viewport to the graph padding: 30, // padding used on fit boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } avoidOverlap: true, // prevents node overlap, may overflow boundingBox if not enough space avoidOverlapPadding: 10, // extra spacing around nodes when avoidOverlap: true nodeDimensionsIncludeLabels: false, // Excludes the label when calculating node bounding boxes for the layout algorithm spacingFactor: undefined, // Applies a multiplicative factor (>0) to expand or compress the overall area that the nodes take up condense: false, // uses all available space on false, uses minimal space on true rows: undefined, // force num of rows in the grid cols: undefined, // force num of columns in the grid position: function position(node) {}, // returns { row, col } for element sort: undefined, // a sorting function to order the nodes; e.g. function(a, b){ return a.data('weight') - b.data('weight') } animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function GridLayout(options) { this.options = extend({}, defaults$3, options); } GridLayout.prototype.run = function () { var params = this.options; var options = params; var cy = params.cy; var eles = options.eles; var nodes = eles.nodes().not(':parent'); if (options.sort) { nodes = nodes.sort(options.sort); } var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); if (bb.h === 0 || bb.w === 0) { eles.nodes().layoutPositions(this, options, function (ele) { return { x: bb.x1, y: bb.y1 }; }); } else { // width/height * splits^2 = cells where splits is number of times to split width var cells = nodes.size(); var splits = Math.sqrt(cells * bb.h / bb.w); var rows = Math.round(splits); var cols = Math.round(bb.w / bb.h * splits); var small = function small(val) { if (val == null) { return Math.min(rows, cols); } else { var min = Math.min(rows, cols); if (min == rows) { rows = val; } else { cols = val; } } }; var large = function large(val) { if (val == null) { return Math.max(rows, cols); } else { var max = Math.max(rows, cols); if (max == rows) { rows = val; } else { cols = val; } } }; var oRows = options.rows; var oCols = options.cols != null ? options.cols : options.columns; // if rows or columns were set in options, use those values if (oRows != null && oCols != null) { rows = oRows; cols = oCols; } else if (oRows != null && oCols == null) { rows = oRows; cols = Math.ceil(cells / rows); } else if (oRows == null && oCols != null) { cols = oCols; rows = Math.ceil(cells / cols); } // otherwise use the automatic values and adjust accordingly // if rounding was up, see if we can reduce rows or columns else if (cols * rows > cells) { var sm = small(); var lg = large(); // reducing the small side takes away the most cells, so try it first if ((sm - 1) * lg >= cells) { small(sm - 1); } else if ((lg - 1) * sm >= cells) { large(lg - 1); } } else { // if rounding was too low, add rows or columns while (cols * rows < cells) { var _sm = small(); var _lg = large(); // try to add to larger side first (adds less in multiplication) if ((_lg + 1) * _sm >= cells) { large(_lg + 1); } else { small(_sm + 1); } } } var cellWidth = bb.w / cols; var cellHeight = bb.h / rows; if (options.condense) { cellWidth = 0; cellHeight = 0; } if (options.avoidOverlap) { for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; var pos = node._private.position; if (pos.x == null || pos.y == null) { // for bb pos.x = 0; pos.y = 0; } var nbb = node.layoutDimensions(options); var p = options.avoidOverlapPadding; var w = nbb.w + p; var h = nbb.h + p; cellWidth = Math.max(cellWidth, w); cellHeight = Math.max(cellHeight, h); } } var cellUsed = {}; // e.g. 'c-0-2' => true var used = function used(row, col) { return cellUsed['c-' + row + '-' + col] ? true : false; }; var use = function use(row, col) { cellUsed['c-' + row + '-' + col] = true; }; // to keep track of current cell position var row = 0; var col = 0; var moveToNextCell = function moveToNextCell() { col++; if (col >= cols) { col = 0; row++; } }; // get a cache of all the manual positions var id2manPos = {}; for (var _i = 0; _i < nodes.length; _i++) { var _node = nodes[_i]; var rcPos = options.position(_node); if (rcPos && (rcPos.row !== undefined || rcPos.col !== undefined)) { // must have at least row or col def'd var _pos = { row: rcPos.row, col: rcPos.col }; if (_pos.col === undefined) { // find unused col _pos.col = 0; while (used(_pos.row, _pos.col)) { _pos.col++; } } else if (_pos.row === undefined) { // find unused row _pos.row = 0; while (used(_pos.row, _pos.col)) { _pos.row++; } } id2manPos[_node.id()] = _pos; use(_pos.row, _pos.col); } } var getPos = function getPos(element, i) { var x, y; if (element.locked() || element.isParent()) { return false; } // see if we have a manual position set var rcPos = id2manPos[element.id()]; if (rcPos) { x = rcPos.col * cellWidth + cellWidth / 2 + bb.x1; y = rcPos.row * cellHeight + cellHeight / 2 + bb.y1; } else { // otherwise set automatically while (used(row, col)) { moveToNextCell(); } x = col * cellWidth + cellWidth / 2 + bb.x1; y = row * cellHeight + cellHeight / 2 + bb.y1; use(row, col); moveToNextCell(); } return { x: x, y: y }; }; nodes.layoutPositions(this, options, getPos); } return this; // chaining }; // default layout options var defaults$2 = { ready: function ready() {}, // on layoutready stop: function stop() {} // on layoutstop }; // constructor // options : object containing layout options function NullLayout(options) { this.options = extend({}, defaults$2, options); } // runs the layout NullLayout.prototype.run = function () { var options = this.options; var eles = options.eles; // elements to consider in the layout var layout = this; // cy is automatically populated for us in the constructor // (disable eslint for next line as this serves as example layout code to external developers) // eslint-disable-next-line no-unused-vars options.cy; layout.emit('layoutstart'); // puts all nodes at (0, 0) // n.b. most layouts would use layoutPositions(), instead of positions() and manual events eles.nodes().positions(function () { return { x: 0, y: 0 }; }); // trigger layoutready when each node has had its position set at least once layout.one('layoutready', options.ready); layout.emit('layoutready'); // trigger layoutstop when the layout stops (e.g. finishes) layout.one('layoutstop', options.stop); layout.emit('layoutstop'); return this; // chaining }; // called on continuous layouts to stop them before they finish NullLayout.prototype.stop = function () { return this; // chaining }; var defaults$1 = { positions: undefined, // map of (node id) => (position obj); or function(node){ return somPos; } zoom: undefined, // the zoom level to set (prob want fit = false if set) pan: undefined, // the pan level to set (prob want fit = false if set) fit: true, // whether to fit to viewport padding: 30, // padding on fit spacingFactor: undefined, // Applies a multiplicative factor (>0) to expand or compress the overall area that the nodes take up animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function PresetLayout(options) { this.options = extend({}, defaults$1, options); } PresetLayout.prototype.run = function () { var options = this.options; var eles = options.eles; var nodes = eles.nodes(); var posIsFn = fn$6(options.positions); function getPosition(node) { if (options.positions == null) { return copyPosition(node.position()); } if (posIsFn) { return options.positions(node); } var pos = options.positions[node._private.data.id]; if (pos == null) { return null; } return pos; } nodes.layoutPositions(this, options, function (node, i) { var position = getPosition(node); if (node.locked() || position == null) { return false; } return position; }); return this; // chaining }; var defaults = { fit: true, // whether to fit to viewport padding: 30, // fit padding boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function animateFilter(node, i) { return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function transform(node, position) { return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function RandomLayout(options) { this.options = extend({}, defaults, options); } RandomLayout.prototype.run = function () { var options = this.options; var cy = options.cy; var eles = options.eles; var bb = makeBoundingBox(options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() }); var getPos = function getPos(node, i) { return { x: bb.x1 + Math.round(Math.random() * bb.w), y: bb.y1 + Math.round(Math.random() * bb.h) }; }; eles.nodes().layoutPositions(this, options, getPos); return this; // chaining }; var layout = [{ name: 'breadthfirst', impl: BreadthFirstLayout }, { name: 'circle', impl: CircleLayout }, { name: 'concentric', impl: ConcentricLayout }, { name: 'cose', impl: CoseLayout }, { name: 'grid', impl: GridLayout }, { name: 'null', impl: NullLayout }, { name: 'preset', impl: PresetLayout }, { name: 'random', impl: RandomLayout }]; function NullRenderer(options) { this.options = options; this.notifications = 0; // for testing } var noop = function noop() {}; var throwImgErr = function throwImgErr() { throw new Error('A headless instance can not render images'); }; NullRenderer.prototype = { recalculateRenderedStyle: noop, notify: function notify() { this.notifications++; }, init: noop, isHeadless: function isHeadless() { return true; }, png: throwImgErr, jpg: throwImgErr }; var BRp$f = {}; BRp$f.arrowShapeWidth = 0.3; BRp$f.registerArrowShapes = function () { var arrowShapes = this.arrowShapes = {}; var renderer = this; // Contract for arrow shapes: // 0, 0 is arrow tip // (0, 1) is direction towards node // (1, 0) is right // // functional api: // collide: check x, y in shape // roughCollide: called before collide, no false negatives // draw: draw // spacing: dist(arrowTip, nodeBoundary) // gap: dist(edgeTip, nodeBoundary), edgeTip may != arrowTip var bbCollide = function bbCollide(x, y, size, angle, translation, edgeWidth, padding) { var x1 = translation.x - size / 2 - padding; var x2 = translation.x + size / 2 + padding; var y1 = translation.y - size / 2 - padding; var y2 = translation.y + size / 2 + padding; var inside = x1 <= x && x <= x2 && y1 <= y && y <= y2; return inside; }; var transform = function transform(x, y, size, angle, translation) { var xRotated = x * Math.cos(angle) - y * Math.sin(angle); var yRotated = x * Math.sin(angle) + y * Math.cos(angle); var xScaled = xRotated * size; var yScaled = yRotated * size; var xTranslated = xScaled + translation.x; var yTranslated = yScaled + translation.y; return { x: xTranslated, y: yTranslated }; }; var transformPoints = function transformPoints(pts, size, angle, translation) { var retPts = []; for (var i = 0; i < pts.length; i += 2) { var x = pts[i]; var y = pts[i + 1]; retPts.push(transform(x, y, size, angle, translation)); } return retPts; }; var pointsToArr = function pointsToArr(pts) { var ret = []; for (var i = 0; i < pts.length; i++) { var p = pts[i]; ret.push(p.x, p.y); } return ret; }; var standardGap = function standardGap(edge) { return edge.pstyle('width').pfValue * edge.pstyle('arrow-scale').pfValue * 2; }; var defineArrowShape = function defineArrowShape(name, defn) { if (string(defn)) { defn = arrowShapes[defn]; } arrowShapes[name] = extend({ name: name, points: [-0.15, -0.3, 0.15, -0.3, 0.15, 0.3, -0.15, 0.3], collide: function collide(x, y, size, angle, translation, padding) { var points = pointsToArr(transformPoints(this.points, size + 2 * padding, angle, translation)); var inside = pointInsidePolygonPoints(x, y, points); return inside; }, roughCollide: bbCollide, draw: function draw(context, size, angle, translation) { var points = transformPoints(this.points, size, angle, translation); renderer.arrowShapeImpl('polygon')(context, points); }, spacing: function spacing(edge) { return 0; }, gap: standardGap }, defn); }; defineArrowShape('none', { collide: falsify, roughCollide: falsify, draw: noop$1, spacing: zeroify, gap: zeroify }); defineArrowShape('triangle', { points: [-0.15, -0.3, 0, 0, 0.15, -0.3] }); defineArrowShape('arrow', 'triangle'); defineArrowShape('triangle-backcurve', { points: arrowShapes['triangle'].points, controlPoint: [0, -0.15], roughCollide: bbCollide, draw: function draw(context, size, angle, translation, edgeWidth) { var ptsTrans = transformPoints(this.points, size, angle, translation); var ctrlPt = this.controlPoint; var ctrlPtTrans = transform(ctrlPt[0], ctrlPt[1], size, angle, translation); renderer.arrowShapeImpl(this.name)(context, ptsTrans, ctrlPtTrans); }, gap: function gap(edge) { return standardGap(edge) * 0.8; } }); defineArrowShape('triangle-tee', { points: [0, 0, 0.15, -0.3, -0.15, -0.3, 0, 0], pointsTee: [-0.15, -0.4, -0.15, -0.5, 0.15, -0.5, 0.15, -0.4], collide: function collide(x, y, size, angle, translation, edgeWidth, padding) { var triPts = pointsToArr(transformPoints(this.points, size + 2 * padding, angle, translation)); var teePts = pointsToArr(transformPoints(this.pointsTee, size + 2 * padding, angle, translation)); var inside = pointInsidePolygonPoints(x, y, triPts) || pointInsidePolygonPoints(x, y, teePts); return inside; }, draw: function draw(context, size, angle, translation, edgeWidth) { var triPts = transformPoints(this.points, size, angle, translation); var teePts = transformPoints(this.pointsTee, size, angle, translation); renderer.arrowShapeImpl(this.name)(context, triPts, teePts); } }); defineArrowShape('circle-triangle', { radius: 0.15, pointsTr: [0, -0.15, 0.15, -0.45, -0.15, -0.45, 0, -0.15], collide: function collide(x, y, size, angle, translation, edgeWidth, padding) { var t = translation; var circleInside = Math.pow(t.x - x, 2) + Math.pow(t.y - y, 2) <= Math.pow((size + 2 * padding) * this.radius, 2); var triPts = pointsToArr(transformPoints(this.points, size + 2 * padding, angle, translation)); return pointInsidePolygonPoints(x, y, triPts) || circleInside; }, draw: function draw(context, size, angle, translation, edgeWidth) { var triPts = transformPoints(this.pointsTr, size, angle, translation); renderer.arrowShapeImpl(this.name)(context, triPts, translation.x, translation.y, this.radius * size); }, spacing: function spacing(edge) { return renderer.getArrowWidth(edge.pstyle('width').pfValue, edge.pstyle('arrow-scale').value) * this.radius; } }); defineArrowShape('triangle-cross', { points: [0, 0, 0.15, -0.3, -0.15, -0.3, 0, 0], baseCrossLinePts: [-0.15, -0.4, // first half of the rectangle -0.15, -0.4, 0.15, -0.4, // second half of the rectangle 0.15, -0.4], crossLinePts: function crossLinePts(size, edgeWidth) { // shift points so that the distance between the cross points matches edge width var p = this.baseCrossLinePts.slice(); var shiftFactor = edgeWidth / size; var y0 = 3; var y1 = 5; p[y0] = p[y0] - shiftFactor; p[y1] = p[y1] - shiftFactor; return p; }, collide: function collide(x, y, size, angle, translation, edgeWidth, padding) { var triPts = pointsToArr(transformPoints(this.points, size + 2 * padding, angle, translation)); var teePts = pointsToArr(transformPoints(this.crossLinePts(size, edgeWidth), size + 2 * padding, angle, translation)); var inside = pointInsidePolygonPoints(x, y, triPts) || pointInsidePolygonPoints(x, y, teePts); return inside; }, draw: function draw(context, size, angle, translation, edgeWidth) { var triPts = transformPoints(this.points, size, angle, translation); var crossLinePts = transformPoints(this.crossLinePts(size, edgeWidth), size, angle, translation); renderer.arrowShapeImpl(this.name)(context, triPts, crossLinePts); } }); defineArrowShape('vee', { points: [-0.15, -0.3, 0, 0, 0.15, -0.3, 0, -0.15], gap: function gap(edge) { return standardGap(edge) * 0.525; } }); defineArrowShape('circle', { radius: 0.15, collide: function collide(x, y, size, angle, translation, edgeWidth, padding) { var t = translation; var inside = Math.pow(t.x - x, 2) + Math.pow(t.y - y, 2) <= Math.pow((size + 2 * padding) * this.radius, 2); return inside; }, draw: function draw(context, size, angle, translation, edgeWidth) { renderer.arrowShapeImpl(this.name)(context, translation.x, translation.y, this.radius * size); }, spacing: function spacing(edge) { return renderer.getArrowWidth(edge.pstyle('width').pfValue, edge.pstyle('arrow-scale').value) * this.radius; } }); defineArrowShape('tee', { points: [-0.15, 0, -0.15, -0.1, 0.15, -0.1, 0.15, 0], spacing: function spacing(edge) { return 1; }, gap: function gap(edge) { return 1; } }); defineArrowShape('square', { points: [-0.15, 0.00, 0.15, 0.00, 0.15, -0.3, -0.15, -0.3] }); defineArrowShape('diamond', { points: [-0.15, -0.15, 0, -0.3, 0.15, -0.15, 0, 0], gap: function gap(edge) { return edge.pstyle('width').pfValue * edge.pstyle('arrow-scale').value; } }); defineArrowShape('chevron', { points: [0, 0, -0.15, -0.15, -0.1, -0.2, 0, -0.1, 0.1, -0.2, 0.15, -0.15], gap: function gap(edge) { return 0.95 * edge.pstyle('width').pfValue * edge.pstyle('arrow-scale').value; } }); }; var BRp$e = {}; // Project mouse BRp$e.projectIntoViewport = function (clientX, clientY) { var cy = this.cy; var offsets = this.findContainerClientCoords(); var offsetLeft = offsets[0]; var offsetTop = offsets[1]; var scale = offsets[4]; var pan = cy.pan(); var zoom = cy.zoom(); var x = ((clientX - offsetLeft) / scale - pan.x) / zoom; var y = ((clientY - offsetTop) / scale - pan.y) / zoom; return [x, y]; }; BRp$e.findContainerClientCoords = function () { if (this.containerBB) { return this.containerBB; } var container = this.container; var rect = container.getBoundingClientRect(); var style = this.cy.window().getComputedStyle(container); var styleValue = function styleValue(name) { return parseFloat(style.getPropertyValue(name)); }; var padding = { left: styleValue('padding-left'), right: styleValue('padding-right'), top: styleValue('padding-top'), bottom: styleValue('padding-bottom') }; var border = { left: styleValue('border-left-width'), right: styleValue('border-right-width'), top: styleValue('border-top-width'), bottom: styleValue('border-bottom-width') }; var clientWidth = container.clientWidth; var clientHeight = container.clientHeight; var paddingHor = padding.left + padding.right; var paddingVer = padding.top + padding.bottom; var borderHor = border.left + border.right; var scale = rect.width / (clientWidth + borderHor); var unscaledW = clientWidth - paddingHor; var unscaledH = clientHeight - paddingVer; var left = rect.left + padding.left + border.left; var top = rect.top + padding.top + border.top; return this.containerBB = [left, top, unscaledW, unscaledH, scale]; }; BRp$e.invalidateContainerClientCoordsCache = function () { this.containerBB = null; }; BRp$e.findNearestElement = function (x, y, interactiveElementsOnly, isTouch) { return this.findNearestElements(x, y, interactiveElementsOnly, isTouch)[0]; }; BRp$e.findNearestElements = function (x, y, interactiveElementsOnly, isTouch) { var self = this; var r = this; var eles = r.getCachedZSortedEles(); var near = []; // 1 node max, 1 edge max var zoom = r.cy.zoom(); var hasCompounds = r.cy.hasCompoundNodes(); var edgeThreshold = (isTouch ? 24 : 8) / zoom; var nodeThreshold = (isTouch ? 8 : 2) / zoom; var labelThreshold = (isTouch ? 8 : 2) / zoom; var minSqDist = Infinity; var nearEdge; var nearNode; if (interactiveElementsOnly) { eles = eles.interactive; } function addEle(ele, sqDist) { if (ele.isNode()) { if (nearNode) { return; // can't replace node } else { nearNode = ele; near.push(ele); } } if (ele.isEdge() && (sqDist == null || sqDist < minSqDist)) { if (nearEdge) { // then replace existing edge // can replace only if same z-index if (nearEdge.pstyle('z-compound-depth').value === ele.pstyle('z-compound-depth').value && nearEdge.pstyle('z-compound-depth').value === ele.pstyle('z-compound-depth').value) { for (var i = 0; i < near.length; i++) { if (near[i].isEdge()) { near[i] = ele; nearEdge = ele; minSqDist = sqDist != null ? sqDist : minSqDist; break; } } } } else { near.push(ele); nearEdge = ele; minSqDist = sqDist != null ? sqDist : minSqDist; } } } function checkNode(node) { var width = node.outerWidth() + 2 * nodeThreshold; var height = node.outerHeight() + 2 * nodeThreshold; var hw = width / 2; var hh = height / 2; var pos = node.position(); var cornerRadius = node.pstyle('corner-radius').value === 'auto' ? 'auto' : node.pstyle('corner-radius').pfValue; var rs = node._private.rscratch; if (pos.x - hw <= x && x <= pos.x + hw // bb check x && pos.y - hh <= y && y <= pos.y + hh // bb check y ) { var shape = r.nodeShapes[self.getNodeShape(node)]; if (shape.checkPoint(x, y, 0, width, height, pos.x, pos.y, cornerRadius, rs)) { addEle(node, 0); return true; } } } function checkEdge(edge) { var _p = edge._private; var rs = _p.rscratch; var styleWidth = edge.pstyle('width').pfValue; var scale = edge.pstyle('arrow-scale').value; var width = styleWidth / 2 + edgeThreshold; // more like a distance radius from centre var widthSq = width * width; var width2 = width * 2; var src = _p.source; var tgt = _p.target; var sqDist; if (rs.edgeType === 'segments' || rs.edgeType === 'straight' || rs.edgeType === 'haystack') { var pts = rs.allpts; for (var i = 0; i + 3 < pts.length; i += 2) { if (inLineVicinity(x, y, pts[i], pts[i + 1], pts[i + 2], pts[i + 3], width2) && widthSq > (sqDist = sqdistToFiniteLine(x, y, pts[i], pts[i + 1], pts[i + 2], pts[i + 3]))) { addEle(edge, sqDist); return true; } } } else if (rs.edgeType === 'bezier' || rs.edgeType === 'multibezier' || rs.edgeType === 'self' || rs.edgeType === 'compound') { var pts = rs.allpts; for (var i = 0; i + 5 < rs.allpts.length; i += 4) { if (inBezierVicinity(x, y, pts[i], pts[i + 1], pts[i + 2], pts[i + 3], pts[i + 4], pts[i + 5], width2) && widthSq > (sqDist = sqdistToQuadraticBezier(x, y, pts[i], pts[i + 1], pts[i + 2], pts[i + 3], pts[i + 4], pts[i + 5]))) { addEle(edge, sqDist); return true; } } } // if we're close to the edge but didn't hit it, maybe we hit its arrows var src = src || _p.source; var tgt = tgt || _p.target; var arSize = self.getArrowWidth(styleWidth, scale); var arrows = [{ name: 'source', x: rs.arrowStartX, y: rs.arrowStartY, angle: rs.srcArrowAngle }, { name: 'target', x: rs.arrowEndX, y: rs.arrowEndY, angle: rs.tgtArrowAngle }, { name: 'mid-source', x: rs.midX, y: rs.midY, angle: rs.midsrcArrowAngle }, { name: 'mid-target', x: rs.midX, y: rs.midY, angle: rs.midtgtArrowAngle }]; for (var i = 0; i < arrows.length; i++) { var ar = arrows[i]; var shape = r.arrowShapes[edge.pstyle(ar.name + '-arrow-shape').value]; var edgeWidth = edge.pstyle('width').pfValue; if (shape.roughCollide(x, y, arSize, ar.angle, { x: ar.x, y: ar.y }, edgeWidth, edgeThreshold) && shape.collide(x, y, arSize, ar.angle, { x: ar.x, y: ar.y }, edgeWidth, edgeThreshold)) { addEle(edge); return true; } } // for compound graphs, hitting edge may actually want a connected node instead (b/c edge may have greater z-index precedence) if (hasCompounds && near.length > 0) { checkNode(src); checkNode(tgt); } } function preprop(obj, name, pre) { return getPrefixedProperty(obj, name, pre); } function checkLabel(ele, prefix) { var _p = ele._private; var th = labelThreshold; var prefixDash; if (prefix) { prefixDash = prefix + '-'; } else { prefixDash = ''; } ele.boundingBox(); var bb = _p.labelBounds[prefix || 'main']; var text = ele.pstyle(prefixDash + 'label').value; var eventsEnabled = ele.pstyle('text-events').strValue === 'yes'; if (!eventsEnabled || !text) { return; } var lx = preprop(_p.rscratch, 'labelX', prefix); var ly = preprop(_p.rscratch, 'labelY', prefix); var theta = preprop(_p.rscratch, 'labelAngle', prefix); var ox = ele.pstyle(prefixDash + 'text-margin-x').pfValue; var oy = ele.pstyle(prefixDash + 'text-margin-y').pfValue; var lx1 = bb.x1 - th - ox; // (-ox, -oy) as bb already includes margin var lx2 = bb.x2 + th - ox; // and rotation is about (lx, ly) var ly1 = bb.y1 - th - oy; var ly2 = bb.y2 + th - oy; if (theta) { var cos = Math.cos(theta); var sin = Math.sin(theta); var rotate = function rotate(x, y) { x = x - lx; y = y - ly; return { x: x * cos - y * sin + lx, y: x * sin + y * cos + ly }; }; var px1y1 = rotate(lx1, ly1); var px1y2 = rotate(lx1, ly2); var px2y1 = rotate(lx2, ly1); var px2y2 = rotate(lx2, ly2); var points = [ // with the margin added after the rotation is applied px1y1.x + ox, px1y1.y + oy, px2y1.x + ox, px2y1.y + oy, px2y2.x + ox, px2y2.y + oy, px1y2.x + ox, px1y2.y + oy]; if (pointInsidePolygonPoints(x, y, points)) { addEle(ele); return true; } } else { // do a cheaper bb check if (inBoundingBox(bb, x, y)) { addEle(ele); return true; } } } for (var i = eles.length - 1; i >= 0; i--) { // reverse order for precedence var ele = eles[i]; if (ele.isNode()) { checkNode(ele) || checkLabel(ele); } else { // then edge checkEdge(ele) || checkLabel(ele) || checkLabel(ele, 'source') || checkLabel(ele, 'target'); } } return near; }; // 'Give me everything from this box' BRp$e.getAllInBox = function (x1, y1, x2, y2) { var eles = this.getCachedZSortedEles().interactive; var box = []; var x1c = Math.min(x1, x2); var x2c = Math.max(x1, x2); var y1c = Math.min(y1, y2); var y2c = Math.max(y1, y2); x1 = x1c; x2 = x2c; y1 = y1c; y2 = y2c; var boxBb = makeBoundingBox({ x1: x1, y1: y1, x2: x2, y2: y2 }); for (var e = 0; e < eles.length; e++) { var ele = eles[e]; if (ele.isNode()) { var node = ele; var nodeBb = node.boundingBox({ includeNodes: true, includeEdges: false, includeLabels: false }); if (boundingBoxesIntersect(boxBb, nodeBb) && !boundingBoxInBoundingBox(nodeBb, boxBb)) { box.push(node); } } else { var edge = ele; var _p = edge._private; var rs = _p.rscratch; if (rs.startX != null && rs.startY != null && !inBoundingBox(boxBb, rs.startX, rs.startY)) { continue; } if (rs.endX != null && rs.endY != null && !inBoundingBox(boxBb, rs.endX, rs.endY)) { continue; } if (rs.edgeType === 'bezier' || rs.edgeType === 'multibezier' || rs.edgeType === 'self' || rs.edgeType === 'compound' || rs.edgeType === 'segments' || rs.edgeType === 'haystack') { var pts = _p.rstyle.bezierPts || _p.rstyle.linePts || _p.rstyle.haystackPts; var allInside = true; for (var i = 0; i < pts.length; i++) { if (!pointInBoundingBox(boxBb, pts[i])) { allInside = false; break; } } if (allInside) { box.push(edge); } } else if (rs.edgeType === 'haystack' || rs.edgeType === 'straight') { box.push(edge); } } } return box; }; var BRp$d = {}; BRp$d.calculateArrowAngles = function (edge) { var rs = edge._private.rscratch; var isHaystack = rs.edgeType === 'haystack'; var isBezier = rs.edgeType === 'bezier'; var isMultibezier = rs.edgeType === 'multibezier'; var isSegments = rs.edgeType === 'segments'; var isCompound = rs.edgeType === 'compound'; var isSelf = rs.edgeType === 'self'; // Displacement gives direction for arrowhead orientation var dispX, dispY; var startX, startY, endX, endY, midX, midY; if (isHaystack) { startX = rs.haystackPts[0]; startY = rs.haystackPts[1]; endX = rs.haystackPts[2]; endY = rs.haystackPts[3]; } else { startX = rs.arrowStartX; startY = rs.arrowStartY; endX = rs.arrowEndX; endY = rs.arrowEndY; } midX = rs.midX; midY = rs.midY; // source // if (isSegments) { dispX = startX - rs.segpts[0]; dispY = startY - rs.segpts[1]; } else if (isMultibezier || isCompound || isSelf || isBezier) { var pts = rs.allpts; var bX = qbezierAt(pts[0], pts[2], pts[4], 0.1); var bY = qbezierAt(pts[1], pts[3], pts[5], 0.1); dispX = startX - bX; dispY = startY - bY; } else { dispX = startX - midX; dispY = startY - midY; } rs.srcArrowAngle = getAngleFromDisp(dispX, dispY); // mid target // var midX = rs.midX; var midY = rs.midY; if (isHaystack) { midX = (startX + endX) / 2; midY = (startY + endY) / 2; } dispX = endX - startX; dispY = endY - startY; if (isSegments) { var pts = rs.allpts; if (pts.length / 2 % 2 === 0) { var i2 = pts.length / 2; var i1 = i2 - 2; dispX = pts[i2] - pts[i1]; dispY = pts[i2 + 1] - pts[i1 + 1]; } else if (rs.isRound) { dispX = rs.midVector[1]; dispY = -rs.midVector[0]; } else { var i2 = pts.length / 2 - 1; var i1 = i2 - 2; dispX = pts[i2] - pts[i1]; dispY = pts[i2 + 1] - pts[i1 + 1]; } } else if (isMultibezier || isCompound || isSelf) { var pts = rs.allpts; var cpts = rs.ctrlpts; var bp0x, bp0y; var bp1x, bp1y; if (cpts.length / 2 % 2 === 0) { var p0 = pts.length / 2 - 1; // startpt var ic = p0 + 2; var p1 = ic + 2; bp0x = qbezierAt(pts[p0], pts[ic], pts[p1], 0.0); bp0y = qbezierAt(pts[p0 + 1], pts[ic + 1], pts[p1 + 1], 0.0); bp1x = qbezierAt(pts[p0], pts[ic], pts[p1], 0.0001); bp1y = qbezierAt(pts[p0 + 1], pts[ic + 1], pts[p1 + 1], 0.0001); } else { var ic = pts.length / 2 - 1; // ctrpt var p0 = ic - 2; // startpt var p1 = ic + 2; // endpt bp0x = qbezierAt(pts[p0], pts[ic], pts[p1], 0.4999); bp0y = qbezierAt(pts[p0 + 1], pts[ic + 1], pts[p1 + 1], 0.4999); bp1x = qbezierAt(pts[p0], pts[ic], pts[p1], 0.5); bp1y = qbezierAt(pts[p0 + 1], pts[ic + 1], pts[p1 + 1], 0.5); } dispX = bp1x - bp0x; dispY = bp1y - bp0y; } rs.midtgtArrowAngle = getAngleFromDisp(dispX, dispY); rs.midDispX = dispX; rs.midDispY = dispY; // mid source // dispX *= -1; dispY *= -1; if (isSegments) { var pts = rs.allpts; if (pts.length / 2 % 2 === 0) ; else if (!rs.isRound) { var i2 = pts.length / 2 - 1; var i3 = i2 + 2; dispX = -(pts[i3] - pts[i2]); dispY = -(pts[i3 + 1] - pts[i2 + 1]); } } rs.midsrcArrowAngle = getAngleFromDisp(dispX, dispY); // target // if (isSegments) { dispX = endX - rs.segpts[rs.segpts.length - 2]; dispY = endY - rs.segpts[rs.segpts.length - 1]; } else if (isMultibezier || isCompound || isSelf || isBezier) { var pts = rs.allpts; var l = pts.length; var bX = qbezierAt(pts[l - 6], pts[l - 4], pts[l - 2], 0.9); var bY = qbezierAt(pts[l - 5], pts[l - 3], pts[l - 1], 0.9); dispX = endX - bX; dispY = endY - bY; } else { dispX = endX - midX; dispY = endY - midY; } rs.tgtArrowAngle = getAngleFromDisp(dispX, dispY); }; BRp$d.getArrowWidth = BRp$d.getArrowHeight = function (edgeWidth, scale) { var cache = this.arrowWidthCache = this.arrowWidthCache || {}; var cachedVal = cache[edgeWidth + ', ' + scale]; if (cachedVal) { return cachedVal; } cachedVal = Math.max(Math.pow(edgeWidth * 13.37, 0.9), 29) * scale; cache[edgeWidth + ', ' + scale] = cachedVal; return cachedVal; }; /** * Explained by Blindman67 at https://stackoverflow.com/a/44856925/11028828 */ // Declare reused variable to avoid reallocating variables every time the function is called var x, y, v1 = {}, v2 = {}, sinA, sinA90, radDirection, drawDirection, angle, halfAngle, cRadius, lenOut, radius, limit; var startX, startY, stopX, stopY; var lastPoint; // convert 2 points into vector form, polar form, and normalised var asVec = function asVec(p, pp, v) { v.x = pp.x - p.x; v.y = pp.y - p.y; v.len = Math.sqrt(v.x * v.x + v.y * v.y); v.nx = v.x / v.len; v.ny = v.y / v.len; v.ang = Math.atan2(v.ny, v.nx); }; var invertVec = function invertVec(originalV, invertedV) { invertedV.x = originalV.x * -1; invertedV.y = originalV.y * -1; invertedV.nx = originalV.nx * -1; invertedV.ny = originalV.ny * -1; invertedV.ang = originalV.ang > 0 ? -(Math.PI - originalV.ang) : Math.PI + originalV.ang; }; var calcCornerArc = function calcCornerArc(previousPoint, currentPoint, nextPoint, radiusMax, isArcRadius) { //----------------------------------------- // Part 1 previousPoint !== lastPoint ? asVec(currentPoint, previousPoint, v1) : invertVec(v2, v1); // Avoid recalculating vec if it is the invert of the last one calculated asVec(currentPoint, nextPoint, v2); sinA = v1.nx * v2.ny - v1.ny * v2.nx; sinA90 = v1.nx * v2.nx - v1.ny * -v2.ny; angle = Math.asin(Math.max(-1, Math.min(1, sinA))); if (Math.abs(angle) < 1e-6) { x = currentPoint.x; y = currentPoint.y; cRadius = radius = 0; return; } //----------------------------------------- radDirection = 1; drawDirection = false; if (sinA90 < 0) { if (angle < 0) { angle = Math.PI + angle; } else { angle = Math.PI - angle; radDirection = -1; drawDirection = true; } } else { if (angle > 0) { radDirection = -1; drawDirection = true; } } if (currentPoint.radius !== undefined) { radius = currentPoint.radius; } else { radius = radiusMax; } //----------------------------------------- // Part 2 halfAngle = angle / 2; //----------------------------------------- limit = Math.min(v1.len / 2, v2.len / 2); if (isArcRadius) { //----------------------------------------- // Part 3 lenOut = Math.abs(Math.cos(halfAngle) * radius / Math.sin(halfAngle)); //----------------------------------------- // Special part A if (lenOut > limit) { lenOut = limit; cRadius = Math.abs(lenOut * Math.sin(halfAngle) / Math.cos(halfAngle)); } else { cRadius = radius; } } else { lenOut = Math.min(limit, radius); cRadius = Math.abs(lenOut * Math.sin(halfAngle) / Math.cos(halfAngle)); } //----------------------------------------- //----------------------------------------- // Part 4 stopX = currentPoint.x + v2.nx * lenOut; stopY = currentPoint.y + v2.ny * lenOut; //----------------------------------------- // Part 5 x = stopX - v2.ny * cRadius * radDirection; y = stopY + v2.nx * cRadius * radDirection; //----------------------------------------- // Additional Part : calculate start point E startX = currentPoint.x + v1.nx * lenOut; startY = currentPoint.y + v1.ny * lenOut; // Save last point to avoid recalculating vector when not needed lastPoint = currentPoint; }; /** * Draw corner provided by {@link getRoundCorner} * * @param ctx :CanvasRenderingContext2D * @param roundCorner {{cx:number, cy:number, radius:number, endAngle: number, startAngle: number, counterClockwise: boolean}} */ function drawPreparedRoundCorner(ctx, roundCorner) { if (roundCorner.radius === 0) ctx.lineTo(roundCorner.cx, roundCorner.cy);else ctx.arc(roundCorner.cx, roundCorner.cy, roundCorner.radius, roundCorner.startAngle, roundCorner.endAngle, roundCorner.counterClockwise); } /** * Get round corner from a point and its previous and next neighbours in a path * * @param previousPoint {{x: number, y:number, radius: number?}} * @param currentPoint {{x: number, y:number, radius: number?}} * @param nextPoint {{x: number, y:number, radius: number?}} * @param radiusMax :number * @param isArcRadius :boolean * @return {{ * cx:number, cy:number, radius:number, * startX:number, startY:number, * stopX:number, stopY: number, * endAngle: number, startAngle: number, counterClockwise: boolean * }} */ function getRoundCorner(previousPoint, currentPoint, nextPoint, radiusMax) { var isArcRadius = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true; if (radiusMax === 0 || currentPoint.radius === 0) return { cx: currentPoint.x, cy: currentPoint.y, radius: 0, startX: currentPoint.x, startY: currentPoint.y, stopX: currentPoint.x, stopY: currentPoint.y, startAngle: undefined, endAngle: undefined, counterClockwise: undefined }; calcCornerArc(previousPoint, currentPoint, nextPoint, radiusMax, isArcRadius); return { cx: x, cy: y, radius: cRadius, startX: startX, startY: startY, stopX: stopX, stopY: stopY, startAngle: v1.ang + Math.PI / 2 * radDirection, endAngle: v2.ang - Math.PI / 2 * radDirection, counterClockwise: drawDirection }; } var BRp$c = {}; BRp$c.findMidptPtsEtc = function (edge, pairInfo) { var posPts = pairInfo.posPts, intersectionPts = pairInfo.intersectionPts, vectorNormInverse = pairInfo.vectorNormInverse; var midptPts; // n.b. assumes all edges in bezier bundle have same endpoints specified var srcManEndpt = edge.pstyle('source-endpoint'); var tgtManEndpt = edge.pstyle('target-endpoint'); var haveManualEndPts = srcManEndpt.units != null && tgtManEndpt.units != null; var recalcVectorNormInverse = function recalcVectorNormInverse(x1, y1, x2, y2) { var dy = y2 - y1; var dx = x2 - x1; var l = Math.sqrt(dx * dx + dy * dy); return { x: -dy / l, y: dx / l }; }; var edgeDistances = edge.pstyle('edge-distances').value; switch (edgeDistances) { case 'node-position': midptPts = posPts; break; case 'intersection': midptPts = intersectionPts; break; case 'endpoints': { if (haveManualEndPts) { var _this$manualEndptToPx = this.manualEndptToPx(edge.source()[0], srcManEndpt), _this$manualEndptToPx2 = _slicedToArray(_this$manualEndptToPx, 2), x1 = _this$manualEndptToPx2[0], y1 = _this$manualEndptToPx2[1]; var _this$manualEndptToPx3 = this.manualEndptToPx(edge.target()[0], tgtManEndpt), _this$manualEndptToPx4 = _slicedToArray(_this$manualEndptToPx3, 2), x2 = _this$manualEndptToPx4[0], y2 = _this$manualEndptToPx4[1]; var endPts = { x1: x1, y1: y1, x2: x2, y2: y2 }; vectorNormInverse = recalcVectorNormInverse(x1, y1, x2, y2); midptPts = endPts; } else { warn("Edge ".concat(edge.id(), " has edge-distances:endpoints specified without manual endpoints specified via source-endpoint and target-endpoint. Falling back on edge-distances:intersection (default).")); midptPts = intersectionPts; // back to default } break; } } return { midptPts: midptPts, vectorNormInverse: vectorNormInverse }; }; BRp$c.findHaystackPoints = function (edges) { for (var i = 0; i < edges.length; i++) { var edge = edges[i]; var _p = edge._private; var rs = _p.rscratch; if (!rs.haystack) { var angle = Math.random() * 2 * Math.PI; rs.source = { x: Math.cos(angle), y: Math.sin(angle) }; angle = Math.random() * 2 * Math.PI; rs.target = { x: Math.cos(angle), y: Math.sin(angle) }; } var src = _p.source; var tgt = _p.target; var srcPos = src.position(); var tgtPos = tgt.position(); var srcW = src.width(); var tgtW = tgt.width(); var srcH = src.height(); var tgtH = tgt.height(); var radius = edge.pstyle('haystack-radius').value; var halfRadius = radius / 2; // b/c have to half width/height rs.haystackPts = rs.allpts = [rs.source.x * srcW * halfRadius + srcPos.x, rs.source.y * srcH * halfRadius + srcPos.y, rs.target.x * tgtW * halfRadius + tgtPos.x, rs.target.y * tgtH * halfRadius + tgtPos.y]; rs.midX = (rs.allpts[0] + rs.allpts[2]) / 2; rs.midY = (rs.allpts[1] + rs.allpts[3]) / 2; // always override as haystack in case set to different type previously rs.edgeType = 'haystack'; rs.haystack = true; this.storeEdgeProjections(edge); this.calculateArrowAngles(edge); this.recalculateEdgeLabelProjections(edge); this.calculateLabelAngles(edge); } }; BRp$c.findSegmentsPoints = function (edge, pairInfo) { // Segments (multiple straight lines) var rs = edge._private.rscratch; var segmentWs = edge.pstyle('segment-weights'); var segmentDs = edge.pstyle('segment-distances'); var segmentRs = edge.pstyle('segment-radii'); var segmentTs = edge.pstyle('radius-type'); var segmentsN = Math.min(segmentWs.pfValue.length, segmentDs.pfValue.length); var lastRadius = segmentRs.pfValue[segmentRs.pfValue.length - 1]; var lastRadiusType = segmentTs.pfValue[segmentTs.pfValue.length - 1]; rs.edgeType = 'segments'; rs.segpts = []; rs.radii = []; rs.isArcRadius = []; for (var s = 0; s < segmentsN; s++) { var w = segmentWs.pfValue[s]; var d = segmentDs.pfValue[s]; var w1 = 1 - w; var w2 = w; var _this$findMidptPtsEtc = this.findMidptPtsEtc(edge, pairInfo), midptPts = _this$findMidptPtsEtc.midptPts, vectorNormInverse = _this$findMidptPtsEtc.vectorNormInverse; var adjustedMidpt = { x: midptPts.x1 * w1 + midptPts.x2 * w2, y: midptPts.y1 * w1 + midptPts.y2 * w2 }; rs.segpts.push(adjustedMidpt.x + vectorNormInverse.x * d, adjustedMidpt.y + vectorNormInverse.y * d); rs.radii.push(segmentRs.pfValue[s] !== undefined ? segmentRs.pfValue[s] : lastRadius); rs.isArcRadius.push((segmentTs.pfValue[s] !== undefined ? segmentTs.pfValue[s] : lastRadiusType) === 'arc-radius'); } }; BRp$c.findLoopPoints = function (edge, pairInfo, i, edgeIsUnbundled) { // Self-edge var rs = edge._private.rscratch; var dirCounts = pairInfo.dirCounts, srcPos = pairInfo.srcPos; var ctrlptDists = edge.pstyle('control-point-distances'); var ctrlptDist = ctrlptDists ? ctrlptDists.pfValue[0] : undefined; var loopDir = edge.pstyle('loop-direction').pfValue; var loopSwp = edge.pstyle('loop-sweep').pfValue; var stepSize = edge.pstyle('control-point-step-size').pfValue; rs.edgeType = 'self'; var j = i; var loopDist = stepSize; if (edgeIsUnbundled) { j = 0; loopDist = ctrlptDist; } var loopAngle = loopDir - Math.PI / 2; var outAngle = loopAngle - loopSwp / 2; var inAngle = loopAngle + loopSwp / 2; // increase by step size for overlapping loops, keyed on direction and sweep values var dc = String(loopDir + '_' + loopSwp); j = dirCounts[dc] === undefined ? dirCounts[dc] = 0 : ++dirCounts[dc]; rs.ctrlpts = [srcPos.x + Math.cos(outAngle) * 1.4 * loopDist * (j / 3 + 1), srcPos.y + Math.sin(outAngle) * 1.4 * loopDist * (j / 3 + 1), srcPos.x + Math.cos(inAngle) * 1.4 * loopDist * (j / 3 + 1), srcPos.y + Math.sin(inAngle) * 1.4 * loopDist * (j / 3 + 1)]; }; BRp$c.findCompoundLoopPoints = function (edge, pairInfo, i, edgeIsUnbundled) { // Compound edge var rs = edge._private.rscratch; rs.edgeType = 'compound'; var srcPos = pairInfo.srcPos, tgtPos = pairInfo.tgtPos, srcW = pairInfo.srcW, srcH = pairInfo.srcH, tgtW = pairInfo.tgtW, tgtH = pairInfo.tgtH; var stepSize = edge.pstyle('control-point-step-size').pfValue; var ctrlptDists = edge.pstyle('control-point-distances'); var ctrlptDist = ctrlptDists ? ctrlptDists.pfValue[0] : undefined; var j = i; var loopDist = stepSize; if (edgeIsUnbundled) { j = 0; loopDist = ctrlptDist; } var loopW = 50; var loopaPos = { x: srcPos.x - srcW / 2, y: srcPos.y - srcH / 2 }; var loopbPos = { x: tgtPos.x - tgtW / 2, y: tgtPos.y - tgtH / 2 }; var loopPos = { x: Math.min(loopaPos.x, loopbPos.x), y: Math.min(loopaPos.y, loopbPos.y) }; // avoids cases with impossible beziers var minCompoundStretch = 0.5; var compoundStretchA = Math.max(minCompoundStretch, Math.log(srcW * 0.01)); var compoundStretchB = Math.max(minCompoundStretch, Math.log(tgtW * 0.01)); rs.ctrlpts = [loopPos.x, loopPos.y - (1 + Math.pow(loopW, 1.12) / 100) * loopDist * (j / 3 + 1) * compoundStretchA, loopPos.x - (1 + Math.pow(loopW, 1.12) / 100) * loopDist * (j / 3 + 1) * compoundStretchB, loopPos.y]; }; BRp$c.findStraightEdgePoints = function (edge) { // Straight edge within bundle edge._private.rscratch.edgeType = 'straight'; }; BRp$c.findBezierPoints = function (edge, pairInfo, i, edgeIsUnbundled, edgeIsSwapped) { var rs = edge._private.rscratch; var stepSize = edge.pstyle('control-point-step-size').pfValue; var ctrlptDists = edge.pstyle('control-point-distances'); var ctrlptWs = edge.pstyle('control-point-weights'); var bezierN = ctrlptDists && ctrlptWs ? Math.min(ctrlptDists.value.length, ctrlptWs.value.length) : 1; var ctrlptDist = ctrlptDists ? ctrlptDists.pfValue[0] : undefined; var ctrlptWeight = ctrlptWs.value[0]; // (Multi)bezier var multi = edgeIsUnbundled; rs.edgeType = multi ? 'multibezier' : 'bezier'; rs.ctrlpts = []; for (var b = 0; b < bezierN; b++) { var normctrlptDist = (0.5 - pairInfo.eles.length / 2 + i) * stepSize * (edgeIsSwapped ? -1 : 1); var manctrlptDist = void 0; var sign = signum(normctrlptDist); if (multi) { ctrlptDist = ctrlptDists ? ctrlptDists.pfValue[b] : stepSize; // fall back on step size ctrlptWeight = ctrlptWs.value[b]; } if (edgeIsUnbundled) { // multi or single unbundled manctrlptDist = ctrlptDist; } else { manctrlptDist = ctrlptDist !== undefined ? sign * ctrlptDist : undefined; } var distanceFromMidpoint = manctrlptDist !== undefined ? manctrlptDist : normctrlptDist; var w1 = 1 - ctrlptWeight; var w2 = ctrlptWeight; var _this$findMidptPtsEtc2 = this.findMidptPtsEtc(edge, pairInfo), midptPts = _this$findMidptPtsEtc2.midptPts, vectorNormInverse = _this$findMidptPtsEtc2.vectorNormInverse; var adjustedMidpt = { x: midptPts.x1 * w1 + midptPts.x2 * w2, y: midptPts.y1 * w1 + midptPts.y2 * w2 }; rs.ctrlpts.push(adjustedMidpt.x + vectorNormInverse.x * distanceFromMidpoint, adjustedMidpt.y + vectorNormInverse.y * distanceFromMidpoint); } }; BRp$c.findTaxiPoints = function (edge, pairInfo) { // Taxicab geometry with two turns maximum var rs = edge._private.rscratch; rs.edgeType = 'segments'; var VERTICAL = 'vertical'; var HORIZONTAL = 'horizontal'; var LEFTWARD = 'leftward'; var RIGHTWARD = 'rightward'; var DOWNWARD = 'downward'; var UPWARD = 'upward'; var AUTO = 'auto'; var posPts = pairInfo.posPts, srcW = pairInfo.srcW, srcH = pairInfo.srcH, tgtW = pairInfo.tgtW, tgtH = pairInfo.tgtH; var edgeDistances = edge.pstyle('edge-distances').value; var dIncludesNodeBody = edgeDistances !== 'node-position'; var taxiDir = edge.pstyle('taxi-direction').value; var rawTaxiDir = taxiDir; // unprocessed value var taxiTurn = edge.pstyle('taxi-turn'); var turnIsPercent = taxiTurn.units === '%'; var taxiTurnPfVal = taxiTurn.pfValue; var turnIsNegative = taxiTurnPfVal < 0; // i.e. from target side var minD = edge.pstyle('taxi-turn-min-distance').pfValue; var dw = dIncludesNodeBody ? (srcW + tgtW) / 2 : 0; var dh = dIncludesNodeBody ? (srcH + tgtH) / 2 : 0; var pdx = posPts.x2 - posPts.x1; var pdy = posPts.y2 - posPts.y1; // take away the effective w/h from the magnitude of the delta value var subDWH = function subDWH(dxy, dwh) { if (dxy > 0) { return Math.max(dxy - dwh, 0); } else { return Math.min(dxy + dwh, 0); } }; var dx = subDWH(pdx, dw); var dy = subDWH(pdy, dh); var isExplicitDir = false; if (rawTaxiDir === AUTO) { taxiDir = Math.abs(dx) > Math.abs(dy) ? HORIZONTAL : VERTICAL; } else if (rawTaxiDir === UPWARD || rawTaxiDir === DOWNWARD) { taxiDir = VERTICAL; isExplicitDir = true; } else if (rawTaxiDir === LEFTWARD || rawTaxiDir === RIGHTWARD) { taxiDir = HORIZONTAL; isExplicitDir = true; } var isVert = taxiDir === VERTICAL; var l = isVert ? dy : dx; var pl = isVert ? pdy : pdx; var sgnL = signum(pl); var forcedDir = false; if (!(isExplicitDir && (turnIsPercent || turnIsNegative)) // forcing in this case would cause weird growing in the opposite direction && (rawTaxiDir === DOWNWARD && pl < 0 || rawTaxiDir === UPWARD && pl > 0 || rawTaxiDir === LEFTWARD && pl > 0 || rawTaxiDir === RIGHTWARD && pl < 0)) { sgnL *= -1; l = sgnL * Math.abs(l); forcedDir = true; } var d; if (turnIsPercent) { var p = taxiTurnPfVal < 0 ? 1 + taxiTurnPfVal : taxiTurnPfVal; d = p * l; } else { var k = taxiTurnPfVal < 0 ? l : 0; d = k + taxiTurnPfVal * sgnL; } var getIsTooClose = function getIsTooClose(d) { return Math.abs(d) < minD || Math.abs(d) >= Math.abs(l); }; var isTooCloseSrc = getIsTooClose(d); var isTooCloseTgt = getIsTooClose(Math.abs(l) - Math.abs(d)); var isTooClose = isTooCloseSrc || isTooCloseTgt; if (isTooClose && !forcedDir) { // non-ideal routing if (isVert) { // vertical fallbacks var lShapeInsideSrc = Math.abs(pl) <= srcH / 2; var lShapeInsideTgt = Math.abs(pdx) <= tgtW / 2; if (lShapeInsideSrc) { // horizontal Z-shape (direction not respected) var x = (posPts.x1 + posPts.x2) / 2; var y1 = posPts.y1, y2 = posPts.y2; rs.segpts = [x, y1, x, y2]; } else if (lShapeInsideTgt) { // vertical Z-shape (distance not respected) var y = (posPts.y1 + posPts.y2) / 2; var x1 = posPts.x1, x2 = posPts.x2; rs.segpts = [x1, y, x2, y]; } else { // L-shape fallback (turn distance not respected, but works well with tree siblings) rs.segpts = [posPts.x1, posPts.y2]; } } else { // horizontal fallbacks var _lShapeInsideSrc = Math.abs(pl) <= srcW / 2; var _lShapeInsideTgt = Math.abs(pdy) <= tgtH / 2; if (_lShapeInsideSrc) { // vertical Z-shape (direction not respected) var _y = (posPts.y1 + posPts.y2) / 2; var _x = posPts.x1, _x2 = posPts.x2; rs.segpts = [_x, _y, _x2, _y]; } else if (_lShapeInsideTgt) { // horizontal Z-shape (turn distance not respected) var _x3 = (posPts.x1 + posPts.x2) / 2; var _y2 = posPts.y1, _y3 = posPts.y2; rs.segpts = [_x3, _y2, _x3, _y3]; } else { // L-shape (turn distance not respected, but works well for tree siblings) rs.segpts = [posPts.x2, posPts.y1]; } } } else { // ideal routing if (isVert) { var _y4 = posPts.y1 + d + (dIncludesNodeBody ? srcH / 2 * sgnL : 0); var _x4 = posPts.x1, _x5 = posPts.x2; rs.segpts = [_x4, _y4, _x5, _y4]; } else { // horizontal var _x6 = posPts.x1 + d + (dIncludesNodeBody ? srcW / 2 * sgnL : 0); var _y5 = posPts.y1, _y6 = posPts.y2; rs.segpts = [_x6, _y5, _x6, _y6]; } } if (rs.isRound) { var radius = edge.pstyle('taxi-radius').value; var isArcRadius = edge.pstyle('radius-type').value[0] === 'arc-radius'; rs.radii = new Array(rs.segpts.length / 2).fill(radius); rs.isArcRadius = new Array(rs.segpts.length / 2).fill(isArcRadius); } }; BRp$c.tryToCorrectInvalidPoints = function (edge, pairInfo) { var rs = edge._private.rscratch; // can only correct beziers for now... if (rs.edgeType === 'bezier') { var srcPos = pairInfo.srcPos, tgtPos = pairInfo.tgtPos, srcW = pairInfo.srcW, srcH = pairInfo.srcH, tgtW = pairInfo.tgtW, tgtH = pairInfo.tgtH, srcShape = pairInfo.srcShape, tgtShape = pairInfo.tgtShape, srcCornerRadius = pairInfo.srcCornerRadius, tgtCornerRadius = pairInfo.tgtCornerRadius, srcRs = pairInfo.srcRs, tgtRs = pairInfo.tgtRs; var badStart = !number$1(rs.startX) || !number$1(rs.startY); var badAStart = !number$1(rs.arrowStartX) || !number$1(rs.arrowStartY); var badEnd = !number$1(rs.endX) || !number$1(rs.endY); var badAEnd = !number$1(rs.arrowEndX) || !number$1(rs.arrowEndY); var minCpADistFactor = 3; var arrowW = this.getArrowWidth(edge.pstyle('width').pfValue, edge.pstyle('arrow-scale').value) * this.arrowShapeWidth; var minCpADist = minCpADistFactor * arrowW; var startACpDist = dist({ x: rs.ctrlpts[0], y: rs.ctrlpts[1] }, { x: rs.startX, y: rs.startY }); var closeStartACp = startACpDist < minCpADist; var endACpDist = dist({ x: rs.ctrlpts[0], y: rs.ctrlpts[1] }, { x: rs.endX, y: rs.endY }); var closeEndACp = endACpDist < minCpADist; var overlapping = false; if (badStart || badAStart || closeStartACp) { overlapping = true; // project control point along line from src centre to outside the src shape // (otherwise intersection will yield nothing) var cpD = { // delta x: rs.ctrlpts[0] - srcPos.x, y: rs.ctrlpts[1] - srcPos.y }; var cpL = Math.sqrt(cpD.x * cpD.x + cpD.y * cpD.y); // length of line var cpM = { // normalised delta x: cpD.x / cpL, y: cpD.y / cpL }; var radius = Math.max(srcW, srcH); var cpProj = { // *2 radius guarantees outside shape x: rs.ctrlpts[0] + cpM.x * 2 * radius, y: rs.ctrlpts[1] + cpM.y * 2 * radius }; var srcCtrlPtIntn = srcShape.intersectLine(srcPos.x, srcPos.y, srcW, srcH, cpProj.x, cpProj.y, 0, srcCornerRadius, srcRs); if (closeStartACp) { rs.ctrlpts[0] = rs.ctrlpts[0] + cpM.x * (minCpADist - startACpDist); rs.ctrlpts[1] = rs.ctrlpts[1] + cpM.y * (minCpADist - startACpDist); } else { rs.ctrlpts[0] = srcCtrlPtIntn[0] + cpM.x * minCpADist; rs.ctrlpts[1] = srcCtrlPtIntn[1] + cpM.y * minCpADist; } } if (badEnd || badAEnd || closeEndACp) { overlapping = true; // project control point along line from tgt centre to outside the tgt shape // (otherwise intersection will yield nothing) var _cpD = { // delta x: rs.ctrlpts[0] - tgtPos.x, y: rs.ctrlpts[1] - tgtPos.y }; var _cpL = Math.sqrt(_cpD.x * _cpD.x + _cpD.y * _cpD.y); // length of line var _cpM = { // normalised delta x: _cpD.x / _cpL, y: _cpD.y / _cpL }; var _radius = Math.max(srcW, srcH); var _cpProj = { // *2 radius guarantees outside shape x: rs.ctrlpts[0] + _cpM.x * 2 * _radius, y: rs.ctrlpts[1] + _cpM.y * 2 * _radius }; var tgtCtrlPtIntn = tgtShape.intersectLine(tgtPos.x, tgtPos.y, tgtW, tgtH, _cpProj.x, _cpProj.y, 0, tgtCornerRadius, tgtRs); if (closeEndACp) { rs.ctrlpts[0] = rs.ctrlpts[0] + _cpM.x * (minCpADist - endACpDist); rs.ctrlpts[1] = rs.ctrlpts[1] + _cpM.y * (minCpADist - endACpDist); } else { rs.ctrlpts[0] = tgtCtrlPtIntn[0] + _cpM.x * minCpADist; rs.ctrlpts[1] = tgtCtrlPtIntn[1] + _cpM.y * minCpADist; } } if (overlapping) { // recalc endpts this.findEndpoints(edge); } } }; BRp$c.storeAllpts = function (edge) { var rs = edge._private.rscratch; if (rs.edgeType === 'multibezier' || rs.edgeType === 'bezier' || rs.edgeType === 'self' || rs.edgeType === 'compound') { rs.allpts = []; rs.allpts.push(rs.startX, rs.startY); for (var b = 0; b + 1 < rs.ctrlpts.length; b += 2) { // ctrl pt itself rs.allpts.push(rs.ctrlpts[b], rs.ctrlpts[b + 1]); // the midpt between ctrlpts as intermediate destination pts if (b + 3 < rs.ctrlpts.length) { rs.allpts.push((rs.ctrlpts[b] + rs.ctrlpts[b + 2]) / 2, (rs.ctrlpts[b + 1] + rs.ctrlpts[b + 3]) / 2); } } rs.allpts.push(rs.endX, rs.endY); var m, mt; if (rs.ctrlpts.length / 2 % 2 === 0) { m = rs.allpts.length / 2 - 1; rs.midX = rs.allpts[m]; rs.midY = rs.allpts[m + 1]; } else { m = rs.allpts.length / 2 - 3; mt = 0.5; rs.midX = qbezierAt(rs.allpts[m], rs.allpts[m + 2], rs.allpts[m + 4], mt); rs.midY = qbezierAt(rs.allpts[m + 1], rs.allpts[m + 3], rs.allpts[m + 5], mt); } } else if (rs.edgeType === 'straight') { // need to calc these after endpts rs.allpts = [rs.startX, rs.startY, rs.endX, rs.endY]; // default midpt for labels etc rs.midX = (rs.startX + rs.endX + rs.arrowStartX + rs.arrowEndX) / 4; rs.midY = (rs.startY + rs.endY + rs.arrowStartY + rs.arrowEndY) / 4; } else if (rs.edgeType === 'segments') { rs.allpts = []; rs.allpts.push(rs.startX, rs.startY); rs.allpts.push.apply(rs.allpts, rs.segpts); rs.allpts.push(rs.endX, rs.endY); if (rs.isRound) { rs.roundCorners = []; for (var i = 2; i + 3 < rs.allpts.length; i += 2) { var radius = rs.radii[i / 2 - 1]; var isArcRadius = rs.isArcRadius[i / 2 - 1]; rs.roundCorners.push(getRoundCorner({ x: rs.allpts[i - 2], y: rs.allpts[i - 1] }, { x: rs.allpts[i], y: rs.allpts[i + 1], radius: radius }, { x: rs.allpts[i + 2], y: rs.allpts[i + 3] }, radius, isArcRadius)); } } if (rs.segpts.length % 4 === 0) { var i2 = rs.segpts.length / 2; var i1 = i2 - 2; rs.midX = (rs.segpts[i1] + rs.segpts[i2]) / 2; rs.midY = (rs.segpts[i1 + 1] + rs.segpts[i2 + 1]) / 2; } else { var _i = rs.segpts.length / 2 - 1; if (!rs.isRound) { rs.midX = rs.segpts[_i]; rs.midY = rs.segpts[_i + 1]; } else { var point = { x: rs.segpts[_i], y: rs.segpts[_i + 1] }; var corner = rs.roundCorners[_i / 2]; var v = [point.x - corner.cx, point.y - corner.cy]; var factor = corner.radius / Math.sqrt(Math.pow(v[0], 2) + Math.pow(v[1], 2)); v = v.map(function (c) { return c * factor; }); rs.midX = corner.cx + v[0]; rs.midY = corner.cy + v[1]; rs.midVector = v; } } } }; BRp$c.checkForInvalidEdgeWarning = function (edge) { var rs = edge[0]._private.rscratch; if (rs.nodesOverlap || number$1(rs.startX) && number$1(rs.startY) && number$1(rs.endX) && number$1(rs.endY)) { rs.loggedErr = false; } else { if (!rs.loggedErr) { rs.loggedErr = true; warn('Edge `' + edge.id() + '` has invalid endpoints and so it is impossible to draw. Adjust your edge style (e.g. control points) accordingly or use an alternative edge type. This is expected behaviour when the source node and the target node overlap.'); } } }; BRp$c.findEdgeControlPoints = function (edges) { var _this = this; if (!edges || edges.length === 0) { return; } var r = this; var cy = r.cy; var hasCompounds = cy.hasCompoundNodes(); var hashTable = { map: new Map$2(), get: function get(pairId) { var map2 = this.map.get(pairId[0]); if (map2 != null) { return map2.get(pairId[1]); } else { return null; } }, set: function set(pairId, val) { var map2 = this.map.get(pairId[0]); if (map2 == null) { map2 = new Map$2(); this.map.set(pairId[0], map2); } map2.set(pairId[1], val); } }; var pairIds = []; var haystackEdges = []; // create a table of edge (src, tgt) => list of edges between them for (var i = 0; i < edges.length; i++) { var edge = edges[i]; var _p = edge._private; var curveStyle = edge.pstyle('curve-style').value; // ignore edges who are not to be displayed // they shouldn't take up space if (edge.removed() || !edge.takesUpSpace()) { continue; } if (curveStyle === 'haystack') { haystackEdges.push(edge); continue; } var edgeIsUnbundled = curveStyle === 'unbundled-bezier' || curveStyle.endsWith('segments') || curveStyle === 'straight' || curveStyle === 'straight-triangle' || curveStyle.endsWith('taxi'); var edgeIsBezier = curveStyle === 'unbundled-bezier' || curveStyle === 'bezier'; var src = _p.source; var tgt = _p.target; var srcIndex = src.poolIndex(); var tgtIndex = tgt.poolIndex(); var pairId = [srcIndex, tgtIndex].sort(); var tableEntry = hashTable.get(pairId); if (tableEntry == null) { tableEntry = { eles: [] }; hashTable.set(pairId, tableEntry); pairIds.push(pairId); } tableEntry.eles.push(edge); if (edgeIsUnbundled) { tableEntry.hasUnbundled = true; } if (edgeIsBezier) { tableEntry.hasBezier = true; } } // for each pair (src, tgt), create the ctrl pts // Nested for loop is OK; total number of iterations for both loops = edgeCount var _loop = function _loop(p) { var pairId = pairIds[p]; var pairInfo = hashTable.get(pairId); var swappedpairInfo = void 0; if (!pairInfo.hasUnbundled) { var pllEdges = pairInfo.eles[0].parallelEdges().filter(function (e) { return e.isBundledBezier(); }); clearArray(pairInfo.eles); pllEdges.forEach(function (edge) { return pairInfo.eles.push(edge); }); // for each pair id, the edges should be sorted by index pairInfo.eles.sort(function (edge1, edge2) { return edge1.poolIndex() - edge2.poolIndex(); }); } var firstEdge = pairInfo.eles[0]; var src = firstEdge.source(); var tgt = firstEdge.target(); // make sure src/tgt distinction is consistent w.r.t. pairId if (src.poolIndex() > tgt.poolIndex()) { var temp = src; src = tgt; tgt = temp; } var srcPos = pairInfo.srcPos = src.position(); var tgtPos = pairInfo.tgtPos = tgt.position(); var srcW = pairInfo.srcW = src.outerWidth(); var srcH = pairInfo.srcH = src.outerHeight(); var tgtW = pairInfo.tgtW = tgt.outerWidth(); var tgtH = pairInfo.tgtH = tgt.outerHeight(); var srcShape = pairInfo.srcShape = r.nodeShapes[_this.getNodeShape(src)]; var tgtShape = pairInfo.tgtShape = r.nodeShapes[_this.getNodeShape(tgt)]; var srcCornerRadius = pairInfo.srcCornerRadius = src.pstyle('corner-radius').value === 'auto' ? 'auto' : src.pstyle('corner-radius').pfValue; var tgtCornerRadius = pairInfo.tgtCornerRadius = tgt.pstyle('corner-radius').value === 'auto' ? 'auto' : tgt.pstyle('corner-radius').pfValue; var tgtRs = pairInfo.tgtRs = tgt._private.rscratch; var srcRs = pairInfo.srcRs = src._private.rscratch; pairInfo.dirCounts = { 'north': 0, 'west': 0, 'south': 0, 'east': 0, 'northwest': 0, 'southwest': 0, 'northeast': 0, 'southeast': 0 }; for (var _i2 = 0; _i2 < pairInfo.eles.length; _i2++) { var _edge = pairInfo.eles[_i2]; var rs = _edge[0]._private.rscratch; var _curveStyle = _edge.pstyle('curve-style').value; var _edgeIsUnbundled = _curveStyle === 'unbundled-bezier' || _curveStyle.endsWith('segments') || _curveStyle.endsWith('taxi'); // whether the normalised pair order is the reverse of the edge's src-tgt order var edgeIsSwapped = !src.same(_edge.source()); if (!pairInfo.calculatedIntersection && src !== tgt && (pairInfo.hasBezier || pairInfo.hasUnbundled)) { pairInfo.calculatedIntersection = true; // pt outside src shape to calc distance/displacement from src to tgt var srcOutside = srcShape.intersectLine(srcPos.x, srcPos.y, srcW, srcH, tgtPos.x, tgtPos.y, 0, srcCornerRadius, srcRs); var srcIntn = pairInfo.srcIntn = srcOutside; // pt outside tgt shape to calc distance/displacement from src to tgt var tgtOutside = tgtShape.intersectLine(tgtPos.x, tgtPos.y, tgtW, tgtH, srcPos.x, srcPos.y, 0, tgtCornerRadius, tgtRs); var tgtIntn = pairInfo.tgtIntn = tgtOutside; var intersectionPts = pairInfo.intersectionPts = { x1: srcOutside[0], x2: tgtOutside[0], y1: srcOutside[1], y2: tgtOutside[1] }; var posPts = pairInfo.posPts = { x1: srcPos.x, x2: tgtPos.x, y1: srcPos.y, y2: tgtPos.y }; var dy = tgtOutside[1] - srcOutside[1]; var dx = tgtOutside[0] - srcOutside[0]; var l = Math.sqrt(dx * dx + dy * dy); var vector = pairInfo.vector = { x: dx, y: dy }; var vectorNorm = pairInfo.vectorNorm = { x: vector.x / l, y: vector.y / l }; var vectorNormInverse = { x: -vectorNorm.y, y: vectorNorm.x }; // if node shapes overlap, then no ctrl pts to draw pairInfo.nodesOverlap = !number$1(l) || tgtShape.checkPoint(srcOutside[0], srcOutside[1], 0, tgtW, tgtH, tgtPos.x, tgtPos.y, tgtCornerRadius, tgtRs) || srcShape.checkPoint(tgtOutside[0], tgtOutside[1], 0, srcW, srcH, srcPos.x, srcPos.y, srcCornerRadius, srcRs); pairInfo.vectorNormInverse = vectorNormInverse; swappedpairInfo = { nodesOverlap: pairInfo.nodesOverlap, dirCounts: pairInfo.dirCounts, calculatedIntersection: true, hasBezier: pairInfo.hasBezier, hasUnbundled: pairInfo.hasUnbundled, eles: pairInfo.eles, srcPos: tgtPos, tgtPos: srcPos, srcW: tgtW, srcH: tgtH, tgtW: srcW, tgtH: srcH, srcIntn: tgtIntn, tgtIntn: srcIntn, srcShape: tgtShape, tgtShape: srcShape, posPts: { x1: posPts.x2, y1: posPts.y2, x2: posPts.x1, y2: posPts.y1 }, intersectionPts: { x1: intersectionPts.x2, y1: intersectionPts.y2, x2: intersectionPts.x1, y2: intersectionPts.y1 }, vector: { x: -vector.x, y: -vector.y }, vectorNorm: { x: -vectorNorm.x, y: -vectorNorm.y }, vectorNormInverse: { x: -vectorNormInverse.x, y: -vectorNormInverse.y } }; } var passedPairInfo = edgeIsSwapped ? swappedpairInfo : pairInfo; rs.nodesOverlap = passedPairInfo.nodesOverlap; rs.srcIntn = passedPairInfo.srcIntn; rs.tgtIntn = passedPairInfo.tgtIntn; rs.isRound = _curveStyle.startsWith('round'); if (hasCompounds && (src.isParent() || src.isChild() || tgt.isParent() || tgt.isChild()) && (src.parents().anySame(tgt) || tgt.parents().anySame(src) || src.same(tgt) && src.isParent())) { _this.findCompoundLoopPoints(_edge, passedPairInfo, _i2, _edgeIsUnbundled); } else if (src === tgt) { _this.findLoopPoints(_edge, passedPairInfo, _i2, _edgeIsUnbundled); } else if (_curveStyle.endsWith('segments')) { _this.findSegmentsPoints(_edge, passedPairInfo); } else if (_curveStyle.endsWith('taxi')) { _this.findTaxiPoints(_edge, passedPairInfo); } else if (_curveStyle === 'straight' || !_edgeIsUnbundled && pairInfo.eles.length % 2 === 1 && _i2 === Math.floor(pairInfo.eles.length / 2)) { _this.findStraightEdgePoints(_edge); } else { _this.findBezierPoints(_edge, passedPairInfo, _i2, _edgeIsUnbundled, edgeIsSwapped); } _this.findEndpoints(_edge); _this.tryToCorrectInvalidPoints(_edge, passedPairInfo); _this.checkForInvalidEdgeWarning(_edge); _this.storeAllpts(_edge); _this.storeEdgeProjections(_edge); _this.calculateArrowAngles(_edge); _this.recalculateEdgeLabelProjections(_edge); _this.calculateLabelAngles(_edge); } // for pair edges }; for (var p = 0; p < pairIds.length; p++) { _loop(p); } // for pair ids // haystacks avoid the expense of pairInfo stuff (intersections etc.) this.findHaystackPoints(haystackEdges); }; function getPts(pts) { var retPts = []; if (pts == null) { return; } for (var i = 0; i < pts.length; i += 2) { var x = pts[i]; var y = pts[i + 1]; retPts.push({ x: x, y: y }); } return retPts; } BRp$c.getSegmentPoints = function (edge) { var rs = edge[0]._private.rscratch; var type = rs.edgeType; if (type === 'segments') { this.recalculateRenderedStyle(edge); return getPts(rs.segpts); } }; BRp$c.getControlPoints = function (edge) { var rs = edge[0]._private.rscratch; var type = rs.edgeType; if (type === 'bezier' || type === 'multibezier' || type === 'self' || type === 'compound') { this.recalculateRenderedStyle(edge); return getPts(rs.ctrlpts); } }; BRp$c.getEdgeMidpoint = function (edge) { var rs = edge[0]._private.rscratch; this.recalculateRenderedStyle(edge); return { x: rs.midX, y: rs.midY }; }; var BRp$b = {}; BRp$b.manualEndptToPx = function (node, prop) { var r = this; var npos = node.position(); var w = node.outerWidth(); var h = node.outerHeight(); var rs = node._private.rscratch; if (prop.value.length === 2) { var p = [prop.pfValue[0], prop.pfValue[1]]; if (prop.units[0] === '%') { p[0] = p[0] * w; } if (prop.units[1] === '%') { p[1] = p[1] * h; } p[0] += npos.x; p[1] += npos.y; return p; } else { var angle = prop.pfValue[0]; angle = -Math.PI / 2 + angle; // start at 12 o'clock var l = 2 * Math.max(w, h); var _p = [npos.x + Math.cos(angle) * l, npos.y + Math.sin(angle) * l]; return r.nodeShapes[this.getNodeShape(node)].intersectLine(npos.x, npos.y, w, h, _p[0], _p[1], 0, node.pstyle('corner-radius').value === 'auto' ? 'auto' : node.pstyle('corner-radius').pfValue, rs); } }; BRp$b.findEndpoints = function (edge) { var r = this; var intersect; var source = edge.source()[0]; var target = edge.target()[0]; var srcPos = source.position(); var tgtPos = target.position(); var tgtArShape = edge.pstyle('target-arrow-shape').value; var srcArShape = edge.pstyle('source-arrow-shape').value; var tgtDist = edge.pstyle('target-distance-from-node').pfValue; var srcDist = edge.pstyle('source-distance-from-node').pfValue; var srcRs = source._private.rscratch; var tgtRs = target._private.rscratch; var curveStyle = edge.pstyle('curve-style').value; var rs = edge._private.rscratch; var et = rs.edgeType; var taxi = curveStyle === 'taxi'; var self = et === 'self' || et === 'compound'; var bezier = et === 'bezier' || et === 'multibezier' || self; var multi = et !== 'bezier'; var lines = et === 'straight' || et === 'segments'; var segments = et === 'segments'; var hasEndpts = bezier || multi || lines; var overrideEndpts = self || taxi; var srcManEndpt = edge.pstyle('source-endpoint'); var srcManEndptVal = overrideEndpts ? 'outside-to-node' : srcManEndpt.value; var srcCornerRadius = source.pstyle('corner-radius').value === 'auto' ? 'auto' : source.pstyle('corner-radius').pfValue; var tgtManEndpt = edge.pstyle('target-endpoint'); var tgtManEndptVal = overrideEndpts ? 'outside-to-node' : tgtManEndpt.value; var tgtCornerRadius = target.pstyle('corner-radius').value === 'auto' ? 'auto' : target.pstyle('corner-radius').pfValue; rs.srcManEndpt = srcManEndpt; rs.tgtManEndpt = tgtManEndpt; var p1; // last known point of edge on target side var p2; // last known point of edge on source side var p1_i; // point to intersect with target shape var p2_i; // point to intersect with source shape if (bezier) { var cpStart = [rs.ctrlpts[0], rs.ctrlpts[1]]; var cpEnd = multi ? [rs.ctrlpts[rs.ctrlpts.length - 2], rs.ctrlpts[rs.ctrlpts.length - 1]] : cpStart; p1 = cpEnd; p2 = cpStart; } else if (lines) { var srcArrowFromPt = !segments ? [tgtPos.x, tgtPos.y] : rs.segpts.slice(0, 2); var tgtArrowFromPt = !segments ? [srcPos.x, srcPos.y] : rs.segpts.slice(rs.segpts.length - 2); p1 = tgtArrowFromPt; p2 = srcArrowFromPt; } if (tgtManEndptVal === 'inside-to-node') { intersect = [tgtPos.x, tgtPos.y]; } else if (tgtManEndpt.units) { intersect = this.manualEndptToPx(target, tgtManEndpt); } else if (tgtManEndptVal === 'outside-to-line') { intersect = rs.tgtIntn; // use cached value from ctrlpt calc } else { if (tgtManEndptVal === 'outside-to-node' || tgtManEndptVal === 'outside-to-node-or-label') { p1_i = p1; } else if (tgtManEndptVal === 'outside-to-line' || tgtManEndptVal === 'outside-to-line-or-label') { p1_i = [srcPos.x, srcPos.y]; } intersect = r.nodeShapes[this.getNodeShape(target)].intersectLine(tgtPos.x, tgtPos.y, target.outerWidth(), target.outerHeight(), p1_i[0], p1_i[1], 0, tgtCornerRadius, tgtRs); if (tgtManEndptVal === 'outside-to-node-or-label' || tgtManEndptVal === 'outside-to-line-or-label') { var trs = target._private.rscratch; var lw = trs.labelWidth; var lh = trs.labelHeight; var lx = trs.labelX; var ly = trs.labelY; var lw2 = lw / 2; var lh2 = lh / 2; var va = target.pstyle('text-valign').value; if (va === 'top') { ly -= lh2; } else if (va === 'bottom') { ly += lh2; } var ha = target.pstyle('text-halign').value; if (ha === 'left') { lx -= lw2; } else if (ha === 'right') { lx += lw2; } var labelIntersect = polygonIntersectLine(p1_i[0], p1_i[1], [lx - lw2, ly - lh2, lx + lw2, ly - lh2, lx + lw2, ly + lh2, lx - lw2, ly + lh2], tgtPos.x, tgtPos.y); if (labelIntersect.length > 0) { var refPt = srcPos; var intSqdist = sqdist(refPt, array2point(intersect)); var labIntSqdist = sqdist(refPt, array2point(labelIntersect)); var minSqDist = intSqdist; if (labIntSqdist < intSqdist) { intersect = labelIntersect; minSqDist = labIntSqdist; } if (labelIntersect.length > 2) { var labInt2SqDist = sqdist(refPt, { x: labelIntersect[2], y: labelIntersect[3] }); if (labInt2SqDist < minSqDist) { intersect = [labelIntersect[2], labelIntersect[3]]; } } } } } var arrowEnd = shortenIntersection(intersect, p1, r.arrowShapes[tgtArShape].spacing(edge) + tgtDist); var edgeEnd = shortenIntersection(intersect, p1, r.arrowShapes[tgtArShape].gap(edge) + tgtDist); rs.endX = edgeEnd[0]; rs.endY = edgeEnd[1]; rs.arrowEndX = arrowEnd[0]; rs.arrowEndY = arrowEnd[1]; if (srcManEndptVal === 'inside-to-node') { intersect = [srcPos.x, srcPos.y]; } else if (srcManEndpt.units) { intersect = this.manualEndptToPx(source, srcManEndpt); } else if (srcManEndptVal === 'outside-to-line') { intersect = rs.srcIntn; // use cached value from ctrlpt calc } else { if (srcManEndptVal === 'outside-to-node' || srcManEndptVal === 'outside-to-node-or-label') { p2_i = p2; } else if (srcManEndptVal === 'outside-to-line' || srcManEndptVal === 'outside-to-line-or-label') { p2_i = [tgtPos.x, tgtPos.y]; } intersect = r.nodeShapes[this.getNodeShape(source)].intersectLine(srcPos.x, srcPos.y, source.outerWidth(), source.outerHeight(), p2_i[0], p2_i[1], 0, srcCornerRadius, srcRs); if (srcManEndptVal === 'outside-to-node-or-label' || srcManEndptVal === 'outside-to-line-or-label') { var srs = source._private.rscratch; var _lw = srs.labelWidth; var _lh = srs.labelHeight; var _lx = srs.labelX; var _ly = srs.labelY; var _lw2 = _lw / 2; var _lh2 = _lh / 2; var _va = source.pstyle('text-valign').value; if (_va === 'top') { _ly -= _lh2; } else if (_va === 'bottom') { _ly += _lh2; } var _ha = source.pstyle('text-halign').value; if (_ha === 'left') { _lx -= _lw2; } else if (_ha === 'right') { _lx += _lw2; } var _labelIntersect = polygonIntersectLine(p2_i[0], p2_i[1], [_lx - _lw2, _ly - _lh2, _lx + _lw2, _ly - _lh2, _lx + _lw2, _ly + _lh2, _lx - _lw2, _ly + _lh2], srcPos.x, srcPos.y); if (_labelIntersect.length > 0) { var _refPt = tgtPos; var _intSqdist = sqdist(_refPt, array2point(intersect)); var _labIntSqdist = sqdist(_refPt, array2point(_labelIntersect)); var _minSqDist = _intSqdist; if (_labIntSqdist < _intSqdist) { intersect = [_labelIntersect[0], _labelIntersect[1]]; _minSqDist = _labIntSqdist; } if (_labelIntersect.length > 2) { var _labInt2SqDist = sqdist(_refPt, { x: _labelIntersect[2], y: _labelIntersect[3] }); if (_labInt2SqDist < _minSqDist) { intersect = [_labelIntersect[2], _labelIntersect[3]]; } } } } } var arrowStart = shortenIntersection(intersect, p2, r.arrowShapes[srcArShape].spacing(edge) + srcDist); var edgeStart = shortenIntersection(intersect, p2, r.arrowShapes[srcArShape].gap(edge) + srcDist); rs.startX = edgeStart[0]; rs.startY = edgeStart[1]; rs.arrowStartX = arrowStart[0]; rs.arrowStartY = arrowStart[1]; if (hasEndpts) { if (!number$1(rs.startX) || !number$1(rs.startY) || !number$1(rs.endX) || !number$1(rs.endY)) { rs.badLine = true; } else { rs.badLine = false; } } }; BRp$b.getSourceEndpoint = function (edge) { var rs = edge[0]._private.rscratch; this.recalculateRenderedStyle(edge); switch (rs.edgeType) { case 'haystack': return { x: rs.haystackPts[0], y: rs.haystackPts[1] }; default: return { x: rs.arrowStartX, y: rs.arrowStartY }; } }; BRp$b.getTargetEndpoint = function (edge) { var rs = edge[0]._private.rscratch; this.recalculateRenderedStyle(edge); switch (rs.edgeType) { case 'haystack': return { x: rs.haystackPts[2], y: rs.haystackPts[3] }; default: return { x: rs.arrowEndX, y: rs.arrowEndY }; } }; var BRp$a = {}; function pushBezierPts(r, edge, pts) { var qbezierAt$1 = function qbezierAt$1(p1, p2, p3, t) { return qbezierAt(p1, p2, p3, t); }; var _p = edge._private; var bpts = _p.rstyle.bezierPts; for (var i = 0; i < r.bezierProjPcts.length; i++) { var p = r.bezierProjPcts[i]; bpts.push({ x: qbezierAt$1(pts[0], pts[2], pts[4], p), y: qbezierAt$1(pts[1], pts[3], pts[5], p) }); } } BRp$a.storeEdgeProjections = function (edge) { var _p = edge._private; var rs = _p.rscratch; var et = rs.edgeType; // clear the cached points state _p.rstyle.bezierPts = null; _p.rstyle.linePts = null; _p.rstyle.haystackPts = null; if (et === 'multibezier' || et === 'bezier' || et === 'self' || et === 'compound') { _p.rstyle.bezierPts = []; for (var i = 0; i + 5 < rs.allpts.length; i += 4) { pushBezierPts(this, edge, rs.allpts.slice(i, i + 6)); } } else if (et === 'segments') { var lpts = _p.rstyle.linePts = []; for (var i = 0; i + 1 < rs.allpts.length; i += 2) { lpts.push({ x: rs.allpts[i], y: rs.allpts[i + 1] }); } } else if (et === 'haystack') { var hpts = rs.haystackPts; _p.rstyle.haystackPts = [{ x: hpts[0], y: hpts[1] }, { x: hpts[2], y: hpts[3] }]; } _p.rstyle.arrowWidth = this.getArrowWidth(edge.pstyle('width').pfValue, edge.pstyle('arrow-scale').value) * this.arrowShapeWidth; }; BRp$a.recalculateEdgeProjections = function (edges) { this.findEdgeControlPoints(edges); }; var BRp$9 = {}; BRp$9.recalculateNodeLabelProjection = function (node) { var content = node.pstyle('label').strValue; if (emptyString(content)) { return; } var textX, textY; var _p = node._private; var nodeWidth = node.width(); var nodeHeight = node.height(); var padding = node.padding(); var nodePos = node.position(); var textHalign = node.pstyle('text-halign').strValue; var textValign = node.pstyle('text-valign').strValue; var rs = _p.rscratch; var rstyle = _p.rstyle; switch (textHalign) { case 'left': textX = nodePos.x - nodeWidth / 2 - padding; break; case 'right': textX = nodePos.x + nodeWidth / 2 + padding; break; default: // e.g. center textX = nodePos.x; } switch (textValign) { case 'top': textY = nodePos.y - nodeHeight / 2 - padding; break; case 'bottom': textY = nodePos.y + nodeHeight / 2 + padding; break; default: // e.g. middle textY = nodePos.y; } rs.labelX = textX; rs.labelY = textY; rstyle.labelX = textX; rstyle.labelY = textY; this.calculateLabelAngles(node); this.applyLabelDimensions(node); }; var lineAngleFromDelta = function lineAngleFromDelta(dx, dy) { var angle = Math.atan(dy / dx); if (dx === 0 && angle < 0) { angle = angle * -1; } return angle; }; var lineAngle = function lineAngle(p0, p1) { var dx = p1.x - p0.x; var dy = p1.y - p0.y; return lineAngleFromDelta(dx, dy); }; var bezierAngle = function bezierAngle(p0, p1, p2, t) { var t0 = bound(0, t - 0.001, 1); var t1 = bound(0, t + 0.001, 1); var lp0 = qbezierPtAt(p0, p1, p2, t0); var lp1 = qbezierPtAt(p0, p1, p2, t1); return lineAngle(lp0, lp1); }; BRp$9.recalculateEdgeLabelProjections = function (edge) { var p; var _p = edge._private; var rs = _p.rscratch; var r = this; var content = { mid: edge.pstyle('label').strValue, source: edge.pstyle('source-label').strValue, target: edge.pstyle('target-label').strValue }; if (content.mid || content.source || content.target) ; else { return; // no labels => no calcs } // add center point to style so bounding box calculations can use it // p = { x: rs.midX, y: rs.midY }; var setRs = function setRs(propName, prefix, value) { setPrefixedProperty(_p.rscratch, propName, prefix, value); setPrefixedProperty(_p.rstyle, propName, prefix, value); }; setRs('labelX', null, p.x); setRs('labelY', null, p.y); var midAngle = lineAngleFromDelta(rs.midDispX, rs.midDispY); setRs('labelAutoAngle', null, midAngle); var createControlPointInfo = function createControlPointInfo() { if (createControlPointInfo.cache) { return createControlPointInfo.cache; } // use cache so only 1x per edge var ctrlpts = []; // store each ctrlpt info init for (var i = 0; i + 5 < rs.allpts.length; i += 4) { var p0 = { x: rs.allpts[i], y: rs.allpts[i + 1] }; var p1 = { x: rs.allpts[i + 2], y: rs.allpts[i + 3] }; // ctrlpt var p2 = { x: rs.allpts[i + 4], y: rs.allpts[i + 5] }; ctrlpts.push({ p0: p0, p1: p1, p2: p2, startDist: 0, length: 0, segments: [] }); } var bpts = _p.rstyle.bezierPts; var nProjs = r.bezierProjPcts.length; function addSegment(cp, p0, p1, t0, t1) { var length = dist(p0, p1); var prevSegment = cp.segments[cp.segments.length - 1]; var segment = { p0: p0, p1: p1, t0: t0, t1: t1, startDist: prevSegment ? prevSegment.startDist + prevSegment.length : 0, length: length }; cp.segments.push(segment); cp.length += length; } // update each ctrlpt with segment info for (var _i = 0; _i < ctrlpts.length; _i++) { var cp = ctrlpts[_i]; var prevCp = ctrlpts[_i - 1]; if (prevCp) { cp.startDist = prevCp.startDist + prevCp.length; } addSegment(cp, cp.p0, bpts[_i * nProjs], 0, r.bezierProjPcts[0]); // first for (var j = 0; j < nProjs - 1; j++) { addSegment(cp, bpts[_i * nProjs + j], bpts[_i * nProjs + j + 1], r.bezierProjPcts[j], r.bezierProjPcts[j + 1]); } addSegment(cp, bpts[_i * nProjs + nProjs - 1], cp.p2, r.bezierProjPcts[nProjs - 1], 1); // last } return createControlPointInfo.cache = ctrlpts; }; var calculateEndProjection = function calculateEndProjection(prefix) { var angle; var isSrc = prefix === 'source'; if (!content[prefix]) { return; } var offset = edge.pstyle(prefix + '-text-offset').pfValue; switch (rs.edgeType) { case 'self': case 'compound': case 'bezier': case 'multibezier': { var cps = createControlPointInfo(); var selected; var startDist = 0; var totalDist = 0; // find the segment we're on for (var i = 0; i < cps.length; i++) { var _cp = cps[isSrc ? i : cps.length - 1 - i]; for (var j = 0; j < _cp.segments.length; j++) { var _seg = _cp.segments[isSrc ? j : _cp.segments.length - 1 - j]; var lastSeg = i === cps.length - 1 && j === _cp.segments.length - 1; startDist = totalDist; totalDist += _seg.length; if (totalDist >= offset || lastSeg) { selected = { cp: _cp, segment: _seg }; break; } } if (selected) { break; } } var cp = selected.cp; var seg = selected.segment; var tSegment = (offset - startDist) / seg.length; var segDt = seg.t1 - seg.t0; var t = isSrc ? seg.t0 + segDt * tSegment : seg.t1 - segDt * tSegment; t = bound(0, t, 1); p = qbezierPtAt(cp.p0, cp.p1, cp.p2, t); angle = bezierAngle(cp.p0, cp.p1, cp.p2, t); break; } case 'straight': case 'segments': case 'haystack': { var d = 0, di, d0; var p0, p1; var l = rs.allpts.length; for (var _i2 = 0; _i2 + 3 < l; _i2 += 2) { if (isSrc) { p0 = { x: rs.allpts[_i2], y: rs.allpts[_i2 + 1] }; p1 = { x: rs.allpts[_i2 + 2], y: rs.allpts[_i2 + 3] }; } else { p0 = { x: rs.allpts[l - 2 - _i2], y: rs.allpts[l - 1 - _i2] }; p1 = { x: rs.allpts[l - 4 - _i2], y: rs.allpts[l - 3 - _i2] }; } di = dist(p0, p1); d0 = d; d += di; if (d >= offset) { break; } } var pD = offset - d0; var _t = pD / di; _t = bound(0, _t, 1); p = lineAt(p0, p1, _t); angle = lineAngle(p0, p1); break; } } setRs('labelX', prefix, p.x); setRs('labelY', prefix, p.y); setRs('labelAutoAngle', prefix, angle); }; calculateEndProjection('source'); calculateEndProjection('target'); this.applyLabelDimensions(edge); }; BRp$9.applyLabelDimensions = function (ele) { this.applyPrefixedLabelDimensions(ele); if (ele.isEdge()) { this.applyPrefixedLabelDimensions(ele, 'source'); this.applyPrefixedLabelDimensions(ele, 'target'); } }; BRp$9.applyPrefixedLabelDimensions = function (ele, prefix) { var _p = ele._private; var text = this.getLabelText(ele, prefix); var labelDims = this.calculateLabelDimensions(ele, text); var lineHeight = ele.pstyle('line-height').pfValue; var textWrap = ele.pstyle('text-wrap').strValue; var lines = getPrefixedProperty(_p.rscratch, 'labelWrapCachedLines', prefix) || []; var numLines = textWrap !== 'wrap' ? 1 : Math.max(lines.length, 1); var normPerLineHeight = labelDims.height / numLines; var labelLineHeight = normPerLineHeight * lineHeight; var width = labelDims.width; var height = labelDims.height + (numLines - 1) * (lineHeight - 1) * normPerLineHeight; setPrefixedProperty(_p.rstyle, 'labelWidth', prefix, width); setPrefixedProperty(_p.rscratch, 'labelWidth', prefix, width); setPrefixedProperty(_p.rstyle, 'labelHeight', prefix, height); setPrefixedProperty(_p.rscratch, 'labelHeight', prefix, height); setPrefixedProperty(_p.rscratch, 'labelLineHeight', prefix, labelLineHeight); }; BRp$9.getLabelText = function (ele, prefix) { var _p = ele._private; var pfd = prefix ? prefix + '-' : ''; var text = ele.pstyle(pfd + 'label').strValue; var textTransform = ele.pstyle('text-transform').value; var rscratch = function rscratch(propName, value) { if (value) { setPrefixedProperty(_p.rscratch, propName, prefix, value); return value; } else { return getPrefixedProperty(_p.rscratch, propName, prefix); } }; // for empty text, skip all processing if (!text) { return ''; } if (textTransform == 'none') ; else if (textTransform == 'uppercase') { text = text.toUpperCase(); } else if (textTransform == 'lowercase') { text = text.toLowerCase(); } var wrapStyle = ele.pstyle('text-wrap').value; if (wrapStyle === 'wrap') { var labelKey = rscratch('labelKey'); // save recalc if the label is the same as before if (labelKey != null && rscratch('labelWrapKey') === labelKey) { return rscratch('labelWrapCachedText'); } var zwsp = "\u200B"; var lines = text.split('\n'); var maxW = ele.pstyle('text-max-width').pfValue; var overflow = ele.pstyle('text-overflow-wrap').value; var overflowAny = overflow === 'anywhere'; var wrappedLines = []; var separatorRegex = /[\s\u200b]+|$/g; // Include end of string to add last word for (var l = 0; l < lines.length; l++) { var line = lines[l]; var lineDims = this.calculateLabelDimensions(ele, line); var lineW = lineDims.width; if (overflowAny) { var processedLine = line.split('').join(zwsp); line = processedLine; } if (lineW > maxW) { // line is too long var separatorMatches = line.matchAll(separatorRegex); var subline = ''; var previousIndex = 0; // Add fake match var _iterator = _createForOfIteratorHelper(separatorMatches), _step; try { for (_iterator.s(); !(_step = _iterator.n()).done;) { var separatorMatch = _step.value; var wordSeparator = separatorMatch[0]; var word = line.substring(previousIndex, separatorMatch.index); previousIndex = separatorMatch.index + wordSeparator.length; var testLine = subline.length === 0 ? word : subline + word + wordSeparator; var testDims = this.calculateLabelDimensions(ele, testLine); var testW = testDims.width; if (testW <= maxW) { // word fits on current line subline += word + wordSeparator; } else { // word starts new line if (subline) { wrappedLines.push(subline); } subline = word + wordSeparator; } } // if there's remaining text, put it in a wrapped line } catch (err) { _iterator.e(err); } finally { _iterator.f(); } if (!subline.match(/^[\s\u200b]+$/)) { wrappedLines.push(subline); } } else { // line is already short enough wrappedLines.push(line); } } // for rscratch('labelWrapCachedLines', wrappedLines); text = rscratch('labelWrapCachedText', wrappedLines.join('\n')); rscratch('labelWrapKey', labelKey); } else if (wrapStyle === 'ellipsis') { var _maxW = ele.pstyle('text-max-width').pfValue; var ellipsized = ''; var ellipsis = "\u2026"; var incLastCh = false; if (this.calculateLabelDimensions(ele, text).width < _maxW) { // the label already fits return text; } for (var i = 0; i < text.length; i++) { var widthWithNextCh = this.calculateLabelDimensions(ele, ellipsized + text[i] + ellipsis).width; if (widthWithNextCh > _maxW) { break; } ellipsized += text[i]; if (i === text.length - 1) { incLastCh = true; } } if (!incLastCh) { ellipsized += ellipsis; } return ellipsized; } // if ellipsize return text; }; BRp$9.getLabelJustification = function (ele) { var justification = ele.pstyle('text-justification').strValue; var textHalign = ele.pstyle('text-halign').strValue; if (justification === 'auto') { if (ele.isNode()) { switch (textHalign) { case 'left': return 'right'; case 'right': return 'left'; default: return 'center'; } } else { return 'center'; } } else { return justification; } }; BRp$9.calculateLabelDimensions = function (ele, text) { var r = this; var containerWindow = r.cy.window(); var document = containerWindow.document; var cacheKey = hashString(text, ele._private.labelDimsKey); var cache = r.labelDimCache || (r.labelDimCache = []); var existingVal = cache[cacheKey]; if (existingVal != null) { return existingVal; } var padding = 0; // add padding around text dims, as the measurement isn't that accurate var fStyle = ele.pstyle('font-style').strValue; var size = ele.pstyle('font-size').pfValue; var family = ele.pstyle('font-family').strValue; var weight = ele.pstyle('font-weight').strValue; var canvas = this.labelCalcCanvas; var c2d = this.labelCalcCanvasContext; if (!canvas) { canvas = this.labelCalcCanvas = document.createElement('canvas'); c2d = this.labelCalcCanvasContext = canvas.getContext('2d'); var ds = canvas.style; ds.position = 'absolute'; ds.left = '-9999px'; ds.top = '-9999px'; ds.zIndex = '-1'; ds.visibility = 'hidden'; ds.pointerEvents = 'none'; } c2d.font = "".concat(fStyle, " ").concat(weight, " ").concat(size, "px ").concat(family); var width = 0; var height = 0; var lines = text.split('\n'); for (var i = 0; i < lines.length; i++) { var line = lines[i]; var metrics = c2d.measureText(line); var w = Math.ceil(metrics.width); var h = size; width = Math.max(w, width); height += h; } width += padding; height += padding; return cache[cacheKey] = { width: width, height: height }; }; BRp$9.calculateLabelAngle = function (ele, prefix) { var _p = ele._private; var rs = _p.rscratch; var isEdge = ele.isEdge(); var prefixDash = prefix ? prefix + '-' : ''; var rot = ele.pstyle(prefixDash + 'text-rotation'); var rotStr = rot.strValue; if (rotStr === 'none') { return 0; } else if (isEdge && rotStr === 'autorotate') { return rs.labelAutoAngle; } else if (rotStr === 'autorotate') { return 0; } else { return rot.pfValue; } }; BRp$9.calculateLabelAngles = function (ele) { var r = this; var isEdge = ele.isEdge(); var _p = ele._private; var rs = _p.rscratch; rs.labelAngle = r.calculateLabelAngle(ele); if (isEdge) { rs.sourceLabelAngle = r.calculateLabelAngle(ele, 'source'); rs.targetLabelAngle = r.calculateLabelAngle(ele, 'target'); } }; var BRp$8 = {}; var TOO_SMALL_CUT_RECT = 28; var warnedCutRect = false; BRp$8.getNodeShape = function (node) { var r = this; var shape = node.pstyle('shape').value; if (shape === 'cutrectangle' && (node.width() < TOO_SMALL_CUT_RECT || node.height() < TOO_SMALL_CUT_RECT)) { if (!warnedCutRect) { warn('The `cutrectangle` node shape can not be used at small sizes so `rectangle` is used instead'); warnedCutRect = true; } return 'rectangle'; } if (node.isParent()) { if (shape === 'rectangle' || shape === 'roundrectangle' || shape === 'round-rectangle' || shape === 'cutrectangle' || shape === 'cut-rectangle' || shape === 'barrel') { return shape; } else { return 'rectangle'; } } if (shape === 'polygon') { var points = node.pstyle('shape-polygon-points').value; return r.nodeShapes.makePolygon(points).name; } return shape; }; var BRp$7 = {}; BRp$7.registerCalculationListeners = function () { var cy = this.cy; var elesToUpdate = cy.collection(); var r = this; var enqueue = function enqueue(eles) { var dirtyStyleCaches = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; elesToUpdate.merge(eles); if (dirtyStyleCaches) { for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var _p = ele._private; var rstyle = _p.rstyle; rstyle.clean = false; rstyle.cleanConnected = false; } } }; r.binder(cy).on('bounds.* dirty.*', function onDirtyBounds(e) { var ele = e.target; enqueue(ele); }).on('style.* background.*', function onDirtyStyle(e) { var ele = e.target; enqueue(ele, false); }); var updateEleCalcs = function updateEleCalcs(willDraw) { if (willDraw) { var fns = r.onUpdateEleCalcsFns; // because we need to have up-to-date style (e.g. stylesheet mappers) // before calculating rendered style (and pstyle might not be called yet) elesToUpdate.cleanStyle(); for (var i = 0; i < elesToUpdate.length; i++) { var ele = elesToUpdate[i]; var rstyle = ele._private.rstyle; if (ele.isNode() && !rstyle.cleanConnected) { enqueue(ele.connectedEdges()); rstyle.cleanConnected = true; } } if (fns) { for (var _i = 0; _i < fns.length; _i++) { var fn = fns[_i]; fn(willDraw, elesToUpdate); } } r.recalculateRenderedStyle(elesToUpdate); elesToUpdate = cy.collection(); } }; r.flushRenderedStyleQueue = function () { updateEleCalcs(true); }; r.beforeRender(updateEleCalcs, r.beforeRenderPriorities.eleCalcs); }; BRp$7.onUpdateEleCalcs = function (fn) { var fns = this.onUpdateEleCalcsFns = this.onUpdateEleCalcsFns || []; fns.push(fn); }; BRp$7.recalculateRenderedStyle = function (eles, useCache) { var isCleanConnected = function isCleanConnected(ele) { return ele._private.rstyle.cleanConnected; }; var edges = []; var nodes = []; // the renderer can't be used for calcs when destroyed, e.g. ele.boundingBox() if (this.destroyed) { return; } // use cache by default for perf if (useCache === undefined) { useCache = true; } for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var _p = ele._private; var rstyle = _p.rstyle; // an edge may be implicitly dirty b/c of one of its connected nodes // (and a request for recalc may come in between frames) if (ele.isEdge() && (!isCleanConnected(ele.source()) || !isCleanConnected(ele.target()))) { rstyle.clean = false; } // only update if dirty and in graph if (useCache && rstyle.clean || ele.removed()) { continue; } // only update if not display: none if (ele.pstyle('display').value === 'none') { continue; } if (_p.group === 'nodes') { nodes.push(ele); } else { // edges edges.push(ele); } rstyle.clean = true; } // update node data from projections for (var _i2 = 0; _i2 < nodes.length; _i2++) { var _ele = nodes[_i2]; var _p2 = _ele._private; var _rstyle = _p2.rstyle; var pos = _ele.position(); this.recalculateNodeLabelProjection(_ele); _rstyle.nodeX = pos.x; _rstyle.nodeY = pos.y; _rstyle.nodeW = _ele.pstyle('width').pfValue; _rstyle.nodeH = _ele.pstyle('height').pfValue; } this.recalculateEdgeProjections(edges); // update edge data from projections for (var _i3 = 0; _i3 < edges.length; _i3++) { var _ele2 = edges[_i3]; var _p3 = _ele2._private; var _rstyle2 = _p3.rstyle; var rs = _p3.rscratch; // update rstyle positions _rstyle2.srcX = rs.arrowStartX; _rstyle2.srcY = rs.arrowStartY; _rstyle2.tgtX = rs.arrowEndX; _rstyle2.tgtY = rs.arrowEndY; _rstyle2.midX = rs.midX; _rstyle2.midY = rs.midY; _rstyle2.labelAngle = rs.labelAngle; _rstyle2.sourceLabelAngle = rs.sourceLabelAngle; _rstyle2.targetLabelAngle = rs.targetLabelAngle; } }; var BRp$6 = {}; BRp$6.updateCachedGrabbedEles = function () { var eles = this.cachedZSortedEles; if (!eles) { // just let this be recalculated on the next z sort tick return; } eles.drag = []; eles.nondrag = []; var grabTargets = []; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var rs = ele._private.rscratch; if (ele.grabbed() && !ele.isParent()) { grabTargets.push(ele); } else if (rs.inDragLayer) { eles.drag.push(ele); } else { eles.nondrag.push(ele); } } // put the grab target nodes last so it's on top of its neighbourhood for (var i = 0; i < grabTargets.length; i++) { var ele = grabTargets[i]; eles.drag.push(ele); } }; BRp$6.invalidateCachedZSortedEles = function () { this.cachedZSortedEles = null; }; BRp$6.getCachedZSortedEles = function (forceRecalc) { if (forceRecalc || !this.cachedZSortedEles) { var eles = this.cy.mutableElements().toArray(); eles.sort(zIndexSort); eles.interactive = eles.filter(function (ele) { return ele.interactive(); }); this.cachedZSortedEles = eles; this.updateCachedGrabbedEles(); } else { eles = this.cachedZSortedEles; } return eles; }; var BRp$5 = {}; [BRp$e, BRp$d, BRp$c, BRp$b, BRp$a, BRp$9, BRp$8, BRp$7, BRp$6].forEach(function (props) { extend(BRp$5, props); }); var BRp$4 = {}; BRp$4.getCachedImage = function (url, crossOrigin, onLoad) { var r = this; var imageCache = r.imageCache = r.imageCache || {}; var cache = imageCache[url]; if (cache) { if (!cache.image.complete) { cache.image.addEventListener('load', onLoad); } return cache.image; } else { cache = imageCache[url] = imageCache[url] || {}; var image = cache.image = new Image(); // eslint-disable-line no-undef image.addEventListener('load', onLoad); image.addEventListener('error', function () { image.error = true; }); // #1582 safari doesn't load data uris with crossOrigin properly // https://bugs.webkit.org/show_bug.cgi?id=123978 var dataUriPrefix = 'data:'; var isDataUri = url.substring(0, dataUriPrefix.length).toLowerCase() === dataUriPrefix; if (!isDataUri) { // if crossorigin is 'null'(stringified), then manually set it to null crossOrigin = crossOrigin === 'null' ? null : crossOrigin; image.crossOrigin = crossOrigin; // prevent tainted canvas } image.src = url; return image; } }; var BRp$3 = {}; /* global document, ResizeObserver, MutationObserver */ BRp$3.registerBinding = function (target, event, handler, useCapture) { // eslint-disable-line no-unused-vars var args = Array.prototype.slice.apply(arguments, [1]); // copy var b = this.binder(target); return b.on.apply(b, args); }; BRp$3.binder = function (tgt) { var r = this; var containerWindow = r.cy.window(); var tgtIsDom = tgt === containerWindow || tgt === containerWindow.document || tgt === containerWindow.document.body || domElement(tgt); if (r.supportsPassiveEvents == null) { // from https://github.com/WICG/EventListenerOptions/blob/gh-pages/explainer.md#feature-detection var supportsPassive = false; try { var opts = Object.defineProperty({}, 'passive', { get: function get() { supportsPassive = true; return true; } }); containerWindow.addEventListener('test', null, opts); } catch (err) { // not supported } r.supportsPassiveEvents = supportsPassive; } var on = function on(event, handler, useCapture) { var args = Array.prototype.slice.call(arguments); if (tgtIsDom && r.supportsPassiveEvents) { // replace useCapture w/ opts obj args[2] = { capture: useCapture != null ? useCapture : false, passive: false, once: false }; } r.bindings.push({ target: tgt, args: args }); (tgt.addEventListener || tgt.on).apply(tgt, args); return this; }; return { on: on, addEventListener: on, addListener: on, bind: on }; }; BRp$3.nodeIsDraggable = function (node) { return node && node.isNode() && !node.locked() && node.grabbable(); }; BRp$3.nodeIsGrabbable = function (node) { return this.nodeIsDraggable(node) && node.interactive(); }; BRp$3.load = function () { var r = this; var containerWindow = r.cy.window(); var isSelected = function isSelected(ele) { return ele.selected(); }; var triggerEvents = function triggerEvents(target, names, e, position) { if (target == null) { target = r.cy; } for (var i = 0; i < names.length; i++) { var name = names[i]; target.emit({ originalEvent: e, type: name, position: position }); } }; var isMultSelKeyDown = function isMultSelKeyDown(e) { return e.shiftKey || e.metaKey || e.ctrlKey; // maybe e.altKey }; var allowPanningPassthrough = function allowPanningPassthrough(down, downs) { var allowPassthrough = true; if (r.cy.hasCompoundNodes() && down && down.pannable()) { // a grabbable compound node below the ele => no passthrough panning for (var i = 0; downs && i < downs.length; i++) { var down = downs[i]; //if any parent node in event hierarchy isn't pannable, reject passthrough if (down.isNode() && down.isParent() && !down.pannable()) { allowPassthrough = false; break; } } } else { allowPassthrough = true; } return allowPassthrough; }; var setGrabbed = function setGrabbed(ele) { ele[0]._private.grabbed = true; }; var setFreed = function setFreed(ele) { ele[0]._private.grabbed = false; }; var setInDragLayer = function setInDragLayer(ele) { ele[0]._private.rscratch.inDragLayer = true; }; var setOutDragLayer = function setOutDragLayer(ele) { ele[0]._private.rscratch.inDragLayer = false; }; var setGrabTarget = function setGrabTarget(ele) { ele[0]._private.rscratch.isGrabTarget = true; }; var removeGrabTarget = function removeGrabTarget(ele) { ele[0]._private.rscratch.isGrabTarget = false; }; var addToDragList = function addToDragList(ele, opts) { var list = opts.addToList; var listHasEle = list.has(ele); if (!listHasEle && ele.grabbable() && !ele.locked()) { list.merge(ele); setGrabbed(ele); } }; // helper function to determine which child nodes and inner edges // of a compound node to be dragged as well as the grabbed and selected nodes var addDescendantsToDrag = function addDescendantsToDrag(node, opts) { if (!node.cy().hasCompoundNodes()) { return; } if (opts.inDragLayer == null && opts.addToList == null) { return; } // nothing to do var innerNodes = node.descendants(); if (opts.inDragLayer) { innerNodes.forEach(setInDragLayer); innerNodes.connectedEdges().forEach(setInDragLayer); } if (opts.addToList) { addToDragList(innerNodes, opts); } }; // adds the given nodes and its neighbourhood to the drag layer var addNodesToDrag = function addNodesToDrag(nodes, opts) { opts = opts || {}; var hasCompoundNodes = nodes.cy().hasCompoundNodes(); if (opts.inDragLayer) { nodes.forEach(setInDragLayer); nodes.neighborhood().stdFilter(function (ele) { return !hasCompoundNodes || ele.isEdge(); }).forEach(setInDragLayer); } if (opts.addToList) { nodes.forEach(function (ele) { addToDragList(ele, opts); }); } addDescendantsToDrag(nodes, opts); // always add to drag // also add nodes and edges related to the topmost ancestor updateAncestorsInDragLayer(nodes, { inDragLayer: opts.inDragLayer }); r.updateCachedGrabbedEles(); }; var addNodeToDrag = addNodesToDrag; var freeDraggedElements = function freeDraggedElements(grabbedEles) { if (!grabbedEles) { return; } // just go over all elements rather than doing a bunch of (possibly expensive) traversals r.getCachedZSortedEles().forEach(function (ele) { setFreed(ele); setOutDragLayer(ele); removeGrabTarget(ele); }); r.updateCachedGrabbedEles(); }; // helper function to determine which ancestor nodes and edges should go // to the drag layer (or should be removed from drag layer). var updateAncestorsInDragLayer = function updateAncestorsInDragLayer(node, opts) { if (opts.inDragLayer == null && opts.addToList == null) { return; } // nothing to do if (!node.cy().hasCompoundNodes()) { return; } // find top-level parent var parent = node.ancestors().orphans(); // no parent node: no nodes to add to the drag layer if (parent.same(node)) { return; } var nodes = parent.descendants().spawnSelf().merge(parent).unmerge(node).unmerge(node.descendants()); var edges = nodes.connectedEdges(); if (opts.inDragLayer) { edges.forEach(setInDragLayer); nodes.forEach(setInDragLayer); } if (opts.addToList) { nodes.forEach(function (ele) { addToDragList(ele, opts); }); } }; var blurActiveDomElement = function blurActiveDomElement() { if (document.activeElement != null && document.activeElement.blur != null) { document.activeElement.blur(); } }; var haveMutationsApi = typeof MutationObserver !== 'undefined'; var haveResizeObserverApi = typeof ResizeObserver !== 'undefined'; // watch for when the cy container is removed from the dom if (haveMutationsApi) { r.removeObserver = new MutationObserver(function (mutns) { // eslint-disable-line no-undef for (var i = 0; i < mutns.length; i++) { var mutn = mutns[i]; var rNodes = mutn.removedNodes; if (rNodes) { for (var j = 0; j < rNodes.length; j++) { var rNode = rNodes[j]; if (rNode === r.container) { r.destroy(); break; } } } } }); if (r.container.parentNode) { r.removeObserver.observe(r.container.parentNode, { childList: true }); } } else { r.registerBinding(r.container, 'DOMNodeRemoved', function (e) { // eslint-disable-line no-unused-vars r.destroy(); }); } var onResize = debounce_1(function () { r.cy.resize(); }, 100); if (haveMutationsApi) { r.styleObserver = new MutationObserver(onResize); // eslint-disable-line no-undef r.styleObserver.observe(r.container, { attributes: true }); } // auto resize r.registerBinding(containerWindow, 'resize', onResize); // eslint-disable-line no-undef if (haveResizeObserverApi) { r.resizeObserver = new ResizeObserver(onResize); // eslint-disable-line no-undef r.resizeObserver.observe(r.container); } var forEachUp = function forEachUp(domEle, fn) { while (domEle != null) { fn(domEle); domEle = domEle.parentNode; } }; var invalidateCoords = function invalidateCoords() { r.invalidateContainerClientCoordsCache(); }; forEachUp(r.container, function (domEle) { r.registerBinding(domEle, 'transitionend', invalidateCoords); r.registerBinding(domEle, 'animationend', invalidateCoords); r.registerBinding(domEle, 'scroll', invalidateCoords); }); // stop right click menu from appearing on cy r.registerBinding(r.container, 'contextmenu', function (e) { e.preventDefault(); }); var inBoxSelection = function inBoxSelection() { return r.selection[4] !== 0; }; var eventInContainer = function eventInContainer(e) { // save cycles if mouse events aren't to be captured var containerPageCoords = r.findContainerClientCoords(); var x = containerPageCoords[0]; var y = containerPageCoords[1]; var width = containerPageCoords[2]; var height = containerPageCoords[3]; var positions = e.touches ? e.touches : [e]; var atLeastOnePosInside = false; for (var i = 0; i < positions.length; i++) { var p = positions[i]; if (x <= p.clientX && p.clientX <= x + width && y <= p.clientY && p.clientY <= y + height) { atLeastOnePosInside = true; break; } } if (!atLeastOnePosInside) { return false; } var container = r.container; var target = e.target; var tParent = target.parentNode; var containerIsTarget = false; while (tParent) { if (tParent === container) { containerIsTarget = true; break; } tParent = tParent.parentNode; } if (!containerIsTarget) { return false; } // if target is outisde cy container, then this event is not for us return true; }; // Primary key r.registerBinding(r.container, 'mousedown', function mousedownHandler(e) { if (!eventInContainer(e)) { return; } e.preventDefault(); blurActiveDomElement(); r.hoverData.capture = true; r.hoverData.which = e.which; var cy = r.cy; var gpos = [e.clientX, e.clientY]; var pos = r.projectIntoViewport(gpos[0], gpos[1]); var select = r.selection; var nears = r.findNearestElements(pos[0], pos[1], true, false); var near = nears[0]; var draggedElements = r.dragData.possibleDragElements; r.hoverData.mdownPos = pos; r.hoverData.mdownGPos = gpos; var checkForTaphold = function checkForTaphold() { r.hoverData.tapholdCancelled = false; clearTimeout(r.hoverData.tapholdTimeout); r.hoverData.tapholdTimeout = setTimeout(function () { if (r.hoverData.tapholdCancelled) { return; } else { var ele = r.hoverData.down; if (ele) { ele.emit({ originalEvent: e, type: 'taphold', position: { x: pos[0], y: pos[1] } }); } else { cy.emit({ originalEvent: e, type: 'taphold', position: { x: pos[0], y: pos[1] } }); } } }, r.tapholdDuration); }; // Right click button if (e.which == 3) { r.hoverData.cxtStarted = true; var cxtEvt = { originalEvent: e, type: 'cxttapstart', position: { x: pos[0], y: pos[1] } }; if (near) { near.activate(); near.emit(cxtEvt); r.hoverData.down = near; } else { cy.emit(cxtEvt); } r.hoverData.downTime = new Date().getTime(); r.hoverData.cxtDragged = false; // Primary button } else if (e.which == 1) { if (near) { near.activate(); } // Element dragging { // If something is under the cursor and it is draggable, prepare to grab it if (near != null) { if (r.nodeIsGrabbable(near)) { var makeEvent = function makeEvent(type) { return { originalEvent: e, type: type, position: { x: pos[0], y: pos[1] } }; }; var triggerGrab = function triggerGrab(ele) { ele.emit(makeEvent('grab')); }; setGrabTarget(near); if (!near.selected()) { draggedElements = r.dragData.possibleDragElements = cy.collection(); addNodeToDrag(near, { addToList: draggedElements }); near.emit(makeEvent('grabon')).emit(makeEvent('grab')); } else { draggedElements = r.dragData.possibleDragElements = cy.collection(); var selectedNodes = cy.$(function (ele) { return ele.isNode() && ele.selected() && r.nodeIsGrabbable(ele); }); addNodesToDrag(selectedNodes, { addToList: draggedElements }); near.emit(makeEvent('grabon')); selectedNodes.forEach(triggerGrab); } r.redrawHint('eles', true); r.redrawHint('drag', true); } } r.hoverData.down = near; r.hoverData.downs = nears; r.hoverData.downTime = new Date().getTime(); } triggerEvents(near, ['mousedown', 'tapstart', 'vmousedown'], e, { x: pos[0], y: pos[1] }); if (near == null) { select[4] = 1; r.data.bgActivePosistion = { x: pos[0], y: pos[1] }; r.redrawHint('select', true); r.redraw(); } else if (near.pannable()) { select[4] = 1; // for future pan } checkForTaphold(); } // Initialize selection box coordinates select[0] = select[2] = pos[0]; select[1] = select[3] = pos[1]; }, false); r.registerBinding(containerWindow, 'mousemove', function mousemoveHandler(e) { // eslint-disable-line no-undef var capture = r.hoverData.capture; if (!capture && !eventInContainer(e)) { return; } var preventDefault = false; var cy = r.cy; var zoom = cy.zoom(); var gpos = [e.clientX, e.clientY]; var pos = r.projectIntoViewport(gpos[0], gpos[1]); var mdownPos = r.hoverData.mdownPos; var mdownGPos = r.hoverData.mdownGPos; var select = r.selection; var near = null; if (!r.hoverData.draggingEles && !r.hoverData.dragging && !r.hoverData.selecting) { near = r.findNearestElement(pos[0], pos[1], true, false); } var last = r.hoverData.last; var down = r.hoverData.down; var disp = [pos[0] - select[2], pos[1] - select[3]]; var draggedElements = r.dragData.possibleDragElements; var isOverThresholdDrag; if (mdownGPos) { var dx = gpos[0] - mdownGPos[0]; var dx2 = dx * dx; var dy = gpos[1] - mdownGPos[1]; var dy2 = dy * dy; var dist2 = dx2 + dy2; r.hoverData.isOverThresholdDrag = isOverThresholdDrag = dist2 >= r.desktopTapThreshold2; } var multSelKeyDown = isMultSelKeyDown(e); if (isOverThresholdDrag) { r.hoverData.tapholdCancelled = true; } var updateDragDelta = function updateDragDelta() { var dragDelta = r.hoverData.dragDelta = r.hoverData.dragDelta || []; if (dragDelta.length === 0) { dragDelta.push(disp[0]); dragDelta.push(disp[1]); } else { dragDelta[0] += disp[0]; dragDelta[1] += disp[1]; } }; preventDefault = true; triggerEvents(near, ['mousemove', 'vmousemove', 'tapdrag'], e, { x: pos[0], y: pos[1] }); var goIntoBoxMode = function goIntoBoxMode() { r.data.bgActivePosistion = undefined; if (!r.hoverData.selecting) { cy.emit({ originalEvent: e, type: 'boxstart', position: { x: pos[0], y: pos[1] } }); } select[4] = 1; r.hoverData.selecting = true; r.redrawHint('select', true); r.redraw(); }; // trigger context drag if rmouse down if (r.hoverData.which === 3) { // but only if over threshold if (isOverThresholdDrag) { var cxtEvt = { originalEvent: e, type: 'cxtdrag', position: { x: pos[0], y: pos[1] } }; if (down) { down.emit(cxtEvt); } else { cy.emit(cxtEvt); } r.hoverData.cxtDragged = true; if (!r.hoverData.cxtOver || near !== r.hoverData.cxtOver) { if (r.hoverData.cxtOver) { r.hoverData.cxtOver.emit({ originalEvent: e, type: 'cxtdragout', position: { x: pos[0], y: pos[1] } }); } r.hoverData.cxtOver = near; if (near) { near.emit({ originalEvent: e, type: 'cxtdragover', position: { x: pos[0], y: pos[1] } }); } } } // Check if we are drag panning the entire graph } else if (r.hoverData.dragging) { preventDefault = true; if (cy.panningEnabled() && cy.userPanningEnabled()) { var deltaP; if (r.hoverData.justStartedPan) { var mdPos = r.hoverData.mdownPos; deltaP = { x: (pos[0] - mdPos[0]) * zoom, y: (pos[1] - mdPos[1]) * zoom }; r.hoverData.justStartedPan = false; } else { deltaP = { x: disp[0] * zoom, y: disp[1] * zoom }; } cy.panBy(deltaP); cy.emit('dragpan'); r.hoverData.dragged = true; } // Needs reproject due to pan changing viewport pos = r.projectIntoViewport(e.clientX, e.clientY); // Checks primary button down & out of time & mouse not moved much } else if (select[4] == 1 && (down == null || down.pannable())) { if (isOverThresholdDrag) { if (!r.hoverData.dragging && cy.boxSelectionEnabled() && (multSelKeyDown || !cy.panningEnabled() || !cy.userPanningEnabled())) { goIntoBoxMode(); } else if (!r.hoverData.selecting && cy.panningEnabled() && cy.userPanningEnabled()) { var allowPassthrough = allowPanningPassthrough(down, r.hoverData.downs); if (allowPassthrough) { r.hoverData.dragging = true; r.hoverData.justStartedPan = true; select[4] = 0; r.data.bgActivePosistion = array2point(mdownPos); r.redrawHint('select', true); r.redraw(); } } if (down && down.pannable() && down.active()) { down.unactivate(); } } } else { if (down && down.pannable() && down.active()) { down.unactivate(); } if ((!down || !down.grabbed()) && near != last) { if (last) { triggerEvents(last, ['mouseout', 'tapdragout'], e, { x: pos[0], y: pos[1] }); } if (near) { triggerEvents(near, ['mouseover', 'tapdragover'], e, { x: pos[0], y: pos[1] }); } r.hoverData.last = near; } if (down) { if (isOverThresholdDrag) { // then we can take action if (cy.boxSelectionEnabled() && multSelKeyDown) { // then selection overrides if (down && down.grabbed()) { freeDraggedElements(draggedElements); down.emit('freeon'); draggedElements.emit('free'); if (r.dragData.didDrag) { down.emit('dragfreeon'); draggedElements.emit('dragfree'); } } goIntoBoxMode(); } else if (down && down.grabbed() && r.nodeIsDraggable(down)) { // drag node var justStartedDrag = !r.dragData.didDrag; if (justStartedDrag) { r.redrawHint('eles', true); } r.dragData.didDrag = true; // indicate that we actually did drag the node // now, add the elements to the drag layer if not done already if (!r.hoverData.draggingEles) { addNodesToDrag(draggedElements, { inDragLayer: true }); } var totalShift = { x: 0, y: 0 }; if (number$1(disp[0]) && number$1(disp[1])) { totalShift.x += disp[0]; totalShift.y += disp[1]; if (justStartedDrag) { var dragDelta = r.hoverData.dragDelta; if (dragDelta && number$1(dragDelta[0]) && number$1(dragDelta[1])) { totalShift.x += dragDelta[0]; totalShift.y += dragDelta[1]; } } } r.hoverData.draggingEles = true; draggedElements.silentShift(totalShift).emit('position drag'); r.redrawHint('drag', true); r.redraw(); } } else { // otherwise save drag delta for when we actually start dragging so the relative grab pos is constant updateDragDelta(); } } // prevent the dragging from triggering text selection on the page preventDefault = true; } select[2] = pos[0]; select[3] = pos[1]; if (preventDefault) { if (e.stopPropagation) e.stopPropagation(); if (e.preventDefault) e.preventDefault(); return false; } }, false); var clickTimeout, didDoubleClick, prevClickTimeStamp; r.registerBinding(containerWindow, 'mouseup', function mouseupHandler(e) { // eslint-disable-line no-undef var capture = r.hoverData.capture; if (!capture) { return; } r.hoverData.capture = false; var cy = r.cy; var pos = r.projectIntoViewport(e.clientX, e.clientY); var select = r.selection; var near = r.findNearestElement(pos[0], pos[1], true, false); var draggedElements = r.dragData.possibleDragElements; var down = r.hoverData.down; var multSelKeyDown = isMultSelKeyDown(e); if (r.data.bgActivePosistion) { r.redrawHint('select', true); r.redraw(); } r.hoverData.tapholdCancelled = true; r.data.bgActivePosistion = undefined; // not active bg now if (down) { down.unactivate(); } if (r.hoverData.which === 3) { var cxtEvt = { originalEvent: e, type: 'cxttapend', position: { x: pos[0], y: pos[1] } }; if (down) { down.emit(cxtEvt); } else { cy.emit(cxtEvt); } if (!r.hoverData.cxtDragged) { var cxtTap = { originalEvent: e, type: 'cxttap', position: { x: pos[0], y: pos[1] } }; if (down) { down.emit(cxtTap); } else { cy.emit(cxtTap); } } r.hoverData.cxtDragged = false; r.hoverData.which = null; } else if (r.hoverData.which === 1) { triggerEvents(near, ['mouseup', 'tapend', 'vmouseup'], e, { x: pos[0], y: pos[1] }); if (!r.dragData.didDrag && // didn't move a node around !r.hoverData.dragged && // didn't pan !r.hoverData.selecting && // not box selection !r.hoverData.isOverThresholdDrag // didn't move too much ) { triggerEvents(down, ["click", "tap", "vclick"], e, { x: pos[0], y: pos[1] }); didDoubleClick = false; if (e.timeStamp - prevClickTimeStamp <= cy.multiClickDebounceTime()) { clickTimeout && clearTimeout(clickTimeout); didDoubleClick = true; prevClickTimeStamp = null; triggerEvents(down, ["dblclick", "dbltap", "vdblclick"], e, { x: pos[0], y: pos[1] }); } else { clickTimeout = setTimeout(function () { if (didDoubleClick) return; triggerEvents(down, ["oneclick", "onetap", "voneclick"], e, { x: pos[0], y: pos[1] }); }, cy.multiClickDebounceTime()); prevClickTimeStamp = e.timeStamp; } } // Deselect all elements if nothing is currently under the mouse cursor and we aren't dragging something if (down == null // not mousedown on node && !r.dragData.didDrag // didn't move the node around && !r.hoverData.selecting // not box selection && !r.hoverData.dragged // didn't pan && !isMultSelKeyDown(e)) { cy.$(isSelected).unselect(['tapunselect']); if (draggedElements.length > 0) { r.redrawHint('eles', true); } r.dragData.possibleDragElements = draggedElements = cy.collection(); } // Single selection if (near == down && !r.dragData.didDrag && !r.hoverData.selecting) { if (near != null && near._private.selectable) { if (r.hoverData.dragging) ; else if (cy.selectionType() === 'additive' || multSelKeyDown) { if (near.selected()) { near.unselect(['tapunselect']); } else { near.select(['tapselect']); } } else { if (!multSelKeyDown) { cy.$(isSelected).unmerge(near).unselect(['tapunselect']); near.select(['tapselect']); } } r.redrawHint('eles', true); } } if (r.hoverData.selecting) { var box = cy.collection(r.getAllInBox(select[0], select[1], select[2], select[3])); r.redrawHint('select', true); if (box.length > 0) { r.redrawHint('eles', true); } cy.emit({ type: 'boxend', originalEvent: e, position: { x: pos[0], y: pos[1] } }); var eleWouldBeSelected = function eleWouldBeSelected(ele) { return ele.selectable() && !ele.selected(); }; if (cy.selectionType() === 'additive') { box.emit('box').stdFilter(eleWouldBeSelected).select().emit('boxselect'); } else { if (!multSelKeyDown) { cy.$(isSelected).unmerge(box).unselect(); } box.emit('box').stdFilter(eleWouldBeSelected).select().emit('boxselect'); } // always need redraw in case eles unselectable r.redraw(); } // Cancel drag pan if (r.hoverData.dragging) { r.hoverData.dragging = false; r.redrawHint('select', true); r.redrawHint('eles', true); r.redraw(); } if (!select[4]) { r.redrawHint('drag', true); r.redrawHint('eles', true); var downWasGrabbed = down && down.grabbed(); freeDraggedElements(draggedElements); if (downWasGrabbed) { down.emit('freeon'); draggedElements.emit('free'); if (r.dragData.didDrag) { down.emit('dragfreeon'); draggedElements.emit('dragfree'); } } } } // else not right mouse select[4] = 0; r.hoverData.down = null; r.hoverData.cxtStarted = false; r.hoverData.draggingEles = false; r.hoverData.selecting = false; r.hoverData.isOverThresholdDrag = false; r.dragData.didDrag = false; r.hoverData.dragged = false; r.hoverData.dragDelta = []; r.hoverData.mdownPos = null; r.hoverData.mdownGPos = null; }, false); var wheelHandler = function wheelHandler(e) { if (r.scrollingPage) { return; } // while scrolling, ignore wheel-to-zoom var cy = r.cy; var zoom = cy.zoom(); var pan = cy.pan(); var pos = r.projectIntoViewport(e.clientX, e.clientY); var rpos = [pos[0] * zoom + pan.x, pos[1] * zoom + pan.y]; if (r.hoverData.draggingEles || r.hoverData.dragging || r.hoverData.cxtStarted || inBoxSelection()) { // if pan dragging or cxt dragging, wheel movements make no zoom e.preventDefault(); return; } if (cy.panningEnabled() && cy.userPanningEnabled() && cy.zoomingEnabled() && cy.userZoomingEnabled()) { e.preventDefault(); r.data.wheelZooming = true; clearTimeout(r.data.wheelTimeout); r.data.wheelTimeout = setTimeout(function () { r.data.wheelZooming = false; r.redrawHint('eles', true); r.redraw(); }, 150); var diff; if (e.deltaY != null) { diff = e.deltaY / -250; } else if (e.wheelDeltaY != null) { diff = e.wheelDeltaY / 1000; } else { diff = e.wheelDelta / 1000; } diff = diff * r.wheelSensitivity; var needsWheelFix = e.deltaMode === 1; if (needsWheelFix) { // fixes slow wheel events on ff/linux and ff/windows diff *= 33; } var newZoom = cy.zoom() * Math.pow(10, diff); if (e.type === 'gesturechange') { newZoom = r.gestureStartZoom * e.scale; } cy.zoom({ level: newZoom, renderedPosition: { x: rpos[0], y: rpos[1] } }); cy.emit(e.type === 'gesturechange' ? 'pinchzoom' : 'scrollzoom'); } }; // Functions to help with whether mouse wheel should trigger zooming // -- r.registerBinding(r.container, 'wheel', wheelHandler, true); // disable nonstandard wheel events // r.registerBinding(r.container, 'mousewheel', wheelHandler, true); // r.registerBinding(r.container, 'DOMMouseScroll', wheelHandler, true); // r.registerBinding(r.container, 'MozMousePixelScroll', wheelHandler, true); // older firefox r.registerBinding(containerWindow, 'scroll', function scrollHandler(e) { // eslint-disable-line no-unused-vars r.scrollingPage = true; clearTimeout(r.scrollingPageTimeout); r.scrollingPageTimeout = setTimeout(function () { r.scrollingPage = false; }, 250); }, true); // desktop safari pinch to zoom start r.registerBinding(r.container, 'gesturestart', function gestureStartHandler(e) { r.gestureStartZoom = r.cy.zoom(); if (!r.hasTouchStarted) { // don't affect touch devices like iphone e.preventDefault(); } }, true); r.registerBinding(r.container, 'gesturechange', function (e) { if (!r.hasTouchStarted) { // don't affect touch devices like iphone wheelHandler(e); } }, true); // Functions to help with handling mouseout/mouseover on the Cytoscape container // Handle mouseout on Cytoscape container r.registerBinding(r.container, 'mouseout', function mouseOutHandler(e) { var pos = r.projectIntoViewport(e.clientX, e.clientY); r.cy.emit({ originalEvent: e, type: 'mouseout', position: { x: pos[0], y: pos[1] } }); }, false); r.registerBinding(r.container, 'mouseover', function mouseOverHandler(e) { var pos = r.projectIntoViewport(e.clientX, e.clientY); r.cy.emit({ originalEvent: e, type: 'mouseover', position: { x: pos[0], y: pos[1] } }); }, false); var f1x1, f1y1, f2x1, f2y1; // starting points for pinch-to-zoom var distance1, distance1Sq; // initial distance between finger 1 and finger 2 for pinch-to-zoom var center1, modelCenter1; // center point on start pinch to zoom var offsetLeft, offsetTop; var containerWidth, containerHeight; var twoFingersStartInside; var distance = function distance(x1, y1, x2, y2) { return Math.sqrt((x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1)); }; var distanceSq = function distanceSq(x1, y1, x2, y2) { return (x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1); }; var touchstartHandler; r.registerBinding(r.container, 'touchstart', touchstartHandler = function touchstartHandler(e) { r.hasTouchStarted = true; if (!eventInContainer(e)) { return; } blurActiveDomElement(); r.touchData.capture = true; r.data.bgActivePosistion = undefined; var cy = r.cy; var now = r.touchData.now; var earlier = r.touchData.earlier; if (e.touches[0]) { var pos = r.projectIntoViewport(e.touches[0].clientX, e.touches[0].clientY); now[0] = pos[0]; now[1] = pos[1]; } if (e.touches[1]) { var pos = r.projectIntoViewport(e.touches[1].clientX, e.touches[1].clientY); now[2] = pos[0]; now[3] = pos[1]; } if (e.touches[2]) { var pos = r.projectIntoViewport(e.touches[2].clientX, e.touches[2].clientY); now[4] = pos[0]; now[5] = pos[1]; } // record starting points for pinch-to-zoom if (e.touches[1]) { r.touchData.singleTouchMoved = true; freeDraggedElements(r.dragData.touchDragEles); var offsets = r.findContainerClientCoords(); offsetLeft = offsets[0]; offsetTop = offsets[1]; containerWidth = offsets[2]; containerHeight = offsets[3]; f1x1 = e.touches[0].clientX - offsetLeft; f1y1 = e.touches[0].clientY - offsetTop; f2x1 = e.touches[1].clientX - offsetLeft; f2y1 = e.touches[1].clientY - offsetTop; twoFingersStartInside = 0 <= f1x1 && f1x1 <= containerWidth && 0 <= f2x1 && f2x1 <= containerWidth && 0 <= f1y1 && f1y1 <= containerHeight && 0 <= f2y1 && f2y1 <= containerHeight; var pan = cy.pan(); var zoom = cy.zoom(); distance1 = distance(f1x1, f1y1, f2x1, f2y1); distance1Sq = distanceSq(f1x1, f1y1, f2x1, f2y1); center1 = [(f1x1 + f2x1) / 2, (f1y1 + f2y1) / 2]; modelCenter1 = [(center1[0] - pan.x) / zoom, (center1[1] - pan.y) / zoom]; // consider context tap var cxtDistThreshold = 200; var cxtDistThresholdSq = cxtDistThreshold * cxtDistThreshold; if (distance1Sq < cxtDistThresholdSq && !e.touches[2]) { var near1 = r.findNearestElement(now[0], now[1], true, true); var near2 = r.findNearestElement(now[2], now[3], true, true); if (near1 && near1.isNode()) { near1.activate().emit({ originalEvent: e, type: 'cxttapstart', position: { x: now[0], y: now[1] } }); r.touchData.start = near1; } else if (near2 && near2.isNode()) { near2.activate().emit({ originalEvent: e, type: 'cxttapstart', position: { x: now[0], y: now[1] } }); r.touchData.start = near2; } else { cy.emit({ originalEvent: e, type: 'cxttapstart', position: { x: now[0], y: now[1] } }); } if (r.touchData.start) { r.touchData.start._private.grabbed = false; } r.touchData.cxt = true; r.touchData.cxtDragged = false; r.data.bgActivePosistion = undefined; r.redraw(); return; } } if (e.touches[2]) { // ignore // safari on ios pans the page otherwise (normally you should be able to preventdefault on touchmove...) if (cy.boxSelectionEnabled()) { e.preventDefault(); } } else if (e.touches[1]) ; else if (e.touches[0]) { var nears = r.findNearestElements(now[0], now[1], true, true); var near = nears[0]; if (near != null) { near.activate(); r.touchData.start = near; r.touchData.starts = nears; if (r.nodeIsGrabbable(near)) { var draggedEles = r.dragData.touchDragEles = cy.collection(); var selectedNodes = null; r.redrawHint('eles', true); r.redrawHint('drag', true); if (near.selected()) { // reset drag elements, since near will be added again selectedNodes = cy.$(function (ele) { return ele.selected() && r.nodeIsGrabbable(ele); }); addNodesToDrag(selectedNodes, { addToList: draggedEles }); } else { addNodeToDrag(near, { addToList: draggedEles }); } setGrabTarget(near); var makeEvent = function makeEvent(type) { return { originalEvent: e, type: type, position: { x: now[0], y: now[1] } }; }; near.emit(makeEvent('grabon')); if (selectedNodes) { selectedNodes.forEach(function (n) { n.emit(makeEvent('grab')); }); } else { near.emit(makeEvent('grab')); } } } triggerEvents(near, ['touchstart', 'tapstart', 'vmousedown'], e, { x: now[0], y: now[1] }); if (near == null) { r.data.bgActivePosistion = { x: pos[0], y: pos[1] }; r.redrawHint('select', true); r.redraw(); } // Tap, taphold // ----- r.touchData.singleTouchMoved = false; r.touchData.singleTouchStartTime = +new Date(); clearTimeout(r.touchData.tapholdTimeout); r.touchData.tapholdTimeout = setTimeout(function () { if (r.touchData.singleTouchMoved === false && !r.pinching // if pinching, then taphold unselect shouldn't take effect && !r.touchData.selecting // box selection shouldn't allow taphold through ) { triggerEvents(r.touchData.start, ['taphold'], e, { x: now[0], y: now[1] }); } }, r.tapholdDuration); } if (e.touches.length >= 1) { var sPos = r.touchData.startPosition = [null, null, null, null, null, null]; for (var i = 0; i < now.length; i++) { sPos[i] = earlier[i] = now[i]; } var touch0 = e.touches[0]; r.touchData.startGPosition = [touch0.clientX, touch0.clientY]; } }, false); var touchmoveHandler; r.registerBinding(containerWindow, 'touchmove', touchmoveHandler = function touchmoveHandler(e) { // eslint-disable-line no-undef var capture = r.touchData.capture; if (!capture && !eventInContainer(e)) { return; } var select = r.selection; var cy = r.cy; var now = r.touchData.now; var earlier = r.touchData.earlier; var zoom = cy.zoom(); if (e.touches[0]) { var pos = r.projectIntoViewport(e.touches[0].clientX, e.touches[0].clientY); now[0] = pos[0]; now[1] = pos[1]; } if (e.touches[1]) { var pos = r.projectIntoViewport(e.touches[1].clientX, e.touches[1].clientY); now[2] = pos[0]; now[3] = pos[1]; } if (e.touches[2]) { var pos = r.projectIntoViewport(e.touches[2].clientX, e.touches[2].clientY); now[4] = pos[0]; now[5] = pos[1]; } var startGPos = r.touchData.startGPosition; var isOverThresholdDrag; if (capture && e.touches[0] && startGPos) { var disp = []; for (var j = 0; j < now.length; j++) { disp[j] = now[j] - earlier[j]; } var dx = e.touches[0].clientX - startGPos[0]; var dx2 = dx * dx; var dy = e.touches[0].clientY - startGPos[1]; var dy2 = dy * dy; var dist2 = dx2 + dy2; isOverThresholdDrag = dist2 >= r.touchTapThreshold2; } // context swipe cancelling if (capture && r.touchData.cxt) { e.preventDefault(); var f1x2 = e.touches[0].clientX - offsetLeft, f1y2 = e.touches[0].clientY - offsetTop; var f2x2 = e.touches[1].clientX - offsetLeft, f2y2 = e.touches[1].clientY - offsetTop; // var distance2 = distance( f1x2, f1y2, f2x2, f2y2 ); var distance2Sq = distanceSq(f1x2, f1y2, f2x2, f2y2); var factorSq = distance2Sq / distance1Sq; var distThreshold = 150; var distThresholdSq = distThreshold * distThreshold; var factorThreshold = 1.5; var factorThresholdSq = factorThreshold * factorThreshold; // cancel ctx gestures if the distance b/t the fingers increases if (factorSq >= factorThresholdSq || distance2Sq >= distThresholdSq) { r.touchData.cxt = false; r.data.bgActivePosistion = undefined; r.redrawHint('select', true); var cxtEvt = { originalEvent: e, type: 'cxttapend', position: { x: now[0], y: now[1] } }; if (r.touchData.start) { r.touchData.start.unactivate().emit(cxtEvt); r.touchData.start = null; } else { cy.emit(cxtEvt); } } } // context swipe if (capture && r.touchData.cxt) { var cxtEvt = { originalEvent: e, type: 'cxtdrag', position: { x: now[0], y: now[1] } }; r.data.bgActivePosistion = undefined; r.redrawHint('select', true); if (r.touchData.start) { r.touchData.start.emit(cxtEvt); } else { cy.emit(cxtEvt); } if (r.touchData.start) { r.touchData.start._private.grabbed = false; } r.touchData.cxtDragged = true; var near = r.findNearestElement(now[0], now[1], true, true); if (!r.touchData.cxtOver || near !== r.touchData.cxtOver) { if (r.touchData.cxtOver) { r.touchData.cxtOver.emit({ originalEvent: e, type: 'cxtdragout', position: { x: now[0], y: now[1] } }); } r.touchData.cxtOver = near; if (near) { near.emit({ originalEvent: e, type: 'cxtdragover', position: { x: now[0], y: now[1] } }); } } // box selection } else if (capture && e.touches[2] && cy.boxSelectionEnabled()) { e.preventDefault(); r.data.bgActivePosistion = undefined; this.lastThreeTouch = +new Date(); if (!r.touchData.selecting) { cy.emit({ originalEvent: e, type: 'boxstart', position: { x: now[0], y: now[1] } }); } r.touchData.selecting = true; r.touchData.didSelect = true; select[4] = 1; if (!select || select.length === 0 || select[0] === undefined) { select[0] = (now[0] + now[2] + now[4]) / 3; select[1] = (now[1] + now[3] + now[5]) / 3; select[2] = (now[0] + now[2] + now[4]) / 3 + 1; select[3] = (now[1] + now[3] + now[5]) / 3 + 1; } else { select[2] = (now[0] + now[2] + now[4]) / 3; select[3] = (now[1] + now[3] + now[5]) / 3; } r.redrawHint('select', true); r.redraw(); // pinch to zoom } else if (capture && e.touches[1] && !r.touchData.didSelect // don't allow box selection to degrade to pinch-to-zoom && cy.zoomingEnabled() && cy.panningEnabled() && cy.userZoomingEnabled() && cy.userPanningEnabled()) { // two fingers => pinch to zoom e.preventDefault(); r.data.bgActivePosistion = undefined; r.redrawHint('select', true); var draggedEles = r.dragData.touchDragEles; if (draggedEles) { r.redrawHint('drag', true); for (var i = 0; i < draggedEles.length; i++) { var de_p = draggedEles[i]._private; de_p.grabbed = false; de_p.rscratch.inDragLayer = false; } } var _start = r.touchData.start; // (x2, y2) for fingers 1 and 2 var f1x2 = e.touches[0].clientX - offsetLeft, f1y2 = e.touches[0].clientY - offsetTop; var f2x2 = e.touches[1].clientX - offsetLeft, f2y2 = e.touches[1].clientY - offsetTop; var distance2 = distance(f1x2, f1y2, f2x2, f2y2); // var distance2Sq = distanceSq( f1x2, f1y2, f2x2, f2y2 ); // var factor = Math.sqrt( distance2Sq ) / Math.sqrt( distance1Sq ); var factor = distance2 / distance1; if (twoFingersStartInside) { // delta finger1 var df1x = f1x2 - f1x1; var df1y = f1y2 - f1y1; // delta finger 2 var df2x = f2x2 - f2x1; var df2y = f2y2 - f2y1; // translation is the normalised vector of the two fingers movement // i.e. so pinching cancels out and moving together pans var tx = (df1x + df2x) / 2; var ty = (df1y + df2y) / 2; // now calculate the zoom var zoom1 = cy.zoom(); var zoom2 = zoom1 * factor; var pan1 = cy.pan(); // the model center point converted to the current rendered pos var ctrx = modelCenter1[0] * zoom1 + pan1.x; var ctry = modelCenter1[1] * zoom1 + pan1.y; var pan2 = { x: -zoom2 / zoom1 * (ctrx - pan1.x - tx) + ctrx, y: -zoom2 / zoom1 * (ctry - pan1.y - ty) + ctry }; // remove dragged eles if (_start && _start.active()) { var draggedEles = r.dragData.touchDragEles; freeDraggedElements(draggedEles); r.redrawHint('drag', true); r.redrawHint('eles', true); _start.unactivate().emit('freeon'); draggedEles.emit('free'); if (r.dragData.didDrag) { _start.emit('dragfreeon'); draggedEles.emit('dragfree'); } } cy.viewport({ zoom: zoom2, pan: pan2, cancelOnFailedZoom: true }); cy.emit('pinchzoom'); distance1 = distance2; f1x1 = f1x2; f1y1 = f1y2; f2x1 = f2x2; f2y1 = f2y2; r.pinching = true; } // Re-project if (e.touches[0]) { var pos = r.projectIntoViewport(e.touches[0].clientX, e.touches[0].clientY); now[0] = pos[0]; now[1] = pos[1]; } if (e.touches[1]) { var pos = r.projectIntoViewport(e.touches[1].clientX, e.touches[1].clientY); now[2] = pos[0]; now[3] = pos[1]; } if (e.touches[2]) { var pos = r.projectIntoViewport(e.touches[2].clientX, e.touches[2].clientY); now[4] = pos[0]; now[5] = pos[1]; } } else if (e.touches[0] && !r.touchData.didSelect // don't allow box selection to degrade to single finger events like panning ) { var start = r.touchData.start; var last = r.touchData.last; var near; if (!r.hoverData.draggingEles && !r.swipePanning) { near = r.findNearestElement(now[0], now[1], true, true); } if (capture && start != null) { e.preventDefault(); } // dragging nodes if (capture && start != null && r.nodeIsDraggable(start)) { if (isOverThresholdDrag) { // then dragging can happen var draggedEles = r.dragData.touchDragEles; var justStartedDrag = !r.dragData.didDrag; if (justStartedDrag) { addNodesToDrag(draggedEles, { inDragLayer: true }); } r.dragData.didDrag = true; var totalShift = { x: 0, y: 0 }; if (number$1(disp[0]) && number$1(disp[1])) { totalShift.x += disp[0]; totalShift.y += disp[1]; if (justStartedDrag) { r.redrawHint('eles', true); var dragDelta = r.touchData.dragDelta; if (dragDelta && number$1(dragDelta[0]) && number$1(dragDelta[1])) { totalShift.x += dragDelta[0]; totalShift.y += dragDelta[1]; } } } r.hoverData.draggingEles = true; draggedEles.silentShift(totalShift).emit('position drag'); r.redrawHint('drag', true); if (r.touchData.startPosition[0] == earlier[0] && r.touchData.startPosition[1] == earlier[1]) { r.redrawHint('eles', true); } r.redraw(); } else { // otherwise keep track of drag delta for later var dragDelta = r.touchData.dragDelta = r.touchData.dragDelta || []; if (dragDelta.length === 0) { dragDelta.push(disp[0]); dragDelta.push(disp[1]); } else { dragDelta[0] += disp[0]; dragDelta[1] += disp[1]; } } } // touchmove { triggerEvents(start || near, ['touchmove', 'tapdrag', 'vmousemove'], e, { x: now[0], y: now[1] }); if ((!start || !start.grabbed()) && near != last) { if (last) { last.emit({ originalEvent: e, type: 'tapdragout', position: { x: now[0], y: now[1] } }); } if (near) { near.emit({ originalEvent: e, type: 'tapdragover', position: { x: now[0], y: now[1] } }); } } r.touchData.last = near; } // check to cancel taphold if (capture) { for (var i = 0; i < now.length; i++) { if (now[i] && r.touchData.startPosition[i] && isOverThresholdDrag) { r.touchData.singleTouchMoved = true; } } } // panning if (capture && (start == null || start.pannable()) && cy.panningEnabled() && cy.userPanningEnabled()) { var allowPassthrough = allowPanningPassthrough(start, r.touchData.starts); if (allowPassthrough) { e.preventDefault(); if (!r.data.bgActivePosistion) { r.data.bgActivePosistion = array2point(r.touchData.startPosition); } if (r.swipePanning) { cy.panBy({ x: disp[0] * zoom, y: disp[1] * zoom }); cy.emit('dragpan'); } else if (isOverThresholdDrag) { r.swipePanning = true; cy.panBy({ x: dx * zoom, y: dy * zoom }); cy.emit('dragpan'); if (start) { start.unactivate(); r.redrawHint('select', true); r.touchData.start = null; } } } // Re-project var pos = r.projectIntoViewport(e.touches[0].clientX, e.touches[0].clientY); now[0] = pos[0]; now[1] = pos[1]; } } for (var j = 0; j < now.length; j++) { earlier[j] = now[j]; } // the active bg indicator should be removed when making a swipe that is neither for dragging nodes or panning if (capture && e.touches.length > 0 && !r.hoverData.draggingEles && !r.swipePanning && r.data.bgActivePosistion != null) { r.data.bgActivePosistion = undefined; r.redrawHint('select', true); r.redraw(); } }, false); var touchcancelHandler; r.registerBinding(containerWindow, 'touchcancel', touchcancelHandler = function touchcancelHandler(e) { // eslint-disable-line no-unused-vars var start = r.touchData.start; r.touchData.capture = false; if (start) { start.unactivate(); } }); var touchendHandler, didDoubleTouch, touchTimeout, prevTouchTimeStamp; r.registerBinding(containerWindow, 'touchend', touchendHandler = function touchendHandler(e) { // eslint-disable-line no-unused-vars var start = r.touchData.start; var capture = r.touchData.capture; if (capture) { if (e.touches.length === 0) { r.touchData.capture = false; } e.preventDefault(); } else { return; } var select = r.selection; r.swipePanning = false; r.hoverData.draggingEles = false; var cy = r.cy; var zoom = cy.zoom(); var now = r.touchData.now; var earlier = r.touchData.earlier; if (e.touches[0]) { var pos = r.projectIntoViewport(e.touches[0].clientX, e.touches[0].clientY); now[0] = pos[0]; now[1] = pos[1]; } if (e.touches[1]) { var pos = r.projectIntoViewport(e.touches[1].clientX, e.touches[1].clientY); now[2] = pos[0]; now[3] = pos[1]; } if (e.touches[2]) { var pos = r.projectIntoViewport(e.touches[2].clientX, e.touches[2].clientY); now[4] = pos[0]; now[5] = pos[1]; } if (start) { start.unactivate(); } var ctxTapend; if (r.touchData.cxt) { ctxTapend = { originalEvent: e, type: 'cxttapend', position: { x: now[0], y: now[1] } }; if (start) { start.emit(ctxTapend); } else { cy.emit(ctxTapend); } if (!r.touchData.cxtDragged) { var ctxTap = { originalEvent: e, type: 'cxttap', position: { x: now[0], y: now[1] } }; if (start) { start.emit(ctxTap); } else { cy.emit(ctxTap); } } if (r.touchData.start) { r.touchData.start._private.grabbed = false; } r.touchData.cxt = false; r.touchData.start = null; r.redraw(); return; } // no more box selection if we don't have three fingers if (!e.touches[2] && cy.boxSelectionEnabled() && r.touchData.selecting) { r.touchData.selecting = false; var box = cy.collection(r.getAllInBox(select[0], select[1], select[2], select[3])); select[0] = undefined; select[1] = undefined; select[2] = undefined; select[3] = undefined; select[4] = 0; r.redrawHint('select', true); cy.emit({ type: 'boxend', originalEvent: e, position: { x: now[0], y: now[1] } }); var eleWouldBeSelected = function eleWouldBeSelected(ele) { return ele.selectable() && !ele.selected(); }; box.emit('box').stdFilter(eleWouldBeSelected).select().emit('boxselect'); if (box.nonempty()) { r.redrawHint('eles', true); } r.redraw(); } if (start != null) { start.unactivate(); } if (e.touches[2]) { r.data.bgActivePosistion = undefined; r.redrawHint('select', true); } else if (e.touches[1]) ; else if (e.touches[0]) ; else if (!e.touches[0]) { r.data.bgActivePosistion = undefined; r.redrawHint('select', true); var draggedEles = r.dragData.touchDragEles; if (start != null) { var startWasGrabbed = start._private.grabbed; freeDraggedElements(draggedEles); r.redrawHint('drag', true); r.redrawHint('eles', true); if (startWasGrabbed) { start.emit('freeon'); draggedEles.emit('free'); if (r.dragData.didDrag) { start.emit('dragfreeon'); draggedEles.emit('dragfree'); } } triggerEvents(start, ['touchend', 'tapend', 'vmouseup', 'tapdragout'], e, { x: now[0], y: now[1] }); start.unactivate(); r.touchData.start = null; } else { var near = r.findNearestElement(now[0], now[1], true, true); triggerEvents(near, ['touchend', 'tapend', 'vmouseup', 'tapdragout'], e, { x: now[0], y: now[1] }); } var dx = r.touchData.startPosition[0] - now[0]; var dx2 = dx * dx; var dy = r.touchData.startPosition[1] - now[1]; var dy2 = dy * dy; var dist2 = dx2 + dy2; var rdist2 = dist2 * zoom * zoom; // Tap event, roughly same as mouse click event for touch if (!r.touchData.singleTouchMoved) { if (!start) { cy.$(':selected').unselect(['tapunselect']); } triggerEvents(start, ['tap', 'vclick'], e, { x: now[0], y: now[1] }); didDoubleTouch = false; if (e.timeStamp - prevTouchTimeStamp <= cy.multiClickDebounceTime()) { touchTimeout && clearTimeout(touchTimeout); didDoubleTouch = true; prevTouchTimeStamp = null; triggerEvents(start, ['dbltap', 'vdblclick'], e, { x: now[0], y: now[1] }); } else { touchTimeout = setTimeout(function () { if (didDoubleTouch) return; triggerEvents(start, ['onetap', 'voneclick'], e, { x: now[0], y: now[1] }); }, cy.multiClickDebounceTime()); prevTouchTimeStamp = e.timeStamp; } } // Prepare to select the currently touched node, only if it hasn't been dragged past a certain distance if (start != null && !r.dragData.didDrag // didn't drag nodes around && start._private.selectable && rdist2 < r.touchTapThreshold2 && !r.pinching // pinch to zoom should not affect selection ) { if (cy.selectionType() === 'single') { cy.$(isSelected).unmerge(start).unselect(['tapunselect']); start.select(['tapselect']); } else { if (start.selected()) { start.unselect(['tapunselect']); } else { start.select(['tapselect']); } } r.redrawHint('eles', true); } r.touchData.singleTouchMoved = true; } for (var j = 0; j < now.length; j++) { earlier[j] = now[j]; } r.dragData.didDrag = false; // reset for next touchstart if (e.touches.length === 0) { r.touchData.dragDelta = []; r.touchData.startPosition = [null, null, null, null, null, null]; r.touchData.startGPosition = null; r.touchData.didSelect = false; } if (e.touches.length < 2) { if (e.touches.length === 1) { // the old start global pos'n may not be the same finger that remains r.touchData.startGPosition = [e.touches[0].clientX, e.touches[0].clientY]; } r.pinching = false; r.redrawHint('eles', true); r.redraw(); } //r.redraw(); }, false); // fallback compatibility layer for ms pointer events if (typeof TouchEvent === 'undefined') { var pointers = []; var makeTouch = function makeTouch(e) { return { clientX: e.clientX, clientY: e.clientY, force: 1, identifier: e.pointerId, pageX: e.pageX, pageY: e.pageY, radiusX: e.width / 2, radiusY: e.height / 2, screenX: e.screenX, screenY: e.screenY, target: e.target }; }; var makePointer = function makePointer(e) { return { event: e, touch: makeTouch(e) }; }; var addPointer = function addPointer(e) { pointers.push(makePointer(e)); }; var removePointer = function removePointer(e) { for (var i = 0; i < pointers.length; i++) { var p = pointers[i]; if (p.event.pointerId === e.pointerId) { pointers.splice(i, 1); return; } } }; var updatePointer = function updatePointer(e) { var p = pointers.filter(function (p) { return p.event.pointerId === e.pointerId; })[0]; p.event = e; p.touch = makeTouch(e); }; var addTouchesToEvent = function addTouchesToEvent(e) { e.touches = pointers.map(function (p) { return p.touch; }); }; var pointerIsMouse = function pointerIsMouse(e) { return e.pointerType === 'mouse' || e.pointerType === 4; }; r.registerBinding(r.container, 'pointerdown', function (e) { if (pointerIsMouse(e)) { return; } // mouse already handled e.preventDefault(); addPointer(e); addTouchesToEvent(e); touchstartHandler(e); }); r.registerBinding(r.container, 'pointerup', function (e) { if (pointerIsMouse(e)) { return; } // mouse already handled removePointer(e); addTouchesToEvent(e); touchendHandler(e); }); r.registerBinding(r.container, 'pointercancel', function (e) { if (pointerIsMouse(e)) { return; } // mouse already handled removePointer(e); addTouchesToEvent(e); touchcancelHandler(e); }); r.registerBinding(r.container, 'pointermove', function (e) { if (pointerIsMouse(e)) { return; } // mouse already handled e.preventDefault(); updatePointer(e); addTouchesToEvent(e); touchmoveHandler(e); }); } }; var BRp$2 = {}; BRp$2.generatePolygon = function (name, points) { return this.nodeShapes[name] = { renderer: this, name: name, points: points, draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl('polygon', context, centerX, centerY, width, height, this.points); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { return polygonIntersectLine(x, y, this.points, nodeX, nodeY, width / 2, height / 2, padding); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { return pointInsidePolygon(x, y, this.points, centerX, centerY, width, height, [0, -1], padding); } }; }; BRp$2.generateEllipse = function () { return this.nodeShapes['ellipse'] = { renderer: this, name: 'ellipse', draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl(this.name, context, centerX, centerY, width, height); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { return intersectLineEllipse(x, y, nodeX, nodeY, width / 2 + padding, height / 2 + padding); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { return checkInEllipse(x, y, width, height, centerX, centerY, padding); } }; }; BRp$2.generateRoundPolygon = function (name, points) { return this.nodeShapes[name] = { renderer: this, name: name, points: points, getOrCreateCorners: function getOrCreateCorners(centerX, centerY, width, height, cornerRadius, rs, field) { if (rs[field] !== undefined && rs[field + '-cx'] === centerX && rs[field + '-cy'] === centerY) { return rs[field]; } rs[field] = new Array(points.length / 2); rs[field + '-cx'] = centerX; rs[field + '-cy'] = centerY; var halfW = width / 2; var halfH = height / 2; cornerRadius = cornerRadius === 'auto' ? getRoundPolygonRadius(width, height) : cornerRadius; var p = new Array(points.length / 2); for (var _i = 0; _i < points.length / 2; _i++) { p[_i] = { x: centerX + halfW * points[_i * 2], y: centerY + halfH * points[_i * 2 + 1] }; } var i, p1, p2, p3, len = p.length; p1 = p[len - 1]; // for each point for (i = 0; i < len; i++) { p2 = p[i % len]; p3 = p[(i + 1) % len]; rs[field][i] = getRoundCorner(p1, p2, p3, cornerRadius); p1 = p2; p2 = p3; } return rs[field]; }, draw: function draw(context, centerX, centerY, width, height, cornerRadius, rs) { this.renderer.nodeShapeImpl('round-polygon', context, centerX, centerY, width, height, this.points, this.getOrCreateCorners(centerX, centerY, width, height, cornerRadius, rs, 'drawCorners')); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius, rs) { return roundPolygonIntersectLine(x, y, this.points, nodeX, nodeY, width, height, padding, this.getOrCreateCorners(nodeX, nodeY, width, height, cornerRadius, rs, 'corners')); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius, rs) { return pointInsideRoundPolygon(x, y, this.points, centerX, centerY, width, height, this.getOrCreateCorners(centerX, centerY, width, height, cornerRadius, rs, 'corners')); } }; }; BRp$2.generateRoundRectangle = function () { return this.nodeShapes['round-rectangle'] = this.nodeShapes['roundrectangle'] = { renderer: this, name: 'round-rectangle', points: generateUnitNgonPointsFitToSquare(4, 0), draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl(this.name, context, centerX, centerY, width, height, this.points, cornerRadius); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { return roundRectangleIntersectLine(x, y, nodeX, nodeY, width, height, padding, cornerRadius); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { var halfWidth = width / 2; var halfHeight = height / 2; cornerRadius = cornerRadius === 'auto' ? getRoundRectangleRadius(width, height) : cornerRadius; cornerRadius = Math.min(halfWidth, halfHeight, cornerRadius); var diam = cornerRadius * 2; // Check hBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width, height - diam, [0, -1], padding)) { return true; } // Check vBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width - diam, height, [0, -1], padding)) { return true; } // Check top left quarter circle if (checkInEllipse(x, y, diam, diam, centerX - halfWidth + cornerRadius, centerY - halfHeight + cornerRadius, padding)) { return true; } // Check top right quarter circle if (checkInEllipse(x, y, diam, diam, centerX + halfWidth - cornerRadius, centerY - halfHeight + cornerRadius, padding)) { return true; } // Check bottom right quarter circle if (checkInEllipse(x, y, diam, diam, centerX + halfWidth - cornerRadius, centerY + halfHeight - cornerRadius, padding)) { return true; } // Check bottom left quarter circle if (checkInEllipse(x, y, diam, diam, centerX - halfWidth + cornerRadius, centerY + halfHeight - cornerRadius, padding)) { return true; } return false; } }; }; BRp$2.generateCutRectangle = function () { return this.nodeShapes['cut-rectangle'] = this.nodeShapes['cutrectangle'] = { renderer: this, name: 'cut-rectangle', cornerLength: getCutRectangleCornerLength(), points: generateUnitNgonPointsFitToSquare(4, 0), draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl(this.name, context, centerX, centerY, width, height, null, cornerRadius); }, generateCutTrianglePts: function generateCutTrianglePts(width, height, centerX, centerY, cornerRadius) { var cl = cornerRadius === 'auto' ? this.cornerLength : cornerRadius; var hh = height / 2; var hw = width / 2; var xBegin = centerX - hw; var xEnd = centerX + hw; var yBegin = centerY - hh; var yEnd = centerY + hh; // points are in clockwise order, inner (imaginary) triangle pt on [4, 5] return { topLeft: [xBegin, yBegin + cl, xBegin + cl, yBegin, xBegin + cl, yBegin + cl], topRight: [xEnd - cl, yBegin, xEnd, yBegin + cl, xEnd - cl, yBegin + cl], bottomRight: [xEnd, yEnd - cl, xEnd - cl, yEnd, xEnd - cl, yEnd - cl], bottomLeft: [xBegin + cl, yEnd, xBegin, yEnd - cl, xBegin + cl, yEnd - cl] }; }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { var cPts = this.generateCutTrianglePts(width + 2 * padding, height + 2 * padding, nodeX, nodeY, cornerRadius); var pts = [].concat.apply([], [cPts.topLeft.splice(0, 4), cPts.topRight.splice(0, 4), cPts.bottomRight.splice(0, 4), cPts.bottomLeft.splice(0, 4)]); return polygonIntersectLine(x, y, pts, nodeX, nodeY); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { var cl = cornerRadius === 'auto' ? this.cornerLength : cornerRadius; // Check hBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width, height - 2 * cl, [0, -1], padding)) { return true; } // Check vBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width - 2 * cl, height, [0, -1], padding)) { return true; } var cutTrianglePts = this.generateCutTrianglePts(width, height, centerX, centerY); return pointInsidePolygonPoints(x, y, cutTrianglePts.topLeft) || pointInsidePolygonPoints(x, y, cutTrianglePts.topRight) || pointInsidePolygonPoints(x, y, cutTrianglePts.bottomRight) || pointInsidePolygonPoints(x, y, cutTrianglePts.bottomLeft); } }; }; BRp$2.generateBarrel = function () { return this.nodeShapes['barrel'] = { renderer: this, name: 'barrel', points: generateUnitNgonPointsFitToSquare(4, 0), draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl(this.name, context, centerX, centerY, width, height); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { // use two fixed t values for the bezier curve approximation var t0 = 0.15; var t1 = 0.5; var t2 = 0.85; var bPts = this.generateBarrelBezierPts(width + 2 * padding, height + 2 * padding, nodeX, nodeY); var approximateBarrelCurvePts = function approximateBarrelCurvePts(pts) { // approximate curve pts based on the two t values var m0 = qbezierPtAt({ x: pts[0], y: pts[1] }, { x: pts[2], y: pts[3] }, { x: pts[4], y: pts[5] }, t0); var m1 = qbezierPtAt({ x: pts[0], y: pts[1] }, { x: pts[2], y: pts[3] }, { x: pts[4], y: pts[5] }, t1); var m2 = qbezierPtAt({ x: pts[0], y: pts[1] }, { x: pts[2], y: pts[3] }, { x: pts[4], y: pts[5] }, t2); return [pts[0], pts[1], m0.x, m0.y, m1.x, m1.y, m2.x, m2.y, pts[4], pts[5]]; }; var pts = [].concat(approximateBarrelCurvePts(bPts.topLeft), approximateBarrelCurvePts(bPts.topRight), approximateBarrelCurvePts(bPts.bottomRight), approximateBarrelCurvePts(bPts.bottomLeft)); return polygonIntersectLine(x, y, pts, nodeX, nodeY); }, generateBarrelBezierPts: function generateBarrelBezierPts(width, height, centerX, centerY) { var hh = height / 2; var hw = width / 2; var xBegin = centerX - hw; var xEnd = centerX + hw; var yBegin = centerY - hh; var yEnd = centerY + hh; var curveConstants = getBarrelCurveConstants(width, height); var hOffset = curveConstants.heightOffset; var wOffset = curveConstants.widthOffset; var ctrlPtXOffset = curveConstants.ctrlPtOffsetPct * width; // points are in clockwise order, inner (imaginary) control pt on [4, 5] var pts = { topLeft: [xBegin, yBegin + hOffset, xBegin + ctrlPtXOffset, yBegin, xBegin + wOffset, yBegin], topRight: [xEnd - wOffset, yBegin, xEnd - ctrlPtXOffset, yBegin, xEnd, yBegin + hOffset], bottomRight: [xEnd, yEnd - hOffset, xEnd - ctrlPtXOffset, yEnd, xEnd - wOffset, yEnd], bottomLeft: [xBegin + wOffset, yEnd, xBegin + ctrlPtXOffset, yEnd, xBegin, yEnd - hOffset] }; pts.topLeft.isTop = true; pts.topRight.isTop = true; pts.bottomLeft.isBottom = true; pts.bottomRight.isBottom = true; return pts; }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { var curveConstants = getBarrelCurveConstants(width, height); var hOffset = curveConstants.heightOffset; var wOffset = curveConstants.widthOffset; // Check hBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width, height - 2 * hOffset, [0, -1], padding)) { return true; } // Check vBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width - 2 * wOffset, height, [0, -1], padding)) { return true; } var barrelCurvePts = this.generateBarrelBezierPts(width, height, centerX, centerY); var getCurveT = function getCurveT(x, y, curvePts) { var x0 = curvePts[4]; var x1 = curvePts[2]; var x2 = curvePts[0]; var y0 = curvePts[5]; // var y1 = curvePts[ 3 ]; var y2 = curvePts[1]; var xMin = Math.min(x0, x2); var xMax = Math.max(x0, x2); var yMin = Math.min(y0, y2); var yMax = Math.max(y0, y2); if (xMin <= x && x <= xMax && yMin <= y && y <= yMax) { var coeff = bezierPtsToQuadCoeff(x0, x1, x2); var roots = solveQuadratic(coeff[0], coeff[1], coeff[2], x); var validRoots = roots.filter(function (r) { return 0 <= r && r <= 1; }); if (validRoots.length > 0) { return validRoots[0]; } } return null; }; var curveRegions = Object.keys(barrelCurvePts); for (var i = 0; i < curveRegions.length; i++) { var corner = curveRegions[i]; var cornerPts = barrelCurvePts[corner]; var t = getCurveT(x, y, cornerPts); if (t == null) { continue; } var y0 = cornerPts[5]; var y1 = cornerPts[3]; var y2 = cornerPts[1]; var bezY = qbezierAt(y0, y1, y2, t); if (cornerPts.isTop && bezY <= y) { return true; } if (cornerPts.isBottom && y <= bezY) { return true; } } return false; } }; }; BRp$2.generateBottomRoundrectangle = function () { return this.nodeShapes['bottom-round-rectangle'] = this.nodeShapes['bottomroundrectangle'] = { renderer: this, name: 'bottom-round-rectangle', points: generateUnitNgonPointsFitToSquare(4, 0), draw: function draw(context, centerX, centerY, width, height, cornerRadius) { this.renderer.nodeShapeImpl(this.name, context, centerX, centerY, width, height, this.points, cornerRadius); }, intersectLine: function intersectLine(nodeX, nodeY, width, height, x, y, padding, cornerRadius) { var topStartX = nodeX - (width / 2 + padding); var topStartY = nodeY - (height / 2 + padding); var topEndY = topStartY; var topEndX = nodeX + (width / 2 + padding); var topIntersections = finiteLinesIntersect(x, y, nodeX, nodeY, topStartX, topStartY, topEndX, topEndY, false); if (topIntersections.length > 0) { return topIntersections; } return roundRectangleIntersectLine(x, y, nodeX, nodeY, width, height, padding, cornerRadius); }, checkPoint: function checkPoint(x, y, padding, width, height, centerX, centerY, cornerRadius) { cornerRadius = cornerRadius === 'auto' ? getRoundRectangleRadius(width, height) : cornerRadius; var diam = 2 * cornerRadius; // Check hBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width, height - diam, [0, -1], padding)) { return true; } // Check vBox if (pointInsidePolygon(x, y, this.points, centerX, centerY, width - diam, height, [0, -1], padding)) { return true; } // check non-rounded top side var outerWidth = width / 2 + 2 * padding; var outerHeight = height / 2 + 2 * padding; var points = [centerX - outerWidth, centerY - outerHeight, centerX - outerWidth, centerY, centerX + outerWidth, centerY, centerX + outerWidth, centerY - outerHeight]; if (pointInsidePolygonPoints(x, y, points)) { return true; } // Check bottom right quarter circle if (checkInEllipse(x, y, diam, diam, centerX + width / 2 - cornerRadius, centerY + height / 2 - cornerRadius, padding)) { return true; } // Check bottom left quarter circle if (checkInEllipse(x, y, diam, diam, centerX - width / 2 + cornerRadius, centerY + height / 2 - cornerRadius, padding)) { return true; } return false; } }; }; BRp$2.registerNodeShapes = function () { var nodeShapes = this.nodeShapes = {}; var renderer = this; this.generateEllipse(); this.generatePolygon('triangle', generateUnitNgonPointsFitToSquare(3, 0)); this.generateRoundPolygon('round-triangle', generateUnitNgonPointsFitToSquare(3, 0)); this.generatePolygon('rectangle', generateUnitNgonPointsFitToSquare(4, 0)); nodeShapes['square'] = nodeShapes['rectangle']; this.generateRoundRectangle(); this.generateCutRectangle(); this.generateBarrel(); this.generateBottomRoundrectangle(); { var diamondPoints = [0, 1, 1, 0, 0, -1, -1, 0]; this.generatePolygon('diamond', diamondPoints); this.generateRoundPolygon('round-diamond', diamondPoints); } this.generatePolygon('pentagon', generateUnitNgonPointsFitToSquare(5, 0)); this.generateRoundPolygon('round-pentagon', generateUnitNgonPointsFitToSquare(5, 0)); this.generatePolygon('hexagon', generateUnitNgonPointsFitToSquare(6, 0)); this.generateRoundPolygon('round-hexagon', generateUnitNgonPointsFitToSquare(6, 0)); this.generatePolygon('heptagon', generateUnitNgonPointsFitToSquare(7, 0)); this.generateRoundPolygon('round-heptagon', generateUnitNgonPointsFitToSquare(7, 0)); this.generatePolygon('octagon', generateUnitNgonPointsFitToSquare(8, 0)); this.generateRoundPolygon('round-octagon', generateUnitNgonPointsFitToSquare(8, 0)); var star5Points = new Array(20); { var outerPoints = generateUnitNgonPoints(5, 0); var innerPoints = generateUnitNgonPoints(5, Math.PI / 5); // Outer radius is 1; inner radius of star is smaller var innerRadius = 0.5 * (3 - Math.sqrt(5)); innerRadius *= 1.57; for (var i = 0; i < innerPoints.length / 2; i++) { innerPoints[i * 2] *= innerRadius; innerPoints[i * 2 + 1] *= innerRadius; } for (var i = 0; i < 20 / 4; i++) { star5Points[i * 4] = outerPoints[i * 2]; star5Points[i * 4 + 1] = outerPoints[i * 2 + 1]; star5Points[i * 4 + 2] = innerPoints[i * 2]; star5Points[i * 4 + 3] = innerPoints[i * 2 + 1]; } } star5Points = fitPolygonToSquare(star5Points); this.generatePolygon('star', star5Points); this.generatePolygon('vee', [-1, -1, 0, -0.333, 1, -1, 0, 1]); this.generatePolygon('rhomboid', [-1, -1, 0.333, -1, 1, 1, -0.333, 1]); this.generatePolygon('right-rhomboid', [-0.333, -1, 1, -1, 0.333, 1, -1, 1]); this.nodeShapes['concavehexagon'] = this.generatePolygon('concave-hexagon', [-1, -0.95, -0.75, 0, -1, 0.95, 1, 0.95, 0.75, 0, 1, -0.95]); { var tagPoints = [-1, -1, 0.25, -1, 1, 0, 0.25, 1, -1, 1]; this.generatePolygon('tag', tagPoints); this.generateRoundPolygon('round-tag', tagPoints); } nodeShapes.makePolygon = function (points) { // use caching on user-specified polygons so they are as fast as native shapes var key = points.join('$'); var name = 'polygon-' + key; var shape; if (shape = this[name]) { // got cached shape return shape; } // create and cache new shape return renderer.generatePolygon(name, points); }; }; var BRp$1 = {}; BRp$1.timeToRender = function () { return this.redrawTotalTime / this.redrawCount; }; BRp$1.redraw = function (options) { options = options || staticEmptyObject(); var r = this; if (r.averageRedrawTime === undefined) { r.averageRedrawTime = 0; } if (r.lastRedrawTime === undefined) { r.lastRedrawTime = 0; } if (r.lastDrawTime === undefined) { r.lastDrawTime = 0; } r.requestedFrame = true; r.renderOptions = options; }; BRp$1.beforeRender = function (fn, priority) { // the renderer can't add tick callbacks when destroyed if (this.destroyed) { return; } if (priority == null) { error('Priority is not optional for beforeRender'); } var cbs = this.beforeRenderCallbacks; cbs.push({ fn: fn, priority: priority }); // higher priority callbacks executed first cbs.sort(function (a, b) { return b.priority - a.priority; }); }; var beforeRenderCallbacks = function beforeRenderCallbacks(r, willDraw, startTime) { var cbs = r.beforeRenderCallbacks; for (var i = 0; i < cbs.length; i++) { cbs[i].fn(willDraw, startTime); } }; BRp$1.startRenderLoop = function () { var r = this; var cy = r.cy; if (r.renderLoopStarted) { return; } else { r.renderLoopStarted = true; } var renderFn = function renderFn(requestTime) { if (r.destroyed) { return; } if (cy.batching()) ; else if (r.requestedFrame && !r.skipFrame) { beforeRenderCallbacks(r, true, requestTime); var startTime = performanceNow(); r.render(r.renderOptions); var endTime = r.lastDrawTime = performanceNow(); if (r.averageRedrawTime === undefined) { r.averageRedrawTime = endTime - startTime; } if (r.redrawCount === undefined) { r.redrawCount = 0; } r.redrawCount++; if (r.redrawTotalTime === undefined) { r.redrawTotalTime = 0; } var duration = endTime - startTime; r.redrawTotalTime += duration; r.lastRedrawTime = duration; // use a weighted average with a bias from the previous average so we don't spike so easily r.averageRedrawTime = r.averageRedrawTime / 2 + duration / 2; r.requestedFrame = false; } else { beforeRenderCallbacks(r, false, requestTime); } r.skipFrame = false; requestAnimationFrame(renderFn); }; requestAnimationFrame(renderFn); }; var BaseRenderer = function BaseRenderer(options) { this.init(options); }; var BR = BaseRenderer; var BRp = BR.prototype; BRp.clientFunctions = ['redrawHint', 'render', 'renderTo', 'matchCanvasSize', 'nodeShapeImpl', 'arrowShapeImpl']; BRp.init = function (options) { var r = this; r.options = options; r.cy = options.cy; var ctr = r.container = options.cy.container(); var containerWindow = r.cy.window(); // prepend a stylesheet in the head such that if (containerWindow) { var document = containerWindow.document; var head = document.head; var stylesheetId = '__________cytoscape_stylesheet'; var className = '__________cytoscape_container'; var stylesheetAlreadyExists = document.getElementById(stylesheetId) != null; if (ctr.className.indexOf(className) < 0) { ctr.className = (ctr.className || '') + ' ' + className; } if (!stylesheetAlreadyExists) { var stylesheet = document.createElement('style'); stylesheet.id = stylesheetId; stylesheet.textContent = '.' + className + ' { position: relative; }'; head.insertBefore(stylesheet, head.children[0]); // first so lowest priority } var computedStyle = containerWindow.getComputedStyle(ctr); var position = computedStyle.getPropertyValue('position'); if (position === 'static') { warn('A Cytoscape container has style position:static and so can not use UI extensions properly'); } } r.selection = [undefined, undefined, undefined, undefined, 0]; // Coordinates for selection box, plus enabled flag r.bezierProjPcts = [0.05, 0.225, 0.4, 0.5, 0.6, 0.775, 0.95]; //--Pointer-related data r.hoverData = { down: null, last: null, downTime: null, triggerMode: null, dragging: false, initialPan: [null, null], capture: false }; r.dragData = { possibleDragElements: [] }; r.touchData = { start: null, capture: false, // These 3 fields related to tap, taphold events startPosition: [null, null, null, null, null, null], singleTouchStartTime: null, singleTouchMoved: true, now: [null, null, null, null, null, null], earlier: [null, null, null, null, null, null] }; r.redraws = 0; r.showFps = options.showFps; r.debug = options.debug; r.webgl = options.webgl; r.hideEdgesOnViewport = options.hideEdgesOnViewport; r.textureOnViewport = options.textureOnViewport; r.wheelSensitivity = options.wheelSensitivity; r.motionBlurEnabled = options.motionBlur; // on by default r.forcedPixelRatio = number$1(options.pixelRatio) ? options.pixelRatio : null; r.motionBlur = options.motionBlur; // for initial kick off r.motionBlurOpacity = options.motionBlurOpacity; r.motionBlurTransparency = 1 - r.motionBlurOpacity; r.motionBlurPxRatio = 1; r.mbPxRBlurry = 1; //0.8; r.minMbLowQualFrames = 4; r.fullQualityMb = false; r.clearedForMotionBlur = []; r.desktopTapThreshold = options.desktopTapThreshold; r.desktopTapThreshold2 = options.desktopTapThreshold * options.desktopTapThreshold; r.touchTapThreshold = options.touchTapThreshold; r.touchTapThreshold2 = options.touchTapThreshold * options.touchTapThreshold; r.tapholdDuration = 500; r.bindings = []; r.beforeRenderCallbacks = []; r.beforeRenderPriorities = { // higher priority execs before lower one animations: 400, eleCalcs: 300, eleTxrDeq: 200, lyrTxrDeq: 150, lyrTxrSkip: 100 }; r.registerNodeShapes(); r.registerArrowShapes(); r.registerCalculationListeners(); }; BRp.notify = function (eventName, eles) { var r = this; var cy = r.cy; // the renderer can't be notified after it's destroyed if (this.destroyed) { return; } if (eventName === 'init') { r.load(); return; } if (eventName === 'destroy') { r.destroy(); return; } if (eventName === 'add' || eventName === 'remove' || eventName === 'move' && cy.hasCompoundNodes() || eventName === 'load' || eventName === 'zorder' || eventName === 'mount') { r.invalidateCachedZSortedEles(); } if (eventName === 'viewport') { r.redrawHint('select', true); } if (eventName === 'load' || eventName === 'resize' || eventName === 'mount') { r.invalidateContainerClientCoordsCache(); r.matchCanvasSize(r.container); } r.redrawHint('eles', true); r.redrawHint('drag', true); this.startRenderLoop(); this.redraw(); }; BRp.destroy = function () { var r = this; r.destroyed = true; r.cy.stopAnimationLoop(); for (var i = 0; i < r.bindings.length; i++) { var binding = r.bindings[i]; var b = binding; var tgt = b.target; (tgt.off || tgt.removeEventListener).apply(tgt, b.args); } r.bindings = []; r.beforeRenderCallbacks = []; r.onUpdateEleCalcsFns = []; if (r.removeObserver) { r.removeObserver.disconnect(); } if (r.styleObserver) { r.styleObserver.disconnect(); } if (r.resizeObserver) { r.resizeObserver.disconnect(); } if (r.labelCalcDiv) { try { document.body.removeChild(r.labelCalcDiv); // eslint-disable-line no-undef } catch (e) { // ie10 issue #1014 } } }; BRp.isHeadless = function () { return false; }; [BRp$f, BRp$5, BRp$4, BRp$3, BRp$2, BRp$1].forEach(function (props) { extend(BRp, props); }); var fullFpsTime = 1000 / 60; // assume 60 frames per second var defs = { setupDequeueing: function setupDequeueing(opts) { return function setupDequeueingImpl() { var self = this; var r = this.renderer; if (self.dequeueingSetup) { return; } else { self.dequeueingSetup = true; } var queueRedraw = debounce_1(function () { r.redrawHint('eles', true); r.redrawHint('drag', true); r.redraw(); }, opts.deqRedrawThreshold); var dequeue = function dequeue(willDraw, frameStartTime) { var startTime = performanceNow(); var avgRenderTime = r.averageRedrawTime; var renderTime = r.lastRedrawTime; var deqd = []; var extent = r.cy.extent(); var pixelRatio = r.getPixelRatio(); // if we aren't in a tick that causes a draw, then the rendered style // queue won't automatically be flushed before dequeueing starts if (!willDraw) { r.flushRenderedStyleQueue(); } while (true) { // eslint-disable-line no-constant-condition var now = performanceNow(); var duration = now - startTime; var frameDuration = now - frameStartTime; if (renderTime < fullFpsTime) { // if we're rendering faster than the ideal fps, then do dequeueing // during all of the remaining frame time var timeAvailable = fullFpsTime - (willDraw ? avgRenderTime : 0); if (frameDuration >= opts.deqFastCost * timeAvailable) { break; } } else { if (willDraw) { if (duration >= opts.deqCost * renderTime || duration >= opts.deqAvgCost * avgRenderTime) { break; } } else if (frameDuration >= opts.deqNoDrawCost * fullFpsTime) { break; } } var thisDeqd = opts.deq(self, pixelRatio, extent); if (thisDeqd.length > 0) { for (var i = 0; i < thisDeqd.length; i++) { deqd.push(thisDeqd[i]); } } else { break; } } // callbacks on dequeue if (deqd.length > 0) { opts.onDeqd(self, deqd); if (!willDraw && opts.shouldRedraw(self, deqd, pixelRatio, extent)) { queueRedraw(); } } }; var priority = opts.priority || noop$1; r.beforeRender(dequeue, priority(self)); }; } }; // Allows lookups for (ele, lvl) => cache. // Uses keys so elements may share the same cache. var ElementTextureCacheLookup = /*#__PURE__*/function () { function ElementTextureCacheLookup(getKey) { var doesEleInvalidateKey = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : falsify; _classCallCheck(this, ElementTextureCacheLookup); this.idsByKey = new Map$2(); this.keyForId = new Map$2(); this.cachesByLvl = new Map$2(); this.lvls = []; this.getKey = getKey; this.doesEleInvalidateKey = doesEleInvalidateKey; } _createClass(ElementTextureCacheLookup, [{ key: "getIdsFor", value: function getIdsFor(key) { if (key == null) { error("Can not get id list for null key"); } var idsByKey = this.idsByKey; var ids = this.idsByKey.get(key); if (!ids) { ids = new Set$1(); idsByKey.set(key, ids); } return ids; } }, { key: "addIdForKey", value: function addIdForKey(key, id) { if (key != null) { this.getIdsFor(key).add(id); } } }, { key: "deleteIdForKey", value: function deleteIdForKey(key, id) { if (key != null) { this.getIdsFor(key)["delete"](id); } } }, { key: "getNumberOfIdsForKey", value: function getNumberOfIdsForKey(key) { if (key == null) { return 0; } else { return this.getIdsFor(key).size; } } }, { key: "updateKeyMappingFor", value: function updateKeyMappingFor(ele) { var id = ele.id(); var prevKey = this.keyForId.get(id); var currKey = this.getKey(ele); this.deleteIdForKey(prevKey, id); this.addIdForKey(currKey, id); this.keyForId.set(id, currKey); } }, { key: "deleteKeyMappingFor", value: function deleteKeyMappingFor(ele) { var id = ele.id(); var prevKey = this.keyForId.get(id); this.deleteIdForKey(prevKey, id); this.keyForId["delete"](id); } }, { key: "keyHasChangedFor", value: function keyHasChangedFor(ele) { var id = ele.id(); var prevKey = this.keyForId.get(id); var newKey = this.getKey(ele); return prevKey !== newKey; } }, { key: "isInvalid", value: function isInvalid(ele) { return this.keyHasChangedFor(ele) || this.doesEleInvalidateKey(ele); } }, { key: "getCachesAt", value: function getCachesAt(lvl) { var cachesByLvl = this.cachesByLvl, lvls = this.lvls; var caches = cachesByLvl.get(lvl); if (!caches) { caches = new Map$2(); cachesByLvl.set(lvl, caches); lvls.push(lvl); } return caches; } }, { key: "getCache", value: function getCache(key, lvl) { return this.getCachesAt(lvl).get(key); } }, { key: "get", value: function get(ele, lvl) { var key = this.getKey(ele); var cache = this.getCache(key, lvl); // getting for an element may need to add to the id list b/c eles can share keys if (cache != null) { this.updateKeyMappingFor(ele); } return cache; } }, { key: "getForCachedKey", value: function getForCachedKey(ele, lvl) { var key = this.keyForId.get(ele.id()); // n.b. use cached key, not newly computed key var cache = this.getCache(key, lvl); return cache; } }, { key: "hasCache", value: function hasCache(key, lvl) { return this.getCachesAt(lvl).has(key); } }, { key: "has", value: function has(ele, lvl) { var key = this.getKey(ele); return this.hasCache(key, lvl); } }, { key: "setCache", value: function setCache(key, lvl, cache) { cache.key = key; this.getCachesAt(lvl).set(key, cache); } }, { key: "set", value: function set(ele, lvl, cache) { var key = this.getKey(ele); this.setCache(key, lvl, cache); this.updateKeyMappingFor(ele); } }, { key: "deleteCache", value: function deleteCache(key, lvl) { this.getCachesAt(lvl)["delete"](key); } }, { key: "delete", value: function _delete(ele, lvl) { var key = this.getKey(ele); this.deleteCache(key, lvl); } }, { key: "invalidateKey", value: function invalidateKey(key) { var _this = this; this.lvls.forEach(function (lvl) { return _this.deleteCache(key, lvl); }); } // returns true if no other eles reference the invalidated cache (n.b. other eles may need the cache with the same key) }, { key: "invalidate", value: function invalidate(ele) { var id = ele.id(); var key = this.keyForId.get(id); // n.b. use stored key rather than current (potential key) this.deleteKeyMappingFor(ele); var entireKeyInvalidated = this.doesEleInvalidateKey(ele); if (entireKeyInvalidated) { // clear mapping for current key this.invalidateKey(key); } return entireKeyInvalidated || this.getNumberOfIdsForKey(key) === 0; } }]); return ElementTextureCacheLookup; }(); var minTxrH = 25; // the size of the texture cache for small height eles (special case) var txrStepH = 50; // the min size of the regular cache, and the size it increases with each step up var minLvl$1 = -4; // when scaling smaller than that we don't need to re-render var maxLvl$1 = 3; // when larger than this scale just render directly (caching is not helpful) var maxZoom$1 = 7.99; // beyond this zoom level, layered textures are not used var eleTxrSpacing = 8; // spacing between elements on textures to avoid blitting overlaps var defTxrWidth = 1024; // default/minimum texture width var maxTxrW = 1024; // the maximum width of a texture var maxTxrH = 1024; // the maximum height of a texture var minUtility = 0.2; // if usage of texture is less than this, it is retired var maxFullness = 0.8; // fullness of texture after which queue removal is checked var maxFullnessChecks = 10; // dequeued after this many checks var deqCost$1 = 0.15; // % of add'l rendering cost allowed for dequeuing ele caches each frame var deqAvgCost$1 = 0.1; // % of add'l rendering cost compared to average overall redraw time var deqNoDrawCost$1 = 0.9; // % of avg frame time that can be used for dequeueing when not drawing var deqFastCost$1 = 0.9; // % of frame time to be used when >60fps var deqRedrawThreshold$1 = 100; // time to batch redraws together from dequeueing to allow more dequeueing calcs to happen in the meanwhile var maxDeqSize$1 = 1; // number of eles to dequeue and render at higher texture in each batch var getTxrReasons = { dequeue: 'dequeue', downscale: 'downscale', highQuality: 'highQuality' }; var initDefaults$1 = defaults$g({ getKey: null, doesEleInvalidateKey: falsify, drawElement: null, getBoundingBox: null, getRotationPoint: null, getRotationOffset: null, isVisible: trueify, allowEdgeTxrCaching: true, allowParentTxrCaching: true }); var ElementTextureCache = function ElementTextureCache(renderer, initOptions) { var self = this; self.renderer = renderer; self.onDequeues = []; var opts = initDefaults$1(initOptions); extend(self, opts); self.lookup = new ElementTextureCacheLookup(opts.getKey, opts.doesEleInvalidateKey); self.setupDequeueing(); }; var ETCp = ElementTextureCache.prototype; ETCp.reasons = getTxrReasons; // the list of textures in which new subtextures for elements can be placed ETCp.getTextureQueue = function (txrH) { var self = this; self.eleImgCaches = self.eleImgCaches || {}; return self.eleImgCaches[txrH] = self.eleImgCaches[txrH] || []; }; // the list of usused textures which can be recycled (in use in texture queue) ETCp.getRetiredTextureQueue = function (txrH) { var self = this; var rtxtrQs = self.eleImgCaches.retired = self.eleImgCaches.retired || {}; var rtxtrQ = rtxtrQs[txrH] = rtxtrQs[txrH] || []; return rtxtrQ; }; // queue of element draw requests at different scale levels ETCp.getElementQueue = function () { var self = this; var q = self.eleCacheQueue = self.eleCacheQueue || new heap(function (a, b) { return b.reqs - a.reqs; }); return q; }; // queue of element draw requests at different scale levels (element id lookup) ETCp.getElementKeyToQueue = function () { var self = this; var k2q = self.eleKeyToCacheQueue = self.eleKeyToCacheQueue || {}; return k2q; }; ETCp.getElement = function (ele, bb, pxRatio, lvl, reason) { var self = this; var r = this.renderer; var zoom = r.cy.zoom(); var lookup = this.lookup; if (!bb || bb.w === 0 || bb.h === 0 || isNaN(bb.w) || isNaN(bb.h) || !ele.visible() || ele.removed()) { return null; } if (!self.allowEdgeTxrCaching && ele.isEdge() || !self.allowParentTxrCaching && ele.isParent()) { return null; } if (lvl == null) { lvl = Math.ceil(log2(zoom * pxRatio)); } if (lvl < minLvl$1) { lvl = minLvl$1; } else if (zoom >= maxZoom$1 || lvl > maxLvl$1) { return null; } var scale = Math.pow(2, lvl); var eleScaledH = bb.h * scale; var eleScaledW = bb.w * scale; var scaledLabelShown = r.eleTextBiggerThanMin(ele, scale); if (!this.isVisible(ele, scaledLabelShown)) { return null; } var eleCache = lookup.get(ele, lvl); // if this get was on an unused/invalidated cache, then restore the texture usage metric if (eleCache && eleCache.invalidated) { eleCache.invalidated = false; eleCache.texture.invalidatedWidth -= eleCache.width; } if (eleCache) { return eleCache; } var txrH; // which texture height this ele belongs to if (eleScaledH <= minTxrH) { txrH = minTxrH; } else if (eleScaledH <= txrStepH) { txrH = txrStepH; } else { txrH = Math.ceil(eleScaledH / txrStepH) * txrStepH; } if (eleScaledH > maxTxrH || eleScaledW > maxTxrW) { return null; // caching large elements is not efficient } var txrQ = self.getTextureQueue(txrH); // first try the second last one in case it has space at the end var txr = txrQ[txrQ.length - 2]; var addNewTxr = function addNewTxr() { return self.recycleTexture(txrH, eleScaledW) || self.addTexture(txrH, eleScaledW); }; // try the last one if there is no second last one if (!txr) { txr = txrQ[txrQ.length - 1]; } // if the last one doesn't exist, we need a first one if (!txr) { txr = addNewTxr(); } // if there's no room in the current texture, we need a new one if (txr.width - txr.usedWidth < eleScaledW) { txr = addNewTxr(); } var scalableFrom = function scalableFrom(otherCache) { return otherCache && otherCache.scaledLabelShown === scaledLabelShown; }; var deqing = reason && reason === getTxrReasons.dequeue; var highQualityReq = reason && reason === getTxrReasons.highQuality; var downscaleReq = reason && reason === getTxrReasons.downscale; var higherCache; // the nearest cache with a higher level for (var l = lvl + 1; l <= maxLvl$1; l++) { var c = lookup.get(ele, l); if (c) { higherCache = c; break; } } var oneUpCache = higherCache && higherCache.level === lvl + 1 ? higherCache : null; var downscale = function downscale() { txr.context.drawImage(oneUpCache.texture.canvas, oneUpCache.x, 0, oneUpCache.width, oneUpCache.height, txr.usedWidth, 0, eleScaledW, eleScaledH); }; // reset ele area in texture txr.context.setTransform(1, 0, 0, 1, 0, 0); txr.context.clearRect(txr.usedWidth, 0, eleScaledW, txrH); if (scalableFrom(oneUpCache)) { // then we can relatively cheaply rescale the existing image w/o rerendering downscale(); } else if (scalableFrom(higherCache)) { // then use the higher cache for now and queue the next level down // to cheaply scale towards the smaller level if (highQualityReq) { for (var _l = higherCache.level; _l > lvl; _l--) { oneUpCache = self.getElement(ele, bb, pxRatio, _l, getTxrReasons.downscale); } downscale(); } else { self.queueElement(ele, higherCache.level - 1); return higherCache; } } else { var lowerCache; // the nearest cache with a lower level if (!deqing && !highQualityReq && !downscaleReq) { for (var _l2 = lvl - 1; _l2 >= minLvl$1; _l2--) { var _c = lookup.get(ele, _l2); if (_c) { lowerCache = _c; break; } } } if (scalableFrom(lowerCache)) { // then use the lower quality cache for now and queue the better one for later self.queueElement(ele, lvl); return lowerCache; } txr.context.translate(txr.usedWidth, 0); txr.context.scale(scale, scale); this.drawElement(txr.context, ele, bb, scaledLabelShown, false); txr.context.scale(1 / scale, 1 / scale); txr.context.translate(-txr.usedWidth, 0); } eleCache = { x: txr.usedWidth, texture: txr, level: lvl, scale: scale, width: eleScaledW, height: eleScaledH, scaledLabelShown: scaledLabelShown }; txr.usedWidth += Math.ceil(eleScaledW + eleTxrSpacing); txr.eleCaches.push(eleCache); lookup.set(ele, lvl, eleCache); self.checkTextureFullness(txr); return eleCache; }; ETCp.invalidateElements = function (eles) { for (var i = 0; i < eles.length; i++) { this.invalidateElement(eles[i]); } }; ETCp.invalidateElement = function (ele) { var self = this; var lookup = self.lookup; var caches = []; var invalid = lookup.isInvalid(ele); if (!invalid) { return; // override the invalidation request if the element key has not changed } for (var lvl = minLvl$1; lvl <= maxLvl$1; lvl++) { var cache = lookup.getForCachedKey(ele, lvl); if (cache) { caches.push(cache); } } var noOtherElesUseCache = lookup.invalidate(ele); if (noOtherElesUseCache) { for (var i = 0; i < caches.length; i++) { var _cache = caches[i]; var txr = _cache.texture; // remove space from the texture it belongs to txr.invalidatedWidth += _cache.width; // mark the cache as invalidated _cache.invalidated = true; // retire the texture if its utility is low self.checkTextureUtility(txr); } } // remove from queue since the old req was for the old state self.removeFromQueue(ele); }; ETCp.checkTextureUtility = function (txr) { // invalidate all entries in the cache if the cache size is small if (txr.invalidatedWidth >= minUtility * txr.width) { this.retireTexture(txr); } }; ETCp.checkTextureFullness = function (txr) { // if texture has been mostly filled and passed over several times, remove // it from the queue so we don't need to waste time looking at it to put new things var self = this; var txrQ = self.getTextureQueue(txr.height); if (txr.usedWidth / txr.width > maxFullness && txr.fullnessChecks >= maxFullnessChecks) { removeFromArray(txrQ, txr); } else { txr.fullnessChecks++; } }; ETCp.retireTexture = function (txr) { var self = this; var txrH = txr.height; var txrQ = self.getTextureQueue(txrH); var lookup = this.lookup; // retire the texture from the active / searchable queue: removeFromArray(txrQ, txr); txr.retired = true; // remove the refs from the eles to the caches: var eleCaches = txr.eleCaches; for (var i = 0; i < eleCaches.length; i++) { var eleCache = eleCaches[i]; lookup.deleteCache(eleCache.key, eleCache.level); } clearArray(eleCaches); // add the texture to a retired queue so it can be recycled in future: var rtxtrQ = self.getRetiredTextureQueue(txrH); rtxtrQ.push(txr); }; ETCp.addTexture = function (txrH, minW) { var self = this; var txrQ = self.getTextureQueue(txrH); var txr = {}; txrQ.push(txr); txr.eleCaches = []; txr.height = txrH; txr.width = Math.max(defTxrWidth, minW); txr.usedWidth = 0; txr.invalidatedWidth = 0; txr.fullnessChecks = 0; txr.canvas = self.renderer.makeOffscreenCanvas(txr.width, txr.height); txr.context = txr.canvas.getContext('2d'); return txr; }; ETCp.recycleTexture = function (txrH, minW) { var self = this; var txrQ = self.getTextureQueue(txrH); var rtxtrQ = self.getRetiredTextureQueue(txrH); for (var i = 0; i < rtxtrQ.length; i++) { var txr = rtxtrQ[i]; if (txr.width >= minW) { txr.retired = false; txr.usedWidth = 0; txr.invalidatedWidth = 0; txr.fullnessChecks = 0; clearArray(txr.eleCaches); txr.context.setTransform(1, 0, 0, 1, 0, 0); txr.context.clearRect(0, 0, txr.width, txr.height); removeFromArray(rtxtrQ, txr); txrQ.push(txr); return txr; } } }; ETCp.queueElement = function (ele, lvl) { var self = this; var q = self.getElementQueue(); var k2q = self.getElementKeyToQueue(); var key = this.getKey(ele); var existingReq = k2q[key]; if (existingReq) { // use the max lvl b/c in between lvls are cheap to make existingReq.level = Math.max(existingReq.level, lvl); existingReq.eles.merge(ele); existingReq.reqs++; q.updateItem(existingReq); } else { var req = { eles: ele.spawn().merge(ele), level: lvl, reqs: 1, key: key }; q.push(req); k2q[key] = req; } }; ETCp.dequeue = function (pxRatio /*, extent*/) { var self = this; var q = self.getElementQueue(); var k2q = self.getElementKeyToQueue(); var dequeued = []; var lookup = self.lookup; for (var i = 0; i < maxDeqSize$1; i++) { if (q.size() > 0) { var req = q.pop(); var key = req.key; var ele = req.eles[0]; // all eles have the same key var cacheExists = lookup.hasCache(ele, req.level); // clear out the key to req lookup k2q[key] = null; // dequeueing isn't necessary with an existing cache if (cacheExists) { continue; } dequeued.push(req); var bb = self.getBoundingBox(ele); self.getElement(ele, bb, pxRatio, req.level, getTxrReasons.dequeue); } else { break; } } return dequeued; }; ETCp.removeFromQueue = function (ele) { var self = this; var q = self.getElementQueue(); var k2q = self.getElementKeyToQueue(); var key = this.getKey(ele); var req = k2q[key]; if (req != null) { if (req.eles.length === 1) { // remove if last ele in the req // bring to front of queue req.reqs = MAX_INT$1; q.updateItem(req); q.pop(); // remove from queue k2q[key] = null; // remove from lookup map } else { // otherwise just remove ele from req req.eles.unmerge(ele); } } }; ETCp.onDequeue = function (fn) { this.onDequeues.push(fn); }; ETCp.offDequeue = function (fn) { removeFromArray(this.onDequeues, fn); }; ETCp.setupDequeueing = defs.setupDequeueing({ deqRedrawThreshold: deqRedrawThreshold$1, deqCost: deqCost$1, deqAvgCost: deqAvgCost$1, deqNoDrawCost: deqNoDrawCost$1, deqFastCost: deqFastCost$1, deq: function deq(self, pxRatio, extent) { return self.dequeue(pxRatio, extent); }, onDeqd: function onDeqd(self, deqd) { for (var i = 0; i < self.onDequeues.length; i++) { var fn = self.onDequeues[i]; fn(deqd); } }, shouldRedraw: function shouldRedraw(self, deqd, pxRatio, extent) { for (var i = 0; i < deqd.length; i++) { var eles = deqd[i].eles; for (var j = 0; j < eles.length; j++) { var bb = eles[j].boundingBox(); if (boundingBoxesIntersect(bb, extent)) { return true; } } } return false; }, priority: function priority(self) { return self.renderer.beforeRenderPriorities.eleTxrDeq; } }); var defNumLayers = 1; // default number of layers to use var minLvl = -4; // when scaling smaller than that we don't need to re-render var maxLvl = 2; // when larger than this scale just render directly (caching is not helpful) var maxZoom = 3.99; // beyond this zoom level, layered textures are not used var deqRedrawThreshold = 50; // time to batch redraws together from dequeueing to allow more dequeueing calcs to happen in the meanwhile var refineEleDebounceTime = 50; // time to debounce sharper ele texture updates var deqCost = 0.15; // % of add'l rendering cost allowed for dequeuing ele caches each frame var deqAvgCost = 0.1; // % of add'l rendering cost compared to average overall redraw time var deqNoDrawCost = 0.9; // % of avg frame time that can be used for dequeueing when not drawing var deqFastCost = 0.9; // % of frame time to be used when >60fps var maxDeqSize = 1; // number of eles to dequeue and render at higher texture in each batch var invalidThreshold = 250; // time threshold for disabling b/c of invalidations var maxLayerArea = 4000 * 4000; // layers can't be bigger than this var useHighQualityEleTxrReqs = true; // whether to use high quality ele txr requests (generally faster and cheaper in the longterm) // var log = function(){ console.log.apply( console, arguments ); }; var LayeredTextureCache = function LayeredTextureCache(renderer) { var self = this; var r = self.renderer = renderer; var cy = r.cy; self.layersByLevel = {}; // e.g. 2 => [ layer1, layer2, ..., layerN ] self.firstGet = true; self.lastInvalidationTime = performanceNow() - 2 * invalidThreshold; self.skipping = false; self.eleTxrDeqs = cy.collection(); self.scheduleElementRefinement = debounce_1(function () { self.refineElementTextures(self.eleTxrDeqs); self.eleTxrDeqs.unmerge(self.eleTxrDeqs); }, refineEleDebounceTime); r.beforeRender(function (willDraw, now) { if (now - self.lastInvalidationTime <= invalidThreshold) { self.skipping = true; } else { self.skipping = false; } }, r.beforeRenderPriorities.lyrTxrSkip); var qSort = function qSort(a, b) { return b.reqs - a.reqs; }; self.layersQueue = new heap(qSort); self.setupDequeueing(); }; var LTCp = LayeredTextureCache.prototype; var layerIdPool = 0; var MAX_INT = Math.pow(2, 53) - 1; LTCp.makeLayer = function (bb, lvl) { var scale = Math.pow(2, lvl); var w = Math.ceil(bb.w * scale); var h = Math.ceil(bb.h * scale); var canvas = this.renderer.makeOffscreenCanvas(w, h); var layer = { id: layerIdPool = ++layerIdPool % MAX_INT, bb: bb, level: lvl, width: w, height: h, canvas: canvas, context: canvas.getContext('2d'), eles: [], elesQueue: [], reqs: 0 }; // log('make layer %s with w %s and h %s and lvl %s', layer.id, layer.width, layer.height, layer.level); var cxt = layer.context; var dx = -layer.bb.x1; var dy = -layer.bb.y1; // do the transform on creation to save cycles (it's the same for all eles) cxt.scale(scale, scale); cxt.translate(dx, dy); return layer; }; LTCp.getLayers = function (eles, pxRatio, lvl) { var self = this; var r = self.renderer; var cy = r.cy; var zoom = cy.zoom(); var firstGet = self.firstGet; self.firstGet = false; // log('--\nget layers with %s eles', eles.length); //log eles.map(function(ele){ return ele.id() }) ); if (lvl == null) { lvl = Math.ceil(log2(zoom * pxRatio)); if (lvl < minLvl) { lvl = minLvl; } else if (zoom >= maxZoom || lvl > maxLvl) { return null; } } self.validateLayersElesOrdering(lvl, eles); var layersByLvl = self.layersByLevel; var scale = Math.pow(2, lvl); var layers = layersByLvl[lvl] = layersByLvl[lvl] || []; var bb; var lvlComplete = self.levelIsComplete(lvl, eles); var tmpLayers; var checkTempLevels = function checkTempLevels() { var canUseAsTmpLvl = function canUseAsTmpLvl(l) { self.validateLayersElesOrdering(l, eles); if (self.levelIsComplete(l, eles)) { tmpLayers = layersByLvl[l]; return true; } }; var checkLvls = function checkLvls(dir) { if (tmpLayers) { return; } for (var l = lvl + dir; minLvl <= l && l <= maxLvl; l += dir) { if (canUseAsTmpLvl(l)) { break; } } }; checkLvls(+1); checkLvls(-1); // remove the invalid layers; they will be replaced as needed later in this function for (var i = layers.length - 1; i >= 0; i--) { var layer = layers[i]; if (layer.invalid) { removeFromArray(layers, layer); } } }; if (!lvlComplete) { // if the current level is incomplete, then use the closest, best quality layerset temporarily // and later queue the current layerset so we can get the proper quality level soon checkTempLevels(); } else { // log('level complete, using existing layers\n--'); return layers; } var getBb = function getBb() { if (!bb) { bb = makeBoundingBox(); for (var i = 0; i < eles.length; i++) { updateBoundingBox(bb, eles[i].boundingBox()); } } return bb; }; var makeLayer = function makeLayer(opts) { opts = opts || {}; var after = opts.after; getBb(); var area = bb.w * scale * (bb.h * scale); if (area > maxLayerArea) { return null; } var layer = self.makeLayer(bb, lvl); if (after != null) { var index = layers.indexOf(after) + 1; layers.splice(index, 0, layer); } else if (opts.insert === undefined || opts.insert) { // no after specified => first layer made so put at start layers.unshift(layer); } // if( tmpLayers ){ //self.queueLayer( layer ); // } return layer; }; if (self.skipping && !firstGet) { // log('skip layers'); return null; } // log('do layers'); var layer = null; var maxElesPerLayer = eles.length / defNumLayers; var allowLazyQueueing = !firstGet; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; var rs = ele._private.rscratch; var caches = rs.imgLayerCaches = rs.imgLayerCaches || {}; // log('look at ele', ele.id()); var existingLayer = caches[lvl]; if (existingLayer) { // reuse layer for later eles // log('reuse layer for', ele.id()); layer = existingLayer; continue; } if (!layer || layer.eles.length >= maxElesPerLayer || !boundingBoxInBoundingBox(layer.bb, ele.boundingBox())) { // log('make new layer for ele %s', ele.id()); layer = makeLayer({ insert: true, after: layer }); // if now layer can be built then we can't use layers at this level if (!layer) { return null; } // log('new layer with id %s', layer.id); } if (tmpLayers || allowLazyQueueing) { // log('queue ele %s in layer %s', ele.id(), layer.id); self.queueLayer(layer, ele); } else { // log('draw ele %s in layer %s', ele.id(), layer.id); self.drawEleInLayer(layer, ele, lvl, pxRatio); } layer.eles.push(ele); caches[lvl] = layer; } // log('--'); if (tmpLayers) { // then we only queued the current layerset and can't draw it yet return tmpLayers; } if (allowLazyQueueing) { // log('lazy queue level', lvl); return null; } return layers; }; // a layer may want to use an ele cache of a higher level to avoid blurriness // so the layer level might not equal the ele level LTCp.getEleLevelForLayerLevel = function (lvl, pxRatio) { return lvl; }; LTCp.drawEleInLayer = function (layer, ele, lvl, pxRatio) { var self = this; var r = this.renderer; var context = layer.context; var bb = ele.boundingBox(); if (bb.w === 0 || bb.h === 0 || !ele.visible()) { return; } lvl = self.getEleLevelForLayerLevel(lvl, pxRatio); { r.setImgSmoothing(context, false); } { r.drawCachedElement(context, ele, null, null, lvl, useHighQualityEleTxrReqs); } { r.setImgSmoothing(context, true); } }; LTCp.levelIsComplete = function (lvl, eles) { var self = this; var layers = self.layersByLevel[lvl]; if (!layers || layers.length === 0) { return false; } var numElesInLayers = 0; for (var i = 0; i < layers.length; i++) { var layer = layers[i]; // if there are any eles needed to be drawn yet, the level is not complete if (layer.reqs > 0) { return false; } // if the layer is invalid, the level is not complete if (layer.invalid) { return false; } numElesInLayers += layer.eles.length; } // we should have exactly the number of eles passed in to be complete if (numElesInLayers !== eles.length) { return false; } return true; }; LTCp.validateLayersElesOrdering = function (lvl, eles) { var layers = this.layersByLevel[lvl]; if (!layers) { return; } // if in a layer the eles are not in the same order, then the layer is invalid // (i.e. there is an ele in between the eles in the layer) for (var i = 0; i < layers.length; i++) { var layer = layers[i]; var offset = -1; // find the offset for (var j = 0; j < eles.length; j++) { if (layer.eles[0] === eles[j]) { offset = j; break; } } if (offset < 0) { // then the layer has nonexistent elements and is invalid this.invalidateLayer(layer); continue; } // the eles in the layer must be in the same continuous order, else the layer is invalid var o = offset; for (var j = 0; j < layer.eles.length; j++) { if (layer.eles[j] !== eles[o + j]) { // log('invalidate based on ordering', layer.id); this.invalidateLayer(layer); break; } } } }; LTCp.updateElementsInLayers = function (eles, update) { var self = this; var isEles = element(eles[0]); // collect udpated elements (cascaded from the layers) and update each // layer itself along the way for (var i = 0; i < eles.length; i++) { var req = isEles ? null : eles[i]; var ele = isEles ? eles[i] : eles[i].ele; var rs = ele._private.rscratch; var caches = rs.imgLayerCaches = rs.imgLayerCaches || {}; for (var l = minLvl; l <= maxLvl; l++) { var layer = caches[l]; if (!layer) { continue; } // if update is a request from the ele cache, then it affects only // the matching level if (req && self.getEleLevelForLayerLevel(layer.level) !== req.level) { continue; } update(layer, ele, req); } } }; LTCp.haveLayers = function () { var self = this; var haveLayers = false; for (var l = minLvl; l <= maxLvl; l++) { var layers = self.layersByLevel[l]; if (layers && layers.length > 0) { haveLayers = true; break; } } return haveLayers; }; LTCp.invalidateElements = function (eles) { var self = this; if (eles.length === 0) { return; } self.lastInvalidationTime = performanceNow(); // log('update invalidate layer time from eles'); if (eles.length === 0 || !self.haveLayers()) { return; } self.updateElementsInLayers(eles, function invalAssocLayers(layer, ele, req) { self.invalidateLayer(layer); }); }; LTCp.invalidateLayer = function (layer) { // log('update invalidate layer time'); this.lastInvalidationTime = performanceNow(); if (layer.invalid) { return; } // save cycles var lvl = layer.level; var eles = layer.eles; var layers = this.layersByLevel[lvl]; // log('invalidate layer', layer.id ); removeFromArray(layers, layer); // layer.eles = []; layer.elesQueue = []; layer.invalid = true; if (layer.replacement) { layer.replacement.invalid = true; } for (var i = 0; i < eles.length; i++) { var caches = eles[i]._private.rscratch.imgLayerCaches; if (caches) { caches[lvl] = null; } } }; LTCp.refineElementTextures = function (eles) { var self = this; // log('refine', eles.length); self.updateElementsInLayers(eles, function refineEachEle(layer, ele, req) { var rLyr = layer.replacement; if (!rLyr) { rLyr = layer.replacement = self.makeLayer(layer.bb, layer.level); rLyr.replaces = layer; rLyr.eles = layer.eles; // log('make replacement layer %s for %s with level %s', rLyr.id, layer.id, rLyr.level); } if (!rLyr.reqs) { for (var i = 0; i < rLyr.eles.length; i++) { self.queueLayer(rLyr, rLyr.eles[i]); } // log('queue replacement layer refinement', rLyr.id); } }); }; LTCp.enqueueElementRefinement = function (ele) { this.eleTxrDeqs.merge(ele); this.scheduleElementRefinement(); }; LTCp.queueLayer = function (layer, ele) { var self = this; var q = self.layersQueue; var elesQ = layer.elesQueue; var hasId = elesQ.hasId = elesQ.hasId || {}; // if a layer is going to be replaced, queuing is a waste of time if (layer.replacement) { return; } if (ele) { if (hasId[ele.id()]) { return; } elesQ.push(ele); hasId[ele.id()] = true; } if (layer.reqs) { layer.reqs++; q.updateItem(layer); } else { layer.reqs = 1; q.push(layer); } }; LTCp.dequeue = function (pxRatio) { var self = this; var q = self.layersQueue; var deqd = []; var eleDeqs = 0; while (eleDeqs < maxDeqSize) { if (q.size() === 0) { break; } var layer = q.peek(); // if a layer has been or will be replaced, then don't waste time with it if (layer.replacement) { // log('layer %s in queue skipped b/c it already has a replacement', layer.id); q.pop(); continue; } // if this is a replacement layer that has been superceded, then forget it if (layer.replaces && layer !== layer.replaces.replacement) { // log('layer is no longer the most uptodate replacement; dequeued', layer.id) q.pop(); continue; } if (layer.invalid) { // log('replacement layer %s is invalid; dequeued', layer.id); q.pop(); continue; } var ele = layer.elesQueue.shift(); if (ele) { // log('dequeue layer %s', layer.id); self.drawEleInLayer(layer, ele, layer.level, pxRatio); eleDeqs++; } if (deqd.length === 0) { // we need only one entry in deqd to queue redrawing etc deqd.push(true); } // if the layer has all its eles done, then remove from the queue if (layer.elesQueue.length === 0) { q.pop(); layer.reqs = 0; // log('dequeue of layer %s complete', layer.id); // when a replacement layer is dequeued, it replaces the old layer in the level if (layer.replaces) { self.applyLayerReplacement(layer); } self.requestRedraw(); } } return deqd; }; LTCp.applyLayerReplacement = function (layer) { var self = this; var layersInLevel = self.layersByLevel[layer.level]; var replaced = layer.replaces; var index = layersInLevel.indexOf(replaced); // if the replaced layer is not in the active list for the level, then replacing // refs would be a mistake (i.e. overwriting the true active layer) if (index < 0 || replaced.invalid) { // log('replacement layer would have no effect', layer.id); return; } layersInLevel[index] = layer; // replace level ref // replace refs in eles for (var i = 0; i < layer.eles.length; i++) { var _p = layer.eles[i]._private; var cache = _p.imgLayerCaches = _p.imgLayerCaches || {}; if (cache) { cache[layer.level] = layer; } } // log('apply replacement layer %s over %s', layer.id, replaced.id); self.requestRedraw(); }; LTCp.requestRedraw = debounce_1(function () { var r = this.renderer; r.redrawHint('eles', true); r.redrawHint('drag', true); r.redraw(); }, 100); LTCp.setupDequeueing = defs.setupDequeueing({ deqRedrawThreshold: deqRedrawThreshold, deqCost: deqCost, deqAvgCost: deqAvgCost, deqNoDrawCost: deqNoDrawCost, deqFastCost: deqFastCost, deq: function deq(self, pxRatio) { return self.dequeue(pxRatio); }, onDeqd: noop$1, shouldRedraw: trueify, priority: function priority(self) { return self.renderer.beforeRenderPriorities.lyrTxrDeq; } }); var CRp$b = {}; var impl; function polygon(context, points) { for (var i = 0; i < points.length; i++) { var pt = points[i]; context.lineTo(pt.x, pt.y); } } function triangleBackcurve(context, points, controlPoint) { var firstPt; for (var i = 0; i < points.length; i++) { var pt = points[i]; if (i === 0) { firstPt = pt; } context.lineTo(pt.x, pt.y); } context.quadraticCurveTo(controlPoint.x, controlPoint.y, firstPt.x, firstPt.y); } function triangleTee(context, trianglePoints, teePoints) { if (context.beginPath) { context.beginPath(); } var triPts = trianglePoints; for (var i = 0; i < triPts.length; i++) { var pt = triPts[i]; context.lineTo(pt.x, pt.y); } var teePts = teePoints; var firstTeePt = teePoints[0]; context.moveTo(firstTeePt.x, firstTeePt.y); for (var i = 1; i < teePts.length; i++) { var pt = teePts[i]; context.lineTo(pt.x, pt.y); } if (context.closePath) { context.closePath(); } } function circleTriangle(context, trianglePoints, rx, ry, r) { if (context.beginPath) { context.beginPath(); } context.arc(rx, ry, r, 0, Math.PI * 2, false); var triPts = trianglePoints; var firstTrPt = triPts[0]; context.moveTo(firstTrPt.x, firstTrPt.y); for (var i = 0; i < triPts.length; i++) { var pt = triPts[i]; context.lineTo(pt.x, pt.y); } if (context.closePath) { context.closePath(); } } function circle(context, rx, ry, r) { context.arc(rx, ry, r, 0, Math.PI * 2, false); } CRp$b.arrowShapeImpl = function (name) { return (impl || (impl = { 'polygon': polygon, 'triangle-backcurve': triangleBackcurve, 'triangle-tee': triangleTee, 'circle-triangle': circleTriangle, 'triangle-cross': triangleTee, 'circle': circle }))[name]; }; var CRp$a = {}; CRp$a.drawElement = function (context, ele, shiftToOriginWithBb, showLabel, showOverlay, showOpacity) { var r = this; if (ele.isNode()) { r.drawNode(context, ele, shiftToOriginWithBb, showLabel, showOverlay, showOpacity); } else { r.drawEdge(context, ele, shiftToOriginWithBb, showLabel, showOverlay, showOpacity); } }; CRp$a.drawElementOverlay = function (context, ele) { var r = this; if (ele.isNode()) { r.drawNodeOverlay(context, ele); } else { r.drawEdgeOverlay(context, ele); } }; CRp$a.drawElementUnderlay = function (context, ele) { var r = this; if (ele.isNode()) { r.drawNodeUnderlay(context, ele); } else { r.drawEdgeUnderlay(context, ele); } }; CRp$a.drawCachedElementPortion = function (context, ele, eleTxrCache, pxRatio, lvl, reason, getRotation, getOpacity) { var r = this; var bb = eleTxrCache.getBoundingBox(ele); if (bb.w === 0 || bb.h === 0) { return; } // ignore zero size case var eleCache = eleTxrCache.getElement(ele, bb, pxRatio, lvl, reason); if (eleCache != null) { var opacity = getOpacity(r, ele); if (opacity === 0) { return; } var theta = getRotation(r, ele); var x1 = bb.x1, y1 = bb.y1, w = bb.w, h = bb.h; var x, y, sx, sy, smooth; if (theta !== 0) { var rotPt = eleTxrCache.getRotationPoint(ele); sx = rotPt.x; sy = rotPt.y; context.translate(sx, sy); context.rotate(theta); smooth = r.getImgSmoothing(context); if (!smooth) { r.setImgSmoothing(context, true); } var off = eleTxrCache.getRotationOffset(ele); x = off.x; y = off.y; } else { x = x1; y = y1; } var oldGlobalAlpha; if (opacity !== 1) { oldGlobalAlpha = context.globalAlpha; context.globalAlpha = oldGlobalAlpha * opacity; } context.drawImage(eleCache.texture.canvas, eleCache.x, 0, eleCache.width, eleCache.height, x, y, w, h); if (opacity !== 1) { context.globalAlpha = oldGlobalAlpha; } if (theta !== 0) { context.rotate(-theta); context.translate(-sx, -sy); if (!smooth) { r.setImgSmoothing(context, false); } } } else { eleTxrCache.drawElement(context, ele); // direct draw fallback } }; var getZeroRotation = function getZeroRotation() { return 0; }; var getLabelRotation = function getLabelRotation(r, ele) { return r.getTextAngle(ele, null); }; var getSourceLabelRotation = function getSourceLabelRotation(r, ele) { return r.getTextAngle(ele, 'source'); }; var getTargetLabelRotation = function getTargetLabelRotation(r, ele) { return r.getTextAngle(ele, 'target'); }; var getOpacity = function getOpacity(r, ele) { return ele.effectiveOpacity(); }; var getTextOpacity = function getTextOpacity(e, ele) { return ele.pstyle('text-opacity').pfValue * ele.effectiveOpacity(); }; CRp$a.drawCachedElement = function (context, ele, pxRatio, extent, lvl, requestHighQuality) { var r = this; var _r$data = r.data, eleTxrCache = _r$data.eleTxrCache, lblTxrCache = _r$data.lblTxrCache, slbTxrCache = _r$data.slbTxrCache, tlbTxrCache = _r$data.tlbTxrCache; var bb = ele.boundingBox(); var reason = requestHighQuality === true ? eleTxrCache.reasons.highQuality : null; if (bb.w === 0 || bb.h === 0 || !ele.visible()) { return; } if (!extent || boundingBoxesIntersect(bb, extent)) { var isEdge = ele.isEdge(); var badLine = ele.element()._private.rscratch.badLine; r.drawElementUnderlay(context, ele); r.drawCachedElementPortion(context, ele, eleTxrCache, pxRatio, lvl, reason, getZeroRotation, getOpacity); if (!isEdge || !badLine) { r.drawCachedElementPortion(context, ele, lblTxrCache, pxRatio, lvl, reason, getLabelRotation, getTextOpacity); } if (isEdge && !badLine) { r.drawCachedElementPortion(context, ele, slbTxrCache, pxRatio, lvl, reason, getSourceLabelRotation, getTextOpacity); r.drawCachedElementPortion(context, ele, tlbTxrCache, pxRatio, lvl, reason, getTargetLabelRotation, getTextOpacity); } r.drawElementOverlay(context, ele); } }; CRp$a.drawElements = function (context, eles) { var r = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; r.drawElement(context, ele); } }; CRp$a.drawCachedElements = function (context, eles, pxRatio, extent) { var r = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; r.drawCachedElement(context, ele, pxRatio, extent); } }; CRp$a.drawCachedNodes = function (context, eles, pxRatio, extent) { var r = this; for (var i = 0; i < eles.length; i++) { var ele = eles[i]; if (!ele.isNode()) { continue; } r.drawCachedElement(context, ele, pxRatio, extent); } }; CRp$a.drawLayeredElements = function (context, eles, pxRatio, extent) { var r = this; var layers = r.data.lyrTxrCache.getLayers(eles, pxRatio); if (layers) { for (var i = 0; i < layers.length; i++) { var layer = layers[i]; var bb = layer.bb; if (bb.w === 0 || bb.h === 0) { continue; } context.drawImage(layer.canvas, bb.x1, bb.y1, bb.w, bb.h); } } else { // fall back on plain caching if no layers r.drawCachedElements(context, eles, pxRatio, extent); } }; var CRp$9 = {}; CRp$9.drawEdge = function (context, edge, shiftToOriginWithBb) { var drawLabel = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true; var shouldDrawOverlay = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true; var shouldDrawOpacity = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : true; var r = this; var rs = edge._private.rscratch; if (shouldDrawOpacity && !edge.visible()) { return; } // if bezier ctrl pts can not be calculated, then die if (rs.badLine || rs.allpts == null || isNaN(rs.allpts[0])) { // isNaN in case edge is impossible and browser bugs (e.g. safari) return; } var bb; if (shiftToOriginWithBb) { bb = shiftToOriginWithBb; context.translate(-bb.x1, -bb.y1); } var opacity = shouldDrawOpacity ? edge.pstyle('opacity').value : 1; var lineOpacity = shouldDrawOpacity ? edge.pstyle('line-opacity').value : 1; var curveStyle = edge.pstyle('curve-style').value; var lineStyle = edge.pstyle('line-style').value; var edgeWidth = edge.pstyle('width').pfValue; var lineCap = edge.pstyle('line-cap').value; var effectiveLineOpacity = opacity * lineOpacity; // separate arrow opacity would require arrow-opacity property var effectiveArrowOpacity = opacity * lineOpacity; var drawLine = function drawLine() { var strokeOpacity = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : effectiveLineOpacity; if (curveStyle === 'straight-triangle') { r.eleStrokeStyle(context, edge, strokeOpacity); r.drawEdgeTrianglePath(edge, context, rs.allpts); } else { context.lineWidth = edgeWidth; context.lineCap = lineCap; r.eleStrokeStyle(context, edge, strokeOpacity); r.drawEdgePath(edge, context, rs.allpts, lineStyle); context.lineCap = 'butt'; // reset for other drawing functions } }; var drawOverlay = function drawOverlay() { if (!shouldDrawOverlay) { return; } r.drawEdgeOverlay(context, edge); }; var drawUnderlay = function drawUnderlay() { if (!shouldDrawOverlay) { return; } r.drawEdgeUnderlay(context, edge); }; var drawArrows = function drawArrows() { var arrowOpacity = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : effectiveArrowOpacity; r.drawArrowheads(context, edge, arrowOpacity); }; var drawText = function drawText() { r.drawElementText(context, edge, null, drawLabel); }; context.lineJoin = 'round'; var ghost = edge.pstyle('ghost').value === 'yes'; if (ghost) { var gx = edge.pstyle('ghost-offset-x').pfValue; var gy = edge.pstyle('ghost-offset-y').pfValue; var ghostOpacity = edge.pstyle('ghost-opacity').value; var effectiveGhostOpacity = effectiveLineOpacity * ghostOpacity; context.translate(gx, gy); drawLine(effectiveGhostOpacity); drawArrows(effectiveGhostOpacity); context.translate(-gx, -gy); } drawUnderlay(); drawLine(); drawArrows(); drawOverlay(); drawText(); if (shiftToOriginWithBb) { context.translate(bb.x1, bb.y1); } }; var drawEdgeOverlayUnderlay = function drawEdgeOverlayUnderlay(overlayOrUnderlay) { if (!['overlay', 'underlay'].includes(overlayOrUnderlay)) { throw new Error('Invalid state'); } return function (context, edge) { if (!edge.visible()) { return; } var opacity = edge.pstyle("".concat(overlayOrUnderlay, "-opacity")).value; if (opacity === 0) { return; } var r = this; var usePaths = r.usePaths(); var rs = edge._private.rscratch; var padding = edge.pstyle("".concat(overlayOrUnderlay, "-padding")).pfValue; var width = 2 * padding; var color = edge.pstyle("".concat(overlayOrUnderlay, "-color")).value; context.lineWidth = width; if (rs.edgeType === 'self' && !usePaths) { context.lineCap = 'butt'; } else { context.lineCap = 'round'; } r.colorStrokeStyle(context, color[0], color[1], color[2], opacity); r.drawEdgePath(edge, context, rs.allpts, 'solid'); }; }; CRp$9.drawEdgeOverlay = drawEdgeOverlayUnderlay('overlay'); CRp$9.drawEdgeUnderlay = drawEdgeOverlayUnderlay('underlay'); CRp$9.drawEdgePath = function (edge, context, pts, type) { var rs = edge._private.rscratch; var canvasCxt = context; var path; var pathCacheHit = false; var usePaths = this.usePaths(); var lineDashPattern = edge.pstyle('line-dash-pattern').pfValue; var lineDashOffset = edge.pstyle('line-dash-offset').pfValue; if (usePaths) { var pathCacheKey = pts.join('$'); var keyMatches = rs.pathCacheKey && rs.pathCacheKey === pathCacheKey; if (keyMatches) { path = context = rs.pathCache; pathCacheHit = true; } else { path = context = new Path2D(); rs.pathCacheKey = pathCacheKey; rs.pathCache = path; } } if (canvasCxt.setLineDash) { // for very outofdate browsers switch (type) { case 'dotted': canvasCxt.setLineDash([1, 1]); break; case 'dashed': canvasCxt.setLineDash(lineDashPattern); canvasCxt.lineDashOffset = lineDashOffset; break; case 'solid': canvasCxt.setLineDash([]); break; } } if (!pathCacheHit && !rs.badLine) { if (context.beginPath) { context.beginPath(); } context.moveTo(pts[0], pts[1]); switch (rs.edgeType) { case 'bezier': case 'self': case 'compound': case 'multibezier': for (var i = 2; i + 3 < pts.length; i += 4) { context.quadraticCurveTo(pts[i], pts[i + 1], pts[i + 2], pts[i + 3]); } break; case 'straight': case 'haystack': for (var _i = 2; _i + 1 < pts.length; _i += 2) { context.lineTo(pts[_i], pts[_i + 1]); } break; case 'segments': if (rs.isRound) { var _iterator = _createForOfIteratorHelper(rs.roundCorners), _step; try { for (_iterator.s(); !(_step = _iterator.n()).done;) { var corner = _step.value; drawPreparedRoundCorner(context, corner); } } catch (err) { _iterator.e(err); } finally { _iterator.f(); } context.lineTo(pts[pts.length - 2], pts[pts.length - 1]); } else { for (var _i2 = 2; _i2 + 1 < pts.length; _i2 += 2) { context.lineTo(pts[_i2], pts[_i2 + 1]); } } break; } } context = canvasCxt; if (usePaths) { context.stroke(path); } else { context.stroke(); } // reset any line dashes if (context.setLineDash) { // for very outofdate browsers context.setLineDash([]); } }; CRp$9.drawEdgeTrianglePath = function (edge, context, pts) { // use line stroke style for triangle fill style context.fillStyle = context.strokeStyle; var edgeWidth = edge.pstyle('width').pfValue; for (var i = 0; i + 1 < pts.length; i += 2) { var vector = [pts[i + 2] - pts[i], pts[i + 3] - pts[i + 1]]; var length = Math.sqrt(vector[0] * vector[0] + vector[1] * vector[1]); var normal = [vector[1] / length, -vector[0] / length]; var triangleHead = [normal[0] * edgeWidth / 2, normal[1] * edgeWidth / 2]; context.beginPath(); context.moveTo(pts[i] - triangleHead[0], pts[i + 1] - triangleHead[1]); context.lineTo(pts[i] + triangleHead[0], pts[i + 1] + triangleHead[1]); context.lineTo(pts[i + 2], pts[i + 3]); context.closePath(); context.fill(); } }; CRp$9.drawArrowheads = function (context, edge, opacity) { var rs = edge._private.rscratch; var isHaystack = rs.edgeType === 'haystack'; if (!isHaystack) { this.drawArrowhead(context, edge, 'source', rs.arrowStartX, rs.arrowStartY, rs.srcArrowAngle, opacity); } this.drawArrowhead(context, edge, 'mid-target', rs.midX, rs.midY, rs.midtgtArrowAngle, opacity); this.drawArrowhead(context, edge, 'mid-source', rs.midX, rs.midY, rs.midsrcArrowAngle, opacity); if (!isHaystack) { this.drawArrowhead(context, edge, 'target', rs.arrowEndX, rs.arrowEndY, rs.tgtArrowAngle, opacity); } }; CRp$9.drawArrowhead = function (context, edge, prefix, x, y, angle, opacity) { if (isNaN(x) || x == null || isNaN(y) || y == null || isNaN(angle) || angle == null) { return; } var self = this; var arrowShape = edge.pstyle(prefix + '-arrow-shape').value; if (arrowShape === 'none') { return; } var arrowClearFill = edge.pstyle(prefix + '-arrow-fill').value === 'hollow' ? 'both' : 'filled'; var arrowFill = edge.pstyle(prefix + '-arrow-fill').value; var edgeWidth = edge.pstyle('width').pfValue; var pArrowWidth = edge.pstyle(prefix + '-arrow-width'); var arrowWidth = pArrowWidth.value === 'match-line' ? edgeWidth : pArrowWidth.pfValue; if (pArrowWidth.units === '%') arrowWidth *= edgeWidth; var edgeOpacity = edge.pstyle('opacity').value; if (opacity === undefined) { opacity = edgeOpacity; } var gco = context.globalCompositeOperation; if (opacity !== 1 || arrowFill === 'hollow') { // then extra clear is needed context.globalCompositeOperation = 'destination-out'; self.colorFillStyle(context, 255, 255, 255, 1); self.colorStrokeStyle(context, 255, 255, 255, 1); self.drawArrowShape(edge, context, arrowClearFill, edgeWidth, arrowShape, arrowWidth, x, y, angle); context.globalCompositeOperation = gco; } // otherwise, the opaque arrow clears it for free :) var color = edge.pstyle(prefix + '-arrow-color').value; self.colorFillStyle(context, color[0], color[1], color[2], opacity); self.colorStrokeStyle(context, color[0], color[1], color[2], opacity); self.drawArrowShape(edge, context, arrowFill, edgeWidth, arrowShape, arrowWidth, x, y, angle); }; CRp$9.drawArrowShape = function (edge, context, fill, edgeWidth, shape, shapeWidth, x, y, angle) { var r = this; var usePaths = this.usePaths() && shape !== 'triangle-cross'; var pathCacheHit = false; var path; var canvasContext = context; var translation = { x: x, y: y }; var scale = edge.pstyle('arrow-scale').value; var size = this.getArrowWidth(edgeWidth, scale); var shapeImpl = r.arrowShapes[shape]; if (usePaths) { var cache = r.arrowPathCache = r.arrowPathCache || []; var key = hashString(shape); var cachedPath = cache[key]; if (cachedPath != null) { path = context = cachedPath; pathCacheHit = true; } else { path = context = new Path2D(); cache[key] = path; } } if (!pathCacheHit) { if (context.beginPath) { context.beginPath(); } if (usePaths) { // store in the path cache with values easily manipulated later shapeImpl.draw(context, 1, 0, { x: 0, y: 0 }, 1); } else { shapeImpl.draw(context, size, angle, translation, edgeWidth); } if (context.closePath) { context.closePath(); } } context = canvasContext; if (usePaths) { // set transform to arrow position/orientation context.translate(x, y); context.rotate(angle); context.scale(size, size); } if (fill === 'filled' || fill === 'both') { if (usePaths) { context.fill(path); } else { context.fill(); } } if (fill === 'hollow' || fill === 'both') { context.lineWidth = shapeWidth / (usePaths ? size : 1); context.lineJoin = 'miter'; if (usePaths) { context.stroke(path); } else { context.stroke(); } } if (usePaths) { // reset transform by applying inverse context.scale(1 / size, 1 / size); context.rotate(-angle); context.translate(-x, -y); } }; var CRp$8 = {}; CRp$8.safeDrawImage = function (context, img, ix, iy, iw, ih, x, y, w, h) { // detect problematic cases for old browsers with bad images (cheaper than try-catch) if (iw <= 0 || ih <= 0 || w <= 0 || h <= 0) { return; } try { context.drawImage(img, ix, iy, iw, ih, x, y, w, h); } catch (e) { warn(e); } }; CRp$8.drawInscribedImage = function (context, img, node, index, nodeOpacity) { var r = this; var pos = node.position(); var nodeX = pos.x; var nodeY = pos.y; var styleObj = node.cy().style(); var getIndexedStyle = styleObj.getIndexedStyle.bind(styleObj); var fit = getIndexedStyle(node, 'background-fit', 'value', index); var repeat = getIndexedStyle(node, 'background-repeat', 'value', index); var nodeW = node.width(); var nodeH = node.height(); var paddingX2 = node.padding() * 2; var nodeTW = nodeW + (getIndexedStyle(node, 'background-width-relative-to', 'value', index) === 'inner' ? 0 : paddingX2); var nodeTH = nodeH + (getIndexedStyle(node, 'background-height-relative-to', 'value', index) === 'inner' ? 0 : paddingX2); var rs = node._private.rscratch; var clip = getIndexedStyle(node, 'background-clip', 'value', index); var shouldClip = clip === 'node'; var imgOpacity = getIndexedStyle(node, 'background-image-opacity', 'value', index) * nodeOpacity; var smooth = getIndexedStyle(node, 'background-image-smoothing', 'value', index); var cornerRadius = node.pstyle('corner-radius').value; if (cornerRadius !== 'auto') cornerRadius = node.pstyle('corner-radius').pfValue; var imgW = img.width || img.cachedW; var imgH = img.height || img.cachedH; // workaround for broken browsers like ie if (null == imgW || null == imgH) { document.body.appendChild(img); // eslint-disable-line no-undef imgW = img.cachedW = img.width || img.offsetWidth; imgH = img.cachedH = img.height || img.offsetHeight; document.body.removeChild(img); // eslint-disable-line no-undef } var w = imgW; var h = imgH; if (getIndexedStyle(node, 'background-width', 'value', index) !== 'auto') { if (getIndexedStyle(node, 'background-width', 'units', index) === '%') { w = getIndexedStyle(node, 'background-width', 'pfValue', index) * nodeTW; } else { w = getIndexedStyle(node, 'background-width', 'pfValue', index); } } if (getIndexedStyle(node, 'background-height', 'value', index) !== 'auto') { if (getIndexedStyle(node, 'background-height', 'units', index) === '%') { h = getIndexedStyle(node, 'background-height', 'pfValue', index) * nodeTH; } else { h = getIndexedStyle(node, 'background-height', 'pfValue', index); } } if (w === 0 || h === 0) { return; // no point in drawing empty image (and chrome is broken in this case) } if (fit === 'contain') { var scale = Math.min(nodeTW / w, nodeTH / h); w *= scale; h *= scale; } else if (fit === 'cover') { var scale = Math.max(nodeTW / w, nodeTH / h); w *= scale; h *= scale; } var x = nodeX - nodeTW / 2; // left var posXUnits = getIndexedStyle(node, 'background-position-x', 'units', index); var posXPfVal = getIndexedStyle(node, 'background-position-x', 'pfValue', index); if (posXUnits === '%') { x += (nodeTW - w) * posXPfVal; } else { x += posXPfVal; } var offXUnits = getIndexedStyle(node, 'background-offset-x', 'units', index); var offXPfVal = getIndexedStyle(node, 'background-offset-x', 'pfValue', index); if (offXUnits === '%') { x += (nodeTW - w) * offXPfVal; } else { x += offXPfVal; } var y = nodeY - nodeTH / 2; // top var posYUnits = getIndexedStyle(node, 'background-position-y', 'units', index); var posYPfVal = getIndexedStyle(node, 'background-position-y', 'pfValue', index); if (posYUnits === '%') { y += (nodeTH - h) * posYPfVal; } else { y += posYPfVal; } var offYUnits = getIndexedStyle(node, 'background-offset-y', 'units', index); var offYPfVal = getIndexedStyle(node, 'background-offset-y', 'pfValue', index); if (offYUnits === '%') { y += (nodeTH - h) * offYPfVal; } else { y += offYPfVal; } if (rs.pathCache) { x -= nodeX; y -= nodeY; nodeX = 0; nodeY = 0; } var gAlpha = context.globalAlpha; context.globalAlpha = imgOpacity; var smoothingEnabled = r.getImgSmoothing(context); var isSmoothingSwitched = false; if (smooth === 'no' && smoothingEnabled) { r.setImgSmoothing(context, false); isSmoothingSwitched = true; } else if (smooth === 'yes' && !smoothingEnabled) { r.setImgSmoothing(context, true); isSmoothingSwitched = true; } if (repeat === 'no-repeat') { if (shouldClip) { context.save(); if (rs.pathCache) { context.clip(rs.pathCache); } else { r.nodeShapes[r.getNodeShape(node)].draw(context, nodeX, nodeY, nodeTW, nodeTH, cornerRadius, rs); context.clip(); } } r.safeDrawImage(context, img, 0, 0, imgW, imgH, x, y, w, h); if (shouldClip) { context.restore(); } } else { var pattern = context.createPattern(img, repeat); context.fillStyle = pattern; r.nodeShapes[r.getNodeShape(node)].draw(context, nodeX, nodeY, nodeTW, nodeTH, cornerRadius, rs); context.translate(x, y); context.fill(); context.translate(-x, -y); } context.globalAlpha = gAlpha; if (isSmoothingSwitched) { r.setImgSmoothing(context, smoothingEnabled); } }; var CRp$7 = {}; CRp$7.eleTextBiggerThanMin = function (ele, scale) { if (!scale) { var zoom = ele.cy().zoom(); var pxRatio = this.getPixelRatio(); var lvl = Math.ceil(log2(zoom * pxRatio)); // the effective texture level scale = Math.pow(2, lvl); } var computedSize = ele.pstyle('font-size').pfValue * scale; var minSize = ele.pstyle('min-zoomed-font-size').pfValue; if (computedSize < minSize) { return false; } return true; }; CRp$7.drawElementText = function (context, ele, shiftToOriginWithBb, force, prefix) { var useEleOpacity = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : true; var r = this; if (force == null) { if (useEleOpacity && !r.eleTextBiggerThanMin(ele)) { return; } } else if (force === false) { return; } if (ele.isNode()) { var label = ele.pstyle('label'); if (!label || !label.value) { return; } var justification = r.getLabelJustification(ele); context.textAlign = justification; context.textBaseline = 'bottom'; } else { var badLine = ele.element()._private.rscratch.badLine; var _label = ele.pstyle('label'); var srcLabel = ele.pstyle('source-label'); var tgtLabel = ele.pstyle('target-label'); if (badLine || (!_label || !_label.value) && (!srcLabel || !srcLabel.value) && (!tgtLabel || !tgtLabel.value)) { return; } context.textAlign = 'center'; context.textBaseline = 'bottom'; } var applyRotation = !shiftToOriginWithBb; var bb; if (shiftToOriginWithBb) { bb = shiftToOriginWithBb; context.translate(-bb.x1, -bb.y1); } if (prefix == null) { r.drawText(context, ele, null, applyRotation, useEleOpacity); if (ele.isEdge()) { r.drawText(context, ele, 'source', applyRotation, useEleOpacity); r.drawText(context, ele, 'target', applyRotation, useEleOpacity); } } else { r.drawText(context, ele, prefix, applyRotation, useEleOpacity); } if (shiftToOriginWithBb) { context.translate(bb.x1, bb.y1); } }; CRp$7.getFontCache = function (context) { var cache; this.fontCaches = this.fontCaches || []; for (var i = 0; i < this.fontCaches.length; i++) { cache = this.fontCaches[i]; if (cache.context === context) { return cache; } } cache = { context: context }; this.fontCaches.push(cache); return cache; }; // set up canvas context with font // returns transformed text string CRp$7.setupTextStyle = function (context, ele) { var useEleOpacity = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true; // Font style var labelStyle = ele.pstyle('font-style').strValue; var labelSize = ele.pstyle('font-size').pfValue + 'px'; var labelFamily = ele.pstyle('font-family').strValue; var labelWeight = ele.pstyle('font-weight').strValue; var opacity = useEleOpacity ? ele.effectiveOpacity() * ele.pstyle('text-opacity').value : 1; var outlineOpacity = ele.pstyle('text-outline-opacity').value * opacity; var color = ele.pstyle('color').value; var outlineColor = ele.pstyle('text-outline-color').value; context.font = labelStyle + ' ' + labelWeight + ' ' + labelSize + ' ' + labelFamily; context.lineJoin = 'round'; // so text outlines aren't jagged this.colorFillStyle(context, color[0], color[1], color[2], opacity); this.colorStrokeStyle(context, outlineColor[0], outlineColor[1], outlineColor[2], outlineOpacity); }; // TODO ensure re-used function roundRect(ctx, x, y, width, height) { var radius = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : 5; var stroke = arguments.length > 6 ? arguments[6] : undefined; ctx.beginPath(); ctx.moveTo(x + radius, y); ctx.lineTo(x + width - radius, y); ctx.quadraticCurveTo(x + width, y, x + width, y + radius); ctx.lineTo(x + width, y + height - radius); ctx.quadraticCurveTo(x + width, y + height, x + width - radius, y + height); ctx.lineTo(x + radius, y + height); ctx.quadraticCurveTo(x, y + height, x, y + height - radius); ctx.lineTo(x, y + radius); ctx.quadraticCurveTo(x, y, x + radius, y); ctx.closePath(); if (stroke) ctx.stroke();else ctx.fill(); } CRp$7.getTextAngle = function (ele, prefix) { var theta; var _p = ele._private; var rscratch = _p.rscratch; var pdash = prefix ? prefix + '-' : ''; var rotation = ele.pstyle(pdash + 'text-rotation'); var textAngle = getPrefixedProperty(rscratch, 'labelAngle', prefix); if (rotation.strValue === 'autorotate') { theta = ele.isEdge() ? textAngle : 0; } else if (rotation.strValue === 'none') { theta = 0; } else { theta = rotation.pfValue; } return theta; }; CRp$7.drawText = function (context, ele, prefix) { var applyRotation = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true; var useEleOpacity = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true; var _p = ele._private; var rscratch = _p.rscratch; var parentOpacity = useEleOpacity ? ele.effectiveOpacity() : 1; if (useEleOpacity && (parentOpacity === 0 || ele.pstyle('text-opacity').value === 0)) { return; } // use 'main' as an alias for the main label (i.e. null prefix) if (prefix === 'main') { prefix = null; } var textX = getPrefixedProperty(rscratch, 'labelX', prefix); var textY = getPrefixedProperty(rscratch, 'labelY', prefix); var orgTextX, orgTextY; // used for rotation var text = this.getLabelText(ele, prefix); if (text != null && text !== '' && !isNaN(textX) && !isNaN(textY)) { this.setupTextStyle(context, ele, useEleOpacity); var pdash = prefix ? prefix + '-' : ''; var textW = getPrefixedProperty(rscratch, 'labelWidth', prefix); var textH = getPrefixedProperty(rscratch, 'labelHeight', prefix); var marginX = ele.pstyle(pdash + 'text-margin-x').pfValue; var marginY = ele.pstyle(pdash + 'text-margin-y').pfValue; var isEdge = ele.isEdge(); var halign = ele.pstyle('text-halign').value; var valign = ele.pstyle('text-valign').value; if (isEdge) { halign = 'center'; valign = 'center'; } textX += marginX; textY += marginY; var theta; if (!applyRotation) { theta = 0; } else { theta = this.getTextAngle(ele, prefix); } if (theta !== 0) { orgTextX = textX; orgTextY = textY; context.translate(orgTextX, orgTextY); context.rotate(theta); textX = 0; textY = 0; } switch (valign) { case 'top': break; case 'center': textY += textH / 2; break; case 'bottom': textY += textH; break; } var backgroundOpacity = ele.pstyle('text-background-opacity').value; var borderOpacity = ele.pstyle('text-border-opacity').value; var textBorderWidth = ele.pstyle('text-border-width').pfValue; var backgroundPadding = ele.pstyle('text-background-padding').pfValue; var styleShape = ele.pstyle('text-background-shape').strValue; var rounded = styleShape.indexOf('round') === 0; var roundRadius = 2; if (backgroundOpacity > 0 || textBorderWidth > 0 && borderOpacity > 0) { var bgX = textX - backgroundPadding; switch (halign) { case 'left': bgX -= textW; break; case 'center': bgX -= textW / 2; break; } var bgY = textY - textH - backgroundPadding; var bgW = textW + 2 * backgroundPadding; var bgH = textH + 2 * backgroundPadding; if (backgroundOpacity > 0) { var textFill = context.fillStyle; var textBackgroundColor = ele.pstyle('text-background-color').value; context.fillStyle = 'rgba(' + textBackgroundColor[0] + ',' + textBackgroundColor[1] + ',' + textBackgroundColor[2] + ',' + backgroundOpacity * parentOpacity + ')'; if (rounded) { roundRect(context, bgX, bgY, bgW, bgH, roundRadius); } else { context.fillRect(bgX, bgY, bgW, bgH); } context.fillStyle = textFill; } if (textBorderWidth > 0 && borderOpacity > 0) { var textStroke = context.strokeStyle; var textLineWidth = context.lineWidth; var textBorderColor = ele.pstyle('text-border-color').value; var textBorderStyle = ele.pstyle('text-border-style').value; context.strokeStyle = 'rgba(' + textBorderColor[0] + ',' + textBorderColor[1] + ',' + textBorderColor[2] + ',' + borderOpacity * parentOpacity + ')'; context.lineWidth = textBorderWidth; if (context.setLineDash) { // for very outofdate browsers switch (textBorderStyle) { case 'dotted': context.setLineDash([1, 1]); break; case 'dashed': context.setLineDash([4, 2]); break; case 'double': context.lineWidth = textBorderWidth / 4; // 50% reserved for white between the two borders context.setLineDash([]); break; case 'solid': context.setLineDash([]); break; } } if (rounded) { roundRect(context, bgX, bgY, bgW, bgH, roundRadius, 'stroke'); } else { context.strokeRect(bgX, bgY, bgW, bgH); } if (textBorderStyle === 'double') { var whiteWidth = textBorderWidth / 2; if (rounded) { roundRect(context, bgX + whiteWidth, bgY + whiteWidth, bgW - whiteWidth * 2, bgH - whiteWidth * 2, roundRadius, 'stroke'); } else { context.strokeRect(bgX + whiteWidth, bgY + whiteWidth, bgW - whiteWidth * 2, bgH - whiteWidth * 2); } } if (context.setLineDash) { // for very outofdate browsers context.setLineDash([]); } context.lineWidth = textLineWidth; context.strokeStyle = textStroke; } } var lineWidth = 2 * ele.pstyle('text-outline-width').pfValue; // *2 b/c the stroke is drawn centred on the middle if (lineWidth > 0) { context.lineWidth = lineWidth; } if (ele.pstyle('text-wrap').value === 'wrap') { var lines = getPrefixedProperty(rscratch, 'labelWrapCachedLines', prefix); var lineHeight = getPrefixedProperty(rscratch, 'labelLineHeight', prefix); var halfTextW = textW / 2; var justification = this.getLabelJustification(ele); if (justification === 'auto') ; else if (halign === 'left') { // auto justification : right if (justification === 'left') { textX += -textW; } else if (justification === 'center') { textX += -halfTextW; } // else same as auto } else if (halign === 'center') { // auto justfication : center if (justification === 'left') { textX += -halfTextW; } else if (justification === 'right') { textX += halfTextW; } // else same as auto } else if (halign === 'right') { // auto justification : left if (justification === 'center') { textX += halfTextW; } else if (justification === 'right') { textX += textW; } // else same as auto } switch (valign) { case 'top': textY -= (lines.length - 1) * lineHeight; break; case 'center': case 'bottom': textY -= (lines.length - 1) * lineHeight; break; } for (var l = 0; l < lines.length; l++) { if (lineWidth > 0) { context.strokeText(lines[l], textX, textY); } context.fillText(lines[l], textX, textY); textY += lineHeight; } } else { if (lineWidth > 0) { context.strokeText(text, textX, textY); } context.fillText(text, textX, textY); } if (theta !== 0) { context.rotate(-theta); context.translate(-orgTextX, -orgTextY); } } }; /* global Path2D */ var CRp$6 = {}; CRp$6.drawNode = function (context, node, shiftToOriginWithBb) { var drawLabel = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true; var shouldDrawOverlay = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true; var shouldDrawOpacity = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : true; var r = this; var nodeWidth, nodeHeight; var _p = node._private; var rs = _p.rscratch; var pos = node.position(); if (!number$1(pos.x) || !number$1(pos.y)) { return; // can't draw node with undefined position } if (shouldDrawOpacity && !node.visible()) { return; } var eleOpacity = shouldDrawOpacity ? node.effectiveOpacity() : 1; var usePaths = r.usePaths(); var path; var pathCacheHit = false; var padding = node.padding(); nodeWidth = node.width() + 2 * padding; nodeHeight = node.height() + 2 * padding; // // setup shift var bb; if (shiftToOriginWithBb) { bb = shiftToOriginWithBb; context.translate(-bb.x1, -bb.y1); } // // load bg image var bgImgProp = node.pstyle('background-image'); var urls = bgImgProp.value; var urlDefined = new Array(urls.length); var image = new Array(urls.length); var numImages = 0; for (var i = 0; i < urls.length; i++) { var url = urls[i]; var defd = urlDefined[i] = url != null && url !== 'none'; if (defd) { var bgImgCrossOrigin = node.cy().style().getIndexedStyle(node, 'background-image-crossorigin', 'value', i); numImages++; // get image, and if not loaded then ask to redraw when later loaded image[i] = r.getCachedImage(url, bgImgCrossOrigin, function () { _p.backgroundTimestamp = Date.now(); node.emitAndNotify('background'); }); } } // // setup styles var darkness = node.pstyle('background-blacken').value; var borderWidth = node.pstyle('border-width').pfValue; var bgOpacity = node.pstyle('background-opacity').value * eleOpacity; var borderColor = node.pstyle('border-color').value; var borderStyle = node.pstyle('border-style').value; var borderJoin = node.pstyle('border-join').value; var borderCap = node.pstyle('border-cap').value; var borderPosition = node.pstyle('border-position').value; var borderPattern = node.pstyle('border-dash-pattern').pfValue; var borderOffset = node.pstyle('border-dash-offset').pfValue; var borderOpacity = node.pstyle('border-opacity').value * eleOpacity; var outlineWidth = node.pstyle('outline-width').pfValue; var outlineColor = node.pstyle('outline-color').value; var outlineStyle = node.pstyle('outline-style').value; var outlineOpacity = node.pstyle('outline-opacity').value * eleOpacity; var outlineOffset = node.pstyle('outline-offset').value; var cornerRadius = node.pstyle('corner-radius').value; if (cornerRadius !== 'auto') cornerRadius = node.pstyle('corner-radius').pfValue; var setupShapeColor = function setupShapeColor() { var bgOpy = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : bgOpacity; r.eleFillStyle(context, node, bgOpy); }; var setupBorderColor = function setupBorderColor() { var bdrOpy = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : borderOpacity; r.colorStrokeStyle(context, borderColor[0], borderColor[1], borderColor[2], bdrOpy); }; var setupOutlineColor = function setupOutlineColor() { var otlnOpy = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : outlineOpacity; r.colorStrokeStyle(context, outlineColor[0], outlineColor[1], outlineColor[2], otlnOpy); }; // // setup shape var getPath = function getPath(width, height, shape, points) { var pathCache = r.nodePathCache = r.nodePathCache || []; var key = hashStrings(shape === 'polygon' ? shape + ',' + points.join(',') : shape, '' + height, '' + width, '' + cornerRadius); var cachedPath = pathCache[key]; var path; var cacheHit = false; if (cachedPath != null) { path = cachedPath; cacheHit = true; rs.pathCache = path; } else { path = new Path2D(); pathCache[key] = rs.pathCache = path; } return { path: path, cacheHit: cacheHit }; }; var styleShape = node.pstyle('shape').strValue; var shapePts = node.pstyle('shape-polygon-points').pfValue; if (usePaths) { context.translate(pos.x, pos.y); var shapePath = getPath(nodeWidth, nodeHeight, styleShape, shapePts); path = shapePath.path; pathCacheHit = shapePath.cacheHit; } var drawShape = function drawShape() { if (!pathCacheHit) { var npos = pos; if (usePaths) { npos = { x: 0, y: 0 }; } r.nodeShapes[r.getNodeShape(node)].draw(path || context, npos.x, npos.y, nodeWidth, nodeHeight, cornerRadius, rs); } if (usePaths) { context.fill(path); } else { context.fill(); } }; var drawImages = function drawImages() { var nodeOpacity = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : eleOpacity; var inside = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; var prevBging = _p.backgrounding; var totalCompleted = 0; for (var _i = 0; _i < image.length; _i++) { var bgContainment = node.cy().style().getIndexedStyle(node, 'background-image-containment', 'value', _i); if (inside && bgContainment === 'over' || !inside && bgContainment === 'inside') { totalCompleted++; continue; } if (urlDefined[_i] && image[_i].complete && !image[_i].error) { totalCompleted++; r.drawInscribedImage(context, image[_i], node, _i, nodeOpacity); } } _p.backgrounding = !(totalCompleted === numImages); if (prevBging !== _p.backgrounding) { // update style b/c :backgrounding state changed node.updateStyle(false); } }; var drawPie = function drawPie() { var redrawShape = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false; var pieOpacity = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : eleOpacity; if (r.hasPie(node)) { r.drawPie(context, node, pieOpacity); // redraw/restore path if steps after pie need it if (redrawShape) { if (!usePaths) { r.nodeShapes[r.getNodeShape(node)].draw(context, pos.x, pos.y, nodeWidth, nodeHeight, cornerRadius, rs); } } } }; var darken = function darken() { var darkenOpacity = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : eleOpacity; var opacity = (darkness > 0 ? darkness : -darkness) * darkenOpacity; var c = darkness > 0 ? 0 : 255; if (darkness !== 0) { r.colorFillStyle(context, c, c, c, opacity); if (usePaths) { context.fill(path); } else { context.fill(); } } }; var drawBorder = function drawBorder() { if (borderWidth > 0) { context.lineWidth = borderWidth; context.lineCap = borderCap; context.lineJoin = borderJoin; if (context.setLineDash) { // for very outofdate browsers switch (borderStyle) { case 'dotted': context.setLineDash([1, 1]); break; case 'dashed': context.setLineDash(borderPattern); context.lineDashOffset = borderOffset; break; case 'solid': case 'double': context.setLineDash([]); break; } } if (borderPosition !== 'center') { context.save(); context.lineWidth *= 2; if (borderPosition === 'inside') { usePaths ? context.clip(path) : context.clip(); } else { var region = new Path2D(); region.rect(-nodeWidth / 2 - borderWidth, -nodeHeight / 2 - borderWidth, nodeWidth + 2 * borderWidth, nodeHeight + 2 * borderWidth); region.addPath(path); context.clip(region, 'evenodd'); } usePaths ? context.stroke(path) : context.stroke(); context.restore(); } else { usePaths ? context.stroke(path) : context.stroke(); } if (borderStyle === 'double') { context.lineWidth = borderWidth / 3; var gco = context.globalCompositeOperation; context.globalCompositeOperation = 'destination-out'; if (usePaths) { context.stroke(path); } else { context.stroke(); } context.globalCompositeOperation = gco; } // reset in case we changed the border style if (context.setLineDash) { // for very outofdate browsers context.setLineDash([]); } } }; var drawOutline = function drawOutline() { if (outlineWidth > 0) { context.lineWidth = outlineWidth; context.lineCap = 'butt'; if (context.setLineDash) { // for very outofdate browsers switch (outlineStyle) { case 'dotted': context.setLineDash([1, 1]); break; case 'dashed': context.setLineDash([4, 2]); break; case 'solid': case 'double': context.setLineDash([]); break; } } var npos = pos; if (usePaths) { npos = { x: 0, y: 0 }; } var shape = r.getNodeShape(node); var bWidth = borderWidth; if (borderPosition === 'inside') bWidth = 0; if (borderPosition === 'outside') bWidth *= 2; var scaleX = (nodeWidth + bWidth + (outlineWidth + outlineOffset)) / nodeWidth; var scaleY = (nodeHeight + bWidth + (outlineWidth + outlineOffset)) / nodeHeight; var sWidth = nodeWidth * scaleX; var sHeight = nodeHeight * scaleY; var points = r.nodeShapes[shape].points; var _path; if (usePaths) { var outlinePath = getPath(sWidth, sHeight, shape, points); _path = outlinePath.path; } // draw the outline path, either by using expanded points or by scaling // the dimensions, depending on shape if (shape === "ellipse") { r.drawEllipsePath(_path || context, npos.x, npos.y, sWidth, sHeight); } else if (['round-diamond', 'round-heptagon', 'round-hexagon', 'round-octagon', 'round-pentagon', 'round-polygon', 'round-triangle', 'round-tag'].includes(shape)) { var sMult = 0; var offsetX = 0; var offsetY = 0; if (shape === 'round-diamond') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.4; } else if (shape === 'round-heptagon') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.075; offsetY = -(bWidth / 2 + outlineOffset + outlineWidth) / 35; } else if (shape === 'round-hexagon') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.12; } else if (shape === 'round-pentagon') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.13; offsetY = -(bWidth / 2 + outlineOffset + outlineWidth) / 15; } else if (shape === 'round-tag') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.12; offsetX = (bWidth / 2 + outlineWidth + outlineOffset) * .07; } else if (shape === 'round-triangle') { sMult = (bWidth + outlineOffset + outlineWidth) * (Math.PI / 2); offsetY = -(bWidth + outlineOffset / 2 + outlineWidth) / Math.PI; } if (sMult !== 0) { scaleX = (nodeWidth + sMult) / nodeWidth; sWidth = nodeWidth * scaleX; if (!['round-hexagon', 'round-tag'].includes(shape)) { scaleY = (nodeHeight + sMult) / nodeHeight; sHeight = nodeHeight * scaleY; } } cornerRadius = cornerRadius === 'auto' ? getRoundPolygonRadius(sWidth, sHeight) : cornerRadius; var halfW = sWidth / 2; var halfH = sHeight / 2; var radius = cornerRadius + (bWidth + outlineWidth + outlineOffset) / 2; var p = new Array(points.length / 2); var corners = new Array(points.length / 2); for (var _i3 = 0; _i3 < points.length / 2; _i3++) { p[_i3] = { x: npos.x + offsetX + halfW * points[_i3 * 2], y: npos.y + offsetY + halfH * points[_i3 * 2 + 1] }; } var _i2, p1, p2, p3, len = p.length; p1 = p[len - 1]; // for each point for (_i2 = 0; _i2 < len; _i2++) { p2 = p[_i2 % len]; p3 = p[(_i2 + 1) % len]; corners[_i2] = getRoundCorner(p1, p2, p3, radius); p1 = p2; p2 = p3; } r.drawRoundPolygonPath(_path || context, npos.x + offsetX, npos.y + offsetY, nodeWidth * scaleX, nodeHeight * scaleY, points, corners); } else if (['roundrectangle', 'round-rectangle'].includes(shape)) { cornerRadius = cornerRadius === 'auto' ? getRoundRectangleRadius(sWidth, sHeight) : cornerRadius; r.drawRoundRectanglePath(_path || context, npos.x, npos.y, sWidth, sHeight, cornerRadius + (bWidth + outlineWidth + outlineOffset) / 2); } else if (['cutrectangle', 'cut-rectangle'].includes(shape)) { cornerRadius = cornerRadius === 'auto' ? getCutRectangleCornerLength() : cornerRadius; r.drawCutRectanglePath(_path || context, npos.x, npos.y, sWidth, sHeight, null, cornerRadius + (bWidth + outlineWidth + outlineOffset) / 4); } else if (['bottomroundrectangle', 'bottom-round-rectangle'].includes(shape)) { cornerRadius = cornerRadius === 'auto' ? getRoundRectangleRadius(sWidth, sHeight) : cornerRadius; r.drawBottomRoundRectanglePath(_path || context, npos.x, npos.y, sWidth, sHeight, cornerRadius + (bWidth + outlineWidth + outlineOffset) / 2); } else if (shape === "barrel") { r.drawBarrelPath(_path || context, npos.x, npos.y, sWidth, sHeight); } else if (shape.startsWith("polygon") || ['rhomboid', 'right-rhomboid', 'round-tag', 'tag', 'vee'].includes(shape)) { var pad = (bWidth + outlineWidth + outlineOffset) / nodeWidth; points = joinLines(expandPolygon(points, pad)); r.drawPolygonPath(_path || context, npos.x, npos.y, nodeWidth, nodeHeight, points); } else { var _pad = (bWidth + outlineWidth + outlineOffset) / nodeWidth; points = joinLines(expandPolygon(points, -_pad)); r.drawPolygonPath(_path || context, npos.x, npos.y, nodeWidth, nodeHeight, points); } if (usePaths) { context.stroke(_path); } else { context.stroke(); } if (outlineStyle === 'double') { context.lineWidth = bWidth / 3; var gco = context.globalCompositeOperation; context.globalCompositeOperation = 'destination-out'; if (usePaths) { context.stroke(_path); } else { context.stroke(); } context.globalCompositeOperation = gco; } // reset in case we changed the border style if (context.setLineDash) { // for very outofdate browsers context.setLineDash([]); } } }; var drawOverlay = function drawOverlay() { if (shouldDrawOverlay) { r.drawNodeOverlay(context, node, pos, nodeWidth, nodeHeight); } }; var drawUnderlay = function drawUnderlay() { if (shouldDrawOverlay) { r.drawNodeUnderlay(context, node, pos, nodeWidth, nodeHeight); } }; var drawText = function drawText() { r.drawElementText(context, node, null, drawLabel); }; var ghost = node.pstyle('ghost').value === 'yes'; if (ghost) { var gx = node.pstyle('ghost-offset-x').pfValue; var gy = node.pstyle('ghost-offset-y').pfValue; var ghostOpacity = node.pstyle('ghost-opacity').value; var effGhostOpacity = ghostOpacity * eleOpacity; context.translate(gx, gy); setupOutlineColor(); drawOutline(); setupShapeColor(ghostOpacity * bgOpacity); drawShape(); drawImages(effGhostOpacity, true); setupBorderColor(ghostOpacity * borderOpacity); drawBorder(); drawPie(darkness !== 0 || borderWidth !== 0); drawImages(effGhostOpacity, false); darken(effGhostOpacity); context.translate(-gx, -gy); } if (usePaths) { context.translate(-pos.x, -pos.y); } drawUnderlay(); if (usePaths) { context.translate(pos.x, pos.y); } setupOutlineColor(); drawOutline(); setupShapeColor(); drawShape(); drawImages(eleOpacity, true); setupBorderColor(); drawBorder(); drawPie(darkness !== 0 || borderWidth !== 0); drawImages(eleOpacity, false); darken(); if (usePaths) { context.translate(-pos.x, -pos.y); } drawText(); drawOverlay(); // // clean up shift if (shiftToOriginWithBb) { context.translate(bb.x1, bb.y1); } }; var drawNodeOverlayUnderlay = function drawNodeOverlayUnderlay(overlayOrUnderlay) { if (!['overlay', 'underlay'].includes(overlayOrUnderlay)) { throw new Error('Invalid state'); } return function (context, node, pos, nodeWidth, nodeHeight) { var r = this; if (!node.visible()) { return; } var padding = node.pstyle("".concat(overlayOrUnderlay, "-padding")).pfValue; var opacity = node.pstyle("".concat(overlayOrUnderlay, "-opacity")).value; var color = node.pstyle("".concat(overlayOrUnderlay, "-color")).value; var shape = node.pstyle("".concat(overlayOrUnderlay, "-shape")).value; var radius = node.pstyle("".concat(overlayOrUnderlay, "-corner-radius")).value; if (opacity > 0) { pos = pos || node.position(); if (nodeWidth == null || nodeHeight == null) { var _padding = node.padding(); nodeWidth = node.width() + 2 * _padding; nodeHeight = node.height() + 2 * _padding; } r.colorFillStyle(context, color[0], color[1], color[2], opacity); r.nodeShapes[shape].draw(context, pos.x, pos.y, nodeWidth + padding * 2, nodeHeight + padding * 2, radius); context.fill(); } }; }; CRp$6.drawNodeOverlay = drawNodeOverlayUnderlay('overlay'); CRp$6.drawNodeUnderlay = drawNodeOverlayUnderlay('underlay'); // does the node have at least one pie piece? CRp$6.hasPie = function (node) { node = node[0]; // ensure ele ref return node._private.hasPie; }; CRp$6.drawPie = function (context, node, nodeOpacity, pos) { node = node[0]; // ensure ele ref pos = pos || node.position(); var cyStyle = node.cy().style(); var pieSize = node.pstyle('pie-size'); var x = pos.x; var y = pos.y; var nodeW = node.width(); var nodeH = node.height(); var radius = Math.min(nodeW, nodeH) / 2; // must fit in node var lastPercent = 0; // what % to continue drawing pie slices from on [0, 1] var usePaths = this.usePaths(); if (usePaths) { x = 0; y = 0; } if (pieSize.units === '%') { radius = radius * pieSize.pfValue; } else if (pieSize.pfValue !== undefined) { radius = pieSize.pfValue / 2; } for (var i = 1; i <= cyStyle.pieBackgroundN; i++) { // 1..N var size = node.pstyle('pie-' + i + '-background-size').value; var color = node.pstyle('pie-' + i + '-background-color').value; var opacity = node.pstyle('pie-' + i + '-background-opacity').value * nodeOpacity; var percent = size / 100; // map integer range [0, 100] to [0, 1] // percent can't push beyond 1 if (percent + lastPercent > 1) { percent = 1 - lastPercent; } var angleStart = 1.5 * Math.PI + 2 * Math.PI * lastPercent; // start at 12 o'clock and go clockwise var angleDelta = 2 * Math.PI * percent; var angleEnd = angleStart + angleDelta; // ignore if // - zero size // - we're already beyond the full circle // - adding the current slice would go beyond the full circle if (size === 0 || lastPercent >= 1 || lastPercent + percent > 1) { continue; } context.beginPath(); context.moveTo(x, y); context.arc(x, y, radius, angleStart, angleEnd); context.closePath(); this.colorFillStyle(context, color[0], color[1], color[2], opacity); context.fill(); lastPercent += percent; } }; var CRp$5 = {}; var motionBlurDelay = 100; // var isFirefox = typeof InstallTrigger !== 'undefined'; CRp$5.getPixelRatio = function () { var context = this.data.contexts[0]; if (this.forcedPixelRatio != null) { return this.forcedPixelRatio; } var containerWindow = this.cy.window(); var backingStore = context.backingStorePixelRatio || context.webkitBackingStorePixelRatio || context.mozBackingStorePixelRatio || context.msBackingStorePixelRatio || context.oBackingStorePixelRatio || context.backingStorePixelRatio || 1; return (containerWindow.devicePixelRatio || 1) / backingStore; // eslint-disable-line no-undef }; CRp$5.paintCache = function (context) { var caches = this.paintCaches = this.paintCaches || []; var needToCreateCache = true; var cache; for (var i = 0; i < caches.length; i++) { cache = caches[i]; if (cache.context === context) { needToCreateCache = false; break; } } if (needToCreateCache) { cache = { context: context }; caches.push(cache); } return cache; }; CRp$5.createGradientStyleFor = function (context, shapeStyleName, ele, fill, opacity) { var gradientStyle; var usePaths = this.usePaths(); var colors = ele.pstyle(shapeStyleName + '-gradient-stop-colors').value, positions = ele.pstyle(shapeStyleName + '-gradient-stop-positions').pfValue; if (fill === 'radial-gradient') { if (ele.isEdge()) { var start = ele.sourceEndpoint(), end = ele.targetEndpoint(), mid = ele.midpoint(); var d1 = dist(start, mid); var d2 = dist(end, mid); gradientStyle = context.createRadialGradient(mid.x, mid.y, 0, mid.x, mid.y, Math.max(d1, d2)); } else { var pos = usePaths ? { x: 0, y: 0 } : ele.position(), width = ele.paddedWidth(), height = ele.paddedHeight(); gradientStyle = context.createRadialGradient(pos.x, pos.y, 0, pos.x, pos.y, Math.max(width, height)); } } else { if (ele.isEdge()) { var _start = ele.sourceEndpoint(), _end = ele.targetEndpoint(); gradientStyle = context.createLinearGradient(_start.x, _start.y, _end.x, _end.y); } else { var _pos = usePaths ? { x: 0, y: 0 } : ele.position(), _width = ele.paddedWidth(), _height = ele.paddedHeight(), halfWidth = _width / 2, halfHeight = _height / 2; var direction = ele.pstyle('background-gradient-direction').value; switch (direction) { case 'to-bottom': gradientStyle = context.createLinearGradient(_pos.x, _pos.y - halfHeight, _pos.x, _pos.y + halfHeight); break; case 'to-top': gradientStyle = context.createLinearGradient(_pos.x, _pos.y + halfHeight, _pos.x, _pos.y - halfHeight); break; case 'to-left': gradientStyle = context.createLinearGradient(_pos.x + halfWidth, _pos.y, _pos.x - halfWidth, _pos.y); break; case 'to-right': gradientStyle = context.createLinearGradient(_pos.x - halfWidth, _pos.y, _pos.x + halfWidth, _pos.y); break; case 'to-bottom-right': case 'to-right-bottom': gradientStyle = context.createLinearGradient(_pos.x - halfWidth, _pos.y - halfHeight, _pos.x + halfWidth, _pos.y + halfHeight); break; case 'to-top-right': case 'to-right-top': gradientStyle = context.createLinearGradient(_pos.x - halfWidth, _pos.y + halfHeight, _pos.x + halfWidth, _pos.y - halfHeight); break; case 'to-bottom-left': case 'to-left-bottom': gradientStyle = context.createLinearGradient(_pos.x + halfWidth, _pos.y - halfHeight, _pos.x - halfWidth, _pos.y + halfHeight); break; case 'to-top-left': case 'to-left-top': gradientStyle = context.createLinearGradient(_pos.x + halfWidth, _pos.y + halfHeight, _pos.x - halfWidth, _pos.y - halfHeight); break; } } } if (!gradientStyle) return null; // invalid gradient style var hasPositions = positions.length === colors.length; var length = colors.length; for (var i = 0; i < length; i++) { gradientStyle.addColorStop(hasPositions ? positions[i] : i / (length - 1), 'rgba(' + colors[i][0] + ',' + colors[i][1] + ',' + colors[i][2] + ',' + opacity + ')'); } return gradientStyle; }; CRp$5.gradientFillStyle = function (context, ele, fill, opacity) { var gradientStyle = this.createGradientStyleFor(context, 'background', ele, fill, opacity); if (!gradientStyle) return null; // error context.fillStyle = gradientStyle; }; CRp$5.colorFillStyle = function (context, r, g, b, a) { context.fillStyle = 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')'; // turn off for now, seems context does its own caching // var cache = this.paintCache(context); // var fillStyle = 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')'; // if( cache.fillStyle !== fillStyle ){ // context.fillStyle = cache.fillStyle = fillStyle; // } }; CRp$5.eleFillStyle = function (context, ele, opacity) { var backgroundFill = ele.pstyle('background-fill').value; if (backgroundFill === 'linear-gradient' || backgroundFill === 'radial-gradient') { this.gradientFillStyle(context, ele, backgroundFill, opacity); } else { var backgroundColor = ele.pstyle('background-color').value; this.colorFillStyle(context, backgroundColor[0], backgroundColor[1], backgroundColor[2], opacity); } }; CRp$5.gradientStrokeStyle = function (context, ele, fill, opacity) { var gradientStyle = this.createGradientStyleFor(context, 'line', ele, fill, opacity); if (!gradientStyle) return null; // error context.strokeStyle = gradientStyle; }; CRp$5.colorStrokeStyle = function (context, r, g, b, a) { context.strokeStyle = 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')'; // turn off for now, seems context does its own caching // var cache = this.paintCache(context); // var strokeStyle = 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')'; // if( cache.strokeStyle !== strokeStyle ){ // context.strokeStyle = cache.strokeStyle = strokeStyle; // } }; CRp$5.eleStrokeStyle = function (context, ele, opacity) { var lineFill = ele.pstyle('line-fill').value; if (lineFill === 'linear-gradient' || lineFill === 'radial-gradient') { this.gradientStrokeStyle(context, ele, lineFill, opacity); } else { var lineColor = ele.pstyle('line-color').value; this.colorStrokeStyle(context, lineColor[0], lineColor[1], lineColor[2], opacity); } }; // Resize canvas CRp$5.matchCanvasSize = function (container) { var r = this; var data = r.data; var bb = r.findContainerClientCoords(); var width = bb[2]; var height = bb[3]; var pixelRatio = r.getPixelRatio(); var mbPxRatio = r.motionBlurPxRatio; if (container === r.data.bufferCanvases[r.MOTIONBLUR_BUFFER_NODE] || container === r.data.bufferCanvases[r.MOTIONBLUR_BUFFER_DRAG]) { pixelRatio = mbPxRatio; } var canvasWidth = width * pixelRatio; var canvasHeight = height * pixelRatio; var canvas; if (canvasWidth === r.canvasWidth && canvasHeight === r.canvasHeight) { return; // save cycles if same } r.fontCaches = null; // resizing resets the style var canvasContainer = data.canvasContainer; canvasContainer.style.width = width + 'px'; canvasContainer.style.height = height + 'px'; for (var i = 0; i < r.CANVAS_LAYERS; i++) { canvas = data.canvases[i]; canvas.width = canvasWidth; canvas.height = canvasHeight; canvas.style.width = width + 'px'; canvas.style.height = height + 'px'; } for (var i = 0; i < r.BUFFER_COUNT; i++) { canvas = data.bufferCanvases[i]; canvas.width = canvasWidth; canvas.height = canvasHeight; canvas.style.width = width + 'px'; canvas.style.height = height + 'px'; } r.textureMult = 1; if (pixelRatio <= 1) { canvas = data.bufferCanvases[r.TEXTURE_BUFFER]; r.textureMult = 2; canvas.width = canvasWidth * r.textureMult; canvas.height = canvasHeight * r.textureMult; } r.canvasWidth = canvasWidth; r.canvasHeight = canvasHeight; r.pixelRatio = pixelRatio; }; CRp$5.renderTo = function (cxt, zoom, pan, pxRatio) { this.render({ forcedContext: cxt, forcedZoom: zoom, forcedPan: pan, drawAllLayers: true, forcedPxRatio: pxRatio }); }; CRp$5.clearCanvas = function () { var r = this; var data = r.data; function clear(context) { context.clearRect(0, 0, r.canvasWidth, r.canvasHeight); } clear(data.contexts[r.NODE]); clear(data.contexts[r.DRAG]); }; CRp$5.render = function (options) { var r = this; options = options || staticEmptyObject(); var cy = r.cy; if (r.webgl) { if (cy.zoom() > maxZoom$1) { r.clearWebgl(); } else { r.clearCanvas(); r.renderWebgl(options); return; } } var forcedContext = options.forcedContext; var drawAllLayers = options.drawAllLayers; var drawOnlyNodeLayer = options.drawOnlyNodeLayer; var forcedZoom = options.forcedZoom; var forcedPan = options.forcedPan; var pixelRatio = options.forcedPxRatio === undefined ? this.getPixelRatio() : options.forcedPxRatio; var data = r.data; var needDraw = data.canvasNeedsRedraw; var textureDraw = r.textureOnViewport && !forcedContext && (r.pinching || r.hoverData.dragging || r.swipePanning || r.data.wheelZooming); var motionBlur = options.motionBlur !== undefined ? options.motionBlur : r.motionBlur; var mbPxRatio = r.motionBlurPxRatio; var hasCompoundNodes = cy.hasCompoundNodes(); var inNodeDragGesture = r.hoverData.draggingEles; var inBoxSelection = r.hoverData.selecting || r.touchData.selecting ? true : false; motionBlur = motionBlur && !forcedContext && r.motionBlurEnabled && !inBoxSelection; var motionBlurFadeEffect = motionBlur; if (!forcedContext) { if (r.prevPxRatio !== pixelRatio) { r.invalidateContainerClientCoordsCache(); r.matchCanvasSize(r.container); r.redrawHint('eles', true); r.redrawHint('drag', true); } r.prevPxRatio = pixelRatio; } if (!forcedContext && r.motionBlurTimeout) { clearTimeout(r.motionBlurTimeout); } if (motionBlur) { if (r.mbFrames == null) { r.mbFrames = 0; } r.mbFrames++; if (r.mbFrames < 3) { // need several frames before even high quality motionblur motionBlurFadeEffect = false; } // go to lower quality blurry frames when several m/b frames have been rendered (avoids flashing) if (r.mbFrames > r.minMbLowQualFrames) { //r.fullQualityMb = false; r.motionBlurPxRatio = r.mbPxRBlurry; } } if (r.clearingMotionBlur) { r.motionBlurPxRatio = 1; } // b/c drawToContext() may be async w.r.t. redraw(), keep track of last texture frame // because a rogue async texture frame would clear needDraw if (r.textureDrawLastFrame && !textureDraw) { needDraw[r.NODE] = true; needDraw[r.SELECT_BOX] = true; } var style = cy.style(); var zoom = cy.zoom(); var effectiveZoom = forcedZoom !== undefined ? forcedZoom : zoom; var pan = cy.pan(); var effectivePan = { x: pan.x, y: pan.y }; var vp = { zoom: zoom, pan: { x: pan.x, y: pan.y } }; var prevVp = r.prevViewport; var viewportIsDiff = prevVp === undefined || vp.zoom !== prevVp.zoom || vp.pan.x !== prevVp.pan.x || vp.pan.y !== prevVp.pan.y; // we want the low quality motionblur only when the viewport is being manipulated etc (where it's not noticed) if (!viewportIsDiff && !(inNodeDragGesture && !hasCompoundNodes)) { r.motionBlurPxRatio = 1; } if (forcedPan) { effectivePan = forcedPan; } // apply pixel ratio effectiveZoom *= pixelRatio; effectivePan.x *= pixelRatio; effectivePan.y *= pixelRatio; var eles = r.getCachedZSortedEles(); function mbclear(context, x, y, w, h) { var gco = context.globalCompositeOperation; context.globalCompositeOperation = 'destination-out'; r.colorFillStyle(context, 255, 255, 255, r.motionBlurTransparency); context.fillRect(x, y, w, h); context.globalCompositeOperation = gco; } function setContextTransform(context, clear) { var ePan, eZoom, w, h; if (!r.clearingMotionBlur && (context === data.bufferContexts[r.MOTIONBLUR_BUFFER_NODE] || context === data.bufferContexts[r.MOTIONBLUR_BUFFER_DRAG])) { ePan = { x: pan.x * mbPxRatio, y: pan.y * mbPxRatio }; eZoom = zoom * mbPxRatio; w = r.canvasWidth * mbPxRatio; h = r.canvasHeight * mbPxRatio; } else { ePan = effectivePan; eZoom = effectiveZoom; w = r.canvasWidth; h = r.canvasHeight; } context.setTransform(1, 0, 0, 1, 0, 0); if (clear === 'motionBlur') { mbclear(context, 0, 0, w, h); } else if (!forcedContext && (clear === undefined || clear)) { context.clearRect(0, 0, w, h); } if (!drawAllLayers) { context.translate(ePan.x, ePan.y); context.scale(eZoom, eZoom); } if (forcedPan) { context.translate(forcedPan.x, forcedPan.y); } if (forcedZoom) { context.scale(forcedZoom, forcedZoom); } } if (!textureDraw) { r.textureDrawLastFrame = false; } if (textureDraw) { r.textureDrawLastFrame = true; if (!r.textureCache) { r.textureCache = {}; r.textureCache.bb = cy.mutableElements().boundingBox(); r.textureCache.texture = r.data.bufferCanvases[r.TEXTURE_BUFFER]; var cxt = r.data.bufferContexts[r.TEXTURE_BUFFER]; cxt.setTransform(1, 0, 0, 1, 0, 0); cxt.clearRect(0, 0, r.canvasWidth * r.textureMult, r.canvasHeight * r.textureMult); r.render({ forcedContext: cxt, drawOnlyNodeLayer: true, forcedPxRatio: pixelRatio * r.textureMult }); var vp = r.textureCache.viewport = { zoom: cy.zoom(), pan: cy.pan(), width: r.canvasWidth, height: r.canvasHeight }; vp.mpan = { x: (0 - vp.pan.x) / vp.zoom, y: (0 - vp.pan.y) / vp.zoom }; } needDraw[r.DRAG] = false; needDraw[r.NODE] = false; var context = data.contexts[r.NODE]; var texture = r.textureCache.texture; var vp = r.textureCache.viewport; context.setTransform(1, 0, 0, 1, 0, 0); if (motionBlur) { mbclear(context, 0, 0, vp.width, vp.height); } else { context.clearRect(0, 0, vp.width, vp.height); } var outsideBgColor = style.core('outside-texture-bg-color').value; var outsideBgOpacity = style.core('outside-texture-bg-opacity').value; r.colorFillStyle(context, outsideBgColor[0], outsideBgColor[1], outsideBgColor[2], outsideBgOpacity); context.fillRect(0, 0, vp.width, vp.height); var zoom = cy.zoom(); setContextTransform(context, false); context.clearRect(vp.mpan.x, vp.mpan.y, vp.width / vp.zoom / pixelRatio, vp.height / vp.zoom / pixelRatio); context.drawImage(texture, vp.mpan.x, vp.mpan.y, vp.width / vp.zoom / pixelRatio, vp.height / vp.zoom / pixelRatio); } else if (r.textureOnViewport && !forcedContext) { // clear the cache since we don't need it r.textureCache = null; } var extent = cy.extent(); var vpManip = r.pinching || r.hoverData.dragging || r.swipePanning || r.data.wheelZooming || r.hoverData.draggingEles || r.cy.animated(); var hideEdges = r.hideEdgesOnViewport && vpManip; var needMbClear = []; needMbClear[r.NODE] = !needDraw[r.NODE] && motionBlur && !r.clearedForMotionBlur[r.NODE] || r.clearingMotionBlur; if (needMbClear[r.NODE]) { r.clearedForMotionBlur[r.NODE] = true; } needMbClear[r.DRAG] = !needDraw[r.DRAG] && motionBlur && !r.clearedForMotionBlur[r.DRAG] || r.clearingMotionBlur; if (needMbClear[r.DRAG]) { r.clearedForMotionBlur[r.DRAG] = true; } if (needDraw[r.NODE] || drawAllLayers || drawOnlyNodeLayer || needMbClear[r.NODE]) { var useBuffer = motionBlur && !needMbClear[r.NODE] && mbPxRatio !== 1; var context = forcedContext || (useBuffer ? r.data.bufferContexts[r.MOTIONBLUR_BUFFER_NODE] : data.contexts[r.NODE]); var clear = motionBlur && !useBuffer ? 'motionBlur' : undefined; setContextTransform(context, clear); if (hideEdges) { r.drawCachedNodes(context, eles.nondrag, pixelRatio, extent); } else { r.drawLayeredElements(context, eles.nondrag, pixelRatio, extent); } if (r.debug) { r.drawDebugPoints(context, eles.nondrag); } if (!drawAllLayers && !motionBlur) { needDraw[r.NODE] = false; } } if (!drawOnlyNodeLayer && (needDraw[r.DRAG] || drawAllLayers || needMbClear[r.DRAG])) { var useBuffer = motionBlur && !needMbClear[r.DRAG] && mbPxRatio !== 1; var context = forcedContext || (useBuffer ? r.data.bufferContexts[r.MOTIONBLUR_BUFFER_DRAG] : data.contexts[r.DRAG]); setContextTransform(context, motionBlur && !useBuffer ? 'motionBlur' : undefined); if (hideEdges) { r.drawCachedNodes(context, eles.drag, pixelRatio, extent); } else { r.drawCachedElements(context, eles.drag, pixelRatio, extent); } if (r.debug) { r.drawDebugPoints(context, eles.drag); } if (!drawAllLayers && !motionBlur) { needDraw[r.DRAG] = false; } } this.drawSelectionRectangle(options, setContextTransform); // motionblur: blit rendered blurry frames if (motionBlur && mbPxRatio !== 1) { var cxtNode = data.contexts[r.NODE]; var txtNode = r.data.bufferCanvases[r.MOTIONBLUR_BUFFER_NODE]; var cxtDrag = data.contexts[r.DRAG]; var txtDrag = r.data.bufferCanvases[r.MOTIONBLUR_BUFFER_DRAG]; var drawMotionBlur = function drawMotionBlur(cxt, txt, needClear) { cxt.setTransform(1, 0, 0, 1, 0, 0); if (needClear || !motionBlurFadeEffect) { cxt.clearRect(0, 0, r.canvasWidth, r.canvasHeight); } else { mbclear(cxt, 0, 0, r.canvasWidth, r.canvasHeight); } var pxr = mbPxRatio; cxt.drawImage(txt, // img 0, 0, // sx, sy r.canvasWidth * pxr, r.canvasHeight * pxr, // sw, sh 0, 0, // x, y r.canvasWidth, r.canvasHeight // w, h ); }; if (needDraw[r.NODE] || needMbClear[r.NODE]) { drawMotionBlur(cxtNode, txtNode, needMbClear[r.NODE]); needDraw[r.NODE] = false; } if (needDraw[r.DRAG] || needMbClear[r.DRAG]) { drawMotionBlur(cxtDrag, txtDrag, needMbClear[r.DRAG]); needDraw[r.DRAG] = false; } } r.prevViewport = vp; if (r.clearingMotionBlur) { r.clearingMotionBlur = false; r.motionBlurCleared = true; r.motionBlur = true; } if (motionBlur) { r.motionBlurTimeout = setTimeout(function () { r.motionBlurTimeout = null; r.clearedForMotionBlur[r.NODE] = false; r.clearedForMotionBlur[r.DRAG] = false; r.motionBlur = false; r.clearingMotionBlur = !textureDraw; r.mbFrames = 0; needDraw[r.NODE] = true; needDraw[r.DRAG] = true; r.redraw(); }, motionBlurDelay); } if (!forcedContext) { cy.emit('render'); } }; var fpsHeight; CRp$5.drawSelectionRectangle = function (options, setContextTransform) { var r = this; var cy = r.cy; var data = r.data; var style = cy.style(); var drawOnlyNodeLayer = options.drawOnlyNodeLayer; var drawAllLayers = options.drawAllLayers; var needDraw = data.canvasNeedsRedraw; var forcedContext = options.forcedContext; if (r.showFps || !drawOnlyNodeLayer && needDraw[r.SELECT_BOX] && !drawAllLayers) { var context = forcedContext || data.contexts[r.SELECT_BOX]; setContextTransform(context); if (r.selection[4] == 1 && (r.hoverData.selecting || r.touchData.selecting)) { var zoom = r.cy.zoom(); var borderWidth = style.core('selection-box-border-width').value / zoom; context.lineWidth = borderWidth; context.fillStyle = 'rgba(' + style.core('selection-box-color').value[0] + ',' + style.core('selection-box-color').value[1] + ',' + style.core('selection-box-color').value[2] + ',' + style.core('selection-box-opacity').value + ')'; context.fillRect(r.selection[0], r.selection[1], r.selection[2] - r.selection[0], r.selection[3] - r.selection[1]); if (borderWidth > 0) { context.strokeStyle = 'rgba(' + style.core('selection-box-border-color').value[0] + ',' + style.core('selection-box-border-color').value[1] + ',' + style.core('selection-box-border-color').value[2] + ',' + style.core('selection-box-opacity').value + ')'; context.strokeRect(r.selection[0], r.selection[1], r.selection[2] - r.selection[0], r.selection[3] - r.selection[1]); } } if (data.bgActivePosistion && !r.hoverData.selecting) { var zoom = r.cy.zoom(); var pos = data.bgActivePosistion; context.fillStyle = 'rgba(' + style.core('active-bg-color').value[0] + ',' + style.core('active-bg-color').value[1] + ',' + style.core('active-bg-color').value[2] + ',' + style.core('active-bg-opacity').value + ')'; context.beginPath(); context.arc(pos.x, pos.y, style.core('active-bg-size').pfValue / zoom, 0, 2 * Math.PI); context.fill(); } var timeToRender = r.lastRedrawTime; if (r.showFps && timeToRender) { timeToRender = Math.round(timeToRender); var fps = Math.round(1000 / timeToRender); var text = '1 frame = ' + timeToRender + ' ms = ' + fps + ' fps'; context.setTransform(1, 0, 0, 1, 0, 0); context.fillStyle = 'rgba(255, 0, 0, 0.75)'; context.strokeStyle = 'rgba(255, 0, 0, 0.75)'; // context.lineWidth = 1; context.font = '30px Arial'; if (!fpsHeight) { var dims = context.measureText(text); fpsHeight = dims.actualBoundingBoxAscent; } context.fillText(text, 0, fpsHeight); var maxFps = 60; context.strokeRect(0, fpsHeight + 10, 250, 20); context.fillRect(0, fpsHeight + 10, 250 * Math.min(fps / maxFps, 1), 20); } if (!drawAllLayers) { needDraw[r.SELECT_BOX] = false; } } }; function compileShader(gl, type, source) { var shader = gl.createShader(type); gl.shaderSource(shader, source); gl.compileShader(shader); if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS)) { throw new Error(gl.getShaderInfoLog(shader)); } console.log(gl.getShaderInfoLog(shader)); return shader; } function createProgram(gl, vertexSource, fragementSource) { var vertexShader = compileShader(gl, gl.VERTEX_SHADER, vertexSource); var fragmentShader = compileShader(gl, gl.FRAGMENT_SHADER, fragementSource); var program = gl.createProgram(); gl.attachShader(program, vertexShader); gl.attachShader(program, fragmentShader); gl.linkProgram(program); if (!gl.getProgramParameter(program, gl.LINK_STATUS)) { throw new Error('Could not initialize shaders'); } return program; } function createTextureCanvas(r, width, height) { if (height === undefined) { height = width; } var canvas = r.makeOffscreenCanvas(width, height); var ctx = canvas.context = canvas.getContext('2d'); ctx.clearRect(0, 0, canvas.width, canvas.height); return canvas; } function bufferTexture(gl, texSize, textureCanvas) { var texture = gl.createTexture(); gl.bindTexture(gl.TEXTURE_2D, texture); gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_S, gl.CLAMP_TO_EDGE); gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_T, gl.CLAMP_TO_EDGE); gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR); gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR_MIPMAP_NEAREST); // very important, this tells webgl to premultiply colors by the alpha channel gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, true); gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, gl.RGBA, gl.UNSIGNED_BYTE, textureCanvas); gl.generateMipmap(gl.TEXTURE_2D); gl.bindTexture(gl.TEXTURE_2D, null); return texture; } /** @param {WebGLRenderingContext} gl */ function createAttributeFloatBufferStaticDraw(gl, _ref) { var attributeLoc = _ref.attributeLoc, dataArray = _ref.dataArray, size = _ref.size; var buffer = gl.createBuffer(); gl.bindBuffer(gl.ARRAY_BUFFER, buffer); gl.bufferData(gl.ARRAY_BUFFER, new Float32Array(dataArray), gl.STATIC_DRAW); gl.vertexAttribPointer(attributeLoc, size, gl.FLOAT, false, 0, 0); gl.enableVertexAttribArray(attributeLoc); gl.bindBuffer(gl.ARRAY_BUFFER, null); return buffer; } /** * Creates a float buffer with gl.DYNAMIC_DRAW. * The returned buffer object contains functions to easily set instance data * and buffer the data before a draw call. * @param {WebGLRenderingContext} gl */ function createInstanceFloatBufferDynamicDraw(gl, _ref2) { var attributeLoc = _ref2.attributeLoc, maxInstances = _ref2.maxInstances, size = _ref2.size; var dataArray = new Float32Array(maxInstances * size); var buffer = gl.createBuffer(); var stride = size * 4; // num elements * 4 bytes (float) gl.bindBuffer(gl.ARRAY_BUFFER, buffer); gl.bufferData(gl.ARRAY_BUFFER, maxInstances * stride, gl.DYNAMIC_DRAW); gl.enableVertexAttribArray(attributeLoc); gl.vertexAttribPointer(attributeLoc, size, gl.FLOAT, false, stride, 0); gl.vertexAttribDivisor(attributeLoc, 1); gl.bindBuffer(gl.ARRAY_BUFFER, null); buffer.dataArray = dataArray; buffer.stride = stride; buffer.size = size; buffer.setDataAt = function (data, i) { dataArray.set(data, i * size); }; buffer.bufferSubData = function (count) { gl.bindBuffer(gl.ARRAY_BUFFER, buffer); if (count) { gl.bufferSubData(gl.ARRAY_BUFFER, 0, dataArray, 0, count * size); } else { gl.bufferSubData(gl.ARRAY_BUFFER, 0, dataArray); } }; return buffer; } /** * Creates a buffer of 3x3 matrix data for use as attribute data. * @param {WebGLRenderingContext} gl */ function create3x3MatrixBufferDynamicDraw(gl, _ref3) { var maxInstances = _ref3.maxInstances, attributeLoc = _ref3.attributeLoc; var matrixSize = 9; // 3x3 matrix var matrixData = new Float32Array(maxInstances * matrixSize); // use matrix views to set values directly into the matrixData array var matrixViews = new Array(maxInstances); for (var i = 0; i < maxInstances; i++) { var byteOffset = i * matrixSize * 4; // 4 bytes per float matrixViews[i] = new Float32Array(matrixData.buffer, byteOffset, matrixSize); // array view } var buffer = gl.createBuffer(); gl.bindBuffer(gl.ARRAY_BUFFER, buffer); gl.bufferData(gl.ARRAY_BUFFER, matrixData.byteLength, gl.DYNAMIC_DRAW); // each row of the matrix needs to be a separate attribute for (var _i = 0; _i < 3; _i++) { var loc = attributeLoc + _i; gl.enableVertexAttribArray(loc); gl.vertexAttribPointer(loc, 3, gl.FLOAT, false, 3 * 12, _i * 12); gl.vertexAttribDivisor(loc, 1); } gl.bindBuffer(gl.ARRAY_BUFFER, null); buffer.getMatrixView = function (i) { return matrixViews[i]; }; buffer.bufferSubData = function () { gl.bindBuffer(gl.ARRAY_BUFFER, buffer); gl.bufferSubData(gl.ARRAY_BUFFER, 0, matrixData); }; return buffer; } /** * Common utilities * @module glMatrix */ var ARRAY_TYPE = typeof Float32Array !== 'undefined' ? Float32Array : Array; if (!Math.hypot) Math.hypot = function () { var y = 0, i = arguments.length; while (i--) { y += arguments[i] * arguments[i]; } return Math.sqrt(y); }; /** * 3x3 Matrix * @module mat3 */ /** * Creates a new identity mat3 * * @returns {mat3} a new 3x3 matrix */ function create$1() { var out = new ARRAY_TYPE(9); if (ARRAY_TYPE != Float32Array) { out[1] = 0; out[2] = 0; out[3] = 0; out[5] = 0; out[6] = 0; out[7] = 0; } out[0] = 1; out[4] = 1; out[8] = 1; return out; } /** * Set a mat3 to the identity matrix * * @param {mat3} out the receiving matrix * @returns {mat3} out */ function identity(out) { out[0] = 1; out[1] = 0; out[2] = 0; out[3] = 0; out[4] = 1; out[5] = 0; out[6] = 0; out[7] = 0; out[8] = 1; return out; } /** * Multiplies two mat3's * * @param {mat3} out the receiving matrix * @param {ReadonlyMat3} a the first operand * @param {ReadonlyMat3} b the second operand * @returns {mat3} out */ function multiply(out, a, b) { var a00 = a[0], a01 = a[1], a02 = a[2]; var a10 = a[3], a11 = a[4], a12 = a[5]; var a20 = a[6], a21 = a[7], a22 = a[8]; var b00 = b[0], b01 = b[1], b02 = b[2]; var b10 = b[3], b11 = b[4], b12 = b[5]; var b20 = b[6], b21 = b[7], b22 = b[8]; out[0] = b00 * a00 + b01 * a10 + b02 * a20; out[1] = b00 * a01 + b01 * a11 + b02 * a21; out[2] = b00 * a02 + b01 * a12 + b02 * a22; out[3] = b10 * a00 + b11 * a10 + b12 * a20; out[4] = b10 * a01 + b11 * a11 + b12 * a21; out[5] = b10 * a02 + b11 * a12 + b12 * a22; out[6] = b20 * a00 + b21 * a10 + b22 * a20; out[7] = b20 * a01 + b21 * a11 + b22 * a21; out[8] = b20 * a02 + b21 * a12 + b22 * a22; return out; } /** * Translate a mat3 by the given vector * * @param {mat3} out the receiving matrix * @param {ReadonlyMat3} a the matrix to translate * @param {ReadonlyVec2} v vector to translate by * @returns {mat3} out */ function translate(out, a, v) { var a00 = a[0], a01 = a[1], a02 = a[2], a10 = a[3], a11 = a[4], a12 = a[5], a20 = a[6], a21 = a[7], a22 = a[8], x = v[0], y = v[1]; out[0] = a00; out[1] = a01; out[2] = a02; out[3] = a10; out[4] = a11; out[5] = a12; out[6] = x * a00 + y * a10 + a20; out[7] = x * a01 + y * a11 + a21; out[8] = x * a02 + y * a12 + a22; return out; } /** * Rotates a mat3 by the given angle * * @param {mat3} out the receiving matrix * @param {ReadonlyMat3} a the matrix to rotate * @param {Number} rad the angle to rotate the matrix by * @returns {mat3} out */ function rotate(out, a, rad) { var a00 = a[0], a01 = a[1], a02 = a[2], a10 = a[3], a11 = a[4], a12 = a[5], a20 = a[6], a21 = a[7], a22 = a[8], s = Math.sin(rad), c = Math.cos(rad); out[0] = c * a00 + s * a10; out[1] = c * a01 + s * a11; out[2] = c * a02 + s * a12; out[3] = c * a10 - s * a00; out[4] = c * a11 - s * a01; out[5] = c * a12 - s * a02; out[6] = a20; out[7] = a21; out[8] = a22; return out; } /** * Scales the mat3 by the dimensions in the given vec2 * * @param {mat3} out the receiving matrix * @param {ReadonlyMat3} a the matrix to rotate * @param {ReadonlyVec2} v the vec2 to scale the matrix by * @returns {mat3} out **/ function scale(out, a, v) { var x = v[0], y = v[1]; out[0] = x * a[0]; out[1] = x * a[1]; out[2] = x * a[2]; out[3] = y * a[3]; out[4] = y * a[4]; out[5] = y * a[5]; out[6] = a[6]; out[7] = a[7]; out[8] = a[8]; return out; } /** * Generates a 2D projection matrix with the given bounds * * @param {mat3} out mat3 frustum matrix will be written into * @param {number} width Width of your gl context * @param {number} height Height of gl context * @returns {mat3} out */ function projection(out, width, height) { out[0] = 2 / width; out[1] = 0; out[2] = 0; out[3] = 0; out[4] = -2 / height; out[5] = 0; out[6] = -1; out[7] = 1; out[8] = 1; return out; } /** * 2 Dimensional Vector * @module vec2 */ /** * Creates a new, empty vec2 * * @returns {vec2} a new 2D vector */ function create() { var out = new ARRAY_TYPE(2); if (ARRAY_TYPE != Float32Array) { out[0] = 0; out[1] = 0; } return out; } /** * Creates a new vec2 initialized with the given values * * @param {Number} x X component * @param {Number} y Y component * @returns {vec2} a new 2D vector */ function fromValues(x, y) { var out = new ARRAY_TYPE(2); out[0] = x; out[1] = y; return out; } /** * Perform some operation over an array of vec2s. * * @param {Array} a the array of vectors to iterate over * @param {Number} stride Number of elements between the start of each vec2. If 0 assumes tightly packed * @param {Number} offset Number of elements to skip at the beginning of the array * @param {Number} count Number of vec2s to iterate over. If 0 iterates over entire array * @param {Function} fn Function to call for each vector in the array * @param {Object} [arg] additional argument to pass to fn * @returns {Array} a * @function */ (function () { var vec = create(); return function (a, stride, offset, count, fn, arg) { var i, l; if (!stride) { stride = 2; } if (!offset) { offset = 0; } if (count) { l = Math.min(count * stride + offset, a.length); } else { l = a.length; } for (i = offset; i < l; i += stride) { vec[0] = a[i]; vec[1] = a[i + 1]; fn(vec, vec, arg); a[i] = vec[0]; a[i + 1] = vec[1]; } return a; }; })(); var EdgeDrawing = /*#__PURE__*/function () { /** * @param {WebGLRenderingContext} gl */ function EdgeDrawing(r, gl, options) { _classCallCheck(this, EdgeDrawing); this.r = r; this.gl = gl; this.maxInstances = 1000; // TODO how to decide the max instances? this.program = this.createShaderProgram(); this.vao = this.createVAO(); } _createClass(EdgeDrawing, [{ key: "createShaderProgram", value: function createShaderProgram() { // see https://wwwtyro.net/2019/11/18/instanced-lines.html var gl = this.gl; var vertexShaderSource = "#version 300 es\n precision highp float;\n\n uniform mat3 uPanZoomMatrix;\n\n in vec2 aPosition; // vertex\n in vec2 aSource;\n in vec2 aTarget;\n in float aWidth;\n in vec4 aColor;\n\n out vec4 vColor;\n\n void main(void) {\n vec2 xBasis = aTarget - aSource;\n vec2 yBasis = normalize(vec2(-xBasis.y, xBasis.x));\n vec2 point = aSource + xBasis * aPosition.x + yBasis * aWidth * aPosition.y;\n\n gl_Position = vec4(uPanZoomMatrix * vec3(point, 1.0), 1.0);\n vColor = aColor;\n }\n "; var fragmentShaderSource = "#version 300 es\n precision highp float;\n\n in vec4 vColor;\n\n out vec4 outColor;\n\n void main(void) {\n outColor = vColor;\n outColor.rgb *= outColor.a; // webgl is expecting premultiplied alpha\n }\n "; var program = createProgram(gl, vertexShaderSource, fragmentShaderSource); program.uPanZoomMatrix = gl.getUniformLocation(program, 'uPanZoomMatrix'); program.aPosition = gl.getAttribLocation(program, 'aPosition'); program.aSource = gl.getAttribLocation(program, 'aSource'); program.aTarget = gl.getAttribLocation(program, 'aTarget'); program.aWidth = gl.getAttribLocation(program, 'aWidth'); program.aColor = gl.getAttribLocation(program, 'aColor'); return program; } }, { key: "createVAO", value: function createVAO() { var instanceGeometry = [0, -0.5, 1, -0.5, 1, 0.5, 0, -0.5, 1, 0.5, 0, 0.5]; var gl = this.gl, program = this.program; var vao = gl.createVertexArray(); gl.bindVertexArray(vao); createAttributeFloatBufferStaticDraw(gl, { attributeLoc: program.aPosition, dataArray: instanceGeometry, size: 2 }); this.sourceBuffer = createInstanceFloatBufferDynamicDraw(gl, { attributeLoc: program.aSource, maxInstances: this.maxInstances, size: 2 }); this.targetBuffer = createInstanceFloatBufferDynamicDraw(gl, { attributeLoc: program.aTarget, maxInstances: this.maxInstances, size: 2 }); this.widthBuffer = createInstanceFloatBufferDynamicDraw(gl, { attributeLoc: program.aWidth, maxInstances: this.maxInstances, size: 1 }); this.colorBuffer = createInstanceFloatBufferDynamicDraw(gl, { attributeLoc: program.aColor, maxInstances: this.maxInstances, size: 4 }); gl.bindVertexArray(null); return vao; } }, { key: "startBatch", value: function startBatch(panZoomMatrix) { if (panZoomMatrix) { this.panZoomMatrix = panZoomMatrix; } this.instanceCount = 0; } }, { key: "draw", value: function draw(edge) { var sp = edge.source().position(); var tp = edge.target().position(); var opacity = edge.pstyle('opacity').value; var lineOpacity = edge.pstyle('line-opacity').value; var effectiveOpacity = opacity * lineOpacity; var color = edge.pstyle('line-color').value; var r = color[0] / 256, g = color[1] / 256, b = color[2] / 256, a = effectiveOpacity; var width = edge.pstyle('width').pfValue; var i = this.instanceCount; this.sourceBuffer.setDataAt([sp.x, sp.y], i); this.targetBuffer.setDataAt([tp.x, tp.y], i); this.widthBuffer.setDataAt([width], i); this.colorBuffer.setDataAt([r, g, b, a], i); this.instanceCount++; if (this.instanceCount >= this.maxInstances) { this.endBatch(); } } }, { key: "endBatch", value: function endBatch() { var count = this.instanceCount; if (count === 0) return; var gl = this.gl, program = this.program, vao = this.vao; gl.useProgram(program); gl.bindVertexArray(vao); // buffer the attribute data this.sourceBuffer.bufferSubData(count); this.targetBuffer.bufferSubData(count); this.widthBuffer.bufferSubData(count); this.colorBuffer.bufferSubData(count); // Set the projection matrix uniform gl.uniformMatrix3fv(program.uPanZoomMatrix, false, this.panZoomMatrix); // draw! gl.drawArraysInstanced(gl.TRIANGLES, 0, 6, count); // 6 verticies per edge gl.bindVertexArray(null); // start another batch, even if not needed this.startBatch(); } }]); return EdgeDrawing; }(); var initDefaults = defaults$g({ getKey: null, drawElement: null, getBoundingBox: null, getRotation: null, getRotationPoint: null, getRotationOffset: null, isVisible: null }); var atlasSize = 8192; // square atlas, each side has this many pixels, should be power of 2 var cols = 6; var rows = 10; var texPerAtlas = cols * rows; var texWidth = Math.floor(atlasSize / cols); var texHeight = Math.floor(atlasSize / rows); function getTexOffsets(texIndex) { var row = Math.floor(texIndex / cols); var col = texIndex % cols; var xOffset = col * texWidth; var yOffset = row * texHeight; return { xOffset: xOffset, yOffset: yOffset }; } var Atlas = /*#__PURE__*/function () { function Atlas() { _classCallCheck(this, Atlas); this.texture = null; this.canvas = null; this.index = 0; this.buffered = false; } _createClass(Atlas, [{ key: "isFull", value: function isFull() { return this.index >= texPerAtlas; } }, { key: "buffer", value: function buffer(gl) { if (!this.buffered) { this.texture = bufferTexture(gl, atlasSize, this.canvas); if (this.isFull()) { this.canvas = null; } this.buffered = true; } } }, { key: "draw", value: function draw(r, node, opts) { if (this.isFull()) throw new Error("This Atlas is full!"); if (this.canvas === null) this.canvas = createTextureCanvas(r, atlasSize); var context = this.canvas.context; var _getTexOffsets = getTexOffsets(this.index), xOffset = _getTexOffsets.xOffset, yOffset = _getTexOffsets.yOffset; var bb = opts.getBoundingBox(node); var scalew = texWidth / bb.w; var scaleh = texHeight / bb.h; var scale = Math.min(scalew, scaleh); context.save(); context.translate(xOffset, yOffset); context.scale(scale, scale); opts.drawElement(context, node, bb, true, false); context.restore(); this.buffered = false; this.index++; } }]); return Atlas; }(); var NodeDrawing = /*#__PURE__*/function () { /** * @param {WebGLRenderingContext} gl */ function NodeDrawing(r, gl) { _classCallCheck(this, NodeDrawing); this.r = r; this.gl = gl; this.maxInstances = 1000; this.maxAtlases = gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS); console.log('max texture units', this.maxAtlases); console.log('max texture size', gl.getParameter(gl.MAX_TEXTURE_SIZE)); this.program = this.createShaderProgram(); this.vao = this.createVAO(); this.styleKeyToAtlas = new Map(); // need to know which texure atlas has the texture this.styleKeyToTexIndex = new Map(); // which texture in the atlas for a node this.currentAtlas = new Atlas(); this.renderTypes = new Map(); // string -> object } _createClass(NodeDrawing, [{ key: "addRenderType", value: function addRenderType(type, options) { this.renderTypes.set(type, initDefaults(options)); } }, { key: "createShaderProgram", value: function createShaderProgram() { var gl = this.gl; var vertexShaderSource = "#version 300 es\n precision highp float;\n\n uniform mat3 uPanZoomMatrix;\n uniform int uAtlasSize;\n uniform int uCols;\n uniform int uRows;\n \n in vec2 aPosition; // instanced\n in mat3 aNodeMatrix;\n in float aTexId;\n in float aTexIndex;\n in vec2 aBBSize;\n\n out vec2 vTexCoord;\n flat out int vTexId;\n\n void main(void) {\n // compute texture coordinates here in the shader\n // we have to do this here becase we are using instanced drawing\n\n int texIndex = int(aTexIndex);\n int row = texIndex / uCols;\n int col = texIndex % uCols;\n\n float texWidth = float(uAtlasSize) / float(uCols);\n float texHeight = float(uAtlasSize) / float(uRows);\n \n float xOffset = float(col) * texWidth;\n float yOffset = float(row) * texHeight;\n\n if(gl_VertexID != 0) {\n float scalew = texWidth / aBBSize.x;\n float scaleh = texHeight / aBBSize.y;\n float scale = min(scalew, scaleh);\n\n if(gl_VertexID == 2 || gl_VertexID == 3 || gl_VertexID == 5) {\n xOffset += aBBSize.x * scale;\n }\n if(gl_VertexID == 1 || gl_VertexID == 4 || gl_VertexID == 5) {\n yOffset += aBBSize.y * scale;\n }\n }\n\n float d = float(uAtlasSize);\n vTexCoord = vec2(xOffset / d, yOffset / d);\n\n vTexId = int(aTexId);\n\n gl_Position = vec4(uPanZoomMatrix * aNodeMatrix * vec3(aPosition, 1.0), 1.0);\n }\n "; var idxs = Array.from({ length: this.maxAtlases }, function (v, i) { return i; }); var fragmentShaderSource = "#version 300 es\n precision highp float;\n\n // define texture unit for each node in the batch\n ".concat(idxs.map(function (i) { return "uniform sampler2D uTexture".concat(i, ";"); }).join('\t\n'), "\n\n in vec2 vTexCoord;\n flat in int vTexId;\n\n out vec4 outColor;\n\n void main(void) {\n ").concat(idxs.map(function (i) { return "if(vTexId == ".concat(i, ") outColor = texture(uTexture").concat(i, ", vTexCoord);"); }).join('\n\telse '), "\n }\n "); var program = createProgram(gl, vertexShaderSource, fragmentShaderSource); // attributes program.aPosition = gl.getAttribLocation(program, 'aPosition'); program.aNodeMatrix = gl.getAttribLocation(program, 'aNodeMatrix'); program.aTexId = gl.getAttribLocation(program, 'aTexId'); program.aTexIndex = gl.getAttribLocation(program, 'aTexIndex'); program.aBBSize = gl.getAttribLocation(program, 'aBBSize'); // uniforms program.uPanZoomMatrix = gl.getUniformLocation(program, 'uPanZoomMatrix'); program.uAtlasSize = gl.getUniformLocation(program, 'uAtlasSize'); program.uCols = gl.getUniformLocation(program, 'uCols'); program.uRows = gl.getUniformLocation(program, 'uRows'); program.uTextures = []; for (var i = 0; i < this.maxAtlases; i++) { program.uTextures.push(gl.getUniformLocation(program, "uTexture".concat(i))); } return program; } }, { key: "createVAO", value: function createVAO() { // TODO switch to indexed drawing? var unitQuad = [0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1]; var gl = this.gl, program = this.program; var vao = gl.createVertexArray(); gl.bindVertexArray(vao); createAttributeFloatBufferStaticDraw(gl, { attributeLoc: program.aPosition, dataArray: unitQuad, size: 2 }); this.texIdBuffer = createInstanceFloatBufferDynamicDraw(gl, { attributeLoc: program.aTexId, maxInstances: this.maxInstances, size: 1 }); this.texIndexBuffer = createInstanceFloatBufferDynamicDraw(gl, { attributeLoc: program.aTexIndex, maxInstances: this.maxInstances, size: 1 }); this.bbSizeBuffer = createInstanceFloatBufferDynamicDraw(gl, { attributeLoc: program.aBBSize, maxInstances: this.maxInstances, size: 2 }); this.matrixBuffer = create3x3MatrixBufferDynamicDraw(gl, { attributeLoc: program.aNodeMatrix, maxInstances: this.maxInstances }); gl.bindVertexArray(null); return vao; } }, { key: "getOrCreateTexture", value: function getOrCreateTexture(node, opts) { var r = this.r; var styleKey = opts.getKey(node); var atlas = this.styleKeyToAtlas.get(styleKey); var texIndex = this.styleKeyToTexIndex.get(styleKey); if (!atlas) { if (this.currentAtlas.isFull()) { this.currentAtlas = new Atlas(); } atlas = this.currentAtlas; texIndex = this.currentAtlas.index; console.log('drawing texture for', styleKey); atlas.draw(r, node, opts); this.styleKeyToAtlas.set(styleKey, atlas); this.styleKeyToTexIndex.set(styleKey, texIndex); } return { atlas: atlas, texIndex: texIndex }; } }, { key: "setTransformMatrix", value: function setTransformMatrix(node, opts, matrix) { // matrix is expected to be a 9 element array // follows same pattern as CRp.drawCachedElementPortion(...) var bb = opts.getBoundingBox(node); var x, y; identity(matrix); var theta = opts.getRotation(node); if (theta !== 0) { var _opts$getRotationPoin = opts.getRotationPoint(node), sx = _opts$getRotationPoin.x, sy = _opts$getRotationPoin.y; translate(matrix, matrix, [sx, sy]); rotate(matrix, matrix, theta); var offset = opts.getRotationOffset(node); x = offset.x; y = offset.y; } else { x = bb.x1; y = bb.y1; } translate(matrix, matrix, [x, y]); scale(matrix, matrix, [bb.w, bb.h]); } }, { key: "startBatch", value: function startBatch(panZoomMatrix) { if (panZoomMatrix) { this.panZoomMatrix = panZoomMatrix; } this.instanceCount = 0; this.atlases = []; // up to 16 texture units for a draw call } }, { key: "draw", value: function draw(node, type) { var opts = this.renderTypes.get(type); if (!opts.isVisible(node)) return; var _this$getOrCreateText = this.getOrCreateTexture(node, opts), atlas = _this$getOrCreateText.atlas, texIndex = _this$getOrCreateText.texIndex; var texID = this.atlases.indexOf(atlas); if (texID < 0) { if (this.atlases.length === this.maxAtlases) { this.endBatch(); } this.atlases.push(atlas); texID = this.atlases.length - 1; } var bb = opts.getBoundingBox(node); this.texIndexBuffer.setDataAt([texIndex], this.instanceCount); this.texIdBuffer.setDataAt([texID], this.instanceCount); this.bbSizeBuffer.setDataAt([bb.w, bb.h], this.instanceCount); // pass the array view to setTransformMatrix var view = this.matrixBuffer.getMatrixView(this.instanceCount); this.setTransformMatrix(node, opts, view); this.instanceCount++; if (this.instanceCount >= this.maxInstances) { this.endBatch(); } } }, { key: "endBatch", value: function endBatch() { var count = this.instanceCount; if (count === 0) return; var gl = this.gl, program = this.program, vao = this.vao; gl.useProgram(program); gl.bindVertexArray(vao); // upload the new matrix data this.matrixBuffer.bufferSubData(count); this.texIdBuffer.bufferSubData(count); this.texIndexBuffer.bufferSubData(count); this.bbSizeBuffer.bufferSubData(count); // Activate all the texture units that we need for (var i = 0; i < this.atlases.length; i++) { var atlas = this.atlases[i]; atlas.buffer(gl); // if needed gl.activeTexture(gl.TEXTURE0 + i); gl.bindTexture(gl.TEXTURE_2D, atlas.texture); gl.uniform1i(program.uTextures[i], i); } // Set the uniforms gl.uniformMatrix3fv(program.uPanZoomMatrix, false, this.panZoomMatrix); gl.uniform1i(program.uAtlasSize, atlasSize); gl.uniform1i(program.uRows, rows); gl.uniform1i(program.uCols, cols); // draw! gl.drawArraysInstanced(gl.TRIANGLES, 0, 6, count); // 6 verticies per node gl.bindVertexArray(null); gl.bindTexture(gl.TEXTURE_2D, null); // TODO is this right when having multiple texture units? // start another batch, even if not needed this.startBatch(); } }]); return NodeDrawing; }(); // import * as mat from './matrix'; var CRp$4 = {}; CRp$4.initWebgl = function (options, fns) { var r = this; var gl = r.data.contexts[r.WEBGL]; gl.clearColor(0, 0, 0, 0); // background color // enable alpha blending of textures gl.enable(gl.BLEND); // we are using premultiplied alpha gl.blendFunc(gl.ONE, gl.ONE_MINUS_SRC_ALPHA); var getZeroRotation = function getZeroRotation() { return 0; }; var getLabelRotation = function getLabelRotation(ele) { return r.getTextAngle(ele, null); }; var isNodeVisible = function isNodeVisible(ele) { return ele.visible(); }; var isLabelVisible = function isLabelVisible(ele) { var label = ele.pstyle('label'); return label && label.value; }; r.edgeDrawing = new EdgeDrawing(r, gl); r.nodeDrawing = new NodeDrawing(r, gl); r.nodeDrawing.addRenderType('node', { getKey: fns.getStyleKey, getBoundingBox: fns.getElementBox, drawElement: fns.drawElement, getRotation: getZeroRotation, getRotationPoint: fns.getElementRotationPoint, getRotationOffset: fns.getElementRotationOffset, isVisible: isNodeVisible }); r.nodeDrawing.addRenderType('node-label', { getKey: fns.getLabelKey, getBoundingBox: fns.getLabelBox, drawElement: fns.drawLabel, getRotation: getLabelRotation, getRotationPoint: fns.getLabelRotationPoint, getRotationOffset: fns.getLabelRotationOffset, isVisible: isLabelVisible }); }; CRp$4.clearWebgl = function () { var r = this; var gl = r.data.contexts[r.WEBGL]; gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); }; function createPanZoomMatrix(r) { var width = r.canvasWidth; var height = r.canvasHeight; var _getEffectivePanZoom = getEffectivePanZoom(r), x = _getEffectivePanZoom.x, y = _getEffectivePanZoom.y, zoom = _getEffectivePanZoom.zoom; var transform = create$1(); translate(transform, transform, fromValues(x, y)); scale(transform, transform, fromValues(zoom, zoom)); var projection$1 = create$1(); projection(projection$1, width, height); var matrix = create$1(); multiply(matrix, projection$1, transform); return matrix; } function getEffectivePanZoom(r) { var pixelRatio = r.pixelRatio; var zoom = r.cy.zoom(); var pan = r.cy.pan(); return { zoom: zoom * pixelRatio, x: pan.x * pixelRatio, y: pan.y * pixelRatio }; } function setContextTransform(r, context) { var w = r.canvasWidth; var h = r.canvasHeight; var panzoom = getEffectivePanZoom(r); context.setTransform(1, 0, 0, 1, 0, 0); context.clearRect(0, 0, w, h); context.translate(panzoom.x, panzoom.y); context.scale(panzoom.zoom, panzoom.zoom); } function drawSelectionRectangle(r, options) { r.drawSelectionRectangle(options, function (context) { return setContextTransform(r, context); }); } function drawAxes(r) { // for debgging var context = r.data.contexts[r.NODE]; context.save(); setContextTransform(r, context); context.fillStyle = 'red'; context.fillRect(-3, -3, 6, 6); context.strokeStyle = 'red'; context.beginPath(); context.moveTo(-1000, 0); context.lineTo(1000, 0); context.stroke(); context.beginPath(); context.moveTo(0, -1000); context.lineTo(0, 1000); context.stroke(); context.restore(); } CRp$4.renderWebgl = function (options) { var r = this; console.log('webgl render'); var nodeDrawing = r.nodeDrawing, edgeDrawing = r.edgeDrawing; if (r.data.canvasNeedsRedraw[r.SELECT_BOX]) { drawSelectionRectangle(r, options); } drawAxes(r); // see drawing-elements.js drawCachedElement() if (r.data.canvasNeedsRedraw[r.NODE]) { var draw = function draw(ele) { if (ele.isNode()) { var _prevEle; if ((_prevEle = prevEle) !== null && _prevEle !== void 0 && _prevEle.isEdge()) { edgeDrawing.endBatch(); } nodeDrawing.draw(ele, 'node'); nodeDrawing.draw(ele, 'node-label'); } else { var _prevEle2; if ((_prevEle2 = prevEle) !== null && _prevEle2 !== void 0 && _prevEle2.isNode()) { nodeDrawing.endBatch(); } edgeDrawing.draw(ele); } prevEle = ele; }; var gl = r.data.contexts[r.WEBGL]; gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); gl.viewport(0, 0, gl.canvas.width, gl.canvas.height); var prevEle; var panZoomMatrix = createPanZoomMatrix(r); var eles = r.getCachedZSortedEles(); nodeDrawing.startBatch(panZoomMatrix); edgeDrawing.startBatch(panZoomMatrix); for (var i = 0; i < eles.nondrag.length; i++) { draw(eles.nondrag[i]); } for (var _i = 0; _i < eles.drag.length; _i++) { draw(eles.drag[_i]); } nodeDrawing.endBatch(); edgeDrawing.endBatch(); } }; var CRp$3 = {}; // @O Polygon drawing CRp$3.drawPolygonPath = function (context, x, y, width, height, points) { var halfW = width / 2; var halfH = height / 2; if (context.beginPath) { context.beginPath(); } context.moveTo(x + halfW * points[0], y + halfH * points[1]); for (var i = 1; i < points.length / 2; i++) { context.lineTo(x + halfW * points[i * 2], y + halfH * points[i * 2 + 1]); } context.closePath(); }; CRp$3.drawRoundPolygonPath = function (context, x, y, width, height, points, corners) { corners.forEach(function (corner) { return drawPreparedRoundCorner(context, corner); }); context.closePath(); }; // Round rectangle drawing CRp$3.drawRoundRectanglePath = function (context, x, y, width, height, radius) { var halfWidth = width / 2; var halfHeight = height / 2; var cornerRadius = radius === 'auto' ? getRoundRectangleRadius(width, height) : Math.min(radius, halfHeight, halfWidth); if (context.beginPath) { context.beginPath(); } // Start at top middle context.moveTo(x, y - halfHeight); // Arc from middle top to right side context.arcTo(x + halfWidth, y - halfHeight, x + halfWidth, y, cornerRadius); // Arc from right side to bottom context.arcTo(x + halfWidth, y + halfHeight, x, y + halfHeight, cornerRadius); // Arc from bottom to left side context.arcTo(x - halfWidth, y + halfHeight, x - halfWidth, y, cornerRadius); // Arc from left side to topBorder context.arcTo(x - halfWidth, y - halfHeight, x, y - halfHeight, cornerRadius); // Join line context.lineTo(x, y - halfHeight); context.closePath(); }; CRp$3.drawBottomRoundRectanglePath = function (context, x, y, width, height, radius) { var halfWidth = width / 2; var halfHeight = height / 2; var cornerRadius = radius === 'auto' ? getRoundRectangleRadius(width, height) : radius; if (context.beginPath) { context.beginPath(); } // Start at top middle context.moveTo(x, y - halfHeight); context.lineTo(x + halfWidth, y - halfHeight); context.lineTo(x + halfWidth, y); context.arcTo(x + halfWidth, y + halfHeight, x, y + halfHeight, cornerRadius); context.arcTo(x - halfWidth, y + halfHeight, x - halfWidth, y, cornerRadius); context.lineTo(x - halfWidth, y - halfHeight); context.lineTo(x, y - halfHeight); context.closePath(); }; CRp$3.drawCutRectanglePath = function (context, x, y, width, height, points, corners) { var halfWidth = width / 2; var halfHeight = height / 2; var cornerLength = corners === 'auto' ? getCutRectangleCornerLength() : corners; if (context.beginPath) { context.beginPath(); } context.moveTo(x - halfWidth + cornerLength, y - halfHeight); context.lineTo(x + halfWidth - cornerLength, y - halfHeight); context.lineTo(x + halfWidth, y - halfHeight + cornerLength); context.lineTo(x + halfWidth, y + halfHeight - cornerLength); context.lineTo(x + halfWidth - cornerLength, y + halfHeight); context.lineTo(x - halfWidth + cornerLength, y + halfHeight); context.lineTo(x - halfWidth, y + halfHeight - cornerLength); context.lineTo(x - halfWidth, y - halfHeight + cornerLength); context.closePath(); }; CRp$3.drawBarrelPath = function (context, x, y, width, height) { var halfWidth = width / 2; var halfHeight = height / 2; var xBegin = x - halfWidth; var xEnd = x + halfWidth; var yBegin = y - halfHeight; var yEnd = y + halfHeight; var barrelCurveConstants = getBarrelCurveConstants(width, height); var wOffset = barrelCurveConstants.widthOffset; var hOffset = barrelCurveConstants.heightOffset; var ctrlPtXOffset = barrelCurveConstants.ctrlPtOffsetPct * wOffset; if (context.beginPath) { context.beginPath(); } context.moveTo(xBegin, yBegin + hOffset); context.lineTo(xBegin, yEnd - hOffset); context.quadraticCurveTo(xBegin + ctrlPtXOffset, yEnd, xBegin + wOffset, yEnd); context.lineTo(xEnd - wOffset, yEnd); context.quadraticCurveTo(xEnd - ctrlPtXOffset, yEnd, xEnd, yEnd - hOffset); context.lineTo(xEnd, yBegin + hOffset); context.quadraticCurveTo(xEnd - ctrlPtXOffset, yBegin, xEnd - wOffset, yBegin); context.lineTo(xBegin + wOffset, yBegin); context.quadraticCurveTo(xBegin + ctrlPtXOffset, yBegin, xBegin, yBegin + hOffset); context.closePath(); }; var sin0 = Math.sin(0); var cos0 = Math.cos(0); var sin = {}; var cos = {}; var ellipseStepSize = Math.PI / 40; for (var i = 0 * Math.PI; i < 2 * Math.PI; i += ellipseStepSize) { sin[i] = Math.sin(i); cos[i] = Math.cos(i); } CRp$3.drawEllipsePath = function (context, centerX, centerY, width, height) { if (context.beginPath) { context.beginPath(); } if (context.ellipse) { context.ellipse(centerX, centerY, width / 2, height / 2, 0, 0, 2 * Math.PI); } else { var xPos, yPos; var rw = width / 2; var rh = height / 2; for (var i = 0 * Math.PI; i < 2 * Math.PI; i += ellipseStepSize) { xPos = centerX - rw * sin[i] * sin0 + rw * cos[i] * cos0; yPos = centerY + rh * cos[i] * sin0 + rh * sin[i] * cos0; if (i === 0) { context.moveTo(xPos, yPos); } else { context.lineTo(xPos, yPos); } } } context.closePath(); }; /* global atob, ArrayBuffer, Uint8Array, Blob */ var CRp$2 = {}; CRp$2.createBuffer = function (w, h) { var buffer = document.createElement('canvas'); // eslint-disable-line no-undef buffer.width = w; buffer.height = h; return [buffer, buffer.getContext('2d')]; }; CRp$2.bufferCanvasImage = function (options) { var cy = this.cy; var eles = cy.mutableElements(); var bb = eles.boundingBox(); var ctrRect = this.findContainerClientCoords(); var width = options.full ? Math.ceil(bb.w) : ctrRect[2]; var height = options.full ? Math.ceil(bb.h) : ctrRect[3]; var specdMaxDims = number$1(options.maxWidth) || number$1(options.maxHeight); var pxRatio = this.getPixelRatio(); var scale = 1; if (options.scale !== undefined) { width *= options.scale; height *= options.scale; scale = options.scale; } else if (specdMaxDims) { var maxScaleW = Infinity; var maxScaleH = Infinity; if (number$1(options.maxWidth)) { maxScaleW = scale * options.maxWidth / width; } if (number$1(options.maxHeight)) { maxScaleH = scale * options.maxHeight / height; } scale = Math.min(maxScaleW, maxScaleH); width *= scale; height *= scale; } if (!specdMaxDims) { width *= pxRatio; height *= pxRatio; scale *= pxRatio; } var buffCanvas = document.createElement('canvas'); // eslint-disable-line no-undef buffCanvas.width = width; buffCanvas.height = height; buffCanvas.style.width = width + 'px'; buffCanvas.style.height = height + 'px'; var buffCxt = buffCanvas.getContext('2d'); // Rasterize the layers, but only if container has nonzero size if (width > 0 && height > 0) { buffCxt.clearRect(0, 0, width, height); buffCxt.globalCompositeOperation = 'source-over'; var zsortedEles = this.getCachedZSortedEles(); if (options.full) { // draw the full bounds of the graph buffCxt.translate(-bb.x1 * scale, -bb.y1 * scale); buffCxt.scale(scale, scale); this.drawElements(buffCxt, zsortedEles); buffCxt.scale(1 / scale, 1 / scale); buffCxt.translate(bb.x1 * scale, bb.y1 * scale); } else { // draw the current view var pan = cy.pan(); var translation = { x: pan.x * scale, y: pan.y * scale }; scale *= cy.zoom(); buffCxt.translate(translation.x, translation.y); buffCxt.scale(scale, scale); this.drawElements(buffCxt, zsortedEles); buffCxt.scale(1 / scale, 1 / scale); buffCxt.translate(-translation.x, -translation.y); } // need to fill bg at end like this in order to fill cleared transparent pixels in jpgs if (options.bg) { buffCxt.globalCompositeOperation = 'destination-over'; buffCxt.fillStyle = options.bg; buffCxt.rect(0, 0, width, height); buffCxt.fill(); } } return buffCanvas; }; function b64ToBlob(b64, mimeType) { var bytes = atob(b64); var buff = new ArrayBuffer(bytes.length); var buffUint8 = new Uint8Array(buff); for (var i = 0; i < bytes.length; i++) { buffUint8[i] = bytes.charCodeAt(i); } return new Blob([buff], { type: mimeType }); } function b64UriToB64(b64uri) { var i = b64uri.indexOf(','); return b64uri.substr(i + 1); } function output(options, canvas, mimeType) { var getB64Uri = function getB64Uri() { return canvas.toDataURL(mimeType, options.quality); }; switch (options.output) { case 'blob-promise': return new Promise$1(function (resolve, reject) { try { canvas.toBlob(function (blob) { if (blob != null) { resolve(blob); } else { reject(new Error('`canvas.toBlob()` sent a null value in its callback')); } }, mimeType, options.quality); } catch (err) { reject(err); } }); case 'blob': return b64ToBlob(b64UriToB64(getB64Uri()), mimeType); case 'base64': return b64UriToB64(getB64Uri()); case 'base64uri': default: return getB64Uri(); } } CRp$2.png = function (options) { return output(options, this.bufferCanvasImage(options), 'image/png'); }; CRp$2.jpg = function (options) { return output(options, this.bufferCanvasImage(options), 'image/jpeg'); }; var CRp$1 = {}; CRp$1.nodeShapeImpl = function (name, context, centerX, centerY, width, height, points, corners) { switch (name) { case 'ellipse': return this.drawEllipsePath(context, centerX, centerY, width, height); case 'polygon': return this.drawPolygonPath(context, centerX, centerY, width, height, points); case 'round-polygon': return this.drawRoundPolygonPath(context, centerX, centerY, width, height, points, corners); case 'roundrectangle': case 'round-rectangle': return this.drawRoundRectanglePath(context, centerX, centerY, width, height, corners); case 'cutrectangle': case 'cut-rectangle': return this.drawCutRectanglePath(context, centerX, centerY, width, height, points, corners); case 'bottomroundrectangle': case 'bottom-round-rectangle': return this.drawBottomRoundRectanglePath(context, centerX, centerY, width, height, corners); case 'barrel': return this.drawBarrelPath(context, centerX, centerY, width, height); } }; var CR = CanvasRenderer; var CRp = CanvasRenderer.prototype; CRp.CANVAS_LAYERS = 3; // CRp.SELECT_BOX = 0; CRp.DRAG = 1; CRp.NODE = 2; CRp.WEBGL = 3; CRp.CANVAS_TYPES = ['2d', '2d', '2d', 'webgl2']; CRp.BUFFER_COUNT = 3; // CRp.TEXTURE_BUFFER = 0; CRp.MOTIONBLUR_BUFFER_NODE = 1; CRp.MOTIONBLUR_BUFFER_DRAG = 2; function CanvasRenderer(options) { var r = this; var containerWindow = r.cy.window(); var document = containerWindow.document; if (options.webgl) { CRp.CANVAS_LAYERS = r.CANVAS_LAYERS = 4; console.log('webgl rendering enabled'); } r.data = { canvases: new Array(CRp.CANVAS_LAYERS), contexts: new Array(CRp.CANVAS_LAYERS), canvasNeedsRedraw: new Array(CRp.CANVAS_LAYERS), bufferCanvases: new Array(CRp.BUFFER_COUNT), bufferContexts: new Array(CRp.CANVAS_LAYERS) }; var tapHlOffAttr = '-webkit-tap-highlight-color'; var tapHlOffStyle = 'rgba(0,0,0,0)'; r.data.canvasContainer = document.createElement('div'); // eslint-disable-line no-undef var containerStyle = r.data.canvasContainer.style; r.data.canvasContainer.style[tapHlOffAttr] = tapHlOffStyle; containerStyle.position = 'relative'; containerStyle.zIndex = '0'; containerStyle.overflow = 'hidden'; var container = options.cy.container(); container.appendChild(r.data.canvasContainer); container.style[tapHlOffAttr] = tapHlOffStyle; var styleMap = { '-webkit-user-select': 'none', '-moz-user-select': '-moz-none', 'user-select': 'none', '-webkit-tap-highlight-color': 'rgba(0,0,0,0)', 'outline-style': 'none' }; if (ms()) { styleMap['-ms-touch-action'] = 'none'; styleMap['touch-action'] = 'none'; } for (var i = 0; i < CRp.CANVAS_LAYERS; i++) { var canvas = r.data.canvases[i] = document.createElement('canvas'); // eslint-disable-line no-undef var type = CRp.CANVAS_TYPES[i]; r.data.contexts[i] = canvas.getContext(type); if (!r.data.contexts[i]) { error('Could not create canvas of type ' + type); } Object.keys(styleMap).forEach(function (k) { canvas.style[k] = styleMap[k]; }); canvas.style.position = 'absolute'; canvas.setAttribute('data-id', 'layer' + i); canvas.style.zIndex = String(CRp.CANVAS_LAYERS - i); r.data.canvasContainer.appendChild(canvas); r.data.canvasNeedsRedraw[i] = false; } r.data.topCanvas = r.data.canvases[0]; r.data.canvases[CRp.NODE].setAttribute('data-id', 'layer' + CRp.NODE + '-node'); r.data.canvases[CRp.SELECT_BOX].setAttribute('data-id', 'layer' + CRp.SELECT_BOX + '-selectbox'); r.data.canvases[CRp.DRAG].setAttribute('data-id', 'layer' + CRp.DRAG + '-drag'); if (r.data.canvases[CRp.WEBGL]) { r.data.canvases[CRp.WEBGL].setAttribute('data-id', 'layer' + CRp.WEBGL + '-webgl'); } for (var i = 0; i < CRp.BUFFER_COUNT; i++) { r.data.bufferCanvases[i] = document.createElement('canvas'); // eslint-disable-line no-undef r.data.bufferContexts[i] = r.data.bufferCanvases[i].getContext('2d'); r.data.bufferCanvases[i].style.position = 'absolute'; r.data.bufferCanvases[i].setAttribute('data-id', 'buffer' + i); r.data.bufferCanvases[i].style.zIndex = String(-i - 1); r.data.bufferCanvases[i].style.visibility = 'hidden'; //r.data.canvasContainer.appendChild(r.data.bufferCanvases[i]); } r.pathsEnabled = true; var emptyBb = makeBoundingBox(); var getBoxCenter = function getBoxCenter(bb) { return { x: (bb.x1 + bb.x2) / 2, y: (bb.y1 + bb.y2) / 2 }; }; var getCenterOffset = function getCenterOffset(bb) { return { x: -bb.w / 2, y: -bb.h / 2 }; }; var backgroundTimestampHasChanged = function backgroundTimestampHasChanged(ele) { var _p = ele[0]._private; var same = _p.oldBackgroundTimestamp === _p.backgroundTimestamp; return !same; }; var getStyleKey = function getStyleKey(ele) { return ele[0]._private.nodeKey; }; var getLabelKey = function getLabelKey(ele) { return ele[0]._private.labelStyleKey; }; var getSourceLabelKey = function getSourceLabelKey(ele) { return ele[0]._private.sourceLabelStyleKey; }; var getTargetLabelKey = function getTargetLabelKey(ele) { return ele[0]._private.targetLabelStyleKey; }; var drawElement = function drawElement(context, ele, bb, scaledLabelShown, useEleOpacity) { return r.drawElement(context, ele, bb, false, false, useEleOpacity); }; var drawLabel = function drawLabel(context, ele, bb, scaledLabelShown, useEleOpacity) { return r.drawElementText(context, ele, bb, scaledLabelShown, 'main', useEleOpacity); }; var drawSourceLabel = function drawSourceLabel(context, ele, bb, scaledLabelShown, useEleOpacity) { return r.drawElementText(context, ele, bb, scaledLabelShown, 'source', useEleOpacity); }; var drawTargetLabel = function drawTargetLabel(context, ele, bb, scaledLabelShown, useEleOpacity) { return r.drawElementText(context, ele, bb, scaledLabelShown, 'target', useEleOpacity); }; var getElementBox = function getElementBox(ele) { ele.boundingBox(); return ele[0]._private.bodyBounds; }; var getLabelBox = function getLabelBox(ele) { ele.boundingBox(); return ele[0]._private.labelBounds.main || emptyBb; }; var getSourceLabelBox = function getSourceLabelBox(ele) { ele.boundingBox(); return ele[0]._private.labelBounds.source || emptyBb; }; var getTargetLabelBox = function getTargetLabelBox(ele) { ele.boundingBox(); return ele[0]._private.labelBounds.target || emptyBb; }; var isLabelVisibleAtScale = function isLabelVisibleAtScale(ele, scaledLabelShown) { return scaledLabelShown; }; var getElementRotationPoint = function getElementRotationPoint(ele) { return getBoxCenter(getElementBox(ele)); }; var addTextMargin = function addTextMargin(prefix, pt, ele) { var pre = prefix ? prefix + '-' : ''; return { x: pt.x + ele.pstyle(pre + 'text-margin-x').pfValue, y: pt.y + ele.pstyle(pre + 'text-margin-y').pfValue }; }; var getRsPt = function getRsPt(ele, x, y) { var rs = ele[0]._private.rscratch; return { x: rs[x], y: rs[y] }; }; var getLabelRotationPoint = function getLabelRotationPoint(ele) { return addTextMargin('', getRsPt(ele, 'labelX', 'labelY'), ele); }; var getSourceLabelRotationPoint = function getSourceLabelRotationPoint(ele) { return addTextMargin('source', getRsPt(ele, 'sourceLabelX', 'sourceLabelY'), ele); }; var getTargetLabelRotationPoint = function getTargetLabelRotationPoint(ele) { return addTextMargin('target', getRsPt(ele, 'targetLabelX', 'targetLabelY'), ele); }; var getElementRotationOffset = function getElementRotationOffset(ele) { return getCenterOffset(getElementBox(ele)); }; var getSourceLabelRotationOffset = function getSourceLabelRotationOffset(ele) { return getCenterOffset(getSourceLabelBox(ele)); }; var getTargetLabelRotationOffset = function getTargetLabelRotationOffset(ele) { return getCenterOffset(getTargetLabelBox(ele)); }; var getLabelRotationOffset = function getLabelRotationOffset(ele) { var bb = getLabelBox(ele); var p = getCenterOffset(getLabelBox(ele)); if (ele.isNode()) { switch (ele.pstyle('text-halign').value) { case 'left': p.x = -bb.w; break; case 'right': p.x = 0; break; } switch (ele.pstyle('text-valign').value) { case 'top': p.y = -bb.h; break; case 'bottom': p.y = 0; break; } } return p; }; var eleTxrCache = r.data.eleTxrCache = new ElementTextureCache(r, { getKey: getStyleKey, doesEleInvalidateKey: backgroundTimestampHasChanged, drawElement: drawElement, getBoundingBox: getElementBox, getRotationPoint: getElementRotationPoint, getRotationOffset: getElementRotationOffset, allowEdgeTxrCaching: false, allowParentTxrCaching: false }); var lblTxrCache = r.data.lblTxrCache = new ElementTextureCache(r, { getKey: getLabelKey, drawElement: drawLabel, getBoundingBox: getLabelBox, getRotationPoint: getLabelRotationPoint, getRotationOffset: getLabelRotationOffset, isVisible: isLabelVisibleAtScale }); var slbTxrCache = r.data.slbTxrCache = new ElementTextureCache(r, { getKey: getSourceLabelKey, drawElement: drawSourceLabel, getBoundingBox: getSourceLabelBox, getRotationPoint: getSourceLabelRotationPoint, getRotationOffset: getSourceLabelRotationOffset, isVisible: isLabelVisibleAtScale }); var tlbTxrCache = r.data.tlbTxrCache = new ElementTextureCache(r, { getKey: getTargetLabelKey, drawElement: drawTargetLabel, getBoundingBox: getTargetLabelBox, getRotationPoint: getTargetLabelRotationPoint, getRotationOffset: getTargetLabelRotationOffset, isVisible: isLabelVisibleAtScale }); var lyrTxrCache = r.data.lyrTxrCache = new LayeredTextureCache(r); r.onUpdateEleCalcs(function invalidateTextureCaches(willDraw, eles) { // each cache should check for sub-key diff to see that the update affects that cache particularly eleTxrCache.invalidateElements(eles); lblTxrCache.invalidateElements(eles); slbTxrCache.invalidateElements(eles); tlbTxrCache.invalidateElements(eles); // any change invalidates the layers lyrTxrCache.invalidateElements(eles); // update the old bg timestamp so diffs can be done in the ele txr caches for (var _i = 0; _i < eles.length; _i++) { var _p = eles[_i]._private; _p.oldBackgroundTimestamp = _p.backgroundTimestamp; } }); var refineInLayers = function refineInLayers(reqs) { for (var i = 0; i < reqs.length; i++) { lyrTxrCache.enqueueElementRefinement(reqs[i].ele); } }; eleTxrCache.onDequeue(refineInLayers); lblTxrCache.onDequeue(refineInLayers); slbTxrCache.onDequeue(refineInLayers); tlbTxrCache.onDequeue(refineInLayers); if (options.webgl) { r.initWebgl(options, { getStyleKey: getStyleKey, getLabelKey: getLabelKey, drawElement: drawElement, drawLabel: drawLabel, getElementBox: getElementBox, getLabelBox: getLabelBox, getElementRotationPoint: getElementRotationPoint, getElementRotationOffset: getElementRotationOffset, getLabelRotationPoint: getLabelRotationPoint, getLabelRotationOffset: getLabelRotationOffset }); } } CRp.redrawHint = function (group, bool) { var r = this; switch (group) { case 'eles': r.data.canvasNeedsRedraw[CRp.NODE] = bool; break; case 'drag': r.data.canvasNeedsRedraw[CRp.DRAG] = bool; break; case 'select': r.data.canvasNeedsRedraw[CRp.SELECT_BOX] = bool; break; } }; // whether to use Path2D caching for drawing var pathsImpld = typeof Path2D !== 'undefined'; CRp.path2dEnabled = function (on) { if (on === undefined) { return this.pathsEnabled; } this.pathsEnabled = on ? true : false; }; CRp.usePaths = function () { return pathsImpld && this.pathsEnabled; }; CRp.setImgSmoothing = function (context, bool) { if (context.imageSmoothingEnabled != null) { context.imageSmoothingEnabled = bool; } else { context.webkitImageSmoothingEnabled = bool; context.mozImageSmoothingEnabled = bool; context.msImageSmoothingEnabled = bool; } }; CRp.getImgSmoothing = function (context) { if (context.imageSmoothingEnabled != null) { return context.imageSmoothingEnabled; } else { return context.webkitImageSmoothingEnabled || context.mozImageSmoothingEnabled || context.msImageSmoothingEnabled; } }; CRp.makeOffscreenCanvas = function (width, height) { var canvas; if ((typeof OffscreenCanvas === "undefined" ? "undefined" : _typeof(OffscreenCanvas)) !== ("undefined" )) { canvas = new OffscreenCanvas(width, height); } else { var containerWindow = this.cy.window(); var document = containerWindow.document; canvas = document.createElement('canvas'); // eslint-disable-line no-undef canvas.width = width; canvas.height = height; } return canvas; }; [CRp$b, CRp$a, CRp$9, CRp$8, CRp$7, CRp$6, CRp$5, CRp$4, CRp$3, CRp$2, CRp$1].forEach(function (props) { extend(CRp, props); }); var renderer = [{ name: 'null', impl: NullRenderer }, { name: 'base', impl: BR }, { name: 'canvas', impl: CR }]; var incExts = [{ type: 'layout', extensions: layout }, { type: 'renderer', extensions: renderer }]; // registered extensions to cytoscape, indexed by name var extensions = {}; // registered modules for extensions, indexed by name var modules = {}; function setExtension(type, name, registrant) { var ext = registrant; var overrideErr = function overrideErr(field) { warn('Can not register `' + name + '` for `' + type + '` since `' + field + '` already exists in the prototype and can not be overridden'); }; if (type === 'core') { if (Core.prototype[name]) { return overrideErr(name); } else { Core.prototype[name] = registrant; } } else if (type === 'collection') { if (Collection.prototype[name]) { return overrideErr(name); } else { Collection.prototype[name] = registrant; } } else if (type === 'layout') { // fill in missing layout functions in the prototype var Layout = function Layout(options) { this.options = options; registrant.call(this, options); // make sure layout has _private for use w/ std apis like .on() if (!plainObject(this._private)) { this._private = {}; } this._private.cy = options.cy; this._private.listeners = []; this.createEmitter(); }; var layoutProto = Layout.prototype = Object.create(registrant.prototype); var optLayoutFns = []; for (var i = 0; i < optLayoutFns.length; i++) { var fnName = optLayoutFns[i]; layoutProto[fnName] = layoutProto[fnName] || function () { return this; }; } // either .start() or .run() is defined, so autogen the other if (layoutProto.start && !layoutProto.run) { layoutProto.run = function () { this.start(); return this; }; } else if (!layoutProto.start && layoutProto.run) { layoutProto.start = function () { this.run(); return this; }; } var regStop = registrant.prototype.stop; layoutProto.stop = function () { var opts = this.options; if (opts && opts.animate) { var anis = this.animations; if (anis) { for (var _i = 0; _i < anis.length; _i++) { anis[_i].stop(); } } } if (regStop) { regStop.call(this); } else { this.emit('layoutstop'); } return this; }; if (!layoutProto.destroy) { layoutProto.destroy = function () { return this; }; } layoutProto.cy = function () { return this._private.cy; }; var getCy = function getCy(layout) { return layout._private.cy; }; var emitterOpts = { addEventFields: function addEventFields(layout, evt) { evt.layout = layout; evt.cy = getCy(layout); evt.target = layout; }, bubble: function bubble() { return true; }, parent: function parent(layout) { return getCy(layout); } }; extend(layoutProto, { createEmitter: function createEmitter() { this._private.emitter = new Emitter(emitterOpts, this); return this; }, emitter: function emitter() { return this._private.emitter; }, on: function on(evt, cb) { this.emitter().on(evt, cb); return this; }, one: function one(evt, cb) { this.emitter().one(evt, cb); return this; }, once: function once(evt, cb) { this.emitter().one(evt, cb); return this; }, removeListener: function removeListener(evt, cb) { this.emitter().removeListener(evt, cb); return this; }, removeAllListeners: function removeAllListeners() { this.emitter().removeAllListeners(); return this; }, emit: function emit(evt, params) { this.emitter().emit(evt, params); return this; } }); define.eventAliasesOn(layoutProto); ext = Layout; // replace with our wrapped layout } else if (type === 'renderer' && name !== 'null' && name !== 'base') { // user registered renderers inherit from base var BaseRenderer = getExtension('renderer', 'base'); var bProto = BaseRenderer.prototype; var RegistrantRenderer = registrant; var rProto = registrant.prototype; var Renderer = function Renderer() { BaseRenderer.apply(this, arguments); RegistrantRenderer.apply(this, arguments); }; var proto = Renderer.prototype; for (var pName in bProto) { var pVal = bProto[pName]; var existsInR = rProto[pName] != null; if (existsInR) { return overrideErr(pName); } proto[pName] = pVal; // take impl from base } for (var _pName in rProto) { proto[_pName] = rProto[_pName]; // take impl from registrant } bProto.clientFunctions.forEach(function (name) { proto[name] = proto[name] || function () { error('Renderer does not implement `renderer.' + name + '()` on its prototype'); }; }); ext = Renderer; } else if (type === '__proto__' || type === 'constructor' || type === 'prototype') { // to avoid potential prototype pollution return error(type + ' is an illegal type to be registered, possibly lead to prototype pollutions'); } return setMap({ map: extensions, keys: [type, name], value: ext }); } function getExtension(type, name) { return getMap({ map: extensions, keys: [type, name] }); } function setModule(type, name, moduleType, moduleName, registrant) { return setMap({ map: modules, keys: [type, name, moduleType, moduleName], value: registrant }); } function getModule(type, name, moduleType, moduleName) { return getMap({ map: modules, keys: [type, name, moduleType, moduleName] }); } var extension = function extension() { // e.g. extension('renderer', 'svg') if (arguments.length === 2) { return getExtension.apply(null, arguments); } // e.g. extension('renderer', 'svg', { ... }) else if (arguments.length === 3) { return setExtension.apply(null, arguments); } // e.g. extension('renderer', 'svg', 'nodeShape', 'ellipse') else if (arguments.length === 4) { return getModule.apply(null, arguments); } // e.g. extension('renderer', 'svg', 'nodeShape', 'ellipse', { ... }) else if (arguments.length === 5) { return setModule.apply(null, arguments); } else { error('Invalid extension access syntax'); } }; // allows a core instance to access extensions internally Core.prototype.extension = extension; // included extensions incExts.forEach(function (group) { group.extensions.forEach(function (ext) { setExtension(group.type, ext.name, ext.impl); }); }); // a dummy stylesheet object that doesn't need a reference to the core // (useful for init) var Stylesheet = function Stylesheet() { if (!(this instanceof Stylesheet)) { return new Stylesheet(); } this.length = 0; }; var sheetfn = Stylesheet.prototype; sheetfn.instanceString = function () { return 'stylesheet'; }; // just store the selector to be parsed later sheetfn.selector = function (selector) { var i = this.length++; this[i] = { selector: selector, properties: [] }; return this; // chaining }; // just store the property to be parsed later sheetfn.css = function (name, value) { var i = this.length - 1; if (string(name)) { this[i].properties.push({ name: name, value: value }); } else if (plainObject(name)) { var map = name; var propNames = Object.keys(map); for (var j = 0; j < propNames.length; j++) { var key = propNames[j]; var mapVal = map[key]; if (mapVal == null) { continue; } var prop = Style.properties[key] || Style.properties[dash2camel(key)]; if (prop == null) { continue; } var _name = prop.name; var _value = mapVal; this[i].properties.push({ name: _name, value: _value }); } } return this; // chaining }; sheetfn.style = sheetfn.css; // generate a real style object from the dummy stylesheet sheetfn.generateStyle = function (cy) { var style = new Style(cy); return this.appendToStyle(style); }; // append a dummy stylesheet object on a real style object sheetfn.appendToStyle = function (style) { for (var i = 0; i < this.length; i++) { var context = this[i]; var selector = context.selector; var props = context.properties; style.selector(selector); // apply selector for (var j = 0; j < props.length; j++) { var prop = props[j]; style.css(prop.name, prop.value); // apply property } } return style; }; var version = "snapshot"; var cytoscape = function cytoscape(options) { // if no options specified, use default if (options === undefined) { options = {}; } // create instance if (plainObject(options)) { return new Core(options); } // allow for registration of extensions else if (string(options)) { return extension.apply(extension, arguments); } }; // e.g. cytoscape.use( require('cytoscape-foo'), bar ) cytoscape.use = function (ext) { var args = Array.prototype.slice.call(arguments, 1); // args to pass to ext args.unshift(cytoscape); // cytoscape is first arg to ext ext.apply(null, args); return this; }; cytoscape.warnings = function (bool) { return warnings(bool); }; // replaced by build system cytoscape.version = version; // expose public apis (mostly for extensions) cytoscape.stylesheet = cytoscape.Stylesheet = Stylesheet; return cytoscape; })); ================================================ FILE: documentation/js/script.js ================================================ /* global window, document, loadCy, _gaq, showCy, hideCy, cy, cytoscape */ var cy; var loadCy = function(){ // initialise cytoscape.js on a html dom element with some options: cy = cytoscape( options = { container: document.getElementById('cy'), minZoom: 0.5, maxZoom: 2, // style can be specified as plain JSON, a stylesheet string (probably a CSS-like // file pulled from the server), or in a functional format style: [ { selector: 'node', style: { 'content': 'data(name)', 'font-family': 'helvetica', 'font-size': 14, 'text-outline-width': 3, 'text-outline-color': '#999', 'text-valign': 'center', 'color': '#fff', 'width': 'mapData(weight, 30, 80, 20, 50)', 'height': 'mapData(height, 0, 200, 10, 45)', 'border-color': '#fff' } }, { selector: ':selected', style: { 'background-color': '#000', 'line-color': '#000', 'target-arrow-color': '#000', 'text-outline-color': '#000' } }, { selector: 'edge', style: { 'width': 2, 'curve-style': 'bezier', 'target-arrow-shape': 'triangle' } }, { selector: '.foo', style: { 'border-width': 4, 'border-color': 'red' } } ], // specify the elements in the graph elements: [ { data: { id: 'j', name: 'Jerry', weight: 65, height: 174 } }, { data: { id: 'e', name: 'Elaine', weight: 48, height: 160 } }, { data: { id: 'k', name: 'Kramer', weight: 75, height: 185 } }, { data: { id: 'g', name: 'George', weight: 70, height: 150 } }, { data: { source: 'j', target: 'e', id: 'je', closeness: 0.85 } }, { data: { source: 'j', target: 'k', id: 'jk', closeness: 0.5 } }, { data: { source: 'j', target: 'g', id: 'jg', closeness: 0.7 } }, { data: { source: 'e', target: 'j', id: 'ej', closeness: 0.9 } }, { data: { source: 'e', target: 'k', id: 'ek', closeness: 0.6 } }, { data: { source: 'k', target: 'j', id: 'kj', closeness: 0.9 } }, { data: { source: 'k', target: 'e', id: 'ke', closeness: 0.9 } }, { data: { source: 'k', target: 'g', id: 'kg', closeness: 0.9 } }, { data: { source: 'g', target: 'j', id: 'gj', closeness: 0.8 } } ] } ); }; loadCy(); (function(){ var $$ = function( sel ){ var els = document.querySelectorAll(sel); var ret = []; for( var i = 0; i < els.length; i++ ){ ret.push( els[i] ); } return ret; }; var $ = function( sel ){ return document.querySelector( sel ); }; var show = function( $e ){ if( $e.length != null ){ $e.forEach( show ); } else { $e.style.display = ''; } }; var hide = function( $e ){ if( $e.length != null ){ $e.forEach( hide ); } else { $e.style.display = 'none'; } }; // fix for old safari/chrome ('wheel mousewheel DOMMouseScroll MozMousePixelScroll scroll').split(' ').forEach(function( evt ){ $('#navigation').addEventListener(evt, function(e) { e.stopPropagation(); }); }); $('#open-navigation').addEventListener('click', function() { $('body').classList.add('navigation-open'); }); $('#open-navigation-bg, #navigation a').addEventListener('click', function() { $('body').classList.remove('navigation-open'); }); var $nav = $('#navigation'); // avoid weird rendering bug in chrome etc $('#navigation a').addEventListener('click', function() { var scroll = $('#navigation').scrollTop; // force navigation to rerender, because some browsers (like old chrome) // don't render properly after clicking one of the links setTimeout(function() { $nav.scrollTop = (scroll + 10); $nav.scrollTop = (scroll - 10); $nav.scrollTop = (scroll); }, 0); }); function debounce(fn, delay) { var timeout; return function() { var context = this; var args = arguments; clearTimeout(timeout); timeout = setTimeout(function() { timeout = null; fn.apply(context, args); }, delay); }; } var $toclinks = $$('.section > .toclink'); var $tocinput = $('#tabofcon-input'); var $tocsections = $('#tabofcon-sections'); var lastTxt; var txt; var nodes = []; var roots = []; var leaves = []; var prev = {}; $toclinks.forEach(function( $ele ){ var $section = $ele.parentNode; var lvl = $section.classList.contains('lvl1') ? 1 : $section.classList.contains('lvl2') ? 2 : 3; var parent; var node = { lvl: lvl, $ele: $ele, text: $ele.innerText.toLowerCase(), children: [], parent: null }; if( lvl === 1 ){ roots.push( node ); } else { parent = prev[ lvl - 1 ]; parent.children.push( node ); node.parent = parent; } nodes.push( node ); prev[ lvl ] = node; }); nodes.forEach(function(n){ if( n.children.length === 0 ){ leaves.push(n); } }); var traverseDown = function( nodes, visit ){ nodes.forEach(function( node ){ visit( node ); traverseDown( node.children, visit ); }); }; var traverseUp = function( nodes, visit ){ nodes.forEach(function( node ){ visit( node ); if( node.parent ){ traverseUp( [node.parent], visit ); } }); }; var filterSections = debounce(function() { txt = $tocinput.value.toLowerCase(); nodes.forEach(function(n){ n.matches = n.descMatches = n.ancMatches = false; n.matches = n.text.indexOf( txt ) >= 0; }); traverseDown(roots, function(node){ if( node.parent && (node.parent.matches || node.parent.ancMatches) ){ node.ancMatches = true; } }); traverseUp(leaves, function(node){ if( node.children.some(function(n){ return n.matches || n.descMatches; }) ){ node.descMatches = true; } }); nodes.forEach(function(n){ hide( n.$ele ); }); nodes.filter(function(n){ return n.matches || n.ancMatches || n.descMatches; }).forEach(function(n){ show( n.$ele ); }); $tocsections.classList.remove('tabofcon-searching'); }, 250); var onChangeSearch = function(){ txt = $tocinput.value.toLowerCase(); if (txt === lastTxt) { return; } lastTxt = txt; $tocsections.classList.add('tabofcon-searching'); filterSections(); }; ('keydown keyup keypress change').split(' ').forEach(function( evt ){ $tocinput.addEventListener(evt, onChangeSearch); }); $('#tabofcon-clear').addEventListener('click', function() { $tocinput.value = ''; onChangeSearch(); }); loadCy(); $('#cy-refresh').addEventListener('click', function() { loadCy(); $('#cy').setAttribute('style', ''); // because some example fiddles w/ this }); window.showCy = function($ele) { $$('#cy, #cy-hide, #cy-refresh, #cy-label').forEach(function($e){ $e.classList.remove('hidden'); }); $('#cy-show').classList.add('hidden'); if ($ele) { var $etc = $('#cy-etc'); $etc.classList.remove('hidden'); $etc.parentNode.removeChild( $etc ); $ele.insertAdjacentElement('afterend', $etc); } cy.resize(); }; window.hideCy = function() { $$('#cy, #cy-hide, #cy-refresh, #cy-label, #cy-etc').forEach(function($e){ $e.classList.add('hidden'); }); $('#cy-show').classList.remove('hidden'); }; $('#cy-hide').addEventListener('click', function() { hideCy(); }); $('#cy-show').addEventListener('click', function() { showCy(); }); $$('.run.run-inline-code').forEach(function($e){ $e.addEventListener('click', function() { var $run = $e; var $pre = $e.previousElementSibling; showCy($run); var text = $pre.innerText; setTimeout(function(){ var ret = eval(text); var isEles = function(o) { return o != null && o.isNode != null; }; if (isEles(ret) && ret.length > 0) { var css = { 'text-outline-color': '#4183C4', 'background-color': '#4183C4', 'line-color': '#4183C4', 'target-arrow-color': '#4183C4', 'source-arrow-color': '#4183C4' }; var delay = 200; ret .stop(true) .animate({ style: css }) .delay(delay, function() { ret.removeCss(); }) .animate({ style: css }) .delay(delay, function() { ret.removeCss(); }) .animate({ style: css }) .delay(delay, function() { ret.removeCss(); }); } }, 500); }); }); })(); ================================================ FILE: documentation/md/animation/apply.md ================================================ ## Details This function allows you to step directly to a particular progress of the animation while it's paused. ## Examples ```js var jAni = cy.$('#j').animation({ style: { 'background-color': 'red', 'width': 75 }, duration: 1000 }); jAni.progress(0.5).apply(); ``` ================================================ FILE: documentation/md/animation/pause.md ================================================ ## Examples ```js var j = cy.$('#j'); var jAni = j.animation({ style: { 'background-color': 'red', 'width': 75 }, duration: 1000 }); jAni.play(); // pause about midway setTimeout(function(){ jAni.pause(); }, 500); ``` ================================================ FILE: documentation/md/animation/play.md ================================================ ## Examples ```js var jAni = cy.$('#j').animation({ style: { 'background-color': 'red', 'width': 75 }, duration: 1000 }); jAni.play(); ``` ================================================ FILE: documentation/md/animation/progress.md ================================================ ## Examples ```js var jAni = cy.$('#j').animation({ style: { 'background-color': 'red', 'width': 75 }, duration: 1000 }); // set animation to 50% and then play jAni.progress(0.5).play(); ``` ================================================ FILE: documentation/md/animation/promise.md ================================================ ## Examples When `ani.apply()` has updated the element style: ```js var jAni = cy.$('#j').animation({ style: { 'background-color': 'red', 'width': 75 }, duration: 1000 }); jAni.progress(0.5).apply().promise('frame').then(function(){ console.log('j has now has its style at 50% of the animation'); }); ``` When `ani.play()` is done: ```js var jAni = cy.$('#j').animation({ style: { height: 60 }, duration: 1000 }); jAni.play().promise().then(function(){ console.log('animation done'); }); ``` ================================================ FILE: documentation/md/animation/reverse.md ================================================ ## Examples ```js var jAni = cy.$('#j').animation({ style: { 'background-color': 'red', 'width': 75 }, duration: 1000 }); jAni .play() // start .promise('completed').then(function(){ // on next completed jAni .reverse() // switch animation direction .rewind() // optional but makes intent clear .play() // start again ; }) ; ``` ================================================ FILE: documentation/md/animation/stop.md ================================================ ## Details This function is useful in situations where you don't want to run an animation any more. Calling `ani.stop()` is analogous to calling `ele.stop()` in that the animation is no longer queued. Calling `ani.stop()` makes animation frames faster by reducing the number of animations to check per element per frame. You should call `ani.stop()` when you want to clean up an animation, especially in situations with many animations. You can still reuse a stopped animation, but an animation that has not been stopped can not be garbage collected unless its associated target (i.e. element or core instance) is garbage collected as well. ## Examples ```js var j = cy.$('#j'); var jAni = j.animation({ style: { 'background-color': 'red', 'width': 75 }, duration: 1000 }); jAni.play(); // stop about midway setTimeout(function(){ jAni.stop(); }, 500); ``` ================================================ FILE: documentation/md/animations.md ================================================ An animation represents a visible change in state over a duration of time for a single element. Animations can be generated via [`cy.animation()`](#cy.animation) (for animations on the viewport) and [`ele.animation()`](#ele.animation) (for animations on graph elements). ================================================ FILE: documentation/md/architecture.md ================================================ Cytoscape.js uses an event-driven model with a core API. The core has several extensions, each of which is notified of events by the core, as needed. Extensions modify the elements in the graph and notify the core of any changes. The client application accesses Cytoscape.js solely through the [core](#core). Clients do not access extensions directly, apart from the case where a client wishes to write their own custom extension. The following diagramme summarises the extensions of Cytoscape.js, which are discussed in further detail [elsewhere in this documentation](#extensions). ================================================ FILE: documentation/md/collection/aStar.md ================================================ ## Details Note that this function performs A* search on only the subset of the graph in the calling collection. This function returns an object of the following form: ```js { found, /* true or false */ distance, /* Distance of the shortest path, if found */ path /* Ordered collection of elements in the shortest path, if found */ } ``` Regarding optional options: * If no weight function is defined, a constant weight of 1 is used for each edge. * If no heuristic function is provided, a constant null function will be used, turning this into the same behaviour as Dijkstra's algorithm. The heuristic should be monotonic (also called consistent) in addition to being 'admissible'. ## Examples ```js var aStar = cy.elements().aStar({ root: "#j", goal: "#e" }); aStar.path.select(); ``` ================================================ FILE: documentation/md/collection/absoluteComplement.md ================================================ ## Examples ```js cy.$('#j').absoluteComplement(); ``` ================================================ FILE: documentation/md/collection/addClass.md ================================================ ## Examples ```js cy.$('#j, #e').addClass('foo'); ``` ================================================ FILE: documentation/md/collection/affinityPropagation.md ================================================ ## Details Note that this function performs affinity propagation clustering on only the subset of the graph in the calling collection. Affinity propagation does not normally take into account the topology of the graph. This function returns an array, containing collections. Each collection in the array is a cluster found by the algorithm. ## Examples ```js var clusters = cy.elements().ap({ attributes: [ function( node ){ return node.data('weight'); } ] }); ``` ================================================ FILE: documentation/md/collection/algorithms.md ================================================
================================================ FILE: documentation/md/collection/allAre.md ================================================ ## Examples ```js var jAndE = cy.$('#j, #e'); console.log( 'j and e all have weight > 50 ? ' + jAndE.allAre('[weight > 50]') ); ``` ================================================ FILE: documentation/md/collection/allAreNeighbors.md ================================================ ## Examples ```js var j = cy.$('#j'); var gAndK = cy.$('#g, #k'); console.log( 'all neighbours ? ' + j.allAreNeighbors(gAndK) ); ``` ================================================ FILE: documentation/md/collection/animate.md ================================================ ## Details Note that you can specify only one of `position` and `renderedPosition`: You can not animate to two positions at once. ## Examples ```js cy.nodes().animate({ position: { x: 100, y: 100 }, style: { backgroundColor: 'red' } }, { duration: 1000 }); console.log('Animating nodes...'); ``` ================================================ FILE: documentation/md/collection/anySame.md ================================================ ## Examples ```js var j = cy.$('#j'); var guys = cy.$('#j, #g, #k'); console.log( 'any same ? ' + j.anySame(guys) ); ``` ================================================ FILE: documentation/md/collection/bellmanFord.md ================================================ ## Details This function returns an object of the following form: ```js { /* function that computes the shortest path from root node to the argument node (either objects or selector string) */ pathTo: function(node){ /* impl */ }, /* function that computes the shortest distance from root node to argument node (either objects or selector string) */ distanceTo: function(node){ /* impl */ }, /* true/false. If true, pathTo and distanceTo will be undefined */ hasNegativeWeightCycle, /* Array of collections corresponding to the negative weight cycles found (only populated if the findNegativeWeightCycles option is set to true) */ negativeWeightCycles } ``` If no weight function is defined, a constant weight of 1 is used for each edge. The Bellman-Ford algorithm is good at detecting negative weight cycles, but it can not return path or distance results if it finds them. ## Examples ```js var bf = cy.elements().bellmanFord({ root: "#j" }); bf.pathTo('#g').select(); ``` ================================================ FILE: documentation/md/collection/betweennessCentrality.md ================================================ ## Details This function returns an object of the form: ```js { /* returns the betweenness centrality of the specified node */ betweenness: function( node ){ /* impl */ }, /* returns the normalised betweenness centrality of the specified node */ betweennessNormalized: function( node ){ /* impl */ } /* alias : betweennessNormalised() */ } ``` ## Examples ```js var bc = cy.$().bc(); console.log( 'bc of j: ' + bc.betweenness('#j') ); ``` ================================================ FILE: documentation/md/collection/boundingBox.md ================================================ ## Details This function returns a plain object with the fields `x1`, `x2`, `y1`, `y2`, `w`, and `h` defined. An element that does not take up space (e.g. `display: none`) has a bounding box of zero `w` and `h`. The `x1`, `x2`, `y1`, and `y2` values will have no meaning for those zero-area elements. To get the position of a `display: none` node, use [`node.position()`](#node.position) instead. Note that the `includeOverlays` option necessarily includes the dimensions of the body of the element. So using `includeOverlays: true` with `includeNodes: false`, for example, does not make sense. The case where the `includeOverlays` option is only useful in getting the non-overlay dimensions of an element, e.g. `{ includeOverlays: false, includeNodes: true }`. The same applies to the `includeUnderlays` option. ================================================ FILE: documentation/md/collection/breadthFirstSearch.md ================================================ ## Details Note that this function performs a breadth-first search on only the subset of the graph in the calling collection. This function returns an object that contains two collections (`{ path: eles, found: node }`), the node found by the search and the path of the search: * If no node was found, then `found` is empty. * If your handler function returns `false`, then the only the path up to that point is returned. * The path returned includes edges such that if `path[i]` is a node, then `path[i - 1]` is the edge used to get to that node. ## Examples ```js var bfs = cy.elements().bfs({ roots: '#e', visit: function(v, e, u, i, depth){ console.log( 'visit ' + v.id() ); // example of finding desired node if( v.data('weight') > 70 ){ return true; } // example of exiting search early if( v.data('weight') < 0 ){ return false; } }, directed: false }); var path = bfs.path; // path to found node var found = bfs.found; // found node // select the path path.select(); ``` ================================================ FILE: documentation/md/collection/classes.md ================================================ ## Examples Remove all classes: ```js cy.nodes().classes([]); // array cy.nodes().classes(''); // space-separated string ``` Replace classes: ```js cy.nodes().classes(['foo']); // array cy.nodes().classes('foo'); // space-separated string ``` ================================================ FILE: documentation/md/collection/closenessCentrality.md ================================================ ## Details This function directly returns the numerical closeness centrality value for the specified root node. ## Examples ```js console.log( 'cc of j: ' + cy.$().cc({ root: '#j' }) ); ``` ================================================ FILE: documentation/md/collection/closenessCentralityNormalized.md ================================================ ## Details This function returns an object of the form: ```js { /* returns the normalised closeness centrality of the specified node */ closeness: function( node ){ /* impl */ } } ``` ## Examples ```js var ccn = cy.$().ccn(); console.log( 'ccn of j: ' + ccn.closeness('#j') ); ``` ================================================ FILE: documentation/md/collection/codirectedEdges.md ================================================ ## Details Two edges are said to be codirected if they connect the same two nodes in the same direction: The edges have the same source and target. ## Examples ```js cy.$('#je').codirectedEdges(); // only self in this case ``` ================================================ FILE: documentation/md/collection/collection.md ================================================ A collection contains a set of nodes and edges, the set typically being immutable. Calling a function applies the function to all elements in the collection. When reading values from a collection, [`eles.data()`](#collection/data/eles.data) for example, the value of the first element in the collection is returned. For example: ```js var weight = cy.nodes().data("weight"); console.log( cy.nodes()[0].data("weight") + ' == ' + weight ); // weight is the first ele's weight ``` You can ensure that you're reading from the element you want by using a [selector](#selectors) to narrow down the collection to one element (i.e. `eles.size() === 1`) or the [`eles.eq()`](#collection/iteration/eles.eq) function. Note that a collection is immutable by default, meaning that the set of elements within a collection can not be changed. The API returns a new collection with different elements when necessary, instead of mutating the existing collection. This allows the programmer to safely use set theory operations on collections, use collections functionally, and so on. Note that because a collection is just a list of elements, it is relatively inexpensive to create new collections. Also note that collections are iterable for modern browsers which support the [iteration protocols](https://exploringjs.com/es6/ch_iteration.html). This enables the use of features such as the spread operator, for-of loops, and destructuring. While collections may be accessed similarly to arrays via indices, they may also be used like sets [for formation](#collection/building--filtering) (e.g. `eles1.union(eles2)`) and [for membership testing](#collection/comparison) (e.g. `eles.has(node)`). ================================================ FILE: documentation/md/collection/commonAncestors.md ================================================ ## Details You can get the closest common ancestor via `nodes.commonAncestors().first()` and the farthest via `nodes.commonAncestors().last()`, because the common ancestors are in descending order of closeness. ================================================ FILE: documentation/md/collection/compoundNodes.md ================================================ These functions apply to [compound graphs](#notation/compound-nodes). ================================================ FILE: documentation/md/collection/connectedEdges.md ================================================ ## Examples ```js var j = cy.$('#j'); j.connectedEdges(); ``` ================================================ FILE: documentation/md/collection/connectedNodes.md ================================================ ## Examples ```js var je = cy.$('#je'); je.connectedNodes(); ``` ================================================ FILE: documentation/md/collection/contains.md ================================================ ## Examples ```js cy.$('#j, #e').contains( cy.$('#j') ); // true ``` ================================================ FILE: documentation/md/collection/controlPoints.md ================================================ ## Details Each bezier edge consists of one or more quadratic bezier curves. A [quadratic bezier curve](https://en.wikipedia.org/wiki/B%C3%A9zier_curve#Quadratic_B%C3%A9zier_curves) is specified by three points. Those points include the start point (P0), the centre control point (P1), and the end point (P2). Traditionally, all three points are called "control points", but only the centre control point (P1) is referred to as the "control point" within this documentation for brevity and clarity. This function returns the centre control point, as other points are available by functions like `edge.targetEndpoint()`. The number of returned points for each curve style is as follows: - `curve-style: bezier` (simple edge) : 1 point for a single quadratic bezier - `curve-style: bezier` (loop) : 2 points for two quadratic beziers - `curve-style: unbundled-bezier` : n points for n quadratic beziers, as the number of control points is defined by [`control-point-distances` and `control-point-weights`](#style/unbundled-bezier-edges) Notes: - While the control points may be specified relatively in the CSS, this function returns the absolute [model positions](#notation/position) of the control points. The points are specified in the order of source-to-target direction. - This function works for bundled beziers, but it is not applicable to the middle, straight-line edge in the bundle. - For an unbundled bezier edge, the point that joins two successive bezier curves in the series is given by the midpoint (mean) of the two control points. That join point specifies P2 for the first bezier, and it specifies P0 for the second bezier. ================================================ FILE: documentation/md/collection/data.md ================================================ ## Details Only JSON-serialisable data may be put in `ele.data()`. For temporary data or non-serialisable data, use [`ele.scratch()`](#ele.scratch). The following fields are normally immutable: * `id` : The `id` field is used to uniquely identify an element in the graph. * `source` & `target` : These fields define an edge's relationship to nodes, and this relationship can not be changed after creation. * `parent` : The `parent` field defines the parent (compound) node. In order to modify those fields, which alter graph topology, you must use [`ele.move()`](#ele.move). ## Examples ```js var j = cy.$('#j'); // set the weight field in data j.data('weight', 60); // set several fields at once j.data({ name: 'Jerry Jerry Dingleberry', height: 176 }); var weight = j.data('weight'); ``` ================================================ FILE: documentation/md/collection/degree.md ================================================ ## Details *Degree* : For a node, the degree is the number of edge connections it has. Each time a node is referenced as `source` or `target` of an edge in the graph, that counts as an edge connection. *Indegree* : For a node, the indegree is the number of incoming edge connections it has. Each time a node is referred to as `target` of an edge in the graph, that counts as an incoming edge connection. *Outdegree* : For a node, the outdegree is the number of outgoing edge connections it has. Each time a node is referred to as `source` of an edge in the graph, that counts as an outgoing edge connection. *Total degree* : For a set of nodes, the total degree is the total number of edge connections to nodes in the set. ================================================ FILE: documentation/md/collection/degreeCentrality.md ================================================ ## Details For `options.directed: false`, this function returns an object of the following form: ```js { degree /* the degree centrality of the root node */ } ``` For `options.directed: true`, this function returns an object of the following form: ```js { indegree, /* the indegree centrality of the root node */ outdegree /* the outdegree centrality of the root node */ } ``` ## Examples ```js console.log( 'dc of j: ' + cy.$().dc({ root: '#j' }).degree ); ``` ================================================ FILE: documentation/md/collection/degreeCentralityNormalized.md ================================================ ## Details For `options.directed: false`, this function returns an object of the following form: ```js { /* the normalised degree centrality of the specified node */ degree: function( node ){ /* impl */ } } ``` For `options.directed: true`, this function returns an object of the following form: ```js { /* the normalised indegree centrality of the specified node */ indegree: function( node ){ /* impl */ }, /* the normalised outdegree centrality of the specified node */ outdegree: function( node ){ /* impl */ } } ``` ## Examples ```js var dcn = cy.$().dcn(); console.log( 'dcn of j: ' + dcn.degree('#j') ); ``` ================================================ FILE: documentation/md/collection/delay.md ================================================ ## Examples ```js cy.nodes() .animate({ style: { 'background-color': 'blue' } }, { duration: 1000 }) .delay( 1000 ) .animate({ style: { 'background-color': 'yellow' } }) ; console.log('Animating nodes...'); ``` ================================================ FILE: documentation/md/collection/depthFirstSearch.md ================================================ ## Details Note that this function performs a depth-first search on only the subset of the graph in the calling collection. This function returns an object that contains two collections (`{ path: eles, found: node }`), the node found by the search and the path of the search: * If no node was found, then `found` is empty. * If your handler function returns `false`, then the only the path up to that point is returned. * The path returned includes edges such that if `path[i]` is a node, then `path[i - 1]` is the edge used to get to that node. ## Examples ```js var dfs = cy.elements().dfs({ roots: '#e', visit: function(v, e, u, i, depth){ console.log( 'visit ' + v.id() ); // example of finding desired node if( v.data('weight') > 70 ){ return true; } // example of exiting search early if( v.data('weight') < 0 ){ return false; } }, directed: false }); var path = dfs.path; // path to found node var found = dfs.found; // found node // select the path path.select(); ``` ================================================ FILE: documentation/md/collection/diff.md ================================================ ## Details This function returns a plain object of the form `{ left, right, both }` where * `left` is the set of elements only in the calling (i.e. left) collection, * `right` is the set of elements only in the passed (i.e. right) collection, and * `both` is the set of elements in both collections. ## Examples ```js var diff = cy.$('#j, #e, #k').diff('#j, #g'); var getNodeId = function( n ){ return n.id() }; console.log( 'left: ' + diff.left.map( getNodeId ).join(', ') ); console.log( 'right: ' + diff.right.map( getNodeId ).join(', ') ); console.log( 'both: ' + diff.both.map( getNodeId ).join(', ') ); ``` ================================================ FILE: documentation/md/collection/difference.md ================================================ ## Examples With a collection: ```js var j = cy.$('#j'); var nodes = cy.nodes(); nodes.difference(j); ``` With a selector: ```js cy.nodes().difference('#j'); ``` ================================================ FILE: documentation/md/collection/dijkstra.md ================================================ ## Details Note that this function performs Dijkstra's algorithm on only the subset of the graph in the calling collection. This function returns an object of the following form: ```js { distanceTo: function( node ){ /* impl */ } pathTo: function( node ){ /* impl */ } } ``` `distanceTo(node)` returns the distance from the source node to `node`, and `pathTo(node)` returns a collection containing the shortest path from the source node to `node`. The path starts with the source node and includes the edges between the nodes in the path such that if `pathTo(node)[i]` is an edge, then `pathTo(node)[i-1]` is the previous node in the path and `pathTo(node)[i+1]` is the next node in the path. If no weight function is defined, a constant weight of 1 is used for each edge. ## Examples ```js var dijkstra = cy.elements().dijkstra('#e', function(edge){ return edge.data('weight'); }); var pathToJ = dijkstra.pathTo( cy.$('#j') ); var distToJ = dijkstra.distanceTo( cy.$('#j') ); ``` ================================================ FILE: documentation/md/collection/edgesTo.md ================================================ ## Examples ```js var j = cy.$('#j'); var e = cy.$('#e'); j.edgesTo(e); ``` ================================================ FILE: documentation/md/collection/edgesWith.md ================================================ ## Examples ```js var j = cy.$('#j'); var e = cy.$('#e'); j.edgesWith(e); ``` ================================================ FILE: documentation/md/collection/emit.md ================================================ ## Examples ```js var j = cy.$('#j'); j.on('tap', function(){ console.log('tap!!'); }); j.emit('tap'); // tap!! ``` ================================================ FILE: documentation/md/collection/eq.md ================================================ ## Details You may use `eles[i]` in place of `eles.eq(i)` as a more performant alternative. ================================================ FILE: documentation/md/collection/every.md ================================================ ## Examples ```js var jAndE = cy.$('#j, #e'); var everyHeavierThan50 = jAndE.every(function( ele ){ return ele.data('weight') > 50; }); console.log( 'every heavier than 50 ? ' + everyHeavierThan50 ); ``` ================================================ FILE: documentation/md/collection/filter.md ================================================ ## Examples With a selector: ```js cy.nodes().filter('[weight > 50]'); ``` With a function: ```js cy.nodes().filter(function( ele ){ return ele.data('weight') > 50; }); ``` ================================================ FILE: documentation/md/collection/flashClass.md ================================================ ## Examples ```js cy.$('#j, #e').flashClass('foo', 1000); ``` ================================================ FILE: documentation/md/collection/floydWarshall.md ================================================ ## Details This function returns an object of the following form: ```js { /* function that computes the shortest path between 2 nodes (either objects or selector strings) */ path: function( fromNode, toNode ){ /* impl */ }, /* function that computes the shortest distance between 2 nodes (either objects or selector strings) */ distance: function( fromNode, toNode ){ /* impl */ } } ``` If no weight function is defined, a constant weight of 1 is used for each edge. ## Examples ```js var fw = cy.elements().floydWarshall(); fw.path('#k', '#g').select(); ``` ================================================ FILE: documentation/md/collection/forEach.md ================================================ ## Details This function behaves like `Array.prototype.forEach()` with minor changes for convenience: * You can exit the iteration early by returning `false` in the iterating function. The `Array.prototype.forEach()` implementation does not support this, but it is included anyway on account of its utility. ## Examples ```js // print all the ids of the nodes in the graph cy.nodes().forEach(function( ele ){ console.log( ele.id() ); }); ``` ================================================ FILE: documentation/md/collection/fuzzyCMeans.md ================================================ ## Details Note that this function performs fuzzy c-means clustering on only the subset of the graph in the calling collection. This function returns an object of the following format: ```js { // The resultant clusters clusters: [ /* cluster0, cluster1, ... */ ], // A two-dimensional array containing a partition matrix // degreeOfMembership[i][j] indicates the degree to which nodes[i] belongs to clusters[j] degreeOfMembership: [ /* row0, row1, ... */ ] } ``` ## Examples ```js var clusters = cy.elements().fuzzyCMeans({ k: 2, attributes: [ function( node ){ return edge.data('weight'); } ] }); ``` ================================================ FILE: documentation/md/collection/grabify.md ================================================ ## Examples ```js cy.$('#j').grabify(); ``` ================================================ FILE: documentation/md/collection/group.md ================================================ ## Details The group strings are `'nodes'` for nodes and `'edges'` for edges. In general, you should be using `ele.isEdge()` and `ele.isNode()` instead of `ele.group()`. ================================================ FILE: documentation/md/collection/hasClass.md ================================================ ## Examples ```js console.log( 'j has class `foo` : ' + cy.$('#j').hasClass('foo') ); ``` ================================================ FILE: documentation/md/collection/hierarchicalClustering.md ================================================ ## Details Note that this function performs hierarchical clustering on only the subset of the graph in the calling collection. Hierarchical clustering does not normally take into account the topology of the graph. This function returns an array, containing collections. Each collection in the array is a cluster found by the algorithm. ## Examples ```js var clusters = cy.elements().hca({ mode: 'threshold', threshold: 25, attributes: [ function( node ){ return node.data('weight'); } ] }); ``` ================================================ FILE: documentation/md/collection/hierholzer.md ================================================ ## Details Note that this function performs Hierholzer's algorithm on only the subset of the graph in the calling collection. This function returns an object of the following form: ```js { found, /* true or false */ trail /* Ordered collection of elements in the Eulerian trail or cycle, if found */ } ``` Regarding optional options: * If no root node is provided, the first node in the collection will be taken as the starting node in the algorithm. * The graph is assumed to be undirected unless specified otherwise. ## Examples ```js var hierholzer = cy.elements().hierholzer({ root: "#k", directed: true }); hierholzer.trail.select(); ``` ================================================ FILE: documentation/md/collection/hopcroftTarjanBiconnected.md ================================================ ## Details Note that this function identifies biconnected components and cut vertices only within the subset of the graph in the calling collection. This function returns an object of the following form: ```js { cut, /* Collection of nodes identified as cut vertices */ components /* An array of collections corresponding to each biconnected component */ } ``` ## Examples ```js var ht = cy.elements().htbc(); ht.components[0].select(); ``` ================================================ FILE: documentation/md/collection/incomers.md ================================================ ## Examples Get incomers of `j`: ```js cy.$('#j').incomers(); ``` ================================================ FILE: documentation/md/collection/intersection.md ================================================ ## Examples ```js var jNhd = cy.$('#j').neighborhood(); var eNhd = cy.$('#e').neighborhood(); jNhd.intersection( eNhd ); ``` ================================================ FILE: documentation/md/collection/is.md ================================================ ## Examples ```js var j = cy.$('#j'); console.log( 'j has weight > 50 ? ' + j.is('[weight > 50]') ); ``` ================================================ FILE: documentation/md/collection/json.md ================================================ ## Details This function returns the [plain JSON representation](#notation/elements-json) of the element, the same format which is used at initialisation, in [`cy.add()`](#core/graph-manipulation/cy.add), etc. This function can also be used to set the element's state using the [plain JSON representation](#notation/elements-json) of the element. Each field specified in `ele.json( eleJson )` is diffed against the element's current state, the element is mutated accordingly, and the appropriate events are emitted. This can be used to declaratively modify elements. Note that it is much faster to simply specify the diff-patch objects to `ele.json()`, e.g. `ele.json({ data: { foo: 'bar' } })` only updates `foo` in `data`. This avoids the cost of diffs on unchanged fields, which is useful when making many calls to `ele.json()` for larger graphs. ## Examples Print the JSON for an element: ```js console.log( cy.$('#j').json() ); ``` Make an element selected: ```js cy.$('#j').json({ selected: true }); ``` ================================================ FILE: documentation/md/collection/jsons.md ================================================ ## Details This function returns the [plain JSON representation](#notation/elements-json) of all elements in the collection, the same format which is used at initialisation, in [`cy.add()`](#core/graph-manipulation/cy.add), etc. ## Examples ```js console.log( cy.elements().jsons() ); ``` ================================================ FILE: documentation/md/collection/kMeans.md ================================================ ## Details Note that this function performs k-means clustering on only the subset of the graph in the calling collection. K-means does not normally take into consideration the topology of the graph. This function returns an array, containing collections. Each collection in the array is a cluster found by the algorithm. One of the major differences between the k-means and k-medoids algorithms is the manner in which the cluster centres are initialized. In k-means, the cluster centres (centroids) are vectors with elements initialised to random values within each dimension's range. In k-medoids, the cluster centres (medoids) are random nodes from the data set. The other is that the k-means algorithm determines new cluster centres by taking the average of all the nodes within that cluster, whereas k-medoids selects the node with the lowest configuration cost as the new cluster centre. ## Examples ```js var clusters = cy.elements().kMeans({ k: 2, attributes: [ function( node ){ return edge.data('weight'); } ] }); ``` ================================================ FILE: documentation/md/collection/kMedoids.md ================================================ ## Details Note that this function performs k-mediods clustering on only the subset of the graph in the calling collection. K-medoids does not normally take into consideration topology. This function returns an array, containing collections. Each collection in the array is a cluster found by the algorithm. One of the major differences between the k-means and k-medoids algorithms is the manner in which the cluster centres are initialized. In k-means, the cluster centres (centroids) are vectors with elements initialised to random values within each dimension's range. In k-medoids, the cluster centres (medoids) are random nodes from the data set. The other is that the k-means algorithm determines new cluster centres by taking the average of all the nodes within that cluster, whereas k-medoids selects the node with the lowest configuration cost as the new cluster centre. ## Examples ```js var clusters = cy.elements().kMediods({ k: 2, attributes: [ function( node ){ return edge.data('weight'); } ] }); ``` ================================================ FILE: documentation/md/collection/kargerStein.md ================================================ ## Details This function returns an object of the following form: ```js { /* Collection of edges that are in the cut */ cut, /* Array of collections corresponding to the components containing each disjoint subset of nodes defined by the cut */ components } ``` ## Examples ```js var ks = cy.elements().kargerStein(); ks.cut.select(); ``` ================================================ FILE: documentation/md/collection/kruskal.md ================================================ ## Details Note that this function runs Kruskal's algorithm on the subset of the graph in the calling collection. ## Examples ```js cy.elements().kruskal(); ``` ================================================ FILE: documentation/md/collection/layout.md ================================================ This function is useful for running a layout on a subset of the elements in the graph, perhaps in parallel to other layouts. You must specify `options.name` with the name of the layout you wish to use. This function creates and returns a [layout object](#layouts). You may want to keep a reference to the layout for more advanced usecases, such as running multiple layouts simultaneously. Note that you must call [`layout.run()`](#layouts/layout-manipulation/layout.run) in order for it to affect the graph. ## Examples Assign random positions to all nodes: ```js var layout = cy.elements().layout({ name: 'random' }); layout.run(); ``` Apply a circle layout to only the shown elements: ```js var layout = cy.elements().not(':invisible, :transparent').layout({ name: 'circle' }); layout.run(); ``` ================================================ FILE: documentation/md/collection/layoutDimensions.md ================================================ This function is used to retrieve the width and height of the bounding box of a node. The way the width and height are calculated is affected by the `options` object. This function returns an object containing the width and height of the calculated bounding box under the `w` and `h` keys respectively. It can be used as a direct replacement for the `boundingBox()` function assuming only `w` and `h` values are needed. ```js var options = { nodeDimensionsIncludeLabels: true // boolean which changes whether label dimensions are included when calculating node dimensions, default true }; var dims = cy.nodes().first().layoutDimensions( options ); ``` ================================================ FILE: documentation/md/collection/layoutPositions.md ================================================ This function is intended to be used only by layout extensions. Your app should not call this function directly. This function is called by discrete (synchronous) layouts to update the graph with new node positions. A discrete layout is only responsible for calculating new node positions. Setting these positions and performing animations, modifying the viewport, changing zoom level, etc. are handled by `layoutPositions()` --- which is called by each layout at the end of its `run()` method. The `options` object is passed to `layoutPositions()` when called by a layout extension and consists of many of the common properties shared between layouts: ```js var options = { animate: false, // whether to animate changes to the layout animationDuration: 500, // duration of animation in ms, if enabled animationEasing: undefined, // easing of animation, if enabled animateFilter: function ( node, i ){ return true; }, // a function that determines whether the node should be animated. // All nodes animated by default for `animate:true`. Non-animated nodes are positioned immediately when the layout starts. eles: someCollection, // collection of elements involved in the layout; set by cy.layout() or eles.layout() fit: true, // whether to fit the viewport to the graph padding: 30, // padding to leave between graph and viewport pan: undefined, // pan the graph to the provided position, given as { x, y } ready: undefined, // callback for the layoutready event stop: undefined, // callback for the layoutstop event spacingFactor: 1, // a positive value which adjusts spacing between nodes (>1 means greater than usual spacing) transform: function (node, position ){ return position; } // transform a given node position. Useful for changing flow direction in discrete layouts zoom: undefined // zoom level as a positive number to set after animation } ``` Note that if `fit` is true, it will override any values provided in `pan` or `zoom`. ================================================ FILE: documentation/md/collection/lock.md ================================================ ## Examples ```js cy.$('#j').lock(); ``` ================================================ FILE: documentation/md/collection/map.md ================================================ ## Examples Get an array of node weights: ```js var weights = cy.nodes().map(function( ele ){ return ele.data('weight'); }); console.log(weights); ``` ================================================ FILE: documentation/md/collection/markovClustering.md ================================================ ## Details Note that this function performs Markov clustering on only the subset of the graph in the calling collection. Markov clustering uses the topology of the graph and the specified edge attributes to determine clusters. This function returns an array, containing collections. Each collection in the array is a cluster found by the Markov clustering algorithm. ## Examples ```js var clusters = cy.elements().markovClustering({ attributes: [ function( edge ){ return edge.data('closeness'); } ] }); ``` ================================================ FILE: documentation/md/collection/max.md ================================================ ## Details This function returns an object with the following fields: * `value` : The maximum value found. * `ele` : The element that corresponds to the maximum value. ## Examples Find the node with the maximum weight: ```js var max = cy.nodes().max(function(){ return this.data('weight'); }); console.log( 'max val: ' + max.value + ' for element ' + max.ele.id() ); ``` ================================================ FILE: documentation/md/collection/merge.md ================================================ ## Details This function modifies the calling collection instead of returning a new one. Use of this function should be considered for performance in some cases, but otherwise should be avoided. Consider using `eles.union()` instead. Use this function only on new collections that you create yourself, using `cy.collection()`. This ensures that you do not unintentionally modify another collection. ## Examples With a collection: ```js var col = cy.collection(); // new, empty collection var j = cy.$('#j'); var e = cy.$('#e'); col.merge( j ).merge( e ); ``` With a selector: ```js var col = cy.collection(); // new, empty collection col.merge('#j').merge('#e'); ``` ================================================ FILE: documentation/md/collection/midpoint.md ================================================ ## Details The midpoint is, by default, where the edge's label is centred. It is also the position towards which mid arrows point. For [`curve-style: unbundled-bezier`](#style/unbundled-bezier-edges) edges, the midpoint is the middle extremum if the number of control points is odd. For an even number of control points, the midpoint is where the two middle-most control points meet. This is the middle inflection point for bilaterally symmetric or skew symmetric edges, for example. For [`curve-style: segments`](#style/segments-edges) edges, the midpoint is the middle segment point if the number of segment points is odd. For an even number of segment points, the overall midpoint is the midpoint of the middle-most line segment (i.e. the mean of the middle two segment points). ================================================ FILE: documentation/md/collection/min.md ================================================ ## Details This function returns an object with the following fields: * `value` : The minimum value found. * `ele` : The element that corresponds to the minimum value. ## Examples Find the node with the minimum weight: ```js var min = cy.nodes().min(function(){ return this.data('weight'); }); console.log( 'min val: ' + min.value + ' for element ' + min.ele.id() ); ``` ================================================ FILE: documentation/md/collection/move.md ================================================ ## Details This function moves the elements in-place, so no `remove` or `add` events are generated. A `move` event is emitted on the moved elements. ## Examples Move an edge: ```js var ej = cy.$('#ej'); ej = ej.move({ target: 'g' }); ``` ================================================ FILE: documentation/md/collection/neighborhood.md ================================================ ## Details The neighbourhood returned by this function is a bit different than the traditional definition of a "neighbourhood": This returned neighbourhood includes the edges connecting the collection to the neighbourhood. This gives you more flexibility. An **open neighbourhood** is one that **does not** include the original set of elements. If unspecified, a neighbourhood is open by default. A **closed neighbourhood** is one that **does** include the original set of elements. ## Examples ```js cy.$('#j').neighborhood(); ``` ================================================ FILE: documentation/md/collection/numericStyle.md ================================================ ## Details - Sizes (e.g. `width`) are in [model](#notation/position) pixels. - Times (e.g. `transition-duration`) are in milliseconds. - Angles (e.g. `text-rotation`) are in radians. - Plain numbers (e.g. `opacity`) are unitless. - Colours (e.g. `background-color`) are in `[r, g, b]` arrays with values on [0, 255]. - Lists of numbers (e.g. `edge-distances`) are in arrays. - Percents range on [0, 1] so that they are useful for calculations. - Some properties can not have preferred units defined, like `background-position-x` --- it could be in `px` or `%`, for instance. A property like this is returned in the units as specified in the element's style (e.g. the stylesheet). In this case, the units can be returned explicitly via `ele.numericStyleUnits()`. - Values that can not be expressed as numbers (e.g. `label`) are returned as a string. ## Examples `node.numericStyle('width')` would return `30` for a 30px wide node, even if the node was specified as `width: 3em`. ================================================ FILE: documentation/md/collection/numericStyleUnits.md ================================================ ## Details - `px` for pixels - `em` for ems - `%` for percent - `rad` for radians - `s` for seconds - `ms` for milliseconds ================================================ FILE: documentation/md/collection/on.md ================================================ ## Details Events are bound only to the currently existing elements; they must exist at the time your code makes the call to `eles.on()`. Alternatively, use core event handlers (`cy.on()`) to attach event handlers. ## Examples ```js cy.$('#j').on('tap', function(evt){ console.log( 'tap ' + evt.target.id() ); }); ``` ================================================ FILE: documentation/md/collection/once.md ================================================ ## Details For each event specified to this function, the handler function is triggered once. This is useful for one-off events that occur on just one element in the calling collection. ## Examples ```js cy.nodes().once('click', function(e){ var ele = e.target; console.log('clicked ' + ele.id()); }); ``` ================================================ FILE: documentation/md/collection/one.md ================================================ ## Details For each event specified to this function, the handler function is triggered once per element. This is useful for one-off events that occur on each element in the calling collection once. This function is a bit more complicated for compound nodes where a delegate selector has been specified: Note that the handler is called once per element in the *calling collection*, and the handler is triggered by matching descendant elements. ## Examples ```js cy.$('node').one('tap', function(e){ var ele = e.target; console.log('tapped ' + ele.id()); }); ``` ================================================ FILE: documentation/md/collection/outgoers.md ================================================ ## Examples Get outgoers of `j`: ```js cy.$('#j').outgoers(); ``` ================================================ FILE: documentation/md/collection/pageRank.md ================================================ ## Details This function returns an object of the following form: ```js { /* function that computes the rank of a given node (either object or selector string) */ rank: function( node ){ /* impl */ } } ``` ## Examples ```js var pr = cy.elements().pageRank(); console.log('g rank: ' + pr.rank('#g')); ``` ================================================ FILE: documentation/md/collection/panify.md ================================================ ## Examples ```js cy.$('#j').panify(); ``` ================================================ FILE: documentation/md/collection/pannable.md ================================================ ## Description A pannable element allows passthrough panning: The user can pan the graph when dragging on the element. Thus, a pannable element is necessarily ungrabbable. By default, an edge is pannable and a node is not pannable. ================================================ FILE: documentation/md/collection/parallelEdges.md ================================================ ## Details Two edges are said to be parallel if they connect the same two nodes. Any two parallel edges may connect nodes in the same direction, in which case the edges share the same source and target. They may alternatively connect nodes in the opposite direction, in which case the source and target are reversed in the second edge. ## Examples ```js cy.$('#je').parallelEdges(); ``` ================================================ FILE: documentation/md/collection/position.md ================================================ ## Details A [position](#notation/position) has two fields, `x` and `y`, that can take on numerical values. ## Examples ```js // get x for j var x = cy.$('#j').position('x'); // get the whole position for e var pos = cy.$('#e').position(); // set y for j cy.$('#j').position('y', 100); // set multiple cy.$('#e').position({ x: 123, y: 200 }); ``` ================================================ FILE: documentation/md/collection/positions.md ================================================ ## Examples ```js cy.nodes().positions(function( node, i ){ return { x: i * 100, y: 100 }; }); ``` ================================================ FILE: documentation/md/collection/predecessors.md ================================================ ## Examples Get predecessors of `j`: ```js cy.$('#j').predecessors(); ``` ================================================ FILE: documentation/md/collection/promiseOn.md ================================================ ## Examples ```js cy.$('#j').pon('tap').then(function( event ){ console.log('tap promise fulfilled'); }); ``` ================================================ FILE: documentation/md/collection/reduce.md ================================================ ## Examples Join the node IDs into a comma-separated string: ```js var initialValue = null; var fn = function( prevVal, ele, i, eles ){ if( prevVal ){ return prevVal + ',' + ele.id(); } else { return ele.id(); } }; var ids = cy.nodes().reduce( fn, initialValue ); console.log( ids ); ``` ================================================ FILE: documentation/md/collection/remove.md ================================================ ## Details This function removes the calling elements from the graph. The elements are not deleted --- they still exist in memory --- but they are no longer in the graph. A removed element just exists to be added back to its originating core instance or some other core instance. It does not make sense to call functions, other than `eles.restore()`, on a removed element. A removed element merely exists in this limbo state so you can later add it back to some core instance. ## Examples Remove selected elements: ```js cy.$(':selected').remove(); ``` ================================================ FILE: documentation/md/collection/removeClass.md ================================================ ## Examples ```js cy.$('#j, #e').removeClass('foo'); ``` ================================================ FILE: documentation/md/collection/removeCss.md ================================================ ================================================ FILE: documentation/md/collection/removeData.md ================================================ ## Details Using `ele.removeData()` sets the specified fields to `undefined`. This allows you to use a meaningful `null` value in your element data. The following data fields are normally immutable, and so they can not be removed: * `id` : The `id` field is used to uniquely identify an element in the graph. * `source` & `target` : These fields define an edge's relationship to nodes, and this relationship can not be changed after creation. * `parent` : The `parent` field defines the parent (compound) node. To modify the topology of the graph without adding or removing elements, you must use [`ele.move()`](#ele.move). Even so, only `parent` may be removed by `ele.move()`. An edge always requires a valid source and target. ================================================ FILE: documentation/md/collection/removeListener.md ================================================ ## Examples ```js var j = cy.$('#j'); var handler = function(){ console.log('tap') }; // listen j.on('tap', handler); // listen with some other handler j.on('tap', function(){ console.log('some other handler'); }); j.emit('tap'); // 'tap' & 'some other handler' // remove the renferenced listener handler j.removeListener('tap', handler); j.emit('tap'); // some other handler // remove all tap listener handlers (including unnamed handler) j.removeListener('tap'); ``` ================================================ FILE: documentation/md/collection/removeScratch.md ================================================ Note that `ele.removeScratch()` sets the scratchpad object for the specified namespace to `undefined`. This allows you to use meaningful `null` values. ================================================ FILE: documentation/md/collection/renderedCss.md ================================================ Note that this function has the alias `ele.renderedStyle()`, which is interchangeable with `ele.renderedCss()`. ================================================ FILE: documentation/md/collection/restore.md ================================================ ## Details This function puts back elements in the graph that have been removed. It will do nothing if the elements are already in the graph. An element can not be restored if its ID is the same as an element already in the graph. You should specify an alternative ID for the element you want to add in that case. ## Examples ```js // remove selected elements var eles = cy.$(':selected').remove(); // ... then some time later put them back eles.restore(); ``` ================================================ FILE: documentation/md/collection/same.md ================================================ ## Examples ```js var heavies = cy.$('node[weight > 60]'); var guys = cy.$('#j, #g, #k'); console.log( 'same ? ' + heavies.same(guys) ); ``` ================================================ FILE: documentation/md/collection/scratch.md ================================================ ## Details This function is useful for storing temporary, possibly non-JSON data. Extensions --- like layouts, renderers, and so on --- use `ele.scratch()` namespaced on their registered name. For example, an extension named `foo` would use the namespace `'foo'`. If you want to use this function for your own app-level data, you can prefix the namespaces you use by underscore to avoid collisions with extensions. For example, using `ele.scratch('_foo')` in your app will avoid collisions with an extension named `foo`. This function is useful for associating non-JSON data to an element. Whereas data stored via `ele.data()` is included by `ele.json()`, data stored by `ele.scratch()` is not. This makes it easy to temporarily store unserialisable data. ## Examples ```js var j = cy.$('#j'); // entire scratchpad: // be careful, since you could clobber over someone else's namespace or forget to use one at all! var fooScratch = j.scratch()._foo = {}; // ... now you can modify fooScratch all you want // set namespaced scratchpad to ele: // safer, recommended var fooScratch = j.scratch('_foo', {}); // ... now you can modify fooScratch all you want // get namespaced scratchpad from ele (assumes set before) var fooScratch = j.scratch('_foo'); // ... now you can modify fooScratch all you want ``` ================================================ FILE: documentation/md/collection/segmentPoints.md ================================================ ## Details While the segment points may be specified relatively in the stylesheet, this function returns the absolute [model positions](#notation/position) of the segment points. The points are specified in the order of source-to-target direction. ================================================ FILE: documentation/md/collection/select.md ================================================ ## Examples ```js cy.$('#j').select(); ``` ================================================ FILE: documentation/md/collection/selectify.md ================================================ ## Examples ```js cy.$('#j').selectify(); ``` ================================================ FILE: documentation/md/collection/shift.md ================================================ ## Examples ```js cy.$('#j').shift({ x: 10, y: 20 }); ``` ================================================ FILE: documentation/md/collection/size.md ================================================ ## Details Note that as an alternative, you may read `eles.length` instead of `eles.size()`. The two are interchangeable. ================================================ FILE: documentation/md/collection/some.md ================================================ ## Examples ```js var jAndE = cy.$('#j, #e'); var someHeavierThan50 = jAndE.some(function( ele ){ return ele.data('weight') > 50; }); console.log( 'some heavier than 50 ? ' + someHeavierThan50 ); ``` ================================================ FILE: documentation/md/collection/sort.md ================================================ ## Examples Get collection of nodes in order of increasing weight: ```js var nodes = cy.nodes().sort(function( a, b ){ return a.data('weight') - b.data('weight'); }); // show order via animations var duration = 1000; nodes.removeStyle().forEach(function( node, i ){ node.delay( i * duration ).animate({ style: { 'border-width': 4, 'border-color': 'green' } }, { duration: duration }); }); console.log('Animating nodes to show sorted order'); ``` ================================================ FILE: documentation/md/collection/source.md ================================================ ## Examples ```js var je = cy.$('#je'); je.source(); ``` ================================================ FILE: documentation/md/collection/sources.md ================================================ ## Examples ```js var edges = cy.$('#je, #kg'); edges.sources(); ``` ================================================ FILE: documentation/md/collection/stop.md ================================================ ## Examples ```js cy.nodes().animate({ style: { 'background-color': 'cyan' } }, { duration: 5000, complete: function(){ console.log('Animation complete'); } }); console.log('Animating nodes...'); setTimeout(function(){ console.log('Stopping nodes animation'); cy.nodes().stop(); }, 2500); ``` ================================================ FILE: documentation/md/collection/style.md ================================================ ## Details You should use this function very sparingly for setting: - There are very few valid usecases for setting with `ele.style()`. - It *overrides* the style of an element, despite the state and classes that it has. - In general, it's much better to specify a better stylesheet at initialisation that reflects your application state rather than programmatically modifying style. - You can not serialise or deserialise overridden style via `ele.json()`. Only [defined visual style properties](#style) are supported. If you would like to remove a particular overridden style property, you can set `null` or `''` (the empty string) to it. ================================================ FILE: documentation/md/collection/successors.md ================================================ ## Examples Get successors of `j`: ```js cy.$('#j').successors(); ``` ================================================ FILE: documentation/md/collection/symmetricDifference.md ================================================ ## Examples ```js cy.$('#j, #e, #k').symdiff('#j, #g'); ``` ================================================ FILE: documentation/md/collection/target.md ================================================ ## Examples ```js var je = cy.$('#je'); je.target(); ``` ================================================ FILE: documentation/md/collection/targets.md ================================================ ## Examples ```js var edges = cy.$('#je, #kg'); edges.targets(); ``` ================================================ FILE: documentation/md/collection/tarjanStronglyConnected.md ================================================ ## Details Note that this function identifies strongly connected components only within the subset of the graph in the calling collection. This function returns an object of the following form: ```js { cut, /* Collection of edges which adjoin pairs of strongly connected components */ components /* Array of collections corresponding to each strongly connected component */ } ``` ## Examples ```js var tsc = cy.elements().tarjanStronglyConnected(); tsc.components[0].select(); ``` ================================================ FILE: documentation/md/collection/toggleClass.md ================================================ ## Examples Toggle: ```js cy.$('#j, #e').toggleClass('foo'); ``` Toggle on: ```js cy.$('#j, #e').toggleClass('foo', true); ``` Toggle off: ```js cy.$('#j, #e').toggleClass('foo', false); ``` ================================================ FILE: documentation/md/collection/ungrabify.md ================================================ ## Examples ```js cy.$('#j').ungrabify(); ``` ================================================ FILE: documentation/md/collection/union.md ================================================ ## Examples With a collection: ```js var j = cy.$('#j'); var e = cy.$('#e'); j.union(e); ``` With a selector: ```js cy.$('#j').union('#e'); ``` ================================================ FILE: documentation/md/collection/unlock.md ================================================ ## Examples ```js cy.$('#j').unlock(); ``` ================================================ FILE: documentation/md/collection/unmerge.md ================================================ ## Details This function modifies the calling collection instead of returning a new one. Use of this function should be considered for performance in some cases, but otherwise should be avoided. Consider using `eles.filter()` or `eles.remove()` instead. Use this function only on new collections that you create yourself, using `cy.collection()`. This ensures that you do not unintentionally modify another collection. ## Examples With a collection: ```js var col = cy.collection(); // new, empty collection var e = cy.$('#e'); col.merge( cy.nodes() ); col.unmerge( e ); ``` With a selector: ```js var col = cy.collection(); // new, empty collection col.merge( cy.nodes() ); col.unmerge('#e'); ``` ================================================ FILE: documentation/md/collection/unpanify.md ================================================ ## Examples ```js cy.$('#j').unpanify(); ``` ================================================ FILE: documentation/md/collection/unselect.md ================================================ ## Examples ```js cy.$('#j').unselect(); ``` ================================================ FILE: documentation/md/collection/unselectify.md ================================================ ## Examples ```js cy.$('#j').unselectify(); ``` ================================================ FILE: documentation/md/core/add.md ================================================ ## Details If plain element objects are used, then [the same format used at initialisation](#core/initialisation) must be followed. If a collection of existing elements is specified to a different core instance, then copies of those elements are added, which allows for elements to be effectively transferred between instances of Cytoscape.js. ## Examples Add a node from a plain object. ```js cy.add({ group: 'nodes', data: { weight: 75 }, position: { x: 200, y: 200 } }); ``` Add nodes and edges to the graph as plain objects: ```js // can use reference to eles later var eles = cy.add([ { group: 'nodes', data: { id: 'n0' }, position: { x: 100, y: 100 } }, { group: 'nodes', data: { id: 'n1' }, position: { x: 200, y: 200 } }, { group: 'edges', data: { id: 'e0', source: 'n0', target: 'n1' } } ]); ``` ================================================ FILE: documentation/md/core/animate.md ================================================ ## Examples Manual pan and zoom: ```js cy.animate({ pan: { x: 100, y: 100 }, zoom: 2 }, { duration: 1000 }); ``` Fit to elements: ```js var j = cy.$('#j'); cy.animate({ fit: { eles: j, padding: 20 } }, { duration: 1000 }); ``` ================================================ FILE: documentation/md/core/autolock.md ================================================ ## Examples Enable: ```js cy.autolock( true ); ``` Disable: ```js cy.autolock( false ); ``` ================================================ FILE: documentation/md/core/autoungrabify.md ================================================ ## Examples Enable: ```js cy.autoungrabify( true ); ``` Disable: ```js cy.autoungrabify( false ); ``` ================================================ FILE: documentation/md/core/autounselectify.md ================================================ ## Examples Enable: ```js cy.autounselectify( true ); ``` Disable: ```js cy.autounselectify( false ); ``` ================================================ FILE: documentation/md/core/batch.md ================================================ ## Details Do not add batching to your app unless you have identified an applicable performance bottleneck. There are restrictions on what kind of code you can run in a batch. Normally, when you modify elements, each modification can trigger a style calculation and a redraw --- depending on timing for a redraw. For example, the following will cause two style calculations and at least one draw: ```js cy.$('#j') .data('weight', '70') // style update .addClass('funny') // style update AGAIN .removeClass('serious') // style update YET AGAIN // at least 1 redraw here // possibly 3 total depending on speed of above operations // (for one ele almost certainly 1 redraw, but consider many eles) ; ``` This is not a problem for a handful of operations on a handful of elements, but for many operations on many elements you end up with redundant style calculations and probably redundant redraws. In the worst case, you have `eles.length * numOps` style updates and redraws --- and both style updates and redraws can be expensive. In the worst case when using `cy.batch()`, you limit the style updates to `eles.length` and you limit the redraws to just one. Thus, this function is useful for making many changes to elements at once. When the specified callback function is complete, only elements that require it have their style updated and the renderer makes at most a single redraw. This makes for very efficient modifications to elements, but it has some caveats inside a batch: * You can not reliably read element style or dimensions (it may have changed, or computed values may be out of date). * You probably do not want to use `eles.style()` et cetera because they force a style bypass rather than a recalculation. * You can not apply any style-dependent operation within the batch if you have already modified style within the same batch. Common style-dependent operations include: * Layout: `cy.layout()`, `eles.layout()`, etc. * Reading style: `ele.style()`, `ele.numericStyle()`, etc. * Reading dimensions: `ele.midpoint()`, `ele.boundingBox()`, etc. * Animation: `ele.animation()`, `cy.animate()`, etc. * And so on... A batch should correspond to a single visual operation. Usually a batch should contain calls only to the following functions: - Modifying state: `eles.data()`, `eles.scratch()`, `eles.addClass()`, `eles.removeClass()`, etc. - Building collections: `eles.union()`, `eles.difference()`, `eles.intersection()`, etc. - Comparison: `eles.same()`, `eles.some()`, etc. - Iteration: `eles.forEach()`, `eles.empty()`, etc. - Traversal: `node.outgoers()`, `eles.bfs()`, etc. - Algorithms: `eles.dijkstra()`, `eles.degreeCentrality()`, etc. ## Examples Synchronous style: ```js cy.batch(function(){ cy.$('#j') .data('weight', '70') .addClass('funny') .removeClass('serious') ; }); ``` Asynchronous style: ```js cy.startBatch(); cy.$('#j') .data('weight', '70') .addClass('funny') .removeClass('serious') ; cy.endBatch(); ``` ================================================ FILE: documentation/md/core/boxSelectionEnabled.md ================================================ ## Examples Enable: ```js cy.boxSelectionEnabled( true ); ``` Disable: ```js cy.boxSelectionEnabled( false ); ``` ================================================ FILE: documentation/md/core/center.md ================================================ ## Details If no collection is specified, then the graph is centred on all nodes and edges in the graph. ## Examples Centre the graph on node `j`: ```js var j = cy.$('#j'); cy.center( j ); ``` ================================================ FILE: documentation/md/core/collection.md ================================================ ## Details This function is useful for building up collections. ## Examples Keep a collection of nodes that have been clicked: ```js var collection = cy.collection(); cy.nodes().on('click', function(e){ var clickedNode = e.target; collection = collection.union(clickedNode); }); ``` Create a collection of new nodes that have not been added to the graph: ```js var removedCollection = cy.collection([{ data: { id: 'a' } }, { data: { id: 'b' } }], { removed: true }); removedCollection.forEach(element => { console.log(element.removed()); // true }; ``` ================================================ FILE: documentation/md/core/core.md ================================================ The core object is your interface to a graph. It is your entry point to Cytoscape.js: All of the library's features are accessed through this object. ================================================ FILE: documentation/md/core/delay.md ================================================ ## Examples ```js cy .animate({ fit: { eles: '#j' } }) .delay(1000) .animate({ fit: { eles: '#e' } }) ; ``` ================================================ FILE: documentation/md/core/destroy.md ================================================ ## Details The `cy.destroy()` function is not necessary but can be convenient in some cases. It cleans up references and rendering loops such that the memory used by an instance can be garbage collected. If you remove the container DOM element from the page, then the instance is cleaned up automatically. Similarly, calling `cy.destroy()` does this cleanup and removes all the container's children from the page. When running Cytoscape.js headlessly, using `cy.destroy()` is necessary only if you've explicitly enabled style functionality. To drop the memory used by an instance, it is necessary to drop all of your own references to that instance so it can be garbage collected. ================================================ FILE: documentation/md/core/elements.md ================================================ ## Details If no elements in the graph match the selector, an empty [collection](#collection) is returned. The function `cy.$()` acts as an alias to `cy.filter()`: It lets you type less characters. It is analogous to the jQuery `$` alias used to search the document ## Examples Get nodes with weight greater than 50: ```js cy.nodes('[weight > 50]'); ``` Get edges with source node `n0`: ```js cy.edges('[source = "j"]'); ``` Get all nodes and edges with weight greater than 50: ```js cy.elements('[weight > 50]'); cy.filter('[weight > 50]'); // works the same as the above line ``` Get nodes with weight greater than 50 with a filter function: ```js cy.filter(function(element, i){ return element.isNode() && element.data('weight') > 50; }); ``` ================================================ FILE: documentation/md/core/emit.md ================================================ ## Examples ```js cy.on('tap', function(evt, f, b){ console.log('tap', f, b); }); cy.emit('tap', ['foo', 'bar']); ``` ================================================ FILE: documentation/md/core/extent.md ================================================ ## Details This function returns a plain object bounding box with format `{ x1, y1, x2, y2, w, h }`. ================================================ FILE: documentation/md/core/fit.md ================================================ ## Details If no collection is specified, then the graph is fit to all nodes and edges in the graph. ## Examples Fit the graph on nodes `j` and `e`: ```js cy.fit( cy.$('#j, #e') ); ``` ================================================ FILE: documentation/md/core/forceRender.md ================================================ ## Details This function forces the renderer to draw a new frame. It is useful for very specific edgecases, such as in certain UI extensions, but it should not be needed for most developers. ================================================ FILE: documentation/md/core/getElementById.md ================================================ ## Examples ```js cy.getElementById('j'); ``` Using the shorter alias: ```js cy.$id('j'); ``` ================================================ FILE: documentation/md/core/init.md ================================================ ### Initialisation A graph can be created as follows: ``` var cy = cytoscape({ /* options */ }); ``` You can initialise the core without any options. If you want to use Cytoscape as a visualisation, then a `container` DOM element is required, e.g.: ```js var cy = cytoscape({ container: document.getElementById('cy') }); ``` Note that in order to guarantee custom font usage (WOFF/WOFF2), the fonts in question must be loaded before Cytoscape is initialised. Note that Cytoscape.js will print warning messages to the console to help programmers avoid mistakes. If you want to disable these messages, call `cytoscape.warnings(false)` to turn warnings off completely. You can turn them back on with `cytoscape.warnings(true)`, and you can get the current state with `cytoscape.warnings()`. It is recommended that you leave warnings enabled at least for development builds of your app. The following sections go over the options in more detail. ### Initialisation options An instance of Cytoscape.js has a number of options that can be set on initialisation. They are outlined below with their default values. Note that everything is optional. By default, you get an empty graph with the default stylesheet. Environments outside the browser (e.g. Node.js) are automatically set as headless for convenience.
var cy = cytoscape({
  // very commonly used options
  container: undefined,
  elements: [ /* ... */ ],
  style: [ /* ... */ ],
  layout: { name: 'grid' /* , ... */ },
  data: { /* ... */ },

  // initial viewport state:
  zoom: 1,
  pan: { x: 0, y: 0 },

  // interaction options:
  minZoom: 1e-50,
  maxZoom: 1e50,
  zoomingEnabled: true,
  userZoomingEnabled: true,
  panningEnabled: true,
  userPanningEnabled: true,
  boxSelectionEnabled: true,
  selectionType: 'single',
  touchTapThreshold: 8,
  desktopTapThreshold: 4,
  autolock: false,
  autoungrabify: false,
  autounselectify: false,
  multiClickDebounceTime: 250,

  // rendering options:
  headless: false,
  styleEnabled: true,
  hideEdgesOnViewport: false,
  textureOnViewport: false,
  motionBlur: false,
  motionBlurOpacity: 0.2,
  wheelSensitivity: 1,
  pixelRatio: 'auto'
});
### Very commonly used options **`container`** : A HTML DOM element in which the graph should be rendered. This is unspecified if Cytoscape.js is run headlessly. The container is expected to be an empty div; the visualisation owns the div. **`elements`** : An array of [elements specified as plain objects](#notation/elements-json). For convenience, this option can alternatively be specified as a promise that resolves to the elements JSON. **`style`** : The [stylesheet](#style) used to style the graph. For convenience, this option can alternatively be specified as a promise that resolves to the stylesheet. **`layout`** : A plain object that specifies layout options. Which layout is initially run is specified by the `name` field. Refer to a [layout's documentation](#layouts) for the options it supports. If you want to specify your node positions yourself in your elements JSON, you can use the `preset` layout --- by default it does not set any positions, leaving your nodes in their current positions (i.e. specified in `options.elements` at initialisation time). **`data`** : A plain object that contains [graph-level data](#cy.data) (i.e. data that does not belong to any particular node or edge). ### Initial viewport state **`zoom`** : The initial zoom level of the graph. Make sure to disable viewport manipulation options, such as `fit`, in your layout so that it is not overridden when the layout is applied. You can set **`options.minZoom`** and **`options.maxZoom`** to set restrictions on the zoom level. **`pan`** : The initial panning position of the graph. Make sure to disable viewport manipulation options, such as `fit`, in your layout so that it is not overridden when the layout is applied. ### Interaction options **`minZoom`** : A minimum bound on the zoom level of the graph. The viewport can not be scaled smaller than this zoom level. **`maxZoom`** : A maximum bound on the zoom level of the graph. The viewport can not be scaled larger than this zoom level. **`zoomingEnabled`** : Whether zooming the graph is enabled, both by user events and programmatically. **`userZoomingEnabled`** : Whether user events (e.g. mouse wheel, pinch-to-zoom) are allowed to zoom the graph. Programmatic changes to zoom are unaffected by this option. **`panningEnabled`** : Whether panning the graph is enabled, both by user events and programmatically. **`userPanningEnabled`** : Whether user events (e.g. dragging the graph background) are allowed to pan the graph. Programmatic changes to pan are unaffected by this option. **`boxSelectionEnabled`** : Whether box selection (i.e. drag a box overlay around, and release it to select) is enabled. If enabled while panning is also enabled, the user must use a modifier key (shift, alt, control, or command) to use box selection. **`selectionType`** : A string indicating the selection behaviour from user input. For `'additive'`, a new selection made by the user adds to the set of currently selected elements. For `'single'`, a new selection made by the user becomes the entire set of currently selected elements (i.e. the previous elements are unselected). **`touchTapThreshold`** & **`desktopTapThreshold`** : A non-negative integer that indicates the maximum allowable distance that a user may move during a tap gesture, on touch devices and desktop devices respectively. This makes tapping easier for users. These values have sane defaults, so it is not advised to change these options unless you have very good reason for doing so. Large values will almost certainly have undesirable consequences. **`autoungrabify`** : Whether nodes should be ungrabified (not grabbable by user) by default (if `true`, overrides individual node state). **`autolock`** : Whether nodes should be locked (not draggable at all) by default (if `true`, overrides individual node state). **`autounselectify`** : Whether nodes should be unselectified (immutable selection state) by default (if `true`, overrides individual element state). **`multiClickDebounceTime`** : Debouce time in milliseconds to check for `dblclick` event before executing the `oneclick` event ### Rendering options **`headless`** : A convenience option that initialises the instance to run headlessly. You do not need to set this in environments that are implicitly headless (e.g. Node.js). However, it is handy to set `headless: true` if you want a headless instance in a browser. **`styleEnabled`** : A boolean that indicates whether styling should be used. For headless (i.e. outside the browser) environments, display is not necessary and so neither is styling necessary --- thereby speeding up your code. You can manually enable styling in headless environments if you require it for a special case. Note that it does not make sense to disable style if you plan on rendering the graph. Also note that [`cy.destroy()`](#cy.destroy) must be called to clean up a style-enabled, headless instance. **`hideEdgesOnViewport`** : A rendering hint that when set to `true` makes the renderer not render edges while the viewport is being manipulated. This makes panning, zooming, dragging, et cetera more responsive for large graphs. This option is now largely moot, as a result of performance enhancements. **`textureOnViewport`** : A rendering hint that when set to `true` makes the renderer use a texture during panning and zooming instead of drawing the elements, making large graphs more responsive. This option is now largely moot, as a result of performance enhancements. **`motionBlur`** : A rendering hint that when set to `true` makes the renderer use a motion blur effect to make the transition between frames seem smoother. This can increase the perceived performance for a large graphs. This option is now largely moot, as a result of performance enhancements. **`motionBlurOpacity`** : When `motionBlur: true`, this value controls the opacity of motion blur frames. Higher values make the motion blur effect more pronounced. This option is now largely moot, as a result of performance enhancements. **`wheelSensitivity`** : Changes the scroll wheel sensitivity when zooming. This is a multiplicative modifier. So, a value between 0 and 1 reduces the sensitivity (zooms slower), and a value greater than 1 increases the sensitivity (zooms faster). This option is set to a sane value that works well for mainstream mice (Apple, Logitech, Microsoft) on Linux, Mac, and Windows. If the default value seems too fast or too slow on your particular system, you may have non-default mouse settings in your OS or a niche mouse. You should not change this value unless your app is meant to work only on specific hardware. Otherwise, you risk making zooming too slow or too fast for most users. **`pixelRatio`** : Overrides the screen pixel ratio with a manually set value (`1.0` recommended, if set). This can be used to increase performance on high density displays by reducing the effective area that needs to be rendered, though this is much less necessary on more recent browser releases. If you want to use the hardware's actual pixel ratio, you can set `pixelRatio: 'auto'` (default). ================================================ FILE: documentation/md/core/isDestroyed.md ================================================ ================================================ FILE: documentation/md/core/jpg.md ================================================ ## Details This function exports the currently-rendered graph as an image, so you may not call this function on a headless instance. By default, the export takes into account the current screen pixel density so that the image is of the same quality of the screen. If the `maxWidth` or `maxHeight` options are specified, then the screen pixel density is ignored so that the image can fit in the specified dimensions. Specifying `output:'blob-promise'` is the only way to make this function non-blocking. Other outputs may hang the browser until finished, especially for a large image. The JPEG format is lossy, whereas PNG is not. This means that `cy.jpg()` is useful for cases where filesize is more important than pixel-perfect images. JPEG compression will make your images (especially edge lines) blurry and distorted. ## Examples ```js var jpg64 = cy.jpg(); // put the png data in an img tag document.querySelector('#jpg-eg').setAttribute('src', jpg64); ``` Example image tag: ================================================ FILE: documentation/md/core/json.md ================================================ ## Details This function returns the same object that is used for [initialisation](#core/initialisation). You will find this function useful if you would like to save the entire state of the graph, either for your own purposes or for future restoration of that graph state. This function can also be used to set graph state as in `cy.json( cyJson )`, where each field in `cyJson` is to be mutated in the graph. For each field defined in `cyJson`, `cy` is updated to match with the corresponding events emitted. This allows for declarative changes on the graph to be made. For `cy.json( cyJson )`, all mutable [initialisation options](#core/initialisation) are supported. When setting `cy.json({ elements: ... })` * the included elements are mutated as specified (i.e. as they would be by [`ele.json( eleJson )`](#collection/data/ele.json)), * the included elements not in the graph are added, and * the not included elements are removed from the graph. Note that updating the Graph elements using `cy.json()` requires all elements to have an ID attribute. Elements that do not have an ID will be ignored. When setting `cy.json({ style: ... })` * the entire stylesheet is replaced, and * the style is recalculated for each element. Updating the stylesheet is expensive. Similarly, it can potentially be expensive to update the existing elements for large graphs --- as each element needs to be considered, and potentially each field per element. For elements, a much cheaper option is to selectively call `ele.json(...)` with only the fields that need to be updated. ## Examples ```js console.log( cy.json() ); ``` ```js cy.json({ zoom: 2 }); ``` ================================================ FILE: documentation/md/core/layout.md ================================================ You must specify `options.name` with the name of the layout you wish to use. This function creates and returns a [layout object](#layouts). You may want to keep a reference to the layout for more advanced usecases, such as running multiple layouts simultaneously. Note that you must call [`layout.run()`](#layouts/layout-manipulation/layout.run) in order for it to affect the graph. The layout includes all elements in the graph at the moment `cy.layout()` is called, as `cy.layout()` is equivalent to `cy.elements().layout()`. You can use [`eles.layout()`](#collection/layout/eles.layout) to run a layout on a subset of the elements in the graph. ## Examples ```js var layout = cy.layout({ name: 'random' }); layout.run(); ``` ================================================ FILE: documentation/md/core/load.md ================================================ ## Details This function is merely a convenient way of setting the elements in the graph and applying a layout. For more control, the developer should use [`cy.add()`](#core/graph-manipulation/cy.add) and [`cy.layout()`](#core/layout/cy.layout) etc. Note that `eleObjs` can be specified as an array with each element specifying its `group`, or alternatively, `eleObjs` can be specified as a `group`-indexed map, following the same format as in [initialisation](#core/initialisation) and outlined in the [element JSON format](#notation/elements-json). ## Examples As an array: ```js cy.load([ { data: { id: "n1" }, group: "nodes" }, { data: { id: "n2" }, group: "nodes" }, { data: { id: "e1", source: "n1", target: "n2" }, group: "edges" } ]); ``` As a `group`-indexed map: ```js cy.load({ nodes: [ { data: { id: "n1" } }, { data: { id: "n2" } } ], edges: [ { data: { id: "e1", source: "n1", target: "n2" } } ] }); ``` With specified callbacks: ```js cy.load([ { data: { id: "n1" }, group: "nodes" } ], function(e){ console.log("cy loaded elements"); }, function(e){ console.log("cy laid out elements"); }); ``` This is equivalent to: ```js cy.one("load", function(e){ console.log("cy loaded elements"); }).one("done", function(e){ console.log("cy laid out elements"); }); cy.load([ { data: { id: "n1" }, group: "nodes" } ]); ``` ================================================ FILE: documentation/md/core/mount.md ================================================ ## Details If the core instance is headless prior to calling `cy.mount()`, then the instance will no longer be headless and the visualisation will be shown in the specified container. If the core instance is non-headless prior to calling `cy.mount()`, then the visualisation is swapped from the prior container to the specified container. ================================================ FILE: documentation/md/core/notation.md ================================================ ================================================ FILE: documentation/md/core/offRender.md ================================================ ## Examples ```js var handler; cy.onRender(handler = function(){ console.log('frame rendered'); }); cy.offRender( handler ); ``` ================================================ FILE: documentation/md/core/on.md ================================================ ## Examples Listen to events that bubble up from elements matching the specified `node` selector: ```js cy.on('tap', 'node', function(evt){ var node = evt.target; console.log( 'tapped ' + node.id() ); }); ``` Listen to all tap events that the core receives: ```js cy.on('tap', function(event){ // target holds a reference to the originator // of the event (core or element) var evtTarget = event.target; if( evtTarget === cy ){ console.log('tap on background'); } else { console.log('tap on some element'); } }); ``` ================================================ FILE: documentation/md/core/onRender.md ================================================ ## Examples ```js cy.onRender(function(){ console.log('frame rendered'); }); ``` ================================================ FILE: documentation/md/core/one.md ================================================ ## Examples ```js cy.one('tap', 'node', function(){ console.log('tap!'); }); cy.$('node').eq(0).trigger('tap'); // tap! cy.$('node').eq(1).trigger('tap'); // nothing b/c already tapped ``` ================================================ FILE: documentation/md/core/pan.md ================================================ ## Details This function pans the graph viewport origin to the specified rendered pixel position. ## Examples Pan the graph to (100, 100) rendered pixels. ```js cy.pan({ x: 100, y: 100 }); console.log( cy.pan() ); // prints { x: 100, y: 100 } ``` ================================================ FILE: documentation/md/core/panBy.md ================================================ ## Details This function shifts the viewport relatively by the specified position in rendered pixels. That is, specifying a shift of 100 to the right means a translation of 100 on-screen pixels to the right. ## Examples Pan the graph 100 pixels to the right. ```js cy.panBy({ x: 100, y: 0 }); ``` ================================================ FILE: documentation/md/core/panningEnabled.md ================================================ ## Examples Enable: ```js cy.panningEnabled( true ); ``` Disable: ```js cy.panningEnabled( false ); ``` ================================================ FILE: documentation/md/core/png.md ================================================ ## Details This function exports the currently-rendered graph as an image, so you may not call this function on a headless instance. By default, the export takes into account the current screen pixel density so that the image is of the same quality of the screen. If the `maxWidth` or `maxHeight` options are specified, then the screen pixel density is ignored so that the image can fit in the specified dimensions. Specifying `output:'blob-promise'` is the only way to make this function non-blocking. Other outputs may hang the browser until finished, especially for a large image. ## Examples ```js var png64 = cy.png(); // put the png data in an img tag document.querySelector('#png-eg').setAttribute('src', png64); ``` Example image tag: ================================================ FILE: documentation/md/core/promiseOn.md ================================================ ## Examples ```js cy.pon('tap').then(function( event ){ console.log('tap promise fulfilled'); }); ``` ================================================ FILE: documentation/md/core/remove.md ================================================ ## Details Note that removing a node necessarily removes its connected edges. Though the elements specified to this function are removed from the graph, they may still exist in memory. However, almost all functions will not work on removed elements. For example, the `eles.neighborhood()` function will fail for a removed element: An element outside of the context of the graph can not have a neighbourhood defined. A removed element exists only so you can restore it back to the originating core instance or to a new instance. ## Examples Remove an element: ```js var j = cy.$('#j'); cy.remove( j ); ``` Remove a collection: ```js var collection = cy.elements('node[weight > 50]'); cy.remove( collection ); ``` Remove elements matching a selector: ```js cy.remove('node[weight > 50]'); // remove nodes with weight greater than 50 ``` ================================================ FILE: documentation/md/core/removeListener.md ================================================ ## Examples For all handlers: ```js cy.on('tap', function(){ /* ... */ }); // remove all tap listener handlers, including the one above cy.removeListener('tap'); ``` For a particular handler: ```js var handler = function(){ console.log('called handler'); }; cy.on('tap', handler); var otherHandler = function(){ console.log('called other handler'); }; cy.on('tap', otherHandler); // just remove handler cy.removeListener('tap', handler); ``` ================================================ FILE: documentation/md/core/reset.md ================================================ ## Details This resets the viewport to the origin (0, 0) at zoom level 1. ## Examples ```js setTimeout( function(){ cy.pan({ x: 50, y: -100 }); }, 1000 ); setTimeout( function(){ cy.zoom( 2 ); }, 2000 ); setTimeout( function(){ cy.reset(); }, 3000 ); ``` ================================================ FILE: documentation/md/core/resize.md ================================================ ## Details If your code resizes the graph's dimensions or position (i.e. by changing the style of the HTML DOM element that holds the graph, or by changing the DOM element's position in the DOM tree), you will want to call `cy.resize()` to have the graph resize and redraw itself. If tapping in the graph is offset rather than at the correct position, then a call to `cy.resize()` is necessary. Tapping can also become offset if the container element is not empty; the container is expected to be empty so the visualisation can use it. Cytoscape.js can not automatically monitor the bounding box of the viewport, as querying the DOM for those dimensions can be expensive. Although `cy.resize()` is automatically called for you on the `window`'s `resize` event, there is no `resize` or `style` event for arbitrary DOM elements. ================================================ FILE: documentation/md/core/stop.md ================================================ ## Examples ```js cy.animate({ fit: { eles: '#j' } }, { duration: 2000 }); // stop in the middle setTimeout(function(){ cy.stop(); }, 1000); ``` ================================================ FILE: documentation/md/core/style.md ================================================ ## Details You can use this function to gain access to the visual style (stylesheet) after initialisation. This is useful if you need to change the entire stylesheet at runtime. Set a new style by reference: ```js // here a string stylesheet is used, but you could also use json or a cytoscape.stylesheet() object var stringStylesheet = 'node { background-color: cyan; }'; cy.style( stringStylesheet ); ``` Set an entirely new style to the graph, specifying [selectors](#selectors) and [style properties](#style) via function calls: ```js cy.style() .resetToDefault() // start a fresh default stylesheet // and then define new styles .selector('node') .style('background-color', 'magenta') // ... .update() // indicate the end of your new stylesheet so that it can be updated on elements ; ``` Set a completely new stylesheet (without the default stylesheet as a base): ```js cy.style() .clear() // start a fresh stylesheet without even the default stylesheet // define all basic styles for node .selector('node') .style('background-color', 'magenta') // define all basic styles for edge .selector('edge') .style({ 'width': 3, 'line-color': 'yellow' }) // ... .update() // indicate the end of your new stylesheet so that it can be updated on elements ; ``` Add to the existing stylesheet using selectors: ```js cy.style() .selector('node') .style({ 'background-color': 'yellow' }) .update() // indicate the end of your new stylesheet so that it can be updated on elements ; ``` Add to the existing stylesheet by appending a string: ```js cy.style() .append('node { background-color: yellow; }') .update(); ``` Set the style from plain JSON: ```js cy.style() .fromJson([ { selector: 'node', style: { 'background-color': 'red' } } // , ... ]) .update() // indicate the end of your new stylesheet so that it can be updated on elements ; ``` Set the style from a style string (that you would probably pull from a file on your server): ```js cy.style() .fromString('node { background-color: blue; }') .update() // update the elements in the graph with the new style ; ``` Get the current style as JSON: ```js var styleJson = cy.style().json(); var serializedJson = JSON.stringify( styleJson ); ``` ================================================ FILE: documentation/md/core/unmount.md ================================================ ## Details This function sets the instance to be headless after unmounting from the current container. ================================================ FILE: documentation/md/core/userPanningEnabled.md ================================================ ## Examples Enable: ```js cy.userPanningEnabled( true ); ``` Disable: ```js cy.userPanningEnabled( false ); ``` ================================================ FILE: documentation/md/core/userZoomingEnabled.md ================================================ ## Examples Enable: ```js cy.userZoomingEnabled( true ); ``` Disable: ```js cy.userZoomingEnabled( false ); ``` ================================================ FILE: documentation/md/core/viewport.md ================================================ ## Examples ```js cy.viewport({ zoom: 2, pan: { x: 100, y: 100 } }); ``` ================================================ FILE: documentation/md/core/zoom.md ================================================ ## Details The zoom level must be a positive number. Zoom levels that are not numbers are ignored; zoom levels that are numbers but outside of the range of valid zoom levels are considered to be the closest, valid zoom level. When zooming about a point via `cy.zoom( options )`, the options are defined as follows. For zooming about a rendered position (i.e. a position on-screen): ```js cy.zoom({ level: 2.0, // the zoom level renderedPosition: { x: 100, y: 100 } }); ``` For zooming about a model position: ```js cy.zoom({ level: 2.0, // the zoom level position: { x: 0, y: 0 } }); ``` You can zoom about a position or a rendered position but not both. You should specify only one of `options.position` or `options.renderedPosition`. ## Examples Zoom in to factor 2 ```js cy.zoom(2); ``` Zoom in to the minimum zoom factor ```js cy.zoom(0); // 0 is outside of the valid range and // its closest valid level is the min ``` Zoom in to the maximum zoom factor ```js cy.zoom(1/0); // infinity is outside of the valid range and // its closest valid level is the max ``` Zoom about a node ```js cy.zoom({ level: 1.5, position: cy.getElementById('j').position() }); ``` ================================================ FILE: documentation/md/core/zoomingEnabled.md ================================================ ## Examples Enable: ```js cy.zoomingEnabled( true ); ``` Disable: ```js cy.zoomingEnabled( false ); ``` ================================================ FILE: documentation/md/demos.md ================================================ ================================================ FILE: documentation/md/downloads.md ================================================ Please note that although we offer downloads of previous versions of Cytoscape.js, you should use the latest version whenever possible. The old versions are provided for legacy reasons (i.e. you started your app with an old version of Cytoscape.js), but we strongly suggest you use the latest version. If there's a bug or other issue preventing you from using the latest version of Cytoscape.js, we would love your feedback so we could support your use case. Please [make a ticket](https://github.com/cytoscape/cytoscape.js/issues/new) in the issue tracker. ## 2.1.x * [2.1.1](http://cytoscape.github.com/cytoscape.js/download/cytoscape.js-2.1.1.zip) (latest) * [2.1.0](http://cytoscape.github.com/cytoscape.js/download/cytoscape.js-2.1.0.zip) ## 2.0.x * [2.0.5](http://cytoscape.github.com/cytoscape.js/download/cytoscape.js-2.0.5.zip) * [2.0.4](http://cytoscape.github.com/cytoscape.js/download/cytoscape.js-2.0.4.zip) * [2.0.3](http://cytoscape.github.com/cytoscape.js/download/cytoscape.js-2.0.3.zip) * [2.0.2](http://cytoscape.github.com/cytoscape.js/download/cytoscape.js-2.0.2.zip) * [2.0.1](http://cytoscape.github.com/cytoscape.js/download/cytoscape.js-2.0.1.zip) * [2.0.0](http://cytoscape.github.com/cytoscape.js/download/cytoscape.js-2.0.0.zip) * [2.0.0beta3](http://cytoscape.github.com/cytoscape.js/download/cytoscape.js-2.0.0beta3.zip) * [2.0.0beta2](http://cytoscape.github.com/cytoscape.js/download/cytoscape.js-2.0.0beta2.zip) * [2.0.0beta1](http://cytoscape.github.com/cytoscape.js/download/cytoscape.js-2.0.0beta1.zip) ================================================ FILE: documentation/md/events.md ================================================ ## Event object Events passed to handler callbacks are similar to [jQuery event objects](http://api.jquery.com/category/events/event-object/) and [React synthetic events](https://reactjs.org/docs/events.html) in that they wrap native event objects, mimicking their API. Fields: * `cy` : a reference to the corresponding core instance * `target` : indicates the element or core that first caused the event * `type` : the event type string (e.g. `"tap"`) * `namespace` : the event namespace string (e.g. `"foo"` for `"tap.foo"`) * `timeStamp` : Unix epoch time of event in milliseconds Fields for only user input device events: * `position` : indicates the model position of the event * `renderedPosition` : indicates the rendered position of the event * `originalEvent` : the original user input device event object Fields for only layout events: * `layout` : indicates the corresponding layout that triggered the event (useful if running multiple layouts simultaneously) ## Event bubbling All events that occur on elements get bubbled up to [compound parents](#notation/compound-nodes) and then to the core. You must take this into consideration when listening to the core so you can differentiate between events that happened on the background and ones that happened on elements. Use the `eventObj.target` field, which indicates the originator of the event (i.e. `eventObj.target === cy || eventObj.target === someEle`). ## User input device events These are normal browser events that you can listen to via Cytoscape.js. You can listen to these events on the core and on collections. * `mousedown` : when the mouse button is pressed * `mouseup` : when the mouse button is released * `click` : after `mousedown` then `mouseup` * `mouseover` : when the cursor is put on top of the target * `mouseout` : when the cursor is moved off of the target * `mousemove` : when the cursor is moved somewhere on top of the target * `touchstart` : when one or more fingers starts to touch the screen * `touchmove` : when one or more fingers are moved on the screen * `touchend` : when one or more fingers are removed from the screen There are also some higher level events that you can use so you don't have to listen to different events for mouse-input devices and for touch devices. * `tapstart` or `vmousedown` : normalised tap start event (either `mousedown` or `touchstart`) * `tapdrag` or `vmousemove` : normalised move event (either `touchmove` or `mousemove`) * `tapdragover` : normalised over element event (either `touchmove` or `mousemove`/`mouseover`) * `tapdragout` : normalised off of element event (either `touchmove` or `mousemove`/`mouseout`) * `tapend` or `vmouseup` : normalised tap end event (either `mouseup` or `touchend`) * `tap` or `vclick` : normalised tap event (either `click`, or `touchstart` followed by `touchend` without `touchmove`) * `onetap` or `voneclick` or `oneclick` : normalised tap event (triggers after a given debouce time to first check for `dblclick` event - `multiClickDebounceTime`: set to 250ms by default) * `dbltap` or `vdblclick` or `dblclick` : normalised double tap event (either two subsequent `click`, or two subsequent `touchstart` followed by `touchend` without `touchmove`) * `taphold` : normalised tap hold event * `cxttapstart` : normalised right-click mousedown or two-finger `tapstart` * `cxttapend` : normalised right-click `mouseup` or two-finger `tapend` * `cxttap` : normalised right-click or two-finger `tap` * `cxtdrag` : normalised mousemove or two-finger drag after `cxttapstart` but before `cxttapend` * `cxtdragover` : when going over a node via `cxtdrag` * `cxtdragout` : when going off a node via `cxtdrag` * `boxstart` : when starting box selection * `boxend` : when ending box selection * `boxselect` : triggered on elements when selected by box selection * `box` : triggered on elements when inside the box on `boxend` ## Collection events These events are custom to Cytoscape.js. You can listen to these events for collections. * `add` : when an element is added to the graph * `remove` : when an element is removed from the graph * `move` : when an element is moved w.r.t. topology * nodes: when the compound `parent` is changed * edges: when the `source` or `target` is changed * `select` : when an element is selected * `unselect` : when an element is unselected * `tapselect` : when an element is selected by a tap gesture * `tapunselect` : when an element is unselected by a tap elsewhere * `boxselect` : triggered on elements when selected by box selection * `box` : triggered on elements when inside the box on `boxend` * `lock` : when an element is locked * `unlock` : when an element is unlocked * `grabon` : when an element is grabbed directly (including only the one node directly under the cursor or the user's finger) * `grab` : when an element is grabbed (including all elements that would be dragged) * `drag` : when an element is grabbed and then moved * `free` : when an element is freed (i.e. let go from being grabbed) * `freeon` : when an element is freed directly (including only the one node directly under the cursor or the user's finger) * `dragfree` : when an element is freed after being dragged (i.e. `grab` then `drag` then `free`) * `dragfreeon` : when an element is freed after being dragged directly (i.e. `grabon`, `drag`, `freeon`) * `position` : when an element changes position * `data` : when an element's data is changed * `scratch` : when an element's scratchpad data is changed * `style` : when an element's style is changed * `background` : when a node's background image is loaded ## Graph events These events are custom to Cytoscape.js, and they occur on the core. * `layoutstart` : when a layout starts running * `layoutready` : when a layout has set initial positions for all the nodes (but perhaps not final positions) * `layoutstop` : when a layout has finished running completely or otherwise stopped running * `ready` : when a new instance of Cytoscape.js is ready to be interacted with * `destroy` : when the instance of Cytoscape.js was explicitly destroyed by calling `.destroy()`. * `render` : when the viewport is (re)rendered * `pan` : when the viewport is panned * `dragpan` : when the viewport is panned via dragging * `zoom` : when the viewport is zoomed * `pinchzoom` : when the viewport is zoomed via pinch gesture. This event is only supported for browsers which support the [gesturechange event](https://developer.mozilla.org/en-US/docs/Web/API/Element/gesturechange_event) or [touch events](https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent). Other browsers will fire the `scrollzoom` event. * `scrollzoom` : when the viewport is zoomed via the scroll wheel * `viewport` : when the viewport is changed (i.e. from a `pan`, a `zoom`, or from both when zooming about a point -- e.g. pinch-to-zoom) * `resize` : when the viewport is resized (usually by calling `cy.resize()`, a `window` resize, or toggling a class on the Cytoscape.js div) ================================================ FILE: documentation/md/extensions.md ================================================ You can use an extension (e.g. `cy-ext`) as follows with `cytoscape.use()`: ```js cytoscape.use( require('cy-ext') ); ``` Using `import`, the above example would be: ```js import ext from 'cy-ext'; cytoscape.use( ext ); ``` The extensions below are a curated list. To add your extension, [please submit a request](https://github.com/cytoscape/cytoscape.js/issues/new?labels=documentation&title=List%20extension%20:%20%3Cyour%20extension%20name%3E&body=Please%20enter%20your%20Github%20URL%20and%20a%20one-line%20description) that includes your extension's URL and a one line description. denotes a first-party extension, one that is maintained by groups associated with the Cytoscape Consortium. denotes a third-party extension, one that is maintained by outside developers. ## UI extensions * [`anywhere-panning`](https://github.com/lambdalisue/cytoscape-anywhere-panning) : Allow panning when dragging on nodes or edges. * [`automove`](https://github.com/cytoscape/cytoscape.js-automove) : Automatically update node positions based on specified rules (e.g. synching node movements, constraining movements, etc.) * [`autopan-on-drag`](https://github.com/iVis-at-Bilkent/cytoscape.js-autopan-on-drag) : Automatically pan the viewport when nodes are dragged outside of the viewport bounds. * [`blink`](https://github.com/simCecca/cytoscape-blink) : Make elements blink. * [`bubblesets`](https://github.com/sgratzl/cytoscape.js-bubblesets) : Visually group a set of elements via a [bubble set](https://ieeexplore.ieee.org/document/5290706). * [`canvas`](https://github.com/classcraft/cytoscape.js-canvas) : An extension to create a canvas over or under a Cytoscape graph. Useful for customizing nodes/edges, drawing backgrounds, etc. * [`cerebralweb`](https://github.com/silviafrias/cerebral-web) : Enable fast and interactive visualisation of molecular interaction networks stratified based on subcellular localisation or other custom annotation. * [`compound-drag-and-drop`](https://github.com/cytoscape/cytoscape.js-compound-drag-and-drop) : Compound node drag-and-drop UI for adding and removing children * [`context-menus`](https://github.com/iVis-at-Bilkent/cytoscape.js-context-menus) : A traditional right click menu * [`cxtmenu`](https://github.com/cytoscape/cytoscape.js-cxtmenu) : A circular context menu that allows for one-swipe commands on the graph. * [`dom-node`](https://github.com/mwri/cytoscape-dom-node) : Use an HTML element as a node's body. * [`edge-editing`](https://github.com/iVis-at-Bilkent/cytoscape.js-edge-editing) : UI for editing edge bends (segment edges and bezier edges) * [`edge-editation`](https://github.com/frankiex/cytoscape.js-edge-editation) : Adds handles to nodes and allows creation of different types of edges * [`edge-connections`](https://github.com/jri/cytoscape-edge-connections) : Allows edges to visually connect other edges, according to the Associative Model of Data. * [`edgehandles`](https://github.com/cytoscape/cytoscape.js-edgehandles) : UI for connecting nodes with edges. * [`even-parent`](https://github.com/mo0om/cytoscape-even-parent) : Layout which resizes children to fit under parent no matter how many there are. * [`expand-collapse`](https://github.com/iVis-at-Bilkent/cytoscape.js-expand-collapse) : Provides an API for expanding and collapsing compound parent nodes * [`grid-guide`](https://github.com/iVis-at-Bilkent/cytoscape.js-grid-guide) : Adds grid and snapping functionality to Cytoscape graphs * [`html`](https://github.com/BradyDouthit/cytoscape-html) : Allows for nodes to be rendered via HTML. * [`lasso`](https://github.com/zakjan/cytoscape-lasso) : Lasso selection UI * [`layers`](https://github.com/sgratzl/cytoscape.js-layers) : Simplifies the creation and management of additional layers in SVG, HTML, or Canvas format with additional utilities to render elements per node or edge. * [`leaf`](https://github.com/cytoscape/cytoscape.js-leaflet) : Allow for Leaflet maps to be shown underneath Cytoscape visualisations. * [`mapbox-gl`](https://github.com/zakjan/cytoscape-mapbox-gl) : Display a Cytoscape graph on top of a Mapbox GL map. * [`navigator`](https://github.com/cytoscape/cytoscape.js-navigator) : A bird's eye view widget of the graph. * [`no-overlap`](https://mo0om.github.io/cytoscape-no-overlap) : Prevents nodes from overlapping on drag. * [`node-html-label`](https://github.com/kaluginserg/cytoscape-node-html-label) : Allows HTML to be specified as the labels for nodes. * [`node-edge-html-label`](https://github.com/laikmokashi/cytoscape-node-edge-html-label) : Allows HTML to be specified as the labels for nodes and edges. * [`node-resize`](https://github.com/iVis-at-Bilkent/cytoscape.js-node-resize) : A highly customisable node resizing extension with a traditional UI. * [`node-resizer`](https://github.com/gxara/cytoscape-js-node-resizer) : A node resizing extension with zero dependencies. * [`noderesize`](https://github.com/curupaco/cytoscape.js-noderesize) : A minimalistic node resize control. * [`overlays`](https://github.com/sgratzl/cytoscape.js-overlays) : Overlays that shows bars, histograms, sparklines, binary sparklines, symbols (categorical data), or boxplots next to nodes. * [`panzoom`](https://github.com/cytoscape/cytoscape.js-panzoom) : A panzoom UI widget. * [`popper`](https://github.com/cytoscape/cytoscape.js-popper) : A wrapper for [Popper.js](https://popper.js.org/) that lets you position divs relative to Cytoscape elements (can be used with [Tippy.js](https://atomiks.github.io/tippyjs/) to create tooltips). * [`qtip`](https://github.com/cytoscape/cytoscape.js-qtip) : A wrapper that lets you use qTips on graph elements or the graph background. * [`snap-to-grid`](https://github.com/guimeira/cytoscape-snap-to-grid) : Adds snap-to-grid and gridlines to Cytoscape.js graphs. * [`supportimages`](https://github.com/jhonatandarosa/cytoscape.js-supportimages) : Support images on Cytoscape.js. * [`toolbar`](https://github.com/bdparrish/cytoscape.js-toolbar) : Allow a user to create a custom toolbar to add next to a Cytoscape core instance. ## Layout extensions * [`cola`](https://github.com/cytoscape/cytoscape.js-cola) : The Cola.js physics simulation (force-directed) layout. Cola makes beautiful layout results, it animates very smoothly, and it has great options for controlling the layout. It is focussed on giving aesthetically pleasing results for relatively small graphs. * [`avsdf`](https://github.com/iVis-at-Bilkent/cytoscape.js-avsdf) : The AVSDF layout. It organises nodes in a circle and tries to minimise edge crossings as much as possible. * [`cise`](https://github.com/iVis-at-Bilkent/cytoscape.js-cise) : The CiSE layout creates circular clusters and uses a physics simulation (force-directed algorithm) to create distance between the clusters. * [`cose-bilkent`](https://github.com/cytoscape/cytoscape.js-cose-bilkent) : The CoSE layout by Bilkent with enhanced compound node placement. CoSE Bilkent is a physics simulation (force-directed) layout that gives near-perfect end results. However, it's more expensive than both `cose` and `fcose`. * [`cosep`](https://github.com/iVis-at-Bilkent/cytoscape.js-cosep) : Compound Spring Embedder with Ports (CoSEP) is a force-directed layout algorithm based on the CoSE (Compound Spring Embedder) to support port constraints on compound graphs. * [`cosmos-over-cytoscape`](https://github.com/simCecca/cosmosOverCytoscape) : A physics simulation layout that makes use of parallelism on the GPU to support large graphs. * [`d3-force`](https://github.com/shichuanpo/cytoscape.js-d3-force) : The D3 force layout. It uses a basic physics simulation (force-directed) algorithm that generates good results for small, simple graphs. * [`dagre`](https://github.com/cytoscape/cytoscape.js-dagre) : The Dagre layout for DAGs and trees. It organises the graph in a hierarchy. * [`elk`](https://github.com/cytoscape/cytoscape.js-elk) : [ELK](https://github.com/OpenKieler/elkjs) layout algorithm adapter for Cytoscape.js. It contains several layout algorithms. * [`euler`](https://github.com/cytoscape/cytoscape.js-euler) : Euler is a fast, small file-size, high-quality force-directed (physics simulation) layout. It is good for non-compound graphs, and it has basic support for compound graphs. * [`fcose`](https://github.com/iVis-at-Bilkent/cytoscape.js-fcose) : The fCoSE layout is a faster version of the CoSE-Bilkent layout. It supports compound and non-compound graphs, giving top-tier end results and high performance for a force-directed layout. In addition, fCoSE supports user-specified constraints of the following types on nodes: fixed position, alignment and relative placement. If you want to use a force-directed layout, fCoSE should be the first layout you try. * [`klay`](https://github.com/cytoscape/cytoscape.js-klay) : Klay is a layout that works well for most types of graphs. It gives good results for ordinary graphs, and it handles DAGs and compound graphs very nicely. * [`ngraph.forcelayout`](https://github.com/Nickolasmv/cytoscape-ngraph.forcelayout) : A physics simulation layout that works particularly well on planar graphs. It is relatively fast. * [`polywas`](https://github.com/monprin/polywas) : A layout for GWAS (genome-wide association study) data illustrating inter-locus relationships. * [`spread`](https://github.com/cytoscape/cytoscape.js-spread) : The Spread physics simulation (force-directed) layout tries to use all the viewport space, but it can be configured to produce a tighter result. It uses the CoSE algorithm initially, and it uses Gansner and North for the spread phase. * [`springy`](https://github.com/cytoscape/cytoscape.js-springy) : The Springy physics simulation layout. It's a basic physics (force-directed) layout. * [`tidytree`](https://github.com/chuckzel/cytoscape-tidytree) : A layout specifically for trees that allows for a non-layered layout. ## API extensions * [`all-paths`](https://github.com/daniel-dx/cytoscape-all-paths) : Gets all longest, directed paths. * [`clipboard`](https://github.com/iVis-at-Bilkent/cytoscape.js-clipboard) : Adds copy-paste utilities to Cytoscape.js. * [`dblclick`](https://github.com/lambdalisue/cytoscape-dblclick) : Adds a `dblclick` event to Cytoscape.js. * [`graphml`](https://github.com/iVis-at-Bilkent/cytoscape.js-graphml) : Adds GraphML import and export functionality to Cytoscape.js. * [`layout-utilities`](https://github.com/iVis-at-Bilkent/cytoscape.js-layout-utilities) : Provides miscellenaous layout utilities in order to manage the placement of nodes or components without layout information. * [`pdf-export`](https://github.com/cytoscape/cytoscape.js-pdf-export) : PDF exporter. * [`undo-redo`](https://github.com/iVis-at-Bilkent/cytoscape.js-undo-redo) : Adds undo-redo APIs to Cytoscape.js. * [`view-utilities`](https://github.com/iVis-at-Bilkent/cytoscape.js-view-utilities) : Adds search and highlight APIs to Cytoscape.js. ## Utility packages * [`Cytoscape.js Schema`](https://github.com/AZaitzeff/cytoscape_js_schema) : A JSON Schema for the Cytoscape.js JSON graph format. * [`cytosnap`](https://github.com/cytoscape/cytosnap) : A Node.js package that renders images of Cytoscape.js graphs on the server using Puppeteer. * [`Cyjs.NET`](https://fslab.org/Cyjs.NET/) : An interface for Cytoscape.js in F#. * [`ngx-cytoscape`](https://github.com/calvinvette/ngx-cytoscape) : An Angular 5+ component for Cytoscape.js. * [`react-cytoscapejs`](https://github.com/plotly/react-cytoscapejs) : A [React](https://reactjs.org) component for Cytoscape.js network visualisations. * [`cytoscape-react`](https://github.com/mwri/cytoscape-react) : Create ``s and `s` specified with JSX. * [`sif.js`](https://github.com/jmvillaveces/sif.js) : A javascript library to parse simple interaction file (SIF) files. * [`sbgn-stylesheet`](https://github.com/PathwayCommons/cytoscape-sbgn-stylesheet) : A stylesheet preset for [SBGN](https://sbgn.github.io/sbgn/). * [`sbgnml-to-cytoscape`](https://github.com/PathwayCommons/sbgnml-to-cytoscape) : Converts XML-based [SBGN](https://sbgn.github.io/sbgn/) files to Cytoscape.js JSON. * [`vue-cytoscape`](https://www.npmjs.com/package/vue-cytoscape) : A [Vue](https://vuejs.org) component for Cytoscape.js. * [`cytoscape-pptx`](https://github.com/Hoogkamer/cytoscape-pptx) : Export a Cytoscape.js graph into a Powerpoint slide. ## Registration To register an extension, make the following call: `cytoscape( type, name, extension );` The value of `type` can take on the following values: * `'core'` : The extension adds a core function. * `'collection'` : The extension adds a collection function. * `'layout'` : The extension registers a layout prototype. The `name` argument indicates the name of the extension, e.g.: the following code registers `eles.fooBar()`: ``` cytoscape('collection', 'fooBar', function(){ return 'baz'; });` ``` ## Project setup 1. Create a repository on GitHub for your extension's code 1. Use [rollup-starter-lib](https://github.com/rollup/rollup-starter-lib) to create the project's scaffolding. Alternatively, manually generate the project configuration files with your favourite bundler. 1. Use [Babel](https://babeljs.io) if you want to support older browsers with your extension. The `rollup-starter-lib` repo has an example in the [`babel` branch](https://github.com/rollup/rollup-starter-lib/tree/babel). 1. The default export of your extension should be a registration function, e.g.: ``` export default function register(cytoscape){ cytoscape('collection', 'fooBar', fooBarFunction); } ``` 1. You may want to support automatic registration for consumers who use traditional ` ``` or ```html ``` To use Cytoscape.js from a Content Delivery Network ([CDN]), use one of the following [CDN]s: - [CDNJS](https://cdnjs.com/libraries/cytoscape) - [jsDelivr](https://www.jsdelivr.com/package/npm/cytoscape?path=dist) - [Unpkg](https://unpkg.com/cytoscape/dist/) Please do not hotlink to copies of Cytoscape.js from the documentation --- they're just for the demos. The available files are available under [`cytoscape/dist/`](https://github.com/cytoscape/cytoscape.js/tree/master/dist) in the `npm` package: | Build File | Minified | Module System | Description | | --- | --- | --- | --- | | `cytoscape.min.js` | yes | [UMD] (Universal Module Definition) | For use with globals or `require()`. | | `cytoscape.umd.js` | no | [UMD] | For debugging with globals or `require()`. | | `cytoscape.esm.min.mjs` | yes | [ESM] (ECMAScript, uses `import` / `export`) | For use with modern `import`/`export`, i.e. `import cytoscape from 'cytoscape'`. | | `cytoscape.cjs.js` | no | [CJS] (CommonJS, used by [Node.js]) | Intended to be consumed automatically by [Node.js] or a bundler like [Webpack] via `require('cytoscape')`. | | `cytoscape.esm.mjs` | no | [ESM] | Intended to be consumed automatically by [Node.js] or a bundler like [Webpack] via `import cytoscape from 'cytoscape'`. This file may alternatively be used for manually debugging ESM builds or pages that use ESM. | Note that Cytoscape.js uses the dimensions of your HTML DOM element container for layouts and rendering at initialisation. Thus, it is very important to place your CSS stylesheets in the `` before any Cytoscape.js-related code. Otherwise, dimensions may be sporadically reported incorrectly, resulting in undesired behaviour. Your stylesheet may include something like this (assuming a DOM element with ID `cy` is used as the container): ```css #cy { width: 300px; height: 300px; display: block; } ``` To install Cytoscape.js via npm: ```bash npm install cytoscape ``` To use Cytoscape.js in an [ESM] environment with npm (e.g. [Webpack] or [Node.js] with the [`esm`](https://www.npmjs.com/package/esm) package): ```js import cytoscape from 'cytoscape'; ``` Note that the following will not work, as you must use the default export: ```js import * as cytoscape from 'cytoscape'; // won't work ``` To use Cytoscape.js in a CommonJS environment like Node.js: ```js var cytoscape = require('cytoscape'); ``` To use Cytoscape.js with [AMD]/[Require.js]: ```js require(['cytoscape'], function(cytoscape){ // ... }); ``` To install Cytoscape.js via Bower: ```bash bower install cytoscape ``` To install Cytoscape.js via Meteor/Atmosphere: ```bash npm install cytoscape ``` Cytoscape.js supports environments with ES5 or newer, as it is transpiled by Babel and it uses only basic features of the standard library. Feature detection is used for optional features that improve performance. However, a future version of Cytoscape.js may require a more up-to-date version of the standard library. You may want to use [`core-js`](https://github.com/zloirock/core-js) if you want to support old browsers in future. ## Initialisation An instance of Cytoscape.js corresponds to a graph. You can create an instance as follows: ```js var cy = cytoscape({ container: document.getElementById('cy') // container to render in }); ``` You can pass a jQuery instance as the `container` for convenience: ```js var cy = cytoscape({ container: $('#cy') }); ``` If you are running Cytoscape.js in [Node.js] or otherwise running it headlessly, you will not specify the `container` option. In implicitly headless environments like [Node.js], an instance is automatically headless. To explicitly run a headless instance (e.g. in the browser) you can specify `options.headless` as `true`. ## Specifying basic options For visualisation, the `container`, [`elements`](#notation/elements-json), [`style`](#style), and [`layout`](#layouts) options usually should be set: ```js var cy = cytoscape({ container: document.getElementById('cy'), // container to render in elements: [ // list of graph elements to start with { // node a data: { id: 'a' } }, { // node b data: { id: 'b' } }, { // edge ab data: { id: 'ab', source: 'a', target: 'b' } } ], style: [ // the stylesheet for the graph { selector: 'node', style: { 'background-color': '#666', 'label': 'data(id)' } }, { selector: 'edge', style: { 'width': 3, 'line-color': '#ccc', 'target-arrow-color': '#ccc', 'target-arrow-shape': 'triangle', 'curve-style': 'bezier' } } ], layout: { name: 'grid', rows: 1 } }); ``` ## Next steps Now that you have a core (graph) instance with basic options, explore the [core API](#core). It's your entry point to all the features in Cytoscape.js. If you have code questions about Cytoscape.js, please feel free to [post your question to Stackoverflow](http://stackoverflow.com/questions/ask?tags=cytoscape.js). [CDN]: https://en.wikipedia.org/wiki/Content_delivery_network [UMD]: https://github.com/umdjs/umd [ESM]: https://nodejs.org/api/esm.html#introduction [ES6]: https://www.w3schools.com/js/js_es6.asp [CJS]: https://nodejs.org/api/modules.html#modules-commonjs-modules [AMD]: https://en.wikipedia.org/wiki/Asynchronous_module_definition [Node.js]: https://en.wikipedia.org/wiki/Node.js [Webpack]: https://webpack.js.org/ [Require.js]: https://requirejs.org/ ================================================ FILE: documentation/md/intro.md ================================================ ## Factsheet * A fully featured graph library written in pure JS * Permissive open source license (MIT) for the core Cytoscape.js library and all first-party extensions * Used in commercial projects and open-source projects in production * Designed for users first, for both frontfacing app usecases *and* developer usecases * Highly optimised * No external dependencies * Compatible with * All modern browsers * Legacy browsers with ES5 and canvas support * ES5 and canvas support are required, and feature detection is used for optional performance enhancements. * Browsers circa 2012 support ES5 fully: IE10, Chrome 23, Firefox 21, Safari 6 ([caniuse](https://caniuse.com/#feat=es5)) * Browsers with partial but sufficient ES5 support also work, such as IE9 and Firefox 4. * The documentation and examples are not optimised for old browsers, although the library itself is. Some demos may not work in old browsers in order to keep the demo code simple. * Module systems * ES modules * UMD * CommonJS/Node.js * Globals * AMD/Require.js * Package managers * npm * yarn * bower * jspm * Supports the [R language](https://www.r-project.org/) via [RCyjs](http://www.bioconductor.org/packages/release/bioc/html/RCyjs.html) * Supports rendering images of graphs on Node.js with [Cytosnap](https://github.com/cytoscape/cytosnap) * Has a large suite of tests that can be run in the browser or the terminal * Documentation includes live code examples, doubling as an interactive requirements specification; example graphs may also be freely modified in your browser's JS console * Fully serialisable and deserialisable via JSON * Uses layouts for automatically or manually positioning nodes * Supports selectors for terse filtering and graph querying * Uses stylesheets to separate presentation from data in a rendering agnostic manner * Abstracted and unified touch events on top of a familiar event model * Builtin support for standard gestures on both desktop and touch * Chainable for convenience * Supports functional programming patterns * Supports set theory operations * Includes graph theory algorithms, from BFS to PageRank * Animatable graph elements and viewport * Fully extendable (and extensions can be autoscaffolded for you) * Well maintained * Weekly patch release cadence * Monthly feature release cadence * Listed by [Zenodo](https://doi.org/10.5281/zenodo.831800) for per-version DOIs ## Who uses Cytoscape.js ### Big-name tech * [Amazon](http://amazon.com) * [Apache Software Foundation](https://apache.org) * [Cisco](https://www.cisco.com) * [Elastic](https://www.elastic.co/) * [Fujitsu](https://www.fujitsu.com) * [GitHub](https://github.com) * [Google](https://google.com) * [Hewlett Packard Enterprise](https://www.hpe.com) * [IBM](https://www.ibm.com) * [Linux Foundation](https://www.linuxfoundation.org) * [Meta](https://meta.com) * [Microsoft](https://microsoft.com) * [MongoDB](https://www.mongodb.com) * [Puppet](https://puppet.com) * [RedHat](https://www.redhat.com) * [Tencent](https://www.tencent.com/en-us/) * [Uber](https://uber.com) ### Government * [DARPA](http://www.darpa.mil) * [GCHQ](https://www.gchq.gov.uk/) * [NHS](https://www.nhs.uk) * [NOAA](https://www.noaa.gov) * [NSA](https://www.nsa.gov/) ### Research resources * [APID](http://cicblade.dep.usal.es:8080/APID/init.action) * [AraQTL](https://www.bioinformatics.nl/AraQTL/) * [Arches](https://www.archesproject.org) * [BioCyc](http://biocyc.org/) * [BioGRID](http://thebiogrid.org/) * [BioPlex](https://bioplex.hms.harvard.edu/) * [cBioPortal](https://www.cbioportal.org) * [ConsensusPathDB](http://cpdb.molgen.mpg.de/) * [dSysMap](https://dsysmap.irbbarcelona.org) * [Elsevier](https://www.elsevier.com) * [EnrichmentMap](https://enrichmentmap.org) * [Ensembl](https://www.ensembl.org) * [FlyBase](https://flybase.org/) * [Galaxy](https://galaxyproject.org) * [GeneMANIA](http://genemania.org) * [GraphSpace](http://graphspace.org) * [Intermine](http://intermine.org/) * [MetagenomeScope](https://marbl.github.io/MetagenomeScope/) * [NDEx](http://www.ndexbio.org/) * [Newt](https://newteditor.org/) * [OpenBio](https://www.openbio.eu) * [Pathway Commons](http://www.pathwaycommons.org) * [PINet](http://pinet.tsl.ac.uk) * [Plotly (Dash)](https://plotly.com) * [QuantStack (Jupyter)](https://quantstack.net) * [STOCKS](https://gbcs.embl.de/portal/tiki-index.php?page=STOCKS) * [SynBioHub](https://synbiohub.org) * [The Gene Ontology Consortium](http://geneontology.org) * [WormBase](https://wormbase.org/) ### Research & non-profits * [Aalto University](https://www.aalto.fi/) * [Albert Ludwig University of Freiburg](https://uni-freiburg.de/en/) * [Barcelona Supercomputing Center](https://www.bsc.es) * [BBC](https://www.bbc.com) * [Ben-Gurion University of the Negev](http://bgu.ac.il/) * [Berkeley Lab](https://www.lbl.gov) * [Broad Institute](https://www.broadinstitute.org) * [Carnegie Mellon](https://www.cmu.edu) * [Earlham Institute](https://www.earlham.ac.uk) * [École Polytechnique Fédérale de Lausanne (EPFL)](https://www.epfl.ch) * [Erasmus Medical Center](https://www.erasmusmc.nl/) * [European Molecular Biology Laboratory (EMBL)](https://www.embl.org/) * [FAIRplus](https://fairplus-project.eu) * [Georgia Institute of Technology](https://www.gatech.edu) * [Getty](https://www.getty.edu) * [Harvard University](https://www.harvard.edu) * [HOPR](https://hoprnet.org) * [Howard Hughes Medical Institute](https://www.hhmi.org/) * [Idaho National Laboratory](https://inl.gov) * [Indiana University](https://www.iu.edu) * [INRAe](https://www.inrae.fr) * [Institut Curie](https://institut-curie.org) * [Institute for Systems Biology](https://isbscience.org) * [International Rice Research Institute](https://www.irri.org) * [Johns Hopkins University](https://www.jhu.edu) * [Lerner Research Institute, Cleveland Clinic](https://www.lerner.ccf.org) * [Maastricht University](https://www.maastrichtuniversity.nl) * [Max Plank Institute](https://mpg.de) * [Nanyang Technological University](https://www.ntu.edu.sg) * [Network of European Bioimage Analysts](http://eubias.org/NEUBIAS) * [NHS](https://www.nhs.uk) * [Norwich Research Park](https://www.norwichresearchpark.com) * [Observational Health Data Sciences and Informatics (OHDSI)](http://www.ohdsi.org/) * [Open Ownership](https://www.openownership.org/) * [Oregon Health and Science University](https://www.ohsu.edu) * [Paris Sciences et Lettres University](https://psl.eu/en) * [Penn State University](https://www.psu.edu) * [Research Institute for Fragrance Materials](https://www.rifm.org) * [Sanger Institute](http://www.sanger.ac.uk/) * [Spanish National Bioinformatics Institute](https://inb-elixir.es/) * [SRI International](https://www.sri.com) * [Stanford University](https://www.stanford.edu) * [The Foundation for Research and Technology – Hellas](https://www.forth.gr) * [The Molecular Science Software Institute](http://molssi.org/) * [Tsinghua University](https://www.tsinghua.edu.cn) * [UNIST](https://www.unist.ac.kr) * [Università degli Studi di Milano - Bicocca](https://www.unimib.it) * [University of Alabama](https://www.ua.edu) * [University of Barcelona](https://www.ub.edu) * [University of California, Berkeley](https://www.berkeley.edu) * [University of California, San Diego](http://www.ucsd.edu) * [University of California, San Francisco](https://www.ucsf.edu) * [University of Cambridge](http://www.cam.ac.uk/) * [University of Electronic Science and Technology of China](http://en.uestc.edu.cn/) * [University of Heidelberg](https://www.uni-heidelberg.de) * [University of Helsinki](https://www.helsinki.fi) * [University of Jyväskylä](https://www.jyu.fi) * [University of Leipzig](http://uni-leipzig.de) * [University of Mannheim](https://www.uni-mannheim.de/en/) * [University of Maryland](https://umd.edu/) * [University of Toronto](https://utoronto.ca) * [University of Utah](https://www.utah.edu) * [Vanderbilt University](https://www.vanderbilt.edu) * [Virginia Tech](http://www.vt.edu) * [Wageningen University and Research](https://www.wur.nl) * [World Monuments Fund](https://www.wmf.org) ### Libraries * [Mermaid](https://mermaid.js.org) ### Apps & services * [Apache AGE](https://age.apache.org) * [AppZen](https://www.appzen.com/) * [Apromore](https://apromore.com) * [Aras](https://www.aras.com/en) * [ArcadeDB](https://arcadedb.com/) * [Athenz](https://www.athenz.io) * [AWS Perspective](https://github.com/awslabs/aws-perspective) * [Azure Bicep](https://docs.microsoft.com/en-us/azure/azure-resource-manager/bicep/overview) * [Bell Media](https://www.bellmedia.ca/) * [BlueSailCRM](https://www.bluesailcrm.com) * [Budō Lineage Tree, The](https://budotree.judoc.org) * [BugBug](https://bugbug.io) * [Cadence](https://cadenceworkflow.io) * [CanSyL](https://crossbar.kansil.org) * [Chaos Mesh](https://chaos-mesh.org) * [Classcraft](https://www.classcraft.com) * [CompanyTracker](https://www.companytracker.be) * [CyberSift](https://www.cybersift.io) * [Cylc](https://cylc.github.io) * [Dendron](https://www.dendron.so) * [DGB Technologies](https://www.dgbtek.com) * [Dockflow](https://dockflow.com) * [DroneDeploy](https://www.dronedeploy.com) * [DynaLearn](https://dynalearn.nl) * [Flowchart.fun](https://flowchart.fun/) * [Foxglove](https://foxglove.dev) * [Ganister](https://www.ganister.eu) * [Global CTO Forum](https://globalctoforum.org) * [Graphlytic](https://graphlytic.biz) * [GraphWalker](http://graphwalker.github.io) * [GREZI](https://grezi.fr) * [HackerTarget](https://hackertarget.com) * [HanziGraph](https://hanzigraph.com/) * [How-4](https://www.how-4.com) * [ICSI Haystack Panopticon, The](https://haystack.mobi/panopticon/) * [InfoTrack](https://www.infotrack.com.au) * [Intercax](https://intercax.com) * [InterpretML](https://interpret.ml) * [IPFS](https://ipfs.io) & [libp2p](https://libp2p.io/) * [Jiva.ai](https://www.jiva.ai) * [JsDelivr](https://www.jsdelivr.com) * [Juggl](https://juggl.io) * [Kanji Map, The](https://thekanjimap.com) * [Kausal Paths](https://kausal.tech) * [Kiali](https://kiali.io) * [Kibana](https://www.elastic.co/kibana) * [KPN](https://www.kpn.com) * [KuKaKo](https://github.com/OSC-JYU/KuKaKo) * [Layer5](https://layer5.io) * [LearnAwesome](https://learnawesome.org) * [Machine2Learn](https://machine2learn.com) * [Manifold Finance](https://www.manifoldfinance.com) * [Mars](https://docs.pymars.org/en/latest/) * [Meshery](https://meshery.io) * [Musicalized](https://en.wesound.academy) * [Network Weathermap](https://github.com/6illes/weathermap) * [New Relic](https://newrelic.com) * [nFlows](https://www.nflows.com) * [NodeLand](https://nodeland.io/) * [Nx](https://nx.dev) * [Obsidian](https://obsidian.md) * [Onepanel](https://www.onepanel.ai) * [OpenDialog](https://opendialog.ai) * [Orchidex](https://orchidex.org) * [Panaya](https://www.panaya.com) * [Pinpoint](https://pinpoint-apm.gitbook.io/pinpoint/) * [RecallGraph](https://recallgraph.tech) * [Roam](https://roamresearch.com) * [Signifyd](https://www.signifyd.com) * [SQL Frames](https://sqlframes.com) * [Steemit](https://steemit.com) * [stixview](https://github.com/traut/stixview) * [T-Rank](https://trank.no) * [ThreatConnect](https://threatconnect.com) * [ThreatCrowd](https://www.threatcrowd.org) * [TopoViewer](https://github.com/asadarafat/topoViewer) * [Underlay](https://www.underlay.org) * [VAC](https://vac.dev) * [wanderer.ai](https://wanderer.ai) * [Wisecube AI](https://www.wisecube.ai/orpheus/) * [Zubir Said Knowledge Graph](https://zubirsaid.sg) ### Let us know [Let us know that you're using Cytoscape.js.](https://github.com/cytoscape/cytoscape.js/issues/914) ## About Cytoscape.js is an open-source [graph theory](http://en.wikipedia.org/wiki/Graph_theory) (a.k.a. network) library written in JS. You can use Cytoscape.js for graph analysis and visualisation. Cytoscape.js allows you to easily display and manipulate rich, interactive graphs. Because Cytoscape.js allows the user to interact with the graph and the library allows the client to hook into user events, Cytoscape.js is easily integrated into your app, especially since Cytoscape.js supports both desktop browsers, like Chrome, and mobile browsers, like on the iPad. Cytoscape.js includes all the gestures you would expect out-of-the-box, including pinch-to-zoom, box selection, panning, et cetera. Cytoscape.js also has graph analysis in mind: The library contains many useful functions in graph theory. You can use Cytoscape.js headlessly on Node.js to do graph analysis in the terminal or on a web server. Cytoscape.js is an open-source project, and anyone is free to contribute. For more information, refer to the [GitHub README](https://github.com/cytoscape/cytoscape.js). The library was created at the [Donnelly Centre](http://thedonnellycentre.utoronto.ca) at the [University of Toronto](http://www.utoronto.ca/). It is the successor of [Cytoscape Web](http://cytoscapeweb.cytoscape.org/). ## Packages * npm : `npm install cytoscape` * yarn : `yarn install cytoscape` * bower : `bower install cytoscape` * jspm : `jspm install npm:cytoscape` ## Releases {{#if major_release}}
    {{#each major_release}}
  • {{this.version}} {{#if minor_release}} {{/if}}
  • {{/each}}
{{/if}} ## Citation To cite Cytoscape.js in a paper, please cite the Oxford Bioinformatics issue: *Cytoscape.js: a graph theory library for visualisation and analysis* Franz M, Lopes CT, Huck G, Dong Y, Sumer O, Bader GD [Bioinformatics (2016) 32 (2): 309-311 first published online September 28, 2015 doi:10.1093/bioinformatics/btv557](http://bioinformatics.oxfordjournals.org/content/32/2/309) ([PDF](http://bioinformatics.oxfordjournals.org/content/32/2/309.full.pdf)) - [PubMed abstract for the original 2016 article](http://www.ncbi.nlm.nih.gov/pubmed/26415722) - [PubMed abstract for the 2023 update article](https://pubmed.ncbi.nlm.nih.gov/36645249) ## Funding Funding for Cytoscape.js and Cytoscape is provided by NRNB (U.S. National Institutes of Health, National Center for Research Resources grant numbers P41 RR031228 and GM103504) and by NIH grants 2R01GM070743 and 1U41HG006623. The following organizations help develop Cytoscape: [ISB](http://www.systemsbiology.org) | [UCSD](http://www.ucsd.edu) | [MSKCC](http://cbio.mskcc.org) | [Pasteur](http://www.pasteur.fr) | [Agilent](http://www.agilent.com/) | [UCSF](http://www.ucsf.edu/) | [Unilever](http://www.unilever.com) | [Toronto](http://www.utoronto.ca) | [NCIBI](http://portal.ncibi.org/gateway/index.html) | [NRNB](http://nrnb.org) ================================================ FILE: documentation/md/layout/emit.md ================================================ ================================================ FILE: documentation/md/layout/events.md ================================================ ================================================ FILE: documentation/md/layout/intro.md ================================================ The function of a layout is to set the positions on the nodes in the graph. Layouts are [extensions](#extensions/layouts) of Cytoscape.js such that it is possible for anyone to write a layout without modifying the library itself. Several layouts are included with Cytoscape.js by default, and their options are described in the sections that follow with the default values specified. Note that you must set `options.name` to the name of the layout to specify which one you want to run. Each layout has its own algorithm for setting the position for each node. This algorithm influences the overall shape of the graph and the lengths of the edges. A layout's algorithm can be customised by setting its options. Therefore, edge lengths can be controlled by setting the layout options appropriately. For force-directed (physics) layouts, there is generally an option to set a weight to each edge to affect the relative edge lengths. Edge length can also be affected by options like spacing factors, angles, and overlap avoidance. Setting edge length depends on the particular layout, and some layouts will allow for more precise edge lengths than others. A layout runs on the subgraph that you specify. All elements in the graph are used for [`cy.layout()`](#cy.layout). The specified subset of elements is used for [`eles.layout()`](#eles.layout). In either case, the state of each element does not affect whether the element is considered in the layout. For example, an [invisible node](#style/visibility) is repositioned by a layout if the node is included in the layout's set of elements. You may use `eles.layout()` to address complex use-cases, like running a different layout on each component. When running a headless instance, you may need to specify the `boundingBox` in order to indicate to the layout the area in which it can place nodes. In a rendered instance, the bounds may be inferred by the size of the HTML DOM element `container`. Refer to [the blog for an in-depth layout tutorial](https://blog.js.cytoscape.org/2020/05/11/layouts). ================================================ FILE: documentation/md/layout/manipulation.md ================================================ Layouts have a set of functions available to them, which allow for more complex behaviour than the primary run-one-layout-at-a-time usecase. A new, developer accessible layout can be made via [`cy.layout()`](#core/visuals/cy.layout). ================================================ FILE: documentation/md/layout/on.md ================================================ ================================================ FILE: documentation/md/layout/one.md ================================================ ================================================ FILE: documentation/md/layout/promiseOn.md ================================================ ## Examples ```js var layout = cy.layout({ name: 'random' }); layout.pon('layoutstop').then(function( event ){ console.log('layoutstop promise fulfilled'); }); layout.run(); ``` ================================================ FILE: documentation/md/layout/removeListener.md ================================================ ================================================ FILE: documentation/md/layout/run.md ================================================ ## Details If the layout is asynchronous (i.e. continuous), then calling `layout.run()` simply starts the layout. Synchronous (i.e. discrete) layouts finish before `layout.run()` returns. Whenever the layout is started, the `layoutstart` event is emitted. The layout will emit the `layoutstop` event when it has finished or has been otherwise stopped (e.g. by calling `layout.stop()`). The developer can listen to `layoutstop` using [`layout.on()`](#layouts/layout-events/layout.on) or setting the layout options appropriately with a callback. ## Examples ```js var layout = cy.layout({ name: 'random' }); layout.run(); ``` ================================================ FILE: documentation/md/layout/stop.md ================================================ ## Details Calling `layout.stop()` stops an asynchronous (continuous) layout. It's useful if you want to prematurely stop a running layout. ## Examples ```js var layout = cy.layout({ name: 'cose' }); layout.run(); // some time later... setTimeout(function(){ layout.stop(); }, 100); ``` ================================================ FILE: documentation/md/layouts/breadthfirst.md ================================================ The `breadthfirst` layout puts nodes in a hierarchy, based on a breadthfirst traversal of the graph. It is best suited to trees and forests in its default downward direction, and it is best suited to DAGs in its circle mode. ================================================ FILE: documentation/md/layouts/circle.md ================================================ The `circle` layout puts nodes in a circle. ================================================ FILE: documentation/md/layouts/concentric.md ================================================ The `concentric` layout positions nodes in concentric circles, based on a metric that you specify to segregate the nodes into levels. This layout sets the `concentric` value in [`ele.scratch()`](#ele.scratch). ================================================ FILE: documentation/md/layouts/cose.md ================================================ The `cose` (Compound Spring Embedder) layout uses a physics simulation to lay out graphs. It works well with noncompound graphs and it has additional logic to support compound graphs well. It was implemented by [Gerardo Huck](https://www.linkedin.com/in/gerardohuck) as part of Google Summer of Code 2013 (Mentors: Max Franz, Christian Lopes, Anders Riutta, Ugur Dogrusoz). Based on the article ["A layout algorithm for undirected compound graphs"](http://dl.acm.org/citation.cfm?id=1498047&CFID=429377863&CFTOKEN=94691144) by Ugur Dogrusoz, Erhan Giral, Ahmet Cetintas, Ali Civril and Emek Demir. The `cose` layout is very fast and produces good results. The [`cose-bilkent`](https://github.com/cytoscape/cytoscape.js-cose-bilkent) extension is an evolution of the algorithm that is more computationally expensive but produces near-perfect results. ================================================ FILE: documentation/md/layouts/grid.md ================================================ The `grid` layout puts nodes in a well-spaced grid. ================================================ FILE: documentation/md/layouts/null.md ================================================ The `null` layout puts all nodes at (0, 0). It's useful for debugging purposes. ================================================ FILE: documentation/md/layouts/preset.md ================================================ The `preset` layout puts nodes in the positions you specify manually. ================================================ FILE: documentation/md/layouts/random.md ================================================ The `random` layout puts nodes in random positions within the viewport. ================================================ FILE: documentation/md/links.md ================================================
Created at the [University of Toronto](https://utoronto.ca) and published in [Oxford Bioinformatics](#introduction/citation) ([2016](https://academic.oup.com/bioinformatics/article/32/2/309/1744007), [2023](https://academic.oup.com/bioinformatics/article/39/1/btad031/6988031)). Authored by: [Max Franz](https://github.com/maxkfranz), [Christian Lopes](https://github.com/chrtannus), [Dylan Fong](https://github.com/d2fong), [Mike Kucera](https://github.com/mikekucera), ..., [Gary Bader](https://baderlab.org)
================================================ FILE: documentation/md/notation.md ================================================ ## Graph model Cytoscape.js supports many different graph theory usecases. It supports directed graphs, undirected graphs, mixed graphs, loops, multigraphs, compound graphs (a type of hypergraph), and so on. We are regularly making additions and enhancements to the library, and we gladly accept [feature requests](https://github.com/cytoscape/cytoscape.js/issues/new) and [pull requests](https://github.com/cytoscape/cytoscape.js/blob/master/CONTRIBUTING.md). ## Architecture & API There are two components in the architecture that a programmer must be concerned with in order to use Cytoscape.js, the core (i.e. a graph instance) and the collection. In Cytoscape.js, the core is a programmer's main entry point into the library. From the core, a programmer can run layouts, alter the viewport, and perform other operations on the graph as a whole. The core provides several functions to access elements in the graph. Each of these functions returns a collection, a set of elements in the graph. Functions are available on collections that allow the programmer to filter the collection, perform operations on the collection, traverse the graph about the collection, get data about elements in the collection, and so on. Note that a collection is immutable by default, meaning that the set of elements within a collection can not be changed. The API returns a new collection with different elements when necessary, instead of mutating the existing collection. This allows the programmer to safely use set theory operations on collections, use collections functionally, and so on. Note that because a collection is just a list of elements, it is relatively inexpensive to create new collections. For very performance intensive code, a collection can be treated as mutable with [`eles.merge()`](#eles.merge) and [`eles.unmerge()`](#eles.unmerge). Most apps should never need these functions. ## Functions There are several types that different functions can be executed on, and the variable names used to denote these types in the documentation are outlined below: | Shorthand | Works on | | ------------- | ------------------------------------------------------- | | `cy` | the core | | `eles` | a collection of one or more elements (nodes and edges) | | `ele` | a collection of a single element (node or edge) | | `nodes` | a collection of one or more nodes | | `node` | a collection of a single node | | `edges` | a collection of one or more edges | | `edge` | a collection of a single edge | | `layout` | a layout | | `ani ` | an animation | By default, a function returns a reference back to the calling object to allow for chaining (e.g. `obj.fn1().fn2().fn3()`). Unless otherwise indicated in this documentation, a function is chainable in this manner unless a different return value is specified. This applies both to the core and to collections. For functions that return a value, note that calling a singular --- `ele`, `node`, or `edge` --- function on a collection of more than one element will return the expected value for only the first element. ## Object ownership When passing objects to Cytoscape.js for creating elements, animations, layouts, etc., the objects are considered owned by Cytoscape. Objects like elements have several levels to them, and doing deep copies of those objects every time they are passed to Cytoscape creates additional expense. When desired, the programmer can copy objects manually before passing them to Cytoscape. However, copying is not necessary for most programmers most of the time. ## Gestures Cytoscape.js supports several gestures: * Grab and drag background to pan : touch & desktop * Pinch to zoom : touch & desktop (with supported trackpad) * Mouse wheel to zoom : desktop * Two finger trackpad up or down to zoom : desktop * Tap to select : touch & desktop * Tap background to unselect : desktop * Taphold background to unselect : desktop & touch * Multiple selection via modifier key (shift, command, control, alt) + tap : desktop * Box selection : touch (three finger swipe) & desktop (modifier key + mousedown then drag) * Grab and drag nodes : touch & desktop All gesture actions can be controlled by the programmer, toggling them on or off whenever needed. ## Position A node's position refers to the centre point of its body. There is an important distinction to make for position: A position may be a _model_ position or a _rendered_ position. A model position --- as its name suggests --- is the position stored in the model for an element. An element's model position remains constant, despite changes to zoom and pan. Numeric style property values are specified in model co-ordinates, e.g. a node with width 20px will be 20 pixels wide at zoom 1. A rendered position is an on-screen location relative to the viewport. For example, a rendered position of `{ x: 100, y: 100 }` specifies a point 100 pixels to the right and 100 pixels down from the top-left corner of the viewport. The model position and rendered position are the same at zoom 1 and pan (0, 0). An element's rendered position naturally changes as zoom and pan changes, because the element's on-screen position in the viewport changes as zooming and panning are applied. Panning is always measured in rendered coordinates. In this documentation, "position" refers to model position unless otherwise stated. A node's position can be set manually, or it can be set automatically using a [layout](#layouts). Because the positions of two nodes influence the lengths of the edges in between them, a layout effectively sets edge lengths. ## Elements JSON Examples are given that outline format of the elements JSON used to load elements into Cytoscape.js: ```js cytoscape({ container: document.getElementById('cy'), elements: [ // flat array of nodes and edges { // node n1 group: 'nodes', // 'nodes' for a node, 'edges' for an edge // NB the group field can be automatically inferred for you but specifying it // gives you nice debug messages if you mis-init elements data: { // element data (put json serialisable dev data here) id: 'n1', // mandatory (string) id for each element, assigned automatically on undefined parent: 'nparent', // indicates the compound node parent id; not defined => no parent // (`parent` can be effectively changed by `eles.move()`) }, // scratchpad data (usually temp or nonserialisable data) scratch: { _foo: 'bar' // app fields prefixed by underscore; extension fields unprefixed }, position: { // the model position of the node (optional on init, mandatory after) x: 100, y: 100 }, selected: false, // whether the element is selected (default false) selectable: true, // whether the selection state is mutable (default true) locked: false, // when locked a node's position is immutable (default false) grabbable: true, // whether the node can be grabbed and moved by the user pannable: false, // whether dragging the node causes panning instead of grabbing classes: ['foo', 'bar'], // an array (or a space separated string) of class names that the element has // DO NOT USE THE `style` FIELD UNLESS ABSOLUTELY NECESSARY // USE THE STYLESHEET INSTEAD style: { // style property overrides 'background-color': 'red' } }, { // node n2 data: { id: 'n2' }, renderedPosition: { x: 200, y: 200 } // can alternatively specify position in rendered on-screen pixels }, { // node n3 data: { id: 'n3', parent: 'nparent' }, position: { x: 123, y: 234 } }, { // node nparent data: { id: 'nparent' } }, { // edge e1 data: { id: 'e1', // inferred as an edge because `source` and `target` are specified: source: 'n1', // the source node id (edge comes from this node) target: 'n2' // the target node id (edge goes to this node) // (`source` and `target` can be effectively changed by `eles.move()`) }, pannable: true // whether dragging on the edge causes panning } ], layout: { name: 'preset' }, // so we can see the ids style: [ { selector: 'node', style: { 'label': 'data(id)' } } ] }); ``` The elements JSON may alternatively be in the following format, keyed by group: ```js cytoscape({ container: document.getElementById('cy'), elements: { nodes: [ { data: { id: 'a' } }, { data: { id: 'b' } } ], edges: [ { data: { id: 'ab', source: 'a', target: 'b' } } ] }, layout: { name: 'grid', rows: 1 }, // so we can see the ids style: [ { selector: 'node', style: { 'label': 'data(id)' } } ] }); ``` ## Compound nodes Compound nodes are an addition to the traditional graph model. A compound node contains a number of child nodes, similar to how a HTML DOM element can contain a number of child elements. Compound nodes are specified via the `parent` field in a nodes's `data`. Similar to the `source` and `target` fields of edges, the `parent` field is normally immutable: A node's parent can be specified when the node is added to the graph, and after that point, this parent-child relationship is immutable via `ele.data()`. However, you can move child nodes via [`eles.move()`](#collection/graph-manipulation/eles.move). A compound parent node does not have independent dimensions (position and size), as those values are automatically inferred by the positions and dimensions of the descendant nodes. As far as the API is concerned, compound nodes are treated just like regular nodes --- except in [explicitly compound functions](#collection/compound-nodes) like `node.parent()`. This means that traditional graph theory functions like `eles.dijkstra()` and `eles.neighborhood()` do not make special allowances for compound nodes, so you may need to make different calls to the API depending on your usecase. For instance: ```js var a = cy.$('#a'); // assume a compound node // the neighbourhood of `a` contains directly connected elements var directlyConnected = a.neighborhood(); // you may want everything connected to its descendants instead // because the descendants "belong" to `a` var indirectlyConnected = a.add( a.descendants() ).neighborhood(); ``` ================================================ FILE: documentation/md/performance.md ================================================ ## Background You may notice that performance starts to degrade on graphs with large numbers of elements. This happens for several reasons: * Performance is a function of graph size, so performance decreases as the number of elements increases. * The rich visual styles that Cytoscape.js supports can be expensive. Only drawing circles and straight lines is cheap, but drawing complex graphs is less so. * Edges are particularly expensive to render. Multigraphs become even more expensive with the need for bezier curve edges. * The performance of rendering a (bitmap) canvas is a function of the area that it needs to render. As such, an increased pixel ratio (as in high density displays, like on the iPad) can decrease rendering performance. ## Optimisations You can get much better performance out of Cytoscape.js by tuning your options, in descending order of significance: * **Use `cy.getElementById()`** : The [`cy.getElementById('foo')`](#cy.getElementById) function is the fastest way to get an element by ID. You can use `cy.$id('foo')` to type less. Searching by selector generally means you have to check each element in the collection, whereas getting by ID is much faster as a lookup table is used. The single ID selector (e.g. `cy.$('#foo')`) is optimised to also use the lookup table, but it does have the added cost of parsing. * **Batch element modifications** : Use [`cy.batch()`](#core/graph-manipulation/cy.batch) to modify many elements at once. * **Animations** : You will get better performance without animations. If using animations anyway: * [`eles.flashClass()`](#collection/style/eles.flashClass) is a cheaper alternative than a smooth animation. * Try to limit the number of concurrent animating elements. * When using transition animations in the style, make sure `transition-property` is defined only for states that you want to animate. If you have `transition-property` defined in a default state, the animation will try to run more often than if you limit it to particular states you actually want to animate. * **Function style property values** : While convenient, function style property values can be expensive. Thus, it may be worthwhile to use caching if possible, such as by using the lodash [`_.memoize()`](https://lodash.com/docs#memoize) function. If your style property value is a simple passthrough or linear mapping, consider using `data()` or `mapData()` instead. * **Labels** : Drawing labels is expensive. * If you can go without them or show them on tap/mouseover, you'll get better performance. * Consider not having labels for edges. * Consider setting `min-zoomed-font-size` in your style so that when labels are small --- and hard to read anyway --- they are not rendered. When the labels are at least the size you set (i.e. the user zooms in), they will be visible. * Background and outlines increase the expense of rendering labels. * **Simplify edge style** : Drawing edges can be expensive. * Set your edges `curve-style` to `haystack` in your stylesheet. Haystack edges are straight lines, which are much less expensive to render than `bezier` edges. This is the default edge style. * Use solid edges. Dotted and dashed edges are much more expensive to draw, so you will get increased performance by not using them. * Edge arrows are expensive to render, so consider not using them if they do not have any semantic meaning in your graph. * Opaque edges with arrows are more than twice as fast as semitransparent edges with arrows. * **Simplify node style** : Certain styles for nodes can be expensive. * Background images are very expensive in certain cases. The most performant background images are non-repeating (`background-repeat: no-repeat`) and non-clipped (`background-clip: none`). For simple node shapes like squares or circles, you can use `background-fit` for scaling and preclip your images to simulate software clipping (e.g. with [Image Magick](https://imagemagick.org) so it's automated). In lieu of preclipping, you could make clever use of PNGs with transparent backgrounds. * Node borders can be slightly expensive, so you can experiment with removing them to see if it makes a noticeable difference for your use case. * **Avoid compound and edge selectors** : Compound selectors (e.g. `$node node`) and edge selectors (e.g. `$node -> node`) can be expensive because traversals are necessary. * **Set a lower pixel ratio** : Because it is more expensive to render more pixels, you can set `pixelRatio` to `1` [in the initialisation options](#init-opts/pixelRatio) to increase performance for large graphs on high density displays. However, this makes the rendering less crisp. * **Compound nodes** : [Compound nodes](#notation/compound-nodes) make style calculations and rendering more expensive. If your graph does not require compound nodes, you can improve performance by not using compound parent nodes. * **Hide edges during interactivity** : Set `hideEdgesOnViewport` to `true` in your [initialisation options](#core/initialisation). This can make interactivity less expensive for very large graphs by hiding edges during pan, mouse wheel zoom, pinch-to-zoom, and node drag actions. This option makes a difference on only very, very large graphs. * **Recycle large instances** : Large instances can use a lot of memory, mostly due to canvas use. Recyling an instance will help to keep your memory usage lower than calling `cy.destroy()`, because you won't grow the heap as much and you won't invoke the garbage collector as much. * **Avoid many node overlays** : Overlays can not be cached. Limit the number of simultaneous nodes that have `overlay-opacity` with a non-zero value. The default stylesheet uses the overlay style only on the active element, which can only ever be one element at a time. * **Use textured zoom & pan** : Set `textureOnViewport` to `true` in your [initialisation options](#core/initialisation). Rather than rerendering the entire scene, this makes a texture cache of the viewport at the start of pan and zoom operations, and manipulates that instead. Makes panning and zooming smoother for very large graphs. This option makes a difference on only very, very large graphs. The renderer has support for more general texture caching, and so `textureOnViewport` is only useful if you really need the absolute cheapest option. ================================================ FILE: documentation/md/search-question.md ================================================ ================================================ FILE: documentation/md/selectors.md ================================================ ## Notes & caveats A selector functions similar to a CSS selector on DOM elements, but selectors in Cytoscape.js instead work on collections of graph elements. Note that wherever a selector may be specified as the argument to a function, a [`eles.filter()`](#collection/building--filtering/eles.filter)-style filter function may be used in place of the selector. For example: ```js cy.$('#j').neighborhood(function( ele ){ return ele.isEdge(); }); ``` The selectors can be combined together to make powerful queries in Cytoscape.js, for example: ```js // get all nodes with weight more than 50 and height strictly less than 180 cy.elements("node[weight >= 50][height < 180]"); ``` Selectors can be joined together (effectively creating a logical OR) with commas: ```js // get node j and the edges coming out from it cy.elements('node#j, edge[source = "j"]'); ``` It is important to note that strings need to be enclosed by quotation marks: ```js //cy.filter('node[name = Jerry]'); // this doesn't work cy.filter('node[name = "Jerry"]'); // but this does ``` Note that some characters need to be escaped for IDs, field names, and so on: ```js cy.filter('#some\\$funky\\@id'); ``` Some examples of these characters include `( ^ $ \ / ( ) | ? + * [ ] { } , . )`. Try to avoid using non-alpha-numeric characters for field names and IDs to keep things simple. If you must use special characters for IDs, use a data selector rather than an ID selector: ```js cy.filter('[id = "some$funky@id"]'); ``` Selectors can access array elements and object properties with the dot-notation: ```js // get node with first element of array labels = "Person" cy.elements('node[labels.0 = "Person"]'); // labels: ["Person"] // get node with nested object property first = "Jerry" cy.elements('node[name.first = "Jerry"]'); // { name: { first: "Jerry", last: "Foo" } } ``` ## Group, class, & ID **`node`, `edge`, or `*` (group selector)** Matches elements based on group (`node` for nodes, `edge` for edges, `*` for all). **`.className`** Matches elements that have the specified class (e.g. use `.foo` for a class named "foo"). **`#id`** Matches element with the matching ID (e.g. `#foo` is the same as `[id = 'foo']`) ## Data **`[name]`** Matches elements if they have the specified data attribute defined, i.e. not `undefined` (e.g. `[foo]` for an attribute named "foo"). Here, `null` is considered a defined value. **`[^name]`** Matches elements if the specified data attribute is not defined, i.e. `undefined` (e.g `[^foo]`). Here, `null` is considered a defined value. **`[?name]`** Matches elements if the specified data attribute is a [truthy](http://javascriptweblog.wordpress.com/2011/02/07/truth-equality-and-javascript/) value (e.g. `[?foo]`). **`[!name]`** Matches elements if the specified data attribute is a [falsey](http://javascriptweblog.wordpress.com/2011/02/07/truth-equality-and-javascript/) value (e.g. `[!foo]`). **`[name = value]`** Matches elements if their data attribute matches a specified value (e.g. `[foo = 'bar']` or `[num = 2]`). **`[name != value]`** Matches elements if their data attribute doesn't match a specified value (e.g. `[foo != 'bar']` or `[num != 2]`). **`[name > value]`** Matches elements if their data attribute is greater than a specified value (e.g. `[foo > 'bar']` or `[num > 2]`). **`[name >= value]`** Matches elements if their data attribute is greater than or equal to a specified value (e.g. `[foo >= 'bar']` or `[num >= 2]`). **`[name < value]`** Matches elements if their data attribute is less than a specified value (e.g. `[foo < 'bar']` or `[num < 2]`). **`[name <= value]`** Matches elements if their data attribute is less than or equal to a specified value (e.g. `[foo <= 'bar']` or `[num <= 2]`). **`[name *= value]`** Matches elements if their data attribute contains the specified value as a substring (e.g. `[foo *= 'bar']`). **`[name ^= value]`** Matches elements if their data attribute starts with the specified value (e.g. `[foo ^= 'bar']`). **`[name $= value]`** Matches elements if their data attribute ends with the specified value (e.g. `[foo $= 'bar']`). **`[name.0 = value]`** Matches elements if their data attribute is an array and the element at the defined index matches a specified value (e.g. `[foo.0 = 'bar']`). **`[name.property = value]`** Matches elements if their data attribute is an object and the property with the defined name matches a specified value (e.g. `[foo.bar = 'baz']`). **`@` (data attribute operator modifier)** Prepended to an operator so that it is case insensitive (e.g. `[foo @$= 'ar']`, `[foo @>= 'a']`, `[foo @= 'bar']`) **`!` (data attribute operator modifier)** Prepended to an operator so that it is negated (e.g. `[foo !$= 'ar']`, `[foo !>= 'a']`) **`[[]]` (metadata brackets)** Use double square brackets in place of square ones to match against metadata instead of data (e.g. `[[degree > 2]]` matches elements of degree greater than 2). The properties that are supported include `degree`, `indegree`, and `outdegree`. ## Compound nodes **`>` (child selector)** Matches direct child nodes of the parent node (e.g. `node > node`). **  (descendant selector)** Matches descendant nodes of the parent node (e.g. `node node`). **`$` (subject selector)** Sets the subject of the selector (e.g. `$node > node` to select the parent nodes instead of the children). ## State **Animation** * **`:animated`** : Matches elements that are currently being animated. * **`:unanimated`** : Matches elements that are not currently being animated. **Selection** * **`:selected`** : Matches selected elements. * **`:unselected`** : Matches elements that aren't selected. * **`:selectable`** : Matches elements that are selectable. * **`:unselectable`** : Matches elements that aren't selectable. **Locking** * **`:locked`** : Matches locked elements. * **`:unlocked`** : Matches elements that aren't locked. **Style** * **`:visible`** : Matches elements that are visible (i.e. `display: element` and `visibility: visible`). * **`:hidden`** : Matches elements that are hidden (i.e. `display: none` or `visibility: hidden`). * **`:transparent`** : Matches elements that are transparent (i.e. `opacity: 0` for self or parents). * **`:backgrounding`** : Matches an element if its background image is currently loading. * **`:nonbackgrounding`** : Matches an element if its background image not currently loading; i.e. there is no image or the image is already loaded). **User interaction:** * **`:grabbed`** : Matches elements that are being grabbed by the user. * **`:free`** : Matches elements that are not currently being grabbed by the user. * **`:grabbable`** : Matches elements that are grabbable by the user. * **`:ungrabbable`** : Matches elements that are not grabbable by the user. * **`:active`** : Matches elements that are active (i.e. user interaction, similar to `:active` in CSS). * **`:inactive`** : Matches elements that are inactive (i.e. no user interaction). * **`:touch`** : Matches elements when displayed in a touch-based enviroment (e.g. on a tablet). **In or out of graph** * **`:removed`** : Matches elements that have been removed from the graph. * **`:inside`** : Matches elements that have are in the graph (they are not removed). **Compound nodes** * **`:parent`** : Matches parent nodes (they have one or more child nodes). * **`:childless`** : Matches childless nodes (they have zero child nodes). * **`:child`** or **`:nonorphan`**: Matches child nodes (they each have a parent). * **`:orphan`** : Matches orphan nodes (they each have no parent). * **`:compound`** : Matches parent nodes. Also matches edges connected to parent nodes (they each have at least one parent node among source and target). **Edges** * **`:loop`** : Matches loop edges (same source as target). * **`:simple`** : Matches simple edges (i.e. as would be in a *simple* graph, different source as target). ================================================ FILE: documentation/md/style.md ================================================ Style in Cytoscape.js follows CSS conventions as closely as possible. In most cases, a property has the same name and behaviour as its corresponding CSS namesake. However, the properties in CSS are not sufficient to specify the style of some parts of the graph. In that case, additional properties are introduced that are unique to Cytoscape.js. For simplicity and ease of use, [specificity rules](http://www.w3.org/TR/css3-selectors/#specificity) are completely ignored in stylesheets. For a given style property for a given element, the last matching selector wins. ## Format The style specified at [initialisation](#core/initialisation) can be in a function format, in a plain JSON format, or in a string format --- the plain JSON format and string formats being more useful if you want to pull down the style from the server. ### String format Note that the trailing semicolons for each property, except for the last, are mandatory. Parsing will certainly fail without them. An example style file: ``` /* comments may be entered like this */ node { background-color: green; } ``` At initialisation: ```js cytoscape({ container: document.getElementById('cy'), // ... style: 'node { background-color: green; }' // probably previously loaded via ajax rather than hardcoded // , ... }); ``` ### Plain JSON format ```js cytoscape({ container: document.getElementById('cy'), // ... style: [ { selector: 'node', style: { 'background-color': 'red' } } // , ... ] // , ... }); ``` ### Function format ```js cytoscape({ container: document.getElementById('cy'), // ... style: cytoscape.stylesheet() .selector('node') .style({ 'background-color': 'blue' }) // ... // , ... }); ``` You may alternatively use `css` in place of `style`, e.g. `.selector( ... ).css( ... )` or `{ selector: ..., css: ... }`. ### Function values In the JSON or function stylesheet formats, it is possible to specify a function as the value for a style property. In this manner, the style value can be specified via a function on a per-element basis. Using a function as a style property value may be convenient in certain cases. However, it may not be a performant option. Thus, it may be worthwhile to use caching if possible, such as by using the lodash [`_.memoize()`](https://lodash.com/docs#memoize) function. Note that if using functions as style values, it will not be possible to serialise and deserialise your stylesheet to JSON proper. The function should not read any other style values, nor should it mutate state for elements or for the graph. Generally, it should depend only on reading `ele.data()`, `ele.scratch()`, `cy.data()`, or `cy.scratch()`. Example: ```js cytoscape({ container: document.getElementById('cy'), // ... style: cytoscape.stylesheet() .selector('node') .style({ 'background-color': function( ele ){ return ele.data('bg') } // which works the same as // 'background-color': 'data(bg)' }) // ... // , ... }); ``` ## Property types * Colours may be specified by name (e.g. `red`), hex (e.g. `#ff0000` or `#f00`), RGB (e.g. `rgb(255, 0, 0)`), or HSL (e.g. `hsl(0, 100%, 50%)`). * Values requiring a number, such as a length, can be specified in pixel values (e.g. `24px`), unitless values that are implicitly in pixels (e.g. `24`), or em values (e.g. `2em`). Sizes are specified in [model co-ordinates](#notation/position), so on-screen (rendered) sizes are as specified at zoom 1. * Opacity values are specified as numbers ranging on `0 <= opacity <= 1` (e.g `0.5`). * Time is measured in units of ms or s (e.g. `250ms`). * Angles are measured in radians (e.g. `3.14rad`) or degrees (e.g. `180deg`), clockwise. * Properties that specify a list of values may be formatted in one of the following formats: * A space-separated string (e.g. `'red rgb(0,255,0) blue'`) * Note that for lists of colours, this means that you can not use spaces within `rgb()` or `hsl()`. * This is the only format possible in string stylesheets (usually an external file). * A JS array (e.g. `['red', 'rgb(0, 255, 0)', 'blue']`) * This format may be used in the chained function stylesheets and in JSON stylesheets. ## Mappers In addition to specifying the value of a property outright, the developer may also use a mapper to dynamically specify the property value. If a mapping is defined, either define the mapped data for all elements or use selectors to limit the mapping to elements that have the mapped data defined. For example, the selector `[foo]` will apply only to elements with the data field `foo` defined. * **`data()`** specifies a direct mapping to an element's data field. For example, `data(descr)` would map a property to the value in an element's `descr` field in its data (i.e. `ele.data("descr")`). This is useful for mapping to properties like label text (the `label` property). * **`mapData()`** specifies a linear mapping to an element's data field. For example, `mapData(weight, 0, 100, blue, red)` maps an element's weight to colours between blue and red for weights between 0 and 100. An element with `ele.data("weight") === 0` would be mapped to blue, for instance. Elements whose values fall outside of the specified range are mapped to the extremity values. In the previous example, an element with `ele.data("weight") === -1` would be mapped to blue. * **`function( ele ){ ... }`** A function may be passed as the value of a style property. The function has a single `ele` argument which specifies the element for which the style property value is being calculated. * **Do** specify a valid value for the corresponding style property for all elements that its corresponding selector block applies. * **Do** use pure functions that depend on only * `ele.data()`, * `ele.scratch()`, or * basic state that could alternatively be represented with selectors (e.g. `ele.selected()` is OK because there's a `:selected` selector). * **Do not** mutate the graph state for `cy` or for any `ele` inside your mapper function. * **Do not** create cyclic dependencies (i.e. one style property reads the value of another style property). Your style function should not call functions like `ele.style()` or `ele.numericStyle()`. * **Do not** use functions if you can use built-in mappers and selectors to express the same thing. If you use a function, you lose built-in style performance enhancements and you'll have to optimise and cache the function yourself. ## Node body Shape: * **`width`** : The width of the node's body. * **`height`** : The height of the node's body. * **`shape`** : The shape of the node's body. Note that each shape fits within the specified `width` and `height`, and so you may have to adjust `width` and `height` if you desire an equilateral shape (i.e. `width !== height` for several equilateral shapes). Only `*rectangle` shapes are supported by compounds, because the dimensions of a compound are defined by the bounding box of the children. The following values are accepted: * `ellipse` * `triangle` * `round-triangle` * `rectangle` * `round-rectangle` * `bottom-round-rectangle` * `cut-rectangle` * `barrel` * `rhomboid` * `right-rhomboid` * `diamond` * `round-diamond` * `pentagon` * `round-pentagon` * `hexagon` * `round-hexagon` * `concave-hexagon` * `heptagon` * `round-heptagon` * `octagon` * `round-octagon` * `star` * `tag` * `round-tag` * `vee` * `polygon` (custom polygon specified via `shape-polygon-points`). * **`shape-polygon-points`** : An array (or a space-separated string) of numbers ranging on [-1, 1], representing alternating x and y values (i.e. `x1 y1 x2 y2, x3 y3 ...`). This represents the points in the polygon for the node's shape. The bounding box of the node is given by (-1, -1), (1, -1), (1, 1), (-1, 1). The node's position is the origin (0, 0). * **`corner-radius`** : The corner radius for `round-` shapes and the `cut-rectangle`, in px or em. * **WARNING** If you are using corner radius for a parent node (see [compound nodes](#notation/compound-nodes)), you can have children nodes going outside their parent, e.g. node **E** in [compound demo](demos/compound-nodes). * In order to fix this issue, you can play with the `padding` of the parent node. Having the same value for `padding` and `corner-radius` is always safe, e.g. node **B** in [compound demo](demos/compound-nodes). Background: * **`background-color`** : The colour of the node's body. * **`background-blacken`** : Blackens the node's body for values from 0 to 1; whitens the node's body for values from 0 to -1. * **`background-opacity`** : The opacity level of the node's background colour. * **`background-fill`** : The filling style of the node's body; may be `solid` (default), `linear-gradient`, or `radial-gradient`. Gradient: * **`background-gradient-stop-colors`** : The colours of the background gradient stops (e.g. `cyan magenta yellow`). * **`background-gradient-stop-positions`** : The positions of the background gradient stops (e.g. `0% 50% 100%`). If not specified or invalid, the stops will divide equally. * **`background-gradient-direction`** : For `background-fill: linear-gradient`, this property defines the direction of the background gradient. The following values are accepted: * `to-bottom` (default) * `to-top` * `to-left` * `to-right` * `to-bottom-right` * `to-bottom-left` * `to-top-right` * `to-top-left` Border: * **`border-width`** : The size of the node's border. * **`border-style`** : The style of the node's border; may be `solid`, `dotted`, `dashed`, or `double`. * **`border-cap`** : The cap style of the node's border; may be `butt`, `round` or `square`. * **`border-join`** : The join style of the node's border; may be `miter`, `bevel` or `round`. * **`border-dash-pattern`** : The `dashed` line pattern which specifies alternating lengths of lines and gaps. (e.g. `[6, 3]`). * **`border-dash-offset`** : The `dashed` line offset (e.g. `24`). It is useful for creating edge animations. * **`border-position`** : The position of the node's border; may be `center`, `inside`, `outside`. * **`border-color`** : The colour of the node's border. * **`border-opacity`** : The opacity of the node's border. Outline: * **`outline-width`** : The size of the node's outline. * **`outline-style`** : The style of the node's outline; may be `solid`, `dotted`, `dashed`, or `double`. * **`outline-color`** : The colour of the node's outline. * **`outline-opacity`** : The opacity of the node's outline. * **`outline-offset`** : The offset of the node's outline. Padding: A padding defines an addition to a node's dimension. For example, `padding` adds to a node's outer (i.e. total) width and height. This can be used to add spacing between a compound node parent and its children. * **`padding`** : The amount of padding around all sides of the node. Either percentage or pixel value can be specified. For example, both `50%` and `50px` are acceptable values. By default, percentage padding is calculated as a percentage of node width. * **`padding-relative-to`** : Determines how padding is calculated if and only if the percentage unit is used. Accepts one of the keywords specified below. * **`width`** : calculate padding as a percentage the node width. * **`height`** : calculate padding as a percentage of the node height. * **`average`** : calculate padding as a percentage of the average of the node width and height. * **`min`** : calculate padding as a percentage of the minimum of the node width and height. * **`max`** : calculate padding as a percentage of the maximum of the node width and height. Compound parent sizing: * **`compound-sizing-wrt-labels`** : Whether to include labels of descendants in sizing a compound node; may be `include` or `exclude`. * **`min-width`** : Specifies the minimum (inner) width of the node's body for a compound parent node (e.g. `400px`). If the biases for `min-width` do not add up to 100%, then the biases are normalised to a total of 100%. * **`min-width-bias-left`** : When a compound node is enlarged by its `min-width`, this value specifies the percent of the extra width put on the left side of the node (e.g. `50%`). * **`min-width-bias-right`** : When a compound node is enlarged by its `min-width`, this value specifies the percent of the extra width put on the right side of the node (e.g. `50%`). * **`min-height`** : Specifies the minimum (inner) height of the node's body for a compound parent node (e.g. `400px`). If the biases for `min-height` do not add up to 100%, then the biases are normalised to a total of 100%. * **`min-height-bias-top`** : When a compound node is enlarged by its `min-height`, this value specifies the percent of the extra width put on the top side of the node (e.g. `50%`). * **`min-height-bias-bottom`** : When a compound node is enlarged by its `min-height`, this value specifies the percent of the extra width put on the bottom side of the node (e.g. `50%`). ## Background image A background image may be applied to a node's body. The following properties support multiple values (space separated or array) with associated indices. * **`background-image`** : The URL that points to the image that should be used as the node's background. PNG, JPG, and SVG are supported formats. * You may use a [data URI](https://en.wikipedia.org/wiki/Data_URI_scheme) to use embedded images, thereby saving a HTTP request. * You can specify multiple background images by separating each image with a space (space delimited format), but if using a non-string stylesheet, then using arrays are preferred. * The images will be applied to the node's body in the order given, layering one on top of each other. * When specifying properties for multiple images, if the property for a given image is not provided, then the default value is used as fallback. * To put an image outside of the bounds of a node's body, it is necessary to specify `background-clip: none` and `bounds-expansion: n` for images that go `n` pixels beyond the bounding box of the node. Note that values of `n` should be relatively small for performance. * To control the drawing order of background images (e.g overlay background images over borders), it is necessary to specify `background-image-containment: over` (default `inside`). * SVG image considerations: * Always include this XML header in each SVG image: ``` ``` * Use [encodeURIComponent](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent) on SVG data URIs. ``` var data = 'data:image/svg+xml;utf8,' + encodeURIComponent(svgFile); ``` * Do not use base 64 encoding for SVG within a data URI. * Web fonts (e.g. WOFF, WOFF2) may not work within SVG `` elements in some browsers. For best cross-browser compatibility, use native SVG versions of your icons --- usually defined as `` elements. * If you memoize function mappers to generate SVGs procedurally, you may want to have your function return an object like `{ svg, width, height }`. This allows you to use the dimensions of the image for other style properties, like node width and height. E.g.: ``` var makeSvg = memoize(function(ele){ // impl... return { svg: s, width: w, height: h }; }); // // ... // // init stylesheet var options = { style: [ { selector: 'node', style: { 'background-image': function(ele){ return makeSvg(ele).svg; }, 'width': function(ele){ return makeSvg(ele).width; }, 'height': function(ele){ return makeSvg(ele).height; } } } ] }; ``` * Using the `viewbox` attribute in SVG images may cause rendering problems in Firefox. * SVG images may not work consistently in Internet Explorer. * The [`cytoscape-sbgn-stylesheet`](https://github.com/PathwayCommons/cytoscape-sbgn-stylesheet) package serves as a good example for the use of SVG images in a stylesheet. That stylesheet [creates decorations](https://pathwaycommons.github.io/cytoscape-sbgn-stylesheet/) on nodes in line with the [SBGN standard](https://sbgn.github.io). * **`background-image-crossorigin`**: All images are loaded with a [`crossorigin`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#attr-crossorigin) attribute which may be `anonymous` or `use-credentials` or `null`. These values should be passed as a string (enclosed withing single or double quotes). The default is set to `anonymous`. * **`background-image-opacity`** : The opacity of the background image. * **`background-image-smoothing`** : Determines whether background image is smoothed (`yes`, default) or not (`no`). This is only a hint, and the browser may or may not respect the value set for this property. * **`background-image-containment`** : Determines whether background image is within (`inside`, default) or over top of the node(`over`). * **`background-width`** : Specifies the width of the image. A percent value (e.g. `50%`) may be used to set the image width relative to the node width. If used in combination with `background-fit`, then this value overrides the width of the image in calculating the fitting --- thereby overriding the aspect ratio. The `auto` value is used by default, which uses the width of the image. * **`background-height`** : Specifies the height of the image. A percent value (e.g. `50%`) may be used to set the image height relative to the node height. If used in combination with `background-fit`, then this value overrides the height of the image in calculating the fitting --- thereby overriding the aspect ratio. The `auto` value is used by default, which uses the height of the image. * **`background-fit`** : How the background image is fit to the node; may be `none` for original size, `contain` to fit inside node, or `cover` to cover the node. * **`background-repeat`** : Whether to repeat the background image; may be `no-repeat`, `repeat-x`, `repeat-y`, or `repeat`. * **`background-position-x`** : The x position of the background image, measured in percent (e.g. `50%`) or pixels (e.g. `10px`). * **`background-position-y`** : The y position of the background image, measured in percent (e.g. `50%`) or pixels (e.g. `10px`). * **`background-offset-x`** : The x offset of the background image, measured in percent (e.g. `50%`) or pixels (e.g. `10px`). * **`background-offset-y`** : The y offset of the background image, measured in percent (e.g. `50%`) or pixels (e.g. `10px`). * **`background-width-relative-to`** : Changes whether the width is calculated relative to the width of the node or the width in addition to the padding; may be `inner` or `include-padding`. If not specified, `include-padding` is used by default. * **`background-height-relative-to`** : Changes whether the height is calculated relative to the height of the node or the height in addition to the padding; may be `inner` or `include-padding`. If not specified, `include-padding` is used by default. * **`background-clip`** : How background image clipping is handled; may be `node` for clipped to node shape or `none` for no clipping. The following properties apply to all images of a node: * **`bounds-expansion`** : Specifies a padding size (e.g. `20px`) that expands the bounding box of the node in all directions. This allows for images to be drawn outside of the normal bounding box of the node when `background-clip` is `none`. This is useful for small decorations just outside of the node. `bounds-expansions` accepts 1 value (for all directions), 2 values, (`[topAndBottom, leftAndRight]`) or 4 values (`[top, right, bottom, left]`). The following is an example of valid background image styling using JSON. The example images are taken from Wikimedia Commons with the Creative Commons license. ``` { 'background-image': [ 'https://upload.wikimedia.org/wikipedia/commons/b/b4/High_above_the_Cloud_the_Sun_Stays_the_Same.jpg', 'https://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/Pigeon_silhouette_4874.svg/1000px-Pigeon_silhouette_4874.svg.png' ], 'background-fit': 'cover cover', 'background-image-opacity': 0.5 } ``` ## Pie chart background These properties allow you to create pie chart (or ring chart) backgrounds on nodes ([demo](demos/pie-style)). Note that 16 slices maximum are supported per node, so in the properties `1 <= i <= 16`. Of course, you must specify a numerical value for each property in place of `i`. Each nonzero sized slice is placed in order of `i`, starting from the 12 o'clock position and working clockwise. The start angle may be shifted from the 12 o'clock position, if needed. You may find it useful to reserve a number to a particular colour for all nodes in your stylesheet. Then you can specify values for `pie-i-background-size` accordingly for each node via a [mapper](#style/mappers). This would allow you to create consistently coloured pie charts in each node of the graph based on element data. * **`pie-size`** : The diameter of the pie, measured as a percent of node size (e.g. `100%`) or an absolute length (e.g. `25px`). * **`pie-start-angle`** : The start angle of the pie, measured as an angle starting at the 12 o'clock position and going clockwise (e.g. `90deg` is 3 o'clock). The default is to start at 12 o'clock (`0deg`, `0rad`). * **`pie-hole`** : The diameter of the hole in the centre of the pie, measured as a percent of node size (e.g. `100%`) or an absolute length (e.g. `25px`). This effectively converts the pie chart into a ring chart (default disabled, `0`). * **`pie-i-background-color`** : The colour of the node's ith pie chart slice. * **`pie-i-background-size`** : The size of the node's ith pie chart slice, measured in percent (e.g. `25%`). * **`pie-i-background-opacity`** : The opacity of the node's ith pie chart slice. ## Stripe chart background These properties allow you to create stripe chart backgrounds on nodes ([demo](demos/stripe-style)). Note that 16 stripes maximum are supported per node, so in the properties `1 <= i <= 16`. Of course, you must specify a numerical value for each property in place of `i`. Each nonzero sized stripe is placed in order of `i`, starting from the left and going rightwards for vertical stripes (`stripe-direction: vertical`) or starting from the top and going downwards for horizontal stripes (`stripe-direction: horizontal`). You may find it useful to reserve a number to a particular colour for all nodes in your stylesheet. Then you can specify values for `stripe-i-background-size` accordingly for each node via a [mapper](#style/mappers). This would allow you to create consistently coloured pie charts in each node of the graph based on element data. * **`stripe-size`** : The diameter of the stripes, measured as a percent of node size (e.g. `100%`) or an absolute length (e.g. `25px`). * **`stripe-direction`** : The direction of the stripes, either `vertical` stripes or `horizontal` stripes. Vertical stripes are stacked from left to right, and horizontal stripes are stacked from top to bottom. * **`stripe-i-background-color`** : The colour of the node's ith stripe. * **`stripe-i-background-size`** : The size of the node's ith stripe, measured in percent (e.g. `25%`). * **`stripe-i-background-opacity`** : The opacity of the node's ith stripe. ## Edge line These properties affect the styling of an edge's line: * **`width`** : The width of an edge's line. * **`curve-style`** : The curving method used to separate two or more edges between two nodes ([demo](demos/edge-types)); may be [`haystack`](#style/haystack-edges) (default, very fast, bundled straight edges for which loops and compounds are unsupported), [`straight`](#style/straight-edges) (straight edges with all arrows supported), [`straight-triangle`](#style/straight-triangle-edges) (straight triangle edges), [`bezier`](#style/bezier-edges) (bundled curved edges), [`unbundled-bezier`](#style/unbundled-bezier-edges) (curved edges for use with manual control points), [`segments`](#style/segments-edges) (a series of straight lines), [`round-segments`](#style/round-segments-edges) (a series of straight lines with rounded corners), [`taxi`](#style/taxi-edges) (right-angled lines, hierarchically bundled), [`round-taxi`](#style/round-taxi-edges) (right-angled lines, hierarchically bundled, with rounded corners). Note that `haystack` edges work best with `ellipse`, `rectangle`, or similar nodes. Smaller node shapes, like `triangle`, will not be as aesthetically pleasing. Also note that edge endpoint arrows are unsupported for `haystack` edges. * **`line-color`** : The colour of the edge's line. * **`line-style`** : The style of the edge's line; may be `solid`, `dotted`, or `dashed`. * **`line-cap`** : The cap style of the edge's line; may be `butt` (default), `round`, or `square`. The cap may or may not be visible, depending on the shape of the node and the relative size of the node and edge. Caps other than `butt` extend beyond the specified endpoint of the edge. * **`line-outline-width`** : The width of the edge's outline. * **`line-outline-color`** : The colour of the edge's outline. * **`line-opacity`** : The opacity of the edge's line, outline and arrow. Useful if you wish to have a separate opacity for the edge label versus the edge line. Note that the opacity value of the edge element affects the effective opacity of its line and label subcomponents. * **`line-fill`** : The filling style of the edge's line; may be `solid` (default), `linear-gradient` (source to target), or `radial-gradient` (midpoint outwards). * **`line-dash-pattern`** : The `dashed` line pattern which specifies alternating lengths of lines and gaps. (e.g. `[6, 3]`). * **`line-dash-offset`** : The `dashed` line offset (e.g. `24`). It is useful for creating edge animations. * **`box-selection`** : Determines whether events should be triggered on an edge during box selection: - `contain` (default): the entire edge must be fully inside the selection box to trigger the event. - `overlap`: either endpoint (source or target node) or any part of the edge’s line or curve overlaps the selection box. - `none`: the edge is excluded from box selection and events are not triggered. ## Gradient * **`line-gradient-stop-colors`** : The colours of the gradient stops (e.g. `cyan magenta yellow`). * **`line-gradient-stop-positions`** : The positions of the gradient stops (e.g. `0% 50% 100%`). If not specified (or invalid), the stops will divide equally. ## Bezier edges For automatic, bundled bezier edges (`curve-style: bezier`, [demo](demos/edge-types)): A bezier edge is bundled with all other parallel bezier edges. Each bezier edge is a [quadratic bezier curve](https://en.wikipedia.org/wiki/Bézier_curve#Quadratic_Bézier_curves), separated from the others by varying the curvature. If there is an odd number of parallel edges in a bundle, then the centre edge is drawn as a straight line. * **`control-point-step-size`** : Along the line perpendicular from source to target, this value specifies the distance between successive bezier edges. * **`control-point-distance`** : A single value that overrides `control-point-step-size` with a manual value. Because it overrides the step size, bezier edges with the same value will overlap. Thus, it's best to use this as a one-off value for particular edges if need be. * **`control-point-weight`** : A single value that weights control points along the line from source to target. The value usually ranges on [0, 1], with 0 towards the source node and 1 towards the target node --- but larger or smaller values can also be used. * **`edge-distances`** : * With value `intersection` (default), the line from source to target for `segment-weights` is from the outside of the source node's shape to the outside of the target node's shape. * With value `node-position`, the line is from the source position to the target position. * The `node-position` option makes calculating edge points easier --- but it should be used carefully because you can create invalid points that `intersection` would have automatically corrected. * With value `endpoints`, the line is from the manually-specified source endpoint (via `source-endpoint`) to the manually-specified target endpoint (via `target-endpoint`). * A manual endpoint may be specified with a position, e.g. `source-endpoint: 20 10`. * A manual endpoint may be alternatively specified with an angle, e.g. `target-endpoint: 90deg`. ## Loop edges For loops (i.e. same source and target, [demo](demos/edge-types)): A loop is normally drawn as a pair of [quadratic bezier curves](https://en.wikipedia.org/wiki/Bézier_curve#Quadratic_Bézier_curves), one bezier going away from the node and the second bezier going back towards the node. * **`loop-direction`** : Determines the angle that loops extend from the node in cases when the source and target node of an edge is the same. The angle is specified from the 12 o'clock position and it progresses clockwise for increasing positive values. The default is `-45deg` (extending to the upper left). * **`loop-sweep`** : Determines the angle between the leaving and returning edges in loops. Positive values result in clockwise looping and negative values result in counter-clockwise looping. Default is `-90deg`. Note that loops may only be `bezier` or `unbundled-bezier` for their `curve-style`. ## Unbundled bezier edges For bezier edges with manual control points (`curve-style: unbundled-bezier`, [demo](demos/edge-types)): An unbundled bezier edge is made of a series of one or more [quadratic bezier curves](https://en.wikipedia.org/wiki/Bézier_curve#Quadratic_Bézier_curves) --- one control point per curve. The control points of unbundled bezier curves are specified manually, using a co-ordinate system relative to the source and target node. This maintains the overall curve shape regardless of the positions of the connected nodes. A quadratic bezier curve is specified by three points. Those points include the start point (P0), the centre control point (P1), and the end point (P2). Traditionally, all three points are called "control points", but only the centre control point (P1) is referred to as the "control point" within this documentation for brevity and clarity. The start point (P0) for the first quadratic bezier curve in the series is specified by `source-endpoint`. The end point (P2) for the last quadratic bezier curve in the series is specified by `target-endpoint`. When two or more control points are specified for an unbundled bezier edge, each adjacent pair of bezier curves is joined at the midpoint of the two control points. In other words, the start point (P0) and end point (P2) for a quadratic bezier curve in the middle of the series are set implicitly. This makes most curves join smoothly. * **`control-point-distances`** : A series of values that specify for each control point the distance perpendicular to a line formed from source to target, e.g. `-20 20 -20`. * **`control-point-weights`** : A series of values that weights control points along a line from source to target, e.g. `0.25 0.5 0.75`. A value usually ranges on [0, 1], with 0 towards the source node and 1 towards the target node --- but larger or smaller values can also be used. * **`edge-distances`** : * With value `intersection` (default), the line from source to target for `segment-weights` is from the outside of the source node's shape to the outside of the target node's shape. * With value `node-position`, the line is from the source position to the target position. * The `node-position` option makes calculating edge points easier --- but it should be used carefully because you can create invalid points that `intersection` would have automatically corrected. * With value `endpoints`, the line is from the manually-specified source endpoint (via `source-endpoint`) to the manually-specified target endpoint (via `target-endpoint`). * A manual endpoint may be specified with a position, e.g. `source-endpoint: 20 10`. * A manual endpoint may be alternatively specified with an angle, e.g. `target-endpoint: 90deg`. ## Haystack edges For fast, straight line edges (`curve-style: haystack`, [demo](demos/edge-types)): Haystack edges are a more performant replacement for plain, straight line edges. A haystack edge is drawn as a straight line from the source node to the target node, randomly placed along some angle from each node's centre. In this manner, many parallel haystack edges make a tight bundle, especially when semitransparent. This makes haystack edges an effective way to visualise graphs with a high number of parallel edges. Loop edges and compound parent nodes are not supported by haystack edges. Also note that source and target arrows are not supported for haystack edges, as the arrows would be behind the node body. Mid arrows, however, are supported. * **`haystack-radius`** : A value between 0 and 1 inclusive that indicates the relative radius used to position haystack edges on their connected nodes. The outside of the node is at 1, and the centre of the node is at 0. For simple graphs, a radius of 0 makes sense. ## Segments edges For edges made of several straight lines (`curve-style: segments`, [demo](demos/edge-types)): A segment edge is made of a series of one or more straight lines, using a co-ordinate system relative to the source and target nodes. This maintains the overall line pattern regardless of the orientation of the positions of the source and target nodes. * **`segment-distances`** : A series of values that specify for each segment point the distance perpendicular to a line formed from source to target, e.g. `-20 20 -20`. * **`segment-weights`** : A series of values that weights segment points along a line from source to target, e.g. `0.25 0.5 0.75`. A value usually ranges on [0, 1], with 0 towards the source node and 1 towards the target node --- but larger or smaller values can also be used. * **`edge-distances`** : * With value `intersection` (default), the line from source to target for `segment-weights` is from the outside of the source node's shape to the outside of the target node's shape. * With value `node-position`, the line is from the source position to the target position. * The `node-position` option makes calculating edge points easier --- but it should be used carefully because you can create invalid points that `intersection` would have automatically corrected. * With value `endpoints`, the line is from the manually-specified source endpoint (via `source-endpoint`) to the manually-specified target endpoint (via `target-endpoint`). * A manual endpoint may be specified with a position, e.g. `source-endpoint: 20 10`. * A manual endpoint may be alternatively specified with an angle, e.g. `target-endpoint: 90deg`. ## Round segments edges For rounded edges made of several straight lines (`curve-style: round-segments`, [demo](demos/edge-types)): A round segment edge type is made of a series of one or more straight lines, joined together by a round corner, using a co-ordinate system relative to the source and target nodes. This maintains the overall line pattern regardless of the orientation of the positions of the source and target nodes. * **`segment-distances`** : A series of values that specify for each segment point the distance perpendicular to a line formed from source to target, e.g. `-20 20 -20`. * **`segment-weights`** : A series of values that weights segment points along a line from source to target, e.g. `0.25 0.5 0.75`. A value usually ranges on [0, 1], with 0 towards the source node and 1 towards the target node --- but larger or smaller values can also be used. * **`segment-radii`** : A series of values that provide the radii of the different points positioned by `segment-distances` and `segment-weights`, e.g. `15 0 5`. If less radii are provided tha points have been defined, the last provided radius will be used for all the missing radius. If a single radius is provided, it will therefore be applied to all the segment's points. * **`radius-type`** : Defines where `segment-radii` are applied (see [demo](demos/radius-types)), which is particularly relevant when the corner angle is acute. You can provide multiple values to define the radius type for each provided radius. Values can be: * `arc-radius`: **Default strategy**: The `radius` property is applied to the corner arc, which will be placed further away from the control point if the arc doesn't fit in an acute angle. * `influence-radius`: The radius property is applied to the control point sphere of influence. The arcs for a given control point will all start and end at `radius` distance from the `control-points`. * **`edge-distances`** : * With value `intersection` (default), the line from source to target for `segment-weights` is from the outside of the source node's shape to the outside of the target node's shape. * With value `node-position`, the line is from the source position to the target position. * The `node-position` option makes calculating edge points easier --- but it should be used carefully because you can create invalid points that `intersection` would have automatically corrected. * With value `endpoints`, the line is from the manually-specified source endpoint (via `source-endpoint`) to the manually-specified target endpoint (via `target-endpoint`). * A manual endpoint may be specified with a position, e.g. `source-endpoint: 20 10`. * A manual endpoint may be alternatively specified with an angle, e.g. `target-endpoint: 90deg`. ## Straight edges For straight line edges (`curve-style: straight`, [demo](demos/edge-types)): A straight edge (`curve-style: straight`) is drawn as a single straight line from the outside of the source node shape to the outside of the target node shape. Endpoint and midpoint arrows are supported on straight edges. Straight edges are not generally suitable for multigraphs. ## Straight triangle edges For straight triangle edges (`curve-style: straight-triangle`, [demo](demos/edge-types)): A straight triangle edge (`curve-style: straight-triangle`) is drawn as a single straight isosceles triangle in the direction from the source to the target, with a triangle base at the source and a triangle apex (a point) at the target. The `width` property defines width of the triangle base. The `line-style`, `line-cap`, `line-dash-pattern`, and `line-dash-offset` properties are not supported. ## Taxi edges For hierarchical, bundled edges (`curve-style: taxi`, [demo](demos/edge-types)): A taxi edge (`curve-style: taxi`) is drawn as a series of right-angled lines (i.e. in [taxicab geometry](https://en.wikipedia.org/wiki/Taxicab_geometry)). The edge has a primary direction along either the x-axis or y-axis, which can be used to bundle edges in a hierarchy. That is, taxi edges are appropriate for trees and DAGs that are laid out in a hierarchical manner. A taxi edge has at most two visible turns: Starting from the source node, the edge goes in the primary direction for the specified distance. The edge then turns, going towards the target along the secondary axis. The first turn can be specified in order to bundle the edges of outgoing nodes. The second turn is implicit, based on the first turn, going the remaining distance along the main axis. When a taxi edge would be impossible to draw along the regular turning plan --- i.e. one or more turns is too close the source or target --- it is re-routed. The re-routing is carried out on a best-effort basis: Re-routing prioritises the specified direction for bundling over the specified turn distance. A `downward` edge, for example, will avoid going in the upward direction where possible. In practice, re-routing should not take place for graphs that are well laid out. Only `outside-to-node` endpoints are supported for a taxi edge, i.e. `source-endpoint: outside-to-node` and `target-endpoint: outside-to-node`. * **`taxi-direction`** : The main direction of the edge, the direction starting out from the source node; may be one of: * `auto` : Automatically use `vertical` or `horizontal`, based on whether the vertical or horizontal distance is largest. * `vertical` : Automatically use `downward` or `upward`, based on the vertical direction from source to target. * `downward` : Bundle outgoers downwards. * `upward` : Bundle outgoers upwards. * `horizontal` : Automatically use `righward` or `leftward`, based on the horizontal direction from source to target. * `rightward` : Bundle outgoers righwards. * `leftward` : Bundle outgoers leftwards. * **`taxi-turn`** : The distance along the primary axis where the first turn is applied. * This value may be an absolute distance (e.g. `20px`) or it may be a relative distance between the source and target (e.g. `50%`). * A negative value may be specified to indicate a distance in the oppostite, target to source direction (e.g. `-20px`). * Note that bundling may not work with an explicit direction (`upward`, `downward`, `leftward`, or `rightward`) in tandem with a turn distance specified in percent units. * **`taxi-turn-min-distance`** : The minimum distance along the primary axis that is maintained between the nodes and the turns. * This value only takes on absolute values (e.g. `5px`). * This property makes the taxi edge be re-routed when the turns would be otherwise too close to the source or target. As such, it also helps to avoid turns overlapping edge endpoint arrows. * **`edge-distances`** : With value `intersection` (default), the distances (`taxi-turn` and `taxi-turn-min-distance`) are considered from the outside of the source's bounds to the outside of the target's bounds. With value `node-position`, the distances are considered from the source position to the target position. The `node-position` option makes calculating edge points easier --- but it should be used carefully because you can create invalid points that `intersection` would have automatically corrected. ## Round taxi edges Apply the round style to Taxi edges (`curve-style: round-taxi`, [demo](demos/edge-types)): For hierarchical, bundled edges (`curve-style: taxi`, [demo](demos/edge-types)): A round taxi edge (`curve-style: round-taxi`) is drawn as a series of right-angled lines, with rounded corners (i.e. in [taxicab geometry](https://en.wikipedia.org/wiki/Taxicab_geometry)). The edge has a primary direction along either the x-axis or y-axis, which can be used to bundle edges in a hierarchy. That is, taxi edges are appropriate for trees and DAGs that are laid out in a hierarchical manner. A round taxi edge has at most two visible turns: Starting from the source node, the edge goes in the primary direction for the specified distance. The edge then turns, going towards the target along the secondary axis. The first turn can be specified in order to bundle the edges of outgoing nodes. The second turn is implicit, based on the first turn, going the remaining distance along the main axis. When a taxi edge would be impossible to draw along the regular turning plan --- i.e. one or more turns is too close the source or target --- it is re-routed. The re-routing is carried out on a best-effort basis: Re-routing prioritises the specified direction for bundling over the specified turn distance. A `downward` edge, for example, will avoid going in the upward direction where possible. In practice, re-routing should not take place for graphs that are well laid out. Only `outside-to-node` endpoints are supported for a taxi edge, i.e. `source-endpoint: outside-to-node` and `target-endpoint: outside-to-node`. * **`taxi-direction`** : The main direction of the edge, the direction starting out from the source node; may be one of: * `auto` : Automatically use `vertical` or `horizontal`, based on whether the vertical or horizontal distance is largest. * `vertical` : Automatically use `downward` or `upward`, based on the vertical direction from source to target. * `downward` : Bundle outgoers downwards. * `upward` : Bundle outgoers upwards. * `horizontal` : Automatically use `righward` or `leftward`, based on the horizontal direction from source to target. * `rightward` : Bundle outgoers righwards. * `leftward` : Bundle outgoers leftwards. * **`taxi-radius`** : The radius of the rounded corners of the edge. * **`radius-type`** : Defines where `taxi-radius` is applied (see [demo](demos/radius-types)), which is particularly relevant when the corner angle is acute. Values can be: * `arc-radius`: **Default strategy**: The `radius` property is applied to the corner arc, which will be placed further away from the control point if the arc doesn't fit in an acute angle. * `influence-radius`: The radius property is applied to the control point sphere of influence. The arcs for a given control point will all start and end at `radius` distance from the `control-points`. * **`taxi-turn`** : The distance along the primary axis where the first turn is applied. * This value may be an absolute distance (e.g. `20px`) or it may be a relative distance between the source and target (e.g. `50%`). * A negative value may be specified to indicate a distance in the oppostite, target to source direction (e.g. `-20px`). * Note that bundling may not work with an explicit direction (`upward`, `downward`, `leftward`, or `rightward`) in tandem with a turn distance specified in percent units. * **`taxi-turn-min-distance`** : The minimum distance along the primary axis that is maintained between the nodes and the turns. * This value only takes on absolute values (e.g. `5px`). * This property makes the taxi edge be re-routed when the turns would be otherwise too close to the source or target. As such, it also helps to avoid turns overlapping edge endpoint arrows. * **`edge-distances`** : With value `intersection` (default), the distances (`taxi-turn` and `taxi-turn-min-distance`) are considered from the outside of the source's bounds to the outside of the target's bounds. With value `node-position`, the distances are considered from the source position to the target position. The `node-position` option makes calculating edge points easier --- but it should be used carefully because you can create invalid points that `intersection` would have automatically corrected. ## Edge arrow * **`-arrow-color`** : The colour of the edge's source arrow. * **`-arrow-shape`** : The shape of the edge's source arrow ([demo](demos/edge-arrows)); may be one of: * `triangle` * `triangle-tee` * `circle-triangle` * `triangle-cross` * `triangle-backcurve` * `vee` * `tee` * `square` * `circle` * `diamond` * `chevron` * `none` * **`-arrow-fill`** : The fill state of the edge's source arrow; may be `filled` or `hollow`. * **`-arrow-width`** : The width of the edge's source arrow shape; may be `match-line`, a number (pixel), or a string with units (`px` | `%` | `em`). The `%` unit is based on the edge `width`. * **`arrow-scale`** : Scaling for the arrow size; may be any number >= 0. For each edge arrow property above, replace `` with one of * `source` : Pointing towards the source node, at the end of the edge. * `mid-source` : Pointing towards the source node, at the middle of the edge. * `target` : Pointing towards the target node, at the end of the edge. * `mid-target`: Pointing towards the target node, at the middle of the edge. Only mid arrows are supported on haystack edges. ## Edge endpoints `source-endpoint` & `target-endpoint` : Specifies the endpoint of the source side of the edge and the target side of the edge, respectively. There are several options for how those properties can be set: - A special, named value may be used. - `outside-to-node` (default) indicates that the edge should be placed automatically to point towards the node's position and be placed on the outside of the node's shape. - `outside-to-node-or-label` uses the same rules as `outside-to-node` with the added rule that if the node's label would intersect the edge before the node's body, then the edge points to that intersection point. This avoids overlap of edges with node labels. - `inside-to-node` indicates the edge should go all the way inside the node and point directly on the node's position. This is the same as specifying `0 0`. - `outside-to-line` indicates the edge endpoint should be placed outside the node's shape where it would intersect the imaginary line from the source position to the target position. This value is useful for automatically avoiding invalid cases for bezier edges, especially with compound nodes. - `outside-to-line-or-label` uses the same rules as `outside-to-line` with the added rule that if the node's label would intersect the imaginary line before the node's body, then the edge points to that intersection point. This avoids overlap of edges with node labels. - Two numbers may specify the endpoint. The numbers indicate a position relative to the node's position. The numbers can be specified as percent values (e.g. `50%`, which are relative to the node's width and height respectively) or as absolute distances (e.g. `100px` or `2em`). - A single angle value (e.g. `90deg` or `1.57rad`) may specify that the endpoint should be placed on the node's border at the specified angle. The angle starts at 12 o'clock and progresses clockwise. The endpoints for edges can be shifted away from the source and target node: * **`source-distance-from-node`** : A value that shifts the edge away from the source node (default `0px`). * **`target-distance-from-node`** : A value that shifts the edge away from the target node (default `0px`). Endpoint modification is not supported for `curve-style: haystack` edges for performance reasons. ## Visibility * **`display`** : Whether to display the element; may be `element` for displayed or `none` for not displayed. * A `display: none` element does not take up space. * A `display: none` bundled bezier edge does not take up space in its bundle. * A `display: none` node hides its connected edges. * A `display: none` node is considered a point rather than an area in layouts, affecting things like overlap avoidance. * A `display: none` element is not taken into consideration for viewport fitting. * A `display: none` element is not interactive. * **`visibility`** : Whether the element is visible; may be `visible` or `hidden`. * A `visibility: hidden` element does take up space. * A `visibility: hidden` bundled bezier edge does take up space in its bundle. * A `visibility: hidden` node does not hide its connected edges. * A `visibility: hidden` element is considered normally by layouts. * A `visibility: hidden` element is taken into consideration for viewport fitting. * A `visibility: hidden` element is not interactive. * **`opacity`** : The opacity of the element, ranging from 0 to 1. Note that the opacity of a compound node parent affects the effective opacity of its children. * An `opacity: 0` element does take up space. * An `opacity: 0` bundled bezier edge does take up space in its bundle. * An `opacity: 0` node does not hide its connected edges. * An `opacity: 0` element is considered normally by layouts. * An `opacity: 0` element is taken into consideration for viewport fitting. * An `opacity: 0` element is interactive. * **`z-index`** : A numeric value that affects the relative draw order of elements. In general, an element with a higher `z-index` will be drawn on top of an element with a lower `z-index`. * Note that edges are under nodes despite `z-index`, except when necessary for compound nodes. * Note that unlike CSS proper, the `z-index` is a floating point value. * Also unlike CSS proper, a negative value does not have special behaviour. The element is layered according to `z-compound-depth` and `z-index-compare`, while `z-index` only sorts an element within a layer. Elements are drawn in a specific order based on compound depth (low to high), the element type (typically nodes above edges), and z-index (low to high). These styles affect the ordering: * **`z-compound-depth`** : May be `bottom`, `orphan`, `auto` (default), or `top`. The first drawn is `bottom`, the second is `orphan`, which is the same depth as the root of the compound graph, followed by the default of `auto` which draws in depth order from root to leaves of the compound graph. The last drawn is `top`. It does not usually make sense to set this value for non-compound graphs. * **`z-index-compare`**: May be `auto` (default) or `manual`. The `auto` setting draws edges under nodes, whereas `manual` ignores this convention and draws solely based on the `z-index` value. * **`z-index`** : An integer value that affects the relative draw order of elements. In general, an element with a higher `z-index` will be drawn on top of an element with a lower `z-index` within the same depth. ## Labels Label text: * **`label`** : The text to display for an element's label ([demo](demos/labels)). * **`source-label`** : The text to display for an edge's source label. * **`target-label`** : The text to display for an edge's target label. Basic font styling: * **`color`** : The colour of the element's label. * **`text-opacity`** : The opacity of the label text, including its outline. * **`font-family`** : A [comma-separated list of font names](https://developer.mozilla.org/en-US/docs/Web/CSS/font-family) to use on the label text. * **`font-size`** : The size of the label text. * **`font-style`** : A [CSS font style](https://developer.mozilla.org/en-US/docs/Web/CSS/font-style) to be applied to the label text. * **`font-weight`** : A [CSS font weight](https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight) to be applied to the label text. * **`text-transform`** : A transformation to apply to the label text; may be `none`, `uppercase`, or `lowercase`. Wrapping text: * **`text-wrap`** : A wrapping style to apply to the label text; may be `none` for no wrapping (including manual newlines: `\n`), `wrap` for manual and/or autowrapping, or `ellipsis` to truncate the string and append '...' based on `text-max-width`. Note that with `wrap`, text will always wrap on newlines (`\n`) and text may wrap on any breakable whitespace character --- including [zero-width spaces](https://en.wikipedia.org/wiki/Zero-width_space) (`\u200b`). * **`text-max-width`** : The maximum width for wrapped text, applied when `text-wrap` is set to `wrap` or `ellipsis`. For only manual newlines (i.e. `\n`), set a very large value like `1000px` such that only your newline characters would apply. * **`text-overflow-wrap`** : The characters that may be used for possible wrapping locations when a line overflows `text-max-width`; may be `whitespace` (default) or `anywhere`. Note that `anywhere` is suited to [CJK](https://en.wikipedia.org/wiki/CJK_characters), where the characters are in a grid and no whitespace exists. Using `anywhere` with text in the Latin alphabet, for example, will split words at arbitrary locations. * **`text-justification`** : The justification of multiline (wrapped) labels; may be `left`, `center`, `right`, or `auto` (default). The `auto` value makes it so that a node's label is justified along the node --- e.g. a label on the right side of a node is left justified. * **`line-height`** : The line height of multiline text, as a relative, unitless value. It specifies the vertical spacing between each line. With value `1` (default), the lines are stacked directly on top of one another with no additional whitespace between them. With value `2`, for example, there is whitespace between each line equal to the visible height of a line of text. Node label alignment: * **`text-halign`** : The vertical alignment of a node's label; may have value `left`, `center`, or `right`. * **`text-valign`** : The vertical alignment of a node's label; may have value `top`, `center`, or `bottom`. Edge label alignment: * **`source-text-offset`** : For the source label of an edge, how far from the source node the label should be placed. * **`target-text-offset`** : For the target label of an edge, how far from the target node the label should be placed. Margins: * **`text-margin-x`** : A margin that shifts the label along the x-axis. * **`text-margin-y`** : A margin that shifts the label along the y-axis. * **`source-text-margin-x`** : (For the source label of an edge.) * **`source-text-margin-y`** : (For the source label of an edge.) * **`target-text-margin-x`** : (For the target label of an edge.) * **`target-text-margin-y`** : (For the target label of an edge.) Rotating text: * **`text-rotation`** : A rotation angle that is applied to the label. * Rotations are clockwise. * For edges, the special value `autorotate` can be used to align the label to the edge. * For nodes, the label is rotated along its anchor point on the node, so a label margin may help for some usecases. * The special value `none` can be used to denote `0deg`. * Rotations works best with left-to-right text. * **`source-text-rotation`** : (For the source label of an edge.) * **`target-text-rotation`** : (For the target label of an edge.) Outline: * **`text-outline-color`** : The colour of the outline around the element's label text. * **`text-outline-opacity`** : The opacity of the outline on label text. * **`text-outline-width`** : The size of the outline on label text. Background: * **`text-background-color`** : A colour to apply on the text background. * **`text-background-opacity`** : The opacity of the label background; the background is disabled for `0` (default value). * **`text-background-shape`** : The shape to use for the label background, can be `rectangle`, `round-rectangle`, or `circle`. The `circle` option is primarily a visual-only style for compact or short labels; however, the actual bounding box remains rectangular, especially for longer text. The `text-background-padding` property can be applied to expand the visual radius of the circular background. * **`text-background-padding`** : A padding on the background of the label (e.g `5px`); zero padding is used by default. Border: * **`text-border-opacity`** : The width of the border around the label; the border is disabled for `0` (default value). * **`text-border-width`** : The width of the border around the label. * **`text-border-style`** : The style of the border around the label; may be `solid`, `dotted`, `dashed`, or `double`. * **`text-border-color`** : The colour of the border around the label. Interactivity: * **`min-zoomed-font-size`** : If zooming makes the effective font size of the label smaller than this, then no label is shown. Note that because of performance optimisations, the label may be shown at font sizes slightly smaller than this value. This effect is more pronounced at larger screen pixel ratios. However, it is guaranteed that the label will be shown at sizes equal to or greater than the value specified. * **`text-events`** : Whether events should occur on an element if the label receives an event; may be `yes` or `no`. You may want a style applied to the text on `:active` so you know the text is activatable. * **`box-selection`** : Whether events should be triggered on an element when its label is partially or fully selected via box selection; may be `contain` (default, completely inside the box), `overlap` (overlaps with the box), or `none` (box selection disabled). You may want a style applied to the text on `:active` so you know the text is activatable. This setting takes effect on node label only if `text-events=yes`. ## Events * **`events`** : Whether events should occur on an element (e.g. `tap`, `mouseover`, etc.); may be `yes` or `no`. For `no`, the element receives no events and events simply pass through to the core/viewport. The `events` property is per-element, so the value of a compound parent does not affect its children. * **`text-events`** : Whether events should occur on an element if the label receives an event; may be `yes` or `no`. You may want a style applied to the text on `:active` so you know the text is activatable. * **`box-selection`** : Whether events should be triggered on a node element when its label is partially or fully selected via box selection rectangle (e.g., when the user drags a selection box). - `contain` (default): The element is selected only if it is entirely within the selection box. - `overlap`: The element is selected if any part of it overlaps with the selection box. - `none`: The element is excluded from box selection. You may want a style applied to the text on `:active` so you know the text is activatable. This setting takes effect on node label only if `text-events=yes`. ## Overlay These properties allow for the creation of overlays on top of nodes or edges, and are often used in the `:active` state. * **`overlay-color`** : The colour of the overlay. * **`overlay-padding`** : The area outside of the element within which the overlay is shown. * **`overlay-opacity`** : The opacity of the overlay. * **`overlay-shape`** : The shape of the node overlay; may be `round-rectangle` (default), `ellipse`. Doesn't apply to edges. ## Underlay These properties allow for the creation of underlays behind nodes or edges, and are often used in a highlighted state. * **`underlay-color`** : The colour of the underlay. * **`underlay-padding`** : The area outside of the element within which the underlay is shown. * **`underlay-opacity`** : The opacity of the underlay. * **`underlay-shape`** : The shape of the node underlay; may be `round-rectangle` (default), `ellipse`. Doesn't apply to edges. ## Ghost The ghost properties allow for creating a ghosting effect, a semitransparent duplicate of the element drawn at an offset. * **`ghost`** : Whether to use the ghost effect; may be `yes` or `no`. * **`ghost-offset-x`** : The horizontal offset used to position the ghost effect. * **`ghost-offset-y`** : The vertical offset used to position the ghost effect. * **`ghost-opacity`** : The opacity of the ghost effect. ## Transition animation * **`transition-property`** : A space-separated list of style properties to animate in this state. * **`transition-duration`** : The length of the transition (e.g. `0.5s`). * **`transition-delay`** : The length of the delay before the transition occurs (e.g. `250ms`). * **`transition-timing-function`** : An easing function that controls the animation progress curve; may be one of the following values. A [visualisation](http://easings.net/) of easings serves as a reference. * `linear` (default), * `spring( tension, friction )` * `cubic-bezier( x1, y1, x2, y2 )` (a [demo](http://cubic-bezier.com) has details for parameter values), * `ease`, * `ease-in`, * `ease-out`, * `ease-in-out`, * `ease-in-sine`, * `ease-out-sine`, * `ease-in-out-sine`, * `ease-in-quad`, * `ease-out-quad`, * `ease-in-out-quad`, * `ease-in-cubic`, * `ease-out-cubic`, * `ease-in-out-cubic`, * `ease-in-quart`, * `ease-out-quart`, * `ease-in-out-quart`, * `ease-in-quint`, * `ease-out-quint`, * `ease-in-out-quint`, * `ease-in-expo`, * `ease-out-expo`, * `ease-in-out-expo`, * `ease-in-circ`, * `ease-out-circ`, * `ease-in-out-circ`. ## Core These properties affect UI global to the graph, and apply only to the core. You can use the special `core` selector string to set these properties. Indicator: * **`active-bg-color`** : The colour of the indicator shown when the background is grabbed by the user. * **`active-bg-opacity`** : The opacity of the active background indicator. * **`active-bg-size`** : The size of the active background indicator. Selection box: * **`selection-box-color`** : The background colour of the selection box used for drag selection. * **`selection-box-border-color`** : The colour of the border on the selection box. * **`selection-box-border-width`** : The size of the border on the selection box. * **`selection-box-opacity`** : The opacity of the selection box. Texture during viewport gestures: * **`outside-texture-bg-color`** : The colour of the area outside the viewport texture when `initOptions.textureOnViewport === true`. * **`outside-texture-bg-opacity`** : The opacity of the area outside the viewport texture. ================================================ FILE: documentation/template.html ================================================ Cytoscape.js

Cytoscape.js

Graph theory (network) library for visualisation and analysis
{{#each sections}} {{#if name}}

{{name}} {{{bookmark}}}

{{/if}} {{#if html}} {{{html}}} {{/if}} {{#if demos}} {{/if}} {{#each sections}} {{#if fromMd}} {{else}}

{{name}} {{{bookmark}}}

{{#if extensions}}
    {{#each extensions}}
  • {{name}} : {{descr}}
  • {{/each}}
{{/if}} {{#if html}} {{{html}}} {{/if}} {{#if layout}}

Options

{{{layout.optionsFormatted}}}
{{/if}} {{#each fns}}
{{name}}() {{#if aliases}}et al{{/if}} {{{bookmark}}} {{#each altIds}} {{/each}}
{{#if extFn}}
Extension function: This function is intended for use in extensions.
{{/if}} {{#if processedPureAliases}}
Aliases: {{#each processedPureAliases}} {{name}}(), {{/each}}
{{/if}}
{{{descr}}}
{{#if formats}}
{{#each formats}}
{{#if args}}
{{name}}( {{#each args}}{{#if optional}} [{{/if}}{{{name}}}{{#if optional}}]{{/if}}{{/each}} )
{{else}}
{{name}}()
{{/if}} {{#if processedPureAliases}}
Aliases: {{#each processedPureAliases}} {{name}}(), {{/each}}
{{/if}}
{{{descr}}}
    {{#each args}}
  • {{{linkedName}}} {{#if optional}}[optional]{{/if}} {{{descr}}} {{#if fields}}
      {{#each fields}}
    • {{{linkedName}}} {{#if optional}}[optional]{{/if}} {{{descr}}}
    • {{#if fields}}
        {{#each fields}}
      • {{{linkedName}}} {{#if optional}}[optional]{{/if}} {{{descr}}}
      • {{#if fields}}
          {{#each fields}}
        • {{{linkedName}}} {{#if optional}}[optional]{{/if}} {{{descr}}}
        • {{/each}}
        {{/if}} {{/each}}
      {{/if}} {{/each}}
    {{/if}}
  • {{/each}}
{{/each}}
{{/if}}
{{#if html}} {{{html}}} {{/if}}
{{/each}} {{/if}} {{/each}} {{/each}}

================================================ FILE: documentation/versions.json ================================================ { "versions": [ "3.26.0", "3.25.0", "3.24.1", "3.24.0", "3.23.1", "3.23.0", "3.22.1", "3.22.0", "3.21.3", "3.21.2", "3.21.1", "3.21.0", "2.0.5", "2.0.4", "2.0.3", "2.0.2", "2.0.1", "2.0.0", "2.1.1", "2.1.0", "2.2.14", "2.2.13", "2.2.12", "2.2.11", "2.2.10", "2.2.9", "2.2.8", "2.2.7", "2.2.6", "2.2.5", "2.2.4", "2.2.3", "2.2.2", "2.2.1", "2.2.0", "2.3.16", "2.3.15", "2.3.14", "2.3.13", "2.3.11", "2.3.10", "2.3.9", "2.3.8", "2.3.7", "2.3.6", "2.3.5", "2.3.4", "2.3.3", "2.3.1", "2.3.0", "2.4.9", "2.4.8", "2.4.7", "2.4.6", "2.4.5", "2.4.4", "2.4.3", "2.4.2", "2.4.1", "2.4.0", "2.5.5", "2.5.4", "2.5.3", "2.5.2", "2.5.1", "2.5.0", "2.6.12", "2.6.11", "2.6.10", "2.6.9", "2.6.8", "2.6.7", "2.6.6", "2.6.5", "2.6.4", "2.6.3", "2.6.2", "2.6.1", "2.6.0", "2.7.29", "2.7.28", "2.7.27", "2.7.26", "2.7.25", "2.7.24", "2.7.23", "2.7.22", "2.7.21", "2.7.20", "2.7.19", "2.7.18", "2.7.17", "2.7.16", "2.7.15", "2.7.14", "2.7.13", "2.7.12", "2.7.11", "2.7.10", "2.7.9", "2.7.8", "2.7.7", "2.7.6", "2.7.5", "2.7.4", "2.7.3", "2.7.2", "2.7.1", "2.7.0", "3.0.1", "3.0.0", "3.1.5", "3.1.4", "3.1.3", "3.1.2", "3.1.1", "3.1.0", "3.2.22", "3.2.21", "3.2.20", "3.2.19", "3.2.18", "3.2.17", "3.2.16", "3.2.15", "3.2.14", "3.2.13", "3.2.12", "3.2.11", "3.2.10", "3.2.9", "3.2.8", "3.2.7", "3.2.6", "3.2.5", "3.2.4", "3.2.3", "3.2.2", "3.2.1", "3.2.0", "3.3.6", "3.3.5", "3.3.4", "3.3.3", "3.3.2", "3.3.1", "3.3.0", "3.4.9", "3.4.8", "3.4.7", "3.4.6", "3.4.5", "3.4.4", "3.4.3", "3.4.2", "3.4.1", "3.4.0", "3.5.9", "3.5.8", "3.5.7", "3.5.6", "3.5.5", "3.5.4", "3.5.3", "3.5.2", "3.5.1", "3.5.0", "3.6.6", "3.6.5", "3.6.4", "3.6.3", "3.6.2", "3.6.1", "3.6.0", "3.7.6", "3.7.5", "3.7.4", "3.7.3", "3.7.2", "3.7.1", "3.7.0", "3.8.5", "3.8.4", "3.8.3", "3.8.2", "3.8.1", "3.8.0", "3.9.4", "3.9.3", "3.9.2", "3.9.1", "3.9.0", "3.10.2", "3.10.1", "3.10.0", "3.11.2", "3.11.1", "3.11.0", "3.12.3", "3.12.2", "3.12.1", "3.12.0", "3.13.3", "3.13.2", "3.13.1", "3.13.0", "3.14.4", "3.14.3", "3.14.2", "3.14.1", "3.14.0", "3.15.5", "3.15.4", "3.15.3", "3.15.2", "3.15.1", "3.15.0", "3.16.5", "3.16.4", "3.16.3", "3.16.2", "3.16.1", "3.16.0", "3.17.4", "3.17.3", "3.17.2", "3.17.1", "3.17.0", "3.18.2", "3.18.1", "3.18.0", "3.19.1", "3.19.0", "3.20.3", "3.20.2", "3.20.1", "3.20.0", "3.26.0", "3.26.0", "3.20.2", "3.25.1", "3.25.2", "3.26.1", "3.27.0", "3.26.2", "3.27.1", "3.28.0", "3.27.2", "3.28.1", "3.29.0", "3.29.1", "3.29.2", "3.29.3", "3.30.0", "3.30.1", "3.30.2", "3.30.3", "3.30.4", "3.31.0", "3.31.1", "3.31.1", "3.31.1", "3.31.2", "3.31.3", "3.31.4", "3.32.0", "3.32.1", "3.32.2", "3.33.0", "3.33.1" ] } ================================================ FILE: documentation/webgl.md ================================================ # Cytoscape.js WebGL Renderer Design Mike Kucera March 2025 This blog post announces the first “preview” release (start here): [https://blog.js.cytoscape.org/2025/01/13/webgl-preview/](https://blog.js.cytoscape.org/2025/01/13/webgl-preview/) Most of the code is under: src/extensions/renderer/canvas/webgl - drawing-redraw-webgl.mjs - This is the “driver” - Initialization code. - Contains the main render function renderWebgl() - Functions that help with debugging. - Code to enable picking mode. - drawing-elements-webgl.mjs - The meat of the renderer. - Contains the shader program, VBO, and all the code to calculate edges and curves. - atlas.mjs - Classes that manage “texture atlases” (also known as “sprite sheets”). Textures are used to render labels and node bodies. - webgl-util.mjs - Utility functions for creating buffers, compiling shaders, conversions, etc… With initialization code in: - src/extensions/renderer/canvas/index.mjs Debugging Tips - The ‘webglDebug: true’ option prints high-level debug info to the browser console. - The ‘showFps: true’ option shows the framerate in the top corner of the network. - The Safari Web Inspector can be used to see the contents of OffscreenCanvas objects. Open the Web Inspector and go to the Graphics tab. - In Chrome - The Developer Tools Memory tab does NOT show GPU memory - To see GPU memory go to the main menu at select Window \> Task Manager. Then find the Task named “GPU Process”. - This shows all the GPU memory used by all open chrome browser tabs combined. Close other tabs to isolate cy.js memory usage. ## ## Overview There are a few important details that drive the overall design of the WebGL renderer. - Everything in Cytoscape.js can have an opacity value. - The way that color alpha blending works in WebGL requires all elements to be rendered in z-order back-to-front. - The reason is the depth buffer can only store one value per pixel. If multiple translucent and opaque elements overlap at the same pixel WebGL doesn’t know what order they should be in. - All colors used by the WebGL renderer are in “Premultiplied Alpha” format, which works better for alpha blending. - Nodes and edges can be interleaved. - In other network rendering tools like cytoscape desktop all edges are drawn first then all nodes are drawn on top. Cytoscape.js does not work that way because of the excellent support for compound nodes. For example if a node has an edge to its parent node, the parent will be drawn first, then the edge, then the child node. - For performance it is important to reduce the number of WebGL “draw” calls. - Having a separate draw call per element when you have a network with tens of thousands of elements does not scale. - Drawing elements in batches is the best way to take advantage of GPU parallelization. - The WebGL renderer uses “instanced drawing” to draw elements in large batches. - [https://webgl2fundamentals.org/webgl/lessons/webgl-instanced-drawing.html](https://webgl2fundamentals.org/webgl/lessons/webgl-instanced-drawing.html) - The WebGL renderer uses a single shader program that has several if-else blocks which render different things, like labels, edge lines, etc. This strategy allows different kinds of elements to be rendered together in large batches, because there is no need to switch the shader program to render different kinds of elements. ## Files ### Initialization: renderer/canvas/index.mjs The WebGL renderer is not actually a standalone renderer. It is more like a special mode in the canvas renderer that you can enable. Lots of functionality from the canvas renderer is reused. - When WebGL mode is turned on the canvas renderer is still initialized like it normally would be. - An extra canvas layer is created with a ‘webgl2’ context which is beneath the other canvas layers. - The SELECT\_BOX layer is still used in webgl mode to draw the selection box. - The NODE and DRAG layers are still used when zoomed in really close. - If the user zooms in very close then it will automatically switch back to using the canvas renderer. - This is done because webgl textures and curves look fuzzy and blocky respectively when zoomed in really close. It’s likely that only a handful of elements will be visible when zoomed in close so it’s better to switch back to canvas mode. - The zoom level for switching back to canvas is defined at the top of ele-texture-cache.mjs (the variable maxZoom). This is also the zoom threshold that turns off the canvas renderer’s texture cache. That way switching to the canvas renderer at this zoom level doesn’t start filling up its caches. - Some of the functions used to configure the element texture cache are also reused by the webgl renderer. At the bottom of the CanvasRenderer function you can see them passed to the initWebgl() function. ### drawing-redraw-webgl.mjs This is the driver for the webgl mode. - initWebgl() - Sets up the renderer configuration options. - Contains initialization code that sets up the instance of ElementDrawingWebGL. - overrideCanvasRendererFunctions() - Plugs into the canvas renderer by dynamically overriding (monkey-patching) some of its functions. This way minimal changes needed to be made to the existing canvas renderer. - getPickingIndexes() - The base renderer contains all the code for “hit detection” (or “picking”). This calculates what the user clicked on, what’s under the cursor for hover effects, and what's inside the selection box. - Because cytoscape.js supports hover effects it often wants to continuously detect what’s under the cursor as you move the mouse around. With large networks this was creating very noticeable performance issues. - The webgl renderer is used both for rendering and picking. - When the webgl renderer is in “SCREEN” mode it renders colored pixels to the canvas. When in “PICKING” mode it renders the z-index of the topmost element at each pixel to an offscreen framebuffer, which is then used to look up the element that’s at the top of a particular pixel location. - WebGL is not used for the selection rectangle. Using WebGL for detecting the topmost element under the mouse point is easy and fast. However it doesn’t work correctly for block selection because that should return everything inside the selection rectangle, even elements that might not be visible (because they are covered by other elements). Also block selection only happens when the user intentionally activates it, so a short pause is acceptable. - renderWebgl() - Renders one frame. - Iterates over the graph elements in z-order back-to-front. - This is the same as the canvas renderer using the getCachedZSortedEles() function. - Elements that are currently being dragged get brought to the front while they are being dragged. - For each element it renders its components in the same order that the canvas renderer does. - Nodes: underlay, body, label, overlay - Edges: line, source arrow, target arrow, middle label, source label, target label - Components that are not visible are basically just ignored/skipped. - Outputs debug info (if enabled). - Notes - The main render loop is part of the base renderer in the file redraw.mjs. Just search the codebase for “requestAnimationFrame”. ### drawing-elements-webgl.mjs This file contains most of the WebGL drawing code. Every “thing” that gets drawn starts out as a unit square. The unit square is made up of two triangles (because that’s how WebGL works). There are 6 vertices processed per instance, two of which overlap. Each vertex also has an ID accessible in the vertex shader using the gl\_VertexID built-in variable. * Each use of this unit square to draw something is called an “instance”. Drawing several instances in batches is called “instanced drawing”. The WebGL mode tries to maximize GPU usage by drawing in large batches, potentially thousands per batch. Each batch is drawn using a drawArraysInstanced() call. * The size of the batches is configurable using the webglBatchSize option. * A graph element, such as a node body, label, or edge, may require one or more instances. For example: a label can take one instance to draw the texture, or two instances if the texture wraps in the Atlas. A straight edge uses one instance, but a bezier curve needs several instances to draw all the small line segments that approximate the curve. * There is only one vertex and fragment shader combo (called a “shader program”). It is used to process every type of thing that can be rendered. This allows everything to be drawn in large batches without having to switch shader programs. * Actually, there is a separate “shader program” used for picking, but its almost identical to the one used for drawing. The main difference is it outputs z-order index values instead of pixel colors. #### Types of Instances TEXTURE - Used for all labels, and some node bodies. - The unit square is transformed using a matrix into the bounding box of the element. - The label or node body is rendered to an OffscreenCanvas using the canvas renderer. The OffscreenCanvas is then eventually uploaded to the GPU as a texture. The OffscreenCanvas is owned by a class called Atlas. Each Atlas contains several textures using a “texture atlas” or “sprite sheet” approach. (More on this later) - Texture coordinates are calculated that map the bounding box to the texture location in the Atlas. - Textures can “wrap” in the atlas. The Atlas is divided into rows and is treated as if it was a long linear canvas. If a texture dosen’t fit in the current row it will wrap to the next row. That means labels and node bodies can use 1 or 2 instances if the texture wraps. EDGE\_STRAIGHT - Straight line edges (normal edges and haystack) stretch the unit square into a long skinny rectangle. - Other types of edges with more than 2 control points (eg taxi edges) will appear as bezier edges. - The calculations needed to do this come from this blog post, in particular the section titled “Basic instanced line rendering”. - [https://wwwtyro.net/2019/11/18/instanced-lines.html](https://wwwtyro.net/2019/11/18/instanced-lines.html) EDGE\_CURVE\_SEGMENT - Bezier edges are rendered as a sequence of straight segments that approximate a curve. Each segment is one instance. - See Bezier Curves online book: [https://pomax.github.io/bezierinfo/](https://pomax.github.io/bezierinfo/) - In particular: - [https://pomax.github.io/bezierinfo/\#decasteljau](https://pomax.github.io/bezierinfo/#decasteljau) - [https://pomax.github.io/bezierinfo/\#flattening](https://pomax.github.io/bezierinfo/#flattening) - The control points are provided by the base renderer. - Note: In cy.js 3.31 all bezier curves are made of 15 segments (hard-coded). This should be improved. See the big TODO block in the \_getNumSegments() method. - The line segments are joined together using “mitre joins” so that they don’t overlap. This causes the unit square to be stretched into a trapezoid shape. - Mitre joins described here: [https://wwwtyro.net/2019/11/18/instanced-lines.html](https://wwwtyro.net/2019/11/18/instanced-lines.html) - And here: [https://wwwtyro.net/2021/10/01/instanced-lines-part-2.html](https://wwwtyro.net/2021/10/01/instanced-lines-part-2.html) EDGE\_ARROW - In cy.js 3.31 only ‘triangle’ is supported for edge arrows. All other edge arrow shapes will appear as triangles. - The unit square is made of 2 triangles. The first triangle is stretched in the vertex shader into the same arrow triangle shape defined by the base renderer. The second triangle is discarded. - [https://github.com/cytoscape/cytoscape.js/blob/unstable/src/extensions/renderer/base/arrow-shapes.mjs\#L131-L137](https://github.com/cytoscape/cytoscape.js/blob/unstable/src/extensions/renderer/base/arrow-shapes.mjs#L131-L137) RECTANGLE ROUND\_RECTANGLE BOTTOM\_ROUND\_RECTANGLE ELLIPSE - These are “simple shapes” for node bodies that can be rendered directly without using textures. - If a node body, overlay or underlay consists of a solid color and either no border or a solid border then they can be rendered as a simple shape. - The approach used is called Signed Distance Fields. Its used to draw curved shapes with borders directly in the fragment shader. More info: - [https://js.cytoscape.org/demos/node-types/](https://js.cytoscape.org/demos/node-types/) - [https://danielchasehooper.com/posts/code-animated-rick/](https://danielchasehooper.com/posts/code-animated-rick/) - [https://iquilezles.org/articles/distfunctions2d/](https://iquilezles.org/articles/distfunctions2d/) #### #### Shader Attributes Every instance needs its own data passed to the shader. This data is passed into the vertex shader using input variables called “attributes”. The attribute data is written by JS to buffers (basically large arrays) which WebGL transfers to the GPU on each “draw” call. Each attribute in the vertex shader has a corresponding buffer. * Important: An “attribute” in WebGL is implemented as a 4-element vector regardless of its declared data type. That means an attribute of type vec2 only uses the first two elements of the attribute. A 3x3 matrix uses three attributes, one vec3 for each row (or column I forget). There are a maximum of 16 attributes allowed, and one shader program is used for everything, so attributes are at a premium. It is sometimes necessary to pack multiple values into a vec3 or vec4 just to make efficient use of attributes, or to overload an attribute for more than one purpose. * Uniforms (set once per frame, constant for the entire frame) * uPanZoomMatrix * A matrix that transforms vertices in model coordinates into their final position in the viewport. * uAtlasSize * The height and width of textures used in the Atlas class. Constant. * Instanced attributes * aPosition * A vertex from the unit square. * The 6 vertices from the unit square are reused for every instance drawn. * Regular attributes. Per-instance data, every instance has their own values for these attributes. Passed to the GPU using array buffers. * aTransform * A 3x3 matrix that is used to transform vertices from the unit square into their model positions. * Example: For node bodies the vertices are transformed into the node’s bounding box. * aVertType * Tells the shader what it’s rendering. Can be TEXTURE, EDGE\_STRAIGHT etc… * aIndex * The z-order index of the element. Only used in PICKING mode, output by the fragment shader instead of a color. * aAtlasID * A batch can use up to 16 “texture units”. If a batch needs more than 16 textures then the batch has to be drawn and a new batch started. * This is the index into an array of atlas textures that are passed to the shaders. * aTex * Texture coordinates. Basically the location (x, y, w, h) in the texture atlas of the texture to draw. * aPointAPointB * For straight line edges this is the coordinates of the source and target points, packed into a vec4. * For curve segments, this is the source/target of the segment. See below. * aPointCPointD * For curve segments. Needed to calculate the mitre joins between the segments. * In the image below p0 is PointA, p1 is pointB, p2 is PointC and imagine there’s another line segment to the right of p1-p2 that ends in a point p3, this line segment would be p2-p3, p3 is PointD. * ![][image1] * aLineWidth * Line width of edges. * Border width of simple shapes (reused to avoid wasting attributes). * aCornerRadius * Corner radius for round-rectangle and bottom-round-rectangle. * Data type is vec4, one radius for each corner. * aColor * Color of an edge * Color of a simple shape. * aBorderColor * Border color, only used for simple shapes. - To transform a vertex point (position) to its final location on the screen it is multiplied by the uPanZoomMatrix and aTransform 3x3 matrices. - gl\_Position is a built-in output variable of type vec4 - The renderer is 2D, so it uses vec2 for points instead of vec3, but it must be expanded to a vec3 for the multiplication. gl\_Position \= vec4(uPanZoomMatrix \* aTransform \* vec3(position, 1.0), 1.0); - Buffers - Each attribute needs an array buffer to transfer the data to the GPU. - Increasing the batch size allows more instances to be drawn in parallel (limited by the GPU), but also requires allocating larger buffers. - The size of a array buffer for an attribute is maxInstances \* elementsPerInstance - Buffers use JavaScript typed arrays, either Float32Array or Int32Array - Loading data into buffers is performance sensitive. I found the cleanest way to do it while maintaining performance is to use Array Views. - [https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Typed\_arrays\#views](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Typed_arrays#views) - [https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global\_Objects/TypedArray\#buffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray#buffer) ### atlas.mjs This file contains 4 classes. #### Atlas - A single texture atlas. - The atlas starts out using an OffscreenCanvas. - The regular canvas renderer is used to draw labels or node bodies to the OffscreenCanvas. (I will just mention labels for the rest of this explanation). - The OffscreenCanvas is then used to create a webgl texture. The contents of the canvas are sent to the GPU. At that point the OffscreenCanvas object is made eligible for garbage collection to free memory. - An Atlas is always square. This is because the maximum texture dimension size in webgl applies to both width/height. - It’s a good idea to use a power of 2 for the texture dimension size. Apparently some GPUs have better performance this way. - The atlas is divided into rows. - When an empty Atlas is created there is a “free pointer” that points at the start of the first row. Each time a label is drawn to the Atlas the free pointer is moved to the end of the label. - If a label doesn’t fit on the current row it will wrap to the next row. - Labels can only wrap once. The maximum texture width is equal to the atlas width. If a label is really long and doesn’t fit in the max width, its size is shrunk down so it fits. - Each element in the atlas has a “style key”. These are the same as the keys that are used by the canvas renderer’s ElementTextureCache. - Note: Multi-line labels can have a key for each line of the label. It’s just the label’s style key with an extra index attached to the end. - Each style key is mapped to two locations (x, y, w, h) where the texture is located in the Atlas. - If the texture wraps then the second location points to the second part of the texture at the start of the next row. - If the texture doesn’t wrap then the second location points to the end of the texture and has a width of 0\. In this case the second location isn’t really needed, its just convenient to always have two locations. - These locations are used by the shaders to compute “texture coordinates” that are used to map the texture in the fragment shader. - WebGL handles scaling textures itself. When the Texture is created a mipmap is also created that provides good performance for scaling textures. (Unlike the canvas renderer’s ElementTextureCache which has to create its own mipmaps.) Here’s an example of what the texture atlas looks like for two node labels. The network… ![][image2] The atlas with the two labels looks like this. Note that the second label wraps. ![][image3] An example of anEnrichmentMap network looks like this… ![][image4] Here is one of the label texture atlases for this network. The number of rows is set to 36\. ![][image5] #### AtlasCollection - A collection (ie array) of Atlas objects, all storing the same type of texture. - There is currently one AtlasCollection for labels and one for node bodies. - This allows the number of rows to be set separately for labels and nodes. This is a good idea because labels are typically longer than node bodies. - The garbage collection code is in this class. More on this later. #### AtlasManager - Stores the Atlas Collections. - Provides a simple interface for getting texture info into the shaders. #### AtlasBatchManager - Each render batch can use up to 16 textures. This class just keeps track of the textures used for the current batch. #### Texture Garbage Collection - Cytoscape.js allows styles to be changed on the fly. Certain applications, like Cytoscape Web, allow users to change network styles at any time. - If, for example, the label font changes, then all new label textures need to be created. If a single label’s font changes (using style overrides/bypasses) then only that one label needs a new texture. - Old textures that are no longer in use need to be removed from the texture atlases so they don’t keep growing forever and using too much memory. - The solution used is a simple garbage collection / compaction algorithm. - The “Garbage Collection” approach used by the atlases is meant to be as simple as possible. I was worried this might become too complicated and become a source of bugs. - Garbage Collection works in two parts… - 1\) Style key invalidation. - A listener is registered using r.onUpdateEleCalcs(). (I’m not actually sure what triggers this event to fire.) - Elements passed to the listener may or may not need garbage collection. - These elements are passed to AtlasManager.invalidate(). It checks every Atlas to see if it contains old Style Keys for the elements that are no longer in use. These old Style Keys are marked for garbage collection. - Note: There is a special case for handling nodes with background images. Images load asynchronously, so a node will need its texture recreated once the image loads, but the style key doesn’t change. There is an option forceRedraw to handle this case. - 2\) Garbage collection - Garbage collection is triggered by a timer that sets a flag. If the flag is set then GC will run on the next frame. - If there’s no marked keys then GC just exists. - The garbage collection algorithm is meant to be simple. - Atlases that don’t contain any marked keys are left alone. - If an Atlas contains at least one marked key. - If the OffscreenCanvas is still available. - A new Atlas is created. Textures that are still valid are copied to the new Atlas. - This “compacts” the textures, with no gaps in between them. - If the OffscreenCanvas has been freed. - Remove the Atlas from the AtlasCollection. - This removes all the style key mappings for that Atlas. - On the next frame the textures for unmapped style keys will be drawn anew. [image1]: [image2]: [image3]: [image4]: [image5]: ================================================ FILE: eslint.config.mjs ================================================ import globals from "globals"; import pluginJs from "@eslint/js"; /** @type {import('eslint').Linter.Config[]} */ export default [ {languageOptions: { globals: globals.browser }}, pluginJs.configs.recommended, { rules: { "no-unused-vars": "warn" } } ]; ================================================ FILE: index.d.ts ================================================ // // Translation from Objects in help to Typescript interface. // http://js.cytoscape.org/#notation/functions // TypeScript Version: 2.3 /** * WARNING: This is a provisional specification of the Cytoscape.js * API in TypeScript, based on improvements made on the Typescript * specification for Cytoscape.js in DefinitelyTyped. This is a work * in progress and may not be complete, and it may have errors. Please * report any issues to the issue tracker: * * https://github.com/cytoscape/cytoscape.js/issues * * cy --> Cy.Core * the core * * eles --> Cy.Collection * a collection of one or more elements (nodes and edges) * * ele --> Cy.Singular * a collection of a single element (node or edge) * * node --> Cy.NodeSingular * a collection of a single node * * nodes -> Cy.NodeCollection * a collection of one or more nodes * * edge --> Cy.EdgeSingular * a collection of a single edge * * edges -> Cy.EdgeCollection * a collection of one or more edges * * The library makes a distinction between input and output parameters * due to the dynamic behaviour of the Cytoscape library. * * For a input parameter it will always expect: * - Cy.Collection * The input can be any element (node and edge) collection. * - Cy.NodeCollection * The input must be a node collection. * - Cy.EdgeCollection * The input must be a edge collection. * - Cy.Singular * The input must be a single element. * - Cy.NodeSingular * The input must be a single node. * - Cy.EdgeSingular * The input must be a single edge. * * For a output of a function it will always give: * - Cy.Elements * The output is a collection of node and edge elements OR single element. * - Cy.EdgeCollection * The output is a collection of edge elements OR single edge. * - Cy.NodeCollection * The output is a collection of node elements OR single node. * * A number of interfaces contain nothing as they serve to collect interfaces. */ export = cytoscape; export as namespace cytoscape; /** * WARNING: This is a provisional specification of the Cytoscape.js * API in TypeScript, based on improvements made on the Typescript * specification for Cytoscape.js in DefinitelyTyped. This is a work * in progress and may not be complete, and it may have errors. Please * report any issues to the issue tracker: * * https://github.com/cytoscape/cytoscape.js/issues */ declare function cytoscape(options?: cytoscape.CytoscapeOptions): cytoscape.Core; declare function cytoscape(type: string, name: string): unknown; declare function cytoscape(type: string, name: string, registrant: any): void; declare namespace cytoscape { /*** * extensions can add functionality to the registry for Cytoscape , * to three different types of functionality can be added **/ type CytoscapeRegistry = (type: "core" | "collection" | "layout", name: string, extension: unknown) => void; interface Position { x: number; y: number; } interface BoundingBox { x1: number; y1: number; x2: number; y2: number; w: number; h: number; } type CssStyleDeclaration = any; interface ElementDefinition { group?: ElementGroup; data: NodeDataDefinition | EdgeDataDefinition; /** * Scratchpad data (usually temp or nonserialisable data) */ scratch?: Scratchpad; /** * The model position of the node (optional on init, mandatory after) */ position?: Position; /** * can alternatively specify position in rendered on-screen pixels */ renderedPosition?: Position; /** * Whether the element is selected (default false) */ selected?: boolean; /** * Whether the selection state is mutable (default true) */ selectable?: boolean; /** * When locked a node's position is immutable (default false) */ locked?: boolean; /** * Wether the node can be grabbed and moved by the user */ grabbable?: boolean; /** * Whether the element has passthrough panning enabled. */ pannable?: boolean; /** * a space separated list of class names that the element has */ classes?: string[] | string; /** * CssStyleDeclaration; */ style?: CssStyleDeclaration; /** * you should only use `style`/`css` for very special cases; use classes instead */ css?: Css.Node | Css.Edge; /** * an element can be in a removed state, these elements will be not part of the rendered graph */ removed?: boolean; } interface ElementDataDefinition { /** * elided id => autogenerated id */ id?: string; position?: Position; } interface EdgeDefinition extends ElementDefinition { group?: "edges"; data: EdgeDataDefinition; } interface EdgeDataDefinition extends ElementDataDefinition { /** * the source node id (edge comes from this node) */ source: string; /** * the target node id (edge goes to this node) */ target: string; [key: string]: any; } interface NodeDefinition extends ElementDefinition { group?: "nodes"; data: NodeDataDefinition; } interface NodeDataDefinition extends ElementDataDefinition { parent?: string; [key: string]: any; } interface CytoscapeOptions { /////////////////////////////////////// // very commonly used options: /** * A HTML DOM element in which the graph should be rendered. * This is optional if Cytoscape.js is run headlessly or if you initialise using jQuery (in which case your jQuery object already has an associated DOM element). * * The default is undefined. */ container?: HTMLElement | null; /** * An array of [[Elements]] specified as plain objects. For convenience, this option can alternatively be specified as a promise that resolves to the elements JSON. */ elements?: | ElementsDefinition | ElementDefinition[] | Promise | Promise ; /** * The StylesheetJson (StylesheetJsonBlock[]) used to style the graph. For convenience, this option can alternatively be specified as a promise that resolves to the stylesheet. */ style?: StylesheetJson | Promise; /** * A plain object that specifies layout options. * Which layout is initially run is specified by the name field. * Refer to a layout's documentation for the options it supports. * If you want to specify your node positions yourself in your elements JSON, * you can use the preset layout — by default it does not set any positions, * leaving your nodes in their current positions * (e.g. specified in options.elements at initialisation time) */ layout?: LayoutOptions; /** * A plain object that contains graph-level data (i.e. data that does not belong to any particular node or edge). */ data?: Record; /////////////////////////////////////// // initial viewport state: /** * The initial zoom level of the graph. * Make sure to disable viewport manipulation options, such as fit, in your layout so that it is not overridden when the layout is applied. * You can set options.minZoom and options.maxZoom to set restrictions on the zoom level. * * The default value is 1. */ zoom?: number; /** * The initial panning position of the graph. Make sure to disable viewport manipulation options, such as fit, * in your layout so that it is not overridden when the layout is applied. */ pan?: Position; /////////////////////////////////////// // interaction options?: /** * A minimum bound on the zoom level of the graph. The viewport can not be scaled smaller than this zoom level. * * The default value is 1e-50. */ minZoom?: number; /** * A maximum bound on the zoom level of the graph. The viewport can not be scaled larger than this zoom level. * * The default value is 1e50. */ maxZoom?: number; /** * Whether zooming the graph is enabled, both by user events and programmatically. * * The default value is true. */ zoomingEnabled?: boolean; /** * Whether user events (e.g. mouse wheel, pinch-to-zoom) are allowed to zoom the graph. Programmatic changes to zoom are unaffected by this option. * * The default value is true. */ userZoomingEnabled?: boolean; /** * Whether panning the graph is enabled, both by user events and programmatically. * * The default value is true. */ panningEnabled?: boolean; /** * Whether user events (e.g. dragging the graph background) are allowed to pan the graph. Programmatic changes to pan are unaffected by this option. * * The default value is true. */ userPanningEnabled?: boolean; /** * Whether box selection (i.e. drag a box overlay around, and release it to select) is enabled. If enabled, the user must taphold to pan the graph. * * The default value is false. */ boxSelectionEnabled?: boolean; /** * A string indicating the selection behaviour from user input. * By default, this is set automatically for you based on the type of input device detected. * On touch devices, 'additive' is default — a new selection made by the user adds to the set of currenly selected elements. * On mouse-input devices, 'single' is default — a new selection made by the user becomes the entire set of currently selected elements (i.e. the previous elements are unselected). * * The default value is (isTouchDevice ? 'additive' : 'single'). */ selectionType?: SelectionType; /** * A nonnegative integer that indicates the maximum allowable distance that a user may move during a tap gesture, * on touch devices and desktop devices respectively. * * This makes tapping easier for users. * These values have sane defaults, so it is not advised to change these options unless you have very good reason for doing so. * Larger values will almost certainly have undesirable consequences. * * The default value is is 8. */ touchTapThreshold?: number; /** * A nonnegative integer that indicates the maximum allowable distance that a user may move during a tap gesture, * on touch devices and desktop devices respectively. * * This makes tapping easier for users. * These values have sane defaults, * so it is not advised to change these options unless you have very good reason for doing so. * Larger values will almost certainly have undesirable consequences. * * The default value is 4. */ desktopTapThreshold?: number; /** * Whether nodes should be locked (not draggable at all) by default (if true, overrides individual node state). * * The default value is false. */ autolock?: boolean; /** * Whether nodes should be ungrabified (not grabbable by user) by default (if true, overrides individual node state). * * The default value is false. */ autoungrabify?: boolean; /** * Whether nodes should be unselectified (immutable selection state) by default (if true, overrides individual element state). * * The default value is false. */ autounselectify?: boolean; /////////////////////////////////////// // rendering options: /** * A convenience option that initialises the Core to run headlessly. * You do not need to set this in environments that are implicitly headless (e.g. Node.js). * However, it is handy to set headless: true if you want a headless Core in a browser. * * The default value is false. */ headless?: boolean; /** * A boolean that indicates whether styling should be used. * For headless (i.e. outside the browser) environments, * display is not necessary and so neither is styling necessary — thereby speeding up your code. * You can manually enable styling in headless environments if you require it for a special case. * Note that it does not make sense to disable style if you plan on rendering the graph. * * The default value is true. */ styleEnabled?: boolean; /** * When set to true, the renderer does not render edges while the viewport is being manipulated. * This makes panning, zooming, dragging, et cetera more responsive for large graphs. * * The default value is false. */ hideEdgesOnViewport?: boolean; /** * when set to true, the renderer does not render labels while the viewport is being manipulated. * This makes panning, zooming, dragging, et cetera more responsive for large graphs. * * The default value is false. */ hideLabelsOnViewport?: boolean; /** * When set to true, the renderer uses a texture (if supported) during panning and zooming instead of drawing the elements, * making large graphs more responsive. * * The default value is false. */ textureOnViewport?: boolean; /** * When set to true, the renderer will use a motion blur effect to make the transition between frames seem smoother. * This can significantly increase the perceived performance for a large graphs. * * The default value is false. */ motionBlur?: boolean; /** * When motionBlur: true, this value controls the opacity of motion blur frames. * Higher values make the motion blur effect more pronounced. * * The default value is 0.2. */ motionBlurOpacity?: number; /** * Changes the scroll wheel sensitivity when zooming. This is a multiplicative modifier. * So, a value between 0 and 1 reduces the sensitivity (zooms slower), and a value greater than 1 increases the sensitivity (zooms faster). * * The default value is 1. */ wheelSensitivity?: number; /** * Overrides the screen pixel ratio with a manually set value (1.0 or 0.666 recommended, if set). * This can be used to increase performance on high density displays by reducing the effective area that needs to be rendered. * If you want to use the hardware's actual pixel ratio at the expense of performance, you can set pixelRatio: 'auto'. * * The default value is 1. */ pixelRatio?: number | "auto"; /** * Enables the experimental WebGL mode. * WARNING: This is currently experimental, and may have API changes in future. */ webgl?: boolean; /** * Prints debug info to the browser console. * (optional) * WARNING: This is currently experimental, and may have API changes in future. */ webglDebug?: boolean; /** * The size of the WebGL texture. * (provisional, may change in future releases) * WARNING: This is currently experimental, and may have API changes in future. */ webglTexSize?: number; /** * The number of rows in the WebGL texture. * (provisional, may change in future releases) * WARNING: This is currently experimental, and may have API changes in future. */ webglTexRows?: number; /** * The batch size for WebGL. * (provisional, may change in future releases) * WARNING: This is currently experimental, and may have API changes in future. */ webglBatchSize?: number; /** * The number of textures per batch in WebGL. * (provisional, may change in future releases) * WARNING: This is currently experimental, and may have API changes in future. */ webglTexPerBatch?: number; } /** * cy --> Cy.Core * The core object is your interface to a graph. * * It is your entry point to Cytoscape.js: * All of the library’s features are accessed through this object. * http://js.cytoscape.org/#core */ interface Core extends CoreGraphManipulation, CoreData, CoreGraphManipulationExt, CoreEvents, CoreViewportManipulation, CoreAnimation, CoreLayout, CoreStyle, CoreExport {} /** * These are the principle functions used to interact with the graph model. * * http://js.cytoscape.org/#core/graph-manipulation */ interface CoreGraphManipulation { /** * Add elements to the graph and return them. */ add( eles: ElementDefinition | ElementDefinition[] | ElementsDefinition | CollectionArgument, ): CollectionReturnValue; /** * Remove elements in collection or match the selector from the graph and return them. */ remove(eles: CollectionArgument | Selector): CollectionReturnValue; /** * Get a collection from elements in the graph matching the specified selector or from an array of elements. * If no parameter is specified, an empty collection will be returned * options The options for the collection * removed A truthy value that sets whether the elements are in the removed state (true) or added to the graph (false, default). */ collection( eleObjs?: ElementDefinition[] | CollectionArgument | Selector, options?: { removed?: true; } ): CollectionReturnValue; /** * check whether the specified id is in the collection */ hasElementWithId(id: string): boolean; /** * Get an element from its ID in a very performant way. * http://js.cytoscape.org/#cy.getElementById */ getElementById(id: string): CollectionReturnValue; /** * Get an element from its ID in a very performant way. * http://js.cytoscape.org/#cy.getElementById */ $id(id: string): CollectionReturnValue; /** * Get elements in the graph matching the specified selector. * http://js.cytoscape.org/#cy.$ */ $(selector: Selector): CollectionReturnValue; /** * Get elements in the graph matching the specified selector. * http://js.cytoscape.org/#cy.$ */ elements(selector?: Selector): CollectionReturnValue; /** * Get nodes in the graph matching the specified selector. */ nodes(selector?: Selector): NodeCollection; /** * Get edges in the graph matching the specified selector. */ edges(selector?: Selector): EdgeCollection; /** * Get elements in the graph matching the specified selector or filter function. */ filter( selector: Selector | ((ele: Singular, i: number, eles: CollectionArgument) => boolean), ): CollectionReturnValue; /** * Allow for manipulation of elements without triggering multiple style calculations or multiple redraws. * http://js.cytoscape.org/#cy.batch * A callback within which you can make batch updates to elements. */ batch(callback: () => void): void; /** * Allow for manipulation of elements without triggering multiple style calculations or multiple redraws. * http://js.cytoscape.org/#cy.batch * * Starts batching manually (useful for asynchronous cases). */ startBatch(): void; /** * Allow for manipulation of elements without triggering multiple style calculations or multiple redraws. * http://js.cytoscape.org/#cy.batch * * Ends batching manually (useful for asynchronous cases). */ endBatch(): void; /** * Attaches the instance to the specified container for visualisation. * http://js.cytoscape.org/#cy.mount * * If the core instance is headless prior to calling cy.mount(), then * the instance will no longer be headless and the visualisation will * be shown in the specified container. If the core instance is * non-headless prior to calling cy.mount(), then the visualisation * is swapped from the prior container to the specified container. */ mount(element: Element): void; /** * Remove the instance from its current container. * http://js.cytoscape.org/#cy.unmount * * This function sets the instance to be headless after unmounting from * the current container. */ unmount(): void; /** * A convenience function to explicitly destroy the Core. * http://js.cytoscape.org/#cy.destroy */ destroy(): void; /** * Get whether the instance of Cytoscape.js has been destroyed or not. * https://js.cytoscape.org/#cy.destroyed */ destroyed(): boolean; } /** * https://js.cytoscape.org/#core/data */ interface CoreData { /** * Read and write developer-defined data associated with the graph. * http://js.cytoscape.org/#cy.data */ /** * Get the entire data object or a particular data field. * @alias attr * * @param name The name of the field to get. */ data(name?: string): any; /** * Set a particular data field. * @alias attr * * @param name The name of the field to set. * @param value The value to set for the field (must be JSON-serializable). */ data(name: string, value: any): this; /** * Update multiple data fields at once via an object. * @alias attr * * @param obj The object containing name-value pairs to update data fields (must be JSON-serializable). */ data(obj: Record): this; /** * Get the entire data object or a particular data field. * * @param name The name of the field to get. Get the entire data object */ attr(name?: string): any; /** * Set a particular data field. * * @param name The name of the field to set. * @param value The value to set for the field (must be JSON-serializable). */ attr(name: string, value: any): this; /** * Update multiple data fields at once via an object. * * @param obj The object containing name-value pairs to update data fields. */ attr(obj: Record): this; /** * Remove developer-defined data associated with the elements. * https://js.cytoscape.org/#cy.removeData * @alias removeAttr * * @param names A space-separated list of fields to delete. */ removeData(names?: string): this; /** * Remove developer-defined data associated with the elements. * https://js.cytoscape.org/#cy.removeData * * @param names A space-separated list of fields to delete. */ removeAttr(names?: string): this; } /** * http://js.cytoscape.org/#core/graph-manipulation * http://js.cytoscape.org/#extensions * These functions are intended for use in extensions. */ interface CoreGraphManipulationExt { /** * Set the scratchpad at a particular namespace, * where temporary or non-JSON data can be stored. * App-level scratchpad data should use namespaces prefixed with underscore, like '_foo'. * * If no parameter provided, the entire scratchpad will be returned. * If only namespace provided, the scratchpad with the namespace will be returned. * * @param namespace A namespace string. * @param value The value to set at the specified namespace. */ scratch(namespace?: string): Scratchpad; scratch(namespace: string, value: any): this; /** * Remove scratchpad data. You should remove scratchpad data only at your own namespaces. * http://js.cytoscape.org/#cy.removeScratch * * @param namespace A namespace string. */ removeScratch(namespace: string): this; } /** * The principle events from the graph model. * http://js.cytoscape.org/#core/events */ interface CoreEvents { /** * Bind to events that occur in the graph. * * @param events A space separated list of event names. * @param handler The handler function that is called when one of the specified events occurs. * @param selector A selector to specify elements for which the handler is triggered. * @param data A plain object which is passed to the handler in the event object argument. * @param eventsMap A map of event names to handler functions. */ on(events: EventNames, handler: EventHandler): this; on(events: EventNames, selector: Selector, handler: EventHandler): this; on(events: EventNames, selector: Selector, data: any, handler: EventHandler): this; on(eventsMap: { [value: string]: EventHandler }, selector?: Selector, data?: any): this; bind(events: EventNames, handler: EventHandler): this; bind(events: EventNames, selector: Selector, handler: EventHandler): this; bind(events: EventNames, selector: Selector, data: any, handler: EventHandler): this; bind(eventsMap: { [value: string]: EventHandler }, selector?: Selector, data?: any): this; listen(events: EventNames, handler: EventHandler): this; listen(events: EventNames, selector: Selector, handler: EventHandler): this; listen(events: EventNames, selector: Selector, data: any, handler: EventHandler): this; listen(eventsMap: { [value: string]: EventHandler }, selector?: Selector, data?: any): this; addListener(events: EventNames, handler: EventHandler): this; addListener(events: EventNames, selector: Selector, handler: EventHandler): this; addListener(events: EventNames, selector: Selector, data: any, handler: EventHandler): this; addListener(eventsMap: { [value: string]: EventHandler }, selector?: Selector, data?: any): this; /** * Get a promise that is resolved with the first * of any of the specified events triggered on the graph. * @param events A space separated list of event names. * @param selector [optional] A selector to specify elements for which the handler is triggered. */ promiseOn(events: EventNames, selector?: Selector): Promise; pon(events: EventNames, selector?: Selector): Promise; /** * Bind to events that occur in the graph, and trigger the handler only once. * * @param events A space separated list of event names. * @param handler The handler function that is called when one of the specified events occurs. */ one(events: EventNames, handler: EventHandler): this; /** * Bind to events that occur in the graph, and trigger the handler only once. * * @param events A space separated list of event names. * @param handler The handler function that is called when one of the specified events occurs. * @param selector A selector to specify elements for which the handler is triggered. */ one(events: EventNames, selector: Selector, handler: EventHandler): this; /** * Bind to events that occur in the graph, and trigger the handler only once. * * @param events A space separated list of event names. * @param handler The handler function that is called when one of the specified events occurs. * @param selector A selector to specify elements for which the handler is triggered. * @param data A plain object which is passed to the handler in the event object argument. */ one(events: EventNames, selector: Selector, data: any, handler: EventHandler): this; /** * Bind to events that occur in the graph, and trigger the handler only once. * * @param eventsMap A map of event names to handler functions. * @param selector A selector to specify elements for which the handler is triggered. * @param data A plain object which is passed to the handler in the event object argument. */ one(eventsMap: { [value: string]: EventHandler }, selector?: Selector, data?: any): this; /** * Remove event handlers. * http://js.cytoscape.org/#cy.off * * @param events A space separated list of event names. * @param selector [optional] The same selector used to bind to the events. * @param handler [optional] A reference to the handler function to remove. * @param eventsMap A map of event names to handler functions to remove. */ off(events: EventNames, handler?: EventHandler): this; off(events: EventNames, selector: Selector, handler?: EventHandler): this; off(eventsMap: { [value: string]: EventHandler }, selector?: Selector): this; unbind(events: EventNames, handler?: EventHandler): this; unbind(events: EventNames, selector: Selector, handler?: EventHandler): this; unbind(eventsMap: { [value: string]: EventHandler }, selector?: Selector): this; unlisten(events: EventNames, handler?: EventHandler): this; unlisten(events: EventNames, selector: Selector, handler?: EventHandler): this; unlisten(eventsMap: { [value: string]: EventHandler }, selector?: Selector): this; removeListener(events: EventNames, handler?: EventHandler): this; removeListener(events: EventNames, selector: Selector | undefined, handler?: EventHandler): this; removeListener(eventsMap: { [value: string]: EventHandler }, selector?: Selector): this; /** * Remove all event handlers. * https://js.cytoscape.org/#cy.removeAllListeners */ removeAllListeners(): this; /** * Trigger one or more events. * * @param events A space separated list of event names to trigger. * @param extraParams [optional] An array of additional parameters to pass to the handler. */ trigger(events: EventNames, extraParams?: any[]): this; emit(events: EventNames, extraParams?: any[]): this; /** * Run a callback as soon as the graph becomes ready. If the graph is already ready, then the callback is called immediately. * @param fn The callback run as soon as the graph is ready, inside which this refers to the core (cy). */ ready(fn: EventHandler): this; } interface ZoomOptionsModel { /** The position about which to zoom. */ position: Position; } interface ZoomOptionsRendered { /** The rendered position about which to zoom. */ renderedPosition: Position; } interface ZoomOptionsLevel { /** The zoom level to set. */ level: number; } type ZoomOptions = number | (ZoomOptionsLevel & (ZoomOptionsModel | ZoomOptionsRendered)); /** * http://js.cytoscape.org/#core/viewport-manipulation */ interface CoreViewportManipulation { /** * Get the HTML DOM element in which the graph is visualised. * A null value is returned if the Core is headless. */ container(): HTMLElement | null; /** * Pan the graph to the centre of a collection. * * @param eles The collection to centre upon. */ center(eles?: CollectionArgument): this; /** * Pan the graph to the centre of a collection. * * @param eles The collection to centre upon. */ centre(eles?: CollectionArgument): this; /** * Pan and zooms the graph to fit to a collection. * http://js.cytoscape.org/#cy.fit * * @param eles [optional] The collection to fit to. * @param padding [optional] An amount of padding (in pixels) to have around the graph */ fit(eles?: CollectionArgument | Selector, padding?: number): this; /** * Reset the graph to the default zoom level and panning position. * http://js.cytoscape.org/#cy.reset */ reset(): this; /** * Get the panning position of the graph. * http://js.cytoscape.org/#cy.pan */ pan(): Position; /** * Set the panning position of the graph. * http://js.cytoscape.org/#cy.pan * * @param renderedPosition The rendered position to pan the graph to. */ pan(renderedPosition?: Position): this; /** * Relatively pan the graph by a specified rendered position vector. * http://js.cytoscape.org/#cy.panBy * * @param renderedPosition The rendered position vector to pan the graph by. */ panBy(renderedPosition: Position): this; /** * Get whether panning is enabled. * If cy.boxSelectionEnabled() === true, then the user * must taphold to initiate panning. * http://js.cytoscape.org/#cy.panningEnabled */ panningEnabled(): boolean; /** * Set whether panning is enabled. If cy.boxSelectionEnabled() === true, then the user must taphold to initiate panning. * http://js.cytoscape.org/#cy.panningEnabled * * @param bool A truthy value enables panning; a falsey value disables it. */ panningEnabled(bool?: boolean): this; /** * Get whether panning by user events (e.g. dragging the graph background) is enabled. If cy.boxSelectionEnabled() === true, then the user must taphold to initiate panning. * http://js.cytoscape.org/#cy.userPanningEnabled */ userPanningEnabled(): boolean; /** * Set whether panning by user events (e.g. dragging the graph background) is enabled. If cy.boxSelectionEnabled() === true, then the user must taphold to initiate panning. * http://js.cytoscape.org/#cy.userPanningEnabled * * @param bool A truthy value enables user panning; a falsey value disables it. */ userPanningEnabled(bool?: boolean): this; /** * Get the zoom level. * http://js.cytoscape.org/#cy.zoom */ zoom(): number; /** * Set the zoom level. * http://js.cytoscape.org/#cy.zoom * * @param level The zoom level to set. * @param options The options for zooming. */ zoom(level?: number | ZoomOptions): this; /** * Set or get whether zooming is enabled. Get if no parameter provided. * http://js.cytoscape.org/#cy.zoomingEnabled * * @param bool A truthy value enables zooming; a falsey value disables it. */ zoomingEnabled(bool?: boolean): this; /** * Get whether zooming by user events (e.g. mouse wheel, pinch-to-zoom) * is enabled. * http://js.cytoscape.org/#cy.userZoomingEnabled */ userZoomingEnabled(): boolean; /** * Get or set whether zooming by user events get if no parameter provided * (e.g. mouse wheel, pinch-to-zoom) is enabled. * http://js.cytoscape.org/#cy.userZoomingEnabled * * @param bool A truthy value enables user zooming; a falsey value disables it. */ userZoomingEnabled(bool?: boolean): this; /** * Get the minimum zoom level. * http://js.cytoscape.org/#cy.minZoom */ minZoom(): number; /** * Set the minimum zoom level. * http://js.cytoscape.org/#cy.minZoom * * @param zoom The new minimum zoom level to use. */ minZoom(zoom: number): this; /** * Get the maximum zoom level. * http://js.cytoscape.org/#cy.maxZoom */ maxZoom(): number; /** * Set the maximum zoom level. * http://js.cytoscape.org/#cy.maxZoom * * @param zoom The new maximum zoom level to use. */ maxZoom(zoom: number): this; /** * Set the viewport state (pan & zoom) in one call. * http://js.cytoscape.org/#cy.viewport * * @param options The viewport options. * @param options.zoom The zoom level to set. * @param options.pan The pan to set (a rendered position). */ viewport(options: { zoom: number; pan: Position }): this; /** * gets the viewport state (pan & zoom) in one call. * http://js.cytoscape.org/#cy.viewport * */ getFitViewport(): { zoom: number; pan: Position; }; /** * Get whether box selection is enabled. * If enabled, the user must hold left-click to initiate panning. * http://js.cytoscape.org/#cy.boxSelectionEnabled */ boxSelectionEnabled(): boolean; /** * Set whether box selection is enabled. * If enabled, the user must hold left-click to initiate panning. * http://js.cytoscape.org/#cy.boxSelectionEnabled * * @param bool A truthy value enables box selection; a falsey value disables it. */ boxSelectionEnabled(bool?: boolean): this; /** * Get the selection type. * http://js.cytoscape.org/#cy.selectionType */ selectionType(): SelectionType; /** * Set the selection type. * http://js.cytoscape.org/#cy.selectionType * * @param type The selection type string; one of 'single' (default) or 'additive'. */ selectionType(type: SelectionType): this; /** * Get the on-screen width of the viewport in pixels. * http://js.cytoscape.org/#cy.width */ width(): number; /** * Get the on-screen height of the viewport in pixels. * http://js.cytoscape.org/#cy.height */ height(): number; /** * Get the extent of the viewport, a bounding box in model * coordinates that lets you know what model * positions are visible in the viewport. * http://js.cytoscape.org/#cy.extent */ extent(): BoundingBox; /** * Get the rendered extent of the viewport, a bounding box in rendered * coordinates that lets you know what rendered * positions are visible in the viewport. * http://js.cytoscape.org/#cy.renderedExtent */ renderedExtent(): BoundingBox; /** * Get whether nodes are automatically locked * (i.e. if true, nodes are locked despite their individual state). * http://js.cytoscape.org/#cy.autolock */ autolock(): boolean; /** * Set whether nodes are automatically locked * (i.e. if true, nodes are locked despite their individual state). * http://js.cytoscape.org/#cy.autolock * * @param bool A truthy value enables autolocking; a falsey value disables it. */ autolock(bool?: boolean): this; /** * Get whether nodes are automatically ungrabified * (i.e. if true, nodes are ungrabbale despite their individual state). * http://js.cytoscape.org/#cy.autoungrabify */ autoungrabify(): boolean; /** * Set whether nodes are automatically ungrabified * (i.e. if true, nodes are ungrabbale despite their individual state). * http://js.cytoscape.org/#cy.autoungrabify * * @param bool A truthy value enables autolocking; a falsey value disables it. */ autoungrabify(bool?: boolean): this; /** * Get whether nodes are automatically unselectified * (i.e. if true, nodes are unselectable despite their individual state). * http://js.cytoscape.org/#cy.autounselectify */ autounselectify(): boolean; /** * Set whether nodes are automatically unselectified * (i.e. if true, nodes are unselectable despite their individual state). * http://js.cytoscape.org/#cy.autounselectify * * @param bool A truthy value enables autolocking; a falsey value disables it. */ autounselectify(bool?: boolean): this; /** * Force the renderer to redraw (i.e. draw a new frame). * * This function forces the renderer to draw a new frame. * It is useful for very specific edgecases, such as in certain UI plugins, * but it should not be needed for most developers. * http://js.cytoscape.org/#cy.forceRender */ forceRender(): this; /** * Force the renderer to recalculate the viewport bounds. * * If your code resizes the graph's dimensions or position * (i.e. by changing the style of the HTML DOM element that holds the graph), * you will want to call cy.resize() to have the graph resize and redraw itself. * * Cytoscape.js can not automatically monitor the bounding box of the viewport, * as querying the DOM for those dimensions can be expensive. * Although cy.resize() is automatically called for you on the window's resize event, * there is no resize or style event for arbitrary DOM elements. * http://js.cytoscape.org/#cy.resize */ resize(): this; invalidateDimensions(): this; } /** * http://js.cytoscape.org/#core/animation */ interface AnimationFitOptions { eles: CollectionArgument | Selector; // to which the viewport will be fitted. padding: number; // Padding to use with the fitting. } interface CenterOptions { eles: CollectionArgument | Selector; // to which the viewport will be selected. } interface AnimationOptions { /** A zoom level to which the graph will be animated. */ zoom?: ZoomOptions; /** A panning position to which the graph will be animated. */ pan?: Position; /** A relative panning position to which the graph will be animated. */ panBy?: Position; /** An object containing fitting options from which the graph will be animated. */ fit?: AnimationFitOptions; /** An object containing centring options from which the graph will be animated. */ center?: CenterOptions; /** easing - A transition-timing-function easing style string that shapes the animation progress curve. */ easing?: Css.TransitionTimingFunction; /** duration - The duration of the animation in milliseconds. */ duration?: number; } interface AnimateOptions extends AnimationOptions { /** queue - A boolean indicating whether to queue the animation. */ queue?: boolean; /** complete - A function to call when the animation is done. */ complete?(): void; /** step - A function to call each time the animation steps. */ step?(): void; } interface CoreAnimation { /** * Get whether the viewport is currently being animated. * http://js.cytoscape.org/#cy.animated */ animated(): boolean; /** * Animate the viewport. * http://js.cytoscape.org/#cy.animate * * @param anis An object containing the details of the animation. * * @param options An object containing animation options. */ animate(anis: AnimateOptions, options?: AnimateOptions): Core; /** * Get an animation of the viewport. * http://js.cytoscape.org/#cy.animation */ animation(options: AnimationOptions): AnimationManipulation; /** * Add a delay between animations for the viewport. * * @param duration How long the delay should be in milliseconds. * @param complete A function to call when the delay is complete. */ delay(duration: number, complete?: () => void): Core; /** * Get a delay animation of the viewport. * http://js.cytoscape.org/#cy.delayAnimation */ delayAnimation(duration: number): AnimationManipulation; /** * Stop all viewport animations that are currently running. * http://js.cytoscape.org/#cy.stop * * @param clearQueue A boolean, indicating whether the queue of animations should be emptied. * @param jumpToEnd A boolean, indicating whether the currently-running animations should jump to their ends rather than just stopping midway. */ stop(clearQueue?: boolean, jumpToEnd?: boolean): Core; /** * Remove all queued animations for the viewport. * http://js.cytoscape.org/#cy.clearQueue */ clearQueue(): Core; } /** * http://js.cytoscape.org/#core/layout */ interface CoreLayout { /** * Run a layout, which algorithmically positions the nodes in the graph. * For layouts included with Cytoscape.js, you can find their * options documented in the Layouts section. * For external layouts, please refer to their accompanying documentation. * * An analogue to run a layout on a subset of the graph exists as eles.layout(). * http://js.cytoscape.org/#cy.layout */ layout(layout: LayoutOptions): Layouts; /** * Get a new layout, which can be used to algorithmically * position the nodes in the graph. * * You must specify options.name with the name of the layout you wish to use. * * This function creates and returns a layout object. * You may want to keep a reference to the layout for more advanced usecases, * such as running multiple layouts simultaneously. * Note that you must call layout.run() in order for it to affect the graph. * An analogue to make a layout on a subset of the graph exists as eles.makeLayout(). */ makeLayout(options: LayoutOptions): Layouts; createLayout(options: LayoutOptions): Layouts; } /** * Get the entry point to modify the visual style of the graph after initialisation. * http://js.cytoscape.org/#core/style */ interface ElementStylesheetStyle extends StylesheetStyle { json(): any; } interface ElementStylesheetCSS extends StylesheetCSS { json(): any; } interface CoreStyle { /** * Assign a new stylesheet to replace the existing one (if provided) * and return the style. */ style(sheet?: StylesheetJsonBlock | StylesheetJsonBlock[] | string): Style; } interface Style { /** * Add a rule to the stylesheet. */ append(style: string | StylesheetJsonBlock | StylesheetJsonBlock[]): this; /** * Remove all styles, including default styles. */ clear(): this; /** * Set the style from JSON data. * @example * style.fromJson([ * { * selector: 'node', * style: { * 'background-color': 'red' * } * } * ]); */ fromJson(json: any): this; /** * Set the style from a string. * @example * style.fromString('node { background-color: blue; }'); */ fromString(style: string): this; /** * Resets to the default stylesheet. */ resetToDefault(): this; /** * Sets the selector context for defining styles. * @example * style.selector('foo').style('color', 'black'); */ selector(s: string): this; /** * Sets a style for the current selected selector. * @example * style.selector('foo').style('color', 'black'); */ style(key: string, value: string | number): this; /** * Sets a style for the current selected selector. * @example * style.selector('foo').style({color: 'black'}); */ style(css: Css.Node | Css.Edge): this; /** * Makes the changes active. */ update(): void; } /** * http://js.cytoscape.org/#cy.style */ type StylesheetJsonBlock = StylesheetStyle | StylesheetCSS; type StylesheetJson = StylesheetJsonBlock[]; interface StylesheetStyle { selector: string; style: Css.Node | Css.Edge | Css.Core; } /** * http://js.cytoscape.org/#cy.style */ interface StylesheetCSS { selector: string; css: Css.Node | Css.Edge | Css.Core; } /** * http://js.cytoscape.org/#core/export */ interface ExportOptions { /** * The background colour of the image (transparent by default). */ bg?: string; /** * Whether to export the current viewport view (false, default) or the entire graph (true). */ full?: boolean; /** * This value specifies a positive number that scales the size of the resultant image. */ scale?: number; /** * Specifies the scale automatically in combination with maxHeight such that the resultant image is no wider than maxWidth. */ maxWidth?: number; /** * Specifies the scale automatically in combination with maxWidth such that the resultant image is no taller than maxHeight. */ maxHeight?: number; } interface ExportStringOptions extends ExportOptions { /** * output Whether the output should be 'base64uri' (default), 'base64', or 'blob'. */ output?: "base64uri" | "base64"; } interface ExportBlobOptions extends ExportOptions { /** * output Whether the output should be 'base64uri' (default), 'base64', or 'blob'. */ output?: "blob"; } interface ExportBlobPromiseOptions extends ExportOptions { /** * output Whether the output should be 'base64uri' (default), 'base64', 'blob', or 'blob-promise'. */ output?: "blob-promise"; } interface ExportJpgOptions extends ExportOptions { /** * quality Specifies the quality of the image from 0 * (low quality, low filesize) to 1 (high quality, high filesize). * If not set, the browser's default quality value is used. */ quality?: number; } interface ExportJpgStringOptions extends ExportJpgOptions, ExportStringOptions {} interface ExportJpgBlobOptions extends ExportJpgOptions, ExportBlobOptions {} interface ExportJpgBlobPromiseOptions extends ExportJpgOptions, ExportBlobPromiseOptions {} interface CoreExport { /** * Export the current graph view as a PNG image in Base64 representation. */ png(options?: ExportStringOptions): string; png(options?: ExportBlobOptions): Blob; png(options?: ExportBlobPromiseOptions): Promise; /** * Export the current graph view as a JPG image in Base64 representation. */ jpg(options?: ExportJpgStringOptions): string; jpg(options?: ExportJpgBlobOptions): Blob; jpg(options?: ExportJpgBlobPromiseOptions): Promise; /** * Export the current graph view as a JPG image in Base64 representation. */ jpeg(options?: ExportJpgStringOptions): string; jpeg(options?: ExportJpgBlobOptions): Blob; jpeg(options?: ExportJpgBlobPromiseOptions): Promise; /** * Export the graph as JSON, the same format used at initialisation. */ json(): { elements: { nodes?: ElementDefinition[]; edges?: ElementDefinition[]; }; } & Record; json( json: { elements: | { nodes?: ElementDefinition[]; edges?: ElementDefinition[]; } | ElementDefinition[]; } & Record ): this; } /** * eles --> Cy.Collection * a collection of one or more elements (nodes and edges) * * The input can be any element (node and edge) collection. * http://js.cytoscape.org/#collection */ interface Collection extends CollectionGraphManipulation, CollectionEvents, CollectionData, CollectionPosition, CollectionTraversing, CollectionLayout, CollectionSelection, CollectionStyle, CollectionAnimation, CollectionComparision, CollectionIteration, CollectionBuildingFiltering, CollectionAlgorithms {} /** * ele --> Cy.Singular * a collection of a single element (node or edge) * NB: every singular collection is a general collection too (but not vice versa)! */ interface Singular extends Collection, SingularGraphManipulation, SingularData, SingularPosition, SingularSelection, SingularStyle, SingularAnimation {} interface ElementsDefinition { nodes: NodeDefinition[]; edges: EdgeDefinition[]; } type EventHandler = (event: EventObject, ...extraParams: any) => void; /** * The output is a collection of node and edge elements OR single element. */ type CollectionArgument = Collection | EdgeCollection | NodeCollection | SingularElementArgument; type CollectionReturnValue = Collection & EdgeCollection & NodeCollection & SingularElementReturnValue; /** * edges -> Cy.EdgeCollection * a collection of one or more edges * * The output is a collection of edge elements OR single edge. */ interface EdgeCollection extends Collection, EdgeCollectionTraversing {} /** * nodes -> Cy.NodeCollection * a collection of one or more nodes * * The output is a collection of node elements OR single node. */ interface NodeCollection extends Collection, NodeCollectionMetadata, NodeCollectionPosition, NodeCollectionTraversing, NodeCollectionCompound, NodeCollectionLayout {} type SingularElementArgument = EdgeSingular | NodeSingular; type SingularElementReturnValue = EdgeSingular & NodeSingular; /** * edge --> Cy.EdgeSingular * a collection of a single edge */ interface EdgeSingular extends Singular, EdgeCollection, EdgeSingularData, EdgeSingularPoints, EdgeSingularTraversing {} /** * node --> Cy.NodeSingular * a collection of a single node */ interface NodeSingular extends Singular, NodeCollection, NodeSingularMetadata, NodeSingularPosition, NodeSingularCompound, NodeSingularLayout {} /** * http://js.cytoscape.org/#collection/graph-manipulation */ interface CollectionGraphManipulation { /** * Remove the elements from the graph. * http://js.cytoscape.org/#eles.remove */ remove(): CollectionReturnValue; /** * Put removed elements back into the graph. * http://js.cytoscape.org/#eles.restore */ restore(): CollectionReturnValue; /** * Get a new collection containing clones (i.e. copies) of the elements in the calling collection. * http://js.cytoscape.org/#eles.clone */ clone(): CollectionReturnValue; /** * Get a new collection containing clones (i.e. copies) of the elements in the calling collection. * http://js.cytoscape.org/#eles.clone */ copy(): CollectionReturnValue; /** * Effectively move edges to different nodes. The modified (actually new) elements are returned. * http://js.cytoscape.org/#eles.move */ move(location: { source?: string; target?: string }): EdgeCollection; /** * Effectively move nodes to different parent node. The modified (actually new) elements are returned. * http://js.cytoscape.org/#eles.move */ move(location: { parent: string | null }): NodeCollection; } /** * http://js.cytoscape.org/#collection/graph-manipulation */ interface SingularGraphManipulation { /** * Get the core instance that owns the element. */ cy(): Core; /** * Get whether the element has been removed from the graph. * http://js.cytoscape.org/#ele.removed */ removed(): boolean; /** * Get whether the element is inside the graph (i.e. not removed). * http://js.cytoscape.org/#ele.inside */ inside(): boolean; } /** * http://js.cytoscape.org/#collection/events */ interface CollectionEvents { /** * http://js.cytoscape.org/#eles.on * @param events A space separated list of event names. * @param selector [optional] A delegate selector to specify child elements for which the handler runs. * @param data extra data given to the handler. * @param handler The handler function called when one of the specified events occurs. Takes the event object as a parameter. */ on(events: EventNames, selector: string, data: any, handler: EventHandler): this; on(events: EventNames, selector: string, handler: EventHandler): this; on(events: EventNames, handler: EventHandler): this; bind(events: EventNames, selector: string, data: any, handler: EventHandler): this; bind(events: EventNames, selector: string, handler: EventHandler): this; bind(events: EventNames, handler: EventHandler): this; listen(events: EventNames, selector: string, data: any, handler: EventHandler): this; listen(events: EventNames, selector: string, handler: EventHandler): this; listen(events: EventNames, handler: EventHandler): this; addListener(events: EventNames, selector: string, data: any, handler: EventHandler): this; addListener(events: EventNames, selector: string, handler: EventHandler): this; addListener(events: EventNames, handler: EventHandler): this; /** * http://js.cytoscape.org/#eles.promiseOn * @alias pon */ promiseOn(events: EventNames, selector?: string): Promise; pon(events: EventNames, selector?: string): Promise; /** * @param events A space separated list of event names. * @param selector [optional] A delegate selector to specify child elements for which the handler is triggered. * @param data [optional] A plain object which is passed to the handler in the event object argument. * @param function(event) The handler function that is called when one of the specified events occurs. * @param event The event object. * http://js.cytoscape.org/#eles.one */ one(events: EventNames, selector: string, data: any, handler: EventHandler): this; one(events: EventNames, selector: string, handler: EventHandler): this; one(events: EventNames, handler: EventHandler): this; /** * http://js.cytoscape.org/#eles.once */ once(events: EventNames, selector: string, data: any, handler: EventHandler): this; once(events: EventNames, selector: string, handler: EventHandler): this; once(events: EventNames, handler: EventHandler): this; /** * http://js.cytoscape.org/#eles.off * @alias unbind, unlisten, removeListener */ off(events: EventNames, selector?: string, handler?: EventHandler): this; unbind(events: EventNames, selector?: string, handler?: EventHandler): this; unlisten(events: EventNames, selector?: string, handler?: EventHandler): this; removeListener(events: EventNames, selector?: string, handler?: EventHandler): this; /** * https://js.cytoscape.org/#eles.removeAllListeners */ removeAllListeners(): this; /** * http://js.cytoscape.org/#eles.trigger * @alias emit */ trigger(events: EventNames, extra?: unknown[]): this; emit(events: EventNames, extra?: unknown[]): this; } /** * http://js.cytoscape.org/#collection/data * * The following fields are immutable: * id: The id field is used to uniquely identify an element in the graph. * source & target : These fields define an edge's relationship to nodes, and this relationship can not be changed after creation. * parent: The parent field defines the parent (compound) node. */ interface CollectionData { /** * Read and write developer-defined data associated with the elements * http://js.cytoscape.org/#eles.data */ /** * Get a particular data field for the element. * @param name The name of the field to get. */ data(name?: string): any; /** * Set a particular data field for the element. * @param name The name of the field to set. * @param value The value to set for the field (must be JSON-serializable). */ data(name: string, value: any): this; /** * Update multiple data fields at once via an object. * @param obj The object containing name- value pairs to update data fields (must be JSON-serializable). */ data(obj: any): this; /** * Get a particular data field for the element. * @param name The name of the field to get. */ attr(name?: string): any; /** * Set a particular data field for the element. * @param name The name of the field to set. * @param value The value to set for the field (must be JSON-serializable). */ attr(name: string, value: any): this; /** * Update multiple data fields at once via an object. * @param obj The object containing name- value pairs to update data fields. */ attr(obj: any): this; /** * Remove developer-defined data associated with the elements. * http://js.cytoscape.org/#eles.removeData * @param names A space-separated list of fields to delete. */ removeData(...names: string[]): CollectionReturnValue; removeAttr(...names: string[]): CollectionReturnValue; /** * Get an array of the plain JavaScript object * representation of all elements in the collection. */ jsons(): Record[]; } /** * http://js.cytoscape.org/#collection/data */ interface SingularData { /** * Get or set the scratchpad at a particular namespace, * where temporary or non-JSON data can be stored. * Get scratchpad if one or no parameter provided. * App-level scratchpad data should use namespaces * prefixed with underscore, like '_foo'. * http://js.cytoscape.org/#ele.scratch * @param namespace A namespace string. * @param value The value to set at the specified namespace. */ scratch(namespace?: string): Scratchpad; scratch(namespace: string, value: any): this; /** * Remove scratchpad data. * You should remove scratchpad data only at your own namespaces. * http://js.cytoscape.org/#ele.removeScratch * @param namespace A namespace string. */ removeScratch(namespace: string): this; /** * A shortcut to get the ID of an element. * http://js.cytoscape.org/#ele.id */ id(): string; /** * Get the or set with element's plain JavaScript object representation * http://js.cytoscape.org/#ele.json */ json(obj?: Record): Record; /** * Get the group string that defines the type of the element. * * The group strings are 'nodes' for nodes and 'edges' for edges. * In general, you should be using ele.isEdge() * and ele.isNode() instead of ele.group(). * http://js.cytoscape.org/#ele.group */ group(): ElementGroup; /** * Get whether the element is a node. * http://js.cytoscape.org/#ele.isNode */ isNode(): this is NodeSingular; /** * Get whether the element is an edge. * http://js.cytoscape.org/#ele.isEdge */ isEdge(): this is EdgeSingular; /** * Get the connected component for the calling element. * The component considers all elements in the graph. * http://js.cytoscape.org/#ele.component */ component(): CollectionReturnValue; } /** * http://js.cytoscape.org/#collection/data */ interface EdgeSingularData { /** * Get whether the edge is a loop (i.e. source same as target). * http://js.cytoscape.org/#edge.isLoop */ isLoop(): boolean; /** * Get whether the edge is simple (i.e. source different than target). * http://js.cytoscape.org/#edge.isSimple */ isSimple(): boolean; } /** * http://js.cytoscape.org/#collection/metadata */ interface NodeSingularMetadata { /** * Get the degree of a node. * @param includeLoops A boolean, indicating whether loops are to be included in degree calculations. */ degree(includeLoops?: boolean): number; /** * Get the indegree of a node. * @param includeLoops A boolean, indicating whether loops are to be included in degree calculations. */ indegree(includeLoops?: boolean): number; /** * Get the outdegree of a node. * @param includeLoops A boolean, indicating whether loops are to be included in degree calculations. */ outdegree(includeLoops?: boolean): number; } /** * http://js.cytoscape.org/#collection/metadata */ interface NodeCollectionMetadata { /** * Get the total degree of a collection of nodes. * @param includeLoops A boolean, indicating whether loops are to be included in degree calculations. */ totalDegree(includeLoops?: boolean): number; /** * Get the minimum degree of the nodes in the collection. * @param includeLoops A boolean, indicating whether loops are to be included in degree calculations. */ minDegree(includeLoops?: boolean): number; /** * Get the maximum degree of the nodes in the collection. * @param includeLoops A boolean, indicating whether loops are to be included in degree calculations. */ maxDegree(includeLoops?: boolean): number; /** * Get the minimum indegree of the nodes in the collection. * @param includeLoops A boolean, indicating whether loops are to be included in degree calculations. */ minIndegree(includeLoops?: boolean): number; /** * Get the maximum indegree of the nodes in the collection. * @param includeLoops A boolean, indicating whether loops are to be included in degree calculations. */ maxIndegree(includeLoops?: boolean): number; /** * Get the minimum outdegree of the nodes in the collection. * @param includeLoops A boolean, indicating whether loops are to be included in degree calculations. */ minOutdegree(includeLoops?: boolean): number; /** * Get the maximum outdegree of the nodes in the collection. * @param includeLoops A boolean, indicating whether loops are to be included in degree calculations. */ maxOutdegree(includeLoops?: boolean): number; } /** * http://js.cytoscape.org/#collection/position--dimensions */ interface NodeSingularPosition { /** * Get the (model) position of a node. */ position(): Position; /** * Get the value of a specified position dimension. * @param dimension The position dimension to set. * @param value The value to set to the dimension. */ position(dimension: PositionDimension): number; /** * Set the value of a specified position dimension. * @param dimension The position dimension to set. * @param value The value to set to the dimension. */ position(dimension: PositionDimension, value: number): this; /** * Set the position using name-value pairs in the specified object. * @param pos An object specifying name-value pairs representing dimensions to set. */ position(pos: Position): this; /** * Get the (model) position of a node. */ modelPosition(): Position; /** * Get the value of a specified position dimension. * @param dimension The position dimension to set. * @param value The value to set to the dimension. */ modelPosition(dimension: PositionDimension): number; /** * Set the value of a specified position dimension. * @param dimension The position dimension to set. * @param value The value to set to the dimension. */ modelPosition(dimension: PositionDimension, value: number): this; /** * Set the position using name-value pairs in the specified object. * @param pos An object specifying name-value pairs representing dimensions to set. */ modelPosition(pos: Position): this; /** * Get the (model) position of a node. */ point(): Position; /** * Get the value of a specified position dimension. * @param dimension The position dimension to set. * @param value The value to set to the dimension. */ point(dimension: PositionDimension): number; /** * Set the value of a specified position dimension. * @param dimension The position dimension to set. * @param value The value to set to the dimension. */ point(dimension: PositionDimension, value: number): this; /** * Set the position using name-value pairs in the specified object. * @param pos An object specifying name-value pairs representing dimensions to set. */ point(pos: Position): this; /** * Get or set the rendered (on-screen) position of a node. * http://js.cytoscape.org/#node.renderedPosition */ /** * Get the value of a specified rendered position dimension. * @param dimension The position dimension to get. * @param value The value to set to the dimension. * @param pos An object specifying name-value pairs representing dimensions to set. */ renderedPosition(dimension?: PositionDimension): Position; renderedPosition(dimension: PositionDimension, value: Position): this; renderedPosition(pos: { [name: string]: number }): this; /** * Set the value of a specified rendered position dimension. * @param dimension The position dimension to set. * @param value The value to set to the dimension. * @param pos An object specifying name-value pairs representing dimensions to set. */ renderedPoint(dimension?: PositionDimension): Position; renderedPoint(dimension: PositionDimension, value: Position): this; renderedPoint(pos: { [name: string]: number }): this; /** * http://js.cytoscape.org/#node.relativePosition */ /** * Get the value of a specified relative position dimension. * @param dimension The position dimension to get. * @param value The value to set to the dimension. * @param pos An object specifying name-value pairs representing dimensions to set. */ relativePosition(dimension?: PositionDimension): Position; relativePosition(dimension: PositionDimension, value: Position): this; relativePosition(pos: { [name: string]: number }): this; /** * Get the value of a specified relative position dimension. * @param dimension The position dimension to get. * @param value The value to set to the dimension. * @param pos An object specifying name-value pairs representing dimensions to set. */ relativePoint(dimension?: PositionDimension): Position; relativePoint(dimension: PositionDimension, value: Position): this; relativePoint(pos: { [name: string]: number }): this; /** * Get whether a node is currently grabbed, meaning the user has hold of the node. * http://js.cytoscape.org/#node.grabbed */ grabbed(): boolean; /** * Get whether the user can grab a node. * http://js.cytoscape.org/#node.grabbable */ grabbable(): boolean; /** * Get whether a node is locked, meaning that its position can not be changed. * http://js.cytoscape.org/#node.locked */ locked(): boolean; } /** * @param ele The element being iterated over for which the function should return a position to set. * @param ix The index of the element when iterating over the elements in the collection. */ type ElementPositionFunction = (ele: NodeSingular, ix: number) => Position; type ElementCollectionFunction = (ele: NodeSingular, ix: number, eles: CollectionArgument) => Position; /** * http://js.cytoscape.org/#collection/position--dimensions */ interface NodeCollectionPosition { /** * Shift the positions of the nodes by a given model position vector. * @param dimension The position dimension to shift. * @param value The value to shift the dimension. */ shift(dimension: PositionDimension, value?: number): this; /** * Shift the positions of the nodes by a given model position vector. * @param pos An object specifying name-value pairs representing dimensions to shift. */ shift(pos: Position): this; /** * Set the positions via a function. * @param handler A callback function that returns the position to set for each element. * @param pos An object specifying name-value pairs representing dimensions to set. * http://js.cytoscape.org/#nodes.positions */ positions(handler: ElementPositionFunction | Position): this; modelPositions(handler: ElementPositionFunction | Position): this; points(handler: ElementPositionFunction | Position): this; /** * Allow the user to grab the nodes. * http://js.cytoscape.org/#nodes.grabify */ grabify(): this; /** * Disallow the user to grab the nodes. * http://js.cytoscape.org/#nodes.ungrabify */ ungrabify(): this; /** * Lock the nodes such that their positions can not be changed. * http://js.cytoscape.org/#nodes.lock */ lock(): this; /** * Unlock the nodes such that their positions can be changed. * http://js.cytoscape.org/#nodes.unlock */ unlock(): this; /** * Gets whether the element allows passthrough panning. * http://js.cytoscape.org/#ele.pannable */ pannable(): boolean; /** * Enables passthrough panning on the elements. * http://js.cytoscape.org/#eles.panify */ panify(): this; /** * Disables passthrough panning on the elements. * http://js.cytoscape.org/#eles.unpanify */ unpanify(): this; } /** * http://js.cytoscape.org/#collection/position--dimensions */ interface SingularPosition { /** * Get the width of the element. */ width(): number; /** * Get the outer width of the element (includes width, padding, & border). */ outerWidth(): number; /** * Get the width of the element in rendered dimensions. */ renderedWidth(): number; /** * Get the outer width of the element (includes width, padding, & border) in rendered dimensions. */ renderedOuterWidth(): number; /** * Get the height of the element. */ height(): number; /** * Get the outer height of the element (includes height, padding, & border). */ outerHeight(): number; /** * Get the height of the element in rendered dimensions. */ renderedHeight(): number; /** * Get the outer height of the element (includes height, padding, & border) in rendered dimensions. */ renderedOuterHeight(): number; /** * Gets whether the element is active (e.g. on user tap, grab, etc). * http://js.cytoscape.org/#ele.active */ active(): boolean; } interface BoundingBoxOptions { /** A boolean indicating whether to include nodes in the bounding box (default true). */ includeNodes?: boolean; /** A boolean indicating whether to include edges in the bounding box (default true). */ includeEdges?: boolean; /** A boolean indicating whether to include labels in the bounding box (default true). */ includeLabels?: boolean; /** A boolean indicating whether to include main (node or edge) labels in the bounding box (default true). */ includeMainLabels?: boolean; /** A boolean indicating whether to include (edge) source-labels in the bounding box (default true). */ includeSourceLabels?: boolean; /** A boolean indicating whether to include (edge) target-labels in the bounding box (default true). */ includeTargetLabels?: boolean; /** A boolean indicating whether to include overlays (such as the one which appears when a node is clicked) in the bounding box (default true). */ includeOverlays?: boolean; /** A boolean indicating whether to include underlays in the bounding box (default: true). */ includeUnderlays?: boolean; } /** * http://js.cytoscape.org/#collection/position--dimensions */ interface CollectionPosition { /** * Get the bounding box of the elements in model coordinates. * @param options An object containing options for the function. * http://js.cytoscape.org/#eles.boundingBox */ boundingBox(options?: BoundingBoxOptions): BoundingBox12 & BoundingBoxWH; boundingbox(options?: BoundingBoxOptions): BoundingBox12 & BoundingBoxWH; /** * Get the bounding box of the elements in rendered coordinates. * @param options An object containing options for the function. */ renderedBoundingBox(options?: BoundingBoxOptions): BoundingBox12 & BoundingBoxWH; renderedBoundingbox(options?: BoundingBoxOptions): BoundingBox12 & BoundingBoxWH; } /** * http://js.cytoscape.org/#collection/layout */ interface CollectionLayout { /** * Get a new layout, which can be used to algorithmically position the nodes in the collection. * This function is useful for running a layout on a subset of the elements in the graph, perhaps in parallel to other layouts. * * You must specify options.name with the name of the layout you wish to use. * * Note: that you must call layout.run() in order for it to affect the graph. * * @param options The layout options. */ layout(options: LayoutOptions): Layouts; makeLayout(options: LayoutOptions): Layouts; createLayout(options: LayoutOptions): Layouts; } /** * http://js.cytoscape.org/#collection/layout */ interface LayoutPositionOptions { // whether to animate changes to the layout animate?: boolean; // duration of animation in ms, if enabled animationDuration?: number; // easing of animation, if enabled animationEasing?: Css.TransitionTimingFunction; // collection of elements involved in the layout; set by cy.layout() or eles.layout(s) eles: CollectionArgument; // whether to fit the viewport to the graph fit?: boolean; // padding to leave between graph and viewport padding?: number; // pan the graph to the provided position, given as { x, y } pan?: Position; // callback for the layoutready event ready?: undefined; // callback for the layoutstop event stop?: undefined; // a positive value which adjusts spacing between nodes (>1 means greater than usual spacing) spacingFactor?: number; // zoom level as a positive number to set after animation zoom?: number; } interface NodeCollectionLayout { /** * Position the nodes for a discrete/synchronous layout. * http://js.cytoscape.org/#nodes.layoutPositions * @param layout The layout. * @param options The layout options object. */ layoutPositions(layout: string, options: LayoutPositionOptions, handler: ElementPositionFunction): void; } /** * http://js.cytoscape.org/#collection/layout */ interface LayoutDimensionOptions { // Boolean which changes whether label dimensions are included when calculating node dimensions nodeDimensionsIncludeLabels?: boolean; } /** * https://js.cytoscape.org/#node.layoutDimensions */ interface NodeSingularLayout { /** * Returns the node width and height. * Meant for use in layout positioning to do overlap detection. * @param options The layout options object. */ layoutDimensions(options: LayoutDimensionOptions): { w: number; h: number }; } /** * http://js.cytoscape.org/#collection/selection */ interface SingularSelection { /** * Get whether the element is selected. * http://js.cytoscape.org/#ele.selected */ selected(): boolean; /** * Get whether the element's selection state is mutable. * http://js.cytoscape.org/#ele.selectable */ selectable(): boolean; } /** * https://js.cytoscape.org/#collection/selection */ interface CollectionSelection { /** * Make the elements selected (NB other elements outside the collection are not affected). * http://js.cytoscape.org/#eles.select */ select(): this; /** * Make the elements not selected (NB other elements outside the collection are not affected). * http://js.cytoscape.org/#eles.unselect */ unselect(): this; deselect(): this; /** * Make the selection states of the elements mutable. * http://js.cytoscape.org/#eles.selectify */ selectify(): this; /** * Make the selection states of the elements immutable. * http://js.cytoscape.org/#eles.unselectify */ unselectify(): this; } /** * http://js.cytoscape.org/#collection/style */ type ClassName = string; /** A space-separated list of class names or an array */ type ClassNames = string | ClassName[]; interface CollectionStyle { /** * Add classes to elements. * http://js.cytoscape.org/#eles.addClass * @param classes A space-separated list of class names to add to the elements. */ addClass(classes: ClassNames): this; /** * Remove classes from elements. * @param classes A space-separated list of class names to remove from the elements. * http://js.cytoscape.org/#eles.removeClass */ removeClass(classes: ClassNames): this; /** * Toggle whether the elements have the specified classes. * @param classes A space-separated list of class names to toggle on the elements. * @param toggle [optional] Instead of automatically toggling, adds the classes on truthy values or removes them on falsey values. * http://js.cytoscape.org/#eles.toggleClass */ toggleClass(classes: ClassNames, toggle?: boolean): this; /** * Replace the current list of classes on the elements with the specified list. * @param classes A space-separated list or array of class names that replaces the current class list. * http://js.cytoscape.org/#eles.classes * Note: can be used to clear all classes (empty string or array). */ classes(classes: ClassNames): this; classes(classes: ClassNames): this | string[]; classes(): string[]; /** * Add classes to the elements, and then remove the classes after a specified duration. * @param classes A space-separated list of class names to flash on the elements. * @param duration [optional] The duration in milliseconds that the classes should be added on the elements. After the duration, the classes are removed. * http://js.cytoscape.org/#eles.flashClass */ flashClass(classes: ClassNames, duration?: number): this; /** * Set a particular style property value. * @param name The name of the visual style property to set. * @param value The value to which the property is set. */ style(name: string, value: any): this; /** * Get a particular style property value. * @param name The name of the visual style property to get. */ style(name: string): any; /** * Set several particular style property values. * @param obj An object of style property name-value pairs to set. */ style(obj: object): this; /** * Get a name-value pair object containing visual style properties and their values for the element. */ style(): { [index: string]: any }; /** * Set a particular style property value. * @param name The name of the visual style property to set. * @param value The value to which the property is set. */ css(name: string, value: any): this; /** * Get a particular style property value. * @param name The name of the visual style property to get. */ css(name: string): any; /** * Set several particular style property values. * @param obj An object of style property name-value pairs to set. */ css(obj: object): this; /** * Get a name-value pair object containing visual style properties and their values for the element. */ css(): { [index: string]: any }; /** * Remove all or specific style overrides. * @param names A space-separated list of property names to remove overrides */ removeStyle(names?: string): this; } /** * http://js.cytoscape.org/#collection/style */ interface SingularStyle { /** * Get whether an element has a particular class. * @param className The name of the class to test for. * http://js.cytoscape.org/#ele.hasClass */ hasClass(className: ClassName): boolean; /** * Get a name-value pair object containing rendered visual * style properties and their values for the element. * @param name The name of the visual style property to get. */ renderedStyle(): { [name: string]: any }; renderedStyle(name: string): any; renderedCss(): { [name: string]: any }; renderedCss(name: string): any; /** * Get the numeric value of a style property in * preferred units that can be used for calculations. * @param name The name of the style property to get. * http://js.cytoscape.org/#ele.numericStyle */ numericStyle(name: string): any; /** * Get the units that ele.numericStyle() is expressed in, for a particular property. * @param name The name of the style property to get. * http://js.cytoscape.org/#ele.numericStyleUnits */ numericStyleUnits(name: string): any; /** * Get whether the element is visible. * http://js.cytoscape.org/#ele.visible */ visible(): boolean; /** * Get whether the element is hidden. * http://js.cytoscape.org/#ele.visible */ hidden(): boolean; /** * Get the effective opacity of the element * (i.e. on-screen opacity), * which takes into consideration parent node opacity. * http://js.cytoscape.org/#ele.effectiveOpacity */ effectiveOpacity(): number; /** * Get whether the element's effective opacity is completely transparent, * which takes into consideration parent node opacity. * http://js.cytoscape.org/#ele.transparent */ transparent(): number; } /** * http://js.cytoscape.org/#collection/animation */ interface ElementAnimateOptionsBase { /** An object containing name-value pairs of style properties to animate. */ style?: { [name: string]: any }; /** The duration of the animation in milliseconds. */ duration?: number; /** A boolean indicating whether to queue the animation. */ queue?: boolean; /** A function to call when the animation is done. */ complete?(): void; /** A function to call each time the animation steps. */ step?(): void; /** A transition-timing-function easing style string that shapes the animation progress curve. */ easing?: Css.TransitionTimingFunction; } interface ElementAnimateOptionPos extends ElementAnimateOptionsBase { /** A position to which the elements will be animated. */ position?: Position; } interface ElementAnimateOptionRen extends ElementAnimateOptionsBase { /** A rendered position to which the elements will be animated. */ renderedPosition?: Position; } interface CollectionAnimation { /** * Animate the elements. * @param options An object containing the details of the animation. * http://js.cytoscape.org/#eles.animate */ animate(options: ElementAnimateOptionPos | ElementAnimateOptionRen, params?: ElementAnimateOptionsBase): this; /** * Add a delay between animations for the elements. * @param duration How long the delay should be in milliseconds. * @param complete A function to call when the delay is complete. * http://js.cytoscape.org/#eles.delay */ delay(duration: number, complete?: () => void): this; /** * Stop all animations that are currently running. * @param clearQueue A boolean, indicating whether the queue of animations should be emptied. * @param jumpToEnd A boolean, indicating whether the currently-running animations should jump to their ends rather than just stopping midway. * http://js.cytoscape.org/#eles.stop */ stop(clearQueue?: boolean, jumpToEnd?: boolean): this; /** * Remove all queued animations for the elements. * http://js.cytoscape.org/#eles.clearQueue */ clearQueue(): this; } interface SingularAnimationOptionsBase { /** A position to which the elements will be animated. */ position: Position; /** A rendered position to which the elements will be animated. */ renderedPosition: Position; /** An object containing name-value pairs of style properties to animate. */ style: any; /** The duration of the animation in milliseconds. */ duration: number; /** A transition-timing-function easing style string that shapes the animation progress curve. */ easing: Css.TransitionTimingFunction; } interface SingularAnimationOptionsPos extends SingularAnimationOptionsBase { /** A position to which the elements will be animated. */ position: Position; } interface SingularAnimationOptionsRen extends SingularAnimationOptionsBase { /** A rendered position to which the elements will be animated. */ renderedPosition: Position; } interface SingularAnimation { /** * Get whether the element is currently being animated. */ animated(): boolean; /** * Get an animation for the element. * @param options An object containing the details of the animation. */ animation(options: SingularAnimationOptionsRen | SingularAnimationOptionsPos): AnimationManipulation; /** * Get a delay animation for the element. * @param duration How long the delay should be in milliseconds. * http://js.cytoscape.org/#ele.delayAnimation */ delayAnimation(duration: number): AnimationManipulation; } /** * http://js.cytoscape.org/#collection/comparison */ interface CollectionComparision { /** * Determine whether this collection contains exactly the same elements as another collection. * @param eles The other elements to compare to. */ same(eles: CollectionArgument): boolean; /** * Determine whether this collection contains any of the same elements as another collection. * @param eles The other elements to compare to. */ anySame(eles: CollectionArgument): boolean; /** * Determine whether this collection contains all of the elements of another collection. */ contains(eles: CollectionArgument): boolean; has(eles: CollectionArgument): boolean; /** * Determine whether all elements in the specified collection are in the neighbourhood of the calling collection. * @param eles The other elements to compare to. */ allAreNeighbors(eles: CollectionArgument): boolean; allAreNeighbours(eles: CollectionArgument): boolean; /** * Determine whether any element in this collection matches a selector. * * @param selector The selector to match against. */ is(selector: Selector): boolean; /** * Determine whether all elements in the collection match a selector. * @param selector The selector to match against. */ allAre(selector: Selector): boolean; /** * Determine whether any element in this collection satisfies the specified test function. * * @param test The test function that returns truthy values for elements that satisfy the test and falsey values for elements that do not satisfy the test. * ele - The current element. * i - The index of the current element. * eles - The collection of elements being tested. * @param thisArg [optional] The value for this within the test function. */ some(test: (ele: CollectionArgument, i: number, eles: CollectionArgument) => boolean, thisArg?: any): boolean; /** * Determine whether all elements in this collection satisfy the specified test function. * * @param test The test function that returns truthy values for elements that satisfy the test and falsey values for elements that do not satisfy the test. * ele - The current element. * i - The index of the current element. * eles - The collection of elements being tested. * @param thisArg [optional] The value for this within the test function. */ every(test: (ele: CollectionArgument, i: number, eles: CollectionArgument) => boolean, thisArg?: any): boolean; } /** * http://js.cytoscape.org/#collection/iteration */ interface CollectionIteration { /** * Get the number of elements in the collection. */ size(): number; /** * Get the number of elements in the collection. */ length: number; /** * Get whether the collection is empty, meaning it has no elements. */ empty(): boolean; /** * Get whether the collection is nonempty, meaning it has elements. */ nonempty(): boolean; /** * Iterate over the elements in the collection using an implementation like the native array function namesake. * * This function behaves like Array.prototype.forEach() with minor changes for convenience: * You can exit the iteration early by returning false in the iterating function. * The Array.prototype.forEach() implementation does not support this, but it is included anyway on account of its utility. * * @param each The function executed each iteration. * ele - The current element. * i - The index of the current element. * eles - The collection of elements being iterated. * @param thisArg [optional] The value for this within the iterating function. */ // eslint-disable-next-line @typescript-eslint/no-invalid-void-type each(each: (ele: TIn, i: number, eles: this) => void | boolean, thisArg?: any): this; // eslint-disable-next-line @typescript-eslint/no-invalid-void-type forEach(each: (ele: TIn, i: number, eles: this) => void | boolean, thisArg?: any): this; /** * Get an element at a particular index in the collection. * * You may use eles[i] in place of eles.eq(i) as a more performant alternative. * * @param index The index of the element to get. */ eq(index: number): TOut; /** * Get an element at a particular index in the collection. * * @param index The index of the element to get. */ [index: number]: TOut; /** * Get the first element in the collection. */ first(): TOut; /** * Get the last element in the collection. */ last(): TOut; /** * Get a subset of the elements in the collection based on specified indices. * * @param start [optional] An integer that specifies where to start the selection. * The first element has an index of 0. * Use negative numbers to select from the end of an array. * @param end [optional] An integer that specifies where to end the selection. * If omitted, all elements from the start position and to the end of the array will be selected. * Use negative numbers to select from the end of an array. */ slice(start?: number, end?: number): this; /** * Get the collection as an array, maintaining the order of the elements. */ toArray(): TOut[]; [Symbol.iterator](): Iterator; } /** * http://js.cytoscape.org/#collection/building--filtering */ /** * Get a new collection, resulting from adding the collection with another one * * @param eles The elements or array of elements to add or elements in the graph matching the selector. * http://js.cytoscape.org/#eles.union */ type CollectionBuildingUnionFunc = ( eles: CollectionArgument | CollectionArgument[] | Selector, ) => CollectionReturnValue; /** * Get a new collection, resulting from the collection without some specified elements. * http://js.cytoscape.org/#eles.difference * @param eles The elements that will not be in the resultant collection. * Elements from the calling collection matching this selector will not be in the resultant collection. */ type CollectionBuildingDifferenceFunc = (eles: CollectionArgument | Selector) => CollectionReturnValue; /** * Get the elements in both this collection and another specified collection. * http://js.cytoscape.org/#eles.intersection * @param eles The elements to intersect with. * A selector representing the elements to intersect with. * All elements in the graph matching the selector are used as the passed collection. */ type CollectionBuildingIntersectionFunc = (eles: CollectionArgument | Selector) => CollectionReturnValue; /** * Get the elements that are in the calling collection or the passed collection but not in both. * http://js.cytoscape.org/#eles.symmetricDifference * @param eles The elements to apply the symmetric difference with. * A selector representing the elements to apply the symmetric difference with. * All elements in the graph matching the selector are used as the passed collection. */ type CollectionSymmetricDifferenceFunc = (eles: CollectionArgument | Selector) => CollectionReturnValue; /** * http://js.cytoscape.org/#collection/building--filtering */ interface CollectionBuildingFiltering { /** * Get an element in the collection from its ID in a very performant way. * @param id The ID of the element to get. */ getElementById(id: string): TOut; /** * Get an element in the collection from its ID in a very performant way. * @param id The ID of the element to get. */ $id(id: string): TOut; /** * Get a new collection, resulting from adding the collection with another one * http://js.cytoscape.org/#eles.union */ union: CollectionBuildingUnionFunc; u: CollectionBuildingUnionFunc; add: CollectionBuildingUnionFunc; "+": CollectionBuildingUnionFunc; or: CollectionBuildingUnionFunc; "|": CollectionBuildingUnionFunc; /** * Get a new collection, resulting from the collection without some specified elements. * http://js.cytoscape.org/#eles.difference */ difference: CollectionBuildingDifferenceFunc; subtract: CollectionBuildingDifferenceFunc; "\\": CollectionBuildingDifferenceFunc; not: CollectionBuildingDifferenceFunc; "!": CollectionBuildingDifferenceFunc; relativeComplement: CollectionBuildingDifferenceFunc; "-": CollectionBuildingDifferenceFunc; /** * Get all elements in the graph that are not in the calling collection. * http://js.cytoscape.org/#eles.absoluteComplement */ absoluteComplement(): CollectionReturnValue; abscomp(): CollectionReturnValue; complement(): CollectionReturnValue; /** * Get the elements in both this collection and another specified collection. * http://js.cytoscape.org/#eles.intersection */ intersection: CollectionBuildingIntersectionFunc; intersect: CollectionBuildingIntersectionFunc; and: CollectionBuildingIntersectionFunc; n: CollectionBuildingIntersectionFunc; "&": CollectionBuildingIntersectionFunc; ".": CollectionBuildingIntersectionFunc; /** * Get the elements that are in the calling collection * or the passed collection but not in both. * http://js.cytoscape.org/#eles.symmetricDifference */ symmetricDifference: CollectionSymmetricDifferenceFunc; symdiff: CollectionSymmetricDifferenceFunc; xor: CollectionSymmetricDifferenceFunc; "^": CollectionSymmetricDifferenceFunc; "(+)": CollectionSymmetricDifferenceFunc; "(-)": CollectionSymmetricDifferenceFunc; /** * Perform a traditional left/right diff on the two collections. * * @param selector * A selector representing the elements on the right side of the diff. All elements in the graph matching the selector are used as the passed collection. * The elements on the right side of the diff. * @return This function returns a plain object of the form { left, right, both } where * left - is the set of elements only in the calling (i.e. left) collection, * right - is the set of elements only in the passed (i.e. right) collection, and * both - is the set of elements in both collections. * http://js.cytoscape.org/#eles.diff */ diff(selector: Selector | CollectionArgument): { left: CollectionReturnValue; right: CollectionReturnValue; both: CollectionReturnValue; }; /** * Perform a in-place merge of the given elements into the calling collection. * @param eles The elements to merge in-place or a selector representing the elements to merge. * All elements in the graph matching the selector are used as the passed collection. * * This function modifies the calling collection instead of returning a new one. * Use of this function should be considered for performance in some cases, but otherwise should be avoided. Consider using eles.union() instead. * Use this function only on new collections that you create yourself, using cy.collection(). * This ensures that you do not unintentionally modify another collection. * * Examples * With a collection: * @example * var col = cy.collection(); // new, empty collection * var j = cy.$('#j'); * var e = cy.$('#e'); * col.merge( j ).merge( e ); * * With a selector: * @example * var col = cy.collection(); // new, empty collection * col.merge('#j').merge('#e'); */ merge(eles: CollectionArgument | Selector): this; /** * Perform an in-place operation on the calling collection to remove the given elements. * @param eles The elements to remove in-place or a selector representing the elements to remove . * All elements in the graph matching the selector are used as the passed collection. * * This function modifies the calling collection instead of returning a new one. * Use of this function should be considered for performance in some cases, but otherwise should be avoided. Consider using eles.filter() or eles.remove() instead. * Use this function only on new collections that you create yourself, using cy.collection(). * This ensures that you do not unintentionally modify another collection. * * Examples * With a collection: * @example * var col = cy.collection(); // new, empty collection * var e = cy.$('#e'); * col.merge( cy.nodes() ); * col.unmerge( e ); * * With a selector: * @example * var col = cy.collection(); // new, empty collection * col.merge( cy.nodes() ); * col.unmerge('#e'); */ unmerge(eles: CollectionArgument | Selector): this; /** * Get a new collection containing elements that are accepted by the specified filter. * * @param selector The selector to match against. * @param filter selector The filter function that returns true for elements to include. * i - The index of the current element being considered. * ele - The element being considered. * http://js.cytoscape.org/#eles.filter */ filter( selector: Selector | ((ele: TIn, i: number, eles: CollectionArgument) => boolean), ): CollectionReturnValue; /** * Get the nodes that match the specified selector. * * @param selector The selector to match against. * http://js.cytoscape.org/#eles.filter */ nodes(selector?: Selector): NodeCollection; /** * Get the edges that match the specified selector. * * @param selector The selector to match against. * http://js.cytoscape.org/#eles.filter */ edges(selector?: Selector): EdgeCollection; /** * Get a new collection containing the elements sorted by the * specified comparison function. * * @param sort The sorting comparison function that returns a negative number * for ele1 before ele2, 0 for ele1 same as ele2, * or a positive number for ele1 after ele2. * * http://js.cytoscape.org/#eles.sort */ sort(sort: (ele1: TIn, ele2: TIn) => number): CollectionReturnValue; /** * Get an array containing values mapped from the collection. * * @param fn The function that returns the mapped value for each element. * ele - The current element. * i - The index of the current element. * eles - The collection of elements being mapped. * @param thisArg [optional] The value for this within the iterating function. * * http://js.cytoscape.org/#eles.map */ map(fn: (ele: TIn, i: number, eles: CollectionArgument) => T, thisArg?: any): T[]; /** * Reduce a single value by applying a * function against an accumulator and each value of the collection. * * @param fn The function that returns the accumulated value * given the previous value and the current element. * prevVal The value accumulated from previous elements. * ele The current element. * i The index of the current element. * eles The collection of elements being reduced. * @param initialValue The initial value for reducing * It is used also for type inference of output, but the type can be * also stated explicitly as generic * http://js.cytoscape.org/#eles.reduce */ reduce(fn: (prevVal: T, ele: TIn, i: number, eles: CollectionArgument) => T, initialValue: T): T; /** * Find a minimum value in a collection. * * @param fn The function that returns the value to compare for each element. * ele - The current element. * i - The index of the current element. * eles - The collection of elements being mapped. * @param thisArg [optional] The value for this within the iterating function. * * http://js.cytoscape.org/#eles.min */ min( fn: (ele: TIn, i: number, eles: CollectionArgument) => T, thisArg?: any, ): { /** * The minimum value found. */ value: T; /** * The element that corresponds to the minimum value. */ ele: SingularElementReturnValue; }; /** * Find a maximum value and the corresponding element. * * @param fn The function that returns the value to compare for each element. * ele - The current element. * i - The index of the current element. * eles - The collection of elements being mapped. * @param thisArg [optional] The value for this within the iterating function. * * http://js.cytoscape.org/#eles.max */ max( fn: (ele: TIn, i: number, eles: CollectionArgument) => T, thisArg?: any, ): { /** * The minimum value found. */ value: T; /** * The element that corresponds to the minimum value. */ ele: SingularElementReturnValue; }; } /** * http://js.cytoscape.org/#collection/traversing */ type MinumumSpanningTree = any; interface CollectionTraversing { // http://js.cytoscape.org/#collection/traversing /** * Get the open neighbourhood of the elements. * * The neighbourhood returned by this function is a bit different than the traditional definition of a "neighbourhood": * This returned neighbourhood includes the edges connecting the collection to the neighbourhood. This gives you more flexibility. * An open neighbourhood is one that does not include the original set of elements. If unspecified, a neighbourhood is open by default. * * @param selector [optional] An optional selector that is used to filter the resultant collection. */ neighborhood(selector?: Selector): CollectionReturnValue; /** * Get the open neighbourhood of the elements. * * The neighbourhood returned by this function is a bit different than the traditional definition of a "neighbourhood": * This returned neighbourhood includes the edges connecting the collection to the neighbourhood. This gives you more flexibility. * An open neighbourhood is one that does not include the original set of elements. If unspecified, a neighbourhood is open by default. * * @param selector [optional] An optional selector that is used to filter the resultant collection. */ openNeighborhood(selector?: Selector): CollectionReturnValue; /** * Get the closed neighbourhood of the elements. * * The neighbourhood returned by this function is a bit different than the traditional definition of a "neighbourhood": * This returned neighbourhood includes the edges connecting the collection to the neighbourhood. This gives you more flexibility. * A closed neighbourhood is one that does include the original set of elements. * * @param selector [optional] An optional selector that is used to filter the resultant collection. */ closedNeighborhood(selector?: Selector): CollectionReturnValue; /** * Get the connected components, considering only the elements in the calling collection. * An array of collections is returned, with each collection representing a component. */ components(): CollectionReturnValue[]; /** * Get the connected components to which the passed elements belong. * The components consider only the subgraph made by the elements in the calling collection. * An array of collections is returned, with each collection representing a component. * http://js.cytoscape.org/#eles.componentsOf * @param root The components that contain these elements are returned. */ componentsOf(root: Selector): CollectionReturnValue[]; } /** * http://js.cytoscape.org/#collection/edge-points */ interface EdgeSingularPoints { /** * Get an array of control point model positions for a {@code curve-style: bezier) or {@code curve-style: unbundled-bezier} edge. * * While the control points may be specified relatively in the CSS, * this function returns the absolute model positions of the control points. * The points are specified in the order of source-to-target direction. * This function works for bundled beziers, but it is not applicable to the middle, straight-line edge in the bundle. */ controlPoints(): Position[]; /** * Get the control points in rendered coordinates. * http://js.cytoscape.org/#edge.renderedControlPoints */ renderedControlPoints(): Position[]; /** * Get an array of segment point model positions (i.e. bend points) for a {@code curve-style: segments} edge. * * While the segment points may be specified relatively in the stylesheet, * this function returns the absolute model positions of the segment points. * The points are specified in the order of source-to-target direction. */ segmentPoints(): Position[]; /** * Get the segment points in rendered coordinates. * http://js.cytoscape.org/#edge.renderedSegmentPoints */ renderedSegmentPoints(): Position[]; /** * Get the model position of where the edge ends, towards the source node. */ sourceEndpoint(): Position; /** * Get the source endpoint in rendered coordinates. * http://js.cytoscape.org/#edge.renderedSourceEndpoint */ renderedSourceEndpoint(): Position; /** * Get the model position of where the edge ends, towards the target node. */ targetEndpoint(): Position; /** * Get the target endpoint in rendered coordinates. * http://js.cytoscape.org/#edge.renderedTargetEndpoint */ renderedTargetEndpoint(): Position; /** * Get the model position of the midpoint of the edge. * * The midpoint is, by default, where the edge’s label is centred. It is also the position towards which mid arrows point. * For curve-style: unbundled-bezier edges, the midpoint is the middle extremum if the number of control points is odd. * For an even number of control points, the midpoint is where the two middle-most control points meet. * This is the middle inflection point for bilaterally symmetric or skew symmetric edges, for example. * For curve-style: segments edges, the midpoint is the middle segment point if the number of segment points is odd. * For an even number of segment points, the overall midpoint is the midpoint of the middle-most line segment (i.e. the mean of the middle two segment points). */ midpoint(): Position; /** * Get the midpoint in rendered coordinates. * http://js.cytoscape.org/#edge.renderedMidpoint */ renderedMidpoint(): Position; } interface EdgeSingularTraversing { /** * Get source node of this edge. * @param selector An optional selector that is used to filter the resultant collection. * http://js.cytoscape.org/#edge.source */ source(selector?: Selector): NodeSingular; /** * Get target node of this edge. * @param selector An optional selector that is used to filter the resultant collection. * http://js.cytoscape.org/#edge.target */ target(selector?: Selector): NodeSingular; } interface EdgeCollectionTraversing { // http://js.cytoscape.org/#collection/traversing /** * Get the nodes connected to the edges in the collection * * @param selector [optional] An optional selector that is used to filter the resultant collection. */ connectedNodes(selector?: Selector): NodeCollection; /** * Get source nodes connected to the edges in the collection. * * @param selector [optional] An optional selector that is used to filter the resultant collection. */ sources(selector?: Selector): NodeCollection; /** * Get target nodes connected to the edges in the collection. * * @param selector [optional] An optional selector that is used to filter the resultant collection. */ targets(selector?: Selector): NodeCollection; /** * Get edges parallel to those in the collection. * * Two edges are said to be parallel if they connect the same two nodes. * Any two parallel edges may connect nodes in the same direction, in which case the edges share the same source and target. * They may alternatively connect nodes in the opposite direction, in which case the source and target are reversed in the second edge. * That is: * - edge1.source().id() === edge2.source().id() * && edge1.target().id() === edge2.target().id() * OR * - edge1.source().id() === edge2.target().id() * && edge1.target().id() === edge2.source().id() * * @param selector [optional] An optional selector that is used to filter the resultant collection. */ parallelEdges(selector?: Selector): EdgeCollection; /** * Get edges codirected to those in the collection. * * Two edges are said to be codirected if they connect the same two nodes in the same direction: The edges have the same source and target. * That is: * - edge1.source().id() === edge2.source().id() * && edge1.target().id() === edge2.target().id() * * @param selector [optional] An optional selector that is used to filter the resultant collection. */ codirectedEdges(selector?: Selector): EdgeCollection; } interface NodeCollectionTraversing { // http://js.cytoscape.org/#collection/traversing /** * Get the edges connecting the collection to another collection. Direction of the edges does not matter. * * @param eles The other collection. * @param selector The other collection, specified as a selector which is matched against all elements in the graph. */ edgesWith(eles: CollectionArgument | Selector): EdgeCollection; /** * Get the edges coming from the collection (i.e. the source) going to another collection (i.e. the target). * * @param eles The other collection. * @param selector The other collection, specified as a selector which is matched against all elements in the graph. */ edgesTo(eles: CollectionArgument | Selector): EdgeCollection; /** * Get the edges connected to the nodes in the collection. * * @param selector [optional] An optional selector that is used to filter the resultant collection. */ connectedEdges(selector?: Selector): EdgeCollection; /** * From the set of calling nodes, get the nodes which are roots (i.e. no incoming edges, as in a directed acyclic graph). * * @param selector [optional] An optional selector that is used to filter the resultant collection. */ roots(selector?: Selector): NodeCollection; /** * From the set of calling nodes, get the nodes which are leaves (i.e. no outgoing edges, as in a directed acyclic graph). * * @param selector [optional] An optional selector that is used to filter the resultant collection. */ leaves(selector?: Selector): NodeCollection; /** * Get edges (and their targets) coming out of the nodes in the collection. * * @param selector [optional] An optional selector that is used to filter the resultant collection. */ outgoers(selector?: Selector): CollectionReturnValue; /** * Recursively get edges (and their targets) coming out of the nodes in the collection (i.e. the outgoers, the outgoers' outgoers, ...). * * @param selector [optional] An optional selector that is used to filter the resultant collection. */ successors(selector?: Selector): CollectionReturnValue; /** * Get edges (and their sources) coming into the nodes in the collection. * * @param selector [optional] An optional selector that is used to filter the resultant collection. */ incomers(selector?: Selector): CollectionReturnValue; /** * Recursively get edges (and their sources) coming into the nodes in the collection (i.e. the incomers, the incomers' incomers, ...). * * @param selector [optional] An optional selector that is used to filter the resultant collection. */ predecessors(selector?: Selector): CollectionReturnValue; } /** * http://js.cytoscape.org/#collection/algorithms */ type WeightFn = (edge: EdgeCollection) => number; /** * The handler returns true when it finds the desired node, and it returns false to cancel the search. * v - The current node. * e - The edge connecting the previous node to the current node. * u - The previous node. * i - The index indicating this node is the ith visited node. * depth - How many edge hops away this node is from the root nodes. */ type SearchVisitFunction = ( v: NodeSingular, e: EdgeSingular, u: NodeSingular, i: number, depth: number, // eslint-disable-next-line @typescript-eslint/no-invalid-void-type ) => boolean | void; interface SearchFirstOptionsBase { /** * A handler function that is called when a node is visited in the search. */ visit?: SearchVisitFunction; /** * A boolean indicating whether the algorithm should only go along edges from source to target (default false). */ directed?: boolean; } interface SearchFirstOptions1 extends SearchFirstOptionsBase { /** * The root nodes (selector or collection) to start the search from. */ root: Selector | CollectionArgument; } interface SearchFirstOptions2 extends SearchFirstOptionsBase { /** * The root nodes (selector or collection) to start the search from. */ roots: Selector | CollectionArgument; } type SearchFirstOptions = SearchFirstOptions1 | SearchFirstOptions2; interface SearchFirstResult { /** * The path of the search. * - The path returned includes edges such that if path[i] is a node, then path[i - 1] is the edge used to get to that node. */ path: CollectionArgument; /** * The node found by the search * - If no node was found, then found is empty. * - If your handler function returns false, then the only the path up to that point is returned. */ found: NodeCollection; } /** * http://js.cytoscape.org/#eles.dijkstra */ interface SearchDijkstraOptions { /** * The root node (selector or collection) where the algorithm starts. */ root: Selector | CollectionArgument; /** * A function that returns the positive numeric weight for this edge. * * If no weight function is defined, a constant weight of 1 is used for each edge. */ weight?: WeightFn; /** * A boolean indicating whether the algorithm should only go along edges from source to target (default false). */ directed?: boolean; } /** * http://js.cytoscape.org/#eles.dijkstra */ interface SearchDijkstraResult { /** * Returns the distance from the source node to node. */ distanceTo(node: NodeSingular): number; /** * Returns a collection containing the shortest path from the source node to node. * The path starts with the source node and includes the edges between the nodes in the path such that if pathTo(node)[i] is an edge, * then pathTo(node)[i-1] is the previous node in the path and pathTo(node)[i+1] is the next node in the path. */ pathTo(node: NodeSingular): CollectionReturnValue; } /** * http://js.cytoscape.org/#eles.aStar */ interface SearchAStarOptions { root: Selector | CollectionArgument; goal: Selector | CollectionArgument; weight?: WeightFn; heuristic?(node: NodeCollection): number; directed?: boolean; } /** * http://js.cytoscape.org/#eles.aStar */ interface SearchAStarResult { found: boolean; distance: number; path: CollectionReturnValue; } /** * http://js.cytoscape.org/#eles.floydWarshall */ interface SearchFloydWarshallOptions { weight: WeightFn; directed?: boolean; } /** * http://js.cytoscape.org/#eles.floydWarshall */ interface SearchFloydWarshallResult { /** * Returns the distance from the source node to node. */ distance(fromNode: NodeSingular | CollectionSelection, toNode: NodeSingular | Selector): number; /** * Returns a collection containing the shortest path from the source node to node. * The path starts with the source node and includes the edges * between the nodes in the path such that if pathTo(node)[i] is an edge, * then pathTo(node)[i-1] is the previous node in the path and pathTo(node)[i+1] * is the next node in the path. */ path(fromNode: NodeSingular | CollectionSelection, toNode: NodeSingular | Selector): CollectionReturnValue; } /** * http://js.cytoscape.org/#eles.bellmanFord */ interface SearchBellmanFordOptions { /** * The root node (selector or collection) where the search starts. */ root: any; /** * A function that returns the positive numeric weight for this edge. */ weight?: WeightFn; /** * Indicating whether the algorithm should only go along * edges from source to target (default false). */ directed: boolean; /** * Indicating whether the algorithm should find and return * negative weight cycles (default true). */ findNegativeWeightCycles?: boolean; } /** * http://js.cytoscape.org/#eles.bellmanFord */ interface SearchBellmanFordResult { /** * function that computes the shortest path from root node to the argument node * (either objects or selector string) */ pathTo(node: NodeSingular | Selector): CollectionReturnValue; /** * function that computes the shortest distance from root node to argument node * (either objects or selector string) */ distanceTo(node: NodeSingular | Selector): number; /* true/false. If true, pathTo and distanceTo will be undefined */ hasNegativeWeightCycle: boolean; /** * array of collections corresponding to the negative weight cycles found * (only populated if the findNegativeWeightCycles option is set to true) */ negativeWeightCycles: CollectionReturnValue[]; } /** * http://js.cytoscape.org/#eles.kruskal * trivial so implemented in the function */ /** * http://js.cytoscape.org/#eles.pageRank */ interface SearchPageRankOptions { /** Numeric parameter for the algorithm. */ dampingFactor?: number; /** Numeric parameter that represents the required precision. */ precision?: number; /** Maximum number of iterations to perform. */ iterations?: number; } /** * http://js.cytoscape.org/#eles.pageRank */ interface SearchPageRankResult { /** function that computes the rank of a given node (either object or selector string) */ rank(node: NodeCollection): number; } /** * http://js.cytoscape.org/#eles.degreeCentrality */ interface SearchDegreeCentralityOptions { /** * The root node (selector or collection) for which the * centrality calculation is made. */ root: NodeSingular | Selector; /** A function that returns the weight for the edge. */ weight?(edge: EdgeSingular): number; /** * The alpha value for the centrality calculation, ranging on [0, 1]. * With value 0 (default), disregards edge weights and solely uses * number of edges in the centrality calculation. With value 1, * disregards number of edges and solely uses the edge weights * in the centrality calculation. */ alpha?: number; /** * Whether the directed indegree and outdegree centrality is calculated (true) or * whether the undirected centrality is calculated (false, default). */ directed?: boolean; } /** * http://js.cytoscape.org/#eles.degreeCentrality */ interface SearchDegreeCentralityResultUndirected { /** the degree centrality of the root node */ degree: number; } interface SearchDegreeCentralityResultDirected { /* the indegree centrality of the root node */ indegree: number; /* the outdegree centrality of the root node */ outdegree: number; } /** * http://js.cytoscape.org/#eles.degreeCentralityNormalized */ interface SearchDegreeCentralityNormalizedOptions { /** A function that returns the weight for the edge. */ weight(edge: EdgeSingular): number; /** * The alpha value for the centrality calculation, ranging on [0, 1]. * With value 0 (default), disregards edge weights and solely uses * number of edges in the centrality calculation. With value 1, * disregards number of edges and solely uses the edge weights * in the centrality calculation. */ alpha?: number; /** * A boolean indicating whether the directed indegree and outdegree centrality is calculated (true) or * whether the undirected centrality is calculated (false, default). */ directed?: boolean; } /** * http://js.cytoscape.org/#eles.degreeCentralityNormalized */ interface SearchDegreeCentralityNormalizedResultUndirected { /** the normalised degree centrality of the specified node */ degree(node: NodeSingular): any; } interface SearchDegreeCentralityNormalizedResultDirected { /** the normalised indegree centrality of the specified node */ indegree(node: NodeSingular): any; /** the normalised outdegree centrality of the specified node */ outdegree(node: NodeSingular): any; } /** * http://js.cytoscape.org/#eles.closenessCentrality */ interface SearchClosenessCentralityOptions { /** * The root node (selector or collection) for which the * centrality calculation is made. */ root: NodeSingular | Selector; /** A function that returns the weight for the edge. */ weight?(edge: EdgeSingular): number; /** * A boolean indicating whether the directed indegree and outdegree centrality is calculated (true) or * whether the undirected centrality is calculated (false, default). */ directed?: boolean; /** * A boolean indicating whether the algorithm calculates the * harmonic mean (true, default) or the arithmetic mean (false) of distances. * The harmonic mean is very useful for graphs that are not strongly connected. */ harmonic?: boolean; } /** * http://js.cytoscape.org/#eles.closenessCentrality * trivial */ /** * http://js.cytoscape.org/#eles.closenessCentralityNormalized */ interface SearchClosenessCentralityNormalizedOptions { /** A function that returns the weight for the edge. */ weight?(edge: EdgeSingular): number; directed?: boolean; /** * A boolean indicating whether the algorithm calculates the * harmonic mean (true, default) or the arithmetic mean (false) of distances. * The harmonic mean is very useful for graphs that are not strongly connected. */ harmonic?: boolean; } /** * http://js.cytoscape.org/#eles.closenessCentralityNormalized */ interface SearchClosenessCentralityNormalizedResult { /** the normalised closeness centrality of the specified node */ closeness(node: NodeSingular): any; } /** * http://js.cytoscape.org/#eles.betweennessCentrality */ interface SearchBetweennessOptions { /** A function that returns the weight for the edge. */ weight?(edge: EdgeSingular): number; /** * A boolean indicating whether the directed indegree and outdegree centrality is calculated (true) or * whether the undirected centrality is calculated (false, default). */ directed?: boolean; } /** * http://js.cytoscape.org/#eles.betweennessCentrality */ interface SearchBetweennessResult { /** returns the betweenness centrality of the specified node */ betweenness(node: NodeSingular): number; /** returns the normalised betweenness centrality of the specified node */ betweennessNormalized(node: NodeSingular): number; betweennessNormalised(node: NodeSingular): number; } /** * http://js.cytoscape.org/#eles.closenessCentralityNormalized */ interface SearchClosenessCentralityNormalizedOptions { /** A function that returns the weight for the edge. */ weight?(edge: EdgeSingular): number; directed?: boolean; /** * A boolean indicating whether the algorithm calculates the * harmonic mean (true, default) or the arithmetic mean (false) of distances. * The harmonic mean is very useful for graphs that are not strongly connected. */ harmonic?: boolean; } /** * http://js.cytoscape.org/#eles.closenessCentralityNormalized * trivial */ /** * Options for hierarchical clustering. */ interface HierarchicalClusteringOptions { attributes?: ((node: NodeSingular) => number)[]; distance?: "euclidean" | "squaredEuclidean" | "manhattan" | "max" | ((length: number, getPAt: (i: number) => number, getQAt: (i: number) => number, nodeP?: NodeSingular, nodeQ?: NodeSingular) => number) | ((nodeP: NodeSingular, nodeQ: NodeSingular) => number); linkage?: "mean" | "min" | "max"; mode?: "threshold" | "dendrogram"; threshold?: number; dendrogramDepth?: number; addDendrogram?: boolean; } /** * Result of hierarchical clustering. */ interface HierarchicalClusteringResult { clusters: NodeCollection[]; dendrogram?: CollectionReturnValue; } /** * Options for Markov clustering. */ interface MarkovClusteringOptions { attributes?: ((edge: EdgeSingular) => number)[]; expandFactor?: number; inflateFactor?: number; multFactor?: number; maxIterations?: number; } /** * Result of Markov clustering. */ type MarkovClusteringResult = NodeCollection[]; /** * Options for k-means clustering. */ interface KMeansOptions { attributes: ((node: NodeSingular) => number)[]; k: number; distance?: "euclidean" | "squaredEuclidean" | "manhattan" | "max" | ((length: number, getPAt: (i: number) => number, getQAt: (i: number) => number, nodeP?: NodeSingular, nodeQ?: NodeSingular) => number); maxIterations?: number; sensitivityThreshold?: number; } /** * Result of k-means clustering. */ type KMeansResult = NodeCollection[]; /** * Options for k-medoids clustering. */ interface KMedoidsOptions { attributes: ((node: NodeSingular) => number)[]; k: number; distance?: "euclidean" | "squaredEuclidean" | "manhattan" | "max" | ((length: number, getPAt: (i: number) => number, getQAt: (i: number) => number, nodeP?: NodeSingular, nodeQ?: NodeSingular) => number) | ((nodeP: NodeSingular, nodeQ: NodeSingular) => number); maxIterations?: number; } /** * Result of k-medoids clustering. */ type KMedoidsResult = NodeCollection[]; /** * Options for fuzzy c-means clustering. */ interface FuzzyCMeansOptions { attributes: ((node: NodeSingular) => number)[]; k: number; distance?: "euclidean" | "squaredEuclidean" | "manhattan" | "max" | ((length: number, getPAt: (i: number) => number, getQAt: (i: number) => number, nodeP?: NodeSingular, nodeQ?: NodeSingular) => number); maxIterations?: number; sensitivityThreshold?: number; } /** * Result of fuzzy c-means clustering. */ interface FuzzyCMeansResult { clusters: NodeCollection[]; degreeOfMembership: number[][]; } /** * Options for affinity propagation clustering. */ interface AffinityPropagationOptions { attributes: ((node: NodeSingular) => number)[]; distance?: "euclidean" | "squaredEuclidean" | "manhattan" | "max" | ((length: number, getPAt: (i: number) => number, getQAt: (i: number) => number, nodeP?: NodeSingular, nodeQ?: NodeSingular) => number) | ((nodeP: NodeSingular, nodeQ: NodeSingular) => number); preference?: "median" | "mean" | "min" | "max" | number; damping?: number; minIterations?: number; maxIterations?: number; } /** * Result of affinity propagation clustering. */ type AffinityPropagationResult = NodeCollection[]; /** * Options for Hierholzer's algorithm. */ interface HierholzerOptions { root?: Selector | NodeCollection; directed?: boolean; } /** * Result of Hierholzer's algorithm. */ interface HierholzerResult { found: boolean; trail: CollectionReturnValue; } interface SearchAlgorithms { /** * Perform a breadth-first search within the elements in the collection. * @param options * http://js.cytoscape.org/#eles.breadthFirstSearch * @alias bfs */ breadthFirstSearch(options: SearchFirstOptions): SearchFirstResult; bfs(options: SearchFirstOptions): SearchFirstResult; /** * Perform a depth-first search within the elements in the collection. * http://js.cytoscape.org/#eles.depthFirstSearch * @alias dfs */ depthFirstSearch(options: SearchFirstOptions): SearchFirstResult; dfs(options: SearchFirstOptions): SearchFirstResult; /** * Perform Dijkstra's algorithm on the elements in the collection. * This finds the shortest paths to all other nodes in the collection from the root node. * http://js.cytoscape.org/#eles.dijkstra */ dijkstra(options: SearchDijkstraOptions): SearchDijkstraResult; /** * Perform the A* search algorithm on the elements in the collection. * This finds the shortest path from the root node to the goal node. * http://js.cytoscape.org/#eles.aStar */ aStar(options: SearchAStarOptions): SearchAStarResult; /** * Perform the Floyd Warshall search algorithm on the elements in the collection. * This finds the shortest path between all pairs of nodes. * http://js.cytoscape.org/#eles.floydWarshall */ floydWarshall(options: SearchFloydWarshallOptions): SearchFloydWarshallResult; /** * Perform the Bellman-Ford search algorithm on the elements in the collection. * This finds the shortest path from the starting node to all other nodes in the collection. * http://js.cytoscape.org/#eles.bellmanFord */ bellmanFord(options: SearchBellmanFordOptions): SearchBellmanFordResult; /** * Perform the Hierholzer search algorithm on the elements in the collection. * This finds Eulerian trails and circuits. * http://js.cytoscape.org/#eles.hierholzer */ hierholzer(options: HierholzerOptions): HierholzerResult; } interface SpanningAlgorithms { /** * Perform Kruskal's algorithm on the elements in the collection, * returning the minimum spanning tree, assuming undirected edges. * http://js.cytoscape.org/#eles.kruskal */ kruskal(handler: (edge: EdgeCollection) => number): CollectionReturnValue; } interface CutAlgorithms { /** * Finds the minimum cut in a graph using the Karger-Stein algorithm. * The optimal result is found with a high probability, but without guarantee. * http://js.cytoscape.org/#eles.kargerStein */ kargerStein(): { cut: EdgeCollection; components: CollectionReturnValue; partitionFirst: NodeCollection; partitionSecond: NodeCollection; }; /** * finds the biconnected components in an undirected graph, * as well as their respective cut vertices, using an algorithm due to Hopcroft and Tarjan. * http://js.cytoscape.org/#eles.hopcroftTarjanBiconnected */ hopcroftTarjanBiconnected(): { cut: NodeCollection; components: CollectionReturnValue }; /** * Finds the biconnected components in an undirected graph, * as well as their respective cut vertices, using an algorithm due to Hopcroft and Tarjan. * http://js.cytoscape.org/#eles.hopcroftTarjanBiconnected */ hopcroftTarjanBiconnectedComponents(): { cut: NodeCollection; components: CollectionReturnValue }; /** * Finds the biconnected components in an undirected graph, * as well as their respective cut vertices, using an algorithm due to Hopcroft and Tarjan. * http://js.cytoscape.org/#eles.hopcroftTarjanBiconnected */ htb(): { cut: NodeCollection; components: CollectionReturnValue }; /** * Finds the biconnected components in an undirected graph, * as well as their respective cut vertices, using an algorithm due to Hopcroft and Tarjan. * http://js.cytoscape.org/#eles.hopcroftTarjanBiconnected */ htbc(): { cut: NodeCollection; components: CollectionReturnValue }; /** * Finds the strongly connected components of a directed graph using Tarjan's algorithm. * http://js.cytoscape.org/#eles.tarjanStronglyConnected */ tarjanStronglyConnected(): { cut: EdgeCollection; components: CollectionReturnValue }; /** * Finds the strongly connected components of a directed graph using Tarjan's algorithm. * http://js.cytoscape.org/#eles.tarjanStronglyConnected */ tarjanStronglyConnectedComponents(): { cut: EdgeCollection; components: CollectionReturnValue }; /** * Finds the strongly connected components of a directed graph using Tarjan's algorithm. * http://js.cytoscape.org/#eles.tarjanStronglyConnected */ tsc(): { cut: EdgeCollection; components: CollectionReturnValue }; /** * Finds the strongly connected components of a directed graph using Tarjan's algorithm. * http://js.cytoscape.org/#eles.tarjanStronglyConnected */ tscc(): { cut: EdgeCollection; components: CollectionReturnValue }; } interface CentralityAlgorithms { /** * Considering only the elements in the calling collection, * calculate the degree centrality of the specified root node. * http://js.cytoscape.org/#eles.degreeCentrality */ degreeCentrality( options: SearchDegreeCentralityOptions, ): SearchDegreeCentralityResultDirected | SearchDegreeCentralityResultUndirected; /** * Considering only the elements in the calling collection, * calculate the normalised degree centrality of the nodes. * http://js.cytoscape.org/#eles.degreeCentralityNormalized */ degreeCentralityNormalized( options: SearchDegreeCentralityNormalizedOptions, ): SearchDegreeCentralityNormalizedResultDirected | SearchDegreeCentralityNormalizedResultUndirected; /** * Considering only the elements in the calling collection, * calculate the closeness centrality of the specified root node. * http://js.cytoscape.org/#eles.closenessCentrality */ closenessCentrality(options: SearchClosenessCentralityOptions): number; /** * Considering only the elements in the calling collection, * calculate the closeness centrality of the nodes. * http://js.cytoscape.org/#eles.closenessCentralityNormalized */ closenessCentralityNormalized( options: SearchClosenessCentralityNormalizedOptions, ): SearchClosenessCentralityNormalizedResult; /** * Considering only the elements in the calling collection, * calculate the betweenness centrality of the nodes. * http://js.cytoscape.org/#eles.betweennessCentrality */ betweennessCentrality(options: SearchBetweennessOptions): SearchBetweennessResult; /** * Rank the nodes in the collection using the Page Rank algorithm. * http://js.cytoscape.org/#eles.pageRank */ pageRank(options: SearchPageRankOptions): SearchPageRankResult; } interface ClusteringAlgorithms { /** * Considering only the elements in the calling collection, * run the Markov cluster algorithm of the nodes. * http://js.cytoscape.org/#eles.markovClustering */ markovClustering(options: MarkovClusteringOptions): MarkovClusteringResult; /** * Considering only the nodes in the calling collection, * calculate the k-means clustering of the nodes. * http://js.cytoscape.org/#nodes.kMeans */ kMeans(options: KMeansOptions): KMeansResult; /** * Considering only the elements in the calling collection, * calculate the agglomerative hierarchical clustering of the nodes. * http://js.cytoscape.org/#nodes.hierarchicalClustering */ hierarchicalClustering(options: HierarchicalClusteringOptions): HierarchicalClusteringResult; /** * Considering only the nodes in the calling collection, * calculate the k-medoids clustering of the nodes. * http://js.cytoscape.org/#nodes.kMedoids */ kMedoids(options: KMedoidsOptions): KMedoidsResult; /** * Considering only the elements in the calling collection, * calculate the fuzzy c-means clustering of the nodes. * http://js.cytoscape.org/#nodes.fuzzyCMeans */ fuzzyCMeans(options: FuzzyCMeansOptions): FuzzyCMeansResult; /** * Considering only the elements in the calling collection, * calculate the affinity propagation clustering of the nodes. * http://js.cytoscape.org/#nodes.affinityPropagation */ affinityPropagation(options: AffinityPropagationOptions): AffinityPropagationResult; } interface CollectionAlgorithms extends SearchAlgorithms, SpanningAlgorithms, CutAlgorithms, CentralityAlgorithms, ClusteringAlgorithms {} /** * http://js.cytoscape.org/#collection/compound-nodes */ interface NodeSingularCompound { /** * Get whether the node is a compound parent * (i.e. a node containing one or more child nodes) * http://js.cytoscape.org/#node.isParent */ isParent(): boolean; /** * Get whether the node is childless (i.e. a node with no child nodes) * http://js.cytoscape.org/#node.isChildless */ isChildless(): boolean; /** * Get whether the node is a compound child (i.e. contained within a node) * http://js.cytoscape.org/#node.isChild */ isChild(): boolean; /** * Get whether the node is an orphan (i.e. a node with no parent) * http://js.cytoscape.org/#node.isOrphan */ isOrphan(): boolean; } /** * http://js.cytoscape.org/#collection/compound-nodes */ interface NodeCollectionCompound { /** * Get the compound parent node of each node in the collection. * @param selector A selector used to filter the resultant collection. * http://js.cytoscape.org/#nodes.parent */ parent(selector?: Selector): NodeCollection; /** * Get all compound ancestor nodes * (i.e. parents, parents' parents, etc.) of each node in the collection. * @param selector A selector used to filter the resultant collection. * http://js.cytoscape.org/#nodes.ancestors */ ancestors(selector?: Selector): NodeCollection; parents(selector?: Selector): NodeCollection; /** * Get all compound ancestors common to all the nodes in the collection, * starting with the closest and getting progressively farther. * @param selector A selector used to filter the resultant collection. * http://js.cytoscape.org/#nodes.commonAncestors */ commonAncestors(selector?: Selector): NodeCollection; /** * Get all orphan (i.e. has no compound parent) nodes in the calling collection. * @param selector A selector used to filter the resultant collection. * http://js.cytoscape.org/#nodes.orphans */ orphans(selector?: Selector): NodeCollection; /** * Get all nonorphan (i.e. has a compound parent) nodes in the calling collection. * @param selector A selector used to filter the resultant collection. * http://js.cytoscape.org/#nodes.nonorphans */ nonorphans(selector?: Selector): NodeCollection; /** * Get all compound child (i.e. direct descendant) nodes of each node in the collection. * @param selector A selector used to filter the resultant collection. * http://js.cytoscape.org/#nodes.children */ children(selector?: Selector): NodeCollection; /** * Get all compound descendant (i.e. children, children's children, etc.) * nodes of each node in the collection. * @param selector A selector used to filter the resultant collection. * http://js.cytoscape.org/#nodes.descendants */ descendants(selector?: Selector): NodeCollection; /** * Get all sibling (i.e. same compound parent) * nodes of each node in the collection. * @param selector A selector used to filter the resultant collection. * http://js.cytoscape.org/#nodes.siblings */ siblings(selector?: Selector): NodeCollection; } /** * A selector functions similar to a CSS selector on DOM elements, * but selectors in Cytoscape.js instead work on * collections of graph elements. * Note that wherever a selector may be specified * as the argument to a function, * a eles.filter()-style filter function may be * used in place of the selector. * * See http://js.cytoscape.org/#selectors for * details about writing selectors. * Selectors are an island grammar. */ type Selector = string; /** * A space separated list of event names. * http://js.cytoscape.org/#cy.promiseOn */ type EventNames = string; /** * A string indicating the selection behaviour from user input. * http://js.cytoscape.org/#core/initialisation * * 'additive' : a new selection made by the user adds to the set of currently selected elements. * 'single' : a new selection made by the user becomes the entire set of currently * selected elements (i.e. the previous elements are unselected) */ type SelectionType = "additive" | "single"; /** * http://js.cytoscape.org/#ele.group * http://js.cytoscape.org/#notation/elements-json * * 'nodes' * 'edges' */ type ElementGroup = "nodes" | "edges"; /** * 'x' : x coordinate * 'y' : y coordinate */ type PositionDimension = "x" | "y"; /** * Usually temp or nonserialisable data can be stored. * http://js.cytoscape.org/#notation/elements-json * http://js.cytoscape.org/#cy.scratch * http://js.cytoscape.org/#ele.scratch */ type Scratchpad = any; /** * Style in Cytoscape.js follows CSS conventions as closely as possible. * In most cases, a property has the same name and behaviour as its corresponding CSS namesake. * However, the properties in CSS are not sufficient to specify the style of some parts of the graph. * In that case, additional properties are introduced that are unique to Cytoscape.js. * * For simplicity and ease of use, specificity rules are completely ignored in stylesheets. * For a given style property for a given element, the last matching selector wins. * * http://js.cytoscape.org/#style */ namespace Css { type Colour = string; /** * In addition to specifying the value of a property outright, the developer may also use a mapper to dynamically specify the property value. * - data() * - mapData() * - function( ele ){ ... } * https://js.cytoscape.org/#style/mappers */ type MapperFunction = (ele: Element) => Type; type PropertyValue = | Type | MapperFunction; type PropertyValueNode = PropertyValue; type PropertyValueEdge = PropertyValue; type PropertyValueCore = PropertyValue; /** * The shape of the node’s body. * Note that each shape fits within the specified width and height, * and so you may have to adjust width and height * if you desire an equilateral shape * (i.e. width !== height for several equilateral shapes). * 'polygon' is a custom polygon specified via shape-polygon-points. */ type NodeShape = | "rectangle" | "roundrectangle" | "ellipse" | "triangle" | "pentagon" | "hexagon" | "heptagon" | "octagon" | "star" | "barrel" | "diamond" | "vee" | "rhomboid" | "polygon" | "tag" | "round-rectangle" | "round-triangle" | "round-diamond" | "round-pentagon" | "round-hexagon" | "round-heptagon" | "round-octagon" | "round-tag" | "cut-rectangle" | "bottom-round-rectangle" | "concave-hexagon"; /** * A space-separated list of numbers ranging on [-1, 1], * representing alternating x and y values (i.e. x1 y1 x2 y2, x3 y3 ...). * This represents the points in the polygon for the node’s shape. * The bounding box of the node is given by (-1, -1), (1, -1), (1, 1), (-1, 1). */ type ShapePolygonPoints = string; /** * The line style; may be solid, dotted, dashed, or double */ type LineStyle = "solid" | "dotted" | "dashed" | "double"; /** * http://js.cytoscape.org/#style/node-body */ interface Node extends Partial, Partial, Partial, PaddingNode, Partial, Partial>, BackgroundImage, Partial, Partial>, Partial, Partial>, Partial { /** * The CSS content field */ content?: PropertyValueNode; /** * The width of the node’s body. * This property can take on the special value label * so the width is automatically based on the node’s label. */ width?: PropertyValueNode; /** * The height of the node’s body. * This property can take on the special value label * so the height is automatically based on the node’s label. */ height?: PropertyValueNode; /** * The shape of the node’s body. */ shape?: PropertyValueNode; "shape-polygon-points"?: PropertyValueNode; backgroundColor?: PropertyValueNode; /** * The colour of the node’s body. */ "background-color"?: PropertyValueNode; /** * Blackens the node’s body for values from 0 to 1; * whitens the node’s body for values from 0 to -1. */ "background-blacken"?: PropertyValueNode; /** * The opacity level of the node’s background colour. */ "background-opacity"?: PropertyValueNode; /** * The filling style of the node’s body; may be solid (default), linear-gradient, or radial-gradient. */ "background-fill"?: PropertyValueNode<"solid" | "linear-gradient" | "radial-gradient">; /** * The size of the node’s border. */ "background-gradient-direction"?: PropertyValueNode; /** * The colors to use at each stop in the gradient for the node’s background; may be specified as a space-separated list or an array. */ "background-gradient-stop-colors"?: PropertyValueNode; /** * The positions of each stop in the gradient for the node’s background; may be specified as a space-separated list or an array. */ "background-gradient-stop-positions"?: PropertyValueNode<(number | string)[]>; "border-width"?: PropertyValueNode; /** * The style of the node’s border. */ "border-style"?: PropertyValueNode; /** * The colour of the node’s border. */ "border-color"?: PropertyValueNode; /** * The opacity of the node’s border. * A value between [0 1]. */ "border-opacity"?: PropertyValueNode; /** * The position of the node’s border. * One of: center, inside, outside. */ /** * The cap style of the node’s border; may be butt, round or square. */ "border-cap"?: PropertyValueNode<"butt" | "round" | "square">; /** * The join style of the node’s border; may be miter, bevel or round. */ "border-join"?: PropertyValueNode<"miter" | "bevel" | "round">; /** * The dashed line pattern which specifies alternating lengths of lines and gaps. (e.g. [6, 3]). */ "border-dash-pattern"?: PropertyValueNode; /** * The dashed line offset (e.g. 24). It is useful for creating edge animations. */ "border-dash-offset"?: PropertyValueNode; /** * The position of the node’s border; may be center, inside, outside. */ "border-position"?: PropertyValueNode<"center" | "inside" | "outside">; /** * The corner radius for round shapes and the cut-rectangle, in px or em. */ "corner-radius"?: PropertyValueNode; } /** * A padding defines an addition to a node’s dimension. For example, * padding adds to a node’s outer (i.e. total) width and height. * This can be used to add spacing between a compound node parent * and its children. */ interface PaddingNode { /** * The amount of padding around all sides of the node. Either percentage or pixel value can be specified. * For example, both `50%` and `50px` are acceptable values. By default, percentage padding is calculated as a percentage of node width. */ "padding"?: PropertyValueNode; /** * Determines how padding is calculated if and only if the percentage unit is used. Accepts one of the keywords specified below. * - `width`: calculate padding as a percentage of the node width. * - `height`: calculate padding as a percentage of the node height. * - `average`: calculate padding as a percentage of the average of the node width and height. * - `min`: calculate padding as a percentage of the minimum of the node width and height. * - `max`: calculate padding as a percentage of the maximum of the node width and height. */ "padding-relative-to"?: PropertyValueNode<"width" | "height" | "average" | "min" | "max">; "padding-left"?: PropertyValueNode; "padding-right"?: PropertyValueNode; "padding-top"?: PropertyValueNode; "padding-bottom"?: PropertyValueNode; } interface CompoundParentSizing { /** * Whether to include labels of descendants in sizing a compound node; may be include or exclude. */ "compound-sizing-wrt-labels"?: PropertyValueNode<"include" | "exclude">; /** * Specifies the minimum (inner) width of the node’s body for a compound parent node (e.g. 400px). */ "min-width"?: PropertyValueNode; /** * When a compound node is enlarged by its min-width, this value specifies the percent of the extra width put on the left side of the node (e.g. 50%). */ "min-width-bias-left"?: PropertyValueNode; /** * When a compound node is enlarged by its min-width, this value specifies the percent of the extra width put on the right side of the node (e.g. 50%). */ "min-width-bias-right"?: PropertyValueNode; /** * Specifies the minimum (inner) height of the node’s body for a compound parent node (e.g. 400px). */ "min-height"?: PropertyValueNode; /** * When a compound node is enlarged by its min-height, this value specifies the percent of the extra width put on the top side of the node (e.g. 50%). */ "min-height-bias-top"?: PropertyValueNode; } interface Outline { /** * The size of the node’s outline. */ "outline-width"?: PropertyValueNode; /** * The style of the node’s outline; may be solid, dotted, dashed, or double. */ "outline-style"?: PropertyValueNode; /** * The colour of the node’s outline. */ "outline-color"?: PropertyValueNode; /** * The opacity of the node’s outline. */ "outline-opacity"?: PropertyValueNode; /** * The offset of the node’s outline. */ "outline-offset"?: PropertyValueNode; } interface Dictionary { [key: string]: any; } // export interface ElementCss extends CSSStyleDeclaration { } /** * A background image may be applied to a node’s body: * * http://js.cytoscape.org/#style/background-image */ interface BackgroundImage { /** * The URL that points to the image that should be used as the node’s background. * PNG, JPG, and SVG are supported formats. * You may use a data URI to use embedded images, * thereby saving a HTTP request. */ "background-image"?: PropertyValueNode | PropertyValueNode; /** * All images are loaded with a crossorigin attribute which may be `anonymous` or * `use-credentials`. * * The default is set to `anonymous`. */ "background-image-crossorigin"?: | PropertyValueNode<"anonymous" | "use-credentials"> | PropertyValueNode>; /** * The opacity of the background image. [0 1] */ "background-image-opacity"?: PropertyValueNode | PropertyValueNode; /** * Determines whether background image is smoothed (`yes`, default) or not (`no`). * This is only a hint, and the browser may or may not respect the * value set for this property. */ "background-image-smoothing"?: PropertyValueNode<"yes" | "no"> | PropertyValueNode>; /** * Determines whether background image is within (`inside`) * or over top of the node (`over`). * * The default is set to `inside`. */ "background-image-containment"?: | PropertyValueNode<"inside" | "over"> | PropertyValueNode>; /** * Specifies the width of the image. * A percent value (e.g. 50%) may be used to set * the image width relative to the node width. * If used in combination with background- fit, * then this value overrides the width of the image * in calculating the fitting — thereby overriding the aspect ratio. * The auto value is used by default, which uses the width of the image. */ "background-width"?: | PropertyValueNode | PropertyValueNode> ; /** * Specifies the height of the image. * A percent value (e.g. 50%) may be used to set the image * height relative to the node height. * If used in combination with background- fit, * then this value overrides the height of the image in calculating * the fitting — thereby overriding the aspect ratio. * The auto value is used by default, which uses the height of the image. */ "background-height"?: | PropertyValueNode | PropertyValueNode> ; /** * How the background image is fit to the node; * may be none for original size, * contain to fit inside node, * or cover to cover the node. */ "background-fit"?: | PropertyValueNode<"none" | "contain" | "cover"> | PropertyValueNode> ; /** * Whether to repeat the background image; * may be no-repeat, repeat-x, repeat-y, or repeat. */ "background-repeat"?: | PropertyValueNode<"no-repeat" | "repeat-x" | "repeat-y" | "repeat"> | PropertyValueNode> ; /** * The x position of the background image, * measured in percent(e.g. `'50%'`) or pixels (e.g. `'10px'`). */ "background-position-x"?: | PropertyValueNode | PropertyValueNode> ; /** * The y position of the background image, * measured in percent(e.g. `'50%'`) or pixels (e.g. `'10px'`). */ "background-position-y"?: | PropertyValueNode | PropertyValueNode> ; /** * The x offset of the background image, * measured in percent(e.g. `'50%'`) or pixels (e.g. `'10px'`). */ "background-offset-x"?: PropertyValueNode | PropertyValueNode>; /** * The y offset of the background image, * measured in percent(e.g. `'50%'`) or pixels (e.g. `'10px'`). */ "background-offset-y"?: PropertyValueNode | PropertyValueNode>; /** * Changes whether the width is calculated relative to the width of the node or * the width in addition to the padding; may be inner or include-padding. * * If not specified, include-padding is used by default. */ "background-width-relative-to"?: | PropertyValueNode<"inner" | "include-padding"> | PropertyValueNode>; /** * Changes whether the height is calculated relative to the height of the node or * the height in addition to the padding; may be `inner` or `include-padding`. * * If not specified, `include-padding` is used by default. */ "background-height-relative-to"?: | PropertyValueNode<"inner" | "include-padding"> | PropertyValueNode>; /** * How background image clipping is handled; * may be node for clipped to node shape or none for no clipping. */ "background-clip"?: | PropertyValueNode<"node" | "none"> | PropertyValueNode> ; /** * Specifies a padding size (e.g. 20) that expands the bounding box of the node in * all directions. This allows for images to be drawn outside of the normal bounding * box of the node when `background-clip` is none. This is useful for small decorations * just outside of the node. * * `bounds-expansions` accepts 1 value (for all directions), * 2 values, ([topAndBottom, leftAndRight]) or 4 values ([top, right, bottom, left]). */ "bounds-expansion"?: PropertyValueNode< | number | string | [number | string, number | string] | [number | string, number | string, number | string, number | string] >; } /** * The ghost properties allow for creating a ghosting effect, a semitransparent duplicate of the element drawn at an offset. * https://js.cytoscape.org/#style/ghost */ interface Ghost { /** * Whether to use the ghost effect; may be yes or no. */ ghost: PropertyValueNode<"yes" | "no">; /** * The horizontal offset used to position the ghost effect. */ "ghost-offset-x": PropertyValueNode; /** * The vertical offset used to position the ghost effect. */ "ghost-offset-y": PropertyValueNode; /** * The opacity of the ghost effect. */ "ghost-opacity": PropertyValueNode; } /** * These properties allow you to create pie chart backgrounds on nodes. * Note that 16 slices maximum are supported per node, * so in the properties 1 <= i <= 16. * Of course, you must specify a numerical value for each property in place of i. * Each nonzero sized slice is placed in order of i, * starting from the 12 o’clock position and working clockwise. * * You may find it useful to reserve a number to a particular * colour for all nodes in your stylesheet. * Then you can specify values for pie-i-background-size * accordingly for each node via a mapper. * This would allow you to create consistently coloured * pie charts in each node of the graph based on element data. * * http://js.cytoscape.org/#style/pie-chart-background */ interface PieChartBackground { /** * * The diameter of the pie, measured as a percent of node size (e.g. 100%) or an absolute length (e.g. 25px). */ "pie-size": PropertyValueNode; /** * * The diameter of the hole in the centre of the pie, measured * as a percent of node size (e.g. 100%) or an absolute length * (e.g. 25px). This effectively converts the pie chart into a * ring chart (default disabled, 0). */ "pie-hole": PropertyValueNode; /** * * The start angle of the pie, measured as an angle starting at * the 12 o'clock position and going clockwise (e.g. `90deg` * is 3 o'clock). The default is to start at 12 o'clock (`0deg`, `0rad`). */ "pie-start-angle": PropertyValueNode; /** * @deprecated * * The colour of the node’s ith pie chart slice. */ "pie-i-background-color": PropertyValueNode; /** * @deprecated * * The size of the node’s ith (1 <= i <= 16) pie chart slice, measured in percent (e.g. 25% or 25). */ "pie-i-background-size": PropertyValueNode; /** * @deprecated * * The opacity of the node’s ith (1 <= i <= 16) pie chart slice. */ "pie-i-background-opacity": PropertyValueNode; /** * The colour of the node’s 1st pie chart slice. */ "pie-1-background-color": PropertyValueNode; /** * The size of the node’s 1st pie chart slice, measured in percent (e.g. 25% or 25). */ "pie-1-background-size": PropertyValueNode; /** * The opacity of the node’s 1st pie chart slice. */ "pie-1-background-opacity": PropertyValueNode; /** * The colour of the node’s 2nd pie chart slice. */ "pie-2-background-color": PropertyValueNode; /** * The size of the node’s 2nd pie chart slice, measured in percent (e.g. 25% or 25). */ "pie-2-background-size": PropertyValueNode; /** * The opacity of the node’s 2nd pie chart slice. */ "pie-2-background-opacity": PropertyValueNode; /** * The colour of the node’s 3rd pie chart slice. */ "pie-3-background-color": PropertyValueNode; /** * The size of the node’s 3rd pie chart slice, measured in percent (e.g. 25% or 25). */ "pie-3-background-size": PropertyValueNode; /** * The opacity of the node’s 3rd pie chart slice. */ "pie-3-background-opacity": PropertyValueNode; /** * The colour of the node’s 4th pie chart slice. */ "pie-4-background-color": PropertyValueNode; /** * The size of the node’s 4th pie chart slice, measured in percent (e.g. 25% or 25). */ "pie-4-background-size": PropertyValueNode; /** * The opacity of the node’s 4th pie chart slice. */ "pie-4-background-opacity": PropertyValueNode; /** * The colour of the node’s 5th pie chart slice. */ "pie-5-background-color": PropertyValueNode; /** * The size of the node’s 5th pie chart slice, measured in percent (e.g. 25% or 25). */ "pie-5-background-size": PropertyValueNode; /** * The opacity of the node’s 5th pie chart slice. */ "pie-5-background-opacity": PropertyValueNode; /** * The colour of the node’s 6th pie chart slice. */ "pie-6-background-color": PropertyValueNode; /** * The size of the node’s 6th pie chart slice, measured in percent (e.g. 25% or 25). */ "pie-6-background-size": PropertyValueNode; /** * The opacity of the node’s 6th pie chart slice. */ "pie-6-background-opacity": PropertyValueNode; /** * The colour of the node’s 7th pie chart slice. */ "pie-7-background-color": PropertyValueNode; /** * The size of the node’s 7th pie chart slice, measured in percent (e.g. 25% or 25). */ "pie-7-background-size": PropertyValueNode; /** * The opacity of the node’s 7th pie chart slice. */ "pie-7-background-opacity": PropertyValueNode; /** * The colour of the node’s 8th pie chart slice. */ "pie-8-background-color": PropertyValueNode; /** * The size of the node’s 8th pie chart slice, measured in percent (e.g. 25% or 25). */ "pie-8-background-size": PropertyValueNode; /** * The opacity of the node’s 8th pie chart slice. */ "pie-8-background-opacity": PropertyValueNode; /** * The colour of the node’s 9th pie chart slice. */ "pie-9-background-color": PropertyValueNode; /** * The size of the node’s 9th pie chart slice, measured in percent (e.g. 25% or 25). */ "pie-9-background-size": PropertyValueNode; /** * The opacity of the node’s 9th pie chart slice. */ "pie-9-background-opacity": PropertyValueNode; /** * The colour of the node’s 10th pie chart slice. */ "pie-10-background-color": PropertyValueNode; /** * The size of the node’s 10th pie chart slice, measured in percent (e.g. 25% or 25). */ "pie-10-background-size": PropertyValueNode; /** * The opacity of the node’s 10th pie chart slice. */ "pie-10-background-opacity": PropertyValueNode; /** * The colour of the node’s 11th pie chart slice. */ "pie-11-background-color": PropertyValueNode; /** * The size of the node’s 11th pie chart slice, measured in percent (e.g. 25% or 25). */ "pie-11-background-size": PropertyValueNode; /** * The opacity of the node’s 11th pie chart slice. */ "pie-11-background-opacity": PropertyValueNode; /** * The colour of the node’s 12th pie chart slice. */ "pie-12-background-color": PropertyValueNode; /** * The size of the node’s 12th pie chart slice, measured in percent (e.g. 25% or 25). */ "pie-12-background-size": PropertyValueNode; /** * The opacity of the node’s 12th pie chart slice. */ "pie-12-background-opacity": PropertyValueNode; /** * The colour of the node’s 13th pie chart slice. */ "pie-13-background-color": PropertyValueNode; /** * The size of the node’s 13th pie chart slice, measured in percent (e.g. 25% or 25). */ "pie-13-background-size": PropertyValueNode; /** * The opacity of the node’s 13th pie chart slice. */ "pie-13-background-opacity": PropertyValueNode; /** * The colour of the node’s 14th pie chart slice. */ "pie-14-background-color": PropertyValueNode; /** * The size of the node’s 14th pie chart slice, measured in percent (e.g. 25% or 25). */ "pie-14-background-size": PropertyValueNode; /** * The opacity of the node’s 14th pie chart slice. */ "pie-14-background-opacity": PropertyValueNode; /** * The colour of the node’s 15th pie chart slice. */ "pie-15-background-color": PropertyValueNode; /** * The size of the node’s 15th pie chart slice, measured in percent (e.g. 25% or 25). */ "pie-15-background-size": PropertyValueNode; /** * The opacity of the node’s 15th pie chart slice. */ "pie-15-background-opacity": PropertyValueNode; /** * The colour of the node’s 16th pie chart slice. */ "pie-16-background-color": PropertyValueNode; /** * The size of the node’s 16th pie chart slice, measured in percent (e.g. 25% or 25). */ "pie-16-background-size": PropertyValueNode; /** * The opacity of the node’s 16th pie chart slice. */ "pie-16-background-opacity": PropertyValueNode; } /** * These properties allow you to create stripe chart backgrounds on * nodes ([demo](demos/stripe-style)). Note that 16 stripes maximum * are supported per node, so in the properties `1 <= i <= 16`. Of * course, you must specify a numerical value for each property in * place of `i`. Each nonzero sized stripe is placed in order of `i`, * starting from the left and going rightwards for vertical stripes * (`stripe-direction: vertical`) or starting from the top and going * downwards for horizontal stripes (`stripe-direction: horizontal`). * * You may find it useful to reserve a number to a particular colour * for all nodes in your stylesheet. Then you can specify values for * `stripe-i-background-size` accordingly for each node via a mapper. * This would allow you to create consistently coloured pie charts * in each node of the graph based on element data. * * http://js.cytoscape.org/#style/stripe-chart-background */ interface StripeChartBackground { /** * * The size of the stripes, measured as a percent of node size (e.g. 100%) or an absolute length (e.g. 25px). */ "stripe-size": PropertyValueNode; /** * * The direction of the stripes, either `vertical` stripes or `horizontal` stripes. Vertical stripes are * stacked from left to right, and horizontal stripes are stacked from top to bottom. */ "stripe-direction": PropertyValueNode<"vertical" | "horizontal">; /** * The colour of the node’s 1st stripe chart stripe. */ "stripe-1-background-color": PropertyValueNode; /** * The size of the node’s 1st stripe chart stripe, measured in percent (e.g. 25% or 25). */ "stripe-1-background-size": PropertyValueNode; /** * The opacity of the node’s 1st stripe chart stripe. */ "stripe-1-background-opacity": PropertyValueNode; /** * The colour of the node’s 2nd stripe chart stripe. */ "stripe-2-background-color": PropertyValueNode; /** * The size of the node’s 2nd stripe chart stripe, measured in percent (e.g. 25% or 25). */ "stripe-2-background-size": PropertyValueNode; /** * The opacity of the node’s 2nd stripe chart stripe. */ "stripe-2-background-opacity": PropertyValueNode; /** * The colour of the node’s 3rd stripe chart stripe. */ "stripe-3-background-color": PropertyValueNode; /** * The size of the node’s 3rd stripe chart stripe, measured in percent (e.g. 25% or 25). */ "stripe-3-background-size": PropertyValueNode; /** * The opacity of the node’s 3rd stripe chart stripe. */ "stripe-3-background-opacity": PropertyValueNode; /** * The colour of the node’s 4th stripe chart stripe. */ "stripe-4-background-color": PropertyValueNode; /** * The size of the node’s 4th stripe chart stripe, measured in percent (e.g. 25% or 25). */ "stripe-4-background-size": PropertyValueNode; /** * The opacity of the node’s 4th stripe chart stripe. */ "stripe-4-background-opacity": PropertyValueNode; /** * The colour of the node’s 5th stripe chart stripe. */ "stripe-5-background-color": PropertyValueNode; /** * The size of the node’s 5th stripe chart stripe, measured in percent (e.g. 25% or 25). */ "stripe-5-background-size": PropertyValueNode; /** * The opacity of the node’s 5th stripe chart stripe. */ "stripe-5-background-opacity": PropertyValueNode; /** * The colour of the node’s 6th stripe chart stripe. */ "stripe-6-background-color": PropertyValueNode; /** * The size of the node’s 6th stripe chart stripe, measured in percent (e.g. 25% or 25). */ "stripe-6-background-size": PropertyValueNode; /** * The opacity of the node’s 6th stripe chart stripe. */ "stripe-6-background-opacity": PropertyValueNode; /** * The colour of the node’s 7th stripe chart stripe. */ "stripe-7-background-color": PropertyValueNode; /** * The size of the node’s 7th stripe chart stripe, measured in percent (e.g. 25% or 25). */ "stripe-7-background-size": PropertyValueNode; /** * The opacity of the node’s 7th stripe chart stripe. */ "stripe-7-background-opacity": PropertyValueNode; /** * The colour of the node’s 8th stripe chart stripe. */ "stripe-8-background-color": PropertyValueNode; /** * The size of the node’s 8th stripe chart stripe, measured in percent (e.g. 25% or 25). */ "stripe-8-background-size": PropertyValueNode; /** * The opacity of the node’s 8th stripe chart stripe. */ "stripe-8-background-opacity": PropertyValueNode; /** * The colour of the node’s 9th stripe chart stripe. */ "stripe-9-background-color": PropertyValueNode; /** * The size of the node’s 9th stripe chart stripe, measured in percent (e.g. 25% or 25). */ "stripe-9-background-size": PropertyValueNode; /** * The opacity of the node’s 9th stripe chart stripe. */ "stripe-9-background-opacity": PropertyValueNode; /** * The colour of the node’s 10th stripe chart stripe. */ "stripe-10-background-color": PropertyValueNode; /** * The size of the node’s 10th stripe chart stripe, measured in percent (e.g. 25% or 25). */ "stripe-10-background-size": PropertyValueNode; /** * The opacity of the node’s 10th stripe chart stripe. */ "stripe-10-background-opacity": PropertyValueNode; /** * The colour of the node’s 11th stripe chart stripe. */ "stripe-11-background-color": PropertyValueNode; /** * The size of the node’s 11th stripe chart stripe, measured in percent (e.g. 25% or 25). */ "stripe-11-background-size": PropertyValueNode; /** * The opacity of the node’s 11th stripe chart stripe. */ "stripe-11-background-opacity": PropertyValueNode; /** * The colour of the node’s 12th stripe chart stripe. */ "stripe-12-background-color": PropertyValueNode; /** * The size of the node’s 12th stripe chart stripe, measured in percent (e.g. 25% or 25). */ "stripe-12-background-size": PropertyValueNode; /** * The opacity of the node’s 12th stripe chart stripe. */ "stripe-12-background-opacity": PropertyValueNode; /** * The colour of the node’s 13th stripe chart stripe. */ "stripe-13-background-color": PropertyValueNode; /** * The size of the node’s 13th stripe chart stripe, measured in percent (e.g. 25% or 25). */ "stripe-13-background-size": PropertyValueNode; /** * The opacity of the node’s 13th stripe chart stripe. */ "stripe-13-background-opacity": PropertyValueNode; /** * The colour of the node’s 14th stripe chart stripe. */ "stripe-14-background-color": PropertyValueNode; /** * The size of the node’s 14th stripe chart stripe, measured in percent (e.g. 25% or 25). */ "stripe-14-background-size": PropertyValueNode; /** * The opacity of the node’s 14th stripe chart stripe. */ "stripe-14-background-opacity": PropertyValueNode; /** * The colour of the node’s 15th stripe chart stripe. */ "stripe-15-background-color": PropertyValueNode; /** * The size of the node’s 15th stripe chart stripe, measured in percent (e.g. 25% or 25). */ "stripe-15-background-size": PropertyValueNode; /** * The opacity of the node’s 15th stripe chart stripe. */ "stripe-15-background-opacity": PropertyValueNode; /** * The colour of the node’s 16th stripe chart stripe. */ "stripe-16-background-color": PropertyValueNode; /** * The size of the node’s 16th stripe chart stripe, measured in percent (e.g. 25% or 25). */ "stripe-16-background-size": PropertyValueNode; /** * The opacity of the node’s 16th stripe chart stripe. */ "stripe-16-background-opacity": PropertyValueNode; } interface Edge extends EdgeLine, EdgeArrow, Partial, Partial, Partial, Partial, Partial, Partial, Partial, Partial, Partial, Partial>, Partial>, Partial>, Partial>, Partial {} /** * These properties affect the styling of an edge’s line: * * http://js.cytoscape.org/#style/edge-line */ interface EdgeLine { /** * The width of an edge’s line. */ width?: PropertyValueEdge; /** * The curving method used to separate two or more edges between two nodes; * may be * - haystack (default, very fast, bundled straight edges for which loops and compounds are unsupported), * - bezier(bundled curved edges), * - unbundled - bezier(curved edges for use with manual control points), or * - segments (a series of straight lines). * Note that haystack edges work best with ellipse, rectangle, or similar nodes. * Smaller node shapes, like triangle, will not be as aesthetically pleasing. * Also note that edge arrows are unsupported for haystack edges. */ "curve-style"?: PropertyValueEdge< | "haystack" | "straight" | "bezier" | "unbundled-bezier" | "segments" | "taxi" | "round-taxi" | "round-segments" >; /** * The colour of the edge’s line. */ "line-color"?: PropertyValueEdge; /** * The style of the edge’s line. */ "line-style"?: PropertyValueEdge; /** * The cap of the edge's line. */ "line-cap"?: PropertyValueEdge<"butt" | "round" | "square">; /** * The filling style of the edge's line. */ "line-fill"?: PropertyValueEdge<"solid" | "linear-gradient" | "radial-gradient">; /** * The opacity of the edge’s line and arrow. Useful if you wish to have a separate opacity for the edge * label versus the edge line. Note that the opacity value of the edge element affects the effective * opacity of its line and label subcomponents. * * Value between `0` and `1` inclusive. */ "line-opacity"?: PropertyValueEdge; /** * The dashed line pattern which specifies alternating lengths of lines and gaps. */ "line-dash-pattern"?: Array>; /** * The dashed line offset. */ "line-dash-offset"?: PropertyValueEdge; /** * The width of the edge’s outline. */ "line-outline-width"?: PropertyValueEdge; /** * The colour of the edge’s outline. */ "line-outline-color"?: PropertyValueEdge; /** * The distance the edge ends from its target. */ "target-distance-from-node"?: PropertyValueEdge; /** * The distance the edge ends from its source. */ "source-distance-from-node"?: PropertyValueEdge; } /** * These properties specify the gradient colouration of an edge's line: * * https://js.cytoscape.org/#style/gradient */ interface Gradient { /** * The colors of the gradient stops. */ "line-gradient-stop-colors"?: PropertyValueEdge; /** * The positions of the gradient stops. * If not specified (or invalid), the stops will divide equally. */ "line-gradient-stop-positions"?: PropertyValueEdge; } /** * For automatic, bundled bezier edges (curve - style: bezier): * * http://js.cytoscape.org/#style/bezier-edges */ interface BezierEdges { /** * From the line perpendicular from source to target, * this value specifies the distance between successive bezier edges. */ "control-point-step-size": PropertyValueEdge; /** * A single value that overrides "control-point-step-size" with a manual value. * Because it overrides the step size, bezier edges with the same value will overlap. * Thus, it’s best to use this as a one- off value for particular edges if need be. */ "control-point-distance": PropertyValueEdge; /** * A single value that weights control points along the line from source to target. * The value usually ranges on [0, 1], with * 0 towards the source node and * 1 towards the target node — * but larger or smaller values can also be used. */ "control-point-weight": PropertyValueEdge; /** * With value intersection (default), * the line from source to target for "control-point-weight" is * from the outside of the source node’s shape to the outside of * the target node’s shape.With value node- position, * the line is from the source position to the target position. * The "node-position" option makes calculating edge points easier * — but it should be used carefully because you can create invalid * points that intersection would have automatically corrected. */ "edge-distances": PropertyValueEdge<"intersection" | "node-position">; } /** * Loop edges * For loops (i.e. same source and target) * * https://js.cytoscape.org/#style/loop-edges */ interface LoopEdges { /** * Determines the angle that loops extend from the node in cases when the source and * target node of an edge is the same. The angle is specified from the 12 o’clock * position and it progresses clockwise for increasing positive values. * The default is `-45deg` (extending to the upper left). */ "loop-direction": PropertyValueEdge; /** * Determines the angle between the leaving and returning edges in loops. Positive * values result in clockwise looping and negative values result in counter-clockwise * looping. Default is `-90deg`. */ "loop-sweep": PropertyValueEdge; } /** * Unbundled bezier edges * For bezier edges with manual control points (curve - style: unbundled - bezier): * * http://js.cytoscape.org/#style/unbundled-bezier-edges */ interface UnbundledBezierEdges { /** * A series of values that specify for each control point the * distance perpendicular to a line formed * from source to target, e.g. -20 20 - 20. */ "control-point-distances": PropertyValueEdge; /** * A series of values that weights control points along * a line from source to target, e.g. 0.25 0.5 0.75. * A value usually ranges on [0, 1], with * 0 towards the source node and * 1 towards the target node * — but larger or smaller values can also be used. */ "control-point-weights": PropertyValueEdge; /** * With value intersection (default), * the line from source to target for "control-point-weights" * is from the outside of the source node’s shape to the * outside of the target node’s shape. * With value * "node-position", the line is from the source position to the target position. * The "node-position" option makes calculating edge points easier * — but it should be used carefully because you can create * invalid points that intersection would have automatically corrected. */ "edge-distances": PropertyValueEdge<"intersection" | "node-position">; } /** * Haystack edges * Loop edges and compound parent nodes are not supported by haystack edges. * Haystack edges are a more performant replacement for plain, straight line edges. * * For fast, straight line edges (curve - style: haystack): * http://js.cytoscape.org/#style/haystack-edges */ interface HaystackEdges { /** * A value between 0 and 1 inclusive that indicates the relative radius used to position haystack edges on their connected nodes. * The outside of the node is at 1, and the centre of the node is at 0. */ "haystack-radius": PropertyValueEdge; } /** * Segments edges * For edges made of several straight lines (curve - style: segments): * http://js.cytoscape.org/#style/segments-edges */ interface SegmentsEdges { /** * A series of values that specify for each segment point the distance perpendicular to a line formed from source to target, e.g. -20 20 - 20. */ "segment-distances": PropertyValueEdge; /** * A series of values that weights segment points along a line from source to target, * e.g. 0.25 0.5 0.75.A value usually ranges on [0, 1], * with 0 towards the source node and 1 towards the target node — but larger or smaller values can also be used. */ "segment-weights": PropertyValueEdge; /** * A series of values that provide the radii of the different points positioned by segment-distances and segment-weights, e.g. 15 0 5. * If less radii are provided than points have been defined, the last provided radius will be used for all the missing radius. * If a single radius is provided, it will therefore be applied to all the segment’s points. */ "segment-radii"?: PropertyValueEdge; /** * Defines where segment-radii are applied, which is particularly relevant when the corner angle is acute. * Values can be: * - `arc-radius`: Default strategy: The radius property is applied to the corner arc, which will be placed further away from the control point if the arc doesn’t fit in an acute angle. * - `influence-radius`: The radius property is applied to the control point sphere of influence. The arcs for a given control point will all start and end at radius distance from the control-points. */ "radius-type"?: PropertyValueEdge<"arc-radius" | "influence-radius">; /** * With value * * "intersection" (default), the line from source to target * * for "segment-weights" is from the outside of the source node’s shape to the outside of the target node’s shape. * * With value "node-position", the line is from the source position to the target position. * The "node-position" option makes calculating edge points easier * — but it should be used carefully because you can create * invalid points that intersection would have automatically corrected. */ "edge-distances": PropertyValueEdge<"intersection" | "node-position">; } /** * Taxi edges * For hierarchical, bundled edges (curve-style: taxi) * * https://js.cytoscape.org/#style/taxi-edges */ interface TaxiEdges { /** * The main direction of the edge, the direction starting out from the source node; may be one of: * * `auto`: Automatically use `vertical` or `horizontal`, based on whether the vertical or horizontal distance is largest. * * `vertical`: Automatically use `downward` or `upward`, based on the vertical direction from source to target. * * `downward`: Bundle outgoers downwards. * * `upward`: Bundle outgoers upwards. * * `horizontal`: Automatically use `righward` or `leftward`, based on the horizontal direction from source to target. * * `rightward`: Bundle outgoers righwards. * * `leftward`: Bundle outgoers leftwards. */ "taxi-direction": PropertyValueEdge< "auto" | "vertical" | "downward" | "upward" | "horizontal" | "rightward" | "leftward" >; /** * The distance along the primary axis where the first turn is applied. * * This value may be an absolute distance (e.g. `'20px'`) or it may be a relative distance * between the source and target (e.g. `'50%'`). * * A negative value may be specified to indicate a distance in the oppostite, target to * source direction (e.g. `'-20px'`). * * Note that bundling may not work with an explicit direction (upward, downward, leftward, or rightward) * in tandem with a turn distance specified in percent units. */ "taxi-turn": PropertyValueEdge; /** * The minimum distance along the primary axis that is maintained between the nodes and the turns. * * This value only takes on absolute values (e.g. `'5px'`). * * This property makes the taxi edge be re-routed when the turns would be otherwise too close to * the source or target. As such, it also helps to avoid turns overlapping edge endpoint arrows. */ "taxi-turn-min-distance": PropertyValueEdge; /** * The radius of the rounded corners of the edge. */ "taxi-radius"?: PropertyValueEdge; /** * With value `intersection` (default), the `distances` (`taxi-turn` and `taxi-turn-min-distance`) * are considered from the outside of the source’s bounds to the outside of the target’s bounds. * With value `node-position`, the distances are considered from the source position to the target position. * The `node-position` option makes calculating edge points easier — but it should be used carefully because * you can create invalid points that `intersection` would have automatically corrected. */ "edge-distances": PropertyValueEdge<"intersection" | "node-position">; } type ArrowShape = | "tee" | "vee" | "triangle" | "triangle-tee" | "circle-triangle" | "triangle-cross" | "triangle-backcurve" | "square" | "circle" | "diamond" | "chevron" | "none"; type ArrowFill = "filled" | "hollow"; /** * Edge arrow * * -arrow-color : The colour of the edge’s source arrow. * * -arrow-shape : The shape of the edge’s source arrow. * * -arrow-fill : The fill state of the edge’s source arrow. * * For each edge arrow property above, replace with one of * * source : Pointing towards the source node, at the end of the edge. * * mid-source : Pointing towards the source node, at the middle of the edge. * * target : Pointing towards the target node, at the end of the edge. * * mid-target: Pointing towards the target node, at the middle of the edge. * * Only mid arrows are supported on haystack edges. * http://js.cytoscape.org/#style/edge-arrow */ interface EdgeArrow { /** The size of the arrow. */ "arrow-scale"?: PropertyValueEdge; /** The colour of the edge’s source arrow. */ "source-arrow-color"?: PropertyValueEdge; /** The colour of the edge’s "mid-source" arrow. */ "mid-source-arrow-color"?: PropertyValueEdge; /** The colour of the edge’s target arrow. */ "target-arrow-color"?: PropertyValueEdge; /** The colour of the edge’s "mid-target" arrow. */ "mid-target-arrow-color"?: PropertyValueEdge; /** The shape of the edge’s source arrow. */ "source-arrow-shape"?: PropertyValueEdge; /** The shape of the edge’s mid-source arrow. */ "mid-source-arrow-shape"?: PropertyValueEdge; /** The shape of the edge’s target arrow. */ "target-arrow-shape"?: PropertyValueEdge; /** The shape of the edge’s mid-target arrow. */ "mid-target-arrow-shape"?: PropertyValueEdge; /** The fill state of the edge’s source arrow. */ "source-arrow-fill"?: PropertyValueEdge; /** The fill state of the edge’s mid-source arrow. */ "mid-source-arrow-fill"?: PropertyValueEdge; /** The fill state of the edge’s target arrow. */ "target-arrow-fill"?: PropertyValueEdge; /** The fill state of the edge’s mid-target arrow. */ "mid-target-arrow-fill"?: PropertyValueEdge; } /** * https://js.cytoscape.org/#style/edge-endpoints */ interface EdgeEndpoints { /** Specifies the endpoint of the source side of the edge */ "source-endpoint": PropertyValue< SingularType, | "inside-to-node" | "outside-to-node" | "outside-to-node-or-label" | "outside-to-line" | "outside-to-line-or-label" | string >; /** Specifies the endpoint of the target side of the edge */ "target-endpoint": PropertyValue< SingularType, | "inside-to-node" | "outside-to-node" | "outside-to-node-or-label" | "outside-to-line" | "outside-to-line-or-label" | string >; } /** * http://js.cytoscape.org/#style/visibility */ interface Visibility { /** * Whether to display the element; may be element for displayed or none for not displayed. * Note that a "display: none" bezier edge does not take up space in its bundle. */ display: PropertyValue; /** * Whether the element is visible; may be visible or hidden. * Note that a "visibility : hidden" bezier edge still takes up space in its bundle. */ visibility: PropertyValue; /** * The opacity of the element, ranging from 0 to 1. * Note that the opacity of a compound node parent affects the effective opacity of its children. */ opacity: PropertyValue; /** * An integer value that affects the relative draw order of elements. * In general, an element with a higher "z-index" will be drawn on top of an element with a lower "z-index". * Note that edges are under nodes despite "z-index", except when necessary for compound nodes. */ "z-index": PropertyValue; /** * May be bottom, orphan, auto (default), or top. The first drawn is bottom, the second is orphan, * which is the same depth as the root of the compound graph, followed by the default of auto * which draws in depth order from root to leaves of the compound graph. The last drawn is top. * It does not usually make sense to set this value for non-compound graphs. */ "z-compound-depth": PropertyValue; /** * May be auto (default) or manual. The auto setting draws edges under nodes, * whereas manual ignores this convention and draws solely based on the z-index value. */ "z-index-compare": PropertyValue; } /** https://developer.mozilla.org/en-US/docs/Web/CSS/font-style */ type FontStyle = "normal" | "italic" | "oblique"; /** https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight */ type FontWeight = number | "normal" | "bold" | "lighter" | "bolder"; /** http://js.cytoscape.org/#style/labels */ type TextTranformation = "none" | "uppercase" | "lowercase"; /** * Labels * Label text: * * http://js.cytoscape.org/#style/labels */ interface Labels { /** * The text to display for an element’s label. */ label: PropertyValue; /** * The text to display for an edge’s source label. */ "source-label": PropertyValue; /** * The text to display for an edge’s target label. */ "target-label": PropertyValue; /** * Basic font styling: */ /** * The colour of the element’s label. */ color: PropertyValue; /** * The opacity of the label text, including its outline. */ "text-opacity": PropertyValue; /** * A comma-separated list of font names to use on the label text. */ "font-family": PropertyValue; /** * The size of the label text. * https://developer.mozilla.org/en-US/docs/Web/CSS/font-family */ "font-size": PropertyValue; /** * A CSS font style to be applied to the label text. * https://developer.mozilla.org/en-US/docs/Web/CSS/font-style */ "font-style": PropertyValue; /** * A CSS font weight to be applied to the label text. */ "font-weight": PropertyValue; /** * A transformation to apply to the label text. */ "text-transform": PropertyValue; /** * Wrapping text: */ /** * A wrapping style to apply to the label text; may be * * "none" for no wrapping (including manual newlines ) or * * "wrap" for manual and/ or autowrapping. * * "ellipsis" to truncate the string and append */ "text-wrap": PropertyValue; /** * The maximum width for wrapped text, * applied when "text-wrap" is set to wrap. * For only manual newlines (i.e.\n), set a very large * value like 1000px such that only your newline characters would apply. */ "text-max-width": PropertyValue; /** * The characters that may be used for possible wrapping locations when * a line overflows `text-max-width`; may be `whitespace` (default) or `anywhere`. * Note that anywhere is suited to CJK, where the characters are in a grid * and no whitespace exists. Using anywhere with text in the Latin alphabet, * for example, will split words at arbitrary locations. */ "text-overflow-wrap": PropertyValue; /** * The justification of multiline (wrapped) labels; may be * `left`, `center`, `right`, or `auto` (default). The auto value makes it so that a * node’s label is justified along the node — e.g. a label on the right side * of a node is left justified. */ "text-justification": PropertyValue; /** * The line height of multiline text, as a relative, unitless value. It specifies the * vertical spacing between each line. With value `1` (default), the lines are stacked * directly on top of one another with no additional whitespace between them. * With value `2`, for example, there is whitespace between each line equal to the visible * height of a line of text. */ "line-height": PropertyValue; /** * Node label alignment: */ /** * The vertical alignment of a node’s label. */ "text-halign": PropertyValue; /** * The vertical alignment of a node’s label. */ "text-valign": PropertyValue; /** * Edge label alignment: */ /** * For the source label of an edge, how far from the source node the label should be placed. */ "source-text-offset": PropertyValue; /** * For the target label of an edge, how far from the target node the label should be placed. */ "target-text-offset": PropertyValue; /** * Margins: */ /** * A margin that shifts the label along the x- axis. */ "text-margin-x": PropertyValue; /** * A margin that shifts the label along the y- axis. */ "text-margin-y": PropertyValue; /** * (For the source label of an edge.) */ "source-text-margin-x": PropertyValue; /** * (For the source label of an edge.) */ "source-text-margin-y": PropertyValue; /** * (For the target label of an edge.) */ "target-text-margin-x": PropertyValue; /** * (For the target label of an edge.) */ "target-text-margin-y": PropertyValue; /** * Rotating text: */ /** * A rotation angle that is applied to the label. * * Rotations are clockwise. * * For edges, the special value `autorotate` can be used to align the label to the edge. * * For nodes, the label is rotated along its anchor point on the node, so a label margin may help for some usecases. * * The special value `none` can be used to denote 0deg. * * Rotations works best with left-to-right text. */ "text-rotation": PropertyValue; /** * (For the source label of an edge.) */ "source-text-rotation": PropertyValue; /** * (For the target label of an edge.) */ "target-text-rotation": PropertyValue; /** * Outline: */ /** * The colour of the outline around the element’s label text. */ "text-outline-color": PropertyValue; /** * The opacity of the outline on label text. */ "text-outline-opacity": PropertyValue; /** * The size of the outline on label text. */ "text-outline-width": PropertyValue; /** * Background: */ /** * The padding provides visual spacing between the text and the edge of the background. */ "text-background-padding": PropertyValue; /** * A colour to apply on the text background. */ "text-background-color": PropertyValue; /** * The opacity of the label background; the background is disabled for 0 (default value). */ "text-background-opacity": PropertyValue; /** * The shape to use for the label background. */ "text-background-shape": PropertyValue; /** * Border: */ /** * The width of the border around the label; the border is disabled for 0 (default value). */ "text-border-opacity": PropertyValue; /** * The width of the border around the label. */ "text-border-width": PropertyValue; /** * The style of the border around the label. */ "text-border-style": PropertyValue; /** * The colour of the border around the label. */ "text-border-color": PropertyValue; /** * Interactivity: */ /** * If zooming makes the effective font size of the label smaller than this, * then no label is shown.Note that because of performance optimisations, * the label may be shown at font sizes slightly smaller than this value. * * This effect is more pronounced at larger screen pixel ratios.However, * it is guaranteed that the label will be shown at sizes equal to or greater than the value specified. */ "min-zoomed-font-size": PropertyValue; /** * Whether events should occur on an element if the label receives an event; may be `yes` or `no`. * You may want a style applied to the text on active so you know the text is activatable. */ "text-events": PropertyValue; /** * Defines how an element responds to box selection via a selection rectangle. * * - `contain` (default): The element is selected only if it is entirely within the selection box. * - `overlap`: The element is selected if it intersects with any part of the selection box. * - `none`: The element is excluded from box selection. * * This property can be applied to nodes, edges, or both. For example, use `overlap` for more lenient selection or `contain` for stricter control. */ "box-selection": PropertyValue; } /** * http://js.cytoscape.org/#style/events */ interface Events { /** * Whether events should occur on an element (e.g.tap, mouseover, etc.). * * For "no", the element receives no events and events simply pass through to the core/viewport. */ events: PropertyValue; /** * Whether events should occur on an element if the label receives an event. * You may want a style applied to the text on active so you know the text is activatable. */ "text-events": PropertyValue; } /** * These properties allow for the creation of overlays on top of nodes or edges, * and are often used in the :active state. * http://js.cytoscape.org/#style/overlay */ interface Overlay { /** * The colour of the overlay. */ "overlay-color": PropertyValueEdge; /** * The area outside of the element within which the overlay is shown. */ "overlay-padding": PropertyValueEdge; /** * The opacity of the overlay. */ "overlay-opacity": PropertyValueEdge; /** * The shape of the node overlay; may be round-rectangle (default), ellipse. Doesn’t apply to edges. */ "overlay-shape"?: PropertyValueEdge<"round-rectangle" | "ellipse">; } /** * These properties allow for the creation of underlays behind nodes or edges, * and are often used in a highlighted state. */ interface Underlay { /** * The colour of the underlay. */ "underlay-color"?: PropertyValueNode; /** * The area outside of the element within which the underlay is shown. */ "underlay-padding"?: PropertyValueNode; /** * The opacity of the underlay. */ "underlay-opacity"?: PropertyValueNode; /** * The shape of the node underlay; may be round-rectangle (default), ellipse. Doesn’t apply to edges. */ "underlay-shape"?: PropertyValueNode<"round-rectangle" | "ellipse">; } /** * Transition animation */ type TransitionTimingFunction = | "linear" | "spring" | "cubic-bezier" | "ease" | "ease-in" | "ease-out" | "ease-in-out" | "ease-in-sine" | "ease-out-sine" | "ease-in-out-sine" | "ease-in-quad" | "ease-out-quad" | "ease-in-out-quad" | "ease-in-cubic" | "ease-out-cubic" | "ease-in-out-cubic" | "ease-in-quart" | "ease-out-quart" | "ease-in-out-quart" | "ease-in-quint" | "ease-out-quint" | "ease-in-out-quint" | "ease-in-expo" | "ease-out-expo" | "ease-in-out-expo" | "ease-in-circ" | "ease-out-circ" | "ease-in-out-circ"; /** * http://js.cytoscape.org/#style/transition-animation */ interface TransitionAnimation { /** * A comma separated list of style properties to animate in this state. */ "transition-property": string; /** * The length of the transition in seconds(e.g. 0.5s). */ "transition-duration": number; /** * The length of the delay in seconds before the transition occurs (e.g. 250ms). */ "transition-delay": number; /** * An easing function that controls the animation progress curve (a visualisation of easings serves as a reference). */ "transition-timing-function": TransitionTimingFunction; } /** * Core * These properties affect UI global to the graph, and apply only to the core. * You can use the special core selector string to set these properties. * http://js.cytoscape.org/#style/core */ interface Core { /** * Indicator: */ /** * The colour of the indicator shown when the background is grabbed by the user. */ "active-bg-color": PropertyValueCore; /** * The opacity of the active background indicator. */ "active-bg-opacity": PropertyValueCore; /** * The size of the active background indicator. */ "active-bg-size": PropertyValueCore; /** * Selection box: */ /** * The background colour of the selection box used for drag selection. */ "selection-box-color": PropertyValueCore; /** * The colour of the border on the selection box. */ "selection-box-border-color": PropertyValueCore; /** * The size of the border on the selection box. */ "selection-box-border-width": PropertyValueCore; /** * The opacity of the selection box. */ "selection-box-opacity": PropertyValueCore; /** * Texture during viewport gestures: */ /** * The colour of the area outside the viewport texture when initOptions.textureOnViewport === true. */ "outside-texture-bg-color": PropertyValueCore; /** * The opacity of the area outside the viewport texture. */ "outside-texture-bg-opacity": PropertyValueCore; } } /** * Events passed to handler callbacks are similar to * jQuery event objects in that they wrap native event objects, * mimicking their API. * * http://js.cytoscape.org/#events */ interface EventObject extends InputEventObject, LayoutEventObject {} interface EventObjectNode extends EventObject { target: NodeSingular; } interface EventObjectEdge extends EventObject { target: EdgeSingular; } interface EventObjectCore extends EventObject { target: Core; } /** * http://js.cytoscape.org/#events/event-object */ interface AbstractEventObject { /** a reference to the corresponding core Core */ cy: Core; /** indicates the element or core that first caused the event */ target: any; /** the event type string (e.g. "tap", "select") */ type: UserInputDeviceEventName | UserInputDeviceEventNameExt | CollectionEventName | GraphEventName; /** the event namespace string (e.g. "foo" for "foo.tap") */ namespace: string; /** Unix epoch time of event in milliseconds */ timeStamp: number; preventDefault: () => void; stopPropagation: () => void; stopImmediatePropagation: () => void; isDefaultPrevented: () => boolean; isPropagationStopped: () => boolean; isImmediatePropagationStopped: () => boolean; } interface InputEventObject extends AbstractEventObject { /** position : indicates the model position of the event */ position: Position; /** renderedPosition : indicates the rendered position of the event */ renderedPosition: Position; /** originalEvent : the original user input device event object */ originalEvent: MouseEvent; } interface LayoutEventObject extends AbstractEventObject { /** * layout : indicates the corresponding layout that triggered the event * (useful if running multiple layouts simultaneously) */ layout: any; } /** * These are normal browser events that you can bind to via Cytoscape.js. * You can bind these events to the core and to collections. * http://js.cytoscape.org/#events/user-input-device-events */ type UserInputDeviceEventName = // when the mouse button is pressed | "mousedown" // when the mouse button is released | "mouseup" // after mousedown then mouseup | "click" // when the cursor is put on top of the target | "mouseover" // when the cursor is moved off of the target | "mouseout" // when the cursor is moved somewhere on top of the target | "mousemove" // when one or more fingers starts to touch the screen | "touchstart" // when one or more fingers are moved on the screen | "touchmove" // when one or more fingers are removed from the screen | "touchend"; /** * There are also some higher level events that you can use * so you don’t have to bind to different events for * mouse-input devices and for touch devices. * http://js.cytoscape.org/#events/user-input-device-events */ type UserInputDeviceEventNameExt = // normalised tap start event (either mousedown or touchstart) | "tapstart" | "vmousedown" // normalised move event (either touchmove or mousemove) | "tapdrag" | "vmousemove" // normalised over element event (either touchmove or mousemove/mouseover) | "tapdragover" // normalised off of element event (either touchmove or mousemove/mouseout) | "tapdragout" // normalised tap end event (either mouseup or touchend) | "tapend" | "vmouseup" // normalised tap event (either click, or touchstart followed by touchend without touchmove) | "tap" | "vclick" // normalised tap hold event | "taphold" // normalised right-click mousedown or two-finger tapstart | "cxttapstart" // normalised right-click mouseup or two-finger tapend | "cxttapend" // normalised right-click or two-finger tap | "cxttap" // normalised mousemove or two-finger drag after cxttapstart but before cxttapend | "cxtdrag" // when going over a node via cxtdrag | "cxtdragover" // when going off a node via cxtdrag | "cxtdragout" // when starting box selection | "boxstart" // when ending box selection | "boxend" // triggered on elements when selected by box selection | "boxselect" // triggered on elements when inside the box on boxend | "box"; /** * These events are custom to Cytoscape.js. You can bind to these events for collections. * http://js.cytoscape.org/#events/collection-events */ type CollectionEventName = // when an element is added to the graph | "add" // when an element is removed from the graph | "remove" // when an element is moved w.r.t. topology. Nodes: when the compound parent is changed. Edges: when the source or target is changed | "move" // when an element is selected | "select" // when an element is unselected | "unselect" // when an element is selected by a tap gesture | "tapselect" // when an element is unselected by a tap elsewhere | "tapunselect" // triggered on elements when selected by box selection | "boxselect" // triggered on elements when inside the box on boxend | "box" // when an element is locked | "lock" // when an element is unlocked | "unlock" // when an element is grabbed directly (including only the one node directly under the cursor or the user’s finger) | "grabon" // when an element is grabbed (including all elements that would be dragged) | "grab" // when an element is grabbed and then moved | "drag" // when an element is freed (i.e. let go from being grabbed) | "free" // when an element is freed directly (including only the one node directly under the cursor or the user’s finger) | "freeon" // when an element is freed after being dragged (i.e. grab then drag then free) | "dragfree" // when an element is freed after being dragged directly (i.e. grabon, drag, freeon) | "dragfreeon" // when an element changes position | "position" // when an element’s data is changed | "data" // when an element’s scratchpad data is changed | "scratch" // when an element’s style is changed | "style" // when a node’s background image is loaded | "background"; /** * These events are custom to Cytoscape.js, and they occur on the core. * http://js.cytoscape.org/#events/graph-events */ type GraphEventName = // when a layout starts running | "layoutstart" // when a layout has set initial positions for all the nodes (but perhaps not final positions) | "layoutready" // when a layout has finished running completely or otherwise stopped running | "layoutstop" // when a new Core of Cytoscape.js is ready to be interacted with | "ready" // when the Core of Cytoscape.js was explicitly destroyed by calling .destroy(). | "destroy" // when the viewport is (re)rendered | "render" // when the viewport is panned | "pan" // when the viewport is panned via dragging | "dragpan" // when the viewport is zoomed | "zoom" // when the viewport is zoomed via pinch gesture. This event is only supported for browsers which support the gesturechange event or touch events. // Other browsers will fire the scrollzoom event. | "pinchzoom" // when the viewport is zoomed via the scroll wheel | "scrollzoom" // when the viewport is changed (i.e. from a pan, a zoom, or from both when zooming about a point – e.g. pinch-to-zoom) | "viewport" // when the viewport is resized (usually by calling cy.resize(), a window resize, or toggling a class on the Cytoscape.js div) | "resize"; /** * Layouts * http://js.cytoscape.org/#layouts * * The function of a layout is to set the positions on the nodes in the graph. * Layouts are extensions of Cytoscape.js such that it is possible for * anyone to write a layout without modifying the library itself. * Several layouts are included with Cytoscape.js by default, * and their options are described in the sections that follow * with the default values specified. * Note that you must set options.name to the name of the * layout to specify which one you want to run. * Each layout has its own algorithm for setting the position for each node. * This algorithm influences the overall shape of the graph and the lengths of the edges. * A layout’s algorithm can be customised by setting its options. * Therefore, edge lengths can be controlled by setting the layout options appropriately. * For force-directed (physics) layouts, * there is generally an option to set a weight to each edge * to affect the relative edge lengths. * Edge length can also be affected by options like spacing * factors, angles, and overlap avoidance. * Setting edge length depends on the particular layout, * and some layouts will allow for more precise edge lengths than others. */ interface Layouts extends LayoutManipulation, LayoutEvents {} type LayoutOptions = | NullLayoutOptions | RandomLayoutOptions | PresetLayoutOptions | GridLayoutOptions | CircleLayoutOptions | ConcentricLayoutOptions | BreadthFirstLayoutOptions | CoseLayoutOptions | BaseLayoutOptions; type LayoutHandler = (e: LayoutEventObject) => void; interface BaseLayoutOptions { name: string; // on layoutready event ready?: LayoutHandler; // on layoutstop event stop?: LayoutHandler; /** * transform a given node position. Useful for changing flow direction in discrete layouts * * @param node The node. * @param position The node position. */ transform?(node: NodeSingular, position: Position): Position; } /** * http://js.cytoscape.org/#layouts/null */ interface NullLayoutOptions { name: "null"; } interface BoundingBox12 { x1: number; y1: number; x2: number; y2: number; } interface BoundingBoxWH { x1: number; y1: number; w: number; h: number; } interface AnimatedLayoutOptions { // whether to transition the node positions animate?: boolean; // duration of animation in ms if enabled animationDuration?: number; // easing of animation if enabled animationEasing?: Css.TransitionTimingFunction; /** * a function that determines whether the node should be animated. * All nodes animated by default on animate enabled. * Non-animated nodes are positioned immediately when the layout starts */ animateFilter?(node: NodeSingular, index: number): boolean; } /** * http://js.cytoscape.org/#layouts/random */ interface RandomLayoutOptions extends BaseLayoutOptions, AnimatedLayoutOptions { name: "random"; // whether to fit to viewport fit?: boolean; // fit padding padding?: number; // constrain layout bounds boundingBox?: undefined | BoundingBox12 | BoundingBoxWH; } /** * http://js.cytoscape.org/#layouts/preset */ interface NodePositionMap { [nodeid: string]: Position; } type NodePositionFunction = (nodeid: string) => Position; interface PresetLayoutOptions extends BaseLayoutOptions, AnimatedLayoutOptions { name: "preset"; // map of (node id) => (position obj); or function(node){ return somPos; } positions?: NodePositionMap | NodePositionFunction; // the zoom level to set (prob want fit = false if set) zoom?: number; // the pan level to set (prob want fit = false if set) pan?: Position; // whether to fit to viewport fit?: boolean; // padding on fit padding?: number; } // A function that determines the order of the nodes. The return value has the same // semantics as for compare function passed to Array.sort. type SortingFunction = (a: NodeSingular, b: NodeSingular) => number; interface ShapedLayoutOptions extends BaseLayoutOptions, AnimatedLayoutOptions { // whether to fit to viewport fit?: boolean; // padding used on fit padding?: number; // constrain layout bounds boundingBox?: BoundingBox12 | BoundingBoxWH; // prevents node overlap, may overflow boundingBox if not enough space avoidOverlap?: boolean; // Excludes the label when calculating node bounding boxes for the layout algorithm nodeDimensionsIncludeLabels?: boolean; // Applies a multiplicative factor (>0) to expand or compress the overall area that the nodes take up spacingFactor?: number; // a sorting function to order the nodes sort?: SortingFunction; } /** * http://js.cytoscape.org/#layouts/grid */ interface GridLayoutOptions extends ShapedLayoutOptions { name: "grid"; // extra spacing around nodes when avoidOverlap: true avoidOverlapPadding?: number; // uses all available space on false, uses minimal space on true condense?: boolean; // force num of rows in the grid rows?: number; // force num of columns in the grid cols?: number; // returns { row, col } for element position?(node: NodeSingular): { row: number; col: number }; } /** * http://js.cytoscape.org/#layouts/circle */ interface CircleLayoutOptions extends ShapedLayoutOptions { name: "circle"; // the radius of the circle radius?: number; // where nodes start in radians, e.g. 3 / 2 * Math.PI, startAngle?: number; // how many radians should be between the first and last node (defaults to full circle) sweep?: number; // whether the layout should go clockwise (true) or counterclockwise/anticlockwise (false) clockwise?: boolean; } /** * http://js.cytoscape.org/#layouts/concentric */ interface ConcentricLayoutOptions extends ShapedLayoutOptions { name: "concentric"; // where nodes start in radians, e.g. 3 / 2 * Math.PI, startAngle?: number; // how many radians should be between the first and last node (defaults to full circle) sweep?: number; // whether the layout should go clockwise (true) or counterclockwise/anticlockwise (false) clockwise?: boolean; // whether levels have an equal radial distance betwen them, may cause bounding box overflow equidistant?: boolean; minNodeSpacing?: number; // min spacing between outside of nodes (used for radius adjustment) // height of layout area (overrides container height) height?: number; // width of layout area (overrides container width) width?: number; // Applies a multiplicative factor (>0) to expand or compress the overall area that the nodes take up spacingFactor?: number; // returns numeric value for each node, placing higher nodes in levels towards the centre concentric?(node: NodeSingular): number; // the variation of concentric values in each level levelWidth?(node: NodeCollection): number; } /** * http://js.cytoscape.org/#layouts/breadthfirst */ interface BreadthFirstLayoutOptions extends ShapedLayoutOptions { name: "breadthfirst"; // whether the tree is directed downwards (or edges can point in any direction if false) directed?: boolean; // determines the direction in which the tree structure is drawn direction?: 'downward' | 'upward' | 'rightward' | 'leftward'; // put depths in concentric circles if true, put depths top down if false circle?: boolean; // the roots of the trees roots?: string[]; // Deprecated: how many times to try to position the nodes in a maximal way (i.e. no backtracking) maximalAdjustments?: number; // whether to shift nodes down their natural BFS depths in order to avoid upwards edges (DAGS only) maximal?: boolean; // whether to create an even grid into which the DAG is placed (circle:false only) grid?: boolean; // a sorting function to order nodes at equal depth. e.g. function(a, b){ return a.data('weight') - b.data('weight') } depthSort?: (a: NodeSingular, b: NodeSingular) => number; } /** * http://js.cytoscape.org/#layouts/cose */ interface CoseLayoutOptions extends ShapedLayoutOptions { name: "cose"; // Number of iterations between consecutive screen positions update // (0 -> only updated on the end) refresh?: number; // Randomize the initial positions of the nodes (true) or use existing positions (false) randomize?: boolean; // Extra spacing between components in non-compound graphs componentSpacing?: number; // Node repulsion (non overlapping) multiplier nodeRepulsion?: Css.PropertyValueNode; // Node repulsion (overlapping) multiplier nodeOverlap?: number; // Ideal edge (non nested) length idealEdgeLength?: Css.PropertyValueEdge; // Divisor to compute edge forces edgeElasticity?: Css.PropertyValueEdge; // Nesting factor (multiplier) to compute ideal edge length for nested edges nestingFactor?: number; // Gravity force (constant) gravity?: number; // Maximum number of iterations to perform numIter?: number; // Initial temperature (maximum node displacement) initialTemp?: number; // Cooling factor (how the temperature is reduced between consecutive iterations coolingFactor?: number; // Lower temperature threshold (below this point the layout will end) minTemp?: number; // Deprecated: Pass a reference to weaver to use threads for calculations weaver?: boolean; // The layout animates only after this many milliseconds for animate:true // (prevents flashing on fast runs) animationThreshold?: number; } /** * http://js.cytoscape.org/#layouts/layout-manipulation * Layouts have a set of functions available to them, * which allow for more complex behaviour than the primary run-one-layout-at-a-time usecase. * A new, developer accessible layout can be made via cy.makeLayout(). */ interface LayoutManipulation { /** * Start running the layout * http://js.cytoscape.org/#layout.run */ run(): this; start(): this; /** * Stop running the (asynchronous/discrete) layout * http://js.cytoscape.org/#layout.stop */ stop(): this; } interface LayoutEvents { /** * http://js.cytoscape.org/#layouts/layout-events */ /** * @param events A space separated list of event names. * @param data [optional] A plain object which is passed to the * handler in the event object argument. * @param handler The handler function that is called * when one of the specified events occurs. */ on(events: EventNames, handler: EventHandler): this; on(events: EventNames, data: any, handler: EventHandler): this; bind(events: EventNames, handler: EventHandler): this; bind(events: EventNames, data: any, handler: EventHandler): this; listen(events: EventNames, handler: EventHandler): this; listen(events: EventNames, data: any, handler: EventHandler): this; addListener(events: EventNames, handler: EventHandler): this; addListener(events: EventNames, data: any, handler: EventHandler): this; /** * Get a promise that is resolved with the first of any of * the specified events triggered on the layout. * http://js.cytoscape.org/#layout.promiseOn */ promiseOn(events: EventNames): Promise; pon(events: EventNames): Promise; /** * Bind to events that are emitted by the layout, and trigger the handler only once. * @param events A space separated list of event names. * @param data [optional] A plain object which is passed to the handler in the event object argument. * @param handler The handler function that is called when one of the specified events occurs. */ one(events: EventNames, handler: EventHandler): this; one(events: EventNames, data: any, handler: EventHandler): this; /** * Remove event handlers on the layout. * http://js.cytoscape.org/#layout.off * * @param events A space separated list of event names. * @param handler [optional] A reference to the handler function to remove. */ off(events: EventNames, handler?: EventHandler): this; unbind(events: EventNames, handler?: EventHandler): this; unlisten(events: EventNames, handler?: EventHandler): this; removeListener(events: EventNames, handler?: EventHandler): this; /** * Remove all event handlers on the layout. * https://js.cytoscape.org/#layout.removeAllListeners */ removeAllListeners(): this; /** * Trigger one or more events on the layout. * http://js.cytoscape.org/#layout.trigger * @param events A space separated list of event names to trigger. * @param extraParams [optional] An array of additional parameters to pass to the handler. */ trigger(events: EventNames, extraParams?: any[]): this; } /** * An animation represents a visible change in state over * a duration of time for a single element. * Animations can be generated via cy.animation() * (for animations on the viewport) and ele.animation() * (for animations on graph elements). * http://js.cytoscape.org/#animations */ /** * http://js.cytoscape.org/#animations/animation-manipulation */ interface AnimationManipulation { /** * Requests that the animation be played, starting on the next frame. * If the animation is complete, it restarts from the beginning. * http://js.cytoscape.org/#ani.play */ play(): this; /** * Requests that the animation be played, starting on the next frame. * If the animation is complete, it restarts from the beginning. * http://js.cytoscape.org/#ani.play */ run(): this; /** * Get whether the animation is currently playing. * http://js.cytoscape.org/#ani.playing */ playing(): boolean; /** * Get whether the animation is currently playing. * http://js.cytoscape.org/#ani.playing */ running(): boolean; /** * Get or set how far along the animation has progressed. * http://js.cytoscape.org/#ani.progress */ /** * Get the progress of the animation in percent. */ progress(): number; /** * Set the progress of the animation in percent. * @param progress The progress in percent (i.e. between 0 and 1 inclusive) to set to the animation. */ progress(progress: number): AnimationManipulation; /** * Get the progress of the animation in milliseconds. */ time(): number; /** * Set the progress of the animation in milliseconds. * @param time The progress in milliseconds * (i.e. between 0 and the duration inclusive) to set to the animation. */ time(time: number): AnimationManipulation; /** * Rewind the animation to the beginning. */ rewind(): AnimationManipulation; /** * Fastforward the animation to the end. */ fastforward(): AnimationManipulation; /** * Pause the animation, maintaining the current progress. * http://js.cytoscape.org/#ani.pause */ pause(): AnimationManipulation; /** * Stop the animation, maintaining the current progress * and removing the animation from any associated queues. * http://js.cytoscape.org/#ani.stop */ stop(): AnimationManipulation; /** * Get whether the animation has progressed to the end. * http://js.cytoscape.org/#ani.completed */ completed(): AnimationManipulation; complete(): AnimationManipulation; /** * Apply the animation at its current progress. * http://js.cytoscape.org/#ani.apply */ apply(): AnimationManipulation; /** * Get whether the animation is currently applying. * http://js.cytoscape.org/#ani.applying */ applying(): AnimationManipulation; /** * Reverse the animation such that its starting * conditions and ending conditions are reversed. * http://js.cytoscape.org/#ani.reverse */ reverse(): AnimationManipulation; /** * Get a promise that is fulfilled with the specified animation event. * @param animationEvent A string for the event name; completed or complete for * completing the animation or frame for the next frame of the animation. * http://js.cytoscape.org/#ani.promise */ promise(animationEvent?: "completed" | "complete" | "frame"): Promise; } /** * Cytoscape extension type * Definition of an extension would be in following form: * @example * declare module 'cytoscape-ext' { * const ext: cytoscape.Ext; * export = ext; * } */ type Ext = (cy: typeof cytoscape) => void; /** * Register imported extension into cytoscape * @param module Entry point for the extension, got by module = require('cy-ext') * or by import module from 'cy-ext' * http://js.cytoscape.org/#extensions */ function use(module: Ext): void; /** * Surpress Cytoscape internal warnings globally with a flag. * @param condition If true, all Cytoscape warnings are surpressed. * https://js.cytoscape.org/#core/initialisation */ function warnings(condition: boolean): void; } ================================================ FILE: license-update.mjs ================================================ import fs from 'fs'; import path from 'path'; import { fileURLToPath } from 'url'; import { dirname } from 'path'; const __filename = fileURLToPath(import.meta.url); const __dirname = dirname(__filename); const year = (new Date()).getFullYear(); const license = `Copyright (c) 2016-${year}, The Cytoscape Consortium. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.`; fs.writeFileSync(path.join(__dirname, 'LICENSE'), license); ================================================ FILE: package.json ================================================ { "name": "cytoscape", "version": "3.34.0-unstable", "license": "MIT", "description": "Graph theory (a.k.a. network) library for analysis and visualisation", "homepage": "http://js.cytoscape.org", "repository": { "type": "git", "url": "https://github.com/cytoscape/cytoscape.js.git" }, "bugs": { "url": "https://github.com/cytoscape/cytoscape.js/issues" }, "keywords": [ "graph", "graph-theory", "network", "node", "edge", "vertex", "link", "analysis", "visualisation", "visualization", "draw", "render", "biojs", "cytoscape" ], "engines": { "node": ">=0.10" }, "types": "index.d.ts", "main": "dist/cytoscape.cjs.js", "module": "dist/cytoscape.esm.mjs", "exports": { ".": { "import": "./dist/cytoscape.esm.mjs", "require": "./dist/cytoscape.cjs.js", "types": "./index.d.ts" }, "./dist/cytoscape.esm.mjs": { "import": "./dist/cytoscape.esm.mjs" }, "./dist/cytoscape.esm": { "import": "./dist/cytoscape.esm.mjs" }, "./dist/cytoscape.esm.min.mjs": { "import": "./dist/cytoscape.esm.min.mjs" }, "./dist/cytoscape.esm.min": { "import": "./dist/cytoscape.esm.min.mjs" }, "./dist/cytoscape.cjs.js": { "require": "./dist/cytoscape.cjs.js" }, "./dist/cytoscape.umd.js": { "require": "./dist/cytoscape.umd.js" }, "./dist/cytoscape.min.js": { "require": "./dist/cytoscape.min.js" } }, "unpkg": "dist/cytoscape.min.js", "jsdelivr": "dist/cytoscape.min.js", "scripts": { "lint": "eslint src/**/*.mjs", "build": "rollup -c", "build:esm": "cross-env FILE=esm rollup -c", "build:esm.min": "cross-env FILE=esm.min rollup -c", "build:cjs": "cross-env FILE=cjs rollup -c", "build:umd": "cross-env FILE=umd rollup -c", "build:min": "cross-env FILE=min rollup -c", "clean": "rimraf build/*", "copyright": "node license-update.mjs", "dist:copy": "cpy --flat build/cytoscape.umd.js build/cytoscape.min.js build/cytoscape.cjs.js build/cytoscape.esm.mjs build/cytoscape.esm.min.mjs dist", "dist": "cross-env NODE_ENV=production run-s build dist:*", "release": "run-s copyright dist docs", "watch": "run-s watch:fast", "watch:sync": "livereload \"build, debug\" -w 500", "watch:http": "http-server -p 3333 -s -c -1 -o debug", "watch:fast": "run-p watch:sync watch:http watch:build:fast", "watch:umd": "run-p watch:sync watch:http watch:build:umd", "watch:build:fast": "cross-env FILE=umd SOURCEMAPS=true BABEL=false NODE_ENV=development rollup -c -w", "watch:build:umd": "cross-env FILE=umd SOURCEMAPS=true NODE_ENV=development rollup -c -w", "watch:build:cjs": "cross-env FILE=cjs SOURCEMAPS=true NODE_ENV=development rollup -c -w", "test": "run-s test:js test:modules test:playwright lint", "test:js": "mocha --recursive", "test:js:debug": "mocha inspect --recursive", "test:build": "cross-env TEST_BUILD=true mocha", "test:modules": "mocha test/modules", "test:modules:debug": "mocha inspect test/modules", "test:playwright:http": "http-server -p 3333 -s -c -1", "test:playwright:build": "cross-env FILE=umd SOURCEMAPS=true BABEL=false NODE_ENV=development rollup -c", "test:playwright:setup": "run-s test:playwright:build test:playwright:http", "test:playwright": "playwright test", "docs": "run-s docs:build docs:js", "docs:js": "cpy --flat build/cytoscape.min.js documentation/js", "docs:build": "node documentation/docmaker.mjs", "docs:push": "gh-pages -d documentation", "benchmark": "run-s benchmark:all", "benchmark:download": "download https://raw.githubusercontent.com/cytoscape/cytoscape.js/master/dist/cytoscape.cjs.js --out build --filename cytoscape.benchmark.js", "benchmark:all:exec": "node benchmark/all", "benchmark:all": "run-s benchmark:download benchmark:all:exec", "benchmark:single:exec": "node benchmark/single", "benchmark:single": "run-s benchmark:download benchmark:single:exec" }, "devDependencies": { "@babel/core": "^7.26.0", "@babel/preset-env": "^7.26.0", "@eslint/js": "^9.18.0", "@playwright/test": "^1.49.1", "@rollup/plugin-babel": "^6.0.4", "@rollup/plugin-commonjs": "^28.0.2", "@rollup/plugin-node-resolve": "^16.0.0", "@rollup/plugin-replace": "^6.0.2", "@rollup/plugin-terser": "^0.4.4", "@types/node": "^22.10.7", "benchmark": "^2.1.4", "bluebird": "^3.5.0", "chai": "^5.1.2", "cpy-cli": "^5.0.0", "cross-env": "^7.0.0", "download-cli": "^1.0.5", "eslint": "^9.18.0", "gh-pages": "^5.0.0", "gl-matrix": "^3.4.3", "globals": "^15.14.0", "handlebars": "^4.7.6", "heap": "^0.2.7", "highlight.js": "^10.0.0", "http-server": "^14.1.1", "jsonlint": "^1.6.2", "livereload": "^0.9.1", "lodash": "^4.17.21", "marked": "^4.0.10", "mocha": "^11.1.0", "npm-run-all": "^4.1.5", "rimraf": "^3.0.0", "rollup": "^4.31.0", "rollup-plugin-license": "^3.5.3" } } ================================================ FILE: playwright-page/index.html ================================================ cytoscape.js playwright page
================================================ FILE: playwright-tests/renderer.spec.js ================================================ import { test, expect } from '@playwright/test'; const copy = obj => JSON.parse(JSON.stringify(obj)); const delay = async ms => new Promise(resolve => setTimeout(resolve, ms)); const expectUniquePoints = pts => { const toStringPt = pt => `(${pt.x},${pt.y})`; const toStringPts = pts => pts.map(toStringPt).join(' '); const str = toStringPts(pts); const strUnique = Array.from(new Set(pts.map(toStringPt))).join(' '); expect(str).toBe(strUnique); }; const dist = (pt1, pt2) => Math.sqrt((pt1.x - pt2.x) ** 2 + (pt1.y - pt2.y) ** 2); test.describe('Renderer', () => { test.beforeEach(async ({ page }) => { page.on('console', (msg) => console.log(`[browser] ${msg.text()}`)); await page.setViewportSize({ width: 1280, height: 720 }); await page.goto('http://127.0.0.1:3333/playwright-page/index.html'); }); test('starts with no nodes', async ({ page }) => { const numNodes = await page.evaluate(() => { const cy = window.cy; return cy.nodes().length; }); expect(numNodes).toBe(0); }); test('adds a node', async ({ page }) => { const numNodes = await page.evaluate(() => { const cy = window.cy; cy.add({ data: { id: 'foo' } }); return cy.nodes().length; }); expect(numNodes).toBe(1); }); test.describe('node style', () => { test.beforeEach(async ({ page }) => { await page.evaluate(() => { const cy = window.cy; cy.add({ data: { id: 'a' } }); }); }); // beforeEach test('node bounding box extends beyond width and height for bordered triangle', async ({ page }) => { const bb = await page.evaluate(() => { const cy = window.cy; cy.style().fromJson([ { selector: 'node', style: { 'shape': 'triangle', 'width': 100, 'height': 100, 'border-width': 10, 'border-color': 'black', } } ]).update(); return cy.$('#a').boundingBox(); }); expect(bb.w).toBeGreaterThan(105); expect(bb.h).toBeGreaterThan(105); } ); // node bounding box extends beyond width and height for triangle }); test.describe('straight edges', () => { test.beforeEach(async ({ page }) => { await page.evaluate(() => { const cy = window.cy; cy.style().fromJson([ { selector: 'edge', style: { 'curve-style': 'straight' } } ]).update(); cy.add([ { data: { id: 'a' }, position: { x: 0, y: 0 } }, { data: { id: 'b' }, position: { x: 0, y: 0 } }, { data: { id: 'ab1', source: 'a', target: 'b' } }, { data: { id: 'ab2', source: 'a', target: 'b' } } ]); }); }); // beforeEach test('initial bounding box is zero', async ({ page }) => { let bb1 = await page.evaluate(() => cy.$('#ab1').boundingBox()); let bb2 = await page.evaluate(() => cy.$('#ab2').boundingBox()); expect(bb1.w).toEqual(0); expect(bb1.h).toEqual(0); expect(bb2.w).toEqual(0); expect(bb2.h).toEqual(0); }); // initial bounding box is zero test('moved bounding box is nonzero', async ({ page }) => { await delay(500); await page.evaluate(() => { cy.layout({ name: 'grid', rows: 1, cols: 2 }).run(); }); await delay(500); let bb1 = await page.evaluate(() => cy.$('#ab1').boundingBox()); let bb2 = await page.evaluate(() => cy.$('#ab2').boundingBox()); expect(bb1.w).not.toEqual(0); expect(bb1.h).not.toEqual(0); expect(bb2.w).not.toEqual(0); expect(bb2.h).not.toEqual(0); }); // initial bounding box is nonzero test('manual endpoints correct', async ({ page }) => { // Set the endpoints manually const { ab1Source, ab1Target, ab2Source, ab2Target, ab1Midpoint, ab2Midpoint } = await page.evaluate(() => { const cy = window.cy; cy.$('#1').position({ x: 0, y: 0 }); cy.$('#b').position({ x: 100, y: 0 }); // Set the endpoints for the fist edge via style cy.$('#ab1').style('source-endpoint', '10px 10px'); cy.$('#ab1').style('target-endpoint', '20px 10px'); // Set the endpoints for the second edge via style cy.$('#ab2').style('source-endpoint', '30px 20px'); cy.$('#ab2').style('target-endpoint', '40px 20px'); // Return the endpoints for verification return { ab1Source: cy.$('#ab1').sourceEndpoint(), ab1Target: cy.$('#ab1').targetEndpoint(), ab2Source: cy.$('#ab2').sourceEndpoint(), ab2Target: cy.$('#ab2').targetEndpoint(), ab1Midpoint: cy.$('#ab1').midpoint(), ab2Midpoint: cy.$('#ab2').midpoint() }; }); // Verify the endpoints expect(ab1Source.x).toBe(10); expect(ab1Source.y).toBe(10); expect(ab1Target.x).toBe(20 + 100); expect(ab1Target.y).toBe(10); expect(ab2Source.x).toBe(30); expect(ab2Source.y).toBe(20); expect(ab2Target.x).toBe(40 + 100); expect(ab2Target.y).toBe(20); // Verify the midpoint y values only expect(ab1Midpoint.y).toEqual(10); expect(ab2Midpoint.y).toEqual(20); }); // manual endpoints correct }); test.describe('bundled beziers', () => { const stepSize = 40; let ctrlpts1; let pt_ab1_1, pt_ab2_1; test.beforeEach(async ({ page }) => { ctrlpts1 = await page.evaluate(() => { const cy = window.cy; cy.style().fromJson([ { selector: 'edge', style: { 'curve-style': 'bezier', 'control-point-step-size': 40 } } ]).update(); cy.add([ { data: { id: 'a' } }, { data: { id: 'b' } }, { data: { id: 'ab1', source: 'a', target: 'b' } }, { data: { id: 'ab2', source: 'a', target: 'b' } } ]); cy.layout({ name: 'grid', rows: 1, cols: 2 }).run(); return cy.edges().map(edge => edge.controlPoints()[0]); }); pt_ab1_1 = await page.evaluate(() => { return window.cy.$('#ab1').controlPoints()[0]; }); pt_ab2_1 = await page.evaluate(() => { return window.cy.$('#ab2').controlPoints()[0]; }); }); // beforeEach test('move when adding to the bundle', async ({ page }) => { expect(ctrlpts1.length).toBe(2); expectUniquePoints(ctrlpts1); // distance between the two control points let d_1_01 = dist(ctrlpts1[0], ctrlpts1[1]); expect(d_1_01).toBe(stepSize); let ctrlpts2 = await page.evaluate(() => { const cy = window.cy; cy.add([ { data: { id: 'ab3', source: 'a', target: 'b' } }, { data: { id: 'ab4', source: 'a', target: 'b' } } ]); return cy.edges().map(edge => edge.controlPoints()[0]); }); // console.log(ctrlpts2); expect(ctrlpts2.length).toBe(4); expectUniquePoints(ctrlpts2); let d_2_01 = dist(ctrlpts2[0], ctrlpts2[1]); let d_2_12 = dist(ctrlpts2[1], ctrlpts2[2]); let d_2_23 = dist(ctrlpts2[2], ctrlpts2[3]); expect(d_2_01).toBeCloseTo(stepSize); expect(d_2_12).toBeCloseTo(stepSize); expect(d_2_23).toBeCloseTo(stepSize); let pt_ab1_2 = await page.evaluate(() => { return window.cy.$('#ab1').controlPoints()[0]; }); let pt_ab2_2 = await page.evaluate(() => { return window.cy.$('#ab2').controlPoints()[0]; }); // ctrl pts for ab1 and ab2 should have changed expect(pt_ab1_1).not.toEqual(pt_ab1_2); expect(pt_ab2_1).not.toEqual(pt_ab2_2); }); // move when adding to the bundle test('move when removing from the bundle', async ({ page }) => { await page.evaluate(() => { const cy = window.cy; cy.add([ { data: { id: 'ab3', source: 'a', target: 'b' } }, { data: { id: 'ab4', source: 'a', target: 'b' } }, { data: { id: 'ab5', source: 'a', target: 'b' } } ]); }); let pt_ab1_2 = await page.evaluate(() => cy.$('#ab1').controlPoints()[0]); let pt_ab2_2 = await page.evaluate(() => cy.$('#ab2').controlPoints()[0]); let ctrlpts3 = await page.evaluate(() => { const cy = window.cy; cy.$('#ab3').remove(); // only ab1,2,4,5 left return cy.edges().map(edge => edge.controlPoints()[0]); }); let pt_ab1_3 = await page.evaluate(() => cy.$('#ab1').controlPoints()[0]); let pt_ab2_3 = await page.evaluate(() => cy.$('#ab2').controlPoints()[0]); expectUniquePoints(ctrlpts3); expect(pt_ab1_2).not.toEqual(pt_ab1_3); expect(pt_ab2_2).not.toEqual(pt_ab2_3); let d_3_01 = dist(ctrlpts3[0], ctrlpts3[1]); let d_3_12 = dist(ctrlpts3[1], ctrlpts3[2]); let d_3_23 = dist(ctrlpts3[2], ctrlpts3[3]); expect(d_3_01).toBeCloseTo(stepSize); expect(d_3_12).toBeCloseTo(stepSize); expect(d_3_23).toBeCloseTo(stepSize); }); // move when removing from the bundle test('do not move when setting one edge to visibility:hidden', async ({ page }) => { await page.evaluate(() => { window.cy.$('#ab1').style('visibility', 'hidden'); }); let pt_ab1_2 = await page.evaluate(() => cy.$('#ab1').controlPoints()[0]); let pt_ab2_2 = await page.evaluate(() => cy.$('#ab2').controlPoints()[0]); expect(pt_ab1_1).toEqual(pt_ab1_2); expect(pt_ab2_1).toEqual(pt_ab2_2); }); // do not move when setting one edge to visibility:hidden test('move when setting one edge to display:none', async ({ page }) => { await page.evaluate(() => { window.cy.$('#ab1').style('display', 'none'); }); let pt_ab1_2 = await page.evaluate(() => cy.$('#ab1').controlPoints()); let pt_ab2_2 = await page.evaluate(() => cy.$('#ab2').controlPoints()); expect(pt_ab1_2).toBeUndefined(); // because display: none expect(pt_ab2_2).toBeUndefined(); // because only one edge left => straight }); // move when setting one edge to display:none test('move when setting one edge to display:none (bigger bundle)', async ({ page }) => { await page.evaluate(() => { window.cy.add([ { data: { id: 'ab3', source: 'a', target: 'b' } }, { data: { id: 'ab4', source: 'a', target: 'b' } }, { data: { id: 'ab5', source: 'a', target: 'b' } } ]); cy.$('#ab1').style('display', 'none'); }); let pt_ab1_2 = await page.evaluate(() => cy.$('#ab1').controlPoints()); let pt_ab2_2 = await page.evaluate(() => cy.$('#ab2').controlPoints()[0]); expect(pt_ab1_2).toBeUndefined(); // because display: none expect(pt_ab2_2).toBeDefined(); }); // move when setting one edge to display:none test('move when setting one edge to curve-style:straight', async ({ page }) => { await page.evaluate(() => { window.cy.add([ { data: { id: 'ab3', source: 'a', target: 'b' } }, { data: { id: 'ab4', source: 'a', target: 'b' } }, { data: { id: 'ab5', source: 'a', target: 'b' } } ]); cy.$('#ab1').style('curve-style', 'straight'); }); let pt_ab1_2 = await page.evaluate(() => window.cy.$('#ab1').controlPoints()); let pt_ab2_2 = await page.evaluate(() => window.cy.$('#ab2').controlPoints()[0]); expect(pt_ab1_2).toBeUndefined(); // because curve-style:straight expect(pt_ab2_2).toBeDefined(); }); // move when setting one edge to curve-style:straight test('diagonal bottom left to top right', async ({page}) => { let controlPoints = await page.evaluate(() => { const cy = window.cy; cy.style().fromJson([{ selector: 'edge', style: { 'curve-style': 'bezier', 'control-point-step-size': Math.sqrt(200) } }]).update(); cy.add([{ data: {id: 'a'} }, { data: {id: 'b'} }, { data: {id: 'ab1', source: 'a', target: 'b'} }, { data: {id: 'ab2', source: 'a', target: 'b'} }]); var presetOptions = { name: 'preset', positions: { a: {x: 0, y: 100}, b: {x: 100, y: 0} } }; cy.layout(presetOptions).run(); let pt_ab1_1 = cy.$('#ab1').controlPoints()[0]; let pt_ab2_1 = cy.$('#ab2').controlPoints()[0]; return [pt_ab1_1, pt_ab2_1] }); // Step size 14.14, sqrt(10*10+10*10). // Gives a 5 pixel translation away from the mid-point, // if the vector between the nodes are at a 45 deg angle. // Mid-point is at (50,50) expect(controlPoints[0].x).toBeCloseTo(45, 5); expect(controlPoints[0].y).toBeCloseTo(45, 5); expect(controlPoints[1].x).toBeCloseTo(55, 5); expect(controlPoints[1].y).toBeCloseTo(55, 5); }); // test('do not move when straight edge added', async ({ page }) => { // await page.evaluate(() => { // window.cy.add([ // { // data: { id: 'ab3', source: 'a', target: 'b' }, // style: { // 'curve-style': 'straight' // } // } // ]); // }); // // TODO... // }); // move when setting one edge to curve-style:straight }); // bundled beziers test.describe('rounded-edges', () => { let singleBentEdge; let midCollinearEdge; test.beforeEach(async ({ page }) => { await page.evaluate(() => { const cy = window.cy; cy.style().fromJson([ { selector: 'edge', style: { 'curve-style': 'round-segments', 'segment-radii': 50, 'radius-type': 'influence-radius' } }, { selector: '#ab1', style: { 'segment-weights': [0.5], 'segment-distances': [50] } }, { selector: '#ab2', style: { 'segment-weights': [0.25 , 0.5, 0.75], 'segment-distances': [50, 50, 50] } } ]).update(); cy.add([ { data: { id: 'a' } }, { data: { id: 'b' } }, { data: { id: 'ab1', source: 'a', target: 'b' } }, { data: { id: 'ab2', source: 'a', target: 'b' } }, ]); cy.layout({ name: 'grid', rows: 1, cols: 2 }).run(); singleBentEdge = cy.$('#ab1'); midCollinearEdge = cy.$('#ab2'); }); }) // Before Each test('collinear mid point correctly defined', async ({page}) => { const midpoint = await page.evaluate(() => midCollinearEdge.midpoint()); const points = await page.evaluate(() => midCollinearEdge.segmentPoints()); expect(midpoint.x).not.toBeNaN(); expect(midpoint.y).not.toBeNaN(); expect(midpoint).toMatchObject(points[1]) }); test('mid point correctly defined', async ({page}) => { const {midpoint, points, a,b} = await page.evaluate(() => ({ midpoint: singleBentEdge.midpoint(), points: singleBentEdge.segmentPoints(), a: singleBentEdge.source().position(), b: singleBentEdge.target().position(), })); expect(midpoint.x).not.toBeNaN(); expect(midpoint.y).not.toBeNaN(); const controlPoint = points[0]; expect(midpoint).not.toMatchObject(controlPoint); // The mid point is supposed to be on the curve and not on the control point const isInsideTriangle = (point, {a,b,c}) => { const dX = point.x - a.x, dY = point.y - a.y; const dX21 = b.x - a.x, dY21 = b.y - a.y; const dX31 = c.x - a.x, dY31 = c.y - a.y; const denom = dY21 * dX31 - dX21 * dY31; const alpha = (dY21 * dX - dX21 * dY) / denom; const beta = (dX31 * dY - dY31 * dX) / denom; const gamma = 1 - alpha - beta; return alpha >= 0 && beta >= 0 && gamma >= 0; }; // The actual midpoint should be within a triangle between the source, the target and the defined control point expect(isInsideTriangle(midpoint, {a,b,c: controlPoint})).toBeTruthy() }) }); // Rounded edges test.describe('with layout', () => { test('single node cose layout with bounding box', async ({ page }) => { const pos = await page.evaluate(async () => { const cy = window.cy; // remove all eles cy.elements().remove(); // add one node let node = cy.add({ data: { id: 'a' } }); // run layout let layout = cy.layout({ name: 'cose', boundingBox: { x1: 0, y1: 0, x2: 100, y2: 100 }, }); let layoutstop = layout.promiseOn('layoutstop'); layout.run(); await layoutstop; return node.position(); }); expect(pos.x).not.toBeNaN(); expect(pos.y).not.toBeNaN(); }); // single node cose layout }); // with layout }); // renderer ================================================ FILE: playwright.config.js ================================================ // @ts-check import { defineConfig, devices } from '@playwright/test'; /** * Read environment variables from file. * https://github.com/motdotla/dotenv */ // import dotenv from 'dotenv'; // import path from 'path'; // dotenv.config({ path: path.resolve(__dirname, '.env') }); /** * @see https://playwright.dev/docs/test-configuration */ export default defineConfig({ testDir: './playwright-tests', /* Run tests in files in parallel */ fullyParallel: false, /* Fail the build on CI if you accidentally left test.only in the source code. */ forbidOnly: !!process.env.CI, /* Retry on CI only */ retries: process.env.CI ? 2 : 0, /* Opt out of parallel tests on CI. */ workers: process.env.CI ? 1 : undefined, /* Reporter to use. See https://playwright.dev/docs/test-reporters */ reporter: 'list', /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ use: { /* Base URL to use in actions like `await page.goto('/')`. */ // baseURL: 'http://127.0.0.1:3000/playwright-page', /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */ trace: 'on-first-retry', }, /* Configure projects for major browsers */ projects: [ { name: 'chromium', use: { ...devices['Desktop Chrome'] }, }, // { // name: 'firefox', // use: { ...devices['Desktop Firefox'] }, // }, // { // name: 'webkit', // use: { ...devices['Desktop Safari'] }, // }, /* Test against mobile viewports. */ // { // name: 'Mobile Chrome', // use: { ...devices['Pixel 5'] }, // }, // { // name: 'Mobile Safari', // use: { ...devices['iPhone 12'] }, // }, /* Test against branded browsers. */ // { // name: 'Microsoft Edge', // use: { ...devices['Desktop Edge'], channel: 'msedge' }, // }, // { // name: 'Google Chrome', // use: { ...devices['Desktop Chrome'], channel: 'chrome' }, // }, ], /* Run your local dev server before starting the tests */ webServer: { command: 'npm run test:playwright:setup', url: 'http://127.0.0.1:3333', reuseExistingServer: !process.env.CI, }, }); ================================================ FILE: rollup.config.mjs ================================================ import nodeResolve from '@rollup/plugin-node-resolve'; import commonjs from '@rollup/plugin-commonjs'; import babel from '@rollup/plugin-babel'; import replace from '@rollup/plugin-replace'; import terser from '@rollup/plugin-terser'; import license from 'rollup-plugin-license'; import path from 'path'; import { fileURLToPath } from 'url'; import { dirname } from 'path'; const __filename = fileURLToPath(import.meta.url); const __dirname = dirname(__filename); const VERSION = process.env.VERSION || 'snapshot'; // default snapshot const FILE = process.env.FILE; const SOURCEMAPS = process.env.SOURCEMAPS === 'true'; // default false const BABEL = process.env.BABEL !== 'false'; // default true const NODE_ENV = process.env.NODE_ENV === 'development' ? 'development' : 'production'; // default prod const input = './src/index.mjs'; const name = 'cytoscape'; const envVariables = { 'process.env.VERSION': JSON.stringify(VERSION), 'process.env.NODE_ENV': JSON.stringify(NODE_ENV) }; const replaceOptions = { values: envVariables, preventAssignment: true }; const getBabelOptions = () => ({ exclude: '**/node_modules/**', babelHelpers: 'bundled' }); // Ignore all node_modules dependencies const isExternal = id => !id.startsWith('\0') && !id.startsWith('.') && !id.startsWith('/'); const licenseHeaderOptions = { sourcemap: true, banner: { content: { file: path.join(__dirname, 'LICENSE') } } }; const configs = [ { input, output: { file: 'build/cytoscape.umd.js', format: 'umd', name, sourcemap: SOURCEMAPS ? 'inline' : false }, plugins: [ nodeResolve(), commonjs({ include: '**/node_modules/**' }), BABEL ? babel(getBabelOptions()) : {}, replace(replaceOptions), license(licenseHeaderOptions) ] }, { input, output: { file: 'build/cytoscape.min.js', format: 'umd', name }, plugins: [ nodeResolve(), commonjs({ include: '**/node_modules/**' }), BABEL ? babel(getBabelOptions()) : {}, replace(replaceOptions), terser(), license(licenseHeaderOptions) ] }, { input, output: { file: 'build/cytoscape.esm.min.mjs', format: 'es' }, plugins: [ nodeResolve(), commonjs({ include: '**/node_modules/**' }), BABEL ? babel(getBabelOptions()) : {}, replace(replaceOptions), license(licenseHeaderOptions), terser() ] }, { input, output: { file: 'build/cytoscape.cjs.js', format: 'cjs' }, plugins: [ nodeResolve(), commonjs({ include: '**/node_modules/**' }), BABEL ? babel(getBabelOptions()) : {}, replace(replaceOptions), license(licenseHeaderOptions) ] }, { input, output: { file: 'build/cytoscape.esm.mjs', format: 'es' }, plugins: [ nodeResolve(), commonjs({ include: '**/node_modules/**' }), BABEL ? babel(getBabelOptions()) : {}, replace(replaceOptions), license(licenseHeaderOptions) ] } ]; export default FILE ? configs.filter(config => config.output.file.endsWith(FILE + '.js') || config.output.file.endsWith(FILE + '.mjs')) : configs; ================================================ FILE: snippets/animated-bfs.js ================================================ yourDiv.style.left = 0; yourDiv.style.top = 0; yourDiv.style.width = "100%"; yourDiv.style.height = "100%"; yourDiv.style.position = "absolute"; var cytoscape = require("cytoscape"); var cy = cytoscape({ container: yourDiv, style: cytoscape.stylesheet() .selector('node') .style({ 'content': 'data(id)' }) .selector('edge') .style({ 'target-arrow-shape': 'triangle', 'width': 4, 'line-color': '#ddd', 'target-arrow-color': '#ddd' }) .selector('.highlighted') .style({ 'background-color': '#61bffc', 'line-color': '#61bffc', 'target-arrow-color': '#61bffc', 'transition-property': 'background-color, line-color, target-arrow-color', 'transition-duration': '0.5s' }), elements: { nodes: [ { data: { id: 'a' } }, { data: { id: 'b' } }, { data: { id: 'c' } }, { data: { id: 'd' } }, { data: { id: 'e' } } ], edges: [ { data: { id: 'a"e', weight: 1, source: 'a', target: 'e' } }, { data: { id: 'ab', weight: 3, source: 'a', target: 'b' } }, { data: { id: 'be', weight: 4, source: 'b', target: 'e' } }, { data: { id: 'bc', weight: 5, source: 'b', target: 'c' } }, { data: { id: 'ce', weight: 6, source: 'c', target: 'e' } }, { data: { id: 'cd', weight: 2, source: 'c', target: 'd' } }, { data: { id: 'de', weight: 7, source: 'd', target: 'e' } } ] }, layout: { name: 'breadthfirst', directed: true, roots: '#a', padding: 10 } }); var bfs = cy.elements().bfs({ root: '#a', directed: true }); var i = 0; var highlightNextEle = function(){ bfs.path[i].addClass('highlighted'); if( i < bfs.path.length ){ i++; setTimeout(highlightNextEle, 1000); } }; // kick off first highlight highlightNextEle(); ================================================ FILE: snippets/data/performance-tuning.json ================================================ [ { "data": { "id": "n100", "weight": 85 }, "position": { "x": 90.33043314702809, "y": 67.57576698437333 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n101", "weight": 4 }, "position": { "x": 98.42765405774117, "y": 220.6825779285282 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n102", "weight": 82 }, "position": { "x": 321.06718998402357, "y": 180.7057177182287 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n103", "weight": 30 }, "position": { "x": 108.49693324416876, "y": 87.04247628338635 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n104", "weight": 83 }, "position": { "x": 214.79833577759564, "y": 430.49512985162437 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n105", "weight": 68 }, "position": { "x": 0.1534801907837391, "y": 389.8338600061834 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n106", "weight": 32 }, "position": { "x": 59.115116531029344, "y": 105.56708830408752 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n107", "weight": 87 }, "position": { "x": 204.20711492188275, "y": 77.28080344386399 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n108", "weight": 65 }, "position": { "x": 169.52901701442897, "y": 97.01243871822953 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n109", "weight": 50 }, "position": { "x": 209.12356185726821, "y": 452.3987162858248 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n110", "weight": 90 }, "position": { "x": 572.3829288035631, "y": 23.45629264600575 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n111", "weight": 61 }, "position": { "x": 542.3307380173355, "y": 348.3376687858254 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n112", "weight": 66 }, "position": { "x": 340.6042782124132, "y": 161.210028687492 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n113", "weight": 69 }, "position": { "x": 139.10956643521786, "y": 384.9822324234992 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n114", "weight": 61 }, "position": { "x": 301.4122570864856, "y": 364.976091356948 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n115", "weight": 45 }, "position": { "x": 466.10930277965963, "y": 196.4656564872712 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n116", "weight": 50 }, "position": { "x": 391.45658053457737, "y": 486.1291643232107 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n117", "weight": 17 }, "position": { "x": 395.36836110055447, "y": 466.1287560593337 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n118", "weight": 94 }, "position": { "x": 532.2884104214609, "y": 48.947337130084634 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n119", "weight": 84 }, "position": { "x": 252.31536640785635, "y": 204.40462594851851 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n120", "weight": 14 }, "position": { "x": 223.92950719222426, "y": 474.75368455052376 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n121", "weight": 51 }, "position": { "x": 246.21222275309265, "y": 164.76845028810203 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n122", "weight": 11 }, "position": { "x": 292.25443764589727, "y": 219.666096707806 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n123", "weight": 96 }, "position": { "x": 105.15959691256285, "y": 502.4871682282537 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n124", "weight": 2 }, "position": { "x": 113.49955326877534, "y": 350.4616250284016 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n125", "weight": 15 }, "position": { "x": 74.92754459381104, "y": 561.9064669590443 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n126", "weight": 85 }, "position": { "x": 335.4505095630884, "y": 205.56742558255792 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n127", "weight": 59 }, "position": { "x": 470.66900110803545, "y": 131.60508018918335 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n128", "weight": 3 }, "position": { "x": 584.8771033342928, "y": 235.279501369223 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n129", "weight": 49 }, "position": { "x": 503.79035300575197, "y": 585.5802611913532 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n130", "weight": 81 }, "position": { "x": 320.3528548590839, "y": 330.3800898604095 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n131", "weight": 79 }, "position": { "x": 106.34122621268034, "y": 454.9960134085268 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n132", "weight": 76 }, "position": { "x": 356.0224901419133, "y": 500.76905423775315 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n133", "weight": 99 }, "position": { "x": 47.07307582721114, "y": 426.30294039845467 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n134", "weight": 90 }, "position": { "x": 278.48645970225334, "y": 308.42104805633426 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n135", "weight": 87 }, "position": { "x": 478.2062569633126, "y": 461.78252189420164 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n136", "weight": 54 }, "position": { "x": 561.2581222783774, "y": 100.75575644150376 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n137", "weight": 72 }, "position": { "x": 333.68167472071946, "y": 128.47767337225378 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n138", "weight": 89 }, "position": { "x": 218.66086623631418, "y": 238.96430251188576 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n139", "weight": 68 }, "position": { "x": 160.00981614924967, "y": 116.9446833897382 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n140", "weight": 49 }, "position": { "x": 513.204005593434, "y": 364.8408940527588 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n141", "weight": 37 }, "position": { "x": 580.0663413014263, "y": 494.71818250603974 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n142", "weight": 80 }, "position": { "x": 415.5682407785207, "y": 189.13678731769323 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n143", "weight": 14 }, "position": { "x": 590.9442293923348, "y": 1.4251688495278358 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n144", "weight": 49 }, "position": { "x": 584.0626515448093, "y": 422.9631965048611 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n145", "weight": 38 }, "position": { "x": 140.35236448980868, "y": 284.66315497644246 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n146", "weight": 26 }, "position": { "x": 27.575604245066643, "y": 366.0795462783426 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n147", "weight": 78 }, "position": { "x": 106.3865183852613, "y": 91.15662574768066 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n148", "weight": 2 }, "position": { "x": 169.66973142698407, "y": 101.47915994748473 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n149", "weight": 56 }, "position": { "x": 129.32269633747637, "y": 326.24467886053026 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n150", "weight": 67 }, "position": { "x": 219.46371300145984, "y": 523.9080654457211 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n151", "weight": 52 }, "position": { "x": 424.42846703343093, "y": 516.3750871550292 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n152", "weight": 14 }, "position": { "x": 423.8913963083178, "y": 350.2634074073285 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n153", "weight": 44 }, "position": { "x": 559.9552754312754, "y": 328.2787919975817 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n154", "weight": 77 }, "position": { "x": 392.8202345967293, "y": 258.2595158368349 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n155", "weight": 25 }, "position": { "x": 81.48890258744359, "y": 360.4895803146064 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n156", "weight": 73 }, "position": { "x": 339.8625774309039, "y": 421.0641507524997 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n157", "weight": 55 }, "position": { "x": 198.45681726001203, "y": 562.7952589653432 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n158", "weight": 95 }, "position": { "x": 285.48212475143373, "y": 330.5020797997713 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n159", "weight": 39 }, "position": { "x": 236.22534899041057, "y": 193.89875954948366 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n160", "weight": 4 }, "position": { "x": 87.05817991867661, "y": 208.52372185327113 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n161", "weight": 53 }, "position": { "x": 462.3160452581942, "y": 549.9373823404312 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n162", "weight": 33 }, "position": { "x": 477.9633062426001, "y": 221.55817109160125 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n163", "weight": 76 }, "position": { "x": 295.897844620049, "y": 311.88751235604286 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n164", "weight": 55 }, "position": { "x": 578.9040209725499, "y": 278.7616171874106 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n165", "weight": 90 }, "position": { "x": 202.0694233942777, "y": 102.92368805967271 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n166", "weight": 63 }, "position": { "x": 144.01451353915036, "y": 45.191367622464895 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n167", "weight": 34 }, "position": { "x": 324.70673653297126, "y": 517.1742517501116 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n168", "weight": 63 }, "position": { "x": 219.2856808193028, "y": 171.69807222671807 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n169", "weight": 16 }, "position": { "x": 411.37628741562366, "y": 262.81011840328574 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n170", "weight": 83 }, "position": { "x": 574.4048490654677, "y": 383.9300884399563 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n171", "weight": 75 }, "position": { "x": 492.0482608024031, "y": 190.13710697181523 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n172", "weight": 84 }, "position": { "x": 404.6564769465476, "y": 582.2107453364879 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n173", "weight": 15 }, "position": { "x": 482.64799090102315, "y": 47.35475038178265 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n174", "weight": 30 }, "position": { "x": 504.798881476745, "y": 356.85132751241326 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n175", "weight": 95 }, "position": { "x": 453.2366991508752, "y": 264.1326951328665 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n176", "weight": 28 }, "position": { "x": 573.430000199005, "y": 391.25027912668884 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n177", "weight": 52 }, "position": { "x": 69.87873064354062, "y": 78.01776565611362 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n178", "weight": 89 }, "position": { "x": 285.06672782823443, "y": 424.6619902085513 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n179", "weight": 10 }, "position": { "x": 384.3593546189368, "y": 366.18679161183536 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n180", "weight": 30 }, "position": { "x": 153.86937665753067, "y": 597.7610690519214 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n181", "weight": 76 }, "position": { "x": 146.6712644789368, "y": 581.9573717191815 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n182", "weight": 51 }, "position": { "x": 289.3993944860995, "y": 457.8967762179673 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n183", "weight": 23 }, "position": { "x": 381.1925686430186, "y": 104.53879027627409 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n184", "weight": 79 }, "position": { "x": 70.92004786245525, "y": 593.5529066249728 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n185", "weight": 46 }, "position": { "x": 441.0139094106853, "y": 44.29747466929257 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n186", "weight": 15 }, "position": { "x": 343.96853065118194, "y": 273.16679530777037 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n187", "weight": 43 }, "position": { "x": 578.5368898417801, "y": 166.29430814646184 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n188", "weight": 55 }, "position": { "x": 524.8361233156174, "y": 5.126005690544844 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n189", "weight": 11 }, "position": { "x": 479.25988007336855, "y": 373.1290340423584 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n190", "weight": 69 }, "position": { "x": 503.84903820231557, "y": 423.0759831145406 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n191", "weight": 96 }, "position": { "x": 236.79103860631585, "y": 293.9158034976572 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n192", "weight": 19 }, "position": { "x": 386.516071530059, "y": 96.09635747037828 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n193", "weight": 71 }, "position": { "x": 594.2300209309906, "y": 156.85805319808424 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n194", "weight": 37 }, "position": { "x": 265.7954702619463, "y": 382.254497660324 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n195", "weight": 58 }, "position": { "x": 373.6815767828375, "y": 213.85454200208187 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n196", "weight": 94 }, "position": { "x": 307.3433701414615, "y": 227.49342718161643 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n197", "weight": 36 }, "position": { "x": 118.79931287840009, "y": 70.86892942897975 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n198", "weight": 15 }, "position": { "x": 198.16299956291914, "y": 543.4780555777252 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n199", "weight": 63 }, "position": { "x": 80.52623723633587, "y": 259.47743305005133 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n200", "weight": 18 }, "position": { "x": 216.5688722860068, "y": 377.76427790522575 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n201", "weight": 65 }, "position": { "x": 41.60450119525194, "y": 94.36757722869515 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n202", "weight": 86 }, "position": { "x": 1.9039691425859928, "y": 573.2652875594795 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n203", "weight": 56 }, "position": { "x": 179.61548874154687, "y": 72.89273156784475 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n204", "weight": 80 }, "position": { "x": 166.72506197355688, "y": 363.27256648801267 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n205", "weight": 53 }, "position": { "x": 398.8362700212747, "y": 330.6138401851058 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n206", "weight": 79 }, "position": { "x": 163.6723622214049, "y": 453.15604442730546 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n207", "weight": 74 }, "position": { "x": 491.53402405790985, "y": 421.03350246325135 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n208", "weight": 78 }, "position": { "x": 224.00820991024375, "y": 120.36814489401877 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n209", "weight": 80 }, "position": { "x": 559.7439226694405, "y": 573.6626119818538 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n210", "weight": 8 }, "position": { "x": 576.7849819734693, "y": 555.6595641653985 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n211", "weight": 65 }, "position": { "x": 264.068282302469, "y": 177.7811656706035 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n212", "weight": 32 }, "position": { "x": 388.28191766515374, "y": 6.001782696694136 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n213", "weight": 81 }, "position": { "x": 122.07651366479695, "y": 37.87309303879738 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n214", "weight": 27 }, "position": { "x": 406.4874740783125, "y": 345.66657627001405 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n215", "weight": 46 }, "position": { "x": 77.54629645496607, "y": 460.1615925785154 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n216", "weight": 0 }, "position": { "x": 530.6841961573809, "y": 447.75649937801063 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n217", "weight": 41 }, "position": { "x": 455.411554640159, "y": 388.84648606181145 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n218", "weight": 42 }, "position": { "x": 347.3788436036557, "y": 318.0372457019985 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n219", "weight": 94 }, "position": { "x": 235.49277749843895, "y": 102.27953810244799 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n220", "weight": 85 }, "position": { "x": 453.6736117210239, "y": 477.33479174785316 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n221", "weight": 25 }, "position": { "x": 450.38696830160916, "y": 318.1883592624217 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n222", "weight": 45 }, "position": { "x": 141.07193970121443, "y": 146.61325947381556 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n223", "weight": 15 }, "position": { "x": 174.088148586452, "y": 526.5512344893068 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n224", "weight": 8 }, "position": { "x": 252.27090599946678, "y": 440.36303451284766 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n225", "weight": 27 }, "position": { "x": 218.6304895207286, "y": 232.61667774058878 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n226", "weight": 18 }, "position": { "x": 536.5457448642701, "y": 313.1064482498914 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n227", "weight": 75 }, "position": { "x": 350.19698878750205, "y": 132.25818271748722 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n228", "weight": 5 }, "position": { "x": 146.9585034996271, "y": 249.71661935560405 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n229", "weight": 99 }, "position": { "x": 344.7729224804789, "y": 134.61690112017095 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n230", "weight": 71 }, "position": { "x": 565.339429769665, "y": 342.06193280406296 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n231", "weight": 68 }, "position": { "x": 278.35871796123683, "y": 329.92539019323885 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n232", "weight": 83 }, "position": { "x": 89.06870931386948, "y": 377.20367345027626 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n233", "weight": 58 }, "position": { "x": 331.41367114149034, "y": 184.49962036684155 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n234", "weight": 1 }, "position": { "x": 323.3668137341738, "y": 37.14247425086796 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n235", "weight": 6 }, "position": { "x": 4.0590529795736074, "y": 321.3873346801847 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n236", "weight": 83 }, "position": { "x": 44.44442801177502, "y": 386.1872028093785 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n237", "weight": 9 }, "position": { "x": 525.2906925044954, "y": 326.10848075710237 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n238", "weight": 67 }, "position": { "x": 287.21686745993793, "y": 102.08921665325761 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n239", "weight": 2 }, "position": { "x": 594.1282830666751, "y": 0.2985016442835331 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n240", "weight": 20 }, "position": { "x": 229.901380604133, "y": 360.6548611074686 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n241", "weight": 81 }, "position": { "x": 551.3821288011968, "y": 236.22512044385076 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n242", "weight": 47 }, "position": { "x": 35.12806151993573, "y": 419.48916418477893 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n243", "weight": 45 }, "position": { "x": 279.3454442638904, "y": 191.42089490778744 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n244", "weight": 78 }, "position": { "x": 126.08716827817261, "y": 107.5707568321377 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n245", "weight": 96 }, "position": { "x": 486.1858930438757, "y": 557.7284775674343 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n246", "weight": 62 }, "position": { "x": 283.3541798405349, "y": 294.93617811240256 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n247", "weight": 16 }, "position": { "x": 164.0759410802275, "y": 508.67012813687325 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n248", "weight": 53 }, "position": { "x": 254.4427269604057, "y": 564.7928374819458 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n249", "weight": 76 }, "position": { "x": 354.9224649555981, "y": 58.704172912985086 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n250", "weight": 98 }, "position": { "x": 36.62789887748659, "y": 341.77835122682154 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n251", "weight": 79 }, "position": { "x": 267.6840936765075, "y": 283.28993772156537 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n252", "weight": 49 }, "position": { "x": 51.35215907357633, "y": 36.11523541621864 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n253", "weight": 71 }, "position": { "x": 14.794144872575998, "y": 298.28686863183975 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n254", "weight": 9 }, "position": { "x": 502.17341794632375, "y": 307.7050512190908 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n255", "weight": 22 }, "position": { "x": 108.40782062150538, "y": 369.453219557181 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n256", "weight": 71 }, "position": { "x": 330.12815611436963, "y": 16.751331835985184 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n257", "weight": 12 }, "position": { "x": 399.40727879293263, "y": 434.78811839595437 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n258", "weight": 53 }, "position": { "x": 169.6179156191647, "y": 383.14193207770586 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n259", "weight": 58 }, "position": { "x": 557.4684876948595, "y": 447.35698783770204 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n260", "weight": 43 }, "position": { "x": 302.4229642935097, "y": 137.4628986697644 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n261", "weight": 40 }, "position": { "x": 101.32125620730221, "y": 346.0831431671977 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n262", "weight": 87 }, "position": { "x": 247.2834711894393, "y": 597.1894489601254 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n263", "weight": 52 }, "position": { "x": 423.6519788391888, "y": 263.28780809417367 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n264", "weight": 61 }, "position": { "x": 297.20516516827047, "y": 210.5302961077541 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n265", "weight": 69 }, "position": { "x": 547.5035823415965, "y": 82.98676866106689 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n266", "weight": 51 }, "position": { "x": 91.79067160002887, "y": 211.44069749861956 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n267", "weight": 20 }, "position": { "x": 281.0389116872102, "y": 499.7632313054055 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n268", "weight": 29 }, "position": { "x": 561.6009027231485, "y": 248.5825354233384 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n269", "weight": 61 }, "position": { "x": 586.6755412425846, "y": 121.09073507599533 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n270", "weight": 100 }, "position": { "x": 273.0122119188309, "y": 483.1466843839735 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n271", "weight": 22 }, "position": { "x": 484.7905468661338, "y": 205.05071519874036 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n272", "weight": 4 }, "position": { "x": 463.6098769493401, "y": 56.56095910817385 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n273", "weight": 51 }, "position": { "x": 75.90210805647075, "y": 355.2258173469454 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n274", "weight": 40 }, "position": { "x": 549.5471214875579, "y": 308.0871212761849 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n275", "weight": 96 }, "position": { "x": 210.29105382040143, "y": 343.1205519475043 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n276", "weight": 58 }, "position": { "x": 355.0320034381002, "y": 235.71562157012522 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n277", "weight": 76 }, "position": { "x": 353.5466578323394, "y": 164.93011442944407 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n278", "weight": 90 }, "position": { "x": 49.62154375389218, "y": 117.96984057873487 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n279", "weight": 67 }, "position": { "x": 392.9160801228136, "y": 114.48836387135088 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n280", "weight": 87 }, "position": { "x": 251.26904100179672, "y": 338.73993647284806 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n281", "weight": 32 }, "position": { "x": 176.87427741475403, "y": 412.4234817456454 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n282", "weight": 26 }, "position": { "x": 54.06838492490351, "y": 316.45375904627144 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n283", "weight": 57 }, "position": { "x": 365.84735666401684, "y": 576.3143265154213 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n284", "weight": 57 }, "position": { "x": 332.45477993041277, "y": 487.0458672288805 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n285", "weight": 3 }, "position": { "x": 263.189608650282, "y": 213.88759589754045 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n286", "weight": 1 }, "position": { "x": 37.82060737721622, "y": 493.6703465413302 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n287", "weight": 48 }, "position": { "x": 87.2565558180213, "y": 194.84621845185757 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n288", "weight": 97 }, "position": { "x": 444.29547493346035, "y": 20.58343207463622 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n289", "weight": 0 }, "position": { "x": 274.719310272485, "y": 233.53207209147513 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n290", "weight": 9 }, "position": { "x": 570.9396382793784, "y": 455.2213198039681 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n291", "weight": 94 }, "position": { "x": 227.1610158495605, "y": 264.5369135309011 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n292", "weight": 44 }, "position": { "x": 586.1974890343845, "y": 394.1160269547254 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n293", "weight": 80 }, "position": { "x": 230.90849798172712, "y": 264.13698024116457 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n294", "weight": 18 }, "position": { "x": 23.64060007967055, "y": 583.2688798662275 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n295", "weight": 32 }, "position": { "x": 198.47624455578625, "y": 259.7873642574996 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n296", "weight": 72 }, "position": { "x": 82.27326138876379, "y": 426.97911257855594 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n297", "weight": 55 }, "position": { "x": 320.8143993280828, "y": 251.3568101450801 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n298", "weight": 98 }, "position": { "x": 411.4604196511209, "y": 104.74706827662885 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n299", "weight": 21 }, "position": { "x": 2.2927656769752502, "y": 459.53824929893017 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n300", "weight": 1 }, "position": { "x": 203.0403182376176, "y": 287.0727425906807 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n301", "weight": 62 }, "position": { "x": 428.10819880105555, "y": 585.0957113318145 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n302", "weight": 27 }, "position": { "x": 321.205703727901, "y": 199.41455824300647 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n303", "weight": 21 }, "position": { "x": 325.81824311055243, "y": 505.359503114596 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n304", "weight": 67 }, "position": { "x": 383.7785264477134, "y": 555.1064840052277 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n305", "weight": 83 }, "position": { "x": 370.68395046517253, "y": 150.29577487148345 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n306", "weight": 34 }, "position": { "x": 183.93819951452315, "y": 400.37484811618924 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n307", "weight": 33 }, "position": { "x": 74.90068855695426, "y": 90.20321052521467 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n308", "weight": 1 }, "position": { "x": 162.8979479894042, "y": 501.6334820073098 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n309", "weight": 11 }, "position": { "x": 103.90125601552427, "y": 74.82387581840158 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n310", "weight": 60 }, "position": { "x": 235.97033908590674, "y": 343.4303278103471 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n311", "weight": 7 }, "position": { "x": 523.7264455296099, "y": 515.7036676537246 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n312", "weight": 83 }, "position": { "x": 388.0257232580334, "y": 206.91977413371205 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n313", "weight": 88 }, "position": { "x": 314.4999931566417, "y": 73.81074707955122 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n314", "weight": 2 }, "position": { "x": 276.4218495693058, "y": 153.87900257483125 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n315", "weight": 32 }, "position": { "x": 344.16221086867154, "y": 214.15911647491157 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n316", "weight": 13 }, "position": { "x": 85.35173241980374, "y": 139.10133163444698 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n317", "weight": 21 }, "position": { "x": 361.93333407863975, "y": 313.93394032493234 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n318", "weight": 76 }, "position": { "x": 85.17354824580252, "y": 66.00535442121327 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n319", "weight": 8 }, "position": { "x": 172.61339966207743, "y": 413.16469539888203 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n320", "weight": 84 }, "position": { "x": 391.3201557006687, "y": 434.4924826640636 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n321", "weight": 60 }, "position": { "x": 208.58723181299865, "y": 367.39002163521945 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n322", "weight": 74 }, "position": { "x": 560.7792001683265, "y": 435.04529977217317 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n323", "weight": 41 }, "position": { "x": 151.9590221811086, "y": 452.68567632883787 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n324", "weight": 52 }, "position": { "x": 550.6620808504522, "y": 169.9773488100618 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n325", "weight": 90 }, "position": { "x": 181.64402120746672, "y": 69.62914257310331 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n326", "weight": 54 }, "position": { "x": 590.2680426836014, "y": 456.44897357560694 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n327", "weight": 32 }, "position": { "x": 403.76407695002854, "y": 299.3442694656551 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n328", "weight": 61 }, "position": { "x": 469.6005371399224, "y": 362.2612814884633 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n329", "weight": 72 }, "position": { "x": 167.33868489973247, "y": 158.65837368182838 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n330", "weight": 82 }, "position": { "x": 188.01739267073572, "y": 92.5458007492125 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n331", "weight": 44 }, "position": { "x": 344.79003455489874, "y": 377.19480148516595 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n332", "weight": 42 }, "position": { "x": 50.56390059180558, "y": 470.1460654847324 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n333", "weight": 19 }, "position": { "x": 146.86675630509853, "y": 399.164707493037 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n334", "weight": 51 }, "position": { "x": 97.29795372113585, "y": 121.87337279319763 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n335", "weight": 47 }, "position": { "x": 279.94677079841495, "y": 436.70663041993976 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n336", "weight": 3 }, "position": { "x": 33.88970335945487, "y": 560.9082159586251 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n337", "weight": 44 }, "position": { "x": 401.25065026804805, "y": 81.04985151439905 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n338", "weight": 34 }, "position": { "x": 144.03152992017567, "y": 330.1871888805181 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n339", "weight": 85 }, "position": { "x": 587.7932846546173, "y": 171.44769877195358 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n340", "weight": 53 }, "position": { "x": 224.6344394981861, "y": 221.66647561825812 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n341", "weight": 71 }, "position": { "x": 478.8083899766207, "y": 76.45952068269253 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n342", "weight": 68 }, "position": { "x": 445.7306833472103, "y": 437.3939485754818 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n343", "weight": 2 }, "position": { "x": 574.6429829858243, "y": 397.54432551562786 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n344", "weight": 36 }, "position": { "x": 502.19906447455287, "y": 254.48716138489544 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n345", "weight": 42 }, "position": { "x": 128.54694365523756, "y": 482.5948365032673 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n346", "weight": 42 }, "position": { "x": 52.39794719964266, "y": 496.0544635076076 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n347", "weight": 26 }, "position": { "x": 263.709904672578, "y": 188.57107213698328 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n348", "weight": 78 }, "position": { "x": 379.40831361338496, "y": 573.8179944455624 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n349", "weight": 74 }, "position": { "x": 468.6891737859696, "y": 21.503586787730455 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n350", "weight": 90 }, "position": { "x": 270.084655797109, "y": 332.11848763749003 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n351", "weight": 74 }, "position": { "x": 280.581995844841, "y": 192.49232355505228 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n352", "weight": 40 }, "position": { "x": 451.24646835029125, "y": 469.2572794854641 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n353", "weight": 33 }, "position": { "x": 450.51363785751164, "y": 273.06101680733263 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n354", "weight": 13 }, "position": { "x": 221.0912374779582, "y": 212.208443088457 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n355", "weight": 68 }, "position": { "x": 78.41773903928697, "y": 189.8753295186907 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n356", "weight": 56 }, "position": { "x": 498.466983390972, "y": 433.1919754855335 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n357", "weight": 6 }, "position": { "x": 298.0353222694248, "y": 341.9356546830386 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n358", "weight": 65 }, "position": { "x": 169.97237959876657, "y": 327.9325945302844 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n359", "weight": 99 }, "position": { "x": 17.913294956088066, "y": 393.59430936165154 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n360", "weight": 65 }, "position": { "x": 437.7125504426658, "y": 281.7633855622262 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n361", "weight": 29 }, "position": { "x": 254.43465756252408, "y": 524.1072296630591 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n362", "weight": 67 }, "position": { "x": 309.9179425276816, "y": 391.5778733789921 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n363", "weight": 44 }, "position": { "x": 415.4831925407052, "y": 256.7931749392301 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n364", "weight": 64 }, "position": { "x": 481.435064971447, "y": 79.18947148136795 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n365", "weight": 77 }, "position": { "x": 378.4668935928494, "y": 141.26601512543857 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n366", "weight": 43 }, "position": { "x": 241.06620945967734, "y": 330.81271941773593 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n367", "weight": 85 }, "position": { "x": 231.56112455762923, "y": 150.6434611044824 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n368", "weight": 88 }, "position": { "x": 578.2929664012045, "y": 91.61536311730742 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n369", "weight": 18 }, "position": { "x": 571.3643203955144, "y": 533.5413479246199 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n370", "weight": 0 }, "position": { "x": 260.3546693455428, "y": 549.0667614620179 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n371", "weight": 75 }, "position": { "x": 399.73650206811726, "y": 561.5799095481634 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n372", "weight": 96 }, "position": { "x": 328.32744154147804, "y": 269.5445240009576 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n373", "weight": 1 }, "position": { "x": 439.46636714972556, "y": 495.1820442918688 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n374", "weight": 95 }, "position": { "x": 78.13481991179287, "y": 448.5792915802449 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n375", "weight": 29 }, "position": { "x": 211.34792282246053, "y": 270.36462100222707 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n376", "weight": 5 }, "position": { "x": 375.97033493220806, "y": 548.4936970286071 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n377", "weight": 51 }, "position": { "x": 367.67410207539797, "y": 257.8637811820954 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n378", "weight": 24 }, "position": { "x": 468.88834345154464, "y": 19.092932576313615 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n379", "weight": 57 }, "position": { "x": 438.1561366841197, "y": 65.7839774619788 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n380", "weight": 55 }, "position": { "x": 531.4863325562328, "y": 261.8790186010301 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n381", "weight": 72 }, "position": { "x": 72.34304691664875, "y": 113.55564300902188 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n382", "weight": 29 }, "position": { "x": 323.2959698885679, "y": 544.5524888578802 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n383", "weight": 31 }, "position": { "x": 407.12081738747656, "y": 496.0019022691995 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n384", "weight": 75 }, "position": { "x": 530.4194288793951, "y": 521.4414929039776 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n385", "weight": 66 }, "position": { "x": 52.11588987149298, "y": 149.4781049899757 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n386", "weight": 10 }, "position": { "x": 488.3941712323576, "y": 532.1822874248028 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n387", "weight": 70 }, "position": { "x": 301.97879411280155, "y": 552.6510247495025 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n388", "weight": 6 }, "position": { "x": 560.0807379931211, "y": 40.10806088335812 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n389", "weight": 51 }, "position": { "x": 170.82007653079927, "y": 262.379944184795 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n390", "weight": 61 }, "position": { "x": 435.2980170864612, "y": 77.94731575995684 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n391", "weight": 83 }, "position": { "x": 551.8036710564047, "y": 134.26104099489748 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n392", "weight": 93 }, "position": { "x": 566.6545329149812, "y": 302.29840013198555 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n393", "weight": 75 }, "position": { "x": 189.7926629986614, "y": 136.23066083528101 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n394", "weight": 99 }, "position": { "x": 441.58526700921357, "y": 304.36974512413144 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n395", "weight": 70 }, "position": { "x": 350.05031442269683, "y": 448.5143923200667 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n396", "weight": 46 }, "position": { "x": 392.84160886891186, "y": 542.0052716508508 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n397", "weight": 83 }, "position": { "x": 366.41380707733333, "y": 192.36716022714972 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n398", "weight": 54 }, "position": { "x": 193.1806169450283, "y": 200.02417084760964 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n399", "weight": 55 }, "position": { "x": 596.4595500379801, "y": 149.8615823686123 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n400", "weight": 7 }, "position": { "x": 589.6882759407163, "y": 470.34330954775214 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n401", "weight": 57 }, "position": { "x": 69.21488642692566, "y": 40.465323720127344 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n402", "weight": 15 }, "position": { "x": 77.48588933609426, "y": 437.6569563522935 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n403", "weight": 65 }, "position": { "x": 299.72644122317433, "y": 190.3524833265692 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n404", "weight": 17 }, "position": { "x": 247.8893369436264, "y": 288.5517593007535 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n405", "weight": 81 }, "position": { "x": 123.17275512032211, "y": 145.3075383324176 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n406", "weight": 27 }, "position": { "x": 437.83495891839266, "y": 161.12771295011044 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n407", "weight": 22 }, "position": { "x": 176.95819297805429, "y": 102.00427751988173 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n408", "weight": 46 }, "position": { "x": 99.21304523013532, "y": 277.9107045382261 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n409", "weight": 74 }, "position": { "x": 486.469803750515, "y": 307.73613075725734 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n410", "weight": 5 }, "position": { "x": 448.60689654015005, "y": 62.90093902498484 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n411", "weight": 73 }, "position": { "x": 509.611536283046, "y": 225.1094110775739 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n412", "weight": 68 }, "position": { "x": 153.98038811981678, "y": 269.30996594019234 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n413", "weight": 68 }, "position": { "x": 313.7831470929086, "y": 190.89593687094748 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n414", "weight": 62 }, "position": { "x": 418.314738990739, "y": 548.6303720623255 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n415", "weight": 71 }, "position": { "x": 311.6903187241405, "y": 286.95206749252975 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n416", "weight": 4 }, "position": { "x": 8.546166820451617, "y": 92.6282873377204 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n417", "weight": 86 }, "position": { "x": 34.695134684443474, "y": 422.841076226905 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n418", "weight": 50 }, "position": { "x": 542.7848670165986, "y": 293.48909365944564 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n419", "weight": 23 }, "position": { "x": 261.2182666081935, "y": 279.7205707523972 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n420", "weight": 75 }, "position": { "x": 201.13879437558353, "y": 413.8258976396173 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n421", "weight": 93 }, "position": { "x": 134.97788426466286, "y": 575.8902055677027 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n422", "weight": 64 }, "position": { "x": 314.11995026282966, "y": 375.0148736871779 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n423", "weight": 5 }, "position": { "x": 585.903373779729, "y": 375.08573681116104 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n424", "weight": 41 }, "position": { "x": 232.5741277076304, "y": 45.43566154316068 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n425", "weight": 63 }, "position": { "x": 110.34774337895215, "y": 336.78315337747335 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n426", "weight": 59 }, "position": { "x": 392.88143003359437, "y": 198.93624857068062 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n427", "weight": 75 }, "position": { "x": 543.5328633058816, "y": 253.49998245947063 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n428", "weight": 33 }, "position": { "x": 504.72893505357206, "y": 222.86768993362784 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n429", "weight": 64 }, "position": { "x": 201.6115665435791, "y": 95.70716824382544 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n430", "weight": 64 }, "position": { "x": 94.80290925130248, "y": 239.57240637391806 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n431", "weight": 3 }, "position": { "x": 77.03740764409304, "y": 18.992813117802143 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n432", "weight": 32 }, "position": { "x": 489.31782580912113, "y": 64.7117470856756 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n433", "weight": 95 }, "position": { "x": 208.04959922097623, "y": 155.5944750085473 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n434", "weight": 71 }, "position": { "x": 201.31729482673109, "y": 153.0753301922232 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n435", "weight": 75 }, "position": { "x": 273.84492619894445, "y": 65.5470116995275 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n436", "weight": 23 }, "position": { "x": 597.8701799176633, "y": 58.43176385387778 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n437", "weight": 73 }, "position": { "x": 378.52635411545634, "y": 105.70862358435988 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n438", "weight": 48 }, "position": { "x": 546.5859347954392, "y": 117.34278537333012 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n439", "weight": 66 }, "position": { "x": 134.28703495301306, "y": 416.16734764538705 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n440", "weight": 28 }, "position": { "x": 176.76157769747078, "y": 198.02104867994785 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n441", "weight": 76 }, "position": { "x": 516.6742395143956, "y": 214.8561988491565 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n442", "weight": 68 }, "position": { "x": 59.34607372619212, "y": 315.1990385726094 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n443", "weight": 38 }, "position": { "x": 353.12371007166803, "y": 204.36032102443278 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n444", "weight": 79 }, "position": { "x": 372.6827164180577, "y": 14.626735635101795 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n445", "weight": 45 }, "position": { "x": 14.799732528626919, "y": 423.7117718439549 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n446", "weight": 97 }, "position": { "x": 13.342886231839657, "y": 310.88785333558917 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n447", "weight": 3 }, "position": { "x": 195.03652802668512, "y": 475.36503318697214 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n448", "weight": 18 }, "position": { "x": 347.33639918267727, "y": 42.15446971356869 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n449", "weight": 87 }, "position": { "x": 117.34659564681351, "y": 556.1447284184396 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n450", "weight": 21 }, "position": { "x": 236.78468386642635, "y": 167.81869302503765 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n451", "weight": 95 }, "position": { "x": 141.46402878686786, "y": 223.54720328003168 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n452", "weight": 11 }, "position": { "x": 527.4711422156543, "y": 545.1874273829162 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n453", "weight": 93 }, "position": { "x": 470.1397026423365, "y": 85.21981704980135 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n454", "weight": 51 }, "position": { "x": 371.89984819851816, "y": 147.69446421414614 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n455", "weight": 16 }, "position": { "x": 190.03028101287782, "y": 187.3670881614089 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n456", "weight": 22 }, "position": { "x": 437.6111527439207, "y": 170.0493142940104 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n457", "weight": 80 }, "position": { "x": 570.0284115504473, "y": 212.05341867171228 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n458", "weight": 10 }, "position": { "x": 42.804437689483166, "y": 318.3293762616813 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n459", "weight": 73 }, "position": { "x": 220.09229301474988, "y": 509.2823916580528 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n460", "weight": 24 }, "position": { "x": 378.6620638333261, "y": 565.0329106952995 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n461", "weight": 7 }, "position": { "x": 22.190969763323665, "y": 365.63807409256697 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n462", "weight": 40 }, "position": { "x": 560.1874120999128, "y": 303.7075012922287 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n463", "weight": 41 }, "position": { "x": 283.24403199367225, "y": 51.90058937296271 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n464", "weight": 51 }, "position": { "x": 529.1280582547188, "y": 291.9542397838086 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n465", "weight": 66 }, "position": { "x": 50.966361025348306, "y": 70.51188759505749 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n466", "weight": 25 }, "position": { "x": 178.7908441387117, "y": 564.5001844502985 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n467", "weight": 80 }, "position": { "x": 502.2005322854966, "y": 329.3981306254864 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n468", "weight": 4 }, "position": { "x": 503.8512352388352, "y": 313.99600566364825 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n469", "weight": 78 }, "position": { "x": 513.8943783938885, "y": 359.6838206984103 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n470", "weight": 39 }, "position": { "x": 570.4396644607186, "y": 472.1610968001187 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n471", "weight": 77 }, "position": { "x": 288.24336882680655, "y": 255.43125313706696 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n472", "weight": 4 }, "position": { "x": 41.38952773064375, "y": 177.08623283542693 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n473", "weight": 3 }, "position": { "x": 357.5251318048686, "y": 215.20941867493093 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n474", "weight": 20 }, "position": { "x": 404.18885755352676, "y": 342.6614164374769 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n475", "weight": 73 }, "position": { "x": 380.08559541776776, "y": 345.1548254583031 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n476", "weight": 84 }, "position": { "x": 511.32884602993727, "y": 327.1337509620935 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n477", "weight": 89 }, "position": { "x": 110.31984086148441, "y": 478.50128025747836 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n478", "weight": 78 }, "position": { "x": 280.26376250199974, "y": 343.9414984546602 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n479", "weight": 71 }, "position": { "x": 65.34113874658942, "y": 530.3018074482679 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n480", "weight": 34 }, "position": { "x": 445.88241395540535, "y": 225.1662549097091 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n481", "weight": 60 }, "position": { "x": 418.4152304660529, "y": 585.1751471869648 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n482", "weight": 50 }, "position": { "x": 521.0376835428178, "y": 170.1701965648681 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n483", "weight": 74 }, "position": { "x": 430.2790614310652, "y": 54.73813181743026 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n484", "weight": 1 }, "position": { "x": 249.73218594677746, "y": 288.42918793670833 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n485", "weight": 18 }, "position": { "x": 295.2190166339278, "y": 435.6400662101805 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n486", "weight": 41 }, "position": { "x": 457.76993008330464, "y": 184.59772411733866 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n487", "weight": 86 }, "position": { "x": 561.4439405500889, "y": 500.1027401536703 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n488", "weight": 74 }, "position": { "x": 106.42701219767332, "y": 152.04588398337364 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n489", "weight": 48 }, "position": { "x": 270.1066286768764, "y": 596.6087442822754 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n490", "weight": 68 }, "position": { "x": 479.95162694714963, "y": 583.760259160772 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n491", "weight": 59 }, "position": { "x": 211.19401906616986, "y": 43.80224151536822 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n492", "weight": 99 }, "position": { "x": 527.3923243861645, "y": 554.6773872803897 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n493", "weight": 79 }, "position": { "x": 375.0200387556106, "y": 241.44754316657782 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n494", "weight": 32 }, "position": { "x": 2.877640211954713, "y": 383.437019912526 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n495", "weight": 42 }, "position": { "x": 243.58428055420518, "y": 135.9404937364161 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n496", "weight": 9 }, "position": { "x": 63.04837209172547, "y": 3.6527671851217747 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n497", "weight": 0 }, "position": { "x": 449.9779338017106, "y": 548.3183621428907 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n498", "weight": 97 }, "position": { "x": 69.9028892442584, "y": 54.28929445333779 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n499", "weight": 18 }, "position": { "x": 515.765041904524, "y": 355.0030928570777 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n500", "weight": 63 }, "position": { "x": 200.2212225459516, "y": 465.46294586732984 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n501", "weight": 50 }, "position": { "x": 368.33887277171016, "y": 468.0022079497576 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n502", "weight": 9 }, "position": { "x": 485.2716538589448, "y": 482.54807526245713 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n503", "weight": 19 }, "position": { "x": 293.0223926436156, "y": 486.9422192685306 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n504", "weight": 94 }, "position": { "x": 84.18722916394472, "y": 28.523667063564062 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n505", "weight": 58 }, "position": { "x": 443.7302474398166, "y": 549.6572130359709 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n506", "weight": 95 }, "position": { "x": 320.6657609436661, "y": 42.83737577497959 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n507", "weight": 49 }, "position": { "x": 577.1861630491912, "y": 184.04224226251245 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n508", "weight": 19 }, "position": { "x": 73.44335541129112, "y": 298.67447395808995 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n509", "weight": 10 }, "position": { "x": 354.9617439508438, "y": 185.26204344816506 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n510", "weight": 17 }, "position": { "x": 96.82054873555899, "y": 365.0560678448528 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n511", "weight": 59 }, "position": { "x": 6.90379268489778, "y": 238.3642964065075 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n512", "weight": 18 }, "position": { "x": 327.83971675671637, "y": 105.1881923340261 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n513", "weight": 56 }, "position": { "x": 213.61562521196902, "y": 404.4943308457732 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n514", "weight": 82 }, "position": { "x": 539.6121350582689, "y": 63.215225748717785 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n515", "weight": 25 }, "position": { "x": 593.9885756000876, "y": 529.5634866692126 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n516", "weight": 1 }, "position": { "x": 598.7911953125149, "y": 550.7361543830484 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n517", "weight": 93 }, "position": { "x": 21.335125481709838, "y": 550.8506809361279 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n518", "weight": 0 }, "position": { "x": 11.064845463261008, "y": 492.3089994583279 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n519", "weight": 20 }, "position": { "x": 336.75413774326444, "y": 452.85508590750396 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n520", "weight": 62 }, "position": { "x": 124.26586719229817, "y": 389.53184480778873 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n521", "weight": 18 }, "position": { "x": 456.0251352377236, "y": 159.13101551122963 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n522", "weight": 45 }, "position": { "x": 25.373528245836496, "y": 447.707510786131 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n523", "weight": 78 }, "position": { "x": 118.46262509934604, "y": 551.0848817881197 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n524", "weight": 30 }, "position": { "x": 260.51708785817027, "y": 9.6935183275491 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n525", "weight": 12 }, "position": { "x": 269.5972035638988, "y": 335.1176461670548 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n526", "weight": 91 }, "position": { "x": 220.11376535519958, "y": 442.8756925743073 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n527", "weight": 65 }, "position": { "x": 131.72282609157264, "y": 371.7515705153346 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n528", "weight": 70 }, "position": { "x": 317.2978425398469, "y": 236.6845195647329 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n529", "weight": 30 }, "position": { "x": 441.8255254626274, "y": 506.6526507027447 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n530", "weight": 4 }, "position": { "x": 257.51992925070226, "y": 460.836336761713 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n531", "weight": 72 }, "position": { "x": 173.6174994148314, "y": 322.19426496885717 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n532", "weight": 45 }, "position": { "x": 220.48738952726126, "y": 24.136203713715076 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n533", "weight": 8 }, "position": { "x": 552.0089662168175, "y": 256.96038426831365 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n534", "weight": 73 }, "position": { "x": 132.40760006010532, "y": 331.92341825924814 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n535", "weight": 54 }, "position": { "x": 298.48114899359643, "y": 219.72663989290595 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n536", "weight": 91 }, "position": { "x": 473.77850250341, "y": 65.75910919345915 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n537", "weight": 73 }, "position": { "x": 338.942334568128, "y": 325.3508856520057 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n538", "weight": 44 }, "position": { "x": 268.5692531056702, "y": 85.26646918617189 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n539", "weight": 81 }, "position": { "x": 396.90211904235184, "y": 478.7208791356534 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n540", "weight": 60 }, "position": { "x": 479.9864294473082, "y": 40.05963457748294 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n541", "weight": 8 }, "position": { "x": 295.2201318461448, "y": 418.02494851872325 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n542", "weight": 96 }, "position": { "x": 184.45885512046516, "y": 438.3373270276934 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n543", "weight": 61 }, "position": { "x": 16.373434849083424, "y": 424.97592754662037 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n544", "weight": 45 }, "position": { "x": 159.54797244630754, "y": 546.4894122909755 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n545", "weight": 35 }, "position": { "x": 129.28154189139605, "y": 54.02478603646159 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n546", "weight": 12 }, "position": { "x": 284.12679587490857, "y": 31.87563163228333 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n547", "weight": 72 }, "position": { "x": 337.0686834678054, "y": 227.46825478971004 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n548", "weight": 54 }, "position": { "x": 413.2834240794182, "y": 322.0592111349106 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n549", "weight": 38 }, "position": { "x": 167.31637520715594, "y": 366.89914371818304 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n550", "weight": 94 }, "position": { "x": 117.10518929176033, "y": 419.40785720944405 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n551", "weight": 98 }, "position": { "x": 92.6163072232157, "y": 512.3869130853564 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n552", "weight": 70 }, "position": { "x": 418.5624008998275, "y": 278.2356142066419 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n553", "weight": 65 }, "position": { "x": 504.4429214671254, "y": 490.950782597065 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n554", "weight": 88 }, "position": { "x": 526.4804546255618, "y": 7.380172563716769 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n555", "weight": 98 }, "position": { "x": 576.3485301285982, "y": 474.8844803776592 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n556", "weight": 86 }, "position": { "x": 150.40988135151565, "y": 455.0004780292511 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n557", "weight": 6 }, "position": { "x": 433.9592954143882, "y": 592.7227879408747 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n558", "weight": 54 }, "position": { "x": 40.78753790818155, "y": 185.94817500561476 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n559", "weight": 93 }, "position": { "x": 296.61331325769424, "y": 356.9199648220092 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n560", "weight": 9 }, "position": { "x": 358.9652402792126, "y": 89.70543975010514 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n561", "weight": 8 }, "position": { "x": 102.30913083069026, "y": 360.50742832012475 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n562", "weight": 29 }, "position": { "x": 142.38111348822713, "y": 43.09231415390968 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n563", "weight": 21 }, "position": { "x": 299.87526861950755, "y": 393.2184419129044 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n564", "weight": 34 }, "position": { "x": 66.72747256234288, "y": 98.65805692970753 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n565", "weight": 64 }, "position": { "x": 22.891877498477697, "y": 142.3199730925262 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n566", "weight": 33 }, "position": { "x": 41.022511990740895, "y": 133.2920408807695 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n567", "weight": 42 }, "position": { "x": 595.8581047598273, "y": 485.1912693120539 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n568", "weight": 55 }, "position": { "x": 399.8825803399086, "y": 205.1470562350005 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n569", "weight": 79 }, "position": { "x": 130.08065912872553, "y": 450.0575906597078 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n570", "weight": 48 }, "position": { "x": 41.985406167805195, "y": 325.28807781636715 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n571", "weight": 63 }, "position": { "x": 45.0681209564209, "y": 328.1688517425209 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n572", "weight": 18 }, "position": { "x": 23.23858388699591, "y": 423.5963541548699 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n573", "weight": 63 }, "position": { "x": 180.49834216944873, "y": 113.21765491738915 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n574", "weight": 2 }, "position": { "x": 539.3520339857787, "y": 478.46834692172706 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n575", "weight": 86 }, "position": { "x": 471.91505217924714, "y": 129.83070225454867 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n576", "weight": 94 }, "position": { "x": 364.393792161718, "y": 438.40091871097684 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n577", "weight": 65 }, "position": { "x": 371.90362494438887, "y": 170.8913818001747 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n578", "weight": 42 }, "position": { "x": 158.16396502777934, "y": 479.5010781381279 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n579", "weight": 19 }, "position": { "x": 44.39835464581847, "y": 42.57139661349356 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n580", "weight": 27 }, "position": { "x": 263.09543419629335, "y": 382.25729945115745 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n581", "weight": 58 }, "position": { "x": 455.54371615871787, "y": 359.37996888533235 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n582", "weight": 88 }, "position": { "x": 143.90296745114028, "y": 479.9380727112293 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n583", "weight": 57 }, "position": { "x": 348.6004163045436, "y": 393.70961249805987 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n584", "weight": 42 }, "position": { "x": 55.1622707862407, "y": 19.180496223270893 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n585", "weight": 16 }, "position": { "x": 19.408790906891227, "y": 523.6832753755152 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n586", "weight": 73 }, "position": { "x": 45.209741313010454, "y": 22.006810968741775 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n587", "weight": 3 }, "position": { "x": 367.9922802373767, "y": 33.36718319915235 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n588", "weight": 21 }, "position": { "x": 146.7394224833697, "y": 460.2460906840861 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n589", "weight": 82 }, "position": { "x": 509.3618529383093, "y": 356.54555722139776 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n590", "weight": 75 }, "position": { "x": 131.564440112561, "y": 545.2038743533194 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n591", "weight": 2 }, "position": { "x": 571.5841149911284, "y": 322.0603541471064 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n592", "weight": 45 }, "position": { "x": 293.19163248874247, "y": 108.69870744645596 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n593", "weight": 33 }, "position": { "x": 228.65368514321744, "y": 431.14187135361135 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n594", "weight": 48 }, "position": { "x": 594.2994728218764, "y": 255.79732744954526 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n595", "weight": 34 }, "position": { "x": 549.946809746325, "y": 290.87956957519054 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n596", "weight": 77 }, "position": { "x": 578.6252855323255, "y": 96.29180640913546 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n597", "weight": 66 }, "position": { "x": 181.3471502624452, "y": 508.7390294764191 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n598", "weight": 49 }, "position": { "x": 433.9477429166436, "y": 497.63222825713456 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "n599", "weight": 39 }, "position": { "x": 284.22265788540244, "y": 550.4128505475819 }, "group": "nodes", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e200", "weight": 74, "source": "n482", "target": "n336" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e201", "weight": 69, "source": "n313", "target": "n378" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e202", "weight": 57, "source": "n298", "target": "n273" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e203", "weight": 35, "source": "n394", "target": "n544" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e204", "weight": 50, "source": "n345", "target": "n368" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e205", "weight": 77, "source": "n344", "target": "n469" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e206", "weight": 55, "source": "n269", "target": "n185" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e207", "weight": 3, "source": "n266", "target": "n480" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e208", "weight": 83, "source": "n154", "target": "n521" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e209", "weight": 70, "source": "n451", "target": "n495" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e210", "weight": 40, "source": "n122", "target": "n551" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e211", "weight": 74, "source": "n347", "target": "n221" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e212", "weight": 66, "source": "n305", "target": "n439" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e213", "weight": 60, "source": "n159", "target": "n213" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e214", "weight": 91, "source": "n589", "target": "n535" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e215", "weight": 20, "source": "n161", "target": "n302" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e216", "weight": 57, "source": "n151", "target": "n339" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e217", "weight": 92, "source": "n372", "target": "n271" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e218", "weight": 27, "source": "n211", "target": "n128" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e219", "weight": 28, "source": "n523", "target": "n196" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e220", "weight": 93, "source": "n419", "target": "n181" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e221", "weight": 98, "source": "n555", "target": "n272" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e222", "weight": 85, "source": "n168", "target": "n526" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e223", "weight": 62, "source": "n475", "target": "n271" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e224", "weight": 33, "source": "n485", "target": "n389" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e225", "weight": 52, "source": "n395", "target": "n255" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e226", "weight": 1, "source": "n385", "target": "n184" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e227", "weight": 34, "source": "n257", "target": "n546" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e228", "weight": 20, "source": "n403", "target": "n286" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e229", "weight": 71, "source": "n318", "target": "n475" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e230", "weight": 52, "source": "n298", "target": "n215" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e231", "weight": 27, "source": "n154", "target": "n582" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e232", "weight": 96, "source": "n343", "target": "n489" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e233", "weight": 54, "source": "n485", "target": "n265" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e234", "weight": 3, "source": "n263", "target": "n586" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e235", "weight": 29, "source": "n122", "target": "n128" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e236", "weight": 26, "source": "n454", "target": "n429" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e237", "weight": 50, "source": "n424", "target": "n248" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e238", "weight": 29, "source": "n148", "target": "n103" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e239", "weight": 73, "source": "n479", "target": "n491" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e240", "weight": 94, "source": "n305", "target": "n228" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e241", "weight": 72, "source": "n239", "target": "n223" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e242", "weight": 63, "source": "n585", "target": "n535" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e243", "weight": 1, "source": "n140", "target": "n181" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e244", "weight": 80, "source": "n404", "target": "n569" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e245", "weight": 42, "source": "n125", "target": "n142" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e246", "weight": 11, "source": "n106", "target": "n232" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e247", "weight": 15, "source": "n494", "target": "n313" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e248", "weight": 15, "source": "n383", "target": "n528" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e249", "weight": 7, "source": "n483", "target": "n222" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e250", "weight": 90, "source": "n482", "target": "n306" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e251", "weight": 21, "source": "n176", "target": "n177" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e252", "weight": 17, "source": "n407", "target": "n567" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e253", "weight": 45, "source": "n269", "target": "n361" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e254", "weight": 54, "source": "n268", "target": "n256" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e255", "weight": 51, "source": "n131", "target": "n174" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e256", "weight": 25, "source": "n484", "target": "n414" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e257", "weight": 50, "source": "n506", "target": "n353" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e258", "weight": 39, "source": "n394", "target": "n415" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e259", "weight": 49, "source": "n257", "target": "n155" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e260", "weight": 42, "source": "n232", "target": "n416" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e261", "weight": 1, "source": "n293", "target": "n339" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e262", "weight": 94, "source": "n284", "target": "n470" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e263", "weight": 65, "source": "n294", "target": "n484" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e264", "weight": 72, "source": "n271", "target": "n300" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e265", "weight": 57, "source": "n164", "target": "n248" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e266", "weight": 87, "source": "n557", "target": "n114" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e267", "weight": 6, "source": "n357", "target": "n122" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e268", "weight": 94, "source": "n282", "target": "n151" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e269", "weight": 21, "source": "n483", "target": "n553" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e270", "weight": 99, "source": "n153", "target": "n400" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e271", "weight": 35, "source": "n220", "target": "n319" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e272", "weight": 38, "source": "n501", "target": "n305" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e273", "weight": 20, "source": "n117", "target": "n189" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e274", "weight": 99, "source": "n124", "target": "n357" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e275", "weight": 77, "source": "n492", "target": "n330" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e276", "weight": 88, "source": "n222", "target": "n131" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e277", "weight": 15, "source": "n475", "target": "n427" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e278", "weight": 7, "source": "n563", "target": "n297" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e279", "weight": 95, "source": "n416", "target": "n299" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e280", "weight": 40, "source": "n132", "target": "n100" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e281", "weight": 4, "source": "n155", "target": "n495" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e282", "weight": 84, "source": "n301", "target": "n503" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e283", "weight": 36, "source": "n337", "target": "n542" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e284", "weight": 79, "source": "n136", "target": "n214" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e285", "weight": 38, "source": "n178", "target": "n505" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e286", "weight": 93, "source": "n176", "target": "n160" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e287", "weight": 74, "source": "n359", "target": "n405" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e288", "weight": 13, "source": "n554", "target": "n159" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e289", "weight": 64, "source": "n573", "target": "n318" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e290", "weight": 97, "source": "n546", "target": "n203" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e291", "weight": 29, "source": "n183", "target": "n292" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e292", "weight": 19, "source": "n508", "target": "n389" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e293", "weight": 32, "source": "n342", "target": "n368" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e294", "weight": 61, "source": "n180", "target": "n116" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e295", "weight": 17, "source": "n571", "target": "n429" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e296", "weight": 62, "source": "n533", "target": "n210" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e297", "weight": 98, "source": "n175", "target": "n386" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e298", "weight": 51, "source": "n175", "target": "n551" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e299", "weight": 62, "source": "n535", "target": "n495" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e300", "weight": 26, "source": "n313", "target": "n448" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e301", "weight": 36, "source": "n156", "target": "n183" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e302", "weight": 68, "source": "n153", "target": "n392" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e303", "weight": 38, "source": "n189", "target": "n266" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e304", "weight": 53, "source": "n405", "target": "n491" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e305", "weight": 98, "source": "n236", "target": "n344" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e306", "weight": 4, "source": "n161", "target": "n377" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e307", "weight": 49, "source": "n182", "target": "n547" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e308", "weight": 49, "source": "n527", "target": "n392" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e309", "weight": 15, "source": "n267", "target": "n122" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e310", "weight": 64, "source": "n154", "target": "n120" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e311", "weight": 56, "source": "n362", "target": "n568" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e312", "weight": 32, "source": "n310", "target": "n217" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e313", "weight": 38, "source": "n187", "target": "n405" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e314", "weight": 84, "source": "n501", "target": "n125" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e315", "weight": 48, "source": "n117", "target": "n180" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e316", "weight": 94, "source": "n138", "target": "n429" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e317", "weight": 76, "source": "n229", "target": "n593" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e318", "weight": 14, "source": "n105", "target": "n405" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e319", "weight": 46, "source": "n270", "target": "n193" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e320", "weight": 68, "source": "n513", "target": "n540" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e321", "weight": 15, "source": "n197", "target": "n142" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e322", "weight": 18, "source": "n340", "target": "n173" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e323", "weight": 84, "source": "n374", "target": "n129" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e324", "weight": 2, "source": "n342", "target": "n105" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e325", "weight": 71, "source": "n184", "target": "n113" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e326", "weight": 45, "source": "n255", "target": "n550" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e327", "weight": 28, "source": "n281", "target": "n502" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e328", "weight": 1, "source": "n129", "target": "n284" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e329", "weight": 69, "source": "n274", "target": "n436" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e330", "weight": 25, "source": "n243", "target": "n391" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e331", "weight": 16, "source": "n226", "target": "n538" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e332", "weight": 95, "source": "n334", "target": "n437" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e333", "weight": 37, "source": "n379", "target": "n511" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e334", "weight": 38, "source": "n506", "target": "n251" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e335", "weight": 39, "source": "n525", "target": "n454" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e336", "weight": 54, "source": "n321", "target": "n542" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e337", "weight": 8, "source": "n343", "target": "n182" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e338", "weight": 80, "source": "n318", "target": "n166" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e339", "weight": 88, "source": "n598", "target": "n463" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e340", "weight": 96, "source": "n568", "target": "n342" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e341", "weight": 14, "source": "n201", "target": "n562" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e342", "weight": 68, "source": "n249", "target": "n404" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e343", "weight": 77, "source": "n243", "target": "n214" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e344", "weight": 93, "source": "n558", "target": "n581" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e345", "weight": 74, "source": "n365", "target": "n396" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e346", "weight": 26, "source": "n467", "target": "n229" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e347", "weight": 3, "source": "n260", "target": "n514" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e348", "weight": 45, "source": "n560", "target": "n235" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e349", "weight": 9, "source": "n420", "target": "n437" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e350", "weight": 75, "source": "n176", "target": "n184" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e351", "weight": 3, "source": "n391", "target": "n177" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e352", "weight": 73, "source": "n537", "target": "n560" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e353", "weight": 96, "source": "n125", "target": "n269" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e354", "weight": 27, "source": "n566", "target": "n292" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e355", "weight": 58, "source": "n380", "target": "n270" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e356", "weight": 58, "source": "n401", "target": "n566" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e357", "weight": 57, "source": "n288", "target": "n115" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e358", "weight": 61, "source": "n203", "target": "n418" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e359", "weight": 76, "source": "n503", "target": "n332" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e360", "weight": 42, "source": "n516", "target": "n356" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e361", "weight": 38, "source": "n127", "target": "n525" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e362", "weight": 15, "source": "n329", "target": "n578" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e363", "weight": 3, "source": "n597", "target": "n523" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e364", "weight": 51, "source": "n327", "target": "n137" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e365", "weight": 63, "source": "n569", "target": "n544" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e366", "weight": 81, "source": "n585", "target": "n109" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e367", "weight": 75, "source": "n497", "target": "n440" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e368", "weight": 10, "source": "n577", "target": "n482" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e369", "weight": 62, "source": "n250", "target": "n413" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e370", "weight": 56, "source": "n473", "target": "n535" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e371", "weight": 61, "source": "n483", "target": "n162" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e372", "weight": 65, "source": "n192", "target": "n223" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e373", "weight": 63, "source": "n368", "target": "n473" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e374", "weight": 79, "source": "n228", "target": "n397" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e375", "weight": 58, "source": "n381", "target": "n111" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e376", "weight": 93, "source": "n113", "target": "n442" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e377", "weight": 93, "source": "n457", "target": "n120" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e378", "weight": 38, "source": "n287", "target": "n566" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e379", "weight": 74, "source": "n397", "target": "n488" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e380", "weight": 64, "source": "n185", "target": "n511" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e381", "weight": 28, "source": "n412", "target": "n508" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e382", "weight": 75, "source": "n478", "target": "n458" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e383", "weight": 57, "source": "n462", "target": "n480" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e384", "weight": 41, "source": "n244", "target": "n339" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e385", "weight": 53, "source": "n162", "target": "n199" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e386", "weight": 91, "source": "n506", "target": "n534" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e387", "weight": 1, "source": "n236", "target": "n244" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e388", "weight": 55, "source": "n517", "target": "n536" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e389", "weight": 56, "source": "n585", "target": "n472" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e390", "weight": 19, "source": "n102", "target": "n262" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e391", "weight": 69, "source": "n276", "target": "n356" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e392", "weight": 66, "source": "n567", "target": "n439" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e393", "weight": 44, "source": "n334", "target": "n505" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e394", "weight": 98, "source": "n393", "target": "n471" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e395", "weight": 61, "source": "n270", "target": "n339" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e396", "weight": 99, "source": "n285", "target": "n476" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e397", "weight": 60, "source": "n245", "target": "n485" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e398", "weight": 18, "source": "n107", "target": "n241" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e399", "weight": 41, "source": "n417", "target": "n581" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e400", "weight": 81, "source": "n591", "target": "n589" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e401", "weight": 90, "source": "n463", "target": "n165" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e402", "weight": 60, "source": "n564", "target": "n384" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e403", "weight": 78, "source": "n290", "target": "n484" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e404", "weight": 86, "source": "n378", "target": "n346" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e405", "weight": 67, "source": "n224", "target": "n337" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e406", "weight": 86, "source": "n400", "target": "n301" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e407", "weight": 11, "source": "n220", "target": "n390" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e408", "weight": 98, "source": "n457", "target": "n118" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e409", "weight": 16, "source": "n135", "target": "n152" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e410", "weight": 56, "source": "n163", "target": "n502" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e411", "weight": 11, "source": "n144", "target": "n530" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e412", "weight": 69, "source": "n261", "target": "n206" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e413", "weight": 31, "source": "n379", "target": "n479" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e414", "weight": 46, "source": "n366", "target": "n422" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e415", "weight": 88, "source": "n442", "target": "n533" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e416", "weight": 61, "source": "n244", "target": "n473" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e417", "weight": 39, "source": "n584", "target": "n205" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e418", "weight": 84, "source": "n209", "target": "n394" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e419", "weight": 22, "source": "n521", "target": "n316" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e420", "weight": 26, "source": "n362", "target": "n242" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e421", "weight": 62, "source": "n423", "target": "n175" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e422", "weight": 97, "source": "n262", "target": "n339" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e423", "weight": 47, "source": "n200", "target": "n182" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e424", "weight": 44, "source": "n594", "target": "n341" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e425", "weight": 50, "source": "n140", "target": "n510" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e426", "weight": 53, "source": "n377", "target": "n509" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e427", "weight": 55, "source": "n478", "target": "n335" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e428", "weight": 20, "source": "n407", "target": "n283" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e429", "weight": 50, "source": "n294", "target": "n415" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e430", "weight": 55, "source": "n169", "target": "n575" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e431", "weight": 93, "source": "n435", "target": "n185" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e432", "weight": 29, "source": "n175", "target": "n222" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e433", "weight": 40, "source": "n542", "target": "n210" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e434", "weight": 88, "source": "n245", "target": "n379" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e435", "weight": 13, "source": "n377", "target": "n457" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e436", "weight": 20, "source": "n147", "target": "n404" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e437", "weight": 6, "source": "n531", "target": "n481" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e438", "weight": 69, "source": "n535", "target": "n587" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e439", "weight": 69, "source": "n389", "target": "n488" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e440", "weight": 77, "source": "n437", "target": "n275" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e441", "weight": 32, "source": "n343", "target": "n394" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e442", "weight": 28, "source": "n590", "target": "n136" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e443", "weight": 66, "source": "n552", "target": "n179" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e444", "weight": 99, "source": "n450", "target": "n211" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e445", "weight": 6, "source": "n487", "target": "n157" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e446", "weight": 77, "source": "n557", "target": "n135" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e447", "weight": 58, "source": "n265", "target": "n505" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e448", "weight": 63, "source": "n275", "target": "n363" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e449", "weight": 34, "source": "n327", "target": "n578" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e450", "weight": 12, "source": "n592", "target": "n285" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e451", "weight": 42, "source": "n487", "target": "n207" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e452", "weight": 99, "source": "n244", "target": "n104" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e453", "weight": 52, "source": "n428", "target": "n192" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e454", "weight": 84, "source": "n326", "target": "n524" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e455", "weight": 87, "source": "n349", "target": "n447" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e456", "weight": 23, "source": "n395", "target": "n305" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e457", "weight": 23, "source": "n172", "target": "n300" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e458", "weight": 62, "source": "n280", "target": "n356" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e459", "weight": 99, "source": "n152", "target": "n137" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e460", "weight": 58, "source": "n187", "target": "n245" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e461", "weight": 70, "source": "n431", "target": "n274" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e462", "weight": 51, "source": "n457", "target": "n465" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e463", "weight": 43, "source": "n312", "target": "n584" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e464", "weight": 19, "source": "n258", "target": "n400" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e465", "weight": 90, "source": "n288", "target": "n499" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e466", "weight": 2, "source": "n563", "target": "n381" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e467", "weight": 15, "source": "n154", "target": "n440" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e468", "weight": 44, "source": "n241", "target": "n483" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e469", "weight": 89, "source": "n288", "target": "n155" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e470", "weight": 50, "source": "n235", "target": "n485" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e471", "weight": 91, "source": "n538", "target": "n325" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e472", "weight": 59, "source": "n393", "target": "n445" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e473", "weight": 21, "source": "n402", "target": "n436" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e474", "weight": 38, "source": "n582", "target": "n130" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e475", "weight": 45, "source": "n503", "target": "n264" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e476", "weight": 27, "source": "n522", "target": "n183" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e477", "weight": 91, "source": "n253", "target": "n575" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e478", "weight": 58, "source": "n281", "target": "n353" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e479", "weight": 5, "source": "n429", "target": "n370" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e480", "weight": 68, "source": "n570", "target": "n305" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e481", "weight": 44, "source": "n329", "target": "n590" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e482", "weight": 50, "source": "n461", "target": "n425" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e483", "weight": 46, "source": "n568", "target": "n185" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e484", "weight": 55, "source": "n529", "target": "n217" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e485", "weight": 77, "source": "n289", "target": "n138" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e486", "weight": 46, "source": "n105", "target": "n387" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e487", "weight": 42, "source": "n433", "target": "n484" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e488", "weight": 99, "source": "n438", "target": "n266" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e489", "weight": 66, "source": "n468", "target": "n552" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e490", "weight": 45, "source": "n383", "target": "n282" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e491", "weight": 47, "source": "n454", "target": "n266" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e492", "weight": 85, "source": "n255", "target": "n500" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e493", "weight": 69, "source": "n512", "target": "n141" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e494", "weight": 69, "source": "n549", "target": "n460" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e495", "weight": 23, "source": "n199", "target": "n145" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e496", "weight": 13, "source": "n346", "target": "n338" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e497", "weight": 49, "source": "n550", "target": "n278" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e498", "weight": 14, "source": "n223", "target": "n266" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e499", "weight": 44, "source": "n406", "target": "n112" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e500", "weight": 58, "source": "n521", "target": "n568" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e501", "weight": 65, "source": "n215", "target": "n541" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e502", "weight": 46, "source": "n490", "target": "n351" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e503", "weight": 91, "source": "n324", "target": "n140" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e504", "weight": 29, "source": "n229", "target": "n330" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e505", "weight": 47, "source": "n356", "target": "n572" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e506", "weight": 56, "source": "n391", "target": "n308" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e507", "weight": 21, "source": "n141", "target": "n447" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e508", "weight": 90, "source": "n222", "target": "n134" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e509", "weight": 39, "source": "n232", "target": "n471" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e510", "weight": 68, "source": "n562", "target": "n321" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e511", "weight": 81, "source": "n246", "target": "n518" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e512", "weight": 26, "source": "n213", "target": "n523" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e513", "weight": 55, "source": "n150", "target": "n522" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e514", "weight": 11, "source": "n559", "target": "n409" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e515", "weight": 38, "source": "n205", "target": "n556" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e516", "weight": 55, "source": "n147", "target": "n459" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e517", "weight": 55, "source": "n532", "target": "n553" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e518", "weight": 92, "source": "n441", "target": "n267" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e519", "weight": 7, "source": "n267", "target": "n547" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e520", "weight": 19, "source": "n506", "target": "n148" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e521", "weight": 76, "source": "n149", "target": "n230" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e522", "weight": 82, "source": "n422", "target": "n199" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e523", "weight": 73, "source": "n447", "target": "n260" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e524", "weight": 47, "source": "n208", "target": "n323" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e525", "weight": 50, "source": "n400", "target": "n418" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e526", "weight": 47, "source": "n125", "target": "n243" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e527", "weight": 74, "source": "n335", "target": "n373" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e528", "weight": 72, "source": "n502", "target": "n480" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e529", "weight": 55, "source": "n498", "target": "n359" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e530", "weight": 43, "source": "n168", "target": "n136" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e531", "weight": 38, "source": "n233", "target": "n463" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e532", "weight": 99, "source": "n578", "target": "n178" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e533", "weight": 88, "source": "n542", "target": "n561" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e534", "weight": 19, "source": "n539", "target": "n531" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e535", "weight": 0, "source": "n516", "target": "n346" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e536", "weight": 79, "source": "n303", "target": "n518" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e537", "weight": 86, "source": "n362", "target": "n306" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e538", "weight": 91, "source": "n349", "target": "n251" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e539", "weight": 61, "source": "n422", "target": "n411" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e540", "weight": 31, "source": "n470", "target": "n288" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e541", "weight": 24, "source": "n473", "target": "n481" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e542", "weight": 8, "source": "n276", "target": "n329" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e543", "weight": 18, "source": "n232", "target": "n176" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e544", "weight": 69, "source": "n498", "target": "n377" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e545", "weight": 87, "source": "n444", "target": "n300" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e546", "weight": 72, "source": "n377", "target": "n448" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e547", "weight": 67, "source": "n157", "target": "n571" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e548", "weight": 18, "source": "n516", "target": "n473" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e549", "weight": 47, "source": "n233", "target": "n494" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e550", "weight": 76, "source": "n194", "target": "n125" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e551", "weight": 75, "source": "n464", "target": "n157" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e552", "weight": 6, "source": "n474", "target": "n578" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e553", "weight": 63, "source": "n377", "target": "n334" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e554", "weight": 75, "source": "n379", "target": "n377" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e555", "weight": 51, "source": "n378", "target": "n469" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e556", "weight": 69, "source": "n200", "target": "n434" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e557", "weight": 43, "source": "n549", "target": "n541" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e558", "weight": 76, "source": "n222", "target": "n454" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e559", "weight": 59, "source": "n254", "target": "n375" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e560", "weight": 51, "source": "n159", "target": "n249" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e561", "weight": 86, "source": "n145", "target": "n465" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e562", "weight": 33, "source": "n531", "target": "n452" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e563", "weight": 84, "source": "n347", "target": "n489" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e564", "weight": 50, "source": "n162", "target": "n491" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e565", "weight": 38, "source": "n302", "target": "n314" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e566", "weight": 4, "source": "n339", "target": "n381" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e567", "weight": 77, "source": "n360", "target": "n466" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e568", "weight": 68, "source": "n215", "target": "n569" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e569", "weight": 16, "source": "n289", "target": "n460" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e570", "weight": 92, "source": "n444", "target": "n478" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e571", "weight": 90, "source": "n258", "target": "n166" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e572", "weight": 6, "source": "n192", "target": "n506" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e573", "weight": 91, "source": "n370", "target": "n177" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e574", "weight": 8, "source": "n577", "target": "n426" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e575", "weight": 75, "source": "n429", "target": "n221" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e576", "weight": 34, "source": "n463", "target": "n361" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e577", "weight": 15, "source": "n485", "target": "n210" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e578", "weight": 61, "source": "n460", "target": "n197" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e579", "weight": 36, "source": "n569", "target": "n386" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e580", "weight": 16, "source": "n161", "target": "n167" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e581", "weight": 68, "source": "n508", "target": "n307" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e582", "weight": 3, "source": "n384", "target": "n504" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e583", "weight": 39, "source": "n428", "target": "n553" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e584", "weight": 31, "source": "n255", "target": "n354" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e585", "weight": 4, "source": "n322", "target": "n102" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e586", "weight": 24, "source": "n178", "target": "n332" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e587", "weight": 71, "source": "n132", "target": "n210" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e588", "weight": 63, "source": "n277", "target": "n375" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e589", "weight": 3, "source": "n262", "target": "n242" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e590", "weight": 99, "source": "n251", "target": "n391" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e591", "weight": 30, "source": "n338", "target": "n561" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e592", "weight": 13, "source": "n571", "target": "n442" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e593", "weight": 47, "source": "n407", "target": "n254" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e594", "weight": 51, "source": "n483", "target": "n345" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e595", "weight": 63, "source": "n231", "target": "n472" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e596", "weight": 16, "source": "n531", "target": "n587" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e597", "weight": 25, "source": "n107", "target": "n445" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e598", "weight": 99, "source": "n590", "target": "n266" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e599", "weight": 18, "source": "n204", "target": "n577" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e600", "weight": 76, "source": "n267", "target": "n532" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e601", "weight": 81, "source": "n197", "target": "n593" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e602", "weight": 64, "source": "n496", "target": "n536" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e603", "weight": 23, "source": "n311", "target": "n342" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e604", "weight": 69, "source": "n492", "target": "n472" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e605", "weight": 29, "source": "n475", "target": "n327" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e606", "weight": 38, "source": "n172", "target": "n480" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e607", "weight": 58, "source": "n454", "target": "n522" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e608", "weight": 84, "source": "n530", "target": "n443" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e609", "weight": 8, "source": "n365", "target": "n208" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e610", "weight": 73, "source": "n455", "target": "n436" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e611", "weight": 98, "source": "n459", "target": "n561" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e612", "weight": 75, "source": "n451", "target": "n273" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e613", "weight": 33, "source": "n538", "target": "n456" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e614", "weight": 81, "source": "n580", "target": "n494" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e615", "weight": 93, "source": "n395", "target": "n528" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e616", "weight": 4, "source": "n500", "target": "n523" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e617", "weight": 62, "source": "n485", "target": "n247" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e618", "weight": 62, "source": "n317", "target": "n584" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e619", "weight": 45, "source": "n105", "target": "n425" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e620", "weight": 13, "source": "n237", "target": "n598" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e621", "weight": 44, "source": "n558", "target": "n423" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e622", "weight": 9, "source": "n489", "target": "n316" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e623", "weight": 98, "source": "n114", "target": "n120" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e624", "weight": 89, "source": "n392", "target": "n167" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e625", "weight": 69, "source": "n304", "target": "n507" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e626", "weight": 30, "source": "n424", "target": "n330" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e627", "weight": 3, "source": "n222", "target": "n122" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e628", "weight": 54, "source": "n435", "target": "n156" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e629", "weight": 81, "source": "n492", "target": "n111" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e630", "weight": 63, "source": "n513", "target": "n227" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e631", "weight": 25, "source": "n113", "target": "n303" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e632", "weight": 38, "source": "n385", "target": "n390" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e633", "weight": 6, "source": "n434", "target": "n484" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e634", "weight": 64, "source": "n413", "target": "n138" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e635", "weight": 7, "source": "n193", "target": "n325" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e636", "weight": 64, "source": "n544", "target": "n515" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e637", "weight": 23, "source": "n530", "target": "n584" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e638", "weight": 69, "source": "n241", "target": "n129" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e639", "weight": 56, "source": "n260", "target": "n126" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e640", "weight": 59, "source": "n589", "target": "n388" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e641", "weight": 68, "source": "n353", "target": "n348" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e642", "weight": 47, "source": "n391", "target": "n378" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e643", "weight": 72, "source": "n273", "target": "n485" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e644", "weight": 10, "source": "n511", "target": "n387" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e645", "weight": 81, "source": "n539", "target": "n560" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e646", "weight": 43, "source": "n100", "target": "n586" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e647", "weight": 16, "source": "n491", "target": "n415" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e648", "weight": 79, "source": "n320", "target": "n296" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e649", "weight": 83, "source": "n289", "target": "n304" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e650", "weight": 34, "source": "n430", "target": "n206" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e651", "weight": 35, "source": "n170", "target": "n329" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e652", "weight": 0, "source": "n501", "target": "n143" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e653", "weight": 1, "source": "n505", "target": "n555" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e654", "weight": 40, "source": "n543", "target": "n444" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e655", "weight": 48, "source": "n446", "target": "n395" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e656", "weight": 16, "source": "n518", "target": "n567" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e657", "weight": 16, "source": "n313", "target": "n368" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e658", "weight": 14, "source": "n575", "target": "n568" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e659", "weight": 81, "source": "n144", "target": "n599" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e660", "weight": 13, "source": "n536", "target": "n282" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e661", "weight": 13, "source": "n571", "target": "n217" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e662", "weight": 12, "source": "n369", "target": "n128" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e663", "weight": 5, "source": "n436", "target": "n451" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e664", "weight": 36, "source": "n112", "target": "n133" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e665", "weight": 36, "source": "n411", "target": "n113" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e666", "weight": 17, "source": "n499", "target": "n419" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e667", "weight": 89, "source": "n339", "target": "n397" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e668", "weight": 80, "source": "n168", "target": "n572" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e669", "weight": 11, "source": "n408", "target": "n297" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e670", "weight": 91, "source": "n474", "target": "n117" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e671", "weight": 95, "source": "n507", "target": "n151" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e672", "weight": 15, "source": "n588", "target": "n328" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e673", "weight": 47, "source": "n521", "target": "n429" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e674", "weight": 16, "source": "n111", "target": "n510" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e675", "weight": 94, "source": "n133", "target": "n217" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e676", "weight": 64, "source": "n531", "target": "n522" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e677", "weight": 67, "source": "n561", "target": "n430" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e678", "weight": 42, "source": "n165", "target": "n241" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e679", "weight": 67, "source": "n201", "target": "n574" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e680", "weight": 52, "source": "n108", "target": "n199" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e681", "weight": 11, "source": "n389", "target": "n427" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e682", "weight": 27, "source": "n104", "target": "n429" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e683", "weight": 64, "source": "n213", "target": "n373" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e684", "weight": 56, "source": "n228", "target": "n437" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e685", "weight": 30, "source": "n257", "target": "n372" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e686", "weight": 93, "source": "n499", "target": "n480" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e687", "weight": 29, "source": "n468", "target": "n418" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e688", "weight": 57, "source": "n147", "target": "n553" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e689", "weight": 43, "source": "n588", "target": "n228" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e690", "weight": 75, "source": "n398", "target": "n172" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e691", "weight": 65, "source": "n277", "target": "n105" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e692", "weight": 84, "source": "n125", "target": "n457" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e693", "weight": 96, "source": "n495", "target": "n444" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e694", "weight": 92, "source": "n406", "target": "n500" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e695", "weight": 91, "source": "n310", "target": "n453" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e696", "weight": 50, "source": "n440", "target": "n383" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e697", "weight": 53, "source": "n577", "target": "n533" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e698", "weight": 54, "source": "n583", "target": "n170" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e699", "weight": 100, "source": "n154", "target": "n366" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e700", "weight": 62, "source": "n109", "target": "n340" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e701", "weight": 46, "source": "n439", "target": "n123" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e702", "weight": 68, "source": "n196", "target": "n357" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e703", "weight": 13, "source": "n141", "target": "n274" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e704", "weight": 35, "source": "n360", "target": "n446" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e705", "weight": 49, "source": "n392", "target": "n307" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e706", "weight": 7, "source": "n219", "target": "n272" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e707", "weight": 8, "source": "n246", "target": "n167" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e708", "weight": 2, "source": "n552", "target": "n517" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e709", "weight": 1, "source": "n462", "target": "n330" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e710", "weight": 52, "source": "n409", "target": "n157" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e711", "weight": 24, "source": "n327", "target": "n309" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e712", "weight": 75, "source": "n512", "target": "n446" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e713", "weight": 5, "source": "n350", "target": "n342" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e714", "weight": 81, "source": "n319", "target": "n136" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e715", "weight": 77, "source": "n492", "target": "n105" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e716", "weight": 96, "source": "n158", "target": "n393" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e717", "weight": 65, "source": "n492", "target": "n146" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e718", "weight": 60, "source": "n413", "target": "n202" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e719", "weight": 1, "source": "n263", "target": "n496" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e720", "weight": 62, "source": "n164", "target": "n334" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e721", "weight": 14, "source": "n366", "target": "n422" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e722", "weight": 96, "source": "n343", "target": "n200" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e723", "weight": 63, "source": "n109", "target": "n118" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e724", "weight": 65, "source": "n123", "target": "n357" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e725", "weight": 83, "source": "n537", "target": "n257" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e726", "weight": 35, "source": "n454", "target": "n327" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e727", "weight": 91, "source": "n490", "target": "n290" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e728", "weight": 56, "source": "n284", "target": "n455" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e729", "weight": 36, "source": "n122", "target": "n324" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e730", "weight": 62, "source": "n198", "target": "n398" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e731", "weight": 99, "source": "n104", "target": "n366" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e732", "weight": 79, "source": "n576", "target": "n143" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e733", "weight": 54, "source": "n585", "target": "n374" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e734", "weight": 95, "source": "n291", "target": "n461" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e735", "weight": 48, "source": "n128", "target": "n337" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e736", "weight": 35, "source": "n528", "target": "n463" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e737", "weight": 20, "source": "n172", "target": "n541" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e738", "weight": 78, "source": "n361", "target": "n379" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e739", "weight": 77, "source": "n435", "target": "n106" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e740", "weight": 88, "source": "n298", "target": "n533" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e741", "weight": 51, "source": "n230", "target": "n580" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e742", "weight": 75, "source": "n131", "target": "n241" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e743", "weight": 20, "source": "n262", "target": "n562" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e744", "weight": 75, "source": "n106", "target": "n588" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e745", "weight": 55, "source": "n294", "target": "n506" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e746", "weight": 33, "source": "n495", "target": "n217" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e747", "weight": 50, "source": "n530", "target": "n511" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e748", "weight": 84, "source": "n511", "target": "n437" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e749", "weight": 45, "source": "n594", "target": "n131" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e750", "weight": 52, "source": "n180", "target": "n555" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e751", "weight": 55, "source": "n435", "target": "n416" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e752", "weight": 44, "source": "n330", "target": "n129" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e753", "weight": 77, "source": "n447", "target": "n401" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e754", "weight": 60, "source": "n474", "target": "n534" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e755", "weight": 99, "source": "n226", "target": "n317" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e756", "weight": 58, "source": "n280", "target": "n148" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e757", "weight": 4, "source": "n120", "target": "n301" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e758", "weight": 24, "source": "n432", "target": "n200" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e759", "weight": 83, "source": "n562", "target": "n586" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e760", "weight": 41, "source": "n383", "target": "n430" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e761", "weight": 8, "source": "n444", "target": "n332" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e762", "weight": 91, "source": "n415", "target": "n279" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e763", "weight": 85, "source": "n195", "target": "n258" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e764", "weight": 94, "source": "n300", "target": "n360" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e765", "weight": 15, "source": "n506", "target": "n232" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e766", "weight": 90, "source": "n326", "target": "n298" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e767", "weight": 4, "source": "n450", "target": "n237" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e768", "weight": 7, "source": "n306", "target": "n323" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e769", "weight": 96, "source": "n305", "target": "n481" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e770", "weight": 55, "source": "n283", "target": "n115" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e771", "weight": 67, "source": "n480", "target": "n108" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e772", "weight": 98, "source": "n363", "target": "n346" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e773", "weight": 26, "source": "n292", "target": "n393" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e774", "weight": 96, "source": "n110", "target": "n137" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e775", "weight": 19, "source": "n435", "target": "n341" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e776", "weight": 2, "source": "n307", "target": "n337" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e777", "weight": 97, "source": "n366", "target": "n532" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e778", "weight": 54, "source": "n189", "target": "n524" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e779", "weight": 59, "source": "n189", "target": "n297" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e780", "weight": 81, "source": "n351", "target": "n584" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e781", "weight": 45, "source": "n447", "target": "n419" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e782", "weight": 25, "source": "n596", "target": "n427" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e783", "weight": 17, "source": "n424", "target": "n116" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e784", "weight": 100, "source": "n178", "target": "n398" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e785", "weight": 54, "source": "n539", "target": "n555" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e786", "weight": 77, "source": "n358", "target": "n151" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e787", "weight": 9, "source": "n392", "target": "n127" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e788", "weight": 35, "source": "n556", "target": "n371" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e789", "weight": 77, "source": "n113", "target": "n332" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e790", "weight": 8, "source": "n544", "target": "n229" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e791", "weight": 21, "source": "n399", "target": "n440" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e792", "weight": 18, "source": "n346", "target": "n110" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e793", "weight": 78, "source": "n162", "target": "n564" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e794", "weight": 94, "source": "n411", "target": "n597" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e795", "weight": 90, "source": "n147", "target": "n593" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e796", "weight": 70, "source": "n310", "target": "n211" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e797", "weight": 64, "source": "n285", "target": "n350" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e798", "weight": 50, "source": "n518", "target": "n422" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e799", "weight": 16, "source": "n403", "target": "n255" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e800", "weight": 77, "source": "n376", "target": "n222" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e801", "weight": 67, "source": "n216", "target": "n115" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e802", "weight": 1, "source": "n198", "target": "n592" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e803", "weight": 91, "source": "n191", "target": "n118" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e804", "weight": 89, "source": "n596", "target": "n531" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e805", "weight": 51, "source": "n205", "target": "n114" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e806", "weight": 35, "source": "n536", "target": "n222" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e807", "weight": 72, "source": "n389", "target": "n455" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e808", "weight": 16, "source": "n154", "target": "n408" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e809", "weight": 0, "source": "n370", "target": "n422" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e810", "weight": 55, "source": "n486", "target": "n161" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e811", "weight": 100, "source": "n588", "target": "n409" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e812", "weight": 34, "source": "n597", "target": "n175" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e813", "weight": 59, "source": "n570", "target": "n262" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e814", "weight": 65, "source": "n312", "target": "n572" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e815", "weight": 61, "source": "n257", "target": "n546" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e816", "weight": 44, "source": "n141", "target": "n422" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e817", "weight": 99, "source": "n287", "target": "n357" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e818", "weight": 17, "source": "n524", "target": "n497" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e819", "weight": 44, "source": "n307", "target": "n275" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e820", "weight": 87, "source": "n137", "target": "n426" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e821", "weight": 69, "source": "n446", "target": "n132" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e822", "weight": 10, "source": "n472", "target": "n314" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e823", "weight": 70, "source": "n217", "target": "n543" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e824", "weight": 88, "source": "n487", "target": "n540" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e825", "weight": 29, "source": "n598", "target": "n300" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e826", "weight": 47, "source": "n575", "target": "n129" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e827", "weight": 18, "source": "n534", "target": "n570" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e828", "weight": 19, "source": "n278", "target": "n490" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e829", "weight": 26, "source": "n434", "target": "n443" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e830", "weight": 52, "source": "n115", "target": "n596" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e831", "weight": 60, "source": "n502", "target": "n292" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e832", "weight": 42, "source": "n436", "target": "n215" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e833", "weight": 96, "source": "n289", "target": "n297" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e834", "weight": 40, "source": "n414", "target": "n302" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e835", "weight": 80, "source": "n180", "target": "n206" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e836", "weight": 37, "source": "n110", "target": "n583" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e837", "weight": 31, "source": "n593", "target": "n201" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e838", "weight": 7, "source": "n243", "target": "n328" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e839", "weight": 42, "source": "n307", "target": "n150" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e840", "weight": 49, "source": "n218", "target": "n442" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e841", "weight": 38, "source": "n340", "target": "n248" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e842", "weight": 94, "source": "n505", "target": "n479" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e843", "weight": 95, "source": "n330", "target": "n261" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e844", "weight": 4, "source": "n393", "target": "n128" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e845", "weight": 62, "source": "n467", "target": "n359" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e846", "weight": 41, "source": "n533", "target": "n455" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e847", "weight": 35, "source": "n224", "target": "n116" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e848", "weight": 43, "source": "n481", "target": "n279" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e849", "weight": 7, "source": "n592", "target": "n437" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e850", "weight": 19, "source": "n463", "target": "n354" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e851", "weight": 89, "source": "n292", "target": "n572" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e852", "weight": 69, "source": "n157", "target": "n539" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e853", "weight": 8, "source": "n489", "target": "n254" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e854", "weight": 42, "source": "n584", "target": "n574" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e855", "weight": 38, "source": "n337", "target": "n416" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e856", "weight": 37, "source": "n364", "target": "n121" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e857", "weight": 22, "source": "n415", "target": "n295" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e858", "weight": 5, "source": "n201", "target": "n391" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e859", "weight": 70, "source": "n480", "target": "n463" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e860", "weight": 53, "source": "n284", "target": "n337" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e861", "weight": 11, "source": "n152", "target": "n208" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e862", "weight": 9, "source": "n425", "target": "n247" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e863", "weight": 77, "source": "n332", "target": "n339" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e864", "weight": 25, "source": "n342", "target": "n275" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e865", "weight": 2, "source": "n525", "target": "n455" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e866", "weight": 92, "source": "n392", "target": "n272" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e867", "weight": 20, "source": "n315", "target": "n586" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e868", "weight": 5, "source": "n173", "target": "n111" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e869", "weight": 72, "source": "n441", "target": "n202" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e870", "weight": 44, "source": "n392", "target": "n530" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e871", "weight": 50, "source": "n336", "target": "n132" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e872", "weight": 100, "source": "n570", "target": "n329" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e873", "weight": 80, "source": "n206", "target": "n364" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e874", "weight": 33, "source": "n492", "target": "n551" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e875", "weight": 69, "source": "n446", "target": "n520" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e876", "weight": 99, "source": "n545", "target": "n129" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e877", "weight": 16, "source": "n167", "target": "n380" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e878", "weight": 18, "source": "n273", "target": "n419" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e879", "weight": 41, "source": "n597", "target": "n525" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e880", "weight": 78, "source": "n108", "target": "n216" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e881", "weight": 90, "source": "n341", "target": "n416" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e882", "weight": 54, "source": "n320", "target": "n146" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e883", "weight": 53, "source": "n434", "target": "n588" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e884", "weight": 15, "source": "n106", "target": "n208" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e885", "weight": 86, "source": "n434", "target": "n408" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e886", "weight": 24, "source": "n585", "target": "n120" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e887", "weight": 55, "source": "n200", "target": "n467" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e888", "weight": 70, "source": "n280", "target": "n473" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e889", "weight": 10, "source": "n142", "target": "n211" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e890", "weight": 62, "source": "n287", "target": "n465" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e891", "weight": 91, "source": "n319", "target": "n195" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e892", "weight": 63, "source": "n544", "target": "n351" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e893", "weight": 50, "source": "n152", "target": "n151" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e894", "weight": 30, "source": "n216", "target": "n578" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e895", "weight": 47, "source": "n282", "target": "n337" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e896", "weight": 94, "source": "n203", "target": "n497" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e897", "weight": 46, "source": "n167", "target": "n537" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e898", "weight": 47, "source": "n527", "target": "n309" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e899", "weight": 12, "source": "n302", "target": "n546" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e900", "weight": 40, "source": "n468", "target": "n501" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e901", "weight": 38, "source": "n363", "target": "n253" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e902", "weight": 12, "source": "n466", "target": "n202" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e903", "weight": 85, "source": "n244", "target": "n248" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e904", "weight": 76, "source": "n421", "target": "n587" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e905", "weight": 99, "source": "n331", "target": "n351" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e906", "weight": 81, "source": "n109", "target": "n295" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e907", "weight": 42, "source": "n129", "target": "n393" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e908", "weight": 31, "source": "n209", "target": "n334" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e909", "weight": 83, "source": "n497", "target": "n157" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e910", "weight": 47, "source": "n437", "target": "n517" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e911", "weight": 43, "source": "n298", "target": "n177" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e912", "weight": 57, "source": "n416", "target": "n398" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e913", "weight": 40, "source": "n295", "target": "n580" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e914", "weight": 49, "source": "n595", "target": "n295" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e915", "weight": 6, "source": "n430", "target": "n183" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e916", "weight": 59, "source": "n405", "target": "n254" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e917", "weight": 36, "source": "n151", "target": "n283" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e918", "weight": 45, "source": "n136", "target": "n121" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e919", "weight": 7, "source": "n176", "target": "n235" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e920", "weight": 83, "source": "n352", "target": "n442" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e921", "weight": 85, "source": "n399", "target": "n573" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e922", "weight": 98, "source": "n201", "target": "n507" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e923", "weight": 34, "source": "n313", "target": "n465" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e924", "weight": 41, "source": "n269", "target": "n242" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e925", "weight": 89, "source": "n238", "target": "n574" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e926", "weight": 12, "source": "n330", "target": "n351" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e927", "weight": 78, "source": "n525", "target": "n130" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e928", "weight": 86, "source": "n463", "target": "n193" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e929", "weight": 48, "source": "n559", "target": "n359" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e930", "weight": 74, "source": "n513", "target": "n405" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e931", "weight": 80, "source": "n212", "target": "n465" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e932", "weight": 98, "source": "n272", "target": "n422" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e933", "weight": 63, "source": "n135", "target": "n382" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e934", "weight": 67, "source": "n412", "target": "n251" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e935", "weight": 87, "source": "n471", "target": "n408" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e936", "weight": 73, "source": "n571", "target": "n362" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e937", "weight": 56, "source": "n372", "target": "n375" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e938", "weight": 49, "source": "n405", "target": "n428" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e939", "weight": 85, "source": "n285", "target": "n523" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e940", "weight": 4, "source": "n331", "target": "n219" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e941", "weight": 44, "source": "n189", "target": "n329" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e942", "weight": 86, "source": "n401", "target": "n572" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e943", "weight": 14, "source": "n133", "target": "n278" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e944", "weight": 58, "source": "n109", "target": "n571" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e945", "weight": 5, "source": "n282", "target": "n464" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e946", "weight": 11, "source": "n561", "target": "n546" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e947", "weight": 44, "source": "n439", "target": "n429" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e948", "weight": 80, "source": "n287", "target": "n365" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e949", "weight": 46, "source": "n581", "target": "n512" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e950", "weight": 31, "source": "n525", "target": "n588" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e951", "weight": 89, "source": "n145", "target": "n518" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e952", "weight": 44, "source": "n579", "target": "n278" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e953", "weight": 83, "source": "n290", "target": "n394" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e954", "weight": 83, "source": "n421", "target": "n265" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e955", "weight": 24, "source": "n559", "target": "n157" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e956", "weight": 78, "source": "n179", "target": "n217" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e957", "weight": 90, "source": "n338", "target": "n376" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e958", "weight": 35, "source": "n586", "target": "n283" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e959", "weight": 93, "source": "n409", "target": "n377" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e960", "weight": 54, "source": "n438", "target": "n477" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e961", "weight": 32, "source": "n281", "target": "n375" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e962", "weight": 32, "source": "n393", "target": "n387" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e963", "weight": 68, "source": "n458", "target": "n333" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e964", "weight": 94, "source": "n444", "target": "n365" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e965", "weight": 76, "source": "n550", "target": "n446" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e966", "weight": 42, "source": "n370", "target": "n263" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e967", "weight": 85, "source": "n573", "target": "n188" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e968", "weight": 80, "source": "n470", "target": "n216" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e969", "weight": 66, "source": "n367", "target": "n296" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e970", "weight": 88, "source": "n509", "target": "n277" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e971", "weight": 57, "source": "n109", "target": "n416" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e972", "weight": 72, "source": "n256", "target": "n117" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e973", "weight": 82, "source": "n517", "target": "n127" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e974", "weight": 67, "source": "n220", "target": "n508" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e975", "weight": 44, "source": "n300", "target": "n363" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e976", "weight": 30, "source": "n486", "target": "n408" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e977", "weight": 90, "source": "n220", "target": "n496" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e978", "weight": 60, "source": "n359", "target": "n491" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e979", "weight": 72, "source": "n418", "target": "n297" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e980", "weight": 43, "source": "n284", "target": "n121" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e981", "weight": 46, "source": "n497", "target": "n414" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e982", "weight": 61, "source": "n324", "target": "n501" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e983", "weight": 84, "source": "n206", "target": "n334" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e984", "weight": 80, "source": "n189", "target": "n517" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e985", "weight": 34, "source": "n235", "target": "n310" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e986", "weight": 48, "source": "n341", "target": "n255" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e987", "weight": 57, "source": "n206", "target": "n278" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e988", "weight": 37, "source": "n295", "target": "n412" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e989", "weight": 77, "source": "n478", "target": "n461" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e990", "weight": 0, "source": "n253", "target": "n294" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e991", "weight": 98, "source": "n328", "target": "n387" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e992", "weight": 58, "source": "n279", "target": "n523" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e993", "weight": 6, "source": "n225", "target": "n506" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e994", "weight": 97, "source": "n185", "target": "n321" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e995", "weight": 43, "source": "n429", "target": "n447" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e996", "weight": 52, "source": "n306", "target": "n385" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e997", "weight": 88, "source": "n127", "target": "n408" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e998", "weight": 89, "source": "n314", "target": "n257" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e999", "weight": 85, "source": "n558", "target": "n245" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1000", "weight": 79, "source": "n322", "target": "n342" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1001", "weight": 67, "source": "n549", "target": "n161" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1002", "weight": 75, "source": "n471", "target": "n415" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1003", "weight": 63, "source": "n251", "target": "n566" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1004", "weight": 83, "source": "n252", "target": "n209" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1005", "weight": 49, "source": "n587", "target": "n291" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1006", "weight": 35, "source": "n403", "target": "n421" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1007", "weight": 69, "source": "n376", "target": "n349" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1008", "weight": 61, "source": "n416", "target": "n341" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1009", "weight": 74, "source": "n227", "target": "n113" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1010", "weight": 40, "source": "n576", "target": "n415" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1011", "weight": 88, "source": "n154", "target": "n369" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1012", "weight": 35, "source": "n492", "target": "n488" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1013", "weight": 46, "source": "n393", "target": "n182" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1014", "weight": 79, "source": "n306", "target": "n345" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1015", "weight": 60, "source": "n475", "target": "n250" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1016", "weight": 83, "source": "n172", "target": "n336" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1017", "weight": 49, "source": "n501", "target": "n580" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1018", "weight": 66, "source": "n140", "target": "n560" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1019", "weight": 51, "source": "n249", "target": "n347" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1020", "weight": 11, "source": "n223", "target": "n109" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1021", "weight": 63, "source": "n175", "target": "n226" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1022", "weight": 50, "source": "n414", "target": "n214" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1023", "weight": 49, "source": "n119", "target": "n596" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1024", "weight": 58, "source": "n225", "target": "n487" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1025", "weight": 64, "source": "n438", "target": "n457" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1026", "weight": 54, "source": "n278", "target": "n322" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1027", "weight": 76, "source": "n186", "target": "n391" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1028", "weight": 49, "source": "n334", "target": "n163" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1029", "weight": 93, "source": "n143", "target": "n493" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1030", "weight": 87, "source": "n427", "target": "n320" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1031", "weight": 8, "source": "n173", "target": "n134" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1032", "weight": 64, "source": "n159", "target": "n569" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1033", "weight": 69, "source": "n464", "target": "n570" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1034", "weight": 30, "source": "n124", "target": "n432" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1035", "weight": 78, "source": "n160", "target": "n477" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1036", "weight": 82, "source": "n443", "target": "n404" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1037", "weight": 96, "source": "n568", "target": "n356" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1038", "weight": 31, "source": "n247", "target": "n389" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1039", "weight": 18, "source": "n373", "target": "n152" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1040", "weight": 31, "source": "n168", "target": "n470" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1041", "weight": 83, "source": "n568", "target": "n232" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1042", "weight": 10, "source": "n305", "target": "n218" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1043", "weight": 76, "source": "n408", "target": "n524" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1044", "weight": 19, "source": "n549", "target": "n598" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1045", "weight": 91, "source": "n115", "target": "n397" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1046", "weight": 0, "source": "n357", "target": "n459" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1047", "weight": 39, "source": "n563", "target": "n284" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1048", "weight": 97, "source": "n288", "target": "n449" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1049", "weight": 18, "source": "n384", "target": "n104" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1050", "weight": 36, "source": "n559", "target": "n419" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1051", "weight": 21, "source": "n465", "target": "n334" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1052", "weight": 26, "source": "n407", "target": "n171" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1053", "weight": 10, "source": "n395", "target": "n566" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1054", "weight": 67, "source": "n558", "target": "n388" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1055", "weight": 26, "source": "n246", "target": "n292" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1056", "weight": 61, "source": "n157", "target": "n295" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1057", "weight": 56, "source": "n487", "target": "n260" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1058", "weight": 57, "source": "n465", "target": "n337" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1059", "weight": 21, "source": "n135", "target": "n419" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1060", "weight": 24, "source": "n426", "target": "n319" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1061", "weight": 74, "source": "n473", "target": "n378" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1062", "weight": 74, "source": "n410", "target": "n565" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1063", "weight": 38, "source": "n151", "target": "n596" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1064", "weight": 49, "source": "n477", "target": "n216" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1065", "weight": 99, "source": "n566", "target": "n300" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1066", "weight": 39, "source": "n151", "target": "n478" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1067", "weight": 100, "source": "n318", "target": "n295" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1068", "weight": 31, "source": "n552", "target": "n120" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1069", "weight": 94, "source": "n205", "target": "n491" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1070", "weight": 49, "source": "n560", "target": "n326" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1071", "weight": 90, "source": "n583", "target": "n278" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1072", "weight": 60, "source": "n382", "target": "n300" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1073", "weight": 22, "source": "n438", "target": "n587" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1074", "weight": 97, "source": "n384", "target": "n439" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1075", "weight": 29, "source": "n315", "target": "n431" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1076", "weight": 58, "source": "n536", "target": "n485" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1077", "weight": 63, "source": "n538", "target": "n578" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1078", "weight": 81, "source": "n345", "target": "n470" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1079", "weight": 38, "source": "n252", "target": "n353" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1080", "weight": 46, "source": "n144", "target": "n560" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1081", "weight": 32, "source": "n158", "target": "n223" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1082", "weight": 31, "source": "n530", "target": "n204" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1083", "weight": 26, "source": "n116", "target": "n377" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1084", "weight": 65, "source": "n461", "target": "n498" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1085", "weight": 20, "source": "n184", "target": "n106" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1086", "weight": 5, "source": "n109", "target": "n445" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1087", "weight": 69, "source": "n294", "target": "n185" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1088", "weight": 80, "source": "n129", "target": "n471" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1089", "weight": 38, "source": "n280", "target": "n509" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1090", "weight": 67, "source": "n323", "target": "n123" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1091", "weight": 18, "source": "n433", "target": "n588" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1092", "weight": 7, "source": "n220", "target": "n189" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1093", "weight": 18, "source": "n418", "target": "n413" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1094", "weight": 73, "source": "n307", "target": "n202" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1095", "weight": 24, "source": "n486", "target": "n270" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1096", "weight": 67, "source": "n459", "target": "n523" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1097", "weight": 83, "source": "n348", "target": "n232" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1098", "weight": 33, "source": "n174", "target": "n273" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1099", "weight": 47, "source": "n300", "target": "n127" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1100", "weight": 60, "source": "n331", "target": "n383" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1101", "weight": 18, "source": "n189", "target": "n197" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1102", "weight": 56, "source": "n432", "target": "n498" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1103", "weight": 66, "source": "n167", "target": "n463" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1104", "weight": 18, "source": "n177", "target": "n349" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1105", "weight": 62, "source": "n552", "target": "n414" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1106", "weight": 80, "source": "n582", "target": "n457" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1107", "weight": 79, "source": "n184", "target": "n160" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1108", "weight": 24, "source": "n260", "target": "n153" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1109", "weight": 99, "source": "n400", "target": "n159" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1110", "weight": 17, "source": "n148", "target": "n447" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1111", "weight": 79, "source": "n193", "target": "n141" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1112", "weight": 5, "source": "n457", "target": "n545" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1113", "weight": 99, "source": "n263", "target": "n206" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1114", "weight": 72, "source": "n168", "target": "n236" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1115", "weight": 92, "source": "n150", "target": "n524" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1116", "weight": 73, "source": "n210", "target": "n539" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1117", "weight": 66, "source": "n366", "target": "n331" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1118", "weight": 96, "source": "n576", "target": "n498" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1119", "weight": 54, "source": "n361", "target": "n437" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1120", "weight": 58, "source": "n370", "target": "n381" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1121", "weight": 27, "source": "n107", "target": "n309" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1122", "weight": 49, "source": "n200", "target": "n453" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1123", "weight": 45, "source": "n181", "target": "n519" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1124", "weight": 3, "source": "n161", "target": "n427" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1125", "weight": 10, "source": "n482", "target": "n496" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1126", "weight": 54, "source": "n418", "target": "n469" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1127", "weight": 3, "source": "n392", "target": "n454" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1128", "weight": 35, "source": "n383", "target": "n594" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1129", "weight": 62, "source": "n598", "target": "n266" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1130", "weight": 2, "source": "n522", "target": "n240" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1131", "weight": 42, "source": "n138", "target": "n459" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1132", "weight": 96, "source": "n292", "target": "n356" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1133", "weight": 14, "source": "n101", "target": "n343" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1134", "weight": 5, "source": "n208", "target": "n558" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1135", "weight": 30, "source": "n111", "target": "n553" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1136", "weight": 24, "source": "n442", "target": "n286" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1137", "weight": 44, "source": "n149", "target": "n186" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1138", "weight": 12, "source": "n583", "target": "n591" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1139", "weight": 30, "source": "n289", "target": "n442" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1140", "weight": 6, "source": "n285", "target": "n567" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1141", "weight": 6, "source": "n348", "target": "n249" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1142", "weight": 45, "source": "n461", "target": "n538" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1143", "weight": 80, "source": "n293", "target": "n135" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1144", "weight": 87, "source": "n416", "target": "n325" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1145", "weight": 16, "source": "n558", "target": "n139" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1146", "weight": 73, "source": "n534", "target": "n398" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1147", "weight": 90, "source": "n478", "target": "n460" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1148", "weight": 50, "source": "n394", "target": "n340" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1149", "weight": 99, "source": "n261", "target": "n420" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1150", "weight": 35, "source": "n545", "target": "n401" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1151", "weight": 98, "source": "n464", "target": "n285" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1152", "weight": 69, "source": "n171", "target": "n394" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1153", "weight": 51, "source": "n128", "target": "n495" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1154", "weight": 63, "source": "n534", "target": "n138" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1155", "weight": 72, "source": "n182", "target": "n162" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1156", "weight": 33, "source": "n541", "target": "n472" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1157", "weight": 64, "source": "n477", "target": "n439" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1158", "weight": 76, "source": "n472", "target": "n589" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1159", "weight": 73, "source": "n455", "target": "n286" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1160", "weight": 42, "source": "n290", "target": "n155" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1161", "weight": 69, "source": "n382", "target": "n126" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1162", "weight": 96, "source": "n253", "target": "n441" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1163", "weight": 45, "source": "n311", "target": "n306" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1164", "weight": 65, "source": "n370", "target": "n428" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1165", "weight": 61, "source": "n283", "target": "n283" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1166", "weight": 68, "source": "n124", "target": "n548" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1167", "weight": 31, "source": "n208", "target": "n148" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1168", "weight": 77, "source": "n504", "target": "n256" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1169", "weight": 88, "source": "n330", "target": "n404" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1170", "weight": 73, "source": "n431", "target": "n591" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1171", "weight": 32, "source": "n236", "target": "n143" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1172", "weight": 54, "source": "n439", "target": "n451" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1173", "weight": 26, "source": "n342", "target": "n549" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1174", "weight": 76, "source": "n159", "target": "n201" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1175", "weight": 15, "source": "n406", "target": "n432" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1176", "weight": 46, "source": "n352", "target": "n122" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1177", "weight": 42, "source": "n557", "target": "n455" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1178", "weight": 64, "source": "n214", "target": "n300" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1179", "weight": 53, "source": "n296", "target": "n208" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1180", "weight": 94, "source": "n282", "target": "n521" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1181", "weight": 89, "source": "n413", "target": "n581" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1182", "weight": 26, "source": "n187", "target": "n474" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1183", "weight": 51, "source": "n349", "target": "n493" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1184", "weight": 89, "source": "n134", "target": "n145" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1185", "weight": 10, "source": "n304", "target": "n127" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1186", "weight": 36, "source": "n280", "target": "n363" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1187", "weight": 57, "source": "n183", "target": "n240" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1188", "weight": 78, "source": "n568", "target": "n552" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1189", "weight": 25, "source": "n158", "target": "n367" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1190", "weight": 89, "source": "n593", "target": "n370" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1191", "weight": 94, "source": "n323", "target": "n427" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1192", "weight": 92, "source": "n333", "target": "n199" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1193", "weight": 58, "source": "n405", "target": "n325" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1194", "weight": 71, "source": "n127", "target": "n279" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1195", "weight": 72, "source": "n473", "target": "n308" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1196", "weight": 2, "source": "n156", "target": "n539" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1197", "weight": 35, "source": "n555", "target": "n318" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1198", "weight": 64, "source": "n392", "target": "n521" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" }, { "data": { "id": "e1199", "weight": 78, "source": "n160", "target": "n567" }, "position": { }, "group": "edges", "removed": false, "selected": false, "selectable": true, "locked": false, "grabbed": false, "grabbable": true, "classes": "" } ] ================================================ FILE: snippets/images.js ================================================ yourDiv.style.left = 0; yourDiv.style.top = 0; yourDiv.style.width = "100%"; yourDiv.style.height = "100%"; yourDiv.style.position = "absolute"; var cytoscape = require("cytoscape"); var cy = cytoscape({ container: yourDiv, style: cytoscape.stylesheet() .selector('node') .style({ 'height': 80, 'width': 80, 'background-fit': 'cover', 'border-color': '#000', 'border-width': 3, 'border-opacity': 0.5 }) .selector('.eating') .style({ 'border-color': 'red' }) .selector('.eater') .style({ 'border-width': 9 }) .selector('edge') .style({ 'width': 6, 'target-arrow-shape': 'triangle', 'line-color': '#ffaaaa', 'target-arrow-color': '#ffaaaa' }) .selector('#bird') .style({ 'background-image': 'https://farm8.staticflickr.com/7272/7633179468_3e19e45a0c_b.jpg' }) .selector('#cat') .style({ 'background-image': 'https://farm2.staticflickr.com/1261/1413379559_412a540d29_b.jpg' }) .selector('#ladybug') .style({ 'background-image': 'https://farm4.staticflickr.com/3063/2751740612_af11fb090b_b.jpg' }) .selector('#aphid') .style({ 'background-image': 'https://farm9.staticflickr.com/8316/8003798443_32d01257c8_b.jpg' }) .selector('#rose') .style({ 'background-image': 'https://farm6.staticflickr.com/5109/5817854163_eaccd688f5_b.jpg' }) .selector('#grasshopper') .style({ 'background-image': 'https://farm7.staticflickr.com/6098/6224655456_f4c3c98589_b.jpg' }) .selector('#plant') .style({ 'background-image': 'https://farm1.staticflickr.com/231/524893064_f49a4d1d10_z.jpg' }) .selector('#wheat') .style({ 'background-image': 'https://farm3.staticflickr.com/2660/3715569167_7e978e8319_b.jpg' }), elements: { nodes: [ { data: { id: 'cat' } }, { data: { id: 'bird' } }, { data: { id: 'ladybug' } }, { data: { id: 'aphid' } }, { data: { id: 'rose' } }, { data: { id: 'grasshopper' } }, { data: { id: 'plant' } }, { data: { id: 'wheat' } } ], edges: [ { data: { source: 'cat', target: 'bird' } }, { data: { source: 'bird', target: 'ladybug' } }, { data: { source: 'bird', target: 'grasshopper' } }, { data: { source: 'grasshopper', target: 'plant' } }, { data: { source: 'grasshopper', target: 'wheat' } }, { data: { source: 'ladybug', target: 'aphid' } }, { data: { source: 'aphid', target: 'rose' } } ] }, layout: { name: 'breadthfirst', directed: true, padding: 10 } }); // cy init cy.on('tap', 'node', function(){ var nodes = this; var tapped = nodes; var food = []; nodes.addClass('eater'); for(;;){ var connectedEdges = nodes.connectedEdges(function( edge ){ return !edge.target().anySame( nodes ); }); var connectedNodes = connectedEdges.targets(); Array.prototype.push.apply( food, connectedNodes ); nodes = connectedNodes; if( nodes.empty() ){ break; } } var delay = 0; var duration = 500; for( var i = food.length - 1; i >= 0; i-- ){ (function(){ var thisFood = food[i]; var eater = thisFood.connectedEdges(function( edge ){ return edge.target().same(thisFood); }).source(); thisFood.delay( delay, function(){ eater.addClass('eating'); } ).animate({ position: eater.position(), css: { 'width': 10, 'height': 10, 'border-width': 0, 'opacity': 0 } }, { duration: duration, complete: function(){ thisFood.remove(); } }); delay += duration; })(); } // for }); // on tap ================================================ FILE: snippets/performance-tuning.js ================================================ yourDiv.style.left = 0; yourDiv.style.top = 0; yourDiv.style.width = "100%"; yourDiv.style.height = "100%"; yourDiv.style.position = "absolute"; var fetchJson = function( path ){ return fetch( path ).then(function( res ){ return res.json(); }); }; var cytoscape = require("cytoscape"); var cy = cytoscape({ // these options hide parts of the graph during interaction //hideEdgesOnViewport: true, //hideLabelsOnViewport: true, // this is an alternative that uses a bitmap during interaction // textureOnViewport: true, // interpolate on high density displays instead of increasing resolution pixelRatio: 1, // a motion blur effect that increases perceived performance for little or no cost // motionBlur: true, container: yourDiv, style: cytoscape.stylesheet() .selector('node') .style({ 'width': 'mapData(weight, 0, 100, 10, 60)', 'height': 'mapData(weight, 0, 100, 10, 60)' }) .selector('edge') .style({ 'opacity': '0.333', 'width': 'mapData(weight, 0, 100, 1, 6)', 'curve-style': 'haystack' // fast edges! }), layout: { name: 'concentric', concentric: function( node ){ return node.data('weight'); }, levelWidth: function( nodes ){ return 10; }, padding: 10 }, elements: fetchJson('./data/performance-tuning.json') }); ================================================ FILE: snippets/visual.js ================================================ yourDiv.style.left = 0; yourDiv.style.top = 0; yourDiv.style.width = "100%"; yourDiv.style.height = "100%"; yourDiv.style.position = "absolute"; var cytoscape = require("cytoscape"); var cy = cytoscape({ container: yourDiv, layout: { name: 'cose', padding: 10 }, style: cytoscape.stylesheet() .selector('node') .style({ 'shape': 'data(faveShape)', 'width': 'mapData(weight, 40, 80, 20, 60)', 'content': 'data(name)', 'text-valign': 'center', 'text-outline-width': 2, 'text-outline-color': 'data(faveColor)', 'background-color': 'data(faveColor)', 'color': '#fff' }) .selector(':selected') .style({ 'border-width': 3, 'border-color': '#333' }) .selector('edge') .style({ 'opacity': 0.666, 'width': 'mapData(strength, 70, 100, 2, 6)', 'target-arrow-shape': 'triangle', 'source-arrow-shape': 'circle', 'line-color': 'data(faveColor)', 'source-arrow-color': 'data(faveColor)', 'target-arrow-color': 'data(faveColor)' }) .selector('edge.questionable') .style({ 'line-style': 'dotted', 'target-arrow-shape': 'diamond' }) .selector('.faded') .style({ 'opacity': 0.25, 'text-opacity': 0 }), elements: { nodes: [ { data: { id: 'j', name: 'Jerry', weight: 65, faveColor: '#6FB1FC', faveShape: 'triangle' } }, { data: { id: 'e', name: 'Elaine', weight: 45, faveColor: '#EDA1ED', faveShape: 'ellipse' } }, { data: { id: 'k', name: 'Kramer', weight: 75, faveColor: '#86B342', faveShape: 'octagon' } }, { data: { id: 'g', name: 'George', weight: 70, faveColor: '#F5A45D', faveShape: 'rectangle' } } ], edges: [ { data: { source: 'j', target: 'e', faveColor: '#6FB1FC', strength: 90 } }, { data: { source: 'j', target: 'k', faveColor: '#6FB1FC', strength: 70 } }, { data: { source: 'j', target: 'g', faveColor: '#6FB1FC', strength: 80 } }, { data: { source: 'e', target: 'j', faveColor: '#EDA1ED', strength: 95 } }, { data: { source: 'e', target: 'k', faveColor: '#EDA1ED', strength: 60 }, classes: 'questionable' }, { data: { source: 'k', target: 'j', faveColor: '#86B342', strength: 100 } }, { data: { source: 'k', target: 'e', faveColor: '#86B342', strength: 100 } }, { data: { source: 'k', target: 'g', faveColor: '#86B342', strength: 100 } }, { data: { source: 'g', target: 'j', faveColor: '#F5A45D', strength: 90 } } ] } }); ================================================ FILE: src/animation.mjs ================================================ import * as util from './util/index.mjs'; import * as is from './is.mjs'; import Promise from './promise.mjs'; let Animation = function( target, opts, opts2 ){ let isCore = is.core(target); let isEle = !isCore; let _p = this._private = util.extend( { duration: 1000 }, opts, opts2 ); _p.target = target; _p.style = _p.style || _p.css; _p.started = false; _p.playing = false; _p.hooked = false; _p.applying = false; _p.progress = 0; _p.completes = []; _p.frames = []; if( _p.complete && is.fn( _p.complete ) ){ _p.completes.push( _p.complete ); } if( isEle ){ let pos = target.position(); _p.startPosition = _p.startPosition || { x: pos.x, y: pos.y }; _p.startStyle = _p.startStyle || target.cy().style().getAnimationStartStyle( target, _p.style ); } if( isCore ){ let pan = target.pan(); _p.startPan = { x: pan.x, y: pan.y }; _p.startZoom = target.zoom(); } // for future timeline/animations impl this.length = 1; this[0] = this; }; let anifn = Animation.prototype; util.extend( anifn, { instanceString: function(){ return 'animation'; }, hook: function(){ let _p = this._private; if( !_p.hooked ){ // add to target's animation queue let q; let tAni = _p.target._private.animation; if( _p.queue ){ q = tAni.queue; } else { q = tAni.current; } q.push( this ); // add to the animation loop pool if( is.elementOrCollection( _p.target ) ){ _p.target.cy().addToAnimationPool( _p.target ); } _p.hooked = true; } return this; }, play: function(){ let _p = this._private; // autorewind if( _p.progress === 1 ){ _p.progress = 0; } _p.playing = true; _p.started = false; // needs to be started by animation loop _p.stopped = false; this.hook(); // the animation loop will start the animation... return this; }, playing: function(){ return this._private.playing; }, apply: function(){ let _p = this._private; _p.applying = true; _p.started = false; // needs to be started by animation loop _p.stopped = false; this.hook(); // the animation loop will apply the animation at this progress return this; }, applying: function(){ return this._private.applying; }, pause: function(){ let _p = this._private; _p.playing = false; _p.started = false; return this; }, stop: function(){ let _p = this._private; _p.playing = false; _p.started = false; _p.stopped = true; // to be removed from animation queues return this; }, rewind: function(){ return this.progress( 0 ); }, fastforward: function(){ return this.progress( 1 ); }, time: function( t ){ let _p = this._private; if( t === undefined ){ return _p.progress * _p.duration; } else { return this.progress( t / _p.duration ); } }, progress: function( p ){ let _p = this._private; let wasPlaying = _p.playing; if( p === undefined ){ return _p.progress; } else { if( wasPlaying ){ this.pause(); } _p.progress = p; _p.started = false; if( wasPlaying ){ this.play(); } } return this; }, completed: function(){ return this._private.progress === 1; }, reverse: function(){ let _p = this._private; let wasPlaying = _p.playing; if( wasPlaying ){ this.pause(); } _p.progress = 1 - _p.progress; _p.started = false; let swap = function( a, b ){ let _pa = _p[ a ]; if( _pa == null ){ return; } _p[ a ] = _p[ b ]; _p[ b ] = _pa; }; swap( 'zoom', 'startZoom' ); swap( 'pan', 'startPan' ); swap( 'position', 'startPosition' ); // swap styles if( _p.style ){ for( let i = 0; i < _p.style.length; i++ ){ let prop = _p.style[ i ]; let name = prop.name; let startStyleProp = _p.startStyle[ name ]; _p.startStyle[ name ] = prop; _p.style[ i ] = startStyleProp; } } if( wasPlaying ){ this.play(); } return this; }, promise: function( type ){ let _p = this._private; let arr; switch( type ){ case 'frame': arr = _p.frames; break; default: case 'complete': case 'completed': arr = _p.completes; } return new Promise( function( resolve, reject ){ arr.push( function(){ resolve(); } ); } ); } } ); anifn.complete = anifn.completed; anifn.run = anifn.play; anifn.running = anifn.playing; export default Animation; ================================================ FILE: src/cjs.mjs ================================================ // an entrypoint to use the raw source in cjs projects // e.g. require('cytoscape/src/cjs') or setting an alias in your build tool of 'cytoscape':'cytoscape/src/cjs' module.exports = require('./index.js').default; ================================================ FILE: src/collection/algorithms/a-star.mjs ================================================ import Heap from '../../heap.mjs'; import Set from '../../set.mjs'; import { defaults } from '../../util/index.mjs'; const aStarDefaults = defaults({ root: null, goal: null, weight: edge => 1, heuristic: edge => 0, directed: false }); let elesfn = ({ // Implemented from pseudocode from wikipedia aStar: function( options ){ let cy = this.cy(); let { root, goal, heuristic, directed, weight } = aStarDefaults(options); root = cy.collection(root)[0]; goal = cy.collection(goal)[0]; let sid = root.id(); let tid = goal.id(); let gScore = {}; let fScore = {}; let closedSetIds = {}; let openSet = new Heap( (a, b) => fScore[a.id()] - fScore[b.id()] ); let openSetIds = new Set(); let cameFrom = {}; let cameFromEdge = {}; let addToOpenSet = (ele, id) => { openSet.push(ele); openSetIds.add(id); }; let cMin, cMinId; let popFromOpenSet = () => { cMin = openSet.pop(); cMinId = cMin.id(); openSetIds.delete(cMinId); }; let isInOpenSet = id => openSetIds.has(id); addToOpenSet(root, sid); gScore[ sid ] = 0; fScore[ sid ] = heuristic( root ); // Counter let steps = 0; // Main loop while( openSet.size() > 0 ){ popFromOpenSet(); steps++; // If we've found our goal, then we are done if( cMinId === tid ){ let path = []; let pathNode = goal; let pathNodeId = tid; let pathEdge = cameFromEdge[pathNodeId]; for( ;; ){ path.unshift(pathNode); if( pathEdge != null ){ path.unshift(pathEdge); } pathNode = cameFrom[pathNodeId]; if( pathNode == null ){ break; } pathNodeId = pathNode.id(); pathEdge = cameFromEdge[pathNodeId]; } return { found: true, distance: gScore[ cMinId ], path: this.spawn( path ), steps }; } // Add cMin to processed nodes closedSetIds[ cMinId ] = true; // Update scores for neighbors of cMin // Take into account if graph is directed or not let vwEdges = cMin._private.edges; for( let i = 0; i < vwEdges.length; i++ ){ let e = vwEdges[ i ]; // edge must be in set of calling eles if( !this.hasElementWithId( e.id() ) ){ continue; } // cMin must be the source of edge if directed if( directed && e.data('source') !== cMinId ){ continue; } let wSrc = e.source(); let wTgt = e.target(); let w = wSrc.id() !== cMinId ? wSrc : wTgt; let wid = w.id(); // node must be in set of calling eles if( !this.hasElementWithId( wid ) ){ continue; } // if node is in closedSet, ignore it if( closedSetIds[ wid ] ){ continue; } // New tentative score for node w let tempScore = gScore[ cMinId ] + weight( e ); // Update gScore for node w if: // w not present in openSet // OR // tentative gScore is less than previous value // w not in openSet if( !isInOpenSet(wid) ){ gScore[ wid ] = tempScore; fScore[ wid ] = tempScore + heuristic( w ); addToOpenSet( w, wid ); cameFrom[ wid ] = cMin; cameFromEdge[ wid ] = e; continue; } // w already in openSet, but with greater gScore if( tempScore < gScore[ wid ] ){ gScore[ wid ] = tempScore; fScore[ wid ] = tempScore + heuristic( w ); cameFrom[ wid ] = cMin; cameFromEdge[ wid ] = e; } } // End of neighbors update } // End of main loop // If we've reached here, then we've not reached our goal return { found: false, distance: undefined, path: undefined, steps: steps }; } }); // elesfn export default elesfn; ================================================ FILE: src/collection/algorithms/affinity-propagation.mjs ================================================ // Implemented by Zoe Xi @zoexi for GSOC 2016 // https://github.com/cytoscape/cytoscape.js-affinity-propagation // Implemented from the reference library: https://github.com/juhis/affinity-propagation // Additional reference: http://www.psi.toronto.edu/affinitypropagation/faq.html import * as util from '../../util/index.mjs'; import * as math from '../../math.mjs'; import * as is from '../../is.mjs'; import clusteringDistance from './clustering-distances.mjs'; let defaults = util.defaults({ distance: 'euclidean', // distance metric to compare attributes between two nodes preference: 'median', // suitability of a data point to serve as an exemplar damping: 0.8, // damping factor between [0.5, 1) maxIterations: 1000, // max number of iterations to run minIterations: 100, // min number of iterations to run in order for clustering to stop attributes: [ // functions to quantify the similarity between any two points // e.g. node => node.data('weight') ] }); let setOptions = function( options ) { let dmp = options.damping; let pref = options.preference; if( !(0.5 <= dmp && dmp < 1) ){ util.error(`Damping must range on [0.5, 1). Got: ${dmp}`); } let validPrefs = ['median', 'mean', 'min', 'max']; if( !( validPrefs.some(v => v === pref) || is.number(pref) ) ){ util.error(`Preference must be one of [${validPrefs.map( p => `'${p}'` ).join(', ')}] or a number. Got: ${pref}`); } return defaults( options ); }; if( process.env.NODE_ENV !== 'production' ){ /* eslint-disable no-console, no-unused-vars */ var printMatrix = function( M ) { // used for debugging purposes only let str = ''; let log = s => str = str + s + '\n'; let n = Math.sqrt(M.length); for ( let i = 0; i < n; i++ ) { let row = ''; for ( let j = 0; j < n; j++ ) { row += M[i*n+j] + ' '; } log(row); } console.log(str); }; } /* eslint-enable */ let getSimilarity = function( type, n1, n2, attributes ) { let attr = (n, i) => attributes[i](n); // nb negative because similarity should have an inverse relationship to distance return -clusteringDistance( type, attributes.length, i => attr(n1, i), i => attr(n2, i), n1, n2 ); }; let getPreference = function( S, preference ) { // larger preference = greater # of clusters let p = null; if( preference === 'median' ){ p = math.median( S ); } else if( preference === 'mean' ){ p = math.mean( S ); } else if ( preference === 'min' ){ p = math.min( S ); } else if ( preference === 'max' ){ p = math.max( S ); } else { // Custom preference number, as set by user p = preference; } return p; }; let findExemplars = function( n, R, A ) { let indices = []; for ( let i = 0; i < n; i++ ) { if ( R[i * n + i] + A[i * n + i] > 0 ) { indices.push(i); } } return indices; }; let assignClusters = function( n, S, exemplars ) { let clusters = []; for ( let i = 0; i < n; i++ ) { let index = -1; let max = -Infinity; for ( let ei = 0; ei < exemplars.length; ei++ ) { let e = exemplars[ei]; if ( S[i * n + e] > max ) { index = e; max = S[i * n + e]; } } if( index > 0 ){ clusters.push(index); } } for (let ei = 0; ei < exemplars.length; ei++) { clusters[ exemplars[ei] ] = exemplars[ei]; } return clusters; }; let assign = function( n, S, exemplars ) { let clusters = assignClusters( n, S, exemplars ); for ( let ei = 0; ei < exemplars.length; ei++ ) { let ii = []; for ( let c = 0; c < clusters.length; c++ ) { if (clusters[c] === exemplars[ei]) { ii.push(c); } } let maxI = -1; let maxSum = -Infinity; for ( let i = 0; i < ii.length; i++ ) { let sum = 0; for ( let j = 0; j < ii.length; j++ ) { sum += S[ii[j] * n + ii[i]]; } if ( sum > maxSum ) { maxI = i; maxSum = sum; } } exemplars[ei] = ii[maxI]; } clusters = assignClusters( n, S, exemplars ); return clusters; }; let affinityPropagation = function( options ) { let cy = this.cy(); let nodes = this.nodes(); let opts = setOptions( options ); // Map each node to its position in node array let id2position = {}; for( let i = 0; i < nodes.length; i++ ){ id2position[ nodes[i].id() ] = i; } // Begin affinity propagation algorithm let n; // number of data points let n2; // size of matrices let S; // similarity matrix (1D array) let p; // preference/suitability of a data point to serve as an exemplar let R; // responsibility matrix (1D array) let A; // availability matrix (1D array) n = nodes.length; n2 = n * n; // Initialize and build S similarity matrix S = new Array(n2); for ( let i = 0; i < n2; i++ ) { S[i] = -Infinity; // for cases where two data points shouldn't be linked together } for ( let i = 0; i < n; i++ ) { for ( let j = 0; j < n; j++ ) { if ( i !== j ) { S[i * n + j] = getSimilarity( opts.distance, nodes[i], nodes[j], opts.attributes ); } } } // Place preferences on the diagonal of S p = getPreference( S, opts.preference ); for ( let i = 0; i < n; i++ ) { S[i * n + i] = p; } // Initialize R responsibility matrix R = new Array(n2); for ( let i = 0; i < n2; i++ ) { R[i] = 0.0; } // Initialize A availability matrix A = new Array(n2); for ( let i = 0; i < n2; i++ ) { A[i] = 0.0; } let old = new Array(n); let Rp = new Array(n); let se = new Array(n); for ( let i = 0; i < n; i ++ ) { old[i] = 0.0; Rp[i] = 0.0; se[i] = 0; } let e = new Array(n * opts.minIterations); for ( let i = 0; i < e.length; i++ ) { e[i] = 0; } let iter; for ( iter = 0; iter < opts.maxIterations; iter++ ) { // main algorithmic loop // Update R responsibility matrix for ( let i = 0; i < n; i++ ) { let max = -Infinity, max2 = -Infinity, maxI = -1, AS = 0.0; for ( let j = 0; j < n; j++ ) { old[j] = R[i * n + j]; AS = A[i * n + j] + S[i * n + j]; if ( AS >= max ) { max2 = max; max = AS; maxI = j; } else if ( AS > max2 ) { max2 = AS; } } for ( let j = 0; j < n; j++ ) { R[i * n + j] = (1 - opts.damping) * (S[i * n + j] - max) + opts.damping * old[j]; } R[i * n + maxI] = (1 - opts.damping) * (S[i * n + maxI] - max2) + opts.damping * old[maxI]; } // Update A availability matrix for ( let i = 0; i < n; i++ ) { let sum = 0; for ( let j = 0; j < n; j++ ) { old[j] = A[j * n + i]; Rp[j] = Math.max(0, R[j * n + i]); sum += Rp[j]; } sum -= Rp[i]; Rp[i] = R[i * n + i]; sum += Rp[i]; for ( let j = 0; j < n; j++ ) { A[j * n + i] = (1 - opts.damping) * Math.min(0, sum - Rp[j]) + opts.damping * old[j]; } A[i * n + i] = (1 - opts.damping) * (sum - Rp[i]) + opts.damping * old[i]; } // Check for convergence let K = 0; for ( let i = 0; i < n; i++ ) { let E = A[i * n + i] + R[i * n + i] > 0 ? 1 : 0; e[(iter % opts.minIterations) * n + i] = E; K += E; } if ( K > 0 && (iter >= opts.minIterations - 1 || iter == opts.maxIterations - 1) ) { let sum = 0; for ( let i = 0; i < n; i++ ) { se[i] = 0; for ( let j = 0; j < opts.minIterations; j++ ) { se[i] += e[j * n + i]; } if ( se[i] === 0 || se[i] === opts.minIterations ) { sum++; } } if ( sum === n ) { // then we have convergence break; } } } // Identify exemplars (cluster centers) let exemplarsIndices = findExemplars( n, R, A ); // Assign nodes to clusters let clusterIndices = assign( n, S, exemplarsIndices, nodes, id2position ); let clusters = {}; for ( let c = 0; c < exemplarsIndices.length; c++ ) { clusters[ exemplarsIndices[c] ] = []; } for (let i = 0; i < nodes.length; i++) { let pos = id2position[ nodes[i].id() ]; let clusterIndex = clusterIndices[pos]; if( clusterIndex != null ){ // the node may have not been assigned a cluster if no valid attributes were specified clusters[ clusterIndex ].push( nodes[i] ); } } let retClusters = new Array(exemplarsIndices.length); for ( let c = 0; c < exemplarsIndices.length; c++ ) { retClusters[c] = cy.collection( clusters[ exemplarsIndices[c] ] ); } return retClusters; }; export default { affinityPropagation, ap: affinityPropagation }; ================================================ FILE: src/collection/algorithms/bellman-ford.mjs ================================================ import * as is from '../../is.mjs'; import { warn, defaults } from '../../util/index.mjs'; import Map from '../../map.mjs'; const bellmanFordDefaults = defaults({ weight: edge => 1, directed: false, root: null }); let elesfn = ({ // Implemented from pseudocode from wikipedia bellmanFord: function( options ){ let { weight, directed, root } = bellmanFordDefaults(options); let weightFn = weight; let eles = this; let cy = this.cy(); let { edges, nodes } = this.byGroup(); let numNodes = nodes.length; let infoMap = new Map(); let hasNegativeWeightCycle = false; let negativeWeightCycles = []; root = cy.collection(root)[0]; // in case selector passed edges.unmergeBy( edge => edge.isLoop() ); let numEdges = edges.length; let getInfo = node => { let obj = infoMap.get( node.id() ); if( !obj ){ obj = {}; infoMap.set( node.id(), obj ); } return obj; }; let getNodeFromTo = to => (is.string(to) ? cy.$(to) : to)[0]; let distanceTo = to => getInfo( getNodeFromTo(to) ).dist; let pathTo = (to, thisStart = root) => { let end = getNodeFromTo(to); let path = []; let node = end; for( ;; ){ if( node == null ){ return this.spawn(); } let { edge, pred } = getInfo( node ); path.unshift( node[0] ); if( node.same(thisStart) && path.length > 0 ){ break; } if( edge != null ){ path.unshift( edge ); } node = pred; } return eles.spawn( path ); }; // Initializations { dist, pred, edge } for( let i = 0; i < numNodes; i++ ){ let node = nodes[i]; let info = getInfo( node ); if( node.same(root) ){ info.dist = 0; } else { info.dist = Infinity; } info.pred = null; info.edge = null; } // Edges relaxation let replacedEdge = false; let checkForEdgeReplacement = (node1, node2, edge, info1, info2, weight) => { let dist = info1.dist + weight; if( dist < info2.dist && !edge.same(info1.edge) ){ info2.dist = dist; info2.pred = node1; info2.edge = edge; replacedEdge = true; } }; for( let i = 1; i < numNodes; i++ ){ replacedEdge = false; for( let e = 0; e < numEdges; e++ ){ let edge = edges[e]; let src = edge.source(); let tgt = edge.target(); let weight = weightFn(edge); let srcInfo = getInfo(src); let tgtInfo = getInfo(tgt); checkForEdgeReplacement(src, tgt, edge, srcInfo, tgtInfo, weight); // If undirected graph, we need to take into account the 'reverse' edge if( !directed ){ checkForEdgeReplacement(tgt, src, edge, tgtInfo, srcInfo, weight); } } if( !replacedEdge ){ break; } } if( replacedEdge ){ // Check for negative weight cycles const negativeWeightCycleIds = []; for( let e = 0; e < numEdges; e++ ){ let edge = edges[e]; let src = edge.source(); let tgt = edge.target(); let weight = weightFn(edge); let srcDist = getInfo(src).dist; let tgtDist = getInfo(tgt).dist; if( srcDist + weight < tgtDist || (!directed && tgtDist + weight < srcDist) ){ if( !hasNegativeWeightCycle ){ warn('Graph contains a negative weight cycle for Bellman-Ford'); hasNegativeWeightCycle = true; } if( options.findNegativeWeightCycles !== false ){ const negativeNodes = []; if( srcDist + weight < tgtDist ){ negativeNodes.push(src); } if( !directed && tgtDist + weight < srcDist ) { negativeNodes.push(tgt); } const numNegativeNodes = negativeNodes.length; for( let n = 0; n < numNegativeNodes; n++ ){ const start = negativeNodes[n]; let cycle = [start]; cycle.push(getInfo(start).edge); let node = getInfo(start).pred; while( cycle.indexOf(node) === -1 ){ cycle.push(node); cycle.push(getInfo(node).edge); node = getInfo(node).pred; } cycle = cycle.slice(cycle.indexOf(node)); let smallestId = cycle[0].id(); let smallestIndex = 0; for( let c = 2; c < cycle.length; c+=2 ){ if( cycle[c].id() < smallestId ){ smallestId = cycle[c].id(); smallestIndex = c; } } cycle = cycle.slice(smallestIndex) .concat(cycle.slice(0, smallestIndex)); cycle.push(cycle[0]); const cycleId = cycle.map(el => el.id()).join(","); if( negativeWeightCycleIds.indexOf(cycleId) === -1 ){ negativeWeightCycles.push(eles.spawn(cycle)); negativeWeightCycleIds.push(cycleId); } } } else { break; } } } } return { distanceTo, pathTo, hasNegativeWeightCycle, negativeWeightCycles }; } // bellmanFord }); // elesfn export default elesfn; ================================================ FILE: src/collection/algorithms/betweenness-centrality.mjs ================================================ import Heap from '../../heap.mjs'; import * as util from '../../util/index.mjs'; const defaults = util.defaults({ weight: null, directed: false }); let elesfn = ({ // Implemented from the algorithm in the paper "On Variants of Shortest-Path Betweenness Centrality and their Generic Computation" by Ulrik Brandes betweennessCentrality: function( options ){ let { directed, weight } = defaults(options); let weighted = weight != null; let cy = this.cy(); // starting let V = this.nodes(); let A = {}; let _C = {}; let max = 0; let C = { set: function( key, val ){ _C[ key ] = val; if( val > max ){ max = val; } }, get: function( key ){ return _C[ key ]; } }; // A contains the neighborhoods of every node for( let i = 0; i < V.length; i++ ){ let v = V[ i ]; let vid = v.id(); if( directed ){ A[ vid ] = v.outgoers().nodes(); // get outgoers of every node } else { A[ vid ] = v.openNeighborhood().nodes(); // get neighbors of every node } C.set( vid, 0 ); } for( let s = 0; s < V.length; s++ ){ let sid = V[s].id(); let S = []; // stack let P = {}; let g = {}; let d = {}; let Q = new Heap(function( a, b ){ return d[a] - d[b]; }); // queue // init dictionaries for( let i = 0; i < V.length; i++ ){ let vid = V[ i ].id(); P[ vid ] = []; g[ vid ] = 0; d[ vid ] = Infinity; } g[ sid ] = 1; // sigma d[ sid ] = 0; // distance to s Q.push( sid ); while( !Q.empty() ){ let v = Q.pop(); S.push( v ); if( weighted ){ for( let j = 0; j < A[v].length; j++ ){ let w = A[v][j]; let vEle = cy.getElementById( v ); let edge; if( vEle.edgesTo( w ).length > 0 ){ edge = vEle.edgesTo( w )[0]; } else { edge = w.edgesTo( vEle )[0]; } let edgeWeight = weight( edge ); w = w.id(); if( d[w] > d[v] + edgeWeight ){ d[w] = d[v] + edgeWeight; if( Q.nodes.indexOf( w ) < 0 ){ //if w is not in Q Q.push( w ); } else { // update position if w is in Q Q.updateItem( w ); } g[w] = 0; P[w] = []; } if( d[w] == d[v] + edgeWeight ){ g[w] = g[w] + g[v]; P[w].push( v ); } } } else { for( let j = 0; j < A[v].length; j++ ){ let w = A[v][j].id(); if( d[w] == Infinity ){ Q.push( w ); d[w] = d[v] + 1; } if( d[w] == d[v] + 1 ){ g[w] = g[w] + g[v]; P[w].push( v ); } } } } let e = {}; for( let i = 0; i < V.length; i++ ){ e[ V[ i ].id() ] = 0; } while( S.length > 0 ){ let w = S.pop(); for( let j = 0; j < P[w].length; j++ ){ let v = P[w][j]; e[v] = e[v] + (g[v] / g[w]) * (1 + e[w]); } if( w != V[s].id() ){ C.set( w, C.get( w ) + e[w] ); } } } let ret = { betweenness: function( node ){ let id = cy.collection(node).id(); return C.get( id ); }, betweennessNormalized: function( node ){ if ( max == 0 ){ return 0; } let id = cy.collection(node).id(); return C.get( id ) / max; } }; // alias ret.betweennessNormalised = ret.betweennessNormalized; return ret; } // betweennessCentrality }); // elesfn // nice, short mathematical alias elesfn.bc = elesfn.betweennessCentrality; export default elesfn; ================================================ FILE: src/collection/algorithms/bfs-dfs.mjs ================================================ import * as is from '../../is.mjs'; let defineSearch = function( params ){ params = { bfs: params.bfs || !params.dfs, dfs: params.dfs || !params.bfs }; // from pseudocode on wikipedia return function searchFn( roots, fn, directed ){ let options; if( is.plainObject( roots ) && !is.elementOrCollection( roots ) ){ options = roots; roots = options.roots || options.root; fn = options.visit; directed = options.directed; } directed = arguments.length === 2 && !is.fn( fn ) ? fn : directed; fn = is.fn( fn ) ? fn : function(){}; let cy = this._private.cy; let v = roots = is.string( roots ) ? this.filter( roots ) : roots; let Q = []; let connectedNodes = []; let connectedBy = {}; let id2depth = {}; let V = {}; let j = 0; let found; let { nodes, edges } = this.byGroup(); // enqueue v for( let i = 0; i < v.length; i++ ){ let vi = v[i]; let viId = vi.id(); if( vi.isNode() ){ Q.unshift( vi ); if( params.bfs ){ V[ viId ] = true; connectedNodes.push( vi ); } id2depth[ viId ] = 0; } } while( Q.length !== 0 ){ let v = params.bfs ? Q.shift() : Q.pop(); let vId = v.id(); if( params.dfs ){ if( V[ vId ] ){ continue; } V[ vId ] = true; connectedNodes.push( v ); } let depth = id2depth[ vId ]; let prevEdge = connectedBy[ vId ]; let src = prevEdge != null ? prevEdge.source() : null; let tgt = prevEdge != null ? prevEdge.target() : null; let prevNode = prevEdge == null ? undefined : ( v.same(src) ? tgt[0] : src[0] ); let ret; ret = fn( v, prevEdge, prevNode, j++, depth ); if( ret === true ){ found = v; break; } if( ret === false ){ break; } let vwEdges = v.connectedEdges().filter(e => (!directed || e.source().same(v)) && edges.has(e)); for( let i = 0; i < vwEdges.length; i++ ){ let e = vwEdges[ i ]; let w = e.connectedNodes().filter(n => !n.same(v) && nodes.has(n)); let wId = w.id(); if( w.length !== 0 && !V[ wId ] ){ w = w[0]; Q.push( w ); if( params.bfs ){ V[ wId ] = true; connectedNodes.push( w ); } connectedBy[ wId ] = e; id2depth[ wId ] = id2depth[ vId ] + 1; } } } let connectedEles = cy.collection(); for( let i = 0; i < connectedNodes.length; i++ ){ let node = connectedNodes[ i ]; let edge = connectedBy[ node.id() ]; if( edge != null ){ connectedEles.push( edge ); } connectedEles.push( node ); } return { path: cy.collection( connectedEles ), found: cy.collection( found ) }; }; }; // search, spanning trees, etc let elesfn = ({ breadthFirstSearch: defineSearch( { bfs: true } ), depthFirstSearch: defineSearch( { dfs: true } ) }); // nice, short mathematical alias elesfn.bfs = elesfn.breadthFirstSearch; elesfn.dfs = elesfn.depthFirstSearch; export default elesfn; ================================================ FILE: src/collection/algorithms/closeness-centrality.mjs ================================================ import * as is from '../../is.mjs'; import * as util from '../../util/index.mjs'; const defaults = util.defaults({ harmonic: true, weight: () => 1, directed: false, root: null }); const elesfn = ({ closenessCentralityNormalized: function( options ){ let { harmonic, weight, directed } = defaults(options); let cy = this.cy(); let closenesses = {}; let maxCloseness = 0; let nodes = this.nodes(); let fw = this.floydWarshall({ weight, directed }); // Compute closeness for every node and find the maximum closeness for( let i = 0; i < nodes.length; i++ ){ let currCloseness = 0; let node_i = nodes[i]; for( let j = 0; j < nodes.length; j++ ){ if( i !== j ){ let d = fw.distance( node_i, nodes[j] ); if( harmonic ){ currCloseness += 1 / d; } else { currCloseness += d; } } } if( !harmonic ){ currCloseness = 1 / currCloseness; } if( maxCloseness < currCloseness ){ maxCloseness = currCloseness; } closenesses[ node_i.id() ] = currCloseness; } return { closeness: function( node ){ if( maxCloseness == 0 ){ return 0; } if( is.string( node ) ){ // from is a selector string node = (cy.filter( node )[0]).id(); } else { // from is a node node = node.id(); } return closenesses[ node ] / maxCloseness; } }; }, // Implemented from pseudocode from wikipedia closenessCentrality: function( options ){ let { root, weight, directed, harmonic } = defaults(options); root = this.filter(root)[0]; // we need distance from this node to every other node let dijkstra = this.dijkstra({ root, weight, directed }); let totalDistance = 0; let nodes = this.nodes(); for( let i = 0; i < nodes.length; i++ ){ let n = nodes[i]; if( !n.same(root) ){ let d = dijkstra.distanceTo(n); if( harmonic ){ totalDistance += 1 / d; } else { totalDistance += d; } } } return harmonic ? totalDistance : 1 / totalDistance; } // closenessCentrality }); // elesfn // nice, short mathematical alias elesfn.cc = elesfn.closenessCentrality; elesfn.ccn = elesfn.closenessCentralityNormalised = elesfn.closenessCentralityNormalized; export default elesfn; ================================================ FILE: src/collection/algorithms/clustering-distances.mjs ================================================ // Common distance metrics for clustering algorithms // https://en.wikipedia.org/wiki/Hierarchical_clustering#Metric import * as is from '../../is.mjs'; let identity = x => x; let absDiff = ( p, q ) => Math.abs( q - p ); let addAbsDiff = ( total, p, q ) => total + absDiff(p, q); let addSquaredDiff = ( total, p, q ) => total + Math.pow( q - p, 2 ); let sqrt = x => Math.sqrt(x); let maxAbsDiff = ( currentMax, p, q ) => Math.max( currentMax, absDiff(p, q) ); let getDistance = function( length, getP, getQ, init, visit, post = identity ){ let ret = init; let p, q; for ( let dim = 0; dim < length; dim++ ) { p = getP(dim); q = getQ(dim); ret = visit( ret, p, q ); } return post( ret ); }; let distances = { euclidean: function ( length, getP, getQ ) { if( length >= 2 ){ return getDistance( length, getP, getQ, 0, addSquaredDiff, sqrt ); } else { // for single attr case, more efficient to avoid sqrt return getDistance( length, getP, getQ, 0, addAbsDiff ); } }, squaredEuclidean: function ( length, getP, getQ ) { return getDistance( length, getP, getQ, 0, addSquaredDiff ); }, manhattan: function ( length, getP, getQ ) { return getDistance( length, getP, getQ, 0, addAbsDiff ); }, max: function ( length, getP, getQ ) { return getDistance( length, getP, getQ, -Infinity, maxAbsDiff ); } }; // in case the user accidentally doesn't use camel case distances['squared-euclidean'] = distances['squaredEuclidean']; distances['squaredeuclidean'] = distances['squaredEuclidean']; export default function( method, length, getP, getQ, nodeP, nodeQ ){ let impl; if( is.fn( method ) ){ impl = method; } else { impl = distances[ method ] || distances.euclidean; } if( length === 0 && is.fn( method ) ){ return impl( nodeP, nodeQ ); } else { return impl( length, getP, getQ, nodeP, nodeQ ); } } ================================================ FILE: src/collection/algorithms/degree-centrality.mjs ================================================ import * as is from '../../is.mjs'; import * as util from '../../util/index.mjs'; const defaults = util.defaults({ root: null, weight: edge => 1, directed: false, alpha: 0 }); let elesfn = ({ degreeCentralityNormalized: function( options ){ options = defaults( options ); let cy = this.cy(); let nodes = this.nodes(); let numNodes = nodes.length; if( !options.directed ){ let degrees = {}; let maxDegree = 0; for( let i = 0; i < numNodes; i++ ){ let node = nodes[ i ]; // add current node to the current options object and call degreeCentrality options.root = node; let currDegree = this.degreeCentrality( options ); if( maxDegree < currDegree.degree ){ maxDegree = currDegree.degree; } degrees[ node.id() ] = currDegree.degree; } return { degree: function( node ){ if( maxDegree === 0 ){ return 0; } if( is.string( node ) ){ // from is a selector string node = cy.filter( node ); } return degrees[ node.id() ] / maxDegree; } }; } else { let indegrees = {}; let outdegrees = {}; let maxIndegree = 0; let maxOutdegree = 0; for( let i = 0; i < numNodes; i++ ){ let node = nodes[ i ]; let id = node.id(); // add current node to the current options object and call degreeCentrality options.root = node; let currDegree = this.degreeCentrality( options ); if( maxIndegree < currDegree.indegree ) maxIndegree = currDegree.indegree; if( maxOutdegree < currDegree.outdegree ) maxOutdegree = currDegree.outdegree; indegrees[ id ] = currDegree.indegree; outdegrees[ id ] = currDegree.outdegree; } return { indegree: function( node ){ if ( maxIndegree == 0 ){ return 0; } if( is.string( node ) ){ // from is a selector string node = cy.filter( node ); } return indegrees[ node.id() ] / maxIndegree; }, outdegree: function( node ){ if ( maxOutdegree === 0 ){ return 0; } if( is.string( node ) ){ // from is a selector string node = cy.filter( node ); } return outdegrees[ node.id() ] / maxOutdegree; } }; } }, // degreeCentralityNormalized // Implemented from the algorithm in Opsahl's paper // "Node centrality in weighted networks: Generalizing degree and shortest paths" // check the heading 2 "Degree" degreeCentrality: function( options ){ options = defaults( options ); let cy = this.cy(); let callingEles = this; let { root, weight, directed, alpha } = options; root = cy.collection(root)[0]; if( !directed ){ let connEdges = root.connectedEdges().intersection( callingEles ); let k = connEdges.length; let s = 0; // Now, sum edge weights for( let i = 0; i < connEdges.length; i++ ){ s += weight( connEdges[i] ); } return { degree: Math.pow( k, 1 - alpha ) * Math.pow( s, alpha ) }; } else { let edges = root.connectedEdges(); let incoming = edges.filter( edge => edge.target().same(root) && callingEles.has(edge) ); let outgoing = edges.filter( edge => edge.source().same(root) && callingEles.has(edge) ); let k_in = incoming.length; let k_out = outgoing.length; let s_in = 0; let s_out = 0; // Now, sum incoming edge weights for( let i = 0; i < incoming.length; i++ ){ s_in += weight( incoming[i] ); } // Now, sum outgoing edge weights for( let i = 0; i < outgoing.length; i++ ){ s_out += weight( outgoing[i] ); } return { indegree: Math.pow( k_in, 1 - alpha ) * Math.pow( s_in, alpha ), outdegree: Math.pow( k_out, 1 - alpha ) * Math.pow( s_out, alpha ) }; } } // degreeCentrality }); // elesfn // nice, short mathematical alias elesfn.dc = elesfn.degreeCentrality; elesfn.dcn = elesfn.degreeCentralityNormalised = elesfn.degreeCentralityNormalized; export default elesfn; ================================================ FILE: src/collection/algorithms/dijkstra.mjs ================================================ import * as is from '../../is.mjs'; import Heap from '../../heap.mjs'; import { defaults } from '../../util/index.mjs'; const dijkstraDefaults = defaults({ root: null, weight: edge => 1, directed: false }); let elesfn = ({ dijkstra: function( options ){ if( !is.plainObject(options) ){ let args = arguments; options = { root: args[0], weight: args[1], directed: args[2] }; } let { root, weight, directed } = dijkstraDefaults(options); let eles = this; let weightFn = weight; let source = is.string( root ) ? this.filter( root )[0] : root[0]; let dist = {}; let prev = {}; let knownDist = {}; let { nodes, edges } = this.byGroup(); edges.unmergeBy( ele => ele.isLoop() ); let getDist = node => dist[ node.id() ]; let setDist = ( node, d ) => { dist[ node.id() ] = d; Q.updateItem( node ); }; let Q = new Heap( (a, b) => getDist(a) - getDist(b) ); for( let i = 0; i < nodes.length; i++ ){ let node = nodes[ i ]; dist[ node.id() ] = node.same( source ) ? 0 : Infinity; Q.push( node ); } let distBetween = ( u, v ) => { let uvs = ( directed ? u.edgesTo(v) : u.edgesWith(v) ).intersect( edges ); let smallestDistance = Infinity; let smallestEdge; for( let i = 0; i < uvs.length; i++ ){ let edge = uvs[ i ]; let weight = weightFn( edge ); if( weight < smallestDistance || !smallestEdge ){ smallestDistance = weight; smallestEdge = edge; } } return { edge: smallestEdge, dist: smallestDistance }; }; while( Q.size() > 0 ){ let u = Q.pop(); let smalletsDist = getDist( u ); let uid = u.id(); knownDist[ uid ] = smalletsDist; if( smalletsDist === Infinity ){ continue; } let neighbors = u.neighborhood().intersect( nodes ); for( let i = 0; i < neighbors.length; i++ ){ let v = neighbors[ i ]; let vid = v.id(); let vDist = distBetween( u, v ); let alt = smalletsDist + vDist.dist; if( alt < getDist( v ) ){ setDist( v, alt ); prev[ vid ] = { node: u, edge: vDist.edge }; } } // for } // while return { distanceTo: function( node ){ let target = is.string( node ) ? nodes.filter( node )[0] : node[0]; return knownDist[ target.id() ]; }, pathTo: function( node ){ let target = is.string( node ) ? nodes.filter( node )[0] : node[0]; let S = []; let u = target; let uid = u.id(); if( target.length > 0 ){ S.unshift( target ); while( prev[ uid ] ){ let p = prev[ uid ]; S.unshift( p.edge ); S.unshift( p.node ); u = p.node; uid = u.id(); } } return eles.spawn( S ); } }; } }); export default elesfn; ================================================ FILE: src/collection/algorithms/floyd-warshall.mjs ================================================ import * as is from '../../is.mjs'; import { defaults } from '../../util/index.mjs'; const floydWarshallDefaults = defaults({ weight: edge => 1, directed: false }); let elesfn = ({ // Implemented from pseudocode from wikipedia floydWarshall: function( options ){ let cy = this.cy(); let { weight, directed } = floydWarshallDefaults(options); let weightFn = weight; let { nodes, edges } = this.byGroup(); let N = nodes.length; let Nsq = N * N; let indexOf = node => nodes.indexOf(node); let atIndex = i => nodes[i]; // Initialize distance matrix let dist = new Array(Nsq); for( let n = 0; n < Nsq; n++ ){ let j = n % N; let i = (n - j) / N; if( i === j ){ dist[n] = 0; } else { dist[n] = Infinity; } } // Initialize matrix used for path reconstruction // Initialize distance matrix let next = new Array(Nsq); let edgeNext = new Array(Nsq); // Process edges for( let i = 0; i < edges.length; i++ ){ let edge = edges[i]; let src = edge.source()[0]; let tgt = edge.target()[0]; if( src === tgt ){ continue; } // exclude loops let s = indexOf( src ); let t = indexOf( tgt ); let st = s * N + t; // source to target index let weight = weightFn( edge ); // Check if already process another edge between same 2 nodes if( dist[st] > weight ){ dist[st] = weight; next[st] = t; edgeNext[st] = edge; } // If undirected graph, process 'reversed' edge if( !directed ){ let ts = t * N + s; // target to source index if( !directed && dist[ts] > weight ){ dist[ts] = weight; next[ts] = s; edgeNext[ts] = edge; } } } // Main loop for( let k = 0; k < N; k++ ){ for( let i = 0; i < N; i++ ){ let ik = i * N + k; for( let j = 0; j < N; j++ ){ let ij = i * N + j; let kj = k * N + j; if( dist[ik] + dist[kj] < dist[ij] ){ dist[ij] = dist[ik] + dist[kj]; next[ij] = next[ik]; } } } } let getArgEle = ele => ( is.string(ele) ? cy.filter(ele) : ele )[0]; let indexOfArgEle = ele => indexOf(getArgEle(ele)); let res = { distance: function( from, to ){ let i = indexOfArgEle(from); let j = indexOfArgEle(to); return dist[ i * N + j ]; }, path: function( from, to ){ let i = indexOfArgEle(from); let j = indexOfArgEle(to); let fromNode = atIndex(i); if( i === j ){ return fromNode.collection(); } if( next[i * N + j] == null ){ return cy.collection(); } let path = cy.collection(); let prev = i; let edge; path.merge( fromNode ); while( i !== j ){ prev = i; i = next[i * N + j]; edge = edgeNext[prev * N + i]; path.merge( edge ); path.merge( atIndex(i) ); } return path; } }; return res; } // floydWarshall }); // elesfn export default elesfn; ================================================ FILE: src/collection/algorithms/hierarchical-clustering.mjs ================================================ // Implemented by Zoe Xi @zoexi for GSOC 2016 // https://github.com/cytoscape/cytoscape.js-hierarchical // Implemented from the reference library: https://harthur.github.io/clusterfck/ import * as util from '../../util/index.mjs'; import clusteringDistance from './clustering-distances.mjs'; const defaults = util.defaults({ distance: 'euclidean', // distance metric to compare nodes linkage: 'min', // linkage criterion : how to determine the distance between clusters of nodes mode: 'threshold', // mode:'threshold' => clusters must be threshold distance apart threshold: Infinity, // the distance threshold // mode:'dendrogram' => the nodes are organised as leaves in a tree (siblings are close), merging makes clusters addDendrogram: false, // whether to add the dendrogram to the graph for viz dendrogramDepth: 0, // depth at which dendrogram branches are merged into the returned clusters attributes: [] // array of attr functions }); const linkageAliases = { 'single': 'min', 'complete': 'max' }; let setOptions = ( options ) => { let opts = defaults( options ); let preferredAlias = linkageAliases[ opts.linkage ]; if( preferredAlias != null ){ opts.linkage = preferredAlias; } return opts; }; let mergeClosest = function( clusters, index, dists, mins, opts ) { // Find two closest clusters from cached mins let minKey = 0; let min = Infinity; let dist; let attrs = opts.attributes; let getDist = (n1, n2) => clusteringDistance( opts.distance, attrs.length, i => attrs[i](n1), i => attrs[i](n2), n1, n2 ); for ( let i = 0; i < clusters.length; i++ ) { let key = clusters[i].key; let dist = dists[key][mins[key]]; if ( dist < min ) { minKey = key; min = dist; } } if ( (opts.mode === 'threshold' && min >= opts.threshold) || (opts.mode === 'dendrogram' && clusters.length === 1) ) { return false; } let c1 = index[minKey]; let c2 = index[mins[minKey]]; let merged; // Merge two closest clusters if ( opts.mode === 'dendrogram' ) { merged = { left: c1, right: c2, key: c1.key }; } else { merged = { value: c1.value.concat(c2.value), key: c1.key }; } clusters[c1.index] = merged; clusters.splice(c2.index, 1); index[c1.key] = merged; // Update distances with new merged cluster for ( let i = 0; i < clusters.length; i++ ) { let cur = clusters[i]; if ( c1.key === cur.key ) { dist = Infinity; } else if ( opts.linkage === 'min' ) { dist = dists[c1.key][cur.key]; if ( dists[c1.key][cur.key] > dists[c2.key][cur.key] ) { dist = dists[c2.key][cur.key]; } } else if ( opts.linkage === 'max' ) { dist = dists[c1.key][cur.key]; if ( dists[c1.key][cur.key] < dists[c2.key][cur.key] ) { dist = dists[c2.key][cur.key]; } } else if ( opts.linkage === 'mean' ) { dist = (dists[c1.key][cur.key] * c1.size + dists[c2.key][cur.key] * c2.size) / (c1.size + c2.size); } else { if ( opts.mode === 'dendrogram' ) dist = getDist( cur.value, c1.value ); else dist = getDist( cur.value[0], c1.value[0] ); } dists[c1.key][cur.key] = dists[cur.key][c1.key] = dist; // distance matrix is symmetric } // Update cached mins for ( let i = 0; i < clusters.length; i++ ) { let key1 = clusters[i].key; if ( mins[key1] === c1.key || mins[key1] === c2.key ) { let min = key1; for ( let j = 0; j < clusters.length; j++ ) { let key2 = clusters[j].key; if ( dists[key1][key2] < dists[key1][min] ) { min = key2; } } mins[key1] = min; } clusters[i].index = i; } // Clean up meta data used for clustering c1.key = c2.key = c1.index = c2.index = null; return true; }; let getAllChildren = function( root, arr, cy ) { if ( !root ) return; if ( root.value ) { arr.push( root.value ); } else { if ( root.left ) getAllChildren( root.left, arr, cy ); if ( root.right ) getAllChildren( root.right, arr, cy ); } }; let buildDendrogram = function ( root, cy ) { if ( !root ) return ''; if ( root.left && root.right ) { let leftStr = buildDendrogram( root.left, cy ); let rightStr = buildDendrogram( root.right, cy ); let node = cy.add({group:'nodes', data: {id: leftStr + ',' + rightStr}}); cy.add({group:'edges', data: { source: leftStr, target: node.id() }}); cy.add({group:'edges', data: { source: rightStr, target: node.id() }}); return node.id(); } else if ( root.value ) { return root.value.id(); } }; let buildClustersFromTree = function( root, k, cy ) { if ( !root ) return []; let left = [], right = [], leaves = []; if ( k === 0 ) { // don't cut tree, simply return all nodes as 1 single cluster if ( root.left ) getAllChildren( root.left, left, cy ); if ( root.right ) getAllChildren( root.right, right, cy ); leaves = left.concat(right); return [ cy.collection(leaves) ]; } else if ( k === 1 ) { // cut at root if ( root.value ) { // leaf node return [ cy.collection( root.value ) ]; } else { if ( root.left ) getAllChildren( root.left, left, cy ); if ( root.right ) getAllChildren( root.right, right, cy ); return [ cy.collection(left), cy.collection(right) ]; } } else { if ( root.value ) { return [ cy.collection(root.value) ]; } else { if ( root.left ) left = buildClustersFromTree( root.left, k - 1, cy ); if ( root.right ) right = buildClustersFromTree( root.right, k - 1, cy ); return left.concat(right); } } }; if( process.env.NODE_ENV !== 'production' ){ /* eslint-disable no-console, no-unused-vars */ let printMatrix = function( M ) { // used for debugging purposes only let n = M.length; for(let i = 0; i < n; i++ ) { let row = ''; for ( let j = 0; j < n; j++ ) { row += Math.round(M[i][j]*100)/100 + ' '; } console.log(row); } console.log(''); }; } /* eslint-enable */ let hierarchicalClustering = function( options ){ let cy = this.cy(); let nodes = this.nodes(); // Set parameters of algorithm: linkage type, distance metric, etc. let opts = setOptions( options ); let attrs = opts.attributes; let getDist = (n1, n2) => clusteringDistance( opts.distance, attrs.length, i => attrs[i](n1), i => attrs[i](n2), n1, n2 ); // Begin hierarchical algorithm let clusters = []; let dists = []; // distances between each pair of clusters let mins = []; // closest cluster for each cluster let index = []; // hash of all clusters by key // In agglomerative (bottom-up) clustering, each node starts as its own cluster for ( let n = 0; n < nodes.length; n++ ) { let cluster = { value: (opts.mode === 'dendrogram') ? nodes[n] : [ nodes[n] ], key: n, index: n }; clusters[n] = cluster; index[n] = cluster; dists[n] = []; mins[n] = 0; } // Calculate the distance between each pair of clusters for ( let i = 0; i < clusters.length; i++ ) { for ( let j = 0; j <= i; j++ ) { let dist; if ( opts.mode === 'dendrogram' ){ // modes store cluster values differently dist = (i === j) ? Infinity : getDist( clusters[i].value, clusters[j].value ); } else { dist = (i === j) ? Infinity : getDist( clusters[i].value[0], clusters[j].value[0] ); } dists[i][j] = dist; dists[j][i] = dist; if ( dist < dists[i][mins[i]] ) { mins[i] = j; // Cache mins: closest cluster to cluster i is cluster j } } } // Find the closest pair of clusters and merge them into a single cluster. // Update distances between new cluster and each of the old clusters, and loop until threshold reached. let merged = mergeClosest( clusters, index, dists, mins, opts ); while ( merged ) { merged = mergeClosest( clusters, index, dists, mins, opts ); } let retClusters; // Dendrogram mode builds the hierarchy and adds intermediary nodes + edges // in addition to returning the clusters. if ( opts.mode === 'dendrogram') { retClusters = buildClustersFromTree( clusters[0], opts.dendrogramDepth, cy ); if ( opts.addDendrogram ) buildDendrogram( clusters[0], cy ); } else { // Regular mode simply returns the clusters retClusters = new Array(clusters.length); clusters.forEach( function( cluster, i ) { // Clean up meta data used for clustering cluster.key = cluster.index = null; retClusters[i] = cy.collection( cluster.value ); }); } return retClusters; }; export default { hierarchicalClustering, hca: hierarchicalClustering }; ================================================ FILE: src/collection/algorithms/hierholzer.mjs ================================================ import * as is from '../../is.mjs'; import { defaults } from '../../util/index.mjs'; const hierholzerDefaults = defaults({ root: undefined, directed: false }); let elesfn = ({ hierholzer: function( options ){ if (!is.plainObject(options)) { let args = arguments; options = { root: args[0], directed: args[1] }; } let { root, directed } = hierholzerDefaults(options); let eles = this; let dflag = false; let oddIn; let oddOut; let startVertex; if (root) startVertex = is.string(root) ? this.filter(root)[0].id() : root[0].id(); let nodes = {}; let edges = {}; if (directed) { eles.forEach(function(ele){ let id = ele.id(); if(ele.isNode()) { let ind = ele.indegree(true); let outd = ele.outdegree(true); let d1 = ind - outd; let d2 = outd - ind; if (d1 == 1) { if (oddIn) dflag = true; else oddIn = id; } else if (d2 == 1) { if (oddOut) dflag = true; else oddOut = id; } else if ((d2 > 1) || (d1 > 1)) { dflag = true; } nodes[id] = []; ele.outgoers().forEach(e => { if (e.isEdge()) nodes[id].push(e.id()); }); } else { edges[id] = [undefined, ele.target().id()]; } }); } else { eles.forEach(function(ele){ let id = ele.id(); if(ele.isNode()) { let d = ele.degree(true); if (d%2) { if (!oddIn) oddIn = id; else if (!oddOut) oddOut = id; else dflag = true; } nodes[id] = []; ele.connectedEdges().forEach(e => nodes[id].push(e.id())); } else { edges[id] = [ele.source().id(), ele.target().id()]; } }); } let result = { found: false, trail: undefined }; if (dflag) return result; else if (oddOut && oddIn) { if (directed) { if (startVertex && (oddOut != startVertex)) { return result; } startVertex = oddOut; } else { if (startVertex && (oddOut != startVertex) && (oddIn != startVertex)) { return result; } else if (!startVertex) { startVertex = oddOut; } } } else { if (!startVertex) startVertex = eles[0].id(); } const walk = (v) => { let currentNode = v; let subtour = [v]; let adj, adjTail, adjHead; while (nodes[currentNode].length) { adj = nodes[currentNode].shift(); adjTail = edges[adj][0]; adjHead = edges[adj][1]; if (currentNode != adjHead) { nodes[adjHead] = nodes[adjHead].filter(e => e != adj); currentNode = adjHead; } else if (!directed && (currentNode != adjTail)) { nodes[adjTail] = nodes[adjTail].filter(e => e != adj); currentNode = adjTail; } subtour.unshift(adj); subtour.unshift(currentNode); } return subtour; }; let trail = []; let subtour = []; subtour = walk(startVertex); while (subtour.length != 1) { if (nodes[subtour[0]].length == 0) { trail.unshift(eles.getElementById(subtour.shift())); trail.unshift(eles.getElementById(subtour.shift())); } else { subtour = walk(subtour.shift()).concat(subtour); } } trail.unshift(eles.getElementById(subtour.shift())); // final node for (let d in nodes) { if (nodes[d].length) { return result; } } result.found = true; result.trail = this.spawn( trail, true ); return result; }, }); export default elesfn; ================================================ FILE: src/collection/algorithms/hopcroft-tarjan-biconnected.mjs ================================================ let hopcroftTarjanBiconnected = function() { let eles = this; let nodes = {}; let id = 0; let edgeCount = 0; let components = []; let stack = []; let visitedEdges = {}; const buildComponent = (x, y) => { let i = stack.length-1; let cutset = []; let component = eles.spawn(); while (stack[i].x != x || stack[i].y != y) { cutset.push(stack.pop().edge); i--; } cutset.push(stack.pop().edge); cutset.forEach(edge => { let connectedNodes = edge.connectedNodes() .intersection(eles); component.merge(edge); connectedNodes.forEach(node => { const nodeId = node.id(); const connectedEdges = node.connectedEdges() .intersection(eles); component.merge(node); if (!nodes[nodeId].cutVertex) { component.merge(connectedEdges); } else { component.merge(connectedEdges.filter(edge => edge.isLoop())); } }); }); components.push(component); }; const biconnectedSearch = (root, currentNode, parent) => { if (root === parent) edgeCount += 1; nodes[currentNode] = { id : id, low : id++, cutVertex : false }; let edges = eles.getElementById(currentNode) .connectedEdges() .intersection(eles); if (edges.size() === 0) { components.push(eles.spawn(eles.getElementById(currentNode))); } else { let sourceId, targetId, otherNodeId, edgeId; edges.forEach(edge => { sourceId = edge.source().id(); targetId = edge.target().id(); otherNodeId = (sourceId === currentNode) ? targetId : sourceId; if (otherNodeId !== parent) { edgeId = edge.id(); if (!visitedEdges[edgeId]) { visitedEdges[edgeId] = true; stack.push({ x : currentNode, y : otherNodeId, edge }); } if (!(otherNodeId in nodes)) { biconnectedSearch(root, otherNodeId, currentNode); nodes[currentNode].low = Math.min(nodes[currentNode].low, nodes[otherNodeId].low); if (nodes[currentNode].id <= nodes[otherNodeId].low) { nodes[currentNode].cutVertex = true; buildComponent(currentNode, otherNodeId); } } else { nodes[currentNode].low = Math.min(nodes[currentNode].low, nodes[otherNodeId].id); } } }); } }; eles.forEach(ele => { if (ele.isNode()) { let nodeId = ele.id(); if (!(nodeId in nodes)) { edgeCount = 0; biconnectedSearch(nodeId, nodeId); nodes[nodeId].cutVertex = (edgeCount > 1); } } }); let cutVertices = Object.keys(nodes) .filter(id => nodes[id].cutVertex) .map(id => eles.getElementById(id)); return { cut: eles.spawn(cutVertices), components }; }; export default { hopcroftTarjanBiconnected, htbc: hopcroftTarjanBiconnected, htb: hopcroftTarjanBiconnected, hopcroftTarjanBiconnectedComponents: hopcroftTarjanBiconnected }; ================================================ FILE: src/collection/algorithms/index.mjs ================================================ import * as util from '../../util/index.mjs'; import bfsDfs from './bfs-dfs.mjs'; import dijkstra from './dijkstra.mjs'; import kruskal from './kruskal.mjs'; import aStar from './a-star.mjs'; import floydWarshall from './floyd-warshall.mjs'; import bellmanFord from './bellman-ford.mjs'; import kargerStein from './karger-stein.mjs'; import pageRank from './page-rank.mjs'; import degreeCentrality from './degree-centrality.mjs'; import closenessCentrality from './closeness-centrality.mjs'; import betweennessCentrality from './betweenness-centrality.mjs'; import markovClustering from './markov-clustering.mjs'; import kClustering from './k-clustering.mjs'; import hierarchicalClustering from './hierarchical-clustering.mjs'; import affinityPropagation from './affinity-propagation.mjs'; import hierholzer from './hierholzer.mjs'; import hopcroftTarjanBiconnected from './hopcroft-tarjan-biconnected.mjs'; import tarjanStronglyConnected from './tarjan-strongly-connected.mjs'; var elesfn = {}; [ bfsDfs, dijkstra, kruskal, aStar, floydWarshall, bellmanFord, kargerStein, pageRank, degreeCentrality, closenessCentrality, betweennessCentrality, markovClustering, kClustering, hierarchicalClustering, affinityPropagation, hierholzer, hopcroftTarjanBiconnected, tarjanStronglyConnected ].forEach(function(props) { util.extend(elesfn, props); }); export default elesfn; ================================================ FILE: src/collection/algorithms/k-clustering.mjs ================================================ // Implemented by Zoe Xi @zoexi for GSOC 2016 // https://github.com/cytoscape/cytoscape.js-k-means // References for k-means: https://harthur.github.io/clusterfck/ // References for k-medoids: http://www.math.le.ac.uk/people/ag153/homepage/KmeansKmedoids/Kmeans_Kmedoids.html // References for fuzzy c-means: Ross, Fuzzy Logic w/Engineering Applications (2010), pages 352-353 // http://yaikhom.com/2013/03/16/implementing-the-fuzzy-c-means-algorithm.html import clusteringDistance from './clustering-distances.mjs'; import * as util from '../../util/index.mjs'; let defaults = util.defaults({ k: 2, m: 2, sensitivityThreshold: 0.0001, distance: 'euclidean', maxIterations: 10, attributes: [], testMode: false, testCentroids: null }); var setOptions = ( options ) => defaults( options ); if( process.env.NODE_ENV !== 'production' ){ /* eslint-disable no-console, no-unused-vars */ var printMatrix = function( M ) { // used for debugging purposes only for ( let i = 0; i < M.length; i++ ) { let row = ''; for ( let j = 0; j < M[0].length; j++ ) { row += Number(M[i][j]).toFixed(3) + ' '; } console.log(row); } console.log(''); }; } /* eslint-enable */ let getDist = function(type, node, centroid, attributes, mode){ let noNodeP = mode !== 'kMedoids'; let getP = noNodeP ? ( i => centroid[i] ) : ( i => attributes[i](centroid) ); let getQ = i => attributes[i](node); let nodeP = centroid; let nodeQ = node; return clusteringDistance( type, attributes.length, getP, getQ, nodeP, nodeQ ); }; let randomCentroids = function( nodes, k, attributes ) { let ndim = attributes.length; let min = new Array(ndim); let max = new Array(ndim); let centroids = new Array(k); let centroid = null; // Find min, max values for each attribute dimension for ( let i = 0; i < ndim; i++ ) { min[i] = nodes.min( attributes[i] ).value; max[i] = nodes.max( attributes[i] ).value; } // Build k centroids, each represented as an n-dim feature vector for ( let c = 0; c < k; c++ ) { centroid = []; for ( let i = 0; i < ndim; i++ ) { centroid[i] = Math.random() * (max[i] - min[i]) + min[i]; // random initial value } centroids[c] = centroid; } return centroids; }; let classify = function( node, centroids, distance, attributes, type ) { let min = Infinity; let index = 0; for ( let i = 0; i < centroids.length; i++ ) { let dist = getDist( distance, node, centroids[i], attributes, type ); if (dist < min) { min = dist; index = i; } } return index; }; let buildCluster = function( centroid, nodes, assignment ) { let cluster = []; let node = null; for ( let n = 0; n < nodes.length; n++ ) { node = nodes[n]; if ( assignment[ node.id() ] === centroid ) { //console.log("Node " + node.id() + " is associated with medoid #: " + m); cluster.push( node ); } } return cluster; }; let haveValuesConverged = function( v1, v2, sensitivityThreshold ){ return Math.abs( v2 - v1 ) <= sensitivityThreshold; }; let haveMatricesConverged = function( v1, v2, sensitivityThreshold ) { for ( let i = 0; i < v1.length; i++ ) { for (let j = 0; j < v1[i].length; j++ ) { let diff = Math.abs( v1[i][j] - v2[i][j] ); if( diff > sensitivityThreshold ){ return false; } } } return true; }; let seenBefore = function ( node, medoids, n ) { for ( let i = 0; i < n; i++ ) { if ( node === medoids[i] ) return true; } return false; }; let randomMedoids = function( nodes, k ) { let medoids = new Array(k); // For small data sets, the probability of medoid conflict is greater, // so we need to check to see if we've already seen or chose this node before. if (nodes.length < 50) { // Randomly select k medoids from the n nodes for (let i = 0; i < k; i++) { let node = nodes[ Math.floor( Math.random() * nodes.length ) ]; // If we've already chosen this node to be a medoid, don't choose it again (for small data sets). // Instead choose a different random node. while ( seenBefore( node, medoids, i ) ) { node = nodes[ Math.floor( Math.random() * nodes.length ) ]; } medoids[i] = node; } } else { // Relatively large data set, so pretty safe to not check and just select random nodes for (let i = 0; i < k; i++) { medoids[i] = nodes[ Math.floor( Math.random() * nodes.length ) ]; } } return medoids; }; let findCost = function( potentialNewMedoid, cluster, attributes ) { let cost = 0; for ( let n = 0; n < cluster.length; n++ ) { cost += getDist( 'manhattan', cluster[n], potentialNewMedoid, attributes, 'kMedoids' ); } return cost; }; let kMeans = function( options ){ let cy = this.cy(); let nodes = this.nodes(); let node = null; // Set parameters of algorithm: # of clusters, distance metric, etc. let opts = setOptions( options ); // Begin k-means algorithm let clusters = new Array(opts.k); let assignment = {}; let centroids; // Step 1: Initialize centroid positions if ( opts.testMode ) { if( typeof opts.testCentroids === 'number') { // TODO: implement a seeded random number generator. let seed = opts.testCentroids; centroids = randomCentroids( nodes, opts.k, opts.attributes, seed ); } else if ( typeof opts.testCentroids === 'object') { centroids = opts.testCentroids; } else { centroids = randomCentroids( nodes, opts.k, opts.attributes ); } } else { centroids = randomCentroids( nodes, opts.k, opts.attributes ); } let isStillMoving = true; let iterations = 0; while ( isStillMoving && iterations < opts.maxIterations ) { // Step 2: Assign nodes to the nearest centroid for ( let n = 0; n < nodes.length; n++ ) { node = nodes[n]; // Determine which cluster this node belongs to: node id => cluster # assignment[ node.id() ] = classify( node, centroids, opts.distance, opts.attributes, 'kMeans' ); } // Step 3: For each of the k clusters, update its centroid isStillMoving = false; for ( let c = 0; c < opts.k; c++ ) { // Get all nodes that belong to this cluster let cluster = buildCluster( c, nodes, assignment ); if ( cluster.length === 0 ) { // If cluster is empty, break out early & move to next cluster continue; } // Update centroids by calculating avg of all nodes within the cluster. let ndim = opts.attributes.length; let centroid = centroids[c]; // [ dim_1, dim_2, dim_3, ... , dim_n ] let newCentroid = new Array(ndim); let sum = new Array(ndim); for ( let d = 0; d < ndim; d++ ) { sum[d] = 0.0; for ( let i = 0; i < cluster.length; i++ ) { node = cluster[i]; sum[d] += opts.attributes[d](node); } newCentroid[d] = sum[d] / cluster.length; // Check to see if algorithm has converged, i.e. when centroids no longer change if ( !haveValuesConverged(newCentroid[d], centroid[d], opts.sensitivityThreshold) ) { isStillMoving = true; } } centroids[c] = newCentroid; clusters[c] = cy.collection( cluster ); } iterations++; } return clusters; }; let kMedoids = function( options ) { let cy = this.cy(); let nodes = this.nodes(); let node = null; let opts = setOptions( options ); // Begin k-medoids algorithm let clusters = new Array(opts.k); let medoids; let assignment = {}; let curCost; let minCosts = new Array(opts.k); // minimum cost configuration for each cluster // Step 1: Initialize k medoids if ( opts.testMode ) { if( typeof opts.testCentroids === 'number') { // TODO: implement random generator so user can just input seed number } else if ( typeof opts.testCentroids === 'object') { medoids = opts.testCentroids; } else { medoids = randomMedoids(nodes, opts.k); } } else { medoids = randomMedoids(nodes, opts.k); } let isStillMoving = true; let iterations = 0; while ( isStillMoving && iterations < opts.maxIterations ) { // Step 2: Assign nodes to the nearest medoid for ( let n = 0; n < nodes.length; n++ ) { node = nodes[n]; // Determine which cluster this node belongs to: node id => cluster # assignment[ node.id() ] = classify( node, medoids, opts.distance, opts.attributes, 'kMedoids' ); } isStillMoving = false; // Step 3: For each medoid m, and for each node associated with mediod m, // select the node with the lowest configuration cost as new medoid. for ( let m = 0; m < medoids.length; m++ ) { // Get all nodes that belong to this medoid let cluster = buildCluster( m, nodes, assignment ); if ( cluster.length === 0 ) { // If cluster is empty, break out early & move to next cluster continue; } minCosts[m] = findCost( medoids[m], cluster, opts.attributes ); // original cost // Select different medoid if its configuration has the lowest cost for ( let n = 0; n < cluster.length; n++ ) { curCost = findCost( cluster[n], cluster, opts.attributes ); if ( curCost < minCosts[m] ) { minCosts[m] = curCost; medoids[m] = cluster[n]; isStillMoving = true; } } clusters[m] = cy.collection( cluster ); } iterations++; } return clusters; }; let updateCentroids = function( centroids, nodes, U, weight, opts ) { let numerator, denominator; for ( let n = 0; n < nodes.length; n++ ) { for ( let c = 0; c < centroids.length; c++ ) { weight[n][c] = Math.pow( U[n][c], opts.m ); } } for ( let c = 0; c < centroids.length; c++ ) { for ( let dim = 0; dim < opts.attributes.length; dim++ ) { numerator = 0; denominator = 0; for ( let n = 0; n < nodes.length; n++ ) { numerator += weight[n][c] * opts.attributes[dim](nodes[n]); denominator += weight[n][c]; } centroids[c][dim] = numerator / denominator; } } }; let updateMembership = function( U, _U, centroids, nodes, opts ) { // Save previous step for (let i = 0; i < U.length; i++) { _U[i] = U[i].slice(); } let sum, numerator, denominator; let pow = 2 / (opts.m - 1); for ( let c = 0; c < centroids.length; c++ ) { for ( let n = 0; n < nodes.length; n++ ) { sum = 0; for ( let k = 0; k < centroids.length; k++ ) { // against all other centroids numerator = getDist( opts.distance, nodes[n], centroids[c], opts.attributes, 'cmeans' ); denominator = getDist( opts.distance, nodes[n], centroids[k], opts.attributes, 'cmeans' ); sum += Math.pow( numerator / denominator, pow ); } U[n][c] = 1 / sum; } } }; let assign = function( nodes, U, opts, cy ) { let clusters = new Array(opts.k); for ( let c = 0; c < clusters.length; c++ ) { clusters[c] = []; } let max; let index; for ( let n = 0; n < U.length; n++ ) { // for each node (U is N x C matrix) max = -Infinity; index = -1; // Determine which cluster the node is most likely to belong in for ( let c = 0; c < U[0].length; c++ ) { if ( U[n][c] > max ) { max = U[n][c]; index = c; } } clusters[index].push( nodes[n] ); } // Turn every array into a collection of nodes for ( let c = 0; c < clusters.length; c++ ) { clusters[c] = cy.collection( clusters[c] ); } return clusters; }; let fuzzyCMeans = function( options ) { let cy = this.cy(); let nodes = this.nodes(); let opts = setOptions( options ); // Begin fuzzy c-means algorithm let clusters; let centroids; let U; let _U; let weight; // Step 1: Initialize letiables. _U = new Array(nodes.length); for ( let i = 0; i < nodes.length; i++ ) { // N x C matrix _U[i] = new Array(opts.k); } U = new Array(nodes.length); for ( let i = 0; i < nodes.length; i++ ) { // N x C matrix U[i] = new Array(opts.k); } for (let i = 0; i < nodes.length; i++) { let total = 0; for (let j = 0; j < opts.k; j++) { U[i][j] = Math.random(); total += U[i][j]; } for (let j = 0; j < opts.k; j++) { U[i][j] = U[i][j] / total; } } centroids = new Array(opts.k); for ( let i = 0; i < opts.k; i++ ) { centroids[i] = new Array(opts.attributes.length); } weight = new Array(nodes.length); for ( let i = 0; i < nodes.length; i++ ) { // N x C matrix weight[i] = new Array(opts.k); } // end init FCM let isStillMoving = true; let iterations = 0; while ( isStillMoving && iterations < opts.maxIterations ) { isStillMoving = false; // Step 2: Calculate the centroids for each step. updateCentroids( centroids, nodes, U, weight, opts ); // Step 3: Update the partition matrix U. updateMembership( U, _U, centroids, nodes, opts ); // Step 4: Check for convergence. if ( !haveMatricesConverged( U, _U, opts.sensitivityThreshold ) ) { isStillMoving = true; } iterations++; } // Assign nodes to clusters with highest probability. clusters = assign( nodes, U, opts, cy ); return { clusters: clusters, degreeOfMembership: U }; }; export default { kMeans, kMedoids, fuzzyCMeans, fcm: fuzzyCMeans }; ================================================ FILE: src/collection/algorithms/karger-stein.mjs ================================================ import { error } from '../../util/index.mjs'; const sqrt2 = Math.sqrt(2); // Function which colapses 2 (meta) nodes into one // Updates the remaining edge lists // Receives as a paramater the edge which causes the collapse const collapse = function( edgeIndex, nodeMap, remainingEdges ){ if( remainingEdges.length === 0 ){ error(`Karger-Stein must be run on a connected (sub)graph`); } let edgeInfo = remainingEdges[ edgeIndex ]; let sourceIn = edgeInfo[1]; let targetIn = edgeInfo[2]; let partition1 = nodeMap[ sourceIn ]; let partition2 = nodeMap[ targetIn ]; let newEdges = remainingEdges; // re-use array // Delete all edges between partition1 and partition2 for( let i = newEdges.length - 1; i >=0; i-- ){ let edge = newEdges[i]; let src = edge[1]; let tgt = edge[2]; if( ( nodeMap[ src ] === partition1 && nodeMap[ tgt ] === partition2 ) || ( nodeMap[ src ] === partition2 && nodeMap[ tgt ] === partition1 ) ){ newEdges.splice(i, 1); } } // All edges pointing to partition2 should now point to partition1 for( let i = 0; i < newEdges.length; i++ ){ let edge = newEdges[i]; if( edge[1] === partition2 ){ // Check source newEdges[i] = edge.slice(); // copy newEdges[i][1] = partition1; } else if( edge[2] === partition2 ){ // Check target newEdges[i] = edge.slice(); // copy newEdges[i][2] = partition1; } } // Move all nodes from partition2 to partition1 for( let i = 0; i < nodeMap.length; i++ ){ if( nodeMap[i] === partition2 ){ nodeMap[i] = partition1; } } return newEdges; }; // Contracts a graph until we reach a certain number of meta nodes const contractUntil = function( metaNodeMap, remainingEdges, size, sizeLimit ){ while( size > sizeLimit ){ // Choose an edge randomly let edgeIndex = Math.floor( (Math.random() * remainingEdges.length) ); // Collapse graph based on edge remainingEdges = collapse( edgeIndex, metaNodeMap, remainingEdges ); size--; } return remainingEdges; }; const elesfn = ({ // Computes the minimum cut of an undirected graph // Returns the correct answer with high probability kargerStein: function(){ let { nodes, edges } = this.byGroup(); edges.unmergeBy(edge => edge.isLoop()); let numNodes = nodes.length; let numEdges = edges.length; let numIter = Math.ceil( Math.pow( Math.log( numNodes ) / Math.LN2, 2 ) ); let stopSize = Math.floor( numNodes / sqrt2 ); if( numNodes < 2 ){ error( 'At least 2 nodes are required for Karger-Stein algorithm' ); return undefined; } // Now store edge destination as indexes // Format for each edge (edge index, source node index, target node index) let edgeIndexes = []; for( let i = 0; i < numEdges; i++ ){ let e = edges[ i ]; edgeIndexes.push([ i, nodes.indexOf(e.source()), nodes.indexOf(e.target()) ]); } // We will store the best cut found here let minCutSize = Infinity; let minCutEdgeIndexes = []; let minCutNodeMap = new Array(numNodes); // Initial meta node partition let metaNodeMap = new Array(numNodes); let metaNodeMap2 = new Array(numNodes); let copyNodesMap = (from, to) => { for( let i = 0; i < numNodes; i++ ){ to[i] = from[i]; } }; // Main loop for( let iter = 0; iter <= numIter; iter++ ){ // Reset meta node partition for( let i = 0; i < numNodes; i++ ){ metaNodeMap[i] = i; } // Contract until stop point (stopSize nodes) let edgesState = contractUntil( metaNodeMap, edgeIndexes.slice(), numNodes, stopSize ); let edgesState2 = edgesState.slice(); // copy // Create a copy of the colapsed nodes state copyNodesMap(metaNodeMap, metaNodeMap2); // Run 2 iterations starting in the stop state let res1 = contractUntil( metaNodeMap, edgesState, stopSize, 2 ); let res2 = contractUntil( metaNodeMap2, edgesState2, stopSize, 2 ); // Is any of the 2 results the best cut so far? if( res1.length <= res2.length && res1.length < minCutSize ){ minCutSize = res1.length; minCutEdgeIndexes = res1; copyNodesMap(metaNodeMap, minCutNodeMap); } else if( res2.length <= res1.length && res2.length < minCutSize ){ minCutSize = res2.length; minCutEdgeIndexes = res2; copyNodesMap(metaNodeMap2, minCutNodeMap); } } // end of main loop // Construct result let cut = this.spawn( minCutEdgeIndexes.map(e => edges[e[0]]) ); let partition1 = this.spawn(); let partition2 = this.spawn(); // traverse metaNodeMap for best cut let witnessNodePartition = minCutNodeMap[0]; for( let i = 0; i < minCutNodeMap.length; i++ ){ let partitionId = minCutNodeMap[i]; let node = nodes[i]; if( partitionId === witnessNodePartition ){ partition1.merge( node ); } else { partition2.merge( node ); } } // construct components corresponding to each disjoint subset of nodes const constructComponent = (subset) => { const component = this.spawn(); subset.forEach(node => { component.merge(node); node.connectedEdges().forEach(edge => { // ensure edge is within calling collection and edge is not in cut if (this.contains(edge) && !cut.contains(edge)) { component.merge(edge); } }); }); return component; }; const components = [ constructComponent(partition1), constructComponent(partition2) ]; let ret = { cut, components, // n.b. partitions are included to be compatible with the old api spec // (could be removed in a future major version) partition1, partition2 }; return ret; } }); // elesfn export default elesfn; ================================================ FILE: src/collection/algorithms/kruskal.mjs ================================================ let elesfn = ({ // kruskal's algorithm (finds min spanning tree, assuming undirected graph) // implemented from pseudocode from wikipedia kruskal: function( weightFn ){ weightFn = weightFn || ( edge => 1 ); let { nodes, edges } = this.byGroup(); let numNodes = nodes.length; let forest = new Array(numNodes); let A = nodes; // assumes byGroup() creates new collections that can be safely mutated let findSetIndex = ele => { for( let i = 0; i < forest.length; i++ ){ let eles = forest[i]; if( eles.has(ele) ){ return i; } } }; // start with one forest per node for( let i = 0; i < numNodes; i++ ){ forest[i] = this.spawn( nodes[i] ); } let S = edges.sort( (a, b) => weightFn(a) - weightFn(b) ); for( let i = 0; i < S.length; i++ ){ let edge = S[i]; let u = edge.source()[0]; let v = edge.target()[0]; let setUIndex = findSetIndex(u); let setVIndex = findSetIndex(v); let setU = forest[ setUIndex ]; let setV = forest[ setVIndex ]; if( setUIndex !== setVIndex ){ A.merge( edge ); // combine forests for u and v setU.merge( setV ); forest.splice( setVIndex, 1 ); } } return A; } }); export default elesfn; ================================================ FILE: src/collection/algorithms/markov-clustering.mjs ================================================ // Implemented by Zoe Xi @zoexi for GSOC 2016 // https://github.com/cytoscape/cytoscape.js-markov-cluster // Implemented from Stijn van Dongen's (author of MCL algorithm) documentation: http://micans.org/mcl/ // and lecture notes: https://www.cs.ucsb.edu/~xyan/classes/CS595D-2009winter/MCL_Presentation2.pdf import * as util from '../../util/index.mjs'; /* eslint-disable no-unused-vars */ let defaults = util.defaults({ expandFactor: 2, // affects time of computation and cluster granularity to some extent: M * M inflateFactor: 2, // affects cluster granularity (the greater the value, the more clusters): M(i,j) / E(j) multFactor: 1, // optional self loops for each node. Use a neutral value to improve cluster computations. maxIterations: 20, // maximum number of iterations of the MCL algorithm in a single run attributes: [ // attributes/features used to group nodes, ie. similarity values between nodes function(edge) { return 1; } ] }); /* eslint-enable */ let setOptions = ( options ) => defaults( options ); /* eslint-disable no-unused-vars, no-console */ if( process.env.NODE_ENV !== 'production' ){ var printMatrix = function( M ) { // used for debugging purposes only let n = Math.sqrt(M.length); for ( let i = 0; i < n; i++ ) { let row = ''; for ( let j = 0; j < n; j++ ) { row += Number(M[i*n+j]).toFixed(3) + ' '; } console.log(row); } console.log(''); }; } /* eslint-enable */ let getSimilarity = function( edge, attributes ) { let total = 0; for ( let i = 0; i < attributes.length; i++ ) { total += attributes[i]( edge ); } return total; }; let addLoops = function( M, n, val ) { for (let i = 0; i < n; i++) { M[i * n + i] = val; } }; let normalize = function( M, n ) { let sum; for ( let col = 0; col < n; col++ ) { sum = 0; for ( let row = 0; row < n; row++ ) { sum += M[row * n + col]; } for ( let row = 0; row < n; row++ ) { M[row * n + col] = M[row * n + col] / sum; } } }; // TODO: blocked matrix multiplication? let mmult = function( A, B, n ) { let C = new Array( n * n ); for ( let i = 0; i < n; i++ ) { for ( let j = 0; j < n; j++ ) { C[i * n + j] = 0; } for ( let k = 0; k < n; k++ ) { for ( let j = 0; j < n; j++ ) { C[i * n + j] += A[i * n + k] * B[k * n + j]; } } } return C; }; let expand = function( M, n, expandFactor /** power **/ ) { let _M = M.slice(0); for ( let p = 1; p < expandFactor; p++ ) { M = mmult( M, _M, n ); } return M; }; let inflate = function( M, n, inflateFactor /** r **/ ) { let _M = new Array( n * n ); // M(i,j) ^ inflatePower for ( let i = 0; i < n * n; i++ ) { _M[i] = Math.pow( M[i], inflateFactor ); } normalize( _M, n ); return _M; }; let hasConverged = function( M, _M, n2, roundFactor ) { // Check that both matrices have the same elements (i,j) for ( let i = 0; i < n2; i++ ) { let v1 = Math.round( M[i] * Math.pow(10, roundFactor) ) / Math.pow(10, roundFactor); // truncate to 'roundFactor' decimal places let v2 = Math.round( _M[i] * Math.pow(10, roundFactor) ) / Math.pow(10, roundFactor); if ( v1 !== v2 ) { return false; } } return true; }; let assign = function( M, n, nodes, cy ) { let clusters = []; for ( let i = 0; i < n; i++ ) { let cluster = []; for ( let j = 0; j < n; j++ ) { // Row-wise attractors and elements that they attract belong in same cluster if ( Math.round( M[i * n + j] * 1000 ) / 1000 > 0 ) { cluster.push( nodes[j] ); } } if ( cluster.length !== 0 ) { clusters.push( cy.collection(cluster) ); } } return clusters; }; let isDuplicate = function( c1, c2 ) { for (let i = 0; i < c1.length; i++) { if (!c2[i] || c1[i].id() !== c2[i].id()) { return false; } } return true; }; let removeDuplicates = function( clusters ) { for (let i = 0; i < clusters.length; i++) { for (let j = 0; j < clusters.length; j++) { if (i != j && isDuplicate(clusters[i], clusters[j])) { clusters.splice(j, 1); } } } return clusters; }; let markovClustering = function( options ) { let nodes = this.nodes(); let edges = this.edges(); let cy = this.cy(); // Set parameters of algorithm: let opts = setOptions( options ); // Map each node to its position in node array let id2position = {}; for( let i = 0; i < nodes.length; i++ ){ id2position[ nodes[i].id() ] = i; } // Generate stochastic matrix M from input graph G (should be symmetric/undirected) let n = nodes.length, n2 = n * n; let M = new Array( n2 ), _M; for ( let i = 0; i < n2; i++ ) { M[i] = 0; } for ( let e = 0; e < edges.length; e++ ) { let edge = edges[e]; let i = id2position[ edge.source().id() ]; let j = id2position[ edge.target().id() ]; let sim = getSimilarity( edge, opts.attributes ); M[i * n + j] += sim; // G should be symmetric and undirected M[j * n + i] += sim; } // Begin Markov cluster algorithm // Step 1: Add self loops to each node, ie. add multFactor to matrix diagonal addLoops( M, n, opts.multFactor ); // Step 2: M = normalize( M ); normalize( M, n ); let isStillMoving = true; let iterations = 0; while ( isStillMoving && iterations < opts.maxIterations ) { isStillMoving = false; // Step 3: _M = expand( M, n, opts.expandFactor ); // Step 4: M = inflate( _M, n, opts.inflateFactor ); // Step 5: check to see if ~steady state has been reached if ( ! hasConverged( M, _M, n2, 4 ) ) { isStillMoving = true; } iterations++; } // Build clusters from matrix let clusters = assign( M, n, nodes, cy ); // Remove duplicate clusters due to symmetry of graph and M matrix clusters = removeDuplicates( clusters ); return clusters; }; export default { markovClustering, mcl: markovClustering }; ================================================ FILE: src/collection/algorithms/page-rank.mjs ================================================ import { defaults } from '../../util/index.mjs'; import { inPlaceSumNormalize } from '../../math.mjs'; const pageRankDefaults = defaults({ dampingFactor: 0.8, precision: 0.000001, iterations: 200, weight: edge => 1 }); let elesfn = ({ pageRank: function( options ){ let { dampingFactor, precision, iterations, weight } = pageRankDefaults(options); let cy = this._private.cy; let { nodes, edges } = this.byGroup(); let numNodes = nodes.length; let numNodesSqd = numNodes * numNodes; let numEdges = edges.length; // Construct transposed adjacency matrix // First lets have a zeroed matrix of the right size // We'll also keep track of the sum of each column let matrix = new Array(numNodesSqd); let columnSum = new Array(numNodes); let additionalProb = (1 - dampingFactor) / numNodes; // Create null matrix for( let i = 0; i < numNodes; i++ ){ for( let j = 0; j < numNodes; j++ ){ let n = i * numNodes + j; matrix[n] = 0; } columnSum[i] = 0; } // Now, process edges for( let i = 0; i < numEdges; i++ ){ let edge = edges[ i ]; let srcId = edge.data('source'); let tgtId = edge.data('target'); // Don't include loops in the matrix if( srcId === tgtId ){ continue; } let s = nodes.indexOfId( srcId ); let t = nodes.indexOfId( tgtId ); let w = weight( edge ); let n = t * numNodes + s; // Update matrix matrix[n] += w; // Update column sum columnSum[s] += w; } // Add additional probability based on damping factor // Also, take into account columns that have sum = 0 let p = 1.0 / numNodes + additionalProb; // Shorthand // Traverse matrix, column by column for( let j = 0; j < numNodes; j++ ){ if( columnSum[j] === 0 ){ // No 'links' out from node jth, assume equal probability for each possible node for( let i = 0; i < numNodes; i++ ){ let n = i * numNodes + j; matrix[n] = p; } } else { // Node jth has outgoing link, compute normalized probabilities for( let i = 0; i < numNodes; i++ ){ let n = i * numNodes + j; matrix[n] = matrix[n] / columnSum[j] + additionalProb; } } } // Compute dominant eigenvector using power method let eigenvector = new Array(numNodes); let temp = new Array(numNodes); let previous; // Start with a vector of all 1's // Also, initialize a null vector which will be used as shorthand for( let i = 0; i < numNodes; i++ ){ eigenvector[i] = 1; } for( let iter = 0; iter < iterations; iter++ ){ // Temp array with all 0's for( let i = 0; i < numNodes; i++ ){ temp[i] = 0; } // Multiply matrix with previous result for( let i = 0; i < numNodes; i++ ){ for( let j = 0; j < numNodes; j++ ){ let n = i * numNodes + j; temp[i] += matrix[n] * eigenvector[j]; } } inPlaceSumNormalize( temp ); previous = eigenvector; eigenvector = temp; temp = previous; let diff = 0; // Compute difference (squared module) of both vectors for( let i = 0; i < numNodes; i++ ){ let delta = previous[i] - eigenvector[i]; diff += delta * delta; } // If difference is less than the desired threshold, stop iterating if( diff < precision ){ break; } } // Construct result let res = { rank: function( node ){ node = cy.collection(node)[0]; return eigenvector[ nodes.indexOf(node) ]; } }; return res; } // pageRank }); // elesfn export default elesfn; ================================================ FILE: src/collection/algorithms/tarjan-strongly-connected.mjs ================================================ let tarjanStronglyConnected = function() { let eles = this; let nodes = {}; let index = 0; let components = []; let stack = []; let cut = eles.spawn(eles); const stronglyConnectedSearch = sourceNodeId => { stack.push(sourceNodeId); nodes[sourceNodeId] = { index : index, low : index++, explored : false }; let connectedEdges = eles.getElementById(sourceNodeId) .connectedEdges() .intersection(eles); connectedEdges.forEach(edge => { let targetNodeId = edge.target().id(); if (targetNodeId !== sourceNodeId) { if (!(targetNodeId in nodes)) { stronglyConnectedSearch(targetNodeId); } if (!(nodes[targetNodeId].explored)) { nodes[sourceNodeId].low = Math.min(nodes[sourceNodeId].low, nodes[targetNodeId].low); } } }); if (nodes[sourceNodeId].index === nodes[sourceNodeId].low) { let componentNodes = eles.spawn(); for (;;) { const nodeId = stack.pop(); componentNodes.merge(eles.getElementById(nodeId)); nodes[nodeId].low = nodes[sourceNodeId].index; nodes[nodeId].explored = true; if (nodeId === sourceNodeId) { break; } } let componentEdges = componentNodes.edgesWith(componentNodes); let component = componentNodes.merge(componentEdges); components.push(component); cut = cut.difference(component); } }; eles.forEach(ele => { if (ele.isNode()) { let nodeId = ele.id(); if (!(nodeId in nodes)) { stronglyConnectedSearch(nodeId); } } }); return { cut, components }; }; export default { tarjanStronglyConnected, tsc: tarjanStronglyConnected, tscc: tarjanStronglyConnected, tarjanStronglyConnectedComponents: tarjanStronglyConnected }; ================================================ FILE: src/collection/animation.mjs ================================================ import define from '../define/index.mjs'; let elesfn = ({ animate: define.animate(), animation: define.animation(), animated: define.animated(), clearQueue: define.clearQueue(), delay: define.delay(), delayAnimation: define.delayAnimation(), stop: define.stop() }); export default elesfn; ================================================ FILE: src/collection/cache-traversal-call.mjs ================================================ import * as is from '../is.mjs'; import * as util from '../util/index.mjs'; let cache = function( fn, name ){ return function traversalCache( arg1, arg2, arg3, arg4 ){ let selectorOrEles = arg1; let eles = this; let key; if( selectorOrEles == null ){ key = ''; } else if( is.elementOrCollection( selectorOrEles ) && selectorOrEles.length === 1 ){ key = selectorOrEles.id(); } if( eles.length === 1 && key ){ let _p = eles[0]._private; let tch = _p.traversalCache = _p.traversalCache || {}; let ch = tch[ name ] = tch[ name ] || []; let hash = util.hashString( key ); let cacheHit = ch[ hash ]; if( cacheHit ){ return cacheHit; } else { return ( ch[ hash ] = fn.call( eles, arg1, arg2, arg3, arg4 ) ); } } else { return fn.call( eles, arg1, arg2, arg3, arg4 ); } }; }; export default cache; ================================================ FILE: src/collection/class.mjs ================================================ import Set from '../set.mjs'; import * as is from '../is.mjs'; let elesfn = ({ classes: function( classes ){ let self = this; if( classes === undefined ){ let ret = []; self[0]._private.classes.forEach(cls => ret.push(cls)); return ret; } else if( !is.array( classes ) ){ // extract classes from string classes = ( classes || '' ).match( /\S+/g ) || []; } let changed = []; let classesSet = new Set( classes ); // check and update each ele for( let j = 0; j < self.length; j++ ){ let ele = self[ j ]; let _p = ele._private; let eleClasses = _p.classes; let changedEle = false; // check if ele has all of the passed classes for( let i = 0; i < classes.length; i++ ){ let cls = classes[i]; let eleHasClass = eleClasses.has(cls); if( !eleHasClass ){ changedEle = true; break; } } // check if ele has classes outside of those passed if( !changedEle ){ changedEle = eleClasses.size !== classes.length; } if( changedEle ){ _p.classes = classesSet; changed.push( ele ); } } // trigger update style on those eles that had class changes if( changed.length > 0 ){ this.spawn( changed ) .updateStyle() .emit( 'class' ) ; } return self; }, addClass: function( classes ){ return this.toggleClass( classes, true ); }, hasClass: function( className ){ let ele = this[0]; return ( ele != null && ele._private.classes.has(className) ); }, toggleClass: function( classes, toggle ){ if( !is.array( classes ) ){ // extract classes from string classes = classes.match( /\S+/g ) || []; } let self = this; let toggleUndefd = toggle === undefined; let changed = []; // eles who had classes changed for( let i = 0, il = self.length; i < il; i++ ){ let ele = self[ i ]; let eleClasses = ele._private.classes; let changedEle = false; for( let j = 0; j < classes.length; j++ ){ let cls = classes[ j ]; let hasClass = eleClasses.has(cls); let changedNow = false; if( toggle || (toggleUndefd && !hasClass) ){ eleClasses.add(cls); changedNow = true; } else if( !toggle || (toggleUndefd && hasClass) ){ eleClasses.delete(cls); changedNow = true; } if( !changedEle && changedNow ){ changed.push( ele ); changedEle = true; } } // for j classes } // for i eles // trigger update style on those eles that had class changes if( changed.length > 0 ){ this.spawn( changed ) .updateStyle() .emit( 'class' ) ; } return self; }, removeClass: function( classes ){ return this.toggleClass( classes, false ); }, flashClass: function( classes, duration ){ let self = this; if( duration == null ){ duration = 250; } else if( duration === 0 ){ return self; // nothing to do really } self.addClass( classes ); setTimeout( function(){ self.removeClass( classes ); }, duration ); return self; } }); elesfn.className = elesfn.classNames = elesfn.classes; export default elesfn; ================================================ FILE: src/collection/comparators.mjs ================================================ import Selector from '../selector/index.mjs'; let elesfn = ({ allAre: function( selector ){ let selObj = new Selector( selector ); return this.every(function( ele ){ return selObj.matches( ele ); }); }, is: function( selector ){ let selObj = new Selector( selector ); return this.some(function( ele ){ return selObj.matches( ele ); }); }, some: function( fn, thisArg ){ for( let i = 0; i < this.length; i++ ){ let ret = !thisArg ? fn( this[ i ], i, this ) : fn.apply( thisArg, [ this[ i ], i, this ] ); if( ret ){ return true; } } return false; }, every: function( fn, thisArg ){ for( let i = 0; i < this.length; i++ ){ let ret = !thisArg ? fn( this[ i ], i, this ) : fn.apply( thisArg, [ this[ i ], i, this ] ); if( !ret ){ return false; } } return true; }, same: function( collection ){ // cheap collection ref check if( this === collection ){ return true; } collection = this.cy().collection( collection ); let thisLength = this.length; let collectionLength = collection.length; // cheap length check if( thisLength !== collectionLength ){ return false; } // cheap element ref check if( thisLength === 1 ){ return this[0] === collection[0]; } return this.every(function( ele ){ return collection.hasElementWithId( ele.id() ); }); }, anySame: function( collection ){ collection = this.cy().collection( collection ); return this.some(function( ele ){ return collection.hasElementWithId( ele.id() ); }); }, allAreNeighbors: function( collection ){ collection = this.cy().collection( collection ); let nhood = this.neighborhood(); return collection.every(function( ele ){ return nhood.hasElementWithId( ele.id() ); }); }, contains: function( collection ){ collection = this.cy().collection( collection ); let self = this; return collection.every(function( ele ){ return self.hasElementWithId( ele.id() ); }); } }); elesfn.allAreNeighbours = elesfn.allAreNeighbors; elesfn.has = elesfn.contains; elesfn.equal = elesfn.equals = elesfn.same; export default elesfn; ================================================ FILE: src/collection/compounds.mjs ================================================ import Set from '../set.mjs'; import cache from './cache-traversal-call.mjs'; let elesfn = ({ parent: function( selector ){ let parents = []; // optimisation for single ele call if( this.length === 1 ){ let parent = this[0]._private.parent; if( parent ){ return parent; } } for( let i = 0; i < this.length; i++ ){ let ele = this[ i ]; let parent = ele._private.parent; if( parent ){ parents.push( parent ); } } return this.spawn( parents, true ).filter( selector ); }, parents: function( selector ){ let parents = []; let eles = this.parent(); while( eles.nonempty() ){ for( let i = 0; i < eles.length; i++ ){ let ele = eles[ i ]; parents.push( ele ); } eles = eles.parent(); } return this.spawn( parents, true ).filter( selector ); }, commonAncestors: function( selector ){ let ancestors; for( let i = 0; i < this.length; i++ ){ let ele = this[ i ]; let parents = ele.parents(); ancestors = ancestors || parents; ancestors = ancestors.intersect( parents ); // current list must be common with current ele parents set } return ancestors.filter( selector ); }, orphans: function( selector ){ return this.stdFilter( function( ele ){ return ele.isOrphan(); } ).filter( selector ); }, nonorphans: function( selector ){ return this.stdFilter( function( ele ){ return ele.isChild(); } ).filter( selector ); }, children: cache( function( selector ){ let children = []; for( let i = 0; i < this.length; i++ ){ let ele = this[ i ]; let eleChildren = ele._private.children; for( let j = 0; j < eleChildren.length; j++ ){ children.push( eleChildren[j] ); } } return this.spawn( children, true ).filter( selector ); }, 'children' ), siblings: function( selector ){ return this.parent().children().not( this ).filter( selector ); }, isParent: function(){ let ele = this[0]; if( ele ){ return ele.isNode() && ele._private.children.length !== 0; } }, isChildless: function(){ let ele = this[0]; if( ele ){ return ele.isNode() && ele._private.children.length === 0; } }, isChild: function(){ let ele = this[0]; if( ele ){ return ele.isNode() && ele._private.parent != null; } }, isOrphan: function(){ let ele = this[0]; if( ele ){ return ele.isNode() && ele._private.parent == null; } }, descendants: function( selector ){ let elements = []; function add( eles ){ for( let i = 0; i < eles.length; i++ ){ let ele = eles[ i ]; elements.push( ele ); if( ele.children().nonempty() ){ add( ele.children() ); } } } add( this.children() ); return this.spawn( elements, true ).filter( selector ); } }); function forEachCompound( eles, fn, includeSelf, recursiveStep ){ let q = []; let did = new Set(); let cy = eles.cy(); let hasCompounds = cy.hasCompoundNodes(); for( let i = 0; i < eles.length; i++ ){ let ele = eles[i]; if( includeSelf ){ q.push( ele ); } else if( hasCompounds ){ recursiveStep( q, did, ele ); } } while( q.length > 0 ){ let ele = q.shift(); fn( ele ); did.add( ele.id() ); if( hasCompounds ){ recursiveStep( q, did, ele ); } } return eles; } function addChildren( q, did, ele ){ if( ele.isParent() ){ let children = ele._private.children; for( let i = 0; i < children.length; i++ ){ let child = children[i]; if( !did.has( child.id() ) ){ q.push( child ); } } } } // very efficient version of eles.add( eles.descendants() ).forEach() // for internal use elesfn.forEachDown = function( fn, includeSelf = true ){ return forEachCompound( this, fn, includeSelf, addChildren ); }; function addParent( q, did, ele ){ if( ele.isChild() ){ let parent = ele._private.parent; if( !did.has( parent.id() ) ){ q.push( parent ); } } } elesfn.forEachUp = function( fn, includeSelf = true ){ return forEachCompound( this, fn, includeSelf, addParent ); }; function addParentAndChildren( q, did, ele ){ addParent( q, did, ele ); addChildren( q, did, ele ); } elesfn.forEachUpAndDown = function( fn, includeSelf = true ){ return forEachCompound( this, fn, includeSelf, addParentAndChildren ); }; // aliases elesfn.ancestors = elesfn.parents; export default elesfn; ================================================ FILE: src/collection/data.mjs ================================================ import define from '../define/index.mjs'; let fn, elesfn; fn = elesfn = ({ data: define.data( { field: 'data', bindingEvent: 'data', allowBinding: true, allowSetting: true, settingEvent: 'data', settingTriggersEvent: true, triggerFnName: 'trigger', allowGetting: true, immutableKeys: { 'id': true, 'source': true, 'target': true, 'parent': true }, updateStyle: true } ), removeData: define.removeData( { field: 'data', event: 'data', triggerFnName: 'trigger', triggerEvent: true, immutableKeys: { 'id': true, 'source': true, 'target': true, 'parent': true }, updateStyle: true } ), scratch: define.data( { field: 'scratch', bindingEvent: 'scratch', allowBinding: true, allowSetting: true, settingEvent: 'scratch', settingTriggersEvent: true, triggerFnName: 'trigger', allowGetting: true, updateStyle: true } ), removeScratch: define.removeData( { field: 'scratch', event: 'scratch', triggerFnName: 'trigger', triggerEvent: true, updateStyle: true } ), rscratch: define.data( { field: 'rscratch', allowBinding: false, allowSetting: true, settingTriggersEvent: false, allowGetting: true } ), removeRscratch: define.removeData( { field: 'rscratch', triggerEvent: false } ), id: function(){ let ele = this[0]; if( ele ){ return ele._private.data.id; } } }); // aliases fn.attr = fn.data; fn.removeAttr = fn.removeData; export default elesfn; ================================================ FILE: src/collection/degree.mjs ================================================ import * as util from '../util/index.mjs'; let elesfn = {}; function defineDegreeFunction( callback ){ return function( includeLoops ){ let self = this; if( includeLoops === undefined ){ includeLoops = true; } if( self.length === 0 ){ return; } if( self.isNode() && !self.removed() ){ let degree = 0; let node = self[0]; let connectedEdges = node._private.edges; for( let i = 0; i < connectedEdges.length; i++ ){ let edge = connectedEdges[ i ]; if( !includeLoops && edge.isLoop() ){ continue; } degree += callback( node, edge ); } return degree; } else { return; } }; } util.extend( elesfn, { degree: defineDegreeFunction( function( node, edge ){ if( edge.source().same( edge.target() ) ){ return 2; } else { return 1; } } ), indegree: defineDegreeFunction( function( node, edge ){ if( edge.target().same( node ) ){ return 1; } else { return 0; } } ), outdegree: defineDegreeFunction( function( node, edge ){ if( edge.source().same( node ) ){ return 1; } else { return 0; } } ) } ); function defineDegreeBoundsFunction( degreeFn, callback ){ return function( includeLoops ){ let ret; let nodes = this.nodes(); for( let i = 0; i < nodes.length; i++ ){ let ele = nodes[ i ]; let degree = ele[ degreeFn ]( includeLoops ); if( degree !== undefined && (ret === undefined || callback( degree, ret )) ){ ret = degree; } } return ret; }; } util.extend( elesfn, { minDegree: defineDegreeBoundsFunction( 'degree', function( degree, min ){ return degree < min; } ), maxDegree: defineDegreeBoundsFunction( 'degree', function( degree, max ){ return degree > max; } ), minIndegree: defineDegreeBoundsFunction( 'indegree', function( degree, min ){ return degree < min; } ), maxIndegree: defineDegreeBoundsFunction( 'indegree', function( degree, max ){ return degree > max; } ), minOutdegree: defineDegreeBoundsFunction( 'outdegree', function( degree, min ){ return degree < min; } ), maxOutdegree: defineDegreeBoundsFunction( 'outdegree', function( degree, max ){ return degree > max; } ) } ); util.extend( elesfn, { totalDegree: function( includeLoops ){ let total = 0; let nodes = this.nodes(); for( let i = 0; i < nodes.length; i++ ){ total += nodes[ i ].degree( includeLoops ); } return total; } } ); export default elesfn; ================================================ FILE: src/collection/dimensions/bounds.mjs ================================================ import * as is from '../../is.mjs'; import { assignBoundingBox, expandBoundingBoxSides, clearBoundingBox, expandBoundingBox, makeBoundingBox, copyBoundingBox, shiftBoundingBox, updateBoundingBox } from '../../math.mjs'; import {defaults, endsWith, getPrefixedProperty, hashIntsArray, memoize} from '../../util/index.mjs'; let fn, elesfn; fn = elesfn = {}; elesfn.renderedBoundingBox = function( options ){ let bb = this.boundingBox( options ); let cy = this.cy(); let zoom = cy.zoom(); let pan = cy.pan(); let x1 = bb.x1 * zoom + pan.x; let x2 = bb.x2 * zoom + pan.x; let y1 = bb.y1 * zoom + pan.y; let y2 = bb.y2 * zoom + pan.y; return { x1: x1, x2: x2, y1: y1, y2: y2, w: x2 - x1, h: y2 - y1 }; }; elesfn.dirtyCompoundBoundsCache = function(silent = false){ let cy = this.cy(); if( !cy.styleEnabled() || !cy.hasCompoundNodes() ){ return this; } this.forEachUp( ele => { if( ele.isParent() ){ let _p = ele._private; _p.compoundBoundsClean = false; _p.bbCache = null; if(!silent){ ele.emitAndNotify('bounds'); } } } ); return this; }; elesfn.updateCompoundBounds = function(force = false){ let cy = this.cy(); // not possible to do on non-compound graphs or with the style disabled if( !cy.styleEnabled() || !cy.hasCompoundNodes() ){ return this; } // save cycles when batching -- but bounds will be stale (or not exist yet) if( !force && cy.batching() ){ return this; } function update( parent ){ if( !parent.isParent() ){ return; } let _p = parent._private; let children = parent.children(); let includeLabels = parent.pstyle( 'compound-sizing-wrt-labels' ).value === 'include'; let min = { width: { val: parent.pstyle( 'min-width' ).pfValue, left: parent.pstyle( 'min-width-bias-left' ), right: parent.pstyle( 'min-width-bias-right' ) }, height: { val: parent.pstyle( 'min-height' ).pfValue, top: parent.pstyle( 'min-height-bias-top' ), bottom: parent.pstyle( 'min-height-bias-bottom' ) } }; let bb = children.boundingBox( { includeLabels: includeLabels, includeOverlays: false, // updating the compound bounds happens outside of the regular // cache cycle (i.e. before fired events) useCache: false } ); let pos = _p.position; // if children take up zero area then keep position and fall back on stylesheet w/h if( bb.w === 0 || bb.h === 0 ){ bb = { w: parent.pstyle('width').pfValue, h: parent.pstyle('height').pfValue }; bb.x1 = pos.x - bb.w/2; bb.x2 = pos.x + bb.w/2; bb.y1 = pos.y - bb.h/2; bb.y2 = pos.y + bb.h/2; } function computeBiasValues( propDiff, propBias, propBiasComplement ){ let biasDiff = 0; let biasComplementDiff = 0; let biasTotal = propBias + propBiasComplement; if( propDiff > 0 && biasTotal > 0 ){ biasDiff = ( propBias / biasTotal ) * propDiff; biasComplementDiff = ( propBiasComplement / biasTotal ) * propDiff; } return { biasDiff: biasDiff, biasComplementDiff: biasComplementDiff }; } function computePaddingValues( width, height, paddingObject, relativeTo ) { // Assuming percentage is number from 0 to 1 if(paddingObject.units === '%') { switch(relativeTo) { case 'width': return width > 0 ? paddingObject.pfValue * width : 0; case 'height': return height > 0 ? paddingObject.pfValue * height : 0; case 'average': return ( width > 0 ) && ( height > 0 ) ? paddingObject.pfValue * ( width + height ) / 2 : 0; case 'min': return ( width > 0 ) && ( height > 0 ) ? ( ( width > height ) ? paddingObject.pfValue * height : paddingObject.pfValue * width ) : 0; case 'max': return ( width > 0 ) && ( height > 0 ) ? ( ( width > height ) ? paddingObject.pfValue * width : paddingObject.pfValue * height ) : 0; default: return 0; } } else if(paddingObject.units === 'px') { return paddingObject.pfValue; } else { return 0; } } let leftVal = min.width.left.value; if( min.width.left.units === 'px' && min.width.val > 0 ){ leftVal = ( leftVal * 100 ) / min.width.val; } let rightVal = min.width.right.value; if( min.width.right.units === 'px' && min.width.val > 0 ){ rightVal = ( rightVal * 100 ) / min.width.val; } let topVal = min.height.top.value; if( min.height.top.units === 'px' && min.height.val > 0 ){ topVal = ( topVal * 100 ) / min.height.val; } let bottomVal = min.height.bottom.value; if( min.height.bottom.units === 'px' && min.height.val > 0 ){ bottomVal = ( bottomVal * 100 ) / min.height.val; } let widthBiasDiffs = computeBiasValues( min.width.val - bb.w, leftVal, rightVal ); let diffLeft = widthBiasDiffs.biasDiff; let diffRight = widthBiasDiffs.biasComplementDiff; let heightBiasDiffs = computeBiasValues( min.height.val - bb.h, topVal, bottomVal ); let diffTop = heightBiasDiffs.biasDiff; let diffBottom = heightBiasDiffs.biasComplementDiff; _p.autoPadding = computePaddingValues( bb.w, bb.h, parent.pstyle( 'padding' ), parent.pstyle( 'padding-relative-to' ).value ); _p.autoWidth = Math.max(bb.w, min.width.val); pos.x = (- diffLeft + bb.x1 + bb.x2 + diffRight) / 2; _p.autoHeight = Math.max(bb.h, min.height.val); pos.y = (- diffTop + bb.y1 + bb.y2 + diffBottom) / 2; } for( let i = 0; i < this.length; i++ ){ let ele = this[i]; let _p = ele._private; if( !_p.compoundBoundsClean || force ){ update( ele ); if( !cy.batching() ){ _p.compoundBoundsClean = true; } } } return this; }; let noninf = function( x ){ if( x === Infinity || x === -Infinity ){ return 0; } return x; }; let updateBounds = function( b, x1, y1, x2, y2 ){ // don't update with zero area boxes if( x2 - x1 === 0 || y2 - y1 === 0 ){ return; } // don't update with null dim if( x1 == null || y1 == null || x2 == null || y2 == null ){ return; } b.x1 = x1 < b.x1 ? x1 : b.x1; b.x2 = x2 > b.x2 ? x2 : b.x2; b.y1 = y1 < b.y1 ? y1 : b.y1; b.y2 = y2 > b.y2 ? y2 : b.y2; b.w = b.x2 - b.x1; b.h = b.y2 - b.y1; }; let updateBoundsFromBox = function( b, b2 ){ if( b2 == null ){ return b; } return updateBounds( b, b2.x1, b2.y1, b2.x2, b2.y2 ); }; let prefixedProperty = function( obj, field, prefix ){ return getPrefixedProperty( obj, field, prefix ); }; let updateBoundsFromArrow = function( bounds, ele, prefix ){ if( ele.cy().headless() ){ return; } let _p = ele._private; let rstyle = _p.rstyle; let halfArW = rstyle.arrowWidth / 2; let arrowType = ele.pstyle( prefix + '-arrow-shape' ).value; let x; let y; if( arrowType !== 'none' ){ if( prefix === 'source' ){ x = rstyle.srcX; y = rstyle.srcY; } else if( prefix === 'target' ){ x = rstyle.tgtX; y = rstyle.tgtY; } else { x = rstyle.midX; y = rstyle.midY; } // always store the individual arrow bounds let bbs = _p.arrowBounds = _p.arrowBounds || {}; let bb = bbs[prefix] = bbs[prefix] || {}; bb.x1 = x - halfArW; bb.y1 = y - halfArW; bb.x2 = x + halfArW; bb.y2 = y + halfArW; bb.w = bb.x2 - bb.x1; bb.h = bb.y2 - bb.y1; expandBoundingBox(bb, 1); updateBounds( bounds, bb.x1, bb.y1, bb.x2, bb.y2 ); } }; let updateBoundsFromLabel = function( bounds, ele, prefix ){ if( ele.cy().headless() ){ return; } let prefixDash; if( prefix ){ prefixDash = prefix + '-'; } else { prefixDash = ''; } let _p = ele._private; let rstyle = _p.rstyle; let label = ele.pstyle( prefixDash + 'label' ).strValue; if( label ){ let halign = ele.pstyle( 'text-halign' ); let valign = ele.pstyle( 'text-valign' ); let labelWidth = prefixedProperty( rstyle, 'labelWidth', prefix ); let labelHeight = prefixedProperty( rstyle, 'labelHeight', prefix ); let labelX = prefixedProperty( rstyle, 'labelX', prefix ); let labelY = prefixedProperty( rstyle, 'labelY', prefix ); let marginX = ele.pstyle( prefixDash + 'text-margin-x' ).pfValue; let marginY = ele.pstyle( prefixDash + 'text-margin-y' ).pfValue; let isEdge = ele.isEdge(); let rotation = ele.pstyle( prefixDash + 'text-rotation' ); let outlineWidth = ele.pstyle( 'text-outline-width' ).pfValue; let borderWidth = ele.pstyle( 'text-border-width' ).pfValue; let halfBorderWidth = borderWidth / 2; let padding = ele.pstyle( 'text-background-padding' ).pfValue; let marginOfError = 2; // expand to work around browser dimension inaccuracies let lh = labelHeight; let lw = labelWidth; let lw_2 = lw / 2; let lh_2 = lh / 2; let lx1, lx2, ly1, ly2; if( isEdge ){ lx1 = labelX - lw_2; lx2 = labelX + lw_2; ly1 = labelY - lh_2; ly2 = labelY + lh_2; } else { switch( halign.value ){ case 'left': lx1 = labelX - lw; lx2 = labelX; break; case 'center': lx1 = labelX - lw_2; lx2 = labelX + lw_2; break; case 'right': lx1 = labelX; lx2 = labelX + lw; break; } switch( valign.value ){ case 'top': ly1 = labelY - lh; ly2 = labelY; break; case 'center': ly1 = labelY - lh_2; ly2 = labelY + lh_2; break; case 'bottom': ly1 = labelY; ly2 = labelY + lh; break; } } // shift by margin and expand by outline and border let leftPad = marginX - Math.max( outlineWidth, halfBorderWidth ) - padding - marginOfError; let rightPad = marginX + Math.max( outlineWidth, halfBorderWidth ) + padding + marginOfError; let topPad = marginY - Math.max( outlineWidth, halfBorderWidth ) - padding - marginOfError; let botPad = marginY + Math.max( outlineWidth, halfBorderWidth ) + padding + marginOfError; lx1 += leftPad; lx2 += rightPad; ly1 += topPad; ly2 += botPad; // always store the unrotated label bounds separately let bbPrefix = prefix || 'main'; let bbs = _p.labelBounds; let bb = bbs[bbPrefix] = bbs[bbPrefix] || {}; bb.x1 = lx1; bb.y1 = ly1; bb.x2 = lx2; bb.y2 = ly2; bb.w = lx2 - lx1; bb.h = ly2 - ly1; bb.leftPad = leftPad; bb.rightPad = rightPad; bb.topPad = topPad; bb.botPad = botPad; let isAutorotate = ( isEdge && rotation.strValue === 'autorotate' ); let isPfValue = ( rotation.pfValue != null && rotation.pfValue !== 0 ); if( isAutorotate || isPfValue ){ let theta = isAutorotate ? prefixedProperty( _p.rstyle, 'labelAngle', prefix ) : rotation.pfValue; let cos = Math.cos( theta ); let sin = Math.sin( theta ); // rotation point (default value for center-center) let xo = (lx1 + lx2)/2; let yo = (ly1 + ly2)/2; if( !isEdge ){ switch( halign.value ){ case 'left': xo = lx2; break; case 'right': xo = lx1; break; } switch( valign.value ){ case 'top': yo = ly2; break; case 'bottom': yo = ly1; break; } } let rotate = function( x, y ){ x = x - xo; y = y - yo; return { x: x * cos - y * sin + xo, y: x * sin + y * cos + yo }; }; let px1y1 = rotate( lx1, ly1 ); let px1y2 = rotate( lx1, ly2 ); let px2y1 = rotate( lx2, ly1 ); let px2y2 = rotate( lx2, ly2 ); lx1 = Math.min( px1y1.x, px1y2.x, px2y1.x, px2y2.x ); lx2 = Math.max( px1y1.x, px1y2.x, px2y1.x, px2y2.x ); ly1 = Math.min( px1y1.y, px1y2.y, px2y1.y, px2y2.y ); ly2 = Math.max( px1y1.y, px1y2.y, px2y1.y, px2y2.y ); } let bbPrefixRot = bbPrefix + 'Rot'; let bbRot = bbs[bbPrefixRot] = bbs[bbPrefixRot] || {}; bbRot.x1 = lx1; bbRot.y1 = ly1; bbRot.x2 = lx2; bbRot.y2 = ly2; bbRot.w = lx2 - lx1; bbRot.h = ly2 - ly1; updateBounds( bounds, lx1, ly1, lx2, ly2 ); updateBounds( _p.labelBounds.all, lx1, ly1, lx2, ly2 ); } return bounds; }; let updateBoundsFromOutline = function (bounds, ele) { if (ele.cy().headless()) { return; } let outlineOpacity = ele.pstyle('outline-opacity').value; let outlineWidth = ele.pstyle('outline-width').value; let outlineOffset = ele.pstyle('outline-offset').value; let expansion = outlineWidth + outlineOffset; updateBoundsFromMiter( bounds, ele, outlineOpacity, expansion, 'outside', expansion/2 ); }; let updateBoundsFromMiter = function( bounds, ele, opacity, expansionSize, expansionPosition, useFallbackValue){ if (opacity === 0 || expansionSize <= 0 || expansionPosition === 'inside') { return; } let cy = ele.cy(); let shape = ele.pstyle('shape').value let rshape = cy.renderer().nodeShapes[shape]; let { x, y } = ele.position(); let w = ele.width(); let h = ele.height(); if (rshape.hasMiterBounds) { if (expansionPosition === 'center') { expansionSize /= 2; } let mbb = rshape.miterBounds(x, y, w, h, expansionSize); updateBoundsFromBox(bounds, mbb); } else if (useFallbackValue != null && useFallbackValue > 0) { expandBoundingBoxSides(bounds, [useFallbackValue, useFallbackValue, useFallbackValue, useFallbackValue]); } }; let updateBoundsFromMiterBorder = function( bounds, ele ){ if (ele.cy().headless()) { return; } let borderOpacity = ele.pstyle('border-opacity').value; let borderWidth = ele.pstyle('border-width').pfValue; let borderPosition = ele.pstyle('border-position').value; updateBoundsFromMiter(bounds, ele, borderOpacity, borderWidth, borderPosition); }; // get the bounding box of the elements (in raw model position) let boundingBoxImpl = function( ele, options ){ let cy = ele._private.cy; let styleEnabled = cy.styleEnabled(); let headless = cy.headless(); let bounds = makeBoundingBox(); let _p = ele._private; let isNode = ele.isNode(); let isEdge = ele.isEdge(); let ex1, ex2, ey1, ey2; // extrema of body / lines let x, y; // node pos let rstyle = _p.rstyle; let manualExpansion = isNode && styleEnabled ? ele.pstyle('bounds-expansion').pfValue : [0]; // must use `display` prop only, as reading `compound.width()` causes recursion // (other factors like width values will be considered later in this function anyway) let isDisplayed = ele => ele.pstyle('display').value !== 'none'; let displayed = ( !styleEnabled || ( isDisplayed(ele) // must take into account connected nodes b/c of implicit edge hiding on display:none node && ( !isEdge || ( isDisplayed(ele.source()) && isDisplayed(ele.target()) ) ) ) ); if( displayed ){ // displayed suffices, since we will find zero area eles anyway let overlayOpacity = 0; let overlayPadding = 0; if( styleEnabled && options.includeOverlays ){ overlayOpacity = ele.pstyle( 'overlay-opacity' ).value; if( overlayOpacity !== 0 ){ overlayPadding = ele.pstyle( 'overlay-padding' ).value; } } let underlayOpacity = 0; let underlayPadding = 0; if( styleEnabled && options.includeUnderlays ){ underlayOpacity = ele.pstyle( 'underlay-opacity' ).value; if( underlayOpacity !== 0 ){ underlayPadding = ele.pstyle( 'underlay-padding' ).value; } } let padding = Math.max(overlayPadding, underlayPadding); let w = 0; let wHalf = 0; if( styleEnabled ){ w = ele.pstyle( 'width' ).pfValue; wHalf = w / 2; } if( isNode && options.includeNodes ){ let pos = ele.position(); x = pos.x; y = pos.y; let w = ele.outerWidth(); let halfW = w / 2; let h = ele.outerHeight(); let halfH = h / 2; // handle node dimensions ///////////////////////// ex1 = x - halfW; ex2 = x + halfW; ey1 = y - halfH; ey2 = y + halfH; updateBounds( bounds, ex1, ey1, ex2, ey2 ); if( styleEnabled ){ updateBoundsFromOutline(bounds, ele) } if( styleEnabled && options.includeOutlines && !headless ){ updateBoundsFromOutline( bounds, ele ); } if (styleEnabled) { updateBoundsFromMiterBorder(bounds, ele); } } else if( isEdge && options.includeEdges ){ if( styleEnabled && !headless ){ let curveStyle = ele.pstyle( 'curve-style').strValue; // handle edge dimensions (rough box estimate) ////////////////////////////////////////////// ex1 = Math.min( rstyle.srcX, rstyle.midX, rstyle.tgtX ); ex2 = Math.max( rstyle.srcX, rstyle.midX, rstyle.tgtX ); ey1 = Math.min( rstyle.srcY, rstyle.midY, rstyle.tgtY ); ey2 = Math.max( rstyle.srcY, rstyle.midY, rstyle.tgtY ); // take into account edge width ex1 -= wHalf; ex2 += wHalf; ey1 -= wHalf; ey2 += wHalf; updateBounds( bounds, ex1, ey1, ex2, ey2 ); // precise edges //////////////// if( curveStyle === 'haystack' ){ let hpts = rstyle.haystackPts; if( hpts && hpts.length === 2 ){ ex1 = hpts[0].x; ey1 = hpts[0].y; ex2 = hpts[1].x; ey2 = hpts[1].y; if( ex1 > ex2 ){ let temp = ex1; ex1 = ex2; ex2 = temp; } if( ey1 > ey2 ){ let temp = ey1; ey1 = ey2; ey2 = temp; } updateBounds( bounds, ex1 - wHalf, ey1 - wHalf, ex2 + wHalf, ey2 + wHalf ); } } else if( curveStyle === 'bezier' || curveStyle === 'unbundled-bezier' || endsWith(curveStyle, 'segments') || endsWith(curveStyle, 'taxi') ){ let pts; switch( curveStyle ){ case 'bezier': case 'unbundled-bezier': pts = rstyle.bezierPts; break; case 'segments': case 'taxi': case 'round-segments': case 'round-taxi': pts = rstyle.linePts; break; } if( pts != null ){ for( let j = 0; j < pts.length; j++ ){ let pt = pts[ j ]; ex1 = pt.x - wHalf; ex2 = pt.x + wHalf; ey1 = pt.y - wHalf; ey2 = pt.y + wHalf; updateBounds( bounds, ex1, ey1, ex2, ey2 ); } } } // bezier-like or segment-like edge } else { // headless or style disabled // fallback on source and target positions ////////////////////////////////////////// let n1 = ele.source(); let n1pos = n1.position(); let n2 = ele.target(); let n2pos = n2.position(); ex1 = n1pos.x; ex2 = n2pos.x; ey1 = n1pos.y; ey2 = n2pos.y; if( ex1 > ex2 ){ let temp = ex1; ex1 = ex2; ex2 = temp; } if( ey1 > ey2 ){ let temp = ey1; ey1 = ey2; ey2 = temp; } // take into account edge width ex1 -= wHalf; ex2 += wHalf; ey1 -= wHalf; ey2 += wHalf; updateBounds( bounds, ex1, ey1, ex2, ey2 ); } // headless or style disabled } // edges // handle edge arrow size ///////////////////////// if( styleEnabled && options.includeEdges && isEdge ){ updateBoundsFromArrow( bounds, ele, 'mid-source', options ); updateBoundsFromArrow( bounds, ele, 'mid-target', options ); updateBoundsFromArrow( bounds, ele, 'source', options ); updateBoundsFromArrow( bounds, ele, 'target', options ); } // ghost //////// if( styleEnabled ){ let ghost = ele.pstyle('ghost').value === 'yes'; if( ghost ){ let gx = ele.pstyle('ghost-offset-x').pfValue; let gy = ele.pstyle('ghost-offset-y').pfValue; updateBounds( bounds, bounds.x1 + gx, bounds.y1 + gy, bounds.x2 + gx, bounds.y2 + gy ); } } // always store the body bounds separately from the labels let bbBody = _p.bodyBounds = _p.bodyBounds || {}; assignBoundingBox(bbBody, bounds); expandBoundingBoxSides(bbBody, manualExpansion); expandBoundingBox(bbBody, 1); // expand to work around browser dimension inaccuracies // overlay ////////// if( styleEnabled ){ ex1 = bounds.x1; ex2 = bounds.x2; ey1 = bounds.y1; ey2 = bounds.y2; updateBounds( bounds, ex1 - padding, ey1 - padding, ex2 + padding, ey2 + padding ); } // always store the body bounds separately from the labels let bbOverlay = _p.overlayBounds = _p.overlayBounds || {}; assignBoundingBox(bbOverlay, bounds); expandBoundingBoxSides(bbOverlay, manualExpansion); expandBoundingBox(bbOverlay, 1); // expand to work around browser dimension inaccuracies // handle label dimensions ////////////////////////// let bbLabels = _p.labelBounds = _p.labelBounds || {}; if( bbLabels.all != null ){ clearBoundingBox(bbLabels.all); } else { bbLabels.all = makeBoundingBox(); } if( styleEnabled && options.includeLabels ){ if( options.includeMainLabels ){ updateBoundsFromLabel( bounds, ele, null, options ); } if( isEdge ){ if( options.includeSourceLabels ){ updateBoundsFromLabel( bounds, ele, 'source', options ); } if( options.includeTargetLabels ){ updateBoundsFromLabel( bounds, ele, 'target', options ); } } } // style enabled for labels } // if displayed bounds.x1 = noninf( bounds.x1 ); bounds.y1 = noninf( bounds.y1 ); bounds.x2 = noninf( bounds.x2 ); bounds.y2 = noninf( bounds.y2 ); bounds.w = noninf( bounds.x2 - bounds.x1 ); bounds.h = noninf( bounds.y2 - bounds.y1 ); if( bounds.w > 0 && bounds.h > 0 && displayed ){ expandBoundingBoxSides( bounds, manualExpansion ); // expand bounds by 1 because antialiasing can increase the visual/effective size by 1 on all sides expandBoundingBox( bounds, 1 ); } return bounds; }; let getKey = function( opts ){ let i = 0; let tf = val => (val ? 1 : 0) << i++; let key = 0; key += tf( opts.incudeNodes ); key += tf( opts.includeEdges ); key += tf( opts.includeLabels ); key += tf( opts.includeMainLabels ); key += tf( opts.includeSourceLabels ); key += tf( opts.includeTargetLabels ); key += tf( opts.includeOverlays ); key += tf( opts.includeOutlines ); return key; }; let getBoundingBoxPosKey = ele => { let r = x => Math.round(x); if( ele.isEdge() ){ let p1 = ele.source().position(); let p2 = ele.target().position(); return hashIntsArray([ r(p1.x), r(p1.y), r(p2.x), r(p2.y) ]); } else { let p = ele.position(); return hashIntsArray([ r(p.x), r(p.y) ]); } }; let cachedBoundingBoxImpl = function( ele, opts ){ let _p = ele._private; let bb; let isEdge = ele.isEdge(); let key = opts == null ? defBbOptsKey : getKey( opts ); let usingDefOpts = key === defBbOptsKey; if( _p.bbCache == null ){ bb = boundingBoxImpl( ele, defBbOpts ); _p.bbCache = bb; _p.bbCachePosKey = getBoundingBoxPosKey( ele ); } else { bb = _p.bbCache; } // not using def opts => need to build up bb from combination of sub bbs if( !usingDefOpts ){ let isNode = ele.isNode(); bb = makeBoundingBox(); if( (opts.includeNodes && isNode) || (opts.includeEdges && !isNode) ){ if( opts.includeOverlays ){ updateBoundsFromBox(bb, _p.overlayBounds); } else { updateBoundsFromBox(bb, _p.bodyBounds); } } if( opts.includeLabels ){ if( opts.includeMainLabels && (!isEdge || (opts.includeSourceLabels && opts.includeTargetLabels)) ){ updateBoundsFromBox(bb, _p.labelBounds.all); } else { if( opts.includeMainLabels ){ updateBoundsFromBox(bb, _p.labelBounds.mainRot); } if( opts.includeSourceLabels ){ updateBoundsFromBox(bb, _p.labelBounds.sourceRot); } if( opts.includeTargetLabels ){ updateBoundsFromBox(bb, _p.labelBounds.targetRot); } } } bb.w = bb.x2 - bb.x1; bb.h = bb.y2 - bb.y1; } return bb; }; let defBbOpts = { includeNodes: true, includeEdges: true, includeLabels: true, includeMainLabels: true, includeSourceLabels: true, includeTargetLabels: true, includeOverlays: true, includeUnderlays: true, includeOutlines: true, useCache: true }; const defBbOptsKey = getKey( defBbOpts ); const filledBbOpts = defaults( defBbOpts ); elesfn.boundingBox = function( options ){ let bounds; let useCache = (options === undefined || options.useCache === undefined || options.useCache === true); let isDirty = memoize(ele => { let _p = ele._private; return _p.bbCache == null || _p.styleDirty || _p.bbCachePosKey !== getBoundingBoxPosKey(ele); }, ele => ele.id()); // the main usecase is ele.boundingBox() for a single element with no/def options // specified s.t. the cache is used, so check for this case to make it faster by // avoiding the overhead of the rest of the function if (useCache && this.length === 1 && !isDirty(this[0])) { if (options === undefined) { options = defBbOpts; } else { options = filledBbOpts( options ); } bounds = cachedBoundingBoxImpl(this[0], options); } else { bounds = makeBoundingBox(); options = options || defBbOpts; let opts = filledBbOpts(options); let eles = this; let cy = eles.cy(); let styleEnabled = cy.styleEnabled(); // cache the isDirty state for all eles, edges first since they depend on node state this.edges().forEach(isDirty); this.nodes().forEach(isDirty); if(styleEnabled) { this.recalculateRenderedStyle(useCache); } this.updateCompoundBounds(!useCache); for (let i = 0; i < eles.length; i++) { let ele = eles[i]; if (isDirty(ele)) { ele.dirtyBoundingBoxCache(); } updateBoundsFromBox(bounds, cachedBoundingBoxImpl(ele, opts)); } } bounds.x1 = noninf( bounds.x1 ); bounds.y1 = noninf( bounds.y1 ); bounds.x2 = noninf( bounds.x2 ); bounds.y2 = noninf( bounds.y2 ); bounds.w = noninf( bounds.x2 - bounds.x1 ); bounds.h = noninf( bounds.y2 - bounds.y1 ); return bounds; }; elesfn.dirtyBoundingBoxCache = function(){ for( let i = 0; i < this.length; i++ ){ let _p = this[i]._private; _p.bbCache = null; _p.bbCachePosKey = null; _p.bodyBounds = null; _p.overlayBounds = null; _p.labelBounds.all = null; _p.labelBounds.source = null; _p.labelBounds.target = null; _p.labelBounds.main = null; _p.labelBounds.sourceRot = null; _p.labelBounds.targetRot = null; _p.labelBounds.mainRot = null; _p.arrowBounds.source = null; _p.arrowBounds.target = null; _p.arrowBounds['mid-source'] = null; _p.arrowBounds['mid-target'] = null; } this.emitAndNotify('bounds'); return this; }; // private helper to get bounding box for custom node positions // - good for perf in certain cases but currently requires dirtying the rendered style // - would be better to not modify the nodes but the nodes are read directly everywhere in the renderer... // - try to use for only things like discrete layouts where the node position would change anyway elesfn.boundingBoxAt = function( fn ){ let nodes = this.nodes(); let cy = this.cy(); let hasCompoundNodes = cy.hasCompoundNodes(); let parents = cy.collection(); if( hasCompoundNodes ){ parents = nodes.filter(node => node.isParent()); nodes = nodes.not(parents); } if( is.plainObject( fn ) ){ let obj = fn; fn = function(){ return obj; }; } let storeOldPos = (node, i) => node._private.bbAtOldPos = fn(node, i); let getOldPos = (node) => node._private.bbAtOldPos; cy.startBatch(); ( nodes .forEach(storeOldPos) .silentPositions(fn) ); if( hasCompoundNodes ){ parents.dirtyCompoundBoundsCache(); parents.dirtyBoundingBoxCache(); parents.updateCompoundBounds(true); // force update b/c we're inside a batch cycle } let bb = copyBoundingBox( this.boundingBox({ useCache: false }) ); nodes.silentPositions(getOldPos); if( hasCompoundNodes ){ parents.dirtyCompoundBoundsCache(); parents.dirtyBoundingBoxCache(); parents.updateCompoundBounds(true); // force update b/c we're inside a batch cycle } cy.endBatch(); return bb; }; fn.boundingbox = fn.bb = fn.boundingBox; fn.renderedBoundingbox = fn.renderedBoundingBox; export default elesfn; ================================================ FILE: src/collection/dimensions/edge-points.mjs ================================================ import * as math from '../../math.mjs'; const ifEdge = (ele, getValue) => { if( ele.isEdge() && ele.takesUpSpace() ){ return getValue( ele ); } }; const ifEdgeRenderedPosition = (ele, getPoint) => { if( ele.isEdge() && ele.takesUpSpace() ){ let cy = ele.cy(); return math.modelToRenderedPosition( getPoint( ele ), cy.zoom(), cy.pan() ); } }; const ifEdgeRenderedPositions = (ele, getPoints) => { if( ele.isEdge() && ele.takesUpSpace() ){ let cy = ele.cy(); let pan = cy.pan(); let zoom = cy.zoom(); return getPoints( ele ).map( p => math.modelToRenderedPosition( p, zoom, pan ) ); } }; const controlPoints = ele => ele.renderer().getControlPoints( ele ); const segmentPoints = ele => ele.renderer().getSegmentPoints( ele ); const sourceEndpoint = ele => ele.renderer().getSourceEndpoint( ele ); const targetEndpoint = ele => ele.renderer().getTargetEndpoint( ele ); const midpoint = ele => ele.renderer().getEdgeMidpoint( ele ); const pts = { controlPoints: { get: controlPoints, mult: true }, segmentPoints: { get: segmentPoints, mult: true }, sourceEndpoint: { get: sourceEndpoint }, targetEndpoint: { get: targetEndpoint }, midpoint: { get: midpoint } }; const renderedName = name => 'rendered' + name[0].toUpperCase() + name.substr(1); export default Object.keys( pts ).reduce( ( obj, name ) => { let spec = pts[ name ]; let rName = renderedName( name ); obj[ name ] = function(){ return ifEdge( this, spec.get ); }; if( spec.mult ){ obj[ rName ] = function(){ return ifEdgeRenderedPositions( this, spec.get ); }; } else { obj[ rName ] = function(){ return ifEdgeRenderedPosition( this, spec.get ); }; } return obj; }, {} ); ================================================ FILE: src/collection/dimensions/index.mjs ================================================ import * as util from '../../util/index.mjs'; import position from './position.mjs'; import bounds from './bounds.mjs'; import widthHeight from './width-height.mjs'; import edgePoints from './edge-points.mjs'; export default util.assign( {}, position, bounds, widthHeight, edgePoints ); ================================================ FILE: src/collection/dimensions/position.mjs ================================================ import define from '../../define/index.mjs'; import * as is from '../../is.mjs'; import * as math from '../../math.mjs'; import * as util from '../../util/index.mjs'; let fn, elesfn; let beforePositionSet = function( eles, newPos, silent ){ for( let i = 0; i < eles.length; i++ ){ let ele = eles[i]; if( !ele.locked() ){ let oldPos = ele._private.position; let delta = { x: newPos.x != null ? newPos.x - oldPos.x : 0, y: newPos.y != null ? newPos.y - oldPos.y : 0 }; if( ele.isParent() && !(delta.x === 0 && delta.y === 0) ){ ele.children().shift( delta, silent ); } ele.dirtyBoundingBoxCache(); } } }; let positionDef = { field: 'position', bindingEvent: 'position', allowBinding: true, allowSetting: true, settingEvent: 'position', settingTriggersEvent: true, triggerFnName: 'emitAndNotify', allowGetting: true, validKeys: [ 'x', 'y' ], beforeGet: function( ele ){ ele.updateCompoundBounds(); }, beforeSet: function( eles, newPos ){ beforePositionSet( eles, newPos, false ); }, onSet: function( eles ){ eles.dirtyCompoundBoundsCache(); }, canSet: function( ele ){ return !ele.locked(); } }; fn = elesfn = ({ position: define.data( positionDef ), // position but no notification to renderer silentPosition: define.data( util.assign( {}, positionDef, { allowBinding: false, allowSetting: true, settingTriggersEvent: false, allowGetting: false, beforeSet: function( eles, newPos ){ beforePositionSet( eles, newPos, true ); }, onSet: function( eles ){ eles.dirtyCompoundBoundsCache(); } } ) ), positions: function( pos, silent ){ if( is.plainObject( pos ) ){ if( silent ){ this.silentPosition( pos ); } else { this.position( pos ); } } else if( is.fn( pos ) ){ let fn = pos; let cy = this.cy(); cy.startBatch(); for( let i = 0; i < this.length; i++ ){ let ele = this[ i ]; let pos; if( ( pos = fn(ele, i) ) ){ if( silent ){ ele.silentPosition( pos ); } else { ele.position( pos ); } } } cy.endBatch(); } return this; // chaining }, silentPositions: function( pos ){ return this.positions( pos, true ); }, shift: function( dim, val, silent ){ let delta; if( is.plainObject( dim ) ){ delta = { x: is.number(dim.x) ? dim.x : 0, y: is.number(dim.y) ? dim.y : 0 }; silent = val; } else if( is.string( dim ) && is.number( val ) ){ delta = { x: 0, y: 0 }; delta[ dim ] = val; } if( delta != null ){ let cy = this.cy(); cy.startBatch(); for( let i = 0; i < this.length; i++ ){ let ele = this[i]; // exclude any node that is a descendant of the calling collection if (cy.hasCompoundNodes() && ele.isChild() && ele.ancestors().anySame(this)) { continue; } let pos = ele.position(); let newPos = { x: pos.x + delta.x, y: pos.y + delta.y }; if( silent ){ ele.silentPosition( newPos ); } else { ele.position( newPos ); } } cy.endBatch(); } return this; }, silentShift: function( dim, val ){ if( is.plainObject( dim ) ){ this.shift( dim, true ); } else if( is.string( dim ) && is.number( val ) ){ this.shift( dim, val, true ); } return this; }, // get/set the rendered (i.e. on screen) positon of the element renderedPosition: function( dim, val ){ let ele = this[0]; let cy = this.cy(); let zoom = cy.zoom(); let pan = cy.pan(); let rpos = is.plainObject( dim ) ? dim : undefined; let setting = rpos !== undefined || ( val !== undefined && is.string( dim ) ); if( ele && ele.isNode() ){ // must have an element and must be a node to return position if( setting ){ for( let i = 0; i < this.length; i++ ){ let ele = this[ i ]; if( val !== undefined ){ // set one dimension ele.position( dim, ( val - pan[ dim ] ) / zoom ); } else if( rpos !== undefined ){ // set whole position ele.position( math.renderedToModelPosition( rpos, zoom, pan ) ); } } } else { // getting let pos = ele.position(); rpos = math.modelToRenderedPosition( pos, zoom, pan ); if( dim === undefined ){ // then return the whole rendered position return rpos; } else { // then return the specified dimension return rpos[ dim ]; } } } else if( !setting ){ return undefined; // for empty collection case } return this; // chaining }, // get/set the position relative to the parent relativePosition: function( dim, val ){ let ele = this[0]; let cy = this.cy(); let ppos = is.plainObject( dim ) ? dim : undefined; let setting = ppos !== undefined || ( val !== undefined && is.string( dim ) ); let hasCompoundNodes = cy.hasCompoundNodes(); if( ele && ele.isNode() ){ // must have an element and must be a node to return position if( setting ){ for( let i = 0; i < this.length; i++ ){ let ele = this[ i ]; let parent = hasCompoundNodes ? ele.parent() : null; let hasParent = parent && parent.length > 0; let relativeToParent = hasParent; if( hasParent ){ parent = parent[0]; } let origin = relativeToParent ? parent.position() : { x: 0, y: 0 }; if( val !== undefined ){ // set one dimension ele.position( dim, val + origin[ dim ] ); } else if( ppos !== undefined ){ // set whole position ele.position({ x: ppos.x + origin.x, y: ppos.y + origin.y }); } } } else { // getting let pos = ele.position(); let parent = hasCompoundNodes ? ele.parent() : null; let hasParent = parent && parent.length > 0; let relativeToParent = hasParent; if( hasParent ){ parent = parent[0]; } let origin = relativeToParent ? parent.position() : { x: 0, y: 0 }; ppos = { x: pos.x - origin.x, y: pos.y - origin.y }; if( dim === undefined ){ // then return the whole rendered position return ppos; } else { // then return the specified dimension return ppos[ dim ]; } } } else if( !setting ){ return undefined; // for empty collection case } return this; // chaining } }); // aliases fn.modelPosition = fn.point = fn.position; fn.modelPositions = fn.points = fn.positions; fn.renderedPoint = fn.renderedPosition; fn.relativePoint = fn.relativePosition; export default elesfn; ================================================ FILE: src/collection/dimensions/width-height.mjs ================================================ import * as util from '../../util/index.mjs'; let fn, elesfn; fn = elesfn = {}; let defineDimFns = function( opts ){ opts.uppercaseName = util.capitalize( opts.name ); opts.autoName = 'auto' + opts.uppercaseName; opts.labelName = 'label' + opts.uppercaseName; opts.outerName = 'outer' + opts.uppercaseName; opts.uppercaseOuterName = util.capitalize( opts.outerName ); fn[ opts.name ] = function dimImpl(){ let ele = this[0]; let _p = ele._private; let cy = _p.cy; let styleEnabled = cy._private.styleEnabled; if( ele ){ if( styleEnabled ){ if( ele.isParent() ){ ele.updateCompoundBounds(); return _p[ opts.autoName ] || 0; } let d = ele.pstyle( opts.name ); switch( d.strValue ){ case 'label': ele.recalculateRenderedStyle(); return _p.rstyle[ opts.labelName ] || 0; default: return d.pfValue; } } else { return 1; } } }; fn[ 'outer' + opts.uppercaseName ] = function outerDimImpl(){ let ele = this[0]; let _p = ele._private; let cy = _p.cy; let styleEnabled = cy._private.styleEnabled; if( ele ){ if( styleEnabled ){ let dim = ele[ opts.name ](); let borderPos = ele.pstyle( 'border-position' ).value; let border; if(borderPos === 'center') { border = ele.pstyle( 'border-width' ).pfValue; // n.b. 1/2 each side } else if(borderPos === 'outside') { border = 2 * ele.pstyle( 'border-width' ).pfValue; } else { // 'inside' border = 0; } let padding = 2 * ele.padding(); return dim + border + padding; } else { return 1; } } }; fn[ 'rendered' + opts.uppercaseName ] = function renderedDimImpl(){ let ele = this[0]; if( ele ){ let d = ele[ opts.name ](); return d * this.cy().zoom(); } }; fn[ 'rendered' + opts.uppercaseOuterName ] = function renderedOuterDimImpl(){ let ele = this[0]; if( ele ){ let od = ele[ opts.outerName ](); return od * this.cy().zoom(); } }; }; defineDimFns( { name: 'width' } ); defineDimFns( { name: 'height' } ); elesfn.padding = function(){ let ele = this[0]; let _p = ele._private; if( ele.isParent() ){ ele.updateCompoundBounds(); if( _p.autoPadding !== undefined ){ return _p.autoPadding; } else { return ele.pstyle('padding').pfValue; } } else { return ele.pstyle('padding').pfValue; } }; elesfn.paddedHeight = function(){ let ele = this[0]; return ele.height() + (2 * ele.padding()); }; elesfn.paddedWidth = function(){ let ele = this[0]; return ele.width() + (2 * ele.padding()); }; export default elesfn; ================================================ FILE: src/collection/element.mjs ================================================ import * as util from '../util/index.mjs'; import * as is from '../is.mjs'; import Set from '../set.mjs'; // represents a node or an edge let Element = function( cy, params, restore = true ){ if( cy === undefined || params === undefined || !is.core( cy ) ){ util.error( 'An element must have a core reference and parameters set' ); return; } let group = params.group; // try to automatically infer the group if unspecified if( group == null ){ if( params.data && params.data.source != null && params.data.target != null ){ group = 'edges'; } else { group = 'nodes'; } } // validate group if( group !== 'nodes' && group !== 'edges' ){ util.error( 'An element must be of type `nodes` or `edges`; you specified `' + group + '`' ); return; } // make the element array-like, just like a collection this.length = 1; this[0] = this; // NOTE: when something is added here, add also to ele.json() let _p = this._private = { cy: cy, single: true, // indicates this is an element data: params.data || {}, // data object position: params.position || { x: 0, y: 0 }, // (x, y) position pair autoWidth: undefined, // width and height of nodes calculated by the renderer when set to special 'auto' value autoHeight: undefined, autoPadding: undefined, compoundBoundsClean: false, // whether the compound dimensions need to be recalculated the next time dimensions are read listeners: [], // array of bound listeners group: group, // string; 'nodes' or 'edges' style: {}, // properties as set by the style rstyle: {}, // properties for style sent from the renderer to the core styleCxts: [], // applied style contexts from the styler styleKeys: {}, // per-group keys of style property values removed: true, // whether it's inside the vis; true if removed (set true here since we call restore) selected: params.selected ? true : false, // whether it's selected selectable: params.selectable === undefined ? true : ( params.selectable ? true : false ), // whether it's selectable locked: params.locked ? true : false, // whether the element is locked (cannot be moved) grabbed: false, // whether the element is grabbed by the mouse; renderer sets this privately grabbable: params.grabbable === undefined ? true : ( params.grabbable ? true : false ), // whether the element can be grabbed pannable: params.pannable === undefined ? (group === 'edges' ? true : false) : ( params.pannable ? true : false ), // whether the element has passthrough panning enabled active: false, // whether the element is active from user interaction classes: new Set(), // map ( className => true ) animation: { // object for currently-running animations current: [], queue: [] }, rscratch: {}, // object in which the renderer can store information scratch: params.scratch || {}, // scratch objects edges: [], // array of connected edges children: [], // array of children parent: params.parent && params.parent.isNode() ? params.parent : null, // parent ref traversalCache: {}, // cache of output of traversal functions backgrounding: false, // whether background images are loading bbCache: null, // cache of the current bounding box bbCacheShift: { x: 0, y: 0 }, // shift applied to cached bb to be applied on next get bodyBounds: null, // bounds cache of element body, w/o overlay overlayBounds: null, // bounds cache of element body, including overlay labelBounds: { // bounds cache of labels all: null, source: null, target: null, main: null }, arrowBounds: { // bounds cache of edge arrows source: null, target: null, 'mid-source': null, 'mid-target': null } }; if( _p.position.x == null ){ _p.position.x = 0; } if( _p.position.y == null ){ _p.position.y = 0; } // renderedPosition overrides if specified if( params.renderedPosition ){ let rpos = params.renderedPosition; let pan = cy.pan(); let zoom = cy.zoom(); _p.position = { x: (rpos.x - pan.x) / zoom, y: (rpos.y - pan.y) / zoom }; } let classes = []; if( is.array( params.classes ) ){ classes = params.classes; } else if( is.string( params.classes ) ){ classes = params.classes.split( /\s+/ ); } for( let i = 0, l = classes.length; i < l; i++ ){ let cls = classes[ i ]; if( !cls || cls === '' ){ continue; } _p.classes.add(cls); } this.createEmitter(); if( restore === undefined || restore ){ this.restore(); } let bypass = params.style || params.css; if( bypass ){ util.warn('Setting a `style` bypass at element creation should be done only when absolutely necessary. Try to use the stylesheet instead.'); this.style(bypass); } }; export default Element; ================================================ FILE: src/collection/events.mjs ================================================ import Emitter from '../emitter.mjs'; import define from '../define/index.mjs'; import * as is from '../is.mjs'; import Selector from '../selector/index.mjs'; let emitterOptions = { qualifierCompare: function( selector1, selector2 ){ if( selector1 == null || selector2 == null ){ return selector1 == null && selector2 == null; } else { return selector1.sameText( selector2 ); } }, eventMatches: function( ele, listener, eventObj ){ let selector = listener.qualifier; if( selector != null ){ return ele !== eventObj.target && is.element( eventObj.target ) && selector.matches( eventObj.target ); } return true; }, addEventFields: function( ele, evt ){ evt.cy = ele.cy(); evt.target = ele; }, callbackContext: function( ele, listener, eventObj ){ return listener.qualifier != null ? eventObj.target : ele; }, beforeEmit: function( context, listener/*, eventObj*/ ){ if( listener.conf && listener.conf.once ){ listener.conf.onceCollection.removeListener( listener.event, listener.qualifier, listener.callback ); } }, bubble: function(){ return true; }, parent: function( ele ){ return ele.isChild() ? ele.parent() : ele.cy(); } }; let argSelector = function( arg ){ if( is.string(arg) ){ return new Selector( arg ); } else { return arg; } }; let elesfn = ({ createEmitter: function(){ for( let i = 0; i < this.length; i++ ){ let ele = this[i]; let _p = ele._private; if( !_p.emitter ){ _p.emitter = new Emitter( emitterOptions, ele ); } } return this; }, emitter: function(){ return this._private.emitter; }, on: function( events, selector, callback ){ let argSel = argSelector(selector); for( let i = 0; i < this.length; i++ ){ let ele = this[i]; ele.emitter().on( events, argSel, callback ); } return this; }, removeListener: function( events, selector, callback ){ let argSel = argSelector(selector); for( let i = 0; i < this.length; i++ ){ let ele = this[i]; ele.emitter().removeListener( events, argSel, callback ); } return this; }, removeAllListeners: function(){ for( let i = 0; i < this.length; i++ ){ let ele = this[i]; ele.emitter().removeAllListeners(); } return this; }, one: function( events, selector, callback ){ let argSel = argSelector(selector); for( let i = 0; i < this.length; i++ ){ let ele = this[i]; ele.emitter().one( events, argSel, callback ); } return this; }, once: function( events, selector, callback ){ let argSel = argSelector(selector); for( let i = 0; i < this.length; i++ ){ let ele = this[i]; ele.emitter().on( events, argSel, callback, { once: true, onceCollection: this } ); } }, emit: function( events, extraParams ){ for( let i = 0; i < this.length; i++ ){ let ele = this[i]; ele.emitter().emit( events, extraParams ); } return this; }, emitAndNotify: function( event, extraParams ){ // for internal use only if( this.length === 0 ){ return; } // empty collections don't need to notify anything // notify renderer this.cy().notify( event, this ); this.emit( event, extraParams ); return this; } }); define.eventAliasesOn( elesfn ); export default elesfn; ================================================ FILE: src/collection/filter.mjs ================================================ import * as is from '../is.mjs'; import Selector from '../selector/index.mjs'; let elesfn = ({ nodes: function( selector ){ return this.filter( ele => ele.isNode() ).filter( selector ); }, edges: function( selector ){ return this.filter( ele => ele.isEdge() ).filter( selector ); }, // internal helper to get nodes and edges as separate collections with single iteration over elements byGroup: function(){ let nodes = this.spawn(); let edges = this.spawn(); for( let i = 0; i < this.length; i++ ){ let ele = this[i]; if( ele.isNode() ){ nodes.push(ele); } else { edges.push(ele); } } return { nodes, edges }; }, filter: function( filter, thisArg ){ if( filter === undefined ){ // check this first b/c it's the most common/performant case return this; } else if( is.string( filter ) || is.elementOrCollection( filter ) ){ return new Selector( filter ).filter( this ); } else if( is.fn( filter ) ){ let filterEles = this.spawn(); let eles = this; for( let i = 0; i < eles.length; i++ ){ let ele = eles[ i ]; let include = thisArg ? filter.apply( thisArg, [ ele, i, eles ] ) : filter( ele, i, eles ); if( include ){ filterEles.push( ele ); } } return filterEles; } return this.spawn(); // if not handled by above, give 'em an empty collection }, not: function( toRemove ){ if( !toRemove ){ return this; } else { if( is.string( toRemove ) ){ toRemove = this.filter( toRemove ); } let elements = this.spawn(); for( let i = 0; i < this.length; i++ ){ let element = this[ i ]; let remove = toRemove.has(element); if( !remove ){ elements.push( element ); } } return elements; } }, absoluteComplement: function(){ let cy = this.cy(); return cy.mutableElements().not( this ); }, intersect: function( other ){ // if a selector is specified, then filter by it instead if( is.string( other ) ){ let selector = other; return this.filter( selector ); } let elements = this.spawn(); let col1 = this; let col2 = other; let col1Smaller = this.length < other.length; let colS = col1Smaller ? col1 : col2; let colL = col1Smaller ? col2 : col1; for( let i = 0; i < colS.length; i++ ){ let ele = colS[i]; if( colL.has(ele) ){ elements.push(ele); } } return elements; }, xor: function( other ){ let cy = this._private.cy; if( is.string( other ) ){ other = cy.$( other ); } let elements = this.spawn(); let col1 = this; let col2 = other; let add = function( col, other ){ for( let i = 0; i < col.length; i++ ){ let ele = col[ i ]; let id = ele._private.data.id; let inOther = other.hasElementWithId( id ); if( !inOther ){ elements.push( ele ); } } }; add( col1, col2 ); add( col2, col1 ); return elements; }, diff: function( other ){ let cy = this._private.cy; if( is.string( other ) ){ other = cy.$( other ); } let left = this.spawn(); let right = this.spawn(); let both = this.spawn(); let col1 = this; let col2 = other; let add = function( col, other, retEles ){ for( let i = 0; i < col.length; i++ ){ let ele = col[ i ]; let id = ele._private.data.id; let inOther = other.hasElementWithId( id ); if( inOther ){ both.merge( ele ); } else { retEles.push( ele ); } } }; add( col1, col2, left ); add( col2, col1, right ); return { left, right, both }; }, add: function( toAdd ){ let cy = this._private.cy; if( !toAdd ){ return this; } if( is.string( toAdd ) ){ let selector = toAdd; toAdd = cy.mutableElements().filter( selector ); } let elements = this.spawnSelf(); for( let i = 0; i < toAdd.length; i++ ){ let ele = toAdd[i]; let add = !this.has(ele); if( add ){ elements.push(ele); } } return elements; }, // in place merge on calling collection merge: function( toAdd ){ let _p = this._private; let cy = _p.cy; if( !toAdd ){ return this; } if( toAdd && is.string( toAdd ) ){ let selector = toAdd; toAdd = cy.mutableElements().filter( selector ); } let map = _p.map; for( let i = 0; i < toAdd.length; i++ ){ let toAddEle = toAdd[ i ]; let id = toAddEle._private.data.id; let add = !map.has( id ); if( add ){ let index = this.length++; this[ index ] = toAddEle; map.set( id, { ele: toAddEle, index: index } ); } } return this; // chaining }, unmergeAt: function( i ){ let ele = this[i]; let id = ele.id(); let _p = this._private; let map = _p.map; // remove ele this[ i ] = undefined; map.delete( id ); let unmergedLastEle = i === this.length - 1; // replace empty spot with last ele in collection if( this.length > 1 && !unmergedLastEle ){ let lastEleI = this.length - 1; let lastEle = this[ lastEleI ]; let lastEleId = lastEle._private.data.id; this[ lastEleI ] = undefined; this[ i ] = lastEle; map.set( lastEleId, { ele: lastEle, index: i } ); } // the collection is now 1 ele smaller this.length--; return this; }, // remove single ele in place in calling collection unmergeOne: function( ele ){ ele = ele[0]; let _p = this._private; let id = ele._private.data.id; let map = _p.map; let entry = map.get( id ); if( !entry ){ return this; // no need to remove } let i = entry.index; this.unmergeAt(i); return this; }, // remove eles in place on calling collection unmerge: function( toRemove ){ let cy = this._private.cy; if( !toRemove ){ return this; } if( toRemove && is.string( toRemove ) ){ let selector = toRemove; toRemove = cy.mutableElements().filter( selector ); } for( let i = 0; i < toRemove.length; i++ ){ this.unmergeOne( toRemove[ i ] ); } return this; // chaining }, unmergeBy: function( toRmFn ){ for( let i = this.length - 1; i >= 0; i-- ){ let ele = this[i]; if( toRmFn(ele) ){ this.unmergeAt(i); } } return this; }, map: function( mapFn, thisArg ){ let arr = []; let eles = this; for( let i = 0; i < eles.length; i++ ){ let ele = eles[ i ]; let ret = thisArg ? mapFn.apply( thisArg, [ ele, i, eles ] ) : mapFn( ele, i, eles ); arr.push( ret ); } return arr; }, reduce: function( fn, initialValue ){ let val = initialValue; let eles = this; for( let i = 0; i < eles.length; i++ ){ val = fn( val, eles[i], i, eles ); } return val; }, max: function( valFn, thisArg ){ let max = -Infinity; let maxEle; let eles = this; for( let i = 0; i < eles.length; i++ ){ let ele = eles[ i ]; let val = thisArg ? valFn.apply( thisArg, [ ele, i, eles ] ) : valFn( ele, i, eles ); if( val > max ){ max = val; maxEle = ele; } } return { value: max, ele: maxEle }; }, min: function( valFn, thisArg ){ let min = Infinity; let minEle; let eles = this; for( let i = 0; i < eles.length; i++ ){ let ele = eles[ i ]; let val = thisArg ? valFn.apply( thisArg, [ ele, i, eles ] ) : valFn( ele, i, eles ); if( val < min ){ min = val; minEle = ele; } } return { value: min, ele: minEle }; } }); // aliases let fn = elesfn; fn[ 'u' ] = fn[ '|' ] = fn[ '+' ] = fn.union = fn.or = fn.add; fn[ '\\' ] = fn[ '!' ] = fn[ '-' ] = fn.difference = fn.relativeComplement = fn.subtract = fn.not; fn[ 'n' ] = fn[ '&' ] = fn[ '.' ] = fn.and = fn.intersection = fn.intersect; fn[ '^' ] = fn[ '(+)' ] = fn[ '(-)' ] = fn.symmetricDifference = fn.symdiff = fn.xor; fn.fnFilter = fn.filterFn = fn.stdFilter = fn.filter; fn.complement = fn.abscomp = fn.absoluteComplement; export default elesfn; ================================================ FILE: src/collection/group.mjs ================================================ let elesfn = ({ isNode: function(){ return this.group() === 'nodes'; }, isEdge: function(){ return this.group() === 'edges'; }, isLoop: function(){ return this.isEdge() && this.source()[0] === this.target()[0]; }, isSimple: function(){ return this.isEdge() && this.source()[0] !== this.target()[0]; }, group: function(){ let ele = this[0]; if( ele ){ return ele._private.group; } } }); export default elesfn; ================================================ FILE: src/collection/index.mjs ================================================ import * as util from '../util/index.mjs'; import * as is from '../is.mjs'; import Map from '../map.mjs'; import Set from '../set.mjs'; import Element from './element.mjs'; import algorithms from './algorithms/index.mjs'; import animation from './animation.mjs'; import classNames from './class.mjs'; import comparators from './comparators.mjs'; import compounds from './compounds.mjs'; import data from './data.mjs'; import degree from './degree.mjs'; import dimensions from './dimensions/index.mjs'; import events from './events.mjs'; import filter from './filter.mjs'; import group from './group.mjs'; import iteration from './iteration.mjs'; import layout from './layout.mjs'; import style from './style.mjs'; import switchFunctions from './switch-functions.mjs'; import traversing from './traversing.mjs'; // represents a set of nodes, edges, or both together let Collection = function( cy, elements, unique = false, removed = false ){ if( cy === undefined ){ util.error( 'A collection must have a reference to the core' ); return; } let map = new Map(); let createdElements = false; if( !elements ){ elements = []; } else if( elements.length > 0 && is.plainObject( elements[0] ) && !is.element( elements[0] ) ){ createdElements = true; // make elements from json and restore all at once later let eles = []; let elesIds = new Set(); for( let i = 0, l = elements.length; i < l; i++ ){ let json = elements[ i ]; if( json.data == null ){ json.data = {}; } let data = json.data; // make sure newly created elements have valid ids if( data.id == null ){ data.id = util.uuid(); } else if( cy.hasElementWithId( data.id ) || elesIds.has( data.id ) ){ continue; // can't create element if prior id already exists } let ele = new Element( cy, json, false ); eles.push( ele ); elesIds.add( data.id ); } elements = eles; } this.length = 0; for( let i = 0, l = elements.length; i < l; i++ ){ let element = elements[i][0]; // [0] in case elements is an array of collections, rather than array of elements if( element == null ){ continue; } let id = element._private.data.id; if( !unique || !map.has(id) ){ if( unique ){ map.set( id, { index: this.length, ele: element } ); } this[ this.length ] = element; this.length++; } } this._private = { eles: this, cy: cy, get map(){ if( this.lazyMap == null ){ this.rebuildMap(); } return this.lazyMap; }, set map(m){ this.lazyMap = m; }, rebuildMap(){ const m = this.lazyMap = new Map(); const eles = this.eles; for( let i = 0; i < eles.length; i++ ){ const ele = eles[i]; m.set(ele.id(), { index: i, ele }); } } }; if( unique ){ this._private.map = map; } // restore the elements if we created them from json if( createdElements && !removed ){ this.restore(); } }; // Functions //////////////////////////////////////////////////////////////////////////////////////////////////// // keep the prototypes in sync (an element has the same functions as a collection) // and use elefn and elesfn as shorthands to the prototypes let elesfn = Element.prototype = Collection.prototype = Object.create(Array.prototype); elesfn.instanceString = function(){ return 'collection'; }; elesfn.spawn = function( eles, unique ){ return new Collection( this.cy(), eles, unique ); }; elesfn.spawnSelf = function(){ return this.spawn( this ); }; elesfn.cy = function(){ return this._private.cy; }; elesfn.renderer = function(){ return this._private.cy.renderer(); }; elesfn.element = function(){ return this[0]; }; elesfn.collection = function(){ if( is.collection( this ) ){ return this; } else { // an element return new Collection( this._private.cy, [ this ] ); } }; elesfn.unique = function(){ return new Collection( this._private.cy, this, true ); }; elesfn.hasElementWithId = function( id ){ id = '' + id; // id must be string return this._private.map.has( id ); }; elesfn.getElementById = function( id ){ id = '' + id; // id must be string let cy = this._private.cy; let entry = this._private.map.get( id ); return entry ? entry.ele : new Collection( cy ); // get ele or empty collection }; elesfn.$id = elesfn.getElementById; elesfn.poolIndex = function(){ let cy = this._private.cy; let eles = cy._private.elements; let id = this[0]._private.data.id; return eles._private.map.get( id ).index; }; elesfn.indexOf = function( ele ){ let id = ele[0]._private.data.id; return this._private.map.get( id ).index; }; elesfn.indexOfId = function( id ){ id = '' + id; // id must be string return this._private.map.get( id ).index; }; elesfn.json = function( obj ){ let ele = this.element(); let cy = this.cy(); if( ele == null && obj ){ return this; } // can't set to no eles if( ele == null ){ return undefined; } // can't get from no eles let p = ele._private; if( is.plainObject( obj ) ){ // set cy.startBatch(); if( obj.data ){ ele.data( obj.data ); let data = p.data; if( ele.isEdge() ){ // source and target are immutable via data() let move = false; let spec = {}; let src = obj.data.source; let tgt = obj.data.target; if( src != null && src != data.source ){ spec.source = '' + src; // id must be string move = true; } if( tgt != null && tgt != data.target ){ spec.target = '' + tgt; // id must be string move = true; } if( move ){ ele = ele.move(spec); } } else { // parent is immutable via data() let newParentValSpecd = 'parent' in obj.data; let parent = obj.data.parent; if( newParentValSpecd && (parent != null || data.parent != null) && parent != data.parent ){ if( parent === undefined ){ // can't set undefined imperatively, so use null parent = null; } if( parent != null ){ parent = '' + parent; // id must be string } ele = ele.move({ parent }); } } } if( obj.position ){ ele.position( obj.position ); } // ignore group -- immutable let checkSwitch = function( k, trueFnName, falseFnName ){ let obj_k = obj[ k ]; if( obj_k != null && obj_k !== p[ k ] ){ if( obj_k ){ ele[ trueFnName ](); } else { ele[ falseFnName ](); } } }; checkSwitch( 'removed', 'remove', 'restore' ); checkSwitch( 'selected', 'select', 'unselect' ); checkSwitch( 'selectable', 'selectify', 'unselectify' ); checkSwitch( 'locked', 'lock', 'unlock' ); checkSwitch( 'grabbable', 'grabify', 'ungrabify' ); checkSwitch( 'pannable', 'panify', 'unpanify' ); if( obj.classes != null ){ ele.classes( obj.classes ); } cy.endBatch(); return this; } else if( obj === undefined ){ // get let json = { data: util.copy( p.data ), position: util.copy( p.position ), group: p.group, removed: p.removed, selected: p.selected, selectable: p.selectable, locked: p.locked, grabbable: p.grabbable, pannable: p.pannable, classes: null }; json.classes = ''; let i = 0; p.classes.forEach( cls => json.classes += ( i++ === 0 ? cls : ' ' + cls ) ); return json; } }; elesfn.jsons = function(){ let jsons = []; for( let i = 0; i < this.length; i++ ){ let ele = this[ i ]; let json = ele.json(); jsons.push( json ); } return jsons; }; elesfn.clone = function(){ let cy = this.cy(); let elesArr = []; for( let i = 0; i < this.length; i++ ){ let ele = this[ i ]; let json = ele.json(); let clone = new Element( cy, json, false ); // NB no restore elesArr.push( clone ); } return new Collection( cy, elesArr ); }; elesfn.copy = elesfn.clone; elesfn.restore = function( notifyRenderer = true, addToPool = true ){ let self = this; let cy = self.cy(); let cy_p = cy._private; // create arrays of nodes and edges, since we need to // restore the nodes first let nodes = []; let edges = []; let elements; for( let i = 0, l = self.length; i < l; i++ ){ let ele = self[ i ]; if( addToPool && !ele.removed() ){ // don't need to handle this ele continue; } // keep nodes first in the array and edges after if( ele.isNode() ){ // put to front of array if node nodes.push( ele ); } else { // put to end of array if edge edges.push( ele ); } } elements = nodes.concat( edges ); let i; let removeFromElements = function(){ elements.splice( i, 1 ); i--; }; // now, restore each element for( i = 0; i < elements.length; i++ ){ let ele = elements[ i ]; let _private = ele._private; let data = _private.data; // the traversal cache should start fresh when ele is added ele.clearTraversalCache(); // set id and validate if( !addToPool && !_private.removed ){ // already in graph, so nothing required } else if( data.id === undefined ){ data.id = util.uuid(); } else if( is.number( data.id ) ){ data.id = '' + data.id; // now it's a string } else if( is.emptyString( data.id ) || !is.string( data.id ) ){ util.error( 'Can not create element with invalid string ID `' + data.id + '`' ); // can't create element if it has empty string as id or non-string id removeFromElements(); continue; } else if( cy.hasElementWithId( data.id ) ){ util.error( 'Can not create second element with ID `' + data.id + '`' ); // can't create element if one already has that id removeFromElements(); continue; } let id = data.id; // id is finalised, now let's keep a ref if( ele.isNode() ){ // extra checks for nodes let pos = _private.position; // make sure the nodes have a defined position if( pos.x == null ){ pos.x = 0; } if( pos.y == null ){ pos.y = 0; } } if( ele.isEdge() ){ // extra checks for edges let edge = ele; let fields = [ 'source', 'target' ]; let fieldsLength = fields.length; let badSourceOrTarget = false; for( let j = 0; j < fieldsLength; j++ ){ let field = fields[ j ]; let val = data[ field ]; if( is.number( val ) ){ val = data[ field ] = '' + data[ field ]; // now string } if( val == null || val === '' ){ // can't create if source or target is not defined properly util.error( 'Can not create edge `' + id + '` with unspecified ' + field ); badSourceOrTarget = true; } else if( !cy.hasElementWithId( val ) ){ // can't create edge if one of its nodes doesn't exist util.error( 'Can not create edge `' + id + '` with nonexistent ' + field + ' `' + val + '`' ); badSourceOrTarget = true; } } if( badSourceOrTarget ){ removeFromElements(); continue; } // can't create this let src = cy.getElementById( data.source ); let tgt = cy.getElementById( data.target ); // only one edge in node if loop if (src.same(tgt)) { src._private.edges.push( edge ); } else { src._private.edges.push( edge ); tgt._private.edges.push( edge ); } edge._private.source = src; edge._private.target = tgt; } // if is edge // create mock ids / indexes maps for element so it can be used like collections _private.map = new Map(); _private.map.set( id, { ele: ele, index: 0 } ); _private.removed = false; if( addToPool ){ cy.addToPool( ele ); } } // for each element // do compound node sanity checks for( let i = 0; i < nodes.length; i++ ){ // each node let node = nodes[ i ]; let data = node._private.data; if( is.number( data.parent ) ){ // then automake string data.parent = '' + data.parent; } let parentId = data.parent; let specifiedParent = parentId != null; if( specifiedParent || node._private.parent ){ let parent = node._private.parent ? cy.collection().merge(node._private.parent) : cy.getElementById( parentId ); if( parent.empty() ){ // non-existant parent; just remove it data.parent = undefined; } else if( parent[0].removed() ) { util.warn('Node added with missing parent, reference to parent removed'); data.parent = undefined; node._private.parent = null; } else { let selfAsParent = false; let ancestor = parent; while( !ancestor.empty() ){ if( node.same( ancestor ) ){ // mark self as parent and remove from data selfAsParent = true; data.parent = undefined; // remove parent reference // exit or we loop forever break; } ancestor = ancestor.parent(); } if( !selfAsParent ){ // connect with children parent[0]._private.children.push( node ); node._private.parent = parent[0]; // let the core know we have a compound graph cy_p.hasCompoundNodes = true; } } // else } // if specified parent } // for each node if( elements.length > 0 ){ let restored = elements.length === self.length ? self : new Collection( cy, elements ); for( let i = 0; i < restored.length; i++ ){ let ele = restored[i]; if( ele.isNode() ){ continue; } // adding an edge invalidates the traversal caches for the parallel edges ele.parallelEdges().clearTraversalCache(); // adding an edge invalidates the traversal cache for the connected nodes ele.source().clearTraversalCache(); ele.target().clearTraversalCache(); } let toUpdateStyle; if( cy_p.hasCompoundNodes ){ toUpdateStyle = cy.collection().merge( restored ).merge( restored.connectedNodes() ).merge( restored.parent() ); } else { toUpdateStyle = restored; } toUpdateStyle.dirtyCompoundBoundsCache().dirtyBoundingBoxCache().updateStyle( notifyRenderer ); if( notifyRenderer ){ restored.emitAndNotify( 'add' ); } else if( addToPool ){ restored.emit( 'add' ); } } return self; // chainability }; elesfn.removed = function(){ let ele = this[0]; return ele && ele._private.removed; }; elesfn.inside = function(){ let ele = this[0]; return ele && !ele._private.removed; }; elesfn.remove = function( notifyRenderer = true, removeFromPool = true ){ let self = this; let elesToRemove = []; let elesToRemoveIds = {}; let cy = self._private.cy; // add connected edges function addConnectedEdges( node ){ let edges = node._private.edges; for( let i = 0; i < edges.length; i++ ){ add( edges[ i ] ); } } // add descendant nodes function addChildren( node ){ let children = node._private.children; for( let i = 0; i < children.length; i++ ){ add( children[ i ] ); } } function add( ele ){ let alreadyAdded = elesToRemoveIds[ ele.id() ]; if( (removeFromPool && ele.removed()) || alreadyAdded ){ return; } else { elesToRemoveIds[ ele.id() ] = true; } if( ele.isNode() ){ elesToRemove.push( ele ); // nodes are removed last addConnectedEdges( ele ); addChildren( ele ); } else { elesToRemove.unshift( ele ); // edges are removed first } } // make the list of elements to remove // (may be removing more than specified due to connected edges etc) for( let i = 0, l = self.length; i < l; i++ ){ let ele = self[ i ]; add( ele ); } function removeEdgeRef( node, edge ){ let connectedEdges = node._private.edges; util.removeFromArray( connectedEdges, edge ); // removing an edges invalidates the traversal cache for its nodes node.clearTraversalCache(); } function removeParallelRef( pllEdge ){ // removing an edge invalidates the traversal caches for the parallel edges pllEdge.clearTraversalCache(); } let alteredParents = []; alteredParents.ids = {}; function removeChildRef( parent, ele ){ ele = ele[0]; parent = parent[0]; let children = parent._private.children; let pid = parent.id(); util.removeFromArray( children, ele ); // remove parent => child ref ele._private.parent = null; // remove child => parent ref if( !alteredParents.ids[ pid ] ){ alteredParents.ids[ pid ] = true; alteredParents.push( parent ); } } self.dirtyCompoundBoundsCache(); if( removeFromPool ){ cy.removeFromPool( elesToRemove ); // remove from core pool } for( let i = 0; i < elesToRemove.length; i++ ){ let ele = elesToRemove[ i ]; if( ele.isEdge() ){ // remove references to this edge in its connected nodes let src = ele.source()[0]; let tgt = ele.target()[0]; removeEdgeRef( src, ele ); removeEdgeRef( tgt, ele ); let pllEdges = ele.parallelEdges(); for( let j = 0; j < pllEdges.length; j++ ){ let pllEdge = pllEdges[j]; removeParallelRef(pllEdge); if( pllEdge.isBundledBezier() ){ pllEdge.dirtyBoundingBoxCache(); } } } else { // remove reference to parent let parent = ele.parent(); if( parent.length !== 0 ){ removeChildRef( parent, ele ); } } if( removeFromPool ){ // mark as removed ele._private.removed = true; } } // check to see if we have a compound graph or not let elesStillInside = cy._private.elements; cy._private.hasCompoundNodes = false; for( let i = 0; i < elesStillInside.length; i++ ){ let ele = elesStillInside[ i ]; if( ele.isParent() ){ cy._private.hasCompoundNodes = true; break; } } let removedElements = new Collection( this.cy(), elesToRemove ); if( removedElements.size() > 0 ){ // must manually notify since trigger won't do this automatically once removed if( notifyRenderer ){ removedElements.emitAndNotify('remove'); } else if( removeFromPool ){ removedElements.emit('remove'); } } // the parents who were modified by the removal need their style updated for( let i = 0; i < alteredParents.length; i++ ){ let ele = alteredParents[ i ]; if( !removeFromPool || !ele.removed() ){ ele.updateStyle(); } } return removedElements; }; elesfn.move = function( struct ){ let cy = this._private.cy; let eles = this; // just clean up refs, caches, etc. in the same way as when removing and then restoring // (our calls to remove/restore do not remove from the graph or make events) let notifyRenderer = false; let modifyPool = false; let toString = id => id == null ? id : '' + id; // id must be string if( struct.source !== undefined || struct.target !== undefined ){ let srcId = toString(struct.source); let tgtId = toString(struct.target); let srcExists = srcId != null && cy.hasElementWithId( srcId ); let tgtExists = tgtId != null && cy.hasElementWithId( tgtId ); if( srcExists || tgtExists ){ cy.batch(() => { // avoid duplicate style updates eles.remove( notifyRenderer, modifyPool ); // clean up refs etc. eles.emitAndNotify('moveout'); for( let i = 0; i < eles.length; i++ ){ let ele = eles[i]; let data = ele._private.data; if( ele.isEdge() ){ if( srcExists ){ data.source = srcId; } if( tgtExists ){ data.target = tgtId; } } } eles.restore( notifyRenderer, modifyPool ); // make new refs, style, etc. }); eles.emitAndNotify('move'); } } else if( struct.parent !== undefined ){ // move node to new parent let parentId = toString(struct.parent); let parentExists = parentId === null || cy.hasElementWithId( parentId ); if( parentExists ){ let pidToAssign = parentId === null ? undefined : parentId; cy.batch(() => { // avoid duplicate style updates let updated = eles.remove( notifyRenderer, modifyPool ); // clean up refs etc. updated.emitAndNotify('moveout'); for( let i = 0; i < eles.length; i++ ){ let ele = eles[i]; let data = ele._private.data; if( ele.isNode() ){ data.parent = pidToAssign; } } updated.restore( notifyRenderer, modifyPool ); // make new refs, style, etc. }); eles.emitAndNotify('move'); } } return this; }; [ algorithms, animation, classNames, comparators, compounds, data, degree, dimensions, events, filter, group, iteration, layout, style, switchFunctions, traversing ].forEach( function( props ){ util.extend( elesfn, props ); } ); export default Collection; ================================================ FILE: src/collection/iteration.mjs ================================================ import * as is from '../is.mjs' ; import zIndexSort from './zsort.mjs' ; import * as util from '../util/index.mjs'; let elesfn = ({ forEach: function( fn, thisArg ){ if( is.fn( fn ) ){ let N = this.length; for( let i = 0; i < N; i++ ){ let ele = this[ i ]; let ret = thisArg ? fn.apply( thisArg, [ ele, i, this ] ) : fn( ele, i, this ); if( ret === false ){ break; } // exit each early on return false } } return this; }, toArray: function(){ let array = []; for( let i = 0; i < this.length; i++ ){ array.push( this[ i ] ); } return array; }, slice: function( start, end ){ let array = []; let thisSize = this.length; if( end == null ){ end = thisSize; } if( start == null ){ start = 0; } if( start < 0 ){ start = thisSize + start; } if( end < 0 ){ end = thisSize + end; } for( let i = start; i >= 0 && i < end && i < thisSize; i++ ){ array.push( this[ i ] ); } return this.spawn( array ); }, size: function(){ return this.length; }, eq: function( i ){ return this[ i ] || this.spawn(); }, first: function(){ return this[0] || this.spawn(); }, last: function(){ return this[ this.length - 1 ] || this.spawn(); }, empty: function(){ return this.length === 0; }, nonempty: function(){ return !this.empty(); }, sort: function( sortFn ){ if( !is.fn( sortFn ) ){ return this; } let sorted = this.toArray().sort( sortFn ); return this.spawn( sorted ); }, sortByZIndex: function(){ return this.sort( zIndexSort ); }, zDepth: function(){ let ele = this[0]; if( !ele ){ return undefined; } // let cy = ele.cy(); let _p = ele._private; let group = _p.group; if( group === 'nodes' ){ let depth = _p.data.parent ? ele.parents().size() : 0; if( !ele.isParent() ){ return util.MAX_INT - 1; // childless nodes always on top } return depth; } else { let src = _p.source; let tgt = _p.target; let srcDepth = src.zDepth(); let tgtDepth = tgt.zDepth(); return Math.max( srcDepth, tgtDepth, 0 ); // depth of deepest parent } } }); elesfn.each = elesfn.forEach; const defineSymbolIterator = () => { const typeofUndef = typeof undefined; const isIteratorSupported = typeof Symbol != typeofUndef && typeof Symbol.iterator != typeofUndef; if (isIteratorSupported) { elesfn[Symbol.iterator] = function() { let entry = { value: undefined, done: false }; let i = 0; let length = this.length; return { next: () => { if ( i < length ) { entry.value = this[i++]; } else { entry.value = undefined; entry.done = true; } return entry; }, [Symbol.iterator]: function() { return this; } }; }; } }; defineSymbolIterator(); export default elesfn; ================================================ FILE: src/collection/layout.mjs ================================================ import * as util from '../util/index.mjs'; import Promise from '../promise.mjs'; import * as math from '../math.mjs'; const getLayoutDimensionOptions = util.defaults({ nodeDimensionsIncludeLabels: false }); let elesfn = ({ // Calculates and returns node dimensions { x, y } based on options given layoutDimensions: function( options ){ options = getLayoutDimensionOptions( options ); let dims; if( !this.takesUpSpace() ){ dims = { w: 0, h: 0 }; } else if( options.nodeDimensionsIncludeLabels ){ let bbDim = this.boundingBox(); dims = { w: bbDim.w, h: bbDim.h }; } else { dims = { w: this.outerWidth(), h: this.outerHeight() }; } // sanitise the dimensions for external layouts (avoid division by zero) if( dims.w === 0 || dims.h === 0 ){ dims.w = dims.h = 1; } return dims; }, // using standard layout options, apply position function (w/ or w/o animation) layoutPositions: function( layout, options, fn ){ let nodes = this.nodes().filter(n => !n.isParent()); let cy = this.cy(); let layoutEles = options.eles; // nodes & edges let getMemoizeKey = node => node.id(); let fnMem = util.memoize( fn, getMemoizeKey ); // memoized version of position function layout.emit( { type: 'layoutstart', layout: layout } ); layout.animations = []; let calculateSpacing = function( spacing, nodesBb, pos ){ let center = { x: nodesBb.x1 + nodesBb.w / 2, y: nodesBb.y1 + nodesBb.h / 2 }; let spacingVector = { // scale from center of bounding box (not necessarily 0,0) x: (pos.x - center.x) * spacing, y: (pos.y - center.y) * spacing }; return { x: center.x + spacingVector.x, y: center.y + spacingVector.y }; }; let useSpacingFactor = options.spacingFactor && options.spacingFactor !== 1; let spacingBb = function(){ if( !useSpacingFactor ){ return null; } let bb = math.makeBoundingBox(); for( let i = 0; i < nodes.length; i++ ){ let node = nodes[i]; let pos = fnMem( node, i ); math.expandBoundingBoxByPoint( bb, pos.x, pos.y ); } return bb; }; let bb = spacingBb(); let getFinalPos = util.memoize( function( node, i ){ let newPos = fnMem( node, i ); if( useSpacingFactor ){ let spacing = Math.abs( options.spacingFactor ); newPos = calculateSpacing( spacing, bb, newPos ); } if( options.transform != null ){ newPos = options.transform( node, newPos ); } return newPos; }, getMemoizeKey ); if( options.animate ){ for( let i = 0; i < nodes.length; i++ ){ let node = nodes[ i ]; let newPos = getFinalPos( node, i ); let animateNode = options.animateFilter == null || options.animateFilter( node, i ); if( animateNode ){ let ani = node.animation( { position: newPos, duration: options.animationDuration, easing: options.animationEasing } ); layout.animations.push( ani ); } else { node.position( newPos ); } } if( options.fit ){ let fitAni = cy.animation({ fit: { boundingBox: layoutEles.boundingBoxAt( getFinalPos ), padding: options.padding }, duration: options.animationDuration, easing: options.animationEasing }); layout.animations.push( fitAni ); } else if( options.zoom !== undefined && options.pan !== undefined ){ let zoomPanAni = cy.animation({ zoom: options.zoom, pan: options.pan, duration: options.animationDuration, easing: options.animationEasing }); layout.animations.push( zoomPanAni ); } layout.animations.forEach(ani => ani.play()); layout.one( 'layoutready', options.ready ); layout.emit( { type: 'layoutready', layout: layout } ); Promise.all( layout.animations.map(function( ani ){ return ani.promise(); }) ).then(function(){ layout.one( 'layoutstop', options.stop ); layout.emit( { type: 'layoutstop', layout: layout } ); }); } else { nodes.positions( getFinalPos ); if( options.fit ){ cy.fit( options.eles, options.padding ); } if( options.zoom != null ){ cy.zoom( options.zoom ); } if( options.pan ){ cy.pan( options.pan ); } layout.one( 'layoutready', options.ready ); layout.emit( { type: 'layoutready', layout: layout } ); layout.one( 'layoutstop', options.stop ); layout.emit( { type: 'layoutstop', layout: layout } ); } return this; // chaining }, layout: function( options ){ let cy = this.cy(); return cy.makeLayout( util.extend( {}, options, { eles: this } ) ); } }); // aliases: elesfn.createLayout = elesfn.makeLayout = elesfn.layout; export default elesfn; ================================================ FILE: src/collection/style.mjs ================================================ import * as is from '../is.mjs'; import * as util from '../util/index.mjs'; function styleCache( key, fn, ele ){ var _p = ele._private; var cache = _p.styleCache = _p.styleCache || []; var val; if( (val = cache[key]) != null ){ return val; } else { val = cache[key] = fn( ele ); return val; } } function cacheStyleFunction( key, fn ){ key = util.hashString( key ); return function cachedStyleFunction( ele ){ return styleCache( key, fn, ele ); }; } function cachePrototypeStyleFunction( key, fn ){ key = util.hashString( key ); let selfFn = ele => fn.call( ele ); return function cachedPrototypeStyleFunction(){ var ele = this[0]; if( ele ){ return styleCache( key, selfFn, ele ); } }; } let elesfn = ({ recalculateRenderedStyle: function( useCache ){ let cy = this.cy(); let renderer = cy.renderer(); let styleEnabled = cy.styleEnabled(); if( renderer && styleEnabled ){ renderer.recalculateRenderedStyle( this, useCache ); } return this; }, dirtyStyleCache: function(){ let cy = this.cy(); let dirty = ele => ele._private.styleCache = null; if( cy.hasCompoundNodes() ){ let eles; eles = this.spawnSelf() .merge( this.descendants() ) .merge( this.parents() ) ; eles.merge( eles.connectedEdges() ); eles.forEach( dirty ); } else { this.forEach( ele => { dirty( ele ); ele.connectedEdges().forEach( dirty ); } ); } return this; }, // fully updates (recalculates) the style for the elements updateStyle: function( notifyRenderer ){ let cy = this._private.cy; if( !cy.styleEnabled() ){ return this; } if( cy.batching() ){ let bEles = cy._private.batchStyleEles; bEles.merge( this ); return this; // chaining and exit early when batching } let hasCompounds = cy.hasCompoundNodes(); let updatedEles = this; notifyRenderer = notifyRenderer || notifyRenderer === undefined ? true : false; if( hasCompounds ){ // then add everything up and down for compound selector checks updatedEles = this.spawnSelf().merge( this.descendants() ).merge( this.parents() ); } // let changedEles = style.apply( updatedEles ); let changedEles = updatedEles; if( notifyRenderer ){ changedEles.emitAndNotify( 'style' ); // let renderer know we changed style } else { changedEles.emit( 'style' ); // just fire the event } updatedEles.forEach(ele => ele._private.styleDirty = true); return this; // chaining }, // private: clears dirty flag and recalculates style cleanStyle: function(){ let cy = this.cy(); if( !cy.styleEnabled() ){ return; } for( let i = 0; i < this.length; i++ ){ let ele = this[i]; if( ele._private.styleDirty ){ // n.b. this flag should be set before apply() to avoid potential infinite recursion ele._private.styleDirty = false; cy.style().apply(ele); } } }, // get the internal parsed style object for the specified property parsedStyle: function( property, includeNonDefault = true ){ let ele = this[0]; let cy = ele.cy(); if( !cy.styleEnabled() ){ return; } if( ele ){ // this.cleanStyle(); // Inline the important part of cleanStyle(), for raw performance if( ele._private.styleDirty ){ // n.b. this flag should be set before apply() to avoid potential infinite recursion ele._private.styleDirty = false; cy.style().apply(ele); } let overriddenStyle = ele._private.style[ property ]; if( overriddenStyle != null ){ return overriddenStyle; } else if( includeNonDefault ){ return cy.style().getDefaultProperty( property ); } else { return null; } } }, numericStyle: function( property ){ let ele = this[0]; if( !ele.cy().styleEnabled() ){ return; } if( ele ){ let pstyle = ele.pstyle( property ); return pstyle.pfValue !== undefined ? pstyle.pfValue : pstyle.value; } }, numericStyleUnits: function( property ){ let ele = this[0]; if( !ele.cy().styleEnabled() ){ return; } if( ele ){ return ele.pstyle( property ).units; } }, // get the specified css property as a rendered value (i.e. on-screen value) // or get the whole rendered style if no property specified (NB doesn't allow setting) renderedStyle: function( property ){ let cy = this.cy(); if( !cy.styleEnabled() ){ return this; } let ele = this[0]; if( ele ){ return cy.style().getRenderedStyle( ele, property ); } }, // read the calculated css style of the element or override the style (via a bypass) style: function( name, value ){ let cy = this.cy(); if( !cy.styleEnabled() ){ return this; } let updateTransitions = false; let style = cy.style(); if( is.plainObject( name ) ){ // then extend the bypass let props = name; style.applyBypass( this, props, updateTransitions ); this.emitAndNotify( 'style' ); // let the renderer know we've updated style } else if( is.string( name ) ){ if( value === undefined ){ // then get the property from the style let ele = this[0]; if( ele ){ return style.getStylePropertyValue( ele, name ); } else { // empty collection => can't get any value return; } } else { // then set the bypass with the property value style.applyBypass( this, name, value, updateTransitions ); this.emitAndNotify( 'style' ); // let the renderer know we've updated style } } else if( name === undefined ){ let ele = this[0]; if( ele ){ return style.getRawStyle( ele ); } else { // empty collection => can't get any value return; } } return this; // chaining }, removeStyle: function( names ){ let cy = this.cy(); if( !cy.styleEnabled() ){ return this; } let updateTransitions = false; let style = cy.style(); let eles = this; if( names === undefined ){ for( let i = 0; i < eles.length; i++ ){ let ele = eles[ i ]; style.removeAllBypasses( ele, updateTransitions ); } } else { names = names.split( /\s+/ ); for( let i = 0; i < eles.length; i++ ){ let ele = eles[ i ]; style.removeBypasses( ele, names, updateTransitions ); } } this.emitAndNotify( 'style' ); // let the renderer know we've updated style return this; // chaining }, show: function(){ this.css( 'display', 'element' ); return this; // chaining }, hide: function(){ this.css( 'display', 'none' ); return this; // chaining }, effectiveOpacity: function(){ let cy = this.cy(); if( !cy.styleEnabled() ){ return 1; } let hasCompoundNodes = cy.hasCompoundNodes(); let ele = this[0]; if( ele ){ let _p = ele._private; let parentOpacity = ele.pstyle( 'opacity' ).value; if( !hasCompoundNodes ){ return parentOpacity; } let parents = !_p.data.parent ? null : ele.parents(); if( parents ){ for( let i = 0; i < parents.length; i++ ){ let parent = parents[ i ]; let opacity = parent.pstyle( 'opacity' ).value; parentOpacity = opacity * parentOpacity; } } return parentOpacity; } }, transparent: function(){ let cy = this.cy(); if( !cy.styleEnabled() ){ return false; } let ele = this[0]; let hasCompoundNodes = ele.cy().hasCompoundNodes(); if( ele ){ if( !hasCompoundNodes ){ return ele.pstyle( 'opacity' ).value === 0; } else { return ele.effectiveOpacity() === 0; } } }, backgrounding: function(){ let cy = this.cy(); if( !cy.styleEnabled() ){ return false; } let ele = this[0]; return ele._private.backgrounding ? true : false; } }); function checkCompound( ele, parentOk ){ let _p = ele._private; let parents = _p.data.parent ? ele.parents() : null; if( parents ){ for( let i = 0; i < parents.length; i++ ){ let parent = parents[ i ]; if( !parentOk( parent ) ){ return false; } } } return true; } function defineDerivedStateFunction( specs ){ let ok = specs.ok; let edgeOkViaNode = specs.edgeOkViaNode || specs.ok; let parentOk = specs.parentOk || specs.ok; return function(){ let cy = this.cy(); if( !cy.styleEnabled() ){ return true; } let ele = this[0]; let hasCompoundNodes = cy.hasCompoundNodes(); if( ele ){ let _p = ele._private; if( !ok( ele ) ){ return false; } if( ele.isNode() ){ return !hasCompoundNodes || checkCompound( ele, parentOk ); } else { let src = _p.source; let tgt = _p.target; return ( edgeOkViaNode(src) && (!hasCompoundNodes || checkCompound(src, edgeOkViaNode)) ) && ( src === tgt || ( edgeOkViaNode(tgt) && (!hasCompoundNodes || checkCompound(tgt, edgeOkViaNode)) ) ); } } }; } let eleTakesUpSpace = cacheStyleFunction( 'eleTakesUpSpace', function( ele ){ return ( ele.pstyle( 'display' ).value === 'element' && ele.width() !== 0 && ( ele.isNode() ? ele.height() !== 0 : true ) ); } ); elesfn.takesUpSpace = cachePrototypeStyleFunction( 'takesUpSpace', defineDerivedStateFunction({ ok: eleTakesUpSpace }) ); let eleInteractive = cacheStyleFunction( 'eleInteractive', function( ele ){ return ( ele.pstyle('events').value === 'yes' && ele.pstyle('visibility').value === 'visible' && eleTakesUpSpace( ele ) ); } ); let parentInteractive = cacheStyleFunction( 'parentInteractive', function( parent ){ return ( parent.pstyle('visibility').value === 'visible' && eleTakesUpSpace( parent ) ); } ); elesfn.interactive = cachePrototypeStyleFunction( 'interactive', defineDerivedStateFunction({ ok: eleInteractive, parentOk: parentInteractive, edgeOkViaNode: eleTakesUpSpace }) ); elesfn.noninteractive = function(){ let ele = this[0]; if( ele ){ return !ele.interactive(); } }; let eleVisible = cacheStyleFunction( 'eleVisible', function( ele ){ return ( ele.pstyle( 'visibility' ).value === 'visible' && ele.pstyle( 'opacity' ).pfValue !== 0 && eleTakesUpSpace( ele ) ); } ); let edgeVisibleViaNode = eleTakesUpSpace; elesfn.visible = cachePrototypeStyleFunction( 'visible', defineDerivedStateFunction({ ok: eleVisible, edgeOkViaNode: edgeVisibleViaNode }) ); elesfn.hidden = function(){ let ele = this[0]; if( ele ){ return !ele.visible(); } }; elesfn.isBundledBezier = cachePrototypeStyleFunction('isBundledBezier', function(){ if( !this.cy().styleEnabled() ){ return false; } return !this.removed() && this.pstyle('curve-style').value === 'bezier' && this.takesUpSpace(); }); elesfn.bypass = elesfn.css = elesfn.style; elesfn.renderedCss = elesfn.renderedStyle; elesfn.removeBypass = elesfn.removeCss = elesfn.removeStyle; elesfn.pstyle = elesfn.parsedStyle; export default elesfn; ================================================ FILE: src/collection/switch-functions.mjs ================================================ import * as is from '../is.mjs'; const elesfn = {}; function defineSwitchFunction( params ){ return function(){ let args = arguments; let changedEles = []; // e.g. cy.nodes().select( data, handler ) if( args.length === 2 ){ let data = args[0]; let handler = args[1]; this.on( params.event, data, handler ); } // e.g. cy.nodes().select( handler ) else if( args.length === 1 && is.fn(args[0]) ){ let handler = args[0]; this.on( params.event, handler ); } // e.g. cy.nodes().select() // e.g. (private) cy.nodes().select(['tapselect']) else if( args.length === 0 || (args.length === 1 && is.array(args[0])) ){ let addlEvents = args.length === 1 ? args[0] : null; for( let i = 0; i < this.length; i++ ){ let ele = this[ i ]; let able = !params.ableField || ele._private[ params.ableField ]; let changed = ele._private[ params.field ] != params.value; if( params.overrideAble ){ let overrideAble = params.overrideAble( ele ); if( overrideAble !== undefined ){ able = overrideAble; if( !overrideAble ){ return this; } // to save cycles assume not able for all on override } } if( able ){ ele._private[ params.field ] = params.value; if( changed ){ changedEles.push( ele ); } } } let changedColl = this.spawn( changedEles ); changedColl.updateStyle(); // change of state => possible change of style changedColl.emit( params.event ); if( addlEvents ){ changedColl.emit( addlEvents ); } } return this; }; } function defineSwitchSet( params ){ elesfn[ params.field ] = function(){ let ele = this[0]; if( ele ){ if( params.overrideField ){ let val = params.overrideField( ele ); if( val !== undefined ){ return val; } } return ele._private[ params.field ]; } }; elesfn[ params.on ] = defineSwitchFunction( { event: params.on, field: params.field, ableField: params.ableField, overrideAble: params.overrideAble, value: true } ); elesfn[ params.off ] = defineSwitchFunction( { event: params.off, field: params.field, ableField: params.ableField, overrideAble: params.overrideAble, value: false } ); } defineSwitchSet( { field: 'locked', overrideField: function( ele ){ return ele.cy().autolock() ? true : undefined; }, on: 'lock', off: 'unlock' } ); defineSwitchSet( { field: 'grabbable', overrideField: function( ele ){ return ele.cy().autoungrabify() || ele.pannable() ? false : undefined; }, on: 'grabify', off: 'ungrabify' } ); defineSwitchSet( { field: 'selected', ableField: 'selectable', overrideAble: function( ele ){ return ele.cy().autounselectify() ? false : undefined; }, on: 'select', off: 'unselect' } ); defineSwitchSet( { field: 'selectable', overrideField: function( ele ){ return ele.cy().autounselectify() ? false : undefined; }, on: 'selectify', off: 'unselectify' } ); elesfn.deselect = elesfn.unselect; elesfn.grabbed = function(){ let ele = this[0]; if( ele ){ return ele._private.grabbed; } }; defineSwitchSet( { field: 'active', on: 'activate', off: 'unactivate' } ); defineSwitchSet( { field: 'pannable', on: 'panify', off: 'unpanify' } ); elesfn.inactive = function(){ let ele = this[0]; if( ele ){ return !ele._private.active; } }; export default elesfn; ================================================ FILE: src/collection/traversing.mjs ================================================ import * as util from '../util/index.mjs'; import * as is from '../is.mjs'; import cache from './cache-traversal-call.mjs'; let elesfn = {}; // DAG functions //////////////// let defineDagExtremity = function( params ){ return function dagExtremityImpl( selector ){ let eles = this; let ret = []; for( let i = 0; i < eles.length; i++ ){ let ele = eles[ i ]; if( !ele.isNode() ){ continue; } let disqualified = false; let edges = ele.connectedEdges(); for( let j = 0; j < edges.length; j++ ){ let edge = edges[j]; let src = edge.source(); let tgt = edge.target(); if( ( params.noIncomingEdges && tgt === ele && src !== ele ) || ( params.noOutgoingEdges && src === ele && tgt !== ele ) ){ disqualified = true; break; } } if( !disqualified ){ ret.push( ele ); } } return this.spawn( ret, true ).filter( selector ); }; }; let defineDagOneHop = function( params ){ return function( selector ){ let eles = this; let oEles = []; for( let i = 0; i < eles.length; i++ ){ let ele = eles[ i ]; if( !ele.isNode() ){ continue; } let edges = ele.connectedEdges(); for( let j = 0; j < edges.length; j++ ){ let edge = edges[ j ]; let src = edge.source(); let tgt = edge.target(); if( params.outgoing && src === ele ){ oEles.push( edge ); oEles.push( tgt ); } else if( params.incoming && tgt === ele ){ oEles.push( edge ); oEles.push( src ); } } } return this.spawn( oEles, true ).filter( selector ); }; }; let defineDagAllHops = function( params ){ return function( selector ){ let eles = this; let sEles = []; let sElesIds = {}; for( ;; ){ let next = params.outgoing ? eles.outgoers() : eles.incomers(); if( next.length === 0 ){ break; } // done if none left let newNext = false; for( let i = 0; i < next.length; i++ ){ let n = next[ i ]; let nid = n.id(); if( !sElesIds[ nid ] ){ sElesIds[ nid ] = true; sEles.push( n ); newNext = true; } } if( !newNext ){ break; } // done if touched all outgoers already eles = next; } return this.spawn( sEles, true ).filter( selector ); }; }; elesfn.clearTraversalCache = function( ){ for( let i = 0; i < this.length; i++ ){ this[i]._private.traversalCache = null; } }; util.extend( elesfn, { // get the root nodes in the DAG roots: defineDagExtremity({ noIncomingEdges: true }), // get the leaf nodes in the DAG leaves: defineDagExtremity({ noOutgoingEdges: true }), // normally called children in graph theory // these nodes =edges=> outgoing nodes outgoers: cache( defineDagOneHop({ outgoing: true }) , 'outgoers' ), // aka DAG descendants successors: defineDagAllHops({ outgoing: true }), // normally called parents in graph theory // these nodes <=edges= incoming nodes incomers: cache( defineDagOneHop({ incoming: true }), 'incomers' ), // aka DAG ancestors predecessors: defineDagAllHops({ incoming: true }) } ); // Neighbourhood functions ////////////////////////// util.extend( elesfn, { neighborhood: cache(function( selector ){ let elements = []; let nodes = this.nodes(); for( let i = 0; i < nodes.length; i++ ){ // for all nodes let node = nodes[ i ]; let connectedEdges = node.connectedEdges(); // for each connected edge, add the edge and the other node for( let j = 0; j < connectedEdges.length; j++ ){ let edge = connectedEdges[ j ]; let src = edge.source(); let tgt = edge.target(); let otherNode = node === src ? tgt : src; // need check in case of loop if( otherNode.length > 0 ){ elements.push( otherNode[0] ); // add node 1 hop away } // add connected edge elements.push( edge[0] ); } } return ( this.spawn( elements, true ) ).filter( selector ); }, 'neighborhood'), closedNeighborhood: function( selector ){ return this.neighborhood().add( this ).filter( selector ); }, openNeighborhood: function( selector ){ return this.neighborhood( selector ); } } ); // aliases elesfn.neighbourhood = elesfn.neighborhood; elesfn.closedNeighbourhood = elesfn.closedNeighborhood; elesfn.openNeighbourhood = elesfn.openNeighborhood; // Edge functions ///////////////// util.extend( elesfn, { source: cache(function sourceImpl( selector ){ let ele = this[0]; let src; if( ele ){ src = ele._private.source || ele.cy().collection(); } return src && selector ? src.filter( selector ) : src; }, 'source'), target: cache(function targetImpl( selector ){ let ele = this[0]; let tgt; if( ele ){ tgt = ele._private.target || ele.cy().collection(); } return tgt && selector ? tgt.filter( selector ) : tgt; }, 'target'), sources: defineSourceFunction( { attr: 'source' } ), targets: defineSourceFunction( { attr: 'target' } ) } ); function defineSourceFunction( params ){ return function sourceImpl( selector ){ let sources = []; for( let i = 0; i < this.length; i++ ){ let ele = this[ i ]; let src = ele._private[ params.attr ]; if( src ){ sources.push( src ); } } return this.spawn( sources, true ).filter( selector ); }; } util.extend( elesfn, { edgesWith: cache( defineEdgesWithFunction(), 'edgesWith' ), edgesTo: cache( defineEdgesWithFunction( { thisIsSrc: true } ), 'edgesTo' ) } ); function defineEdgesWithFunction( params ){ return function edgesWithImpl( otherNodes ){ let elements = []; let cy = this._private.cy; let p = params || {}; // get elements if a selector is specified if( is.string( otherNodes ) ){ otherNodes = cy.$( otherNodes ); } for( let h = 0; h < otherNodes.length; h++ ){ let edges = otherNodes[ h ]._private.edges; for( let i = 0; i < edges.length; i++ ){ let edge = edges[ i ]; let edgeData = edge._private.data; let thisToOther = this.hasElementWithId( edgeData.source ) && otherNodes.hasElementWithId( edgeData.target ); let otherToThis = otherNodes.hasElementWithId( edgeData.source ) && this.hasElementWithId( edgeData.target ); let edgeConnectsThisAndOther = thisToOther || otherToThis; if( !edgeConnectsThisAndOther ){ continue; } if( p.thisIsSrc || p.thisIsTgt ){ if( p.thisIsSrc && !thisToOther ){ continue; } if( p.thisIsTgt && !otherToThis ){ continue; } } elements.push( edge ); } } return this.spawn( elements, true ); }; } util.extend( elesfn, { connectedEdges: cache(function( selector ){ let retEles = []; let eles = this; for( let i = 0; i < eles.length; i++ ){ let node = eles[ i ]; if( !node.isNode() ){ continue; } let edges = node._private.edges; for( let j = 0; j < edges.length; j++ ){ let edge = edges[ j ]; retEles.push( edge ); } } return this.spawn( retEles, true ).filter( selector ); }, 'connectedEdges'), connectedNodes: cache(function( selector ){ let retEles = []; let eles = this; for( let i = 0; i < eles.length; i++ ){ let edge = eles[ i ]; if( !edge.isEdge() ){ continue; } retEles.push( edge.source()[0] ); retEles.push( edge.target()[0] ); } return this.spawn( retEles, true ).filter( selector ); }, 'connectedNodes'), parallelEdges: cache( defineParallelEdgesFunction(), 'parallelEdges' ), codirectedEdges: cache( defineParallelEdgesFunction( { codirected: true } ), 'codirectedEdges' ) } ); function defineParallelEdgesFunction( params ){ let defaults = { codirected: false }; params = util.extend( {}, defaults, params ); return function parallelEdgesImpl( selector ){ // micro-optimised for renderer let elements = []; let edges = this.edges(); let p = params; // look at all the edges in the collection for( let i = 0; i < edges.length; i++ ){ let edge1 = edges[ i ]; let edge1_p = edge1._private; let src1 = edge1_p.source; let srcid1 = src1._private.data.id; let tgtid1 = edge1_p.data.target; let srcEdges1 = src1._private.edges; // look at edges connected to the src node of this edge for( let j = 0; j < srcEdges1.length; j++ ){ let edge2 = srcEdges1[ j ]; let edge2data = edge2._private.data; let tgtid2 = edge2data.target; let srcid2 = edge2data.source; let codirected = tgtid2 === tgtid1 && srcid2 === srcid1; let oppdirected = srcid1 === tgtid2 && tgtid1 === srcid2; if( (p.codirected && codirected) || (!p.codirected && (codirected || oppdirected)) ){ elements.push( edge2 ); } } } return this.spawn( elements, true ).filter( selector ); }; } // Misc functions ///////////////// util.extend( elesfn, { components: function(root){ let self = this; let cy = self.cy(); let visited = cy.collection(); let unvisited = root == null ? self.nodes() : root.nodes(); let components = []; if( root != null && unvisited.empty() ){ // root may contain only edges unvisited = root.sources(); // doesn't matter which node to use (undirected), so just use the source sides } let visitInComponent = ( node, component ) => { visited.merge( node ); unvisited.unmerge( node ); component.merge( node ); }; if( unvisited.empty() ){ return self.spawn(); } do { // each iteration yields a component let cmpt = cy.collection(); components.push( cmpt ); let root = unvisited[0]; visitInComponent( root, cmpt ); self.bfs({ directed: false, roots: root, visit: v => visitInComponent( v, cmpt ) } ); cmpt.forEach(node => { node.connectedEdges().forEach(e => { // connectedEdges() usually cached if( self.has(e) && cmpt.has(e.source()) && cmpt.has(e.target()) ){ // has() is cheap cmpt.merge(e); // forEach() only considers nodes -- sets N at call time } }); }); } while( unvisited.length > 0 ); return components; }, component: function(){ let ele = this[0]; return ele.cy().mutableElements().components( ele )[0]; } } ); elesfn.componentsOf = elesfn.components; export default elesfn; ================================================ FILE: src/collection/zsort.mjs ================================================ /** * Elements are drawn in a specific order based on compound depth (low to high), the element type (nodes above edges), * and z-index (low to high). These styles affect how this applies: * * z-compound-depth: May be `bottom | orphan | auto | top`. The first drawn is `bottom`, then `orphan` which is the * same depth as the root of the compound graph, followed by the default value `auto` which draws in order from * root to leaves of the compound graph. The last drawn is `top`. * z-index-compare: May be `auto | manual`. The default value is `auto` which always draws edges under nodes. * `manual` ignores this convention and draws based on the `z-index` value setting. * z-index: An integer value that affects the relative draw order of elements. In general, an element with a higher * `z-index` will be drawn on top of an element with a lower `z-index`. */ import * as util from '../util/index.mjs'; let zIndexSort = function( a, b ){ let cy = a.cy(); let hasCompoundNodes = cy.hasCompoundNodes(); function getDepth(ele){ let style = ele.pstyle( 'z-compound-depth' ); if ( style.value === 'auto' ){ return hasCompoundNodes ? ele.zDepth() : 0; } else if ( style.value === 'bottom' ){ return -1; } else if ( style.value === 'top' ){ return util.MAX_INT; } // 'orphan' return 0; } let depthDiff = getDepth(a) - getDepth(b); if ( depthDiff !== 0 ){ return depthDiff; } function getEleDepth(ele){ let style = ele.pstyle( 'z-index-compare' ); if ( style.value === 'auto' ){ return ele.isNode() ? 1 : 0; } // 'manual' return 0; } let eleDiff = getEleDepth(a) - getEleDepth(b); if ( eleDiff !== 0 ){ return eleDiff; } let zDiff = a.pstyle( 'z-index' ).value - b.pstyle( 'z-index' ).value; if ( zDiff !== 0 ){ return zDiff; } // compare indices in the core (order added to graph w/ last on top) return a.poolIndex() - b.poolIndex(); }; export default zIndexSort; ================================================ FILE: src/core/add-remove.mjs ================================================ import * as is from '../is.mjs'; import * as util from '../util/index.mjs'; import Collection from '../collection/index.mjs'; import Element from '../collection/element.mjs'; let corefn = { add: function( opts ){ let elements; let cy = this; // add the elements if( is.elementOrCollection( opts ) ){ let eles = opts; if( eles._private.cy === cy ){ // same instance => just restore elements = eles.restore(); } else { // otherwise, copy from json let jsons = []; for( let i = 0; i < eles.length; i++ ){ let ele = eles[ i ]; jsons.push( ele.json() ); } elements = new Collection( cy, jsons ); } } // specify an array of options else if( is.array( opts ) ){ let jsons = opts; elements = new Collection( cy, jsons ); } // specify via opts.nodes and opts.edges else if( is.plainObject( opts ) && (is.array( opts.nodes ) || is.array( opts.edges )) ){ let elesByGroup = opts; let jsons = []; let grs = [ 'nodes', 'edges' ]; for( let i = 0, il = grs.length; i < il; i++ ){ let group = grs[ i ]; let elesArray = elesByGroup[ group ]; if( is.array( elesArray ) ){ for( let j = 0, jl = elesArray.length; j < jl; j++ ){ let json = util.extend( { group: group }, elesArray[ j ] ); jsons.push( json ); } } } elements = new Collection( cy, jsons ); } // specify options for one element else { let json = opts; elements = (new Element( cy, json )).collection(); } return elements; }, remove: function( collection ){ if( is.elementOrCollection( collection ) ){ // already have right ref } else if( is.string( collection ) ){ let selector = collection; collection = this.$( selector ); } return collection.remove(); } }; export default corefn; ================================================ FILE: src/core/animation/cubic-bezier.mjs ================================================ /* global Float32Array */ /*! Bezier curve function generator. Copyright Gaetan Renaudeau. MIT License: http://en.wikipedia.org/wiki/MIT_License */ function generateCubicBezier(mX1, mY1, mX2, mY2) { let NEWTON_ITERATIONS = 4, NEWTON_MIN_SLOPE = 0.001, SUBDIVISION_PRECISION = 0.0000001, SUBDIVISION_MAX_ITERATIONS = 10, kSplineTableSize = 11, kSampleStepSize = 1.0 / (kSplineTableSize - 1.0), float32ArraySupported = typeof Float32Array !== 'undefined'; /* Must contain four arguments. */ if (arguments.length !== 4) { return false; } /* Arguments must be numbers. */ for (let i = 0; i < 4; ++i) { if (typeof arguments[i] !== "number" || isNaN(arguments[i]) || !isFinite(arguments[i])) { return false; } } /* X values must be in the [0, 1] range. */ mX1 = Math.min(mX1, 1); mX2 = Math.min(mX2, 1); mX1 = Math.max(mX1, 0); mX2 = Math.max(mX2, 0); let mSampleValues = float32ArraySupported ? new Float32Array(kSplineTableSize) : new Array(kSplineTableSize); function A(aA1, aA2) { return 1.0 - 3.0 * aA2 + 3.0 * aA1; } function B(aA1, aA2) { return 3.0 * aA2 - 6.0 * aA1; } function C(aA1) { return 3.0 * aA1; } function calcBezier(aT, aA1, aA2) { return ((A(aA1, aA2) * aT + B(aA1, aA2)) * aT + C(aA1)) * aT; } function getSlope(aT, aA1, aA2) { return 3.0 * A(aA1, aA2) * aT * aT + 2.0 * B(aA1, aA2) * aT + C(aA1); } function newtonRaphsonIterate(aX, aGuessT) { for (let i = 0; i < NEWTON_ITERATIONS; ++i) { let currentSlope = getSlope(aGuessT, mX1, mX2); if (currentSlope === 0.0) { return aGuessT; } let currentX = calcBezier(aGuessT, mX1, mX2) - aX; aGuessT -= currentX / currentSlope; } return aGuessT; } function calcSampleValues() { for (let i = 0; i < kSplineTableSize; ++i) { mSampleValues[i] = calcBezier(i * kSampleStepSize, mX1, mX2); } } function binarySubdivide(aX, aA, aB) { let currentX, currentT, i = 0; do { currentT = aA + (aB - aA) / 2.0; currentX = calcBezier(currentT, mX1, mX2) - aX; if (currentX > 0.0) { aB = currentT; } else { aA = currentT; } } while (Math.abs(currentX) > SUBDIVISION_PRECISION && ++i < SUBDIVISION_MAX_ITERATIONS); return currentT; } function getTForX(aX) { let intervalStart = 0.0, currentSample = 1, lastSample = kSplineTableSize - 1; for (; currentSample !== lastSample && mSampleValues[currentSample] <= aX; ++currentSample) { intervalStart += kSampleStepSize; } --currentSample; let dist = (aX - mSampleValues[currentSample]) / (mSampleValues[currentSample + 1] - mSampleValues[currentSample]), guessForT = intervalStart + dist * kSampleStepSize, initialSlope = getSlope(guessForT, mX1, mX2); if (initialSlope >= NEWTON_MIN_SLOPE) { return newtonRaphsonIterate(aX, guessForT); } else if (initialSlope === 0.0) { return guessForT; } else { return binarySubdivide(aX, intervalStart, intervalStart + kSampleStepSize); } } let _precomputed = false; function precompute() { _precomputed = true; if (mX1 !== mY1 || mX2 !== mY2) { calcSampleValues(); } } let f = function(aX) { if (!_precomputed) { precompute(); } if (mX1 === mY1 && mX2 === mY2) { return aX; } if (aX === 0) { return 0; } if (aX === 1) { return 1; } return calcBezier(getTForX(aX), mY1, mY2); }; f.getControlPoints = function() { return [{ x: mX1, y: mY1 }, { x: mX2, y: mY2 }]; }; let str = "generateBezier(" + [mX1, mY1, mX2, mY2] + ")"; f.toString = function() { return str; }; return f; } export default generateCubicBezier; ================================================ FILE: src/core/animation/ease.mjs ================================================ import * as is from '../../is.mjs'; function getEasedValue( type, start, end, percent, easingFn ){ if( percent === 1 ){ return end; } if( start === end ){ return end; } let val = easingFn( start, end, percent ); if( type == null ){ return val; } if( type.roundValue || type.color ){ val = Math.round( val ); } if( type.min !== undefined ){ val = Math.max( val, type.min ); } if( type.max !== undefined ){ val = Math.min( val, type.max ); } return val; } function getValue( prop, spec ){ if( prop.pfValue != null || prop.value != null ){ if( prop.pfValue != null && (spec == null || spec.type.units !== '%') ){ return prop.pfValue; } else { return prop.value; } } else { return prop; } } function ease( startProp, endProp, percent, easingFn, propSpec ){ let type = propSpec != null ? propSpec.type : null; if( percent < 0 ){ percent = 0; } else if( percent > 1 ){ percent = 1; } let start = getValue( startProp, propSpec ); let end = getValue( endProp, propSpec ); if( is.number( start ) && is.number( end ) ){ return getEasedValue( type, start, end, percent, easingFn ); } else if( is.array( start ) && is.array( end ) ){ let easedArr = []; for( let i = 0; i < end.length; i++ ){ let si = start[ i ]; let ei = end[ i ]; if( si != null && ei != null ){ let val = getEasedValue( type, si, ei, percent, easingFn ); easedArr.push( val ); } else { easedArr.push( ei ); } } return easedArr; } return undefined; } export default ease; ================================================ FILE: src/core/animation/easings.mjs ================================================ import generateCubicBezier from './cubic-bezier.mjs'; import generateSpringRK4 from './spring.mjs'; let cubicBezier = function( t1, p1, t2, p2 ){ let bezier = generateCubicBezier( t1, p1, t2, p2 ); return function( start, end, percent ){ return start + ( end - start ) * bezier( percent ); }; }; let easings = { 'linear': function( start, end, percent ){ return start + (end - start) * percent; }, // default easings 'ease': cubicBezier( 0.25, 0.1, 0.25, 1 ), 'ease-in': cubicBezier( 0.42, 0, 1, 1 ), 'ease-out': cubicBezier( 0, 0, 0.58, 1 ), 'ease-in-out': cubicBezier( 0.42, 0, 0.58, 1 ), // sine 'ease-in-sine': cubicBezier( 0.47, 0, 0.745, 0.715 ), 'ease-out-sine': cubicBezier( 0.39, 0.575, 0.565, 1 ), 'ease-in-out-sine': cubicBezier( 0.445, 0.05, 0.55, 0.95 ), // quad 'ease-in-quad': cubicBezier( 0.55, 0.085, 0.68, 0.53 ), 'ease-out-quad': cubicBezier( 0.25, 0.46, 0.45, 0.94 ), 'ease-in-out-quad': cubicBezier( 0.455, 0.03, 0.515, 0.955 ), // cubic 'ease-in-cubic': cubicBezier( 0.55, 0.055, 0.675, 0.19 ), 'ease-out-cubic': cubicBezier( 0.215, 0.61, 0.355, 1 ), 'ease-in-out-cubic': cubicBezier( 0.645, 0.045, 0.355, 1 ), // quart 'ease-in-quart': cubicBezier( 0.895, 0.03, 0.685, 0.22 ), 'ease-out-quart': cubicBezier( 0.165, 0.84, 0.44, 1 ), 'ease-in-out-quart': cubicBezier( 0.77, 0, 0.175, 1 ), // quint 'ease-in-quint': cubicBezier( 0.755, 0.05, 0.855, 0.06 ), 'ease-out-quint': cubicBezier( 0.23, 1, 0.32, 1 ), 'ease-in-out-quint': cubicBezier( 0.86, 0, 0.07, 1 ), // expo 'ease-in-expo': cubicBezier( 0.95, 0.05, 0.795, 0.035 ), 'ease-out-expo': cubicBezier( 0.19, 1, 0.22, 1 ), 'ease-in-out-expo': cubicBezier( 1, 0, 0, 1 ), // circ 'ease-in-circ': cubicBezier( 0.6, 0.04, 0.98, 0.335 ), 'ease-out-circ': cubicBezier( 0.075, 0.82, 0.165, 1 ), 'ease-in-out-circ': cubicBezier( 0.785, 0.135, 0.15, 0.86 ), // user param easings... 'spring': function( tension, friction, duration ){ if( duration === 0 ){ // can't get a spring w/ duration 0 return easings.linear; // duration 0 => jump to end so impl doesn't matter } let spring = generateSpringRK4( tension, friction, duration ); return function( start, end, percent ){ return start + (end - start) * spring( percent ); }; }, 'cubic-bezier': cubicBezier }; export default easings; ================================================ FILE: src/core/animation/index.mjs ================================================ import define from '../../define/index.mjs'; import * as util from '../../util/index.mjs'; import stepAll from './step-all.mjs'; let corefn = ({ // pull in animation functions animate: define.animate(), animation: define.animation(), animated: define.animated(), clearQueue: define.clearQueue(), delay: define.delay(), delayAnimation: define.delayAnimation(), stop: define.stop(), addToAnimationPool: function( eles ){ let cy = this; if( !cy.styleEnabled() ){ return; } // save cycles when no style used cy._private.aniEles.merge( eles ); }, stopAnimationLoop: function(){ this._private.animationsRunning = false; }, startAnimationLoop: function(){ let cy = this; cy._private.animationsRunning = true; if( !cy.styleEnabled() ){ return; } // save cycles when no style used // NB the animation loop will exec in headless environments if style enabled // and explicit cy.destroy() is necessary to stop the loop function headlessStep(){ if( !cy._private.animationsRunning ){ return; } util.requestAnimationFrame( function animationStep( now ){ stepAll( now, cy ); headlessStep(); } ); } let renderer = cy.renderer(); if( renderer && renderer.beforeRender ){ // let the renderer schedule animations renderer.beforeRender( function rendererAnimationStep( willDraw, now ){ stepAll( now, cy ); }, renderer.beforeRenderPriorities.animations ); } else { // manage the animation loop ourselves headlessStep(); // first call } } }); export default corefn; ================================================ FILE: src/core/animation/spring.mjs ================================================ /*! Runge-Kutta spring physics function generator. Adapted from Framer.js, copyright Koen Bok. MIT License: http://en.wikipedia.org/wiki/MIT_License */ /* Given a tension, friction, and duration, a simulation at 60FPS will first run without a defined duration in order to calculate the full path. A second pass then adjusts the time delta -- using the relation between actual time and duration -- to calculate the path for the duration-constrained animation. */ let generateSpringRK4 = (function(){ function springAccelerationForState( state ){ return (-state.tension * state.x) - (state.friction * state.v); } function springEvaluateStateWithDerivative( initialState, dt, derivative ){ let state = { x: initialState.x + derivative.dx * dt, v: initialState.v + derivative.dv * dt, tension: initialState.tension, friction: initialState.friction }; return { dx: state.v, dv: springAccelerationForState( state ) }; } function springIntegrateState( state, dt ){ let a = { dx: state.v, dv: springAccelerationForState( state ) }, b = springEvaluateStateWithDerivative( state, dt * 0.5, a ), c = springEvaluateStateWithDerivative( state, dt * 0.5, b ), d = springEvaluateStateWithDerivative( state, dt, c ), dxdt = 1.0 / 6.0 * (a.dx + 2.0 * (b.dx + c.dx) + d.dx), dvdt = 1.0 / 6.0 * (a.dv + 2.0 * (b.dv + c.dv) + d.dv); state.x = state.x + dxdt * dt; state.v = state.v + dvdt * dt; return state; } return function springRK4Factory( tension, friction, duration ){ let initState = { x: -1, v: 0, tension: null, friction: null }, path = [0], time_lapsed = 0, tolerance = 1 / 10000, DT = 16 / 1000, have_duration, dt, last_state; tension = parseFloat( tension ) || 500; friction = parseFloat( friction ) || 20; duration = duration || null; initState.tension = tension; initState.friction = friction; have_duration = duration !== null; /* Calculate the actual time it takes for this animation to complete with the provided conditions. */ if( have_duration ){ /* Run the simulation without a duration. */ time_lapsed = springRK4Factory( tension, friction ); /* Compute the adjusted time delta. */ dt = time_lapsed / duration * DT; } else { dt = DT; } for(;;){ /* Next/step function .*/ last_state = springIntegrateState( last_state || initState, dt ); /* Store the position. */ path.push( 1 + last_state.x ); time_lapsed += 16; /* If the change threshold is reached, break. */ if( !(Math.abs( last_state.x ) > tolerance && Math.abs( last_state.v ) > tolerance) ){ break; } } /* If duration is not defined, return the actual time required for completing this animation. Otherwise, return a closure that holds the computed path and returns a snapshot of the position according to a given percentComplete. */ return !have_duration ? time_lapsed : function( percentComplete ){ return path[ (percentComplete * (path.length - 1)) | 0 ]; }; }; }()); export default generateSpringRK4; ================================================ FILE: src/core/animation/start.mjs ================================================ function startAnimation( self, ani, now, isCore ){ let ani_p = ani._private; ani_p.started = true; ani_p.startTime = now - ani_p.progress * ani_p.duration; } export default startAnimation; ================================================ FILE: src/core/animation/step-all.mjs ================================================ import step from './step.mjs'; import startAnimation from './start.mjs'; function stepAll( now, cy ){ let eles = cy._private.aniEles; let doneEles = []; function stepOne( ele, isCore ){ let _p = ele._private; let current = _p.animation.current; let queue = _p.animation.queue; let ranAnis = false; // if nothing currently animating, get something from the queue if( current.length === 0 ){ let next = queue.shift(); if( next ){ current.push( next ); } } let callbacks = function( callbacks ){ for( let j = callbacks.length - 1; j >= 0; j-- ){ let cb = callbacks[ j ]; cb(); } callbacks.splice( 0, callbacks.length ); }; // step and remove if done for( let i = current.length - 1; i >= 0; i-- ){ let ani = current[ i ]; let ani_p = ani._private; if( ani_p.stopped ){ current.splice( i, 1 ); ani_p.hooked = false; ani_p.playing = false; ani_p.started = false; callbacks( ani_p.frames ); continue; } if( !ani_p.playing && !ani_p.applying ){ continue; } // an apply() while playing shouldn't do anything if( ani_p.playing && ani_p.applying ){ ani_p.applying = false; } if( !ani_p.started ){ startAnimation( ele, ani, now, isCore ); } step( ele, ani, now, isCore ); if( ani_p.applying ){ ani_p.applying = false; } callbacks( ani_p.frames ); if( ani_p.step != null ){ ani_p.step(now); } if( ani.completed() ){ current.splice( i, 1 ); ani_p.hooked = false; ani_p.playing = false; ani_p.started = false; callbacks( ani_p.completes ); } ranAnis = true; } if( !isCore && current.length === 0 && queue.length === 0 ){ doneEles.push( ele ); } return ranAnis; } // stepElement // handle all eles let ranEleAni = false; for( let e = 0; e < eles.length; e++ ){ let ele = eles[ e ]; let handledThisEle = stepOne( ele ); ranEleAni = ranEleAni || handledThisEle; } // each element let ranCoreAni = stepOne( cy, true ); // notify renderer if( ranEleAni || ranCoreAni ){ if( eles.length > 0 ){ cy.notify('draw', eles); } else { cy.notify('draw'); } } // remove elements from list of currently animating if its queues are empty eles.unmerge( doneEles ); cy.emit('step'); } // stepAll export default stepAll; ================================================ FILE: src/core/animation/step.mjs ================================================ import easings from './easings.mjs'; import ease from './ease.mjs'; import * as is from '../../is.mjs'; import {bound} from '../../math.mjs'; function step( self, ani, now, isCore ){ let isEles = !isCore; let _p = self._private; let ani_p = ani._private; let pEasing = ani_p.easing; let startTime = ani_p.startTime; let cy = isCore ? self : self.cy(); let style = cy.style(); if( !ani_p.easingImpl ){ if( pEasing == null ){ // use default ani_p.easingImpl = easings[ 'linear' ]; } else { // then define w/ name let easingVals; if( is.string( pEasing ) ){ let easingProp = style.parse( 'transition-timing-function', pEasing ); easingVals = easingProp.value; } else { // then assume preparsed array easingVals = pEasing; } let name, args; if( is.string( easingVals ) ){ name = easingVals; args = []; } else { name = easingVals[1]; args = easingVals.slice( 2 ).map( function( n ){ return +n; } ); } if( args.length > 0 ){ // create with args if( name === 'spring' ){ args.push( ani_p.duration ); // need duration to generate spring } ani_p.easingImpl = easings[ name ].apply( null, args ); } else { // static impl by name ani_p.easingImpl = easings[ name ]; } } } let easing = ani_p.easingImpl; let percent; if( ani_p.duration === 0 ){ percent = 1; } else { percent = (now - startTime) / ani_p.duration; } if( ani_p.applying ){ percent = ani_p.progress; } if( percent < 0 ){ percent = 0; } else if( percent > 1 ){ percent = 1; } if( ani_p.delay == null ){ // then update let startPos = ani_p.startPosition; let endPos = ani_p.position; if( endPos && isEles && !self.locked() ){ let newPos = {}; if( valid( startPos.x, endPos.x ) ){ newPos.x = ease( startPos.x, endPos.x, percent, easing ); } if( valid( startPos.y, endPos.y ) ){ newPos.y = ease( startPos.y, endPos.y, percent, easing ); } self.position( newPos ); } let startPan = ani_p.startPan; let endPan = ani_p.pan; let pan = _p.pan; let animatingPan = endPan != null && isCore; if( animatingPan ){ if( valid( startPan.x, endPan.x ) ){ pan.x = ease( startPan.x, endPan.x, percent, easing ); } if( valid( startPan.y, endPan.y ) ){ pan.y = ease( startPan.y, endPan.y, percent, easing ); } self.emit( 'pan' ); } let startZoom = ani_p.startZoom; let endZoom = ani_p.zoom; let animatingZoom = endZoom != null && isCore; if( animatingZoom ){ if( valid( startZoom, endZoom ) ){ _p.zoom = bound( _p.minZoom, ease( startZoom, endZoom, percent, easing ), _p.maxZoom ); } self.emit( 'zoom' ); } if( animatingPan || animatingZoom ){ self.emit( 'viewport' ); } let props = ani_p.style; if( props && props.length > 0 && isEles ){ for( let i = 0; i < props.length; i++ ){ let prop = props[ i ]; let name = prop.name; let end = prop; let start = ani_p.startStyle[ name ]; let propSpec = style.properties[ start.name ]; let easedVal = ease( start, end, percent, easing, propSpec ); style.overrideBypass( self, name, easedVal ); } // for props self.emit('style'); } // if } ani_p.progress = percent; return percent; } function valid( start, end ){ if( start == null || end == null ){ return false; } if( is.number( start ) && is.number( end ) ){ return true; } else if( (start) && (end) ){ return true; } return false; } export default step; ================================================ FILE: src/core/data.mjs ================================================ import define from '../define/index.mjs'; const fn = { data: define.data( { field: 'data', bindingEvent: 'data', allowBinding: true, allowSetting: true, settingEvent: 'data', settingTriggersEvent: true, triggerFnName: 'trigger', allowGetting: true, updateStyle: true } ), removeData: define.removeData( { field: 'data', event: 'data', triggerFnName: 'trigger', triggerEvent: true, updateStyle: true } ), scratch: define.data( { field: 'scratch', bindingEvent: 'scratch', allowBinding: true, allowSetting: true, settingEvent: 'scratch', settingTriggersEvent: true, triggerFnName: 'trigger', allowGetting: true, updateStyle: true } ), removeScratch: define.removeData( { field: 'scratch', event: 'scratch', triggerFnName: 'trigger', triggerEvent: true, updateStyle: true } ) }; // aliases fn.attr = fn.data; fn.removeAttr = fn.removeData; export default fn; ================================================ FILE: src/core/events.mjs ================================================ import Emitter from '../emitter.mjs'; import define from '../define/index.mjs'; import * as is from '../is.mjs'; import Selector from '../selector/index.mjs'; let emitterOptions = { qualifierCompare: function( selector1, selector2 ){ if( selector1 == null || selector2 == null ){ return selector1 == null && selector2 == null; } else { return selector1.sameText( selector2 ); } }, eventMatches: function( cy, listener, eventObj ){ let selector = listener.qualifier; if( selector != null ){ return cy !== eventObj.target && is.element( eventObj.target ) && selector.matches( eventObj.target ); } return true; }, addEventFields: function( cy, evt ){ evt.cy = cy; evt.target = cy; }, callbackContext: function( cy, listener, eventObj ){ return listener.qualifier != null ? eventObj.target : cy; } }; let argSelector = function( arg ){ if( is.string(arg) ){ return new Selector( arg ); } else { return arg; } }; let elesfn = ({ createEmitter: function(){ let _p = this._private; if( !_p.emitter ){ _p.emitter = new Emitter( emitterOptions, this ); } return this; }, emitter: function(){ return this._private.emitter; }, on: function( events, selector, callback ){ this.emitter().on( events, argSelector(selector), callback ); return this; }, removeListener: function( events, selector, callback ){ this.emitter().removeListener( events, argSelector(selector), callback ); return this; }, removeAllListeners: function(){ this.emitter().removeAllListeners(); return this; }, one: function( events, selector, callback ){ this.emitter().one( events, argSelector(selector), callback ); return this; }, once: function( events, selector, callback ){ this.emitter().one( events, argSelector(selector), callback ); return this; }, emit: function( events, extraParams ){ this.emitter().emit( events, extraParams ); return this; }, emitAndNotify: function( event, eles ){ this.emit( event ); this.notify( event, eles ); return this; } }); define.eventAliasesOn( elesfn ); export default elesfn; ================================================ FILE: src/core/export.mjs ================================================ let corefn = ({ png: function( options ){ let renderer = this._private.renderer; options = options || {}; return renderer.png( options ); }, jpg: function( options ){ let renderer = this._private.renderer; options = options || {}; options.bg = options.bg || '#fff'; return renderer.jpg( options ); } }); corefn.jpeg = corefn.jpg; export default corefn; ================================================ FILE: src/core/index.mjs ================================================ import window from '../window.mjs'; import * as util from '../util/index.mjs'; import Collection from '../collection/index.mjs'; import * as is from '../is.mjs'; import Promise from '../promise.mjs'; import addRemove from './add-remove.mjs'; import animation from './animation/index.mjs'; import events from './events.mjs'; import exportFormat from './export.mjs'; import layout from './layout.mjs'; import notification from './notification.mjs'; import renderer from './renderer.mjs'; import search from './search.mjs'; import style from './style.mjs'; import viewport from './viewport.mjs'; import data from './data.mjs'; let Core = function( opts ){ let cy = this; opts = util.extend( {}, opts ); let container = opts.container; // allow for passing a wrapped jquery object // e.g. cytoscape({ container: $('#cy') }) if( container && !is.htmlElement( container ) && is.htmlElement( container[0] ) ){ container = container[0]; } let reg = container ? container._cyreg : null; // e.g. already registered some info (e.g. readies) via jquery reg = reg || {}; if( reg && reg.cy ){ reg.cy.destroy(); reg = {}; // old instance => replace reg completely } let readies = reg.readies = reg.readies || []; if( container ){ container._cyreg = reg; } // make sure container assoc'd reg points to this cy reg.cy = cy; let head = window !== undefined && container !== undefined && !opts.headless; let options = opts; options.layout = util.extend( { name: head ? 'grid' : 'null' }, options.layout ); options.renderer = util.extend( { name: head ? 'canvas' : 'null' }, options.renderer ); let defVal = function( def, val, altVal ){ if( val !== undefined ){ return val; } else if( altVal !== undefined ){ return altVal; } else { return def; } }; let _p = this._private = { container: container, // html dom ele container ready: false, // whether ready has been triggered options: options, // cached options elements: new Collection( this ), // elements in the graph listeners: [], // list of listeners aniEles: new Collection( this ), // elements being animated data: options.data || {}, // data for the core scratch: {}, // scratch object for core layout: null, renderer: null, destroyed: false, // whether destroy was called notificationsEnabled: true, // whether notifications are sent to the renderer minZoom: 1e-50, maxZoom: 1e50, zoomingEnabled: defVal( true, options.zoomingEnabled ), userZoomingEnabled: defVal( true, options.userZoomingEnabled ), panningEnabled: defVal( true, options.panningEnabled ), userPanningEnabled: defVal( true, options.userPanningEnabled ), boxSelectionEnabled: defVal( true, options.boxSelectionEnabled ), autolock: defVal( false, options.autolock, options.autolockNodes ), autoungrabify: defVal( false, options.autoungrabify, options.autoungrabifyNodes ), autounselectify: defVal( false, options.autounselectify ), styleEnabled: options.styleEnabled === undefined ? head : options.styleEnabled, zoom: is.number( options.zoom ) ? options.zoom : 1, pan: { x: is.plainObject( options.pan ) && is.number( options.pan.x ) ? options.pan.x : 0, y: is.plainObject( options.pan ) && is.number( options.pan.y ) ? options.pan.y : 0 }, animation: { // object for currently-running animations current: [], queue: [] }, hasCompoundNodes: false, multiClickDebounceTime: defVal(250, options.multiClickDebounceTime) }; this.createEmitter(); // set selection type this.selectionType( options.selectionType ); // init zoom bounds this.zoomRange({ min: options.minZoom, max: options.maxZoom }); let loadExtData = function( extData, next ){ let anyIsPromise = extData.some( is.promise ); if( anyIsPromise ){ return Promise.all( extData ).then( next ); // load all data asynchronously, then exec rest of init } else { next( extData ); // exec synchronously for convenience } }; // start with the default stylesheet so we have something before loading an external stylesheet if( _p.styleEnabled ){ cy.setStyle([]); } // create the renderer let rendererOptions = util.assign({}, options, options.renderer); // allow rendering hints in top level options cy.initRenderer( rendererOptions ); let setElesAndLayout = function( elements, onload, ondone ){ cy.notifications( false ); // remove old elements let oldEles = cy.mutableElements(); if( oldEles.length > 0 ){ oldEles.remove(); } if( elements != null ){ if( is.plainObject( elements ) || is.array( elements ) ){ cy.add( elements ); } } cy.one( 'layoutready', function( e ){ cy.notifications( true ); cy.emit( e ); // we missed this event by turning notifications off, so pass it on cy.one( 'load', onload ); cy.emitAndNotify( 'load' ); } ).one( 'layoutstop', function(){ cy.one( 'done', ondone ); cy.emit( 'done' ); } ); let layoutOpts = util.extend( {}, cy._private.options.layout ); layoutOpts.eles = cy.elements(); cy.layout( layoutOpts ).run(); }; loadExtData([ options.style, options.elements ], function( thens ){ let initStyle = thens[0]; let initEles = thens[1]; // init style if( _p.styleEnabled ){ cy.style().append( initStyle ); } // initial load setElesAndLayout( initEles, function(){ // onready cy.startAnimationLoop(); _p.ready = true; // if a ready callback is specified as an option, the bind it if( is.fn( options.ready ) ){ cy.on( 'ready', options.ready ); } // bind all the ready handlers registered before creating this instance for( let i = 0; i < readies.length; i++ ){ let fn = readies[ i ]; cy.on( 'ready', fn ); } if( reg ){ reg.readies = []; } // clear b/c we've bound them all and don't want to keep it around in case a new core uses the same div etc cy.emit( 'ready' ); }, options.done ); } ); }; let corefn = Core.prototype; // short alias util.extend( corefn, { instanceString: function(){ return 'core'; }, isReady: function(){ return this._private.ready; }, destroyed: function(){ return this._private.destroyed; }, ready: function( fn ){ if( this.isReady() ){ this.emitter().emit( 'ready', [], fn ); // just calls fn as though triggered via ready event } else { this.on( 'ready', fn ); } return this; }, destroy: function(){ let cy = this; if( cy.destroyed() ) return; cy.stopAnimationLoop(); cy.destroyRenderer(); this.emit( 'destroy' ); cy._private.destroyed = true; return cy; }, hasElementWithId: function( id ){ return this._private.elements.hasElementWithId( id ); }, getElementById: function( id ){ return this._private.elements.getElementById( id ); }, hasCompoundNodes: function(){ return this._private.hasCompoundNodes; }, headless: function(){ return this._private.renderer.isHeadless(); }, styleEnabled: function(){ return this._private.styleEnabled; }, addToPool: function( eles ){ this._private.elements.merge( eles ); return this; // chaining }, removeFromPool: function( eles ){ this._private.elements.unmerge( eles ); return this; }, container: function(){ return this._private.container || null; }, window: function() { let container = this._private.container; if (container == null) return window; let ownerDocument = this._private.container.ownerDocument; if (ownerDocument === undefined || ownerDocument == null) { return window; } return ownerDocument.defaultView || window; }, mount: function( container ){ if( container == null ){ return; } let cy = this; let _p = cy._private; let options = _p.options; if( !is.htmlElement( container ) && is.htmlElement( container[0] ) ){ container = container[0]; } cy.stopAnimationLoop(); cy.destroyRenderer(); _p.container = container; _p.styleEnabled = true; cy.invalidateSize(); cy.initRenderer( util.assign({}, options, options.renderer, { // allow custom renderer name to be re-used, otherwise use canvas name: options.renderer.name === 'null' ? 'canvas' : options.renderer.name }) ); cy.startAnimationLoop(); cy.style( options.style ); cy.emit( 'mount' ); return cy; }, unmount: function(){ let cy = this; cy.stopAnimationLoop(); cy.destroyRenderer(); cy.initRenderer( { name: 'null' } ); cy.emit( 'unmount' ); return cy; }, options: function(){ return util.copy( this._private.options ); }, json: function( obj ){ let cy = this; let _p = cy._private; let eles = cy.mutableElements(); let getFreshRef = ele => cy.getElementById(ele.id()); if( is.plainObject( obj ) ){ // set cy.startBatch(); if( obj.elements ){ let idInJson = {}; let updateEles = function( jsons, gr ){ let toAdd = []; let toMod = []; for( let i = 0; i < jsons.length; i++ ){ let json = jsons[ i ]; if( !json.data.id ){ util.warn( 'cy.json() cannot handle elements without an ID attribute' ); continue; } let id = '' + json.data.id; // id must be string let ele = cy.getElementById( id ); idInJson[ id ] = true; if( ele.length !== 0 ){ // existing element should be updated toMod.push({ ele, json }); } else { // otherwise should be added if( gr ){ json.group = gr; toAdd.push( json ); } else { toAdd.push( json ); } } } cy.add( toAdd ); for( let i = 0; i < toMod.length; i++ ){ let { ele, json } = toMod[i]; ele.json(json); } }; if( is.array( obj.elements ) ){ // elements: [] updateEles( obj.elements ); } else { // elements: { nodes: [], edges: [] } let grs = [ 'nodes', 'edges' ]; for( let i = 0; i < grs.length; i++ ){ let gr = grs[ i ]; let elements = obj.elements[ gr ]; if( is.array( elements ) ){ updateEles( elements, gr ); } } } let parentsToRemove = cy.collection(); (eles .filter(ele => !idInJson[ ele.id() ]) .forEach(ele => { if ( ele.isParent() ) { parentsToRemove.merge(ele); } else { ele.remove(); } }) ); // so that children are not removed w/parent parentsToRemove.forEach(ele => ele.children().move({ parent: null })); // intermediate parents may be moved by prior line, so make sure we remove by fresh refs parentsToRemove.forEach(ele => getFreshRef(ele).remove()); } if( obj.style ){ cy.style( obj.style ); } if( obj.zoom != null && obj.zoom !== _p.zoom ){ cy.zoom( obj.zoom ); } if( obj.pan ){ if( obj.pan.x !== _p.pan.x || obj.pan.y !== _p.pan.y ){ cy.pan( obj.pan ); } } if( obj.data ){ cy.data( obj.data ); } let fields = [ 'minZoom', 'maxZoom', 'zoomingEnabled', 'userZoomingEnabled', 'panningEnabled', 'userPanningEnabled', 'boxSelectionEnabled', 'autolock', 'autoungrabify', 'autounselectify', 'multiClickDebounceTime' ]; for( let i = 0; i < fields.length; i++ ){ let f = fields[ i ]; if( obj[ f ] != null ){ cy[ f ]( obj[ f ] ); } } cy.endBatch(); return this; // chaining } else { // get let flat = !!obj; let json = {}; if( flat ){ json.elements = this.elements().map( ele => ele.json() ); } else { json.elements = {}; eles.forEach( function( ele ){ let group = ele.group(); if( !json.elements[ group ] ){ json.elements[ group ] = []; } json.elements[ group ].push( ele.json() ); } ); } if( this._private.styleEnabled ){ json.style = cy.style().json(); } json.data = util.copy( cy.data() ); let options = _p.options; json.zoomingEnabled = _p.zoomingEnabled; json.userZoomingEnabled = _p.userZoomingEnabled; json.zoom = _p.zoom; json.minZoom = _p.minZoom; json.maxZoom = _p.maxZoom; json.panningEnabled = _p.panningEnabled; json.userPanningEnabled = _p.userPanningEnabled; json.pan = util.copy( _p.pan ); json.boxSelectionEnabled = _p.boxSelectionEnabled; json.renderer = util.copy( options.renderer ); json.hideEdgesOnViewport = options.hideEdgesOnViewport; json.textureOnViewport = options.textureOnViewport; json.wheelSensitivity = options.wheelSensitivity; json.motionBlur = options.motionBlur; json.multiClickDebounceTime = options.multiClickDebounceTime; return json; } } } ); corefn.$id = corefn.getElementById; [ addRemove, animation, events, exportFormat, layout, notification, renderer, search, style, viewport, data ].forEach( function( props ){ util.extend( corefn, props ); } ); export default Core; ================================================ FILE: src/core/layout.mjs ================================================ import * as util from '../util/index.mjs'; import * as is from '../is.mjs'; let corefn = ({ layout: function( options ){ let cy = this; if( options == null ){ util.error( 'Layout options must be specified to make a layout' ); return; } if( options.name == null ){ util.error( 'A `name` must be specified to make a layout' ); return; } let name = options.name; let Layout = cy.extension( 'layout', name ); if( Layout == null ){ util.error( 'No such layout `' + name + '` found. Did you forget to import it and `cytoscape.use()` it?' ); return; } let eles; if( is.string( options.eles ) ){ eles = cy.$( options.eles ); } else { eles = options.eles != null ? options.eles : cy.$(); } let layout = new Layout( util.extend( {}, options, { cy: cy, eles: eles } ) ); return layout; } }); corefn.createLayout = corefn.makeLayout = corefn.layout; export default corefn; ================================================ FILE: src/core/notification.mjs ================================================ let corefn = ({ notify: function( eventName, eventEles ){ let _p = this._private; if( this.batching() ){ _p.batchNotifications = _p.batchNotifications || {}; let eles = _p.batchNotifications[ eventName ] = _p.batchNotifications[ eventName ] || this.collection(); if( eventEles != null ){ eles.merge( eventEles ); } return; // notifications are disabled during batching } if( !_p.notificationsEnabled ){ return; } // exit on disabled let renderer = this.renderer(); // exit if destroy() called on core or renderer in between frames #1499 #1528 if( this.destroyed() || !renderer ){ return; } renderer.notify( eventName, eventEles ); }, notifications: function( bool ){ let p = this._private; if( bool === undefined ){ return p.notificationsEnabled; } else { p.notificationsEnabled = bool ? true : false; } return this; }, noNotifications: function( callback ){ this.notifications( false ); callback(); this.notifications( true ); }, batching: function(){ return this._private.batchCount > 0; }, startBatch: function(){ let _p = this._private; if( _p.batchCount == null ){ _p.batchCount = 0; } if( _p.batchCount === 0 ){ _p.batchStyleEles = this.collection(); _p.batchNotifications = {}; } _p.batchCount++; return this; }, endBatch: function(){ let _p = this._private; if( _p.batchCount === 0 ){ return this; } _p.batchCount--; if( _p.batchCount === 0 ){ // update style for dirty eles _p.batchStyleEles.updateStyle(); let renderer = this.renderer(); // notify the renderer of queued eles and event types Object.keys( _p.batchNotifications ).forEach( eventName => { let eles = _p.batchNotifications[eventName]; if( eles.empty() ){ renderer.notify( eventName ); } else { renderer.notify( eventName, eles ); } } ); } return this; }, batch: function( callback ){ this.startBatch(); callback(); this.endBatch(); return this; }, // for backwards compatibility batchData: function( map ){ let cy = this; return this.batch( function(){ let ids = Object.keys( map ); for( let i = 0; i < ids.length; i++ ){ let id = ids[i]; let data = map[ id ]; let ele = cy.getElementById( id ); ele.data( data ); } } ); } }); export default corefn; ================================================ FILE: src/core/renderer.mjs ================================================ import * as util from '../util/index.mjs'; let rendererDefaults = util.defaults({ hideEdgesOnViewport: false, textureOnViewport: false, motionBlur: false, motionBlurOpacity: 0.05, pixelRatio: undefined, desktopTapThreshold: 4, touchTapThreshold: 8, wheelSensitivity: 1, debug: false, showFps: false, // webgl options webgl: false, webglDebug: false, webglDebugShowAtlases: false, // defaults good for mobile webglTexSize: 2048, webglTexRows: 36, webglTexRowsNodes: 18, webglBatchSize: 2048, webglTexPerBatch: 14, webglBgColor: [255, 255, 255] }); let corefn = ({ renderTo: function( context, zoom, pan, pxRatio ){ let r = this._private.renderer; r.renderTo( context, zoom, pan, pxRatio ); return this; }, renderer: function(){ return this._private.renderer; }, forceRender: function(){ this.notify('draw'); return this; }, resize: function(){ this.invalidateSize(); this.emitAndNotify('resize'); return this; }, initRenderer: function( options ){ let cy = this; let RendererProto = cy.extension( 'renderer', options.name ); if( RendererProto == null ){ util.error( `Can not initialise: No such renderer \`${options.name}\` found. Did you forget to import it and \`cytoscape.use()\` it?` ); return; } if( options.wheelSensitivity !== undefined ){ util.warn(`You have set a custom wheel sensitivity. This will make your app zoom unnaturally when using mainstream mice. You should change this value from the default only if you can guarantee that all your users will use the same hardware and OS configuration as your current machine.`); } let rOpts = rendererDefaults(options); rOpts.cy = cy; cy._private.renderer = new RendererProto( rOpts ); this.notify('init'); }, destroyRenderer: function(){ let cy = this; cy.notify('destroy'); // destroy the renderer let domEle = cy.container(); if( domEle ){ domEle._cyreg = null; while( domEle.childNodes.length > 0 ){ domEle.removeChild( domEle.childNodes[0] ); } } cy._private.renderer = null; // to be extra safe, remove the ref cy.mutableElements().forEach(function( ele ){ let _p = ele._private; _p.rscratch = {}; _p.rstyle = {}; _p.animation.current = []; _p.animation.queue = []; }); }, onRender: function( fn ){ return this.on('render', fn); }, offRender: function( fn ){ return this.off('render', fn); } }); corefn.invalidateDimensions = corefn.resize; export default corefn; ================================================ FILE: src/core/search.mjs ================================================ import * as is from '../is.mjs'; import Collection from '../collection/index.mjs'; let corefn = ({ // get a collection // - empty collection on no args // - collection of elements in the graph on selector arg // - guarantee a returned collection when elements or collection specified collection: function( eles, opts ){ if( is.string( eles ) ){ return this.$( eles ); } else if( is.elementOrCollection( eles ) ){ return eles.collection(); } else if( is.array( eles ) ){ if (!opts) { opts = {}; } return new Collection( this, eles, opts.unique, opts.removed ); } return new Collection( this ); }, nodes: function( selector ){ let nodes = this.$( function( ele ){ return ele.isNode(); } ); if( selector ){ return nodes.filter( selector ); } return nodes; }, edges: function( selector ){ let edges = this.$( function( ele ){ return ele.isEdge(); } ); if( selector ){ return edges.filter( selector ); } return edges; }, // search the graph like jQuery $: function( selector ){ let eles = this._private.elements; if( selector ){ return eles.filter( selector ); } else { return eles.spawnSelf(); } }, mutableElements: function(){ return this._private.elements; } }); // aliases corefn.elements = corefn.filter = corefn.$; export default corefn; ================================================ FILE: src/core/style.mjs ================================================ import * as is from '../is.mjs'; import Style from '../style/index.mjs'; let corefn = ({ style: function( newStyle ){ if( newStyle ){ let s = this.setStyle( newStyle ); s.update(); } return this._private.style; }, setStyle: function( style ){ let _p = this._private; if( is.stylesheet( style ) ){ _p.style = style.generateStyle( this ); } else if( is.array( style ) ){ _p.style = Style.fromJson( this, style ); } else if( is.string( style ) ){ _p.style = Style.fromString( this, style ); } else { _p.style = Style( this ); } return _p.style; }, // e.g. cy.data() changed => recalc ele mappers updateStyle: function(){ this.mutableElements().updateStyle(); // just send to all eles } }); export default corefn; ================================================ FILE: src/core/viewport.mjs ================================================ import * as is from '../is.mjs'; import * as math from '../math.mjs'; let defaultSelectionType = 'single'; let corefn = ({ autolock: function( bool ){ if( bool !== undefined ){ this._private.autolock = bool ? true : false; } else { return this._private.autolock; } return this; // chaining }, autoungrabify: function( bool ){ if( bool !== undefined ){ this._private.autoungrabify = bool ? true : false; } else { return this._private.autoungrabify; } return this; // chaining }, autounselectify: function( bool ){ if( bool !== undefined ){ this._private.autounselectify = bool ? true : false; } else { return this._private.autounselectify; } return this; // chaining }, selectionType: function( selType ){ let _p = this._private; if( _p.selectionType == null ){ _p.selectionType = defaultSelectionType; } if( selType !== undefined ){ if( selType === 'additive' || selType === 'single' ){ _p.selectionType = selType; } } else { return _p.selectionType; } return this; }, panningEnabled: function( bool ){ if( bool !== undefined ){ this._private.panningEnabled = bool ? true : false; } else { return this._private.panningEnabled; } return this; // chaining }, userPanningEnabled: function( bool ){ if( bool !== undefined ){ this._private.userPanningEnabled = bool ? true : false; } else { return this._private.userPanningEnabled; } return this; // chaining }, zoomingEnabled: function( bool ){ if( bool !== undefined ){ this._private.zoomingEnabled = bool ? true : false; } else { return this._private.zoomingEnabled; } return this; // chaining }, userZoomingEnabled: function( bool ){ if( bool !== undefined ){ this._private.userZoomingEnabled = bool ? true : false; } else { return this._private.userZoomingEnabled; } return this; // chaining }, boxSelectionEnabled: function( bool ){ if( bool !== undefined ){ this._private.boxSelectionEnabled = bool ? true : false; } else { return this._private.boxSelectionEnabled; } return this; // chaining }, pan: function(){ let args = arguments; let pan = this._private.pan; let dim, val, dims, x, y; switch( args.length ){ case 0: // .pan() return pan; case 1: if( is.string( args[0] ) ){ // .pan('x') dim = args[0]; return pan[ dim ]; } else if( is.plainObject( args[0] ) ){ // .pan({ x: 0, y: 100 }) if( !this._private.panningEnabled ){ return this; } dims = args[0]; x = dims.x; y = dims.y; if( is.number( x ) ){ pan.x = x; } if( is.number( y ) ){ pan.y = y; } this.emit( 'pan viewport' ); } break; case 2: // .pan('x', 100) if( !this._private.panningEnabled ){ return this; } dim = args[0]; val = args[1]; if( (dim === 'x' || dim === 'y') && is.number( val ) ){ pan[ dim ] = val; } this.emit( 'pan viewport' ); break; default: break; // invalid } this.notify('viewport'); return this; // chaining }, panBy: function( arg0, arg1 ){ let args = arguments; let pan = this._private.pan; let dim, val, dims, x, y; if( !this._private.panningEnabled ){ return this; } switch( args.length ){ case 1: if( is.plainObject( arg0 ) ){ // .panBy({ x: 0, y: 100 }) dims = args[0]; x = dims.x; y = dims.y; if( is.number( x ) ){ pan.x += x; } if( is.number( y ) ){ pan.y += y; } this.emit( 'pan viewport' ); } break; case 2: // .panBy('x', 100) dim = arg0; val = arg1; if( (dim === 'x' || dim === 'y') && is.number( val ) ){ pan[ dim ] += val; } this.emit( 'pan viewport' ); break; default: break; // invalid } this.notify('viewport'); return this; // chaining }, gc: function() { this.notify('gc'); }, fit: function( elements, padding ){ let viewportState = this.getFitViewport( elements, padding ); if( viewportState ){ let _p = this._private; _p.zoom = viewportState.zoom; _p.pan = viewportState.pan; this.emit( 'pan zoom viewport' ); this.notify('viewport'); } return this; // chaining }, getFitViewport: function( elements, padding ){ if( is.number( elements ) && padding === undefined ){ // elements is optional padding = elements; elements = undefined; } if( !this._private.panningEnabled || !this._private.zoomingEnabled ){ return; } let bb; if( is.string( elements ) ){ let sel = elements; elements = this.$( sel ); } else if( is.boundingBox( elements ) ){ // assume bb let bbe = elements; bb = { x1: bbe.x1, y1: bbe.y1, x2: bbe.x2, y2: bbe.y2 }; bb.w = bb.x2 - bb.x1; bb.h = bb.y2 - bb.y1; } else if( !is.elementOrCollection( elements ) ){ elements = this.mutableElements(); } if( is.elementOrCollection( elements ) && elements.empty() ){ return; } // can't fit to nothing bb = bb || elements.boundingBox(); let w = this.width(); let h = this.height(); let zoom; padding = is.number( padding ) ? padding : 0; if( !isNaN( w ) && !isNaN( h ) && w > 0 && h > 0 && !isNaN( bb.w ) && !isNaN( bb.h ) && bb.w > 0 && bb.h > 0 ){ zoom = Math.min( (w - 2 * padding) / bb.w, (h - 2 * padding) / bb.h ); // crop zoom zoom = zoom > this._private.maxZoom ? this._private.maxZoom : zoom; zoom = zoom < this._private.minZoom ? this._private.minZoom : zoom; let pan = { // now pan to middle x: (w - zoom * ( bb.x1 + bb.x2 )) / 2, y: (h - zoom * ( bb.y1 + bb.y2 )) / 2 }; return { zoom: zoom, pan: pan }; } return; }, zoomRange: function( min, max ){ let _p = this._private; if( max == null ){ let opts = min; min = opts.min; max = opts.max; } if( is.number( min ) && is.number( max ) && min <= max ){ _p.minZoom = min; _p.maxZoom = max; } else if( is.number( min ) && max === undefined && min <= _p.maxZoom ){ _p.minZoom = min; } else if( is.number( max ) && min === undefined && max >= _p.minZoom ){ _p.maxZoom = max; } return this; }, minZoom: function( zoom ){ if( zoom === undefined ){ return this._private.minZoom; } else { return this.zoomRange({ min: zoom }); } }, maxZoom: function( zoom ){ if( zoom === undefined ){ return this._private.maxZoom; } else { return this.zoomRange({ max: zoom }); } }, getZoomedViewport: function( params ){ let _p = this._private; let currentPan = _p.pan; let currentZoom = _p.zoom; let pos; // in rendered px let zoom; let bail = false; if( !_p.zoomingEnabled ){ // zooming disabled bail = true; } if( is.number( params ) ){ // then set the zoom zoom = params; } else if( is.plainObject( params ) ){ // then zoom about a point zoom = params.level; if( params.position != null ){ pos = math.modelToRenderedPosition( params.position, currentZoom, currentPan ); } else if( params.renderedPosition != null ){ pos = params.renderedPosition; } if( pos != null && !_p.panningEnabled ){ // panning disabled bail = true; } } // crop zoom zoom = zoom > _p.maxZoom ? _p.maxZoom : zoom; zoom = zoom < _p.minZoom ? _p.minZoom : zoom; // can't zoom with invalid params if( bail || !is.number( zoom ) || zoom === currentZoom || ( pos != null && (!is.number( pos.x ) || !is.number( pos.y )) ) ){ return null; } if( pos != null ){ // set zoom about position let pan1 = currentPan; let zoom1 = currentZoom; let zoom2 = zoom; let pan2 = { x: -zoom2 / zoom1 * (pos.x - pan1.x) + pos.x, y: -zoom2 / zoom1 * (pos.y - pan1.y) + pos.y }; return { zoomed: true, panned: true, zoom: zoom2, pan: pan2 }; } else { // just set the zoom return { zoomed: true, panned: false, zoom: zoom, pan: currentPan }; } }, zoom: function( params ){ if( params === undefined ){ // get return this._private.zoom; } else { // set let vp = this.getZoomedViewport( params ); let _p = this._private; if( vp == null || !vp.zoomed ){ return this; } _p.zoom = vp.zoom; if( vp.panned ){ _p.pan.x = vp.pan.x; _p.pan.y = vp.pan.y; } this.emit( 'zoom' + ( vp.panned ? ' pan' : '' ) + ' viewport' ); this.notify('viewport'); return this; // chaining } }, viewport: function( opts ){ let _p = this._private; let zoomDefd = true; let panDefd = true; let events = []; // to trigger let zoomFailed = false; let panFailed = false; if( !opts ){ return this; } if( !is.number( opts.zoom ) ){ zoomDefd = false; } if( !is.plainObject( opts.pan ) ){ panDefd = false; } if( !zoomDefd && !panDefd ){ return this; } if( zoomDefd ){ let z = opts.zoom; if( z < _p.minZoom || z > _p.maxZoom || !_p.zoomingEnabled ){ zoomFailed = true; } else { _p.zoom = z; events.push( 'zoom' ); } } if( panDefd && (!zoomFailed || !opts.cancelOnFailedZoom) && _p.panningEnabled ){ let p = opts.pan; if( is.number( p.x ) ){ _p.pan.x = p.x; panFailed = false; } if( is.number( p.y ) ){ _p.pan.y = p.y; panFailed = false; } if( !panFailed ){ events.push( 'pan' ); } } if( events.length > 0 ){ events.push( 'viewport' ); this.emit( events.join( ' ' ) ); this.notify('viewport'); } return this; // chaining }, center: function( elements ){ let pan = this.getCenterPan( elements ); if( pan ){ this._private.pan = pan; this.emit( 'pan viewport' ); this.notify('viewport'); } return this; // chaining }, getCenterPan: function( elements, zoom ){ if( !this._private.panningEnabled ){ return; } if( is.string( elements ) ){ let selector = elements; elements = this.mutableElements().filter( selector ); } else if( !is.elementOrCollection( elements ) ){ elements = this.mutableElements(); } if( elements.length === 0 ){ return; } // can't centre pan to nothing let bb = elements.boundingBox(); let w = this.width(); let h = this.height(); zoom = zoom === undefined ? this._private.zoom : zoom; let pan = { // middle x: (w - zoom * ( bb.x1 + bb.x2 )) / 2, y: (h - zoom * ( bb.y1 + bb.y2 )) / 2 }; return pan; }, reset: function(){ if( !this._private.panningEnabled || !this._private.zoomingEnabled ){ return this; } this.viewport( { pan: { x: 0, y: 0 }, zoom: 1 } ); return this; // chaining }, invalidateSize: function(){ this._private.sizeCache = null; }, size: function(){ let _p = this._private; let container = _p.container; let cy = this; return ( _p.sizeCache = _p.sizeCache || ( container ? (function(){ let style = cy.window().getComputedStyle( container ); let val = function( name ){ return parseFloat( style.getPropertyValue( name ) ); }; return { width: container.clientWidth - val('padding-left') - val('padding-right'), height: container.clientHeight - val('padding-top') - val('padding-bottom') }; })() : { // fallback if no container (not 0 b/c can be used for dividing etc) width: 1, height: 1 } ) ); }, width: function(){ return this.size().width; }, height: function(){ return this.size().height; }, extent: function(){ let pan = this._private.pan; let zoom = this._private.zoom; let rb = this.renderedExtent(); let b = { x1: ( rb.x1 - pan.x ) / zoom, x2: ( rb.x2 - pan.x ) / zoom, y1: ( rb.y1 - pan.y ) / zoom, y2: ( rb.y2 - pan.y ) / zoom }; b.w = b.x2 - b.x1; b.h = b.y2 - b.y1; return b; }, renderedExtent: function(){ let width = this.width(); let height = this.height(); return { x1: 0, y1: 0, x2: width, y2: height, w: width, h: height }; }, multiClickDebounceTime: function ( int ){ if( int ) (this._private.multiClickDebounceTime = int); else return this._private.multiClickDebounceTime; return this; // chaining } }); // aliases corefn.centre = corefn.center; // backwards compatibility corefn.autolockNodes = corefn.autolock; corefn.autoungrabifyNodes = corefn.autoungrabify; export default corefn; ================================================ FILE: src/define/animation.mjs ================================================ import * as util from '../util/index.mjs'; import Animation from '../animation.mjs'; import * as math from '../math.mjs'; import * as is from '../is.mjs'; let define = { animated: function(){ return function animatedImpl(){ let self = this; let selfIsArrayLike = self.length !== undefined; let all = selfIsArrayLike ? self : [ self ]; // put in array if not array-like let cy = this._private.cy || this; if( !cy.styleEnabled() ){ return false; } let ele = all[0]; if( ele ){ return ele._private.animation.current.length > 0; } }; }, // animated clearQueue: function(){ return function clearQueueImpl(){ let self = this; let selfIsArrayLike = self.length !== undefined; let all = selfIsArrayLike ? self : [ self ]; // put in array if not array-like let cy = this._private.cy || this; if( !cy.styleEnabled() ){ return this; } for( let i = 0; i < all.length; i++ ){ let ele = all[ i ]; ele._private.animation.queue = []; } return this; }; }, // clearQueue delay: function(){ return function delayImpl( time, complete ){ let cy = this._private.cy || this; if( !cy.styleEnabled() ){ return this; } return this.animate( { delay: time, duration: time, complete: complete } ); }; }, // delay delayAnimation: function(){ return function delayAnimationImpl( time, complete ){ let cy = this._private.cy || this; if( !cy.styleEnabled() ){ return this; } return this.animation( { delay: time, duration: time, complete: complete } ); }; }, // delay animation: function(){ return function animationImpl( properties, params ){ let self = this; let selfIsArrayLike = self.length !== undefined; let all = selfIsArrayLike ? self : [ self ]; // put in array if not array-like let cy = this._private.cy || this; let isCore = !selfIsArrayLike; let isEles = !isCore; if( !cy.styleEnabled() ){ return this; } let style = cy.style(); properties = util.assign( {}, properties, params ); let propertiesEmpty = Object.keys( properties ).length === 0; if( propertiesEmpty ){ return new Animation( all[0], properties ); // nothing to animate } if( properties.duration === undefined ){ properties.duration = 400; } switch( properties.duration ){ case 'slow': properties.duration = 600; break; case 'fast': properties.duration = 200; break; } if( isEles ){ properties.style = style.getPropsList( properties.style || properties.css ); properties.css = undefined; } if( isEles && properties.renderedPosition != null ){ let rpos = properties.renderedPosition; let pan = cy.pan(); let zoom = cy.zoom(); properties.position = math.renderedToModelPosition( rpos, zoom, pan ); } // override pan w/ panBy if set if( isCore && properties.panBy != null ){ let panBy = properties.panBy; let cyPan = cy.pan(); properties.pan = { x: cyPan.x + panBy.x, y: cyPan.y + panBy.y }; } // override pan w/ center if set let center = properties.center || properties.centre; if( isCore && center != null ){ let centerPan = cy.getCenterPan( center.eles, properties.zoom ); if( centerPan != null ){ properties.pan = centerPan; } } // override pan & zoom w/ fit if set if( isCore && properties.fit != null ){ let fit = properties.fit; let fitVp = cy.getFitViewport( fit.eles || fit.boundingBox, fit.padding ); if( fitVp != null ){ properties.pan = fitVp.pan; properties.zoom = fitVp.zoom; } } // override zoom (& potentially pan) w/ zoom obj if set if( isCore && is.plainObject( properties.zoom ) ){ let vp = cy.getZoomedViewport( properties.zoom ); if( vp != null ){ if( vp.zoomed ){ properties.zoom = vp.zoom; } if( vp.panned ){ properties.pan = vp.pan; } } else { properties.zoom = null; // an inavalid zoom (e.g. no delta) gets automatically destroyed } } return new Animation( all[0], properties ); }; }, // animate animate: function(){ return function animateImpl( properties, params ){ let self = this; let selfIsArrayLike = self.length !== undefined; let all = selfIsArrayLike ? self : [ self ]; // put in array if not array-like let cy = this._private.cy || this; if( !cy.styleEnabled() ){ return this; } if( params ){ properties = util.extend( {}, properties, params ); } // manually hook and run the animation for( let i = 0; i < all.length; i++ ){ let ele = all[ i ]; let queue = ele.animated() && (properties.queue === undefined || properties.queue); let ani = ele.animation( properties, (queue ? { queue: true } : undefined) ); ani.play(); } return this; // chaining }; }, // animate stop: function(){ return function stopImpl( clearQueue, jumpToEnd ){ let self = this; let selfIsArrayLike = self.length !== undefined; let all = selfIsArrayLike ? self : [ self ]; // put in array if not array-like let cy = this._private.cy || this; if( !cy.styleEnabled() ){ return this; } for( let i = 0; i < all.length; i++ ){ let ele = all[ i ]; let _p = ele._private; let anis = _p.animation.current; for( let j = 0; j < anis.length; j++ ){ let ani = anis[ j ]; let ani_p = ani._private; if( jumpToEnd ){ // next iteration of the animation loop, the animation // will go straight to the end and be removed ani_p.duration = 0; } } // clear the queue of future animations if( clearQueue ){ _p.animation.queue = []; } if( !jumpToEnd ){ _p.animation.current = []; } } // we have to notify (the animation loop doesn't do it for us on `stop`) cy.notify('draw'); return this; }; } // stop }; // define export default define; ================================================ FILE: src/define/data.mjs ================================================ import * as util from '../util/index.mjs'; import * as is from '../is.mjs'; import get from 'lodash/get.js'; import set from 'lodash/set.js'; import toPath from 'lodash/toPath.js'; let define = { // access data field data: function( params ){ let defaults = { field: 'data', bindingEvent: 'data', allowBinding: false, allowSetting: false, allowGetting: false, settingEvent: 'data', settingTriggersEvent: false, triggerFnName: 'trigger', immutableKeys: {}, // key => true if immutable updateStyle: false, beforeGet: function( self ){}, beforeSet: function( self, obj ){}, onSet: function( self ){}, canSet: function( self ){ return true; } }; params = util.extend( {}, defaults, params ); return function dataImpl( name, value ){ let p = params; let self = this; let selfIsArrayLike = self.length !== undefined; let all = selfIsArrayLike ? self : [ self ]; // put in array if not array-like let single = selfIsArrayLike ? self[0] : self; // .data('foo', ...) if (is.string(name)) { // set or get property let isPathLike = name.indexOf('.') !== -1; // there might be a normal field with a dot let path = isPathLike && toPath(name); // .data('foo') if( p.allowGetting && value === undefined ){ // get let ret; if( single ){ p.beforeGet( single ); // check if it's path and a field with the same name doesn't exist if (path && single._private[ p.field ][ name ] === undefined) { ret = get(single._private[ p.field ], path); } else { ret = single._private[ p.field ][ name ]; } } return ret; // .data('foo', 'bar') } else if( p.allowSetting && value !== undefined ){ // set let valid = !p.immutableKeys[ name ]; if( valid ){ let change = { [name]: value }; p.beforeSet( self, change ); for( let i = 0, l = all.length; i < l; i++ ){ let ele = all[i]; if( p.canSet( ele ) ){ if (path && single._private[ p.field ][ name ] === undefined) { set(ele._private[ p.field ], path, value); } else { ele._private[ p.field ][ name ] = value; } } } // update mappers if asked if( p.updateStyle ){ self.updateStyle(); } // call onSet callback p.onSet( self ); if( p.settingTriggersEvent ){ self[ p.triggerFnName ]( p.settingEvent ); } } } // .data({ 'foo': 'bar' }) } else if( p.allowSetting && is.plainObject( name ) ){ // extend let obj = name; let k, v; let keys = Object.keys( obj ); p.beforeSet( self, obj ); for( let i = 0; i < keys.length; i++ ){ k = keys[ i ]; v = obj[ k ]; let valid = !p.immutableKeys[ k ]; if( valid ){ for( let j = 0; j < all.length; j++ ){ let ele = all[j]; if( p.canSet( ele ) ){ ele._private[ p.field ][ k ] = v; } } } } // update mappers if asked if( p.updateStyle ){ self.updateStyle(); } // call onSet callback p.onSet( self ); if( p.settingTriggersEvent ){ self[ p.triggerFnName ]( p.settingEvent ); } // .data(function(){ ... }) } else if( p.allowBinding && is.fn( name ) ){ // bind to event let fn = name; self.on( p.bindingEvent, fn ); // .data() } else if( p.allowGetting && name === undefined ){ // get whole object let ret; if( single ){ p.beforeGet( single ); ret = single._private[ p.field ]; } return ret; } return self; // maintain chainability }; // function }, // data // remove data field removeData: function( params ){ let defaults = { field: 'data', event: 'data', triggerFnName: 'trigger', triggerEvent: false, immutableKeys: {} // key => true if immutable }; params = util.extend( {}, defaults, params ); return function removeDataImpl( names ){ let p = params; let self = this; let selfIsArrayLike = self.length !== undefined; let all = selfIsArrayLike ? self : [ self ]; // put in array if not array-like // .removeData('foo bar') if( is.string( names ) ){ // then get the list of keys, and delete them let keys = names.split( /\s+/ ); let l = keys.length; for( let i = 0; i < l; i++ ){ // delete each non-empty key let key = keys[ i ]; if( is.emptyString( key ) ){ continue; } let valid = !p.immutableKeys[ key ]; // not valid if immutable if( valid ){ for( let i_a = 0, l_a = all.length; i_a < l_a; i_a++ ){ all[ i_a ]._private[ p.field ][ key ] = undefined; } } } if( p.triggerEvent ){ self[ p.triggerFnName ]( p.event ); } // .removeData() } else if( names === undefined ){ // then delete all keys for( let i_a = 0, l_a = all.length; i_a < l_a; i_a++ ){ let _privateFields = all[ i_a ]._private[ p.field ]; let keys = Object.keys( _privateFields ); for( let i = 0; i < keys.length; i++ ){ let key = keys[i]; let validKeyToDelete = !p.immutableKeys[ key ]; if( validKeyToDelete ){ _privateFields[ key ] = undefined; } } } if( p.triggerEvent ){ self[ p.triggerFnName ]( p.event ); } } return self; // maintain chaining }; // function }, // removeData }; // define export default define; ================================================ FILE: src/define/events.mjs ================================================ import Promise from '../promise.mjs'; let define = { eventAliasesOn: function( proto ){ let p = proto; p.addListener = p.listen = p.bind = p.on; p.unlisten = p.unbind = p.off = p.removeListener; p.trigger = p.emit; // this is just a wrapper alias of .on() p.pon = p.promiseOn = function( events, selector ){ let self = this; let args = Array.prototype.slice.call( arguments, 0 ); return new Promise( function( resolve, reject ){ let callback = function( e ){ self.off.apply( self, offArgs ); resolve( e ); }; let onArgs = args.concat( [ callback ] ); let offArgs = onArgs.concat( [] ); self.on.apply( self, onArgs ); } ); }; }, }; // define export default define; ================================================ FILE: src/define/index.mjs ================================================ // use this module to cherry pick functions into your prototype // (useful for functions shared between the core and collections, for example) // e.g. // let foo = define.foo({ /* params... */ }) import * as util from '../util/index.mjs'; import animation from './animation.mjs'; import data from './data.mjs'; import events from './events.mjs'; let define = {}; [ animation, data, events ].forEach(function( m ){ util.assign( define, m ); }); export default define; ================================================ FILE: src/emitter.mjs ================================================ import * as util from './util/index.mjs'; import * as is from './is.mjs'; import Event from './event.mjs'; const eventRegex = /^([^.]+)(\.(?:[^.]+))?$/; // regex for matching event strings (e.g. "click.namespace") const universalNamespace = '.*'; // matches as if no namespace specified and prevents users from unbinding accidentally const defaults = { qualifierCompare: function( q1, q2 ){ return q1 === q2; }, eventMatches: function( /*context, listener, eventObj*/ ){ return true; }, addEventFields: function( /*context, evt*/ ){ }, callbackContext: function( context/*, listener, eventObj*/ ){ return context; }, beforeEmit: function(/* context, listener, eventObj */){ }, afterEmit: function(/* context, listener, eventObj */){ }, bubble: function( /*context*/ ){ return false; }, parent: function( /*context*/ ){ return null; }, context: null }; let defaultsKeys = Object.keys( defaults ); let emptyOpts = {}; function Emitter( opts = emptyOpts, context ){ // micro-optimisation vs Object.assign() -- reduces Element instantiation time for( let i = 0; i < defaultsKeys.length; i++ ){ let key = defaultsKeys[i]; this[key] = opts[key] || defaults[key]; } this.context = context || this.context; this.listeners = []; this.emitting = 0; } let p = Emitter.prototype; let forEachEvent = function( self, handler, events, qualifier, callback, conf, confOverrides ){ if( is.fn( qualifier ) ){ callback = qualifier; qualifier = null; } if( confOverrides ){ if( conf == null ){ conf = confOverrides; } else { conf = util.assign( {}, conf, confOverrides ); } } let eventList = is.array(events) ? events : events.split(/\s+/); for( let i = 0; i < eventList.length; i++ ){ let evt = eventList[i]; if( is.emptyString( evt ) ){ continue; } let match = evt.match( eventRegex ); // type[.namespace] if( match ){ let type = match[1]; let namespace = match[2] ? match[2] : null; let ret = handler( self, evt, type, namespace, qualifier, callback, conf ); if( ret === false ){ break; } // allow exiting early } } }; let makeEventObj = function( self, obj ){ self.addEventFields( self.context, obj ); return new Event( obj.type, obj ); }; let forEachEventObj = function( self, handler, events ){ if( is.event( events ) ){ handler( self, events ); return; } else if( is.plainObject( events ) ){ handler( self, makeEventObj( self, events ) ); return; } let eventList = is.array(events) ? events : events.split(/\s+/); for( let i = 0; i < eventList.length; i++ ){ let evt = eventList[i]; if( is.emptyString( evt ) ){ continue; } let match = evt.match( eventRegex ); // type[.namespace] if( match ){ let type = match[1]; let namespace = match[2] ? match[2] : null; let eventObj = makeEventObj( self, { type: type, namespace: namespace, target: self.context } ); handler( self, eventObj ); } } }; p.on = p.addListener = function( events, qualifier, callback, conf, confOverrides ){ forEachEvent( this, function( self, event, type, namespace, qualifier, callback, conf ){ if( is.fn( callback ) ){ self.listeners.push( { event: event, // full event string callback: callback, // callback to run type: type, // the event type (e.g. 'click') namespace: namespace, // the event namespace (e.g. ".foo") qualifier: qualifier, // a restriction on whether to match this emitter conf: conf // additional configuration } ); } }, events, qualifier, callback, conf, confOverrides ); return this; }; p.one = function( events, qualifier, callback, conf ){ return this.on( events, qualifier, callback, conf, { one: true } ); }; p.removeListener = p.off = function( events, qualifier, callback, conf ){ if( this.emitting !== 0 ){ this.listeners = util.copyArray( this.listeners ); } let listeners = this.listeners; for( let i = listeners.length - 1; i >= 0; i-- ){ let listener = listeners[i]; forEachEvent( this, function( self, event, type, namespace, qualifier, callback/*, conf*/ ){ if( ( listener.type === type || events === '*' ) && ( (!namespace && listener.namespace !== '.*') || listener.namespace === namespace ) && ( !qualifier || self.qualifierCompare( listener.qualifier, qualifier ) ) && ( !callback || listener.callback === callback ) ){ listeners.splice( i, 1 ); return false; } }, events, qualifier, callback, conf ); } return this; }; p.removeAllListeners = function(){ return this.removeListener('*'); }; p.emit = p.trigger = function( events, extraParams, manualCallback ){ let listeners = this.listeners; let numListenersBeforeEmit = listeners.length; this.emitting++; if( !is.array( extraParams ) ){ extraParams = [ extraParams ]; } forEachEventObj( this, function( self, eventObj ){ if( manualCallback != null ){ listeners = [{ event: eventObj.event, type: eventObj.type, namespace: eventObj.namespace, callback: manualCallback }]; numListenersBeforeEmit = listeners.length; } for( let i = 0; i < numListenersBeforeEmit; i++ ){ let listener = listeners[i]; if( ( listener.type === eventObj.type ) && ( !listener.namespace || listener.namespace === eventObj.namespace || listener.namespace === universalNamespace ) && ( self.eventMatches( self.context, listener, eventObj ) ) ){ let args = [ eventObj ]; if( extraParams != null ){ util.push( args, extraParams ); } self.beforeEmit( self.context, listener, eventObj ); if( listener.conf && listener.conf.one ){ self.listeners = self.listeners.filter( l => l !== listener ); } let context = self.callbackContext( self.context, listener, eventObj ); let ret = listener.callback.apply( context, args ); self.afterEmit( self.context, listener, eventObj ); if( ret === false ){ eventObj.stopPropagation(); eventObj.preventDefault(); } } // if listener matches } // for listener if( self.bubble( self.context ) && !eventObj.isPropagationStopped() ){ self.parent( self.context ).emit( eventObj, extraParams ); } }, events ); this.emitting--; return this; }; export default Emitter; ================================================ FILE: src/event.mjs ================================================ /*! Event object based on jQuery events, MIT license https://jquery.org/license/ https://tldrlegal.com/license/mit-license https://github.com/jquery/jquery/blob/master/src/event.js */ let Event = function( src, props ){ this.recycle( src, props ); }; function returnFalse(){ return false; } function returnTrue(){ return true; } // http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html Event.prototype = { instanceString: function(){ return 'event'; }, recycle: function( src, props ){ this.isImmediatePropagationStopped = this.isPropagationStopped = this.isDefaultPrevented = returnFalse; if( src != null && src.preventDefault ){ // Browser Event object this.type = src.type; // Events bubbling up the document may have been marked as prevented // by a handler lower down the tree; reflect the correct value. this.isDefaultPrevented = ( src.defaultPrevented ) ? returnTrue : returnFalse; } else if( src != null && src.type ){ // Plain object containing all event details props = src; } else { // Event string this.type = src; } // Put explicitly provided properties onto the event object if( props != null ){ // more efficient to manually copy fields we use this.originalEvent = props.originalEvent; this.type = props.type != null ? props.type : this.type; this.cy = props.cy; this.target = props.target; this.position = props.position; this.renderedPosition = props.renderedPosition; this.namespace = props.namespace; this.layout = props.layout; } if( this.cy != null && this.position != null && this.renderedPosition == null ){ // create a rendered position based on the passed position let pos = this.position; let zoom = this.cy.zoom(); let pan = this.cy.pan(); this.renderedPosition = { x: pos.x * zoom + pan.x, y: pos.y * zoom + pan.y }; } // Create a timestamp if incoming event doesn't have one this.timeStamp = src && src.timeStamp || Date.now(); }, preventDefault: function(){ this.isDefaultPrevented = returnTrue; let e = this.originalEvent; if( !e ){ return; } // if preventDefault exists run it on the original event if( e.preventDefault ){ e.preventDefault(); } }, stopPropagation: function(){ this.isPropagationStopped = returnTrue; let e = this.originalEvent; if( !e ){ return; } // if stopPropagation exists run it on the original event if( e.stopPropagation ){ e.stopPropagation(); } }, stopImmediatePropagation: function(){ this.isImmediatePropagationStopped = returnTrue; this.stopPropagation(); }, isDefaultPrevented: returnFalse, isPropagationStopped: returnFalse, isImmediatePropagationStopped: returnFalse }; export default Event; ================================================ FILE: src/extension.mjs ================================================ import * as util from'./util/index.mjs'; import define from './define/index.mjs'; import Collection from './collection/index.mjs'; import Core from './core/index.mjs'; import incExts from './extensions/index.mjs'; import * as is from './is.mjs'; import Emitter from './emitter.mjs'; // registered extensions to cytoscape, indexed by name let extensions = {}; // registered modules for extensions, indexed by name let modules = {}; function setExtension( type, name, registrant ){ let ext = registrant; let overrideErr = function( field ){ util.warn( 'Can not register `' + name + '` for `' + type + '` since `' + field + '` already exists in the prototype and can not be overridden' ); }; if( type === 'core' ){ if( Core.prototype[ name ] ){ return overrideErr( name ); } else { Core.prototype[ name ] = registrant; } } else if( type === 'collection' ){ if( Collection.prototype[ name ] ){ return overrideErr( name ); } else { Collection.prototype[ name ] = registrant; } } else if( type === 'layout' ){ // fill in missing layout functions in the prototype let Layout = function( options ){ this.options = options; registrant.call( this, options ); // make sure layout has _private for use w/ std apis like .on() if( !is.plainObject( this._private ) ){ this._private = {}; } this._private.cy = options.cy; this._private.listeners = []; this.createEmitter(); }; let layoutProto = Layout.prototype = Object.create( registrant.prototype ); let optLayoutFns = []; for( let i = 0; i < optLayoutFns.length; i++ ){ let fnName = optLayoutFns[ i ]; layoutProto[ fnName ] = layoutProto[ fnName ] || function(){ return this; }; } // either .start() or .run() is defined, so autogen the other if( layoutProto.start && !layoutProto.run ){ layoutProto.run = function(){ this.start(); return this; }; } else if( !layoutProto.start && layoutProto.run ){ layoutProto.start = function(){ this.run(); return this; }; } let regStop = registrant.prototype.stop; layoutProto.stop = function(){ let opts = this.options; if( opts && opts.animate ){ let anis = this.animations; if( anis ){ for( let i = 0; i < anis.length; i++ ){ anis[ i ].stop(); } } } if( regStop ){ regStop.call( this ); } else { this.emit( 'layoutstop' ); } return this; }; if( !layoutProto.destroy ){ layoutProto.destroy = function(){ return this; }; } layoutProto.cy = function(){ return this._private.cy; }; let getCy = layout => layout._private.cy; let emitterOpts = { addEventFields: function( layout, evt ){ evt.layout = layout; evt.cy = getCy(layout); evt.target = layout; }, bubble: function(){ return true; }, parent: function( layout ){ return getCy(layout); } }; util.assign( layoutProto, { createEmitter: function(){ this._private.emitter = new Emitter( emitterOpts, this ); return this; }, emitter: function(){ return this._private.emitter; }, on: function( evt, cb ){ this.emitter().on( evt, cb ); return this; }, one: function( evt, cb ){ this.emitter().one( evt, cb ); return this; }, once: function( evt, cb ){ this.emitter().one( evt, cb ); return this; }, removeListener: function( evt, cb ){ this.emitter().removeListener( evt, cb ); return this; }, removeAllListeners: function(){ this.emitter().removeAllListeners(); return this; }, emit: function( evt, params ){ this.emitter().emit( evt, params ); return this; } } ); define.eventAliasesOn( layoutProto ); ext = Layout; // replace with our wrapped layout } else if( type === 'renderer' && name !== 'null' && name !== 'base' ){ // user registered renderers inherit from base let BaseRenderer = getExtension( 'renderer', 'base' ); let bProto = BaseRenderer.prototype; let RegistrantRenderer = registrant; let rProto = registrant.prototype; let Renderer = function(){ BaseRenderer.apply( this, arguments ); RegistrantRenderer.apply( this, arguments ); }; let proto = Renderer.prototype; for( let pName in bProto ){ let pVal = bProto[ pName ]; let existsInR = rProto[ pName ] != null; if( existsInR ){ return overrideErr( pName ); } proto[ pName ] = pVal; // take impl from base } for( let pName in rProto ){ proto[ pName ] = rProto[ pName ]; // take impl from registrant } bProto.clientFunctions.forEach( function( name ){ proto[ name ] = proto[ name ] || function(){ util.error( 'Renderer does not implement `renderer.' + name + '()` on its prototype' ); }; } ); ext = Renderer; } else if (type === '__proto__' || type === 'constructor' || type === 'prototype'){ // to avoid potential prototype pollution return util.error( type + ' is an illegal type to be registered, possibly lead to prototype pollutions' ); } return util.setMap( { map: extensions, keys: [ type, name ], value: ext } ); } function getExtension( type, name ){ return util.getMap( { map: extensions, keys: [ type, name ] } ); } function setModule( type, name, moduleType, moduleName, registrant ){ return util.setMap( { map: modules, keys: [ type, name, moduleType, moduleName ], value: registrant } ); } function getModule( type, name, moduleType, moduleName ){ return util.getMap( { map: modules, keys: [ type, name, moduleType, moduleName ] } ); } let extension = function(){ // e.g. extension('renderer', 'svg') if( arguments.length === 2 ){ return getExtension.apply( null, arguments ); } // e.g. extension('renderer', 'svg', { ... }) else if( arguments.length === 3 ){ return setExtension.apply( null, arguments ); } // e.g. extension('renderer', 'svg', 'nodeShape', 'ellipse') else if( arguments.length === 4 ){ return getModule.apply( null, arguments ); } // e.g. extension('renderer', 'svg', 'nodeShape', 'ellipse', { ... }) else if( arguments.length === 5 ){ return setModule.apply( null, arguments ); } else { util.error( 'Invalid extension access syntax' ); } }; // allows a core instance to access extensions internally Core.prototype.extension = extension; // included extensions incExts.forEach( function( group ){ group.extensions.forEach( function( ext ){ setExtension( group.type, ext.name, ext.impl ); } ); } ); export default extension; ================================================ FILE: src/extensions/index.mjs ================================================ import layout from './layout/index.mjs'; import renderer from './renderer/index.mjs'; export default [ { type: 'layout', extensions: layout }, { type: 'renderer', extensions: renderer } ]; ================================================ FILE: src/extensions/layout/breadthfirst.mjs ================================================ import * as util from '../../util/index.mjs'; import * as math from '../../math.mjs'; import * as is from '../../is.mjs'; /* eslint-disable no-unused-vars */ const defaults = { fit: true, // whether to fit the viewport to the graph directed: false, // whether the tree is directed downwards (or edges can point in any direction if false) direction: 'downward', // determines the direction in which the tree structure is drawn. The possible values are 'downward', 'upward', 'rightward', or 'leftward'. padding: 30, // padding on fit circle: false, // put depths in concentric circles if true, put depths top down if false grid: false, // whether to create an even grid into which the DAG is placed (circle:false only) spacingFactor: 1.75, // positive spacing factor, larger => more space between nodes (N.B. n/a if causes overlap) boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } avoidOverlap: true, // prevents node overlap, may overflow boundingBox if not enough space nodeDimensionsIncludeLabels: false, // Excludes the label when calculating node bounding boxes for the layout algorithm roots: undefined, // the roots of the trees depthSort: undefined, // a sorting function to order nodes at equal depth. e.g. function(a, b){ return a.data('weight') - b.data('weight') } animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled, animateFilter: function ( node, i ){ return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function (node, position ){ return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; const deprecatedOptionDefaults = { maximal: false, // whether to shift nodes down their natural BFS depths in order to avoid upwards edges (DAGS only); setting acyclic to true sets maximal to true also acyclic: false, // whether the tree is acyclic and thus a node could be shifted (due to the maximal option) multiple times without causing an infinite loop; setting to true sets maximal to true also; if you are uncertain whether a tree is acyclic, set to false to avoid potential infinite loops }; /* eslint-enable */ const getInfo = ele => ele.scratch('breadthfirst'); const setInfo = (ele, obj) => ele.scratch('breadthfirst', obj); function BreadthFirstLayout( options ){ this.options = util.extend( {}, defaults, deprecatedOptionDefaults, options ); } BreadthFirstLayout.prototype.run = function(){ const options = this.options; const cy = options.cy; const eles = options.eles; const nodes = eles.nodes().filter( n => n.isChildless() ); const graph = eles; const directed = options.directed; const maximal = options.acyclic || options.maximal || options.maximalAdjustments > 0; // maximalAdjustments for compat. w/ old code; also, setting acyclic to true sets maximal to true const hasBoundingBox = !!options.boundingBox; const bb = math.makeBoundingBox( hasBoundingBox ? options.boundingBox : structuredClone(cy.extent())); let roots; if( is.elementOrCollection( options.roots ) ){ roots = options.roots; } else if( is.array( options.roots ) ){ const rootsArray = []; for( let i = 0; i < options.roots.length; i++ ){ const id = options.roots[ i ]; const ele = cy.getElementById( id ); rootsArray.push( ele ); } roots = cy.collection( rootsArray ); } else if( is.string( options.roots ) ){ roots = cy.$( options.roots ); } else { if( directed ){ roots = nodes.roots(); } else { const components = eles.components(); roots = cy.collection(); for( let i = 0; i < components.length; i++ ){ const comp = components[i]; const maxDegree = comp.maxDegree( false ); const compRoots = comp.filter( function( ele ){ return ele.degree( false ) === maxDegree; } ); roots = roots.add( compRoots ); } } } const depths = []; const foundByBfs = {}; const addToDepth = ( ele, d ) => { if( depths[d] == null ){ depths[d] = []; } const i = depths[d].length; depths[d].push( ele ); setInfo( ele, { index: i, depth: d } ); }; const changeDepth = ( ele, newDepth ) => { const { depth, index } = getInfo( ele ); depths[ depth ][ index ] = null; // add only childless nodes if (ele.isChildless()) addToDepth( ele, newDepth ); }; // find the depths of the nodes graph.bfs( { roots: roots, directed: options.directed, visit: function( node, edge, pNode, i, depth ){ const ele = node[0]; const id = ele.id(); // add only childless nodes if (ele.isChildless()) addToDepth( ele, depth ); foundByBfs[ id ] = true; } } ); // check for nodes not found by bfs const orphanNodes = []; for( let i = 0; i < nodes.length; i++ ){ const ele = nodes[ i ]; if( foundByBfs[ ele.id() ] ){ continue; } else { orphanNodes.push( ele ); } } // assign the nodes a depth and index const assignDepthsAt = function( i ){ const eles = depths[ i ]; for( let j = 0; j < eles.length; j++ ){ const ele = eles[ j ]; if( ele == null ){ eles.splice( j, 1 ); j--; continue; } setInfo(ele, { depth: i, index: j }); } }; const adjustMaximally = function( ele, shifted ){ const eInfo = getInfo( ele ); const incomers = ele.incomers().filter( el => el.isNode() && eles.has(el) ); let maxDepth = -1; const id = ele.id(); for( let k = 0; k < incomers.length; k++ ){ const incmr = incomers[k]; const iInfo = getInfo( incmr ); maxDepth = Math.max( maxDepth, iInfo.depth ); } if( eInfo.depth <= maxDepth ){ if( !options.acyclic && shifted[id] ){ return null; } const newDepth = maxDepth + 1; changeDepth( ele, newDepth ); shifted[id] = newDepth; return true; } return false; }; // for the directed case, try to make the edges all go down (i.e. depth i => depth i + 1) if( directed && maximal ){ const Q = []; const shifted = {}; const enqueue = n => Q.push(n); const dequeue = () => Q.shift(); nodes.forEach( n => Q.push(n) ); while( Q.length > 0 ){ const ele = dequeue(); const didShift = adjustMaximally( ele, shifted ); if( didShift ){ ele.outgoers().filter( el => el.isNode() && eles.has(el) ).forEach( enqueue ); } else if( didShift === null ){ util.warn('Detected double maximal shift for node `' + ele.id() + '`. Bailing maximal adjustment due to cycle. Use `options.maximal: true` only on DAGs.'); break; // exit on failure } } } // find min distance we need to leave between nodes let minDistance = 0; if( options.avoidOverlap ){ for( let i = 0; i < nodes.length; i++ ){ const n = nodes[ i ]; const nbb = n.layoutDimensions( options ); const w = nbb.w; const h = nbb.h; minDistance = Math.max( minDistance, w, h ); } } // get the weighted percent for an element based on its connectivity to other levels const cachedWeightedPercent = {}; const getWeightedPercent = function( ele ){ if( cachedWeightedPercent[ ele.id() ] ){ return cachedWeightedPercent[ ele.id() ]; } const eleDepth = getInfo( ele ).depth; const neighbors = ele.neighborhood(); let percent = 0; let samples = 0; for( let i = 0; i < neighbors.length; i++ ){ const neighbor = neighbors[ i ]; if( neighbor.isEdge() || neighbor.isParent() || !nodes.has( neighbor ) ){ continue; } const bf = getInfo( neighbor ); if (bf == null){ continue; } const index = bf.index; const depth = bf.depth; // unassigned neighbours shouldn't affect the ordering if( index == null || depth == null ){ continue; } const nDepth = depths[ depth ].length; if( depth < eleDepth ){ // only get influenced by elements above percent += index / nDepth; samples++; } } samples = Math.max( 1, samples ); percent = percent / samples; if( samples === 0 ){ // put lone nodes at the start percent = 0; } cachedWeightedPercent[ ele.id() ] = percent; return percent; }; // rearrange the indices in each depth level based on connectivity let sortFn = function( a, b ){ const apct = getWeightedPercent( a ); const bpct = getWeightedPercent( b ); const diff = apct - bpct; if( diff === 0 ){ return util.sort.ascending( a.id(), b.id() ); // make sure sort doesn't have don't-care comparisons } else { return diff; } }; if (options.depthSort !== undefined) { sortFn = options.depthSort; } let depthsLen = depths.length; // sort each level to make connected nodes closer for( let i = 0; i < depthsLen; i++ ){ depths[ i ].sort( sortFn ); assignDepthsAt( i ); } // assign orphan nodes to a new top-level depth const orphanDepth = []; for( let i = 0; i < orphanNodes.length; i++ ){ orphanDepth.push( orphanNodes[i] ); } const assignDepths = function(){ for( let i = 0; i < depthsLen; i++ ){ assignDepthsAt( i ); } }; // add a new top-level depth only when there are orphan nodes if (orphanDepth.length) { depths.unshift( orphanDepth ); depthsLen = depths.length; assignDepths(); } let biggestDepthSize = 0; for( let i = 0; i < depthsLen; i++ ){ biggestDepthSize = Math.max( depths[ i ].length, biggestDepthSize ); } const center = { x: bb.x1 + bb.w / 2, y: bb.y1 + bb.h / 2 }; // average node size const aveNodeSize = nodes.reduce((acc, node) => ((box) => ({ w: acc.w === -1 ? box.w : (acc.w + box.w) / 2, h: acc.h === -1 ? box.h : (acc.h + box.h) / 2, }))(node.boundingBox({ includeLabels: options.nodeDimensionsIncludeLabels })), { w: -1, h: -1 }); const distanceY = Math.max( // only one depth depthsLen === 1 ? 0 : // inside a bounding box, no need for top & bottom padding hasBoundingBox ? ((bb.h - options.padding * 2 - aveNodeSize.h) / (depthsLen - 1)) : (bb.h - options.padding * 2 - aveNodeSize.h) / (depthsLen + 1), minDistance ); const maxDepthSize = depths.reduce( (max, eles) => Math.max(max, eles.length), 0 ); const getPositionTopBottom = function( ele ){ const { depth, index } = getInfo( ele ); if ( options.circle ){ let radiusStepSize = Math.min( bb.w / 2 / depthsLen, bb.h / 2 / depthsLen ); radiusStepSize = Math.max( radiusStepSize, minDistance ); let radius = radiusStepSize * depth + radiusStepSize - (depthsLen > 0 && depths[0].length <= 3 ? radiusStepSize / 2 : 0); const theta = 2 * Math.PI / depths[ depth ].length * index; if( depth === 0 && depths[0].length === 1 ){ radius = 1; } return { x: center.x + radius * Math.cos( theta ), y: center.y + radius * Math.sin( theta ) }; } else { const depthSize = depths[ depth ].length; const distanceX = Math.max( // only one depth depthSize === 1 ? 0 : // inside a bounding box, no need for left & right padding hasBoundingBox ? ((bb.w - options.padding * 2 - aveNodeSize.w) / ((options.grid ? maxDepthSize : depthSize) - 1)): (bb.w - options.padding * 2 - aveNodeSize.w) / ((options.grid ? maxDepthSize : depthSize) + 1), minDistance ); const epos = { x: center.x + (index + 1 - (depthSize + 1) / 2) * distanceX, y: center.y + (depth + 1 - (depthsLen + 1) / 2) * distanceY }; return epos; } }; const rotateDegrees = { 'downward': 0, 'leftward': 90, 'upward': 180, 'rightward': -90, } if (Object.keys(rotateDegrees).indexOf(options.direction) === -1) { util.error(`Invalid direction '${options.direction}' specified for breadthfirst layout. Valid values are: ${Object.keys(rotateDegrees).join(', ')}`); } const getPosition = (ele) => util.rotatePosAndSkewByBox(getPositionTopBottom(ele), bb, rotateDegrees[options.direction]); eles.nodes().layoutPositions( this, options, getPosition); return this; // chaining }; export default BreadthFirstLayout; ================================================ FILE: src/extensions/layout/circle.mjs ================================================ import * as util from '../../util/index.mjs'; import * as math from '../../math.mjs'; import * as is from '../../is.mjs'; let defaults = { fit: true, // whether to fit the viewport to the graph padding: 30, // the padding on fit boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } avoidOverlap: true, // prevents node overlap, may overflow boundingBox and radius if not enough space nodeDimensionsIncludeLabels: false, // Excludes the label when calculating node bounding boxes for the layout algorithm spacingFactor: undefined, // Applies a multiplicative factor (>0) to expand or compress the overall area that the nodes take up radius: undefined, // the radius of the circle startAngle: 3 / 2 * Math.PI, // where nodes start in radians sweep: undefined, // how many radians should be between the first and last node (defaults to full circle) clockwise: true, // whether the layout should go clockwise (true) or counterclockwise/anticlockwise (false) sort: undefined, // a sorting function to order the nodes; e.g. function(a, b){ return a.data('weight') - b.data('weight') } animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function ( node, i ){ return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function (node, position ){ return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function CircleLayout( options ){ this.options = util.extend( {}, defaults, options ); } CircleLayout.prototype.run = function(){ let params = this.options; let options = params; let cy = params.cy; let eles = options.eles; let clockwise = options.counterclockwise !== undefined ? !options.counterclockwise : options.clockwise; let nodes = eles.nodes().not( ':parent' ); if( options.sort ){ nodes = nodes.sort( options.sort ); } let bb = math.makeBoundingBox( options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() } ); let center = { x: bb.x1 + bb.w / 2, y: bb.y1 + bb.h / 2 }; let sweep = options.sweep === undefined ? 2 * Math.PI - 2 * Math.PI / nodes.length : options.sweep; let dTheta = sweep / ( Math.max( 1, nodes.length - 1 ) ); let r; let minDistance = 0; for( let i = 0; i < nodes.length; i++ ){ let n = nodes[ i ]; let nbb = n.layoutDimensions( options ); let w = nbb.w; let h = nbb.h; minDistance = Math.max( minDistance, w, h ); } if( is.number( options.radius ) ){ r = options.radius; } else if( nodes.length <= 1 ){ r = 0; } else { r = Math.min( bb.h, bb.w ) / 2 - minDistance; } // calculate the radius if( nodes.length > 1 && options.avoidOverlap ){ // but only if more than one node (can't overlap) minDistance *= 1.75; // just to have some nice spacing let dcos = Math.cos( dTheta ) - Math.cos( 0 ); let dsin = Math.sin( dTheta ) - Math.sin( 0 ); let rMin = Math.sqrt( minDistance * minDistance / ( dcos * dcos + dsin * dsin ) ); // s.t. no nodes overlapping r = Math.max( rMin, r ); } let getPos = function( ele, i ){ let theta = options.startAngle + i * dTheta * ( clockwise ? 1 : -1 ); let rx = r * Math.cos( theta ); let ry = r * Math.sin( theta ); let pos = { x: center.x + rx, y: center.y + ry }; return pos; }; eles.nodes().layoutPositions( this, options, getPos ); return this; // chaining }; export default CircleLayout; ================================================ FILE: src/extensions/layout/concentric.mjs ================================================ import * as util from '../../util/index.mjs'; import * as math from '../../math.mjs'; let defaults = { fit: true, // whether to fit the viewport to the graph padding: 30, // the padding on fit startAngle: 3 / 2 * Math.PI, // where nodes start in radians sweep: undefined, // how many radians should be between the first and last node (defaults to full circle) clockwise: true, // whether the layout should go clockwise (true) or counterclockwise/anticlockwise (false) equidistant: false, // whether levels have an equal radial distance betwen them, may cause bounding box overflow minNodeSpacing: 10, // min spacing between outside of nodes (used for radius adjustment) boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } avoidOverlap: true, // prevents node overlap, may overflow boundingBox if not enough space nodeDimensionsIncludeLabels: false, // Excludes the label when calculating node bounding boxes for the layout algorithm height: undefined, // height of layout area (overrides container height) width: undefined, // width of layout area (overrides container width) spacingFactor: undefined, // Applies a multiplicative factor (>0) to expand or compress the overall area that the nodes take up concentric: function( node ){ // returns numeric value for each node, placing higher nodes in levels towards the centre return node.degree(); }, levelWidth: function( nodes ){ // the variation of concentric values in each level return nodes.maxDegree() / 4; }, animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function ( node, i ){ return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function (node, position ){ return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function ConcentricLayout( options ){ this.options = util.extend( {}, defaults, options ); } ConcentricLayout.prototype.run = function(){ let params = this.options; let options = params; let clockwise = options.counterclockwise !== undefined ? !options.counterclockwise : options.clockwise; let cy = params.cy; let eles = options.eles; let nodes = eles.nodes().not( ':parent' ); let bb = math.makeBoundingBox( options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() } ); let center = { x: bb.x1 + bb.w / 2, y: bb.y1 + bb.h / 2 }; let nodeValues = []; // { node, value } let maxNodeSize = 0; for( let i = 0; i < nodes.length; i++ ){ let node = nodes[ i ]; let value; // calculate the node value value = options.concentric( node ); nodeValues.push( { value: value, node: node } ); // for style mapping node._private.scratch.concentric = value; } // in case we used the `concentric` in style nodes.updateStyle(); // calculate max size now based on potentially updated mappers for( let i = 0; i < nodes.length; i++ ){ let node = nodes[ i ]; let nbb = node.layoutDimensions( options ); maxNodeSize = Math.max( maxNodeSize, nbb.w, nbb.h ); } // sort node values in descreasing order nodeValues.sort( function( a, b ){ return b.value - a.value; } ); let levelWidth = options.levelWidth( nodes ); // put the values into levels let levels = [ [] ]; let currentLevel = levels[0]; for( let i = 0; i < nodeValues.length; i++ ){ let val = nodeValues[ i ]; if( currentLevel.length > 0 ){ let diff = Math.abs( currentLevel[0].value - val.value ); if( diff >= levelWidth ){ currentLevel = []; levels.push( currentLevel ); } } currentLevel.push( val ); } // create positions from levels let minDist = maxNodeSize + options.minNodeSpacing; // min dist between nodes if( !options.avoidOverlap ){ // then strictly constrain to bb let firstLvlHasMulti = levels.length > 0 && levels[0].length > 1; let maxR = ( Math.min( bb.w, bb.h ) / 2 - minDist ); let rStep = maxR / ( levels.length + firstLvlHasMulti ? 1 : 0 ); minDist = Math.min( minDist, rStep ); } // find the metrics for each level let r = 0; for( let i = 0; i < levels.length; i++ ){ let level = levels[ i ]; let sweep = options.sweep === undefined ? 2 * Math.PI - 2 * Math.PI / level.length : options.sweep; let dTheta = level.dTheta = sweep / ( Math.max( 1, level.length - 1 ) ); // calculate the radius if( level.length > 1 && options.avoidOverlap ){ // but only if more than one node (can't overlap) let dcos = Math.cos( dTheta ) - Math.cos( 0 ); let dsin = Math.sin( dTheta ) - Math.sin( 0 ); let rMin = Math.sqrt( minDist * minDist / ( dcos * dcos + dsin * dsin ) ); // s.t. no nodes overlapping r = Math.max( rMin, r ); } level.r = r; r += minDist; } if( options.equidistant ){ let rDeltaMax = 0; let r = 0; for( let i = 0; i < levels.length; i++ ){ let level = levels[ i ]; let rDelta = level.r - r; rDeltaMax = Math.max( rDeltaMax, rDelta ); } r = 0; for( let i = 0; i < levels.length; i++ ){ let level = levels[ i ]; if( i === 0 ){ r = level.r; } level.r = r; r += rDeltaMax; } } // calculate the node positions let pos = {}; // id => position for( let i = 0; i < levels.length; i++ ){ let level = levels[ i ]; let dTheta = level.dTheta; let r = level.r; for( let j = 0; j < level.length; j++ ){ let val = level[ j ]; let theta = options.startAngle + (clockwise ? 1 : -1) * dTheta * j; let p = { x: center.x + r * Math.cos( theta ), y: center.y + r * Math.sin( theta ) }; pos[ val.node.id() ] = p; } } // position the nodes eles.nodes().layoutPositions( this, options, function( ele ){ let id = ele.id(); return pos[ id ]; } ); return this; // chaining }; export default ConcentricLayout; ================================================ FILE: src/extensions/layout/cose.mjs ================================================ /* The CoSE layout was written by Gerardo Huck. https://www.linkedin.com/in/gerardohuck/ Based on the following article: http://dl.acm.org/citation.cfm?id=1498047 Modifications tracked on Github. */ import * as util from '../../util/index.mjs'; import * as math from '../../math.mjs'; import * as is from '../../is.mjs'; var DEBUG; /** * @brief : default layout options */ var defaults = { // Called on `layoutready` ready: function(){}, // Called on `layoutstop` stop: function(){}, // Whether to animate while running the layout // true : Animate continuously as the layout is running // false : Just show the end result // 'end' : Animate with the end result, from the initial positions to the end positions animate: true, // Easing of the animation for animate:'end' animationEasing: undefined, // The duration of the animation for animate:'end' animationDuration: undefined, // A function that determines whether the node should be animated // All nodes animated by default on animate enabled // Non-animated nodes are positioned immediately when the layout starts animateFilter: function ( node, i ){ return true; }, // The layout animates only after this many milliseconds for animate:true // (prevents flashing on fast runs) animationThreshold: 250, // Number of iterations between consecutive screen positions update refresh: 20, // Whether to fit the network view after when done fit: true, // Padding on fit padding: 30, // Constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } boundingBox: undefined, // Excludes the label when calculating node bounding boxes for the layout algorithm nodeDimensionsIncludeLabels: false, // Randomize the initial positions of the nodes (true) or use existing positions (false) randomize: false, // Extra spacing between components in non-compound graphs componentSpacing: 40, // Node repulsion (non overlapping) multiplier nodeRepulsion: function( node ){ return 2048; }, // Node repulsion (overlapping) multiplier nodeOverlap: 4, // Ideal edge (non nested) length idealEdgeLength: function( edge ){ return 32; }, // Divisor to compute edge forces edgeElasticity: function( edge ){ return 32; }, // Nesting factor (multiplier) to compute ideal edge length for nested edges nestingFactor: 1.2, // Gravity force (constant) gravity: 1, // Maximum number of iterations to perform numIter: 1000, // Initial temperature (maximum node displacement) initialTemp: 1000, // Cooling factor (how the temperature is reduced between consecutive iterations coolingFactor: 0.99, // Lower temperature threshold (below this point the layout will end) minTemp: 1.0 }; /** * @brief : constructor * @arg options : object containing layout options */ function CoseLayout( options ){ this.options = util.extend( {}, defaults, options ); this.options.layout = this; // Exclude any edge that has a source or target node that is not in the set of passed-in nodes const nodes = this.options.eles.nodes(); const edges = this.options.eles.edges(); const notEdges = edges.filter((e) => { const sourceId = e.source().data('id'); const targetId = e.target().data('id'); const hasSource = nodes.some((n) => n.data('id') === sourceId); const hasTarget = nodes.some((n) => n.data('id') === targetId); return !hasSource || !hasTarget; }); this.options.eles = this.options.eles.not(notEdges); } /** * @brief : runs the layout */ CoseLayout.prototype.run = function(){ var options = this.options; var cy = options.cy; var layout = this; layout.stopped = false; if( options.animate === true || options.animate === false ){ layout.emit( { type: 'layoutstart', layout: layout } ); } // Set DEBUG - Global variable if( true === options.debug ){ DEBUG = true; } else { DEBUG = false; } // Initialize layout info var layoutInfo = createLayoutInfo( cy, layout, options ); // Show LayoutInfo contents if debugging if( DEBUG ){ printLayoutInfo( layoutInfo ); } // If required, randomize node positions if (options.randomize) { randomizePositions( layoutInfo, cy ); } var startTime = util.performanceNow(); var refresh = function(){ refreshPositions( layoutInfo, cy, options ); // Fit the graph if necessary if( true === options.fit ){ cy.fit( options.padding ); } }; var mainLoop = function( i ){ if( layout.stopped || i >= options.numIter ){ // logDebug("Layout manually stopped. Stopping computation in step " + i); return false; } // Do one step in the phisical simulation step( layoutInfo, options, i ); // Update temperature layoutInfo.temperature = layoutInfo.temperature * options.coolingFactor; // logDebug("New temperature: " + layoutInfo.temperature); if( layoutInfo.temperature < options.minTemp ){ // logDebug("Temperature drop below minimum threshold. Stopping computation in step " + i); return false; } return true; }; var done = function(){ if( options.animate === true || options.animate === false ){ refresh(); // Layout has finished layout.one('layoutstop', options.stop); layout.emit({ type: 'layoutstop', layout: layout }); } else { var nodes = options.eles.nodes(); var getScaledPos = getScaleInBoundsFn(layoutInfo, options, nodes); nodes.layoutPositions(layout, options, getScaledPos); } }; var i = 0; var loopRet = true; if( options.animate === true ){ var frame = function(){ var f = 0; while( loopRet && f < options.refresh ){ loopRet = mainLoop(i); i++; f++; } if( !loopRet ){ // it's done separateComponents( layoutInfo, options ); done(); } else { var now = util.performanceNow(); if( now - startTime >= options.animationThreshold ){ refresh(); } util.requestAnimationFrame(frame); } }; frame(); } else { while( loopRet ){ loopRet = mainLoop(i); i++; } separateComponents( layoutInfo, options ); done(); } return this; // chaining }; /** * @brief : called on continuous layouts to stop them before they finish */ CoseLayout.prototype.stop = function(){ this.stopped = true; if( this.thread ){ this.thread.stop(); } this.emit( 'layoutstop' ); return this; // chaining }; CoseLayout.prototype.destroy = function(){ if( this.thread ){ this.thread.stop(); } return this; // chaining }; /** * @brief : Creates an object which is contains all the data * used in the layout process * @arg cy : cytoscape.js object * @return : layoutInfo object initialized */ var createLayoutInfo = function( cy, layout, options ){ // Shortcut var edges = options.eles.edges(); var nodes = options.eles.nodes(); var bb = math.makeBoundingBox( options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() } ); var layoutInfo = { isCompound: cy.hasCompoundNodes(), layoutNodes: [], idToIndex: {}, nodeSize: nodes.size(), graphSet: [], indexToGraph: [], layoutEdges: [], edgeSize: edges.size(), temperature: options.initialTemp, clientWidth: bb.w, clientHeight: bb.h, boundingBox: bb }; var components = options.eles.components(); var id2cmptId = {}; for( var i = 0; i < components.length; i++ ){ var component = components[ i ]; for( var j = 0; j < component.length; j++ ){ var node = component[ j ]; id2cmptId[ node.id() ] = i; } } // Iterate over all nodes, creating layout nodes for( var i = 0; i < layoutInfo.nodeSize; i++ ){ var n = nodes[ i ]; var nbb = n.layoutDimensions( options ); var tempNode = {}; tempNode.isLocked = n.locked(); tempNode.id = n.data( 'id' ); tempNode.parentId = n.data( 'parent' ); tempNode.cmptId = id2cmptId[ n.id() ]; tempNode.children = []; tempNode.positionX = n.position( 'x' ); tempNode.positionY = n.position( 'y' ); tempNode.offsetX = 0; tempNode.offsetY = 0; tempNode.height = nbb.w; tempNode.width = nbb.h; tempNode.maxX = tempNode.positionX + tempNode.width / 2; tempNode.minX = tempNode.positionX - tempNode.width / 2; tempNode.maxY = tempNode.positionY + tempNode.height / 2; tempNode.minY = tempNode.positionY - tempNode.height / 2; tempNode.padLeft = parseFloat( n.style( 'padding' ) ); tempNode.padRight = parseFloat( n.style( 'padding' ) ); tempNode.padTop = parseFloat( n.style( 'padding' ) ); tempNode.padBottom = parseFloat( n.style( 'padding' ) ); // forces tempNode.nodeRepulsion = is.fn( options.nodeRepulsion ) ? options.nodeRepulsion(n) : options.nodeRepulsion; // Add new node layoutInfo.layoutNodes.push( tempNode ); // Add entry to id-index map layoutInfo.idToIndex[ tempNode.id ] = i; } // Inline implementation of a queue, used for traversing the graph in BFS order var queue = []; var start = 0; // Points to the start the queue var end = -1; // Points to the end of the queue var tempGraph = []; // Second pass to add child information and // initialize queue for hierarchical traversal for( var i = 0; i < layoutInfo.nodeSize; i++ ){ var n = layoutInfo.layoutNodes[ i ]; var p_id = n.parentId; // Check if node n has a parent node if( null != p_id ){ // Add node Id to parent's list of children layoutInfo.layoutNodes[ layoutInfo.idToIndex[ p_id ] ].children.push( n.id ); } else { // If a node doesn't have a parent, then it's in the root graph queue[ ++end ] = n.id; tempGraph.push( n.id ); } } // Add root graph to graphSet layoutInfo.graphSet.push( tempGraph ); // Traverse the graph, level by level, while( start <= end ){ // Get the node to visit and remove it from queue var node_id = queue[ start++ ]; var node_ix = layoutInfo.idToIndex[ node_id ]; var node = layoutInfo.layoutNodes[ node_ix ]; var children = node.children; if( children.length > 0 ){ // Add children nodes as a new graph to graph set layoutInfo.graphSet.push( children ); // Add children to que queue to be visited for( var i = 0; i < children.length; i++ ){ queue[ ++end ] = children[ i ]; } } } // Create indexToGraph map for( var i = 0; i < layoutInfo.graphSet.length; i++ ){ var graph = layoutInfo.graphSet[ i ]; for( var j = 0; j < graph.length; j++ ){ var index = layoutInfo.idToIndex[ graph[ j ] ]; layoutInfo.indexToGraph[ index ] = i; } } // Iterate over all edges, creating Layout Edges for( var i = 0; i < layoutInfo.edgeSize; i++ ){ var e = edges[ i ]; var tempEdge = {}; tempEdge.id = e.data( 'id' ); tempEdge.sourceId = e.data( 'source' ); tempEdge.targetId = e.data( 'target' ); // Compute ideal length var idealLength = is.fn( options.idealEdgeLength ) ? options.idealEdgeLength(e) : options.idealEdgeLength; var elasticity = is.fn( options.edgeElasticity ) ? options.edgeElasticity(e) : options.edgeElasticity; // Check if it's an inter graph edge var sourceIx = layoutInfo.idToIndex[ tempEdge.sourceId ]; var targetIx = layoutInfo.idToIndex[ tempEdge.targetId ]; var sourceGraph = layoutInfo.indexToGraph[ sourceIx ]; var targetGraph = layoutInfo.indexToGraph[ targetIx ]; if( sourceGraph != targetGraph ){ // Find lowest common graph ancestor var lca = findLCA( tempEdge.sourceId, tempEdge.targetId, layoutInfo ); // Compute sum of node depths, relative to lca graph var lcaGraph = layoutInfo.graphSet[ lca ]; var depth = 0; // Source depth var tempNode = layoutInfo.layoutNodes[ sourceIx ]; while( -1 === lcaGraph.indexOf( tempNode.id ) ){ tempNode = layoutInfo.layoutNodes[ layoutInfo.idToIndex[ tempNode.parentId ] ]; depth++; } // Target depth tempNode = layoutInfo.layoutNodes[ targetIx ]; while( -1 === lcaGraph.indexOf( tempNode.id ) ){ tempNode = layoutInfo.layoutNodes[ layoutInfo.idToIndex[ tempNode.parentId ] ]; depth++; } // logDebug('LCA of nodes ' + tempEdge.sourceId + ' and ' + tempEdge.targetId + // ". Index: " + lca + " Contents: " + lcaGraph.toString() + // ". Depth: " + depth); // Update idealLength idealLength *= depth * options.nestingFactor; } tempEdge.idealLength = idealLength; tempEdge.elasticity = elasticity; layoutInfo.layoutEdges.push( tempEdge ); } // Finally, return layoutInfo object return layoutInfo; }; /** * @brief : This function finds the index of the lowest common * graph ancestor between 2 nodes in the subtree * (from the graph hierarchy induced tree) whose * root is graphIx * * @arg node1: node1's ID * @arg node2: node2's ID * @arg layoutInfo: layoutInfo object * */ var findLCA = function( node1, node2, layoutInfo ){ // Find their common ancester, starting from the root graph var res = findLCA_aux( node1, node2, 0, layoutInfo ); if( 2 > res.count ){ // If aux function couldn't find the common ancester, // then it is the root graph return 0; } else { return res.graph; } }; /** * @brief : Auxiliary function used for LCA computation * * @arg node1 : node1's ID * @arg node2 : node2's ID * @arg graphIx : subgraph index * @arg layoutInfo : layoutInfo object * * @return : object of the form {count: X, graph: Y}, where: * X is the number of ancestors (max: 2) found in * graphIx (and it's subgraphs), * Y is the graph index of the lowest graph containing * all X nodes */ var findLCA_aux = function( node1, node2, graphIx, layoutInfo ){ var graph = layoutInfo.graphSet[ graphIx ]; // If both nodes belongs to graphIx if( -1 < graph.indexOf( node1 ) && -1 < graph.indexOf( node2 ) ){ return {count: 2, graph: graphIx}; } // Make recursive calls for all subgraphs var c = 0; for( var i = 0; i < graph.length; i++ ){ var nodeId = graph[ i ]; var nodeIx = layoutInfo.idToIndex[ nodeId ]; var children = layoutInfo.layoutNodes[ nodeIx ].children; // If the node has no child, skip it if( 0 === children.length ){ continue; } var childGraphIx = layoutInfo.indexToGraph[ layoutInfo.idToIndex[ children[0] ] ]; var result = findLCA_aux( node1, node2, childGraphIx, layoutInfo ); if( 0 === result.count ){ // Neither node1 nor node2 are present in this subgraph continue; } else if( 1 === result.count ){ // One of (node1, node2) is present in this subgraph c++; if( 2 === c ){ // We've already found both nodes, no need to keep searching break; } } else { // Both nodes are present in this subgraph return result; } } return {count: c, graph: graphIx}; }; /** * @brief: printsLayoutInfo into js console * Only used for debbuging */ if( process.env.NODE_ENV !== 'production' ){ var printLayoutInfo = function( layoutInfo ){ /* eslint-disable */ if( !DEBUG ){ return; } console.debug( 'layoutNodes:' ); for( var i = 0; i < layoutInfo.nodeSize; i++ ){ var n = layoutInfo.layoutNodes[ i ]; var s = '\nindex: ' + i + '\nId: ' + n.id + '\nChildren: ' + n.children.toString() + '\nparentId: ' + n.parentId + '\npositionX: ' + n.positionX + '\npositionY: ' + n.positionY + '\nOffsetX: ' + n.offsetX + '\nOffsetY: ' + n.offsetY + '\npadLeft: ' + n.padLeft + '\npadRight: ' + n.padRight + '\npadTop: ' + n.padTop + '\npadBottom: ' + n.padBottom; console.debug( s ); } console.debug( 'idToIndex' ); for( var i in layoutInfo.idToIndex ){ console.debug( 'Id: ' + i + '\nIndex: ' + layoutInfo.idToIndex[ i ] ); } console.debug( 'Graph Set' ); var set = layoutInfo.graphSet; for( var i = 0; i < set.length; i ++ ){ console.debug( 'Set : ' + i + ': ' + set[ i ].toString() ); } var s = 'IndexToGraph'; for( var i = 0; i < layoutInfo.indexToGraph.length; i ++ ){ s += '\nIndex : ' + i + ' Graph: ' + layoutInfo.indexToGraph[ i ]; } console.debug( s ); s = 'Layout Edges'; for( var i = 0; i < layoutInfo.layoutEdges.length; i++ ){ var e = layoutInfo.layoutEdges[ i ]; s += '\nEdge Index: ' + i + ' ID: ' + e.id + ' SouceID: ' + e.sourceId + ' TargetId: ' + e.targetId + ' Ideal Length: ' + e.idealLength; } console.debug( s ); s = 'nodeSize: ' + layoutInfo.nodeSize; s += '\nedgeSize: ' + layoutInfo.edgeSize; s += '\ntemperature: ' + layoutInfo.temperature; console.debug( s ); return; /* eslint-enable */ }; } /** * @brief : Randomizes the position of all nodes */ var randomizePositions = function( layoutInfo, cy ){ var width = layoutInfo.clientWidth; var height = layoutInfo.clientHeight; for( var i = 0; i < layoutInfo.nodeSize; i++ ){ var n = layoutInfo.layoutNodes[ i ]; // No need to randomize compound nodes or locked nodes if( 0 === n.children.length && !n.isLocked ){ n.positionX = Math.random() * width; n.positionY = Math.random() * height; } } }; var getScaleInBoundsFn = function( layoutInfo, options, nodes ){ var bb = layoutInfo.boundingBox; var coseBB = { x1: Infinity, x2: -Infinity, y1: Infinity, y2: -Infinity }; if( options.boundingBox ){ nodes.forEach( function( node ){ var lnode = layoutInfo.layoutNodes[ layoutInfo.idToIndex[ node.data( 'id' ) ] ]; coseBB.x1 = Math.min( coseBB.x1, lnode.positionX ); coseBB.x2 = Math.max( coseBB.x2, lnode.positionX ); coseBB.y1 = Math.min( coseBB.y1, lnode.positionY ); coseBB.y2 = Math.max( coseBB.y2, lnode.positionY ); } ); coseBB.w = coseBB.x2 - coseBB.x1; coseBB.h = coseBB.y2 - coseBB.y1; } return function( ele, i ){ var lnode = layoutInfo.layoutNodes[ layoutInfo.idToIndex[ ele.data( 'id' ) ] ]; if( options.boundingBox ){ // then add extra bounding box constraint // Handle single node case where coseBB.w or coseBB.h is 0 var pctX = coseBB.w === 0 ? 0.5 : (lnode.positionX - coseBB.x1) / coseBB.w; var pctY = coseBB.h === 0 ? 0.5 : (lnode.positionY - coseBB.y1) / coseBB.h; return { x: bb.x1 + pctX * bb.w, y: bb.y1 + pctY * bb.h }; } else { return { x: lnode.positionX, y: lnode.positionY }; } }; }; /** * @brief : Updates the positions of nodes in the network * @arg layoutInfo : LayoutInfo object * @arg cy : Cytoscape object * @arg options : Layout options */ var refreshPositions = function( layoutInfo, cy, options ){ // var s = 'Refreshing positions'; // logDebug(s); var layout = options.layout; var nodes = options.eles.nodes(); var getScaledPos = getScaleInBoundsFn(layoutInfo, options, nodes); nodes.positions(getScaledPos); // Trigger layoutReady only on first call if( true !== layoutInfo.ready ){ // s = 'Triggering layoutready'; // logDebug(s); layoutInfo.ready = true; layout.one( 'layoutready', options.ready ); layout.emit( { type: 'layoutready', layout: this } ); } }; /** * @brief : Logs a debug message in JS console, if DEBUG is ON */ // var logDebug = function(text) { // if (DEBUG) { // console.debug(text); // } // }; /** * @brief : Performs one iteration of the physical simulation * @arg layoutInfo : LayoutInfo object already initialized * @arg cy : Cytoscape object * @arg options : Layout options */ var step = function( layoutInfo, options, step ){ // var s = "\n\n###############################"; // s += "\nSTEP: " + step; // s += "\n###############################\n"; // logDebug(s); // Calculate node repulsions calculateNodeForces( layoutInfo, options ); // Calculate edge forces calculateEdgeForces( layoutInfo, options ); // Calculate gravity forces calculateGravityForces( layoutInfo, options ); // Propagate forces from parent to child propagateForces( layoutInfo, options ); // Update positions based on calculated forces updatePositions( layoutInfo, options ); }; /** * @brief : Computes the node repulsion forces */ var calculateNodeForces = function( layoutInfo, options ){ // Go through each of the graphs in graphSet // Nodes only repel each other if they belong to the same graph // var s = 'calculateNodeForces'; // logDebug(s); for( var i = 0; i < layoutInfo.graphSet.length; i ++ ){ var graph = layoutInfo.graphSet[ i ]; var numNodes = graph.length; // s = "Set: " + graph.toString(); // logDebug(s); // Now get all the pairs of nodes // Only get each pair once, (A, B) = (B, A) for( var j = 0; j < numNodes; j++ ){ var node1 = layoutInfo.layoutNodes[ layoutInfo.idToIndex[ graph[ j ] ] ]; for( var k = j + 1; k < numNodes; k++ ){ var node2 = layoutInfo.layoutNodes[ layoutInfo.idToIndex[ graph[ k ] ] ]; nodeRepulsion( node1, node2, layoutInfo, options ); } } } }; var randomDistance = function( max ){ return -max + 2 * max * Math.random(); }; /** * @brief : Compute the node repulsion forces between a pair of nodes */ var nodeRepulsion = function( node1, node2, layoutInfo, options ){ // var s = "Node repulsion. Node1: " + node1.id + " Node2: " + node2.id; var cmptId1 = node1.cmptId; var cmptId2 = node2.cmptId; if( cmptId1 !== cmptId2 && !layoutInfo.isCompound ){ return; } // Get direction of line connecting both node centers var directionX = node2.positionX - node1.positionX; var directionY = node2.positionY - node1.positionY; var maxRandDist = 1; // s += "\ndirectionX: " + directionX + ", directionY: " + directionY; // If both centers are the same, apply a random force if( 0 === directionX && 0 === directionY ){ directionX = randomDistance( maxRandDist ); directionY = randomDistance( maxRandDist ); } var overlap = nodesOverlap( node1, node2, directionX, directionY ); if( overlap > 0 ){ // s += "\nNodes DO overlap."; // s += "\nOverlap: " + overlap; // If nodes overlap, repulsion force is proportional // to the overlap var force = options.nodeOverlap * overlap; // Compute the module and components of the force vector var distance = Math.sqrt( directionX * directionX + directionY * directionY ); // s += "\nDistance: " + distance; var forceX = force * directionX / distance; var forceY = force * directionY / distance; } else { // s += "\nNodes do NOT overlap."; // If there's no overlap, force is inversely proportional // to squared distance // Get clipping points for both nodes var point1 = findClippingPoint( node1, directionX, directionY ); var point2 = findClippingPoint( node2, -1 * directionX, -1 * directionY ); // Use clipping points to compute distance var distanceX = point2.x - point1.x; var distanceY = point2.y - point1.y; var distanceSqr = distanceX * distanceX + distanceY * distanceY; var distance = Math.sqrt( distanceSqr ); // s += "\nDistance: " + distance; // Compute the module and components of the force vector var force = ( node1.nodeRepulsion + node2.nodeRepulsion ) / distanceSqr; var forceX = force * distanceX / distance; var forceY = force * distanceY / distance; } // Apply force if( !node1.isLocked ){ node1.offsetX -= forceX; node1.offsetY -= forceY; } if( !node2.isLocked ){ node2.offsetX += forceX; node2.offsetY += forceY; } // s += "\nForceX: " + forceX + " ForceY: " + forceY; // logDebug(s); return; }; /** * @brief : Determines whether two nodes overlap or not * @return : Amount of overlapping (0 => no overlap) */ var nodesOverlap = function( node1, node2, dX, dY ){ if( dX > 0 ){ var overlapX = node1.maxX - node2.minX; } else { var overlapX = node2.maxX - node1.minX; } if( dY > 0 ){ var overlapY = node1.maxY - node2.minY; } else { var overlapY = node2.maxY - node1.minY; } if( overlapX >= 0 && overlapY >= 0 ){ return Math.sqrt( overlapX * overlapX + overlapY * overlapY ); } else { return 0; } }; /** * @brief : Finds the point in which an edge (direction dX, dY) intersects * the rectangular bounding box of it's source/target node */ var findClippingPoint = function( node, dX, dY ){ // Shorcuts var X = node.positionX; var Y = node.positionY; var H = node.height || 1; var W = node.width || 1; var dirSlope = dY / dX; var nodeSlope = H / W; // var s = 'Computing clipping point of node ' + node.id + // " . Height: " + H + ", Width: " + W + // "\nDirection " + dX + ", " + dY; // // Compute intersection var res = {}; // Case: Vertical direction (up) if( 0 === dX && 0 < dY ){ res.x = X; // s += "\nUp direction"; res.y = Y + H / 2; return res; } // Case: Vertical direction (down) if( 0 === dX && 0 > dY ){ res.x = X; res.y = Y + H / 2; // s += "\nDown direction"; return res; } // Case: Intersects the right border if( 0 < dX && -1 * nodeSlope <= dirSlope && dirSlope <= nodeSlope ){ res.x = X + W / 2; res.y = Y + (W * dY / 2 / dX); // s += "\nRightborder"; return res; } // Case: Intersects the left border if( 0 > dX && -1 * nodeSlope <= dirSlope && dirSlope <= nodeSlope ){ res.x = X - W / 2; res.y = Y - (W * dY / 2 / dX); // s += "\nLeftborder"; return res; } // Case: Intersects the top border if( 0 < dY && ( dirSlope <= -1 * nodeSlope || dirSlope >= nodeSlope ) ){ res.x = X + (H * dX / 2 / dY); res.y = Y + H / 2; // s += "\nTop border"; return res; } // Case: Intersects the bottom border if( 0 > dY && ( dirSlope <= -1 * nodeSlope || dirSlope >= nodeSlope ) ){ res.x = X - (H * dX / 2 / dY); res.y = Y - H / 2; // s += "\nBottom border"; return res; } // s += "\nClipping point found at " + res.x + ", " + res.y; // logDebug(s); return res; }; /** * @brief : Calculates all edge forces */ var calculateEdgeForces = function( layoutInfo, options ){ // Iterate over all edges for( var i = 0; i < layoutInfo.edgeSize; i++ ){ // Get edge, source & target nodes var edge = layoutInfo.layoutEdges[ i ]; var sourceIx = layoutInfo.idToIndex[ edge.sourceId ]; var source = layoutInfo.layoutNodes[ sourceIx ]; var targetIx = layoutInfo.idToIndex[ edge.targetId ]; var target = layoutInfo.layoutNodes[ targetIx ]; // Get direction of line connecting both node centers var directionX = target.positionX - source.positionX; var directionY = target.positionY - source.positionY; // If both centers are the same, do nothing. // A random force has already been applied as node repulsion if( 0 === directionX && 0 === directionY ){ continue; } // Get clipping points for both nodes var point1 = findClippingPoint( source, directionX, directionY ); var point2 = findClippingPoint( target, -1 * directionX, -1 * directionY ); var lx = point2.x - point1.x; var ly = point2.y - point1.y; var l = Math.sqrt( lx * lx + ly * ly ); var force = Math.pow( edge.idealLength - l, 2 ) / edge.elasticity; if( 0 !== l ){ var forceX = force * lx / l; var forceY = force * ly / l; } else { var forceX = 0; var forceY = 0; } // Add this force to target and source nodes if( !source.isLocked ){ source.offsetX += forceX; source.offsetY += forceY; } if( !target.isLocked ){ target.offsetX -= forceX; target.offsetY -= forceY; } // var s = 'Edge force between nodes ' + source.id + ' and ' + target.id; // s += "\nDistance: " + l + " Force: (" + forceX + ", " + forceY + ")"; // logDebug(s); } }; /** * @brief : Computes gravity forces for all nodes */ var calculateGravityForces = function( layoutInfo, options ){ if (options.gravity === 0) { return; } var distThreshold = 1; // var s = 'calculateGravityForces'; // logDebug(s); for( var i = 0; i < layoutInfo.graphSet.length; i ++ ){ var graph = layoutInfo.graphSet[ i ]; var numNodes = graph.length; // s = "Set: " + graph.toString(); // logDebug(s); // Compute graph center if( 0 === i ){ var centerX = layoutInfo.clientHeight / 2; var centerY = layoutInfo.clientWidth / 2; } else { // Get Parent node for this graph, and use its position as center var temp = layoutInfo.layoutNodes[ layoutInfo.idToIndex[ graph[0] ] ]; var parent = layoutInfo.layoutNodes[ layoutInfo.idToIndex[ temp.parentId ] ]; var centerX = parent.positionX; var centerY = parent.positionY; } // s = "Center found at: " + centerX + ", " + centerY; // logDebug(s); // Apply force to all nodes in graph for( var j = 0; j < numNodes; j++ ){ var node = layoutInfo.layoutNodes[ layoutInfo.idToIndex[ graph[ j ] ] ]; // s = "Node: " + node.id; if( node.isLocked ){ continue; } var dx = centerX - node.positionX; var dy = centerY - node.positionY; var d = Math.sqrt( dx * dx + dy * dy ); if( d > distThreshold ){ var fx = options.gravity * dx / d; var fy = options.gravity * dy / d; node.offsetX += fx; node.offsetY += fy; // s += ": Applied force: " + fx + ", " + fy; } else { // s += ": skypped since it's too close to center"; } // logDebug(s); } } }; /** * @brief : This function propagates the existing offsets from * parent nodes to its descendents. * @arg layoutInfo : layoutInfo Object * @arg cy : cytoscape Object * @arg options : Layout options */ var propagateForces = function( layoutInfo, options ){ // Inline implementation of a queue, used for traversing the graph in BFS order var queue = []; var start = 0; // Points to the start the queue var end = -1; // Points to the end of the queue // logDebug('propagateForces'); // Start by visiting the nodes in the root graph queue.push.apply( queue, layoutInfo.graphSet[0] ); end += layoutInfo.graphSet[0].length; // Traverse the graph, level by level, while( start <= end ){ // Get the node to visit and remove it from queue var nodeId = queue[ start++ ]; var nodeIndex = layoutInfo.idToIndex[ nodeId ]; var node = layoutInfo.layoutNodes[ nodeIndex ]; var children = node.children; // We only need to process the node if it's compound if( 0 < children.length && !node.isLocked ){ var offX = node.offsetX; var offY = node.offsetY; // var s = "Propagating offset from parent node : " + node.id + // ". OffsetX: " + offX + ". OffsetY: " + offY; // s += "\n Children: " + children.toString(); // logDebug(s); for( var i = 0; i < children.length; i++ ){ var childNode = layoutInfo.layoutNodes[ layoutInfo.idToIndex[ children[ i ] ] ]; // Propagate offset childNode.offsetX += offX; childNode.offsetY += offY; // Add children to queue to be visited queue[ ++end ] = children[ i ]; } // Reset parent offsets node.offsetX = 0; node.offsetY = 0; } } }; /** * @brief : Updates the layout model positions, based on * the accumulated forces */ var updatePositions = function( layoutInfo, options ){ // var s = 'Updating positions'; // logDebug(s); // Reset boundaries for compound nodes for( var i = 0; i < layoutInfo.nodeSize; i++ ){ var n = layoutInfo.layoutNodes[ i ]; if( 0 < n.children.length ){ // logDebug("Resetting boundaries of compound node: " + n.id); n.maxX = undefined; n.minX = undefined; n.maxY = undefined; n.minY = undefined; } } for( var i = 0; i < layoutInfo.nodeSize; i++ ){ var n = layoutInfo.layoutNodes[ i ]; if( 0 < n.children.length || n.isLocked ){ // No need to set compound or locked node position // logDebug("Skipping position update of node: " + n.id); continue; } // s = "Node: " + n.id + " Previous position: (" + // n.positionX + ", " + n.positionY + ")."; // Limit displacement in order to improve stability var tempForce = limitForce( n.offsetX, n.offsetY, layoutInfo.temperature ); n.positionX += tempForce.x; n.positionY += tempForce.y; n.offsetX = 0; n.offsetY = 0; n.minX = n.positionX - n.width; n.maxX = n.positionX + n.width; n.minY = n.positionY - n.height; n.maxY = n.positionY + n.height; // s += " New Position: (" + n.positionX + ", " + n.positionY + ")."; // logDebug(s); // Update ancestry boudaries updateAncestryBoundaries( n, layoutInfo ); } // Update size, position of compund nodes for( var i = 0; i < layoutInfo.nodeSize; i++ ){ var n = layoutInfo.layoutNodes[ i ]; if( 0 < n.children.length && !n.isLocked ){ n.positionX = (n.maxX + n.minX) / 2; n.positionY = (n.maxY + n.minY) / 2; n.width = n.maxX - n.minX; n.height = n.maxY - n.minY; // s = "Updating position, size of compound node " + n.id; // s += "\nPositionX: " + n.positionX + ", PositionY: " + n.positionY; // s += "\nWidth: " + n.width + ", Height: " + n.height; // logDebug(s); } } }; /** * @brief : Limits a force (forceX, forceY) to be not * greater (in modulo) than max. 8 Preserves force direction. */ var limitForce = function( forceX, forceY, max ){ // var s = "Limiting force: (" + forceX + ", " + forceY + "). Max: " + max; var force = Math.sqrt( forceX * forceX + forceY * forceY ); if( force > max ){ var res = { x: max * forceX / force, y: max * forceY / force }; } else { var res = { x: forceX, y: forceY }; } // s += ".\nResult: (" + res.x + ", " + res.y + ")"; // logDebug(s); return res; }; /** * @brief : Function used for keeping track of compound node * sizes, since they should bound all their subnodes. */ var updateAncestryBoundaries = function( node, layoutInfo ){ // var s = "Propagating new position/size of node " + node.id; var parentId = node.parentId; if( null == parentId ){ // If there's no parent, we are done // s += ". No parent node."; // logDebug(s); return; } // Get Parent Node var p = layoutInfo.layoutNodes[ layoutInfo.idToIndex[ parentId ] ]; var flag = false; // MaxX if( null == p.maxX || node.maxX + p.padRight > p.maxX ){ p.maxX = node.maxX + p.padRight; flag = true; // s += "\nNew maxX for parent node " + p.id + ": " + p.maxX; } // MinX if( null == p.minX || node.minX - p.padLeft < p.minX ){ p.minX = node.minX - p.padLeft; flag = true; // s += "\nNew minX for parent node " + p.id + ": " + p.minX; } // MaxY if( null == p.maxY || node.maxY + p.padBottom > p.maxY ){ p.maxY = node.maxY + p.padBottom; flag = true; // s += "\nNew maxY for parent node " + p.id + ": " + p.maxY; } // MinY if( null == p.minY || node.minY - p.padTop < p.minY ){ p.minY = node.minY - p.padTop; flag = true; // s += "\nNew minY for parent node " + p.id + ": " + p.minY; } // If updated boundaries, propagate changes upward if( flag ){ // logDebug(s); return updateAncestryBoundaries( p, layoutInfo ); } // s += ". No changes in boundaries/position of parent node " + p.id; // logDebug(s); return; }; var separateComponents = function( layoutInfo, options ){ var nodes = layoutInfo.layoutNodes; var components = []; for( var i = 0; i < nodes.length; i++ ){ var node = nodes[ i ]; var cid = node.cmptId; var component = components[ cid ] = components[ cid ] || []; component.push( node ); } var totalA = 0; for( var i = 0; i < components.length; i++ ){ var c = components[ i ]; if( !c ){ continue; } c.x1 = Infinity; c.x2 = -Infinity; c.y1 = Infinity; c.y2 = -Infinity; for( var j = 0; j < c.length; j++ ){ var n = c[ j ]; c.x1 = Math.min( c.x1, n.positionX - n.width / 2 ); c.x2 = Math.max( c.x2, n.positionX + n.width / 2 ); c.y1 = Math.min( c.y1, n.positionY - n.height / 2 ); c.y2 = Math.max( c.y2, n.positionY + n.height / 2 ); } c.w = c.x2 - c.x1; c.h = c.y2 - c.y1; totalA += c.w * c.h; } components.sort( function( c1, c2 ){ return c2.w * c2.h - c1.w * c1.h; } ); var x = 0; var y = 0; var usedW = 0; var rowH = 0; var maxRowW = Math.sqrt( totalA ) * layoutInfo.clientWidth / layoutInfo.clientHeight; for( var i = 0; i < components.length; i++ ){ var c = components[ i ]; if( !c ){ continue; } for( var j = 0; j < c.length; j++ ){ var n = c[ j ]; if( !n.isLocked ){ n.positionX += (x - c.x1); n.positionY += (y - c.y1); } } x += c.w + options.componentSpacing; usedW += c.w + options.componentSpacing; rowH = Math.max( rowH, c.h ); if( usedW > maxRowW ){ y += rowH + options.componentSpacing; x = 0; usedW = 0; rowH = 0; } } }; export default CoseLayout; ================================================ FILE: src/extensions/layout/grid.mjs ================================================ import * as util from '../../util/index.mjs'; import * as math from '../../math.mjs'; let defaults = { fit: true, // whether to fit the viewport to the graph padding: 30, // padding used on fit boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } avoidOverlap: true, // prevents node overlap, may overflow boundingBox if not enough space avoidOverlapPadding: 10, // extra spacing around nodes when avoidOverlap: true nodeDimensionsIncludeLabels: false, // Excludes the label when calculating node bounding boxes for the layout algorithm spacingFactor: undefined, // Applies a multiplicative factor (>0) to expand or compress the overall area that the nodes take up condense: false, // uses all available space on false, uses minimal space on true rows: undefined, // force num of rows in the grid cols: undefined, // force num of columns in the grid position: function( node ){}, // returns { row, col } for element sort: undefined, // a sorting function to order the nodes; e.g. function(a, b){ return a.data('weight') - b.data('weight') } animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function ( node, i ){ return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function (node, position ){ return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function GridLayout( options ){ this.options = util.extend( {}, defaults, options ); } GridLayout.prototype.run = function(){ let params = this.options; let options = params; let cy = params.cy; let eles = options.eles; let nodes = eles.nodes().not( ':parent' ); if( options.sort ){ nodes = nodes.sort( options.sort ); } let bb = math.makeBoundingBox( options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() } ); if( bb.h === 0 || bb.w === 0 ){ eles.nodes().layoutPositions( this, options, function( ele ){ return { x: bb.x1, y: bb.y1 }; } ); } else { // width/height * splits^2 = cells where splits is number of times to split width let cells = nodes.size(); let splits = Math.sqrt( cells * bb.h / bb.w ); let rows = Math.round( splits ); let cols = Math.round( bb.w / bb.h * splits ); let small = function( val ){ if( val == null ){ return Math.min( rows, cols ); } else { let min = Math.min( rows, cols ); if( min == rows ){ rows = val; } else { cols = val; } } }; let large = function( val ){ if( val == null ){ return Math.max( rows, cols ); } else { let max = Math.max( rows, cols ); if( max == rows ){ rows = val; } else { cols = val; } } }; let oRows = options.rows; let oCols = options.cols != null ? options.cols : options.columns; // if rows or columns were set in options, use those values if( oRows != null && oCols != null ){ rows = oRows; cols = oCols; } else if( oRows != null && oCols == null ){ rows = oRows; cols = Math.ceil( cells / rows ); } else if( oRows == null && oCols != null ){ cols = oCols; rows = Math.ceil( cells / cols ); } // otherwise use the automatic values and adjust accordingly // if rounding was up, see if we can reduce rows or columns else if( cols * rows > cells ){ let sm = small(); let lg = large(); // reducing the small side takes away the most cells, so try it first if( (sm - 1) * lg >= cells ){ small( sm - 1 ); } else if( (lg - 1) * sm >= cells ){ large( lg - 1 ); } } else { // if rounding was too low, add rows or columns while( cols * rows < cells ){ let sm = small(); let lg = large(); // try to add to larger side first (adds less in multiplication) if( (lg + 1) * sm >= cells ){ large( lg + 1 ); } else { small( sm + 1 ); } } } let cellWidth = bb.w / cols; let cellHeight = bb.h / rows; if( options.condense ){ cellWidth = 0; cellHeight = 0; } if( options.avoidOverlap ){ for( let i = 0; i < nodes.length; i++ ){ let node = nodes[ i ]; let pos = node._private.position; if( pos.x == null || pos.y == null ){ // for bb pos.x = 0; pos.y = 0; } let nbb = node.layoutDimensions( options ); let p = options.avoidOverlapPadding; let w = nbb.w + p; let h = nbb.h + p; cellWidth = Math.max( cellWidth, w ); cellHeight = Math.max( cellHeight, h ); } } let cellUsed = {}; // e.g. 'c-0-2' => true let used = function( row, col ){ return cellUsed[ 'c-' + row + '-' + col ] ? true : false; }; let use = function( row, col ){ cellUsed[ 'c-' + row + '-' + col ] = true; }; // to keep track of current cell position let row = 0; let col = 0; let moveToNextCell = function(){ col++; if( col >= cols ){ col = 0; row++; } }; // get a cache of all the manual positions let id2manPos = {}; for( let i = 0; i < nodes.length; i++ ){ let node = nodes[ i ]; let rcPos = options.position( node ); if( rcPos && (rcPos.row !== undefined || rcPos.col !== undefined) ){ // must have at least row or col def'd let pos = { row: rcPos.row, col: rcPos.col }; if( pos.col === undefined ){ // find unused col pos.col = 0; while( used( pos.row, pos.col ) ){ pos.col++; } } else if( pos.row === undefined ){ // find unused row pos.row = 0; while( used( pos.row, pos.col ) ){ pos.row++; } } id2manPos[ node.id() ] = pos; use( pos.row, pos.col ); } } let getPos = function( element, i ){ let x, y; if( element.locked() || element.isParent() ){ return false; } // see if we have a manual position set let rcPos = id2manPos[ element.id() ]; if( rcPos ){ x = rcPos.col * cellWidth + cellWidth / 2 + bb.x1; y = rcPos.row * cellHeight + cellHeight / 2 + bb.y1; } else { // otherwise set automatically while( used( row, col ) ){ moveToNextCell(); } x = col * cellWidth + cellWidth / 2 + bb.x1; y = row * cellHeight + cellHeight / 2 + bb.y1; use( row, col ); moveToNextCell(); } return { x: x, y: y }; }; nodes.layoutPositions( this, options, getPos ); } return this; // chaining }; export default GridLayout; ================================================ FILE: src/extensions/layout/index.mjs ================================================ import breadthfirstLayout from './breadthfirst.mjs'; import circleLayout from './circle.mjs'; import concentricLayout from './concentric.mjs'; import coseLayout from './cose.mjs'; import gridLayout from './grid.mjs'; import nullLayout from './null.mjs'; import presetLayout from './preset.mjs'; import randomLayout from './random.mjs'; export default [ { name: 'breadthfirst', impl: breadthfirstLayout }, { name: 'circle', impl: circleLayout }, { name: 'concentric',impl: concentricLayout }, { name: 'cose', impl: coseLayout }, { name: 'grid', impl: gridLayout }, { name: 'null', impl: nullLayout }, { name: 'preset', impl: presetLayout }, { name: 'random', impl: randomLayout } ]; ================================================ FILE: src/extensions/layout/null.mjs ================================================ import * as util from '../../util/index.mjs'; // default layout options let defaults = { ready: function(){}, // on layoutready stop: function(){} // on layoutstop }; // constructor // options : object containing layout options function NullLayout( options ){ this.options = util.extend( {}, defaults, options ); } // runs the layout NullLayout.prototype.run = function(){ let options = this.options; let eles = options.eles; // elements to consider in the layout let layout = this; // cy is automatically populated for us in the constructor // (disable eslint for next line as this serves as example layout code to external developers) // eslint-disable-next-line no-unused-vars let cy = options.cy; layout.emit( 'layoutstart' ); // puts all nodes at (0, 0) // n.b. most layouts would use layoutPositions(), instead of positions() and manual events eles.nodes().positions( function(){ return { x: 0, y: 0 }; } ); // trigger layoutready when each node has had its position set at least once layout.one( 'layoutready', options.ready ); layout.emit( 'layoutready' ); // trigger layoutstop when the layout stops (e.g. finishes) layout.one( 'layoutstop', options.stop ); layout.emit( 'layoutstop' ); return this; // chaining }; // called on continuous layouts to stop them before they finish NullLayout.prototype.stop = function(){ return this; // chaining }; export default NullLayout; ================================================ FILE: src/extensions/layout/preset.mjs ================================================ import * as util from '../../util/index.mjs'; import * as is from '../../is.mjs'; import { copyPosition } from '../../math.mjs'; let defaults = { positions: undefined, // map of (node id) => (position obj); or function(node){ return somPos; } zoom: undefined, // the zoom level to set (prob want fit = false if set) pan: undefined, // the pan level to set (prob want fit = false if set) fit: true, // whether to fit to viewport padding: 30, // padding on fit spacingFactor: undefined, // Applies a multiplicative factor (>0) to expand or compress the overall area that the nodes take up animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function ( node, i ){ return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function (node, position ){ return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function PresetLayout( options ){ this.options = util.extend( {}, defaults, options ); } PresetLayout.prototype.run = function(){ let options = this.options; let eles = options.eles; let nodes = eles.nodes(); let posIsFn = is.fn( options.positions ); function getPosition( node ){ if( options.positions == null ){ return copyPosition( node.position() ); } if( posIsFn ){ return options.positions( node ); } let pos = options.positions[ node._private.data.id ]; if( pos == null ){ return null; } return pos; } nodes.layoutPositions( this, options, function( node, i ){ let position = getPosition( node ); if( node.locked() || position == null ){ return false; } return position; } ); return this; // chaining }; export default PresetLayout; ================================================ FILE: src/extensions/layout/random.mjs ================================================ import * as util from '../../util/index.mjs'; import * as math from '../../math.mjs'; let defaults = { fit: true, // whether to fit to viewport padding: 30, // fit padding boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h } animate: false, // whether to transition the node positions animationDuration: 500, // duration of animation in ms if enabled animationEasing: undefined, // easing of animation if enabled animateFilter: function ( node, i ){ return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts ready: undefined, // callback on layoutready stop: undefined, // callback on layoutstop transform: function (node, position ){ return position; } // transform a given node position. Useful for changing flow direction in discrete layouts }; function RandomLayout( options ){ this.options = util.extend( {}, defaults, options ); } RandomLayout.prototype.run = function(){ let options = this.options; let cy = options.cy; let eles = options.eles; let bb = math.makeBoundingBox( options.boundingBox ? options.boundingBox : { x1: 0, y1: 0, w: cy.width(), h: cy.height() } ); let getPos = function( node, i ){ return { x: bb.x1 + Math.round( Math.random() * bb.w ), y: bb.y1 + Math.round( Math.random() * bb.h ) }; }; eles.nodes().layoutPositions( this, options, getPos ); return this; // chaining }; export default RandomLayout; ================================================ FILE: src/extensions/renderer/base/arrow-shapes.mjs ================================================ import * as math from '../../../math.mjs'; import * as is from '../../../is.mjs'; import * as util from '../../../util/index.mjs'; var BRp = {}; BRp.arrowShapeWidth = 0.3; BRp.registerArrowShapes = function(){ var arrowShapes = this.arrowShapes = {}; var renderer = this; // Contract for arrow shapes: // 0, 0 is arrow tip // (0, 1) is direction towards node // (1, 0) is right // // functional api: // collide: check x, y in shape // roughCollide: called before collide, no false negatives // draw: draw // spacing: dist(arrowTip, nodeBoundary) // gap: dist(edgeTip, nodeBoundary), edgeTip may != arrowTip var bbCollide = function( x, y, size, angle, translation, edgeWidth, padding ){ var x1 = translation.x - size / 2 - padding; var x2 = translation.x + size / 2 + padding; var y1 = translation.y - size / 2 - padding; var y2 = translation.y + size / 2 + padding; var inside = (x1 <= x && x <= x2) && (y1 <= y && y <= y2); return inside; }; var transform = function( x, y, size, angle, translation ){ var xRotated = x * Math.cos( angle ) - y * Math.sin( angle ); var yRotated = x * Math.sin( angle ) + y * Math.cos( angle ); var xScaled = xRotated * size; var yScaled = yRotated * size; var xTranslated = xScaled + translation.x; var yTranslated = yScaled + translation.y; return { x: xTranslated, y: yTranslated }; }; var transformPoints = function( pts, size, angle, translation ){ var retPts = []; for( var i = 0; i < pts.length; i += 2 ){ var x = pts[ i ]; var y = pts[ i + 1]; retPts.push( transform( x, y, size, angle, translation ) ); } return retPts; }; var pointsToArr = function( pts ){ var ret = []; for( var i = 0; i < pts.length; i++ ){ var p = pts[ i ]; ret.push( p.x, p.y ); } return ret; }; var standardGap = function( edge ) { return edge.pstyle( 'width' ).pfValue * edge.pstyle( 'arrow-scale' ).pfValue * 2; }; var defineArrowShape = function( name, defn ){ if( is.string( defn ) ){ defn = arrowShapes[ defn ]; } arrowShapes[ name ] = util.extend( { name: name, points: [ -0.15, -0.3, 0.15, -0.3, 0.15, 0.3, -0.15, 0.3 ], collide: function( x, y, size, angle, translation, padding ){ var points = pointsToArr( transformPoints( this.points, size + 2 * padding, angle, translation ) ); var inside = math.pointInsidePolygonPoints( x, y, points ); return inside; }, roughCollide: bbCollide, draw: function( context, size, angle, translation ){ var points = transformPoints( this.points, size, angle, translation ); renderer.arrowShapeImpl( 'polygon' )( context, points ); }, spacing: function( edge ){ return 0; }, gap: standardGap }, defn ); }; defineArrowShape( 'none', { collide: util.falsify, roughCollide: util.falsify, draw: util.noop, spacing: util.zeroify, gap: util.zeroify } ); defineArrowShape( 'triangle', { points: [ -0.15, -0.3, 0, 0, 0.15, -0.3 ] } ); defineArrowShape( 'arrow', 'triangle' ); defineArrowShape( 'triangle-backcurve', { points: arrowShapes[ 'triangle' ].points, controlPoint: [ 0, -0.15 ], roughCollide: bbCollide, draw: function( context, size, angle, translation, edgeWidth ){ var ptsTrans = transformPoints( this.points, size, angle, translation ); var ctrlPt = this.controlPoint; var ctrlPtTrans = transform( ctrlPt[0], ctrlPt[1], size, angle, translation ); renderer.arrowShapeImpl( this.name )( context, ptsTrans, ctrlPtTrans ); }, gap: function( edge ) { return standardGap(edge) * 0.8; } } ); defineArrowShape( 'triangle-tee', { points: [ 0, 0, 0.15, -0.3, -0.15, -0.3, 0, 0 ], pointsTee: [ -0.15, -0.4, -0.15, -0.5, 0.15, -0.5, 0.15, -0.4 ], collide: function( x, y, size, angle, translation, edgeWidth, padding ){ var triPts = pointsToArr( transformPoints( this.points, size + 2 * padding, angle, translation ) ); var teePts = pointsToArr( transformPoints( this.pointsTee, size + 2 * padding, angle, translation ) ); var inside = math.pointInsidePolygonPoints( x, y, triPts ) || math.pointInsidePolygonPoints( x, y, teePts ); return inside; }, draw: function( context, size, angle, translation, edgeWidth ){ var triPts = transformPoints( this.points, size, angle, translation ); var teePts = transformPoints( this.pointsTee, size, angle, translation ); renderer.arrowShapeImpl( this.name )( context, triPts, teePts ); } } ); defineArrowShape( 'circle-triangle', { radius: 0.15, pointsTr: [0, -0.15, 0.15, -0.45, -0.15, -0.45, 0, -0.15], collide: function collide(x, y, size, angle, translation, edgeWidth, padding) { var t = translation; var circleInside = Math.pow(t.x - x, 2) + Math.pow(t.y - y, 2) <= Math.pow((size + 2 * padding) * this.radius, 2); var triPts = pointsToArr(transformPoints(this.points, size + 2 * padding, angle, translation)); return math.pointInsidePolygonPoints(x, y, triPts) || circleInside; }, draw: function draw(context, size, angle, translation, edgeWidth) { var triPts = transformPoints(this.pointsTr, size, angle, translation); renderer.arrowShapeImpl(this.name)(context, triPts, translation.x, translation.y, this.radius * size); }, spacing: function spacing(edge) { return renderer.getArrowWidth(edge.pstyle('width').pfValue, edge.pstyle('arrow-scale').value) * this.radius; } } ); defineArrowShape( 'triangle-cross', { points: [ 0, 0, 0.15, -0.3, -0.15, -0.3, 0, 0 ], baseCrossLinePts: [ -0.15, -0.4, // first half of the rectangle -0.15, -0.4, 0.15, -0.4, // second half of the rectangle 0.15, -0.4 ], crossLinePts: function( size, edgeWidth ){ // shift points so that the distance between the cross points matches edge width var p = this.baseCrossLinePts.slice(); var shiftFactor = edgeWidth / size; var y0 = 3; var y1 = 5; p[y0] = p[y0] - shiftFactor; p[y1] = p[y1] - shiftFactor; return p; }, collide: function( x, y, size, angle, translation, edgeWidth, padding ){ var triPts = pointsToArr( transformPoints( this.points, size + 2 * padding, angle, translation ) ); var teePts = pointsToArr( transformPoints( this.crossLinePts( size, edgeWidth ), size + 2 * padding, angle, translation ) ); var inside = math.pointInsidePolygonPoints( x, y, triPts ) || math.pointInsidePolygonPoints( x, y, teePts ); return inside; }, draw: function( context, size, angle, translation, edgeWidth ){ var triPts = transformPoints( this.points, size, angle, translation ); var crossLinePts = transformPoints( this.crossLinePts( size, edgeWidth ), size, angle, translation ); renderer.arrowShapeImpl( this.name )( context, triPts, crossLinePts ); } } ); defineArrowShape( 'vee', { points: [ -0.15, -0.3, 0, 0, 0.15, -0.3, 0, -0.15 ], gap: function( edge ){ return standardGap(edge) * 0.525; } } ); defineArrowShape( 'circle', { radius: 0.15, collide: function( x, y, size, angle, translation, edgeWidth, padding ){ var t = translation; var inside = ( Math.pow( t.x - x, 2 ) + Math.pow( t.y - y, 2 ) <= Math.pow( (size + 2 * padding) * this.radius, 2 ) ); return inside; }, draw: function( context, size, angle, translation, edgeWidth ){ renderer.arrowShapeImpl( this.name )( context, translation.x, translation.y, this.radius * size ); }, spacing: function( edge ){ return renderer.getArrowWidth( edge.pstyle( 'width' ).pfValue, edge.pstyle( 'arrow-scale' ).value ) * this.radius; } } ); defineArrowShape( 'tee', { points: [ -0.15, 0, -0.15, -0.1, 0.15, -0.1, 0.15, 0 ], spacing: function( edge ){ return 1; }, gap: function( edge ){ return 1; } } ); defineArrowShape( 'square', { points: [ -0.15, 0.00, 0.15, 0.00, 0.15, -0.3, -0.15, -0.3 ] } ); defineArrowShape( 'diamond', { points: [ -0.15, -0.15, 0, -0.3, 0.15, -0.15, 0, 0 ], gap: function( edge ){ return edge.pstyle( 'width' ).pfValue * edge.pstyle( 'arrow-scale' ).value; } } ); defineArrowShape( 'chevron', { points: [ 0, 0, -0.15, -0.15, -0.1, -0.2, 0, -0.1, 0.1, -0.2, 0.15, -0.15 ], gap: function( edge ){ return 0.95 * edge.pstyle( 'width' ).pfValue * edge.pstyle( 'arrow-scale' ).value; } } ); }; export default BRp; ================================================ FILE: src/extensions/renderer/base/coord-ele-math/coords.mjs ================================================ import * as math from '../../../../math.mjs'; import * as util from '../../../../util/index.mjs'; var BRp = {}; // Project mouse BRp.projectIntoViewport = function( clientX, clientY ){ var cy = this.cy; var offsets = this.findContainerClientCoords(); var offsetLeft = offsets[0]; var offsetTop = offsets[1]; var scale = offsets[4]; var pan = cy.pan(); var zoom = cy.zoom(); var x = ( (clientX - offsetLeft)/scale - pan.x ) / zoom; var y = ( (clientY - offsetTop)/scale - pan.y ) / zoom; return [ x, y ]; }; BRp.findContainerClientCoords = function(){ if( this.containerBB ){ return this.containerBB; } var container = this.container; var rect = container.getBoundingClientRect(); var style = this.cy.window().getComputedStyle( container ); var styleValue = function( name ){ return parseFloat( style.getPropertyValue( name ) ); }; var padding = { left: styleValue('padding-left'), right: styleValue('padding-right'), top: styleValue('padding-top'), bottom: styleValue('padding-bottom') }; var border = { left: styleValue('border-left-width'), right: styleValue('border-right-width'), top: styleValue('border-top-width'), bottom: styleValue('border-bottom-width') }; var clientWidth = container.clientWidth; var clientHeight = container.clientHeight; var paddingHor = padding.left + padding.right; var paddingVer = padding.top + padding.bottom; var borderHor = border.left + border.right; var scale = rect.width / ( clientWidth + borderHor ); var unscaledW = clientWidth - paddingHor; var unscaledH = clientHeight - paddingVer; var left = rect.left + padding.left + border.left; var top = rect.top + padding.top + border.top; return ( this.containerBB = [ left, top, unscaledW, unscaledH, scale ] ); }; BRp.invalidateContainerClientCoordsCache = function(){ this.containerBB = null; }; BRp.findNearestElement = function( x, y, interactiveElementsOnly, isTouch ){ return this.findNearestElements( x, y, interactiveElementsOnly, isTouch )[0]; }; BRp.findNearestElements = function( x, y, interactiveElementsOnly, isTouch ){ var self = this; var r = this; var eles = r.getCachedZSortedEles(); var near = []; // 1 node max, 1 edge max var zoom = r.cy.zoom(); var hasCompounds = r.cy.hasCompoundNodes(); var edgeThreshold = (isTouch ? 24 : 8) / zoom; var nodeThreshold = (isTouch ? 8 : 2) / zoom; var labelThreshold = (isTouch ? 8 : 2) / zoom; var minSqDist = Infinity; var nearEdge; var nearNode; if( interactiveElementsOnly ){ eles = eles.interactive; } function addEle( ele, sqDist ){ if( ele.isNode() ){ if( nearNode ){ return; // can't replace node } else { nearNode = ele; near.push( ele ); } } if( ele.isEdge() && ( sqDist == null || sqDist < minSqDist ) ){ if( nearEdge ){ // then replace existing edge // can replace only if same z-index if( nearEdge.pstyle('z-compound-depth').value === ele.pstyle('z-compound-depth').value && nearEdge.pstyle('z-compound-depth').value === ele.pstyle('z-compound-depth').value ){ for( var i = 0; i < near.length; i++ ){ if( near[i].isEdge() ){ near[i] = ele; nearEdge = ele; minSqDist = sqDist != null ? sqDist : minSqDist; break; } } } } else { near.push( ele ); nearEdge = ele; minSqDist = sqDist != null ? sqDist : minSqDist; } } } function checkNode( node ){ var width = node.outerWidth() + 2 * nodeThreshold; var height = node.outerHeight() + 2 * nodeThreshold; var hw = width / 2; var hh = height / 2; var pos = node.position(); var cornerRadius = node.pstyle('corner-radius').value === 'auto' ? 'auto' : node.pstyle('corner-radius').pfValue; var rs = node._private.rscratch; if( pos.x - hw <= x && x <= pos.x + hw // bb check x && pos.y - hh <= y && y <= pos.y + hh // bb check y ){ var shape = r.nodeShapes[ self.getNodeShape( node ) ]; if( shape.checkPoint( x, y, 0, width, height, pos.x, pos.y, cornerRadius, rs ) ){ addEle( node, 0 ); return true; } } } function checkEdge( edge ){ var _p = edge._private; var rs = _p.rscratch; var styleWidth = edge.pstyle( 'width' ).pfValue; var scale = edge.pstyle( 'arrow-scale' ).value; var width = styleWidth / 2 + edgeThreshold; // more like a distance radius from centre var widthSq = width * width; var width2 = width * 2; var src = _p.source; var tgt = _p.target; var sqDist; if( rs.edgeType === 'segments' || rs.edgeType === 'straight' || rs.edgeType === 'haystack' ){ var pts = rs.allpts; for( var i = 0; i + 3 < pts.length; i += 2 ){ if( (math.inLineVicinity( x, y, pts[ i ], pts[ i + 1], pts[ i + 2], pts[ i + 3], width2 )) && widthSq > ( sqDist = math.sqdistToFiniteLine( x, y, pts[ i ], pts[ i + 1], pts[ i + 2], pts[ i + 3] ) ) ){ addEle( edge, sqDist ); return true; } } } else if( rs.edgeType === 'bezier' || rs.edgeType === 'multibezier' || rs.edgeType === 'self' || rs.edgeType === 'compound' ){ var pts = rs.allpts; for( var i = 0; i + 5 < rs.allpts.length; i += 4 ){ if( (math.inBezierVicinity( x, y, pts[ i ], pts[ i + 1], pts[ i + 2], pts[ i + 3], pts[ i + 4], pts[ i + 5], width2 )) && (widthSq > (sqDist = math.sqdistToQuadraticBezier( x, y, pts[ i ], pts[ i + 1], pts[ i + 2], pts[ i + 3], pts[ i + 4], pts[ i + 5] )) ) ){ addEle( edge, sqDist ); return true; } } } // if we're close to the edge but didn't hit it, maybe we hit its arrows var src = src || _p.source; var tgt = tgt || _p.target; var arSize = self.getArrowWidth( styleWidth, scale ); var arrows = [ { name: 'source', x: rs.arrowStartX, y: rs.arrowStartY, angle: rs.srcArrowAngle }, { name: 'target', x: rs.arrowEndX, y: rs.arrowEndY, angle: rs.tgtArrowAngle }, { name: 'mid-source', x: rs.midX, y: rs.midY, angle: rs.midsrcArrowAngle }, { name: 'mid-target', x: rs.midX, y: rs.midY, angle: rs.midtgtArrowAngle } ]; for( var i = 0; i < arrows.length; i++ ){ var ar = arrows[ i ]; var shape = r.arrowShapes[ edge.pstyle( ar.name + '-arrow-shape' ).value ]; var edgeWidth = edge.pstyle('width').pfValue; if( shape.roughCollide( x, y, arSize, ar.angle, { x: ar.x, y: ar.y }, edgeWidth, edgeThreshold ) && shape.collide( x, y, arSize, ar.angle, { x: ar.x, y: ar.y }, edgeWidth, edgeThreshold ) ){ addEle( edge ); return true; } } // for compound graphs, hitting edge may actually want a connected node instead (b/c edge may have greater z-index precedence) if( hasCompounds && near.length > 0 ){ checkNode( src ); checkNode( tgt ); } } function preprop( obj, name, pre ){ return util.getPrefixedProperty( obj, name, pre ); } function checkLabel( ele, prefix ){ var _p = ele._private; var th = labelThreshold; var prefixDash; if( prefix ){ prefixDash = prefix + '-'; } else { prefixDash = ''; } ele.boundingBox(); var bb = _p.labelBounds[prefix || 'main']; var text = ele.pstyle( prefixDash + 'label' ).value; var eventsEnabled = ele.pstyle( 'text-events' ).strValue === 'yes'; if( !eventsEnabled || !text ){ return; } var lx = preprop( _p.rscratch, 'labelX', prefix ); var ly = preprop( _p.rscratch, 'labelY', prefix ); var theta = preprop( _p.rscratch, 'labelAngle', prefix ); var ox = ele.pstyle(prefixDash + 'text-margin-x').pfValue; let oy = ele.pstyle(prefixDash + 'text-margin-y').pfValue; var lx1 = bb.x1 - th - ox; // (-ox, -oy) as bb already includes margin var lx2 = bb.x2 + th - ox; // and rotation is about (lx, ly) var ly1 = bb.y1 - th - oy; var ly2 = bb.y2 + th - oy; if( theta ){ var cos = Math.cos( theta ); var sin = Math.sin( theta ); var rotate = function( x, y ){ x = x - lx; y = y - ly; return { x: x * cos - y * sin + lx, y: x * sin + y * cos + ly }; }; var px1y1 = rotate( lx1, ly1 ); var px1y2 = rotate( lx1, ly2 ); var px2y1 = rotate( lx2, ly1 ); var px2y2 = rotate( lx2, ly2 ); var points = [ // with the margin added after the rotation is applied px1y1.x + ox, px1y1.y + oy, px2y1.x + ox, px2y1.y + oy, px2y2.x + ox, px2y2.y + oy, px1y2.x + ox, px1y2.y + oy ]; if( math.pointInsidePolygonPoints( x, y, points ) ){ addEle( ele ); return true; } } else { // do a cheaper bb check if( math.inBoundingBox( bb, x, y ) ){ addEle( ele ); return true; } } } for( var i = eles.length - 1; i >= 0; i-- ){ // reverse order for precedence var ele = eles[ i ]; if( ele.isNode() ){ checkNode( ele ) || checkLabel( ele ); } else { // then edge checkEdge( ele ) || checkLabel( ele ) || checkLabel( ele, 'source' ) || checkLabel( ele, 'target' ); } } return near; }; // 'Give me everything from this box' BRp.getAllInBox = function( x1, y1, x2, y2 ){ var eles = this.getCachedZSortedEles().interactive; var zoom = this.cy.zoom(); var labelThreshold = 2 / zoom; var box = []; var x1c = Math.min( x1, x2 ); var x2c = Math.max( x1, x2 ); var y1c = Math.min( y1, y2 ); var y2c = Math.max( y1, y2 ); x1 = x1c; x2 = x2c; y1 = y1c; y2 = y2c; var boxBb = math.makeBoundingBox( { x1: x1, y1: y1, x2: x2, y2: y2 } ); var selectionBox = [ { x: boxBb.x1, y: boxBb.y1 }, { x: boxBb.x2, y: boxBb.y1 }, { x: boxBb.x2, y: boxBb.y2 }, { x: boxBb.x1, y: boxBb.y2 }, ]; var boxEdges = [ [selectionBox[0], selectionBox[1]], [selectionBox[1], selectionBox[2]], [selectionBox[2], selectionBox[3]], [selectionBox[3], selectionBox[0]] ]; function preprop(obj, name, pre) { return util.getPrefixedProperty(obj, name, pre); } function getRotatedLabelBox(ele, prefix) { var _p = ele._private; var th = labelThreshold; var prefixDash = prefix ? prefix + '-' : ''; ele.boundingBox(); var bb = _p.labelBounds[prefix || 'main']; // If the bounding box is not available, return null. // This indicates that the label box cannot be calculated, which is consistent // with the expected behavior of this function. Returning null allows the caller // to handle the absence of a bounding box explicitly. if (!bb) { return null; } var lx = preprop(_p.rscratch, 'labelX', prefix); var ly = preprop(_p.rscratch, 'labelY', prefix); var theta = preprop(_p.rscratch, 'labelAngle', prefix); var ox = ele.pstyle(prefixDash + 'text-margin-x').pfValue; var oy = ele.pstyle(prefixDash + 'text-margin-y').pfValue; var lx1 = bb.x1 - th - ox; var lx2 = bb.x2 + th - ox; var ly1 = bb.y1 - th - oy; var ly2 = bb.y2 + th - oy; if (theta) { var cos = Math.cos(theta); var sin = Math.sin(theta); var rotate = function (x, y) { x = x - lx; y = y - ly; return { x: x * cos - y * sin + lx, y: x * sin + y * cos + ly, }; }; return [rotate(lx1, ly1), rotate(lx2, ly1), rotate(lx2, ly2), rotate(lx1, ly2)]; } else { return [ { x: lx1, y: ly1 }, { x: lx2, y: ly1 }, { x: lx2, y: ly2 }, { x: lx1, y: ly2 }, ]; } } function doLinesIntersect(p1, p2, q1, q2) { function ccw(a, b, c) { return (c.y - a.y) * (b.x - a.x) > (b.y - a.y) * (c.x - a.x); } return ccw(p1, q1, q2) !== ccw(p2, q1, q2) && ccw(p1, p2, q1) !== ccw(p1, p2, q2); } for( var e = 0; e < eles.length; e++ ){ var ele = eles[e]; if( ele.isNode() ){ var node = ele; var textEvents = node.pstyle('text-events').strValue === 'yes'; var nodeBoxSelectMode = node.pstyle('box-selection').strValue; var labelBoxSelectEnabled = node.pstyle('box-select-labels').strValue === 'yes'; if ( nodeBoxSelectMode === 'none' ) { continue; } var includeLabels = (nodeBoxSelectMode === 'overlap' || labelBoxSelectEnabled) && textEvents; var nodeBb = node.boundingBox({ includeNodes: true, includeEdges: false, includeLabels, }); if ( nodeBoxSelectMode === 'contain' ) { let selected = false; if (labelBoxSelectEnabled && textEvents) { const rotatedLabelBox = getRotatedLabelBox(node); if (rotatedLabelBox && math.satPolygonIntersection(rotatedLabelBox, selectionBox)) { box.push(node); selected = true; } } if (!selected && math.boundingBoxInBoundingBox(boxBb, nodeBb)) { box.push(node); } } else if ( nodeBoxSelectMode === 'overlap' ) { if (math.boundingBoxesIntersect(boxBb, nodeBb)) { const nodeBodyBb = node.boundingBox({ includeNodes: true, includeEdges: true, includeLabels: false, includeMainLabels: false, includeSourceLabels: false, includeTargetLabels: false }); const nodeBodyCorners = [ { x: nodeBodyBb.x1, y: nodeBodyBb.y1 }, { x: nodeBodyBb.x2, y: nodeBodyBb.y1 }, { x: nodeBodyBb.x2, y: nodeBodyBb.y2 }, { x: nodeBodyBb.x1, y: nodeBodyBb.y2 }, ]; // if node body intersects, no need to check label if (math.satPolygonIntersection(nodeBodyCorners, selectionBox)) { box.push(node); } else { // only check label if node body didn't intersect const rotatedLabelBox = getRotatedLabelBox(node); if (rotatedLabelBox && math.satPolygonIntersection(rotatedLabelBox, selectionBox)) { box.push(node); } } } } } else { var edge = ele; var _p = edge._private; var rs = _p.rscratch; var edgeBoxSelectMode = edge.pstyle('box-selection').strValue; if ( edgeBoxSelectMode === 'none' ) { continue; } if ( edgeBoxSelectMode === 'contain' ) { if( rs.startX != null && rs.startY != null && !math.inBoundingBox( boxBb, rs.startX, rs.startY ) ){ continue; } if( rs.endX != null && rs.endY != null && !math.inBoundingBox( boxBb, rs.endX, rs.endY ) ){ continue; } if( rs.edgeType === 'bezier' || rs.edgeType === 'multibezier' || rs.edgeType === 'self' || rs.edgeType === 'compound' || rs.edgeType === 'segments' || rs.edgeType === 'haystack' ){ let pts = _p.rstyle.bezierPts || _p.rstyle.linePts || _p.rstyle.haystackPts; let allInside = true; for( var i = 0; i < pts.length; i++ ){ if( !math.pointInBoundingBox( boxBb, pts[ i ] ) ){ allInside = false; break; } } if( allInside ){ box.push( edge ); } } else if( rs.edgeType === 'straight' ){ box.push( edge ); } } else if ( edgeBoxSelectMode === 'overlap' ) { let selected = false; // Check: either endpoint inside box if ( rs.startX != null && rs.startY != null && rs.endX != null && rs.endY != null && (math.inBoundingBox(boxBb, rs.startX, rs.startY) || math.inBoundingBox(boxBb, rs.endX, rs.endY)) ) { box.push(edge); selected = true; } // Haystack fallback (only check if not already selected) else if (!selected && rs.edgeType === 'haystack') { const haystackPts = _p.rstyle.haystackPts; for (let i = 0; i < haystackPts.length; i++) { if (math.pointInBoundingBox(boxBb, haystackPts[i])) { box.push(edge); selected = true; break; } } } // Segment intersection check (only if not already selected) if (!selected) { let pts = _p.rstyle.bezierPts || _p.rstyle.linePts || _p.rstyle.haystackPts; // straight edges if ((!pts || pts.length < 2) && rs.edgeType === 'straight') { if (rs.startX != null && rs.startY != null && rs.endX != null && rs.endY != null) { pts = [ { x: rs.startX, y: rs.startY }, { x: rs.endX, y: rs.endY } ]; } } if (!pts || pts.length < 2) continue; for (let i = 0; i < pts.length - 1; i++) { let segStart = pts[i]; let segEnd = pts[i + 1]; for (let b = 0; b < boxEdges.length; b++) { let [boxStart, boxEnd] = boxEdges[b]; if (doLinesIntersect(segStart, segEnd, boxStart, boxEnd)) { box.push(edge); selected = true; break; } } if (selected) break; } } } } } return box; }; export default BRp; ================================================ FILE: src/extensions/renderer/base/coord-ele-math/edge-arrows.mjs ================================================ import * as math from '../../../../math.mjs'; var BRp = {}; BRp.calculateArrowAngles = function( edge ){ var rs = edge._private.rscratch; var isHaystack = rs.edgeType === 'haystack'; var isBezier = rs.edgeType === 'bezier'; var isMultibezier = rs.edgeType === 'multibezier'; var isSegments = rs.edgeType === 'segments'; var isCompound = rs.edgeType === 'compound'; var isSelf = rs.edgeType === 'self'; // Displacement gives direction for arrowhead orientation var dispX, dispY; var startX, startY, endX, endY, midX, midY; if( isHaystack ){ startX = rs.haystackPts[0]; startY = rs.haystackPts[1]; endX = rs.haystackPts[2]; endY = rs.haystackPts[3]; } else { startX = rs.arrowStartX; startY = rs.arrowStartY; endX = rs.arrowEndX; endY = rs.arrowEndY; } midX = rs.midX; midY = rs.midY; // source // if( isSegments ){ dispX = startX - rs.segpts[0]; dispY = startY - rs.segpts[1]; } else if( isMultibezier || isCompound || isSelf || isBezier ){ var pts = rs.allpts; var bX = math.qbezierAt( pts[0], pts[2], pts[4], 0.1 ); var bY = math.qbezierAt( pts[1], pts[3], pts[5], 0.1 ); dispX = startX - bX; dispY = startY - bY; } else { dispX = startX - midX; dispY = startY - midY; } rs.srcArrowAngle = math.getAngleFromDisp( dispX, dispY ); // mid target // var midX = rs.midX; var midY = rs.midY; if( isHaystack ){ midX = ( startX + endX ) / 2; midY = ( startY + endY ) / 2; } dispX = endX - startX; dispY = endY - startY; if( isSegments ){ var pts = rs.allpts; if( pts.length / 2 % 2 === 0 ){ var i2 = pts.length / 2; var i1 = i2 - 2; dispX = ( pts[ i2 ] - pts[ i1 ] ); dispY = ( pts[ i2 + 1] - pts[ i1 + 1] ); } else if( rs.isRound ){ dispX = rs.midVector[1]; dispY = -rs.midVector[0]; } else { var i2 = pts.length / 2 - 1; var i1 = i2 - 2; dispX = ( pts[ i2 ] - pts[ i1 ] ); dispY = ( pts[ i2 + 1] - pts[ i1 + 1] ); } } else if( isMultibezier || isCompound || isSelf ){ var pts = rs.allpts; var cpts = rs.ctrlpts; var bp0x, bp0y; var bp1x, bp1y; if( cpts.length / 2 % 2 === 0 ){ var p0 = pts.length / 2 - 1; // startpt var ic = p0 + 2; var p1 = ic + 2; bp0x = math.qbezierAt( pts[ p0 ], pts[ ic ], pts[ p1 ], 0.0 ); bp0y = math.qbezierAt( pts[ p0 + 1], pts[ ic + 1], pts[ p1 + 1], 0.0 ); bp1x = math.qbezierAt( pts[ p0 ], pts[ ic ], pts[ p1 ], 0.0001 ); bp1y = math.qbezierAt( pts[ p0 + 1], pts[ ic + 1], pts[ p1 + 1], 0.0001 ); } else { var ic = pts.length / 2 - 1; // ctrpt var p0 = ic - 2; // startpt var p1 = ic + 2; // endpt bp0x = math.qbezierAt( pts[ p0 ], pts[ ic ], pts[ p1 ], 0.4999 ); bp0y = math.qbezierAt( pts[ p0 + 1], pts[ ic + 1], pts[ p1 + 1], 0.4999 ); bp1x = math.qbezierAt( pts[ p0 ], pts[ ic ], pts[ p1 ], 0.5 ); bp1y = math.qbezierAt( pts[ p0 + 1], pts[ ic + 1], pts[ p1 + 1], 0.5 ); } dispX = ( bp1x - bp0x ); dispY = ( bp1y - bp0y ); } rs.midtgtArrowAngle = math.getAngleFromDisp( dispX, dispY ); rs.midDispX = dispX; rs.midDispY = dispY; // mid source // dispX *= -1; dispY *= -1; if( isSegments ){ var pts = rs.allpts; if( pts.length / 2 % 2 === 0 ){ // already ok } else if( !rs.isRound ){ var i2 = pts.length / 2 - 1; var i3 = i2 + 2; dispX = -( pts[ i3 ] - pts[ i2 ] ); dispY = -( pts[ i3 + 1] - pts[ i2 + 1] ); } } rs.midsrcArrowAngle = math.getAngleFromDisp( dispX, dispY ); // target // if( isSegments ){ dispX = endX - rs.segpts[ rs.segpts.length - 2 ]; dispY = endY - rs.segpts[ rs.segpts.length - 1 ]; } else if( isMultibezier || isCompound || isSelf || isBezier ){ var pts = rs.allpts; var l = pts.length; var bX = math.qbezierAt( pts[l-6], pts[l-4], pts[l-2], 0.9 ); var bY = math.qbezierAt( pts[l-5], pts[l-3], pts[l-1], 0.9 ); dispX = endX - bX; dispY = endY - bY; } else { dispX = endX - midX; dispY = endY - midY; } rs.tgtArrowAngle = math.getAngleFromDisp( dispX, dispY ); }; BRp.getArrowWidth = BRp.getArrowHeight = function( edgeWidth, scale ){ var cache = this.arrowWidthCache = this.arrowWidthCache || {}; var cachedVal = cache[ edgeWidth + ', ' + scale ]; if( cachedVal ){ return cachedVal; } cachedVal = Math.max( Math.pow( edgeWidth * 13.37, 0.9 ), 29 ) * scale; cache[ edgeWidth + ', ' + scale ] = cachedVal; return cachedVal; }; export default BRp; ================================================ FILE: src/extensions/renderer/base/coord-ele-math/edge-control-points.mjs ================================================ import * as math from '../../../../math.mjs'; import * as is from '../../../../is.mjs'; import * as util from '../../../../util/index.mjs'; import Map from '../../../../map.mjs'; import {getRoundCorner} from "../../../../round.mjs"; import {endsWith} from "../../../../util/index.mjs"; const AVOID_IMPOSSIBLE_BEZIER_CONSTANT = 0.01; const AVOID_IMPOSSIBLE_BEZIER_CONSTANT_L = Math.sqrt(2 * AVOID_IMPOSSIBLE_BEZIER_CONSTANT); let BRp = {}; BRp.findMidptPtsEtc = function(edge, pairInfo) { let { posPts, intersectionPts, vectorNormInverse } = pairInfo; let midptPts; // n.b. assumes all edges in bezier bundle have same endpoints specified let srcManEndpt = edge.pstyle('source-endpoint'); let tgtManEndpt = edge.pstyle('target-endpoint'); const haveManualEndPts = srcManEndpt.units != null && tgtManEndpt.units != null; const recalcVectorNormInverse = (x1, y1, x2, y2) => { let dy = ( y2 - y1 ); let dx = ( x2 - x1 ); let l = Math.sqrt( dx * dx + dy * dy ); return { x: -dy / l, y: dx / l }; }; const edgeDistances = edge.pstyle('edge-distances').value; switch(edgeDistances) { case 'node-position': midptPts = posPts; break; case 'intersection': midptPts = intersectionPts; break; case 'endpoints': { if (haveManualEndPts) { const [x1, y1] = this.manualEndptToPx( edge.source()[0], srcManEndpt ); const [x2, y2] = this.manualEndptToPx( edge.target()[0], tgtManEndpt ); const endPts = { x1, y1, x2, y2 }; vectorNormInverse = recalcVectorNormInverse(x1, y1, x2, y2); midptPts = endPts; } else { util.warn(`Edge ${edge.id()} has edge-distances:endpoints specified without manual endpoints specified via source-endpoint and target-endpoint. Falling back on edge-distances:intersection (default).`); midptPts = intersectionPts; // back to default } break; } } return { midptPts, vectorNormInverse }; }; BRp.findHaystackPoints = function( edges ){ for( let i = 0; i < edges.length; i++ ){ let edge = edges[i]; let _p = edge._private; let rs = _p.rscratch; if( !rs.haystack ){ let angle = Math.random() * 2 * Math.PI; rs.source = { x: Math.cos( angle ), y: Math.sin( angle ) }; angle = Math.random() * 2 * Math.PI; rs.target = { x: Math.cos( angle ), y: Math.sin( angle ) }; } let src = _p.source; let tgt = _p.target; let srcPos = src.position(); let tgtPos = tgt.position(); let srcW = src.width(); let tgtW = tgt.width(); let srcH = src.height(); let tgtH = tgt.height(); let radius = edge.pstyle('haystack-radius').value; let halfRadius = radius / 2; // b/c have to half width/height rs.haystackPts = rs.allpts = [ rs.source.x * srcW * halfRadius + srcPos.x, rs.source.y * srcH * halfRadius + srcPos.y, rs.target.x * tgtW * halfRadius + tgtPos.x, rs.target.y * tgtH * halfRadius + tgtPos.y ]; rs.midX = (rs.allpts[0] + rs.allpts[2]) / 2; rs.midY = (rs.allpts[1] + rs.allpts[3]) / 2; // always override as haystack in case set to different type previously rs.edgeType = 'haystack'; rs.haystack = true; this.storeEdgeProjections( edge ); this.calculateArrowAngles( edge ); this.recalculateEdgeLabelProjections( edge ); this.calculateLabelAngles( edge ); } }; BRp.findSegmentsPoints = function( edge, pairInfo ){ // Segments (multiple straight lines) const rs = edge._private.rscratch; const segmentWs = edge.pstyle( 'segment-weights' ); const segmentDs = edge.pstyle( 'segment-distances' ); const segmentRs = edge.pstyle( 'segment-radii' ); const segmentTs = edge.pstyle( 'radius-type' ); const segmentsN = Math.min( segmentWs.pfValue.length, segmentDs.pfValue.length ); const lastRadius = segmentRs.pfValue[ segmentRs.pfValue.length - 1 ]; const lastRadiusType = segmentTs.pfValue[ segmentTs.pfValue.length - 1 ]; rs.edgeType = 'segments'; rs.segpts = []; rs.radii = []; rs.isArcRadius = []; for( let s = 0; s < segmentsN; s++ ){ let w = segmentWs.pfValue[ s ]; let d = segmentDs.pfValue[ s ]; let w1 = 1 - w; let w2 = w; let { midptPts, vectorNormInverse } = this.findMidptPtsEtc(edge, pairInfo); let adjustedMidpt = { x: midptPts.x1 * w1 + midptPts.x2 * w2, y: midptPts.y1 * w1 + midptPts.y2 * w2 }; rs.segpts.push( adjustedMidpt.x + vectorNormInverse.x * d, adjustedMidpt.y + vectorNormInverse.y * d ); rs.radii.push( segmentRs.pfValue[ s ] !== undefined ? segmentRs.pfValue[ s ] : lastRadius ); rs.isArcRadius.push( (segmentTs.pfValue[ s ] !== undefined ? segmentTs.pfValue[ s ] : lastRadiusType) === 'arc-radius' ); } }; BRp.findLoopPoints = function( edge, pairInfo, i, edgeIsUnbundled ){ // Self-edge const rs = edge._private.rscratch; const { dirCounts, srcPos } = pairInfo; const ctrlptDists = edge.pstyle( 'control-point-distances' ); const ctrlptDist = ctrlptDists ? ctrlptDists.pfValue[0] : undefined; const loopDir = edge.pstyle('loop-direction').pfValue; const loopSwp = edge.pstyle('loop-sweep').pfValue; const stepSize = edge.pstyle( 'control-point-step-size' ).pfValue; rs.edgeType = 'self'; let j = i; let loopDist = stepSize; if( edgeIsUnbundled ){ j = 0; loopDist = ctrlptDist; } let loopAngle = loopDir - Math.PI / 2; let outAngle = loopAngle - loopSwp / 2; let inAngle = loopAngle + loopSwp / 2; // increase by step size for overlapping loops, keyed on direction and sweep values let dc = String(loopDir + '_' + loopSwp); j = dirCounts[dc] === undefined ? dirCounts[dc] = 0 : ++dirCounts[dc]; rs.ctrlpts = [ srcPos.x + Math.cos(outAngle) * 1.4 * loopDist * (j / 3 + 1), srcPos.y + Math.sin(outAngle) * 1.4 * loopDist * (j / 3 + 1), srcPos.x + Math.cos(inAngle) * 1.4 * loopDist * (j / 3 + 1), srcPos.y + Math.sin(inAngle) * 1.4 * loopDist * (j / 3 + 1) ]; }; BRp.findCompoundLoopPoints = function( edge, pairInfo, i, edgeIsUnbundled ){ // Compound edge const rs = edge._private.rscratch; rs.edgeType = 'compound'; const { srcPos, tgtPos, srcW, srcH, tgtW, tgtH } = pairInfo; const stepSize = edge.pstyle('control-point-step-size').pfValue; const ctrlptDists = edge.pstyle('control-point-distances'); const ctrlptDist = ctrlptDists ? ctrlptDists.pfValue[0] : undefined; let j = i; let loopDist = stepSize; if( edgeIsUnbundled ){ j = 0; loopDist = ctrlptDist; } let loopW = 50; let loopaPos = { x: srcPos.x - srcW / 2, y: srcPos.y - srcH / 2 }; let loopbPos = { x: tgtPos.x - tgtW / 2, y: tgtPos.y - tgtH / 2 }; let loopPos = { x: Math.min( loopaPos.x, loopbPos.x ), y: Math.min( loopaPos.y, loopbPos.y ) }; // avoids cases with impossible beziers let minCompoundStretch = 0.5; let compoundStretchA = Math.max( minCompoundStretch, Math.log( srcW * AVOID_IMPOSSIBLE_BEZIER_CONSTANT ) ); let compoundStretchB = Math.max( minCompoundStretch, Math.log( tgtW * AVOID_IMPOSSIBLE_BEZIER_CONSTANT ) ); rs.ctrlpts = [ loopPos.x, loopPos.y - (1 + Math.pow( loopW, 1.12 ) / 100) * loopDist * (j / 3 + 1) * compoundStretchA, loopPos.x - (1 + Math.pow( loopW, 1.12 ) / 100) * loopDist * (j / 3 + 1) * compoundStretchB, loopPos.y ]; }; BRp.findStraightEdgePoints = function( edge ){ // Straight edge within bundle edge._private.rscratch.edgeType = 'straight'; }; BRp.findBezierPoints = function( edge, pairInfo, i, edgeIsUnbundled, edgeIsSwapped ){ const rs = edge._private.rscratch; const stepSize = edge.pstyle('control-point-step-size').pfValue; const ctrlptDists = edge.pstyle('control-point-distances'); const ctrlptWs = edge.pstyle('control-point-weights'); const bezierN = ctrlptDists && ctrlptWs ? Math.min( ctrlptDists.value.length, ctrlptWs.value.length ) : 1; let ctrlptDist = ctrlptDists ? ctrlptDists.pfValue[0] : undefined; let ctrlptWeight = ctrlptWs.value[0]; // (Multi)bezier const multi = edgeIsUnbundled; rs.edgeType = multi ? 'multibezier' : 'bezier'; rs.ctrlpts = []; for( let b = 0; b < bezierN; b++ ){ let normctrlptDist = (0.5 - pairInfo.eles.length / 2 + i) * stepSize * (edgeIsSwapped ? -1 : 1); let manctrlptDist; let sign = math.signum( normctrlptDist ); if( multi ){ ctrlptDist = ctrlptDists ? ctrlptDists.pfValue[ b ] : stepSize; // fall back on step size ctrlptWeight = ctrlptWs.value[ b ]; } if( edgeIsUnbundled ){ // multi or single unbundled manctrlptDist = ctrlptDist; } else { manctrlptDist = ctrlptDist !== undefined ? sign * ctrlptDist : undefined; } let distanceFromMidpoint = manctrlptDist !== undefined ? manctrlptDist : normctrlptDist; let w1 = 1 - ctrlptWeight; let w2 = ctrlptWeight; let { midptPts, vectorNormInverse } = this.findMidptPtsEtc(edge, pairInfo); let adjustedMidpt = { x: midptPts.x1 * w1 + midptPts.x2 * w2, y: midptPts.y1 * w1 + midptPts.y2 * w2 }; rs.ctrlpts.push( adjustedMidpt.x + vectorNormInverse.x * distanceFromMidpoint, adjustedMidpt.y + vectorNormInverse.y * distanceFromMidpoint ); } }; BRp.findTaxiPoints = function( edge, pairInfo ){ // Taxicab geometry with two turns maximum const rs = edge._private.rscratch; rs.edgeType = 'segments'; const VERTICAL = 'vertical'; const HORIZONTAL = 'horizontal'; const LEFTWARD = 'leftward'; const RIGHTWARD = 'rightward'; const DOWNWARD = 'downward'; const UPWARD = 'upward'; const AUTO = 'auto'; const { posPts, srcW, srcH, tgtW, tgtH } = pairInfo; const edgeDistances = edge.pstyle('edge-distances').value; const dIncludesNodeBody = edgeDistances !== 'node-position'; let taxiDir = edge.pstyle('taxi-direction').value; let rawTaxiDir = taxiDir; // unprocessed value const taxiTurn = edge.pstyle('taxi-turn'); const turnIsPercent = taxiTurn.units === '%'; const taxiTurnPfVal = taxiTurn.pfValue; const turnIsNegative = taxiTurnPfVal < 0; // i.e. from target side let minD = edge.pstyle('taxi-turn-min-distance').pfValue; const dw = (dIncludesNodeBody ? (srcW + tgtW)/2 : 0); const dh = (dIncludesNodeBody ? (srcH + tgtH)/2 : 0); const pdx = posPts.x2 - posPts.x1; const pdy = posPts.y2 - posPts.y1; // take away the effective w/h from the magnitude of the delta value const subDWH = (dxy, dwh) => { if( dxy > 0 ){ return Math.max(dxy - dwh, 0); } else { return Math.min(dxy + dwh, 0); } }; const dx = subDWH(pdx, dw); const dy = subDWH(pdy, dh); let isExplicitDir = false; if( rawTaxiDir === AUTO ){ taxiDir = Math.abs(dx) > Math.abs(dy) ? HORIZONTAL : VERTICAL; } else if( rawTaxiDir === UPWARD || rawTaxiDir === DOWNWARD ){ taxiDir = VERTICAL; isExplicitDir = true; } else if( rawTaxiDir === LEFTWARD || rawTaxiDir === RIGHTWARD ){ taxiDir = HORIZONTAL; isExplicitDir = true; } const isVert = taxiDir === VERTICAL; let l = isVert ? dy : dx; let pl = isVert ? pdy : pdx; let sgnL = math.signum(pl); let forcedDir = false; if( !(isExplicitDir && (turnIsPercent || turnIsNegative)) // forcing in this case would cause weird growing in the opposite direction && ( (rawTaxiDir === DOWNWARD && pl < 0) || (rawTaxiDir === UPWARD && pl > 0) || (rawTaxiDir === LEFTWARD && pl > 0) || (rawTaxiDir === RIGHTWARD && pl < 0) ) ){ sgnL *= -1; l = sgnL * Math.abs(l); forcedDir = true; } let d; if( turnIsPercent ){ const p = taxiTurnPfVal < 0 ? (1 + taxiTurnPfVal) : (taxiTurnPfVal); d = p * l; } else { const k = taxiTurnPfVal < 0 ? (l) : (0); d = k + taxiTurnPfVal * sgnL; } const getIsTooClose = d => Math.abs(d) < minD || Math.abs(d) >= Math.abs(l); const isTooCloseSrc = getIsTooClose(d); const isTooCloseTgt = getIsTooClose(Math.abs(l) - Math.abs(d)); const isTooClose = isTooCloseSrc || isTooCloseTgt; if( isTooClose && !forcedDir ){ // non-ideal routing if( isVert ){ // vertical fallbacks const lShapeInsideSrc = Math.abs(pl) <= srcH/2; const lShapeInsideTgt = Math.abs(pdx) <= tgtW/2; if( lShapeInsideSrc ){ // horizontal Z-shape (direction not respected) let x = (posPts.x1 + posPts.x2)/2; let { y1, y2 } = posPts; rs.segpts = [ x, y1, x, y2 ]; } else if( lShapeInsideTgt ){ // vertical Z-shape (distance not respected) let y = (posPts.y1 + posPts.y2)/2; let { x1, x2 } = posPts; rs.segpts = [ x1, y, x2, y ]; } else { // L-shape fallback (turn distance not respected, but works well with tree siblings) rs.segpts = [ posPts.x1, posPts.y2 ]; } } else { // horizontal fallbacks const lShapeInsideSrc = Math.abs(pl) <= srcW/2; const lShapeInsideTgt = Math.abs(pdy) <= tgtH/2; if( lShapeInsideSrc ){ // vertical Z-shape (direction not respected) let y = (posPts.y1 + posPts.y2)/2; let { x1, x2 } = posPts; rs.segpts = [ x1, y, x2, y ]; } else if( lShapeInsideTgt ){ // horizontal Z-shape (turn distance not respected) let x = (posPts.x1 + posPts.x2)/2; let { y1, y2 } = posPts; rs.segpts = [ x, y1, x, y2 ]; } else { // L-shape (turn distance not respected, but works well for tree siblings) rs.segpts = [ posPts.x2, posPts.y1 ]; } } } else { // ideal routing if( isVert ){ let y = posPts.y1 + d + (dIncludesNodeBody ? srcH/2 * sgnL : 0); let { x1, x2 } = posPts; rs.segpts = [ x1, y, x2, y ]; } else { // horizontal let x = posPts.x1 + d + (dIncludesNodeBody ? srcW/2 * sgnL : 0); let { y1, y2 } = posPts; rs.segpts = [ x, y1, x, y2 ]; } } if (rs.isRound) { const radius = edge.pstyle( 'taxi-radius' ).value; const isArcRadius = edge.pstyle( 'radius-type' ).value[0] === 'arc-radius'; rs.radii = new Array( rs.segpts.length / 2 ).fill( radius ); rs.isArcRadius = new Array( rs.segpts.length / 2 ).fill( isArcRadius ); } }; BRp.tryToCorrectInvalidPoints = function( edge, pairInfo ){ const rs = edge._private.rscratch; // can only correct beziers for now... if( rs.edgeType === 'bezier' ){ const { srcPos, tgtPos, srcW, srcH, tgtW, tgtH, srcShape, tgtShape, srcCornerRadius, tgtCornerRadius, srcRs, tgtRs } = pairInfo; let badStart = !is.number( rs.startX ) || !is.number( rs.startY ); let badAStart = !is.number( rs.arrowStartX ) || !is.number( rs.arrowStartY ); let badEnd = !is.number( rs.endX ) || !is.number( rs.endY ); let badAEnd = !is.number( rs.arrowEndX ) || !is.number( rs.arrowEndY ); let minCpADistFactor = 3; let arrowW = this.getArrowWidth( edge.pstyle( 'width' ).pfValue, edge.pstyle( 'arrow-scale' ).value ) * this.arrowShapeWidth; let minCpADist = minCpADistFactor * arrowW; let startACpDist = math.dist( { x: rs.ctrlpts[0], y: rs.ctrlpts[1] }, { x: rs.startX, y: rs.startY } ); let closeStartACp = startACpDist < minCpADist; let endACpDist = math.dist( { x: rs.ctrlpts[0], y: rs.ctrlpts[1] }, { x: rs.endX, y: rs.endY } ); let closeEndACp = endACpDist < minCpADist; let overlapping = false; if( badStart || badAStart || closeStartACp ){ overlapping = true; // project control point along line from src centre to outside the src shape // (otherwise intersection will yield nothing) let cpD = { // delta x: rs.ctrlpts[0] - srcPos.x, y: rs.ctrlpts[1] - srcPos.y }; let cpL = Math.sqrt( cpD.x * cpD.x + cpD.y * cpD.y ); // length of line let cpM = { // normalised delta x: cpD.x / cpL, y: cpD.y / cpL }; let radius = Math.max( srcW, srcH ); let cpProj = { // *2 radius guarantees outside shape x: rs.ctrlpts[0] + cpM.x * 2 * radius, y: rs.ctrlpts[1] + cpM.y * 2 * radius }; let srcCtrlPtIntn = srcShape.intersectLine( srcPos.x, srcPos.y, srcW, srcH, cpProj.x, cpProj.y, 0, srcCornerRadius, srcRs ); if( closeStartACp ){ rs.ctrlpts[0] = rs.ctrlpts[0] + cpM.x * (minCpADist - startACpDist); rs.ctrlpts[1] = rs.ctrlpts[1] + cpM.y * (minCpADist - startACpDist); } else { rs.ctrlpts[0] = srcCtrlPtIntn[0] + cpM.x * minCpADist; rs.ctrlpts[1] = srcCtrlPtIntn[1] + cpM.y * minCpADist; } } if( badEnd || badAEnd || closeEndACp ){ overlapping = true; // project control point along line from tgt centre to outside the tgt shape // (otherwise intersection will yield nothing) let cpD = { // delta x: rs.ctrlpts[0] - tgtPos.x, y: rs.ctrlpts[1] - tgtPos.y }; let cpL = Math.sqrt( cpD.x * cpD.x + cpD.y * cpD.y ); // length of line let cpM = { // normalised delta x: cpD.x / cpL, y: cpD.y / cpL }; let radius = Math.max( srcW, srcH ); let cpProj = { // *2 radius guarantees outside shape x: rs.ctrlpts[0] + cpM.x * 2 * radius, y: rs.ctrlpts[1] + cpM.y * 2 * radius }; let tgtCtrlPtIntn = tgtShape.intersectLine( tgtPos.x, tgtPos.y, tgtW, tgtH, cpProj.x, cpProj.y, 0, tgtCornerRadius, tgtRs ); if( closeEndACp ){ rs.ctrlpts[0] = rs.ctrlpts[0] + cpM.x * (minCpADist - endACpDist); rs.ctrlpts[1] = rs.ctrlpts[1] + cpM.y * (minCpADist - endACpDist); } else { rs.ctrlpts[0] = tgtCtrlPtIntn[0] + cpM.x * minCpADist; rs.ctrlpts[1] = tgtCtrlPtIntn[1] + cpM.y * minCpADist; } } if( overlapping ){ // recalc endpts this.findEndpoints( edge ); } } }; BRp.storeAllpts = function( edge ){ let rs = edge._private.rscratch; if( rs.edgeType === 'multibezier' || rs.edgeType === 'bezier' || rs.edgeType === 'self' || rs.edgeType === 'compound' ){ rs.allpts = []; rs.allpts.push( rs.startX, rs.startY ); for( let b = 0; b + 1 < rs.ctrlpts.length; b += 2 ){ // ctrl pt itself rs.allpts.push( rs.ctrlpts[ b ], rs.ctrlpts[ b + 1] ); // the midpt between ctrlpts as intermediate destination pts if( b + 3 < rs.ctrlpts.length ){ rs.allpts.push( (rs.ctrlpts[ b ] + rs.ctrlpts[ b + 2]) / 2, (rs.ctrlpts[ b + 1] + rs.ctrlpts[ b + 3]) / 2 ); } } rs.allpts.push( rs.endX, rs.endY ); let m, mt; if( rs.ctrlpts.length / 2 % 2 === 0 ){ m = rs.allpts.length / 2 - 1; rs.midX = rs.allpts[ m ]; rs.midY = rs.allpts[ m + 1]; } else { m = rs.allpts.length / 2 - 3; mt = 0.5; rs.midX = math.qbezierAt( rs.allpts[ m ], rs.allpts[ m + 2], rs.allpts[ m + 4], mt ); rs.midY = math.qbezierAt( rs.allpts[ m + 1], rs.allpts[ m + 3], rs.allpts[ m + 5], mt ); } } else if( rs.edgeType === 'straight' ){ // need to calc these after endpts rs.allpts = [ rs.startX, rs.startY, rs.endX, rs.endY ]; // default midpt for labels etc rs.midX = ( rs.startX + rs.endX + rs.arrowStartX + rs.arrowEndX ) / 4; rs.midY = ( rs.startY + rs.endY + rs.arrowStartY + rs.arrowEndY ) / 4; } else if( rs.edgeType === 'segments' ){ rs.allpts = []; rs.allpts.push( rs.startX, rs.startY ); rs.allpts.push.apply( rs.allpts, rs.segpts ); rs.allpts.push( rs.endX, rs.endY ); if( rs.isRound ){ rs.roundCorners = []; for( let i = 2; i + 3 < rs.allpts.length; i += 2 ){ let radius = rs.radii[ (i / 2) - 1]; let isArcRadius = rs.isArcRadius[ (i / 2) - 1 ]; rs.roundCorners.push( getRoundCorner( {x: rs.allpts[i - 2], y: rs.allpts[i - 1]}, {x: rs.allpts[i], y: rs.allpts[i + 1], radius}, {x: rs.allpts[i + 2], y: rs.allpts[i + 3]}, radius, isArcRadius ) ); } } if( rs.segpts.length % 4 === 0 ){ let i2 = rs.segpts.length / 2; let i1 = i2 - 2; rs.midX = ( rs.segpts[ i1 ] + rs.segpts[ i2 ] ) / 2; rs.midY = ( rs.segpts[ i1 + 1] + rs.segpts[ i2 + 1] ) / 2; } else { let i1 = rs.segpts.length / 2 - 1; if( !rs.isRound ){ rs.midX = rs.segpts[ i1 ]; rs.midY = rs.segpts[ i1 + 1 ]; } else { let point = {x: rs.segpts[i1], y: rs.segpts[i1 + 1]}; const corner = rs.roundCorners[i1 / 2]; if( corner.radius === 0 ){ // On collinear points const nextPoint = {x: rs.segpts[i1 + 2], y: rs.segpts[i1 + 3]}; rs.midX = point.x; rs.midY = point.y; rs.midVector = [point.y - nextPoint.y, nextPoint.x - point.x]; } else { // On rounded points let v = [ point.x - corner.cx, point.y - corner.cy ]; const factor = corner.radius / Math.sqrt(Math.pow(v[0], 2) + Math.pow(v[1], 2)); v = v.map(c => c * factor); rs.midX = corner.cx + v[0]; rs.midY = corner.cy + v[1]; rs.midVector = v; } } } } }; BRp.checkForInvalidEdgeWarning = function( edge ){ let rs = edge[0]._private.rscratch; if( rs.nodesOverlap || (is.number(rs.startX) && is.number(rs.startY) && is.number(rs.endX) && is.number(rs.endY)) ){ rs.loggedErr = false; } else { if( !rs.loggedErr ){ rs.loggedErr = true; util.warn('Edge `' + edge.id() + '` has invalid endpoints and so it is impossible to draw. Adjust your edge style (e.g. control points) accordingly or use an alternative edge type. This is expected behaviour when the source node and the target node overlap.'); } } }; BRp.findEdgeControlPoints = function( edges ){ if( !edges || edges.length === 0 ){ return; } let r = this; let cy = r.cy; let hasCompounds = cy.hasCompoundNodes(); let hashTable = new Map(); let getKey = (pairId, edgeIsUnbundled) => [ ...pairId, edgeIsUnbundled ? 1 : 0 ].join('-'); let pairIds = []; let haystackEdges = []; // create a table of edge (src, tgt) => list of edges between them for( let i = 0; i < edges.length; i++ ){ let edge = edges[i]; let _p = edge._private; let curveStyle = edge.pstyle('curve-style').value; // ignore edges who are not to be displayed // they shouldn't take up space if( edge.removed() || !edge.takesUpSpace() ){ continue; } if( curveStyle === 'haystack' ){ haystackEdges.push( edge ); continue; } let edgeIsUnbundled = curveStyle === 'unbundled-bezier' || endsWith(curveStyle, 'segments') || curveStyle === 'straight' || curveStyle === 'straight-triangle' || endsWith(curveStyle, 'taxi'); let edgeIsBezier = curveStyle === 'unbundled-bezier' || curveStyle === 'bezier'; let src = _p.source; let tgt = _p.target; let srcIndex = src.poolIndex(); let tgtIndex = tgt.poolIndex(); let pairId = [ srcIndex, tgtIndex ].sort(); let key = getKey(pairId, edgeIsUnbundled); let tableEntry = hashTable.get( key ); if( tableEntry == null ){ tableEntry = { eles: [] }; pairIds.push({ pairId, edgeIsUnbundled }); hashTable.set( key, tableEntry ); } tableEntry.eles.push( edge ); if( edgeIsUnbundled ){ tableEntry.hasUnbundled = true; } if( edgeIsBezier ){ tableEntry.hasBezier = true; } } // for each pair (src, tgt), create the ctrl pts // Nested for loop is OK; total number of iterations for both loops = edgeCount for( let p = 0; p < pairIds.length; p++ ){ let { pairId, edgeIsUnbundled } = pairIds[ p ]; let key = getKey(pairId, edgeIsUnbundled); let pairInfo = hashTable.get( key ); let swappedpairInfo; if( !pairInfo.hasUnbundled ){ let pllEdges = pairInfo.eles[0].parallelEdges().filter(e => e.isBundledBezier()); util.clearArray( pairInfo.eles ); pllEdges.forEach( edge => pairInfo.eles.push(edge) ); // for each pair id, the edges should be sorted by index pairInfo.eles.sort( (edge1, edge2) => edge1.poolIndex() - edge2.poolIndex() ); } let firstEdge = pairInfo.eles[0]; let src = firstEdge.source(); let tgt = firstEdge.target(); // make sure src/tgt distinction is consistent w.r.t. pairId if( src.poolIndex() > tgt.poolIndex() ){ let temp = src; src = tgt; tgt = temp; } let srcPos = pairInfo.srcPos = src.position(); let tgtPos = pairInfo.tgtPos = tgt.position(); let srcW = pairInfo.srcW = src.outerWidth(); let srcH = pairInfo.srcH = src.outerHeight(); let tgtW = pairInfo.tgtW = tgt.outerWidth(); let tgtH = pairInfo.tgtH = tgt.outerHeight(); let srcShape = pairInfo.srcShape = r.nodeShapes[ this.getNodeShape( src ) ]; let tgtShape = pairInfo.tgtShape = r.nodeShapes[ this.getNodeShape( tgt ) ]; let srcCornerRadius = pairInfo.srcCornerRadius = src.pstyle('corner-radius').value === 'auto' ? 'auto' : src.pstyle('corner-radius').pfValue; let tgtCornerRadius = pairInfo.tgtCornerRadius = tgt.pstyle('corner-radius').value === 'auto' ? 'auto' : tgt.pstyle('corner-radius').pfValue; let tgtRs = pairInfo.tgtRs = tgt._private.rscratch; let srcRs = pairInfo.srcRs = src._private.rscratch; pairInfo.dirCounts = { 'north': 0, 'west': 0, 'south': 0, 'east': 0, 'northwest': 0, 'southwest': 0, 'northeast': 0, 'southeast': 0 }; for( let i = 0; i < pairInfo.eles.length; i++ ){ const edge = pairInfo.eles[i]; const rs = edge[0]._private.rscratch; const curveStyle = edge.pstyle( 'curve-style' ).value; const edgeIsUnbundled = curveStyle === 'unbundled-bezier' || endsWith(curveStyle, 'segments') || endsWith(curveStyle, 'taxi'); // whether the normalised pair order is the reverse of the edge's src-tgt order const edgeIsSwapped = !src.same(edge.source()); if( !pairInfo.calculatedIntersection && src !== tgt && ( pairInfo.hasBezier || pairInfo.hasUnbundled ) ){ pairInfo.calculatedIntersection = true; // pt outside src shape to calc distance/displacement from src to tgt let srcOutside = srcShape.intersectLine( srcPos.x, srcPos.y, srcW, srcH, tgtPos.x, tgtPos.y, 0, srcCornerRadius, srcRs ); let srcIntn = pairInfo.srcIntn = srcOutside; // pt outside tgt shape to calc distance/displacement from src to tgt let tgtOutside = tgtShape.intersectLine( tgtPos.x, tgtPos.y, tgtW, tgtH, srcPos.x, srcPos.y, 0, tgtCornerRadius, tgtRs ); let tgtIntn = pairInfo.tgtIntn = tgtOutside; let intersectionPts = pairInfo.intersectionPts = { x1: srcOutside[0], x2: tgtOutside[0], y1: srcOutside[1], y2: tgtOutside[1] }; let posPts = pairInfo.posPts = { x1: srcPos.x, x2: tgtPos.x, y1: srcPos.y, y2: tgtPos.y }; let dy = ( tgtOutside[1] - srcOutside[1] ); let dx = ( tgtOutside[0] - srcOutside[0] ); let l = Math.sqrt( (dx * dx) + (dy * dy) ); if (is.number(l) && l >= AVOID_IMPOSSIBLE_BEZIER_CONSTANT_L) { // keep l } else { l = Math.sqrt( Math.max(dx * dx, AVOID_IMPOSSIBLE_BEZIER_CONSTANT) + Math.max(dy * dy, AVOID_IMPOSSIBLE_BEZIER_CONSTANT) ); } let vector = pairInfo.vector = { x: dx, y: dy }; let vectorNorm = pairInfo.vectorNorm = { x: vector.x / l, y: vector.y / l }; let vectorNormInverse = { x: -vectorNorm.y, y: vectorNorm.x }; // if node shapes overlap, then no ctrl pts to draw pairInfo.nodesOverlap = ( !is.number(l) || tgtShape.checkPoint( srcOutside[0], srcOutside[1], 0, tgtW, tgtH, tgtPos.x, tgtPos.y, tgtCornerRadius, tgtRs ) || srcShape.checkPoint( tgtOutside[0], tgtOutside[1], 0, srcW, srcH, srcPos.x, srcPos.y, srcCornerRadius, srcRs ) ); pairInfo.vectorNormInverse = vectorNormInverse; swappedpairInfo = { nodesOverlap: pairInfo.nodesOverlap, dirCounts: pairInfo.dirCounts, calculatedIntersection: true, hasBezier: pairInfo.hasBezier, hasUnbundled: pairInfo.hasUnbundled, eles: pairInfo.eles, srcPos: tgtPos, srcRs: tgtRs, tgtPos: srcPos, tgtRs: srcRs, srcW: tgtW, srcH: tgtH, tgtW: srcW, tgtH: srcH, srcIntn: tgtIntn, tgtIntn: srcIntn, srcShape: tgtShape, tgtShape: srcShape, posPts: { x1: posPts.x2, y1: posPts.y2, x2: posPts.x1, y2: posPts.y1 }, intersectionPts: { x1: intersectionPts.x2, y1: intersectionPts.y2, x2: intersectionPts.x1, y2: intersectionPts.y1 }, vector: { x: -vector.x, y: -vector.y }, vectorNorm: { x: -vectorNorm.x, y: -vectorNorm.y }, vectorNormInverse: { x: -vectorNormInverse.x, y: -vectorNormInverse.y } }; } const passedPairInfo = edgeIsSwapped ? swappedpairInfo : pairInfo; rs.nodesOverlap = passedPairInfo.nodesOverlap; rs.srcIntn = passedPairInfo.srcIntn; rs.tgtIntn = passedPairInfo.tgtIntn; rs.isRound = curveStyle.startsWith('round'); if( hasCompounds && ( src.isParent() || src.isChild() || tgt.isParent() || tgt.isChild() ) && ( src.parents().anySame(tgt) || tgt.parents().anySame(src) || (src.same(tgt) && src.isParent()) ) ){ this.findCompoundLoopPoints(edge, passedPairInfo, i, edgeIsUnbundled); } else if( src === tgt ){ this.findLoopPoints(edge, passedPairInfo, i, edgeIsUnbundled); } else if( curveStyle.endsWith( 'segments' )){ this.findSegmentsPoints(edge, passedPairInfo); } else if( curveStyle.endsWith( 'taxi' )){ this.findTaxiPoints(edge, passedPairInfo); } else if( curveStyle === 'straight' || ( !edgeIsUnbundled && pairInfo.eles.length % 2 === 1 && i === Math.floor( pairInfo.eles.length / 2 ) ) ){ this.findStraightEdgePoints(edge); } else { this.findBezierPoints(edge, passedPairInfo, i, edgeIsUnbundled, edgeIsSwapped); } this.findEndpoints( edge ); this.tryToCorrectInvalidPoints( edge, passedPairInfo ); this.checkForInvalidEdgeWarning( edge ); this.storeAllpts( edge ); this.storeEdgeProjections( edge ); this.calculateArrowAngles( edge ); this.recalculateEdgeLabelProjections( edge ); this.calculateLabelAngles( edge ); } // for pair edges } // for pair ids // haystacks avoid the expense of pairInfo stuff (intersections etc.) this.findHaystackPoints( haystackEdges ); }; function getPts( pts ){ let retPts = []; if( pts == null ){ return; } for( let i = 0; i < pts.length; i += 2 ){ let x = pts[i]; let y = pts[i+1]; retPts.push({ x, y }); } return retPts; } BRp.getSegmentPoints = function( edge ){ let rs = edge[0]._private.rscratch; this.recalculateRenderedStyle( edge ); let type = rs.edgeType; if( type === 'segments' ){ return getPts( rs.segpts ); } }; BRp.getControlPoints = function( edge ){ let rs = edge[0]._private.rscratch; this.recalculateRenderedStyle( edge ); let type = rs.edgeType; if( type === 'bezier' || type === 'multibezier' || type === 'self' || type === 'compound' ){ return getPts( rs.ctrlpts ); } }; BRp.getEdgeMidpoint = function( edge ){ let rs = edge[0]._private.rscratch; this.recalculateRenderedStyle( edge ); return { x: rs.midX, y: rs.midY }; }; export default BRp; ================================================ FILE: src/extensions/renderer/base/coord-ele-math/edge-endpoints.mjs ================================================ import * as math from '../../../../math.mjs'; import * as is from '../../../../is.mjs'; import {endsWith} from "../../../../util/index.mjs"; let BRp = {}; BRp.manualEndptToPx = function( node, prop ){ let r = this; let npos = node.position(); let w = node.outerWidth(); let h = node.outerHeight(); let rs = node._private.rscratch; if( prop.value.length === 2 ){ let p = [ prop.pfValue[0], prop.pfValue[1] ]; if( prop.units[0] === '%' ){ p[0] = p[0] * w; } if( prop.units[1] === '%' ){ p[1] = p[1] * h; } p[0] += npos.x; p[1] += npos.y; return p; } else { let angle = prop.pfValue[0]; angle = -Math.PI / 2 + angle; // start at 12 o'clock let l = 2 * Math.max( w, h ); let p = [ npos.x + Math.cos( angle ) * l, npos.y + Math.sin( angle ) * l ]; return r.nodeShapes[ this.getNodeShape( node ) ].intersectLine( npos.x, npos.y, w, h, p[0], p[1], 0, node.pstyle('corner-radius').value === 'auto' ? 'auto' : node.pstyle('corner-radius').pfValue, rs ); } }; BRp.findEndpoints = function( edge ){ let r = this; let intersect; let source = edge.source()[0]; let target = edge.target()[0]; let srcPos = source.position(); let tgtPos = target.position(); let tgtArShape = edge.pstyle( 'target-arrow-shape' ).value; let srcArShape = edge.pstyle( 'source-arrow-shape' ).value; let tgtDist = edge.pstyle( 'target-distance-from-node' ).pfValue; let srcDist = edge.pstyle( 'source-distance-from-node' ).pfValue; let srcRs = source._private.rscratch; let tgtRs = target._private.rscratch; let curveStyle = edge.pstyle('curve-style').value; let rs = edge._private.rscratch; let et = rs.edgeType; let taxi = endsWith(curveStyle, 'taxi'); // Covers taxi and round-taxi let self = et === 'self' || et === 'compound'; let bezier = et === 'bezier' || et === 'multibezier' || self; let multi = et !== 'bezier'; let lines = et === 'straight' || et === 'segments'; let segments = et === 'segments'; let hasEndpts = bezier || multi || lines; let overrideEndpts = self || taxi; let srcManEndpt = edge.pstyle('source-endpoint'); let srcManEndptVal = overrideEndpts ? 'outside-to-node' : srcManEndpt.value; let srcCornerRadius = source.pstyle('corner-radius').value === 'auto' ? 'auto' : source.pstyle('corner-radius').pfValue; let tgtManEndpt = edge.pstyle('target-endpoint'); let tgtManEndptVal = overrideEndpts ? 'outside-to-node' : tgtManEndpt.value; let tgtCornerRadius = target.pstyle('corner-radius').value === 'auto' ? 'auto' : target.pstyle('corner-radius').pfValue; rs.srcManEndpt = srcManEndpt; rs.tgtManEndpt = tgtManEndpt; let p1; // last known point of edge on target side let p2; // last known point of edge on source side let p1_i; // point to intersect with target shape let p2_i; // point to intersect with source shape let tgtManEndptPt = (tgtManEndpt?.pfValue?.length === 2 ? tgtManEndpt.pfValue : null) ?? [0, 0]; let srcManEndptPt = (srcManEndpt?.pfValue?.length === 2 ? srcManEndpt.pfValue : null) ?? [0, 0]; if( bezier ){ let cpStart = [ rs.ctrlpts[0], rs.ctrlpts[1] ]; let cpEnd = multi ? [ rs.ctrlpts[ rs.ctrlpts.length - 2], rs.ctrlpts[ rs.ctrlpts.length - 1] ] : cpStart; p1 = cpEnd; p2 = cpStart; } else if( lines ){ let srcArrowFromPt = !segments ? [ tgtPos.x + tgtManEndptPt[0], tgtPos.y + tgtManEndptPt[1] ] : rs.segpts.slice( 0, 2 ); let tgtArrowFromPt = !segments ? [ srcPos.x + srcManEndptPt[0], srcPos.y + srcManEndptPt[1] ] : rs.segpts.slice( rs.segpts.length - 2 ); p1 = tgtArrowFromPt; p2 = srcArrowFromPt; } if( tgtManEndptVal === 'inside-to-node' ){ intersect = [ tgtPos.x, tgtPos.y ]; } else if( tgtManEndpt.units ){ intersect = this.manualEndptToPx( target, tgtManEndpt ); } else if( tgtManEndptVal === 'outside-to-line' ){ intersect = rs.tgtIntn; // use cached value from ctrlpt calc } else { if( tgtManEndptVal === 'outside-to-node' || tgtManEndptVal === 'outside-to-node-or-label' ){ p1_i = p1; } else if( tgtManEndptVal === 'outside-to-line' || tgtManEndptVal === 'outside-to-line-or-label' ){ p1_i = [ srcPos.x, srcPos.y ]; } intersect = r.nodeShapes[ this.getNodeShape( target ) ].intersectLine( tgtPos.x, tgtPos.y, target.outerWidth(), target.outerHeight(), p1_i[0], p1_i[1], 0, tgtCornerRadius, tgtRs ); if( tgtManEndptVal === 'outside-to-node-or-label' || tgtManEndptVal === 'outside-to-line-or-label' ){ let trs = target._private.rscratch; let lw = trs.labelWidth; let lh = trs.labelHeight; let lx = trs.labelX; let ly = trs.labelY; let lw2 = lw/2; let lh2 = lh/2; let va = target.pstyle('text-valign').value; if( va === 'top' ){ ly -= lh2; } else if( va === 'bottom' ){ ly += lh2; } let ha = target.pstyle('text-halign').value; if( ha === 'left' ){ lx -= lw2; } else if( ha === 'right' ){ lx += lw2; } let labelIntersect = math.polygonIntersectLine(p1_i[0], p1_i[1], [ lx - lw2, ly - lh2, lx + lw2, ly - lh2, lx + lw2, ly + lh2, lx - lw2, ly + lh2 ], tgtPos.x, tgtPos.y); if( labelIntersect.length > 0 ){ let refPt = srcPos; let intSqdist = math.sqdist( refPt, math.array2point(intersect) ); let labIntSqdist = math.sqdist( refPt, math.array2point(labelIntersect) ); let minSqDist = intSqdist; if( labIntSqdist < intSqdist ){ intersect = labelIntersect; minSqDist = labIntSqdist; } if( labelIntersect.length > 2 ){ let labInt2SqDist = math.sqdist( refPt, { x: labelIntersect[2], y: labelIntersect[3] } ); if( labInt2SqDist < minSqDist ){ intersect = [ labelIntersect[2], labelIntersect[3] ]; } } } } } let arrowEnd = math.shortenIntersection( intersect, p1, r.arrowShapes[ tgtArShape ].spacing( edge ) + tgtDist ); let edgeEnd = math.shortenIntersection( intersect, p1, r.arrowShapes[ tgtArShape ].gap( edge ) + tgtDist ); rs.endX = edgeEnd[0]; rs.endY = edgeEnd[1]; rs.arrowEndX = arrowEnd[0]; rs.arrowEndY = arrowEnd[1]; if( srcManEndptVal === 'inside-to-node' ){ intersect = [ srcPos.x, srcPos.y ]; } else if( srcManEndpt.units ){ intersect = this.manualEndptToPx( source, srcManEndpt ); } else if( srcManEndptVal === 'outside-to-line' ){ intersect = rs.srcIntn; // use cached value from ctrlpt calc } else { if( srcManEndptVal === 'outside-to-node' || srcManEndptVal === 'outside-to-node-or-label' ){ p2_i = p2; } else if( srcManEndptVal === 'outside-to-line' || srcManEndptVal === 'outside-to-line-or-label' ){ p2_i = [ tgtPos.x, tgtPos.y ]; } intersect = r.nodeShapes[ this.getNodeShape( source ) ].intersectLine( srcPos.x, srcPos.y, source.outerWidth(), source.outerHeight(), p2_i[0], p2_i[1], 0, srcCornerRadius, srcRs ); if( srcManEndptVal === 'outside-to-node-or-label' || srcManEndptVal === 'outside-to-line-or-label' ){ let srs = source._private.rscratch; let lw = srs.labelWidth; let lh = srs.labelHeight; let lx = srs.labelX; let ly = srs.labelY; let lw2 = lw/2; let lh2 = lh/2; let va = source.pstyle('text-valign').value; if( va === 'top' ){ ly -= lh2; } else if( va === 'bottom' ){ ly += lh2; } let ha = source.pstyle('text-halign').value; if( ha === 'left' ){ lx -= lw2; } else if( ha === 'right' ){ lx += lw2; } let labelIntersect = math.polygonIntersectLine(p2_i[0], p2_i[1], [ lx - lw2, ly - lh2, lx + lw2, ly - lh2, lx + lw2, ly + lh2, lx - lw2, ly + lh2 ], srcPos.x, srcPos.y); if( labelIntersect.length > 0 ){ let refPt = tgtPos; let intSqdist = math.sqdist( refPt, math.array2point(intersect) ); let labIntSqdist = math.sqdist( refPt, math.array2point(labelIntersect) ); let minSqDist = intSqdist; if( labIntSqdist < intSqdist ){ intersect = [ labelIntersect[0], labelIntersect[1] ]; minSqDist = labIntSqdist; } if( labelIntersect.length > 2 ){ let labInt2SqDist = math.sqdist( refPt, { x: labelIntersect[2], y: labelIntersect[3] } ); if( labInt2SqDist < minSqDist ){ intersect = [ labelIntersect[2], labelIntersect[3] ]; } } } } } let arrowStart = math.shortenIntersection( intersect, p2, r.arrowShapes[ srcArShape ].spacing( edge ) + srcDist ); let edgeStart = math.shortenIntersection( intersect, p2, r.arrowShapes[ srcArShape ].gap( edge ) + srcDist ); rs.startX = edgeStart[0]; rs.startY = edgeStart[1]; rs.arrowStartX = arrowStart[0]; rs.arrowStartY = arrowStart[1]; if( hasEndpts ){ if( !is.number( rs.startX ) || !is.number( rs.startY ) || !is.number( rs.endX ) || !is.number( rs.endY ) ){ rs.badLine = true; } else { rs.badLine = false; } } }; BRp.getSourceEndpoint = function( edge ){ let rs = edge[0]._private.rscratch; this.recalculateRenderedStyle( edge ); switch( rs.edgeType ){ case 'haystack': return { x: rs.haystackPts[0], y: rs.haystackPts[1] }; default: return { x: rs.arrowStartX, y: rs.arrowStartY }; } }; BRp.getTargetEndpoint = function( edge ){ let rs = edge[0]._private.rscratch; this.recalculateRenderedStyle( edge ); switch( rs.edgeType ){ case 'haystack': return { x: rs.haystackPts[2], y: rs.haystackPts[3] }; default: return { x: rs.arrowEndX, y: rs.arrowEndY }; } }; export default BRp; ================================================ FILE: src/extensions/renderer/base/coord-ele-math/edge-projection.mjs ================================================ import * as math from '../../../../math.mjs'; var BRp = {}; function pushBezierPts( r, edge, pts ){ var qbezierAt = function( p1, p2, p3, t ){ return math.qbezierAt( p1, p2, p3, t ); }; var _p = edge._private; var bpts = _p.rstyle.bezierPts; for( var i = 0; i < r.bezierProjPcts.length; i++ ){ var p = r.bezierProjPcts[i]; bpts.push( { x: qbezierAt( pts[0], pts[2], pts[4], p ), y: qbezierAt( pts[1], pts[3], pts[5], p ) } ); } } BRp.storeEdgeProjections = function( edge ){ var _p = edge._private; var rs = _p.rscratch; var et = rs.edgeType; // clear the cached points state _p.rstyle.bezierPts = null; _p.rstyle.linePts = null; _p.rstyle.haystackPts = null; if( et === 'multibezier' || et === 'bezier' || et === 'self' || et === 'compound' ){ _p.rstyle.bezierPts = []; for( var i = 0; i + 5 < rs.allpts.length; i += 4 ){ pushBezierPts( this, edge, rs.allpts.slice( i, i + 6 ) ); } } else if( et === 'segments' ){ var lpts = _p.rstyle.linePts = []; for( var i = 0; i + 1 < rs.allpts.length; i += 2 ){ lpts.push( { x: rs.allpts[ i ], y: rs.allpts[ i + 1] } ); } } else if( et === 'haystack' ){ var hpts = rs.haystackPts; _p.rstyle.haystackPts = [ { x: hpts[0], y: hpts[1] }, { x: hpts[2], y: hpts[3] } ]; } _p.rstyle.arrowWidth = this.getArrowWidth( edge.pstyle('width').pfValue, edge.pstyle( 'arrow-scale' ).value ) * this.arrowShapeWidth; }; BRp.recalculateEdgeProjections = function( edges ){ this.findEdgeControlPoints( edges ); }; export default BRp; ================================================ FILE: src/extensions/renderer/base/coord-ele-math/index.mjs ================================================ import * as util from '../../../../util/index.mjs'; import coords from './coords.mjs'; import edgeArrows from './edge-arrows.mjs'; import edgeControlPoints from './edge-control-points.mjs'; import edgeEndpoints from './edge-endpoints.mjs'; import edgeProjection from './edge-projection.mjs'; import labels from './labels.mjs'; import nodes from './nodes.mjs'; import renderedStyle from './rendered-style.mjs'; import zOrdering from './z-ordering.mjs'; var BRp = {}; [ coords, edgeArrows, edgeControlPoints, edgeEndpoints, edgeProjection, labels, nodes, renderedStyle, zOrdering ].forEach(function( props ){ util.extend( BRp, props ); }); export default BRp; ================================================ FILE: src/extensions/renderer/base/coord-ele-math/labels.mjs ================================================ import * as math from '../../../../math.mjs'; import * as is from '../../../../is.mjs'; import * as util from '../../../../util/index.mjs'; let BRp = {}; BRp.recalculateNodeLabelProjection = function( node ){ let content = node.pstyle( 'label' ).strValue; if( is.emptyString(content) ){ return; } let textX, textY; let _p = node._private; let nodeWidth = node.width(); let nodeHeight = node.height(); let padding = node.padding(); let nodePos = node.position(); let textHalign = node.pstyle( 'text-halign' ).strValue; let textValign = node.pstyle( 'text-valign' ).strValue; let rs = _p.rscratch; let rstyle = _p.rstyle; switch( textHalign ){ case 'left': textX = nodePos.x - nodeWidth / 2 - padding; break; case 'right': textX = nodePos.x + nodeWidth / 2 + padding; break; default: // e.g. center textX = nodePos.x; } switch( textValign ){ case 'top': textY = nodePos.y - nodeHeight / 2 - padding; break; case 'bottom': textY = nodePos.y + nodeHeight / 2 + padding; break; default: // e.g. middle textY = nodePos.y; } rs.labelX = textX; rs.labelY = textY; rstyle.labelX = textX; rstyle.labelY = textY; this.calculateLabelAngles( node ); this.applyLabelDimensions( node ); }; let lineAngleFromDelta = function( dx, dy ){ let angle = Math.atan( dy / dx ); if( dx === 0 && angle < 0 ){ angle = angle * -1; } return angle; }; let lineAngle = function( p0, p1 ){ let dx = p1.x - p0.x; let dy = p1.y - p0.y; return lineAngleFromDelta( dx, dy ); }; let bezierAngle = function( p0, p1, p2, t ){ let t0 = math.bound( 0, t - 0.001, 1 ); let t1 = math.bound( 0, t + 0.001, 1 ); let lp0 = math.qbezierPtAt( p0, p1, p2, t0 ); let lp1 = math.qbezierPtAt( p0, p1, p2, t1 ); return lineAngle( lp0, lp1 ); }; BRp.recalculateEdgeLabelProjections = function( edge ){ let p; let _p = edge._private; let rs = _p.rscratch; let r = this; let content = { mid: edge.pstyle('label').strValue, source: edge.pstyle('source-label').strValue, target: edge.pstyle('target-label').strValue }; if( content.mid || content.source || content.target ){ // then we have to calculate... } else { return; // no labels => no calcs } // add center point to style so bounding box calculations can use it // p = { x: rs.midX, y: rs.midY }; let setRs = function( propName, prefix, value ){ util.setPrefixedProperty( _p.rscratch, propName, prefix, value ); util.setPrefixedProperty( _p.rstyle, propName, prefix, value ); }; setRs( 'labelX', null, p.x ); setRs( 'labelY', null, p.y ); let midAngle = lineAngleFromDelta(rs.midDispX, rs.midDispY); setRs( 'labelAutoAngle', null, midAngle ); let createControlPointInfo = function(){ if( createControlPointInfo.cache ){ return createControlPointInfo.cache; } // use cache so only 1x per edge let ctrlpts = []; // store each ctrlpt info init for( let i = 0; i + 5 < rs.allpts.length; i += 4 ){ let p0 = { x: rs.allpts[i], y: rs.allpts[i+1] }; let p1 = { x: rs.allpts[i+2], y: rs.allpts[i+3] }; // ctrlpt let p2 = { x: rs.allpts[i+4], y: rs.allpts[i+5] }; ctrlpts.push({ p0: p0, p1: p1, p2: p2, startDist: 0, length: 0, segments: [] }); } let bpts = _p.rstyle.bezierPts; let nProjs = r.bezierProjPcts.length; function addSegment( cp, p0, p1, t0, t1 ){ let length = math.dist( p0, p1 ); let prevSegment = cp.segments[ cp.segments.length - 1 ]; let segment = { p0: p0, p1: p1, t0: t0, t1: t1, startDist: prevSegment ? prevSegment.startDist + prevSegment.length : 0, length: length }; cp.segments.push( segment ); cp.length += length; } // update each ctrlpt with segment info for( let i = 0; i < ctrlpts.length; i++ ){ let cp = ctrlpts[i]; let prevCp = ctrlpts[i - 1]; if( prevCp ){ cp.startDist = prevCp.startDist + prevCp.length; } addSegment( cp, cp.p0, bpts[ i * nProjs ], 0, r.bezierProjPcts[ 0 ] ); // first for( let j = 0; j < nProjs - 1; j++ ){ addSegment( cp, bpts[ i * nProjs + j ], bpts[ i * nProjs + j + 1 ], r.bezierProjPcts[ j ], r.bezierProjPcts[ j + 1 ] ); } addSegment( cp, bpts[ i * nProjs + nProjs - 1 ], cp.p2, r.bezierProjPcts[ nProjs - 1 ], 1 ); // last } return ( createControlPointInfo.cache = ctrlpts ); }; let calculateEndProjection = function( prefix ){ let angle; let isSrc = prefix === 'source'; if( !content[ prefix ] ){ return; } let offset = edge.pstyle(prefix+'-text-offset').pfValue; switch( rs.edgeType ){ case 'self': case 'compound': case 'bezier': case 'multibezier': { let cps = createControlPointInfo(); let selected; let startDist = 0; let totalDist = 0; // find the segment we're on for( let i = 0; i < cps.length; i++ ){ let cp = cps[ isSrc ? i : cps.length - 1 - i ]; for( let j = 0; j < cp.segments.length; j++ ){ let seg = cp.segments[ isSrc ? j : cp.segments.length - 1 - j ]; let lastSeg = i === cps.length - 1 && j === cp.segments.length - 1; startDist = totalDist; totalDist += seg.length; if( totalDist >= offset || lastSeg ){ selected = { cp: cp, segment: seg }; break; } } if( selected ){ break; } } let cp = selected.cp; let seg = selected.segment; let tSegment = ( offset - startDist ) / ( seg.length ); let segDt = seg.t1 - seg.t0; let t = isSrc ? seg.t0 + segDt * tSegment : seg.t1 - segDt * tSegment; t = math.bound( 0, t, 1 ); p = math.qbezierPtAt( cp.p0, cp.p1, cp.p2, t ); angle = bezierAngle( cp.p0, cp.p1, cp.p2, t, p ); break; } case 'straight': case 'segments': case 'haystack': { let d = 0, di, d0; let p0, p1; let l = rs.allpts.length; for( let i = 0; i + 3 < l; i += 2 ){ if( isSrc ){ p0 = { x: rs.allpts[i], y: rs.allpts[i+1] }; p1 = { x: rs.allpts[i+2], y: rs.allpts[i+3] }; } else { p0 = { x: rs.allpts[l-2-i], y: rs.allpts[l-1-i] }; p1 = { x: rs.allpts[l-4-i], y: rs.allpts[l-3-i] }; } di = math.dist( p0, p1 ); d0 = d; d += di; if( d >= offset ){ break; } } let pD = offset - d0; let t = pD / di; t = math.bound( 0, t, 1 ); p = math.lineAt( p0, p1, t ); angle = lineAngle( p0, p1 ); break; } } setRs( 'labelX', prefix, p.x ); setRs( 'labelY', prefix, p.y ); setRs( 'labelAutoAngle', prefix, angle ); }; calculateEndProjection( 'source' ); calculateEndProjection( 'target' ); this.applyLabelDimensions( edge ); }; BRp.applyLabelDimensions = function( ele ){ this.applyPrefixedLabelDimensions( ele ); if( ele.isEdge() ){ this.applyPrefixedLabelDimensions( ele, 'source' ); this.applyPrefixedLabelDimensions( ele, 'target' ); } }; BRp.applyPrefixedLabelDimensions = function( ele, prefix ){ let _p = ele._private; let text = this.getLabelText( ele, prefix ); let cacheKey = util.hashString( text, ele._private.labelDimsKey ); // save recalc if the label is the same as before if( util.getPrefixedProperty( _p.rscratch, 'prefixedLabelDimsKey', prefix ) === cacheKey ){ return; // then the label dimensions + text are the same } // save the key util.setPrefixedProperty( _p.rscratch, 'prefixedLabelDimsKey', prefix, cacheKey ); let labelDims = this.calculateLabelDimensions( ele, text ); let lineHeight = ele.pstyle('line-height').pfValue; let textWrap = ele.pstyle('text-wrap').strValue; let lines = util.getPrefixedProperty( _p.rscratch, 'labelWrapCachedLines', prefix ) || []; let numLines = textWrap !== 'wrap' ? 1 : Math.max(lines.length, 1); let normPerLineHeight = labelDims.height / numLines; let labelLineHeight = normPerLineHeight * lineHeight; let width = labelDims.width; let height = labelDims.height + (numLines - 1) * (lineHeight - 1) * normPerLineHeight; util.setPrefixedProperty( _p.rstyle, 'labelWidth', prefix, width ); util.setPrefixedProperty( _p.rscratch, 'labelWidth', prefix, width ); util.setPrefixedProperty( _p.rstyle, 'labelHeight', prefix, height ); util.setPrefixedProperty( _p.rscratch, 'labelHeight', prefix, height ); util.setPrefixedProperty( _p.rscratch, 'labelLineHeight', prefix, labelLineHeight ); }; BRp.getLabelText = function( ele, prefix ){ let _p = ele._private; let pfd = prefix ? prefix + '-' : ''; let text = ele.pstyle( pfd + 'label' ).strValue; let textTransform = ele.pstyle( 'text-transform' ).value; let rscratch = function( propName, value ){ if( value ){ util.setPrefixedProperty( _p.rscratch, propName, prefix, value ); return value; } else { return util.getPrefixedProperty( _p.rscratch, propName, prefix ); } }; // for empty text, skip all processing if( !text ){ return ''; } if( textTransform == 'none' ){ // passthrough } else if( textTransform == 'uppercase' ){ text = text.toUpperCase(); } else if( textTransform == 'lowercase' ){ text = text.toLowerCase(); } let wrapStyle = ele.pstyle( 'text-wrap' ).value; if( wrapStyle === 'wrap' ){ let labelKey = rscratch( 'labelKey' ); // save recalc if the label is the same as before if( labelKey != null && rscratch( 'labelWrapKey' ) === labelKey ){ return rscratch( 'labelWrapCachedText' ); } let zwsp = '\u200b'; let lines = text.split('\n'); let maxW = ele.pstyle('text-max-width').pfValue; let overflow = ele.pstyle('text-overflow-wrap').value; let overflowAny = overflow === 'anywhere'; let wrappedLines = []; let separatorRegex = /[\s\u200b]+|$/g; // Include end of string to add last word for( let l = 0; l < lines.length; l++ ){ let line = lines[ l ]; let lineDims = this.calculateLabelDimensions( ele, line ); let lineW = lineDims.width; if( overflowAny ){ let processedLine = line.split('').join(zwsp); line = processedLine; } if( lineW > maxW ){ // line is too long let separatorMatches = line.matchAll(separatorRegex); let subline = ''; let previousIndex = 0; // Add fake match for( let separatorMatch of separatorMatches ){ let wordSeparator = separatorMatch[ 0 ]; let word = line.substring( previousIndex, separatorMatch.index ); previousIndex = separatorMatch.index + wordSeparator.length; let testLine = subline.length === 0 ? word : subline + word + wordSeparator; let testDims = this.calculateLabelDimensions( ele, testLine ); let testW = testDims.width; if( testW <= maxW ){ // word fits on current line subline += word + wordSeparator; } else { // word starts new line if( subline ){ wrappedLines.push( subline ); } subline = word + wordSeparator; } } // if there's remaining text, put it in a wrapped line if( !subline.match( /^[\s\u200b]+$/ ) ){ wrappedLines.push( subline ); } } else { // line is already short enough wrappedLines.push( line ); } } // for rscratch( 'labelWrapCachedLines', wrappedLines ); text = rscratch( 'labelWrapCachedText', wrappedLines.join( '\n' ) ); rscratch( 'labelWrapKey', labelKey ); } else if( wrapStyle === 'ellipsis' ){ let maxW = ele.pstyle( 'text-max-width' ).pfValue; let ellipsized = ''; let ellipsis = '\u2026'; let incLastCh = false; if (this.calculateLabelDimensions(ele, text).width < maxW) { // the label already fits return text; } for( let i = 0; i < text.length; i++ ){ let widthWithNextCh = this.calculateLabelDimensions( ele, ellipsized + text[i] + ellipsis ).width; if( widthWithNextCh > maxW ){ break; } ellipsized += text[i]; if( i === text.length - 1 ){ incLastCh = true; } } if( !incLastCh ){ ellipsized += ellipsis; } return ellipsized; } // if ellipsize return text; }; BRp.getLabelJustification = function(ele){ let justification = ele.pstyle('text-justification').strValue; let textHalign = ele.pstyle('text-halign').strValue; if( justification === 'auto' ){ if( ele.isNode() ){ switch( textHalign ){ case 'left': return 'right'; case 'right': return 'left'; default: return 'center'; } } else { return 'center'; } } else { return justification; } }; BRp.calculateLabelDimensions = function( ele, text ){ let r = this; var containerWindow = r.cy.window(); var document = containerWindow.document; let padding = 0; // add padding around text dims, as the measurement isn't that accurate let fStyle = ele.pstyle('font-style').strValue; let size = ele.pstyle('font-size').pfValue; let family = ele.pstyle('font-family').strValue; let weight = ele.pstyle('font-weight').strValue; let canvas = this.labelCalcCanvas; let c2d = this.labelCalcCanvasContext; if( !canvas ){ canvas = this.labelCalcCanvas = document.createElement('canvas'); c2d = this.labelCalcCanvasContext = canvas.getContext('2d'); let ds = canvas.style; ds.position = 'absolute'; ds.left = '-9999px'; ds.top = '-9999px'; ds.zIndex = '-1'; ds.visibility = 'hidden'; ds.pointerEvents = 'none'; } c2d.font = `${fStyle} ${weight} ${size}px ${family}`; let width = 0; let height = 0; let lines = text.split('\n'); for( let i = 0; i < lines.length; i++ ){ let line = lines[i]; let metrics = c2d.measureText(line); let w = Math.ceil(metrics.width); let h = size; width = Math.max(w, width); height += h; } width += padding; height += padding; return { width, height }; }; BRp.calculateLabelAngle = function( ele, prefix ){ let _p = ele._private; let rs = _p.rscratch; let isEdge = ele.isEdge(); let prefixDash = prefix ? prefix + '-' : ''; let rot = ele.pstyle( prefixDash + 'text-rotation' ); let rotStr = rot.strValue; if( rotStr === 'none' ){ return 0; } else if( isEdge && rotStr === 'autorotate' ){ return rs.labelAutoAngle; } else if( rotStr === 'autorotate' ){ return 0; } else { return rot.pfValue; } }; BRp.calculateLabelAngles = function( ele ){ let r = this; let isEdge = ele.isEdge(); let _p = ele._private; let rs = _p.rscratch; rs.labelAngle = r.calculateLabelAngle(ele); if( isEdge ){ rs.sourceLabelAngle = r.calculateLabelAngle(ele, 'source'); rs.targetLabelAngle = r.calculateLabelAngle(ele, 'target'); } }; export default BRp; ================================================ FILE: src/extensions/renderer/base/coord-ele-math/nodes.mjs ================================================ var BRp = {}; import { warn } from '../../../../util/index.mjs'; const TOO_SMALL_CUT_RECT = 28; let warnedCutRect = false; BRp.getNodeShape = function( node ){ var r = this; var shape = node.pstyle( 'shape' ).value; if( shape === 'cutrectangle' && (node.width() < TOO_SMALL_CUT_RECT || node.height() < TOO_SMALL_CUT_RECT) ){ if( !warnedCutRect ){ warn('The `cutrectangle` node shape can not be used at small sizes so `rectangle` is used instead'); warnedCutRect = true; } return 'rectangle'; } if( node.isParent() ){ if( shape === 'rectangle' || shape === 'roundrectangle' || shape === 'round-rectangle' || shape === 'cutrectangle' || shape === 'cut-rectangle' || shape === 'barrel' ){ return shape; } else { return 'rectangle'; } } if( shape === 'polygon' ){ var points = node.pstyle( 'shape-polygon-points' ).value; return r.nodeShapes.makePolygon( points ).name; } return shape; }; export default BRp; ================================================ FILE: src/extensions/renderer/base/coord-ele-math/rendered-style.mjs ================================================ let BRp = {}; BRp.registerCalculationListeners = function(){ let cy = this.cy; let elesToUpdate = cy.collection(); let r = this; let enqueue = function( eles, dirtyStyleCaches = true ){ elesToUpdate.merge( eles ); if( dirtyStyleCaches ){ for( let i = 0; i < eles.length; i++ ){ let ele = eles[i]; let _p = ele._private; let rstyle = _p.rstyle; rstyle.clean = false; rstyle.cleanConnected = false; } } }; r.binder( cy ) .on('bounds.* dirty.*', function onDirtyBounds( e ){ let ele = e.target; enqueue( ele ); }) .on('style.* background.*', function onDirtyStyle( e ){ let ele = e.target; enqueue( ele, false ); }) ; let updateEleCalcs = function( willDraw ){ if( willDraw ){ let fns = r.onUpdateEleCalcsFns; // because we need to have up-to-date style (e.g. stylesheet mappers) // before calculating rendered style (and pstyle might not be called yet) elesToUpdate.cleanStyle(); for( let i = 0; i < elesToUpdate.length; i++ ){ let ele = elesToUpdate[i]; let rstyle = ele._private.rstyle; if( ele.isNode() && !rstyle.cleanConnected ){ enqueue( ele.connectedEdges() ); rstyle.cleanConnected = true; } } if( fns ){ for( let i = 0; i < fns.length; i++ ){ let fn = fns[i]; fn( willDraw, elesToUpdate ); } } r.recalculateRenderedStyle( elesToUpdate ); elesToUpdate = cy.collection(); } }; r.flushRenderedStyleQueue = function(){ updateEleCalcs(true); }; r.beforeRender( updateEleCalcs, r.beforeRenderPriorities.eleCalcs ); }; BRp.onUpdateEleCalcs = function( fn ){ let fns = this.onUpdateEleCalcsFns = this.onUpdateEleCalcsFns || []; fns.push( fn ); }; BRp.recalculateRenderedStyle = function( eles, useCache ){ let isCleanConnected = ele => ele._private.rstyle.cleanConnected; if (eles.length === 0) { return; } let edges = []; let nodes = []; // the renderer can't be used for calcs when destroyed, e.g. ele.boundingBox() if( this.destroyed ){ return; } // use cache by default for perf if( useCache === undefined ){ useCache = true; } for( let i = 0; i < eles.length; i++ ){ let ele = eles[ i ]; let _p = ele._private; let rstyle = _p.rstyle; // an edge may be implicitly dirty b/c of one of its connected nodes // (and a request for recalc may come in between frames) if( ele.isEdge() && (!isCleanConnected(ele.source()) || !isCleanConnected(ele.target())) ){ rstyle.clean = false; } if (ele.isEdge() && ele.isBundledBezier()) { if (ele.parallelEdges().some(ele => !ele._private.rstyle.clean && ele.isBundledBezier())) { rstyle.clean = false; } } // only update if dirty and in graph if( (useCache && rstyle.clean) || ele.removed() ){ continue; } // only update if not display: none if( ele.pstyle('display').value === 'none' ){ continue; } if( _p.group === 'nodes' ){ nodes.push( ele ); } else { // edges edges.push( ele ); } rstyle.clean = true; } // update node data from projections for( let i = 0; i < nodes.length; i++ ){ let ele = nodes[i]; let _p = ele._private; let rstyle = _p.rstyle; let pos = ele.position(); this.recalculateNodeLabelProjection( ele ); rstyle.nodeX = pos.x; rstyle.nodeY = pos.y; rstyle.nodeW = ele.pstyle( 'width' ).pfValue; rstyle.nodeH = ele.pstyle( 'height' ).pfValue; } this.recalculateEdgeProjections( edges ); // update edge data from projections for( let i = 0; i < edges.length; i++ ){ let ele = edges[ i ]; let _p = ele._private; let rstyle = _p.rstyle; let rs = _p.rscratch; // update rstyle positions rstyle.srcX = rs.arrowStartX; rstyle.srcY = rs.arrowStartY; rstyle.tgtX = rs.arrowEndX; rstyle.tgtY = rs.arrowEndY; rstyle.midX = rs.midX; rstyle.midY = rs.midY; rstyle.labelAngle = rs.labelAngle; rstyle.sourceLabelAngle = rs.sourceLabelAngle; rstyle.targetLabelAngle = rs.targetLabelAngle; } }; export default BRp; ================================================ FILE: src/extensions/renderer/base/coord-ele-math/z-ordering.mjs ================================================ import zIndexSort from '../../../../collection/zsort.mjs'; var BRp = {}; BRp.updateCachedGrabbedEles = function(){ var eles = this.cachedZSortedEles; if( !eles ){ // just let this be recalculated on the next z sort tick return; } eles.drag = []; eles.nondrag = []; var grabTargets = []; for( var i = 0; i < eles.length; i++ ){ var ele = eles[i]; var rs = ele._private.rscratch; if( ele.grabbed() && !ele.isParent() ){ grabTargets.push( ele ); } else if( rs.inDragLayer ){ eles.drag.push( ele ); } else { eles.nondrag.push( ele ); } } // put the grab target nodes last so it's on top of its neighbourhood for( var i = 0; i < grabTargets.length; i++ ){ var ele = grabTargets[i]; eles.drag.push( ele ); } }; BRp.invalidateCachedZSortedEles = function(){ this.cachedZSortedEles = null; }; BRp.getCachedZSortedEles = function( forceRecalc ){ if( forceRecalc || !this.cachedZSortedEles ){ var eles = this.cy.mutableElements().toArray(); eles.sort( zIndexSort ); eles.interactive = eles.filter(ele => ele.interactive()); this.cachedZSortedEles = eles; this.updateCachedGrabbedEles(); } else { eles = this.cachedZSortedEles; } return eles; }; export default BRp; ================================================ FILE: src/extensions/renderer/base/images.mjs ================================================ var BRp = {}; BRp.getCachedImage = function( url, crossOrigin, onLoad ){ var r = this; var imageCache = r.imageCache = r.imageCache || {}; var cache = imageCache[ url ]; if( cache ){ if( !cache.image.complete ){ cache.image.addEventListener('load', onLoad); } return cache.image; } else { cache = imageCache[ url ] = imageCache[ url ] || {}; var image = cache.image = new Image(); // eslint-disable-line no-undef image.addEventListener('load', onLoad); image.addEventListener('error', function(){ image.error = true; }); // #1582 safari doesn't load data uris with crossOrigin properly // https://bugs.webkit.org/show_bug.cgi?id=123978 var dataUriPrefix = 'data:'; var isDataUri = url.substring( 0, dataUriPrefix.length ).toLowerCase() === dataUriPrefix; if( !isDataUri ){ // if crossorigin is 'null'(stringified), then manually set it to null crossOrigin = crossOrigin === 'null' ? null : crossOrigin; image.crossOrigin = crossOrigin; // prevent tainted canvas } image.src = url; return image; } }; export default BRp; ================================================ FILE: src/extensions/renderer/base/index.mjs ================================================ import * as util from '../../../util/index.mjs'; import * as is from '../../../is.mjs'; import arrowShapes from './arrow-shapes.mjs'; import coordEleMath from './coord-ele-math/index.mjs'; import images from './images.mjs'; import loadListeners from './load-listeners.mjs'; import nodeShapes from './node-shapes.mjs'; import redraw from './redraw.mjs'; var BaseRenderer = function( options ){ this.init( options ); }; var BR = BaseRenderer; var BRp = BR.prototype; BRp.clientFunctions = [ 'redrawHint', 'render', 'renderTo', 'matchCanvasSize', 'nodeShapeImpl', 'arrowShapeImpl' ]; BRp.init = function( options ){ var r = this; r.options = options; r.cy = options.cy; var ctr = r.container = options.cy.container(); var containerWindow = r.cy.window(); // prepend a stylesheet in the head such that if( containerWindow ){ var document = containerWindow.document; var head = document.head; var stylesheetId = '__________cytoscape_stylesheet'; var className = '__________cytoscape_container'; var stylesheetAlreadyExists = document.getElementById( stylesheetId ) != null; if( ctr.className.indexOf( className ) < 0 ){ ctr.className = ( ctr.className || '' ) + ' ' + className; } if( !stylesheetAlreadyExists ){ var stylesheet = document.createElement('style'); stylesheet.id = stylesheetId; stylesheet.textContent = '.'+className+' { position: relative; }'; head.insertBefore( stylesheet, head.children[0] ); // first so lowest priority } var computedStyle = containerWindow.getComputedStyle( ctr ); var position = computedStyle.getPropertyValue('position'); if( position === 'static' ){ util.warn('A Cytoscape container has style position:static and so can not use UI extensions properly'); } } r.selection = [ undefined, undefined, undefined, undefined, 0]; // Coordinates for selection box, plus enabled flag r.bezierProjPcts = [ 0.05, 0.225, 0.4, 0.5, 0.6, 0.775, 0.95 ]; //--Pointer-related data r.hoverData = {down: null, last: null, downTime: null, triggerMode: null, dragging: false, initialPan: [ null, null ], capture: false}; r.dragData = {possibleDragElements: []}; r.touchData = { start: null, capture: false, // These 3 fields related to tap, taphold events startPosition: [ null, null, null, null, null, null ], singleTouchStartTime: null, singleTouchMoved: true, now: [ null, null, null, null, null, null ], earlier: [ null, null, null, null, null, null ] }; r.redraws = 0; r.showFps = options.showFps; r.debug = options.debug; r.webgl = options.webgl; r.hideEdgesOnViewport = options.hideEdgesOnViewport; r.textureOnViewport = options.textureOnViewport; r.wheelSensitivity = options.wheelSensitivity; r.motionBlurEnabled = options.motionBlur; // on by default r.forcedPixelRatio = is.number(options.pixelRatio) ? options.pixelRatio : null; r.motionBlur = options.motionBlur; // for initial kick off r.motionBlurOpacity = options.motionBlurOpacity; r.motionBlurTransparency = 1 - r.motionBlurOpacity; r.motionBlurPxRatio = 1; r.mbPxRBlurry = 1; //0.8; r.minMbLowQualFrames = 4; r.fullQualityMb = false; r.clearedForMotionBlur = []; r.desktopTapThreshold = options.desktopTapThreshold; r.desktopTapThreshold2 = options.desktopTapThreshold * options.desktopTapThreshold; r.touchTapThreshold = options.touchTapThreshold; r.touchTapThreshold2 = options.touchTapThreshold * options.touchTapThreshold; r.tapholdDuration = 500; r.bindings = []; r.beforeRenderCallbacks = []; r.beforeRenderPriorities = { // higher priority execs before lower one animations: 400, eleCalcs: 300, eleTxrDeq: 200, lyrTxrDeq: 150, lyrTxrSkip: 100, }; r.registerNodeShapes(); r.registerArrowShapes(); r.registerCalculationListeners(); }; BRp.notify = function( eventName, eles ) { var r = this; var cy = r.cy; // the renderer can't be notified after it's destroyed if( this.destroyed ){ return; } if( eventName === 'init' ){ r.load(); return; } if( eventName === 'destroy' ){ r.destroy(); return; } if( eventName === 'add' || eventName === 'remove' || (eventName === 'move' && cy.hasCompoundNodes()) || eventName === 'load' || eventName === 'zorder' || eventName === 'mount' ){ r.invalidateCachedZSortedEles(); } if( eventName === 'viewport' ){ r.redrawHint( 'select', true ); } if( eventName === 'gc' ){ r.redrawHint( 'gc', true ); } if( eventName === 'load' || eventName === 'resize' || eventName === 'mount' ){ r.invalidateContainerClientCoordsCache(); r.matchCanvasSize( r.container ); } r.redrawHint( 'eles', true ); r.redrawHint( 'drag', true ); this.startRenderLoop(); this.redraw(); }; BRp.destroy = function(){ var r = this; r.destroyed = true; r.cy.stopAnimationLoop(); for( var i = 0; i < r.bindings.length; i++ ){ var binding = r.bindings[ i ]; var b = binding; var tgt = b.target; ( tgt.off || tgt.removeEventListener ).apply( tgt, b.args ); } r.bindings = []; r.beforeRenderCallbacks = []; r.onUpdateEleCalcsFns = []; if( r.removeObserver ){ r.removeObserver.disconnect(); } if( r.styleObserver ){ r.styleObserver.disconnect(); } if( r.resizeObserver ){ r.resizeObserver.disconnect(); } if( r.labelCalcDiv ){ try { document.body.removeChild( r.labelCalcDiv ); // eslint-disable-line no-undef } catch( e ){ // ie10 issue #1014 } } }; BRp.isHeadless = function(){ return false; }; [ arrowShapes, coordEleMath, images, loadListeners, nodeShapes, redraw ].forEach( function( props ){ util.extend( BRp, props ); } ); export default BR; ================================================ FILE: src/extensions/renderer/base/load-listeners.mjs ================================================ import * as is from '../../../is.mjs'; import * as util from '../../../util/index.mjs'; import * as math from '../../../math.mjs'; var BRp = {}; /* global document, ResizeObserver, MutationObserver */ BRp.registerBinding = function( target, event, handler, useCapture ){ // eslint-disable-line no-unused-vars var args = Array.prototype.slice.apply( arguments, [1] ); // copy if( Array.isArray(target) ){ let res = []; for( var i = 0; i < target.length; i++ ){ let t = target[i]; if( t !== undefined ){ var b = this.binder( t ); res.push( b.on.apply( b, args ) ); } } return res; } var b = this.binder( target ); return b.on.apply( b, args ); }; BRp.binder = function( tgt ){ var r = this; var containerWindow = r.cy.window(); var tgtIsDom = tgt === containerWindow || tgt === containerWindow.document || tgt === containerWindow.document.body || is.domElement( tgt ); if( r.supportsPassiveEvents == null ){ // from https://github.com/WICG/EventListenerOptions/blob/gh-pages/explainer.md#feature-detection var supportsPassive = false; try { var opts = Object.defineProperty( {}, 'passive', { get: function(){ supportsPassive = true; return true; } } ); containerWindow.addEventListener( 'test', null, opts ); } catch( err ){ // not supported } r.supportsPassiveEvents = supportsPassive; } var on = function( event, handler, useCapture ){ var args = Array.prototype.slice.call( arguments ); if( tgtIsDom && r.supportsPassiveEvents ){ // replace useCapture w/ opts obj args[2] = { capture: useCapture != null ? useCapture : false, passive: false, once: false }; } r.bindings.push({ target: tgt, args: args }); ( tgt.addEventListener || tgt.on ).apply( tgt, args ); return this; }; return { on: on, addEventListener: on, addListener: on, bind: on }; }; BRp.nodeIsDraggable = function( node ){ return ( node && node.isNode() && !node.locked() && node.grabbable() ); }; BRp.nodeIsGrabbable = function( node ){ return ( this.nodeIsDraggable( node ) && node.interactive() ); }; BRp.load = function(){ var r = this; var containerWindow = r.cy.window(); var isSelected = ele => ele.selected(); var getShadowRoot = function( element ){ const rootNode = element.getRootNode(); // Check if the root node is a shadow root if ( rootNode && rootNode.nodeType === 11 && rootNode.host !== undefined ) { return rootNode; } }; var triggerEvents = function( target, names, e, position ){ if( target == null ){ target = r.cy; } for( var i = 0; i < names.length; i++ ){ var name = names[ i ]; target.emit({ originalEvent: e, type: name, position }); } }; var isMultSelKeyDown = function( e ){ return e.shiftKey || e.metaKey || e.ctrlKey; // maybe e.altKey }; var allowPanningPassthrough = function( down, downs ){ var allowPassthrough = true; if( r.cy.hasCompoundNodes() && down && down.pannable() ){ // a grabbable compound node below the ele => no passthrough panning for( var i = 0; downs && i < downs.length; i++ ){ var down = downs[i]; //if any parent node in event hierarchy isn't pannable, reject passthrough if( down.isNode() && down.isParent() && !down.pannable() ){ allowPassthrough = false; break; } } } else { allowPassthrough = true; } return allowPassthrough; }; var setGrabbed = function( ele ){ ele[0]._private.grabbed = true; }; var setFreed = function( ele ){ ele[0]._private.grabbed = false; }; var setInDragLayer = function( ele ){ ele[0]._private.rscratch.inDragLayer = true; }; var setOutDragLayer = function( ele ){ ele[0]._private.rscratch.inDragLayer = false; }; var setGrabTarget = function( ele ){ ele[0]._private.rscratch.isGrabTarget = true; }; var removeGrabTarget = function( ele ){ ele[0]._private.rscratch.isGrabTarget = false; }; var addToDragList = function( ele, opts ){ var list = opts.addToList; var listHasEle = list.has(ele); if( !listHasEle && ele.grabbable() && !ele.locked() ){ list.merge( ele ); setGrabbed( ele ); } }; // helper function to determine which child nodes and inner edges // of a compound node to be dragged as well as the grabbed and selected nodes var addDescendantsToDrag = function( node, opts ){ if( !node.cy().hasCompoundNodes() ){ return; } if( opts.inDragLayer == null && opts.addToList == null ){ return; } // nothing to do var innerNodes = node.descendants(); if( opts.inDragLayer ){ innerNodes.forEach( setInDragLayer ); innerNodes.connectedEdges().forEach( setInDragLayer ); } if( opts.addToList ){ addToDragList(innerNodes, opts); } }; // adds the given nodes and its neighbourhood to the drag layer var addNodesToDrag = function( nodes, opts ){ opts = opts || {}; var hasCompoundNodes = nodes.cy().hasCompoundNodes(); if( opts.inDragLayer ){ nodes.forEach( setInDragLayer ); nodes.neighborhood().stdFilter(function( ele ){ return !hasCompoundNodes || ele.isEdge(); }).forEach( setInDragLayer ); } if( opts.addToList ){ nodes.forEach(function( ele ){ addToDragList( ele, opts ); }); } addDescendantsToDrag( nodes, opts ); // always add to drag // also add nodes and edges related to the topmost ancestor updateAncestorsInDragLayer( nodes, { inDragLayer: opts.inDragLayer } ); r.updateCachedGrabbedEles(); }; var addNodeToDrag = addNodesToDrag; var freeDraggedElements = function( grabbedEles ){ if( !grabbedEles ){ return; } // just go over all elements rather than doing a bunch of (possibly expensive) traversals r.getCachedZSortedEles().forEach(function( ele ){ setFreed( ele ); setOutDragLayer( ele ); removeGrabTarget( ele ); }); r.updateCachedGrabbedEles(); }; // helper function to determine which ancestor nodes and edges should go // to the drag layer (or should be removed from drag layer). var updateAncestorsInDragLayer = function( node, opts ){ if( opts.inDragLayer == null && opts.addToList == null ){ return; } // nothing to do if( !node.cy().hasCompoundNodes() ){ return; } // find top-level parent var parent = node.ancestors().orphans(); // no parent node: no nodes to add to the drag layer if( parent.same( node ) ){ return; } var nodes = parent.descendants().spawnSelf() .merge( parent ) .unmerge( node ) .unmerge( node.descendants() ) ; var edges = nodes.connectedEdges(); if( opts.inDragLayer ){ edges.forEach( setInDragLayer ); nodes.forEach( setInDragLayer ); } if( opts.addToList ){ nodes.forEach(function( ele ){ addToDragList( ele, opts ); }); } }; var blurActiveDomElement = function(){ if( document.activeElement != null && document.activeElement.blur != null ){ document.activeElement.blur(); } }; var haveMutationsApi = typeof MutationObserver !== 'undefined'; var haveResizeObserverApi = typeof ResizeObserver !== 'undefined'; // watch for when the cy container is removed from the dom if( haveMutationsApi ){ r.removeObserver = new MutationObserver( function( mutns ){ // eslint-disable-line no-undef for( var i = 0; i < mutns.length; i++ ){ var mutn = mutns[ i ]; var rNodes = mutn.removedNodes; if( rNodes ){ for( var j = 0; j < rNodes.length; j++ ){ var rNode = rNodes[ j ]; if( rNode === r.container ){ r.destroy(); break; } } } } } ); if( r.container.parentNode ){ r.removeObserver.observe( r.container.parentNode, { childList: true } ); } } else { r.registerBinding( r.container, 'DOMNodeRemoved', function( e ){ // eslint-disable-line no-unused-vars r.destroy(); } ); } var onResize = util.debounce( function(){ r.cy.resize(); }, 100 ); if( haveMutationsApi ){ r.styleObserver = new MutationObserver( onResize ); // eslint-disable-line no-undef r.styleObserver.observe( r.container, { attributes: true } ); } // auto resize r.registerBinding( containerWindow, 'resize', onResize ); // eslint-disable-line no-undef if( haveResizeObserverApi ){ r.resizeObserver = new ResizeObserver(onResize); // eslint-disable-line no-undef r.resizeObserver.observe( r.container ); } var forEachUp = function( domEle, fn ){ while( domEle != null ){ fn( domEle ); domEle = domEle.parentNode; } }; var invalidateCoords = function(){ r.invalidateContainerClientCoordsCache(); }; forEachUp( r.container, function( domEle ){ r.registerBinding( domEle, 'transitionend', invalidateCoords ); r.registerBinding( domEle, 'animationend', invalidateCoords ); r.registerBinding( domEle, 'scroll', invalidateCoords ); } ); // stop right click menu from appearing on cy r.registerBinding( r.container, 'contextmenu', function( e ){ e.preventDefault(); } ); var inBoxSelection = function(){ return r.selection[4] !== 0; }; var eventInContainer = function( e ){ // save cycles if mouse events aren't to be captured var containerPageCoords = r.findContainerClientCoords(); var x = containerPageCoords[0]; var y = containerPageCoords[1]; var width = containerPageCoords[2]; var height = containerPageCoords[3]; var positions = e.touches ? e.touches : [ e ]; var atLeastOnePosInside = false; for( var i = 0; i < positions.length; i++ ){ var p = positions[i]; if( x <= p.clientX && p.clientX <= x + width && y <= p.clientY && p.clientY <= y + height ){ atLeastOnePosInside = true; break; } } if( !atLeastOnePosInside ){ return false; } var container = r.container; var target = e.target; var tParent = target.parentNode; var containerIsTarget = false; while( tParent ){ if( tParent === container ){ containerIsTarget = true; break; } tParent = tParent.parentNode; } if( !containerIsTarget ){ return false; } // if target is outisde cy container, then this event is not for us return true; }; // Primary key r.registerBinding( r.container, 'mousedown', function mousedownHandler( e ){ if( !eventInContainer(e) ){ return; } // during left mouse button gestures, ignore other buttons if (r.hoverData.which === 1 && e.which !== 1) { return; } e.preventDefault(); blurActiveDomElement(); r.hoverData.capture = true; r.hoverData.which = e.which; var cy = r.cy; var gpos = [ e.clientX, e.clientY ]; var pos = r.projectIntoViewport( gpos[0], gpos[1] ); var select = r.selection; var nears = r.findNearestElements( pos[0], pos[1], true, false ); var near = nears[0]; var draggedElements = r.dragData.possibleDragElements; r.hoverData.mdownPos = pos; r.hoverData.mdownGPos = gpos; let makeEvent = (type) => ({ originalEvent: e, type: type, position: { x: pos[0], y: pos[1] } }); var checkForTaphold = function(){ r.hoverData.tapholdCancelled = false; clearTimeout( r.hoverData.tapholdTimeout ); r.hoverData.tapholdTimeout = setTimeout( function(){ if( r.hoverData.tapholdCancelled ){ return; } else { var ele = r.hoverData.down; if( ele ){ ele.emit(makeEvent('taphold')); } else { cy.emit(makeEvent('taphold')); } } }, r.tapholdDuration ); }; // Right click button if( e.which == 3 ){ r.hoverData.cxtStarted = true; var cxtEvt = { originalEvent: e, type: 'cxttapstart', position: { x: pos[0], y: pos[1] } }; if( near ){ near.activate(); near.emit( cxtEvt ); r.hoverData.down = near; } else { cy.emit( cxtEvt ); } r.hoverData.downTime = (new Date()).getTime(); r.hoverData.cxtDragged = false; // Primary button } else if( e.which == 1 ){ if( near ){ near.activate(); } // Element dragging { // If something is under the cursor and it is draggable, prepare to grab it if( near != null ){ if( r.nodeIsGrabbable( near ) ){ var triggerGrab = function( ele ){ ele.emit( makeEvent('grab') ); }; setGrabTarget( near ); if( !near.selected() ){ draggedElements = r.dragData.possibleDragElements = cy.collection(); addNodeToDrag( near, { addToList: draggedElements } ); near.emit( makeEvent('grabon') ).emit( makeEvent('grab') ); } else { draggedElements = r.dragData.possibleDragElements = cy.collection(); var selectedNodes = cy.$( function( ele ){ return ele.isNode() && ele.selected() && r.nodeIsGrabbable( ele ); } ); addNodesToDrag( selectedNodes, { addToList: draggedElements } ); near.emit( makeEvent('grabon') ); selectedNodes.forEach( triggerGrab ); } r.redrawHint( 'eles', true ); r.redrawHint( 'drag', true ); } } r.hoverData.down = near; r.hoverData.downs = nears; r.hoverData.downTime = (new Date()).getTime(); } triggerEvents( near, [ 'mousedown', 'tapstart', 'vmousedown' ], e, { x: pos[0], y: pos[1] } ); if( near == null ){ select[4] = 1; r.data.bgActivePosistion = { x: pos[0], y: pos[1] }; r.redrawHint( 'select', true ); r.redraw(); } else if( near.pannable() ){ select[4] = 1; // for future pan } checkForTaphold(); } // Initialize selection box coordinates select[0] = select[2] = pos[0]; select[1] = select[3] = pos[1]; }, false ); var shadowRoot = getShadowRoot( r.container ); r.registerBinding( [ containerWindow, shadowRoot ], 'mousemove', function mousemoveHandler( e ){ // eslint-disable-line no-undef var capture = r.hoverData.capture; if( !capture && !eventInContainer(e) ){ return; } var preventDefault = false; var cy = r.cy; var zoom = cy.zoom(); var gpos = [ e.clientX, e.clientY ]; var pos = r.projectIntoViewport( gpos[0], gpos[1] ); var mdownPos = r.hoverData.mdownPos; var mdownGPos = r.hoverData.mdownGPos; var select = r.selection; var near = null; if( !r.hoverData.draggingEles && !r.hoverData.dragging && !r.hoverData.selecting ){ near = r.findNearestElement( pos[0], pos[1], true, false ); } var last = r.hoverData.last; var down = r.hoverData.down; var disp = [ pos[0] - select[2], pos[1] - select[3] ]; var draggedElements = r.dragData.possibleDragElements; var isOverThresholdDrag; if( mdownGPos ){ var dx = gpos[0] - mdownGPos[0]; var dx2 = dx * dx; var dy = gpos[1] - mdownGPos[1]; var dy2 = dy * dy; var dist2 = dx2 + dy2; r.hoverData.isOverThresholdDrag = isOverThresholdDrag = dist2 >= r.desktopTapThreshold2; } var multSelKeyDown = isMultSelKeyDown( e ); if (isOverThresholdDrag) { r.hoverData.tapholdCancelled = true; } var updateDragDelta = function(){ var dragDelta = r.hoverData.dragDelta = r.hoverData.dragDelta || []; if( dragDelta.length === 0 ){ dragDelta.push( disp[0] ); dragDelta.push( disp[1] ); } else { dragDelta[0] += disp[0]; dragDelta[1] += disp[1]; } }; preventDefault = true; triggerEvents( near, [ 'mousemove', 'vmousemove', 'tapdrag' ], e, { x: pos[0], y: pos[1] } ); let makeEvent = (type) => ({ originalEvent: e, type: type, position: { x: pos[0], y: pos[1] } }); var goIntoBoxMode = function(){ r.data.bgActivePosistion = undefined; if( !r.hoverData.selecting ){ cy.emit(makeEvent('boxstart')); } select[4] = 1; r.hoverData.selecting = true; r.redrawHint( 'select', true ); r.redraw(); }; // trigger context drag if rmouse down if( r.hoverData.which === 3 ){ // but only if over threshold if( isOverThresholdDrag ){ var cxtEvt = makeEvent('cxtdrag'); if( down ){ down.emit( cxtEvt ); } else { cy.emit( cxtEvt ); } r.hoverData.cxtDragged = true; if( !r.hoverData.cxtOver || near !== r.hoverData.cxtOver ){ if( r.hoverData.cxtOver ){ r.hoverData.cxtOver.emit(makeEvent('cxtdragout')); } r.hoverData.cxtOver = near; if( near ){ near.emit(makeEvent('cxtdragover')); } } } // Check if we are drag panning the entire graph } else if( r.hoverData.dragging ){ preventDefault = true; if( cy.panningEnabled() && cy.userPanningEnabled() ){ var deltaP; if( r.hoverData.justStartedPan ){ var mdPos = r.hoverData.mdownPos; deltaP = { x: ( pos[0] - mdPos[0] ) * zoom, y: ( pos[1] - mdPos[1] ) * zoom }; r.hoverData.justStartedPan = false; } else { deltaP = { x: disp[0] * zoom, y: disp[1] * zoom }; } cy.panBy( deltaP ); cy.emit(makeEvent('dragpan')); r.hoverData.dragged = true; } // Needs reproject due to pan changing viewport pos = r.projectIntoViewport( e.clientX, e.clientY ); // Checks primary button down & out of time & mouse not moved much } else if( select[4] == 1 && (down == null || down.pannable()) ){ if( isOverThresholdDrag ){ if( !r.hoverData.dragging && cy.boxSelectionEnabled() && ( multSelKeyDown || !cy.panningEnabled() || !cy.userPanningEnabled() ) ){ goIntoBoxMode(); } else if( !r.hoverData.selecting && cy.panningEnabled() && cy.userPanningEnabled() ){ var allowPassthrough = allowPanningPassthrough( down, r.hoverData.downs ); if( allowPassthrough ){ r.hoverData.dragging = true; r.hoverData.justStartedPan = true; select[4] = 0; r.data.bgActivePosistion = math.array2point( mdownPos ); r.redrawHint( 'select', true ); r.redraw(); } } if( down && down.pannable() && down.active() ){ down.unactivate(); } } } else { if( down && down.pannable() && down.active() ){ down.unactivate(); } if( ( !down || !down.grabbed() ) && near != last ){ if( last ){ triggerEvents( last, [ 'mouseout', 'tapdragout' ], e, { x: pos[0], y: pos[1] } ); } if( near ){ triggerEvents( near, [ 'mouseover', 'tapdragover' ], e, { x: pos[0], y: pos[1] } ); } r.hoverData.last = near; } if( down ){ if( isOverThresholdDrag ){ // then we can take action if( cy.boxSelectionEnabled() && multSelKeyDown ){ // then selection overrides if( down && down.grabbed() ){ freeDraggedElements( draggedElements ); down.emit(makeEvent('freeon')); draggedElements.emit(makeEvent('free')); if( r.dragData.didDrag ){ down.emit(makeEvent('dragfreeon')); draggedElements.emit(makeEvent('dragfree')); } } goIntoBoxMode(); } else if( down && down.grabbed() && r.nodeIsDraggable( down ) ){ // drag node var justStartedDrag = !r.dragData.didDrag; if( justStartedDrag ){ r.redrawHint( 'eles', true ); } r.dragData.didDrag = true; // indicate that we actually did drag the node // now, add the elements to the drag layer if not done already if( !r.hoverData.draggingEles ){ addNodesToDrag( draggedElements, { inDragLayer: true } ); } let totalShift = { x: 0, y: 0 }; if( is.number( disp[0] ) && is.number( disp[1] ) ){ totalShift.x += disp[0]; totalShift.y += disp[1]; if( justStartedDrag ){ var dragDelta = r.hoverData.dragDelta; if( dragDelta && is.number( dragDelta[0] ) && is.number( dragDelta[1] ) ){ totalShift.x += dragDelta[0]; totalShift.y += dragDelta[1]; } } } r.hoverData.draggingEles = true; ( draggedElements .silentShift( totalShift ) .emit(makeEvent('position')) .emit(makeEvent('drag')) ); r.redrawHint( 'drag', true ); r.redraw(); } } else { // otherwise save drag delta for when we actually start dragging so the relative grab pos is constant updateDragDelta(); } } // prevent the dragging from triggering text selection on the page preventDefault = true; } select[2] = pos[0]; select[3] = pos[1]; if( preventDefault ){ if( e.stopPropagation ) e.stopPropagation(); if( e.preventDefault ) e.preventDefault(); return false; } }, false ); let clickTimeout, didDoubleClick, prevClickTimeStamp; r.registerBinding( containerWindow, 'mouseup', function mouseupHandler( e ){ // eslint-disable-line no-undef // during left mouse button gestures, ignore other buttons if (r.hoverData.which === 1 && e.which !== 1 && r.hoverData.capture) { return; } var capture = r.hoverData.capture; if( !capture ){ return; } r.hoverData.capture = false; var cy = r.cy; var pos = r.projectIntoViewport( e.clientX, e.clientY ); var select = r.selection; var near = r.findNearestElement( pos[0], pos[1], true, false ); var draggedElements = r.dragData.possibleDragElements; var down = r.hoverData.down; var multSelKeyDown = isMultSelKeyDown( e ); if( r.data.bgActivePosistion ){ r.redrawHint( 'select', true ); r.redraw(); } r.hoverData.tapholdCancelled = true; r.data.bgActivePosistion = undefined; // not active bg now if( down ){ down.unactivate(); } let makeEvent = (type) => ({ originalEvent: e, type: type, position: { x: pos[0], y: pos[1] } }); if( r.hoverData.which === 3 ){ var cxtEvt = (makeEvent('cxttapend')); if( down ){ down.emit( cxtEvt ); } else { cy.emit( cxtEvt ); } if( !r.hoverData.cxtDragged ){ var cxtTap = makeEvent('cxttap'); if( down ){ down.emit( cxtTap ); } else { cy.emit( cxtTap ); } } r.hoverData.cxtDragged = false; r.hoverData.which = null; } else if( r.hoverData.which === 1 ){ triggerEvents( near, [ 'mouseup', 'tapend', 'vmouseup' ], e, { x: pos[0], y: pos[1] } ); if ( !r.dragData.didDrag && // didn't move a node around !r.hoverData.dragged && // didn't pan !r.hoverData.selecting && // not box selection !r.hoverData.isOverThresholdDrag // didn't move too much ) { triggerEvents(down, ["click", "tap", "vclick"], e, { x: pos[0], y: pos[1] }); didDoubleClick = false; if (e.timeStamp - prevClickTimeStamp <= cy.multiClickDebounceTime()) { clickTimeout && clearTimeout(clickTimeout); didDoubleClick = true; prevClickTimeStamp = null; triggerEvents(down, ["dblclick", "dbltap", "vdblclick"], e, { x: pos[0], y: pos[1] }); } else { clickTimeout = setTimeout(() => { if (didDoubleClick) return; triggerEvents(down, ["oneclick", "onetap", "voneclick"], e, { x: pos[0], y: pos[1] }); }, cy.multiClickDebounceTime()); prevClickTimeStamp = e.timeStamp; } } // Deselect all elements if nothing is currently under the mouse cursor and we aren't dragging something if( (down == null) // not mousedown on node && !r.dragData.didDrag // didn't move the node around && !r.hoverData.selecting // not box selection && !r.hoverData.dragged // didn't pan && !isMultSelKeyDown( e ) ){ cy.$(isSelected).unselect(['tapunselect']); if( draggedElements.length > 0 ){ r.redrawHint( 'eles', true ); } r.dragData.possibleDragElements = draggedElements = cy.collection(); } // Single selection if( near == down && !r.dragData.didDrag && !r.hoverData.selecting ){ if( near != null && near._private.selectable ){ if( r.hoverData.dragging ){ // if panning, don't change selection state } else if( cy.selectionType() === 'additive' || multSelKeyDown ){ if( near.selected() ){ near.unselect(['tapunselect']); } else { near.select(['tapselect']); } } else { if( !multSelKeyDown ){ cy.$(isSelected).unmerge( near ).unselect(['tapunselect']); near.select(['tapselect']); } } r.redrawHint( 'eles', true ); } } if( r.hoverData.selecting ){ var box = cy.collection( r.getAllInBox( select[0], select[1], select[2], select[3] ) ); r.redrawHint( 'select', true ); if( box.length > 0 ){ r.redrawHint( 'eles', true ); } cy.emit(makeEvent('boxend')); var eleWouldBeSelected = function( ele ){ return ele.selectable() && !ele.selected(); }; if( cy.selectionType() === 'additive' ){ box .emit(makeEvent('box')) .stdFilter( eleWouldBeSelected ) .select() .emit(makeEvent('boxselect')) ; } else { if( !multSelKeyDown ){ cy.$(isSelected).unmerge(box).unselect(); } box .emit(makeEvent('box')) .stdFilter( eleWouldBeSelected ) .select() .emit(makeEvent('boxselect')) ; } // always need redraw in case eles unselectable r.redraw(); } // Cancel drag pan if( r.hoverData.dragging ){ r.hoverData.dragging = false; r.redrawHint( 'select', true ); r.redrawHint( 'eles', true ); r.redraw(); } if( !select[4] ) { r.redrawHint('drag', true); r.redrawHint('eles', true); var downWasGrabbed = down && down.grabbed(); freeDraggedElements( draggedElements ); if( downWasGrabbed ){ down.emit(makeEvent('freeon')); draggedElements.emit(makeEvent('free')); if( r.dragData.didDrag ){ down.emit(makeEvent('dragfreeon')); draggedElements.emit(makeEvent('dragfree')); } } } } // else not right mouse select[4] = 0; r.hoverData.down = null; r.hoverData.cxtStarted = false; r.hoverData.draggingEles = false; r.hoverData.selecting = false; r.hoverData.isOverThresholdDrag = false; r.dragData.didDrag = false; r.hoverData.dragged = false; r.hoverData.dragDelta = []; r.hoverData.mdownPos = null; r.hoverData.mdownGPos = null; r.hoverData.which = null; }, false ); var wheelDeltas = []; // log of first N wheel deltas var wheelDeltaN = 4; // how many events to log var inaccurateScrollDevice; var inaccurateScrollFactor = 100000; // base of inaccurate wheel deltas (e.g. base 5 could yield wheels of 10, 25, 50, etc.) var allAreDivisibleBy = function( list, factor ){ for( var i = 0; i < list.length; i++ ){ if( list[i] % factor !== 0 ){ return false; } } return true; } var allAreSameMagnitude = function(list) { var firstMag = Math.abs(list[0]); for (var i = 1; i < list.length; i++) { if (Math.abs(list[i]) !== firstMag) { return false; } } return true; } var wheelHandler = function( e ){ var clamp = false; var delta = e.deltaY; if (delta == null) { // compatibility with old browsers if (e.wheelDeltaY != null) { delta = e.wheelDeltaY / 4; } else if (e.wheelDelta != null) { delta = e.wheelDelta / 4; } } if (delta === 0) { return; // no change in zoom (Bug: Zoom becomes erratic on rapid scroll due to deltaY: 0 event #3394) } if (inaccurateScrollDevice == null) { if (wheelDeltas.length >= wheelDeltaN) { // use log to determine if inaccurate var wds = wheelDeltas; inaccurateScrollDevice = allAreDivisibleBy(wds, 5); if (!inaccurateScrollDevice) { // check for all large values of exact same magnitude var firstMag = Math.abs(wds[0]); inaccurateScrollDevice = allAreSameMagnitude(wds) && firstMag > 5; } if (inaccurateScrollDevice) { for (var i = 0; i < wds.length; i++) { inaccurateScrollFactor = Math.min(Math.abs(wds[i]), inaccurateScrollFactor); } } // console.log('Sampled wheel deltas:', wds); // console.log('inaccurateScrollDevice:', inaccurateScrollDevice); // console.log('inaccurateScrollFactor:', inaccurateScrollFactor); } else { // clamp and log until we reach N wheelDeltas.push(delta); clamp = true; // console.log('Clamping initial wheel events until we get a good sample'); } } else if(inaccurateScrollDevice) { // keep updating inaccurateScrollFactor = Math.min(Math.abs(delta), inaccurateScrollFactor); // console.log('Keep updating inaccurateScrollFactor beyond sample in case we did not get the smallest possible val:', inaccurateScrollFactor); } if( r.scrollingPage ){ return; } // while scrolling, ignore wheel-to-zoom var cy = r.cy; var zoom = cy.zoom(); var pan = cy.pan(); var pos = r.projectIntoViewport( e.clientX, e.clientY ); var rpos = [ pos[0] * zoom + pan.x, pos[1] * zoom + pan.y ]; if( r.hoverData.draggingEles || r.hoverData.dragging || r.hoverData.cxtStarted || inBoxSelection() ){ // if pan dragging or cxt dragging, wheel movements make no zoom e.preventDefault(); return; } if( cy.panningEnabled() && cy.userPanningEnabled() && cy.zoomingEnabled() && cy.userZoomingEnabled() ){ e.preventDefault(); r.data.wheelZooming = true; clearTimeout( r.data.wheelTimeout ); r.data.wheelTimeout = setTimeout( function(){ r.data.wheelZooming = false; r.redrawHint( 'eles', true ); r.redraw(); }, 150 ); var diff; if (clamp && Math.abs(delta) > 5) { delta = math.signum(delta) * 5; } diff = delta / -250; if (inaccurateScrollDevice) { diff /= inaccurateScrollFactor; diff *= 3; } diff = diff * r.wheelSensitivity; // console.log(`delta = ${delta}, diff = ${diff}, mode = ${e.deltaMode}`) var needsWheelFix = e.deltaMode === 1; if( needsWheelFix ){ // fixes slow wheel events on ff/linux and ff/windows diff *= 33; } var newZoom = cy.zoom() * Math.pow( 10, diff ); if( e.type === 'gesturechange' ){ newZoom = r.gestureStartZoom * e.scale; } cy.zoom( { level: newZoom, renderedPosition: { x: rpos[0], y: rpos[1] } } ); cy.emit({ type: e.type === 'gesturechange' ? 'pinchzoom' : 'scrollzoom', originalEvent: e, position: { x: pos[0], y: pos[1] } }); } }; // Functions to help with whether mouse wheel should trigger zooming // -- r.registerBinding( r.container, 'wheel', wheelHandler, true ); // disable nonstandard wheel events // r.registerBinding(r.container, 'mousewheel', wheelHandler, true); // r.registerBinding(r.container, 'DOMMouseScroll', wheelHandler, true); // r.registerBinding(r.container, 'MozMousePixelScroll', wheelHandler, true); // older firefox r.registerBinding( containerWindow, 'scroll', function scrollHandler( e ){ // eslint-disable-line no-unused-vars r.scrollingPage = true; clearTimeout( r.scrollingPageTimeout ); r.scrollingPageTimeout = setTimeout( function(){ r.scrollingPage = false; }, 250 ); }, true ); // desktop safari pinch to zoom start r.registerBinding( r.container, 'gesturestart', function gestureStartHandler(e){ r.gestureStartZoom = r.cy.zoom(); if( !r.hasTouchStarted ){ // don't affect touch devices like iphone e.preventDefault(); } }, true ); r.registerBinding( r.container, 'gesturechange', function(e){ if( !r.hasTouchStarted ){ // don't affect touch devices like iphone wheelHandler(e); } }, true ); // Functions to help with handling mouseout/mouseover on the Cytoscape container // Handle mouseout on Cytoscape container r.registerBinding( r.container, 'mouseout', function mouseOutHandler( e ){ var pos = r.projectIntoViewport( e.clientX, e.clientY ); r.cy.emit( ( { originalEvent: e, type: 'mouseout', position: { x: pos[0], y: pos[1] } } ) ); }, false ); r.registerBinding( r.container, 'mouseover', function mouseOverHandler( e ){ var pos = r.projectIntoViewport( e.clientX, e.clientY ); r.cy.emit( ( { originalEvent: e, type: 'mouseover', position: { x: pos[0], y: pos[1] } } ) ); }, false ); var f1x1, f1y1, f2x1, f2y1; // starting points for pinch-to-zoom var distance1, distance1Sq; // initial distance between finger 1 and finger 2 for pinch-to-zoom var center1, modelCenter1; // center point on start pinch to zoom var offsetLeft, offsetTop; var containerWidth, containerHeight; var twoFingersStartInside; var distance = function( x1, y1, x2, y2 ){ return Math.sqrt( (x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1) ); }; var distanceSq = function( x1, y1, x2, y2 ){ return (x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1); }; var touchstartHandler; r.registerBinding( r.container, 'touchstart', touchstartHandler = function( e ){ r.hasTouchStarted = true; if( !eventInContainer(e) ){ return; } blurActiveDomElement(); r.touchData.capture = true; r.data.bgActivePosistion = undefined; var cy = r.cy; var now = r.touchData.now; var earlier = r.touchData.earlier; if( e.touches[0] ){ var pos = r.projectIntoViewport( e.touches[0].clientX, e.touches[0].clientY ); now[0] = pos[0]; now[1] = pos[1]; } if( e.touches[1] ){ var pos = r.projectIntoViewport( e.touches[1].clientX, e.touches[1].clientY ); now[2] = pos[0]; now[3] = pos[1]; } if( e.touches[2] ){ var pos = r.projectIntoViewport( e.touches[2].clientX, e.touches[2].clientY ); now[4] = pos[0]; now[5] = pos[1]; } let makeEvent = (type) => ({ originalEvent: e, type: type, position: { x: now[0], y: now[1] } }); // record starting points for pinch-to-zoom if( e.touches[1] ){ r.touchData.singleTouchMoved = true; freeDraggedElements( r.dragData.touchDragEles ); var offsets = r.findContainerClientCoords(); offsetLeft = offsets[0]; offsetTop = offsets[1]; containerWidth = offsets[2]; containerHeight = offsets[3]; f1x1 = e.touches[0].clientX - offsetLeft; f1y1 = e.touches[0].clientY - offsetTop; f2x1 = e.touches[1].clientX - offsetLeft; f2y1 = e.touches[1].clientY - offsetTop; twoFingersStartInside = 0 <= f1x1 && f1x1 <= containerWidth && 0 <= f2x1 && f2x1 <= containerWidth && 0 <= f1y1 && f1y1 <= containerHeight && 0 <= f2y1 && f2y1 <= containerHeight ; var pan = cy.pan(); var zoom = cy.zoom(); distance1 = distance( f1x1, f1y1, f2x1, f2y1 ); distance1Sq = distanceSq( f1x1, f1y1, f2x1, f2y1 ); center1 = [ (f1x1 + f2x1) / 2, (f1y1 + f2y1) / 2 ]; modelCenter1 = [ (center1[0] - pan.x) / zoom, (center1[1] - pan.y) / zoom ]; // consider context tap var cxtDistThreshold = 200; var cxtDistThresholdSq = cxtDistThreshold * cxtDistThreshold; if( distance1Sq < cxtDistThresholdSq && !e.touches[2] ){ var near1 = r.findNearestElement( now[0], now[1], true, true ); var near2 = r.findNearestElement( now[2], now[3], true, true ); if( near1 && near1.isNode() ){ near1.activate().emit(makeEvent('cxttapstart')); r.touchData.start = near1; } else if( near2 && near2.isNode() ){ near2.activate().emit(makeEvent('cxttapstart')); r.touchData.start = near2; } else { cy.emit(makeEvent('cxttapstart')); } if( r.touchData.start ){ r.touchData.start._private.grabbed = false; } r.touchData.cxt = true; r.touchData.cxtDragged = false; r.data.bgActivePosistion = undefined; r.redraw(); return; } } if( e.touches[2] ){ // ignore // safari on ios pans the page otherwise (normally you should be able to preventdefault on touchmove...) if( cy.boxSelectionEnabled() ){ e.preventDefault(); } } else if( e.touches[1] ){ // ignore } else if( e.touches[0] ){ var nears = r.findNearestElements( now[0], now[1], true, true ); var near = nears[0]; if( near != null ){ near.activate(); r.touchData.start = near; r.touchData.starts = nears; if( r.nodeIsGrabbable( near ) ){ var draggedEles = r.dragData.touchDragEles = cy.collection(); var selectedNodes = null; r.redrawHint( 'eles', true ); r.redrawHint( 'drag', true ); if( near.selected() ){ // reset drag elements, since near will be added again selectedNodes = cy.$( function( ele ){ return ele.selected() && r.nodeIsGrabbable( ele ); } ); addNodesToDrag( selectedNodes, { addToList: draggedEles } ); } else { addNodeToDrag( near, { addToList: draggedEles } ); } setGrabTarget( near ); near.emit( makeEvent('grabon') ); if( selectedNodes ){ selectedNodes.forEach(function( n ){ n.emit( makeEvent('grab') ); }); } else { near.emit( makeEvent('grab') ); } } } triggerEvents( near, [ 'touchstart', 'tapstart', 'vmousedown' ], e, { x: now[0], y: now[1] } ); if( near == null ){ r.data.bgActivePosistion = { x: pos[0], y: pos[1] }; r.redrawHint( 'select', true ); r.redraw(); } // Tap, taphold // ----- r.touchData.singleTouchMoved = false; r.touchData.singleTouchStartTime = +new Date(); clearTimeout( r.touchData.tapholdTimeout ); r.touchData.tapholdTimeout = setTimeout( function(){ if( r.touchData.singleTouchMoved === false && !r.pinching // if pinching, then taphold unselect shouldn't take effect && !r.touchData.selecting // box selection shouldn't allow taphold through ){ triggerEvents( r.touchData.start, [ 'taphold' ], e, { x: now[0], y: now[1] } ); } }, r.tapholdDuration ); } if( e.touches.length >= 1 ){ var sPos = r.touchData.startPosition = [null, null, null, null, null, null]; for( var i = 0; i < now.length; i++ ){ sPos[i] = earlier[i] = now[i]; } var touch0 = e.touches[0]; r.touchData.startGPosition = [ touch0.clientX, touch0.clientY ]; } }, false ); var touchmoveHandler; r.registerBinding(containerWindow, 'touchmove', touchmoveHandler = function(e) { // eslint-disable-line no-undef var capture = r.touchData.capture; if( !capture && !eventInContainer(e) ){ return; } var select = r.selection; var cy = r.cy; var now = r.touchData.now; var earlier = r.touchData.earlier; var zoom = cy.zoom(); if( e.touches[0] ){ var pos = r.projectIntoViewport( e.touches[0].clientX, e.touches[0].clientY ); now[0] = pos[0]; now[1] = pos[1]; } if( e.touches[1] ){ var pos = r.projectIntoViewport( e.touches[1].clientX, e.touches[1].clientY ); now[2] = pos[0]; now[3] = pos[1]; } if( e.touches[2] ){ var pos = r.projectIntoViewport( e.touches[2].clientX, e.touches[2].clientY ); now[4] = pos[0]; now[5] = pos[1]; } let makeEvent = (type) => ({ originalEvent: e, type: type, position: { x: now[0], y: now[1] } }); var startGPos = r.touchData.startGPosition; var isOverThresholdDrag; if( capture && e.touches[0] && startGPos ){ var disp = []; for (var j=0;j= r.touchTapThreshold2; } // context swipe cancelling if( capture && r.touchData.cxt ){ e.preventDefault(); var f1x2 = e.touches[0].clientX - offsetLeft, f1y2 = e.touches[0].clientY - offsetTop; var f2x2 = e.touches[1].clientX - offsetLeft, f2y2 = e.touches[1].clientY - offsetTop; // var distance2 = distance( f1x2, f1y2, f2x2, f2y2 ); var distance2Sq = distanceSq( f1x2, f1y2, f2x2, f2y2 ); var factorSq = distance2Sq / distance1Sq; var distThreshold = 150; var distThresholdSq = distThreshold * distThreshold; var factorThreshold = 1.5; var factorThresholdSq = factorThreshold * factorThreshold; // cancel ctx gestures if the distance b/t the fingers increases if( factorSq >= factorThresholdSq || distance2Sq >= distThresholdSq ){ r.touchData.cxt = false; r.data.bgActivePosistion = undefined; r.redrawHint( 'select', true ); var cxtEvt = makeEvent('cxttapend'); if( r.touchData.start ){ r.touchData.start .unactivate() .emit( cxtEvt ) ; r.touchData.start = null; } else { cy.emit( cxtEvt ); } } } // context swipe if( capture && r.touchData.cxt ){ var cxtEvt = makeEvent('cxtdrag'); r.data.bgActivePosistion = undefined; r.redrawHint( 'select', true ); if( r.touchData.start ){ r.touchData.start.emit( cxtEvt ); } else { cy.emit( cxtEvt ); } if( r.touchData.start ){ r.touchData.start._private.grabbed = false; } r.touchData.cxtDragged = true; var near = r.findNearestElement( now[0], now[1], true, true ); if( !r.touchData.cxtOver || near !== r.touchData.cxtOver ){ if( r.touchData.cxtOver ){ r.touchData.cxtOver.emit(makeEvent('cxtdragout')); } r.touchData.cxtOver = near; if( near ){ near.emit(makeEvent('cxtdragover')); } } // box selection } else if( capture && e.touches[2] && cy.boxSelectionEnabled() ){ e.preventDefault(); r.data.bgActivePosistion = undefined; this.lastThreeTouch = +new Date(); if( !r.touchData.selecting ){ cy.emit(makeEvent('boxstart')); } r.touchData.selecting = true; r.touchData.didSelect = true; select[4] = 1; if( !select || select.length === 0 || select[0] === undefined ){ select[0] = (now[0] + now[2] + now[4]) / 3; select[1] = (now[1] + now[3] + now[5]) / 3; select[2] = (now[0] + now[2] + now[4]) / 3 + 1; select[3] = (now[1] + now[3] + now[5]) / 3 + 1; } else { select[2] = (now[0] + now[2] + now[4]) / 3; select[3] = (now[1] + now[3] + now[5]) / 3; } r.redrawHint( 'select', true ); r.redraw(); // pinch to zoom } else if( capture && e.touches[1] && !r.touchData.didSelect // don't allow box selection to degrade to pinch-to-zoom && cy.zoomingEnabled() && cy.panningEnabled() && cy.userZoomingEnabled() && cy.userPanningEnabled() ){ // two fingers => pinch to zoom e.preventDefault(); r.data.bgActivePosistion = undefined; r.redrawHint( 'select', true ); var draggedEles = r.dragData.touchDragEles; if( draggedEles ){ r.redrawHint( 'drag', true ); for( var i = 0; i < draggedEles.length; i++ ){ var de_p = draggedEles[i]._private; de_p.grabbed = false; de_p.rscratch.inDragLayer = false; } } let start = r.touchData.start; // (x2, y2) for fingers 1 and 2 var f1x2 = e.touches[0].clientX - offsetLeft, f1y2 = e.touches[0].clientY - offsetTop; var f2x2 = e.touches[1].clientX - offsetLeft, f2y2 = e.touches[1].clientY - offsetTop; var distance2 = distance( f1x2, f1y2, f2x2, f2y2 ); // var distance2Sq = distanceSq( f1x2, f1y2, f2x2, f2y2 ); // var factor = Math.sqrt( distance2Sq ) / Math.sqrt( distance1Sq ); var factor = distance2 / distance1; if( twoFingersStartInside ){ // delta finger1 var df1x = f1x2 - f1x1; var df1y = f1y2 - f1y1; // delta finger 2 var df2x = f2x2 - f2x1; var df2y = f2y2 - f2y1; // translation is the normalised vector of the two fingers movement // i.e. so pinching cancels out and moving together pans var tx = (df1x + df2x) / 2; var ty = (df1y + df2y) / 2; // now calculate the zoom var zoom1 = cy.zoom(); var zoom2 = zoom1 * factor; var pan1 = cy.pan(); // the model center point converted to the current rendered pos var ctrx = modelCenter1[0] * zoom1 + pan1.x; var ctry = modelCenter1[1] * zoom1 + pan1.y; var pan2 = { x: -zoom2 / zoom1 * (ctrx - pan1.x - tx) + ctrx, y: -zoom2 / zoom1 * (ctry - pan1.y - ty) + ctry }; // remove dragged eles if( start && start.active() ){ var draggedEles = r.dragData.touchDragEles; freeDraggedElements( draggedEles ); r.redrawHint( 'drag', true ); r.redrawHint( 'eles', true ); start .unactivate() .emit(makeEvent('freeon')) ; draggedEles.emit(makeEvent('free')); if( r.dragData.didDrag ){ start.emit(makeEvent('dragfreeon')); draggedEles.emit(makeEvent('dragfree')); } } cy.viewport( { zoom: zoom2, pan: pan2, cancelOnFailedZoom: true } ); cy.emit(makeEvent('pinchzoom')); distance1 = distance2; f1x1 = f1x2; f1y1 = f1y2; f2x1 = f2x2; f2y1 = f2y2; r.pinching = true; } // Re-project if( e.touches[0] ){ var pos = r.projectIntoViewport( e.touches[0].clientX, e.touches[0].clientY ); now[0] = pos[0]; now[1] = pos[1]; } if( e.touches[1] ){ var pos = r.projectIntoViewport( e.touches[1].clientX, e.touches[1].clientY ); now[2] = pos[0]; now[3] = pos[1]; } if( e.touches[2] ){ var pos = r.projectIntoViewport( e.touches[2].clientX, e.touches[2].clientY ); now[4] = pos[0]; now[5] = pos[1]; } } else if( e.touches[0] && !r.touchData.didSelect // don't allow box selection to degrade to single finger events like panning ){ var start = r.touchData.start; var last = r.touchData.last; var near; if( !r.hoverData.draggingEles && !r.swipePanning ){ near = r.findNearestElement( now[0], now[1], true, true ); } if( capture && start != null ){ e.preventDefault(); } // dragging nodes if( capture && start != null && r.nodeIsDraggable( start ) ){ if( isOverThresholdDrag ){ // then dragging can happen var draggedEles = r.dragData.touchDragEles; var justStartedDrag = !r.dragData.didDrag; if( justStartedDrag ){ addNodesToDrag( draggedEles , { inDragLayer: true } ); } r.dragData.didDrag = true; var totalShift = { x: 0, y: 0 }; if( is.number( disp[0] ) && is.number( disp[1] ) ){ totalShift.x += disp[0]; totalShift.y += disp[1]; if( justStartedDrag ){ r.redrawHint( 'eles', true ); var dragDelta = r.touchData.dragDelta; if( dragDelta && is.number( dragDelta[0] ) && is.number( dragDelta[1] ) ){ totalShift.x += dragDelta[0]; totalShift.y += dragDelta[1]; } } } r.hoverData.draggingEles = true; ( draggedEles .silentShift( totalShift ) .emit(makeEvent('position')) .emit(makeEvent('drag')) ); r.redrawHint( 'drag', true ); if( r.touchData.startPosition[0] == earlier[0] && r.touchData.startPosition[1] == earlier[1] ){ r.redrawHint( 'eles', true ); } r.redraw(); } else { // otherwise keep track of drag delta for later var dragDelta = r.touchData.dragDelta = r.touchData.dragDelta || []; if( dragDelta.length === 0 ){ dragDelta.push( disp[0] ); dragDelta.push( disp[1] ); } else { dragDelta[0] += disp[0]; dragDelta[1] += disp[1]; } } } // touchmove { triggerEvents( (start || near), [ 'touchmove', 'tapdrag', 'vmousemove' ], e, { x: now[0], y: now[1] } ); if( ( !start || !start.grabbed() ) && near != last ){ if( last ){ last.emit(makeEvent('tapdragout')); } if( near ){ near.emit(makeEvent('tapdragover')); } } r.touchData.last = near; } // check to cancel taphold if( capture ){ for( var i = 0; i < now.length; i++ ){ if( now[ i ] && r.touchData.startPosition[ i ] && isOverThresholdDrag ){ r.touchData.singleTouchMoved = true; } } } // panning if( capture && ( start == null || start.pannable() ) && cy.panningEnabled() && cy.userPanningEnabled() ){ var allowPassthrough = allowPanningPassthrough( start, r.touchData.starts ); if( allowPassthrough ){ e.preventDefault(); if( !r.data.bgActivePosistion ){ r.data.bgActivePosistion = math.array2point( r.touchData.startPosition ); } if( r.swipePanning ){ cy.panBy( { x: disp[0] * zoom, y: disp[1] * zoom } ); cy.emit(makeEvent('dragpan')); } else if( isOverThresholdDrag ){ r.swipePanning = true; cy.panBy( { x: dx * zoom, y: dy * zoom } ); cy.emit(makeEvent('dragpan')); if( start ){ start.unactivate(); r.redrawHint( 'select', true ); r.touchData.start = null; } } } // Re-project var pos = r.projectIntoViewport( e.touches[0].clientX, e.touches[0].clientY ); now[0] = pos[0]; now[1] = pos[1]; } } for( var j = 0; j < now.length; j++ ){ earlier[ j ] = now[ j ]; } // the active bg indicator should be removed when making a swipe that is neither for dragging nodes or panning if( capture && e.touches.length > 0 && !r.hoverData.draggingEles && !r.swipePanning && r.data.bgActivePosistion != null ){ r.data.bgActivePosistion = undefined; r.redrawHint( 'select', true ); r.redraw(); } }, false ); var touchcancelHandler; r.registerBinding( containerWindow, 'touchcancel', touchcancelHandler = function( e ){ // eslint-disable-line no-unused-vars var start = r.touchData.start; r.touchData.capture = false; if( start ){ start.unactivate(); } } ); var touchendHandler, didDoubleTouch, touchTimeout, prevTouchTimeStamp; r.registerBinding( containerWindow, 'touchend', touchendHandler = function( e ){ // eslint-disable-line no-unused-vars var start = r.touchData.start; var capture = r.touchData.capture; if( capture ){ if( e.touches.length === 0 ){ r.touchData.capture = false; } e.preventDefault(); } else { return; } var select = r.selection; r.swipePanning = false; r.hoverData.draggingEles = false; var cy = r.cy; var zoom = cy.zoom(); var now = r.touchData.now; var earlier = r.touchData.earlier; if( e.touches[0] ){ var pos = r.projectIntoViewport( e.touches[0].clientX, e.touches[0].clientY ); now[0] = pos[0]; now[1] = pos[1]; } if( e.touches[1] ){ var pos = r.projectIntoViewport( e.touches[1].clientX, e.touches[1].clientY ); now[2] = pos[0]; now[3] = pos[1]; } if( e.touches[2] ){ var pos = r.projectIntoViewport( e.touches[2].clientX, e.touches[2].clientY ); now[4] = pos[0]; now[5] = pos[1]; } let makeEvent = (type) => ({ originalEvent: e, type: type, position: { x: now[0], y: now[1] } }); if( start ){ start.unactivate(); } var ctxTapend; if( r.touchData.cxt ){ ctxTapend = makeEvent('cxttapend'); if( start ){ start.emit( ctxTapend ); } else { cy.emit( ctxTapend ); } if( !r.touchData.cxtDragged ){ var ctxTap = makeEvent('cxttap'); if( start ){ start.emit( ctxTap ); } else { cy.emit( ctxTap ); } } if( r.touchData.start ){ r.touchData.start._private.grabbed = false; } r.touchData.cxt = false; r.touchData.start = null; r.redraw(); return; } // no more box selection if we don't have three fingers if( !e.touches[2] && cy.boxSelectionEnabled() && r.touchData.selecting ){ r.touchData.selecting = false; var box = cy.collection( r.getAllInBox( select[0], select[1], select[2], select[3] ) ); select[0] = undefined; select[1] = undefined; select[2] = undefined; select[3] = undefined; select[4] = 0; r.redrawHint( 'select', true ); cy.emit(makeEvent('boxend')); var eleWouldBeSelected = function( ele ){ return ele.selectable() && !ele.selected(); }; box .emit(makeEvent('box')) .stdFilter( eleWouldBeSelected ) .select() .emit(makeEvent('boxselect')) ; if( box.nonempty() ){ r.redrawHint( 'eles', true ); } r.redraw(); } if( start != null ){ start.unactivate(); } if( e.touches[2] ){ r.data.bgActivePosistion = undefined; r.redrawHint( 'select', true ); } else if( e.touches[1] ){ // ignore } else if( e.touches[0] ){ // ignore // Last touch released } else if( !e.touches[0] ){ r.data.bgActivePosistion = undefined; r.redrawHint( 'select', true ); var draggedEles = r.dragData.touchDragEles; if( start != null ){ var startWasGrabbed = start._private.grabbed; freeDraggedElements( draggedEles ); r.redrawHint( 'drag', true ); r.redrawHint( 'eles', true ); if( startWasGrabbed ){ start.emit(makeEvent('freeon')); draggedEles.emit(makeEvent('free')); if( r.dragData.didDrag ){ start.emit(makeEvent('dragfreeon')); draggedEles.emit(makeEvent('dragfree')); } } triggerEvents( start, [ 'touchend', 'tapend', 'vmouseup', 'tapdragout' ], e, { x: now[0], y: now[1] } ); start.unactivate(); r.touchData.start = null; } else { var near = r.findNearestElement( now[0], now[1], true, true ); triggerEvents( near, [ 'touchend', 'tapend', 'vmouseup', 'tapdragout' ], e, { x: now[0], y: now[1] } ); } var dx = r.touchData.startPosition[0] - now[0]; var dx2 = dx * dx; var dy = r.touchData.startPosition[1] - now[1]; var dy2 = dy * dy; var dist2 = dx2 + dy2; var rdist2 = dist2 * zoom * zoom; // Tap event, roughly same as mouse click event for touch if( !r.touchData.singleTouchMoved ){ if( !start ){ cy.$(':selected').unselect(['tapunselect']); } triggerEvents( start, [ 'tap', 'vclick' ], e, { x: now[0], y: now[1] } ); didDoubleTouch = false; if (e.timeStamp - prevTouchTimeStamp <= cy.multiClickDebounceTime()) { touchTimeout && clearTimeout(touchTimeout); didDoubleTouch = true; prevTouchTimeStamp = null; triggerEvents( start, [ 'dbltap', 'vdblclick' ], e, { x: now[0], y: now[1] } ); } else { touchTimeout = setTimeout(() => { if (didDoubleTouch) return; triggerEvents( start, [ 'onetap', 'voneclick' ], e, { x: now[0], y: now[1] } ); }, cy.multiClickDebounceTime()); prevTouchTimeStamp = e.timeStamp; } } // Prepare to select the currently touched node, only if it hasn't been dragged past a certain distance if( start != null && !r.dragData.didDrag // didn't drag nodes around && start._private.selectable && rdist2 < r.touchTapThreshold2 && !r.pinching // pinch to zoom should not affect selection ){ if( cy.selectionType() === 'single' ){ cy.$(isSelected).unmerge( start ).unselect(['tapunselect']); start.select(['tapselect']); } else { if( start.selected() ){ start.unselect(['tapunselect']); } else { start.select(['tapselect']); } } r.redrawHint( 'eles', true ); } r.touchData.singleTouchMoved = true; } for( var j = 0; j < now.length; j++ ){ earlier[ j ] = now[ j ]; } r.dragData.didDrag = false; // reset for next touchstart if( e.touches.length === 0 ){ r.touchData.dragDelta = []; r.touchData.startPosition = [null, null, null, null, null, null]; r.touchData.startGPosition = null; r.touchData.didSelect = false; } if( e.touches.length < 2 ){ if( e.touches.length === 1 ){ // the old start global pos'n may not be the same finger that remains r.touchData.startGPosition = [ e.touches[0].clientX, e.touches[0].clientY ]; } r.pinching = false; r.redrawHint( 'eles', true ); r.redraw(); } //r.redraw(); }, false ); // fallback compatibility layer for ms pointer events if( typeof TouchEvent === 'undefined' ){ var pointers = []; var makeTouch = function( e ){ return { clientX: e.clientX, clientY: e.clientY, force: 1, identifier: e.pointerId, pageX: e.pageX, pageY: e.pageY, radiusX: e.width / 2, radiusY: e.height / 2, screenX: e.screenX, screenY: e.screenY, target: e.target }; }; var makePointer = function( e ){ return { event: e, touch: makeTouch( e ) }; }; var addPointer = function( e ){ pointers.push( makePointer( e ) ); }; var removePointer = function( e ){ for( var i = 0; i < pointers.length; i++ ){ var p = pointers[ i ]; if( p.event.pointerId === e.pointerId ){ pointers.splice( i, 1 ); return; } } }; var updatePointer = function( e ){ var p = pointers.filter( function( p ){ return p.event.pointerId === e.pointerId; } )[0]; p.event = e; p.touch = makeTouch( e ); }; var addTouchesToEvent = function( e ){ e.touches = pointers.map( function( p ){ return p.touch; } ); }; var pointerIsMouse = function( e ){ return e.pointerType === 'mouse' || e.pointerType === 4; }; r.registerBinding( r.container, 'pointerdown', function( e ){ if( pointerIsMouse(e) ){ return; } // mouse already handled e.preventDefault(); addPointer( e ); addTouchesToEvent( e ); touchstartHandler( e ); } ); r.registerBinding( r.container, 'pointerup', function( e ){ if( pointerIsMouse(e) ){ return; } // mouse already handled removePointer( e ); addTouchesToEvent( e ); touchendHandler( e ); } ); r.registerBinding( r.container, 'pointercancel', function( e ){ if( pointerIsMouse(e) ){ return; } // mouse already handled removePointer( e ); addTouchesToEvent( e ); touchcancelHandler( e ); } ); r.registerBinding( r.container, 'pointermove', function( e ){ if( pointerIsMouse(e) ){ return; } // mouse already handled e.preventDefault(); updatePointer( e ); addTouchesToEvent( e ); touchmoveHandler( e ); } ); } }; export default BRp; ================================================ FILE: src/extensions/renderer/base/node-shapes.mjs ================================================ import * as math from '../../../math.mjs'; import * as round from "../../../round.mjs"; var BRp = {}; BRp.generatePolygon = function( name, points ){ return ( this.nodeShapes[ name ] = { renderer: this, name: name, points: points, draw: function( context, centerX, centerY, width, height, cornerRadius ){ this.renderer.nodeShapeImpl( 'polygon', context, centerX, centerY, width, height, this.points ); }, intersectLine: function( nodeX, nodeY, width, height, x, y, padding, cornerRadius ){ return math.polygonIntersectLine( x, y, this.points, nodeX, nodeY, width / 2, height / 2, padding ) ; }, checkPoint: function( x, y, padding, width, height, centerX, centerY, cornerRadius ){ return math.pointInsidePolygon( x, y, this.points, centerX, centerY, width, height, [0, -1], padding ) ; }, hasMiterBounds: name !== 'rectangle', miterBounds: function( centerX, centerY, width, height, strokeWidth, strokePosition ){ return math.miterBox( this.points, centerX, centerY, width, height, strokeWidth, strokePosition ); } } ); }; BRp.generateEllipse = function(){ return ( this.nodeShapes['ellipse'] = { renderer: this, name: 'ellipse', draw: function( context, centerX, centerY, width, height, cornerRadius ){ this.renderer.nodeShapeImpl( this.name, context, centerX, centerY, width, height ); }, intersectLine: function( nodeX, nodeY, width, height, x, y, padding, cornerRadius ){ return math.intersectLineEllipse( x, y, nodeX, nodeY, width / 2 + padding, height / 2 + padding ) ; }, checkPoint: function( x, y, padding, width, height, centerX, centerY, cornerRadius ){ return math.checkInEllipse( x, y, width, height, centerX, centerY, padding ); } } ); }; BRp.generateRoundPolygon = function( name, points ){ return ( this.nodeShapes[ name ] = { renderer: this, name: name, points: points, getOrCreateCorners: function (centerX, centerY, width, height, cornerRadius, rs, field) { if( rs[field] !== undefined && rs[field + '-cx'] === centerX && rs [field + '-cy'] === centerY ){ return rs[field]; } rs[field] = new Array( points.length / 2 ); rs[field + '-cx'] = centerX; rs[field + '-cy'] = centerY; const halfW = width / 2; const halfH = height / 2; cornerRadius = cornerRadius === 'auto' ? math.getRoundPolygonRadius( width, height ) : cornerRadius; const p = new Array( points.length / 2 ); for ( let i = 0; i < points.length / 2; i++ ){ p[i] = { x: centerX + halfW * points[ i * 2 ], y: centerY + halfH * points[ i * 2 + 1 ] }; } let i, p1, p2, p3, len = p.length; p1 = p[ len - 1 ]; // for each point for( i = 0; i < len; i++ ){ p2 = p[ (i) % len ]; p3 = p[ (i + 1) % len ]; rs[ field ][ i ] = round.getRoundCorner( p1, p2, p3, cornerRadius ); p1 = p2; p2 = p3; } return rs[ field ]; }, draw: function( context, centerX, centerY, width, height, cornerRadius , rs){ this.renderer.nodeShapeImpl( 'round-polygon', context, centerX, centerY, width, height, this.points, this.getOrCreateCorners( centerX, centerY, width, height, cornerRadius, rs, 'drawCorners' )); }, intersectLine: function( nodeX, nodeY, width, height, x, y, padding, cornerRadius, rs ){ return math.roundPolygonIntersectLine( x, y, this.points, nodeX, nodeY, width, height, padding, this.getOrCreateCorners( nodeX, nodeY, width, height, cornerRadius, rs, 'corners' ) ) ; }, checkPoint: function( x, y, padding, width, height, centerX, centerY, cornerRadius, rs ){ return math.pointInsideRoundPolygon( x, y, this.points, centerX, centerY, width, height, this.getOrCreateCorners( centerX, centerY, width, height, cornerRadius, rs, 'corners' ) ) ; } } ); }; BRp.generateRoundRectangle = function(){ return ( this.nodeShapes['round-rectangle'] = this.nodeShapes['roundrectangle'] = { renderer: this, name: 'round-rectangle', points: math.generateUnitNgonPointsFitToSquare( 4, 0 ), draw: function( context, centerX, centerY, width, height, cornerRadius ){ this.renderer.nodeShapeImpl( this.name, context, centerX, centerY, width, height, this.points, cornerRadius ); }, intersectLine: function( nodeX, nodeY, width, height, x, y, padding, cornerRadius ){ return math.roundRectangleIntersectLine( x, y, nodeX, nodeY, width, height, padding, cornerRadius ) ; }, checkPoint: function( x, y, padding, width, height, centerX, centerY, cornerRadius ){ let halfWidth = width / 2; let halfHeight = height / 2; cornerRadius = cornerRadius === 'auto' ? math.getRoundRectangleRadius( width, height ) : cornerRadius; cornerRadius = Math.min(halfWidth, halfHeight, cornerRadius); var diam = cornerRadius * 2; // Check hBox if( math.pointInsidePolygon( x, y, this.points, centerX, centerY, width, height - diam, [0, -1], padding ) ){ return true; } // Check vBox if( math.pointInsidePolygon( x, y, this.points, centerX, centerY, width - diam, height, [0, -1], padding ) ){ return true; } // Check top left quarter circle if( math.checkInEllipse( x, y, diam, diam, centerX - halfWidth + cornerRadius, centerY - halfHeight + cornerRadius, padding ) ){ return true; } // Check top right quarter circle if( math.checkInEllipse( x, y, diam, diam, centerX + halfWidth - cornerRadius, centerY - halfHeight + cornerRadius, padding ) ){ return true; } // Check bottom right quarter circle if( math.checkInEllipse( x, y, diam, diam, centerX + halfWidth - cornerRadius, centerY + halfHeight - cornerRadius, padding ) ){ return true; } // Check bottom left quarter circle if( math.checkInEllipse( x, y, diam, diam, centerX - halfWidth + cornerRadius, centerY + halfHeight - cornerRadius, padding ) ){ return true; } return false; } } ); }; BRp.generateCutRectangle = function(){ return ( this.nodeShapes['cut-rectangle'] = this.nodeShapes['cutrectangle'] = { renderer: this, name: 'cut-rectangle', cornerLength: math.getCutRectangleCornerLength(), points: math.generateUnitNgonPointsFitToSquare( 4, 0 ), draw: function( context, centerX, centerY, width, height, cornerRadius ){ this.renderer.nodeShapeImpl( this.name, context, centerX, centerY, width, height, null, cornerRadius); }, generateCutTrianglePts: function( width, height, centerX, centerY, cornerRadius ){ var cl = cornerRadius === 'auto' ? this.cornerLength : cornerRadius; var hh = height / 2; var hw = width / 2; var xBegin = centerX - hw; var xEnd = centerX + hw; var yBegin = centerY - hh; var yEnd = centerY + hh; // points are in clockwise order, inner (imaginary) triangle pt on [4, 5] return { topLeft: [ xBegin, yBegin + cl, xBegin + cl, yBegin, xBegin + cl, yBegin + cl ], topRight: [ xEnd - cl, yBegin, xEnd, yBegin + cl, xEnd - cl, yBegin + cl ], bottomRight: [ xEnd, yEnd - cl, xEnd - cl, yEnd, xEnd - cl, yEnd - cl ], bottomLeft: [ xBegin + cl, yEnd, xBegin, yEnd - cl, xBegin + cl, yEnd - cl ] }; }, intersectLine: function( nodeX, nodeY, width, height, x, y, padding, cornerRadius ){ var cPts = this.generateCutTrianglePts( width + 2*padding, height+2*padding, nodeX, nodeY, cornerRadius ); var pts = [].concat.apply([], [cPts.topLeft.splice(0, 4), cPts.topRight.splice(0, 4), cPts.bottomRight.splice(0, 4), cPts.bottomLeft.splice(0, 4) ]); return math.polygonIntersectLine( x, y, pts, nodeX, nodeY ); }, checkPoint: function( x, y, padding, width, height, centerX, centerY, cornerRadius ){ const cl = cornerRadius === 'auto' ? this.cornerLength : cornerRadius; // Check hBox if( math.pointInsidePolygon( x, y, this.points, centerX, centerY, width, height - 2 * cl, [0, -1], padding ) ){ return true; } // Check vBox if( math.pointInsidePolygon( x, y, this.points, centerX, centerY, width - 2 * cl, height, [0, -1], padding ) ){ return true; } var cutTrianglePts = this.generateCutTrianglePts(width, height, centerX, centerY); return math.pointInsidePolygonPoints( x, y, cutTrianglePts.topLeft) || math.pointInsidePolygonPoints( x, y, cutTrianglePts.topRight ) || math.pointInsidePolygonPoints( x, y, cutTrianglePts.bottomRight ) || math.pointInsidePolygonPoints( x, y, cutTrianglePts.bottomLeft ); } } ); }; BRp.generateBarrel = function(){ return ( this.nodeShapes['barrel'] = { renderer: this, name: 'barrel', points: math.generateUnitNgonPointsFitToSquare( 4, 0 ), draw: function( context, centerX, centerY, width, height, cornerRadius ){ this.renderer.nodeShapeImpl( this.name, context, centerX, centerY, width, height ); }, intersectLine: function( nodeX, nodeY, width, height, x, y, padding, cornerRadius ){ // use two fixed t values for the bezier curve approximation var t0 = 0.15; var t1 = 0.5; var t2 = 0.85; var bPts = this.generateBarrelBezierPts( width + 2*padding, height + 2*padding, nodeX, nodeY ); var approximateBarrelCurvePts = pts => { // approximate curve pts based on the two t values var m0 = math.qbezierPtAt({x: pts[0], y: pts[1]}, {x: pts[2], y: pts[3]}, {x: pts[4], y: pts[5]}, t0); var m1 = math.qbezierPtAt({x: pts[0], y: pts[1]}, {x: pts[2], y: pts[3]}, {x: pts[4], y: pts[5]}, t1); var m2 = math.qbezierPtAt({x: pts[0], y: pts[1]}, {x: pts[2], y: pts[3]}, {x: pts[4], y: pts[5]}, t2); return [ pts[0],pts[1], m0.x, m0.y, m1.x, m1.y, m2.x, m2.y, pts[4], pts[5] ]; }; var pts = [].concat( approximateBarrelCurvePts(bPts.topLeft), approximateBarrelCurvePts(bPts.topRight), approximateBarrelCurvePts(bPts.bottomRight), approximateBarrelCurvePts(bPts.bottomLeft) ); return math.polygonIntersectLine( x, y, pts, nodeX, nodeY ); }, generateBarrelBezierPts: function( width, height, centerX, centerY ){ var hh = height / 2; var hw = width / 2; var xBegin = centerX - hw; var xEnd = centerX + hw; var yBegin = centerY - hh; var yEnd = centerY + hh; var curveConstants = math.getBarrelCurveConstants( width, height ); var hOffset = curveConstants.heightOffset; var wOffset = curveConstants.widthOffset; var ctrlPtXOffset = curveConstants.ctrlPtOffsetPct * width; // points are in clockwise order, inner (imaginary) control pt on [4, 5] var pts = { topLeft: [ xBegin, yBegin + hOffset, xBegin + ctrlPtXOffset, yBegin, xBegin + wOffset, yBegin ], topRight: [ xEnd - wOffset, yBegin, xEnd - ctrlPtXOffset, yBegin, xEnd, yBegin + hOffset ], bottomRight: [ xEnd, yEnd - hOffset, xEnd - ctrlPtXOffset, yEnd, xEnd - wOffset, yEnd ], bottomLeft: [ xBegin + wOffset, yEnd, xBegin + ctrlPtXOffset, yEnd, xBegin, yEnd - hOffset ] }; pts.topLeft.isTop = true; pts.topRight.isTop = true; pts.bottomLeft.isBottom = true; pts.bottomRight.isBottom = true; return pts; }, checkPoint: function( x, y, padding, width, height, centerX, centerY, cornerRadius){ var curveConstants = math.getBarrelCurveConstants( width, height ); var hOffset = curveConstants.heightOffset; var wOffset = curveConstants.widthOffset; // Check hBox if( math.pointInsidePolygon( x, y, this.points, centerX, centerY, width, height - 2 * hOffset, [0, -1], padding ) ){ return true; } // Check vBox if( math.pointInsidePolygon( x, y, this.points, centerX, centerY, width - 2 * wOffset, height, [0, -1], padding ) ){ return true; } var barrelCurvePts = this.generateBarrelBezierPts( width, height, centerX, centerY ); var getCurveT = function (x, y, curvePts) { var x0 = curvePts[ 4 ]; var x1 = curvePts[ 2 ]; var x2 = curvePts[ 0 ]; var y0 = curvePts[ 5 ]; // var y1 = curvePts[ 3 ]; var y2 = curvePts[ 1 ]; var xMin = Math.min( x0, x2 ); var xMax = Math.max( x0, x2 ); var yMin = Math.min( y0, y2 ); var yMax = Math.max( y0, y2 ); if( xMin <= x && x <= xMax && yMin <= y && y <= yMax ){ var coeff = math.bezierPtsToQuadCoeff( x0, x1, x2 ); var roots = math.solveQuadratic( coeff[0], coeff[1], coeff[2], x ); var validRoots = roots.filter(function( r ){ return 0 <= r && r <= 1; }); if( validRoots.length > 0 ){ return validRoots[ 0 ]; } } return null; }; var curveRegions = Object.keys( barrelCurvePts ); for( var i = 0; i < curveRegions.length; i++ ){ var corner = curveRegions[ i ]; var cornerPts = barrelCurvePts[ corner ]; var t = getCurveT( x, y, cornerPts ); if( t == null ){ continue; } var y0 = cornerPts[ 5 ]; var y1 = cornerPts[ 3 ]; var y2 = cornerPts[ 1 ]; var bezY = math.qbezierAt( y0, y1, y2, t ); if( cornerPts.isTop && bezY <= y ){ return true; } if( cornerPts.isBottom && y <= bezY ){ return true; } } return false; } } ); }; BRp.generateBottomRoundrectangle = function(){ return ( this.nodeShapes['bottom-round-rectangle'] = this.nodeShapes['bottomroundrectangle'] = { renderer: this, name: 'bottom-round-rectangle', points: math.generateUnitNgonPointsFitToSquare( 4, 0 ), draw: function( context, centerX, centerY, width, height, cornerRadius ){ this.renderer.nodeShapeImpl( this.name, context, centerX, centerY, width, height, this.points, cornerRadius ); }, intersectLine: function( nodeX, nodeY, width, height, x, y, padding, cornerRadius ){ var topStartX = nodeX - ( width / 2 + padding ); var topStartY = nodeY - ( height / 2 + padding ); var topEndY = topStartY; var topEndX = nodeX + ( width / 2 + padding ); var topIntersections = math.finiteLinesIntersect( x, y, nodeX, nodeY, topStartX, topStartY, topEndX, topEndY, false ); if( topIntersections.length > 0 ){ return topIntersections; } return math.roundRectangleIntersectLine( x, y, nodeX, nodeY, width, height, padding, cornerRadius ) ; }, checkPoint: function( x, y, padding, width, height, centerX, centerY, cornerRadius ){ cornerRadius = cornerRadius === 'auto' ? math.getRoundRectangleRadius( width, height ) : cornerRadius; var diam = 2 * cornerRadius; // Check hBox if( math.pointInsidePolygon( x, y, this.points, centerX, centerY, width, height - diam, [0, -1], padding ) ){ return true; } // Check vBox if( math.pointInsidePolygon( x, y, this.points, centerX, centerY, width - diam, height, [0, -1], padding ) ){ return true; } // check non-rounded top side var outerWidth = ( ( width / 2 ) + 2 * padding ); var outerHeight = ( ( height / 2 ) + 2 * padding ); var points = [ centerX - outerWidth, centerY - outerHeight, centerX - outerWidth, centerY, centerX + outerWidth, centerY, centerX + outerWidth, centerY - outerHeight ]; if( math.pointInsidePolygonPoints( x, y, points) ){ return true; } // Check bottom right quarter circle if( math.checkInEllipse( x, y, diam, diam, centerX + width / 2 - cornerRadius, centerY + height / 2 - cornerRadius, padding ) ){ return true; } // Check bottom left quarter circle if( math.checkInEllipse( x, y, diam, diam, centerX - width / 2 + cornerRadius, centerY + height / 2 - cornerRadius, padding ) ){ return true; } return false; } } ); }; BRp.registerNodeShapes = function(){ var nodeShapes = this.nodeShapes = {}; var renderer = this; this.generateEllipse(); this.generatePolygon( 'triangle', math.generateUnitNgonPointsFitToSquare( 3, 0 ) ); this.generateRoundPolygon( 'round-triangle', math.generateUnitNgonPointsFitToSquare( 3, 0 ) ); this.generatePolygon( 'rectangle', math.generateUnitNgonPointsFitToSquare( 4, 0 ) ); nodeShapes[ 'square' ] = nodeShapes[ 'rectangle' ]; this.generateRoundRectangle(); this.generateCutRectangle(); this.generateBarrel(); this.generateBottomRoundrectangle(); { const diamondPoints = [ 0, 1, 1, 0, 0, -1, -1, 0 ]; this.generatePolygon( 'diamond', diamondPoints ); this.generateRoundPolygon( 'round-diamond', diamondPoints ); } this.generatePolygon( 'pentagon', math.generateUnitNgonPointsFitToSquare( 5, 0 ) ); this.generateRoundPolygon( 'round-pentagon', math.generateUnitNgonPointsFitToSquare( 5, 0) ); this.generatePolygon( 'hexagon', math.generateUnitNgonPointsFitToSquare( 6, 0 ) ); this.generateRoundPolygon( 'round-hexagon', math.generateUnitNgonPointsFitToSquare( 6, 0) ); this.generatePolygon( 'heptagon', math.generateUnitNgonPointsFitToSquare( 7, 0 ) ); this.generateRoundPolygon( 'round-heptagon', math.generateUnitNgonPointsFitToSquare( 7, 0) ); this.generatePolygon( 'octagon', math.generateUnitNgonPointsFitToSquare( 8, 0 ) ); this.generateRoundPolygon( 'round-octagon', math.generateUnitNgonPointsFitToSquare( 8, 0) ); var star5Points = new Array( 20 ); { var outerPoints = math.generateUnitNgonPoints( 5, 0 ); var innerPoints = math.generateUnitNgonPoints( 5, Math.PI / 5 ); // Outer radius is 1; inner radius of star is smaller var innerRadius = 0.5 * (3 - Math.sqrt( 5 )); innerRadius *= 1.57; for( var i = 0;i < innerPoints.length / 2;i++ ){ innerPoints[ i * 2] *= innerRadius; innerPoints[ i * 2 + 1] *= innerRadius; } for( var i = 0;i < 20 / 4;i++ ){ star5Points[ i * 4] = outerPoints[ i * 2]; star5Points[ i * 4 + 1] = outerPoints[ i * 2 + 1]; star5Points[ i * 4 + 2] = innerPoints[ i * 2]; star5Points[ i * 4 + 3] = innerPoints[ i * 2 + 1]; } } star5Points = math.fitPolygonToSquare( star5Points ); this.generatePolygon( 'star', star5Points ); this.generatePolygon( 'vee', [ -1, -1, 0, -0.333, 1, -1, 0, 1 ] ); this.generatePolygon( 'rhomboid', [ -1, -1, 0.333, -1, 1, 1, -0.333, 1 ] ); this.generatePolygon( 'right-rhomboid', [ -0.333, -1, 1, -1, 0.333, 1, -1, 1 ] ); this.nodeShapes['concavehexagon'] = this.generatePolygon( 'concave-hexagon', [ -1, -0.95, -0.75, 0, -1, 0.95, 1, 0.95, 0.75, 0, 1, -0.95 ] ); { const tagPoints = [ -1, -1, 0.25, -1, 1, 0, 0.25,1, -1, 1 ]; this.generatePolygon( 'tag', tagPoints ); this.generateRoundPolygon( 'round-tag', tagPoints ); } nodeShapes.makePolygon = function( points ){ // use caching on user-specified polygons so they are as fast as native shapes var key = points.join( '$' ); var name = 'polygon-' + key; var shape; if( (shape = this[ name ]) ){ // got cached shape return shape; } // create and cache new shape return renderer.generatePolygon( name, points ); }; }; export default BRp; ================================================ FILE: src/extensions/renderer/base/redraw.mjs ================================================ import * as util from '../../../util/index.mjs'; var BRp = {}; BRp.timeToRender = function(){ return this.redrawTotalTime / this.redrawCount; }; BRp.redraw = function( options ){ options = options || util.staticEmptyObject(); var r = this; if( r.averageRedrawTime === undefined ){ r.averageRedrawTime = 0; } if( r.lastRedrawTime === undefined ){ r.lastRedrawTime = 0; } if( r.lastDrawTime === undefined ){ r.lastDrawTime = 0; } r.requestedFrame = true; r.renderOptions = options; }; BRp.beforeRender = function( fn, priority ){ // the renderer can't add tick callbacks when destroyed if( this.destroyed ){ return; } if( priority == null ){ util.error('Priority is not optional for beforeRender'); } var cbs = this.beforeRenderCallbacks; cbs.push({ fn: fn, priority: priority }); // higher priority callbacks executed first cbs.sort(function( a, b ){ return b.priority - a.priority; }); }; var beforeRenderCallbacks = function( r, willDraw, startTime ){ var cbs = r.beforeRenderCallbacks; for( var i = 0; i < cbs.length; i++ ){ cbs[i].fn( willDraw, startTime ); } }; BRp.startRenderLoop = function(){ var r = this; var cy = r.cy; if( r.renderLoopStarted ){ return; } else { r.renderLoopStarted = true; } var renderFn = function( requestTime ){ if( r.destroyed ){ return; } if( cy.batching() ){ // mid-batch, none of these should run // - pre frame hooks (calculations, texture caches, style, etc.) // - any drawing } else if( r.requestedFrame && !r.skipFrame ){ beforeRenderCallbacks( r, true, requestTime ); var startTime = util.performanceNow(); r.render( r.renderOptions ); var endTime = r.lastDrawTime = util.performanceNow(); if( r.averageRedrawTime === undefined ){ r.averageRedrawTime = endTime - startTime; } if( r.redrawCount === undefined ){ r.redrawCount = 0; } r.redrawCount++; if( r.redrawTotalTime === undefined ){ r.redrawTotalTime = 0; } var duration = endTime - startTime; r.redrawTotalTime += duration; r.lastRedrawTime = duration; // use a weighted average with a bias from the previous average so we don't spike so easily r.averageRedrawTime = r.averageRedrawTime / 2 + duration / 2; r.requestedFrame = false; } else { beforeRenderCallbacks( r, false, requestTime ); } r.skipFrame = false; util.requestAnimationFrame( renderFn ); }; util.requestAnimationFrame( renderFn ); }; export default BRp; ================================================ FILE: src/extensions/renderer/canvas/arrow-shapes.mjs ================================================ var CRp = {}; var impl; function polygon( context, points ){ for( var i = 0; i < points.length; i++ ){ var pt = points[ i ]; context.lineTo( pt.x, pt.y ); } } function triangleBackcurve( context, points, controlPoint ){ var firstPt; for( var i = 0; i < points.length; i++ ){ var pt = points[ i ]; if( i === 0 ){ firstPt = pt; } context.lineTo( pt.x, pt.y ); } context.quadraticCurveTo( controlPoint.x, controlPoint.y, firstPt.x, firstPt.y ); } function triangleTee( context, trianglePoints, teePoints ){ if( context.beginPath ){ context.beginPath(); } var triPts = trianglePoints; for( var i = 0; i < triPts.length; i++ ){ var pt = triPts[ i ]; context.lineTo( pt.x, pt.y ); } var teePts = teePoints; var firstTeePt = teePoints[0]; context.moveTo( firstTeePt.x, firstTeePt.y ); for( var i = 1; i < teePts.length; i++ ){ var pt = teePts[ i ]; context.lineTo( pt.x, pt.y ); } if( context.closePath ){ context.closePath(); } } function circleTriangle(context, trianglePoints, rx, ry, r) { if (context.beginPath) { context.beginPath(); } context.arc(rx, ry, r, 0, Math.PI * 2, false); var triPts = trianglePoints; var firstTrPt = triPts[0]; context.moveTo(firstTrPt.x, firstTrPt.y); for (var i = 0; i < triPts.length; i++) { var pt = triPts[i]; context.lineTo(pt.x, pt.y); } if (context.closePath) { context.closePath(); } } function circle( context, rx, ry, r ){ context.arc( rx, ry, r, 0, Math.PI * 2, false ); } CRp.arrowShapeImpl = function( name ){ return ( impl || (impl = { 'polygon': polygon, 'triangle-backcurve': triangleBackcurve, 'triangle-tee': triangleTee, 'circle-triangle' : circleTriangle, 'triangle-cross': triangleTee, 'circle': circle }) )[ name ]; }; export default CRp; ================================================ FILE: src/extensions/renderer/canvas/drawing-edges.mjs ================================================ /* global Path2D */ import * as util from '../../../util/index.mjs'; import {drawPreparedRoundCorner} from "../../../round.mjs"; let CRp = {}; CRp.drawEdge = function( context, edge, shiftToOriginWithBb, drawLabel = true, shouldDrawOverlay = true, shouldDrawOpacity = true ){ let r = this; let rs = edge._private.rscratch; if( shouldDrawOpacity && !edge.visible() ){ return; } // if bezier ctrl pts can not be calculated, then die if( rs.badLine || rs.allpts == null || isNaN(rs.allpts[0]) ){ // isNaN in case edge is impossible and browser bugs (e.g. safari) return; } let bb; if( shiftToOriginWithBb ){ bb = shiftToOriginWithBb; context.translate( -bb.x1, -bb.y1 ); } let opacity = shouldDrawOpacity ? edge.pstyle('opacity').value : 1; let lineOpacity = shouldDrawOpacity ? edge.pstyle('line-opacity').value : 1; let curveStyle = edge.pstyle('curve-style').value; let lineStyle = edge.pstyle('line-style').value; let edgeWidth = edge.pstyle('width').pfValue; let lineCap = edge.pstyle('line-cap').value; let lineOutlineWidth = edge.pstyle('line-outline-width').value; let lineOutlineColor = edge.pstyle('line-outline-color').value; let effectiveLineOpacity = opacity * lineOpacity; // separate arrow opacity would require arrow-opacity property let effectiveArrowOpacity = opacity * lineOpacity; let drawLine = ( strokeOpacity = effectiveLineOpacity) => { if (curveStyle === 'straight-triangle') { r.eleStrokeStyle( context, edge, strokeOpacity ); r.drawEdgeTrianglePath( edge, context, rs.allpts ); } else { context.lineWidth = edgeWidth; context.lineCap = lineCap; r.eleStrokeStyle( context, edge, strokeOpacity ); r.drawEdgePath( edge, context, rs.allpts, lineStyle ); context.lineCap = 'butt'; // reset for other drawing functions } }; let drawLineOutline = ( strokeOpacity = effectiveLineOpacity) => { context.lineWidth = edgeWidth + lineOutlineWidth; context.lineCap = lineCap; if (lineOutlineWidth > 0) { r.colorStrokeStyle( context, lineOutlineColor[0], lineOutlineColor[1], lineOutlineColor[2], strokeOpacity ); } else { // do not draw any lineOutline context.lineCap = 'butt'; // reset for other drawing functions return; } if (curveStyle === 'straight-triangle') { r.drawEdgeTrianglePath( edge, context, rs.allpts ); } else { r.drawEdgePath( edge, context, rs.allpts, lineStyle ); context.lineCap = 'butt'; // reset for other drawing functions } }; let drawOverlay = () => { if( !shouldDrawOverlay ){ return; } r.drawEdgeOverlay( context, edge ); }; let drawUnderlay = () => { if( !shouldDrawOverlay ){ return; } r.drawEdgeUnderlay( context, edge ); }; let drawArrows = ( arrowOpacity = effectiveArrowOpacity) => { r.drawArrowheads( context, edge, arrowOpacity ); }; let drawText = () => { r.drawElementText( context, edge, null, drawLabel ); }; context.lineJoin = 'round'; let ghost = edge.pstyle('ghost').value === 'yes'; if( ghost ){ let gx = edge.pstyle('ghost-offset-x').pfValue; let gy = edge.pstyle('ghost-offset-y').pfValue; let ghostOpacity = edge.pstyle('ghost-opacity').value; let effectiveGhostOpacity = effectiveLineOpacity * ghostOpacity; context.translate( gx, gy ); drawLine( effectiveGhostOpacity ); drawArrows( effectiveGhostOpacity ); context.translate( -gx, -gy ); } else { drawLineOutline(); } drawUnderlay(); drawLine(); drawArrows(); drawOverlay(); drawText(); if( shiftToOriginWithBb ){ context.translate( bb.x1, bb.y1 ); } }; const drawEdgeOverlayUnderlay = function( overlayOrUnderlay ) { if (!['overlay', 'underlay'].includes(overlayOrUnderlay)) { throw new Error('Invalid state'); } return function( context, edge ){ if( !edge.visible() ){ return; } let opacity = edge.pstyle(`${overlayOrUnderlay}-opacity`).value; if( opacity === 0 ){ return; } let r = this; let usePaths = r.usePaths(); let rs = edge._private.rscratch; let padding = edge.pstyle(`${overlayOrUnderlay}-padding`).pfValue; let width = 2 * padding; let color = edge.pstyle(`${overlayOrUnderlay}-color`).value; context.lineWidth = width; if( rs.edgeType === 'self' && !usePaths ){ context.lineCap = 'butt'; } else { context.lineCap = 'round'; } r.colorStrokeStyle( context, color[0], color[1], color[2], opacity ); r.drawEdgePath( edge, context, rs.allpts, 'solid' ); }; }; CRp.drawEdgeOverlay = drawEdgeOverlayUnderlay('overlay'); CRp.drawEdgeUnderlay = drawEdgeOverlayUnderlay('underlay'); CRp.drawEdgePath = function( edge, context, pts, type ){ let rs = edge._private.rscratch; let canvasCxt = context; let path; let pathCacheHit = false; let usePaths = this.usePaths(); let lineDashPattern = edge.pstyle('line-dash-pattern').pfValue; let lineDashOffset = edge.pstyle('line-dash-offset').pfValue; if( usePaths ){ let pathCacheKey = pts.join( '$' ); let keyMatches = rs.pathCacheKey && rs.pathCacheKey === pathCacheKey; if( keyMatches ){ path = context = rs.pathCache; pathCacheHit = true; } else { path = context = new Path2D(); rs.pathCacheKey = pathCacheKey; rs.pathCache = path; } } if( canvasCxt.setLineDash ){ // for very outofdate browsers switch( type ){ case 'dotted': canvasCxt.setLineDash( [ 1, 1 ] ); break; case 'dashed': canvasCxt.setLineDash( lineDashPattern ); canvasCxt.lineDashOffset = lineDashOffset; break; case 'solid': canvasCxt.setLineDash( [ ] ); break; } } if( !pathCacheHit && !rs.badLine ){ if( context.beginPath ){ context.beginPath(); } context.moveTo( pts[0], pts[1] ); switch( rs.edgeType ){ case 'bezier': case 'self': case 'compound': case 'multibezier': for( let i = 2; i + 3 < pts.length; i += 4 ){ context.quadraticCurveTo( pts[ i ], pts[ i + 1], pts[ i + 2], pts[ i + 3] ); } break; case 'straight': case 'haystack': for( let i = 2; i + 1 < pts.length; i += 2 ) { context.lineTo( pts[ i ], pts[ i + 1] ); } break; case 'segments': if (rs.isRound) { for( let corner of rs.roundCorners ){ drawPreparedRoundCorner(context, corner); } context.lineTo( pts[ pts.length - 2 ], pts[ pts.length - 1] ); } else { for( let i = 2; i + 1 < pts.length; i += 2 ) { context.lineTo( pts[ i ], pts[ i + 1] ); } } break; } } context = canvasCxt; if( usePaths ){ context.stroke( path ); } else { context.stroke(); } // reset any line dashes if( context.setLineDash ){ // for very outofdate browsers context.setLineDash( [ ] ); } }; CRp.drawEdgeTrianglePath = function( edge, context, pts ){ // use line stroke style for triangle fill style context.fillStyle = context.strokeStyle; let edgeWidth = edge.pstyle('width').pfValue; for( let i = 0; i + 1 < pts.length; i += 2 ){ const vector = [ pts[ i + 2 ] - pts[ i ], pts[ i + 3 ] - pts[ i + 1 ] ]; const length = Math.sqrt( vector[0] * vector[0] + vector[1] * vector[1] ); const normal = [ vector[1] / length, -vector[0] / length ]; const triangleHead = [ normal[0] * edgeWidth / 2, normal[1] * edgeWidth / 2 ]; context.beginPath(); context.moveTo( pts[ i ] - triangleHead[0], pts[ i + 1 ] - triangleHead[1] ); context.lineTo( pts[ i ] + triangleHead[0], pts[ i + 1 ] + triangleHead[1] ); context.lineTo( pts[ i + 2 ], pts[ i + 3 ] ); context.closePath(); context.fill(); } }; CRp.drawArrowheads = function( context, edge, opacity ){ let rs = edge._private.rscratch; let isHaystack = rs.edgeType === 'haystack'; if( !isHaystack ){ this.drawArrowhead( context, edge, 'source', rs.arrowStartX, rs.arrowStartY, rs.srcArrowAngle, opacity ); } this.drawArrowhead( context, edge, 'mid-target', rs.midX, rs.midY, rs.midtgtArrowAngle, opacity ); this.drawArrowhead( context, edge, 'mid-source', rs.midX, rs.midY, rs.midsrcArrowAngle, opacity ); if( !isHaystack ){ this.drawArrowhead( context, edge, 'target', rs.arrowEndX, rs.arrowEndY, rs.tgtArrowAngle, opacity ); } }; CRp.drawArrowhead = function( context, edge, prefix, x, y, angle, opacity ){ if( isNaN( x ) || x == null || isNaN( y ) || y == null || isNaN( angle ) || angle == null ){ return; } let self = this; let arrowShape = edge.pstyle( prefix + '-arrow-shape' ).value; if( arrowShape === 'none' ) { return; } let arrowClearFill = edge.pstyle( prefix + '-arrow-fill' ).value === 'hollow' ? 'both' : 'filled'; let arrowFill = edge.pstyle( prefix + '-arrow-fill' ).value; let edgeWidth = edge.pstyle( 'width' ).pfValue; let pArrowWidth = edge.pstyle( prefix + '-arrow-width' ); let arrowWidth = pArrowWidth.value === 'match-line' ? edgeWidth : pArrowWidth.pfValue; if (pArrowWidth.units === '%') arrowWidth *= edgeWidth; let edgeOpacity = edge.pstyle( 'opacity' ).value; if( opacity === undefined ){ opacity = edgeOpacity; } let gco = context.globalCompositeOperation; if( opacity !== 1 || arrowFill === 'hollow' ){ // then extra clear is needed context.globalCompositeOperation = 'destination-out'; self.colorFillStyle( context, 255, 255, 255, 1 ); self.colorStrokeStyle( context, 255, 255, 255, 1 ); self.drawArrowShape( edge, context, arrowClearFill, edgeWidth, arrowShape, arrowWidth, x, y, angle ); context.globalCompositeOperation = gco; } // otherwise, the opaque arrow clears it for free :) let color = edge.pstyle( prefix + '-arrow-color' ).value; self.colorFillStyle( context, color[0], color[1], color[2], opacity ); self.colorStrokeStyle( context, color[0], color[1], color[2], opacity ); self.drawArrowShape( edge, context, arrowFill, edgeWidth, arrowShape, arrowWidth, x, y, angle ); }; CRp.drawArrowShape = function( edge, context, fill, edgeWidth, shape, shapeWidth, x, y, angle ){ let r = this; let usePaths = this.usePaths() && shape !== 'triangle-cross'; let pathCacheHit = false; let path; let canvasContext = context; let translation = { x, y }; let scale = edge.pstyle( 'arrow-scale' ).value; let size = this.getArrowWidth( edgeWidth, scale ); let shapeImpl = r.arrowShapes[ shape ]; if( usePaths ){ let cache = r.arrowPathCache = r.arrowPathCache || []; let key = util.hashString(shape); let cachedPath = cache[ key ]; if( cachedPath != null ){ path = context = cachedPath; pathCacheHit = true; } else { path = context = new Path2D(); cache[ key ] = path; } } if( !pathCacheHit ){ if( context.beginPath ){ context.beginPath(); } if( usePaths ){ // store in the path cache with values easily manipulated later shapeImpl.draw( context, 1, 0, { x: 0, y: 0 }, 1 ); } else { shapeImpl.draw( context, size, angle, translation, edgeWidth ); } if( context.closePath ){ context.closePath(); } } context = canvasContext; if( usePaths ){ // set transform to arrow position/orientation context.translate( x, y ); context.rotate( angle ); context.scale( size, size ); } if( fill === 'filled' || fill === 'both' ){ if( usePaths ){ context.fill( path ); } else { context.fill(); } } if( fill === 'hollow' || fill === 'both' ){ context.lineWidth = shapeWidth / (usePaths ? size : 1); context.lineJoin = 'miter'; if( usePaths ){ context.stroke( path ); } else { context.stroke(); } } if( usePaths ){ // reset transform by applying inverse context.scale( 1/size, 1/size ); context.rotate( -angle ); context.translate( -x, -y ); } }; export default CRp; ================================================ FILE: src/extensions/renderer/canvas/drawing-elements.mjs ================================================ import * as math from '../../../math.mjs'; let CRp = {}; CRp.drawElement = function( context, ele, shiftToOriginWithBb, showLabel, showOverlay, showOpacity ){ let r = this; if( ele.isNode() ){ r.drawNode( context, ele, shiftToOriginWithBb, showLabel, showOverlay, showOpacity ); } else { r.drawEdge( context, ele, shiftToOriginWithBb, showLabel, showOverlay, showOpacity ); } }; CRp.drawElementOverlay = function( context, ele ){ let r = this; if( ele.isNode() ){ r.drawNodeOverlay( context, ele ); } else { r.drawEdgeOverlay( context, ele ); } }; CRp.drawElementUnderlay = function( context, ele ){ let r = this; if( ele.isNode() ){ r.drawNodeUnderlay( context, ele ); } else { r.drawEdgeUnderlay( context, ele ); } }; CRp.drawCachedElementPortion = function( context, ele, eleTxrCache, pxRatio, lvl, reason, getRotation, getOpacity ){ let r = this; let bb = eleTxrCache.getBoundingBox(ele); if( bb.w === 0 || bb.h === 0 ){ return; } // ignore zero size case let eleCache = eleTxrCache.getElement( ele, bb, pxRatio, lvl, reason ); if( eleCache != null ){ let opacity = getOpacity(r, ele); if( opacity === 0 ){ return; } let theta = getRotation(r, ele); let { x1, y1, w, h } = bb; let x, y, sx, sy, smooth; if( theta !== 0 ){ let rotPt = eleTxrCache.getRotationPoint(ele); sx = rotPt.x; sy = rotPt.y; context.translate(sx, sy); context.rotate(theta); smooth = r.getImgSmoothing(context); if( !smooth ){ r.setImgSmoothing(context, true); } let off = eleTxrCache.getRotationOffset(ele); x = off.x; y = off.y; } else { x = x1; y = y1; } let oldGlobalAlpha; if( opacity !== 1 ){ oldGlobalAlpha = context.globalAlpha; context.globalAlpha = oldGlobalAlpha * opacity; } context.drawImage( eleCache.texture.canvas, eleCache.x, 0, eleCache.width, eleCache.height, x, y, w, h ); if( opacity !== 1 ){ context.globalAlpha = oldGlobalAlpha; } if( theta !== 0 ){ context.rotate(-theta); context.translate(-sx, -sy); if( !smooth ){ r.setImgSmoothing(context, false); } } } else { eleTxrCache.drawElement( context, ele ); // direct draw fallback } }; const getZeroRotation = () => 0; const getLabelRotation = (r, ele) => r.getTextAngle(ele, null); const getSourceLabelRotation = (r, ele) => r.getTextAngle(ele, 'source'); const getTargetLabelRotation = (r, ele) => r.getTextAngle(ele, 'target'); const getOpacity = (r, ele) => ele.effectiveOpacity(); const getTextOpacity = (e, ele) => ele.pstyle('text-opacity').pfValue * ele.effectiveOpacity(); CRp.drawCachedElement = function( context, ele, pxRatio, extent, lvl, requestHighQuality ){ let r = this; let { eleTxrCache, lblTxrCache, slbTxrCache, tlbTxrCache } = r.data; let bb = ele.boundingBox(); let reason = requestHighQuality === true ? eleTxrCache.reasons.highQuality : null; if( bb.w === 0 || bb.h === 0 || !ele.visible() ){ return; } if( !extent || math.boundingBoxesIntersect( bb, extent ) ){ let isEdge = ele.isEdge(); let badLine = ele.element()._private.rscratch.badLine; r.drawElementUnderlay( context, ele ); r.drawCachedElementPortion( context, ele, eleTxrCache, pxRatio, lvl, reason, getZeroRotation, getOpacity ); if( !isEdge || !badLine ){ r.drawCachedElementPortion( context, ele, lblTxrCache, pxRatio, lvl, reason, getLabelRotation, getTextOpacity ); } if( isEdge && !badLine ){ r.drawCachedElementPortion( context, ele, slbTxrCache, pxRatio, lvl, reason, getSourceLabelRotation, getTextOpacity ); r.drawCachedElementPortion( context, ele, tlbTxrCache, pxRatio, lvl, reason, getTargetLabelRotation, getTextOpacity ); } r.drawElementOverlay( context, ele ); } }; CRp.drawElements = function( context, eles ){ let r = this; for( let i = 0; i < eles.length; i++ ){ let ele = eles[ i ]; r.drawElement( context, ele ); } }; CRp.drawCachedElements = function( context, eles, pxRatio, extent ){ let r = this; for( let i = 0; i < eles.length; i++ ){ let ele = eles[ i ]; r.drawCachedElement( context, ele, pxRatio, extent ); } }; CRp.drawCachedNodes = function( context, eles, pxRatio, extent ){ let r = this; for( let i = 0; i < eles.length; i++ ){ let ele = eles[ i ]; if( !ele.isNode() ){ continue; } r.drawCachedElement( context, ele, pxRatio, extent ); } }; CRp.drawLayeredElements = function( context, eles, pxRatio, extent ){ let r = this; let layers = r.data.lyrTxrCache.getLayers( eles, pxRatio ); if( layers ){ for( let i = 0; i < layers.length; i++ ){ let layer = layers[i]; let bb = layer.bb; if( bb.w === 0 || bb.h === 0 ){ continue; } context.drawImage( layer.canvas, bb.x1, bb.y1, bb.w, bb.h ); } } else { // fall back on plain caching if no layers r.drawCachedElements( context, eles, pxRatio, extent ); } }; if( process.env.NODE_ENV !== 'production' ){ CRp.drawDebugPoints = function( context, eles ){ let draw = function( x, y, color ){ context.fillStyle = color; context.fillRect( x - 1, y - 1, 3, 3 ); }; for( let i = 0; i < eles.length; i++ ){ let ele = eles[i]; let rs = ele._private.rscratch; if( ele.isNode() ){ let p = ele.position(); draw( rs.labelX, rs.labelY, 'red' ); draw( p.x, p.y, 'magenta' ); } else { let pts = rs.allpts; for( let j = 0; j + 1 < pts.length; j += 2 ){ let x = pts[ j ]; let y = pts[ j + 1 ]; draw( x, y, 'cyan' ); } draw( rs.midX, rs.midY, 'yellow' ); } } }; } export default CRp; ================================================ FILE: src/extensions/renderer/canvas/drawing-images.mjs ================================================ import * as util from '../../../util/index.mjs'; var CRp = {}; CRp.safeDrawImage = function( context, img, ix, iy, iw, ih, x, y, w, h ){ // detect problematic cases for old browsers with bad images (cheaper than try-catch) if( iw <= 0 || ih <= 0 || w <= 0 || h <= 0 ){ return; } try { context.drawImage( img, ix, iy, iw, ih, x, y, w, h ); } catch (e) { util.warn(e); } }; CRp.drawInscribedImage = function( context, img, node, index, nodeOpacity ){ var r = this; var pos = node.position(); var nodeX = pos.x; var nodeY = pos.y; var styleObj = node.cy().style(); var getIndexedStyle = styleObj.getIndexedStyle.bind( styleObj ); var fit = getIndexedStyle( node, 'background-fit', 'value', index ); var repeat = getIndexedStyle( node, 'background-repeat', 'value', index ); var nodeW = node.width(); var nodeH = node.height(); var paddingX2 = node.padding() * 2; var nodeTW = nodeW + ( getIndexedStyle( node, 'background-width-relative-to', 'value', index ) === 'inner' ? 0 : paddingX2 ); var nodeTH = nodeH + ( getIndexedStyle( node, 'background-height-relative-to', 'value', index ) === 'inner' ? 0 : paddingX2 ); var rs = node._private.rscratch; var clip = getIndexedStyle( node, 'background-clip', 'value', index ); var shouldClip = clip === 'node'; var imgOpacity = getIndexedStyle( node, 'background-image-opacity', 'value', index ) * nodeOpacity; var smooth = getIndexedStyle( node, 'background-image-smoothing', 'value', index ); var cornerRadius = node.pstyle('corner-radius').value; if (cornerRadius !== 'auto') cornerRadius = node.pstyle('corner-radius').pfValue; var imgW = img.width || img.cachedW; var imgH = img.height || img.cachedH; // workaround for broken browsers like ie if( null == imgW || null == imgH ){ document.body.appendChild( img ); // eslint-disable-line no-undef imgW = img.cachedW = img.width || img.offsetWidth; imgH = img.cachedH = img.height || img.offsetHeight; document.body.removeChild( img ); // eslint-disable-line no-undef } var w = imgW; var h = imgH; if( getIndexedStyle( node, 'background-width', 'value', index ) !== 'auto' ){ if( getIndexedStyle( node, 'background-width', 'units', index ) === '%' ){ w = getIndexedStyle( node, 'background-width', 'pfValue', index ) * nodeTW; } else { w = getIndexedStyle( node, 'background-width', 'pfValue', index ); } } if( getIndexedStyle( node, 'background-height', 'value', index ) !== 'auto' ){ if( getIndexedStyle( node, 'background-height', 'units', index ) === '%' ){ h = getIndexedStyle( node, 'background-height', 'pfValue', index ) * nodeTH; } else { h = getIndexedStyle( node, 'background-height', 'pfValue', index ); } } if( w === 0 || h === 0 ){ return; // no point in drawing empty image (and chrome is broken in this case) } if( fit === 'contain' ){ var scale = Math.min( nodeTW / w, nodeTH / h ); w *= scale; h *= scale; } else if( fit === 'cover' ){ var scale = Math.max( nodeTW / w, nodeTH / h ); w *= scale; h *= scale; } var x = (nodeX - nodeTW / 2); // left var posXUnits = getIndexedStyle( node, 'background-position-x', 'units', index ); var posXPfVal = getIndexedStyle( node, 'background-position-x', 'pfValue', index ); if( posXUnits === '%' ){ x += (nodeTW - w) * posXPfVal; } else { x += posXPfVal; } var offXUnits = getIndexedStyle( node, 'background-offset-x', 'units', index ); var offXPfVal = getIndexedStyle( node, 'background-offset-x', 'pfValue', index ); if( offXUnits === '%' ){ x += (nodeTW - w) * offXPfVal; } else { x += offXPfVal; } var y = (nodeY - nodeTH / 2); // top var posYUnits = getIndexedStyle( node, 'background-position-y', 'units', index ); var posYPfVal = getIndexedStyle( node, 'background-position-y', 'pfValue', index ); if( posYUnits === '%' ){ y += (nodeTH - h) * posYPfVal; } else { y += posYPfVal; } var offYUnits = getIndexedStyle( node, 'background-offset-y', 'units', index ); var offYPfVal = getIndexedStyle( node, 'background-offset-y', 'pfValue', index ); if( offYUnits === '%' ){ y += (nodeTH - h) * offYPfVal; } else { y += offYPfVal; } if( rs.pathCache ){ x -= nodeX; y -= nodeY; nodeX = 0; nodeY = 0; } var gAlpha = context.globalAlpha; context.globalAlpha = imgOpacity; var smoothingEnabled = r.getImgSmoothing( context ); var isSmoothingSwitched = false; if( smooth === 'no' && smoothingEnabled ){ r.setImgSmoothing( context, false ); isSmoothingSwitched = true; } else if( smooth === 'yes' && !smoothingEnabled ){ r.setImgSmoothing( context, true ); isSmoothingSwitched = true; } if( repeat === 'no-repeat' ){ if( shouldClip ){ context.save(); if( rs.pathCache ){ context.clip( rs.pathCache ); } else { r.nodeShapes[ r.getNodeShape( node ) ].draw( context, nodeX, nodeY, nodeTW, nodeTH, cornerRadius, rs ); context.clip(); } } r.safeDrawImage( context, img, 0, 0, imgW, imgH, x, y, w, h ); if( shouldClip ){ context.restore(); } } else { var pattern = context.createPattern( img, repeat ); context.fillStyle = pattern; r.nodeShapes[ r.getNodeShape( node ) ].draw( context, nodeX, nodeY, nodeTW, nodeTH, cornerRadius, rs); context.translate( x, y ); context.fill(); context.translate( -x, -y ); } context.globalAlpha = gAlpha; if( isSmoothingSwitched ){ r.setImgSmoothing( context, smoothingEnabled ); } }; export default CRp; ================================================ FILE: src/extensions/renderer/canvas/drawing-label-text.mjs ================================================ import * as util from '../../../util/index.mjs'; import * as math from '../../../math.mjs'; let CRp = {}; CRp.eleTextBiggerThanMin = function( ele, scale ){ if( !scale ){ let zoom = ele.cy().zoom(); let pxRatio = this.getPixelRatio(); let lvl = Math.ceil( math.log2( zoom * pxRatio ) ); // the effective texture level scale = Math.pow( 2, lvl ); } let computedSize = ele.pstyle( 'font-size' ).pfValue * scale; let minSize = ele.pstyle( 'min-zoomed-font-size' ).pfValue; if( computedSize < minSize ){ return false; } return true; }; CRp.drawElementText = function( context, ele, shiftToOriginWithBb, force, prefix, useEleOpacity = true ){ let r = this; if( force == null ){ if( useEleOpacity && !r.eleTextBiggerThanMin( ele ) ){ return; } } else if( force === false ){ return; } if( ele.isNode() ){ let label = ele.pstyle( 'label' ); if( !label || !label.value ){ return; } let justification = r.getLabelJustification(ele); context.textAlign = justification; context.textBaseline = 'bottom'; } else { let badLine = ele.element()._private.rscratch.badLine; let label = ele.pstyle( 'label' ); let srcLabel = ele.pstyle( 'source-label' ); let tgtLabel = ele.pstyle( 'target-label' ); if( badLine || ( ( !label || !label.value ) && ( !srcLabel || !srcLabel.value ) && ( !tgtLabel || !tgtLabel.value ) ) ){ return; } context.textAlign = 'center'; context.textBaseline = 'bottom'; } let applyRotation = !shiftToOriginWithBb; let bb; if( shiftToOriginWithBb ){ bb = shiftToOriginWithBb; context.translate( -bb.x1, -bb.y1 ); } if( prefix == null ){ r.drawText( context, ele, null, applyRotation, useEleOpacity ); if( ele.isEdge() ){ r.drawText( context, ele, 'source', applyRotation, useEleOpacity ); r.drawText( context, ele, 'target', applyRotation, useEleOpacity ); } } else { r.drawText( context, ele, prefix, applyRotation, useEleOpacity ); } if( shiftToOriginWithBb ){ context.translate( bb.x1, bb.y1 ); } }; CRp.getFontCache = function( context ){ let cache; this.fontCaches = this.fontCaches || []; for( let i = 0; i < this.fontCaches.length; i++ ){ cache = this.fontCaches[ i ]; if( cache.context === context ){ return cache; } } cache = { context: context }; this.fontCaches.push( cache ); return cache; }; // set up canvas context with font // returns transformed text string CRp.setupTextStyle = function( context, ele, useEleOpacity = true ){ // Font style let labelStyle = ele.pstyle( 'font-style' ).strValue; let labelSize = ele.pstyle( 'font-size' ).pfValue + 'px'; let labelFamily = ele.pstyle( 'font-family' ).strValue; let labelWeight = ele.pstyle( 'font-weight' ).strValue; let opacity = (useEleOpacity ? ele.effectiveOpacity() * ele.pstyle('text-opacity').value : 1); let outlineOpacity = ele.pstyle( 'text-outline-opacity' ).value * opacity; let color = ele.pstyle( 'color' ).value; let outlineColor = ele.pstyle( 'text-outline-color' ).value; context.font = labelStyle + ' ' + labelWeight + ' ' + labelSize + ' ' + labelFamily; context.lineJoin = 'round'; // so text outlines aren't jagged this.colorFillStyle( context, color[ 0 ], color[ 1 ], color[ 2 ], opacity ); this.colorStrokeStyle( context, outlineColor[ 0 ], outlineColor[ 1 ], outlineColor[ 2 ], outlineOpacity ); }; function circle(ctx, x, y, width, height) { const diameter = Math.min(width, height); const radius = diameter / 2; const centerX = x + width / 2; const centerY = y + height / 2; ctx.beginPath(); ctx.arc(centerX, centerY, radius, 0, Math.PI * 2); ctx.closePath(); } function roundRect(ctx, x, y, width, height, radius = 5) { const r = Math.min(radius, width / 2, height / 2); // prevent overflow ctx.beginPath(); ctx.moveTo(x + r, y); ctx.lineTo(x + width - r, y); ctx.quadraticCurveTo(x + width, y, x + width, y + r); ctx.lineTo(x + width, y + height - r); ctx.quadraticCurveTo(x + width, y + height, x + width - r, y + height); ctx.lineTo(x + r, y + height); ctx.quadraticCurveTo(x, y + height, x, y + height - r); ctx.lineTo(x, y + r); ctx.quadraticCurveTo(x, y, x + r, y); ctx.closePath(); } CRp.getTextAngle = function( ele, prefix ){ let theta; let _p = ele._private; let rscratch = _p.rscratch; let pdash = prefix ? prefix + '-' : ''; let rotation = ele.pstyle( pdash + 'text-rotation' ); if( rotation.strValue === 'autorotate' ){ let textAngle = util.getPrefixedProperty( rscratch, 'labelAngle', prefix ); theta = ele.isEdge() ? textAngle : 0; } else if( rotation.strValue === 'none' ){ theta = 0; } else { theta = rotation.pfValue; } return theta; }; CRp.drawText = function( context, ele, prefix, applyRotation = true, useEleOpacity = true ){ let _p = ele._private; let rscratch = _p.rscratch; let parentOpacity = useEleOpacity ? ele.effectiveOpacity() : 1; if( useEleOpacity && (parentOpacity === 0 || ele.pstyle( 'text-opacity' ).value === 0) ){ return; } // use 'main' as an alias for the main label (i.e. null prefix) if( prefix === 'main' ){ prefix = null; } let textX = util.getPrefixedProperty( rscratch, 'labelX', prefix ); let textY = util.getPrefixedProperty( rscratch, 'labelY', prefix ); let orgTextX, orgTextY; // used for rotation let text = this.getLabelText( ele, prefix ); if( text != null && text !== '' && !isNaN( textX ) && !isNaN( textY ) ){ this.setupTextStyle( context, ele, useEleOpacity ); let pdash = prefix ? prefix + '-' : ''; let textW = util.getPrefixedProperty( rscratch, 'labelWidth', prefix ); let textH = util.getPrefixedProperty( rscratch, 'labelHeight', prefix ); let marginX = ele.pstyle( pdash + 'text-margin-x' ).pfValue; let marginY = ele.pstyle( pdash + 'text-margin-y' ).pfValue; let isEdge = ele.isEdge(); let halign = ele.pstyle( 'text-halign' ).value; let valign = ele.pstyle( 'text-valign' ).value; if( isEdge ){ halign = 'center'; valign = 'center'; } textX += marginX; textY += marginY; let theta; if( !applyRotation ){ theta = 0; } else { theta = this.getTextAngle(ele, prefix); } if( theta !== 0 ){ orgTextX = textX; orgTextY = textY; context.translate( orgTextX, orgTextY ); context.rotate( theta ); textX = 0; textY = 0; } switch( valign ){ case 'top': break; case 'center': textY += textH / 2; break; case 'bottom': textY += textH; break; } let backgroundOpacity = ele.pstyle( 'text-background-opacity' ).value; let borderOpacity = ele.pstyle( 'text-border-opacity' ).value; let textBorderWidth = ele.pstyle( 'text-border-width' ).pfValue; let backgroundPadding = ele.pstyle( 'text-background-padding' ).pfValue; let styleShape = ele.pstyle( 'text-background-shape' ).strValue; let rounded = styleShape === 'round-rectangle' || styleShape === 'roundrectangle'; let circled = styleShape === 'circle'; let roundRadius = 2; if( backgroundOpacity > 0 || ( textBorderWidth > 0 && borderOpacity > 0 ) ){ let textFill = context.fillStyle; let textStroke = context.strokeStyle; let textLineWidth = context.lineWidth; let textBackgroundColor = ele.pstyle( 'text-background-color' ).value; let textBorderColor = ele.pstyle( 'text-border-color' ).value; let textBorderStyle = ele.pstyle( 'text-border-style' ).value; let doFill = backgroundOpacity > 0; let doStroke = textBorderWidth > 0 && borderOpacity > 0; let bgX = textX - backgroundPadding; switch( halign ){ case 'left': bgX -= textW; break; case 'center': bgX -= textW / 2; break; } let bgY = textY - textH - backgroundPadding; let bgW = textW + 2*backgroundPadding; let bgH = textH + 2*backgroundPadding; if( doFill ){ context.fillStyle = `rgba(${textBackgroundColor[0]},${textBackgroundColor[1]},${textBackgroundColor[2]},${backgroundOpacity * parentOpacity})`; } if( doStroke ){ context.strokeStyle = `rgba(${textBorderColor[0]},${textBorderColor[1]},${textBorderColor[2]},${borderOpacity * parentOpacity})`; context.lineWidth = textBorderWidth; if( context.setLineDash ){ switch( textBorderStyle ){ case 'dotted': context.setLineDash([1, 1]); break; case 'dashed': context.setLineDash([4, 2]); break; case 'double': context.lineWidth = textBorderWidth / 4; context.setLineDash([]); break; case 'solid': default: context.setLineDash([]); break; } } } if( rounded ){ context.beginPath(); roundRect(context, bgX, bgY, bgW, bgH, roundRadius); } else if (circled){ context.beginPath(); circle(context, bgX, bgY, bgW, bgH); } else { context.beginPath(); context.rect(bgX, bgY, bgW, bgH); } if( doFill ) context.fill(); if( doStroke ) context.stroke(); // Double border pass for 'double' style if( doStroke && textBorderStyle === 'double' ){ let whiteWidth = textBorderWidth / 2; context.beginPath(); if( rounded ){ roundRect(context, bgX + whiteWidth, bgY + whiteWidth, bgW - 2*whiteWidth, bgH - 2*whiteWidth, roundRadius); } else { context.rect(bgX + whiteWidth, bgY + whiteWidth, bgW - 2*whiteWidth, bgH - 2*whiteWidth); } context.stroke(); } context.fillStyle = textFill; context.strokeStyle = textStroke; context.lineWidth = textLineWidth; if( context.setLineDash ) context.setLineDash([]); } let lineWidth = 2 * ele.pstyle( 'text-outline-width' ).pfValue; // *2 b/c the stroke is drawn centred on the middle if( lineWidth > 0 ){ context.lineWidth = lineWidth; } if( ele.pstyle( 'text-wrap' ).value === 'wrap' ){ let lines = util.getPrefixedProperty( rscratch, 'labelWrapCachedLines', prefix ); let lineHeight = util.getPrefixedProperty( rscratch, 'labelLineHeight', prefix ); let halfTextW = textW/2; let justification = this.getLabelJustification(ele); if( justification === 'auto' ){ // then it's already ok, so skip all the other ifs } else if( halign === 'left' ){ // auto justification : right if( justification === 'left' ){ textX += -textW; } else if( justification === 'center' ){ textX += -halfTextW; } // else same as auto } else if( halign === 'center' ){ // auto justfication : center if( justification === 'left' ){ textX += -halfTextW; } else if( justification === 'right' ){ textX += halfTextW; } // else same as auto } else if( halign === 'right' ){ // auto justification : left if( justification === 'center' ){ textX += halfTextW; } else if( justification === 'right' ){ textX += textW; } // else same as auto } switch( valign ){ case 'top': textY -= ( lines.length - 1 ) * lineHeight; break; case 'center': case 'bottom': textY -= ( lines.length - 1 ) * lineHeight; break; } for( let l = 0; l < lines.length; l++ ){ if( lineWidth > 0 ){ context.strokeText( lines[ l ], textX, textY ); } context.fillText( lines[ l ], textX, textY ); textY += lineHeight; } } else { if( lineWidth > 0 ){ context.strokeText( text, textX, textY ); } context.fillText( text, textX, textY ); } if( theta !== 0 ){ context.rotate( -theta ); context.translate( -orgTextX, -orgTextY ); } } }; export default CRp; ================================================ FILE: src/extensions/renderer/canvas/drawing-nodes.mjs ================================================ /* global Path2D */ import * as is from '../../../is.mjs'; import {expandPolygon, joinLines} from '../../../math.mjs'; import * as util from '../../../util/index.mjs'; import * as round from "../../../round.mjs"; import * as math from "../../../math.mjs"; let CRp = {}; CRp.drawNode = function( context, node, shiftToOriginWithBb, drawLabel = true, shouldDrawOverlay = true, shouldDrawOpacity = true ){ let r = this; let nodeWidth, nodeHeight; let _p = node._private; let rs = _p.rscratch; let pos = node.position(); if( !is.number( pos.x ) || !is.number( pos.y ) ){ return; // can't draw node with undefined position } if( shouldDrawOpacity && !node.visible() ){ return; } let eleOpacity = shouldDrawOpacity ? node.effectiveOpacity() : 1; let usePaths = r.usePaths(); let path; let pathCacheHit = false; let padding = node.padding(); nodeWidth = node.width() + 2 * padding; nodeHeight = node.height() + 2 * padding; // // setup shift let bb; if( shiftToOriginWithBb ){ bb = shiftToOriginWithBb; context.translate( -bb.x1, -bb.y1 ); } // // load bg image let bgImgProp = node.pstyle( 'background-image' ); let urls = bgImgProp.value; let urlDefined = new Array( urls.length ); let image = new Array( urls.length ); let numImages = 0; for( let i = 0; i < urls.length; i++ ){ let url = urls[i]; let defd = urlDefined[i] = url != null && url !== 'none'; if( defd ){ let bgImgCrossOrigin = node.cy().style().getIndexedStyle(node, 'background-image-crossorigin', 'value', i); numImages++; // get image, and if not loaded then ask to redraw when later loaded image[i] = r.getCachedImage( url, bgImgCrossOrigin, function(){ _p.backgroundTimestamp = Date.now(); node.emitAndNotify('background'); } ); } } // // setup styles let darkness = node.pstyle('background-blacken').value; let borderWidth = node.pstyle('border-width').pfValue; let bgOpacity = node.pstyle('background-opacity').value * eleOpacity; let borderColor = node.pstyle('border-color').value; let borderStyle = node.pstyle('border-style').value; let borderJoin = node.pstyle('border-join').value; let borderCap = node.pstyle('border-cap').value; let borderPosition = node.pstyle('border-position').value; let borderPattern = node.pstyle('border-dash-pattern').pfValue; let borderOffset = node.pstyle('border-dash-offset').pfValue; let borderOpacity = node.pstyle('border-opacity').value * eleOpacity; let outlineWidth = node.pstyle('outline-width').pfValue; let outlineColor = node.pstyle('outline-color').value; let outlineStyle = node.pstyle('outline-style').value; let outlineOpacity = node.pstyle('outline-opacity').value * eleOpacity; let outlineOffset = node.pstyle('outline-offset').value; let cornerRadius = node.pstyle('corner-radius').value; if (cornerRadius !== 'auto') cornerRadius = node.pstyle('corner-radius').pfValue; let setupShapeColor = ( bgOpy = bgOpacity ) => { r.eleFillStyle( context, node, bgOpy ); }; let setupBorderColor = ( bdrOpy = borderOpacity ) => { r.colorStrokeStyle( context, borderColor[0], borderColor[1], borderColor[2], bdrOpy ); }; let setupOutlineColor = ( otlnOpy = outlineOpacity ) => { r.colorStrokeStyle( context, outlineColor[0], outlineColor[1], outlineColor[2], otlnOpy ); }; // // setup shape let getPath = (width, height, shape, points) => { let pathCache = r.nodePathCache = r.nodePathCache || []; let key = util.hashStrings( shape === 'polygon' ? shape + ',' + points.join(',') : shape, '' + height, '' + width, '' + cornerRadius ); let cachedPath = pathCache[ key ]; let path; let cacheHit = false; if( cachedPath != null ){ path = cachedPath; cacheHit = true; rs.pathCache = path; } else { path = new Path2D(); pathCache[ key ] = rs.pathCache = path; } return { path, cacheHit }; }; let styleShape = node.pstyle('shape').strValue; let shapePts = node.pstyle('shape-polygon-points').pfValue; if( usePaths ){ context.translate( pos.x, pos.y ); const shapePath = getPath(nodeWidth, nodeHeight, styleShape, shapePts); path = shapePath.path; pathCacheHit = shapePath.cacheHit; } let drawShape = () => { if( !pathCacheHit ){ let npos = pos; if( usePaths ){ npos = { x: 0, y: 0 }; } r.nodeShapes[ r.getNodeShape( node ) ].draw( ( path || context ), npos.x, npos.y, nodeWidth, nodeHeight, cornerRadius, rs ); } if( usePaths ){ context.fill( path ); } else { context.fill(); } }; let drawImages = ( nodeOpacity = eleOpacity, inside = true ) => { let prevBging = _p.backgrounding; let totalCompleted = 0; for( let i = 0; i < image.length; i++ ){ const bgContainment = node.cy().style().getIndexedStyle(node, 'background-image-containment', 'value', i); if( inside && bgContainment === 'over' || !inside && bgContainment === 'inside' ){ totalCompleted++; continue; } if( urlDefined[i] && image[i].complete && !image[i].error ){ totalCompleted++; r.drawInscribedImage( context, image[i], node, i, nodeOpacity ); } } _p.backgrounding = !(totalCompleted === numImages); if( prevBging !== _p.backgrounding ){ // update style b/c :backgrounding state changed node.updateStyle( false ); } }; let drawPie = ( redrawShape = false, pieOpacity = eleOpacity ) => { if( r.hasPie( node ) ){ r.drawPie( context, node, pieOpacity ); // redraw/restore path if steps after pie need it if( redrawShape ){ if( !usePaths ){ r.nodeShapes[ r.getNodeShape( node ) ].draw( context, pos.x, pos.y, nodeWidth, nodeHeight, cornerRadius, rs ); } } } }; let drawStripe = (redrawShape = false, stripeOpacity = eleOpacity) => { if( r.hasStripe( node ) ){ context.save(); if (usePaths) { context.clip( rs.pathCache ); } else { r.nodeShapes[ r.getNodeShape( node ) ].draw( context, pos.x, pos.y, nodeWidth, nodeHeight, cornerRadius, rs ); context.clip(); } r.drawStripe( context, node, stripeOpacity ); context.restore(); // redraw/restore path if steps after stripes need it if( redrawShape ){ if( !usePaths ){ r.nodeShapes[ r.getNodeShape( node ) ].draw( context, pos.x, pos.y, nodeWidth, nodeHeight, cornerRadius, rs ); } } } }; let darken = ( darkenOpacity = eleOpacity ) => { let opacity = ( darkness > 0 ? darkness : -darkness ) * darkenOpacity; let c = darkness > 0 ? 0 : 255; if( darkness !== 0 ){ r.colorFillStyle( context, c, c, c, opacity ); if( usePaths ){ context.fill( path ); } else { context.fill(); } } }; let drawBorder = () => { if( borderWidth > 0 ){ context.lineWidth = borderWidth; context.lineCap = borderCap; context.lineJoin = borderJoin; if( context.setLineDash ){ // for very outofdate browsers switch( borderStyle ){ case 'dotted': context.setLineDash( [ 1, 1 ] ); break; case 'dashed': context.setLineDash( borderPattern ); context.lineDashOffset = borderOffset; break; case 'solid': case 'double': context.setLineDash( [ ] ); break; } } if ( borderPosition !== 'center') { context.save(); context.lineWidth *= 2; if (borderPosition === 'inside') { usePaths ? context.clip(path) : context.clip(); } else { const region = new Path2D(); region.rect( -nodeWidth / 2 - borderWidth, -nodeHeight / 2 - borderWidth, nodeWidth + 2 * borderWidth, nodeHeight + 2 * borderWidth ); region.addPath(path); context.clip(region, 'evenodd'); } usePaths ? context.stroke(path) : context.stroke(); context.restore(); } else { usePaths ? context.stroke(path) : context.stroke(); } if( borderStyle === 'double' ){ context.lineWidth = borderWidth / 3; let gco = context.globalCompositeOperation; context.globalCompositeOperation = 'destination-out'; if( usePaths ){ context.stroke( path ); } else { context.stroke(); } context.globalCompositeOperation = gco; } // reset in case we changed the border style if( context.setLineDash ){ // for very outofdate browsers context.setLineDash( [ ] ); } } }; let drawOutline = () => { if( outlineWidth > 0 ){ context.lineWidth = outlineWidth; context.lineCap = 'butt'; if( context.setLineDash ){ // for very outofdate browsers switch( outlineStyle ){ case 'dotted': context.setLineDash( [ 1, 1 ] ); break; case 'dashed': context.setLineDash( [ 4, 2 ] ); break; case 'solid': case 'double': context.setLineDash( [ ] ); break; } } let npos = pos; if( usePaths ){ npos = { x: 0, y: 0 }; } let shape = r.getNodeShape( node ); let bWidth = borderWidth; if( borderPosition === 'inside' ) bWidth = 0; if( borderPosition === 'outside' ) bWidth *= 2; let scaleX = (nodeWidth + bWidth + (outlineWidth + outlineOffset)) / nodeWidth; let scaleY = (nodeHeight + bWidth + (outlineWidth + outlineOffset)) / nodeHeight; let sWidth = nodeWidth * scaleX; let sHeight = nodeHeight * scaleY; let points = r.nodeShapes[ shape ].points; let path; if (usePaths) { let outlinePath = getPath(sWidth, sHeight, shape, points); path = outlinePath.path; } // draw the outline path, either by using expanded points or by scaling // the dimensions, depending on shape if (shape === "ellipse") { r.drawEllipsePath(path || context, npos.x, npos.y, sWidth, sHeight); } else if ([ 'round-diamond', 'round-heptagon', 'round-hexagon', 'round-octagon', 'round-pentagon', 'round-polygon', 'round-triangle', 'round-tag' ].includes(shape)) { let sMult = 0; let offsetX = 0; let offsetY = 0; if (shape === 'round-diamond') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.4; } else if (shape === 'round-heptagon') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.075; offsetY = -(bWidth/2 + outlineOffset + outlineWidth) / 35; } else if (shape === 'round-hexagon') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.12; } else if (shape === 'round-pentagon') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.13; offsetY = -(bWidth/2 + outlineOffset + outlineWidth) / 15; } else if (shape === 'round-tag') { sMult = (bWidth + outlineOffset + outlineWidth) * 1.12; offsetX = (bWidth/2 + outlineWidth + outlineOffset) * .07; } else if (shape === 'round-triangle') { sMult = (bWidth + outlineOffset + outlineWidth) * (Math.PI/2); offsetY = -(bWidth + outlineOffset/2 + outlineWidth) / Math.PI; } if (sMult !== 0) { scaleX = (nodeWidth + sMult)/nodeWidth; sWidth = nodeWidth * scaleX; if ( ! ['round-hexagon', 'round-tag'].includes(shape) ) { scaleY = (nodeHeight + sMult)/nodeHeight; sHeight = nodeHeight * scaleY; } } cornerRadius = cornerRadius === 'auto' ? math.getRoundPolygonRadius( sWidth, sHeight ) : cornerRadius; const halfW = sWidth / 2; const halfH = sHeight / 2; const radius = cornerRadius + ( bWidth + outlineWidth + outlineOffset ) / 2; const p = new Array( points.length / 2 ); const corners = new Array( points.length / 2 ); for ( let i = 0; i < points.length / 2; i++ ){ p[i] = { x: npos.x + offsetX + halfW * points[ i * 2 ], y: npos.y + offsetY + halfH * points[ i * 2 + 1 ] }; } let i, p1, p2, p3, len = p.length; p1 = p[ len - 1 ]; // for each point for( i = 0; i < len; i++ ){ p2 = p[ (i) % len ]; p3 = p[ (i + 1) % len ]; corners[ i ] = round.getRoundCorner( p1, p2, p3, radius ); p1 = p2; p2 = p3; } r.drawRoundPolygonPath(path || context, npos.x + offsetX, npos.y + offsetY, nodeWidth * scaleX, nodeHeight * scaleY, points, corners ); } else if (['roundrectangle', 'round-rectangle'].includes(shape)) { cornerRadius = cornerRadius === 'auto' ? math.getRoundRectangleRadius( sWidth, sHeight ) : cornerRadius; r.drawRoundRectanglePath(path || context, npos.x, npos.y, sWidth, sHeight, cornerRadius + ( bWidth + outlineWidth + outlineOffset ) / 2 ); } else if (['cutrectangle', 'cut-rectangle'].includes(shape)) { cornerRadius = cornerRadius === 'auto' ? math.getCutRectangleCornerLength( sWidth, sHeight ) : cornerRadius; r.drawCutRectanglePath(path || context, npos.x, npos.y, sWidth, sHeight, null ,cornerRadius + ( bWidth + outlineWidth + outlineOffset ) / 4 ); } else if (['bottomroundrectangle', 'bottom-round-rectangle'].includes(shape)) { cornerRadius = cornerRadius === 'auto' ? math.getRoundRectangleRadius( sWidth, sHeight ) : cornerRadius; r.drawBottomRoundRectanglePath(path || context, npos.x, npos.y, sWidth, sHeight, cornerRadius + ( bWidth + outlineWidth + outlineOffset ) / 2 ); } else if (shape === "barrel") { r.drawBarrelPath(path || context, npos.x, npos.y, sWidth, sHeight); } else if (shape.startsWith("polygon") || ['rhomboid', 'right-rhomboid', 'round-tag', 'tag', 'vee'].includes(shape)) { let pad = (bWidth + outlineWidth + outlineOffset) / nodeWidth; points = joinLines(expandPolygon(points, pad)); r.drawPolygonPath(path || context, npos.x, npos.y, nodeWidth, nodeHeight, points); } else { let pad = (bWidth + outlineWidth + outlineOffset) / nodeWidth; points = joinLines(expandPolygon(points, -pad)); r.drawPolygonPath(path || context, npos.x, npos.y, nodeWidth, nodeHeight, points); } if( usePaths ){ context.stroke( path ); } else { context.stroke(); } if( outlineStyle === 'double' ){ context.lineWidth = bWidth / 3; let gco = context.globalCompositeOperation; context.globalCompositeOperation = 'destination-out'; if( usePaths ){ context.stroke( path ); } else { context.stroke(); } context.globalCompositeOperation = gco; } // reset in case we changed the border style if( context.setLineDash ){ // for very outofdate browsers context.setLineDash( [ ] ); } } }; let drawOverlay = () => { if( shouldDrawOverlay ){ r.drawNodeOverlay( context, node, pos, nodeWidth, nodeHeight ); } }; let drawUnderlay = () => { if( shouldDrawOverlay ){ r.drawNodeUnderlay( context, node, pos, nodeWidth, nodeHeight ); } }; let drawText = () => { r.drawElementText( context, node, null, drawLabel ); }; let ghost = node.pstyle('ghost').value === 'yes'; if( ghost ){ let gx = node.pstyle('ghost-offset-x').pfValue; let gy = node.pstyle('ghost-offset-y').pfValue; let ghostOpacity = node.pstyle('ghost-opacity').value; let effGhostOpacity = ghostOpacity * eleOpacity; context.translate( gx, gy ); setupOutlineColor(); drawOutline(); setupShapeColor( ghostOpacity * bgOpacity ); drawShape(); drawImages( effGhostOpacity, true ); setupBorderColor( ghostOpacity * borderOpacity ); drawBorder(); drawPie( darkness !== 0 || borderWidth !== 0 ); drawStripe( darkness !== 0 || borderWidth !== 0 ); drawImages( effGhostOpacity, false ); darken( effGhostOpacity ); context.translate( -gx, -gy ); } if( usePaths ){ context.translate( -pos.x, -pos.y ); } drawUnderlay(); if( usePaths ){ context.translate( pos.x, pos.y ); } setupOutlineColor(); drawOutline(); setupShapeColor(); drawShape(); drawImages(eleOpacity, true); setupBorderColor(); drawBorder(); drawPie( darkness !== 0 || borderWidth !== 0 ); drawStripe( darkness !== 0 || borderWidth !== 0 ); drawImages(eleOpacity, false); darken(); if( usePaths ){ context.translate( -pos.x, -pos.y ); } drawText(); drawOverlay(); // // clean up shift if( shiftToOriginWithBb ){ context.translate( bb.x1, bb.y1 ); } }; const drawNodeOverlayUnderlay = function( overlayOrUnderlay ) { if (!['overlay', 'underlay'].includes(overlayOrUnderlay)) { throw new Error('Invalid state'); } return function( context, node, pos, nodeWidth, nodeHeight ){ let r = this; if( !node.visible() ){ return; } let padding = node.pstyle( `${overlayOrUnderlay}-padding` ).pfValue; let opacity = node.pstyle( `${overlayOrUnderlay}-opacity` ).value; let color = node.pstyle( `${overlayOrUnderlay}-color` ).value; let shape = node.pstyle( `${overlayOrUnderlay}-shape` ).value; let radius = node.pstyle( `${overlayOrUnderlay}-corner-radius` ).value; if( opacity > 0 ){ pos = pos || node.position(); if( nodeWidth == null || nodeHeight == null ){ let padding = node.padding(); nodeWidth = node.width() + 2 * padding; nodeHeight = node.height() + 2 * padding; } r.colorFillStyle( context, color[0], color[1], color[2], opacity ); r.nodeShapes[shape].draw( context, pos.x, pos.y, nodeWidth + padding * 2, nodeHeight + padding * 2, radius ); context.fill(); } }; }; CRp.drawNodeOverlay = drawNodeOverlayUnderlay('overlay'); CRp.drawNodeUnderlay = drawNodeOverlayUnderlay('underlay'); // does the node have at least one pie piece? CRp.hasPie = function( node ){ node = node[0]; // ensure ele ref return node._private.hasPie; }; CRp.hasStripe = function( node ){ node = node[0]; // ensure ele ref return node._private.hasStripe; }; CRp.drawPie = function( context, node, nodeOpacity, pos ){ node = node[0]; // ensure ele ref pos = pos || node.position(); let cyStyle = node.cy().style(); let pieSize = node.pstyle( 'pie-size' ); let hole = node.pstyle('pie-hole'); let overallStartAngle = node.pstyle('pie-start-angle').pfValue; let x = pos.x; let y = pos.y; let nodeW = node.width(); let nodeH = node.height(); let radius = Math.min( nodeW, nodeH ) / 2; // must fit in node let holeRadius; let lastPercent = 0; // what % to continue drawing pie slices from on [0, 1] let usePaths = this.usePaths(); if( usePaths ){ x = 0; y = 0; } if( pieSize.units === '%' ){ radius = radius * pieSize.pfValue; } else if( pieSize.pfValue !== undefined ){ radius = pieSize.pfValue / 2; // diameter in pixels => radius } if (hole.units === '%') { holeRadius = radius * hole.pfValue; } else if (hole.pfValue !== undefined) { holeRadius = hole.pfValue / 2; // diameter in pixels => radius } if (holeRadius >= radius) { return; // the pie would be invisible anyway } for( let i = 1; i <= cyStyle.pieBackgroundN; i++ ){ // 1..N let size = node.pstyle( 'pie-' + i + '-background-size' ).value; let color = node.pstyle( 'pie-' + i + '-background-color' ).value; let opacity = node.pstyle( 'pie-' + i + '-background-opacity' ).value * nodeOpacity; let percent = size / 100; // map integer range [0, 100] to [0, 1] // percent can't push beyond 1 if( percent + lastPercent > 1 ){ percent = 1 - lastPercent; } let angleStart = (1.5 * Math.PI) + (2 * Math.PI * lastPercent); // start at 12 o'clock and go clockwise angleStart += overallStartAngle; // shift by the overall pie start angle let angleDelta = 2 * Math.PI * percent; let angleEnd = angleStart + angleDelta; // ignore if // - zero size // - we're already beyond the full circle // - adding the current slice would go beyond the full circle if( size === 0 || lastPercent >= 1 || lastPercent + percent > 1 ){ continue; } if (holeRadius === 0) { // make a pie slice context.beginPath(); context.moveTo( x, y ); context.arc( x, y, radius, angleStart, angleEnd ); context.closePath(); } else { // make a pie slice that's like the above but with a hole in the middle context.beginPath(); context.arc(x, y, radius, angleStart, angleEnd); context.arc(x, y, holeRadius, angleEnd, angleStart, true); // true for anticlockwise context.closePath(); } this.colorFillStyle( context, color[0], color[1], color[2], opacity ); context.fill(); lastPercent += percent; } }; CRp.drawStripe = function( context, node, nodeOpacity, pos ){ node = node[0]; // ensure ele ref pos = pos || node.position(); let cyStyle = node.cy().style(); let x = pos.x; let y = pos.y; let nodeW = node.width(); let nodeH = node.height(); let lastPercent = 0; // what % to continue drawing pie slices from on [0, 1] let usePaths = this.usePaths(); context.save(); let direction = node.pstyle('stripe-direction').value; let stripeSize = node.pstyle('stripe-size'); switch (direction) { case 'vertical': break; // default case 'righward': context.rotate(-Math.PI / 2); break; } let stripeW = nodeW; let stripeH = nodeH; if( stripeSize.units === '%' ){ stripeW = stripeW * stripeSize.pfValue; stripeH = stripeH * stripeSize.pfValue; } else if( stripeSize.pfValue !== undefined ){ stripeW = stripeSize.pfValue; stripeH = stripeSize.pfValue; } if( usePaths ){ x = 0; y = 0; } // shift up from the centre of the node to the top-left corner y -= stripeW / 2; x -= stripeH / 2; for( let i = 1; i <= cyStyle.stripeBackgroundN; i++ ){ // 1..N let size = node.pstyle( 'stripe-' + i + '-background-size' ).value; let color = node.pstyle( 'stripe-' + i + '-background-color' ).value; let opacity = node.pstyle( 'stripe-' + i + '-background-opacity' ).value * nodeOpacity; let percent = size / 100; // map integer range [0, 100] to [0, 1] // percent can't push beyond 1 if( percent + lastPercent > 1 ){ percent = 1 - lastPercent; } // ignore if // - zero size // - we're already beyond the full chart // - adding the current slice would go beyond the full chart if( size === 0 || lastPercent >= 1 || lastPercent + percent > 1 ){ continue; } // draw rect for the current stripe context.beginPath(); context.rect( x, y + stripeH * lastPercent, stripeW, stripeH * percent ); context.closePath(); this.colorFillStyle( context, color[0], color[1], color[2], opacity ); context.fill(); lastPercent += percent; } context.restore(); }; export default CRp; ================================================ FILE: src/extensions/renderer/canvas/drawing-redraw.mjs ================================================ import * as util from '../../../util/index.mjs'; import * as math from '../../../math.mjs'; var CRp = {}; var motionBlurDelay = 100; // var isFirefox = typeof InstallTrigger !== 'undefined'; CRp.getPixelRatio = function(){ var context = this.data.contexts[0]; if( this.forcedPixelRatio != null ){ return this.forcedPixelRatio; } var containerWindow = this.cy.window(); var backingStore = context.backingStorePixelRatio || context.webkitBackingStorePixelRatio || context.mozBackingStorePixelRatio || context.msBackingStorePixelRatio || context.oBackingStorePixelRatio || context.backingStorePixelRatio || 1; return (containerWindow.devicePixelRatio || 1) / backingStore; // eslint-disable-line no-undef }; CRp.paintCache = function( context ){ var caches = this.paintCaches = this.paintCaches || []; var needToCreateCache = true; var cache; for( var i = 0; i < caches.length; i++ ){ cache = caches[ i ]; if( cache.context === context ){ needToCreateCache = false; break; } } if( needToCreateCache ){ cache = { context: context }; caches.push( cache ); } return cache; }; CRp.createGradientStyleFor = function( context, shapeStyleName, ele, fill, opacity ){ let gradientStyle; let usePaths = this.usePaths(); let colors = ele.pstyle(shapeStyleName + '-gradient-stop-colors').value, positions = ele.pstyle(shapeStyleName + '-gradient-stop-positions').pfValue; if (fill === 'radial-gradient') { if (ele.isEdge()) { let start = ele.sourceEndpoint(), end = ele.targetEndpoint(), mid = ele.midpoint(); let d1 = math.dist( start, mid ); let d2 = math.dist( end, mid ); gradientStyle = context.createRadialGradient(mid.x, mid.y, 0, mid.x, mid.y, Math.max(d1, d2)); } else { let pos = usePaths ? {x: 0, y: 0 } : ele.position(), width = ele.paddedWidth(), height = ele.paddedHeight(); gradientStyle = context.createRadialGradient(pos.x, pos.y, 0, pos.x, pos.y, Math.max(width, height)); } } else { if (ele.isEdge()) { let start = ele.sourceEndpoint(), end = ele.targetEndpoint(); gradientStyle = context.createLinearGradient(start.x, start.y, end.x, end.y); } else { let pos = usePaths ? { x: 0, y: 0 } : ele.position(), width = ele.paddedWidth(), height = ele.paddedHeight(), halfWidth = width / 2, halfHeight = height / 2; let direction = ele.pstyle('background-gradient-direction').value; switch (direction) { case 'to-bottom': gradientStyle = context.createLinearGradient(pos.x, pos.y - halfHeight, pos.x, pos.y + halfHeight); break; case 'to-top': gradientStyle = context.createLinearGradient(pos.x, pos.y + halfHeight, pos.x, pos.y - halfHeight); break; case 'to-left': gradientStyle = context.createLinearGradient(pos.x + halfWidth, pos.y, pos.x - halfWidth, pos.y); break; case 'to-right': gradientStyle = context.createLinearGradient(pos.x - halfWidth, pos.y, pos.x + halfWidth, pos.y); break; case 'to-bottom-right': case 'to-right-bottom': gradientStyle = context.createLinearGradient(pos.x - halfWidth, pos.y - halfHeight, pos.x + halfWidth, pos.y + halfHeight); break; case 'to-top-right': case 'to-right-top': gradientStyle = context.createLinearGradient(pos.x - halfWidth, pos.y + halfHeight, pos.x + halfWidth, pos.y - halfHeight); break; case 'to-bottom-left': case 'to-left-bottom': gradientStyle = context.createLinearGradient(pos.x + halfWidth, pos.y - halfHeight, pos.x - halfWidth, pos.y + halfHeight); break; case 'to-top-left': case 'to-left-top': gradientStyle = context.createLinearGradient(pos.x + halfWidth, pos.y + halfHeight, pos.x - halfWidth, pos.y - halfHeight); break; } } } if (!gradientStyle) return null; // invalid gradient style let hasPositions = positions.length === colors.length; let length = colors.length; for (let i = 0; i < length; i++) { gradientStyle.addColorStop(hasPositions ? positions[i] : i / (length - 1), 'rgba(' + colors[i][0] + ',' + colors[i][1] + ',' + colors[i][2] + ',' + opacity + ')'); } return gradientStyle; }; CRp.gradientFillStyle = function( context, ele, fill, opacity ){ const gradientStyle = this.createGradientStyleFor(context, 'background', ele, fill, opacity); if (!gradientStyle) return null; // error context.fillStyle = gradientStyle; }; CRp.colorFillStyle = function( context, r, g, b, a ){ context.fillStyle = 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')'; // turn off for now, seems context does its own caching // var cache = this.paintCache(context); // var fillStyle = 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')'; // if( cache.fillStyle !== fillStyle ){ // context.fillStyle = cache.fillStyle = fillStyle; // } }; CRp.eleFillStyle = function( context, ele, opacity ){ let backgroundFill = ele.pstyle('background-fill').value; if (backgroundFill === 'linear-gradient' || backgroundFill === 'radial-gradient') { this.gradientFillStyle(context, ele, backgroundFill, opacity); } else { let backgroundColor = ele.pstyle('background-color').value; this.colorFillStyle( context, backgroundColor[0], backgroundColor[1], backgroundColor[2], opacity ); } }; CRp.gradientStrokeStyle = function( context, ele, fill, opacity ){ const gradientStyle = this.createGradientStyleFor(context, 'line', ele, fill ,opacity); if (!gradientStyle) return null; // error context.strokeStyle = gradientStyle; }; CRp.colorStrokeStyle = function( context, r, g, b, a ){ context.strokeStyle = 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')'; // turn off for now, seems context does its own caching // var cache = this.paintCache(context); // var strokeStyle = 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')'; // if( cache.strokeStyle !== strokeStyle ){ // context.strokeStyle = cache.strokeStyle = strokeStyle; // } }; CRp.eleStrokeStyle = function( context, ele, opacity ){ let lineFill = ele.pstyle('line-fill').value; if (lineFill === 'linear-gradient' || lineFill === 'radial-gradient') { this.gradientStrokeStyle(context, ele, lineFill, opacity); } else { let lineColor = ele.pstyle('line-color').value; this.colorStrokeStyle( context, lineColor[0], lineColor[1], lineColor[2], opacity ); } }; // Resize canvas CRp.matchCanvasSize = function( container ){ var r = this; var data = r.data; var bb = r.findContainerClientCoords(); var width = bb[2]; var height = bb[3]; var pixelRatio = r.getPixelRatio(); var mbPxRatio = r.motionBlurPxRatio; if( container === r.data.bufferCanvases[ r.MOTIONBLUR_BUFFER_NODE ] || container === r.data.bufferCanvases[ r.MOTIONBLUR_BUFFER_DRAG ] ){ pixelRatio = mbPxRatio; } var canvasWidth = width * pixelRatio; var canvasHeight = height * pixelRatio; var canvas; if( canvasWidth === r.canvasWidth && canvasHeight === r.canvasHeight ){ return; // save cycles if same } r.fontCaches = null; // resizing resets the style var canvasContainer = data.canvasContainer; canvasContainer.style.width = width + 'px'; canvasContainer.style.height = height + 'px'; for( var i = 0; i < r.CANVAS_LAYERS; i++ ){ canvas = data.canvases[ i ]; canvas.width = canvasWidth; canvas.height = canvasHeight; canvas.style.width = width + 'px'; canvas.style.height = height + 'px'; } for( var i = 0; i < r.BUFFER_COUNT; i++ ){ canvas = data.bufferCanvases[ i ]; canvas.width = canvasWidth; canvas.height = canvasHeight; canvas.style.width = width + 'px'; canvas.style.height = height + 'px'; } r.textureMult = 1; if( pixelRatio <= 1 ){ canvas = data.bufferCanvases[ r.TEXTURE_BUFFER ]; r.textureMult = 2; canvas.width = canvasWidth * r.textureMult; canvas.height = canvasHeight * r.textureMult; } r.canvasWidth = canvasWidth; r.canvasHeight = canvasHeight; r.pixelRatio = pixelRatio; }; CRp.renderTo = function( cxt, zoom, pan, pxRatio ){ this.render( { forcedContext: cxt, forcedZoom: zoom, forcedPan: pan, drawAllLayers: true, forcedPxRatio: pxRatio } ); }; CRp.clearCanvas = function(){ var r = this; var data = r.data; function clear(context) { context.clearRect(0, 0, r.canvasWidth, r.canvasHeight); } clear(data.contexts[ r.NODE ]); clear(data.contexts[ r.DRAG ]); }; CRp.render = function( options ){ var r = this; options = options || util.staticEmptyObject(); var cy = r.cy; var forcedContext = options.forcedContext; var drawAllLayers = options.drawAllLayers; var drawOnlyNodeLayer = options.drawOnlyNodeLayer; var forcedZoom = options.forcedZoom; var forcedPan = options.forcedPan; var pixelRatio = options.forcedPxRatio === undefined ? this.getPixelRatio() : options.forcedPxRatio; var data = r.data; var needDraw = data.canvasNeedsRedraw; var textureDraw = r.textureOnViewport && !forcedContext && (r.pinching || r.hoverData.dragging || r.swipePanning || r.data.wheelZooming); var motionBlur = options.motionBlur !== undefined ? options.motionBlur : r.motionBlur; var mbPxRatio = r.motionBlurPxRatio; var hasCompoundNodes = cy.hasCompoundNodes(); var inNodeDragGesture = r.hoverData.draggingEles; var inBoxSelection = r.hoverData.selecting || r.touchData.selecting ? true : false; motionBlur = motionBlur && !forcedContext && r.motionBlurEnabled && !inBoxSelection; var motionBlurFadeEffect = motionBlur; if( !forcedContext ){ if( r.prevPxRatio !== pixelRatio ){ r.invalidateContainerClientCoordsCache(); r.matchCanvasSize( r.container ); r.redrawHint('eles', true); r.redrawHint('drag', true); } r.prevPxRatio = pixelRatio; } if( !forcedContext && r.motionBlurTimeout ){ clearTimeout( r.motionBlurTimeout ); } if( motionBlur ){ if( r.mbFrames == null ){ r.mbFrames = 0; } r.mbFrames++; if( r.mbFrames < 3 ){ // need several frames before even high quality motionblur motionBlurFadeEffect = false; } // go to lower quality blurry frames when several m/b frames have been rendered (avoids flashing) if( r.mbFrames > r.minMbLowQualFrames ){ //r.fullQualityMb = false; r.motionBlurPxRatio = r.mbPxRBlurry; } } if( r.clearingMotionBlur ){ r.motionBlurPxRatio = 1; } // b/c drawToContext() may be async w.r.t. redraw(), keep track of last texture frame // because a rogue async texture frame would clear needDraw if( r.textureDrawLastFrame && !textureDraw ){ needDraw[ r.NODE ] = true; needDraw[ r.SELECT_BOX ] = true; } var style = cy.style(); var zoom = cy.zoom(); var effectiveZoom = forcedZoom !== undefined ? forcedZoom : zoom; var pan = cy.pan(); var effectivePan = { x: pan.x, y: pan.y }; var vp = { zoom: zoom, pan: { x: pan.x, y: pan.y } }; var prevVp = r.prevViewport; var viewportIsDiff = prevVp === undefined || vp.zoom !== prevVp.zoom || vp.pan.x !== prevVp.pan.x || vp.pan.y !== prevVp.pan.y; // we want the low quality motionblur only when the viewport is being manipulated etc (where it's not noticed) if( !viewportIsDiff && !(inNodeDragGesture && !hasCompoundNodes) ){ r.motionBlurPxRatio = 1; } if( forcedPan ){ effectivePan = forcedPan; } // apply pixel ratio effectiveZoom *= pixelRatio; effectivePan.x *= pixelRatio; effectivePan.y *= pixelRatio; var eles = r.getCachedZSortedEles(); function mbclear( context, x, y, w, h ){ var gco = context.globalCompositeOperation; context.globalCompositeOperation = 'destination-out'; r.colorFillStyle( context, 255, 255, 255, r.motionBlurTransparency ); context.fillRect( x, y, w, h ); context.globalCompositeOperation = gco; } function setContextTransform( context, clear ){ var ePan, eZoom, w, h; if( !r.clearingMotionBlur && (context === data.bufferContexts[ r.MOTIONBLUR_BUFFER_NODE ] || context === data.bufferContexts[ r.MOTIONBLUR_BUFFER_DRAG ]) ){ ePan = { x: pan.x * mbPxRatio, y: pan.y * mbPxRatio }; eZoom = zoom * mbPxRatio; w = r.canvasWidth * mbPxRatio; h = r.canvasHeight * mbPxRatio; } else { ePan = effectivePan; eZoom = effectiveZoom; w = r.canvasWidth; h = r.canvasHeight; } context.setTransform( 1, 0, 0, 1, 0, 0 ); if( clear === 'motionBlur' ){ mbclear( context, 0, 0, w, h ); } else if( !forcedContext && (clear === undefined || clear) ){ context.clearRect( 0, 0, w, h ); } if( !drawAllLayers ){ context.translate( ePan.x, ePan.y ); context.scale( eZoom, eZoom ); } if( forcedPan ){ context.translate( forcedPan.x, forcedPan.y ); } if( forcedZoom ){ context.scale( forcedZoom, forcedZoom ); } } if( !textureDraw ){ r.textureDrawLastFrame = false; } if( textureDraw ){ r.textureDrawLastFrame = true; if( !r.textureCache ){ r.textureCache = {}; r.textureCache.bb = cy.mutableElements().boundingBox(); r.textureCache.texture = r.data.bufferCanvases[ r.TEXTURE_BUFFER ]; var cxt = r.data.bufferContexts[ r.TEXTURE_BUFFER ]; cxt.setTransform( 1, 0, 0, 1, 0, 0 ); cxt.clearRect( 0, 0, r.canvasWidth * r.textureMult, r.canvasHeight * r.textureMult ); r.render( { forcedContext: cxt, drawOnlyNodeLayer: true, forcedPxRatio: pixelRatio * r.textureMult } ); var vp = r.textureCache.viewport = { zoom: cy.zoom(), pan: cy.pan(), width: r.canvasWidth, height: r.canvasHeight }; vp.mpan = { x: (0 - vp.pan.x) / vp.zoom, y: (0 - vp.pan.y) / vp.zoom }; } needDraw[ r.DRAG ] = false; needDraw[ r.NODE ] = false; var context = data.contexts[ r.NODE ]; var texture = r.textureCache.texture; var vp = r.textureCache.viewport; context.setTransform( 1, 0, 0, 1, 0, 0 ); if( motionBlur ){ mbclear( context, 0, 0, vp.width, vp.height ); } else { context.clearRect( 0, 0, vp.width, vp.height ); } var outsideBgColor = style.core( 'outside-texture-bg-color' ).value; var outsideBgOpacity = style.core( 'outside-texture-bg-opacity' ).value; r.colorFillStyle( context, outsideBgColor[0], outsideBgColor[1], outsideBgColor[2], outsideBgOpacity ); context.fillRect( 0, 0, vp.width, vp.height ); var zoom = cy.zoom(); setContextTransform( context, false ); context.clearRect( vp.mpan.x, vp.mpan.y, vp.width / vp.zoom / pixelRatio, vp.height / vp.zoom / pixelRatio ); context.drawImage( texture, vp.mpan.x, vp.mpan.y, vp.width / vp.zoom / pixelRatio, vp.height / vp.zoom / pixelRatio ); } else if( r.textureOnViewport && !forcedContext ){ // clear the cache since we don't need it r.textureCache = null; } var extent = cy.extent(); var vpManip = (r.pinching || r.hoverData.dragging || r.swipePanning || r.data.wheelZooming || r.hoverData.draggingEles || r.cy.animated()); var hideEdges = r.hideEdgesOnViewport && vpManip; var needMbClear = []; needMbClear[ r.NODE ] = !needDraw[ r.NODE ] && motionBlur && !r.clearedForMotionBlur[ r.NODE ] || r.clearingMotionBlur; if( needMbClear[ r.NODE ] ){ r.clearedForMotionBlur[ r.NODE ] = true; } needMbClear[ r.DRAG ] = !needDraw[ r.DRAG ] && motionBlur && !r.clearedForMotionBlur[ r.DRAG ] || r.clearingMotionBlur; if( needMbClear[ r.DRAG ] ){ r.clearedForMotionBlur[ r.DRAG ] = true; } if( needDraw[ r.NODE ] || drawAllLayers || drawOnlyNodeLayer || needMbClear[ r.NODE ] ){ var useBuffer = motionBlur && !needMbClear[ r.NODE ] && mbPxRatio !== 1; var context = forcedContext || ( useBuffer ? r.data.bufferContexts[ r.MOTIONBLUR_BUFFER_NODE ] : data.contexts[ r.NODE ] ); var clear = motionBlur && !useBuffer ? 'motionBlur' : undefined; setContextTransform( context, clear ); if( hideEdges ){ r.drawCachedNodes( context, eles.nondrag, pixelRatio, extent ); } else { r.drawLayeredElements( context, eles.nondrag, pixelRatio, extent ); } if( r.debug ){ r.drawDebugPoints( context, eles.nondrag ); } if( !drawAllLayers && !motionBlur ){ needDraw[ r.NODE ] = false; } } if( !drawOnlyNodeLayer && (needDraw[ r.DRAG ] || drawAllLayers || needMbClear[ r.DRAG ]) ){ var useBuffer = motionBlur && !needMbClear[ r.DRAG ] && mbPxRatio !== 1; var context = forcedContext || ( useBuffer ? r.data.bufferContexts[ r.MOTIONBLUR_BUFFER_DRAG ] : data.contexts[ r.DRAG ] ); setContextTransform( context, motionBlur && !useBuffer ? 'motionBlur' : undefined ); if( hideEdges ){ r.drawCachedNodes( context, eles.drag, pixelRatio, extent ); } else { r.drawCachedElements( context, eles.drag, pixelRatio, extent ); } if( r.debug ){ r.drawDebugPoints( context, eles.drag ); } if( !drawAllLayers && !motionBlur ){ needDraw[ r.DRAG ] = false; } } this.drawSelectionRectangle(options, setContextTransform); // motionblur: blit rendered blurry frames if( motionBlur && mbPxRatio !== 1 ){ var cxtNode = data.contexts[ r.NODE ]; var txtNode = r.data.bufferCanvases[ r.MOTIONBLUR_BUFFER_NODE ]; var cxtDrag = data.contexts[ r.DRAG ]; var txtDrag = r.data.bufferCanvases[ r.MOTIONBLUR_BUFFER_DRAG ]; var drawMotionBlur = function( cxt, txt, needClear ){ cxt.setTransform( 1, 0, 0, 1, 0, 0 ); if( needClear || !motionBlurFadeEffect ){ cxt.clearRect( 0, 0, r.canvasWidth, r.canvasHeight ); } else { mbclear( cxt, 0, 0, r.canvasWidth, r.canvasHeight ); } var pxr = mbPxRatio; cxt.drawImage( txt, // img 0, 0, // sx, sy r.canvasWidth * pxr, r.canvasHeight * pxr, // sw, sh 0, 0, // x, y r.canvasWidth, r.canvasHeight // w, h ); }; if( needDraw[ r.NODE ] || needMbClear[ r.NODE ] ){ drawMotionBlur( cxtNode, txtNode, needMbClear[ r.NODE ] ); needDraw[ r.NODE ] = false; } if( needDraw[ r.DRAG ] || needMbClear[ r.DRAG ] ){ drawMotionBlur( cxtDrag, txtDrag, needMbClear[ r.DRAG ] ); needDraw[ r.DRAG ] = false; } } r.prevViewport = vp; if( r.clearingMotionBlur ){ r.clearingMotionBlur = false; r.motionBlurCleared = true; r.motionBlur = true; } if( motionBlur ){ r.motionBlurTimeout = setTimeout( function(){ r.motionBlurTimeout = null; r.clearedForMotionBlur[ r.NODE ] = false; r.clearedForMotionBlur[ r.DRAG ] = false; r.motionBlur = false; r.clearingMotionBlur = !textureDraw; r.mbFrames = 0; needDraw[ r.NODE ] = true; needDraw[ r.DRAG ] = true; r.redraw(); }, motionBlurDelay ); } if( !forcedContext ){ cy.emit('render'); } }; let fpsHeight; CRp.drawSelectionRectangle = function(options, setContextTransform) { const r = this; const cy = r.cy; const data = r.data; const style = cy.style(); const drawOnlyNodeLayer = options.drawOnlyNodeLayer; const drawAllLayers = options.drawAllLayers; const needDraw = data.canvasNeedsRedraw; const forcedContext = options.forcedContext; if( r.showFps || (!drawOnlyNodeLayer && (needDraw[ r.SELECT_BOX ] && !drawAllLayers)) ){ var context = forcedContext || data.contexts[ r.SELECT_BOX ]; setContextTransform( context ); if( r.selection[4] == 1 && ( r.hoverData.selecting || r.touchData.selecting ) ){ var zoom = r.cy.zoom(); var borderWidth = style.core( 'selection-box-border-width' ).value / zoom; context.lineWidth = borderWidth; context.fillStyle = 'rgba(' + style.core( 'selection-box-color' ).value[0] + ',' + style.core( 'selection-box-color' ).value[1] + ',' + style.core( 'selection-box-color' ).value[2] + ',' + style.core( 'selection-box-opacity' ).value + ')'; context.fillRect( r.selection[0], r.selection[1], r.selection[2] - r.selection[0], r.selection[3] - r.selection[1] ); if( borderWidth > 0 ){ context.strokeStyle = 'rgba(' + style.core( 'selection-box-border-color' ).value[0] + ',' + style.core( 'selection-box-border-color' ).value[1] + ',' + style.core( 'selection-box-border-color' ).value[2] + ',' + style.core( 'selection-box-opacity' ).value + ')'; context.strokeRect( r.selection[0], r.selection[1], r.selection[2] - r.selection[0], r.selection[3] - r.selection[1] ); } } if( data.bgActivePosistion && !r.hoverData.selecting ){ var zoom = r.cy.zoom(); var pos = data.bgActivePosistion; context.fillStyle = 'rgba(' + style.core( 'active-bg-color' ).value[0] + ',' + style.core( 'active-bg-color' ).value[1] + ',' + style.core( 'active-bg-color' ).value[2] + ',' + style.core( 'active-bg-opacity' ).value + ')'; context.beginPath(); context.arc( pos.x, pos.y, style.core( 'active-bg-size' ).pfValue / zoom, 0, 2 * Math.PI ); context.fill(); } var timeToRender = r.lastRedrawTime; if( r.showFps && timeToRender ){ timeToRender = Math.round( timeToRender ); var fps = Math.round( 1000 / timeToRender ); const text = '1 frame = ' + timeToRender + ' ms = ' + fps + ' fps'; context.setTransform( 1, 0, 0, 1, 0, 0 ); context.fillStyle = 'rgba(255, 0, 0, 0.75)'; context.strokeStyle = 'rgba(255, 0, 0, 0.75)'; // context.lineWidth = 1; context.font = '30px Arial'; if(!fpsHeight) { const dims = context.measureText(text); fpsHeight = dims.actualBoundingBoxAscent; } context.fillText( text, 0, fpsHeight ); var maxFps = 60; context.strokeRect( 0, fpsHeight + 10, 250, 20 ); context.fillRect( 0, fpsHeight + 10, 250 * Math.min( fps / maxFps, 1 ), 20 ); } if( !drawAllLayers ){ needDraw[ r.SELECT_BOX ] = false; } } }; export default CRp; ================================================ FILE: src/extensions/renderer/canvas/drawing-shapes.mjs ================================================ import * as math from '../../../math.mjs'; import * as round from '../../../round.mjs'; var CRp = {}; // @O Polygon drawing CRp.drawPolygonPath = function( context, x, y, width, height, points ){ var halfW = width / 2; var halfH = height / 2; if( context.beginPath ){ context.beginPath(); } context.moveTo( x + halfW * points[0], y + halfH * points[1] ); for( var i = 1; i < points.length / 2; i++ ){ context.lineTo( x + halfW * points[ i * 2], y + halfH * points[ i * 2 + 1] ); } context.closePath(); }; CRp.drawRoundPolygonPath = function( context, x, y, width, height, points, corners ){ corners.forEach( corner => round.drawPreparedRoundCorner( context, corner ) ); context.closePath(); }; // Round rectangle drawing CRp.drawRoundRectanglePath = function( context, x, y, width, height, radius){ var halfWidth = width / 2; var halfHeight = height / 2; var cornerRadius = radius === 'auto' ? math.getRoundRectangleRadius( width, height ) : Math.min(radius, halfHeight, halfWidth); if( context.beginPath ){ context.beginPath(); } // Start at top middle context.moveTo( x, y - halfHeight ); // Arc from middle top to right side context.arcTo( x + halfWidth, y - halfHeight, x + halfWidth, y, cornerRadius ); // Arc from right side to bottom context.arcTo( x + halfWidth, y + halfHeight, x, y + halfHeight, cornerRadius ); // Arc from bottom to left side context.arcTo( x - halfWidth, y + halfHeight, x - halfWidth, y, cornerRadius ); // Arc from left side to topBorder context.arcTo( x - halfWidth, y - halfHeight, x, y - halfHeight, cornerRadius ); // Join line context.lineTo( x, y - halfHeight ); context.closePath(); }; CRp.drawBottomRoundRectanglePath = function( context, x, y, width, height, radius){ var halfWidth = width / 2; var halfHeight = height / 2; var cornerRadius = radius === 'auto' ? math.getRoundRectangleRadius( width, height ) : radius; if( context.beginPath ){ context.beginPath(); } // Start at top middle context.moveTo( x, y - halfHeight ); context.lineTo( x + halfWidth, y - halfHeight ); context.lineTo( x + halfWidth, y ); context.arcTo( x + halfWidth, y + halfHeight, x, y + halfHeight, cornerRadius); context.arcTo( x - halfWidth, y + halfHeight, x - halfWidth, y, cornerRadius ); context.lineTo( x - halfWidth, y - halfHeight ); context.lineTo( x, y - halfHeight ); context.closePath(); }; CRp.drawCutRectanglePath = function( context, x, y, width, height, points, corners ){ var halfWidth = width / 2; var halfHeight = height / 2; var cornerLength = corners === 'auto' ? math.getCutRectangleCornerLength() : corners; if( context.beginPath ){ context.beginPath(); } context.moveTo( x - halfWidth + cornerLength, y - halfHeight ); context.lineTo( x + halfWidth - cornerLength, y - halfHeight ); context.lineTo( x + halfWidth, y - halfHeight + cornerLength ); context.lineTo( x + halfWidth, y + halfHeight - cornerLength ); context.lineTo( x + halfWidth - cornerLength, y + halfHeight ); context.lineTo( x - halfWidth + cornerLength, y + halfHeight ); context.lineTo( x - halfWidth, y + halfHeight - cornerLength ); context.lineTo( x - halfWidth, y - halfHeight + cornerLength ); context.closePath(); }; CRp.drawBarrelPath = function( context, x, y, width, height ){ var halfWidth = width / 2; var halfHeight = height / 2; var xBegin = x - halfWidth; var xEnd = x + halfWidth; var yBegin = y - halfHeight; var yEnd = y + halfHeight; var barrelCurveConstants = math.getBarrelCurveConstants( width, height ); var wOffset = barrelCurveConstants.widthOffset; var hOffset = barrelCurveConstants.heightOffset; var ctrlPtXOffset = barrelCurveConstants.ctrlPtOffsetPct * wOffset; if( context.beginPath ){ context.beginPath(); } context.moveTo( xBegin, yBegin + hOffset ); context.lineTo( xBegin, yEnd - hOffset ); context.quadraticCurveTo( xBegin + ctrlPtXOffset, yEnd, xBegin + wOffset, yEnd ); context.lineTo( xEnd - wOffset, yEnd ); context.quadraticCurveTo( xEnd - ctrlPtXOffset, yEnd, xEnd, yEnd - hOffset ); context.lineTo( xEnd, yBegin + hOffset ); context.quadraticCurveTo( xEnd - ctrlPtXOffset, yBegin, xEnd - wOffset, yBegin ); context.lineTo( xBegin + wOffset, yBegin ); context.quadraticCurveTo( xBegin + ctrlPtXOffset, yBegin, xBegin, yBegin + hOffset ); context.closePath(); }; var sin0 = Math.sin( 0 ); var cos0 = Math.cos( 0 ); var sin = {}; var cos = {}; var ellipseStepSize = Math.PI / 40; for( var i = 0 * Math.PI; i < 2 * Math.PI; i += ellipseStepSize ){ sin[ i ] = Math.sin( i ); cos[ i ] = Math.cos( i ); } CRp.drawEllipsePath = function( context, centerX, centerY, width, height ){ if( context.beginPath ){ context.beginPath(); } if( context.ellipse ){ context.ellipse( centerX, centerY, width / 2, height / 2, 0, 0, 2 * Math.PI ); } else { var xPos, yPos; var rw = width / 2; var rh = height / 2; for( var i = 0 * Math.PI; i < 2 * Math.PI; i += ellipseStepSize ){ xPos = centerX - (rw * sin[ i ]) * sin0 + (rw * cos[ i ]) * cos0; yPos = centerY + (rh * cos[ i ]) * sin0 + (rh * sin[ i ]) * cos0; if( i === 0 ){ context.moveTo( xPos, yPos ); } else { context.lineTo( xPos, yPos ); } } } context.closePath(); }; export default CRp; ================================================ FILE: src/extensions/renderer/canvas/ele-texture-cache-lookup.mjs ================================================ import Map from '../../../map.mjs'; import Set from'../../../set.mjs'; import * as util from '../../../util/index.mjs'; // Allows lookups for (ele, lvl) => cache. // Uses keys so elements may share the same cache. class ElementTextureCacheLookup { constructor(getKey, doesEleInvalidateKey = util.falsify){ this.idsByKey = new Map(); this.keyForId = new Map(); this.cachesByLvl = new Map(); this.lvls = []; this.getKey = getKey; this.doesEleInvalidateKey = doesEleInvalidateKey; } getIdsFor(key){ if( key == null ){ util.error(`Can not get id list for null key`); } let { idsByKey } = this; let ids = this.idsByKey.get(key); if( !ids ){ ids = new Set(); idsByKey.set(key, ids); } return ids; } addIdForKey(key, id){ if( key != null ){ this.getIdsFor(key).add(id); } } deleteIdForKey(key, id){ if( key != null ){ this.getIdsFor(key).delete(id); } } getNumberOfIdsForKey(key){ if( key == null ){ return 0; } else { return this.getIdsFor(key).size; } } updateKeyMappingFor(ele){ let id = ele.id(); let prevKey = this.keyForId.get(id); let currKey = this.getKey(ele); this.deleteIdForKey(prevKey, id); this.addIdForKey(currKey, id); this.keyForId.set(id, currKey); } deleteKeyMappingFor(ele){ let id = ele.id(); let prevKey = this.keyForId.get(id); this.deleteIdForKey(prevKey, id); this.keyForId.delete(id); } keyHasChangedFor(ele){ let id = ele.id(); let prevKey = this.keyForId.get(id); let newKey = this.getKey(ele); return prevKey !== newKey; } isInvalid(ele){ return this.keyHasChangedFor(ele) || this.doesEleInvalidateKey(ele); } getCachesAt(lvl){ let { cachesByLvl, lvls } = this; let caches = cachesByLvl.get(lvl); if( !caches ){ caches = new Map(); cachesByLvl.set(lvl, caches); lvls.push(lvl); } return caches; } getCache(key, lvl){ return this.getCachesAt(lvl).get(key); } get(ele, lvl){ let key = this.getKey(ele); let cache = this.getCache(key, lvl); // getting for an element may need to add to the id list b/c eles can share keys if( cache != null ){ this.updateKeyMappingFor(ele); } return cache; } getForCachedKey(ele, lvl){ let key = this.keyForId.get(ele.id()); // n.b. use cached key, not newly computed key let cache = this.getCache(key, lvl); return cache; } hasCache(key, lvl){ return this.getCachesAt(lvl).has(key); } has(ele, lvl){ let key = this.getKey(ele); return this.hasCache(key, lvl); } setCache(key, lvl, cache){ cache.key = key; this.getCachesAt(lvl).set(key, cache); } set(ele, lvl, cache){ let key = this.getKey(ele); this.setCache(key, lvl, cache); this.updateKeyMappingFor(ele); } deleteCache(key, lvl){ this.getCachesAt(lvl).delete(key); } delete(ele, lvl){ let key = this.getKey(ele); this.deleteCache(key, lvl); } invalidateKey(key){ this.lvls.forEach( lvl => this.deleteCache(key, lvl) ); } // returns true if no other eles reference the invalidated cache (n.b. other eles may need the cache with the same key) invalidate(ele){ let id = ele.id(); let key = this.keyForId.get(id); // n.b. use stored key rather than current (potential key) this.deleteKeyMappingFor(ele); let entireKeyInvalidated = this.doesEleInvalidateKey(ele); if( entireKeyInvalidated ){ // clear mapping for current key this.invalidateKey(key); } return entireKeyInvalidated || this.getNumberOfIdsForKey(key) === 0; } } export default ElementTextureCacheLookup; ================================================ FILE: src/extensions/renderer/canvas/ele-texture-cache.mjs ================================================ import * as math from '../../../math.mjs'; import { trueify, falsify, removeFromArray, clearArray, MAX_INT, assign, defaults } from '../../../util/index.mjs'; import Heap from '../../../heap.mjs'; import defs from './texture-cache-defs.mjs'; import ElementTextureCacheLookup from './ele-texture-cache-lookup.mjs'; const minTxrH = 25; // the size of the texture cache for small height eles (special case) const txrStepH = 50; // the min size of the regular cache, and the size it increases with each step up const minLvl = -4; // when scaling smaller than that we don't need to re-render export const maxLvl = 3; // when larger than this scale just render directly (caching is not helpful) export const maxZoom = 7.99; // beyond this zoom level, layered textures are not used const eleTxrSpacing = 8; // spacing between elements on textures to avoid blitting overlaps const defTxrWidth = 1024; // default/minimum texture width const maxTxrW = 1024; // the maximum width of a texture const maxTxrH = 1024; // the maximum height of a texture const minUtility = 0.2; // if usage of texture is less than this, it is retired const maxFullness = 0.8; // fullness of texture after which queue removal is checked const maxFullnessChecks = 10; // dequeued after this many checks const deqCost = 0.15; // % of add'l rendering cost allowed for dequeuing ele caches each frame const deqAvgCost = 0.1; // % of add'l rendering cost compared to average overall redraw time const deqNoDrawCost = 0.9; // % of avg frame time that can be used for dequeueing when not drawing const deqFastCost = 0.9; // % of frame time to be used when >60fps const deqRedrawThreshold = 100; // time to batch redraws together from dequeueing to allow more dequeueing calcs to happen in the meanwhile const maxDeqSize = 1; // number of eles to dequeue and render at higher texture in each batch const getTxrReasons = { dequeue: 'dequeue', downscale: 'downscale', highQuality: 'highQuality' }; const initDefaults = defaults({ getKey: null, doesEleInvalidateKey: falsify, drawElement: null, getBoundingBox: null, getRotationPoint: null, getRotationOffset: null, isVisible: trueify, allowEdgeTxrCaching: true, allowParentTxrCaching: true }); const ElementTextureCache = function( renderer, initOptions ){ let self = this; self.renderer = renderer; self.onDequeues = []; let opts = initDefaults(initOptions); assign(self, opts); self.lookup = new ElementTextureCacheLookup(opts.getKey, opts.doesEleInvalidateKey); self.setupDequeueing(); }; const ETCp = ElementTextureCache.prototype; ETCp.reasons = getTxrReasons; // the list of textures in which new subtextures for elements can be placed ETCp.getTextureQueue = function( txrH ){ let self = this; self.eleImgCaches = self.eleImgCaches || {}; return ( self.eleImgCaches[ txrH ] = self.eleImgCaches[ txrH ] || [] ); }; // the list of usused textures which can be recycled (in use in texture queue) ETCp.getRetiredTextureQueue = function( txrH ){ let self = this; let rtxtrQs = self.eleImgCaches.retired = self.eleImgCaches.retired || {}; let rtxtrQ = rtxtrQs[ txrH ] = rtxtrQs[ txrH ] || []; return rtxtrQ; }; // queue of element draw requests at different scale levels ETCp.getElementQueue = function(){ let self = this; let q = self.eleCacheQueue = self.eleCacheQueue || new Heap(function( a, b ){ return b.reqs - a.reqs; }); return q; }; // queue of element draw requests at different scale levels (element id lookup) ETCp.getElementKeyToQueue = function(){ let self = this; let k2q = self.eleKeyToCacheQueue = self.eleKeyToCacheQueue || {}; return k2q; }; ETCp.getElement = function( ele, bb, pxRatio, lvl, reason ){ let self = this; let r = this.renderer; let zoom = r.cy.zoom(); let lookup = this.lookup; if( !bb || bb.w === 0 || bb.h === 0 || isNaN(bb.w) || isNaN(bb.h) || !ele.visible() || ele.removed() ){ return null; } if( ( !self.allowEdgeTxrCaching && ele.isEdge() ) || ( !self.allowParentTxrCaching && ele.isParent() ) ){ return null; } if( lvl == null ){ lvl = Math.ceil( math.log2( zoom * pxRatio ) ); } if( lvl < minLvl ){ lvl = minLvl; } else if( zoom >= maxZoom || lvl > maxLvl ){ return null; } let scale = Math.pow( 2, lvl ); let eleScaledH = bb.h * scale; let eleScaledW = bb.w * scale; let scaledLabelShown = r.eleTextBiggerThanMin( ele, scale ); if( !this.isVisible(ele, scaledLabelShown) ){ return null; } let eleCache = lookup.get( ele, lvl ); // if this get was on an unused/invalidated cache, then restore the texture usage metric if( eleCache && eleCache.invalidated ){ eleCache.invalidated = false; eleCache.texture.invalidatedWidth -= eleCache.width; } if( eleCache ){ return eleCache; } let txrH; // which texture height this ele belongs to if( eleScaledH <= minTxrH ){ txrH = minTxrH; } else if( eleScaledH <= txrStepH ){ txrH = txrStepH; } else { txrH = Math.ceil( eleScaledH / txrStepH ) * txrStepH; } if( eleScaledH > maxTxrH || eleScaledW > maxTxrW ){ return null; // caching large elements is not efficient } let txrQ = self.getTextureQueue( txrH ); // first try the second last one in case it has space at the end let txr = txrQ[ txrQ.length - 2 ]; let addNewTxr = function(){ return self.recycleTexture( txrH, eleScaledW ) || self.addTexture( txrH, eleScaledW ); }; // try the last one if there is no second last one if( !txr ){ txr = txrQ[ txrQ.length - 1 ]; } // if the last one doesn't exist, we need a first one if( !txr ){ txr = addNewTxr(); } // if there's no room in the current texture, we need a new one if( txr.width - txr.usedWidth < eleScaledW ){ txr = addNewTxr(); } let scalableFrom = function( otherCache ){ return otherCache && otherCache.scaledLabelShown === scaledLabelShown; }; let deqing = reason && reason === getTxrReasons.dequeue; let highQualityReq = reason && reason === getTxrReasons.highQuality; let downscaleReq = reason && reason === getTxrReasons.downscale; let higherCache; // the nearest cache with a higher level for( let l = lvl + 1; l <= maxLvl; l++ ){ let c = lookup.get( ele, l ); if( c ){ higherCache = c; break; } } let oneUpCache = higherCache && higherCache.level === lvl + 1 ? higherCache : null; let downscale = function(){ txr.context.drawImage( oneUpCache.texture.canvas, oneUpCache.x, 0, oneUpCache.width, oneUpCache.height, txr.usedWidth, 0, eleScaledW, eleScaledH ); }; // reset ele area in texture txr.context.setTransform( 1, 0, 0, 1, 0, 0 ); txr.context.clearRect( txr.usedWidth, 0, eleScaledW, txrH ); if( scalableFrom(oneUpCache) ){ // then we can relatively cheaply rescale the existing image w/o rerendering downscale(); } else if( scalableFrom(higherCache) ){ // then use the higher cache for now and queue the next level down // to cheaply scale towards the smaller level if( highQualityReq ){ for( let l = higherCache.level; l > lvl; l-- ){ oneUpCache = self.getElement( ele, bb, pxRatio, l, getTxrReasons.downscale ); } downscale(); } else { self.queueElement( ele, higherCache.level - 1 ); return higherCache; } } else { let lowerCache; // the nearest cache with a lower level if( !deqing && !highQualityReq && !downscaleReq ){ for( let l = lvl - 1; l >= minLvl; l-- ){ let c = lookup.get( ele, l ); if( c ){ lowerCache = c; break; } } } if( scalableFrom(lowerCache) ){ // then use the lower quality cache for now and queue the better one for later self.queueElement( ele, lvl ); return lowerCache; } txr.context.translate( txr.usedWidth, 0 ); txr.context.scale( scale, scale ); this.drawElement( txr.context, ele, bb, scaledLabelShown, false ); txr.context.scale( 1/scale, 1/scale ); txr.context.translate( -txr.usedWidth, 0 ); } eleCache = { x: txr.usedWidth, texture: txr, level: lvl, scale: scale, width: eleScaledW, height: eleScaledH, scaledLabelShown: scaledLabelShown }; txr.usedWidth += Math.ceil( eleScaledW + eleTxrSpacing ); txr.eleCaches.push( eleCache ); lookup.set( ele, lvl, eleCache ); self.checkTextureFullness( txr ); return eleCache; }; ETCp.invalidateElements = function( eles ){ for( let i = 0; i < eles.length; i++ ){ this.invalidateElement(eles[i]); } }; ETCp.invalidateElement = function( ele ){ let self = this; let lookup = self.lookup; let caches = []; let invalid = lookup.isInvalid(ele); if( !invalid ){ return; // override the invalidation request if the element key has not changed } for( let lvl = minLvl; lvl <= maxLvl; lvl++ ){ let cache = lookup.getForCachedKey( ele, lvl ); if( cache ){ caches.push( cache ); } } let noOtherElesUseCache = lookup.invalidate(ele); if( noOtherElesUseCache ){ for( let i = 0; i < caches.length; i++ ){ let cache = caches[i]; let txr = cache.texture; // remove space from the texture it belongs to txr.invalidatedWidth += cache.width; // mark the cache as invalidated cache.invalidated = true; // retire the texture if its utility is low self.checkTextureUtility( txr ); } } // remove from queue since the old req was for the old state self.removeFromQueue( ele ); }; ETCp.checkTextureUtility = function( txr ){ // invalidate all entries in the cache if the cache size is small if( txr.invalidatedWidth >= minUtility * txr.width ){ this.retireTexture( txr ); } }; ETCp.checkTextureFullness = function( txr ){ // if texture has been mostly filled and passed over several times, remove // it from the queue so we don't need to waste time looking at it to put new things let self = this; let txrQ = self.getTextureQueue( txr.height ); if( txr.usedWidth / txr.width > maxFullness && txr.fullnessChecks >= maxFullnessChecks ){ removeFromArray( txrQ, txr ); } else { txr.fullnessChecks++; } }; ETCp.retireTexture = function( txr ){ let self = this; let txrH = txr.height; let txrQ = self.getTextureQueue( txrH ); let lookup = this.lookup; // retire the texture from the active / searchable queue: removeFromArray( txrQ, txr ); txr.retired = true; // remove the refs from the eles to the caches: let eleCaches = txr.eleCaches; for( let i = 0; i < eleCaches.length; i++ ){ let eleCache = eleCaches[i]; lookup.deleteCache( eleCache.key, eleCache.level ); } clearArray( eleCaches ); // add the texture to a retired queue so it can be recycled in future: let rtxtrQ = self.getRetiredTextureQueue( txrH ); rtxtrQ.push( txr ); }; ETCp.addTexture = function( txrH, minW ){ let self = this; let txrQ = self.getTextureQueue( txrH ); let txr = {}; txrQ.push( txr ); txr.eleCaches = []; txr.height = txrH; txr.width = Math.max( defTxrWidth, minW ); txr.usedWidth = 0; txr.invalidatedWidth = 0; txr.fullnessChecks = 0; txr.canvas = self.renderer.makeOffscreenCanvas(txr.width, txr.height); txr.context = txr.canvas.getContext('2d'); return txr; }; ETCp.recycleTexture = function( txrH, minW ){ let self = this; let txrQ = self.getTextureQueue( txrH ); let rtxtrQ = self.getRetiredTextureQueue( txrH ); for( let i = 0; i < rtxtrQ.length; i++ ){ let txr = rtxtrQ[i]; if( txr.width >= minW ){ txr.retired = false; txr.usedWidth = 0; txr.invalidatedWidth = 0; txr.fullnessChecks = 0; clearArray( txr.eleCaches ); txr.context.setTransform( 1, 0, 0, 1, 0, 0 ); txr.context.clearRect( 0, 0, txr.width, txr.height ); removeFromArray( rtxtrQ, txr ); txrQ.push( txr ); return txr; } } }; ETCp.queueElement = function( ele, lvl ){ let self = this; let q = self.getElementQueue(); let k2q = self.getElementKeyToQueue(); let key = this.getKey(ele); let existingReq = k2q[key]; if( existingReq ){ // use the max lvl b/c in between lvls are cheap to make existingReq.level = Math.max( existingReq.level, lvl ); existingReq.eles.merge(ele); existingReq.reqs++; q.updateItem( existingReq ); } else { let req = { eles: ele.spawn().merge(ele), level: lvl, reqs: 1, key }; q.push( req ); k2q[key] = req; } }; ETCp.dequeue = function( pxRatio /*, extent*/ ){ let self = this; let q = self.getElementQueue(); let k2q = self.getElementKeyToQueue(); let dequeued = []; let lookup = self.lookup; for( let i = 0; i < maxDeqSize; i++ ){ if( q.size() > 0 ){ let req = q.pop(); let key = req.key; let ele = req.eles[0]; // all eles have the same key let cacheExists = lookup.hasCache(ele, req.level); // clear out the key to req lookup k2q[key] = null; // dequeueing isn't necessary with an existing cache if( cacheExists ){ continue; } dequeued.push( req ); let bb = self.getBoundingBox( ele ); self.getElement( ele, bb, pxRatio, req.level, getTxrReasons.dequeue ); } else { break; } } return dequeued; }; ETCp.removeFromQueue = function( ele ){ let self = this; let q = self.getElementQueue(); let k2q = self.getElementKeyToQueue(); let key = this.getKey(ele); let req = k2q[key]; if( req != null ){ if( req.eles.length === 1 ){ // remove if last ele in the req // bring to front of queue req.reqs = MAX_INT; q.updateItem(req); q.pop(); // remove from queue k2q[key] = null; // remove from lookup map } else { // otherwise just remove ele from req req.eles.unmerge(ele); } } }; ETCp.onDequeue = function( fn ){ this.onDequeues.push( fn ); }; ETCp.offDequeue = function( fn ){ removeFromArray( this.onDequeues, fn ); }; ETCp.setupDequeueing = defs.setupDequeueing({ deqRedrawThreshold: deqRedrawThreshold, deqCost: deqCost, deqAvgCost: deqAvgCost, deqNoDrawCost: deqNoDrawCost, deqFastCost: deqFastCost, deq: function( self, pxRatio, extent ){ return self.dequeue( pxRatio, extent ); }, onDeqd: function( self, deqd ){ for( let i = 0; i < self.onDequeues.length; i++ ){ let fn = self.onDequeues[i]; fn( deqd ); } }, shouldRedraw: function( self, deqd, pxRatio, extent ){ for( let i = 0; i < deqd.length; i++ ){ let eles = deqd[i].eles; for( let j = 0; j < eles.length; j++ ){ let bb = eles[j].boundingBox(); if( math.boundingBoxesIntersect( bb, extent ) ){ return true; } } } return false; }, priority: function( self ){ return self.renderer.beforeRenderPriorities.eleTxrDeq; } }); export default ElementTextureCache; ================================================ FILE: src/extensions/renderer/canvas/export-image.mjs ================================================ /* global atob, ArrayBuffer, Uint8Array, Blob */ import * as is from '../../../is.mjs'; import Promise from '../../../promise.mjs'; var CRp = {}; CRp.createBuffer = function( w, h ){ var buffer = document.createElement( 'canvas' ); // eslint-disable-line no-undef buffer.width = w; buffer.height = h; return [ buffer, buffer.getContext( '2d' ) ]; }; CRp.bufferCanvasImage = function( options ){ var cy = this.cy; var eles = cy.mutableElements(); var bb = eles.boundingBox(); var ctrRect = this.findContainerClientCoords(); var width = options.full ? Math.ceil( bb.w ) : ctrRect[2]; var height = options.full ? Math.ceil( bb.h ) : ctrRect[3]; var specdMaxDims = is.number( options.maxWidth ) || is.number( options.maxHeight ); var pxRatio = this.getPixelRatio(); var scale = 1; if( options.scale !== undefined ){ width *= options.scale; height *= options.scale; scale = options.scale; } else if( specdMaxDims ){ var maxScaleW = Infinity; var maxScaleH = Infinity; if( is.number( options.maxWidth ) ){ maxScaleW = scale * options.maxWidth / width; } if( is.number( options.maxHeight ) ){ maxScaleH = scale * options.maxHeight / height; } scale = Math.min( maxScaleW, maxScaleH ); width *= scale; height *= scale; } if( !specdMaxDims ){ width *= pxRatio; height *= pxRatio; scale *= pxRatio; } var buffCanvas = document.createElement( 'canvas' ); // eslint-disable-line no-undef buffCanvas.width = width; buffCanvas.height = height; buffCanvas.style.width = width + 'px'; buffCanvas.style.height = height + 'px'; var buffCxt = buffCanvas.getContext( '2d' ); // Rasterize the layers, but only if container has nonzero size if( width > 0 && height > 0 ){ buffCxt.clearRect( 0, 0, width, height ); buffCxt.globalCompositeOperation = 'source-over'; var zsortedEles = this.getCachedZSortedEles(); if( options.full ){ // draw the full bounds of the graph buffCxt.translate( -bb.x1 * scale, -bb.y1 * scale ); buffCxt.scale( scale, scale ); this.drawElements( buffCxt, zsortedEles ); buffCxt.scale( 1/scale, 1/scale ); buffCxt.translate( bb.x1 * scale, bb.y1 * scale ); } else { // draw the current view var pan = cy.pan(); var translation = { x: pan.x * scale, y: pan.y * scale }; scale *= cy.zoom(); buffCxt.translate( translation.x, translation.y ); buffCxt.scale( scale, scale ); this.drawElements( buffCxt, zsortedEles ); buffCxt.scale( 1/scale, 1/scale ); buffCxt.translate( -translation.x, -translation.y ); } // need to fill bg at end like this in order to fill cleared transparent pixels in jpgs if( options.bg ){ buffCxt.globalCompositeOperation = 'destination-over'; buffCxt.fillStyle = options.bg; buffCxt.rect( 0, 0, width, height ); buffCxt.fill(); } } return buffCanvas; }; function b64ToBlob( b64, mimeType ){ var bytes = atob( b64 ); var buff = new ArrayBuffer( bytes.length ); var buffUint8 = new Uint8Array( buff ); for( var i = 0; i < bytes.length; i++ ){ buffUint8[i] = bytes.charCodeAt(i); } return new Blob( [buff], { type: mimeType } ); } function b64UriToB64( b64uri ){ var i = b64uri.indexOf(','); return b64uri.substr( i + 1 ); } function output( options, canvas, mimeType ){ let getB64Uri = () => canvas.toDataURL( mimeType, options.quality ); switch( options.output ){ case 'blob-promise': return new Promise((resolve, reject) => { try { canvas.toBlob(blob => { if( blob != null ){ resolve(blob); } else { reject( new Error('`canvas.toBlob()` sent a null value in its callback') ); } }, mimeType, options.quality); } catch( err ){ reject(err); } }); case 'blob': return b64ToBlob( b64UriToB64( getB64Uri() ), mimeType ); case 'base64': return b64UriToB64( getB64Uri() ); case 'base64uri': default: return getB64Uri(); } } CRp.png = function( options ){ return output( options, this.bufferCanvasImage( options ), 'image/png' ); }; CRp.jpg = function( options ){ return output( options, this.bufferCanvasImage( options ), 'image/jpeg' ); }; export default CRp; ================================================ FILE: src/extensions/renderer/canvas/index.mjs ================================================ /* The canvas renderer was written by Yue Dong. Modifications tracked on Github. */ /* global OffscreenCanvas */ import * as util from '../../../util/index.mjs'; import * as is from '../../../is.mjs'; import { makeBoundingBox } from '../../../math.mjs'; import ElementTextureCache from './ele-texture-cache.mjs'; import LayeredTextureCache from './layered-texture-cache.mjs'; import arrowShapes from './arrow-shapes.mjs'; import drawingElements from './drawing-elements.mjs'; import drawingEdges from './drawing-edges.mjs'; import drawingImages from './drawing-images.mjs'; import drawingLabelText from './drawing-label-text.mjs'; import drawingNodes from './drawing-nodes.mjs'; import drawingRedraw from './drawing-redraw.mjs'; import drawingRedrawWebGL from './webgl/drawing-redraw-webgl.mjs'; import drawingShapes from './drawing-shapes.mjs'; import exportImage from './export-image.mjs'; import nodeShapes from './node-shapes.mjs'; var CR = CanvasRenderer; var CRp = CanvasRenderer.prototype; CRp.CANVAS_LAYERS = 3; // CRp.SELECT_BOX = 0; CRp.DRAG = 1; CRp.NODE = 2; CRp.WEBGL = 3; CRp.CANVAS_TYPES = [ '2d', '2d', '2d', 'webgl2' ]; CRp.BUFFER_COUNT = 3; // CRp.TEXTURE_BUFFER = 0; CRp.MOTIONBLUR_BUFFER_NODE = 1; CRp.MOTIONBLUR_BUFFER_DRAG = 2; function CanvasRenderer( options ){ var r = this; var containerWindow = r.cy.window(); var document = containerWindow.document; if( options.webgl ){ CRp.CANVAS_LAYERS = r.CANVAS_LAYERS = 4; console.log('webgl rendering enabled'); } r.data = { canvases: new Array( CRp.CANVAS_LAYERS ), contexts: new Array( CRp.CANVAS_LAYERS ), canvasNeedsRedraw: new Array( CRp.CANVAS_LAYERS ), bufferCanvases: new Array( CRp.BUFFER_COUNT ), bufferContexts: new Array( CRp.CANVAS_LAYERS ), }; var tapHlOffAttr = '-webkit-tap-highlight-color'; var tapHlOffStyle = 'rgba(0,0,0,0)'; r.data.canvasContainer = document.createElement( 'div' ); // eslint-disable-line no-undef var containerStyle = r.data.canvasContainer.style; r.data.canvasContainer.style[tapHlOffAttr] = tapHlOffStyle; containerStyle.position = 'relative'; containerStyle.zIndex = '0'; containerStyle.overflow = 'hidden'; var container = options.cy.container(); container.appendChild( r.data.canvasContainer ); container.style[tapHlOffAttr] = tapHlOffStyle; var styleMap = { '-webkit-user-select': 'none', '-moz-user-select': '-moz-none', 'user-select': 'none', '-webkit-tap-highlight-color': 'rgba(0,0,0,0)', 'outline-style': 'none', }; if(is.ms()) { styleMap['-ms-touch-action'] = 'none'; styleMap['touch-action'] = 'none'; } for( var i = 0; i < CRp.CANVAS_LAYERS; i++ ){ var canvas = r.data.canvases[ i ] = document.createElement( 'canvas' ); // eslint-disable-line no-undef var type = CRp.CANVAS_TYPES[ i ]; r.data.contexts[ i ] = canvas.getContext( type ); if( !r.data.contexts[ i ] ) { util.error( 'Could not create canvas of type ' + type ); } Object.keys(styleMap).forEach((k) => { canvas.style[k] = styleMap[k]; }); canvas.style.position = 'absolute'; canvas.setAttribute( 'data-id', 'layer' + i ); canvas.style.zIndex = String( CRp.CANVAS_LAYERS - i ); r.data.canvasContainer.appendChild( canvas ); r.data.canvasNeedsRedraw[ i ] = false; } r.data.topCanvas = r.data.canvases[0]; r.data.canvases[ CRp.NODE ].setAttribute( 'data-id', 'layer' + CRp.NODE + '-node' ); r.data.canvases[ CRp.SELECT_BOX ].setAttribute( 'data-id', 'layer' + CRp.SELECT_BOX + '-selectbox' ); r.data.canvases[ CRp.DRAG ].setAttribute( 'data-id', 'layer' + CRp.DRAG + '-drag' ); if( r.data.canvases[ CRp.WEBGL ] ) { r.data.canvases[ CRp.WEBGL ].setAttribute( 'data-id', 'layer' + CRp.WEBGL + '-webgl' ); } for( var i = 0; i < CRp.BUFFER_COUNT; i++ ){ r.data.bufferCanvases[ i ] = document.createElement( 'canvas' ); // eslint-disable-line no-undef r.data.bufferContexts[ i ] = r.data.bufferCanvases[ i ].getContext( '2d' ); r.data.bufferCanvases[ i ].style.position = 'absolute'; r.data.bufferCanvases[ i ].setAttribute( 'data-id', 'buffer' + i ); r.data.bufferCanvases[ i ].style.zIndex = String( -i - 1 ); r.data.bufferCanvases[ i ].style.visibility = 'hidden'; //r.data.canvasContainer.appendChild(r.data.bufferCanvases[i]); } r.pathsEnabled = true; let emptyBb = makeBoundingBox(); let getBoxCenter = bb => ({ x: (bb.x1 + bb.x2)/2, y: (bb.y1 + bb.y2)/2 }); let getCenterOffset = bb => ({ x: -bb.w/2, y: -bb.h/2 }); let backgroundTimestampHasChanged = ele => { let _p = ele[0]._private; let same = _p.oldBackgroundTimestamp === _p.backgroundTimestamp; return !same; }; let getStyleKey = ele => ele[0]._private.nodeKey; let getLabelKey = ele => ele[0]._private.labelStyleKey; let getSourceLabelKey = ele => ele[0]._private.sourceLabelStyleKey; let getTargetLabelKey = ele => ele[0]._private.targetLabelStyleKey; let drawElement = (context, ele, bb, scaledLabelShown, useEleOpacity) => r.drawElement( context, ele, bb, false, false, useEleOpacity ); let drawLabel = (context, ele, bb, scaledLabelShown, useEleOpacity) => r.drawElementText( context, ele, bb, scaledLabelShown, 'main', useEleOpacity ); let drawSourceLabel = (context, ele, bb, scaledLabelShown, useEleOpacity) => r.drawElementText( context, ele, bb, scaledLabelShown, 'source', useEleOpacity ); let drawTargetLabel = (context, ele, bb, scaledLabelShown, useEleOpacity) => r.drawElementText( context, ele, bb, scaledLabelShown, 'target', useEleOpacity ); let getElementBox = ele => { ele.boundingBox(); return ele[0]._private.bodyBounds; }; let getLabelBox = ele => { ele.boundingBox(); return ele[0]._private.labelBounds.main || emptyBb; }; let getSourceLabelBox = ele => { ele.boundingBox(); return ele[0]._private.labelBounds.source || emptyBb; }; let getTargetLabelBox = ele => { ele.boundingBox(); return ele[0]._private.labelBounds.target || emptyBb; }; let isLabelVisibleAtScale = (ele, scaledLabelShown) => scaledLabelShown; let getElementRotationPoint = ele => getBoxCenter( getElementBox(ele) ); let addTextMargin = (prefix, pt, ele) => { let pre = prefix ? prefix + '-' : ''; return { x: pt.x + ele.pstyle(pre + 'text-margin-x').pfValue, y: pt.y + ele.pstyle(pre + 'text-margin-y').pfValue }; }; let getRsPt = (ele, x, y) => { let rs = ele[0]._private.rscratch; return { x: rs[x], y: rs[y] }; }; let getLabelRotationPoint = ele => addTextMargin('', getRsPt(ele, 'labelX', 'labelY'), ele); let getSourceLabelRotationPoint = ele => addTextMargin('source', getRsPt(ele, 'sourceLabelX', 'sourceLabelY'), ele); let getTargetLabelRotationPoint = ele => addTextMargin('target', getRsPt(ele, 'targetLabelX', 'targetLabelY'), ele); let getElementRotationOffset = ele => getCenterOffset( getElementBox(ele) ); let getSourceLabelRotationOffset = ele => getCenterOffset( getSourceLabelBox(ele) ); let getTargetLabelRotationOffset = ele => getCenterOffset( getTargetLabelBox(ele) ); let getLabelRotationOffset = ele => { let bb = getLabelBox(ele); let p = getCenterOffset( getLabelBox(ele) ); if( ele.isNode() ){ switch( ele.pstyle('text-halign').value ){ case 'left': p.x = -bb.w - (bb.leftPad || 0); break; case 'right': p.x = -(bb.rightPad || 0); break; } switch( ele.pstyle('text-valign').value ){ case 'top': p.y = -bb.h - (bb.topPad || 0); break; case 'bottom': p.y = -(bb.botPad || 0); break; } } return p; }; let eleTxrCache = r.data.eleTxrCache = new ElementTextureCache( r, { getKey: getStyleKey, doesEleInvalidateKey: backgroundTimestampHasChanged, drawElement: drawElement, getBoundingBox: getElementBox, getRotationPoint: getElementRotationPoint, getRotationOffset: getElementRotationOffset, allowEdgeTxrCaching: false, allowParentTxrCaching: false } ); let lblTxrCache = r.data.lblTxrCache = new ElementTextureCache( r, { getKey: getLabelKey, drawElement: drawLabel, getBoundingBox: getLabelBox, getRotationPoint: getLabelRotationPoint, getRotationOffset: getLabelRotationOffset, isVisible: isLabelVisibleAtScale } ); let slbTxrCache = r.data.slbTxrCache = new ElementTextureCache( r, { getKey: getSourceLabelKey, drawElement: drawSourceLabel, getBoundingBox: getSourceLabelBox, getRotationPoint: getSourceLabelRotationPoint, getRotationOffset: getSourceLabelRotationOffset, isVisible: isLabelVisibleAtScale } ); let tlbTxrCache = r.data.tlbTxrCache = new ElementTextureCache( r, { getKey: getTargetLabelKey, drawElement: drawTargetLabel, getBoundingBox: getTargetLabelBox, getRotationPoint: getTargetLabelRotationPoint, getRotationOffset: getTargetLabelRotationOffset, isVisible: isLabelVisibleAtScale } ); let lyrTxrCache = r.data.lyrTxrCache = new LayeredTextureCache( r ); r.onUpdateEleCalcs(function invalidateTextureCaches( willDraw, eles ){ // each cache should check for sub-key diff to see that the update affects that cache particularly eleTxrCache.invalidateElements( eles ); lblTxrCache.invalidateElements( eles ); slbTxrCache.invalidateElements( eles ); tlbTxrCache.invalidateElements( eles ); // any change invalidates the layers lyrTxrCache.invalidateElements( eles ); // update the old bg timestamp so diffs can be done in the ele txr caches for( let i = 0; i < eles.length; i++ ){ let _p = eles[i]._private; _p.oldBackgroundTimestamp = _p.backgroundTimestamp; } }); let refineInLayers = reqs => { for( var i = 0; i < reqs.length; i++ ){ lyrTxrCache.enqueueElementRefinement( reqs[i].ele ); } }; eleTxrCache.onDequeue(refineInLayers); lblTxrCache.onDequeue(refineInLayers); slbTxrCache.onDequeue(refineInLayers); tlbTxrCache.onDequeue(refineInLayers); if( options.webgl ) { r.initWebgl( options, { getStyleKey, getLabelKey, getSourceLabelKey, getTargetLabelKey, drawElement, drawLabel, drawSourceLabel, drawTargetLabel, getElementBox, getLabelBox, getSourceLabelBox, getTargetLabelBox, getElementRotationPoint, getElementRotationOffset, getLabelRotationPoint, getSourceLabelRotationPoint, getTargetLabelRotationPoint, getLabelRotationOffset, getSourceLabelRotationOffset, getTargetLabelRotationOffset } ); } } CRp.redrawHint = function( group, bool ){ var r = this; switch( group ){ case 'eles': r.data.canvasNeedsRedraw[ CRp.NODE ] = bool; break; case 'drag': r.data.canvasNeedsRedraw[ CRp.DRAG ] = bool; break; case 'select': r.data.canvasNeedsRedraw[ CRp.SELECT_BOX ] = bool; break; case 'gc': r.data.gc = true; break; } }; // whether to use Path2D caching for drawing var pathsImpld = typeof Path2D !== 'undefined'; CRp.path2dEnabled = function( on ){ if( on === undefined ){ return this.pathsEnabled; } this.pathsEnabled = on ? true : false; }; CRp.usePaths = function(){ return pathsImpld && this.pathsEnabled; }; CRp.setImgSmoothing = function( context, bool ){ if( context.imageSmoothingEnabled != null ){ context.imageSmoothingEnabled = bool; } else { context.webkitImageSmoothingEnabled = bool; context.mozImageSmoothingEnabled = bool; context.msImageSmoothingEnabled = bool; } }; CRp.getImgSmoothing = function( context ){ if( context.imageSmoothingEnabled != null ){ return context.imageSmoothingEnabled; } else { return context.webkitImageSmoothingEnabled || context.mozImageSmoothingEnabled || context.msImageSmoothingEnabled; } }; CRp.makeOffscreenCanvas = function(width, height){ let canvas; if( typeof OffscreenCanvas !== typeof undefined ){ canvas = new OffscreenCanvas(width, height); } else { var containerWindow = this.cy.window(); var document = containerWindow.document; canvas = document.createElement('canvas'); // eslint-disable-line no-undef canvas.width = width; canvas.height = height; } return canvas; }; [ arrowShapes, drawingElements, drawingEdges, drawingImages, drawingLabelText, drawingNodes, drawingRedraw, drawingRedrawWebGL, drawingShapes, exportImage, nodeShapes ].forEach( function( props ){ util.extend( CRp, props ); } ); export default CR; ================================================ FILE: src/extensions/renderer/canvas/layered-texture-cache.mjs ================================================ import * as util from '../../../util/index.mjs'; import * as math from '../../../math.mjs'; import Heap from '../../../heap.mjs'; import * as is from '../../../is.mjs'; import defs from './texture-cache-defs.mjs'; var defNumLayers = 1; // default number of layers to use var minLvl = -4; // when scaling smaller than that we don't need to re-render var maxLvl = 2; // when larger than this scale just render directly (caching is not helpful) var maxZoom = 3.99; // beyond this zoom level, layered textures are not used var deqRedrawThreshold = 50; // time to batch redraws together from dequeueing to allow more dequeueing calcs to happen in the meanwhile var refineEleDebounceTime = 50; // time to debounce sharper ele texture updates var disableEleImgSmoothing = true; // when drawing eles on layers from an ele cache ; crisper and more performant when true var deqCost = 0.15; // % of add'l rendering cost allowed for dequeuing ele caches each frame var deqAvgCost = 0.1; // % of add'l rendering cost compared to average overall redraw time var deqNoDrawCost = 0.9; // % of avg frame time that can be used for dequeueing when not drawing var deqFastCost = 0.9; // % of frame time to be used when >60fps var maxDeqSize = 1; // number of eles to dequeue and render at higher texture in each batch var invalidThreshold = 250; // time threshold for disabling b/c of invalidations var maxLayerArea = 4000 * 4000; // layers can't be bigger than this var maxLayerDim = 32767; // maximum size for the width/height of layer canvases var alwaysQueue = true; // never draw all the layers in a level on a frame; draw directly until all dequeued var useHighQualityEleTxrReqs = true; // whether to use high quality ele txr requests (generally faster and cheaper in the longterm) var useEleTxrCaching = true; // whether to use individual ele texture caching underneath this cache // var log = function(){ console.log.apply( console, arguments ); }; var LayeredTextureCache = function( renderer ){ var self = this; var r = self.renderer = renderer; var cy = r.cy; self.layersByLevel = {}; // e.g. 2 => [ layer1, layer2, ..., layerN ] self.firstGet = true; self.lastInvalidationTime = util.performanceNow() - 2*invalidThreshold; self.skipping = false; self.eleTxrDeqs = cy.collection(); self.scheduleElementRefinement = util.debounce( function(){ self.refineElementTextures( self.eleTxrDeqs ); self.eleTxrDeqs.unmerge( self.eleTxrDeqs ); }, refineEleDebounceTime ); r.beforeRender(function( willDraw, now ){ if( now - self.lastInvalidationTime <= invalidThreshold ){ self.skipping = true; } else { self.skipping = false; } }, r.beforeRenderPriorities.lyrTxrSkip); var qSort = function(a, b){ return b.reqs - a.reqs; }; self.layersQueue = new Heap( qSort ); self.setupDequeueing(); }; var LTCp = LayeredTextureCache.prototype; var layerIdPool = 0; var MAX_INT = Math.pow(2, 53) - 1; LTCp.makeLayer = function( bb, lvl ){ var scale = Math.pow( 2, lvl ); var w = Math.ceil( bb.w * scale ); var h = Math.ceil( bb.h * scale ); var canvas = this.renderer.makeOffscreenCanvas(w, h); var layer = { id: (layerIdPool = ++layerIdPool % MAX_INT ), bb: bb, level: lvl, width: w, height: h, canvas: canvas, context: canvas.getContext('2d'), eles: [], elesQueue: [], reqs: 0 }; // log('make layer %s with w %s and h %s and lvl %s', layer.id, layer.width, layer.height, layer.level); var cxt = layer.context; var dx = -layer.bb.x1; var dy = -layer.bb.y1; // do the transform on creation to save cycles (it's the same for all eles) cxt.scale( scale, scale ); cxt.translate( dx, dy ); return layer; }; LTCp.getLayers = function( eles, pxRatio, lvl ){ var self = this; var r = self.renderer; var cy = r.cy; var zoom = cy.zoom(); var firstGet = self.firstGet; self.firstGet = false; // log('--\nget layers with %s eles', eles.length); //log eles.map(function(ele){ return ele.id() }) ); if( lvl == null ){ lvl = Math.ceil( math.log2( zoom * pxRatio ) ); if( lvl < minLvl ){ lvl = minLvl; } else if( zoom >= maxZoom || lvl > maxLvl ){ return null; } } self.validateLayersElesOrdering( lvl, eles ); var layersByLvl = self.layersByLevel; var scale = Math.pow( 2, lvl ); var layers = layersByLvl[ lvl ] = layersByLvl[ lvl ] || []; var bb; var lvlComplete = self.levelIsComplete( lvl, eles ); var tmpLayers; var checkTempLevels = function(){ var canUseAsTmpLvl = function( l ){ self.validateLayersElesOrdering( l, eles ); if( self.levelIsComplete( l, eles ) ){ tmpLayers = layersByLvl[l]; return true; } }; var checkLvls = function( dir ){ if( tmpLayers ){ return; } for( var l = lvl + dir; minLvl <= l && l <= maxLvl; l += dir ){ if( canUseAsTmpLvl(l) ){ break; } } }; checkLvls( +1 ); checkLvls( -1 ); // remove the invalid layers; they will be replaced as needed later in this function for( var i = layers.length - 1; i >= 0; i-- ){ var layer = layers[i]; if( layer.invalid ){ util.removeFromArray( layers, layer ); } } }; if( !lvlComplete ){ // if the current level is incomplete, then use the closest, best quality layerset temporarily // and later queue the current layerset so we can get the proper quality level soon checkTempLevels(); } else { // log('level complete, using existing layers\n--'); return layers; } var getBb = function(){ if( !bb ){ bb = math.makeBoundingBox(); for( var i = 0; i < eles.length; i++ ){ math.updateBoundingBox( bb, eles[i].boundingBox() ); } } return bb; }; var makeLayer = function( opts ){ opts = opts || {}; var after = opts.after; getBb(); var w = Math.ceil( bb.w * scale ); var h = Math.ceil( bb.h * scale ); if( w > maxLayerDim || h > maxLayerDim ){ return null; } var area = w * h; if( area > maxLayerArea ){ return null; } var layer = self.makeLayer( bb, lvl ); if( after != null ){ var index = layers.indexOf( after ) + 1; layers.splice( index, 0, layer ); } else if( opts.insert === undefined || opts.insert ){ // no after specified => first layer made so put at start layers.unshift( layer ); } // if( tmpLayers ){ //self.queueLayer( layer ); // } return layer; }; if( self.skipping && !firstGet ){ // log('skip layers'); return null; } // log('do layers'); var layer = null; var maxElesPerLayer = eles.length / defNumLayers; var allowLazyQueueing = alwaysQueue && !firstGet; for( var i = 0; i < eles.length; i++ ){ var ele = eles[i]; var rs = ele._private.rscratch; var caches = rs.imgLayerCaches = rs.imgLayerCaches || {}; // log('look at ele', ele.id()); var existingLayer = caches[ lvl ]; if( existingLayer ){ // reuse layer for later eles // log('reuse layer for', ele.id()); layer = existingLayer; continue; } if( !layer || layer.eles.length >= maxElesPerLayer || !math.boundingBoxInBoundingBox( layer.bb, ele.boundingBox() ) ){ // log('make new layer for ele %s', ele.id()); layer = makeLayer({ insert: true, after: layer }); // if now layer can be built then we can't use layers at this level if( !layer ){ return null; } // log('new layer with id %s', layer.id); } if( tmpLayers || allowLazyQueueing ){ // log('queue ele %s in layer %s', ele.id(), layer.id); self.queueLayer( layer, ele ); } else { // log('draw ele %s in layer %s', ele.id(), layer.id); self.drawEleInLayer( layer, ele, lvl, pxRatio ); } layer.eles.push( ele ); caches[ lvl ] = layer; } // log('--'); if( tmpLayers ){ // then we only queued the current layerset and can't draw it yet return tmpLayers; } if( allowLazyQueueing ){ // log('lazy queue level', lvl); return null; } return layers; }; // a layer may want to use an ele cache of a higher level to avoid blurriness // so the layer level might not equal the ele level LTCp.getEleLevelForLayerLevel = function( lvl, pxRatio ){ return lvl; }; LTCp.drawEleInLayer = function( layer, ele, lvl, pxRatio ){ var self = this; var r = this.renderer; var context = layer.context; var bb = ele.boundingBox(); if( bb.w === 0 || bb.h === 0 || !ele.visible() ){ return; } lvl = self.getEleLevelForLayerLevel( lvl, pxRatio ); if( disableEleImgSmoothing ){ r.setImgSmoothing( context, false ); } if( useEleTxrCaching ){ r.drawCachedElement( context, ele, null, null, lvl, useHighQualityEleTxrReqs ); } else { // if the element is not cacheable, then draw directly r.drawElement( context, ele ); } if( disableEleImgSmoothing ){ r.setImgSmoothing( context, true ); } }; LTCp.levelIsComplete = function( lvl, eles ){ var self = this; var layers = self.layersByLevel[ lvl ]; if( !layers || layers.length === 0 ){ return false; } var numElesInLayers = 0; for( var i = 0; i < layers.length; i++ ){ var layer = layers[i]; // if there are any eles needed to be drawn yet, the level is not complete if( layer.reqs > 0 ){ return false; } // if the layer is invalid, the level is not complete if( layer.invalid ){ return false; } numElesInLayers += layer.eles.length; } // we should have exactly the number of eles passed in to be complete if( numElesInLayers !== eles.length ){ return false; } return true; }; LTCp.validateLayersElesOrdering = function( lvl, eles ){ var layers = this.layersByLevel[ lvl ]; if( !layers ){ return; } // if in a layer the eles are not in the same order, then the layer is invalid // (i.e. there is an ele in between the eles in the layer) for( var i = 0; i < layers.length; i++ ){ var layer = layers[i]; var offset = -1; // find the offset for( var j = 0; j < eles.length; j++ ){ if( layer.eles[0] === eles[j] ){ offset = j; break; } } if( offset < 0 ){ // then the layer has nonexistent elements and is invalid this.invalidateLayer( layer ); continue; } // the eles in the layer must be in the same continuous order, else the layer is invalid var o = offset; for( var j = 0; j < layer.eles.length; j++ ){ if( layer.eles[j] !== eles[o+j] ){ // log('invalidate based on ordering', layer.id); this.invalidateLayer( layer ); break; } } } }; LTCp.updateElementsInLayers = function( eles, update ){ var self = this; var isEles = is.element( eles[0] ); // collect udpated elements (cascaded from the layers) and update each // layer itself along the way for( var i = 0; i < eles.length; i++ ){ var req = isEles ? null : eles[i]; var ele = isEles ? eles[i] : eles[i].ele; var rs = ele._private.rscratch; var caches = rs.imgLayerCaches = rs.imgLayerCaches || {}; for( var l = minLvl; l <= maxLvl; l++ ){ var layer = caches[l]; if( !layer ){ continue; } // if update is a request from the ele cache, then it affects only // the matching level if( req && self.getEleLevelForLayerLevel( layer.level ) !== req.level ){ continue; } update( layer, ele, req ); } } }; LTCp.haveLayers = function(){ var self = this; var haveLayers = false; for( var l = minLvl; l <= maxLvl; l++ ){ var layers = self.layersByLevel[l]; if( layers && layers.length > 0 ){ haveLayers = true; break; } } return haveLayers; }; LTCp.invalidateElements = function( eles ){ var self = this; if( eles.length === 0 ){ return; } self.lastInvalidationTime = util.performanceNow(); // log('update invalidate layer time from eles'); if( eles.length === 0 || !self.haveLayers() ){ return; } self.updateElementsInLayers( eles, function invalAssocLayers( layer, ele, req ){ self.invalidateLayer( layer ); } ); }; LTCp.invalidateLayer = function( layer ){ // log('update invalidate layer time'); this.lastInvalidationTime = util.performanceNow(); if( layer.invalid ){ return; } // save cycles var lvl = layer.level; var eles = layer.eles; var layers = this.layersByLevel[ lvl ]; // log('invalidate layer', layer.id ); util.removeFromArray( layers, layer ); // layer.eles = []; layer.elesQueue = []; layer.invalid = true; if( layer.replacement ){ layer.replacement.invalid = true; } for( var i = 0; i < eles.length; i++ ){ var caches = eles[i]._private.rscratch.imgLayerCaches; if( caches ){ caches[ lvl ] = null; } } }; LTCp.refineElementTextures = function( eles ){ var self = this; // log('refine', eles.length); self.updateElementsInLayers( eles, function refineEachEle( layer, ele, req ){ var rLyr = layer.replacement; if( !rLyr ){ rLyr = layer.replacement = self.makeLayer( layer.bb, layer.level ); rLyr.replaces = layer; rLyr.eles = layer.eles; // log('make replacement layer %s for %s with level %s', rLyr.id, layer.id, rLyr.level); } if( !rLyr.reqs ){ for( var i = 0; i < rLyr.eles.length; i++ ){ self.queueLayer( rLyr, rLyr.eles[i] ); } // log('queue replacement layer refinement', rLyr.id); } } ); }; LTCp.enqueueElementRefinement = function( ele ){ if( !useEleTxrCaching ){ return; } this.eleTxrDeqs.merge( ele ); this.scheduleElementRefinement(); }; LTCp.queueLayer = function( layer, ele ){ var self = this; var q = self.layersQueue; var elesQ = layer.elesQueue; var hasId = elesQ.hasId = elesQ.hasId || {}; // if a layer is going to be replaced, queuing is a waste of time if( layer.replacement ){ return; } if( ele ){ if( hasId[ ele.id() ] ){ return; } elesQ.push( ele ); hasId[ ele.id() ] = true; } if( layer.reqs ){ layer.reqs++; q.updateItem( layer ); } else { layer.reqs = 1; q.push( layer ); } }; LTCp.dequeue = function( pxRatio ){ var self = this; var q = self.layersQueue; var deqd = []; var eleDeqs = 0; while( eleDeqs < maxDeqSize ){ if( q.size() === 0 ){ break; } var layer = q.peek(); // if a layer has been or will be replaced, then don't waste time with it if( layer.replacement ){ // log('layer %s in queue skipped b/c it already has a replacement', layer.id); q.pop(); continue; } // if this is a replacement layer that has been superceded, then forget it if( layer.replaces && layer !== layer.replaces.replacement ){ // log('layer is no longer the most uptodate replacement; dequeued', layer.id) q.pop(); continue; } if( layer.invalid ){ // log('replacement layer %s is invalid; dequeued', layer.id); q.pop(); continue; } var ele = layer.elesQueue.shift(); if( ele ){ // log('dequeue layer %s', layer.id); self.drawEleInLayer( layer, ele, layer.level, pxRatio ); eleDeqs++; } if( deqd.length === 0 ){ // we need only one entry in deqd to queue redrawing etc deqd.push( true ); } // if the layer has all its eles done, then remove from the queue if( layer.elesQueue.length === 0 ){ q.pop(); layer.reqs = 0; // log('dequeue of layer %s complete', layer.id); // when a replacement layer is dequeued, it replaces the old layer in the level if( layer.replaces ){ self.applyLayerReplacement( layer ); } self.requestRedraw(); } } return deqd; }; LTCp.applyLayerReplacement = function( layer ){ var self = this; var layersInLevel = self.layersByLevel[ layer.level ]; var replaced = layer.replaces; var index = layersInLevel.indexOf( replaced ); // if the replaced layer is not in the active list for the level, then replacing // refs would be a mistake (i.e. overwriting the true active layer) if( index < 0 || replaced.invalid ){ // log('replacement layer would have no effect', layer.id); return; } layersInLevel[ index ] = layer; // replace level ref // replace refs in eles for( var i = 0; i < layer.eles.length; i++ ){ var _p = layer.eles[i]._private; var cache = _p.imgLayerCaches = _p.imgLayerCaches || {}; if( cache ){ cache[ layer.level ] = layer; } } // log('apply replacement layer %s over %s', layer.id, replaced.id); self.requestRedraw(); }; LTCp.requestRedraw = util.debounce( function(){ var r = this.renderer; r.redrawHint( 'eles', true ); r.redrawHint( 'drag', true ); r.redraw(); }, 100 ); LTCp.setupDequeueing = defs.setupDequeueing({ deqRedrawThreshold: deqRedrawThreshold, deqCost: deqCost, deqAvgCost: deqAvgCost, deqNoDrawCost: deqNoDrawCost, deqFastCost: deqFastCost, deq: function( self, pxRatio ){ return self.dequeue( pxRatio ); }, onDeqd: util.noop, shouldRedraw: util.trueify, priority: function( self ){ return self.renderer.beforeRenderPriorities.lyrTxrDeq; } }); export default LayeredTextureCache; ================================================ FILE: src/extensions/renderer/canvas/node-shapes.mjs ================================================ var CRp = {}; CRp.nodeShapeImpl = function( name, context, centerX, centerY, width, height, points, corners ){ switch( name ){ case 'ellipse': return this.drawEllipsePath( context, centerX, centerY, width, height ); case 'polygon': return this.drawPolygonPath( context, centerX, centerY, width, height, points ); case 'round-polygon': return this.drawRoundPolygonPath(context, centerX, centerY, width, height, points, corners ); case 'roundrectangle': case 'round-rectangle': return this.drawRoundRectanglePath( context, centerX, centerY, width, height, corners ); case 'cutrectangle': case 'cut-rectangle': return this.drawCutRectanglePath( context, centerX, centerY, width, height, points, corners ); case 'bottomroundrectangle': case 'bottom-round-rectangle': return this.drawBottomRoundRectanglePath( context, centerX, centerY, width, height, corners ); case 'barrel': return this.drawBarrelPath( context, centerX, centerY, width, height ); } }; export default CRp; ================================================ FILE: src/extensions/renderer/canvas/texture-cache-defs.mjs ================================================ import * as util from '../../../util/index.mjs'; var fullFpsTime = 1000/60; // assume 60 frames per second export default { setupDequeueing: function( opts ){ return function setupDequeueingImpl(){ var self = this; var r = this.renderer; if( self.dequeueingSetup ){ return; } else { self.dequeueingSetup = true; } var queueRedraw = util.debounce( function(){ r.redrawHint( 'eles', true ); r.redrawHint( 'drag', true ); r.redraw(); }, opts.deqRedrawThreshold ); var dequeue = function( willDraw, frameStartTime ){ var startTime = util.performanceNow(); var avgRenderTime = r.averageRedrawTime; var renderTime = r.lastRedrawTime; var deqd = []; var extent = r.cy.extent(); var pixelRatio = r.getPixelRatio(); // if we aren't in a tick that causes a draw, then the rendered style // queue won't automatically be flushed before dequeueing starts if( !willDraw ){ r.flushRenderedStyleQueue(); } while( true ){ // eslint-disable-line no-constant-condition var now = util.performanceNow(); var duration = now - startTime; var frameDuration = now - frameStartTime; if( renderTime < fullFpsTime ){ // if we're rendering faster than the ideal fps, then do dequeueing // during all of the remaining frame time var timeAvailable = fullFpsTime - ( willDraw ? avgRenderTime : 0 ); if( frameDuration >= opts.deqFastCost * timeAvailable ){ break; } } else { if( willDraw ){ if( duration >= opts.deqCost * renderTime || duration >= opts.deqAvgCost * avgRenderTime ){ break; } } else if( frameDuration >= opts.deqNoDrawCost * fullFpsTime ){ break; } } var thisDeqd = opts.deq( self, pixelRatio, extent ); if( thisDeqd.length > 0 ){ for( var i = 0; i < thisDeqd.length; i++ ){ deqd.push( thisDeqd[i] ); } } else { break; } } // callbacks on dequeue if( deqd.length > 0 ){ opts.onDeqd( self, deqd ); if( !willDraw && opts.shouldRedraw( self, deqd, pixelRatio, extent ) ){ queueRedraw(); } } }; var priority = opts.priority || util.noop; r.beforeRender( dequeue, priority( self ) ); }; } }; ================================================ FILE: src/extensions/renderer/canvas/webgl/atlas.mjs ================================================ import * as util from './webgl-util.mjs'; import * as cyutil from '../../../../util/index.mjs'; // A "texture atlas" is a big canvas, and sections of it are used as textures for nodes/labels. /** * A single square texture atlas (also known as a "sprite sheet"). */ export class Atlas { constructor(r, texSize, texRows, createTextureCanvas) { this.debugID = Math.floor(Math.random() * 10000); this.r = r; this.texSize = texSize; this.texRows = texRows; this.texHeight = Math.floor(texSize / texRows); this.enableWrapping = true; // hardcoded for now, can be made an option this.locked = false; // once an atlas is locked it can no longer be drawn to this.texture = null; // WebGLTexture object this.needsBuffer = true; // a "location" is an pointer into the atlas with a 'row' and 'x' fields this.freePointer = { x: 0, row: 0 }; // map from the style key to the row/x where the texture starts // if the texture wraps then there's a second location this.keyToLocation = new Map(); // styleKey -> [ location, location ] this.canvas = createTextureCanvas(r, texSize, texSize); this.scratch = createTextureCanvas(r, texSize, this.texHeight, 'scratch'); } lock() { this.locked = true; } getKeys() { return new Set(this.keyToLocation.keys()); } getScale({ w, h }) { const { texHeight, texSize: maxTexWidth } = this; // try to fit to the height of a row let scale = texHeight / h; // TODO what about pixelRatio? let texW = w * scale; let texH = h * scale; // if the scaled width is too wide then scale to fit max width instead if(texW > maxTexWidth) { scale = maxTexWidth / w; texW = w * scale; texH = h * scale; } return { scale, texW, texH }; } draw(key, bb, doDrawing) { if(this.locked) throw new Error('can\'t draw, atlas is locked'); const { texSize, texRows, texHeight } = this; const { scale, texW, texH } = this.getScale(bb); const drawAt = (location, canvas) => { if(doDrawing && canvas) { const { context } = canvas; const { x, row } = location; const xOffset = x; const yOffset = texHeight * row; context.save(); context.translate(xOffset, yOffset); context.scale(scale, scale); doDrawing(context, bb); context.restore(); } }; const locations = [ null, null ]; const drawNormal = () => { // don't need to wrap, draw directly on the canvas drawAt(this.freePointer, this.canvas); locations[0] = { x: this.freePointer.x, y: this.freePointer.row * texHeight, w: texW, h: texH }; locations[1] = { // create a second location with a width of 0, for convenience x: this.freePointer.x + texW, y: this.freePointer.row * texHeight, w: 0, h: texH }; // move the pointer to the end of the texture this.freePointer.x += texW; if(this.freePointer.x == texSize) { this.freePointer.x = 0; this.freePointer.row++; } }; const drawWrapped = () => { const { scratch, canvas } = this; // Draw to the scratch canvas scratch.clear(); drawAt({ x:0, row:0 }, scratch); const firstTexW = texSize - this.freePointer.x; const secondTexW = texW - firstTexW; const h = texHeight; { // copy first part of scratch to the first texture const dx = this.freePointer.x; const dy = this.freePointer.row * texHeight; const w = firstTexW; canvas.context.drawImage(scratch, 0, 0, w, h, dx, dy, w, h ); locations[0] = { x: dx, y: dy, w: w, h: texH }; } { // copy second part of scratch to the second texture const sx = firstTexW; const dy = (this.freePointer.row + 1) * texHeight; const w = secondTexW; if(canvas) { canvas.context.drawImage(scratch, sx, 0, w, h, 0, dy, w, h ); } locations[1] = { x: 0, y: dy, w: w, h: texH }; } this.freePointer.x = secondTexW; this.freePointer.row++; }; const moveToStartOfNextRow = () => { this.freePointer.x = 0; this.freePointer.row++; }; if(this.freePointer.x + texW <= texSize) { // There's enough space in the current row drawNormal(); } else if(this.freePointer.row >= texRows-1) { // Need to move to the next row, but there are no more rows, atlas is full. return false; } else if(this.freePointer.x === texSize) { // happen to be right at end of current row moveToStartOfNextRow(); drawNormal(); } else if(this.enableWrapping) { // draw part of the texture to the end of the curent row, then wrap to the next row drawWrapped(); } else { // move to the start of the next row, then draw normally moveToStartOfNextRow(); drawNormal(); } this.keyToLocation.set(key, locations); this.needsBuffer = true; return locations; } getOffsets(key) { return this.keyToLocation.get(key); } isEmpty() { return this.freePointer.x === 0 && this.freePointer.row === 0; } canFit(bb) { if(this.locked) return false; const { texSize, texRows } = this; const { texW } = this.getScale(bb); if(this.freePointer.x + texW > texSize) { // need to wrap return this.freePointer.row < texRows - 1; // return true if there's a row to wrap to } return true; } // called on every frame bufferIfNeeded(gl) { if(!this.texture) { this.texture = util.createTexture(gl, this.debugID); } if(this.needsBuffer) { this.texture.buffer(this.canvas); this.needsBuffer = false; if(this.locked) { this.canvas = null; this.scratch = null; } } } dispose() { if(this.texture) { this.texture.deleteTexture(); this.texture = null; } this.canvas = null; this.scratch = null; this.locked = true; } } /** * A collection of texture atlases, all of the same "render type". * ('node-body' is an example of a render type.) * An AtlasCollection can also be notified when a texture is no longer needed, * and it can garbage collect the unused textures. */ export class AtlasCollection { constructor(r, texSize, texRows, createTextureCanvas) { this.r = r; this.texSize = texSize; this.texRows = texRows; this.createTextureCanvas = createTextureCanvas; this.atlases = []; this.styleKeyToAtlas = new Map(); this.markedKeys = new Set(); // marked for garbage collection } getKeys() { return new Set(this.styleKeyToAtlas.keys()); } _createAtlas() { const { r, texSize, texRows, createTextureCanvas } = this; return new Atlas(r, texSize, texRows, createTextureCanvas); } _getScratchCanvas() { if(!this.scratch) { const { r, texSize, texRows, createTextureCanvas } = this; const texHeight = Math.floor(texSize / texRows); this.scratch = createTextureCanvas(r, texSize, texHeight, 'scratch'); } return this.scratch; } draw(key, bb, doDrawing) { let atlas = this.styleKeyToAtlas.get(key); if(!atlas) { // check for space at the end of the last atlas atlas = this.atlases[this.atlases.length - 1]; if(!atlas || !atlas.canFit(bb)) { if(atlas) atlas.lock(); // create a new atlas atlas = this._createAtlas(); this.atlases.push(atlas); } atlas.draw(key, bb, doDrawing); this.styleKeyToAtlas.set(key, atlas); } return atlas; } getAtlas(key) { return this.styleKeyToAtlas.get(key); } hasAtlas(key) { return this.styleKeyToAtlas.has(key); } markKeyForGC(key) { this.markedKeys.add(key); } gc() { const { markedKeys } = this; if(markedKeys.size === 0) { console.log('nothing to garbage collect'); return; } const newAtlases = []; const newStyleKeyToAtlas = new Map(); let newAtlas = null; for(const atlas of this.atlases) { const keys = atlas.getKeys(); const keysToCollect = intersection(markedKeys, keys); if(keysToCollect.size === 0) { // this atlas can still be used newAtlases.push(atlas); keys.forEach(k => newStyleKeyToAtlas.set(k, atlas)); continue; } if(!newAtlas) { newAtlas = this._createAtlas(); newAtlases.push(newAtlas); } for(const key of keys) { if(!keysToCollect.has(key)) { const [ s1, s2 ] = atlas.getOffsets(key); if(!newAtlas.canFit({ w: s1.w + s2.w, h: s1.h })) { newAtlas.lock(); newAtlas = this._createAtlas(); newAtlases.push(newAtlas); } if(atlas.canvas) { // if the texture can't be copied then it will have to be redrawn on the next frame this._copyTextureToNewAtlas(key, atlas, newAtlas); newStyleKeyToAtlas.set(key, newAtlas); } } } atlas.dispose(); } this.atlases = newAtlases; this.styleKeyToAtlas = newStyleKeyToAtlas; this.markedKeys = new Set(); } _copyTextureToNewAtlas(key, oldAtlas, newAtlas) { const [ s1, s2 ] = oldAtlas.getOffsets(key); if(s2.w === 0) { // the texture does not wrap, draw directly to new atlas newAtlas.draw(key, s1, context => { context.drawImage(oldAtlas.canvas, s1.x, s1.y, s1.w, s1.h, 0, 0, s1.w, s1.h ); }); } else { // the texture wraps, first draw both parts to a scratch canvas const scratch = this._getScratchCanvas(); scratch.clear(); scratch.context.drawImage(oldAtlas.canvas, s1.x, s1.y, s1.w, s1.h, 0, 0, s1.w, s1.h ); scratch.context.drawImage(oldAtlas.canvas, s2.x, s2.y, s2.w, s2.h, s1.w, 0, s2.w, s2.h ); // now draw the scratch to the new atlas const w = s1.w + s2.w; const h = s1.h; newAtlas.draw(key, { w, h }, context => { context.drawImage(scratch, 0, 0, w, h, 0, 0, w, h // the destination context has already been translated to the correct position ); }); } } getCounts() { return { keyCount: this.styleKeyToAtlas.size, atlasCount: new Set(this.styleKeyToAtlas.values()).size }; } } function intersection(set1, set2) { // TODO why no Set.intersection in node 16??? if(set1.intersection) return set1.intersection(set2); else return new Set([...set1].filter(x => set2.has(x))); } /** * Used to manage batches of Atlases for drawing nodes and labels. * Supports different types of AtlasCollections for different render types, * for example 'node-body' and 'node-label' would be different render types. * Render types are kept separate because they will likely need to be garbage collected * separately and its not entierly guaranteed that their style keys won't collide. */ export class AtlasManager { constructor(r, globalOptions) { this.r = r; this.globalOptions = globalOptions; this.atlasSize = globalOptions.webglTexSize; this.maxAtlasesPerBatch = globalOptions.webglTexPerBatch; this.renderTypes = new Map(); // renderType:string -> renderTypeOptions this.collections = new Map(); // collectionName:string -> AtlasCollection this.typeAndIdToKey = new Map(); // [renderType,id] => Array